summaryrefslogtreecommitdiff
path: root/indexing/zhmakeindex
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
committerNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
commite0c6872cf40896c7be36b11dcc744620f10adf1d (patch)
tree60335e10d2f4354b0674ec22d7b53f0f8abee672 /indexing/zhmakeindex
Initial commit
Diffstat (limited to 'indexing/zhmakeindex')
-rw-r--r--indexing/zhmakeindex/CJK/make-table.cmd1
-rw-r--r--indexing/zhmakeindex/CJK/maketables.go497
-rw-r--r--indexing/zhmakeindex/CJK/radicalstrokes.go89140
-rw-r--r--indexing/zhmakeindex/CJK/readings.go41236
-rw-r--r--indexing/zhmakeindex/CJK/strokes.go80777
-rw-r--r--indexing/zhmakeindex/CJK/sunwb_strokeorder.txt70301
-rw-r--r--indexing/zhmakeindex/MENIFEST46
-rw-r--r--indexing/zhmakeindex/README53
-rw-r--r--indexing/zhmakeindex/VERSION1
-rw-r--r--indexing/zhmakeindex/bin/darwin_x64/zhmakeindexbin0 -> 9068160 bytes
-rw-r--r--indexing/zhmakeindex/bin/darwin_x86/zhmakeindexbin0 -> 6993868 bytes
-rw-r--r--indexing/zhmakeindex/bin/linux_x64/zhmakeindexbin0 -> 9119654 bytes
-rw-r--r--indexing/zhmakeindex/bin/linux_x86/zhmakeindexbin0 -> 7039566 bytes
-rw-r--r--indexing/zhmakeindex/build-dist.cmd32
-rw-r--r--indexing/zhmakeindex/doc/make.cmd28
-rw-r--r--indexing/zhmakeindex/doc/zhmakeindex.bib35
-rw-r--r--indexing/zhmakeindex/doc/zhmakeindex.mst23
-rw-r--r--indexing/zhmakeindex/doc/zhmakeindex.pdfbin0 -> 301114 bytes
-rw-r--r--indexing/zhmakeindex/doc/zhmakeindex.tex869
-rw-r--r--indexing/zhmakeindex/examples/compositepage.idx6
-rw-r--r--indexing/zhmakeindex/examples/gb2312.idx6763
-rw-r--r--indexing/zhmakeindex/examples/mixedpage.idx10
-rw-r--r--indexing/zhmakeindex/examples/numbers.idx17
-rw-r--r--indexing/zhmakeindex/examples/rangeencap.idx17
-rw-r--r--indexing/zhmakeindex/examples/suffix.ist1
-rw-r--r--indexing/zhmakeindex/examples/symorder.idx12
-rw-r--r--indexing/zhmakeindex/examples/zh.ist19
-rw-r--r--indexing/zhmakeindex/input.go399
-rw-r--r--indexing/zhmakeindex/install.cmd16
-rw-r--r--indexing/zhmakeindex/install.sh12
-rw-r--r--indexing/zhmakeindex/kpathsea/dynamic_other.go7
-rw-r--r--indexing/zhmakeindex/kpathsea/dynamic_windows_386.go78
-rw-r--r--indexing/zhmakeindex/kpathsea/kpathsea.go108
-rw-r--r--indexing/zhmakeindex/main.go234
-rw-r--r--indexing/zhmakeindex/numberedreader.go52
-rw-r--r--indexing/zhmakeindex/output.go174
-rw-r--r--indexing/zhmakeindex/pagenumber.go246
-rw-r--r--indexing/zhmakeindex/radical_collator.go94
-rw-r--r--indexing/zhmakeindex/reading_collator.go83
-rw-r--r--indexing/zhmakeindex/sorter.go445
-rw-r--r--indexing/zhmakeindex/stroke_collator.go89
-rw-r--r--indexing/zhmakeindex/style.go382
-rw-r--r--indexing/zhmakeindex/style_test.go40
43 files changed, 292343 insertions, 0 deletions
diff --git a/indexing/zhmakeindex/CJK/make-table.cmd b/indexing/zhmakeindex/CJK/make-table.cmd
new file mode 100644
index 0000000000..ed1d095fba
--- /dev/null
+++ b/indexing/zhmakeindex/CJK/make-table.cmd
@@ -0,0 +1 @@
+go run %~d0%~p0maketables.go -d %~d0%~p0
diff --git a/indexing/zhmakeindex/CJK/maketables.go b/indexing/zhmakeindex/CJK/maketables.go
new file mode 100644
index 0000000000..eee87be4cf
--- /dev/null
+++ b/indexing/zhmakeindex/CJK/maketables.go
@@ -0,0 +1,497 @@
+// +build ignore
+
+// 本程序生成 zhmakeindex/CJK 使用的汉字数据表。
+package main
+
+import (
+ "archive/zip"
+ "bufio"
+ "bytes"
+ "flag"
+ "fmt"
+ "io"
+ "io/ioutil"
+ "log"
+ "net/http"
+ "os"
+ "path"
+ "strconv"
+ "strings"
+ "unicode"
+)
+
+func init() {
+ log.SetFlags(log.Lshortfile)
+}
+
+func main() {
+ outdir := flag.String("d", ".", "输出目录")
+ output_stroke := flag.Bool("stroke", true, "输出笔顺表")
+ output_reading := flag.Bool("reading", true, "输出读音表")
+ output_radical := flag.Bool("radical", true, "输出部首表")
+ flag.Parse()
+
+ // 数据文件 Unihan.zip
+ var unihan *zip.Reader
+ if *output_stroke || *output_reading || *output_radical {
+ unihan = readUnihan()
+ }
+ if *output_stroke {
+ make_stroke_table(*outdir, unihan)
+ }
+ if *output_reading {
+ make_reading_table(*outdir, unihan)
+ }
+ if *output_radical {
+ make_radical_table(*outdir, unihan)
+ }
+}
+
+// 读取 Unihan 数据文件
+func readUnihan() *zip.Reader {
+ resp, err := http.Get("http://www.unicode.org/Public/UCD/latest/ucd/Unihan.zip")
+ if err != nil {
+ log.Fatalln(err)
+ }
+ defer resp.Body.Close()
+ if resp.StatusCode != http.StatusOK {
+ log.Fatalf("bad GET status for Unihan.zip: %d", resp.Status)
+ }
+ buffer, err := ioutil.ReadAll(resp.Body)
+ if err != nil {
+ log.Fatalln(err)
+ }
+ unihan, err := zip.NewReader(bytes.NewReader(buffer), int64(len(buffer)))
+ if err != nil {
+ log.Fatalln(err)
+ }
+ return unihan
+}
+
+func getUnihanFile(unihan *zip.Reader, file string) io.ReadCloser {
+ var unihan_file io.ReadCloser
+ var err error
+ for _, f := range unihan.File {
+ if f.Name == file {
+ unihan_file, err = f.Open()
+ if err != nil {
+ log.Fatalln(err)
+ }
+ break
+ }
+ }
+ return unihan_file
+}
+
+const MAX_CODEPOINT = 0x40000 // 覆盖 Unicode 第 0、1、2、3 平面
+
+func make_stroke_table(outdir string, unihan *zip.Reader) {
+ var CJKstrokes [MAX_CODEPOINT][]byte
+ var maxStroke int = 0
+ var unicodeVersion string
+ // 使用海峰五笔码表数据,生成笔顺表
+ sunwb_file, err := os.Open("sunwb_strokeorder.txt")
+ if err != nil {
+ log.Fatalln(err)
+ }
+ defer sunwb_file.Close()
+ scanner := bufio.NewScanner(sunwb_file)
+ for i := 1; scanner.Scan(); i++ {
+ if scanner.Err() != nil {
+ log.Fatalln(scanner.Err())
+ }
+ line := scanner.Text()
+ line = strings.TrimSpace(line)
+ if strings.HasPrefix(line, "#") {
+ continue
+ }
+ fields := strings.Split(line, "\t")
+ if len(fields) != 2 ||
+ len([]rune(fields[0])) != 1 ||
+ strings.IndexFunc(fields[1], isNotDigit) != -1 {
+ log.Printf("笔顺文件第 %d 行语法错误,忽略。\n", i)
+ continue
+ }
+ var r rune = []rune(fields[0])[0]
+ var order []byte
+ for _, rdigit := range fields[1] {
+ digit, _ := strconv.ParseInt(string(rdigit), 10, 8)
+ order = append(order, byte(digit))
+ }
+ CJKstrokes[r] = order
+ if len(order) > maxStroke {
+ maxStroke = len(order)
+ }
+ }
+ // 使用 Unihan 数据库,读取笔画数补全其他字符
+ unihan_file := getUnihanFile(unihan, "Unihan_DictionaryLikeData.txt")
+ defer unihan_file.Close()
+ scanner = bufio.NewScanner(unihan_file)
+ for scanner.Scan() {
+ if scanner.Err() != nil {
+ log.Fatalln(scanner.Err())
+ }
+ line := scanner.Text()
+ if strings.Contains(line, "Unicode version:") {
+ unicodeVersion = strings.TrimPrefix(line, "# ")
+ }
+ if strings.HasPrefix(line, "U+") && strings.Contains(line, "kTotalStrokes") {
+ fields := strings.Split(line, "\t")
+ var r rune
+ fmt.Sscanf(fields[0], "U+%X", &r)
+ var stroke int
+ fmt.Sscanf(fields[2], "%d", &stroke)
+ if CJKstrokes[r] != nil { // 笔顺数据已有,检查一致性
+ if stroke != len(CJKstrokes[r]) {
+ log.Printf("U+%04X (%c) 的笔顺数据(%d 画)与 unihan 笔画数(%d 画)不一致,跳过 unihan 数据\n",
+ r, r, len(CJKstrokes[r]), stroke)
+ }
+ } else { // 无笔顺数据,假定每个笔画都是 6 号(未知)
+ var order = make([]byte, stroke)
+ for i := range order {
+ order[i] = 6
+ }
+ CJKstrokes[r] = order
+ if stroke > maxStroke {
+ maxStroke = stroke
+ }
+ }
+ }
+ }
+ // 输出笔顺表
+ outfile, err := os.Create(path.Join(outdir, "strokes.go"))
+ if err != nil {
+ log.Fatalln(err)
+ }
+ defer outfile.Close()
+ fmt.Fprintln(outfile, `// 这是由程序自动生成的文件,请不要直接编辑此文件
+// 笔顺来源:sunwb_strokeorder.txt
+// 笔画数来源:Unihan_DictionaryLikeData.txt`)
+ fmt.Fprintf(outfile, "// Unicode 版本:%s\n", unicodeVersion)
+ fmt.Fprintln(outfile, "\n"+`package CJK`)
+ fmt.Fprintln(outfile, "\n"+`// Strokes 从字符取得笔顺信息。
+var Strokes map[rune]string = strokes
+
+var strokes = map[rune]string{`)
+ for r, order := range CJKstrokes {
+ if order == nil {
+ continue
+ }
+ fmt.Fprintf(outfile, "\t%#x: \"", r)
+ for _, s := range order {
+ fmt.Fprintf(outfile, "\\x%02x", s)
+ }
+ fmt.Fprintf(outfile, "\", // %c\n", r)
+ }
+ fmt.Fprintln(outfile, `}`)
+ fmt.Fprintf(outfile, "\nconst MAX_STROKE = %d\n", maxStroke)
+}
+
+func isNotDigit(r rune) bool {
+ return !unicode.IsDigit(r)
+}
+
+func make_reading_table(outdir string, unihan *zip.Reader) {
+ // 读取 Unihan 读音表
+ reading_table := make(map[rune]*ReadingEntry)
+ reading_file := getUnihanFile(unihan, "Unihan_Readings.txt")
+ defer reading_file.Close()
+ scanner := bufio.NewScanner(reading_file)
+ largest := rune(0)
+ var version string
+ for scanner.Scan() {
+ if scanner.Err() != nil {
+ log.Fatalln(scanner.Err())
+ }
+ line := scanner.Text()
+ if strings.Contains(line, "Unicode version:") {
+ version = strings.TrimPrefix(line, "# ")
+ }
+ if strings.HasPrefix(line, "U+") {
+ fields := strings.Split(line, "\t")
+ var r rune
+ fmt.Sscanf(fields[0], "U+%X", &r)
+ if reading_table[r] == nil {
+ reading_table[r] = &ReadingEntry{}
+ }
+ switch fields[1] {
+ case "kHanyuPinyin":
+ reading_table[r].HanyuPinyin = fields[2]
+ case "kMandarin":
+ reading_table[r].Mandarin = fields[2]
+ }
+ if r > largest {
+ largest = r
+ }
+ }
+ }
+ // 整理所有汉字的拼音表
+ out_reading_table := make([]string, largest+1)
+ for k, v := range reading_table {
+ pinyin := v.regular()
+ numbered := NumberedPinyin(pinyin)
+ out_reading_table[k] = numbered
+ }
+ // 单独增加数字“〇”的读音
+ if out_reading_table['〇'] == "" {
+ out_reading_table['〇'] = "ling2"
+ }
+ // 输出
+ outfile, err := os.Create(path.Join(outdir, "readings.go"))
+ if err != nil {
+ log.Fatalln(err)
+ }
+ defer outfile.Close()
+ fmt.Fprintln(outfile, `// 这是由程序自动生成的文件,请不要直接编辑此文件
+// 来源:Unihan_Readings.txt`)
+ fmt.Fprintln(outfile, `//`, version)
+ fmt.Fprintln(outfile, "\n"+`package CJK`)
+ fmt.Fprintln(outfile, "\n"+`// Readings 从字符取得常用读音。
+var Readings map[rune]string = readings
+
+var readings = map[rune]string{`)
+ for k, v := range out_reading_table {
+ if v != "" {
+ fmt.Fprintf(outfile, "\t%#x: %s, // %c\n", k, strconv.Quote(v), k)
+ }
+ }
+ fmt.Fprintln(outfile, `}`)
+}
+
+type ReadingEntry struct {
+ HanyuPinyin string
+ Mandarin string
+}
+
+// 取出最常用的一个拼音
+// 以 Mandarin 为主,不足的以 HanyuPinyin 补全
+func (entry *ReadingEntry) regular() string {
+ // kMandarin Syntax: [a-z\x{300}-\x{302}\x{304}\x{308}\x{30C}]+
+ // 如 lüè
+ if entry.Mandarin != "" {
+ // 目前文件中没有多值情况,不过按 UAX #38 允许多值
+ return strings.Split(entry.Mandarin, " ")[0]
+ }
+ // kHanyuPinyin Syntax: (\d{5}\.\d{2}0,)*\d{5}\.\d{2}0:([a-z\x{300}-\x{302}\x{304}\x{308}\x{30C}]+,)*[a-z\x{300}-\x{302}\x{304}\x{308}\x{30C}]+
+ // 如 10093.130:xī,lǔ 74609.020:lǔ,xī
+ if entry.HanyuPinyin != "" {
+ // 第一个冒号后,逗号/空格或词尾前的部分
+ b := strings.Index(entry.HanyuPinyin, ":")
+ e := strings.IndexAny(entry.HanyuPinyin[b:], " ,")
+ if e > 0 {
+ return entry.HanyuPinyin[b+1 : b+e]
+ } else {
+ return entry.HanyuPinyin[b+1:]
+ }
+ }
+ // 没有汉语读音
+ return ""
+}
+
+// 把拼音转换为无声调的拼音加数字声调
+// 其中 ü 变为 v,轻声调号为 5,如 lǎo 转换为 lao3,lǘ 转换为 lv2
+func NumberedPinyin(pinyin string) string {
+ if pinyin == "" {
+ return ""
+ }
+ numbered := []rune{}
+ tone := 5
+ for _, r := range pinyin {
+ if Vowel[r] == 0 {
+ numbered = append(numbered, r)
+ } else {
+ numbered = append(numbered, Vowel[r])
+ }
+ if Tones[r] != 0 {
+ tone = Tones[r]
+ }
+ }
+ numbered = append(numbered, []rune(strconv.Itoa(tone))...)
+ return string(numbered)
+}
+
+var Vowel = map[rune]rune{
+ 'ā': 'a', 'á': 'a', 'ǎ': 'a', 'à': 'a',
+ 'ō': 'o', 'ó': 'o', 'ǒ': 'o', 'ò': 'o',
+ 'ē': 'e', 'é': 'e', 'ě': 'e', 'è': 'e',
+ 'ī': 'i', 'í': 'i', 'ǐ': 'i', 'ì': 'i',
+ 'ū': 'u', 'ú': 'u', 'ǔ': 'u', 'ù': 'u',
+ 'ǖ': 'v', 'ǘ': 'v', 'ǚ': 'v', 'ǜ': 'v', 'ü': 'v',
+ 'ń': 'n', 'ň': 'n', 'ǹ': 'n',
+}
+
+var Tones = map[rune]int{
+ 'ā': 1, 'ō': 1, 'ē': 1, 'ī': 1, 'ū': 1, 'ǖ': 1,
+ 'á': 2, 'ó': 2, 'é': 2, 'í': 2, 'ú': 2, 'ǘ': 2, 'ń': 2,
+ 'ǎ': 3, 'ǒ': 3, 'ě': 3, 'ǐ': 3, 'ǔ': 3, 'ǚ': 3, 'ň': 3,
+ 'à': 4, 'ò': 4, 'è': 4, 'ì': 4, 'ù': 4, 'ǜ': 4, 'ǹ': 4,
+ 'ü': 5,
+}
+
+func make_radical_table(outdir string, unihan *zip.Reader) {
+ // 读入部首
+ CJKRadical := read_radicals()
+ // 读入部首、除部首笔画
+ version, CJKRadicalStrokes := read_radical_strokes(unihan)
+ // 单独增加数字“〇”的部首、除部首笔画(乙部 0 画)
+ CJKRadicalStrokes['〇'] = MakeRadicalStroke('〇', 5, 0)
+ // 输出
+ outfile, err := os.Create(path.Join(outdir, "radicalstrokes.go"))
+ if err != nil {
+ log.Fatalln(err)
+ }
+ defer outfile.Close()
+ fmt.Fprintln(outfile, `// 这是由程序自动生成的文件,请不要直接编辑此文件
+// 部首来源:CJKRadicals.txt
+// 部首笔画数来源:Unihan_IRGSources.txt`)
+ fmt.Fprintln(outfile, `//`, version)
+ fmt.Fprintln(outfile, "\n"+`package CJK
+
+// Radical 是康熙字典部首类型。
+// 此类型未包括 U+2F00 至 U+2FD5 等部首专用符号。
+type Radical struct {
+ Origin rune // 原部首的对应汉字
+ Simplified rune // 简化部首
+}
+
+const MAX_RADICAL = 214
+
+// Radicals 是所有部首。
+var Radicals [MAX_RADICAL + 1]Radical = radicals
+
+var radicals = [MAX_RADICAL + 1]Radical{`)
+ for i := 1; i < MAX_RADICAL+1; i++ {
+ fmt.Fprintf(outfile, "\t%d: {%#x, %#x}, // %c",
+ i, CJKRadical[i].Origin, CJKRadical[i].Simplified, CJKRadical[i].Origin)
+ if CJKRadical[i].Simplified == 0 {
+ fmt.Fprintln(outfile)
+ } else {
+ fmt.Fprintf(outfile, " (%c)\n", CJKRadical[i].Simplified)
+ }
+ }
+ fmt.Fprintln(outfile, "}\n")
+ fmt.Fprintln(outfile, `// RadicalStroke 为部首与除部首笔画数。
+// 前两个字节分别放部首和除部首笔画数,后面放字符本身的 UTF-8 编码,可直接排序。
+type RadicalStroke string
+
+// Radical 取得部首编号。
+func (rs RadicalStroke) Radical() int {
+ return int(rs[0])
+}
+
+// Stroke 取得除部首笔画数。
+func (rs RadicalStroke) Stroke() int {
+ return int(rs[1])
+}
+
+// RadicalStrokes 从字符取得部首与除部首笔画数信息。
+var RadicalStrokes map[rune]RadicalStroke = radicalStrokes
+
+var radicalStrokes = map[rune]RadicalStroke{`)
+ for r, rs := range CJKRadicalStrokes {
+ if rs != "" {
+ fmt.Fprintf(outfile, "\t%#x: %+q, // %c\n", r, rs, r)
+ }
+ }
+ fmt.Fprintln(outfile, "}")
+}
+
+// 康熙字典部首
+// 未包括 U+2F00 至 U+2FD5 等部首专用符号
+type Radical struct {
+ Origin rune // 原部首的对应汉字
+ Simplified rune // 简化部首
+}
+
+const MAX_RADICAL = 214
+
+// 读取 CJKRadicals.txt 获取康熙字典部首表
+func read_radicals() [MAX_RADICAL + 1]Radical {
+ resp, err := http.Get("http://www.unicode.org/Public/UCD/latest/ucd/CJKRadicals.txt")
+ if err != nil {
+ log.Fatalln(err)
+ }
+ if resp.StatusCode != http.StatusOK {
+ log.Fatalf("bad GET status for CJKRadicals.txt: %d", resp.Status)
+ }
+ defer resp.Body.Close()
+
+ var CJKRadical [MAX_RADICAL + 1]Radical
+ scanner := bufio.NewScanner(resp.Body)
+ for scanner.Scan() {
+ if scanner.Err() != nil {
+ log.Fatalln(scanner.Err())
+ }
+ line := strings.TrimSpace(scanner.Text())
+ if line == "" || strings.HasPrefix(line, "#") {
+ continue
+ }
+ fields := strings.Split(line, ";")
+ indexstr := fields[0]
+ var index int
+ fmt.Sscanf(fields[0], "%d", &index)
+ var char rune
+ fmt.Sscanf(fields[2], "%X", &char)
+ if strings.HasSuffix(indexstr, "'") {
+ CJKRadical[index].Simplified = char
+ } else {
+ CJKRadical[index].Origin = char
+ }
+ }
+ return CJKRadical
+}
+
+// 部首与除部首笔画数
+// 前两个字节分别放部首和除部首笔画数,后面放字符本身的 UTF-8 编码,可直接排序
+type RadicalStroke string
+
+func (rs RadicalStroke) Radical() int {
+ return int(rs[0])
+}
+
+func (rs RadicalStroke) Stroke() int {
+ return int(rs[1])
+}
+
+func MakeRadicalStroke(r rune, radical, stroke int) RadicalStroke {
+ buf := []byte{byte(radical), byte(stroke)}
+ return RadicalStroke(buf) + RadicalStroke(r)
+}
+
+// 读取 Unihan_IRGSources.txt 获取部首笔画数表
+func read_radical_strokes(unihan *zip.Reader) (version string, CJKRadicalStrokes []RadicalStroke) {
+ radical_file := getUnihanFile(unihan, "Unihan_IRGSources.txt")
+ defer radical_file.Close()
+ CJKRadicalStrokes = make([]RadicalStroke, MAX_CODEPOINT)
+ scanner := bufio.NewScanner(radical_file)
+ for scanner.Scan() {
+ if scanner.Err() != nil {
+ log.Fatalln(scanner.Err())
+ }
+ line := strings.TrimSpace(scanner.Text())
+ if strings.Contains(line, "Unicode version:") {
+ version = strings.TrimPrefix(line, "# ")
+ }
+ if strings.HasPrefix(line, "U+") {
+ fields := strings.Split(line, "\t")
+ // kRSUnicode 语法:[1-9][0-9]{0,2}\'?\.-?[0-9]{1,2}
+ // 点前面是部首编号,加撇表示简化字部首;
+ // 点后面是除部首笔画数,可能为负数表示是部首简化的部分,但这里将负笔画计为 0
+ if fields[1] == "kRSUnicode" {
+ var r rune
+ fmt.Sscanf(fields[0], "U+%X", &r)
+ var radical, stroke int
+ if strings.ContainsRune(fields[2], '\'') {
+ fmt.Sscanf(fields[2], "%d'.%d", &radical, &stroke)
+ } else {
+ fmt.Sscanf(fields[2], "%d.%d", &radical, &stroke)
+ }
+ if stroke < 0 {
+ stroke = 0
+ }
+ CJKRadicalStrokes[r] = MakeRadicalStroke(r, radical, stroke)
+ }
+ }
+ }
+ return
+}
diff --git a/indexing/zhmakeindex/CJK/radicalstrokes.go b/indexing/zhmakeindex/CJK/radicalstrokes.go
new file mode 100644
index 0000000000..521bfb0256
--- /dev/null
+++ b/indexing/zhmakeindex/CJK/radicalstrokes.go
@@ -0,0 +1,89140 @@
+// 这是由程序自动生成的文件,请不要直接编辑此文件
+// 部首来源:CJKRadicals.txt
+// 部首笔画数来源:Unihan_IRGSources.txt
+// Unicode version: 10.0.0
+
+package CJK
+
+// Radical 是康熙字典部首类型。
+// 此类型未包括 U+2F00 至 U+2FD5 等部首专用符号。
+type Radical struct {
+ Origin rune // 原部首的对应汉字
+ Simplified rune // 简化部首
+}
+
+const MAX_RADICAL = 214
+
+// Radicals 是所有部首。
+var Radicals [MAX_RADICAL + 1]Radical = radicals
+
+var radicals = [MAX_RADICAL + 1]Radical{
+ 1: {0x4e00, 0x0}, // 一
+ 2: {0x4e28, 0x0}, // 丨
+ 3: {0x4e36, 0x0}, // 丶
+ 4: {0x4e3f, 0x0}, // 丿
+ 5: {0x4e59, 0x0}, // 乙
+ 6: {0x4e85, 0x0}, // 亅
+ 7: {0x4e8c, 0x0}, // 二
+ 8: {0x4ea0, 0x0}, // 亠
+ 9: {0x4eba, 0x0}, // 人
+ 10: {0x513f, 0x0}, // 儿
+ 11: {0x5165, 0x0}, // 入
+ 12: {0x516b, 0x0}, // 八
+ 13: {0x5182, 0x0}, // 冂
+ 14: {0x5196, 0x0}, // 冖
+ 15: {0x51ab, 0x0}, // 冫
+ 16: {0x51e0, 0x0}, // 几
+ 17: {0x51f5, 0x0}, // 凵
+ 18: {0x5200, 0x0}, // 刀
+ 19: {0x529b, 0x0}, // 力
+ 20: {0x52f9, 0x0}, // 勹
+ 21: {0x5315, 0x0}, // 匕
+ 22: {0x531a, 0x0}, // 匚
+ 23: {0x5338, 0x0}, // 匸
+ 24: {0x5341, 0x0}, // 十
+ 25: {0x535c, 0x0}, // 卜
+ 26: {0x5369, 0x0}, // 卩
+ 27: {0x5382, 0x0}, // 厂
+ 28: {0x53b6, 0x0}, // 厶
+ 29: {0x53c8, 0x0}, // 又
+ 30: {0x53e3, 0x0}, // 口
+ 31: {0x56d7, 0x0}, // 囗
+ 32: {0x571f, 0x0}, // 土
+ 33: {0x58eb, 0x0}, // 士
+ 34: {0x5902, 0x0}, // 夂
+ 35: {0x590a, 0x0}, // 夊
+ 36: {0x5915, 0x0}, // 夕
+ 37: {0x5927, 0x0}, // 大
+ 38: {0x5973, 0x0}, // 女
+ 39: {0x5b50, 0x0}, // 子
+ 40: {0x5b80, 0x0}, // 宀
+ 41: {0x5bf8, 0x0}, // 寸
+ 42: {0x5c0f, 0x0}, // 小
+ 43: {0x5c22, 0x0}, // 尢
+ 44: {0x5c38, 0x0}, // 尸
+ 45: {0x5c6e, 0x0}, // 屮
+ 46: {0x5c71, 0x0}, // 山
+ 47: {0x5ddb, 0x0}, // 巛
+ 48: {0x5de5, 0x0}, // 工
+ 49: {0x5df1, 0x0}, // 己
+ 50: {0x5dfe, 0x0}, // 巾
+ 51: {0x5e72, 0x0}, // 干
+ 52: {0x5e7a, 0x0}, // 幺
+ 53: {0x5e7f, 0x0}, // 广
+ 54: {0x5ef4, 0x0}, // 廴
+ 55: {0x5efe, 0x0}, // 廾
+ 56: {0x5f0b, 0x0}, // 弋
+ 57: {0x5f13, 0x0}, // 弓
+ 58: {0x5f50, 0x0}, // 彐
+ 59: {0x5f61, 0x0}, // 彡
+ 60: {0x5f73, 0x0}, // 彳
+ 61: {0x5fc3, 0x0}, // 心
+ 62: {0x6208, 0x0}, // 戈
+ 63: {0x6236, 0x0}, // 戶
+ 64: {0x624b, 0x0}, // 手
+ 65: {0x652f, 0x0}, // 支
+ 66: {0x6534, 0x0}, // 攴
+ 67: {0x6587, 0x0}, // 文
+ 68: {0x6597, 0x0}, // 斗
+ 69: {0x65a4, 0x0}, // 斤
+ 70: {0x65b9, 0x0}, // 方
+ 71: {0x65e0, 0x0}, // 无
+ 72: {0x65e5, 0x0}, // 日
+ 73: {0x66f0, 0x0}, // 曰
+ 74: {0x6708, 0x0}, // 月
+ 75: {0x6728, 0x0}, // 木
+ 76: {0x6b20, 0x0}, // 欠
+ 77: {0x6b62, 0x0}, // 止
+ 78: {0x6b79, 0x0}, // 歹
+ 79: {0x6bb3, 0x0}, // 殳
+ 80: {0x6bcb, 0x0}, // 毋
+ 81: {0x6bd4, 0x0}, // 比
+ 82: {0x6bdb, 0x0}, // 毛
+ 83: {0x6c0f, 0x0}, // 氏
+ 84: {0x6c14, 0x0}, // 气
+ 85: {0x6c34, 0x0}, // 水
+ 86: {0x706b, 0x0}, // 火
+ 87: {0x722a, 0x0}, // 爪
+ 88: {0x7236, 0x0}, // 父
+ 89: {0x723b, 0x0}, // 爻
+ 90: {0x723f, 0x4e2c}, // 爿 (丬)
+ 91: {0x7247, 0x0}, // 片
+ 92: {0x7259, 0x0}, // 牙
+ 93: {0x725b, 0x0}, // 牛
+ 94: {0x72ac, 0x0}, // 犬
+ 95: {0x7384, 0x0}, // 玄
+ 96: {0x7389, 0x0}, // 玉
+ 97: {0x74dc, 0x0}, // 瓜
+ 98: {0x74e6, 0x0}, // 瓦
+ 99: {0x7518, 0x0}, // 甘
+ 100: {0x751f, 0x0}, // 生
+ 101: {0x7528, 0x0}, // 用
+ 102: {0x7530, 0x0}, // 田
+ 103: {0x758b, 0x0}, // 疋
+ 104: {0x7592, 0x0}, // 疒
+ 105: {0x7676, 0x0}, // 癶
+ 106: {0x767d, 0x0}, // 白
+ 107: {0x76ae, 0x0}, // 皮
+ 108: {0x76bf, 0x0}, // 皿
+ 109: {0x76ee, 0x0}, // 目
+ 110: {0x77db, 0x0}, // 矛
+ 111: {0x77e2, 0x0}, // 矢
+ 112: {0x77f3, 0x0}, // 石
+ 113: {0x793a, 0x0}, // 示
+ 114: {0x79b8, 0x0}, // 禸
+ 115: {0x79be, 0x0}, // 禾
+ 116: {0x7a74, 0x0}, // 穴
+ 117: {0x7acb, 0x0}, // 立
+ 118: {0x7af9, 0x0}, // 竹
+ 119: {0x7c73, 0x0}, // 米
+ 120: {0x7cf8, 0x7e9f}, // 糸 (纟)
+ 121: {0x7f36, 0x0}, // 缶
+ 122: {0x7f51, 0x0}, // 网
+ 123: {0x7f8a, 0x0}, // 羊
+ 124: {0x7fbd, 0x0}, // 羽
+ 125: {0x8001, 0x0}, // 老
+ 126: {0x800c, 0x0}, // 而
+ 127: {0x8012, 0x0}, // 耒
+ 128: {0x8033, 0x0}, // 耳
+ 129: {0x807f, 0x0}, // 聿
+ 130: {0x8089, 0x0}, // 肉
+ 131: {0x81e3, 0x0}, // 臣
+ 132: {0x81ea, 0x0}, // 自
+ 133: {0x81f3, 0x0}, // 至
+ 134: {0x81fc, 0x0}, // 臼
+ 135: {0x820c, 0x0}, // 舌
+ 136: {0x821b, 0x0}, // 舛
+ 137: {0x821f, 0x0}, // 舟
+ 138: {0x826e, 0x0}, // 艮
+ 139: {0x8272, 0x0}, // 色
+ 140: {0x8278, 0x0}, // 艸
+ 141: {0x864d, 0x0}, // 虍
+ 142: {0x866b, 0x0}, // 虫
+ 143: {0x8840, 0x0}, // 血
+ 144: {0x884c, 0x0}, // 行
+ 145: {0x8863, 0x0}, // 衣
+ 146: {0x897e, 0x0}, // 襾
+ 147: {0x898b, 0x89c1}, // 見 (见)
+ 148: {0x89d2, 0x0}, // 角
+ 149: {0x8a00, 0x8ba0}, // 言 (讠)
+ 150: {0x8c37, 0x0}, // 谷
+ 151: {0x8c46, 0x0}, // 豆
+ 152: {0x8c55, 0x0}, // 豕
+ 153: {0x8c78, 0x0}, // 豸
+ 154: {0x8c9d, 0x8d1d}, // 貝 (贝)
+ 155: {0x8d64, 0x0}, // 赤
+ 156: {0x8d70, 0x0}, // 走
+ 157: {0x8db3, 0x0}, // 足
+ 158: {0x8eab, 0x0}, // 身
+ 159: {0x8eca, 0x8f66}, // 車 (车)
+ 160: {0x8f9b, 0x0}, // 辛
+ 161: {0x8fb0, 0x0}, // 辰
+ 162: {0x8fb5, 0x8fb6}, // 辵 (辶)
+ 163: {0x9091, 0x0}, // 邑
+ 164: {0x9149, 0x0}, // 酉
+ 165: {0x91c6, 0x0}, // 釆
+ 166: {0x91cc, 0x0}, // 里
+ 167: {0x91d1, 0x9485}, // 金 (钅)
+ 168: {0x9577, 0x957f}, // 長 (长)
+ 169: {0x9580, 0x95e8}, // 門 (门)
+ 170: {0x961c, 0x0}, // 阜
+ 171: {0x96b6, 0x0}, // 隶
+ 172: {0x96b9, 0x0}, // 隹
+ 173: {0x96e8, 0x0}, // 雨
+ 174: {0x9751, 0x0}, // 靑
+ 175: {0x975e, 0x0}, // 非
+ 176: {0x9762, 0x0}, // 面
+ 177: {0x9769, 0x0}, // 革
+ 178: {0x97cb, 0x97e6}, // 韋 (韦)
+ 179: {0x97ed, 0x0}, // 韭
+ 180: {0x97f3, 0x0}, // 音
+ 181: {0x9801, 0x9875}, // 頁 (页)
+ 182: {0x98a8, 0x98ce}, // 風 (风)
+ 183: {0x98db, 0x98de}, // 飛 (飞)
+ 184: {0x98df, 0x9963}, // 食 (饣)
+ 185: {0x9996, 0x0}, // 首
+ 186: {0x9999, 0x0}, // 香
+ 187: {0x99ac, 0x9a6c}, // 馬 (马)
+ 188: {0x9aa8, 0x0}, // 骨
+ 189: {0x9ad8, 0x0}, // 高
+ 190: {0x9adf, 0x0}, // 髟
+ 191: {0x9b25, 0x0}, // 鬥
+ 192: {0x9b2f, 0x0}, // 鬯
+ 193: {0x9b32, 0x0}, // 鬲
+ 194: {0x9b3c, 0x0}, // 鬼
+ 195: {0x9b5a, 0x9c7c}, // 魚 (鱼)
+ 196: {0x9ce5, 0x9e1f}, // 鳥 (鸟)
+ 197: {0x9e75, 0x5364}, // 鹵 (卤)
+ 198: {0x9e7f, 0x0}, // 鹿
+ 199: {0x9ea5, 0x9ea6}, // 麥 (麦)
+ 200: {0x9ebb, 0x0}, // 麻
+ 201: {0x9ec3, 0x9ec4}, // 黃 (黄)
+ 202: {0x9ecd, 0x0}, // 黍
+ 203: {0x9ed1, 0x0}, // 黑
+ 204: {0x9ef9, 0x0}, // 黹
+ 205: {0x9efd, 0x9efe}, // 黽 (黾)
+ 206: {0x9f0e, 0x0}, // 鼎
+ 207: {0x9f13, 0x0}, // 鼓
+ 208: {0x9f20, 0x0}, // 鼠
+ 209: {0x9f3b, 0x0}, // 鼻
+ 210: {0x9f4a, 0x9f50}, // 齊 (齐)
+ 211: {0x9f52, 0x9f7f}, // 齒 (齿)
+ 212: {0x9f8d, 0x9f99}, // 龍 (龙)
+ 213: {0x9f9c, 0x9f9f}, // 龜 (龟)
+ 214: {0x9fa0, 0x0}, // 龠
+}
+
+// RadicalStroke 为部首与除部首笔画数。
+// 前两个字节分别放部首和除部首笔画数,后面放字符本身的 UTF-8 编码,可直接排序。
+type RadicalStroke string
+
+// Radical 取得部首编号。
+func (rs RadicalStroke) Radical() int {
+ return int(rs[0])
+}
+
+// Stroke 取得除部首笔画数。
+func (rs RadicalStroke) Stroke() int {
+ return int(rs[1])
+}
+
+// RadicalStrokes 从字符取得部首与除部首笔画数信息。
+var RadicalStrokes map[rune]RadicalStroke = radicalStrokes
+
+var radicalStrokes = map[rune]RadicalStroke{
+ 0x3007: "\x05\x00\u3007", // 〇
+ 0x3400: "\x01\x04\u3400", // 㐀
+ 0x3401: "\x01\x05\u3401", // 㐁
+ 0x3402: "\x01\x05\u3402", // 㐂
+ 0x3403: "\x02\x02\u3403", // 㐃
+ 0x3404: "\x02\x02\u3404", // 㐄
+ 0x3405: "\x04\x01\u3405", // 㐅
+ 0x3406: "\x04\x05\u3406", // 㐆
+ 0x3407: "\x05\x02\u3407", // 㐇
+ 0x3408: "\x05\x02\u3408", // 㐈
+ 0x3409: "\x05\x02\u3409", // 㐉
+ 0x340a: "\x05\x03\u340a", // 㐊
+ 0x340b: "\x05\x03\u340b", // 㐋
+ 0x340c: "\x05\x04\u340c", // 㐌
+ 0x340d: "\x05\x04\u340d", // 㐍
+ 0x340e: "\x05\x04\u340e", // 㐎
+ 0x340f: "\x05\x04\u340f", // 㐏
+ 0x3410: "\x05\x05\u3410", // 㐐
+ 0x3411: "\x05\x05\u3411", // 㐑
+ 0x3412: "\x05\x05\u3412", // 㐒
+ 0x3413: "\x05\x05\u3413", // 㐓
+ 0x3414: "\x05\x05\u3414", // 㐔
+ 0x3415: "\x05\x05\u3415", // 㐕
+ 0x3416: "\x05\x06\u3416", // 㐖
+ 0x3417: "\x05\x06\u3417", // 㐗
+ 0x3418: "\x05\x06\u3418", // 㐘
+ 0x3419: "\x05\a\u3419", // 㐙
+ 0x341a: "\x05\a\u341a", // 㐚
+ 0x341b: "\x05\a\u341b", // 㐛
+ 0x341c: "\x05\b\u341c", // 㐜
+ 0x341d: "\x05\b\u341d", // 㐝
+ 0x341e: "\x05\b\u341e", // 㐞
+ 0x341f: "\x05\b\u341f", // 㐟
+ 0x3420: "\x05\b\u3420", // 㐠
+ 0x3421: "\x05\n\u3421", // 㐡
+ 0x3422: "\x05\n\u3422", // 㐢
+ 0x3423: "\x05\n\u3423", // 㐣
+ 0x3424: "\x05\v\u3424", // 㐤
+ 0x3425: "\x05\x0f\u3425", // 㐥
+ 0x3426: "\x05\x12\u3426", // 㐦
+ 0x3427: "\x06\x03\u3427", // 㐧
+ 0x3428: "\x06\a\u3428", // 㐨
+ 0x3429: "\a\x06\u3429", // 㐩
+ 0x342a: "\b\x04\u342a", // 㐪
+ 0x342b: "\b\x04\u342b", // 㐫
+ 0x342c: "\b\x05\u342c", // 㐬
+ 0x342d: "\b\x06\u342d", // 㐭
+ 0x342e: "\b\v\u342e", // 㐮
+ 0x342f: "\b\x0f\u342f", // 㐯
+ 0x3430: "\t\x03\u3430", // 㐰
+ 0x3431: "\t\x03\u3431", // 㐱
+ 0x3432: "\t\x03\u3432", // 㐲
+ 0x3433: "\t\x03\u3433", // 㐳
+ 0x3434: "\t\x03\u3434", // 㐴
+ 0x3435: "\t\x03\u3435", // 㐵
+ 0x3436: "\t\x03\u3436", // 㐶
+ 0x3437: "\t\x03\u3437", // 㐷
+ 0x3438: "\t\x04\u3438", // 㐸
+ 0x3439: "\t\x04\u3439", // 㐹
+ 0x343a: "\t\x04\u343a", // 㐺
+ 0x343b: "\t\x04\u343b", // 㐻
+ 0x343c: "\t\x04\u343c", // 㐼
+ 0x343d: "\t\x04\u343d", // 㐽
+ 0x343e: "\t\x04\u343e", // 㐾
+ 0x343f: "\t\x04\u343f", // 㐿
+ 0x3440: "\t\x04\u3440", // 㑀
+ 0x3441: "\t\x05\u3441", // 㑁
+ 0x3442: "\t\x05\u3442", // 㑂
+ 0x3443: "\t\x05\u3443", // 㑃
+ 0x3444: "\t\x05\u3444", // 㑄
+ 0x3445: "\t\x05\u3445", // 㑅
+ 0x3446: "\t\x05\u3446", // 㑆
+ 0x3447: "\t\x05\u3447", // 㑇
+ 0x3448: "\t\x05\u3448", // 㑈
+ 0x3449: "\t\x06\u3449", // 㑉
+ 0x344a: "\t\x06\u344a", // 㑊
+ 0x344b: "\t\x06\u344b", // 㑋
+ 0x344c: "\t\x06\u344c", // 㑌
+ 0x344d: "\t\x06\u344d", // 㑍
+ 0x344e: "\t\x06\u344e", // 㑎
+ 0x344f: "\t\x06\u344f", // 㑏
+ 0x3450: "\t\x06\u3450", // 㑐
+ 0x3451: "\t\x06\u3451", // 㑑
+ 0x3452: "\t\x06\u3452", // 㑒
+ 0x3453: "\t\x06\u3453", // 㑓
+ 0x3454: "\t\x06\u3454", // 㑔
+ 0x3455: "\t\x06\u3455", // 㑕
+ 0x3456: "\t\x06\u3456", // 㑖
+ 0x3457: "\t\a\u3457", // 㑗
+ 0x3458: "\t\a\u3458", // 㑘
+ 0x3459: "\t\a\u3459", // 㑙
+ 0x345a: "\t\a\u345a", // 㑚
+ 0x345b: "\t\a\u345b", // 㑛
+ 0x345c: "\t\a\u345c", // 㑜
+ 0x345d: "\t\a\u345d", // 㑝
+ 0x345e: "\t\a\u345e", // 㑞
+ 0x345f: "\t\a\u345f", // 㑟
+ 0x3460: "\t\a\u3460", // 㑠
+ 0x3461: "\t\a\u3461", // 㑡
+ 0x3462: "\t\a\u3462", // 㑢
+ 0x3463: "\t\b\u3463", // 㑣
+ 0x3464: "\t\t\u3464", // 㑤
+ 0x3465: "\t\b\u3465", // 㑥
+ 0x3466: "\t\b\u3466", // 㑦
+ 0x3467: "\t\b\u3467", // 㑧
+ 0x3468: "\t\b\u3468", // 㑨
+ 0x3469: "\t\b\u3469", // 㑩
+ 0x346a: "\t\b\u346a", // 㑪
+ 0x346b: "\t\b\u346b", // 㑫
+ 0x346c: "\t\b\u346c", // 㑬
+ 0x346d: "\t\b\u346d", // 㑭
+ 0x346e: "\t\t\u346e", // 㑮
+ 0x346f: "\t\t\u346f", // 㑯
+ 0x3470: "\t\t\u3470", // 㑰
+ 0x3471: "\t\t\u3471", // 㑱
+ 0x3472: "\t\t\u3472", // 㑲
+ 0x3473: "\t\n\u3473", // 㑳
+ 0x3474: "\t\n\u3474", // 㑴
+ 0x3475: "\t\n\u3475", // 㑵
+ 0x3476: "\t\n\u3476", // 㑶
+ 0x3477: "\t\n\u3477", // 㑷
+ 0x3478: "\t\n\u3478", // 㑸
+ 0x3479: "\t\n\u3479", // 㑹
+ 0x347a: "\t\n\u347a", // 㑺
+ 0x347b: "\t\v\u347b", // 㑻
+ 0x347c: "\t\v\u347c", // 㑼
+ 0x347d: "\t\v\u347d", // 㑽
+ 0x347e: "\t\v\u347e", // 㑾
+ 0x347f: "\t\v\u347f", // 㑿
+ 0x3480: "\t\v\u3480", // 㒀
+ 0x3481: "\t\v\u3481", // 㒁
+ 0x3482: "\t\f\u3482", // 㒂
+ 0x3483: "\t\f\u3483", // 㒃
+ 0x3484: "\t\f\u3484", // 㒄
+ 0x3485: "\t\f\u3485", // 㒅
+ 0x3486: "\t\f\u3486", // 㒆
+ 0x3487: "\t\f\u3487", // 㒇
+ 0x3488: "\t\f\u3488", // 㒈
+ 0x3489: "\t\f\u3489", // 㒉
+ 0x348a: "\t\f\u348a", // 㒊
+ 0x348b: "\t\f\u348b", // 㒋
+ 0x348c: "\t\f\u348c", // 㒌
+ 0x348d: "\t\f\u348d", // 㒍
+ 0x348e: "\t\f\u348e", // 㒎
+ 0x348f: "\t\f\u348f", // 㒏
+ 0x3490: "\t\f\u3490", // 㒐
+ 0x3491: "\t\r\u3491", // 㒑
+ 0x3492: "\t\r\u3492", // 㒒
+ 0x3493: "\t\r\u3493", // 㒓
+ 0x3494: "\t\r\u3494", // 㒔
+ 0x3495: "\t\r\u3495", // 㒕
+ 0x3496: "\t\r\u3496", // 㒖
+ 0x3497: "\t\r\u3497", // 㒗
+ 0x3498: "\t\r\u3498", // 㒘
+ 0x3499: "\t\x0e\u3499", // 㒙
+ 0x349a: "\t\x0e\u349a", // 㒚
+ 0x349b: "\t\x0e\u349b", // 㒛
+ 0x349c: "\t\x0e\u349c", // 㒜
+ 0x349d: "\t\x0f\u349d", // 㒝
+ 0x349e: "\t\x0f\u349e", // 㒞
+ 0x349f: "\t\x10\u349f", // 㒟
+ 0x34a0: "\t\x10\u34a0", // 㒠
+ 0x34a1: "\t\x11\u34a1", // 㒡
+ 0x34a2: "\t\x11\u34a2", // 㒢
+ 0x34a3: "\t\x11\u34a3", // 㒣
+ 0x34a4: "\t\x12\u34a4", // 㒤
+ 0x34a5: "\t\x12\u34a5", // 㒥
+ 0x34a6: "\t\x12\u34a6", // 㒦
+ 0x34a7: "\t\x13\u34a7", // 㒧
+ 0x34a8: "\t\x13\u34a8", // 㒨
+ 0x34a9: "\t\x15\u34a9", // 㒩
+ 0x34aa: "\t\x18\u34aa", // 㒪
+ 0x34ab: "\n\x04\u34ab", // 㒫
+ 0x34ac: "\n\x06\u34ac", // 㒬
+ 0x34ad: "\n\b\u34ad", // 㒭
+ 0x34ae: "\n\t\u34ae", // 㒮
+ 0x34af: "\n\x10\u34af", // 㒯
+ 0x34b0: "\v\x03\u34b0", // 㒰
+ 0x34b1: "\v\x03\u34b1", // 㒱
+ 0x34b2: "\v\x04\u34b2", // 㒲
+ 0x34b3: "\v\x05\u34b3", // 㒳
+ 0x34b4: "\v\x05\u34b4", // 㒴
+ 0x34b5: "\f\x05\u34b5", // 㒵
+ 0x34b6: "\f\x05\u34b6", // 㒶
+ 0x34b7: "\f\x05\u34b7", // 㒷
+ 0x34b8: "\f\a\u34b8", // 㒸
+ 0x34b9: "\f\x12\u34b9", // 㒹
+ 0x34ba: "\r\x06\u34ba", // 㒺
+ 0x34bb: "\r\t\u34bb", // 㒻
+ 0x34bc: "\r\t\u34bc", // 㒼
+ 0x34bd: "\r\n\u34bd", // 㒽
+ 0x34be: "\r\v\u34be", // 㒾
+ 0x34bf: "\r\x14\u34bf", // 㒿
+ 0x34c0: "\x0e\x02\u34c0", // 㓀
+ 0x34c1: "\x0e\x02\u34c1", // 㓁
+ 0x34c2: "\x0e\a\u34c2", // 㓂
+ 0x34c3: "\x0e\n\u34c3", // 㓃
+ 0x34c4: "\x0e\r\u34c4", // 㓄
+ 0x34c5: "\x0f\x02\u34c5", // 㓅
+ 0x34c6: "\x0f\x04\u34c6", // 㓆
+ 0x34c7: "\x0f\x04\u34c7", // 㓇
+ 0x34c8: "\x0f\x05\u34c8", // 㓈
+ 0x34c9: "\x0f\x06\u34c9", // 㓉
+ 0x34ca: "\x0f\x06\u34ca", // 㓊
+ 0x34cb: "\x0f\x06\u34cb", // 㓋
+ 0x34cc: "\x0f\x06\u34cc", // 㓌
+ 0x34cd: "\x0f\x06\u34cd", // 㓍
+ 0x34ce: "\x0f\a\u34ce", // 㓎
+ 0x34cf: "\x0f\a\u34cf", // 㓏
+ 0x34d0: "\x0f\b\u34d0", // 㓐
+ 0x34d1: "\x0f\b\u34d1", // 㓑
+ 0x34d2: "\x0f\b\u34d2", // 㓒
+ 0x34d3: "\x0f\t\u34d3", // 㓓
+ 0x34d4: "\x0f\n\u34d4", // 㓔
+ 0x34d5: "\x0f\n\u34d5", // 㓕
+ 0x34d6: "\x0f\v\u34d6", // 㓖
+ 0x34d7: "\x0f\f\u34d7", // 㓗
+ 0x34d8: "\x10\t\u34d8", // 㓘
+ 0x34d9: "\x11\x04\u34d9", // 㓙
+ 0x34da: "\x12\x03\u34da", // 㓚
+ 0x34db: "\x12\x03\u34db", // 㓛
+ 0x34dc: "\x12\x03\u34dc", // 㓜
+ 0x34dd: "\x12\x04\u34dd", // 㓝
+ 0x34de: "\x12\x04\u34de", // 㓞
+ 0x34df: "\x12\x05\u34df", // 㓟
+ 0x34e0: "\x12\x05\u34e0", // 㓠
+ 0x34e1: "\x12\x06\u34e1", // 㓡
+ 0x34e2: "\x12\x06\u34e2", // 㓢
+ 0x34e3: "\x12\x06\u34e3", // 㓣
+ 0x34e4: "\x12\x06\u34e4", // 㓤
+ 0x34e5: "\x12\x06\u34e5", // 㓥
+ 0x34e6: "\x12\x06\u34e6", // 㓦
+ 0x34e7: "\x12\a\u34e7", // 㓧
+ 0x34e8: "\x12\a\u34e8", // 㓨
+ 0x34e9: "\x12\a\u34e9", // 㓩
+ 0x34ea: "\x12\a\u34ea", // 㓪
+ 0x34eb: "\x12\a\u34eb", // 㓫
+ 0x34ec: "\x12\b\u34ec", // 㓬
+ 0x34ed: "\x12\b\u34ed", // 㓭
+ 0x34ee: "\x12\b\u34ee", // 㓮
+ 0x34ef: "\x12\b\u34ef", // 㓯
+ 0x34f0: "\x12\b\u34f0", // 㓰
+ 0x34f1: "\x12\t\u34f1", // 㓱
+ 0x34f2: "\x12\t\u34f2", // 㓲
+ 0x34f3: "\x12\t\u34f3", // 㓳
+ 0x34f4: "\x12\t\u34f4", // 㓴
+ 0x34f5: "\x12\t\u34f5", // 㓵
+ 0x34f6: "\x12\t\u34f6", // 㓶
+ 0x34f7: "\x12\n\u34f7", // 㓷
+ 0x34f8: "\x12\n\u34f8", // 㓸
+ 0x34f9: "\x12\n\u34f9", // 㓹
+ 0x34fa: "\x12\n\u34fa", // 㓺
+ 0x34fb: "\x12\n\u34fb", // 㓻
+ 0x34fc: "\x12\v\u34fc", // 㓼
+ 0x34fd: "\x12\v\u34fd", // 㓽
+ 0x34fe: "\x12\f\u34fe", // 㓾
+ 0x34ff: "\x12\f\u34ff", // 㓿
+ 0x3500: "\x12\f\u3500", // 㔀
+ 0x3501: "\x12\f\u3501", // 㔁
+ 0x3502: "\x12\f\u3502", // 㔂
+ 0x3503: "\x12\f\u3503", // 㔃
+ 0x3504: "\x12\f\u3504", // 㔄
+ 0x3505: "\x12\f\u3505", // 㔅
+ 0x3506: "\x12\f\u3506", // 㔆
+ 0x3507: "\x12\f\u3507", // 㔇
+ 0x3508: "\x12\f\u3508", // 㔈
+ 0x3509: "\x12\f\u3509", // 㔉
+ 0x350a: "\x12\r\u350a", // 㔊
+ 0x350b: "\x12\x0e\u350b", // 㔋
+ 0x350c: "\x12\x0e\u350c", // 㔌
+ 0x350d: "\x12\x0e\u350d", // 㔍
+ 0x350e: "\x12\x0f\u350e", // 㔎
+ 0x350f: "\x12\x0f\u350f", // 㔏
+ 0x3510: "\x12\x10\u3510", // 㔐
+ 0x3511: "\x12\x11\u3511", // 㔑
+ 0x3512: "\x12\x12\u3512", // 㔒
+ 0x3513: "\x13\x03\u3513", // 㔓
+ 0x3514: "\x13\x04\u3514", // 㔔
+ 0x3515: "\x13\x04\u3515", // 㔕
+ 0x3516: "\x13\x04\u3516", // 㔖
+ 0x3517: "\x13\x05\u3517", // 㔗
+ 0x3518: "\x13\x05\u3518", // 㔘
+ 0x3519: "\x13\x06\u3519", // 㔙
+ 0x351a: "\x13\x06\u351a", // 㔚
+ 0x351b: "\x13\x06\u351b", // 㔛
+ 0x351c: "\x13\a\u351c", // 㔜
+ 0x351d: "\x13\b\u351d", // 㔝
+ 0x351e: "\x13\b\u351e", // 㔞
+ 0x351f: "\x13\b\u351f", // 㔟
+ 0x3520: "\x13\t\u3520", // 㔠
+ 0x3521: "\x13\n\u3521", // 㔡
+ 0x3522: "\x13\f\u3522", // 㔢
+ 0x3523: "\x13\x0f\u3523", // 㔣
+ 0x3524: "\x13\x0f\u3524", // 㔤
+ 0x3525: "\x13\x0f\u3525", // 㔥
+ 0x3526: "\x13\x0f\u3526", // 㔦
+ 0x3527: "\x13\x10\u3527", // 㔧
+ 0x3528: "\x14\t\u3528", // 㔨
+ 0x3529: "\x14\n\u3529", // 㔩
+ 0x352a: "\x14\v\u352a", // 㔪
+ 0x352b: "\x15\x02\u352b", // 㔫
+ 0x352c: "\x15\x06\u352c", // 㔬
+ 0x352d: "\x15\t\u352d", // 㔭
+ 0x352e: "\x82\x11\u352e", // 㔮
+ 0x352f: "\x16\x05\u352f", // 㔯
+ 0x3530: "\x16\x05\u3530", // 㔰
+ 0x3531: "\x16\t\u3531", // 㔱
+ 0x3532: "\x16\v\u3532", // 㔲
+ 0x3533: "\x16\v\u3533", // 㔳
+ 0x3534: "\x16\v\u3534", // 㔴
+ 0x3535: "\x16\f\u3535", // 㔵
+ 0x3536: "\x16\x18\u3536", // 㔶
+ 0x3537: "\x17\x05\u3537", // 㔷
+ 0x3538: "\x17\n\u3538", // 㔸
+ 0x3539: "\x18\x02\u3539", // 㔹
+ 0x353a: "\x18\x04\u353a", // 㔺
+ 0x353b: "\x18\x04\u353b", // 㔻
+ 0x353c: "\x18\v\u353c", // 㔼
+ 0x353d: "\x19\x06\u353d", // 㔽
+ 0x353e: "\x1a\x01\u353e", // 㔾
+ 0x353f: "\x1a\x01\u353f", // 㔿
+ 0x3540: "\x1a\x05\u3540", // 㕀
+ 0x3541: "\x1a\x06\u3541", // 㕁
+ 0x3542: "\x1b\x04\u3542", // 㕂
+ 0x3543: "\x1b\x04\u3543", // 㕃
+ 0x3544: "\x1b\x04\u3544", // 㕄
+ 0x3545: "\x1b\x05\u3545", // 㕅
+ 0x3546: "\x1b\x05\u3546", // 㕆
+ 0x3547: "\x1b\x05\u3547", // 㕇
+ 0x3548: "\x1b\x06\u3548", // 㕈
+ 0x3549: "\x1b\x06\u3549", // 㕉
+ 0x354a: "\x1b\a\u354a", // 㕊
+ 0x354b: "\x1b\b\u354b", // 㕋
+ 0x354c: "\x1b\b\u354c", // 㕌
+ 0x354d: "\x1b\b\u354d", // 㕍
+ 0x354e: "\x1b\n\u354e", // 㕎
+ 0x354f: "\x1b\v\u354f", // 㕏
+ 0x3550: "\x1b\f\u3550", // 㕐
+ 0x3551: "\x1b\f\u3551", // 㕑
+ 0x3552: "\x1b\r\u3552", // 㕒
+ 0x3553: "\x1b\x0f\u3553", // 㕓
+ 0x3554: "\x1b\x16\u3554", // 㕔
+ 0x3555: "\x1c\x02\u3555", // 㕕
+ 0x3556: "\x1c\b\u3556", // 㕖
+ 0x3557: "\x1c\t\u3557", // 㕗
+ 0x3558: "\x1c\t\u3558", // 㕘
+ 0x3559: "\x1c\r\u3559", // 㕙
+ 0x355a: "\x1d\x02\u355a", // 㕚
+ 0x355b: "\x1d\x02\u355b", // 㕛
+ 0x355c: "\x1d\x04\u355c", // 㕜
+ 0x355d: "\x1d\x05\u355d", // 㕝
+ 0x355e: "\x1d\x06\u355e", // 㕞
+ 0x355f: "\x1d\a\u355f", // 㕟
+ 0x3560: "\x1d\n\u3560", // 㕠
+ 0x3561: "\x1d\f\u3561", // 㕡
+ 0x3562: "\x9a\a\u3562", // 㕢
+ 0x3563: "\x1e\x02\u3563", // 㕣
+ 0x3564: "\x1e\x02\u3564", // 㕤
+ 0x3565: "\x1e\x02\u3565", // 㕥
+ 0x3566: "\x1e\x03\u3566", // 㕦
+ 0x3567: "\x1e\x03\u3567", // 㕧
+ 0x3568: "\x1e\x03\u3568", // 㕨
+ 0x3569: "\x1e\x04\u3569", // 㕩
+ 0x356a: "\x1e\x04\u356a", // 㕪
+ 0x356b: "\x1e\x04\u356b", // 㕫
+ 0x356c: "\x1e\x04\u356c", // 㕬
+ 0x356d: "\x1e\x04\u356d", // 㕭
+ 0x356e: "\x1e\x04\u356e", // 㕮
+ 0x356f: "\x1e\x04\u356f", // 㕯
+ 0x3570: "\x1e\x04\u3570", // 㕰
+ 0x3571: "\x1e\x04\u3571", // 㕱
+ 0x3572: "\x1e\x04\u3572", // 㕲
+ 0x3573: "\x1e\x04\u3573", // 㕳
+ 0x3574: "\x1e\x04\u3574", // 㕴
+ 0x3575: "\x1e\x04\u3575", // 㕵
+ 0x3576: "\x1e\x04\u3576", // 㕶
+ 0x3577: "\x1e\x05\u3577", // 㕷
+ 0x3578: "\x1e\x05\u3578", // 㕸
+ 0x3579: "\x1e\x05\u3579", // 㕹
+ 0x357a: "\x1e\x05\u357a", // 㕺
+ 0x357b: "\x1e\x05\u357b", // 㕻
+ 0x357c: "\x1e\x05\u357c", // 㕼
+ 0x357d: "\x1e\x05\u357d", // 㕽
+ 0x357e: "\x1e\x05\u357e", // 㕾
+ 0x357f: "\x1e\x05\u357f", // 㕿
+ 0x3580: "\x1e\x06\u3580", // 㖀
+ 0x3581: "\x1e\x06\u3581", // 㖁
+ 0x3582: "\x1e\x06\u3582", // 㖂
+ 0x3583: "\x1e\x06\u3583", // 㖃
+ 0x3584: "\x1e\x06\u3584", // 㖄
+ 0x3585: "\x1e\x06\u3585", // 㖅
+ 0x3586: "\x1e\x06\u3586", // 㖆
+ 0x3587: "\x1e\x06\u3587", // 㖇
+ 0x3588: "\x1e\x06\u3588", // 㖈
+ 0x3589: "\x1e\x06\u3589", // 㖉
+ 0x358a: "\x1e\x06\u358a", // 㖊
+ 0x358b: "\x1e\x06\u358b", // 㖋
+ 0x358c: "\x1e\x06\u358c", // 㖌
+ 0x358d: "\x1e\x06\u358d", // 㖍
+ 0x358e: "\x1e\x06\u358e", // 㖎
+ 0x358f: "\x1e\a\u358f", // 㖏
+ 0x3590: "\x1e\a\u3590", // 㖐
+ 0x3591: "\x1e\a\u3591", // 㖑
+ 0x3592: "\x1e\a\u3592", // 㖒
+ 0x3593: "\x1e\a\u3593", // 㖓
+ 0x3594: "\x1e\a\u3594", // 㖔
+ 0x3595: "\x1e\a\u3595", // 㖕
+ 0x3596: "\x1e\a\u3596", // 㖖
+ 0x3597: "\x1e\a\u3597", // 㖗
+ 0x3598: "\x1e\a\u3598", // 㖘
+ 0x3599: "\x1e\a\u3599", // 㖙
+ 0x359a: "\x1e\a\u359a", // 㖚
+ 0x359b: "\x1e\a\u359b", // 㖛
+ 0x359c: "\x1e\a\u359c", // 㖜
+ 0x359d: "\x1e\a\u359d", // 㖝
+ 0x359e: "\x1e\a\u359e", // 㖞
+ 0x359f: "\x1e\b\u359f", // 㖟
+ 0x35a0: "\x1e\b\u35a0", // 㖠
+ 0x35a1: "\x1e\b\u35a1", // 㖡
+ 0x35a2: "\x1e\b\u35a2", // 㖢
+ 0x35a3: "\x1e\b\u35a3", // 㖣
+ 0x35a4: "\x1e\b\u35a4", // 㖤
+ 0x35a5: "\x1e\b\u35a5", // 㖥
+ 0x35a6: "\x1e\b\u35a6", // 㖦
+ 0x35a7: "\x1e\b\u35a7", // 㖧
+ 0x35a8: "\x1e\b\u35a8", // 㖨
+ 0x35a9: "\x1e\b\u35a9", // 㖩
+ 0x35aa: "\x1e\b\u35aa", // 㖪
+ 0x35ab: "\x1e\b\u35ab", // 㖫
+ 0x35ac: "\x1e\b\u35ac", // 㖬
+ 0x35ad: "\x1e\b\u35ad", // 㖭
+ 0x35ae: "\x1e\b\u35ae", // 㖮
+ 0x35af: "\x1e\b\u35af", // 㖯
+ 0x35b0: "\x1e\b\u35b0", // 㖰
+ 0x35b1: "\x1e\b\u35b1", // 㖱
+ 0x35b2: "\x1e\b\u35b2", // 㖲
+ 0x35b3: "\x1e\b\u35b3", // 㖳
+ 0x35b4: "\x1e\b\u35b4", // 㖴
+ 0x35b5: "\x1e\b\u35b5", // 㖵
+ 0x35b6: "\x1e\t\u35b6", // 㖶
+ 0x35b7: "\x1e\t\u35b7", // 㖷
+ 0x35b8: "\x1e\t\u35b8", // 㖸
+ 0x35b9: "\x1e\t\u35b9", // 㖹
+ 0x35ba: "\x1e\t\u35ba", // 㖺
+ 0x35bb: "\x1e\t\u35bb", // 㖻
+ 0x35bc: "\x1e\t\u35bc", // 㖼
+ 0x35bd: "\x1e\t\u35bd", // 㖽
+ 0x35be: "\x1e\t\u35be", // 㖾
+ 0x35bf: "\x1e\t\u35bf", // 㖿
+ 0x35c0: "\x1e\t\u35c0", // 㗀
+ 0x35c1: "\x1e\t\u35c1", // 㗁
+ 0x35c2: "\x1e\t\u35c2", // 㗂
+ 0x35c3: "\x1e\t\u35c3", // 㗃
+ 0x35c4: "\x1e\t\u35c4", // 㗄
+ 0x35c5: "\x1e\t\u35c5", // 㗅
+ 0x35c6: "\x1e\t\u35c6", // 㗆
+ 0x35c7: "\x1e\t\u35c7", // 㗇
+ 0x35c8: "\x1e\t\u35c8", // 㗈
+ 0x35c9: "\x1e\t\u35c9", // 㗉
+ 0x35ca: "\x1e\t\u35ca", // 㗊
+ 0x35cb: "\x1e\t\u35cb", // 㗋
+ 0x35cc: "\x1e\t\u35cc", // 㗌
+ 0x35cd: "\x1e\t\u35cd", // 㗍
+ 0x35ce: "\x1e\t\u35ce", // 㗎
+ 0x35cf: "\x1e\t\u35cf", // 㗏
+ 0x35d0: "\x1e\t\u35d0", // 㗐
+ 0x35d1: "\x1e\t\u35d1", // 㗑
+ 0x35d2: "\x1e\n\u35d2", // 㗒
+ 0x35d3: "\x1e\n\u35d3", // 㗓
+ 0x35d4: "\x1e\n\u35d4", // 㗔
+ 0x35d5: "\x1e\n\u35d5", // 㗕
+ 0x35d6: "\x1e\n\u35d6", // 㗖
+ 0x35d7: "\x1e\n\u35d7", // 㗗
+ 0x35d8: "\x1e\n\u35d8", // 㗘
+ 0x35d9: "\x1e\n\u35d9", // 㗙
+ 0x35da: "\x1e\n\u35da", // 㗚
+ 0x35db: "\x1e\n\u35db", // 㗛
+ 0x35dc: "\x1e\n\u35dc", // 㗜
+ 0x35dd: "\x1e\n\u35dd", // 㗝
+ 0x35de: "\x1e\n\u35de", // 㗞
+ 0x35df: "\x1e\n\u35df", // 㗟
+ 0x35e0: "\x1e\n\u35e0", // 㗠
+ 0x35e1: "\x1e\n\u35e1", // 㗡
+ 0x35e2: "\x1e\v\u35e2", // 㗢
+ 0x35e3: "\x1e\v\u35e3", // 㗣
+ 0x35e4: "\x1e\v\u35e4", // 㗤
+ 0x35e5: "\x1e\v\u35e5", // 㗥
+ 0x35e6: "\x1e\v\u35e6", // 㗦
+ 0x35e7: "\x1e\v\u35e7", // 㗧
+ 0x35e8: "\x1e\v\u35e8", // 㗨
+ 0x35e9: "\x1e\v\u35e9", // 㗩
+ 0x35ea: "\x1e\v\u35ea", // 㗪
+ 0x35eb: "\x1e\v\u35eb", // 㗫
+ 0x35ec: "\x1e\v\u35ec", // 㗬
+ 0x35ed: "\x1e\v\u35ed", // 㗭
+ 0x35ee: "\x1e\v\u35ee", // 㗮
+ 0x35ef: "\x1e\v\u35ef", // 㗯
+ 0x35f0: "\x1e\v\u35f0", // 㗰
+ 0x35f1: "\x1e\f\u35f1", // 㗱
+ 0x35f2: "\x1e\f\u35f2", // 㗲
+ 0x35f3: "\x1e\f\u35f3", // 㗳
+ 0x35f4: "\x1e\f\u35f4", // 㗴
+ 0x35f5: "\x1e\f\u35f5", // 㗵
+ 0x35f6: "\x1e\f\u35f6", // 㗶
+ 0x35f7: "\x1e\f\u35f7", // 㗷
+ 0x35f8: "\x1e\f\u35f8", // 㗸
+ 0x35f9: "\x1e\f\u35f9", // 㗹
+ 0x35fa: "\x1e\f\u35fa", // 㗺
+ 0x35fb: "\x1e\r\u35fb", // 㗻
+ 0x35fc: "\x1e\r\u35fc", // 㗼
+ 0x35fd: "\x1e\r\u35fd", // 㗽
+ 0x35fe: "\x1e\r\u35fe", // 㗾
+ 0x35ff: "\x1e\r\u35ff", // 㗿
+ 0x3600: "\x1e\r\u3600", // 㘀
+ 0x3601: "\x1e\r\u3601", // 㘁
+ 0x3602: "\x1e\r\u3602", // 㘂
+ 0x3603: "\x1e\r\u3603", // 㘃
+ 0x3604: "\x1e\r\u3604", // 㘄
+ 0x3605: "\x1e\x0e\u3605", // 㘅
+ 0x3606: "\x1e\x0e\u3606", // 㘆
+ 0x3607: "\x1e\x0e\u3607", // 㘇
+ 0x3608: "\x1e\x0e\u3608", // 㘈
+ 0x3609: "\x1e\x0f\u3609", // 㘉
+ 0x360a: "\x1e\x0f\u360a", // 㘊
+ 0x360b: "\x1e\x0f\u360b", // 㘋
+ 0x360c: "\x1e\x0f\u360c", // 㘌
+ 0x360d: "\x1e\x0f\u360d", // 㘍
+ 0x360e: "\x1e\x0f\u360e", // 㘎
+ 0x360f: "\x1e\x0f\u360f", // 㘏
+ 0x3610: "\x1e\x10\u3610", // 㘐
+ 0x3611: "\x1e\x10\u3611", // 㘑
+ 0x3612: "\x1e\x10\u3612", // 㘒
+ 0x3613: "\x1e\x11\u3613", // 㘓
+ 0x3614: "\x1e\x11\u3614", // 㘔
+ 0x3615: "\x1e\x12\u3615", // 㘕
+ 0x3616: "\x1e\x12\u3616", // 㘖
+ 0x3617: "\x1e\x12\u3617", // 㘗
+ 0x3618: "\x1e\x13\u3618", // 㘘
+ 0x3619: "\x1e\x14\u3619", // 㘙
+ 0x361a: "\x1e\x14\u361a", // 㘚
+ 0x361b: "\x1e\x16\u361b", // 㘛
+ 0x361c: "\x1e\x17\u361c", // 㘜
+ 0x361d: "\x1f\x02\u361d", // 㘝
+ 0x361e: "\x13\x03\u361e", // 㘞
+ 0x361f: "\x1f\x03\u361f", // 㘟
+ 0x3620: "\x1f\x05\u3620", // 㘠
+ 0x3621: "\x1f\x05\u3621", // 㘡
+ 0x3622: "\x1f\x06\u3622", // 㘢
+ 0x3623: "\x1f\a\u3623", // 㘣
+ 0x3624: "\x1f\v\u3624", // 㘤
+ 0x3625: "\x1f\x11\u3625", // 㘥
+ 0x3626: " \x02\u3626", // 㘦
+ 0x3627: " \x04\u3627", // 㘧
+ 0x3628: " \x04\u3628", // 㘨
+ 0x3629: " \x04\u3629", // 㘩
+ 0x362a: " \x04\u362a", // 㘪
+ 0x362b: " \x04\u362b", // 㘫
+ 0x362c: " \x04\u362c", // 㘬
+ 0x362d: " \x04\u362d", // 㘭
+ 0x362e: " \x04\u362e", // 㘮
+ 0x362f: " \x04\u362f", // 㘯
+ 0x3630: " \x04\u3630", // 㘰
+ 0x3631: " \x05\u3631", // 㘱
+ 0x3632: " \x05\u3632", // 㘲
+ 0x3633: " \x05\u3633", // 㘳
+ 0x3634: " \x05\u3634", // 㘴
+ 0x3635: " \x05\u3635", // 㘵
+ 0x3636: " \x06\u3636", // 㘶
+ 0x3637: " \x06\u3637", // 㘷
+ 0x3638: " \x06\u3638", // 㘸
+ 0x3639: " \x06\u3639", // 㘹
+ 0x363a: " \x06\u363a", // 㘺
+ 0x363b: " \x06\u363b", // 㘻
+ 0x363c: " \x06\u363c", // 㘼
+ 0x363d: " \x06\u363d", // 㘽
+ 0x363e: " \x06\u363e", // 㘾
+ 0x363f: " \a\u363f", // 㘿
+ 0x3640: " \a\u3640", // 㙀
+ 0x3641: " \a\u3641", // 㙁
+ 0x3642: " \a\u3642", // 㙂
+ 0x3643: " \a\u3643", // 㙃
+ 0x3644: " \a\u3644", // 㙄
+ 0x3645: " \a\u3645", // 㙅
+ 0x3646: " \a\u3646", // 㙆
+ 0x3647: " \b\u3647", // 㙇
+ 0x3648: " \b\u3648", // 㙈
+ 0x3649: " \b\u3649", // 㙉
+ 0x364a: " \b\u364a", // 㙊
+ 0x364b: " \b\u364b", // 㙋
+ 0x364c: " \b\u364c", // 㙌
+ 0x364d: " \b\u364d", // 㙍
+ 0x364e: " \t\u364e", // 㙎
+ 0x364f: " \t\u364f", // 㙏
+ 0x3650: " \t\u3650", // 㙐
+ 0x3651: " \t\u3651", // 㙑
+ 0x3652: " \t\u3652", // 㙒
+ 0x3653: " \t\u3653", // 㙓
+ 0x3654: " \t\u3654", // 㙔
+ 0x3655: " \t\u3655", // 㙕
+ 0x3656: " \t\u3656", // 㙖
+ 0x3657: " \t\u3657", // 㙗
+ 0x3658: " \t\u3658", // 㙘
+ 0x3659: " \n\u3659", // 㙙
+ 0x365a: " \n\u365a", // 㙚
+ 0x365b: " \n\u365b", // 㙛
+ 0x365c: " \n\u365c", // 㙜
+ 0x365d: " \n\u365d", // 㙝
+ 0x365e: " \n\u365e", // 㙞
+ 0x365f: " \n\u365f", // 㙟
+ 0x3660: " \v\u3660", // 㙠
+ 0x3661: " \v\u3661", // 㙡
+ 0x3662: " \v\u3662", // 㙢
+ 0x3663: " \v\u3663", // 㙣
+ 0x3664: " \v\u3664", // 㙤
+ 0x3665: " \v\u3665", // 㙥
+ 0x3666: " \v\u3666", // 㙦
+ 0x3667: " \f\u3667", // 㙧
+ 0x3668: " \f\u3668", // 㙨
+ 0x3669: " \f\u3669", // 㙩
+ 0x366a: " \f\u366a", // 㙪
+ 0x366b: " \f\u366b", // 㙫
+ 0x366c: " \f\u366c", // 㙬
+ 0x366d: " \f\u366d", // 㙭
+ 0x366e: " \f\u366e", // 㙮
+ 0x366f: " \f\u366f", // 㙯
+ 0x3670: " \r\u3670", // 㙰
+ 0x3671: " \r\u3671", // 㙱
+ 0x3672: " \r\u3672", // 㙲
+ 0x3673: " \r\u3673", // 㙳
+ 0x3674: " \r\u3674", // 㙴
+ 0x3675: " \r\u3675", // 㙵
+ 0x3676: " \r\u3676", // 㙶
+ 0x3677: " \x0e\u3677", // 㙷
+ 0x3678: " \x0e\u3678", // 㙸
+ 0x3679: " \x0e\u3679", // 㙹
+ 0x367a: " \x0e\u367a", // 㙺
+ 0x367b: " \x0f\u367b", // 㙻
+ 0x367c: " \x0f\u367c", // 㙼
+ 0x367d: " \x0f\u367d", // 㙽
+ 0x367e: " \x10\u367e", // 㙾
+ 0x367f: " \x10\u367f", // 㙿
+ 0x3680: " \x11\u3680", // 㚀
+ 0x3681: " \x15\u3681", // 㚁
+ 0x3682: " \x16\u3682", // 㚂
+ 0x3683: "!\t\u3683", // 㚃
+ 0x3684: "!\f\u3684", // 㚄
+ 0x3685: "\"\x06\u3685", // 㚅
+ 0x3686: "#\x06\u3686", // 㚆
+ 0x3687: "#\x06\u3687", // 㚇
+ 0x3688: "$\x02\u3688", // 㚈
+ 0x3689: "$\x05\u3689", // 㚉
+ 0x368a: "$\t\u368a", // 㚊
+ 0x368b: "$\v\u368b", // 㚋
+ 0x368c: "$\v\u368c", // 㚌
+ 0x368d: "$\x0f\u368d", // 㚍
+ 0x368e: "%\x02\u368e", // 㚎
+ 0x368f: "%\x03\u368f", // 㚏
+ 0x3690: "%\x03\u3690", // 㚐
+ 0x3691: "%\x03\u3691", // 㚑
+ 0x3692: "%\x04\u3692", // 㚒
+ 0x3693: "%\x04\u3693", // 㚓
+ 0x3694: "%\x05\u3694", // 㚔
+ 0x3695: "%\x05\u3695", // 㚕
+ 0x3696: "%\x05\u3696", // 㚖
+ 0x3697: "%\x05\u3697", // 㚗
+ 0x3698: "%\x05\u3698", // 㚘
+ 0x3699: "%\x05\u3699", // 㚙
+ 0x369a: "%\x06\u369a", // 㚚
+ 0x369b: "%\x06\u369b", // 㚛
+ 0x369c: "%\b\u369c", // 㚜
+ 0x369d: "%\b\u369d", // 㚝
+ 0x369e: "%\b\u369e", // 㚞
+ 0x369f: "%\t\u369f", // 㚟
+ 0x36a0: "%\n\u36a0", // 㚠
+ 0x36a1: "%\r\u36a1", // 㚡
+ 0x36a2: "&\x02\u36a2", // 㚢
+ 0x36a3: "&\x03\u36a3", // 㚣
+ 0x36a4: "&\x03\u36a4", // 㚤
+ 0x36a5: "&\x03\u36a5", // 㚥
+ 0x36a6: "&\x03\u36a6", // 㚦
+ 0x36a7: "&\x03\u36a7", // 㚧
+ 0x36a8: "&\x03\u36a8", // 㚨
+ 0x36a9: "&\x04\u36a9", // 㚩
+ 0x36aa: "&\x04\u36aa", // 㚪
+ 0x36ab: "&\x04\u36ab", // 㚫
+ 0x36ac: "&\x04\u36ac", // 㚬
+ 0x36ad: "&\x04\u36ad", // 㚭
+ 0x36ae: "&\x04\u36ae", // 㚮
+ 0x36af: "&\x04\u36af", // 㚯
+ 0x36b0: "&\x05\u36b0", // 㚰
+ 0x36b1: "&\x05\u36b1", // 㚱
+ 0x36b2: "&\x05\u36b2", // 㚲
+ 0x36b3: "&\x05\u36b3", // 㚳
+ 0x36b4: "&\x05\u36b4", // 㚴
+ 0x36b5: "&\x05\u36b5", // 㚵
+ 0x36b6: "&\x05\u36b6", // 㚶
+ 0x36b7: "&\x05\u36b7", // 㚷
+ 0x36b8: "&\x05\u36b8", // 㚸
+ 0x36b9: "&\x05\u36b9", // 㚹
+ 0x36ba: "&\x05\u36ba", // 㚺
+ 0x36bb: "&\x05\u36bb", // 㚻
+ 0x36bc: "&\x05\u36bc", // 㚼
+ 0x36bd: "&\x05\u36bd", // 㚽
+ 0x36be: "&\x05\u36be", // 㚾
+ 0x36bf: "&\x05\u36bf", // 㚿
+ 0x36c0: "&\x05\u36c0", // 㛀
+ 0x36c1: "&\x05\u36c1", // 㛁
+ 0x36c2: "&\x06\u36c2", // 㛂
+ 0x36c3: "&\x06\u36c3", // 㛃
+ 0x36c4: "&\x06\u36c4", // 㛄
+ 0x36c5: "&\x06\u36c5", // 㛅
+ 0x36c6: "&\x06\u36c6", // 㛆
+ 0x36c7: "&\x06\u36c7", // 㛇
+ 0x36c8: "&\x06\u36c8", // 㛈
+ 0x36c9: "&\x06\u36c9", // 㛉
+ 0x36ca: "&\x06\u36ca", // 㛊
+ 0x36cb: "&\x06\u36cb", // 㛋
+ 0x36cc: "&\x06\u36cc", // 㛌
+ 0x36cd: "&\a\u36cd", // 㛍
+ 0x36ce: "&\a\u36ce", // 㛎
+ 0x36cf: "&\a\u36cf", // 㛏
+ 0x36d0: "&\a\u36d0", // 㛐
+ 0x36d1: "&\a\u36d1", // 㛑
+ 0x36d2: "&\a\u36d2", // 㛒
+ 0x36d3: "&\a\u36d3", // 㛓
+ 0x36d4: "&\a\u36d4", // 㛔
+ 0x36d5: "&\a\u36d5", // 㛕
+ 0x36d6: "&\a\u36d6", // 㛖
+ 0x36d7: "&\a\u36d7", // 㛗
+ 0x36d8: "&\a\u36d8", // 㛘
+ 0x36d9: "&\a\u36d9", // 㛙
+ 0x36da: "&\a\u36da", // 㛚
+ 0x36db: "&\a\u36db", // 㛛
+ 0x36dc: "&\a\u36dc", // 㛜
+ 0x36dd: "&\a\u36dd", // 㛝
+ 0x36de: "&\a\u36de", // 㛞
+ 0x36df: "&\a\u36df", // 㛟
+ 0x36e0: "&\x04\u36e0", // 㛠
+ 0x36e1: "&\a\u36e1", // 㛡
+ 0x36e2: "&\a\u36e2", // 㛢
+ 0x36e3: "&\a\u36e3", // 㛣
+ 0x36e4: "&\a\u36e4", // 㛤
+ 0x36e5: "&\b\u36e5", // 㛥
+ 0x36e6: "&\b\u36e6", // 㛦
+ 0x36e7: "&\b\u36e7", // 㛧
+ 0x36e8: "&\b\u36e8", // 㛨
+ 0x36e9: "&\b\u36e9", // 㛩
+ 0x36ea: "&\b\u36ea", // 㛪
+ 0x36eb: "&\b\u36eb", // 㛫
+ 0x36ec: "&\b\u36ec", // 㛬
+ 0x36ed: "&\b\u36ed", // 㛭
+ 0x36ee: "&\t\u36ee", // 㛮
+ 0x36ef: "&\t\u36ef", // 㛯
+ 0x36f0: "&\t\u36f0", // 㛰
+ 0x36f1: "&\t\u36f1", // 㛱
+ 0x36f2: "&\t\u36f2", // 㛲
+ 0x36f3: "&\t\u36f3", // 㛳
+ 0x36f4: "&\t\u36f4", // 㛴
+ 0x36f5: "&\t\u36f5", // 㛵
+ 0x36f6: "&\t\u36f6", // 㛶
+ 0x36f7: "&\t\u36f7", // 㛷
+ 0x36f8: "&\t\u36f8", // 㛸
+ 0x36f9: "&\t\u36f9", // 㛹
+ 0x36fa: "&\t\u36fa", // 㛺
+ 0x36fb: "&\t\u36fb", // 㛻
+ 0x36fc: "&\t\u36fc", // 㛼
+ 0x36fd: "&\t\u36fd", // 㛽
+ 0x36fe: "&\t\u36fe", // 㛾
+ 0x36ff: "&\t\u36ff", // 㛿
+ 0x3700: "&\t\u3700", // 㜀
+ 0x3701: "&\t\u3701", // 㜁
+ 0x3702: "&\t\u3702", // 㜂
+ 0x3703: "&\t\u3703", // 㜃
+ 0x3704: "&\t\u3704", // 㜄
+ 0x3705: "&\n\u3705", // 㜅
+ 0x3706: "&\n\u3706", // 㜆
+ 0x3707: "&\n\u3707", // 㜇
+ 0x3708: "&\n\u3708", // 㜈
+ 0x3709: "&\n\u3709", // 㜉
+ 0x370a: "&\n\u370a", // 㜊
+ 0x370b: "&\n\u370b", // 㜋
+ 0x370c: "&\n\u370c", // 㜌
+ 0x370d: "&\n\u370d", // 㜍
+ 0x370e: "&\n\u370e", // 㜎
+ 0x370f: "&\n\u370f", // 㜏
+ 0x3710: "&\n\u3710", // 㜐
+ 0x3711: "&\n\u3711", // 㜑
+ 0x3712: "&\n\u3712", // 㜒
+ 0x3713: "&\n\u3713", // 㜓
+ 0x3714: "&\n\u3714", // 㜔
+ 0x3715: "&\v\u3715", // 㜕
+ 0x3716: "&\v\u3716", // 㜖
+ 0x3717: "&\v\u3717", // 㜗
+ 0x3718: "&\v\u3718", // 㜘
+ 0x3719: "&\v\u3719", // 㜙
+ 0x371a: "&\v\u371a", // 㜚
+ 0x371b: "&\v\u371b", // 㜛
+ 0x371c: "&\v\u371c", // 㜜
+ 0x371d: "&\v\u371d", // 㜝
+ 0x371e: "&\v\u371e", // 㜞
+ 0x371f: "&\v\u371f", // 㜟
+ 0x3720: "&\v\u3720", // 㜠
+ 0x3721: "&\v\u3721", // 㜡
+ 0x3722: "&\v\u3722", // 㜢
+ 0x3723: "&\f\u3723", // 㜣
+ 0x3724: "&\f\u3724", // 㜤
+ 0x3725: "&\f\u3725", // 㜥
+ 0x3726: "&\f\u3726", // 㜦
+ 0x3727: "&\f\u3727", // 㜧
+ 0x3728: "&\f\u3728", // 㜨
+ 0x3729: "&\r\u3729", // 㜩
+ 0x372a: "&\r\u372a", // 㜪
+ 0x372b: "&\r\u372b", // 㜫
+ 0x372c: "&\r\u372c", // 㜬
+ 0x372d: "&\r\u372d", // 㜭
+ 0x372e: "&\x0e\u372e", // 㜮
+ 0x372f: "&\x0e\u372f", // 㜯
+ 0x3730: "&\x0f\u3730", // 㜰
+ 0x3731: "&\x0f\u3731", // 㜱
+ 0x3732: "&\x10\u3732", // 㜲
+ 0x3733: "&\x10\u3733", // 㜳
+ 0x3734: "&\x10\u3734", // 㜴
+ 0x3735: "&\x10\u3735", // 㜵
+ 0x3736: "&\x11\u3736", // 㜶
+ 0x3737: "&\x11\u3737", // 㜷
+ 0x3738: "&\x11\u3738", // 㜸
+ 0x3739: "&\x12\u3739", // 㜹
+ 0x373a: "&\x13\u373a", // 㜺
+ 0x373b: "&\x17\u373b", // 㜻
+ 0x373c: "&\x17\u373c", // 㜼
+ 0x373d: "'\x03\u373d", // 㜽
+ 0x373e: "'\x04\u373e", // 㜾
+ 0x373f: "'\x04\u373f", // 㜿
+ 0x3740: "'\x05\u3740", // 㝀
+ 0x3741: "'\x06\u3741", // 㝁
+ 0x3742: "'\a\u3742", // 㝂
+ 0x3743: "'\a\u3743", // 㝃
+ 0x3744: "'\t\u3744", // 㝄
+ 0x3745: "'\n\u3745", // 㝅
+ 0x3746: "'\f\u3746", // 㝆
+ 0x3747: "'\r\u3747", // 㝇
+ 0x3748: "'\x16\u3748", // 㝈
+ 0x3749: "(\x01\u3749", // 㝉
+ 0x374a: "(\x02\u374a", // 㝊
+ 0x374b: "(\x02\u374b", // 㝋
+ 0x374c: "(\x03\u374c", // 㝌
+ 0x374d: "(\x03\u374d", // 㝍
+ 0x374e: "(\x04\u374e", // 㝎
+ 0x374f: "(\x04\u374f", // 㝏
+ 0x3750: "(\x04\u3750", // 㝐
+ 0x3751: "(\x04\u3751", // 㝑
+ 0x3752: "(\x05\u3752", // 㝒
+ 0x3753: "(\x06\u3753", // 㝓
+ 0x3754: "(\x06\u3754", // 㝔
+ 0x3755: "(\x06\u3755", // 㝕
+ 0x3756: "(\x06\u3756", // 㝖
+ 0x3757: "(\a\u3757", // 㝗
+ 0x3758: "(\a\u3758", // 㝘
+ 0x3759: "(\a\u3759", // 㝙
+ 0x375a: "(\a\u375a", // 㝚
+ 0x375b: "(\b\u375b", // 㝛
+ 0x375c: "(\b\u375c", // 㝜
+ 0x375d: "(\b\u375d", // 㝝
+ 0x375e: "(\b\u375e", // 㝞
+ 0x375f: "(\b\u375f", // 㝟
+ 0x3760: "(\b\u3760", // 㝠
+ 0x3761: "(\b\u3761", // 㝡
+ 0x3762: "(\t\u3762", // 㝢
+ 0x3763: "(\t\u3763", // 㝣
+ 0x3764: "(\n\u3764", // 㝤
+ 0x3765: "(\n\u3765", // 㝥
+ 0x3766: "(\n\u3766", // 㝦
+ 0x3767: "(\n\u3767", // 㝧
+ 0x3768: "(\n\u3768", // 㝨
+ 0x3769: "(\v\u3769", // 㝩
+ 0x376a: "(\v\u376a", // 㝪
+ 0x376b: "(\v\u376b", // 㝫
+ 0x376c: "(\v\u376c", // 㝬
+ 0x376d: "(\f\u376d", // 㝭
+ 0x376e: "(\f\u376e", // 㝮
+ 0x376f: "(\f\u376f", // 㝯
+ 0x3770: "(\x0f\u3770", // 㝰
+ 0x3771: "(\x12\u3771", // 㝱
+ 0x3772: "(\x17\u3772", // 㝲
+ 0x3773: ")\x02\u3773", // 㝳
+ 0x3774: ")\x04\u3774", // 㝴
+ 0x3775: ")\x05\u3775", // 㝵
+ 0x3776: ")\a\u3776", // 㝶
+ 0x3777: ")\t\u3777", // 㝷
+ 0x3778: "*\a\u3778", // 㝸
+ 0x3779: "*\t\u3779", // 㝹
+ 0x377a: "*\v\u377a", // 㝺
+ 0x377b: "*\f\u377b", // 㝻
+ 0x377c: "+\x03\u377c", // 㝼
+ 0x377d: "+\x04\u377d", // 㝽
+ 0x377e: "+\x05\u377e", // 㝾
+ 0x377f: "+\x05\u377f", // 㝿
+ 0x3780: "+\x06\u3780", // 㞀
+ 0x3781: "+\x06\u3781", // 㞁
+ 0x3782: "+\a\u3782", // 㞂
+ 0x3783: "+\b\u3783", // 㞃
+ 0x3784: "+\b\u3784", // 㞄
+ 0x3785: "+\b\u3785", // 㞅
+ 0x3786: "+\b\u3786", // 㞆
+ 0x3787: "+\t\u3787", // 㞇
+ 0x3788: "+\t\u3788", // 㞈
+ 0x3789: "+\n\u3789", // 㞉
+ 0x378a: "+\n\u378a", // 㞊
+ 0x378b: ",\x02\u378b", // 㞋
+ 0x378c: ",\x03\u378c", // 㞌
+ 0x378d: ",\x03\u378d", // 㞍
+ 0x378e: ",\x04\u378e", // 㞎
+ 0x378f: ",\x05\u378f", // 㞏
+ 0x3790: ",\x05\u3790", // 㞐
+ 0x3791: ",\x05\u3791", // 㞑
+ 0x3792: ",\x06\u3792", // 㞒
+ 0x3793: ",\x06\u3793", // 㞓
+ 0x3794: ",\x06\u3794", // 㞔
+ 0x3795: ",\x06\u3795", // 㞕
+ 0x3796: ",\x06\u3796", // 㞖
+ 0x3797: ",\a\u3797", // 㞗
+ 0x3798: ",\b\u3798", // 㞘
+ 0x3799: ",\b\u3799", // 㞙
+ 0x379a: ",\t\u379a", // 㞚
+ 0x379b: ",\t\u379b", // 㞛
+ 0x379c: ",\v\u379c", // 㞜
+ 0x379d: ",\v\u379d", // 㞝
+ 0x379e: ",\v\u379e", // 㞞
+ 0x379f: ",\f\u379f", // 㞟
+ 0x37a0: ",\f\u37a0", // 㞠
+ 0x37a1: ",\x10\u37a1", // 㞡
+ 0x37a2: "-\x01\u37a2", // 㞢
+ 0x37a3: "-\x04\u37a3", // 㞣
+ 0x37a4: ".\x02\u37a4", // 㞤
+ 0x37a5: ".\x02\u37a5", // 㞥
+ 0x37a6: ".\x02\u37a6", // 㞦
+ 0x37a7: ".\x02\u37a7", // 㞧
+ 0x37a8: ".\x03\u37a8", // 㞨
+ 0x37a9: ".\x03\u37a9", // 㞩
+ 0x37aa: ".\x03\u37aa", // 㞪
+ 0x37ab: ".\x03\u37ab", // 㞫
+ 0x37ac: ".\x03\u37ac", // 㞬
+ 0x37ad: ".\x03\u37ad", // 㞭
+ 0x37ae: ".\x03\u37ae", // 㞮
+ 0x37af: ".\x03\u37af", // 㞯
+ 0x37b0: ".\x04\u37b0", // 㞰
+ 0x37b1: ".\x04\u37b1", // 㞱
+ 0x37b2: ".\x04\u37b2", // 㞲
+ 0x37b3: ".\x04\u37b3", // 㞳
+ 0x37b4: ".\x04\u37b4", // 㞴
+ 0x37b5: ".\x04\u37b5", // 㞵
+ 0x37b6: ".\x04\u37b6", // 㞶
+ 0x37b7: "-\x04\u37b7", // 㞷
+ 0x37b8: ".\x04\u37b8", // 㞸
+ 0x37b9: ".\x05\u37b9", // 㞹
+ 0x37ba: ".\x05\u37ba", // 㞺
+ 0x37bb: ".\x05\u37bb", // 㞻
+ 0x37bc: ".\x05\u37bc", // 㞼
+ 0x37bd: ".\x05\u37bd", // 㞽
+ 0x37be: ".\x05\u37be", // 㞾
+ 0x37bf: ".\x05\u37bf", // 㞿
+ 0x37c0: ".\x05\u37c0", // 㟀
+ 0x37c1: ".\x05\u37c1", // 㟁
+ 0x37c2: ".\x05\u37c2", // 㟂
+ 0x37c3: ".\x05\u37c3", // 㟃
+ 0x37c4: ".\x06\u37c4", // 㟄
+ 0x37c5: ".\x06\u37c5", // 㟅
+ 0x37c6: ".\x06\u37c6", // 㟆
+ 0x37c7: ".\a\u37c7", // 㟇
+ 0x37c8: ".\a\u37c8", // 㟈
+ 0x37c9: ".\a\u37c9", // 㟉
+ 0x37ca: ".\a\u37ca", // 㟊
+ 0x37cb: ".\a\u37cb", // 㟋
+ 0x37cc: ".\a\u37cc", // 㟌
+ 0x37cd: ".\a\u37cd", // 㟍
+ 0x37ce: ".\a\u37ce", // 㟎
+ 0x37cf: ".\a\u37cf", // 㟏
+ 0x37d0: ".\a\u37d0", // 㟐
+ 0x37d1: ".\a\u37d1", // 㟑
+ 0x37d2: ".\a\u37d2", // 㟒
+ 0x37d3: ".\a\u37d3", // 㟓
+ 0x37d4: ".\a\u37d4", // 㟔
+ 0x37d5: ".\a\u37d5", // 㟕
+ 0x37d6: ".\a\u37d6", // 㟖
+ 0x37d7: ".\b\u37d7", // 㟗
+ 0x37d8: ".\b\u37d8", // 㟘
+ 0x37d9: ".\b\u37d9", // 㟙
+ 0x37da: ".\b\u37da", // 㟚
+ 0x37db: ".\b\u37db", // 㟛
+ 0x37dc: ".\b\u37dc", // 㟜
+ 0x37dd: ".\b\u37dd", // 㟝
+ 0x37de: ".\b\u37de", // 㟞
+ 0x37df: ".\b\u37df", // 㟟
+ 0x37e0: ".\b\u37e0", // 㟠
+ 0x37e1: ".\b\u37e1", // 㟡
+ 0x37e2: ".\b\u37e2", // 㟢
+ 0x37e3: ".\b\u37e3", // 㟣
+ 0x37e4: ".\b\u37e4", // 㟤
+ 0x37e5: ".\b\u37e5", // 㟥
+ 0x37e6: ".\t\u37e6", // 㟦
+ 0x37e7: ".\t\u37e7", // 㟧
+ 0x37e8: ".\t\u37e8", // 㟨
+ 0x37e9: ".\t\u37e9", // 㟩
+ 0x37ea: ".\t\u37ea", // 㟪
+ 0x37eb: ".\t\u37eb", // 㟫
+ 0x37ec: ".\t\u37ec", // 㟬
+ 0x37ed: ".\t\u37ed", // 㟭
+ 0x37ee: ".\t\u37ee", // 㟮
+ 0x37ef: ".\t\u37ef", // 㟯
+ 0x37f0: ".\n\u37f0", // 㟰
+ 0x37f1: ".\n\u37f1", // 㟱
+ 0x37f2: ".\n\u37f2", // 㟲
+ 0x37f3: ".\n\u37f3", // 㟳
+ 0x37f4: ".\n\u37f4", // 㟴
+ 0x37f5: ".\n\u37f5", // 㟵
+ 0x37f6: ".\n\u37f6", // 㟶
+ 0x37f7: ".\n\u37f7", // 㟷
+ 0x37f8: ".\n\u37f8", // 㟸
+ 0x37f9: ".\v\u37f9", // 㟹
+ 0x37fa: ".\v\u37fa", // 㟺
+ 0x37fb: ".\v\u37fb", // 㟻
+ 0x37fc: ".\v\u37fc", // 㟼
+ 0x37fd: ".\v\u37fd", // 㟽
+ 0x37fe: ".\v\u37fe", // 㟾
+ 0x37ff: ".\v\u37ff", // 㟿
+ 0x3800: ".\v\u3800", // 㠀
+ 0x3801: ".\v\u3801", // 㠁
+ 0x3802: ".\v\u3802", // 㠂
+ 0x3803: ".\v\u3803", // 㠃
+ 0x3804: ".\v\u3804", // 㠄
+ 0x3805: ".\f\u3805", // 㠅
+ 0x3806: ".\f\u3806", // 㠆
+ 0x3807: ".\f\u3807", // 㠇
+ 0x3808: ".\f\u3808", // 㠈
+ 0x3809: ".\f\u3809", // 㠉
+ 0x380a: ".\f\u380a", // 㠊
+ 0x380b: ".\f\u380b", // 㠋
+ 0x380c: ".\f\u380c", // 㠌
+ 0x380d: ".\f\u380d", // 㠍
+ 0x380e: ".\f\u380e", // 㠎
+ 0x380f: ".\f\u380f", // 㠏
+ 0x3810: ".\f\u3810", // 㠐
+ 0x3811: ".\r\u3811", // 㠑
+ 0x3812: ".\r\u3812", // 㠒
+ 0x3813: ".\r\u3813", // 㠓
+ 0x3814: ".\r\u3814", // 㠔
+ 0x3815: ".\r\u3815", // 㠕
+ 0x3816: ".\r\u3816", // 㠖
+ 0x3817: ".\r\u3817", // 㠗
+ 0x3818: ".\x0e\u3818", // 㠘
+ 0x3819: ".\x0e\u3819", // 㠙
+ 0x381a: ".\x0e\u381a", // 㠚
+ 0x381b: ".\x0e\u381b", // 㠛
+ 0x381c: ".\x0e\u381c", // 㠜
+ 0x381d: ".\x0f\u381d", // 㠝
+ 0x381e: ".\x0f\u381e", // 㠞
+ 0x381f: ".\x0f\u381f", // 㠟
+ 0x3820: ".\x10\u3820", // 㠠
+ 0x3821: ".\x10\u3821", // 㠡
+ 0x3822: ".\x10\u3822", // 㠢
+ 0x3823: ".\x10\u3823", // 㠣
+ 0x3824: ".\x11\u3824", // 㠤
+ 0x3825: ".\x12\u3825", // 㠥
+ 0x3826: ".\x12\u3826", // 㠦
+ 0x3827: ".\x13\u3827", // 㠧
+ 0x3828: ".\x19\u3828", // 㠨
+ 0x3829: "/\x03\u3829", // 㠩
+ 0x382a: "0\x01\u382a", // 㠪
+ 0x382b: "0\a\u382b", // 㠫
+ 0x382c: "0\a\u382c", // 㠬
+ 0x382d: "0\t\u382d", // 㠭
+ 0x382e: "0\f\u382e", // 㠮
+ 0x382f: "1\x02\u382f", // 㠯
+ 0x3830: "1\x05\u3830", // 㠰
+ 0x3831: "1\b\u3831", // 㠱
+ 0x3832: "2\x02\u3832", // 㠲
+ 0x3833: "2\x02\u3833", // 㠳
+ 0x3834: "2\x03\u3834", // 㠴
+ 0x3835: "2\x03\u3835", // 㠵
+ 0x3836: "2\x03\u3836", // 㠶
+ 0x3837: "2\x04\u3837", // 㠷
+ 0x3838: "2\x04\u3838", // 㠸
+ 0x3839: "2\x04\u3839", // 㠹
+ 0x383a: "2\x04\u383a", // 㠺
+ 0x383b: "2\x04\u383b", // 㠻
+ 0x383c: "2\x04\u383c", // 㠼
+ 0x383d: "2\x05\u383d", // 㠽
+ 0x383e: "2\x05\u383e", // 㠾
+ 0x383f: "2\x05\u383f", // 㠿
+ 0x3840: "2\x05\u3840", // 㡀
+ 0x3841: "2\x06\u3841", // 㡁
+ 0x3842: "2\x06\u3842", // 㡂
+ 0x3843: "2\x06\u3843", // 㡃
+ 0x3844: "2\x06\u3844", // 㡄
+ 0x3845: "2\x06\u3845", // 㡅
+ 0x3846: "2\x06\u3846", // 㡆
+ 0x3847: "2\a\u3847", // 㡇
+ 0x3848: "2\a\u3848", // 㡈
+ 0x3849: "2\b\u3849", // 㡉
+ 0x384a: "2\b\u384a", // 㡊
+ 0x384b: "2\b\u384b", // 㡋
+ 0x384c: "2\b\u384c", // 㡌
+ 0x384d: "2\b\u384d", // 㡍
+ 0x384e: "2\b\u384e", // 㡎
+ 0x384f: "2\t\u384f", // 㡏
+ 0x3850: "2\t\u3850", // 㡐
+ 0x3851: "2\t\u3851", // 㡑
+ 0x3852: "2\t\u3852", // 㡒
+ 0x3853: "2\t\u3853", // 㡓
+ 0x3854: "2\t\u3854", // 㡔
+ 0x3855: "2\t\u3855", // 㡕
+ 0x3856: "2\t\u3856", // 㡖
+ 0x3857: "2\n\u3857", // 㡗
+ 0x3858: "2\n\u3858", // 㡘
+ 0x3859: "2\n\u3859", // 㡙
+ 0x385a: "2\n\u385a", // 㡚
+ 0x385b: "2\n\u385b", // 㡛
+ 0x385c: "2\v\u385c", // 㡜
+ 0x385d: "2\v\u385d", // 㡝
+ 0x385e: "2\v\u385e", // 㡞
+ 0x385f: "2\v\u385f", // 㡟
+ 0x3860: "2\f\u3860", // 㡠
+ 0x3861: "2\f\u3861", // 㡡
+ 0x3862: "2\r\u3862", // 㡢
+ 0x3863: "2\r\u3863", // 㡣
+ 0x3864: "2\r\u3864", // 㡤
+ 0x3865: "2\x0e\u3865", // 㡥
+ 0x3866: "2\x0e\u3866", // 㡦
+ 0x3867: "2\x11\u3867", // 㡧
+ 0x3868: "2\x11\u3868", // 㡨
+ 0x3869: "2\x13\u3869", // 㡩
+ 0x386a: "2\x13\u386a", // 㡪
+ 0x386b: "4\t\u386b", // 㡫
+ 0x386c: "4\t\u386c", // 㡬
+ 0x386d: "4\v\u386d", // 㡭
+ 0x386e: "4\r\u386e", // 㡮
+ 0x386f: "5\x03\u386f", // 㡯
+ 0x3870: "5\x03\u3870", // 㡰
+ 0x3871: "5\x03\u3871", // 㡱
+ 0x3872: "5\x04\u3872", // 㡲
+ 0x3873: "5\x04\u3873", // 㡳
+ 0x3874: "5\x05\u3874", // 㡴
+ 0x3875: "5\x05\u3875", // 㡵
+ 0x3876: "5\x05\u3876", // 㡶
+ 0x3877: "5\x05\u3877", // 㡷
+ 0x3878: "5\x05\u3878", // 㡸
+ 0x3879: "5\x05\u3879", // 㡹
+ 0x387a: "5\x05\u387a", // 㡺
+ 0x387b: "5\x05\u387b", // 㡻
+ 0x387c: "5\x06\u387c", // 㡼
+ 0x387d: "5\x06\u387d", // 㡽
+ 0x387e: "5\x06\u387e", // 㡾
+ 0x387f: "5\x06\u387f", // 㡿
+ 0x3880: "5\x06\u3880", // 㢀
+ 0x3881: "5\x06\u3881", // 㢁
+ 0x3882: "5\x06\u3882", // 㢂
+ 0x3883: "5\a\u3883", // 㢃
+ 0x3884: "5\a\u3884", // 㢄
+ 0x3885: "5\a\u3885", // 㢅
+ 0x3886: "5\a\u3886", // 㢆
+ 0x3887: "5\a\u3887", // 㢇
+ 0x3888: "5\b\u3888", // 㢈
+ 0x3889: "5\b\u3889", // 㢉
+ 0x388a: "5\b\u388a", // 㢊
+ 0x388b: "5\b\u388b", // 㢋
+ 0x388c: "5\b\u388c", // 㢌
+ 0x388d: "5\t\u388d", // 㢍
+ 0x388e: "5\t\u388e", // 㢎
+ 0x388f: "5\t\u388f", // 㢏
+ 0x3890: "5\t\u3890", // 㢐
+ 0x3891: "5\n\u3891", // 㢑
+ 0x3892: "5\v\u3892", // 㢒
+ 0x3893: "5\v\u3893", // 㢓
+ 0x3894: "5\v\u3894", // 㢔
+ 0x3895: "5\v\u3895", // 㢕
+ 0x3896: "5\f\u3896", // 㢖
+ 0x3897: "5\f\u3897", // 㢗
+ 0x3898: "5\f\u3898", // 㢘
+ 0x3899: "5\r\u3899", // 㢙
+ 0x389a: "5\r\u389a", // 㢚
+ 0x389b: "5\r\u389b", // 㢛
+ 0x389c: "5\r\u389c", // 㢜
+ 0x389d: "5\x10\u389d", // 㢝
+ 0x389e: "5\x11\u389e", // 㢞
+ 0x389f: "6\x03\u389f", // 㢟
+ 0x38a0: "6\x05\u38a0", // 㢠
+ 0x38a1: "7\v\u38a1", // 㢡
+ 0x38a2: "7\f\u38a2", // 㢢
+ 0x38a3: "7\r\u38a3", // 㢣
+ 0x38a4: "8\x04\u38a4", // 㢤
+ 0x38a5: "8\x06\u38a5", // 㢥
+ 0x38a6: "8\n\u38a6", // 㢦
+ 0x38a7: "9\x01\u38a7", // 㢧
+ 0x38a8: "9\x03\u38a8", // 㢨
+ 0x38a9: "9\x03\u38a9", // 㢩
+ 0x38aa: "9\x03\u38aa", // 㢪
+ 0x38ab: "9\x03\u38ab", // 㢫
+ 0x38ac: "9\x04\u38ac", // 㢬
+ 0x38ad: "9\x04\u38ad", // 㢭
+ 0x38ae: "9\x05\u38ae", // 㢮
+ 0x38af: "9\x05\u38af", // 㢯
+ 0x38b0: "9\x05\u38b0", // 㢰
+ 0x38b1: "9\x05\u38b1", // 㢱
+ 0x38b2: "9\x06\u38b2", // 㢲
+ 0x38b3: "9\x06\u38b3", // 㢳
+ 0x38b4: "9\x06\u38b4", // 㢴
+ 0x38b5: "9\x06\u38b5", // 㢵
+ 0x38b6: "9\x06\u38b6", // 㢶
+ 0x38b7: "9\x06\u38b7", // 㢷
+ 0x38b8: "9\a\u38b8", // 㢸
+ 0x38b9: "9\a\u38b9", // 㢹
+ 0x38ba: "9\b\u38ba", // 㢺
+ 0x38bb: "9\b\u38bb", // 㢻
+ 0x38bc: "9\b\u38bc", // 㢼
+ 0x38bd: "9\t\u38bd", // 㢽
+ 0x38be: "9\t\u38be", // 㢾
+ 0x38bf: "9\t\u38bf", // 㢿
+ 0x38c0: "9\n\u38c0", // 㣀
+ 0x38c1: "9\n\u38c1", // 㣁
+ 0x38c2: "9\n\u38c2", // 㣂
+ 0x38c3: "9\v\u38c3", // 㣃
+ 0x38c4: "9\f\u38c4", // 㣄
+ 0x38c5: "9\f\u38c5", // 㣅
+ 0x38c6: "9\x12\u38c6", // 㣆
+ 0x38c7: ":\x05\u38c7", // 㣇
+ 0x38c8: ":\r\u38c8", // 㣈
+ 0x38c9: ";\x03\u38c9", // 㣉
+ 0x38ca: ";\x04\u38ca", // 㣊
+ 0x38cb: ";\x05\u38cb", // 㣋
+ 0x38cc: ";\x05\u38cc", // 㣌
+ 0x38cd: ";\x05\u38cd", // 㣍
+ 0x38ce: ";\b\u38ce", // 㣎
+ 0x38cf: ";\t\u38cf", // 㣏
+ 0x38d0: ";\t\u38d0", // 㣐
+ 0x38d1: ";\v\u38d1", // 㣑
+ 0x38d2: ";\f\u38d2", // 㣒
+ 0x38d3: ";\r\u38d3", // 㣓
+ 0x38d4: "<\x02\u38d4", // 㣔
+ 0x38d5: "<\x03\u38d5", // 㣕
+ 0x38d6: "<\x04\u38d6", // 㣖
+ 0x38d7: "<\x04\u38d7", // 㣗
+ 0x38d8: "<\x05\u38d8", // 㣘
+ 0x38d9: "<\x05\u38d9", // 㣙
+ 0x38da: "<\x06\u38da", // 㣚
+ 0x38db: "<\x06\u38db", // 㣛
+ 0x38dc: "<\x06\u38dc", // 㣜
+ 0x38dd: "<\x06\u38dd", // 㣝
+ 0x38de: "<\x06\u38de", // 㣞
+ 0x38df: "<\x06\u38df", // 㣟
+ 0x38e0: "<\x06\u38e0", // 㣠
+ 0x38e1: "<\x06\u38e1", // 㣡
+ 0x38e2: "<\a\u38e2", // 㣢
+ 0x38e3: "<\a\u38e3", // 㣣
+ 0x38e4: "<\b\u38e4", // 㣤
+ 0x38e5: "<\b\u38e5", // 㣥
+ 0x38e6: "<\b\u38e6", // 㣦
+ 0x38e7: "<\b\u38e7", // 㣧
+ 0x38e8: "<\b\u38e8", // 㣨
+ 0x38e9: "<\b\u38e9", // 㣩
+ 0x38ea: "<\t\u38ea", // 㣪
+ 0x38eb: "<\t\u38eb", // 㣫
+ 0x38ec: "<\t\u38ec", // 㣬
+ 0x38ed: "<\t\u38ed", // 㣭
+ 0x38ee: "<\t\u38ee", // 㣮
+ 0x38ef: "<\n\u38ef", // 㣯
+ 0x38f0: "<\v\u38f0", // 㣰
+ 0x38f1: "<\v\u38f1", // 㣱
+ 0x38f2: "<\v\u38f2", // 㣲
+ 0x38f3: "<\f\u38f3", // 㣳
+ 0x38f4: "<\f\u38f4", // 㣴
+ 0x38f5: "<\r\u38f5", // 㣵
+ 0x38f6: "<\r\u38f6", // 㣶
+ 0x38f7: "<\x0e\u38f7", // 㣷
+ 0x38f8: "<\x10\u38f8", // 㣸
+ 0x38f9: "<\x11\u38f9", // 㣹
+ 0x38fa: "=\x01\u38fa", // 㣺
+ 0x38fb: "=\x02\u38fb", // 㣻
+ 0x38fc: "=\x03\u38fc", // 㣼
+ 0x38fd: "=\x03\u38fd", // 㣽
+ 0x38fe: "=\x03\u38fe", // 㣾
+ 0x38ff: "=\x03\u38ff", // 㣿
+ 0x3900: "=\x03\u3900", // 㤀
+ 0x3901: "=\x04\u3901", // 㤁
+ 0x3902: "=\x04\u3902", // 㤂
+ 0x3903: "=\x04\u3903", // 㤃
+ 0x3904: "=\x04\u3904", // 㤄
+ 0x3905: "=\x04\u3905", // 㤅
+ 0x3906: "=\x04\u3906", // 㤆
+ 0x3907: "=\x04\u3907", // 㤇
+ 0x3908: "=\x04\u3908", // 㤈
+ 0x3909: "=\x04\u3909", // 㤉
+ 0x390a: "=\x04\u390a", // 㤊
+ 0x390b: "=\x04\u390b", // 㤋
+ 0x390c: "=\x05\u390c", // 㤌
+ 0x390d: "=\x05\u390d", // 㤍
+ 0x390e: "=\x05\u390e", // 㤎
+ 0x390f: "=\x05\u390f", // 㤏
+ 0x3910: "=\x05\u3910", // 㤐
+ 0x3911: "=\x05\u3911", // 㤑
+ 0x3912: "=\x05\u3912", // 㤒
+ 0x3913: "=\x05\u3913", // 㤓
+ 0x3914: "=\x05\u3914", // 㤔
+ 0x3915: "=\x05\u3915", // 㤕
+ 0x3916: "=\x05\u3916", // 㤖
+ 0x3917: "=\x05\u3917", // 㤗
+ 0x3918: "=\x05\u3918", // 㤘
+ 0x3919: "=\x05\u3919", // 㤙
+ 0x391a: "=\x06\u391a", // 㤚
+ 0x391b: "=\x06\u391b", // 㤛
+ 0x391c: "=\x06\u391c", // 㤜
+ 0x391d: "=\x06\u391d", // 㤝
+ 0x391e: "=\x06\u391e", // 㤞
+ 0x391f: "=\x06\u391f", // 㤟
+ 0x3920: "=\x06\u3920", // 㤠
+ 0x3921: "=\x06\u3921", // 㤡
+ 0x3922: "=\x06\u3922", // 㤢
+ 0x3923: "=\x06\u3923", // 㤣
+ 0x3924: "=\x06\u3924", // 㤤
+ 0x3925: "=\x06\u3925", // 㤥
+ 0x3926: "=\x06\u3926", // 㤦
+ 0x3927: "=\x06\u3927", // 㤧
+ 0x3928: "=\x06\u3928", // 㤨
+ 0x3929: "=\x06\u3929", // 㤩
+ 0x392a: "=\x06\u392a", // 㤪
+ 0x392b: "=\x06\u392b", // 㤫
+ 0x392c: "=\x06\u392c", // 㤬
+ 0x392d: "=\x06\u392d", // 㤭
+ 0x392e: "=\a\u392e", // 㤮
+ 0x392f: "=\a\u392f", // 㤯
+ 0x3930: "=\a\u3930", // 㤰
+ 0x3931: "=\a\u3931", // 㤱
+ 0x3932: "=\a\u3932", // 㤲
+ 0x3933: "=\a\u3933", // 㤳
+ 0x3934: "=\a\u3934", // 㤴
+ 0x3935: "=\a\u3935", // 㤵
+ 0x3936: "=\a\u3936", // 㤶
+ 0x3937: "=\a\u3937", // 㤷
+ 0x3938: "=\a\u3938", // 㤸
+ 0x3939: "=\a\u3939", // 㤹
+ 0x393a: "=\x06\u393a", // 㤺
+ 0x393b: "=\a\u393b", // 㤻
+ 0x393c: "=\a\u393c", // 㤼
+ 0x393d: "=\a\u393d", // 㤽
+ 0x393e: "=\b\u393e", // 㤾
+ 0x393f: "=\b\u393f", // 㤿
+ 0x3940: "=\b\u3940", // 㥀
+ 0x3941: "=\b\u3941", // 㥁
+ 0x3942: "=\b\u3942", // 㥂
+ 0x3943: "=\b\u3943", // 㥃
+ 0x3944: "=\b\u3944", // 㥄
+ 0x3945: "=\b\u3945", // 㥅
+ 0x3946: "=\b\u3946", // 㥆
+ 0x3947: "=\b\u3947", // 㥇
+ 0x3948: "=\b\u3948", // 㥈
+ 0x3949: "=\b\u3949", // 㥉
+ 0x394a: "=\b\u394a", // 㥊
+ 0x394b: "=\b\u394b", // 㥋
+ 0x394c: "=\b\u394c", // 㥌
+ 0x394d: "=\b\u394d", // 㥍
+ 0x394e: "=\b\u394e", // 㥎
+ 0x394f: "=\b\u394f", // 㥏
+ 0x3950: "=\b\u3950", // 㥐
+ 0x3951: "=\b\u3951", // 㥑
+ 0x3952: "=\b\u3952", // 㥒
+ 0x3953: "=\b\u3953", // 㥓
+ 0x3954: "=\b\u3954", // 㥔
+ 0x3955: "=\b\u3955", // 㥕
+ 0x3956: "=\b\u3956", // 㥖
+ 0x3957: "=\b\u3957", // 㥗
+ 0x3958: "=\b\u3958", // 㥘
+ 0x3959: "=\b\u3959", // 㥙
+ 0x395a: "=\t\u395a", // 㥚
+ 0x395b: "=\t\u395b", // 㥛
+ 0x395c: "=\t\u395c", // 㥜
+ 0x395d: "=\t\u395d", // 㥝
+ 0x395e: "=\t\u395e", // 㥞
+ 0x395f: "=\t\u395f", // 㥟
+ 0x3960: "=\t\u3960", // 㥠
+ 0x3961: "=\t\u3961", // 㥡
+ 0x3962: "=\t\u3962", // 㥢
+ 0x3963: "=\t\u3963", // 㥣
+ 0x3964: "=\t\u3964", // 㥤
+ 0x3965: "=\t\u3965", // 㥥
+ 0x3966: "=\t\u3966", // 㥦
+ 0x3967: "=\t\u3967", // 㥧
+ 0x3968: "=\t\u3968", // 㥨
+ 0x3969: "=\t\u3969", // 㥩
+ 0x396a: "=\t\u396a", // 㥪
+ 0x396b: "=\t\u396b", // 㥫
+ 0x396c: "=\n\u396c", // 㥬
+ 0x396d: "=\n\u396d", // 㥭
+ 0x396e: "=\n\u396e", // 㥮
+ 0x396f: "=\n\u396f", // 㥯
+ 0x3970: "=\n\u3970", // 㥰
+ 0x3971: "=\n\u3971", // 㥱
+ 0x3972: "=\n\u3972", // 㥲
+ 0x3973: "=\n\u3973", // 㥳
+ 0x3974: "=\n\u3974", // 㥴
+ 0x3975: "=\n\u3975", // 㥵
+ 0x3976: "=\n\u3976", // 㥶
+ 0x3977: "=\n\u3977", // 㥷
+ 0x3978: "=\n\u3978", // 㥸
+ 0x3979: "=\n\u3979", // 㥹
+ 0x397a: "=\n\u397a", // 㥺
+ 0x397b: "=\n\u397b", // 㥻
+ 0x397c: "=\v\u397c", // 㥼
+ 0x397d: "=\v\u397d", // 㥽
+ 0x397e: "=\v\u397e", // 㥾
+ 0x397f: "=\v\u397f", // 㥿
+ 0x3980: "=\v\u3980", // 㦀
+ 0x3981: "=\v\u3981", // 㦁
+ 0x3982: "=\v\u3982", // 㦂
+ 0x3983: "=\v\u3983", // 㦃
+ 0x3984: "=\v\u3984", // 㦄
+ 0x3985: "=\v\u3985", // 㦅
+ 0x3986: "=\v\u3986", // 㦆
+ 0x3987: "=\v\u3987", // 㦇
+ 0x3988: "=\v\u3988", // 㦈
+ 0x3989: "=\f\u3989", // 㦉
+ 0x398a: "=\f\u398a", // 㦊
+ 0x398b: "=\f\u398b", // 㦋
+ 0x398c: "=\f\u398c", // 㦌
+ 0x398d: "=\f\u398d", // 㦍
+ 0x398e: "=\f\u398e", // 㦎
+ 0x398f: "=\f\u398f", // 㦏
+ 0x3990: "=\f\u3990", // 㦐
+ 0x3991: "=\f\u3991", // 㦑
+ 0x3992: "=\f\u3992", // 㦒
+ 0x3993: "=\f\u3993", // 㦓
+ 0x3994: "=\f\u3994", // 㦔
+ 0x3995: "=\f\u3995", // 㦕
+ 0x3996: "=\f\u3996", // 㦖
+ 0x3997: "=\r\u3997", // 㦗
+ 0x3998: "=\r\u3998", // 㦘
+ 0x3999: "=\r\u3999", // 㦙
+ 0x399a: "=\x0e\u399a", // 㦚
+ 0x399b: "=\x0e\u399b", // 㦛
+ 0x399c: "=\x0e\u399c", // 㦜
+ 0x399d: "=\x0e\u399d", // 㦝
+ 0x399e: "=\x0e\u399e", // 㦞
+ 0x399f: "=\x0e\u399f", // 㦟
+ 0x39a0: "=\x0e\u39a0", // 㦠
+ 0x39a1: "=\x0f\u39a1", // 㦡
+ 0x39a2: "=\x0f\u39a2", // 㦢
+ 0x39a3: "=\x10\u39a3", // 㦣
+ 0x39a4: "=\x10\u39a4", // 㦤
+ 0x39a5: "=\x10\u39a5", // 㦥
+ 0x39a6: "=\x10\u39a6", // 㦦
+ 0x39a7: "=\x10\u39a7", // 㦧
+ 0x39a8: "=\x11\u39a8", // 㦨
+ 0x39a9: "=\x11\u39a9", // 㦩
+ 0x39aa: "=\x11\u39aa", // 㦪
+ 0x39ab: "=\x13\u39ab", // 㦫
+ 0x39ac: "=\x13\u39ac", // 㦬
+ 0x39ad: "=\x18\u39ad", // 㦭
+ 0x39ae: ">\x03\u39ae", // 㦮
+ 0x39af: ">\x03\u39af", // 㦯
+ 0x39b0: ">\x04\u39b0", // 㦰
+ 0x39b1: ">\x04\u39b1", // 㦱
+ 0x39b2: ">\x04\u39b2", // 㦲
+ 0x39b3: ">\x05\u39b3", // 㦳
+ 0x39b4: ">\x06\u39b4", // 㦴
+ 0x39b5: ">\x06\u39b5", // 㦵
+ 0x39b6: ">\x06\u39b6", // 㦶
+ 0x39b7: ">\a\u39b7", // 㦷
+ 0x39b8: ">\b\u39b8", // 㦸
+ 0x39b9: ">\t\u39b9", // 㦹
+ 0x39ba: ">\n\u39ba", // 㦺
+ 0x39bb: ">\v\u39bb", // 㦻
+ 0x39bc: ">\v\u39bc", // 㦼
+ 0x39bd: ">\r\u39bd", // 㦽
+ 0x39be: "?\x03\u39be", // 㦾
+ 0x39bf: "?\x04\u39bf", // 㦿
+ 0x39c0: "?\x04\u39c0", // 㧀
+ 0x39c1: "?\x05\u39c1", // 㧁
+ 0x39c2: "?\x05\u39c2", // 㧂
+ 0x39c3: "@\x02\u39c3", // 㧃
+ 0x39c4: "@\x02\u39c4", // 㧄
+ 0x39c5: "@\x02\u39c5", // 㧅
+ 0x39c6: "@\x03\u39c6", // 㧆
+ 0x39c7: "@\x03\u39c7", // 㧇
+ 0x39c8: "@\x03\u39c8", // 㧈
+ 0x39c9: "@\x04\u39c9", // 㧉
+ 0x39ca: "@\x04\u39ca", // 㧊
+ 0x39cb: "@\x04\u39cb", // 㧋
+ 0x39cc: "@\x04\u39cc", // 㧌
+ 0x39cd: "@\x04\u39cd", // 㧍
+ 0x39ce: "@\x04\u39ce", // 㧎
+ 0x39cf: "@\x04\u39cf", // 㧏
+ 0x39d0: "@\x04\u39d0", // 㧐
+ 0x39d1: "@\x04\u39d1", // 㧑
+ 0x39d2: "@\x05\u39d2", // 㧒
+ 0x39d3: "@\x05\u39d3", // 㧓
+ 0x39d4: "@\x05\u39d4", // 㧔
+ 0x39d5: "@\x05\u39d5", // 㧕
+ 0x39d6: "@\x05\u39d6", // 㧖
+ 0x39d7: "@\x05\u39d7", // 㧗
+ 0x39d8: "@\x05\u39d8", // 㧘
+ 0x39d9: "@\x05\u39d9", // 㧙
+ 0x39da: "@\x05\u39da", // 㧚
+ 0x39db: "@\x05\u39db", // 㧛
+ 0x39dc: "@\x05\u39dc", // 㧜
+ 0x39dd: "@\x05\u39dd", // 㧝
+ 0x39de: "@\x05\u39de", // 㧞
+ 0x39df: "@\x05\u39df", // 㧟
+ 0x39e0: "@\x05\u39e0", // 㧠
+ 0x39e1: "@\x06\u39e1", // 㧡
+ 0x39e2: "@\x06\u39e2", // 㧢
+ 0x39e3: "@\x06\u39e3", // 㧣
+ 0x39e4: "@\x06\u39e4", // 㧤
+ 0x39e5: "@\x06\u39e5", // 㧥
+ 0x39e6: "@\x06\u39e6", // 㧦
+ 0x39e7: "@\x06\u39e7", // 㧧
+ 0x39e8: "@\x06\u39e8", // 㧨
+ 0x39e9: "@\x06\u39e9", // 㧩
+ 0x39ea: "@\x06\u39ea", // 㧪
+ 0x39eb: "@\x06\u39eb", // 㧫
+ 0x39ec: "@\x06\u39ec", // 㧬
+ 0x39ed: "@\x06\u39ed", // 㧭
+ 0x39ee: "@\x06\u39ee", // 㧮
+ 0x39ef: "@\x06\u39ef", // 㧯
+ 0x39f0: "@\x06\u39f0", // 㧰
+ 0x39f1: "@\x06\u39f1", // 㧱
+ 0x39f2: "@\a\u39f2", // 㧲
+ 0x39f3: "@\a\u39f3", // 㧳
+ 0x39f4: "@\a\u39f4", // 㧴
+ 0x39f5: "@\a\u39f5", // 㧵
+ 0x39f6: "@\a\u39f6", // 㧶
+ 0x39f7: "@\a\u39f7", // 㧷
+ 0x39f8: "@\a\u39f8", // 㧸
+ 0x39f9: "@\b\u39f9", // 㧹
+ 0x39fa: "@\b\u39fa", // 㧺
+ 0x39fb: "@\b\u39fb", // 㧻
+ 0x39fc: "@\b\u39fc", // 㧼
+ 0x39fd: "@\b\u39fd", // 㧽
+ 0x39fe: "@\b\u39fe", // 㧾
+ 0x39ff: "@\b\u39ff", // 㧿
+ 0x3a00: "@\b\u3a00", // 㨀
+ 0x3a01: "@\b\u3a01", // 㨁
+ 0x3a02: "@\b\u3a02", // 㨂
+ 0x3a03: "@\b\u3a03", // 㨃
+ 0x3a04: "@\b\u3a04", // 㨄
+ 0x3a05: "@\b\u3a05", // 㨅
+ 0x3a06: "@\b\u3a06", // 㨆
+ 0x3a07: "@\b\u3a07", // 㨇
+ 0x3a08: "@\b\u3a08", // 㨈
+ 0x3a09: "@\t\u3a09", // 㨉
+ 0x3a0a: "@\t\u3a0a", // 㨊
+ 0x3a0b: "@\t\u3a0b", // 㨋
+ 0x3a0c: "@\t\u3a0c", // 㨌
+ 0x3a0d: "@\t\u3a0d", // 㨍
+ 0x3a0e: "@\t\u3a0e", // 㨎
+ 0x3a0f: "@\t\u3a0f", // 㨏
+ 0x3a10: "@\t\u3a10", // 㨐
+ 0x3a11: "@\t\u3a11", // 㨑
+ 0x3a12: "@\t\u3a12", // 㨒
+ 0x3a13: "@\t\u3a13", // 㨓
+ 0x3a14: "@\t\u3a14", // 㨔
+ 0x3a15: "@\t\u3a15", // 㨕
+ 0x3a16: "@\n\u3a16", // 㨖
+ 0x3a17: "@\t\u3a17", // 㨗
+ 0x3a18: "@\t\u3a18", // 㨘
+ 0x3a19: "@\n\u3a19", // 㨙
+ 0x3a1a: "@\n\u3a1a", // 㨚
+ 0x3a1b: "@\n\u3a1b", // 㨛
+ 0x3a1c: "@\n\u3a1c", // 㨜
+ 0x3a1d: "@\n\u3a1d", // 㨝
+ 0x3a1e: "@\n\u3a1e", // 㨞
+ 0x3a1f: "@\n\u3a1f", // 㨟
+ 0x3a20: "@\n\u3a20", // 㨠
+ 0x3a21: "@\n\u3a21", // 㨡
+ 0x3a22: "@\n\u3a22", // 㨢
+ 0x3a23: "@\n\u3a23", // 㨣
+ 0x3a24: "@\n\u3a24", // 㨤
+ 0x3a25: "@\n\u3a25", // 㨥
+ 0x3a26: "@\n\u3a26", // 㨦
+ 0x3a27: "@\n\u3a27", // 㨧
+ 0x3a28: "@\n\u3a28", // 㨨
+ 0x3a29: "@\n\u3a29", // 㨩
+ 0x3a2a: "@\n\u3a2a", // 㨪
+ 0x3a2b: "@\n\u3a2b", // 㨫
+ 0x3a2c: "@\n\u3a2c", // 㨬
+ 0x3a2d: "@\v\u3a2d", // 㨭
+ 0x3a2e: "@\v\u3a2e", // 㨮
+ 0x3a2f: "@\v\u3a2f", // 㨯
+ 0x3a30: "@\v\u3a30", // 㨰
+ 0x3a31: "@\v\u3a31", // 㨱
+ 0x3a32: "@\v\u3a32", // 㨲
+ 0x3a33: "@\v\u3a33", // 㨳
+ 0x3a34: "@\v\u3a34", // 㨴
+ 0x3a35: "@\v\u3a35", // 㨵
+ 0x3a36: "@\v\u3a36", // 㨶
+ 0x3a37: "@\v\u3a37", // 㨷
+ 0x3a38: "@\v\u3a38", // 㨸
+ 0x3a39: "@\v\u3a39", // 㨹
+ 0x3a3a: "@\v\u3a3a", // 㨺
+ 0x3a3b: "@\v\u3a3b", // 㨻
+ 0x3a3c: "@\v\u3a3c", // 㨼
+ 0x3a3d: "@\v\u3a3d", // 㨽
+ 0x3a3e: "@\v\u3a3e", // 㨾
+ 0x3a3f: "@\v\u3a3f", // 㨿
+ 0x3a40: "@\v\u3a40", // 㩀
+ 0x3a41: "@\v\u3a41", // 㩁
+ 0x3a42: "@\v\u3a42", // 㩂
+ 0x3a43: "@\f\u3a43", // 㩃
+ 0x3a44: "@\f\u3a44", // 㩄
+ 0x3a45: "@\f\u3a45", // 㩅
+ 0x3a46: "@\f\u3a46", // 㩆
+ 0x3a47: "@\f\u3a47", // 㩇
+ 0x3a48: "@\f\u3a48", // 㩈
+ 0x3a49: "@\f\u3a49", // 㩉
+ 0x3a4a: "@\f\u3a4a", // 㩊
+ 0x3a4b: "@\f\u3a4b", // 㩋
+ 0x3a4c: "@\f\u3a4c", // 㩌
+ 0x3a4d: "@\f\u3a4d", // 㩍
+ 0x3a4e: "@\f\u3a4e", // 㩎
+ 0x3a4f: "@\f\u3a4f", // 㩏
+ 0x3a50: "@\f\u3a50", // 㩐
+ 0x3a51: "@\f\u3a51", // 㩑
+ 0x3a52: "@\r\u3a52", // 㩒
+ 0x3a53: "@\r\u3a53", // 㩓
+ 0x3a54: "@\r\u3a54", // 㩔
+ 0x3a55: "@\r\u3a55", // 㩕
+ 0x3a56: "@\r\u3a56", // 㩖
+ 0x3a57: "@\r\u3a57", // 㩗
+ 0x3a58: "@\r\u3a58", // 㩘
+ 0x3a59: "@\r\u3a59", // 㩙
+ 0x3a5a: "@\x0e\u3a5a", // 㩚
+ 0x3a5b: "@\x0e\u3a5b", // 㩛
+ 0x3a5c: "@\x0e\u3a5c", // 㩜
+ 0x3a5d: "@\x0e\u3a5d", // 㩝
+ 0x3a5e: "@\x0e\u3a5e", // 㩞
+ 0x3a5f: "@\x0e\u3a5f", // 㩟
+ 0x3a60: "@\x0f\u3a60", // 㩠
+ 0x3a61: "@\x0f\u3a61", // 㩡
+ 0x3a62: "@\x0f\u3a62", // 㩢
+ 0x3a63: "@\x0f\u3a63", // 㩣
+ 0x3a64: "@\x0f\u3a64", // 㩤
+ 0x3a65: "@\x0f\u3a65", // 㩥
+ 0x3a66: "@\x0f\u3a66", // 㩦
+ 0x3a67: "@\x0f\u3a67", // 㩧
+ 0x3a68: "@\x0f\u3a68", // 㩨
+ 0x3a69: "@\x0f\u3a69", // 㩩
+ 0x3a6a: "@\x0f\u3a6a", // 㩪
+ 0x3a6b: "@\x0f\u3a6b", // 㩫
+ 0x3a6c: "@\x10\u3a6c", // 㩬
+ 0x3a6d: "@\x10\u3a6d", // 㩭
+ 0x3a6e: "@\x11\u3a6e", // 㩮
+ 0x3a6f: "@\x11\u3a6f", // 㩯
+ 0x3a70: "@\x11\u3a70", // 㩰
+ 0x3a71: "@\x12\u3a71", // 㩱
+ 0x3a72: "@\x12\u3a72", // 㩲
+ 0x3a73: "@\x12\u3a73", // 㩳
+ 0x3a74: "@\x12\u3a74", // 㩴
+ 0x3a75: "@\x14\u3a75", // 㩵
+ 0x3a76: "@\x14\u3a76", // 㩶
+ 0x3a77: "@\x14\u3a77", // 㩷
+ 0x3a78: "@\x16\u3a78", // 㩸
+ 0x3a79: "@\x16\u3a79", // 㩹
+ 0x3a7a: "A\x04\u3a7a", // 㩺
+ 0x3a7b: "A\x06\u3a7b", // 㩻
+ 0x3a7c: "A\x06\u3a7c", // 㩼
+ 0x3a7d: "A\a\u3a7d", // 㩽
+ 0x3a7e: "A\b\u3a7e", // 㩾
+ 0x3a7f: "B\x03\u3a7f", // 㩿
+ 0x3a80: "B\x03\u3a80", // 㪀
+ 0x3a81: "B\x04\u3a81", // 㪁
+ 0x3a82: "B\x04\u3a82", // 㪂
+ 0x3a83: "B\x05\u3a83", // 㪃
+ 0x3a84: "B\x05\u3a84", // 㪄
+ 0x3a85: "B\x05\u3a85", // 㪅
+ 0x3a86: "B\x05\u3a86", // 㪆
+ 0x3a87: "B\x06\u3a87", // 㪇
+ 0x3a88: "B\x06\u3a88", // 㪈
+ 0x3a89: "B\x06\u3a89", // 㪉
+ 0x3a8a: "B\a\u3a8a", // 㪊
+ 0x3a8b: "B\a\u3a8b", // 㪋
+ 0x3a8c: "B\a\u3a8c", // 㪌
+ 0x3a8d: "B\a\u3a8d", // 㪍
+ 0x3a8e: "B\a\u3a8e", // 㪎
+ 0x3a8f: "B\b\u3a8f", // 㪏
+ 0x3a90: "B\b\u3a90", // 㪐
+ 0x3a91: "B\b\u3a91", // 㪑
+ 0x3a92: "B\b\u3a92", // 㪒
+ 0x3a93: "B\b\u3a93", // 㪓
+ 0x3a94: "B\b\u3a94", // 㪔
+ 0x3a95: "B\b\u3a95", // 㪕
+ 0x3a96: "B\b\u3a96", // 㪖
+ 0x3a97: "B\b\u3a97", // 㪗
+ 0x3a98: "B\b\u3a98", // 㪘
+ 0x3a99: "B\b\u3a99", // 㪙
+ 0x3a9a: "B\b\u3a9a", // 㪚
+ 0x3a9b: "B\t\u3a9b", // 㪛
+ 0x3a9c: "B\t\u3a9c", // 㪜
+ 0x3a9d: "B\t\u3a9d", // 㪝
+ 0x3a9e: "B\t\u3a9e", // 㪞
+ 0x3a9f: "B\t\u3a9f", // 㪟
+ 0x3aa0: "B\n\u3aa0", // 㪠
+ 0x3aa1: "B\n\u3aa1", // 㪡
+ 0x3aa2: "B\n\u3aa2", // 㪢
+ 0x3aa3: "B\n\u3aa3", // 㪣
+ 0x3aa4: "B\v\u3aa4", // 㪤
+ 0x3aa5: "B\v\u3aa5", // 㪥
+ 0x3aa6: "B\v\u3aa6", // 㪦
+ 0x3aa7: "B\f\u3aa7", // 㪧
+ 0x3aa8: "B\f\u3aa8", // 㪨
+ 0x3aa9: "B\f\u3aa9", // 㪩
+ 0x3aaa: "B\f\u3aaa", // 㪪
+ 0x3aab: "B\x0e\u3aab", // 㪫
+ 0x3aac: "B\x0e\u3aac", // 㪬
+ 0x3aad: "B\x10\u3aad", // 㪭
+ 0x3aae: "B\x11\u3aae", // 㪮
+ 0x3aaf: "C\x03\u3aaf", // 㪯
+ 0x3ab0: "C\x06\u3ab0", // 㪰
+ 0x3ab1: "C\t\u3ab1", // 㪱
+ 0x3ab2: "D\x02\u3ab2", // 㪲
+ 0x3ab3: "D\x02\u3ab3", // 㪳
+ 0x3ab4: "D\x04\u3ab4", // 㪴
+ 0x3ab5: "D\x05\u3ab5", // 㪵
+ 0x3ab6: "D\x06\u3ab6", // 㪶
+ 0x3ab7: "D\a\u3ab7", // 㪷
+ 0x3ab8: "D\b\u3ab8", // 㪸
+ 0x3ab9: "D\v\u3ab9", // 㪹
+ 0x3aba: "D\r\u3aba", // 㪺
+ 0x3abb: "D\x13\u3abb", // 㪻
+ 0x3abc: "E\x05\u3abc", // 㪼
+ 0x3abd: "E\x05\u3abd", // 㪽
+ 0x3abe: "E\x06\u3abe", // 㪾
+ 0x3abf: "E\x06\u3abf", // 㪿
+ 0x3ac0: "E\b\u3ac0", // 㫀
+ 0x3ac1: "E\n\u3ac1", // 㫁
+ 0x3ac2: "E\v\u3ac2", // 㫂
+ 0x3ac3: "F\x02\u3ac3", // 㫃
+ 0x3ac4: "F\x04\u3ac4", // 㫄
+ 0x3ac5: "F\x06\u3ac5", // 㫅
+ 0x3ac6: "F\x05\u3ac6", // 㫆
+ 0x3ac7: "F\x06\u3ac7", // 㫇
+ 0x3ac8: "F\x06\u3ac8", // 㫈
+ 0x3ac9: "F\x06\u3ac9", // 㫉
+ 0x3aca: "F\a\u3aca", // 㫊
+ 0x3acb: "F\a\u3acb", // 㫋
+ 0x3acc: "F\a\u3acc", // 㫌
+ 0x3acd: "F\b\u3acd", // 㫍
+ 0x3ace: "F\v\u3ace", // 㫎
+ 0x3acf: "F\v\u3acf", // 㫏
+ 0x3ad0: "H\x02\u3ad0", // 㫐
+ 0x3ad1: "H\x02\u3ad1", // 㫑
+ 0x3ad2: "H\x03\u3ad2", // 㫒
+ 0x3ad3: "H\x03\u3ad3", // 㫓
+ 0x3ad4: "H\x03\u3ad4", // 㫔
+ 0x3ad5: "H\x03\u3ad5", // 㫕
+ 0x3ad6: "H\x03\u3ad6", // 㫖
+ 0x3ad7: "H\x03\u3ad7", // 㫗
+ 0x3ad8: "H\x04\u3ad8", // 㫘
+ 0x3ad9: "H\x04\u3ad9", // 㫙
+ 0x3ada: "H\x04\u3ada", // 㫚
+ 0x3adb: "H\x05\u3adb", // 㫛
+ 0x3adc: "H\x05\u3adc", // 㫜
+ 0x3add: "H\x05\u3add", // 㫝
+ 0x3ade: "H\x05\u3ade", // 㫞
+ 0x3adf: "H\x05\u3adf", // 㫟
+ 0x3ae0: "H\x05\u3ae0", // 㫠
+ 0x3ae1: "H\x05\u3ae1", // 㫡
+ 0x3ae2: "H\x05\u3ae2", // 㫢
+ 0x3ae3: "H\x05\u3ae3", // 㫣
+ 0x3ae4: "H\x05\u3ae4", // 㫤
+ 0x3ae5: "H\x06\u3ae5", // 㫥
+ 0x3ae6: "H\x06\u3ae6", // 㫦
+ 0x3ae7: "H\x06\u3ae7", // 㫧
+ 0x3ae8: "H\x06\u3ae8", // 㫨
+ 0x3ae9: "H\x06\u3ae9", // 㫩
+ 0x3aea: "H\x06\u3aea", // 㫪
+ 0x3aeb: "H\x06\u3aeb", // 㫫
+ 0x3aec: "H\x06\u3aec", // 㫬
+ 0x3aed: "H\x06\u3aed", // 㫭
+ 0x3aee: "H\x06\u3aee", // 㫮
+ 0x3aef: "H\a\u3aef", // 㫯
+ 0x3af0: "H\a\u3af0", // 㫰
+ 0x3af1: "H\a\u3af1", // 㫱
+ 0x3af2: "H\a\u3af2", // 㫲
+ 0x3af3: "H\a\u3af3", // 㫳
+ 0x3af4: "H\a\u3af4", // 㫴
+ 0x3af5: "H\b\u3af5", // 㫵
+ 0x3af6: "H\b\u3af6", // 㫶
+ 0x3af7: "H\b\u3af7", // 㫷
+ 0x3af8: "H\b\u3af8", // 㫸
+ 0x3af9: "H\b\u3af9", // 㫹
+ 0x3afa: "H\b\u3afa", // 㫺
+ 0x3afb: "H\b\u3afb", // 㫻
+ 0x3afc: "H\b\u3afc", // 㫼
+ 0x3afd: "H\b\u3afd", // 㫽
+ 0x3afe: "H\b\u3afe", // 㫾
+ 0x3aff: "H\b\u3aff", // 㫿
+ 0x3b00: "H\b\u3b00", // 㬀
+ 0x3b01: "H\t\u3b01", // 㬁
+ 0x3b02: "H\t\u3b02", // 㬂
+ 0x3b03: "H\t\u3b03", // 㬃
+ 0x3b04: "H\t\u3b04", // 㬄
+ 0x3b05: "H\t\u3b05", // 㬅
+ 0x3b06: "H\t\u3b06", // 㬆
+ 0x3b07: "H\t\u3b07", // 㬇
+ 0x3b08: "H\t\u3b08", // 㬈
+ 0x3b09: "H\t\u3b09", // 㬉
+ 0x3b0a: "H\t\u3b0a", // 㬊
+ 0x3b0b: "H\t\u3b0b", // 㬋
+ 0x3b0c: "H\t\u3b0c", // 㬌
+ 0x3b0d: "H\n\u3b0d", // 㬍
+ 0x3b0e: "H\n\u3b0e", // 㬎
+ 0x3b0f: "H\n\u3b0f", // 㬏
+ 0x3b10: "H\n\u3b10", // 㬐
+ 0x3b11: "H\v\u3b11", // 㬑
+ 0x3b12: "H\v\u3b12", // 㬒
+ 0x3b13: "H\v\u3b13", // 㬓
+ 0x3b14: "H\v\u3b14", // 㬔
+ 0x3b15: "H\v\u3b15", // 㬕
+ 0x3b16: "H\v\u3b16", // 㬖
+ 0x3b17: "H\f\u3b17", // 㬗
+ 0x3b18: "H\f\u3b18", // 㬘
+ 0x3b19: "H\f\u3b19", // 㬙
+ 0x3b1a: "H\f\u3b1a", // 㬚
+ 0x3b1b: "H\f\u3b1b", // 㬛
+ 0x3b1c: "H\f\u3b1c", // 㬜
+ 0x3b1d: "H\f\u3b1d", // 㬝
+ 0x3b1e: "H\f\u3b1e", // 㬞
+ 0x3b1f: "H\f\u3b1f", // 㬟
+ 0x3b20: "H\r\u3b20", // 㬠
+ 0x3b21: "H\r\u3b21", // 㬡
+ 0x3b22: "H\r\u3b22", // 㬢
+ 0x3b23: "H\x0e\u3b23", // 㬣
+ 0x3b24: "H\x0e\u3b24", // 㬤
+ 0x3b25: "H\x0e\u3b25", // 㬥
+ 0x3b26: "H\x0e\u3b26", // 㬦
+ 0x3b27: "H\x0e\u3b27", // 㬧
+ 0x3b28: "H\x0e\u3b28", // 㬨
+ 0x3b29: "H\x0f\u3b29", // 㬩
+ 0x3b2a: "H\x0f\u3b2a", // 㬪
+ 0x3b2b: "H\x10\u3b2b", // 㬫
+ 0x3b2c: "H\x12\u3b2c", // 㬬
+ 0x3b2d: "H\x12\u3b2d", // 㬭
+ 0x3b2e: "H\x13\u3b2e", // 㬮
+ 0x3b2f: "H\x15\u3b2f", // 㬯
+ 0x3b30: "I\x02\u3b30", // 㬰
+ 0x3b31: "I\f\u3b31", // 㬱
+ 0x3b32: "I\r\u3b32", // 㬲
+ 0x3b33: "J\x04\u3b33", // 㬳
+ 0x3b34: "J\x06\u3b34", // 㬴
+ 0x3b35: "J\x06\u3b35", // 㬵
+ 0x3b36: "J\a\u3b36", // 㬶
+ 0x3b37: "J\a\u3b37", // 㬷
+ 0x3b38: "J\b\u3b38", // 㬸
+ 0x3b39: "\x82\b\u3b39", // 㬹
+ 0x3b3a: "J\n\u3b3a", // 㬺
+ 0x3b3b: "J\n\u3b3b", // 㬻
+ 0x3b3c: "J\v\u3b3c", // 㬼
+ 0x3b3d: "J\v\u3b3d", // 㬽
+ 0x3b3e: "J\v\u3b3e", // 㬾
+ 0x3b3f: "J\f\u3b3f", // 㬿
+ 0x3b40: "J\r\u3b40", // 㭀
+ 0x3b41: "K\x02\u3b41", // 㭁
+ 0x3b42: "K\x03\u3b42", // 㭂
+ 0x3b43: "K\x03\u3b43", // 㭃
+ 0x3b44: "K\x03\u3b44", // 㭄
+ 0x3b45: "K\x03\u3b45", // 㭅
+ 0x3b46: "K\x03\u3b46", // 㭆
+ 0x3b47: "K\x04\u3b47", // 㭇
+ 0x3b48: "K\x04\u3b48", // 㭈
+ 0x3b49: "K\x04\u3b49", // 㭉
+ 0x3b4a: "K\x04\u3b4a", // 㭊
+ 0x3b4b: "K\x04\u3b4b", // 㭋
+ 0x3b4c: "K\x04\u3b4c", // 㭌
+ 0x3b4d: "K\x04\u3b4d", // 㭍
+ 0x3b4e: "K\x04\u3b4e", // 㭎
+ 0x3b4f: "K\x04\u3b4f", // 㭏
+ 0x3b50: "K\x04\u3b50", // 㭐
+ 0x3b51: "K\x05\u3b51", // 㭑
+ 0x3b52: "K\x05\u3b52", // 㭒
+ 0x3b53: "K\x05\u3b53", // 㭓
+ 0x3b54: "K\x05\u3b54", // 㭔
+ 0x3b55: "K\x05\u3b55", // 㭕
+ 0x3b56: "K\x05\u3b56", // 㭖
+ 0x3b57: "K\x05\u3b57", // 㭗
+ 0x3b58: "K\x06\u3b58", // 㭘
+ 0x3b59: "K\x06\u3b59", // 㭙
+ 0x3b5a: "K\x06\u3b5a", // 㭚
+ 0x3b5b: "K\x06\u3b5b", // 㭛
+ 0x3b5c: "K\x06\u3b5c", // 㭜
+ 0x3b5d: "K\x06\u3b5d", // 㭝
+ 0x3b5e: "K\x06\u3b5e", // 㭞
+ 0x3b5f: "K\x06\u3b5f", // 㭟
+ 0x3b60: "K\x06\u3b60", // 㭠
+ 0x3b61: "K\x06\u3b61", // 㭡
+ 0x3b62: "K\x06\u3b62", // 㭢
+ 0x3b63: "K\x06\u3b63", // 㭣
+ 0x3b64: "K\x06\u3b64", // 㭤
+ 0x3b65: "K\x06\u3b65", // 㭥
+ 0x3b66: "K\x06\u3b66", // 㭦
+ 0x3b67: "K\x06\u3b67", // 㭧
+ 0x3b68: "K\a\u3b68", // 㭨
+ 0x3b69: "K\a\u3b69", // 㭩
+ 0x3b6a: "K\a\u3b6a", // 㭪
+ 0x3b6b: "K\a\u3b6b", // 㭫
+ 0x3b6c: "K\a\u3b6c", // 㭬
+ 0x3b6d: "K\a\u3b6d", // 㭭
+ 0x3b6e: "K\a\u3b6e", // 㭮
+ 0x3b6f: "K\a\u3b6f", // 㭯
+ 0x3b70: "K\a\u3b70", // 㭰
+ 0x3b71: "K\a\u3b71", // 㭱
+ 0x3b72: "K\a\u3b72", // 㭲
+ 0x3b73: "K\a\u3b73", // 㭳
+ 0x3b74: "K\a\u3b74", // 㭴
+ 0x3b75: "K\a\u3b75", // 㭵
+ 0x3b76: "K\b\u3b76", // 㭶
+ 0x3b77: "K\a\u3b77", // 㭷
+ 0x3b78: "K\b\u3b78", // 㭸
+ 0x3b79: "K\b\u3b79", // 㭹
+ 0x3b7a: "K\b\u3b7a", // 㭺
+ 0x3b7b: "K\b\u3b7b", // 㭻
+ 0x3b7c: "K\b\u3b7c", // 㭼
+ 0x3b7d: "K\b\u3b7d", // 㭽
+ 0x3b7e: "K\b\u3b7e", // 㭾
+ 0x3b7f: "K\b\u3b7f", // 㭿
+ 0x3b80: "K\b\u3b80", // 㮀
+ 0x3b81: "K\b\u3b81", // 㮁
+ 0x3b82: "K\b\u3b82", // 㮂
+ 0x3b83: "K\b\u3b83", // 㮃
+ 0x3b84: "K\b\u3b84", // 㮄
+ 0x3b85: "K\b\u3b85", // 㮅
+ 0x3b86: "K\b\u3b86", // 㮆
+ 0x3b87: "K\b\u3b87", // 㮇
+ 0x3b88: "K\b\u3b88", // 㮈
+ 0x3b89: "K\b\u3b89", // 㮉
+ 0x3b8a: "K\b\u3b8a", // 㮊
+ 0x3b8b: "K\t\u3b8b", // 㮋
+ 0x3b8c: "K\t\u3b8c", // 㮌
+ 0x3b8d: "K\t\u3b8d", // 㮍
+ 0x3b8e: "K\t\u3b8e", // 㮎
+ 0x3b8f: "K\t\u3b8f", // 㮏
+ 0x3b90: "K\t\u3b90", // 㮐
+ 0x3b91: "K\t\u3b91", // 㮑
+ 0x3b92: "K\t\u3b92", // 㮒
+ 0x3b93: "K\t\u3b93", // 㮓
+ 0x3b94: "K\t\u3b94", // 㮔
+ 0x3b95: "K\t\u3b95", // 㮕
+ 0x3b96: "K\t\u3b96", // 㮖
+ 0x3b97: "K\t\u3b97", // 㮗
+ 0x3b98: "K\t\u3b98", // 㮘
+ 0x3b99: "K\t\u3b99", // 㮙
+ 0x3b9a: "K\t\u3b9a", // 㮚
+ 0x3b9b: "K\t\u3b9b", // 㮛
+ 0x3b9c: "K\t\u3b9c", // 㮜
+ 0x3b9d: "K\t\u3b9d", // 㮝
+ 0x3b9e: "K\t\u3b9e", // 㮞
+ 0x3b9f: "K\t\u3b9f", // 㮟
+ 0x3ba0: "K\t\u3ba0", // 㮠
+ 0x3ba1: "V\t\u3ba1", // 㮡
+ 0x3ba2: "K\t\u3ba2", // 㮢
+ 0x3ba3: "K\t\u3ba3", // 㮣
+ 0x3ba4: "K\n\u3ba4", // 㮤
+ 0x3ba5: "K\n\u3ba5", // 㮥
+ 0x3ba6: "K\n\u3ba6", // 㮦
+ 0x3ba7: "K\n\u3ba7", // 㮧
+ 0x3ba8: "K\n\u3ba8", // 㮨
+ 0x3ba9: "K\n\u3ba9", // 㮩
+ 0x3baa: "K\n\u3baa", // 㮪
+ 0x3bab: "K\n\u3bab", // 㮫
+ 0x3bac: "K\n\u3bac", // 㮬
+ 0x3bad: "K\n\u3bad", // 㮭
+ 0x3bae: "K\n\u3bae", // 㮮
+ 0x3baf: "K\n\u3baf", // 㮯
+ 0x3bb0: "K\n\u3bb0", // 㮰
+ 0x3bb1: "K\n\u3bb1", // 㮱
+ 0x3bb2: "K\n\u3bb2", // 㮲
+ 0x3bb3: "K\n\u3bb3", // 㮳
+ 0x3bb4: "K\n\u3bb4", // 㮴
+ 0x3bb5: "K\n\u3bb5", // 㮵
+ 0x3bb6: "K\n\u3bb6", // 㮶
+ 0x3bb7: "K\n\u3bb7", // 㮷
+ 0x3bb8: "K\n\u3bb8", // 㮸
+ 0x3bb9: "K\n\u3bb9", // 㮹
+ 0x3bba: "K\n\u3bba", // 㮺
+ 0x3bbb: "K\n\u3bbb", // 㮻
+ 0x3bbc: "K\n\u3bbc", // 㮼
+ 0x3bbd: "K\n\u3bbd", // 㮽
+ 0x3bbe: "K\v\u3bbe", // 㮾
+ 0x3bbf: "K\v\u3bbf", // 㮿
+ 0x3bc0: "K\v\u3bc0", // 㯀
+ 0x3bc1: "K\v\u3bc1", // 㯁
+ 0x3bc2: "K\v\u3bc2", // 㯂
+ 0x3bc3: "K\v\u3bc3", // 㯃
+ 0x3bc4: "K\v\u3bc4", // 㯄
+ 0x3bc5: "K\v\u3bc5", // 㯅
+ 0x3bc6: "K\v\u3bc6", // 㯆
+ 0x3bc7: "K\v\u3bc7", // 㯇
+ 0x3bc8: "K\v\u3bc8", // 㯈
+ 0x3bc9: "K\v\u3bc9", // 㯉
+ 0x3bca: "K\v\u3bca", // 㯊
+ 0x3bcb: "K\v\u3bcb", // 㯋
+ 0x3bcc: "K\v\u3bcc", // 㯌
+ 0x3bcd: "K\v\u3bcd", // 㯍
+ 0x3bce: "K\v\u3bce", // 㯎
+ 0x3bcf: "K\v\u3bcf", // 㯏
+ 0x3bd0: "K\f\u3bd0", // 㯐
+ 0x3bd1: "K\v\u3bd1", // 㯑
+ 0x3bd2: "K\v\u3bd2", // 㯒
+ 0x3bd3: "K\f\u3bd3", // 㯓
+ 0x3bd4: "K\f\u3bd4", // 㯔
+ 0x3bd5: "K\f\u3bd5", // 㯕
+ 0x3bd6: "K\f\u3bd6", // 㯖
+ 0x3bd7: "K\f\u3bd7", // 㯗
+ 0x3bd8: "K\f\u3bd8", // 㯘
+ 0x3bd9: "K\f\u3bd9", // 㯙
+ 0x3bda: "K\f\u3bda", // 㯚
+ 0x3bdb: "K\f\u3bdb", // 㯛
+ 0x3bdc: "K\f\u3bdc", // 㯜
+ 0x3bdd: "K\f\u3bdd", // 㯝
+ 0x3bde: "K\f\u3bde", // 㯞
+ 0x3bdf: "K\f\u3bdf", // 㯟
+ 0x3be0: "K\v\u3be0", // 㯠
+ 0x3be1: "K\f\u3be1", // 㯡
+ 0x3be2: "K\f\u3be2", // 㯢
+ 0x3be3: "K\f\u3be3", // 㯣
+ 0x3be4: "K\f\u3be4", // 㯤
+ 0x3be5: "K\f\u3be5", // 㯥
+ 0x3be6: "K\f\u3be6", // 㯦
+ 0x3be7: "K\f\u3be7", // 㯧
+ 0x3be8: "K\f\u3be8", // 㯨
+ 0x3be9: "K\f\u3be9", // 㯩
+ 0x3bea: "K\r\u3bea", // 㯪
+ 0x3beb: "K\r\u3beb", // 㯫
+ 0x3bec: "K\r\u3bec", // 㯬
+ 0x3bed: "K\r\u3bed", // 㯭
+ 0x3bee: "K\r\u3bee", // 㯮
+ 0x3bef: "K\r\u3bef", // 㯯
+ 0x3bf0: "K\r\u3bf0", // 㯰
+ 0x3bf1: "K\r\u3bf1", // 㯱
+ 0x3bf2: "K\r\u3bf2", // 㯲
+ 0x3bf3: "K\r\u3bf3", // 㯳
+ 0x3bf4: "K\r\u3bf4", // 㯴
+ 0x3bf5: "K\r\u3bf5", // 㯵
+ 0x3bf6: "K\r\u3bf6", // 㯶
+ 0x3bf7: "K\x0e\u3bf7", // 㯷
+ 0x3bf8: "K\x0e\u3bf8", // 㯸
+ 0x3bf9: "K\x0e\u3bf9", // 㯹
+ 0x3bfa: "K\x0e\u3bfa", // 㯺
+ 0x3bfb: "K\x0e\u3bfb", // 㯻
+ 0x3bfc: "K\x0e\u3bfc", // 㯼
+ 0x3bfd: "K\x0e\u3bfd", // 㯽
+ 0x3bfe: "K\x0f\u3bfe", // 㯾
+ 0x3bff: "K\x0f\u3bff", // 㯿
+ 0x3c00: "K\x0f\u3c00", // 㰀
+ 0x3c01: "K\x0f\u3c01", // 㰁
+ 0x3c02: "K\x0f\u3c02", // 㰂
+ 0x3c03: "K\x0f\u3c03", // 㰃
+ 0x3c04: "K\x0f\u3c04", // 㰄
+ 0x3c05: "K\x0f\u3c05", // 㰅
+ 0x3c06: "K\x0f\u3c06", // 㰆
+ 0x3c07: "K\x0f\u3c07", // 㰇
+ 0x3c08: "K\x0f\u3c08", // 㰈
+ 0x3c09: "K\x10\u3c09", // 㰉
+ 0x3c0a: "K\x10\u3c0a", // 㰊
+ 0x3c0b: "K\x10\u3c0b", // 㰋
+ 0x3c0c: "K\x10\u3c0c", // 㰌
+ 0x3c0d: "K\x10\u3c0d", // 㰍
+ 0x3c0e: "K\x10\u3c0e", // 㰎
+ 0x3c0f: "K\x10\u3c0f", // 㰏
+ 0x3c10: "K\x10\u3c10", // 㰐
+ 0x3c11: "K\x10\u3c11", // 㰑
+ 0x3c12: "K\x10\u3c12", // 㰒
+ 0x3c13: "K\x10\u3c13", // 㰓
+ 0x3c14: "K\x11\u3c14", // 㰔
+ 0x3c15: "K\x11\u3c15", // 㰕
+ 0x3c16: "K\x10\u3c16", // 㰖
+ 0x3c17: "K\x12\u3c17", // 㰗
+ 0x3c18: "K\x12\u3c18", // 㰘
+ 0x3c19: "K\x13\u3c19", // 㰙
+ 0x3c1a: "K\x13\u3c1a", // 㰚
+ 0x3c1b: "K\x13\u3c1b", // 㰛
+ 0x3c1c: "K\x13\u3c1c", // 㰜
+ 0x3c1d: "L\x03\u3c1d", // 㰝
+ 0x3c1e: "L\x03\u3c1e", // 㰞
+ 0x3c1f: "L\x04\u3c1f", // 㰟
+ 0x3c20: "L\x04\u3c20", // 㰠
+ 0x3c21: "L\x04\u3c21", // 㰡
+ 0x3c22: "L\x04\u3c22", // 㰢
+ 0x3c23: "L\x05\u3c23", // 㰣
+ 0x3c24: "L\x05\u3c24", // 㰤
+ 0x3c25: "L\x05\u3c25", // 㰥
+ 0x3c26: "L\x05\u3c26", // 㰦
+ 0x3c27: "L\x05\u3c27", // 㰧
+ 0x3c28: "L\x05\u3c28", // 㰨
+ 0x3c29: "L\x06\u3c29", // 㰩
+ 0x3c2a: "L\x06\u3c2a", // 㰪
+ 0x3c2b: "L\x06\u3c2b", // 㰫
+ 0x3c2c: "L\x06\u3c2c", // 㰬
+ 0x3c2d: "L\x06\u3c2d", // 㰭
+ 0x3c2e: "L\a\u3c2e", // 㰮
+ 0x3c2f: "L\a\u3c2f", // 㰯
+ 0x3c30: "L\a\u3c30", // 㰰
+ 0x3c31: "L\a\u3c31", // 㰱
+ 0x3c32: "L\b\u3c32", // 㰲
+ 0x3c33: "L\b\u3c33", // 㰳
+ 0x3c34: "L\b\u3c34", // 㰴
+ 0x3c35: "L\b\u3c35", // 㰵
+ 0x3c36: "L\b\u3c36", // 㰶
+ 0x3c37: "N\x06\u3c37", // 㰷
+ 0x3c38: "L\b\u3c38", // 㰸
+ 0x3c39: "L\t\u3c39", // 㰹
+ 0x3c3a: "L\t\u3c3a", // 㰺
+ 0x3c3b: "L\t\u3c3b", // 㰻
+ 0x3c3c: "L\t\u3c3c", // 㰼
+ 0x3c3d: "L\t\u3c3d", // 㰽
+ 0x3c3e: "L\t\u3c3e", // 㰾
+ 0x3c3f: "L\n\u3c3f", // 㰿
+ 0x3c40: "L\n\u3c40", // 㱀
+ 0x3c41: "L\n\u3c41", // 㱁
+ 0x3c42: "L\v\u3c42", // 㱂
+ 0x3c43: "L\v\u3c43", // 㱃
+ 0x3c44: "L\f\u3c44", // 㱄
+ 0x3c45: "L\f\u3c45", // 㱅
+ 0x3c46: "L\r\u3c46", // 㱆
+ 0x3c47: "L\r\u3c47", // 㱇
+ 0x3c48: "L\r\u3c48", // 㱈
+ 0x3c49: "L\r\u3c49", // 㱉
+ 0x3c4a: "L\x0f\u3c4a", // 㱊
+ 0x3c4b: "L\x10\u3c4b", // 㱋
+ 0x3c4c: "L\x12\u3c4c", // 㱌
+ 0x3c4d: "L\x13\u3c4d", // 㱍
+ 0x3c4e: "L\x15\u3c4e", // 㱎
+ 0x3c4f: "M\x02\u3c4f", // 㱏
+ 0x3c50: "M\x03\u3c50", // 㱐
+ 0x3c51: "M\x03\u3c51", // 㱑
+ 0x3c52: "M\x05\u3c52", // 㱒
+ 0x3c53: "M\x05\u3c53", // 㱓
+ 0x3c54: "M\x05\u3c54", // 㱔
+ 0x3c55: "M\b\u3c55", // 㱕
+ 0x3c56: "M\b\u3c56", // 㱖
+ 0x3c57: "M\n\u3c57", // 㱗
+ 0x3c58: "M\x0e\u3c58", // 㱘
+ 0x3c59: "N\x02\u3c59", // 㱙
+ 0x3c5a: "N\x04\u3c5a", // 㱚
+ 0x3c5b: "N\x04\u3c5b", // 㱛
+ 0x3c5c: "N\x04\u3c5c", // 㱜
+ 0x3c5d: "N\x04\u3c5d", // 㱝
+ 0x3c5e: "N\x05\u3c5e", // 㱞
+ 0x3c5f: "N\x05\u3c5f", // 㱟
+ 0x3c60: "N\x05\u3c60", // 㱠
+ 0x3c61: "N\x06\u3c61", // 㱡
+ 0x3c62: "N\a\u3c62", // 㱢
+ 0x3c63: "N\a\u3c63", // 㱣
+ 0x3c64: "N\b\u3c64", // 㱤
+ 0x3c65: "N\b\u3c65", // 㱥
+ 0x3c66: "N\b\u3c66", // 㱦
+ 0x3c67: "N\b\u3c67", // 㱧
+ 0x3c68: "N\b\u3c68", // 㱨
+ 0x3c69: "N\b\u3c69", // 㱩
+ 0x3c6a: "N\t\u3c6a", // 㱪
+ 0x3c6b: "N\t\u3c6b", // 㱫
+ 0x3c6c: "N\t\u3c6c", // 㱬
+ 0x3c6d: "N\t\u3c6d", // 㱭
+ 0x3c6e: "N\t\u3c6e", // 㱮
+ 0x3c6f: "N\n\u3c6f", // 㱯
+ 0x3c70: "N\n\u3c70", // 㱰
+ 0x3c71: "N\n\u3c71", // 㱱
+ 0x3c72: "N\n\u3c72", // 㱲
+ 0x3c73: "N\v\u3c73", // 㱳
+ 0x3c74: "N\v\u3c74", // 㱴
+ 0x3c75: "N\f\u3c75", // 㱵
+ 0x3c76: "N\f\u3c76", // 㱶
+ 0x3c77: "N\f\u3c77", // 㱷
+ 0x3c78: "N\r\u3c78", // 㱸
+ 0x3c79: "N\x10\u3c79", // 㱹
+ 0x3c7a: "N\x10\u3c7a", // 㱺
+ 0x3c7b: "N\x13\u3c7b", // 㱻
+ 0x3c7c: "O\x03\u3c7c", // 㱼
+ 0x3c7d: "O\x04\u3c7d", // 㱽
+ 0x3c7e: "O\x06\u3c7e", // 㱾
+ 0x3c7f: "O\x06\u3c7f", // 㱿
+ 0x3c80: "O\a\u3c80", // 㲀
+ 0x3c81: "O\b\u3c81", // 㲁
+ 0x3c82: "O\b\u3c82", // 㲂
+ 0x3c83: "O\b\u3c83", // 㲃
+ 0x3c84: "O\t\u3c84", // 㲄
+ 0x3c85: "O\n\u3c85", // 㲅
+ 0x3c86: "O\f\u3c86", // 㲆
+ 0x3c87: "O\f\u3c87", // 㲇
+ 0x3c88: "O\f\u3c88", // 㲈
+ 0x3c89: "O\r\u3c89", // 㲉
+ 0x3c8a: "O\x0e\u3c8a", // 㲊
+ 0x3c8b: "Q\x05\u3c8b", // 㲋
+ 0x3c8c: "R\x02\u3c8c", // 㲌
+ 0x3c8d: "R\x04\u3c8d", // 㲍
+ 0x3c8e: "R\x04\u3c8e", // 㲎
+ 0x3c8f: "R\x04\u3c8f", // 㲏
+ 0x3c90: "R\x04\u3c90", // 㲐
+ 0x3c91: "R\x04\u3c91", // 㲑
+ 0x3c92: "R\x05\u3c92", // 㲒
+ 0x3c93: "R\x06\u3c93", // 㲓
+ 0x3c94: "R\a\u3c94", // 㲔
+ 0x3c95: "R\a\u3c95", // 㲕
+ 0x3c96: "R\a\u3c96", // 㲖
+ 0x3c97: "R\a\u3c97", // 㲗
+ 0x3c98: "R\a\u3c98", // 㲘
+ 0x3c99: "R\a\u3c99", // 㲙
+ 0x3c9a: "R\a\u3c9a", // 㲚
+ 0x3c9b: "R\b\u3c9b", // 㲛
+ 0x3c9c: "R\b\u3c9c", // 㲜
+ 0x3c9d: "R\b\u3c9d", // 㲝
+ 0x3c9e: "R\b\u3c9e", // 㲞
+ 0x3c9f: "R\t\u3c9f", // 㲟
+ 0x3ca0: "R\t\u3ca0", // 㲠
+ 0x3ca1: "R\t\u3ca1", // 㲡
+ 0x3ca2: "R\t\u3ca2", // 㲢
+ 0x3ca3: "R\t\u3ca3", // 㲣
+ 0x3ca4: "R\n\u3ca4", // 㲤
+ 0x3ca5: "R\n\u3ca5", // 㲥
+ 0x3ca6: "R\n\u3ca6", // 㲦
+ 0x3ca7: "R\n\u3ca7", // 㲧
+ 0x3ca8: "R\n\u3ca8", // 㲨
+ 0x3ca9: "R\n\u3ca9", // 㲩
+ 0x3caa: "R\f\u3caa", // 㲪
+ 0x3cab: "R\f\u3cab", // 㲫
+ 0x3cac: "R\f\u3cac", // 㲬
+ 0x3cad: "R\f\u3cad", // 㲭
+ 0x3cae: "R\f\u3cae", // 㲮
+ 0x3caf: "R\x0e\u3caf", // 㲯
+ 0x3cb0: "R\x0e\u3cb0", // 㲰
+ 0x3cb1: "R\x0f\u3cb1", // 㲱
+ 0x3cb2: "R\x16\u3cb2", // 㲲
+ 0x3cb3: "S\x06\u3cb3", // 㲳
+ 0x3cb4: "T\x04\u3cb4", // 㲴
+ 0x3cb5: "T\a\u3cb5", // 㲵
+ 0x3cb6: "T\v\u3cb6", // 㲶
+ 0x3cb7: "T\f\u3cb7", // 㲷
+ 0x3cb8: "U\x01\u3cb8", // 㲸
+ 0x3cb9: "U\x02\u3cb9", // 㲹
+ 0x3cba: "U\x02\u3cba", // 㲺
+ 0x3cbb: "U\x02\u3cbb", // 㲻
+ 0x3cbc: "U\x02\u3cbc", // 㲼
+ 0x3cbd: "U\x03\u3cbd", // 㲽
+ 0x3cbe: "U\x03\u3cbe", // 㲾
+ 0x3cbf: "U\x03\u3cbf", // 㲿
+ 0x3cc0: "U\x04\u3cc0", // 㳀
+ 0x3cc1: "U\x04\u3cc1", // 㳁
+ 0x3cc2: "U\x04\u3cc2", // 㳂
+ 0x3cc3: "U\x04\u3cc3", // 㳃
+ 0x3cc4: "U\x04\u3cc4", // 㳄
+ 0x3cc5: "U\x04\u3cc5", // 㳅
+ 0x3cc6: "U\x04\u3cc6", // 㳆
+ 0x3cc7: "U\x04\u3cc7", // 㳇
+ 0x3cc8: "U\x04\u3cc8", // 㳈
+ 0x3cc9: "U\x04\u3cc9", // 㳉
+ 0x3cca: "U\x04\u3cca", // 㳊
+ 0x3ccb: "U\x05\u3ccb", // 㳋
+ 0x3ccc: "U\x05\u3ccc", // 㳌
+ 0x3ccd: "U\x05\u3ccd", // 㳍
+ 0x3cce: "U\x05\u3cce", // 㳎
+ 0x3ccf: "U\x05\u3ccf", // 㳏
+ 0x3cd0: "U\x05\u3cd0", // 㳐
+ 0x3cd1: "U\x05\u3cd1", // 㳑
+ 0x3cd2: "U\x05\u3cd2", // 㳒
+ 0x3cd3: "U\x05\u3cd3", // 㳓
+ 0x3cd4: "U\x05\u3cd4", // 㳔
+ 0x3cd5: "U\x05\u3cd5", // 㳕
+ 0x3cd6: "U\x06\u3cd6", // 㳖
+ 0x3cd7: "U\x06\u3cd7", // 㳗
+ 0x3cd8: "U\x06\u3cd8", // 㳘
+ 0x3cd9: "U\x06\u3cd9", // 㳙
+ 0x3cda: "U\x06\u3cda", // 㳚
+ 0x3cdb: "U\x06\u3cdb", // 㳛
+ 0x3cdc: "U\x06\u3cdc", // 㳜
+ 0x3cdd: "U\x06\u3cdd", // 㳝
+ 0x3cde: "U\x06\u3cde", // 㳞
+ 0x3cdf: "U\x06\u3cdf", // 㳟
+ 0x3ce0: "U\x06\u3ce0", // 㳠
+ 0x3ce1: "U\x06\u3ce1", // 㳡
+ 0x3ce2: "U\x06\u3ce2", // 㳢
+ 0x3ce3: "U\x06\u3ce3", // 㳣
+ 0x3ce4: "U\a\u3ce4", // 㳤
+ 0x3ce5: "U\a\u3ce5", // 㳥
+ 0x3ce6: "U\a\u3ce6", // 㳦
+ 0x3ce7: "U\a\u3ce7", // 㳧
+ 0x3ce8: "U\a\u3ce8", // 㳨
+ 0x3ce9: "U\a\u3ce9", // 㳩
+ 0x3cea: "U\a\u3cea", // 㳪
+ 0x3ceb: "U\a\u3ceb", // 㳫
+ 0x3cec: "U\a\u3cec", // 㳬
+ 0x3ced: "U\a\u3ced", // 㳭
+ 0x3cee: "U\a\u3cee", // 㳮
+ 0x3cef: "U\a\u3cef", // 㳯
+ 0x3cf0: "U\a\u3cf0", // 㳰
+ 0x3cf1: "U\a\u3cf1", // 㳱
+ 0x3cf2: "U\a\u3cf2", // 㳲
+ 0x3cf3: "U\a\u3cf3", // 㳳
+ 0x3cf4: "U\b\u3cf4", // 㳴
+ 0x3cf5: "U\b\u3cf5", // 㳵
+ 0x3cf6: "U\b\u3cf6", // 㳶
+ 0x3cf7: "U\b\u3cf7", // 㳷
+ 0x3cf8: "U\b\u3cf8", // 㳸
+ 0x3cf9: "U\b\u3cf9", // 㳹
+ 0x3cfa: "U\b\u3cfa", // 㳺
+ 0x3cfb: "U\b\u3cfb", // 㳻
+ 0x3cfc: "U\b\u3cfc", // 㳼
+ 0x3cfd: "U\b\u3cfd", // 㳽
+ 0x3cfe: "U\b\u3cfe", // 㳾
+ 0x3cff: "U\b\u3cff", // 㳿
+ 0x3d00: "U\b\u3d00", // 㴀
+ 0x3d01: "U\b\u3d01", // 㴁
+ 0x3d02: "U\b\u3d02", // 㴂
+ 0x3d03: "U\b\u3d03", // 㴃
+ 0x3d04: "U\b\u3d04", // 㴄
+ 0x3d05: "U\b\u3d05", // 㴅
+ 0x3d06: "U\b\u3d06", // 㴆
+ 0x3d07: "U\b\u3d07", // 㴇
+ 0x3d08: "U\b\u3d08", // 㴈
+ 0x3d09: "U\b\u3d09", // 㴉
+ 0x3d0a: "U\b\u3d0a", // 㴊
+ 0x3d0b: "U\b\u3d0b", // 㴋
+ 0x3d0c: "U\b\u3d0c", // 㴌
+ 0x3d0d: "U\b\u3d0d", // 㴍
+ 0x3d0e: "U\b\u3d0e", // 㴎
+ 0x3d0f: "U\t\u3d0f", // 㴏
+ 0x3d10: "U\t\u3d10", // 㴐
+ 0x3d11: "U\t\u3d11", // 㴑
+ 0x3d12: "U\t\u3d12", // 㴒
+ 0x3d13: "U\t\u3d13", // 㴓
+ 0x3d14: "U\t\u3d14", // 㴔
+ 0x3d15: "U\t\u3d15", // 㴕
+ 0x3d16: "U\t\u3d16", // 㴖
+ 0x3d17: "U\t\u3d17", // 㴗
+ 0x3d18: "U\t\u3d18", // 㴘
+ 0x3d19: "U\t\u3d19", // 㴙
+ 0x3d1a: "U\t\u3d1a", // 㴚
+ 0x3d1b: "U\t\u3d1b", // 㴛
+ 0x3d1c: "U\t\u3d1c", // 㴜
+ 0x3d1d: "U\t\u3d1d", // 㴝
+ 0x3d1e: "U\t\u3d1e", // 㴞
+ 0x3d1f: "U\t\u3d1f", // 㴟
+ 0x3d20: "U\t\u3d20", // 㴠
+ 0x3d21: "U\t\u3d21", // 㴡
+ 0x3d22: "U\t\u3d22", // 㴢
+ 0x3d23: "U\t\u3d23", // 㴣
+ 0x3d24: "U\t\u3d24", // 㴤
+ 0x3d25: "U\n\u3d25", // 㴥
+ 0x3d26: "U\n\u3d26", // 㴦
+ 0x3d27: "U\n\u3d27", // 㴧
+ 0x3d28: "U\n\u3d28", // 㴨
+ 0x3d29: "U\n\u3d29", // 㴩
+ 0x3d2a: "U\n\u3d2a", // 㴪
+ 0x3d2b: "U\n\u3d2b", // 㴫
+ 0x3d2c: "U\n\u3d2c", // 㴬
+ 0x3d2d: "U\n\u3d2d", // 㴭
+ 0x3d2e: "U\n\u3d2e", // 㴮
+ 0x3d2f: "U\n\u3d2f", // 㴯
+ 0x3d30: "U\n\u3d30", // 㴰
+ 0x3d31: "U\n\u3d31", // 㴱
+ 0x3d32: "U\n\u3d32", // 㴲
+ 0x3d33: "U\n\u3d33", // 㴳
+ 0x3d34: "U\n\u3d34", // 㴴
+ 0x3d35: "U\n\u3d35", // 㴵
+ 0x3d36: "U\n\u3d36", // 㴶
+ 0x3d37: "U\n\u3d37", // 㴷
+ 0x3d38: "U\n\u3d38", // 㴸
+ 0x3d39: "U\n\u3d39", // 㴹
+ 0x3d3a: "U\n\u3d3a", // 㴺
+ 0x3d3b: "U\n\u3d3b", // 㴻
+ 0x3d3c: "U\v\u3d3c", // 㴼
+ 0x3d3d: "U\v\u3d3d", // 㴽
+ 0x3d3e: "U\v\u3d3e", // 㴾
+ 0x3d3f: "U\v\u3d3f", // 㴿
+ 0x3d40: "U\v\u3d40", // 㵀
+ 0x3d41: "U\v\u3d41", // 㵁
+ 0x3d42: "U\v\u3d42", // 㵂
+ 0x3d43: "U\v\u3d43", // 㵃
+ 0x3d44: "U\v\u3d44", // 㵄
+ 0x3d45: "U\v\u3d45", // 㵅
+ 0x3d46: "U\v\u3d46", // 㵆
+ 0x3d47: "U\v\u3d47", // 㵇
+ 0x3d48: "U\v\u3d48", // 㵈
+ 0x3d49: "U\v\u3d49", // 㵉
+ 0x3d4a: "U\f\u3d4a", // 㵊
+ 0x3d4b: "U\f\u3d4b", // 㵋
+ 0x3d4c: "U\f\u3d4c", // 㵌
+ 0x3d4d: "U\f\u3d4d", // 㵍
+ 0x3d4e: "U\f\u3d4e", // 㵎
+ 0x3d4f: "U\f\u3d4f", // 㵏
+ 0x3d50: "U\f\u3d50", // 㵐
+ 0x3d51: "U\f\u3d51", // 㵑
+ 0x3d52: "U\f\u3d52", // 㵒
+ 0x3d53: "U\f\u3d53", // 㵓
+ 0x3d54: "U\f\u3d54", // 㵔
+ 0x3d55: "U\f\u3d55", // 㵕
+ 0x3d56: "U\f\u3d56", // 㵖
+ 0x3d57: "U\f\u3d57", // 㵗
+ 0x3d58: "U\f\u3d58", // 㵘
+ 0x3d59: "U\f\u3d59", // 㵙
+ 0x3d5a: "U\f\u3d5a", // 㵚
+ 0x3d5b: "U\f\u3d5b", // 㵛
+ 0x3d5c: "U\f\u3d5c", // 㵜
+ 0x3d5d: "U\r\u3d5d", // 㵝
+ 0x3d5e: "U\r\u3d5e", // 㵞
+ 0x3d5f: "U\r\u3d5f", // 㵟
+ 0x3d60: "U\r\u3d60", // 㵠
+ 0x3d61: "U\r\u3d61", // 㵡
+ 0x3d62: "U\r\u3d62", // 㵢
+ 0x3d63: "U\r\u3d63", // 㵣
+ 0x3d64: "U\r\u3d64", // 㵤
+ 0x3d65: "U\r\u3d65", // 㵥
+ 0x3d66: "U\r\u3d66", // 㵦
+ 0x3d67: "U\r\u3d67", // 㵧
+ 0x3d68: "U\r\u3d68", // 㵨
+ 0x3d69: "U\r\u3d69", // 㵩
+ 0x3d6a: "U\r\u3d6a", // 㵪
+ 0x3d6b: "U\r\u3d6b", // 㵫
+ 0x3d6c: "U\r\u3d6c", // 㵬
+ 0x3d6d: "U\r\u3d6d", // 㵭
+ 0x3d6e: "U\r\u3d6e", // 㵮
+ 0x3d6f: "U\x0e\u3d6f", // 㵯
+ 0x3d70: "U\x0e\u3d70", // 㵰
+ 0x3d71: "U\x0e\u3d71", // 㵱
+ 0x3d72: "U\x0e\u3d72", // 㵲
+ 0x3d73: "U\x0e\u3d73", // 㵳
+ 0x3d74: "U\x0e\u3d74", // 㵴
+ 0x3d75: "U\x0e\u3d75", // 㵵
+ 0x3d76: "U\x0e\u3d76", // 㵶
+ 0x3d77: "U\x0e\u3d77", // 㵷
+ 0x3d78: "U\x0e\u3d78", // 㵸
+ 0x3d79: "U\x0e\u3d79", // 㵹
+ 0x3d7a: "U\x0e\u3d7a", // 㵺
+ 0x3d7b: "U\x0e\u3d7b", // 㵻
+ 0x3d7c: "U\x0e\u3d7c", // 㵼
+ 0x3d7d: "U\x0f\u3d7d", // 㵽
+ 0x3d7e: "U\x0f\u3d7e", // 㵾
+ 0x3d7f: "U\x0f\u3d7f", // 㵿
+ 0x3d80: "U\x0f\u3d80", // 㶀
+ 0x3d81: "U\x0f\u3d81", // 㶁
+ 0x3d82: "U\x0f\u3d82", // 㶂
+ 0x3d83: "U\x0f\u3d83", // 㶃
+ 0x3d84: "U\x10\u3d84", // 㶄
+ 0x3d85: "U\x10\u3d85", // 㶅
+ 0x3d86: "U\x10\u3d86", // 㶆
+ 0x3d87: "U\x10\u3d87", // 㶇
+ 0x3d88: "U\x10\u3d88", // 㶈
+ 0x3d89: "U\x10\u3d89", // 㶉
+ 0x3d8a: "U\x10\u3d8a", // 㶊
+ 0x3d8b: "U\x10\u3d8b", // 㶋
+ 0x3d8c: "U\x11\u3d8c", // 㶌
+ 0x3d8d: "U\x11\u3d8d", // 㶍
+ 0x3d8e: "U\x11\u3d8e", // 㶎
+ 0x3d8f: "U\x11\u3d8f", // 㶏
+ 0x3d90: "U\x11\u3d90", // 㶐
+ 0x3d91: "U\x11\u3d91", // 㶑
+ 0x3d92: "U\x12\u3d92", // 㶒
+ 0x3d93: "U\x12\u3d93", // 㶓
+ 0x3d94: "U\x12\u3d94", // 㶔
+ 0x3d95: "U\x12\u3d95", // 㶕
+ 0x3d96: "U\x12\u3d96", // 㶖
+ 0x3d97: "U\x12\u3d97", // 㶗
+ 0x3d98: "U\x12\u3d98", // 㶘
+ 0x3d99: "U\x13\u3d99", // 㶙
+ 0x3d9a: "U\x13\u3d9a", // 㶚
+ 0x3d9b: "U\x14\u3d9b", // 㶛
+ 0x3d9c: "U\x14\u3d9c", // 㶜
+ 0x3d9d: "U\x14\u3d9d", // 㶝
+ 0x3d9e: "U\x15\u3d9e", // 㶞
+ 0x3d9f: "U\x15\u3d9f", // 㶟
+ 0x3da0: "U\x17\u3da0", // 㶠
+ 0x3da1: "V\x02\u3da1", // 㶡
+ 0x3da2: "V\x02\u3da2", // 㶢
+ 0x3da3: "V\x03\u3da3", // 㶣
+ 0x3da4: "V\x03\u3da4", // 㶤
+ 0x3da5: "V\x03\u3da5", // 㶥
+ 0x3da6: "V\x04\u3da6", // 㶦
+ 0x3da7: "V\x04\u3da7", // 㶧
+ 0x3da8: "V\x04\u3da8", // 㶨
+ 0x3da9: "V\x04\u3da9", // 㶩
+ 0x3daa: "V\x04\u3daa", // 㶪
+ 0x3dab: "V\x05\u3dab", // 㶫
+ 0x3dac: "V\x05\u3dac", // 㶬
+ 0x3dad: "V\x05\u3dad", // 㶭
+ 0x3dae: "V\x05\u3dae", // 㶮
+ 0x3daf: "V\x05\u3daf", // 㶯
+ 0x3db0: "V\x05\u3db0", // 㶰
+ 0x3db1: "V\x05\u3db1", // 㶱
+ 0x3db2: "V\x05\u3db2", // 㶲
+ 0x3db3: "V\x06\u3db3", // 㶳
+ 0x3db4: "V\x06\u3db4", // 㶴
+ 0x3db5: "V\x06\u3db5", // 㶵
+ 0x3db6: "V\x06\u3db6", // 㶶
+ 0x3db7: "V\x06\u3db7", // 㶷
+ 0x3db8: "V\x06\u3db8", // 㶸
+ 0x3db9: "V\a\u3db9", // 㶹
+ 0x3dba: "V\a\u3dba", // 㶺
+ 0x3dbb: "V\a\u3dbb", // 㶻
+ 0x3dbc: "V\a\u3dbc", // 㶼
+ 0x3dbd: "V\a\u3dbd", // 㶽
+ 0x3dbe: "V\a\u3dbe", // 㶾
+ 0x3dbf: "V\a\u3dbf", // 㶿
+ 0x3dc0: "V\a\u3dc0", // 㷀
+ 0x3dc1: "V\a\u3dc1", // 㷁
+ 0x3dc2: "V\b\u3dc2", // 㷂
+ 0x3dc3: "V\b\u3dc3", // 㷃
+ 0x3dc4: "V\b\u3dc4", // 㷄
+ 0x3dc5: "V\b\u3dc5", // 㷅
+ 0x3dc6: "V\b\u3dc6", // 㷆
+ 0x3dc7: "V\b\u3dc7", // 㷇
+ 0x3dc8: "V\b\u3dc8", // 㷈
+ 0x3dc9: "V\b\u3dc9", // 㷉
+ 0x3dca: "V\b\u3dca", // 㷊
+ 0x3dcb: "V\b\u3dcb", // 㷋
+ 0x3dcc: "V\b\u3dcc", // 㷌
+ 0x3dcd: "V\b\u3dcd", // 㷍
+ 0x3dce: "V\t\u3dce", // 㷎
+ 0x3dcf: "V\t\u3dcf", // 㷏
+ 0x3dd0: "V\t\u3dd0", // 㷐
+ 0x3dd1: "V\t\u3dd1", // 㷑
+ 0x3dd2: "V\t\u3dd2", // 㷒
+ 0x3dd3: "V\t\u3dd3", // 㷓
+ 0x3dd4: "V\t\u3dd4", // 㷔
+ 0x3dd5: "V\t\u3dd5", // 㷕
+ 0x3dd6: "V\t\u3dd6", // 㷖
+ 0x3dd7: "V\t\u3dd7", // 㷗
+ 0x3dd8: "V\t\u3dd8", // 㷘
+ 0x3dd9: "V\t\u3dd9", // 㷙
+ 0x3dda: "V\t\u3dda", // 㷚
+ 0x3ddb: "V\t\u3ddb", // 㷛
+ 0x3ddc: "V\t\u3ddc", // 㷜
+ 0x3ddd: "V\t\u3ddd", // 㷝
+ 0x3dde: "V\t\u3dde", // 㷞
+ 0x3ddf: "V\n\u3ddf", // 㷟
+ 0x3de0: "V\n\u3de0", // 㷠
+ 0x3de1: "V\n\u3de1", // 㷡
+ 0x3de2: "V\n\u3de2", // 㷢
+ 0x3de3: "V\n\u3de3", // 㷣
+ 0x3de4: "V\n\u3de4", // 㷤
+ 0x3de5: "V\n\u3de5", // 㷥
+ 0x3de6: "V\n\u3de6", // 㷦
+ 0x3de7: "V\n\u3de7", // 㷧
+ 0x3de8: "V\n\u3de8", // 㷨
+ 0x3de9: "V\n\u3de9", // 㷩
+ 0x3dea: "V\n\u3dea", // 㷪
+ 0x3deb: "V\v\u3deb", // 㷫
+ 0x3dec: "V\v\u3dec", // 㷬
+ 0x3ded: "V\v\u3ded", // 㷭
+ 0x3dee: "V\v\u3dee", // 㷮
+ 0x3def: "V\v\u3def", // 㷯
+ 0x3df0: "V\v\u3df0", // 㷰
+ 0x3df1: "V\v\u3df1", // 㷱
+ 0x3df2: "V\v\u3df2", // 㷲
+ 0x3df3: "V\f\u3df3", // 㷳
+ 0x3df4: "V\f\u3df4", // 㷴
+ 0x3df5: "V\f\u3df5", // 㷵
+ 0x3df6: "V\f\u3df6", // 㷶
+ 0x3df7: "V\f\u3df7", // 㷷
+ 0x3df8: "V\f\u3df8", // 㷸
+ 0x3df9: "V\f\u3df9", // 㷹
+ 0x3dfa: "V\f\u3dfa", // 㷺
+ 0x3dfb: "V\f\u3dfb", // 㷻
+ 0x3dfc: "V\f\u3dfc", // 㷼
+ 0x3dfd: "V\f\u3dfd", // 㷽
+ 0x3dfe: "V\r\u3dfe", // 㷾
+ 0x3dff: "V\r\u3dff", // 㷿
+ 0x3e00: "V\r\u3e00", // 㸀
+ 0x3e01: "V\r\u3e01", // 㸁
+ 0x3e02: "V\r\u3e02", // 㸂
+ 0x3e03: "V\r\u3e03", // 㸃
+ 0x3e04: "V\x0e\u3e04", // 㸄
+ 0x3e05: "V\x0e\u3e05", // 㸅
+ 0x3e06: "V\x0f\u3e06", // 㸆
+ 0x3e07: "V\x0f\u3e07", // 㸇
+ 0x3e08: "V\x10\u3e08", // 㸈
+ 0x3e09: "V\x0f\u3e09", // 㸉
+ 0x3e0a: "V\x10\u3e0a", // 㸊
+ 0x3e0b: "V\x10\u3e0b", // 㸋
+ 0x3e0c: "V\x10\u3e0c", // 㸌
+ 0x3e0d: "V\x11\u3e0d", // 㸍
+ 0x3e0e: "V\x12\u3e0e", // 㸎
+ 0x3e0f: "V\x13\u3e0f", // 㸏
+ 0x3e10: "V\x13\u3e10", // 㸐
+ 0x3e11: "V\x16\u3e11", // 㸑
+ 0x3e12: "W\x04\u3e12", // 㸒
+ 0x3e13: "W\x04\u3e13", // 㸓
+ 0x3e14: "W\a\u3e14", // 㸔
+ 0x3e15: "W\n\u3e15", // 㸕
+ 0x3e16: "X\x05\u3e16", // 㸖
+ 0x3e17: "X\x06\u3e17", // 㸗
+ 0x3e18: "X\a\u3e18", // 㸘
+ 0x3e19: "X\t\u3e19", // 㸙
+ 0x3e1a: "Y\x04\u3e1a", // 㸚
+ 0x3e1b: "Z\x05\u3e1b", // 㸛
+ 0x3e1c: "Z\b\u3e1c", // 㸜
+ 0x3e1d: "[\x04\u3e1d", // 㸝
+ 0x3e1e: "[\x04\u3e1e", // 㸞
+ 0x3e1f: "[\x06\u3e1f", // 㸟
+ 0x3e20: "[\x06\u3e20", // 㸠
+ 0x3e21: "[\x06\u3e21", // 㸡
+ 0x3e22: "[\n\u3e22", // 㸢
+ 0x3e23: "[\r\u3e23", // 㸣
+ 0x3e24: "[\x0e\u3e24", // 㸤
+ 0x3e25: "[\x11\u3e25", // 㸥
+ 0x3e26: "\\\x00\u3e26", // 㸦
+ 0x3e27: "\\\x06\u3e27", // 㸧
+ 0x3e28: "]\x02\u3e28", // 㸨
+ 0x3e29: "]\x03\u3e29", // 㸩
+ 0x3e2a: "]\x03\u3e2a", // 㸪
+ 0x3e2b: "]\x04\u3e2b", // 㸫
+ 0x3e2c: "]\x04\u3e2c", // 㸬
+ 0x3e2d: "]\x04\u3e2d", // 㸭
+ 0x3e2e: "]\x04\u3e2e", // 㸮
+ 0x3e2f: "]\x04\u3e2f", // 㸯
+ 0x3e30: "]\x05\u3e30", // 㸰
+ 0x3e31: "]\x05\u3e31", // 㸱
+ 0x3e32: "]\x05\u3e32", // 㸲
+ 0x3e33: "]\x05\u3e33", // 㸳
+ 0x3e34: "]\x05\u3e34", // 㸴
+ 0x3e35: "]\x06\u3e35", // 㸵
+ 0x3e36: "]\x06\u3e36", // 㸶
+ 0x3e37: "]\x06\u3e37", // 㸷
+ 0x3e38: "]\x06\u3e38", // 㸸
+ 0x3e39: "]\a\u3e39", // 㸹
+ 0x3e3a: "]\a\u3e3a", // 㸺
+ 0x3e3b: "]\a\u3e3b", // 㸻
+ 0x3e3c: "]\a\u3e3c", // 㸼
+ 0x3e3d: "]\a\u3e3d", // 㸽
+ 0x3e3e: "]\a\u3e3e", // 㸾
+ 0x3e3f: "]\a\u3e3f", // 㸿
+ 0x3e40: "]\a\u3e40", // 㹀
+ 0x3e41: "]\b\u3e41", // 㹁
+ 0x3e42: "]\b\u3e42", // 㹂
+ 0x3e43: "]\b\u3e43", // 㹃
+ 0x3e44: "]\n\u3e44", // 㹄
+ 0x3e45: "]\t\u3e45", // 㹅
+ 0x3e46: "]\t\u3e46", // 㹆
+ 0x3e47: "]\t\u3e47", // 㹇
+ 0x3e48: "]\t\u3e48", // 㹈
+ 0x3e49: "]\n\u3e49", // 㹉
+ 0x3e4a: "]\n\u3e4a", // 㹊
+ 0x3e4b: "]\n\u3e4b", // 㹋
+ 0x3e4c: "]\v\u3e4c", // 㹌
+ 0x3e4d: "]\v\u3e4d", // 㹍
+ 0x3e4e: "]\v\u3e4e", // 㹎
+ 0x3e4f: "]\v\u3e4f", // 㹏
+ 0x3e50: "]\v\u3e50", // 㹐
+ 0x3e51: "]\f\u3e51", // 㹑
+ 0x3e52: "]\f\u3e52", // 㹒
+ 0x3e53: "]\f\u3e53", // 㹓
+ 0x3e54: "]\r\u3e54", // 㹔
+ 0x3e55: "]\r\u3e55", // 㹕
+ 0x3e56: "]\r\u3e56", // 㹖
+ 0x3e57: "]\x0e\u3e57", // 㹗
+ 0x3e58: "]\x0e\u3e58", // 㹘
+ 0x3e59: "]\x0f\u3e59", // 㹙
+ 0x3e5a: "]\x11\u3e5a", // 㹚
+ 0x3e5b: "]\x12\u3e5b", // 㹛
+ 0x3e5c: "^\x04\u3e5c", // 㹜
+ 0x3e5d: "^\x04\u3e5d", // 㹝
+ 0x3e5e: "^\x04\u3e5e", // 㹞
+ 0x3e5f: "^\x04\u3e5f", // 㹟
+ 0x3e60: "^\x04\u3e60", // 㹠
+ 0x3e61: "^\x05\u3e61", // 㹡
+ 0x3e62: "^\x05\u3e62", // 㹢
+ 0x3e63: "^\x05\u3e63", // 㹣
+ 0x3e64: "^\x05\u3e64", // 㹤
+ 0x3e65: "^\x05\u3e65", // 㹥
+ 0x3e66: "^\x05\u3e66", // 㹦
+ 0x3e67: "^\x05\u3e67", // 㹧
+ 0x3e68: "^\x05\u3e68", // 㹨
+ 0x3e69: "^\x05\u3e69", // 㹩
+ 0x3e6a: "^\x05\u3e6a", // 㹪
+ 0x3e6b: "^\x06\u3e6b", // 㹫
+ 0x3e6c: "^\x06\u3e6c", // 㹬
+ 0x3e6d: "^\x06\u3e6d", // 㹭
+ 0x3e6e: "^\x06\u3e6e", // 㹮
+ 0x3e6f: "^\x06\u3e6f", // 㹯
+ 0x3e70: "^\x06\u3e70", // 㹰
+ 0x3e71: "^\a\u3e71", // 㹱
+ 0x3e72: "^\a\u3e72", // 㹲
+ 0x3e73: "^\a\u3e73", // 㹳
+ 0x3e74: "^\a\u3e74", // 㹴
+ 0x3e75: "^\a\u3e75", // 㹵
+ 0x3e76: "^\a\u3e76", // 㹶
+ 0x3e77: "^\a\u3e77", // 㹷
+ 0x3e78: "^\a\u3e78", // 㹸
+ 0x3e79: "^\b\u3e79", // 㹹
+ 0x3e7a: "^\b\u3e7a", // 㹺
+ 0x3e7b: "^\b\u3e7b", // 㹻
+ 0x3e7c: "^\b\u3e7c", // 㹼
+ 0x3e7d: "^\b\u3e7d", // 㹽
+ 0x3e7e: "^\b\u3e7e", // 㹾
+ 0x3e7f: "^\b\u3e7f", // 㹿
+ 0x3e80: "^\b\u3e80", // 㺀
+ 0x3e81: "^\t\u3e81", // 㺁
+ 0x3e82: "^\t\u3e82", // 㺂
+ 0x3e83: "^\t\u3e83", // 㺃
+ 0x3e84: "^\t\u3e84", // 㺄
+ 0x3e85: "^\t\u3e85", // 㺅
+ 0x3e86: "^\t\u3e86", // 㺆
+ 0x3e87: "^\n\u3e87", // 㺇
+ 0x3e88: "^\n\u3e88", // 㺈
+ 0x3e89: "^\n\u3e89", // 㺉
+ 0x3e8a: "^\n\u3e8a", // 㺊
+ 0x3e8b: "^\n\u3e8b", // 㺋
+ 0x3e8c: "^\n\u3e8c", // 㺌
+ 0x3e8d: "^\n\u3e8d", // 㺍
+ 0x3e8e: "^\v\u3e8e", // 㺎
+ 0x3e8f: "^\v\u3e8f", // 㺏
+ 0x3e90: "^\v\u3e90", // 㺐
+ 0x3e91: "^\v\u3e91", // 㺑
+ 0x3e92: "^\v\u3e92", // 㺒
+ 0x3e93: "^\v\u3e93", // 㺓
+ 0x3e94: "^\f\u3e94", // 㺔
+ 0x3e95: "^\f\u3e95", // 㺕
+ 0x3e96: "^\f\u3e96", // 㺖
+ 0x3e97: "^\f\u3e97", // 㺗
+ 0x3e98: "^\f\u3e98", // 㺘
+ 0x3e99: "^\f\u3e99", // 㺙
+ 0x3e9a: "^\r\u3e9a", // 㺚
+ 0x3e9b: "^\r\u3e9b", // 㺛
+ 0x3e9c: "^\r\u3e9c", // 㺜
+ 0x3e9d: "^\x0e\u3e9d", // 㺝
+ 0x3e9e: "^\x0e\u3e9e", // 㺞
+ 0x3e9f: "^\x0e\u3e9f", // 㺟
+ 0x3ea0: "^\x0f\u3ea0", // 㺠
+ 0x3ea1: "^\x10\u3ea1", // 㺡
+ 0x3ea2: "^\x10\u3ea2", // 㺢
+ 0x3ea3: "^\x11\u3ea3", // 㺣
+ 0x3ea4: "^\x11\u3ea4", // 㺤
+ 0x3ea5: "^\x11\u3ea5", // 㺥
+ 0x3ea6: "^\x11\u3ea6", // 㺦
+ 0x3ea7: "^\x15\u3ea7", // 㺧
+ 0x3ea8: "`\x02\u3ea8", // 㺨
+ 0x3ea9: "`\x02\u3ea9", // 㺩
+ 0x3eaa: "`\x02\u3eaa", // 㺪
+ 0x3eab: "`\x02\u3eab", // 㺫
+ 0x3eac: "`\x03\u3eac", // 㺬
+ 0x3ead: "`\x03\u3ead", // 㺭
+ 0x3eae: "`\x03\u3eae", // 㺮
+ 0x3eaf: "`\x03\u3eaf", // 㺯
+ 0x3eb0: "`\x04\u3eb0", // 㺰
+ 0x3eb1: "`\x04\u3eb1", // 㺱
+ 0x3eb2: "`\x04\u3eb2", // 㺲
+ 0x3eb3: "`\x04\u3eb3", // 㺳
+ 0x3eb4: "`\x04\u3eb4", // 㺴
+ 0x3eb5: "`\x04\u3eb5", // 㺵
+ 0x3eb6: "`\x04\u3eb6", // 㺶
+ 0x3eb7: "`\x05\u3eb7", // 㺷
+ 0x3eb8: "`\x05\u3eb8", // 㺸
+ 0x3eb9: "`\x05\u3eb9", // 㺹
+ 0x3eba: "`\x05\u3eba", // 㺺
+ 0x3ebb: "`\x05\u3ebb", // 㺻
+ 0x3ebc: "`\x05\u3ebc", // 㺼
+ 0x3ebd: "`\x05\u3ebd", // 㺽
+ 0x3ebe: "`\x05\u3ebe", // 㺾
+ 0x3ebf: "`\x06\u3ebf", // 㺿
+ 0x3ec0: "`\x06\u3ec0", // 㻀
+ 0x3ec1: "`\x06\u3ec1", // 㻁
+ 0x3ec2: "`\x06\u3ec2", // 㻂
+ 0x3ec3: "`\x06\u3ec3", // 㻃
+ 0x3ec4: "`\x06\u3ec4", // 㻄
+ 0x3ec5: "`\x06\u3ec5", // 㻅
+ 0x3ec6: "`\x06\u3ec6", // 㻆
+ 0x3ec7: "`\x06\u3ec7", // 㻇
+ 0x3ec8: "`\x06\u3ec8", // 㻈
+ 0x3ec9: "`\a\u3ec9", // 㻉
+ 0x3eca: "`\a\u3eca", // 㻊
+ 0x3ecb: "`\a\u3ecb", // 㻋
+ 0x3ecc: "`\a\u3ecc", // 㻌
+ 0x3ecd: "`\a\u3ecd", // 㻍
+ 0x3ece: "`\a\u3ece", // 㻎
+ 0x3ecf: "`\a\u3ecf", // 㻏
+ 0x3ed0: "`\a\u3ed0", // 㻐
+ 0x3ed1: "`\b\u3ed1", // 㻑
+ 0x3ed2: "`\b\u3ed2", // 㻒
+ 0x3ed3: "`\b\u3ed3", // 㻓
+ 0x3ed4: "`\b\u3ed4", // 㻔
+ 0x3ed5: "`\b\u3ed5", // 㻕
+ 0x3ed6: "`\b\u3ed6", // 㻖
+ 0x3ed7: "`\b\u3ed7", // 㻗
+ 0x3ed8: "`\b\u3ed8", // 㻘
+ 0x3ed9: "`\b\u3ed9", // 㻙
+ 0x3eda: "`\b\u3eda", // 㻚
+ 0x3edb: "`\b\u3edb", // 㻛
+ 0x3edc: "`\b\u3edc", // 㻜
+ 0x3edd: "`\t\u3edd", // 㻝
+ 0x3ede: "`\t\u3ede", // 㻞
+ 0x3edf: "`\t\u3edf", // 㻟
+ 0x3ee0: "`\t\u3ee0", // 㻠
+ 0x3ee1: "`\t\u3ee1", // 㻡
+ 0x3ee2: "`\t\u3ee2", // 㻢
+ 0x3ee3: "`\t\u3ee3", // 㻣
+ 0x3ee4: "`\t\u3ee4", // 㻤
+ 0x3ee5: "`\t\u3ee5", // 㻥
+ 0x3ee6: "`\t\u3ee6", // 㻦
+ 0x3ee7: "`\n\u3ee7", // 㻧
+ 0x3ee8: "`\n\u3ee8", // 㻨
+ 0x3ee9: "`\n\u3ee9", // 㻩
+ 0x3eea: "`\n\u3eea", // 㻪
+ 0x3eeb: "`\v\u3eeb", // 㻫
+ 0x3eec: "`\v\u3eec", // 㻬
+ 0x3eed: "`\v\u3eed", // 㻭
+ 0x3eee: "`\v\u3eee", // 㻮
+ 0x3eef: "`\v\u3eef", // 㻯
+ 0x3ef0: "`\v\u3ef0", // 㻰
+ 0x3ef1: "`\v\u3ef1", // 㻱
+ 0x3ef2: "`\v\u3ef2", // 㻲
+ 0x3ef3: "`\v\u3ef3", // 㻳
+ 0x3ef4: "`\v\u3ef4", // 㻴
+ 0x3ef5: "`\f\u3ef5", // 㻵
+ 0x3ef6: "`\f\u3ef6", // 㻶
+ 0x3ef7: "`\f\u3ef7", // 㻷
+ 0x3ef8: "`\f\u3ef8", // 㻸
+ 0x3ef9: "`\f\u3ef9", // 㻹
+ 0x3efa: "`\f\u3efa", // 㻺
+ 0x3efb: "`\f\u3efb", // 㻻
+ 0x3efc: "`\f\u3efc", // 㻼
+ 0x3efd: "`\r\u3efd", // 㻽
+ 0x3efe: "`\r\u3efe", // 㻾
+ 0x3eff: "`\r\u3eff", // 㻿
+ 0x3f00: "`\r\u3f00", // 㼀
+ 0x3f01: "`\r\u3f01", // 㼁
+ 0x3f02: "`\r\u3f02", // 㼂
+ 0x3f03: "`\x0f\u3f03", // 㼃
+ 0x3f04: "`\x0f\u3f04", // 㼄
+ 0x3f05: "`\x0f\u3f05", // 㼅
+ 0x3f06: "`\x0f\u3f06", // 㼆
+ 0x3f07: "`\x10\u3f07", // 㼇
+ 0x3f08: "`\x13\u3f08", // 㼈
+ 0x3f09: "a\x04\u3f09", // 㼉
+ 0x3f0a: "a\x04\u3f0a", // 㼊
+ 0x3f0b: "a\x05\u3f0b", // 㼋
+ 0x3f0c: "a\x05\u3f0c", // 㼌
+ 0x3f0d: "a\x06\u3f0d", // 㼍
+ 0x3f0e: "a\x06\u3f0e", // 㼎
+ 0x3f0f: "a\a\u3f0f", // 㼏
+ 0x3f10: "a\t\u3f10", // 㼐
+ 0x3f11: "a\t\u3f11", // 㼑
+ 0x3f12: "a\t\u3f12", // 㼒
+ 0x3f13: "a\n\u3f13", // 㼓
+ 0x3f14: "a\n\u3f14", // 㼔
+ 0x3f15: "a\r\u3f15", // 㼕
+ 0x3f16: "a\x15\u3f16", // 㼖
+ 0x3f17: "b\x02\u3f17", // 㼗
+ 0x3f18: "b\x03\u3f18", // 㼘
+ 0x3f19: "b\x03\u3f19", // 㼙
+ 0x3f1a: "b\x04\u3f1a", // 㼚
+ 0x3f1b: "b\x04\u3f1b", // 㼛
+ 0x3f1c: "b\x05\u3f1c", // 㼜
+ 0x3f1d: "b\x05\u3f1d", // 㼝
+ 0x3f1e: "b\x05\u3f1e", // 㼞
+ 0x3f1f: "b\x05\u3f1f", // 㼟
+ 0x3f20: "b\x05\u3f20", // 㼠
+ 0x3f21: "b\x06\u3f21", // 㼡
+ 0x3f22: "b\x06\u3f22", // 㼢
+ 0x3f23: "b\x06\u3f23", // 㼣
+ 0x3f24: "b\x06\u3f24", // 㼤
+ 0x3f25: "b\x06\u3f25", // 㼥
+ 0x3f26: "b\x06\u3f26", // 㼦
+ 0x3f27: "b\a\u3f27", // 㼧
+ 0x3f28: "b\a\u3f28", // 㼨
+ 0x3f29: "b\a\u3f29", // 㼩
+ 0x3f2a: "b\a\u3f2a", // 㼪
+ 0x3f2b: "b\b\u3f2b", // 㼫
+ 0x3f2c: "b\b\u3f2c", // 㼬
+ 0x3f2d: "b\b\u3f2d", // 㼭
+ 0x3f2e: "b\b\u3f2e", // 㼮
+ 0x3f2f: "b\b\u3f2f", // 㼯
+ 0x3f30: "b\b\u3f30", // 㼰
+ 0x3f31: "b\b\u3f31", // 㼱
+ 0x3f32: "b\t\u3f32", // 㼲
+ 0x3f33: "b\t\u3f33", // 㼳
+ 0x3f34: "b\t\u3f34", // 㼴
+ 0x3f35: "b\t\u3f35", // 㼵
+ 0x3f36: "b\t\u3f36", // 㼶
+ 0x3f37: "b\t\u3f37", // 㼷
+ 0x3f38: "b\n\u3f38", // 㼸
+ 0x3f39: "b\n\u3f39", // 㼹
+ 0x3f3a: "b\n\u3f3a", // 㼺
+ 0x3f3b: "b\v\u3f3b", // 㼻
+ 0x3f3c: "b\v\u3f3c", // 㼼
+ 0x3f3d: "b\v\u3f3d", // 㼽
+ 0x3f3e: "b\v\u3f3e", // 㼾
+ 0x3f3f: "b\f\u3f3f", // 㼿
+ 0x3f40: "b\f\u3f40", // 㽀
+ 0x3f41: "b\f\u3f41", // 㽁
+ 0x3f42: "b\f\u3f42", // 㽂
+ 0x3f43: "b\f\u3f43", // 㽃
+ 0x3f44: "b\f\u3f44", // 㽄
+ 0x3f45: "b\f\u3f45", // 㽅
+ 0x3f46: "b\r\u3f46", // 㽆
+ 0x3f47: "b\r\u3f47", // 㽇
+ 0x3f48: "b\x0e\u3f48", // 㽈
+ 0x3f49: "b\x0e\u3f49", // 㽉
+ 0x3f4a: "b\x11\u3f4a", // 㽊
+ 0x3f4b: "b\x13\u3f4b", // 㽋
+ 0x3f4c: "b\x14\u3f4c", // 㽌
+ 0x3f4d: "c\x05\u3f4d", // 㽍
+ 0x3f4e: "c\b\u3f4e", // 㽎
+ 0x3f4f: "c\t\u3f4f", // 㽏
+ 0x3f50: "c\n\u3f50", // 㽐
+ 0x3f51: "c\f\u3f51", // 㽑
+ 0x3f52: "d\a\u3f52", // 㽒
+ 0x3f53: "d\n\u3f53", // 㽓
+ 0x3f54: "d\v\u3f54", // 㽔
+ 0x3f55: "f\x02\u3f55", // 㽕
+ 0x3f56: "f\x02\u3f56", // 㽖
+ 0x3f57: "f\x02\u3f57", // 㽗
+ 0x3f58: "f\x04\u3f58", // 㽘
+ 0x3f59: "f\x04\u3f59", // 㽙
+ 0x3f5a: "f\x04\u3f5a", // 㽚
+ 0x3f5b: "f\x05\u3f5b", // 㽛
+ 0x3f5c: "f\x05\u3f5c", // 㽜
+ 0x3f5d: "f\x06\u3f5d", // 㽝
+ 0x3f5e: "f\x06\u3f5e", // 㽞
+ 0x3f5f: "f\a\u3f5f", // 㽟
+ 0x3f60: "f\a\u3f60", // 㽠
+ 0x3f61: "f\b\u3f61", // 㽡
+ 0x3f62: "f\b\u3f62", // 㽢
+ 0x3f63: "f\b\u3f63", // 㽣
+ 0x3f64: "f\b\u3f64", // 㽤
+ 0x3f65: "f\t\u3f65", // 㽥
+ 0x3f66: "f\n\u3f66", // 㽦
+ 0x3f67: "f\n\u3f67", // 㽧
+ 0x3f68: "f\n\u3f68", // 㽨
+ 0x3f69: "f\v\u3f69", // 㽩
+ 0x3f6a: "f\f\u3f6a", // 㽪
+ 0x3f6b: "f\r\u3f6b", // 㽫
+ 0x3f6c: "f\r\u3f6c", // 㽬
+ 0x3f6d: "f\x0e\u3f6d", // 㽭
+ 0x3f6e: "f\x0f\u3f6e", // 㽮
+ 0x3f6f: "f\x12\u3f6f", // 㽯
+ 0x3f70: "g\b\u3f70", // 㽰
+ 0x3f71: "h\x02\u3f71", // 㽱
+ 0x3f72: "h\x02\u3f72", // 㽲
+ 0x3f73: "h\x03\u3f73", // 㽳
+ 0x3f74: "h\x03\u3f74", // 㽴
+ 0x3f75: "h\x03\u3f75", // 㽵
+ 0x3f76: "h\x03\u3f76", // 㽶
+ 0x3f77: "h\x04\u3f77", // 㽷
+ 0x3f78: "h\x04\u3f78", // 㽸
+ 0x3f79: "h\x04\u3f79", // 㽹
+ 0x3f7a: "h\x04\u3f7a", // 㽺
+ 0x3f7b: "h\x04\u3f7b", // 㽻
+ 0x3f7c: "h\x04\u3f7c", // 㽼
+ 0x3f7d: "h\x05\u3f7d", // 㽽
+ 0x3f7e: "h\x05\u3f7e", // 㽾
+ 0x3f7f: "h\x05\u3f7f", // 㽿
+ 0x3f80: "h\x05\u3f80", // 㾀
+ 0x3f81: "h\x05\u3f81", // 㾁
+ 0x3f82: "h\x05\u3f82", // 㾂
+ 0x3f83: "h\x05\u3f83", // 㾃
+ 0x3f84: "h\x05\u3f84", // 㾄
+ 0x3f85: "h\x05\u3f85", // 㾅
+ 0x3f86: "h\x05\u3f86", // 㾆
+ 0x3f87: "h\x05\u3f87", // 㾇
+ 0x3f88: "h\x05\u3f88", // 㾈
+ 0x3f89: "h\x05\u3f89", // 㾉
+ 0x3f8a: "h\x06\u3f8a", // 㾊
+ 0x3f8b: "h\x06\u3f8b", // 㾋
+ 0x3f8c: "h\x06\u3f8c", // 㾌
+ 0x3f8d: "h\x06\u3f8d", // 㾍
+ 0x3f8e: "h\x06\u3f8e", // 㾎
+ 0x3f8f: "h\x06\u3f8f", // 㾏
+ 0x3f90: "h\x06\u3f90", // 㾐
+ 0x3f91: "h\x06\u3f91", // 㾑
+ 0x3f92: "h\x06\u3f92", // 㾒
+ 0x3f93: "h\a\u3f93", // 㾓
+ 0x3f94: "h\a\u3f94", // 㾔
+ 0x3f95: "h\a\u3f95", // 㾕
+ 0x3f96: "h\a\u3f96", // 㾖
+ 0x3f97: "h\a\u3f97", // 㾗
+ 0x3f98: "h\a\u3f98", // 㾘
+ 0x3f99: "h\a\u3f99", // 㾙
+ 0x3f9a: "h\a\u3f9a", // 㾚
+ 0x3f9b: "h\a\u3f9b", // 㾛
+ 0x3f9c: "h\a\u3f9c", // 㾜
+ 0x3f9d: "h\a\u3f9d", // 㾝
+ 0x3f9e: "h\a\u3f9e", // 㾞
+ 0x3f9f: "h\a\u3f9f", // 㾟
+ 0x3fa0: "h\a\u3fa0", // 㾠
+ 0x3fa1: "h\a\u3fa1", // 㾡
+ 0x3fa2: "h\b\u3fa2", // 㾢
+ 0x3fa3: "h\b\u3fa3", // 㾣
+ 0x3fa4: "h\b\u3fa4", // 㾤
+ 0x3fa5: "h\b\u3fa5", // 㾥
+ 0x3fa6: "h\b\u3fa6", // 㾦
+ 0x3fa7: "h\b\u3fa7", // 㾧
+ 0x3fa8: "h\b\u3fa8", // 㾨
+ 0x3fa9: "h\b\u3fa9", // 㾩
+ 0x3faa: "h\t\u3faa", // 㾪
+ 0x3fab: "h\t\u3fab", // 㾫
+ 0x3fac: "h\t\u3fac", // 㾬
+ 0x3fad: "h\t\u3fad", // 㾭
+ 0x3fae: "h\t\u3fae", // 㾮
+ 0x3faf: "h\t\u3faf", // 㾯
+ 0x3fb0: "h\t\u3fb0", // 㾰
+ 0x3fb1: "h\t\u3fb1", // 㾱
+ 0x3fb2: "h\t\u3fb2", // 㾲
+ 0x3fb3: "h\t\u3fb3", // 㾳
+ 0x3fb4: "h\t\u3fb4", // 㾴
+ 0x3fb5: "h\t\u3fb5", // 㾵
+ 0x3fb6: "h\n\u3fb6", // 㾶
+ 0x3fb7: "h\n\u3fb7", // 㾷
+ 0x3fb8: "h\n\u3fb8", // 㾸
+ 0x3fb9: "h\n\u3fb9", // 㾹
+ 0x3fba: "h\n\u3fba", // 㾺
+ 0x3fbb: "h\n\u3fbb", // 㾻
+ 0x3fbc: "h\n\u3fbc", // 㾼
+ 0x3fbd: "h\n\u3fbd", // 㾽
+ 0x3fbe: "h\n\u3fbe", // 㾾
+ 0x3fbf: "h\n\u3fbf", // 㾿
+ 0x3fc0: "h\n\u3fc0", // 㿀
+ 0x3fc1: "h\n\u3fc1", // 㿁
+ 0x3fc2: "h\v\u3fc2", // 㿂
+ 0x3fc3: "h\v\u3fc3", // 㿃
+ 0x3fc4: "h\v\u3fc4", // 㿄
+ 0x3fc5: "h\v\u3fc5", // 㿅
+ 0x3fc6: "h\v\u3fc6", // 㿆
+ 0x3fc7: "h\v\u3fc7", // 㿇
+ 0x3fc8: "h\v\u3fc8", // 㿈
+ 0x3fc9: "h\f\u3fc9", // 㿉
+ 0x3fca: "h\f\u3fca", // 㿊
+ 0x3fcb: "h\r\u3fcb", // 㿋
+ 0x3fcc: "h\r\u3fcc", // 㿌
+ 0x3fcd: "h\r\u3fcd", // 㿍
+ 0x3fce: "h\r\u3fce", // 㿎
+ 0x3fcf: "h\r\u3fcf", // 㿏
+ 0x3fd0: "h\r\u3fd0", // 㿐
+ 0x3fd1: "h\x0e\u3fd1", // 㿑
+ 0x3fd2: "h\x0e\u3fd2", // 㿒
+ 0x3fd3: "h\x0e\u3fd3", // 㿓
+ 0x3fd4: "h\x0f\u3fd4", // 㿔
+ 0x3fd5: "h\x10\u3fd5", // 㿕
+ 0x3fd6: "h\x10\u3fd6", // 㿖
+ 0x3fd7: "h\x10\u3fd7", // 㿗
+ 0x3fd8: "h\x11\u3fd8", // 㿘
+ 0x3fd9: "h\x12\u3fd9", // 㿙
+ 0x3fda: "h\x13\u3fda", // 㿚
+ 0x3fdb: "h\x13\u3fdb", // 㿛
+ 0x3fdc: "h\x17\u3fdc", // 㿜
+ 0x3fdd: "j\x02\u3fdd", // 㿝
+ 0x3fde: "j\x04\u3fde", // 㿞
+ 0x3fdf: "j\x05\u3fdf", // 㿟
+ 0x3fe0: "j\x06\u3fe0", // 㿠
+ 0x3fe1: "j\x06\u3fe1", // 㿡
+ 0x3fe2: "j\b\u3fe2", // 㿢
+ 0x3fe3: "j\t\u3fe3", // 㿣
+ 0x3fe4: "j\t\u3fe4", // 㿤
+ 0x3fe5: "j\n\u3fe5", // 㿥
+ 0x3fe6: "j\v\u3fe6", // 㿦
+ 0x3fe7: "j\x0e\u3fe7", // 㿧
+ 0x3fe8: "j\x10\u3fe8", // 㿨
+ 0x3fe9: "j\x14\u3fe9", // 㿩
+ 0x3fea: "k\x03\u3fea", // 㿪
+ 0x3feb: "k\x04\u3feb", // 㿫
+ 0x3fec: "k\x04\u3fec", // 㿬
+ 0x3fed: "k\x05\u3fed", // 㿭
+ 0x3fee: "k\x05\u3fee", // 㿮
+ 0x3fef: "k\x06\u3fef", // 㿯
+ 0x3ff0: "k\x06\u3ff0", // 㿰
+ 0x3ff1: "k\a\u3ff1", // 㿱
+ 0x3ff2: "k\b\u3ff2", // 㿲
+ 0x3ff3: "k\b\u3ff3", // 㿳
+ 0x3ff4: "k\t\u3ff4", // 㿴
+ 0x3ff5: "k\t\u3ff5", // 㿵
+ 0x3ff6: "k\n\u3ff6", // 㿶
+ 0x3ff7: "k\n\u3ff7", // 㿷
+ 0x3ff8: "k\v\u3ff8", // 㿸
+ 0x3ff9: "k\r\u3ff9", // 㿹
+ 0x3ffa: "k\x0f\u3ffa", // 㿺
+ 0x3ffb: "l\x03\u3ffb", // 㿻
+ 0x3ffc: "l\x04\u3ffc", // 㿼
+ 0x3ffd: "l\x04\u3ffd", // 㿽
+ 0x3ffe: "l\x05\u3ffe", // 㿾
+ 0x3fff: "l\x05\u3fff", // 㿿
+ 0x4000: "l\x05\u4000", // 䀀
+ 0x4001: "l\x06\u4001", // 䀁
+ 0x4002: "l\x06\u4002", // 䀂
+ 0x4003: "l\a\u4003", // 䀃
+ 0x4004: "l\b\u4004", // 䀄
+ 0x4005: "l\b\u4005", // 䀅
+ 0x4006: "l\t\u4006", // 䀆
+ 0x4007: "l\v\u4007", // 䀇
+ 0x4008: "l\v\u4008", // 䀈
+ 0x4009: "l\f\u4009", // 䀉
+ 0x400a: "l\x0e\u400a", // 䀊
+ 0x400b: "l\x10\u400b", // 䀋
+ 0x400c: "l\x11\u400c", // 䀌
+ 0x400d: "l\x18\u400d", // 䀍
+ 0x400e: "m\x02\u400e", // 䀎
+ 0x400f: "m\x02\u400f", // 䀏
+ 0x4010: "m\x03\u4010", // 䀐
+ 0x4011: "m\x03\u4011", // 䀑
+ 0x4012: "m\x03\u4012", // 䀒
+ 0x4013: "m\x03\u4013", // 䀓
+ 0x4014: "m\x03\u4014", // 䀔
+ 0x4015: "m\x04\u4015", // 䀕
+ 0x4016: "m\x04\u4016", // 䀖
+ 0x4017: "m\x04\u4017", // 䀗
+ 0x4018: "m\x04\u4018", // 䀘
+ 0x4019: "m\x04\u4019", // 䀙
+ 0x401a: "m\x04\u401a", // 䀚
+ 0x401b: "m\x04\u401b", // 䀛
+ 0x401c: "m\x04\u401c", // 䀜
+ 0x401d: "m\x04\u401d", // 䀝
+ 0x401e: "m\x04\u401e", // 䀞
+ 0x401f: "m\x05\u401f", // 䀟
+ 0x4020: "m\x05\u4020", // 䀠
+ 0x4021: "m\x05\u4021", // 䀡
+ 0x4022: "m\x05\u4022", // 䀢
+ 0x4023: "m\x05\u4023", // 䀣
+ 0x4024: "m\x05\u4024", // 䀤
+ 0x4025: "m\x05\u4025", // 䀥
+ 0x4026: "m\x05\u4026", // 䀦
+ 0x4027: "m\x06\u4027", // 䀧
+ 0x4028: "m\x06\u4028", // 䀨
+ 0x4029: "m\x06\u4029", // 䀩
+ 0x402a: "m\x06\u402a", // 䀪
+ 0x402b: "m\x06\u402b", // 䀫
+ 0x402c: "m\x06\u402c", // 䀬
+ 0x402d: "m\x06\u402d", // 䀭
+ 0x402e: "m\x06\u402e", // 䀮
+ 0x402f: "m\a\u402f", // 䀯
+ 0x4030: "m\a\u4030", // 䀰
+ 0x4031: "m\a\u4031", // 䀱
+ 0x4032: "m\a\u4032", // 䀲
+ 0x4033: "m\a\u4033", // 䀳
+ 0x4034: "m\a\u4034", // 䀴
+ 0x4035: "m\a\u4035", // 䀵
+ 0x4036: "m\a\u4036", // 䀶
+ 0x4037: "m\a\u4037", // 䀷
+ 0x4038: "m\a\u4038", // 䀸
+ 0x4039: "m\a\u4039", // 䀹
+ 0x403a: "m\a\u403a", // 䀺
+ 0x403b: "m\a\u403b", // 䀻
+ 0x403c: "m\a\u403c", // 䀼
+ 0x403d: "m\a\u403d", // 䀽
+ 0x403e: "m\a\u403e", // 䀾
+ 0x403f: "m\a\u403f", // 䀿
+ 0x4040: "m\a\u4040", // 䁀
+ 0x4041: "m\b\u4041", // 䁁
+ 0x4042: "m\b\u4042", // 䁂
+ 0x4043: "m\b\u4043", // 䁃
+ 0x4044: "m\b\u4044", // 䁄
+ 0x4045: "m\b\u4045", // 䁅
+ 0x4046: "m\b\u4046", // 䁆
+ 0x4047: "m\b\u4047", // 䁇
+ 0x4048: "m\b\u4048", // 䁈
+ 0x4049: "m\b\u4049", // 䁉
+ 0x404a: "m\t\u404a", // 䁊
+ 0x404b: "m\t\u404b", // 䁋
+ 0x404c: "m\t\u404c", // 䁌
+ 0x404d: "m\t\u404d", // 䁍
+ 0x404e: "m\t\u404e", // 䁎
+ 0x404f: "m\t\u404f", // 䁏
+ 0x4050: "m\t\u4050", // 䁐
+ 0x4051: "m\t\u4051", // 䁑
+ 0x4052: "m\t\u4052", // 䁒
+ 0x4053: "m\t\u4053", // 䁓
+ 0x4054: "m\t\u4054", // 䁔
+ 0x4055: "m\t\u4055", // 䁕
+ 0x4056: "m\t\u4056", // 䁖
+ 0x4057: "m\n\u4057", // 䁗
+ 0x4058: "m\n\u4058", // 䁘
+ 0x4059: "m\n\u4059", // 䁙
+ 0x405a: "m\n\u405a", // 䁚
+ 0x405b: "m\n\u405b", // 䁛
+ 0x405c: "m\n\u405c", // 䁜
+ 0x405d: "m\n\u405d", // 䁝
+ 0x405e: "m\n\u405e", // 䁞
+ 0x405f: "m\n\u405f", // 䁟
+ 0x4060: "m\n\u4060", // 䁠
+ 0x4061: "m\n\u4061", // 䁡
+ 0x4062: "m\v\u4062", // 䁢
+ 0x4063: "m\v\u4063", // 䁣
+ 0x4064: "m\v\u4064", // 䁤
+ 0x4065: "m\v\u4065", // 䁥
+ 0x4066: "m\v\u4066", // 䁦
+ 0x4067: "m\v\u4067", // 䁧
+ 0x4068: "m\v\u4068", // 䁨
+ 0x4069: "m\v\u4069", // 䁩
+ 0x406a: "m\v\u406a", // 䁪
+ 0x406b: "m\f\u406b", // 䁫
+ 0x406c: "m\f\u406c", // 䁬
+ 0x406d: "m\f\u406d", // 䁭
+ 0x406e: "m\f\u406e", // 䁮
+ 0x406f: "m\f\u406f", // 䁯
+ 0x4070: "m\f\u4070", // 䁰
+ 0x4071: "m\f\u4071", // 䁱
+ 0x4072: "m\f\u4072", // 䁲
+ 0x4073: "m\f\u4073", // 䁳
+ 0x4074: "m\r\u4074", // 䁴
+ 0x4075: "m\r\u4075", // 䁵
+ 0x4076: "m\r\u4076", // 䁶
+ 0x4077: "m\r\u4077", // 䁷
+ 0x4078: "m\r\u4078", // 䁸
+ 0x4079: "m\r\u4079", // 䁹
+ 0x407a: "m\r\u407a", // 䁺
+ 0x407b: "m\x0f\u407b", // 䁻
+ 0x407c: "m\x0f\u407c", // 䁼
+ 0x407d: "m\x0f\u407d", // 䁽
+ 0x407e: "m\x0f\u407e", // 䁾
+ 0x407f: "m\x10\u407f", // 䁿
+ 0x4080: "m\x10\u4080", // 䂀
+ 0x4081: "m\x11\u4081", // 䂁
+ 0x4082: "m\x12\u4082", // 䂂
+ 0x4083: "m\x12\u4083", // 䂃
+ 0x4084: "m\x14\u4084", // 䂄
+ 0x4085: "m\x19\u4085", // 䂅
+ 0x4086: "n\x03\u4086", // 䂆
+ 0x4087: "n\x04\u4087", // 䂇
+ 0x4088: "n\x06\u4088", // 䂈
+ 0x4089: "n\t\u4089", // 䂉
+ 0x408a: "n\f\u408a", // 䂊
+ 0x408b: "n\f\u408b", // 䂋
+ 0x408c: "n\f\u408c", // 䂌
+ 0x408d: "n\x0f\u408d", // 䂍
+ 0x408e: "n\x13\u408e", // 䂎
+ 0x408f: "o\x05\u408f", // 䂏
+ 0x4090: "o\x05\u4090", // 䂐
+ 0x4091: "o\x06\u4091", // 䂑
+ 0x4092: "o\x06\u4092", // 䂒
+ 0x4093: "o\a\u4093", // 䂓
+ 0x4094: "o\b\u4094", // 䂔
+ 0x4095: "o\t\u4095", // 䂕
+ 0x4096: "p\x01\u4096", // 䂖
+ 0x4097: "p\x02\u4097", // 䂗
+ 0x4098: "p\x03\u4098", // 䂘
+ 0x4099: "p\x03\u4099", // 䂙
+ 0x409a: "p\x04\u409a", // 䂚
+ 0x409b: "p\x04\u409b", // 䂛
+ 0x409c: "p\x04\u409c", // 䂜
+ 0x409d: "p\x04\u409d", // 䂝
+ 0x409e: "p\x04\u409e", // 䂞
+ 0x409f: "p\x05\u409f", // 䂟
+ 0x40a0: "p\x05\u40a0", // 䂠
+ 0x40a1: "p\x05\u40a1", // 䂡
+ 0x40a2: "p\x05\u40a2", // 䂢
+ 0x40a3: "p\x05\u40a3", // 䂣
+ 0x40a4: "p\x05\u40a4", // 䂤
+ 0x40a5: "p\x05\u40a5", // 䂥
+ 0x40a6: "p\x05\u40a6", // 䂦
+ 0x40a7: "p\x05\u40a7", // 䂧
+ 0x40a8: "p\x05\u40a8", // 䂨
+ 0x40a9: "p\x06\u40a9", // 䂩
+ 0x40aa: "p\x06\u40aa", // 䂪
+ 0x40ab: "p\x06\u40ab", // 䂫
+ 0x40ac: "p\x06\u40ac", // 䂬
+ 0x40ad: "p\x06\u40ad", // 䂭
+ 0x40ae: "p\x06\u40ae", // 䂮
+ 0x40af: "p\x06\u40af", // 䂯
+ 0x40b0: "p\a\u40b0", // 䂰
+ 0x40b1: "p\a\u40b1", // 䂱
+ 0x40b2: "p\a\u40b2", // 䂲
+ 0x40b3: "p\a\u40b3", // 䂳
+ 0x40b4: "p\a\u40b4", // 䂴
+ 0x40b5: "p\a\u40b5", // 䂵
+ 0x40b6: "p\a\u40b6", // 䂶
+ 0x40b7: "p\b\u40b7", // 䂷
+ 0x40b8: "p\b\u40b8", // 䂸
+ 0x40b9: "p\b\u40b9", // 䂹
+ 0x40ba: "p\b\u40ba", // 䂺
+ 0x40bb: "p\b\u40bb", // 䂻
+ 0x40bc: "p\b\u40bc", // 䂼
+ 0x40bd: "p\b\u40bd", // 䂽
+ 0x40be: "p\b\u40be", // 䂾
+ 0x40bf: "p\b\u40bf", // 䂿
+ 0x40c0: "p\b\u40c0", // 䃀
+ 0x40c1: "p\b\u40c1", // 䃁
+ 0x40c2: "p\b\u40c2", // 䃂
+ 0x40c3: "p\b\u40c3", // 䃃
+ 0x40c4: "p\b\u40c4", // 䃄
+ 0x40c5: "p\b\u40c5", // 䃅
+ 0x40c6: "p\b\u40c6", // 䃆
+ 0x40c7: "p\b\u40c7", // 䃇
+ 0x40c8: "p\t\u40c8", // 䃈
+ 0x40c9: "p\t\u40c9", // 䃉
+ 0x40ca: "p\t\u40ca", // 䃊
+ 0x40cb: "p\t\u40cb", // 䃋
+ 0x40cc: "p\t\u40cc", // 䃌
+ 0x40cd: "p\t\u40cd", // 䃍
+ 0x40ce: "p\t\u40ce", // 䃎
+ 0x40cf: "p\t\u40cf", // 䃏
+ 0x40d0: "p\t\u40d0", // 䃐
+ 0x40d1: "p\n\u40d1", // 䃑
+ 0x40d2: "p\n\u40d2", // 䃒
+ 0x40d3: "p\n\u40d3", // 䃓
+ 0x40d4: "p\n\u40d4", // 䃔
+ 0x40d5: "p\n\u40d5", // 䃕
+ 0x40d6: "p\n\u40d6", // 䃖
+ 0x40d7: "p\n\u40d7", // 䃗
+ 0x40d8: "p\v\u40d8", // 䃘
+ 0x40d9: "p\v\u40d9", // 䃙
+ 0x40da: "p\v\u40da", // 䃚
+ 0x40db: "p\v\u40db", // 䃛
+ 0x40dc: "p\v\u40dc", // 䃜
+ 0x40dd: "p\v\u40dd", // 䃝
+ 0x40de: "p\v\u40de", // 䃞
+ 0x40df: "p\f\u40df", // 䃟
+ 0x40e0: "p\v\u40e0", // 䃠
+ 0x40e1: "p\f\u40e1", // 䃡
+ 0x40e2: "p\f\u40e2", // 䃢
+ 0x40e3: "p\f\u40e3", // 䃣
+ 0x40e4: "p\f\u40e4", // 䃤
+ 0x40e5: "p\f\u40e5", // 䃥
+ 0x40e6: "p\f\u40e6", // 䃦
+ 0x40e7: "p\f\u40e7", // 䃧
+ 0x40e8: "p\f\u40e8", // 䃨
+ 0x40e9: "p\r\u40e9", // 䃩
+ 0x40ea: "p\r\u40ea", // 䃪
+ 0x40eb: "p\r\u40eb", // 䃫
+ 0x40ec: "p\r\u40ec", // 䃬
+ 0x40ed: "p\r\u40ed", // 䃭
+ 0x40ee: "p\r\u40ee", // 䃮
+ 0x40ef: "p\r\u40ef", // 䃯
+ 0x40f0: "p\x0e\u40f0", // 䃰
+ 0x40f1: "p\x0f\u40f1", // 䃱
+ 0x40f2: "p\x0f\u40f2", // 䃲
+ 0x40f3: "p\x0f\u40f3", // 䃳
+ 0x40f4: "p\x10\u40f4", // 䃴
+ 0x40f5: "p\x10\u40f5", // 䃵
+ 0x40f6: "p\x10\u40f6", // 䃶
+ 0x40f7: "p\x10\u40f7", // 䃷
+ 0x40f8: "p\x11\u40f8", // 䃸
+ 0x40f9: "p\x11\u40f9", // 䃹
+ 0x40fa: "p\x13\u40fa", // 䃺
+ 0x40fb: "p\x15\u40fb", // 䃻
+ 0x40fc: "q\x02\u40fc", // 䃼
+ 0x40fd: "q\x04\u40fd", // 䃽
+ 0x40fe: "q\x04\u40fe", // 䃾
+ 0x40ff: "q\x04\u40ff", // 䃿
+ 0x4100: "q\x04\u4100", // 䄀
+ 0x4101: "q\x05\u4101", // 䄁
+ 0x4102: "q\x05\u4102", // 䄂
+ 0x4103: "q\x05\u4103", // 䄃
+ 0x4104: "q\x06\u4104", // 䄄
+ 0x4105: "q\x06\u4105", // 䄅
+ 0x4106: "q\x06\u4106", // 䄆
+ 0x4107: "q\a\u4107", // 䄇
+ 0x4108: "q\a\u4108", // 䄈
+ 0x4109: "q\a\u4109", // 䄉
+ 0x410a: "q\a\u410a", // 䄊
+ 0x410b: "q\b\u410b", // 䄋
+ 0x410c: "q\b\u410c", // 䄌
+ 0x410d: "q\b\u410d", // 䄍
+ 0x410e: "q\b\u410e", // 䄎
+ 0x410f: "q\b\u410f", // 䄏
+ 0x4110: "q\b\u4110", // 䄐
+ 0x4111: "q\b\u4111", // 䄑
+ 0x4112: "q\b\u4112", // 䄒
+ 0x4113: "q\t\u4113", // 䄓
+ 0x4114: "q\t\u4114", // 䄔
+ 0x4115: "q\t\u4115", // 䄕
+ 0x4116: "q\t\u4116", // 䄖
+ 0x4117: "q\t\u4117", // 䄗
+ 0x4118: "q\n\u4118", // 䄘
+ 0x4119: "q\n\u4119", // 䄙
+ 0x411a: "q\v\u411a", // 䄚
+ 0x411b: "q\v\u411b", // 䄛
+ 0x411c: "q\v\u411c", // 䄜
+ 0x411d: "q\v\u411d", // 䄝
+ 0x411e: "q\v\u411e", // 䄞
+ 0x411f: "q\f\u411f", // 䄟
+ 0x4120: "q\r\u4120", // 䄠
+ 0x4121: "q\r\u4121", // 䄡
+ 0x4122: "q\x0e\u4122", // 䄢
+ 0x4123: "q\x0f\u4123", // 䄣
+ 0x4124: "q\x10\u4124", // 䄤
+ 0x4125: "q\x18\u4125", // 䄥
+ 0x4126: "s\x02\u4126", // 䄦
+ 0x4127: "s\x02\u4127", // 䄧
+ 0x4128: "s\x03\u4128", // 䄨
+ 0x4129: "s\x03\u4129", // 䄩
+ 0x412a: "s\x03\u412a", // 䄪
+ 0x412b: "s\x03\u412b", // 䄫
+ 0x412c: "s\x03\u412c", // 䄬
+ 0x412d: "s\x03\u412d", // 䄭
+ 0x412e: "s\x04\u412e", // 䄮
+ 0x412f: "s\x04\u412f", // 䄯
+ 0x4130: "s\x04\u4130", // 䄰
+ 0x4131: "s\x04\u4131", // 䄱
+ 0x4132: "s\x04\u4132", // 䄲
+ 0x4133: "s\x04\u4133", // 䄳
+ 0x4134: "s\x04\u4134", // 䄴
+ 0x4135: "s\x04\u4135", // 䄵
+ 0x4136: "s\x05\u4136", // 䄶
+ 0x4137: "s\x05\u4137", // 䄷
+ 0x4138: "s\x05\u4138", // 䄸
+ 0x4139: "s\x05\u4139", // 䄹
+ 0x413a: "s\x06\u413a", // 䄺
+ 0x413b: "s\x06\u413b", // 䄻
+ 0x413c: "s\x06\u413c", // 䄼
+ 0x413d: "s\x06\u413d", // 䄽
+ 0x413e: "s\x06\u413e", // 䄾
+ 0x413f: "s\x06\u413f", // 䄿
+ 0x4140: "s\x06\u4140", // 䅀
+ 0x4141: "s\x06\u4141", // 䅁
+ 0x4142: "s\x06\u4142", // 䅂
+ 0x4143: "s\x06\u4143", // 䅃
+ 0x4144: "s\x06\u4144", // 䅄
+ 0x4145: "s\x06\u4145", // 䅅
+ 0x4146: "s\x06\u4146", // 䅆
+ 0x4147: "s\x06\u4147", // 䅇
+ 0x4148: "s\x06\u4148", // 䅈
+ 0x4149: "s\x06\u4149", // 䅉
+ 0x414a: "s\x06\u414a", // 䅊
+ 0x414b: "s\a\u414b", // 䅋
+ 0x414c: "s\a\u414c", // 䅌
+ 0x414d: "s\a\u414d", // 䅍
+ 0x414e: "s\a\u414e", // 䅎
+ 0x414f: "s\a\u414f", // 䅏
+ 0x4150: "s\a\u4150", // 䅐
+ 0x4151: "s\a\u4151", // 䅑
+ 0x4152: "s\a\u4152", // 䅒
+ 0x4153: "s\a\u4153", // 䅓
+ 0x4154: "s\b\u4154", // 䅔
+ 0x4155: "s\b\u4155", // 䅕
+ 0x4156: "s\b\u4156", // 䅖
+ 0x4157: "s\b\u4157", // 䅗
+ 0x4158: "s\b\u4158", // 䅘
+ 0x4159: "s\b\u4159", // 䅙
+ 0x415a: "s\b\u415a", // 䅚
+ 0x415b: "s\b\u415b", // 䅛
+ 0x415c: "s\b\u415c", // 䅜
+ 0x415d: "s\b\u415d", // 䅝
+ 0x415e: "s\b\u415e", // 䅞
+ 0x415f: "s\b\u415f", // 䅟
+ 0x4160: "s\t\u4160", // 䅠
+ 0x4161: "s\t\u4161", // 䅡
+ 0x4162: "s\t\u4162", // 䅢
+ 0x4163: "s\t\u4163", // 䅣
+ 0x4164: "s\t\u4164", // 䅤
+ 0x4165: "s\t\u4165", // 䅥
+ 0x4166: "s\t\u4166", // 䅦
+ 0x4167: "s\t\u4167", // 䅧
+ 0x4168: "s\t\u4168", // 䅨
+ 0x4169: "s\t\u4169", // 䅩
+ 0x416a: "s\t\u416a", // 䅪
+ 0x416b: "s\t\u416b", // 䅫
+ 0x416c: "s\n\u416c", // 䅬
+ 0x416d: "s\n\u416d", // 䅭
+ 0x416e: "s\n\u416e", // 䅮
+ 0x416f: "s\n\u416f", // 䅯
+ 0x4170: "s\n\u4170", // 䅰
+ 0x4171: "s\n\u4171", // 䅱
+ 0x4172: "s\n\u4172", // 䅲
+ 0x4173: "s\n\u4173", // 䅳
+ 0x4174: "s\n\u4174", // 䅴
+ 0x4175: "s\n\u4175", // 䅵
+ 0x4176: "s\n\u4176", // 䅶
+ 0x4177: "s\v\u4177", // 䅷
+ 0x4178: "s\v\u4178", // 䅸
+ 0x4179: "s\v\u4179", // 䅹
+ 0x417a: "s\v\u417a", // 䅺
+ 0x417b: "s\v\u417b", // 䅻
+ 0x417c: "s\v\u417c", // 䅼
+ 0x417d: "s\v\u417d", // 䅽
+ 0x417e: "s\f\u417e", // 䅾
+ 0x417f: "s\f\u417f", // 䅿
+ 0x4180: "s\f\u4180", // 䆀
+ 0x4181: "s\r\u4181", // 䆁
+ 0x4182: "s\r\u4182", // 䆂
+ 0x4183: "s\r\u4183", // 䆃
+ 0x4184: "s\r\u4184", // 䆄
+ 0x4185: "s\r\u4185", // 䆅
+ 0x4186: "s\r\u4186", // 䆆
+ 0x4187: "s\r\u4187", // 䆇
+ 0x4188: "s\x0f\u4188", // 䆈
+ 0x4189: "s\x0f\u4189", // 䆉
+ 0x418a: "s\x10\u418a", // 䆊
+ 0x418b: "s\x10\u418b", // 䆋
+ 0x418c: "s\x10\u418c", // 䆌
+ 0x418d: "s\x10\u418d", // 䆍
+ 0x418e: "s\x11\u418e", // 䆎
+ 0x418f: "s\x11\u418f", // 䆏
+ 0x4190: "s\x19\u4190", // 䆐
+ 0x4191: "t\x02\u4191", // 䆑
+ 0x4192: "t\x03\u4192", // 䆒
+ 0x4193: "t\x04\u4193", // 䆓
+ 0x4194: "t\x04\u4194", // 䆔
+ 0x4195: "t\x04\u4195", // 䆕
+ 0x4196: "t\x04\u4196", // 䆖
+ 0x4197: "t\x05\u4197", // 䆗
+ 0x4198: "t\x05\u4198", // 䆘
+ 0x4199: "t\x05\u4199", // 䆙
+ 0x419a: "t\x06\u419a", // 䆚
+ 0x419b: "t\x06\u419b", // 䆛
+ 0x419c: "t\x06\u419c", // 䆜
+ 0x419d: "t\x06\u419d", // 䆝
+ 0x419e: "t\x06\u419e", // 䆞
+ 0x419f: "t\x06\u419f", // 䆟
+ 0x41a0: "t\x06\u41a0", // 䆠
+ 0x41a1: "t\a\u41a1", // 䆡
+ 0x41a2: "t\a\u41a2", // 䆢
+ 0x41a3: "t\a\u41a3", // 䆣
+ 0x41a4: "t\a\u41a4", // 䆤
+ 0x41a5: "t\a\u41a5", // 䆥
+ 0x41a6: "t\b\u41a6", // 䆦
+ 0x41a7: "t\b\u41a7", // 䆧
+ 0x41a8: "t\b\u41a8", // 䆨
+ 0x41a9: "t\b\u41a9", // 䆩
+ 0x41aa: "t\t\u41aa", // 䆪
+ 0x41ab: "t\t\u41ab", // 䆫
+ 0x41ac: "t\n\u41ac", // 䆬
+ 0x41ad: "t\n\u41ad", // 䆭
+ 0x41ae: "t\n\u41ae", // 䆮
+ 0x41af: "t\v\u41af", // 䆯
+ 0x41b0: "t\v\u41b0", // 䆰
+ 0x41b1: "t\v\u41b1", // 䆱
+ 0x41b2: "t\v\u41b2", // 䆲
+ 0x41b3: "t\v\u41b3", // 䆳
+ 0x41b4: "t\v\u41b4", // 䆴
+ 0x41b5: "t\f\u41b5", // 䆵
+ 0x41b6: "t\f\u41b6", // 䆶
+ 0x41b7: "t\f\u41b7", // 䆷
+ 0x41b8: "t\f\u41b8", // 䆸
+ 0x41b9: "t\f\u41b9", // 䆹
+ 0x41ba: "t\f\u41ba", // 䆺
+ 0x41bb: "t\f\u41bb", // 䆻
+ 0x41bc: "t\r\u41bc", // 䆼
+ 0x41bd: "t\r\u41bd", // 䆽
+ 0x41be: "t\x0e\u41be", // 䆾
+ 0x41bf: "t\x0e\u41bf", // 䆿
+ 0x41c0: "t\x0f\u41c0", // 䇀
+ 0x41c1: "t\x11\u41c1", // 䇁
+ 0x41c2: "u\x01\u41c2", // 䇂
+ 0x41c3: "u\x03\u41c3", // 䇃
+ 0x41c4: "u\x03\u41c4", // 䇄
+ 0x41c5: "u\x04\u41c5", // 䇅
+ 0x41c6: "u\x04\u41c6", // 䇆
+ 0x41c7: "u\x05\u41c7", // 䇇
+ 0x41c8: "u\x05\u41c8", // 䇈
+ 0x41c9: "u\x05\u41c9", // 䇉
+ 0x41ca: "u\x05\u41ca", // 䇊
+ 0x41cb: "u\x06\u41cb", // 䇋
+ 0x41cc: "u\a\u41cc", // 䇌
+ 0x41cd: "u\a\u41cd", // 䇍
+ 0x41ce: "u\b\u41ce", // 䇎
+ 0x41cf: "u\b\u41cf", // 䇏
+ 0x41d0: "u\b\u41d0", // 䇐
+ 0x41d1: "u\b\u41d1", // 䇑
+ 0x41d2: "u\v\u41d2", // 䇒
+ 0x41d3: "u\f\u41d3", // 䇓
+ 0x41d4: "u\r\u41d4", // 䇔
+ 0x41d5: "u\x0e\u41d5", // 䇕
+ 0x41d6: "v\x03\u41d6", // 䇖
+ 0x41d7: "v\x04\u41d7", // 䇗
+ 0x41d8: "v\x04\u41d8", // 䇘
+ 0x41d9: "v\x04\u41d9", // 䇙
+ 0x41da: "v\x04\u41da", // 䇚
+ 0x41db: "v\x04\u41db", // 䇛
+ 0x41dc: "v\x04\u41dc", // 䇜
+ 0x41dd: "v\x04\u41dd", // 䇝
+ 0x41de: "v\x05\u41de", // 䇞
+ 0x41df: "v\x05\u41df", // 䇟
+ 0x41e0: "v\x05\u41e0", // 䇠
+ 0x41e1: "v\x05\u41e1", // 䇡
+ 0x41e2: "v\x05\u41e2", // 䇢
+ 0x41e3: "v\x05\u41e3", // 䇣
+ 0x41e4: "v\x05\u41e4", // 䇤
+ 0x41e5: "v\x05\u41e5", // 䇥
+ 0x41e6: "v\x05\u41e6", // 䇦
+ 0x41e7: "v\x06\u41e7", // 䇧
+ 0x41e8: "v\x06\u41e8", // 䇨
+ 0x41e9: "v\x06\u41e9", // 䇩
+ 0x41ea: "v\x06\u41ea", // 䇪
+ 0x41eb: "v\x06\u41eb", // 䇫
+ 0x41ec: "v\x06\u41ec", // 䇬
+ 0x41ed: "v\x06\u41ed", // 䇭
+ 0x41ee: "v\x06\u41ee", // 䇮
+ 0x41ef: "v\x06\u41ef", // 䇯
+ 0x41f0: "v\x06\u41f0", // 䇰
+ 0x41f1: "v\x06\u41f1", // 䇱
+ 0x41f2: "v\x06\u41f2", // 䇲
+ 0x41f3: "v\x06\u41f3", // 䇳
+ 0x41f4: "v\x06\u41f4", // 䇴
+ 0x41f5: "v\a\u41f5", // 䇵
+ 0x41f6: "v\a\u41f6", // 䇶
+ 0x41f7: "v\a\u41f7", // 䇷
+ 0x41f8: "v\a\u41f8", // 䇸
+ 0x41f9: "v\a\u41f9", // 䇹
+ 0x41fa: "v\a\u41fa", // 䇺
+ 0x41fb: "v\a\u41fb", // 䇻
+ 0x41fc: "v\a\u41fc", // 䇼
+ 0x41fd: "v\a\u41fd", // 䇽
+ 0x41fe: "v\a\u41fe", // 䇾
+ 0x41ff: "v\a\u41ff", // 䇿
+ 0x4200: "v\a\u4200", // 䈀
+ 0x4201: "v\b\u4201", // 䈁
+ 0x4202: "v\b\u4202", // 䈂
+ 0x4203: "v\b\u4203", // 䈃
+ 0x4204: "v\b\u4204", // 䈄
+ 0x4205: "v\b\u4205", // 䈅
+ 0x4206: "v\b\u4206", // 䈆
+ 0x4207: "v\b\u4207", // 䈇
+ 0x4208: "v\b\u4208", // 䈈
+ 0x4209: "v\b\u4209", // 䈉
+ 0x420a: "v\b\u420a", // 䈊
+ 0x420b: "v\b\u420b", // 䈋
+ 0x420c: "v\b\u420c", // 䈌
+ 0x420d: "v\b\u420d", // 䈍
+ 0x420e: "v\t\u420e", // 䈎
+ 0x420f: "v\t\u420f", // 䈏
+ 0x4210: "v\t\u4210", // 䈐
+ 0x4211: "v\t\u4211", // 䈑
+ 0x4212: "v\t\u4212", // 䈒
+ 0x4213: "v\t\u4213", // 䈓
+ 0x4214: "v\t\u4214", // 䈔
+ 0x4215: "v\t\u4215", // 䈕
+ 0x4216: "v\t\u4216", // 䈖
+ 0x4217: "v\t\u4217", // 䈗
+ 0x4218: "v\t\u4218", // 䈘
+ 0x4219: "v\t\u4219", // 䈙
+ 0x421a: "v\t\u421a", // 䈚
+ 0x421b: "v\t\u421b", // 䈛
+ 0x421c: "v\t\u421c", // 䈜
+ 0x421d: "v\t\u421d", // 䈝
+ 0x421e: "v\t\u421e", // 䈞
+ 0x421f: "v\t\u421f", // 䈟
+ 0x4220: "v\t\u4220", // 䈠
+ 0x4221: "v\t\u4221", // 䈡
+ 0x4222: "v\t\u4222", // 䈢
+ 0x4223: "v\t\u4223", // 䈣
+ 0x4224: "v\t\u4224", // 䈤
+ 0x4225: "v\t\u4225", // 䈥
+ 0x4226: "v\t\u4226", // 䈦
+ 0x4227: "v\t\u4227", // 䈧
+ 0x4228: "v\t\u4228", // 䈨
+ 0x4229: "v\t\u4229", // 䈩
+ 0x422a: "v\n\u422a", // 䈪
+ 0x422b: "v\n\u422b", // 䈫
+ 0x422c: "v\n\u422c", // 䈬
+ 0x422d: "v\n\u422d", // 䈭
+ 0x422e: "v\n\u422e", // 䈮
+ 0x422f: "v\n\u422f", // 䈯
+ 0x4230: "v\n\u4230", // 䈰
+ 0x4231: "v\n\u4231", // 䈱
+ 0x4232: "v\n\u4232", // 䈲
+ 0x4233: "v\n\u4233", // 䈳
+ 0x4234: "v\n\u4234", // 䈴
+ 0x4235: "v\n\u4235", // 䈵
+ 0x4236: "v\n\u4236", // 䈶
+ 0x4237: "v\n\u4237", // 䈷
+ 0x4238: "v\v\u4238", // 䈸
+ 0x4239: "v\v\u4239", // 䈹
+ 0x423a: "v\v\u423a", // 䈺
+ 0x423b: "v\v\u423b", // 䈻
+ 0x423c: "v\v\u423c", // 䈼
+ 0x423d: "v\v\u423d", // 䈽
+ 0x423e: "v\v\u423e", // 䈾
+ 0x423f: "v\v\u423f", // 䈿
+ 0x4240: "v\v\u4240", // 䉀
+ 0x4241: "v\v\u4241", // 䉁
+ 0x4242: "v\v\u4242", // 䉂
+ 0x4243: "v\v\u4243", // 䉃
+ 0x4244: "v\v\u4244", // 䉄
+ 0x4245: "v\v\u4245", // 䉅
+ 0x4246: "v\v\u4246", // 䉆
+ 0x4247: "v\v\u4247", // 䉇
+ 0x4248: "v\f\u4248", // 䉈
+ 0x4249: "v\f\u4249", // 䉉
+ 0x424a: "v\f\u424a", // 䉊
+ 0x424b: "v\f\u424b", // 䉋
+ 0x424c: "v\f\u424c", // 䉌
+ 0x424d: "v\f\u424d", // 䉍
+ 0x424e: "v\f\u424e", // 䉎
+ 0x424f: "v\r\u424f", // 䉏
+ 0x4250: "v\f\u4250", // 䉐
+ 0x4251: "v\f\u4251", // 䉑
+ 0x4252: "v\f\u4252", // 䉒
+ 0x4253: "v\f\u4253", // 䉓
+ 0x4254: "v\f\u4254", // 䉔
+ 0x4255: "v\f\u4255", // 䉕
+ 0x4256: "v\f\u4256", // 䉖
+ 0x4257: "v\f\u4257", // 䉗
+ 0x4258: "v\f\u4258", // 䉘
+ 0x4259: "v\f\u4259", // 䉙
+ 0x425a: "v\f\u425a", // 䉚
+ 0x425b: "v\r\u425b", // 䉛
+ 0x425c: "v\r\u425c", // 䉜
+ 0x425d: "v\r\u425d", // 䉝
+ 0x425e: "v\r\u425e", // 䉞
+ 0x425f: "v\r\u425f", // 䉟
+ 0x4260: "v\r\u4260", // 䉠
+ 0x4261: "v\r\u4261", // 䉡
+ 0x4262: "v\r\u4262", // 䉢
+ 0x4263: "v\f\u4263", // 䉣
+ 0x4264: "v\r\u4264", // 䉤
+ 0x4265: "v\x0e\u4265", // 䉥
+ 0x4266: "v\x0f\u4266", // 䉦
+ 0x4267: "v\x0f\u4267", // 䉧
+ 0x4268: "v\x0f\u4268", // 䉨
+ 0x4269: "v\x0f\u4269", // 䉩
+ 0x426a: "v\x0f\u426a", // 䉪
+ 0x426b: "v\x0f\u426b", // 䉫
+ 0x426c: "v\x0f\u426c", // 䉬
+ 0x426d: "v\x0f\u426d", // 䉭
+ 0x426e: "v\x10\u426e", // 䉮
+ 0x426f: "v\x10\u426f", // 䉯
+ 0x4270: "v\x10\u4270", // 䉰
+ 0x4271: "v\x10\u4271", // 䉱
+ 0x4272: "v\x11\u4272", // 䉲
+ 0x4273: "v\x11\u4273", // 䉳
+ 0x4274: "v\x11\u4274", // 䉴
+ 0x4275: "\xb8\x0e\u4275", // 䉵
+ 0x4276: "v\x12\u4276", // 䉶
+ 0x4277: "v\x14\u4277", // 䉷
+ 0x4278: "v\x15\u4278", // 䉸
+ 0x4279: "v\x18\u4279", // 䉹
+ 0x427a: "w\x03\u427a", // 䉺
+ 0x427b: "w\x04\u427b", // 䉻
+ 0x427c: "w\x04\u427c", // 䉼
+ 0x427d: "w\x05\u427d", // 䉽
+ 0x427e: "w\x05\u427e", // 䉾
+ 0x427f: "w\x05\u427f", // 䉿
+ 0x4280: "w\x05\u4280", // 䊀
+ 0x4281: "w\x06\u4281", // 䊁
+ 0x4282: "w\x06\u4282", // 䊂
+ 0x4283: "w\x06\u4283", // 䊃
+ 0x4284: "w\x06\u4284", // 䊄
+ 0x4285: "w\x06\u4285", // 䊅
+ 0x4286: "w\x06\u4286", // 䊆
+ 0x4287: "w\a\u4287", // 䊇
+ 0x4288: "w\a\u4288", // 䊈
+ 0x4289: "w\a\u4289", // 䊉
+ 0x428a: "w\a\u428a", // 䊊
+ 0x428b: "w\a\u428b", // 䊋
+ 0x428c: "w\a\u428c", // 䊌
+ 0x428d: "w\b\u428d", // 䊍
+ 0x428e: "w\b\u428e", // 䊎
+ 0x428f: "w\b\u428f", // 䊏
+ 0x4290: "w\b\u4290", // 䊐
+ 0x4291: "w\b\u4291", // 䊑
+ 0x4292: "w\b\u4292", // 䊒
+ 0x4293: "w\t\u4293", // 䊓
+ 0x4294: "w\t\u4294", // 䊔
+ 0x4295: "w\t\u4295", // 䊕
+ 0x4296: "w\t\u4296", // 䊖
+ 0x4297: "w\t\u4297", // 䊗
+ 0x4298: "w\t\u4298", // 䊘
+ 0x4299: "w\t\u4299", // 䊙
+ 0x429a: "w\n\u429a", // 䊚
+ 0x429b: "w\n\u429b", // 䊛
+ 0x429c: "w\v\u429c", // 䊜
+ 0x429d: "w\v\u429d", // 䊝
+ 0x429e: "w\v\u429e", // 䊞
+ 0x429f: "w\v\u429f", // 䊟
+ 0x42a0: "w\v\u42a0", // 䊠
+ 0x42a1: "w\v\u42a1", // 䊡
+ 0x42a2: "w\v\u42a2", // 䊢
+ 0x42a3: "w\f\u42a3", // 䊣
+ 0x42a4: "w\f\u42a4", // 䊤
+ 0x42a5: "w\f\u42a5", // 䊥
+ 0x42a6: "w\f\u42a6", // 䊦
+ 0x42a7: "w\f\u42a7", // 䊧
+ 0x42a8: "w\f\u42a8", // 䊨
+ 0x42a9: "w\f\u42a9", // 䊩
+ 0x42aa: "w\r\u42aa", // 䊪
+ 0x42ab: "w\r\u42ab", // 䊫
+ 0x42ac: "w\r\u42ac", // 䊬
+ 0x42ad: "w\x0e\u42ad", // 䊭
+ 0x42ae: "w\x0e\u42ae", // 䊮
+ 0x42af: "w\x0f\u42af", // 䊯
+ 0x42b0: "w\x10\u42b0", // 䊰
+ 0x42b1: "w\x11\u42b1", // 䊱
+ 0x42b2: "w\x11\u42b2", // 䊲
+ 0x42b3: "w\x13\u42b3", // 䊳
+ 0x42b4: "w\x13\u42b4", // 䊴
+ 0x42b5: "x\x02\u42b5", // 䊵
+ 0x42b6: "x\x03\u42b6", // 䊶
+ 0x42b7: "x\x03\u42b7", // 䊷
+ 0x42b8: "x\x03\u42b8", // 䊸
+ 0x42b9: "x\x03\u42b9", // 䊹
+ 0x42ba: "x\x04\u42ba", // 䊺
+ 0x42bb: "x\x04\u42bb", // 䊻
+ 0x42bc: "x\x04\u42bc", // 䊼
+ 0x42bd: "x\x04\u42bd", // 䊽
+ 0x42be: "x\x04\u42be", // 䊾
+ 0x42bf: "x\x04\u42bf", // 䊿
+ 0x42c0: "x\x04\u42c0", // 䋀
+ 0x42c1: "x\x04\u42c1", // 䋁
+ 0x42c2: "x\x04\u42c2", // 䋂
+ 0x42c3: "x\x04\u42c3", // 䋃
+ 0x42c4: "x\x04\u42c4", // 䋄
+ 0x42c5: "x\x04\u42c5", // 䋅
+ 0x42c6: "x\x04\u42c6", // 䋆
+ 0x42c7: "x\x04\u42c7", // 䋇
+ 0x42c8: "x\x05\u42c8", // 䋈
+ 0x42c9: "x\x05\u42c9", // 䋉
+ 0x42ca: "x\x05\u42ca", // 䋊
+ 0x42cb: "x\x05\u42cb", // 䋋
+ 0x42cc: "x\x05\u42cc", // 䋌
+ 0x42cd: "x\x05\u42cd", // 䋍
+ 0x42ce: "x\x05\u42ce", // 䋎
+ 0x42cf: "x\x05\u42cf", // 䋏
+ 0x42d0: "x\x05\u42d0", // 䋐
+ 0x42d1: "x\x05\u42d1", // 䋑
+ 0x42d2: "x\x05\u42d2", // 䋒
+ 0x42d3: "x\x05\u42d3", // 䋓
+ 0x42d4: "x\x05\u42d4", // 䋔
+ 0x42d5: "x\x06\u42d5", // 䋕
+ 0x42d6: "x\x06\u42d6", // 䋖
+ 0x42d7: "x\x06\u42d7", // 䋗
+ 0x42d8: "x\x06\u42d8", // 䋘
+ 0x42d9: "x\x06\u42d9", // 䋙
+ 0x42da: "x\x06\u42da", // 䋚
+ 0x42db: "x\x06\u42db", // 䋛
+ 0x42dc: "x\x06\u42dc", // 䋜
+ 0x42dd: "x\x06\u42dd", // 䋝
+ 0x42de: "x\x06\u42de", // 䋞
+ 0x42df: "x\a\u42df", // 䋟
+ 0x42e0: "x\a\u42e0", // 䋠
+ 0x42e1: "x\a\u42e1", // 䋡
+ 0x42e2: "x\a\u42e2", // 䋢
+ 0x42e3: "x\a\u42e3", // 䋣
+ 0x42e4: "x\a\u42e4", // 䋤
+ 0x42e5: "x\a\u42e5", // 䋥
+ 0x42e6: "x\a\u42e6", // 䋦
+ 0x42e7: "x\b\u42e7", // 䋧
+ 0x42e8: "x\b\u42e8", // 䋨
+ 0x42e9: "x\b\u42e9", // 䋩
+ 0x42ea: "x\b\u42ea", // 䋪
+ 0x42eb: "x\b\u42eb", // 䋫
+ 0x42ec: "x\b\u42ec", // 䋬
+ 0x42ed: "x\b\u42ed", // 䋭
+ 0x42ee: "x\b\u42ee", // 䋮
+ 0x42ef: "x\b\u42ef", // 䋯
+ 0x42f0: "x\b\u42f0", // 䋰
+ 0x42f1: "x\b\u42f1", // 䋱
+ 0x42f2: "x\b\u42f2", // 䋲
+ 0x42f3: "x\t\u42f3", // 䋳
+ 0x42f4: "x\t\u42f4", // 䋴
+ 0x42f5: "x\t\u42f5", // 䋵
+ 0x42f6: "x\t\u42f6", // 䋶
+ 0x42f7: "x\t\u42f7", // 䋷
+ 0x42f8: "x\t\u42f8", // 䋸
+ 0x42f9: "x\t\u42f9", // 䋹
+ 0x42fa: "x\t\u42fa", // 䋺
+ 0x42fb: "x\t\u42fb", // 䋻
+ 0x42fc: "x\t\u42fc", // 䋼
+ 0x42fd: "x\t\u42fd", // 䋽
+ 0x42fe: "x\t\u42fe", // 䋾
+ 0x42ff: "x\t\u42ff", // 䋿
+ 0x4300: "x\t\u4300", // 䌀
+ 0x4301: "x\t\u4301", // 䌁
+ 0x4302: "x\t\u4302", // 䌂
+ 0x4303: "x\t\u4303", // 䌃
+ 0x4304: "x\t\u4304", // 䌄
+ 0x4305: "x\n\u4305", // 䌅
+ 0x4306: "x\n\u4306", // 䌆
+ 0x4307: "x\n\u4307", // 䌇
+ 0x4308: "x\n\u4308", // 䌈
+ 0x4309: "x\n\u4309", // 䌉
+ 0x430a: "x\n\u430a", // 䌊
+ 0x430b: "x\n\u430b", // 䌋
+ 0x430c: "x\v\u430c", // 䌌
+ 0x430d: "x\v\u430d", // 䌍
+ 0x430e: "x\v\u430e", // 䌎
+ 0x430f: "x\v\u430f", // 䌏
+ 0x4310: "x\v\u4310", // 䌐
+ 0x4311: "x\v\u4311", // 䌑
+ 0x4312: "x\v\u4312", // 䌒
+ 0x4313: "x\v\u4313", // 䌓
+ 0x4314: "x\v\u4314", // 䌔
+ 0x4315: "x\v\u4315", // 䌕
+ 0x4316: "x\f\u4316", // 䌖
+ 0x4317: "x\f\u4317", // 䌗
+ 0x4318: "x\f\u4318", // 䌘
+ 0x4319: "x\f\u4319", // 䌙
+ 0x431a: "x\f\u431a", // 䌚
+ 0x431b: "x\f\u431b", // 䌛
+ 0x431c: "x\r\u431c", // 䌜
+ 0x431d: "x\r\u431d", // 䌝
+ 0x431e: "x\r\u431e", // 䌞
+ 0x431f: "x\r\u431f", // 䌟
+ 0x4320: "x\r\u4320", // 䌠
+ 0x4321: "x\r\u4321", // 䌡
+ 0x4322: "x\r\u4322", // 䌢
+ 0x4323: "x\x0e\u4323", // 䌣
+ 0x4324: "x\x0e\u4324", // 䌤
+ 0x4325: "x\x0e\u4325", // 䌥
+ 0x4326: "x\x0e\u4326", // 䌦
+ 0x4327: "x\x0e\u4327", // 䌧
+ 0x4328: "x\x0f\u4328", // 䌨
+ 0x4329: "x\x0f\u4329", // 䌩
+ 0x432a: "x\x10\u432a", // 䌪
+ 0x432b: "x\x10\u432b", // 䌫
+ 0x432c: "x\x10\u432c", // 䌬
+ 0x432d: "x\x10\u432d", // 䌭
+ 0x432e: "x\x11\u432e", // 䌮
+ 0x432f: "x\x12\u432f", // 䌯
+ 0x4330: "x\x12\u4330", // 䌰
+ 0x4331: "x\x12\u4331", // 䌱
+ 0x4332: "x\x12\u4332", // 䌲
+ 0x4333: "x\x13\u4333", // 䌳
+ 0x4334: "x\x13\u4334", // 䌴
+ 0x4335: "x\x15\u4335", // 䌵
+ 0x4336: "x\x03\u4336", // 䌶
+ 0x4337: "x\x05\u4337", // 䌷
+ 0x4338: "x\x04\u4338", // 䌸
+ 0x4339: "x\x05\u4339", // 䌹
+ 0x433a: "x\x06\u433a", // 䌺
+ 0x433b: "x\x06\u433b", // 䌻
+ 0x433c: "x\a\u433c", // 䌼
+ 0x433d: "x\b\u433d", // 䌽
+ 0x433e: "x\t\u433e", // 䌾
+ 0x433f: "x\t\u433f", // 䌿
+ 0x4340: "x\n\u4340", // 䍀
+ 0x4341: "x\r\u4341", // 䍁
+ 0x4342: "y\x03\u4342", // 䍂
+ 0x4343: "y\x04\u4343", // 䍃
+ 0x4344: "y\x05\u4344", // 䍄
+ 0x4345: "y\x05\u4345", // 䍅
+ 0x4346: "y\x05\u4346", // 䍆
+ 0x4347: "y\x05\u4347", // 䍇
+ 0x4348: "y\x05\u4348", // 䍈
+ 0x4349: "y\x05\u4349", // 䍉
+ 0x434a: "y\x06\u434a", // 䍊
+ 0x434b: "y\b\u434b", // 䍋
+ 0x434c: "y\b\u434c", // 䍌
+ 0x434d: "y\n\u434d", // 䍍
+ 0x434e: "y\x11\u434e", // 䍎
+ 0x434f: "z\x00\u434f", // 䍏
+ 0x4350: "z\x03\u4350", // 䍐
+ 0x4351: "z\x03\u4351", // 䍑
+ 0x4352: "z\x04\u4352", // 䍒
+ 0x4353: "z\x04\u4353", // 䍓
+ 0x4354: "z\x04\u4354", // 䍔
+ 0x4355: "z\x05\u4355", // 䍕
+ 0x4356: "z\x05\u4356", // 䍖
+ 0x4357: "z\x05\u4357", // 䍗
+ 0x4358: "z\x06\u4358", // 䍘
+ 0x4359: "z\a\u4359", // 䍙
+ 0x435a: "z\a\u435a", // 䍚
+ 0x435b: "z\b\u435b", // 䍛
+ 0x435c: "z\b\u435c", // 䍜
+ 0x435d: "z\b\u435d", // 䍝
+ 0x435e: "z\b\u435e", // 䍞
+ 0x435f: "z\t\u435f", // 䍟
+ 0x4360: "z\v\u4360", // 䍠
+ 0x4361: "z\v\u4361", // 䍡
+ 0x4362: "z\f\u4362", // 䍢
+ 0x4363: "z\r\u4363", // 䍣
+ 0x4364: "z\x0e\u4364", // 䍤
+ 0x4365: "z\x10\u4365", // 䍥
+ 0x4366: "z\x13\u4366", // 䍦
+ 0x4367: "{\x04\u4367", // 䍧
+ 0x4368: "{\x04\u4368", // 䍨
+ 0x4369: "{\x04\u4369", // 䍩
+ 0x436a: "{\x05\u436a", // 䍪
+ 0x436b: "{\x05\u436b", // 䍫
+ 0x436c: "{\x05\u436c", // 䍬
+ 0x436d: "{\x05\u436d", // 䍭
+ 0x436e: "{\x06\u436e", // 䍮
+ 0x436f: "{\x06\u436f", // 䍯
+ 0x4370: "{\x06\u4370", // 䍰
+ 0x4371: "{\a\u4371", // 䍱
+ 0x4372: "{\b\u4372", // 䍲
+ 0x4373: "{\b\u4373", // 䍳
+ 0x4374: "{\b\u4374", // 䍴
+ 0x4375: "{\b\u4375", // 䍵
+ 0x4376: "{\b\u4376", // 䍶
+ 0x4377: "{\t\u4377", // 䍷
+ 0x4378: "{\n\u4378", // 䍸
+ 0x4379: "{\n\u4379", // 䍹
+ 0x437a: "{\v\u437a", // 䍺
+ 0x437b: "{\f\u437b", // 䍻
+ 0x437c: "{\f\u437c", // 䍼
+ 0x437d: "{\x10\u437d", // 䍽
+ 0x437e: "|\x04\u437e", // 䍾
+ 0x437f: "|\x04\u437f", // 䍿
+ 0x4380: "|\x05\u4380", // 䎀
+ 0x4381: "|\x05\u4381", // 䎁
+ 0x4382: "|\x05\u4382", // 䎂
+ 0x4383: "|\x05\u4383", // 䎃
+ 0x4384: "|\x05\u4384", // 䎄
+ 0x4385: "|\x05\u4385", // 䎅
+ 0x4386: "|\x05\u4386", // 䎆
+ 0x4387: "|\x06\u4387", // 䎇
+ 0x4388: "|\x06\u4388", // 䎈
+ 0x4389: "|\x06\u4389", // 䎉
+ 0x438a: "|\x06\u438a", // 䎊
+ 0x438b: "|\a\u438b", // 䎋
+ 0x438c: "|\a\u438c", // 䎌
+ 0x438d: "|\a\u438d", // 䎍
+ 0x438e: "|\a\u438e", // 䎎
+ 0x438f: "|\b\u438f", // 䎏
+ 0x4390: "|\b\u4390", // 䎐
+ 0x4391: "|\b\u4391", // 䎑
+ 0x4392: "|\b\u4392", // 䎒
+ 0x4393: "|\b\u4393", // 䎓
+ 0x4394: "|\n\u4394", // 䎔
+ 0x4395: "|\n\u4395", // 䎕
+ 0x4396: "|\f\u4396", // 䎖
+ 0x4397: "|\f\u4397", // 䎗
+ 0x4398: "|\f\u4398", // 䎘
+ 0x4399: "|\x0e\u4399", // 䎙
+ 0x439a: "|\x0f\u439a", // 䎚
+ 0x439b: "}\x03\u439b", // 䎛
+ 0x439c: "}\x06\u439c", // 䎜
+ 0x439d: "}\x06\u439d", // 䎝
+ 0x439e: "}\x06\u439e", // 䎞
+ 0x439f: "~\x03\u439f", // 䎟
+ 0x43a0: "~\x03\u43a0", // 䎠
+ 0x43a1: "~\x04\u43a1", // 䎡
+ 0x43a2: "\u007f\x03\u43a2", // 䎢
+ 0x43a3: "\u007f\x05\u43a3", // 䎣
+ 0x43a4: "\u007f\a\u43a4", // 䎤
+ 0x43a5: "\u007f\a\u43a5", // 䎥
+ 0x43a6: "\u007f\b\u43a6", // 䎦
+ 0x43a7: "\u007f\b\u43a7", // 䎧
+ 0x43a8: "\u007f\b\u43a8", // 䎨
+ 0x43a9: "\u007f\b\u43a9", // 䎩
+ 0x43aa: "\u007f\b\u43aa", // 䎪
+ 0x43ab: "\u007f\t\u43ab", // 䎫
+ 0x43ac: "\u007f\t\u43ac", // 䎬
+ 0x43ad: "\u007f\v\u43ad", // 䎭
+ 0x43ae: "\u007f\v\u43ae", // 䎮
+ 0x43af: "\u007f\v\u43af", // 䎯
+ 0x43b0: "\u007f\f\u43b0", // 䎰
+ 0x43b1: "\u007f\x0f\u43b1", // 䎱
+ 0x43b2: "\x80\x01\u43b2", // 䎲
+ 0x43b3: "\x80\x04\u43b3", // 䎳
+ 0x43b4: "\x80\x04\u43b4", // 䎴
+ 0x43b5: "\x80\x05\u43b5", // 䎵
+ 0x43b6: "\x80\x05\u43b6", // 䎶
+ 0x43b7: "\x80\x06\u43b7", // 䎷
+ 0x43b8: "\x80\a\u43b8", // 䎸
+ 0x43b9: "\x80\a\u43b9", // 䎹
+ 0x43ba: "\x80\b\u43ba", // 䎺
+ 0x43bb: "\x80\b\u43bb", // 䎻
+ 0x43bc: "\x80\b\u43bc", // 䎼
+ 0x43bd: "\x80\b\u43bd", // 䎽
+ 0x43be: "\x80\b\u43be", // 䎾
+ 0x43bf: "\x80\t\u43bf", // 䎿
+ 0x43c0: "\x80\t\u43c0", // 䏀
+ 0x43c1: "\x80\n\u43c1", // 䏁
+ 0x43c2: "\x80\n\u43c2", // 䏂
+ 0x43c3: "\x80\n\u43c3", // 䏃
+ 0x43c4: "\x80\v\u43c4", // 䏄
+ 0x43c5: "\x80\v\u43c5", // 䏅
+ 0x43c6: "\x80\v\u43c6", // 䏆
+ 0x43c7: "\x80\v\u43c7", // 䏇
+ 0x43c8: "\x80\f\u43c8", // 䏈
+ 0x43c9: "\x80\x0e\u43c9", // 䏉
+ 0x43ca: "\x80\x10\u43ca", // 䏊
+ 0x43cb: "\x81\a\u43cb", // 䏋
+ 0x43cc: "\x82\x02\u43cc", // 䏌
+ 0x43cd: "\x82\x02\u43cd", // 䏍
+ 0x43ce: "\x82\x03\u43ce", // 䏎
+ 0x43cf: "\x82\x03\u43cf", // 䏏
+ 0x43d0: "\x82\x04\u43d0", // 䏐
+ 0x43d1: "\x82\x04\u43d1", // 䏑
+ 0x43d2: "\x82\x04\u43d2", // 䏒
+ 0x43d3: "\x82\x04\u43d3", // 䏓
+ 0x43d4: "\x82\x04\u43d4", // 䏔
+ 0x43d5: "\x82\x04\u43d5", // 䏕
+ 0x43d6: "\x82\x04\u43d6", // 䏖
+ 0x43d7: "\x82\x04\u43d7", // 䏗
+ 0x43d8: "\x82\x04\u43d8", // 䏘
+ 0x43d9: "\x82\x04\u43d9", // 䏙
+ 0x43da: "\x82\x04\u43da", // 䏚
+ 0x43db: "\x82\x04\u43db", // 䏛
+ 0x43dc: "\x82\x04\u43dc", // 䏜
+ 0x43dd: "\x82\x04\u43dd", // 䏝
+ 0x43de: "\x82\x05\u43de", // 䏞
+ 0x43df: "\x82\x05\u43df", // 䏟
+ 0x43e0: "\x82\x05\u43e0", // 䏠
+ 0x43e1: "\x82\x05\u43e1", // 䏡
+ 0x43e2: "\x82\x05\u43e2", // 䏢
+ 0x43e3: "\x82\x05\u43e3", // 䏣
+ 0x43e4: "\x82\x05\u43e4", // 䏤
+ 0x43e5: "\x82\x05\u43e5", // 䏥
+ 0x43e6: "\x82\x06\u43e6", // 䏦
+ 0x43e7: "\x82\x06\u43e7", // 䏧
+ 0x43e8: "\x82\x06\u43e8", // 䏨
+ 0x43e9: "\x82\x06\u43e9", // 䏩
+ 0x43ea: "\x82\x06\u43ea", // 䏪
+ 0x43eb: "\x82\x06\u43eb", // 䏫
+ 0x43ec: "\x82\x06\u43ec", // 䏬
+ 0x43ed: "\x82\x06\u43ed", // 䏭
+ 0x43ee: "\x82\x06\u43ee", // 䏮
+ 0x43ef: "\x82\a\u43ef", // 䏯
+ 0x43f0: "\x82\a\u43f0", // 䏰
+ 0x43f1: "\x82\a\u43f1", // 䏱
+ 0x43f2: "\x82\a\u43f2", // 䏲
+ 0x43f3: "\x82\a\u43f3", // 䏳
+ 0x43f4: "\x82\a\u43f4", // 䏴
+ 0x43f5: "\x82\a\u43f5", // 䏵
+ 0x43f6: "\x82\a\u43f6", // 䏶
+ 0x43f7: "\x82\a\u43f7", // 䏷
+ 0x43f8: "\x82\a\u43f8", // 䏸
+ 0x43f9: "\x82\a\u43f9", // 䏹
+ 0x43fa: "\x82\a\u43fa", // 䏺
+ 0x43fb: "\x82\a\u43fb", // 䏻
+ 0x43fc: "\x82\b\u43fc", // 䏼
+ 0x43fd: "\x82\b\u43fd", // 䏽
+ 0x43fe: "\x82\b\u43fe", // 䏾
+ 0x43ff: "\x82\b\u43ff", // 䏿
+ 0x4400: "\x82\b\u4400", // 䐀
+ 0x4401: "\x82\b\u4401", // 䐁
+ 0x4402: "\x82\b\u4402", // 䐂
+ 0x4403: "\x82\b\u4403", // 䐃
+ 0x4404: "\x82\b\u4404", // 䐄
+ 0x4405: "\x82\b\u4405", // 䐅
+ 0x4406: "\x82\b\u4406", // 䐆
+ 0x4407: "\x82\b\u4407", // 䐇
+ 0x4408: "\x82\b\u4408", // 䐈
+ 0x4409: "\x82\b\u4409", // 䐉
+ 0x440a: "\x82\b\u440a", // 䐊
+ 0x440b: "\x82\b\u440b", // 䐋
+ 0x440c: "\x82\b\u440c", // 䐌
+ 0x440d: "\x82\t\u440d", // 䐍
+ 0x440e: "\x82\t\u440e", // 䐎
+ 0x440f: "\x82\t\u440f", // 䐏
+ 0x4410: "\x82\t\u4410", // 䐐
+ 0x4411: "\x82\t\u4411", // 䐑
+ 0x4412: "\x82\t\u4412", // 䐒
+ 0x4413: "\x82\t\u4413", // 䐓
+ 0x4414: "\x82\t\u4414", // 䐔
+ 0x4415: "\x82\t\u4415", // 䐕
+ 0x4416: "\x82\t\u4416", // 䐖
+ 0x4417: "\x82\t\u4417", // 䐗
+ 0x4418: "\x82\t\u4418", // 䐘
+ 0x4419: "\x82\t\u4419", // 䐙
+ 0x441a: "\x82\t\u441a", // 䐚
+ 0x441b: "\x82\t\u441b", // 䐛
+ 0x441c: "\x82\n\u441c", // 䐜
+ 0x441d: "\x82\n\u441d", // 䐝
+ 0x441e: "\x82\n\u441e", // 䐞
+ 0x441f: "\x82\n\u441f", // 䐟
+ 0x4420: "\x82\n\u4420", // 䐠
+ 0x4421: "\x82\n\u4421", // 䐡
+ 0x4422: "\x82\n\u4422", // 䐢
+ 0x4423: "\x82\n\u4423", // 䐣
+ 0x4424: "\x82\n\u4424", // 䐤
+ 0x4425: "\x82\n\u4425", // 䐥
+ 0x4426: "\x82\n\u4426", // 䐦
+ 0x4427: "\x82\n\u4427", // 䐧
+ 0x4428: "\x82\n\u4428", // 䐨
+ 0x4429: "\x82\n\u4429", // 䐩
+ 0x442a: "\x82\n\u442a", // 䐪
+ 0x442b: "\x82\v\u442b", // 䐫
+ 0x442c: "\x82\v\u442c", // 䐬
+ 0x442d: "\x82\v\u442d", // 䐭
+ 0x442e: "\x82\v\u442e", // 䐮
+ 0x442f: "\x82\v\u442f", // 䐯
+ 0x4430: "\x82\v\u4430", // 䐰
+ 0x4431: "\x82\v\u4431", // 䐱
+ 0x4432: "\x82\v\u4432", // 䐲
+ 0x4433: "\x82\v\u4433", // 䐳
+ 0x4434: "\x82\v\u4434", // 䐴
+ 0x4435: "\x82\f\u4435", // 䐵
+ 0x4436: "\x82\f\u4436", // 䐶
+ 0x4437: "\x82\f\u4437", // 䐷
+ 0x4438: "\x82\f\u4438", // 䐸
+ 0x4439: "\x82\f\u4439", // 䐹
+ 0x443a: "\x82\f\u443a", // 䐺
+ 0x443b: "\x82\f\u443b", // 䐻
+ 0x443c: "\x82\f\u443c", // 䐼
+ 0x443d: "\x82\f\u443d", // 䐽
+ 0x443e: "\x82\r\u443e", // 䐾
+ 0x443f: "\x82\r\u443f", // 䐿
+ 0x4440: "\x82\r\u4440", // 䑀
+ 0x4441: "\x82\r\u4441", // 䑁
+ 0x4442: "\x82\x0e\u4442", // 䑂
+ 0x4443: "\x82\x0e\u4443", // 䑃
+ 0x4444: "\x82\x0e\u4444", // 䑄
+ 0x4445: "\x82\x0e\u4445", // 䑅
+ 0x4446: "\x82\x0f\u4446", // 䑆
+ 0x4447: "\x82\x0f\u4447", // 䑇
+ 0x4448: "\x82\x0f\u4448", // 䑈
+ 0x4449: "\x82\x10\u4449", // 䑉
+ 0x444a: "\x82\x10\u444a", // 䑊
+ 0x444b: "\x82\x11\u444b", // 䑋
+ 0x444c: "\x82\x11\u444c", // 䑌
+ 0x444d: "\x82\x11\u444d", // 䑍
+ 0x444e: "\x82\x11\u444e", // 䑎
+ 0x444f: "\x82\x12\u444f", // 䑏
+ 0x4450: "\x83\x05\u4450", // 䑐
+ 0x4451: "\x83\f\u4451", // 䑑
+ 0x4452: "\x85\x03\u4452", // 䑒
+ 0x4453: "\x85\a\u4453", // 䑓
+ 0x4454: "\x86\x04\u4454", // 䑔
+ 0x4455: "\x86\x05\u4455", // 䑕
+ 0x4456: "\x86\b\u4456", // 䑖
+ 0x4457: "\x86\t\u4457", // 䑗
+ 0x4458: "\x86\n\u4458", // 䑘
+ 0x4459: "\x87\x04\u4459", // 䑙
+ 0x445a: "\x87\x04\u445a", // 䑚
+ 0x445b: "\x87\x05\u445b", // 䑛
+ 0x445c: "\x87\t\u445c", // 䑜
+ 0x445d: "\x88\b\u445d", // 䑝
+ 0x445e: "\x88\n\u445e", // 䑞
+ 0x445f: "\x88\x0f\u445f", // 䑟
+ 0x4460: "\x89\x02\u4460", // 䑠
+ 0x4461: "\x89\x03\u4461", // 䑡
+ 0x4462: "\x89\x03\u4462", // 䑢
+ 0x4463: "\x89\x03\u4463", // 䑣
+ 0x4464: "\x89\x04\u4464", // 䑤
+ 0x4465: "\x89\x04\u4465", // 䑥
+ 0x4466: "\x89\x05\u4466", // 䑦
+ 0x4467: "\x89\x05\u4467", // 䑧
+ 0x4468: "\x89\x05\u4468", // 䑨
+ 0x4469: "\x89\x05\u4469", // 䑩
+ 0x446a: "\x89\x06\u446a", // 䑪
+ 0x446b: "\x89\x06\u446b", // 䑫
+ 0x446c: "\x89\x06\u446c", // 䑬
+ 0x446d: "\x89\x06\u446d", // 䑭
+ 0x446e: "\x89\x06\u446e", // 䑮
+ 0x446f: "\x89\a\u446f", // 䑯
+ 0x4470: "\x89\a\u4470", // 䑰
+ 0x4471: "\x89\b\u4471", // 䑱
+ 0x4472: "\x89\b\u4472", // 䑲
+ 0x4473: "\x89\b\u4473", // 䑳
+ 0x4474: "\x89\b\u4474", // 䑴
+ 0x4475: "\x89\b\u4475", // 䑵
+ 0x4476: "\x89\b\u4476", // 䑶
+ 0x4477: "\x89\b\u4477", // 䑷
+ 0x4478: "\x89\b\u4478", // 䑸
+ 0x4479: "\x89\t\u4479", // 䑹
+ 0x447a: "\x89\t\u447a", // 䑺
+ 0x447b: "\x89\t\u447b", // 䑻
+ 0x447c: "\x89\n\u447c", // 䑼
+ 0x447d: "\x89\n\u447d", // 䑽
+ 0x447e: "\x89\n\u447e", // 䑾
+ 0x447f: "\x89\v\u447f", // 䑿
+ 0x4480: "\x89\v\u4480", // 䒀
+ 0x4481: "\x89\v\u4481", // 䒁
+ 0x4482: "\x89\v\u4482", // 䒂
+ 0x4483: "\x89\v\u4483", // 䒃
+ 0x4484: "\x89\v\u4484", // 䒄
+ 0x4485: "\x89\v\u4485", // 䒅
+ 0x4486: "\x89\f\u4486", // 䒆
+ 0x4487: "\x89\f\u4487", // 䒇
+ 0x4488: "\x89\f\u4488", // 䒈
+ 0x4489: "\x89\x0e\u4489", // 䒉
+ 0x448a: "\x8b\x03\u448a", // 䒊
+ 0x448b: "\x8b\x05\u448b", // 䒋
+ 0x448c: "\x8b\n\u448c", // 䒌
+ 0x448d: "\x8b\n\u448d", // 䒍
+ 0x448e: "\x8b\f\u448e", // 䒎
+ 0x448f: "\x8b\f\u448f", // 䒏
+ 0x4490: "\x8b\x10\u4490", // 䒐
+ 0x4491: "\x8c\x00\u4491", // 䒑
+ 0x4492: "\x8c\x02\u4492", // 䒒
+ 0x4493: "\x8c\x02\u4493", // 䒓
+ 0x4494: "\x8c\x02\u4494", // 䒔
+ 0x4495: "\x8c\x03\u4495", // 䒕
+ 0x4496: "\x8c\x03\u4496", // 䒖
+ 0x4497: "\x8c\x03\u4497", // 䒗
+ 0x4498: "\x8c\x03\u4498", // 䒘
+ 0x4499: "\x8c\x03\u4499", // 䒙
+ 0x449a: "\x8c\x04\u449a", // 䒚
+ 0x449b: "\x8c\x04\u449b", // 䒛
+ 0x449c: "\x8c\x04\u449c", // 䒜
+ 0x449d: "\x8c\x04\u449d", // 䒝
+ 0x449e: "\x8c\x04\u449e", // 䒞
+ 0x449f: "\x8c\x04\u449f", // 䒟
+ 0x44a0: "\x8c\x04\u44a0", // 䒠
+ 0x44a1: "\x8c\x04\u44a1", // 䒡
+ 0x44a2: "\x8c\x04\u44a2", // 䒢
+ 0x44a3: "\x8c\x04\u44a3", // 䒣
+ 0x44a4: "\x8c\x04\u44a4", // 䒤
+ 0x44a5: "\x8c\x04\u44a5", // 䒥
+ 0x44a6: "\x8c\x05\u44a6", // 䒦
+ 0x44a7: "\x8c\x05\u44a7", // 䒧
+ 0x44a8: "\x8c\x05\u44a8", // 䒨
+ 0x44a9: "\x8c\x05\u44a9", // 䒩
+ 0x44aa: "\x8c\x05\u44aa", // 䒪
+ 0x44ab: "\x8c\x05\u44ab", // 䒫
+ 0x44ac: "\x8c\x05\u44ac", // 䒬
+ 0x44ad: "\x8c\x05\u44ad", // 䒭
+ 0x44ae: "\x8c\x05\u44ae", // 䒮
+ 0x44af: "\x8c\x05\u44af", // 䒯
+ 0x44b0: "\x8c\x06\u44b0", // 䒰
+ 0x44b1: "\x8c\x06\u44b1", // 䒱
+ 0x44b2: "\x8c\x06\u44b2", // 䒲
+ 0x44b3: "\x8c\x06\u44b3", // 䒳
+ 0x44b4: "\x8c\x06\u44b4", // 䒴
+ 0x44b5: "\x8c\x06\u44b5", // 䒵
+ 0x44b6: "\x8c\x06\u44b6", // 䒶
+ 0x44b7: "\x8c\x06\u44b7", // 䒷
+ 0x44b8: "\x8c\x06\u44b8", // 䒸
+ 0x44b9: "\x8c\x06\u44b9", // 䒹
+ 0x44ba: "\x8c\x06\u44ba", // 䒺
+ 0x44bb: "\x8c\x06\u44bb", // 䒻
+ 0x44bc: "\x8c\x06\u44bc", // 䒼
+ 0x44bd: "\x8c\x06\u44bd", // 䒽
+ 0x44be: "\x8c\x06\u44be", // 䒾
+ 0x44bf: "\x8c\x06\u44bf", // 䒿
+ 0x44c0: "\x8c\x06\u44c0", // 䓀
+ 0x44c1: "\x8c\x06\u44c1", // 䓁
+ 0x44c2: "\x8c\a\u44c2", // 䓂
+ 0x44c3: "\x8c\a\u44c3", // 䓃
+ 0x44c4: "\x8c\a\u44c4", // 䓄
+ 0x44c5: "\x8c\a\u44c5", // 䓅
+ 0x44c6: "\x8c\a\u44c6", // 䓆
+ 0x44c7: "\x8c\a\u44c7", // 䓇
+ 0x44c8: "\x8c\a\u44c8", // 䓈
+ 0x44c9: "\x8c\a\u44c9", // 䓉
+ 0x44ca: "\x8c\a\u44ca", // 䓊
+ 0x44cb: "\x8c\a\u44cb", // 䓋
+ 0x44cc: "\x8c\a\u44cc", // 䓌
+ 0x44cd: "\x8c\a\u44cd", // 䓍
+ 0x44ce: "\x8c\a\u44ce", // 䓎
+ 0x44cf: "\x8c\a\u44cf", // 䓏
+ 0x44d0: "\x8c\a\u44d0", // 䓐
+ 0x44d1: "\x8c\a\u44d1", // 䓑
+ 0x44d2: "\x8c\a\u44d2", // 䓒
+ 0x44d3: "\x8c\a\u44d3", // 䓓
+ 0x44d4: "\x8c\a\u44d4", // 䓔
+ 0x44d5: "\x8c\b\u44d5", // 䓕
+ 0x44d6: "\x8c\a\u44d6", // 䓖
+ 0x44d7: "\x8c\b\u44d7", // 䓗
+ 0x44d8: "\x8c\b\u44d8", // 䓘
+ 0x44d9: "\x8c\b\u44d9", // 䓙
+ 0x44da: "\x8c\b\u44da", // 䓚
+ 0x44db: "\x8c\b\u44db", // 䓛
+ 0x44dc: "\x8c\b\u44dc", // 䓜
+ 0x44dd: "\x8c\b\u44dd", // 䓝
+ 0x44de: "\x8c\b\u44de", // 䓞
+ 0x44df: "\x8c\b\u44df", // 䓟
+ 0x44e0: "\x8c\b\u44e0", // 䓠
+ 0x44e1: "\x8c\b\u44e1", // 䓡
+ 0x44e2: "\x8c\b\u44e2", // 䓢
+ 0x44e3: "\x8c\b\u44e3", // 䓣
+ 0x44e4: "\x8c\b\u44e4", // 䓤
+ 0x44e5: "\x8c\b\u44e5", // 䓥
+ 0x44e6: "\x8c\b\u44e6", // 䓦
+ 0x44e7: "\x8c\b\u44e7", // 䓧
+ 0x44e8: "\x8c\b\u44e8", // 䓨
+ 0x44e9: "\x8c\b\u44e9", // 䓩
+ 0x44ea: "\x8c\b\u44ea", // 䓪
+ 0x44eb: "\x8c\b\u44eb", // 䓫
+ 0x44ec: "\x8c\b\u44ec", // 䓬
+ 0x44ed: "\x8c\b\u44ed", // 䓭
+ 0x44ee: "\x8c\t\u44ee", // 䓮
+ 0x44ef: "\x8c\t\u44ef", // 䓯
+ 0x44f0: "\x8c\t\u44f0", // 䓰
+ 0x44f1: "\x8c\t\u44f1", // 䓱
+ 0x44f2: "\x8c\t\u44f2", // 䓲
+ 0x44f3: "\x8c\t\u44f3", // 䓳
+ 0x44f4: "\x8c\t\u44f4", // 䓴
+ 0x44f5: "\x8c\t\u44f5", // 䓵
+ 0x44f6: "\x8c\t\u44f6", // 䓶
+ 0x44f7: "\x8c\t\u44f7", // 䓷
+ 0x44f8: "\x8c\t\u44f8", // 䓸
+ 0x44f9: "\x8c\t\u44f9", // 䓹
+ 0x44fa: "\x8c\t\u44fa", // 䓺
+ 0x44fb: "\x8c\t\u44fb", // 䓻
+ 0x44fc: "\x8c\n\u44fc", // 䓼
+ 0x44fd: "\x8c\n\u44fd", // 䓽
+ 0x44fe: "\x8c\n\u44fe", // 䓾
+ 0x44ff: "\x8c\n\u44ff", // 䓿
+ 0x4500: "\x8c\n\u4500", // 䔀
+ 0x4501: "\x8c\n\u4501", // 䔁
+ 0x4502: "\x8c\n\u4502", // 䔂
+ 0x4503: "\x8c\n\u4503", // 䔃
+ 0x4504: "\x8c\n\u4504", // 䔄
+ 0x4505: "\x8c\n\u4505", // 䔅
+ 0x4506: "\x8c\n\u4506", // 䔆
+ 0x4507: "\x8c\n\u4507", // 䔇
+ 0x4508: "\x8c\n\u4508", // 䔈
+ 0x4509: "\x8c\n\u4509", // 䔉
+ 0x450a: "\x8c\n\u450a", // 䔊
+ 0x450b: "\x8c\n\u450b", // 䔋
+ 0x450c: "\x8c\n\u450c", // 䔌
+ 0x450d: "\x8c\n\u450d", // 䔍
+ 0x450e: "\x8c\v\u450e", // 䔎
+ 0x450f: "\x8c\v\u450f", // 䔏
+ 0x4510: "\x8c\v\u4510", // 䔐
+ 0x4511: "\x8c\v\u4511", // 䔑
+ 0x4512: "\x8c\v\u4512", // 䔒
+ 0x4513: "\x8c\v\u4513", // 䔓
+ 0x4514: "\x8c\v\u4514", // 䔔
+ 0x4515: "\x8c\v\u4515", // 䔕
+ 0x4516: "\x8c\v\u4516", // 䔖
+ 0x4517: "\x8c\v\u4517", // 䔗
+ 0x4518: "\x8c\v\u4518", // 䔘
+ 0x4519: "\x8c\v\u4519", // 䔙
+ 0x451a: "\x8c\v\u451a", // 䔚
+ 0x451b: "\x8c\v\u451b", // 䔛
+ 0x451c: "\x8c\v\u451c", // 䔜
+ 0x451d: "\x8c\v\u451d", // 䔝
+ 0x451e: "\x8c\v\u451e", // 䔞
+ 0x451f: "\x8c\v\u451f", // 䔟
+ 0x4520: "\x8c\v\u4520", // 䔠
+ 0x4521: "\x8c\v\u4521", // 䔡
+ 0x4522: "\x8c\v\u4522", // 䔢
+ 0x4523: "\x8c\v\u4523", // 䔣
+ 0x4524: "\x8c\v\u4524", // 䔤
+ 0x4525: "\x8c\v\u4525", // 䔥
+ 0x4526: "\x8c\v\u4526", // 䔦
+ 0x4527: "\x8c\v\u4527", // 䔧
+ 0x4528: "\x8c\v\u4528", // 䔨
+ 0x4529: "\x8c\v\u4529", // 䔩
+ 0x452a: "\x8c\v\u452a", // 䔪
+ 0x452b: "\x8c\v\u452b", // 䔫
+ 0x452c: "\x8c\v\u452c", // 䔬
+ 0x452d: "\x8c\f\u452d", // 䔭
+ 0x452e: "\x8c\f\u452e", // 䔮
+ 0x452f: "\x8c\f\u452f", // 䔯
+ 0x4530: "\x8c\f\u4530", // 䔰
+ 0x4531: "\x8c\f\u4531", // 䔱
+ 0x4532: "\x8c\f\u4532", // 䔲
+ 0x4533: "\x8c\f\u4533", // 䔳
+ 0x4534: "\x8c\f\u4534", // 䔴
+ 0x4535: "\x8c\f\u4535", // 䔵
+ 0x4536: "\x8c\f\u4536", // 䔶
+ 0x4537: "\x8c\f\u4537", // 䔷
+ 0x4538: "\x8c\f\u4538", // 䔸
+ 0x4539: "\x8c\f\u4539", // 䔹
+ 0x453a: "\x8c\f\u453a", // 䔺
+ 0x453b: "\x8c\f\u453b", // 䔻
+ 0x453c: "\x8c\f\u453c", // 䔼
+ 0x453d: "\x8c\f\u453d", // 䔽
+ 0x453e: "\x8c\f\u453e", // 䔾
+ 0x453f: "\x8c\f\u453f", // 䔿
+ 0x4540: "\x8c\f\u4540", // 䕀
+ 0x4541: "\x8c\f\u4541", // 䕁
+ 0x4542: "\x8c\f\u4542", // 䕂
+ 0x4543: "\x8c\f\u4543", // 䕃
+ 0x4544: "\x8c\f\u4544", // 䕄
+ 0x4545: "\x8c\r\u4545", // 䕅
+ 0x4546: "\x8c\r\u4546", // 䕆
+ 0x4547: "\x8c\r\u4547", // 䕇
+ 0x4548: "\x8c\r\u4548", // 䕈
+ 0x4549: "\x8c\r\u4549", // 䕉
+ 0x454a: "\x8c\r\u454a", // 䕊
+ 0x454b: "\x8c\r\u454b", // 䕋
+ 0x454c: "\x8c\r\u454c", // 䕌
+ 0x454d: "\x8c\r\u454d", // 䕍
+ 0x454e: "\x8c\r\u454e", // 䕎
+ 0x454f: "\x8c\r\u454f", // 䕏
+ 0x4550: "\x8c\r\u4550", // 䕐
+ 0x4551: "\x8c\r\u4551", // 䕑
+ 0x4552: "\x8c\x0e\u4552", // 䕒
+ 0x4553: "\x8c\x0e\u4553", // 䕓
+ 0x4554: "\x8c\x0e\u4554", // 䕔
+ 0x4555: "\x8c\x0e\u4555", // 䕕
+ 0x4556: "\x8c\x0e\u4556", // 䕖
+ 0x4557: "\x8c\x0e\u4557", // 䕗
+ 0x4558: "\x8c\x0e\u4558", // 䕘
+ 0x4559: "\x8c\x0e\u4559", // 䕙
+ 0x455a: "\x8c\x0e\u455a", // 䕚
+ 0x455b: "\x8c\x0e\u455b", // 䕛
+ 0x455c: "\x8c\x0e\u455c", // 䕜
+ 0x455d: "\x8c\x0e\u455d", // 䕝
+ 0x455e: "\x8c\x0f\u455e", // 䕞
+ 0x455f: "\x8c\x0f\u455f", // 䕟
+ 0x4560: "\x8c\x0f\u4560", // 䕠
+ 0x4561: "\x8c\x0f\u4561", // 䕡
+ 0x4562: "\x8c\x0f\u4562", // 䕢
+ 0x4563: "\x8c\x0f\u4563", // 䕣
+ 0x4564: "\x8c\x0f\u4564", // 䕤
+ 0x4565: "\x8c\x0f\u4565", // 䕥
+ 0x4566: "\x8c\x10\u4566", // 䕦
+ 0x4567: "\x8c\x10\u4567", // 䕧
+ 0x4568: "\x8c\x10\u4568", // 䕨
+ 0x4569: "\x8c\x10\u4569", // 䕩
+ 0x456a: "\x8c\x10\u456a", // 䕪
+ 0x456b: "\x8c\x10\u456b", // 䕫
+ 0x456c: "\x8c\x10\u456c", // 䕬
+ 0x456d: "\x8c\x10\u456d", // 䕭
+ 0x456e: "\x8c\x10\u456e", // 䕮
+ 0x456f: "\x8c\x10\u456f", // 䕯
+ 0x4570: "\x8c\x10\u4570", // 䕰
+ 0x4571: "\x8c\x10\u4571", // 䕱
+ 0x4572: "\x8c\x10\u4572", // 䕲
+ 0x4573: "\x8c\x11\u4573", // 䕳
+ 0x4574: "\x8c\x11\u4574", // 䕴
+ 0x4575: "\x8c\x11\u4575", // 䕵
+ 0x4576: "\x8c\x11\u4576", // 䕶
+ 0x4577: "\x8c\x11\u4577", // 䕷
+ 0x4578: "\x8c\x12\u4578", // 䕸
+ 0x4579: "\x8c\x12\u4579", // 䕹
+ 0x457a: "\x8c\x12\u457a", // 䕺
+ 0x457b: "\x8c\x13\u457b", // 䕻
+ 0x457c: "\x8c\x13\u457c", // 䕼
+ 0x457d: "\x8c\x13\u457d", // 䕽
+ 0x457e: "\x8c\x14\u457e", // 䕾
+ 0x457f: "\x8c\x15\u457f", // 䕿
+ 0x4580: "\x8c\x15\u4580", // 䖀
+ 0x4581: "\x8c\x16\u4581", // 䖁
+ 0x4582: "\x8c\x17\u4582", // 䖂
+ 0x4583: "\x8c\x17\u4583", // 䖃
+ 0x4584: "\x8c\x17\u4584", // 䖄
+ 0x4585: "\x8c\x18\u4585", // 䖅
+ 0x4586: "\x8c\x18\u4586", // 䖆
+ 0x4587: "\x8c\x1d\u4587", // 䖇
+ 0x4588: "\x8d\x02\u4588", // 䖈
+ 0x4589: "\x8d\x03\u4589", // 䖉
+ 0x458a: "\x8d\x04\u458a", // 䖊
+ 0x458b: "\x8d\x04\u458b", // 䖋
+ 0x458c: "\x8d\x04\u458c", // 䖌
+ 0x458d: "\x8d\x04\u458d", // 䖍
+ 0x458e: "\x8d\x05\u458e", // 䖎
+ 0x458f: "\x8d\x05\u458f", // 䖏
+ 0x4590: "\x8d\x06\u4590", // 䖐
+ 0x4591: "\x8d\x06\u4591", // 䖑
+ 0x4592: "\x8d\a\u4592", // 䖒
+ 0x4593: "\x8d\a\u4593", // 䖓
+ 0x4594: "\x8d\a\u4594", // 䖔
+ 0x4595: "\x8d\a\u4595", // 䖕
+ 0x4596: "\x8d\a\u4596", // 䖖
+ 0x4597: "\x8d\t\u4597", // 䖗
+ 0x4598: "\x8d\n\u4598", // 䖘
+ 0x4599: "\x8d\v\u4599", // 䖙
+ 0x459a: "\x8d\f\u459a", // 䖚
+ 0x459b: "\x8d\f\u459b", // 䖛
+ 0x459c: "\x8d\r\u459c", // 䖜
+ 0x459d: "\x8e\x01\u459d", // 䖝
+ 0x459e: "\x8e\x03\u459e", // 䖞
+ 0x459f: "\x8e\x03\u459f", // 䖟
+ 0x45a0: "\x8e\x03\u45a0", // 䖠
+ 0x45a1: "\x8e\x04\u45a1", // 䖡
+ 0x45a2: "\x8e\x04\u45a2", // 䖢
+ 0x45a3: "\x8e\x04\u45a3", // 䖣
+ 0x45a4: "\x8e\x05\u45a4", // 䖤
+ 0x45a5: "\x8e\x05\u45a5", // 䖥
+ 0x45a6: "\x8e\x05\u45a6", // 䖦
+ 0x45a7: "\x8e\x05\u45a7", // 䖧
+ 0x45a8: "\x8e\x05\u45a8", // 䖨
+ 0x45a9: "\x8e\x05\u45a9", // 䖩
+ 0x45aa: "\x8e\x05\u45aa", // 䖪
+ 0x45ab: "\x8e\x05\u45ab", // 䖫
+ 0x45ac: "\x8e\x05\u45ac", // 䖬
+ 0x45ad: "\x8e\x06\u45ad", // 䖭
+ 0x45ae: "\x8e\x06\u45ae", // 䖮
+ 0x45af: "\x8e\x06\u45af", // 䖯
+ 0x45b0: "\x8e\x06\u45b0", // 䖰
+ 0x45b1: "\x8e\x06\u45b1", // 䖱
+ 0x45b2: "\x8e\x06\u45b2", // 䖲
+ 0x45b3: "\x8e\x06\u45b3", // 䖳
+ 0x45b4: "\x8e\x06\u45b4", // 䖴
+ 0x45b5: "\x8e\x06\u45b5", // 䖵
+ 0x45b6: "\x8e\a\u45b6", // 䖶
+ 0x45b7: "\x8e\a\u45b7", // 䖷
+ 0x45b8: "\x8e\a\u45b8", // 䖸
+ 0x45b9: "\x8e\a\u45b9", // 䖹
+ 0x45ba: "\x8e\a\u45ba", // 䖺
+ 0x45bb: "\x8e\a\u45bb", // 䖻
+ 0x45bc: "\x8e\a\u45bc", // 䖼
+ 0x45bd: "\x8e\a\u45bd", // 䖽
+ 0x45be: "\x8e\a\u45be", // 䖾
+ 0x45bf: "\x8e\b\u45bf", // 䖿
+ 0x45c0: "\x8e\b\u45c0", // 䗀
+ 0x45c1: "\x8e\b\u45c1", // 䗁
+ 0x45c2: "\x8e\b\u45c2", // 䗂
+ 0x45c3: "\x8e\b\u45c3", // 䗃
+ 0x45c4: "\x8e\b\u45c4", // 䗄
+ 0x45c5: "\x8e\b\u45c5", // 䗅
+ 0x45c6: "\x8e\b\u45c6", // 䗆
+ 0x45c7: "\x8e\b\u45c7", // 䗇
+ 0x45c8: "\x8e\b\u45c8", // 䗈
+ 0x45c9: "\x8e\b\u45c9", // 䗉
+ 0x45ca: "\x8e\b\u45ca", // 䗊
+ 0x45cb: "\x8e\t\u45cb", // 䗋
+ 0x45cc: "\x8e\t\u45cc", // 䗌
+ 0x45cd: "\x8e\t\u45cd", // 䗍
+ 0x45ce: "\x8e\t\u45ce", // 䗎
+ 0x45cf: "\x8e\t\u45cf", // 䗏
+ 0x45d0: "\x8e\t\u45d0", // 䗐
+ 0x45d1: "\x8e\t\u45d1", // 䗑
+ 0x45d2: "\x8e\t\u45d2", // 䗒
+ 0x45d3: "\x8e\t\u45d3", // 䗓
+ 0x45d4: "\x8e\t\u45d4", // 䗔
+ 0x45d5: "\x8e\b\u45d5", // 䗕
+ 0x45d6: "\x8e\t\u45d6", // 䗖
+ 0x45d7: "\x8e\n\u45d7", // 䗗
+ 0x45d8: "\x8e\n\u45d8", // 䗘
+ 0x45d9: "\x8e\n\u45d9", // 䗙
+ 0x45da: "\x8e\n\u45da", // 䗚
+ 0x45db: "\x8e\n\u45db", // 䗛
+ 0x45dc: "\x8e\n\u45dc", // 䗜
+ 0x45dd: "\x8e\n\u45dd", // 䗝
+ 0x45de: "\x8e\n\u45de", // 䗞
+ 0x45df: "\x8e\v\u45df", // 䗟
+ 0x45e0: "\x8e\v\u45e0", // 䗠
+ 0x45e1: "\x8e\v\u45e1", // 䗡
+ 0x45e2: "\x8e\v\u45e2", // 䗢
+ 0x45e3: "\x8e\v\u45e3", // 䗣
+ 0x45e4: "\x8e\v\u45e4", // 䗤
+ 0x45e5: "\x8e\v\u45e5", // 䗥
+ 0x45e6: "\x8e\v\u45e6", // 䗦
+ 0x45e7: "\x8e\v\u45e7", // 䗧
+ 0x45e8: "\x8e\v\u45e8", // 䗨
+ 0x45e9: "\x8e\v\u45e9", // 䗩
+ 0x45ea: "\x8e\v\u45ea", // 䗪
+ 0x45eb: "\x8e\v\u45eb", // 䗫
+ 0x45ec: "\x8e\v\u45ec", // 䗬
+ 0x45ed: "\x8e\v\u45ed", // 䗭
+ 0x45ee: "\x8e\v\u45ee", // 䗮
+ 0x45ef: "\x8e\f\u45ef", // 䗯
+ 0x45f0: "\x8e\f\u45f0", // 䗰
+ 0x45f1: "\x8e\f\u45f1", // 䗱
+ 0x45f2: "\x8e\f\u45f2", // 䗲
+ 0x45f3: "\x8e\f\u45f3", // 䗳
+ 0x45f4: "\x8e\r\u45f4", // 䗴
+ 0x45f5: "\x8e\r\u45f5", // 䗵
+ 0x45f6: "\x8e\r\u45f6", // 䗶
+ 0x45f7: "\x8e\r\u45f7", // 䗷
+ 0x45f8: "\x8e\r\u45f8", // 䗸
+ 0x45f9: "\x8e\r\u45f9", // 䗹
+ 0x45fa: "\x8e\r\u45fa", // 䗺
+ 0x45fb: "\x8e\r\u45fb", // 䗻
+ 0x45fc: "\x8e\x0e\u45fc", // 䗼
+ 0x45fd: "\x8e\x0e\u45fd", // 䗽
+ 0x45fe: "\x8e\x0e\u45fe", // 䗾
+ 0x45ff: "\x8e\x0e\u45ff", // 䗿
+ 0x4600: "\x8e\x0e\u4600", // 䘀
+ 0x4601: "\x8e\x0e\u4601", // 䘁
+ 0x4602: "\x8e\x0f\u4602", // 䘂
+ 0x4603: "\x8e\x0f\u4603", // 䘃
+ 0x4604: "\x8e\x0f\u4604", // 䘄
+ 0x4605: "\x8e\x10\u4605", // 䘅
+ 0x4606: "\x8e\x10\u4606", // 䘆
+ 0x4607: "\x8e\x10\u4607", // 䘇
+ 0x4608: "\x8e\x10\u4608", // 䘈
+ 0x4609: "\x8e\x10\u4609", // 䘉
+ 0x460a: "\x8e\x11\u460a", // 䘊
+ 0x460b: "\x8e\x11\u460b", // 䘋
+ 0x460c: "\x8e\x11\u460c", // 䘌
+ 0x460d: "\x8e\x13\u460d", // 䘍
+ 0x460e: "\x8e\x16\u460e", // 䘎
+ 0x460f: "\x8f\x03\u460f", // 䘏
+ 0x4610: "\x8f\x04\u4610", // 䘐
+ 0x4611: "\x8f\x05\u4611", // 䘑
+ 0x4612: "\x8f\a\u4612", // 䘒
+ 0x4613: "\x8f\b\u4613", // 䘓
+ 0x4614: "\x8f\t\u4614", // 䘔
+ 0x4615: "\x90\x04\u4615", // 䘕
+ 0x4616: "\x90\x06\u4616", // 䘖
+ 0x4617: "\x90\n\u4617", // 䘗
+ 0x4618: "\x90\n\u4618", // 䘘
+ 0x4619: "\x90\x0e\u4619", // 䘙
+ 0x461a: "\x91\x02\u461a", // 䘚
+ 0x461b: "\x91\x02\u461b", // 䘛
+ 0x461c: "\x91\x03\u461c", // 䘜
+ 0x461d: "\x91\x03\u461d", // 䘝
+ 0x461e: "\x91\x03\u461e", // 䘞
+ 0x461f: "\x91\x04\u461f", // 䘟
+ 0x4620: "\x91\x04\u4620", // 䘠
+ 0x4621: "\x91\x04\u4621", // 䘡
+ 0x4622: "\x91\x05\u4622", // 䘢
+ 0x4623: "\x91\x05\u4623", // 䘣
+ 0x4624: "\x91\x05\u4624", // 䘤
+ 0x4625: "\x91\x05\u4625", // 䘥
+ 0x4626: "\x91\x05\u4626", // 䘦
+ 0x4627: "\x91\x05\u4627", // 䘧
+ 0x4628: "\x91\x06\u4628", // 䘨
+ 0x4629: "\x91\x06\u4629", // 䘩
+ 0x462a: "\x91\x06\u462a", // 䘪
+ 0x462b: "\x91\x06\u462b", // 䘫
+ 0x462c: "\x91\x06\u462c", // 䘬
+ 0x462d: "\x91\x06\u462d", // 䘭
+ 0x462e: "\x91\x06\u462e", // 䘮
+ 0x462f: "\x91\a\u462f", // 䘯
+ 0x4630: "\x91\a\u4630", // 䘰
+ 0x4631: "\x91\a\u4631", // 䘱
+ 0x4632: "\x91\a\u4632", // 䘲
+ 0x4633: "\x91\b\u4633", // 䘳
+ 0x4634: "\x91\b\u4634", // 䘴
+ 0x4635: "\x91\b\u4635", // 䘵
+ 0x4636: "\x91\b\u4636", // 䘶
+ 0x4637: "\x91\b\u4637", // 䘷
+ 0x4638: "\x91\b\u4638", // 䘸
+ 0x4639: "\x91\b\u4639", // 䘹
+ 0x463a: "\x91\b\u463a", // 䘺
+ 0x463b: "\x91\b\u463b", // 䘻
+ 0x463c: "\x91\b\u463c", // 䘼
+ 0x463d: "\x91\b\u463d", // 䘽
+ 0x463e: "\x91\b\u463e", // 䘾
+ 0x463f: "\x91\b\u463f", // 䘿
+ 0x4640: "\x91\b\u4640", // 䙀
+ 0x4641: "\x91\b\u4641", // 䙁
+ 0x4642: "\x91\b\u4642", // 䙂
+ 0x4643: "\x91\t\u4643", // 䙃
+ 0x4644: "\x91\t\u4644", // 䙄
+ 0x4645: "\x91\t\u4645", // 䙅
+ 0x4646: "\x91\t\u4646", // 䙆
+ 0x4647: "\x91\t\u4647", // 䙇
+ 0x4648: "\x91\t\u4648", // 䙈
+ 0x4649: "\x91\t\u4649", // 䙉
+ 0x464a: "\x91\t\u464a", // 䙊
+ 0x464b: "\x91\t\u464b", // 䙋
+ 0x464c: "\x91\t\u464c", // 䙌
+ 0x464d: "\x91\t\u464d", // 䙍
+ 0x464e: "\x91\n\u464e", // 䙎
+ 0x464f: "\x91\n\u464f", // 䙏
+ 0x4650: "\x91\n\u4650", // 䙐
+ 0x4651: "\x91\n\u4651", // 䙑
+ 0x4652: "\x91\n\u4652", // 䙒
+ 0x4653: "\x91\n\u4653", // 䙓
+ 0x4654: "\x91\v\u4654", // 䙔
+ 0x4655: "\x91\v\u4655", // 䙕
+ 0x4656: "\x91\v\u4656", // 䙖
+ 0x4657: "\x91\v\u4657", // 䙗
+ 0x4658: "\x91\v\u4658", // 䙘
+ 0x4659: "\x91\v\u4659", // 䙙
+ 0x465a: "\x91\v\u465a", // 䙚
+ 0x465b: "\x91\v\u465b", // 䙛
+ 0x465c: "\x91\v\u465c", // 䙜
+ 0x465d: "\x91\v\u465d", // 䙝
+ 0x465e: "\x91\f\u465e", // 䙞
+ 0x465f: "\x91\f\u465f", // 䙟
+ 0x4660: "\x91\f\u4660", // 䙠
+ 0x4661: "\x91\f\u4661", // 䙡
+ 0x4662: "\x91\f\u4662", // 䙢
+ 0x4663: "\x91\f\u4663", // 䙣
+ 0x4664: "\x91\r\u4664", // 䙤
+ 0x4665: "\x91\r\u4665", // 䙥
+ 0x4666: "\x91\x0e\u4666", // 䙦
+ 0x4667: "\x91\x0e\u4667", // 䙧
+ 0x4668: "\x91\x0e\u4668", // 䙨
+ 0x4669: "\x91\x0e\u4669", // 䙩
+ 0x466a: "\x91\x0f\u466a", // 䙪
+ 0x466b: "\x91\x10\u466b", // 䙫
+ 0x466c: "\x91\x11\u466c", // 䙬
+ 0x466d: "\x91\x11\u466d", // 䙭
+ 0x466e: "\x91\x12\u466e", // 䙮
+ 0x466f: "\x91\x12\u466f", // 䙯
+ 0x4670: "\x91\x13\u4670", // 䙰
+ 0x4671: "\x91\x15\u4671", // 䙱
+ 0x4672: "\x92\x03\u4672", // 䙲
+ 0x4673: "\x92\x04\u4673", // 䙳
+ 0x4674: "\x92\x05\u4674", // 䙴
+ 0x4675: "\x92\x06\u4675", // 䙵
+ 0x4676: "\x92\x06\u4676", // 䙶
+ 0x4677: "\x93\x03\u4677", // 䙷
+ 0x4678: "\x93\x03\u4678", // 䙸
+ 0x4679: "\x93\x04\u4679", // 䙹
+ 0x467a: "\x93\x04\u467a", // 䙺
+ 0x467b: "\x93\x04\u467b", // 䙻
+ 0x467c: "\x93\x05\u467c", // 䙼
+ 0x467d: "\x93\x05\u467d", // 䙽
+ 0x467e: "\x93\x05\u467e", // 䙾
+ 0x467f: "\x93\x05\u467f", // 䙿
+ 0x4680: "\x93\x06\u4680", // 䚀
+ 0x4681: "\x93\x06\u4681", // 䚁
+ 0x4682: "\x93\a\u4682", // 䚂
+ 0x4683: "\x93\a\u4683", // 䚃
+ 0x4684: "\x93\b\u4684", // 䚄
+ 0x4685: "\x93\b\u4685", // 䚅
+ 0x4686: "\x93\t\u4686", // 䚆
+ 0x4687: "\x93\t\u4687", // 䚇
+ 0x4688: "\x93\t\u4688", // 䚈
+ 0x4689: "\x93\t\u4689", // 䚉
+ 0x468a: "\x93\n\u468a", // 䚊
+ 0x468b: "\x93\n\u468b", // 䚋
+ 0x468c: "\x93\n\u468c", // 䚌
+ 0x468d: "\x93\v\u468d", // 䚍
+ 0x468e: "\x93\v\u468e", // 䚎
+ 0x468f: "\x93\f\u468f", // 䚏
+ 0x4690: "\x93\f\u4690", // 䚐
+ 0x4691: "\x93\f\u4691", // 䚑
+ 0x4692: "\x93\f\u4692", // 䚒
+ 0x4693: "\x93\f\u4693", // 䚓
+ 0x4694: "\x93\x0e\u4694", // 䚔
+ 0x4695: "\x93\x13\u4695", // 䚕
+ 0x4696: "\x93\x18\u4696", // 䚖
+ 0x4697: "\x94\x04\u4697", // 䚗
+ 0x4698: "\x94\x06\u4698", // 䚘
+ 0x4699: "\x94\x06\u4699", // 䚙
+ 0x469a: "\x94\x06\u469a", // 䚚
+ 0x469b: "\x94\a\u469b", // 䚛
+ 0x469c: "\x94\b\u469c", // 䚜
+ 0x469d: "\x94\b\u469d", // 䚝
+ 0x469e: "\x94\b\u469e", // 䚞
+ 0x469f: "\x94\b\u469f", // 䚟
+ 0x46a0: "\x94\b\u46a0", // 䚠
+ 0x46a1: "\x94\t\u46a1", // 䚡
+ 0x46a2: "\x94\t\u46a2", // 䚢
+ 0x46a3: "\x94\t\u46a3", // 䚣
+ 0x46a4: "\x94\t\u46a4", // 䚤
+ 0x46a5: "\x94\n\u46a5", // 䚥
+ 0x46a6: "\x94\n\u46a6", // 䚦
+ 0x46a7: "\x94\v\u46a7", // 䚧
+ 0x46a8: "\x94\f\u46a8", // 䚨
+ 0x46a9: "\x94\f\u46a9", // 䚩
+ 0x46aa: "\x94\r\u46aa", // 䚪
+ 0x46ab: "\x94\r\u46ab", // 䚫
+ 0x46ac: "\x94\f\u46ac", // 䚬
+ 0x46ad: "\x94\x12\u46ad", // 䚭
+ 0x46ae: "\x95\x02\u46ae", // 䚮
+ 0x46af: "\x95\x02\u46af", // 䚯
+ 0x46b0: "\x95\x02\u46b0", // 䚰
+ 0x46b1: "\x95\x03\u46b1", // 䚱
+ 0x46b2: "\x95\x03\u46b2", // 䚲
+ 0x46b3: "\x95\x04\u46b3", // 䚳
+ 0x46b4: "\x95\x04\u46b4", // 䚴
+ 0x46b5: "\x95\x04\u46b5", // 䚵
+ 0x46b6: "\x95\x04\u46b6", // 䚶
+ 0x46b7: "\x95\x04\u46b7", // 䚷
+ 0x46b8: "\x95\x04\u46b8", // 䚸
+ 0x46b9: "\x95\x04\u46b9", // 䚹
+ 0x46ba: "\x95\x04\u46ba", // 䚺
+ 0x46bb: "\x95\x04\u46bb", // 䚻
+ 0x46bc: "\x95\x04\u46bc", // 䚼
+ 0x46bd: "\x95\x04\u46bd", // 䚽
+ 0x46be: "\x95\x04\u46be", // 䚾
+ 0x46bf: "\x95\x04\u46bf", // 䚿
+ 0x46c0: "\x95\x04\u46c0", // 䛀
+ 0x46c1: "\x95\x04\u46c1", // 䛁
+ 0x46c2: "\x95\x04\u46c2", // 䛂
+ 0x46c3: "\x95\x04\u46c3", // 䛃
+ 0x46c4: "\x95\x05\u46c4", // 䛄
+ 0x46c5: "\x95\x05\u46c5", // 䛅
+ 0x46c6: "\x95\x05\u46c6", // 䛆
+ 0x46c7: "\x95\x05\u46c7", // 䛇
+ 0x46c8: "\x95\x05\u46c8", // 䛈
+ 0x46c9: "\x95\x05\u46c9", // 䛉
+ 0x46ca: "\x95\x05\u46ca", // 䛊
+ 0x46cb: "\x95\x05\u46cb", // 䛋
+ 0x46cc: "\x95\x05\u46cc", // 䛌
+ 0x46cd: "\x95\x05\u46cd", // 䛍
+ 0x46ce: "\x95\x05\u46ce", // 䛎
+ 0x46cf: "\x95\x05\u46cf", // 䛏
+ 0x46d0: "\x95\x05\u46d0", // 䛐
+ 0x46d1: "\x95\x05\u46d1", // 䛑
+ 0x46d2: "\x95\x05\u46d2", // 䛒
+ 0x46d3: "\x95\x05\u46d3", // 䛓
+ 0x46d4: "\x95\x06\u46d4", // 䛔
+ 0x46d5: "\x95\x06\u46d5", // 䛕
+ 0x46d6: "\x95\x06\u46d6", // 䛖
+ 0x46d7: "\x95\x06\u46d7", // 䛗
+ 0x46d8: "\x95\x06\u46d8", // 䛘
+ 0x46d9: "\x95\x06\u46d9", // 䛙
+ 0x46da: "\x95\x06\u46da", // 䛚
+ 0x46db: "\x95\x06\u46db", // 䛛
+ 0x46dc: "\x95\x06\u46dc", // 䛜
+ 0x46dd: "\x95\a\u46dd", // 䛝
+ 0x46de: "\x95\a\u46de", // 䛞
+ 0x46df: "\x95\a\u46df", // 䛟
+ 0x46e0: "\x95\a\u46e0", // 䛠
+ 0x46e1: "\x95\a\u46e1", // 䛡
+ 0x46e2: "\x95\a\u46e2", // 䛢
+ 0x46e3: "\x95\a\u46e3", // 䛣
+ 0x46e4: "\x95\a\u46e4", // 䛤
+ 0x46e5: "\x95\a\u46e5", // 䛥
+ 0x46e6: "\x95\a\u46e6", // 䛦
+ 0x46e7: "\x95\a\u46e7", // 䛧
+ 0x46e8: "\x95\a\u46e8", // 䛨
+ 0x46e9: "\x95\b\u46e9", // 䛩
+ 0x46ea: "\x95\b\u46ea", // 䛪
+ 0x46eb: "\x95\b\u46eb", // 䛫
+ 0x46ec: "\x95\b\u46ec", // 䛬
+ 0x46ed: "\x95\b\u46ed", // 䛭
+ 0x46ee: "\x95\b\u46ee", // 䛮
+ 0x46ef: "\x95\b\u46ef", // 䛯
+ 0x46f0: "\x95\b\u46f0", // 䛰
+ 0x46f1: "\x95\b\u46f1", // 䛱
+ 0x46f2: "\x95\b\u46f2", // 䛲
+ 0x46f3: "\x95\b\u46f3", // 䛳
+ 0x46f4: "\x95\b\u46f4", // 䛴
+ 0x46f5: "\x95\b\u46f5", // 䛵
+ 0x46f6: "\x95\b\u46f6", // 䛶
+ 0x46f7: "\x95\b\u46f7", // 䛷
+ 0x46f8: "\x95\b\u46f8", // 䛸
+ 0x46f9: "\x95\t\u46f9", // 䛹
+ 0x46fa: "\x95\t\u46fa", // 䛺
+ 0x46fb: "\x95\t\u46fb", // 䛻
+ 0x46fc: "\x95\t\u46fc", // 䛼
+ 0x46fd: "\x95\t\u46fd", // 䛽
+ 0x46fe: "\x95\n\u46fe", // 䛾
+ 0x46ff: "\x95\n\u46ff", // 䛿
+ 0x4700: "\x95\n\u4700", // 䜀
+ 0x4701: "\x95\n\u4701", // 䜁
+ 0x4702: "\x95\n\u4702", // 䜂
+ 0x4703: "\x95\v\u4703", // 䜃
+ 0x4704: "\x95\v\u4704", // 䜄
+ 0x4705: "\x95\v\u4705", // 䜅
+ 0x4706: "\x95\v\u4706", // 䜆
+ 0x4707: "\x95\v\u4707", // 䜇
+ 0x4708: "\x95\v\u4708", // 䜈
+ 0x4709: "\x95\v\u4709", // 䜉
+ 0x470a: "\x95\v\u470a", // 䜊
+ 0x470b: "\x95\f\u470b", // 䜋
+ 0x470c: "\x95\f\u470c", // 䜌
+ 0x470d: "\x95\f\u470d", // 䜍
+ 0x470e: "\x95\f\u470e", // 䜎
+ 0x470f: "\x95\f\u470f", // 䜏
+ 0x4710: "\x95\f\u4710", // 䜐
+ 0x4711: "\x95\f\u4711", // 䜑
+ 0x4712: "\x95\r\u4712", // 䜒
+ 0x4713: "\x95\r\u4713", // 䜓
+ 0x4714: "\x95\r\u4714", // 䜔
+ 0x4715: "\x95\r\u4715", // 䜕
+ 0x4716: "\x95\r\u4716", // 䜖
+ 0x4717: "\x95\r\u4717", // 䜗
+ 0x4718: "\x95\r\u4718", // 䜘
+ 0x4719: "\x95\x0e\u4719", // 䜙
+ 0x471a: "\x95\x0e\u471a", // 䜚
+ 0x471b: "\x95\x0e\u471b", // 䜛
+ 0x471c: "\x95\x0e\u471c", // 䜜
+ 0x471d: "\x95\x0e\u471d", // 䜝
+ 0x471e: "\x95\x0e\u471e", // 䜞
+ 0x471f: "\x95\x0f\u471f", // 䜟
+ 0x4720: "\x95\x0f\u4720", // 䜠
+ 0x4721: "\x95\x0f\u4721", // 䜡
+ 0x4722: "\x95\x10\u4722", // 䜢
+ 0x4723: "\x95\x04\u4723", // 䜣
+ 0x4724: "\x95\x06\u4724", // 䜤
+ 0x4725: "\x95\b\u4725", // 䜥
+ 0x4726: "\x95\n\u4726", // 䜦
+ 0x4727: "\x95\n\u4727", // 䜧
+ 0x4728: "\x95\v\u4728", // 䜨
+ 0x4729: "\x95\x10\u4729", // 䜩
+ 0x472a: "\x96\x02\u472a", // 䜪
+ 0x472b: "\x96\x03\u472b", // 䜫
+ 0x472c: "\x96\x05\u472c", // 䜬
+ 0x472d: "\x96\x05\u472d", // 䜭
+ 0x472e: "\x96\a\u472e", // 䜮
+ 0x472f: "\x96\b\u472f", // 䜯
+ 0x4730: "\x96\n\u4730", // 䜰
+ 0x4731: "\x96\v\u4731", // 䜱
+ 0x4732: "\x96\x0f\u4732", // 䜲
+ 0x4733: "\x97\x01\u4733", // 䜳
+ 0x4734: "\x97\x04\u4734", // 䜴
+ 0x4735: "\x97\x05\u4735", // 䜵
+ 0x4736: "\x97\x06\u4736", // 䜶
+ 0x4737: "\x97\a\u4737", // 䜷
+ 0x4738: "\x97\a\u4738", // 䜸
+ 0x4739: "\x97\a\u4739", // 䜹
+ 0x473a: "\x97\b\u473a", // 䜺
+ 0x473b: "\x97\t\u473b", // 䜻
+ 0x473c: "\x97\t\u473c", // 䜼
+ 0x473d: "\x97\t\u473d", // 䜽
+ 0x473e: "\x97\t\u473e", // 䜾
+ 0x473f: "\x97\t\u473f", // 䜿
+ 0x4740: "\x97\n\u4740", // 䝀
+ 0x4741: "\x97\n\u4741", // 䝁
+ 0x4742: "\x97\n\u4742", // 䝂
+ 0x4743: "\x97\x0e\u4743", // 䝃
+ 0x4744: "\x97\x12\u4744", // 䝄
+ 0x4745: "\x98\x03\u4745", // 䝅
+ 0x4746: "\x98\x04\u4746", // 䝆
+ 0x4747: "\x98\x04\u4747", // 䝇
+ 0x4748: "\x98\x05\u4748", // 䝈
+ 0x4749: "\x98\x06\u4749", // 䝉
+ 0x474a: "\x98\b\u474a", // 䝊
+ 0x474b: "\x98\b\u474b", // 䝋
+ 0x474c: "\x98\b\u474c", // 䝌
+ 0x474d: "\x98\t\u474d", // 䝍
+ 0x474e: "\x98\t\u474e", // 䝎
+ 0x474f: "\x98\v\u474f", // 䝏
+ 0x4750: "\x98\f\u4750", // 䝐
+ 0x4751: "\x98\f\u4751", // 䝑
+ 0x4752: "\x98\x0e\u4752", // 䝒
+ 0x4753: "\x98\x0f\u4753", // 䝓
+ 0x4754: "\x98\x12\u4754", // 䝔
+ 0x4755: "\x98\x12\u4755", // 䝕
+ 0x4756: "\x99\x04\u4756", // 䝖
+ 0x4757: "\x99\x04\u4757", // 䝗
+ 0x4758: "\x99\x04\u4758", // 䝘
+ 0x4759: "\x99\x04\u4759", // 䝙
+ 0x475a: "\x99\x05\u475a", // 䝚
+ 0x475b: "\x99\x05\u475b", // 䝛
+ 0x475c: "\x99\a\u475c", // 䝜
+ 0x475d: "\x99\b\u475d", // 䝝
+ 0x475e: "\x99\b\u475e", // 䝞
+ 0x475f: "\x99\t\u475f", // 䝟
+ 0x4760: "\x99\n\u4760", // 䝠
+ 0x4761: "\x99\v\u4761", // 䝡
+ 0x4762: "\x99\v\u4762", // 䝢
+ 0x4763: "\x99\f\u4763", // 䝣
+ 0x4764: "\x99\f\u4764", // 䝤
+ 0x4765: "\x99\f\u4765", // 䝥
+ 0x4766: "\x99\f\u4766", // 䝦
+ 0x4767: "\x9a\x04\u4767", // 䝧
+ 0x4768: "\x9a\x04\u4768", // 䝨
+ 0x4769: "\x9a\x05\u4769", // 䝩
+ 0x476a: "\x9a\x05\u476a", // 䝪
+ 0x476b: "\x9a\x05\u476b", // 䝫
+ 0x476c: "\x9a\x05\u476c", // 䝬
+ 0x476d: "\x9a\x05\u476d", // 䝭
+ 0x476e: "\x9a\x05\u476e", // 䝮
+ 0x476f: "\x9a\x05\u476f", // 䝯
+ 0x4770: "\x9a\x06\u4770", // 䝰
+ 0x4771: "\x9a\x06\u4771", // 䝱
+ 0x4772: "\x9a\x06\u4772", // 䝲
+ 0x4773: "\x9a\a\u4773", // 䝳
+ 0x4774: "\x9a\a\u4774", // 䝴
+ 0x4775: "\x9a\a\u4775", // 䝵
+ 0x4776: "\x9a\b\u4776", // 䝶
+ 0x4777: "\x9a\b\u4777", // 䝷
+ 0x4778: "\x9a\b\u4778", // 䝸
+ 0x4779: "\x9a\b\u4779", // 䝹
+ 0x477a: "\x9a\b\u477a", // 䝺
+ 0x477b: "\x9a\b\u477b", // 䝻
+ 0x477c: "\x9a\b\u477c", // 䝼
+ 0x477d: "\x9a\b\u477d", // 䝽
+ 0x477e: "\x9a\b\u477e", // 䝾
+ 0x477f: "\x9a\b\u477f", // 䝿
+ 0x4780: "\x9a\t\u4780", // 䞀
+ 0x4781: "\x9a\t\u4781", // 䞁
+ 0x4782: "\x9a\t\u4782", // 䞂
+ 0x4783: "\x9a\t\u4783", // 䞃
+ 0x4784: "\x9a\t\u4784", // 䞄
+ 0x4785: "\x9a\n\u4785", // 䞅
+ 0x4786: "\x9a\n\u4786", // 䞆
+ 0x4787: "\x9a\v\u4787", // 䞇
+ 0x4788: "\x9a\f\u4788", // 䞈
+ 0x4789: "\x9a\r\u4789", // 䞉
+ 0x478a: "\x9a\x0f\u478a", // 䞊
+ 0x478b: "\x9a\x10\u478b", // 䞋
+ 0x478c: "\x9a\x06\u478c", // 䞌
+ 0x478d: "\x9a\b\u478d", // 䞍
+ 0x478e: "\x9a\b\u478e", // 䞎
+ 0x478f: "\x9a\t\u478f", // 䞏
+ 0x4790: "\x9a\t\u4790", // 䞐
+ 0x4791: "\x9b\x03\u4791", // 䞑
+ 0x4792: "\x9b\x06\u4792", // 䞒
+ 0x4793: "\x9b\a\u4793", // 䞓
+ 0x4794: "\x9b\a\u4794", // 䞔
+ 0x4795: "\x9b\x0e\u4795", // 䞕
+ 0x4796: "\x9c\x03\u4796", // 䞖
+ 0x4797: "\x9c\x03\u4797", // 䞗
+ 0x4798: "\x9c\x03\u4798", // 䞘
+ 0x4799: "\x9c\x04\u4799", // 䞙
+ 0x479a: "\x9c\x04\u479a", // 䞚
+ 0x479b: "\x9c\x04\u479b", // 䞛
+ 0x479c: "\x9c\x04\u479c", // 䞜
+ 0x479d: "\x9c\x05\u479d", // 䞝
+ 0x479e: "\x9c\x05\u479e", // 䞞
+ 0x479f: "\x9c\x05\u479f", // 䞟
+ 0x47a0: "\x9c\x05\u47a0", // 䞠
+ 0x47a1: "\x9c\x05\u47a1", // 䞡
+ 0x47a2: "\x9c\x05\u47a2", // 䞢
+ 0x47a3: "\x9c\x05\u47a3", // 䞣
+ 0x47a4: "\x9c\x05\u47a4", // 䞤
+ 0x47a5: "\x9c\x06\u47a5", // 䞥
+ 0x47a6: "\x9c\x06\u47a6", // 䞦
+ 0x47a7: "\x9c\x06\u47a7", // 䞧
+ 0x47a8: "\x9c\x06\u47a8", // 䞨
+ 0x47a9: "\x9c\x06\u47a9", // 䞩
+ 0x47aa: "\x9c\x06\u47aa", // 䞪
+ 0x47ab: "\x9c\a\u47ab", // 䞫
+ 0x47ac: "\x9c\a\u47ac", // 䞬
+ 0x47ad: "\x9c\a\u47ad", // 䞭
+ 0x47ae: "\x9c\a\u47ae", // 䞮
+ 0x47af: "\x9c\a\u47af", // 䞯
+ 0x47b0: "\x9c\a\u47b0", // 䞰
+ 0x47b1: "\x9c\a\u47b1", // 䞱
+ 0x47b2: "\x9c\a\u47b2", // 䞲
+ 0x47b3: "\x9c\b\u47b3", // 䞳
+ 0x47b4: "\x9c\b\u47b4", // 䞴
+ 0x47b5: "\x9c\b\u47b5", // 䞵
+ 0x47b6: "\x9c\b\u47b6", // 䞶
+ 0x47b7: "\x9c\b\u47b7", // 䞷
+ 0x47b8: "\x9c\b\u47b8", // 䞸
+ 0x47b9: "\x9c\t\u47b9", // 䞹
+ 0x47ba: "\x9c\t\u47ba", // 䞺
+ 0x47bb: "\x9c\t\u47bb", // 䞻
+ 0x47bc: "\x9c\t\u47bc", // 䞼
+ 0x47bd: "\x9c\n\u47bd", // 䞽
+ 0x47be: "\x9c\n\u47be", // 䞾
+ 0x47bf: "\x9c\n\u47bf", // 䞿
+ 0x47c0: "\x9c\n\u47c0", // 䟀
+ 0x47c1: "\x9c\v\u47c1", // 䟁
+ 0x47c2: "\x9c\v\u47c2", // 䟂
+ 0x47c3: "\x9c\v\u47c3", // 䟃
+ 0x47c4: "\x9c\v\u47c4", // 䟄
+ 0x47c5: "\x9c\v\u47c5", // 䟅
+ 0x47c6: "\x9c\v\u47c6", // 䟆
+ 0x47c7: "\x9c\f\u47c7", // 䟇
+ 0x47c8: "\x9c\r\u47c8", // 䟈
+ 0x47c9: "\x9c\r\u47c9", // 䟉
+ 0x47ca: "\x9c\r\u47ca", // 䟊
+ 0x47cb: "\x9c\r\u47cb", // 䟋
+ 0x47cc: "\x9c\x0e\u47cc", // 䟌
+ 0x47cd: "\x9c\x0f\u47cd", // 䟍
+ 0x47ce: "\x9c\x0f\u47ce", // 䟎
+ 0x47cf: "\x9c\x0f\u47cf", // 䟏
+ 0x47d0: "\x9c\x10\u47d0", // 䟐
+ 0x47d1: "\x9c\x11\u47d1", // 䟑
+ 0x47d2: "\x9c\x12\u47d2", // 䟒
+ 0x47d3: "\x9d\x02\u47d3", // 䟓
+ 0x47d4: "\x9d\x02\u47d4", // 䟔
+ 0x47d5: "\x9d\x03\u47d5", // 䟕
+ 0x47d6: "\x9d\x03\u47d6", // 䟖
+ 0x47d7: "\x9d\x04\u47d7", // 䟗
+ 0x47d8: "\x9d\x04\u47d8", // 䟘
+ 0x47d9: "\x9d\x04\u47d9", // 䟙
+ 0x47da: "\x9d\x04\u47da", // 䟚
+ 0x47db: "\x9d\x04\u47db", // 䟛
+ 0x47dc: "\x9d\x04\u47dc", // 䟜
+ 0x47dd: "\x9d\x04\u47dd", // 䟝
+ 0x47de: "\x9d\x04\u47de", // 䟞
+ 0x47df: "\x9d\x05\u47df", // 䟟
+ 0x47e0: "\x9d\x05\u47e0", // 䟠
+ 0x47e1: "\x9d\x05\u47e1", // 䟡
+ 0x47e2: "\x9d\x05\u47e2", // 䟢
+ 0x47e3: "\x9d\x05\u47e3", // 䟣
+ 0x47e4: "\x9d\x05\u47e4", // 䟤
+ 0x47e5: "\x9d\x05\u47e5", // 䟥
+ 0x47e6: "\x9d\x05\u47e6", // 䟦
+ 0x47e7: "\x9d\x05\u47e7", // 䟧
+ 0x47e8: "\x9d\x05\u47e8", // 䟨
+ 0x47e9: "\x9d\x05\u47e9", // 䟩
+ 0x47ea: "\x9d\x05\u47ea", // 䟪
+ 0x47eb: "\x9d\x05\u47eb", // 䟫
+ 0x47ec: "\x9d\x05\u47ec", // 䟬
+ 0x47ed: "\x9d\x05\u47ed", // 䟭
+ 0x47ee: "\x9d\x06\u47ee", // 䟮
+ 0x47ef: "\x9d\x06\u47ef", // 䟯
+ 0x47f0: "\x9d\x06\u47f0", // 䟰
+ 0x47f1: "\x9d\x06\u47f1", // 䟱
+ 0x47f2: "\x9d\x06\u47f2", // 䟲
+ 0x47f3: "\x9d\x06\u47f3", // 䟳
+ 0x47f4: "\x9d\a\u47f4", // 䟴
+ 0x47f5: "\x9d\a\u47f5", // 䟵
+ 0x47f6: "\x9d\a\u47f6", // 䟶
+ 0x47f7: "\x9d\a\u47f7", // 䟷
+ 0x47f8: "\x9d\a\u47f8", // 䟸
+ 0x47f9: "\x9d\a\u47f9", // 䟹
+ 0x47fa: "\x9d\a\u47fa", // 䟺
+ 0x47fb: "\x9d\a\u47fb", // 䟻
+ 0x47fc: "\x9d\b\u47fc", // 䟼
+ 0x47fd: "\x9d\a\u47fd", // 䟽
+ 0x47fe: "\x9d\b\u47fe", // 䟾
+ 0x47ff: "\x9d\b\u47ff", // 䟿
+ 0x4800: "\x9d\b\u4800", // 䠀
+ 0x4801: "\x9d\b\u4801", // 䠁
+ 0x4802: "\x9d\b\u4802", // 䠂
+ 0x4803: "\x9d\b\u4803", // 䠃
+ 0x4804: "\x9d\b\u4804", // 䠄
+ 0x4805: "\x9d\b\u4805", // 䠅
+ 0x4806: "\x9d\b\u4806", // 䠆
+ 0x4807: "\x9d\b\u4807", // 䠇
+ 0x4808: "\x9d\b\u4808", // 䠈
+ 0x4809: "\x9d\b\u4809", // 䠉
+ 0x480a: "\x9d\b\u480a", // 䠊
+ 0x480b: "\x9d\b\u480b", // 䠋
+ 0x480c: "\x9d\b\u480c", // 䠌
+ 0x480d: "\x9d\t\u480d", // 䠍
+ 0x480e: "\x9d\t\u480e", // 䠎
+ 0x480f: "\x9d\t\u480f", // 䠏
+ 0x4810: "\x9d\t\u4810", // 䠐
+ 0x4811: "\x9d\t\u4811", // 䠑
+ 0x4812: "\x9d\t\u4812", // 䠒
+ 0x4813: "\x9d\t\u4813", // 䠓
+ 0x4814: "\x9d\t\u4814", // 䠔
+ 0x4815: "\x9d\t\u4815", // 䠕
+ 0x4816: "\x9d\t\u4816", // 䠖
+ 0x4817: "\x9d\n\u4817", // 䠗
+ 0x4818: "\x9d\n\u4818", // 䠘
+ 0x4819: "\x9d\n\u4819", // 䠙
+ 0x481a: "\x9d\n\u481a", // 䠚
+ 0x481b: "\x9d\n\u481b", // 䠛
+ 0x481c: "\x9d\n\u481c", // 䠜
+ 0x481d: "\x9d\n\u481d", // 䠝
+ 0x481e: "\x9d\v\u481e", // 䠞
+ 0x481f: "\x9d\v\u481f", // 䠟
+ 0x4820: "\x9d\v\u4820", // 䠠
+ 0x4821: "\x9d\v\u4821", // 䠡
+ 0x4822: "\x9d\v\u4822", // 䠢
+ 0x4823: "\x9d\f\u4823", // 䠣
+ 0x4824: "\x9d\f\u4824", // 䠤
+ 0x4825: "\x9d\f\u4825", // 䠥
+ 0x4826: "\x9d\f\u4826", // 䠦
+ 0x4827: "\x9d\f\u4827", // 䠧
+ 0x4828: "\x9d\r\u4828", // 䠨
+ 0x4829: "\x9d\r\u4829", // 䠩
+ 0x482a: "\x9d\x0e\u482a", // 䠪
+ 0x482b: "\x9d\x0e\u482b", // 䠫
+ 0x482c: "\x9d\x0f\u482c", // 䠬
+ 0x482d: "\x9d\x10\u482d", // 䠭
+ 0x482e: "\x9d\x10\u482e", // 䠮
+ 0x482f: "\x9d\x11\u482f", // 䠯
+ 0x4830: "\x9d\x12\u4830", // 䠰
+ 0x4831: "\x9d\x15\u4831", // 䠱
+ 0x4832: "\x9e\x05\u4832", // 䠲
+ 0x4833: "\x9e\x05\u4833", // 䠳
+ 0x4834: "\x9e\x05\u4834", // 䠴
+ 0x4835: "\x9e\x05\u4835", // 䠵
+ 0x4836: "\x9e\x05\u4836", // 䠶
+ 0x4837: "\x9e\x06\u4837", // 䠷
+ 0x4838: "\x9e\x06\u4838", // 䠸
+ 0x4839: "\x9e\x06\u4839", // 䠹
+ 0x483a: "\x9e\x06\u483a", // 䠺
+ 0x483b: "\x9e\b\u483b", // 䠻
+ 0x483c: "\x9e\t\u483c", // 䠼
+ 0x483d: "\x9e\n\u483d", // 䠽
+ 0x483e: "\x9e\n\u483e", // 䠾
+ 0x483f: "\x9e\f\u483f", // 䠿
+ 0x4840: "\x9e\r\u4840", // 䡀
+ 0x4841: "\x9e\x10\u4841", // 䡁
+ 0x4842: "\x9f\x02\u4842", // 䡂
+ 0x4843: "\x9f\x02\u4843", // 䡃
+ 0x4844: "\x9f\x02\u4844", // 䡄
+ 0x4845: "\x9f\x03\u4845", // 䡅
+ 0x4846: "\x9f\x04\u4846", // 䡆
+ 0x4847: "\x9f\x04\u4847", // 䡇
+ 0x4848: "\x9f\x04\u4848", // 䡈
+ 0x4849: "\x9f\x04\u4849", // 䡉
+ 0x484a: "\x9f\x04\u484a", // 䡊
+ 0x484b: "\x9f\x04\u484b", // 䡋
+ 0x484c: "\x9f\x04\u484c", // 䡌
+ 0x484d: "\x9f\x04\u484d", // 䡍
+ 0x484e: "\x9f\x04\u484e", // 䡎
+ 0x484f: "\x9f\x05\u484f", // 䡏
+ 0x4850: "\x9f\x05\u4850", // 䡐
+ 0x4851: "\x9f\x05\u4851", // 䡑
+ 0x4852: "\x9f\x05\u4852", // 䡒
+ 0x4853: "\x9f\x06\u4853", // 䡓
+ 0x4854: "\x9f\x06\u4854", // 䡔
+ 0x4855: "\x9f\x06\u4855", // 䡕
+ 0x4856: "\x9f\x06\u4856", // 䡖
+ 0x4857: "\x9f\x06\u4857", // 䡗
+ 0x4858: "\x9f\a\u4858", // 䡘
+ 0x4859: "\x9f\a\u4859", // 䡙
+ 0x485a: "\x9f\a\u485a", // 䡚
+ 0x485b: "\x9f\a\u485b", // 䡛
+ 0x485c: "\x9f\b\u485c", // 䡜
+ 0x485d: "\x9f\b\u485d", // 䡝
+ 0x485e: "\x9f\b\u485e", // 䡞
+ 0x485f: "\x9f\b\u485f", // 䡟
+ 0x4860: "\x9f\t\u4860", // 䡠
+ 0x4861: "\x9f\t\u4861", // 䡡
+ 0x4862: "\x9f\t\u4862", // 䡢
+ 0x4863: "\x9f\t\u4863", // 䡣
+ 0x4864: "\x9f\t\u4864", // 䡤
+ 0x4865: "\x9f\n\u4865", // 䡥
+ 0x4866: "\x9f\n\u4866", // 䡦
+ 0x4867: "\x9f\n\u4867", // 䡧
+ 0x4868: "\x9f\n\u4868", // 䡨
+ 0x4869: "\x9f\n\u4869", // 䡩
+ 0x486a: "\x9f\n\u486a", // 䡪
+ 0x486b: "\x9f\v\u486b", // 䡫
+ 0x486c: "\x9f\v\u486c", // 䡬
+ 0x486d: "\x9f\v\u486d", // 䡭
+ 0x486e: "\x9f\v\u486e", // 䡮
+ 0x486f: "\x9f\v\u486f", // 䡯
+ 0x4870: "\x9f\v\u4870", // 䡰
+ 0x4871: "\x9f\v\u4871", // 䡱
+ 0x4872: "\x9f\f\u4872", // 䡲
+ 0x4873: "\x9f\f\u4873", // 䡳
+ 0x4874: "\x9f\f\u4874", // 䡴
+ 0x4875: "\x9f\f\u4875", // 䡵
+ 0x4876: "\x9f\r\u4876", // 䡶
+ 0x4877: "\x9f\x0e\u4877", // 䡷
+ 0x4878: "\x9f\x0e\u4878", // 䡸
+ 0x4879: "\x9f\x0e\u4879", // 䡹
+ 0x487a: "\x9f\x0f\u487a", // 䡺
+ 0x487b: "\x9f\x0f\u487b", // 䡻
+ 0x487c: "\x9f\x11\u487c", // 䡼
+ 0x487d: "\x9f\x13\u487d", // 䡽
+ 0x487e: "\x9f\x14\u487e", // 䡾
+ 0x487f: "\x9f\x18\u487f", // 䡿
+ 0x4880: "\x9f\x03\u4880", // 䢀
+ 0x4881: "\x9f\x04\u4881", // 䢁
+ 0x4882: "\x9f\x05\u4882", // 䢂
+ 0x4883: "\xa0\b\u4883", // 䢃
+ 0x4884: "\xa0\r\u4884", // 䢄
+ 0x4885: "\xa1\x06\u4885", // 䢅
+ 0x4886: "\xa1\a\u4886", // 䢆
+ 0x4887: "\xa1\b\u4887", // 䢇
+ 0x4888: "\xa1\r\u4888", // 䢈
+ 0x4889: "\xa1\r\u4889", // 䢉
+ 0x488a: "\xa2\x03\u488a", // 䢊
+ 0x488b: "\xa2\x03\u488b", // 䢋
+ 0x488c: "\xa2\x04\u488c", // 䢌
+ 0x488d: "\xa2\x04\u488d", // 䢍
+ 0x488e: "\xa2\x04\u488e", // 䢎
+ 0x488f: "\xa2\x04\u488f", // 䢏
+ 0x4890: "\xa2\x05\u4890", // 䢐
+ 0x4891: "\xa2\x05\u4891", // 䢑
+ 0x4892: "\xa2\x06\u4892", // 䢒
+ 0x4893: "\xa2\x06\u4893", // 䢓
+ 0x4894: "\xa2\x06\u4894", // 䢔
+ 0x4895: "\xa2\x06\u4895", // 䢕
+ 0x4896: "\xa2\x06\u4896", // 䢖
+ 0x4897: "\xa2\x06\u4897", // 䢗
+ 0x4898: "\xa2\x06\u4898", // 䢘
+ 0x4899: "\xa2\a\u4899", // 䢙
+ 0x489a: "\xa2\a\u489a", // 䢚
+ 0x489b: "\xa2\a\u489b", // 䢛
+ 0x489c: "\xa2\b\u489c", // 䢜
+ 0x489d: "\xa2\b\u489d", // 䢝
+ 0x489e: "\xa2\b\u489e", // 䢞
+ 0x489f: "\xa2\b\u489f", // 䢟
+ 0x48a0: "\xa2\b\u48a0", // 䢠
+ 0x48a1: "\xa2\t\u48a1", // 䢡
+ 0x48a2: "\xa2\n\u48a2", // 䢢
+ 0x48a3: "\xa2\n\u48a3", // 䢣
+ 0x48a4: "\xa2\n\u48a4", // 䢤
+ 0x48a5: "\xa2\n\u48a5", // 䢥
+ 0x48a6: "\xa2\v\u48a6", // 䢦
+ 0x48a7: "\xa2\v\u48a7", // 䢧
+ 0x48a8: "\xa2\v\u48a8", // 䢨
+ 0x48a9: "\xa2\v\u48a9", // 䢩
+ 0x48aa: "\xa2\f\u48aa", // 䢪
+ 0x48ab: "\xa2\f\u48ab", // 䢫
+ 0x48ac: "\xa2\f\u48ac", // 䢬
+ 0x48ad: "\xa2\f\u48ad", // 䢭
+ 0x48ae: "\xa2\r\u48ae", // 䢮
+ 0x48af: "\xa2\x0e\u48af", // 䢯
+ 0x48b0: "\xa2\x0e\u48b0", // 䢰
+ 0x48b1: "\xa2\x0f\u48b1", // 䢱
+ 0x48b2: "\xa2\x14\u48b2", // 䢲
+ 0x48b3: "\xa3\x02\u48b3", // 䢳
+ 0x48b4: "\xa3\x03\u48b4", // 䢴
+ 0x48b5: "\xa3\x04\u48b5", // 䢵
+ 0x48b6: "\xa3\x04\u48b6", // 䢶
+ 0x48b7: "\xa3\x04\u48b7", // 䢷
+ 0x48b8: "\xa3\x05\u48b8", // 䢸
+ 0x48b9: "\xa3\x05\u48b9", // 䢹
+ 0x48ba: "\xa3\x05\u48ba", // 䢺
+ 0x48bb: "\xa3\x06\u48bb", // 䢻
+ 0x48bc: "\xa3\x06\u48bc", // 䢼
+ 0x48bd: "\xa3\x06\u48bd", // 䢽
+ 0x48be: "\xa3\x06\u48be", // 䢾
+ 0x48bf: "\xa3\x06\u48bf", // 䢿
+ 0x48c0: "\xa3\x06\u48c0", // 䣀
+ 0x48c1: "\xa3\x06\u48c1", // 䣁
+ 0x48c2: "\xa3\x06\u48c2", // 䣂
+ 0x48c3: "\xa3\a\u48c3", // 䣃
+ 0x48c4: "\xa3\a\u48c4", // 䣄
+ 0x48c5: "\xa3\a\u48c5", // 䣅
+ 0x48c6: "\xa3\a\u48c6", // 䣆
+ 0x48c7: "\xa3\a\u48c7", // 䣇
+ 0x48c8: "\xa3\a\u48c8", // 䣈
+ 0x48c9: "\xa3\a\u48c9", // 䣉
+ 0x48ca: "\xa3\b\u48ca", // 䣊
+ 0x48cb: "\xa3\b\u48cb", // 䣋
+ 0x48cc: "\xa3\b\u48cc", // 䣌
+ 0x48cd: "\xa3\b\u48cd", // 䣍
+ 0x48ce: "\xa3\b\u48ce", // 䣎
+ 0x48cf: "\xa3\b\u48cf", // 䣏
+ 0x48d0: "\xa3\t\u48d0", // 䣐
+ 0x48d1: "\xa3\t\u48d1", // 䣑
+ 0x48d2: "\xa3\t\u48d2", // 䣒
+ 0x48d3: "\xa3\n\u48d3", // 䣓
+ 0x48d4: "\xa3\n\u48d4", // 䣔
+ 0x48d5: "\xa3\n\u48d5", // 䣕
+ 0x48d6: "\xa3\n\u48d6", // 䣖
+ 0x48d7: "\xa3\n\u48d7", // 䣗
+ 0x48d8: "\xa3\v\u48d8", // 䣘
+ 0x48d9: "\xa3\v\u48d9", // 䣙
+ 0x48da: "\xa3\v\u48da", // 䣚
+ 0x48db: "\xa3\v\u48db", // 䣛
+ 0x48dc: "\xa3\v\u48dc", // 䣜
+ 0x48dd: "\xa3\f\u48dd", // 䣝
+ 0x48de: "\xa3\f\u48de", // 䣞
+ 0x48df: "\xa3\f\u48df", // 䣟
+ 0x48e0: "\xa3\f\u48e0", // 䣠
+ 0x48e1: "\xa3\r\u48e1", // 䣡
+ 0x48e2: "\xa3\x0e\u48e2", // 䣢
+ 0x48e3: "\xa3\x14\u48e3", // 䣣
+ 0x48e4: "\xa3\x14\u48e4", // 䣤
+ 0x48e5: "\xa4\x02\u48e5", // 䣥
+ 0x48e6: "\xa4\x02\u48e6", // 䣦
+ 0x48e7: "\xa4\x03\u48e7", // 䣧
+ 0x48e8: "\xa4\x03\u48e8", // 䣨
+ 0x48e9: "\xa4\x04\u48e9", // 䣩
+ 0x48ea: "\xa4\x04\u48ea", // 䣪
+ 0x48eb: "\xa4\x04\u48eb", // 䣫
+ 0x48ec: "\xa4\x04\u48ec", // 䣬
+ 0x48ed: "\xa4\x04\u48ed", // 䣭
+ 0x48ee: "\xa4\x05\u48ee", // 䣮
+ 0x48ef: "\xa4\x05\u48ef", // 䣯
+ 0x48f0: "\xa4\x05\u48f0", // 䣰
+ 0x48f1: "\xa4\x05\u48f1", // 䣱
+ 0x48f2: "\xa4\x05\u48f2", // 䣲
+ 0x48f3: "\xa4\x05\u48f3", // 䣳
+ 0x48f4: "\xa4\x06\u48f4", // 䣴
+ 0x48f5: "\xa4\x06\u48f5", // 䣵
+ 0x48f6: "\xa4\x06\u48f6", // 䣶
+ 0x48f7: "\xa4\x06\u48f7", // 䣷
+ 0x48f8: "\xa4\x06\u48f8", // 䣸
+ 0x48f9: "\xa4\x06\u48f9", // 䣹
+ 0x48fa: "\xa4\a\u48fa", // 䣺
+ 0x48fb: "\xa4\a\u48fb", // 䣻
+ 0x48fc: "\xa4\b\u48fc", // 䣼
+ 0x48fd: "\xa4\b\u48fd", // 䣽
+ 0x48fe: "\xa4\b\u48fe", // 䣾
+ 0x48ff: "\xa4\b\u48ff", // 䣿
+ 0x4900: "\xa4\t\u4900", // 䤀
+ 0x4901: "\xa4\t\u4901", // 䤁
+ 0x4902: "\xa4\t\u4902", // 䤂
+ 0x4903: "\xa4\t\u4903", // 䤃
+ 0x4904: "\xa4\t\u4904", // 䤄
+ 0x4905: "\xa4\t\u4905", // 䤅
+ 0x4906: "\xa4\t\u4906", // 䤆
+ 0x4907: "\xa4\t\u4907", // 䤇
+ 0x4908: "\xa4\t\u4908", // 䤈
+ 0x4909: "\xa4\n\u4909", // 䤉
+ 0x490a: "\xa4\n\u490a", // 䤊
+ 0x490b: "\xa4\n\u490b", // 䤋
+ 0x490c: "\xa4\n\u490c", // 䤌
+ 0x490d: "\xa4\v\u490d", // 䤍
+ 0x490e: "\xa4\f\u490e", // 䤎
+ 0x490f: "\xa4\f\u490f", // 䤏
+ 0x4910: "\xa4\f\u4910", // 䤐
+ 0x4911: "\xa4\f\u4911", // 䤑
+ 0x4912: "\xa4\f\u4912", // 䤒
+ 0x4913: "\xa4\x0e\u4913", // 䤓
+ 0x4914: "\xa4\x0e\u4914", // 䤔
+ 0x4915: "\xa4\x0f\u4915", // 䤕
+ 0x4916: "\xa4\x0f\u4916", // 䤖
+ 0x4917: "\xa4\x11\u4917", // 䤗
+ 0x4918: "\xa4\x11\u4918", // 䤘
+ 0x4919: "\xa4\x15\u4919", // 䤙
+ 0x491a: "\xa6\x04\u491a", // 䤚
+ 0x491b: "\xa7\x02\u491b", // 䤛
+ 0x491c: "\xa7\x03\u491c", // 䤜
+ 0x491d: "\xa7\x04\u491d", // 䤝
+ 0x491e: "\xa7\x04\u491e", // 䤞
+ 0x491f: "\xa7\x04\u491f", // 䤟
+ 0x4920: "\xa7\x04\u4920", // 䤠
+ 0x4921: "\xa7\x05\u4921", // 䤡
+ 0x4922: "\xa7\x05\u4922", // 䤢
+ 0x4923: "\xa7\x05\u4923", // 䤣
+ 0x4924: "\xa7\x06\u4924", // 䤤
+ 0x4925: "\xa7\x06\u4925", // 䤥
+ 0x4926: "\xa7\x06\u4926", // 䤦
+ 0x4927: "\xa7\x06\u4927", // 䤧
+ 0x4928: "\xa7\x06\u4928", // 䤨
+ 0x4929: "\xa7\x06\u4929", // 䤩
+ 0x492a: "\xa7\x06\u492a", // 䤪
+ 0x492b: "\xa7\a\u492b", // 䤫
+ 0x492c: "\xa7\a\u492c", // 䤬
+ 0x492d: "\xa7\a\u492d", // 䤭
+ 0x492e: "\xa7\a\u492e", // 䤮
+ 0x492f: "\xa7\a\u492f", // 䤯
+ 0x4930: "\xa7\a\u4930", // 䤰
+ 0x4931: "\xa7\a\u4931", // 䤱
+ 0x4932: "\xa7\a\u4932", // 䤲
+ 0x4933: "\xa7\b\u4933", // 䤳
+ 0x4934: "\xa7\b\u4934", // 䤴
+ 0x4935: "\xa7\b\u4935", // 䤵
+ 0x4936: "\xa7\b\u4936", // 䤶
+ 0x4937: "\xa7\t\u4937", // 䤷
+ 0x4938: "\xa7\t\u4938", // 䤸
+ 0x4939: "\xa7\t\u4939", // 䤹
+ 0x493a: "\xa7\t\u493a", // 䤺
+ 0x493b: "\xa7\t\u493b", // 䤻
+ 0x493c: "\xa7\t\u493c", // 䤼
+ 0x493d: "\xa7\n\u493d", // 䤽
+ 0x493e: "\xa7\n\u493e", // 䤾
+ 0x493f: "\xa7\n\u493f", // 䤿
+ 0x4940: "\xa7\n\u4940", // 䥀
+ 0x4941: "\xa7\n\u4941", // 䥁
+ 0x4942: "\xa7\n\u4942", // 䥂
+ 0x4943: "\xa7\n\u4943", // 䥃
+ 0x4944: "\xa7\n\u4944", // 䥄
+ 0x4945: "\xa7\n\u4945", // 䥅
+ 0x4946: "\xa7\n\u4946", // 䥆
+ 0x4947: "\xa7\n\u4947", // 䥇
+ 0x4948: "\xa7\v\u4948", // 䥈
+ 0x4949: "\xa7\v\u4949", // 䥉
+ 0x494a: "\xa7\v\u494a", // 䥊
+ 0x494b: "\xa7\v\u494b", // 䥋
+ 0x494c: "\xa7\v\u494c", // 䥌
+ 0x494d: "\xa7\v\u494d", // 䥍
+ 0x494e: "\xa7\v\u494e", // 䥎
+ 0x494f: "\xa7\v\u494f", // 䥏
+ 0x4950: "\xa7\v\u4950", // 䥐
+ 0x4951: "\xa7\v\u4951", // 䥑
+ 0x4952: "\xa7\v\u4952", // 䥒
+ 0x4953: "\xa7\v\u4953", // 䥓
+ 0x4954: "\xa7\f\u4954", // 䥔
+ 0x4955: "\xa7\f\u4955", // 䥕
+ 0x4956: "\xa7\f\u4956", // 䥖
+ 0x4957: "\xa7\f\u4957", // 䥗
+ 0x4958: "\xa7\f\u4958", // 䥘
+ 0x4959: "\xa7\f\u4959", // 䥙
+ 0x495a: "\xa7\f\u495a", // 䥚
+ 0x495b: "\xa7\f\u495b", // 䥛
+ 0x495c: "\xa7\f\u495c", // 䥜
+ 0x495d: "\xa7\r\u495d", // 䥝
+ 0x495e: "\xa7\r\u495e", // 䥞
+ 0x495f: "\xa7\r\u495f", // 䥟
+ 0x4960: "\xa7\r\u4960", // 䥠
+ 0x4961: "\xa7\r\u4961", // 䥡
+ 0x4962: "\xa7\r\u4962", // 䥢
+ 0x4963: "\xa7\r\u4963", // 䥣
+ 0x4964: "\xa7\r\u4964", // 䥤
+ 0x4965: "\xa7\r\u4965", // 䥥
+ 0x4966: "\xa7\r\u4966", // 䥦
+ 0x4967: "\xa7\x0e\u4967", // 䥧
+ 0x4968: "\xa7\x0e\u4968", // 䥨
+ 0x4969: "\xa7\x0e\u4969", // 䥩
+ 0x496a: "\xa7\x0e\u496a", // 䥪
+ 0x496b: "\xa7\x0e\u496b", // 䥫
+ 0x496c: "\xa7\x0e\u496c", // 䥬
+ 0x496d: "\xa7\x0e\u496d", // 䥭
+ 0x496e: "\xa7\x0e\u496e", // 䥮
+ 0x496f: "\xa7\x0f\u496f", // 䥯
+ 0x4970: "\xa7\x0f\u4970", // 䥰
+ 0x4971: "\xa7\x0f\u4971", // 䥱
+ 0x4972: "\xa7\x0f\u4972", // 䥲
+ 0x4973: "\xa7\x0f\u4973", // 䥳
+ 0x4974: "\xa7\x0f\u4974", // 䥴
+ 0x4975: "\xa7\x10\u4975", // 䥵
+ 0x4976: "\xa7\x10\u4976", // 䥶
+ 0x4977: "\xa7\x10\u4977", // 䥷
+ 0x4978: "\xa7\x11\u4978", // 䥸
+ 0x4979: "\xa7\x15\u4979", // 䥹
+ 0x497a: "\xa7\x04\u497a", // 䥺
+ 0x497b: "\xa7\x04\u497b", // 䥻
+ 0x497c: "\xa7\x04\u497c", // 䥼
+ 0x497d: "\xa7\x05\u497d", // 䥽
+ 0x497e: "\xa7\x05\u497e", // 䥾
+ 0x497f: "\xa7\x05\u497f", // 䥿
+ 0x4980: "\xa7\x06\u4980", // 䦀
+ 0x4981: "\xa7\a\u4981", // 䦁
+ 0x4982: "\xa7\n\u4982", // 䦂
+ 0x4983: "\xa7\f\u4983", // 䦃
+ 0x4984: "\xa7\f\u4984", // 䦄
+ 0x4985: "\xa7\f\u4985", // 䦅
+ 0x4986: "\xa7\x14\u4986", // 䦆
+ 0x4987: "\xa8\x03\u4987", // 䦇
+ 0x4988: "\xa8\x05\u4988", // 䦈
+ 0x4989: "\xa8\x05\u4989", // 䦉
+ 0x498a: "\xa8\x06\u498a", // 䦊
+ 0x498b: "\xa8\v\u498b", // 䦋
+ 0x498c: "\xa9\x03\u498c", // 䦌
+ 0x498d: "\xa9\x03\u498d", // 䦍
+ 0x498e: "\xa9\x04\u498e", // 䦎
+ 0x498f: "\xa9\x04\u498f", // 䦏
+ 0x4990: "\xa9\x04\u4990", // 䦐
+ 0x4991: "\xa9\x04\u4991", // 䦑
+ 0x4992: "\xa9\x05\u4992", // 䦒
+ 0x4993: "\xa9\x05\u4993", // 䦓
+ 0x4994: "\xa9\x05\u4994", // 䦔
+ 0x4995: "\xa9\x06\u4995", // 䦕
+ 0x4996: "\xa9\x06\u4996", // 䦖
+ 0x4997: "\xa9\x06\u4997", // 䦗
+ 0x4998: "\xa9\x06\u4998", // 䦘
+ 0x4999: "\xa9\x06\u4999", // 䦙
+ 0x499a: "\xa9\x06\u499a", // 䦚
+ 0x499b: "\xa9\x06\u499b", // 䦛
+ 0x499c: "\xa9\a\u499c", // 䦜
+ 0x499d: "\xa9\a\u499d", // 䦝
+ 0x499e: "\xa9\a\u499e", // 䦞
+ 0x499f: "\xa9\a\u499f", // 䦟
+ 0x49a0: "\xa9\b\u49a0", // 䦠
+ 0x49a1: "\xa9\b\u49a1", // 䦡
+ 0x49a2: "\xa9\b\u49a2", // 䦢
+ 0x49a3: "\xa9\b\u49a3", // 䦣
+ 0x49a4: "\xa9\b\u49a4", // 䦤
+ 0x49a5: "\xa9\b\u49a5", // 䦥
+ 0x49a6: "\xa9\b\u49a6", // 䦦
+ 0x49a7: "\xa9\b\u49a7", // 䦧
+ 0x49a8: "\xa9\b\u49a8", // 䦨
+ 0x49a9: "\xa9\t\u49a9", // 䦩
+ 0x49aa: "\xa9\t\u49aa", // 䦪
+ 0x49ab: "\xa9\t\u49ab", // 䦫
+ 0x49ac: "\xa9\t\u49ac", // 䦬
+ 0x49ad: "\xa9\t\u49ad", // 䦭
+ 0x49ae: "\xa9\t\u49ae", // 䦮
+ 0x49af: "\xa9\t\u49af", // 䦯
+ 0x49b0: "\xa9\v\u49b0", // 䦰
+ 0x49b1: "\xa9\f\u49b1", // 䦱
+ 0x49b2: "\xa9\r\u49b2", // 䦲
+ 0x49b3: "\xa9\r\u49b3", // 䦳
+ 0x49b4: "\xa9\r\u49b4", // 䦴
+ 0x49b5: "\xa9\x0e\u49b5", // 䦵
+ 0x49b6: "\xa9\x06\u49b6", // 䦶
+ 0x49b7: "\xa9\a\u49b7", // 䦷
+ 0x49b8: "\xa9\t\u49b8", // 䦸
+ 0x49b9: "\xaa\x02\u49b9", // 䦹
+ 0x49ba: "\xaa\x02\u49ba", // 䦺
+ 0x49bb: "\xaa\x03\u49bb", // 䦻
+ 0x49bc: "\xaa\x04\u49bc", // 䦼
+ 0x49bd: "\xaa\x04\u49bd", // 䦽
+ 0x49be: "\xaa\x04\u49be", // 䦾
+ 0x49bf: "\xaa\x04\u49bf", // 䦿
+ 0x49c0: "\xaa\x04\u49c0", // 䧀
+ 0x49c1: "\xaa\x05\u49c1", // 䧁
+ 0x49c2: "\xaa\x05\u49c2", // 䧂
+ 0x49c3: "\xaa\x05\u49c3", // 䧃
+ 0x49c4: "\xaa\x06\u49c4", // 䧄
+ 0x49c5: "\xaa\x06\u49c5", // 䧅
+ 0x49c6: "\xaa\x06\u49c6", // 䧆
+ 0x49c7: "\xaa\x06\u49c7", // 䧇
+ 0x49c8: "\xaa\x06\u49c8", // 䧈
+ 0x49c9: "\xaa\a\u49c9", // 䧉
+ 0x49ca: "\xaa\a\u49ca", // 䧊
+ 0x49cb: "\xaa\a\u49cb", // 䧋
+ 0x49cc: "\xaa\a\u49cc", // 䧌
+ 0x49cd: "\xaa\a\u49cd", // 䧍
+ 0x49ce: "\xaa\a\u49ce", // 䧎
+ 0x49cf: "\xaa\a\u49cf", // 䧏
+ 0x49d0: "\xaa\b\u49d0", // 䧐
+ 0x49d1: "\xaa\b\u49d1", // 䧑
+ 0x49d2: "\xaa\b\u49d2", // 䧒
+ 0x49d3: "\xaa\b\u49d3", // 䧓
+ 0x49d4: "\xaa\b\u49d4", // 䧔
+ 0x49d5: "\xaa\b\u49d5", // 䧕
+ 0x49d6: "\xaa\b\u49d6", // 䧖
+ 0x49d7: "\xaa\t\u49d7", // 䧗
+ 0x49d8: "\xaa\t\u49d8", // 䧘
+ 0x49d9: "\xaa\t\u49d9", // 䧙
+ 0x49da: "\xaa\n\u49da", // 䧚
+ 0x49db: "\xaa\n\u49db", // 䧛
+ 0x49dc: "\xaa\n\u49dc", // 䧜
+ 0x49dd: "\xaa\n\u49dd", // 䧝
+ 0x49de: "\xaa\n\u49de", // 䧞
+ 0x49df: "\xaa\n\u49df", // 䧟
+ 0x49e0: "\xaa\v\u49e0", // 䧠
+ 0x49e1: "\xaa\v\u49e1", // 䧡
+ 0x49e2: "\xaa\v\u49e2", // 䧢
+ 0x49e3: "\xaa\v\u49e3", // 䧣
+ 0x49e4: "\xaa\f\u49e4", // 䧤
+ 0x49e5: "\xaa\f\u49e5", // 䧥
+ 0x49e6: "\xaa\f\u49e6", // 䧦
+ 0x49e7: "\xaa\r\u49e7", // 䧧
+ 0x49e8: "\xaa\r\u49e8", // 䧨
+ 0x49e9: "\xaa\f\u49e9", // 䧩
+ 0x49ea: "\xaa\r\u49ea", // 䧪
+ 0x49eb: "\xaa\x0e\u49eb", // 䧫
+ 0x49ec: "\xaa\x0e\u49ec", // 䧬
+ 0x49ed: "\xaa\x0e\u49ed", // 䧭
+ 0x49ee: "\xaa\x10\u49ee", // 䧮
+ 0x49ef: "\xaa\x11\u49ef", // 䧯
+ 0x49f0: "\xaa\x12\u49f0", // 䧰
+ 0x49f1: "\xac\x02\u49f1", // 䧱
+ 0x49f2: "\xac\x03\u49f2", // 䧲
+ 0x49f3: "\xac\x03\u49f3", // 䧳
+ 0x49f4: "\xac\x04\u49f4", // 䧴
+ 0x49f5: "\xac\x04\u49f5", // 䧵
+ 0x49f6: "\xac\x04\u49f6", // 䧶
+ 0x49f7: "\xac\x05\u49f7", // 䧷
+ 0x49f8: "\xac\x05\u49f8", // 䧸
+ 0x49f9: "\xac\x05\u49f9", // 䧹
+ 0x49fa: "\xac\x05\u49fa", // 䧺
+ 0x49fb: "\xac\x06\u49fb", // 䧻
+ 0x49fc: "\xac\a\u49fc", // 䧼
+ 0x49fd: "\xac\a\u49fd", // 䧽
+ 0x49fe: "\xac\b\u49fe", // 䧾
+ 0x49ff: "\xac\b\u49ff", // 䧿
+ 0x4a00: "w\n\u4a00", // 䨀
+ 0x4a01: "\xac\t\u4a01", // 䨁
+ 0x4a02: "\xac\t\u4a02", // 䨂
+ 0x4a03: "\xac\n\u4a03", // 䨃
+ 0x4a04: "\xac\v\u4a04", // 䨄
+ 0x4a05: "\xac\f\u4a05", // 䨅
+ 0x4a06: "\xac\f\u4a06", // 䨆
+ 0x4a07: "\xac\f\u4a07", // 䨇
+ 0x4a08: "\xac\x0e\u4a08", // 䨈
+ 0x4a09: "\xac\x11\u4a09", // 䨉
+ 0x4a0a: "\xac\x18\u4a0a", // 䨊
+ 0x4a0b: "\xad\x03\u4a0b", // 䨋
+ 0x4a0c: "\xad\x04\u4a0c", // 䨌
+ 0x4a0d: "\xad\x04\u4a0d", // 䨍
+ 0x4a0e: "\xad\x05\u4a0e", // 䨎
+ 0x4a0f: "\xad\x06\u4a0f", // 䨏
+ 0x4a10: "\xad\x06\u4a10", // 䨐
+ 0x4a11: "\xad\x06\u4a11", // 䨑
+ 0x4a12: "\xad\x06\u4a12", // 䨒
+ 0x4a13: "\xad\x06\u4a13", // 䨓
+ 0x4a14: "\xad\x06\u4a14", // 䨔
+ 0x4a15: "\xad\x06\u4a15", // 䨕
+ 0x4a16: "\xad\x06\u4a16", // 䨖
+ 0x4a17: "\xad\a\u4a17", // 䨗
+ 0x4a18: "\xad\a\u4a18", // 䨘
+ 0x4a19: "\xad\a\u4a19", // 䨙
+ 0x4a1a: "\xad\b\u4a1a", // 䨚
+ 0x4a1b: "\xad\b\u4a1b", // 䨛
+ 0x4a1c: "\xad\b\u4a1c", // 䨜
+ 0x4a1d: "\xad\b\u4a1d", // 䨝
+ 0x4a1e: "\xad\t\u4a1e", // 䨞
+ 0x4a1f: "\xad\t\u4a1f", // 䨟
+ 0x4a20: "\xad\t\u4a20", // 䨠
+ 0x4a21: "\xad\t\u4a21", // 䨡
+ 0x4a22: "\xad\t\u4a22", // 䨢
+ 0x4a23: "\xad\t\u4a23", // 䨣
+ 0x4a24: "\xad\t\u4a24", // 䨤
+ 0x4a25: "\xad\n\u4a25", // 䨥
+ 0x4a26: "\xad\n\u4a26", // 䨦
+ 0x4a27: "\xad\n\u4a27", // 䨧
+ 0x4a28: "\xad\n\u4a28", // 䨨
+ 0x4a29: "\xad\n\u4a29", // 䨩
+ 0x4a2a: "\xad\n\u4a2a", // 䨪
+ 0x4a2b: "\xad\v\u4a2b", // 䨫
+ 0x4a2c: "\xad\v\u4a2c", // 䨬
+ 0x4a2d: "\xad\v\u4a2d", // 䨭
+ 0x4a2e: "\xad\v\u4a2e", // 䨮
+ 0x4a2f: "\xad\v\u4a2f", // 䨯
+ 0x4a30: "\xad\f\u4a30", // 䨰
+ 0x4a31: "\xad\f\u4a31", // 䨱
+ 0x4a32: "\xad\x0e\u4a32", // 䨲
+ 0x4a33: "\xad\x0e\u4a33", // 䨳
+ 0x4a34: "\xad\x0e\u4a34", // 䨴
+ 0x4a35: "\xad\x0f\u4a35", // 䨵
+ 0x4a36: "\xad\x0f\u4a36", // 䨶
+ 0x4a37: "\xad\x10\u4a37", // 䨷
+ 0x4a38: "\xad\x11\u4a38", // 䨸
+ 0x4a39: "\xad\x13\u4a39", // 䨹
+ 0x4a3a: "\xad\x1c\u4a3a", // 䨺
+ 0x4a3b: "\xad,\u4a3b", // 䨻
+ 0x4a3c: "\xae\x0e\u4a3c", // 䨼
+ 0x4a3d: "\xaf\x03\u4a3d", // 䨽
+ 0x4a3e: "\xaf\x03\u4a3e", // 䨾
+ 0x4a3f: "\xaf\x04\u4a3f", // 䨿
+ 0x4a40: "\xaf\a\u4a40", // 䩀
+ 0x4a41: "\xaf\f\u4a41", // 䩁
+ 0x4a42: "\xb0\x04\u4a42", // 䩂
+ 0x4a43: "\xb0\x04\u4a43", // 䩃
+ 0x4a44: "\xb0\x04\u4a44", // 䩄
+ 0x4a45: "\xb0\x05\u4a45", // 䩅
+ 0x4a46: "\xb0\x05\u4a46", // 䩆
+ 0x4a47: "\xb0\x05\u4a47", // 䩇
+ 0x4a48: "\xb0\a\u4a48", // 䩈
+ 0x4a49: "\xb0\a\u4a49", // 䩉
+ 0x4a4a: "\xb0\b\u4a4a", // 䩊
+ 0x4a4b: "\xb0\v\u4a4b", // 䩋
+ 0x4a4c: "\xb0\f\u4a4c", // 䩌
+ 0x4a4d: "\xb0\f\u4a4d", // 䩍
+ 0x4a4e: "\xb0\r\u4a4e", // 䩎
+ 0x4a4f: "\xb0\x0f\u4a4f", // 䩏
+ 0x4a50: "\xb1\x03\u4a50", // 䩐
+ 0x4a51: "\xb1\x03\u4a51", // 䩑
+ 0x4a52: "\xb1\x03\u4a52", // 䩒
+ 0x4a53: "\xb1\x04\u4a53", // 䩓
+ 0x4a54: "\xb1\x04\u4a54", // 䩔
+ 0x4a55: "\xb1\x04\u4a55", // 䩕
+ 0x4a56: "\xb1\x04\u4a56", // 䩖
+ 0x4a57: "\xb1\x04\u4a57", // 䩗
+ 0x4a58: "\xb1\x04\u4a58", // 䩘
+ 0x4a59: "\xb1\x05\u4a59", // 䩙
+ 0x4a5a: "\xb1\x05\u4a5a", // 䩚
+ 0x4a5b: "\xb1\x05\u4a5b", // 䩛
+ 0x4a5c: "\xb1\x05\u4a5c", // 䩜
+ 0x4a5d: "\xb1\x05\u4a5d", // 䩝
+ 0x4a5e: "\xb1\x05\u4a5e", // 䩞
+ 0x4a5f: "\xb1\x06\u4a5f", // 䩟
+ 0x4a60: "\xb1\a\u4a60", // 䩠
+ 0x4a61: "\xb1\a\u4a61", // 䩡
+ 0x4a62: "\xb1\a\u4a62", // 䩢
+ 0x4a63: "\xb1\a\u4a63", // 䩣
+ 0x4a64: "\xb1\a\u4a64", // 䩤
+ 0x4a65: "\xb1\a\u4a65", // 䩥
+ 0x4a66: "\xb1\a\u4a66", // 䩦
+ 0x4a67: "\xb1\a\u4a67", // 䩧
+ 0x4a68: "\xb1\b\u4a68", // 䩨
+ 0x4a69: "\xb1\b\u4a69", // 䩩
+ 0x4a6a: "\xb1\b\u4a6a", // 䩪
+ 0x4a6b: "\xb1\b\u4a6b", // 䩫
+ 0x4a6c: "\xb1\b\u4a6c", // 䩬
+ 0x4a6d: "\xb1\b\u4a6d", // 䩭
+ 0x4a6e: "\xb1\b\u4a6e", // 䩮
+ 0x4a6f: "\xb1\t\u4a6f", // 䩯
+ 0x4a70: "\xb1\t\u4a70", // 䩰
+ 0x4a71: "\xb1\t\u4a71", // 䩱
+ 0x4a72: "\xb1\t\u4a72", // 䩲
+ 0x4a73: "\xb1\t\u4a73", // 䩳
+ 0x4a74: "\xb1\t\u4a74", // 䩴
+ 0x4a75: "\xb1\t\u4a75", // 䩵
+ 0x4a76: "\xb1\n\u4a76", // 䩶
+ 0x4a77: "\xb1\n\u4a77", // 䩷
+ 0x4a78: "\xb1\n\u4a78", // 䩸
+ 0x4a79: "\xb1\n\u4a79", // 䩹
+ 0x4a7a: "\xb1\n\u4a7a", // 䩺
+ 0x4a7b: "\xb1\n\u4a7b", // 䩻
+ 0x4a7c: "\xb1\v\u4a7c", // 䩼
+ 0x4a7d: "\xb1\v\u4a7d", // 䩽
+ 0x4a7e: "\xb1\v\u4a7e", // 䩾
+ 0x4a7f: "\xb1\f\u4a7f", // 䩿
+ 0x4a80: "\xb1\f\u4a80", // 䪀
+ 0x4a81: "\xb1\f\u4a81", // 䪁
+ 0x4a82: "\xb1\f\u4a82", // 䪂
+ 0x4a83: "\xb1\f\u4a83", // 䪃
+ 0x4a84: "\xb1\f\u4a84", // 䪄
+ 0x4a85: "\xb1\r\u4a85", // 䪅
+ 0x4a86: "\xb1\r\u4a86", // 䪆
+ 0x4a87: "\xb1\x0e\u4a87", // 䪇
+ 0x4a88: "\xb1\x0e\u4a88", // 䪈
+ 0x4a89: "\xb1\x0f\u4a89", // 䪉
+ 0x4a8a: "\xb1\x10\u4a8a", // 䪊
+ 0x4a8b: "\xb1\x10\u4a8b", // 䪋
+ 0x4a8c: "\xb1\x11\u4a8c", // 䪌
+ 0x4a8d: "\xb1\x11\u4a8d", // 䪍
+ 0x4a8e: "\xb1\x12\u4a8e", // 䪎
+ 0x4a8f: "\xb2\x04\u4a8f", // 䪏
+ 0x4a90: "\xb2\x05\u4a90", // 䪐
+ 0x4a91: "\xb2\x05\u4a91", // 䪑
+ 0x4a92: "\xb2\x05\u4a92", // 䪒
+ 0x4a93: "\xb2\x05\u4a93", // 䪓
+ 0x4a94: "\xb2\a\u4a94", // 䪔
+ 0x4a95: "\xb2\b\u4a95", // 䪕
+ 0x4a96: "\xb2\t\u4a96", // 䪖
+ 0x4a97: "\xb2\t\u4a97", // 䪗
+ 0x4a98: "\xb2\t\u4a98", // 䪘
+ 0x4a99: "\xb2\n\u4a99", // 䪙
+ 0x4a9a: "\xb2\n\u4a9a", // 䪚
+ 0x4a9b: "\xb2\f\u4a9b", // 䪛
+ 0x4a9c: "\xb2\r\u4a9c", // 䪜
+ 0x4a9d: "\xb2\x0e\u4a9d", // 䪝
+ 0x4a9e: "\xb3\x04\u4a9e", // 䪞
+ 0x4a9f: "\xb3\x06\u4a9f", // 䪟
+ 0x4aa0: "\xb3\b\u4aa0", // 䪠
+ 0x4aa1: "\xb3\n\u4aa1", // 䪡
+ 0x4aa2: "\xb3\n\u4aa2", // 䪢
+ 0x4aa3: "\xb3\v\u4aa3", // 䪣
+ 0x4aa4: "\xb3\f\u4aa4", // 䪤
+ 0x4aa5: "\xb3\x0e\u4aa5", // 䪥
+ 0x4aa6: "\xb4\x03\u4aa6", // 䪦
+ 0x4aa7: "\xb4\x03\u4aa7", // 䪧
+ 0x4aa8: "\xb4\x03\u4aa8", // 䪨
+ 0x4aa9: "\xb4\x04\u4aa9", // 䪩
+ 0x4aaa: "\xb4\x05\u4aaa", // 䪪
+ 0x4aab: "\xb4\a\u4aab", // 䪫
+ 0x4aac: "\xb4\a\u4aac", // 䪬
+ 0x4aad: "\xb4\t\u4aad", // 䪭
+ 0x4aae: "\xb4\n\u4aae", // 䪮
+ 0x4aaf: "\xb4\n\u4aaf", // 䪯
+ 0x4ab0: "\xb4\r\u4ab0", // 䪰
+ 0x4ab1: "\xb5\x03\u4ab1", // 䪱
+ 0x4ab2: "\xb5\x03\u4ab2", // 䪲
+ 0x4ab3: "\xb5\x04\u4ab3", // 䪳
+ 0x4ab4: "\xb5\x04\u4ab4", // 䪴
+ 0x4ab5: "\xb5\x04\u4ab5", // 䪵
+ 0x4ab6: "\xb5\x05\u4ab6", // 䪶
+ 0x4ab7: "\xb5\x05\u4ab7", // 䪷
+ 0x4ab8: "\xb5\x05\u4ab8", // 䪸
+ 0x4ab9: "\xb5\x05\u4ab9", // 䪹
+ 0x4aba: "\xb5\x05\u4aba", // 䪺
+ 0x4abb: "\xb5\x05\u4abb", // 䪻
+ 0x4abc: "\xb5\x05\u4abc", // 䪼
+ 0x4abd: "\xb5\x05\u4abd", // 䪽
+ 0x4abe: "\xb5\x05\u4abe", // 䪾
+ 0x4abf: "\xb5\x06\u4abf", // 䪿
+ 0x4ac0: "\xb5\x06\u4ac0", // 䫀
+ 0x4ac1: "\xb5\x06\u4ac1", // 䫁
+ 0x4ac2: "\xb5\x06\u4ac2", // 䫂
+ 0x4ac3: "\xb5\a\u4ac3", // 䫃
+ 0x4ac4: "\xb5\a\u4ac4", // 䫄
+ 0x4ac5: "\xb5\a\u4ac5", // 䫅
+ 0x4ac6: "\xb5\a\u4ac6", // 䫆
+ 0x4ac7: "\xb5\a\u4ac7", // 䫇
+ 0x4ac8: "\xb5\a\u4ac8", // 䫈
+ 0x4ac9: "\xb5\a\u4ac9", // 䫉
+ 0x4aca: "\xb5\a\u4aca", // 䫊
+ 0x4acb: "\xb5\b\u4acb", // 䫋
+ 0x4acc: "\xb5\b\u4acc", // 䫌
+ 0x4acd: "\xb5\b\u4acd", // 䫍
+ 0x4ace: "\xb5\b\u4ace", // 䫎
+ 0x4acf: "\xb5\b\u4acf", // 䫏
+ 0x4ad0: "\xb5\b\u4ad0", // 䫐
+ 0x4ad1: "\xb5\b\u4ad1", // 䫑
+ 0x4ad2: "\xb5\b\u4ad2", // 䫒
+ 0x4ad3: "\xb5\b\u4ad3", // 䫓
+ 0x4ad4: "\xb5\t\u4ad4", // 䫔
+ 0x4ad5: "\xb5\t\u4ad5", // 䫕
+ 0x4ad6: "\xb5\t\u4ad6", // 䫖
+ 0x4ad7: "\xb5\t\u4ad7", // 䫗
+ 0x4ad8: "\xb5\t\u4ad8", // 䫘
+ 0x4ad9: "\xb5\t\u4ad9", // 䫙
+ 0x4ada: "\xb5\t\u4ada", // 䫚
+ 0x4adb: "\xb5\t\u4adb", // 䫛
+ 0x4adc: "\xb5\t\u4adc", // 䫜
+ 0x4add: "\xb5\t\u4add", // 䫝
+ 0x4ade: "\xb5\n\u4ade", // 䫞
+ 0x4adf: "\xb5\n\u4adf", // 䫟
+ 0x4ae0: "\xb5\n\u4ae0", // 䫠
+ 0x4ae1: "\xb5\n\u4ae1", // 䫡
+ 0x4ae2: "\xb5\n\u4ae2", // 䫢
+ 0x4ae3: "\xb5\n\u4ae3", // 䫣
+ 0x4ae4: "\xb5\n\u4ae4", // 䫤
+ 0x4ae5: "\xb5\n\u4ae5", // 䫥
+ 0x4ae6: "\xb5\n\u4ae6", // 䫦
+ 0x4ae7: "\xb5\n\u4ae7", // 䫧
+ 0x4ae8: "\xb5\v\u4ae8", // 䫨
+ 0x4ae9: "\xb5\v\u4ae9", // 䫩
+ 0x4aea: "\xb5\v\u4aea", // 䫪
+ 0x4aeb: "\xb5\v\u4aeb", // 䫫
+ 0x4aec: "\xb5\f\u4aec", // 䫬
+ 0x4aed: "\xb5\f\u4aed", // 䫭
+ 0x4aee: "\xb5\f\u4aee", // 䫮
+ 0x4aef: "\xb5\f\u4aef", // 䫯
+ 0x4af0: "\xb5\f\u4af0", // 䫰
+ 0x4af1: "\xb5\f\u4af1", // 䫱
+ 0x4af2: "\xb5\r\u4af2", // 䫲
+ 0x4af3: "\xb5\r\u4af3", // 䫳
+ 0x4af4: "\xb5\r\u4af4", // 䫴
+ 0x4af5: "\xb5\x0f\u4af5", // 䫵
+ 0x4af6: "\xb5\x0f\u4af6", // 䫶
+ 0x4af7: "\xb5\x10\u4af7", // 䫷
+ 0x4af8: "\xb6\x02\u4af8", // 䫸
+ 0x4af9: "\xb6\x03\u4af9", // 䫹
+ 0x4afa: "\xb6\x04\u4afa", // 䫺
+ 0x4afb: "\xb6\x04\u4afb", // 䫻
+ 0x4afc: "\xb6\x04\u4afc", // 䫼
+ 0x4afd: "\xb6\x04\u4afd", // 䫽
+ 0x4afe: "\xb6\x05\u4afe", // 䫾
+ 0x4aff: "\xb6\x05\u4aff", // 䫿
+ 0x4b00: "\xb6\x05\u4b00", // 䬀
+ 0x4b01: "\xb6\x05\u4b01", // 䬁
+ 0x4b02: "\xb6\x05\u4b02", // 䬂
+ 0x4b03: "\xb6\x05\u4b03", // 䬃
+ 0x4b04: "\xb6\x06\u4b04", // 䬄
+ 0x4b05: "\xb6\x06\u4b05", // 䬅
+ 0x4b06: "\xb6\a\u4b06", // 䬆
+ 0x4b07: "\xb6\a\u4b07", // 䬇
+ 0x4b08: "\xb6\a\u4b08", // 䬈
+ 0x4b09: "\xb6\a\u4b09", // 䬉
+ 0x4b0a: "\xb6\a\u4b0a", // 䬊
+ 0x4b0b: "\xb6\b\u4b0b", // 䬋
+ 0x4b0c: "\xb6\b\u4b0c", // 䬌
+ 0x4b0d: "\xb6\b\u4b0d", // 䬍
+ 0x4b0e: "\xb6\b\u4b0e", // 䬎
+ 0x4b0f: "\xb6\b\u4b0f", // 䬏
+ 0x4b10: "\xb6\b\u4b10", // 䬐
+ 0x4b11: "\xb6\t\u4b11", // 䬑
+ 0x4b12: "\xb6\t\u4b12", // 䬒
+ 0x4b13: "\xb6\t\u4b13", // 䬓
+ 0x4b14: "\xb6\t\u4b14", // 䬔
+ 0x4b15: "\xb6\t\u4b15", // 䬕
+ 0x4b16: "\xb6\t\u4b16", // 䬖
+ 0x4b17: "\xb6\t\u4b17", // 䬗
+ 0x4b18: "\xb6\n\u4b18", // 䬘
+ 0x4b19: "\xb6\n\u4b19", // 䬙
+ 0x4b1a: "\xb6\n\u4b1a", // 䬚
+ 0x4b1b: "\xb6\v\u4b1b", // 䬛
+ 0x4b1c: "\xb6\v\u4b1c", // 䬜
+ 0x4b1d: "\xb6\f\u4b1d", // 䬝
+ 0x4b1e: "\xb6\x0e\u4b1e", // 䬞
+ 0x4b1f: "\xb6\x0f\u4b1f", // 䬟
+ 0x4b20: "\xb7\b\u4b20", // 䬠
+ 0x4b21: "\xb7\t\u4b21", // 䬡
+ 0x4b22: "\xb8\x02\u4b22", // 䬢
+ 0x4b23: "\xb8\x03\u4b23", // 䬣
+ 0x4b24: "\xb8\x03\u4b24", // 䬤
+ 0x4b25: "\xb8\x03\u4b25", // 䬥
+ 0x4b26: "\xb8\x04\u4b26", // 䬦
+ 0x4b27: "\xb8\x04\u4b27", // 䬧
+ 0x4b28: "\xb8\x04\u4b28", // 䬨
+ 0x4b29: "\xb8\x04\u4b29", // 䬩
+ 0x4b2a: "\xb8\x04\u4b2a", // 䬪
+ 0x4b2b: "\xb8\x05\u4b2b", // 䬫
+ 0x4b2c: "\xb8\x05\u4b2c", // 䬬
+ 0x4b2d: "\xb8\x05\u4b2d", // 䬭
+ 0x4b2e: "\xb8\x05\u4b2e", // 䬮
+ 0x4b2f: "\xb8\x05\u4b2f", // 䬯
+ 0x4b30: "\xb8\x05\u4b30", // 䬰
+ 0x4b31: "\xb8\x05\u4b31", // 䬱
+ 0x4b32: "\xb8\x05\u4b32", // 䬲
+ 0x4b33: "\xb8\x05\u4b33", // 䬳
+ 0x4b34: "\xb8\x05\u4b34", // 䬴
+ 0x4b35: "\xb8\x06\u4b35", // 䬵
+ 0x4b36: "\xb8\x06\u4b36", // 䬶
+ 0x4b37: "\xb8\x06\u4b37", // 䬷
+ 0x4b38: "\xb8\x06\u4b38", // 䬸
+ 0x4b39: "\xb8\x06\u4b39", // 䬹
+ 0x4b3a: "\xb8\x06\u4b3a", // 䬺
+ 0x4b3b: "\xb8\x06\u4b3b", // 䬻
+ 0x4b3c: "\xb8\a\u4b3c", // 䬼
+ 0x4b3d: "\xb8\a\u4b3d", // 䬽
+ 0x4b3e: "\xb8\a\u4b3e", // 䬾
+ 0x4b3f: "\xb8\a\u4b3f", // 䬿
+ 0x4b40: "\xb8\a\u4b40", // 䭀
+ 0x4b41: "\xb8\a\u4b41", // 䭁
+ 0x4b42: "\xb8\a\u4b42", // 䭂
+ 0x4b43: "\xb8\b\u4b43", // 䭃
+ 0x4b44: "\xb8\b\u4b44", // 䭄
+ 0x4b45: "\xb8\b\u4b45", // 䭅
+ 0x4b46: "\xb8\b\u4b46", // 䭆
+ 0x4b47: "\xb8\b\u4b47", // 䭇
+ 0x4b48: "\xb8\t\u4b48", // 䭈
+ 0x4b49: "\xb8\t\u4b49", // 䭉
+ 0x4b4a: "\xb8\t\u4b4a", // 䭊
+ 0x4b4b: "\xb8\t\u4b4b", // 䭋
+ 0x4b4c: "\xb8\t\u4b4c", // 䭌
+ 0x4b4d: "\xb8\t\u4b4d", // 䭍
+ 0x4b4e: "\xb8\t\u4b4e", // 䭎
+ 0x4b4f: "\xb8\t\u4b4f", // 䭏
+ 0x4b50: "\xb8\n\u4b50", // 䭐
+ 0x4b51: "\xb8\n\u4b51", // 䭑
+ 0x4b52: "\xb8\n\u4b52", // 䭒
+ 0x4b53: "\xb8\n\u4b53", // 䭓
+ 0x4b54: "\xb8\n\u4b54", // 䭔
+ 0x4b55: "\xb8\v\u4b55", // 䭕
+ 0x4b56: "\xb8\v\u4b56", // 䭖
+ 0x4b57: "\xb8\v\u4b57", // 䭗
+ 0x4b58: "\xb8\f\u4b58", // 䭘
+ 0x4b59: "\xb8\f\u4b59", // 䭙
+ 0x4b5a: "\xb8\f\u4b5a", // 䭚
+ 0x4b5b: "\xb8\f\u4b5b", // 䭛
+ 0x4b5c: "\xb8\f\u4b5c", // 䭜
+ 0x4b5d: "\xb8\r\u4b5d", // 䭝
+ 0x4b5e: "\xb8\r\u4b5e", // 䭞
+ 0x4b5f: "\xb8\r\u4b5f", // 䭟
+ 0x4b60: "\xb8\r\u4b60", // 䭠
+ 0x4b61: "\xb8\x0e\u4b61", // 䭡
+ 0x4b62: "\xb8\x0e\u4b62", // 䭢
+ 0x4b63: "\xb8\x0e\u4b63", // 䭣
+ 0x4b64: "\xb8\x0e\u4b64", // 䭤
+ 0x4b65: "\xb8\x0f\u4b65", // 䭥
+ 0x4b66: "\xb8\x11\u4b66", // 䭦
+ 0x4b67: "\xb8\x11\u4b67", // 䭧
+ 0x4b68: "\xb8\x12\u4b68", // 䭨
+ 0x4b69: "\xb8\x13\u4b69", // 䭩
+ 0x4b6a: "\xb8\f\u4b6a", // 䭪
+ 0x4b6b: "\xb9\x06\u4b6b", // 䭫
+ 0x4b6c: "\xb9\x06\u4b6c", // 䭬
+ 0x4b6d: "\xb9\t\u4b6d", // 䭭
+ 0x4b6e: "\xb9\n\u4b6e", // 䭮
+ 0x4b6f: "\xba\x05\u4b6f", // 䭯
+ 0x4b70: "\xba\b\u4b70", // 䭰
+ 0x4b71: "\xba\b\u4b71", // 䭱
+ 0x4b72: "\xba\b\u4b72", // 䭲
+ 0x4b73: "\xba\x12\u4b73", // 䭳
+ 0x4b74: "\xbb\x02\u4b74", // 䭴
+ 0x4b75: "\xbb\x03\u4b75", // 䭵
+ 0x4b76: "\xbb\x03\u4b76", // 䭶
+ 0x4b77: "\xbb\x04\u4b77", // 䭷
+ 0x4b78: "\xbb\x04\u4b78", // 䭸
+ 0x4b79: "\xbb\x04\u4b79", // 䭹
+ 0x4b7a: "\xbb\x04\u4b7a", // 䭺
+ 0x4b7b: "\xbb\x04\u4b7b", // 䭻
+ 0x4b7c: "\xbb\x04\u4b7c", // 䭼
+ 0x4b7d: "\xbb\x04\u4b7d", // 䭽
+ 0x4b7e: "\xbb\x04\u4b7e", // 䭾
+ 0x4b7f: "\xbb\x05\u4b7f", // 䭿
+ 0x4b80: "\xbb\x05\u4b80", // 䮀
+ 0x4b81: "\xbb\x05\u4b81", // 䮁
+ 0x4b82: "\xbb\x05\u4b82", // 䮂
+ 0x4b83: "\xbb\x05\u4b83", // 䮃
+ 0x4b84: "\xbb\x05\u4b84", // 䮄
+ 0x4b85: "\xbb\x05\u4b85", // 䮅
+ 0x4b86: "\xbb\x06\u4b86", // 䮆
+ 0x4b87: "\xbb\x06\u4b87", // 䮇
+ 0x4b88: "\xbb\x06\u4b88", // 䮈
+ 0x4b89: "\xbb\x06\u4b89", // 䮉
+ 0x4b8a: "\xbb\x06\u4b8a", // 䮊
+ 0x4b8b: "\xbb\x06\u4b8b", // 䮋
+ 0x4b8c: "\xbb\x06\u4b8c", // 䮌
+ 0x4b8d: "\xbb\x06\u4b8d", // 䮍
+ 0x4b8e: "\xbb\a\u4b8e", // 䮎
+ 0x4b8f: "\xbb\a\u4b8f", // 䮏
+ 0x4b90: "\xbb\a\u4b90", // 䮐
+ 0x4b91: "\xbb\a\u4b91", // 䮑
+ 0x4b92: "\xbb\a\u4b92", // 䮒
+ 0x4b93: "\xbb\b\u4b93", // 䮓
+ 0x4b94: "\xbb\b\u4b94", // 䮔
+ 0x4b95: "\xbb\b\u4b95", // 䮕
+ 0x4b96: "\xbb\b\u4b96", // 䮖
+ 0x4b97: "\xbb\b\u4b97", // 䮗
+ 0x4b98: "\xbb\b\u4b98", // 䮘
+ 0x4b99: "\xbb\b\u4b99", // 䮙
+ 0x4b9a: "\xbb\b\u4b9a", // 䮚
+ 0x4b9b: "\xbb\b\u4b9b", // 䮛
+ 0x4b9c: "\xbb\t\u4b9c", // 䮜
+ 0x4b9d: "\xbb\t\u4b9d", // 䮝
+ 0x4b9e: "\xbb\t\u4b9e", // 䮞
+ 0x4b9f: "\xbb\t\u4b9f", // 䮟
+ 0x4ba0: "\xbb\t\u4ba0", // 䮠
+ 0x4ba1: "\xbb\t\u4ba1", // 䮡
+ 0x4ba2: "\xbb\t\u4ba2", // 䮢
+ 0x4ba3: "\xbb\n\u4ba3", // 䮣
+ 0x4ba4: "\xbb\n\u4ba4", // 䮤
+ 0x4ba5: "\xbb\n\u4ba5", // 䮥
+ 0x4ba6: "\xbb\n\u4ba6", // 䮦
+ 0x4ba7: "\xbb\n\u4ba7", // 䮧
+ 0x4ba8: "\xbb\n\u4ba8", // 䮨
+ 0x4ba9: "\xbb\n\u4ba9", // 䮩
+ 0x4baa: "\xbb\v\u4baa", // 䮪
+ 0x4bab: "\xbb\v\u4bab", // 䮫
+ 0x4bac: "\xbb\v\u4bac", // 䮬
+ 0x4bad: "\xbb\v\u4bad", // 䮭
+ 0x4bae: "\xbb\v\u4bae", // 䮮
+ 0x4baf: "\xbb\v\u4baf", // 䮯
+ 0x4bb0: "\xbb\v\u4bb0", // 䮰
+ 0x4bb1: "\xbb\v\u4bb1", // 䮱
+ 0x4bb2: "\xbb\f\u4bb2", // 䮲
+ 0x4bb3: "\xbb\f\u4bb3", // 䮳
+ 0x4bb4: "\xbb\f\u4bb4", // 䮴
+ 0x4bb5: "\xbb\f\u4bb5", // 䮵
+ 0x4bb6: "\xbb\f\u4bb6", // 䮶
+ 0x4bb7: "\xbb\r\u4bb7", // 䮷
+ 0x4bb8: "\xbb\r\u4bb8", // 䮸
+ 0x4bb9: "\xbb\r\u4bb9", // 䮹
+ 0x4bba: "\xbb\x0e\u4bba", // 䮺
+ 0x4bbb: "\xbb\x0e\u4bbb", // 䮻
+ 0x4bbc: "\xbb\x0e\u4bbc", // 䮼
+ 0x4bbd: "\xbb\x0f\u4bbd", // 䮽
+ 0x4bbe: "\xbb\x10\u4bbe", // 䮾
+ 0x4bbf: "\xbb\x11\u4bbf", // 䮿
+ 0x4bc0: "\xbb\x12\u4bc0", // 䯀
+ 0x4bc1: "\xbb\x13\u4bc1", // 䯁
+ 0x4bc2: "\xbb\x18\u4bc2", // 䯂
+ 0x4bc3: "\xbb\x06\u4bc3", // 䯃
+ 0x4bc4: "\xbb\a\u4bc4", // 䯄
+ 0x4bc5: "\xbb\n\u4bc5", // 䯅
+ 0x4bc6: "\xbc\x01\u4bc6", // 䯆
+ 0x4bc7: "\xbc\x02\u4bc7", // 䯇
+ 0x4bc8: "\xbc\x04\u4bc8", // 䯈
+ 0x4bc9: "\xbc\x04\u4bc9", // 䯉
+ 0x4bca: "\xbc\x05\u4bca", // 䯊
+ 0x4bcb: "\xbc\x05\u4bcb", // 䯋
+ 0x4bcc: "\xbc\x05\u4bcc", // 䯌
+ 0x4bcd: "\xbc\x05\u4bcd", // 䯍
+ 0x4bce: "\xbc\x05\u4bce", // 䯎
+ 0x4bcf: "\xbc\x06\u4bcf", // 䯏
+ 0x4bd0: "\xbc\x06\u4bd0", // 䯐
+ 0x4bd1: "\xbc\x06\u4bd1", // 䯑
+ 0x4bd2: "\xbc\x06\u4bd2", // 䯒
+ 0x4bd3: "\xbc\x06\u4bd3", // 䯓
+ 0x4bd4: "\xbc\x06\u4bd4", // 䯔
+ 0x4bd5: "\xbc\a\u4bd5", // 䯕
+ 0x4bd6: "\xbc\a\u4bd6", // 䯖
+ 0x4bd7: "\xbc\a\u4bd7", // 䯗
+ 0x4bd8: "\xbc\a\u4bd8", // 䯘
+ 0x4bd9: "\xbc\a\u4bd9", // 䯙
+ 0x4bda: "\xbc\a\u4bda", // 䯚
+ 0x4bdb: "\xbc\b\u4bdb", // 䯛
+ 0x4bdc: "\xbc\b\u4bdc", // 䯜
+ 0x4bdd: "\xbc\t\u4bdd", // 䯝
+ 0x4bde: "\xbc\t\u4bde", // 䯞
+ 0x4bdf: "\xbc\t\u4bdf", // 䯟
+ 0x4be0: "\xbc\t\u4be0", // 䯠
+ 0x4be1: "\xbc\n\u4be1", // 䯡
+ 0x4be2: "\xbc\v\u4be2", // 䯢
+ 0x4be3: "\xbc\f\u4be3", // 䯣
+ 0x4be4: "\xbc\r\u4be4", // 䯤
+ 0x4be5: "\xbc\x0e\u4be5", // 䯥
+ 0x4be6: "\xbc\x0f\u4be6", // 䯦
+ 0x4be7: "\xbd\x02\u4be7", // 䯧
+ 0x4be8: "\xbd\x03\u4be8", // 䯨
+ 0x4be9: "\xbd\x04\u4be9", // 䯩
+ 0x4bea: "\xbd\t\u4bea", // 䯪
+ 0x4beb: "\xbd\f\u4beb", // 䯫
+ 0x4bec: "\xbd\x0f\u4bec", // 䯬
+ 0x4bed: "\xbe\x02\u4bed", // 䯭
+ 0x4bee: "\xbe\x02\u4bee", // 䯮
+ 0x4bef: "\xbe\x04\u4bef", // 䯯
+ 0x4bf0: "\xbe\x04\u4bf0", // 䯰
+ 0x4bf1: "\xbe\x04\u4bf1", // 䯱
+ 0x4bf2: "\xbe\x04\u4bf2", // 䯲
+ 0x4bf3: "\xbe\x04\u4bf3", // 䯳
+ 0x4bf4: "\xbe\x04\u4bf4", // 䯴
+ 0x4bf5: "\xbe\x05\u4bf5", // 䯵
+ 0x4bf6: "\xbe\x05\u4bf6", // 䯶
+ 0x4bf7: "\xbe\x06\u4bf7", // 䯷
+ 0x4bf8: "\xbe\x06\u4bf8", // 䯸
+ 0x4bf9: "\xbe\a\u4bf9", // 䯹
+ 0x4bfa: "\xbe\a\u4bfa", // 䯺
+ 0x4bfb: "\xbe\a\u4bfb", // 䯻
+ 0x4bfc: "\xbe\a\u4bfc", // 䯼
+ 0x4bfd: "\xbe\b\u4bfd", // 䯽
+ 0x4bfe: "\xbe\b\u4bfe", // 䯾
+ 0x4bff: "\xbe\b\u4bff", // 䯿
+ 0x4c00: "\xbe\b\u4c00", // 䰀
+ 0x4c01: "\xbe\b\u4c01", // 䰁
+ 0x4c02: "\xbe\b\u4c02", // 䰂
+ 0x4c03: "\xbe\b\u4c03", // 䰃
+ 0x4c04: "\xbe\t\u4c04", // 䰄
+ 0x4c05: "\xbe\t\u4c05", // 䰅
+ 0x4c06: "\xbe\t\u4c06", // 䰆
+ 0x4c07: "\xbe\t\u4c07", // 䰇
+ 0x4c08: "\xbe\n\u4c08", // 䰈
+ 0x4c09: "\xbe\n\u4c09", // 䰉
+ 0x4c0a: "\xbe\n\u4c0a", // 䰊
+ 0x4c0b: "\xbe\n\u4c0b", // 䰋
+ 0x4c0c: "\xbe\v\u4c0c", // 䰌
+ 0x4c0d: "\xbe\v\u4c0d", // 䰍
+ 0x4c0e: "\xbe\f\u4c0e", // 䰎
+ 0x4c0f: "\xbe\x0e\u4c0f", // 䰏
+ 0x4c10: "\xbe\x0e\u4c10", // 䰐
+ 0x4c11: "\xbe\x0e\u4c11", // 䰑
+ 0x4c12: "\xbe\x0e\u4c12", // 䰒
+ 0x4c13: "\xbe\x0f\u4c13", // 䰓
+ 0x4c14: "\xbe\x0f\u4c14", // 䰔
+ 0x4c15: "\xbe\x10\u4c15", // 䰕
+ 0x4c16: "\xbe\x13\u4c16", // 䰖
+ 0x4c17: "\xbf\n\u4c17", // 䰗
+ 0x4c18: "\xbf\v\u4c18", // 䰘
+ 0x4c19: "\xc1\x04\u4c19", // 䰙
+ 0x4c1a: "\xc1\x04\u4c1a", // 䰚
+ 0x4c1b: "\xc1\x05\u4c1b", // 䰛
+ 0x4c1c: "\xc1\x06\u4c1c", // 䰜
+ 0x4c1d: "\xc1\f\u4c1d", // 䰝
+ 0x4c1e: "\xc1\x0f\u4c1e", // 䰞
+ 0x4c1f: "\xc2\x04\u4c1f", // 䰟
+ 0x4c20: "\xc2\x05\u4c20", // 䰠
+ 0x4c21: "\xc2\x05\u4c21", // 䰡
+ 0x4c22: "\xc2\x06\u4c22", // 䰢
+ 0x4c23: "\xc2\x06\u4c23", // 䰣
+ 0x4c24: "\xc2\b\u4c24", // 䰤
+ 0x4c25: "\xc2\b\u4c25", // 䰥
+ 0x4c26: "\xc2\b\u4c26", // 䰦
+ 0x4c27: "\xc2\b\u4c27", // 䰧
+ 0x4c28: "\xc2\t\u4c28", // 䰨
+ 0x4c29: "\xc2\t\u4c29", // 䰩
+ 0x4c2a: "\xc2\n\u4c2a", // 䰪
+ 0x4c2b: "\xc2\f\u4c2b", // 䰫
+ 0x4c2c: "\xc2\f\u4c2c", // 䰬
+ 0x4c2d: "\xc2\f\u4c2d", // 䰭
+ 0x4c2e: "\xc2\r\u4c2e", // 䰮
+ 0x4c2f: "\xc2\x0e\u4c2f", // 䰯
+ 0x4c30: "\xc2\x0e\u4c30", // 䰰
+ 0x4c31: "\xc2\x18\u4c31", // 䰱
+ 0x4c32: "\xc3\x01\u4c32", // 䰲
+ 0x4c33: "\xc3\x02\u4c33", // 䰳
+ 0x4c34: "\xc3\x03\u4c34", // 䰴
+ 0x4c35: "\xc3\x03\u4c35", // 䰵
+ 0x4c36: "\xc3\x03\u4c36", // 䰶
+ 0x4c37: "\xc3\x04\u4c37", // 䰷
+ 0x4c38: "\xc3\x04\u4c38", // 䰸
+ 0x4c39: "\xc3\x04\u4c39", // 䰹
+ 0x4c3a: "\xc3\x04\u4c3a", // 䰺
+ 0x4c3b: "\xc3\x04\u4c3b", // 䰻
+ 0x4c3c: "\xc3\x04\u4c3c", // 䰼
+ 0x4c3d: "\xc3\x04\u4c3d", // 䰽
+ 0x4c3e: "\xc3\x04\u4c3e", // 䰾
+ 0x4c3f: "\xc3\x05\u4c3f", // 䰿
+ 0x4c40: "\xc3\x05\u4c40", // 䱀
+ 0x4c41: "\xc3\x05\u4c41", // 䱁
+ 0x4c42: "\xc3\x05\u4c42", // 䱂
+ 0x4c43: "\xc3\x05\u4c43", // 䱃
+ 0x4c44: "\xc3\x05\u4c44", // 䱄
+ 0x4c45: "\xc3\x05\u4c45", // 䱅
+ 0x4c46: "\xc3\x05\u4c46", // 䱆
+ 0x4c47: "\xc3\x05\u4c47", // 䱇
+ 0x4c48: "\xc3\x05\u4c48", // 䱈
+ 0x4c49: "\xc3\x05\u4c49", // 䱉
+ 0x4c4a: "\xc3\x06\u4c4a", // 䱊
+ 0x4c4b: "\xc3\x06\u4c4b", // 䱋
+ 0x4c4c: "\xc3\x06\u4c4c", // 䱌
+ 0x4c4d: "\xc3\x06\u4c4d", // 䱍
+ 0x4c4e: "\xc3\x06\u4c4e", // 䱎
+ 0x4c4f: "\xc3\a\u4c4f", // 䱏
+ 0x4c50: "\xc3\a\u4c50", // 䱐
+ 0x4c51: "\xc3\a\u4c51", // 䱑
+ 0x4c52: "\xc3\a\u4c52", // 䱒
+ 0x4c53: "\xc3\a\u4c53", // 䱓
+ 0x4c54: "\xc3\a\u4c54", // 䱔
+ 0x4c55: "\xc3\a\u4c55", // 䱕
+ 0x4c56: "\xc3\a\u4c56", // 䱖
+ 0x4c57: "\xc3\a\u4c57", // 䱗
+ 0x4c58: "\xc3\a\u4c58", // 䱘
+ 0x4c59: "\xc3\b\u4c59", // 䱙
+ 0x4c5a: "\xc3\b\u4c5a", // 䱚
+ 0x4c5b: "\xc3\b\u4c5b", // 䱛
+ 0x4c5c: "\xc3\b\u4c5c", // 䱜
+ 0x4c5d: "\xc3\b\u4c5d", // 䱝
+ 0x4c5e: "\xc3\b\u4c5e", // 䱞
+ 0x4c5f: "\xc3\b\u4c5f", // 䱟
+ 0x4c60: "\xc3\b\u4c60", // 䱠
+ 0x4c61: "\xc3\b\u4c61", // 䱡
+ 0x4c62: "\xc3\b\u4c62", // 䱢
+ 0x4c63: "\xc3\b\u4c63", // 䱣
+ 0x4c64: "\xc3\b\u4c64", // 䱤
+ 0x4c65: "\xc3\b\u4c65", // 䱥
+ 0x4c66: "\xc3\b\u4c66", // 䱦
+ 0x4c67: "\xc3\b\u4c67", // 䱧
+ 0x4c68: "\xc3\b\u4c68", // 䱨
+ 0x4c69: "\xc3\b\u4c69", // 䱩
+ 0x4c6a: "\xc3\b\u4c6a", // 䱪
+ 0x4c6b: "\xc3\t\u4c6b", // 䱫
+ 0x4c6c: "\xc3\t\u4c6c", // 䱬
+ 0x4c6d: "\xc3\t\u4c6d", // 䱭
+ 0x4c6e: "\xc3\t\u4c6e", // 䱮
+ 0x4c6f: "\xc3\t\u4c6f", // 䱯
+ 0x4c70: "\xc3\t\u4c70", // 䱰
+ 0x4c71: "\xc3\t\u4c71", // 䱱
+ 0x4c72: "\xc3\t\u4c72", // 䱲
+ 0x4c73: "\xc3\t\u4c73", // 䱳
+ 0x4c74: "\xc3\t\u4c74", // 䱴
+ 0x4c75: "\xc3\n\u4c75", // 䱵
+ 0x4c76: "\xc3\n\u4c76", // 䱶
+ 0x4c77: "\xc3\n\u4c77", // 䱷
+ 0x4c78: "\xc3\n\u4c78", // 䱸
+ 0x4c79: "\xc3\n\u4c79", // 䱹
+ 0x4c7a: "\xc3\n\u4c7a", // 䱺
+ 0x4c7b: "\xc3\n\u4c7b", // 䱻
+ 0x4c7c: "\xc3\n\u4c7c", // 䱼
+ 0x4c7d: "\xc3\n\u4c7d", // 䱽
+ 0x4c7e: "\xc3\v\u4c7e", // 䱾
+ 0x4c7f: "\xc3\v\u4c7f", // 䱿
+ 0x4c80: "\xc3\v\u4c80", // 䲀
+ 0x4c81: "\xc3\v\u4c81", // 䲁
+ 0x4c82: "\xc3\v\u4c82", // 䲂
+ 0x4c83: "\xc3\v\u4c83", // 䲃
+ 0x4c84: "\xc3\v\u4c84", // 䲄
+ 0x4c85: "\xc3\v\u4c85", // 䲅
+ 0x4c86: "\xc3\v\u4c86", // 䲆
+ 0x4c87: "\xc3\v\u4c87", // 䲇
+ 0x4c88: "\xc3\v\u4c88", // 䲈
+ 0x4c89: "\xc3\f\u4c89", // 䲉
+ 0x4c8a: "\xc3\f\u4c8a", // 䲊
+ 0x4c8b: "\xc3\f\u4c8b", // 䲋
+ 0x4c8c: "\xc3\f\u4c8c", // 䲌
+ 0x4c8d: "\xc3\f\u4c8d", // 䲍
+ 0x4c8e: "\xc3\f\u4c8e", // 䲎
+ 0x4c8f: "\xc3\f\u4c8f", // 䲏
+ 0x4c90: "\xc3\r\u4c90", // 䲐
+ 0x4c91: "\xc3\r\u4c91", // 䲑
+ 0x4c92: "\xc3\r\u4c92", // 䲒
+ 0x4c93: "\xc3\r\u4c93", // 䲓
+ 0x4c94: "\xc3\r\u4c94", // 䲔
+ 0x4c95: "\xc3\r\u4c95", // 䲕
+ 0x4c96: "\xc3\x0e\u4c96", // 䲖
+ 0x4c97: "\xc3\x0e\u4c97", // 䲗
+ 0x4c98: "\xc3\x0e\u4c98", // 䲘
+ 0x4c99: "\xc3\x0f\u4c99", // 䲙
+ 0x4c9a: "\xc3\x10\u4c9a", // 䲚
+ 0x4c9b: "\xc3\x10\u4c9b", // 䲛
+ 0x4c9c: "\xc3!\u4c9c", // 䲜
+ 0x4c9d: "\xc3\x04\u4c9d", // 䲝
+ 0x4c9e: "\xc3\x05\u4c9e", // 䲞
+ 0x4c9f: "\xc3\x05\u4c9f", // 䲟
+ 0x4ca0: "\xc3\t\u4ca0", // 䲠
+ 0x4ca1: "\xc3\t\u4ca1", // 䲡
+ 0x4ca2: "\xc3\n\u4ca2", // 䲢
+ 0x4ca3: "\xc3\n\u4ca3", // 䲣
+ 0x4ca4: "\xc3\n\u4ca4", // 䲤
+ 0x4ca5: "\xc4\x02\u4ca5", // 䲥
+ 0x4ca6: "\xc4\x03\u4ca6", // 䲦
+ 0x4ca7: "\xc4\x03\u4ca7", // 䲧
+ 0x4ca8: "\xc4\x03\u4ca8", // 䲨
+ 0x4ca9: "\xc4\x03\u4ca9", // 䲩
+ 0x4caa: "\xc4\x03\u4caa", // 䲪
+ 0x4cab: "\xc4\x03\u4cab", // 䲫
+ 0x4cac: "\xc4\x04\u4cac", // 䲬
+ 0x4cad: "\xc4\x04\u4cad", // 䲭
+ 0x4cae: "\xc4\x04\u4cae", // 䲮
+ 0x4caf: "\xc4\x04\u4caf", // 䲯
+ 0x4cb0: "\xc4\x04\u4cb0", // 䲰
+ 0x4cb1: "\xc4\x04\u4cb1", // 䲱
+ 0x4cb2: "\xc4\x04\u4cb2", // 䲲
+ 0x4cb3: "\xc4\x04\u4cb3", // 䲳
+ 0x4cb4: "\xc4\x04\u4cb4", // 䲴
+ 0x4cb5: "\xc4\x04\u4cb5", // 䲵
+ 0x4cb6: "\xc4\x04\u4cb6", // 䲶
+ 0x4cb7: "\xc4\x04\u4cb7", // 䲷
+ 0x4cb8: "\xc4\x04\u4cb8", // 䲸
+ 0x4cb9: "\xc4\x05\u4cb9", // 䲹
+ 0x4cba: "\xc4\x05\u4cba", // 䲺
+ 0x4cbb: "\xc4\x05\u4cbb", // 䲻
+ 0x4cbc: "\xc4\x05\u4cbc", // 䲼
+ 0x4cbd: "\xc4\x05\u4cbd", // 䲽
+ 0x4cbe: "\xc4\x05\u4cbe", // 䲾
+ 0x4cbf: "\xc4\x05\u4cbf", // 䲿
+ 0x4cc0: "\xc4\x05\u4cc0", // 䳀
+ 0x4cc1: "\xc4\x05\u4cc1", // 䳁
+ 0x4cc2: "\xc4\x05\u4cc2", // 䳂
+ 0x4cc3: "\xc4\x05\u4cc3", // 䳃
+ 0x4cc4: "\xc4\x05\u4cc4", // 䳄
+ 0x4cc5: "\xc4\x05\u4cc5", // 䳅
+ 0x4cc6: "\xc4\x05\u4cc6", // 䳆
+ 0x4cc7: "\xc4\x05\u4cc7", // 䳇
+ 0x4cc8: "\xc4\x05\u4cc8", // 䳈
+ 0x4cc9: "\xc4\x05\u4cc9", // 䳉
+ 0x4cca: "\xc4\x05\u4cca", // 䳊
+ 0x4ccb: "\xc4\x06\u4ccb", // 䳋
+ 0x4ccc: "\xc4\x06\u4ccc", // 䳌
+ 0x4ccd: "\xc4\x06\u4ccd", // 䳍
+ 0x4cce: "\xc4\x06\u4cce", // 䳎
+ 0x4ccf: "\xc4\x06\u4ccf", // 䳏
+ 0x4cd0: "\xc4\x06\u4cd0", // 䳐
+ 0x4cd1: "\xc4\x06\u4cd1", // 䳑
+ 0x4cd2: "\xc4\x06\u4cd2", // 䳒
+ 0x4cd3: "\xc4\x06\u4cd3", // 䳓
+ 0x4cd4: "\xc4\x06\u4cd4", // 䳔
+ 0x4cd5: "\xc4\a\u4cd5", // 䳕
+ 0x4cd6: "\xc4\a\u4cd6", // 䳖
+ 0x4cd7: "\xc4\a\u4cd7", // 䳗
+ 0x4cd8: "\xc4\a\u4cd8", // 䳘
+ 0x4cd9: "\xc4\a\u4cd9", // 䳙
+ 0x4cda: "\xc4\a\u4cda", // 䳚
+ 0x4cdb: "\xc4\a\u4cdb", // 䳛
+ 0x4cdc: "\xc4\a\u4cdc", // 䳜
+ 0x4cdd: "\xc4\b\u4cdd", // 䳝
+ 0x4cde: "\xc4\b\u4cde", // 䳞
+ 0x4cdf: "\xc4\b\u4cdf", // 䳟
+ 0x4ce0: "\xc4\b\u4ce0", // 䳠
+ 0x4ce1: "\xc4\b\u4ce1", // 䳡
+ 0x4ce2: "\xc4\b\u4ce2", // 䳢
+ 0x4ce3: "\xc4\b\u4ce3", // 䳣
+ 0x4ce4: "\xc4\b\u4ce4", // 䳤
+ 0x4ce5: "\xc4\b\u4ce5", // 䳥
+ 0x4ce6: "\xc4\t\u4ce6", // 䳦
+ 0x4ce7: "\xc4\t\u4ce7", // 䳧
+ 0x4ce8: "\xc4\t\u4ce8", // 䳨
+ 0x4ce9: "\xc4\t\u4ce9", // 䳩
+ 0x4cea: "\xc4\t\u4cea", // 䳪
+ 0x4ceb: "\xc4\t\u4ceb", // 䳫
+ 0x4cec: "\xc4\t\u4cec", // 䳬
+ 0x4ced: "\xc4\t\u4ced", // 䳭
+ 0x4cee: "\xc4\t\u4cee", // 䳮
+ 0x4cef: "\xc4\t\u4cef", // 䳯
+ 0x4cf0: "\xc4\t\u4cf0", // 䳰
+ 0x4cf1: "\xc4\n\u4cf1", // 䳱
+ 0x4cf2: "\xc4\n\u4cf2", // 䳲
+ 0x4cf3: "\xc4\n\u4cf3", // 䳳
+ 0x4cf4: "\xc4\n\u4cf4", // 䳴
+ 0x4cf5: "\xc4\n\u4cf5", // 䳵
+ 0x4cf6: "\xc4\n\u4cf6", // 䳶
+ 0x4cf7: "\xc4\v\u4cf7", // 䳷
+ 0x4cf8: "\xc4\v\u4cf8", // 䳸
+ 0x4cf9: "\xc4\v\u4cf9", // 䳹
+ 0x4cfa: "\xc4\v\u4cfa", // 䳺
+ 0x4cfb: "\xc4\v\u4cfb", // 䳻
+ 0x4cfc: "\xc4\v\u4cfc", // 䳼
+ 0x4cfd: "\xc4\v\u4cfd", // 䳽
+ 0x4cfe: "\xc4\f\u4cfe", // 䳾
+ 0x4cff: "\xc4\f\u4cff", // 䳿
+ 0x4d00: "\xc4\f\u4d00", // 䴀
+ 0x4d01: "\xc4\f\u4d01", // 䴁
+ 0x4d02: "\xc4\f\u4d02", // 䴂
+ 0x4d03: "\xc4\f\u4d03", // 䴃
+ 0x4d04: "\xc4\f\u4d04", // 䴄
+ 0x4d05: "\xc4\f\u4d05", // 䴅
+ 0x4d06: "\xc4\f\u4d06", // 䴆
+ 0x4d07: "\xc4\r\u4d07", // 䴇
+ 0x4d08: "\xc4\r\u4d08", // 䴈
+ 0x4d09: "\xc4\r\u4d09", // 䴉
+ 0x4d0a: "\xc4\r\u4d0a", // 䴊
+ 0x4d0b: "\xc4\r\u4d0b", // 䴋
+ 0x4d0c: "\xc4\x0e\u4d0c", // 䴌
+ 0x4d0d: "\xc4\x0e\u4d0d", // 䴍
+ 0x4d0e: "\xc4\x0f\u4d0e", // 䴎
+ 0x4d0f: "\xc4\x10\u4d0f", // 䴏
+ 0x4d10: "\xc4\x14\u4d10", // 䴐
+ 0x4d11: "\xc4\x17\u4d11", // 䴑
+ 0x4d12: "\xc4\x18\u4d12", // 䴒
+ 0x4d13: "\xc4\x04\u4d13", // 䴓
+ 0x4d14: "\xc4\x06\u4d14", // 䴔
+ 0x4d15: "\xc4\x06\u4d15", // 䴕
+ 0x4d16: "\xc4\b\u4d16", // 䴖
+ 0x4d17: "\xc4\t\u4d17", // 䴗
+ 0x4d18: "\xc4\n\u4d18", // 䴘
+ 0x4d19: "\xc4\r\u4d19", // 䴙
+ 0x4d1a: "\xc5\x04\u4d1a", // 䴚
+ 0x4d1b: "\xc5\a\u4d1b", // 䴛
+ 0x4d1c: "\xc5\n\u4d1c", // 䴜
+ 0x4d1d: "\xc5\f\u4d1d", // 䴝
+ 0x4d1e: "\xc5\x0e\u4d1e", // 䴞
+ 0x4d1f: "\xc6\x03\u4d1f", // 䴟
+ 0x4d20: "\xc6\x04\u4d20", // 䴠
+ 0x4d21: "\xc6\x04\u4d21", // 䴡
+ 0x4d22: "\xc6\x04\u4d22", // 䴢
+ 0x4d23: "\xc6\x05\u4d23", // 䴣
+ 0x4d24: "\xc6\x05\u4d24", // 䴤
+ 0x4d25: "\xc6\x05\u4d25", // 䴥
+ 0x4d26: "\xc6\a\u4d26", // 䴦
+ 0x4d27: "\xc6\b\u4d27", // 䴧
+ 0x4d28: "\xc6\n\u4d28", // 䴨
+ 0x4d29: "\xc6\v\u4d29", // 䴩
+ 0x4d2a: "\xc6\r\u4d2a", // 䴪
+ 0x4d2b: "\xc6\r\u4d2b", // 䴫
+ 0x4d2c: "\xc7\x03\u4d2c", // 䴬
+ 0x4d2d: "\xc7\x03\u4d2d", // 䴭
+ 0x4d2e: "\xc7\x03\u4d2e", // 䴮
+ 0x4d2f: "\xc7\x04\u4d2f", // 䴯
+ 0x4d30: "\xc7\x04\u4d30", // 䴰
+ 0x4d31: "\xc7\x05\u4d31", // 䴱
+ 0x4d32: "\xc7\x05\u4d32", // 䴲
+ 0x4d33: "\xc7\x05\u4d33", // 䴳
+ 0x4d34: "\xc7\x05\u4d34", // 䴴
+ 0x4d35: "\xc7\x06\u4d35", // 䴵
+ 0x4d36: "\xc7\a\u4d36", // 䴶
+ 0x4d37: "\xc7\a\u4d37", // 䴷
+ 0x4d38: "\xc7\a\u4d38", // 䴸
+ 0x4d39: "\xc7\b\u4d39", // 䴹
+ 0x4d3a: "\xc7\b\u4d3a", // 䴺
+ 0x4d3b: "\xc7\b\u4d3b", // 䴻
+ 0x4d3c: "\xc7\b\u4d3c", // 䴼
+ 0x4d3d: "\xc7\b\u4d3d", // 䴽
+ 0x4d3e: "\xc7\n\u4d3e", // 䴾
+ 0x4d3f: "\xc7\n\u4d3f", // 䴿
+ 0x4d40: "\xc7\n\u4d40", // 䵀
+ 0x4d41: "\xc7\v\u4d41", // 䵁
+ 0x4d42: "\xc7\v\u4d42", // 䵂
+ 0x4d43: "\xc7\f\u4d43", // 䵃
+ 0x4d44: "\xc7\r\u4d44", // 䵄
+ 0x4d45: "\xc7\v\u4d45", // 䵅
+ 0x4d46: "\xc7\x0e\u4d46", // 䵆
+ 0x4d47: "\xc8\x04\u4d47", // 䵇
+ 0x4d48: "\xc8\t\u4d48", // 䵈
+ 0x4d49: "\xc8\t\u4d49", // 䵉
+ 0x4d4a: "\xc9\x04\u4d4a", // 䵊
+ 0x4d4b: "\xc9\x06\u4d4b", // 䵋
+ 0x4d4c: "\xc9\a\u4d4c", // 䵌
+ 0x4d4d: "\xc9\b\u4d4d", // 䵍
+ 0x4d4e: "\xc9\t\u4d4e", // 䵎
+ 0x4d4f: "\xc9\v\u4d4f", // 䵏
+ 0x4d50: "\xc9\f\u4d50", // 䵐
+ 0x4d51: "\xca\x03\u4d51", // 䵑
+ 0x4d52: "\xca\x04\u4d52", // 䵒
+ 0x4d53: "\xca\x04\u4d53", // 䵓
+ 0x4d54: "\xca\b\u4d54", // 䵔
+ 0x4d55: "\xca\b\u4d55", // 䵕
+ 0x4d56: "\xca\b\u4d56", // 䵖
+ 0x4d57: "\xca\t\u4d57", // 䵗
+ 0x4d58: "\xca\t\u4d58", // 䵘
+ 0x4d59: "\xca\t\u4d59", // 䵙
+ 0x4d5a: "\xca\n\u4d5a", // 䵚
+ 0x4d5b: "\xca\v\u4d5b", // 䵛
+ 0x4d5c: "\xca\r\u4d5c", // 䵜
+ 0x4d5d: "\xcb\x01\u4d5d", // 䵝
+ 0x4d5e: "\xcb\x02\u4d5e", // 䵞
+ 0x4d5f: "\xcb\x03\u4d5f", // 䵟
+ 0x4d60: "\xcb\x03\u4d60", // 䵠
+ 0x4d61: "\xcb\x04\u4d61", // 䵡
+ 0x4d62: "\xcb\x05\u4d62", // 䵢
+ 0x4d63: "\xcb\x05\u4d63", // 䵣
+ 0x4d64: "\xcb\x06\u4d64", // 䵤
+ 0x4d65: "\xcb\x06\u4d65", // 䵥
+ 0x4d66: "\xcb\x06\u4d66", // 䵦
+ 0x4d67: "\xcb\x06\u4d67", // 䵧
+ 0x4d68: "\xcb\a\u4d68", // 䵨
+ 0x4d69: "\xcb\a\u4d69", // 䵩
+ 0x4d6a: "\xcb\b\u4d6a", // 䵪
+ 0x4d6b: "\xcb\b\u4d6b", // 䵫
+ 0x4d6c: "\xcb\b\u4d6c", // 䵬
+ 0x4d6d: "\xcb\t\u4d6d", // 䵭
+ 0x4d6e: "\xcb\t\u4d6e", // 䵮
+ 0x4d6f: "\xcb\t\u4d6f", // 䵯
+ 0x4d70: "\xcb\v\u4d70", // 䵰
+ 0x4d71: "\xcb\f\u4d71", // 䵱
+ 0x4d72: "\xcb\r\u4d72", // 䵲
+ 0x4d73: "\xcb\r\u4d73", // 䵳
+ 0x4d74: "\xcb\r\u4d74", // 䵴
+ 0x4d75: "\xcb\x0e\u4d75", // 䵵
+ 0x4d76: "\xcd\x05\u4d76", // 䵶
+ 0x4d77: "\xcd\x06\u4d77", // 䵷
+ 0x4d78: "\xcd\t\u4d78", // 䵸
+ 0x4d79: "\xcd\v\u4d79", // 䵹
+ 0x4d7a: "\xce\x03\u4d7a", // 䵺
+ 0x4d7b: "\xce\v\u4d7b", // 䵻
+ 0x4d7c: "\xce\v\u4d7c", // 䵼
+ 0x4d7d: "\xcf\x05\u4d7d", // 䵽
+ 0x4d7e: "\xcf\x05\u4d7e", // 䵾
+ 0x4d7f: "\xcf\x05\u4d7f", // 䵿
+ 0x4d80: "\xcf\x06\u4d80", // 䶀
+ 0x4d81: "\xcf\b\u4d81", // 䶁
+ 0x4d82: "\xd0\x03\u4d82", // 䶂
+ 0x4d83: "\xd0\x04\u4d83", // 䶃
+ 0x4d84: "\xd0\x05\u4d84", // 䶄
+ 0x4d85: "\xd0\x06\u4d85", // 䶅
+ 0x4d86: "\xd0\b\u4d86", // 䶆
+ 0x4d87: "\xd0\t\u4d87", // 䶇
+ 0x4d88: "\xd0\n\u4d88", // 䶈
+ 0x4d89: "\xd0\n\u4d89", // 䶉
+ 0x4d8a: "\xd1\x04\u4d8a", // 䶊
+ 0x4d8b: "\xd1\x04\u4d8b", // 䶋
+ 0x4d8c: "\xd1\x05\u4d8c", // 䶌
+ 0x4d8d: "\xd1\x06\u4d8d", // 䶍
+ 0x4d8e: "\xd1\x06\u4d8e", // 䶎
+ 0x4d8f: "\xd1\a\u4d8f", // 䶏
+ 0x4d90: "\xd1\r\u4d90", // 䶐
+ 0x4d91: "\xd1\x10\u4d91", // 䶑
+ 0x4d92: "\xd2\x03\u4d92", // 䶒
+ 0x4d93: "\xd2\x03\u4d93", // 䶓
+ 0x4d94: "\xd3\x03\u4d94", // 䶔
+ 0x4d95: "\xd3\x04\u4d95", // 䶕
+ 0x4d96: "\xd3\x04\u4d96", // 䶖
+ 0x4d97: "\xd3\x05\u4d97", // 䶗
+ 0x4d98: "\xd3\x05\u4d98", // 䶘
+ 0x4d99: "\xd3\x05\u4d99", // 䶙
+ 0x4d9a: "\xd3\x06\u4d9a", // 䶚
+ 0x4d9b: "\xd3\x06\u4d9b", // 䶛
+ 0x4d9c: "\xd3\a\u4d9c", // 䶜
+ 0x4d9d: "\xd3\a\u4d9d", // 䶝
+ 0x4d9e: "\xd3\b\u4d9e", // 䶞
+ 0x4d9f: "\xd3\b\u4d9f", // 䶟
+ 0x4da0: "\xd3\t\u4da0", // 䶠
+ 0x4da1: "\xd3\t\u4da1", // 䶡
+ 0x4da2: "\xd3\t\u4da2", // 䶢
+ 0x4da3: "\xd3\n\u4da3", // 䶣
+ 0x4da4: "\xd3\n\u4da4", // 䶤
+ 0x4da5: "\xd3\v\u4da5", // 䶥
+ 0x4da6: "\xd3\v\u4da6", // 䶦
+ 0x4da7: "\xd3\f\u4da7", // 䶧
+ 0x4da8: "\xd3\r\u4da8", // 䶨
+ 0x4da9: "\xd3\x0e\u4da9", // 䶩
+ 0x4daa: "\xd3\x0e\u4daa", // 䶪
+ 0x4dab: "\xd3\x14\u4dab", // 䶫
+ 0x4dac: "\xd4\x06\u4dac", // 䶬
+ 0x4dad: "\xd4\x04\u4dad", // 䶭
+ 0x4dae: "\xd4\x04\u4dae", // 䶮
+ 0x4daf: "\xd5\x03\u4daf", // 䶯
+ 0x4db0: "\xd5\x04\u4db0", // 䶰
+ 0x4db1: "\xd5\x05\u4db1", // 䶱
+ 0x4db2: "\xd5\x05\u4db2", // 䶲
+ 0x4db3: "\xd6\x04\u4db3", // 䶳
+ 0x4db4: "\xd6\b\u4db4", // 䶴
+ 0x4db5: "\xd6\n\u4db5", // 䶵
+ 0x4e00: "\x01\x00\u4e00", // 一
+ 0x4e01: "\x01\x01\u4e01", // 丁
+ 0x4e02: "\x01\x01\u4e02", // 丂
+ 0x4e03: "\x01\x01\u4e03", // 七
+ 0x4e04: "\x01\x01\u4e04", // 丄
+ 0x4e05: "\x01\x01\u4e05", // 丅
+ 0x4e06: "\x01\x01\u4e06", // 丆
+ 0x4e07: "\x01\x02\u4e07", // 万
+ 0x4e08: "\x01\x02\u4e08", // 丈
+ 0x4e09: "\x01\x02\u4e09", // 三
+ 0x4e0a: "\x01\x02\u4e0a", // 上
+ 0x4e0b: "\x01\x02\u4e0b", // 下
+ 0x4e0c: "\x01\x02\u4e0c", // 丌
+ 0x4e0d: "\x01\x03\u4e0d", // 不
+ 0x4e0e: "\x01\x03\u4e0e", // 与
+ 0x4e0f: "\x01\x03\u4e0f", // 丏
+ 0x4e10: "\x01\x03\u4e10", // 丐
+ 0x4e11: "\x01\x03\u4e11", // 丑
+ 0x4e12: "\x01\x03\u4e12", // 丒
+ 0x4e13: "\x01\x03\u4e13", // 专
+ 0x4e14: "\x01\x04\u4e14", // 且
+ 0x4e15: "\x01\x04\u4e15", // 丕
+ 0x4e16: "\x01\x04\u4e16", // 世
+ 0x4e17: "\x01\x03\u4e17", // 丗
+ 0x4e18: "\x01\x04\u4e18", // 丘
+ 0x4e19: "\x01\x04\u4e19", // 丙
+ 0x4e1a: "\x01\x04\u4e1a", // 业
+ 0x4e1b: "\x01\x04\u4e1b", // 丛
+ 0x4e1c: "\x01\x04\u4e1c", // 东
+ 0x4e1d: "\x01\x04\u4e1d", // 丝
+ 0x4e1e: "\x01\x05\u4e1e", // 丞
+ 0x4e1f: "\x01\x05\u4e1f", // 丟
+ 0x4e20: "\x01\x05\u4e20", // 丠
+ 0x4e21: "\x01\x05\u4e21", // 両
+ 0x4e22: "\x01\x05\u4e22", // 丢
+ 0x4e23: "\x01\x06\u4e23", // 丣
+ 0x4e24: "\x01\x06\u4e24", // 两
+ 0x4e25: "\x01\x06\u4e25", // 严
+ 0x4e26: "\x01\a\u4e26", // 並
+ 0x4e27: "\x01\a\u4e27", // 丧
+ 0x4e28: "\x02\x00\u4e28", // 丨
+ 0x4e29: "\x02\x01\u4e29", // 丩
+ 0x4e2a: "\x02\x02\u4e2a", // 个
+ 0x4e2b: "\x02\x02\u4e2b", // 丫
+ 0x4e2c: "Z\x00\u4e2c", // 丬
+ 0x4e2d: "\x02\x03\u4e2d", // 中
+ 0x4e2e: "\x02\x03\u4e2e", // 丮
+ 0x4e2f: "\x02\x03\u4e2f", // 丯
+ 0x4e30: "\x02\x03\u4e30", // 丰
+ 0x4e31: "\x02\x04\u4e31", // 丱
+ 0x4e32: "\x02\x06\u4e32", // 串
+ 0x4e33: "\x02\a\u4e33", // 丳
+ 0x4e34: "\x02\b\u4e34", // 临
+ 0x4e35: "\x02\t\u4e35", // 丵
+ 0x4e36: "\x03\x00\u4e36", // 丶
+ 0x4e37: "\x03\x01\u4e37", // 丷
+ 0x4e38: "\x03\x02\u4e38", // 丸
+ 0x4e39: "\x03\x03\u4e39", // 丹
+ 0x4e3a: "\x03\x03\u4e3a", // 为
+ 0x4e3b: "\x03\x04\u4e3b", // 主
+ 0x4e3c: "\x03\x04\u4e3c", // 丼
+ 0x4e3d: "\x01\x06\u4e3d", // 丽
+ 0x4e3e: "\x03\b\u4e3e", // 举
+ 0x4e3f: "\x04\x00\u4e3f", // 丿
+ 0x4e40: "\x04\x00\u4e40", // 乀
+ 0x4e41: "\x04\x00\u4e41", // 乁
+ 0x4e42: "\x04\x01\u4e42", // 乂
+ 0x4e43: "\x04\x01\u4e43", // 乃
+ 0x4e44: "\x04\x01\u4e44", // 乄
+ 0x4e45: "\x04\x02\u4e45", // 久
+ 0x4e46: "\x04\x02\u4e46", // 乆
+ 0x4e47: "\x04\x02\u4e47", // 乇
+ 0x4e48: "\x04\x02\u4e48", // 么
+ 0x4e49: "\x03\x02\u4e49", // 义
+ 0x4e4a: "\x04\x02\u4e4a", // 乊
+ 0x4e4b: "\x04\x03\u4e4b", // 之
+ 0x4e4c: "\x04\x03\u4e4c", // 乌
+ 0x4e4d: "\x04\x04\u4e4d", // 乍
+ 0x4e4e: "\x04\x04\u4e4e", // 乎
+ 0x4e4f: "\x04\x04\u4e4f", // 乏
+ 0x4e50: "\x04\x04\u4e50", // 乐
+ 0x4e51: "\x04\x05\u4e51", // 乑
+ 0x4e52: "\x04\x05\u4e52", // 乒
+ 0x4e53: "\x04\x05\u4e53", // 乓
+ 0x4e54: "\x04\x05\u4e54", // 乔
+ 0x4e55: "\x04\x06\u4e55", // 乕
+ 0x4e56: "\x04\a\u4e56", // 乖
+ 0x4e57: "\x04\b\u4e57", // 乗
+ 0x4e58: "\x04\t\u4e58", // 乘
+ 0x4e59: "\x05\x00\u4e59", // 乙
+ 0x4e5a: "\x05\x00\u4e5a", // 乚
+ 0x4e5b: "\x05\x00\u4e5b", // 乛
+ 0x4e5c: "\x05\x01\u4e5c", // 乜
+ 0x4e5d: "\x05\x01\u4e5d", // 九
+ 0x4e5e: "\x05\x02\u4e5e", // 乞
+ 0x4e5f: "\x05\x02\u4e5f", // 也
+ 0x4e60: "\x05\x02\u4e60", // 习
+ 0x4e61: "4\x00\u4e61", // 乡
+ 0x4e62: ".\x01\u4e62", // 乢
+ 0x4e63: "\x05\x03\u4e63", // 乣
+ 0x4e64: "\x05\x03\u4e64", // 乤
+ 0x4e65: "\x05\x03\u4e65", // 乥
+ 0x4e66: "\x05\x03\u4e66", // 书
+ 0x4e67: "\x05\x04\u4e67", // 乧
+ 0x4e68: "\x05\x05\u4e68", // 乨
+ 0x4e69: "\x05\x05\u4e69", // 乩
+ 0x4e6a: "\x05\x05\u4e6a", // 乪
+ 0x4e6b: "\x05\x05\u4e6b", // 乫
+ 0x4e6c: "\x05\x05\u4e6c", // 乬
+ 0x4e6d: "\x05\x05\u4e6d", // 乭
+ 0x4e6e: "\x05\x05\u4e6e", // 乮
+ 0x4e6f: "\x05\x05\u4e6f", // 乯
+ 0x4e70: "\x05\x05\u4e70", // 买
+ 0x4e71: "\x05\x06\u4e71", // 乱
+ 0x4e72: "\x05\x06\u4e72", // 乲
+ 0x4e73: "\x05\a\u4e73", // 乳
+ 0x4e74: "\x05\a\u4e74", // 乴
+ 0x4e75: "\x05\a\u4e75", // 乵
+ 0x4e76: "\x05\a\u4e76", // 乶
+ 0x4e77: "\x05\a\u4e77", // 乷
+ 0x4e78: "\x05\a\u4e78", // 乸
+ 0x4e79: "\x05\b\u4e79", // 乹
+ 0x4e7a: "\x05\b\u4e7a", // 乺
+ 0x4e7b: "\x05\b\u4e7b", // 乻
+ 0x4e7c: "\x05\b\u4e7c", // 乼
+ 0x4e7d: "\x05\t\u4e7d", // 乽
+ 0x4e7e: "\x05\n\u4e7e", // 乾
+ 0x4e7f: "\x05\n\u4e7f", // 乿
+ 0x4e80: "\x05\n\u4e80", // 亀
+ 0x4e81: "\x05\v\u4e81", // 亁
+ 0x4e82: "\x05\f\u4e82", // 亂
+ 0x4e83: "\x05\f\u4e83", // 亃
+ 0x4e84: "\x05\f\u4e84", // 亄
+ 0x4e85: "\x06\x00\u4e85", // 亅
+ 0x4e86: "\x06\x01\u4e86", // 了
+ 0x4e87: "\x06\x02\u4e87", // 亇
+ 0x4e88: "\x06\x03\u4e88", // 予
+ 0x4e89: "\x06\x05\u4e89", // 争
+ 0x4e8a: "\x06\x06\u4e8a", // 亊
+ 0x4e8b: "\x06\a\u4e8b", // 事
+ 0x4e8c: "\a\x00\u4e8c", // 二
+ 0x4e8d: "\a\x01\u4e8d", // 亍
+ 0x4e8e: "\a\x01\u4e8e", // 于
+ 0x4e8f: "\a\x01\u4e8f", // 亏
+ 0x4e90: "\x01\x02\u4e90", // 亐
+ 0x4e91: "\a\x02\u4e91", // 云
+ 0x4e92: "\a\x02\u4e92", // 互
+ 0x4e93: "\a\x02\u4e93", // 亓
+ 0x4e94: "\a\x02\u4e94", // 五
+ 0x4e95: "\a\x02\u4e95", // 井
+ 0x4e96: "\a\x02\u4e96", // 亖
+ 0x4e97: "\a\x03\u4e97", // 亗
+ 0x4e98: "\a\x04\u4e98", // 亘
+ 0x4e99: "\a\x04\u4e99", // 亙
+ 0x4e9a: "\a\x04\u4e9a", // 亚
+ 0x4e9b: "\a\x05\u4e9b", // 些
+ 0x4e9c: "\a\x05\u4e9c", // 亜
+ 0x4e9d: "\a\x06\u4e9d", // 亝
+ 0x4e9e: "\a\x06\u4e9e", // 亞
+ 0x4e9f: "\a\x06\u4e9f", // 亟
+ 0x4ea0: "\b\x00\u4ea0", // 亠
+ 0x4ea1: "\b\x01\u4ea1", // 亡
+ 0x4ea2: "\b\x02\u4ea2", // 亢
+ 0x4ea3: "\b\x02\u4ea3", // 亣
+ 0x4ea4: "\b\x04\u4ea4", // 交
+ 0x4ea5: "\b\x04\u4ea5", // 亥
+ 0x4ea6: "\b\x04\u4ea6", // 亦
+ 0x4ea7: "\b\x04\u4ea7", // 产
+ 0x4ea8: "\b\x05\u4ea8", // 亨
+ 0x4ea9: "\b\x05\u4ea9", // 亩
+ 0x4eaa: "\b\x05\u4eaa", // 亪
+ 0x4eab: "\b\x06\u4eab", // 享
+ 0x4eac: "\b\x06\u4eac", // 京
+ 0x4ead: "\b\a\u4ead", // 亭
+ 0x4eae: "\b\a\u4eae", // 亮
+ 0x4eaf: "\b\a\u4eaf", // 亯
+ 0x4eb0: "\b\a\u4eb0", // 亰
+ 0x4eb1: "\b\a\u4eb1", // 亱
+ 0x4eb2: "\b\a\u4eb2", // 亲
+ 0x4eb3: "\b\b\u4eb3", // 亳
+ 0x4eb4: "\b\n\u4eb4", // 亴
+ 0x4eb5: "\b\n\u4eb5", // 亵
+ 0x4eb6: "\b\v\u4eb6", // 亶
+ 0x4eb7: "\b\v\u4eb7", // 亷
+ 0x4eb8: "\b\x0e\u4eb8", // 亸
+ 0x4eb9: "\b\x13\u4eb9", // 亹
+ 0x4eba: "\t\x00\u4eba", // 人
+ 0x4ebb: "\t\x00\u4ebb", // 亻
+ 0x4ebc: "\t\x01\u4ebc", // 亼
+ 0x4ebd: "\t\x01\u4ebd", // 亽
+ 0x4ebe: "\t\x01\u4ebe", // 亾
+ 0x4ebf: "\t\x01\u4ebf", // 亿
+ 0x4ec0: "\t\x02\u4ec0", // 什
+ 0x4ec1: "\t\x02\u4ec1", // 仁
+ 0x4ec2: "\t\x02\u4ec2", // 仂
+ 0x4ec3: "\t\x02\u4ec3", // 仃
+ 0x4ec4: "\t\x02\u4ec4", // 仄
+ 0x4ec5: "\t\x02\u4ec5", // 仅
+ 0x4ec6: "\t\x02\u4ec6", // 仆
+ 0x4ec7: "\t\x02\u4ec7", // 仇
+ 0x4ec8: "\t\x02\u4ec8", // 仈
+ 0x4ec9: "\t\x02\u4ec9", // 仉
+ 0x4eca: "\t\x02\u4eca", // 今
+ 0x4ecb: "\t\x02\u4ecb", // 介
+ 0x4ecc: "\t\x02\u4ecc", // 仌
+ 0x4ecd: "\t\x02\u4ecd", // 仍
+ 0x4ece: "\t\x02\u4ece", // 从
+ 0x4ecf: "\t\x02\u4ecf", // 仏
+ 0x4ed0: "\t\x02\u4ed0", // 仐
+ 0x4ed1: "\t\x02\u4ed1", // 仑
+ 0x4ed2: "\t\x02\u4ed2", // 仒
+ 0x4ed3: "\t\x02\u4ed3", // 仓
+ 0x4ed4: "\t\x03\u4ed4", // 仔
+ 0x4ed5: "\t\x03\u4ed5", // 仕
+ 0x4ed6: "\t\x03\u4ed6", // 他
+ 0x4ed7: "\t\x03\u4ed7", // 仗
+ 0x4ed8: "\t\x03\u4ed8", // 付
+ 0x4ed9: "\t\x03\u4ed9", // 仙
+ 0x4eda: "\t\x03\u4eda", // 仚
+ 0x4edb: "\t\x03\u4edb", // 仛
+ 0x4edc: "\t\x03\u4edc", // 仜
+ 0x4edd: "\t\x03\u4edd", // 仝
+ 0x4ede: "\t\x03\u4ede", // 仞
+ 0x4edf: "\t\x03\u4edf", // 仟
+ 0x4ee0: "\t\x03\u4ee0", // 仠
+ 0x4ee1: "\t\x03\u4ee1", // 仡
+ 0x4ee2: "\t\x03\u4ee2", // 仢
+ 0x4ee3: "\t\x03\u4ee3", // 代
+ 0x4ee4: "\t\x03\u4ee4", // 令
+ 0x4ee5: "\t\x03\u4ee5", // 以
+ 0x4ee6: "\t\x03\u4ee6", // 仦
+ 0x4ee7: "\t\x03\u4ee7", // 仧
+ 0x4ee8: "\t\x03\u4ee8", // 仨
+ 0x4ee9: "\t\x03\u4ee9", // 仩
+ 0x4eea: "\t\x03\u4eea", // 仪
+ 0x4eeb: "\t\x03\u4eeb", // 仫
+ 0x4eec: "\t\x03\u4eec", // 们
+ 0x4eed: "\t\x03\u4eed", // 仭
+ 0x4eee: "\t\x04\u4eee", // 仮
+ 0x4eef: "\t\x04\u4eef", // 仯
+ 0x4ef0: "\t\x04\u4ef0", // 仰
+ 0x4ef1: "\t\x04\u4ef1", // 仱
+ 0x4ef2: "\t\x04\u4ef2", // 仲
+ 0x4ef3: "\t\x04\u4ef3", // 仳
+ 0x4ef4: "\t\x04\u4ef4", // 仴
+ 0x4ef5: "\t\x04\u4ef5", // 仵
+ 0x4ef6: "\t\x04\u4ef6", // 件
+ 0x4ef7: "\t\x04\u4ef7", // 价
+ 0x4ef8: "\t\x04\u4ef8", // 仸
+ 0x4ef9: "\t\x04\u4ef9", // 仹
+ 0x4efa: "\t\x04\u4efa", // 仺
+ 0x4efb: "\t\x04\u4efb", // 任
+ 0x4efc: "\t\x04\u4efc", // 仼
+ 0x4efd: "\t\x04\u4efd", // 份
+ 0x4efe: "\t\x04\u4efe", // 仾
+ 0x4eff: "\t\x04\u4eff", // 仿
+ 0x4f00: "\t\x04\u4f00", // 伀
+ 0x4f01: "\t\x04\u4f01", // 企
+ 0x4f02: "\t\x04\u4f02", // 伂
+ 0x4f03: "\t\x04\u4f03", // 伃
+ 0x4f04: "\t\x04\u4f04", // 伄
+ 0x4f05: "\t\x04\u4f05", // 伅
+ 0x4f06: "\t\x04\u4f06", // 伆
+ 0x4f07: "\t\x04\u4f07", // 伇
+ 0x4f08: "\t\x04\u4f08", // 伈
+ 0x4f09: "\t\x04\u4f09", // 伉
+ 0x4f0a: "\t\x04\u4f0a", // 伊
+ 0x4f0b: "\t\x04\u4f0b", // 伋
+ 0x4f0c: "\t\x04\u4f0c", // 伌
+ 0x4f0d: "\t\x04\u4f0d", // 伍
+ 0x4f0e: "\t\x04\u4f0e", // 伎
+ 0x4f0f: "\t\x04\u4f0f", // 伏
+ 0x4f10: "\t\x04\u4f10", // 伐
+ 0x4f11: "\t\x04\u4f11", // 休
+ 0x4f12: "\t\x04\u4f12", // 伒
+ 0x4f13: "\t\x04\u4f13", // 伓
+ 0x4f14: "\t\x04\u4f14", // 伔
+ 0x4f15: "\t\x04\u4f15", // 伕
+ 0x4f16: "\t\x04\u4f16", // 伖
+ 0x4f17: "\t\x04\u4f17", // 众
+ 0x4f18: "\t\x04\u4f18", // 优
+ 0x4f19: "\t\x04\u4f19", // 伙
+ 0x4f1a: "\t\x04\u4f1a", // 会
+ 0x4f1b: "\t\x04\u4f1b", // 伛
+ 0x4f1c: "\t\x04\u4f1c", // 伜
+ 0x4f1d: "\t\x04\u4f1d", // 伝
+ 0x4f1e: "\t\x04\u4f1e", // 伞
+ 0x4f1f: "\t\x04\u4f1f", // 伟
+ 0x4f20: "\t\x04\u4f20", // 传
+ 0x4f21: "\t\x04\u4f21", // 伡
+ 0x4f22: "\t\x04\u4f22", // 伢
+ 0x4f23: "\t\x04\u4f23", // 伣
+ 0x4f24: "\t\x04\u4f24", // 伤
+ 0x4f25: "\t\x04\u4f25", // 伥
+ 0x4f26: "\t\x04\u4f26", // 伦
+ 0x4f27: "\t\x04\u4f27", // 伧
+ 0x4f28: "\t\x04\u4f28", // 伨
+ 0x4f29: "\t\x04\u4f29", // 伩
+ 0x4f2a: "\t\x04\u4f2a", // 伪
+ 0x4f2b: "\t\x04\u4f2b", // 伫
+ 0x4f2c: "\t\x04\u4f2c", // 伬
+ 0x4f2d: "\t\x05\u4f2d", // 伭
+ 0x4f2e: "\t\x05\u4f2e", // 伮
+ 0x4f2f: "\t\x05\u4f2f", // 伯
+ 0x4f30: "\t\x05\u4f30", // 估
+ 0x4f31: "\t\x05\u4f31", // 伱
+ 0x4f32: "\t\x05\u4f32", // 伲
+ 0x4f33: "\t\x05\u4f33", // 伳
+ 0x4f34: "\t\x05\u4f34", // 伴
+ 0x4f35: "\t\x05\u4f35", // 伵
+ 0x4f36: "\t\x05\u4f36", // 伶
+ 0x4f37: "\t\x05\u4f37", // 伷
+ 0x4f38: "\t\x05\u4f38", // 伸
+ 0x4f39: "\t\x05\u4f39", // 伹
+ 0x4f3a: "\t\x05\u4f3a", // 伺
+ 0x4f3b: "\t\x05\u4f3b", // 伻
+ 0x4f3c: "\t\x05\u4f3c", // 似
+ 0x4f3d: "\t\x05\u4f3d", // 伽
+ 0x4f3e: "\t\x05\u4f3e", // 伾
+ 0x4f3f: "\t\x05\u4f3f", // 伿
+ 0x4f40: "\t\x05\u4f40", // 佀
+ 0x4f41: "\t\x05\u4f41", // 佁
+ 0x4f42: "\t\x05\u4f42", // 佂
+ 0x4f43: "\t\x05\u4f43", // 佃
+ 0x4f44: "\t\x05\u4f44", // 佄
+ 0x4f45: "\t\x05\u4f45", // 佅
+ 0x4f46: "\t\x05\u4f46", // 但
+ 0x4f47: "\t\x05\u4f47", // 佇
+ 0x4f48: "\t\x05\u4f48", // 佈
+ 0x4f49: "\t\x05\u4f49", // 佉
+ 0x4f4a: "\t\x05\u4f4a", // 佊
+ 0x4f4b: "\t\x05\u4f4b", // 佋
+ 0x4f4c: "\t\x05\u4f4c", // 佌
+ 0x4f4d: "\t\x05\u4f4d", // 位
+ 0x4f4e: "\t\x05\u4f4e", // 低
+ 0x4f4f: "\t\x05\u4f4f", // 住
+ 0x4f50: "\t\x05\u4f50", // 佐
+ 0x4f51: "\t\x05\u4f51", // 佑
+ 0x4f52: "\t\x05\u4f52", // 佒
+ 0x4f53: "\t\x05\u4f53", // 体
+ 0x4f54: "\t\x05\u4f54", // 佔
+ 0x4f55: "\t\x05\u4f55", // 何
+ 0x4f56: "\t\x05\u4f56", // 佖
+ 0x4f57: "\t\x05\u4f57", // 佗
+ 0x4f58: "\t\x05\u4f58", // 佘
+ 0x4f59: "\t\x05\u4f59", // 余
+ 0x4f5a: "\t\x05\u4f5a", // 佚
+ 0x4f5b: "\t\x05\u4f5b", // 佛
+ 0x4f5c: "\t\x05\u4f5c", // 作
+ 0x4f5d: "\t\x05\u4f5d", // 佝
+ 0x4f5e: "\t\x05\u4f5e", // 佞
+ 0x4f5f: "\t\x05\u4f5f", // 佟
+ 0x4f60: "\t\x05\u4f60", // 你
+ 0x4f61: "\t\x05\u4f61", // 佡
+ 0x4f62: "\t\x05\u4f62", // 佢
+ 0x4f63: "\t\x05\u4f63", // 佣
+ 0x4f64: "\t\x04\u4f64", // 佤
+ 0x4f65: "\t\x05\u4f65", // 佥
+ 0x4f66: "\t\x05\u4f66", // 佦
+ 0x4f67: "\t\x05\u4f67", // 佧
+ 0x4f68: "\t\x05\u4f68", // 佨
+ 0x4f69: "\t\x06\u4f69", // 佩
+ 0x4f6a: "\t\x06\u4f6a", // 佪
+ 0x4f6b: "\t\x06\u4f6b", // 佫
+ 0x4f6c: "\t\x06\u4f6c", // 佬
+ 0x4f6d: "\t\x06\u4f6d", // 佭
+ 0x4f6e: "\t\x06\u4f6e", // 佮
+ 0x4f6f: "\t\x06\u4f6f", // 佯
+ 0x4f70: "\t\x06\u4f70", // 佰
+ 0x4f71: "\t\x06\u4f71", // 佱
+ 0x4f72: "\t\x06\u4f72", // 佲
+ 0x4f73: "\t\x06\u4f73", // 佳
+ 0x4f74: "\t\x06\u4f74", // 佴
+ 0x4f75: "\t\x06\u4f75", // 併
+ 0x4f76: "\t\x06\u4f76", // 佶
+ 0x4f77: "\t\x06\u4f77", // 佷
+ 0x4f78: "\t\x06\u4f78", // 佸
+ 0x4f79: "\t\x06\u4f79", // 佹
+ 0x4f7a: "\t\x06\u4f7a", // 佺
+ 0x4f7b: "\t\x06\u4f7b", // 佻
+ 0x4f7c: "\t\x06\u4f7c", // 佼
+ 0x4f7d: "\t\x06\u4f7d", // 佽
+ 0x4f7e: "\t\x06\u4f7e", // 佾
+ 0x4f7f: "\t\x06\u4f7f", // 使
+ 0x4f80: "\t\x06\u4f80", // 侀
+ 0x4f81: "\t\x06\u4f81", // 侁
+ 0x4f82: "\t\x06\u4f82", // 侂
+ 0x4f83: "\t\x06\u4f83", // 侃
+ 0x4f84: "\t\x06\u4f84", // 侄
+ 0x4f85: "\t\x06\u4f85", // 侅
+ 0x4f86: "\t\x06\u4f86", // 來
+ 0x4f87: "\t\x06\u4f87", // 侇
+ 0x4f88: "\t\x06\u4f88", // 侈
+ 0x4f89: "\t\x06\u4f89", // 侉
+ 0x4f8a: "\t\x06\u4f8a", // 侊
+ 0x4f8b: "\t\x06\u4f8b", // 例
+ 0x4f8c: "\t\x06\u4f8c", // 侌
+ 0x4f8d: "\t\x06\u4f8d", // 侍
+ 0x4f8e: "\t\x06\u4f8e", // 侎
+ 0x4f8f: "\t\x06\u4f8f", // 侏
+ 0x4f90: "\t\x06\u4f90", // 侐
+ 0x4f91: "\t\x06\u4f91", // 侑
+ 0x4f92: "\t\x06\u4f92", // 侒
+ 0x4f93: "\t\x06\u4f93", // 侓
+ 0x4f94: "\t\x06\u4f94", // 侔
+ 0x4f95: "\t\x06\u4f95", // 侕
+ 0x4f96: "\t\x06\u4f96", // 侖
+ 0x4f97: "\t\x06\u4f97", // 侗
+ 0x4f98: "\t\x06\u4f98", // 侘
+ 0x4f99: "\t\x06\u4f99", // 侙
+ 0x4f9a: "\t\x06\u4f9a", // 侚
+ 0x4f9b: "\t\x06\u4f9b", // 供
+ 0x4f9c: "\t\x06\u4f9c", // 侜
+ 0x4f9d: "\t\x06\u4f9d", // 依
+ 0x4f9e: "\t\x06\u4f9e", // 侞
+ 0x4f9f: "\t\x06\u4f9f", // 侟
+ 0x4fa0: "\t\x06\u4fa0", // 侠
+ 0x4fa1: "\t\x06\u4fa1", // 価
+ 0x4fa2: "\t\x06\u4fa2", // 侢
+ 0x4fa3: "\t\x06\u4fa3", // 侣
+ 0x4fa4: "\t\x06\u4fa4", // 侤
+ 0x4fa5: "\t\x06\u4fa5", // 侥
+ 0x4fa6: "\t\x06\u4fa6", // 侦
+ 0x4fa7: "\t\x06\u4fa7", // 侧
+ 0x4fa8: "\t\x06\u4fa8", // 侨
+ 0x4fa9: "\t\x06\u4fa9", // 侩
+ 0x4faa: "\t\x06\u4faa", // 侪
+ 0x4fab: "\t\x06\u4fab", // 侫
+ 0x4fac: "\t\x06\u4fac", // 侬
+ 0x4fad: "\t\x06\u4fad", // 侭
+ 0x4fae: "\t\a\u4fae", // 侮
+ 0x4faf: "\t\a\u4faf", // 侯
+ 0x4fb0: "\t\a\u4fb0", // 侰
+ 0x4fb1: "\t\a\u4fb1", // 侱
+ 0x4fb2: "\t\a\u4fb2", // 侲
+ 0x4fb3: "\t\a\u4fb3", // 侳
+ 0x4fb4: "\t\a\u4fb4", // 侴
+ 0x4fb5: "\t\a\u4fb5", // 侵
+ 0x4fb6: "\t\a\u4fb6", // 侶
+ 0x4fb7: "\t\a\u4fb7", // 侷
+ 0x4fb8: "\t\a\u4fb8", // 侸
+ 0x4fb9: "\t\a\u4fb9", // 侹
+ 0x4fba: "\t\a\u4fba", // 侺
+ 0x4fbb: "\t\a\u4fbb", // 侻
+ 0x4fbc: "\t\a\u4fbc", // 侼
+ 0x4fbd: "\t\a\u4fbd", // 侽
+ 0x4fbe: "\t\a\u4fbe", // 侾
+ 0x4fbf: "\t\a\u4fbf", // 便
+ 0x4fc0: "\t\a\u4fc0", // 俀
+ 0x4fc1: "\t\a\u4fc1", // 俁
+ 0x4fc2: "\t\a\u4fc2", // 係
+ 0x4fc3: "\t\a\u4fc3", // 促
+ 0x4fc4: "\t\a\u4fc4", // 俄
+ 0x4fc5: "\t\a\u4fc5", // 俅
+ 0x4fc6: "\t\a\u4fc6", // 俆
+ 0x4fc7: "\t\a\u4fc7", // 俇
+ 0x4fc8: "\t\a\u4fc8", // 俈
+ 0x4fc9: "\t\a\u4fc9", // 俉
+ 0x4fca: "\t\a\u4fca", // 俊
+ 0x4fcb: "\t\a\u4fcb", // 俋
+ 0x4fcc: "\t\a\u4fcc", // 俌
+ 0x4fcd: "\t\a\u4fcd", // 俍
+ 0x4fce: "\t\a\u4fce", // 俎
+ 0x4fcf: "\t\a\u4fcf", // 俏
+ 0x4fd0: "\t\a\u4fd0", // 俐
+ 0x4fd1: "\t\a\u4fd1", // 俑
+ 0x4fd2: "\t\a\u4fd2", // 俒
+ 0x4fd3: "\t\a\u4fd3", // 俓
+ 0x4fd4: "\t\a\u4fd4", // 俔
+ 0x4fd5: "\t\a\u4fd5", // 俕
+ 0x4fd6: "\t\a\u4fd6", // 俖
+ 0x4fd7: "\t\a\u4fd7", // 俗
+ 0x4fd8: "\t\a\u4fd8", // 俘
+ 0x4fd9: "\t\a\u4fd9", // 俙
+ 0x4fda: "\t\a\u4fda", // 俚
+ 0x4fdb: "\t\a\u4fdb", // 俛
+ 0x4fdc: "\t\a\u4fdc", // 俜
+ 0x4fdd: "\t\a\u4fdd", // 保
+ 0x4fde: "\t\a\u4fde", // 俞
+ 0x4fdf: "\t\a\u4fdf", // 俟
+ 0x4fe0: "\t\a\u4fe0", // 俠
+ 0x4fe1: "\t\a\u4fe1", // 信
+ 0x4fe2: "\t\a\u4fe2", // 俢
+ 0x4fe3: "\t\a\u4fe3", // 俣
+ 0x4fe4: "\t\a\u4fe4", // 俤
+ 0x4fe5: "\t\a\u4fe5", // 俥
+ 0x4fe6: "\t\a\u4fe6", // 俦
+ 0x4fe7: "\t\a\u4fe7", // 俧
+ 0x4fe8: "\t\a\u4fe8", // 俨
+ 0x4fe9: "\t\a\u4fe9", // 俩
+ 0x4fea: "\t\a\u4fea", // 俪
+ 0x4feb: "\t\a\u4feb", // 俫
+ 0x4fec: "\t\a\u4fec", // 俬
+ 0x4fed: "\t\a\u4fed", // 俭
+ 0x4fee: "\t\b\u4fee", // 修
+ 0x4fef: "\t\b\u4fef", // 俯
+ 0x4ff0: "\t\b\u4ff0", // 俰
+ 0x4ff1: "\t\b\u4ff1", // 俱
+ 0x4ff2: "\t\b\u4ff2", // 俲
+ 0x4ff3: "\t\b\u4ff3", // 俳
+ 0x4ff4: "\t\b\u4ff4", // 俴
+ 0x4ff5: "\t\b\u4ff5", // 俵
+ 0x4ff6: "\t\b\u4ff6", // 俶
+ 0x4ff7: "\t\b\u4ff7", // 俷
+ 0x4ff8: "\t\b\u4ff8", // 俸
+ 0x4ff9: "\t\b\u4ff9", // 俹
+ 0x4ffa: "\t\b\u4ffa", // 俺
+ 0x4ffb: "\t\b\u4ffb", // 俻
+ 0x4ffc: "\t\b\u4ffc", // 俼
+ 0x4ffd: "\t\b\u4ffd", // 俽
+ 0x4ffe: "\t\b\u4ffe", // 俾
+ 0x4fff: "\t\b\u4fff", // 俿
+ 0x5000: "\t\b\u5000", // 倀
+ 0x5001: "\t\b\u5001", // 倁
+ 0x5002: "\t\b\u5002", // 倂
+ 0x5003: "\t\b\u5003", // 倃
+ 0x5004: "\t\b\u5004", // 倄
+ 0x5005: "\t\b\u5005", // 倅
+ 0x5006: "\t\b\u5006", // 倆
+ 0x5007: "\t\b\u5007", // 倇
+ 0x5008: "\t\b\u5008", // 倈
+ 0x5009: "\t\b\u5009", // 倉
+ 0x500a: "\t\b\u500a", // 倊
+ 0x500b: "\t\b\u500b", // 個
+ 0x500c: "\t\b\u500c", // 倌
+ 0x500d: "\t\b\u500d", // 倍
+ 0x500e: "\t\b\u500e", // 倎
+ 0x500f: "\t\b\u500f", // 倏
+ 0x5010: "\t\b\u5010", // 倐
+ 0x5011: "\t\b\u5011", // 們
+ 0x5012: "\t\b\u5012", // 倒
+ 0x5013: "\t\b\u5013", // 倓
+ 0x5014: "\t\b\u5014", // 倔
+ 0x5015: "\t\b\u5015", // 倕
+ 0x5016: "\t\b\u5016", // 倖
+ 0x5017: "\t\b\u5017", // 倗
+ 0x5018: "\t\b\u5018", // 倘
+ 0x5019: "\t\b\u5019", // 候
+ 0x501a: "\t\b\u501a", // 倚
+ 0x501b: "\t\b\u501b", // 倛
+ 0x501c: "\t\b\u501c", // 倜
+ 0x501d: "\t\b\u501d", // 倝
+ 0x501e: "\t\b\u501e", // 倞
+ 0x501f: "\t\b\u501f", // 借
+ 0x5020: "\t\b\u5020", // 倠
+ 0x5021: "\t\b\u5021", // 倡
+ 0x5022: "\t\b\u5022", // 倢
+ 0x5023: "\t\b\u5023", // 倣
+ 0x5024: "\t\b\u5024", // 値
+ 0x5025: "\t\b\u5025", // 倥
+ 0x5026: "\t\b\u5026", // 倦
+ 0x5027: "\t\b\u5027", // 倧
+ 0x5028: "\t\b\u5028", // 倨
+ 0x5029: "\t\b\u5029", // 倩
+ 0x502a: "\t\b\u502a", // 倪
+ 0x502b: "\t\b\u502b", // 倫
+ 0x502c: "\t\b\u502c", // 倬
+ 0x502d: "\t\b\u502d", // 倭
+ 0x502e: "\t\b\u502e", // 倮
+ 0x502f: "\t\b\u502f", // 倯
+ 0x5030: "\t\b\u5030", // 倰
+ 0x5031: "\t\b\u5031", // 倱
+ 0x5032: "\t\b\u5032", // 倲
+ 0x5033: "\t\b\u5033", // 倳
+ 0x5034: "\t\b\u5034", // 倴
+ 0x5035: "\t\b\u5035", // 倵
+ 0x5036: "\t\b\u5036", // 倶
+ 0x5037: "\t\b\u5037", // 倷
+ 0x5038: "\t\b\u5038", // 倸
+ 0x5039: "\t\b\u5039", // 倹
+ 0x503a: "\t\b\u503a", // 债
+ 0x503b: "\t\b\u503b", // 倻
+ 0x503c: "\t\b\u503c", // 值
+ 0x503d: "\t\b\u503d", // 倽
+ 0x503e: "\t\b\u503e", // 倾
+ 0x503f: "\t\b\u503f", // 倿
+ 0x5040: "\t\t\u5040", // 偀
+ 0x5041: "\t\t\u5041", // 偁
+ 0x5042: "\t\t\u5042", // 偂
+ 0x5043: "\t\t\u5043", // 偃
+ 0x5044: "\t\t\u5044", // 偄
+ 0x5045: "\t\t\u5045", // 偅
+ 0x5046: "\t\t\u5046", // 偆
+ 0x5047: "\t\t\u5047", // 假
+ 0x5048: "\t\t\u5048", // 偈
+ 0x5049: "\t\t\u5049", // 偉
+ 0x504a: "\t\t\u504a", // 偊
+ 0x504b: "\t\t\u504b", // 偋
+ 0x504c: "\t\t\u504c", // 偌
+ 0x504d: "\t\t\u504d", // 偍
+ 0x504e: "\t\t\u504e", // 偎
+ 0x504f: "\t\t\u504f", // 偏
+ 0x5050: "\t\t\u5050", // 偐
+ 0x5051: "\t\t\u5051", // 偑
+ 0x5052: "\t\t\u5052", // 偒
+ 0x5053: "\t\t\u5053", // 偓
+ 0x5054: "\t\t\u5054", // 偔
+ 0x5055: "\t\t\u5055", // 偕
+ 0x5056: "\t\t\u5056", // 偖
+ 0x5057: "\t\t\u5057", // 偗
+ 0x5058: "\t\t\u5058", // 偘
+ 0x5059: "\t\t\u5059", // 偙
+ 0x505a: "\t\t\u505a", // 做
+ 0x505b: "\t\t\u505b", // 偛
+ 0x505c: "\t\t\u505c", // 停
+ 0x505d: "\t\t\u505d", // 偝
+ 0x505e: "\t\t\u505e", // 偞
+ 0x505f: "\t\t\u505f", // 偟
+ 0x5060: "\t\t\u5060", // 偠
+ 0x5061: "\t\t\u5061", // 偡
+ 0x5062: "\t\t\u5062", // 偢
+ 0x5063: "\t\t\u5063", // 偣
+ 0x5064: "\t\t\u5064", // 偤
+ 0x5065: "\t\t\u5065", // 健
+ 0x5066: "\t\t\u5066", // 偦
+ 0x5067: "\t\t\u5067", // 偧
+ 0x5068: "\t\t\u5068", // 偨
+ 0x5069: "\t\t\u5069", // 偩
+ 0x506a: "\t\t\u506a", // 偪
+ 0x506b: "\t\t\u506b", // 偫
+ 0x506c: "\t\t\u506c", // 偬
+ 0x506d: "\t\t\u506d", // 偭
+ 0x506e: "\t\t\u506e", // 偮
+ 0x506f: "\t\t\u506f", // 偯
+ 0x5070: "\t\t\u5070", // 偰
+ 0x5071: "\t\t\u5071", // 偱
+ 0x5072: "\t\t\u5072", // 偲
+ 0x5073: "\t\t\u5073", // 偳
+ 0x5074: "\t\t\u5074", // 側
+ 0x5075: "\t\t\u5075", // 偵
+ 0x5076: "\t\t\u5076", // 偶
+ 0x5077: "\t\t\u5077", // 偷
+ 0x5078: "\t\t\u5078", // 偸
+ 0x5079: "\t\t\u5079", // 偹
+ 0x507a: "\t\t\u507a", // 偺
+ 0x507b: "\t\t\u507b", // 偻
+ 0x507c: "\t\t\u507c", // 偼
+ 0x507d: "\t\t\u507d", // 偽
+ 0x507e: "\t\t\u507e", // 偾
+ 0x507f: "\t\t\u507f", // 偿
+ 0x5080: "\t\n\u5080", // 傀
+ 0x5081: "\t\n\u5081", // 傁
+ 0x5082: "\t\n\u5082", // 傂
+ 0x5083: "\t\n\u5083", // 傃
+ 0x5084: "\t\n\u5084", // 傄
+ 0x5085: "\t\n\u5085", // 傅
+ 0x5086: "\t\n\u5086", // 傆
+ 0x5087: "\t\n\u5087", // 傇
+ 0x5088: "\t\n\u5088", // 傈
+ 0x5089: "\t\n\u5089", // 傉
+ 0x508a: "\t\n\u508a", // 傊
+ 0x508b: "\t\n\u508b", // 傋
+ 0x508c: "\t\n\u508c", // 傌
+ 0x508d: "\t\n\u508d", // 傍
+ 0x508e: "\t\n\u508e", // 傎
+ 0x508f: "\t\n\u508f", // 傏
+ 0x5090: "\t\n\u5090", // 傐
+ 0x5091: "\t\n\u5091", // 傑
+ 0x5092: "\t\n\u5092", // 傒
+ 0x5093: "\t\n\u5093", // 傓
+ 0x5094: "\t\n\u5094", // 傔
+ 0x5095: "\t\n\u5095", // 傕
+ 0x5096: "\t\n\u5096", // 傖
+ 0x5097: "\t\n\u5097", // 傗
+ 0x5098: "\t\n\u5098", // 傘
+ 0x5099: "\t\n\u5099", // 備
+ 0x509a: "\t\n\u509a", // 傚
+ 0x509b: "\t\n\u509b", // 傛
+ 0x509c: "\t\n\u509c", // 傜
+ 0x509d: "\t\n\u509d", // 傝
+ 0x509e: "\t\n\u509e", // 傞
+ 0x509f: "\t\n\u509f", // 傟
+ 0x50a0: "\t\n\u50a0", // 傠
+ 0x50a1: "\t\n\u50a1", // 傡
+ 0x50a2: "\t\n\u50a2", // 傢
+ 0x50a3: "\t\n\u50a3", // 傣
+ 0x50a4: "\t\n\u50a4", // 傤
+ 0x50a5: "\t\n\u50a5", // 傥
+ 0x50a6: "\t\n\u50a6", // 傦
+ 0x50a7: "\t\n\u50a7", // 傧
+ 0x50a8: "\t\n\u50a8", // 储
+ 0x50a9: "\t\n\u50a9", // 傩
+ 0x50aa: "\t\v\u50aa", // 傪
+ 0x50ab: "\t\v\u50ab", // 傫
+ 0x50ac: "\t\v\u50ac", // 催
+ 0x50ad: "\t\v\u50ad", // 傭
+ 0x50ae: "\t\v\u50ae", // 傮
+ 0x50af: "\t\v\u50af", // 傯
+ 0x50b0: "\t\v\u50b0", // 傰
+ 0x50b1: "\t\v\u50b1", // 傱
+ 0x50b2: "\t\v\u50b2", // 傲
+ 0x50b3: "\t\v\u50b3", // 傳
+ 0x50b4: "\t\v\u50b4", // 傴
+ 0x50b5: "\t\v\u50b5", // 債
+ 0x50b6: "\t\v\u50b6", // 傶
+ 0x50b7: "\t\v\u50b7", // 傷
+ 0x50b8: "\t\v\u50b8", // 傸
+ 0x50b9: "\t\v\u50b9", // 傹
+ 0x50ba: "\t\v\u50ba", // 傺
+ 0x50bb: "\t\v\u50bb", // 傻
+ 0x50bc: "\t\v\u50bc", // 傼
+ 0x50bd: "\t\v\u50bd", // 傽
+ 0x50be: "\t\v\u50be", // 傾
+ 0x50bf: "\t\v\u50bf", // 傿
+ 0x50c0: "\t\v\u50c0", // 僀
+ 0x50c1: "\t\v\u50c1", // 僁
+ 0x50c2: "\t\v\u50c2", // 僂
+ 0x50c3: "\t\v\u50c3", // 僃
+ 0x50c4: "\t\v\u50c4", // 僄
+ 0x50c5: "\t\v\u50c5", // 僅
+ 0x50c6: "\t\v\u50c6", // 僆
+ 0x50c7: "\t\v\u50c7", // 僇
+ 0x50c8: "\t\v\u50c8", // 僈
+ 0x50c9: "\t\v\u50c9", // 僉
+ 0x50ca: "\t\v\u50ca", // 僊
+ 0x50cb: "\t\v\u50cb", // 僋
+ 0x50cc: "\t\v\u50cc", // 僌
+ 0x50cd: "\t\v\u50cd", // 働
+ 0x50ce: "\t\f\u50ce", // 僎
+ 0x50cf: "\t\f\u50cf", // 像
+ 0x50d0: "\t\f\u50d0", // 僐
+ 0x50d1: "\t\f\u50d1", // 僑
+ 0x50d2: "\t\f\u50d2", // 僒
+ 0x50d3: "\t\f\u50d3", // 僓
+ 0x50d4: "\t\f\u50d4", // 僔
+ 0x50d5: "\t\f\u50d5", // 僕
+ 0x50d6: "\t\f\u50d6", // 僖
+ 0x50d7: "\t\f\u50d7", // 僗
+ 0x50d8: "\t\f\u50d8", // 僘
+ 0x50d9: "\t\f\u50d9", // 僙
+ 0x50da: "\t\f\u50da", // 僚
+ 0x50db: "\t\f\u50db", // 僛
+ 0x50dc: "\t\f\u50dc", // 僜
+ 0x50dd: "\t\f\u50dd", // 僝
+ 0x50de: "\t\f\u50de", // 僞
+ 0x50df: "\t\f\u50df", // 僟
+ 0x50e0: "\t\f\u50e0", // 僠
+ 0x50e1: "\t\f\u50e1", // 僡
+ 0x50e2: "\t\f\u50e2", // 僢
+ 0x50e3: "\t\f\u50e3", // 僣
+ 0x50e4: "\t\f\u50e4", // 僤
+ 0x50e5: "\t\f\u50e5", // 僥
+ 0x50e6: "\t\f\u50e6", // 僦
+ 0x50e7: "\t\f\u50e7", // 僧
+ 0x50e8: "\t\f\u50e8", // 僨
+ 0x50e9: "\t\f\u50e9", // 僩
+ 0x50ea: "\t\f\u50ea", // 僪
+ 0x50eb: "\t\f\u50eb", // 僫
+ 0x50ec: "\t\f\u50ec", // 僬
+ 0x50ed: "\t\f\u50ed", // 僭
+ 0x50ee: "\t\f\u50ee", // 僮
+ 0x50ef: "\t\f\u50ef", // 僯
+ 0x50f0: "\t\f\u50f0", // 僰
+ 0x50f1: "\t\f\u50f1", // 僱
+ 0x50f2: "\t\r\u50f2", // 僲
+ 0x50f3: "\t\f\u50f3", // 僳
+ 0x50f4: "\t\f\u50f4", // 僴
+ 0x50f5: "\t\r\u50f5", // 僵
+ 0x50f6: "\t\r\u50f6", // 僶
+ 0x50f7: "\t\f\u50f7", // 僷
+ 0x50f8: "\t\r\u50f8", // 僸
+ 0x50f9: "\t\r\u50f9", // 價
+ 0x50fa: "\t\r\u50fa", // 僺
+ 0x50fb: "\t\r\u50fb", // 僻
+ 0x50fc: "\t\r\u50fc", // 僼
+ 0x50fd: "\t\r\u50fd", // 僽
+ 0x50fe: "\t\r\u50fe", // 僾
+ 0x50ff: "\t\r\u50ff", // 僿
+ 0x5100: "\t\r\u5100", // 儀
+ 0x5101: "\t\r\u5101", // 儁
+ 0x5102: "\t\r\u5102", // 儂
+ 0x5103: "\t\r\u5103", // 儃
+ 0x5104: "\t\r\u5104", // 億
+ 0x5105: "\t\r\u5105", // 儅
+ 0x5106: "\t\r\u5106", // 儆
+ 0x5107: "\t\r\u5107", // 儇
+ 0x5108: "\t\r\u5108", // 儈
+ 0x5109: "\t\r\u5109", // 儉
+ 0x510a: "\t\r\u510a", // 儊
+ 0x510b: "\t\r\u510b", // 儋
+ 0x510c: "\t\r\u510c", // 儌
+ 0x510d: "\t\r\u510d", // 儍
+ 0x510e: "\t\r\u510e", // 儎
+ 0x510f: "\t\r\u510f", // 儏
+ 0x5110: "\t\x0e\u5110", // 儐
+ 0x5111: "\t\x0e\u5111", // 儑
+ 0x5112: "\t\x0e\u5112", // 儒
+ 0x5113: "\t\x0e\u5113", // 儓
+ 0x5114: "\t\x0e\u5114", // 儔
+ 0x5115: "\t\x0e\u5115", // 儕
+ 0x5116: "\t\x0e\u5116", // 儖
+ 0x5117: "\t\x0e\u5117", // 儗
+ 0x5118: "\t\x0e\u5118", // 儘
+ 0x5119: "\t\x0e\u5119", // 儙
+ 0x511a: "\t\x0e\u511a", // 儚
+ 0x511b: "\t\x0e\u511b", // 儛
+ 0x511c: "\t\x0e\u511c", // 儜
+ 0x511d: "\t\x0e\u511d", // 儝
+ 0x511e: "\t\x0e\u511e", // 儞
+ 0x511f: "\t\x0f\u511f", // 償
+ 0x5120: "\t\x0f\u5120", // 儠
+ 0x5121: "\t\x0f\u5121", // 儡
+ 0x5122: "\t\x0f\u5122", // 儢
+ 0x5123: "\t\x0f\u5123", // 儣
+ 0x5124: "\t\x0f\u5124", // 儤
+ 0x5125: "\t\x0f\u5125", // 儥
+ 0x5126: "\t\x0f\u5126", // 儦
+ 0x5127: "\t\x0f\u5127", // 儧
+ 0x5128: "\t\x0f\u5128", // 儨
+ 0x5129: "\t\x0f\u5129", // 儩
+ 0x512a: "\t\x0f\u512a", // 優
+ 0x512b: "\t\x0e\u512b", // 儫
+ 0x512c: "\t\x0f\u512c", // 儬
+ 0x512d: "\t\x10\u512d", // 儭
+ 0x512e: "\t\x10\u512e", // 儮
+ 0x512f: "\t\x10\u512f", // 儯
+ 0x5130: "\t\x10\u5130", // 儰
+ 0x5131: "\t\x10\u5131", // 儱
+ 0x5132: "\t\x10\u5132", // 儲
+ 0x5133: "\t\x11\u5133", // 儳
+ 0x5134: "\t\x11\u5134", // 儴
+ 0x5135: "\t\x11\u5135", // 儵
+ 0x5136: "\t\x12\u5136", // 儶
+ 0x5137: "\t\x13\u5137", // 儷
+ 0x5138: "\t\x13\u5138", // 儸
+ 0x5139: "\t\x13\u5139", // 儹
+ 0x513a: "\t\x13\u513a", // 儺
+ 0x513b: "\t\x14\u513b", // 儻
+ 0x513c: "\t\x14\u513c", // 儼
+ 0x513d: "\t\x15\u513d", // 儽
+ 0x513e: "\t\x16\u513e", // 儾
+ 0x513f: "\n\x00\u513f", // 儿
+ 0x5140: "\n\x01\u5140", // 兀
+ 0x5141: "\n\x02\u5141", // 允
+ 0x5142: "\n\x02\u5142", // 兂
+ 0x5143: "\n\x02\u5143", // 元
+ 0x5144: "\n\x03\u5144", // 兄
+ 0x5145: "\n\x04\u5145", // 充
+ 0x5146: "\n\x04\u5146", // 兆
+ 0x5147: "\n\x04\u5147", // 兇
+ 0x5148: "\n\x04\u5148", // 先
+ 0x5149: "\n\x04\u5149", // 光
+ 0x514a: "\n\x04\u514a", // 兊
+ 0x514b: "\n\x05\u514b", // 克
+ 0x514c: "\n\x05\u514c", // 兌
+ 0x514d: "\n\x05\u514d", // 免
+ 0x514e: "\n\x05\u514e", // 兎
+ 0x514f: "\n\x05\u514f", // 兏
+ 0x5150: "\n\x05\u5150", // 児
+ 0x5151: "\n\x05\u5151", // 兑
+ 0x5152: "\n\x06\u5152", // 兒
+ 0x5153: "\n\x06\u5153", // 兓
+ 0x5154: "\n\x06\u5154", // 兔
+ 0x5155: "\n\x06\u5155", // 兕
+ 0x5156: "\n\x06\u5156", // 兖
+ 0x5157: "\n\a\u5157", // 兗
+ 0x5158: "\n\a\u5158", // 兘
+ 0x5159: "\n\a\u5159", // 兙
+ 0x515a: "\n\b\u515a", // 党
+ 0x515b: "\n\b\u515b", // 兛
+ 0x515c: "\n\t\u515c", // 兜
+ 0x515d: "\n\t\u515d", // 兝
+ 0x515e: "\n\t\u515e", // 兞
+ 0x515f: "\n\n\u515f", // 兟
+ 0x5160: "\n\n\u5160", // 兠
+ 0x5161: "\n\v\u5161", // 兡
+ 0x5162: "\n\f\u5162", // 兢
+ 0x5163: "\n\x0e\u5163", // 兣
+ 0x5164: "\n\x13\u5164", // 兤
+ 0x5165: "\v\x00\u5165", // 入
+ 0x5166: "\v\x01\u5166", // 兦
+ 0x5167: "\v\x02\u5167", // 內
+ 0x5168: "\v\x04\u5168", // 全
+ 0x5169: "\v\x06\u5169", // 兩
+ 0x516a: "\v\a\u516a", // 兪
+ 0x516b: "\f\x00\u516b", // 八
+ 0x516c: "\f\x02\u516c", // 公
+ 0x516d: "\f\x02\u516d", // 六
+ 0x516e: "\f\x02\u516e", // 兮
+ 0x516f: "\f\x02\u516f", // 兯
+ 0x5170: "\f\x03\u5170", // 兰
+ 0x5171: "\f\x04\u5171", // 共
+ 0x5172: "\f\x04\u5172", // 兲
+ 0x5173: "\f\x04\u5173", // 关
+ 0x5174: "\f\x04\u5174", // 兴
+ 0x5175: "\f\x05\u5175", // 兵
+ 0x5176: "\f\x06\u5176", // 其
+ 0x5177: "\f\x06\u5177", // 具
+ 0x5178: "\f\x06\u5178", // 典
+ 0x5179: "\f\a\u5179", // 兹
+ 0x517a: "\f\b\u517a", // 兺
+ 0x517b: "\f\a\u517b", // 养
+ 0x517c: "\f\b\u517c", // 兼
+ 0x517d: "\f\t\u517d", // 兽
+ 0x517e: "\f\v\u517e", // 兾
+ 0x517f: "\f\v\u517f", // 兿
+ 0x5180: "\f\x0e\u5180", // 冀
+ 0x5181: "\f\x10\u5181", // 冁
+ 0x5182: "\r\x00\u5182", // 冂
+ 0x5183: "\r\x02\u5183", // 冃
+ 0x5184: "\r\x02\u5184", // 冄
+ 0x5185: "\r\x02\u5185", // 内
+ 0x5186: "\r\x02\u5186", // 円
+ 0x5187: "\r\x02\u5187", // 冇
+ 0x5188: "\r\x02\u5188", // 冈
+ 0x5189: "\r\x03\u5189", // 冉
+ 0x518a: "\r\x03\u518a", // 冊
+ 0x518b: "\r\x03\u518b", // 冋
+ 0x518c: "\r\x03\u518c", // 册
+ 0x518d: "\r\x04\u518d", // 再
+ 0x518e: "\r\x04\u518e", // 冎
+ 0x518f: "\r\x05\u518f", // 冏
+ 0x5190: "\r\x06\u5190", // 冐
+ 0x5191: "\r\a\u5191", // 冑
+ 0x5192: "\r\a\u5192", // 冒
+ 0x5193: "\r\b\u5193", // 冓
+ 0x5194: "\r\b\u5194", // 冔
+ 0x5195: "\r\t\u5195", // 冕
+ 0x5196: "\x0e\x00\u5196", // 冖
+ 0x5197: "\x0e\x02\u5197", // 冗
+ 0x5198: "\x0e\x02\u5198", // 冘
+ 0x5199: "\x0e\x03\u5199", // 写
+ 0x519a: "\x0e\x03\u519a", // 冚
+ 0x519b: "\x0e\x04\u519b", // 军
+ 0x519c: "\x0e\x04\u519c", // 农
+ 0x519d: "\x0e\x05\u519d", // 冝
+ 0x519e: "\x0e\x06\u519e", // 冞
+ 0x519f: "\x0e\a\u519f", // 冟
+ 0x51a0: "\x0e\a\u51a0", // 冠
+ 0x51a1: "\x0e\b\u51a1", // 冡
+ 0x51a2: "\x0e\b\u51a2", // 冢
+ 0x51a3: "\x0e\b\u51a3", // 冣
+ 0x51a4: "\x0e\b\u51a4", // 冤
+ 0x51a5: "\x0e\b\u51a5", // 冥
+ 0x51a6: "\x0e\b\u51a6", // 冦
+ 0x51a7: "\x0e\b\u51a7", // 冧
+ 0x51a8: "\x0e\t\u51a8", // 冨
+ 0x51a9: "\x0e\f\u51a9", // 冩
+ 0x51aa: "\x0e\x0e\u51aa", // 冪
+ 0x51ab: "\x0f\x00\u51ab", // 冫
+ 0x51ac: "\x0f\x03\u51ac", // 冬
+ 0x51ad: "\x0f\x03\u51ad", // 冭
+ 0x51ae: "\x0f\x03\u51ae", // 冮
+ 0x51af: "\x0f\x03\u51af", // 冯
+ 0x51b0: "\x0f\x04\u51b0", // 冰
+ 0x51b1: "\x0f\x04\u51b1", // 冱
+ 0x51b2: "\x0f\x04\u51b2", // 冲
+ 0x51b3: "\x0f\x04\u51b3", // 决
+ 0x51b4: "\x0f\x04\u51b4", // 冴
+ 0x51b5: "\x0f\x05\u51b5", // 况
+ 0x51b6: "\x0f\x05\u51b6", // 冶
+ 0x51b7: "\x0f\x05\u51b7", // 冷
+ 0x51b8: "\x0f\x05\u51b8", // 冸
+ 0x51b9: "\x0f\x05\u51b9", // 冹
+ 0x51ba: "\x0f\x05\u51ba", // 冺
+ 0x51bb: "\x0f\x05\u51bb", // 冻
+ 0x51bc: "\x0f\x06\u51bc", // 冼
+ 0x51bd: "\x0f\x06\u51bd", // 冽
+ 0x51be: "\x0f\x06\u51be", // 冾
+ 0x51bf: "\x0f\x06\u51bf", // 冿
+ 0x51c0: "\x0f\x06\u51c0", // 净
+ 0x51c1: "\x0f\a\u51c1", // 凁
+ 0x51c2: "\x0f\a\u51c2", // 凂
+ 0x51c3: "\x0f\a\u51c3", // 凃
+ 0x51c4: "\x0f\b\u51c4", // 凄
+ 0x51c5: "\x0f\b\u51c5", // 凅
+ 0x51c6: "\x0f\b\u51c6", // 准
+ 0x51c7: "\x0f\b\u51c7", // 凇
+ 0x51c8: "\x0f\b\u51c8", // 凈
+ 0x51c9: "\x0f\b\u51c9", // 凉
+ 0x51ca: "\x0f\b\u51ca", // 凊
+ 0x51cb: "\x0f\b\u51cb", // 凋
+ 0x51cc: "\x0f\b\u51cc", // 凌
+ 0x51cd: "\x0f\b\u51cd", // 凍
+ 0x51ce: "\x0f\b\u51ce", // 凎
+ 0x51cf: "\x0f\t\u51cf", // 减
+ 0x51d0: "\x0f\t\u51d0", // 凐
+ 0x51d1: "\x0f\t\u51d1", // 凑
+ 0x51d2: "\x0f\n\u51d2", // 凒
+ 0x51d3: "\x0f\n\u51d3", // 凓
+ 0x51d4: "\x0f\n\u51d4", // 凔
+ 0x51d5: "\x0f\n\u51d5", // 凕
+ 0x51d6: "\x0f\n\u51d6", // 凖
+ 0x51d7: "\x0f\v\u51d7", // 凗
+ 0x51d8: "\x0f\f\u51d8", // 凘
+ 0x51d9: "\x0f\r\u51d9", // 凙
+ 0x51da: "\x0f\r\u51da", // 凚
+ 0x51db: "\x0f\r\u51db", // 凛
+ 0x51dc: "\x0f\r\u51dc", // 凜
+ 0x51dd: "\x0f\x0e\u51dd", // 凝
+ 0x51de: "\x0f\x0e\u51de", // 凞
+ 0x51df: "\x0f\x0f\u51df", // 凟
+ 0x51e0: "\x10\x00\u51e0", // 几
+ 0x51e1: "\x10\x01\u51e1", // 凡
+ 0x51e2: "\x10\x01\u51e2", // 凢
+ 0x51e3: "\x10\x01\u51e3", // 凣
+ 0x51e4: "\x10\x02\u51e4", // 凤
+ 0x51e5: "\x10\x03\u51e5", // 凥
+ 0x51e6: "\x10\x03\u51e6", // 処
+ 0x51e7: "\x10\x03\u51e7", // 凧
+ 0x51e8: "\x10\x04\u51e8", // 凨
+ 0x51e9: "\x10\x04\u51e9", // 凩
+ 0x51ea: "\x10\x04\u51ea", // 凪
+ 0x51eb: "\x10\x04\u51eb", // 凫
+ 0x51ec: "\x10\x05\u51ec", // 凬
+ 0x51ed: "\x10\x06\u51ed", // 凭
+ 0x51ee: "\x10\x06\u51ee", // 凮
+ 0x51ef: "\x10\x06\u51ef", // 凯
+ 0x51f0: "\x10\t\u51f0", // 凰
+ 0x51f1: "\x10\n\u51f1", // 凱
+ 0x51f2: "\x10\n\u51f2", // 凲
+ 0x51f3: "\x10\f\u51f3", // 凳
+ 0x51f4: "\x10\f\u51f4", // 凴
+ 0x51f5: "\x11\x00\u51f5", // 凵
+ 0x51f6: "\x11\x02\u51f6", // 凶
+ 0x51f7: "\x11\x03\u51f7", // 凷
+ 0x51f8: "\x11\x03\u51f8", // 凸
+ 0x51f9: "\x11\x03\u51f9", // 凹
+ 0x51fa: "\x11\x03\u51fa", // 出
+ 0x51fb: "\x11\x03\u51fb", // 击
+ 0x51fc: "\x11\x04\u51fc", // 凼
+ 0x51fd: "\x11\x06\u51fd", // 函
+ 0x51fe: "\x11\a\u51fe", // 凾
+ 0x51ff: "\x11\n\u51ff", // 凿
+ 0x5200: "\x12\x00\u5200", // 刀
+ 0x5201: "\x12\x00\u5201", // 刁
+ 0x5202: "\x12\x00\u5202", // 刂
+ 0x5203: "\x12\x01\u5203", // 刃
+ 0x5204: "\x12\x01\u5204", // 刄
+ 0x5205: "\x12\x02\u5205", // 刅
+ 0x5206: "\x12\x02\u5206", // 分
+ 0x5207: "\x12\x02\u5207", // 切
+ 0x5208: "\x12\x02\u5208", // 刈
+ 0x5209: "\x12\x03\u5209", // 刉
+ 0x520a: "\x12\x03\u520a", // 刊
+ 0x520b: "\x12\x03\u520b", // 刋
+ 0x520c: "\x12\x03\u520c", // 刌
+ 0x520d: "\x12\x03\u520d", // 刍
+ 0x520e: "\x12\x04\u520e", // 刎
+ 0x520f: "\x12\x04\u520f", // 刏
+ 0x5210: "\x12\x04\u5210", // 刐
+ 0x5211: "\x12\x04\u5211", // 刑
+ 0x5212: "\x12\x04\u5212", // 划
+ 0x5213: "\x12\x04\u5213", // 刓
+ 0x5214: "\x12\x04\u5214", // 刔
+ 0x5215: "\x12\x04\u5215", // 刕
+ 0x5216: "\x12\x04\u5216", // 刖
+ 0x5217: "\x12\x04\u5217", // 列
+ 0x5218: "\x12\x04\u5218", // 刘
+ 0x5219: "\x12\x04\u5219", // 则
+ 0x521a: "\x12\x04\u521a", // 刚
+ 0x521b: "\x12\x04\u521b", // 创
+ 0x521c: "\x12\x05\u521c", // 刜
+ 0x521d: "\x12\x05\u521d", // 初
+ 0x521e: "\x12\x05\u521e", // 刞
+ 0x521f: "\x12\x05\u521f", // 刟
+ 0x5220: "\x12\x05\u5220", // 删
+ 0x5221: "\x12\x05\u5221", // 刡
+ 0x5222: "\x12\x05\u5222", // 刢
+ 0x5223: "\x12\x05\u5223", // 刣
+ 0x5224: "\x12\x05\u5224", // 判
+ 0x5225: "\x12\x05\u5225", // 別
+ 0x5226: "\x12\x05\u5226", // 刦
+ 0x5227: "\x12\x05\u5227", // 刧
+ 0x5228: "\x12\x05\u5228", // 刨
+ 0x5229: "\x12\x05\u5229", // 利
+ 0x522a: "\x12\x05\u522a", // 刪
+ 0x522b: "\x12\x05\u522b", // 别
+ 0x522c: "\x12\x05\u522c", // 刬
+ 0x522d: "\x12\x05\u522d", // 刭
+ 0x522e: "\x12\x06\u522e", // 刮
+ 0x522f: "\x12\x06\u522f", // 刯
+ 0x5230: "\x12\x06\u5230", // 到
+ 0x5231: "\x12\x06\u5231", // 刱
+ 0x5232: "\x12\x06\u5232", // 刲
+ 0x5233: "\x12\x06\u5233", // 刳
+ 0x5234: "\x12\x06\u5234", // 刴
+ 0x5235: "\x12\x06\u5235", // 刵
+ 0x5236: "\x12\x06\u5236", // 制
+ 0x5237: "\x12\x06\u5237", // 刷
+ 0x5238: "\x12\x06\u5238", // 券
+ 0x5239: "\x12\x06\u5239", // 刹
+ 0x523a: "\x12\x06\u523a", // 刺
+ 0x523b: "\x12\x06\u523b", // 刻
+ 0x523c: "\x12\x06\u523c", // 刼
+ 0x523d: "\x12\x06\u523d", // 刽
+ 0x523e: "\x12\x06\u523e", // 刾
+ 0x523f: "\x12\x06\u523f", // 刿
+ 0x5240: "\x12\x06\u5240", // 剀
+ 0x5241: "\x12\x06\u5241", // 剁
+ 0x5242: "\x12\x06\u5242", // 剂
+ 0x5243: "\x12\a\u5243", // 剃
+ 0x5244: "\x12\a\u5244", // 剄
+ 0x5245: "\x12\a\u5245", // 剅
+ 0x5246: "\x12\a\u5246", // 剆
+ 0x5247: "\x12\a\u5247", // 則
+ 0x5248: "\x12\a\u5248", // 剈
+ 0x5249: "\x12\a\u5249", // 剉
+ 0x524a: "\x12\a\u524a", // 削
+ 0x524b: "\x12\a\u524b", // 剋
+ 0x524c: "\x12\a\u524c", // 剌
+ 0x524d: "\x12\a\u524d", // 前
+ 0x524e: "\x12\a\u524e", // 剎
+ 0x524f: "\x12\a\u524f", // 剏
+ 0x5250: "\x12\a\u5250", // 剐
+ 0x5251: "\x12\a\u5251", // 剑
+ 0x5252: "\x12\b\u5252", // 剒
+ 0x5253: "\x12\b\u5253", // 剓
+ 0x5254: "\x12\b\u5254", // 剔
+ 0x5255: "\x12\b\u5255", // 剕
+ 0x5256: "\x12\b\u5256", // 剖
+ 0x5257: "\x12\b\u5257", // 剗
+ 0x5258: "\x12\b\u5258", // 剘
+ 0x5259: "\x12\b\u5259", // 剙
+ 0x525a: "\x12\b\u525a", // 剚
+ 0x525b: "\x12\b\u525b", // 剛
+ 0x525c: "\x12\b\u525c", // 剜
+ 0x525d: "\x12\b\u525d", // 剝
+ 0x525e: "\x12\b\u525e", // 剞
+ 0x525f: "\x12\b\u525f", // 剟
+ 0x5260: "\x12\b\u5260", // 剠
+ 0x5261: "\x12\b\u5261", // 剡
+ 0x5262: "\x12\b\u5262", // 剢
+ 0x5263: "\x12\b\u5263", // 剣
+ 0x5264: "\x12\b\u5264", // 剤
+ 0x5265: "\x12\b\u5265", // 剥
+ 0x5266: "\x12\b\u5266", // 剦
+ 0x5267: "\x12\b\u5267", // 剧
+ 0x5268: "\x12\t\u5268", // 剨
+ 0x5269: "\x12\n\u5269", // 剩
+ 0x526a: "\x12\t\u526a", // 剪
+ 0x526b: "\x12\t\u526b", // 剫
+ 0x526c: "\x12\t\u526c", // 剬
+ 0x526d: "\x12\t\u526d", // 剭
+ 0x526e: "\x12\t\u526e", // 剮
+ 0x526f: "\x12\t\u526f", // 副
+ 0x5270: "\x12\t\u5270", // 剰
+ 0x5271: "\x12\t\u5271", // 剱
+ 0x5272: "\x12\n\u5272", // 割
+ 0x5273: "\x12\n\u5273", // 剳
+ 0x5274: "\x12\n\u5274", // 剴
+ 0x5275: "\x12\n\u5275", // 創
+ 0x5276: "\x12\t\u5276", // 剶
+ 0x5277: "\x12\v\u5277", // 剷
+ 0x5278: "\x12\v\u5278", // 剸
+ 0x5279: "\x12\v\u5279", // 剹
+ 0x527a: "\x12\v\u527a", // 剺
+ 0x527b: "\x12\v\u527b", // 剻
+ 0x527c: "\x12\v\u527c", // 剼
+ 0x527d: "\x12\v\u527d", // 剽
+ 0x527e: "\x12\v\u527e", // 剾
+ 0x527f: "\x12\v\u527f", // 剿
+ 0x5280: "\x12\f\u5280", // 劀
+ 0x5281: "\x12\f\u5281", // 劁
+ 0x5282: "\x12\f\u5282", // 劂
+ 0x5283: "\x12\f\u5283", // 劃
+ 0x5284: "\x12\f\u5284", // 劄
+ 0x5285: "\x12\r\u5285", // 劅
+ 0x5286: "\x12\r\u5286", // 劆
+ 0x5287: "\x12\r\u5287", // 劇
+ 0x5288: "\x12\r\u5288", // 劈
+ 0x5289: "\x12\r\u5289", // 劉
+ 0x528a: "\x12\r\u528a", // 劊
+ 0x528b: "\x12\r\u528b", // 劋
+ 0x528c: "\x12\r\u528c", // 劌
+ 0x528d: "\x12\r\u528d", // 劍
+ 0x528e: "\x12\r\u528e", // 劎
+ 0x528f: "\x12\r\u528f", // 劏
+ 0x5290: "\x12\x0e\u5290", // 劐
+ 0x5291: "\x12\x0e\u5291", // 劑
+ 0x5292: "\x12\x0e\u5292", // 劒
+ 0x5293: "\x12\x0e\u5293", // 劓
+ 0x5294: "\x12\x0e\u5294", // 劔
+ 0x5295: "\x12\x0f\u5295", // 劕
+ 0x5296: "\x12\x11\u5296", // 劖
+ 0x5297: "\x12\x13\u5297", // 劗
+ 0x5298: "\x12\x13\u5298", // 劘
+ 0x5299: "\x12\x15\u5299", // 劙
+ 0x529a: "\x12\x15\u529a", // 劚
+ 0x529b: "\x13\x00\u529b", // 力
+ 0x529c: "\x13\x01\u529c", // 劜
+ 0x529d: "\x13\x02\u529d", // 劝
+ 0x529e: "\x13\x02\u529e", // 办
+ 0x529f: "\x13\x03\u529f", // 功
+ 0x52a0: "\x13\x03\u52a0", // 加
+ 0x52a1: "\x13\x03\u52a1", // 务
+ 0x52a2: "\x13\x03\u52a2", // 劢
+ 0x52a3: "\x13\x04\u52a3", // 劣
+ 0x52a4: "\x13\x04\u52a4", // 劤
+ 0x52a5: "\x13\x04\u52a5", // 劥
+ 0x52a6: "\x13\x04\u52a6", // 劦
+ 0x52a7: "\x13\x04\u52a7", // 劧
+ 0x52a8: "\x13\x04\u52a8", // 动
+ 0x52a9: "\x13\x05\u52a9", // 助
+ 0x52aa: "\x13\x05\u52aa", // 努
+ 0x52ab: "\x13\x05\u52ab", // 劫
+ 0x52ac: "\x13\x05\u52ac", // 劬
+ 0x52ad: "\x13\x05\u52ad", // 劭
+ 0x52ae: "\x13\x05\u52ae", // 劮
+ 0x52af: "\x13\x05\u52af", // 劯
+ 0x52b0: "\x13\x05\u52b0", // 劰
+ 0x52b1: "\x13\x05\u52b1", // 励
+ 0x52b2: "\x13\x05\u52b2", // 劲
+ 0x52b3: "\x13\x05\u52b3", // 劳
+ 0x52b4: "\x13\x05\u52b4", // 労
+ 0x52b5: "\x13\x06\u52b5", // 劵
+ 0x52b6: "\x13\x06\u52b6", // 劶
+ 0x52b7: "\x13\x06\u52b7", // 劷
+ 0x52b8: "\x13\x06\u52b8", // 劸
+ 0x52b9: "\x13\x06\u52b9", // 効
+ 0x52ba: "\x13\x06\u52ba", // 劺
+ 0x52bb: "\x13\x06\u52bb", // 劻
+ 0x52bc: "\x13\x06\u52bc", // 劼
+ 0x52bd: "\x13\x06\u52bd", // 劽
+ 0x52be: "\x13\x06\u52be", // 劾
+ 0x52bf: "\x13\x06\u52bf", // 势
+ 0x52c0: "\x13\a\u52c0", // 勀
+ 0x52c1: "\x13\a\u52c1", // 勁
+ 0x52c2: "\x13\a\u52c2", // 勂
+ 0x52c3: "\x13\a\u52c3", // 勃
+ 0x52c4: "\x13\a\u52c4", // 勄
+ 0x52c5: "\x13\a\u52c5", // 勅
+ 0x52c6: "\x13\a\u52c6", // 勆
+ 0x52c7: "\x13\a\u52c7", // 勇
+ 0x52c8: "\x13\a\u52c8", // 勈
+ 0x52c9: "\x13\a\u52c9", // 勉
+ 0x52ca: "\x13\a\u52ca", // 勊
+ 0x52cb: "\x13\a\u52cb", // 勋
+ 0x52cc: "\x13\b\u52cc", // 勌
+ 0x52cd: "\x13\b\u52cd", // 勍
+ 0x52ce: "\x13\b\u52ce", // 勎
+ 0x52cf: "\x13\b\u52cf", // 勏
+ 0x52d0: "\x13\b\u52d0", // 勐
+ 0x52d1: "\x13\b\u52d1", // 勑
+ 0x52d2: "\x13\t\u52d2", // 勒
+ 0x52d3: "\x13\t\u52d3", // 勓
+ 0x52d4: "\x13\t\u52d4", // 勔
+ 0x52d5: "\x13\t\u52d5", // 動
+ 0x52d6: "\x13\t\u52d6", // 勖
+ 0x52d7: "H\a\u52d7", // 勗
+ 0x52d8: "\x13\t\u52d8", // 勘
+ 0x52d9: "\x13\t\u52d9", // 務
+ 0x52da: "\x13\t\u52da", // 勚
+ 0x52db: "\x13\n\u52db", // 勛
+ 0x52dc: "\x13\n\u52dc", // 勜
+ 0x52dd: "\x13\n\u52dd", // 勝
+ 0x52de: "\x13\n\u52de", // 勞
+ 0x52df: "\x13\v\u52df", // 募
+ 0x52e0: "\x13\v\u52e0", // 勠
+ 0x52e1: "\x13\v\u52e1", // 勡
+ 0x52e2: "\x13\v\u52e2", // 勢
+ 0x52e3: "\x13\v\u52e3", // 勣
+ 0x52e4: "\x13\v\u52e4", // 勤
+ 0x52e5: "\x13\v\u52e5", // 勥
+ 0x52e6: "\x13\v\u52e6", // 勦
+ 0x52e7: "\x13\v\u52e7", // 勧
+ 0x52e8: "\x13\f\u52e8", // 勨
+ 0x52e9: "\x13\f\u52e9", // 勩
+ 0x52ea: "\x13\f\u52ea", // 勪
+ 0x52eb: "\x13\f\u52eb", // 勫
+ 0x52ec: "\x13\f\u52ec", // 勬
+ 0x52ed: "\x13\f\u52ed", // 勭
+ 0x52ee: "\x13\r\u52ee", // 勮
+ 0x52ef: "\x13\r\u52ef", // 勯
+ 0x52f0: "\x13\r\u52f0", // 勰
+ 0x52f1: "\x13\r\u52f1", // 勱
+ 0x52f2: "\x13\r\u52f2", // 勲
+ 0x52f3: "\x13\x0e\u52f3", // 勳
+ 0x52f4: "\x13\x0f\u52f4", // 勴
+ 0x52f5: "\x13\x0f\u52f5", // 勵
+ 0x52f6: "\x13\x0f\u52f6", // 勶
+ 0x52f7: "\x13\x11\u52f7", // 勷
+ 0x52f8: "\x13\x12\u52f8", // 勸
+ 0x52f9: "\x14\x00\u52f9", // 勹
+ 0x52fa: "\x14\x01\u52fa", // 勺
+ 0x52fb: "\x14\x02\u52fb", // 勻
+ 0x52fc: "\x14\x02\u52fc", // 勼
+ 0x52fd: "\x14\x02\u52fd", // 勽
+ 0x52fe: "\x14\x02\u52fe", // 勾
+ 0x52ff: "\x14\x02\u52ff", // 勿
+ 0x5300: "\x14\x02\u5300", // 匀
+ 0x5301: "\x14\x02\u5301", // 匁
+ 0x5302: "\x14\x02\u5302", // 匂
+ 0x5303: "\x14\x03\u5303", // 匃
+ 0x5304: "\x14\x03\u5304", // 匄
+ 0x5305: "\x14\x03\u5305", // 包
+ 0x5306: "\x14\x03\u5306", // 匆
+ 0x5307: "\x14\x03\u5307", // 匇
+ 0x5308: "\x14\x04\u5308", // 匈
+ 0x5309: "\x14\x05\u5309", // 匉
+ 0x530a: "\x14\x06\u530a", // 匊
+ 0x530b: "\x14\x06\u530b", // 匋
+ 0x530c: "\x14\x06\u530c", // 匌
+ 0x530d: "\x14\a\u530d", // 匍
+ 0x530e: "\x14\b\u530e", // 匎
+ 0x530f: "\x14\t\u530f", // 匏
+ 0x5310: "\x14\t\u5310", // 匐
+ 0x5311: "\x14\n\u5311", // 匑
+ 0x5312: "\x14\n\u5312", // 匒
+ 0x5313: "\x14\v\u5313", // 匓
+ 0x5314: "\x14\r\u5314", // 匔
+ 0x5315: "\x15\x00\u5315", // 匕
+ 0x5316: "\x15\x02\u5316", // 化
+ 0x5317: "\x15\x03\u5317", // 北
+ 0x5318: "\x15\t\u5318", // 匘
+ 0x5319: "\x15\t\u5319", // 匙
+ 0x531a: "\x16\x00\u531a", // 匚
+ 0x531b: "\x16\x03\u531b", // 匛
+ 0x531c: "\x16\x03\u531c", // 匜
+ 0x531d: "\x16\x03\u531d", // 匝
+ 0x531e: "\x16\x03\u531e", // 匞
+ 0x531f: "\x16\x04\u531f", // 匟
+ 0x5320: "\x16\x04\u5320", // 匠
+ 0x5321: "\x16\x04\u5321", // 匡
+ 0x5322: "\x16\x04\u5322", // 匢
+ 0x5323: "\x16\x05\u5323", // 匣
+ 0x5324: "\x16\x05\u5324", // 匤
+ 0x5325: "\x16\x05\u5325", // 匥
+ 0x5326: "\x16\x06\u5326", // 匦
+ 0x5327: "\x16\a\u5327", // 匧
+ 0x5328: "\x16\a\u5328", // 匨
+ 0x5329: "\x16\a\u5329", // 匩
+ 0x532a: "\x16\b\u532a", // 匪
+ 0x532b: "\x16\b\u532b", // 匫
+ 0x532c: "\x16\t\u532c", // 匬
+ 0x532d: "\x16\t\u532d", // 匭
+ 0x532e: "\x16\t\u532e", // 匮
+ 0x532f: "\x16\v\u532f", // 匯
+ 0x5330: "\x16\f\u5330", // 匰
+ 0x5331: "\x16\f\u5331", // 匱
+ 0x5332: "\x16\f\u5332", // 匲
+ 0x5333: "\x16\r\u5333", // 匳
+ 0x5334: "\x16\x0e\u5334", // 匴
+ 0x5335: "\x16\x0f\u5335", // 匵
+ 0x5336: "\x16\x11\u5336", // 匶
+ 0x5337: "\x16\x12\u5337", // 匷
+ 0x5338: "\x17\x00\u5338", // 匸
+ 0x5339: "\x17\x02\u5339", // 匹
+ 0x533a: "\x17\x02\u533a", // 区
+ 0x533b: "\x17\x05\u533b", // 医
+ 0x533c: "\x17\x06\u533c", // 匼
+ 0x533d: "\x17\a\u533d", // 匽
+ 0x533e: "\x17\t\u533e", // 匾
+ 0x533f: "\x17\t\u533f", // 匿
+ 0x5340: "\x17\t\u5340", // 區
+ 0x5341: "\x18\x00\u5341", // 十
+ 0x5342: "\x18\x01\u5342", // 卂
+ 0x5343: "\x18\x01\u5343", // 千
+ 0x5344: "\x01\x02\u5344", // 卄
+ 0x5345: "\x18\x02\u5345", // 卅
+ 0x5346: "\x18\x02\u5346", // 卆
+ 0x5347: "\x18\x02\u5347", // 升
+ 0x5348: "\x18\x02\u5348", // 午
+ 0x5349: "\x18\x03\u5349", // 卉
+ 0x534a: "\x18\x03\u534a", // 半
+ 0x534b: "\x18\x04\u534b", // 卋
+ 0x534c: "\x18\x03\u534c", // 卌
+ 0x534d: "\x18\x04\u534d", // 卍
+ 0x534e: "\x18\x04\u534e", // 华
+ 0x534f: "\x18\x04\u534f", // 协
+ 0x5350: "\x18\x04\u5350", // 卐
+ 0x5351: "\x18\x06\u5351", // 卑
+ 0x5352: "\x18\x06\u5352", // 卒
+ 0x5353: "\x18\x06\u5353", // 卓
+ 0x5354: "\x18\x06\u5354", // 協
+ 0x5355: "\x18\x06\u5355", // 单
+ 0x5356: "\x18\x06\u5356", // 卖
+ 0x5357: "\x18\a\u5357", // 南
+ 0x5358: "\x18\a\u5358", // 単
+ 0x5359: "\x18\t\u5359", // 卙
+ 0x535a: "\x18\n\u535a", // 博
+ 0x535b: "\x18\x13\u535b", // 卛
+ 0x535c: "\x19\x00\u535c", // 卜
+ 0x535d: "\x19\x02\u535d", // 卝
+ 0x535e: "\x19\x02\u535e", // 卞
+ 0x535f: "\x19\x03\u535f", // 卟
+ 0x5360: "\x19\x03\u5360", // 占
+ 0x5361: "\x19\x03\u5361", // 卡
+ 0x5362: "\x19\x03\u5362", // 卢
+ 0x5363: "\x19\x05\u5363", // 卣
+ 0x5364: "\x19\x00\u5364", // 卤
+ 0x5365: "\x19\x06\u5365", // 卥
+ 0x5366: "\x19\x06\u5366", // 卦
+ 0x5367: "\x19\x06\u5367", // 卧
+ 0x5368: "\x19\t\u5368", // 卨
+ 0x5369: "\x1a\x00\u5369", // 卩
+ 0x536a: "\x1a\x01\u536a", // 卪
+ 0x536b: "\x1a\x01\u536b", // 卫
+ 0x536c: "\x1a\x02\u536c", // 卬
+ 0x536d: "\x1a\x03\u536d", // 卭
+ 0x536e: "\x1a\x03\u536e", // 卮
+ 0x536f: "\x1a\x03\u536f", // 卯
+ 0x5370: "\x1a\x04\u5370", // 印
+ 0x5371: "\x1a\x04\u5371", // 危
+ 0x5372: "\x1a\x05\u5372", // 卲
+ 0x5373: "\x1a\x05\u5373", // 即
+ 0x5374: "\x1a\x05\u5374", // 却
+ 0x5375: "\x1a\x05\u5375", // 卵
+ 0x5376: "\x1a\x06\u5376", // 卶
+ 0x5377: "\x1a\x06\u5377", // 卷
+ 0x5378: "\x1a\x06\u5378", // 卸
+ 0x5379: "\x1a\x06\u5379", // 卹
+ 0x537a: "\x1a\x06\u537a", // 卺
+ 0x537b: "\x1a\a\u537b", // 卻
+ 0x537c: "\x1a\a\u537c", // 卼
+ 0x537d: "\x1a\a\u537d", // 卽
+ 0x537e: "\x1a\t\u537e", // 卾
+ 0x537f: "\x1a\t\u537f", // 卿
+ 0x5380: "\x1a\v\u5380", // 厀
+ 0x5381: "\x1a\v\u5381", // 厁
+ 0x5382: "\x1b\x00\u5382", // 厂
+ 0x5383: "\x1b\x02\u5383", // 厃
+ 0x5384: "\x1b\x02\u5384", // 厄
+ 0x5385: "\x1b\x02\u5385", // 厅
+ 0x5386: "\x1b\x02\u5386", // 历
+ 0x5387: "\x1b\x03\u5387", // 厇
+ 0x5388: "\x1b\x03\u5388", // 厈
+ 0x5389: "\x1b\x03\u5389", // 厉
+ 0x538a: "\x1b\x04\u538a", // 厊
+ 0x538b: "\x1b\x04\u538b", // 压
+ 0x538c: "\x1b\x04\u538c", // 厌
+ 0x538d: "\x1b\x04\u538d", // 厍
+ 0x538e: "\x1b\x05\u538e", // 厎
+ 0x538f: "\x1b\x05\u538f", // 厏
+ 0x5390: "\x1b\x05\u5390", // 厐
+ 0x5391: "\x1b\x05\u5391", // 厑
+ 0x5392: "\x1b\x06\u5392", // 厒
+ 0x5393: "\x1b\x06\u5393", // 厓
+ 0x5394: "\x1b\x06\u5394", // 厔
+ 0x5395: "\x1b\x06\u5395", // 厕
+ 0x5396: "\x1b\a\u5396", // 厖
+ 0x5397: "\x1b\a\u5397", // 厗
+ 0x5398: "\x1b\a\u5398", // 厘
+ 0x5399: "\x1b\a\u5399", // 厙
+ 0x539a: "\x1b\a\u539a", // 厚
+ 0x539b: "\x1b\a\u539b", // 厛
+ 0x539c: "\x1b\b\u539c", // 厜
+ 0x539d: "\x1b\b\u539d", // 厝
+ 0x539e: "\x1b\b\u539e", // 厞
+ 0x539f: "\x1b\b\u539f", // 原
+ 0x53a0: "\x1b\t\u53a0", // 厠
+ 0x53a1: "\x1b\t\u53a1", // 厡
+ 0x53a2: "\x1b\t\u53a2", // 厢
+ 0x53a3: "\x1b\t\u53a3", // 厣
+ 0x53a4: "\x1b\n\u53a4", // 厤
+ 0x53a5: "\x1b\n\u53a5", // 厥
+ 0x53a6: "\x1b\n\u53a6", // 厦
+ 0x53a7: "\x1b\n\u53a7", // 厧
+ 0x53a8: "\x1b\n\u53a8", // 厨
+ 0x53a9: "\x1b\t\u53a9", // 厩
+ 0x53aa: "\x1b\v\u53aa", // 厪
+ 0x53ab: "\x1b\v\u53ab", // 厫
+ 0x53ac: "\x1b\f\u53ac", // 厬
+ 0x53ad: "\x1b\f\u53ad", // 厭
+ 0x53ae: "\x1b\f\u53ae", // 厮
+ 0x53af: "\x1b\f\u53af", // 厯
+ 0x53b0: "\x1b\f\u53b0", // 厰
+ 0x53b1: "\x1b\r\u53b1", // 厱
+ 0x53b2: "\x1b\r\u53b2", // 厲
+ 0x53b3: "\x1b\x0f\u53b3", // 厳
+ 0x53b4: "\x1b\x11\u53b4", // 厴
+ 0x53b5: "\x1b\x1c\u53b5", // 厵
+ 0x53b6: "\x1c\x00\u53b6", // 厶
+ 0x53b7: "\x1c\x02\u53b7", // 厷
+ 0x53b8: "\x1c\x02\u53b8", // 厸
+ 0x53b9: "\x1c\x02\u53b9", // 厹
+ 0x53ba: "\x1c\x03\u53ba", // 厺
+ 0x53bb: "\x1c\x03\u53bb", // 去
+ 0x53bc: "\x1c\x03\u53bc", // 厼
+ 0x53bd: "\x1c\x04\u53bd", // 厽
+ 0x53be: "\x1c\x04\u53be", // 厾
+ 0x53bf: "\x1c\x05\u53bf", // 县
+ 0x53c0: "\x1c\x06\u53c0", // 叀
+ 0x53c1: "\x1c\x06\u53c1", // 叁
+ 0x53c2: "\x1c\x06\u53c2", // 参
+ 0x53c3: "\x1c\t\u53c3", // 參
+ 0x53c4: "\x1c\t\u53c4", // 叄
+ 0x53c5: "\x1c\n\u53c5", // 叅
+ 0x53c6: "\x1c\f\u53c6", // 叆
+ 0x53c7: "\x1c\r\u53c7", // 叇
+ 0x53c8: "\x1d\x00\u53c8", // 又
+ 0x53c9: "\x1d\x01\u53c9", // 叉
+ 0x53ca: "\x1d\x02\u53ca", // 及
+ 0x53cb: "\x1d\x02\u53cb", // 友
+ 0x53cc: "\x1d\x02\u53cc", // 双
+ 0x53cd: "\x1d\x02\u53cd", // 反
+ 0x53ce: "\x1d\x02\u53ce", // 収
+ 0x53cf: "\x1d\x03\u53cf", // 叏
+ 0x53d0: "\x1d\x03\u53d0", // 叐
+ 0x53d1: "\x1d\x03\u53d1", // 发
+ 0x53d2: "\x1d\x04\u53d2", // 叒
+ 0x53d3: "\x1d\x05\u53d3", // 叓
+ 0x53d4: "\x1d\x06\u53d4", // 叔
+ 0x53d5: "\x1d\x06\u53d5", // 叕
+ 0x53d6: "\x1d\x06\u53d6", // 取
+ 0x53d7: "\x1d\x06\u53d7", // 受
+ 0x53d8: "\x1d\x06\u53d8", // 变
+ 0x53d9: "\x1d\a\u53d9", // 叙
+ 0x53da: "\x1d\a\u53da", // 叚
+ 0x53db: "\x1d\a\u53db", // 叛
+ 0x53dc: "\x1d\a\u53dc", // 叜
+ 0x53dd: "\x1d\a\u53dd", // 叝
+ 0x53de: "\x1d\b\u53de", // 叞
+ 0x53df: "\x1d\b\u53df", // 叟
+ 0x53e0: "\x1d\v\u53e0", // 叠
+ 0x53e1: "\x1d\x0e\u53e1", // 叡
+ 0x53e2: "\x1d\x10\u53e2", // 叢
+ 0x53e3: "\x1e\x00\u53e3", // 口
+ 0x53e4: "\x1e\x02\u53e4", // 古
+ 0x53e5: "\x1e\x02\u53e5", // 句
+ 0x53e6: "\x1e\x02\u53e6", // 另
+ 0x53e7: "\x1e\x02\u53e7", // 叧
+ 0x53e8: "\x1e\x02\u53e8", // 叨
+ 0x53e9: "\x1e\x02\u53e9", // 叩
+ 0x53ea: "\x1e\x02\u53ea", // 只
+ 0x53eb: "\x1e\x02\u53eb", // 叫
+ 0x53ec: "\x1e\x02\u53ec", // 召
+ 0x53ed: "\x1e\x02\u53ed", // 叭
+ 0x53ee: "\x1e\x02\u53ee", // 叮
+ 0x53ef: "\x1e\x02\u53ef", // 可
+ 0x53f0: "\x1e\x02\u53f0", // 台
+ 0x53f1: "\x1e\x02\u53f1", // 叱
+ 0x53f2: "\x1e\x02\u53f2", // 史
+ 0x53f3: "\x1e\x02\u53f3", // 右
+ 0x53f4: "\x1e\x02\u53f4", // 叴
+ 0x53f5: "\x1e\x02\u53f5", // 叵
+ 0x53f6: "\x1e\x02\u53f6", // 叶
+ 0x53f7: "\x1e\x02\u53f7", // 号
+ 0x53f8: "\x1e\x02\u53f8", // 司
+ 0x53f9: "\x1e\x02\u53f9", // 叹
+ 0x53fa: "\x1e\x02\u53fa", // 叺
+ 0x53fb: "\x1e\x02\u53fb", // 叻
+ 0x53fc: "\x1e\x02\u53fc", // 叼
+ 0x53fd: "\x1e\x02\u53fd", // 叽
+ 0x53fe: "\x1e\x02\u53fe", // 叾
+ 0x53ff: "\x1e\x03\u53ff", // 叿
+ 0x5400: "\x1e\x03\u5400", // 吀
+ 0x5401: "\x1e\x03\u5401", // 吁
+ 0x5402: "\x1e\x03\u5402", // 吂
+ 0x5403: "\x1e\x03\u5403", // 吃
+ 0x5404: "\x1e\x03\u5404", // 各
+ 0x5405: "\x1e\x03\u5405", // 吅
+ 0x5406: "\x1e\x03\u5406", // 吆
+ 0x5407: "\x1e\x03\u5407", // 吇
+ 0x5408: "\x1e\x03\u5408", // 合
+ 0x5409: "\x1e\x03\u5409", // 吉
+ 0x540a: "\x1e\x03\u540a", // 吊
+ 0x540b: "\x1e\x03\u540b", // 吋
+ 0x540c: "\x1e\x03\u540c", // 同
+ 0x540d: "\x1e\x03\u540d", // 名
+ 0x540e: "\x1e\x03\u540e", // 后
+ 0x540f: "\x1e\x03\u540f", // 吏
+ 0x5410: "\x1e\x03\u5410", // 吐
+ 0x5411: "\x1e\x03\u5411", // 向
+ 0x5412: "\x1e\x03\u5412", // 吒
+ 0x5413: "\x1e\x03\u5413", // 吓
+ 0x5414: "\x1e\x03\u5414", // 吔
+ 0x5415: "\x1e\x03\u5415", // 吕
+ 0x5416: "\x1e\x03\u5416", // 吖
+ 0x5417: "\x1e\x03\u5417", // 吗
+ 0x5418: "\x1e\x04\u5418", // 吘
+ 0x5419: "\x1e\x04\u5419", // 吙
+ 0x541a: "\x1e\x04\u541a", // 吚
+ 0x541b: "\x1e\x04\u541b", // 君
+ 0x541c: "\x1e\x04\u541c", // 吜
+ 0x541d: "\x1e\x04\u541d", // 吝
+ 0x541e: "\x1e\x04\u541e", // 吞
+ 0x541f: "\x1e\x04\u541f", // 吟
+ 0x5420: "\x1e\x04\u5420", // 吠
+ 0x5421: "\x1e\x04\u5421", // 吡
+ 0x5422: "\x1e\x04\u5422", // 吢
+ 0x5423: "\x1e\x04\u5423", // 吣
+ 0x5424: "\x1e\x04\u5424", // 吤
+ 0x5425: "\x1e\x04\u5425", // 吥
+ 0x5426: "\x1e\x04\u5426", // 否
+ 0x5427: "\x1e\x04\u5427", // 吧
+ 0x5428: "\x1e\x04\u5428", // 吨
+ 0x5429: "\x1e\x04\u5429", // 吩
+ 0x542a: "\x1e\x04\u542a", // 吪
+ 0x542b: "\x1e\x04\u542b", // 含
+ 0x542c: "\x1e\x04\u542c", // 听
+ 0x542d: "\x1e\x04\u542d", // 吭
+ 0x542e: "\x1e\x04\u542e", // 吮
+ 0x542f: "\x1e\x04\u542f", // 启
+ 0x5430: "\x1e\x04\u5430", // 吰
+ 0x5431: "\x1e\x04\u5431", // 吱
+ 0x5432: "\x1e\x04\u5432", // 吲
+ 0x5433: "\x1e\x04\u5433", // 吳
+ 0x5434: "\x1e\x04\u5434", // 吴
+ 0x5435: "\x1e\x04\u5435", // 吵
+ 0x5436: "\x1e\x04\u5436", // 吶
+ 0x5437: "\x1e\x04\u5437", // 吷
+ 0x5438: "\x1e\x04\u5438", // 吸
+ 0x5439: "\x1e\x04\u5439", // 吹
+ 0x543a: "\x1e\x04\u543a", // 吺
+ 0x543b: "\x1e\x04\u543b", // 吻
+ 0x543c: "\x1e\x04\u543c", // 吼
+ 0x543d: "\x1e\x04\u543d", // 吽
+ 0x543e: "\x1e\x04\u543e", // 吾
+ 0x543f: "\x1e\x04\u543f", // 吿
+ 0x5440: "\x1e\x04\u5440", // 呀
+ 0x5441: "\x1e\x04\u5441", // 呁
+ 0x5442: "\x1e\x04\u5442", // 呂
+ 0x5443: "\x1e\x04\u5443", // 呃
+ 0x5444: "\x1e\x04\u5444", // 呄
+ 0x5445: "\x1e\x04\u5445", // 呅
+ 0x5446: "\x1e\x04\u5446", // 呆
+ 0x5447: "\x1e\x04\u5447", // 呇
+ 0x5448: "\x1e\x04\u5448", // 呈
+ 0x5449: "\x1e\x04\u5449", // 呉
+ 0x544a: "\x1e\x04\u544a", // 告
+ 0x544b: "\x1e\x04\u544b", // 呋
+ 0x544c: "\x1e\x04\u544c", // 呌
+ 0x544d: "\x1e\x04\u544d", // 呍
+ 0x544e: "\x1e\x04\u544e", // 呎
+ 0x544f: "\x1e\x04\u544f", // 呏
+ 0x5450: "\x1e\x04\u5450", // 呐
+ 0x5451: "\x1e\x04\u5451", // 呑
+ 0x5452: "\x1e\x04\u5452", // 呒
+ 0x5453: "\x1e\x04\u5453", // 呓
+ 0x5454: "\x1e\x04\u5454", // 呔
+ 0x5455: "\x1e\x04\u5455", // 呕
+ 0x5456: "\x1e\x04\u5456", // 呖
+ 0x5457: "\x1e\x04\u5457", // 呗
+ 0x5458: "\x1e\x04\u5458", // 员
+ 0x5459: "\x1e\x04\u5459", // 呙
+ 0x545a: "\x1e\x04\u545a", // 呚
+ 0x545b: "\x1e\x04\u545b", // 呛
+ 0x545c: "\x1e\x04\u545c", // 呜
+ 0x545d: "\x1e\x05\u545d", // 呝
+ 0x545e: "\x1e\x05\u545e", // 呞
+ 0x545f: "\x1e\x05\u545f", // 呟
+ 0x5460: "\x1e\x05\u5460", // 呠
+ 0x5461: "\x1e\x05\u5461", // 呡
+ 0x5462: "\x1e\x05\u5462", // 呢
+ 0x5463: "\x1e\x05\u5463", // 呣
+ 0x5464: "\x1e\x05\u5464", // 呤
+ 0x5465: "\x1e\x05\u5465", // 呥
+ 0x5466: "\x1e\x05\u5466", // 呦
+ 0x5467: "\x1e\x05\u5467", // 呧
+ 0x5468: "\x1e\x05\u5468", // 周
+ 0x5469: "\x1e\x05\u5469", // 呩
+ 0x546a: "\x1e\x05\u546a", // 呪
+ 0x546b: "\x1e\x05\u546b", // 呫
+ 0x546c: "\x1e\x05\u546c", // 呬
+ 0x546d: "\x1e\x05\u546d", // 呭
+ 0x546e: "\x1e\x05\u546e", // 呮
+ 0x546f: "\x1e\x05\u546f", // 呯
+ 0x5470: "\x1e\x05\u5470", // 呰
+ 0x5471: "\x1e\x05\u5471", // 呱
+ 0x5472: "\x1e\x05\u5472", // 呲
+ 0x5473: "\x1e\x05\u5473", // 味
+ 0x5474: "\x1e\x05\u5474", // 呴
+ 0x5475: "\x1e\x05\u5475", // 呵
+ 0x5476: "\x1e\x05\u5476", // 呶
+ 0x5477: "\x1e\x05\u5477", // 呷
+ 0x5478: "\x1e\x05\u5478", // 呸
+ 0x5479: "\x1e\x05\u5479", // 呹
+ 0x547a: "\x1e\x05\u547a", // 呺
+ 0x547b: "\x1e\x05\u547b", // 呻
+ 0x547c: "\x1e\x05\u547c", // 呼
+ 0x547d: "\x1e\x05\u547d", // 命
+ 0x547e: "\x1e\x05\u547e", // 呾
+ 0x547f: "\x1e\x05\u547f", // 呿
+ 0x5480: "\x1e\x05\u5480", // 咀
+ 0x5481: "\x1e\x05\u5481", // 咁
+ 0x5482: "\x1e\x05\u5482", // 咂
+ 0x5483: "\x1e\x05\u5483", // 咃
+ 0x5484: "\x1e\x05\u5484", // 咄
+ 0x5485: "\x1e\x05\u5485", // 咅
+ 0x5486: "\x1e\x05\u5486", // 咆
+ 0x5487: "\x1e\x05\u5487", // 咇
+ 0x5488: "\x1e\x05\u5488", // 咈
+ 0x5489: "\x1e\x05\u5489", // 咉
+ 0x548a: "\x1e\x05\u548a", // 咊
+ 0x548b: "\x1e\x05\u548b", // 咋
+ 0x548c: "\x1e\x05\u548c", // 和
+ 0x548d: "\x1e\x05\u548d", // 咍
+ 0x548e: "\x1e\x05\u548e", // 咎
+ 0x548f: "\x1e\x05\u548f", // 咏
+ 0x5490: "\x1e\x05\u5490", // 咐
+ 0x5491: "\x1e\x05\u5491", // 咑
+ 0x5492: "\x1e\x05\u5492", // 咒
+ 0x5493: "\x1e\x05\u5493", // 咓
+ 0x5494: "\x1e\x05\u5494", // 咔
+ 0x5495: "\x1e\x05\u5495", // 咕
+ 0x5496: "\x1e\x05\u5496", // 咖
+ 0x5497: "\x1e\x05\u5497", // 咗
+ 0x5498: "\x1e\x05\u5498", // 咘
+ 0x5499: "\x1e\x05\u5499", // 咙
+ 0x549a: "\x1e\x05\u549a", // 咚
+ 0x549b: "\x1e\x05\u549b", // 咛
+ 0x549c: "\x1e\x05\u549c", // 咜
+ 0x549d: "\x1e\x05\u549d", // 咝
+ 0x549e: "\x1e\x06\u549e", // 咞
+ 0x549f: "\x1e\x06\u549f", // 咟
+ 0x54a0: "\x1e\x06\u54a0", // 咠
+ 0x54a1: "\x1e\x06\u54a1", // 咡
+ 0x54a2: "\x1e\x06\u54a2", // 咢
+ 0x54a3: "\x1e\x06\u54a3", // 咣
+ 0x54a4: "\x1e\x06\u54a4", // 咤
+ 0x54a5: "\x1e\x06\u54a5", // 咥
+ 0x54a6: "\x1e\x06\u54a6", // 咦
+ 0x54a7: "\x1e\x06\u54a7", // 咧
+ 0x54a8: "\x1e\x06\u54a8", // 咨
+ 0x54a9: "\x1e\x06\u54a9", // 咩
+ 0x54aa: "\x1e\x06\u54aa", // 咪
+ 0x54ab: "\x1e\x06\u54ab", // 咫
+ 0x54ac: "\x1e\x06\u54ac", // 咬
+ 0x54ad: "\x1e\x06\u54ad", // 咭
+ 0x54ae: "\x1e\x06\u54ae", // 咮
+ 0x54af: "\x1e\x06\u54af", // 咯
+ 0x54b0: "\x1e\x06\u54b0", // 咰
+ 0x54b1: "\x1e\x06\u54b1", // 咱
+ 0x54b2: "\x1e\x06\u54b2", // 咲
+ 0x54b3: "\x1e\x06\u54b3", // 咳
+ 0x54b4: "\x1e\x06\u54b4", // 咴
+ 0x54b5: "\x1e\x06\u54b5", // 咵
+ 0x54b6: "\x1e\x06\u54b6", // 咶
+ 0x54b7: "\x1e\x06\u54b7", // 咷
+ 0x54b8: "\x1e\x06\u54b8", // 咸
+ 0x54b9: "\x1e\x06\u54b9", // 咹
+ 0x54ba: "\x1e\x06\u54ba", // 咺
+ 0x54bb: "\x1e\x06\u54bb", // 咻
+ 0x54bc: "\x1e\x06\u54bc", // 咼
+ 0x54bd: "\x1e\x06\u54bd", // 咽
+ 0x54be: "\x1e\x06\u54be", // 咾
+ 0x54bf: "\x1e\x06\u54bf", // 咿
+ 0x54c0: "\x1e\x06\u54c0", // 哀
+ 0x54c1: "\x1e\x06\u54c1", // 品
+ 0x54c2: "\x1e\x06\u54c2", // 哂
+ 0x54c3: "\x1e\x06\u54c3", // 哃
+ 0x54c4: "\x1e\x06\u54c4", // 哄
+ 0x54c5: "\x1e\x06\u54c5", // 哅
+ 0x54c6: "\x1e\x06\u54c6", // 哆
+ 0x54c7: "\x1e\x06\u54c7", // 哇
+ 0x54c8: "\x1e\x06\u54c8", // 哈
+ 0x54c9: "\x1e\x06\u54c9", // 哉
+ 0x54ca: "\x1e\x06\u54ca", // 哊
+ 0x54cb: "\x1e\x06\u54cb", // 哋
+ 0x54cc: "\x1e\x06\u54cc", // 哌
+ 0x54cd: "\x1e\x06\u54cd", // 响
+ 0x54ce: "\x1e\x06\u54ce", // 哎
+ 0x54cf: "\x1e\x06\u54cf", // 哏
+ 0x54d0: "\x1e\x06\u54d0", // 哐
+ 0x54d1: "\x1e\x06\u54d1", // 哑
+ 0x54d2: "\x1e\x06\u54d2", // 哒
+ 0x54d3: "\x1e\x06\u54d3", // 哓
+ 0x54d4: "\x1e\x06\u54d4", // 哔
+ 0x54d5: "\x1e\x06\u54d5", // 哕
+ 0x54d6: "\x1e\x06\u54d6", // 哖
+ 0x54d7: "\x1e\x06\u54d7", // 哗
+ 0x54d8: "\x1e\x06\u54d8", // 哘
+ 0x54d9: "\x1e\x06\u54d9", // 哙
+ 0x54da: "\x1e\x06\u54da", // 哚
+ 0x54db: "\x1e\x06\u54db", // 哛
+ 0x54dc: "\x1e\x06\u54dc", // 哜
+ 0x54dd: "\x1e\x06\u54dd", // 哝
+ 0x54de: "\x1e\x06\u54de", // 哞
+ 0x54df: "\x1e\x06\u54df", // 哟
+ 0x54e0: "\x1e\a\u54e0", // 哠
+ 0x54e1: "\x1e\a\u54e1", // 員
+ 0x54e2: "\x1e\a\u54e2", // 哢
+ 0x54e3: "\x1e\a\u54e3", // 哣
+ 0x54e4: "\x1e\a\u54e4", // 哤
+ 0x54e5: "\x1e\a\u54e5", // 哥
+ 0x54e6: "\x1e\a\u54e6", // 哦
+ 0x54e7: "\x1e\a\u54e7", // 哧
+ 0x54e8: "\x1e\a\u54e8", // 哨
+ 0x54e9: "\x1e\a\u54e9", // 哩
+ 0x54ea: "\x1e\a\u54ea", // 哪
+ 0x54eb: "\x1e\a\u54eb", // 哫
+ 0x54ec: "\x1e\a\u54ec", // 哬
+ 0x54ed: "\x1e\a\u54ed", // 哭
+ 0x54ee: "\x1e\a\u54ee", // 哮
+ 0x54ef: "\x1e\a\u54ef", // 哯
+ 0x54f0: "\x1e\a\u54f0", // 哰
+ 0x54f1: "\x1e\a\u54f1", // 哱
+ 0x54f2: "\x1e\a\u54f2", // 哲
+ 0x54f3: "\x1e\a\u54f3", // 哳
+ 0x54f4: "\x1e\a\u54f4", // 哴
+ 0x54f5: "\x1e\a\u54f5", // 哵
+ 0x54f6: "\x1e\a\u54f6", // 哶
+ 0x54f7: "\x1e\a\u54f7", // 哷
+ 0x54f8: "\x1e\a\u54f8", // 哸
+ 0x54f9: "\x1e\a\u54f9", // 哹
+ 0x54fa: "\x1e\a\u54fa", // 哺
+ 0x54fb: "\x1e\a\u54fb", // 哻
+ 0x54fc: "\x1e\a\u54fc", // 哼
+ 0x54fd: "\x1e\a\u54fd", // 哽
+ 0x54fe: "\x1e\a\u54fe", // 哾
+ 0x54ff: "\x1e\a\u54ff", // 哿
+ 0x5500: "\x1e\a\u5500", // 唀
+ 0x5501: "\x1e\a\u5501", // 唁
+ 0x5502: "\x1e\a\u5502", // 唂
+ 0x5503: "\x1e\a\u5503", // 唃
+ 0x5504: "\x1e\a\u5504", // 唄
+ 0x5505: "\x1e\a\u5505", // 唅
+ 0x5506: "\x1e\a\u5506", // 唆
+ 0x5507: "\x1e\a\u5507", // 唇
+ 0x5508: "\x1e\a\u5508", // 唈
+ 0x5509: "\x1e\a\u5509", // 唉
+ 0x550a: "\x1e\a\u550a", // 唊
+ 0x550b: "\x1e\a\u550b", // 唋
+ 0x550c: "\x1e\a\u550c", // 唌
+ 0x550d: "\x1e\a\u550d", // 唍
+ 0x550e: "\x1e\a\u550e", // 唎
+ 0x550f: "\x1e\a\u550f", // 唏
+ 0x5510: "\x1e\a\u5510", // 唐
+ 0x5511: "\x1e\a\u5511", // 唑
+ 0x5512: "\x1e\a\u5512", // 唒
+ 0x5513: "\x1e\a\u5513", // 唓
+ 0x5514: "\x1e\a\u5514", // 唔
+ 0x5515: "\x1e\a\u5515", // 唕
+ 0x5516: "\x1e\a\u5516", // 唖
+ 0x5517: "\x1e\a\u5517", // 唗
+ 0x5518: "\x1e\a\u5518", // 唘
+ 0x5519: "\x1e\a\u5519", // 唙
+ 0x551a: "\x1e\a\u551a", // 唚
+ 0x551b: "\x1e\a\u551b", // 唛
+ 0x551c: "\x1e\a\u551c", // 唜
+ 0x551d: "\x1e\a\u551d", // 唝
+ 0x551e: "\x1e\a\u551e", // 唞
+ 0x551f: "\x1e\a\u551f", // 唟
+ 0x5520: "\x1e\a\u5520", // 唠
+ 0x5521: "\x1e\a\u5521", // 唡
+ 0x5522: "\x1e\a\u5522", // 唢
+ 0x5523: "\x1e\a\u5523", // 唣
+ 0x5524: "\x1e\a\u5524", // 唤
+ 0x5525: "\x1e\a\u5525", // 唥
+ 0x5526: "\x1e\a\u5526", // 唦
+ 0x5527: "\x1e\a\u5527", // 唧
+ 0x5528: "\x1e\b\u5528", // 唨
+ 0x5529: "\x1e\b\u5529", // 唩
+ 0x552a: "\x1e\b\u552a", // 唪
+ 0x552b: "\x1e\b\u552b", // 唫
+ 0x552c: "\x1e\b\u552c", // 唬
+ 0x552d: "\x1e\b\u552d", // 唭
+ 0x552e: "\x1e\b\u552e", // 售
+ 0x552f: "\x1e\b\u552f", // 唯
+ 0x5530: "\x1e\b\u5530", // 唰
+ 0x5531: "\x1e\b\u5531", // 唱
+ 0x5532: "\x1e\b\u5532", // 唲
+ 0x5533: "\x1e\b\u5533", // 唳
+ 0x5534: "\x1e\b\u5534", // 唴
+ 0x5535: "\x1e\b\u5535", // 唵
+ 0x5536: "\x1e\b\u5536", // 唶
+ 0x5537: "\x1e\b\u5537", // 唷
+ 0x5538: "\x1e\b\u5538", // 唸
+ 0x5539: "\x1e\b\u5539", // 唹
+ 0x553a: "\x1e\b\u553a", // 唺
+ 0x553b: "\x1e\b\u553b", // 唻
+ 0x553c: "\x1e\b\u553c", // 唼
+ 0x553d: "\x1e\b\u553d", // 唽
+ 0x553e: "\x1e\b\u553e", // 唾
+ 0x553f: "\x1e\b\u553f", // 唿
+ 0x5540: "\x1e\b\u5540", // 啀
+ 0x5541: "\x1e\b\u5541", // 啁
+ 0x5542: "\x1e\b\u5542", // 啂
+ 0x5543: "\x1e\b\u5543", // 啃
+ 0x5544: "\x1e\b\u5544", // 啄
+ 0x5545: "\x1e\b\u5545", // 啅
+ 0x5546: "\x1e\b\u5546", // 商
+ 0x5547: "\x1e\b\u5547", // 啇
+ 0x5548: "\x1e\b\u5548", // 啈
+ 0x5549: "\x1e\b\u5549", // 啉
+ 0x554a: "\x1e\b\u554a", // 啊
+ 0x554b: "\x1e\b\u554b", // 啋
+ 0x554c: "\x1e\b\u554c", // 啌
+ 0x554d: "\x1e\b\u554d", // 啍
+ 0x554e: "\x1e\b\u554e", // 啎
+ 0x554f: "\x1e\b\u554f", // 問
+ 0x5550: "\x1e\b\u5550", // 啐
+ 0x5551: "\x1e\b\u5551", // 啑
+ 0x5552: "\x1e\b\u5552", // 啒
+ 0x5553: "\x1e\b\u5553", // 啓
+ 0x5554: "\x1e\b\u5554", // 啔
+ 0x5555: "\x1e\b\u5555", // 啕
+ 0x5556: "\x1e\b\u5556", // 啖
+ 0x5557: "\x1e\b\u5557", // 啗
+ 0x5558: "\x1e\b\u5558", // 啘
+ 0x5559: "\x1e\t\u5559", // 啙
+ 0x555a: "\x1e\b\u555a", // 啚
+ 0x555b: "\x1e\b\u555b", // 啛
+ 0x555c: "\x1e\b\u555c", // 啜
+ 0x555d: "\x1e\b\u555d", // 啝
+ 0x555e: "\x1e\b\u555e", // 啞
+ 0x555f: "B\a\u555f", // 啟
+ 0x5560: "\x1e\b\u5560", // 啠
+ 0x5561: "\x1e\b\u5561", // 啡
+ 0x5562: "\x1e\b\u5562", // 啢
+ 0x5563: "\x1e\b\u5563", // 啣
+ 0x5564: "\x1e\b\u5564", // 啤
+ 0x5565: "\x1e\b\u5565", // 啥
+ 0x5566: "\x1e\b\u5566", // 啦
+ 0x5567: "\x1e\b\u5567", // 啧
+ 0x5568: "\x1e\b\u5568", // 啨
+ 0x5569: "\x1e\b\u5569", // 啩
+ 0x556a: "\x1e\b\u556a", // 啪
+ 0x556b: "\x1e\t\u556b", // 啫
+ 0x556c: "\x1e\b\u556c", // 啬
+ 0x556d: "\x1e\b\u556d", // 啭
+ 0x556e: "\x1e\b\u556e", // 啮
+ 0x556f: "\x1e\b\u556f", // 啯
+ 0x5570: "\x1e\b\u5570", // 啰
+ 0x5571: "\x1e\b\u5571", // 啱
+ 0x5572: "\x1e\b\u5572", // 啲
+ 0x5573: "\x1e\b\u5573", // 啳
+ 0x5574: "\x1e\b\u5574", // 啴
+ 0x5575: "\x1e\b\u5575", // 啵
+ 0x5576: "\x1e\b\u5576", // 啶
+ 0x5577: "\x1e\b\u5577", // 啷
+ 0x5578: "\x1e\b\u5578", // 啸
+ 0x5579: "\x1e\b\u5579", // 啹
+ 0x557a: "\x1e\t\u557a", // 啺
+ 0x557b: "\x1e\t\u557b", // 啻
+ 0x557c: "\x1e\t\u557c", // 啼
+ 0x557d: "\x1e\t\u557d", // 啽
+ 0x557e: "\x1e\t\u557e", // 啾
+ 0x557f: "\x1e\t\u557f", // 啿
+ 0x5580: "\x1e\t\u5580", // 喀
+ 0x5581: "\x1e\t\u5581", // 喁
+ 0x5582: "\x1e\t\u5582", // 喂
+ 0x5583: "\x1e\t\u5583", // 喃
+ 0x5584: "\x1e\t\u5584", // 善
+ 0x5585: "\x1e\t\u5585", // 喅
+ 0x5586: "\x1e\t\u5586", // 喆
+ 0x5587: "\x1e\t\u5587", // 喇
+ 0x5588: "\x1e\t\u5588", // 喈
+ 0x5589: "\x1e\t\u5589", // 喉
+ 0x558a: "\x1e\t\u558a", // 喊
+ 0x558b: "\x1e\t\u558b", // 喋
+ 0x558c: "\x1e\t\u558c", // 喌
+ 0x558d: "\x1e\n\u558d", // 喍
+ 0x558e: "\x1e\t\u558e", // 喎
+ 0x558f: "\x1e\t\u558f", // 喏
+ 0x5590: "\x1e\t\u5590", // 喐
+ 0x5591: "\x1e\t\u5591", // 喑
+ 0x5592: "\x1e\t\u5592", // 喒
+ 0x5593: "\x1e\t\u5593", // 喓
+ 0x5594: "\x1e\t\u5594", // 喔
+ 0x5595: "\x1e\t\u5595", // 喕
+ 0x5596: "\x1e\t\u5596", // 喖
+ 0x5597: "\x1e\t\u5597", // 喗
+ 0x5598: "\x1e\t\u5598", // 喘
+ 0x5599: "\x1e\t\u5599", // 喙
+ 0x559a: "\x1e\t\u559a", // 喚
+ 0x559b: "\x1e\t\u559b", // 喛
+ 0x559c: "\x1e\t\u559c", // 喜
+ 0x559d: "\x1e\t\u559d", // 喝
+ 0x559e: "\x1e\t\u559e", // 喞
+ 0x559f: "\x1e\t\u559f", // 喟
+ 0x55a0: "\x1e\t\u55a0", // 喠
+ 0x55a1: "\x1e\t\u55a1", // 喡
+ 0x55a2: "\x1e\t\u55a2", // 喢
+ 0x55a3: "\x1e\t\u55a3", // 喣
+ 0x55a4: "\x1e\t\u55a4", // 喤
+ 0x55a5: "\x1e\t\u55a5", // 喥
+ 0x55a6: "\x1e\t\u55a6", // 喦
+ 0x55a7: "\x1e\t\u55a7", // 喧
+ 0x55a8: "\x1e\t\u55a8", // 喨
+ 0x55a9: "\x1e\t\u55a9", // 喩
+ 0x55aa: "\x1e\t\u55aa", // 喪
+ 0x55ab: "\x1e\t\u55ab", // 喫
+ 0x55ac: "\x1e\t\u55ac", // 喬
+ 0x55ad: "\x1e\t\u55ad", // 喭
+ 0x55ae: "\x1e\t\u55ae", // 單
+ 0x55af: "\x1e\t\u55af", // 喯
+ 0x55b0: "\x1e\t\u55b0", // 喰
+ 0x55b1: "\x1e\t\u55b1", // 喱
+ 0x55b2: "\x1e\t\u55b2", // 喲
+ 0x55b3: "\x1e\t\u55b3", // 喳
+ 0x55b4: "\x1e\t\u55b4", // 喴
+ 0x55b5: "\x1e\t\u55b5", // 喵
+ 0x55b6: "\x1e\t\u55b6", // 営
+ 0x55b7: "\x1e\t\u55b7", // 喷
+ 0x55b8: "\x1e\t\u55b8", // 喸
+ 0x55b9: "\x1e\t\u55b9", // 喹
+ 0x55ba: "\x1e\t\u55ba", // 喺
+ 0x55bb: "\x1e\t\u55bb", // 喻
+ 0x55bc: "\x1e\t\u55bc", // 喼
+ 0x55bd: "\x1e\t\u55bd", // 喽
+ 0x55be: "\x1e\t\u55be", // 喾
+ 0x55bf: "\x1e\n\u55bf", // 喿
+ 0x55c0: "\x1e\n\u55c0", // 嗀
+ 0x55c1: "\x1e\n\u55c1", // 嗁
+ 0x55c2: "\x1e\n\u55c2", // 嗂
+ 0x55c3: "\x1e\n\u55c3", // 嗃
+ 0x55c4: "\x1e\n\u55c4", // 嗄
+ 0x55c5: "\x1e\n\u55c5", // 嗅
+ 0x55c6: "\x1e\n\u55c6", // 嗆
+ 0x55c7: "\x1e\n\u55c7", // 嗇
+ 0x55c8: "\x1e\n\u55c8", // 嗈
+ 0x55c9: "\x1e\n\u55c9", // 嗉
+ 0x55ca: "\x1e\n\u55ca", // 嗊
+ 0x55cb: "\x1e\n\u55cb", // 嗋
+ 0x55cc: "\x1e\n\u55cc", // 嗌
+ 0x55cd: "\x1e\n\u55cd", // 嗍
+ 0x55ce: "\x1e\n\u55ce", // 嗎
+ 0x55cf: "\x1e\n\u55cf", // 嗏
+ 0x55d0: "\x1e\n\u55d0", // 嗐
+ 0x55d1: "\x1e\n\u55d1", // 嗑
+ 0x55d2: "\x1e\n\u55d2", // 嗒
+ 0x55d3: "\x1e\n\u55d3", // 嗓
+ 0x55d4: "\x1e\n\u55d4", // 嗔
+ 0x55d5: "\x1e\n\u55d5", // 嗕
+ 0x55d6: "\x1e\n\u55d6", // 嗖
+ 0x55d7: "\x1e\n\u55d7", // 嗗
+ 0x55d8: "\x1e\n\u55d8", // 嗘
+ 0x55d9: "\x1e\n\u55d9", // 嗙
+ 0x55da: "\x1e\n\u55da", // 嗚
+ 0x55db: "\x1e\n\u55db", // 嗛
+ 0x55dc: "\x1e\n\u55dc", // 嗜
+ 0x55dd: "\x1e\n\u55dd", // 嗝
+ 0x55de: "\x1e\n\u55de", // 嗞
+ 0x55df: "\x1e\n\u55df", // 嗟
+ 0x55e0: "\x1e\n\u55e0", // 嗠
+ 0x55e1: "\x1e\n\u55e1", // 嗡
+ 0x55e2: "\x1e\n\u55e2", // 嗢
+ 0x55e3: "\x1e\n\u55e3", // 嗣
+ 0x55e4: "\x1e\n\u55e4", // 嗤
+ 0x55e5: "\x1e\n\u55e5", // 嗥
+ 0x55e6: "\x1e\n\u55e6", // 嗦
+ 0x55e7: "\x1e\n\u55e7", // 嗧
+ 0x55e8: "\x1e\n\u55e8", // 嗨
+ 0x55e9: "\x1e\n\u55e9", // 嗩
+ 0x55ea: "\x1e\n\u55ea", // 嗪
+ 0x55eb: "\x1e\n\u55eb", // 嗫
+ 0x55ec: "\x1e\n\u55ec", // 嗬
+ 0x55ed: "\x1e\n\u55ed", // 嗭
+ 0x55ee: "\x1e\n\u55ee", // 嗮
+ 0x55ef: "\x1e\n\u55ef", // 嗯
+ 0x55f0: "\x1e\n\u55f0", // 嗰
+ 0x55f1: "\x1e\n\u55f1", // 嗱
+ 0x55f2: "\x1e\n\u55f2", // 嗲
+ 0x55f3: "\x1e\n\u55f3", // 嗳
+ 0x55f4: "\x1e\n\u55f4", // 嗴
+ 0x55f5: "\x1e\n\u55f5", // 嗵
+ 0x55f6: "\x1e\v\u55f6", // 嗶
+ 0x55f7: "\x1e\v\u55f7", // 嗷
+ 0x55f8: "\x1e\v\u55f8", // 嗸
+ 0x55f9: "\x1e\v\u55f9", // 嗹
+ 0x55fa: "\x1e\v\u55fa", // 嗺
+ 0x55fb: "\x1e\v\u55fb", // 嗻
+ 0x55fc: "\x1e\v\u55fc", // 嗼
+ 0x55fd: "\x1e\v\u55fd", // 嗽
+ 0x55fe: "\x1e\v\u55fe", // 嗾
+ 0x55ff: "\x1e\v\u55ff", // 嗿
+ 0x5600: "\x1e\v\u5600", // 嘀
+ 0x5601: "\x1e\v\u5601", // 嘁
+ 0x5602: "\x1e\v\u5602", // 嘂
+ 0x5603: "\x1e\v\u5603", // 嘃
+ 0x5604: "\x1e\v\u5604", // 嘄
+ 0x5605: "\x1e\v\u5605", // 嘅
+ 0x5606: "\x1e\v\u5606", // 嘆
+ 0x5607: "\x1e\v\u5607", // 嘇
+ 0x5608: "\x1e\v\u5608", // 嘈
+ 0x5609: "\x1e\v\u5609", // 嘉
+ 0x560a: "\x1e\v\u560a", // 嘊
+ 0x560b: "\x1e\v\u560b", // 嘋
+ 0x560c: "\x1e\v\u560c", // 嘌
+ 0x560d: "\x1e\v\u560d", // 嘍
+ 0x560e: "\x1e\v\u560e", // 嘎
+ 0x560f: "\x1e\v\u560f", // 嘏
+ 0x5610: "\x1e\v\u5610", // 嘐
+ 0x5611: "\x1e\v\u5611", // 嘑
+ 0x5612: "\x1e\v\u5612", // 嘒
+ 0x5613: "\x1e\v\u5613", // 嘓
+ 0x5614: "\x1e\v\u5614", // 嘔
+ 0x5615: "\x1e\v\u5615", // 嘕
+ 0x5616: "\x1e\v\u5616", // 嘖
+ 0x5617: "\x1e\v\u5617", // 嘗
+ 0x5618: "\x1e\v\u5618", // 嘘
+ 0x5619: "\x1e\v\u5619", // 嘙
+ 0x561a: "\x1e\v\u561a", // 嘚
+ 0x561b: "\x1e\v\u561b", // 嘛
+ 0x561c: "\x1e\v\u561c", // 嘜
+ 0x561d: "\x1e\v\u561d", // 嘝
+ 0x561e: "\x1e\v\u561e", // 嘞
+ 0x561f: "\x1e\f\u561f", // 嘟
+ 0x5620: "\x1e\f\u5620", // 嘠
+ 0x5621: "\x1e\v\u5621", // 嘡
+ 0x5622: "\x1e\v\u5622", // 嘢
+ 0x5623: "\x1e\v\u5623", // 嘣
+ 0x5624: "\x1e\v\u5624", // 嘤
+ 0x5625: "\x1e\v\u5625", // 嘥
+ 0x5626: "\x1e\v\u5626", // 嘦
+ 0x5627: "\x1e\v\u5627", // 嘧
+ 0x5628: "\x1e\f\u5628", // 嘨
+ 0x5629: "\x1e\f\u5629", // 嘩
+ 0x562a: "\x1e\f\u562a", // 嘪
+ 0x562b: "\x1e\f\u562b", // 嘫
+ 0x562c: "\x1e\f\u562c", // 嘬
+ 0x562d: "\x1e\f\u562d", // 嘭
+ 0x562e: "\x1e\f\u562e", // 嘮
+ 0x562f: "\x1e\f\u562f", // 嘯
+ 0x5630: "\x1e\f\u5630", // 嘰
+ 0x5631: "\x1e\f\u5631", // 嘱
+ 0x5632: "\x1e\f\u5632", // 嘲
+ 0x5633: "\x1e\f\u5633", // 嘳
+ 0x5634: "\x1e\f\u5634", // 嘴
+ 0x5635: "\x1e\f\u5635", // 嘵
+ 0x5636: "\x1e\f\u5636", // 嘶
+ 0x5637: "\x1e\f\u5637", // 嘷
+ 0x5638: "\x1e\f\u5638", // 嘸
+ 0x5639: "\x1e\f\u5639", // 嘹
+ 0x563a: "\x1e\f\u563a", // 嘺
+ 0x563b: "\x1e\f\u563b", // 嘻
+ 0x563c: "\x1e\f\u563c", // 嘼
+ 0x563d: "\x1e\f\u563d", // 嘽
+ 0x563e: "\x1e\f\u563e", // 嘾
+ 0x563f: "\x1e\f\u563f", // 嘿
+ 0x5640: "\x1e\f\u5640", // 噀
+ 0x5641: "\x1e\f\u5641", // 噁
+ 0x5642: "\x1e\f\u5642", // 噂
+ 0x5643: "\x1e\f\u5643", // 噃
+ 0x5644: "\x1e\f\u5644", // 噄
+ 0x5645: "\x1e\t\u5645", // 噅
+ 0x5646: "\x1e\f\u5646", // 噆
+ 0x5647: "\x1e\f\u5647", // 噇
+ 0x5648: "\x1e\f\u5648", // 噈
+ 0x5649: "\x1e\f\u5649", // 噉
+ 0x564a: "\x1e\f\u564a", // 噊
+ 0x564b: "\x1e\f\u564b", // 噋
+ 0x564c: "\x1e\f\u564c", // 噌
+ 0x564d: "\x1e\f\u564d", // 噍
+ 0x564e: "\x1e\f\u564e", // 噎
+ 0x564f: "\x1e\f\u564f", // 噏
+ 0x5650: "\x1e\f\u5650", // 噐
+ 0x5651: "\x1e\v\u5651", // 噑
+ 0x5652: "\x1e\f\u5652", // 噒
+ 0x5653: "\x1e\v\u5653", // 噓
+ 0x5654: "\x1e\f\u5654", // 噔
+ 0x5655: "W\v\u5655", // 噕
+ 0x5656: "\x1e\f\u5656", // 噖
+ 0x5657: "\x1e\f\u5657", // 噗
+ 0x5658: "\x1e\f\u5658", // 噘
+ 0x5659: "\x1e\f\u5659", // 噙
+ 0x565a: "\x1e\f\u565a", // 噚
+ 0x565b: "\x1e\f\u565b", // 噛
+ 0x565c: "\x1e\f\u565c", // 噜
+ 0x565d: "\x1e\f\u565d", // 噝
+ 0x565e: "\x1e\r\u565e", // 噞
+ 0x565f: "\x1e\r\u565f", // 噟
+ 0x5660: "\x1e\r\u5660", // 噠
+ 0x5661: "\x1e\r\u5661", // 噡
+ 0x5662: "\x1e\r\u5662", // 噢
+ 0x5663: "\x1e\r\u5663", // 噣
+ 0x5664: "\x1e\r\u5664", // 噤
+ 0x5665: "\x1e\r\u5665", // 噥
+ 0x5666: "\x1e\r\u5666", // 噦
+ 0x5667: "\x1e\r\u5667", // 噧
+ 0x5668: "\x1e\r\u5668", // 器
+ 0x5669: "\x1e\r\u5669", // 噩
+ 0x566a: "\x1e\r\u566a", // 噪
+ 0x566b: "\x1e\r\u566b", // 噫
+ 0x566c: "\x1e\r\u566c", // 噬
+ 0x566d: "\x1e\r\u566d", // 噭
+ 0x566e: "\x1e\r\u566e", // 噮
+ 0x566f: "\x1e\r\u566f", // 噯
+ 0x5670: "\x1e\r\u5670", // 噰
+ 0x5671: "\x1e\r\u5671", // 噱
+ 0x5672: "\x1e\r\u5672", // 噲
+ 0x5673: "\x1e\r\u5673", // 噳
+ 0x5674: "\x1e\f\u5674", // 噴
+ 0x5675: "\x1e\r\u5675", // 噵
+ 0x5676: "\x1e\r\u5676", // 噶
+ 0x5677: "\x1e\r\u5677", // 噷
+ 0x5678: "\x1e\r\u5678", // 噸
+ 0x5679: "\x1e\r\u5679", // 噹
+ 0x567a: "\x1e\r\u567a", // 噺
+ 0x567b: "\x1e\r\u567b", // 噻
+ 0x567c: "\x1e\r\u567c", // 噼
+ 0x567d: "\x1e\x0e\u567d", // 噽
+ 0x567e: "\x1e\x0e\u567e", // 噾
+ 0x567f: "\x1e\x0e\u567f", // 噿
+ 0x5680: "\x1e\x0e\u5680", // 嚀
+ 0x5681: "\x1e\x0e\u5681", // 嚁
+ 0x5682: "\x1e\x0e\u5682", // 嚂
+ 0x5683: "\x1e\x0e\u5683", // 嚃
+ 0x5684: "\x1e\x0e\u5684", // 嚄
+ 0x5685: "\x1e\x0e\u5685", // 嚅
+ 0x5686: "\x1e\x0e\u5686", // 嚆
+ 0x5687: "\x1e\x0e\u5687", // 嚇
+ 0x5688: "\x1e\x0e\u5688", // 嚈
+ 0x5689: "\x1e\x0e\u5689", // 嚉
+ 0x568a: "\x1e\x0e\u568a", // 嚊
+ 0x568b: "\x1e\x0e\u568b", // 嚋
+ 0x568c: "\x1e\x0e\u568c", // 嚌
+ 0x568d: "\x1e\x0e\u568d", // 嚍
+ 0x568e: "\x1e\x0e\u568e", // 嚎
+ 0x568f: "\x1e\x0e\u568f", // 嚏
+ 0x5690: "\x1e\x0e\u5690", // 嚐
+ 0x5691: "\x1e\x0e\u5691", // 嚑
+ 0x5692: "\x1e\x0e\u5692", // 嚒
+ 0x5693: "\x1e\x0e\u5693", // 嚓
+ 0x5694: "\x1e\x0f\u5694", // 嚔
+ 0x5695: "\x1e\x0f\u5695", // 嚕
+ 0x5696: "\x1e\x0f\u5696", // 嚖
+ 0x5697: "\x1e\x0f\u5697", // 嚗
+ 0x5698: "\x1e\x0f\u5698", // 嚘
+ 0x5699: "\x1e\x0f\u5699", // 嚙
+ 0x569a: "\x1e\x0f\u569a", // 嚚
+ 0x569b: "\x1e\x0f\u569b", // 嚛
+ 0x569c: "\x1e\x0f\u569c", // 嚜
+ 0x569d: "\x1e\x0f\u569d", // 嚝
+ 0x569e: "\x1e\x0f\u569e", // 嚞
+ 0x569f: "\x1e\x0f\u569f", // 嚟
+ 0x56a0: "\x1e\x0f\u56a0", // 嚠
+ 0x56a1: "\x1e\x0f\u56a1", // 嚡
+ 0x56a2: "\x1e\x0f\u56a2", // 嚢
+ 0x56a3: "\x1e\x0f\u56a3", // 嚣
+ 0x56a4: "\x1e\x0f\u56a4", // 嚤
+ 0x56a5: "\x1e\x10\u56a5", // 嚥
+ 0x56a6: "\x1e\x10\u56a6", // 嚦
+ 0x56a7: "\x1e\x10\u56a7", // 嚧
+ 0x56a8: "\x1e\x10\u56a8", // 嚨
+ 0x56a9: "\x1e\x10\u56a9", // 嚩
+ 0x56aa: "\x1e\x10\u56aa", // 嚪
+ 0x56ab: "\x1e\x10\u56ab", // 嚫
+ 0x56ac: "\x1e\x10\u56ac", // 嚬
+ 0x56ad: "\x1e\x10\u56ad", // 嚭
+ 0x56ae: "\x1e\x10\u56ae", // 嚮
+ 0x56af: "\x1e\x10\u56af", // 嚯
+ 0x56b0: "\x1e\x10\u56b0", // 嚰
+ 0x56b1: "\x1e\x11\u56b1", // 嚱
+ 0x56b2: "\x1e\x11\u56b2", // 嚲
+ 0x56b3: "\x1e\x11\u56b3", // 嚳
+ 0x56b4: "\x1e\x11\u56b4", // 嚴
+ 0x56b5: "\x1e\x11\u56b5", // 嚵
+ 0x56b6: "\x1e\x11\u56b6", // 嚶
+ 0x56b7: "\x1e\x11\u56b7", // 嚷
+ 0x56b8: "\x1e\x11\u56b8", // 嚸
+ 0x56b9: "\x1e\x11\u56b9", // 嚹
+ 0x56ba: "\x1e\x0e\u56ba", // 嚺
+ 0x56bb: "\x1e\x12\u56bb", // 嚻
+ 0x56bc: "\x1e\x12\u56bc", // 嚼
+ 0x56bd: "\x1e\x12\u56bd", // 嚽
+ 0x56be: "\x1e\x12\u56be", // 嚾
+ 0x56bf: "\x1e\x12\u56bf", // 嚿
+ 0x56c0: "\x1e\x12\u56c0", // 囀
+ 0x56c1: "\x1e\x12\u56c1", // 囁
+ 0x56c2: "\x1e\x12\u56c2", // 囂
+ 0x56c3: "\x1e\x12\u56c3", // 囃
+ 0x56c4: "\x1e\x12\u56c4", // 囄
+ 0x56c5: "\x1e\x13\u56c5", // 囅
+ 0x56c6: "\x1e\x13\u56c6", // 囆
+ 0x56c7: "\x1e\x13\u56c7", // 囇
+ 0x56c8: "\x1e\x13\u56c8", // 囈
+ 0x56c9: "\x1e\x13\u56c9", // 囉
+ 0x56ca: "\x1e\x13\u56ca", // 囊
+ 0x56cb: "\x1e\x13\u56cb", // 囋
+ 0x56cc: "\x1e\x14\u56cc", // 囌
+ 0x56cd: "\x1e\x12\u56cd", // 囍
+ 0x56ce: "\x1e\x13\u56ce", // 囎
+ 0x56cf: "\x1e\x14\u56cf", // 囏
+ 0x56d0: "\x1e\x14\u56d0", // 囐
+ 0x56d1: "\x1e\x15\u56d1", // 囑
+ 0x56d2: "\x1e\x15\u56d2", // 囒
+ 0x56d3: "\x1e\x15\u56d3", // 囓
+ 0x56d4: "\x1e\x16\u56d4", // 囔
+ 0x56d5: "\x1e\x16\u56d5", // 囕
+ 0x56d6: "\x1e\x19\u56d6", // 囖
+ 0x56d7: "\x1f\x00\u56d7", // 囗
+ 0x56d8: "\x1f\x02\u56d8", // 囘
+ 0x56d9: "\x1f\x02\u56d9", // 囙
+ 0x56da: "\x1f\x02\u56da", // 囚
+ 0x56db: "\x1f\x02\u56db", // 四
+ 0x56dc: "\x1f\x02\u56dc", // 囜
+ 0x56dd: "\x1f\x03\u56dd", // 囝
+ 0x56de: "\x1f\x03\u56de", // 回
+ 0x56df: "\x1f\x03\u56df", // 囟
+ 0x56e0: "\x1f\x03\u56e0", // 因
+ 0x56e1: "\x1f\x03\u56e1", // 囡
+ 0x56e2: "\x1f\x03\u56e2", // 团
+ 0x56e3: "\x1f\x03\u56e3", // 団
+ 0x56e4: "\x1f\x04\u56e4", // 囤
+ 0x56e5: "\x1f\x04\u56e5", // 囥
+ 0x56e6: "\x1f\x04\u56e6", // 囦
+ 0x56e7: "\x1f\x04\u56e7", // 囧
+ 0x56e8: "\x1f\x04\u56e8", // 囨
+ 0x56e9: "\x1f\x04\u56e9", // 囩
+ 0x56ea: "\x1f\x04\u56ea", // 囪
+ 0x56eb: "\x1f\x04\u56eb", // 囫
+ 0x56ec: "\x1f\x04\u56ec", // 囬
+ 0x56ed: "\x1f\x04\u56ed", // 园
+ 0x56ee: "\x1f\x04\u56ee", // 囮
+ 0x56ef: "\x1f\x04\u56ef", // 囯
+ 0x56f0: "\x1f\x04\u56f0", // 困
+ 0x56f1: "\x1f\x04\u56f1", // 囱
+ 0x56f2: "\x1f\x04\u56f2", // 囲
+ 0x56f3: "\x1f\x04\u56f3", // 図
+ 0x56f4: "\x1f\x04\u56f4", // 围
+ 0x56f5: "\x1f\x04\u56f5", // 囵
+ 0x56f6: "\x1f\x05\u56f6", // 囶
+ 0x56f7: "\x1f\x05\u56f7", // 囷
+ 0x56f8: "\x1f\x05\u56f8", // 囸
+ 0x56f9: "\x1f\x05\u56f9", // 囹
+ 0x56fa: "\x1f\x05\u56fa", // 固
+ 0x56fb: "\x1f\x05\u56fb", // 囻
+ 0x56fc: "\x1f\x05\u56fc", // 囼
+ 0x56fd: "\x1f\x05\u56fd", // 国
+ 0x56fe: "\x1f\x05\u56fe", // 图
+ 0x56ff: "\x1f\x06\u56ff", // 囿
+ 0x5700: "\x1f\x06\u5700", // 圀
+ 0x5701: "\x1f\a\u5701", // 圁
+ 0x5702: "\x1f\a\u5702", // 圂
+ 0x5703: "\x1f\a\u5703", // 圃
+ 0x5704: "\x1f\a\u5704", // 圄
+ 0x5705: "\x1f\a\u5705", // 圅
+ 0x5706: "\x1f\a\u5706", // 圆
+ 0x5707: "\x1f\b\u5707", // 圇
+ 0x5708: "\x1f\b\u5708", // 圈
+ 0x5709: "\x1f\b\u5709", // 圉
+ 0x570a: "\x1f\b\u570a", // 圊
+ 0x570b: "\x1f\b\u570b", // 國
+ 0x570c: "\x1f\t\u570c", // 圌
+ 0x570d: "\x1f\t\u570d", // 圍
+ 0x570e: "\x1f\t\u570e", // 圎
+ 0x570f: "\x1f\b\u570f", // 圏
+ 0x5710: "\x1f\t\u5710", // 圐
+ 0x5711: "\x1f\n\u5711", // 圑
+ 0x5712: "\x1f\n\u5712", // 園
+ 0x5713: "\x1f\n\u5713", // 圓
+ 0x5714: "\x1f\n\u5714", // 圔
+ 0x5715: "\x1f\n\u5715", // 圕
+ 0x5716: "\x1f\v\u5716", // 圖
+ 0x5717: "\x1f\v\u5717", // 圗
+ 0x5718: "\x1f\v\u5718", // 團
+ 0x5719: "\x1f\v\u5719", // 圙
+ 0x571a: "\x1f\f\u571a", // 圚
+ 0x571b: "\x1f\r\u571b", // 圛
+ 0x571c: "\x1f\r\u571c", // 圜
+ 0x571d: "\x1f\x13\u571d", // 圝
+ 0x571e: "\x1f\x17\u571e", // 圞
+ 0x571f: " \x00\u571f", // 土
+ 0x5720: " \x01\u5720", // 圠
+ 0x5721: " \x01\u5721", // 圡
+ 0x5722: " \x02\u5722", // 圢
+ 0x5723: " \x02\u5723", // 圣
+ 0x5724: " \x02\u5724", // 圤
+ 0x5725: " \x02\u5725", // 圥
+ 0x5726: " \x02\u5726", // 圦
+ 0x5727: " \x02\u5727", // 圧
+ 0x5728: " \x03\u5728", // 在
+ 0x5729: " \x03\u5729", // 圩
+ 0x572a: " \x03\u572a", // 圪
+ 0x572b: " \x03\u572b", // 圫
+ 0x572c: " \x03\u572c", // 圬
+ 0x572d: " \x03\u572d", // 圭
+ 0x572e: " \x03\u572e", // 圮
+ 0x572f: " \x03\u572f", // 圯
+ 0x5730: " \x03\u5730", // 地
+ 0x5731: " \x03\u5731", // 圱
+ 0x5732: " \x03\u5732", // 圲
+ 0x5733: " \x03\u5733", // 圳
+ 0x5734: " \x03\u5734", // 圴
+ 0x5735: " \x03\u5735", // 圵
+ 0x5736: " \x03\u5736", // 圶
+ 0x5737: " \x03\u5737", // 圷
+ 0x5738: " \x03\u5738", // 圸
+ 0x5739: " \x03\u5739", // 圹
+ 0x573a: " \x03\u573a", // 场
+ 0x573b: " \x04\u573b", // 圻
+ 0x573c: " \x04\u573c", // 圼
+ 0x573d: " \x04\u573d", // 圽
+ 0x573e: " \x04\u573e", // 圾
+ 0x573f: " \x04\u573f", // 圿
+ 0x5740: " \x04\u5740", // 址
+ 0x5741: " \x04\u5741", // 坁
+ 0x5742: " \x04\u5742", // 坂
+ 0x5743: " \x04\u5743", // 坃
+ 0x5744: " \x04\u5744", // 坄
+ 0x5745: " \x04\u5745", // 坅
+ 0x5746: " \x04\u5746", // 坆
+ 0x5747: " \x04\u5747", // 均
+ 0x5748: " \x04\u5748", // 坈
+ 0x5749: " \x04\u5749", // 坉
+ 0x574a: " \x04\u574a", // 坊
+ 0x574b: " \x04\u574b", // 坋
+ 0x574c: " \x04\u574c", // 坌
+ 0x574d: " \x04\u574d", // 坍
+ 0x574e: " \x04\u574e", // 坎
+ 0x574f: " \x04\u574f", // 坏
+ 0x5750: " \x04\u5750", // 坐
+ 0x5751: " \x04\u5751", // 坑
+ 0x5752: " \x04\u5752", // 坒
+ 0x5753: " \x04\u5753", // 坓
+ 0x5754: " \x04\u5754", // 坔
+ 0x5755: " \x04\u5755", // 坕
+ 0x5756: " \x04\u5756", // 坖
+ 0x5757: " \x04\u5757", // 块
+ 0x5758: " \x04\u5758", // 坘
+ 0x5759: " \x04\u5759", // 坙
+ 0x575a: " \x04\u575a", // 坚
+ 0x575b: " \x04\u575b", // 坛
+ 0x575c: " \x04\u575c", // 坜
+ 0x575d: " \x04\u575d", // 坝
+ 0x575e: " \x04\u575e", // 坞
+ 0x575f: " \x04\u575f", // 坟
+ 0x5760: " \x04\u5760", // 坠
+ 0x5761: " \x05\u5761", // 坡
+ 0x5762: " \x05\u5762", // 坢
+ 0x5763: " \x05\u5763", // 坣
+ 0x5764: " \x05\u5764", // 坤
+ 0x5765: " \x05\u5765", // 坥
+ 0x5766: " \x05\u5766", // 坦
+ 0x5767: " \x05\u5767", // 坧
+ 0x5768: " \x05\u5768", // 坨
+ 0x5769: " \x05\u5769", // 坩
+ 0x576a: " \x05\u576a", // 坪
+ 0x576b: " \x05\u576b", // 坫
+ 0x576c: " \x05\u576c", // 坬
+ 0x576d: " \x05\u576d", // 坭
+ 0x576e: " \x05\u576e", // 坮
+ 0x576f: " \x05\u576f", // 坯
+ 0x5770: " \x05\u5770", // 坰
+ 0x5771: " \x05\u5771", // 坱
+ 0x5772: " \x05\u5772", // 坲
+ 0x5773: " \x05\u5773", // 坳
+ 0x5774: " \x05\u5774", // 坴
+ 0x5775: " \x05\u5775", // 坵
+ 0x5776: " \x05\u5776", // 坶
+ 0x5777: " \x05\u5777", // 坷
+ 0x5778: " \x05\u5778", // 坸
+ 0x5779: " \x05\u5779", // 坹
+ 0x577a: " \x05\u577a", // 坺
+ 0x577b: " \x05\u577b", // 坻
+ 0x577c: " \x05\u577c", // 坼
+ 0x577d: " \x05\u577d", // 坽
+ 0x577e: " \x05\u577e", // 坾
+ 0x577f: " \x05\u577f", // 坿
+ 0x5780: " \x05\u5780", // 垀
+ 0x5781: " \x05\u5781", // 垁
+ 0x5782: " \x05\u5782", // 垂
+ 0x5783: " \x05\u5783", // 垃
+ 0x5784: " \x05\u5784", // 垄
+ 0x5785: " \x05\u5785", // 垅
+ 0x5786: " \x05\u5786", // 垆
+ 0x5787: " \x05\u5787", // 垇
+ 0x5788: " \x05\u5788", // 垈
+ 0x5789: " \x05\u5789", // 垉
+ 0x578a: " \x05\u578a", // 垊
+ 0x578b: " \x06\u578b", // 型
+ 0x578c: " \x06\u578c", // 垌
+ 0x578d: " \x06\u578d", // 垍
+ 0x578e: " \x06\u578e", // 垎
+ 0x578f: " \x06\u578f", // 垏
+ 0x5790: " \x06\u5790", // 垐
+ 0x5791: " \x06\u5791", // 垑
+ 0x5792: " \x06\u5792", // 垒
+ 0x5793: " \x06\u5793", // 垓
+ 0x5794: " \x06\u5794", // 垔
+ 0x5795: " \x06\u5795", // 垕
+ 0x5796: " \x06\u5796", // 垖
+ 0x5797: " \x06\u5797", // 垗
+ 0x5798: " \x06\u5798", // 垘
+ 0x5799: " \x06\u5799", // 垙
+ 0x579a: " \x06\u579a", // 垚
+ 0x579b: " \x06\u579b", // 垛
+ 0x579c: " \x06\u579c", // 垜
+ 0x579d: " \x06\u579d", // 垝
+ 0x579e: " \x06\u579e", // 垞
+ 0x579f: " \x06\u579f", // 垟
+ 0x57a0: " \x06\u57a0", // 垠
+ 0x57a1: " \x06\u57a1", // 垡
+ 0x57a2: " \x06\u57a2", // 垢
+ 0x57a3: " \x06\u57a3", // 垣
+ 0x57a4: " \x06\u57a4", // 垤
+ 0x57a5: " \x06\u57a5", // 垥
+ 0x57a6: " \x06\u57a6", // 垦
+ 0x57a7: " \x06\u57a7", // 垧
+ 0x57a8: " \x06\u57a8", // 垨
+ 0x57a9: " \x06\u57a9", // 垩
+ 0x57aa: " \x06\u57aa", // 垪
+ 0x57ab: " \x06\u57ab", // 垫
+ 0x57ac: " \x06\u57ac", // 垬
+ 0x57ad: " \x06\u57ad", // 垭
+ 0x57ae: " \x06\u57ae", // 垮
+ 0x57af: " \x06\u57af", // 垯
+ 0x57b0: " \x06\u57b0", // 垰
+ 0x57b1: " \x06\u57b1", // 垱
+ 0x57b2: " \x06\u57b2", // 垲
+ 0x57b3: " \x06\u57b3", // 垳
+ 0x57b4: " \x06\u57b4", // 垴
+ 0x57b5: " \x06\u57b5", // 垵
+ 0x57b6: " \a\u57b6", // 垶
+ 0x57b7: " \a\u57b7", // 垷
+ 0x57b8: " \a\u57b8", // 垸
+ 0x57b9: " \a\u57b9", // 垹
+ 0x57ba: " \a\u57ba", // 垺
+ 0x57bb: " \a\u57bb", // 垻
+ 0x57bc: " \a\u57bc", // 垼
+ 0x57bd: " \a\u57bd", // 垽
+ 0x57be: " \a\u57be", // 垾
+ 0x57bf: " \a\u57bf", // 垿
+ 0x57c0: " \a\u57c0", // 埀
+ 0x57c1: " \a\u57c1", // 埁
+ 0x57c2: " \a\u57c2", // 埂
+ 0x57c3: " \a\u57c3", // 埃
+ 0x57c4: " \a\u57c4", // 埄
+ 0x57c5: " \a\u57c5", // 埅
+ 0x57c6: " \a\u57c6", // 埆
+ 0x57c7: " \a\u57c7", // 埇
+ 0x57c8: " \a\u57c8", // 埈
+ 0x57c9: " \a\u57c9", // 埉
+ 0x57ca: " \a\u57ca", // 埊
+ 0x57cb: " \a\u57cb", // 埋
+ 0x57cc: " \a\u57cc", // 埌
+ 0x57cd: " \a\u57cd", // 埍
+ 0x57ce: " \x06\u57ce", // 城
+ 0x57cf: " \a\u57cf", // 埏
+ 0x57d0: " \a\u57d0", // 埐
+ 0x57d1: " \a\u57d1", // 埑
+ 0x57d2: " \a\u57d2", // 埒
+ 0x57d3: " \a\u57d3", // 埓
+ 0x57d4: " \a\u57d4", // 埔
+ 0x57d5: " \a\u57d5", // 埕
+ 0x57d6: " \a\u57d6", // 埖
+ 0x57d7: " \a\u57d7", // 埗
+ 0x57d8: " \a\u57d8", // 埘
+ 0x57d9: " \a\u57d9", // 埙
+ 0x57da: " \a\u57da", // 埚
+ 0x57db: " \a\u57db", // 埛
+ 0x57dc: " \b\u57dc", // 埜
+ 0x57dd: " \b\u57dd", // 埝
+ 0x57de: " \b\u57de", // 埞
+ 0x57df: " \b\u57df", // 域
+ 0x57e0: " \b\u57e0", // 埠
+ 0x57e1: " \b\u57e1", // 埡
+ 0x57e2: " \b\u57e2", // 埢
+ 0x57e3: " \b\u57e3", // 埣
+ 0x57e4: " \b\u57e4", // 埤
+ 0x57e5: " \b\u57e5", // 埥
+ 0x57e6: " \b\u57e6", // 埦
+ 0x57e7: " \b\u57e7", // 埧
+ 0x57e8: " \b\u57e8", // 埨
+ 0x57e9: " \b\u57e9", // 埩
+ 0x57ea: " \t\u57ea", // 埪
+ 0x57eb: " \b\u57eb", // 埫
+ 0x57ec: " \b\u57ec", // 埬
+ 0x57ed: " \b\u57ed", // 埭
+ 0x57ee: " \b\u57ee", // 埮
+ 0x57ef: " \b\u57ef", // 埯
+ 0x57f0: " \b\u57f0", // 埰
+ 0x57f1: " \b\u57f1", // 埱
+ 0x57f2: " \b\u57f2", // 埲
+ 0x57f3: " \b\u57f3", // 埳
+ 0x57f4: " \b\u57f4", // 埴
+ 0x57f5: " \b\u57f5", // 埵
+ 0x57f6: " \b\u57f6", // 埶
+ 0x57f7: " \b\u57f7", // 執
+ 0x57f8: " \b\u57f8", // 埸
+ 0x57f9: " \b\u57f9", // 培
+ 0x57fa: " \b\u57fa", // 基
+ 0x57fb: " \b\u57fb", // 埻
+ 0x57fc: " \b\u57fc", // 埼
+ 0x57fd: " \b\u57fd", // 埽
+ 0x57fe: " \b\u57fe", // 埾
+ 0x57ff: " \b\u57ff", // 埿
+ 0x5800: " \b\u5800", // 堀
+ 0x5801: " \b\u5801", // 堁
+ 0x5802: " \b\u5802", // 堂
+ 0x5803: " \b\u5803", // 堃
+ 0x5804: " \b\u5804", // 堄
+ 0x5805: " \b\u5805", // 堅
+ 0x5806: " \b\u5806", // 堆
+ 0x5807: " \b\u5807", // 堇
+ 0x5808: " \b\u5808", // 堈
+ 0x5809: " \b\u5809", // 堉
+ 0x580a: " \b\u580a", // 堊
+ 0x580b: " \b\u580b", // 堋
+ 0x580c: " \b\u580c", // 堌
+ 0x580d: " \b\u580d", // 堍
+ 0x580e: " \b\u580e", // 堎
+ 0x580f: " \b\u580f", // 堏
+ 0x5810: " \b\u5810", // 堐
+ 0x5811: " \b\u5811", // 堑
+ 0x5812: " \b\u5812", // 堒
+ 0x5813: " \b\u5813", // 堓
+ 0x5814: " \b\u5814", // 堔
+ 0x5815: " \b\u5815", // 堕
+ 0x5816: " \t\u5816", // 堖
+ 0x5817: " \t\u5817", // 堗
+ 0x5818: " \t\u5818", // 堘
+ 0x5819: " \t\u5819", // 堙
+ 0x581a: " \t\u581a", // 堚
+ 0x581b: " \t\u581b", // 堛
+ 0x581c: " \t\u581c", // 堜
+ 0x581d: " \t\u581d", // 堝
+ 0x581e: " \t\u581e", // 堞
+ 0x581f: " \t\u581f", // 堟
+ 0x5820: " \t\u5820", // 堠
+ 0x5821: " \t\u5821", // 堡
+ 0x5822: " \t\u5822", // 堢
+ 0x5823: " \t\u5823", // 堣
+ 0x5824: " \t\u5824", // 堤
+ 0x5825: " \t\u5825", // 堥
+ 0x5826: " \t\u5826", // 堦
+ 0x5827: " \t\u5827", // 堧
+ 0x5828: " \t\u5828", // 堨
+ 0x5829: " \t\u5829", // 堩
+ 0x582a: " \t\u582a", // 堪
+ 0x582b: " \t\u582b", // 堫
+ 0x582c: " \t\u582c", // 堬
+ 0x582d: " \t\u582d", // 堭
+ 0x582e: " \t\u582e", // 堮
+ 0x582f: " \t\u582f", // 堯
+ 0x5830: " \t\u5830", // 堰
+ 0x5831: " \t\u5831", // 報
+ 0x5832: " \t\u5832", // 堲
+ 0x5833: " \t\u5833", // 堳
+ 0x5834: " \t\u5834", // 場
+ 0x5835: " \t\u5835", // 堵
+ 0x5836: " \t\u5836", // 堶
+ 0x5837: " \t\u5837", // 堷
+ 0x5838: " \t\u5838", // 堸
+ 0x5839: " \t\u5839", // 堹
+ 0x583a: " \t\u583a", // 堺
+ 0x583b: " \t\u583b", // 堻
+ 0x583c: " \t\u583c", // 堼
+ 0x583d: " \n\u583d", // 堽
+ 0x583e: " \t\u583e", // 堾
+ 0x583f: " \t\u583f", // 堿
+ 0x5840: " \t\u5840", // 塀
+ 0x5841: " \t\u5841", // 塁
+ 0x5842: " \t\u5842", // 塂
+ 0x5843: " \n\u5843", // 塃
+ 0x5844: " \t\u5844", // 塄
+ 0x5845: " \t\u5845", // 塅
+ 0x5846: " \t\u5846", // 塆
+ 0x5847: " \t\u5847", // 塇
+ 0x5848: " \t\u5848", // 塈
+ 0x5849: " \n\u5849", // 塉
+ 0x584a: " \n\u584a", // 塊
+ 0x584b: " \n\u584b", // 塋
+ 0x584c: " \n\u584c", // 塌
+ 0x584d: " \n\u584d", // 塍
+ 0x584e: " \n\u584e", // 塎
+ 0x584f: " \n\u584f", // 塏
+ 0x5850: " \n\u5850", // 塐
+ 0x5851: " \n\u5851", // 塑
+ 0x5852: " \n\u5852", // 塒
+ 0x5853: " \n\u5853", // 塓
+ 0x5854: " \n\u5854", // 塔
+ 0x5855: " \n\u5855", // 塕
+ 0x5856: " \n\u5856", // 塖
+ 0x5857: " \n\u5857", // 塗
+ 0x5858: " \n\u5858", // 塘
+ 0x5859: " \n\u5859", // 塙
+ 0x585a: " \n\u585a", // 塚
+ 0x585b: " \n\u585b", // 塛
+ 0x585c: " \n\u585c", // 塜
+ 0x585d: " \n\u585d", // 塝
+ 0x585e: " \n\u585e", // 塞
+ 0x585f: " \n\u585f", // 塟
+ 0x5860: " \n\u5860", // 塠
+ 0x5861: " \n\u5861", // 塡
+ 0x5862: " \n\u5862", // 塢
+ 0x5863: " \n\u5863", // 塣
+ 0x5864: " \n\u5864", // 塤
+ 0x5865: " \n\u5865", // 塥
+ 0x5866: " \n\u5866", // 塦
+ 0x5867: " \n\u5867", // 塧
+ 0x5868: " \n\u5868", // 塨
+ 0x5869: " \n\u5869", // 塩
+ 0x586a: " \n\u586a", // 塪
+ 0x586b: " \n\u586b", // 填
+ 0x586c: " \n\u586c", // 塬
+ 0x586d: " \n\u586d", // 塭
+ 0x586e: " \n\u586e", // 塮
+ 0x586f: " \n\u586f", // 塯
+ 0x5870: " \n\u5870", // 塰
+ 0x5871: " \n\u5871", // 塱
+ 0x5872: " \v\u5872", // 塲
+ 0x5873: " \v\u5873", // 塳
+ 0x5874: " \v\u5874", // 塴
+ 0x5875: " \v\u5875", // 塵
+ 0x5876: " \v\u5876", // 塶
+ 0x5877: " \v\u5877", // 塷
+ 0x5878: " \v\u5878", // 塸
+ 0x5879: " \v\u5879", // 塹
+ 0x587a: " \v\u587a", // 塺
+ 0x587b: " \v\u587b", // 塻
+ 0x587c: " \v\u587c", // 塼
+ 0x587d: " \v\u587d", // 塽
+ 0x587e: " \v\u587e", // 塾
+ 0x587f: " \v\u587f", // 塿
+ 0x5880: " \v\u5880", // 墀
+ 0x5881: " \v\u5881", // 墁
+ 0x5882: " \v\u5882", // 墂
+ 0x5883: " \v\u5883", // 境
+ 0x5884: " \v\u5884", // 墄
+ 0x5885: " \v\u5885", // 墅
+ 0x5886: " \v\u5886", // 墆
+ 0x5887: " \v\u5887", // 墇
+ 0x5888: " \v\u5888", // 墈
+ 0x5889: " \v\u5889", // 墉
+ 0x588a: " \v\u588a", // 墊
+ 0x588b: " \v\u588b", // 墋
+ 0x588c: " \v\u588c", // 墌
+ 0x588d: " \v\u588d", // 墍
+ 0x588e: " \v\u588e", // 墎
+ 0x588f: " \v\u588f", // 墏
+ 0x5890: " \v\u5890", // 墐
+ 0x5891: " \v\u5891", // 墑
+ 0x5892: " \v\u5892", // 墒
+ 0x5893: " \v\u5893", // 墓
+ 0x5894: " \v\u5894", // 墔
+ 0x5895: " \v\u5895", // 墕
+ 0x5896: " \v\u5896", // 墖
+ 0x5897: " \v\u5897", // 増
+ 0x5898: " \v\u5898", // 墘
+ 0x5899: " \v\u5899", // 墙
+ 0x589a: " \v\u589a", // 墚
+ 0x589b: " \v\u589b", // 墛
+ 0x589c: " \f\u589c", // 墜
+ 0x589d: " \f\u589d", // 墝
+ 0x589e: " \f\u589e", // 增
+ 0x589f: " \f\u589f", // 墟
+ 0x58a0: " \f\u58a0", // 墠
+ 0x58a1: " \f\u58a1", // 墡
+ 0x58a2: " \f\u58a2", // 墢
+ 0x58a3: " \f\u58a3", // 墣
+ 0x58a4: " \f\u58a4", // 墤
+ 0x58a5: " \f\u58a5", // 墥
+ 0x58a6: " \f\u58a6", // 墦
+ 0x58a7: " \f\u58a7", // 墧
+ 0x58a8: "\xcb\x03\u58a8", // 墨
+ 0x58a9: " \f\u58a9", // 墩
+ 0x58aa: " \f\u58aa", // 墪
+ 0x58ab: " \f\u58ab", // 墫
+ 0x58ac: " \f\u58ac", // 墬
+ 0x58ad: " \f\u58ad", // 墭
+ 0x58ae: " \f\u58ae", // 墮
+ 0x58af: " \f\u58af", // 墯
+ 0x58b0: " \f\u58b0", // 墰
+ 0x58b1: " \f\u58b1", // 墱
+ 0x58b2: " \f\u58b2", // 墲
+ 0x58b3: " \f\u58b3", // 墳
+ 0x58b4: " \f\u58b4", // 墴
+ 0x58b5: " \f\u58b5", // 墵
+ 0x58b6: " \f\u58b6", // 墶
+ 0x58b7: " \f\u58b7", // 墷
+ 0x58b8: " \f\u58b8", // 墸
+ 0x58b9: " \f\u58b9", // 墹
+ 0x58ba: " \r\u58ba", // 墺
+ 0x58bb: " \r\u58bb", // 墻
+ 0x58bc: " \r\u58bc", // 墼
+ 0x58bd: " \r\u58bd", // 墽
+ 0x58be: " \r\u58be", // 墾
+ 0x58bf: " \r\u58bf", // 墿
+ 0x58c0: " \r\u58c0", // 壀
+ 0x58c1: " \r\u58c1", // 壁
+ 0x58c2: " \r\u58c2", // 壂
+ 0x58c3: " \r\u58c3", // 壃
+ 0x58c4: " \r\u58c4", // 壄
+ 0x58c5: " \r\u58c5", // 壅
+ 0x58c6: " \r\u58c6", // 壆
+ 0x58c7: " \r\u58c7", // 壇
+ 0x58c8: " \r\u58c8", // 壈
+ 0x58c9: " \r\u58c9", // 壉
+ 0x58ca: " \r\u58ca", // 壊
+ 0x58cb: " \r\u58cb", // 壋
+ 0x58cc: " \r\u58cc", // 壌
+ 0x58cd: " \x0e\u58cd", // 壍
+ 0x58ce: " \x0e\u58ce", // 壎
+ 0x58cf: " \x0e\u58cf", // 壏
+ 0x58d0: " \x0e\u58d0", // 壐
+ 0x58d1: " \x0e\u58d1", // 壑
+ 0x58d2: " \x0e\u58d2", // 壒
+ 0x58d3: " \x0e\u58d3", // 壓
+ 0x58d4: " \x0e\u58d4", // 壔
+ 0x58d5: " \x0e\u58d5", // 壕
+ 0x58d6: " \x0e\u58d6", // 壖
+ 0x58d7: " \x0e\u58d7", // 壗
+ 0x58d8: " \x0f\u58d8", // 壘
+ 0x58d9: " \x0f\u58d9", // 壙
+ 0x58da: " \x10\u58da", // 壚
+ 0x58db: " \x10\u58db", // 壛
+ 0x58dc: " \x10\u58dc", // 壜
+ 0x58dd: " \x10\u58dd", // 壝
+ 0x58de: " \x10\u58de", // 壞
+ 0x58df: " \x10\u58df", // 壟
+ 0x58e0: " \x10\u58e0", // 壠
+ 0x58e1: "\x1d\x11\u58e1", // 壡
+ 0x58e2: " \x10\u58e2", // 壢
+ 0x58e3: " \x11\u58e3", // 壣
+ 0x58e4: " \x11\u58e4", // 壤
+ 0x58e5: " \x11\u58e5", // 壥
+ 0x58e6: " \x12\u58e6", // 壦
+ 0x58e7: " \x14\u58e7", // 壧
+ 0x58e8: " \x14\u58e8", // 壨
+ 0x58e9: " \x15\u58e9", // 壩
+ 0x58ea: " \x16\u58ea", // 壪
+ 0x58eb: "!\x00\u58eb", // 士
+ 0x58ec: "!\x01\u58ec", // 壬
+ 0x58ed: "!\x02\u58ed", // 壭
+ 0x58ee: "!\x03\u58ee", // 壮
+ 0x58ef: "!\x04\u58ef", // 壯
+ 0x58f0: "!\x04\u58f0", // 声
+ 0x58f1: "!\x04\u58f1", // 壱
+ 0x58f2: "!\x04\u58f2", // 売
+ 0x58f3: "!\x04\u58f3", // 壳
+ 0x58f4: "!\x06\u58f4", // 壴
+ 0x58f5: "!\x06\u58f5", // 壵
+ 0x58f6: "!\a\u58f6", // 壶
+ 0x58f7: "!\b\u58f7", // 壷
+ 0x58f8: "!\b\u58f8", // 壸
+ 0x58f9: "!\t\u58f9", // 壹
+ 0x58fa: "!\t\u58fa", // 壺
+ 0x58fb: "!\t\u58fb", // 壻
+ 0x58fc: "!\n\u58fc", // 壼
+ 0x58fd: "!\v\u58fd", // 壽
+ 0x58fe: "!\v\u58fe", // 壾
+ 0x58ff: "!\f\u58ff", // 壿
+ 0x5900: "!\f\u5900", // 夀
+ 0x5901: "!\r\u5901", // 夁
+ 0x5902: "\"\x00\u5902", // 夂
+ 0x5903: "\"\x01\u5903", // 夃
+ 0x5904: "\"\x02\u5904", // 处
+ 0x5905: "\"\x03\u5905", // 夅
+ 0x5906: "\"\x04\u5906", // 夆
+ 0x5907: "\"\x05\u5907", // 备
+ 0x5908: "\"\x06\u5908", // 夈
+ 0x5909: "#\x06\u5909", // 変
+ 0x590a: "#\x00\u590a", // 夊
+ 0x590b: "#\x04\u590b", // 夋
+ 0x590c: "#\x05\u590c", // 夌
+ 0x590d: "#\x06\u590d", // 复
+ 0x590e: "#\a\u590e", // 夎
+ 0x590f: "#\a\u590f", // 夏
+ 0x5910: "#\v\u5910", // 夐
+ 0x5911: "#\x0f\u5911", // 夑
+ 0x5912: "#\x10\u5912", // 夒
+ 0x5913: "#\x0f\u5913", // 夓
+ 0x5914: "#\x13\u5914", // 夔
+ 0x5915: "$\x00\u5915", // 夕
+ 0x5916: "$\x02\u5916", // 外
+ 0x5917: "$\x02\u5917", // 夗
+ 0x5918: "$\x02\u5918", // 夘
+ 0x5919: "$\x03\u5919", // 夙
+ 0x591a: "$\x03\u591a", // 多
+ 0x591b: "$\x03\u591b", // 夛
+ 0x591c: "$\x05\u591c", // 夜
+ 0x591d: "$\x05\u591d", // 夝
+ 0x591e: "$\a\u591e", // 夞
+ 0x591f: "$\b\u591f", // 够
+ 0x5920: "$\b\u5920", // 夠
+ 0x5921: "$\t\u5921", // 夡
+ 0x5922: "$\v\u5922", // 夢
+ 0x5923: "$\v\u5923", // 夣
+ 0x5924: "$\v\u5924", // 夤
+ 0x5925: "$\v\u5925", // 夥
+ 0x5926: "$\f\u5926", // 夦
+ 0x5927: "%\x00\u5927", // 大
+ 0x5928: "%\x00\u5928", // 夨
+ 0x5929: "%\x01\u5929", // 天
+ 0x592a: "%\x01\u592a", // 太
+ 0x592b: "%\x01\u592b", // 夫
+ 0x592c: "%\x01\u592c", // 夬
+ 0x592d: "%\x01\u592d", // 夭
+ 0x592e: "%\x02\u592e", // 央
+ 0x592f: "%\x02\u592f", // 夯
+ 0x5930: "%\x02\u5930", // 夰
+ 0x5931: "%\x02\u5931", // 失
+ 0x5932: "%\x02\u5932", // 夲
+ 0x5933: "%\x02\u5933", // 夳
+ 0x5934: "%\x02\u5934", // 头
+ 0x5935: "%\x03\u5935", // 夵
+ 0x5936: "%\x03\u5936", // 夶
+ 0x5937: "%\x03\u5937", // 夷
+ 0x5938: "%\x03\u5938", // 夸
+ 0x5939: "%\x03\u5939", // 夹
+ 0x593a: "%\x03\u593a", // 夺
+ 0x593b: "%\x03\u593b", // 夻
+ 0x593c: "%\x03\u593c", // 夼
+ 0x593d: "%\x04\u593d", // 夽
+ 0x593e: "%\x04\u593e", // 夾
+ 0x593f: "%\x04\u593f", // 夿
+ 0x5940: "%\x04\u5940", // 奀
+ 0x5941: "%\x04\u5941", // 奁
+ 0x5942: "%\x04\u5942", // 奂
+ 0x5943: "%\x05\u5943", // 奃
+ 0x5944: "%\x05\u5944", // 奄
+ 0x5945: "%\x05\u5945", // 奅
+ 0x5946: "%\x05\u5946", // 奆
+ 0x5947: "%\x05\u5947", // 奇
+ 0x5948: "%\x05\u5948", // 奈
+ 0x5949: "%\x05\u5949", // 奉
+ 0x594a: "%\a\u594a", // 奊
+ 0x594b: "%\x05\u594b", // 奋
+ 0x594c: "%\x05\u594c", // 奌
+ 0x594d: "%\x05\u594d", // 奍
+ 0x594e: "%\x06\u594e", // 奎
+ 0x594f: "%\x06\u594f", // 奏
+ 0x5950: "%\x06\u5950", // 奐
+ 0x5951: "%\x06\u5951", // 契
+ 0x5952: "%\x06\u5952", // 奒
+ 0x5953: "%\x06\u5953", // 奓
+ 0x5954: "%\x06\u5954", // 奔
+ 0x5955: "%\x06\u5955", // 奕
+ 0x5956: "%\x06\u5956", // 奖
+ 0x5957: "%\a\u5957", // 套
+ 0x5958: "%\a\u5958", // 奘
+ 0x5959: "%\a\u5959", // 奙
+ 0x595a: "%\a\u595a", // 奚
+ 0x595b: "%\b\u595b", // 奛
+ 0x595c: "%\b\u595c", // 奜
+ 0x595d: "%\b\u595d", // 奝
+ 0x595e: "%\b\u595e", // 奞
+ 0x595f: "%\t\u595f", // 奟
+ 0x5960: "%\t\u5960", // 奠
+ 0x5961: "%\t\u5961", // 奡
+ 0x5962: "%\t\u5962", // 奢
+ 0x5963: "%\t\u5963", // 奣
+ 0x5964: "%\t\u5964", // 奤
+ 0x5965: "%\t\u5965", // 奥
+ 0x5966: "%\n\u5966", // 奦
+ 0x5967: "%\n\u5967", // 奧
+ 0x5968: "%\n\u5968", // 奨
+ 0x5969: "%\v\u5969", // 奩
+ 0x596a: "%\v\u596a", // 奪
+ 0x596b: "%\v\u596b", // 奫
+ 0x596c: "%\v\u596c", // 奬
+ 0x596d: "%\f\u596d", // 奭
+ 0x596e: "%\r\u596e", // 奮
+ 0x596f: "%\r\u596f", // 奯
+ 0x5970: "%\x0f\u5970", // 奰
+ 0x5971: "%\x13\u5971", // 奱
+ 0x5972: "%\x15\u5972", // 奲
+ 0x5973: "&\x00\u5973", // 女
+ 0x5974: "&\x02\u5974", // 奴
+ 0x5975: "&\x02\u5975", // 奵
+ 0x5976: "&\x02\u5976", // 奶
+ 0x5977: "&\x03\u5977", // 奷
+ 0x5978: "&\x03\u5978", // 奸
+ 0x5979: "&\x03\u5979", // 她
+ 0x597a: "&\x03\u597a", // 奺
+ 0x597b: "&\x03\u597b", // 奻
+ 0x597c: "&\x03\u597c", // 奼
+ 0x597d: "&\x03\u597d", // 好
+ 0x597e: "&\x03\u597e", // 奾
+ 0x597f: "&\x03\u597f", // 奿
+ 0x5980: "&\x03\u5980", // 妀
+ 0x5981: "&\x03\u5981", // 妁
+ 0x5982: "&\x03\u5982", // 如
+ 0x5983: "&\x03\u5983", // 妃
+ 0x5984: "&\x03\u5984", // 妄
+ 0x5985: "&\x03\u5985", // 妅
+ 0x5986: "&\x03\u5986", // 妆
+ 0x5987: "&\x03\u5987", // 妇
+ 0x5988: "&\x03\u5988", // 妈
+ 0x5989: "&\x04\u5989", // 妉
+ 0x598a: "&\x04\u598a", // 妊
+ 0x598b: "&\x04\u598b", // 妋
+ 0x598c: "&\x04\u598c", // 妌
+ 0x598d: "&\x06\u598d", // 妍
+ 0x598e: "&\x04\u598e", // 妎
+ 0x598f: "&\x04\u598f", // 妏
+ 0x5990: "&\x04\u5990", // 妐
+ 0x5991: "&\x04\u5991", // 妑
+ 0x5992: "&\x04\u5992", // 妒
+ 0x5993: "&\x04\u5993", // 妓
+ 0x5994: "&\x04\u5994", // 妔
+ 0x5995: "&\x04\u5995", // 妕
+ 0x5996: "&\x04\u5996", // 妖
+ 0x5997: "&\x04\u5997", // 妗
+ 0x5998: "&\x04\u5998", // 妘
+ 0x5999: "&\x04\u5999", // 妙
+ 0x599a: "&\x04\u599a", // 妚
+ 0x599b: "&\x04\u599b", // 妛
+ 0x599c: "&\x04\u599c", // 妜
+ 0x599d: "&\x04\u599d", // 妝
+ 0x599e: "&\x04\u599e", // 妞
+ 0x599f: "&\x04\u599f", // 妟
+ 0x59a0: "&\x04\u59a0", // 妠
+ 0x59a1: "&\x04\u59a1", // 妡
+ 0x59a2: "&\x04\u59a2", // 妢
+ 0x59a3: "&\x04\u59a3", // 妣
+ 0x59a4: "&\x04\u59a4", // 妤
+ 0x59a5: "&\x04\u59a5", // 妥
+ 0x59a6: "&\x04\u59a6", // 妦
+ 0x59a7: "&\x04\u59a7", // 妧
+ 0x59a8: "&\x04\u59a8", // 妨
+ 0x59a9: "&\x04\u59a9", // 妩
+ 0x59aa: "&\x04\u59aa", // 妪
+ 0x59ab: "&\x04\u59ab", // 妫
+ 0x59ac: "&\x05\u59ac", // 妬
+ 0x59ad: "&\x05\u59ad", // 妭
+ 0x59ae: "&\x05\u59ae", // 妮
+ 0x59af: "&\x05\u59af", // 妯
+ 0x59b0: "&\x05\u59b0", // 妰
+ 0x59b1: "&\x05\u59b1", // 妱
+ 0x59b2: "&\x05\u59b2", // 妲
+ 0x59b3: "&\x05\u59b3", // 妳
+ 0x59b4: "&\x05\u59b4", // 妴
+ 0x59b5: "&\x05\u59b5", // 妵
+ 0x59b6: "&\x05\u59b6", // 妶
+ 0x59b7: "&\x05\u59b7", // 妷
+ 0x59b8: "&\x05\u59b8", // 妸
+ 0x59b9: "&\x05\u59b9", // 妹
+ 0x59ba: "&\x05\u59ba", // 妺
+ 0x59bb: "&\x05\u59bb", // 妻
+ 0x59bc: "&\x05\u59bc", // 妼
+ 0x59bd: "&\x05\u59bd", // 妽
+ 0x59be: "&\x05\u59be", // 妾
+ 0x59bf: "&\x05\u59bf", // 妿
+ 0x59c0: "&\x05\u59c0", // 姀
+ 0x59c1: "&\x05\u59c1", // 姁
+ 0x59c2: "&\x05\u59c2", // 姂
+ 0x59c3: "&\x05\u59c3", // 姃
+ 0x59c4: "&\x05\u59c4", // 姄
+ 0x59c5: "&\x05\u59c5", // 姅
+ 0x59c6: "&\x05\u59c6", // 姆
+ 0x59c7: "&\x05\u59c7", // 姇
+ 0x59c8: "&\x05\u59c8", // 姈
+ 0x59c9: "&\x05\u59c9", // 姉
+ 0x59ca: "&\x05\u59ca", // 姊
+ 0x59cb: "&\x05\u59cb", // 始
+ 0x59cc: "&\x05\u59cc", // 姌
+ 0x59cd: "&\x05\u59cd", // 姍
+ 0x59ce: "&\x05\u59ce", // 姎
+ 0x59cf: "&\x05\u59cf", // 姏
+ 0x59d0: "&\x05\u59d0", // 姐
+ 0x59d1: "&\x05\u59d1", // 姑
+ 0x59d2: "&\x05\u59d2", // 姒
+ 0x59d3: "&\x05\u59d3", // 姓
+ 0x59d4: "&\x05\u59d4", // 委
+ 0x59d5: "&\x05\u59d5", // 姕
+ 0x59d6: "&\x05\u59d6", // 姖
+ 0x59d7: "&\x05\u59d7", // 姗
+ 0x59d8: "&\x06\u59d8", // 姘
+ 0x59d9: "&\x06\u59d9", // 姙
+ 0x59da: "&\x06\u59da", // 姚
+ 0x59db: "&\x06\u59db", // 姛
+ 0x59dc: "&\x06\u59dc", // 姜
+ 0x59dd: "&\x06\u59dd", // 姝
+ 0x59de: "&\x06\u59de", // 姞
+ 0x59df: "&\x06\u59df", // 姟
+ 0x59e0: "&\x06\u59e0", // 姠
+ 0x59e1: "&\x06\u59e1", // 姡
+ 0x59e2: "&\x06\u59e2", // 姢
+ 0x59e3: "&\x06\u59e3", // 姣
+ 0x59e4: "&\x06\u59e4", // 姤
+ 0x59e5: "&\x06\u59e5", // 姥
+ 0x59e6: "&\x06\u59e6", // 姦
+ 0x59e7: "&\x06\u59e7", // 姧
+ 0x59e8: "&\x06\u59e8", // 姨
+ 0x59e9: "&\x06\u59e9", // 姩
+ 0x59ea: "&\x06\u59ea", // 姪
+ 0x59eb: "&\x06\u59eb", // 姫
+ 0x59ec: "&\a\u59ec", // 姬
+ 0x59ed: "&\x06\u59ed", // 姭
+ 0x59ee: "&\x06\u59ee", // 姮
+ 0x59ef: "&\x06\u59ef", // 姯
+ 0x59f0: "&\x06\u59f0", // 姰
+ 0x59f1: "&\x06\u59f1", // 姱
+ 0x59f2: "&\x06\u59f2", // 姲
+ 0x59f3: "&\x06\u59f3", // 姳
+ 0x59f4: "&\x06\u59f4", // 姴
+ 0x59f5: "&\x06\u59f5", // 姵
+ 0x59f6: "&\x06\u59f6", // 姶
+ 0x59f7: "&\x06\u59f7", // 姷
+ 0x59f8: "&\x06\u59f8", // 姸
+ 0x59f9: "&\x06\u59f9", // 姹
+ 0x59fa: "&\x06\u59fa", // 姺
+ 0x59fb: "&\x06\u59fb", // 姻
+ 0x59fc: "&\x06\u59fc", // 姼
+ 0x59fd: "&\x06\u59fd", // 姽
+ 0x59fe: "&\x06\u59fe", // 姾
+ 0x59ff: "&\x06\u59ff", // 姿
+ 0x5a00: "&\x06\u5a00", // 娀
+ 0x5a01: "&\x06\u5a01", // 威
+ 0x5a02: "&\x06\u5a02", // 娂
+ 0x5a03: "&\x06\u5a03", // 娃
+ 0x5a04: "w\x03\u5a04", // 娄
+ 0x5a05: "&\x06\u5a05", // 娅
+ 0x5a06: "&\x06\u5a06", // 娆
+ 0x5a07: "&\x06\u5a07", // 娇
+ 0x5a08: "&\x06\u5a08", // 娈
+ 0x5a09: "&\a\u5a09", // 娉
+ 0x5a0a: "&\a\u5a0a", // 娊
+ 0x5a0b: "&\a\u5a0b", // 娋
+ 0x5a0c: "&\a\u5a0c", // 娌
+ 0x5a0d: "&\a\u5a0d", // 娍
+ 0x5a0e: "&\a\u5a0e", // 娎
+ 0x5a0f: "&\a\u5a0f", // 娏
+ 0x5a10: "&\a\u5a10", // 娐
+ 0x5a11: "&\a\u5a11", // 娑
+ 0x5a12: "&\a\u5a12", // 娒
+ 0x5a13: "&\a\u5a13", // 娓
+ 0x5a14: "&\a\u5a14", // 娔
+ 0x5a15: "&\a\u5a15", // 娕
+ 0x5a16: "&\a\u5a16", // 娖
+ 0x5a17: "&\a\u5a17", // 娗
+ 0x5a18: "&\a\u5a18", // 娘
+ 0x5a19: "&\a\u5a19", // 娙
+ 0x5a1a: "&\a\u5a1a", // 娚
+ 0x5a1b: "&\a\u5a1b", // 娛
+ 0x5a1c: "&\a\u5a1c", // 娜
+ 0x5a1d: "&\a\u5a1d", // 娝
+ 0x5a1e: "&\a\u5a1e", // 娞
+ 0x5a1f: "&\a\u5a1f", // 娟
+ 0x5a20: "&\a\u5a20", // 娠
+ 0x5a21: "&\a\u5a21", // 娡
+ 0x5a22: "&\a\u5a22", // 娢
+ 0x5a23: "&\a\u5a23", // 娣
+ 0x5a24: "&\a\u5a24", // 娤
+ 0x5a25: "&\a\u5a25", // 娥
+ 0x5a26: "&\a\u5a26", // 娦
+ 0x5a27: "&\a\u5a27", // 娧
+ 0x5a28: "&\a\u5a28", // 娨
+ 0x5a29: "&\a\u5a29", // 娩
+ 0x5a2a: "&\a\u5a2a", // 娪
+ 0x5a2b: "&\a\u5a2b", // 娫
+ 0x5a2c: "&\b\u5a2c", // 娬
+ 0x5a2d: "&\a\u5a2d", // 娭
+ 0x5a2e: "&\a\u5a2e", // 娮
+ 0x5a2f: "&\a\u5a2f", // 娯
+ 0x5a30: "&\a\u5a30", // 娰
+ 0x5a31: "&\a\u5a31", // 娱
+ 0x5a32: "&\a\u5a32", // 娲
+ 0x5a33: "&\a\u5a33", // 娳
+ 0x5a34: "&\a\u5a34", // 娴
+ 0x5a35: "&\b\u5a35", // 娵
+ 0x5a36: "&\b\u5a36", // 娶
+ 0x5a37: "&\b\u5a37", // 娷
+ 0x5a38: "&\b\u5a38", // 娸
+ 0x5a39: "&\b\u5a39", // 娹
+ 0x5a3a: "&\b\u5a3a", // 娺
+ 0x5a3b: "&\b\u5a3b", // 娻
+ 0x5a3c: "&\b\u5a3c", // 娼
+ 0x5a3d: "&\a\u5a3d", // 娽
+ 0x5a3e: "&\b\u5a3e", // 娾
+ 0x5a3f: "&\b\u5a3f", // 娿
+ 0x5a40: "&\b\u5a40", // 婀
+ 0x5a41: "&\b\u5a41", // 婁
+ 0x5a42: "&\b\u5a42", // 婂
+ 0x5a43: "&\b\u5a43", // 婃
+ 0x5a44: "&\b\u5a44", // 婄
+ 0x5a45: "&\b\u5a45", // 婅
+ 0x5a46: "&\b\u5a46", // 婆
+ 0x5a47: "&\b\u5a47", // 婇
+ 0x5a48: "&\b\u5a48", // 婈
+ 0x5a49: "&\b\u5a49", // 婉
+ 0x5a4a: "&\b\u5a4a", // 婊
+ 0x5a4b: "&\b\u5a4b", // 婋
+ 0x5a4c: "&\b\u5a4c", // 婌
+ 0x5a4d: "&\b\u5a4d", // 婍
+ 0x5a4e: "&\b\u5a4e", // 婎
+ 0x5a4f: "&\b\u5a4f", // 婏
+ 0x5a50: "&\b\u5a50", // 婐
+ 0x5a51: "&\b\u5a51", // 婑
+ 0x5a52: "&\b\u5a52", // 婒
+ 0x5a53: "&\b\u5a53", // 婓
+ 0x5a54: "&\b\u5a54", // 婔
+ 0x5a55: "&\b\u5a55", // 婕
+ 0x5a56: "&\b\u5a56", // 婖
+ 0x5a57: "&\b\u5a57", // 婗
+ 0x5a58: "&\b\u5a58", // 婘
+ 0x5a59: "&\b\u5a59", // 婙
+ 0x5a5a: "&\b\u5a5a", // 婚
+ 0x5a5b: "&\b\u5a5b", // 婛
+ 0x5a5c: "&\b\u5a5c", // 婜
+ 0x5a5d: "&\b\u5a5d", // 婝
+ 0x5a5e: "&\b\u5a5e", // 婞
+ 0x5a5f: "&\b\u5a5f", // 婟
+ 0x5a60: "&\b\u5a60", // 婠
+ 0x5a61: "&\b\u5a61", // 婡
+ 0x5a62: "&\b\u5a62", // 婢
+ 0x5a63: "&\b\u5a63", // 婣
+ 0x5a64: "&\b\u5a64", // 婤
+ 0x5a65: "&\b\u5a65", // 婥
+ 0x5a66: "&\b\u5a66", // 婦
+ 0x5a67: "&\b\u5a67", // 婧
+ 0x5a68: "&\b\u5a68", // 婨
+ 0x5a69: "&\b\u5a69", // 婩
+ 0x5a6a: "&\b\u5a6a", // 婪
+ 0x5a6b: "&\b\u5a6b", // 婫
+ 0x5a6c: "&\b\u5a6c", // 婬
+ 0x5a6d: "&\b\u5a6d", // 婭
+ 0x5a6e: "&\b\u5a6e", // 婮
+ 0x5a6f: "&\b\u5a6f", // 婯
+ 0x5a70: "&\b\u5a70", // 婰
+ 0x5a71: "&\b\u5a71", // 婱
+ 0x5a72: "&\b\u5a72", // 婲
+ 0x5a73: "&\b\u5a73", // 婳
+ 0x5a74: "&\b\u5a74", // 婴
+ 0x5a75: "&\b\u5a75", // 婵
+ 0x5a76: "&\b\u5a76", // 婶
+ 0x5a77: "&\t\u5a77", // 婷
+ 0x5a78: "&\t\u5a78", // 婸
+ 0x5a79: "&\t\u5a79", // 婹
+ 0x5a7a: "&\t\u5a7a", // 婺
+ 0x5a7b: "&\t\u5a7b", // 婻
+ 0x5a7c: "&\t\u5a7c", // 婼
+ 0x5a7d: "&\t\u5a7d", // 婽
+ 0x5a7e: "&\t\u5a7e", // 婾
+ 0x5a7f: "&\t\u5a7f", // 婿
+ 0x5a80: "&\t\u5a80", // 媀
+ 0x5a81: "&\t\u5a81", // 媁
+ 0x5a82: "&\t\u5a82", // 媂
+ 0x5a83: "&\t\u5a83", // 媃
+ 0x5a84: "&\t\u5a84", // 媄
+ 0x5a85: "&\t\u5a85", // 媅
+ 0x5a86: "&\t\u5a86", // 媆
+ 0x5a87: "&\t\u5a87", // 媇
+ 0x5a88: "&\t\u5a88", // 媈
+ 0x5a89: "&\t\u5a89", // 媉
+ 0x5a8a: "&\t\u5a8a", // 媊
+ 0x5a8b: "&\t\u5a8b", // 媋
+ 0x5a8c: "&\t\u5a8c", // 媌
+ 0x5a8d: "&\t\u5a8d", // 媍
+ 0x5a8e: "&\t\u5a8e", // 媎
+ 0x5a8f: "&\t\u5a8f", // 媏
+ 0x5a90: "&\n\u5a90", // 媐
+ 0x5a91: "&\t\u5a91", // 媑
+ 0x5a92: "&\t\u5a92", // 媒
+ 0x5a93: "&\t\u5a93", // 媓
+ 0x5a94: "&\t\u5a94", // 媔
+ 0x5a95: "&\t\u5a95", // 媕
+ 0x5a96: "&\t\u5a96", // 媖
+ 0x5a97: "&\t\u5a97", // 媗
+ 0x5a98: "&\t\u5a98", // 媘
+ 0x5a99: "&\t\u5a99", // 媙
+ 0x5a9a: "&\t\u5a9a", // 媚
+ 0x5a9b: "&\t\u5a9b", // 媛
+ 0x5a9c: "&\t\u5a9c", // 媜
+ 0x5a9d: "&\t\u5a9d", // 媝
+ 0x5a9e: "&\t\u5a9e", // 媞
+ 0x5a9f: "&\t\u5a9f", // 媟
+ 0x5aa0: "&\t\u5aa0", // 媠
+ 0x5aa1: "&\t\u5aa1", // 媡
+ 0x5aa2: "&\t\u5aa2", // 媢
+ 0x5aa3: "&\t\u5aa3", // 媣
+ 0x5aa4: "&\t\u5aa4", // 媤
+ 0x5aa5: "&\t\u5aa5", // 媥
+ 0x5aa6: "&\t\u5aa6", // 媦
+ 0x5aa7: "&\t\u5aa7", // 媧
+ 0x5aa8: "&\t\u5aa8", // 媨
+ 0x5aa9: "&\t\u5aa9", // 媩
+ 0x5aaa: "&\t\u5aaa", // 媪
+ 0x5aab: "&\t\u5aab", // 媫
+ 0x5aac: "&\t\u5aac", // 媬
+ 0x5aad: "&\t\u5aad", // 媭
+ 0x5aae: "&\t\u5aae", // 媮
+ 0x5aaf: "&\t\u5aaf", // 媯
+ 0x5ab0: "&\n\u5ab0", // 媰
+ 0x5ab1: "&\n\u5ab1", // 媱
+ 0x5ab2: "&\n\u5ab2", // 媲
+ 0x5ab3: "&\n\u5ab3", // 媳
+ 0x5ab4: "&\n\u5ab4", // 媴
+ 0x5ab5: "&\n\u5ab5", // 媵
+ 0x5ab6: "&\n\u5ab6", // 媶
+ 0x5ab7: "&\n\u5ab7", // 媷
+ 0x5ab8: "&\n\u5ab8", // 媸
+ 0x5ab9: "&\n\u5ab9", // 媹
+ 0x5aba: "&\n\u5aba", // 媺
+ 0x5abb: "&\n\u5abb", // 媻
+ 0x5abc: "&\n\u5abc", // 媼
+ 0x5abd: "&\n\u5abd", // 媽
+ 0x5abe: "&\n\u5abe", // 媾
+ 0x5abf: "&\n\u5abf", // 媿
+ 0x5ac0: "&\n\u5ac0", // 嫀
+ 0x5ac1: "&\n\u5ac1", // 嫁
+ 0x5ac2: "&\n\u5ac2", // 嫂
+ 0x5ac3: "&\n\u5ac3", // 嫃
+ 0x5ac4: "&\n\u5ac4", // 嫄
+ 0x5ac5: "&\n\u5ac5", // 嫅
+ 0x5ac6: "&\n\u5ac6", // 嫆
+ 0x5ac7: "&\n\u5ac7", // 嫇
+ 0x5ac8: "&\n\u5ac8", // 嫈
+ 0x5ac9: "&\n\u5ac9", // 嫉
+ 0x5aca: "&\n\u5aca", // 嫊
+ 0x5acb: "&\n\u5acb", // 嫋
+ 0x5acc: "&\n\u5acc", // 嫌
+ 0x5acd: "&\n\u5acd", // 嫍
+ 0x5ace: "&\n\u5ace", // 嫎
+ 0x5acf: "&\t\u5acf", // 嫏
+ 0x5ad0: "&\n\u5ad0", // 嫐
+ 0x5ad1: "&\n\u5ad1", // 嫑
+ 0x5ad2: "&\n\u5ad2", // 嫒
+ 0x5ad3: "&\n\u5ad3", // 嫓
+ 0x5ad4: "&\n\u5ad4", // 嫔
+ 0x5ad5: "&\v\u5ad5", // 嫕
+ 0x5ad6: "&\v\u5ad6", // 嫖
+ 0x5ad7: "&\v\u5ad7", // 嫗
+ 0x5ad8: "&\v\u5ad8", // 嫘
+ 0x5ad9: "&\v\u5ad9", // 嫙
+ 0x5ada: "&\v\u5ada", // 嫚
+ 0x5adb: "&\v\u5adb", // 嫛
+ 0x5adc: "&\v\u5adc", // 嫜
+ 0x5add: "&\v\u5add", // 嫝
+ 0x5ade: "&\v\u5ade", // 嫞
+ 0x5adf: "&\v\u5adf", // 嫟
+ 0x5ae0: "&\v\u5ae0", // 嫠
+ 0x5ae1: "&\v\u5ae1", // 嫡
+ 0x5ae2: "&\v\u5ae2", // 嫢
+ 0x5ae3: "&\v\u5ae3", // 嫣
+ 0x5ae4: "&\v\u5ae4", // 嫤
+ 0x5ae5: "&\v\u5ae5", // 嫥
+ 0x5ae6: "&\v\u5ae6", // 嫦
+ 0x5ae7: "&\v\u5ae7", // 嫧
+ 0x5ae8: "&\v\u5ae8", // 嫨
+ 0x5ae9: "&\v\u5ae9", // 嫩
+ 0x5aea: "&\v\u5aea", // 嫪
+ 0x5aeb: "&\v\u5aeb", // 嫫
+ 0x5aec: "&\v\u5aec", // 嫬
+ 0x5aed: "&\v\u5aed", // 嫭
+ 0x5aee: "&\v\u5aee", // 嫮
+ 0x5aef: "&\v\u5aef", // 嫯
+ 0x5af0: "&\v\u5af0", // 嫰
+ 0x5af1: "&\v\u5af1", // 嫱
+ 0x5af2: "&\v\u5af2", // 嫲
+ 0x5af3: "&\f\u5af3", // 嫳
+ 0x5af4: "&\f\u5af4", // 嫴
+ 0x5af5: "&\f\u5af5", // 嫵
+ 0x5af6: "&\f\u5af6", // 嫶
+ 0x5af7: "&\f\u5af7", // 嫷
+ 0x5af8: "&\f\u5af8", // 嫸
+ 0x5af9: "&\f\u5af9", // 嫹
+ 0x5afa: "&\f\u5afa", // 嫺
+ 0x5afb: "&\f\u5afb", // 嫻
+ 0x5afc: "&\f\u5afc", // 嫼
+ 0x5afd: "&\f\u5afd", // 嫽
+ 0x5afe: "&\f\u5afe", // 嫾
+ 0x5aff: "&\f\u5aff", // 嫿
+ 0x5b00: "&\f\u5b00", // 嬀
+ 0x5b01: "&\f\u5b01", // 嬁
+ 0x5b02: "&\f\u5b02", // 嬂
+ 0x5b03: "&\f\u5b03", // 嬃
+ 0x5b04: "&\f\u5b04", // 嬄
+ 0x5b05: "&\f\u5b05", // 嬅
+ 0x5b06: "&\f\u5b06", // 嬆
+ 0x5b07: "&\f\u5b07", // 嬇
+ 0x5b08: "&\f\u5b08", // 嬈
+ 0x5b09: "&\f\u5b09", // 嬉
+ 0x5b0a: "&\f\u5b0a", // 嬊
+ 0x5b0b: "&\f\u5b0b", // 嬋
+ 0x5b0c: "&\f\u5b0c", // 嬌
+ 0x5b0d: "&\f\u5b0d", // 嬍
+ 0x5b0e: "&\f\u5b0e", // 嬎
+ 0x5b0f: "&\f\u5b0f", // 嬏
+ 0x5b10: "&\r\u5b10", // 嬐
+ 0x5b11: "&\r\u5b11", // 嬑
+ 0x5b12: "&\r\u5b12", // 嬒
+ 0x5b13: "&\r\u5b13", // 嬓
+ 0x5b14: "&\r\u5b14", // 嬔
+ 0x5b15: "&\r\u5b15", // 嬕
+ 0x5b16: "&\r\u5b16", // 嬖
+ 0x5b17: "&\r\u5b17", // 嬗
+ 0x5b18: "&\r\u5b18", // 嬘
+ 0x5b19: "&\r\u5b19", // 嬙
+ 0x5b1a: "&\r\u5b1a", // 嬚
+ 0x5b1b: "&\r\u5b1b", // 嬛
+ 0x5b1c: "&\r\u5b1c", // 嬜
+ 0x5b1d: "&\r\u5b1d", // 嬝
+ 0x5b1e: "&\r\u5b1e", // 嬞
+ 0x5b1f: "&\r\u5b1f", // 嬟
+ 0x5b20: "&\r\u5b20", // 嬠
+ 0x5b21: "&\r\u5b21", // 嬡
+ 0x5b22: "&\r\u5b22", // 嬢
+ 0x5b23: "&\x0e\u5b23", // 嬣
+ 0x5b24: "&\x0e\u5b24", // 嬤
+ 0x5b25: "&\x0e\u5b25", // 嬥
+ 0x5b26: "&\x0e\u5b26", // 嬦
+ 0x5b27: "&\x0e\u5b27", // 嬧
+ 0x5b28: "&\x0e\u5b28", // 嬨
+ 0x5b29: "&\x0e\u5b29", // 嬩
+ 0x5b2a: "&\x0e\u5b2a", // 嬪
+ 0x5b2b: "&\x0e\u5b2b", // 嬫
+ 0x5b2c: "&\x0e\u5b2c", // 嬬
+ 0x5b2d: "&\x0e\u5b2d", // 嬭
+ 0x5b2e: "&\x0e\u5b2e", // 嬮
+ 0x5b2f: "&\x0e\u5b2f", // 嬯
+ 0x5b30: "&\x0e\u5b30", // 嬰
+ 0x5b31: "&\x0e\u5b31", // 嬱
+ 0x5b32: "&\x0e\u5b32", // 嬲
+ 0x5b33: "&\x0e\u5b33", // 嬳
+ 0x5b34: "&\r\u5b34", // 嬴
+ 0x5b35: "&\x0e\u5b35", // 嬵
+ 0x5b36: "&\x0e\u5b36", // 嬶
+ 0x5b37: "&\x0e\u5b37", // 嬷
+ 0x5b38: "&\x0f\u5b38", // 嬸
+ 0x5b39: "&\x10\u5b39", // 嬹
+ 0x5b3a: "&\x0f\u5b3a", // 嬺
+ 0x5b3b: "&\x0f\u5b3b", // 嬻
+ 0x5b3c: "&\x0f\u5b3c", // 嬼
+ 0x5b3d: "&\x0f\u5b3d", // 嬽
+ 0x5b3e: "&\x10\u5b3e", // 嬾
+ 0x5b3f: "&\x10\u5b3f", // 嬿
+ 0x5b40: "&\x11\u5b40", // 孀
+ 0x5b41: "&\x11\u5b41", // 孁
+ 0x5b42: "&\x11\u5b42", // 孂
+ 0x5b43: "&\x11\u5b43", // 孃
+ 0x5b44: "&\x11\u5b44", // 孄
+ 0x5b45: "&\x11\u5b45", // 孅
+ 0x5b46: "&\x11\u5b46", // 孆
+ 0x5b47: "&\x12\u5b47", // 孇
+ 0x5b48: "&\x12\u5b48", // 孈
+ 0x5b49: "&\x12\u5b49", // 孉
+ 0x5b4a: "&\x13\u5b4a", // 孊
+ 0x5b4b: "&\x13\u5b4b", // 孋
+ 0x5b4c: "&\x13\u5b4c", // 孌
+ 0x5b4d: "&\x14\u5b4d", // 孍
+ 0x5b4e: "&\x15\u5b4e", // 孎
+ 0x5b4f: "&\x15\u5b4f", // 孏
+ 0x5b50: "'\x00\u5b50", // 子
+ 0x5b51: "'\x00\u5b51", // 孑
+ 0x5b52: "'\x00\u5b52", // 孒
+ 0x5b53: "'\x00\u5b53", // 孓
+ 0x5b54: "'\x01\u5b54", // 孔
+ 0x5b55: "'\x02\u5b55", // 孕
+ 0x5b56: "'\x03\u5b56", // 孖
+ 0x5b57: "'\x03\u5b57", // 字
+ 0x5b58: "'\x03\u5b58", // 存
+ 0x5b59: "'\x03\u5b59", // 孙
+ 0x5b5a: "'\x04\u5b5a", // 孚
+ 0x5b5b: "'\x04\u5b5b", // 孛
+ 0x5b5c: "'\x04\u5b5c", // 孜
+ 0x5b5d: "'\x04\u5b5d", // 孝
+ 0x5b5e: "'\x04\u5b5e", // 孞
+ 0x5b5f: "'\x05\u5b5f", // 孟
+ 0x5b60: "'\x05\u5b60", // 孠
+ 0x5b61: "'\x05\u5b61", // 孡
+ 0x5b62: "'\x05\u5b62", // 孢
+ 0x5b63: "'\x05\u5b63", // 季
+ 0x5b64: "'\x05\u5b64", // 孤
+ 0x5b65: "'\x05\u5b65", // 孥
+ 0x5b66: "'\x05\u5b66", // 学
+ 0x5b67: "'\x05\u5b67", // 孧
+ 0x5b68: "'\x06\u5b68", // 孨
+ 0x5b69: "'\x06\u5b69", // 孩
+ 0x5b6a: "'\x06\u5b6a", // 孪
+ 0x5b6b: "'\a\u5b6b", // 孫
+ 0x5b6c: "'\a\u5b6c", // 孬
+ 0x5b6d: "'\a\u5b6d", // 孭
+ 0x5b6e: "'\b\u5b6e", // 孮
+ 0x5b6f: "'\b\u5b6f", // 孯
+ 0x5b70: "'\b\u5b70", // 孰
+ 0x5b71: "'\t\u5b71", // 孱
+ 0x5b72: "'\b\u5b72", // 孲
+ 0x5b73: "'\n\u5b73", // 孳
+ 0x5b74: "'\n\u5b74", // 孴
+ 0x5b75: "'\v\u5b75", // 孵
+ 0x5b76: "'\v\u5b76", // 孶
+ 0x5b77: "'\v\u5b77", // 孷
+ 0x5b78: "'\r\u5b78", // 學
+ 0x5b79: "'\r\u5b79", // 孹
+ 0x5b7a: "'\x0e\u5b7a", // 孺
+ 0x5b7b: "'\x0e\u5b7b", // 孻
+ 0x5b7c: "'\x10\u5b7c", // 孼
+ 0x5b7d: "'\x11\u5b7d", // 孽
+ 0x5b7e: "'\x11\u5b7e", // 孾
+ 0x5b7f: "'\x13\u5b7f", // 孿
+ 0x5b80: "(\x00\u5b80", // 宀
+ 0x5b81: "(\x02\u5b81", // 宁
+ 0x5b82: "(\x02\u5b82", // 宂
+ 0x5b83: "(\x02\u5b83", // 它
+ 0x5b84: "(\x02\u5b84", // 宄
+ 0x5b85: "(\x03\u5b85", // 宅
+ 0x5b86: "(\x03\u5b86", // 宆
+ 0x5b87: "(\x03\u5b87", // 宇
+ 0x5b88: "(\x03\u5b88", // 守
+ 0x5b89: "(\x03\u5b89", // 安
+ 0x5b8a: "(\x04\u5b8a", // 宊
+ 0x5b8b: "(\x04\u5b8b", // 宋
+ 0x5b8c: "(\x04\u5b8c", // 完
+ 0x5b8d: "(\x04\u5b8d", // 宍
+ 0x5b8e: "(\x04\u5b8e", // 宎
+ 0x5b8f: "(\x04\u5b8f", // 宏
+ 0x5b90: "(\x04\u5b90", // 宐
+ 0x5b91: "(\x04\u5b91", // 宑
+ 0x5b92: "(\x04\u5b92", // 宒
+ 0x5b93: "(\x05\u5b93", // 宓
+ 0x5b94: "(\x05\u5b94", // 宔
+ 0x5b95: "(\x05\u5b95", // 宕
+ 0x5b96: "(\x05\u5b96", // 宖
+ 0x5b97: "(\x05\u5b97", // 宗
+ 0x5b98: "(\x05\u5b98", // 官
+ 0x5b99: "(\x05\u5b99", // 宙
+ 0x5b9a: "(\x05\u5b9a", // 定
+ 0x5b9b: "(\x05\u5b9b", // 宛
+ 0x5b9c: "(\x05\u5b9c", // 宜
+ 0x5b9d: "(\x05\u5b9d", // 宝
+ 0x5b9e: "(\x05\u5b9e", // 实
+ 0x5b9f: "(\x05\u5b9f", // 実
+ 0x5ba0: "(\x05\u5ba0", // 宠
+ 0x5ba1: "(\x05\u5ba1", // 审
+ 0x5ba2: "(\x06\u5ba2", // 客
+ 0x5ba3: "(\x06\u5ba3", // 宣
+ 0x5ba4: "(\x06\u5ba4", // 室
+ 0x5ba5: "(\x06\u5ba5", // 宥
+ 0x5ba6: "(\x06\u5ba6", // 宦
+ 0x5ba7: "(\a\u5ba7", // 宧
+ 0x5ba8: "(\x06\u5ba8", // 宨
+ 0x5ba9: "(\x06\u5ba9", // 宩
+ 0x5baa: "(\x06\u5baa", // 宪
+ 0x5bab: "(\x06\u5bab", // 宫
+ 0x5bac: "(\a\u5bac", // 宬
+ 0x5bad: "(\a\u5bad", // 宭
+ 0x5bae: "(\a\u5bae", // 宮
+ 0x5baf: "(\a\u5baf", // 宯
+ 0x5bb0: "(\a\u5bb0", // 宰
+ 0x5bb1: "(\a\u5bb1", // 宱
+ 0x5bb2: "(\a\u5bb2", // 宲
+ 0x5bb3: "(\a\u5bb3", // 害
+ 0x5bb4: "(\a\u5bb4", // 宴
+ 0x5bb5: "(\a\u5bb5", // 宵
+ 0x5bb6: "(\a\u5bb6", // 家
+ 0x5bb7: "(\a\u5bb7", // 宷
+ 0x5bb8: "(\a\u5bb8", // 宸
+ 0x5bb9: "(\a\u5bb9", // 容
+ 0x5bba: "(\a\u5bba", // 宺
+ 0x5bbb: "(\a\u5bbb", // 宻
+ 0x5bbc: "(\a\u5bbc", // 宼
+ 0x5bbd: "(\a\u5bbd", // 宽
+ 0x5bbe: "(\a\u5bbe", // 宾
+ 0x5bbf: "(\b\u5bbf", // 宿
+ 0x5bc0: "(\b\u5bc0", // 寀
+ 0x5bc1: "(\b\u5bc1", // 寁
+ 0x5bc2: "(\b\u5bc2", // 寂
+ 0x5bc3: "(\b\u5bc3", // 寃
+ 0x5bc4: "(\b\u5bc4", // 寄
+ 0x5bc5: "(\b\u5bc5", // 寅
+ 0x5bc6: "(\b\u5bc6", // 密
+ 0x5bc7: "(\b\u5bc7", // 寇
+ 0x5bc8: "(\b\u5bc8", // 寈
+ 0x5bc9: "(\b\u5bc9", // 寉
+ 0x5bca: "(\t\u5bca", // 寊
+ 0x5bcb: "(\t\u5bcb", // 寋
+ 0x5bcc: "(\t\u5bcc", // 富
+ 0x5bcd: "(\t\u5bcd", // 寍
+ 0x5bce: "(\t\u5bce", // 寎
+ 0x5bcf: "(\t\u5bcf", // 寏
+ 0x5bd0: "(\t\u5bd0", // 寐
+ 0x5bd1: "(\t\u5bd1", // 寑
+ 0x5bd2: "(\t\u5bd2", // 寒
+ 0x5bd3: "(\t\u5bd3", // 寓
+ 0x5bd4: "(\t\u5bd4", // 寔
+ 0x5bd5: "(\t\u5bd5", // 寕
+ 0x5bd6: "(\n\u5bd6", // 寖
+ 0x5bd7: "(\n\u5bd7", // 寗
+ 0x5bd8: "(\n\u5bd8", // 寘
+ 0x5bd9: "(\n\u5bd9", // 寙
+ 0x5bda: "(\n\u5bda", // 寚
+ 0x5bdb: "(\n\u5bdb", // 寛
+ 0x5bdc: "(\n\u5bdc", // 寜
+ 0x5bdd: "(\n\u5bdd", // 寝
+ 0x5bde: "(\v\u5bde", // 寞
+ 0x5bdf: "(\v\u5bdf", // 察
+ 0x5be0: "(\v\u5be0", // 寠
+ 0x5be1: "(\v\u5be1", // 寡
+ 0x5be2: "(\v\u5be2", // 寢
+ 0x5be3: "(\v\u5be3", // 寣
+ 0x5be4: "(\v\u5be4", // 寤
+ 0x5be5: "(\v\u5be5", // 寥
+ 0x5be6: "(\v\u5be6", // 實
+ 0x5be7: "(\v\u5be7", // 寧
+ 0x5be8: "(\v\u5be8", // 寨
+ 0x5be9: "(\f\u5be9", // 審
+ 0x5bea: "(\t\u5bea", // 寪
+ 0x5beb: "(\f\u5beb", // 寫
+ 0x5bec: "(\f\u5bec", // 寬
+ 0x5bed: "(\f\u5bed", // 寭
+ 0x5bee: "(\f\u5bee", // 寮
+ 0x5bef: "(\r\u5bef", // 寯
+ 0x5bf0: "(\r\u5bf0", // 寰
+ 0x5bf1: "(\x0e\u5bf1", // 寱
+ 0x5bf2: "(\x0e\u5bf2", // 寲
+ 0x5bf3: "(\x10\u5bf3", // 寳
+ 0x5bf4: "(\x10\u5bf4", // 寴
+ 0x5bf5: "(\x10\u5bf5", // 寵
+ 0x5bf6: "(\x11\u5bf6", // 寶
+ 0x5bf7: "(\x12\u5bf7", // 寷
+ 0x5bf8: ")\x00\u5bf8", // 寸
+ 0x5bf9: ")\x02\u5bf9", // 对
+ 0x5bfa: ")\x03\u5bfa", // 寺
+ 0x5bfb: ")\x03\u5bfb", // 寻
+ 0x5bfc: ")\x03\u5bfc", // 导
+ 0x5bfd: ")\x04\u5bfd", // 寽
+ 0x5bfe: ")\x04\u5bfe", // 対
+ 0x5bff: ")\x04\u5bff", // 寿
+ 0x5c00: ")\x05\u5c00", // 尀
+ 0x5c01: ")\x06\u5c01", // 封
+ 0x5c02: ")\x06\u5c02", // 専
+ 0x5c03: ")\a\u5c03", // 尃
+ 0x5c04: ")\a\u5c04", // 射
+ 0x5c05: ")\a\u5c05", // 尅
+ 0x5c06: ")\x06\u5c06", // 将
+ 0x5c07: ")\b\u5c07", // 將
+ 0x5c08: ")\b\u5c08", // 專
+ 0x5c09: ")\b\u5c09", // 尉
+ 0x5c0a: ")\t\u5c0a", // 尊
+ 0x5c0b: ")\t\u5c0b", // 尋
+ 0x5c0c: ")\t\u5c0c", // 尌
+ 0x5c0d: ")\v\u5c0d", // 對
+ 0x5c0e: ")\f\u5c0e", // 導
+ 0x5c0f: "*\x00\u5c0f", // 小
+ 0x5c10: "*\x01\u5c10", // 尐
+ 0x5c11: "*\x01\u5c11", // 少
+ 0x5c12: "*\x02\u5c12", // 尒
+ 0x5c13: "*\x02\u5c13", // 尓
+ 0x5c14: "*\x02\u5c14", // 尔
+ 0x5c15: "*\x02\u5c15", // 尕
+ 0x5c16: "*\x03\u5c16", // 尖
+ 0x5c17: "*\x03\u5c17", // 尗
+ 0x5c18: "*\x03\u5c18", // 尘
+ 0x5c19: "*\x05\u5c19", // 尙
+ 0x5c1a: "*\x05\u5c1a", // 尚
+ 0x5c1b: "*\x06\u5c1b", // 尛
+ 0x5c1c: "*\x06\u5c1c", // 尜
+ 0x5c1d: "*\x06\u5c1d", // 尝
+ 0x5c1e: "*\t\u5c1e", // 尞
+ 0x5c1f: "*\n\u5c1f", // 尟
+ 0x5c20: "*\n\u5c20", // 尠
+ 0x5c21: "*\v\u5c21", // 尡
+ 0x5c22: "+\x00\u5c22", // 尢
+ 0x5c23: "+\x00\u5c23", // 尣
+ 0x5c24: "+\x01\u5c24", // 尤
+ 0x5c25: "+\x03\u5c25", // 尥
+ 0x5c26: "+\x03\u5c26", // 尦
+ 0x5c27: "+\x03\u5c27", // 尧
+ 0x5c28: "+\x04\u5c28", // 尨
+ 0x5c29: "+\x04\u5c29", // 尩
+ 0x5c2a: "+\x04\u5c2a", // 尪
+ 0x5c2b: "+\x04\u5c2b", // 尫
+ 0x5c2c: "+\x04\u5c2c", // 尬
+ 0x5c2d: "+\x05\u5c2d", // 尭
+ 0x5c2e: "+\x06\u5c2e", // 尮
+ 0x5c2f: "+\x06\u5c2f", // 尯
+ 0x5c30: "+\t\u5c30", // 尰
+ 0x5c31: "+\t\u5c31", // 就
+ 0x5c32: "+\n\u5c32", // 尲
+ 0x5c33: "+\n\u5c33", // 尳
+ 0x5c34: "+\n\u5c34", // 尴
+ 0x5c35: "+\f\u5c35", // 尵
+ 0x5c36: "+\x0e\u5c36", // 尶
+ 0x5c37: "+\x0e\u5c37", // 尷
+ 0x5c38: ",\x00\u5c38", // 尸
+ 0x5c39: "\x04\x03\u5c39", // 尹
+ 0x5c3a: ",\x01\u5c3a", // 尺
+ 0x5c3b: ",\x02\u5c3b", // 尻
+ 0x5c3c: ",\x02\u5c3c", // 尼
+ 0x5c3d: ",\x03\u5c3d", // 尽
+ 0x5c3e: ",\x04\u5c3e", // 尾
+ 0x5c3f: ",\x04\u5c3f", // 尿
+ 0x5c40: ",\x04\u5c40", // 局
+ 0x5c41: ",\x04\u5c41", // 屁
+ 0x5c42: ",\x04\u5c42", // 层
+ 0x5c43: ",\x04\u5c43", // 屃
+ 0x5c44: ",\x05\u5c44", // 屄
+ 0x5c45: ",\x05\u5c45", // 居
+ 0x5c46: ",\x05\u5c46", // 屆
+ 0x5c47: ",\x05\u5c47", // 屇
+ 0x5c48: ",\x05\u5c48", // 屈
+ 0x5c49: ",\x05\u5c49", // 屉
+ 0x5c4a: ",\x05\u5c4a", // 届
+ 0x5c4b: ",\x06\u5c4b", // 屋
+ 0x5c4c: ",\x06\u5c4c", // 屌
+ 0x5c4d: ",\x06\u5c4d", // 屍
+ 0x5c4e: ",\x06\u5c4e", // 屎
+ 0x5c4f: ",\x06\u5c4f", // 屏
+ 0x5c50: ",\a\u5c50", // 屐
+ 0x5c51: ",\a\u5c51", // 屑
+ 0x5c52: ",\a\u5c52", // 屒
+ 0x5c53: ",\a\u5c53", // 屓
+ 0x5c54: ",\a\u5c54", // 屔
+ 0x5c55: ",\a\u5c55", // 展
+ 0x5c56: ",\a\u5c56", // 屖
+ 0x5c57: ",\a\u5c57", // 屗
+ 0x5c58: ",\a\u5c58", // 屘
+ 0x5c59: ",\b\u5c59", // 屙
+ 0x5c5a: ",\b\u5c5a", // 屚
+ 0x5c5b: ",\b\u5c5b", // 屛
+ 0x5c5c: ",\b\u5c5c", // 屜
+ 0x5c5d: ",\b\u5c5d", // 屝
+ 0x5c5e: ",\t\u5c5e", // 属
+ 0x5c5f: ",\t\u5c5f", // 屟
+ 0x5c60: ",\t\u5c60", // 屠
+ 0x5c61: ",\t\u5c61", // 屡
+ 0x5c62: ",\v\u5c62", // 屢
+ 0x5c63: ",\v\u5c63", // 屣
+ 0x5c64: ",\f\u5c64", // 層
+ 0x5c65: ",\f\u5c65", // 履
+ 0x5c66: ",\f\u5c66", // 屦
+ 0x5c67: ",\f\u5c67", // 屧
+ 0x5c68: ",\x0e\u5c68", // 屨
+ 0x5c69: ",\x0f\u5c69", // 屩
+ 0x5c6a: ",\x0f\u5c6a", // 屪
+ 0x5c6b: ",\x10\u5c6b", // 屫
+ 0x5c6c: ",\x12\u5c6c", // 屬
+ 0x5c6d: ",\x15\u5c6d", // 屭
+ 0x5c6e: "-\x00\u5c6e", // 屮
+ 0x5c6f: "-\x01\u5c6f", // 屯
+ 0x5c70: "-\x03\u5c70", // 屰
+ 0x5c71: ".\x00\u5c71", // 山
+ 0x5c72: ".\x01\u5c72", // 屲
+ 0x5c73: ".\x02\u5c73", // 屳
+ 0x5c74: ".\x02\u5c74", // 屴
+ 0x5c75: ".\x02\u5c75", // 屵
+ 0x5c76: ".\x02\u5c76", // 屶
+ 0x5c77: ".\x02\u5c77", // 屷
+ 0x5c78: ".\x03\u5c78", // 屸
+ 0x5c79: ".\x03\u5c79", // 屹
+ 0x5c7a: ".\x03\u5c7a", // 屺
+ 0x5c7b: ".\x03\u5c7b", // 屻
+ 0x5c7c: ".\x03\u5c7c", // 屼
+ 0x5c7d: ".\x03\u5c7d", // 屽
+ 0x5c7e: ".\x03\u5c7e", // 屾
+ 0x5c7f: ".\x03\u5c7f", // 屿
+ 0x5c80: ".\x03\u5c80", // 岀
+ 0x5c81: ".\x03\u5c81", // 岁
+ 0x5c82: ".\x03\u5c82", // 岂
+ 0x5c83: ".\x03\u5c83", // 岃
+ 0x5c84: ".\x04\u5c84", // 岄
+ 0x5c85: ".\x04\u5c85", // 岅
+ 0x5c86: ".\x04\u5c86", // 岆
+ 0x5c87: ".\x04\u5c87", // 岇
+ 0x5c88: ".\x04\u5c88", // 岈
+ 0x5c89: ".\x04\u5c89", // 岉
+ 0x5c8a: ".\x04\u5c8a", // 岊
+ 0x5c8b: ".\x04\u5c8b", // 岋
+ 0x5c8c: ".\x04\u5c8c", // 岌
+ 0x5c8d: ".\x06\u5c8d", // 岍
+ 0x5c8e: ".\x04\u5c8e", // 岎
+ 0x5c8f: ".\x04\u5c8f", // 岏
+ 0x5c90: ".\x04\u5c90", // 岐
+ 0x5c91: ".\x04\u5c91", // 岑
+ 0x5c92: ".\x04\u5c92", // 岒
+ 0x5c93: ".\x04\u5c93", // 岓
+ 0x5c94: ".\x04\u5c94", // 岔
+ 0x5c95: ".\x04\u5c95", // 岕
+ 0x5c96: ".\x04\u5c96", // 岖
+ 0x5c97: ".\x04\u5c97", // 岗
+ 0x5c98: ".\x04\u5c98", // 岘
+ 0x5c99: ".\x04\u5c99", // 岙
+ 0x5c9a: ".\x04\u5c9a", // 岚
+ 0x5c9b: ".\x04\u5c9b", // 岛
+ 0x5c9c: ".\x04\u5c9c", // 岜
+ 0x5c9d: ".\x05\u5c9d", // 岝
+ 0x5c9e: ".\x05\u5c9e", // 岞
+ 0x5c9f: ".\x05\u5c9f", // 岟
+ 0x5ca0: ".\x05\u5ca0", // 岠
+ 0x5ca1: ".\x05\u5ca1", // 岡
+ 0x5ca2: ".\x05\u5ca2", // 岢
+ 0x5ca3: ".\x05\u5ca3", // 岣
+ 0x5ca4: ".\x05\u5ca4", // 岤
+ 0x5ca5: ".\x05\u5ca5", // 岥
+ 0x5ca6: ".\x05\u5ca6", // 岦
+ 0x5ca7: ".\x05\u5ca7", // 岧
+ 0x5ca8: ".\x05\u5ca8", // 岨
+ 0x5ca9: ".\x05\u5ca9", // 岩
+ 0x5caa: ".\x05\u5caa", // 岪
+ 0x5cab: ".\x05\u5cab", // 岫
+ 0x5cac: ".\x05\u5cac", // 岬
+ 0x5cad: ".\x05\u5cad", // 岭
+ 0x5cae: ".\x05\u5cae", // 岮
+ 0x5caf: ".\x05\u5caf", // 岯
+ 0x5cb0: ".\x05\u5cb0", // 岰
+ 0x5cb1: ".\x05\u5cb1", // 岱
+ 0x5cb2: ".\x05\u5cb2", // 岲
+ 0x5cb3: ".\x05\u5cb3", // 岳
+ 0x5cb4: ".\x05\u5cb4", // 岴
+ 0x5cb5: ".\x05\u5cb5", // 岵
+ 0x5cb6: ".\x05\u5cb6", // 岶
+ 0x5cb7: ".\x05\u5cb7", // 岷
+ 0x5cb8: ".\x05\u5cb8", // 岸
+ 0x5cb9: ".\x05\u5cb9", // 岹
+ 0x5cba: ".\x05\u5cba", // 岺
+ 0x5cbb: ".\x05\u5cbb", // 岻
+ 0x5cbc: ".\x05\u5cbc", // 岼
+ 0x5cbd: ".\x05\u5cbd", // 岽
+ 0x5cbe: ".\x05\u5cbe", // 岾
+ 0x5cbf: ".\x05\u5cbf", // 岿
+ 0x5cc0: ".\x05\u5cc0", // 峀
+ 0x5cc1: ".\x05\u5cc1", // 峁
+ 0x5cc2: ".\x05\u5cc2", // 峂
+ 0x5cc3: ".\x05\u5cc3", // 峃
+ 0x5cc4: ".\x05\u5cc4", // 峄
+ 0x5cc5: ".\x05\u5cc5", // 峅
+ 0x5cc6: ".\x06\u5cc6", // 峆
+ 0x5cc7: ".\x06\u5cc7", // 峇
+ 0x5cc8: ".\x06\u5cc8", // 峈
+ 0x5cc9: ".\x06\u5cc9", // 峉
+ 0x5cca: ".\x06\u5cca", // 峊
+ 0x5ccb: ".\x06\u5ccb", // 峋
+ 0x5ccc: ".\x06\u5ccc", // 峌
+ 0x5ccd: ".\x06\u5ccd", // 峍
+ 0x5cce: ".\x06\u5cce", // 峎
+ 0x5ccf: ".\x06\u5ccf", // 峏
+ 0x5cd0: ".\x06\u5cd0", // 峐
+ 0x5cd1: ".\x06\u5cd1", // 峑
+ 0x5cd2: ".\x06\u5cd2", // 峒
+ 0x5cd3: ".\x06\u5cd3", // 峓
+ 0x5cd4: ".\x06\u5cd4", // 峔
+ 0x5cd5: ".\x06\u5cd5", // 峕
+ 0x5cd6: ".\x06\u5cd6", // 峖
+ 0x5cd7: ".\x06\u5cd7", // 峗
+ 0x5cd8: ".\x06\u5cd8", // 峘
+ 0x5cd9: ".\x06\u5cd9", // 峙
+ 0x5cda: ".\x06\u5cda", // 峚
+ 0x5cdb: ".\x06\u5cdb", // 峛
+ 0x5cdc: ".\x06\u5cdc", // 峜
+ 0x5cdd: ".\x06\u5cdd", // 峝
+ 0x5cde: ".\x06\u5cde", // 峞
+ 0x5cdf: ".\x06\u5cdf", // 峟
+ 0x5ce0: ".\x06\u5ce0", // 峠
+ 0x5ce1: ".\x06\u5ce1", // 峡
+ 0x5ce2: ".\x06\u5ce2", // 峢
+ 0x5ce3: ".\x06\u5ce3", // 峣
+ 0x5ce4: ".\x06\u5ce4", // 峤
+ 0x5ce5: ".\x06\u5ce5", // 峥
+ 0x5ce6: ".\x06\u5ce6", // 峦
+ 0x5ce7: ".\x06\u5ce7", // 峧
+ 0x5ce8: ".\a\u5ce8", // 峨
+ 0x5ce9: ".\a\u5ce9", // 峩
+ 0x5cea: ".\a\u5cea", // 峪
+ 0x5ceb: ".\a\u5ceb", // 峫
+ 0x5cec: ".\a\u5cec", // 峬
+ 0x5ced: ".\a\u5ced", // 峭
+ 0x5cee: ".\a\u5cee", // 峮
+ 0x5cef: ".\a\u5cef", // 峯
+ 0x5cf0: ".\a\u5cf0", // 峰
+ 0x5cf1: ".\a\u5cf1", // 峱
+ 0x5cf2: ".\a\u5cf2", // 峲
+ 0x5cf3: ".\a\u5cf3", // 峳
+ 0x5cf4: ".\a\u5cf4", // 峴
+ 0x5cf5: ".\a\u5cf5", // 峵
+ 0x5cf6: ".\a\u5cf6", // 島
+ 0x5cf7: ".\a\u5cf7", // 峷
+ 0x5cf8: ".\a\u5cf8", // 峸
+ 0x5cf9: ".\a\u5cf9", // 峹
+ 0x5cfa: ".\a\u5cfa", // 峺
+ 0x5cfb: ".\a\u5cfb", // 峻
+ 0x5cfc: ".\a\u5cfc", // 峼
+ 0x5cfd: ".\a\u5cfd", // 峽
+ 0x5cfe: ".\a\u5cfe", // 峾
+ 0x5cff: ".\a\u5cff", // 峿
+ 0x5d00: ".\a\u5d00", // 崀
+ 0x5d01: ".\a\u5d01", // 崁
+ 0x5d02: ".\a\u5d02", // 崂
+ 0x5d03: ".\a\u5d03", // 崃
+ 0x5d04: ".\a\u5d04", // 崄
+ 0x5d05: ".\a\u5d05", // 崅
+ 0x5d06: ".\b\u5d06", // 崆
+ 0x5d07: ".\b\u5d07", // 崇
+ 0x5d08: ".\b\u5d08", // 崈
+ 0x5d09: ".\b\u5d09", // 崉
+ 0x5d0a: ".\b\u5d0a", // 崊
+ 0x5d0b: ".\b\u5d0b", // 崋
+ 0x5d0c: ".\b\u5d0c", // 崌
+ 0x5d0d: ".\b\u5d0d", // 崍
+ 0x5d0e: ".\b\u5d0e", // 崎
+ 0x5d0f: ".\b\u5d0f", // 崏
+ 0x5d10: ".\b\u5d10", // 崐
+ 0x5d11: ".\b\u5d11", // 崑
+ 0x5d12: ".\b\u5d12", // 崒
+ 0x5d13: ".\b\u5d13", // 崓
+ 0x5d14: ".\b\u5d14", // 崔
+ 0x5d15: ".\b\u5d15", // 崕
+ 0x5d16: ".\b\u5d16", // 崖
+ 0x5d17: ".\b\u5d17", // 崗
+ 0x5d18: ".\b\u5d18", // 崘
+ 0x5d19: ".\b\u5d19", // 崙
+ 0x5d1a: ".\b\u5d1a", // 崚
+ 0x5d1b: ".\b\u5d1b", // 崛
+ 0x5d1c: ".\b\u5d1c", // 崜
+ 0x5d1d: ".\b\u5d1d", // 崝
+ 0x5d1e: ".\b\u5d1e", // 崞
+ 0x5d1f: ".\b\u5d1f", // 崟
+ 0x5d20: ".\b\u5d20", // 崠
+ 0x5d21: ".\b\u5d21", // 崡
+ 0x5d22: ".\b\u5d22", // 崢
+ 0x5d23: ".\b\u5d23", // 崣
+ 0x5d24: ".\b\u5d24", // 崤
+ 0x5d25: ".\b\u5d25", // 崥
+ 0x5d26: ".\b\u5d26", // 崦
+ 0x5d27: ".\b\u5d27", // 崧
+ 0x5d28: ".\b\u5d28", // 崨
+ 0x5d29: ".\b\u5d29", // 崩
+ 0x5d2a: ".\b\u5d2a", // 崪
+ 0x5d2b: ".\b\u5d2b", // 崫
+ 0x5d2c: ".\b\u5d2c", // 崬
+ 0x5d2d: ".\b\u5d2d", // 崭
+ 0x5d2e: ".\b\u5d2e", // 崮
+ 0x5d2f: ".\b\u5d2f", // 崯
+ 0x5d30: ".\b\u5d30", // 崰
+ 0x5d31: ".\t\u5d31", // 崱
+ 0x5d32: ".\t\u5d32", // 崲
+ 0x5d33: ".\t\u5d33", // 崳
+ 0x5d34: ".\t\u5d34", // 崴
+ 0x5d35: ".\t\u5d35", // 崵
+ 0x5d36: ".\t\u5d36", // 崶
+ 0x5d37: ".\t\u5d37", // 崷
+ 0x5d38: ".\t\u5d38", // 崸
+ 0x5d39: ".\t\u5d39", // 崹
+ 0x5d3a: ".\t\u5d3a", // 崺
+ 0x5d3b: ".\t\u5d3b", // 崻
+ 0x5d3c: ".\t\u5d3c", // 崼
+ 0x5d3d: ".\t\u5d3d", // 崽
+ 0x5d3e: ".\t\u5d3e", // 崾
+ 0x5d3f: ".\t\u5d3f", // 崿
+ 0x5d40: ".\t\u5d40", // 嵀
+ 0x5d41: ".\t\u5d41", // 嵁
+ 0x5d42: ".\t\u5d42", // 嵂
+ 0x5d43: ".\t\u5d43", // 嵃
+ 0x5d44: ".\t\u5d44", // 嵄
+ 0x5d45: ".\t\u5d45", // 嵅
+ 0x5d46: ".\t\u5d46", // 嵆
+ 0x5d47: ".\t\u5d47", // 嵇
+ 0x5d48: ".\t\u5d48", // 嵈
+ 0x5d49: ".\t\u5d49", // 嵉
+ 0x5d4a: ".\n\u5d4a", // 嵊
+ 0x5d4b: ".\t\u5d4b", // 嵋
+ 0x5d4c: ".\t\u5d4c", // 嵌
+ 0x5d4d: ".\t\u5d4d", // 嵍
+ 0x5d4e: ".\t\u5d4e", // 嵎
+ 0x5d4f: ".\t\u5d4f", // 嵏
+ 0x5d50: ".\t\u5d50", // 嵐
+ 0x5d51: ".\t\u5d51", // 嵑
+ 0x5d52: ".\t\u5d52", // 嵒
+ 0x5d53: ".\t\u5d53", // 嵓
+ 0x5d54: ".\t\u5d54", // 嵔
+ 0x5d55: ".\t\u5d55", // 嵕
+ 0x5d56: ".\t\u5d56", // 嵖
+ 0x5d57: ".\t\u5d57", // 嵗
+ 0x5d58: ".\t\u5d58", // 嵘
+ 0x5d59: ".\t\u5d59", // 嵙
+ 0x5d5a: ".\t\u5d5a", // 嵚
+ 0x5d5b: ".\t\u5d5b", // 嵛
+ 0x5d5c: ".\t\u5d5c", // 嵜
+ 0x5d5d: ".\t\u5d5d", // 嵝
+ 0x5d5e: ".\n\u5d5e", // 嵞
+ 0x5d5f: ".\n\u5d5f", // 嵟
+ 0x5d60: ".\n\u5d60", // 嵠
+ 0x5d61: ".\n\u5d61", // 嵡
+ 0x5d62: ".\n\u5d62", // 嵢
+ 0x5d63: ".\n\u5d63", // 嵣
+ 0x5d64: ".\n\u5d64", // 嵤
+ 0x5d65: ".\n\u5d65", // 嵥
+ 0x5d66: ".\n\u5d66", // 嵦
+ 0x5d67: ".\n\u5d67", // 嵧
+ 0x5d68: ".\n\u5d68", // 嵨
+ 0x5d69: ".\n\u5d69", // 嵩
+ 0x5d6a: ".\n\u5d6a", // 嵪
+ 0x5d6b: ".\n\u5d6b", // 嵫
+ 0x5d6c: ".\n\u5d6c", // 嵬
+ 0x5d6d: ".\n\u5d6d", // 嵭
+ 0x5d6e: ".\n\u5d6e", // 嵮
+ 0x5d6f: ".\n\u5d6f", // 嵯
+ 0x5d70: ".\n\u5d70", // 嵰
+ 0x5d71: ".\n\u5d71", // 嵱
+ 0x5d72: ".\n\u5d72", // 嵲
+ 0x5d73: ".\n\u5d73", // 嵳
+ 0x5d74: ".\n\u5d74", // 嵴
+ 0x5d75: ".\n\u5d75", // 嵵
+ 0x5d76: ".\n\u5d76", // 嵶
+ 0x5d77: ".\v\u5d77", // 嵷
+ 0x5d78: ".\v\u5d78", // 嵸
+ 0x5d79: ".\v\u5d79", // 嵹
+ 0x5d7a: ".\v\u5d7a", // 嵺
+ 0x5d7b: ".\v\u5d7b", // 嵻
+ 0x5d7c: ".\v\u5d7c", // 嵼
+ 0x5d7d: ".\v\u5d7d", // 嵽
+ 0x5d7e: ".\v\u5d7e", // 嵾
+ 0x5d7f: ".\v\u5d7f", // 嵿
+ 0x5d80: ".\v\u5d80", // 嶀
+ 0x5d81: ".\v\u5d81", // 嶁
+ 0x5d82: ".\v\u5d82", // 嶂
+ 0x5d83: ".\v\u5d83", // 嶃
+ 0x5d84: ".\v\u5d84", // 嶄
+ 0x5d85: ".\v\u5d85", // 嶅
+ 0x5d86: ".\v\u5d86", // 嶆
+ 0x5d87: ".\v\u5d87", // 嶇
+ 0x5d88: ".\v\u5d88", // 嶈
+ 0x5d89: ".\v\u5d89", // 嶉
+ 0x5d8a: ".\v\u5d8a", // 嶊
+ 0x5d8b: ".\v\u5d8b", // 嶋
+ 0x5d8c: ".\v\u5d8c", // 嶌
+ 0x5d8d: ".\v\u5d8d", // 嶍
+ 0x5d8e: ".\v\u5d8e", // 嶎
+ 0x5d8f: ".\f\u5d8f", // 嶏
+ 0x5d90: ".\f\u5d90", // 嶐
+ 0x5d91: ".\f\u5d91", // 嶑
+ 0x5d92: ".\f\u5d92", // 嶒
+ 0x5d93: ".\f\u5d93", // 嶓
+ 0x5d94: ".\f\u5d94", // 嶔
+ 0x5d95: ".\f\u5d95", // 嶕
+ 0x5d96: ".\f\u5d96", // 嶖
+ 0x5d97: ".\f\u5d97", // 嶗
+ 0x5d98: ".\f\u5d98", // 嶘
+ 0x5d99: ".\f\u5d99", // 嶙
+ 0x5d9a: ".\f\u5d9a", // 嶚
+ 0x5d9b: ".\f\u5d9b", // 嶛
+ 0x5d9c: ".\f\u5d9c", // 嶜
+ 0x5d9d: ".\f\u5d9d", // 嶝
+ 0x5d9e: ".\f\u5d9e", // 嶞
+ 0x5d9f: ".\f\u5d9f", // 嶟
+ 0x5da0: ".\f\u5da0", // 嶠
+ 0x5da1: ".\f\u5da1", // 嶡
+ 0x5da2: ".\f\u5da2", // 嶢
+ 0x5da3: ".\f\u5da3", // 嶣
+ 0x5da4: ".\f\u5da4", // 嶤
+ 0x5da5: ".\f\u5da5", // 嶥
+ 0x5da6: ".\r\u5da6", // 嶦
+ 0x5da7: ".\r\u5da7", // 嶧
+ 0x5da8: ".\r\u5da8", // 嶨
+ 0x5da9: ".\r\u5da9", // 嶩
+ 0x5daa: ".\r\u5daa", // 嶪
+ 0x5dab: ".\r\u5dab", // 嶫
+ 0x5dac: ".\r\u5dac", // 嶬
+ 0x5dad: ".\r\u5dad", // 嶭
+ 0x5dae: ".\r\u5dae", // 嶮
+ 0x5daf: ".\r\u5daf", // 嶯
+ 0x5db0: ".\r\u5db0", // 嶰
+ 0x5db1: ".\r\u5db1", // 嶱
+ 0x5db2: ".\r\u5db2", // 嶲
+ 0x5db3: ".\r\u5db3", // 嶳
+ 0x5db4: ".\r\u5db4", // 嶴
+ 0x5db5: ".\r\u5db5", // 嶵
+ 0x5db6: ".\r\u5db6", // 嶶
+ 0x5db7: ".\x0e\u5db7", // 嶷
+ 0x5db8: ".\x0e\u5db8", // 嶸
+ 0x5db9: ".\x0e\u5db9", // 嶹
+ 0x5dba: ".\x0e\u5dba", // 嶺
+ 0x5dbb: ".\x10\u5dbb", // 嶻
+ 0x5dbc: ".\x0e\u5dbc", // 嶼
+ 0x5dbd: ".\x0e\u5dbd", // 嶽
+ 0x5dbe: ".\x0e\u5dbe", // 嶾
+ 0x5dbf: ".\x0e\u5dbf", // 嶿
+ 0x5dc0: ".\x0f\u5dc0", // 巀
+ 0x5dc1: ".\x0f\u5dc1", // 巁
+ 0x5dc2: ".\x0f\u5dc2", // 巂
+ 0x5dc3: ".\x10\u5dc3", // 巃
+ 0x5dc4: ".\x10\u5dc4", // 巄
+ 0x5dc5: ".\x10\u5dc5", // 巅
+ 0x5dc6: ".\x11\u5dc6", // 巆
+ 0x5dc7: ".\x11\u5dc7", // 巇
+ 0x5dc8: ".\x11\u5dc8", // 巈
+ 0x5dc9: ".\x11\u5dc9", // 巉
+ 0x5dca: ".\x11\u5dca", // 巊
+ 0x5dcb: ".\x11\u5dcb", // 巋
+ 0x5dcc: ".\x11\u5dcc", // 巌
+ 0x5dcd: ".\x12\u5dcd", // 巍
+ 0x5dce: ".\x13\u5dce", // 巎
+ 0x5dcf: ".\x12\u5dcf", // 巏
+ 0x5dd0: ".\x12\u5dd0", // 巐
+ 0x5dd1: ".\x13\u5dd1", // 巑
+ 0x5dd2: ".\x13\u5dd2", // 巒
+ 0x5dd3: ".\x13\u5dd3", // 巓
+ 0x5dd4: ".\x13\u5dd4", // 巔
+ 0x5dd5: ".\x13\u5dd5", // 巕
+ 0x5dd6: ".\x14\u5dd6", // 巖
+ 0x5dd7: ".\x13\u5dd7", // 巗
+ 0x5dd8: ".\x14\u5dd8", // 巘
+ 0x5dd9: ".\x14\u5dd9", // 巙
+ 0x5dda: ".\x14\u5dda", // 巚
+ 0x5ddb: "/\x00\u5ddb", // 巛
+ 0x5ddc: "/\x00\u5ddc", // 巜
+ 0x5ddd: "/\x00\u5ddd", // 川
+ 0x5dde: "/\x03\u5dde", // 州
+ 0x5ddf: "/\x03\u5ddf", // 巟
+ 0x5de0: "/\x04\u5de0", // 巠
+ 0x5de1: "\xa2\x03\u5de1", // 巡
+ 0x5de2: "/\b\u5de2", // 巢
+ 0x5de3: "/\b\u5de3", // 巣
+ 0x5de4: "/\f\u5de4", // 巤
+ 0x5de5: "0\x00\u5de5", // 工
+ 0x5de6: "0\x02\u5de6", // 左
+ 0x5de7: "0\x02\u5de7", // 巧
+ 0x5de8: "0\x02\u5de8", // 巨
+ 0x5de9: "0\x03\u5de9", // 巩
+ 0x5dea: "0\x03\u5dea", // 巪
+ 0x5deb: "0\x04\u5deb", // 巫
+ 0x5dec: "0\x06\u5dec", // 巬
+ 0x5ded: "0\x06\u5ded", // 巭
+ 0x5dee: "0\a\u5dee", // 差
+ 0x5def: "0\t\u5def", // 巯
+ 0x5df0: "0\n\u5df0", // 巰
+ 0x5df1: "1\x00\u5df1", // 己
+ 0x5df2: "1\x00\u5df2", // 已
+ 0x5df3: "1\x00\u5df3", // 巳
+ 0x5df4: "1\x01\u5df4", // 巴
+ 0x5df5: "1\x04\u5df5", // 巵
+ 0x5df6: "1\x05\u5df6", // 巶
+ 0x5df7: "1\x06\u5df7", // 巷
+ 0x5df8: "1\x06\u5df8", // 巸
+ 0x5df9: "1\x06\u5df9", // 巹
+ 0x5dfa: "1\x06\u5dfa", // 巺
+ 0x5dfb: "1\x06\u5dfb", // 巻
+ 0x5dfc: "1\a\u5dfc", // 巼
+ 0x5dfd: "1\t\u5dfd", // 巽
+ 0x5dfe: "2\x00\u5dfe", // 巾
+ 0x5dff: "2\x01\u5dff", // 巿
+ 0x5e00: "2\x01\u5e00", // 帀
+ 0x5e01: "2\x01\u5e01", // 币
+ 0x5e02: "2\x02\u5e02", // 市
+ 0x5e03: "2\x02\u5e03", // 布
+ 0x5e04: "2\x02\u5e04", // 帄
+ 0x5e05: "2\x02\u5e05", // 帅
+ 0x5e06: "2\x03\u5e06", // 帆
+ 0x5e07: "2\x03\u5e07", // 帇
+ 0x5e08: "2\x03\u5e08", // 师
+ 0x5e09: "2\x04\u5e09", // 帉
+ 0x5e0a: "2\x04\u5e0a", // 帊
+ 0x5e0b: "2\x04\u5e0b", // 帋
+ 0x5e0c: "2\x04\u5e0c", // 希
+ 0x5e0d: "2\x04\u5e0d", // 帍
+ 0x5e0e: "2\x04\u5e0e", // 帎
+ 0x5e0f: "2\x04\u5e0f", // 帏
+ 0x5e10: "2\x04\u5e10", // 帐
+ 0x5e11: "2\x05\u5e11", // 帑
+ 0x5e12: "2\x05\u5e12", // 帒
+ 0x5e13: "2\x05\u5e13", // 帓
+ 0x5e14: "2\x05\u5e14", // 帔
+ 0x5e15: "2\x05\u5e15", // 帕
+ 0x5e16: "2\x05\u5e16", // 帖
+ 0x5e17: "2\x05\u5e17", // 帗
+ 0x5e18: "2\x05\u5e18", // 帘
+ 0x5e19: "2\x05\u5e19", // 帙
+ 0x5e1a: "2\x05\u5e1a", // 帚
+ 0x5e1b: "2\x05\u5e1b", // 帛
+ 0x5e1c: "2\x05\u5e1c", // 帜
+ 0x5e1d: "2\x06\u5e1d", // 帝
+ 0x5e1e: "2\x06\u5e1e", // 帞
+ 0x5e1f: "2\x06\u5e1f", // 帟
+ 0x5e20: "2\x06\u5e20", // 帠
+ 0x5e21: "2\x06\u5e21", // 帡
+ 0x5e22: "2\x06\u5e22", // 帢
+ 0x5e23: "2\x06\u5e23", // 帣
+ 0x5e24: "2\x06\u5e24", // 帤
+ 0x5e25: "2\x06\u5e25", // 帥
+ 0x5e26: "2\x06\u5e26", // 带
+ 0x5e27: "2\x06\u5e27", // 帧
+ 0x5e28: "2\a\u5e28", // 帨
+ 0x5e29: "2\a\u5e29", // 帩
+ 0x5e2a: "2\a\u5e2a", // 帪
+ 0x5e2b: "2\a\u5e2b", // 師
+ 0x5e2c: "2\a\u5e2c", // 帬
+ 0x5e2d: "2\a\u5e2d", // 席
+ 0x5e2e: "2\a\u5e2e", // 帮
+ 0x5e2f: "2\a\u5e2f", // 帯
+ 0x5e30: "2\a\u5e30", // 帰
+ 0x5e31: "2\a\u5e31", // 帱
+ 0x5e32: "2\b\u5e32", // 帲
+ 0x5e33: "2\b\u5e33", // 帳
+ 0x5e34: "2\b\u5e34", // 帴
+ 0x5e35: "2\b\u5e35", // 帵
+ 0x5e36: "2\b\u5e36", // 帶
+ 0x5e37: "2\b\u5e37", // 帷
+ 0x5e38: "2\b\u5e38", // 常
+ 0x5e39: "2\b\u5e39", // 帹
+ 0x5e3a: "2\b\u5e3a", // 帺
+ 0x5e3b: "2\b\u5e3b", // 帻
+ 0x5e3c: "2\b\u5e3c", // 帼
+ 0x5e3d: "2\t\u5e3d", // 帽
+ 0x5e3e: "2\t\u5e3e", // 帾
+ 0x5e3f: "2\t\u5e3f", // 帿
+ 0x5e40: "2\t\u5e40", // 幀
+ 0x5e41: "2\t\u5e41", // 幁
+ 0x5e42: "2\t\u5e42", // 幂
+ 0x5e43: "2\t\u5e43", // 幃
+ 0x5e44: "2\t\u5e44", // 幄
+ 0x5e45: "2\t\u5e45", // 幅
+ 0x5e46: "2\t\u5e46", // 幆
+ 0x5e47: "2\t\u5e47", // 幇
+ 0x5e48: "2\v\u5e48", // 幈
+ 0x5e49: "2\t\u5e49", // 幉
+ 0x5e4a: "2\n\u5e4a", // 幊
+ 0x5e4b: "2\n\u5e4b", // 幋
+ 0x5e4c: "2\n\u5e4c", // 幌
+ 0x5e4d: "2\n\u5e4d", // 幍
+ 0x5e4e: "2\n\u5e4e", // 幎
+ 0x5e4f: "2\n\u5e4f", // 幏
+ 0x5e50: "\x82\t\u5e50", // 幐
+ 0x5e51: "2\v\u5e51", // 幑
+ 0x5e52: "2\v\u5e52", // 幒
+ 0x5e53: "2\v\u5e53", // 幓
+ 0x5e54: "2\v\u5e54", // 幔
+ 0x5e55: "2\v\u5e55", // 幕
+ 0x5e56: "2\v\u5e56", // 幖
+ 0x5e57: "2\v\u5e57", // 幗
+ 0x5e58: "2\v\u5e58", // 幘
+ 0x5e59: "2\v\u5e59", // 幙
+ 0x5e5a: "2\f\u5e5a", // 幚
+ 0x5e5b: "2\v\u5e5b", // 幛
+ 0x5e5c: "2\f\u5e5c", // 幜
+ 0x5e5d: "2\f\u5e5d", // 幝
+ 0x5e5e: "2\f\u5e5e", // 幞
+ 0x5e5f: "2\f\u5e5f", // 幟
+ 0x5e60: "2\f\u5e60", // 幠
+ 0x5e61: "2\f\u5e61", // 幡
+ 0x5e62: "2\f\u5e62", // 幢
+ 0x5e63: "2\f\u5e63", // 幣
+ 0x5e64: "2\f\u5e64", // 幤
+ 0x5e65: "2\f\u5e65", // 幥
+ 0x5e66: "2\r\u5e66", // 幦
+ 0x5e67: "2\r\u5e67", // 幧
+ 0x5e68: "2\r\u5e68", // 幨
+ 0x5e69: "2\r\u5e69", // 幩
+ 0x5e6a: "2\x0e\u5e6a", // 幪
+ 0x5e6b: "2\x0e\u5e6b", // 幫
+ 0x5e6c: "2\x0e\u5e6c", // 幬
+ 0x5e6d: "2\x0f\u5e6d", // 幭
+ 0x5e6e: "2\x0f\u5e6e", // 幮
+ 0x5e6f: "2\x0f\u5e6f", // 幯
+ 0x5e70: "2\x10\u5e70", // 幰
+ 0x5e71: "2\x11\u5e71", // 幱
+ 0x5e72: "3\x00\u5e72", // 干
+ 0x5e73: "3\x02\u5e73", // 平
+ 0x5e74: "3\x03\u5e74", // 年
+ 0x5e75: "3\x03\u5e75", // 幵
+ 0x5e76: "3\x05\u5e76", // 并
+ 0x5e77: "3\x05\u5e77", // 幷
+ 0x5e78: "3\x05\u5e78", // 幸
+ 0x5e79: "3\n\u5e79", // 幹
+ 0x5e7a: "4\x00\u5e7a", // 幺
+ 0x5e7b: "4\x01\u5e7b", // 幻
+ 0x5e7c: "4\x02\u5e7c", // 幼
+ 0x5e7d: "4\x06\u5e7d", // 幽
+ 0x5e7e: "4\t\u5e7e", // 幾
+ 0x5e7f: "5\x00\u5e7f", // 广
+ 0x5e80: "5\x02\u5e80", // 庀
+ 0x5e81: "5\x02\u5e81", // 庁
+ 0x5e82: "5\x02\u5e82", // 庂
+ 0x5e83: "5\x02\u5e83", // 広
+ 0x5e84: "5\x03\u5e84", // 庄
+ 0x5e85: "5\x03\u5e85", // 庅
+ 0x5e86: "5\x03\u5e86", // 庆
+ 0x5e87: "5\x04\u5e87", // 庇
+ 0x5e88: "5\x04\u5e88", // 庈
+ 0x5e89: "5\x04\u5e89", // 庉
+ 0x5e8a: "5\x04\u5e8a", // 床
+ 0x5e8b: "5\x04\u5e8b", // 庋
+ 0x5e8c: "5\x04\u5e8c", // 庌
+ 0x5e8d: "5\x04\u5e8d", // 庍
+ 0x5e8e: "5\x04\u5e8e", // 庎
+ 0x5e8f: "5\x04\u5e8f", // 序
+ 0x5e90: "5\x04\u5e90", // 庐
+ 0x5e91: "5\x04\u5e91", // 庑
+ 0x5e92: "5\x04\u5e92", // 庒
+ 0x5e93: "5\x04\u5e93", // 库
+ 0x5e94: "5\x04\u5e94", // 应
+ 0x5e95: "5\x05\u5e95", // 底
+ 0x5e96: "5\x05\u5e96", // 庖
+ 0x5e97: "5\x05\u5e97", // 店
+ 0x5e98: "5\x04\u5e98", // 庘
+ 0x5e99: "5\x05\u5e99", // 庙
+ 0x5e9a: "5\x05\u5e9a", // 庚
+ 0x5e9b: "5\x05\u5e9b", // 庛
+ 0x5e9c: "5\x05\u5e9c", // 府
+ 0x5e9d: "5\x05\u5e9d", // 庝
+ 0x5e9e: "5\x05\u5e9e", // 庞
+ 0x5e9f: "5\x05\u5e9f", // 废
+ 0x5ea0: "5\x06\u5ea0", // 庠
+ 0x5ea1: "5\x06\u5ea1", // 庡
+ 0x5ea2: "5\x06\u5ea2", // 庢
+ 0x5ea3: "5\x06\u5ea3", // 庣
+ 0x5ea4: "5\x06\u5ea4", // 庤
+ 0x5ea5: "5\x06\u5ea5", // 庥
+ 0x5ea6: "5\x06\u5ea6", // 度
+ 0x5ea7: "5\a\u5ea7", // 座
+ 0x5ea8: "5\a\u5ea8", // 庨
+ 0x5ea9: "5\a\u5ea9", // 庩
+ 0x5eaa: "5\a\u5eaa", // 庪
+ 0x5eab: "5\a\u5eab", // 庫
+ 0x5eac: "5\a\u5eac", // 庬
+ 0x5ead: "5\a\u5ead", // 庭
+ 0x5eae: "5\a\u5eae", // 庮
+ 0x5eaf: "5\a\u5eaf", // 庯
+ 0x5eb0: "5\b\u5eb0", // 庰
+ 0x5eb1: "5\b\u5eb1", // 庱
+ 0x5eb2: "5\b\u5eb2", // 庲
+ 0x5eb3: "5\b\u5eb3", // 庳
+ 0x5eb4: "5\b\u5eb4", // 庴
+ 0x5eb5: "5\b\u5eb5", // 庵
+ 0x5eb6: "5\b\u5eb6", // 庶
+ 0x5eb7: "5\b\u5eb7", // 康
+ 0x5eb8: "5\b\u5eb8", // 庸
+ 0x5eb9: "5\b\u5eb9", // 庹
+ 0x5eba: "5\b\u5eba", // 庺
+ 0x5ebb: "5\b\u5ebb", // 庻
+ 0x5ebc: "5\b\u5ebc", // 庼
+ 0x5ebd: "5\t\u5ebd", // 庽
+ 0x5ebe: "5\t\u5ebe", // 庾
+ 0x5ebf: "5\t\u5ebf", // 庿
+ 0x5ec0: "5\t\u5ec0", // 廀
+ 0x5ec1: "5\t\u5ec1", // 廁
+ 0x5ec2: "5\t\u5ec2", // 廂
+ 0x5ec3: "5\t\u5ec3", // 廃
+ 0x5ec4: "5\v\u5ec4", // 廄
+ 0x5ec5: "5\n\u5ec5", // 廅
+ 0x5ec6: "5\n\u5ec6", // 廆
+ 0x5ec7: "5\n\u5ec7", // 廇
+ 0x5ec8: "5\n\u5ec8", // 廈
+ 0x5ec9: "5\n\u5ec9", // 廉
+ 0x5eca: "5\t\u5eca", // 廊
+ 0x5ecb: "5\n\u5ecb", // 廋
+ 0x5ecc: "5\n\u5ecc", // 廌
+ 0x5ecd: "5\v\u5ecd", // 廍
+ 0x5ece: "5\v\u5ece", // 廎
+ 0x5ecf: "5\v\u5ecf", // 廏
+ 0x5ed0: "5\v\u5ed0", // 廐
+ 0x5ed1: "5\v\u5ed1", // 廑
+ 0x5ed2: "5\v\u5ed2", // 廒
+ 0x5ed3: "5\v\u5ed3", // 廓
+ 0x5ed4: "5\v\u5ed4", // 廔
+ 0x5ed5: "5\v\u5ed5", // 廕
+ 0x5ed6: "5\v\u5ed6", // 廖
+ 0x5ed7: "5\v\u5ed7", // 廗
+ 0x5ed8: "5\v\u5ed8", // 廘
+ 0x5ed9: "5\f\u5ed9", // 廙
+ 0x5eda: "5\f\u5eda", // 廚
+ 0x5edb: "5\f\u5edb", // 廛
+ 0x5edc: "5\f\u5edc", // 廜
+ 0x5edd: "5\f\u5edd", // 廝
+ 0x5ede: "5\f\u5ede", // 廞
+ 0x5edf: "5\f\u5edf", // 廟
+ 0x5ee0: "5\f\u5ee0", // 廠
+ 0x5ee1: "5\f\u5ee1", // 廡
+ 0x5ee2: "5\f\u5ee2", // 廢
+ 0x5ee3: "5\f\u5ee3", // 廣
+ 0x5ee4: "5\f\u5ee4", // 廤
+ 0x5ee5: "5\r\u5ee5", // 廥
+ 0x5ee6: "5\r\u5ee6", // 廦
+ 0x5ee7: "5\r\u5ee7", // 廧
+ 0x5ee8: "5\r\u5ee8", // 廨
+ 0x5ee9: "5\r\u5ee9", // 廩
+ 0x5eea: "5\r\u5eea", // 廪
+ 0x5eeb: "5\x0f\u5eeb", // 廫
+ 0x5eec: "5\x10\u5eec", // 廬
+ 0x5eed: "5\x10\u5eed", // 廭
+ 0x5eee: "5\x11\u5eee", // 廮
+ 0x5eef: "5\x11\u5eef", // 廯
+ 0x5ef0: "5\x11\u5ef0", // 廰
+ 0x5ef1: "5\x12\u5ef1", // 廱
+ 0x5ef2: "5\x13\u5ef2", // 廲
+ 0x5ef3: "5\x16\u5ef3", // 廳
+ 0x5ef4: "6\x00\u5ef4", // 廴
+ 0x5ef5: "6\x03\u5ef5", // 廵
+ 0x5ef6: "6\x04\u5ef6", // 延
+ 0x5ef7: "6\x04\u5ef7", // 廷
+ 0x5ef8: "6\x05\u5ef8", // 廸
+ 0x5ef9: "6\x05\u5ef9", // 廹
+ 0x5efa: "6\x06\u5efa", // 建
+ 0x5efb: "6\x06\u5efb", // 廻
+ 0x5efc: "6\x06\u5efc", // 廼
+ 0x5efd: "6\a\u5efd", // 廽
+ 0x5efe: "7\x00\u5efe", // 廾
+ 0x5eff: "7\x01\u5eff", // 廿
+ 0x5f00: "7\x01\u5f00", // 开
+ 0x5f01: "7\x02\u5f01", // 弁
+ 0x5f02: "7\x03\u5f02", // 异
+ 0x5f03: "7\x04\u5f03", // 弃
+ 0x5f04: "7\x04\u5f04", // 弄
+ 0x5f05: "7\x04\u5f05", // 弅
+ 0x5f06: "7\x05\u5f06", // 弆
+ 0x5f07: "7\x06\u5f07", // 弇
+ 0x5f08: "7\x06\u5f08", // 弈
+ 0x5f09: "7\a\u5f09", // 弉
+ 0x5f0a: "7\f\u5f0a", // 弊
+ 0x5f0b: "8\x00\u5f0b", // 弋
+ 0x5f0c: "8\x01\u5f0c", // 弌
+ 0x5f0d: "8\x02\u5f0d", // 弍
+ 0x5f0e: "8\x03\u5f0e", // 弎
+ 0x5f0f: "8\x03\u5f0f", // 式
+ 0x5f10: "8\x03\u5f10", // 弐
+ 0x5f11: "8\t\u5f11", // 弑
+ 0x5f12: "8\n\u5f12", // 弒
+ 0x5f13: "9\x00\u5f13", // 弓
+ 0x5f14: "9\x01\u5f14", // 弔
+ 0x5f15: "9\x01\u5f15", // 引
+ 0x5f16: "9\x01\u5f16", // 弖
+ 0x5f17: "9\x02\u5f17", // 弗
+ 0x5f18: "9\x02\u5f18", // 弘
+ 0x5f19: "9\x03\u5f19", // 弙
+ 0x5f1a: "9\x03\u5f1a", // 弚
+ 0x5f1b: "9\x03\u5f1b", // 弛
+ 0x5f1c: "9\x03\u5f1c", // 弜
+ 0x5f1d: "9\x04\u5f1d", // 弝
+ 0x5f1e: "9\x04\u5f1e", // 弞
+ 0x5f1f: "9\x04\u5f1f", // 弟
+ 0x5f20: "9\x04\u5f20", // 张
+ 0x5f21: "9\x05\u5f21", // 弡
+ 0x5f22: "9\x05\u5f22", // 弢
+ 0x5f23: "9\x05\u5f23", // 弣
+ 0x5f24: "9\x05\u5f24", // 弤
+ 0x5f25: "9\x05\u5f25", // 弥
+ 0x5f26: "9\x05\u5f26", // 弦
+ 0x5f27: "9\x05\u5f27", // 弧
+ 0x5f28: "9\x05\u5f28", // 弨
+ 0x5f29: "9\x05\u5f29", // 弩
+ 0x5f2a: "9\x05\u5f2a", // 弪
+ 0x5f2b: "9\x06\u5f2b", // 弫
+ 0x5f2c: "9\x06\u5f2c", // 弬
+ 0x5f2d: "9\x06\u5f2d", // 弭
+ 0x5f2e: "9\x06\u5f2e", // 弮
+ 0x5f2f: "9\x06\u5f2f", // 弯
+ 0x5f30: "9\a\u5f30", // 弰
+ 0x5f31: "9\a\u5f31", // 弱
+ 0x5f32: "9\a\u5f32", // 弲
+ 0x5f33: "9\a\u5f33", // 弳
+ 0x5f34: "9\b\u5f34", // 弴
+ 0x5f35: "9\b\u5f35", // 張
+ 0x5f36: "9\b\u5f36", // 弶
+ 0x5f37: "9\b\u5f37", // 強
+ 0x5f38: "9\b\u5f38", // 弸
+ 0x5f39: "9\b\u5f39", // 弹
+ 0x5f3a: "9\t\u5f3a", // 强
+ 0x5f3b: "9\t\u5f3b", // 弻
+ 0x5f3c: "9\t\u5f3c", // 弼
+ 0x5f3d: "9\t\u5f3d", // 弽
+ 0x5f3e: "9\t\u5f3e", // 弾
+ 0x5f3f: "9\n\u5f3f", // 弿
+ 0x5f40: "9\n\u5f40", // 彀
+ 0x5f41: "9\n\u5f41", // 彁
+ 0x5f42: "9\n\u5f42", // 彂
+ 0x5f43: "9\v\u5f43", // 彃
+ 0x5f44: "9\v\u5f44", // 彄
+ 0x5f45: "9\v\u5f45", // 彅
+ 0x5f46: "9\f\u5f46", // 彆
+ 0x5f47: "9\f\u5f47", // 彇
+ 0x5f48: "9\f\u5f48", // 彈
+ 0x5f49: "9\f\u5f49", // 彉
+ 0x5f4a: "9\r\u5f4a", // 彊
+ 0x5f4b: "9\r\u5f4b", // 彋
+ 0x5f4c: "9\x0e\u5f4c", // 彌
+ 0x5f4d: "9\x0f\u5f4d", // 彍
+ 0x5f4e: "9\x13\u5f4e", // 彎
+ 0x5f4f: "9\x14\u5f4f", // 彏
+ 0x5f50: ":\x00\u5f50", // 彐
+ 0x5f51: ":\x00\u5f51", // 彑
+ 0x5f52: ":\x02\u5f52", // 归
+ 0x5f53: ":\x03\u5f53", // 当
+ 0x5f54: ":\x05\u5f54", // 彔
+ 0x5f55: ":\x05\u5f55", // 录
+ 0x5f56: ":\x06\u5f56", // 彖
+ 0x5f57: ":\b\u5f57", // 彗
+ 0x5f58: ":\t\u5f58", // 彘
+ 0x5f59: ":\n\u5f59", // 彙
+ 0x5f5a: ":\n\u5f5a", // 彚
+ 0x5f5b: ":\r\u5f5b", // 彛
+ 0x5f5c: ":\r\u5f5c", // 彜
+ 0x5f5d: ":\x0f\u5f5d", // 彝
+ 0x5f5e: ":\x0f\u5f5e", // 彞
+ 0x5f5f: ":\x10\u5f5f", // 彟
+ 0x5f60: ":\x17\u5f60", // 彠
+ 0x5f61: ";\x00\u5f61", // 彡
+ 0x5f62: ";\x04\u5f62", // 形
+ 0x5f63: ";\x04\u5f63", // 彣
+ 0x5f64: ";\x04\u5f64", // 彤
+ 0x5f65: ";\x06\u5f65", // 彥
+ 0x5f66: ";\x06\u5f66", // 彦
+ 0x5f67: ";\a\u5f67", // 彧
+ 0x5f68: ";\a\u5f68", // 彨
+ 0x5f69: ";\b\u5f69", // 彩
+ 0x5f6a: "\x8d\x03\u5f6a", // 彪
+ 0x5f6b: ";\b\u5f6b", // 彫
+ 0x5f6c: ";\b\u5f6c", // 彬
+ 0x5f6d: ";\t\u5f6d", // 彭
+ 0x5f6e: ";\n\u5f6e", // 彮
+ 0x5f6f: ";\v\u5f6f", // 彯
+ 0x5f70: ";\v\u5f70", // 彰
+ 0x5f71: ";\f\u5f71", // 影
+ 0x5f72: ";\x13\u5f72", // 彲
+ 0x5f73: "<\x00\u5f73", // 彳
+ 0x5f74: "<\x03\u5f74", // 彴
+ 0x5f75: "<\x03\u5f75", // 彵
+ 0x5f76: "<\x04\u5f76", // 彶
+ 0x5f77: "<\x04\u5f77", // 彷
+ 0x5f78: "<\x04\u5f78", // 彸
+ 0x5f79: "<\x04\u5f79", // 役
+ 0x5f7a: "<\x04\u5f7a", // 彺
+ 0x5f7b: "<\x04\u5f7b", // 彻
+ 0x5f7c: "<\x05\u5f7c", // 彼
+ 0x5f7d: "<\x05\u5f7d", // 彽
+ 0x5f7e: "<\x05\u5f7e", // 彾
+ 0x5f7f: "<\x05\u5f7f", // 彿
+ 0x5f80: "<\x05\u5f80", // 往
+ 0x5f81: "<\x05\u5f81", // 征
+ 0x5f82: "<\x05\u5f82", // 徂
+ 0x5f83: "<\x05\u5f83", // 徃
+ 0x5f84: "<\x05\u5f84", // 径
+ 0x5f85: "<\x06\u5f85", // 待
+ 0x5f86: "<\x06\u5f86", // 徆
+ 0x5f87: "<\x06\u5f87", // 徇
+ 0x5f88: "<\x06\u5f88", // 很
+ 0x5f89: "<\x06\u5f89", // 徉
+ 0x5f8a: "<\x06\u5f8a", // 徊
+ 0x5f8b: "<\x06\u5f8b", // 律
+ 0x5f8c: "<\x06\u5f8c", // 後
+ 0x5f8d: "<\x06\u5f8d", // 徍
+ 0x5f8e: "<\a\u5f8e", // 徎
+ 0x5f8f: "<\a\u5f8f", // 徏
+ 0x5f90: "<\a\u5f90", // 徐
+ 0x5f91: "<\a\u5f91", // 徑
+ 0x5f92: "<\a\u5f92", // 徒
+ 0x5f93: "<\a\u5f93", // 従
+ 0x5f94: "<\x06\u5f94", // 徔
+ 0x5f95: "<\a\u5f95", // 徕
+ 0x5f96: "<\b\u5f96", // 徖
+ 0x5f97: "<\b\u5f97", // 得
+ 0x5f98: "<\b\u5f98", // 徘
+ 0x5f99: "<\b\u5f99", // 徙
+ 0x5f9a: "<\t\u5f9a", // 徚
+ 0x5f9b: "<\b\u5f9b", // 徛
+ 0x5f9c: "<\b\u5f9c", // 徜
+ 0x5f9d: "<\b\u5f9d", // 徝
+ 0x5f9e: "<\b\u5f9e", // 從
+ 0x5f9f: "<\b\u5f9f", // 徟
+ 0x5fa0: "<\b\u5fa0", // 徠
+ 0x5fa1: "<\b\u5fa1", // 御
+ 0x5fa2: "<\b\u5fa2", // 徢
+ 0x5fa3: "<\b\u5fa3", // 徣
+ 0x5fa4: "<\b\u5fa4", // 徤
+ 0x5fa5: "<\t\u5fa5", // 徥
+ 0x5fa6: "<\t\u5fa6", // 徦
+ 0x5fa7: "<\t\u5fa7", // 徧
+ 0x5fa8: "<\t\u5fa8", // 徨
+ 0x5fa9: "<\t\u5fa9", // 復
+ 0x5faa: "<\t\u5faa", // 循
+ 0x5fab: "<\t\u5fab", // 徫
+ 0x5fac: "<\n\u5fac", // 徬
+ 0x5fad: "<\n\u5fad", // 徭
+ 0x5fae: "<\n\u5fae", // 微
+ 0x5faf: "<\n\u5faf", // 徯
+ 0x5fb0: "<\n\u5fb0", // 徰
+ 0x5fb1: "<\v\u5fb1", // 徱
+ 0x5fb2: "<\f\u5fb2", // 徲
+ 0x5fb3: "<\v\u5fb3", // 徳
+ 0x5fb4: "<\v\u5fb4", // 徴
+ 0x5fb5: "<\f\u5fb5", // 徵
+ 0x5fb6: "<\f\u5fb6", // 徶
+ 0x5fb7: "<\f\u5fb7", // 德
+ 0x5fb8: "<\f\u5fb8", // 徸
+ 0x5fb9: "<\f\u5fb9", // 徹
+ 0x5fba: "<\f\u5fba", // 徺
+ 0x5fbb: "<\r\u5fbb", // 徻
+ 0x5fbc: "<\r\u5fbc", // 徼
+ 0x5fbd: "<\x0e\u5fbd", // 徽
+ 0x5fbe: "<\x0e\u5fbe", // 徾
+ 0x5fbf: "<\x10\u5fbf", // 徿
+ 0x5fc0: "<\x11\u5fc0", // 忀
+ 0x5fc1: "<\x11\u5fc1", // 忁
+ 0x5fc2: "<\x12\u5fc2", // 忂
+ 0x5fc3: "=\x00\u5fc3", // 心
+ 0x5fc4: "=\x00\u5fc4", // 忄
+ 0x5fc5: "=\x01\u5fc5", // 必
+ 0x5fc6: "=\x01\u5fc6", // 忆
+ 0x5fc7: "=\x02\u5fc7", // 忇
+ 0x5fc8: "=\x02\u5fc8", // 忈
+ 0x5fc9: "=\x02\u5fc9", // 忉
+ 0x5fca: "=\x02\u5fca", // 忊
+ 0x5fcb: "=\x03\u5fcb", // 忋
+ 0x5fcc: "=\x03\u5fcc", // 忌
+ 0x5fcd: "=\x03\u5fcd", // 忍
+ 0x5fce: "=\x03\u5fce", // 忎
+ 0x5fcf: "=\x03\u5fcf", // 忏
+ 0x5fd0: "=\x03\u5fd0", // 忐
+ 0x5fd1: "=\x03\u5fd1", // 忑
+ 0x5fd2: "=\x03\u5fd2", // 忒
+ 0x5fd3: "=\x03\u5fd3", // 忓
+ 0x5fd4: "=\x03\u5fd4", // 忔
+ 0x5fd5: "=\x03\u5fd5", // 忕
+ 0x5fd6: "=\x03\u5fd6", // 忖
+ 0x5fd7: "=\x03\u5fd7", // 志
+ 0x5fd8: "=\x03\u5fd8", // 忘
+ 0x5fd9: "=\x03\u5fd9", // 忙
+ 0x5fda: "=\x03\u5fda", // 忚
+ 0x5fdb: "=\x03\u5fdb", // 忛
+ 0x5fdc: "=\x03\u5fdc", // 応
+ 0x5fdd: "=\x04\u5fdd", // 忝
+ 0x5fde: "=\x04\u5fde", // 忞
+ 0x5fdf: "=\x04\u5fdf", // 忟
+ 0x5fe0: "=\x04\u5fe0", // 忠
+ 0x5fe1: "=\x04\u5fe1", // 忡
+ 0x5fe2: "=\x04\u5fe2", // 忢
+ 0x5fe3: "=\x04\u5fe3", // 忣
+ 0x5fe4: "=\x04\u5fe4", // 忤
+ 0x5fe5: "=\x04\u5fe5", // 忥
+ 0x5fe6: "=\x04\u5fe6", // 忦
+ 0x5fe7: "=\x04\u5fe7", // 忧
+ 0x5fe8: "=\x04\u5fe8", // 忨
+ 0x5fe9: "=\x04\u5fe9", // 忩
+ 0x5fea: "=\x04\u5fea", // 忪
+ 0x5feb: "=\x04\u5feb", // 快
+ 0x5fec: "=\x04\u5fec", // 忬
+ 0x5fed: "=\x04\u5fed", // 忭
+ 0x5fee: "=\x04\u5fee", // 忮
+ 0x5fef: "=\x04\u5fef", // 忯
+ 0x5ff0: "=\x04\u5ff0", // 忰
+ 0x5ff1: "=\x04\u5ff1", // 忱
+ 0x5ff2: "=\x04\u5ff2", // 忲
+ 0x5ff3: "=\x04\u5ff3", // 忳
+ 0x5ff4: "=\x04\u5ff4", // 忴
+ 0x5ff5: "=\x04\u5ff5", // 念
+ 0x5ff6: "=\x04\u5ff6", // 忶
+ 0x5ff7: "=\x04\u5ff7", // 忷
+ 0x5ff8: "=\x04\u5ff8", // 忸
+ 0x5ff9: "=\x04\u5ff9", // 忹
+ 0x5ffa: "=\x04\u5ffa", // 忺
+ 0x5ffb: "=\x04\u5ffb", // 忻
+ 0x5ffc: "=\x04\u5ffc", // 忼
+ 0x5ffd: "=\x04\u5ffd", // 忽
+ 0x5ffe: "=\x04\u5ffe", // 忾
+ 0x5fff: "=\x04\u5fff", // 忿
+ 0x6000: "=\x04\u6000", // 怀
+ 0x6001: "=\x04\u6001", // 态
+ 0x6002: "=\x04\u6002", // 怂
+ 0x6003: "=\x04\u6003", // 怃
+ 0x6004: "=\x04\u6004", // 怄
+ 0x6005: "=\x04\u6005", // 怅
+ 0x6006: "=\x04\u6006", // 怆
+ 0x6007: "=\x05\u6007", // 怇
+ 0x6008: "=\x05\u6008", // 怈
+ 0x6009: "=\x05\u6009", // 怉
+ 0x600a: "=\x05\u600a", // 怊
+ 0x600b: "=\x05\u600b", // 怋
+ 0x600c: "=\x05\u600c", // 怌
+ 0x600d: "=\x05\u600d", // 怍
+ 0x600e: "=\x05\u600e", // 怎
+ 0x600f: "=\x05\u600f", // 怏
+ 0x6010: "=\x05\u6010", // 怐
+ 0x6011: "=\x05\u6011", // 怑
+ 0x6012: "=\x05\u6012", // 怒
+ 0x6013: "=\x05\u6013", // 怓
+ 0x6014: "=\x05\u6014", // 怔
+ 0x6015: "=\x05\u6015", // 怕
+ 0x6016: "=\x05\u6016", // 怖
+ 0x6017: "=\x05\u6017", // 怗
+ 0x6018: "=\x05\u6018", // 怘
+ 0x6019: "=\x05\u6019", // 怙
+ 0x601a: "=\x05\u601a", // 怚
+ 0x601b: "=\x05\u601b", // 怛
+ 0x601c: "=\x05\u601c", // 怜
+ 0x601d: "=\x05\u601d", // 思
+ 0x601e: "=\x05\u601e", // 怞
+ 0x601f: "=\x05\u601f", // 怟
+ 0x6020: "=\x05\u6020", // 怠
+ 0x6021: "=\x05\u6021", // 怡
+ 0x6022: "=\x05\u6022", // 怢
+ 0x6023: "=\x05\u6023", // 怣
+ 0x6024: "=\x05\u6024", // 怤
+ 0x6025: "=\x05\u6025", // 急
+ 0x6026: "=\x05\u6026", // 怦
+ 0x6027: "=\x05\u6027", // 性
+ 0x6028: "=\x05\u6028", // 怨
+ 0x6029: "=\x05\u6029", // 怩
+ 0x602a: "=\x05\u602a", // 怪
+ 0x602b: "=\x05\u602b", // 怫
+ 0x602c: "=\x05\u602c", // 怬
+ 0x602d: "=\x05\u602d", // 怭
+ 0x602e: "=\x05\u602e", // 怮
+ 0x602f: "=\x05\u602f", // 怯
+ 0x6030: "=\x05\u6030", // 怰
+ 0x6031: "=\x05\u6031", // 怱
+ 0x6032: "=\x05\u6032", // 怲
+ 0x6033: "=\x05\u6033", // 怳
+ 0x6034: "=\x05\u6034", // 怴
+ 0x6035: "=\x05\u6035", // 怵
+ 0x6036: "=\x05\u6036", // 怶
+ 0x6037: "=\x05\u6037", // 怷
+ 0x6038: "=\x05\u6038", // 怸
+ 0x6039: "=\x05\u6039", // 怹
+ 0x603a: "=\x05\u603a", // 怺
+ 0x603b: "=\x05\u603b", // 总
+ 0x603c: "=\x05\u603c", // 怼
+ 0x603d: "=\x05\u603d", // 怽
+ 0x603e: "=\x05\u603e", // 怾
+ 0x603f: "=\x05\u603f", // 怿
+ 0x6040: "=\x06\u6040", // 恀
+ 0x6041: "=\x06\u6041", // 恁
+ 0x6042: "=\x06\u6042", // 恂
+ 0x6043: "=\x06\u6043", // 恃
+ 0x6044: "=\x06\u6044", // 恄
+ 0x6045: "=\x06\u6045", // 恅
+ 0x6046: "=\x06\u6046", // 恆
+ 0x6047: "=\x06\u6047", // 恇
+ 0x6048: "=\x06\u6048", // 恈
+ 0x6049: "=\x06\u6049", // 恉
+ 0x604a: "=\x06\u604a", // 恊
+ 0x604b: "=\x06\u604b", // 恋
+ 0x604c: "=\x06\u604c", // 恌
+ 0x604d: "=\x06\u604d", // 恍
+ 0x604e: "=\x06\u604e", // 恎
+ 0x604f: "=\x06\u604f", // 恏
+ 0x6050: "=\x06\u6050", // 恐
+ 0x6051: "=\x06\u6051", // 恑
+ 0x6052: "=\x06\u6052", // 恒
+ 0x6053: "=\x06\u6053", // 恓
+ 0x6054: "=\x06\u6054", // 恔
+ 0x6055: "=\x06\u6055", // 恕
+ 0x6056: "=\x06\u6056", // 恖
+ 0x6057: "=\x06\u6057", // 恗
+ 0x6058: "=\x06\u6058", // 恘
+ 0x6059: "=\x06\u6059", // 恙
+ 0x605a: "=\x06\u605a", // 恚
+ 0x605b: "=\x06\u605b", // 恛
+ 0x605c: "=\x06\u605c", // 恜
+ 0x605d: "=\x06\u605d", // 恝
+ 0x605e: "=\x06\u605e", // 恞
+ 0x605f: "=\x06\u605f", // 恟
+ 0x6060: "=\x06\u6060", // 恠
+ 0x6061: "=\x06\u6061", // 恡
+ 0x6062: "=\x06\u6062", // 恢
+ 0x6063: "=\x06\u6063", // 恣
+ 0x6064: "=\x06\u6064", // 恤
+ 0x6065: "=\x06\u6065", // 恥
+ 0x6066: "=\x06\u6066", // 恦
+ 0x6067: "=\x06\u6067", // 恧
+ 0x6068: "=\x06\u6068", // 恨
+ 0x6069: "=\x06\u6069", // 恩
+ 0x606a: "=\x06\u606a", // 恪
+ 0x606b: "=\x06\u606b", // 恫
+ 0x606c: "=\x06\u606c", // 恬
+ 0x606d: "=\x06\u606d", // 恭
+ 0x606e: "=\x06\u606e", // 恮
+ 0x606f: "=\x06\u606f", // 息
+ 0x6070: "=\x06\u6070", // 恰
+ 0x6071: "=\x06\u6071", // 恱
+ 0x6072: "=\x06\u6072", // 恲
+ 0x6073: "=\x06\u6073", // 恳
+ 0x6074: "=\x06\u6074", // 恴
+ 0x6075: "=\x06\u6075", // 恵
+ 0x6076: "=\x06\u6076", // 恶
+ 0x6077: "=\x06\u6077", // 恷
+ 0x6078: "=\x06\u6078", // 恸
+ 0x6079: "=\x06\u6079", // 恹
+ 0x607a: "=\x06\u607a", // 恺
+ 0x607b: "=\x06\u607b", // 恻
+ 0x607c: "=\x06\u607c", // 恼
+ 0x607d: "=\x06\u607d", // 恽
+ 0x607e: "=\a\u607e", // 恾
+ 0x607f: "=\a\u607f", // 恿
+ 0x6080: "=\a\u6080", // 悀
+ 0x6081: "=\a\u6081", // 悁
+ 0x6082: "=\a\u6082", // 悂
+ 0x6083: "=\a\u6083", // 悃
+ 0x6084: "=\a\u6084", // 悄
+ 0x6085: "=\a\u6085", // 悅
+ 0x6086: "=\a\u6086", // 悆
+ 0x6087: "=\a\u6087", // 悇
+ 0x6088: "=\a\u6088", // 悈
+ 0x6089: "=\a\u6089", // 悉
+ 0x608a: "=\a\u608a", // 悊
+ 0x608b: "=\a\u608b", // 悋
+ 0x608c: "=\a\u608c", // 悌
+ 0x608d: "=\a\u608d", // 悍
+ 0x608e: "=\a\u608e", // 悎
+ 0x608f: "=\a\u608f", // 悏
+ 0x6090: "=\a\u6090", // 悐
+ 0x6091: "=\a\u6091", // 悑
+ 0x6092: "=\a\u6092", // 悒
+ 0x6093: "=\a\u6093", // 悓
+ 0x6094: "=\a\u6094", // 悔
+ 0x6095: "=\a\u6095", // 悕
+ 0x6096: "=\a\u6096", // 悖
+ 0x6097: "=\a\u6097", // 悗
+ 0x6098: "=\a\u6098", // 悘
+ 0x6099: "=\a\u6099", // 悙
+ 0x609a: "=\a\u609a", // 悚
+ 0x609b: "=\a\u609b", // 悛
+ 0x609c: "=\a\u609c", // 悜
+ 0x609d: "=\a\u609d", // 悝
+ 0x609e: "=\a\u609e", // 悞
+ 0x609f: "=\a\u609f", // 悟
+ 0x60a0: "=\a\u60a0", // 悠
+ 0x60a1: "=\a\u60a1", // 悡
+ 0x60a2: "=\a\u60a2", // 悢
+ 0x60a3: "=\a\u60a3", // 患
+ 0x60a4: "=\a\u60a4", // 悤
+ 0x60a5: "=\a\u60a5", // 悥
+ 0x60a6: "=\a\u60a6", // 悦
+ 0x60a7: "=\a\u60a7", // 悧
+ 0x60a8: "=\a\u60a8", // 您
+ 0x60a9: "=\a\u60a9", // 悩
+ 0x60aa: "=\a\u60aa", // 悪
+ 0x60ab: "=\a\u60ab", // 悫
+ 0x60ac: "=\a\u60ac", // 悬
+ 0x60ad: "=\a\u60ad", // 悭
+ 0x60ae: "=\a\u60ae", // 悮
+ 0x60af: "=\a\u60af", // 悯
+ 0x60b0: "=\b\u60b0", // 悰
+ 0x60b1: "=\b\u60b1", // 悱
+ 0x60b2: "=\b\u60b2", // 悲
+ 0x60b3: "=\b\u60b3", // 悳
+ 0x60b4: "=\b\u60b4", // 悴
+ 0x60b5: "=\b\u60b5", // 悵
+ 0x60b6: "=\b\u60b6", // 悶
+ 0x60b7: "=\b\u60b7", // 悷
+ 0x60b8: "=\b\u60b8", // 悸
+ 0x60b9: "=\b\u60b9", // 悹
+ 0x60ba: "=\b\u60ba", // 悺
+ 0x60bb: "=\b\u60bb", // 悻
+ 0x60bc: "=\b\u60bc", // 悼
+ 0x60bd: "=\b\u60bd", // 悽
+ 0x60be: "=\b\u60be", // 悾
+ 0x60bf: "=\b\u60bf", // 悿
+ 0x60c0: "=\b\u60c0", // 惀
+ 0x60c1: "=\b\u60c1", // 惁
+ 0x60c2: "=\b\u60c2", // 惂
+ 0x60c3: "=\b\u60c3", // 惃
+ 0x60c4: "=\b\u60c4", // 惄
+ 0x60c5: "=\b\u60c5", // 情
+ 0x60c6: "=\b\u60c6", // 惆
+ 0x60c7: "=\b\u60c7", // 惇
+ 0x60c8: "=\b\u60c8", // 惈
+ 0x60c9: "=\b\u60c9", // 惉
+ 0x60ca: "=\b\u60ca", // 惊
+ 0x60cb: "=\b\u60cb", // 惋
+ 0x60cc: "=\b\u60cc", // 惌
+ 0x60cd: "=\b\u60cd", // 惍
+ 0x60ce: "=\b\u60ce", // 惎
+ 0x60cf: "=\b\u60cf", // 惏
+ 0x60d0: "=\b\u60d0", // 惐
+ 0x60d1: "=\b\u60d1", // 惑
+ 0x60d2: "=\b\u60d2", // 惒
+ 0x60d3: "=\b\u60d3", // 惓
+ 0x60d4: "=\b\u60d4", // 惔
+ 0x60d5: "=\b\u60d5", // 惕
+ 0x60d6: "=\b\u60d6", // 惖
+ 0x60d7: "=\b\u60d7", // 惗
+ 0x60d8: "=\b\u60d8", // 惘
+ 0x60d9: "=\b\u60d9", // 惙
+ 0x60da: "=\b\u60da", // 惚
+ 0x60db: "=\b\u60db", // 惛
+ 0x60dc: "=\b\u60dc", // 惜
+ 0x60dd: "=\b\u60dd", // 惝
+ 0x60de: "=\b\u60de", // 惞
+ 0x60df: "=\b\u60df", // 惟
+ 0x60e0: "=\b\u60e0", // 惠
+ 0x60e1: "=\b\u60e1", // 惡
+ 0x60e2: "=\b\u60e2", // 惢
+ 0x60e3: "=\b\u60e3", // 惣
+ 0x60e4: "=\b\u60e4", // 惤
+ 0x60e5: "=\b\u60e5", // 惥
+ 0x60e6: "=\b\u60e6", // 惦
+ 0x60e7: "=\b\u60e7", // 惧
+ 0x60e8: "=\b\u60e8", // 惨
+ 0x60e9: "=\b\u60e9", // 惩
+ 0x60ea: "=\b\u60ea", // 惪
+ 0x60eb: "=\b\u60eb", // 惫
+ 0x60ec: "=\b\u60ec", // 惬
+ 0x60ed: "=\b\u60ed", // 惭
+ 0x60ee: "=\b\u60ee", // 惮
+ 0x60ef: "=\b\u60ef", // 惯
+ 0x60f0: "=\t\u60f0", // 惰
+ 0x60f1: "=\t\u60f1", // 惱
+ 0x60f2: "=\t\u60f2", // 惲
+ 0x60f3: "=\t\u60f3", // 想
+ 0x60f4: "=\t\u60f4", // 惴
+ 0x60f5: "=\t\u60f5", // 惵
+ 0x60f6: "=\t\u60f6", // 惶
+ 0x60f7: "=\t\u60f7", // 惷
+ 0x60f8: "=\t\u60f8", // 惸
+ 0x60f9: "=\t\u60f9", // 惹
+ 0x60fa: "=\t\u60fa", // 惺
+ 0x60fb: "=\t\u60fb", // 惻
+ 0x60fc: "=\t\u60fc", // 惼
+ 0x60fd: "=\t\u60fd", // 惽
+ 0x60fe: "=\t\u60fe", // 惾
+ 0x60ff: "=\t\u60ff", // 惿
+ 0x6100: "=\t\u6100", // 愀
+ 0x6101: "=\t\u6101", // 愁
+ 0x6102: "=\t\u6102", // 愂
+ 0x6103: "=\t\u6103", // 愃
+ 0x6104: "=\t\u6104", // 愄
+ 0x6105: "=\t\u6105", // 愅
+ 0x6106: "=\t\u6106", // 愆
+ 0x6107: "=\t\u6107", // 愇
+ 0x6108: "=\t\u6108", // 愈
+ 0x6109: "=\t\u6109", // 愉
+ 0x610a: "=\t\u610a", // 愊
+ 0x610b: "=\t\u610b", // 愋
+ 0x610c: "=\t\u610c", // 愌
+ 0x610d: "=\t\u610d", // 愍
+ 0x610e: "=\t\u610e", // 愎
+ 0x610f: "=\t\u610f", // 意
+ 0x6110: "=\t\u6110", // 愐
+ 0x6111: "=\t\u6111", // 愑
+ 0x6112: "=\t\u6112", // 愒
+ 0x6113: "=\t\u6113", // 愓
+ 0x6114: "=\t\u6114", // 愔
+ 0x6115: "=\t\u6115", // 愕
+ 0x6116: "=\t\u6116", // 愖
+ 0x6117: "=\t\u6117", // 愗
+ 0x6118: "=\t\u6118", // 愘
+ 0x6119: "=\t\u6119", // 愙
+ 0x611a: "=\t\u611a", // 愚
+ 0x611b: "=\t\u611b", // 愛
+ 0x611c: "=\t\u611c", // 愜
+ 0x611d: "=\t\u611d", // 愝
+ 0x611e: "=\t\u611e", // 愞
+ 0x611f: "=\t\u611f", // 感
+ 0x6120: "=\t\u6120", // 愠
+ 0x6121: "=\t\u6121", // 愡
+ 0x6122: "=\t\u6122", // 愢
+ 0x6123: "=\t\u6123", // 愣
+ 0x6124: "=\t\u6124", // 愤
+ 0x6125: "=\t\u6125", // 愥
+ 0x6126: "=\t\u6126", // 愦
+ 0x6127: "=\n\u6127", // 愧
+ 0x6128: "=\n\u6128", // 愨
+ 0x6129: "=\n\u6129", // 愩
+ 0x612a: "=\n\u612a", // 愪
+ 0x612b: "=\n\u612b", // 愫
+ 0x612c: "=\n\u612c", // 愬
+ 0x612d: "=\n\u612d", // 愭
+ 0x612e: "=\n\u612e", // 愮
+ 0x612f: "=\n\u612f", // 愯
+ 0x6130: "=\n\u6130", // 愰
+ 0x6131: "=\n\u6131", // 愱
+ 0x6132: "=\n\u6132", // 愲
+ 0x6133: "=\n\u6133", // 愳
+ 0x6134: "=\n\u6134", // 愴
+ 0x6135: "=\n\u6135", // 愵
+ 0x6136: "=\n\u6136", // 愶
+ 0x6137: "=\n\u6137", // 愷
+ 0x6138: "=\n\u6138", // 愸
+ 0x6139: "=\n\u6139", // 愹
+ 0x613a: "=\n\u613a", // 愺
+ 0x613b: "=\n\u613b", // 愻
+ 0x613c: "=\n\u613c", // 愼
+ 0x613d: "=\n\u613d", // 愽
+ 0x613e: "=\n\u613e", // 愾
+ 0x613f: "=\n\u613f", // 愿
+ 0x6140: "=\n\u6140", // 慀
+ 0x6141: "=\n\u6141", // 慁
+ 0x6142: "=\n\u6142", // 慂
+ 0x6143: "=\n\u6143", // 慃
+ 0x6144: "=\n\u6144", // 慄
+ 0x6145: "=\n\u6145", // 慅
+ 0x6146: "=\n\u6146", // 慆
+ 0x6147: "=\n\u6147", // 慇
+ 0x6148: "=\n\u6148", // 慈
+ 0x6149: "=\n\u6149", // 慉
+ 0x614a: "=\n\u614a", // 慊
+ 0x614b: "=\n\u614b", // 態
+ 0x614c: "=\n\u614c", // 慌
+ 0x614d: "=\n\u614d", // 慍
+ 0x614e: "=\n\u614e", // 慎
+ 0x614f: "=\n\u614f", // 慏
+ 0x6150: "=\n\u6150", // 慐
+ 0x6151: "=\n\u6151", // 慑
+ 0x6152: "=\v\u6152", // 慒
+ 0x6153: "=\v\u6153", // 慓
+ 0x6154: "=\v\u6154", // 慔
+ 0x6155: "=\v\u6155", // 慕
+ 0x6156: "=\v\u6156", // 慖
+ 0x6157: "=\v\u6157", // 慗
+ 0x6158: "=\v\u6158", // 慘
+ 0x6159: "=\v\u6159", // 慙
+ 0x615a: "=\v\u615a", // 慚
+ 0x615b: "=\v\u615b", // 慛
+ 0x615c: "=\v\u615c", // 慜
+ 0x615d: "=\v\u615d", // 慝
+ 0x615e: "=\v\u615e", // 慞
+ 0x615f: "=\v\u615f", // 慟
+ 0x6160: "=\v\u6160", // 慠
+ 0x6161: "=\v\u6161", // 慡
+ 0x6162: "=\v\u6162", // 慢
+ 0x6163: "=\v\u6163", // 慣
+ 0x6164: "=\v\u6164", // 慤
+ 0x6165: "=\v\u6165", // 慥
+ 0x6166: "=\v\u6166", // 慦
+ 0x6167: "=\v\u6167", // 慧
+ 0x6168: "=\t\u6168", // 慨
+ 0x6169: "=\v\u6169", // 慩
+ 0x616a: "=\v\u616a", // 慪
+ 0x616b: "=\v\u616b", // 慫
+ 0x616c: "=\v\u616c", // 慬
+ 0x616d: "=\f\u616d", // 慭
+ 0x616e: "=\v\u616e", // 慮
+ 0x616f: "=\v\u616f", // 慯
+ 0x6170: "=\v\u6170", // 慰
+ 0x6171: "=\v\u6171", // 慱
+ 0x6172: "=\v\u6172", // 慲
+ 0x6173: "=\v\u6173", // 慳
+ 0x6174: "=\v\u6174", // 慴
+ 0x6175: "=\v\u6175", // 慵
+ 0x6176: "=\v\u6176", // 慶
+ 0x6177: "=\v\u6177", // 慷
+ 0x6178: "=\v\u6178", // 慸
+ 0x6179: "=\v\u6179", // 慹
+ 0x617a: "=\v\u617a", // 慺
+ 0x617b: "=\v\u617b", // 慻
+ 0x617c: "=\v\u617c", // 慼
+ 0x617d: "=\v\u617d", // 慽
+ 0x617e: "=\v\u617e", // 慾
+ 0x617f: "=\v\u617f", // 慿
+ 0x6180: "=\v\u6180", // 憀
+ 0x6181: "=\v\u6181", // 憁
+ 0x6182: "=\v\u6182", // 憂
+ 0x6183: "=\v\u6183", // 憃
+ 0x6184: "=\v\u6184", // 憄
+ 0x6185: "=\v\u6185", // 憅
+ 0x6186: "=\v\u6186", // 憆
+ 0x6187: "=\v\u6187", // 憇
+ 0x6188: "=\v\u6188", // 憈
+ 0x6189: "=\f\u6189", // 憉
+ 0x618a: "=\f\u618a", // 憊
+ 0x618b: "=\f\u618b", // 憋
+ 0x618c: "=\f\u618c", // 憌
+ 0x618d: "=\f\u618d", // 憍
+ 0x618e: "=\f\u618e", // 憎
+ 0x618f: "=\f\u618f", // 憏
+ 0x6190: "=\f\u6190", // 憐
+ 0x6191: "=\f\u6191", // 憑
+ 0x6192: "=\f\u6192", // 憒
+ 0x6193: "=\f\u6193", // 憓
+ 0x6194: "=\f\u6194", // 憔
+ 0x6195: "=\f\u6195", // 憕
+ 0x6196: "=\f\u6196", // 憖
+ 0x6197: "=\f\u6197", // 憗
+ 0x6198: "=\f\u6198", // 憘
+ 0x6199: "=\f\u6199", // 憙
+ 0x619a: "=\f\u619a", // 憚
+ 0x619b: "=\f\u619b", // 憛
+ 0x619c: "=\f\u619c", // 憜
+ 0x619d: "=\f\u619d", // 憝
+ 0x619e: "=\f\u619e", // 憞
+ 0x619f: "=\f\u619f", // 憟
+ 0x61a0: "=\f\u61a0", // 憠
+ 0x61a1: "=\f\u61a1", // 憡
+ 0x61a2: "=\f\u61a2", // 憢
+ 0x61a3: "=\f\u61a3", // 憣
+ 0x61a4: "=\f\u61a4", // 憤
+ 0x61a5: "=\f\u61a5", // 憥
+ 0x61a6: "=\f\u61a6", // 憦
+ 0x61a7: "=\f\u61a7", // 憧
+ 0x61a8: "=\f\u61a8", // 憨
+ 0x61a9: "=\f\u61a9", // 憩
+ 0x61aa: "=\f\u61aa", // 憪
+ 0x61ab: "=\f\u61ab", // 憫
+ 0x61ac: "=\f\u61ac", // 憬
+ 0x61ad: "=\f\u61ad", // 憭
+ 0x61ae: "=\f\u61ae", // 憮
+ 0x61af: "=\f\u61af", // 憯
+ 0x61b0: "=\f\u61b0", // 憰
+ 0x61b1: "=\f\u61b1", // 憱
+ 0x61b2: "=\f\u61b2", // 憲
+ 0x61b3: "=\f\u61b3", // 憳
+ 0x61b4: "=\r\u61b4", // 憴
+ 0x61b5: "=\r\u61b5", // 憵
+ 0x61b6: "=\r\u61b6", // 憶
+ 0x61b7: "=\r\u61b7", // 憷
+ 0x61b8: "=\r\u61b8", // 憸
+ 0x61b9: "=\r\u61b9", // 憹
+ 0x61ba: "=\r\u61ba", // 憺
+ 0x61bb: "=\x0e\u61bb", // 憻
+ 0x61bc: "=\r\u61bc", // 憼
+ 0x61bd: "=\r\u61bd", // 憽
+ 0x61be: "=\r\u61be", // 憾
+ 0x61bf: "=\r\u61bf", // 憿
+ 0x61c0: "=\r\u61c0", // 懀
+ 0x61c1: "=\r\u61c1", // 懁
+ 0x61c2: "=\r\u61c2", // 懂
+ 0x61c3: "=\r\u61c3", // 懃
+ 0x61c4: "=\r\u61c4", // 懄
+ 0x61c5: "=\r\u61c5", // 懅
+ 0x61c6: "=\r\u61c6", // 懆
+ 0x61c7: "=\r\u61c7", // 懇
+ 0x61c8: "=\r\u61c8", // 懈
+ 0x61c9: "=\r\u61c9", // 應
+ 0x61ca: "=\r\u61ca", // 懊
+ 0x61cb: "=\r\u61cb", // 懋
+ 0x61cc: "=\r\u61cc", // 懌
+ 0x61cd: "=\r\u61cd", // 懍
+ 0x61ce: "=\r\u61ce", // 懎
+ 0x61cf: "=\r\u61cf", // 懏
+ 0x61d0: "=\r\u61d0", // 懐
+ 0x61d1: "=\r\u61d1", // 懑
+ 0x61d2: "=\r\u61d2", // 懒
+ 0x61d3: "=\r\u61d3", // 懓
+ 0x61d4: "=\r\u61d4", // 懔
+ 0x61d5: "=\x0e\u61d5", // 懕
+ 0x61d6: "=\x0e\u61d6", // 懖
+ 0x61d7: "=\x0e\u61d7", // 懗
+ 0x61d8: "=\x0e\u61d8", // 懘
+ 0x61d9: "=\x0e\u61d9", // 懙
+ 0x61da: "=\x0e\u61da", // 懚
+ 0x61db: "=\x0e\u61db", // 懛
+ 0x61dc: "=\x0e\u61dc", // 懜
+ 0x61dd: "=\x0e\u61dd", // 懝
+ 0x61de: "=\x0e\u61de", // 懞
+ 0x61df: "=\x0e\u61df", // 懟
+ 0x61e0: "=\x0e\u61e0", // 懠
+ 0x61e1: "=\x0e\u61e1", // 懡
+ 0x61e2: "=\x0e\u61e2", // 懢
+ 0x61e3: "=\x0e\u61e3", // 懣
+ 0x61e4: "=\x0e\u61e4", // 懤
+ 0x61e5: "=\x0e\u61e5", // 懥
+ 0x61e6: "=\x0e\u61e6", // 懦
+ 0x61e7: "=\x0e\u61e7", // 懧
+ 0x61e8: "=\x0e\u61e8", // 懨
+ 0x61e9: "=\x0f\u61e9", // 懩
+ 0x61ea: "=\x0f\u61ea", // 懪
+ 0x61eb: "=\x0f\u61eb", // 懫
+ 0x61ec: "=\x0f\u61ec", // 懬
+ 0x61ed: "=\x0f\u61ed", // 懭
+ 0x61ee: "=\x0f\u61ee", // 懮
+ 0x61ef: "=\x0f\u61ef", // 懯
+ 0x61f0: "=\x0f\u61f0", // 懰
+ 0x61f1: "=\x0f\u61f1", // 懱
+ 0x61f2: "=\x0f\u61f2", // 懲
+ 0x61f3: "=\x0f\u61f3", // 懳
+ 0x61f4: "=\x0f\u61f4", // 懴
+ 0x61f5: "=\x10\u61f5", // 懵
+ 0x61f6: "=\x10\u61f6", // 懶
+ 0x61f7: "=\x10\u61f7", // 懷
+ 0x61f8: "=\x10\u61f8", // 懸
+ 0x61f9: "=\x11\u61f9", // 懹
+ 0x61fa: "=\x11\u61fa", // 懺
+ 0x61fb: "=\x11\u61fb", // 懻
+ 0x61fc: "=\x12\u61fc", // 懼
+ 0x61fd: "=\x12\u61fd", // 懽
+ 0x61fe: "=\x12\u61fe", // 懾
+ 0x61ff: "=\x12\u61ff", // 懿
+ 0x6200: "=\x13\u6200", // 戀
+ 0x6201: "=\x13\u6201", // 戁
+ 0x6202: "=\x13\u6202", // 戂
+ 0x6203: "=\x14\u6203", // 戃
+ 0x6204: "=\x14\u6204", // 戄
+ 0x6205: "=\x15\u6205", // 戅
+ 0x6206: "=\x15\u6206", // 戆
+ 0x6207: "=\x18\u6207", // 戇
+ 0x6208: ">\x00\u6208", // 戈
+ 0x6209: ">\x01\u6209", // 戉
+ 0x620a: ">\x01\u620a", // 戊
+ 0x620b: ">\x01\u620b", // 戋
+ 0x620c: ">\x02\u620c", // 戌
+ 0x620d: ">\x02\u620d", // 戍
+ 0x620e: ">\x02\u620e", // 戎
+ 0x620f: ">\x02\u620f", // 戏
+ 0x6210: ">\x02\u6210", // 成
+ 0x6211: ">\x03\u6211", // 我
+ 0x6212: ">\x03\u6212", // 戒
+ 0x6213: ">\x03\u6213", // 戓
+ 0x6214: ">\x04\u6214", // 戔
+ 0x6215: ">\x04\u6215", // 戕
+ 0x6216: ">\x04\u6216", // 或
+ 0x6217: ">\x04\u6217", // 戗
+ 0x6218: ">\x05\u6218", // 战
+ 0x6219: ">\x06\u6219", // 戙
+ 0x621a: ">\a\u621a", // 戚
+ 0x621b: ">\a\u621b", // 戛
+ 0x621c: ">\a\u621c", // 戜
+ 0x621d: ">\a\u621d", // 戝
+ 0x621e: ">\b\u621e", // 戞
+ 0x621f: ">\b\u621f", // 戟
+ 0x6220: ">\t\u6220", // 戠
+ 0x6221: ">\t\u6221", // 戡
+ 0x6222: ">\t\u6222", // 戢
+ 0x6223: ">\t\u6223", // 戣
+ 0x6224: ">\t\u6224", // 戤
+ 0x6225: ">\t\u6225", // 戥
+ 0x6226: ">\b\u6226", // 戦
+ 0x6227: ">\n\u6227", // 戧
+ 0x6228: ">\n\u6228", // 戨
+ 0x6229: ">\n\u6229", // 戩
+ 0x622a: ">\n\u622a", // 截
+ 0x622b: ">\n\u622b", // 戫
+ 0x622c: ">\n\u622c", // 戬
+ 0x622d: ">\v\u622d", // 戭
+ 0x622e: ">\v\u622e", // 戮
+ 0x622f: ">\v\u622f", // 戯
+ 0x6230: ">\f\u6230", // 戰
+ 0x6231: ">\v\u6231", // 戱
+ 0x6232: ">\r\u6232", // 戲
+ 0x6233: ">\x0e\u6233", // 戳
+ 0x6234: ">\r\u6234", // 戴
+ 0x6235: ">\x12\u6235", // 戵
+ 0x6236: "?\x00\u6236", // 戶
+ 0x6237: "?\x00\u6237", // 户
+ 0x6238: "?\x00\u6238", // 戸
+ 0x6239: "?\x01\u6239", // 戹
+ 0x623a: "?\x03\u623a", // 戺
+ 0x623b: "?\x03\u623b", // 戻
+ 0x623c: "?\x03\u623c", // 戼
+ 0x623d: "?\x04\u623d", // 戽
+ 0x623e: "?\x04\u623e", // 戾
+ 0x623f: "?\x04\u623f", // 房
+ 0x6240: "?\x04\u6240", // 所
+ 0x6241: "?\x05\u6241", // 扁
+ 0x6242: "?\x05\u6242", // 扂
+ 0x6243: "?\x05\u6243", // 扃
+ 0x6244: "?\x06\u6244", // 扄
+ 0x6245: "?\x06\u6245", // 扅
+ 0x6246: "?\x06\u6246", // 扆
+ 0x6247: "?\x06\u6247", // 扇
+ 0x6248: "?\a\u6248", // 扈
+ 0x6249: "?\b\u6249", // 扉
+ 0x624a: "?\b\u624a", // 扊
+ 0x624b: "@\x00\u624b", // 手
+ 0x624c: "@\x00\u624c", // 扌
+ 0x624d: "@\x00\u624d", // 才
+ 0x624e: "@\x01\u624e", // 扎
+ 0x624f: "@\x03\u624f", // 扏
+ 0x6250: "@\x02\u6250", // 扐
+ 0x6251: "@\x02\u6251", // 扑
+ 0x6252: "@\x02\u6252", // 扒
+ 0x6253: "@\x02\u6253", // 打
+ 0x6254: "@\x02\u6254", // 扔
+ 0x6255: "@\x02\u6255", // 払
+ 0x6256: "@\x02\u6256", // 扖
+ 0x6257: "@\x03\u6257", // 扗
+ 0x6258: "@\x03\u6258", // 托
+ 0x6259: "@\x03\u6259", // 扙
+ 0x625a: "@\x03\u625a", // 扚
+ 0x625b: "@\x03\u625b", // 扛
+ 0x625c: "@\x03\u625c", // 扜
+ 0x625d: "@\x03\u625d", // 扝
+ 0x625e: "@\x03\u625e", // 扞
+ 0x625f: "@\x04\u625f", // 扟
+ 0x6260: "@\x03\u6260", // 扠
+ 0x6261: "@\x03\u6261", // 扡
+ 0x6262: "@\x03\u6262", // 扢
+ 0x6263: "@\x03\u6263", // 扣
+ 0x6264: "@\x03\u6264", // 扤
+ 0x6265: "@\x03\u6265", // 扥
+ 0x6266: "@\x03\u6266", // 扦
+ 0x6267: "@\x03\u6267", // 执
+ 0x6268: "@\x03\u6268", // 扨
+ 0x6269: "@\x03\u6269", // 扩
+ 0x626a: "@\x03\u626a", // 扪
+ 0x626b: "@\x03\u626b", // 扫
+ 0x626c: "@\x03\u626c", // 扬
+ 0x626d: "@\x04\u626d", // 扭
+ 0x626e: "@\x04\u626e", // 扮
+ 0x626f: "@\x04\u626f", // 扯
+ 0x6270: "@\x04\u6270", // 扰
+ 0x6271: "@\x04\u6271", // 扱
+ 0x6272: "@\x04\u6272", // 扲
+ 0x6273: "@\x04\u6273", // 扳
+ 0x6274: "@\x04\u6274", // 扴
+ 0x6275: "@\x04\u6275", // 扵
+ 0x6276: "@\x04\u6276", // 扶
+ 0x6277: "@\x04\u6277", // 扷
+ 0x6278: "@\x05\u6278", // 扸
+ 0x6279: "@\x04\u6279", // 批
+ 0x627a: "@\x04\u627a", // 扺
+ 0x627b: "@\x04\u627b", // 扻
+ 0x627c: "@\x04\u627c", // 扼
+ 0x627d: "@\x04\u627d", // 扽
+ 0x627e: "@\x04\u627e", // 找
+ 0x627f: "@\x04\u627f", // 承
+ 0x6280: "@\x04\u6280", // 技
+ 0x6281: "@\x04\u6281", // 抁
+ 0x6282: "@\x04\u6282", // 抂
+ 0x6283: "@\x04\u6283", // 抃
+ 0x6284: "@\x04\u6284", // 抄
+ 0x6285: "@\x04\u6285", // 抅
+ 0x6286: "@\x04\u6286", // 抆
+ 0x6287: "@\x04\u6287", // 抇
+ 0x6288: "@\x04\u6288", // 抈
+ 0x6289: "@\x04\u6289", // 抉
+ 0x628a: "@\x04\u628a", // 把
+ 0x628b: "@\x04\u628b", // 抋
+ 0x628c: "@\x04\u628c", // 抌
+ 0x628d: "@\x04\u628d", // 抍
+ 0x628e: "@\x04\u628e", // 抎
+ 0x628f: "@\x04\u628f", // 抏
+ 0x6290: "@\x04\u6290", // 抐
+ 0x6291: "@\x04\u6291", // 抑
+ 0x6292: "@\x04\u6292", // 抒
+ 0x6293: "@\x04\u6293", // 抓
+ 0x6294: "@\x04\u6294", // 抔
+ 0x6295: "@\x04\u6295", // 投
+ 0x6296: "@\x04\u6296", // 抖
+ 0x6297: "@\x04\u6297", // 抗
+ 0x6298: "@\x04\u6298", // 折
+ 0x6299: "@\x04\u6299", // 抙
+ 0x629a: "@\x04\u629a", // 抚
+ 0x629b: "@\x04\u629b", // 抛
+ 0x629c: "@\x04\u629c", // 抜
+ 0x629d: "@\x04\u629d", // 抝
+ 0x629e: "@\x04\u629e", // 択
+ 0x629f: "@\x04\u629f", // 抟
+ 0x62a0: "@\x04\u62a0", // 抠
+ 0x62a1: "@\x04\u62a1", // 抡
+ 0x62a2: "@\x04\u62a2", // 抢
+ 0x62a3: "@\x04\u62a3", // 抣
+ 0x62a4: "@\x04\u62a4", // 护
+ 0x62a5: "@\x04\u62a5", // 报
+ 0x62a6: "@\x05\u62a6", // 抦
+ 0x62a7: "@\x05\u62a7", // 抧
+ 0x62a8: "@\x05\u62a8", // 抨
+ 0x62a9: "@\x05\u62a9", // 抩
+ 0x62aa: "@\x05\u62aa", // 抪
+ 0x62ab: "@\x05\u62ab", // 披
+ 0x62ac: "@\x05\u62ac", // 抬
+ 0x62ad: "@\x05\u62ad", // 抭
+ 0x62ae: "@\x05\u62ae", // 抮
+ 0x62af: "@\x05\u62af", // 抯
+ 0x62b0: "@\x05\u62b0", // 抰
+ 0x62b1: "@\x05\u62b1", // 抱
+ 0x62b2: "@\x05\u62b2", // 抲
+ 0x62b3: "@\x05\u62b3", // 抳
+ 0x62b4: "@\x05\u62b4", // 抴
+ 0x62b5: "@\x05\u62b5", // 抵
+ 0x62b6: "@\x05\u62b6", // 抶
+ 0x62b7: "@\x05\u62b7", // 抷
+ 0x62b8: "@\x05\u62b8", // 抸
+ 0x62b9: "@\x05\u62b9", // 抹
+ 0x62ba: "@\x05\u62ba", // 抺
+ 0x62bb: "@\x05\u62bb", // 抻
+ 0x62bc: "@\x05\u62bc", // 押
+ 0x62bd: "@\x05\u62bd", // 抽
+ 0x62be: "@\x05\u62be", // 抾
+ 0x62bf: "@\x05\u62bf", // 抿
+ 0x62c0: "@\x05\u62c0", // 拀
+ 0x62c1: "@\x05\u62c1", // 拁
+ 0x62c2: "@\x05\u62c2", // 拂
+ 0x62c3: "@\x05\u62c3", // 拃
+ 0x62c4: "@\x05\u62c4", // 拄
+ 0x62c5: "@\x05\u62c5", // 担
+ 0x62c6: "@\x05\u62c6", // 拆
+ 0x62c7: "@\x05\u62c7", // 拇
+ 0x62c8: "@\x05\u62c8", // 拈
+ 0x62c9: "@\x05\u62c9", // 拉
+ 0x62ca: "@\x05\u62ca", // 拊
+ 0x62cb: "@\x05\u62cb", // 拋
+ 0x62cc: "@\x05\u62cc", // 拌
+ 0x62cd: "@\x05\u62cd", // 拍
+ 0x62ce: "@\x05\u62ce", // 拎
+ 0x62cf: "@\x05\u62cf", // 拏
+ 0x62d0: "@\x05\u62d0", // 拐
+ 0x62d1: "@\x05\u62d1", // 拑
+ 0x62d2: "@\x05\u62d2", // 拒
+ 0x62d3: "@\x05\u62d3", // 拓
+ 0x62d4: "@\x05\u62d4", // 拔
+ 0x62d5: "@\x05\u62d5", // 拕
+ 0x62d6: "@\x05\u62d6", // 拖
+ 0x62d7: "@\x05\u62d7", // 拗
+ 0x62d8: "@\x05\u62d8", // 拘
+ 0x62d9: "@\x05\u62d9", // 拙
+ 0x62da: "@\x05\u62da", // 拚
+ 0x62db: "@\x05\u62db", // 招
+ 0x62dc: "@\x05\u62dc", // 拜
+ 0x62dd: "@\x05\u62dd", // 拝
+ 0x62de: "@\x05\u62de", // 拞
+ 0x62df: "@\x05\u62df", // 拟
+ 0x62e0: "@\x05\u62e0", // 拠
+ 0x62e1: "@\x05\u62e1", // 拡
+ 0x62e2: "@\x05\u62e2", // 拢
+ 0x62e3: "@\x05\u62e3", // 拣
+ 0x62e4: "@\x05\u62e4", // 拤
+ 0x62e5: "@\x05\u62e5", // 拥
+ 0x62e6: "@\x05\u62e6", // 拦
+ 0x62e7: "@\x05\u62e7", // 拧
+ 0x62e8: "@\x05\u62e8", // 拨
+ 0x62e9: "@\x05\u62e9", // 择
+ 0x62ea: "@\x06\u62ea", // 拪
+ 0x62eb: "@\x06\u62eb", // 拫
+ 0x62ec: "@\x06\u62ec", // 括
+ 0x62ed: "@\x06\u62ed", // 拭
+ 0x62ee: "@\x06\u62ee", // 拮
+ 0x62ef: "@\x06\u62ef", // 拯
+ 0x62f0: "@\x06\u62f0", // 拰
+ 0x62f1: "@\x06\u62f1", // 拱
+ 0x62f2: "@\x06\u62f2", // 拲
+ 0x62f3: "@\x06\u62f3", // 拳
+ 0x62f4: "@\x06\u62f4", // 拴
+ 0x62f5: "@\x06\u62f5", // 拵
+ 0x62f6: "@\x06\u62f6", // 拶
+ 0x62f7: "@\x06\u62f7", // 拷
+ 0x62f8: "@\x06\u62f8", // 拸
+ 0x62f9: "@\x06\u62f9", // 拹
+ 0x62fa: "@\x06\u62fa", // 拺
+ 0x62fb: "@\x06\u62fb", // 拻
+ 0x62fc: "@\x06\u62fc", // 拼
+ 0x62fd: "@\x06\u62fd", // 拽
+ 0x62fe: "@\x06\u62fe", // 拾
+ 0x62ff: "@\x06\u62ff", // 拿
+ 0x6300: "@\x06\u6300", // 挀
+ 0x6301: "@\x06\u6301", // 持
+ 0x6302: "@\x06\u6302", // 挂
+ 0x6303: "@\x06\u6303", // 挃
+ 0x6304: "@\x06\u6304", // 挄
+ 0x6305: "@\x06\u6305", // 挅
+ 0x6306: "@\x06\u6306", // 挆
+ 0x6307: "@\x06\u6307", // 指
+ 0x6308: "@\x06\u6308", // 挈
+ 0x6309: "@\x06\u6309", // 按
+ 0x630a: "@\x06\u630a", // 挊
+ 0x630b: "@\x06\u630b", // 挋
+ 0x630c: "@\x06\u630c", // 挌
+ 0x630d: "@\x06\u630d", // 挍
+ 0x630e: "@\x06\u630e", // 挎
+ 0x630f: "@\x06\u630f", // 挏
+ 0x6310: "@\x06\u6310", // 挐
+ 0x6311: "@\x06\u6311", // 挑
+ 0x6312: "@\x06\u6312", // 挒
+ 0x6313: "@\x06\u6313", // 挓
+ 0x6314: "@\x06\u6314", // 挔
+ 0x6315: "@\x06\u6315", // 挕
+ 0x6316: "@\x06\u6316", // 挖
+ 0x6317: "@\x06\u6317", // 挗
+ 0x6318: "@\x06\u6318", // 挘
+ 0x6319: "@\x06\u6319", // 挙
+ 0x631a: "@\x06\u631a", // 挚
+ 0x631b: "@\x06\u631b", // 挛
+ 0x631c: "@\x06\u631c", // 挜
+ 0x631d: "@\x06\u631d", // 挝
+ 0x631e: "@\x06\u631e", // 挞
+ 0x631f: "@\x06\u631f", // 挟
+ 0x6320: "@\x06\u6320", // 挠
+ 0x6321: "@\x06\u6321", // 挡
+ 0x6322: "@\x06\u6322", // 挢
+ 0x6323: "@\x06\u6323", // 挣
+ 0x6324: "@\x06\u6324", // 挤
+ 0x6325: "@\x06\u6325", // 挥
+ 0x6326: "@\x06\u6326", // 挦
+ 0x6327: "@\x06\u6327", // 挧
+ 0x6328: "@\a\u6328", // 挨
+ 0x6329: "@\a\u6329", // 挩
+ 0x632a: "@\a\u632a", // 挪
+ 0x632b: "@\a\u632b", // 挫
+ 0x632c: "@\a\u632c", // 挬
+ 0x632d: "@\a\u632d", // 挭
+ 0x632e: "@\a\u632e", // 挮
+ 0x632f: "@\a\u632f", // 振
+ 0x6330: "@\a\u6330", // 挰
+ 0x6331: "@\a\u6331", // 挱
+ 0x6332: "@\a\u6332", // 挲
+ 0x6333: "@\a\u6333", // 挳
+ 0x6334: "@\a\u6334", // 挴
+ 0x6335: "@\a\u6335", // 挵
+ 0x6336: "@\a\u6336", // 挶
+ 0x6337: "@\a\u6337", // 挷
+ 0x6338: "@\a\u6338", // 挸
+ 0x6339: "@\a\u6339", // 挹
+ 0x633a: "@\a\u633a", // 挺
+ 0x633b: "@\a\u633b", // 挻
+ 0x633c: "@\a\u633c", // 挼
+ 0x633d: "@\a\u633d", // 挽
+ 0x633e: "@\a\u633e", // 挾
+ 0x633f: "@\a\u633f", // 挿
+ 0x6340: "@\a\u6340", // 捀
+ 0x6341: "@\a\u6341", // 捁
+ 0x6342: "@\a\u6342", // 捂
+ 0x6343: "@\a\u6343", // 捃
+ 0x6344: "@\a\u6344", // 捄
+ 0x6345: "@\a\u6345", // 捅
+ 0x6346: "@\a\u6346", // 捆
+ 0x6347: "@\a\u6347", // 捇
+ 0x6348: "@\a\u6348", // 捈
+ 0x6349: "@\a\u6349", // 捉
+ 0x634a: "@\a\u634a", // 捊
+ 0x634b: "@\a\u634b", // 捋
+ 0x634c: "@\a\u634c", // 捌
+ 0x634d: "@\a\u634d", // 捍
+ 0x634e: "@\a\u634e", // 捎
+ 0x634f: "@\a\u634f", // 捏
+ 0x6350: "@\a\u6350", // 捐
+ 0x6351: "@\a\u6351", // 捑
+ 0x6352: "@\a\u6352", // 捒
+ 0x6353: "@\a\u6353", // 捓
+ 0x6354: "@\a\u6354", // 捔
+ 0x6355: "@\a\u6355", // 捕
+ 0x6356: "@\a\u6356", // 捖
+ 0x6357: "@\a\u6357", // 捗
+ 0x6358: "@\a\u6358", // 捘
+ 0x6359: "@\a\u6359", // 捙
+ 0x635a: "@\a\u635a", // 捚
+ 0x635b: "@\a\u635b", // 捛
+ 0x635c: "@\a\u635c", // 捜
+ 0x635d: "@\a\u635d", // 捝
+ 0x635e: "@\a\u635e", // 捞
+ 0x635f: "@\a\u635f", // 损
+ 0x6360: "@\a\u6360", // 捠
+ 0x6361: "@\a\u6361", // 捡
+ 0x6362: "@\a\u6362", // 换
+ 0x6363: "@\a\u6363", // 捣
+ 0x6364: "@\a\u6364", // 捤
+ 0x6365: "@\b\u6365", // 捥
+ 0x6366: "@\b\u6366", // 捦
+ 0x6367: "@\b\u6367", // 捧
+ 0x6368: "@\b\u6368", // 捨
+ 0x6369: "@\b\u6369", // 捩
+ 0x636a: "@\b\u636a", // 捪
+ 0x636b: "@\b\u636b", // 捫
+ 0x636c: "@\b\u636c", // 捬
+ 0x636d: "@\b\u636d", // 捭
+ 0x636e: "@\b\u636e", // 据
+ 0x636f: "@\b\u636f", // 捯
+ 0x6370: "@\b\u6370", // 捰
+ 0x6371: "@\b\u6371", // 捱
+ 0x6372: "@\b\u6372", // 捲
+ 0x6373: "@\b\u6373", // 捳
+ 0x6374: "@\b\u6374", // 捴
+ 0x6375: "@\b\u6375", // 捵
+ 0x6376: "@\b\u6376", // 捶
+ 0x6377: "@\b\u6377", // 捷
+ 0x6378: "@\b\u6378", // 捸
+ 0x6379: "@\b\u6379", // 捹
+ 0x637a: "@\b\u637a", // 捺
+ 0x637b: "@\b\u637b", // 捻
+ 0x637c: "@\b\u637c", // 捼
+ 0x637d: "@\b\u637d", // 捽
+ 0x637e: "@\b\u637e", // 捾
+ 0x637f: "@\b\u637f", // 捿
+ 0x6380: "@\b\u6380", // 掀
+ 0x6381: "@\b\u6381", // 掁
+ 0x6382: "@\b\u6382", // 掂
+ 0x6383: "@\b\u6383", // 掃
+ 0x6384: "@\b\u6384", // 掄
+ 0x6385: "@\b\u6385", // 掅
+ 0x6386: "@\b\u6386", // 掆
+ 0x6387: "@\b\u6387", // 掇
+ 0x6388: "@\b\u6388", // 授
+ 0x6389: "@\b\u6389", // 掉
+ 0x638a: "@\b\u638a", // 掊
+ 0x638b: "@\b\u638b", // 掋
+ 0x638c: "@\b\u638c", // 掌
+ 0x638d: "@\b\u638d", // 掍
+ 0x638e: "@\b\u638e", // 掎
+ 0x638f: "@\b\u638f", // 掏
+ 0x6390: "@\b\u6390", // 掐
+ 0x6391: "@\b\u6391", // 掑
+ 0x6392: "@\b\u6392", // 排
+ 0x6393: "@\b\u6393", // 掓
+ 0x6394: "@\b\u6394", // 掔
+ 0x6395: "@\b\u6395", // 掕
+ 0x6396: "@\b\u6396", // 掖
+ 0x6397: "@\b\u6397", // 掗
+ 0x6398: "@\b\u6398", // 掘
+ 0x6399: "@\b\u6399", // 掙
+ 0x639a: "@\b\u639a", // 掚
+ 0x639b: "@\b\u639b", // 掛
+ 0x639c: "@\b\u639c", // 掜
+ 0x639d: "@\b\u639d", // 掝
+ 0x639e: "@\b\u639e", // 掞
+ 0x639f: "@\b\u639f", // 掟
+ 0x63a0: "@\b\u63a0", // 掠
+ 0x63a1: "@\b\u63a1", // 採
+ 0x63a2: "@\b\u63a2", // 探
+ 0x63a3: "@\b\u63a3", // 掣
+ 0x63a4: "@\b\u63a4", // 掤
+ 0x63a5: "@\b\u63a5", // 接
+ 0x63a6: "@\b\u63a6", // 掦
+ 0x63a7: "@\b\u63a7", // 控
+ 0x63a8: "@\b\u63a8", // 推
+ 0x63a9: "@\b\u63a9", // 掩
+ 0x63aa: "@\b\u63aa", // 措
+ 0x63ab: "@\b\u63ab", // 掫
+ 0x63ac: "@\b\u63ac", // 掬
+ 0x63ad: "@\b\u63ad", // 掭
+ 0x63ae: "@\b\u63ae", // 掮
+ 0x63af: "@\b\u63af", // 掯
+ 0x63b0: "@\b\u63b0", // 掰
+ 0x63b1: "@\b\u63b1", // 掱
+ 0x63b2: "@\t\u63b2", // 掲
+ 0x63b3: "@\b\u63b3", // 掳
+ 0x63b4: "@\b\u63b4", // 掴
+ 0x63b5: "@\b\u63b5", // 掵
+ 0x63b6: "@\b\u63b6", // 掶
+ 0x63b7: "@\b\u63b7", // 掷
+ 0x63b8: "@\b\u63b8", // 掸
+ 0x63b9: "@\b\u63b9", // 掹
+ 0x63ba: "@\b\u63ba", // 掺
+ 0x63bb: "@\b\u63bb", // 掻
+ 0x63bc: "@\b\u63bc", // 掼
+ 0x63bd: "@\b\u63bd", // 掽
+ 0x63be: "@\t\u63be", // 掾
+ 0x63bf: "@\t\u63bf", // 掿
+ 0x63c0: "@\t\u63c0", // 揀
+ 0x63c1: "@\t\u63c1", // 揁
+ 0x63c2: "@\t\u63c2", // 揂
+ 0x63c3: "@\t\u63c3", // 揃
+ 0x63c4: "@\t\u63c4", // 揄
+ 0x63c5: "@\v\u63c5", // 揅
+ 0x63c6: "@\t\u63c6", // 揆
+ 0x63c7: "@\t\u63c7", // 揇
+ 0x63c8: "@\t\u63c8", // 揈
+ 0x63c9: "@\t\u63c9", // 揉
+ 0x63ca: "@\t\u63ca", // 揊
+ 0x63cb: "@\t\u63cb", // 揋
+ 0x63cc: "@\t\u63cc", // 揌
+ 0x63cd: "@\t\u63cd", // 揍
+ 0x63ce: "@\t\u63ce", // 揎
+ 0x63cf: "@\t\u63cf", // 描
+ 0x63d0: "@\t\u63d0", // 提
+ 0x63d1: "@\t\u63d1", // 揑
+ 0x63d2: "@\t\u63d2", // 插
+ 0x63d3: "@\t\u63d3", // 揓
+ 0x63d4: "@\t\u63d4", // 揔
+ 0x63d5: "@\t\u63d5", // 揕
+ 0x63d6: "@\t\u63d6", // 揖
+ 0x63d7: "@\t\u63d7", // 揗
+ 0x63d8: "@\t\u63d8", // 揘
+ 0x63d9: "@\t\u63d9", // 揙
+ 0x63da: "@\t\u63da", // 揚
+ 0x63db: "@\t\u63db", // 換
+ 0x63dc: "@\t\u63dc", // 揜
+ 0x63dd: "@\t\u63dd", // 揝
+ 0x63de: "@\t\u63de", // 揞
+ 0x63df: "@\t\u63df", // 揟
+ 0x63e0: "@\t\u63e0", // 揠
+ 0x63e1: "@\t\u63e1", // 握
+ 0x63e2: "@\t\u63e2", // 揢
+ 0x63e3: "@\t\u63e3", // 揣
+ 0x63e4: "@\t\u63e4", // 揤
+ 0x63e5: "@\t\u63e5", // 揥
+ 0x63e6: "@\t\u63e6", // 揦
+ 0x63e7: "@\t\u63e7", // 揧
+ 0x63e8: "@\t\u63e8", // 揨
+ 0x63e9: "@\t\u63e9", // 揩
+ 0x63ea: "@\t\u63ea", // 揪
+ 0x63eb: "@\t\u63eb", // 揫
+ 0x63ec: "@\t\u63ec", // 揬
+ 0x63ed: "@\t\u63ed", // 揭
+ 0x63ee: "@\t\u63ee", // 揮
+ 0x63ef: "@\t\u63ef", // 揯
+ 0x63f0: "@\t\u63f0", // 揰
+ 0x63f1: "@\t\u63f1", // 揱
+ 0x63f2: "@\t\u63f2", // 揲
+ 0x63f3: "@\t\u63f3", // 揳
+ 0x63f4: "@\t\u63f4", // 援
+ 0x63f5: "@\t\u63f5", // 揵
+ 0x63f6: "@\t\u63f6", // 揶
+ 0x63f7: "@\t\u63f7", // 揷
+ 0x63f8: "@\t\u63f8", // 揸
+ 0x63f9: "@\t\u63f9", // 揹
+ 0x63fa: "@\t\u63fa", // 揺
+ 0x63fb: "@\t\u63fb", // 揻
+ 0x63fc: "@\t\u63fc", // 揼
+ 0x63fd: "@\t\u63fd", // 揽
+ 0x63fe: "@\t\u63fe", // 揾
+ 0x63ff: "@\t\u63ff", // 揿
+ 0x6400: "@\t\u6400", // 搀
+ 0x6401: "@\t\u6401", // 搁
+ 0x6402: "@\t\u6402", // 搂
+ 0x6403: "@\t\u6403", // 搃
+ 0x6404: "@\t\u6404", // 搄
+ 0x6405: "@\t\u6405", // 搅
+ 0x6406: "@\n\u6406", // 搆
+ 0x6407: "@\n\u6407", // 搇
+ 0x6408: "@\n\u6408", // 搈
+ 0x6409: "@\n\u6409", // 搉
+ 0x640a: "@\n\u640a", // 搊
+ 0x640b: "@\n\u640b", // 搋
+ 0x640c: "@\n\u640c", // 搌
+ 0x640d: "@\n\u640d", // 損
+ 0x640e: "@\n\u640e", // 搎
+ 0x640f: "@\n\u640f", // 搏
+ 0x6410: "@\n\u6410", // 搐
+ 0x6411: "@\n\u6411", // 搑
+ 0x6412: "@\n\u6412", // 搒
+ 0x6413: "@\n\u6413", // 搓
+ 0x6414: "@\n\u6414", // 搔
+ 0x6415: "@\n\u6415", // 搕
+ 0x6416: "@\n\u6416", // 搖
+ 0x6417: "@\n\u6417", // 搗
+ 0x6418: "@\n\u6418", // 搘
+ 0x6419: "@\n\u6419", // 搙
+ 0x641a: "@\n\u641a", // 搚
+ 0x641b: "@\n\u641b", // 搛
+ 0x641c: "@\n\u641c", // 搜
+ 0x641d: "@\n\u641d", // 搝
+ 0x641e: "@\n\u641e", // 搞
+ 0x641f: "@\n\u641f", // 搟
+ 0x6420: "@\n\u6420", // 搠
+ 0x6421: "@\n\u6421", // 搡
+ 0x6422: "@\n\u6422", // 搢
+ 0x6423: "@\n\u6423", // 搣
+ 0x6424: "@\n\u6424", // 搤
+ 0x6425: "@\n\u6425", // 搥
+ 0x6426: "@\n\u6426", // 搦
+ 0x6427: "@\n\u6427", // 搧
+ 0x6428: "@\n\u6428", // 搨
+ 0x6429: "@\n\u6429", // 搩
+ 0x642a: "@\n\u642a", // 搪
+ 0x642b: "@\n\u642b", // 搫
+ 0x642c: "@\n\u642c", // 搬
+ 0x642d: "@\n\u642d", // 搭
+ 0x642e: "@\n\u642e", // 搮
+ 0x642f: "@\n\u642f", // 搯
+ 0x6430: "@\n\u6430", // 搰
+ 0x6431: "@\f\u6431", // 搱
+ 0x6432: "@\n\u6432", // 搲
+ 0x6433: "@\n\u6433", // 搳
+ 0x6434: "@\n\u6434", // 搴
+ 0x6435: "@\n\u6435", // 搵
+ 0x6436: "@\n\u6436", // 搶
+ 0x6437: "@\n\u6437", // 搷
+ 0x6438: "@\n\u6438", // 搸
+ 0x6439: "@\n\u6439", // 搹
+ 0x643a: "@\n\u643a", // 携
+ 0x643b: "@\n\u643b", // 搻
+ 0x643c: "@\n\u643c", // 搼
+ 0x643d: "@\n\u643d", // 搽
+ 0x643e: "@\n\u643e", // 搾
+ 0x643f: "@\n\u643f", // 搿
+ 0x6440: "@\n\u6440", // 摀
+ 0x6441: "@\n\u6441", // 摁
+ 0x6442: "@\n\u6442", // 摂
+ 0x6443: "@\n\u6443", // 摃
+ 0x6444: "@\n\u6444", // 摄
+ 0x6445: "@\n\u6445", // 摅
+ 0x6446: "@\n\u6446", // 摆
+ 0x6447: "@\n\u6447", // 摇
+ 0x6448: "@\n\u6448", // 摈
+ 0x6449: "@\n\u6449", // 摉
+ 0x644a: "@\n\u644a", // 摊
+ 0x644b: "@\v\u644b", // 摋
+ 0x644c: "@\v\u644c", // 摌
+ 0x644d: "@\v\u644d", // 摍
+ 0x644e: "@\v\u644e", // 摎
+ 0x644f: "@\v\u644f", // 摏
+ 0x6450: "@\v\u6450", // 摐
+ 0x6451: "@\v\u6451", // 摑
+ 0x6452: "@\t\u6452", // 摒
+ 0x6453: "@\v\u6453", // 摓
+ 0x6454: "@\v\u6454", // 摔
+ 0x6455: "@\v\u6455", // 摕
+ 0x6456: "@\f\u6456", // 摖
+ 0x6457: "@\v\u6457", // 摗
+ 0x6458: "@\v\u6458", // 摘
+ 0x6459: "@\v\u6459", // 摙
+ 0x645a: "@\v\u645a", // 摚
+ 0x645b: "@\v\u645b", // 摛
+ 0x645c: "@\v\u645c", // 摜
+ 0x645d: "@\v\u645d", // 摝
+ 0x645e: "@\v\u645e", // 摞
+ 0x645f: "@\v\u645f", // 摟
+ 0x6460: "@\v\u6460", // 摠
+ 0x6461: "@\v\u6461", // 摡
+ 0x6462: "@\v\u6462", // 摢
+ 0x6463: "@\v\u6463", // 摣
+ 0x6464: "@\v\u6464", // 摤
+ 0x6465: "@\v\u6465", // 摥
+ 0x6466: "@\v\u6466", // 摦
+ 0x6467: "@\v\u6467", // 摧
+ 0x6468: "@\v\u6468", // 摨
+ 0x6469: "@\v\u6469", // 摩
+ 0x646a: "@\v\u646a", // 摪
+ 0x646b: "@\v\u646b", // 摫
+ 0x646c: "@\v\u646c", // 摬
+ 0x646d: "@\v\u646d", // 摭
+ 0x646e: "@\v\u646e", // 摮
+ 0x646f: "@\v\u646f", // 摯
+ 0x6470: "@\v\u6470", // 摰
+ 0x6471: "@\v\u6471", // 摱
+ 0x6472: "@\v\u6472", // 摲
+ 0x6473: "@\v\u6473", // 摳
+ 0x6474: "@\v\u6474", // 摴
+ 0x6475: "@\v\u6475", // 摵
+ 0x6476: "@\v\u6476", // 摶
+ 0x6477: "@\v\u6477", // 摷
+ 0x6478: "@\v\u6478", // 摸
+ 0x6479: "@\v\u6479", // 摹
+ 0x647a: "@\v\u647a", // 摺
+ 0x647b: "@\v\u647b", // 摻
+ 0x647c: "@\v\u647c", // 摼
+ 0x647d: "@\v\u647d", // 摽
+ 0x647e: "@\v\u647e", // 摾
+ 0x647f: "@\v\u647f", // 摿
+ 0x6480: "@\v\u6480", // 撀
+ 0x6481: "@\v\u6481", // 撁
+ 0x6482: "@\v\u6482", // 撂
+ 0x6483: "@\v\u6483", // 撃
+ 0x6484: "@\v\u6484", // 撄
+ 0x6485: "@\f\u6485", // 撅
+ 0x6486: "@\f\u6486", // 撆
+ 0x6487: "@\v\u6487", // 撇
+ 0x6488: "@\f\u6488", // 撈
+ 0x6489: "@\f\u6489", // 撉
+ 0x648a: "@\f\u648a", // 撊
+ 0x648b: "@\f\u648b", // 撋
+ 0x648c: "@\f\u648c", // 撌
+ 0x648d: "@\f\u648d", // 撍
+ 0x648e: "@\f\u648e", // 撎
+ 0x648f: "@\f\u648f", // 撏
+ 0x6490: "@\f\u6490", // 撐
+ 0x6491: "@\f\u6491", // 撑
+ 0x6492: "@\f\u6492", // 撒
+ 0x6493: "@\f\u6493", // 撓
+ 0x6494: "@\f\u6494", // 撔
+ 0x6495: "@\f\u6495", // 撕
+ 0x6496: "@\f\u6496", // 撖
+ 0x6497: "@\f\u6497", // 撗
+ 0x6498: "@\f\u6498", // 撘
+ 0x6499: "@\f\u6499", // 撙
+ 0x649a: "@\f\u649a", // 撚
+ 0x649b: "@\f\u649b", // 撛
+ 0x649c: "@\f\u649c", // 撜
+ 0x649d: "@\f\u649d", // 撝
+ 0x649e: "@\f\u649e", // 撞
+ 0x649f: "@\f\u649f", // 撟
+ 0x64a0: "@\f\u64a0", // 撠
+ 0x64a1: "@\f\u64a1", // 撡
+ 0x64a2: "@\f\u64a2", // 撢
+ 0x64a3: "@\f\u64a3", // 撣
+ 0x64a4: "@\f\u64a4", // 撤
+ 0x64a5: "@\f\u64a5", // 撥
+ 0x64a6: "@\f\u64a6", // 撦
+ 0x64a7: "@\f\u64a7", // 撧
+ 0x64a8: "@\f\u64a8", // 撨
+ 0x64a9: "@\f\u64a9", // 撩
+ 0x64aa: "@\f\u64aa", // 撪
+ 0x64ab: "@\f\u64ab", // 撫
+ 0x64ac: "@\f\u64ac", // 撬
+ 0x64ad: "@\f\u64ad", // 播
+ 0x64ae: "@\f\u64ae", // 撮
+ 0x64af: "@\f\u64af", // 撯
+ 0x64b0: "@\f\u64b0", // 撰
+ 0x64b1: "@\f\u64b1", // 撱
+ 0x64b2: "@\f\u64b2", // 撲
+ 0x64b3: "@\f\u64b3", // 撳
+ 0x64b4: "@\f\u64b4", // 撴
+ 0x64b5: "@\f\u64b5", // 撵
+ 0x64b6: "@\f\u64b6", // 撶
+ 0x64b7: "@\f\u64b7", // 撷
+ 0x64b8: "@\f\u64b8", // 撸
+ 0x64b9: "@\f\u64b9", // 撹
+ 0x64ba: "@\f\u64ba", // 撺
+ 0x64bb: "@\r\u64bb", // 撻
+ 0x64bc: "@\r\u64bc", // 撼
+ 0x64bd: "@\r\u64bd", // 撽
+ 0x64be: "@\r\u64be", // 撾
+ 0x64bf: "@\r\u64bf", // 撿
+ 0x64c0: "@\r\u64c0", // 擀
+ 0x64c1: "@\r\u64c1", // 擁
+ 0x64c2: "@\r\u64c2", // 擂
+ 0x64c3: "@\r\u64c3", // 擃
+ 0x64c4: "@\r\u64c4", // 擄
+ 0x64c5: "@\r\u64c5", // 擅
+ 0x64c6: "@\f\u64c6", // 擆
+ 0x64c7: "@\r\u64c7", // 擇
+ 0x64c8: "@\r\u64c8", // 擈
+ 0x64c9: "@\r\u64c9", // 擉
+ 0x64ca: "@\r\u64ca", // 擊
+ 0x64cb: "@\r\u64cb", // 擋
+ 0x64cc: "@\r\u64cc", // 擌
+ 0x64cd: "@\r\u64cd", // 操
+ 0x64ce: "@\r\u64ce", // 擎
+ 0x64cf: "@\r\u64cf", // 擏
+ 0x64d0: "@\r\u64d0", // 擐
+ 0x64d1: "@\r\u64d1", // 擑
+ 0x64d2: "@\r\u64d2", // 擒
+ 0x64d3: "@\r\u64d3", // 擓
+ 0x64d4: "@\r\u64d4", // 擔
+ 0x64d5: "@\r\u64d5", // 擕
+ 0x64d6: "@\r\u64d6", // 擖
+ 0x64d7: "@\r\u64d7", // 擗
+ 0x64d8: "@\r\u64d8", // 擘
+ 0x64d9: "@\r\u64d9", // 擙
+ 0x64da: "@\r\u64da", // 據
+ 0x64db: "@\r\u64db", // 擛
+ 0x64dc: "@\r\u64dc", // 擜
+ 0x64dd: "@\r\u64dd", // 擝
+ 0x64de: "@\r\u64de", // 擞
+ 0x64df: "@\x0e\u64df", // 擟
+ 0x64e0: "@\x0e\u64e0", // 擠
+ 0x64e1: "@\x0e\u64e1", // 擡
+ 0x64e2: "@\x0e\u64e2", // 擢
+ 0x64e3: "@\x0e\u64e3", // 擣
+ 0x64e4: "@\x0e\u64e4", // 擤
+ 0x64e5: "@\x0f\u64e5", // 擥
+ 0x64e6: "@\x0e\u64e6", // 擦
+ 0x64e7: "@\x0e\u64e7", // 擧
+ 0x64e8: "@\x0e\u64e8", // 擨
+ 0x64e9: "@\x0e\u64e9", // 擩
+ 0x64ea: "@\x0e\u64ea", // 擪
+ 0x64eb: "@\x0e\u64eb", // 擫
+ 0x64ec: "@\x0e\u64ec", // 擬
+ 0x64ed: "@\x0e\u64ed", // 擭
+ 0x64ee: "@\x0e\u64ee", // 擮
+ 0x64ef: "@\x0e\u64ef", // 擯
+ 0x64f0: "@\x0e\u64f0", // 擰
+ 0x64f1: "@\x0e\u64f1", // 擱
+ 0x64f2: "@\x0f\u64f2", // 擲
+ 0x64f3: "@\x0f\u64f3", // 擳
+ 0x64f4: "@\x0f\u64f4", // 擴
+ 0x64f5: "@\x0f\u64f5", // 擵
+ 0x64f6: "@\x0f\u64f6", // 擶
+ 0x64f7: "@\x0f\u64f7", // 擷
+ 0x64f8: "@\x0f\u64f8", // 擸
+ 0x64f9: "@\x0f\u64f9", // 擹
+ 0x64fa: "@\x0f\u64fa", // 擺
+ 0x64fb: "@\x0f\u64fb", // 擻
+ 0x64fc: "@\x0f\u64fc", // 擼
+ 0x64fd: "@\x0f\u64fd", // 擽
+ 0x64fe: "@\x0f\u64fe", // 擾
+ 0x64ff: "@\x0f\u64ff", // 擿
+ 0x6500: "@\x0f\u6500", // 攀
+ 0x6501: "@\x0f\u6501", // 攁
+ 0x6502: "@\x0f\u6502", // 攂
+ 0x6503: "@\x0f\u6503", // 攃
+ 0x6504: "@\x0f\u6504", // 攄
+ 0x6505: "@\x0f\u6505", // 攅
+ 0x6506: "@\x0f\u6506", // 攆
+ 0x6507: "@\x10\u6507", // 攇
+ 0x6508: "@\x10\u6508", // 攈
+ 0x6509: "@\x10\u6509", // 攉
+ 0x650a: "@\x10\u650a", // 攊
+ 0x650b: "@\x10\u650b", // 攋
+ 0x650c: "@\x10\u650c", // 攌
+ 0x650d: "@\x10\u650d", // 攍
+ 0x650e: "@\x10\u650e", // 攎
+ 0x650f: "@\x10\u650f", // 攏
+ 0x6510: "@\x10\u6510", // 攐
+ 0x6511: "@\x11\u6511", // 攑
+ 0x6512: "@\x10\u6512", // 攒
+ 0x6513: "@\x11\u6513", // 攓
+ 0x6514: "@\x11\u6514", // 攔
+ 0x6515: "@\x11\u6515", // 攕
+ 0x6516: "@\x11\u6516", // 攖
+ 0x6517: "@\x11\u6517", // 攗
+ 0x6518: "@\x11\u6518", // 攘
+ 0x6519: "@\x11\u6519", // 攙
+ 0x651a: "@\x11\u651a", // 攚
+ 0x651b: "@\x12\u651b", // 攛
+ 0x651c: "@\x12\u651c", // 攜
+ 0x651d: "@\x12\u651d", // 攝
+ 0x651e: "@\x13\u651e", // 攞
+ 0x651f: "@\x13\u651f", // 攟
+ 0x6520: "@\x13\u6520", // 攠
+ 0x6521: "@\x13\u6521", // 攡
+ 0x6522: "@\x13\u6522", // 攢
+ 0x6523: "@\x13\u6523", // 攣
+ 0x6524: "@\x13\u6524", // 攤
+ 0x6525: "@\x14\u6525", // 攥
+ 0x6526: "@\x13\u6526", // 攦
+ 0x6527: "@\x13\u6527", // 攧
+ 0x6528: "@\x14\u6528", // 攨
+ 0x6529: "@\x14\u6529", // 攩
+ 0x652a: "@\x14\u652a", // 攪
+ 0x652b: "@\x14\u652b", // 攫
+ 0x652c: "@\x15\u652c", // 攬
+ 0x652d: "@\x15\u652d", // 攭
+ 0x652e: "@\x16\u652e", // 攮
+ 0x652f: "A\x00\u652f", // 支
+ 0x6530: "A\x02\u6530", // 攰
+ 0x6531: "A\x05\u6531", // 攱
+ 0x6532: "A\b\u6532", // 攲
+ 0x6533: "A\f\u6533", // 攳
+ 0x6534: "B\x00\u6534", // 攴
+ 0x6535: "B\x00\u6535", // 攵
+ 0x6536: "B\x02\u6536", // 收
+ 0x6537: "B\x02\u6537", // 攷
+ 0x6538: "B\x03\u6538", // 攸
+ 0x6539: "B\x03\u6539", // 改
+ 0x653a: "B\x03\u653a", // 攺
+ 0x653b: "B\x03\u653b", // 攻
+ 0x653c: "B\x03\u653c", // 攼
+ 0x653d: "B\x04\u653d", // 攽
+ 0x653e: "B\x04\u653e", // 放
+ 0x653f: "B\x04\u653f", // 政
+ 0x6540: "B\x05\u6540", // 敀
+ 0x6541: "B\x05\u6541", // 敁
+ 0x6542: "B\x05\u6542", // 敂
+ 0x6543: "B\x05\u6543", // 敃
+ 0x6544: "B\x05\u6544", // 敄
+ 0x6545: "B\x05\u6545", // 故
+ 0x6546: "B\x06\u6546", // 敆
+ 0x6547: "B\x06\u6547", // 敇
+ 0x6548: "B\x06\u6548", // 效
+ 0x6549: "B\x06\u6549", // 敉
+ 0x654a: "B\x06\u654a", // 敊
+ 0x654b: "B\x06\u654b", // 敋
+ 0x654c: "B\x06\u654c", // 敌
+ 0x654d: "B\a\u654d", // 敍
+ 0x654e: "B\a\u654e", // 敎
+ 0x654f: "B\a\u654f", // 敏
+ 0x6550: "B\a\u6550", // 敐
+ 0x6551: "B\a\u6551", // 救
+ 0x6552: "B\a\u6552", // 敒
+ 0x6553: "B\a\u6553", // 敓
+ 0x6554: "B\a\u6554", // 敔
+ 0x6555: "B\a\u6555", // 敕
+ 0x6556: "B\a\u6556", // 敖
+ 0x6557: "B\a\u6557", // 敗
+ 0x6558: "B\a\u6558", // 敘
+ 0x6559: "B\a\u6559", // 教
+ 0x655a: "B\a\u655a", // 敚
+ 0x655b: "B\a\u655b", // 敛
+ 0x655c: "B\b\u655c", // 敜
+ 0x655d: "B\b\u655d", // 敝
+ 0x655e: "B\b\u655e", // 敞
+ 0x655f: "B\b\u655f", // 敟
+ 0x6560: "B\b\u6560", // 敠
+ 0x6561: "B\b\u6561", // 敡
+ 0x6562: "B\b\u6562", // 敢
+ 0x6563: "B\b\u6563", // 散
+ 0x6564: "B\b\u6564", // 敤
+ 0x6565: "B\b\u6565", // 敥
+ 0x6566: "B\b\u6566", // 敦
+ 0x6567: "B\b\u6567", // 敧
+ 0x6568: "B\b\u6568", // 敨
+ 0x6569: "B\b\u6569", // 敩
+ 0x656a: "B\b\u656a", // 敪
+ 0x656b: "B\t\u656b", // 敫
+ 0x656c: "B\t\u656c", // 敬
+ 0x656d: "B\b\u656d", // 敭
+ 0x656e: "B\t\u656e", // 敮
+ 0x656f: "B\t\u656f", // 敯
+ 0x6570: "B\t\u6570", // 数
+ 0x6571: "B\n\u6571", // 敱
+ 0x6572: "B\n\u6572", // 敲
+ 0x6573: "B\n\u6573", // 敳
+ 0x6574: "B\v\u6574", // 整
+ 0x6575: "B\v\u6575", // 敵
+ 0x6576: "B\v\u6576", // 敶
+ 0x6577: "B\v\u6577", // 敷
+ 0x6578: "B\v\u6578", // 數
+ 0x6579: "B\v\u6579", // 敹
+ 0x657a: "B\v\u657a", // 敺
+ 0x657b: "B\v\u657b", // 敻
+ 0x657c: "B\f\u657c", // 敼
+ 0x657d: "B\f\u657d", // 敽
+ 0x657e: "B\f\u657e", // 敾
+ 0x657f: "B\f\u657f", // 敿
+ 0x6580: "B\r\u6580", // 斀
+ 0x6581: "B\r\u6581", // 斁
+ 0x6582: "B\r\u6582", // 斂
+ 0x6583: "B\x0e\u6583", // 斃
+ 0x6584: "B\x0f\u6584", // 斄
+ 0x6585: "B\x10\u6585", // 斅
+ 0x6586: "B\x10\u6586", // 斆
+ 0x6587: "C\x00\u6587", // 文
+ 0x6588: "C\x03\u6588", // 斈
+ 0x6589: "C\x04\u6589", // 斉
+ 0x658a: "C\x06\u658a", // 斊
+ 0x658b: "C\x06\u658b", // 斋
+ 0x658c: "C\a\u658c", // 斌
+ 0x658d: "C\a\u658d", // 斍
+ 0x658e: "C\a\u658e", // 斎
+ 0x658f: "C\a\u658f", // 斏
+ 0x6590: "C\b\u6590", // 斐
+ 0x6591: "C\b\u6591", // 斑
+ 0x6592: "C\t\u6592", // 斒
+ 0x6593: "C\f\u6593", // 斓
+ 0x6594: "C\x0f\u6594", // 斔
+ 0x6595: "C\x11\u6595", // 斕
+ 0x6596: "C\x13\u6596", // 斖
+ 0x6597: "D\x00\u6597", // 斗
+ 0x6598: "D\x03\u6598", // 斘
+ 0x6599: "D\x06\u6599", // 料
+ 0x659a: "D\x06\u659a", // 斚
+ 0x659b: "D\a\u659b", // 斛
+ 0x659c: "D\a\u659c", // 斜
+ 0x659d: "D\b\u659d", // 斝
+ 0x659e: "D\t\u659e", // 斞
+ 0x659f: "D\t\u659f", // 斟
+ 0x65a0: "D\n\u65a0", // 斠
+ 0x65a1: "D\n\u65a1", // 斡
+ 0x65a2: "D\f\u65a2", // 斢
+ 0x65a3: "D\r\u65a3", // 斣
+ 0x65a4: "E\x00\u65a4", // 斤
+ 0x65a5: "E\x01\u65a5", // 斥
+ 0x65a6: "E\x04\u65a6", // 斦
+ 0x65a7: "E\x04\u65a7", // 斧
+ 0x65a8: "E\x04\u65a8", // 斨
+ 0x65a9: "E\x04\u65a9", // 斩
+ 0x65aa: "E\x05\u65aa", // 斪
+ 0x65ab: "E\x05\u65ab", // 斫
+ 0x65ac: "E\a\u65ac", // 斬
+ 0x65ad: "E\a\u65ad", // 断
+ 0x65ae: "E\b\u65ae", // 斮
+ 0x65af: "E\b\u65af", // 斯
+ 0x65b0: "E\t\u65b0", // 新
+ 0x65b1: "E\t\u65b1", // 斱
+ 0x65b2: "E\n\u65b2", // 斲
+ 0x65b3: "E\v\u65b3", // 斳
+ 0x65b4: "E\f\u65b4", // 斴
+ 0x65b5: "E\r\u65b5", // 斵
+ 0x65b6: "E\r\u65b6", // 斶
+ 0x65b7: "E\x0e\u65b7", // 斷
+ 0x65b8: "E\x15\u65b8", // 斸
+ 0x65b9: "F\x00\u65b9", // 方
+ 0x65ba: "F\x04\u65ba", // 斺
+ 0x65bb: "F\x04\u65bb", // 斻
+ 0x65bc: "F\x04\u65bc", // 於
+ 0x65bd: "F\x05\u65bd", // 施
+ 0x65be: "F\x05\u65be", // 斾
+ 0x65bf: "F\x05\u65bf", // 斿
+ 0x65c0: "F\x05\u65c0", // 旀
+ 0x65c1: "F\x06\u65c1", // 旁
+ 0x65c2: "F\x06\u65c2", // 旂
+ 0x65c3: "F\x06\u65c3", // 旃
+ 0x65c4: "F\x06\u65c4", // 旄
+ 0x65c5: "F\x06\u65c5", // 旅
+ 0x65c6: "F\x06\u65c6", // 旆
+ 0x65c7: "F\a\u65c7", // 旇
+ 0x65c8: "F\a\u65c8", // 旈
+ 0x65c9: "F\a\u65c9", // 旉
+ 0x65ca: "F\x06\u65ca", // 旊
+ 0x65cb: "F\a\u65cb", // 旋
+ 0x65cc: "F\a\u65cc", // 旌
+ 0x65cd: "F\a\u65cd", // 旍
+ 0x65ce: "F\a\u65ce", // 旎
+ 0x65cf: "F\a\u65cf", // 族
+ 0x65d0: "F\b\u65d0", // 旐
+ 0x65d1: "F\b\u65d1", // 旑
+ 0x65d2: "F\t\u65d2", // 旒
+ 0x65d3: "F\t\u65d3", // 旓
+ 0x65d4: "F\t\u65d4", // 旔
+ 0x65d5: "F\t\u65d5", // 旕
+ 0x65d6: "F\n\u65d6", // 旖
+ 0x65d7: "F\n\u65d7", // 旗
+ 0x65d8: "F\f\u65d8", // 旘
+ 0x65d9: "F\f\u65d9", // 旙
+ 0x65da: "F\r\u65da", // 旚
+ 0x65db: "F\x0e\u65db", // 旛
+ 0x65dc: "F\x0f\u65dc", // 旜
+ 0x65dd: "F\x0f\u65dd", // 旝
+ 0x65de: "F\x0f\u65de", // 旞
+ 0x65df: "F\x10\u65df", // 旟
+ 0x65e0: "G\x00\u65e0", // 无
+ 0x65e1: "G\x01\u65e1", // 旡
+ 0x65e2: "G\x05\u65e2", // 既
+ 0x65e3: "G\a\u65e3", // 旣
+ 0x65e4: "G\t\u65e4", // 旤
+ 0x65e5: "H\x00\u65e5", // 日
+ 0x65e6: "H\x01\u65e6", // 旦
+ 0x65e7: "H\x01\u65e7", // 旧
+ 0x65e8: "H\x02\u65e8", // 旨
+ 0x65e9: "H\x02\u65e9", // 早
+ 0x65ea: "H\x02\u65ea", // 旪
+ 0x65eb: "H\x02\u65eb", // 旫
+ 0x65ec: "H\x02\u65ec", // 旬
+ 0x65ed: "H\x02\u65ed", // 旭
+ 0x65ee: "H\x02\u65ee", // 旮
+ 0x65ef: "H\x02\u65ef", // 旯
+ 0x65f0: "H\x03\u65f0", // 旰
+ 0x65f1: "H\x03\u65f1", // 旱
+ 0x65f2: "H\x03\u65f2", // 旲
+ 0x65f3: "H\x03\u65f3", // 旳
+ 0x65f4: "H\x03\u65f4", // 旴
+ 0x65f5: "H\x03\u65f5", // 旵
+ 0x65f6: "H\x03\u65f6", // 时
+ 0x65f7: "H\x03\u65f7", // 旷
+ 0x65f8: "H\x03\u65f8", // 旸
+ 0x65f9: "H\x04\u65f9", // 旹
+ 0x65fa: "H\x04\u65fa", // 旺
+ 0x65fb: "H\x04\u65fb", // 旻
+ 0x65fc: "H\x04\u65fc", // 旼
+ 0x65fd: "H\x04\u65fd", // 旽
+ 0x65fe: "H\x04\u65fe", // 旾
+ 0x65ff: "H\x04\u65ff", // 旿
+ 0x6600: "H\x04\u6600", // 昀
+ 0x6601: "H\x04\u6601", // 昁
+ 0x6602: "H\x04\u6602", // 昂
+ 0x6603: "H\x04\u6603", // 昃
+ 0x6604: "H\x04\u6604", // 昄
+ 0x6605: "H\x04\u6605", // 昅
+ 0x6606: "H\x04\u6606", // 昆
+ 0x6607: "H\x04\u6607", // 昇
+ 0x6608: "H\x04\u6608", // 昈
+ 0x6609: "H\x04\u6609", // 昉
+ 0x660a: "H\x04\u660a", // 昊
+ 0x660b: "H\x04\u660b", // 昋
+ 0x660c: "H\x04\u660c", // 昌
+ 0x660d: "H\x04\u660d", // 昍
+ 0x660e: "H\x04\u660e", // 明
+ 0x660f: "H\x04\u660f", // 昏
+ 0x6610: "H\x04\u6610", // 昐
+ 0x6611: "H\x04\u6611", // 昑
+ 0x6612: "H\x04\u6612", // 昒
+ 0x6613: "H\x04\u6613", // 易
+ 0x6614: "H\x04\u6614", // 昔
+ 0x6615: "H\x04\u6615", // 昕
+ 0x6616: "H\x04\u6616", // 昖
+ 0x6617: "H\x04\u6617", // 昗
+ 0x6618: "H\x04\u6618", // 昘
+ 0x6619: "H\x04\u6619", // 昙
+ 0x661a: "H\x05\u661a", // 昚
+ 0x661b: "H\x05\u661b", // 昛
+ 0x661c: "H\x05\u661c", // 昜
+ 0x661d: "H\x05\u661d", // 昝
+ 0x661e: "H\x05\u661e", // 昞
+ 0x661f: "H\x05\u661f", // 星
+ 0x6620: "H\x05\u6620", // 映
+ 0x6621: "H\x05\u6621", // 昡
+ 0x6622: "H\x05\u6622", // 昢
+ 0x6623: "H\x05\u6623", // 昣
+ 0x6624: "H\x05\u6624", // 昤
+ 0x6625: "H\x05\u6625", // 春
+ 0x6626: "H\x05\u6626", // 昦
+ 0x6627: "H\x05\u6627", // 昧
+ 0x6628: "H\x05\u6628", // 昨
+ 0x6629: "H\x05\u6629", // 昩
+ 0x662a: "H\x05\u662a", // 昪
+ 0x662b: "H\x05\u662b", // 昫
+ 0x662c: "H\x05\u662c", // 昬
+ 0x662d: "H\x05\u662d", // 昭
+ 0x662e: "H\x05\u662e", // 昮
+ 0x662f: "H\x05\u662f", // 是
+ 0x6630: "H\x05\u6630", // 昰
+ 0x6631: "H\x05\u6631", // 昱
+ 0x6632: "H\x05\u6632", // 昲
+ 0x6633: "H\x05\u6633", // 昳
+ 0x6634: "H\x05\u6634", // 昴
+ 0x6635: "H\x05\u6635", // 昵
+ 0x6636: "H\x05\u6636", // 昶
+ 0x6637: "H\x05\u6637", // 昷
+ 0x6638: "H\x05\u6638", // 昸
+ 0x6639: "H\x05\u6639", // 昹
+ 0x663a: "H\x05\u663a", // 昺
+ 0x663b: "H\x05\u663b", // 昻
+ 0x663c: "H\x05\u663c", // 昼
+ 0x663d: "H\x05\u663d", // 昽
+ 0x663e: "H\x05\u663e", // 显
+ 0x663f: "H\x05\u663f", // 昿
+ 0x6640: "H\x06\u6640", // 晀
+ 0x6641: "H\x06\u6641", // 晁
+ 0x6642: "H\x06\u6642", // 時
+ 0x6643: "H\x06\u6643", // 晃
+ 0x6644: "H\x06\u6644", // 晄
+ 0x6645: "H\x06\u6645", // 晅
+ 0x6646: "H\x06\u6646", // 晆
+ 0x6647: "H\x06\u6647", // 晇
+ 0x6648: "H\x06\u6648", // 晈
+ 0x6649: "H\x06\u6649", // 晉
+ 0x664a: "H\x06\u664a", // 晊
+ 0x664b: "H\x06\u664b", // 晋
+ 0x664c: "H\x06\u664c", // 晌
+ 0x664d: "H\x06\u664d", // 晍
+ 0x664e: "H\x06\u664e", // 晎
+ 0x664f: "H\x06\u664f", // 晏
+ 0x6650: "H\x06\u6650", // 晐
+ 0x6651: "H\x06\u6651", // 晑
+ 0x6652: "H\x06\u6652", // 晒
+ 0x6653: "H\x06\u6653", // 晓
+ 0x6654: "H\x06\u6654", // 晔
+ 0x6655: "H\x06\u6655", // 晕
+ 0x6656: "H\x06\u6656", // 晖
+ 0x6657: "H\a\u6657", // 晗
+ 0x6658: "H\a\u6658", // 晘
+ 0x6659: "H\a\u6659", // 晙
+ 0x665a: "H\a\u665a", // 晚
+ 0x665b: "H\a\u665b", // 晛
+ 0x665c: "H\a\u665c", // 晜
+ 0x665d: "H\a\u665d", // 晝
+ 0x665e: "H\a\u665e", // 晞
+ 0x665f: "H\a\u665f", // 晟
+ 0x6660: "H\a\u6660", // 晠
+ 0x6661: "H\a\u6661", // 晡
+ 0x6662: "H\a\u6662", // 晢
+ 0x6663: "H\a\u6663", // 晣
+ 0x6664: "H\a\u6664", // 晤
+ 0x6665: "H\a\u6665", // 晥
+ 0x6666: "H\a\u6666", // 晦
+ 0x6667: "H\a\u6667", // 晧
+ 0x6668: "H\a\u6668", // 晨
+ 0x6669: "H\a\u6669", // 晩
+ 0x666a: "H\b\u666a", // 晪
+ 0x666b: "H\b\u666b", // 晫
+ 0x666c: "H\b\u666c", // 晬
+ 0x666d: "H\b\u666d", // 晭
+ 0x666e: "H\b\u666e", // 普
+ 0x666f: "H\b\u666f", // 景
+ 0x6670: "H\b\u6670", // 晰
+ 0x6671: "H\b\u6671", // 晱
+ 0x6672: "H\b\u6672", // 晲
+ 0x6673: "H\b\u6673", // 晳
+ 0x6674: "H\b\u6674", // 晴
+ 0x6675: "H\b\u6675", // 晵
+ 0x6676: "H\b\u6676", // 晶
+ 0x6677: "H\b\u6677", // 晷
+ 0x6678: "H\b\u6678", // 晸
+ 0x6679: "H\b\u6679", // 晹
+ 0x667a: "H\b\u667a", // 智
+ 0x667b: "H\b\u667b", // 晻
+ 0x667c: "H\b\u667c", // 晼
+ 0x667d: "H\b\u667d", // 晽
+ 0x667e: "H\b\u667e", // 晾
+ 0x667f: "H\b\u667f", // 晿
+ 0x6680: "H\b\u6680", // 暀
+ 0x6681: "H\b\u6681", // 暁
+ 0x6682: "H\b\u6682", // 暂
+ 0x6683: "H\b\u6683", // 暃
+ 0x6684: "H\t\u6684", // 暄
+ 0x6685: "H\t\u6685", // 暅
+ 0x6686: "H\t\u6686", // 暆
+ 0x6687: "H\t\u6687", // 暇
+ 0x6688: "H\t\u6688", // 暈
+ 0x6689: "H\t\u6689", // 暉
+ 0x668a: "H\t\u668a", // 暊
+ 0x668b: "H\t\u668b", // 暋
+ 0x668c: "H\t\u668c", // 暌
+ 0x668d: "H\t\u668d", // 暍
+ 0x668e: "H\t\u668e", // 暎
+ 0x668f: "H\t\u668f", // 暏
+ 0x6690: "H\t\u6690", // 暐
+ 0x6691: "H\b\u6691", // 暑
+ 0x6692: "H\t\u6692", // 暒
+ 0x6693: "H\t\u6693", // 暓
+ 0x6694: "H\t\u6694", // 暔
+ 0x6695: "H\t\u6695", // 暕
+ 0x6696: "H\t\u6696", // 暖
+ 0x6697: "H\t\u6697", // 暗
+ 0x6698: "H\t\u6698", // 暘
+ 0x6699: "H\t\u6699", // 暙
+ 0x669a: "H\n\u669a", // 暚
+ 0x669b: "H\n\u669b", // 暛
+ 0x669c: "H\n\u669c", // 暜
+ 0x669d: "H\n\u669d", // 暝
+ 0x669e: "H\n\u669e", // 暞
+ 0x669f: "H\n\u669f", // 暟
+ 0x66a0: "H\n\u66a0", // 暠
+ 0x66a1: "H\n\u66a1", // 暡
+ 0x66a2: "H\n\u66a2", // 暢
+ 0x66a3: "H\n\u66a3", // 暣
+ 0x66a4: "H\n\u66a4", // 暤
+ 0x66a5: "H\n\u66a5", // 暥
+ 0x66a6: "H\n\u66a6", // 暦
+ 0x66a7: "H\n\u66a7", // 暧
+ 0x66a8: "H\n\u66a8", // 暨
+ 0x66a9: "H\v\u66a9", // 暩
+ 0x66aa: "H\v\u66aa", // 暪
+ 0x66ab: "H\v\u66ab", // 暫
+ 0x66ac: "H\v\u66ac", // 暬
+ 0x66ad: "H\v\u66ad", // 暭
+ 0x66ae: "H\v\u66ae", // 暮
+ 0x66af: "H\v\u66af", // 暯
+ 0x66b0: "H\v\u66b0", // 暰
+ 0x66b1: "H\v\u66b1", // 暱
+ 0x66b2: "H\v\u66b2", // 暲
+ 0x66b3: "H\v\u66b3", // 暳
+ 0x66b4: "H\v\u66b4", // 暴
+ 0x66b5: "H\v\u66b5", // 暵
+ 0x66b6: "H\v\u66b6", // 暶
+ 0x66b7: "H\v\u66b7", // 暷
+ 0x66b8: "H\f\u66b8", // 暸
+ 0x66b9: "H\f\u66b9", // 暹
+ 0x66ba: "H\f\u66ba", // 暺
+ 0x66bb: "H\f\u66bb", // 暻
+ 0x66bc: "H\f\u66bc", // 暼
+ 0x66bd: "H\f\u66bd", // 暽
+ 0x66be: "H\f\u66be", // 暾
+ 0x66bf: "H\f\u66bf", // 暿
+ 0x66c0: "H\f\u66c0", // 曀
+ 0x66c1: "H\f\u66c1", // 曁
+ 0x66c2: "H\f\u66c2", // 曂
+ 0x66c3: "H\f\u66c3", // 曃
+ 0x66c4: "H\f\u66c4", // 曄
+ 0x66c5: "H\f\u66c5", // 曅
+ 0x66c6: "H\f\u66c6", // 曆
+ 0x66c7: "H\f\u66c7", // 曇
+ 0x66c8: "H\f\u66c8", // 曈
+ 0x66c9: "H\f\u66c9", // 曉
+ 0x66ca: "H\f\u66ca", // 曊
+ 0x66cb: "H\f\u66cb", // 曋
+ 0x66cc: "H\f\u66cc", // 曌
+ 0x66cd: "H\f\u66cd", // 曍
+ 0x66ce: "H\r\u66ce", // 曎
+ 0x66cf: "H\r\u66cf", // 曏
+ 0x66d0: "H\r\u66d0", // 曐
+ 0x66d1: "H\r\u66d1", // 曑
+ 0x66d2: "H\r\u66d2", // 曒
+ 0x66d3: "H\r\u66d3", // 曓
+ 0x66d4: "H\r\u66d4", // 曔
+ 0x66d5: "H\r\u66d5", // 曕
+ 0x66d6: "H\r\u66d6", // 曖
+ 0x66d7: "H\r\u66d7", // 曗
+ 0x66d8: "H\x0e\u66d8", // 曘
+ 0x66d9: "H\x0e\u66d9", // 曙
+ 0x66da: "H\r\u66da", // 曚
+ 0x66db: "H\x0e\u66db", // 曛
+ 0x66dc: "H\x0e\u66dc", // 曜
+ 0x66dd: "H\x0f\u66dd", // 曝
+ 0x66de: "H\x0f\u66de", // 曞
+ 0x66df: "H\x0f\u66df", // 曟
+ 0x66e0: "H\x0f\u66e0", // 曠
+ 0x66e1: "H\x0f\u66e1", // 曡
+ 0x66e2: "H\x0f\u66e2", // 曢
+ 0x66e3: "H\x10\u66e3", // 曣
+ 0x66e4: "H\x10\u66e4", // 曤
+ 0x66e5: "H\x10\u66e5", // 曥
+ 0x66e6: "H\x10\u66e6", // 曦
+ 0x66e7: "H\x10\u66e7", // 曧
+ 0x66e8: "H\x10\u66e8", // 曨
+ 0x66e9: "H\x11\u66e9", // 曩
+ 0x66ea: "H\x13\u66ea", // 曪
+ 0x66eb: "H\x13\u66eb", // 曫
+ 0x66ec: "H\x13\u66ec", // 曬
+ 0x66ed: "H\x14\u66ed", // 曭
+ 0x66ee: "H\x14\u66ee", // 曮
+ 0x66ef: "H\x15\u66ef", // 曯
+ 0x66f0: "I\x00\u66f0", // 曰
+ 0x66f1: "I\x01\u66f1", // 曱
+ 0x66f2: "I\x02\u66f2", // 曲
+ 0x66f3: "I\x02\u66f3", // 曳
+ 0x66f4: "I\x03\u66f4", // 更
+ 0x66f5: "I\x03\u66f5", // 曵
+ 0x66f6: "I\x04\u66f6", // 曶
+ 0x66f7: "I\x05\u66f7", // 曷
+ 0x66f8: "I\x06\u66f8", // 書
+ 0x66f9: "I\a\u66f9", // 曹
+ 0x66fa: "I\x06\u66fa", // 曺
+ 0x66fb: "I\a\u66fb", // 曻
+ 0x66fc: "I\a\u66fc", // 曼
+ 0x66fd: "H\a\u66fd", // 曽
+ 0x66fe: "I\b\u66fe", // 曾
+ 0x66ff: "I\b\u66ff", // 替
+ 0x6700: "\r\n\u6700", // 最
+ 0x6701: "I\b\u6701", // 朁
+ 0x6702: "I\b\u6702", // 朂
+ 0x6703: "I\t\u6703", // 會
+ 0x6704: "I\n\u6704", // 朄
+ 0x6705: "I\n\u6705", // 朅
+ 0x6706: "I\f\u6706", // 朆
+ 0x6707: "I\x11\u6707", // 朇
+ 0x6708: "J\x00\u6708", // 月
+ 0x6709: "J\x02\u6709", // 有
+ 0x670a: "J\x04\u670a", // 朊
+ 0x670b: "J\x04\u670b", // 朋
+ 0x670c: "J\x04\u670c", // 朌
+ 0x670d: "J\x04\u670d", // 服
+ 0x670e: "J\x05\u670e", // 朎
+ 0x670f: "J\x05\u670f", // 朏
+ 0x6710: "J\x05\u6710", // 朐
+ 0x6711: "J\x05\u6711", // 朑
+ 0x6712: "J\x06\u6712", // 朒
+ 0x6713: "J\x06\u6713", // 朓
+ 0x6714: "J\x06\u6714", // 朔
+ 0x6715: "J\x06\u6715", // 朕
+ 0x6716: "J\a\u6716", // 朖
+ 0x6717: "J\a\u6717", // 朗
+ 0x6718: "J\a\u6718", // 朘
+ 0x6719: "J\a\u6719", // 朙
+ 0x671a: "J\a\u671a", // 朚
+ 0x671b: "J\a\u671b", // 望
+ 0x671c: "J\b\u671c", // 朜
+ 0x671d: "J\b\u671d", // 朝
+ 0x671e: "J\b\u671e", // 朞
+ 0x671f: "J\b\u671f", // 期
+ 0x6720: "J\t\u6720", // 朠
+ 0x6721: "J\t\u6721", // 朡
+ 0x6722: "J\n\u6722", // 朢
+ 0x6723: "J\f\u6723", // 朣
+ 0x6724: "J\f\u6724", // 朤
+ 0x6725: "J\f\u6725", // 朥
+ 0x6726: "J\x0e\u6726", // 朦
+ 0x6727: "J\x10\u6727", // 朧
+ 0x6728: "K\x00\u6728", // 木
+ 0x6729: "K\x00\u6729", // 朩
+ 0x672a: "K\x01\u672a", // 未
+ 0x672b: "K\x01\u672b", // 末
+ 0x672c: "K\x01\u672c", // 本
+ 0x672d: "K\x01\u672d", // 札
+ 0x672e: "K\x01\u672e", // 朮
+ 0x672f: "K\x01\u672f", // 术
+ 0x6730: "K\x01\u6730", // 朰
+ 0x6731: "K\x02\u6731", // 朱
+ 0x6732: "K\x02\u6732", // 朲
+ 0x6733: "K\x02\u6733", // 朳
+ 0x6734: "K\x02\u6734", // 朴
+ 0x6735: "K\x02\u6735", // 朵
+ 0x6736: "K\x02\u6736", // 朶
+ 0x6737: "K\x02\u6737", // 朷
+ 0x6738: "K\x02\u6738", // 朸
+ 0x6739: "K\x02\u6739", // 朹
+ 0x673a: "K\x02\u673a", // 机
+ 0x673b: "K\x02\u673b", // 朻
+ 0x673c: "K\x02\u673c", // 朼
+ 0x673d: "K\x02\u673d", // 朽
+ 0x673e: "K\x02\u673e", // 朾
+ 0x673f: "K\x02\u673f", // 朿
+ 0x6740: "K\x02\u6740", // 杀
+ 0x6741: "K\x02\u6741", // 杁
+ 0x6742: "K\x02\u6742", // 杂
+ 0x6743: "K\x02\u6743", // 权
+ 0x6744: "K\x03\u6744", // 杄
+ 0x6745: "K\x03\u6745", // 杅
+ 0x6746: "K\x03\u6746", // 杆
+ 0x6747: "K\x03\u6747", // 杇
+ 0x6748: "K\x03\u6748", // 杈
+ 0x6749: "K\x03\u6749", // 杉
+ 0x674a: "K\x03\u674a", // 杊
+ 0x674b: "K\x03\u674b", // 杋
+ 0x674c: "K\x03\u674c", // 杌
+ 0x674d: "K\x03\u674d", // 杍
+ 0x674e: "K\x03\u674e", // 李
+ 0x674f: "K\x03\u674f", // 杏
+ 0x6750: "K\x03\u6750", // 材
+ 0x6751: "K\x03\u6751", // 村
+ 0x6752: "K\x03\u6752", // 杒
+ 0x6753: "K\x03\u6753", // 杓
+ 0x6754: "K\x03\u6754", // 杔
+ 0x6755: "K\x03\u6755", // 杕
+ 0x6756: "K\x03\u6756", // 杖
+ 0x6757: "K\x03\u6757", // 杗
+ 0x6758: "K\x03\u6758", // 杘
+ 0x6759: "K\x03\u6759", // 杙
+ 0x675a: "K\x03\u675a", // 杚
+ 0x675b: "K\x03\u675b", // 杛
+ 0x675c: "K\x03\u675c", // 杜
+ 0x675d: "K\x03\u675d", // 杝
+ 0x675e: "K\x03\u675e", // 杞
+ 0x675f: "K\x03\u675f", // 束
+ 0x6760: "K\x03\u6760", // 杠
+ 0x6761: "K\x03\u6761", // 条
+ 0x6762: "K\x03\u6762", // 杢
+ 0x6763: "K\x03\u6763", // 杣
+ 0x6764: "K\x03\u6764", // 杤
+ 0x6765: "K\x03\u6765", // 来
+ 0x6766: "K\x03\u6766", // 杦
+ 0x6767: "K\x03\u6767", // 杧
+ 0x6768: "K\x03\u6768", // 杨
+ 0x6769: "K\x03\u6769", // 杩
+ 0x676a: "K\x04\u676a", // 杪
+ 0x676b: "K\x04\u676b", // 杫
+ 0x676c: "K\x04\u676c", // 杬
+ 0x676d: "K\x04\u676d", // 杭
+ 0x676e: "K\x04\u676e", // 杮
+ 0x676f: "K\x04\u676f", // 杯
+ 0x6770: "K\x04\u6770", // 杰
+ 0x6771: "K\x04\u6771", // 東
+ 0x6772: "K\x04\u6772", // 杲
+ 0x6773: "K\x04\u6773", // 杳
+ 0x6774: "K\x04\u6774", // 杴
+ 0x6775: "K\x04\u6775", // 杵
+ 0x6776: "K\x04\u6776", // 杶
+ 0x6777: "K\x04\u6777", // 杷
+ 0x6778: "K\x04\u6778", // 杸
+ 0x6779: "K\x04\u6779", // 杹
+ 0x677a: "K\x04\u677a", // 杺
+ 0x677b: "K\x04\u677b", // 杻
+ 0x677c: "K\x04\u677c", // 杼
+ 0x677d: "K\x04\u677d", // 杽
+ 0x677e: "K\x04\u677e", // 松
+ 0x677f: "K\x04\u677f", // 板
+ 0x6780: "K\x04\u6780", // 枀
+ 0x6781: "K\x03\u6781", // 极
+ 0x6782: "K\x04\u6782", // 枂
+ 0x6783: "K\x04\u6783", // 枃
+ 0x6784: "K\x04\u6784", // 构
+ 0x6785: "K\x04\u6785", // 枅
+ 0x6786: "K\x04\u6786", // 枆
+ 0x6787: "K\x04\u6787", // 枇
+ 0x6788: "K\x04\u6788", // 枈
+ 0x6789: "K\x04\u6789", // 枉
+ 0x678a: "K\x04\u678a", // 枊
+ 0x678b: "K\x04\u678b", // 枋
+ 0x678c: "K\x04\u678c", // 枌
+ 0x678d: "K\x04\u678d", // 枍
+ 0x678e: "K\x04\u678e", // 枎
+ 0x678f: "K\x04\u678f", // 枏
+ 0x6790: "K\x04\u6790", // 析
+ 0x6791: "K\x04\u6791", // 枑
+ 0x6792: "K\x04\u6792", // 枒
+ 0x6793: "K\x04\u6793", // 枓
+ 0x6794: "K\x04\u6794", // 枔
+ 0x6795: "K\x04\u6795", // 枕
+ 0x6796: "K\x04\u6796", // 枖
+ 0x6797: "K\x04\u6797", // 林
+ 0x6798: "K\x04\u6798", // 枘
+ 0x6799: "K\x04\u6799", // 枙
+ 0x679a: "K\x04\u679a", // 枚
+ 0x679b: "K\x04\u679b", // 枛
+ 0x679c: "K\x04\u679c", // 果
+ 0x679d: "K\x04\u679d", // 枝
+ 0x679e: "K\x04\u679e", // 枞
+ 0x679f: "K\x04\u679f", // 枟
+ 0x67a0: "K\x04\u67a0", // 枠
+ 0x67a1: "K\x04\u67a1", // 枡
+ 0x67a2: "K\x04\u67a2", // 枢
+ 0x67a3: "K\x04\u67a3", // 枣
+ 0x67a4: "K\x04\u67a4", // 枤
+ 0x67a5: "K\x04\u67a5", // 枥
+ 0x67a6: "K\x04\u67a6", // 枦
+ 0x67a7: "K\x04\u67a7", // 枧
+ 0x67a8: "K\x04\u67a8", // 枨
+ 0x67a9: "K\x04\u67a9", // 枩
+ 0x67aa: "K\x04\u67aa", // 枪
+ 0x67ab: "K\x04\u67ab", // 枫
+ 0x67ac: "K\x04\u67ac", // 枬
+ 0x67ad: "K\x04\u67ad", // 枭
+ 0x67ae: "K\x05\u67ae", // 枮
+ 0x67af: "K\x05\u67af", // 枯
+ 0x67b0: "K\x05\u67b0", // 枰
+ 0x67b1: "K\x05\u67b1", // 枱
+ 0x67b2: "K\x05\u67b2", // 枲
+ 0x67b3: "K\x05\u67b3", // 枳
+ 0x67b4: "K\x05\u67b4", // 枴
+ 0x67b5: "K\x05\u67b5", // 枵
+ 0x67b6: "K\x05\u67b6", // 架
+ 0x67b7: "K\x05\u67b7", // 枷
+ 0x67b8: "K\x05\u67b8", // 枸
+ 0x67b9: "K\x05\u67b9", // 枹
+ 0x67ba: "K\x05\u67ba", // 枺
+ 0x67bb: "K\x05\u67bb", // 枻
+ 0x67bc: "K\x05\u67bc", // 枼
+ 0x67bd: "K\x05\u67bd", // 枽
+ 0x67be: "K\x05\u67be", // 枾
+ 0x67bf: "K\x05\u67bf", // 枿
+ 0x67c0: "K\x05\u67c0", // 柀
+ 0x67c1: "K\x05\u67c1", // 柁
+ 0x67c2: "K\x05\u67c2", // 柂
+ 0x67c3: "K\x05\u67c3", // 柃
+ 0x67c4: "K\x05\u67c4", // 柄
+ 0x67c5: "K\x05\u67c5", // 柅
+ 0x67c6: "K\x05\u67c6", // 柆
+ 0x67c7: "K\x05\u67c7", // 柇
+ 0x67c8: "K\x05\u67c8", // 柈
+ 0x67c9: "K\x05\u67c9", // 柉
+ 0x67ca: "K\x05\u67ca", // 柊
+ 0x67cb: "K\x05\u67cb", // 柋
+ 0x67cc: "K\x05\u67cc", // 柌
+ 0x67cd: "K\x05\u67cd", // 柍
+ 0x67ce: "K\x05\u67ce", // 柎
+ 0x67cf: "K\x05\u67cf", // 柏
+ 0x67d0: "K\x05\u67d0", // 某
+ 0x67d1: "K\x05\u67d1", // 柑
+ 0x67d2: "K\x05\u67d2", // 柒
+ 0x67d3: "K\x05\u67d3", // 染
+ 0x67d4: "K\x05\u67d4", // 柔
+ 0x67d5: "K\x05\u67d5", // 柕
+ 0x67d6: "K\x05\u67d6", // 柖
+ 0x67d7: "K\x05\u67d7", // 柗
+ 0x67d8: "K\x05\u67d8", // 柘
+ 0x67d9: "K\x05\u67d9", // 柙
+ 0x67da: "K\x05\u67da", // 柚
+ 0x67db: "K\x05\u67db", // 柛
+ 0x67dc: "K\x05\u67dc", // 柜
+ 0x67dd: "K\x05\u67dd", // 柝
+ 0x67de: "K\x05\u67de", // 柞
+ 0x67df: "K\x05\u67df", // 柟
+ 0x67e0: "K\x05\u67e0", // 柠
+ 0x67e1: "K\x05\u67e1", // 柡
+ 0x67e2: "K\x05\u67e2", // 柢
+ 0x67e3: "K\x05\u67e3", // 柣
+ 0x67e4: "K\x05\u67e4", // 柤
+ 0x67e5: "K\x05\u67e5", // 查
+ 0x67e6: "K\x05\u67e6", // 柦
+ 0x67e7: "K\x05\u67e7", // 柧
+ 0x67e8: "K\x05\u67e8", // 柨
+ 0x67e9: "K\x05\u67e9", // 柩
+ 0x67ea: "K\x05\u67ea", // 柪
+ 0x67eb: "K\x05\u67eb", // 柫
+ 0x67ec: "K\x05\u67ec", // 柬
+ 0x67ed: "K\x05\u67ed", // 柭
+ 0x67ee: "K\x05\u67ee", // 柮
+ 0x67ef: "K\x05\u67ef", // 柯
+ 0x67f0: "K\x05\u67f0", // 柰
+ 0x67f1: "K\x05\u67f1", // 柱
+ 0x67f2: "K\x05\u67f2", // 柲
+ 0x67f3: "K\x05\u67f3", // 柳
+ 0x67f4: "K\x05\u67f4", // 柴
+ 0x67f5: "K\x05\u67f5", // 柵
+ 0x67f6: "K\x05\u67f6", // 柶
+ 0x67f7: "K\x05\u67f7", // 柷
+ 0x67f8: "K\x05\u67f8", // 柸
+ 0x67f9: "K\x05\u67f9", // 柹
+ 0x67fa: "K\x05\u67fa", // 柺
+ 0x67fb: "K\x05\u67fb", // 査
+ 0x67fc: "K\x05\u67fc", // 柼
+ 0x67fd: "K\x05\u67fd", // 柽
+ 0x67fe: "K\x05\u67fe", // 柾
+ 0x67ff: "K\x05\u67ff", // 柿
+ 0x6800: "K\x05\u6800", // 栀
+ 0x6801: "K\x05\u6801", // 栁
+ 0x6802: "K\x05\u6802", // 栂
+ 0x6803: "K\x05\u6803", // 栃
+ 0x6804: "K\x05\u6804", // 栄
+ 0x6805: "K\x05\u6805", // 栅
+ 0x6806: "K\x05\u6806", // 栆
+ 0x6807: "K\x05\u6807", // 标
+ 0x6808: "K\x05\u6808", // 栈
+ 0x6809: "K\x05\u6809", // 栉
+ 0x680a: "K\x05\u680a", // 栊
+ 0x680b: "K\x05\u680b", // 栋
+ 0x680c: "K\x05\u680c", // 栌
+ 0x680d: "K\x05\u680d", // 栍
+ 0x680e: "K\x05\u680e", // 栎
+ 0x680f: "K\x05\u680f", // 栏
+ 0x6810: "K\x05\u6810", // 栐
+ 0x6811: "K\x05\u6811", // 树
+ 0x6812: "K\x06\u6812", // 栒
+ 0x6813: "K\x06\u6813", // 栓
+ 0x6814: "K\x06\u6814", // 栔
+ 0x6815: "K\x06\u6815", // 栕
+ 0x6816: "K\x06\u6816", // 栖
+ 0x6817: "K\x06\u6817", // 栗
+ 0x6818: "K\x06\u6818", // 栘
+ 0x6819: "K\x06\u6819", // 栙
+ 0x681a: "K\x06\u681a", // 栚
+ 0x681b: "K\x06\u681b", // 栛
+ 0x681c: "K\x06\u681c", // 栜
+ 0x681d: "K\x06\u681d", // 栝
+ 0x681e: "K\x06\u681e", // 栞
+ 0x681f: "K\x06\u681f", // 栟
+ 0x6820: "K\x06\u6820", // 栠
+ 0x6821: "K\x06\u6821", // 校
+ 0x6822: "K\x06\u6822", // 栢
+ 0x6823: "K\x06\u6823", // 栣
+ 0x6824: "K\x06\u6824", // 栤
+ 0x6825: "K\x06\u6825", // 栥
+ 0x6826: "K\x06\u6826", // 栦
+ 0x6827: "K\x06\u6827", // 栧
+ 0x6828: "K\x06\u6828", // 栨
+ 0x6829: "K\x06\u6829", // 栩
+ 0x682a: "K\x06\u682a", // 株
+ 0x682b: "K\x06\u682b", // 栫
+ 0x682c: "K\x06\u682c", // 栬
+ 0x682d: "K\x06\u682d", // 栭
+ 0x682e: "K\x06\u682e", // 栮
+ 0x682f: "K\x06\u682f", // 栯
+ 0x6830: "K\x06\u6830", // 栰
+ 0x6831: "K\x06\u6831", // 栱
+ 0x6832: "K\x06\u6832", // 栲
+ 0x6833: "K\x06\u6833", // 栳
+ 0x6834: "K\x06\u6834", // 栴
+ 0x6835: "K\x06\u6835", // 栵
+ 0x6836: "K\x06\u6836", // 栶
+ 0x6837: "K\x06\u6837", // 样
+ 0x6838: "K\x06\u6838", // 核
+ 0x6839: "K\x06\u6839", // 根
+ 0x683a: "K\x06\u683a", // 栺
+ 0x683b: "K\x06\u683b", // 栻
+ 0x683c: "K\x06\u683c", // 格
+ 0x683d: "K\x06\u683d", // 栽
+ 0x683e: "K\x06\u683e", // 栾
+ 0x683f: "K\x06\u683f", // 栿
+ 0x6840: "K\x06\u6840", // 桀
+ 0x6841: "K\x06\u6841", // 桁
+ 0x6842: "K\x06\u6842", // 桂
+ 0x6843: "K\x06\u6843", // 桃
+ 0x6844: "K\x06\u6844", // 桄
+ 0x6845: "K\x06\u6845", // 桅
+ 0x6846: "K\x06\u6846", // 框
+ 0x6847: "K\x06\u6847", // 桇
+ 0x6848: "K\x06\u6848", // 案
+ 0x6849: "K\x06\u6849", // 桉
+ 0x684a: "K\x06\u684a", // 桊
+ 0x684b: "K\x06\u684b", // 桋
+ 0x684c: "K\x06\u684c", // 桌
+ 0x684d: "K\x06\u684d", // 桍
+ 0x684e: "K\x06\u684e", // 桎
+ 0x684f: "K\x06\u684f", // 桏
+ 0x6850: "K\x06\u6850", // 桐
+ 0x6851: "K\x06\u6851", // 桑
+ 0x6852: "K\x06\u6852", // 桒
+ 0x6853: "K\x06\u6853", // 桓
+ 0x6854: "K\x06\u6854", // 桔
+ 0x6855: "K\x06\u6855", // 桕
+ 0x6856: "K\x06\u6856", // 桖
+ 0x6857: "K\x06\u6857", // 桗
+ 0x6858: "K\x06\u6858", // 桘
+ 0x6859: "K\x06\u6859", // 桙
+ 0x685a: "K\x06\u685a", // 桚
+ 0x685b: "K\x06\u685b", // 桛
+ 0x685c: "K\x06\u685c", // 桜
+ 0x685d: "K\x06\u685d", // 桝
+ 0x685e: "K\x06\u685e", // 桞
+ 0x685f: "K\x06\u685f", // 桟
+ 0x6860: "K\x06\u6860", // 桠
+ 0x6861: "K\x06\u6861", // 桡
+ 0x6862: "K\x06\u6862", // 桢
+ 0x6863: "K\x06\u6863", // 档
+ 0x6864: "K\x06\u6864", // 桤
+ 0x6865: "K\x06\u6865", // 桥
+ 0x6866: "K\x06\u6866", // 桦
+ 0x6867: "K\x06\u6867", // 桧
+ 0x6868: "K\x06\u6868", // 桨
+ 0x6869: "K\x06\u6869", // 桩
+ 0x686a: "K\x06\u686a", // 桪
+ 0x686b: "K\a\u686b", // 桫
+ 0x686c: "K\a\u686c", // 桬
+ 0x686d: "K\a\u686d", // 桭
+ 0x686e: "K\a\u686e", // 桮
+ 0x686f: "K\a\u686f", // 桯
+ 0x6870: "K\a\u6870", // 桰
+ 0x6871: "K\a\u6871", // 桱
+ 0x6872: "K\a\u6872", // 桲
+ 0x6873: "K\a\u6873", // 桳
+ 0x6874: "K\a\u6874", // 桴
+ 0x6875: "K\a\u6875", // 桵
+ 0x6876: "K\a\u6876", // 桶
+ 0x6877: "K\a\u6877", // 桷
+ 0x6878: "K\a\u6878", // 桸
+ 0x6879: "K\a\u6879", // 桹
+ 0x687a: "K\a\u687a", // 桺
+ 0x687b: "K\a\u687b", // 桻
+ 0x687c: "K\a\u687c", // 桼
+ 0x687d: "K\a\u687d", // 桽
+ 0x687e: "K\a\u687e", // 桾
+ 0x687f: "K\a\u687f", // 桿
+ 0x6880: "K\a\u6880", // 梀
+ 0x6881: "K\a\u6881", // 梁
+ 0x6882: "K\a\u6882", // 梂
+ 0x6883: "K\a\u6883", // 梃
+ 0x6884: "K\a\u6884", // 梄
+ 0x6885: "K\a\u6885", // 梅
+ 0x6886: "K\a\u6886", // 梆
+ 0x6887: "K\a\u6887", // 梇
+ 0x6888: "K\a\u6888", // 梈
+ 0x6889: "K\a\u6889", // 梉
+ 0x688a: "K\a\u688a", // 梊
+ 0x688b: "K\a\u688b", // 梋
+ 0x688c: "K\a\u688c", // 梌
+ 0x688d: "K\a\u688d", // 梍
+ 0x688e: "K\a\u688e", // 梎
+ 0x688f: "K\a\u688f", // 梏
+ 0x6890: "K\a\u6890", // 梐
+ 0x6891: "K\a\u6891", // 梑
+ 0x6892: "K\a\u6892", // 梒
+ 0x6893: "K\a\u6893", // 梓
+ 0x6894: "K\a\u6894", // 梔
+ 0x6895: "K\a\u6895", // 梕
+ 0x6896: "K\a\u6896", // 梖
+ 0x6897: "K\a\u6897", // 梗
+ 0x6898: "K\a\u6898", // 梘
+ 0x6899: "K\a\u6899", // 梙
+ 0x689a: "K\a\u689a", // 梚
+ 0x689b: "K\a\u689b", // 梛
+ 0x689c: "K\a\u689c", // 梜
+ 0x689d: "K\a\u689d", // 條
+ 0x689e: "K\a\u689e", // 梞
+ 0x689f: "K\a\u689f", // 梟
+ 0x68a0: "K\a\u68a0", // 梠
+ 0x68a1: "K\a\u68a1", // 梡
+ 0x68a2: "K\a\u68a2", // 梢
+ 0x68a3: "K\a\u68a3", // 梣
+ 0x68a4: "K\a\u68a4", // 梤
+ 0x68a5: "K\a\u68a5", // 梥
+ 0x68a6: "K\a\u68a6", // 梦
+ 0x68a7: "K\a\u68a7", // 梧
+ 0x68a8: "K\a\u68a8", // 梨
+ 0x68a9: "K\a\u68a9", // 梩
+ 0x68aa: "K\a\u68aa", // 梪
+ 0x68ab: "K\a\u68ab", // 梫
+ 0x68ac: "K\a\u68ac", // 梬
+ 0x68ad: "K\a\u68ad", // 梭
+ 0x68ae: "K\a\u68ae", // 梮
+ 0x68af: "K\a\u68af", // 梯
+ 0x68b0: "K\a\u68b0", // 械
+ 0x68b1: "K\a\u68b1", // 梱
+ 0x68b2: "K\a\u68b2", // 梲
+ 0x68b3: "K\a\u68b3", // 梳
+ 0x68b4: "K\a\u68b4", // 梴
+ 0x68b5: "K\a\u68b5", // 梵
+ 0x68b6: "K\a\u68b6", // 梶
+ 0x68b7: "K\a\u68b7", // 梷
+ 0x68b8: "K\a\u68b8", // 梸
+ 0x68b9: "K\a\u68b9", // 梹
+ 0x68ba: "K\a\u68ba", // 梺
+ 0x68bb: "K\a\u68bb", // 梻
+ 0x68bc: "K\a\u68bc", // 梼
+ 0x68bd: "K\a\u68bd", // 梽
+ 0x68be: "K\a\u68be", // 梾
+ 0x68bf: "K\a\u68bf", // 梿
+ 0x68c0: "K\a\u68c0", // 检
+ 0x68c1: "K\a\u68c1", // 棁
+ 0x68c2: "K\a\u68c2", // 棂
+ 0x68c3: "K\b\u68c3", // 棃
+ 0x68c4: "K\b\u68c4", // 棄
+ 0x68c5: "K\b\u68c5", // 棅
+ 0x68c6: "K\b\u68c6", // 棆
+ 0x68c7: "K\b\u68c7", // 棇
+ 0x68c8: "K\b\u68c8", // 棈
+ 0x68c9: "K\b\u68c9", // 棉
+ 0x68ca: "K\b\u68ca", // 棊
+ 0x68cb: "K\b\u68cb", // 棋
+ 0x68cc: "K\b\u68cc", // 棌
+ 0x68cd: "K\b\u68cd", // 棍
+ 0x68ce: "K\b\u68ce", // 棎
+ 0x68cf: "K\b\u68cf", // 棏
+ 0x68d0: "K\b\u68d0", // 棐
+ 0x68d1: "K\b\u68d1", // 棑
+ 0x68d2: "K\b\u68d2", // 棒
+ 0x68d3: "K\b\u68d3", // 棓
+ 0x68d4: "K\b\u68d4", // 棔
+ 0x68d5: "K\b\u68d5", // 棕
+ 0x68d6: "K\b\u68d6", // 棖
+ 0x68d7: "K\b\u68d7", // 棗
+ 0x68d8: "K\b\u68d8", // 棘
+ 0x68d9: "K\b\u68d9", // 棙
+ 0x68da: "K\b\u68da", // 棚
+ 0x68db: "K\b\u68db", // 棛
+ 0x68dc: "K\b\u68dc", // 棜
+ 0x68dd: "K\b\u68dd", // 棝
+ 0x68de: "K\b\u68de", // 棞
+ 0x68df: "K\b\u68df", // 棟
+ 0x68e0: "K\b\u68e0", // 棠
+ 0x68e1: "K\b\u68e1", // 棡
+ 0x68e2: "K\b\u68e2", // 棢
+ 0x68e3: "K\b\u68e3", // 棣
+ 0x68e4: "K\b\u68e4", // 棤
+ 0x68e5: "K\b\u68e5", // 棥
+ 0x68e6: "K\b\u68e6", // 棦
+ 0x68e7: "K\b\u68e7", // 棧
+ 0x68e8: "K\b\u68e8", // 棨
+ 0x68e9: "K\b\u68e9", // 棩
+ 0x68ea: "K\b\u68ea", // 棪
+ 0x68eb: "K\b\u68eb", // 棫
+ 0x68ec: "K\b\u68ec", // 棬
+ 0x68ed: "K\b\u68ed", // 棭
+ 0x68ee: "K\b\u68ee", // 森
+ 0x68ef: "K\b\u68ef", // 棯
+ 0x68f0: "K\b\u68f0", // 棰
+ 0x68f1: "K\b\u68f1", // 棱
+ 0x68f2: "K\b\u68f2", // 棲
+ 0x68f3: "K\b\u68f3", // 棳
+ 0x68f4: "K\b\u68f4", // 棴
+ 0x68f5: "K\b\u68f5", // 棵
+ 0x68f6: "K\b\u68f6", // 棶
+ 0x68f7: "K\b\u68f7", // 棷
+ 0x68f8: "K\b\u68f8", // 棸
+ 0x68f9: "K\b\u68f9", // 棹
+ 0x68fa: "K\b\u68fa", // 棺
+ 0x68fb: "K\b\u68fb", // 棻
+ 0x68fc: "K\b\u68fc", // 棼
+ 0x68fd: "K\b\u68fd", // 棽
+ 0x68fe: "K\b\u68fe", // 棾
+ 0x68ff: "K\b\u68ff", // 棿
+ 0x6900: "K\b\u6900", // 椀
+ 0x6901: "K\b\u6901", // 椁
+ 0x6902: "K\b\u6902", // 椂
+ 0x6903: "K\b\u6903", // 椃
+ 0x6904: "K\b\u6904", // 椄
+ 0x6905: "K\b\u6905", // 椅
+ 0x6906: "K\b\u6906", // 椆
+ 0x6907: "K\b\u6907", // 椇
+ 0x6908: "K\b\u6908", // 椈
+ 0x6909: "K\b\u6909", // 椉
+ 0x690a: "K\b\u690a", // 椊
+ 0x690b: "K\b\u690b", // 椋
+ 0x690c: "K\b\u690c", // 椌
+ 0x690d: "K\b\u690d", // 植
+ 0x690e: "K\b\u690e", // 椎
+ 0x690f: "K\b\u690f", // 椏
+ 0x6910: "K\b\u6910", // 椐
+ 0x6911: "K\b\u6911", // 椑
+ 0x6912: "K\b\u6912", // 椒
+ 0x6913: "K\b\u6913", // 椓
+ 0x6914: "K\b\u6914", // 椔
+ 0x6915: "K\b\u6915", // 椕
+ 0x6916: "K\b\u6916", // 椖
+ 0x6917: "K\b\u6917", // 椗
+ 0x6918: "K\b\u6918", // 椘
+ 0x6919: "K\b\u6919", // 椙
+ 0x691a: "K\b\u691a", // 椚
+ 0x691b: "K\b\u691b", // 椛
+ 0x691c: "K\b\u691c", // 検
+ 0x691d: "K\b\u691d", // 椝
+ 0x691e: "K\b\u691e", // 椞
+ 0x691f: "K\b\u691f", // 椟
+ 0x6920: "K\b\u6920", // 椠
+ 0x6921: "K\b\u6921", // 椡
+ 0x6922: "K\b\u6922", // 椢
+ 0x6923: "K\b\u6923", // 椣
+ 0x6924: "K\b\u6924", // 椤
+ 0x6925: "K\b\u6925", // 椥
+ 0x6926: "K\b\u6926", // 椦
+ 0x6927: "K\b\u6927", // 椧
+ 0x6928: "K\b\u6928", // 椨
+ 0x6929: "K\b\u6929", // 椩
+ 0x692a: "K\b\u692a", // 椪
+ 0x692b: "K\b\u692b", // 椫
+ 0x692c: "K\b\u692c", // 椬
+ 0x692d: "K\b\u692d", // 椭
+ 0x692e: "K\b\u692e", // 椮
+ 0x692f: "K\t\u692f", // 椯
+ 0x6930: "K\t\u6930", // 椰
+ 0x6931: "K\t\u6931", // 椱
+ 0x6932: "K\t\u6932", // 椲
+ 0x6933: "K\t\u6933", // 椳
+ 0x6934: "K\t\u6934", // 椴
+ 0x6935: "K\t\u6935", // 椵
+ 0x6936: "K\t\u6936", // 椶
+ 0x6937: "K\t\u6937", // 椷
+ 0x6938: "K\t\u6938", // 椸
+ 0x6939: "K\t\u6939", // 椹
+ 0x693a: "K\t\u693a", // 椺
+ 0x693b: "K\t\u693b", // 椻
+ 0x693c: "K\t\u693c", // 椼
+ 0x693d: "K\t\u693d", // 椽
+ 0x693e: "K\t\u693e", // 椾
+ 0x693f: "K\t\u693f", // 椿
+ 0x6940: "K\t\u6940", // 楀
+ 0x6941: "K\t\u6941", // 楁
+ 0x6942: "K\t\u6942", // 楂
+ 0x6943: "K\t\u6943", // 楃
+ 0x6944: "K\t\u6944", // 楄
+ 0x6945: "K\t\u6945", // 楅
+ 0x6946: "K\t\u6946", // 楆
+ 0x6947: "K\t\u6947", // 楇
+ 0x6948: "K\t\u6948", // 楈
+ 0x6949: "K\t\u6949", // 楉
+ 0x694a: "K\t\u694a", // 楊
+ 0x694b: "K\t\u694b", // 楋
+ 0x694c: "K\t\u694c", // 楌
+ 0x694d: "K\t\u694d", // 楍
+ 0x694e: "K\t\u694e", // 楎
+ 0x694f: "K\t\u694f", // 楏
+ 0x6950: "K\t\u6950", // 楐
+ 0x6951: "K\t\u6951", // 楑
+ 0x6952: "K\t\u6952", // 楒
+ 0x6953: "K\t\u6953", // 楓
+ 0x6954: "K\t\u6954", // 楔
+ 0x6955: "K\t\u6955", // 楕
+ 0x6956: "K\t\u6956", // 楖
+ 0x6957: "K\t\u6957", // 楗
+ 0x6958: "K\t\u6958", // 楘
+ 0x6959: "K\t\u6959", // 楙
+ 0x695a: "K\t\u695a", // 楚
+ 0x695b: "K\t\u695b", // 楛
+ 0x695c: "K\t\u695c", // 楜
+ 0x695d: "K\t\u695d", // 楝
+ 0x695e: "K\t\u695e", // 楞
+ 0x695f: "K\t\u695f", // 楟
+ 0x6960: "K\t\u6960", // 楠
+ 0x6961: "K\t\u6961", // 楡
+ 0x6962: "K\t\u6962", // 楢
+ 0x6963: "K\t\u6963", // 楣
+ 0x6964: "K\t\u6964", // 楤
+ 0x6965: "K\t\u6965", // 楥
+ 0x6966: "K\t\u6966", // 楦
+ 0x6967: "K\t\u6967", // 楧
+ 0x6968: "K\t\u6968", // 楨
+ 0x6969: "K\t\u6969", // 楩
+ 0x696a: "K\t\u696a", // 楪
+ 0x696b: "K\t\u696b", // 楫
+ 0x696c: "K\t\u696c", // 楬
+ 0x696d: "K\t\u696d", // 業
+ 0x696e: "K\t\u696e", // 楮
+ 0x696f: "K\t\u696f", // 楯
+ 0x6970: "K\t\u6970", // 楰
+ 0x6971: "K\t\u6971", // 楱
+ 0x6972: "K\t\u6972", // 楲
+ 0x6973: "K\t\u6973", // 楳
+ 0x6974: "K\t\u6974", // 楴
+ 0x6975: "K\t\u6975", // 極
+ 0x6976: "K\t\u6976", // 楶
+ 0x6977: "K\t\u6977", // 楷
+ 0x6978: "K\t\u6978", // 楸
+ 0x6979: "K\t\u6979", // 楹
+ 0x697a: "K\t\u697a", // 楺
+ 0x697b: "K\t\u697b", // 楻
+ 0x697c: "K\t\u697c", // 楼
+ 0x697d: "K\t\u697d", // 楽
+ 0x697e: "K\t\u697e", // 楾
+ 0x697f: "K\t\u697f", // 楿
+ 0x6980: "K\t\u6980", // 榀
+ 0x6981: "K\t\u6981", // 榁
+ 0x6982: "K\t\u6982", // 概
+ 0x6983: "K\t\u6983", // 榃
+ 0x6984: "K\t\u6984", // 榄
+ 0x6985: "K\t\u6985", // 榅
+ 0x6986: "K\t\u6986", // 榆
+ 0x6987: "K\t\u6987", // 榇
+ 0x6988: "K\t\u6988", // 榈
+ 0x6989: "K\t\u6989", // 榉
+ 0x698a: "K\n\u698a", // 榊
+ 0x698b: "K\t\u698b", // 榋
+ 0x698c: "K\t\u698c", // 榌
+ 0x698d: "K\n\u698d", // 榍
+ 0x698e: "K\n\u698e", // 榎
+ 0x698f: "K\n\u698f", // 榏
+ 0x6990: "K\n\u6990", // 榐
+ 0x6991: "K\n\u6991", // 榑
+ 0x6992: "K\n\u6992", // 榒
+ 0x6993: "K\n\u6993", // 榓
+ 0x6994: "K\t\u6994", // 榔
+ 0x6995: "K\n\u6995", // 榕
+ 0x6996: "K\n\u6996", // 榖
+ 0x6997: "K\n\u6997", // 榗
+ 0x6998: "K\t\u6998", // 榘
+ 0x6999: "K\n\u6999", // 榙
+ 0x699a: "K\n\u699a", // 榚
+ 0x699b: "K\n\u699b", // 榛
+ 0x699c: "K\n\u699c", // 榜
+ 0x699d: "K\n\u699d", // 榝
+ 0x699e: "K\n\u699e", // 榞
+ 0x699f: "K\n\u699f", // 榟
+ 0x69a0: "K\n\u69a0", // 榠
+ 0x69a1: "K\n\u69a1", // 榡
+ 0x69a2: "K\n\u69a2", // 榢
+ 0x69a3: "K\n\u69a3", // 榣
+ 0x69a4: "K\n\u69a4", // 榤
+ 0x69a5: "K\n\u69a5", // 榥
+ 0x69a6: "K\n\u69a6", // 榦
+ 0x69a7: "K\n\u69a7", // 榧
+ 0x69a8: "K\n\u69a8", // 榨
+ 0x69a9: "K\n\u69a9", // 榩
+ 0x69aa: "K\n\u69aa", // 榪
+ 0x69ab: "K\n\u69ab", // 榫
+ 0x69ac: "K\n\u69ac", // 榬
+ 0x69ad: "K\n\u69ad", // 榭
+ 0x69ae: "K\n\u69ae", // 榮
+ 0x69af: "K\n\u69af", // 榯
+ 0x69b0: "K\n\u69b0", // 榰
+ 0x69b1: "K\n\u69b1", // 榱
+ 0x69b2: "K\n\u69b2", // 榲
+ 0x69b3: "K\n\u69b3", // 榳
+ 0x69b4: "K\n\u69b4", // 榴
+ 0x69b5: "K\n\u69b5", // 榵
+ 0x69b6: "K\n\u69b6", // 榶
+ 0x69b7: "K\n\u69b7", // 榷
+ 0x69b8: "K\n\u69b8", // 榸
+ 0x69b9: "K\n\u69b9", // 榹
+ 0x69ba: "K\n\u69ba", // 榺
+ 0x69bb: "K\n\u69bb", // 榻
+ 0x69bc: "K\n\u69bc", // 榼
+ 0x69bd: "K\n\u69bd", // 榽
+ 0x69be: "K\n\u69be", // 榾
+ 0x69bf: "K\n\u69bf", // 榿
+ 0x69c0: "K\n\u69c0", // 槀
+ 0x69c1: "K\n\u69c1", // 槁
+ 0x69c2: "K\n\u69c2", // 槂
+ 0x69c3: "K\n\u69c3", // 槃
+ 0x69c4: "K\n\u69c4", // 槄
+ 0x69c5: "K\n\u69c5", // 槅
+ 0x69c6: "K\n\u69c6", // 槆
+ 0x69c7: "K\n\u69c7", // 槇
+ 0x69c8: "K\n\u69c8", // 槈
+ 0x69c9: "K\n\u69c9", // 槉
+ 0x69ca: "K\n\u69ca", // 槊
+ 0x69cb: "K\n\u69cb", // 構
+ 0x69cc: "K\n\u69cc", // 槌
+ 0x69cd: "K\n\u69cd", // 槍
+ 0x69ce: "K\n\u69ce", // 槎
+ 0x69cf: "K\n\u69cf", // 槏
+ 0x69d0: "K\n\u69d0", // 槐
+ 0x69d1: "K\n\u69d1", // 槑
+ 0x69d2: "K\n\u69d2", // 槒
+ 0x69d3: "K\n\u69d3", // 槓
+ 0x69d4: "K\n\u69d4", // 槔
+ 0x69d5: "K\n\u69d5", // 槕
+ 0x69d6: "K\n\u69d6", // 槖
+ 0x69d7: "K\n\u69d7", // 槗
+ 0x69d8: "K\n\u69d8", // 様
+ 0x69d9: "K\n\u69d9", // 槙
+ 0x69da: "K\n\u69da", // 槚
+ 0x69db: "K\n\u69db", // 槛
+ 0x69dc: "K\n\u69dc", // 槜
+ 0x69dd: "K\n\u69dd", // 槝
+ 0x69de: "K\n\u69de", // 槞
+ 0x69df: "K\n\u69df", // 槟
+ 0x69e0: "K\n\u69e0", // 槠
+ 0x69e1: "K\n\u69e1", // 槡
+ 0x69e2: "K\v\u69e2", // 槢
+ 0x69e3: "K\v\u69e3", // 槣
+ 0x69e4: "K\v\u69e4", // 槤
+ 0x69e5: "K\v\u69e5", // 槥
+ 0x69e6: "K\v\u69e6", // 槦
+ 0x69e7: "K\v\u69e7", // 槧
+ 0x69e8: "K\v\u69e8", // 槨
+ 0x69e9: "K\n\u69e9", // 槩
+ 0x69ea: "K\v\u69ea", // 槪
+ 0x69eb: "K\v\u69eb", // 槫
+ 0x69ec: "K\v\u69ec", // 槬
+ 0x69ed: "K\v\u69ed", // 槭
+ 0x69ee: "K\v\u69ee", // 槮
+ 0x69ef: "K\v\u69ef", // 槯
+ 0x69f0: "K\v\u69f0", // 槰
+ 0x69f1: "K\v\u69f1", // 槱
+ 0x69f2: "K\v\u69f2", // 槲
+ 0x69f3: "K\v\u69f3", // 槳
+ 0x69f4: "K\v\u69f4", // 槴
+ 0x69f5: "K\v\u69f5", // 槵
+ 0x69f6: "K\v\u69f6", // 槶
+ 0x69f7: "K\v\u69f7", // 槷
+ 0x69f8: "K\v\u69f8", // 槸
+ 0x69f9: "K\v\u69f9", // 槹
+ 0x69fa: "K\v\u69fa", // 槺
+ 0x69fb: "K\v\u69fb", // 槻
+ 0x69fc: "K\v\u69fc", // 槼
+ 0x69fd: "K\v\u69fd", // 槽
+ 0x69fe: "K\v\u69fe", // 槾
+ 0x69ff: "K\v\u69ff", // 槿
+ 0x6a00: "K\v\u6a00", // 樀
+ 0x6a01: "K\v\u6a01", // 樁
+ 0x6a02: "K\v\u6a02", // 樂
+ 0x6a03: "K\v\u6a03", // 樃
+ 0x6a04: "K\v\u6a04", // 樄
+ 0x6a05: "K\v\u6a05", // 樅
+ 0x6a06: "K\v\u6a06", // 樆
+ 0x6a07: "K\v\u6a07", // 樇
+ 0x6a08: "K\v\u6a08", // 樈
+ 0x6a09: "K\v\u6a09", // 樉
+ 0x6a0a: "K\v\u6a0a", // 樊
+ 0x6a0b: "K\v\u6a0b", // 樋
+ 0x6a0c: "K\v\u6a0c", // 樌
+ 0x6a0d: "K\v\u6a0d", // 樍
+ 0x6a0e: "K\v\u6a0e", // 樎
+ 0x6a0f: "K\v\u6a0f", // 樏
+ 0x6a10: "K\v\u6a10", // 樐
+ 0x6a11: "K\v\u6a11", // 樑
+ 0x6a12: "K\v\u6a12", // 樒
+ 0x6a13: "K\v\u6a13", // 樓
+ 0x6a14: "K\v\u6a14", // 樔
+ 0x6a15: "K\v\u6a15", // 樕
+ 0x6a16: "K\v\u6a16", // 樖
+ 0x6a17: "K\v\u6a17", // 樗
+ 0x6a18: "K\v\u6a18", // 樘
+ 0x6a19: "K\v\u6a19", // 標
+ 0x6a1a: "K\v\u6a1a", // 樚
+ 0x6a1b: "K\v\u6a1b", // 樛
+ 0x6a1c: "K\v\u6a1c", // 樜
+ 0x6a1d: "K\v\u6a1d", // 樝
+ 0x6a1e: "K\v\u6a1e", // 樞
+ 0x6a1f: "K\v\u6a1f", // 樟
+ 0x6a20: "K\v\u6a20", // 樠
+ 0x6a21: "K\v\u6a21", // 模
+ 0x6a22: "K\v\u6a22", // 樢
+ 0x6a23: "K\v\u6a23", // 樣
+ 0x6a24: "K\v\u6a24", // 樤
+ 0x6a25: "K\v\u6a25", // 樥
+ 0x6a26: "K\v\u6a26", // 樦
+ 0x6a27: "K\v\u6a27", // 樧
+ 0x6a28: "K\v\u6a28", // 樨
+ 0x6a29: "K\v\u6a29", // 権
+ 0x6a2a: "K\v\u6a2a", // 横
+ 0x6a2b: "K\v\u6a2b", // 樫
+ 0x6a2c: "K\v\u6a2c", // 樬
+ 0x6a2d: "K\v\u6a2d", // 樭
+ 0x6a2e: "K\n\u6a2e", // 樮
+ 0x6a2f: "K\v\u6a2f", // 樯
+ 0x6a30: "K\v\u6a30", // 樰
+ 0x6a31: "K\v\u6a31", // 樱
+ 0x6a32: "K\f\u6a32", // 樲
+ 0x6a33: "K\f\u6a33", // 樳
+ 0x6a34: "K\f\u6a34", // 樴
+ 0x6a35: "K\f\u6a35", // 樵
+ 0x6a36: "K\f\u6a36", // 樶
+ 0x6a37: "K\f\u6a37", // 樷
+ 0x6a38: "K\f\u6a38", // 樸
+ 0x6a39: "K\f\u6a39", // 樹
+ 0x6a3a: "K\f\u6a3a", // 樺
+ 0x6a3b: "K\f\u6a3b", // 樻
+ 0x6a3c: "K\f\u6a3c", // 樼
+ 0x6a3d: "K\f\u6a3d", // 樽
+ 0x6a3e: "K\f\u6a3e", // 樾
+ 0x6a3f: "K\f\u6a3f", // 樿
+ 0x6a40: "K\f\u6a40", // 橀
+ 0x6a41: "K\f\u6a41", // 橁
+ 0x6a42: "K\f\u6a42", // 橂
+ 0x6a43: "K\f\u6a43", // 橃
+ 0x6a44: "K\f\u6a44", // 橄
+ 0x6a45: "K\f\u6a45", // 橅
+ 0x6a46: "K\f\u6a46", // 橆
+ 0x6a47: "K\f\u6a47", // 橇
+ 0x6a48: "K\f\u6a48", // 橈
+ 0x6a49: "K\f\u6a49", // 橉
+ 0x6a4a: "K\f\u6a4a", // 橊
+ 0x6a4b: "K\f\u6a4b", // 橋
+ 0x6a4c: "K\f\u6a4c", // 橌
+ 0x6a4d: "K\f\u6a4d", // 橍
+ 0x6a4e: "K\f\u6a4e", // 橎
+ 0x6a4f: "K\f\u6a4f", // 橏
+ 0x6a50: "K\f\u6a50", // 橐
+ 0x6a51: "K\f\u6a51", // 橑
+ 0x6a52: "K\f\u6a52", // 橒
+ 0x6a53: "K\f\u6a53", // 橓
+ 0x6a54: "K\f\u6a54", // 橔
+ 0x6a55: "K\f\u6a55", // 橕
+ 0x6a56: "K\f\u6a56", // 橖
+ 0x6a57: "K\f\u6a57", // 橗
+ 0x6a58: "K\f\u6a58", // 橘
+ 0x6a59: "K\f\u6a59", // 橙
+ 0x6a5a: "K\f\u6a5a", // 橚
+ 0x6a5b: "K\f\u6a5b", // 橛
+ 0x6a5c: "K\f\u6a5c", // 橜
+ 0x6a5d: "K\f\u6a5d", // 橝
+ 0x6a5e: "K\f\u6a5e", // 橞
+ 0x6a5f: "K\f\u6a5f", // 機
+ 0x6a60: "K\f\u6a60", // 橠
+ 0x6a61: "K\f\u6a61", // 橡
+ 0x6a62: "K\f\u6a62", // 橢
+ 0x6a63: "K\f\u6a63", // 橣
+ 0x6a64: "K\f\u6a64", // 橤
+ 0x6a65: "K\v\u6a65", // 橥
+ 0x6a66: "K\f\u6a66", // 橦
+ 0x6a67: "K\f\u6a67", // 橧
+ 0x6a68: "K\f\u6a68", // 橨
+ 0x6a69: "K\f\u6a69", // 橩
+ 0x6a6a: "K\f\u6a6a", // 橪
+ 0x6a6b: "K\f\u6a6b", // 橫
+ 0x6a6c: "K\f\u6a6c", // 橬
+ 0x6a6d: "K\f\u6a6d", // 橭
+ 0x6a6e: "K\f\u6a6e", // 橮
+ 0x6a6f: "K\f\u6a6f", // 橯
+ 0x6a70: "K\f\u6a70", // 橰
+ 0x6a71: "K\f\u6a71", // 橱
+ 0x6a72: "K\f\u6a72", // 橲
+ 0x6a73: "K\f\u6a73", // 橳
+ 0x6a74: "K\v\u6a74", // 橴
+ 0x6a75: "K\f\u6a75", // 橵
+ 0x6a76: "K\f\u6a76", // 橶
+ 0x6a77: "K\f\u6a77", // 橷
+ 0x6a78: "K\f\u6a78", // 橸
+ 0x6a79: "K\f\u6a79", // 橹
+ 0x6a7a: "K\f\u6a7a", // 橺
+ 0x6a7b: "K\f\u6a7b", // 橻
+ 0x6a7c: "K\f\u6a7c", // 橼
+ 0x6a7d: "K\r\u6a7d", // 橽
+ 0x6a7e: "K\r\u6a7e", // 橾
+ 0x6a7f: "K\r\u6a7f", // 橿
+ 0x6a80: "K\r\u6a80", // 檀
+ 0x6a81: "K\r\u6a81", // 檁
+ 0x6a82: "K\r\u6a82", // 檂
+ 0x6a83: "K\r\u6a83", // 檃
+ 0x6a84: "K\r\u6a84", // 檄
+ 0x6a85: "K\r\u6a85", // 檅
+ 0x6a86: "K\r\u6a86", // 檆
+ 0x6a87: "K\r\u6a87", // 檇
+ 0x6a88: "K\r\u6a88", // 檈
+ 0x6a89: "K\r\u6a89", // 檉
+ 0x6a8a: "K\r\u6a8a", // 檊
+ 0x6a8b: "K\r\u6a8b", // 檋
+ 0x6a8c: "K\r\u6a8c", // 檌
+ 0x6a8d: "K\r\u6a8d", // 檍
+ 0x6a8e: "K\r\u6a8e", // 檎
+ 0x6a8f: "K\r\u6a8f", // 檏
+ 0x6a90: "K\r\u6a90", // 檐
+ 0x6a91: "K\r\u6a91", // 檑
+ 0x6a92: "K\r\u6a92", // 檒
+ 0x6a93: "K\r\u6a93", // 檓
+ 0x6a94: "K\r\u6a94", // 檔
+ 0x6a95: "K\r\u6a95", // 檕
+ 0x6a96: "K\r\u6a96", // 檖
+ 0x6a97: "K\r\u6a97", // 檗
+ 0x6a98: "K\r\u6a98", // 檘
+ 0x6a99: "K\r\u6a99", // 檙
+ 0x6a9a: "K\r\u6a9a", // 檚
+ 0x6a9b: "K\r\u6a9b", // 檛
+ 0x6a9c: "K\r\u6a9c", // 檜
+ 0x6a9d: "K\r\u6a9d", // 檝
+ 0x6a9e: "K\r\u6a9e", // 檞
+ 0x6a9f: "K\r\u6a9f", // 檟
+ 0x6aa0: "K\r\u6aa0", // 檠
+ 0x6aa1: "K\r\u6aa1", // 檡
+ 0x6aa2: "K\r\u6aa2", // 檢
+ 0x6aa3: "K\r\u6aa3", // 檣
+ 0x6aa4: "K\r\u6aa4", // 檤
+ 0x6aa5: "K\r\u6aa5", // 檥
+ 0x6aa6: "K\r\u6aa6", // 檦
+ 0x6aa7: "K\r\u6aa7", // 檧
+ 0x6aa8: "K\r\u6aa8", // 檨
+ 0x6aa9: "K\r\u6aa9", // 檩
+ 0x6aaa: "K\r\u6aaa", // 檪
+ 0x6aab: "K\x0e\u6aab", // 檫
+ 0x6aac: "K\x0e\u6aac", // 檬
+ 0x6aad: "K\x0e\u6aad", // 檭
+ 0x6aae: "K\x0e\u6aae", // 檮
+ 0x6aaf: "K\x0e\u6aaf", // 檯
+ 0x6ab0: "K\x0e\u6ab0", // 檰
+ 0x6ab1: "K\x0e\u6ab1", // 檱
+ 0x6ab2: "K\x0e\u6ab2", // 檲
+ 0x6ab3: "K\x0e\u6ab3", // 檳
+ 0x6ab4: "K\x0e\u6ab4", // 檴
+ 0x6ab5: "K\x0e\u6ab5", // 檵
+ 0x6ab6: "K\x0e\u6ab6", // 檶
+ 0x6ab7: "K\x0e\u6ab7", // 檷
+ 0x6ab8: "K\x0e\u6ab8", // 檸
+ 0x6ab9: "K\x0e\u6ab9", // 檹
+ 0x6aba: "K\x0e\u6aba", // 檺
+ 0x6abb: "K\x0e\u6abb", // 檻
+ 0x6abc: "K\x0e\u6abc", // 檼
+ 0x6abd: "K\x0e\u6abd", // 檽
+ 0x6abe: "K\x0e\u6abe", // 檾
+ 0x6abf: "K\x0e\u6abf", // 檿
+ 0x6ac0: "K\x0e\u6ac0", // 櫀
+ 0x6ac1: "K\x0e\u6ac1", // 櫁
+ 0x6ac2: "K\x0e\u6ac2", // 櫂
+ 0x6ac3: "K\x0e\u6ac3", // 櫃
+ 0x6ac4: "K\x0e\u6ac4", // 櫄
+ 0x6ac5: "K\x0e\u6ac5", // 櫅
+ 0x6ac6: "K\x0e\u6ac6", // 櫆
+ 0x6ac7: "K\x0e\u6ac7", // 櫇
+ 0x6ac8: "K\x0e\u6ac8", // 櫈
+ 0x6ac9: "K\x0e\u6ac9", // 櫉
+ 0x6aca: "K\x0e\u6aca", // 櫊
+ 0x6acb: "K\x0f\u6acb", // 櫋
+ 0x6acc: "K\x0f\u6acc", // 櫌
+ 0x6acd: "K\x0f\u6acd", // 櫍
+ 0x6ace: "K\x0f\u6ace", // 櫎
+ 0x6acf: "K\x0f\u6acf", // 櫏
+ 0x6ad0: "K\x0f\u6ad0", // 櫐
+ 0x6ad1: "K\x0f\u6ad1", // 櫑
+ 0x6ad2: "K\x0f\u6ad2", // 櫒
+ 0x6ad3: "K\x0f\u6ad3", // 櫓
+ 0x6ad4: "K\x0f\u6ad4", // 櫔
+ 0x6ad5: "K\x0f\u6ad5", // 櫕
+ 0x6ad6: "K\x0f\u6ad6", // 櫖
+ 0x6ad7: "K\x0f\u6ad7", // 櫗
+ 0x6ad8: "K\x0f\u6ad8", // 櫘
+ 0x6ad9: "K\x0f\u6ad9", // 櫙
+ 0x6ada: "K\x0f\u6ada", // 櫚
+ 0x6adb: "K\x0f\u6adb", // 櫛
+ 0x6adc: "K\x0f\u6adc", // 櫜
+ 0x6add: "K\x0f\u6add", // 櫝
+ 0x6ade: "K\x0f\u6ade", // 櫞
+ 0x6adf: "K\x0f\u6adf", // 櫟
+ 0x6ae0: "K\x0f\u6ae0", // 櫠
+ 0x6ae1: "K\x0f\u6ae1", // 櫡
+ 0x6ae2: "K\x0f\u6ae2", // 櫢
+ 0x6ae3: "K\x0f\u6ae3", // 櫣
+ 0x6ae4: "K\x0f\u6ae4", // 櫤
+ 0x6ae5: "K\x0f\u6ae5", // 櫥
+ 0x6ae6: "K\x0f\u6ae6", // 櫦
+ 0x6ae7: "K\x10\u6ae7", // 櫧
+ 0x6ae8: "K\x10\u6ae8", // 櫨
+ 0x6ae9: "K\x10\u6ae9", // 櫩
+ 0x6aea: "K\x10\u6aea", // 櫪
+ 0x6aeb: "K\x0f\u6aeb", // 櫫
+ 0x6aec: "K\x10\u6aec", // 櫬
+ 0x6aed: "K\x0f\u6aed", // 櫭
+ 0x6aee: "K\x10\u6aee", // 櫮
+ 0x6aef: "K\x10\u6aef", // 櫯
+ 0x6af0: "K\x10\u6af0", // 櫰
+ 0x6af1: "K\x10\u6af1", // 櫱
+ 0x6af2: "K\x10\u6af2", // 櫲
+ 0x6af3: "K\x10\u6af3", // 櫳
+ 0x6af4: "K\x10\u6af4", // 櫴
+ 0x6af5: "K\x10\u6af5", // 櫵
+ 0x6af6: "K\x10\u6af6", // 櫶
+ 0x6af7: "K\x12\u6af7", // 櫷
+ 0x6af8: "K\x11\u6af8", // 櫸
+ 0x6af9: "K\x11\u6af9", // 櫹
+ 0x6afa: "K\x11\u6afa", // 櫺
+ 0x6afb: "K\x11\u6afb", // 櫻
+ 0x6afc: "K\x11\u6afc", // 櫼
+ 0x6afd: "K\x11\u6afd", // 櫽
+ 0x6afe: "K\x11\u6afe", // 櫾
+ 0x6aff: "K\x11\u6aff", // 櫿
+ 0x6b00: "K\x11\u6b00", // 欀
+ 0x6b01: "K\x11\u6b01", // 欁
+ 0x6b02: "K\x11\u6b02", // 欂
+ 0x6b03: "K\x11\u6b03", // 欃
+ 0x6b04: "K\x11\u6b04", // 欄
+ 0x6b05: "K\x11\u6b05", // 欅
+ 0x6b06: "K\x12\u6b06", // 欆
+ 0x6b07: "K\x12\u6b07", // 欇
+ 0x6b08: "K\x12\u6b08", // 欈
+ 0x6b09: "K\x12\u6b09", // 欉
+ 0x6b0a: "K\x12\u6b0a", // 權
+ 0x6b0b: "K\x12\u6b0b", // 欋
+ 0x6b0c: "K\x11\u6b0c", // 欌
+ 0x6b0d: "K\x12\u6b0d", // 欍
+ 0x6b0e: "K\x12\u6b0e", // 欎
+ 0x6b0f: "K\x13\u6b0f", // 欏
+ 0x6b10: "K\x13\u6b10", // 欐
+ 0x6b11: "K\x13\u6b11", // 欑
+ 0x6b12: "K\x13\u6b12", // 欒
+ 0x6b13: "K\x14\u6b13", // 欓
+ 0x6b14: "K\x14\u6b14", // 欔
+ 0x6b15: "K\x14\u6b15", // 欕
+ 0x6b16: "K\x15\u6b16", // 欖
+ 0x6b17: "K\x15\u6b17", // 欗
+ 0x6b18: "K\x15\u6b18", // 欘
+ 0x6b19: "K\x15\u6b19", // 欙
+ 0x6b1a: "K\x15\u6b1a", // 欚
+ 0x6b1b: "K\x15\u6b1b", // 欛
+ 0x6b1c: "K\x16\u6b1c", // 欜
+ 0x6b1d: "K\x16\u6b1d", // 欝
+ 0x6b1e: "K\x18\u6b1e", // 欞
+ 0x6b1f: "K\x18\u6b1f", // 欟
+ 0x6b20: "L\x00\u6b20", // 欠
+ 0x6b21: "L\x02\u6b21", // 次
+ 0x6b22: "L\x02\u6b22", // 欢
+ 0x6b23: "L\x04\u6b23", // 欣
+ 0x6b24: "L\x03\u6b24", // 欤
+ 0x6b25: "L\x04\u6b25", // 欥
+ 0x6b26: "L\x04\u6b26", // 欦
+ 0x6b27: "L\x04\u6b27", // 欧
+ 0x6b28: "L\x05\u6b28", // 欨
+ 0x6b29: "L\x05\u6b29", // 欩
+ 0x6b2a: "L\x05\u6b2a", // 欪
+ 0x6b2b: "L\x06\u6b2b", // 欫
+ 0x6b2c: "L\x06\u6b2c", // 欬
+ 0x6b2d: "L\x06\u6b2d", // 欭
+ 0x6b2e: "L\x06\u6b2e", // 欮
+ 0x6b2f: "L\x06\u6b2f", // 欯
+ 0x6b30: "L\x06\u6b30", // 欰
+ 0x6b31: "L\x06\u6b31", // 欱
+ 0x6b32: "L\a\u6b32", // 欲
+ 0x6b33: "L\a\u6b33", // 欳
+ 0x6b34: "L\a\u6b34", // 欴
+ 0x6b35: "L\a\u6b35", // 欵
+ 0x6b36: "L\a\u6b36", // 欶
+ 0x6b37: "L\a\u6b37", // 欷
+ 0x6b38: "L\a\u6b38", // 欸
+ 0x6b39: "L\b\u6b39", // 欹
+ 0x6b3a: "L\b\u6b3a", // 欺
+ 0x6b3b: "L\b\u6b3b", // 欻
+ 0x6b3c: "L\b\u6b3c", // 欼
+ 0x6b3d: "L\b\u6b3d", // 欽
+ 0x6b3e: "L\b\u6b3e", // 款
+ 0x6b3f: "L\b\u6b3f", // 欿
+ 0x6b40: "L\t\u6b40", // 歀
+ 0x6b41: "L\t\u6b41", // 歁
+ 0x6b42: "L\t\u6b42", // 歂
+ 0x6b43: "L\t\u6b43", // 歃
+ 0x6b44: "L\t\u6b44", // 歄
+ 0x6b45: "L\t\u6b45", // 歅
+ 0x6b46: "L\t\u6b46", // 歆
+ 0x6b47: "L\t\u6b47", // 歇
+ 0x6b48: "L\t\u6b48", // 歈
+ 0x6b49: "L\n\u6b49", // 歉
+ 0x6b4a: "L\n\u6b4a", // 歊
+ 0x6b4b: "L\n\u6b4b", // 歋
+ 0x6b4c: "L\n\u6b4c", // 歌
+ 0x6b4d: "L\n\u6b4d", // 歍
+ 0x6b4e: "L\v\u6b4e", // 歎
+ 0x6b4f: "L\v\u6b4f", // 歏
+ 0x6b50: "L\v\u6b50", // 歐
+ 0x6b51: "L\v\u6b51", // 歑
+ 0x6b52: "L\v\u6b52", // 歒
+ 0x6b53: "L\v\u6b53", // 歓
+ 0x6b54: "L\f\u6b54", // 歔
+ 0x6b55: "L\f\u6b55", // 歕
+ 0x6b56: "L\f\u6b56", // 歖
+ 0x6b57: "L\f\u6b57", // 歗
+ 0x6b58: "L\f\u6b58", // 歘
+ 0x6b59: "L\f\u6b59", // 歙
+ 0x6b5a: "L\f\u6b5a", // 歚
+ 0x6b5b: "L\r\u6b5b", // 歛
+ 0x6b5c: "L\r\u6b5c", // 歜
+ 0x6b5d: "L\r\u6b5d", // 歝
+ 0x6b5e: "L\x0e\u6b5e", // 歞
+ 0x6b5f: "L\x0e\u6b5f", // 歟
+ 0x6b60: "L\x0f\u6b60", // 歠
+ 0x6b61: "L\x12\u6b61", // 歡
+ 0x6b62: "M\x00\u6b62", // 止
+ 0x6b63: "M\x01\u6b63", // 正
+ 0x6b64: "M\x02\u6b64", // 此
+ 0x6b65: "M\x03\u6b65", // 步
+ 0x6b66: "M\x04\u6b66", // 武
+ 0x6b67: "M\x04\u6b67", // 歧
+ 0x6b68: "M\x04\u6b68", // 歨
+ 0x6b69: "M\x04\u6b69", // 歩
+ 0x6b6a: "M\x05\u6b6a", // 歪
+ 0x6b6b: "M\x05\u6b6b", // 歫
+ 0x6b6c: "M\x06\u6b6c", // 歬
+ 0x6b6d: "M\x06\u6b6d", // 歭
+ 0x6b6e: "M\b\u6b6e", // 歮
+ 0x6b6f: "M\b\u6b6f", // 歯
+ 0x6b70: "M\t\u6b70", // 歰
+ 0x6b71: "M\t\u6b71", // 歱
+ 0x6b72: "M\t\u6b72", // 歲
+ 0x6b73: "M\t\u6b73", // 歳
+ 0x6b74: "M\n\u6b74", // 歴
+ 0x6b75: "M\v\u6b75", // 歵
+ 0x6b76: "M\v\u6b76", // 歶
+ 0x6b77: "M\f\u6b77", // 歷
+ 0x6b78: "M\x0e\u6b78", // 歸
+ 0x6b79: "N\x00\u6b79", // 歹
+ 0x6b7a: "N\x01\u6b7a", // 歺
+ 0x6b7b: "N\x02\u6b7b", // 死
+ 0x6b7c: "N\x03\u6b7c", // 歼
+ 0x6b7d: "N\x04\u6b7d", // 歽
+ 0x6b7e: "N\x04\u6b7e", // 歾
+ 0x6b7f: "N\x04\u6b7f", // 歿
+ 0x6b80: "N\x04\u6b80", // 殀
+ 0x6b81: "N\x04\u6b81", // 殁
+ 0x6b82: "N\x05\u6b82", // 殂
+ 0x6b83: "N\x05\u6b83", // 殃
+ 0x6b84: "N\x05\u6b84", // 殄
+ 0x6b85: "N\x05\u6b85", // 殅
+ 0x6b86: "N\x05\u6b86", // 殆
+ 0x6b87: "N\x05\u6b87", // 殇
+ 0x6b88: "N\x06\u6b88", // 殈
+ 0x6b89: "N\x06\u6b89", // 殉
+ 0x6b8a: "N\x06\u6b8a", // 殊
+ 0x6b8b: "N\x06\u6b8b", // 残
+ 0x6b8c: "N\a\u6b8c", // 殌
+ 0x6b8d: "N\a\u6b8d", // 殍
+ 0x6b8e: "N\a\u6b8e", // 殎
+ 0x6b8f: "N\a\u6b8f", // 殏
+ 0x6b90: "N\a\u6b90", // 殐
+ 0x6b91: "N\a\u6b91", // 殑
+ 0x6b92: "N\a\u6b92", // 殒
+ 0x6b93: "N\a\u6b93", // 殓
+ 0x6b94: "N\b\u6b94", // 殔
+ 0x6b95: "N\b\u6b95", // 殕
+ 0x6b96: "N\b\u6b96", // 殖
+ 0x6b97: "N\b\u6b97", // 殗
+ 0x6b98: "N\b\u6b98", // 殘
+ 0x6b99: "N\b\u6b99", // 殙
+ 0x6b9a: "N\b\u6b9a", // 殚
+ 0x6b9b: "N\t\u6b9b", // 殛
+ 0x6b9c: "N\t\u6b9c", // 殜
+ 0x6b9d: "N\n\u6b9d", // 殝
+ 0x6b9e: "N\n\u6b9e", // 殞
+ 0x6b9f: "N\n\u6b9f", // 殟
+ 0x6ba0: "N\n\u6ba0", // 殠
+ 0x6ba1: "N\n\u6ba1", // 殡
+ 0x6ba2: "N\v\u6ba2", // 殢
+ 0x6ba3: "N\v\u6ba3", // 殣
+ 0x6ba4: "N\v\u6ba4", // 殤
+ 0x6ba5: "N\v\u6ba5", // 殥
+ 0x6ba6: "N\v\u6ba6", // 殦
+ 0x6ba7: "N\f\u6ba7", // 殧
+ 0x6ba8: "N\f\u6ba8", // 殨
+ 0x6ba9: "N\f\u6ba9", // 殩
+ 0x6baa: "N\f\u6baa", // 殪
+ 0x6bab: "N\f\u6bab", // 殫
+ 0x6bac: "N\r\u6bac", // 殬
+ 0x6bad: "N\r\u6bad", // 殭
+ 0x6bae: "N\r\u6bae", // 殮
+ 0x6baf: "N\x0e\u6baf", // 殯
+ 0x6bb0: "N\x0f\u6bb0", // 殰
+ 0x6bb1: "N\x0f\u6bb1", // 殱
+ 0x6bb2: "N\x11\u6bb2", // 殲
+ 0x6bb3: "O\x00\u6bb3", // 殳
+ 0x6bb4: "O\x04\u6bb4", // 殴
+ 0x6bb5: "O\x05\u6bb5", // 段
+ 0x6bb6: "O\x05\u6bb6", // 殶
+ 0x6bb7: "O\x06\u6bb7", // 殷
+ 0x6bb8: "O\a\u6bb8", // 殸
+ 0x6bb9: "O\a\u6bb9", // 殹
+ 0x6bba: "O\a\u6bba", // 殺
+ 0x6bbb: "O\a\u6bbb", // 殻
+ 0x6bbc: "O\b\u6bbc", // 殼
+ 0x6bbd: "O\b\u6bbd", // 殽
+ 0x6bbe: "O\t\u6bbe", // 殾
+ 0x6bbf: "O\t\u6bbf", // 殿
+ 0x6bc0: "O\t\u6bc0", // 毀
+ 0x6bc1: "O\t\u6bc1", // 毁
+ 0x6bc2: "O\t\u6bc2", // 毂
+ 0x6bc3: "O\n\u6bc3", // 毃
+ 0x6bc4: "O\n\u6bc4", // 毄
+ 0x6bc5: "O\v\u6bc5", // 毅
+ 0x6bc6: "O\v\u6bc6", // 毆
+ 0x6bc7: "O\f\u6bc7", // 毇
+ 0x6bc8: "O\f\u6bc8", // 毈
+ 0x6bc9: "O\x0f\u6bc9", // 毉
+ 0x6bca: "O\x13\u6bca", // 毊
+ 0x6bcb: "P\x00\u6bcb", // 毋
+ 0x6bcc: "P\x00\u6bcc", // 毌
+ 0x6bcd: "P\x01\u6bcd", // 母
+ 0x6bce: "P\x02\u6bce", // 毎
+ 0x6bcf: "P\x03\u6bcf", // 每
+ 0x6bd0: "P\x03\u6bd0", // 毐
+ 0x6bd1: "P\x04\u6bd1", // 毑
+ 0x6bd2: "P\x04\u6bd2", // 毒
+ 0x6bd3: "P\t\u6bd3", // 毓
+ 0x6bd4: "Q\x00\u6bd4", // 比
+ 0x6bd5: "Q\x02\u6bd5", // 毕
+ 0x6bd6: "Q\x05\u6bd6", // 毖
+ 0x6bd7: "Q\x05\u6bd7", // 毗
+ 0x6bd8: "Q\x05\u6bd8", // 毘
+ 0x6bd9: "Q\x06\u6bd9", // 毙
+ 0x6bda: "Q\r\u6bda", // 毚
+ 0x6bdb: "R\x00\u6bdb", // 毛
+ 0x6bdc: "R\x03\u6bdc", // 毜
+ 0x6bdd: "R\x03\u6bdd", // 毝
+ 0x6bde: "R\x04\u6bde", // 毞
+ 0x6bdf: "R\x04\u6bdf", // 毟
+ 0x6be0: "R\x05\u6be0", // 毠
+ 0x6be1: "R\x05\u6be1", // 毡
+ 0x6be2: "R\x06\u6be2", // 毢
+ 0x6be3: "R\x06\u6be3", // 毣
+ 0x6be4: "R\x06\u6be4", // 毤
+ 0x6be5: "R\x06\u6be5", // 毥
+ 0x6be6: "R\x06\u6be6", // 毦
+ 0x6be7: "R\x06\u6be7", // 毧
+ 0x6be8: "R\x06\u6be8", // 毨
+ 0x6be9: "R\x06\u6be9", // 毩
+ 0x6bea: "R\x06\u6bea", // 毪
+ 0x6beb: "R\a\u6beb", // 毫
+ 0x6bec: "R\a\u6bec", // 毬
+ 0x6bed: "R\a\u6bed", // 毭
+ 0x6bee: "R\a\u6bee", // 毮
+ 0x6bef: "R\b\u6bef", // 毯
+ 0x6bf0: "R\b\u6bf0", // 毰
+ 0x6bf1: "R\b\u6bf1", // 毱
+ 0x6bf2: "R\b\u6bf2", // 毲
+ 0x6bf3: "R\b\u6bf3", // 毳
+ 0x6bf4: "R\b\u6bf4", // 毴
+ 0x6bf5: "R\b\u6bf5", // 毵
+ 0x6bf6: "R\b\u6bf6", // 毶
+ 0x6bf7: "R\t\u6bf7", // 毷
+ 0x6bf8: "R\t\u6bf8", // 毸
+ 0x6bf9: "R\t\u6bf9", // 毹
+ 0x6bfa: "R\t\u6bfa", // 毺
+ 0x6bfb: "R\t\u6bfb", // 毻
+ 0x6bfc: "R\t\u6bfc", // 毼
+ 0x6bfd: "R\t\u6bfd", // 毽
+ 0x6bfe: "R\n\u6bfe", // 毾
+ 0x6bff: "R\v\u6bff", // 毿
+ 0x6c00: "R\v\u6c00", // 氀
+ 0x6c01: "R\v\u6c01", // 氁
+ 0x6c02: "R\v\u6c02", // 氂
+ 0x6c03: "R\f\u6c03", // 氃
+ 0x6c04: "R\f\u6c04", // 氄
+ 0x6c05: "R\f\u6c05", // 氅
+ 0x6c06: "R\f\u6c06", // 氆
+ 0x6c07: "R\f\u6c07", // 氇
+ 0x6c08: "R\r\u6c08", // 氈
+ 0x6c09: "R\r\u6c09", // 氉
+ 0x6c0a: "R\r\u6c0a", // 氊
+ 0x6c0b: "R\x0e\u6c0b", // 氋
+ 0x6c0c: "R\x0f\u6c0c", // 氌
+ 0x6c0d: "R\x12\u6c0d", // 氍
+ 0x6c0e: "R\x16\u6c0e", // 氎
+ 0x6c0f: "S\x00\u6c0f", // 氏
+ 0x6c10: "S\x01\u6c10", // 氐
+ 0x6c11: "S\x01\u6c11", // 民
+ 0x6c12: "S\x02\u6c12", // 氒
+ 0x6c13: "S\x04\u6c13", // 氓
+ 0x6c14: "T\x00\u6c14", // 气
+ 0x6c15: "T\x01\u6c15", // 氕
+ 0x6c16: "T\x02\u6c16", // 氖
+ 0x6c17: "T\x02\u6c17", // 気
+ 0x6c18: "T\x02\u6c18", // 氘
+ 0x6c19: "T\x03\u6c19", // 氙
+ 0x6c1a: "T\x03\u6c1a", // 氚
+ 0x6c1b: "T\x04\u6c1b", // 氛
+ 0x6c1c: "T\x04\u6c1c", // 氜
+ 0x6c1d: "T\x04\u6c1d", // 氝
+ 0x6c1e: "T\x05\u6c1e", // 氞
+ 0x6c1f: "T\x05\u6c1f", // 氟
+ 0x6c20: "T\x05\u6c20", // 氠
+ 0x6c21: "T\x05\u6c21", // 氡
+ 0x6c22: "T\x05\u6c22", // 氢
+ 0x6c23: "T\x06\u6c23", // 氣
+ 0x6c24: "T\x06\u6c24", // 氤
+ 0x6c25: "T\x06\u6c25", // 氥
+ 0x6c26: "T\x06\u6c26", // 氦
+ 0x6c27: "T\x06\u6c27", // 氧
+ 0x6c28: "T\x06\u6c28", // 氨
+ 0x6c29: "T\x06\u6c29", // 氩
+ 0x6c2a: "T\a\u6c2a", // 氪
+ 0x6c2b: "T\a\u6c2b", // 氫
+ 0x6c2c: "T\b\u6c2c", // 氬
+ 0x6c2d: "T\b\u6c2d", // 氭
+ 0x6c2e: "T\b\u6c2e", // 氮
+ 0x6c2f: "T\b\u6c2f", // 氯
+ 0x6c30: "T\b\u6c30", // 氰
+ 0x6c31: "T\t\u6c31", // 氱
+ 0x6c32: "T\n\u6c32", // 氲
+ 0x6c33: "T\n\u6c33", // 氳
+ 0x6c34: "U\x00\u6c34", // 水
+ 0x6c35: "U\x00\u6c35", // 氵
+ 0x6c36: "U\x01\u6c36", // 氶
+ 0x6c37: "U\x01\u6c37", // 氷
+ 0x6c38: "U\x01\u6c38", // 永
+ 0x6c39: "U\x01\u6c39", // 氹
+ 0x6c3a: "U\x00\u6c3a", // 氺
+ 0x6c3b: "U\x02\u6c3b", // 氻
+ 0x6c3c: "U\x02\u6c3c", // 氼
+ 0x6c3d: "\v\x04\u6c3d", // 氽
+ 0x6c3e: "U\x02\u6c3e", // 氾
+ 0x6c3f: "U\x02\u6c3f", // 氿
+ 0x6c40: "U\x02\u6c40", // 汀
+ 0x6c41: "U\x02\u6c41", // 汁
+ 0x6c42: "U\x02\u6c42", // 求
+ 0x6c43: "U\x02\u6c43", // 汃
+ 0x6c44: "U\x02\u6c44", // 汄
+ 0x6c45: "U\x02\u6c45", // 汅
+ 0x6c46: "U\x02\u6c46", // 汆
+ 0x6c47: "U\x02\u6c47", // 汇
+ 0x6c48: "U\x02\u6c48", // 汈
+ 0x6c49: "U\x02\u6c49", // 汉
+ 0x6c4a: "U\x03\u6c4a", // 汊
+ 0x6c4b: "U\x03\u6c4b", // 汋
+ 0x6c4c: "U\x03\u6c4c", // 汌
+ 0x6c4d: "U\x03\u6c4d", // 汍
+ 0x6c4e: "U\x03\u6c4e", // 汎
+ 0x6c4f: "U\x03\u6c4f", // 汏
+ 0x6c50: "U\x03\u6c50", // 汐
+ 0x6c51: "U\x03\u6c51", // 汑
+ 0x6c52: "U\x03\u6c52", // 汒
+ 0x6c53: "U\x03\u6c53", // 汓
+ 0x6c54: "U\x03\u6c54", // 汔
+ 0x6c55: "U\x03\u6c55", // 汕
+ 0x6c56: "U\x03\u6c56", // 汖
+ 0x6c57: "U\x03\u6c57", // 汗
+ 0x6c58: "U\x03\u6c58", // 汘
+ 0x6c59: "U\x03\u6c59", // 汙
+ 0x6c5a: "U\x03\u6c5a", // 汚
+ 0x6c5b: "U\x03\u6c5b", // 汛
+ 0x6c5c: "U\x03\u6c5c", // 汜
+ 0x6c5d: "U\x03\u6c5d", // 汝
+ 0x6c5e: "U\x03\u6c5e", // 汞
+ 0x6c5f: "U\x03\u6c5f", // 江
+ 0x6c60: "U\x03\u6c60", // 池
+ 0x6c61: "U\x03\u6c61", // 污
+ 0x6c62: "U\x03\u6c62", // 汢
+ 0x6c63: "U\x03\u6c63", // 汣
+ 0x6c64: "U\x03\u6c64", // 汤
+ 0x6c65: "U\x04\u6c65", // 汥
+ 0x6c66: "U\x04\u6c66", // 汦
+ 0x6c67: "U\x04\u6c67", // 汧
+ 0x6c68: "U\x04\u6c68", // 汨
+ 0x6c69: "U\x04\u6c69", // 汩
+ 0x6c6a: "U\x04\u6c6a", // 汪
+ 0x6c6b: "U\x04\u6c6b", // 汫
+ 0x6c6c: "U\x04\u6c6c", // 汬
+ 0x6c6d: "U\x04\u6c6d", // 汭
+ 0x6c6e: "U\x04\u6c6e", // 汮
+ 0x6c6f: "U\x04\u6c6f", // 汯
+ 0x6c70: "U\x04\u6c70", // 汰
+ 0x6c71: "U\x04\u6c71", // 汱
+ 0x6c72: "U\x04\u6c72", // 汲
+ 0x6c73: "U\x04\u6c73", // 汳
+ 0x6c74: "U\x04\u6c74", // 汴
+ 0x6c75: "U\x04\u6c75", // 汵
+ 0x6c76: "U\x04\u6c76", // 汶
+ 0x6c77: "U\x04\u6c77", // 汷
+ 0x6c78: "U\x04\u6c78", // 汸
+ 0x6c79: "U\x04\u6c79", // 汹
+ 0x6c7a: "U\x04\u6c7a", // 決
+ 0x6c7b: "U\x04\u6c7b", // 汻
+ 0x6c7c: "U\x04\u6c7c", // 汼
+ 0x6c7d: "U\x04\u6c7d", // 汽
+ 0x6c7e: "U\x04\u6c7e", // 汾
+ 0x6c7f: "U\x04\u6c7f", // 汿
+ 0x6c80: "U\x04\u6c80", // 沀
+ 0x6c81: "U\x04\u6c81", // 沁
+ 0x6c82: "U\x04\u6c82", // 沂
+ 0x6c83: "U\x04\u6c83", // 沃
+ 0x6c84: "U\x04\u6c84", // 沄
+ 0x6c85: "U\x04\u6c85", // 沅
+ 0x6c86: "U\x04\u6c86", // 沆
+ 0x6c87: "U\x04\u6c87", // 沇
+ 0x6c88: "U\x04\u6c88", // 沈
+ 0x6c89: "U\x04\u6c89", // 沉
+ 0x6c8a: "U\x04\u6c8a", // 沊
+ 0x6c8b: "U\x04\u6c8b", // 沋
+ 0x6c8c: "U\x04\u6c8c", // 沌
+ 0x6c8d: "U\x04\u6c8d", // 沍
+ 0x6c8e: "U\x04\u6c8e", // 沎
+ 0x6c8f: "U\x04\u6c8f", // 沏
+ 0x6c90: "U\x04\u6c90", // 沐
+ 0x6c91: "U\x04\u6c91", // 沑
+ 0x6c92: "U\x04\u6c92", // 沒
+ 0x6c93: "U\x04\u6c93", // 沓
+ 0x6c94: "U\x04\u6c94", // 沔
+ 0x6c95: "U\x04\u6c95", // 沕
+ 0x6c96: "U\x04\u6c96", // 沖
+ 0x6c97: "U\x04\u6c97", // 沗
+ 0x6c98: "U\x04\u6c98", // 沘
+ 0x6c99: "U\x04\u6c99", // 沙
+ 0x6c9a: "U\x04\u6c9a", // 沚
+ 0x6c9b: "U\x04\u6c9b", // 沛
+ 0x6c9c: "U\x04\u6c9c", // 沜
+ 0x6c9d: "U\x04\u6c9d", // 沝
+ 0x6c9e: "U\x04\u6c9e", // 沞
+ 0x6c9f: "U\x04\u6c9f", // 沟
+ 0x6ca0: "U\x04\u6ca0", // 沠
+ 0x6ca1: "U\x04\u6ca1", // 没
+ 0x6ca2: "U\x04\u6ca2", // 沢
+ 0x6ca3: "U\x04\u6ca3", // 沣
+ 0x6ca4: "U\x04\u6ca4", // 沤
+ 0x6ca5: "U\x04\u6ca5", // 沥
+ 0x6ca6: "U\x04\u6ca6", // 沦
+ 0x6ca7: "U\x04\u6ca7", // 沧
+ 0x6ca8: "U\x04\u6ca8", // 沨
+ 0x6ca9: "U\x04\u6ca9", // 沩
+ 0x6caa: "U\x04\u6caa", // 沪
+ 0x6cab: "U\x05\u6cab", // 沫
+ 0x6cac: "U\x05\u6cac", // 沬
+ 0x6cad: "U\x05\u6cad", // 沭
+ 0x6cae: "U\x05\u6cae", // 沮
+ 0x6caf: "U\x05\u6caf", // 沯
+ 0x6cb0: "U\x05\u6cb0", // 沰
+ 0x6cb1: "U\x05\u6cb1", // 沱
+ 0x6cb2: "U\x05\u6cb2", // 沲
+ 0x6cb3: "U\x05\u6cb3", // 河
+ 0x6cb4: "U\x05\u6cb4", // 沴
+ 0x6cb5: "U\x05\u6cb5", // 沵
+ 0x6cb6: "U\x05\u6cb6", // 沶
+ 0x6cb7: "U\x05\u6cb7", // 沷
+ 0x6cb8: "U\x05\u6cb8", // 沸
+ 0x6cb9: "U\x05\u6cb9", // 油
+ 0x6cba: "U\x05\u6cba", // 沺
+ 0x6cbb: "U\x05\u6cbb", // 治
+ 0x6cbc: "U\x05\u6cbc", // 沼
+ 0x6cbd: "U\x05\u6cbd", // 沽
+ 0x6cbe: "U\x05\u6cbe", // 沾
+ 0x6cbf: "U\x05\u6cbf", // 沿
+ 0x6cc0: "U\x05\u6cc0", // 泀
+ 0x6cc1: "U\x05\u6cc1", // 況
+ 0x6cc2: "U\x05\u6cc2", // 泂
+ 0x6cc3: "U\x05\u6cc3", // 泃
+ 0x6cc4: "U\x05\u6cc4", // 泄
+ 0x6cc5: "U\x05\u6cc5", // 泅
+ 0x6cc6: "U\x05\u6cc6", // 泆
+ 0x6cc7: "U\x05\u6cc7", // 泇
+ 0x6cc8: "U\x05\u6cc8", // 泈
+ 0x6cc9: "U\x05\u6cc9", // 泉
+ 0x6cca: "U\x05\u6cca", // 泊
+ 0x6ccb: "U\x05\u6ccb", // 泋
+ 0x6ccc: "U\x05\u6ccc", // 泌
+ 0x6ccd: "U\x05\u6ccd", // 泍
+ 0x6cce: "U\x05\u6cce", // 泎
+ 0x6ccf: "U\x05\u6ccf", // 泏
+ 0x6cd0: "U\x05\u6cd0", // 泐
+ 0x6cd1: "U\x05\u6cd1", // 泑
+ 0x6cd2: "U\x05\u6cd2", // 泒
+ 0x6cd3: "U\x05\u6cd3", // 泓
+ 0x6cd4: "U\x05\u6cd4", // 泔
+ 0x6cd5: "U\x05\u6cd5", // 法
+ 0x6cd6: "U\x05\u6cd6", // 泖
+ 0x6cd7: "U\x05\u6cd7", // 泗
+ 0x6cd8: "U\x05\u6cd8", // 泘
+ 0x6cd9: "U\x05\u6cd9", // 泙
+ 0x6cda: "U\x06\u6cda", // 泚
+ 0x6cdb: "U\x05\u6cdb", // 泛
+ 0x6cdc: "U\x05\u6cdc", // 泜
+ 0x6cdd: "U\x05\u6cdd", // 泝
+ 0x6cde: "U\x05\u6cde", // 泞
+ 0x6cdf: "U\x05\u6cdf", // 泟
+ 0x6ce0: "U\x05\u6ce0", // 泠
+ 0x6ce1: "U\x05\u6ce1", // 泡
+ 0x6ce2: "U\x05\u6ce2", // 波
+ 0x6ce3: "U\x05\u6ce3", // 泣
+ 0x6ce4: "U\x05\u6ce4", // 泤
+ 0x6ce5: "U\x05\u6ce5", // 泥
+ 0x6ce6: "U\x05\u6ce6", // 泦
+ 0x6ce7: "U\x05\u6ce7", // 泧
+ 0x6ce8: "U\x05\u6ce8", // 注
+ 0x6ce9: "U\x05\u6ce9", // 泩
+ 0x6cea: "U\x05\u6cea", // 泪
+ 0x6ceb: "U\x05\u6ceb", // 泫
+ 0x6cec: "U\x05\u6cec", // 泬
+ 0x6ced: "U\x05\u6ced", // 泭
+ 0x6cee: "U\x05\u6cee", // 泮
+ 0x6cef: "U\x05\u6cef", // 泯
+ 0x6cf0: "U\x05\u6cf0", // 泰
+ 0x6cf1: "U\x05\u6cf1", // 泱
+ 0x6cf2: "U\x05\u6cf2", // 泲
+ 0x6cf3: "U\x05\u6cf3", // 泳
+ 0x6cf4: "U\x05\u6cf4", // 泴
+ 0x6cf5: "p\x04\u6cf5", // 泵
+ 0x6cf6: "U\x05\u6cf6", // 泶
+ 0x6cf7: "U\x05\u6cf7", // 泷
+ 0x6cf8: "U\x05\u6cf8", // 泸
+ 0x6cf9: "U\x05\u6cf9", // 泹
+ 0x6cfa: "U\x05\u6cfa", // 泺
+ 0x6cfb: "U\x05\u6cfb", // 泻
+ 0x6cfc: "U\x05\u6cfc", // 泼
+ 0x6cfd: "U\x05\u6cfd", // 泽
+ 0x6cfe: "U\x05\u6cfe", // 泾
+ 0x6cff: "U\x06\u6cff", // 泿
+ 0x6d00: "U\x06\u6d00", // 洀
+ 0x6d01: "U\x06\u6d01", // 洁
+ 0x6d02: "U\x06\u6d02", // 洂
+ 0x6d03: "U\x06\u6d03", // 洃
+ 0x6d04: "U\x06\u6d04", // 洄
+ 0x6d05: "U\x06\u6d05", // 洅
+ 0x6d06: "U\x06\u6d06", // 洆
+ 0x6d07: "U\x06\u6d07", // 洇
+ 0x6d08: "U\x06\u6d08", // 洈
+ 0x6d09: "U\x06\u6d09", // 洉
+ 0x6d0a: "U\x06\u6d0a", // 洊
+ 0x6d0b: "U\x06\u6d0b", // 洋
+ 0x6d0c: "U\x06\u6d0c", // 洌
+ 0x6d0d: "U\a\u6d0d", // 洍
+ 0x6d0e: "U\x06\u6d0e", // 洎
+ 0x6d0f: "U\x06\u6d0f", // 洏
+ 0x6d10: "U\x06\u6d10", // 洐
+ 0x6d11: "U\x06\u6d11", // 洑
+ 0x6d12: "U\x06\u6d12", // 洒
+ 0x6d13: "U\x06\u6d13", // 洓
+ 0x6d14: "U\x06\u6d14", // 洔
+ 0x6d15: "U\x06\u6d15", // 洕
+ 0x6d16: "U\a\u6d16", // 洖
+ 0x6d17: "U\x06\u6d17", // 洗
+ 0x6d18: "U\x06\u6d18", // 洘
+ 0x6d19: "U\x06\u6d19", // 洙
+ 0x6d1a: "U\x06\u6d1a", // 洚
+ 0x6d1b: "U\x06\u6d1b", // 洛
+ 0x6d1c: "U\x06\u6d1c", // 洜
+ 0x6d1d: "U\x06\u6d1d", // 洝
+ 0x6d1e: "U\x06\u6d1e", // 洞
+ 0x6d1f: "U\x06\u6d1f", // 洟
+ 0x6d20: "U\x06\u6d20", // 洠
+ 0x6d21: "U\x06\u6d21", // 洡
+ 0x6d22: "U\x06\u6d22", // 洢
+ 0x6d23: "U\x06\u6d23", // 洣
+ 0x6d24: "U\x06\u6d24", // 洤
+ 0x6d25: "U\x06\u6d25", // 津
+ 0x6d26: "U\x06\u6d26", // 洦
+ 0x6d27: "U\x06\u6d27", // 洧
+ 0x6d28: "U\x06\u6d28", // 洨
+ 0x6d29: "U\x06\u6d29", // 洩
+ 0x6d2a: "U\x06\u6d2a", // 洪
+ 0x6d2b: "U\x06\u6d2b", // 洫
+ 0x6d2c: "U\x06\u6d2c", // 洬
+ 0x6d2d: "U\x06\u6d2d", // 洭
+ 0x6d2e: "U\x06\u6d2e", // 洮
+ 0x6d2f: "U\x06\u6d2f", // 洯
+ 0x6d30: "U\x06\u6d30", // 洰
+ 0x6d31: "U\x06\u6d31", // 洱
+ 0x6d32: "U\x06\u6d32", // 洲
+ 0x6d33: "U\x06\u6d33", // 洳
+ 0x6d34: "U\x06\u6d34", // 洴
+ 0x6d35: "U\x06\u6d35", // 洵
+ 0x6d36: "U\x06\u6d36", // 洶
+ 0x6d37: "U\x06\u6d37", // 洷
+ 0x6d38: "U\x06\u6d38", // 洸
+ 0x6d39: "U\x06\u6d39", // 洹
+ 0x6d3a: "U\x06\u6d3a", // 洺
+ 0x6d3b: "U\x06\u6d3b", // 活
+ 0x6d3c: "U\x06\u6d3c", // 洼
+ 0x6d3d: "U\x06\u6d3d", // 洽
+ 0x6d3e: "U\x06\u6d3e", // 派
+ 0x6d3f: "U\x06\u6d3f", // 洿
+ 0x6d40: "U\x06\u6d40", // 浀
+ 0x6d41: "U\x06\u6d41", // 流
+ 0x6d42: "U\x06\u6d42", // 浂
+ 0x6d43: "U\x06\u6d43", // 浃
+ 0x6d44: "U\x06\u6d44", // 浄
+ 0x6d45: "U\x06\u6d45", // 浅
+ 0x6d46: "U\x06\u6d46", // 浆
+ 0x6d47: "U\x06\u6d47", // 浇
+ 0x6d48: "U\x06\u6d48", // 浈
+ 0x6d49: "U\x06\u6d49", // 浉
+ 0x6d4a: "U\x06\u6d4a", // 浊
+ 0x6d4b: "U\x06\u6d4b", // 测
+ 0x6d4c: "U\x06\u6d4c", // 浌
+ 0x6d4d: "U\x06\u6d4d", // 浍
+ 0x6d4e: "U\x06\u6d4e", // 济
+ 0x6d4f: "U\x06\u6d4f", // 浏
+ 0x6d50: "U\x06\u6d50", // 浐
+ 0x6d51: "U\x06\u6d51", // 浑
+ 0x6d52: "U\x06\u6d52", // 浒
+ 0x6d53: "U\x06\u6d53", // 浓
+ 0x6d54: "U\x06\u6d54", // 浔
+ 0x6d55: "U\x06\u6d55", // 浕
+ 0x6d56: "U\a\u6d56", // 浖
+ 0x6d57: "U\a\u6d57", // 浗
+ 0x6d58: "U\a\u6d58", // 浘
+ 0x6d59: "U\a\u6d59", // 浙
+ 0x6d5a: "U\a\u6d5a", // 浚
+ 0x6d5b: "U\a\u6d5b", // 浛
+ 0x6d5c: "U\a\u6d5c", // 浜
+ 0x6d5d: "U\a\u6d5d", // 浝
+ 0x6d5e: "U\a\u6d5e", // 浞
+ 0x6d5f: "U\a\u6d5f", // 浟
+ 0x6d60: "U\a\u6d60", // 浠
+ 0x6d61: "U\a\u6d61", // 浡
+ 0x6d62: "U\a\u6d62", // 浢
+ 0x6d63: "U\a\u6d63", // 浣
+ 0x6d64: "U\a\u6d64", // 浤
+ 0x6d65: "U\a\u6d65", // 浥
+ 0x6d66: "U\a\u6d66", // 浦
+ 0x6d67: "U\a\u6d67", // 浧
+ 0x6d68: "U\a\u6d68", // 浨
+ 0x6d69: "U\a\u6d69", // 浩
+ 0x6d6a: "U\a\u6d6a", // 浪
+ 0x6d6b: "U\a\u6d6b", // 浫
+ 0x6d6c: "U\a\u6d6c", // 浬
+ 0x6d6d: "U\a\u6d6d", // 浭
+ 0x6d6e: "U\a\u6d6e", // 浮
+ 0x6d6f: "U\a\u6d6f", // 浯
+ 0x6d70: "U\a\u6d70", // 浰
+ 0x6d71: "U\a\u6d71", // 浱
+ 0x6d72: "U\a\u6d72", // 浲
+ 0x6d73: "U\a\u6d73", // 浳
+ 0x6d74: "U\a\u6d74", // 浴
+ 0x6d75: "U\a\u6d75", // 浵
+ 0x6d76: "U\a\u6d76", // 浶
+ 0x6d77: "U\a\u6d77", // 海
+ 0x6d78: "U\a\u6d78", // 浸
+ 0x6d79: "U\a\u6d79", // 浹
+ 0x6d7a: "U\a\u6d7a", // 浺
+ 0x6d7b: "U\a\u6d7b", // 浻
+ 0x6d7c: "U\a\u6d7c", // 浼
+ 0x6d7d: "U\a\u6d7d", // 浽
+ 0x6d7e: "U\a\u6d7e", // 浾
+ 0x6d7f: "U\a\u6d7f", // 浿
+ 0x6d80: "U\a\u6d80", // 涀
+ 0x6d81: "U\a\u6d81", // 涁
+ 0x6d82: "U\a\u6d82", // 涂
+ 0x6d83: "U\a\u6d83", // 涃
+ 0x6d84: "U\a\u6d84", // 涄
+ 0x6d85: "U\a\u6d85", // 涅
+ 0x6d86: "U\a\u6d86", // 涆
+ 0x6d87: "U\a\u6d87", // 涇
+ 0x6d88: "U\a\u6d88", // 消
+ 0x6d89: "U\a\u6d89", // 涉
+ 0x6d8a: "U\a\u6d8a", // 涊
+ 0x6d8b: "U\a\u6d8b", // 涋
+ 0x6d8c: "U\a\u6d8c", // 涌
+ 0x6d8d: "U\a\u6d8d", // 涍
+ 0x6d8e: "U\a\u6d8e", // 涎
+ 0x6d8f: "U\a\u6d8f", // 涏
+ 0x6d90: "U\a\u6d90", // 涐
+ 0x6d91: "U\a\u6d91", // 涑
+ 0x6d92: "U\a\u6d92", // 涒
+ 0x6d93: "U\a\u6d93", // 涓
+ 0x6d94: "U\a\u6d94", // 涔
+ 0x6d95: "U\a\u6d95", // 涕
+ 0x6d96: "U\a\u6d96", // 涖
+ 0x6d97: "U\a\u6d97", // 涗
+ 0x6d98: "U\a\u6d98", // 涘
+ 0x6d99: "U\b\u6d99", // 涙
+ 0x6d9a: "U\a\u6d9a", // 涚
+ 0x6d9b: "U\a\u6d9b", // 涛
+ 0x6d9c: "U\a\u6d9c", // 涜
+ 0x6d9d: "U\a\u6d9d", // 涝
+ 0x6d9e: "U\a\u6d9e", // 涞
+ 0x6d9f: "U\a\u6d9f", // 涟
+ 0x6da0: "U\a\u6da0", // 涠
+ 0x6da1: "U\a\u6da1", // 涡
+ 0x6da2: "U\a\u6da2", // 涢
+ 0x6da3: "U\a\u6da3", // 涣
+ 0x6da4: "U\a\u6da4", // 涤
+ 0x6da5: "U\a\u6da5", // 涥
+ 0x6da6: "U\a\u6da6", // 润
+ 0x6da7: "U\a\u6da7", // 涧
+ 0x6da8: "U\a\u6da8", // 涨
+ 0x6da9: "U\a\u6da9", // 涩
+ 0x6daa: "U\b\u6daa", // 涪
+ 0x6dab: "U\b\u6dab", // 涫
+ 0x6dac: "U\b\u6dac", // 涬
+ 0x6dad: "U\b\u6dad", // 涭
+ 0x6dae: "U\b\u6dae", // 涮
+ 0x6daf: "U\b\u6daf", // 涯
+ 0x6db0: "U\b\u6db0", // 涰
+ 0x6db1: "U\b\u6db1", // 涱
+ 0x6db2: "U\b\u6db2", // 液
+ 0x6db3: "U\b\u6db3", // 涳
+ 0x6db4: "U\b\u6db4", // 涴
+ 0x6db5: "U\b\u6db5", // 涵
+ 0x6db6: "U\b\u6db6", // 涶
+ 0x6db7: "U\b\u6db7", // 涷
+ 0x6db8: "U\b\u6db8", // 涸
+ 0x6db9: "U\b\u6db9", // 涹
+ 0x6dba: "U\b\u6dba", // 涺
+ 0x6dbb: "U\b\u6dbb", // 涻
+ 0x6dbc: "U\b\u6dbc", // 涼
+ 0x6dbd: "U\b\u6dbd", // 涽
+ 0x6dbe: "U\b\u6dbe", // 涾
+ 0x6dbf: "U\b\u6dbf", // 涿
+ 0x6dc0: "U\b\u6dc0", // 淀
+ 0x6dc1: "U\b\u6dc1", // 淁
+ 0x6dc2: "U\b\u6dc2", // 淂
+ 0x6dc3: "U\b\u6dc3", // 淃
+ 0x6dc4: "U\b\u6dc4", // 淄
+ 0x6dc5: "U\b\u6dc5", // 淅
+ 0x6dc6: "U\b\u6dc6", // 淆
+ 0x6dc7: "U\b\u6dc7", // 淇
+ 0x6dc8: "U\b\u6dc8", // 淈
+ 0x6dc9: "U\b\u6dc9", // 淉
+ 0x6dca: "U\b\u6dca", // 淊
+ 0x6dcb: "U\b\u6dcb", // 淋
+ 0x6dcc: "U\b\u6dcc", // 淌
+ 0x6dcd: "U\b\u6dcd", // 淍
+ 0x6dce: "U\b\u6dce", // 淎
+ 0x6dcf: "U\b\u6dcf", // 淏
+ 0x6dd0: "U\b\u6dd0", // 淐
+ 0x6dd1: "U\b\u6dd1", // 淑
+ 0x6dd2: "U\b\u6dd2", // 淒
+ 0x6dd3: "U\b\u6dd3", // 淓
+ 0x6dd4: "U\b\u6dd4", // 淔
+ 0x6dd5: "U\b\u6dd5", // 淕
+ 0x6dd6: "U\b\u6dd6", // 淖
+ 0x6dd7: "U\b\u6dd7", // 淗
+ 0x6dd8: "U\b\u6dd8", // 淘
+ 0x6dd9: "U\b\u6dd9", // 淙
+ 0x6dda: "U\b\u6dda", // 淚
+ 0x6ddb: "U\b\u6ddb", // 淛
+ 0x6ddc: "U\b\u6ddc", // 淜
+ 0x6ddd: "U\b\u6ddd", // 淝
+ 0x6dde: "U\b\u6dde", // 淞
+ 0x6ddf: "U\b\u6ddf", // 淟
+ 0x6de0: "U\b\u6de0", // 淠
+ 0x6de1: "U\b\u6de1", // 淡
+ 0x6de2: "U\b\u6de2", // 淢
+ 0x6de3: "U\b\u6de3", // 淣
+ 0x6de4: "U\b\u6de4", // 淤
+ 0x6de5: "U\b\u6de5", // 淥
+ 0x6de6: "U\b\u6de6", // 淦
+ 0x6de7: "U\b\u6de7", // 淧
+ 0x6de8: "U\b\u6de8", // 淨
+ 0x6de9: "U\b\u6de9", // 淩
+ 0x6dea: "U\b\u6dea", // 淪
+ 0x6deb: "U\b\u6deb", // 淫
+ 0x6dec: "U\b\u6dec", // 淬
+ 0x6ded: "U\b\u6ded", // 淭
+ 0x6dee: "U\b\u6dee", // 淮
+ 0x6def: "U\b\u6def", // 淯
+ 0x6df0: "U\b\u6df0", // 淰
+ 0x6df1: "U\b\u6df1", // 深
+ 0x6df2: "U\b\u6df2", // 淲
+ 0x6df3: "U\b\u6df3", // 淳
+ 0x6df4: "U\b\u6df4", // 淴
+ 0x6df5: "U\b\u6df5", // 淵
+ 0x6df6: "U\b\u6df6", // 淶
+ 0x6df7: "U\b\u6df7", // 混
+ 0x6df8: "U\b\u6df8", // 淸
+ 0x6df9: "U\b\u6df9", // 淹
+ 0x6dfa: "U\b\u6dfa", // 淺
+ 0x6dfb: "U\b\u6dfb", // 添
+ 0x6dfc: "U\b\u6dfc", // 淼
+ 0x6dfd: "U\b\u6dfd", // 淽
+ 0x6dfe: "U\b\u6dfe", // 淾
+ 0x6dff: "U\b\u6dff", // 淿
+ 0x6e00: "U\b\u6e00", // 渀
+ 0x6e01: "U\b\u6e01", // 渁
+ 0x6e02: "U\b\u6e02", // 渂
+ 0x6e03: "U\t\u6e03", // 渃
+ 0x6e04: "U\b\u6e04", // 渄
+ 0x6e05: "U\b\u6e05", // 清
+ 0x6e06: "U\b\u6e06", // 渆
+ 0x6e07: "U\b\u6e07", // 渇
+ 0x6e08: "U\b\u6e08", // 済
+ 0x6e09: "U\b\u6e09", // 渉
+ 0x6e0a: "U\b\u6e0a", // 渊
+ 0x6e0b: "U\b\u6e0b", // 渋
+ 0x6e0c: "U\b\u6e0c", // 渌
+ 0x6e0d: "U\b\u6e0d", // 渍
+ 0x6e0e: "U\b\u6e0e", // 渎
+ 0x6e0f: "U\b\u6e0f", // 渏
+ 0x6e10: "U\b\u6e10", // 渐
+ 0x6e11: "U\b\u6e11", // 渑
+ 0x6e12: "U\b\u6e12", // 渒
+ 0x6e13: "U\b\u6e13", // 渓
+ 0x6e14: "U\b\u6e14", // 渔
+ 0x6e15: "U\b\u6e15", // 渕
+ 0x6e16: "U\b\u6e16", // 渖
+ 0x6e17: "U\b\u6e17", // 渗
+ 0x6e18: "U\t\u6e18", // 渘
+ 0x6e19: "U\t\u6e19", // 渙
+ 0x6e1a: "U\b\u6e1a", // 渚
+ 0x6e1b: "U\t\u6e1b", // 減
+ 0x6e1c: "U\t\u6e1c", // 渜
+ 0x6e1d: "U\t\u6e1d", // 渝
+ 0x6e1e: "U\t\u6e1e", // 渞
+ 0x6e1f: "U\t\u6e1f", // 渟
+ 0x6e20: "U\t\u6e20", // 渠
+ 0x6e21: "U\t\u6e21", // 渡
+ 0x6e22: "U\t\u6e22", // 渢
+ 0x6e23: "U\t\u6e23", // 渣
+ 0x6e24: "U\t\u6e24", // 渤
+ 0x6e25: "U\t\u6e25", // 渥
+ 0x6e26: "U\t\u6e26", // 渦
+ 0x6e27: "U\t\u6e27", // 渧
+ 0x6e28: "U\t\u6e28", // 渨
+ 0x6e29: "U\t\u6e29", // 温
+ 0x6e2a: "U\t\u6e2a", // 渪
+ 0x6e2b: "U\t\u6e2b", // 渫
+ 0x6e2c: "U\t\u6e2c", // 測
+ 0x6e2d: "U\t\u6e2d", // 渭
+ 0x6e2e: "U\t\u6e2e", // 渮
+ 0x6e2f: "U\t\u6e2f", // 港
+ 0x6e30: "U\t\u6e30", // 渰
+ 0x6e31: "U\t\u6e31", // 渱
+ 0x6e32: "U\t\u6e32", // 渲
+ 0x6e33: "U\t\u6e33", // 渳
+ 0x6e34: "U\t\u6e34", // 渴
+ 0x6e35: "U\t\u6e35", // 渵
+ 0x6e36: "U\t\u6e36", // 渶
+ 0x6e37: "U\t\u6e37", // 渷
+ 0x6e38: "U\t\u6e38", // 游
+ 0x6e39: "U\t\u6e39", // 渹
+ 0x6e3a: "U\t\u6e3a", // 渺
+ 0x6e3b: "U\t\u6e3b", // 渻
+ 0x6e3c: "U\t\u6e3c", // 渼
+ 0x6e3d: "U\t\u6e3d", // 渽
+ 0x6e3e: "U\t\u6e3e", // 渾
+ 0x6e3f: "U\t\u6e3f", // 渿
+ 0x6e40: "U\t\u6e40", // 湀
+ 0x6e41: "U\t\u6e41", // 湁
+ 0x6e42: "U\t\u6e42", // 湂
+ 0x6e43: "U\t\u6e43", // 湃
+ 0x6e44: "U\t\u6e44", // 湄
+ 0x6e45: "U\t\u6e45", // 湅
+ 0x6e46: "U\t\u6e46", // 湆
+ 0x6e47: "U\t\u6e47", // 湇
+ 0x6e48: "U\t\u6e48", // 湈
+ 0x6e49: "U\t\u6e49", // 湉
+ 0x6e4a: "U\t\u6e4a", // 湊
+ 0x6e4b: "U\t\u6e4b", // 湋
+ 0x6e4c: "U\t\u6e4c", // 湌
+ 0x6e4d: "U\t\u6e4d", // 湍
+ 0x6e4e: "U\t\u6e4e", // 湎
+ 0x6e4f: "U\t\u6e4f", // 湏
+ 0x6e50: "U\t\u6e50", // 湐
+ 0x6e51: "U\t\u6e51", // 湑
+ 0x6e52: "U\t\u6e52", // 湒
+ 0x6e53: "U\t\u6e53", // 湓
+ 0x6e54: "U\t\u6e54", // 湔
+ 0x6e55: "U\t\u6e55", // 湕
+ 0x6e56: "U\t\u6e56", // 湖
+ 0x6e57: "U\t\u6e57", // 湗
+ 0x6e58: "U\t\u6e58", // 湘
+ 0x6e59: "U\t\u6e59", // 湙
+ 0x6e5a: "U\t\u6e5a", // 湚
+ 0x6e5b: "U\t\u6e5b", // 湛
+ 0x6e5c: "U\t\u6e5c", // 湜
+ 0x6e5d: "U\t\u6e5d", // 湝
+ 0x6e5e: "U\t\u6e5e", // 湞
+ 0x6e5f: "U\t\u6e5f", // 湟
+ 0x6e60: "U\t\u6e60", // 湠
+ 0x6e61: "U\t\u6e61", // 湡
+ 0x6e62: "U\t\u6e62", // 湢
+ 0x6e63: "U\t\u6e63", // 湣
+ 0x6e64: "U\t\u6e64", // 湤
+ 0x6e65: "U\t\u6e65", // 湥
+ 0x6e66: "U\t\u6e66", // 湦
+ 0x6e67: "U\t\u6e67", // 湧
+ 0x6e68: "U\t\u6e68", // 湨
+ 0x6e69: "U\t\u6e69", // 湩
+ 0x6e6a: "U\t\u6e6a", // 湪
+ 0x6e6b: "U\t\u6e6b", // 湫
+ 0x6e6c: "U\t\u6e6c", // 湬
+ 0x6e6d: "U\t\u6e6d", // 湭
+ 0x6e6e: "U\t\u6e6e", // 湮
+ 0x6e6f: "U\t\u6e6f", // 湯
+ 0x6e70: "U\t\u6e70", // 湰
+ 0x6e71: "U\t\u6e71", // 湱
+ 0x6e72: "U\t\u6e72", // 湲
+ 0x6e73: "U\t\u6e73", // 湳
+ 0x6e74: "U\b\u6e74", // 湴
+ 0x6e75: "U\t\u6e75", // 湵
+ 0x6e76: "U\t\u6e76", // 湶
+ 0x6e77: "U\t\u6e77", // 湷
+ 0x6e78: "U\t\u6e78", // 湸
+ 0x6e79: "U\t\u6e79", // 湹
+ 0x6e7a: "U\t\u6e7a", // 湺
+ 0x6e7b: "U\t\u6e7b", // 湻
+ 0x6e7c: "U\t\u6e7c", // 湼
+ 0x6e7d: "U\t\u6e7d", // 湽
+ 0x6e7e: "U\t\u6e7e", // 湾
+ 0x6e7f: "U\t\u6e7f", // 湿
+ 0x6e80: "U\t\u6e80", // 満
+ 0x6e81: "U\t\u6e81", // 溁
+ 0x6e82: "U\t\u6e82", // 溂
+ 0x6e83: "U\t\u6e83", // 溃
+ 0x6e84: "U\t\u6e84", // 溄
+ 0x6e85: "U\t\u6e85", // 溅
+ 0x6e86: "U\t\u6e86", // 溆
+ 0x6e87: "U\t\u6e87", // 溇
+ 0x6e88: "U\t\u6e88", // 溈
+ 0x6e89: "U\t\u6e89", // 溉
+ 0x6e8a: "U\t\u6e8a", // 溊
+ 0x6e8b: "U\t\u6e8b", // 溋
+ 0x6e8c: "U\t\u6e8c", // 溌
+ 0x6e8d: "U\n\u6e8d", // 溍
+ 0x6e8e: "U\n\u6e8e", // 溎
+ 0x6e8f: "U\n\u6e8f", // 溏
+ 0x6e90: "U\n\u6e90", // 源
+ 0x6e91: "U\n\u6e91", // 溑
+ 0x6e92: "U\n\u6e92", // 溒
+ 0x6e93: "U\n\u6e93", // 溓
+ 0x6e94: "U\n\u6e94", // 溔
+ 0x6e95: "U\n\u6e95", // 溕
+ 0x6e96: "U\n\u6e96", // 準
+ 0x6e97: "U\n\u6e97", // 溗
+ 0x6e98: "U\n\u6e98", // 溘
+ 0x6e99: "U\n\u6e99", // 溙
+ 0x6e9a: "U\n\u6e9a", // 溚
+ 0x6e9b: "U\n\u6e9b", // 溛
+ 0x6e9c: "U\n\u6e9c", // 溜
+ 0x6e9d: "U\n\u6e9d", // 溝
+ 0x6e9e: "U\n\u6e9e", // 溞
+ 0x6e9f: "U\n\u6e9f", // 溟
+ 0x6ea0: "U\n\u6ea0", // 溠
+ 0x6ea1: "U\n\u6ea1", // 溡
+ 0x6ea2: "U\n\u6ea2", // 溢
+ 0x6ea3: "U\n\u6ea3", // 溣
+ 0x6ea4: "U\n\u6ea4", // 溤
+ 0x6ea5: "U\n\u6ea5", // 溥
+ 0x6ea6: "U\n\u6ea6", // 溦
+ 0x6ea7: "U\n\u6ea7", // 溧
+ 0x6ea8: "U\n\u6ea8", // 溨
+ 0x6ea9: "U\n\u6ea9", // 溩
+ 0x6eaa: "U\n\u6eaa", // 溪
+ 0x6eab: "U\n\u6eab", // 溫
+ 0x6eac: "U\n\u6eac", // 溬
+ 0x6ead: "U\n\u6ead", // 溭
+ 0x6eae: "U\n\u6eae", // 溮
+ 0x6eaf: "U\n\u6eaf", // 溯
+ 0x6eb0: "U\n\u6eb0", // 溰
+ 0x6eb1: "U\n\u6eb1", // 溱
+ 0x6eb2: "U\n\u6eb2", // 溲
+ 0x6eb3: "U\n\u6eb3", // 溳
+ 0x6eb4: "U\n\u6eb4", // 溴
+ 0x6eb5: "U\n\u6eb5", // 溵
+ 0x6eb6: "U\n\u6eb6", // 溶
+ 0x6eb7: "U\n\u6eb7", // 溷
+ 0x6eb8: "U\n\u6eb8", // 溸
+ 0x6eb9: "U\n\u6eb9", // 溹
+ 0x6eba: "U\n\u6eba", // 溺
+ 0x6ebb: "U\n\u6ebb", // 溻
+ 0x6ebc: "U\n\u6ebc", // 溼
+ 0x6ebd: "U\n\u6ebd", // 溽
+ 0x6ebe: "U\n\u6ebe", // 溾
+ 0x6ebf: "U\n\u6ebf", // 溿
+ 0x6ec0: "U\n\u6ec0", // 滀
+ 0x6ec1: "U\n\u6ec1", // 滁
+ 0x6ec2: "U\n\u6ec2", // 滂
+ 0x6ec3: "U\n\u6ec3", // 滃
+ 0x6ec4: "U\n\u6ec4", // 滄
+ 0x6ec5: "U\n\u6ec5", // 滅
+ 0x6ec6: "U\n\u6ec6", // 滆
+ 0x6ec7: "U\n\u6ec7", // 滇
+ 0x6ec8: "U\n\u6ec8", // 滈
+ 0x6ec9: "U\n\u6ec9", // 滉
+ 0x6eca: "U\n\u6eca", // 滊
+ 0x6ecb: "U\t\u6ecb", // 滋
+ 0x6ecc: "U\v\u6ecc", // 滌
+ 0x6ecd: "U\n\u6ecd", // 滍
+ 0x6ece: "U\n\u6ece", // 滎
+ 0x6ecf: "U\n\u6ecf", // 滏
+ 0x6ed0: "U\n\u6ed0", // 滐
+ 0x6ed1: "U\n\u6ed1", // 滑
+ 0x6ed2: "U\n\u6ed2", // 滒
+ 0x6ed3: "U\n\u6ed3", // 滓
+ 0x6ed4: "U\n\u6ed4", // 滔
+ 0x6ed5: "U\n\u6ed5", // 滕
+ 0x6ed6: "U\n\u6ed6", // 滖
+ 0x6ed7: "U\n\u6ed7", // 滗
+ 0x6ed8: "U\n\u6ed8", // 滘
+ 0x6ed9: "U\n\u6ed9", // 滙
+ 0x6eda: "U\v\u6eda", // 滚
+ 0x6edb: "U\n\u6edb", // 滛
+ 0x6edc: "U\n\u6edc", // 滜
+ 0x6edd: "U\n\u6edd", // 滝
+ 0x6ede: "U\t\u6ede", // 滞
+ 0x6edf: "U\n\u6edf", // 滟
+ 0x6ee0: "U\n\u6ee0", // 滠
+ 0x6ee1: "U\n\u6ee1", // 满
+ 0x6ee2: "U\n\u6ee2", // 滢
+ 0x6ee3: "U\n\u6ee3", // 滣
+ 0x6ee4: "U\n\u6ee4", // 滤
+ 0x6ee5: "U\n\u6ee5", // 滥
+ 0x6ee6: "U\n\u6ee6", // 滦
+ 0x6ee7: "U\n\u6ee7", // 滧
+ 0x6ee8: "U\n\u6ee8", // 滨
+ 0x6ee9: "U\n\u6ee9", // 滩
+ 0x6eea: "U\n\u6eea", // 滪
+ 0x6eeb: "U\v\u6eeb", // 滫
+ 0x6eec: "U\v\u6eec", // 滬
+ 0x6eed: "U\v\u6eed", // 滭
+ 0x6eee: "U\v\u6eee", // 滮
+ 0x6eef: "U\v\u6eef", // 滯
+ 0x6ef0: "U\v\u6ef0", // 滰
+ 0x6ef1: "U\v\u6ef1", // 滱
+ 0x6ef2: "U\v\u6ef2", // 滲
+ 0x6ef3: "U\v\u6ef3", // 滳
+ 0x6ef4: "U\v\u6ef4", // 滴
+ 0x6ef5: "U\v\u6ef5", // 滵
+ 0x6ef6: "U\v\u6ef6", // 滶
+ 0x6ef7: "U\v\u6ef7", // 滷
+ 0x6ef8: "U\v\u6ef8", // 滸
+ 0x6ef9: "U\v\u6ef9", // 滹
+ 0x6efa: "U\v\u6efa", // 滺
+ 0x6efb: "U\v\u6efb", // 滻
+ 0x6efc: "U\v\u6efc", // 滼
+ 0x6efd: "U\v\u6efd", // 滽
+ 0x6efe: "U\v\u6efe", // 滾
+ 0x6eff: "U\v\u6eff", // 滿
+ 0x6f00: "U\v\u6f00", // 漀
+ 0x6f01: "U\v\u6f01", // 漁
+ 0x6f02: "U\v\u6f02", // 漂
+ 0x6f03: "U\v\u6f03", // 漃
+ 0x6f04: "U\v\u6f04", // 漄
+ 0x6f05: "U\v\u6f05", // 漅
+ 0x6f06: "U\v\u6f06", // 漆
+ 0x6f07: "U\v\u6f07", // 漇
+ 0x6f08: "U\v\u6f08", // 漈
+ 0x6f09: "U\v\u6f09", // 漉
+ 0x6f0a: "U\v\u6f0a", // 漊
+ 0x6f0b: "U\f\u6f0b", // 漋
+ 0x6f0c: "U\v\u6f0c", // 漌
+ 0x6f0d: "U\v\u6f0d", // 漍
+ 0x6f0e: "U\v\u6f0e", // 漎
+ 0x6f0f: "U\v\u6f0f", // 漏
+ 0x6f10: "U\v\u6f10", // 漐
+ 0x6f11: "U\v\u6f11", // 漑
+ 0x6f12: "U\v\u6f12", // 漒
+ 0x6f13: "U\n\u6f13", // 漓
+ 0x6f14: "U\v\u6f14", // 演
+ 0x6f15: "U\v\u6f15", // 漕
+ 0x6f16: "U\v\u6f16", // 漖
+ 0x6f17: "U\v\u6f17", // 漗
+ 0x6f18: "U\v\u6f18", // 漘
+ 0x6f19: "U\v\u6f19", // 漙
+ 0x6f1a: "U\v\u6f1a", // 漚
+ 0x6f1b: "U\v\u6f1b", // 漛
+ 0x6f1c: "U\v\u6f1c", // 漜
+ 0x6f1d: "U\v\u6f1d", // 漝
+ 0x6f1e: "U\v\u6f1e", // 漞
+ 0x6f1f: "U\v\u6f1f", // 漟
+ 0x6f20: "U\v\u6f20", // 漠
+ 0x6f21: "U\v\u6f21", // 漡
+ 0x6f22: "U\v\u6f22", // 漢
+ 0x6f23: "U\v\u6f23", // 漣
+ 0x6f24: "U\v\u6f24", // 漤
+ 0x6f25: "U\v\u6f25", // 漥
+ 0x6f26: "U\v\u6f26", // 漦
+ 0x6f27: "U\v\u6f27", // 漧
+ 0x6f28: "U\v\u6f28", // 漨
+ 0x6f29: "U\v\u6f29", // 漩
+ 0x6f2a: "U\v\u6f2a", // 漪
+ 0x6f2b: "U\v\u6f2b", // 漫
+ 0x6f2c: "U\v\u6f2c", // 漬
+ 0x6f2d: "U\v\u6f2d", // 漭
+ 0x6f2e: "U\v\u6f2e", // 漮
+ 0x6f2f: "U\v\u6f2f", // 漯
+ 0x6f30: "U\v\u6f30", // 漰
+ 0x6f31: "U\v\u6f31", // 漱
+ 0x6f32: "U\v\u6f32", // 漲
+ 0x6f33: "U\v\u6f33", // 漳
+ 0x6f34: "U\v\u6f34", // 漴
+ 0x6f35: "U\v\u6f35", // 漵
+ 0x6f36: "U\v\u6f36", // 漶
+ 0x6f37: "U\v\u6f37", // 漷
+ 0x6f38: "U\v\u6f38", // 漸
+ 0x6f39: "U\v\u6f39", // 漹
+ 0x6f3a: "U\v\u6f3a", // 漺
+ 0x6f3b: "U\v\u6f3b", // 漻
+ 0x6f3c: "U\v\u6f3c", // 漼
+ 0x6f3d: "U\f\u6f3d", // 漽
+ 0x6f3e: "U\v\u6f3e", // 漾
+ 0x6f3f: "U\v\u6f3f", // 漿
+ 0x6f40: "U\v\u6f40", // 潀
+ 0x6f41: "U\v\u6f41", // 潁
+ 0x6f42: "U\v\u6f42", // 潂
+ 0x6f43: "U\v\u6f43", // 潃
+ 0x6f44: "U\v\u6f44", // 潄
+ 0x6f45: "U\v\u6f45", // 潅
+ 0x6f46: "U\v\u6f46", // 潆
+ 0x6f47: "U\v\u6f47", // 潇
+ 0x6f48: "U\v\u6f48", // 潈
+ 0x6f49: "U\v\u6f49", // 潉
+ 0x6f4a: "U\v\u6f4a", // 潊
+ 0x6f4b: "U\v\u6f4b", // 潋
+ 0x6f4c: "U\v\u6f4c", // 潌
+ 0x6f4d: "U\v\u6f4d", // 潍
+ 0x6f4e: "U\f\u6f4e", // 潎
+ 0x6f4f: "U\f\u6f4f", // 潏
+ 0x6f50: "U\f\u6f50", // 潐
+ 0x6f51: "U\f\u6f51", // 潑
+ 0x6f52: "U\f\u6f52", // 潒
+ 0x6f53: "U\f\u6f53", // 潓
+ 0x6f54: "U\f\u6f54", // 潔
+ 0x6f55: "U\f\u6f55", // 潕
+ 0x6f56: "U\f\u6f56", // 潖
+ 0x6f57: "U\f\u6f57", // 潗
+ 0x6f58: "U\f\u6f58", // 潘
+ 0x6f59: "U\f\u6f59", // 潙
+ 0x6f5a: "U\f\u6f5a", // 潚
+ 0x6f5b: "U\f\u6f5b", // 潛
+ 0x6f5c: "U\f\u6f5c", // 潜
+ 0x6f5d: "U\f\u6f5d", // 潝
+ 0x6f5e: "U\f\u6f5e", // 潞
+ 0x6f5f: "U\f\u6f5f", // 潟
+ 0x6f60: "U\f\u6f60", // 潠
+ 0x6f61: "U\f\u6f61", // 潡
+ 0x6f62: "U\f\u6f62", // 潢
+ 0x6f63: "U\f\u6f63", // 潣
+ 0x6f64: "U\f\u6f64", // 潤
+ 0x6f65: "U\f\u6f65", // 潥
+ 0x6f66: "U\f\u6f66", // 潦
+ 0x6f67: "U\f\u6f67", // 潧
+ 0x6f68: "U\f\u6f68", // 潨
+ 0x6f69: "U\f\u6f69", // 潩
+ 0x6f6a: "U\f\u6f6a", // 潪
+ 0x6f6b: "U\f\u6f6b", // 潫
+ 0x6f6c: "U\f\u6f6c", // 潬
+ 0x6f6d: "U\f\u6f6d", // 潭
+ 0x6f6e: "U\f\u6f6e", // 潮
+ 0x6f6f: "U\f\u6f6f", // 潯
+ 0x6f70: "U\f\u6f70", // 潰
+ 0x6f71: "U\f\u6f71", // 潱
+ 0x6f72: "U\f\u6f72", // 潲
+ 0x6f73: "U\f\u6f73", // 潳
+ 0x6f74: "U\f\u6f74", // 潴
+ 0x6f75: "U\f\u6f75", // 潵
+ 0x6f76: "U\f\u6f76", // 潶
+ 0x6f77: "U\f\u6f77", // 潷
+ 0x6f78: "U\f\u6f78", // 潸
+ 0x6f79: "U\f\u6f79", // 潹
+ 0x6f7a: "U\f\u6f7a", // 潺
+ 0x6f7b: "U\f\u6f7b", // 潻
+ 0x6f7c: "U\f\u6f7c", // 潼
+ 0x6f7d: "U\f\u6f7d", // 潽
+ 0x6f7e: "U\f\u6f7e", // 潾
+ 0x6f7f: "U\f\u6f7f", // 潿
+ 0x6f80: "U\x0e\u6f80", // 澀
+ 0x6f81: "U\f\u6f81", // 澁
+ 0x6f82: "U\f\u6f82", // 澂
+ 0x6f83: "U\f\u6f83", // 澃
+ 0x6f84: "U\f\u6f84", // 澄
+ 0x6f85: "U\f\u6f85", // 澅
+ 0x6f86: "U\f\u6f86", // 澆
+ 0x6f87: "U\f\u6f87", // 澇
+ 0x6f88: "U\f\u6f88", // 澈
+ 0x6f89: "U\f\u6f89", // 澉
+ 0x6f8a: "U\f\u6f8a", // 澊
+ 0x6f8b: "U\f\u6f8b", // 澋
+ 0x6f8c: "U\f\u6f8c", // 澌
+ 0x6f8d: "U\f\u6f8d", // 澍
+ 0x6f8e: "U\f\u6f8e", // 澎
+ 0x6f8f: "U\f\u6f8f", // 澏
+ 0x6f90: "U\f\u6f90", // 澐
+ 0x6f91: "U\f\u6f91", // 澑
+ 0x6f92: "U\f\u6f92", // 澒
+ 0x6f93: "U\f\u6f93", // 澓
+ 0x6f94: "U\f\u6f94", // 澔
+ 0x6f95: "U\f\u6f95", // 澕
+ 0x6f96: "U\f\u6f96", // 澖
+ 0x6f97: "U\f\u6f97", // 澗
+ 0x6f98: "U\f\u6f98", // 澘
+ 0x6f99: "U\r\u6f99", // 澙
+ 0x6f9a: "U\f\u6f9a", // 澚
+ 0x6f9b: "U\f\u6f9b", // 澛
+ 0x6f9c: "U\f\u6f9c", // 澜
+ 0x6f9d: "U\f\u6f9d", // 澝
+ 0x6f9e: "U\r\u6f9e", // 澞
+ 0x6f9f: "U\r\u6f9f", // 澟
+ 0x6fa0: "U\r\u6fa0", // 澠
+ 0x6fa1: "U\r\u6fa1", // 澡
+ 0x6fa2: "U\r\u6fa2", // 澢
+ 0x6fa3: "U\r\u6fa3", // 澣
+ 0x6fa4: "U\r\u6fa4", // 澤
+ 0x6fa5: "U\r\u6fa5", // 澥
+ 0x6fa6: "U\r\u6fa6", // 澦
+ 0x6fa7: "U\r\u6fa7", // 澧
+ 0x6fa8: "U\r\u6fa8", // 澨
+ 0x6fa9: "U\r\u6fa9", // 澩
+ 0x6faa: "U\r\u6faa", // 澪
+ 0x6fab: "U\r\u6fab", // 澫
+ 0x6fac: "U\r\u6fac", // 澬
+ 0x6fad: "U\r\u6fad", // 澭
+ 0x6fae: "U\r\u6fae", // 澮
+ 0x6faf: "U\r\u6faf", // 澯
+ 0x6fb0: "U\r\u6fb0", // 澰
+ 0x6fb1: "U\r\u6fb1", // 澱
+ 0x6fb2: "U\r\u6fb2", // 澲
+ 0x6fb3: "U\r\u6fb3", // 澳
+ 0x6fb4: "U\r\u6fb4", // 澴
+ 0x6fb5: "U\r\u6fb5", // 澵
+ 0x6fb6: "U\r\u6fb6", // 澶
+ 0x6fb7: "U\r\u6fb7", // 澷
+ 0x6fb8: "U\r\u6fb8", // 澸
+ 0x6fb9: "U\r\u6fb9", // 澹
+ 0x6fba: "U\r\u6fba", // 澺
+ 0x6fbb: "U\r\u6fbb", // 澻
+ 0x6fbc: "U\r\u6fbc", // 澼
+ 0x6fbd: "U\r\u6fbd", // 澽
+ 0x6fbe: "U\r\u6fbe", // 澾
+ 0x6fbf: "U\r\u6fbf", // 澿
+ 0x6fc0: "U\r\u6fc0", // 激
+ 0x6fc1: "U\r\u6fc1", // 濁
+ 0x6fc2: "U\r\u6fc2", // 濂
+ 0x6fc3: "U\r\u6fc3", // 濃
+ 0x6fc4: "U\r\u6fc4", // 濄
+ 0x6fc5: "U\r\u6fc5", // 濅
+ 0x6fc6: "U\r\u6fc6", // 濆
+ 0x6fc7: "U\r\u6fc7", // 濇
+ 0x6fc8: "U\r\u6fc8", // 濈
+ 0x6fc9: "U\r\u6fc9", // 濉
+ 0x6fca: "U\r\u6fca", // 濊
+ 0x6fcb: "U\r\u6fcb", // 濋
+ 0x6fcc: "U\r\u6fcc", // 濌
+ 0x6fcd: "U\r\u6fcd", // 濍
+ 0x6fce: "U\r\u6fce", // 濎
+ 0x6fcf: "U\r\u6fcf", // 濏
+ 0x6fd0: "U\f\u6fd0", // 濐
+ 0x6fd1: "U\r\u6fd1", // 濑
+ 0x6fd2: "U\r\u6fd2", // 濒
+ 0x6fd3: "U\r\u6fd3", // 濓
+ 0x6fd4: "U\x0e\u6fd4", // 濔
+ 0x6fd5: "U\x0e\u6fd5", // 濕
+ 0x6fd6: "U\r\u6fd6", // 濖
+ 0x6fd7: "U\x0e\u6fd7", // 濗
+ 0x6fd8: "U\x0e\u6fd8", // 濘
+ 0x6fd9: "U\x0e\u6fd9", // 濙
+ 0x6fda: "U\x0e\u6fda", // 濚
+ 0x6fdb: "U\x0e\u6fdb", // 濛
+ 0x6fdc: "U\x0e\u6fdc", // 濜
+ 0x6fdd: "U\x0e\u6fdd", // 濝
+ 0x6fde: "U\x0e\u6fde", // 濞
+ 0x6fdf: "U\x0e\u6fdf", // 濟
+ 0x6fe0: "U\x0e\u6fe0", // 濠
+ 0x6fe1: "U\x0e\u6fe1", // 濡
+ 0x6fe2: "U\x0e\u6fe2", // 濢
+ 0x6fe3: "U\x0e\u6fe3", // 濣
+ 0x6fe4: "U\x0e\u6fe4", // 濤
+ 0x6fe5: "U\x0e\u6fe5", // 濥
+ 0x6fe6: "U\x0e\u6fe6", // 濦
+ 0x6fe7: "U\x0e\u6fe7", // 濧
+ 0x6fe8: "U\x0e\u6fe8", // 濨
+ 0x6fe9: "U\x0e\u6fe9", // 濩
+ 0x6fea: "U\x0e\u6fea", // 濪
+ 0x6feb: "U\x0e\u6feb", // 濫
+ 0x6fec: "U\x0e\u6fec", // 濬
+ 0x6fed: "U\x0e\u6fed", // 濭
+ 0x6fee: "U\x0e\u6fee", // 濮
+ 0x6fef: "U\x0e\u6fef", // 濯
+ 0x6ff0: "U\x0e\u6ff0", // 濰
+ 0x6ff1: "U\x0e\u6ff1", // 濱
+ 0x6ff2: "U\x0e\u6ff2", // 濲
+ 0x6ff3: "U\x10\u6ff3", // 濳
+ 0x6ff4: "U\x0e\u6ff4", // 濴
+ 0x6ff5: "U\x0e\u6ff5", // 濵
+ 0x6ff6: "U\x0e\u6ff6", // 濶
+ 0x6ff7: "U\x0e\u6ff7", // 濷
+ 0x6ff8: "U\x0e\u6ff8", // 濸
+ 0x6ff9: "U\x0f\u6ff9", // 濹
+ 0x6ffa: "U\x0f\u6ffa", // 濺
+ 0x6ffb: "U\x0f\u6ffb", // 濻
+ 0x6ffc: "U\x0f\u6ffc", // 濼
+ 0x6ffd: "U\x0f\u6ffd", // 濽
+ 0x6ffe: "U\x0f\u6ffe", // 濾
+ 0x6fff: "U\x0f\u6fff", // 濿
+ 0x7000: "U\x0f\u7000", // 瀀
+ 0x7001: "U\x0f\u7001", // 瀁
+ 0x7002: "U\x0f\u7002", // 瀂
+ 0x7003: "U\x0f\u7003", // 瀃
+ 0x7004: "U\x0f\u7004", // 瀄
+ 0x7005: "U\x0f\u7005", // 瀅
+ 0x7006: "U\x0f\u7006", // 瀆
+ 0x7007: "U\x0f\u7007", // 瀇
+ 0x7008: "U\x0f\u7008", // 瀈
+ 0x7009: "U\x0f\u7009", // 瀉
+ 0x700a: "U\x0f\u700a", // 瀊
+ 0x700b: "U\x0f\u700b", // 瀋
+ 0x700c: "U\x0f\u700c", // 瀌
+ 0x700d: "U\x0f\u700d", // 瀍
+ 0x700e: "U\x0f\u700e", // 瀎
+ 0x700f: "U\x0f\u700f", // 瀏
+ 0x7010: "U\x0f\u7010", // 瀐
+ 0x7011: "U\x0f\u7011", // 瀑
+ 0x7012: "U\x0f\u7012", // 瀒
+ 0x7013: "U\x0f\u7013", // 瀓
+ 0x7014: "U\x0f\u7014", // 瀔
+ 0x7015: "U\x10\u7015", // 瀕
+ 0x7016: "U\x10\u7016", // 瀖
+ 0x7017: "U\x10\u7017", // 瀗
+ 0x7018: "U\x10\u7018", // 瀘
+ 0x7019: "U\x10\u7019", // 瀙
+ 0x701a: "U\x10\u701a", // 瀚
+ 0x701b: "U\x10\u701b", // 瀛
+ 0x701c: "U\x10\u701c", // 瀜
+ 0x701d: "U\x10\u701d", // 瀝
+ 0x701e: "U\x10\u701e", // 瀞
+ 0x701f: "U\x10\u701f", // 瀟
+ 0x7020: "U\x10\u7020", // 瀠
+ 0x7021: "U\x10\u7021", // 瀡
+ 0x7022: "U\x10\u7022", // 瀢
+ 0x7023: "U\x10\u7023", // 瀣
+ 0x7024: "U\x10\u7024", // 瀤
+ 0x7025: "U\x10\u7025", // 瀥
+ 0x7026: "U\x10\u7026", // 瀦
+ 0x7027: "U\x10\u7027", // 瀧
+ 0x7028: "U\x10\u7028", // 瀨
+ 0x7029: "U\x10\u7029", // 瀩
+ 0x702a: "U\x10\u702a", // 瀪
+ 0x702b: "U\x10\u702b", // 瀫
+ 0x702c: "U\x10\u702c", // 瀬
+ 0x702d: "U\x10\u702d", // 瀭
+ 0x702e: "U\x10\u702e", // 瀮
+ 0x702f: "U\x11\u702f", // 瀯
+ 0x7030: "U\x11\u7030", // 瀰
+ 0x7031: "U\x11\u7031", // 瀱
+ 0x7032: "U\x11\u7032", // 瀲
+ 0x7033: "U\x11\u7033", // 瀳
+ 0x7034: "U\x11\u7034", // 瀴
+ 0x7035: "U\x11\u7035", // 瀵
+ 0x7036: "U\x11\u7036", // 瀶
+ 0x7037: "U\x11\u7037", // 瀷
+ 0x7038: "U\x11\u7038", // 瀸
+ 0x7039: "U\x11\u7039", // 瀹
+ 0x703a: "U\x11\u703a", // 瀺
+ 0x703b: "U\x11\u703b", // 瀻
+ 0x703c: "U\x11\u703c", // 瀼
+ 0x703d: "U\x11\u703d", // 瀽
+ 0x703e: "U\x11\u703e", // 瀾
+ 0x703f: "U\x11\u703f", // 瀿
+ 0x7040: "U\x11\u7040", // 灀
+ 0x7041: "U\x11\u7041", // 灁
+ 0x7042: "U\x12\u7042", // 灂
+ 0x7043: "U\x12\u7043", // 灃
+ 0x7044: "U\x12\u7044", // 灄
+ 0x7045: "U\x12\u7045", // 灅
+ 0x7046: "U\x12\u7046", // 灆
+ 0x7047: "U\x12\u7047", // 灇
+ 0x7048: "U\x12\u7048", // 灈
+ 0x7049: "U\x12\u7049", // 灉
+ 0x704a: "U\x12\u704a", // 灊
+ 0x704b: "U\x12\u704b", // 灋
+ 0x704c: "U\x12\u704c", // 灌
+ 0x704d: "U\x12\u704d", // 灍
+ 0x704e: "U\x17\u704e", // 灎
+ 0x704f: "U\x12\u704f", // 灏
+ 0x7050: "U\x12\u7050", // 灐
+ 0x7051: "U\x13\u7051", // 灑
+ 0x7052: "U\x13\u7052", // 灒
+ 0x7053: "U\x13\u7053", // 灓
+ 0x7054: "U\x13\u7054", // 灔
+ 0x7055: "U\x13\u7055", // 灕
+ 0x7056: "U\x13\u7056", // 灖
+ 0x7057: "U\x13\u7057", // 灗
+ 0x7058: "U\x13\u7058", // 灘
+ 0x7059: "U\x14\u7059", // 灙
+ 0x705a: "U\x14\u705a", // 灚
+ 0x705b: "U\x14\u705b", // 灛
+ 0x705c: "U\x14\u705c", // 灜
+ 0x705d: "U\x15\u705d", // 灝
+ 0x705e: "U\x15\u705e", // 灞
+ 0x705f: "U\x15\u705f", // 灟
+ 0x7060: "U\x15\u7060", // 灠
+ 0x7061: "U\x15\u7061", // 灡
+ 0x7062: "U\x16\u7062", // 灢
+ 0x7063: "U\x16\u7063", // 灣
+ 0x7064: "U\x17\u7064", // 灤
+ 0x7065: "U\x17\u7065", // 灥
+ 0x7066: "U\x17\u7066", // 灦
+ 0x7067: "U\x18\u7067", // 灧
+ 0x7068: "U\x18\u7068", // 灨
+ 0x7069: "U\x1c\u7069", // 灩
+ 0x706a: "U\x1d\u706a", // 灪
+ 0x706b: "V\x00\u706b", // 火
+ 0x706c: "V\x00\u706c", // 灬
+ 0x706d: "V\x01\u706d", // 灭
+ 0x706e: "V\x02\u706e", // 灮
+ 0x706f: "V\x02\u706f", // 灯
+ 0x7070: "V\x02\u7070", // 灰
+ 0x7071: "V\x02\u7071", // 灱
+ 0x7072: "V\x02\u7072", // 灲
+ 0x7073: "V\x02\u7073", // 灳
+ 0x7074: "V\x03\u7074", // 灴
+ 0x7075: "V\x03\u7075", // 灵
+ 0x7076: "V\x03\u7076", // 灶
+ 0x7077: "V\x03\u7077", // 灷
+ 0x7078: "V\x03\u7078", // 灸
+ 0x7079: "V\x03\u7079", // 灹
+ 0x707a: "V\x03\u707a", // 灺
+ 0x707b: "V\x03\u707b", // 灻
+ 0x707c: "V\x03\u707c", // 灼
+ 0x707d: "V\x03\u707d", // 災
+ 0x707e: "V\x03\u707e", // 灾
+ 0x707f: "V\x03\u707f", // 灿
+ 0x7080: "V\x03\u7080", // 炀
+ 0x7081: "V\x04\u7081", // 炁
+ 0x7082: "V\x04\u7082", // 炂
+ 0x7083: "V\x04\u7083", // 炃
+ 0x7084: "V\x04\u7084", // 炄
+ 0x7085: "V\x04\u7085", // 炅
+ 0x7086: "V\x04\u7086", // 炆
+ 0x7087: "V\x02\u7087", // 炇
+ 0x7088: "V\x04\u7088", // 炈
+ 0x7089: "V\x04\u7089", // 炉
+ 0x708a: "V\x04\u708a", // 炊
+ 0x708b: "V\x04\u708b", // 炋
+ 0x708c: "V\x04\u708c", // 炌
+ 0x708d: "V\x04\u708d", // 炍
+ 0x708e: "V\x04\u708e", // 炎
+ 0x708f: "V\x04\u708f", // 炏
+ 0x7090: "V\x04\u7090", // 炐
+ 0x7091: "V\x04\u7091", // 炑
+ 0x7092: "V\x04\u7092", // 炒
+ 0x7093: "V\x04\u7093", // 炓
+ 0x7094: "V\x04\u7094", // 炔
+ 0x7095: "V\x04\u7095", // 炕
+ 0x7096: "V\x04\u7096", // 炖
+ 0x7097: "V\x04\u7097", // 炗
+ 0x7098: "V\x04\u7098", // 炘
+ 0x7099: "V\x04\u7099", // 炙
+ 0x709a: "V\x04\u709a", // 炚
+ 0x709b: "V\x04\u709b", // 炛
+ 0x709c: "V\x04\u709c", // 炜
+ 0x709d: "V\x04\u709d", // 炝
+ 0x709e: "V\x04\u709e", // 炞
+ 0x709f: "V\x05\u709f", // 炟
+ 0x70a0: "V\x05\u70a0", // 炠
+ 0x70a1: "V\x05\u70a1", // 炡
+ 0x70a2: "V\x05\u70a2", // 炢
+ 0x70a3: "V\x05\u70a3", // 炣
+ 0x70a4: "V\x05\u70a4", // 炤
+ 0x70a5: "V\x05\u70a5", // 炥
+ 0x70a6: "V\x05\u70a6", // 炦
+ 0x70a7: "V\x05\u70a7", // 炧
+ 0x70a8: "V\x05\u70a8", // 炨
+ 0x70a9: "V\x05\u70a9", // 炩
+ 0x70aa: "V\x05\u70aa", // 炪
+ 0x70ab: "V\x05\u70ab", // 炫
+ 0x70ac: "V\x05\u70ac", // 炬
+ 0x70ad: "V\x05\u70ad", // 炭
+ 0x70ae: "V\x05\u70ae", // 炮
+ 0x70af: "V\x05\u70af", // 炯
+ 0x70b0: "V\x05\u70b0", // 炰
+ 0x70b1: "V\x05\u70b1", // 炱
+ 0x70b2: "V\x05\u70b2", // 炲
+ 0x70b3: "V\x05\u70b3", // 炳
+ 0x70b4: "V\x05\u70b4", // 炴
+ 0x70b5: "V\x05\u70b5", // 炵
+ 0x70b6: "V\x05\u70b6", // 炶
+ 0x70b7: "V\x05\u70b7", // 炷
+ 0x70b8: "V\x05\u70b8", // 炸
+ 0x70b9: "V\x05\u70b9", // 点
+ 0x70ba: "V\x05\u70ba", // 為
+ 0x70bb: "V\x05\u70bb", // 炻
+ 0x70bc: "V\x05\u70bc", // 炼
+ 0x70bd: "V\x05\u70bd", // 炽
+ 0x70be: "V\x05\u70be", // 炾
+ 0x70bf: "V\x05\u70bf", // 炿
+ 0x70c0: "V\x05\u70c0", // 烀
+ 0x70c1: "V\x05\u70c1", // 烁
+ 0x70c2: "V\x05\u70c2", // 烂
+ 0x70c3: "V\x05\u70c3", // 烃
+ 0x70c4: "V\x06\u70c4", // 烄
+ 0x70c5: "V\x06\u70c5", // 烅
+ 0x70c6: "V\x06\u70c6", // 烆
+ 0x70c7: "V\x06\u70c7", // 烇
+ 0x70c8: "V\x06\u70c8", // 烈
+ 0x70c9: "V\x06\u70c9", // 烉
+ 0x70ca: "V\x06\u70ca", // 烊
+ 0x70cb: "V\x06\u70cb", // 烋
+ 0x70cc: "V\x06\u70cc", // 烌
+ 0x70cd: "V\x06\u70cd", // 烍
+ 0x70ce: "V\x06\u70ce", // 烎
+ 0x70cf: "V\x06\u70cf", // 烏
+ 0x70d0: "V\x06\u70d0", // 烐
+ 0x70d1: "V\x06\u70d1", // 烑
+ 0x70d2: "V\x06\u70d2", // 烒
+ 0x70d3: "V\x06\u70d3", // 烓
+ 0x70d4: "V\x06\u70d4", // 烔
+ 0x70d5: "V\x06\u70d5", // 烕
+ 0x70d6: "V\x06\u70d6", // 烖
+ 0x70d7: "V\x06\u70d7", // 烗
+ 0x70d8: "V\x06\u70d8", // 烘
+ 0x70d9: "V\x06\u70d9", // 烙
+ 0x70da: "V\x06\u70da", // 烚
+ 0x70db: "V\x06\u70db", // 烛
+ 0x70dc: "V\x06\u70dc", // 烜
+ 0x70dd: "V\x06\u70dd", // 烝
+ 0x70de: "V\x06\u70de", // 烞
+ 0x70df: "V\x06\u70df", // 烟
+ 0x70e0: "V\x06\u70e0", // 烠
+ 0x70e1: "V\x06\u70e1", // 烡
+ 0x70e2: "V\x06\u70e2", // 烢
+ 0x70e3: "V\x06\u70e3", // 烣
+ 0x70e4: "V\x06\u70e4", // 烤
+ 0x70e5: "V\x06\u70e5", // 烥
+ 0x70e6: "V\x06\u70e6", // 烦
+ 0x70e7: "V\x06\u70e7", // 烧
+ 0x70e8: "V\x06\u70e8", // 烨
+ 0x70e9: "V\x06\u70e9", // 烩
+ 0x70ea: "V\x06\u70ea", // 烪
+ 0x70eb: "V\x06\u70eb", // 烫
+ 0x70ec: "V\x06\u70ec", // 烬
+ 0x70ed: "V\x06\u70ed", // 热
+ 0x70ee: "V\x06\u70ee", // 烮
+ 0x70ef: "V\a\u70ef", // 烯
+ 0x70f0: "V\a\u70f0", // 烰
+ 0x70f1: "V\a\u70f1", // 烱
+ 0x70f2: "V\a\u70f2", // 烲
+ 0x70f3: "V\a\u70f3", // 烳
+ 0x70f4: "V\a\u70f4", // 烴
+ 0x70f5: "V\a\u70f5", // 烵
+ 0x70f6: "V\a\u70f6", // 烶
+ 0x70f7: "V\a\u70f7", // 烷
+ 0x70f8: "V\a\u70f8", // 烸
+ 0x70f9: "V\a\u70f9", // 烹
+ 0x70fa: "V\a\u70fa", // 烺
+ 0x70fb: "V\a\u70fb", // 烻
+ 0x70fc: "V\a\u70fc", // 烼
+ 0x70fd: "V\a\u70fd", // 烽
+ 0x70fe: "V\a\u70fe", // 烾
+ 0x70ff: "V\a\u70ff", // 烿
+ 0x7100: "V\a\u7100", // 焀
+ 0x7101: "V\a\u7101", // 焁
+ 0x7102: "V\a\u7102", // 焂
+ 0x7103: "V\a\u7103", // 焃
+ 0x7104: "V\a\u7104", // 焄
+ 0x7105: "V\a\u7105", // 焅
+ 0x7106: "V\a\u7106", // 焆
+ 0x7107: "V\a\u7107", // 焇
+ 0x7108: "V\a\u7108", // 焈
+ 0x7109: "V\a\u7109", // 焉
+ 0x710a: "V\a\u710a", // 焊
+ 0x710b: "V\a\u710b", // 焋
+ 0x710c: "V\a\u710c", // 焌
+ 0x710d: "V\a\u710d", // 焍
+ 0x710e: "V\a\u710e", // 焎
+ 0x710f: "V\a\u710f", // 焏
+ 0x7110: "V\a\u7110", // 焐
+ 0x7111: "V\a\u7111", // 焑
+ 0x7112: "V\a\u7112", // 焒
+ 0x7113: "V\a\u7113", // 焓
+ 0x7114: "V\b\u7114", // 焔
+ 0x7115: "V\a\u7115", // 焕
+ 0x7116: "V\a\u7116", // 焖
+ 0x7117: "V\a\u7117", // 焗
+ 0x7118: "V\a\u7118", // 焘
+ 0x7119: "V\b\u7119", // 焙
+ 0x711a: "V\b\u711a", // 焚
+ 0x711b: "V\b\u711b", // 焛
+ 0x711c: "V\b\u711c", // 焜
+ 0x711d: "V\b\u711d", // 焝
+ 0x711e: "V\b\u711e", // 焞
+ 0x711f: "V\b\u711f", // 焟
+ 0x7120: "V\b\u7120", // 焠
+ 0x7121: "V\b\u7121", // 無
+ 0x7122: "V\b\u7122", // 焢
+ 0x7123: "V\b\u7123", // 焣
+ 0x7124: "V\b\u7124", // 焤
+ 0x7125: "V\b\u7125", // 焥
+ 0x7126: "V\b\u7126", // 焦
+ 0x7127: "V\b\u7127", // 焧
+ 0x7128: "V\b\u7128", // 焨
+ 0x7129: "V\b\u7129", // 焩
+ 0x712a: "V\b\u712a", // 焪
+ 0x712b: "V\b\u712b", // 焫
+ 0x712c: "V\b\u712c", // 焬
+ 0x712d: "V\b\u712d", // 焭
+ 0x712e: "V\b\u712e", // 焮
+ 0x712f: "V\b\u712f", // 焯
+ 0x7130: "V\b\u7130", // 焰
+ 0x7131: "V\b\u7131", // 焱
+ 0x7132: "V\b\u7132", // 焲
+ 0x7133: "V\b\u7133", // 焳
+ 0x7134: "V\b\u7134", // 焴
+ 0x7135: "V\b\u7135", // 焵
+ 0x7136: "V\b\u7136", // 然
+ 0x7137: "V\b\u7137", // 焷
+ 0x7138: "V\b\u7138", // 焸
+ 0x7139: "V\b\u7139", // 焹
+ 0x713a: "V\b\u713a", // 焺
+ 0x713b: "V\b\u713b", // 焻
+ 0x713c: "V\b\u713c", // 焼
+ 0x713d: "V\b\u713d", // 焽
+ 0x713e: "V\b\u713e", // 焾
+ 0x713f: "V\b\u713f", // 焿
+ 0x7140: "V\b\u7140", // 煀
+ 0x7141: "V\t\u7141", // 煁
+ 0x7142: "V\t\u7142", // 煂
+ 0x7143: "V\t\u7143", // 煃
+ 0x7144: "V\t\u7144", // 煄
+ 0x7145: "V\t\u7145", // 煅
+ 0x7146: "V\t\u7146", // 煆
+ 0x7147: "V\t\u7147", // 煇
+ 0x7148: "V\t\u7148", // 煈
+ 0x7149: "V\t\u7149", // 煉
+ 0x714a: "V\t\u714a", // 煊
+ 0x714b: "V\t\u714b", // 煋
+ 0x714c: "V\t\u714c", // 煌
+ 0x714d: "V\t\u714d", // 煍
+ 0x714e: "V\t\u714e", // 煎
+ 0x714f: "V\t\u714f", // 煏
+ 0x7150: "V\t\u7150", // 煐
+ 0x7151: "V\t\u7151", // 煑
+ 0x7152: "V\t\u7152", // 煒
+ 0x7153: "V\t\u7153", // 煓
+ 0x7154: "V\t\u7154", // 煔
+ 0x7155: "V\t\u7155", // 煕
+ 0x7156: "V\t\u7156", // 煖
+ 0x7157: "V\t\u7157", // 煗
+ 0x7158: "V\t\u7158", // 煘
+ 0x7159: "V\t\u7159", // 煙
+ 0x715a: "V\t\u715a", // 煚
+ 0x715b: "V\t\u715b", // 煛
+ 0x715c: "V\t\u715c", // 煜
+ 0x715d: "V\t\u715d", // 煝
+ 0x715e: "V\t\u715e", // 煞
+ 0x715f: "V\t\u715f", // 煟
+ 0x7160: "V\t\u7160", // 煠
+ 0x7161: "V\t\u7161", // 煡
+ 0x7162: "V\t\u7162", // 煢
+ 0x7163: "V\t\u7163", // 煣
+ 0x7164: "V\t\u7164", // 煤
+ 0x7165: "V\t\u7165", // 煥
+ 0x7166: "V\t\u7166", // 煦
+ 0x7167: "V\t\u7167", // 照
+ 0x7168: "V\t\u7168", // 煨
+ 0x7169: "V\t\u7169", // 煩
+ 0x716a: "V\t\u716a", // 煪
+ 0x716b: "V\t\u716b", // 煫
+ 0x716c: "V\t\u716c", // 煬
+ 0x716d: "V\t\u716d", // 煭
+ 0x716e: "V\b\u716e", // 煮
+ 0x716f: "V\t\u716f", // 煯
+ 0x7170: "V\t\u7170", // 煰
+ 0x7171: "V\t\u7171", // 煱
+ 0x7172: "V\t\u7172", // 煲
+ 0x7173: "V\t\u7173", // 煳
+ 0x7174: "V\t\u7174", // 煴
+ 0x7175: "V\t\u7175", // 煵
+ 0x7176: "V\t\u7176", // 煶
+ 0x7177: "V\t\u7177", // 煷
+ 0x7178: "V\t\u7178", // 煸
+ 0x7179: "V\n\u7179", // 煹
+ 0x717a: "V\t\u717a", // 煺
+ 0x717b: "V\n\u717b", // 煻
+ 0x717c: "V\n\u717c", // 煼
+ 0x717d: "V\n\u717d", // 煽
+ 0x717e: "V\n\u717e", // 煾
+ 0x717f: "V\n\u717f", // 煿
+ 0x7180: "V\n\u7180", // 熀
+ 0x7181: "V\n\u7181", // 熁
+ 0x7182: "V\n\u7182", // 熂
+ 0x7183: "V\n\u7183", // 熃
+ 0x7184: "V\n\u7184", // 熄
+ 0x7185: "V\n\u7185", // 熅
+ 0x7186: "V\n\u7186", // 熆
+ 0x7187: "V\n\u7187", // 熇
+ 0x7188: "V\n\u7188", // 熈
+ 0x7189: "V\n\u7189", // 熉
+ 0x718a: "V\n\u718a", // 熊
+ 0x718b: "V\n\u718b", // 熋
+ 0x718c: "V\n\u718c", // 熌
+ 0x718d: "V\n\u718d", // 熍
+ 0x718e: "V\n\u718e", // 熎
+ 0x718f: "V\n\u718f", // 熏
+ 0x7190: "V\n\u7190", // 熐
+ 0x7191: "V\n\u7191", // 熑
+ 0x7192: "V\n\u7192", // 熒
+ 0x7193: "V\n\u7193", // 熓
+ 0x7194: "V\n\u7194", // 熔
+ 0x7195: "V\n\u7195", // 熕
+ 0x7196: "V\n\u7196", // 熖
+ 0x7197: "V\n\u7197", // 熗
+ 0x7198: "V\n\u7198", // 熘
+ 0x7199: "V\n\u7199", // 熙
+ 0x719a: "V\v\u719a", // 熚
+ 0x719b: "V\v\u719b", // 熛
+ 0x719c: "V\v\u719c", // 熜
+ 0x719d: "V\v\u719d", // 熝
+ 0x719e: "V\v\u719e", // 熞
+ 0x719f: "V\v\u719f", // 熟
+ 0x71a0: "V\v\u71a0", // 熠
+ 0x71a1: "V\v\u71a1", // 熡
+ 0x71a2: "V\v\u71a2", // 熢
+ 0x71a3: "V\v\u71a3", // 熣
+ 0x71a4: "V\v\u71a4", // 熤
+ 0x71a5: "V\v\u71a5", // 熥
+ 0x71a6: "V\n\u71a6", // 熦
+ 0x71a7: "V\v\u71a7", // 熧
+ 0x71a8: "V\v\u71a8", // 熨
+ 0x71a9: "V\v\u71a9", // 熩
+ 0x71aa: "V\v\u71aa", // 熪
+ 0x71ab: "V\v\u71ab", // 熫
+ 0x71ac: "V\v\u71ac", // 熬
+ 0x71ad: "V\v\u71ad", // 熭
+ 0x71ae: "V\v\u71ae", // 熮
+ 0x71af: "V\v\u71af", // 熯
+ 0x71b0: "V\v\u71b0", // 熰
+ 0x71b1: "V\v\u71b1", // 熱
+ 0x71b2: "V\v\u71b2", // 熲
+ 0x71b3: "V\v\u71b3", // 熳
+ 0x71b4: "V\v\u71b4", // 熴
+ 0x71b5: "V\v\u71b5", // 熵
+ 0x71b6: "V\f\u71b6", // 熶
+ 0x71b7: "V\f\u71b7", // 熷
+ 0x71b8: "V\f\u71b8", // 熸
+ 0x71b9: "V\f\u71b9", // 熹
+ 0x71ba: "V\f\u71ba", // 熺
+ 0x71bb: "V\f\u71bb", // 熻
+ 0x71bc: "V\f\u71bc", // 熼
+ 0x71bd: "V\f\u71bd", // 熽
+ 0x71be: "V\f\u71be", // 熾
+ 0x71bf: "V\f\u71bf", // 熿
+ 0x71c0: "V\f\u71c0", // 燀
+ 0x71c1: "V\f\u71c1", // 燁
+ 0x71c2: "V\f\u71c2", // 燂
+ 0x71c3: "V\f\u71c3", // 燃
+ 0x71c4: "V\f\u71c4", // 燄
+ 0x71c5: "V\f\u71c5", // 燅
+ 0x71c6: "V\f\u71c6", // 燆
+ 0x71c7: "V\f\u71c7", // 燇
+ 0x71c8: "V\f\u71c8", // 燈
+ 0x71c9: "V\f\u71c9", // 燉
+ 0x71ca: "V\f\u71ca", // 燊
+ 0x71cb: "V\f\u71cb", // 燋
+ 0x71cc: "V\f\u71cc", // 燌
+ 0x71cd: "V\f\u71cd", // 燍
+ 0x71ce: "V\f\u71ce", // 燎
+ 0x71cf: "V\f\u71cf", // 燏
+ 0x71d0: "V\f\u71d0", // 燐
+ 0x71d1: "V\f\u71d1", // 燑
+ 0x71d2: "V\f\u71d2", // 燒
+ 0x71d3: "V\f\u71d3", // 燓
+ 0x71d4: "V\f\u71d4", // 燔
+ 0x71d5: "V\f\u71d5", // 燕
+ 0x71d6: "V\f\u71d6", // 燖
+ 0x71d7: "V\f\u71d7", // 燗
+ 0x71d8: "V\f\u71d8", // 燘
+ 0x71d9: "V\f\u71d9", // 燙
+ 0x71da: "V\f\u71da", // 燚
+ 0x71db: "V\f\u71db", // 燛
+ 0x71dc: "V\f\u71dc", // 燜
+ 0x71dd: "V\f\u71dd", // 燝
+ 0x71de: "V\f\u71de", // 燞
+ 0x71df: "V\r\u71df", // 營
+ 0x71e0: "V\r\u71e0", // 燠
+ 0x71e1: "V\r\u71e1", // 燡
+ 0x71e2: "V\r\u71e2", // 燢
+ 0x71e3: "V\r\u71e3", // 燣
+ 0x71e4: "V\r\u71e4", // 燤
+ 0x71e5: "V\r\u71e5", // 燥
+ 0x71e6: "V\r\u71e6", // 燦
+ 0x71e7: "V\r\u71e7", // 燧
+ 0x71e8: "V\r\u71e8", // 燨
+ 0x71e9: "V\r\u71e9", // 燩
+ 0x71ea: "V\r\u71ea", // 燪
+ 0x71eb: "V\r\u71eb", // 燫
+ 0x71ec: "V\r\u71ec", // 燬
+ 0x71ed: "V\r\u71ed", // 燭
+ 0x71ee: "V\r\u71ee", // 燮
+ 0x71ef: "V\r\u71ef", // 燯
+ 0x71f0: "V\r\u71f0", // 燰
+ 0x71f1: "V\r\u71f1", // 燱
+ 0x71f2: "V\r\u71f2", // 燲
+ 0x71f3: "V\r\u71f3", // 燳
+ 0x71f4: "V\r\u71f4", // 燴
+ 0x71f5: "V\r\u71f5", // 燵
+ 0x71f6: "V\r\u71f6", // 燶
+ 0x71f7: "V\r\u71f7", // 燷
+ 0x71f8: "V\x0e\u71f8", // 燸
+ 0x71f9: "V\x0e\u71f9", // 燹
+ 0x71fa: "V\x0e\u71fa", // 燺
+ 0x71fb: "V\x0e\u71fb", // 燻
+ 0x71fc: "V\x0e\u71fc", // 燼
+ 0x71fd: "V\x0e\u71fd", // 燽
+ 0x71fe: "V\x0e\u71fe", // 燾
+ 0x71ff: "V\x0e\u71ff", // 燿
+ 0x7200: "V\x0e\u7200", // 爀
+ 0x7201: "V\x0e\u7201", // 爁
+ 0x7202: "V\x0e\u7202", // 爂
+ 0x7203: "V\x0e\u7203", // 爃
+ 0x7204: "V\x0f\u7204", // 爄
+ 0x7205: "V\x0f\u7205", // 爅
+ 0x7206: "V\x0f\u7206", // 爆
+ 0x7207: "V\x0f\u7207", // 爇
+ 0x7208: "V\x0f\u7208", // 爈
+ 0x7209: "V\x0f\u7209", // 爉
+ 0x720a: "V\x0f\u720a", // 爊
+ 0x720b: "V\x10\u720b", // 爋
+ 0x720c: "V\x0f\u720c", // 爌
+ 0x720d: "V\x0f\u720d", // 爍
+ 0x720e: "V\x0f\u720e", // 爎
+ 0x720f: "V\x10\u720f", // 爏
+ 0x7210: "V\x10\u7210", // 爐
+ 0x7211: "V\x10\u7211", // 爑
+ 0x7212: "V\x10\u7212", // 爒
+ 0x7213: "V\x10\u7213", // 爓
+ 0x7214: "V\x10\u7214", // 爔
+ 0x7215: "V\x0f\u7215", // 爕
+ 0x7216: "V\x10\u7216", // 爖
+ 0x7217: "V\x10\u7217", // 爗
+ 0x7218: "V\x10\u7218", // 爘
+ 0x7219: "V\x11\u7219", // 爙
+ 0x721a: "V\x11\u721a", // 爚
+ 0x721b: "V\x11\u721b", // 爛
+ 0x721c: "V\x12\u721c", // 爜
+ 0x721d: "V\x12\u721d", // 爝
+ 0x721e: "V\x12\u721e", // 爞
+ 0x721f: "V\x12\u721f", // 爟
+ 0x7220: "V\x12\u7220", // 爠
+ 0x7221: "V\x13\u7221", // 爡
+ 0x7222: "V\x13\u7222", // 爢
+ 0x7223: "V\x14\u7223", // 爣
+ 0x7224: "V\x15\u7224", // 爤
+ 0x7225: "V\x15\u7225", // 爥
+ 0x7226: "V\x15\u7226", // 爦
+ 0x7227: "V\x18\u7227", // 爧
+ 0x7228: "V\x19\u7228", // 爨
+ 0x7229: "V\x1d\u7229", // 爩
+ 0x722a: "W\x00\u722a", // 爪
+ 0x722b: "W\x00\u722b", // 爫
+ 0x722c: "W\x04\u722c", // 爬
+ 0x722d: "W\x04\u722d", // 爭
+ 0x722e: "W\x05\u722e", // 爮
+ 0x722f: "W\x05\u722f", // 爯
+ 0x7230: "W\x05\u7230", // 爰
+ 0x7231: "W\x06\u7231", // 爱
+ 0x7232: "W\b\u7232", // 爲
+ 0x7233: "W\n\u7233", // 爳
+ 0x7234: "W\v\u7234", // 爴
+ 0x7235: "W\x0e\u7235", // 爵
+ 0x7236: "X\x00\u7236", // 父
+ 0x7237: "X\x02\u7237", // 爷
+ 0x7238: "X\x04\u7238", // 爸
+ 0x7239: "X\x06\u7239", // 爹
+ 0x723a: "X\t\u723a", // 爺
+ 0x723b: "Y\x00\u723b", // 爻
+ 0x723c: "Y\x05\u723c", // 爼
+ 0x723d: "Y\a\u723d", // 爽
+ 0x723e: "Y\n\u723e", // 爾
+ 0x723f: "Z\x00\u723f", // 爿
+ 0x7240: "Z\x04\u7240", // 牀
+ 0x7241: "Z\x05\u7241", // 牁
+ 0x7242: "Z\x06\u7242", // 牂
+ 0x7243: "Z\t\u7243", // 牃
+ 0x7244: "Z\n\u7244", // 牄
+ 0x7245: "Z\v\u7245", // 牅
+ 0x7246: "Z\r\u7246", // 牆
+ 0x7247: "[\x00\u7247", // 片
+ 0x7248: "[\x04\u7248", // 版
+ 0x7249: "[\x05\u7249", // 牉
+ 0x724a: "[\x05\u724a", // 牊
+ 0x724b: "[\b\u724b", // 牋
+ 0x724c: "[\b\u724c", // 牌
+ 0x724d: "[\b\u724d", // 牍
+ 0x724e: "[\t\u724e", // 牎
+ 0x724f: "[\t\u724f", // 牏
+ 0x7250: "[\t\u7250", // 牐
+ 0x7251: "[\t\u7251", // 牑
+ 0x7252: "[\t\u7252", // 牒
+ 0x7253: "[\n\u7253", // 牓
+ 0x7254: "[\n\u7254", // 牔
+ 0x7255: "[\v\u7255", // 牕
+ 0x7256: "[\v\u7256", // 牖
+ 0x7257: "[\v\u7257", // 牗
+ 0x7258: "[\x0f\u7258", // 牘
+ 0x7259: "\\\x00\u7259", // 牙
+ 0x725a: "\\\b\u725a", // 牚
+ 0x725b: "]\x00\u725b", // 牛
+ 0x725c: "]\x00\u725c", // 牜
+ 0x725d: "]\x02\u725d", // 牝
+ 0x725e: "]\x02\u725e", // 牞
+ 0x725f: "]\x02\u725f", // 牟
+ 0x7260: "]\x03\u7260", // 牠
+ 0x7261: "]\x03\u7261", // 牡
+ 0x7262: "]\x03\u7262", // 牢
+ 0x7263: "]\x03\u7263", // 牣
+ 0x7264: "]\x03\u7264", // 牤
+ 0x7265: "]\x04\u7265", // 牥
+ 0x7266: "]\x04\u7266", // 牦
+ 0x7267: "]\x04\u7267", // 牧
+ 0x7268: "]\x04\u7268", // 牨
+ 0x7269: "]\x04\u7269", // 物
+ 0x726a: "]\x04\u726a", // 牪
+ 0x726b: "]\x04\u726b", // 牫
+ 0x726c: "]\x04\u726c", // 牬
+ 0x726d: "]\x05\u726d", // 牭
+ 0x726e: "]\x05\u726e", // 牮
+ 0x726f: "]\x05\u726f", // 牯
+ 0x7270: "]\x05\u7270", // 牰
+ 0x7271: "]\x05\u7271", // 牱
+ 0x7272: "]\x05\u7272", // 牲
+ 0x7273: "]\x05\u7273", // 牳
+ 0x7274: "]\x05\u7274", // 牴
+ 0x7275: "]\x05\u7275", // 牵
+ 0x7276: "]\x06\u7276", // 牶
+ 0x7277: "]\x06\u7277", // 牷
+ 0x7278: "]\x06\u7278", // 牸
+ 0x7279: "]\x06\u7279", // 特
+ 0x727a: "]\x06\u727a", // 牺
+ 0x727b: "]\a\u727b", // 牻
+ 0x727c: "]\a\u727c", // 牼
+ 0x727d: "]\a\u727d", // 牽
+ 0x727e: "]\a\u727e", // 牾
+ 0x727f: "]\a\u727f", // 牿
+ 0x7280: "]\b\u7280", // 犀
+ 0x7281: "]\a\u7281", // 犁
+ 0x7282: "]\b\u7282", // 犂
+ 0x7283: "]\b\u7283", // 犃
+ 0x7284: "]\b\u7284", // 犄
+ 0x7285: "]\b\u7285", // 犅
+ 0x7286: "]\b\u7286", // 犆
+ 0x7287: "]\b\u7287", // 犇
+ 0x7288: "]\b\u7288", // 犈
+ 0x7289: "]\b\u7289", // 犉
+ 0x728a: "]\b\u728a", // 犊
+ 0x728b: "]\b\u728b", // 犋
+ 0x728c: "]\t\u728c", // 犌
+ 0x728d: "]\t\u728d", // 犍
+ 0x728e: "]\t\u728e", // 犎
+ 0x728f: "]\t\u728f", // 犏
+ 0x7290: "]\t\u7290", // 犐
+ 0x7291: "]\t\u7291", // 犑
+ 0x7292: "]\n\u7292", // 犒
+ 0x7293: "]\n\u7293", // 犓
+ 0x7294: "]\n\u7294", // 犔
+ 0x7295: "]\n\u7295", // 犕
+ 0x7296: "]\n\u7296", // 犖
+ 0x7297: "]\n\u7297", // 犗
+ 0x7298: "]\v\u7298", // 犘
+ 0x7299: "]\v\u7299", // 犙
+ 0x729a: "]\v\u729a", // 犚
+ 0x729b: "]\v\u729b", // 犛
+ 0x729c: "]\f\u729c", // 犜
+ 0x729d: "]\f\u729d", // 犝
+ 0x729e: "]\f\u729e", // 犞
+ 0x729f: "]\f\u729f", // 犟
+ 0x72a0: "]\r\u72a0", // 犠
+ 0x72a1: "]\x0f\u72a1", // 犡
+ 0x72a2: "]\x0f\u72a2", // 犢
+ 0x72a3: "]\x0f\u72a3", // 犣
+ 0x72a4: "]\x0f\u72a4", // 犤
+ 0x72a5: "]\x0f\u72a5", // 犥
+ 0x72a6: "]\x0f\u72a6", // 犦
+ 0x72a7: "]\x10\u72a7", // 犧
+ 0x72a8: "]\x10\u72a8", // 犨
+ 0x72a9: "]\x12\u72a9", // 犩
+ 0x72aa: "]\x14\u72aa", // 犪
+ 0x72ab: "]\x17\u72ab", // 犫
+ 0x72ac: "^\x00\u72ac", // 犬
+ 0x72ad: "^\x00\u72ad", // 犭
+ 0x72ae: "^\x01\u72ae", // 犮
+ 0x72af: "^\x02\u72af", // 犯
+ 0x72b0: "^\x02\u72b0", // 犰
+ 0x72b1: "^\x03\u72b1", // 犱
+ 0x72b2: "^\x03\u72b2", // 犲
+ 0x72b3: "^\x03\u72b3", // 犳
+ 0x72b4: "^\x03\u72b4", // 犴
+ 0x72b5: "^\x03\u72b5", // 犵
+ 0x72b6: "^\x03\u72b6", // 状
+ 0x72b7: "^\x03\u72b7", // 犷
+ 0x72b8: "^\x03\u72b8", // 犸
+ 0x72b9: "^\x04\u72b9", // 犹
+ 0x72ba: "^\x04\u72ba", // 犺
+ 0x72bb: "^\x04\u72bb", // 犻
+ 0x72bc: "^\x04\u72bc", // 犼
+ 0x72bd: "^\x04\u72bd", // 犽
+ 0x72be: "^\x04\u72be", // 犾
+ 0x72bf: "^\x04\u72bf", // 犿
+ 0x72c0: "^\x04\u72c0", // 狀
+ 0x72c1: "^\x04\u72c1", // 狁
+ 0x72c2: "^\x04\u72c2", // 狂
+ 0x72c3: "^\x04\u72c3", // 狃
+ 0x72c4: "^\x04\u72c4", // 狄
+ 0x72c5: "^\x04\u72c5", // 狅
+ 0x72c6: "^\x04\u72c6", // 狆
+ 0x72c7: "^\x04\u72c7", // 狇
+ 0x72c8: "^\x04\u72c8", // 狈
+ 0x72c9: "^\x05\u72c9", // 狉
+ 0x72ca: "^\x05\u72ca", // 狊
+ 0x72cb: "^\x05\u72cb", // 狋
+ 0x72cc: "^\x05\u72cc", // 狌
+ 0x72cd: "^\x05\u72cd", // 狍
+ 0x72ce: "^\x05\u72ce", // 狎
+ 0x72cf: "^\x05\u72cf", // 狏
+ 0x72d0: "^\x05\u72d0", // 狐
+ 0x72d1: "^\x05\u72d1", // 狑
+ 0x72d2: "^\x05\u72d2", // 狒
+ 0x72d3: "^\x05\u72d3", // 狓
+ 0x72d4: "^\x05\u72d4", // 狔
+ 0x72d5: "^\x05\u72d5", // 狕
+ 0x72d6: "^\x05\u72d6", // 狖
+ 0x72d7: "^\x05\u72d7", // 狗
+ 0x72d8: "^\x05\u72d8", // 狘
+ 0x72d9: "^\x05\u72d9", // 狙
+ 0x72da: "^\x05\u72da", // 狚
+ 0x72db: "^\x05\u72db", // 狛
+ 0x72dc: "^\x05\u72dc", // 狜
+ 0x72dd: "^\x05\u72dd", // 狝
+ 0x72de: "^\x05\u72de", // 狞
+ 0x72df: "^\x06\u72df", // 狟
+ 0x72e0: "^\x06\u72e0", // 狠
+ 0x72e1: "^\x06\u72e1", // 狡
+ 0x72e2: "^\x06\u72e2", // 狢
+ 0x72e3: "^\x06\u72e3", // 狣
+ 0x72e4: "^\x06\u72e4", // 狤
+ 0x72e5: "^\x06\u72e5", // 狥
+ 0x72e6: "^\x06\u72e6", // 狦
+ 0x72e7: "^\x06\u72e7", // 狧
+ 0x72e8: "^\x06\u72e8", // 狨
+ 0x72e9: "^\x06\u72e9", // 狩
+ 0x72ea: "^\x06\u72ea", // 狪
+ 0x72eb: "^\x06\u72eb", // 狫
+ 0x72ec: "^\x06\u72ec", // 独
+ 0x72ed: "^\x06\u72ed", // 狭
+ 0x72ee: "^\x06\u72ee", // 狮
+ 0x72ef: "^\x06\u72ef", // 狯
+ 0x72f0: "^\x06\u72f0", // 狰
+ 0x72f1: "^\x06\u72f1", // 狱
+ 0x72f2: "^\x06\u72f2", // 狲
+ 0x72f3: "^\a\u72f3", // 狳
+ 0x72f4: "^\a\u72f4", // 狴
+ 0x72f5: "^\a\u72f5", // 狵
+ 0x72f6: "^\a\u72f6", // 狶
+ 0x72f7: "^\a\u72f7", // 狷
+ 0x72f8: "^\a\u72f8", // 狸
+ 0x72f9: "^\a\u72f9", // 狹
+ 0x72fa: "^\a\u72fa", // 狺
+ 0x72fb: "^\a\u72fb", // 狻
+ 0x72fc: "^\a\u72fc", // 狼
+ 0x72fd: "^\a\u72fd", // 狽
+ 0x72fe: "^\a\u72fe", // 狾
+ 0x72ff: "^\a\u72ff", // 狿
+ 0x7300: "^\a\u7300", // 猀
+ 0x7301: "^\a\u7301", // 猁
+ 0x7302: "^\a\u7302", // 猂
+ 0x7303: "^\a\u7303", // 猃
+ 0x7304: "^\b\u7304", // 猄
+ 0x7305: "^\b\u7305", // 猅
+ 0x7306: "^\b\u7306", // 猆
+ 0x7307: "^\b\u7307", // 猇
+ 0x7308: "^\b\u7308", // 猈
+ 0x7309: "^\b\u7309", // 猉
+ 0x730a: "^\b\u730a", // 猊
+ 0x730b: "^\b\u730b", // 猋
+ 0x730c: "^\b\u730c", // 猌
+ 0x730d: "^\b\u730d", // 猍
+ 0x730e: "^\b\u730e", // 猎
+ 0x730f: "^\b\u730f", // 猏
+ 0x7310: "^\b\u7310", // 猐
+ 0x7311: "^\b\u7311", // 猑
+ 0x7312: "^\b\u7312", // 猒
+ 0x7313: "^\b\u7313", // 猓
+ 0x7314: "^\b\u7314", // 猔
+ 0x7315: "^\b\u7315", // 猕
+ 0x7316: "^\b\u7316", // 猖
+ 0x7317: "^\b\u7317", // 猗
+ 0x7318: "^\b\u7318", // 猘
+ 0x7319: "^\b\u7319", // 猙
+ 0x731a: "^\b\u731a", // 猚
+ 0x731b: "^\b\u731b", // 猛
+ 0x731c: "^\b\u731c", // 猜
+ 0x731d: "^\b\u731d", // 猝
+ 0x731e: "^\b\u731e", // 猞
+ 0x731f: "^\b\u731f", // 猟
+ 0x7320: "^\b\u7320", // 猠
+ 0x7321: "^\b\u7321", // 猡
+ 0x7322: "^\t\u7322", // 猢
+ 0x7323: "^\t\u7323", // 猣
+ 0x7324: "^\t\u7324", // 猤
+ 0x7325: "^\t\u7325", // 猥
+ 0x7326: "^\t\u7326", // 猦
+ 0x7327: "^\t\u7327", // 猧
+ 0x7328: "^\t\u7328", // 猨
+ 0x7329: "^\t\u7329", // 猩
+ 0x732a: "^\b\u732a", // 猪
+ 0x732b: "^\b\u732b", // 猫
+ 0x732c: "^\t\u732c", // 猬
+ 0x732d: "^\t\u732d", // 猭
+ 0x732e: "^\t\u732e", // 献
+ 0x732f: "^\t\u732f", // 猯
+ 0x7330: "^\t\u7330", // 猰
+ 0x7331: "^\t\u7331", // 猱
+ 0x7332: "^\t\u7332", // 猲
+ 0x7333: "^\t\u7333", // 猳
+ 0x7334: "^\t\u7334", // 猴
+ 0x7335: "^\t\u7335", // 猵
+ 0x7336: "^\t\u7336", // 猶
+ 0x7337: "^\t\u7337", // 猷
+ 0x7338: "^\t\u7338", // 猸
+ 0x7339: "^\t\u7339", // 猹
+ 0x733a: "^\n\u733a", // 猺
+ 0x733b: "^\n\u733b", // 猻
+ 0x733c: "^\n\u733c", // 猼
+ 0x733d: "^\n\u733d", // 猽
+ 0x733e: "^\n\u733e", // 猾
+ 0x733f: "^\n\u733f", // 猿
+ 0x7340: "^\n\u7340", // 獀
+ 0x7341: "^\t\u7341", // 獁
+ 0x7342: "^\n\u7342", // 獂
+ 0x7343: "^\n\u7343", // 獃
+ 0x7344: "^\v\u7344", // 獄
+ 0x7345: "^\n\u7345", // 獅
+ 0x7346: "^\n\u7346", // 獆
+ 0x7347: "^\n\u7347", // 獇
+ 0x7348: "^\n\u7348", // 獈
+ 0x7349: "^\n\u7349", // 獉
+ 0x734a: "^\n\u734a", // 獊
+ 0x734b: "^\f\u734b", // 獋
+ 0x734c: "^\v\u734c", // 獌
+ 0x734d: "^\v\u734d", // 獍
+ 0x734e: "^\v\u734e", // 獎
+ 0x734f: "^\v\u734f", // 獏
+ 0x7350: "^\v\u7350", // 獐
+ 0x7351: "^\v\u7351", // 獑
+ 0x7352: "^\v\u7352", // 獒
+ 0x7353: "^\v\u7353", // 獓
+ 0x7354: "^\v\u7354", // 獔
+ 0x7355: "^\v\u7355", // 獕
+ 0x7356: "^\f\u7356", // 獖
+ 0x7357: "^\f\u7357", // 獗
+ 0x7358: "^\f\u7358", // 獘
+ 0x7359: "^\f\u7359", // 獙
+ 0x735a: "^\f\u735a", // 獚
+ 0x735b: "^\f\u735b", // 獛
+ 0x735c: "^\f\u735c", // 獜
+ 0x735d: "^\f\u735d", // 獝
+ 0x735e: "^\f\u735e", // 獞
+ 0x735f: "^\f\u735f", // 獟
+ 0x7360: "^\f\u7360", // 獠
+ 0x7361: "^\f\u7361", // 獡
+ 0x7362: "^\f\u7362", // 獢
+ 0x7363: "^\f\u7363", // 獣
+ 0x7364: "^\f\u7364", // 獤
+ 0x7365: "^\r\u7365", // 獥
+ 0x7366: "^\r\u7366", // 獦
+ 0x7367: "^\r\u7367", // 獧
+ 0x7368: "^\r\u7368", // 獨
+ 0x7369: "^\r\u7369", // 獩
+ 0x736a: "^\r\u736a", // 獪
+ 0x736b: "^\r\u736b", // 獫
+ 0x736c: "^\r\u736c", // 獬
+ 0x736d: "^\r\u736d", // 獭
+ 0x736e: "^\x0e\u736e", // 獮
+ 0x736f: "^\x0e\u736f", // 獯
+ 0x7370: "^\x0e\u7370", // 獰
+ 0x7371: "^\x0e\u7371", // 獱
+ 0x7372: "^\x0e\u7372", // 獲
+ 0x7373: "^\x0e\u7373", // 獳
+ 0x7374: "^\x0e\u7374", // 獴
+ 0x7375: "^\x0f\u7375", // 獵
+ 0x7376: "^\x0f\u7376", // 獶
+ 0x7377: "^\x0f\u7377", // 獷
+ 0x7378: "^\x0f\u7378", // 獸
+ 0x7379: "^\x10\u7379", // 獹
+ 0x737a: "^\x10\u737a", // 獺
+ 0x737b: "^\x10\u737b", // 獻
+ 0x737c: "^\x11\u737c", // 獼
+ 0x737d: "^\x11\u737d", // 獽
+ 0x737e: "^\x12\u737e", // 獾
+ 0x737f: "^\x12\u737f", // 獿
+ 0x7380: "^\x13\u7380", // 玀
+ 0x7381: "^\x14\u7381", // 玁
+ 0x7382: "^\x14\u7382", // 玂
+ 0x7383: "^\x14\u7383", // 玃
+ 0x7384: "_\x00\u7384", // 玄
+ 0x7385: "_\x04\u7385", // 玅
+ 0x7386: "_\x05\u7386", // 玆
+ 0x7387: "_\x06\u7387", // 率
+ 0x7388: "_\x06\u7388", // 玈
+ 0x7389: "`\x00\u7389", // 玉
+ 0x738a: "`\x01\u738a", // 玊
+ 0x738b: "`\x00\u738b", // 王
+ 0x738c: "`\x01\u738c", // 玌
+ 0x738d: "`\x01\u738d", // 玍
+ 0x738e: "`\x02\u738e", // 玎
+ 0x738f: "`\x02\u738f", // 玏
+ 0x7390: "`\x02\u7390", // 玐
+ 0x7391: "`\x02\u7391", // 玑
+ 0x7392: "`\x03\u7392", // 玒
+ 0x7393: "`\x03\u7393", // 玓
+ 0x7394: "`\x03\u7394", // 玔
+ 0x7395: "`\x03\u7395", // 玕
+ 0x7396: "`\x03\u7396", // 玖
+ 0x7397: "`\x03\u7397", // 玗
+ 0x7398: "`\x03\u7398", // 玘
+ 0x7399: "`\x03\u7399", // 玙
+ 0x739a: "`\x03\u739a", // 玚
+ 0x739b: "`\x03\u739b", // 玛
+ 0x739c: "`\x04\u739c", // 玜
+ 0x739d: "`\x04\u739d", // 玝
+ 0x739e: "`\x04\u739e", // 玞
+ 0x739f: "`\x04\u739f", // 玟
+ 0x73a0: "`\x04\u73a0", // 玠
+ 0x73a1: "`\x04\u73a1", // 玡
+ 0x73a2: "`\x04\u73a2", // 玢
+ 0x73a3: "`\x04\u73a3", // 玣
+ 0x73a4: "`\x04\u73a4", // 玤
+ 0x73a5: "`\x04\u73a5", // 玥
+ 0x73a6: "`\x04\u73a6", // 玦
+ 0x73a7: "`\x04\u73a7", // 玧
+ 0x73a8: "`\x04\u73a8", // 玨
+ 0x73a9: "`\x04\u73a9", // 玩
+ 0x73aa: "`\x04\u73aa", // 玪
+ 0x73ab: "`\x04\u73ab", // 玫
+ 0x73ac: "`\x04\u73ac", // 玬
+ 0x73ad: "`\x04\u73ad", // 玭
+ 0x73ae: "`\x04\u73ae", // 玮
+ 0x73af: "`\x04\u73af", // 环
+ 0x73b0: "`\x04\u73b0", // 现
+ 0x73b1: "`\x04\u73b1", // 玱
+ 0x73b2: "`\x05\u73b2", // 玲
+ 0x73b3: "`\x05\u73b3", // 玳
+ 0x73b4: "`\x05\u73b4", // 玴
+ 0x73b5: "`\x05\u73b5", // 玵
+ 0x73b6: "`\x05\u73b6", // 玶
+ 0x73b7: "`\x05\u73b7", // 玷
+ 0x73b8: "`\x05\u73b8", // 玸
+ 0x73b9: "`\x05\u73b9", // 玹
+ 0x73ba: "`\x05\u73ba", // 玺
+ 0x73bb: "`\x05\u73bb", // 玻
+ 0x73bc: "`\x05\u73bc", // 玼
+ 0x73bd: "`\x05\u73bd", // 玽
+ 0x73be: "`\x05\u73be", // 玾
+ 0x73bf: "`\x05\u73bf", // 玿
+ 0x73c0: "`\x05\u73c0", // 珀
+ 0x73c1: "`\x05\u73c1", // 珁
+ 0x73c2: "`\x05\u73c2", // 珂
+ 0x73c3: "`\x05\u73c3", // 珃
+ 0x73c4: "`\x05\u73c4", // 珄
+ 0x73c5: "`\x05\u73c5", // 珅
+ 0x73c6: "`\x05\u73c6", // 珆
+ 0x73c7: "`\x05\u73c7", // 珇
+ 0x73c8: "`\x05\u73c8", // 珈
+ 0x73c9: "`\x05\u73c9", // 珉
+ 0x73ca: "`\x05\u73ca", // 珊
+ 0x73cb: "`\x05\u73cb", // 珋
+ 0x73cc: "`\x05\u73cc", // 珌
+ 0x73cd: "`\x05\u73cd", // 珍
+ 0x73ce: "`\x05\u73ce", // 珎
+ 0x73cf: "`\x05\u73cf", // 珏
+ 0x73d0: "`\x05\u73d0", // 珐
+ 0x73d1: "`\x05\u73d1", // 珑
+ 0x73d2: "`\x06\u73d2", // 珒
+ 0x73d3: "`\x06\u73d3", // 珓
+ 0x73d4: "`\x06\u73d4", // 珔
+ 0x73d5: "`\x06\u73d5", // 珕
+ 0x73d6: "`\x06\u73d6", // 珖
+ 0x73d7: "`\x06\u73d7", // 珗
+ 0x73d8: "`\x06\u73d8", // 珘
+ 0x73d9: "`\x06\u73d9", // 珙
+ 0x73da: "`\x06\u73da", // 珚
+ 0x73db: "`\x06\u73db", // 珛
+ 0x73dc: "`\x06\u73dc", // 珜
+ 0x73dd: "`\x06\u73dd", // 珝
+ 0x73de: "`\x06\u73de", // 珞
+ 0x73df: "`\x06\u73df", // 珟
+ 0x73e0: "`\x06\u73e0", // 珠
+ 0x73e1: "`\x06\u73e1", // 珡
+ 0x73e2: "`\x06\u73e2", // 珢
+ 0x73e3: "`\x06\u73e3", // 珣
+ 0x73e4: "`\x06\u73e4", // 珤
+ 0x73e5: "`\x06\u73e5", // 珥
+ 0x73e6: "`\x06\u73e6", // 珦
+ 0x73e7: "`\x06\u73e7", // 珧
+ 0x73e8: "`\x06\u73e8", // 珨
+ 0x73e9: "`\x06\u73e9", // 珩
+ 0x73ea: "`\x06\u73ea", // 珪
+ 0x73eb: "`\x06\u73eb", // 珫
+ 0x73ec: "`\x06\u73ec", // 珬
+ 0x73ed: "`\x06\u73ed", // 班
+ 0x73ee: "`\x06\u73ee", // 珮
+ 0x73ef: "`\x06\u73ef", // 珯
+ 0x73f0: "`\x06\u73f0", // 珰
+ 0x73f1: "`\x06\u73f1", // 珱
+ 0x73f2: "`\x06\u73f2", // 珲
+ 0x73f3: "`\a\u73f3", // 珳
+ 0x73f4: "`\a\u73f4", // 珴
+ 0x73f5: "`\a\u73f5", // 珵
+ 0x73f6: "`\a\u73f6", // 珶
+ 0x73f7: "`\b\u73f7", // 珷
+ 0x73f8: "`\a\u73f8", // 珸
+ 0x73f9: "`\a\u73f9", // 珹
+ 0x73fa: "`\a\u73fa", // 珺
+ 0x73fb: "`\a\u73fb", // 珻
+ 0x73fc: "`\a\u73fc", // 珼
+ 0x73fd: "`\a\u73fd", // 珽
+ 0x73fe: "`\a\u73fe", // 現
+ 0x73ff: "`\a\u73ff", // 珿
+ 0x7400: "`\a\u7400", // 琀
+ 0x7401: "`\a\u7401", // 琁
+ 0x7402: "`\a\u7402", // 琂
+ 0x7403: "`\a\u7403", // 球
+ 0x7404: "`\a\u7404", // 琄
+ 0x7405: "`\a\u7405", // 琅
+ 0x7406: "`\a\u7406", // 理
+ 0x7407: "`\a\u7407", // 琇
+ 0x7408: "`\a\u7408", // 琈
+ 0x7409: "`\x06\u7409", // 琉
+ 0x740a: "`\a\u740a", // 琊
+ 0x740b: "`\a\u740b", // 琋
+ 0x740c: "`\a\u740c", // 琌
+ 0x740d: "`\a\u740d", // 琍
+ 0x740e: "`\a\u740e", // 琎
+ 0x740f: "`\a\u740f", // 琏
+ 0x7410: "`\a\u7410", // 琐
+ 0x7411: "`\a\u7411", // 琑
+ 0x7412: "`\a\u7412", // 琒
+ 0x7413: "`\a\u7413", // 琓
+ 0x7414: "`\b\u7414", // 琔
+ 0x7415: "`\b\u7415", // 琕
+ 0x7416: "`\b\u7416", // 琖
+ 0x7417: "`\b\u7417", // 琗
+ 0x7418: "`\b\u7418", // 琘
+ 0x7419: "`\b\u7419", // 琙
+ 0x741a: "`\b\u741a", // 琚
+ 0x741b: "`\b\u741b", // 琛
+ 0x741c: "`\b\u741c", // 琜
+ 0x741d: "`\b\u741d", // 琝
+ 0x741e: "`\t\u741e", // 琞
+ 0x741f: "`\b\u741f", // 琟
+ 0x7420: "`\b\u7420", // 琠
+ 0x7421: "`\b\u7421", // 琡
+ 0x7422: "`\b\u7422", // 琢
+ 0x7423: "`\b\u7423", // 琣
+ 0x7424: "`\b\u7424", // 琤
+ 0x7425: "`\b\u7425", // 琥
+ 0x7426: "`\b\u7426", // 琦
+ 0x7427: "`\b\u7427", // 琧
+ 0x7428: "`\b\u7428", // 琨
+ 0x7429: "`\b\u7429", // 琩
+ 0x742a: "`\b\u742a", // 琪
+ 0x742b: "`\b\u742b", // 琫
+ 0x742c: "`\b\u742c", // 琬
+ 0x742d: "`\b\u742d", // 琭
+ 0x742e: "`\b\u742e", // 琮
+ 0x742f: "`\b\u742f", // 琯
+ 0x7430: "`\b\u7430", // 琰
+ 0x7431: "`\b\u7431", // 琱
+ 0x7432: "`\b\u7432", // 琲
+ 0x7433: "`\b\u7433", // 琳
+ 0x7434: "`\b\u7434", // 琴
+ 0x7435: "`\b\u7435", // 琵
+ 0x7436: "`\b\u7436", // 琶
+ 0x7437: "`\b\u7437", // 琷
+ 0x7438: "`\b\u7438", // 琸
+ 0x7439: "`\b\u7439", // 琹
+ 0x743a: "`\b\u743a", // 琺
+ 0x743b: "`\b\u743b", // 琻
+ 0x743c: "`\b\u743c", // 琼
+ 0x743d: "`\t\u743d", // 琽
+ 0x743e: "`\t\u743e", // 琾
+ 0x743f: "`\t\u743f", // 琿
+ 0x7440: "`\t\u7440", // 瑀
+ 0x7441: "`\t\u7441", // 瑁
+ 0x7442: "`\t\u7442", // 瑂
+ 0x7443: "`\t\u7443", // 瑃
+ 0x7444: "`\t\u7444", // 瑄
+ 0x7445: "`\t\u7445", // 瑅
+ 0x7446: "`\t\u7446", // 瑆
+ 0x7447: "`\t\u7447", // 瑇
+ 0x7448: "`\t\u7448", // 瑈
+ 0x7449: "`\t\u7449", // 瑉
+ 0x744a: "`\t\u744a", // 瑊
+ 0x744b: "`\t\u744b", // 瑋
+ 0x744c: "`\t\u744c", // 瑌
+ 0x744d: "`\t\u744d", // 瑍
+ 0x744e: "`\t\u744e", // 瑎
+ 0x744f: "`\t\u744f", // 瑏
+ 0x7450: "`\t\u7450", // 瑐
+ 0x7451: "`\t\u7451", // 瑑
+ 0x7452: "`\t\u7452", // 瑒
+ 0x7453: "`\t\u7453", // 瑓
+ 0x7454: "`\t\u7454", // 瑔
+ 0x7455: "`\t\u7455", // 瑕
+ 0x7456: "`\t\u7456", // 瑖
+ 0x7457: "`\t\u7457", // 瑗
+ 0x7458: "`\t\u7458", // 瑘
+ 0x7459: "`\t\u7459", // 瑙
+ 0x745a: "`\t\u745a", // 瑚
+ 0x745b: "`\t\u745b", // 瑛
+ 0x745c: "`\t\u745c", // 瑜
+ 0x745d: "`\t\u745d", // 瑝
+ 0x745e: "`\t\u745e", // 瑞
+ 0x745f: "`\t\u745f", // 瑟
+ 0x7460: "`\n\u7460", // 瑠
+ 0x7461: "`\n\u7461", // 瑡
+ 0x7462: "`\n\u7462", // 瑢
+ 0x7463: "`\n\u7463", // 瑣
+ 0x7464: "`\n\u7464", // 瑤
+ 0x7465: "`\n\u7465", // 瑥
+ 0x7466: "`\n\u7466", // 瑦
+ 0x7467: "`\n\u7467", // 瑧
+ 0x7468: "`\n\u7468", // 瑨
+ 0x7469: "`\n\u7469", // 瑩
+ 0x746a: "`\n\u746a", // 瑪
+ 0x746b: "`\n\u746b", // 瑫
+ 0x746c: "`\n\u746c", // 瑬
+ 0x746d: "`\n\u746d", // 瑭
+ 0x746e: "`\n\u746e", // 瑮
+ 0x746f: "`\n\u746f", // 瑯
+ 0x7470: "`\n\u7470", // 瑰
+ 0x7471: "`\n\u7471", // 瑱
+ 0x7472: "`\n\u7472", // 瑲
+ 0x7473: "`\n\u7473", // 瑳
+ 0x7474: "`\n\u7474", // 瑴
+ 0x7475: "`\n\u7475", // 瑵
+ 0x7476: "`\n\u7476", // 瑶
+ 0x7477: "`\n\u7477", // 瑷
+ 0x7478: "`\n\u7478", // 瑸
+ 0x7479: "`\v\u7479", // 瑹
+ 0x747a: "`\v\u747a", // 瑺
+ 0x747b: "`\v\u747b", // 瑻
+ 0x747c: "`\v\u747c", // 瑼
+ 0x747d: "`\v\u747d", // 瑽
+ 0x747e: "`\v\u747e", // 瑾
+ 0x747f: "`\v\u747f", // 瑿
+ 0x7480: "`\v\u7480", // 璀
+ 0x7481: "`\v\u7481", // 璁
+ 0x7482: "`\v\u7482", // 璂
+ 0x7483: "`\v\u7483", // 璃
+ 0x7484: "`\v\u7484", // 璄
+ 0x7485: "`\v\u7485", // 璅
+ 0x7486: "`\v\u7486", // 璆
+ 0x7487: "`\v\u7487", // 璇
+ 0x7488: "`\v\u7488", // 璈
+ 0x7489: "`\v\u7489", // 璉
+ 0x748a: "`\v\u748a", // 璊
+ 0x748b: "`\v\u748b", // 璋
+ 0x748c: "`\v\u748c", // 璌
+ 0x748d: "`\f\u748d", // 璍
+ 0x748e: "`\v\u748e", // 璎
+ 0x748f: "`\f\u748f", // 璏
+ 0x7490: "`\f\u7490", // 璐
+ 0x7491: "`\f\u7491", // 璑
+ 0x7492: "`\f\u7492", // 璒
+ 0x7493: "`\v\u7493", // 璓
+ 0x7494: "`\f\u7494", // 璔
+ 0x7495: "`\f\u7495", // 璕
+ 0x7496: "`\f\u7496", // 璖
+ 0x7497: "`\f\u7497", // 璗
+ 0x7498: "`\f\u7498", // 璘
+ 0x7499: "`\f\u7499", // 璙
+ 0x749a: "`\f\u749a", // 璚
+ 0x749b: "`\f\u749b", // 璛
+ 0x749c: "`\f\u749c", // 璜
+ 0x749d: "`\f\u749d", // 璝
+ 0x749e: "`\f\u749e", // 璞
+ 0x749f: "`\f\u749f", // 璟
+ 0x74a0: "`\f\u74a0", // 璠
+ 0x74a1: "`\f\u74a1", // 璡
+ 0x74a2: "`\r\u74a2", // 璢
+ 0x74a3: "`\f\u74a3", // 璣
+ 0x74a4: "`\f\u74a4", // 璤
+ 0x74a5: "`\r\u74a5", // 璥
+ 0x74a6: "`\r\u74a6", // 璦
+ 0x74a7: "`\r\u74a7", // 璧
+ 0x74a8: "`\r\u74a8", // 璨
+ 0x74a9: "`\r\u74a9", // 璩
+ 0x74aa: "`\r\u74aa", // 璪
+ 0x74ab: "`\r\u74ab", // 璫
+ 0x74ac: "`\r\u74ac", // 璬
+ 0x74ad: "`\r\u74ad", // 璭
+ 0x74ae: "`\r\u74ae", // 璮
+ 0x74af: "`\r\u74af", // 璯
+ 0x74b0: "`\r\u74b0", // 環
+ 0x74b1: "`\r\u74b1", // 璱
+ 0x74b2: "`\r\u74b2", // 璲
+ 0x74b3: "`\r\u74b3", // 璳
+ 0x74b4: "`\r\u74b4", // 璴
+ 0x74b5: "`\x0e\u74b5", // 璵
+ 0x74b6: "`\x0e\u74b6", // 璶
+ 0x74b7: "`\x0e\u74b7", // 璷
+ 0x74b8: "`\x0e\u74b8", // 璸
+ 0x74b9: "`\x0e\u74b9", // 璹
+ 0x74ba: "`\x0e\u74ba", // 璺
+ 0x74bb: "`\x0e\u74bb", // 璻
+ 0x74bc: "`\x0e\u74bc", // 璼
+ 0x74bd: "`\x0e\u74bd", // 璽
+ 0x74be: "`\x0e\u74be", // 璾
+ 0x74bf: "`\x0e\u74bf", // 璿
+ 0x74c0: "`\x0e\u74c0", // 瓀
+ 0x74c1: "`\x0e\u74c1", // 瓁
+ 0x74c2: "`\x0e\u74c2", // 瓂
+ 0x74c3: "`\x0f\u74c3", // 瓃
+ 0x74c4: "`\x0f\u74c4", // 瓄
+ 0x74c5: "`\x0f\u74c5", // 瓅
+ 0x74c6: "`\x0f\u74c6", // 瓆
+ 0x74c7: "`\x0f\u74c7", // 瓇
+ 0x74c8: "`\x0f\u74c8", // 瓈
+ 0x74c9: "`\x0f\u74c9", // 瓉
+ 0x74ca: "`\x0f\u74ca", // 瓊
+ 0x74cb: "`\x0f\u74cb", // 瓋
+ 0x74cc: "`\x10\u74cc", // 瓌
+ 0x74cd: "`\x10\u74cd", // 瓍
+ 0x74ce: "`\x10\u74ce", // 瓎
+ 0x74cf: "`\x10\u74cf", // 瓏
+ 0x74d0: "`\x10\u74d0", // 瓐
+ 0x74d1: "`\x10\u74d1", // 瓑
+ 0x74d2: "`\x10\u74d2", // 瓒
+ 0x74d3: "`\x11\u74d3", // 瓓
+ 0x74d4: "`\x11\u74d4", // 瓔
+ 0x74d5: "`\x11\u74d5", // 瓕
+ 0x74d6: "`\x11\u74d6", // 瓖
+ 0x74d7: "`\x12\u74d7", // 瓗
+ 0x74d8: "`\x12\u74d8", // 瓘
+ 0x74d9: "`\x12\u74d9", // 瓙
+ 0x74da: "`\x13\u74da", // 瓚
+ 0x74db: "`\x14\u74db", // 瓛
+ 0x74dc: "a\x00\u74dc", // 瓜
+ 0x74dd: "a\x03\u74dd", // 瓝
+ 0x74de: "a\x05\u74de", // 瓞
+ 0x74df: "a\x05\u74df", // 瓟
+ 0x74e0: "a\x06\u74e0", // 瓠
+ 0x74e1: "a\b\u74e1", // 瓡
+ 0x74e2: "a\v\u74e2", // 瓢
+ 0x74e3: "a\x0e\u74e3", // 瓣
+ 0x74e4: "a\x11\u74e4", // 瓤
+ 0x74e5: "a\x13\u74e5", // 瓥
+ 0x74e6: "b\x00\u74e6", // 瓦
+ 0x74e7: "b\x02\u74e7", // 瓧
+ 0x74e8: "b\x03\u74e8", // 瓨
+ 0x74e9: "b\x03\u74e9", // 瓩
+ 0x74ea: "b\x04\u74ea", // 瓪
+ 0x74eb: "b\x04\u74eb", // 瓫
+ 0x74ec: "b\x04\u74ec", // 瓬
+ 0x74ed: "b\x04\u74ed", // 瓭
+ 0x74ee: "b\x04\u74ee", // 瓮
+ 0x74ef: "b\x04\u74ef", // 瓯
+ 0x74f0: "b\x04\u74f0", // 瓰
+ 0x74f1: "b\x04\u74f1", // 瓱
+ 0x74f2: "b\x04\u74f2", // 瓲
+ 0x74f3: "b\x05\u74f3", // 瓳
+ 0x74f4: "b\x05\u74f4", // 瓴
+ 0x74f5: "b\x05\u74f5", // 瓵
+ 0x74f6: "b\x06\u74f6", // 瓶
+ 0x74f7: "b\x06\u74f7", // 瓷
+ 0x74f8: "b\x06\u74f8", // 瓸
+ 0x74f9: "b\a\u74f9", // 瓹
+ 0x74fa: "b\a\u74fa", // 瓺
+ 0x74fb: "b\a\u74fb", // 瓻
+ 0x74fc: "b\a\u74fc", // 瓼
+ 0x74fd: "b\b\u74fd", // 瓽
+ 0x74fe: "b\b\u74fe", // 瓾
+ 0x74ff: "b\b\u74ff", // 瓿
+ 0x7500: "b\b\u7500", // 甀
+ 0x7501: "b\b\u7501", // 甁
+ 0x7502: "b\t\u7502", // 甂
+ 0x7503: "b\t\u7503", // 甃
+ 0x7504: "b\t\u7504", // 甄
+ 0x7505: "b\t\u7505", // 甅
+ 0x7506: "b\t\u7506", // 甆
+ 0x7507: "b\n\u7507", // 甇
+ 0x7508: "b\n\u7508", // 甈
+ 0x7509: "b\n\u7509", // 甉
+ 0x750a: "b\v\u750a", // 甊
+ 0x750b: "b\v\u750b", // 甋
+ 0x750c: "b\v\u750c", // 甌
+ 0x750d: "b\v\u750d", // 甍
+ 0x750e: "b\v\u750e", // 甎
+ 0x750f: "b\f\u750f", // 甏
+ 0x7510: "b\f\u7510", // 甐
+ 0x7511: "b\f\u7511", // 甑
+ 0x7512: "b\f\u7512", // 甒
+ 0x7513: "b\r\u7513", // 甓
+ 0x7514: "b\r\u7514", // 甔
+ 0x7515: "b\r\u7515", // 甕
+ 0x7516: "b\x0e\u7516", // 甖
+ 0x7517: "b\x10\u7517", // 甗
+ 0x7518: "c\x00\u7518", // 甘
+ 0x7519: "c\x03\u7519", // 甙
+ 0x751a: "c\x04\u751a", // 甚
+ 0x751b: "c\x06\u751b", // 甛
+ 0x751c: "c\x06\u751c", // 甜
+ 0x751d: "c\b\u751d", // 甝
+ 0x751e: "c\b\u751e", // 甞
+ 0x751f: "d\x00\u751f", // 生
+ 0x7520: "d\x04\u7520", // 甠
+ 0x7521: "d\x05\u7521", // 甡
+ 0x7522: "d\x06\u7522", // 產
+ 0x7523: "d\x06\u7523", // 産
+ 0x7524: "d\a\u7524", // 甤
+ 0x7525: "d\a\u7525", // 甥
+ 0x7526: "d\a\u7526", // 甦
+ 0x7527: "d\t\u7527", // 甧
+ 0x7528: "e\x00\u7528", // 用
+ 0x7529: "e\x00\u7529", // 甩
+ 0x752a: "e\x01\u752a", // 甪
+ 0x752b: "e\x02\u752b", // 甫
+ 0x752c: "e\x02\u752c", // 甬
+ 0x752d: "e\x04\u752d", // 甭
+ 0x752e: "e\x04\u752e", // 甮
+ 0x752f: "e\a\u752f", // 甯
+ 0x7530: "f\x00\u7530", // 田
+ 0x7531: "f\x00\u7531", // 由
+ 0x7532: "f\x00\u7532", // 甲
+ 0x7533: "f\x00\u7533", // 申
+ 0x7534: "f\x00\u7534", // 甴
+ 0x7535: "f\x00\u7535", // 电
+ 0x7536: "f\x01\u7536", // 甶
+ 0x7537: "f\x02\u7537", // 男
+ 0x7538: "f\x02\u7538", // 甸
+ 0x7539: "f\x02\u7539", // 甹
+ 0x753a: "f\x02\u753a", // 町
+ 0x753b: "f\x03\u753b", // 画
+ 0x753c: "f\x02\u753c", // 甼
+ 0x753d: "f\x03\u753d", // 甽
+ 0x753e: "f\x03\u753e", // 甾
+ 0x753f: "f\x03\u753f", // 甿
+ 0x7540: "f\x03\u7540", // 畀
+ 0x7541: "f\x03\u7541", // 畁
+ 0x7542: "f\x03\u7542", // 畂
+ 0x7543: "f\x03\u7543", // 畃
+ 0x7544: "f\x03\u7544", // 畄
+ 0x7545: "f\x03\u7545", // 畅
+ 0x7546: "f\x04\u7546", // 畆
+ 0x7547: "f\x04\u7547", // 畇
+ 0x7548: "f\x04\u7548", // 畈
+ 0x7549: "f\x04\u7549", // 畉
+ 0x754a: "f\x04\u754a", // 畊
+ 0x754b: "f\x04\u754b", // 畋
+ 0x754c: "f\x04\u754c", // 界
+ 0x754d: "f\x04\u754d", // 畍
+ 0x754e: "f\x04\u754e", // 畎
+ 0x754f: "f\x04\u754f", // 畏
+ 0x7550: "f\x04\u7550", // 畐
+ 0x7551: "f\x04\u7551", // 畑
+ 0x7552: "f\x04\u7552", // 畒
+ 0x7553: "f\x04\u7553", // 畓
+ 0x7554: "f\x05\u7554", // 畔
+ 0x7555: "f\x05\u7555", // 畕
+ 0x7556: "f\x05\u7556", // 畖
+ 0x7557: "f\x05\u7557", // 畗
+ 0x7558: "f\x05\u7558", // 畘
+ 0x7559: "f\x05\u7559", // 留
+ 0x755a: "f\x05\u755a", // 畚
+ 0x755b: "f\x05\u755b", // 畛
+ 0x755c: "f\x05\u755c", // 畜
+ 0x755d: "f\x05\u755d", // 畝
+ 0x755e: "f\x05\u755e", // 畞
+ 0x755f: "f\x05\u755f", // 畟
+ 0x7560: "j\x05\u7560", // 畠
+ 0x7561: "f\x06\u7561", // 畡
+ 0x7562: "f\x06\u7562", // 畢
+ 0x7563: "f\x06\u7563", // 畣
+ 0x7564: "f\x06\u7564", // 畤
+ 0x7565: "f\x06\u7565", // 略
+ 0x7566: "f\x06\u7566", // 畦
+ 0x7567: "f\x06\u7567", // 畧
+ 0x7568: "w\x05\u7568", // 畨
+ 0x7569: "f\x06\u7569", // 畩
+ 0x756a: "f\a\u756a", // 番
+ 0x756b: "f\a\u756b", // 畫
+ 0x756c: "f\a\u756c", // 畬
+ 0x756d: "f\a\u756d", // 畭
+ 0x756e: "f\a\u756e", // 畮
+ 0x756f: "f\a\u756f", // 畯
+ 0x7570: "f\x06\u7570", // 異
+ 0x7571: "f\t\u7571", // 畱
+ 0x7572: "f\a\u7572", // 畲
+ 0x7573: "f\a\u7573", // 畳
+ 0x7574: "f\a\u7574", // 畴
+ 0x7575: "f\b\u7575", // 畵
+ 0x7576: "f\b\u7576", // 當
+ 0x7577: "f\b\u7577", // 畷
+ 0x7578: "f\b\u7578", // 畸
+ 0x7579: "f\b\u7579", // 畹
+ 0x757a: "f\b\u757a", // 畺
+ 0x757b: "f\t\u757b", // 畻
+ 0x757c: "f\t\u757c", // 畼
+ 0x757d: "f\t\u757d", // 畽
+ 0x757e: "f\n\u757e", // 畾
+ 0x757f: "f\n\u757f", // 畿
+ 0x7580: "f\v\u7580", // 疀
+ 0x7581: "f\v\u7581", // 疁
+ 0x7582: "f\v\u7582", // 疂
+ 0x7583: "f\f\u7583", // 疃
+ 0x7584: "f\f\u7584", // 疄
+ 0x7585: "f\r\u7585", // 疅
+ 0x7586: "f\x0e\u7586", // 疆
+ 0x7587: "f\x0e\u7587", // 疇
+ 0x7588: "f\x0f\u7588", // 疈
+ 0x7589: "f\x11\u7589", // 疉
+ 0x758a: "f\x11\u758a", // 疊
+ 0x758b: "g\x00\u758b", // 疋
+ 0x758c: "g\x03\u758c", // 疌
+ 0x758d: "g\x05\u758d", // 疍
+ 0x758e: "g\a\u758e", // 疎
+ 0x758f: "g\a\u758f", // 疏
+ 0x7590: "g\t\u7590", // 疐
+ 0x7591: "g\t\u7591", // 疑
+ 0x7592: "h\x00\u7592", // 疒
+ 0x7593: "h\x02\u7593", // 疓
+ 0x7594: "h\x02\u7594", // 疔
+ 0x7595: "h\x02\u7595", // 疕
+ 0x7596: "h\x02\u7596", // 疖
+ 0x7597: "h\x02\u7597", // 疗
+ 0x7598: "h\x03\u7598", // 疘
+ 0x7599: "h\x03\u7599", // 疙
+ 0x759a: "h\x03\u759a", // 疚
+ 0x759b: "h\x03\u759b", // 疛
+ 0x759c: "h\x03\u759c", // 疜
+ 0x759d: "h\x03\u759d", // 疝
+ 0x759e: "h\x03\u759e", // 疞
+ 0x759f: "h\x03\u759f", // 疟
+ 0x75a0: "h\x03\u75a0", // 疠
+ 0x75a1: "h\x04\u75a1", // 疡
+ 0x75a2: "h\x04\u75a2", // 疢
+ 0x75a3: "h\x04\u75a3", // 疣
+ 0x75a4: "h\x04\u75a4", // 疤
+ 0x75a5: "h\x04\u75a5", // 疥
+ 0x75a6: "h\x04\u75a6", // 疦
+ 0x75a7: "h\x04\u75a7", // 疧
+ 0x75a8: "h\x04\u75a8", // 疨
+ 0x75a9: "h\x04\u75a9", // 疩
+ 0x75aa: "h\x04\u75aa", // 疪
+ 0x75ab: "h\x04\u75ab", // 疫
+ 0x75ac: "h\x04\u75ac", // 疬
+ 0x75ad: "h\x04\u75ad", // 疭
+ 0x75ae: "h\x04\u75ae", // 疮
+ 0x75af: "h\x04\u75af", // 疯
+ 0x75b0: "h\x05\u75b0", // 疰
+ 0x75b1: "h\x05\u75b1", // 疱
+ 0x75b2: "h\x05\u75b2", // 疲
+ 0x75b3: "h\x05\u75b3", // 疳
+ 0x75b4: "h\x05\u75b4", // 疴
+ 0x75b5: "h\x05\u75b5", // 疵
+ 0x75b6: "h\x05\u75b6", // 疶
+ 0x75b7: "h\x05\u75b7", // 疷
+ 0x75b8: "h\x05\u75b8", // 疸
+ 0x75b9: "h\x05\u75b9", // 疹
+ 0x75ba: "h\x04\u75ba", // 疺
+ 0x75bb: "h\x05\u75bb", // 疻
+ 0x75bc: "h\x05\u75bc", // 疼
+ 0x75bd: "h\x05\u75bd", // 疽
+ 0x75be: "h\x05\u75be", // 疾
+ 0x75bf: "h\x05\u75bf", // 疿
+ 0x75c0: "h\x05\u75c0", // 痀
+ 0x75c1: "h\x05\u75c1", // 痁
+ 0x75c2: "h\x05\u75c2", // 痂
+ 0x75c3: "h\x05\u75c3", // 痃
+ 0x75c4: "h\x05\u75c4", // 痄
+ 0x75c5: "h\x05\u75c5", // 病
+ 0x75c6: "h\x05\u75c6", // 痆
+ 0x75c7: "h\x05\u75c7", // 症
+ 0x75c8: "h\x05\u75c8", // 痈
+ 0x75c9: "h\x05\u75c9", // 痉
+ 0x75ca: "h\x06\u75ca", // 痊
+ 0x75cb: "h\x06\u75cb", // 痋
+ 0x75cc: "h\x06\u75cc", // 痌
+ 0x75cd: "h\x06\u75cd", // 痍
+ 0x75ce: "h\x06\u75ce", // 痎
+ 0x75cf: "h\x06\u75cf", // 痏
+ 0x75d0: "h\x06\u75d0", // 痐
+ 0x75d1: "h\x06\u75d1", // 痑
+ 0x75d2: "h\x06\u75d2", // 痒
+ 0x75d3: "h\x06\u75d3", // 痓
+ 0x75d4: "h\x06\u75d4", // 痔
+ 0x75d5: "h\x06\u75d5", // 痕
+ 0x75d6: "h\x06\u75d6", // 痖
+ 0x75d7: "h\a\u75d7", // 痗
+ 0x75d8: "h\a\u75d8", // 痘
+ 0x75d9: "h\a\u75d9", // 痙
+ 0x75da: "h\a\u75da", // 痚
+ 0x75db: "h\a\u75db", // 痛
+ 0x75dc: "h\a\u75dc", // 痜
+ 0x75dd: "h\a\u75dd", // 痝
+ 0x75de: "h\a\u75de", // 痞
+ 0x75df: "h\a\u75df", // 痟
+ 0x75e0: "h\a\u75e0", // 痠
+ 0x75e1: "h\a\u75e1", // 痡
+ 0x75e2: "h\a\u75e2", // 痢
+ 0x75e3: "h\a\u75e3", // 痣
+ 0x75e4: "h\a\u75e4", // 痤
+ 0x75e5: "h\a\u75e5", // 痥
+ 0x75e6: "h\a\u75e6", // 痦
+ 0x75e7: "h\a\u75e7", // 痧
+ 0x75e8: "h\a\u75e8", // 痨
+ 0x75e9: "h\a\u75e9", // 痩
+ 0x75ea: "h\a\u75ea", // 痪
+ 0x75eb: "h\a\u75eb", // 痫
+ 0x75ec: "h\b\u75ec", // 痬
+ 0x75ed: "h\b\u75ed", // 痭
+ 0x75ee: "h\b\u75ee", // 痮
+ 0x75ef: "h\b\u75ef", // 痯
+ 0x75f0: "h\b\u75f0", // 痰
+ 0x75f1: "h\b\u75f1", // 痱
+ 0x75f2: "h\b\u75f2", // 痲
+ 0x75f3: "h\b\u75f3", // 痳
+ 0x75f4: "h\b\u75f4", // 痴
+ 0x75f5: "h\b\u75f5", // 痵
+ 0x75f6: "h\b\u75f6", // 痶
+ 0x75f7: "h\b\u75f7", // 痷
+ 0x75f8: "h\b\u75f8", // 痸
+ 0x75f9: "h\b\u75f9", // 痹
+ 0x75fa: "h\b\u75fa", // 痺
+ 0x75fb: "h\b\u75fb", // 痻
+ 0x75fc: "h\b\u75fc", // 痼
+ 0x75fd: "h\b\u75fd", // 痽
+ 0x75fe: "h\b\u75fe", // 痾
+ 0x75ff: "h\b\u75ff", // 痿
+ 0x7600: "h\b\u7600", // 瘀
+ 0x7601: "h\b\u7601", // 瘁
+ 0x7602: "h\b\u7602", // 瘂
+ 0x7603: "h\b\u7603", // 瘃
+ 0x7604: "h\b\u7604", // 瘄
+ 0x7605: "h\b\u7605", // 瘅
+ 0x7606: "h\b\u7606", // 瘆
+ 0x7607: "h\t\u7607", // 瘇
+ 0x7608: "h\t\u7608", // 瘈
+ 0x7609: "h\t\u7609", // 瘉
+ 0x760a: "h\t\u760a", // 瘊
+ 0x760b: "h\t\u760b", // 瘋
+ 0x760c: "h\t\u760c", // 瘌
+ 0x760d: "h\t\u760d", // 瘍
+ 0x760e: "h\t\u760e", // 瘎
+ 0x760f: "h\t\u760f", // 瘏
+ 0x7610: "h\t\u7610", // 瘐
+ 0x7611: "h\t\u7611", // 瘑
+ 0x7612: "h\t\u7612", // 瘒
+ 0x7613: "h\t\u7613", // 瘓
+ 0x7614: "h\t\u7614", // 瘔
+ 0x7615: "h\t\u7615", // 瘕
+ 0x7616: "h\t\u7616", // 瘖
+ 0x7617: "h\t\u7617", // 瘗
+ 0x7618: "h\t\u7618", // 瘘
+ 0x7619: "h\n\u7619", // 瘙
+ 0x761a: "h\n\u761a", // 瘚
+ 0x761b: "h\n\u761b", // 瘛
+ 0x761c: "h\n\u761c", // 瘜
+ 0x761d: "h\n\u761d", // 瘝
+ 0x761e: "h\n\u761e", // 瘞
+ 0x761f: "h\t\u761f", // 瘟
+ 0x7620: "h\n\u7620", // 瘠
+ 0x7621: "h\n\u7621", // 瘡
+ 0x7622: "h\n\u7622", // 瘢
+ 0x7623: "h\n\u7623", // 瘣
+ 0x7624: "h\n\u7624", // 瘤
+ 0x7625: "h\n\u7625", // 瘥
+ 0x7626: "h\n\u7626", // 瘦
+ 0x7627: "h\t\u7627", // 瘧
+ 0x7628: "h\n\u7628", // 瘨
+ 0x7629: "h\n\u7629", // 瘩
+ 0x762a: "h\n\u762a", // 瘪
+ 0x762b: "h\n\u762b", // 瘫
+ 0x762c: "h\v\u762c", // 瘬
+ 0x762d: "h\v\u762d", // 瘭
+ 0x762e: "h\v\u762e", // 瘮
+ 0x762f: "h\v\u762f", // 瘯
+ 0x7630: "h\v\u7630", // 瘰
+ 0x7631: "h\v\u7631", // 瘱
+ 0x7632: "h\v\u7632", // 瘲
+ 0x7633: "h\v\u7633", // 瘳
+ 0x7634: "h\v\u7634", // 瘴
+ 0x7635: "h\v\u7635", // 瘵
+ 0x7636: "h\v\u7636", // 瘶
+ 0x7637: "h\v\u7637", // 瘷
+ 0x7638: "h\v\u7638", // 瘸
+ 0x7639: "h\v\u7639", // 瘹
+ 0x763a: "h\v\u763a", // 瘺
+ 0x763b: "h\v\u763b", // 瘻
+ 0x763c: "h\v\u763c", // 瘼
+ 0x763d: "h\v\u763d", // 瘽
+ 0x763e: "h\v\u763e", // 瘾
+ 0x763f: "h\v\u763f", // 瘿
+ 0x7640: "h\f\u7640", // 癀
+ 0x7641: "h\f\u7641", // 癁
+ 0x7642: "h\f\u7642", // 療
+ 0x7643: "h\f\u7643", // 癃
+ 0x7644: "h\f\u7644", // 癄
+ 0x7645: "h\f\u7645", // 癅
+ 0x7646: "h\f\u7646", // 癆
+ 0x7647: "h\f\u7647", // 癇
+ 0x7648: "h\f\u7648", // 癈
+ 0x7649: "h\f\u7649", // 癉
+ 0x764a: "h\v\u764a", // 癊
+ 0x764b: "h\f\u764b", // 癋
+ 0x764c: "h\f\u764c", // 癌
+ 0x764d: "h\f\u764d", // 癍
+ 0x764e: "h\f\u764e", // 癎
+ 0x764f: "h\r\u764f", // 癏
+ 0x7650: "h\r\u7650", // 癐
+ 0x7651: "h\r\u7651", // 癑
+ 0x7652: "h\r\u7652", // 癒
+ 0x7653: "h\r\u7653", // 癓
+ 0x7654: "h\r\u7654", // 癔
+ 0x7655: "h\r\u7655", // 癕
+ 0x7656: "h\r\u7656", // 癖
+ 0x7657: "h\r\u7657", // 癗
+ 0x7658: "h\r\u7658", // 癘
+ 0x7659: "h\r\u7659", // 癙
+ 0x765a: "h\r\u765a", // 癚
+ 0x765b: "h\r\u765b", // 癛
+ 0x765c: "h\r\u765c", // 癜
+ 0x765d: "h\r\u765d", // 癝
+ 0x765e: "h\r\u765e", // 癞
+ 0x765f: "h\x0e\u765f", // 癟
+ 0x7660: "h\x0e\u7660", // 癠
+ 0x7661: "h\x0e\u7661", // 癡
+ 0x7662: "h\x0f\u7662", // 癢
+ 0x7663: "h\x0e\u7663", // 癣
+ 0x7664: "h\x0f\u7664", // 癤
+ 0x7665: "h\x0f\u7665", // 癥
+ 0x7666: "h\x0f\u7666", // 癦
+ 0x7667: "h\x10\u7667", // 癧
+ 0x7668: "h\x10\u7668", // 癨
+ 0x7669: "h\x10\u7669", // 癩
+ 0x766a: "h\x10\u766a", // 癪
+ 0x766b: "h\x10\u766b", // 癫
+ 0x766c: "h\x11\u766c", // 癬
+ 0x766d: "h\x11\u766d", // 癭
+ 0x766e: "h\x11\u766e", // 癮
+ 0x766f: "h\x12\u766f", // 癯
+ 0x7670: "h\x12\u7670", // 癰
+ 0x7671: "h\x13\u7671", // 癱
+ 0x7672: "h\x13\u7672", // 癲
+ 0x7673: "h\x15\u7673", // 癳
+ 0x7674: "h\x17\u7674", // 癴
+ 0x7675: "h\x19\u7675", // 癵
+ 0x7676: "i\x00\u7676", // 癶
+ 0x7677: "i\x03\u7677", // 癷
+ 0x7678: "i\x04\u7678", // 癸
+ 0x7679: "i\x04\u7679", // 癹
+ 0x767a: "i\x04\u767a", // 発
+ 0x767b: "i\a\u767b", // 登
+ 0x767c: "i\a\u767c", // 發
+ 0x767d: "j\x00\u767d", // 白
+ 0x767e: "j\x01\u767e", // 百
+ 0x767f: "j\x01\u767f", // 癿
+ 0x7680: "j\x02\u7680", // 皀
+ 0x7681: "j\x02\u7681", // 皁
+ 0x7682: "j\x02\u7682", // 皂
+ 0x7683: "j\x02\u7683", // 皃
+ 0x7684: "j\x03\u7684", // 的
+ 0x7685: "j\x04\u7685", // 皅
+ 0x7686: "j\x04\u7686", // 皆
+ 0x7687: "j\x04\u7687", // 皇
+ 0x7688: "j\x04\u7688", // 皈
+ 0x7689: "j\x05\u7689", // 皉
+ 0x768a: "j\x05\u768a", // 皊
+ 0x768b: "j\x05\u768b", // 皋
+ 0x768c: "j\x05\u768c", // 皌
+ 0x768d: "j\x05\u768d", // 皍
+ 0x768e: "j\x06\u768e", // 皎
+ 0x768f: "j\x06\u768f", // 皏
+ 0x7690: "j\x06\u7690", // 皐
+ 0x7691: "j\x06\u7691", // 皑
+ 0x7692: "j\a\u7692", // 皒
+ 0x7693: "j\a\u7693", // 皓
+ 0x7694: "j\a\u7694", // 皔
+ 0x7695: "j\a\u7695", // 皕
+ 0x7696: "j\a\u7696", // 皖
+ 0x7697: "j\b\u7697", // 皗
+ 0x7698: "j\b\u7698", // 皘
+ 0x7699: "j\b\u7699", // 皙
+ 0x769a: "j\n\u769a", // 皚
+ 0x769b: "j\n\u769b", // 皛
+ 0x769c: "j\n\u769c", // 皜
+ 0x769d: "j\n\u769d", // 皝
+ 0x769e: "j\n\u769e", // 皞
+ 0x769f: "j\v\u769f", // 皟
+ 0x76a0: "j\v\u76a0", // 皠
+ 0x76a1: "j\v\u76a1", // 皡
+ 0x76a2: "j\f\u76a2", // 皢
+ 0x76a3: "j\f\u76a3", // 皣
+ 0x76a4: "j\f\u76a4", // 皤
+ 0x76a5: "j\f\u76a5", // 皥
+ 0x76a6: "j\r\u76a6", // 皦
+ 0x76a7: "j\r\u76a7", // 皧
+ 0x76a8: "j\r\u76a8", // 皨
+ 0x76a9: "j\x0e\u76a9", // 皩
+ 0x76aa: "j\x0f\u76aa", // 皪
+ 0x76ab: "j\x0f\u76ab", // 皫
+ 0x76ac: "j\x10\u76ac", // 皬
+ 0x76ad: "j\x12\u76ad", // 皭
+ 0x76ae: "k\x00\u76ae", // 皮
+ 0x76af: "k\x03\u76af", // 皯
+ 0x76b0: "k\x05\u76b0", // 皰
+ 0x76b1: "k\x05\u76b1", // 皱
+ 0x76b2: "k\x06\u76b2", // 皲
+ 0x76b3: "k\a\u76b3", // 皳
+ 0x76b4: "k\a\u76b4", // 皴
+ 0x76b5: "k\b\u76b5", // 皵
+ 0x76b6: "k\t\u76b6", // 皶
+ 0x76b7: "k\t\u76b7", // 皷
+ 0x76b8: "k\t\u76b8", // 皸
+ 0x76b9: "k\t\u76b9", // 皹
+ 0x76ba: "k\n\u76ba", // 皺
+ 0x76bb: "k\v\u76bb", // 皻
+ 0x76bc: "k\f\u76bc", // 皼
+ 0x76bd: "k\r\u76bd", // 皽
+ 0x76be: "k\x0f\u76be", // 皾
+ 0x76bf: "l\x00\u76bf", // 皿
+ 0x76c0: "l\x02\u76c0", // 盀
+ 0x76c1: "l\x02\u76c1", // 盁
+ 0x76c2: "l\x03\u76c2", // 盂
+ 0x76c3: "l\x04\u76c3", // 盃
+ 0x76c4: "l\x04\u76c4", // 盄
+ 0x76c5: "l\x04\u76c5", // 盅
+ 0x76c6: "l\x04\u76c6", // 盆
+ 0x76c7: "l\x04\u76c7", // 盇
+ 0x76c8: "l\x04\u76c8", // 盈
+ 0x76c9: "l\x05\u76c9", // 盉
+ 0x76ca: "l\x05\u76ca", // 益
+ 0x76cb: "l\x05\u76cb", // 盋
+ 0x76cc: "l\x05\u76cc", // 盌
+ 0x76cd: "l\x05\u76cd", // 盍
+ 0x76ce: "l\x05\u76ce", // 盎
+ 0x76cf: "l\x05\u76cf", // 盏
+ 0x76d0: "l\x05\u76d0", // 盐
+ 0x76d1: "l\x05\u76d1", // 监
+ 0x76d2: "l\x06\u76d2", // 盒
+ 0x76d3: "l\x06\u76d3", // 盓
+ 0x76d4: "l\x06\u76d4", // 盔
+ 0x76d5: "l\x06\u76d5", // 盕
+ 0x76d6: "l\x06\u76d6", // 盖
+ 0x76d7: "l\x06\u76d7", // 盗
+ 0x76d8: "l\x06\u76d8", // 盘
+ 0x76d9: "l\a\u76d9", // 盙
+ 0x76da: "l\a\u76da", // 盚
+ 0x76db: "l\x06\u76db", // 盛
+ 0x76dc: "l\a\u76dc", // 盜
+ 0x76dd: "l\b\u76dd", // 盝
+ 0x76de: "l\b\u76de", // 盞
+ 0x76df: "l\b\u76df", // 盟
+ 0x76e0: "l\t\u76e0", // 盠
+ 0x76e1: "l\t\u76e1", // 盡
+ 0x76e2: "l\t\u76e2", // 盢
+ 0x76e3: "l\t\u76e3", // 監
+ 0x76e4: "l\n\u76e4", // 盤
+ 0x76e5: "l\v\u76e5", // 盥
+ 0x76e6: "l\v\u76e6", // 盦
+ 0x76e7: "l\v\u76e7", // 盧
+ 0x76e8: "l\f\u76e8", // 盨
+ 0x76e9: "l\f\u76e9", // 盩
+ 0x76ea: "l\f\u76ea", // 盪
+ 0x76eb: "l\r\u76eb", // 盫
+ 0x76ec: "l\r\u76ec", // 盬
+ 0x76ed: "l\x0f\u76ed", // 盭
+ 0x76ee: "m\x00\u76ee", // 目
+ 0x76ef: "m\x02\u76ef", // 盯
+ 0x76f0: "m\x03\u76f0", // 盰
+ 0x76f1: "m\x03\u76f1", // 盱
+ 0x76f2: "m\x03\u76f2", // 盲
+ 0x76f3: "m\x03\u76f3", // 盳
+ 0x76f4: "m\x03\u76f4", // 直
+ 0x76f5: "m\x03\u76f5", // 盵
+ 0x76f6: "m\x04\u76f6", // 盶
+ 0x76f7: "m\x04\u76f7", // 盷
+ 0x76f8: "m\x04\u76f8", // 相
+ 0x76f9: "m\x04\u76f9", // 盹
+ 0x76fa: "m\x04\u76fa", // 盺
+ 0x76fb: "m\x04\u76fb", // 盻
+ 0x76fc: "m\x04\u76fc", // 盼
+ 0x76fd: "m\x04\u76fd", // 盽
+ 0x76fe: "m\x04\u76fe", // 盾
+ 0x76ff: "m\x04\u76ff", // 盿
+ 0x7700: "m\x04\u7700", // 眀
+ 0x7701: "m\x04\u7701", // 省
+ 0x7702: "m\x04\u7702", // 眂
+ 0x7703: "m\x04\u7703", // 眃
+ 0x7704: "m\x04\u7704", // 眄
+ 0x7705: "m\x04\u7705", // 眅
+ 0x7706: "m\x04\u7706", // 眆
+ 0x7707: "m\x04\u7707", // 眇
+ 0x7708: "m\x04\u7708", // 眈
+ 0x7709: "m\x04\u7709", // 眉
+ 0x770a: "m\x04\u770a", // 眊
+ 0x770b: "m\x04\u770b", // 看
+ 0x770c: "m\x04\u770c", // 県
+ 0x770d: "m\x04\u770d", // 眍
+ 0x770e: "m\x05\u770e", // 眎
+ 0x770f: "m\x05\u770f", // 眏
+ 0x7710: "m\x05\u7710", // 眐
+ 0x7711: "m\x05\u7711", // 眑
+ 0x7712: "m\x05\u7712", // 眒
+ 0x7713: "m\x05\u7713", // 眓
+ 0x7714: "m\x05\u7714", // 眔
+ 0x7715: "m\x05\u7715", // 眕
+ 0x7716: "m\x05\u7716", // 眖
+ 0x7717: "m\x05\u7717", // 眗
+ 0x7718: "m\x05\u7718", // 眘
+ 0x7719: "m\x05\u7719", // 眙
+ 0x771a: "m\x05\u771a", // 眚
+ 0x771b: "m\x05\u771b", // 眛
+ 0x771c: "m\x05\u771c", // 眜
+ 0x771d: "m\x05\u771d", // 眝
+ 0x771e: "m\x05\u771e", // 眞
+ 0x771f: "m\x05\u771f", // 真
+ 0x7720: "m\x05\u7720", // 眠
+ 0x7721: "m\x05\u7721", // 眡
+ 0x7722: "m\x05\u7722", // 眢
+ 0x7723: "m\x05\u7723", // 眣
+ 0x7724: "m\x05\u7724", // 眤
+ 0x7725: "m\x05\u7725", // 眥
+ 0x7726: "m\x05\u7726", // 眦
+ 0x7727: "m\x05\u7727", // 眧
+ 0x7728: "m\x05\u7728", // 眨
+ 0x7729: "m\x05\u7729", // 眩
+ 0x772a: "m\x05\u772a", // 眪
+ 0x772b: "m\x05\u772b", // 眫
+ 0x772c: "m\x05\u772c", // 眬
+ 0x772d: "m\x06\u772d", // 眭
+ 0x772e: "m\x06\u772e", // 眮
+ 0x772f: "m\x06\u772f", // 眯
+ 0x7730: "m\x06\u7730", // 眰
+ 0x7731: "m\x06\u7731", // 眱
+ 0x7732: "m\x06\u7732", // 眲
+ 0x7733: "m\x06\u7733", // 眳
+ 0x7734: "m\x06\u7734", // 眴
+ 0x7735: "m\x06\u7735", // 眵
+ 0x7736: "m\x06\u7736", // 眶
+ 0x7737: "m\x06\u7737", // 眷
+ 0x7738: "m\x06\u7738", // 眸
+ 0x7739: "m\x06\u7739", // 眹
+ 0x773a: "m\x06\u773a", // 眺
+ 0x773b: "m\x06\u773b", // 眻
+ 0x773c: "m\x06\u773c", // 眼
+ 0x773d: "m\x06\u773d", // 眽
+ 0x773e: "m\x06\u773e", // 眾
+ 0x773f: "m\x05\u773f", // 眿
+ 0x7740: "m\a\u7740", // 着
+ 0x7741: "m\x06\u7741", // 睁
+ 0x7742: "m\a\u7742", // 睂
+ 0x7743: "m\a\u7743", // 睃
+ 0x7744: "m\a\u7744", // 睄
+ 0x7745: "m\a\u7745", // 睅
+ 0x7746: "m\a\u7746", // 睆
+ 0x7747: "m\a\u7747", // 睇
+ 0x7748: "m\a\u7748", // 睈
+ 0x7749: "m\a\u7749", // 睉
+ 0x774a: "m\a\u774a", // 睊
+ 0x774b: "m\a\u774b", // 睋
+ 0x774c: "m\a\u774c", // 睌
+ 0x774d: "m\a\u774d", // 睍
+ 0x774e: "m\a\u774e", // 睎
+ 0x774f: "m\a\u774f", // 睏
+ 0x7750: "m\a\u7750", // 睐
+ 0x7751: "m\a\u7751", // 睑
+ 0x7752: "m\b\u7752", // 睒
+ 0x7753: "m\b\u7753", // 睓
+ 0x7754: "m\b\u7754", // 睔
+ 0x7755: "m\b\u7755", // 睕
+ 0x7756: "m\b\u7756", // 睖
+ 0x7757: "m\b\u7757", // 睗
+ 0x7758: "m\b\u7758", // 睘
+ 0x7759: "m\b\u7759", // 睙
+ 0x775a: "m\b\u775a", // 睚
+ 0x775b: "m\b\u775b", // 睛
+ 0x775c: "m\b\u775c", // 睜
+ 0x775d: "m\b\u775d", // 睝
+ 0x775e: "m\b\u775e", // 睞
+ 0x775f: "m\b\u775f", // 睟
+ 0x7760: "m\b\u7760", // 睠
+ 0x7761: "m\t\u7761", // 睡
+ 0x7762: "m\b\u7762", // 睢
+ 0x7763: "m\b\u7763", // 督
+ 0x7764: "m\b\u7764", // 睤
+ 0x7765: "m\b\u7765", // 睥
+ 0x7766: "m\b\u7766", // 睦
+ 0x7767: "m\b\u7767", // 睧
+ 0x7768: "m\b\u7768", // 睨
+ 0x7769: "m\b\u7769", // 睩
+ 0x776a: "m\b\u776a", // 睪
+ 0x776b: "m\b\u776b", // 睫
+ 0x776c: "m\b\u776c", // 睬
+ 0x776d: "m\b\u776d", // 睭
+ 0x776e: "m\t\u776e", // 睮
+ 0x776f: "m\t\u776f", // 睯
+ 0x7770: "m\t\u7770", // 睰
+ 0x7771: "m\t\u7771", // 睱
+ 0x7772: "m\t\u7772", // 睲
+ 0x7773: "m\t\u7773", // 睳
+ 0x7774: "m\t\u7774", // 睴
+ 0x7775: "m\t\u7775", // 睵
+ 0x7776: "m\t\u7776", // 睶
+ 0x7777: "m\t\u7777", // 睷
+ 0x7778: "m\t\u7778", // 睸
+ 0x7779: "m\t\u7779", // 睹
+ 0x777a: "m\t\u777a", // 睺
+ 0x777b: "m\t\u777b", // 睻
+ 0x777c: "m\t\u777c", // 睼
+ 0x777d: "m\t\u777d", // 睽
+ 0x777e: "m\t\u777e", // 睾
+ 0x777f: "m\t\u777f", // 睿
+ 0x7780: "m\t\u7780", // 瞀
+ 0x7781: "m\t\u7781", // 瞁
+ 0x7782: "m\t\u7782", // 瞂
+ 0x7783: "m\t\u7783", // 瞃
+ 0x7784: "m\t\u7784", // 瞄
+ 0x7785: "m\t\u7785", // 瞅
+ 0x7786: "m\t\u7786", // 瞆
+ 0x7787: "m\n\u7787", // 瞇
+ 0x7788: "m\n\u7788", // 瞈
+ 0x7789: "m\n\u7789", // 瞉
+ 0x778a: "m\n\u778a", // 瞊
+ 0x778b: "m\n\u778b", // 瞋
+ 0x778c: "m\n\u778c", // 瞌
+ 0x778d: "m\n\u778d", // 瞍
+ 0x778e: "m\n\u778e", // 瞎
+ 0x778f: "m\n\u778f", // 瞏
+ 0x7790: "m\n\u7790", // 瞐
+ 0x7791: "m\n\u7791", // 瞑
+ 0x7792: "m\n\u7792", // 瞒
+ 0x7793: "m\n\u7793", // 瞓
+ 0x7794: "m\v\u7794", // 瞔
+ 0x7795: "m\v\u7795", // 瞕
+ 0x7796: "m\v\u7796", // 瞖
+ 0x7797: "m\v\u7797", // 瞗
+ 0x7798: "m\v\u7798", // 瞘
+ 0x7799: "m\v\u7799", // 瞙
+ 0x779a: "m\v\u779a", // 瞚
+ 0x779b: "m\v\u779b", // 瞛
+ 0x779c: "m\v\u779c", // 瞜
+ 0x779d: "m\v\u779d", // 瞝
+ 0x779e: "m\v\u779e", // 瞞
+ 0x779f: "m\v\u779f", // 瞟
+ 0x77a0: "m\v\u77a0", // 瞠
+ 0x77a1: "m\v\u77a1", // 瞡
+ 0x77a2: "m\v\u77a2", // 瞢
+ 0x77a3: "m\v\u77a3", // 瞣
+ 0x77a4: "m\f\u77a4", // 瞤
+ 0x77a5: "m\f\u77a5", // 瞥
+ 0x77a6: "m\f\u77a6", // 瞦
+ 0x77a7: "m\f\u77a7", // 瞧
+ 0x77a8: "m\f\u77a8", // 瞨
+ 0x77a9: "m\f\u77a9", // 瞩
+ 0x77aa: "m\f\u77aa", // 瞪
+ 0x77ab: "m\f\u77ab", // 瞫
+ 0x77ac: "m\f\u77ac", // 瞬
+ 0x77ad: "m\f\u77ad", // 瞭
+ 0x77ae: "m\f\u77ae", // 瞮
+ 0x77af: "m\f\u77af", // 瞯
+ 0x77b0: "m\f\u77b0", // 瞰
+ 0x77b1: "m\f\u77b1", // 瞱
+ 0x77b2: "m\f\u77b2", // 瞲
+ 0x77b3: "m\f\u77b3", // 瞳
+ 0x77b4: "m\f\u77b4", // 瞴
+ 0x77b5: "m\f\u77b5", // 瞵
+ 0x77b6: "m\f\u77b6", // 瞶
+ 0x77b7: "m\f\u77b7", // 瞷
+ 0x77b8: "m\r\u77b8", // 瞸
+ 0x77b9: "m\r\u77b9", // 瞹
+ 0x77ba: "m\r\u77ba", // 瞺
+ 0x77bb: "m\r\u77bb", // 瞻
+ 0x77bc: "m\r\u77bc", // 瞼
+ 0x77bd: "m\r\u77bd", // 瞽
+ 0x77be: "m\r\u77be", // 瞾
+ 0x77bf: "m\r\u77bf", // 瞿
+ 0x77c0: "m\r\u77c0", // 矀
+ 0x77c1: "m\r\u77c1", // 矁
+ 0x77c2: "m\r\u77c2", // 矂
+ 0x77c3: "m\x0e\u77c3", // 矃
+ 0x77c4: "m\x0e\u77c4", // 矄
+ 0x77c5: "m\x0e\u77c5", // 矅
+ 0x77c6: "m\x0e\u77c6", // 矆
+ 0x77c7: "m\x0e\u77c7", // 矇
+ 0x77c8: "m\x0e\u77c8", // 矈
+ 0x77c9: "m\x0e\u77c9", // 矉
+ 0x77ca: "m\x0e\u77ca", // 矊
+ 0x77cb: "m\x0f\u77cb", // 矋
+ 0x77cc: "m\x0f\u77cc", // 矌
+ 0x77cd: "m\x0f\u77cd", // 矍
+ 0x77ce: "m\x0f\u77ce", // 矎
+ 0x77cf: "m\x0f\u77cf", // 矏
+ 0x77d0: "m\x10\u77d0", // 矐
+ 0x77d1: "m\x10\u77d1", // 矑
+ 0x77d2: "m\x10\u77d2", // 矒
+ 0x77d3: "m\x10\u77d3", // 矓
+ 0x77d4: "m\x12\u77d4", // 矔
+ 0x77d5: "m\x13\u77d5", // 矕
+ 0x77d6: "m\x15\u77d6", // 矖
+ 0x77d7: "m\x13\u77d7", // 矗
+ 0x77d8: "m\x14\u77d8", // 矘
+ 0x77d9: "m\x14\u77d9", // 矙
+ 0x77da: "m\x15\u77da", // 矚
+ 0x77db: "n\x00\u77db", // 矛
+ 0x77dc: "n\x04\u77dc", // 矜
+ 0x77dd: "n\x05\u77dd", // 矝
+ 0x77de: "n\a\u77de", // 矞
+ 0x77df: "n\a\u77df", // 矟
+ 0x77e0: "n\b\u77e0", // 矠
+ 0x77e1: "n\x14\u77e1", // 矡
+ 0x77e2: "o\x00\u77e2", // 矢
+ 0x77e3: "o\x02\u77e3", // 矣
+ 0x77e4: "o\x03\u77e4", // 矤
+ 0x77e5: "o\x03\u77e5", // 知
+ 0x77e6: "o\x04\u77e6", // 矦
+ 0x77e7: "o\x04\u77e7", // 矧
+ 0x77e8: "o\x04\u77e8", // 矨
+ 0x77e9: "o\x05\u77e9", // 矩
+ 0x77ea: "o\x06\u77ea", // 矪
+ 0x77eb: "o\x06\u77eb", // 矫
+ 0x77ec: "o\a\u77ec", // 矬
+ 0x77ed: "o\a\u77ed", // 短
+ 0x77ee: "o\b\u77ee", // 矮
+ 0x77ef: "o\f\u77ef", // 矯
+ 0x77f0: "o\f\u77f0", // 矰
+ 0x77f1: "o\x0e\u77f1", // 矱
+ 0x77f2: "o\x0f\u77f2", // 矲
+ 0x77f3: "p\x00\u77f3", // 石
+ 0x77f4: "p\x02\u77f4", // 矴
+ 0x77f5: "p\x02\u77f5", // 矵
+ 0x77f6: "p\x02\u77f6", // 矶
+ 0x77f7: "p\x03\u77f7", // 矷
+ 0x77f8: "p\x03\u77f8", // 矸
+ 0x77f9: "p\x03\u77f9", // 矹
+ 0x77fa: "p\x03\u77fa", // 矺
+ 0x77fb: "p\x03\u77fb", // 矻
+ 0x77fc: "p\x03\u77fc", // 矼
+ 0x77fd: "p\x03\u77fd", // 矽
+ 0x77fe: "p\x03\u77fe", // 矾
+ 0x77ff: "p\x03\u77ff", // 矿
+ 0x7800: "p\x03\u7800", // 砀
+ 0x7801: "p\x03\u7801", // 码
+ 0x7802: "p\x04\u7802", // 砂
+ 0x7803: "p\x04\u7803", // 砃
+ 0x7804: "p\x04\u7804", // 砄
+ 0x7805: "p\x04\u7805", // 砅
+ 0x7806: "p\x04\u7806", // 砆
+ 0x7807: "p\x04\u7807", // 砇
+ 0x7808: "p\x04\u7808", // 砈
+ 0x7809: "p\x04\u7809", // 砉
+ 0x780a: "p\x04\u780a", // 砊
+ 0x780b: "p\x04\u780b", // 砋
+ 0x780c: "p\x04\u780c", // 砌
+ 0x780d: "p\x04\u780d", // 砍
+ 0x780e: "p\x04\u780e", // 砎
+ 0x780f: "p\x04\u780f", // 砏
+ 0x7810: "p\x04\u7810", // 砐
+ 0x7811: "p\x04\u7811", // 砑
+ 0x7812: "p\x04\u7812", // 砒
+ 0x7813: "p\x04\u7813", // 砓
+ 0x7814: "p\x04\u7814", // 研
+ 0x7815: "p\x04\u7815", // 砕
+ 0x7816: "p\x04\u7816", // 砖
+ 0x7817: "p\x04\u7817", // 砗
+ 0x7818: "p\x04\u7818", // 砘
+ 0x7819: "p\x04\u7819", // 砙
+ 0x781a: "p\x04\u781a", // 砚
+ 0x781b: "p\x04\u781b", // 砛
+ 0x781c: "p\x04\u781c", // 砜
+ 0x781d: "p\x05\u781d", // 砝
+ 0x781e: "p\x05\u781e", // 砞
+ 0x781f: "p\x05\u781f", // 砟
+ 0x7820: "p\x05\u7820", // 砠
+ 0x7821: "p\x05\u7821", // 砡
+ 0x7822: "p\x05\u7822", // 砢
+ 0x7823: "p\x05\u7823", // 砣
+ 0x7824: "p\x05\u7824", // 砤
+ 0x7825: "p\x05\u7825", // 砥
+ 0x7826: "p\x05\u7826", // 砦
+ 0x7827: "p\x05\u7827", // 砧
+ 0x7828: "p\x05\u7828", // 砨
+ 0x7829: "p\x05\u7829", // 砩
+ 0x782a: "p\x05\u782a", // 砪
+ 0x782b: "p\x05\u782b", // 砫
+ 0x782c: "p\x05\u782c", // 砬
+ 0x782d: "p\x05\u782d", // 砭
+ 0x782e: "p\x05\u782e", // 砮
+ 0x782f: "p\x05\u782f", // 砯
+ 0x7830: "p\x05\u7830", // 砰
+ 0x7831: "p\x05\u7831", // 砱
+ 0x7832: "p\x05\u7832", // 砲
+ 0x7833: "p\x05\u7833", // 砳
+ 0x7834: "p\x05\u7834", // 破
+ 0x7835: "p\x05\u7835", // 砵
+ 0x7836: "p\x05\u7836", // 砶
+ 0x7837: "p\x05\u7837", // 砷
+ 0x7838: "p\x05\u7838", // 砸
+ 0x7839: "p\x05\u7839", // 砹
+ 0x783a: "p\x05\u783a", // 砺
+ 0x783b: "p\x05\u783b", // 砻
+ 0x783c: "p\x05\u783c", // 砼
+ 0x783d: "p\x05\u783d", // 砽
+ 0x783e: "p\x05\u783e", // 砾
+ 0x783f: "p\x05\u783f", // 砿
+ 0x7840: "p\x05\u7840", // 础
+ 0x7841: "p\x05\u7841", // 硁
+ 0x7842: "p\x06\u7842", // 硂
+ 0x7843: "p\x06\u7843", // 硃
+ 0x7844: "p\x06\u7844", // 硄
+ 0x7845: "p\x06\u7845", // 硅
+ 0x7846: "p\x06\u7846", // 硆
+ 0x7847: "p\x06\u7847", // 硇
+ 0x7848: "p\x06\u7848", // 硈
+ 0x7849: "p\x06\u7849", // 硉
+ 0x784a: "p\x06\u784a", // 硊
+ 0x784b: "p\x06\u784b", // 硋
+ 0x784c: "p\x06\u784c", // 硌
+ 0x784d: "p\x06\u784d", // 硍
+ 0x784e: "p\x06\u784e", // 硎
+ 0x784f: "p\x06\u784f", // 硏
+ 0x7850: "p\x06\u7850", // 硐
+ 0x7851: "p\x06\u7851", // 硑
+ 0x7852: "p\x06\u7852", // 硒
+ 0x7853: "p\x06\u7853", // 硓
+ 0x7854: "p\x06\u7854", // 硔
+ 0x7855: "p\x06\u7855", // 硕
+ 0x7856: "p\x06\u7856", // 硖
+ 0x7857: "p\x06\u7857", // 硗
+ 0x7858: "p\x06\u7858", // 硘
+ 0x7859: "p\x06\u7859", // 硙
+ 0x785a: "p\x06\u785a", // 硚
+ 0x785b: "p\x06\u785b", // 硛
+ 0x785c: "p\a\u785c", // 硜
+ 0x785d: "p\a\u785d", // 硝
+ 0x785e: "p\a\u785e", // 硞
+ 0x785f: "p\a\u785f", // 硟
+ 0x7860: "p\a\u7860", // 硠
+ 0x7861: "p\a\u7861", // 硡
+ 0x7862: "p\a\u7862", // 硢
+ 0x7863: "p\a\u7863", // 硣
+ 0x7864: "p\a\u7864", // 硤
+ 0x7865: "p\a\u7865", // 硥
+ 0x7866: "p\a\u7866", // 硦
+ 0x7867: "p\a\u7867", // 硧
+ 0x7868: "p\a\u7868", // 硨
+ 0x7869: "p\a\u7869", // 硩
+ 0x786a: "p\a\u786a", // 硪
+ 0x786b: "p\a\u786b", // 硫
+ 0x786c: "p\a\u786c", // 硬
+ 0x786d: "p\a\u786d", // 硭
+ 0x786e: "p\a\u786e", // 确
+ 0x786f: "p\a\u786f", // 硯
+ 0x7870: "p\a\u7870", // 硰
+ 0x7871: "p\a\u7871", // 硱
+ 0x7872: "p\a\u7872", // 硲
+ 0x7873: "p\a\u7873", // 硳
+ 0x7874: "p\a\u7874", // 硴
+ 0x7875: "p\a\u7875", // 硵
+ 0x7876: "p\a\u7876", // 硶
+ 0x7877: "p\a\u7877", // 硷
+ 0x7878: "p\b\u7878", // 硸
+ 0x7879: "p\b\u7879", // 硹
+ 0x787a: "p\b\u787a", // 硺
+ 0x787b: "p\b\u787b", // 硻
+ 0x787c: "p\b\u787c", // 硼
+ 0x787d: "p\b\u787d", // 硽
+ 0x787e: "p\t\u787e", // 硾
+ 0x787f: "p\b\u787f", // 硿
+ 0x7880: "p\b\u7880", // 碀
+ 0x7881: "p\b\u7881", // 碁
+ 0x7882: "p\b\u7882", // 碂
+ 0x7883: "p\b\u7883", // 碃
+ 0x7884: "p\b\u7884", // 碄
+ 0x7885: "p\b\u7885", // 碅
+ 0x7886: "p\b\u7886", // 碆
+ 0x7887: "p\b\u7887", // 碇
+ 0x7888: "p\b\u7888", // 碈
+ 0x7889: "p\b\u7889", // 碉
+ 0x788a: "p\b\u788a", // 碊
+ 0x788b: "p\b\u788b", // 碋
+ 0x788c: "p\b\u788c", // 碌
+ 0x788d: "p\b\u788d", // 碍
+ 0x788e: "p\b\u788e", // 碎
+ 0x788f: "p\b\u788f", // 碏
+ 0x7890: "p\b\u7890", // 碐
+ 0x7891: "p\b\u7891", // 碑
+ 0x7892: "p\b\u7892", // 碒
+ 0x7893: "p\b\u7893", // 碓
+ 0x7894: "p\b\u7894", // 碔
+ 0x7895: "p\b\u7895", // 碕
+ 0x7896: "p\b\u7896", // 碖
+ 0x7897: "p\b\u7897", // 碗
+ 0x7898: "p\b\u7898", // 碘
+ 0x7899: "p\b\u7899", // 碙
+ 0x789a: "p\b\u789a", // 碚
+ 0x789b: "p\b\u789b", // 碛
+ 0x789c: "p\b\u789c", // 碜
+ 0x789d: "p\t\u789d", // 碝
+ 0x789e: "p\t\u789e", // 碞
+ 0x789f: "p\t\u789f", // 碟
+ 0x78a0: "p\t\u78a0", // 碠
+ 0x78a1: "p\t\u78a1", // 碡
+ 0x78a2: "p\t\u78a2", // 碢
+ 0x78a3: "p\t\u78a3", // 碣
+ 0x78a4: "p\t\u78a4", // 碤
+ 0x78a5: "p\t\u78a5", // 碥
+ 0x78a6: "p\t\u78a6", // 碦
+ 0x78a7: "p\t\u78a7", // 碧
+ 0x78a8: "p\t\u78a8", // 碨
+ 0x78a9: "p\t\u78a9", // 碩
+ 0x78aa: "p\t\u78aa", // 碪
+ 0x78ab: "p\t\u78ab", // 碫
+ 0x78ac: "p\t\u78ac", // 碬
+ 0x78ad: "p\t\u78ad", // 碭
+ 0x78ae: "p\t\u78ae", // 碮
+ 0x78af: "p\t\u78af", // 碯
+ 0x78b0: "p\b\u78b0", // 碰
+ 0x78b1: "p\t\u78b1", // 碱
+ 0x78b2: "p\t\u78b2", // 碲
+ 0x78b3: "p\t\u78b3", // 碳
+ 0x78b4: "p\t\u78b4", // 碴
+ 0x78b5: "p\t\u78b5", // 碵
+ 0x78b6: "p\t\u78b6", // 碶
+ 0x78b7: "p\t\u78b7", // 碷
+ 0x78b8: "p\t\u78b8", // 碸
+ 0x78b9: "p\t\u78b9", // 碹
+ 0x78ba: "p\n\u78ba", // 確
+ 0x78bb: "p\n\u78bb", // 碻
+ 0x78bc: "p\n\u78bc", // 碼
+ 0x78bd: "p\n\u78bd", // 碽
+ 0x78be: "p\n\u78be", // 碾
+ 0x78bf: "p\n\u78bf", // 碿
+ 0x78c0: "p\n\u78c0", // 磀
+ 0x78c1: "p\t\u78c1", // 磁
+ 0x78c2: "p\n\u78c2", // 磂
+ 0x78c3: "p\n\u78c3", // 磃
+ 0x78c4: "p\n\u78c4", // 磄
+ 0x78c5: "p\n\u78c5", // 磅
+ 0x78c6: "p\n\u78c6", // 磆
+ 0x78c7: "p\n\u78c7", // 磇
+ 0x78c8: "p\n\u78c8", // 磈
+ 0x78c9: "p\n\u78c9", // 磉
+ 0x78ca: "p\n\u78ca", // 磊
+ 0x78cb: "p\n\u78cb", // 磋
+ 0x78cc: "p\n\u78cc", // 磌
+ 0x78cd: "p\n\u78cd", // 磍
+ 0x78ce: "p\n\u78ce", // 磎
+ 0x78cf: "p\n\u78cf", // 磏
+ 0x78d0: "p\n\u78d0", // 磐
+ 0x78d1: "p\n\u78d1", // 磑
+ 0x78d2: "p\n\u78d2", // 磒
+ 0x78d3: "p\n\u78d3", // 磓
+ 0x78d4: "p\n\u78d4", // 磔
+ 0x78d5: "p\n\u78d5", // 磕
+ 0x78d6: "p\n\u78d6", // 磖
+ 0x78d7: "p\n\u78d7", // 磗
+ 0x78d8: "p\n\u78d8", // 磘
+ 0x78d9: "p\n\u78d9", // 磙
+ 0x78da: "p\v\u78da", // 磚
+ 0x78db: "p\v\u78db", // 磛
+ 0x78dc: "p\n\u78dc", // 磜
+ 0x78dd: "p\v\u78dd", // 磝
+ 0x78de: "p\v\u78de", // 磞
+ 0x78df: "p\v\u78df", // 磟
+ 0x78e0: "p\v\u78e0", // 磠
+ 0x78e1: "p\v\u78e1", // 磡
+ 0x78e2: "p\v\u78e2", // 磢
+ 0x78e3: "p\v\u78e3", // 磣
+ 0x78e4: "p\n\u78e4", // 磤
+ 0x78e5: "p\v\u78e5", // 磥
+ 0x78e6: "p\v\u78e6", // 磦
+ 0x78e7: "p\v\u78e7", // 磧
+ 0x78e8: "p\v\u78e8", // 磨
+ 0x78e9: "p\v\u78e9", // 磩
+ 0x78ea: "p\v\u78ea", // 磪
+ 0x78eb: "p\v\u78eb", // 磫
+ 0x78ec: "p\v\u78ec", // 磬
+ 0x78ed: "p\v\u78ed", // 磭
+ 0x78ee: "p\v\u78ee", // 磮
+ 0x78ef: "p\f\u78ef", // 磯
+ 0x78f0: "p\f\u78f0", // 磰
+ 0x78f1: "p\f\u78f1", // 磱
+ 0x78f2: "p\f\u78f2", // 磲
+ 0x78f3: "p\f\u78f3", // 磳
+ 0x78f4: "p\f\u78f4", // 磴
+ 0x78f5: "p\f\u78f5", // 磵
+ 0x78f6: "p\f\u78f6", // 磶
+ 0x78f7: "p\f\u78f7", // 磷
+ 0x78f8: "p\f\u78f8", // 磸
+ 0x78f9: "p\f\u78f9", // 磹
+ 0x78fa: "p\f\u78fa", // 磺
+ 0x78fb: "p\f\u78fb", // 磻
+ 0x78fc: "p\f\u78fc", // 磼
+ 0x78fd: "p\f\u78fd", // 磽
+ 0x78fe: "p\f\u78fe", // 磾
+ 0x78ff: "p\f\u78ff", // 磿
+ 0x7900: "p\f\u7900", // 礀
+ 0x7901: "p\f\u7901", // 礁
+ 0x7902: "p\f\u7902", // 礂
+ 0x7903: "p\f\u7903", // 礃
+ 0x7904: "p\f\u7904", // 礄
+ 0x7905: "p\f\u7905", // 礅
+ 0x7906: "p\r\u7906", // 礆
+ 0x7907: "p\r\u7907", // 礇
+ 0x7908: "p\r\u7908", // 礈
+ 0x7909: "p\r\u7909", // 礉
+ 0x790a: "p\r\u790a", // 礊
+ 0x790b: "p\r\u790b", // 礋
+ 0x790c: "p\r\u790c", // 礌
+ 0x790d: "p\r\u790d", // 礍
+ 0x790e: "p\r\u790e", // 礎
+ 0x790f: "p\r\u790f", // 礏
+ 0x7910: "p\r\u7910", // 礐
+ 0x7911: "p\r\u7911", // 礑
+ 0x7912: "p\r\u7912", // 礒
+ 0x7913: "p\r\u7913", // 礓
+ 0x7914: "p\r\u7914", // 礔
+ 0x7915: "p\r\u7915", // 礕
+ 0x7916: "p\r\u7916", // 礖
+ 0x7917: "p\x0e\u7917", // 礗
+ 0x7918: "p\x0e\u7918", // 礘
+ 0x7919: "p\x0e\u7919", // 礙
+ 0x791a: "p\x0e\u791a", // 礚
+ 0x791b: "p\x0e\u791b", // 礛
+ 0x791c: "p\x0e\u791c", // 礜
+ 0x791d: "p\x0e\u791d", // 礝
+ 0x791e: "p\x0e\u791e", // 礞
+ 0x791f: "p\x0e\u791f", // 礟
+ 0x7920: "p\x0e\u7920", // 礠
+ 0x7921: "p\x0e\u7921", // 礡
+ 0x7922: "p\x0f\u7922", // 礢
+ 0x7923: "p\x0f\u7923", // 礣
+ 0x7924: "p\x0f\u7924", // 礤
+ 0x7925: "p\x0f\u7925", // 礥
+ 0x7926: "p\x0f\u7926", // 礦
+ 0x7927: "p\x0f\u7927", // 礧
+ 0x7928: "p\x0f\u7928", // 礨
+ 0x7929: "p\x0f\u7929", // 礩
+ 0x792a: "p\x0f\u792a", // 礪
+ 0x792b: "p\x0f\u792b", // 礫
+ 0x792c: "p\x0f\u792c", // 礬
+ 0x792d: "p\x10\u792d", // 礭
+ 0x792e: "p\x10\u792e", // 礮
+ 0x792f: "p\x10\u792f", // 礯
+ 0x7930: "p\x10\u7930", // 礰
+ 0x7931: "p\x10\u7931", // 礱
+ 0x7932: "p\x10\u7932", // 礲
+ 0x7933: "p\x10\u7933", // 礳
+ 0x7934: "p\x10\u7934", // 礴
+ 0x7935: "p\x11\u7935", // 礵
+ 0x7936: "p\x12\u7936", // 礶
+ 0x7937: "p\x12\u7937", // 礷
+ 0x7938: "p\x13\u7938", // 礸
+ 0x7939: "p\x14\u7939", // 礹
+ 0x793a: "q\x00\u793a", // 示
+ 0x793b: "q\x00\u793b", // 礻
+ 0x793c: "q\x01\u793c", // 礼
+ 0x793d: "q\x02\u793d", // 礽
+ 0x793e: "q\x03\u793e", // 社
+ 0x793f: "q\x03\u793f", // 礿
+ 0x7940: "q\x03\u7940", // 祀
+ 0x7941: "q\x03\u7941", // 祁
+ 0x7942: "q\x03\u7942", // 祂
+ 0x7943: "q\x03\u7943", // 祃
+ 0x7944: "q\x04\u7944", // 祄
+ 0x7945: "q\x04\u7945", // 祅
+ 0x7946: "q\x04\u7946", // 祆
+ 0x7947: "q\x04\u7947", // 祇
+ 0x7948: "q\x04\u7948", // 祈
+ 0x7949: "q\x04\u7949", // 祉
+ 0x794a: "q\x04\u794a", // 祊
+ 0x794b: "q\x04\u794b", // 祋
+ 0x794c: "q\x04\u794c", // 祌
+ 0x794d: "q\x04\u794d", // 祍
+ 0x794e: "q\x04\u794e", // 祎
+ 0x794f: "q\x05\u794f", // 祏
+ 0x7950: "q\x05\u7950", // 祐
+ 0x7951: "q\x05\u7951", // 祑
+ 0x7952: "q\x05\u7952", // 祒
+ 0x7953: "q\x05\u7953", // 祓
+ 0x7954: "q\x05\u7954", // 祔
+ 0x7955: "q\x05\u7955", // 祕
+ 0x7956: "q\x05\u7956", // 祖
+ 0x7957: "q\x05\u7957", // 祗
+ 0x7958: "q\x05\u7958", // 祘
+ 0x7959: "q\x05\u7959", // 祙
+ 0x795a: "q\x05\u795a", // 祚
+ 0x795b: "q\x05\u795b", // 祛
+ 0x795c: "q\x05\u795c", // 祜
+ 0x795d: "q\x05\u795d", // 祝
+ 0x795e: "q\x05\u795e", // 神
+ 0x795f: "q\x05\u795f", // 祟
+ 0x7960: "q\x05\u7960", // 祠
+ 0x7961: "q\x05\u7961", // 祡
+ 0x7962: "q\x05\u7962", // 祢
+ 0x7963: "q\x06\u7963", // 祣
+ 0x7964: "q\x06\u7964", // 祤
+ 0x7965: "q\x06\u7965", // 祥
+ 0x7966: "q\a\u7966", // 祦
+ 0x7967: "q\x06\u7967", // 祧
+ 0x7968: "q\x06\u7968", // 票
+ 0x7969: "q\x06\u7969", // 祩
+ 0x796a: "q\x06\u796a", // 祪
+ 0x796b: "q\x06\u796b", // 祫
+ 0x796c: "q\x06\u796c", // 祬
+ 0x796d: "q\x06\u796d", // 祭
+ 0x796e: "q\x06\u796e", // 祮
+ 0x796f: "q\x06\u796f", // 祯
+ 0x7970: "q\a\u7970", // 祰
+ 0x7971: "q\a\u7971", // 祱
+ 0x7972: "q\a\u7972", // 祲
+ 0x7973: "q\a\u7973", // 祳
+ 0x7974: "q\a\u7974", // 祴
+ 0x7975: "q\a\u7975", // 祵
+ 0x7976: "q\a\u7976", // 祶
+ 0x7977: "q\a\u7977", // 祷
+ 0x7978: "q\a\u7978", // 祸
+ 0x7979: "q\b\u7979", // 祹
+ 0x797a: "q\b\u797a", // 祺
+ 0x797b: "q\b\u797b", // 祻
+ 0x797c: "q\b\u797c", // 祼
+ 0x797d: "q\b\u797d", // 祽
+ 0x797e: "q\b\u797e", // 祾
+ 0x797f: "q\b\u797f", // 祿
+ 0x7980: "q\b\u7980", // 禀
+ 0x7981: "q\b\u7981", // 禁
+ 0x7982: "q\b\u7982", // 禂
+ 0x7983: "q\b\u7983", // 禃
+ 0x7984: "q\a\u7984", // 禄
+ 0x7985: "q\b\u7985", // 禅
+ 0x7986: "q\b\u7986", // 禆
+ 0x7987: "q\t\u7987", // 禇
+ 0x7988: "q\t\u7988", // 禈
+ 0x7989: "q\t\u7989", // 禉
+ 0x798a: "q\t\u798a", // 禊
+ 0x798b: "q\t\u798b", // 禋
+ 0x798c: "q\t\u798c", // 禌
+ 0x798d: "q\t\u798d", // 禍
+ 0x798e: "q\t\u798e", // 禎
+ 0x798f: "q\t\u798f", // 福
+ 0x7990: "q\t\u7990", // 禐
+ 0x7991: "q\t\u7991", // 禑
+ 0x7992: "q\t\u7992", // 禒
+ 0x7993: "q\t\u7993", // 禓
+ 0x7994: "q\t\u7994", // 禔
+ 0x7995: "q\t\u7995", // 禕
+ 0x7996: "q\t\u7996", // 禖
+ 0x7997: "q\t\u7997", // 禗
+ 0x7998: "q\t\u7998", // 禘
+ 0x7999: "q\t\u7999", // 禙
+ 0x799a: "q\n\u799a", // 禚
+ 0x799b: "q\n\u799b", // 禛
+ 0x799c: "q\n\u799c", // 禜
+ 0x799d: "q\n\u799d", // 禝
+ 0x799e: "q\n\u799e", // 禞
+ 0x799f: "q\n\u799f", // 禟
+ 0x79a0: "q\n\u79a0", // 禠
+ 0x79a1: "q\n\u79a1", // 禡
+ 0x79a2: "q\n\u79a2", // 禢
+ 0x79a3: "q\n\u79a3", // 禣
+ 0x79a4: "q\v\u79a4", // 禤
+ 0x79a5: "q\v\u79a5", // 禥
+ 0x79a6: "q\v\u79a6", // 禦
+ 0x79a7: "q\f\u79a7", // 禧
+ 0x79a8: "q\f\u79a8", // 禨
+ 0x79a9: "q\f\u79a9", // 禩
+ 0x79aa: "q\f\u79aa", // 禪
+ 0x79ab: "q\f\u79ab", // 禫
+ 0x79ac: "q\r\u79ac", // 禬
+ 0x79ad: "q\r\u79ad", // 禭
+ 0x79ae: "q\r\u79ae", // 禮
+ 0x79af: "q\r\u79af", // 禯
+ 0x79b0: "q\x0e\u79b0", // 禰
+ 0x79b1: "q\x0e\u79b1", // 禱
+ 0x79b2: "q\x0f\u79b2", // 禲
+ 0x79b3: "q\x11\u79b3", // 禳
+ 0x79b4: "q\x11\u79b4", // 禴
+ 0x79b5: "q\x12\u79b5", // 禵
+ 0x79b6: "q\x13\u79b6", // 禶
+ 0x79b7: "q\x13\u79b7", // 禷
+ 0x79b8: "r\x00\u79b8", // 禸
+ 0x79b9: "r\x04\u79b9", // 禹
+ 0x79ba: "r\x04\u79ba", // 禺
+ 0x79bb: "r\x06\u79bb", // 离
+ 0x79bc: "r\a\u79bc", // 禼
+ 0x79bd: "r\b\u79bd", // 禽
+ 0x79be: "s\x00\u79be", // 禾
+ 0x79bf: "s\x02\u79bf", // 禿
+ 0x79c0: "s\x02\u79c0", // 秀
+ 0x79c1: "s\x02\u79c1", // 私
+ 0x79c2: "s\x02\u79c2", // 秂
+ 0x79c3: "s\x02\u79c3", // 秃
+ 0x79c4: "s\x03\u79c4", // 秄
+ 0x79c5: "s\x03\u79c5", // 秅
+ 0x79c6: "s\x03\u79c6", // 秆
+ 0x79c7: "s\x03\u79c7", // 秇
+ 0x79c8: "s\x03\u79c8", // 秈
+ 0x79c9: "s\x03\u79c9", // 秉
+ 0x79ca: "s\x03\u79ca", // 秊
+ 0x79cb: "s\x04\u79cb", // 秋
+ 0x79cc: "s\x04\u79cc", // 秌
+ 0x79cd: "s\x04\u79cd", // 种
+ 0x79ce: "s\x04\u79ce", // 秎
+ 0x79cf: "s\x04\u79cf", // 秏
+ 0x79d0: "s\x04\u79d0", // 秐
+ 0x79d1: "s\x04\u79d1", // 科
+ 0x79d2: "s\x04\u79d2", // 秒
+ 0x79d3: "s\x04\u79d3", // 秓
+ 0x79d4: "s\x04\u79d4", // 秔
+ 0x79d5: "s\x04\u79d5", // 秕
+ 0x79d6: "s\x04\u79d6", // 秖
+ 0x79d7: "s\x04\u79d7", // 秗
+ 0x79d8: "s\x05\u79d8", // 秘
+ 0x79d9: "s\x05\u79d9", // 秙
+ 0x79da: "s\x05\u79da", // 秚
+ 0x79db: "s\x05\u79db", // 秛
+ 0x79dc: "s\x05\u79dc", // 秜
+ 0x79dd: "s\x05\u79dd", // 秝
+ 0x79de: "s\x05\u79de", // 秞
+ 0x79df: "s\x05\u79df", // 租
+ 0x79e0: "s\x05\u79e0", // 秠
+ 0x79e1: "s\x05\u79e1", // 秡
+ 0x79e2: "s\x05\u79e2", // 秢
+ 0x79e3: "s\x05\u79e3", // 秣
+ 0x79e4: "s\x05\u79e4", // 秤
+ 0x79e5: "s\x05\u79e5", // 秥
+ 0x79e6: "s\x05\u79e6", // 秦
+ 0x79e7: "s\x05\u79e7", // 秧
+ 0x79e8: "s\x05\u79e8", // 秨
+ 0x79e9: "s\x05\u79e9", // 秩
+ 0x79ea: "s\x05\u79ea", // 秪
+ 0x79eb: "s\x05\u79eb", // 秫
+ 0x79ec: "s\x05\u79ec", // 秬
+ 0x79ed: "s\x05\u79ed", // 秭
+ 0x79ee: "s\x05\u79ee", // 秮
+ 0x79ef: "s\x05\u79ef", // 积
+ 0x79f0: "s\x05\u79f0", // 称
+ 0x79f1: "s\x06\u79f1", // 秱
+ 0x79f2: "s\x06\u79f2", // 秲
+ 0x79f3: "s\x06\u79f3", // 秳
+ 0x79f4: "s\x06\u79f4", // 秴
+ 0x79f5: "s\x06\u79f5", // 秵
+ 0x79f6: "s\x06\u79f6", // 秶
+ 0x79f7: "s\x06\u79f7", // 秷
+ 0x79f8: "s\x06\u79f8", // 秸
+ 0x79f9: "s\x06\u79f9", // 秹
+ 0x79fa: "s\x06\u79fa", // 秺
+ 0x79fb: "s\x06\u79fb", // 移
+ 0x79fc: "s\x06\u79fc", // 秼
+ 0x79fd: "s\x06\u79fd", // 秽
+ 0x79fe: "s\x06\u79fe", // 秾
+ 0x79ff: "s\a\u79ff", // 秿
+ 0x7a00: "s\a\u7a00", // 稀
+ 0x7a01: "s\a\u7a01", // 稁
+ 0x7a02: "s\a\u7a02", // 稂
+ 0x7a03: "s\a\u7a03", // 稃
+ 0x7a04: "s\a\u7a04", // 稄
+ 0x7a05: "s\a\u7a05", // 稅
+ 0x7a06: "s\x06\u7a06", // 稆
+ 0x7a07: "s\a\u7a07", // 稇
+ 0x7a08: "s\a\u7a08", // 稈
+ 0x7a09: "s\a\u7a09", // 稉
+ 0x7a0a: "s\a\u7a0a", // 稊
+ 0x7a0b: "s\a\u7a0b", // 程
+ 0x7a0c: "s\a\u7a0c", // 稌
+ 0x7a0d: "s\a\u7a0d", // 稍
+ 0x7a0e: "s\a\u7a0e", // 税
+ 0x7a0f: "s\b\u7a0f", // 稏
+ 0x7a10: "s\b\u7a10", // 稐
+ 0x7a11: "s\b\u7a11", // 稑
+ 0x7a12: "s\b\u7a12", // 稒
+ 0x7a13: "s\b\u7a13", // 稓
+ 0x7a14: "s\b\u7a14", // 稔
+ 0x7a15: "s\b\u7a15", // 稕
+ 0x7a16: "s\b\u7a16", // 稖
+ 0x7a17: "s\b\u7a17", // 稗
+ 0x7a18: "s\b\u7a18", // 稘
+ 0x7a19: "s\b\u7a19", // 稙
+ 0x7a1a: "s\b\u7a1a", // 稚
+ 0x7a1b: "s\b\u7a1b", // 稛
+ 0x7a1c: "s\b\u7a1c", // 稜
+ 0x7a1d: "s\b\u7a1d", // 稝
+ 0x7a1e: "s\b\u7a1e", // 稞
+ 0x7a1f: "s\b\u7a1f", // 稟
+ 0x7a20: "s\b\u7a20", // 稠
+ 0x7a21: "s\b\u7a21", // 稡
+ 0x7a22: "s\b\u7a22", // 稢
+ 0x7a23: "s\b\u7a23", // 稣
+ 0x7a24: "s\b\u7a24", // 稤
+ 0x7a25: "s\b\u7a25", // 稥
+ 0x7a26: "s\t\u7a26", // 稦
+ 0x7a27: "s\t\u7a27", // 稧
+ 0x7a28: "s\t\u7a28", // 稨
+ 0x7a29: "s\t\u7a29", // 稩
+ 0x7a2a: "s\t\u7a2a", // 稪
+ 0x7a2b: "s\t\u7a2b", // 稫
+ 0x7a2c: "s\t\u7a2c", // 稬
+ 0x7a2d: "s\t\u7a2d", // 稭
+ 0x7a2e: "s\t\u7a2e", // 種
+ 0x7a2f: "s\t\u7a2f", // 稯
+ 0x7a30: "s\t\u7a30", // 稰
+ 0x7a31: "s\t\u7a31", // 稱
+ 0x7a32: "s\t\u7a32", // 稲
+ 0x7a33: "s\t\u7a33", // 稳
+ 0x7a34: "s\n\u7a34", // 稴
+ 0x7a35: "s\n\u7a35", // 稵
+ 0x7a36: "s\n\u7a36", // 稶
+ 0x7a37: "s\n\u7a37", // 稷
+ 0x7a38: "s\n\u7a38", // 稸
+ 0x7a39: "s\n\u7a39", // 稹
+ 0x7a3a: "s\n\u7a3a", // 稺
+ 0x7a3b: "s\n\u7a3b", // 稻
+ 0x7a3c: "s\n\u7a3c", // 稼
+ 0x7a3d: "s\n\u7a3d", // 稽
+ 0x7a3e: "s\n\u7a3e", // 稾
+ 0x7a3f: "s\n\u7a3f", // 稿
+ 0x7a40: "s\n\u7a40", // 穀
+ 0x7a41: "s\n\u7a41", // 穁
+ 0x7a42: "s\n\u7a42", // 穂
+ 0x7a43: "s\n\u7a43", // 穃
+ 0x7a44: "s\v\u7a44", // 穄
+ 0x7a45: "s\v\u7a45", // 穅
+ 0x7a46: "s\v\u7a46", // 穆
+ 0x7a47: "s\v\u7a47", // 穇
+ 0x7a48: "s\v\u7a48", // 穈
+ 0x7a49: "s\f\u7a49", // 穉
+ 0x7a4a: "s\t\u7a4a", // 穊
+ 0x7a4b: "s\v\u7a4b", // 穋
+ 0x7a4c: "s\v\u7a4c", // 穌
+ 0x7a4d: "s\v\u7a4d", // 積
+ 0x7a4e: "s\v\u7a4e", // 穎
+ 0x7a4f: "s\v\u7a4f", // 穏
+ 0x7a50: "s\v\u7a50", // 穐
+ 0x7a51: "s\v\u7a51", // 穑
+ 0x7a52: "s\v\u7a52", // 穒
+ 0x7a53: "s\f\u7a53", // 穓
+ 0x7a54: "s\f\u7a54", // 穔
+ 0x7a55: "s\f\u7a55", // 穕
+ 0x7a56: "s\f\u7a56", // 穖
+ 0x7a57: "s\f\u7a57", // 穗
+ 0x7a58: "s\f\u7a58", // 穘
+ 0x7a59: "s\f\u7a59", // 穙
+ 0x7a5a: "s\f\u7a5a", // 穚
+ 0x7a5b: "s\f\u7a5b", // 穛
+ 0x7a5c: "s\f\u7a5c", // 穜
+ 0x7a5d: "s\f\u7a5d", // 穝
+ 0x7a5e: "s\f\u7a5e", // 穞
+ 0x7a5f: "s\r\u7a5f", // 穟
+ 0x7a60: "s\r\u7a60", // 穠
+ 0x7a61: "s\r\u7a61", // 穡
+ 0x7a62: "s\r\u7a62", // 穢
+ 0x7a63: "s\r\u7a63", // 穣
+ 0x7a64: "s\x0e\u7a64", // 穤
+ 0x7a65: "s\x0e\u7a65", // 穥
+ 0x7a66: "s\x0e\u7a66", // 穦
+ 0x7a67: "s\x0e\u7a67", // 穧
+ 0x7a68: "s\x0e\u7a68", // 穨
+ 0x7a69: "s\x0e\u7a69", // 穩
+ 0x7a6a: "s\x0e\u7a6a", // 穪
+ 0x7a6b: "s\x0e\u7a6b", // 穫
+ 0x7a6c: "s\x0f\u7a6c", // 穬
+ 0x7a6d: "s\x0f\u7a6d", // 穭
+ 0x7a6e: "s\x0f\u7a6e", // 穮
+ 0x7a6f: "s\x0f\u7a6f", // 穯
+ 0x7a70: "s\x11\u7a70", // 穰
+ 0x7a71: "s\x12\u7a71", // 穱
+ 0x7a72: "s\x13\u7a72", // 穲
+ 0x7a73: "s\x11\u7a73", // 穳
+ 0x7a74: "t\x00\u7a74", // 穴
+ 0x7a75: "t\x01\u7a75", // 穵
+ 0x7a76: "t\x02\u7a76", // 究
+ 0x7a77: "t\x02\u7a77", // 穷
+ 0x7a78: "t\x03\u7a78", // 穸
+ 0x7a79: "t\x03\u7a79", // 穹
+ 0x7a7a: "t\x03\u7a7a", // 空
+ 0x7a7b: "t\x03\u7a7b", // 穻
+ 0x7a7c: "t\x04\u7a7c", // 穼
+ 0x7a7d: "t\x04\u7a7d", // 穽
+ 0x7a7e: "t\x04\u7a7e", // 穾
+ 0x7a7f: "t\x04\u7a7f", // 穿
+ 0x7a80: "t\x04\u7a80", // 窀
+ 0x7a81: "t\x04\u7a81", // 突
+ 0x7a82: "t\x04\u7a82", // 窂
+ 0x7a83: "t\x04\u7a83", // 窃
+ 0x7a84: "t\x05\u7a84", // 窄
+ 0x7a85: "t\x05\u7a85", // 窅
+ 0x7a86: "t\x05\u7a86", // 窆
+ 0x7a87: "t\x05\u7a87", // 窇
+ 0x7a88: "t\x05\u7a88", // 窈
+ 0x7a89: "t\x05\u7a89", // 窉
+ 0x7a8a: "t\x05\u7a8a", // 窊
+ 0x7a8b: "t\x05\u7a8b", // 窋
+ 0x7a8c: "t\x05\u7a8c", // 窌
+ 0x7a8d: "t\x05\u7a8d", // 窍
+ 0x7a8e: "t\x05\u7a8e", // 窎
+ 0x7a8f: "t\x06\u7a8f", // 窏
+ 0x7a90: "t\x06\u7a90", // 窐
+ 0x7a91: "t\x06\u7a91", // 窑
+ 0x7a92: "t\x06\u7a92", // 窒
+ 0x7a93: "t\x06\u7a93", // 窓
+ 0x7a94: "t\x06\u7a94", // 窔
+ 0x7a95: "t\x06\u7a95", // 窕
+ 0x7a96: "t\a\u7a96", // 窖
+ 0x7a97: "t\a\u7a97", // 窗
+ 0x7a98: "t\a\u7a98", // 窘
+ 0x7a99: "t\a\u7a99", // 窙
+ 0x7a9a: "t\a\u7a9a", // 窚
+ 0x7a9b: "t\a\u7a9b", // 窛
+ 0x7a9c: "t\a\u7a9c", // 窜
+ 0x7a9d: "t\a\u7a9d", // 窝
+ 0x7a9e: "t\b\u7a9e", // 窞
+ 0x7a9f: "t\b\u7a9f", // 窟
+ 0x7aa0: "t\b\u7aa0", // 窠
+ 0x7aa1: "t\b\u7aa1", // 窡
+ 0x7aa2: "t\b\u7aa2", // 窢
+ 0x7aa3: "t\b\u7aa3", // 窣
+ 0x7aa4: "t\b\u7aa4", // 窤
+ 0x7aa5: "t\b\u7aa5", // 窥
+ 0x7aa6: "t\b\u7aa6", // 窦
+ 0x7aa7: "t\b\u7aa7", // 窧
+ 0x7aa8: "t\t\u7aa8", // 窨
+ 0x7aa9: "t\t\u7aa9", // 窩
+ 0x7aaa: "t\t\u7aaa", // 窪
+ 0x7aab: "t\t\u7aab", // 窫
+ 0x7aac: "t\t\u7aac", // 窬
+ 0x7aad: "t\t\u7aad", // 窭
+ 0x7aae: "t\n\u7aae", // 窮
+ 0x7aaf: "t\n\u7aaf", // 窯
+ 0x7ab0: "t\n\u7ab0", // 窰
+ 0x7ab1: "t\n\u7ab1", // 窱
+ 0x7ab2: "t\n\u7ab2", // 窲
+ 0x7ab3: "t\n\u7ab3", // 窳
+ 0x7ab4: "t\n\u7ab4", // 窴
+ 0x7ab5: "t\v\u7ab5", // 窵
+ 0x7ab6: "t\v\u7ab6", // 窶
+ 0x7ab7: "t\v\u7ab7", // 窷
+ 0x7ab8: "t\v\u7ab8", // 窸
+ 0x7ab9: "t\v\u7ab9", // 窹
+ 0x7aba: "t\v\u7aba", // 窺
+ 0x7abb: "t\v\u7abb", // 窻
+ 0x7abc: "t\v\u7abc", // 窼
+ 0x7abd: "t\v\u7abd", // 窽
+ 0x7abe: "t\f\u7abe", // 窾
+ 0x7abf: "t\f\u7abf", // 窿
+ 0x7ac0: "t\f\u7ac0", // 竀
+ 0x7ac1: "t\f\u7ac1", // 竁
+ 0x7ac2: "t\f\u7ac2", // 竂
+ 0x7ac3: "t\f\u7ac3", // 竃
+ 0x7ac4: "t\r\u7ac4", // 竄
+ 0x7ac5: "t\r\u7ac5", // 竅
+ 0x7ac6: "t\x0e\u7ac6", // 竆
+ 0x7ac7: "t\x0f\u7ac7", // 竇
+ 0x7ac8: "t\x10\u7ac8", // 竈
+ 0x7ac9: "t\x10\u7ac9", // 竉
+ 0x7aca: "t\x11\u7aca", // 竊
+ 0x7acb: "u\x00\u7acb", // 立
+ 0x7acc: "u\x02\u7acc", // 竌
+ 0x7acd: "u\x02\u7acd", // 竍
+ 0x7ace: "u\x03\u7ace", // 竎
+ 0x7acf: "u\x03\u7acf", // 竏
+ 0x7ad0: "u\x04\u7ad0", // 竐
+ 0x7ad1: "u\x04\u7ad1", // 竑
+ 0x7ad2: "u\x04\u7ad2", // 竒
+ 0x7ad3: "u\x04\u7ad3", // 竓
+ 0x7ad4: "u\x04\u7ad4", // 竔
+ 0x7ad5: "u\x04\u7ad5", // 竕
+ 0x7ad6: "u\x04\u7ad6", // 竖
+ 0x7ad7: "u\x04\u7ad7", // 竗
+ 0x7ad8: "u\x05\u7ad8", // 竘
+ 0x7ad9: "u\x05\u7ad9", // 站
+ 0x7ada: "u\x05\u7ada", // 竚
+ 0x7adb: "u\x05\u7adb", // 竛
+ 0x7adc: "u\x05\u7adc", // 竜
+ 0x7add: "u\x05\u7add", // 竝
+ 0x7ade: "u\x05\u7ade", // 竞
+ 0x7adf: "\xb4\x02\u7adf", // 竟
+ 0x7ae0: "\xb4\x02\u7ae0", // 章
+ 0x7ae1: "u\x06\u7ae1", // 竡
+ 0x7ae2: "u\a\u7ae2", // 竢
+ 0x7ae3: "u\a\u7ae3", // 竣
+ 0x7ae4: "u\a\u7ae4", // 竤
+ 0x7ae5: "u\a\u7ae5", // 童
+ 0x7ae6: "u\a\u7ae6", // 竦
+ 0x7ae7: "u\a\u7ae7", // 竧
+ 0x7ae8: "u\b\u7ae8", // 竨
+ 0x7ae9: "u\b\u7ae9", // 竩
+ 0x7aea: "u\b\u7aea", // 竪
+ 0x7aeb: "u\b\u7aeb", // 竫
+ 0x7aec: "u\t\u7aec", // 竬
+ 0x7aed: "u\t\u7aed", // 竭
+ 0x7aee: "u\v\u7aee", // 竮
+ 0x7aef: "u\t\u7aef", // 端
+ 0x7af0: "u\t\u7af0", // 竰
+ 0x7af1: "u\v\u7af1", // 竱
+ 0x7af2: "u\f\u7af2", // 竲
+ 0x7af3: "u\f\u7af3", // 竳
+ 0x7af4: "u\f\u7af4", // 竴
+ 0x7af5: "u\r\u7af5", // 竵
+ 0x7af6: "u\x0f\u7af6", // 競
+ 0x7af7: "u\x0f\u7af7", // 竷
+ 0x7af8: "u\x11\u7af8", // 竸
+ 0x7af9: "v\x00\u7af9", // 竹
+ 0x7afa: "v\x02\u7afa", // 竺
+ 0x7afb: "v\x02\u7afb", // 竻
+ 0x7afc: "v\x03\u7afc", // 竼
+ 0x7afd: "v\x03\u7afd", // 竽
+ 0x7afe: "v\x03\u7afe", // 竾
+ 0x7aff: "v\x03\u7aff", // 竿
+ 0x7b00: "v\x03\u7b00", // 笀
+ 0x7b01: "v\x03\u7b01", // 笁
+ 0x7b02: "v\x03\u7b02", // 笂
+ 0x7b03: "v\x03\u7b03", // 笃
+ 0x7b04: "v\x06\u7b04", // 笄
+ 0x7b05: "v\x04\u7b05", // 笅
+ 0x7b06: "v\x04\u7b06", // 笆
+ 0x7b07: "v\x04\u7b07", // 笇
+ 0x7b08: "v\x04\u7b08", // 笈
+ 0x7b09: "v\x04\u7b09", // 笉
+ 0x7b0a: "v\x04\u7b0a", // 笊
+ 0x7b0b: "v\x04\u7b0b", // 笋
+ 0x7b0c: "v\x04\u7b0c", // 笌
+ 0x7b0d: "v\x04\u7b0d", // 笍
+ 0x7b0e: "v\x04\u7b0e", // 笎
+ 0x7b0f: "v\x04\u7b0f", // 笏
+ 0x7b10: "v\x04\u7b10", // 笐
+ 0x7b11: "v\x04\u7b11", // 笑
+ 0x7b12: "v\x04\u7b12", // 笒
+ 0x7b13: "v\x04\u7b13", // 笓
+ 0x7b14: "v\x04\u7b14", // 笔
+ 0x7b15: "v\x04\u7b15", // 笕
+ 0x7b16: "v\x05\u7b16", // 笖
+ 0x7b17: "v\x05\u7b17", // 笗
+ 0x7b18: "v\x05\u7b18", // 笘
+ 0x7b19: "v\x05\u7b19", // 笙
+ 0x7b1a: "v\x05\u7b1a", // 笚
+ 0x7b1b: "v\x05\u7b1b", // 笛
+ 0x7b1c: "v\x05\u7b1c", // 笜
+ 0x7b1d: "v\x05\u7b1d", // 笝
+ 0x7b1e: "v\x05\u7b1e", // 笞
+ 0x7b1f: "v\x05\u7b1f", // 笟
+ 0x7b20: "v\x05\u7b20", // 笠
+ 0x7b21: "v\x05\u7b21", // 笡
+ 0x7b22: "v\x05\u7b22", // 笢
+ 0x7b23: "v\x05\u7b23", // 笣
+ 0x7b24: "v\x05\u7b24", // 笤
+ 0x7b25: "v\x05\u7b25", // 笥
+ 0x7b26: "v\x05\u7b26", // 符
+ 0x7b27: "v\x05\u7b27", // 笧
+ 0x7b28: "v\x05\u7b28", // 笨
+ 0x7b29: "v\x05\u7b29", // 笩
+ 0x7b2a: "v\x05\u7b2a", // 笪
+ 0x7b2b: "v\x05\u7b2b", // 笫
+ 0x7b2c: "v\x05\u7b2c", // 第
+ 0x7b2d: "v\x05\u7b2d", // 笭
+ 0x7b2e: "v\x05\u7b2e", // 笮
+ 0x7b2f: "v\x05\u7b2f", // 笯
+ 0x7b30: "v\x05\u7b30", // 笰
+ 0x7b31: "v\x05\u7b31", // 笱
+ 0x7b32: "v\x05\u7b32", // 笲
+ 0x7b33: "v\x05\u7b33", // 笳
+ 0x7b34: "v\x05\u7b34", // 笴
+ 0x7b35: "v\x05\u7b35", // 笵
+ 0x7b36: "v\x05\u7b36", // 笶
+ 0x7b37: "v\x05\u7b37", // 笷
+ 0x7b38: "v\x05\u7b38", // 笸
+ 0x7b39: "v\x05\u7b39", // 笹
+ 0x7b3a: "v\x05\u7b3a", // 笺
+ 0x7b3b: "v\x05\u7b3b", // 笻
+ 0x7b3c: "v\x05\u7b3c", // 笼
+ 0x7b3d: "v\x05\u7b3d", // 笽
+ 0x7b3e: "v\x05\u7b3e", // 笾
+ 0x7b3f: "v\x06\u7b3f", // 笿
+ 0x7b40: "v\x06\u7b40", // 筀
+ 0x7b41: "v\x06\u7b41", // 筁
+ 0x7b42: "v\x06\u7b42", // 筂
+ 0x7b43: "v\x06\u7b43", // 筃
+ 0x7b44: "v\x06\u7b44", // 筄
+ 0x7b45: "v\x06\u7b45", // 筅
+ 0x7b46: "v\x06\u7b46", // 筆
+ 0x7b47: "v\x06\u7b47", // 筇
+ 0x7b48: "v\x06\u7b48", // 筈
+ 0x7b49: "v\x06\u7b49", // 等
+ 0x7b4a: "v\x06\u7b4a", // 筊
+ 0x7b4b: "v\x06\u7b4b", // 筋
+ 0x7b4c: "v\x06\u7b4c", // 筌
+ 0x7b4d: "v\x06\u7b4d", // 筍
+ 0x7b4e: "v\x06\u7b4e", // 筎
+ 0x7b4f: "v\x06\u7b4f", // 筏
+ 0x7b50: "v\x06\u7b50", // 筐
+ 0x7b51: "v\x06\u7b51", // 筑
+ 0x7b52: "v\x06\u7b52", // 筒
+ 0x7b53: "v\x06\u7b53", // 筓
+ 0x7b54: "v\x06\u7b54", // 答
+ 0x7b55: "v\x06\u7b55", // 筕
+ 0x7b56: "v\x06\u7b56", // 策
+ 0x7b57: "v\x06\u7b57", // 筗
+ 0x7b58: "v\x06\u7b58", // 筘
+ 0x7b59: "v\x06\u7b59", // 筙
+ 0x7b5a: "v\x06\u7b5a", // 筚
+ 0x7b5b: "v\x06\u7b5b", // 筛
+ 0x7b5c: "v\x06\u7b5c", // 筜
+ 0x7b5d: "v\x06\u7b5d", // 筝
+ 0x7b5e: "v\a\u7b5e", // 筞
+ 0x7b5f: "v\a\u7b5f", // 筟
+ 0x7b60: "v\a\u7b60", // 筠
+ 0x7b61: "v\a\u7b61", // 筡
+ 0x7b62: "v\a\u7b62", // 筢
+ 0x7b63: "v\a\u7b63", // 筣
+ 0x7b64: "v\a\u7b64", // 筤
+ 0x7b65: "v\a\u7b65", // 筥
+ 0x7b66: "v\a\u7b66", // 筦
+ 0x7b67: "v\a\u7b67", // 筧
+ 0x7b68: "v\a\u7b68", // 筨
+ 0x7b69: "v\a\u7b69", // 筩
+ 0x7b6a: "v\a\u7b6a", // 筪
+ 0x7b6b: "v\a\u7b6b", // 筫
+ 0x7b6c: "v\a\u7b6c", // 筬
+ 0x7b6d: "v\a\u7b6d", // 筭
+ 0x7b6e: "v\a\u7b6e", // 筮
+ 0x7b6f: "v\a\u7b6f", // 筯
+ 0x7b70: "v\a\u7b70", // 筰
+ 0x7b71: "v\a\u7b71", // 筱
+ 0x7b72: "v\a\u7b72", // 筲
+ 0x7b73: "v\a\u7b73", // 筳
+ 0x7b74: "v\a\u7b74", // 筴
+ 0x7b75: "v\a\u7b75", // 筵
+ 0x7b76: "v\a\u7b76", // 筶
+ 0x7b77: "v\a\u7b77", // 筷
+ 0x7b78: "v\a\u7b78", // 筸
+ 0x7b79: "v\a\u7b79", // 筹
+ 0x7b7a: "v\a\u7b7a", // 筺
+ 0x7b7b: "v\a\u7b7b", // 筻
+ 0x7b7c: "v\a\u7b7c", // 筼
+ 0x7b7d: "v\a\u7b7d", // 筽
+ 0x7b7e: "v\a\u7b7e", // 签
+ 0x7b7f: "v\a\u7b7f", // 筿
+ 0x7b80: "v\a\u7b80", // 简
+ 0x7b81: "v\b\u7b81", // 箁
+ 0x7b82: "v\b\u7b82", // 箂
+ 0x7b83: "v\b\u7b83", // 箃
+ 0x7b84: "v\b\u7b84", // 箄
+ 0x7b85: "v\b\u7b85", // 箅
+ 0x7b86: "v\b\u7b86", // 箆
+ 0x7b87: "v\b\u7b87", // 箇
+ 0x7b88: "v\b\u7b88", // 箈
+ 0x7b89: "v\b\u7b89", // 箉
+ 0x7b8a: "v\b\u7b8a", // 箊
+ 0x7b8b: "v\b\u7b8b", // 箋
+ 0x7b8c: "v\b\u7b8c", // 箌
+ 0x7b8d: "v\b\u7b8d", // 箍
+ 0x7b8e: "v\b\u7b8e", // 箎
+ 0x7b8f: "v\b\u7b8f", // 箏
+ 0x7b90: "v\b\u7b90", // 箐
+ 0x7b91: "v\b\u7b91", // 箑
+ 0x7b92: "v\b\u7b92", // 箒
+ 0x7b93: "v\b\u7b93", // 箓
+ 0x7b94: "v\b\u7b94", // 箔
+ 0x7b95: "v\b\u7b95", // 箕
+ 0x7b96: "v\b\u7b96", // 箖
+ 0x7b97: "v\b\u7b97", // 算
+ 0x7b98: "v\b\u7b98", // 箘
+ 0x7b99: "v\b\u7b99", // 箙
+ 0x7b9a: "v\b\u7b9a", // 箚
+ 0x7b9b: "v\b\u7b9b", // 箛
+ 0x7b9c: "v\b\u7b9c", // 箜
+ 0x7b9d: "v\b\u7b9d", // 箝
+ 0x7b9e: "v\b\u7b9e", // 箞
+ 0x7b9f: "v\b\u7b9f", // 箟
+ 0x7ba0: "v\b\u7ba0", // 箠
+ 0x7ba1: "v\b\u7ba1", // 管
+ 0x7ba2: "v\b\u7ba2", // 箢
+ 0x7ba3: "v\b\u7ba3", // 箣
+ 0x7ba4: "v\b\u7ba4", // 箤
+ 0x7ba5: "v\b\u7ba5", // 箥
+ 0x7ba6: "v\b\u7ba6", // 箦
+ 0x7ba7: "v\b\u7ba7", // 箧
+ 0x7ba8: "v\b\u7ba8", // 箨
+ 0x7ba9: "v\b\u7ba9", // 箩
+ 0x7baa: "v\b\u7baa", // 箪
+ 0x7bab: "v\b\u7bab", // 箫
+ 0x7bac: "v\t\u7bac", // 箬
+ 0x7bad: "v\t\u7bad", // 箭
+ 0x7bae: "v\t\u7bae", // 箮
+ 0x7baf: "v\t\u7baf", // 箯
+ 0x7bb0: "v\t\u7bb0", // 箰
+ 0x7bb1: "v\t\u7bb1", // 箱
+ 0x7bb2: "v\t\u7bb2", // 箲
+ 0x7bb3: "v\t\u7bb3", // 箳
+ 0x7bb4: "v\t\u7bb4", // 箴
+ 0x7bb5: "v\t\u7bb5", // 箵
+ 0x7bb6: "v\t\u7bb6", // 箶
+ 0x7bb7: "v\t\u7bb7", // 箷
+ 0x7bb8: "v\t\u7bb8", // 箸
+ 0x7bb9: "v\t\u7bb9", // 箹
+ 0x7bba: "v\t\u7bba", // 箺
+ 0x7bbb: "v\t\u7bbb", // 箻
+ 0x7bbc: "v\t\u7bbc", // 箼
+ 0x7bbd: "v\t\u7bbd", // 箽
+ 0x7bbe: "v\t\u7bbe", // 箾
+ 0x7bbf: "v\t\u7bbf", // 箿
+ 0x7bc0: "v\a\u7bc0", // 節
+ 0x7bc1: "v\t\u7bc1", // 篁
+ 0x7bc2: "v\t\u7bc2", // 篂
+ 0x7bc3: "v\t\u7bc3", // 篃
+ 0x7bc4: "v\t\u7bc4", // 範
+ 0x7bc5: "v\t\u7bc5", // 篅
+ 0x7bc6: "v\t\u7bc6", // 篆
+ 0x7bc7: "v\t\u7bc7", // 篇
+ 0x7bc8: "v\t\u7bc8", // 篈
+ 0x7bc9: "v\n\u7bc9", // 築
+ 0x7bca: "v\t\u7bca", // 篊
+ 0x7bcb: "v\t\u7bcb", // 篋
+ 0x7bcc: "v\t\u7bcc", // 篌
+ 0x7bcd: "v\t\u7bcd", // 篍
+ 0x7bce: "v\t\u7bce", // 篎
+ 0x7bcf: "v\t\u7bcf", // 篏
+ 0x7bd0: "v\t\u7bd0", // 篐
+ 0x7bd1: "v\t\u7bd1", // 篑
+ 0x7bd2: "v\t\u7bd2", // 篒
+ 0x7bd3: "v\t\u7bd3", // 篓
+ 0x7bd4: "v\n\u7bd4", // 篔
+ 0x7bd5: "v\n\u7bd5", // 篕
+ 0x7bd6: "v\n\u7bd6", // 篖
+ 0x7bd7: "v\n\u7bd7", // 篗
+ 0x7bd8: "v\n\u7bd8", // 篘
+ 0x7bd9: "v\n\u7bd9", // 篙
+ 0x7bda: "v\n\u7bda", // 篚
+ 0x7bdb: "v\n\u7bdb", // 篛
+ 0x7bdc: "v\n\u7bdc", // 篜
+ 0x7bdd: "v\n\u7bdd", // 篝
+ 0x7bde: "v\n\u7bde", // 篞
+ 0x7bdf: "v\n\u7bdf", // 篟
+ 0x7be0: "v\n\u7be0", // 篠
+ 0x7be1: "v\n\u7be1", // 篡
+ 0x7be2: "v\n\u7be2", // 篢
+ 0x7be3: "v\n\u7be3", // 篣
+ 0x7be4: "v\n\u7be4", // 篤
+ 0x7be5: "v\n\u7be5", // 篥
+ 0x7be6: "v\n\u7be6", // 篦
+ 0x7be7: "v\n\u7be7", // 篧
+ 0x7be8: "v\n\u7be8", // 篨
+ 0x7be9: "v\n\u7be9", // 篩
+ 0x7bea: "v\n\u7bea", // 篪
+ 0x7beb: "v\n\u7beb", // 篫
+ 0x7bec: "v\n\u7bec", // 篬
+ 0x7bed: "v\n\u7bed", // 篭
+ 0x7bee: "v\n\u7bee", // 篮
+ 0x7bef: "v\n\u7bef", // 篯
+ 0x7bf0: "v\v\u7bf0", // 篰
+ 0x7bf1: "v\v\u7bf1", // 篱
+ 0x7bf2: "v\v\u7bf2", // 篲
+ 0x7bf3: "v\v\u7bf3", // 篳
+ 0x7bf4: "v\v\u7bf4", // 篴
+ 0x7bf5: "v\v\u7bf5", // 篵
+ 0x7bf6: "v\v\u7bf6", // 篶
+ 0x7bf7: "v\v\u7bf7", // 篷
+ 0x7bf8: "v\v\u7bf8", // 篸
+ 0x7bf9: "v\v\u7bf9", // 篹
+ 0x7bfa: "v\v\u7bfa", // 篺
+ 0x7bfb: "v\v\u7bfb", // 篻
+ 0x7bfc: "v\v\u7bfc", // 篼
+ 0x7bfd: "v\v\u7bfd", // 篽
+ 0x7bfe: "v\v\u7bfe", // 篾
+ 0x7bff: "v\v\u7bff", // 篿
+ 0x7c00: "v\v\u7c00", // 簀
+ 0x7c01: "v\v\u7c01", // 簁
+ 0x7c02: "v\v\u7c02", // 簂
+ 0x7c03: "v\v\u7c03", // 簃
+ 0x7c04: "v\v\u7c04", // 簄
+ 0x7c05: "v\v\u7c05", // 簅
+ 0x7c06: "v\v\u7c06", // 簆
+ 0x7c07: "v\v\u7c07", // 簇
+ 0x7c08: "v\v\u7c08", // 簈
+ 0x7c09: "v\v\u7c09", // 簉
+ 0x7c0a: "v\v\u7c0a", // 簊
+ 0x7c0b: "v\v\u7c0b", // 簋
+ 0x7c0c: "v\v\u7c0c", // 簌
+ 0x7c0d: "v\v\u7c0d", // 簍
+ 0x7c0e: "v\v\u7c0e", // 簎
+ 0x7c0f: "v\v\u7c0f", // 簏
+ 0x7c10: "v\v\u7c10", // 簐
+ 0x7c11: "v\n\u7c11", // 簑
+ 0x7c12: "v\v\u7c12", // 簒
+ 0x7c13: "v\v\u7c13", // 簓
+ 0x7c14: "v\v\u7c14", // 簔
+ 0x7c15: "v\n\u7c15", // 簕
+ 0x7c16: "v\v\u7c16", // 簖
+ 0x7c17: "v\v\u7c17", // 簗
+ 0x7c18: "v\f\u7c18", // 簘
+ 0x7c19: "v\f\u7c19", // 簙
+ 0x7c1a: "v\f\u7c1a", // 簚
+ 0x7c1b: "v\f\u7c1b", // 簛
+ 0x7c1c: "v\f\u7c1c", // 簜
+ 0x7c1d: "v\f\u7c1d", // 簝
+ 0x7c1e: "v\f\u7c1e", // 簞
+ 0x7c1f: "v\f\u7c1f", // 簟
+ 0x7c20: "v\f\u7c20", // 簠
+ 0x7c21: "v\f\u7c21", // 簡
+ 0x7c22: "v\f\u7c22", // 簢
+ 0x7c23: "v\f\u7c23", // 簣
+ 0x7c24: "v\f\u7c24", // 簤
+ 0x7c25: "v\f\u7c25", // 簥
+ 0x7c26: "v\f\u7c26", // 簦
+ 0x7c27: "v\f\u7c27", // 簧
+ 0x7c28: "v\f\u7c28", // 簨
+ 0x7c29: "v\f\u7c29", // 簩
+ 0x7c2a: "v\f\u7c2a", // 簪
+ 0x7c2b: "v\f\u7c2b", // 簫
+ 0x7c2c: "v\f\u7c2c", // 簬
+ 0x7c2d: "v\f\u7c2d", // 簭
+ 0x7c2e: "v\f\u7c2e", // 簮
+ 0x7c2f: "v\f\u7c2f", // 簯
+ 0x7c30: "v\f\u7c30", // 簰
+ 0x7c31: "v\f\u7c31", // 簱
+ 0x7c32: "v\f\u7c32", // 簲
+ 0x7c33: "v\r\u7c33", // 簳
+ 0x7c34: "v\r\u7c34", // 簴
+ 0x7c35: "v\r\u7c35", // 簵
+ 0x7c36: "v\r\u7c36", // 簶
+ 0x7c37: "v\r\u7c37", // 簷
+ 0x7c38: "v\r\u7c38", // 簸
+ 0x7c39: "v\r\u7c39", // 簹
+ 0x7c3a: "v\r\u7c3a", // 簺
+ 0x7c3b: "v\r\u7c3b", // 簻
+ 0x7c3c: "v\r\u7c3c", // 簼
+ 0x7c3d: "v\r\u7c3d", // 簽
+ 0x7c3e: "v\r\u7c3e", // 簾
+ 0x7c3f: "v\r\u7c3f", // 簿
+ 0x7c40: "v\r\u7c40", // 籀
+ 0x7c41: "v\r\u7c41", // 籁
+ 0x7c42: "v\r\u7c42", // 籂
+ 0x7c43: "v\x0e\u7c43", // 籃
+ 0x7c44: "v\x0e\u7c44", // 籄
+ 0x7c45: "v\x0e\u7c45", // 籅
+ 0x7c46: "v\x0e\u7c46", // 籆
+ 0x7c47: "v\x0e\u7c47", // 籇
+ 0x7c48: "v\x0e\u7c48", // 籈
+ 0x7c49: "v\x0e\u7c49", // 籉
+ 0x7c4a: "v\x0e\u7c4a", // 籊
+ 0x7c4b: "v\x0e\u7c4b", // 籋
+ 0x7c4c: "v\x0e\u7c4c", // 籌
+ 0x7c4d: "v\x0e\u7c4d", // 籍
+ 0x7c4e: "v\x0e\u7c4e", // 籎
+ 0x7c4f: "v\x0e\u7c4f", // 籏
+ 0x7c50: "v\x0f\u7c50", // 籐
+ 0x7c51: "v\x0f\u7c51", // 籑
+ 0x7c52: "v\x0f\u7c52", // 籒
+ 0x7c53: "v\x0f\u7c53", // 籓
+ 0x7c54: "v\x0f\u7c54", // 籔
+ 0x7c55: "v\x0e\u7c55", // 籕
+ 0x7c56: "v\x0e\u7c56", // 籖
+ 0x7c57: "v\x10\u7c57", // 籗
+ 0x7c58: "v\x10\u7c58", // 籘
+ 0x7c59: "v\x10\u7c59", // 籙
+ 0x7c5a: "v\x10\u7c5a", // 籚
+ 0x7c5b: "v\x10\u7c5b", // 籛
+ 0x7c5c: "v\x10\u7c5c", // 籜
+ 0x7c5d: "v\x10\u7c5d", // 籝
+ 0x7c5e: "v\x10\u7c5e", // 籞
+ 0x7c5f: "v\x10\u7c5f", // 籟
+ 0x7c60: "v\x10\u7c60", // 籠
+ 0x7c61: "v\x10\u7c61", // 籡
+ 0x7c62: "v\x11\u7c62", // 籢
+ 0x7c63: "v\x11\u7c63", // 籣
+ 0x7c64: "v\x11\u7c64", // 籤
+ 0x7c65: "v\x11\u7c65", // 籥
+ 0x7c66: "v\x11\u7c66", // 籦
+ 0x7c67: "v\x11\u7c67", // 籧
+ 0x7c68: "v\x11\u7c68", // 籨
+ 0x7c69: "v\x13\u7c69", // 籩
+ 0x7c6a: "v\x12\u7c6a", // 籪
+ 0x7c6b: "v\x13\u7c6b", // 籫
+ 0x7c6c: "v\x13\u7c6c", // 籬
+ 0x7c6d: "v\x13\u7c6d", // 籭
+ 0x7c6e: "v\x13\u7c6e", // 籮
+ 0x7c6f: "v\x14\u7c6f", // 籯
+ 0x7c70: "v\x14\u7c70", // 籰
+ 0x7c71: "v\x18\u7c71", // 籱
+ 0x7c72: "v\x1a\u7c72", // 籲
+ 0x7c73: "w\x00\u7c73", // 米
+ 0x7c74: "w\x02\u7c74", // 籴
+ 0x7c75: "w\x02\u7c75", // 籵
+ 0x7c76: "w\x02\u7c76", // 籶
+ 0x7c77: "w\x03\u7c77", // 籷
+ 0x7c78: "w\x03\u7c78", // 籸
+ 0x7c79: "w\x03\u7c79", // 籹
+ 0x7c7a: "w\x03\u7c7a", // 籺
+ 0x7c7b: "w\x03\u7c7b", // 类
+ 0x7c7c: "w\x03\u7c7c", // 籼
+ 0x7c7d: "w\x03\u7c7d", // 籽
+ 0x7c7e: "w\x03\u7c7e", // 籾
+ 0x7c7f: "w\x03\u7c7f", // 籿
+ 0x7c80: "w\x03\u7c80", // 粀
+ 0x7c81: "w\x03\u7c81", // 粁
+ 0x7c82: "w\x03\u7c82", // 粂
+ 0x7c83: "w\x04\u7c83", // 粃
+ 0x7c84: "w\x04\u7c84", // 粄
+ 0x7c85: "w\x04\u7c85", // 粅
+ 0x7c86: "w\x04\u7c86", // 粆
+ 0x7c87: "w\x04\u7c87", // 粇
+ 0x7c88: "w\x04\u7c88", // 粈
+ 0x7c89: "w\x04\u7c89", // 粉
+ 0x7c8a: "w\x04\u7c8a", // 粊
+ 0x7c8b: "w\x04\u7c8b", // 粋
+ 0x7c8c: "w\x04\u7c8c", // 粌
+ 0x7c8d: "w\x04\u7c8d", // 粍
+ 0x7c8e: "w\x04\u7c8e", // 粎
+ 0x7c8f: "w\x04\u7c8f", // 粏
+ 0x7c90: "w\x04\u7c90", // 粐
+ 0x7c91: "w\x04\u7c91", // 粑
+ 0x7c92: "w\x05\u7c92", // 粒
+ 0x7c93: "w\x05\u7c93", // 粓
+ 0x7c94: "w\x05\u7c94", // 粔
+ 0x7c95: "w\x05\u7c95", // 粕
+ 0x7c96: "w\x05\u7c96", // 粖
+ 0x7c97: "w\x05\u7c97", // 粗
+ 0x7c98: "w\x05\u7c98", // 粘
+ 0x7c99: "w\x05\u7c99", // 粙
+ 0x7c9a: "w\x05\u7c9a", // 粚
+ 0x7c9b: "w\x05\u7c9b", // 粛
+ 0x7c9c: "w\x05\u7c9c", // 粜
+ 0x7c9d: "w\x05\u7c9d", // 粝
+ 0x7c9e: "w\x06\u7c9e", // 粞
+ 0x7c9f: "w\x06\u7c9f", // 粟
+ 0x7ca0: "w\x06\u7ca0", // 粠
+ 0x7ca1: "w\x06\u7ca1", // 粡
+ 0x7ca2: "w\x06\u7ca2", // 粢
+ 0x7ca3: "w\x05\u7ca3", // 粣
+ 0x7ca4: "w\x06\u7ca4", // 粤
+ 0x7ca5: "w\x06\u7ca5", // 粥
+ 0x7ca6: "w\x06\u7ca6", // 粦
+ 0x7ca7: "w\x06\u7ca7", // 粧
+ 0x7ca8: "w\x06\u7ca8", // 粨
+ 0x7ca9: "w\x06\u7ca9", // 粩
+ 0x7caa: "w\x06\u7caa", // 粪
+ 0x7cab: "w\x06\u7cab", // 粫
+ 0x7cac: "w\x06\u7cac", // 粬
+ 0x7cad: "w\x06\u7cad", // 粭
+ 0x7cae: "w\a\u7cae", // 粮
+ 0x7caf: "w\a\u7caf", // 粯
+ 0x7cb0: "w\a\u7cb0", // 粰
+ 0x7cb1: "w\a\u7cb1", // 粱
+ 0x7cb2: "w\a\u7cb2", // 粲
+ 0x7cb3: "w\a\u7cb3", // 粳
+ 0x7cb4: "w\a\u7cb4", // 粴
+ 0x7cb5: "w\a\u7cb5", // 粵
+ 0x7cb6: "w\b\u7cb6", // 粶
+ 0x7cb7: "w\b\u7cb7", // 粷
+ 0x7cb8: "w\b\u7cb8", // 粸
+ 0x7cb9: "w\b\u7cb9", // 粹
+ 0x7cba: "w\b\u7cba", // 粺
+ 0x7cbb: "w\b\u7cbb", // 粻
+ 0x7cbc: "w\b\u7cbc", // 粼
+ 0x7cbd: "w\b\u7cbd", // 粽
+ 0x7cbe: "w\b\u7cbe", // 精
+ 0x7cbf: "w\b\u7cbf", // 粿
+ 0x7cc0: "w\a\u7cc0", // 糀
+ 0x7cc1: "w\b\u7cc1", // 糁
+ 0x7cc2: "w\t\u7cc2", // 糂
+ 0x7cc3: "w\t\u7cc3", // 糃
+ 0x7cc4: "w\t\u7cc4", // 糄
+ 0x7cc5: "w\t\u7cc5", // 糅
+ 0x7cc6: "w\t\u7cc6", // 糆
+ 0x7cc7: "w\t\u7cc7", // 糇
+ 0x7cc8: "w\t\u7cc8", // 糈
+ 0x7cc9: "w\t\u7cc9", // 糉
+ 0x7cca: "w\t\u7cca", // 糊
+ 0x7ccb: "w\t\u7ccb", // 糋
+ 0x7ccc: "w\t\u7ccc", // 糌
+ 0x7ccd: "w\t\u7ccd", // 糍
+ 0x7cce: "w\t\u7cce", // 糎
+ 0x7ccf: "w\n\u7ccf", // 糏
+ 0x7cd0: "w\n\u7cd0", // 糐
+ 0x7cd1: "w\n\u7cd1", // 糑
+ 0x7cd2: "w\n\u7cd2", // 糒
+ 0x7cd3: "w\n\u7cd3", // 糓
+ 0x7cd4: "w\n\u7cd4", // 糔
+ 0x7cd5: "w\n\u7cd5", // 糕
+ 0x7cd6: "w\n\u7cd6", // 糖
+ 0x7cd7: "w\n\u7cd7", // 糗
+ 0x7cd8: "w\n\u7cd8", // 糘
+ 0x7cd9: "w\v\u7cd9", // 糙
+ 0x7cda: "w\v\u7cda", // 糚
+ 0x7cdb: "w\v\u7cdb", // 糛
+ 0x7cdc: "w\v\u7cdc", // 糜
+ 0x7cdd: "w\v\u7cdd", // 糝
+ 0x7cde: "w\v\u7cde", // 糞
+ 0x7cdf: "w\v\u7cdf", // 糟
+ 0x7ce0: "w\v\u7ce0", // 糠
+ 0x7ce1: "w\v\u7ce1", // 糡
+ 0x7ce2: "w\v\u7ce2", // 糢
+ 0x7ce3: "w\f\u7ce3", // 糣
+ 0x7ce4: "w\f\u7ce4", // 糤
+ 0x7ce5: "w\f\u7ce5", // 糥
+ 0x7ce6: "w\f\u7ce6", // 糦
+ 0x7ce7: "w\f\u7ce7", // 糧
+ 0x7ce8: "w\v\u7ce8", // 糨
+ 0x7ce9: "w\r\u7ce9", // 糩
+ 0x7cea: "w\r\u7cea", // 糪
+ 0x7ceb: "w\r\u7ceb", // 糫
+ 0x7cec: "w\r\u7cec", // 糬
+ 0x7ced: "w\r\u7ced", // 糭
+ 0x7cee: "w\x0e\u7cee", // 糮
+ 0x7cef: "w\x0e\u7cef", // 糯
+ 0x7cf0: "w\x0e\u7cf0", // 糰
+ 0x7cf1: "w\x10\u7cf1", // 糱
+ 0x7cf2: "w\x0f\u7cf2", // 糲
+ 0x7cf3: "w\x10\u7cf3", // 糳
+ 0x7cf4: "w\x10\u7cf4", // 糴
+ 0x7cf5: "w\x11\u7cf5", // 糵
+ 0x7cf6: "w\x13\u7cf6", // 糶
+ 0x7cf7: "w\x15\u7cf7", // 糷
+ 0x7cf8: "x\x00\u7cf8", // 糸
+ 0x7cf9: "x\x00\u7cf9", // 糹
+ 0x7cfa: "x\x01\u7cfa", // 糺
+ 0x7cfb: "x\x01\u7cfb", // 系
+ 0x7cfc: "x\x02\u7cfc", // 糼
+ 0x7cfd: "x\x02\u7cfd", // 糽
+ 0x7cfe: "x\x02\u7cfe", // 糾
+ 0x7cff: "x\x02\u7cff", // 糿
+ 0x7d00: "x\x03\u7d00", // 紀
+ 0x7d01: "x\x03\u7d01", // 紁
+ 0x7d02: "x\x03\u7d02", // 紂
+ 0x7d03: "x\x03\u7d03", // 紃
+ 0x7d04: "x\x03\u7d04", // 約
+ 0x7d05: "x\x03\u7d05", // 紅
+ 0x7d06: "x\x03\u7d06", // 紆
+ 0x7d07: "x\x03\u7d07", // 紇
+ 0x7d08: "x\x03\u7d08", // 紈
+ 0x7d09: "x\x03\u7d09", // 紉
+ 0x7d0a: "x\x04\u7d0a", // 紊
+ 0x7d0b: "x\x04\u7d0b", // 紋
+ 0x7d0c: "x\x04\u7d0c", // 紌
+ 0x7d0d: "x\x04\u7d0d", // 納
+ 0x7d0e: "x\x04\u7d0e", // 紎
+ 0x7d0f: "x\x04\u7d0f", // 紏
+ 0x7d10: "x\x04\u7d10", // 紐
+ 0x7d11: "x\x04\u7d11", // 紑
+ 0x7d12: "x\x04\u7d12", // 紒
+ 0x7d13: "x\x04\u7d13", // 紓
+ 0x7d14: "x\x04\u7d14", // 純
+ 0x7d15: "x\x04\u7d15", // 紕
+ 0x7d16: "x\x04\u7d16", // 紖
+ 0x7d17: "x\x04\u7d17", // 紗
+ 0x7d18: "x\x04\u7d18", // 紘
+ 0x7d19: "x\x04\u7d19", // 紙
+ 0x7d1a: "x\x04\u7d1a", // 級
+ 0x7d1b: "x\x04\u7d1b", // 紛
+ 0x7d1c: "x\x04\u7d1c", // 紜
+ 0x7d1d: "x\x04\u7d1d", // 紝
+ 0x7d1e: "x\x04\u7d1e", // 紞
+ 0x7d1f: "x\x04\u7d1f", // 紟
+ 0x7d20: "x\x04\u7d20", // 素
+ 0x7d21: "x\x04\u7d21", // 紡
+ 0x7d22: "x\x04\u7d22", // 索
+ 0x7d23: "x\x04\u7d23", // 紣
+ 0x7d24: "x\x04\u7d24", // 紤
+ 0x7d25: "x\x04\u7d25", // 紥
+ 0x7d26: "x\x04\u7d26", // 紦
+ 0x7d27: "x\x04\u7d27", // 紧
+ 0x7d28: "x\x05\u7d28", // 紨
+ 0x7d29: "x\x05\u7d29", // 紩
+ 0x7d2a: "x\x05\u7d2a", // 紪
+ 0x7d2b: "x\x05\u7d2b", // 紫
+ 0x7d2c: "x\x05\u7d2c", // 紬
+ 0x7d2d: "x\x05\u7d2d", // 紭
+ 0x7d2e: "x\x05\u7d2e", // 紮
+ 0x7d2f: "x\x05\u7d2f", // 累
+ 0x7d30: "x\x05\u7d30", // 細
+ 0x7d31: "x\x05\u7d31", // 紱
+ 0x7d32: "x\x05\u7d32", // 紲
+ 0x7d33: "x\x05\u7d33", // 紳
+ 0x7d34: "x\x05\u7d34", // 紴
+ 0x7d35: "x\x05\u7d35", // 紵
+ 0x7d36: "x\x05\u7d36", // 紶
+ 0x7d37: "x\x05\u7d37", // 紷
+ 0x7d38: "x\x05\u7d38", // 紸
+ 0x7d39: "x\x05\u7d39", // 紹
+ 0x7d3a: "x\x05\u7d3a", // 紺
+ 0x7d3b: "x\x05\u7d3b", // 紻
+ 0x7d3c: "x\x05\u7d3c", // 紼
+ 0x7d3d: "x\x05\u7d3d", // 紽
+ 0x7d3e: "x\x05\u7d3e", // 紾
+ 0x7d3f: "x\x05\u7d3f", // 紿
+ 0x7d40: "x\x05\u7d40", // 絀
+ 0x7d41: "x\x05\u7d41", // 絁
+ 0x7d42: "x\x05\u7d42", // 終
+ 0x7d43: "x\x05\u7d43", // 絃
+ 0x7d44: "x\x05\u7d44", // 組
+ 0x7d45: "x\x05\u7d45", // 絅
+ 0x7d46: "x\x05\u7d46", // 絆
+ 0x7d47: "x\x05\u7d47", // 絇
+ 0x7d48: "x\x05\u7d48", // 絈
+ 0x7d49: "x\x05\u7d49", // 絉
+ 0x7d4a: "x\x05\u7d4a", // 絊
+ 0x7d4b: "x\x05\u7d4b", // 絋
+ 0x7d4c: "x\x05\u7d4c", // 経
+ 0x7d4d: "x\x06\u7d4d", // 絍
+ 0x7d4e: "x\x06\u7d4e", // 絎
+ 0x7d4f: "x\x06\u7d4f", // 絏
+ 0x7d50: "x\x06\u7d50", // 結
+ 0x7d51: "x\x06\u7d51", // 絑
+ 0x7d52: "x\x06\u7d52", // 絒
+ 0x7d53: "x\x06\u7d53", // 絓
+ 0x7d54: "x\x06\u7d54", // 絔
+ 0x7d55: "x\x06\u7d55", // 絕
+ 0x7d56: "x\x06\u7d56", // 絖
+ 0x7d57: "x\x06\u7d57", // 絗
+ 0x7d58: "x\x06\u7d58", // 絘
+ 0x7d59: "x\x06\u7d59", // 絙
+ 0x7d5a: "x\x06\u7d5a", // 絚
+ 0x7d5b: "x\a\u7d5b", // 絛
+ 0x7d5c: "x\x06\u7d5c", // 絜
+ 0x7d5d: "x\x06\u7d5d", // 絝
+ 0x7d5e: "x\x06\u7d5e", // 絞
+ 0x7d5f: "x\x06\u7d5f", // 絟
+ 0x7d60: "x\x06\u7d60", // 絠
+ 0x7d61: "x\x06\u7d61", // 絡
+ 0x7d62: "x\x06\u7d62", // 絢
+ 0x7d63: "x\x06\u7d63", // 絣
+ 0x7d64: "x\x06\u7d64", // 絤
+ 0x7d65: "x\x06\u7d65", // 絥
+ 0x7d66: "x\x06\u7d66", // 給
+ 0x7d67: "x\x06\u7d67", // 絧
+ 0x7d68: "x\x06\u7d68", // 絨
+ 0x7d69: "x\x06\u7d69", // 絩
+ 0x7d6a: "x\x06\u7d6a", // 絪
+ 0x7d6b: "x\x06\u7d6b", // 絫
+ 0x7d6c: "x\x06\u7d6c", // 絬
+ 0x7d6d: "x\x06\u7d6d", // 絭
+ 0x7d6e: "x\x06\u7d6e", // 絮
+ 0x7d6f: "x\x06\u7d6f", // 絯
+ 0x7d70: "x\x06\u7d70", // 絰
+ 0x7d71: "x\x06\u7d71", // 統
+ 0x7d72: "x\x06\u7d72", // 絲
+ 0x7d73: "x\x06\u7d73", // 絳
+ 0x7d74: "x\x06\u7d74", // 絴
+ 0x7d75: "x\x06\u7d75", // 絵
+ 0x7d76: "x\x06\u7d76", // 絶
+ 0x7d77: "x\x06\u7d77", // 絷
+ 0x7d78: "x\a\u7d78", // 絸
+ 0x7d79: "x\a\u7d79", // 絹
+ 0x7d7a: "x\a\u7d7a", // 絺
+ 0x7d7b: "x\a\u7d7b", // 絻
+ 0x7d7c: "x\a\u7d7c", // 絼
+ 0x7d7d: "x\a\u7d7d", // 絽
+ 0x7d7e: "x\a\u7d7e", // 絾
+ 0x7d7f: "x\a\u7d7f", // 絿
+ 0x7d80: "x\a\u7d80", // 綀
+ 0x7d81: "x\a\u7d81", // 綁
+ 0x7d82: "x\a\u7d82", // 綂
+ 0x7d83: "x\a\u7d83", // 綃
+ 0x7d84: "x\a\u7d84", // 綄
+ 0x7d85: "x\a\u7d85", // 綅
+ 0x7d86: "x\a\u7d86", // 綆
+ 0x7d87: "x\a\u7d87", // 綇
+ 0x7d88: "x\a\u7d88", // 綈
+ 0x7d89: "x\a\u7d89", // 綉
+ 0x7d8a: "x\a\u7d8a", // 綊
+ 0x7d8b: "x\a\u7d8b", // 綋
+ 0x7d8c: "x\a\u7d8c", // 綌
+ 0x7d8d: "x\a\u7d8d", // 綍
+ 0x7d8e: "x\a\u7d8e", // 綎
+ 0x7d8f: "x\a\u7d8f", // 綏
+ 0x7d90: "x\a\u7d90", // 綐
+ 0x7d91: "x\a\u7d91", // 綑
+ 0x7d92: "x\a\u7d92", // 綒
+ 0x7d93: "x\a\u7d93", // 經
+ 0x7d94: "x\a\u7d94", // 綔
+ 0x7d95: "x\a\u7d95", // 綕
+ 0x7d96: "x\a\u7d96", // 綖
+ 0x7d97: "x\a\u7d97", // 綗
+ 0x7d98: "x\a\u7d98", // 綘
+ 0x7d99: "x\a\u7d99", // 継
+ 0x7d9a: "x\a\u7d9a", // 続
+ 0x7d9b: "x\a\u7d9b", // 綛
+ 0x7d9c: "x\b\u7d9c", // 綜
+ 0x7d9d: "x\b\u7d9d", // 綝
+ 0x7d9e: "x\b\u7d9e", // 綞
+ 0x7d9f: "x\b\u7d9f", // 綟
+ 0x7da0: "x\b\u7da0", // 綠
+ 0x7da1: "x\b\u7da1", // 綡
+ 0x7da2: "x\b\u7da2", // 綢
+ 0x7da3: "x\b\u7da3", // 綣
+ 0x7da4: "x\b\u7da4", // 綤
+ 0x7da5: "x\b\u7da5", // 綥
+ 0x7da6: "x\b\u7da6", // 綦
+ 0x7da7: "x\b\u7da7", // 綧
+ 0x7da8: "x\b\u7da8", // 綨
+ 0x7da9: "x\b\u7da9", // 綩
+ 0x7daa: "x\b\u7daa", // 綪
+ 0x7dab: "x\b\u7dab", // 綫
+ 0x7dac: "x\b\u7dac", // 綬
+ 0x7dad: "x\b\u7dad", // 維
+ 0x7dae: "x\b\u7dae", // 綮
+ 0x7daf: "x\b\u7daf", // 綯
+ 0x7db0: "x\b\u7db0", // 綰
+ 0x7db1: "x\b\u7db1", // 綱
+ 0x7db2: "x\b\u7db2", // 網
+ 0x7db3: "x\b\u7db3", // 綳
+ 0x7db4: "x\b\u7db4", // 綴
+ 0x7db5: "x\b\u7db5", // 綵
+ 0x7db6: "x\b\u7db6", // 綶
+ 0x7db7: "x\b\u7db7", // 綷
+ 0x7db8: "x\b\u7db8", // 綸
+ 0x7db9: "x\b\u7db9", // 綹
+ 0x7dba: "x\b\u7dba", // 綺
+ 0x7dbb: "x\b\u7dbb", // 綻
+ 0x7dbc: "x\b\u7dbc", // 綼
+ 0x7dbd: "x\b\u7dbd", // 綽
+ 0x7dbe: "x\b\u7dbe", // 綾
+ 0x7dbf: "x\b\u7dbf", // 綿
+ 0x7dc0: "x\b\u7dc0", // 緀
+ 0x7dc1: "x\b\u7dc1", // 緁
+ 0x7dc2: "x\b\u7dc2", // 緂
+ 0x7dc3: "x\b\u7dc3", // 緃
+ 0x7dc4: "x\b\u7dc4", // 緄
+ 0x7dc5: "x\b\u7dc5", // 緅
+ 0x7dc6: "x\b\u7dc6", // 緆
+ 0x7dc7: "x\b\u7dc7", // 緇
+ 0x7dc8: "x\b\u7dc8", // 緈
+ 0x7dc9: "x\b\u7dc9", // 緉
+ 0x7dca: "x\b\u7dca", // 緊
+ 0x7dcb: "x\b\u7dcb", // 緋
+ 0x7dcc: "x\b\u7dcc", // 緌
+ 0x7dcd: "x\b\u7dcd", // 緍
+ 0x7dce: "x\b\u7dce", // 緎
+ 0x7dcf: "x\b\u7dcf", // 総
+ 0x7dd0: "x\a\u7dd0", // 緐
+ 0x7dd1: "x\b\u7dd1", // 緑
+ 0x7dd2: "x\b\u7dd2", // 緒
+ 0x7dd3: "x\t\u7dd3", // 緓
+ 0x7dd4: "x\b\u7dd4", // 緔
+ 0x7dd5: "x\b\u7dd5", // 緕
+ 0x7dd6: "x\t\u7dd6", // 緖
+ 0x7dd7: "x\t\u7dd7", // 緗
+ 0x7dd8: "x\t\u7dd8", // 緘
+ 0x7dd9: "x\t\u7dd9", // 緙
+ 0x7dda: "x\t\u7dda", // 線
+ 0x7ddb: "x\t\u7ddb", // 緛
+ 0x7ddc: "x\t\u7ddc", // 緜
+ 0x7ddd: "x\t\u7ddd", // 緝
+ 0x7dde: "x\t\u7dde", // 緞
+ 0x7ddf: "x\t\u7ddf", // 緟
+ 0x7de0: "x\t\u7de0", // 締
+ 0x7de1: "x\t\u7de1", // 緡
+ 0x7de2: "x\t\u7de2", // 緢
+ 0x7de3: "x\t\u7de3", // 緣
+ 0x7de4: "x\t\u7de4", // 緤
+ 0x7de5: "x\t\u7de5", // 緥
+ 0x7de6: "x\t\u7de6", // 緦
+ 0x7de7: "x\t\u7de7", // 緧
+ 0x7de8: "x\t\u7de8", // 編
+ 0x7de9: "x\t\u7de9", // 緩
+ 0x7dea: "x\t\u7dea", // 緪
+ 0x7deb: "x\t\u7deb", // 緫
+ 0x7dec: "x\t\u7dec", // 緬
+ 0x7ded: "x\t\u7ded", // 緭
+ 0x7dee: "x\t\u7dee", // 緮
+ 0x7def: "x\t\u7def", // 緯
+ 0x7df0: "x\t\u7df0", // 緰
+ 0x7df1: "x\t\u7df1", // 緱
+ 0x7df2: "x\t\u7df2", // 緲
+ 0x7df3: "x\t\u7df3", // 緳
+ 0x7df4: "x\t\u7df4", // 練
+ 0x7df5: "x\t\u7df5", // 緵
+ 0x7df6: "x\t\u7df6", // 緶
+ 0x7df7: "x\t\u7df7", // 緷
+ 0x7df8: "x\t\u7df8", // 緸
+ 0x7df9: "x\t\u7df9", // 緹
+ 0x7dfa: "x\t\u7dfa", // 緺
+ 0x7dfb: "x\t\u7dfb", // 緻
+ 0x7dfc: "x\t\u7dfc", // 緼
+ 0x7dfd: "x\t\u7dfd", // 緽
+ 0x7dfe: "x\t\u7dfe", // 緾
+ 0x7dff: "x\t\u7dff", // 緿
+ 0x7e00: "x\t\u7e00", // 縀
+ 0x7e01: "x\t\u7e01", // 縁
+ 0x7e02: "x\t\u7e02", // 縂
+ 0x7e03: "x\t\u7e03", // 縃
+ 0x7e04: "x\t\u7e04", // 縄
+ 0x7e05: "x\t\u7e05", // 縅
+ 0x7e06: "x\t\u7e06", // 縆
+ 0x7e07: "x\t\u7e07", // 縇
+ 0x7e08: "x\n\u7e08", // 縈
+ 0x7e09: "x\n\u7e09", // 縉
+ 0x7e0a: "x\n\u7e0a", // 縊
+ 0x7e0b: "x\n\u7e0b", // 縋
+ 0x7e0c: "x\n\u7e0c", // 縌
+ 0x7e0d: "x\n\u7e0d", // 縍
+ 0x7e0e: "x\n\u7e0e", // 縎
+ 0x7e0f: "x\n\u7e0f", // 縏
+ 0x7e10: "x\n\u7e10", // 縐
+ 0x7e11: "x\n\u7e11", // 縑
+ 0x7e12: "x\n\u7e12", // 縒
+ 0x7e13: "x\n\u7e13", // 縓
+ 0x7e14: "x\n\u7e14", // 縔
+ 0x7e15: "x\n\u7e15", // 縕
+ 0x7e16: "x\n\u7e16", // 縖
+ 0x7e17: "x\n\u7e17", // 縗
+ 0x7e18: "x\n\u7e18", // 縘
+ 0x7e19: "x\n\u7e19", // 縙
+ 0x7e1a: "x\n\u7e1a", // 縚
+ 0x7e1b: "x\n\u7e1b", // 縛
+ 0x7e1c: "x\n\u7e1c", // 縜
+ 0x7e1d: "x\n\u7e1d", // 縝
+ 0x7e1e: "x\n\u7e1e", // 縞
+ 0x7e1f: "x\n\u7e1f", // 縟
+ 0x7e20: "x\n\u7e20", // 縠
+ 0x7e21: "x\n\u7e21", // 縡
+ 0x7e22: "x\n\u7e22", // 縢
+ 0x7e23: "x\n\u7e23", // 縣
+ 0x7e24: "x\n\u7e24", // 縤
+ 0x7e25: "x\n\u7e25", // 縥
+ 0x7e26: "x\n\u7e26", // 縦
+ 0x7e27: "x\n\u7e27", // 縧
+ 0x7e28: "x\n\u7e28", // 縨
+ 0x7e29: "x\v\u7e29", // 縩
+ 0x7e2a: "x\v\u7e2a", // 縪
+ 0x7e2b: "x\v\u7e2b", // 縫
+ 0x7e2c: "x\v\u7e2c", // 縬
+ 0x7e2d: "x\v\u7e2d", // 縭
+ 0x7e2e: "x\v\u7e2e", // 縮
+ 0x7e2f: "x\v\u7e2f", // 縯
+ 0x7e30: "x\v\u7e30", // 縰
+ 0x7e31: "x\v\u7e31", // 縱
+ 0x7e32: "x\v\u7e32", // 縲
+ 0x7e33: "x\v\u7e33", // 縳
+ 0x7e34: "x\v\u7e34", // 縴
+ 0x7e35: "x\v\u7e35", // 縵
+ 0x7e36: "x\v\u7e36", // 縶
+ 0x7e37: "x\v\u7e37", // 縷
+ 0x7e38: "x\v\u7e38", // 縸
+ 0x7e39: "x\v\u7e39", // 縹
+ 0x7e3a: "x\v\u7e3a", // 縺
+ 0x7e3b: "x\v\u7e3b", // 縻
+ 0x7e3c: "x\v\u7e3c", // 縼
+ 0x7e3d: "x\v\u7e3d", // 總
+ 0x7e3e: "x\v\u7e3e", // 績
+ 0x7e3f: "x\v\u7e3f", // 縿
+ 0x7e40: "x\v\u7e40", // 繀
+ 0x7e41: "x\v\u7e41", // 繁
+ 0x7e42: "x\v\u7e42", // 繂
+ 0x7e43: "x\v\u7e43", // 繃
+ 0x7e44: "x\v\u7e44", // 繄
+ 0x7e45: "x\v\u7e45", // 繅
+ 0x7e46: "x\v\u7e46", // 繆
+ 0x7e47: "x\v\u7e47", // 繇
+ 0x7e48: "x\f\u7e48", // 繈
+ 0x7e49: "x\v\u7e49", // 繉
+ 0x7e4a: "x\v\u7e4a", // 繊
+ 0x7e4b: "x\r\u7e4b", // 繋
+ 0x7e4c: "x\v\u7e4c", // 繌
+ 0x7e4d: "x\v\u7e4d", // 繍
+ 0x7e4e: "x\f\u7e4e", // 繎
+ 0x7e4f: "x\f\u7e4f", // 繏
+ 0x7e50: "x\f\u7e50", // 繐
+ 0x7e51: "x\f\u7e51", // 繑
+ 0x7e52: "x\f\u7e52", // 繒
+ 0x7e53: "x\f\u7e53", // 繓
+ 0x7e54: "x\f\u7e54", // 織
+ 0x7e55: "x\f\u7e55", // 繕
+ 0x7e56: "x\f\u7e56", // 繖
+ 0x7e57: "x\f\u7e57", // 繗
+ 0x7e58: "x\f\u7e58", // 繘
+ 0x7e59: "x\f\u7e59", // 繙
+ 0x7e5a: "x\f\u7e5a", // 繚
+ 0x7e5b: "x\f\u7e5b", // 繛
+ 0x7e5c: "x\f\u7e5c", // 繜
+ 0x7e5d: "x\f\u7e5d", // 繝
+ 0x7e5e: "x\f\u7e5e", // 繞
+ 0x7e5f: "x\f\u7e5f", // 繟
+ 0x7e60: "x\f\u7e60", // 繠
+ 0x7e61: "x\f\u7e61", // 繡
+ 0x7e62: "x\f\u7e62", // 繢
+ 0x7e63: "x\f\u7e63", // 繣
+ 0x7e64: "x\f\u7e64", // 繤
+ 0x7e65: "x\f\u7e65", // 繥
+ 0x7e66: "x\r\u7e66", // 繦
+ 0x7e67: "x\f\u7e67", // 繧
+ 0x7e68: "x\r\u7e68", // 繨
+ 0x7e69: "x\r\u7e69", // 繩
+ 0x7e6a: "x\r\u7e6a", // 繪
+ 0x7e6b: "x\r\u7e6b", // 繫
+ 0x7e6c: "x\r\u7e6c", // 繬
+ 0x7e6d: "x\r\u7e6d", // 繭
+ 0x7e6e: "x\r\u7e6e", // 繮
+ 0x7e6f: "x\r\u7e6f", // 繯
+ 0x7e70: "x\r\u7e70", // 繰
+ 0x7e71: "x\f\u7e71", // 繱
+ 0x7e72: "x\r\u7e72", // 繲
+ 0x7e73: "x\r\u7e73", // 繳
+ 0x7e74: "x\r\u7e74", // 繴
+ 0x7e75: "x\r\u7e75", // 繵
+ 0x7e76: "x\r\u7e76", // 繶
+ 0x7e77: "x\r\u7e77", // 繷
+ 0x7e78: "x\r\u7e78", // 繸
+ 0x7e79: "x\r\u7e79", // 繹
+ 0x7e7a: "x\r\u7e7a", // 繺
+ 0x7e7b: "x\x0e\u7e7b", // 繻
+ 0x7e7c: "x\x0e\u7e7c", // 繼
+ 0x7e7d: "x\x0e\u7e7d", // 繽
+ 0x7e7e: "x\x0e\u7e7e", // 繾
+ 0x7e7f: "x\x0e\u7e7f", // 繿
+ 0x7e80: "x\x0e\u7e80", // 纀
+ 0x7e81: "x\x0e\u7e81", // 纁
+ 0x7e82: "x\x0e\u7e82", // 纂
+ 0x7e83: "x\x0e\u7e83", // 纃
+ 0x7e84: "x\x0f\u7e84", // 纄
+ 0x7e85: "x\x0f\u7e85", // 纅
+ 0x7e86: "x\x0f\u7e86", // 纆
+ 0x7e87: "x\x0f\u7e87", // 纇
+ 0x7e88: "x\x0f\u7e88", // 纈
+ 0x7e89: "x\x0f\u7e89", // 纉
+ 0x7e8a: "x\x0f\u7e8a", // 纊
+ 0x7e8b: "x\x0f\u7e8b", // 纋
+ 0x7e8c: "x\x0f\u7e8c", // 續
+ 0x7e8d: "x\x0f\u7e8d", // 纍
+ 0x7e8e: "x\x0f\u7e8e", // 纎
+ 0x7e8f: "x\x0f\u7e8f", // 纏
+ 0x7e90: "x\x0f\u7e90", // 纐
+ 0x7e91: "x\x10\u7e91", // 纑
+ 0x7e92: "x\x10\u7e92", // 纒
+ 0x7e93: "x\x11\u7e93", // 纓
+ 0x7e94: "x\x11\u7e94", // 纔
+ 0x7e95: "x\x11\u7e95", // 纕
+ 0x7e96: "x\x11\u7e96", // 纖
+ 0x7e97: "x\x12\u7e97", // 纗
+ 0x7e98: "x\x13\u7e98", // 纘
+ 0x7e99: "x\x13\u7e99", // 纙
+ 0x7e9a: "x\x13\u7e9a", // 纚
+ 0x7e9b: "x\x13\u7e9b", // 纛
+ 0x7e9c: "x\x15\u7e9c", // 纜
+ 0x7e9d: "x\x15\u7e9d", // 纝
+ 0x7e9e: "x\x17\u7e9e", // 纞
+ 0x7e9f: "x\x00\u7e9f", // 纟
+ 0x7ea0: "x\x02\u7ea0", // 纠
+ 0x7ea1: "x\x03\u7ea1", // 纡
+ 0x7ea2: "x\x03\u7ea2", // 红
+ 0x7ea3: "x\x03\u7ea3", // 纣
+ 0x7ea4: "x\x03\u7ea4", // 纤
+ 0x7ea5: "x\x03\u7ea5", // 纥
+ 0x7ea6: "x\x03\u7ea6", // 约
+ 0x7ea7: "x\x03\u7ea7", // 级
+ 0x7ea8: "x\x03\u7ea8", // 纨
+ 0x7ea9: "x\x03\u7ea9", // 纩
+ 0x7eaa: "x\x03\u7eaa", // 纪
+ 0x7eab: "x\x03\u7eab", // 纫
+ 0x7eac: "x\x04\u7eac", // 纬
+ 0x7ead: "x\x04\u7ead", // 纭
+ 0x7eae: "x\x04\u7eae", // 纮
+ 0x7eaf: "x\x04\u7eaf", // 纯
+ 0x7eb0: "x\x04\u7eb0", // 纰
+ 0x7eb1: "x\x04\u7eb1", // 纱
+ 0x7eb2: "x\x04\u7eb2", // 纲
+ 0x7eb3: "x\x04\u7eb3", // 纳
+ 0x7eb4: "x\x04\u7eb4", // 纴
+ 0x7eb5: "x\x04\u7eb5", // 纵
+ 0x7eb6: "x\x03\u7eb6", // 纶
+ 0x7eb7: "x\x04\u7eb7", // 纷
+ 0x7eb8: "x\x04\u7eb8", // 纸
+ 0x7eb9: "x\x04\u7eb9", // 纹
+ 0x7eba: "x\x04\u7eba", // 纺
+ 0x7ebb: "x\x04\u7ebb", // 纻
+ 0x7ebc: "x\x04\u7ebc", // 纼
+ 0x7ebd: "x\x04\u7ebd", // 纽
+ 0x7ebe: "x\x04\u7ebe", // 纾
+ 0x7ebf: "x\x05\u7ebf", // 线
+ 0x7ec0: "x\x05\u7ec0", // 绀
+ 0x7ec1: "x\x05\u7ec1", // 绁
+ 0x7ec2: "x\x05\u7ec2", // 绂
+ 0x7ec3: "x\x05\u7ec3", // 练
+ 0x7ec4: "x\x05\u7ec4", // 组
+ 0x7ec5: "x\x05\u7ec5", // 绅
+ 0x7ec6: "x\x05\u7ec6", // 细
+ 0x7ec7: "x\x05\u7ec7", // 织
+ 0x7ec8: "x\x05\u7ec8", // 终
+ 0x7ec9: "x\x05\u7ec9", // 绉
+ 0x7eca: "x\x05\u7eca", // 绊
+ 0x7ecb: "x\x05\u7ecb", // 绋
+ 0x7ecc: "x\x05\u7ecc", // 绌
+ 0x7ecd: "x\x05\u7ecd", // 绍
+ 0x7ece: "x\x05\u7ece", // 绎
+ 0x7ecf: "x\x05\u7ecf", // 经
+ 0x7ed0: "x\x05\u7ed0", // 绐
+ 0x7ed1: "x\x06\u7ed1", // 绑
+ 0x7ed2: "x\x06\u7ed2", // 绒
+ 0x7ed3: "x\x06\u7ed3", // 结
+ 0x7ed4: "x\x06\u7ed4", // 绔
+ 0x7ed5: "x\x06\u7ed5", // 绕
+ 0x7ed6: "x\x06\u7ed6", // 绖
+ 0x7ed7: "x\x06\u7ed7", // 绗
+ 0x7ed8: "x\x06\u7ed8", // 绘
+ 0x7ed9: "x\x06\u7ed9", // 给
+ 0x7eda: "x\x06\u7eda", // 绚
+ 0x7edb: "x\x06\u7edb", // 绛
+ 0x7edc: "x\x06\u7edc", // 络
+ 0x7edd: "x\x06\u7edd", // 绝
+ 0x7ede: "x\x06\u7ede", // 绞
+ 0x7edf: "x\x06\u7edf", // 统
+ 0x7ee0: "x\a\u7ee0", // 绠
+ 0x7ee1: "x\a\u7ee1", // 绡
+ 0x7ee2: "x\a\u7ee2", // 绢
+ 0x7ee3: "x\a\u7ee3", // 绣
+ 0x7ee4: "x\a\u7ee4", // 绤
+ 0x7ee5: "x\a\u7ee5", // 绥
+ 0x7ee6: "x\a\u7ee6", // 绦
+ 0x7ee7: "x\a\u7ee7", // 继
+ 0x7ee8: "x\a\u7ee8", // 绨
+ 0x7ee9: "x\b\u7ee9", // 绩
+ 0x7eea: "x\b\u7eea", // 绪
+ 0x7eeb: "x\b\u7eeb", // 绫
+ 0x7eec: "x\b\u7eec", // 绬
+ 0x7eed: "x\b\u7eed", // 续
+ 0x7eee: "x\b\u7eee", // 绮
+ 0x7eef: "x\b\u7eef", // 绯
+ 0x7ef0: "x\b\u7ef0", // 绰
+ 0x7ef1: "x\b\u7ef1", // 绱
+ 0x7ef2: "x\b\u7ef2", // 绲
+ 0x7ef3: "x\b\u7ef3", // 绳
+ 0x7ef4: "x\b\u7ef4", // 维
+ 0x7ef5: "x\b\u7ef5", // 绵
+ 0x7ef6: "x\b\u7ef6", // 绶
+ 0x7ef7: "x\b\u7ef7", // 绷
+ 0x7ef8: "x\b\u7ef8", // 绸
+ 0x7ef9: "x\b\u7ef9", // 绹
+ 0x7efa: "x\b\u7efa", // 绺
+ 0x7efb: "x\b\u7efb", // 绻
+ 0x7efc: "x\b\u7efc", // 综
+ 0x7efd: "x\b\u7efd", // 绽
+ 0x7efe: "x\b\u7efe", // 绾
+ 0x7eff: "x\b\u7eff", // 绿
+ 0x7f00: "x\b\u7f00", // 缀
+ 0x7f01: "x\b\u7f01", // 缁
+ 0x7f02: "x\t\u7f02", // 缂
+ 0x7f03: "x\t\u7f03", // 缃
+ 0x7f04: "x\t\u7f04", // 缄
+ 0x7f05: "x\t\u7f05", // 缅
+ 0x7f06: "x\t\u7f06", // 缆
+ 0x7f07: "x\t\u7f07", // 缇
+ 0x7f08: "x\t\u7f08", // 缈
+ 0x7f09: "x\t\u7f09", // 缉
+ 0x7f0a: "x\t\u7f0a", // 缊
+ 0x7f0b: "x\t\u7f0b", // 缋
+ 0x7f0c: "x\t\u7f0c", // 缌
+ 0x7f0d: "x\t\u7f0d", // 缍
+ 0x7f0e: "x\t\u7f0e", // 缎
+ 0x7f0f: "x\t\u7f0f", // 缏
+ 0x7f10: "x\t\u7f10", // 缐
+ 0x7f11: "x\t\u7f11", // 缑
+ 0x7f12: "x\t\u7f12", // 缒
+ 0x7f13: "x\t\u7f13", // 缓
+ 0x7f14: "x\t\u7f14", // 缔
+ 0x7f15: "x\t\u7f15", // 缕
+ 0x7f16: "x\t\u7f16", // 编
+ 0x7f17: "x\t\u7f17", // 缗
+ 0x7f18: "x\t\u7f18", // 缘
+ 0x7f19: "x\n\u7f19", // 缙
+ 0x7f1a: "x\n\u7f1a", // 缚
+ 0x7f1b: "x\n\u7f1b", // 缛
+ 0x7f1c: "x\n\u7f1c", // 缜
+ 0x7f1d: "x\n\u7f1d", // 缝
+ 0x7f1e: "x\n\u7f1e", // 缞
+ 0x7f1f: "x\n\u7f1f", // 缟
+ 0x7f20: "x\n\u7f20", // 缠
+ 0x7f21: "x\n\u7f21", // 缡
+ 0x7f22: "x\n\u7f22", // 缢
+ 0x7f23: "x\n\u7f23", // 缣
+ 0x7f24: "x\n\u7f24", // 缤
+ 0x7f25: "x\v\u7f25", // 缥
+ 0x7f26: "x\v\u7f26", // 缦
+ 0x7f27: "x\v\u7f27", // 缧
+ 0x7f28: "x\v\u7f28", // 缨
+ 0x7f29: "x\v\u7f29", // 缩
+ 0x7f2a: "x\v\u7f2a", // 缪
+ 0x7f2b: "x\v\u7f2b", // 缫
+ 0x7f2c: "x\f\u7f2c", // 缬
+ 0x7f2d: "x\f\u7f2d", // 缭
+ 0x7f2e: "x\f\u7f2e", // 缮
+ 0x7f2f: "x\f\u7f2f", // 缯
+ 0x7f30: "x\r\u7f30", // 缰
+ 0x7f31: "x\r\u7f31", // 缱
+ 0x7f32: "x\r\u7f32", // 缲
+ 0x7f33: "x\r\u7f33", // 缳
+ 0x7f34: "x\r\u7f34", // 缴
+ 0x7f35: "x\x10\u7f35", // 缵
+ 0x7f36: "y\x00\u7f36", // 缶
+ 0x7f37: "y\x02\u7f37", // 缷
+ 0x7f38: "y\x03\u7f38", // 缸
+ 0x7f39: "y\x04\u7f39", // 缹
+ 0x7f3a: "y\x04\u7f3a", // 缺
+ 0x7f3b: "y\x05\u7f3b", // 缻
+ 0x7f3c: "y\x04\u7f3c", // 缼
+ 0x7f3d: "y\x05\u7f3d", // 缽
+ 0x7f3e: "y\x06\u7f3e", // 缾
+ 0x7f3f: "y\x06\u7f3f", // 缿
+ 0x7f40: "y\x06\u7f40", // 罀
+ 0x7f41: "y\b\u7f41", // 罁
+ 0x7f42: "y\b\u7f42", // 罂
+ 0x7f43: "y\n\u7f43", // 罃
+ 0x7f44: "y\v\u7f44", // 罄
+ 0x7f45: "y\v\u7f45", // 罅
+ 0x7f46: "y\v\u7f46", // 罆
+ 0x7f47: "y\f\u7f47", // 罇
+ 0x7f48: "y\f\u7f48", // 罈
+ 0x7f49: "y\f\u7f49", // 罉
+ 0x7f4a: "y\r\u7f4a", // 罊
+ 0x7f4b: "y\r\u7f4b", // 罋
+ 0x7f4c: "y\x0e\u7f4c", // 罌
+ 0x7f4d: "y\x0f\u7f4d", // 罍
+ 0x7f4e: "y\x10\u7f4e", // 罎
+ 0x7f4f: "y\x10\u7f4f", // 罏
+ 0x7f50: "y\x12\u7f50", // 罐
+ 0x7f51: "z\x00\u7f51", // 网
+ 0x7f52: "z\x00\u7f52", // 罒
+ 0x7f53: "z\x00\u7f53", // 罓
+ 0x7f54: "z\x03\u7f54", // 罔
+ 0x7f55: "z\x03\u7f55", // 罕
+ 0x7f56: "z\x03\u7f56", // 罖
+ 0x7f57: "z\x03\u7f57", // 罗
+ 0x7f58: "z\x04\u7f58", // 罘
+ 0x7f59: "z\x04\u7f59", // 罙
+ 0x7f5a: "z\x04\u7f5a", // 罚
+ 0x7f5b: "z\x05\u7f5b", // 罛
+ 0x7f5c: "z\x05\u7f5c", // 罜
+ 0x7f5d: "z\x05\u7f5d", // 罝
+ 0x7f5e: "z\x05\u7f5e", // 罞
+ 0x7f5f: "z\x05\u7f5f", // 罟
+ 0x7f60: "z\x05\u7f60", // 罠
+ 0x7f61: "z\x05\u7f61", // 罡
+ 0x7f62: "z\x05\u7f62", // 罢
+ 0x7f63: "z\x06\u7f63", // 罣
+ 0x7f64: "z\a\u7f64", // 罤
+ 0x7f65: "z\a\u7f65", // 罥
+ 0x7f66: "z\a\u7f66", // 罦
+ 0x7f67: "z\b\u7f67", // 罧
+ 0x7f68: "z\b\u7f68", // 罨
+ 0x7f69: "z\b\u7f69", // 罩
+ 0x7f6a: "z\b\u7f6a", // 罪
+ 0x7f6b: "z\b\u7f6b", // 罫
+ 0x7f6c: "z\b\u7f6c", // 罬
+ 0x7f6d: "z\b\u7f6d", // 罭
+ 0x7f6e: "z\b\u7f6e", // 置
+ 0x7f6f: "z\t\u7f6f", // 罯
+ 0x7f70: "z\t\u7f70", // 罰
+ 0x7f71: "z\t\u7f71", // 罱
+ 0x7f72: "z\b\u7f72", // 署
+ 0x7f73: "z\t\u7f73", // 罳
+ 0x7f74: "z\t\u7f74", // 罴
+ 0x7f75: "z\n\u7f75", // 罵
+ 0x7f76: "z\n\u7f76", // 罶
+ 0x7f77: "z\n\u7f77", // 罷
+ 0x7f78: "z\n\u7f78", // 罸
+ 0x7f79: "z\v\u7f79", // 罹
+ 0x7f7a: "z\v\u7f7a", // 罺
+ 0x7f7b: "z\v\u7f7b", // 罻
+ 0x7f7c: "z\v\u7f7c", // 罼
+ 0x7f7d: "z\f\u7f7d", // 罽
+ 0x7f7e: "z\f\u7f7e", // 罾
+ 0x7f7f: "z\f\u7f7f", // 罿
+ 0x7f80: "z\f\u7f80", // 羀
+ 0x7f81: "z\f\u7f81", // 羁
+ 0x7f82: "z\r\u7f82", // 羂
+ 0x7f83: "z\x0e\u7f83", // 羃
+ 0x7f84: "z\x0e\u7f84", // 羄
+ 0x7f85: "z\x0e\u7f85", // 羅
+ 0x7f86: "z\x0e\u7f86", // 羆
+ 0x7f87: "z\x11\u7f87", // 羇
+ 0x7f88: "z\x13\u7f88", // 羈
+ 0x7f89: "z\x13\u7f89", // 羉
+ 0x7f8a: "{\x00\u7f8a", // 羊
+ 0x7f8b: "{\x01\u7f8b", // 羋
+ 0x7f8c: "{\x02\u7f8c", // 羌
+ 0x7f8d: "{\x03\u7f8d", // 羍
+ 0x7f8e: "{\x03\u7f8e", // 美
+ 0x7f8f: "{\x03\u7f8f", // 羏
+ 0x7f90: "{\x03\u7f90", // 羐
+ 0x7f91: "{\x03\u7f91", // 羑
+ 0x7f92: "{\x04\u7f92", // 羒
+ 0x7f93: "{\x04\u7f93", // 羓
+ 0x7f94: "{\x04\u7f94", // 羔
+ 0x7f95: "{\x05\u7f95", // 羕
+ 0x7f96: "{\x04\u7f96", // 羖
+ 0x7f97: "{\x04\u7f97", // 羗
+ 0x7f98: "{\x04\u7f98", // 羘
+ 0x7f99: "{\x04\u7f99", // 羙
+ 0x7f9a: "{\x05\u7f9a", // 羚
+ 0x7f9b: "{\x05\u7f9b", // 羛
+ 0x7f9c: "{\x05\u7f9c", // 羜
+ 0x7f9d: "{\x05\u7f9d", // 羝
+ 0x7f9e: "{\x05\u7f9e", // 羞
+ 0x7f9f: "{\x05\u7f9f", // 羟
+ 0x7fa0: "{\x06\u7fa0", // 羠
+ 0x7fa1: "{\x06\u7fa1", // 羡
+ 0x7fa2: "{\x06\u7fa2", // 羢
+ 0x7fa3: "{\a\u7fa3", // 羣
+ 0x7fa4: "{\a\u7fa4", // 群
+ 0x7fa5: "{\a\u7fa5", // 羥
+ 0x7fa6: "{\a\u7fa6", // 羦
+ 0x7fa7: "{\a\u7fa7", // 羧
+ 0x7fa8: "{\a\u7fa8", // 羨
+ 0x7fa9: "{\a\u7fa9", // 義
+ 0x7faa: "{\a\u7faa", // 羪
+ 0x7fab: "{\b\u7fab", // 羫
+ 0x7fac: "{\t\u7fac", // 羬
+ 0x7fad: "{\t\u7fad", // 羭
+ 0x7fae: "{\t\u7fae", // 羮
+ 0x7faf: "{\t\u7faf", // 羯
+ 0x7fb0: "{\t\u7fb0", // 羰
+ 0x7fb1: "{\n\u7fb1", // 羱
+ 0x7fb2: "{\n\u7fb2", // 羲
+ 0x7fb3: "{\f\u7fb3", // 羳
+ 0x7fb4: "{\f\u7fb4", // 羴
+ 0x7fb5: "{\f\u7fb5", // 羵
+ 0x7fb6: "{\r\u7fb6", // 羶
+ 0x7fb7: "{\r\u7fb7", // 羷
+ 0x7fb8: "{\r\u7fb8", // 羸
+ 0x7fb9: "{\r\u7fb9", // 羹
+ 0x7fba: "{\x0e\u7fba", // 羺
+ 0x7fbb: "{\x0f\u7fbb", // 羻
+ 0x7fbc: "{\x0f\u7fbc", // 羼
+ 0x7fbd: "|\x00\u7fbd", // 羽
+ 0x7fbe: "|\x03\u7fbe", // 羾
+ 0x7fbf: "|\x03\u7fbf", // 羿
+ 0x7fc0: "|\x04\u7fc0", // 翀
+ 0x7fc1: "|\x04\u7fc1", // 翁
+ 0x7fc2: "|\x04\u7fc2", // 翂
+ 0x7fc3: "|\x04\u7fc3", // 翃
+ 0x7fc4: "|\x04\u7fc4", // 翄
+ 0x7fc5: "|\x04\u7fc5", // 翅
+ 0x7fc6: "|\x04\u7fc6", // 翆
+ 0x7fc7: "|\x05\u7fc7", // 翇
+ 0x7fc8: "|\x05\u7fc8", // 翈
+ 0x7fc9: "|\x05\u7fc9", // 翉
+ 0x7fca: "|\x05\u7fca", // 翊
+ 0x7fcb: "|\x05\u7fcb", // 翋
+ 0x7fcc: "|\x05\u7fcc", // 翌
+ 0x7fcd: "|\x05\u7fcd", // 翍
+ 0x7fce: "|\x05\u7fce", // 翎
+ 0x7fcf: "|\x05\u7fcf", // 翏
+ 0x7fd0: "|\x05\u7fd0", // 翐
+ 0x7fd1: "|\x05\u7fd1", // 翑
+ 0x7fd2: "|\x05\u7fd2", // 習
+ 0x7fd3: "|\x06\u7fd3", // 翓
+ 0x7fd4: "|\x06\u7fd4", // 翔
+ 0x7fd5: "|\x06\u7fd5", // 翕
+ 0x7fd6: "|\x06\u7fd6", // 翖
+ 0x7fd7: "|\x06\u7fd7", // 翗
+ 0x7fd8: "|\x06\u7fd8", // 翘
+ 0x7fd9: "|\x06\u7fd9", // 翙
+ 0x7fda: "|\x06\u7fda", // 翚
+ 0x7fdb: "|\a\u7fdb", // 翛
+ 0x7fdc: "|\a\u7fdc", // 翜
+ 0x7fdd: "|\a\u7fdd", // 翝
+ 0x7fde: "|\b\u7fde", // 翞
+ 0x7fdf: "|\b\u7fdf", // 翟
+ 0x7fe0: "|\b\u7fe0", // 翠
+ 0x7fe1: "|\b\u7fe1", // 翡
+ 0x7fe2: "|\b\u7fe2", // 翢
+ 0x7fe3: "|\b\u7fe3", // 翣
+ 0x7fe4: "|\b\u7fe4", // 翤
+ 0x7fe5: "|\t\u7fe5", // 翥
+ 0x7fe6: "|\t\u7fe6", // 翦
+ 0x7fe7: "|\t\u7fe7", // 翧
+ 0x7fe8: "|\t\u7fe8", // 翨
+ 0x7fe9: "|\t\u7fe9", // 翩
+ 0x7fea: "|\t\u7fea", // 翪
+ 0x7feb: "|\t\u7feb", // 翫
+ 0x7fec: "|\t\u7fec", // 翬
+ 0x7fed: "|\t\u7fed", // 翭
+ 0x7fee: "|\n\u7fee", // 翮
+ 0x7fef: "|\n\u7fef", // 翯
+ 0x7ff0: "|\n\u7ff0", // 翰
+ 0x7ff1: "|\n\u7ff1", // 翱
+ 0x7ff2: "|\v\u7ff2", // 翲
+ 0x7ff3: "|\v\u7ff3", // 翳
+ 0x7ff4: "|\v\u7ff4", // 翴
+ 0x7ff5: "|\v\u7ff5", // 翵
+ 0x7ff6: "|\v\u7ff6", // 翶
+ 0x7ff7: "|\f\u7ff7", // 翷
+ 0x7ff8: "|\f\u7ff8", // 翸
+ 0x7ff9: "|\f\u7ff9", // 翹
+ 0x7ffa: "|\f\u7ffa", // 翺
+ 0x7ffb: "|\f\u7ffb", // 翻
+ 0x7ffc: "|\v\u7ffc", // 翼
+ 0x7ffd: "|\r\u7ffd", // 翽
+ 0x7ffe: "|\r\u7ffe", // 翾
+ 0x7fff: "|\x0e\u7fff", // 翿
+ 0x8000: "|\x0e\u8000", // 耀
+ 0x8001: "}\x00\u8001", // 老
+ 0x8002: "}\x00\u8002", // 耂
+ 0x8003: "}\x00\u8003", // 考
+ 0x8004: "}\x04\u8004", // 耄
+ 0x8005: "}\x04\u8005", // 者
+ 0x8006: "}\x04\u8006", // 耆
+ 0x8007: "}\x05\u8007", // 耇
+ 0x8008: "}\x05\u8008", // 耈
+ 0x8009: "}\x05\u8009", // 耉
+ 0x800a: "}\x06\u800a", // 耊
+ 0x800b: "}\x06\u800b", // 耋
+ 0x800c: "~\x00\u800c", // 而
+ 0x800d: "~\x03\u800d", // 耍
+ 0x800e: "~\x03\u800e", // 耎
+ 0x800f: "~\x03\u800f", // 耏
+ 0x8010: "~\x03\u8010", // 耐
+ 0x8011: "~\x03\u8011", // 耑
+ 0x8012: "\u007f\x00\u8012", // 耒
+ 0x8013: "\u007f\x02\u8013", // 耓
+ 0x8014: "\u007f\x03\u8014", // 耔
+ 0x8015: "\u007f\x04\u8015", // 耕
+ 0x8016: "\u007f\x04\u8016", // 耖
+ 0x8017: "\u007f\x04\u8017", // 耗
+ 0x8018: "\u007f\x04\u8018", // 耘
+ 0x8019: "\u007f\x04\u8019", // 耙
+ 0x801a: "\u007f\x05\u801a", // 耚
+ 0x801b: "\u007f\x05\u801b", // 耛
+ 0x801c: "\u007f\x05\u801c", // 耜
+ 0x801d: "\u007f\x05\u801d", // 耝
+ 0x801e: "\u007f\x05\u801e", // 耞
+ 0x801f: "\u007f\x05\u801f", // 耟
+ 0x8020: "\u007f\x06\u8020", // 耠
+ 0x8021: "\u007f\a\u8021", // 耡
+ 0x8022: "\u007f\a\u8022", // 耢
+ 0x8023: "\u007f\b\u8023", // 耣
+ 0x8024: "\u007f\b\u8024", // 耤
+ 0x8025: "\u007f\b\u8025", // 耥
+ 0x8026: "\u007f\t\u8026", // 耦
+ 0x8027: "\u007f\t\u8027", // 耧
+ 0x8028: "\u007f\n\u8028", // 耨
+ 0x8029: "\u007f\n\u8029", // 耩
+ 0x802a: "\u007f\n\u802a", // 耪
+ 0x802b: "\u007f\v\u802b", // 耫
+ 0x802c: "\u007f\v\u802c", // 耬
+ 0x802d: "\u007f\f\u802d", // 耭
+ 0x802e: "\u007f\f\u802e", // 耮
+ 0x802f: "\u007f\x0e\u802f", // 耯
+ 0x8030: "\u007f\x0f\u8030", // 耰
+ 0x8031: "\u007f\x10\u8031", // 耱
+ 0x8032: "\u007f\x10\u8032", // 耲
+ 0x8033: "\x80\x00\u8033", // 耳
+ 0x8034: "\x80\x01\u8034", // 耴
+ 0x8035: "\x80\x02\u8035", // 耵
+ 0x8036: "\x80\x03\u8036", // 耶
+ 0x8037: "\x80\x03\u8037", // 耷
+ 0x8038: "\x80\x04\u8038", // 耸
+ 0x8039: "\x80\x04\u8039", // 耹
+ 0x803a: "\x80\x04\u803a", // 耺
+ 0x803b: "\x80\x04\u803b", // 耻
+ 0x803c: "\x80\x04\u803c", // 耼
+ 0x803d: "\x80\x04\u803d", // 耽
+ 0x803e: "\x80\x04\u803e", // 耾
+ 0x803f: "\x80\x04\u803f", // 耿
+ 0x8040: "\x80\x04\u8040", // 聀
+ 0x8041: "\x80\x04\u8041", // 聁
+ 0x8042: "\x80\x04\u8042", // 聂
+ 0x8043: "\x80\x05\u8043", // 聃
+ 0x8044: "\x80\x05\u8044", // 聄
+ 0x8045: "\x80\x05\u8045", // 聅
+ 0x8046: "\x80\x05\u8046", // 聆
+ 0x8047: "\x80\x05\u8047", // 聇
+ 0x8048: "\x80\x05\u8048", // 聈
+ 0x8049: "\x80\x05\u8049", // 聉
+ 0x804a: "\x80\x05\u804a", // 聊
+ 0x804b: "\x80\x05\u804b", // 聋
+ 0x804c: "\x80\x05\u804c", // 职
+ 0x804d: "\x80\x05\u804d", // 聍
+ 0x804e: "\x80\x06\u804e", // 聎
+ 0x804f: "\x80\x06\u804f", // 聏
+ 0x8050: "\x80\x06\u8050", // 聐
+ 0x8051: "\x80\x06\u8051", // 聑
+ 0x8052: "\x80\x06\u8052", // 聒
+ 0x8053: "\x80\x06\u8053", // 聓
+ 0x8054: "\x80\x06\u8054", // 联
+ 0x8055: "\x80\a\u8055", // 聕
+ 0x8056: "\x80\a\u8056", // 聖
+ 0x8057: "\x80\a\u8057", // 聗
+ 0x8058: "\x80\a\u8058", // 聘
+ 0x8059: "\x80\b\u8059", // 聙
+ 0x805a: "\x80\b\u805a", // 聚
+ 0x805b: "\x80\b\u805b", // 聛
+ 0x805c: "\x80\b\u805c", // 聜
+ 0x805d: "\x80\b\u805d", // 聝
+ 0x805e: "\x80\b\u805e", // 聞
+ 0x805f: "\x80\b\u805f", // 聟
+ 0x8060: "\x80\x06\u8060", // 聠
+ 0x8061: "\x80\b\u8061", // 聡
+ 0x8062: "\x80\b\u8062", // 聢
+ 0x8063: "\x80\b\u8063", // 聣
+ 0x8064: "\x80\t\u8064", // 聤
+ 0x8065: "\x80\t\u8065", // 聥
+ 0x8066: "\x80\t\u8066", // 聦
+ 0x8067: "\x80\t\u8067", // 聧
+ 0x8068: "\x80\t\u8068", // 聨
+ 0x8069: "\x80\t\u8069", // 聩
+ 0x806a: "\x80\t\u806a", // 聪
+ 0x806b: "\x80\t\u806b", // 聫
+ 0x806c: "\x80\n\u806c", // 聬
+ 0x806d: "\x80\n\u806d", // 聭
+ 0x806e: "\x80\f\u806e", // 聮
+ 0x806f: "\x80\v\u806f", // 聯
+ 0x8070: "\x80\v\u8070", // 聰
+ 0x8071: "\x80\v\u8071", // 聱
+ 0x8072: "\x80\v\u8072", // 聲
+ 0x8073: "\x80\v\u8073", // 聳
+ 0x8074: "\x80\f\u8074", // 聴
+ 0x8075: "\x80\f\u8075", // 聵
+ 0x8076: "\x80\f\u8076", // 聶
+ 0x8077: "\x80\f\u8077", // 職
+ 0x8078: "\x80\r\u8078", // 聸
+ 0x8079: "\x80\x0e\u8079", // 聹
+ 0x807a: "\x80\x0e\u807a", // 聺
+ 0x807b: "\x80\x0e\u807b", // 聻
+ 0x807c: "\x80\x0e\u807c", // 聼
+ 0x807d: "\x80\x10\u807d", // 聽
+ 0x807e: "\x80\x10\u807e", // 聾
+ 0x807f: "\x81\x00\u807f", // 聿
+ 0x8080: "\x81\x00\u8080", // 肀
+ 0x8081: "\x81\x04\u8081", // 肁
+ 0x8082: "\x81\x04\u8082", // 肂
+ 0x8083: "\x81\x04\u8083", // 肃
+ 0x8084: "\x81\a\u8084", // 肄
+ 0x8085: "\x81\a\u8085", // 肅
+ 0x8086: "\x81\a\u8086", // 肆
+ 0x8087: "\x81\b\u8087", // 肇
+ 0x8088: "\x81\b\u8088", // 肈
+ 0x8089: "\x82\x00\u8089", // 肉
+ 0x808a: "\x82\x01\u808a", // 肊
+ 0x808b: "\x82\x02\u808b", // 肋
+ 0x808c: "\x82\x02\u808c", // 肌
+ 0x808d: "\x82\x02\u808d", // 肍
+ 0x808e: "\x82\x02\u808e", // 肎
+ 0x808f: "\x82\x02\u808f", // 肏
+ 0x8090: "\x82\x03\u8090", // 肐
+ 0x8091: "\x82\x03\u8091", // 肑
+ 0x8092: "\x82\x03\u8092", // 肒
+ 0x8093: "\x82\x03\u8093", // 肓
+ 0x8094: "\x82\x03\u8094", // 肔
+ 0x8095: "\x82\x03\u8095", // 肕
+ 0x8096: "\x82\x03\u8096", // 肖
+ 0x8097: "\x82\x03\u8097", // 肗
+ 0x8098: "\x82\x03\u8098", // 肘
+ 0x8099: "\x82\x03\u8099", // 肙
+ 0x809a: "\x82\x03\u809a", // 肚
+ 0x809b: "\x82\x03\u809b", // 肛
+ 0x809c: "\x82\x03\u809c", // 肜
+ 0x809d: "\x82\x03\u809d", // 肝
+ 0x809e: "\x82\x03\u809e", // 肞
+ 0x809f: "\x82\x03\u809f", // 肟
+ 0x80a0: "\x82\x03\u80a0", // 肠
+ 0x80a1: "\x82\x04\u80a1", // 股
+ 0x80a2: "\x82\x04\u80a2", // 肢
+ 0x80a3: "\x82\x04\u80a3", // 肣
+ 0x80a4: "\x82\x04\u80a4", // 肤
+ 0x80a5: "\x82\x04\u80a5", // 肥
+ 0x80a6: "\x82\x04\u80a6", // 肦
+ 0x80a7: "\x82\x04\u80a7", // 肧
+ 0x80a8: "\x82\x04\u80a8", // 肨
+ 0x80a9: "\x82\x04\u80a9", // 肩
+ 0x80aa: "\x82\x04\u80aa", // 肪
+ 0x80ab: "\x82\x04\u80ab", // 肫
+ 0x80ac: "\x82\x04\u80ac", // 肬
+ 0x80ad: "\x82\x04\u80ad", // 肭
+ 0x80ae: "\x82\x04\u80ae", // 肮
+ 0x80af: "\x82\x04\u80af", // 肯
+ 0x80b0: "\x82\x04\u80b0", // 肰
+ 0x80b1: "\x82\x04\u80b1", // 肱
+ 0x80b2: "\x82\x04\u80b2", // 育
+ 0x80b3: "\x82\x04\u80b3", // 肳
+ 0x80b4: "\x82\x04\u80b4", // 肴
+ 0x80b5: "\x82\x04\u80b5", // 肵
+ 0x80b6: "\x82\x04\u80b6", // 肶
+ 0x80b7: "\x82\x04\u80b7", // 肷
+ 0x80b8: "\x82\x04\u80b8", // 肸
+ 0x80b9: "\x82\x04\u80b9", // 肹
+ 0x80ba: "\x82\x04\u80ba", // 肺
+ 0x80bb: "\x82\x04\u80bb", // 肻
+ 0x80bc: "\x82\x04\u80bc", // 肼
+ 0x80bd: "\x82\x04\u80bd", // 肽
+ 0x80be: "\x82\x04\u80be", // 肾
+ 0x80bf: "\x82\x04\u80bf", // 肿
+ 0x80c0: "\x82\x04\u80c0", // 胀
+ 0x80c1: "\x82\x04\u80c1", // 胁
+ 0x80c2: "\x82\x05\u80c2", // 胂
+ 0x80c3: "\x82\x05\u80c3", // 胃
+ 0x80c4: "\x82\x05\u80c4", // 胄
+ 0x80c5: "\x82\x05\u80c5", // 胅
+ 0x80c6: "\x82\x05\u80c6", // 胆
+ 0x80c7: "\x82\x05\u80c7", // 胇
+ 0x80c8: "\x82\x05\u80c8", // 胈
+ 0x80c9: "\x82\x05\u80c9", // 胉
+ 0x80ca: "\x82\x05\u80ca", // 胊
+ 0x80cb: "\x82\x05\u80cb", // 胋
+ 0x80cc: "\x82\x05\u80cc", // 背
+ 0x80cd: "\x82\x05\u80cd", // 胍
+ 0x80ce: "\x82\x05\u80ce", // 胎
+ 0x80cf: "\x82\x05\u80cf", // 胏
+ 0x80d0: "\x82\x05\u80d0", // 胐
+ 0x80d1: "\x82\x05\u80d1", // 胑
+ 0x80d2: "\x82\x05\u80d2", // 胒
+ 0x80d3: "\x82\x05\u80d3", // 胓
+ 0x80d4: "\x82\x05\u80d4", // 胔
+ 0x80d5: "\x82\x05\u80d5", // 胕
+ 0x80d6: "\x82\x05\u80d6", // 胖
+ 0x80d7: "\x82\x05\u80d7", // 胗
+ 0x80d8: "\x82\x05\u80d8", // 胘
+ 0x80d9: "\x82\x05\u80d9", // 胙
+ 0x80da: "\x82\x05\u80da", // 胚
+ 0x80db: "\x82\x05\u80db", // 胛
+ 0x80dc: "\x82\x05\u80dc", // 胜
+ 0x80dd: "\x82\x05\u80dd", // 胝
+ 0x80de: "\x82\x05\u80de", // 胞
+ 0x80df: "\x82\x05\u80df", // 胟
+ 0x80e0: "\x82\x05\u80e0", // 胠
+ 0x80e1: "\x82\x05\u80e1", // 胡
+ 0x80e2: "\x82\x05\u80e2", // 胢
+ 0x80e3: "\x82\x05\u80e3", // 胣
+ 0x80e4: "\x82\x05\u80e4", // 胤
+ 0x80e5: "\x82\x05\u80e5", // 胥
+ 0x80e6: "\x82\x05\u80e6", // 胦
+ 0x80e7: "\x82\x05\u80e7", // 胧
+ 0x80e8: "\x82\x05\u80e8", // 胨
+ 0x80e9: "\x82\x05\u80e9", // 胩
+ 0x80ea: "\x82\x05\u80ea", // 胪
+ 0x80eb: "\x82\x05\u80eb", // 胫
+ 0x80ec: "\x82\x05\u80ec", // 胬
+ 0x80ed: "\x82\x06\u80ed", // 胭
+ 0x80ee: "\x82\x06\u80ee", // 胮
+ 0x80ef: "\x82\x06\u80ef", // 胯
+ 0x80f0: "\x82\x06\u80f0", // 胰
+ 0x80f1: "\x82\x06\u80f1", // 胱
+ 0x80f2: "\x82\x06\u80f2", // 胲
+ 0x80f3: "\x82\x06\u80f3", // 胳
+ 0x80f4: "\x82\x06\u80f4", // 胴
+ 0x80f5: "\x82\x06\u80f5", // 胵
+ 0x80f6: "\x82\x06\u80f6", // 胶
+ 0x80f7: "\x82\x06\u80f7", // 胷
+ 0x80f8: "\x82\x06\u80f8", // 胸
+ 0x80f9: "\x82\x06\u80f9", // 胹
+ 0x80fa: "\x82\x06\u80fa", // 胺
+ 0x80fb: "\x82\x06\u80fb", // 胻
+ 0x80fc: "\x82\x06\u80fc", // 胼
+ 0x80fd: "\x82\x06\u80fd", // 能
+ 0x80fe: "\x82\x06\u80fe", // 胾
+ 0x80ff: "\x82\x06\u80ff", // 胿
+ 0x8100: "\x82\x06\u8100", // 脀
+ 0x8101: "\x82\x06\u8101", // 脁
+ 0x8102: "\x82\x06\u8102", // 脂
+ 0x8103: "\x82\x06\u8103", // 脃
+ 0x8104: "\x82\x06\u8104", // 脄
+ 0x8105: "\x82\x06\u8105", // 脅
+ 0x8106: "\x82\x06\u8106", // 脆
+ 0x8107: "\x82\x06\u8107", // 脇
+ 0x8108: "\x82\x06\u8108", // 脈
+ 0x8109: "\x82\x05\u8109", // 脉
+ 0x810a: "\x82\x06\u810a", // 脊
+ 0x810b: "\x82\x06\u810b", // 脋
+ 0x810c: "\x82\x06\u810c", // 脌
+ 0x810d: "\x82\x06\u810d", // 脍
+ 0x810e: "\x82\x06\u810e", // 脎
+ 0x810f: "\x82\x06\u810f", // 脏
+ 0x8110: "\x82\x06\u8110", // 脐
+ 0x8111: "\x82\x06\u8111", // 脑
+ 0x8112: "\x82\x06\u8112", // 脒
+ 0x8113: "\x82\x06\u8113", // 脓
+ 0x8114: "\x82\x06\u8114", // 脔
+ 0x8115: "\x82\a\u8115", // 脕
+ 0x8116: "\x82\a\u8116", // 脖
+ 0x8117: "\x82\a\u8117", // 脗
+ 0x8118: "\x82\a\u8118", // 脘
+ 0x8119: "\x82\a\u8119", // 脙
+ 0x811a: "\x82\a\u811a", // 脚
+ 0x811b: "\x82\a\u811b", // 脛
+ 0x811c: "\x82\a\u811c", // 脜
+ 0x811d: "\x82\a\u811d", // 脝
+ 0x811e: "\x82\a\u811e", // 脞
+ 0x811f: "\x82\a\u811f", // 脟
+ 0x8120: "\x82\a\u8120", // 脠
+ 0x8121: "\x82\a\u8121", // 脡
+ 0x8122: "\x82\a\u8122", // 脢
+ 0x8123: "\x82\a\u8123", // 脣
+ 0x8124: "\x82\a\u8124", // 脤
+ 0x8125: "\x82\a\u8125", // 脥
+ 0x8126: "\x82\a\u8126", // 脦
+ 0x8127: "\x82\a\u8127", // 脧
+ 0x8128: "\x82\a\u8128", // 脨
+ 0x8129: "\x82\a\u8129", // 脩
+ 0x812a: "\x82\a\u812a", // 脪
+ 0x812b: "\x82\a\u812b", // 脫
+ 0x812c: "\x82\a\u812c", // 脬
+ 0x812d: "\x82\a\u812d", // 脭
+ 0x812e: "\x82\a\u812e", // 脮
+ 0x812f: "\x82\a\u812f", // 脯
+ 0x8130: "\x82\a\u8130", // 脰
+ 0x8131: "\x82\a\u8131", // 脱
+ 0x8132: "\x82\a\u8132", // 脲
+ 0x8133: "\x82\a\u8133", // 脳
+ 0x8134: "\x82\a\u8134", // 脴
+ 0x8135: "\x82\a\u8135", // 脵
+ 0x8136: "\x82\a\u8136", // 脶
+ 0x8137: "\x82\a\u8137", // 脷
+ 0x8138: "\x82\a\u8138", // 脸
+ 0x8139: "\x82\b\u8139", // 脹
+ 0x813a: "\x82\b\u813a", // 脺
+ 0x813b: "\x82\b\u813b", // 脻
+ 0x813c: "\x82\b\u813c", // 脼
+ 0x813d: "\x82\b\u813d", // 脽
+ 0x813e: "\x82\b\u813e", // 脾
+ 0x813f: "\x82\b\u813f", // 脿
+ 0x8140: "\x82\b\u8140", // 腀
+ 0x8141: "\x82\b\u8141", // 腁
+ 0x8142: "\x82\b\u8142", // 腂
+ 0x8143: "\x82\b\u8143", // 腃
+ 0x8144: "\x82\b\u8144", // 腄
+ 0x8145: "\x82\b\u8145", // 腅
+ 0x8146: "\x82\b\u8146", // 腆
+ 0x8147: "\x82\b\u8147", // 腇
+ 0x8148: "\x82\b\u8148", // 腈
+ 0x8149: "\x82\b\u8149", // 腉
+ 0x814a: "\x82\b\u814a", // 腊
+ 0x814b: "\x82\b\u814b", // 腋
+ 0x814c: "\x82\b\u814c", // 腌
+ 0x814d: "\x82\b\u814d", // 腍
+ 0x814e: "\x82\b\u814e", // 腎
+ 0x814f: "\x82\b\u814f", // 腏
+ 0x8150: "\x82\b\u8150", // 腐
+ 0x8151: "\x82\b\u8151", // 腑
+ 0x8152: "\x82\b\u8152", // 腒
+ 0x8153: "\x82\b\u8153", // 腓
+ 0x8154: "\x82\b\u8154", // 腔
+ 0x8155: "\x82\b\u8155", // 腕
+ 0x8156: "\x82\b\u8156", // 腖
+ 0x8157: "\x82\b\u8157", // 腗
+ 0x8158: "\x82\b\u8158", // 腘
+ 0x8159: "\x82\b\u8159", // 腙
+ 0x815a: "\x82\b\u815a", // 腚
+ 0x815b: "\x82\t\u815b", // 腛
+ 0x815c: "\x82\t\u815c", // 腜
+ 0x815d: "\x82\t\u815d", // 腝
+ 0x815e: "\x82\t\u815e", // 腞
+ 0x815f: "\x82\t\u815f", // 腟
+ 0x8160: "\x82\t\u8160", // 腠
+ 0x8161: "\x82\t\u8161", // 腡
+ 0x8162: "\x82\t\u8162", // 腢
+ 0x8163: "\x82\t\u8163", // 腣
+ 0x8164: "\x82\t\u8164", // 腤
+ 0x8165: "\x82\t\u8165", // 腥
+ 0x8166: "\x82\t\u8166", // 腦
+ 0x8167: "\x82\t\u8167", // 腧
+ 0x8168: "\x82\t\u8168", // 腨
+ 0x8169: "\x82\t\u8169", // 腩
+ 0x816a: "\x82\t\u816a", // 腪
+ 0x816b: "\x82\t\u816b", // 腫
+ 0x816c: "\x82\t\u816c", // 腬
+ 0x816d: "\x82\t\u816d", // 腭
+ 0x816e: "\x82\t\u816e", // 腮
+ 0x816f: "\x82\t\u816f", // 腯
+ 0x8170: "\x82\t\u8170", // 腰
+ 0x8171: "\x82\t\u8171", // 腱
+ 0x8172: "\x82\t\u8172", // 腲
+ 0x8173: "\x82\t\u8173", // 腳
+ 0x8174: "\x82\t\u8174", // 腴
+ 0x8175: "\x82\t\u8175", // 腵
+ 0x8176: "\x82\t\u8176", // 腶
+ 0x8177: "\x82\t\u8177", // 腷
+ 0x8178: "\x82\t\u8178", // 腸
+ 0x8179: "\x82\t\u8179", // 腹
+ 0x817a: "\x82\t\u817a", // 腺
+ 0x817b: "\x82\t\u817b", // 腻
+ 0x817c: "\x82\t\u817c", // 腼
+ 0x817d: "\x82\t\u817d", // 腽
+ 0x817e: "\x82\t\u817e", // 腾
+ 0x817f: "\x82\n\u817f", // 腿
+ 0x8180: "\x82\n\u8180", // 膀
+ 0x8181: "\x82\n\u8181", // 膁
+ 0x8182: "\x82\n\u8182", // 膂
+ 0x8183: "\x82\n\u8183", // 膃
+ 0x8184: "\x82\n\u8184", // 膄
+ 0x8185: "\x82\n\u8185", // 膅
+ 0x8186: "\x82\n\u8186", // 膆
+ 0x8187: "\x82\n\u8187", // 膇
+ 0x8188: "\x82\n\u8188", // 膈
+ 0x8189: "\x82\n\u8189", // 膉
+ 0x818a: "\x82\n\u818a", // 膊
+ 0x818b: "\x82\n\u818b", // 膋
+ 0x818c: "\x82\n\u818c", // 膌
+ 0x818d: "\x82\n\u818d", // 膍
+ 0x818e: "\x82\n\u818e", // 膎
+ 0x818f: "\x82\n\u818f", // 膏
+ 0x8190: "\x82\n\u8190", // 膐
+ 0x8191: "\x82\n\u8191", // 膑
+ 0x8192: "\x82\v\u8192", // 膒
+ 0x8193: "\x82\v\u8193", // 膓
+ 0x8194: "\x82\v\u8194", // 膔
+ 0x8195: "\x82\v\u8195", // 膕
+ 0x8196: "\x82\v\u8196", // 膖
+ 0x8197: "\x82\v\u8197", // 膗
+ 0x8198: "\x82\v\u8198", // 膘
+ 0x8199: "\x82\v\u8199", // 膙
+ 0x819a: "\x82\v\u819a", // 膚
+ 0x819b: "\x82\v\u819b", // 膛
+ 0x819c: "\x82\v\u819c", // 膜
+ 0x819d: "\x82\v\u819d", // 膝
+ 0x819e: "\x82\v\u819e", // 膞
+ 0x819f: "\x82\v\u819f", // 膟
+ 0x81a0: "\x82\v\u81a0", // 膠
+ 0x81a1: "\x82\v\u81a1", // 膡
+ 0x81a2: "\x82\v\u81a2", // 膢
+ 0x81a3: "\x82\v\u81a3", // 膣
+ 0x81a4: "J\v\u81a4", // 膤
+ 0x81a5: "\x82\f\u81a5", // 膥
+ 0x81a6: "\x82\f\u81a6", // 膦
+ 0x81a7: "\x82\f\u81a7", // 膧
+ 0x81a8: "\x82\f\u81a8", // 膨
+ 0x81a9: "\x82\f\u81a9", // 膩
+ 0x81aa: "\x82\f\u81aa", // 膪
+ 0x81ab: "\x82\f\u81ab", // 膫
+ 0x81ac: "\x82\f\u81ac", // 膬
+ 0x81ad: "\x82\f\u81ad", // 膭
+ 0x81ae: "\x82\f\u81ae", // 膮
+ 0x81af: "\x82\f\u81af", // 膯
+ 0x81b0: "\x82\f\u81b0", // 膰
+ 0x81b1: "\x82\f\u81b1", // 膱
+ 0x81b2: "\x82\f\u81b2", // 膲
+ 0x81b3: "\x82\f\u81b3", // 膳
+ 0x81b4: "\x82\f\u81b4", // 膴
+ 0x81b5: "\x82\f\u81b5", // 膵
+ 0x81b6: "\x82\f\u81b6", // 膶
+ 0x81b7: "\x82\r\u81b7", // 膷
+ 0x81b8: "\x82\r\u81b8", // 膸
+ 0x81b9: "\x82\r\u81b9", // 膹
+ 0x81ba: "\x82\r\u81ba", // 膺
+ 0x81bb: "\x82\r\u81bb", // 膻
+ 0x81bc: "\x82\r\u81bc", // 膼
+ 0x81bd: "\x82\r\u81bd", // 膽
+ 0x81be: "\x82\r\u81be", // 膾
+ 0x81bf: "\x82\r\u81bf", // 膿
+ 0x81c0: "\x82\r\u81c0", // 臀
+ 0x81c1: "\x82\r\u81c1", // 臁
+ 0x81c2: "\x82\r\u81c2", // 臂
+ 0x81c3: "\x82\r\u81c3", // 臃
+ 0x81c4: "\x82\r\u81c4", // 臄
+ 0x81c5: "\x82\r\u81c5", // 臅
+ 0x81c6: "\x82\r\u81c6", // 臆
+ 0x81c7: "\x82\r\u81c7", // 臇
+ 0x81c8: "\x82\r\u81c8", // 臈
+ 0x81c9: "\x82\r\u81c9", // 臉
+ 0x81ca: "\x82\r\u81ca", // 臊
+ 0x81cb: "\x82\r\u81cb", // 臋
+ 0x81cc: "\x82\r\u81cc", // 臌
+ 0x81cd: "\x82\x0e\u81cd", // 臍
+ 0x81ce: "\x82\x0e\u81ce", // 臎
+ 0x81cf: "\x82\x0e\u81cf", // 臏
+ 0x81d0: "\x82\x0e\u81d0", // 臐
+ 0x81d1: "\x82\x0e\u81d1", // 臑
+ 0x81d2: "\x82\x0e\u81d2", // 臒
+ 0x81d3: "\x82\x0e\u81d3", // 臓
+ 0x81d4: "\x82\x0f\u81d4", // 臔
+ 0x81d5: "\x82\x0f\u81d5", // 臕
+ 0x81d6: "\x82\x10\u81d6", // 臖
+ 0x81d7: "\x82\x0f\u81d7", // 臗
+ 0x81d8: "\x82\x0f\u81d8", // 臘
+ 0x81d9: "\x82\x10\u81d9", // 臙
+ 0x81da: "\x82\x10\u81da", // 臚
+ 0x81db: "\x82\x10\u81db", // 臛
+ 0x81dc: "\x82\x10\u81dc", // 臜
+ 0x81dd: "\x82\x11\u81dd", // 臝
+ 0x81de: "\x82\x12\u81de", // 臞
+ 0x81df: "\x82\x12\u81df", // 臟
+ 0x81e0: "\x82\x13\u81e0", // 臠
+ 0x81e1: "\x82\x13\u81e1", // 臡
+ 0x81e2: "\x82\x13\u81e2", // 臢
+ 0x81e3: "\x83\x00\u81e3", // 臣
+ 0x81e4: "\x83\x02\u81e4", // 臤
+ 0x81e5: "\x83\x02\u81e5", // 臥
+ 0x81e6: "\x83\x06\u81e6", // 臦
+ 0x81e7: "\x83\b\u81e7", // 臧
+ 0x81e8: "\x83\v\u81e8", // 臨
+ 0x81e9: "\x83\v\u81e9", // 臩
+ 0x81ea: "\x84\x00\u81ea", // 自
+ 0x81eb: "\x84\x01\u81eb", // 臫
+ 0x81ec: "\x84\x04\u81ec", // 臬
+ 0x81ed: "\x84\x04\u81ed", // 臭
+ 0x81ee: "\x84\x06\u81ee", // 臮
+ 0x81ef: "\x84\x06\u81ef", // 臯
+ 0x81f0: "\x84\x06\u81f0", // 臰
+ 0x81f1: "\x84\t\u81f1", // 臱
+ 0x81f2: "\x84\n\u81f2", // 臲
+ 0x81f3: "\x85\x00\u81f3", // 至
+ 0x81f4: "\x85\x03\u81f4", // 致
+ 0x81f5: "\x85\x06\u81f5", // 臵
+ 0x81f6: "\x85\x06\u81f6", // 臶
+ 0x81f7: "\x85\x06\u81f7", // 臷
+ 0x81f8: "\x85\x06\u81f8", // 臸
+ 0x81f9: "\x85\a\u81f9", // 臹
+ 0x81fa: "\x85\b\u81fa", // 臺
+ 0x81fb: "\x85\n\u81fb", // 臻
+ 0x81fc: "\x86\x00\u81fc", // 臼
+ 0x81fd: "\x86\x02\u81fd", // 臽
+ 0x81fe: "\x86\x02\u81fe", // 臾
+ 0x81ff: "\x86\x03\u81ff", // 臿
+ 0x8200: "\x86\x04\u8200", // 舀
+ 0x8201: "\x86\x04\u8201", // 舁
+ 0x8202: "\x86\x05\u8202", // 舂
+ 0x8203: "\x86\x06\u8203", // 舃
+ 0x8204: "\x86\x06\u8204", // 舄
+ 0x8205: "\x86\a\u8205", // 舅
+ 0x8206: "\x86\n\u8206", // 舆
+ 0x8207: "\x86\b\u8207", // 與
+ 0x8208: "\x86\t\u8208", // 興
+ 0x8209: "\x86\n\u8209", // 舉
+ 0x820a: "\x86\f\u820a", // 舊
+ 0x820b: "\x86\r\u820b", // 舋
+ 0x820c: "\x87\x00\u820c", // 舌
+ 0x820d: "\x87\x02\u820d", // 舍
+ 0x820e: "\x87\x02\u820e", // 舎
+ 0x820f: "\x87\x02\u820f", // 舏
+ 0x8210: "\x87\x04\u8210", // 舐
+ 0x8211: "\x87\x05\u8211", // 舑
+ 0x8212: "\x87\x06\u8212", // 舒
+ 0x8213: "\x87\b\u8213", // 舓
+ 0x8214: "\x87\b\u8214", // 舔
+ 0x8215: "\x87\b\u8215", // 舕
+ 0x8216: "\x87\t\u8216", // 舖
+ 0x8217: "\x87\t\u8217", // 舗
+ 0x8218: "\x87\n\u8218", // 舘
+ 0x8219: "\x87\f\u8219", // 舙
+ 0x821a: "\x87\r\u821a", // 舚
+ 0x821b: "\x88\x00\u821b", // 舛
+ 0x821c: "\x88\x06\u821c", // 舜
+ 0x821d: "\x88\a\u821d", // 舝
+ 0x821e: "\x88\b\u821e", // 舞
+ 0x821f: "\x89\x00\u821f", // 舟
+ 0x8220: "\x89\x02\u8220", // 舠
+ 0x8221: "\x89\x03\u8221", // 舡
+ 0x8222: "\x89\x03\u8222", // 舢
+ 0x8223: "\x89\x03\u8223", // 舣
+ 0x8224: "\x89\x03\u8224", // 舤
+ 0x8225: "\x89\x04\u8225", // 舥
+ 0x8226: "\x89\x04\u8226", // 舦
+ 0x8227: "\x89\x04\u8227", // 舧
+ 0x8228: "\x89\x04\u8228", // 舨
+ 0x8229: "\x89\x04\u8229", // 舩
+ 0x822a: "\x89\x04\u822a", // 航
+ 0x822b: "\x89\x04\u822b", // 舫
+ 0x822c: "\x89\x04\u822c", // 般
+ 0x822d: "\x89\x04\u822d", // 舭
+ 0x822e: "\x89\x04\u822e", // 舮
+ 0x822f: "\x89\x04\u822f", // 舯
+ 0x8230: "\x89\x04\u8230", // 舰
+ 0x8231: "\x89\x04\u8231", // 舱
+ 0x8232: "\x89\x05\u8232", // 舲
+ 0x8233: "\x89\x05\u8233", // 舳
+ 0x8234: "\x89\x05\u8234", // 舴
+ 0x8235: "\x89\x05\u8235", // 舵
+ 0x8236: "\x89\x05\u8236", // 舶
+ 0x8237: "\x89\x05\u8237", // 舷
+ 0x8238: "\x89\x05\u8238", // 舸
+ 0x8239: "\x89\x05\u8239", // 船
+ 0x823a: "\x89\x05\u823a", // 舺
+ 0x823b: "\x89\x05\u823b", // 舻
+ 0x823c: "\x89\x06\u823c", // 舼
+ 0x823d: "\x89\x06\u823d", // 舽
+ 0x823e: "\x89\x06\u823e", // 舾
+ 0x823f: "\x89\x06\u823f", // 舿
+ 0x8240: "\x89\a\u8240", // 艀
+ 0x8241: "\x89\a\u8241", // 艁
+ 0x8242: "\x89\a\u8242", // 艂
+ 0x8243: "\x89\a\u8243", // 艃
+ 0x8244: "\x89\a\u8244", // 艄
+ 0x8245: "\x89\a\u8245", // 艅
+ 0x8246: "\x89\a\u8246", // 艆
+ 0x8247: "\x89\a\u8247", // 艇
+ 0x8248: "\x89\a\u8248", // 艈
+ 0x8249: "\x89\a\u8249", // 艉
+ 0x824a: "\x89\b\u824a", // 艊
+ 0x824b: "\x89\b\u824b", // 艋
+ 0x824c: "\x89\b\u824c", // 艌
+ 0x824d: "\x89\b\u824d", // 艍
+ 0x824e: "\x89\t\u824e", // 艎
+ 0x824f: "\x89\t\u824f", // 艏
+ 0x8250: "\x89\t\u8250", // 艐
+ 0x8251: "\x89\t\u8251", // 艑
+ 0x8252: "\x89\t\u8252", // 艒
+ 0x8253: "\x89\t\u8253", // 艓
+ 0x8254: "\x89\t\u8254", // 艔
+ 0x8255: "\x89\n\u8255", // 艕
+ 0x8256: "\x89\n\u8256", // 艖
+ 0x8257: "\x89\n\u8257", // 艗
+ 0x8258: "\x89\n\u8258", // 艘
+ 0x8259: "\x89\n\u8259", // 艙
+ 0x825a: "\x89\v\u825a", // 艚
+ 0x825b: "\x89\v\u825b", // 艛
+ 0x825c: "\x89\v\u825c", // 艜
+ 0x825d: "\x89\v\u825d", // 艝
+ 0x825e: "\x89\f\u825e", // 艞
+ 0x825f: "\x89\f\u825f", // 艟
+ 0x8260: "\x89\f\u8260", // 艠
+ 0x8261: "\x89\r\u8261", // 艡
+ 0x8262: "\x89\r\u8262", // 艢
+ 0x8263: "\x89\r\u8263", // 艣
+ 0x8264: "\x89\r\u8264", // 艤
+ 0x8265: "\x89\r\u8265", // 艥
+ 0x8266: "\x89\x0e\u8266", // 艦
+ 0x8267: "\x89\x0e\u8267", // 艧
+ 0x8268: "\x89\x0e\u8268", // 艨
+ 0x8269: "\x89\x0e\u8269", // 艩
+ 0x826a: "\x89\x0f\u826a", // 艪
+ 0x826b: "\x89\x10\u826b", // 艫
+ 0x826c: "\x89\x11\u826c", // 艬
+ 0x826d: "\x89\x12\u826d", // 艭
+ 0x826e: "\x8a\x00\u826e", // 艮
+ 0x826f: "\x8a\x01\u826f", // 良
+ 0x8270: "\x8a\x02\u8270", // 艰
+ 0x8271: "\x8a\v\u8271", // 艱
+ 0x8272: "\x8b\x00\u8272", // 色
+ 0x8273: "\x8b\x04\u8273", // 艳
+ 0x8274: "\x8b\x05\u8274", // 艴
+ 0x8275: "\x8b\b\u8275", // 艵
+ 0x8276: "\x8b\r\u8276", // 艶
+ 0x8277: "\x8b\x12\u8277", // 艷
+ 0x8278: "\x8c\x00\u8278", // 艸
+ 0x8279: "\x8c\x00\u8279", // 艹
+ 0x827a: "\x8c\x01\u827a", // 艺
+ 0x827b: "\x8c\x02\u827b", // 艻
+ 0x827c: "\x8c\x02\u827c", // 艼
+ 0x827d: "\x8c\x02\u827d", // 艽
+ 0x827e: "\x8c\x02\u827e", // 艾
+ 0x827f: "\x8c\x02\u827f", // 艿
+ 0x8280: "\x8c\x02\u8280", // 芀
+ 0x8281: "\x8c\x02\u8281", // 芁
+ 0x8282: "\x8c\x02\u8282", // 节
+ 0x8283: "\x8c\x03\u8283", // 芃
+ 0x8284: "\x8c\x03\u8284", // 芄
+ 0x8285: "\x8c\x03\u8285", // 芅
+ 0x8286: "\x8c\x03\u8286", // 芆
+ 0x8287: "\x8c\x03\u8287", // 芇
+ 0x8288: "\x8c\x03\u8288", // 芈
+ 0x8289: "\x8c\x03\u8289", // 芉
+ 0x828a: "\x8c\x03\u828a", // 芊
+ 0x828b: "\x8c\x03\u828b", // 芋
+ 0x828c: "\x8c\x03\u828c", // 芌
+ 0x828d: "\x8c\x03\u828d", // 芍
+ 0x828e: "\x8c\x03\u828e", // 芎
+ 0x828f: "\x8c\x03\u828f", // 芏
+ 0x8290: "\x8c\x03\u8290", // 芐
+ 0x8291: "\x8c\x03\u8291", // 芑
+ 0x8292: "\x8c\x03\u8292", // 芒
+ 0x8293: "\x8c\x03\u8293", // 芓
+ 0x8294: "\x8c\x03\u8294", // 芔
+ 0x8295: "\x8c\x03\u8295", // 芕
+ 0x8296: "\x8c\x03\u8296", // 芖
+ 0x8297: "\x8c\x03\u8297", // 芗
+ 0x8298: "\x8c\x04\u8298", // 芘
+ 0x8299: "\x8c\x04\u8299", // 芙
+ 0x829a: "\x8c\x04\u829a", // 芚
+ 0x829b: "\x8c\x04\u829b", // 芛
+ 0x829c: "\x8c\x04\u829c", // 芜
+ 0x829d: "\x8c\x04\u829d", // 芝
+ 0x829e: "\x8c\x04\u829e", // 芞
+ 0x829f: "\x8c\x04\u829f", // 芟
+ 0x82a0: "\x8c\x04\u82a0", // 芠
+ 0x82a1: "\x8c\x04\u82a1", // 芡
+ 0x82a2: "\x8c\x04\u82a2", // 芢
+ 0x82a3: "\x8c\x04\u82a3", // 芣
+ 0x82a4: "\x8c\x04\u82a4", // 芤
+ 0x82a5: "\x8c\x04\u82a5", // 芥
+ 0x82a6: "\x8c\x04\u82a6", // 芦
+ 0x82a7: "\x8c\x04\u82a7", // 芧
+ 0x82a8: "\x8c\x04\u82a8", // 芨
+ 0x82a9: "\x8c\x04\u82a9", // 芩
+ 0x82aa: "\x8c\x04\u82aa", // 芪
+ 0x82ab: "\x8c\x04\u82ab", // 芫
+ 0x82ac: "\x8c\x04\u82ac", // 芬
+ 0x82ad: "\x8c\x04\u82ad", // 芭
+ 0x82ae: "\x8c\x04\u82ae", // 芮
+ 0x82af: "\x8c\x04\u82af", // 芯
+ 0x82b0: "\x8c\x04\u82b0", // 芰
+ 0x82b1: "\x8c\x04\u82b1", // 花
+ 0x82b2: "\x8c\x04\u82b2", // 芲
+ 0x82b3: "\x8c\x04\u82b3", // 芳
+ 0x82b4: "\x8c\x04\u82b4", // 芴
+ 0x82b5: "\x8c\x04\u82b5", // 芵
+ 0x82b6: "\x8c\x04\u82b6", // 芶
+ 0x82b7: "\x8c\x04\u82b7", // 芷
+ 0x82b8: "\x8c\x04\u82b8", // 芸
+ 0x82b9: "\x8c\x04\u82b9", // 芹
+ 0x82ba: "\x8c\x04\u82ba", // 芺
+ 0x82bb: "\x8c\x04\u82bb", // 芻
+ 0x82bc: "\x8c\x04\u82bc", // 芼
+ 0x82bd: "\x8c\x04\u82bd", // 芽
+ 0x82be: "\x8c\x04\u82be", // 芾
+ 0x82bf: "\x8c\x05\u82bf", // 芿
+ 0x82c0: "\x8c\x04\u82c0", // 苀
+ 0x82c1: "\x8c\x04\u82c1", // 苁
+ 0x82c2: "\x8c\x04\u82c2", // 苂
+ 0x82c3: "\x8c\x04\u82c3", // 苃
+ 0x82c4: "\x8c\x04\u82c4", // 苄
+ 0x82c5: "\x8c\x04\u82c5", // 苅
+ 0x82c6: "\x8c\x04\u82c6", // 苆
+ 0x82c7: "\x8c\x04\u82c7", // 苇
+ 0x82c8: "\x8c\x04\u82c8", // 苈
+ 0x82c9: "\x8c\x04\u82c9", // 苉
+ 0x82ca: "\x8c\x04\u82ca", // 苊
+ 0x82cb: "\x8c\x04\u82cb", // 苋
+ 0x82cc: "\x8c\x04\u82cc", // 苌
+ 0x82cd: "\x8c\x04\u82cd", // 苍
+ 0x82ce: "\x8c\x04\u82ce", // 苎
+ 0x82cf: "\x8c\x04\u82cf", // 苏
+ 0x82d0: "\x8c\x05\u82d0", // 苐
+ 0x82d1: "\x8c\x05\u82d1", // 苑
+ 0x82d2: "\x8c\x05\u82d2", // 苒
+ 0x82d3: "\x8c\x05\u82d3", // 苓
+ 0x82d4: "\x8c\x05\u82d4", // 苔
+ 0x82d5: "\x8c\x05\u82d5", // 苕
+ 0x82d6: "\x8c\x05\u82d6", // 苖
+ 0x82d7: "\x8c\x05\u82d7", // 苗
+ 0x82d8: "\x8c\x05\u82d8", // 苘
+ 0x82d9: "\x8c\x05\u82d9", // 苙
+ 0x82da: "\x8c\x05\u82da", // 苚
+ 0x82db: "\x8c\x05\u82db", // 苛
+ 0x82dc: "\x8c\x05\u82dc", // 苜
+ 0x82dd: "\x8c\x05\u82dd", // 苝
+ 0x82de: "\x8c\x05\u82de", // 苞
+ 0x82df: "\x8c\x05\u82df", // 苟
+ 0x82e0: "\x8c\x05\u82e0", // 苠
+ 0x82e1: "\x8c\x05\u82e1", // 苡
+ 0x82e2: "\x8c\x05\u82e2", // 苢
+ 0x82e3: "\x8c\x05\u82e3", // 苣
+ 0x82e4: "\x8c\x05\u82e4", // 苤
+ 0x82e5: "\x8c\x05\u82e5", // 若
+ 0x82e6: "\x8c\x05\u82e6", // 苦
+ 0x82e7: "\x8c\x05\u82e7", // 苧
+ 0x82e8: "\x8c\x05\u82e8", // 苨
+ 0x82e9: "\x8c\x05\u82e9", // 苩
+ 0x82ea: "\x8c\x05\u82ea", // 苪
+ 0x82eb: "\x8c\x05\u82eb", // 苫
+ 0x82ec: "\x8c\x05\u82ec", // 苬
+ 0x82ed: "\x8c\x05\u82ed", // 苭
+ 0x82ee: "\x8c\x05\u82ee", // 苮
+ 0x82ef: "\x8c\x05\u82ef", // 苯
+ 0x82f0: "\x8c\x05\u82f0", // 苰
+ 0x82f1: "\x8c\x05\u82f1", // 英
+ 0x82f2: "\x8c\x05\u82f2", // 苲
+ 0x82f3: "\x8c\x05\u82f3", // 苳
+ 0x82f4: "\x8c\x05\u82f4", // 苴
+ 0x82f5: "\x8c\x05\u82f5", // 苵
+ 0x82f6: "\x8c\x05\u82f6", // 苶
+ 0x82f7: "\x8c\x05\u82f7", // 苷
+ 0x82f8: "\x8c\x05\u82f8", // 苸
+ 0x82f9: "\x8c\x05\u82f9", // 苹
+ 0x82fa: "\x8c\x05\u82fa", // 苺
+ 0x82fb: "\x8c\x05\u82fb", // 苻
+ 0x82fc: "\x8c\x05\u82fc", // 苼
+ 0x82fd: "\x8c\x05\u82fd", // 苽
+ 0x82fe: "\x8c\x05\u82fe", // 苾
+ 0x82ff: "\x8c\x05\u82ff", // 苿
+ 0x8300: "\x8c\x05\u8300", // 茀
+ 0x8301: "\x8c\x05\u8301", // 茁
+ 0x8302: "\x8c\x05\u8302", // 茂
+ 0x8303: "\x8c\x05\u8303", // 范
+ 0x8304: "\x8c\x05\u8304", // 茄
+ 0x8305: "\x8c\x05\u8305", // 茅
+ 0x8306: "\x8c\x05\u8306", // 茆
+ 0x8307: "\x8c\x05\u8307", // 茇
+ 0x8308: "\x8c\x05\u8308", // 茈
+ 0x8309: "\x8c\x05\u8309", // 茉
+ 0x830a: "\x8c\x05\u830a", // 茊
+ 0x830b: "\x8c\x05\u830b", // 茋
+ 0x830c: "\x8c\x05\u830c", // 茌
+ 0x830d: "\x8c\x05\u830d", // 茍
+ 0x830e: "\x8c\x05\u830e", // 茎
+ 0x830f: "\x8c\x05\u830f", // 茏
+ 0x8310: "\x8c\x05\u8310", // 茐
+ 0x8311: "\x8c\x05\u8311", // 茑
+ 0x8312: "\x8c\x06\u8312", // 茒
+ 0x8313: "\x8c\x05\u8313", // 茓
+ 0x8314: "\x8c\x05\u8314", // 茔
+ 0x8315: "\x8c\x05\u8315", // 茕
+ 0x8316: "\x8c\x06\u8316", // 茖
+ 0x8317: "\x8c\x06\u8317", // 茗
+ 0x8318: "\x8c\x06\u8318", // 茘
+ 0x8319: "\x8c\x06\u8319", // 茙
+ 0x831a: "\x8c\x06\u831a", // 茚
+ 0x831b: "\x8c\x06\u831b", // 茛
+ 0x831c: "\x8c\x06\u831c", // 茜
+ 0x831d: "\x8c\a\u831d", // 茝
+ 0x831e: "\x8c\x06\u831e", // 茞
+ 0x831f: "\x8c\x06\u831f", // 茟
+ 0x8320: "\x8c\x06\u8320", // 茠
+ 0x8321: "\x8c\x06\u8321", // 茡
+ 0x8322: "\x8c\x06\u8322", // 茢
+ 0x8323: "\x8c\a\u8323", // 茣
+ 0x8324: "\x8c\x06\u8324", // 茤
+ 0x8325: "\x8c\x06\u8325", // 茥
+ 0x8326: "\x8c\x06\u8326", // 茦
+ 0x8327: "\x8c\x06\u8327", // 茧
+ 0x8328: "\x8c\x06\u8328", // 茨
+ 0x8329: "\x8c\x06\u8329", // 茩
+ 0x832a: "\x8c\x06\u832a", // 茪
+ 0x832b: "\x8c\x06\u832b", // 茫
+ 0x832c: "\x8c\x06\u832c", // 茬
+ 0x832d: "\x8c\x06\u832d", // 茭
+ 0x832e: "\x8c\x06\u832e", // 茮
+ 0x832f: "\x8c\x06\u832f", // 茯
+ 0x8330: "\x8c\x06\u8330", // 茰
+ 0x8331: "\x8c\x06\u8331", // 茱
+ 0x8332: "\x8c\x06\u8332", // 茲
+ 0x8333: "\x8c\x06\u8333", // 茳
+ 0x8334: "\x8c\x06\u8334", // 茴
+ 0x8335: "\x8c\x06\u8335", // 茵
+ 0x8336: "\x8c\x06\u8336", // 茶
+ 0x8337: "\x8c\x06\u8337", // 茷
+ 0x8338: "\x8c\x06\u8338", // 茸
+ 0x8339: "\x8c\x06\u8339", // 茹
+ 0x833a: "\x8c\x06\u833a", // 茺
+ 0x833b: "\x8c\x06\u833b", // 茻
+ 0x833c: "\x8c\x06\u833c", // 茼
+ 0x833d: "\x8c\x06\u833d", // 茽
+ 0x833e: "\x8c\x04\u833e", // 茾
+ 0x833f: "\x8c\x06\u833f", // 茿
+ 0x8340: "\x8c\x06\u8340", // 荀
+ 0x8341: "\x8c\x06\u8341", // 荁
+ 0x8342: "\x8c\x06\u8342", // 荂
+ 0x8343: "\x8c\x06\u8343", // 荃
+ 0x8344: "\x8c\x06\u8344", // 荄
+ 0x8345: "\x8c\x06\u8345", // 荅
+ 0x8346: "\x8c\x06\u8346", // 荆
+ 0x8347: "\x8c\x06\u8347", // 荇
+ 0x8348: "\x8c\x06\u8348", // 荈
+ 0x8349: "\x8c\x06\u8349", // 草
+ 0x834a: "\x8c\x06\u834a", // 荊
+ 0x834b: "\x8c\x06\u834b", // 荋
+ 0x834c: "\x8c\x06\u834c", // 荌
+ 0x834d: "\x8c\x06\u834d", // 荍
+ 0x834e: "\x8c\x06\u834e", // 荎
+ 0x834f: "\x8c\x06\u834f", // 荏
+ 0x8350: "\x8c\x06\u8350", // 荐
+ 0x8351: "\x8c\x06\u8351", // 荑
+ 0x8352: "\x8c\x06\u8352", // 荒
+ 0x8353: "\x8c\b\u8353", // 荓
+ 0x8354: "\x8c\x06\u8354", // 荔
+ 0x8355: "\x8c\x06\u8355", // 荕
+ 0x8356: "\x8c\x06\u8356", // 荖
+ 0x8357: "\x8c\x06\u8357", // 荗
+ 0x8358: "\x8c\x06\u8358", // 荘
+ 0x8359: "\x8c\x06\u8359", // 荙
+ 0x835a: "\x8c\x06\u835a", // 荚
+ 0x835b: "\x8c\x06\u835b", // 荛
+ 0x835c: "\x8c\x06\u835c", // 荜
+ 0x835d: "\x8c\x06\u835d", // 荝
+ 0x835e: "\x8c\x06\u835e", // 荞
+ 0x835f: "\x8c\x06\u835f", // 荟
+ 0x8360: "\x8c\x06\u8360", // 荠
+ 0x8361: "\x8c\x06\u8361", // 荡
+ 0x8362: "\x8c\x06\u8362", // 荢
+ 0x8363: "\x8c\x06\u8363", // 荣
+ 0x8364: "\x8c\x06\u8364", // 荤
+ 0x8365: "\x8c\x06\u8365", // 荥
+ 0x8366: "\x8c\x06\u8366", // 荦
+ 0x8367: "\x8c\x06\u8367", // 荧
+ 0x8368: "\x8c\x06\u8368", // 荨
+ 0x8369: "\x8c\x06\u8369", // 荩
+ 0x836a: "\x8c\x06\u836a", // 荪
+ 0x836b: "\x8c\x06\u836b", // 荫
+ 0x836c: "\x8c\x06\u836c", // 荬
+ 0x836d: "\x8c\x06\u836d", // 荭
+ 0x836e: "\x8c\x06\u836e", // 荮
+ 0x836f: "\x8c\x06\u836f", // 药
+ 0x8370: "\x8c\a\u8370", // 荰
+ 0x8371: "\x8c\a\u8371", // 荱
+ 0x8372: "\x8c\a\u8372", // 荲
+ 0x8373: "\x8c\a\u8373", // 荳
+ 0x8374: "\x8c\a\u8374", // 荴
+ 0x8375: "\x8c\a\u8375", // 荵
+ 0x8376: "\x8c\a\u8376", // 荶
+ 0x8377: "\x8c\a\u8377", // 荷
+ 0x8378: "\x8c\a\u8378", // 荸
+ 0x8379: "\x8c\a\u8379", // 荹
+ 0x837a: "\x8c\a\u837a", // 荺
+ 0x837b: "\x8c\a\u837b", // 荻
+ 0x837c: "\x8c\a\u837c", // 荼
+ 0x837d: "\x8c\a\u837d", // 荽
+ 0x837e: "\x8c\a\u837e", // 荾
+ 0x837f: "\x8c\a\u837f", // 荿
+ 0x8380: "\x8c\a\u8380", // 莀
+ 0x8381: "\x8c\a\u8381", // 莁
+ 0x8382: "\x8c\a\u8382", // 莂
+ 0x8383: "\x8c\a\u8383", // 莃
+ 0x8384: "\x8c\a\u8384", // 莄
+ 0x8385: "\x8c\a\u8385", // 莅
+ 0x8386: "\x8c\a\u8386", // 莆
+ 0x8387: "\x8c\a\u8387", // 莇
+ 0x8388: "\x8c\a\u8388", // 莈
+ 0x8389: "\x8c\a\u8389", // 莉
+ 0x838a: "\x8c\a\u838a", // 莊
+ 0x838b: "\x8c\a\u838b", // 莋
+ 0x838c: "\x8c\a\u838c", // 莌
+ 0x838d: "\x8c\a\u838d", // 莍
+ 0x838e: "\x8c\a\u838e", // 莎
+ 0x838f: "\x8c\a\u838f", // 莏
+ 0x8390: "\x8c\a\u8390", // 莐
+ 0x8391: "\x8c\a\u8391", // 莑
+ 0x8392: "\x8c\a\u8392", // 莒
+ 0x8393: "\x8c\a\u8393", // 莓
+ 0x8394: "\x8c\a\u8394", // 莔
+ 0x8395: "\x8c\a\u8395", // 莕
+ 0x8396: "\x8c\a\u8396", // 莖
+ 0x8397: "\x8c\a\u8397", // 莗
+ 0x8398: "\x8c\a\u8398", // 莘
+ 0x8399: "\x8c\a\u8399", // 莙
+ 0x839a: "\x8c\a\u839a", // 莚
+ 0x839b: "\x8c\a\u839b", // 莛
+ 0x839c: "\x8c\a\u839c", // 莜
+ 0x839d: "\x8c\a\u839d", // 莝
+ 0x839e: "\x8c\a\u839e", // 莞
+ 0x839f: "\x8c\a\u839f", // 莟
+ 0x83a0: "\x8c\a\u83a0", // 莠
+ 0x83a1: "\x8c\a\u83a1", // 莡
+ 0x83a2: "\x8c\a\u83a2", // 莢
+ 0x83a3: "\x8c\a\u83a3", // 莣
+ 0x83a4: "\x8c\a\u83a4", // 莤
+ 0x83a5: "\x8c\a\u83a5", // 莥
+ 0x83a6: "\x8c\a\u83a6", // 莦
+ 0x83a7: "\x8c\a\u83a7", // 莧
+ 0x83a8: "\x8c\a\u83a8", // 莨
+ 0x83a9: "\x8c\a\u83a9", // 莩
+ 0x83aa: "\x8c\a\u83aa", // 莪
+ 0x83ab: "\x8c\a\u83ab", // 莫
+ 0x83ac: "\x8c\a\u83ac", // 莬
+ 0x83ad: "\x8c\t\u83ad", // 莭
+ 0x83ae: "\x8c\a\u83ae", // 莮
+ 0x83af: "\x8c\a\u83af", // 莯
+ 0x83b0: "\x8c\a\u83b0", // 莰
+ 0x83b1: "\x8c\a\u83b1", // 莱
+ 0x83b2: "\x8c\a\u83b2", // 莲
+ 0x83b3: "\x8c\a\u83b3", // 莳
+ 0x83b4: "\x8c\a\u83b4", // 莴
+ 0x83b5: "\x8c\a\u83b5", // 莵
+ 0x83b6: "\x8c\a\u83b6", // 莶
+ 0x83b7: "\x8c\a\u83b7", // 获
+ 0x83b8: "\x8c\a\u83b8", // 莸
+ 0x83b9: "\x8c\a\u83b9", // 莹
+ 0x83ba: "\x8c\a\u83ba", // 莺
+ 0x83bb: "\x8c\a\u83bb", // 莻
+ 0x83bc: "\x8c\a\u83bc", // 莼
+ 0x83bd: "\x8c\a\u83bd", // 莽
+ 0x83be: "\x8c\b\u83be", // 莾
+ 0x83bf: "\x8c\b\u83bf", // 莿
+ 0x83c0: "\x8c\b\u83c0", // 菀
+ 0x83c1: "\x8c\b\u83c1", // 菁
+ 0x83c2: "\x8c\b\u83c2", // 菂
+ 0x83c3: "\x8c\b\u83c3", // 菃
+ 0x83c4: "\x8c\b\u83c4", // 菄
+ 0x83c5: "\x8c\b\u83c5", // 菅
+ 0x83c6: "\x8c\b\u83c6", // 菆
+ 0x83c7: "\x8c\b\u83c7", // 菇
+ 0x83c8: "\x8c\b\u83c8", // 菈
+ 0x83c9: "\x8c\b\u83c9", // 菉
+ 0x83ca: "\x8c\b\u83ca", // 菊
+ 0x83cb: "\x8c\b\u83cb", // 菋
+ 0x83cc: "\x8c\b\u83cc", // 菌
+ 0x83cd: "\x8c\b\u83cd", // 菍
+ 0x83ce: "\x8c\b\u83ce", // 菎
+ 0x83cf: "\x8c\b\u83cf", // 菏
+ 0x83d0: "\x8c\b\u83d0", // 菐
+ 0x83d1: "\x8c\b\u83d1", // 菑
+ 0x83d2: "\x8c\b\u83d2", // 菒
+ 0x83d3: "\x8c\b\u83d3", // 菓
+ 0x83d4: "\x8c\b\u83d4", // 菔
+ 0x83d5: "\x8c\b\u83d5", // 菕
+ 0x83d6: "\x8c\b\u83d6", // 菖
+ 0x83d7: "\x8c\b\u83d7", // 菗
+ 0x83d8: "\x8c\b\u83d8", // 菘
+ 0x83d9: "\x8c\b\u83d9", // 菙
+ 0x83da: "\x8c\b\u83da", // 菚
+ 0x83db: "\x8c\b\u83db", // 菛
+ 0x83dc: "\x8c\b\u83dc", // 菜
+ 0x83dd: "\x8c\b\u83dd", // 菝
+ 0x83de: "\x8c\b\u83de", // 菞
+ 0x83df: "\x8c\b\u83df", // 菟
+ 0x83e0: "\x8c\b\u83e0", // 菠
+ 0x83e1: "\x8c\b\u83e1", // 菡
+ 0x83e2: "\x8c\b\u83e2", // 菢
+ 0x83e3: "\x8c\b\u83e3", // 菣
+ 0x83e4: "\x8c\b\u83e4", // 菤
+ 0x83e5: "\x8c\b\u83e5", // 菥
+ 0x83e6: "\x8c\b\u83e6", // 菦
+ 0x83e7: "\x8c\b\u83e7", // 菧
+ 0x83e8: "\x8c\b\u83e8", // 菨
+ 0x83e9: "\x8c\b\u83e9", // 菩
+ 0x83ea: "\x8c\b\u83ea", // 菪
+ 0x83eb: "\x8c\b\u83eb", // 菫
+ 0x83ec: "\x8c\b\u83ec", // 菬
+ 0x83ed: "\x8c\b\u83ed", // 菭
+ 0x83ee: "\x8c\b\u83ee", // 菮
+ 0x83ef: "\x8c\b\u83ef", // 華
+ 0x83f0: "\x8c\b\u83f0", // 菰
+ 0x83f1: "\x8c\b\u83f1", // 菱
+ 0x83f2: "\x8c\b\u83f2", // 菲
+ 0x83f3: "\x8c\b\u83f3", // 菳
+ 0x83f4: "\x8c\b\u83f4", // 菴
+ 0x83f5: "\x8c\b\u83f5", // 菵
+ 0x83f6: "\x8c\b\u83f6", // 菶
+ 0x83f7: "\x8c\b\u83f7", // 菷
+ 0x83f8: "\x8c\b\u83f8", // 菸
+ 0x83f9: "\x8c\b\u83f9", // 菹
+ 0x83fa: "\x8c\b\u83fa", // 菺
+ 0x83fb: "\x8c\b\u83fb", // 菻
+ 0x83fc: "\x8c\b\u83fc", // 菼
+ 0x83fd: "\x8c\b\u83fd", // 菽
+ 0x83fe: "\x8c\b\u83fe", // 菾
+ 0x83ff: "\x8c\b\u83ff", // 菿
+ 0x8400: "\x8c\b\u8400", // 萀
+ 0x8401: "\x8c\b\u8401", // 萁
+ 0x8402: "\x8c\b\u8402", // 萂
+ 0x8403: "\x8c\b\u8403", // 萃
+ 0x8404: "\x8c\b\u8404", // 萄
+ 0x8405: "\x8c\b\u8405", // 萅
+ 0x8406: "\x8c\b\u8406", // 萆
+ 0x8407: "\x8c\b\u8407", // 萇
+ 0x8408: "\x8c\b\u8408", // 萈
+ 0x8409: "\x8c\b\u8409", // 萉
+ 0x840a: "\x8c\b\u840a", // 萊
+ 0x840b: "\x8c\b\u840b", // 萋
+ 0x840c: "\x8c\b\u840c", // 萌
+ 0x840d: "\x8c\b\u840d", // 萍
+ 0x840e: "\x8c\b\u840e", // 萎
+ 0x840f: "\x8c\b\u840f", // 萏
+ 0x8410: "\x8c\b\u8410", // 萐
+ 0x8411: "\x8c\b\u8411", // 萑
+ 0x8412: "\x8c\b\u8412", // 萒
+ 0x8413: "\x8c\b\u8413", // 萓
+ 0x8414: "\x8c\b\u8414", // 萔
+ 0x8415: "\x8c\b\u8415", // 萕
+ 0x8416: "\x8c\b\u8416", // 萖
+ 0x8417: "\x8c\b\u8417", // 萗
+ 0x8418: "\x8c\b\u8418", // 萘
+ 0x8419: "\x8c\b\u8419", // 萙
+ 0x841a: "\x8c\b\u841a", // 萚
+ 0x841b: "\x8c\b\u841b", // 萛
+ 0x841c: "\x8c\b\u841c", // 萜
+ 0x841d: "\x8c\b\u841d", // 萝
+ 0x841e: "\x8c\b\u841e", // 萞
+ 0x841f: "\x8c\b\u841f", // 萟
+ 0x8420: "\x8c\b\u8420", // 萠
+ 0x8421: "\x8c\b\u8421", // 萡
+ 0x8422: "\x8c\b\u8422", // 萢
+ 0x8423: "\x8c\b\u8423", // 萣
+ 0x8424: "\x8c\b\u8424", // 萤
+ 0x8425: "\x8c\b\u8425", // 营
+ 0x8426: "\x8c\b\u8426", // 萦
+ 0x8427: "\x8c\b\u8427", // 萧
+ 0x8428: "\x8c\b\u8428", // 萨
+ 0x8429: "\x8c\t\u8429", // 萩
+ 0x842a: "\x8c\t\u842a", // 萪
+ 0x842b: "\x8c\t\u842b", // 萫
+ 0x842c: "r\b\u842c", // 萬
+ 0x842d: "\x8c\t\u842d", // 萭
+ 0x842e: "\x8c\t\u842e", // 萮
+ 0x842f: "\x8c\t\u842f", // 萯
+ 0x8430: "\x8c\t\u8430", // 萰
+ 0x8431: "\x8c\t\u8431", // 萱
+ 0x8432: "\x8c\t\u8432", // 萲
+ 0x8433: "\x8c\t\u8433", // 萳
+ 0x8434: "\x8c\t\u8434", // 萴
+ 0x8435: "\x8c\t\u8435", // 萵
+ 0x8436: "\x8c\t\u8436", // 萶
+ 0x8437: "\x8c\t\u8437", // 萷
+ 0x8438: "\x8c\t\u8438", // 萸
+ 0x8439: "\x8c\t\u8439", // 萹
+ 0x843a: "\x8c\t\u843a", // 萺
+ 0x843b: "\x8c\t\u843b", // 萻
+ 0x843c: "\x8c\t\u843c", // 萼
+ 0x843d: "\x8c\t\u843d", // 落
+ 0x843e: "\x8c\t\u843e", // 萾
+ 0x843f: "\x8c\t\u843f", // 萿
+ 0x8440: "\x8c\t\u8440", // 葀
+ 0x8441: "\x8c\t\u8441", // 葁
+ 0x8442: "\x8c\t\u8442", // 葂
+ 0x8443: "\x8c\t\u8443", // 葃
+ 0x8444: "\x8c\t\u8444", // 葄
+ 0x8445: "\x8c\t\u8445", // 葅
+ 0x8446: "\x8c\t\u8446", // 葆
+ 0x8447: "\x8c\t\u8447", // 葇
+ 0x8448: "\x8c\t\u8448", // 葈
+ 0x8449: "\x8c\t\u8449", // 葉
+ 0x844a: "\x8c\t\u844a", // 葊
+ 0x844b: "\x8c\t\u844b", // 葋
+ 0x844c: "\x8c\t\u844c", // 葌
+ 0x844d: "\x8c\t\u844d", // 葍
+ 0x844e: "\x8c\t\u844e", // 葎
+ 0x844f: "\x8c\t\u844f", // 葏
+ 0x8450: "\x8c\t\u8450", // 葐
+ 0x8451: "\x8c\t\u8451", // 葑
+ 0x8452: "\x8c\t\u8452", // 葒
+ 0x8453: "\x8c\t\u8453", // 葓
+ 0x8454: "\x8c\t\u8454", // 葔
+ 0x8455: "\x8c\t\u8455", // 葕
+ 0x8456: "\x8c\t\u8456", // 葖
+ 0x8457: "\x8c\b\u8457", // 著
+ 0x8458: "\x8c\t\u8458", // 葘
+ 0x8459: "\x8c\t\u8459", // 葙
+ 0x845a: "\x8c\t\u845a", // 葚
+ 0x845b: "\x8c\t\u845b", // 葛
+ 0x845c: "\x8c\t\u845c", // 葜
+ 0x845d: "\x8c\t\u845d", // 葝
+ 0x845e: "\x8c\t\u845e", // 葞
+ 0x845f: "\x8c\t\u845f", // 葟
+ 0x8460: "\x8c\t\u8460", // 葠
+ 0x8461: "\x8c\t\u8461", // 葡
+ 0x8462: "\x8c\t\u8462", // 葢
+ 0x8463: "\x8c\t\u8463", // 董
+ 0x8464: "\x8c\t\u8464", // 葤
+ 0x8465: "\x8c\t\u8465", // 葥
+ 0x8466: "\x8c\t\u8466", // 葦
+ 0x8467: "\x8c\t\u8467", // 葧
+ 0x8468: "\x8c\t\u8468", // 葨
+ 0x8469: "\x8c\t\u8469", // 葩
+ 0x846a: "\x8c\t\u846a", // 葪
+ 0x846b: "\x8c\t\u846b", // 葫
+ 0x846c: "\x8c\t\u846c", // 葬
+ 0x846d: "\x8c\t\u846d", // 葭
+ 0x846e: "\x8c\t\u846e", // 葮
+ 0x846f: "\x8c\t\u846f", // 葯
+ 0x8470: "\x8c\t\u8470", // 葰
+ 0x8471: "\x8c\t\u8471", // 葱
+ 0x8472: "\x8c\t\u8472", // 葲
+ 0x8473: "\x8c\t\u8473", // 葳
+ 0x8474: "\x8c\t\u8474", // 葴
+ 0x8475: "\x8c\t\u8475", // 葵
+ 0x8476: "\x8c\t\u8476", // 葶
+ 0x8477: "\x8c\t\u8477", // 葷
+ 0x8478: "\x8c\t\u8478", // 葸
+ 0x8479: "\x8c\t\u8479", // 葹
+ 0x847a: "\x8c\t\u847a", // 葺
+ 0x847b: "\x8c\t\u847b", // 葻
+ 0x847c: "\x8c\t\u847c", // 葼
+ 0x847d: "\x8c\t\u847d", // 葽
+ 0x847e: "\x8c\t\u847e", // 葾
+ 0x847f: "\x8c\t\u847f", // 葿
+ 0x8480: "\x8c\t\u8480", // 蒀
+ 0x8481: "\x8c\t\u8481", // 蒁
+ 0x8482: "\x8c\t\u8482", // 蒂
+ 0x8483: "\x8c\t\u8483", // 蒃
+ 0x8484: "\x8c\t\u8484", // 蒄
+ 0x8485: "\x8c\t\u8485", // 蒅
+ 0x8486: "\x8c\t\u8486", // 蒆
+ 0x8487: "\x8c\t\u8487", // 蒇
+ 0x8488: "\x8c\t\u8488", // 蒈
+ 0x8489: "\x8c\t\u8489", // 蒉
+ 0x848a: "\x8c\t\u848a", // 蒊
+ 0x848b: "\x8c\t\u848b", // 蒋
+ 0x848c: "\x8c\t\u848c", // 蒌
+ 0x848d: "\x8c\t\u848d", // 蒍
+ 0x848e: "\x8c\t\u848e", // 蒎
+ 0x848f: "\x8c\t\u848f", // 蒏
+ 0x8490: "\x8c\n\u8490", // 蒐
+ 0x8491: "\x8c\n\u8491", // 蒑
+ 0x8492: "\x8c\n\u8492", // 蒒
+ 0x8493: "\x8c\n\u8493", // 蒓
+ 0x8494: "\x8c\n\u8494", // 蒔
+ 0x8495: "\x8c\n\u8495", // 蒕
+ 0x8496: "\x8c\n\u8496", // 蒖
+ 0x8497: "\x8c\n\u8497", // 蒗
+ 0x8498: "\x8c\n\u8498", // 蒘
+ 0x8499: "\x8c\n\u8499", // 蒙
+ 0x849a: "\x8c\n\u849a", // 蒚
+ 0x849b: "\x8c\n\u849b", // 蒛
+ 0x849c: "\x8c\n\u849c", // 蒜
+ 0x849d: "\x8c\n\u849d", // 蒝
+ 0x849e: "\x8c\n\u849e", // 蒞
+ 0x849f: "\x8c\n\u849f", // 蒟
+ 0x84a0: "\x8c\n\u84a0", // 蒠
+ 0x84a1: "\x8c\n\u84a1", // 蒡
+ 0x84a2: "\x8c\n\u84a2", // 蒢
+ 0x84a3: "\x8c\n\u84a3", // 蒣
+ 0x84a4: "\x8c\n\u84a4", // 蒤
+ 0x84a5: "\x8c\n\u84a5", // 蒥
+ 0x84a6: "\x8c\n\u84a6", // 蒦
+ 0x84a7: "\x8c\n\u84a7", // 蒧
+ 0x84a8: "\x8c\n\u84a8", // 蒨
+ 0x84a9: "\x8c\n\u84a9", // 蒩
+ 0x84aa: "\x8c\n\u84aa", // 蒪
+ 0x84ab: "\x8c\n\u84ab", // 蒫
+ 0x84ac: "\x8c\n\u84ac", // 蒬
+ 0x84ad: "\x8c\n\u84ad", // 蒭
+ 0x84ae: "\x8c\n\u84ae", // 蒮
+ 0x84af: "\x8c\n\u84af", // 蒯
+ 0x84b0: "\x8c\n\u84b0", // 蒰
+ 0x84b1: "\x8c\n\u84b1", // 蒱
+ 0x84b2: "\x8c\n\u84b2", // 蒲
+ 0x84b3: "\x8c\n\u84b3", // 蒳
+ 0x84b4: "\x8c\n\u84b4", // 蒴
+ 0x84b5: "\x8c\n\u84b5", // 蒵
+ 0x84b6: "\x8c\n\u84b6", // 蒶
+ 0x84b7: "\x8c\n\u84b7", // 蒷
+ 0x84b8: "V\n\u84b8", // 蒸
+ 0x84b9: "\x8c\n\u84b9", // 蒹
+ 0x84ba: "\x8c\n\u84ba", // 蒺
+ 0x84bb: "\x8c\n\u84bb", // 蒻
+ 0x84bc: "\x8c\n\u84bc", // 蒼
+ 0x84bd: "\x8c\n\u84bd", // 蒽
+ 0x84be: "\x8c\n\u84be", // 蒾
+ 0x84bf: "\x8c\n\u84bf", // 蒿
+ 0x84c0: "\x8c\n\u84c0", // 蓀
+ 0x84c1: "\x8c\n\u84c1", // 蓁
+ 0x84c2: "\x8c\n\u84c2", // 蓂
+ 0x84c3: "\x8c\n\u84c3", // 蓃
+ 0x84c4: "\x8c\n\u84c4", // 蓄
+ 0x84c5: "\x8c\n\u84c5", // 蓅
+ 0x84c6: "\x8c\n\u84c6", // 蓆
+ 0x84c7: "\x8c\n\u84c7", // 蓇
+ 0x84c8: "\x8c\n\u84c8", // 蓈
+ 0x84c9: "\x8c\n\u84c9", // 蓉
+ 0x84ca: "\x8c\n\u84ca", // 蓊
+ 0x84cb: "\x8c\n\u84cb", // 蓋
+ 0x84cc: "\x8c\n\u84cc", // 蓌
+ 0x84cd: "\x8c\n\u84cd", // 蓍
+ 0x84ce: "\x8c\n\u84ce", // 蓎
+ 0x84cf: "\x8c\n\u84cf", // 蓏
+ 0x84d0: "\x8c\n\u84d0", // 蓐
+ 0x84d1: "\x8c\n\u84d1", // 蓑
+ 0x84d2: "\x8c\n\u84d2", // 蓒
+ 0x84d3: "\x8c\n\u84d3", // 蓓
+ 0x84d4: "\x8c\n\u84d4", // 蓔
+ 0x84d5: "\x8c\n\u84d5", // 蓕
+ 0x84d6: "\x8c\n\u84d6", // 蓖
+ 0x84d7: "\x8c\n\u84d7", // 蓗
+ 0x84d8: "\x8c\n\u84d8", // 蓘
+ 0x84d9: "\x8c\n\u84d9", // 蓙
+ 0x84da: "\x8c\n\u84da", // 蓚
+ 0x84db: "\x8c\n\u84db", // 蓛
+ 0x84dc: "\x8c\n\u84dc", // 蓜
+ 0x84dd: "\x8c\n\u84dd", // 蓝
+ 0x84de: "\x8c\n\u84de", // 蓞
+ 0x84df: "\x8c\n\u84df", // 蓟
+ 0x84e0: "\x8c\n\u84e0", // 蓠
+ 0x84e1: "\x8c\n\u84e1", // 蓡
+ 0x84e2: "\x8c\n\u84e2", // 蓢
+ 0x84e3: "\x8c\n\u84e3", // 蓣
+ 0x84e4: "\x8c\n\u84e4", // 蓤
+ 0x84e5: "\x8c\v\u84e5", // 蓥
+ 0x84e6: "\x8c\n\u84e6", // 蓦
+ 0x84e7: "\x8c\v\u84e7", // 蓧
+ 0x84e8: "\x8c\v\u84e8", // 蓨
+ 0x84e9: "\x8c\v\u84e9", // 蓩
+ 0x84ea: "\x8c\v\u84ea", // 蓪
+ 0x84eb: "\x8c\v\u84eb", // 蓫
+ 0x84ec: "\x8c\v\u84ec", // 蓬
+ 0x84ed: "\x8c\v\u84ed", // 蓭
+ 0x84ee: "\x8c\v\u84ee", // 蓮
+ 0x84ef: "\x8c\v\u84ef", // 蓯
+ 0x84f0: "\x8c\v\u84f0", // 蓰
+ 0x84f1: "\x8c\v\u84f1", // 蓱
+ 0x84f2: "\x8c\v\u84f2", // 蓲
+ 0x84f3: "\x8c\v\u84f3", // 蓳
+ 0x84f4: "\x8c\v\u84f4", // 蓴
+ 0x84f5: "\x8c\v\u84f5", // 蓵
+ 0x84f6: "\x8c\v\u84f6", // 蓶
+ 0x84f7: "\x8c\v\u84f7", // 蓷
+ 0x84f8: "\x8c\v\u84f8", // 蓸
+ 0x84f9: "\x8c\v\u84f9", // 蓹
+ 0x84fa: "\x8c\v\u84fa", // 蓺
+ 0x84fb: "\x8c\v\u84fb", // 蓻
+ 0x84fc: "\x8c\v\u84fc", // 蓼
+ 0x84fd: "\x8c\v\u84fd", // 蓽
+ 0x84fe: "\x8c\v\u84fe", // 蓾
+ 0x84ff: "\x8c\v\u84ff", // 蓿
+ 0x8500: "\x8c\v\u8500", // 蔀
+ 0x8501: "\x8c\v\u8501", // 蔁
+ 0x8502: "\x8c\v\u8502", // 蔂
+ 0x8503: "\x8c\v\u8503", // 蔃
+ 0x8504: "\x8c\v\u8504", // 蔄
+ 0x8505: "\x8c\v\u8505", // 蔅
+ 0x8506: "\x8c\v\u8506", // 蔆
+ 0x8507: "\x8c\v\u8507", // 蔇
+ 0x8508: "\x8c\v\u8508", // 蔈
+ 0x8509: "\x8c\v\u8509", // 蔉
+ 0x850a: "\x8c\v\u850a", // 蔊
+ 0x850b: "\x8c\v\u850b", // 蔋
+ 0x850c: "\x8c\v\u850c", // 蔌
+ 0x850d: "\x8c\v\u850d", // 蔍
+ 0x850e: "\x8c\v\u850e", // 蔎
+ 0x850f: "\x8c\v\u850f", // 蔏
+ 0x8510: "\x8c\v\u8510", // 蔐
+ 0x8511: "\x8c\v\u8511", // 蔑
+ 0x8512: "\x8c\v\u8512", // 蔒
+ 0x8513: "\x8c\v\u8513", // 蔓
+ 0x8514: "\x8c\v\u8514", // 蔔
+ 0x8515: "\x8c\v\u8515", // 蔕
+ 0x8516: "\x8c\v\u8516", // 蔖
+ 0x8517: "\x8c\v\u8517", // 蔗
+ 0x8518: "\x8c\v\u8518", // 蔘
+ 0x8519: "\x8c\v\u8519", // 蔙
+ 0x851a: "\x8c\v\u851a", // 蔚
+ 0x851b: "\x8c\v\u851b", // 蔛
+ 0x851c: "\x8c\v\u851c", // 蔜
+ 0x851d: "\x8c\v\u851d", // 蔝
+ 0x851e: "\x8c\v\u851e", // 蔞
+ 0x851f: "\x8c\v\u851f", // 蔟
+ 0x8520: "\x8c\v\u8520", // 蔠
+ 0x8521: "\x8c\v\u8521", // 蔡
+ 0x8522: "\x8c\v\u8522", // 蔢
+ 0x8523: "\x8c\v\u8523", // 蔣
+ 0x8524: "\x8c\v\u8524", // 蔤
+ 0x8525: "\x8c\v\u8525", // 蔥
+ 0x8526: "\x8c\v\u8526", // 蔦
+ 0x8527: "\x8c\v\u8527", // 蔧
+ 0x8528: "\x8c\v\u8528", // 蔨
+ 0x8529: "\x8c\v\u8529", // 蔩
+ 0x852a: "\x8c\v\u852a", // 蔪
+ 0x852b: "\x8c\v\u852b", // 蔫
+ 0x852c: "\x8c\v\u852c", // 蔬
+ 0x852d: "\x8c\v\u852d", // 蔭
+ 0x852e: "\x8c\v\u852e", // 蔮
+ 0x852f: "\x8c\v\u852f", // 蔯
+ 0x8530: "\x8c\v\u8530", // 蔰
+ 0x8531: "\x8c\v\u8531", // 蔱
+ 0x8532: "\x8c\v\u8532", // 蔲
+ 0x8533: "\x8c\v\u8533", // 蔳
+ 0x8534: "\x8c\v\u8534", // 蔴
+ 0x8535: "\x8c\v\u8535", // 蔵
+ 0x8536: "\x8c\v\u8536", // 蔶
+ 0x8537: "\x8c\v\u8537", // 蔷
+ 0x8538: "\x8c\v\u8538", // 蔸
+ 0x8539: "\x8c\v\u8539", // 蔹
+ 0x853a: "\x8c\v\u853a", // 蔺
+ 0x853b: "\x8c\v\u853b", // 蔻
+ 0x853c: "\x8c\v\u853c", // 蔼
+ 0x853d: "\x8c\f\u853d", // 蔽
+ 0x853e: "\x8c\f\u853e", // 蔾
+ 0x853f: "\x8c\f\u853f", // 蔿
+ 0x8540: "\x8c\f\u8540", // 蕀
+ 0x8541: "\x8c\f\u8541", // 蕁
+ 0x8542: "\x8c\f\u8542", // 蕂
+ 0x8543: "\x8c\f\u8543", // 蕃
+ 0x8544: "\x8c\f\u8544", // 蕄
+ 0x8545: "\x8c\f\u8545", // 蕅
+ 0x8546: "\x8c\f\u8546", // 蕆
+ 0x8547: "\x8c\f\u8547", // 蕇
+ 0x8548: "\x8c\f\u8548", // 蕈
+ 0x8549: "\x8c\f\u8549", // 蕉
+ 0x854a: "\x8c\f\u854a", // 蕊
+ 0x854b: "\x8c\f\u854b", // 蕋
+ 0x854c: "\x8c\f\u854c", // 蕌
+ 0x854d: "\x8c\f\u854d", // 蕍
+ 0x854e: "\x8c\f\u854e", // 蕎
+ 0x854f: "\x8c\f\u854f", // 蕏
+ 0x8550: "\x8c\f\u8550", // 蕐
+ 0x8551: "\x8c\f\u8551", // 蕑
+ 0x8552: "\x8c\f\u8552", // 蕒
+ 0x8553: "\x8c\f\u8553", // 蕓
+ 0x8554: "\x8c\f\u8554", // 蕔
+ 0x8555: "\x8c\f\u8555", // 蕕
+ 0x8556: "\x8c\f\u8556", // 蕖
+ 0x8557: "\x8c\f\u8557", // 蕗
+ 0x8558: "\x8c\f\u8558", // 蕘
+ 0x8559: "\x8c\f\u8559", // 蕙
+ 0x855a: "\x8c\f\u855a", // 蕚
+ 0x855b: "\x8c\f\u855b", // 蕛
+ 0x855c: "\x8c\f\u855c", // 蕜
+ 0x855d: "\x8c\f\u855d", // 蕝
+ 0x855e: "\x8c\f\u855e", // 蕞
+ 0x855f: "\x8c\f\u855f", // 蕟
+ 0x8560: "\x8c\f\u8560", // 蕠
+ 0x8561: "\x8c\f\u8561", // 蕡
+ 0x8562: "\x8c\f\u8562", // 蕢
+ 0x8563: "\x8c\f\u8563", // 蕣
+ 0x8564: "\x8c\f\u8564", // 蕤
+ 0x8565: "\x8c\f\u8565", // 蕥
+ 0x8566: "\x8c\f\u8566", // 蕦
+ 0x8567: "\x8c\f\u8567", // 蕧
+ 0x8568: "\x8c\f\u8568", // 蕨
+ 0x8569: "\x8c\f\u8569", // 蕩
+ 0x856a: "\x8c\f\u856a", // 蕪
+ 0x856b: "\x8c\f\u856b", // 蕫
+ 0x856c: "\x8c\f\u856c", // 蕬
+ 0x856d: "\x8c\f\u856d", // 蕭
+ 0x856e: "\x8c\f\u856e", // 蕮
+ 0x856f: "\x8c\f\u856f", // 蕯
+ 0x8570: "\x8c\f\u8570", // 蕰
+ 0x8571: "\x8c\f\u8571", // 蕱
+ 0x8572: "\x8c\f\u8572", // 蕲
+ 0x8573: "\x8c\f\u8573", // 蕳
+ 0x8574: "\x8c\f\u8574", // 蕴
+ 0x8575: "\x8c\f\u8575", // 蕵
+ 0x8576: "\x8c\r\u8576", // 蕶
+ 0x8577: "\x8c\r\u8577", // 蕷
+ 0x8578: "\x8c\r\u8578", // 蕸
+ 0x8579: "\x8c\r\u8579", // 蕹
+ 0x857a: "\x8c\r\u857a", // 蕺
+ 0x857b: "\x8c\r\u857b", // 蕻
+ 0x857c: "\x8c\r\u857c", // 蕼
+ 0x857d: "\x8c\r\u857d", // 蕽
+ 0x857e: "\x8c\r\u857e", // 蕾
+ 0x857f: "\x8c\r\u857f", // 蕿
+ 0x8580: "\x8c\r\u8580", // 薀
+ 0x8581: "\x8c\r\u8581", // 薁
+ 0x8582: "\x8c\r\u8582", // 薂
+ 0x8583: "\x8c\r\u8583", // 薃
+ 0x8584: "\x8c\r\u8584", // 薄
+ 0x8585: "\x8c\r\u8585", // 薅
+ 0x8586: "\x8c\r\u8586", // 薆
+ 0x8587: "\x8c\r\u8587", // 薇
+ 0x8588: "\x8c\r\u8588", // 薈
+ 0x8589: "\x8c\r\u8589", // 薉
+ 0x858a: "\x8c\r\u858a", // 薊
+ 0x858b: "\x8c\r\u858b", // 薋
+ 0x858c: "\x8c\r\u858c", // 薌
+ 0x858d: "\x8c\r\u858d", // 薍
+ 0x858e: "\x8c\r\u858e", // 薎
+ 0x858f: "\x8c\r\u858f", // 薏
+ 0x8590: "\x8c\r\u8590", // 薐
+ 0x8591: "\x8c\r\u8591", // 薑
+ 0x8592: "\x8c\r\u8592", // 薒
+ 0x8593: "\x8c\r\u8593", // 薓
+ 0x8594: "\x8c\r\u8594", // 薔
+ 0x8595: "\x8c\r\u8595", // 薕
+ 0x8596: "\x8c\r\u8596", // 薖
+ 0x8597: "\x8c\r\u8597", // 薗
+ 0x8598: "\x8c\r\u8598", // 薘
+ 0x8599: "\x8c\r\u8599", // 薙
+ 0x859a: "\x8c\r\u859a", // 薚
+ 0x859b: "\x8c\r\u859b", // 薛
+ 0x859c: "\x8c\r\u859c", // 薜
+ 0x859d: "\x8c\r\u859d", // 薝
+ 0x859e: "\x8c\r\u859e", // 薞
+ 0x859f: "\x8c\r\u859f", // 薟
+ 0x85a0: "\x8c\r\u85a0", // 薠
+ 0x85a1: "\x8c\r\u85a1", // 薡
+ 0x85a2: "\x8c\r\u85a2", // 薢
+ 0x85a3: "\x8c\r\u85a3", // 薣
+ 0x85a4: "\x8c\r\u85a4", // 薤
+ 0x85a5: "\x8c\r\u85a5", // 薥
+ 0x85a6: "\x8c\r\u85a6", // 薦
+ 0x85a7: "\x8c\r\u85a7", // 薧
+ 0x85a8: "\x8c\r\u85a8", // 薨
+ 0x85a9: "\x8c\x0e\u85a9", // 薩
+ 0x85aa: "\x8c\r\u85aa", // 薪
+ 0x85ab: "\x8c\r\u85ab", // 薫
+ 0x85ac: "\x8c\r\u85ac", // 薬
+ 0x85ad: "\x8c\x0e\u85ad", // 薭
+ 0x85ae: "\x8c\r\u85ae", // 薮
+ 0x85af: "\x8c\x0e\u85af", // 薯
+ 0x85b0: "\x8c\x0e\u85b0", // 薰
+ 0x85b1: "\x8c\x0e\u85b1", // 薱
+ 0x85b2: "\x8c\x0e\u85b2", // 薲
+ 0x85b3: "\x8c\x0e\u85b3", // 薳
+ 0x85b4: "\x8c\x0e\u85b4", // 薴
+ 0x85b5: "\x8c\x0e\u85b5", // 薵
+ 0x85b6: "\x8c\x0e\u85b6", // 薶
+ 0x85b7: "\x8c\x0e\u85b7", // 薷
+ 0x85b8: "\x8c\x0e\u85b8", // 薸
+ 0x85b9: "\x8c\x0e\u85b9", // 薹
+ 0x85ba: "\x8c\x0e\u85ba", // 薺
+ 0x85bb: "\x8c\x0e\u85bb", // 薻
+ 0x85bc: "\x8c\x0e\u85bc", // 薼
+ 0x85bd: "\x8c\x0e\u85bd", // 薽
+ 0x85be: "\x8c\x0e\u85be", // 薾
+ 0x85bf: "\x8c\x0e\u85bf", // 薿
+ 0x85c0: "\x8c\x0e\u85c0", // 藀
+ 0x85c1: "\x8c\x0e\u85c1", // 藁
+ 0x85c2: "\x8c\x0e\u85c2", // 藂
+ 0x85c3: "\x8c\x0e\u85c3", // 藃
+ 0x85c4: "\x8c\x0e\u85c4", // 藄
+ 0x85c5: "\x8c\x0e\u85c5", // 藅
+ 0x85c6: "\x8c\x0e\u85c6", // 藆
+ 0x85c7: "\x8c\x0e\u85c7", // 藇
+ 0x85c8: "\x8c\x0e\u85c8", // 藈
+ 0x85c9: "\x8c\x0e\u85c9", // 藉
+ 0x85ca: "\x8c\x0e\u85ca", // 藊
+ 0x85cb: "\x8c\x0e\u85cb", // 藋
+ 0x85cc: "\x8c\x0e\u85cc", // 藌
+ 0x85cd: "\x8c\x0e\u85cd", // 藍
+ 0x85ce: "\x8c\x0e\u85ce", // 藎
+ 0x85cf: "\x8c\x0e\u85cf", // 藏
+ 0x85d0: "\x8c\x0e\u85d0", // 藐
+ 0x85d1: "\x8c\x0e\u85d1", // 藑
+ 0x85d2: "\x8c\x0e\u85d2", // 藒
+ 0x85d3: "\x8c\x0e\u85d3", // 藓
+ 0x85d4: "\x8c\x0f\u85d4", // 藔
+ 0x85d5: "\x8c\x0f\u85d5", // 藕
+ 0x85d6: "\x8c\x0f\u85d6", // 藖
+ 0x85d7: "\x8c\x0f\u85d7", // 藗
+ 0x85d8: "\x8c\x0f\u85d8", // 藘
+ 0x85d9: "\x8c\x0f\u85d9", // 藙
+ 0x85da: "\x8c\x0f\u85da", // 藚
+ 0x85db: "\x8c\x0f\u85db", // 藛
+ 0x85dc: "\x8c\x0f\u85dc", // 藜
+ 0x85dd: "\x8c\x0f\u85dd", // 藝
+ 0x85de: "\x8c\x0f\u85de", // 藞
+ 0x85df: "\x8c\x0f\u85df", // 藟
+ 0x85e0: "\x8c\x0f\u85e0", // 藠
+ 0x85e1: "\x8c\x0f\u85e1", // 藡
+ 0x85e2: "\x8c\x0f\u85e2", // 藢
+ 0x85e3: "\x8c\x0f\u85e3", // 藣
+ 0x85e4: "\x8c\x0f\u85e4", // 藤
+ 0x85e5: "\x8c\x0f\u85e5", // 藥
+ 0x85e6: "\x8c\x0f\u85e6", // 藦
+ 0x85e7: "\x8c\x0f\u85e7", // 藧
+ 0x85e8: "\x8c\x0f\u85e8", // 藨
+ 0x85e9: "\x8c\x0f\u85e9", // 藩
+ 0x85ea: "\x8c\x0f\u85ea", // 藪
+ 0x85eb: "\x8c\x0f\u85eb", // 藫
+ 0x85ec: "\x8c\x0f\u85ec", // 藬
+ 0x85ed: "\x8c\x0f\u85ed", // 藭
+ 0x85ee: "\x8c\x10\u85ee", // 藮
+ 0x85ef: "\x8c\x0f\u85ef", // 藯
+ 0x85f0: "\x8c\x0f\u85f0", // 藰
+ 0x85f1: "\x8c\x0f\u85f1", // 藱
+ 0x85f2: "\x8c\x0f\u85f2", // 藲
+ 0x85f3: "\x8c\x0f\u85f3", // 藳
+ 0x85f4: "\x8c\x0f\u85f4", // 藴
+ 0x85f5: "\x8c\x0f\u85f5", // 藵
+ 0x85f6: "\x8c\x10\u85f6", // 藶
+ 0x85f7: "\x8c\x10\u85f7", // 藷
+ 0x85f8: "\x8c\x10\u85f8", // 藸
+ 0x85f9: "\x8c\x10\u85f9", // 藹
+ 0x85fa: "\x8c\x10\u85fa", // 藺
+ 0x85fb: "\x8c\x10\u85fb", // 藻
+ 0x85fc: "\x8c\x10\u85fc", // 藼
+ 0x85fd: "\x8c\x10\u85fd", // 藽
+ 0x85fe: "\x8c\x10\u85fe", // 藾
+ 0x85ff: "\x8c\x10\u85ff", // 藿
+ 0x8600: "\x8c\x10\u8600", // 蘀
+ 0x8601: "\x8c\x10\u8601", // 蘁
+ 0x8602: "\x8c\x10\u8602", // 蘂
+ 0x8603: "\x8c\x10\u8603", // 蘃
+ 0x8604: "\x8c\x10\u8604", // 蘄
+ 0x8605: "\x8c\x10\u8605", // 蘅
+ 0x8606: "\x8c\x10\u8606", // 蘆
+ 0x8607: "\x8c\x10\u8607", // 蘇
+ 0x8608: "\x8c\x10\u8608", // 蘈
+ 0x8609: "\x8c\x10\u8609", // 蘉
+ 0x860a: "\x8c\x10\u860a", // 蘊
+ 0x860b: "\x8c\x10\u860b", // 蘋
+ 0x860c: "\x8c\x10\u860c", // 蘌
+ 0x860d: "\x8c\x10\u860d", // 蘍
+ 0x860e: "\x8c\x10\u860e", // 蘎
+ 0x860f: "\x8c\x10\u860f", // 蘏
+ 0x8610: "\x8c\x10\u8610", // 蘐
+ 0x8611: "\x8c\x10\u8611", // 蘑
+ 0x8612: "\x8c\x11\u8612", // 蘒
+ 0x8613: "\x8c\x10\u8613", // 蘓
+ 0x8614: "\x8c\x10\u8614", // 蘔
+ 0x8615: "\x8c\x11\u8615", // 蘕
+ 0x8616: "\x8c\x11\u8616", // 蘖
+ 0x8617: "\x8c\x11\u8617", // 蘗
+ 0x8618: "\x8c\x11\u8618", // 蘘
+ 0x8619: "\x8c\x11\u8619", // 蘙
+ 0x861a: "\x8c\x11\u861a", // 蘚
+ 0x861b: "\x8c\x11\u861b", // 蘛
+ 0x861c: "\x8c\x11\u861c", // 蘜
+ 0x861d: "\x8c\x11\u861d", // 蘝
+ 0x861e: "\x8c\x11\u861e", // 蘞
+ 0x861f: "\x8c\x11\u861f", // 蘟
+ 0x8620: "\x8c\x11\u8620", // 蘠
+ 0x8621: "\x8c\x11\u8621", // 蘡
+ 0x8622: "\x8c\x10\u8622", // 蘢
+ 0x8623: "\x8c\x11\u8623", // 蘣
+ 0x8624: "\x8c\x0e\u8624", // 蘤
+ 0x8625: "\x8c\x11\u8625", // 蘥
+ 0x8626: "\x8c\x11\u8626", // 蘦
+ 0x8627: "\x8c\x11\u8627", // 蘧
+ 0x8628: "\x8c\x11\u8628", // 蘨
+ 0x8629: "\x8c\x11\u8629", // 蘩
+ 0x862a: "\x8c\x11\u862a", // 蘪
+ 0x862b: "\x8c\x11\u862b", // 蘫
+ 0x862c: "\x8c\x11\u862c", // 蘬
+ 0x862d: "\x8c\x11\u862d", // 蘭
+ 0x862e: "\x8c\x11\u862e", // 蘮
+ 0x862f: "\x8c\x11\u862f", // 蘯
+ 0x8630: "\x8c\x11\u8630", // 蘰
+ 0x8631: "\x8c\x13\u8631", // 蘱
+ 0x8632: "\x8c\x12\u8632", // 蘲
+ 0x8633: "\x8c\x12\u8633", // 蘳
+ 0x8634: "\x8c\x12\u8634", // 蘴
+ 0x8635: "\x8c\x12\u8635", // 蘵
+ 0x8636: "\x8c\x12\u8636", // 蘶
+ 0x8637: "\x8c\x12\u8637", // 蘷
+ 0x8638: "\x8c\x13\u8638", // 蘸
+ 0x8639: "\x8c\x13\u8639", // 蘹
+ 0x863a: "\x8c\x13\u863a", // 蘺
+ 0x863b: "\x8c\x13\u863b", // 蘻
+ 0x863c: "\x8c\x13\u863c", // 蘼
+ 0x863d: "\x8c\x13\u863d", // 蘽
+ 0x863e: "\x8c\x13\u863e", // 蘾
+ 0x863f: "\x8c\x13\u863f", // 蘿
+ 0x8640: "\x8c\x13\u8640", // 虀
+ 0x8641: "\x8c\x13\u8641", // 虁
+ 0x8642: "\x8c\x14\u8642", // 虂
+ 0x8643: "\x8c\x14\u8643", // 虃
+ 0x8644: "\x8c\x14\u8644", // 虄
+ 0x8645: "\x8c\x14\u8645", // 虅
+ 0x8646: "\x8c\x15\u8646", // 虆
+ 0x8647: "\x8c\x15\u8647", // 虇
+ 0x8648: "\x8c\x15\u8648", // 虈
+ 0x8649: "\x8c\x15\u8649", // 虉
+ 0x864a: "\x8c\x17\u864a", // 虊
+ 0x864b: "\x8c\x19\u864b", // 虋
+ 0x864c: "\x8c\x19\u864c", // 虌
+ 0x864d: "\x8d\x00\u864d", // 虍
+ 0x864e: "\x8d\x02\u864e", // 虎
+ 0x864f: "\x8d\x02\u864f", // 虏
+ 0x8650: "\x8d\x03\u8650", // 虐
+ 0x8651: "\x8d\x04\u8651", // 虑
+ 0x8652: "\x1b\b\u8652", // 虒
+ 0x8653: "\x8d\x04\u8653", // 虓
+ 0x8654: "\x8d\x04\u8654", // 虔
+ 0x8655: "\x8d\x05\u8655", // 處
+ 0x8656: "\x8d\x05\u8656", // 虖
+ 0x8657: "\x8d\x05\u8657", // 虗
+ 0x8658: "\x8d\x05\u8658", // 虘
+ 0x8659: "\x8d\x05\u8659", // 虙
+ 0x865a: "\x8d\x05\u865a", // 虚
+ 0x865b: "\x8d\x06\u865b", // 虛
+ 0x865c: "\x8d\x06\u865c", // 虜
+ 0x865d: "\x8d\x06\u865d", // 虝
+ 0x865e: "\x8d\a\u865e", // 虞
+ 0x865f: "\x8d\a\u865f", // 號
+ 0x8660: "\x8d\b\u8660", // 虠
+ 0x8661: "\x8d\b\u8661", // 虡
+ 0x8662: "\x8d\t\u8662", // 虢
+ 0x8663: "\x8d\t\u8663", // 虣
+ 0x8664: "\x8d\n\u8664", // 虤
+ 0x8665: "\x8d\n\u8665", // 虥
+ 0x8666: "\x8d\n\u8666", // 虦
+ 0x8667: "\x8d\v\u8667", // 虧
+ 0x8668: "\x8d\v\u8668", // 虨
+ 0x8669: "\x8d\f\u8669", // 虩
+ 0x866a: "\x8d\x14\u866a", // 虪
+ 0x866b: "\x8e\x00\u866b", // 虫
+ 0x866c: "\x8e\x01\u866c", // 虬
+ 0x866d: "\x8e\x02\u866d", // 虭
+ 0x866e: "\x8e\x02\u866e", // 虮
+ 0x866f: "\x8e\x02\u866f", // 虯
+ 0x8670: "\x8e\x02\u8670", // 虰
+ 0x8671: "\x8e\x02\u8671", // 虱
+ 0x8672: "\x8e\x02\u8672", // 虲
+ 0x8673: "\x8e\x03\u8673", // 虳
+ 0x8674: "\x8e\x03\u8674", // 虴
+ 0x8675: "\x8e\x03\u8675", // 虵
+ 0x8676: "\x8e\x03\u8676", // 虶
+ 0x8677: "\x8e\x03\u8677", // 虷
+ 0x8678: "\x8e\x03\u8678", // 虸
+ 0x8679: "\x8e\x03\u8679", // 虹
+ 0x867a: "\x8e\x03\u867a", // 虺
+ 0x867b: "\x8e\x03\u867b", // 虻
+ 0x867c: "\x8e\x03\u867c", // 虼
+ 0x867d: "\x8e\x03\u867d", // 虽
+ 0x867e: "\x8e\x03\u867e", // 虾
+ 0x867f: "\x8e\x03\u867f", // 虿
+ 0x8680: "\x8e\x03\u8680", // 蚀
+ 0x8681: "\x8e\x03\u8681", // 蚁
+ 0x8682: "\x8e\x03\u8682", // 蚂
+ 0x8683: "\x8e\x03\u8683", // 蚃
+ 0x8684: "\x8e\x04\u8684", // 蚄
+ 0x8685: "\x8e\x04\u8685", // 蚅
+ 0x8686: "\x8e\x04\u8686", // 蚆
+ 0x8687: "\x8e\x04\u8687", // 蚇
+ 0x8688: "\x8e\x06\u8688", // 蚈
+ 0x8689: "\x8e\x04\u8689", // 蚉
+ 0x868a: "\x8e\x04\u868a", // 蚊
+ 0x868b: "\x8e\x04\u868b", // 蚋
+ 0x868c: "\x8e\x04\u868c", // 蚌
+ 0x868d: "\x8e\x04\u868d", // 蚍
+ 0x868e: "\x8e\x04\u868e", // 蚎
+ 0x868f: "\x8e\x04\u868f", // 蚏
+ 0x8690: "\x8e\x04\u8690", // 蚐
+ 0x8691: "\x8e\x04\u8691", // 蚑
+ 0x8692: "\x8e\x04\u8692", // 蚒
+ 0x8693: "\x8e\x04\u8693", // 蚓
+ 0x8694: "\x8e\x04\u8694", // 蚔
+ 0x8695: "\x8e\x04\u8695", // 蚕
+ 0x8696: "\x8e\x04\u8696", // 蚖
+ 0x8697: "\x8e\x04\u8697", // 蚗
+ 0x8698: "\x8e\x04\u8698", // 蚘
+ 0x8699: "\x8e\x04\u8699", // 蚙
+ 0x869a: "\x8e\x04\u869a", // 蚚
+ 0x869b: "\x8e\x04\u869b", // 蚛
+ 0x869c: "\x8e\x04\u869c", // 蚜
+ 0x869d: "\x8e\x04\u869d", // 蚝
+ 0x869e: "\x8e\x04\u869e", // 蚞
+ 0x869f: "\x8e\x04\u869f", // 蚟
+ 0x86a0: "\x8e\x04\u86a0", // 蚠
+ 0x86a1: "\x8e\x04\u86a1", // 蚡
+ 0x86a2: "\x8e\x04\u86a2", // 蚢
+ 0x86a3: "\x8e\x04\u86a3", // 蚣
+ 0x86a4: "\x8e\x04\u86a4", // 蚤
+ 0x86a5: "\x8e\x04\u86a5", // 蚥
+ 0x86a6: "\x8e\x04\u86a6", // 蚦
+ 0x86a7: "\x8e\x04\u86a7", // 蚧
+ 0x86a8: "\x8e\x04\u86a8", // 蚨
+ 0x86a9: "\x8e\x04\u86a9", // 蚩
+ 0x86aa: "\x8e\x04\u86aa", // 蚪
+ 0x86ab: "\x8e\x05\u86ab", // 蚫
+ 0x86ac: "\x8e\x04\u86ac", // 蚬
+ 0x86ad: "\x8e\x05\u86ad", // 蚭
+ 0x86ae: "\x8e\x05\u86ae", // 蚮
+ 0x86af: "\x8e\x05\u86af", // 蚯
+ 0x86b0: "\x8e\x05\u86b0", // 蚰
+ 0x86b1: "\x8e\x05\u86b1", // 蚱
+ 0x86b2: "\x8e\x05\u86b2", // 蚲
+ 0x86b3: "\x8e\x05\u86b3", // 蚳
+ 0x86b4: "\x8e\x05\u86b4", // 蚴
+ 0x86b5: "\x8e\x05\u86b5", // 蚵
+ 0x86b6: "\x8e\x05\u86b6", // 蚶
+ 0x86b7: "\x8e\x05\u86b7", // 蚷
+ 0x86b8: "\x8e\x05\u86b8", // 蚸
+ 0x86b9: "\x8e\x05\u86b9", // 蚹
+ 0x86ba: "\x8e\x05\u86ba", // 蚺
+ 0x86bb: "\x8e\x05\u86bb", // 蚻
+ 0x86bc: "\x8e\x05\u86bc", // 蚼
+ 0x86bd: "\x8e\x05\u86bd", // 蚽
+ 0x86be: "\x8e\x05\u86be", // 蚾
+ 0x86bf: "\x8e\x05\u86bf", // 蚿
+ 0x86c0: "\x8e\x05\u86c0", // 蛀
+ 0x86c1: "\x8e\x05\u86c1", // 蛁
+ 0x86c2: "\x8e\x05\u86c2", // 蛂
+ 0x86c3: "\x8e\x05\u86c3", // 蛃
+ 0x86c4: "\x8e\x05\u86c4", // 蛄
+ 0x86c5: "\x8e\x05\u86c5", // 蛅
+ 0x86c6: "\x8e\x05\u86c6", // 蛆
+ 0x86c7: "\x8e\x05\u86c7", // 蛇
+ 0x86c8: "\x8e\x05\u86c8", // 蛈
+ 0x86c9: "\x8e\x05\u86c9", // 蛉
+ 0x86ca: "\x8e\x05\u86ca", // 蛊
+ 0x86cb: "\x8e\x05\u86cb", // 蛋
+ 0x86cc: "\x8e\x05\u86cc", // 蛌
+ 0x86cd: "\x8e\x05\u86cd", // 蛍
+ 0x86ce: "\x8e\x05\u86ce", // 蛎
+ 0x86cf: "\x8e\x05\u86cf", // 蛏
+ 0x86d0: "\x8e\x06\u86d0", // 蛐
+ 0x86d1: "\x8e\x06\u86d1", // 蛑
+ 0x86d2: "\x8e\x06\u86d2", // 蛒
+ 0x86d3: "\x8e\x06\u86d3", // 蛓
+ 0x86d4: "\x8e\x06\u86d4", // 蛔
+ 0x86d5: "\x8e\x06\u86d5", // 蛕
+ 0x86d6: "\x8e\a\u86d6", // 蛖
+ 0x86d7: "\x8e\x06\u86d7", // 蛗
+ 0x86d8: "\x8e\x06\u86d8", // 蛘
+ 0x86d9: "\x8e\x06\u86d9", // 蛙
+ 0x86da: "\x8e\x06\u86da", // 蛚
+ 0x86db: "\x8e\x06\u86db", // 蛛
+ 0x86dc: "\x8e\x06\u86dc", // 蛜
+ 0x86dd: "\x8e\x06\u86dd", // 蛝
+ 0x86de: "\x8e\x06\u86de", // 蛞
+ 0x86df: "\x8e\x06\u86df", // 蛟
+ 0x86e0: "\x8e\x06\u86e0", // 蛠
+ 0x86e1: "\x8e\x06\u86e1", // 蛡
+ 0x86e2: "\x8e\x06\u86e2", // 蛢
+ 0x86e3: "\x8e\x06\u86e3", // 蛣
+ 0x86e4: "\x8e\x06\u86e4", // 蛤
+ 0x86e5: "\x8e\x06\u86e5", // 蛥
+ 0x86e6: "\x8e\x06\u86e6", // 蛦
+ 0x86e7: "\x8e\x06\u86e7", // 蛧
+ 0x86e8: "\x8e\x06\u86e8", // 蛨
+ 0x86e9: "\x8e\x06\u86e9", // 蛩
+ 0x86ea: "\x8e\x06\u86ea", // 蛪
+ 0x86eb: "\x8e\x06\u86eb", // 蛫
+ 0x86ec: "\x8e\x06\u86ec", // 蛬
+ 0x86ed: "\x8e\x06\u86ed", // 蛭
+ 0x86ee: "\x8e\x06\u86ee", // 蛮
+ 0x86ef: "\x8e\x06\u86ef", // 蛯
+ 0x86f0: "\x8e\x06\u86f0", // 蛰
+ 0x86f1: "\x8e\x06\u86f1", // 蛱
+ 0x86f2: "\x8e\x06\u86f2", // 蛲
+ 0x86f3: "\x8e\x06\u86f3", // 蛳
+ 0x86f4: "\x8e\x06\u86f4", // 蛴
+ 0x86f5: "\x8e\a\u86f5", // 蛵
+ 0x86f6: "\x8e\a\u86f6", // 蛶
+ 0x86f7: "\x8e\a\u86f7", // 蛷
+ 0x86f8: "\x8e\a\u86f8", // 蛸
+ 0x86f9: "\x8e\a\u86f9", // 蛹
+ 0x86fa: "\x8e\a\u86fa", // 蛺
+ 0x86fb: "\x8e\a\u86fb", // 蛻
+ 0x86fc: "\x8e\a\u86fc", // 蛼
+ 0x86fd: "\x8e\a\u86fd", // 蛽
+ 0x86fe: "\x8e\a\u86fe", // 蛾
+ 0x86ff: "\x8e\a\u86ff", // 蛿
+ 0x8700: "\x8e\a\u8700", // 蜀
+ 0x8701: "\x8e\a\u8701", // 蜁
+ 0x8702: "\x8e\a\u8702", // 蜂
+ 0x8703: "\x8e\a\u8703", // 蜃
+ 0x8704: "\x8e\a\u8704", // 蜄
+ 0x8705: "\x8e\a\u8705", // 蜅
+ 0x8706: "\x8e\a\u8706", // 蜆
+ 0x8707: "\x8e\a\u8707", // 蜇
+ 0x8708: "\x8e\a\u8708", // 蜈
+ 0x8709: "\x8e\a\u8709", // 蜉
+ 0x870a: "\x8e\a\u870a", // 蜊
+ 0x870b: "\x8e\a\u870b", // 蜋
+ 0x870c: "\x8e\a\u870c", // 蜌
+ 0x870d: "\x8e\a\u870d", // 蜍
+ 0x870e: "\x8e\a\u870e", // 蜎
+ 0x870f: "\x8e\a\u870f", // 蜏
+ 0x8710: "\x8e\a\u8710", // 蜐
+ 0x8711: "\x8e\a\u8711", // 蜑
+ 0x8712: "\x8e\a\u8712", // 蜒
+ 0x8713: "\x8e\a\u8713", // 蜓
+ 0x8714: "\x8e\a\u8714", // 蜔
+ 0x8715: "\x8e\a\u8715", // 蜕
+ 0x8716: "\x8e\a\u8716", // 蜖
+ 0x8717: "\x8e\a\u8717", // 蜗
+ 0x8718: "\x8e\b\u8718", // 蜘
+ 0x8719: "\x8e\b\u8719", // 蜙
+ 0x871a: "\x8e\b\u871a", // 蜚
+ 0x871b: "\x8e\b\u871b", // 蜛
+ 0x871c: "\x8e\b\u871c", // 蜜
+ 0x871d: "\x8e\b\u871d", // 蜝
+ 0x871e: "\x8e\b\u871e", // 蜞
+ 0x871f: "\x8e\b\u871f", // 蜟
+ 0x8720: "\x8e\b\u8720", // 蜠
+ 0x8721: "\x8e\b\u8721", // 蜡
+ 0x8722: "\x8e\b\u8722", // 蜢
+ 0x8723: "\x8e\b\u8723", // 蜣
+ 0x8724: "\x8e\b\u8724", // 蜤
+ 0x8725: "\x8e\b\u8725", // 蜥
+ 0x8726: "\x8e\b\u8726", // 蜦
+ 0x8727: "\x8e\b\u8727", // 蜧
+ 0x8728: "\x8e\b\u8728", // 蜨
+ 0x8729: "\x8e\b\u8729", // 蜩
+ 0x872a: "\x8e\b\u872a", // 蜪
+ 0x872b: "\x8e\a\u872b", // 蜫
+ 0x872c: "\x8e\b\u872c", // 蜬
+ 0x872d: "\x8e\b\u872d", // 蜭
+ 0x872e: "\x8e\b\u872e", // 蜮
+ 0x872f: "\x8e\b\u872f", // 蜯
+ 0x8730: "\x8e\b\u8730", // 蜰
+ 0x8731: "\x8e\b\u8731", // 蜱
+ 0x8732: "\x8e\b\u8732", // 蜲
+ 0x8733: "\x8e\b\u8733", // 蜳
+ 0x8734: "\x8e\b\u8734", // 蜴
+ 0x8735: "\x8e\b\u8735", // 蜵
+ 0x8736: "\x8e\b\u8736", // 蜶
+ 0x8737: "\x8e\b\u8737", // 蜷
+ 0x8738: "\x8e\b\u8738", // 蜸
+ 0x8739: "\x8e\b\u8739", // 蜹
+ 0x873a: "\x8e\b\u873a", // 蜺
+ 0x873b: "\x8e\b\u873b", // 蜻
+ 0x873c: "\x8e\b\u873c", // 蜼
+ 0x873d: "\x8e\b\u873d", // 蜽
+ 0x873e: "\x8e\b\u873e", // 蜾
+ 0x873f: "\x8e\b\u873f", // 蜿
+ 0x8740: "\x8e\b\u8740", // 蝀
+ 0x8741: "\x8e\b\u8741", // 蝁
+ 0x8742: "\x8e\b\u8742", // 蝂
+ 0x8743: "\x8e\b\u8743", // 蝃
+ 0x8744: "\x8e\b\u8744", // 蝄
+ 0x8745: "\x8e\b\u8745", // 蝅
+ 0x8746: "\x8e\a\u8746", // 蝆
+ 0x8747: "\x8e\b\u8747", // 蝇
+ 0x8748: "\x8e\b\u8748", // 蝈
+ 0x8749: "\x8e\b\u8749", // 蝉
+ 0x874a: "\x8e\b\u874a", // 蝊
+ 0x874b: "\x8e\b\u874b", // 蝋
+ 0x874c: "\x8e\t\u874c", // 蝌
+ 0x874d: "\x8e\t\u874d", // 蝍
+ 0x874e: "\x8e\t\u874e", // 蝎
+ 0x874f: "\x8e\t\u874f", // 蝏
+ 0x8750: "\x8e\t\u8750", // 蝐
+ 0x8751: "\x8e\t\u8751", // 蝑
+ 0x8752: "\x8e\t\u8752", // 蝒
+ 0x8753: "\x8e\t\u8753", // 蝓
+ 0x8754: "\x8e\t\u8754", // 蝔
+ 0x8755: "\x8e\t\u8755", // 蝕
+ 0x8756: "\x8e\t\u8756", // 蝖
+ 0x8757: "\x8e\t\u8757", // 蝗
+ 0x8758: "\x8e\t\u8758", // 蝘
+ 0x8759: "\x8e\t\u8759", // 蝙
+ 0x875a: "\x8e\t\u875a", // 蝚
+ 0x875b: "\x8e\t\u875b", // 蝛
+ 0x875c: "\x8e\t\u875c", // 蝜
+ 0x875d: "\x8e\t\u875d", // 蝝
+ 0x875e: "\x8e\t\u875e", // 蝞
+ 0x875f: "\x8e\t\u875f", // 蝟
+ 0x8760: "\x8e\t\u8760", // 蝠
+ 0x8761: "\x8e\t\u8761", // 蝡
+ 0x8762: "\x8e\t\u8762", // 蝢
+ 0x8763: "\x8e\t\u8763", // 蝣
+ 0x8764: "\x8e\t\u8764", // 蝤
+ 0x8765: "\x8e\t\u8765", // 蝥
+ 0x8766: "\x8e\t\u8766", // 蝦
+ 0x8767: "\x8e\t\u8767", // 蝧
+ 0x8768: "\x8e\t\u8768", // 蝨
+ 0x8769: "\x8e\t\u8769", // 蝩
+ 0x876a: "\x8e\t\u876a", // 蝪
+ 0x876b: "\x8e\t\u876b", // 蝫
+ 0x876c: "\x8e\t\u876c", // 蝬
+ 0x876d: "\x8e\t\u876d", // 蝭
+ 0x876e: "\x8e\t\u876e", // 蝮
+ 0x876f: "\x8e\t\u876f", // 蝯
+ 0x8770: "\x8e\t\u8770", // 蝰
+ 0x8771: "\x8e\t\u8771", // 蝱
+ 0x8772: "\x8e\t\u8772", // 蝲
+ 0x8773: "\x8e\t\u8773", // 蝳
+ 0x8774: "\x8e\t\u8774", // 蝴
+ 0x8775: "\x8e\t\u8775", // 蝵
+ 0x8776: "\x8e\t\u8776", // 蝶
+ 0x8777: "\x8e\t\u8777", // 蝷
+ 0x8778: "\x8e\t\u8778", // 蝸
+ 0x8779: "\x8e\n\u8779", // 蝹
+ 0x877a: "\x8e\t\u877a", // 蝺
+ 0x877b: "\x8e\t\u877b", // 蝻
+ 0x877c: "\x8e\t\u877c", // 蝼
+ 0x877d: "\x8e\t\u877d", // 蝽
+ 0x877e: "\x8e\t\u877e", // 蝾
+ 0x877f: "\x8e\t\u877f", // 蝿
+ 0x8780: "\x8e\t\u8780", // 螀
+ 0x8781: "\x8e\n\u8781", // 螁
+ 0x8782: "\x8e\n\u8782", // 螂
+ 0x8783: "\x8e\n\u8783", // 螃
+ 0x8784: "\x8e\n\u8784", // 螄
+ 0x8785: "\x8e\n\u8785", // 螅
+ 0x8786: "\x8e\n\u8786", // 螆
+ 0x8787: "\x8e\n\u8787", // 螇
+ 0x8788: "\x8e\n\u8788", // 螈
+ 0x8789: "\x8e\n\u8789", // 螉
+ 0x878a: "\x8e\n\u878a", // 螊
+ 0x878b: "\x8e\n\u878b", // 螋
+ 0x878c: "\x8e\n\u878c", // 螌
+ 0x878d: "\x8e\n\u878d", // 融
+ 0x878e: "\x8e\n\u878e", // 螎
+ 0x878f: "\x8e\n\u878f", // 螏
+ 0x8790: "\x8e\n\u8790", // 螐
+ 0x8791: "\x8e\n\u8791", // 螑
+ 0x8792: "\x8e\n\u8792", // 螒
+ 0x8793: "\x8e\n\u8793", // 螓
+ 0x8794: "\x8e\n\u8794", // 螔
+ 0x8795: "\x8e\n\u8795", // 螕
+ 0x8796: "\x8e\n\u8796", // 螖
+ 0x8797: "\x8e\n\u8797", // 螗
+ 0x8798: "\x8e\n\u8798", // 螘
+ 0x8799: "\x8e\n\u8799", // 螙
+ 0x879a: "\x8e\n\u879a", // 螚
+ 0x879b: "\x8e\n\u879b", // 螛
+ 0x879c: "\x8e\n\u879c", // 螜
+ 0x879d: "\x8e\n\u879d", // 螝
+ 0x879e: "\x8e\n\u879e", // 螞
+ 0x879f: "\x8e\n\u879f", // 螟
+ 0x87a0: "\x8e\n\u87a0", // 螠
+ 0x87a1: "\x8e\n\u87a1", // 螡
+ 0x87a2: "\x8e\n\u87a2", // 螢
+ 0x87a3: "\x8e\n\u87a3", // 螣
+ 0x87a4: "\x8e\n\u87a4", // 螤
+ 0x87a5: "\x8e\n\u87a5", // 螥
+ 0x87a6: "\x8e\n\u87a6", // 螦
+ 0x87a7: "\x8e\n\u87a7", // 螧
+ 0x87a8: "\x8e\n\u87a8", // 螨
+ 0x87a9: "\x8e\n\u87a9", // 螩
+ 0x87aa: "\x8e\v\u87aa", // 螪
+ 0x87ab: "\x8e\v\u87ab", // 螫
+ 0x87ac: "\x8e\v\u87ac", // 螬
+ 0x87ad: "\x8e\v\u87ad", // 螭
+ 0x87ae: "\x8e\v\u87ae", // 螮
+ 0x87af: "\x8e\v\u87af", // 螯
+ 0x87b0: "\x8e\v\u87b0", // 螰
+ 0x87b1: "\x8e\v\u87b1", // 螱
+ 0x87b2: "\x8e\v\u87b2", // 螲
+ 0x87b3: "\x8e\v\u87b3", // 螳
+ 0x87b4: "\x8e\v\u87b4", // 螴
+ 0x87b5: "\x8e\v\u87b5", // 螵
+ 0x87b6: "\x8e\v\u87b6", // 螶
+ 0x87b7: "\x8e\v\u87b7", // 螷
+ 0x87b8: "\x8e\v\u87b8", // 螸
+ 0x87b9: "\x8e\v\u87b9", // 螹
+ 0x87ba: "\x8e\v\u87ba", // 螺
+ 0x87bb: "\x8e\v\u87bb", // 螻
+ 0x87bc: "\x8e\v\u87bc", // 螼
+ 0x87bd: "\x8e\v\u87bd", // 螽
+ 0x87be: "\x8e\v\u87be", // 螾
+ 0x87bf: "\x8e\v\u87bf", // 螿
+ 0x87c0: "\x8e\v\u87c0", // 蟀
+ 0x87c1: "\x8e\v\u87c1", // 蟁
+ 0x87c2: "\x8e\v\u87c2", // 蟂
+ 0x87c3: "\x8e\v\u87c3", // 蟃
+ 0x87c4: "\x8e\v\u87c4", // 蟄
+ 0x87c5: "\x8e\v\u87c5", // 蟅
+ 0x87c6: "\x8e\v\u87c6", // 蟆
+ 0x87c7: "\x8e\v\u87c7", // 蟇
+ 0x87c8: "\x8e\v\u87c8", // 蟈
+ 0x87c9: "\x8e\v\u87c9", // 蟉
+ 0x87ca: "\x8e\v\u87ca", // 蟊
+ 0x87cb: "\x8e\v\u87cb", // 蟋
+ 0x87cc: "\x8e\v\u87cc", // 蟌
+ 0x87cd: "\x8e\v\u87cd", // 蟍
+ 0x87ce: "\x8e\v\u87ce", // 蟎
+ 0x87cf: "\x8e\v\u87cf", // 蟏
+ 0x87d0: "\x8e\v\u87d0", // 蟐
+ 0x87d1: "\x8e\v\u87d1", // 蟑
+ 0x87d2: "\x8e\v\u87d2", // 蟒
+ 0x87d3: "\x8e\f\u87d3", // 蟓
+ 0x87d4: "\x8e\f\u87d4", // 蟔
+ 0x87d5: "\x8e\f\u87d5", // 蟕
+ 0x87d6: "\x8e\f\u87d6", // 蟖
+ 0x87d7: "\x8e\n\u87d7", // 蟗
+ 0x87d8: "\x8e\f\u87d8", // 蟘
+ 0x87d9: "\x8e\f\u87d9", // 蟙
+ 0x87da: "\x8e\f\u87da", // 蟚
+ 0x87db: "\x8e\f\u87db", // 蟛
+ 0x87dc: "\x8e\f\u87dc", // 蟜
+ 0x87dd: "\x8e\f\u87dd", // 蟝
+ 0x87de: "\x8e\f\u87de", // 蟞
+ 0x87df: "\x8e\f\u87df", // 蟟
+ 0x87e0: "\x8e\f\u87e0", // 蟠
+ 0x87e1: "\x8e\t\u87e1", // 蟡
+ 0x87e2: "\x8e\f\u87e2", // 蟢
+ 0x87e3: "\x8e\f\u87e3", // 蟣
+ 0x87e4: "\x8e\f\u87e4", // 蟤
+ 0x87e5: "\x8e\f\u87e5", // 蟥
+ 0x87e6: "\x8e\f\u87e6", // 蟦
+ 0x87e7: "\x8e\f\u87e7", // 蟧
+ 0x87e8: "\x8e\f\u87e8", // 蟨
+ 0x87e9: "\x8e\f\u87e9", // 蟩
+ 0x87ea: "\x8e\f\u87ea", // 蟪
+ 0x87eb: "\x8e\f\u87eb", // 蟫
+ 0x87ec: "\x8e\f\u87ec", // 蟬
+ 0x87ed: "\x8e\f\u87ed", // 蟭
+ 0x87ee: "\x8e\f\u87ee", // 蟮
+ 0x87ef: "\x8e\f\u87ef", // 蟯
+ 0x87f0: "\x8e\f\u87f0", // 蟰
+ 0x87f1: "\x8e\f\u87f1", // 蟱
+ 0x87f2: "\x8e\f\u87f2", // 蟲
+ 0x87f3: "\x8e\f\u87f3", // 蟳
+ 0x87f4: "\x8e\f\u87f4", // 蟴
+ 0x87f5: "\x8e\f\u87f5", // 蟵
+ 0x87f6: "\x8e\r\u87f6", // 蟶
+ 0x87f7: "\x8e\r\u87f7", // 蟷
+ 0x87f8: "\x8e\r\u87f8", // 蟸
+ 0x87f9: "\x8e\r\u87f9", // 蟹
+ 0x87fa: "\x8e\r\u87fa", // 蟺
+ 0x87fb: "\x8e\r\u87fb", // 蟻
+ 0x87fc: "\x8e\r\u87fc", // 蟼
+ 0x87fd: "\x8e\r\u87fd", // 蟽
+ 0x87fe: "\x8e\r\u87fe", // 蟾
+ 0x87ff: "\x8e\r\u87ff", // 蟿
+ 0x8800: "\x8e\r\u8800", // 蠀
+ 0x8801: "\x8e\v\u8801", // 蠁
+ 0x8802: "\x8e\r\u8802", // 蠂
+ 0x8803: "\x8e\r\u8803", // 蠃
+ 0x8804: "\x8e\r\u8804", // 蠄
+ 0x8805: "\x8e\r\u8805", // 蠅
+ 0x8806: "\x8e\r\u8806", // 蠆
+ 0x8807: "\x8e\r\u8807", // 蠇
+ 0x8808: "\x8e\r\u8808", // 蠈
+ 0x8809: "\x8e\r\u8809", // 蠉
+ 0x880a: "\x8e\r\u880a", // 蠊
+ 0x880b: "\x8e\r\u880b", // 蠋
+ 0x880c: "\x8e\r\u880c", // 蠌
+ 0x880d: "\x8e\r\u880d", // 蠍
+ 0x880e: "\x8e\f\u880e", // 蠎
+ 0x880f: "\x8e\r\u880f", // 蠏
+ 0x8810: "\x8e\x0e\u8810", // 蠐
+ 0x8811: "\x8e\x0e\u8811", // 蠑
+ 0x8812: "\x8e\x0e\u8812", // 蠒
+ 0x8813: "\x8e\x0e\u8813", // 蠓
+ 0x8814: "\x8e\x0e\u8814", // 蠔
+ 0x8815: "\x8e\x0e\u8815", // 蠕
+ 0x8816: "\x8e\x0e\u8816", // 蠖
+ 0x8817: "\x8e\x0e\u8817", // 蠗
+ 0x8818: "\x8e\x0e\u8818", // 蠘
+ 0x8819: "\x8e\x0e\u8819", // 蠙
+ 0x881a: "\x8e\x0f\u881a", // 蠚
+ 0x881b: "\x8e\x0f\u881b", // 蠛
+ 0x881c: "\x8e\x0f\u881c", // 蠜
+ 0x881d: "\x8e\x0f\u881d", // 蠝
+ 0x881e: "\x8e\x0f\u881e", // 蠞
+ 0x881f: "\x8e\x0f\u881f", // 蠟
+ 0x8820: "\x8e\x0f\u8820", // 蠠
+ 0x8821: "\x8e\x0f\u8821", // 蠡
+ 0x8822: "\x8e\x0f\u8822", // 蠢
+ 0x8823: "\x8e\x0f\u8823", // 蠣
+ 0x8824: "\x8e\x0f\u8824", // 蠤
+ 0x8825: "\x8e\x10\u8825", // 蠥
+ 0x8826: "\x8e\x10\u8826", // 蠦
+ 0x8827: "\x8e\x10\u8827", // 蠧
+ 0x8828: "\x8e\x10\u8828", // 蠨
+ 0x8829: "\x8e\x10\u8829", // 蠩
+ 0x882a: "\x8e\x10\u882a", // 蠪
+ 0x882b: "\x8e\x10\u882b", // 蠫
+ 0x882c: "\x8e\x10\u882c", // 蠬
+ 0x882d: "\x8e\x11\u882d", // 蠭
+ 0x882e: "\x8e\x11\u882e", // 蠮
+ 0x882f: "\x8e\x11\u882f", // 蠯
+ 0x8830: "\x8e\x11\u8830", // 蠰
+ 0x8831: "\x8e\x11\u8831", // 蠱
+ 0x8832: "\x8e\x11\u8832", // 蠲
+ 0x8833: "\x8e\x11\u8833", // 蠳
+ 0x8834: "\x8e\x0f\u8834", // 蠴
+ 0x8835: "\x8e\x12\u8835", // 蠵
+ 0x8836: "\x8e\x12\u8836", // 蠶
+ 0x8837: "\x8e\x12\u8837", // 蠷
+ 0x8838: "\x8e\x12\u8838", // 蠸
+ 0x8839: "\x8e\x12\u8839", // 蠹
+ 0x883a: "\x8e\x12\u883a", // 蠺
+ 0x883b: "\x8e\x13\u883b", // 蠻
+ 0x883c: "\x8e\x14\u883c", // 蠼
+ 0x883d: "\x8e\x15\u883d", // 蠽
+ 0x883e: "\x8e\x15\u883e", // 蠾
+ 0x883f: "\x8e\x16\u883f", // 蠿
+ 0x8840: "\x8f\x00\u8840", // 血
+ 0x8841: "\x8f\x03\u8841", // 衁
+ 0x8842: "\x8f\x03\u8842", // 衂
+ 0x8843: "\x8f\x04\u8843", // 衃
+ 0x8844: "\x8f\x04\u8844", // 衄
+ 0x8845: "\x8f\x05\u8845", // 衅
+ 0x8846: "\x8f\x06\u8846", // 衆
+ 0x8847: "\x8f\x06\u8847", // 衇
+ 0x8848: "\x8f\x06\u8848", // 衈
+ 0x8849: "\x8f\x06\u8849", // 衉
+ 0x884a: "\x8f\x0f\u884a", // 衊
+ 0x884b: "\x8f\x12\u884b", // 衋
+ 0x884c: "\x90\x00\u884c", // 行
+ 0x884d: "\x90\x03\u884d", // 衍
+ 0x884e: "\x90\x03\u884e", // 衎
+ 0x884f: "\x90\x04\u884f", // 衏
+ 0x8850: "\x90\x05\u8850", // 衐
+ 0x8851: "\x90\x05\u8851", // 衑
+ 0x8852: "\x90\x05\u8852", // 衒
+ 0x8853: "\x90\x05\u8853", // 術
+ 0x8854: "\x90\x05\u8854", // 衔
+ 0x8855: "\x90\x06\u8855", // 衕
+ 0x8856: "\x90\x06\u8856", // 衖
+ 0x8857: "\x90\x06\u8857", // 街
+ 0x8858: "\x90\x06\u8858", // 衘
+ 0x8859: "\x90\a\u8859", // 衙
+ 0x885a: "\x90\t\u885a", // 衚
+ 0x885b: "\x90\t\u885b", // 衛
+ 0x885c: "\x90\t\u885c", // 衜
+ 0x885d: "\x90\t\u885d", // 衝
+ 0x885e: "\x90\n\u885e", // 衞
+ 0x885f: "\x90\n\u885f", // 衟
+ 0x8860: "\x90\n\u8860", // 衠
+ 0x8861: "\x90\n\u8861", // 衡
+ 0x8862: "\x90\x12\u8862", // 衢
+ 0x8863: "\x91\x00\u8863", // 衣
+ 0x8864: "\x91\x00\u8864", // 衤
+ 0x8865: "\x91\x02\u8865", // 补
+ 0x8866: "\x91\x03\u8866", // 衦
+ 0x8867: "\x91\x03\u8867", // 衧
+ 0x8868: "\x91\x03\u8868", // 表
+ 0x8869: "\x91\x03\u8869", // 衩
+ 0x886a: "\x91\x03\u886a", // 衪
+ 0x886b: "\x91\x03\u886b", // 衫
+ 0x886c: "\x91\x03\u886c", // 衬
+ 0x886d: "\x91\x04\u886d", // 衭
+ 0x886e: "\x91\x04\u886e", // 衮
+ 0x886f: "\x91\x04\u886f", // 衯
+ 0x8870: "\x91\x04\u8870", // 衰
+ 0x8871: "\x91\x04\u8871", // 衱
+ 0x8872: "\x91\x04\u8872", // 衲
+ 0x8873: "\x91\x04\u8873", // 衳
+ 0x8874: "\x91\x04\u8874", // 衴
+ 0x8875: "\x91\x04\u8875", // 衵
+ 0x8876: "\x91\x04\u8876", // 衶
+ 0x8877: "\x91\x04\u8877", // 衷
+ 0x8878: "\x91\x04\u8878", // 衸
+ 0x8879: "\x91\x04\u8879", // 衹
+ 0x887a: "\x91\x04\u887a", // 衺
+ 0x887b: "\x91\x04\u887b", // 衻
+ 0x887c: "\x91\x04\u887c", // 衼
+ 0x887d: "\x91\x04\u887d", // 衽
+ 0x887e: "\x91\x04\u887e", // 衾
+ 0x887f: "\x91\x04\u887f", // 衿
+ 0x8880: "\x91\x04\u8880", // 袀
+ 0x8881: "\x91\x04\u8881", // 袁
+ 0x8882: "\x91\x04\u8882", // 袂
+ 0x8883: "\x91\x04\u8883", // 袃
+ 0x8884: "\x91\x04\u8884", // 袄
+ 0x8885: "\x91\x04\u8885", // 袅
+ 0x8886: "\x91\x04\u8886", // 袆
+ 0x8887: "\x91\x04\u8887", // 袇
+ 0x8888: "\x91\x05\u8888", // 袈
+ 0x8889: "\x91\x05\u8889", // 袉
+ 0x888a: "\x91\x05\u888a", // 袊
+ 0x888b: "\x91\x05\u888b", // 袋
+ 0x888c: "\x91\x05\u888c", // 袌
+ 0x888d: "\x91\x05\u888d", // 袍
+ 0x888e: "\x91\x05\u888e", // 袎
+ 0x888f: "\x91\x05\u888f", // 袏
+ 0x8890: "\x91\x05\u8890", // 袐
+ 0x8891: "\x91\x05\u8891", // 袑
+ 0x8892: "\x91\x05\u8892", // 袒
+ 0x8893: "\x91\x05\u8893", // 袓
+ 0x8894: "\x91\x05\u8894", // 袔
+ 0x8895: "\x91\x05\u8895", // 袕
+ 0x8896: "\x91\x05\u8896", // 袖
+ 0x8897: "\x91\x05\u8897", // 袗
+ 0x8898: "\x91\x05\u8898", // 袘
+ 0x8899: "\x91\x05\u8899", // 袙
+ 0x889a: "\x91\x05\u889a", // 袚
+ 0x889b: "\x91\x05\u889b", // 袛
+ 0x889c: "\x91\x05\u889c", // 袜
+ 0x889d: "\x91\x05\u889d", // 袝
+ 0x889e: "\x91\x05\u889e", // 袞
+ 0x889f: "\x91\x05\u889f", // 袟
+ 0x88a0: "\x91\x05\u88a0", // 袠
+ 0x88a1: "\x91\x05\u88a1", // 袡
+ 0x88a2: "\x91\x05\u88a2", // 袢
+ 0x88a3: "\x91\x05\u88a3", // 袣
+ 0x88a4: "\x91\x05\u88a4", // 袤
+ 0x88a5: "\x91\x05\u88a5", // 袥
+ 0x88a6: "\x91\x05\u88a6", // 袦
+ 0x88a7: "\x91\x05\u88a7", // 袧
+ 0x88a8: "\x91\x05\u88a8", // 袨
+ 0x88a9: "\x91\x05\u88a9", // 袩
+ 0x88aa: "\x91\x05\u88aa", // 袪
+ 0x88ab: "\x91\x05\u88ab", // 被
+ 0x88ac: "\x91\x05\u88ac", // 袬
+ 0x88ad: "\x91\x05\u88ad", // 袭
+ 0x88ae: "\x91\x05\u88ae", // 袮
+ 0x88af: "\x91\x06\u88af", // 袯
+ 0x88b0: "\x91\x05\u88b0", // 袰
+ 0x88b1: "\x91\x06\u88b1", // 袱
+ 0x88b2: "\x91\x06\u88b2", // 袲
+ 0x88b3: "\x91\x06\u88b3", // 袳
+ 0x88b4: "\x91\x06\u88b4", // 袴
+ 0x88b5: "\x91\x06\u88b5", // 袵
+ 0x88b6: "\x91\x06\u88b6", // 袶
+ 0x88b7: "\x91\x06\u88b7", // 袷
+ 0x88b8: "\x91\x06\u88b8", // 袸
+ 0x88b9: "\x91\x06\u88b9", // 袹
+ 0x88ba: "\x91\x06\u88ba", // 袺
+ 0x88bb: "\x91\x06\u88bb", // 袻
+ 0x88bc: "\x91\x06\u88bc", // 袼
+ 0x88bd: "\x91\x06\u88bd", // 袽
+ 0x88be: "\x91\x06\u88be", // 袾
+ 0x88bf: "\x91\x06\u88bf", // 袿
+ 0x88c0: "\x91\x06\u88c0", // 裀
+ 0x88c1: "\x91\x06\u88c1", // 裁
+ 0x88c2: "\x91\x06\u88c2", // 裂
+ 0x88c3: "\x91\x06\u88c3", // 裃
+ 0x88c4: "\x91\x06\u88c4", // 裄
+ 0x88c5: "\x91\x06\u88c5", // 装
+ 0x88c6: "\x91\x06\u88c6", // 裆
+ 0x88c7: "\x91\x06\u88c7", // 裇
+ 0x88c8: "\x91\x06\u88c8", // 裈
+ 0x88c9: "\x91\x06\u88c9", // 裉
+ 0x88ca: "\x91\a\u88ca", // 裊
+ 0x88cb: "\x91\a\u88cb", // 裋
+ 0x88cc: "\x91\a\u88cc", // 裌
+ 0x88cd: "\x91\a\u88cd", // 裍
+ 0x88ce: "\x91\a\u88ce", // 裎
+ 0x88cf: "\x91\a\u88cf", // 裏
+ 0x88d0: "\x91\a\u88d0", // 裐
+ 0x88d1: "\x91\a\u88d1", // 裑
+ 0x88d2: "\x91\a\u88d2", // 裒
+ 0x88d3: "\x91\a\u88d3", // 裓
+ 0x88d4: "\x91\a\u88d4", // 裔
+ 0x88d5: "\x91\a\u88d5", // 裕
+ 0x88d6: "\x91\a\u88d6", // 裖
+ 0x88d7: "\x91\a\u88d7", // 裗
+ 0x88d8: "\x91\a\u88d8", // 裘
+ 0x88d9: "\x91\a\u88d9", // 裙
+ 0x88da: "\x91\a\u88da", // 裚
+ 0x88db: "\x91\a\u88db", // 裛
+ 0x88dc: "\x91\a\u88dc", // 補
+ 0x88dd: "\x91\a\u88dd", // 裝
+ 0x88de: "\x91\a\u88de", // 裞
+ 0x88df: "\x91\a\u88df", // 裟
+ 0x88e0: "\x91\a\u88e0", // 裠
+ 0x88e1: "\x91\a\u88e1", // 裡
+ 0x88e2: "\x91\a\u88e2", // 裢
+ 0x88e3: "\x91\a\u88e3", // 裣
+ 0x88e4: "\x91\a\u88e4", // 裤
+ 0x88e5: "\x91\a\u88e5", // 裥
+ 0x88e6: "\x91\t\u88e6", // 裦
+ 0x88e7: "\x91\b\u88e7", // 裧
+ 0x88e8: "\x91\b\u88e8", // 裨
+ 0x88e9: "\x91\b\u88e9", // 裩
+ 0x88ea: "\x91\b\u88ea", // 裪
+ 0x88eb: "\x91\b\u88eb", // 裫
+ 0x88ec: "\x91\b\u88ec", // 裬
+ 0x88ed: "\x91\b\u88ed", // 裭
+ 0x88ee: "\x91\b\u88ee", // 裮
+ 0x88ef: "\x91\b\u88ef", // 裯
+ 0x88f0: "\x91\b\u88f0", // 裰
+ 0x88f1: "\x91\b\u88f1", // 裱
+ 0x88f2: "\x91\b\u88f2", // 裲
+ 0x88f3: "\x91\b\u88f3", // 裳
+ 0x88f4: "\x91\b\u88f4", // 裴
+ 0x88f5: "\x91\b\u88f5", // 裵
+ 0x88f6: "\x91\b\u88f6", // 裶
+ 0x88f7: "\x91\b\u88f7", // 裷
+ 0x88f8: "\x91\b\u88f8", // 裸
+ 0x88f9: "\x91\b\u88f9", // 裹
+ 0x88fa: "\x91\b\u88fa", // 裺
+ 0x88fb: "\x91\b\u88fb", // 裻
+ 0x88fc: "\x91\b\u88fc", // 裼
+ 0x88fd: "\x91\b\u88fd", // 製
+ 0x88fe: "\x91\b\u88fe", // 裾
+ 0x88ff: "\x91\b\u88ff", // 裿
+ 0x8900: "\x91\b\u8900", // 褀
+ 0x8901: "\x91\b\u8901", // 褁
+ 0x8902: "\x91\b\u8902", // 褂
+ 0x8903: "\x91\b\u8903", // 褃
+ 0x8904: "\x91\b\u8904", // 褄
+ 0x8905: "\x91\t\u8905", // 褅
+ 0x8906: "\x91\t\u8906", // 褆
+ 0x8907: "\x91\t\u8907", // 複
+ 0x8908: "\x91\t\u8908", // 褈
+ 0x8909: "\x91\t\u8909", // 褉
+ 0x890a: "\x91\t\u890a", // 褊
+ 0x890b: "\x91\t\u890b", // 褋
+ 0x890c: "\x91\t\u890c", // 褌
+ 0x890d: "\x91\t\u890d", // 褍
+ 0x890e: "\x91\t\u890e", // 褎
+ 0x890f: "\x91\t\u890f", // 褏
+ 0x8910: "\x91\t\u8910", // 褐
+ 0x8911: "\x91\t\u8911", // 褑
+ 0x8912: "\x91\t\u8912", // 褒
+ 0x8913: "\x91\t\u8913", // 褓
+ 0x8914: "\x91\t\u8914", // 褔
+ 0x8915: "\x91\t\u8915", // 褕
+ 0x8916: "\x91\t\u8916", // 褖
+ 0x8917: "\x91\t\u8917", // 褗
+ 0x8918: "\x91\t\u8918", // 褘
+ 0x8919: "\x91\t\u8919", // 褙
+ 0x891a: "\x91\t\u891a", // 褚
+ 0x891b: "\x91\t\u891b", // 褛
+ 0x891c: "\x91\t\u891c", // 褜
+ 0x891d: "\x91\t\u891d", // 褝
+ 0x891e: "\x91\n\u891e", // 褞
+ 0x891f: "\x91\n\u891f", // 褟
+ 0x8920: "\x91\n\u8920", // 褠
+ 0x8921: "\x91\n\u8921", // 褡
+ 0x8922: "\x91\n\u8922", // 褢
+ 0x8923: "\x91\n\u8923", // 褣
+ 0x8924: "\x91\n\u8924", // 褤
+ 0x8925: "\x91\n\u8925", // 褥
+ 0x8926: "\x91\n\u8926", // 褦
+ 0x8927: "\x91\n\u8927", // 褧
+ 0x8928: "\x91\n\u8928", // 褨
+ 0x8929: "\x91\n\u8929", // 褩
+ 0x892a: "\x91\n\u892a", // 褪
+ 0x892b: "\x91\n\u892b", // 褫
+ 0x892c: "\x91\n\u892c", // 褬
+ 0x892d: "\x91\n\u892d", // 褭
+ 0x892e: "\x91\n\u892e", // 褮
+ 0x892f: "\x91\n\u892f", // 褯
+ 0x8930: "\x91\n\u8930", // 褰
+ 0x8931: "\x91\n\u8931", // 褱
+ 0x8932: "\x91\n\u8932", // 褲
+ 0x8933: "\x91\v\u8933", // 褳
+ 0x8934: "\x91\n\u8934", // 褴
+ 0x8935: "\x91\v\u8935", // 褵
+ 0x8936: "\x91\v\u8936", // 褶
+ 0x8937: "\x91\v\u8937", // 褷
+ 0x8938: "\x91\v\u8938", // 褸
+ 0x8939: "\x91\v\u8939", // 褹
+ 0x893a: "\x91\v\u893a", // 褺
+ 0x893b: "\x91\v\u893b", // 褻
+ 0x893c: "\x91\v\u893c", // 褼
+ 0x893d: "\x91\v\u893d", // 褽
+ 0x893e: "\x91\v\u893e", // 褾
+ 0x893f: "\x91\v\u893f", // 褿
+ 0x8940: "\x91\v\u8940", // 襀
+ 0x8941: "\x91\v\u8941", // 襁
+ 0x8942: "\x91\v\u8942", // 襂
+ 0x8943: "\x91\v\u8943", // 襃
+ 0x8944: "\x91\v\u8944", // 襄
+ 0x8945: "\x91\v\u8945", // 襅
+ 0x8946: "\x91\f\u8946", // 襆
+ 0x8947: "\x91\f\u8947", // 襇
+ 0x8948: "\x91\f\u8948", // 襈
+ 0x8949: "\x91\f\u8949", // 襉
+ 0x894a: "\x91\f\u894a", // 襊
+ 0x894b: "\x91\f\u894b", // 襋
+ 0x894c: "\x91\f\u894c", // 襌
+ 0x894d: "\x91\f\u894d", // 襍
+ 0x894e: "\x91\f\u894e", // 襎
+ 0x894f: "\x91\f\u894f", // 襏
+ 0x8950: "\x91\f\u8950", // 襐
+ 0x8951: "\x91\f\u8951", // 襑
+ 0x8952: "\x91\f\u8952", // 襒
+ 0x8953: "\x91\f\u8953", // 襓
+ 0x8954: "\x91\v\u8954", // 襔
+ 0x8955: "\x91\f\u8955", // 襕
+ 0x8956: "\x91\r\u8956", // 襖
+ 0x8957: "\x91\r\u8957", // 襗
+ 0x8958: "\x91\r\u8958", // 襘
+ 0x8959: "\x91\r\u8959", // 襙
+ 0x895a: "\x91\r\u895a", // 襚
+ 0x895b: "\x91\r\u895b", // 襛
+ 0x895c: "\x91\r\u895c", // 襜
+ 0x895d: "\x91\r\u895d", // 襝
+ 0x895e: "\x91\r\u895e", // 襞
+ 0x895f: "\x91\r\u895f", // 襟
+ 0x8960: "\x91\r\u8960", // 襠
+ 0x8961: "\x91\r\u8961", // 襡
+ 0x8962: "\x91\r\u8962", // 襢
+ 0x8963: "\x91\x0e\u8963", // 襣
+ 0x8964: "\x91\x0e\u8964", // 襤
+ 0x8965: "\x91\x0e\u8965", // 襥
+ 0x8966: "\x91\x0e\u8966", // 襦
+ 0x8967: "\x91\x0e\u8967", // 襧
+ 0x8968: "\x91\x0e\u8968", // 襨
+ 0x8969: "\x91\x0f\u8969", // 襩
+ 0x896a: "\x91\x0f\u896a", // 襪
+ 0x896b: "\x91\x0f\u896b", // 襫
+ 0x896c: "\x91\x0f\u896c", // 襬
+ 0x896d: "\x91\x0f\u896d", // 襭
+ 0x896e: "\x91\x0f\u896e", // 襮
+ 0x896f: "\x91\x10\u896f", // 襯
+ 0x8970: "\x91\x10\u8970", // 襰
+ 0x8971: "\x91\x10\u8971", // 襱
+ 0x8972: "\x91\x10\u8972", // 襲
+ 0x8973: "\x91\x11\u8973", // 襳
+ 0x8974: "\x91\x11\u8974", // 襴
+ 0x8975: "\x91\x12\u8975", // 襵
+ 0x8976: "\x91\x12\u8976", // 襶
+ 0x8977: "\x91\x12\u8977", // 襷
+ 0x8978: "\x91\x13\u8978", // 襸
+ 0x8979: "\x91\x13\u8979", // 襹
+ 0x897a: "\x91\x13\u897a", // 襺
+ 0x897b: "\x91\x13\u897b", // 襻
+ 0x897c: "\x91\x13\u897c", // 襼
+ 0x897d: "\x91\x11\u897d", // 襽
+ 0x897e: "\x92\x00\u897e", // 襾
+ 0x897f: "\x92\x00\u897f", // 西
+ 0x8980: "\x92\x00\u8980", // 覀
+ 0x8981: "\x92\x03\u8981", // 要
+ 0x8982: "\x92\x05\u8982", // 覂
+ 0x8983: "\x92\x06\u8983", // 覃
+ 0x8984: "\x92\x06\u8984", // 覄
+ 0x8985: "\x92\a\u8985", // 覅
+ 0x8986: "\x92\f\u8986", // 覆
+ 0x8987: "\x92\r\u8987", // 覇
+ 0x8988: "\x92\r\u8988", // 覈
+ 0x8989: "\x92\x11\u8989", // 覉
+ 0x898a: "\x92\x13\u898a", // 覊
+ 0x898b: "\x93\x00\u898b", // 見
+ 0x898c: "\x93\x02\u898c", // 覌
+ 0x898d: "\x93\x03\u898d", // 覍
+ 0x898e: "\x93\x03\u898e", // 覎
+ 0x898f: "\x93\x04\u898f", // 規
+ 0x8990: "\x93\x04\u8990", // 覐
+ 0x8991: "\x93\x04\u8991", // 覑
+ 0x8992: "\x93\x04\u8992", // 覒
+ 0x8993: "\x93\x04\u8993", // 覓
+ 0x8994: "\x93\x04\u8994", // 覔
+ 0x8995: "\x93\x05\u8995", // 覕
+ 0x8996: "q\a\u8996", // 視
+ 0x8997: "\x93\x05\u8997", // 覗
+ 0x8998: "\x93\x05\u8998", // 覘
+ 0x8999: "\x93\x02\u8999", // 覙
+ 0x899a: "\x93\x05\u899a", // 覚
+ 0x899b: "\x93\x06\u899b", // 覛
+ 0x899c: "\x93\x06\u899c", // 覜
+ 0x899d: "\x93\a\u899d", // 覝
+ 0x899e: "\x93\a\u899e", // 覞
+ 0x899f: "\x93\a\u899f", // 覟
+ 0x89a0: "\x93\a\u89a0", // 覠
+ 0x89a1: "\x93\a\u89a1", // 覡
+ 0x89a2: "\x93\b\u89a2", // 覢
+ 0x89a3: "\x93\b\u89a3", // 覣
+ 0x89a4: "\x93\b\u89a4", // 覤
+ 0x89a5: "\x93\b\u89a5", // 覥
+ 0x89a6: "\x93\t\u89a6", // 覦
+ 0x89a7: "\x93\t\u89a7", // 覧
+ 0x89a8: "\x93\t\u89a8", // 覨
+ 0x89a9: "\x93\t\u89a9", // 覩
+ 0x89aa: "\x93\t\u89aa", // 親
+ 0x89ab: "\x93\n\u89ab", // 覫
+ 0x89ac: "\x93\n\u89ac", // 覬
+ 0x89ad: "\x93\n\u89ad", // 覭
+ 0x89ae: "\x93\n\u89ae", // 覮
+ 0x89af: "\x93\n\u89af", // 覯
+ 0x89b0: "\x93\v\u89b0", // 覰
+ 0x89b1: "\x93\v\u89b1", // 覱
+ 0x89b2: "\x93\v\u89b2", // 覲
+ 0x89b3: "\x93\v\u89b3", // 観
+ 0x89b4: "\x93\f\u89b4", // 覴
+ 0x89b5: "\x93\f\u89b5", // 覵
+ 0x89b6: "\x93\f\u89b6", // 覶
+ 0x89b7: "\x93\f\u89b7", // 覷
+ 0x89b8: "\x93\f\u89b8", // 覸
+ 0x89b9: "\x93\r\u89b9", // 覹
+ 0x89ba: "\x93\r\u89ba", // 覺
+ 0x89bb: "\x93\r\u89bb", // 覻
+ 0x89bc: "\x93\x0e\u89bc", // 覼
+ 0x89bd: "\x93\x0e\u89bd", // 覽
+ 0x89be: "\x93\x0f\u89be", // 覾
+ 0x89bf: "\x93\x0f\u89bf", // 覿
+ 0x89c0: "\x93\x12\u89c0", // 觀
+ 0x89c1: "\x93\x00\u89c1", // 见
+ 0x89c2: "\x93\x02\u89c2", // 观
+ 0x89c3: "\x93\x03\u89c3", // 觃
+ 0x89c4: "\x93\x04\u89c4", // 规
+ 0x89c5: "\x93\x04\u89c5", // 觅
+ 0x89c6: "q\x04\u89c6", // 视
+ 0x89c7: "\x93\x05\u89c7", // 觇
+ 0x89c8: "\x93\x05\u89c8", // 览
+ 0x89c9: "\x93\x05\u89c9", // 觉
+ 0x89ca: "\x93\x06\u89ca", // 觊
+ 0x89cb: "\x93\a\u89cb", // 觋
+ 0x89cc: "\x93\b\u89cc", // 觌
+ 0x89cd: "\x93\b\u89cd", // 觍
+ 0x89ce: "\x93\t\u89ce", // 觎
+ 0x89cf: "\x93\n\u89cf", // 觏
+ 0x89d0: "\x93\v\u89d0", // 觐
+ 0x89d1: "\x93\v\u89d1", // 觑
+ 0x89d2: "\x94\x00\u89d2", // 角
+ 0x89d3: "\x94\x02\u89d3", // 觓
+ 0x89d4: "\x94\x02\u89d4", // 觔
+ 0x89d5: "\x94\x04\u89d5", // 觕
+ 0x89d6: "\x94\x04\u89d6", // 觖
+ 0x89d7: "\x94\x04\u89d7", // 觗
+ 0x89d8: "\x94\x04\u89d8", // 觘
+ 0x89d9: "\x94\x04\u89d9", // 觙
+ 0x89da: "\x94\x05\u89da", // 觚
+ 0x89db: "\x94\x05\u89db", // 觛
+ 0x89dc: "\x94\x06\u89dc", // 觜
+ 0x89dd: "\x94\x05\u89dd", // 觝
+ 0x89de: "\x94\x05\u89de", // 觞
+ 0x89df: "\x94\x06\u89df", // 觟
+ 0x89e0: "\x94\x06\u89e0", // 觠
+ 0x89e1: "\x94\x06\u89e1", // 觡
+ 0x89e2: "\x94\x06\u89e2", // 觢
+ 0x89e3: "\x94\x06\u89e3", // 解
+ 0x89e4: "\x94\x06\u89e4", // 觤
+ 0x89e5: "\x94\x06\u89e5", // 觥
+ 0x89e6: "\x94\x06\u89e6", // 触
+ 0x89e7: "\x94\x06\u89e7", // 觧
+ 0x89e8: "\x94\a\u89e8", // 觨
+ 0x89e9: "\x94\a\u89e9", // 觩
+ 0x89ea: "\x94\a\u89ea", // 觪
+ 0x89eb: "\x94\a\u89eb", // 觫
+ 0x89ec: "\x94\b\u89ec", // 觬
+ 0x89ed: "\x94\b\u89ed", // 觭
+ 0x89ee: "\x94\b\u89ee", // 觮
+ 0x89ef: "\x94\b\u89ef", // 觯
+ 0x89f0: "\x94\t\u89f0", // 觰
+ 0x89f1: "\x94\t\u89f1", // 觱
+ 0x89f2: "\x94\n\u89f2", // 觲
+ 0x89f3: "\x94\n\u89f3", // 觳
+ 0x89f4: "\x94\v\u89f4", // 觴
+ 0x89f5: "\x94\f\u89f5", // 觵
+ 0x89f6: "\x94\f\u89f6", // 觶
+ 0x89f7: "\x94\r\u89f7", // 觷
+ 0x89f8: "\x94\r\u89f8", // 觸
+ 0x89f9: "\x94\r\u89f9", // 觹
+ 0x89fa: "\x94\x0e\u89fa", // 觺
+ 0x89fb: "\x94\x0f\u89fb", // 觻
+ 0x89fc: "\x94\x0f\u89fc", // 觼
+ 0x89fd: "\x94\x10\u89fd", // 觽
+ 0x89fe: "\x94\x10\u89fe", // 觾
+ 0x89ff: "\x94\x12\u89ff", // 觿
+ 0x8a00: "\x95\x00\u8a00", // 言
+ 0x8a01: "\x95\x00\u8a01", // 訁
+ 0x8a02: "\x95\x02\u8a02", // 訂
+ 0x8a03: "\x95\x02\u8a03", // 訃
+ 0x8a04: "\x95\x02\u8a04", // 訄
+ 0x8a05: "\x95\x02\u8a05", // 訅
+ 0x8a06: "\x95\x02\u8a06", // 訆
+ 0x8a07: "\x95\x02\u8a07", // 訇
+ 0x8a08: "\x95\x02\u8a08", // 計
+ 0x8a09: "\x95\x03\u8a09", // 訉
+ 0x8a0a: "\x95\x03\u8a0a", // 訊
+ 0x8a0b: "\x95\x03\u8a0b", // 訋
+ 0x8a0c: "\x95\x03\u8a0c", // 訌
+ 0x8a0d: "\x95\x03\u8a0d", // 訍
+ 0x8a0e: "\x95\x03\u8a0e", // 討
+ 0x8a0f: "\x95\x03\u8a0f", // 訏
+ 0x8a10: "\x95\x03\u8a10", // 訐
+ 0x8a11: "\x95\x03\u8a11", // 訑
+ 0x8a12: "\x95\x03\u8a12", // 訒
+ 0x8a13: "\x95\x03\u8a13", // 訓
+ 0x8a14: "\x95\x03\u8a14", // 訔
+ 0x8a15: "\x95\x03\u8a15", // 訕
+ 0x8a16: "\x95\x03\u8a16", // 訖
+ 0x8a17: "\x95\x03\u8a17", // 託
+ 0x8a18: "\x95\x03\u8a18", // 記
+ 0x8a19: "\x95\x03\u8a19", // 訙
+ 0x8a1a: "\x95\x03\u8a1a", // 訚
+ 0x8a1b: "\x95\x04\u8a1b", // 訛
+ 0x8a1c: "\x95\x04\u8a1c", // 訜
+ 0x8a1d: "\x95\x04\u8a1d", // 訝
+ 0x8a1e: "\x95\x04\u8a1e", // 訞
+ 0x8a1f: "\x95\x04\u8a1f", // 訟
+ 0x8a20: "\x95\x04\u8a20", // 訠
+ 0x8a21: "\x95\x04\u8a21", // 訡
+ 0x8a22: "\x95\x04\u8a22", // 訢
+ 0x8a23: "\x95\x04\u8a23", // 訣
+ 0x8a24: "\x95\x04\u8a24", // 訤
+ 0x8a25: "\x95\x04\u8a25", // 訥
+ 0x8a26: "\x95\x04\u8a26", // 訦
+ 0x8a27: "\x95\x04\u8a27", // 訧
+ 0x8a28: "\x95\x04\u8a28", // 訨
+ 0x8a29: "\x95\x04\u8a29", // 訩
+ 0x8a2a: "\x95\x04\u8a2a", // 訪
+ 0x8a2b: "\x95\x04\u8a2b", // 訫
+ 0x8a2c: "\x95\x04\u8a2c", // 訬
+ 0x8a2d: "\x95\x04\u8a2d", // 設
+ 0x8a2e: "\x95\x04\u8a2e", // 訮
+ 0x8a2f: "\x95\x04\u8a2f", // 訯
+ 0x8a30: "\x95\x04\u8a30", // 訰
+ 0x8a31: "\x95\x04\u8a31", // 許
+ 0x8a32: "\x95\x04\u8a32", // 訲
+ 0x8a33: "\x95\x04\u8a33", // 訳
+ 0x8a34: "\x95\x05\u8a34", // 訴
+ 0x8a35: "\x95\x05\u8a35", // 訵
+ 0x8a36: "\x95\x05\u8a36", // 訶
+ 0x8a37: "\x95\x05\u8a37", // 訷
+ 0x8a38: "\x95\x05\u8a38", // 訸
+ 0x8a39: "\x95\x05\u8a39", // 訹
+ 0x8a3a: "\x95\x05\u8a3a", // 診
+ 0x8a3b: "\x95\x05\u8a3b", // 註
+ 0x8a3c: "\x95\x05\u8a3c", // 証
+ 0x8a3d: "\x95\x05\u8a3d", // 訽
+ 0x8a3e: "\x95\x05\u8a3e", // 訾
+ 0x8a3f: "\x95\x05\u8a3f", // 訿
+ 0x8a40: "\x95\x05\u8a40", // 詀
+ 0x8a41: "\x95\x05\u8a41", // 詁
+ 0x8a42: "\x95\x05\u8a42", // 詂
+ 0x8a43: "\x95\x05\u8a43", // 詃
+ 0x8a44: "\x95\x05\u8a44", // 詄
+ 0x8a45: "\x95\x05\u8a45", // 詅
+ 0x8a46: "\x95\x05\u8a46", // 詆
+ 0x8a47: "\x95\x05\u8a47", // 詇
+ 0x8a48: "\x95\x05\u8a48", // 詈
+ 0x8a49: "\x95\x05\u8a49", // 詉
+ 0x8a4a: "\x95\x05\u8a4a", // 詊
+ 0x8a4b: "\x95\x05\u8a4b", // 詋
+ 0x8a4c: "\x95\x05\u8a4c", // 詌
+ 0x8a4d: "\x95\x05\u8a4d", // 詍
+ 0x8a4e: "\x95\x05\u8a4e", // 詎
+ 0x8a4f: "\x95\x05\u8a4f", // 詏
+ 0x8a50: "\x95\x05\u8a50", // 詐
+ 0x8a51: "\x95\x05\u8a51", // 詑
+ 0x8a52: "\x95\x05\u8a52", // 詒
+ 0x8a53: "\x95\x05\u8a53", // 詓
+ 0x8a54: "\x95\x05\u8a54", // 詔
+ 0x8a55: "\x95\x05\u8a55", // 評
+ 0x8a56: "\x95\x05\u8a56", // 詖
+ 0x8a57: "\x95\x05\u8a57", // 詗
+ 0x8a58: "\x95\x05\u8a58", // 詘
+ 0x8a59: "\x95\x05\u8a59", // 詙
+ 0x8a5a: "\x95\x05\u8a5a", // 詚
+ 0x8a5b: "\x95\x05\u8a5b", // 詛
+ 0x8a5c: "\x95\x05\u8a5c", // 詜
+ 0x8a5d: "\x95\x05\u8a5d", // 詝
+ 0x8a5e: "\x95\x05\u8a5e", // 詞
+ 0x8a5f: "\x95\x05\u8a5f", // 詟
+ 0x8a60: "\x95\x05\u8a60", // 詠
+ 0x8a61: "\x95\x06\u8a61", // 詡
+ 0x8a62: "\x95\x06\u8a62", // 詢
+ 0x8a63: "\x95\x06\u8a63", // 詣
+ 0x8a64: "\x95\x06\u8a64", // 詤
+ 0x8a65: "\x95\x06\u8a65", // 詥
+ 0x8a66: "\x95\x06\u8a66", // 試
+ 0x8a67: "\x95\x06\u8a67", // 詧
+ 0x8a68: "\x95\x06\u8a68", // 詨
+ 0x8a69: "\x95\x06\u8a69", // 詩
+ 0x8a6a: "\x95\x06\u8a6a", // 詪
+ 0x8a6b: "\x95\x06\u8a6b", // 詫
+ 0x8a6c: "\x95\x06\u8a6c", // 詬
+ 0x8a6d: "\x95\x06\u8a6d", // 詭
+ 0x8a6e: "\x95\x06\u8a6e", // 詮
+ 0x8a6f: "\x95\x06\u8a6f", // 詯
+ 0x8a70: "\x95\x06\u8a70", // 詰
+ 0x8a71: "\x95\x06\u8a71", // 話
+ 0x8a72: "\x95\x06\u8a72", // 該
+ 0x8a73: "\x95\x06\u8a73", // 詳
+ 0x8a74: "\x95\x06\u8a74", // 詴
+ 0x8a75: "\x95\x06\u8a75", // 詵
+ 0x8a76: "\x95\x06\u8a76", // 詶
+ 0x8a77: "\x95\x06\u8a77", // 詷
+ 0x8a78: "\x95\x06\u8a78", // 詸
+ 0x8a79: "\x95\x06\u8a79", // 詹
+ 0x8a7a: "\x95\x06\u8a7a", // 詺
+ 0x8a7b: "\x95\x06\u8a7b", // 詻
+ 0x8a7c: "\x95\x06\u8a7c", // 詼
+ 0x8a7d: "\x95\x06\u8a7d", // 詽
+ 0x8a7e: "\x95\x06\u8a7e", // 詾
+ 0x8a7f: "\x95\x06\u8a7f", // 詿
+ 0x8a80: "\x95\x06\u8a80", // 誀
+ 0x8a81: "\x95\x06\u8a81", // 誁
+ 0x8a82: "\x95\x06\u8a82", // 誂
+ 0x8a83: "\x95\x06\u8a83", // 誃
+ 0x8a84: "\x95\x06\u8a84", // 誄
+ 0x8a85: "\x95\x06\u8a85", // 誅
+ 0x8a86: "\x95\x06\u8a86", // 誆
+ 0x8a87: "\x95\x06\u8a87", // 誇
+ 0x8a88: "\x95\x06\u8a88", // 誈
+ 0x8a89: "\x95\x06\u8a89", // 誉
+ 0x8a8a: "\x95\x06\u8a8a", // 誊
+ 0x8a8b: "\x95\a\u8a8b", // 誋
+ 0x8a8c: "\x95\a\u8a8c", // 誌
+ 0x8a8d: "\x95\a\u8a8d", // 認
+ 0x8a8e: "\x95\a\u8a8e", // 誎
+ 0x8a8f: "\x95\a\u8a8f", // 誏
+ 0x8a90: "\x95\a\u8a90", // 誐
+ 0x8a91: "\x95\a\u8a91", // 誑
+ 0x8a92: "\x95\a\u8a92", // 誒
+ 0x8a93: "\x95\a\u8a93", // 誓
+ 0x8a94: "\x95\a\u8a94", // 誔
+ 0x8a95: "\x95\a\u8a95", // 誕
+ 0x8a96: "\x95\a\u8a96", // 誖
+ 0x8a97: "\x95\a\u8a97", // 誗
+ 0x8a98: "\x95\a\u8a98", // 誘
+ 0x8a99: "\x95\a\u8a99", // 誙
+ 0x8a9a: "\x95\a\u8a9a", // 誚
+ 0x8a9b: "\x95\a\u8a9b", // 誛
+ 0x8a9c: "\x95\a\u8a9c", // 誜
+ 0x8a9d: "\x95\a\u8a9d", // 誝
+ 0x8a9e: "\x95\a\u8a9e", // 語
+ 0x8a9f: "\x95\a\u8a9f", // 誟
+ 0x8aa0: "\x95\x06\u8aa0", // 誠
+ 0x8aa1: "\x95\a\u8aa1", // 誡
+ 0x8aa2: "\x95\a\u8aa2", // 誢
+ 0x8aa3: "\x95\a\u8aa3", // 誣
+ 0x8aa4: "\x95\a\u8aa4", // 誤
+ 0x8aa5: "\x95\a\u8aa5", // 誥
+ 0x8aa6: "\x95\a\u8aa6", // 誦
+ 0x8aa7: "\x95\a\u8aa7", // 誧
+ 0x8aa8: "\x95\a\u8aa8", // 誨
+ 0x8aa9: "\x95\a\u8aa9", // 誩
+ 0x8aaa: "\x95\a\u8aaa", // 說
+ 0x8aab: "\x95\a\u8aab", // 誫
+ 0x8aac: "\x95\a\u8aac", // 説
+ 0x8aad: "\x95\a\u8aad", // 読
+ 0x8aae: "\x95\a\u8aae", // 誮
+ 0x8aaf: "\x95\b\u8aaf", // 誯
+ 0x8ab0: "\x95\b\u8ab0", // 誰
+ 0x8ab1: "\x95\b\u8ab1", // 誱
+ 0x8ab2: "\x95\b\u8ab2", // 課
+ 0x8ab3: "\x95\b\u8ab3", // 誳
+ 0x8ab4: "\x95\b\u8ab4", // 誴
+ 0x8ab5: "\x95\b\u8ab5", // 誵
+ 0x8ab6: "\x95\b\u8ab6", // 誶
+ 0x8ab7: "\x95\b\u8ab7", // 誷
+ 0x8ab8: "\x95\b\u8ab8", // 誸
+ 0x8ab9: "\x95\b\u8ab9", // 誹
+ 0x8aba: "\x95\b\u8aba", // 誺
+ 0x8abb: "\x95\b\u8abb", // 誻
+ 0x8abc: "\x95\b\u8abc", // 誼
+ 0x8abd: "\x95\b\u8abd", // 誽
+ 0x8abe: "\x95\b\u8abe", // 誾
+ 0x8abf: "\x95\b\u8abf", // 調
+ 0x8ac0: "\x95\b\u8ac0", // 諀
+ 0x8ac1: "\x95\b\u8ac1", // 諁
+ 0x8ac2: "\x95\b\u8ac2", // 諂
+ 0x8ac3: "\x95\b\u8ac3", // 諃
+ 0x8ac4: "\x95\b\u8ac4", // 諄
+ 0x8ac5: "\x95\b\u8ac5", // 諅
+ 0x8ac6: "\x95\b\u8ac6", // 諆
+ 0x8ac7: "\x95\b\u8ac7", // 談
+ 0x8ac8: "\x95\b\u8ac8", // 諈
+ 0x8ac9: "\x95\b\u8ac9", // 諉
+ 0x8aca: "\x95\b\u8aca", // 諊
+ 0x8acb: "\x95\b\u8acb", // 請
+ 0x8acc: "\x95\b\u8acc", // 諌
+ 0x8acd: "\x95\b\u8acd", // 諍
+ 0x8ace: "\x95\b\u8ace", // 諎
+ 0x8acf: "\x95\b\u8acf", // 諏
+ 0x8ad0: "\x95\b\u8ad0", // 諐
+ 0x8ad1: "\x95\b\u8ad1", // 諑
+ 0x8ad2: "\x95\b\u8ad2", // 諒
+ 0x8ad3: "\x95\b\u8ad3", // 諓
+ 0x8ad4: "\x95\b\u8ad4", // 諔
+ 0x8ad5: "\x95\b\u8ad5", // 諕
+ 0x8ad6: "\x95\b\u8ad6", // 論
+ 0x8ad7: "\x95\b\u8ad7", // 諗
+ 0x8ad8: "\x95\b\u8ad8", // 諘
+ 0x8ad9: "\x95\b\u8ad9", // 諙
+ 0x8ada: "\x95\b\u8ada", // 諚
+ 0x8adb: "\x95\t\u8adb", // 諛
+ 0x8adc: "\x95\t\u8adc", // 諜
+ 0x8add: "\x95\t\u8add", // 諝
+ 0x8ade: "\x95\t\u8ade", // 諞
+ 0x8adf: "\x95\t\u8adf", // 諟
+ 0x8ae0: "\x95\t\u8ae0", // 諠
+ 0x8ae1: "\x95\t\u8ae1", // 諡
+ 0x8ae2: "\x95\t\u8ae2", // 諢
+ 0x8ae3: "\x95\t\u8ae3", // 諣
+ 0x8ae4: "\x95\t\u8ae4", // 諤
+ 0x8ae5: "\x95\t\u8ae5", // 諥
+ 0x8ae6: "\x95\t\u8ae6", // 諦
+ 0x8ae7: "\x95\t\u8ae7", // 諧
+ 0x8ae8: "\x95\t\u8ae8", // 諨
+ 0x8ae9: "\x95\b\u8ae9", // 諩
+ 0x8aea: "\x95\t\u8aea", // 諪
+ 0x8aeb: "\x95\t\u8aeb", // 諫
+ 0x8aec: "\x95\t\u8aec", // 諬
+ 0x8aed: "\x95\t\u8aed", // 諭
+ 0x8aee: "\x95\t\u8aee", // 諮
+ 0x8aef: "\x95\t\u8aef", // 諯
+ 0x8af0: "\x95\t\u8af0", // 諰
+ 0x8af1: "\x95\t\u8af1", // 諱
+ 0x8af2: "\x95\t\u8af2", // 諲
+ 0x8af3: "\x95\t\u8af3", // 諳
+ 0x8af4: "\x95\t\u8af4", // 諴
+ 0x8af5: "\x95\t\u8af5", // 諵
+ 0x8af6: "\x95\t\u8af6", // 諶
+ 0x8af7: "\x95\t\u8af7", // 諷
+ 0x8af8: "\x95\t\u8af8", // 諸
+ 0x8af9: "\x95\t\u8af9", // 諹
+ 0x8afa: "\x95\t\u8afa", // 諺
+ 0x8afb: "\x95\t\u8afb", // 諻
+ 0x8afc: "\x95\t\u8afc", // 諼
+ 0x8afd: "\x95\t\u8afd", // 諽
+ 0x8afe: "\x95\t\u8afe", // 諾
+ 0x8aff: "\x95\t\u8aff", // 諿
+ 0x8b00: "\x95\t\u8b00", // 謀
+ 0x8b01: "\x95\t\u8b01", // 謁
+ 0x8b02: "\x95\t\u8b02", // 謂
+ 0x8b03: "\x95\t\u8b03", // 謃
+ 0x8b04: "\x95\n\u8b04", // 謄
+ 0x8b05: "\x95\n\u8b05", // 謅
+ 0x8b06: "\x95\n\u8b06", // 謆
+ 0x8b07: "\x95\n\u8b07", // 謇
+ 0x8b08: "\x95\n\u8b08", // 謈
+ 0x8b09: "\x95\n\u8b09", // 謉
+ 0x8b0a: "\x95\n\u8b0a", // 謊
+ 0x8b0b: "\x95\n\u8b0b", // 謋
+ 0x8b0c: "\x95\n\u8b0c", // 謌
+ 0x8b0d: "\x95\n\u8b0d", // 謍
+ 0x8b0e: "\x95\n\u8b0e", // 謎
+ 0x8b0f: "\x95\n\u8b0f", // 謏
+ 0x8b10: "\x95\n\u8b10", // 謐
+ 0x8b11: "\x95\n\u8b11", // 謑
+ 0x8b12: "\x95\n\u8b12", // 謒
+ 0x8b13: "\x95\n\u8b13", // 謓
+ 0x8b14: "\x95\n\u8b14", // 謔
+ 0x8b15: "\x95\n\u8b15", // 謕
+ 0x8b16: "\x95\n\u8b16", // 謖
+ 0x8b17: "\x95\n\u8b17", // 謗
+ 0x8b18: "\x95\n\u8b18", // 謘
+ 0x8b19: "\x95\n\u8b19", // 謙
+ 0x8b1a: "\x95\n\u8b1a", // 謚
+ 0x8b1b: "\x95\n\u8b1b", // 講
+ 0x8b1c: "\x95\n\u8b1c", // 謜
+ 0x8b1d: "\x95\n\u8b1d", // 謝
+ 0x8b1e: "\x95\n\u8b1e", // 謞
+ 0x8b1f: "\x95\n\u8b1f", // 謟
+ 0x8b20: "\x95\n\u8b20", // 謠
+ 0x8b21: "\x95\n\u8b21", // 謡
+ 0x8b22: "\x95\n\u8b22", // 謢
+ 0x8b23: "\x95\v\u8b23", // 謣
+ 0x8b24: "\x95\v\u8b24", // 謤
+ 0x8b25: "\x95\v\u8b25", // 謥
+ 0x8b26: "\x95\v\u8b26", // 謦
+ 0x8b27: "\x95\v\u8b27", // 謧
+ 0x8b28: "\x95\v\u8b28", // 謨
+ 0x8b29: "\x95\v\u8b29", // 謩
+ 0x8b2a: "\x95\v\u8b2a", // 謪
+ 0x8b2b: "\x95\v\u8b2b", // 謫
+ 0x8b2c: "\x95\v\u8b2c", // 謬
+ 0x8b2d: "\x95\v\u8b2d", // 謭
+ 0x8b2e: "\x95\v\u8b2e", // 謮
+ 0x8b2f: "\x95\v\u8b2f", // 謯
+ 0x8b30: "\x95\v\u8b30", // 謰
+ 0x8b31: "\x95\v\u8b31", // 謱
+ 0x8b32: "\x95\v\u8b32", // 謲
+ 0x8b33: "\x95\v\u8b33", // 謳
+ 0x8b34: "\x95\v\u8b34", // 謴
+ 0x8b35: "\x95\v\u8b35", // 謵
+ 0x8b36: "\x95\v\u8b36", // 謶
+ 0x8b37: "\x95\v\u8b37", // 謷
+ 0x8b38: "\x95\v\u8b38", // 謸
+ 0x8b39: "\x95\v\u8b39", // 謹
+ 0x8b3a: "\x95\v\u8b3a", // 謺
+ 0x8b3b: "\x95\v\u8b3b", // 謻
+ 0x8b3c: "\x95\v\u8b3c", // 謼
+ 0x8b3d: "\x95\v\u8b3d", // 謽
+ 0x8b3e: "\x95\v\u8b3e", // 謾
+ 0x8b3f: "\x95\f\u8b3f", // 謿
+ 0x8b40: "\x95\f\u8b40", // 譀
+ 0x8b41: "\x95\f\u8b41", // 譁
+ 0x8b42: "\x95\f\u8b42", // 譂
+ 0x8b43: "\x95\f\u8b43", // 譃
+ 0x8b44: "\x95\f\u8b44", // 譄
+ 0x8b45: "\x95\f\u8b45", // 譅
+ 0x8b46: "\x95\f\u8b46", // 譆
+ 0x8b47: "\x95\f\u8b47", // 譇
+ 0x8b48: "\x95\f\u8b48", // 譈
+ 0x8b49: "\x95\f\u8b49", // 證
+ 0x8b4a: "\x95\f\u8b4a", // 譊
+ 0x8b4b: "\x95\f\u8b4b", // 譋
+ 0x8b4c: "\x95\f\u8b4c", // 譌
+ 0x8b4d: "\x95\r\u8b4d", // 譍
+ 0x8b4e: "\x95\f\u8b4e", // 譎
+ 0x8b4f: "\x95\f\u8b4f", // 譏
+ 0x8b50: "\x95\f\u8b50", // 譐
+ 0x8b51: "\x95\f\u8b51", // 譑
+ 0x8b52: "\x95\f\u8b52", // 譒
+ 0x8b53: "\x95\f\u8b53", // 譓
+ 0x8b54: "\x95\f\u8b54", // 譔
+ 0x8b55: "\x95\f\u8b55", // 譕
+ 0x8b56: "\x95\f\u8b56", // 譖
+ 0x8b57: "\x95\f\u8b57", // 譗
+ 0x8b58: "\x95\f\u8b58", // 識
+ 0x8b59: "\x95\f\u8b59", // 譙
+ 0x8b5a: "\x95\f\u8b5a", // 譚
+ 0x8b5b: "\x95\f\u8b5b", // 譛
+ 0x8b5c: "\x95\f\u8b5c", // 譜
+ 0x8b5d: "\x95\r\u8b5d", // 譝
+ 0x8b5e: "\x95\r\u8b5e", // 譞
+ 0x8b5f: "\x95\r\u8b5f", // 譟
+ 0x8b60: "\x95\r\u8b60", // 譠
+ 0x8b61: "\x95\r\u8b61", // 譡
+ 0x8b62: "\x95\r\u8b62", // 譢
+ 0x8b63: "\x95\r\u8b63", // 譣
+ 0x8b64: "\x95\r\u8b64", // 譤
+ 0x8b65: "\x95\r\u8b65", // 譥
+ 0x8b66: "\x95\r\u8b66", // 警
+ 0x8b67: "\x95\r\u8b67", // 譧
+ 0x8b68: "\x95\r\u8b68", // 譨
+ 0x8b69: "\x95\r\u8b69", // 譩
+ 0x8b6a: "\x95\r\u8b6a", // 譪
+ 0x8b6b: "\x95\r\u8b6b", // 譫
+ 0x8b6c: "\x95\r\u8b6c", // 譬
+ 0x8b6d: "\x95\r\u8b6d", // 譭
+ 0x8b6e: "\x95\r\u8b6e", // 譮
+ 0x8b6f: "\x95\r\u8b6f", // 譯
+ 0x8b70: "\x95\r\u8b70", // 議
+ 0x8b71: "\x95\r\u8b71", // 譱
+ 0x8b72: "\x95\r\u8b72", // 譲
+ 0x8b73: "\x95\x0e\u8b73", // 譳
+ 0x8b74: "\x95\x0e\u8b74", // 譴
+ 0x8b75: "\x95\x0e\u8b75", // 譵
+ 0x8b76: "\x95\x0e\u8b76", // 譶
+ 0x8b77: "\x95\x0e\u8b77", // 護
+ 0x8b78: "\x95\x0e\u8b78", // 譸
+ 0x8b79: "\x95\x0e\u8b79", // 譹
+ 0x8b7a: "\x95\x0e\u8b7a", // 譺
+ 0x8b7b: "\x95\x0e\u8b7b", // 譻
+ 0x8b7c: "\x95\x0e\u8b7c", // 譼
+ 0x8b7d: "\x95\x0e\u8b7d", // 譽
+ 0x8b7e: "\x95\x0f\u8b7e", // 譾
+ 0x8b7f: "\x95\x0f\u8b7f", // 譿
+ 0x8b80: "\x95\x0f\u8b80", // 讀
+ 0x8b81: "\x95\x0f\u8b81", // 讁
+ 0x8b82: "\x95\x0f\u8b82", // 讂
+ 0x8b83: "\x95\x0f\u8b83", // 讃
+ 0x8b84: "\x95\x0f\u8b84", // 讄
+ 0x8b85: "\x95\x0f\u8b85", // 讅
+ 0x8b86: "\x95\x10\u8b86", // 讆
+ 0x8b87: "\x95\x10\u8b87", // 讇
+ 0x8b88: "\x95\x10\u8b88", // 讈
+ 0x8b89: "\x95\x10\u8b89", // 讉
+ 0x8b8a: "\x95\x10\u8b8a", // 變
+ 0x8b8b: "\x95\x10\u8b8b", // 讋
+ 0x8b8c: "\x95\x10\u8b8c", // 讌
+ 0x8b8d: "\x95\x10\u8b8d", // 讍
+ 0x8b8e: "\x95\x10\u8b8e", // 讎
+ 0x8b8f: "\x95\x10\u8b8f", // 讏
+ 0x8b90: "\x95\x10\u8b90", // 讐
+ 0x8b91: "\x95\x11\u8b91", // 讑
+ 0x8b92: "\x95\x11\u8b92", // 讒
+ 0x8b93: "\x95\x11\u8b93", // 讓
+ 0x8b94: "\x95\x11\u8b94", // 讔
+ 0x8b95: "\x95\x11\u8b95", // 讕
+ 0x8b96: "\x95\x11\u8b96", // 讖
+ 0x8b97: "\x95\x12\u8b97", // 讗
+ 0x8b98: "\x95\x12\u8b98", // 讘
+ 0x8b99: "\x95\x12\u8b99", // 讙
+ 0x8b9a: "\x95\x13\u8b9a", // 讚
+ 0x8b9b: "\x95\x13\u8b9b", // 讛
+ 0x8b9c: "\x95\x14\u8b9c", // 讜
+ 0x8b9d: "\x95\x14\u8b9d", // 讝
+ 0x8b9e: "\x95\x14\u8b9e", // 讞
+ 0x8b9f: "\x95\x16\u8b9f", // 讟
+ 0x8ba0: "\x95\x00\u8ba0", // 讠
+ 0x8ba1: "\x95\x02\u8ba1", // 计
+ 0x8ba2: "\x95\x02\u8ba2", // 订
+ 0x8ba3: "\x95\x02\u8ba3", // 讣
+ 0x8ba4: "\x95\x02\u8ba4", // 认
+ 0x8ba5: "\x95\x02\u8ba5", // 讥
+ 0x8ba6: "\x95\x03\u8ba6", // 讦
+ 0x8ba7: "\x95\x03\u8ba7", // 讧
+ 0x8ba8: "\x95\x03\u8ba8", // 讨
+ 0x8ba9: "\x95\x03\u8ba9", // 让
+ 0x8baa: "\x95\x03\u8baa", // 讪
+ 0x8bab: "\x95\x03\u8bab", // 讫
+ 0x8bac: "\x95\x03\u8bac", // 讬
+ 0x8bad: "\x95\x03\u8bad", // 训
+ 0x8bae: "\x95\x03\u8bae", // 议
+ 0x8baf: "\x95\x03\u8baf", // 讯
+ 0x8bb0: "\x95\x03\u8bb0", // 记
+ 0x8bb1: "\x95\x03\u8bb1", // 讱
+ 0x8bb2: "\x95\x04\u8bb2", // 讲
+ 0x8bb3: "\x95\x04\u8bb3", // 讳
+ 0x8bb4: "\x95\x04\u8bb4", // 讴
+ 0x8bb5: "\x95\x04\u8bb5", // 讵
+ 0x8bb6: "\x95\x04\u8bb6", // 讶
+ 0x8bb7: "\x95\x04\u8bb7", // 讷
+ 0x8bb8: "\x95\x04\u8bb8", // 许
+ 0x8bb9: "\x95\x04\u8bb9", // 讹
+ 0x8bba: "\x95\x04\u8bba", // 论
+ 0x8bbb: "\x95\x04\u8bbb", // 讻
+ 0x8bbc: "\x95\x04\u8bbc", // 讼
+ 0x8bbd: "\x95\x04\u8bbd", // 讽
+ 0x8bbe: "\x95\x04\u8bbe", // 设
+ 0x8bbf: "\x95\x04\u8bbf", // 访
+ 0x8bc0: "\x95\x04\u8bc0", // 诀
+ 0x8bc1: "\x95\x05\u8bc1", // 证
+ 0x8bc2: "\x95\x05\u8bc2", // 诂
+ 0x8bc3: "\x95\x05\u8bc3", // 诃
+ 0x8bc4: "\x95\x05\u8bc4", // 评
+ 0x8bc5: "\x95\x05\u8bc5", // 诅
+ 0x8bc6: "\x95\x05\u8bc6", // 识
+ 0x8bc7: "\x95\x05\u8bc7", // 诇
+ 0x8bc8: "\x95\x05\u8bc8", // 诈
+ 0x8bc9: "\x95\x05\u8bc9", // 诉
+ 0x8bca: "\x95\x05\u8bca", // 诊
+ 0x8bcb: "\x95\x05\u8bcb", // 诋
+ 0x8bcc: "\x95\x05\u8bcc", // 诌
+ 0x8bcd: "\x95\x05\u8bcd", // 词
+ 0x8bce: "\x95\x05\u8bce", // 诎
+ 0x8bcf: "\x95\x05\u8bcf", // 诏
+ 0x8bd0: "\x95\x05\u8bd0", // 诐
+ 0x8bd1: "\x95\x05\u8bd1", // 译
+ 0x8bd2: "\x95\x05\u8bd2", // 诒
+ 0x8bd3: "\x95\x06\u8bd3", // 诓
+ 0x8bd4: "\x95\x06\u8bd4", // 诔
+ 0x8bd5: "\x95\x06\u8bd5", // 试
+ 0x8bd6: "\x95\x06\u8bd6", // 诖
+ 0x8bd7: "\x95\x06\u8bd7", // 诗
+ 0x8bd8: "\x95\x06\u8bd8", // 诘
+ 0x8bd9: "\x95\x06\u8bd9", // 诙
+ 0x8bda: "\x95\x06\u8bda", // 诚
+ 0x8bdb: "\x95\x06\u8bdb", // 诛
+ 0x8bdc: "\x95\x06\u8bdc", // 诜
+ 0x8bdd: "\x95\x06\u8bdd", // 话
+ 0x8bde: "\x95\x06\u8bde", // 诞
+ 0x8bdf: "\x95\x06\u8bdf", // 诟
+ 0x8be0: "\x95\x06\u8be0", // 诠
+ 0x8be1: "\x95\x06\u8be1", // 诡
+ 0x8be2: "\x95\x06\u8be2", // 询
+ 0x8be3: "\x95\x06\u8be3", // 诣
+ 0x8be4: "\x95\x06\u8be4", // 诤
+ 0x8be5: "\x95\x06\u8be5", // 该
+ 0x8be6: "\x95\x06\u8be6", // 详
+ 0x8be7: "\x95\x06\u8be7", // 诧
+ 0x8be8: "\x95\x06\u8be8", // 诨
+ 0x8be9: "\x95\x06\u8be9", // 诩
+ 0x8bea: "\x95\a\u8bea", // 诪
+ 0x8beb: "\x95\a\u8beb", // 诫
+ 0x8bec: "\x95\a\u8bec", // 诬
+ 0x8bed: "\x95\a\u8bed", // 语
+ 0x8bee: "\x95\a\u8bee", // 诮
+ 0x8bef: "\x95\a\u8bef", // 误
+ 0x8bf0: "\x95\a\u8bf0", // 诰
+ 0x8bf1: "\x95\a\u8bf1", // 诱
+ 0x8bf2: "\x95\a\u8bf2", // 诲
+ 0x8bf3: "\x95\a\u8bf3", // 诳
+ 0x8bf4: "\x95\a\u8bf4", // 说
+ 0x8bf5: "\x95\a\u8bf5", // 诵
+ 0x8bf6: "\x95\a\u8bf6", // 诶
+ 0x8bf7: "\x95\b\u8bf7", // 请
+ 0x8bf8: "\x95\b\u8bf8", // 诸
+ 0x8bf9: "\x95\b\u8bf9", // 诹
+ 0x8bfa: "\x95\b\u8bfa", // 诺
+ 0x8bfb: "\x95\b\u8bfb", // 读
+ 0x8bfc: "\x95\b\u8bfc", // 诼
+ 0x8bfd: "\x95\b\u8bfd", // 诽
+ 0x8bfe: "\x95\b\u8bfe", // 课
+ 0x8bff: "\x95\b\u8bff", // 诿
+ 0x8c00: "\x95\b\u8c00", // 谀
+ 0x8c01: "\x95\b\u8c01", // 谁
+ 0x8c02: "\x95\b\u8c02", // 谂
+ 0x8c03: "\x95\b\u8c03", // 调
+ 0x8c04: "\x95\b\u8c04", // 谄
+ 0x8c05: "\x95\b\u8c05", // 谅
+ 0x8c06: "\x95\b\u8c06", // 谆
+ 0x8c07: "\x95\b\u8c07", // 谇
+ 0x8c08: "\x95\b\u8c08", // 谈
+ 0x8c09: "\x95\b\u8c09", // 谉
+ 0x8c0a: "\x95\b\u8c0a", // 谊
+ 0x8c0b: "\x95\t\u8c0b", // 谋
+ 0x8c0c: "\x95\t\u8c0c", // 谌
+ 0x8c0d: "\x95\t\u8c0d", // 谍
+ 0x8c0e: "\x95\t\u8c0e", // 谎
+ 0x8c0f: "\x95\t\u8c0f", // 谏
+ 0x8c10: "\x95\t\u8c10", // 谐
+ 0x8c11: "\x95\t\u8c11", // 谑
+ 0x8c12: "\x95\t\u8c12", // 谒
+ 0x8c13: "\x95\t\u8c13", // 谓
+ 0x8c14: "\x95\t\u8c14", // 谔
+ 0x8c15: "\x95\t\u8c15", // 谕
+ 0x8c16: "\x95\t\u8c16", // 谖
+ 0x8c17: "\x95\t\u8c17", // 谗
+ 0x8c18: "\x95\t\u8c18", // 谘
+ 0x8c19: "\x95\t\u8c19", // 谙
+ 0x8c1a: "\x95\t\u8c1a", // 谚
+ 0x8c1b: "\x95\t\u8c1b", // 谛
+ 0x8c1c: "\x95\t\u8c1c", // 谜
+ 0x8c1d: "\x95\t\u8c1d", // 谝
+ 0x8c1e: "\x95\t\u8c1e", // 谞
+ 0x8c1f: "\x95\n\u8c1f", // 谟
+ 0x8c20: "\x95\n\u8c20", // 谠
+ 0x8c21: "\x95\n\u8c21", // 谡
+ 0x8c22: "\x95\n\u8c22", // 谢
+ 0x8c23: "\x95\n\u8c23", // 谣
+ 0x8c24: "\x95\n\u8c24", // 谤
+ 0x8c25: "\x95\n\u8c25", // 谥
+ 0x8c26: "\x95\n\u8c26", // 谦
+ 0x8c27: "\x95\n\u8c27", // 谧
+ 0x8c28: "\x95\v\u8c28", // 谨
+ 0x8c29: "\x95\v\u8c29", // 谩
+ 0x8c2a: "\x95\v\u8c2a", // 谪
+ 0x8c2b: "\x95\v\u8c2b", // 谫
+ 0x8c2c: "\x95\v\u8c2c", // 谬
+ 0x8c2d: "\x95\f\u8c2d", // 谭
+ 0x8c2e: "\x95\f\u8c2e", // 谮
+ 0x8c2f: "\x95\f\u8c2f", // 谯
+ 0x8c30: "\x95\f\u8c30", // 谰
+ 0x8c31: "\x95\f\u8c31", // 谱
+ 0x8c32: "\x95\f\u8c32", // 谲
+ 0x8c33: "\x95\r\u8c33", // 谳
+ 0x8c34: "\x95\r\u8c34", // 谴
+ 0x8c35: "\x95\r\u8c35", // 谵
+ 0x8c36: "\x95\x11\u8c36", // 谶
+ 0x8c37: "\x96\x00\u8c37", // 谷
+ 0x8c38: "\x96\x03\u8c38", // 谸
+ 0x8c39: "\x96\x04\u8c39", // 谹
+ 0x8c3a: "\x96\x04\u8c3a", // 谺
+ 0x8c3b: "\x96\x04\u8c3b", // 谻
+ 0x8c3c: "\x96\x06\u8c3c", // 谼
+ 0x8c3d: "\x96\a\u8c3d", // 谽
+ 0x8c3e: "\x96\b\u8c3e", // 谾
+ 0x8c3f: "\x96\n\u8c3f", // 谿
+ 0x8c40: "\x96\n\u8c40", // 豀
+ 0x8c41: "\x96\n\u8c41", // 豁
+ 0x8c42: "\x96\v\u8c42", // 豂
+ 0x8c43: "\x96\f\u8c43", // 豃
+ 0x8c44: "\x96\x0f\u8c44", // 豄
+ 0x8c45: "\x96\x10\u8c45", // 豅
+ 0x8c46: "\x97\x00\u8c46", // 豆
+ 0x8c47: "\x97\x03\u8c47", // 豇
+ 0x8c48: "\x97\x03\u8c48", // 豈
+ 0x8c49: "\x97\x04\u8c49", // 豉
+ 0x8c4a: "\x97\x06\u8c4a", // 豊
+ 0x8c4b: "\x97\x06\u8c4b", // 豋
+ 0x8c4c: "\x97\b\u8c4c", // 豌
+ 0x8c4d: "\x97\b\u8c4d", // 豍
+ 0x8c4e: "\x97\b\u8c4e", // 豎
+ 0x8c4f: "\x97\n\u8c4f", // 豏
+ 0x8c50: "\x97\v\u8c50", // 豐
+ 0x8c51: "\x97\r\u8c51", // 豑
+ 0x8c52: "\x97\x12\u8c52", // 豒
+ 0x8c53: "\x97\x14\u8c53", // 豓
+ 0x8c54: "\x97\x15\u8c54", // 豔
+ 0x8c55: "\x98\x00\u8c55", // 豕
+ 0x8c56: "\x98\x01\u8c56", // 豖
+ 0x8c57: "\x98\x03\u8c57", // 豗
+ 0x8c58: "\x98\x04\u8c58", // 豘
+ 0x8c59: "\x98\x04\u8c59", // 豙
+ 0x8c5a: "\x98\x04\u8c5a", // 豚
+ 0x8c5b: "\x98\x04\u8c5b", // 豛
+ 0x8c5c: "\x98\x04\u8c5c", // 豜
+ 0x8c5d: "\x98\x04\u8c5d", // 豝
+ 0x8c5e: "\x98\x05\u8c5e", // 豞
+ 0x8c5f: "\x98\x05\u8c5f", // 豟
+ 0x8c60: "\x98\x05\u8c60", // 豠
+ 0x8c61: "\x98\x05\u8c61", // 象
+ 0x8c62: "\x98\x06\u8c62", // 豢
+ 0x8c63: "\x98\x06\u8c63", // 豣
+ 0x8c64: "\x98\x06\u8c64", // 豤
+ 0x8c65: "\x98\x06\u8c65", // 豥
+ 0x8c66: "\x98\x06\u8c66", // 豦
+ 0x8c67: "\x98\a\u8c67", // 豧
+ 0x8c68: "\x98\a\u8c68", // 豨
+ 0x8c69: "\x98\a\u8c69", // 豩
+ 0x8c6a: "\x98\a\u8c6a", // 豪
+ 0x8c6b: "\x98\t\u8c6b", // 豫
+ 0x8c6c: "\x98\t\u8c6c", // 豬
+ 0x8c6d: "\x98\t\u8c6d", // 豭
+ 0x8c6e: "\x98\t\u8c6e", // 豮
+ 0x8c6f: "\x98\n\u8c6f", // 豯
+ 0x8c70: "\x98\n\u8c70", // 豰
+ 0x8c71: "\x98\n\u8c71", // 豱
+ 0x8c72: "\x98\n\u8c72", // 豲
+ 0x8c73: "\x98\n\u8c73", // 豳
+ 0x8c74: "\x98\v\u8c74", // 豴
+ 0x8c75: "\x98\v\u8c75", // 豵
+ 0x8c76: "\x98\r\u8c76", // 豶
+ 0x8c77: "\x98\f\u8c77", // 豷
+ 0x8c78: "\x99\x00\u8c78", // 豸
+ 0x8c79: "\x99\x03\u8c79", // 豹
+ 0x8c7a: "\x99\x03\u8c7a", // 豺
+ 0x8c7b: "\x99\x03\u8c7b", // 豻
+ 0x8c7c: "\x99\x04\u8c7c", // 豼
+ 0x8c7d: "\x99\x04\u8c7d", // 豽
+ 0x8c7e: "\x99\x05\u8c7e", // 豾
+ 0x8c7f: "\x99\x05\u8c7f", // 豿
+ 0x8c80: "\x99\x05\u8c80", // 貀
+ 0x8c81: "\x99\x05\u8c81", // 貁
+ 0x8c82: "\x99\x05\u8c82", // 貂
+ 0x8c83: "\x99\x05\u8c83", // 貃
+ 0x8c84: "\x99\x06\u8c84", // 貄
+ 0x8c85: "\x99\x06\u8c85", // 貅
+ 0x8c86: "\x99\x06\u8c86", // 貆
+ 0x8c87: "\x99\x06\u8c87", // 貇
+ 0x8c88: "\x99\x06\u8c88", // 貈
+ 0x8c89: "\x99\x06\u8c89", // 貉
+ 0x8c8a: "\x99\x06\u8c8a", // 貊
+ 0x8c8b: "\x99\a\u8c8b", // 貋
+ 0x8c8c: "\x99\a\u8c8c", // 貌
+ 0x8c8d: "\x99\a\u8c8d", // 貍
+ 0x8c8e: "\x99\b\u8c8e", // 貎
+ 0x8c8f: "\x99\b\u8c8f", // 貏
+ 0x8c90: "\x99\t\u8c90", // 貐
+ 0x8c91: "\x99\t\u8c91", // 貑
+ 0x8c92: "\x99\t\u8c92", // 貒
+ 0x8c93: "\x99\t\u8c93", // 貓
+ 0x8c94: "\x99\n\u8c94", // 貔
+ 0x8c95: "\x99\n\u8c95", // 貕
+ 0x8c96: "\x99\n\u8c96", // 貖
+ 0x8c97: "\x99\v\u8c97", // 貗
+ 0x8c98: "\x99\v\u8c98", // 貘
+ 0x8c99: "\x99\v\u8c99", // 貙
+ 0x8c9a: "\x99\f\u8c9a", // 貚
+ 0x8c9b: "\x99\x12\u8c9b", // 貛
+ 0x8c9c: "\x99\x14\u8c9c", // 貜
+ 0x8c9d: "\x9a\x00\u8c9d", // 貝
+ 0x8c9e: "\x9a\x02\u8c9e", // 貞
+ 0x8c9f: "\x9a\x02\u8c9f", // 貟
+ 0x8ca0: "\x9a\x02\u8ca0", // 負
+ 0x8ca1: "\x9a\x03\u8ca1", // 財
+ 0x8ca2: "\x9a\x03\u8ca2", // 貢
+ 0x8ca3: "\x9a\x03\u8ca3", // 貣
+ 0x8ca4: "\x9a\x03\u8ca4", // 貤
+ 0x8ca5: "\x9a\x04\u8ca5", // 貥
+ 0x8ca6: "\x9a\x04\u8ca6", // 貦
+ 0x8ca7: "\x9a\x04\u8ca7", // 貧
+ 0x8ca8: "\x9a\x04\u8ca8", // 貨
+ 0x8ca9: "\x9a\x04\u8ca9", // 販
+ 0x8caa: "\x9a\x04\u8caa", // 貪
+ 0x8cab: "\x9a\x04\u8cab", // 貫
+ 0x8cac: "\x9a\x04\u8cac", // 責
+ 0x8cad: "\x9a\x04\u8cad", // 貭
+ 0x8cae: "\x9a\x04\u8cae", // 貮
+ 0x8caf: "\x9a\x05\u8caf", // 貯
+ 0x8cb0: "\x9a\x05\u8cb0", // 貰
+ 0x8cb1: "\x9a\x05\u8cb1", // 貱
+ 0x8cb2: "\x9a\x05\u8cb2", // 貲
+ 0x8cb3: "\x9a\x05\u8cb3", // 貳
+ 0x8cb4: "\x9a\x05\u8cb4", // 貴
+ 0x8cb5: "\x9a\x05\u8cb5", // 貵
+ 0x8cb6: "\x9a\x05\u8cb6", // 貶
+ 0x8cb7: "\x9a\x05\u8cb7", // 買
+ 0x8cb8: "\x9a\x05\u8cb8", // 貸
+ 0x8cb9: "\x9a\x05\u8cb9", // 貹
+ 0x8cba: "\x9a\x05\u8cba", // 貺
+ 0x8cbb: "\x9a\x05\u8cbb", // 費
+ 0x8cbc: "\x9a\x05\u8cbc", // 貼
+ 0x8cbd: "\x9a\x05\u8cbd", // 貽
+ 0x8cbe: "\x9a\x05\u8cbe", // 貾
+ 0x8cbf: "\x9a\x05\u8cbf", // 貿
+ 0x8cc0: "\x9a\x05\u8cc0", // 賀
+ 0x8cc1: "\x9a\x05\u8cc1", // 賁
+ 0x8cc2: "\x9a\x06\u8cc2", // 賂
+ 0x8cc3: "\x9a\x06\u8cc3", // 賃
+ 0x8cc4: "\x9a\x06\u8cc4", // 賄
+ 0x8cc5: "\x9a\x06\u8cc5", // 賅
+ 0x8cc6: "\x9a\x06\u8cc6", // 賆
+ 0x8cc7: "\x9a\x06\u8cc7", // 資
+ 0x8cc8: "\x9a\x06\u8cc8", // 賈
+ 0x8cc9: "\x9a\x06\u8cc9", // 賉
+ 0x8cca: "\x9a\x06\u8cca", // 賊
+ 0x8ccb: "\x9a\x06\u8ccb", // 賋
+ 0x8ccc: "\x9a\x06\u8ccc", // 賌
+ 0x8ccd: "\x9a\x06\u8ccd", // 賍
+ 0x8cce: "\x9a\x06\u8cce", // 賎
+ 0x8ccf: "\x9a\a\u8ccf", // 賏
+ 0x8cd0: "\x9a\a\u8cd0", // 賐
+ 0x8cd1: "\x9a\a\u8cd1", // 賑
+ 0x8cd2: "\x9a\a\u8cd2", // 賒
+ 0x8cd3: "\x9a\a\u8cd3", // 賓
+ 0x8cd4: "\x9a\a\u8cd4", // 賔
+ 0x8cd5: "\x9a\a\u8cd5", // 賕
+ 0x8cd6: "\x9a\a\u8cd6", // 賖
+ 0x8cd7: "\x9a\a\u8cd7", // 賗
+ 0x8cd8: "\x9a\a\u8cd8", // 賘
+ 0x8cd9: "\x9a\b\u8cd9", // 賙
+ 0x8cda: "\x9a\b\u8cda", // 賚
+ 0x8cdb: "\x9a\b\u8cdb", // 賛
+ 0x8cdc: "\x9a\b\u8cdc", // 賜
+ 0x8cdd: "\x9a\b\u8cdd", // 賝
+ 0x8cde: "\x9a\b\u8cde", // 賞
+ 0x8cdf: "\x9a\b\u8cdf", // 賟
+ 0x8ce0: "\x9a\b\u8ce0", // 賠
+ 0x8ce1: "\x9a\b\u8ce1", // 賡
+ 0x8ce2: "\x9a\b\u8ce2", // 賢
+ 0x8ce3: "\x9a\b\u8ce3", // 賣
+ 0x8ce4: "\x9a\b\u8ce4", // 賤
+ 0x8ce5: "\x9a\b\u8ce5", // 賥
+ 0x8ce6: "\x9a\b\u8ce6", // 賦
+ 0x8ce7: "\x9a\b\u8ce7", // 賧
+ 0x8ce8: "\x9a\b\u8ce8", // 賨
+ 0x8ce9: "\x9a\b\u8ce9", // 賩
+ 0x8cea: "\x9a\b\u8cea", // 質
+ 0x8ceb: "\x9a\b\u8ceb", // 賫
+ 0x8cec: "\x9a\b\u8cec", // 賬
+ 0x8ced: "\x9a\t\u8ced", // 賭
+ 0x8cee: "\x9a\t\u8cee", // 賮
+ 0x8cef: "\x9a\t\u8cef", // 賯
+ 0x8cf0: "\x9a\t\u8cf0", // 賰
+ 0x8cf1: "\x9a\t\u8cf1", // 賱
+ 0x8cf2: "\x9a\t\u8cf2", // 賲
+ 0x8cf3: "\x9a\t\u8cf3", // 賳
+ 0x8cf4: "\x9a\t\u8cf4", // 賴
+ 0x8cf5: "\x9a\t\u8cf5", // 賵
+ 0x8cf6: "\x9a\n\u8cf6", // 賶
+ 0x8cf7: "\x9a\n\u8cf7", // 賷
+ 0x8cf8: "\x9a\n\u8cf8", // 賸
+ 0x8cf9: "\x9a\n\u8cf9", // 賹
+ 0x8cfa: "\x9a\n\u8cfa", // 賺
+ 0x8cfb: "\x9a\n\u8cfb", // 賻
+ 0x8cfc: "\x9a\n\u8cfc", // 購
+ 0x8cfd: "\x9a\n\u8cfd", // 賽
+ 0x8cfe: "\x9a\v\u8cfe", // 賾
+ 0x8cff: "\x9a\v\u8cff", // 賿
+ 0x8d00: "\x9a\v\u8d00", // 贀
+ 0x8d01: "B\x0e\u8d01", // 贁
+ 0x8d02: "\x9a\v\u8d02", // 贂
+ 0x8d03: "\x9a\v\u8d03", // 贃
+ 0x8d04: "\x9a\v\u8d04", // 贄
+ 0x8d05: "\x9a\v\u8d05", // 贅
+ 0x8d06: "\x9a\f\u8d06", // 贆
+ 0x8d07: "\x9a\f\u8d07", // 贇
+ 0x8d08: "\x9a\f\u8d08", // 贈
+ 0x8d09: "\x9a\f\u8d09", // 贉
+ 0x8d0a: "\x9a\f\u8d0a", // 贊
+ 0x8d0b: "\x9a\f\u8d0b", // 贋
+ 0x8d0c: "\x9a\f\u8d0c", // 贌
+ 0x8d0d: "\x9a\r\u8d0d", // 贍
+ 0x8d0e: "\x9a\r\u8d0e", // 贎
+ 0x8d0f: "\x9a\r\u8d0f", // 贏
+ 0x8d10: "\x9a\x0e\u8d10", // 贐
+ 0x8d11: "\x9a\x0e\u8d11", // 贑
+ 0x8d12: "\x9a\x0e\u8d12", // 贒
+ 0x8d13: "\x9a\x0e\u8d13", // 贓
+ 0x8d14: "\x9a\x0e\u8d14", // 贔
+ 0x8d15: "\x9a\x0f\u8d15", // 贕
+ 0x8d16: "\x9a\x0f\u8d16", // 贖
+ 0x8d17: "\x9a\x0f\u8d17", // 贗
+ 0x8d18: "\x9a\x0f\u8d18", // 贘
+ 0x8d19: "\x9a\x10\u8d19", // 贙
+ 0x8d1a: "\x9a\x10\u8d1a", // 贚
+ 0x8d1b: "\x9a\x11\u8d1b", // 贛
+ 0x8d1c: "\x9a\x12\u8d1c", // 贜
+ 0x8d1d: "\x9a\x00\u8d1d", // 贝
+ 0x8d1e: "\x9a\x02\u8d1e", // 贞
+ 0x8d1f: "\x9a\x02\u8d1f", // 负
+ 0x8d20: "\x9a\x02\u8d20", // 贠
+ 0x8d21: "\x9a\x03\u8d21", // 贡
+ 0x8d22: "\x9a\x03\u8d22", // 财
+ 0x8d23: "\x9a\x04\u8d23", // 责
+ 0x8d24: "\x9a\x04\u8d24", // 贤
+ 0x8d25: "\x9a\x04\u8d25", // 败
+ 0x8d26: "\x9a\x04\u8d26", // 账
+ 0x8d27: "\x9a\x04\u8d27", // 货
+ 0x8d28: "\x9a\x04\u8d28", // 质
+ 0x8d29: "\x9a\x04\u8d29", // 贩
+ 0x8d2a: "\x9a\x04\u8d2a", // 贪
+ 0x8d2b: "\x9a\x04\u8d2b", // 贫
+ 0x8d2c: "\x9a\x04\u8d2c", // 贬
+ 0x8d2d: "\x9a\x04\u8d2d", // 购
+ 0x8d2e: "\x9a\x04\u8d2e", // 贮
+ 0x8d2f: "\x9a\x04\u8d2f", // 贯
+ 0x8d30: "\x9a\x05\u8d30", // 贰
+ 0x8d31: "\x9a\x05\u8d31", // 贱
+ 0x8d32: "\x9a\x05\u8d32", // 贲
+ 0x8d33: "\x9a\x05\u8d33", // 贳
+ 0x8d34: "\x9a\x05\u8d34", // 贴
+ 0x8d35: "\x9a\x05\u8d35", // 贵
+ 0x8d36: "\x9a\x05\u8d36", // 贶
+ 0x8d37: "\x9a\x05\u8d37", // 贷
+ 0x8d38: "\x9a\x05\u8d38", // 贸
+ 0x8d39: "\x9a\x05\u8d39", // 费
+ 0x8d3a: "\x9a\x05\u8d3a", // 贺
+ 0x8d3b: "\x9a\x05\u8d3b", // 贻
+ 0x8d3c: "\x9a\x06\u8d3c", // 贼
+ 0x8d3d: "\x9a\x06\u8d3d", // 贽
+ 0x8d3e: "\x9a\x06\u8d3e", // 贾
+ 0x8d3f: "\x9a\x06\u8d3f", // 贿
+ 0x8d40: "\x9a\x06\u8d40", // 赀
+ 0x8d41: "\x9a\x06\u8d41", // 赁
+ 0x8d42: "\x9a\x06\u8d42", // 赂
+ 0x8d43: "\x9a\x06\u8d43", // 赃
+ 0x8d44: "\x9a\x06\u8d44", // 资
+ 0x8d45: "\x9a\x06\u8d45", // 赅
+ 0x8d46: "\x9a\x06\u8d46", // 赆
+ 0x8d47: "\x9a\a\u8d47", // 赇
+ 0x8d48: "\x9a\a\u8d48", // 赈
+ 0x8d49: "\x9a\a\u8d49", // 赉
+ 0x8d4a: "\x9a\a\u8d4a", // 赊
+ 0x8d4b: "\x9a\b\u8d4b", // 赋
+ 0x8d4c: "\x9a\b\u8d4c", // 赌
+ 0x8d4d: "\x9a\b\u8d4d", // 赍
+ 0x8d4e: "\x9a\b\u8d4e", // 赎
+ 0x8d4f: "\x9a\b\u8d4f", // 赏
+ 0x8d50: "\x9a\b\u8d50", // 赐
+ 0x8d51: "\x9a\b\u8d51", // 赑
+ 0x8d52: "\x9a\b\u8d52", // 赒
+ 0x8d53: "\x9a\b\u8d53", // 赓
+ 0x8d54: "\x9a\b\u8d54", // 赔
+ 0x8d55: "\x9a\b\u8d55", // 赕
+ 0x8d56: "\x9a\t\u8d56", // 赖
+ 0x8d57: "\x9a\t\u8d57", // 赗
+ 0x8d58: "\x9a\n\u8d58", // 赘
+ 0x8d59: "\x9a\n\u8d59", // 赙
+ 0x8d5a: "\x9a\n\u8d5a", // 赚
+ 0x8d5b: "\x9a\n\u8d5b", // 赛
+ 0x8d5c: "\x9a\v\u8d5c", // 赜
+ 0x8d5d: "\x9a\f\u8d5d", // 赝
+ 0x8d5e: "\x9a\f\u8d5e", // 赞
+ 0x8d5f: "\x9a\f\u8d5f", // 赟
+ 0x8d60: "\x9a\f\u8d60", // 赠
+ 0x8d61: "\x9a\r\u8d61", // 赡
+ 0x8d62: "\x9a\r\u8d62", // 赢
+ 0x8d63: "\x9a\x11\u8d63", // 赣
+ 0x8d64: "\x9b\x00\u8d64", // 赤
+ 0x8d65: "\x9b\x04\u8d65", // 赥
+ 0x8d66: "\x9b\x04\u8d66", // 赦
+ 0x8d67: "\x9b\x04\u8d67", // 赧
+ 0x8d68: "\x9b\x06\u8d68", // 赨
+ 0x8d69: "\x9b\x06\u8d69", // 赩
+ 0x8d6a: "\x9b\x06\u8d6a", // 赪
+ 0x8d6b: "\x9b\a\u8d6b", // 赫
+ 0x8d6c: "\x9b\t\u8d6c", // 赬
+ 0x8d6d: "\x9b\t\u8d6d", // 赭
+ 0x8d6e: "\x9b\t\u8d6e", // 赮
+ 0x8d6f: "\x9b\n\u8d6f", // 赯
+ 0x8d70: "\x9c\x00\u8d70", // 走
+ 0x8d71: "\x9c\x00\u8d71", // 赱
+ 0x8d72: "\x9c\x02\u8d72", // 赲
+ 0x8d73: "\x9c\x02\u8d73", // 赳
+ 0x8d74: "\x9c\x02\u8d74", // 赴
+ 0x8d75: "\x9c\x02\u8d75", // 赵
+ 0x8d76: "\x9c\x03\u8d76", // 赶
+ 0x8d77: "\x9c\x03\u8d77", // 起
+ 0x8d78: "\x9c\x03\u8d78", // 赸
+ 0x8d79: "\x9c\x04\u8d79", // 赹
+ 0x8d7a: "\x9c\x04\u8d7a", // 赺
+ 0x8d7b: "\x9c\x04\u8d7b", // 赻
+ 0x8d7c: "\x9c\x04\u8d7c", // 赼
+ 0x8d7d: "\x9c\x04\u8d7d", // 赽
+ 0x8d7e: "\x9c\x04\u8d7e", // 赾
+ 0x8d7f: "\x9c\x04\u8d7f", // 赿
+ 0x8d80: "\x9c\x05\u8d80", // 趀
+ 0x8d81: "\x9c\x05\u8d81", // 趁
+ 0x8d82: "\x9c\x05\u8d82", // 趂
+ 0x8d83: "\x9c\x05\u8d83", // 趃
+ 0x8d84: "\x9c\x05\u8d84", // 趄
+ 0x8d85: "\x9c\x05\u8d85", // 超
+ 0x8d86: "\x9c\x05\u8d86", // 趆
+ 0x8d87: "\x9c\x05\u8d87", // 趇
+ 0x8d88: "\x9c\x05\u8d88", // 趈
+ 0x8d89: "\x9c\x05\u8d89", // 趉
+ 0x8d8a: "\x9c\x05\u8d8a", // 越
+ 0x8d8b: "\x9c\x05\u8d8b", // 趋
+ 0x8d8c: "\x9c\x06\u8d8c", // 趌
+ 0x8d8d: "\x9c\x06\u8d8d", // 趍
+ 0x8d8e: "\x9c\x06\u8d8e", // 趎
+ 0x8d8f: "\x9c\x06\u8d8f", // 趏
+ 0x8d90: "\x9c\x06\u8d90", // 趐
+ 0x8d91: "\x9c\x06\u8d91", // 趑
+ 0x8d92: "\x9c\x06\u8d92", // 趒
+ 0x8d93: "\x9c\x06\u8d93", // 趓
+ 0x8d94: "\x9c\x06\u8d94", // 趔
+ 0x8d95: "\x9c\a\u8d95", // 趕
+ 0x8d96: "\x9c\a\u8d96", // 趖
+ 0x8d97: "\x9c\a\u8d97", // 趗
+ 0x8d98: "\x9c\a\u8d98", // 趘
+ 0x8d99: "\x9c\a\u8d99", // 趙
+ 0x8d9a: "\x9c\a\u8d9a", // 趚
+ 0x8d9b: "\x9c\b\u8d9b", // 趛
+ 0x8d9c: "\x9c\b\u8d9c", // 趜
+ 0x8d9d: "\x9c\b\u8d9d", // 趝
+ 0x8d9e: "\x9c\b\u8d9e", // 趞
+ 0x8d9f: "\x9c\b\u8d9f", // 趟
+ 0x8da0: "\x9c\b\u8da0", // 趠
+ 0x8da1: "\x9c\b\u8da1", // 趡
+ 0x8da2: "\x9c\b\u8da2", // 趢
+ 0x8da3: "\x9c\b\u8da3", // 趣
+ 0x8da4: "\x9c\b\u8da4", // 趤
+ 0x8da5: "\x9c\t\u8da5", // 趥
+ 0x8da6: "\x9c\t\u8da6", // 趦
+ 0x8da7: "\x9c\t\u8da7", // 趧
+ 0x8da8: "\x9c\n\u8da8", // 趨
+ 0x8da9: "\x9c\f\u8da9", // 趩
+ 0x8daa: "\x9c\f\u8daa", // 趪
+ 0x8dab: "\x9c\f\u8dab", // 趫
+ 0x8dac: "\x9c\f\u8dac", // 趬
+ 0x8dad: "\x9c\f\u8dad", // 趭
+ 0x8dae: "\x9c\r\u8dae", // 趮
+ 0x8daf: "\x9c\x0e\u8daf", // 趯
+ 0x8db0: "\x9c\x0e\u8db0", // 趰
+ 0x8db1: "\x9c\x10\u8db1", // 趱
+ 0x8db2: "\x9c\x13\u8db2", // 趲
+ 0x8db3: "\x9d\x00\u8db3", // 足
+ 0x8db4: "\x9d\x02\u8db4", // 趴
+ 0x8db5: "\x9d\x03\u8db5", // 趵
+ 0x8db6: "\x9d\x03\u8db6", // 趶
+ 0x8db7: "\x9d\x03\u8db7", // 趷
+ 0x8db8: "\x9d\x03\u8db8", // 趸
+ 0x8db9: "\x9d\x04\u8db9", // 趹
+ 0x8dba: "\x9d\x04\u8dba", // 趺
+ 0x8dbb: "\x9d\x04\u8dbb", // 趻
+ 0x8dbc: "\x9d\x06\u8dbc", // 趼
+ 0x8dbd: "\x9d\x04\u8dbd", // 趽
+ 0x8dbe: "\x9d\x04\u8dbe", // 趾
+ 0x8dbf: "\x9d\x04\u8dbf", // 趿
+ 0x8dc0: "\x9d\x04\u8dc0", // 跀
+ 0x8dc1: "\x9d\x04\u8dc1", // 跁
+ 0x8dc2: "\x9d\x04\u8dc2", // 跂
+ 0x8dc3: "\x9d\x04\u8dc3", // 跃
+ 0x8dc4: "\x9d\x04\u8dc4", // 跄
+ 0x8dc5: "\x9d\x05\u8dc5", // 跅
+ 0x8dc6: "\x9d\x05\u8dc6", // 跆
+ 0x8dc7: "\x9d\x05\u8dc7", // 跇
+ 0x8dc8: "\x9d\x05\u8dc8", // 跈
+ 0x8dc9: "\x9d\x05\u8dc9", // 跉
+ 0x8dca: "\x9d\x05\u8dca", // 跊
+ 0x8dcb: "\x9d\x05\u8dcb", // 跋
+ 0x8dcc: "\x9d\x05\u8dcc", // 跌
+ 0x8dcd: "\x9d\x05\u8dcd", // 跍
+ 0x8dce: "\x9d\x05\u8dce", // 跎
+ 0x8dcf: "\x9d\x05\u8dcf", // 跏
+ 0x8dd0: "\x9d\x05\u8dd0", // 跐
+ 0x8dd1: "\x9d\x05\u8dd1", // 跑
+ 0x8dd2: "\x9d\x05\u8dd2", // 跒
+ 0x8dd3: "\x9d\x05\u8dd3", // 跓
+ 0x8dd4: "\x9d\x05\u8dd4", // 跔
+ 0x8dd5: "\x9d\x05\u8dd5", // 跕
+ 0x8dd6: "\x9d\x05\u8dd6", // 跖
+ 0x8dd7: "\x9d\x05\u8dd7", // 跗
+ 0x8dd8: "\x9d\x05\u8dd8", // 跘
+ 0x8dd9: "\x9d\x05\u8dd9", // 跙
+ 0x8dda: "\x9d\x05\u8dda", // 跚
+ 0x8ddb: "\x9d\x05\u8ddb", // 跛
+ 0x8ddc: "\x9d\x05\u8ddc", // 跜
+ 0x8ddd: "\x9d\x05\u8ddd", // 距
+ 0x8dde: "\x9d\x05\u8dde", // 跞
+ 0x8ddf: "\x9d\x06\u8ddf", // 跟
+ 0x8de0: "\x9d\x06\u8de0", // 跠
+ 0x8de1: "\x9d\x06\u8de1", // 跡
+ 0x8de2: "\x9d\x06\u8de2", // 跢
+ 0x8de3: "\x9d\x06\u8de3", // 跣
+ 0x8de4: "\x9d\x06\u8de4", // 跤
+ 0x8de5: "\x9d\x06\u8de5", // 跥
+ 0x8de6: "\x9d\x06\u8de6", // 跦
+ 0x8de7: "\x9d\x06\u8de7", // 跧
+ 0x8de8: "\x9d\x06\u8de8", // 跨
+ 0x8de9: "\x9d\x06\u8de9", // 跩
+ 0x8dea: "\x9d\x06\u8dea", // 跪
+ 0x8deb: "\x9d\x06\u8deb", // 跫
+ 0x8dec: "\x9d\x06\u8dec", // 跬
+ 0x8ded: "\x9d\x06\u8ded", // 跭
+ 0x8dee: "\x9d\x06\u8dee", // 跮
+ 0x8def: "\x9d\x06\u8def", // 路
+ 0x8df0: "\x9d\x06\u8df0", // 跰
+ 0x8df1: "\x9d\x06\u8df1", // 跱
+ 0x8df2: "\x9d\x06\u8df2", // 跲
+ 0x8df3: "\x9d\x06\u8df3", // 跳
+ 0x8df4: "\x9d\x06\u8df4", // 跴
+ 0x8df5: "\x9d\x05\u8df5", // 践
+ 0x8df6: "\x9d\x06\u8df6", // 跶
+ 0x8df7: "\x9d\x06\u8df7", // 跷
+ 0x8df8: "\x9d\x06\u8df8", // 跸
+ 0x8df9: "\x9d\x06\u8df9", // 跹
+ 0x8dfa: "\x9d\x06\u8dfa", // 跺
+ 0x8dfb: "\x9d\x06\u8dfb", // 跻
+ 0x8dfc: "\x9d\a\u8dfc", // 跼
+ 0x8dfd: "\x9d\a\u8dfd", // 跽
+ 0x8dfe: "\x9d\a\u8dfe", // 跾
+ 0x8dff: "\x9d\a\u8dff", // 跿
+ 0x8e00: "\x9d\a\u8e00", // 踀
+ 0x8e01: "\x9d\a\u8e01", // 踁
+ 0x8e02: "\x9d\a\u8e02", // 踂
+ 0x8e03: "\x9d\a\u8e03", // 踃
+ 0x8e04: "\x9d\a\u8e04", // 踄
+ 0x8e05: "\x9d\a\u8e05", // 踅
+ 0x8e06: "\x9d\a\u8e06", // 踆
+ 0x8e07: "\x9d\a\u8e07", // 踇
+ 0x8e08: "\x9d\a\u8e08", // 踈
+ 0x8e09: "\x9d\a\u8e09", // 踉
+ 0x8e0a: "\x9d\a\u8e0a", // 踊
+ 0x8e0b: "\x9d\a\u8e0b", // 踋
+ 0x8e0c: "\x9d\a\u8e0c", // 踌
+ 0x8e0d: "\x9d\a\u8e0d", // 踍
+ 0x8e0e: "\x9d\a\u8e0e", // 踎
+ 0x8e0f: "\x9d\b\u8e0f", // 踏
+ 0x8e10: "\x9d\b\u8e10", // 踐
+ 0x8e11: "\x9d\b\u8e11", // 踑
+ 0x8e12: "\x9d\b\u8e12", // 踒
+ 0x8e13: "\x9d\b\u8e13", // 踓
+ 0x8e14: "\x9d\b\u8e14", // 踔
+ 0x8e15: "\x9d\b\u8e15", // 踕
+ 0x8e16: "\x9d\b\u8e16", // 踖
+ 0x8e17: "\x9d\b\u8e17", // 踗
+ 0x8e18: "\x9d\b\u8e18", // 踘
+ 0x8e19: "\x9d\b\u8e19", // 踙
+ 0x8e1a: "\x9d\b\u8e1a", // 踚
+ 0x8e1b: "\x9d\b\u8e1b", // 踛
+ 0x8e1c: "\x9d\b\u8e1c", // 踜
+ 0x8e1d: "\x9d\b\u8e1d", // 踝
+ 0x8e1e: "\x9d\b\u8e1e", // 踞
+ 0x8e1f: "\x9d\b\u8e1f", // 踟
+ 0x8e20: "\x9d\b\u8e20", // 踠
+ 0x8e21: "\x9d\b\u8e21", // 踡
+ 0x8e22: "\x9d\b\u8e22", // 踢
+ 0x8e23: "\x9d\b\u8e23", // 踣
+ 0x8e24: "\x9d\b\u8e24", // 踤
+ 0x8e25: "\x9d\b\u8e25", // 踥
+ 0x8e26: "\x9d\b\u8e26", // 踦
+ 0x8e27: "\x9d\b\u8e27", // 踧
+ 0x8e28: "\x9d\b\u8e28", // 踨
+ 0x8e29: "\x9d\b\u8e29", // 踩
+ 0x8e2a: "\x9d\b\u8e2a", // 踪
+ 0x8e2b: "\x9d\t\u8e2b", // 踫
+ 0x8e2c: "\x9d\b\u8e2c", // 踬
+ 0x8e2d: "\x9d\b\u8e2d", // 踭
+ 0x8e2e: "\x9d\b\u8e2e", // 踮
+ 0x8e2f: "\x9d\b\u8e2f", // 踯
+ 0x8e30: "\x9d\t\u8e30", // 踰
+ 0x8e31: "\x9d\t\u8e31", // 踱
+ 0x8e32: "\x9d\t\u8e32", // 踲
+ 0x8e33: "\x9d\t\u8e33", // 踳
+ 0x8e34: "\x9d\t\u8e34", // 踴
+ 0x8e35: "\x9d\t\u8e35", // 踵
+ 0x8e36: "\x9d\t\u8e36", // 踶
+ 0x8e37: "\x9d\t\u8e37", // 踷
+ 0x8e38: "\x9d\t\u8e38", // 踸
+ 0x8e39: "\x9d\t\u8e39", // 踹
+ 0x8e3a: "\x9d\b\u8e3a", // 踺
+ 0x8e3b: "\x9d\t\u8e3b", // 踻
+ 0x8e3c: "\x9d\t\u8e3c", // 踼
+ 0x8e3d: "\x9d\t\u8e3d", // 踽
+ 0x8e3e: "\x9d\t\u8e3e", // 踾
+ 0x8e3f: "\x9d\t\u8e3f", // 踿
+ 0x8e40: "\x9d\t\u8e40", // 蹀
+ 0x8e41: "\x9d\t\u8e41", // 蹁
+ 0x8e42: "\x9d\t\u8e42", // 蹂
+ 0x8e43: "\x9d\t\u8e43", // 蹃
+ 0x8e44: "\x9d\t\u8e44", // 蹄
+ 0x8e45: "\x9d\t\u8e45", // 蹅
+ 0x8e46: "\x9d\n\u8e46", // 蹆
+ 0x8e47: "\x9d\n\u8e47", // 蹇
+ 0x8e48: "\x9d\n\u8e48", // 蹈
+ 0x8e49: "\x9d\n\u8e49", // 蹉
+ 0x8e4a: "\x9d\n\u8e4a", // 蹊
+ 0x8e4b: "\x9d\n\u8e4b", // 蹋
+ 0x8e4c: "\x9d\n\u8e4c", // 蹌
+ 0x8e4d: "\x9d\n\u8e4d", // 蹍
+ 0x8e4e: "\x9d\n\u8e4e", // 蹎
+ 0x8e4f: "\x9d\n\u8e4f", // 蹏
+ 0x8e50: "\x9d\n\u8e50", // 蹐
+ 0x8e51: "\x9d\n\u8e51", // 蹑
+ 0x8e52: "\x9d\n\u8e52", // 蹒
+ 0x8e53: "\x9d\n\u8e53", // 蹓
+ 0x8e54: "\x9d\v\u8e54", // 蹔
+ 0x8e55: "\x9d\v\u8e55", // 蹕
+ 0x8e56: "\x9d\v\u8e56", // 蹖
+ 0x8e57: "\x9d\v\u8e57", // 蹗
+ 0x8e58: "\x9d\v\u8e58", // 蹘
+ 0x8e59: "\x9d\v\u8e59", // 蹙
+ 0x8e5a: "\x9d\v\u8e5a", // 蹚
+ 0x8e5b: "\x9d\v\u8e5b", // 蹛
+ 0x8e5c: "\x9d\v\u8e5c", // 蹜
+ 0x8e5d: "\x9d\v\u8e5d", // 蹝
+ 0x8e5e: "\x9d\v\u8e5e", // 蹞
+ 0x8e5f: "\x9d\v\u8e5f", // 蹟
+ 0x8e60: "\x9d\v\u8e60", // 蹠
+ 0x8e61: "\x9d\v\u8e61", // 蹡
+ 0x8e62: "\x9d\v\u8e62", // 蹢
+ 0x8e63: "\x9d\v\u8e63", // 蹣
+ 0x8e64: "\x9d\v\u8e64", // 蹤
+ 0x8e65: "\x9d\v\u8e65", // 蹥
+ 0x8e66: "\x9d\v\u8e66", // 蹦
+ 0x8e67: "\x9d\v\u8e67", // 蹧
+ 0x8e68: "\x9d\f\u8e68", // 蹨
+ 0x8e69: "\x9d\f\u8e69", // 蹩
+ 0x8e6a: "\x9d\f\u8e6a", // 蹪
+ 0x8e6b: "\x9d\f\u8e6b", // 蹫
+ 0x8e6c: "\x9d\f\u8e6c", // 蹬
+ 0x8e6d: "\x9d\f\u8e6d", // 蹭
+ 0x8e6e: "\x9d\v\u8e6e", // 蹮
+ 0x8e6f: "\x9d\f\u8e6f", // 蹯
+ 0x8e70: "\x9d\f\u8e70", // 蹰
+ 0x8e71: "\x9d\f\u8e71", // 蹱
+ 0x8e72: "\x9d\f\u8e72", // 蹲
+ 0x8e73: "\x9d\f\u8e73", // 蹳
+ 0x8e74: "\x9d\f\u8e74", // 蹴
+ 0x8e75: "\x9d\f\u8e75", // 蹵
+ 0x8e76: "\x9d\f\u8e76", // 蹶
+ 0x8e77: "\x9d\f\u8e77", // 蹷
+ 0x8e78: "\x9d\f\u8e78", // 蹸
+ 0x8e79: "\x9d\f\u8e79", // 蹹
+ 0x8e7a: "\x9d\f\u8e7a", // 蹺
+ 0x8e7b: "\x9d\f\u8e7b", // 蹻
+ 0x8e7c: "\x9d\f\u8e7c", // 蹼
+ 0x8e7d: "\x9d\f\u8e7d", // 蹽
+ 0x8e7e: "\x9d\f\u8e7e", // 蹾
+ 0x8e7f: "\x9d\f\u8e7f", // 蹿
+ 0x8e80: "\x9d\v\u8e80", // 躀
+ 0x8e81: "\x9d\r\u8e81", // 躁
+ 0x8e82: "\x9d\r\u8e82", // 躂
+ 0x8e83: "\x9d\r\u8e83", // 躃
+ 0x8e84: "\x9d\r\u8e84", // 躄
+ 0x8e85: "\x9d\r\u8e85", // 躅
+ 0x8e86: "\x9d\r\u8e86", // 躆
+ 0x8e87: "\x9d\r\u8e87", // 躇
+ 0x8e88: "\x9d\r\u8e88", // 躈
+ 0x8e89: "\x9d\r\u8e89", // 躉
+ 0x8e8a: "\x9d\x0e\u8e8a", // 躊
+ 0x8e8b: "\x9d\x0e\u8e8b", // 躋
+ 0x8e8c: "\x9d\x0e\u8e8c", // 躌
+ 0x8e8d: "\x9d\x0e\u8e8d", // 躍
+ 0x8e8e: "\x9d\x0e\u8e8e", // 躎
+ 0x8e8f: "\x9d\x0e\u8e8f", // 躏
+ 0x8e90: "\x9d\x0f\u8e90", // 躐
+ 0x8e91: "\x9d\x0f\u8e91", // 躑
+ 0x8e92: "\x9d\x0f\u8e92", // 躒
+ 0x8e93: "\x9d\x0f\u8e93", // 躓
+ 0x8e94: "\x9d\x0f\u8e94", // 躔
+ 0x8e95: "\x9d\x0f\u8e95", // 躕
+ 0x8e96: "\x9d\x0f\u8e96", // 躖
+ 0x8e97: "\x9d\x10\u8e97", // 躗
+ 0x8e98: "\x9d\x10\u8e98", // 躘
+ 0x8e99: "\x9d\x10\u8e99", // 躙
+ 0x8e9a: "\x9d\x10\u8e9a", // 躚
+ 0x8e9b: "\x9d\x10\u8e9b", // 躛
+ 0x8e9c: "\x9d\x10\u8e9c", // 躜
+ 0x8e9d: "\x9d\x11\u8e9d", // 躝
+ 0x8e9e: "\x9d\x11\u8e9e", // 躞
+ 0x8e9f: "\x9d\x11\u8e9f", // 躟
+ 0x8ea0: "\x9d\x11\u8ea0", // 躠
+ 0x8ea1: "\x9d\x12\u8ea1", // 躡
+ 0x8ea2: "\x9d\x12\u8ea2", // 躢
+ 0x8ea3: "\x9d\x12\u8ea3", // 躣
+ 0x8ea4: "\x9d\x12\u8ea4", // 躤
+ 0x8ea5: "\x9d\x12\u8ea5", // 躥
+ 0x8ea6: "\x9d\x13\u8ea6", // 躦
+ 0x8ea7: "\x9d\x13\u8ea7", // 躧
+ 0x8ea8: "\x9d\x15\u8ea8", // 躨
+ 0x8ea9: "\x9d\x14\u8ea9", // 躩
+ 0x8eaa: "\x9d\x14\u8eaa", // 躪
+ 0x8eab: "\x9e\x00\u8eab", // 身
+ 0x8eac: "\x9e\x03\u8eac", // 躬
+ 0x8ead: "\x9e\x04\u8ead", // 躭
+ 0x8eae: "\x9e\x04\u8eae", // 躮
+ 0x8eaf: "\x9e\x04\u8eaf", // 躯
+ 0x8eb0: "\x9e\x05\u8eb0", // 躰
+ 0x8eb1: "\x9e\x06\u8eb1", // 躱
+ 0x8eb2: "\x9e\x06\u8eb2", // 躲
+ 0x8eb3: "\x9e\a\u8eb3", // 躳
+ 0x8eb4: "\x9e\a\u8eb4", // 躴
+ 0x8eb5: "\x9e\a\u8eb5", // 躵
+ 0x8eb6: "\x9e\b\u8eb6", // 躶
+ 0x8eb7: "\x9e\b\u8eb7", // 躷
+ 0x8eb8: "\x9e\b\u8eb8", // 躸
+ 0x8eb9: "\x9e\b\u8eb9", // 躹
+ 0x8eba: "\x9e\b\u8eba", // 躺
+ 0x8ebb: "\x9e\b\u8ebb", // 躻
+ 0x8ebc: "\x9e\b\u8ebc", // 躼
+ 0x8ebd: "\x9e\t\u8ebd", // 躽
+ 0x8ebe: "\x9e\t\u8ebe", // 躾
+ 0x8ebf: "\x9e\n\u8ebf", // 躿
+ 0x8ec0: "\x9e\v\u8ec0", // 軀
+ 0x8ec1: "\x9e\v\u8ec1", // 軁
+ 0x8ec2: "\x9e\f\u8ec2", // 軂
+ 0x8ec3: "\x9e\f\u8ec3", // 軃
+ 0x8ec4: "\x9e\f\u8ec4", // 軄
+ 0x8ec5: "\x9e\f\u8ec5", // 軅
+ 0x8ec6: "\x9e\r\u8ec6", // 軆
+ 0x8ec7: "\x9e\x0e\u8ec7", // 軇
+ 0x8ec8: "\x9e\x11\u8ec8", // 軈
+ 0x8ec9: "\x9e\x14\u8ec9", // 軉
+ 0x8eca: "\x9f\x00\u8eca", // 車
+ 0x8ecb: "\x9f\x01\u8ecb", // 軋
+ 0x8ecc: "\x9f\x02\u8ecc", // 軌
+ 0x8ecd: "\x9f\x02\u8ecd", // 軍
+ 0x8ece: "\x9f\x03\u8ece", // 軎
+ 0x8ecf: "\x9f\x03\u8ecf", // 軏
+ 0x8ed0: "\x9f\x03\u8ed0", // 軐
+ 0x8ed1: "\x9f\x03\u8ed1", // 軑
+ 0x8ed2: "\x9f\x03\u8ed2", // 軒
+ 0x8ed3: "\x9f\x03\u8ed3", // 軓
+ 0x8ed4: "\x9f\x03\u8ed4", // 軔
+ 0x8ed5: "\x9f\x03\u8ed5", // 軕
+ 0x8ed6: "\x9f\x04\u8ed6", // 軖
+ 0x8ed7: "\x9f\x04\u8ed7", // 軗
+ 0x8ed8: "\x9f\x04\u8ed8", // 軘
+ 0x8ed9: "\x9f\x04\u8ed9", // 軙
+ 0x8eda: "\x9f\x04\u8eda", // 軚
+ 0x8edb: "\x9f\x04\u8edb", // 軛
+ 0x8edc: "\x9f\x04\u8edc", // 軜
+ 0x8edd: "\x9f\x04\u8edd", // 軝
+ 0x8ede: "\x9f\x04\u8ede", // 軞
+ 0x8edf: "\x9f\x04\u8edf", // 軟
+ 0x8ee0: "\x9f\x04\u8ee0", // 軠
+ 0x8ee1: "\x9f\x04\u8ee1", // 軡
+ 0x8ee2: "\x9f\x04\u8ee2", // 転
+ 0x8ee3: "\x9f\x04\u8ee3", // 軣
+ 0x8ee4: "\x9f\x05\u8ee4", // 軤
+ 0x8ee5: "\x9f\x05\u8ee5", // 軥
+ 0x8ee6: "\x9f\x05\u8ee6", // 軦
+ 0x8ee7: "\x9f\x05\u8ee7", // 軧
+ 0x8ee8: "\x9f\x05\u8ee8", // 軨
+ 0x8ee9: "\x9f\x05\u8ee9", // 軩
+ 0x8eea: "\x9f\x05\u8eea", // 軪
+ 0x8eeb: "\x9f\x05\u8eeb", // 軫
+ 0x8eec: "\x9f\x05\u8eec", // 軬
+ 0x8eed: "\x9f\x06\u8eed", // 軭
+ 0x8eee: "\x9f\x05\u8eee", // 軮
+ 0x8eef: "\x9f\x05\u8eef", // 軯
+ 0x8ef0: "\x9f\x05\u8ef0", // 軰
+ 0x8ef1: "\x9f\x05\u8ef1", // 軱
+ 0x8ef2: "\x9f\x05\u8ef2", // 軲
+ 0x8ef3: "\x9f\x05\u8ef3", // 軳
+ 0x8ef4: "\x9f\x05\u8ef4", // 軴
+ 0x8ef5: "\x9f\x05\u8ef5", // 軵
+ 0x8ef6: "\x9f\x05\u8ef6", // 軶
+ 0x8ef7: "\x9f\x05\u8ef7", // 軷
+ 0x8ef8: "\x9f\x05\u8ef8", // 軸
+ 0x8ef9: "\x9f\x05\u8ef9", // 軹
+ 0x8efa: "\x9f\x05\u8efa", // 軺
+ 0x8efb: "\x9f\x05\u8efb", // 軻
+ 0x8efc: "\x9f\x05\u8efc", // 軼
+ 0x8efd: "\x9f\x05\u8efd", // 軽
+ 0x8efe: "\x9f\x06\u8efe", // 軾
+ 0x8eff: "\x9f\x06\u8eff", // 軿
+ 0x8f00: "\x9f\x06\u8f00", // 輀
+ 0x8f01: "\x9f\x06\u8f01", // 輁
+ 0x8f02: "\x9f\x06\u8f02", // 輂
+ 0x8f03: "\x9f\x06\u8f03", // 較
+ 0x8f04: "\x9f\x06\u8f04", // 輄
+ 0x8f05: "\x9f\x06\u8f05", // 輅
+ 0x8f06: "\x9f\x06\u8f06", // 輆
+ 0x8f07: "\x9f\x06\u8f07", // 輇
+ 0x8f08: "\x9f\x06\u8f08", // 輈
+ 0x8f09: "\x9f\x06\u8f09", // 載
+ 0x8f0a: "\x9f\x06\u8f0a", // 輊
+ 0x8f0b: "\x9f\x06\u8f0b", // 輋
+ 0x8f0c: "\x9f\x06\u8f0c", // 輌
+ 0x8f0d: "\x9f\a\u8f0d", // 輍
+ 0x8f0e: "\x9f\a\u8f0e", // 輎
+ 0x8f0f: "\x9f\a\u8f0f", // 輏
+ 0x8f10: "\x9f\a\u8f10", // 輐
+ 0x8f11: "\x9f\a\u8f11", // 輑
+ 0x8f12: "\x9f\a\u8f12", // 輒
+ 0x8f13: "\x9f\a\u8f13", // 輓
+ 0x8f14: "\x9f\a\u8f14", // 輔
+ 0x8f15: "\x9f\a\u8f15", // 輕
+ 0x8f16: "\x9f\b\u8f16", // 輖
+ 0x8f17: "\x9f\b\u8f17", // 輗
+ 0x8f18: "\x9f\b\u8f18", // 輘
+ 0x8f19: "\x9f\b\u8f19", // 輙
+ 0x8f1a: "\x9f\b\u8f1a", // 輚
+ 0x8f1b: "\x9f\b\u8f1b", // 輛
+ 0x8f1c: "\x9f\b\u8f1c", // 輜
+ 0x8f1d: "\x9f\b\u8f1d", // 輝
+ 0x8f1e: "\x9f\b\u8f1e", // 輞
+ 0x8f1f: "\x9f\b\u8f1f", // 輟
+ 0x8f20: "\x9f\b\u8f20", // 輠
+ 0x8f21: "\x9f\b\u8f21", // 輡
+ 0x8f22: "\x9f\b\u8f22", // 輢
+ 0x8f23: "\x9f\b\u8f23", // 輣
+ 0x8f24: "\x9f\b\u8f24", // 輤
+ 0x8f25: "\x9f\b\u8f25", // 輥
+ 0x8f26: "\x9f\b\u8f26", // 輦
+ 0x8f27: "\x9f\b\u8f27", // 輧
+ 0x8f28: "\x9f\b\u8f28", // 輨
+ 0x8f29: "\x9f\b\u8f29", // 輩
+ 0x8f2a: "\x9f\b\u8f2a", // 輪
+ 0x8f2b: "\x9f\b\u8f2b", // 輫
+ 0x8f2c: "\x9f\b\u8f2c", // 輬
+ 0x8f2d: "\x9f\t\u8f2d", // 輭
+ 0x8f2e: "\x9f\t\u8f2e", // 輮
+ 0x8f2f: "\x9f\t\u8f2f", // 輯
+ 0x8f30: "\x9f\t\u8f30", // 輰
+ 0x8f31: "\x9f\t\u8f31", // 輱
+ 0x8f32: "\x9f\t\u8f32", // 輲
+ 0x8f33: "\x9f\t\u8f33", // 輳
+ 0x8f34: "\x9f\t\u8f34", // 輴
+ 0x8f35: "\x9f\t\u8f35", // 輵
+ 0x8f36: "\x9f\t\u8f36", // 輶
+ 0x8f37: "\x9f\t\u8f37", // 輷
+ 0x8f38: "\x9f\t\u8f38", // 輸
+ 0x8f39: "\x9f\t\u8f39", // 輹
+ 0x8f3a: "\x9f\t\u8f3a", // 輺
+ 0x8f3b: "\x9f\t\u8f3b", // 輻
+ 0x8f3c: "\x9f\t\u8f3c", // 輼
+ 0x8f3d: "\x9f\n\u8f3d", // 輽
+ 0x8f3e: "\x9f\n\u8f3e", // 輾
+ 0x8f3f: "\x9f\n\u8f3f", // 輿
+ 0x8f40: "\x9f\n\u8f40", // 轀
+ 0x8f41: "\x9f\n\u8f41", // 轁
+ 0x8f42: "\x9f\n\u8f42", // 轂
+ 0x8f43: "\x9f\n\u8f43", // 轃
+ 0x8f44: "\x9f\n\u8f44", // 轄
+ 0x8f45: "\x9f\n\u8f45", // 轅
+ 0x8f46: "\x9f\v\u8f46", // 轆
+ 0x8f47: "\x9f\v\u8f47", // 轇
+ 0x8f48: "\x9f\v\u8f48", // 轈
+ 0x8f49: "\x9f\v\u8f49", // 轉
+ 0x8f4a: "\x9f\v\u8f4a", // 轊
+ 0x8f4b: "\x9f\v\u8f4b", // 轋
+ 0x8f4c: "\x9f\v\u8f4c", // 轌
+ 0x8f4d: "\x9f\f\u8f4d", // 轍
+ 0x8f4e: "\x9f\f\u8f4e", // 轎
+ 0x8f4f: "\x9f\f\u8f4f", // 轏
+ 0x8f50: "\x9f\f\u8f50", // 轐
+ 0x8f51: "\x9f\f\u8f51", // 轑
+ 0x8f52: "\x9f\f\u8f52", // 轒
+ 0x8f53: "\x9f\f\u8f53", // 轓
+ 0x8f54: "\x9f\f\u8f54", // 轔
+ 0x8f55: "\x9f\r\u8f55", // 轕
+ 0x8f56: "\x9f\r\u8f56", // 轖
+ 0x8f57: "\x9f\r\u8f57", // 轗
+ 0x8f58: "\x9f\r\u8f58", // 轘
+ 0x8f59: "\x9f\r\u8f59", // 轙
+ 0x8f5a: "\x9f\r\u8f5a", // 轚
+ 0x8f5b: "\x9f\x0e\u8f5b", // 轛
+ 0x8f5c: "\x9f\x0e\u8f5c", // 轜
+ 0x8f5d: "\x9f\x0e\u8f5d", // 轝
+ 0x8f5e: "\x9f\x0e\u8f5e", // 轞
+ 0x8f5f: "\x9f\x0e\u8f5f", // 轟
+ 0x8f60: "\x9f\x0f\u8f60", // 轠
+ 0x8f61: "\x9f\x0f\u8f61", // 轡
+ 0x8f62: "\x9f\x0f\u8f62", // 轢
+ 0x8f63: "\x9f\x10\u8f63", // 轣
+ 0x8f64: "\x9f\x10\u8f64", // 轤
+ 0x8f65: "\x9f\x14\u8f65", // 轥
+ 0x8f66: "\x9f\x00\u8f66", // 车
+ 0x8f67: "\x9f\x01\u8f67", // 轧
+ 0x8f68: "\x9f\x02\u8f68", // 轨
+ 0x8f69: "\x9f\x03\u8f69", // 轩
+ 0x8f6a: "\x9f\x03\u8f6a", // 轪
+ 0x8f6b: "\x9f\x03\u8f6b", // 轫
+ 0x8f6c: "\x9f\x04\u8f6c", // 转
+ 0x8f6d: "\x9f\x04\u8f6d", // 轭
+ 0x8f6e: "\x9f\x04\u8f6e", // 轮
+ 0x8f6f: "\x9f\x04\u8f6f", // 软
+ 0x8f70: "\x9f\x04\u8f70", // 轰
+ 0x8f71: "\x9f\x05\u8f71", // 轱
+ 0x8f72: "\x9f\x05\u8f72", // 轲
+ 0x8f73: "\x9f\x05\u8f73", // 轳
+ 0x8f74: "\x9f\x05\u8f74", // 轴
+ 0x8f75: "\x9f\x05\u8f75", // 轵
+ 0x8f76: "\x9f\x05\u8f76", // 轶
+ 0x8f77: "\x9f\x05\u8f77", // 轷
+ 0x8f78: "\x9f\x05\u8f78", // 轸
+ 0x8f79: "\x9f\x05\u8f79", // 轹
+ 0x8f7a: "\x9f\x05\u8f7a", // 轺
+ 0x8f7b: "\x9f\x05\u8f7b", // 轻
+ 0x8f7c: "\x9f\x06\u8f7c", // 轼
+ 0x8f7d: "\x9f\x06\u8f7d", // 载
+ 0x8f7e: "\x9f\x06\u8f7e", // 轾
+ 0x8f7f: "\x9f\x06\u8f7f", // 轿
+ 0x8f80: "\x9f\x06\u8f80", // 辀
+ 0x8f81: "\x9f\x06\u8f81", // 辁
+ 0x8f82: "\x9f\x06\u8f82", // 辂
+ 0x8f83: "\x9f\x06\u8f83", // 较
+ 0x8f84: "\x9f\a\u8f84", // 辄
+ 0x8f85: "\x9f\a\u8f85", // 辅
+ 0x8f86: "\x9f\a\u8f86", // 辆
+ 0x8f87: "\x9f\b\u8f87", // 辇
+ 0x8f88: "\x9f\b\u8f88", // 辈
+ 0x8f89: "\x9f\b\u8f89", // 辉
+ 0x8f8a: "\x9f\b\u8f8a", // 辊
+ 0x8f8b: "\x9f\b\u8f8b", // 辋
+ 0x8f8c: "\x9f\b\u8f8c", // 辌
+ 0x8f8d: "\x9f\b\u8f8d", // 辍
+ 0x8f8e: "\x9f\b\u8f8e", // 辎
+ 0x8f8f: "\x9f\t\u8f8f", // 辏
+ 0x8f90: "\x9f\t\u8f90", // 辐
+ 0x8f91: "\x9f\t\u8f91", // 辑
+ 0x8f92: "\x9f\t\u8f92", // 辒
+ 0x8f93: "\x9f\t\u8f93", // 输
+ 0x8f94: "\x9f\t\u8f94", // 辔
+ 0x8f95: "\x9f\n\u8f95", // 辕
+ 0x8f96: "\x9f\n\u8f96", // 辖
+ 0x8f97: "\x9f\n\u8f97", // 辗
+ 0x8f98: "\x9f\v\u8f98", // 辘
+ 0x8f99: "\x9f\f\u8f99", // 辙
+ 0x8f9a: "\x9f\f\u8f9a", // 辚
+ 0x8f9b: "\xa0\x00\u8f9b", // 辛
+ 0x8f9c: "\xa0\x05\u8f9c", // 辜
+ 0x8f9d: "\xa0\x05\u8f9d", // 辝
+ 0x8f9e: "\xa0\x06\u8f9e", // 辞
+ 0x8f9f: "\xa0\x06\u8f9f", // 辟
+ 0x8fa0: "\xa0\x06\u8fa0", // 辠
+ 0x8fa1: "\xa0\a\u8fa1", // 辡
+ 0x8fa2: "\xa0\a\u8fa2", // 辢
+ 0x8fa3: "\xa0\a\u8fa3", // 辣
+ 0x8fa4: "\xa0\b\u8fa4", // 辤
+ 0x8fa5: "\xa0\t\u8fa5", // 辥
+ 0x8fa6: "\xa0\t\u8fa6", // 辦
+ 0x8fa7: "\xa0\t\u8fa7", // 辧
+ 0x8fa8: "\xa0\t\u8fa8", // 辨
+ 0x8fa9: "\xa0\t\u8fa9", // 辩
+ 0x8faa: "\xa0\t\u8faa", // 辪
+ 0x8fab: "\xa0\n\u8fab", // 辫
+ 0x8fac: "\xa0\v\u8fac", // 辬
+ 0x8fad: "\xa0\f\u8fad", // 辭
+ 0x8fae: "\xa0\r\u8fae", // 辮
+ 0x8faf: "\xa0\x0e\u8faf", // 辯
+ 0x8fb0: "\xa1\x00\u8fb0", // 辰
+ 0x8fb1: "\xa1\x03\u8fb1", // 辱
+ 0x8fb2: "\xa1\x06\u8fb2", // 農
+ 0x8fb3: "\xa1\b\u8fb3", // 辳
+ 0x8fb4: "\xa1\f\u8fb4", // 辴
+ 0x8fb5: "\xa2\x00\u8fb5", // 辵
+ 0x8fb6: "\xa2\x00\u8fb6", // 辶
+ 0x8fb7: "\xa2\x01\u8fb7", // 辷
+ 0x8fb8: "\xa2\x02\u8fb8", // 辸
+ 0x8fb9: "\xa2\x02\u8fb9", // 边
+ 0x8fba: "\xa2\x02\u8fba", // 辺
+ 0x8fbb: "\xa2\x02\u8fbb", // 辻
+ 0x8fbc: "\xa2\x02\u8fbc", // 込
+ 0x8fbd: "\xa2\x02\u8fbd", // 辽
+ 0x8fbe: "\xa2\x03\u8fbe", // 达
+ 0x8fbf: "\xa2\x03\u8fbf", // 辿
+ 0x8fc0: "\xa2\x03\u8fc0", // 迀
+ 0x8fc1: "\xa2\x03\u8fc1", // 迁
+ 0x8fc2: "\xa2\x03\u8fc2", // 迂
+ 0x8fc3: "\xa2\x03\u8fc3", // 迃
+ 0x8fc4: "\xa2\x03\u8fc4", // 迄
+ 0x8fc5: "\xa2\x03\u8fc5", // 迅
+ 0x8fc6: "\xa2\x03\u8fc6", // 迆
+ 0x8fc7: "\xa2\x03\u8fc7", // 过
+ 0x8fc8: "\xa2\x03\u8fc8", // 迈
+ 0x8fc9: "\xa2\x03\u8fc9", // 迉
+ 0x8fca: "\xa2\x04\u8fca", // 迊
+ 0x8fcb: "\xa2\x04\u8fcb", // 迋
+ 0x8fcc: "\xa2\x04\u8fcc", // 迌
+ 0x8fcd: "\xa2\x04\u8fcd", // 迍
+ 0x8fce: "\xa2\x04\u8fce", // 迎
+ 0x8fcf: "\xa2\x04\u8fcf", // 迏
+ 0x8fd0: "\xa2\x04\u8fd0", // 运
+ 0x8fd1: "\xa2\x04\u8fd1", // 近
+ 0x8fd2: "\xa2\x04\u8fd2", // 迒
+ 0x8fd3: "\xa2\x04\u8fd3", // 迓
+ 0x8fd4: "\xa2\x04\u8fd4", // 返
+ 0x8fd5: "\xa2\x04\u8fd5", // 迕
+ 0x8fd6: "\xa2\x04\u8fd6", // 迖
+ 0x8fd7: "\xa2\x04\u8fd7", // 迗
+ 0x8fd8: "\xa2\x04\u8fd8", // 还
+ 0x8fd9: "\xa2\x04\u8fd9", // 这
+ 0x8fda: "\xa2\x04\u8fda", // 迚
+ 0x8fdb: "\xa2\x04\u8fdb", // 进
+ 0x8fdc: "\xa2\x04\u8fdc", // 远
+ 0x8fdd: "\xa2\x04\u8fdd", // 违
+ 0x8fde: "\xa2\x04\u8fde", // 连
+ 0x8fdf: "\xa2\x04\u8fdf", // 迟
+ 0x8fe0: "\xa2\x05\u8fe0", // 迠
+ 0x8fe1: "\xa2\x05\u8fe1", // 迡
+ 0x8fe2: "\xa2\x05\u8fe2", // 迢
+ 0x8fe3: "\xa2\x05\u8fe3", // 迣
+ 0x8fe4: "\xa2\x05\u8fe4", // 迤
+ 0x8fe5: "\xa2\x05\u8fe5", // 迥
+ 0x8fe6: "\xa2\x05\u8fe6", // 迦
+ 0x8fe7: "\xa2\x05\u8fe7", // 迧
+ 0x8fe8: "\xa2\x05\u8fe8", // 迨
+ 0x8fe9: "\xa2\x05\u8fe9", // 迩
+ 0x8fea: "\xa2\x05\u8fea", // 迪
+ 0x8feb: "\xa2\x05\u8feb", // 迫
+ 0x8fec: "\xa2\x04\u8fec", // 迬
+ 0x8fed: "\xa2\x05\u8fed", // 迭
+ 0x8fee: "\xa2\x05\u8fee", // 迮
+ 0x8fef: "\xa2\x05\u8fef", // 迯
+ 0x8ff0: "\xa2\x05\u8ff0", // 述
+ 0x8ff1: "\xa2\x05\u8ff1", // 迱
+ 0x8ff2: "\xa2\x05\u8ff2", // 迲
+ 0x8ff3: "\xa2\x05\u8ff3", // 迳
+ 0x8ff4: "\xa2\x06\u8ff4", // 迴
+ 0x8ff5: "\xa2\x06\u8ff5", // 迵
+ 0x8ff6: "\xa2\x06\u8ff6", // 迶
+ 0x8ff7: "\xa2\x06\u8ff7", // 迷
+ 0x8ff8: "\xa2\x06\u8ff8", // 迸
+ 0x8ff9: "\xa2\x06\u8ff9", // 迹
+ 0x8ffa: "\xa2\x06\u8ffa", // 迺
+ 0x8ffb: "\xa2\x06\u8ffb", // 迻
+ 0x8ffc: "\xa2\x06\u8ffc", // 迼
+ 0x8ffd: "\xa2\x06\u8ffd", // 追
+ 0x8ffe: "\xa2\x06\u8ffe", // 迾
+ 0x8fff: "\xa2\x06\u8fff", // 迿
+ 0x9000: "\xa2\x06\u9000", // 退
+ 0x9001: "\xa2\x06\u9001", // 送
+ 0x9002: "\xa2\x06\u9002", // 适
+ 0x9003: "\xa2\x06\u9003", // 逃
+ 0x9004: "\xa2\x06\u9004", // 逄
+ 0x9005: "\xa2\x06\u9005", // 逅
+ 0x9006: "\xa2\x06\u9006", // 逆
+ 0x9007: "\xa2\x06\u9007", // 逇
+ 0x9008: "\xa2\x06\u9008", // 逈
+ 0x9009: "\xa2\x06\u9009", // 选
+ 0x900a: "\xa2\x06\u900a", // 逊
+ 0x900b: "\xa2\a\u900b", // 逋
+ 0x900c: "\xa2\a\u900c", // 逌
+ 0x900d: "\xa2\a\u900d", // 逍
+ 0x900e: "\xa2\a\u900e", // 逎
+ 0x900f: "\xa2\a\u900f", // 透
+ 0x9010: "\xa2\a\u9010", // 逐
+ 0x9011: "\xa2\a\u9011", // 逑
+ 0x9012: "\xa2\a\u9012", // 递
+ 0x9013: "\xa2\a\u9013", // 逓
+ 0x9014: "\xa2\a\u9014", // 途
+ 0x9015: "\xa2\a\u9015", // 逕
+ 0x9016: "\xa2\a\u9016", // 逖
+ 0x9017: "\xa2\a\u9017", // 逗
+ 0x9018: "\xa2\a\u9018", // 逘
+ 0x9019: "\xa2\a\u9019", // 這
+ 0x901a: "\xa2\a\u901a", // 通
+ 0x901b: "\xa2\a\u901b", // 逛
+ 0x901c: "\xa2\a\u901c", // 逜
+ 0x901d: "\xa2\a\u901d", // 逝
+ 0x901e: "\xa2\a\u901e", // 逞
+ 0x901f: "\xa2\a\u901f", // 速
+ 0x9020: "\xa2\a\u9020", // 造
+ 0x9021: "\xa2\a\u9021", // 逡
+ 0x9022: "\xa2\a\u9022", // 逢
+ 0x9023: "\xa2\a\u9023", // 連
+ 0x9024: "\xa2\a\u9024", // 逤
+ 0x9025: "\xa2\a\u9025", // 逥
+ 0x9026: "\xa2\a\u9026", // 逦
+ 0x9027: "\xa2\a\u9027", // 逧
+ 0x9028: "\xa2\b\u9028", // 逨
+ 0x9029: "\xa2\b\u9029", // 逩
+ 0x902a: "\xa2\b\u902a", // 逪
+ 0x902b: "\xa2\b\u902b", // 逫
+ 0x902c: "\xa2\b\u902c", // 逬
+ 0x902d: "\xa2\b\u902d", // 逭
+ 0x902e: "\xa2\b\u902e", // 逮
+ 0x902f: "\xa2\b\u902f", // 逯
+ 0x9030: "\xa2\b\u9030", // 逰
+ 0x9031: "\xa2\b\u9031", // 週
+ 0x9032: "\xa2\b\u9032", // 進
+ 0x9033: "\xa2\b\u9033", // 逳
+ 0x9034: "\xa2\b\u9034", // 逴
+ 0x9035: "\xa2\b\u9035", // 逵
+ 0x9036: "\xa2\b\u9036", // 逶
+ 0x9037: "\xa2\b\u9037", // 逷
+ 0x9038: "\xa2\b\u9038", // 逸
+ 0x9039: "\xa2\b\u9039", // 逹
+ 0x903a: "\xa2\b\u903a", // 逺
+ 0x903b: "\xa2\b\u903b", // 逻
+ 0x903c: "\xa2\t\u903c", // 逼
+ 0x903d: "\xa2\t\u903d", // 逽
+ 0x903e: "\xa2\t\u903e", // 逾
+ 0x903f: "\xa2\t\u903f", // 逿
+ 0x9040: "\xa2\t\u9040", // 遀
+ 0x9041: "\xa2\t\u9041", // 遁
+ 0x9042: "\xa2\t\u9042", // 遂
+ 0x9043: "\xa2\t\u9043", // 遃
+ 0x9044: "\xa2\t\u9044", // 遄
+ 0x9045: "\xa2\t\u9045", // 遅
+ 0x9046: "\xa2\t\u9046", // 遆
+ 0x9047: "\xa2\t\u9047", // 遇
+ 0x9048: "\xa2\t\u9048", // 遈
+ 0x9049: "\xa2\t\u9049", // 遉
+ 0x904a: "\xa2\t\u904a", // 遊
+ 0x904b: "\xa2\t\u904b", // 運
+ 0x904c: "\xa2\t\u904c", // 遌
+ 0x904d: "\xa2\t\u904d", // 遍
+ 0x904e: "\xa2\t\u904e", // 過
+ 0x904f: "\xa2\t\u904f", // 遏
+ 0x9050: "\xa2\t\u9050", // 遐
+ 0x9051: "\xa2\t\u9051", // 遑
+ 0x9052: "\xa2\t\u9052", // 遒
+ 0x9053: "\xa2\t\u9053", // 道
+ 0x9054: "\xa2\t\u9054", // 達
+ 0x9055: "\xa2\t\u9055", // 違
+ 0x9056: "\xa2\t\u9056", // 遖
+ 0x9057: "\xa2\t\u9057", // 遗
+ 0x9058: "\xa2\n\u9058", // 遘
+ 0x9059: "\xa2\n\u9059", // 遙
+ 0x905a: "\xa2\n\u905a", // 遚
+ 0x905b: "\xa2\n\u905b", // 遛
+ 0x905c: "\xa2\n\u905c", // 遜
+ 0x905d: "\xa2\n\u905d", // 遝
+ 0x905e: "\xa2\n\u905e", // 遞
+ 0x905f: "\xa2\n\u905f", // 遟
+ 0x9060: "\xa2\n\u9060", // 遠
+ 0x9061: "\xa2\n\u9061", // 遡
+ 0x9062: "\xa2\n\u9062", // 遢
+ 0x9063: "\xa2\n\u9063", // 遣
+ 0x9064: "\xa2\n\u9064", // 遤
+ 0x9065: "\xa2\n\u9065", // 遥
+ 0x9066: "\xa2\v\u9066", // 遦
+ 0x9067: "\xa2\v\u9067", // 遧
+ 0x9068: "\xa2\v\u9068", // 遨
+ 0x9069: "\xa2\v\u9069", // 適
+ 0x906a: "\xa2\v\u906a", // 遪
+ 0x906b: "\xa2\v\u906b", // 遫
+ 0x906c: "\xa2\v\u906c", // 遬
+ 0x906d: "\xa2\v\u906d", // 遭
+ 0x906e: "\xa2\v\u906e", // 遮
+ 0x906f: "\xa2\v\u906f", // 遯
+ 0x9070: "\xa2\v\u9070", // 遰
+ 0x9071: "\xa2\v\u9071", // 遱
+ 0x9072: "\xa2\f\u9072", // 遲
+ 0x9073: "\xa2\v\u9073", // 遳
+ 0x9074: "\xa2\f\u9074", // 遴
+ 0x9075: "\xa2\f\u9075", // 遵
+ 0x9076: "\xa2\f\u9076", // 遶
+ 0x9077: "\xa2\f\u9077", // 遷
+ 0x9078: "\xa2\f\u9078", // 選
+ 0x9079: "\xa2\f\u9079", // 遹
+ 0x907a: "\xa2\f\u907a", // 遺
+ 0x907b: "\xa2\f\u907b", // 遻
+ 0x907c: "\xa2\f\u907c", // 遼
+ 0x907d: "\xa2\r\u907d", // 遽
+ 0x907e: "\xa2\r\u907e", // 遾
+ 0x907f: "\xa2\r\u907f", // 避
+ 0x9080: "\xa2\r\u9080", // 邀
+ 0x9081: "\xa2\r\u9081", // 邁
+ 0x9082: "\xa2\r\u9082", // 邂
+ 0x9083: "\xa2\r\u9083", // 邃
+ 0x9084: "\xa2\r\u9084", // 還
+ 0x9085: "\xa2\r\u9085", // 邅
+ 0x9086: "\xa2\f\u9086", // 邆
+ 0x9087: "\xa2\x0e\u9087", // 邇
+ 0x9088: "\xa2\x0e\u9088", // 邈
+ 0x9089: "\xa2\r\u9089", // 邉
+ 0x908a: "\xa2\x0f\u908a", // 邊
+ 0x908b: "\xa2\x0f\u908b", // 邋
+ 0x908c: "\xa2\x0f\u908c", // 邌
+ 0x908d: "\xa2\x10\u908d", // 邍
+ 0x908e: "\xa2\x11\u908e", // 邎
+ 0x908f: "\xa2\x13\u908f", // 邏
+ 0x9090: "\xa2\x13\u9090", // 邐
+ 0x9091: "\xa3\x00\u9091", // 邑
+ 0x9092: "\xa3\x02\u9092", // 邒
+ 0x9093: "\xa3\x02\u9093", // 邓
+ 0x9094: "\xa3\x03\u9094", // 邔
+ 0x9095: "\xa3\x03\u9095", // 邕
+ 0x9096: "\xa3\x03\u9096", // 邖
+ 0x9097: "\xa3\x03\u9097", // 邗
+ 0x9098: "\xa3\x03\u9098", // 邘
+ 0x9099: "\xa3\x03\u9099", // 邙
+ 0x909a: "\xa3\x03\u909a", // 邚
+ 0x909b: "\xa3\x03\u909b", // 邛
+ 0x909c: "\xa3\x03\u909c", // 邜
+ 0x909d: "\xa3\x03\u909d", // 邝
+ 0x909e: "\xa3\x04\u909e", // 邞
+ 0x909f: "\xa3\x04\u909f", // 邟
+ 0x90a0: "\xa3\x04\u90a0", // 邠
+ 0x90a1: "\xa3\x04\u90a1", // 邡
+ 0x90a2: "\xa3\x04\u90a2", // 邢
+ 0x90a3: "\xa3\x04\u90a3", // 那
+ 0x90a4: "\xa3\x04\u90a4", // 邤
+ 0x90a5: "\xa3\x04\u90a5", // 邥
+ 0x90a6: "\xa3\x04\u90a6", // 邦
+ 0x90a7: "\xa3\x04\u90a7", // 邧
+ 0x90a8: "\xa3\x04\u90a8", // 邨
+ 0x90a9: "\xa3\x04\u90a9", // 邩
+ 0x90aa: "\xa3\x04\u90aa", // 邪
+ 0x90ab: "\xa3\x04\u90ab", // 邫
+ 0x90ac: "\xa3\x04\u90ac", // 邬
+ 0x90ad: "\xa3\x05\u90ad", // 邭
+ 0x90ae: "\xa3\x05\u90ae", // 邮
+ 0x90af: "\xa3\x05\u90af", // 邯
+ 0x90b0: "\xa3\x05\u90b0", // 邰
+ 0x90b1: "\xa3\x05\u90b1", // 邱
+ 0x90b2: "\xa3\x05\u90b2", // 邲
+ 0x90b3: "\xa3\x05\u90b3", // 邳
+ 0x90b4: "\xa3\x05\u90b4", // 邴
+ 0x90b5: "\xa3\x05\u90b5", // 邵
+ 0x90b6: "\xa3\x05\u90b6", // 邶
+ 0x90b7: "\xa3\x05\u90b7", // 邷
+ 0x90b8: "\xa3\x05\u90b8", // 邸
+ 0x90b9: "\xa3\x05\u90b9", // 邹
+ 0x90ba: "\xa3\x05\u90ba", // 邺
+ 0x90bb: "\xa3\x05\u90bb", // 邻
+ 0x90bc: "\xa3\x06\u90bc", // 邼
+ 0x90bd: "\xa3\x06\u90bd", // 邽
+ 0x90be: "\xa3\x06\u90be", // 邾
+ 0x90bf: "\xa3\x06\u90bf", // 邿
+ 0x90c0: "\xa3\x06\u90c0", // 郀
+ 0x90c1: "\xa3\x06\u90c1", // 郁
+ 0x90c2: "\xa3\x06\u90c2", // 郂
+ 0x90c3: "\xa3\x06\u90c3", // 郃
+ 0x90c4: "\xa3\x06\u90c4", // 郄
+ 0x90c5: "\xa3\x06\u90c5", // 郅
+ 0x90c6: "\xa3\x06\u90c6", // 郆
+ 0x90c7: "\xa3\x06\u90c7", // 郇
+ 0x90c8: "\xa3\x06\u90c8", // 郈
+ 0x90c9: "\xa3\x06\u90c9", // 郉
+ 0x90ca: "\xa3\x06\u90ca", // 郊
+ 0x90cb: "\xa3\x06\u90cb", // 郋
+ 0x90cc: "\xa3\x06\u90cc", // 郌
+ 0x90cd: "\xa3\x06\u90cd", // 郍
+ 0x90ce: "\xa3\x06\u90ce", // 郎
+ 0x90cf: "\xa3\x06\u90cf", // 郏
+ 0x90d0: "\xa3\x06\u90d0", // 郐
+ 0x90d1: "\xa3\x06\u90d1", // 郑
+ 0x90d2: "\xa3\a\u90d2", // 郒
+ 0x90d3: "\xa3\x06\u90d3", // 郓
+ 0x90d4: "\xa3\a\u90d4", // 郔
+ 0x90d5: "\xa3\a\u90d5", // 郕
+ 0x90d6: "\xa3\a\u90d6", // 郖
+ 0x90d7: "\xa3\a\u90d7", // 郗
+ 0x90d8: "\xa3\a\u90d8", // 郘
+ 0x90d9: "\xa3\a\u90d9", // 郙
+ 0x90da: "\xa3\a\u90da", // 郚
+ 0x90db: "\xa3\a\u90db", // 郛
+ 0x90dc: "\xa3\a\u90dc", // 郜
+ 0x90dd: "\xa3\a\u90dd", // 郝
+ 0x90de: "\xa3\a\u90de", // 郞
+ 0x90df: "\xa3\a\u90df", // 郟
+ 0x90e0: "\xa3\a\u90e0", // 郠
+ 0x90e1: "\xa3\a\u90e1", // 郡
+ 0x90e2: "\xa3\a\u90e2", // 郢
+ 0x90e3: "\xa3\a\u90e3", // 郣
+ 0x90e4: "\xa3\a\u90e4", // 郤
+ 0x90e5: "\xa3\a\u90e5", // 郥
+ 0x90e6: "\xa3\a\u90e6", // 郦
+ 0x90e7: "\xa3\a\u90e7", // 郧
+ 0x90e8: "\xa3\b\u90e8", // 部
+ 0x90e9: "\xa3\b\u90e9", // 郩
+ 0x90ea: "\xa3\b\u90ea", // 郪
+ 0x90eb: "\xa3\b\u90eb", // 郫
+ 0x90ec: "\xa3\b\u90ec", // 郬
+ 0x90ed: "\xa3\b\u90ed", // 郭
+ 0x90ee: "\xa3\b\u90ee", // 郮
+ 0x90ef: "\xa3\b\u90ef", // 郯
+ 0x90f0: "\xa3\b\u90f0", // 郰
+ 0x90f1: "\xa3\b\u90f1", // 郱
+ 0x90f2: "\xa3\b\u90f2", // 郲
+ 0x90f3: "\xa3\b\u90f3", // 郳
+ 0x90f4: "\xa3\b\u90f4", // 郴
+ 0x90f5: "\xa3\b\u90f5", // 郵
+ 0x90f6: "\xa3\b\u90f6", // 郶
+ 0x90f7: "\xa3\b\u90f7", // 郷
+ 0x90f8: "\xa3\b\u90f8", // 郸
+ 0x90f9: "\xa3\t\u90f9", // 郹
+ 0x90fa: "\xa3\t\u90fa", // 郺
+ 0x90fb: "\xa3\t\u90fb", // 郻
+ 0x90fc: "\xa3\t\u90fc", // 郼
+ 0x90fd: "\xa3\t\u90fd", // 都
+ 0x90fe: "\xa3\t\u90fe", // 郾
+ 0x90ff: "\xa3\t\u90ff", // 郿
+ 0x9100: "\xa3\t\u9100", // 鄀
+ 0x9101: "\xa3\t\u9101", // 鄁
+ 0x9102: "\xa3\t\u9102", // 鄂
+ 0x9103: "\xa3\t\u9103", // 鄃
+ 0x9104: "\xa3\t\u9104", // 鄄
+ 0x9105: "\xa3\t\u9105", // 鄅
+ 0x9106: "\xa3\t\u9106", // 鄆
+ 0x9107: "\xa3\t\u9107", // 鄇
+ 0x9108: "\xa3\t\u9108", // 鄈
+ 0x9109: "\xa3\t\u9109", // 鄉
+ 0x910a: "\xa3\t\u910a", // 鄊
+ 0x910b: "\xa3\n\u910b", // 鄋
+ 0x910c: "\xa3\n\u910c", // 鄌
+ 0x910d: "\xa3\n\u910d", // 鄍
+ 0x910e: "\xa3\n\u910e", // 鄎
+ 0x910f: "\xa3\n\u910f", // 鄏
+ 0x9110: "\xa3\n\u9110", // 鄐
+ 0x9111: "\xa3\n\u9111", // 鄑
+ 0x9112: "\xa3\n\u9112", // 鄒
+ 0x9113: "\xa3\n\u9113", // 鄓
+ 0x9114: "\xa3\n\u9114", // 鄔
+ 0x9115: "\xa3\n\u9115", // 鄕
+ 0x9116: "\xa3\n\u9116", // 鄖
+ 0x9117: "\xa3\n\u9117", // 鄗
+ 0x9118: "\xa3\v\u9118", // 鄘
+ 0x9119: "\xa3\v\u9119", // 鄙
+ 0x911a: "\xa3\v\u911a", // 鄚
+ 0x911b: "\xa3\v\u911b", // 鄛
+ 0x911c: "\xa3\v\u911c", // 鄜
+ 0x911d: "\xa3\v\u911d", // 鄝
+ 0x911e: "\xa3\v\u911e", // 鄞
+ 0x911f: "\xa3\v\u911f", // 鄟
+ 0x9120: "\xa3\v\u9120", // 鄠
+ 0x9121: "\xa3\v\u9121", // 鄡
+ 0x9122: "\xa3\v\u9122", // 鄢
+ 0x9123: "\xa3\v\u9123", // 鄣
+ 0x9124: "\xa3\v\u9124", // 鄤
+ 0x9125: "\xa3\v\u9125", // 鄥
+ 0x9126: "\xa3\f\u9126", // 鄦
+ 0x9127: "\xa3\f\u9127", // 鄧
+ 0x9128: "\xa3\f\u9128", // 鄨
+ 0x9129: "\xa3\f\u9129", // 鄩
+ 0x912a: "\xa3\f\u912a", // 鄪
+ 0x912b: "\xa3\f\u912b", // 鄫
+ 0x912c: "\xa3\f\u912c", // 鄬
+ 0x912d: "\xa3\f\u912d", // 鄭
+ 0x912e: "\xa3\f\u912e", // 鄮
+ 0x912f: "\xa3\f\u912f", // 鄯
+ 0x9130: "\xa3\f\u9130", // 鄰
+ 0x9131: "\xa3\f\u9131", // 鄱
+ 0x9132: "\xa3\f\u9132", // 鄲
+ 0x9133: "\xa3\r\u9133", // 鄳
+ 0x9134: "\xa3\r\u9134", // 鄴
+ 0x9135: "\xa3\r\u9135", // 鄵
+ 0x9136: "\xa3\r\u9136", // 鄶
+ 0x9137: "\xa3\r\u9137", // 鄷
+ 0x9138: "\xa3\x0e\u9138", // 鄸
+ 0x9139: "\xa3\x0e\u9139", // 鄹
+ 0x913a: "\xa3\x0f\u913a", // 鄺
+ 0x913b: "\xa3\x0f\u913b", // 鄻
+ 0x913c: "\xa3\x0f\u913c", // 鄼
+ 0x913d: "\xa3\x0f\u913d", // 鄽
+ 0x913e: "\xa3\x0f\u913e", // 鄾
+ 0x913f: "\xa3\x10\u913f", // 鄿
+ 0x9140: "\xa3\x10\u9140", // 酀
+ 0x9141: "\xa3\x11\u9141", // 酁
+ 0x9142: "\xa3\x10\u9142", // 酂
+ 0x9143: "\xa3\x11\u9143", // 酃
+ 0x9144: "\xa3\x12\u9144", // 酄
+ 0x9145: "\xa3\x12\u9145", // 酅
+ 0x9146: "\xa3\x12\u9146", // 酆
+ 0x9147: "\xa3\x13\u9147", // 酇
+ 0x9148: "\xa3\x13\u9148", // 酈
+ 0x9149: "\xa4\x00\u9149", // 酉
+ 0x914a: "\xa4\x02\u914a", // 酊
+ 0x914b: "\xa4\x02\u914b", // 酋
+ 0x914c: "\xa4\x03\u914c", // 酌
+ 0x914d: "\xa4\x03\u914d", // 配
+ 0x914e: "\xa4\x03\u914e", // 酎
+ 0x914f: "\xa4\x03\u914f", // 酏
+ 0x9150: "\xa4\x03\u9150", // 酐
+ 0x9151: "\xa4\x03\u9151", // 酑
+ 0x9152: "\xa4\x03\u9152", // 酒
+ 0x9153: "\xa4\x04\u9153", // 酓
+ 0x9154: "\xa4\x04\u9154", // 酔
+ 0x9155: "\xa4\x04\u9155", // 酕
+ 0x9156: "\xa4\x04\u9156", // 酖
+ 0x9157: "\xa4\x04\u9157", // 酗
+ 0x9158: "\xa4\x04\u9158", // 酘
+ 0x9159: "\xa4\x04\u9159", // 酙
+ 0x915a: "\xa4\x04\u915a", // 酚
+ 0x915b: "\xa4\x04\u915b", // 酛
+ 0x915c: "\xa4\x04\u915c", // 酜
+ 0x915d: "\xa4\x04\u915d", // 酝
+ 0x915e: "\xa4\x04\u915e", // 酞
+ 0x915f: "\xa4\x05\u915f", // 酟
+ 0x9160: "\xa4\x05\u9160", // 酠
+ 0x9161: "\xa4\x05\u9161", // 酡
+ 0x9162: "\xa4\x05\u9162", // 酢
+ 0x9163: "\xa4\x05\u9163", // 酣
+ 0x9164: "\xa4\x05\u9164", // 酤
+ 0x9165: "\xa4\x05\u9165", // 酥
+ 0x9166: "\xa4\x06\u9166", // 酦
+ 0x9167: "\xa4\x06\u9167", // 酧
+ 0x9168: "\xa4\x06\u9168", // 酨
+ 0x9169: "\xa4\x06\u9169", // 酩
+ 0x916a: "\xa4\x06\u916a", // 酪
+ 0x916b: "\xa4\x06\u916b", // 酫
+ 0x916c: "\xa4\x06\u916c", // 酬
+ 0x916d: "\xa4\x06\u916d", // 酭
+ 0x916e: "\xa4\x06\u916e", // 酮
+ 0x916f: "\xa4\x06\u916f", // 酯
+ 0x9170: "\xa4\x06\u9170", // 酰
+ 0x9171: "\xa4\x06\u9171", // 酱
+ 0x9172: "\xa4\a\u9172", // 酲
+ 0x9173: "\xa4\a\u9173", // 酳
+ 0x9174: "\xa4\a\u9174", // 酴
+ 0x9175: "\xa4\a\u9175", // 酵
+ 0x9176: "\xa4\a\u9176", // 酶
+ 0x9177: "\xa4\a\u9177", // 酷
+ 0x9178: "\xa4\a\u9178", // 酸
+ 0x9179: "\xa4\a\u9179", // 酹
+ 0x917a: "\xa4\a\u917a", // 酺
+ 0x917b: "\xa4\a\u917b", // 酻
+ 0x917c: "\xa4\a\u917c", // 酼
+ 0x917d: "\xa4\a\u917d", // 酽
+ 0x917e: "\xa4\a\u917e", // 酾
+ 0x917f: "\xa4\a\u917f", // 酿
+ 0x9180: "\xa4\b\u9180", // 醀
+ 0x9181: "\xa4\b\u9181", // 醁
+ 0x9182: "\xa4\b\u9182", // 醂
+ 0x9183: "\xa4\b\u9183", // 醃
+ 0x9184: "\xa4\b\u9184", // 醄
+ 0x9185: "\xa4\b\u9185", // 醅
+ 0x9186: "\xa4\b\u9186", // 醆
+ 0x9187: "\xa4\b\u9187", // 醇
+ 0x9188: "\xa4\b\u9188", // 醈
+ 0x9189: "\xa4\b\u9189", // 醉
+ 0x918a: "\xa4\b\u918a", // 醊
+ 0x918b: "\xa4\b\u918b", // 醋
+ 0x918c: "\xa4\b\u918c", // 醌
+ 0x918d: "\xa4\t\u918d", // 醍
+ 0x918e: "\xa4\t\u918e", // 醎
+ 0x918f: "\xa4\t\u918f", // 醏
+ 0x9190: "\xa4\t\u9190", // 醐
+ 0x9191: "\xa4\t\u9191", // 醑
+ 0x9192: "\xa4\t\u9192", // 醒
+ 0x9193: "\xa4\t\u9193", // 醓
+ 0x9194: "\xa4\t\u9194", // 醔
+ 0x9195: "\xa4\t\u9195", // 醕
+ 0x9196: "\xa4\t\u9196", // 醖
+ 0x9197: "\xa4\t\u9197", // 醗
+ 0x9198: "\xa4\n\u9198", // 醘
+ 0x9199: "\xa4\n\u9199", // 醙
+ 0x919a: "\xa4\n\u919a", // 醚
+ 0x919b: "\xa4\n\u919b", // 醛
+ 0x919c: "\xa4\n\u919c", // 醜
+ 0x919d: "\xa4\n\u919d", // 醝
+ 0x919e: "\xa4\n\u919e", // 醞
+ 0x919f: "\xa4\n\u919f", // 醟
+ 0x91a0: "\xa4\n\u91a0", // 醠
+ 0x91a1: "\xa4\n\u91a1", // 醡
+ 0x91a2: "\xa4\n\u91a2", // 醢
+ 0x91a3: "\xa4\n\u91a3", // 醣
+ 0x91a4: "\xa4\n\u91a4", // 醤
+ 0x91a5: "\xa4\v\u91a5", // 醥
+ 0x91a6: "\xa4\v\u91a6", // 醦
+ 0x91a7: "\xa4\v\u91a7", // 醧
+ 0x91a8: "\xa4\v\u91a8", // 醨
+ 0x91a9: "\xa4\v\u91a9", // 醩
+ 0x91aa: "\xa4\v\u91aa", // 醪
+ 0x91ab: "\xa4\v\u91ab", // 醫
+ 0x91ac: "\xa4\v\u91ac", // 醬
+ 0x91ad: "\xa4\f\u91ad", // 醭
+ 0x91ae: "\xa4\f\u91ae", // 醮
+ 0x91af: "\xa4\f\u91af", // 醯
+ 0x91b0: "\xa4\f\u91b0", // 醰
+ 0x91b1: "\xa4\f\u91b1", // 醱
+ 0x91b2: "\xa4\r\u91b2", // 醲
+ 0x91b3: "\xa4\r\u91b3", // 醳
+ 0x91b4: "\xa4\r\u91b4", // 醴
+ 0x91b5: "\xa4\r\u91b5", // 醵
+ 0x91b6: "\xa4\r\u91b6", // 醶
+ 0x91b7: "\xa4\r\u91b7", // 醷
+ 0x91b8: "\xa4\r\u91b8", // 醸
+ 0x91b9: "\xa4\x0e\u91b9", // 醹
+ 0x91ba: "\xa4\x0e\u91ba", // 醺
+ 0x91bb: "\xa4\x0e\u91bb", // 醻
+ 0x91bc: "\xa4\x10\u91bc", // 醼
+ 0x91bd: "\xa4\x11\u91bd", // 醽
+ 0x91be: "\xa4\x11\u91be", // 醾
+ 0x91bf: "\xa4\x11\u91bf", // 醿
+ 0x91c0: "\xa4\x11\u91c0", // 釀
+ 0x91c1: "\xa4\x12\u91c1", // 釁
+ 0x91c2: "\xa4\x12\u91c2", // 釂
+ 0x91c3: "\xa4\x13\u91c3", // 釃
+ 0x91c4: "\xa4\x13\u91c4", // 釄
+ 0x91c5: "\xa4\x14\u91c5", // 釅
+ 0x91c6: "\xa5\x00\u91c6", // 釆
+ 0x91c7: "\xa5\x01\u91c7", // 采
+ 0x91c8: "\xa5\x04\u91c8", // 釈
+ 0x91c9: "\xa5\x05\u91c9", // 釉
+ 0x91ca: "\xa5\x05\u91ca", // 释
+ 0x91cb: "\xa5\r\u91cb", // 釋
+ 0x91cc: "\xa6\x00\u91cc", // 里
+ 0x91cd: "\xa6\x02\u91cd", // 重
+ 0x91ce: "\xa6\x04\u91ce", // 野
+ 0x91cf: "\xa6\x05\u91cf", // 量
+ 0x91d0: "\xa6\v\u91d0", // 釐
+ 0x91d1: "\xa7\x00\u91d1", // 金
+ 0x91d2: "\xa7\x00\u91d2", // 釒
+ 0x91d3: "\xa7\x01\u91d3", // 釓
+ 0x91d4: "\xa7\x01\u91d4", // 釔
+ 0x91d5: "\xa7\x02\u91d5", // 釕
+ 0x91d6: "\xa7\x02\u91d6", // 釖
+ 0x91d7: "\xa7\x02\u91d7", // 釗
+ 0x91d8: "\xa7\x02\u91d8", // 釘
+ 0x91d9: "\xa7\x02\u91d9", // 釙
+ 0x91da: "\xa7\x02\u91da", // 釚
+ 0x91db: "\xa7\x02\u91db", // 釛
+ 0x91dc: "\xa7\x02\u91dc", // 釜
+ 0x91dd: "\xa7\x02\u91dd", // 針
+ 0x91de: "\xa7\x02\u91de", // 釞
+ 0x91df: "\xa7\x02\u91df", // 釟
+ 0x91e0: "\xa7\x02\u91e0", // 釠
+ 0x91e1: "\xa7\x02\u91e1", // 釡
+ 0x91e2: "\xa7\x02\u91e2", // 釢
+ 0x91e3: "\xa7\x03\u91e3", // 釣
+ 0x91e4: "\xa7\x03\u91e4", // 釤
+ 0x91e5: "\xa7\x03\u91e5", // 釥
+ 0x91e6: "\xa7\x03\u91e6", // 釦
+ 0x91e7: "\xa7\x03\u91e7", // 釧
+ 0x91e8: "\xa7\x03\u91e8", // 釨
+ 0x91e9: "\xa7\x03\u91e9", // 釩
+ 0x91ea: "\xa7\x03\u91ea", // 釪
+ 0x91eb: "\xa7\x03\u91eb", // 釫
+ 0x91ec: "\xa7\x03\u91ec", // 釬
+ 0x91ed: "\xa7\x03\u91ed", // 釭
+ 0x91ee: "\xa7\x03\u91ee", // 釮
+ 0x91ef: "\xa7\x03\u91ef", // 釯
+ 0x91f0: "\xa7\x03\u91f0", // 釰
+ 0x91f1: "\xa7\x03\u91f1", // 釱
+ 0x91f2: "\xa7\x03\u91f2", // 釲
+ 0x91f3: "\xa7\x03\u91f3", // 釳
+ 0x91f4: "\xa7\x03\u91f4", // 釴
+ 0x91f5: "\xa7\x03\u91f5", // 釵
+ 0x91f6: "\xa7\x03\u91f6", // 釶
+ 0x91f7: "\xa7\x03\u91f7", // 釷
+ 0x91f8: "\xa7\x03\u91f8", // 釸
+ 0x91f9: "\xa7\x03\u91f9", // 釹
+ 0x91fa: "\xa7\x03\u91fa", // 釺
+ 0x91fb: "\xa7\x03\u91fb", // 釻
+ 0x91fc: "\xa7\x03\u91fc", // 釼
+ 0x91fd: "\xa7\x04\u91fd", // 釽
+ 0x91fe: "\xa7\x04\u91fe", // 釾
+ 0x91ff: "\xa7\x04\u91ff", // 釿
+ 0x9200: "\xa7\x04\u9200", // 鈀
+ 0x9201: "\xa7\x04\u9201", // 鈁
+ 0x9202: "\xa7\x04\u9202", // 鈂
+ 0x9203: "\xa7\x04\u9203", // 鈃
+ 0x9204: "\xa7\x04\u9204", // 鈄
+ 0x9205: "\xa7\x04\u9205", // 鈅
+ 0x9206: "\xa7\x04\u9206", // 鈆
+ 0x9207: "\xa7\x04\u9207", // 鈇
+ 0x9208: "\xa7\x04\u9208", // 鈈
+ 0x9209: "\xa7\x04\u9209", // 鈉
+ 0x920a: "\xa7\x04\u920a", // 鈊
+ 0x920b: "\xa7\x04\u920b", // 鈋
+ 0x920c: "\xa7\x04\u920c", // 鈌
+ 0x920d: "\xa7\x04\u920d", // 鈍
+ 0x920e: "\xa7\x04\u920e", // 鈎
+ 0x920f: "\xa7\x04\u920f", // 鈏
+ 0x9210: "\xa7\x04\u9210", // 鈐
+ 0x9211: "\xa7\x04\u9211", // 鈑
+ 0x9212: "\xa7\x04\u9212", // 鈒
+ 0x9213: "\xa7\x04\u9213", // 鈓
+ 0x9214: "\xa7\x04\u9214", // 鈔
+ 0x9215: "\xa7\x04\u9215", // 鈕
+ 0x9216: "\xa7\x04\u9216", // 鈖
+ 0x9217: "\xa7\x04\u9217", // 鈗
+ 0x9218: "\xa7\x04\u9218", // 鈘
+ 0x9219: "\xa7\x04\u9219", // 鈙
+ 0x921a: "\xa7\x04\u921a", // 鈚
+ 0x921b: "\xa7\x04\u921b", // 鈛
+ 0x921c: "\xa7\x04\u921c", // 鈜
+ 0x921d: "\xa7\x04\u921d", // 鈝
+ 0x921e: "\xa7\x04\u921e", // 鈞
+ 0x921f: "\xa7\x04\u921f", // 鈟
+ 0x9220: "\xa7\x04\u9220", // 鈠
+ 0x9221: "\xa7\x04\u9221", // 鈡
+ 0x9222: "\xa7\x04\u9222", // 鈢
+ 0x9223: "\xa7\x04\u9223", // 鈣
+ 0x9224: "\xa7\x04\u9224", // 鈤
+ 0x9225: "\xa7\x04\u9225", // 鈥
+ 0x9226: "\xa7\x04\u9226", // 鈦
+ 0x9227: "\xa7\x04\u9227", // 鈧
+ 0x9228: "\xa7\x04\u9228", // 鈨
+ 0x9229: "\xa7\x04\u9229", // 鈩
+ 0x922a: "\xa7\x04\u922a", // 鈪
+ 0x922b: "\xa7\x04\u922b", // 鈫
+ 0x922c: "\xa7\x04\u922c", // 鈬
+ 0x922d: "\xa7\x05\u922d", // 鈭
+ 0x922e: "\xa7\x05\u922e", // 鈮
+ 0x922f: "\xa7\x05\u922f", // 鈯
+ 0x9230: "\xa7\x05\u9230", // 鈰
+ 0x9231: "\xa7\x05\u9231", // 鈱
+ 0x9232: "\xa7\x05\u9232", // 鈲
+ 0x9233: "\xa7\x05\u9233", // 鈳
+ 0x9234: "\xa7\x05\u9234", // 鈴
+ 0x9235: "\xa7\x05\u9235", // 鈵
+ 0x9236: "\xa7\x05\u9236", // 鈶
+ 0x9237: "\xa7\x05\u9237", // 鈷
+ 0x9238: "\xa7\x05\u9238", // 鈸
+ 0x9239: "\xa7\x05\u9239", // 鈹
+ 0x923a: "\xa7\x05\u923a", // 鈺
+ 0x923b: "\xa7\x05\u923b", // 鈻
+ 0x923c: "\xa7\x05\u923c", // 鈼
+ 0x923d: "\xa7\x05\u923d", // 鈽
+ 0x923e: "\xa7\x05\u923e", // 鈾
+ 0x923f: "\xa7\x05\u923f", // 鈿
+ 0x9240: "\xa7\x05\u9240", // 鉀
+ 0x9241: "\xa7\x05\u9241", // 鉁
+ 0x9242: "\xa7\x05\u9242", // 鉂
+ 0x9243: "\xa7\x05\u9243", // 鉃
+ 0x9244: "\xa7\x05\u9244", // 鉄
+ 0x9245: "\xa7\x05\u9245", // 鉅
+ 0x9246: "\xa7\x05\u9246", // 鉆
+ 0x9247: "\xa7\x05\u9247", // 鉇
+ 0x9248: "\xa7\x05\u9248", // 鉈
+ 0x9249: "\xa7\x05\u9249", // 鉉
+ 0x924a: "\xa7\x05\u924a", // 鉊
+ 0x924b: "\xa7\x05\u924b", // 鉋
+ 0x924c: "\xa7\x05\u924c", // 鉌
+ 0x924d: "\xa7\x05\u924d", // 鉍
+ 0x924e: "\xa7\x05\u924e", // 鉎
+ 0x924f: "\xa7\x05\u924f", // 鉏
+ 0x9250: "\xa7\x05\u9250", // 鉐
+ 0x9251: "\xa7\x05\u9251", // 鉑
+ 0x9252: "\xa7\x05\u9252", // 鉒
+ 0x9253: "\xa7\x05\u9253", // 鉓
+ 0x9254: "\xa7\x05\u9254", // 鉔
+ 0x9255: "\xa7\x05\u9255", // 鉕
+ 0x9256: "\xa7\x05\u9256", // 鉖
+ 0x9257: "\xa7\x05\u9257", // 鉗
+ 0x9258: "\xa7\x05\u9258", // 鉘
+ 0x9259: "\xa7\x05\u9259", // 鉙
+ 0x925a: "\xa7\x05\u925a", // 鉚
+ 0x925b: "\xa7\x05\u925b", // 鉛
+ 0x925c: "\xa7\x05\u925c", // 鉜
+ 0x925d: "\xa7\x05\u925d", // 鉝
+ 0x925e: "\xa7\x05\u925e", // 鉞
+ 0x925f: "\xa7\x05\u925f", // 鉟
+ 0x9260: "\xa7\x05\u9260", // 鉠
+ 0x9261: "\xa7\x05\u9261", // 鉡
+ 0x9262: "\xa7\x05\u9262", // 鉢
+ 0x9263: "\xa7\x05\u9263", // 鉣
+ 0x9264: "\xa7\x05\u9264", // 鉤
+ 0x9265: "\xa7\x05\u9265", // 鉥
+ 0x9266: "\xa7\x05\u9266", // 鉦
+ 0x9267: "\xa7\x05\u9267", // 鉧
+ 0x9268: "\xa7\x05\u9268", // 鉨
+ 0x9269: "\xa7\x05\u9269", // 鉩
+ 0x926a: "\xa7\x05\u926a", // 鉪
+ 0x926b: "\xa7\x05\u926b", // 鉫
+ 0x926c: "\xa7\x05\u926c", // 鉬
+ 0x926d: "\xa7\x05\u926d", // 鉭
+ 0x926e: "\xa7\x05\u926e", // 鉮
+ 0x926f: "\xa7\x05\u926f", // 鉯
+ 0x9270: "\xa7\x05\u9270", // 鉰
+ 0x9271: "\xa7\x05\u9271", // 鉱
+ 0x9272: "\xa7\x05\u9272", // 鉲
+ 0x9273: "\xa7\x05\u9273", // 鉳
+ 0x9274: "\xa7\x05\u9274", // 鉴
+ 0x9275: "\xa7\x06\u9275", // 鉵
+ 0x9276: "\xa7\x06\u9276", // 鉶
+ 0x9277: "\xa7\x06\u9277", // 鉷
+ 0x9278: "\xa7\x06\u9278", // 鉸
+ 0x9279: "\xa7\x06\u9279", // 鉹
+ 0x927a: "\xa7\x06\u927a", // 鉺
+ 0x927b: "\xa7\x06\u927b", // 鉻
+ 0x927c: "\xa7\b\u927c", // 鉼
+ 0x927d: "\xa7\x06\u927d", // 鉽
+ 0x927e: "\xa7\x06\u927e", // 鉾
+ 0x927f: "\xa7\x06\u927f", // 鉿
+ 0x9280: "\xa7\x06\u9280", // 銀
+ 0x9281: "\xa7\x06\u9281", // 銁
+ 0x9282: "\xa7\x06\u9282", // 銂
+ 0x9283: "\xa7\x06\u9283", // 銃
+ 0x9284: "\xa7\x06\u9284", // 銄
+ 0x9285: "\xa7\x06\u9285", // 銅
+ 0x9286: "\xa7\x06\u9286", // 銆
+ 0x9287: "\xa7\x06\u9287", // 銇
+ 0x9288: "\xa7\x06\u9288", // 銈
+ 0x9289: "\xa7\x06\u9289", // 銉
+ 0x928a: "\xa7\x06\u928a", // 銊
+ 0x928b: "\xa7\x06\u928b", // 銋
+ 0x928c: "\xa7\x06\u928c", // 銌
+ 0x928d: "\xa7\x06\u928d", // 銍
+ 0x928e: "\xa7\x06\u928e", // 銎
+ 0x928f: "\xa7\x05\u928f", // 銏
+ 0x9290: "\xa7\x06\u9290", // 銐
+ 0x9291: "\xa7\x06\u9291", // 銑
+ 0x9292: "\xa7\x06\u9292", // 銒
+ 0x9293: "\xa7\x06\u9293", // 銓
+ 0x9294: "\xa7\x06\u9294", // 銔
+ 0x9295: "\xa7\x06\u9295", // 銕
+ 0x9296: "\xa7\x06\u9296", // 銖
+ 0x9297: "\xa7\x06\u9297", // 銗
+ 0x9298: "\xa7\x06\u9298", // 銘
+ 0x9299: "\xa7\x06\u9299", // 銙
+ 0x929a: "\xa7\x06\u929a", // 銚
+ 0x929b: "\xa7\x06\u929b", // 銛
+ 0x929c: "\xa7\x06\u929c", // 銜
+ 0x929d: "\xa7\x06\u929d", // 銝
+ 0x929e: "\xa7\x06\u929e", // 銞
+ 0x929f: "\xa7\x06\u929f", // 銟
+ 0x92a0: "\xa7\x06\u92a0", // 銠
+ 0x92a1: "\xa7\x06\u92a1", // 銡
+ 0x92a2: "\xa7\x06\u92a2", // 銢
+ 0x92a3: "\xa7\x06\u92a3", // 銣
+ 0x92a4: "\xa7\x06\u92a4", // 銤
+ 0x92a5: "\xa7\x06\u92a5", // 銥
+ 0x92a6: "\xa7\x06\u92a6", // 銦
+ 0x92a7: "\xa7\x06\u92a7", // 銧
+ 0x92a8: "\xa7\x06\u92a8", // 銨
+ 0x92a9: "\xa7\x06\u92a9", // 銩
+ 0x92aa: "\xa7\x06\u92aa", // 銪
+ 0x92ab: "\xa7\x06\u92ab", // 銫
+ 0x92ac: "\xa7\x06\u92ac", // 銬
+ 0x92ad: "\xa7\x06\u92ad", // 銭
+ 0x92ae: "\xa7\x06\u92ae", // 銮
+ 0x92af: "\xa7\x06\u92af", // 銯
+ 0x92b0: "\xa7\x06\u92b0", // 銰
+ 0x92b1: "\xa7\x06\u92b1", // 銱
+ 0x92b2: "\xa7\a\u92b2", // 銲
+ 0x92b3: "\xa7\a\u92b3", // 銳
+ 0x92b4: "\xa7\a\u92b4", // 銴
+ 0x92b5: "\xa7\a\u92b5", // 銵
+ 0x92b6: "\xa7\a\u92b6", // 銶
+ 0x92b7: "\xa7\a\u92b7", // 銷
+ 0x92b8: "\xa7\a\u92b8", // 銸
+ 0x92b9: "\xa7\a\u92b9", // 銹
+ 0x92ba: "\xa7\a\u92ba", // 銺
+ 0x92bb: "\xa7\a\u92bb", // 銻
+ 0x92bc: "\xa7\a\u92bc", // 銼
+ 0x92bd: "\xa7\a\u92bd", // 銽
+ 0x92be: "\xa7\a\u92be", // 銾
+ 0x92bf: "\xa7\a\u92bf", // 銿
+ 0x92c0: "\xa7\a\u92c0", // 鋀
+ 0x92c1: "\xa7\a\u92c1", // 鋁
+ 0x92c2: "\xa7\a\u92c2", // 鋂
+ 0x92c3: "\xa7\a\u92c3", // 鋃
+ 0x92c4: "\xa7\a\u92c4", // 鋄
+ 0x92c5: "\xa7\a\u92c5", // 鋅
+ 0x92c6: "\xa7\a\u92c6", // 鋆
+ 0x92c7: "\xa7\a\u92c7", // 鋇
+ 0x92c8: "\xa7\a\u92c8", // 鋈
+ 0x92c9: "\xa7\a\u92c9", // 鋉
+ 0x92ca: "\xa7\a\u92ca", // 鋊
+ 0x92cb: "\xa7\a\u92cb", // 鋋
+ 0x92cc: "\xa7\a\u92cc", // 鋌
+ 0x92cd: "\xa7\a\u92cd", // 鋍
+ 0x92ce: "\xa7\a\u92ce", // 鋎
+ 0x92cf: "\xa7\a\u92cf", // 鋏
+ 0x92d0: "\xa7\a\u92d0", // 鋐
+ 0x92d1: "\xa7\a\u92d1", // 鋑
+ 0x92d2: "\xa7\a\u92d2", // 鋒
+ 0x92d3: "\xa7\a\u92d3", // 鋓
+ 0x92d4: "\xa7\a\u92d4", // 鋔
+ 0x92d5: "\xa7\a\u92d5", // 鋕
+ 0x92d6: "\xa7\a\u92d6", // 鋖
+ 0x92d7: "\xa7\a\u92d7", // 鋗
+ 0x92d8: "\xa7\a\u92d8", // 鋘
+ 0x92d9: "\xa7\a\u92d9", // 鋙
+ 0x92da: "\xa7\a\u92da", // 鋚
+ 0x92db: "\xa7\a\u92db", // 鋛
+ 0x92dc: "\xa7\a\u92dc", // 鋜
+ 0x92dd: "\xa7\a\u92dd", // 鋝
+ 0x92de: "\xa7\a\u92de", // 鋞
+ 0x92df: "\xa7\a\u92df", // 鋟
+ 0x92e0: "\xa7\a\u92e0", // 鋠
+ 0x92e1: "\xa7\a\u92e1", // 鋡
+ 0x92e2: "\xa7\a\u92e2", // 鋢
+ 0x92e3: "\xa7\a\u92e3", // 鋣
+ 0x92e4: "\xa7\a\u92e4", // 鋤
+ 0x92e5: "\xa7\a\u92e5", // 鋥
+ 0x92e6: "\xa7\a\u92e6", // 鋦
+ 0x92e7: "\xa7\a\u92e7", // 鋧
+ 0x92e8: "\xa7\a\u92e8", // 鋨
+ 0x92e9: "\xa7\a\u92e9", // 鋩
+ 0x92ea: "\xa7\a\u92ea", // 鋪
+ 0x92eb: "\xa7\a\u92eb", // 鋫
+ 0x92ec: "\xa7\a\u92ec", // 鋬
+ 0x92ed: "\xa7\a\u92ed", // 鋭
+ 0x92ee: "\xa7\a\u92ee", // 鋮
+ 0x92ef: "\xa7\a\u92ef", // 鋯
+ 0x92f0: "\xa7\a\u92f0", // 鋰
+ 0x92f1: "\xa7\a\u92f1", // 鋱
+ 0x92f2: "\xa7\a\u92f2", // 鋲
+ 0x92f3: "\xa7\a\u92f3", // 鋳
+ 0x92f4: "\xa7\a\u92f4", // 鋴
+ 0x92f5: "\xa7\a\u92f5", // 鋵
+ 0x92f6: "\xa7\a\u92f6", // 鋶
+ 0x92f7: "\xa7\b\u92f7", // 鋷
+ 0x92f8: "\xa7\b\u92f8", // 鋸
+ 0x92f9: "\xa7\b\u92f9", // 鋹
+ 0x92fa: "\xa7\b\u92fa", // 鋺
+ 0x92fb: "\xa7\b\u92fb", // 鋻
+ 0x92fc: "\xa7\b\u92fc", // 鋼
+ 0x92fd: "\xa7\b\u92fd", // 鋽
+ 0x92fe: "\xa7\b\u92fe", // 鋾
+ 0x92ff: "\xa7\b\u92ff", // 鋿
+ 0x9300: "\xa7\b\u9300", // 錀
+ 0x9301: "\xa7\b\u9301", // 錁
+ 0x9302: "\xa7\b\u9302", // 錂
+ 0x9303: "\xa7\b\u9303", // 錃
+ 0x9304: "\xa7\b\u9304", // 錄
+ 0x9305: "\xa7\b\u9305", // 錅
+ 0x9306: "\xa7\b\u9306", // 錆
+ 0x9307: "\xa7\b\u9307", // 錇
+ 0x9308: "\xa7\b\u9308", // 錈
+ 0x9309: "\xa7\b\u9309", // 錉
+ 0x930a: "\xa7\b\u930a", // 錊
+ 0x930b: "\xa7\b\u930b", // 錋
+ 0x930c: "\xa7\b\u930c", // 錌
+ 0x930d: "\xa7\b\u930d", // 錍
+ 0x930e: "\xa7\b\u930e", // 錎
+ 0x930f: "\xa7\b\u930f", // 錏
+ 0x9310: "\xa7\b\u9310", // 錐
+ 0x9311: "\xa7\b\u9311", // 錑
+ 0x9312: "\xa7\b\u9312", // 錒
+ 0x9313: "\xa7\b\u9313", // 錓
+ 0x9314: "\xa7\b\u9314", // 錔
+ 0x9315: "\xa7\b\u9315", // 錕
+ 0x9316: "\xa7\b\u9316", // 錖
+ 0x9317: "\xa7\b\u9317", // 錗
+ 0x9318: "\xa7\b\u9318", // 錘
+ 0x9319: "\xa7\b\u9319", // 錙
+ 0x931a: "\xa7\b\u931a", // 錚
+ 0x931b: "\xa7\b\u931b", // 錛
+ 0x931c: "\xa7\b\u931c", // 錜
+ 0x931d: "\xa7\b\u931d", // 錝
+ 0x931e: "\xa7\b\u931e", // 錞
+ 0x931f: "\xa7\b\u931f", // 錟
+ 0x9320: "\xa7\b\u9320", // 錠
+ 0x9321: "\xa7\b\u9321", // 錡
+ 0x9322: "\xa7\b\u9322", // 錢
+ 0x9323: "\xa7\b\u9323", // 錣
+ 0x9324: "\xa7\b\u9324", // 錤
+ 0x9325: "\xa7\b\u9325", // 錥
+ 0x9326: "\xa7\b\u9326", // 錦
+ 0x9327: "\xa7\b\u9327", // 錧
+ 0x9328: "\xa7\t\u9328", // 錨
+ 0x9329: "\xa7\b\u9329", // 錩
+ 0x932a: "\xa7\b\u932a", // 錪
+ 0x932b: "\xa7\b\u932b", // 錫
+ 0x932c: "\xa7\b\u932c", // 錬
+ 0x932d: "\xa7\b\u932d", // 錭
+ 0x932e: "\xa7\b\u932e", // 錮
+ 0x932f: "\xa7\b\u932f", // 錯
+ 0x9330: "\xa7\b\u9330", // 錰
+ 0x9331: "\xa7\b\u9331", // 錱
+ 0x9332: "\xa7\b\u9332", // 録
+ 0x9333: "\xa7\b\u9333", // 錳
+ 0x9334: "\xa7\b\u9334", // 錴
+ 0x9335: "\xa7\b\u9335", // 錵
+ 0x9336: "\xa7\b\u9336", // 錶
+ 0x9337: "\xa7\b\u9337", // 錷
+ 0x9338: "\xa7\b\u9338", // 錸
+ 0x9339: "\xa7\b\u9339", // 錹
+ 0x933a: "\xa7\b\u933a", // 錺
+ 0x933b: "\xa7\b\u933b", // 錻
+ 0x933c: "\xa7\b\u933c", // 錼
+ 0x933d: "\xa7\b\u933d", // 錽
+ 0x933e: "\xa7\b\u933e", // 錾
+ 0x933f: "\xa7\b\u933f", // 錿
+ 0x9340: "\xa7\b\u9340", // 鍀
+ 0x9341: "\xa7\b\u9341", // 鍁
+ 0x9342: "\xa7\b\u9342", // 鍂
+ 0x9343: "\xa7\b\u9343", // 鍃
+ 0x9344: "\xa7\b\u9344", // 鍄
+ 0x9345: "\xa7\b\u9345", // 鍅
+ 0x9346: "\xa7\b\u9346", // 鍆
+ 0x9347: "\xa7\t\u9347", // 鍇
+ 0x9348: "\xa7\b\u9348", // 鍈
+ 0x9349: "\xa7\t\u9349", // 鍉
+ 0x934a: "\xa7\t\u934a", // 鍊
+ 0x934b: "\xa7\t\u934b", // 鍋
+ 0x934c: "\xa7\t\u934c", // 鍌
+ 0x934d: "\xa7\t\u934d", // 鍍
+ 0x934e: "\xa7\t\u934e", // 鍎
+ 0x934f: "\xa7\t\u934f", // 鍏
+ 0x9350: "\xa7\t\u9350", // 鍐
+ 0x9351: "\xa7\t\u9351", // 鍑
+ 0x9352: "\xa7\t\u9352", // 鍒
+ 0x9353: "\xa7\t\u9353", // 鍓
+ 0x9354: "\xa7\t\u9354", // 鍔
+ 0x9355: "\xa7\t\u9355", // 鍕
+ 0x9356: "\xa7\t\u9356", // 鍖
+ 0x9357: "\xa7\t\u9357", // 鍗
+ 0x9358: "\xa7\t\u9358", // 鍘
+ 0x9359: "\xa7\t\u9359", // 鍙
+ 0x935a: "\xa7\t\u935a", // 鍚
+ 0x935b: "\xa7\t\u935b", // 鍛
+ 0x935c: "\xa7\t\u935c", // 鍜
+ 0x935d: "\xa7\t\u935d", // 鍝
+ 0x935e: "\xa7\t\u935e", // 鍞
+ 0x935f: "\xa7\t\u935f", // 鍟
+ 0x9360: "\xa7\t\u9360", // 鍠
+ 0x9361: "\xa7\t\u9361", // 鍡
+ 0x9362: "\xa7\t\u9362", // 鍢
+ 0x9363: "\xa7\t\u9363", // 鍣
+ 0x9364: "\xa7\t\u9364", // 鍤
+ 0x9365: "\xa7\t\u9365", // 鍥
+ 0x9366: "\xa7\t\u9366", // 鍦
+ 0x9367: "\xa7\t\u9367", // 鍧
+ 0x9368: "\xa7\t\u9368", // 鍨
+ 0x9369: "\xa7\t\u9369", // 鍩
+ 0x936a: "\xa7\t\u936a", // 鍪
+ 0x936b: "\xa7\t\u936b", // 鍫
+ 0x936c: "\xa7\t\u936c", // 鍬
+ 0x936d: "\xa7\t\u936d", // 鍭
+ 0x936e: "\xa7\t\u936e", // 鍮
+ 0x936f: "\xa7\t\u936f", // 鍯
+ 0x9370: "\xa7\t\u9370", // 鍰
+ 0x9371: "\xa7\t\u9371", // 鍱
+ 0x9372: "\xa7\t\u9372", // 鍲
+ 0x9373: "\xa7\t\u9373", // 鍳
+ 0x9374: "\xa7\t\u9374", // 鍴
+ 0x9375: "\xa7\t\u9375", // 鍵
+ 0x9376: "\xa7\t\u9376", // 鍶
+ 0x9377: "\xa7\t\u9377", // 鍷
+ 0x9378: "\xa7\t\u9378", // 鍸
+ 0x9379: "\xa7\t\u9379", // 鍹
+ 0x937a: "\xa7\t\u937a", // 鍺
+ 0x937b: "\xa7\t\u937b", // 鍻
+ 0x937c: "\xa7\t\u937c", // 鍼
+ 0x937d: "\xa7\t\u937d", // 鍽
+ 0x937e: "\xa7\t\u937e", // 鍾
+ 0x937f: "\xa7\t\u937f", // 鍿
+ 0x9380: "\xa7\t\u9380", // 鎀
+ 0x9381: "\xa7\t\u9381", // 鎁
+ 0x9382: "\xa7\t\u9382", // 鎂
+ 0x9383: "\xa7\t\u9383", // 鎃
+ 0x9384: "\xa7\t\u9384", // 鎄
+ 0x9385: "\xa7\t\u9385", // 鎅
+ 0x9386: "\xa7\t\u9386", // 鎆
+ 0x9387: "\xa7\t\u9387", // 鎇
+ 0x9388: "\xa7\n\u9388", // 鎈
+ 0x9389: "\xa7\n\u9389", // 鎉
+ 0x938a: "\xa7\n\u938a", // 鎊
+ 0x938b: "\xa7\n\u938b", // 鎋
+ 0x938c: "\xa7\n\u938c", // 鎌
+ 0x938d: "\xa7\n\u938d", // 鎍
+ 0x938e: "\xa7\n\u938e", // 鎎
+ 0x938f: "\xa7\n\u938f", // 鎏
+ 0x9390: "\xa7\n\u9390", // 鎐
+ 0x9391: "\xa7\n\u9391", // 鎑
+ 0x9392: "\xa7\n\u9392", // 鎒
+ 0x9393: "\xa7\n\u9393", // 鎓
+ 0x9394: "\xa7\n\u9394", // 鎔
+ 0x9395: "\xa7\n\u9395", // 鎕
+ 0x9396: "\xa7\n\u9396", // 鎖
+ 0x9397: "\xa7\n\u9397", // 鎗
+ 0x9398: "\xa7\n\u9398", // 鎘
+ 0x9399: "\xa7\n\u9399", // 鎙
+ 0x939a: "\xa7\n\u939a", // 鎚
+ 0x939b: "\xa7\n\u939b", // 鎛
+ 0x939c: "\xa7\n\u939c", // 鎜
+ 0x939d: "\xa7\n\u939d", // 鎝
+ 0x939e: "\xa7\n\u939e", // 鎞
+ 0x939f: "\xa7\n\u939f", // 鎟
+ 0x93a0: "\xa7\n\u93a0", // 鎠
+ 0x93a1: "\xa7\n\u93a1", // 鎡
+ 0x93a2: "\xa7\n\u93a2", // 鎢
+ 0x93a3: "\xa7\n\u93a3", // 鎣
+ 0x93a4: "\xa7\n\u93a4", // 鎤
+ 0x93a5: "\xa7\n\u93a5", // 鎥
+ 0x93a6: "\xa7\n\u93a6", // 鎦
+ 0x93a7: "\xa7\n\u93a7", // 鎧
+ 0x93a8: "\xa7\n\u93a8", // 鎨
+ 0x93a9: "\xa7\v\u93a9", // 鎩
+ 0x93aa: "\xa7\n\u93aa", // 鎪
+ 0x93ab: "\xa7\n\u93ab", // 鎫
+ 0x93ac: "\xa7\n\u93ac", // 鎬
+ 0x93ad: "\xa7\n\u93ad", // 鎭
+ 0x93ae: "\xa7\n\u93ae", // 鎮
+ 0x93af: "\xa7\n\u93af", // 鎯
+ 0x93b0: "\xa7\n\u93b0", // 鎰
+ 0x93b1: "\xa7\n\u93b1", // 鎱
+ 0x93b2: "\xa7\n\u93b2", // 鎲
+ 0x93b3: "\xa7\n\u93b3", // 鎳
+ 0x93b4: "\xa7\n\u93b4", // 鎴
+ 0x93b5: "\xa7\n\u93b5", // 鎵
+ 0x93b6: "\xa7\n\u93b6", // 鎶
+ 0x93b7: "\xa7\n\u93b7", // 鎷
+ 0x93b8: "\xa7\n\u93b8", // 鎸
+ 0x93b9: "\xa7\n\u93b9", // 鎹
+ 0x93ba: "\xa7\n\u93ba", // 鎺
+ 0x93bb: "\xa7\n\u93bb", // 鎻
+ 0x93bc: "\xa7\n\u93bc", // 鎼
+ 0x93bd: "\xa7\n\u93bd", // 鎽
+ 0x93be: "\xa7\n\u93be", // 鎾
+ 0x93bf: "\xa7\n\u93bf", // 鎿
+ 0x93c0: "\xa7\v\u93c0", // 鏀
+ 0x93c1: "\xa7\v\u93c1", // 鏁
+ 0x93c2: "\xa7\v\u93c2", // 鏂
+ 0x93c3: "\xa7\v\u93c3", // 鏃
+ 0x93c4: "\xa7\v\u93c4", // 鏄
+ 0x93c5: "\xa7\v\u93c5", // 鏅
+ 0x93c6: "\xa7\v\u93c6", // 鏆
+ 0x93c7: "\xa7\v\u93c7", // 鏇
+ 0x93c8: "\xa7\v\u93c8", // 鏈
+ 0x93c9: "\xa7\v\u93c9", // 鏉
+ 0x93ca: "\xa7\v\u93ca", // 鏊
+ 0x93cb: "\xa7\v\u93cb", // 鏋
+ 0x93cc: "\xa7\v\u93cc", // 鏌
+ 0x93cd: "\xa7\v\u93cd", // 鏍
+ 0x93ce: "\xa7\v\u93ce", // 鏎
+ 0x93cf: "\xa7\v\u93cf", // 鏏
+ 0x93d0: "\xa7\v\u93d0", // 鏐
+ 0x93d1: "\xa7\v\u93d1", // 鏑
+ 0x93d2: "\xa7\v\u93d2", // 鏒
+ 0x93d3: "\xa7\v\u93d3", // 鏓
+ 0x93d4: "\xa7\v\u93d4", // 鏔
+ 0x93d5: "\xa7\v\u93d5", // 鏕
+ 0x93d6: "\xa7\v\u93d6", // 鏖
+ 0x93d7: "\xa7\v\u93d7", // 鏗
+ 0x93d8: "\xa7\v\u93d8", // 鏘
+ 0x93d9: "\xa7\v\u93d9", // 鏙
+ 0x93da: "\xa7\v\u93da", // 鏚
+ 0x93db: "\xa7\v\u93db", // 鏛
+ 0x93dc: "\xa7\v\u93dc", // 鏜
+ 0x93dd: "\xa7\v\u93dd", // 鏝
+ 0x93de: "\xa7\v\u93de", // 鏞
+ 0x93df: "\xa7\v\u93df", // 鏟
+ 0x93e0: "\xa7\v\u93e0", // 鏠
+ 0x93e1: "\xa7\v\u93e1", // 鏡
+ 0x93e2: "\xa7\v\u93e2", // 鏢
+ 0x93e3: "\xa7\v\u93e3", // 鏣
+ 0x93e4: "\xa7\v\u93e4", // 鏤
+ 0x93e5: "\xa7\v\u93e5", // 鏥
+ 0x93e6: "\xa7\v\u93e6", // 鏦
+ 0x93e7: "\xa7\v\u93e7", // 鏧
+ 0x93e8: "\xa7\v\u93e8", // 鏨
+ 0x93e9: "\xa7\v\u93e9", // 鏩
+ 0x93ea: "\xa7\v\u93ea", // 鏪
+ 0x93eb: "\xa7\v\u93eb", // 鏫
+ 0x93ec: "\xa7\v\u93ec", // 鏬
+ 0x93ed: "\xa7\v\u93ed", // 鏭
+ 0x93ee: "\xa7\v\u93ee", // 鏮
+ 0x93ef: "\xa7\v\u93ef", // 鏯
+ 0x93f0: "\xa7\v\u93f0", // 鏰
+ 0x93f1: "\xa7\v\u93f1", // 鏱
+ 0x93f2: "\xa7\v\u93f2", // 鏲
+ 0x93f3: "\xa7\f\u93f3", // 鏳
+ 0x93f4: "\xa7\r\u93f4", // 鏴
+ 0x93f5: "\xa7\f\u93f5", // 鏵
+ 0x93f6: "\xa7\f\u93f6", // 鏶
+ 0x93f7: "\xa7\f\u93f7", // 鏷
+ 0x93f8: "\xa7\f\u93f8", // 鏸
+ 0x93f9: "\xa7\v\u93f9", // 鏹
+ 0x93fa: "\xa7\f\u93fa", // 鏺
+ 0x93fb: "\xa7\f\u93fb", // 鏻
+ 0x93fc: "\xa7\f\u93fc", // 鏼
+ 0x93fd: "\xa7\f\u93fd", // 鏽
+ 0x93fe: "\xa7\f\u93fe", // 鏾
+ 0x93ff: "\xa7\f\u93ff", // 鏿
+ 0x9400: "\xa7\f\u9400", // 鐀
+ 0x9401: "\xa7\f\u9401", // 鐁
+ 0x9402: "\xa7\f\u9402", // 鐂
+ 0x9403: "\xa7\f\u9403", // 鐃
+ 0x9404: "\xa7\f\u9404", // 鐄
+ 0x9405: "\xa7\f\u9405", // 鐅
+ 0x9406: "\xa7\f\u9406", // 鐆
+ 0x9407: "\xa7\f\u9407", // 鐇
+ 0x9408: "\xa7\f\u9408", // 鐈
+ 0x9409: "\xa7\f\u9409", // 鐉
+ 0x940a: "\xa7\f\u940a", // 鐊
+ 0x940b: "\xa7\f\u940b", // 鐋
+ 0x940c: "\xa7\f\u940c", // 鐌
+ 0x940d: "\xa7\f\u940d", // 鐍
+ 0x940e: "\xa7\f\u940e", // 鐎
+ 0x940f: "\xa7\f\u940f", // 鐏
+ 0x9410: "\xa7\f\u9410", // 鐐
+ 0x9411: "\xa7\f\u9411", // 鐑
+ 0x9412: "\xa7\f\u9412", // 鐒
+ 0x9413: "\xa7\f\u9413", // 鐓
+ 0x9414: "\xa7\f\u9414", // 鐔
+ 0x9415: "\xa7\f\u9415", // 鐕
+ 0x9416: "\xa7\f\u9416", // 鐖
+ 0x9417: "\xa7\f\u9417", // 鐗
+ 0x9418: "\xa7\f\u9418", // 鐘
+ 0x9419: "\xa7\f\u9419", // 鐙
+ 0x941a: "\xa7\f\u941a", // 鐚
+ 0x941b: "\xa7\f\u941b", // 鐛
+ 0x941c: "\xa7\f\u941c", // 鐜
+ 0x941d: "\xa7\f\u941d", // 鐝
+ 0x941e: "\xa7\f\u941e", // 鐞
+ 0x941f: "\xa7\f\u941f", // 鐟
+ 0x9420: "\xa7\f\u9420", // 鐠
+ 0x9421: "\xa7\f\u9421", // 鐡
+ 0x9422: "\xa7\f\u9422", // 鐢
+ 0x9423: "\xa7\f\u9423", // 鐣
+ 0x9424: "\xa7\f\u9424", // 鐤
+ 0x9425: "\xa7\f\u9425", // 鐥
+ 0x9426: "\xa7\f\u9426", // 鐦
+ 0x9427: "\xa7\f\u9427", // 鐧
+ 0x9428: "\xa7\f\u9428", // 鐨
+ 0x9429: "\xa7\r\u9429", // 鐩
+ 0x942a: "\xa7\r\u942a", // 鐪
+ 0x942b: "\xa7\r\u942b", // 鐫
+ 0x942c: "\xa7\r\u942c", // 鐬
+ 0x942d: "\xa7\r\u942d", // 鐭
+ 0x942e: "\xa7\r\u942e", // 鐮
+ 0x942f: "\xa7\r\u942f", // 鐯
+ 0x9430: "\xa7\r\u9430", // 鐰
+ 0x9431: "\xa7\r\u9431", // 鐱
+ 0x9432: "\xa7\r\u9432", // 鐲
+ 0x9433: "\xa7\r\u9433", // 鐳
+ 0x9434: "\xa7\r\u9434", // 鐴
+ 0x9435: "\xa7\r\u9435", // 鐵
+ 0x9436: "\xa7\r\u9436", // 鐶
+ 0x9437: "\xa7\r\u9437", // 鐷
+ 0x9438: "\xa7\r\u9438", // 鐸
+ 0x9439: "\xa7\r\u9439", // 鐹
+ 0x943a: "\xa7\r\u943a", // 鐺
+ 0x943b: "\xa7\r\u943b", // 鐻
+ 0x943c: "\xa7\r\u943c", // 鐼
+ 0x943d: "\xa7\r\u943d", // 鐽
+ 0x943e: "\xa7\r\u943e", // 鐾
+ 0x943f: "\xa7\r\u943f", // 鐿
+ 0x9440: "\xa7\r\u9440", // 鑀
+ 0x9441: "\xa7\r\u9441", // 鑁
+ 0x9442: "\xa7\x0e\u9442", // 鑂
+ 0x9443: "\xa7\x0e\u9443", // 鑃
+ 0x9444: "\xa7\x0e\u9444", // 鑄
+ 0x9445: "\xa7\x0e\u9445", // 鑅
+ 0x9446: "\xa7\x0e\u9446", // 鑆
+ 0x9447: "\xa7\x0e\u9447", // 鑇
+ 0x9448: "\xa7\x0e\u9448", // 鑈
+ 0x9449: "\xa7\x0e\u9449", // 鑉
+ 0x944a: "\xa7\x0e\u944a", // 鑊
+ 0x944b: "\xa7\x0e\u944b", // 鑋
+ 0x944c: "\xa7\x0e\u944c", // 鑌
+ 0x944d: "\xa7\x0e\u944d", // 鑍
+ 0x944e: "\xa7\x0e\u944e", // 鑎
+ 0x944f: "\xa7\x0e\u944f", // 鑏
+ 0x9450: "\xa7\x0e\u9450", // 鑐
+ 0x9451: "\xa7\x0e\u9451", // 鑑
+ 0x9452: "\xa7\x0e\u9452", // 鑒
+ 0x9453: "\xa7\x0e\u9453", // 鑓
+ 0x9454: "\xa7\x0e\u9454", // 鑔
+ 0x9455: "\xa7\x0f\u9455", // 鑕
+ 0x9456: "\xa7\x0f\u9456", // 鑖
+ 0x9457: "\xa7\x0f\u9457", // 鑗
+ 0x9458: "\xa7\x0f\u9458", // 鑘
+ 0x9459: "\xa7\x0f\u9459", // 鑙
+ 0x945a: "\xa7\x0f\u945a", // 鑚
+ 0x945b: "\xa7\x0f\u945b", // 鑛
+ 0x945c: "\xa7\x0f\u945c", // 鑜
+ 0x945d: "\xa7\x0f\u945d", // 鑝
+ 0x945e: "\xa7\x0f\u945e", // 鑞
+ 0x945f: "\xa7\x0f\u945f", // 鑟
+ 0x9460: "\xa7\x0f\u9460", // 鑠
+ 0x9461: "\xa7\x0f\u9461", // 鑡
+ 0x9462: "\xa7\x0f\u9462", // 鑢
+ 0x9463: "\xa7\x0f\u9463", // 鑣
+ 0x9464: "\xa7\x0f\u9464", // 鑤
+ 0x9465: "\xa7\x0f\u9465", // 鑥
+ 0x9466: "\xa7\x0f\u9466", // 鑦
+ 0x9467: "\xa7\x0e\u9467", // 鑧
+ 0x9468: "\xa7\x10\u9468", // 鑨
+ 0x9469: "\xa7\x10\u9469", // 鑩
+ 0x946a: "\xa7\x10\u946a", // 鑪
+ 0x946b: "\xa7\x10\u946b", // 鑫
+ 0x946c: "\xa7\x10\u946c", // 鑬
+ 0x946d: "\xa7\x11\u946d", // 鑭
+ 0x946e: "\xa7\x11\u946e", // 鑮
+ 0x946f: "\xa7\x11\u946f", // 鑯
+ 0x9470: "\xa7\x11\u9470", // 鑰
+ 0x9471: "\xa7\x11\u9471", // 鑱
+ 0x9472: "\xa7\x11\u9472", // 鑲
+ 0x9473: "\xa7\x11\u9473", // 鑳
+ 0x9474: "\xa7\x12\u9474", // 鑴
+ 0x9475: "\xa7\x12\u9475", // 鑵
+ 0x9476: "\xa7\x12\u9476", // 鑶
+ 0x9477: "\xa7\x12\u9477", // 鑷
+ 0x9478: "\xa7\x12\u9478", // 鑸
+ 0x9479: "\xa7\x12\u9479", // 鑹
+ 0x947a: "\xa7\x12\u947a", // 鑺
+ 0x947b: "\xa7\x13\u947b", // 鑻
+ 0x947c: "\xa7\x13\u947c", // 鑼
+ 0x947d: "\xa7\x13\u947d", // 鑽
+ 0x947e: "\xa7\x13\u947e", // 鑾
+ 0x947f: "\xa7\x13\u947f", // 鑿
+ 0x9480: "\xa7\x14\u9480", // 钀
+ 0x9481: "\xa7\x14\u9481", // 钁
+ 0x9482: "\xa7\x14\u9482", // 钂
+ 0x9483: "\xa7\x15\u9483", // 钃
+ 0x9484: "\xa7\x15\u9484", // 钄
+ 0x9485: "\xa7\x00\u9485", // 钅
+ 0x9486: "\xa7\x01\u9486", // 钆
+ 0x9487: "\xa7\x01\u9487", // 钇
+ 0x9488: "\xa7\x02\u9488", // 针
+ 0x9489: "\xa7\x02\u9489", // 钉
+ 0x948a: "\xa7\x02\u948a", // 钊
+ 0x948b: "\xa7\x02\u948b", // 钋
+ 0x948c: "\xa7\x02\u948c", // 钌
+ 0x948d: "\xa7\x03\u948d", // 钍
+ 0x948e: "\xa7\x03\u948e", // 钎
+ 0x948f: "\xa7\x03\u948f", // 钏
+ 0x9490: "\xa7\x03\u9490", // 钐
+ 0x9491: "\xa7\x03\u9491", // 钑
+ 0x9492: "\xa7\x03\u9492", // 钒
+ 0x9493: "\xa7\x03\u9493", // 钓
+ 0x9494: "\xa7\x03\u9494", // 钔
+ 0x9495: "\xa7\x03\u9495", // 钕
+ 0x9496: "\xa7\x03\u9496", // 钖
+ 0x9497: "\xa7\x03\u9497", // 钗
+ 0x9498: "\xa7\x04\u9498", // 钘
+ 0x9499: "\xa7\x04\u9499", // 钙
+ 0x949a: "\xa7\x04\u949a", // 钚
+ 0x949b: "\xa7\x04\u949b", // 钛
+ 0x949c: "\xa7\x04\u949c", // 钜
+ 0x949d: "\xa7\x04\u949d", // 钝
+ 0x949e: "\xa7\x04\u949e", // 钞
+ 0x949f: "\xa7\x04\u949f", // 钟
+ 0x94a0: "\xa7\x04\u94a0", // 钠
+ 0x94a1: "\xa7\x04\u94a1", // 钡
+ 0x94a2: "\xa7\x04\u94a2", // 钢
+ 0x94a3: "\xa7\x04\u94a3", // 钣
+ 0x94a4: "\xa7\x04\u94a4", // 钤
+ 0x94a5: "\xa7\x04\u94a5", // 钥
+ 0x94a6: "\xa7\x04\u94a6", // 钦
+ 0x94a7: "\xa7\x04\u94a7", // 钧
+ 0x94a8: "\xa7\x04\u94a8", // 钨
+ 0x94a9: "\xa7\x04\u94a9", // 钩
+ 0x94aa: "\xa7\x04\u94aa", // 钪
+ 0x94ab: "\xa7\x04\u94ab", // 钫
+ 0x94ac: "\xa7\x04\u94ac", // 钬
+ 0x94ad: "\xa7\x04\u94ad", // 钭
+ 0x94ae: "\xa7\x04\u94ae", // 钮
+ 0x94af: "\xa7\x04\u94af", // 钯
+ 0x94b0: "\xa7\x05\u94b0", // 钰
+ 0x94b1: "\xa7\x05\u94b1", // 钱
+ 0x94b2: "\xa7\x05\u94b2", // 钲
+ 0x94b3: "\xa7\x05\u94b3", // 钳
+ 0x94b4: "\xa7\x05\u94b4", // 钴
+ 0x94b5: "\xa7\x05\u94b5", // 钵
+ 0x94b6: "\xa7\x05\u94b6", // 钶
+ 0x94b7: "\xa7\x05\u94b7", // 钷
+ 0x94b8: "\xa7\x05\u94b8", // 钸
+ 0x94b9: "\xa7\x05\u94b9", // 钹
+ 0x94ba: "\xa7\x05\u94ba", // 钺
+ 0x94bb: "\xa7\x05\u94bb", // 钻
+ 0x94bc: "\xa7\x05\u94bc", // 钼
+ 0x94bd: "\xa7\x05\u94bd", // 钽
+ 0x94be: "\xa7\x05\u94be", // 钾
+ 0x94bf: "\xa7\x05\u94bf", // 钿
+ 0x94c0: "\xa7\x05\u94c0", // 铀
+ 0x94c1: "\xa7\x05\u94c1", // 铁
+ 0x94c2: "\xa7\x05\u94c2", // 铂
+ 0x94c3: "\xa7\x05\u94c3", // 铃
+ 0x94c4: "\xa7\x05\u94c4", // 铄
+ 0x94c5: "\xa7\x05\u94c5", // 铅
+ 0x94c6: "\xa7\x05\u94c6", // 铆
+ 0x94c7: "\xa7\x05\u94c7", // 铇
+ 0x94c8: "\xa7\x05\u94c8", // 铈
+ 0x94c9: "\xa7\x05\u94c9", // 铉
+ 0x94ca: "\xa7\x05\u94ca", // 铊
+ 0x94cb: "\xa7\x05\u94cb", // 铋
+ 0x94cc: "\xa7\x05\u94cc", // 铌
+ 0x94cd: "\xa7\x05\u94cd", // 铍
+ 0x94ce: "\xa7\x05\u94ce", // 铎
+ 0x94cf: "\xa7\x06\u94cf", // 铏
+ 0x94d0: "\xa7\x06\u94d0", // 铐
+ 0x94d1: "\xa7\x06\u94d1", // 铑
+ 0x94d2: "\xa7\x06\u94d2", // 铒
+ 0x94d3: "\xa7\x06\u94d3", // 铓
+ 0x94d4: "\xa7\x06\u94d4", // 铔
+ 0x94d5: "\xa7\x06\u94d5", // 铕
+ 0x94d6: "\xa7\x06\u94d6", // 铖
+ 0x94d7: "\xa7\x06\u94d7", // 铗
+ 0x94d8: "\xa7\x06\u94d8", // 铘
+ 0x94d9: "\xa7\x06\u94d9", // 铙
+ 0x94da: "\xa7\x06\u94da", // 铚
+ 0x94db: "\xa7\x06\u94db", // 铛
+ 0x94dc: "\xa7\x06\u94dc", // 铜
+ 0x94dd: "\xa7\x06\u94dd", // 铝
+ 0x94de: "\xa7\x06\u94de", // 铞
+ 0x94df: "\xa7\x06\u94df", // 铟
+ 0x94e0: "\xa7\x06\u94e0", // 铠
+ 0x94e1: "\xa7\x06\u94e1", // 铡
+ 0x94e2: "\xa7\x06\u94e2", // 铢
+ 0x94e3: "\xa7\x06\u94e3", // 铣
+ 0x94e4: "\xa7\x06\u94e4", // 铤
+ 0x94e5: "\xa7\x06\u94e5", // 铥
+ 0x94e6: "\xa7\x06\u94e6", // 铦
+ 0x94e7: "\xa7\x06\u94e7", // 铧
+ 0x94e8: "\xa7\x06\u94e8", // 铨
+ 0x94e9: "\xa7\x06\u94e9", // 铩
+ 0x94ea: "\xa7\x06\u94ea", // 铪
+ 0x94eb: "\xa7\x06\u94eb", // 铫
+ 0x94ec: "\xa7\x06\u94ec", // 铬
+ 0x94ed: "\xa7\x06\u94ed", // 铭
+ 0x94ee: "\xa7\x06\u94ee", // 铮
+ 0x94ef: "\xa7\x06\u94ef", // 铯
+ 0x94f0: "\xa7\x06\u94f0", // 铰
+ 0x94f1: "\xa7\x06\u94f1", // 铱
+ 0x94f2: "\xa7\x06\u94f2", // 铲
+ 0x94f3: "\xa7\x06\u94f3", // 铳
+ 0x94f4: "\xa7\x06\u94f4", // 铴
+ 0x94f5: "\xa7\x06\u94f5", // 铵
+ 0x94f6: "\xa7\x06\u94f6", // 银
+ 0x94f7: "\xa7\x06\u94f7", // 铷
+ 0x94f8: "\xa7\a\u94f8", // 铸
+ 0x94f9: "\xa7\a\u94f9", // 铹
+ 0x94fa: "\xa7\a\u94fa", // 铺
+ 0x94fb: "\xa7\a\u94fb", // 铻
+ 0x94fc: "\xa7\a\u94fc", // 铼
+ 0x94fd: "\xa7\a\u94fd", // 铽
+ 0x94fe: "\xa7\a\u94fe", // 链
+ 0x94ff: "\xa7\a\u94ff", // 铿
+ 0x9500: "\xa7\a\u9500", // 销
+ 0x9501: "\xa7\a\u9501", // 锁
+ 0x9502: "\xa7\a\u9502", // 锂
+ 0x9503: "\xa7\a\u9503", // 锃
+ 0x9504: "\xa7\a\u9504", // 锄
+ 0x9505: "\xa7\a\u9505", // 锅
+ 0x9506: "\xa7\a\u9506", // 锆
+ 0x9507: "\xa7\a\u9507", // 锇
+ 0x9508: "\xa7\a\u9508", // 锈
+ 0x9509: "\xa7\a\u9509", // 锉
+ 0x950a: "\xa7\a\u950a", // 锊
+ 0x950b: "\xa7\a\u950b", // 锋
+ 0x950c: "\xa7\a\u950c", // 锌
+ 0x950d: "\xa7\a\u950d", // 锍
+ 0x950e: "\xa7\a\u950e", // 锎
+ 0x950f: "\xa7\a\u950f", // 锏
+ 0x9510: "\xa7\a\u9510", // 锐
+ 0x9511: "\xa7\a\u9511", // 锑
+ 0x9512: "\xa7\a\u9512", // 锒
+ 0x9513: "\xa7\a\u9513", // 锓
+ 0x9514: "\xa7\a\u9514", // 锔
+ 0x9515: "\xa7\a\u9515", // 锕
+ 0x9516: "\xa7\b\u9516", // 锖
+ 0x9517: "\xa7\b\u9517", // 锗
+ 0x9518: "\xa7\b\u9518", // 锘
+ 0x9519: "\xa7\b\u9519", // 错
+ 0x951a: "\xa7\b\u951a", // 锚
+ 0x951b: "\xa7\b\u951b", // 锛
+ 0x951c: "\xa7\b\u951c", // 锜
+ 0x951d: "\xa7\b\u951d", // 锝
+ 0x951e: "\xa7\b\u951e", // 锞
+ 0x951f: "\xa7\b\u951f", // 锟
+ 0x9520: "\xa7\b\u9520", // 锠
+ 0x9521: "\xa7\b\u9521", // 锡
+ 0x9522: "\xa7\b\u9522", // 锢
+ 0x9523: "\xa7\b\u9523", // 锣
+ 0x9524: "\xa7\b\u9524", // 锤
+ 0x9525: "\xa7\b\u9525", // 锥
+ 0x9526: "\xa7\b\u9526", // 锦
+ 0x9527: "\xa7\b\u9527", // 锧
+ 0x9528: "\xa7\b\u9528", // 锨
+ 0x9529: "\xa7\b\u9529", // 锩
+ 0x952a: "\xa7\b\u952a", // 锪
+ 0x952b: "\xa7\b\u952b", // 锫
+ 0x952c: "\xa7\b\u952c", // 锬
+ 0x952d: "\xa7\b\u952d", // 锭
+ 0x952e: "\xa7\b\u952e", // 键
+ 0x952f: "\xa7\b\u952f", // 锯
+ 0x9530: "\xa7\b\u9530", // 锰
+ 0x9531: "\xa7\b\u9531", // 锱
+ 0x9532: "\xa7\t\u9532", // 锲
+ 0x9533: "\xa7\t\u9533", // 锳
+ 0x9534: "\xa7\t\u9534", // 锴
+ 0x9535: "\xa7\t\u9535", // 锵
+ 0x9536: "\xa7\t\u9536", // 锶
+ 0x9537: "\xa7\t\u9537", // 锷
+ 0x9538: "\xa7\t\u9538", // 锸
+ 0x9539: "\xa7\t\u9539", // 锹
+ 0x953a: "\xa7\t\u953a", // 锺
+ 0x953b: "\xa7\t\u953b", // 锻
+ 0x953c: "\xa7\t\u953c", // 锼
+ 0x953d: "\xa7\t\u953d", // 锽
+ 0x953e: "\xa7\t\u953e", // 锾
+ 0x953f: "\xa7\t\u953f", // 锿
+ 0x9540: "\xa7\t\u9540", // 镀
+ 0x9541: "\xa7\t\u9541", // 镁
+ 0x9542: "\xa7\t\u9542", // 镂
+ 0x9543: "\xa7\t\u9543", // 镃
+ 0x9544: "\xa7\t\u9544", // 镄
+ 0x9545: "\xa7\t\u9545", // 镅
+ 0x9546: "\xa7\n\u9546", // 镆
+ 0x9547: "\xa7\n\u9547", // 镇
+ 0x9548: "\xa7\n\u9548", // 镈
+ 0x9549: "\xa7\n\u9549", // 镉
+ 0x954a: "\xa7\n\u954a", // 镊
+ 0x954b: "\xa7\n\u954b", // 镋
+ 0x954c: "\xa7\n\u954c", // 镌
+ 0x954d: "\xa7\n\u954d", // 镍
+ 0x954e: "\xa7\n\u954e", // 镎
+ 0x954f: "\xa7\n\u954f", // 镏
+ 0x9550: "\xa7\n\u9550", // 镐
+ 0x9551: "\xa7\n\u9551", // 镑
+ 0x9552: "\xa7\n\u9552", // 镒
+ 0x9553: "\xa7\n\u9553", // 镓
+ 0x9554: "\xa7\n\u9554", // 镔
+ 0x9555: "\xa7\n\u9555", // 镕
+ 0x9556: "\xa7\v\u9556", // 镖
+ 0x9557: "\xa7\v\u9557", // 镗
+ 0x9558: "\xa7\v\u9558", // 镘
+ 0x9559: "\xa7\v\u9559", // 镙
+ 0x955a: "\xa7\v\u955a", // 镚
+ 0x955b: "\xa7\v\u955b", // 镛
+ 0x955c: "\xa7\v\u955c", // 镜
+ 0x955d: "\xa7\v\u955d", // 镝
+ 0x955e: "\xa7\v\u955e", // 镞
+ 0x955f: "\xa7\v\u955f", // 镟
+ 0x9560: "\xa7\v\u9560", // 镠
+ 0x9561: "\xa7\f\u9561", // 镡
+ 0x9562: "\xa7\f\u9562", // 镢
+ 0x9563: "\xa7\f\u9563", // 镣
+ 0x9564: "\xa7\f\u9564", // 镤
+ 0x9565: "\xa7\f\u9565", // 镥
+ 0x9566: "\xa7\f\u9566", // 镦
+ 0x9567: "\xa7\f\u9567", // 镧
+ 0x9568: "\xa7\f\u9568", // 镨
+ 0x9569: "\xa7\f\u9569", // 镩
+ 0x956a: "\xa7\f\u956a", // 镪
+ 0x956b: "\xa7\f\u956b", // 镫
+ 0x956c: "\xa7\r\u956c", // 镬
+ 0x956d: "\xa7\r\u956d", // 镭
+ 0x956e: "\xa7\r\u956e", // 镮
+ 0x956f: "\xa7\r\u956f", // 镯
+ 0x9570: "\xa7\r\u9570", // 镰
+ 0x9571: "\xa7\r\u9571", // 镱
+ 0x9572: "\xa7\x0e\u9572", // 镲
+ 0x9573: "\xa7\x0f\u9573", // 镳
+ 0x9574: "\xa7\x0f\u9574", // 镴
+ 0x9575: "\xa7\x11\u9575", // 镵
+ 0x9576: "\xa7\x11\u9576", // 镶
+ 0x9577: "\xa8\x00\u9577", // 長
+ 0x9578: "\xa8\x00\u9578", // 镸
+ 0x9579: "\xa8\x03\u9579", // 镹
+ 0x957a: "\xa8\x04\u957a", // 镺
+ 0x957b: "\xa8\x05\u957b", // 镻
+ 0x957c: "\xa8\b\u957c", // 镼
+ 0x957d: "\xa8\f\u957d", // 镽
+ 0x957e: "\xa8\x0e\u957e", // 镾
+ 0x957f: "\xa8\x00\u957f", // 长
+ 0x9580: "\xa9\x00\u9580", // 門
+ 0x9581: "\xa9\x01\u9581", // 閁
+ 0x9582: "\xa9\x01\u9582", // 閂
+ 0x9583: "\xa9\x02\u9583", // 閃
+ 0x9584: "\xa9\x02\u9584", // 閄
+ 0x9585: "\xa9\x02\u9585", // 閅
+ 0x9586: "\xa9\x03\u9586", // 閆
+ 0x9587: "\xa9\x03\u9587", // 閇
+ 0x9588: "\xa9\x03\u9588", // 閈
+ 0x9589: "\xa9\x03\u9589", // 閉
+ 0x958a: "\xa9\x03\u958a", // 閊
+ 0x958b: "\xa9\x04\u958b", // 開
+ 0x958c: "\xa9\x04\u958c", // 閌
+ 0x958d: "\xa9\x04\u958d", // 閍
+ 0x958e: "\xa9\x04\u958e", // 閎
+ 0x958f: "\xa9\x04\u958f", // 閏
+ 0x9590: "\xa9\x04\u9590", // 閐
+ 0x9591: "\xa9\x04\u9591", // 閑
+ 0x9592: "\xa9\x04\u9592", // 閒
+ 0x9593: "\xa9\x04\u9593", // 間
+ 0x9594: "\xa9\x04\u9594", // 閔
+ 0x9595: "\xa9\x04\u9595", // 閕
+ 0x9596: "\xa9\x04\u9596", // 閖
+ 0x9597: "\xa9\x04\u9597", // 閗
+ 0x9598: "\xa9\x05\u9598", // 閘
+ 0x9599: "\xa9\x05\u9599", // 閙
+ 0x959a: "\xa9\x05\u959a", // 閚
+ 0x959b: "\xa9\x05\u959b", // 閛
+ 0x959c: "\xa9\x05\u959c", // 閜
+ 0x959d: "\xa9\x05\u959d", // 閝
+ 0x959e: "\xa9\x05\u959e", // 閞
+ 0x959f: "\xa9\x05\u959f", // 閟
+ 0x95a0: "\xa9\x05\u95a0", // 閠
+ 0x95a1: "\xa9\x06\u95a1", // 閡
+ 0x95a2: "\xa9\x06\u95a2", // 関
+ 0x95a3: "\xa9\x06\u95a3", // 閣
+ 0x95a4: "\xa9\x06\u95a4", // 閤
+ 0x95a5: "\xa9\x06\u95a5", // 閥
+ 0x95a6: "\xa9\x06\u95a6", // 閦
+ 0x95a7: "\xa9\x06\u95a7", // 閧
+ 0x95a8: "\xa9\x06\u95a8", // 閨
+ 0x95a9: "\xa9\x06\u95a9", // 閩
+ 0x95aa: "\xa9\x06\u95aa", // 閪
+ 0x95ab: "\xa9\a\u95ab", // 閫
+ 0x95ac: "\xa9\a\u95ac", // 閬
+ 0x95ad: "\xa9\a\u95ad", // 閭
+ 0x95ae: "\xa9\a\u95ae", // 閮
+ 0x95af: "\xa9\a\u95af", // 閯
+ 0x95b0: "\xa9\a\u95b0", // 閰
+ 0x95b1: "\xa9\a\u95b1", // 閱
+ 0x95b2: "\xa9\a\u95b2", // 閲
+ 0x95b3: "\xa9\a\u95b3", // 閳
+ 0x95b4: "\xa9\a\u95b4", // 閴
+ 0x95b5: "\xa9\b\u95b5", // 閵
+ 0x95b6: "\xa9\b\u95b6", // 閶
+ 0x95b7: "\xa9\t\u95b7", // 閷
+ 0x95b8: "\xa9\b\u95b8", // 閸
+ 0x95b9: "\xa9\b\u95b9", // 閹
+ 0x95ba: "\xa9\b\u95ba", // 閺
+ 0x95bb: "\xa9\b\u95bb", // 閻
+ 0x95bc: "\xa9\b\u95bc", // 閼
+ 0x95bd: "\xa9\b\u95bd", // 閽
+ 0x95be: "\xa9\b\u95be", // 閾
+ 0x95bf: "\xa9\b\u95bf", // 閿
+ 0x95c0: "\xa9\b\u95c0", // 闀
+ 0x95c1: "\xa9\b\u95c1", // 闁
+ 0x95c2: "\xa9\b\u95c2", // 闂
+ 0x95c3: "\xa9\t\u95c3", // 闃
+ 0x95c4: "\xa9\t\u95c4", // 闄
+ 0x95c5: "\xa9\t\u95c5", // 闅
+ 0x95c6: "\xa9\t\u95c6", // 闆
+ 0x95c7: "\xa9\t\u95c7", // 闇
+ 0x95c8: "\xa9\t\u95c8", // 闈
+ 0x95c9: "\xa9\t\u95c9", // 闉
+ 0x95ca: "\xa9\t\u95ca", // 闊
+ 0x95cb: "\xa9\t\u95cb", // 闋
+ 0x95cc: "\xa9\t\u95cc", // 闌
+ 0x95cd: "\xa9\t\u95cd", // 闍
+ 0x95ce: "\xa9\t\u95ce", // 闎
+ 0x95cf: "\xa9\t\u95cf", // 闏
+ 0x95d0: "\xa9\n\u95d0", // 闐
+ 0x95d1: "\xa9\n\u95d1", // 闑
+ 0x95d2: "\xa9\n\u95d2", // 闒
+ 0x95d3: "\xa9\n\u95d3", // 闓
+ 0x95d4: "\xa9\n\u95d4", // 闔
+ 0x95d5: "\xa9\n\u95d5", // 闕
+ 0x95d6: "\xa9\n\u95d6", // 闖
+ 0x95d7: "\xa9\n\u95d7", // 闗
+ 0x95d8: "\xa9\n\u95d8", // 闘
+ 0x95d9: "\xa9\v\u95d9", // 闙
+ 0x95da: "\xa9\v\u95da", // 闚
+ 0x95db: "\xa9\v\u95db", // 闛
+ 0x95dc: "\xa9\v\u95dc", // 關
+ 0x95dd: "\xa9\v\u95dd", // 闝
+ 0x95de: "\xa9\f\u95de", // 闞
+ 0x95df: "\xa9\f\u95df", // 闟
+ 0x95e0: "\xa9\f\u95e0", // 闠
+ 0x95e1: "\xa9\f\u95e1", // 闡
+ 0x95e2: "\xa9\r\u95e2", // 闢
+ 0x95e3: "\xa9\r\u95e3", // 闣
+ 0x95e4: "\xa9\r\u95e4", // 闤
+ 0x95e5: "\xa9\r\u95e5", // 闥
+ 0x95e6: "\xa9\r\u95e6", // 闦
+ 0x95e7: "\xa9\x0e\u95e7", // 闧
+ 0x95e8: "\xa9\x00\u95e8", // 门
+ 0x95e9: "\xa9\x01\u95e9", // 闩
+ 0x95ea: "\xa9\x02\u95ea", // 闪
+ 0x95eb: "\xa9\x03\u95eb", // 闫
+ 0x95ec: "\xa9\x03\u95ec", // 闬
+ 0x95ed: "\xa9\x03\u95ed", // 闭
+ 0x95ee: "\xa9\x03\u95ee", // 问
+ 0x95ef: "\xa9\x03\u95ef", // 闯
+ 0x95f0: "\xa9\x04\u95f0", // 闰
+ 0x95f1: "\xa9\x04\u95f1", // 闱
+ 0x95f2: "\xa9\x04\u95f2", // 闲
+ 0x95f3: "\xa9\x04\u95f3", // 闳
+ 0x95f4: "\xa9\x04\u95f4", // 间
+ 0x95f5: "\xa9\x04\u95f5", // 闵
+ 0x95f6: "\xa9\x04\u95f6", // 闶
+ 0x95f7: "\xa9\x04\u95f7", // 闷
+ 0x95f8: "\xa9\x05\u95f8", // 闸
+ 0x95f9: "\xa9\x05\u95f9", // 闹
+ 0x95fa: "\xa9\x06\u95fa", // 闺
+ 0x95fb: "\xa9\x06\u95fb", // 闻
+ 0x95fc: "\xa9\x06\u95fc", // 闼
+ 0x95fd: "\xa9\x06\u95fd", // 闽
+ 0x95fe: "\xa9\x06\u95fe", // 闾
+ 0x95ff: "\xa9\x06\u95ff", // 闿
+ 0x9600: "\xa9\x06\u9600", // 阀
+ 0x9601: "\xa9\x06\u9601", // 阁
+ 0x9602: "\xa9\x06\u9602", // 阂
+ 0x9603: "\xa9\a\u9603", // 阃
+ 0x9604: "\xa9\a\u9604", // 阄
+ 0x9605: "\xa9\a\u9605", // 阅
+ 0x9606: "\xa9\a\u9606", // 阆
+ 0x9607: "\xa9\b\u9607", // 阇
+ 0x9608: "\xa9\b\u9608", // 阈
+ 0x9609: "\xa9\b\u9609", // 阉
+ 0x960a: "\xa9\b\u960a", // 阊
+ 0x960b: "\xa9\b\u960b", // 阋
+ 0x960c: "\xa9\b\u960c", // 阌
+ 0x960d: "\xa9\b\u960d", // 阍
+ 0x960e: "\xa9\b\u960e", // 阎
+ 0x960f: "\xa9\b\u960f", // 阏
+ 0x9610: "\xa9\b\u9610", // 阐
+ 0x9611: "\xa9\t\u9611", // 阑
+ 0x9612: "\xa9\t\u9612", // 阒
+ 0x9613: "\xa9\t\u9613", // 阓
+ 0x9614: "\xa9\t\u9614", // 阔
+ 0x9615: "\xa9\t\u9615", // 阕
+ 0x9616: "\xa9\n\u9616", // 阖
+ 0x9617: "\xa9\n\u9617", // 阗
+ 0x9618: "\xa9\n\u9618", // 阘
+ 0x9619: "\xa9\n\u9619", // 阙
+ 0x961a: "\xa9\v\u961a", // 阚
+ 0x961b: "\xa9\r\u961b", // 阛
+ 0x961c: "\xaa\x00\u961c", // 阜
+ 0x961d: "\xaa\x00\u961d", // 阝
+ 0x961e: "\xaa\x02\u961e", // 阞
+ 0x961f: "\xaa\x02\u961f", // 队
+ 0x9620: "\xaa\x03\u9620", // 阠
+ 0x9621: "\xaa\x03\u9621", // 阡
+ 0x9622: "\xaa\x03\u9622", // 阢
+ 0x9623: "\xaa\x03\u9623", // 阣
+ 0x9624: "\xaa\x03\u9624", // 阤
+ 0x9625: "\xaa\x04\u9625", // 阥
+ 0x9626: "\xaa\x04\u9626", // 阦
+ 0x9627: "\xaa\x04\u9627", // 阧
+ 0x9628: "\xaa\x04\u9628", // 阨
+ 0x9629: "\xaa\x04\u9629", // 阩
+ 0x962a: "\xaa\x04\u962a", // 阪
+ 0x962b: "\xaa\x04\u962b", // 阫
+ 0x962c: "\xaa\x04\u962c", // 阬
+ 0x962d: "\xaa\x04\u962d", // 阭
+ 0x962e: "\xaa\x04\u962e", // 阮
+ 0x962f: "\xaa\x04\u962f", // 阯
+ 0x9630: "\xaa\x04\u9630", // 阰
+ 0x9631: "\xaa\x04\u9631", // 阱
+ 0x9632: "\xaa\x04\u9632", // 防
+ 0x9633: "\xaa\x04\u9633", // 阳
+ 0x9634: "\xaa\x04\u9634", // 阴
+ 0x9635: "\xaa\x04\u9635", // 阵
+ 0x9636: "\xaa\x04\u9636", // 阶
+ 0x9637: "\xaa\x05\u9637", // 阷
+ 0x9638: "\xaa\x05\u9638", // 阸
+ 0x9639: "\xaa\x05\u9639", // 阹
+ 0x963a: "\xaa\x05\u963a", // 阺
+ 0x963b: "\xaa\x05\u963b", // 阻
+ 0x963c: "\xaa\x05\u963c", // 阼
+ 0x963d: "\xaa\x05\u963d", // 阽
+ 0x963e: "\xaa\x05\u963e", // 阾
+ 0x963f: "\xaa\x05\u963f", // 阿
+ 0x9640: "\xaa\x05\u9640", // 陀
+ 0x9641: "\xaa\x05\u9641", // 陁
+ 0x9642: "\xaa\x05\u9642", // 陂
+ 0x9643: "\xaa\x05\u9643", // 陃
+ 0x9644: "\xaa\x05\u9644", // 附
+ 0x9645: "\xaa\x05\u9645", // 际
+ 0x9646: "\xaa\x05\u9646", // 陆
+ 0x9647: "\xaa\x05\u9647", // 陇
+ 0x9648: "\xaa\x05\u9648", // 陈
+ 0x9649: "\xaa\x05\u9649", // 陉
+ 0x964a: "\xaa\x06\u964a", // 陊
+ 0x964b: "\xaa\x06\u964b", // 陋
+ 0x964c: "\xaa\x06\u964c", // 陌
+ 0x964d: "\xaa\x06\u964d", // 降
+ 0x964e: "\xaa\x06\u964e", // 陎
+ 0x964f: "\xaa\x06\u964f", // 陏
+ 0x9650: "\xaa\x06\u9650", // 限
+ 0x9651: "\xaa\x06\u9651", // 陑
+ 0x9652: "\xaa\x06\u9652", // 陒
+ 0x9653: "\xaa\x06\u9653", // 陓
+ 0x9654: "\xaa\x06\u9654", // 陔
+ 0x9655: "\xaa\x06\u9655", // 陕
+ 0x9656: "\xaa\a\u9656", // 陖
+ 0x9657: "\xaa\a\u9657", // 陗
+ 0x9658: "\xaa\a\u9658", // 陘
+ 0x9659: "\xaa\a\u9659", // 陙
+ 0x965a: "\xaa\b\u965a", // 陚
+ 0x965b: "\xaa\a\u965b", // 陛
+ 0x965c: "\xaa\a\u965c", // 陜
+ 0x965d: "\xaa\a\u965d", // 陝
+ 0x965e: "\xaa\a\u965e", // 陞
+ 0x965f: "\xaa\a\u965f", // 陟
+ 0x9660: "\xaa\a\u9660", // 陠
+ 0x9661: "\xaa\a\u9661", // 陡
+ 0x9662: "\xaa\a\u9662", // 院
+ 0x9663: "\xaa\a\u9663", // 陣
+ 0x9664: "\xaa\a\u9664", // 除
+ 0x9665: "\xaa\a\u9665", // 陥
+ 0x9666: "\xaa\a\u9666", // 陦
+ 0x9667: "\xaa\a\u9667", // 陧
+ 0x9668: "\xaa\a\u9668", // 陨
+ 0x9669: "\xaa\a\u9669", // 险
+ 0x966a: "\xaa\b\u966a", // 陪
+ 0x966b: "\xaa\b\u966b", // 陫
+ 0x966c: "\xaa\b\u966c", // 陬
+ 0x966d: "\xaa\b\u966d", // 陭
+ 0x966e: "\xaa\b\u966e", // 陮
+ 0x966f: "\xaa\b\u966f", // 陯
+ 0x9670: "\xaa\b\u9670", // 陰
+ 0x9671: "\xaa\b\u9671", // 陱
+ 0x9672: "\xaa\b\u9672", // 陲
+ 0x9673: "\xaa\b\u9673", // 陳
+ 0x9674: "\xaa\b\u9674", // 陴
+ 0x9675: "\xaa\b\u9675", // 陵
+ 0x9676: "\xaa\b\u9676", // 陶
+ 0x9677: "\xaa\b\u9677", // 陷
+ 0x9678: "\xaa\b\u9678", // 陸
+ 0x9679: "\xaa\b\u9679", // 陹
+ 0x967a: "\xaa\b\u967a", // 険
+ 0x967b: "\xaa\t\u967b", // 陻
+ 0x967c: "\xaa\t\u967c", // 陼
+ 0x967d: "\xaa\t\u967d", // 陽
+ 0x967e: "\xaa\t\u967e", // 陾
+ 0x967f: "\xaa\t\u967f", // 陿
+ 0x9680: "\xaa\t\u9680", // 隀
+ 0x9681: "\xaa\t\u9681", // 隁
+ 0x9682: "\xaa\t\u9682", // 隂
+ 0x9683: "\xaa\t\u9683", // 隃
+ 0x9684: "\xaa\t\u9684", // 隄
+ 0x9685: "\xaa\t\u9685", // 隅
+ 0x9686: "\xaa\t\u9686", // 隆
+ 0x9687: "\xaa\t\u9687", // 隇
+ 0x9688: "\xaa\t\u9688", // 隈
+ 0x9689: "\xaa\t\u9689", // 隉
+ 0x968a: "\xaa\t\u968a", // 隊
+ 0x968b: "\xaa\t\u968b", // 隋
+ 0x968c: "\xaa\t\u968c", // 隌
+ 0x968d: "\xaa\t\u968d", // 隍
+ 0x968e: "\xaa\t\u968e", // 階
+ 0x968f: "\xaa\t\u968f", // 随
+ 0x9690: "\xaa\t\u9690", // 隐
+ 0x9691: "\xaa\n\u9691", // 隑
+ 0x9692: "\xaa\n\u9692", // 隒
+ 0x9693: "\xaa\n\u9693", // 隓
+ 0x9694: "\xaa\n\u9694", // 隔
+ 0x9695: "\xaa\n\u9695", // 隕
+ 0x9696: "\xaa\n\u9696", // 隖
+ 0x9697: "\xaa\n\u9697", // 隗
+ 0x9698: "\xaa\n\u9698", // 隘
+ 0x9699: "\xaa\n\u9699", // 隙
+ 0x969a: "\xaa\v\u969a", // 隚
+ 0x969b: "\xaa\v\u969b", // 際
+ 0x969c: "\xaa\v\u969c", // 障
+ 0x969d: "\xaa\v\u969d", // 隝
+ 0x969e: "\xaa\v\u969e", // 隞
+ 0x969f: "\xaa\v\u969f", // 隟
+ 0x96a0: "\xaa\v\u96a0", // 隠
+ 0x96a1: "\xaa\v\u96a1", // 隡
+ 0x96a2: "\xaa\f\u96a2", // 隢
+ 0x96a3: "\xaa\f\u96a3", // 隣
+ 0x96a4: "\xaa\f\u96a4", // 隤
+ 0x96a5: "\xaa\f\u96a5", // 隥
+ 0x96a6: "\xaa\r\u96a6", // 隦
+ 0x96a7: "\xaa\r\u96a7", // 隧
+ 0x96a8: "\xaa\r\u96a8", // 隨
+ 0x96a9: "\xaa\r\u96a9", // 隩
+ 0x96aa: "\xaa\r\u96aa", // 險
+ 0x96ab: "\xaa\r\u96ab", // 隫
+ 0x96ac: "\xaa\x0e\u96ac", // 隬
+ 0x96ad: "\xaa\x0e\u96ad", // 隭
+ 0x96ae: "\xaa\x0e\u96ae", // 隮
+ 0x96af: "\xaa\x0e\u96af", // 隯
+ 0x96b0: "\xaa\x0e\u96b0", // 隰
+ 0x96b1: "\xaa\x0e\u96b1", // 隱
+ 0x96b2: "\xaa\x0e\u96b2", // 隲
+ 0x96b3: "\xaa\x0f\u96b3", // 隳
+ 0x96b4: "\xaa\x10\u96b4", // 隴
+ 0x96b5: "\xaa\x11\u96b5", // 隵
+ 0x96b6: "\xab\x00\u96b6", // 隶
+ 0x96b7: "\xab\b\u96b7", // 隷
+ 0x96b8: "\xab\t\u96b8", // 隸
+ 0x96b9: "\xac\x00\u96b9", // 隹
+ 0x96ba: "\xac\x02\u96ba", // 隺
+ 0x96bb: "\xac\x02\u96bb", // 隻
+ 0x96bc: "\xac\x02\u96bc", // 隼
+ 0x96bd: "\xac\x02\u96bd", // 隽
+ 0x96be: "\xac\x02\u96be", // 难
+ 0x96bf: "\xac\x03\u96bf", // 隿
+ 0x96c0: "\xac\x03\u96c0", // 雀
+ 0x96c1: "\xac\x04\u96c1", // 雁
+ 0x96c2: "\xac\x04\u96c2", // 雂
+ 0x96c3: "\xac\x04\u96c3", // 雃
+ 0x96c4: "\xac\x04\u96c4", // 雄
+ 0x96c5: "\xac\x04\u96c5", // 雅
+ 0x96c6: "\xac\x04\u96c6", // 集
+ 0x96c7: "\xac\x04\u96c7", // 雇
+ 0x96c8: "\xac\x04\u96c8", // 雈
+ 0x96c9: "\xac\x05\u96c9", // 雉
+ 0x96ca: "\xac\x05\u96ca", // 雊
+ 0x96cb: "\xac\x05\u96cb", // 雋
+ 0x96cc: "\xac\x05\u96cc", // 雌
+ 0x96cd: "\xac\x05\u96cd", // 雍
+ 0x96ce: "\xac\x05\u96ce", // 雎
+ 0x96cf: "\xac\x05\u96cf", // 雏
+ 0x96d0: "\xac\x06\u96d0", // 雐
+ 0x96d1: "\xac\x06\u96d1", // 雑
+ 0x96d2: "\xac\x06\u96d2", // 雒
+ 0x96d3: "\xac\a\u96d3", // 雓
+ 0x96d4: "\xac\b\u96d4", // 雔
+ 0x96d5: "\xac\b\u96d5", // 雕
+ 0x96d6: "\xac\t\u96d6", // 雖
+ 0x96d7: "\xac\n\u96d7", // 雗
+ 0x96d8: "\xac\n\u96d8", // 雘
+ 0x96d9: "\xac\n\u96d9", // 雙
+ 0x96da: "\xac\n\u96da", // 雚
+ 0x96db: "\xac\n\u96db", // 雛
+ 0x96dc: "\xac\n\u96dc", // 雜
+ 0x96dd: "\xac\n\u96dd", // 雝
+ 0x96de: "\xac\n\u96de", // 雞
+ 0x96df: "\xac\n\u96df", // 雟
+ 0x96e0: "\xac\n\u96e0", // 雠
+ 0x96e1: "\xac\v\u96e1", // 雡
+ 0x96e2: "\xac\v\u96e2", // 離
+ 0x96e3: "\xac\v\u96e3", // 難
+ 0x96e4: "\xac\r\u96e4", // 雤
+ 0x96e5: "\xac\x10\u96e5", // 雥
+ 0x96e6: "\xac\x10\u96e6", // 雦
+ 0x96e7: "\xac\x14\u96e7", // 雧
+ 0x96e8: "\xad\x00\u96e8", // 雨
+ 0x96e9: "\xad\x03\u96e9", // 雩
+ 0x96ea: "\xad\x03\u96ea", // 雪
+ 0x96eb: "\xad\x03\u96eb", // 雫
+ 0x96ec: "\xad\x04\u96ec", // 雬
+ 0x96ed: "\xad\x04\u96ed", // 雭
+ 0x96ee: "\xad\x04\u96ee", // 雮
+ 0x96ef: "\xad\x04\u96ef", // 雯
+ 0x96f0: "\xad\x04\u96f0", // 雰
+ 0x96f1: "\xad\x04\u96f1", // 雱
+ 0x96f2: "\xad\x04\u96f2", // 雲
+ 0x96f3: "\xad\x04\u96f3", // 雳
+ 0x96f4: "\xad\x05\u96f4", // 雴
+ 0x96f5: "\xad\x05\u96f5", // 雵
+ 0x96f6: "\xad\x05\u96f6", // 零
+ 0x96f7: "\xad\x05\u96f7", // 雷
+ 0x96f8: "\xad\x05\u96f8", // 雸
+ 0x96f9: "\xad\x05\u96f9", // 雹
+ 0x96fa: "\xad\x05\u96fa", // 雺
+ 0x96fb: "\xad\x05\u96fb", // 電
+ 0x96fc: "\xad\x05\u96fc", // 雼
+ 0x96fd: "\xad\x05\u96fd", // 雽
+ 0x96fe: "\xad\x05\u96fe", // 雾
+ 0x96ff: "\xad\x06\u96ff", // 雿
+ 0x9700: "\xad\x06\u9700", // 需
+ 0x9701: "\xad\x06\u9701", // 霁
+ 0x9702: "\xad\a\u9702", // 霂
+ 0x9703: "\xad\a\u9703", // 霃
+ 0x9704: "\xad\a\u9704", // 霄
+ 0x9705: "\xad\a\u9705", // 霅
+ 0x9706: "\xad\a\u9706", // 霆
+ 0x9707: "\xad\a\u9707", // 震
+ 0x9708: "\xad\a\u9708", // 霈
+ 0x9709: "\xad\a\u9709", // 霉
+ 0x970a: "\xad\a\u970a", // 霊
+ 0x970b: "\xad\b\u970b", // 霋
+ 0x970c: "\xad\b\u970c", // 霌
+ 0x970d: "\xad\b\u970d", // 霍
+ 0x970e: "\xad\b\u970e", // 霎
+ 0x970f: "\xad\b\u970f", // 霏
+ 0x9710: "\xad\b\u9710", // 霐
+ 0x9711: "\xad\b\u9711", // 霑
+ 0x9712: "\xad\b\u9712", // 霒
+ 0x9713: "\xad\b\u9713", // 霓
+ 0x9714: "\xad\b\u9714", // 霔
+ 0x9715: "\xad\b\u9715", // 霕
+ 0x9716: "\xad\b\u9716", // 霖
+ 0x9717: "\xad\b\u9717", // 霗
+ 0x9718: "\xad\t\u9718", // 霘
+ 0x9719: "\xad\t\u9719", // 霙
+ 0x971a: "\xad\t\u971a", // 霚
+ 0x971b: "\xad\t\u971b", // 霛
+ 0x971c: "\xad\t\u971c", // 霜
+ 0x971d: "\xad\t\u971d", // 霝
+ 0x971e: "\xad\t\u971e", // 霞
+ 0x971f: "\xad\t\u971f", // 霟
+ 0x9720: "\xad\t\u9720", // 霠
+ 0x9721: "\xad\n\u9721", // 霡
+ 0x9722: "\xad\n\u9722", // 霢
+ 0x9723: "\xad\n\u9723", // 霣
+ 0x9724: "\xad\n\u9724", // 霤
+ 0x9725: "\xad\n\u9725", // 霥
+ 0x9726: "\xad\v\u9726", // 霦
+ 0x9727: "\xad\v\u9727", // 霧
+ 0x9728: "\xad\v\u9728", // 霨
+ 0x9729: "\xad\v\u9729", // 霩
+ 0x972a: "\xad\v\u972a", // 霪
+ 0x972b: "\xad\v\u972b", // 霫
+ 0x972c: "\xad\v\u972c", // 霬
+ 0x972d: "\xad\v\u972d", // 霭
+ 0x972e: "\xad\f\u972e", // 霮
+ 0x972f: "\xad\f\u972f", // 霯
+ 0x9730: "\xad\f\u9730", // 霰
+ 0x9731: "\xad\f\u9731", // 霱
+ 0x9732: "\xad\f\u9732", // 露
+ 0x9733: "\xad\f\u9733", // 霳
+ 0x9734: "\xad\f\u9734", // 霴
+ 0x9735: "\xad\r\u9735", // 霵
+ 0x9736: "\xad\r\u9736", // 霶
+ 0x9737: "\xad\r\u9737", // 霷
+ 0x9738: "\xad\r\u9738", // 霸
+ 0x9739: "\xad\r\u9739", // 霹
+ 0x973a: "\xad\r\u973a", // 霺
+ 0x973b: "\xad\r\u973b", // 霻
+ 0x973c: "\xad\x0e\u973c", // 霼
+ 0x973d: "\xad\x0e\u973d", // 霽
+ 0x973e: "\xad\x0e\u973e", // 霾
+ 0x973f: "\xad\x0e\u973f", // 霿
+ 0x9740: "\xad\x0e\u9740", // 靀
+ 0x9741: "\xad\x0f\u9741", // 靁
+ 0x9742: "\xad\x10\u9742", // 靂
+ 0x9743: "\xad\x10\u9743", // 靃
+ 0x9744: "\xad\x10\u9744", // 靄
+ 0x9745: "\xad\x10\u9745", // 靅
+ 0x9746: "\xad\x10\u9746", // 靆
+ 0x9747: "\xad\x10\u9747", // 靇
+ 0x9748: "\xad\x10\u9748", // 靈
+ 0x9749: "\xad\x11\u9749", // 靉
+ 0x974a: "\xad\x12\u974a", // 靊
+ 0x974b: "\xad\x13\u974b", // 靋
+ 0x974c: "\xad\x13\u974c", // 靌
+ 0x974d: "\xad\x13\u974d", // 靍
+ 0x974e: "\xad\x13\u974e", // 靎
+ 0x974f: "\xad\x15\u974f", // 靏
+ 0x9750: "\xad\x1f\u9750", // 靐
+ 0x9751: "\xae\x00\u9751", // 靑
+ 0x9752: "\xae\x00\u9752", // 青
+ 0x9753: "\xae\x04\u9753", // 靓
+ 0x9754: "\xae\x04\u9754", // 靔
+ 0x9755: "\xae\x05\u9755", // 靕
+ 0x9756: "\xae\x05\u9756", // 靖
+ 0x9757: "\xae\x06\u9757", // 靗
+ 0x9758: "\xae\x06\u9758", // 靘
+ 0x9759: "\xae\x06\u9759", // 静
+ 0x975a: "\xae\a\u975a", // 靚
+ 0x975b: "\xae\b\u975b", // 靛
+ 0x975c: "\xae\b\u975c", // 靜
+ 0x975d: "\xae\n\u975d", // 靝
+ 0x975e: "\xaf\x00\u975e", // 非
+ 0x975f: "\xaf\x04\u975f", // 靟
+ 0x9760: "\xaf\a\u9760", // 靠
+ 0x9761: "\xaf\v\u9761", // 靡
+ 0x9762: "\xb0\x00\u9762", // 面
+ 0x9763: "\xb0\x00\u9763", // 靣
+ 0x9764: "\xb0\x05\u9764", // 靤
+ 0x9765: "\xb0\x06\u9765", // 靥
+ 0x9766: "\xb0\a\u9766", // 靦
+ 0x9767: "\xb0\f\u9767", // 靧
+ 0x9768: "\xb0\x0e\u9768", // 靨
+ 0x9769: "\xb1\x00\u9769", // 革
+ 0x976a: "\xb1\x02\u976a", // 靪
+ 0x976b: "\xb1\x03\u976b", // 靫
+ 0x976c: "\xb1\x03\u976c", // 靬
+ 0x976d: "\xb1\x03\u976d", // 靭
+ 0x976e: "\xb1\x03\u976e", // 靮
+ 0x976f: "\xb1\x03\u976f", // 靯
+ 0x9770: "\xb1\x03\u9770", // 靰
+ 0x9771: "\xb1\x03\u9771", // 靱
+ 0x9772: "\xb1\x04\u9772", // 靲
+ 0x9773: "\xb1\x04\u9773", // 靳
+ 0x9774: "\xb1\x04\u9774", // 靴
+ 0x9775: "\xb1\x04\u9775", // 靵
+ 0x9776: "\xb1\x04\u9776", // 靶
+ 0x9777: "\xb1\x04\u9777", // 靷
+ 0x9778: "\xb1\x04\u9778", // 靸
+ 0x9779: "\xb1\x04\u9779", // 靹
+ 0x977a: "\xb1\x05\u977a", // 靺
+ 0x977b: "\xb1\x05\u977b", // 靻
+ 0x977c: "\xb1\x05\u977c", // 靼
+ 0x977d: "\xb1\x05\u977d", // 靽
+ 0x977e: "\xb1\x05\u977e", // 靾
+ 0x977f: "\xb1\x05\u977f", // 靿
+ 0x9780: "\xb1\x05\u9780", // 鞀
+ 0x9781: "\xb1\x05\u9781", // 鞁
+ 0x9782: "\xb1\x05\u9782", // 鞂
+ 0x9783: "\xb1\x05\u9783", // 鞃
+ 0x9784: "\xb1\x05\u9784", // 鞄
+ 0x9785: "\xb1\x05\u9785", // 鞅
+ 0x9786: "\xb1\x05\u9786", // 鞆
+ 0x9787: "\xb1\x06\u9787", // 鞇
+ 0x9788: "\xb1\x06\u9788", // 鞈
+ 0x9789: "\xb1\x06\u9789", // 鞉
+ 0x978a: "\xb1\x06\u978a", // 鞊
+ 0x978b: "\xb1\x06\u978b", // 鞋
+ 0x978c: "\xb1\x06\u978c", // 鞌
+ 0x978d: "\xb1\x06\u978d", // 鞍
+ 0x978e: "\xb1\x06\u978e", // 鞎
+ 0x978f: "\xb1\x06\u978f", // 鞏
+ 0x9790: "\xb1\x06\u9790", // 鞐
+ 0x9791: "\xb1\x06\u9791", // 鞑
+ 0x9792: "\xb1\x06\u9792", // 鞒
+ 0x9793: "\xb1\a\u9793", // 鞓
+ 0x9794: "\xb1\a\u9794", // 鞔
+ 0x9795: "\xb1\a\u9795", // 鞕
+ 0x9796: "\xb1\a\u9796", // 鞖
+ 0x9797: "\xb1\a\u9797", // 鞗
+ 0x9798: "\xb1\a\u9798", // 鞘
+ 0x9799: "\xb1\a\u9799", // 鞙
+ 0x979a: "\xb1\b\u979a", // 鞚
+ 0x979b: "\xb1\b\u979b", // 鞛
+ 0x979c: "\xb1\b\u979c", // 鞜
+ 0x979d: "\xb1\b\u979d", // 鞝
+ 0x979e: "\xb1\b\u979e", // 鞞
+ 0x979f: "\xb1\b\u979f", // 鞟
+ 0x97a0: "\xb1\b\u97a0", // 鞠
+ 0x97a1: "\xb1\b\u97a1", // 鞡
+ 0x97a2: "\xb1\t\u97a2", // 鞢
+ 0x97a3: "\xb1\t\u97a3", // 鞣
+ 0x97a4: "\xb1\t\u97a4", // 鞤
+ 0x97a5: "\xb1\t\u97a5", // 鞥
+ 0x97a6: "\xb1\t\u97a6", // 鞦
+ 0x97a7: "\xb1\t\u97a7", // 鞧
+ 0x97a8: "\xb1\t\u97a8", // 鞨
+ 0x97a9: "\xb1\t\u97a9", // 鞩
+ 0x97aa: "\xb1\t\u97aa", // 鞪
+ 0x97ab: "\xb1\t\u97ab", // 鞫
+ 0x97ac: "\xb1\t\u97ac", // 鞬
+ 0x97ad: "\xb1\t\u97ad", // 鞭
+ 0x97ae: "\xb1\t\u97ae", // 鞮
+ 0x97af: "\xb1\t\u97af", // 鞯
+ 0x97b0: "\xb1\t\u97b0", // 鞰
+ 0x97b1: "\xb1\n\u97b1", // 鞱
+ 0x97b2: "\xb1\n\u97b2", // 鞲
+ 0x97b3: "\xb1\n\u97b3", // 鞳
+ 0x97b4: "\xb1\n\u97b4", // 鞴
+ 0x97b5: "\xb1\n\u97b5", // 鞵
+ 0x97b6: "\xb1\n\u97b6", // 鞶
+ 0x97b7: "\xb1\n\u97b7", // 鞷
+ 0x97b8: "\xb1\v\u97b8", // 鞸
+ 0x97b9: "\xb1\v\u97b9", // 鞹
+ 0x97ba: "\xb1\v\u97ba", // 鞺
+ 0x97bb: "\xb1\v\u97bb", // 鞻
+ 0x97bc: "\xb1\f\u97bc", // 鞼
+ 0x97bd: "\xb1\f\u97bd", // 鞽
+ 0x97be: "\xb1\f\u97be", // 鞾
+ 0x97bf: "\xb1\f\u97bf", // 鞿
+ 0x97c0: "\xb1\r\u97c0", // 韀
+ 0x97c1: "\xb1\r\u97c1", // 韁
+ 0x97c2: "\xb1\r\u97c2", // 韂
+ 0x97c3: "\xb1\r\u97c3", // 韃
+ 0x97c4: "\xb1\x0e\u97c4", // 韄
+ 0x97c5: "\xb1\x0e\u97c5", // 韅
+ 0x97c6: "\xb1\x0f\u97c6", // 韆
+ 0x97c7: "\xb1\x0f\u97c7", // 韇
+ 0x97c8: "\xb1\x0f\u97c8", // 韈
+ 0x97c9: "\xb1\x11\u97c9", // 韉
+ 0x97ca: "\xb1\x15\u97ca", // 韊
+ 0x97cb: "\xb2\x00\u97cb", // 韋
+ 0x97cc: "\xb2\x03\u97cc", // 韌
+ 0x97cd: "\xb2\x05\u97cd", // 韍
+ 0x97ce: "\xb2\x05\u97ce", // 韎
+ 0x97cf: "\xb2\x06\u97cf", // 韏
+ 0x97d0: "\xb2\x06\u97d0", // 韐
+ 0x97d1: "\xb2\x06\u97d1", // 韑
+ 0x97d2: "\xb2\a\u97d2", // 韒
+ 0x97d3: "\xb2\b\u97d3", // 韓
+ 0x97d4: "\xb2\b\u97d4", // 韔
+ 0x97d5: "\xb2\b\u97d5", // 韕
+ 0x97d6: "\xb2\t\u97d6", // 韖
+ 0x97d7: "\xb2\t\u97d7", // 韗
+ 0x97d8: "\xb2\t\u97d8", // 韘
+ 0x97d9: "\xb2\t\u97d9", // 韙
+ 0x97da: "\xb2\t\u97da", // 韚
+ 0x97db: "\xb2\v\u97db", // 韛
+ 0x97dc: "\xb2\n\u97dc", // 韜
+ 0x97dd: "\xb2\n\u97dd", // 韝
+ 0x97de: "\xb2\n\u97de", // 韞
+ 0x97df: "\xb2\n\u97df", // 韟
+ 0x97e0: "\xb2\v\u97e0", // 韠
+ 0x97e1: "\xb2\f\u97e1", // 韡
+ 0x97e2: "\xb2\f\u97e2", // 韢
+ 0x97e3: "\xb2\r\u97e3", // 韣
+ 0x97e4: "\xb2\x0f\u97e4", // 韤
+ 0x97e5: "\xb2\x0f\u97e5", // 韥
+ 0x97e6: "\xb2\x00\u97e6", // 韦
+ 0x97e7: "\xb2\x03\u97e7", // 韧
+ 0x97e8: "\xb2\x05\u97e8", // 韨
+ 0x97e9: "\xb2\b\u97e9", // 韩
+ 0x97ea: "\xb2\t\u97ea", // 韪
+ 0x97eb: "\xb2\t\u97eb", // 韫
+ 0x97ec: "\xb2\n\u97ec", // 韬
+ 0x97ed: "\xb3\x00\u97ed", // 韭
+ 0x97ee: "\xb3\x04\u97ee", // 韮
+ 0x97ef: "\xb3\x06\u97ef", // 韯
+ 0x97f0: "\xb3\a\u97f0", // 韰
+ 0x97f1: "\xb3\b\u97f1", // 韱
+ 0x97f2: "\xb3\n\u97f2", // 韲
+ 0x97f3: "\xb4\x00\u97f3", // 音
+ 0x97f4: "\xb4\x04\u97f4", // 韴
+ 0x97f5: "\xb4\x04\u97f5", // 韵
+ 0x97f6: "\xb4\x05\u97f6", // 韶
+ 0x97f7: "\xb4\x05\u97f7", // 韷
+ 0x97f8: "\xb4\a\u97f8", // 韸
+ 0x97f9: "\xb4\t\u97f9", // 韹
+ 0x97fa: "\xb4\t\u97fa", // 韺
+ 0x97fb: "\xb4\n\u97fb", // 韻
+ 0x97fc: "\xb4\n\u97fc", // 韼
+ 0x97fd: "\xb4\v\u97fd", // 韽
+ 0x97fe: "\xb4\v\u97fe", // 韾
+ 0x97ff: "\xb4\v\u97ff", // 響
+ 0x9800: "\xb4\x0e\u9800", // 頀
+ 0x9801: "\xb5\x00\u9801", // 頁
+ 0x9802: "\xb5\x02\u9802", // 頂
+ 0x9803: "\xb5\x02\u9803", // 頃
+ 0x9804: "\xb5\x02\u9804", // 頄
+ 0x9805: "\xb5\x03\u9805", // 項
+ 0x9806: "\xb5\x03\u9806", // 順
+ 0x9807: "\xb5\x03\u9807", // 頇
+ 0x9808: "\xb5\x03\u9808", // 須
+ 0x9809: "\xb5\x03\u9809", // 頉
+ 0x980a: "\xb5\x04\u980a", // 頊
+ 0x980b: "\xb5\x04\u980b", // 頋
+ 0x980c: "\xb5\x04\u980c", // 頌
+ 0x980d: "\xb5\x04\u980d", // 頍
+ 0x980e: "\xb5\x04\u980e", // 頎
+ 0x980f: "\xb5\x04\u980f", // 頏
+ 0x9810: "\xb5\x04\u9810", // 預
+ 0x9811: "\xb5\x04\u9811", // 頑
+ 0x9812: "\xb5\x04\u9812", // 頒
+ 0x9813: "\xb5\x04\u9813", // 頓
+ 0x9814: "\xb5\x05\u9814", // 頔
+ 0x9815: "\xb5\x05\u9815", // 頕
+ 0x9816: "\xb5\x05\u9816", // 頖
+ 0x9817: "\xb5\x05\u9817", // 頗
+ 0x9818: "\xb5\x05\u9818", // 領
+ 0x9819: "\xb5\x04\u9819", // 頙
+ 0x981a: "\xb5\x05\u981a", // 頚
+ 0x981b: "\xb5\x06\u981b", // 頛
+ 0x981c: "\xb5\x06\u981c", // 頜
+ 0x981d: "\xb5\x06\u981d", // 頝
+ 0x981e: "\xb5\x06\u981e", // 頞
+ 0x981f: "\xb5\x06\u981f", // 頟
+ 0x9820: "\xb5\x06\u9820", // 頠
+ 0x9821: "\xb5\x06\u9821", // 頡
+ 0x9822: "\xb5\x06\u9822", // 頢
+ 0x9823: "\xb5\x06\u9823", // 頣
+ 0x9824: "\xb5\a\u9824", // 頤
+ 0x9825: "\xb5\a\u9825", // 頥
+ 0x9826: "\xb5\x06\u9826", // 頦
+ 0x9827: "\xb5\x06\u9827", // 頧
+ 0x9828: "\xb5\x06\u9828", // 頨
+ 0x9829: "\xb5\x06\u9829", // 頩
+ 0x982a: "\xb5\x06\u982a", // 頪
+ 0x982b: "\xb5\x06\u982b", // 頫
+ 0x982c: "\xb5\x06\u982c", // 頬
+ 0x982d: "\xb5\a\u982d", // 頭
+ 0x982e: "\xb5\a\u982e", // 頮
+ 0x982f: "\xb5\a\u982f", // 頯
+ 0x9830: "\xb5\a\u9830", // 頰
+ 0x9831: "\xb5\a\u9831", // 頱
+ 0x9832: "\xb5\a\u9832", // 頲
+ 0x9833: "\xb5\a\u9833", // 頳
+ 0x9834: "\xb5\a\u9834", // 頴
+ 0x9835: "\xb5\a\u9835", // 頵
+ 0x9836: "\xb5\a\u9836", // 頶
+ 0x9837: "\xb5\a\u9837", // 頷
+ 0x9838: "\xb5\a\u9838", // 頸
+ 0x9839: "\xb5\a\u9839", // 頹
+ 0x983a: "\xb5\a\u983a", // 頺
+ 0x983b: "\xb5\a\u983b", // 頻
+ 0x983c: "\xb5\a\u983c", // 頼
+ 0x983d: "\xb5\a\u983d", // 頽
+ 0x983e: "\xb5\t\u983e", // 頾
+ 0x983f: "\xb5\b\u983f", // 頿
+ 0x9840: "\xb5\b\u9840", // 顀
+ 0x9841: "\xb5\b\u9841", // 顁
+ 0x9842: "\xb5\b\u9842", // 顂
+ 0x9843: "\xb5\b\u9843", // 顃
+ 0x9844: "\xb5\b\u9844", // 顄
+ 0x9845: "\xb5\b\u9845", // 顅
+ 0x9846: "\xb5\b\u9846", // 顆
+ 0x9847: "\xb5\b\u9847", // 顇
+ 0x9848: "\xb5\b\u9848", // 顈
+ 0x9849: "\xb5\b\u9849", // 顉
+ 0x984a: "\xb5\b\u984a", // 顊
+ 0x984b: "\xb5\t\u984b", // 顋
+ 0x984c: "\xb5\t\u984c", // 題
+ 0x984d: "\xb5\t\u984d", // 額
+ 0x984e: "\xb5\t\u984e", // 顎
+ 0x984f: "\xb5\t\u984f", // 顏
+ 0x9850: "\xb5\t\u9850", // 顐
+ 0x9851: "\xb5\t\u9851", // 顑
+ 0x9852: "\xb5\t\u9852", // 顒
+ 0x9853: "\xb5\t\u9853", // 顓
+ 0x9854: "\xb5\t\u9854", // 顔
+ 0x9855: "\xb5\t\u9855", // 顕
+ 0x9856: "\xb5\n\u9856", // 顖
+ 0x9857: "\xb5\n\u9857", // 顗
+ 0x9858: "\xb5\n\u9858", // 願
+ 0x9859: "\xb5\n\u9859", // 顙
+ 0x985a: "\xb5\n\u985a", // 顚
+ 0x985b: "\xb5\n\u985b", // 顛
+ 0x985c: "\xb5\n\u985c", // 顜
+ 0x985d: "\xb5\n\u985d", // 顝
+ 0x985e: "\xb5\n\u985e", // 類
+ 0x985f: "\xb5\v\u985f", // 顟
+ 0x9860: "\xb5\v\u9860", // 顠
+ 0x9861: "\xb5\v\u9861", // 顡
+ 0x9862: "\xb5\v\u9862", // 顢
+ 0x9863: "\xb5\v\u9863", // 顣
+ 0x9864: "\xb5\f\u9864", // 顤
+ 0x9865: "\xb5\f\u9865", // 顥
+ 0x9866: "\xb5\f\u9866", // 顦
+ 0x9867: "\xb5\f\u9867", // 顧
+ 0x9868: "\xb5\f\u9868", // 顨
+ 0x9869: "\xb5\r\u9869", // 顩
+ 0x986a: "\xb5\r\u986a", // 顪
+ 0x986b: "\xb5\r\u986b", // 顫
+ 0x986c: "\xb5\x0e\u986c", // 顬
+ 0x986d: "\xb5\x0e\u986d", // 顭
+ 0x986e: "\xb5\x0e\u986e", // 顮
+ 0x986f: "\xb5\x0e\u986f", // 顯
+ 0x9870: "\xb5\x0f\u9870", // 顰
+ 0x9871: "\xb5\x10\u9871", // 顱
+ 0x9872: "\xb5\x10\u9872", // 顲
+ 0x9873: "\xb5\x12\u9873", // 顳
+ 0x9874: "\xb5\x12\u9874", // 顴
+ 0x9875: "\xb5\x00\u9875", // 页
+ 0x9876: "\xb5\x02\u9876", // 顶
+ 0x9877: "\xb5\x02\u9877", // 顷
+ 0x9878: "\xb5\x03\u9878", // 顸
+ 0x9879: "\xb5\x03\u9879", // 项
+ 0x987a: "\xb5\x03\u987a", // 顺
+ 0x987b: "\xb5\x03\u987b", // 须
+ 0x987c: "\xb5\x04\u987c", // 顼
+ 0x987d: "\xb5\x04\u987d", // 顽
+ 0x987e: "\xb5\x04\u987e", // 顾
+ 0x987f: "\xb5\x04\u987f", // 顿
+ 0x9880: "\xb5\x04\u9880", // 颀
+ 0x9881: "\xb5\x04\u9881", // 颁
+ 0x9882: "\xb5\x04\u9882", // 颂
+ 0x9883: "\xb5\x04\u9883", // 颃
+ 0x9884: "\xb5\x04\u9884", // 预
+ 0x9885: "\xb5\x05\u9885", // 颅
+ 0x9886: "\xb5\x05\u9886", // 领
+ 0x9887: "\xb5\x05\u9887", // 颇
+ 0x9888: "\xb5\x05\u9888", // 颈
+ 0x9889: "\xb5\x06\u9889", // 颉
+ 0x988a: "\xb5\x06\u988a", // 颊
+ 0x988b: "\xb5\x06\u988b", // 颋
+ 0x988c: "\xb5\x06\u988c", // 颌
+ 0x988d: "\xb5\x06\u988d", // 颍
+ 0x988e: "\xb5\x06\u988e", // 颎
+ 0x988f: "\xb5\x06\u988f", // 颏
+ 0x9890: "\xb5\a\u9890", // 颐
+ 0x9891: "\xb5\a\u9891", // 频
+ 0x9892: "\xb5\a\u9892", // 颒
+ 0x9893: "\xb5\a\u9893", // 颓
+ 0x9894: "\xb5\a\u9894", // 颔
+ 0x9895: "\xb5\a\u9895", // 颕
+ 0x9896: "\xb5\a\u9896", // 颖
+ 0x9897: "\xb5\b\u9897", // 颗
+ 0x9898: "\xb5\t\u9898", // 题
+ 0x9899: "\xb5\t\u9899", // 颙
+ 0x989a: "\xb5\t\u989a", // 颚
+ 0x989b: "\xb5\t\u989b", // 颛
+ 0x989c: "\xb5\t\u989c", // 颜
+ 0x989d: "\xb5\t\u989d", // 额
+ 0x989e: "\xb5\n\u989e", // 颞
+ 0x989f: "\xb5\n\u989f", // 颟
+ 0x98a0: "\xb5\n\u98a0", // 颠
+ 0x98a1: "\xb5\n\u98a1", // 颡
+ 0x98a2: "\xb5\f\u98a2", // 颢
+ 0x98a3: "\xb5\f\u98a3", // 颣
+ 0x98a4: "\xb5\r\u98a4", // 颤
+ 0x98a5: "\xb5\x0e\u98a5", // 颥
+ 0x98a6: "\xb5\x0f\u98a6", // 颦
+ 0x98a7: "\xb5\x11\u98a7", // 颧
+ 0x98a8: "\xb6\x00\u98a8", // 風
+ 0x98a9: "\xb6\x03\u98a9", // 颩
+ 0x98aa: "\xb6\x03\u98aa", // 颪
+ 0x98ab: "\xb6\x04\u98ab", // 颫
+ 0x98ac: "\xb6\x04\u98ac", // 颬
+ 0x98ad: "\xb6\x05\u98ad", // 颭
+ 0x98ae: "\xb6\x05\u98ae", // 颮
+ 0x98af: "\xb6\x05\u98af", // 颯
+ 0x98b0: "\xb6\x05\u98b0", // 颰
+ 0x98b1: "\xb6\x05\u98b1", // 颱
+ 0x98b2: "\xb6\x06\u98b2", // 颲
+ 0x98b3: "\xb6\x06\u98b3", // 颳
+ 0x98b4: "\xb6\a\u98b4", // 颴
+ 0x98b5: "\xb6\a\u98b5", // 颵
+ 0x98b6: "\xb6\b\u98b6", // 颶
+ 0x98b7: "\xb6\b\u98b7", // 颷
+ 0x98b8: "\xb6\t\u98b8", // 颸
+ 0x98b9: "\xb6\t\u98b9", // 颹
+ 0x98ba: "\xb6\t\u98ba", // 颺
+ 0x98bb: "\xb6\n\u98bb", // 颻
+ 0x98bc: "\xb6\n\u98bc", // 颼
+ 0x98bd: "\xb6\n\u98bd", // 颽
+ 0x98be: "\xb6\n\u98be", // 颾
+ 0x98bf: "\xb6\n\u98bf", // 颿
+ 0x98c0: "\xb6\n\u98c0", // 飀
+ 0x98c1: "\xb6\v\u98c1", // 飁
+ 0x98c2: "\xb6\v\u98c2", // 飂
+ 0x98c3: "\xb6\v\u98c3", // 飃
+ 0x98c4: "\xb6\v\u98c4", // 飄
+ 0x98c5: "\xb6\f\u98c5", // 飅
+ 0x98c6: "\xb6\f\u98c6", // 飆
+ 0x98c7: "\xb6\f\u98c7", // 飇
+ 0x98c8: "\xb6\f\u98c8", // 飈
+ 0x98c9: "\xb6\f\u98c9", // 飉
+ 0x98ca: "\xb6\f\u98ca", // 飊
+ 0x98cb: "\xb6\r\u98cb", // 飋
+ 0x98cc: "\xb6\x12\u98cc", // 飌
+ 0x98cd: "\xb6\x12\u98cd", // 飍
+ 0x98ce: "\xb6\x00\u98ce", // 风
+ 0x98cf: "\xb6\x03\u98cf", // 飏
+ 0x98d0: "\xb6\x05\u98d0", // 飐
+ 0x98d1: "\xb6\x05\u98d1", // 飑
+ 0x98d2: "\xb6\x05\u98d2", // 飒
+ 0x98d3: "\xb6\b\u98d3", // 飓
+ 0x98d4: "\xb6\t\u98d4", // 飔
+ 0x98d5: "\xb6\n\u98d5", // 飕
+ 0x98d6: "\xb6\t\u98d6", // 飖
+ 0x98d7: "\xb6\n\u98d7", // 飗
+ 0x98d8: "\xb6\v\u98d8", // 飘
+ 0x98d9: "\xb6\f\u98d9", // 飙
+ 0x98da: "\xb6\f\u98da", // 飚
+ 0x98db: "\xb7\x00\u98db", // 飛
+ 0x98dc: "\xb7\f\u98dc", // 飜
+ 0x98dd: "\xb7\x12\u98dd", // 飝
+ 0x98de: "\xb7\x00\u98de", // 飞
+ 0x98df: "\xb8\x00\u98df", // 食
+ 0x98e0: "\xb8\x00\u98e0", // 飠
+ 0x98e1: "\xb8\x02\u98e1", // 飡
+ 0x98e2: "\xb8\x02\u98e2", // 飢
+ 0x98e3: "\xb8\x02\u98e3", // 飣
+ 0x98e4: "\xb8\x02\u98e4", // 飤
+ 0x98e5: "\xb8\x03\u98e5", // 飥
+ 0x98e6: "\xb8\x03\u98e6", // 飦
+ 0x98e7: "\xb8\x03\u98e7", // 飧
+ 0x98e8: "\xb8\x03\u98e8", // 飨
+ 0x98e9: "\xb8\x04\u98e9", // 飩
+ 0x98ea: "\xb8\x04\u98ea", // 飪
+ 0x98eb: "\xb8\x04\u98eb", // 飫
+ 0x98ec: "\xb8\x04\u98ec", // 飬
+ 0x98ed: "\xb8\x04\u98ed", // 飭
+ 0x98ee: "\xb8\x04\u98ee", // 飮
+ 0x98ef: "\xb8\x04\u98ef", // 飯
+ 0x98f0: "\xb8\x04\u98f0", // 飰
+ 0x98f1: "\xb8\x04\u98f1", // 飱
+ 0x98f2: "\xb8\x04\u98f2", // 飲
+ 0x98f3: "\xb8\x05\u98f3", // 飳
+ 0x98f4: "\xb8\x05\u98f4", // 飴
+ 0x98f5: "\xb8\x05\u98f5", // 飵
+ 0x98f6: "\xb8\x05\u98f6", // 飶
+ 0x98f7: "\xb8\x05\u98f7", // 飷
+ 0x98f8: "\xb8\x05\u98f8", // 飸
+ 0x98f9: "\xb8\x05\u98f9", // 飹
+ 0x98fa: "\xb8\x06\u98fa", // 飺
+ 0x98fb: "\xb8\x05\u98fb", // 飻
+ 0x98fc: "\xb8\x05\u98fc", // 飼
+ 0x98fd: "\xb8\x05\u98fd", // 飽
+ 0x98fe: "\xb8\x05\u98fe", // 飾
+ 0x98ff: "\xb8\x05\u98ff", // 飿
+ 0x9900: "\xb8\x06\u9900", // 餀
+ 0x9901: "\xb8\x06\u9901", // 餁
+ 0x9902: "\xb8\x06\u9902", // 餂
+ 0x9903: "\xb8\x06\u9903", // 餃
+ 0x9904: "\xb8\x06\u9904", // 餄
+ 0x9905: "\xb8\x06\u9905", // 餅
+ 0x9906: "\xb8\x06\u9906", // 餆
+ 0x9907: "\xb8\x06\u9907", // 餇
+ 0x9908: "\xb8\x06\u9908", // 餈
+ 0x9909: "\xb8\x06\u9909", // 餉
+ 0x990a: "\xb8\x06\u990a", // 養
+ 0x990b: "\xb8\x06\u990b", // 餋
+ 0x990c: "\xb8\x06\u990c", // 餌
+ 0x990d: "\xb8\x06\u990d", // 餍
+ 0x990e: "\xb8\x06\u990e", // 餎
+ 0x990f: "\xb8\x06\u990f", // 餏
+ 0x9910: "\xb8\a\u9910", // 餐
+ 0x9911: "\xb8\a\u9911", // 餑
+ 0x9912: "\xb8\a\u9912", // 餒
+ 0x9913: "\xb8\a\u9913", // 餓
+ 0x9914: "\xb8\a\u9914", // 餔
+ 0x9915: "\xb8\a\u9915", // 餕
+ 0x9916: "\xb8\a\u9916", // 餖
+ 0x9917: "\xb8\a\u9917", // 餗
+ 0x9918: "\xb8\a\u9918", // 餘
+ 0x9919: "\xb8\a\u9919", // 餙
+ 0x991a: "\xb8\b\u991a", // 餚
+ 0x991b: "\xb8\b\u991b", // 餛
+ 0x991c: "\xb8\b\u991c", // 餜
+ 0x991d: "\xb8\a\u991d", // 餝
+ 0x991e: "\xb8\b\u991e", // 餞
+ 0x991f: "\xb8\b\u991f", // 餟
+ 0x9920: "\xb8\b\u9920", // 餠
+ 0x9921: "\xb8\b\u9921", // 餡
+ 0x9922: "\xb8\b\u9922", // 餢
+ 0x9923: "\xb8\b\u9923", // 餣
+ 0x9924: "\xb8\b\u9924", // 餤
+ 0x9925: "\xb8\b\u9925", // 餥
+ 0x9926: "\xb8\b\u9926", // 餦
+ 0x9927: "\xb8\b\u9927", // 餧
+ 0x9928: "\xb8\b\u9928", // 館
+ 0x9929: "\xb8\b\u9929", // 餩
+ 0x992a: "\xb8\t\u992a", // 餪
+ 0x992b: "\xb8\t\u992b", // 餫
+ 0x992c: "\xb8\t\u992c", // 餬
+ 0x992d: "\xb8\t\u992d", // 餭
+ 0x992e: "\xb8\t\u992e", // 餮
+ 0x992f: "\xb8\t\u992f", // 餯
+ 0x9930: "\xb8\t\u9930", // 餰
+ 0x9931: "\xb8\t\u9931", // 餱
+ 0x9932: "\xb8\t\u9932", // 餲
+ 0x9933: "\xb8\t\u9933", // 餳
+ 0x9934: "\xb8\t\u9934", // 餴
+ 0x9935: "\xb8\t\u9935", // 餵
+ 0x9936: "\xb8\n\u9936", // 餶
+ 0x9937: "\xb8\t\u9937", // 餷
+ 0x9938: "\xb8\n\u9938", // 餸
+ 0x9939: "\xb8\n\u9939", // 餹
+ 0x993a: "\xb8\n\u993a", // 餺
+ 0x993b: "\xb8\n\u993b", // 餻
+ 0x993c: "\xb8\n\u993c", // 餼
+ 0x993d: "\xb8\n\u993d", // 餽
+ 0x993e: "\xb8\n\u993e", // 餾
+ 0x993f: "\xb8\n\u993f", // 餿
+ 0x9940: "\xb8\n\u9940", // 饀
+ 0x9941: "\xb8\n\u9941", // 饁
+ 0x9942: "\xb8\n\u9942", // 饂
+ 0x9943: "\xb8\n\u9943", // 饃
+ 0x9944: "\xb8\v\u9944", // 饄
+ 0x9945: "\xb8\v\u9945", // 饅
+ 0x9946: "\xb8\v\u9946", // 饆
+ 0x9947: "\xb8\v\u9947", // 饇
+ 0x9948: "\xb8\v\u9948", // 饈
+ 0x9949: "\xb8\v\u9949", // 饉
+ 0x994a: "\xb8\f\u994a", // 饊
+ 0x994b: "\xb8\f\u994b", // 饋
+ 0x994c: "\xb8\f\u994c", // 饌
+ 0x994d: "\xb8\f\u994d", // 饍
+ 0x994e: "\xb8\f\u994e", // 饎
+ 0x994f: "\xb8\f\u994f", // 饏
+ 0x9950: "\xb8\f\u9950", // 饐
+ 0x9951: "\xb8\f\u9951", // 饑
+ 0x9952: "\xb8\f\u9952", // 饒
+ 0x9953: "\xb8\f\u9953", // 饓
+ 0x9954: "\xb8\r\u9954", // 饔
+ 0x9955: "\xb8\r\u9955", // 饕
+ 0x9956: "\xb8\r\u9956", // 饖
+ 0x9957: "\xb8\r\u9957", // 饗
+ 0x9958: "\xb8\r\u9958", // 饘
+ 0x9959: "\xb8\r\u9959", // 饙
+ 0x995a: "\xb8\x0e\u995a", // 饚
+ 0x995b: "\xb8\x0e\u995b", // 饛
+ 0x995c: "\xb8\x0e\u995c", // 饜
+ 0x995d: "\xb8\x10\u995d", // 饝
+ 0x995e: "\xb8\x11\u995e", // 饞
+ 0x995f: "\xb8\x11\u995f", // 饟
+ 0x9960: "\xb8\x13\u9960", // 饠
+ 0x9961: "\xb8\x13\u9961", // 饡
+ 0x9962: "\xb8\x16\u9962", // 饢
+ 0x9963: "\xb8\x00\u9963", // 饣
+ 0x9964: "\xb8\x02\u9964", // 饤
+ 0x9965: "\xb8\x02\u9965", // 饥
+ 0x9966: "\xb8\x03\u9966", // 饦
+ 0x9967: "\xb8\x03\u9967", // 饧
+ 0x9968: "\xb8\x04\u9968", // 饨
+ 0x9969: "\xb8\x04\u9969", // 饩
+ 0x996a: "\xb8\x04\u996a", // 饪
+ 0x996b: "\xb8\x04\u996b", // 饫
+ 0x996c: "\xb8\x04\u996c", // 饬
+ 0x996d: "\xb8\x04\u996d", // 饭
+ 0x996e: "\xb8\x04\u996e", // 饮
+ 0x996f: "\xb8\x05\u996f", // 饯
+ 0x9970: "\xb8\x05\u9970", // 饰
+ 0x9971: "\xb8\x05\u9971", // 饱
+ 0x9972: "\xb8\x05\u9972", // 饲
+ 0x9973: "\xb8\x05\u9973", // 饳
+ 0x9974: "\xb8\x05\u9974", // 饴
+ 0x9975: "\xb8\x06\u9975", // 饵
+ 0x9976: "\xb8\x06\u9976", // 饶
+ 0x9977: "\xb8\x06\u9977", // 饷
+ 0x9978: "\xb8\x06\u9978", // 饸
+ 0x9979: "\xb8\x06\u9979", // 饹
+ 0x997a: "\xb8\x06\u997a", // 饺
+ 0x997b: "\xb8\x06\u997b", // 饻
+ 0x997c: "\xb8\x06\u997c", // 饼
+ 0x997d: "\xb8\a\u997d", // 饽
+ 0x997e: "\xb8\a\u997e", // 饾
+ 0x997f: "\xb8\a\u997f", // 饿
+ 0x9980: "\xb8\a\u9980", // 馀
+ 0x9981: "\xb8\a\u9981", // 馁
+ 0x9982: "\xb8\a\u9982", // 馂
+ 0x9983: "\xb8\b\u9983", // 馃
+ 0x9984: "\xb8\b\u9984", // 馄
+ 0x9985: "\xb8\b\u9985", // 馅
+ 0x9986: "\xb8\b\u9986", // 馆
+ 0x9987: "\xb8\t\u9987", // 馇
+ 0x9988: "\xb8\t\u9988", // 馈
+ 0x9989: "\xb8\n\u9989", // 馉
+ 0x998a: "\xb8\t\u998a", // 馊
+ 0x998b: "\xb8\t\u998b", // 馋
+ 0x998c: "\xb8\n\u998c", // 馌
+ 0x998d: "\xb8\n\u998d", // 馍
+ 0x998e: "\xb8\n\u998e", // 馎
+ 0x998f: "\xb8\n\u998f", // 馏
+ 0x9990: "\xb8\n\u9990", // 馐
+ 0x9991: "\xb8\v\u9991", // 馑
+ 0x9992: "\xb8\v\u9992", // 馒
+ 0x9993: "\xb8\f\u9993", // 馓
+ 0x9994: "\xb8\f\u9994", // 馔
+ 0x9995: "\xb8\x16\u9995", // 馕
+ 0x9996: "\xb9\x00\u9996", // 首
+ 0x9997: "\xb9\x02\u9997", // 馗
+ 0x9998: "\xb9\b\u9998", // 馘
+ 0x9999: "\xba\x00\u9999", // 香
+ 0x999a: "\xba\x04\u999a", // 馚
+ 0x999b: "\xba\x05\u999b", // 馛
+ 0x999c: "\xba\x05\u999c", // 馜
+ 0x999d: "\xba\x05\u999d", // 馝
+ 0x999e: "\xba\a\u999e", // 馞
+ 0x999f: "\xba\a\u999f", // 馟
+ 0x99a0: "\xba\a\u99a0", // 馠
+ 0x99a1: "\xba\b\u99a1", // 馡
+ 0x99a2: "\xba\b\u99a2", // 馢
+ 0x99a3: "\xba\b\u99a3", // 馣
+ 0x99a4: "\xba\t\u99a4", // 馤
+ 0x99a5: "\xba\t\u99a5", // 馥
+ 0x99a6: "\xba\n\u99a6", // 馦
+ 0x99a7: "\xba\n\u99a7", // 馧
+ 0x99a8: "\xba\v\u99a8", // 馨
+ 0x99a9: "\xba\f\u99a9", // 馩
+ 0x99aa: "\xba\x0e\u99aa", // 馪
+ 0x99ab: "\xba\x12\u99ab", // 馫
+ 0x99ac: "\xbb\x00\u99ac", // 馬
+ 0x99ad: "\xbb\x02\u99ad", // 馭
+ 0x99ae: "\xbb\x02\u99ae", // 馮
+ 0x99af: "\xbb\x03\u99af", // 馯
+ 0x99b0: "\xbb\x03\u99b0", // 馰
+ 0x99b1: "\xbb\x03\u99b1", // 馱
+ 0x99b2: "\xbb\x03\u99b2", // 馲
+ 0x99b3: "\xbb\x03\u99b3", // 馳
+ 0x99b4: "\xbb\x03\u99b4", // 馴
+ 0x99b5: "\xbb\x03\u99b5", // 馵
+ 0x99b6: "\xbb\x04\u99b6", // 馶
+ 0x99b7: "\xbb\x04\u99b7", // 馷
+ 0x99b8: "\xbb\x04\u99b8", // 馸
+ 0x99b9: "\xbb\x04\u99b9", // 馹
+ 0x99ba: "\xbb\x04\u99ba", // 馺
+ 0x99bb: "\xbb\x04\u99bb", // 馻
+ 0x99bc: "\xbb\x04\u99bc", // 馼
+ 0x99bd: "\xbb\x04\u99bd", // 馽
+ 0x99be: "\xbb\x04\u99be", // 馾
+ 0x99bf: "\xbb\x04\u99bf", // 馿
+ 0x99c0: "\xbb\x04\u99c0", // 駀
+ 0x99c1: "\xbb\x04\u99c1", // 駁
+ 0x99c2: "\xbb\x04\u99c2", // 駂
+ 0x99c3: "\xbb\x04\u99c3", // 駃
+ 0x99c4: "\xbb\x04\u99c4", // 駄
+ 0x99c5: "\xbb\x04\u99c5", // 駅
+ 0x99c6: "\xbb\x04\u99c6", // 駆
+ 0x99c7: "\xbb\x04\u99c7", // 駇
+ 0x99c8: "\xbb\x05\u99c8", // 駈
+ 0x99c9: "\xbb\x05\u99c9", // 駉
+ 0x99ca: "\xbb\x05\u99ca", // 駊
+ 0x99cb: "\xbb\x05\u99cb", // 駋
+ 0x99cc: "\xbb\x05\u99cc", // 駌
+ 0x99cd: "\xbb\x05\u99cd", // 駍
+ 0x99ce: "\xbb\x05\u99ce", // 駎
+ 0x99cf: "\xbb\x05\u99cf", // 駏
+ 0x99d0: "\xbb\x05\u99d0", // 駐
+ 0x99d1: "\xbb\x05\u99d1", // 駑
+ 0x99d2: "\xbb\x05\u99d2", // 駒
+ 0x99d3: "\xbb\x05\u99d3", // 駓
+ 0x99d4: "\xbb\x05\u99d4", // 駔
+ 0x99d5: "\xbb\x05\u99d5", // 駕
+ 0x99d6: "\xbb\x05\u99d6", // 駖
+ 0x99d7: "\xbb\x05\u99d7", // 駗
+ 0x99d8: "\xbb\x05\u99d8", // 駘
+ 0x99d9: "\xbb\x05\u99d9", // 駙
+ 0x99da: "\xbb\x05\u99da", // 駚
+ 0x99db: "\xbb\x05\u99db", // 駛
+ 0x99dc: "\xbb\x05\u99dc", // 駜
+ 0x99dd: "\xbb\x05\u99dd", // 駝
+ 0x99de: "\xbb\x05\u99de", // 駞
+ 0x99df: "\xbb\x05\u99df", // 駟
+ 0x99e0: "\xbb\x05\u99e0", // 駠
+ 0x99e1: "\xbb\x06\u99e1", // 駡
+ 0x99e2: "\xbb\x06\u99e2", // 駢
+ 0x99e3: "\xbb\x06\u99e3", // 駣
+ 0x99e4: "\xbb\x06\u99e4", // 駤
+ 0x99e5: "\xbb\x06\u99e5", // 駥
+ 0x99e6: "\xbb\x06\u99e6", // 駦
+ 0x99e7: "\xbb\x06\u99e7", // 駧
+ 0x99e8: "\xbb\x06\u99e8", // 駨
+ 0x99e9: "\xbb\x06\u99e9", // 駩
+ 0x99ea: "\xbb\x06\u99ea", // 駪
+ 0x99eb: "\xbb\x06\u99eb", // 駫
+ 0x99ec: "\xbb\x06\u99ec", // 駬
+ 0x99ed: "\xbb\x06\u99ed", // 駭
+ 0x99ee: "\xbb\x06\u99ee", // 駮
+ 0x99ef: "\xbb\x06\u99ef", // 駯
+ 0x99f0: "\xbb\x06\u99f0", // 駰
+ 0x99f1: "\xbb\x06\u99f1", // 駱
+ 0x99f2: "\xbb\x06\u99f2", // 駲
+ 0x99f3: "\xbb\b\u99f3", // 駳
+ 0x99f4: "\xbb\a\u99f4", // 駴
+ 0x99f5: "\xbb\a\u99f5", // 駵
+ 0x99f6: "\xbb\a\u99f6", // 駶
+ 0x99f7: "\xbb\a\u99f7", // 駷
+ 0x99f8: "\xbb\a\u99f8", // 駸
+ 0x99f9: "\xbb\a\u99f9", // 駹
+ 0x99fa: "\xbb\a\u99fa", // 駺
+ 0x99fb: "\xbb\a\u99fb", // 駻
+ 0x99fc: "\xbb\a\u99fc", // 駼
+ 0x99fd: "\xbb\a\u99fd", // 駽
+ 0x99fe: "\xbb\a\u99fe", // 駾
+ 0x99ff: "\xbb\a\u99ff", // 駿
+ 0x9a00: "\xbb\a\u9a00", // 騀
+ 0x9a01: "\xbb\a\u9a01", // 騁
+ 0x9a02: "\xbb\a\u9a02", // 騂
+ 0x9a03: "\xbb\a\u9a03", // 騃
+ 0x9a04: "\xbb\b\u9a04", // 騄
+ 0x9a05: "\xbb\b\u9a05", // 騅
+ 0x9a06: "\xbb\b\u9a06", // 騆
+ 0x9a07: "\xbb\b\u9a07", // 騇
+ 0x9a08: "\xbb\b\u9a08", // 騈
+ 0x9a09: "\xbb\b\u9a09", // 騉
+ 0x9a0a: "\xbb\b\u9a0a", // 騊
+ 0x9a0b: "\xbb\b\u9a0b", // 騋
+ 0x9a0c: "\xbb\b\u9a0c", // 騌
+ 0x9a0d: "\xbb\b\u9a0d", // 騍
+ 0x9a0e: "\xbb\b\u9a0e", // 騎
+ 0x9a0f: "\xbb\b\u9a0f", // 騏
+ 0x9a10: "\xbb\b\u9a10", // 騐
+ 0x9a11: "\xbb\b\u9a11", // 騑
+ 0x9a12: "\xbb\b\u9a12", // 騒
+ 0x9a13: "\xbb\b\u9a13", // 験
+ 0x9a14: "\xbb\t\u9a14", // 騔
+ 0x9a15: "\xbb\t\u9a15", // 騕
+ 0x9a16: "\xbb\t\u9a16", // 騖
+ 0x9a17: "\xbb\t\u9a17", // 騗
+ 0x9a18: "\xbb\t\u9a18", // 騘
+ 0x9a19: "\xbb\t\u9a19", // 騙
+ 0x9a1a: "\xbb\t\u9a1a", // 騚
+ 0x9a1b: "\xbb\t\u9a1b", // 騛
+ 0x9a1c: "\xbb\t\u9a1c", // 騜
+ 0x9a1d: "\xbb\t\u9a1d", // 騝
+ 0x9a1e: "\xbb\t\u9a1e", // 騞
+ 0x9a1f: "\xbb\t\u9a1f", // 騟
+ 0x9a20: "\xbb\t\u9a20", // 騠
+ 0x9a21: "\xbb\t\u9a21", // 騡
+ 0x9a22: "\xbb\t\u9a22", // 騢
+ 0x9a23: "\xbb\t\u9a23", // 騣
+ 0x9a24: "\xbb\t\u9a24", // 騤
+ 0x9a25: "\xbb\t\u9a25", // 騥
+ 0x9a26: "\xbb\t\u9a26", // 騦
+ 0x9a27: "\xbb\t\u9a27", // 騧
+ 0x9a28: "\xbb\t\u9a28", // 騨
+ 0x9a29: "\xbb\n\u9a29", // 騩
+ 0x9a2a: "\xbb\n\u9a2a", // 騪
+ 0x9a2b: "\xbb\n\u9a2b", // 騫
+ 0x9a2c: "\xbb\n\u9a2c", // 騬
+ 0x9a2d: "\xbb\n\u9a2d", // 騭
+ 0x9a2e: "\xbb\n\u9a2e", // 騮
+ 0x9a2f: "\xbb\n\u9a2f", // 騯
+ 0x9a30: "\xbb\n\u9a30", // 騰
+ 0x9a31: "\xbb\n\u9a31", // 騱
+ 0x9a32: "\xbb\n\u9a32", // 騲
+ 0x9a33: "\xbb\n\u9a33", // 騳
+ 0x9a34: "\xbb\n\u9a34", // 騴
+ 0x9a35: "\xbb\n\u9a35", // 騵
+ 0x9a36: "\xbb\n\u9a36", // 騶
+ 0x9a37: "\xbb\n\u9a37", // 騷
+ 0x9a38: "\xbb\n\u9a38", // 騸
+ 0x9a39: "\xbb\v\u9a39", // 騹
+ 0x9a3a: "\xbb\v\u9a3a", // 騺
+ 0x9a3b: "\xbb\v\u9a3b", // 騻
+ 0x9a3c: "\xbb\v\u9a3c", // 騼
+ 0x9a3d: "\xbb\v\u9a3d", // 騽
+ 0x9a3e: "\xbb\v\u9a3e", // 騾
+ 0x9a3f: "\xbb\v\u9a3f", // 騿
+ 0x9a40: "\xbb\v\u9a40", // 驀
+ 0x9a41: "\xbb\v\u9a41", // 驁
+ 0x9a42: "\xbb\v\u9a42", // 驂
+ 0x9a43: "\xbb\v\u9a43", // 驃
+ 0x9a44: "\xbb\v\u9a44", // 驄
+ 0x9a45: "\xbb\v\u9a45", // 驅
+ 0x9a46: "\xbb\v\u9a46", // 驆
+ 0x9a47: "\xbb\v\u9a47", // 驇
+ 0x9a48: "\xbb\f\u9a48", // 驈
+ 0x9a49: "\xbb\f\u9a49", // 驉
+ 0x9a4a: "\xbb\f\u9a4a", // 驊
+ 0x9a4b: "\xbb\f\u9a4b", // 驋
+ 0x9a4c: "\xbb\f\u9a4c", // 驌
+ 0x9a4d: "\xbb\f\u9a4d", // 驍
+ 0x9a4e: "\xbb\f\u9a4e", // 驎
+ 0x9a4f: "\xbb\f\u9a4f", // 驏
+ 0x9a50: "\xbb\f\u9a50", // 驐
+ 0x9a51: "\xbb\f\u9a51", // 驑
+ 0x9a52: "\xbb\f\u9a52", // 驒
+ 0x9a53: "\xbb\f\u9a53", // 驓
+ 0x9a54: "\xbb\f\u9a54", // 驔
+ 0x9a55: "\xbb\f\u9a55", // 驕
+ 0x9a56: "\xbb\r\u9a56", // 驖
+ 0x9a57: "\xbb\r\u9a57", // 驗
+ 0x9a58: "\xbb\r\u9a58", // 驘
+ 0x9a59: "\xbb\r\u9a59", // 驙
+ 0x9a5a: "\xbb\r\u9a5a", // 驚
+ 0x9a5b: "\xbb\r\u9a5b", // 驛
+ 0x9a5c: "\xbb\r\u9a5c", // 驜
+ 0x9a5d: "\xbb\x0e\u9a5d", // 驝
+ 0x9a5e: "\xbb\x0e\u9a5e", // 驞
+ 0x9a5f: "\xbb\x0e\u9a5f", // 驟
+ 0x9a60: "\xbb\x10\u9a60", // 驠
+ 0x9a61: "\xbb\x10\u9a61", // 驡
+ 0x9a62: "\xbb\x10\u9a62", // 驢
+ 0x9a63: "\xbb\x10\u9a63", // 驣
+ 0x9a64: "\xbb\x11\u9a64", // 驤
+ 0x9a65: "\xbb\x11\u9a65", // 驥
+ 0x9a66: "\xbb\x11\u9a66", // 驦
+ 0x9a67: "\xbb\x11\u9a67", // 驧
+ 0x9a68: "\xbb\x12\u9a68", // 驨
+ 0x9a69: "\xbb\x12\u9a69", // 驩
+ 0x9a6a: "\xbb\x13\u9a6a", // 驪
+ 0x9a6b: "\xbb\x14\u9a6b", // 驫
+ 0x9a6c: "\xbb\x00\u9a6c", // 马
+ 0x9a6d: "\xbb\x02\u9a6d", // 驭
+ 0x9a6e: "\xbb\x03\u9a6e", // 驮
+ 0x9a6f: "\xbb\x03\u9a6f", // 驯
+ 0x9a70: "\xbb\x03\u9a70", // 驰
+ 0x9a71: "\xbb\x04\u9a71", // 驱
+ 0x9a72: "\xbb\x04\u9a72", // 驲
+ 0x9a73: "\xbb\x04\u9a73", // 驳
+ 0x9a74: "\xbb\x04\u9a74", // 驴
+ 0x9a75: "\xbb\x05\u9a75", // 驵
+ 0x9a76: "\xbb\x05\u9a76", // 驶
+ 0x9a77: "\xbb\x05\u9a77", // 驷
+ 0x9a78: "\xbb\x05\u9a78", // 驸
+ 0x9a79: "\xbb\x05\u9a79", // 驹
+ 0x9a7a: "\xbb\x05\u9a7a", // 驺
+ 0x9a7b: "\xbb\x05\u9a7b", // 驻
+ 0x9a7c: "\xbb\x05\u9a7c", // 驼
+ 0x9a7d: "\xbb\x05\u9a7d", // 驽
+ 0x9a7e: "\xbb\x05\u9a7e", // 驾
+ 0x9a7f: "\xbb\x05\u9a7f", // 驿
+ 0x9a80: "\xbb\x05\u9a80", // 骀
+ 0x9a81: "\xbb\x06\u9a81", // 骁
+ 0x9a82: "\xbb\x06\u9a82", // 骂
+ 0x9a83: "\xbb\x06\u9a83", // 骃
+ 0x9a84: "\xbb\x06\u9a84", // 骄
+ 0x9a85: "\xbb\x06\u9a85", // 骅
+ 0x9a86: "\xbb\x06\u9a86", // 骆
+ 0x9a87: "\xbb\x06\u9a87", // 骇
+ 0x9a88: "\xbb\x06\u9a88", // 骈
+ 0x9a89: "\xbb\x06\u9a89", // 骉
+ 0x9a8a: "\xbb\a\u9a8a", // 骊
+ 0x9a8b: "\xbb\a\u9a8b", // 骋
+ 0x9a8c: "\xbb\a\u9a8c", // 验
+ 0x9a8d: "\xbb\a\u9a8d", // 骍
+ 0x9a8e: "\xbb\a\u9a8e", // 骎
+ 0x9a8f: "\xbb\a\u9a8f", // 骏
+ 0x9a90: "\xbb\b\u9a90", // 骐
+ 0x9a91: "\xbb\b\u9a91", // 骑
+ 0x9a92: "\xbb\b\u9a92", // 骒
+ 0x9a93: "\xbb\b\u9a93", // 骓
+ 0x9a94: "\xbb\b\u9a94", // 骔
+ 0x9a95: "\xbb\b\u9a95", // 骕
+ 0x9a96: "\xbb\b\u9a96", // 骖
+ 0x9a97: "\xbb\t\u9a97", // 骗
+ 0x9a98: "\xbb\t\u9a98", // 骘
+ 0x9a99: "\xbb\t\u9a99", // 骙
+ 0x9a9a: "\xbb\t\u9a9a", // 骚
+ 0x9a9b: "\xbb\t\u9a9b", // 骛
+ 0x9a9c: "\xbb\n\u9a9c", // 骜
+ 0x9a9d: "\xbb\n\u9a9d", // 骝
+ 0x9a9e: "\xbb\n\u9a9e", // 骞
+ 0x9a9f: "\xbb\n\u9a9f", // 骟
+ 0x9aa0: "\xbb\v\u9aa0", // 骠
+ 0x9aa1: "\xbb\v\u9aa1", // 骡
+ 0x9aa2: "\xbb\v\u9aa2", // 骢
+ 0x9aa3: "\xbb\f\u9aa3", // 骣
+ 0x9aa4: "\xbb\x0e\u9aa4", // 骤
+ 0x9aa5: "\xbb\x10\u9aa5", // 骥
+ 0x9aa6: "\xbb\x11\u9aa6", // 骦
+ 0x9aa7: "\xbb\x11\u9aa7", // 骧
+ 0x9aa8: "\xbc\x00\u9aa8", // 骨
+ 0x9aa9: "\xbc\x02\u9aa9", // 骩
+ 0x9aaa: "\xbc\x03\u9aaa", // 骪
+ 0x9aab: "\xbc\x03\u9aab", // 骫
+ 0x9aac: "\xbc\x03\u9aac", // 骬
+ 0x9aad: "\xbc\x03\u9aad", // 骭
+ 0x9aae: "\xbc\x03\u9aae", // 骮
+ 0x9aaf: "\xbc\x04\u9aaf", // 骯
+ 0x9ab0: "\xbc\x04\u9ab0", // 骰
+ 0x9ab1: "\xbc\x04\u9ab1", // 骱
+ 0x9ab2: "\xbc\x05\u9ab2", // 骲
+ 0x9ab3: "\xbc\x05\u9ab3", // 骳
+ 0x9ab4: "\xbc\x05\u9ab4", // 骴
+ 0x9ab5: "\xbc\x05\u9ab5", // 骵
+ 0x9ab6: "\xbc\x05\u9ab6", // 骶
+ 0x9ab7: "\xbc\x05\u9ab7", // 骷
+ 0x9ab8: "\xbc\x06\u9ab8", // 骸
+ 0x9ab9: "\xbc\x06\u9ab9", // 骹
+ 0x9aba: "\xbc\x06\u9aba", // 骺
+ 0x9abb: "\xbc\x06\u9abb", // 骻
+ 0x9abc: "\xbc\x06\u9abc", // 骼
+ 0x9abd: "\xbc\a\u9abd", // 骽
+ 0x9abe: "\xbc\a\u9abe", // 骾
+ 0x9abf: "\xbc\b\u9abf", // 骿
+ 0x9ac0: "\xbc\b\u9ac0", // 髀
+ 0x9ac1: "\xbc\b\u9ac1", // 髁
+ 0x9ac2: "\xbc\t\u9ac2", // 髂
+ 0x9ac3: "\xbc\t\u9ac3", // 髃
+ 0x9ac4: "\xbc\t\u9ac4", // 髄
+ 0x9ac5: "\xbc\t\u9ac5", // 髅
+ 0x9ac6: "\xbc\n\u9ac6", // 髆
+ 0x9ac7: "\xbc\n\u9ac7", // 髇
+ 0x9ac8: "\xbc\n\u9ac8", // 髈
+ 0x9ac9: "\xbc\n\u9ac9", // 髉
+ 0x9aca: "\xbc\n\u9aca", // 髊
+ 0x9acb: "\xbc\n\u9acb", // 髋
+ 0x9acc: "\xbc\n\u9acc", // 髌
+ 0x9acd: "\xbc\v\u9acd", // 髍
+ 0x9ace: "\xbc\v\u9ace", // 髎
+ 0x9acf: "\xbc\v\u9acf", // 髏
+ 0x9ad0: "\xbc\f\u9ad0", // 髐
+ 0x9ad1: "\xbc\r\u9ad1", // 髑
+ 0x9ad2: "\xbc\r\u9ad2", // 髒
+ 0x9ad3: "\xbc\r\u9ad3", // 髓
+ 0x9ad4: "\xbc\r\u9ad4", // 體
+ 0x9ad5: "\xbc\x0e\u9ad5", // 髕
+ 0x9ad6: "\xbc\x0f\u9ad6", // 髖
+ 0x9ad7: "\xbc\x10\u9ad7", // 髗
+ 0x9ad8: "\xbd\x00\u9ad8", // 高
+ 0x9ad9: "\xbd\x00\u9ad9", // 髙
+ 0x9ada: "\xbd\x04\u9ada", // 髚
+ 0x9adb: "\xbd\x05\u9adb", // 髛
+ 0x9adc: "\xbd\b\u9adc", // 髜
+ 0x9add: "\xbd\f\u9add", // 髝
+ 0x9ade: "\xbd\r\u9ade", // 髞
+ 0x9adf: "\xbe\x00\u9adf", // 髟
+ 0x9ae0: "\xbe\x02\u9ae0", // 髠
+ 0x9ae1: "\xbe\x03\u9ae1", // 髡
+ 0x9ae2: "\xbe\x03\u9ae2", // 髢
+ 0x9ae3: "\xbe\x04\u9ae3", // 髣
+ 0x9ae4: "\xbe\x04\u9ae4", // 髤
+ 0x9ae5: "\xbe\x04\u9ae5", // 髥
+ 0x9ae6: "\xbe\x04\u9ae6", // 髦
+ 0x9ae7: "\xbe\x04\u9ae7", // 髧
+ 0x9ae8: "\xbe\x04\u9ae8", // 髨
+ 0x9ae9: "\xbe\x04\u9ae9", // 髩
+ 0x9aea: "\xbe\x04\u9aea", // 髪
+ 0x9aeb: "\xbe\x05\u9aeb", // 髫
+ 0x9aec: "\xbe\x05\u9aec", // 髬
+ 0x9aed: "\xbe\x05\u9aed", // 髭
+ 0x9aee: "\xbe\x05\u9aee", // 髮
+ 0x9aef: "\xbe\x05\u9aef", // 髯
+ 0x9af0: "\xbe\x05\u9af0", // 髰
+ 0x9af1: "\xbe\x05\u9af1", // 髱
+ 0x9af2: "\xbe\x05\u9af2", // 髲
+ 0x9af3: "\xbe\x05\u9af3", // 髳
+ 0x9af4: "\xbe\x05\u9af4", // 髴
+ 0x9af5: "\xbe\x06\u9af5", // 髵
+ 0x9af6: "\xbe\x06\u9af6", // 髶
+ 0x9af7: "\xbe\x06\u9af7", // 髷
+ 0x9af8: "\xbe\x06\u9af8", // 髸
+ 0x9af9: "\xbe\x06\u9af9", // 髹
+ 0x9afa: "\xbe\x06\u9afa", // 髺
+ 0x9afb: "\xbe\x06\u9afb", // 髻
+ 0x9afc: "\xbe\a\u9afc", // 髼
+ 0x9afd: "\xbe\a\u9afd", // 髽
+ 0x9afe: "\xbe\a\u9afe", // 髾
+ 0x9aff: "\xbe\a\u9aff", // 髿
+ 0x9b00: "\xbe\a\u9b00", // 鬀
+ 0x9b01: "\xbe\a\u9b01", // 鬁
+ 0x9b02: "\xbe\a\u9b02", // 鬂
+ 0x9b03: "\xbe\b\u9b03", // 鬃
+ 0x9b04: "\xbe\b\u9b04", // 鬄
+ 0x9b05: "\xbe\b\u9b05", // 鬅
+ 0x9b06: "\xbe\b\u9b06", // 鬆
+ 0x9b07: "\xbe\x06\u9b07", // 鬇
+ 0x9b08: "\xbe\b\u9b08", // 鬈
+ 0x9b09: "\xbe\t\u9b09", // 鬉
+ 0x9b0a: "\xbe\t\u9b0a", // 鬊
+ 0x9b0b: "\xbe\t\u9b0b", // 鬋
+ 0x9b0c: "\xbe\t\u9b0c", // 鬌
+ 0x9b0d: "\xbe\t\u9b0d", // 鬍
+ 0x9b0e: "\xbe\t\u9b0e", // 鬎
+ 0x9b0f: "\xbe\t\u9b0f", // 鬏
+ 0x9b10: "\xbe\n\u9b10", // 鬐
+ 0x9b11: "\xbe\n\u9b11", // 鬑
+ 0x9b12: "\xbe\n\u9b12", // 鬒
+ 0x9b13: "\xbe\n\u9b13", // 鬓
+ 0x9b14: "\xbe\v\u9b14", // 鬔
+ 0x9b15: "\xbe\v\u9b15", // 鬕
+ 0x9b16: "\xbe\v\u9b16", // 鬖
+ 0x9b17: "\xbe\v\u9b17", // 鬗
+ 0x9b18: "\xbe\v\u9b18", // 鬘
+ 0x9b19: "\xbe\f\u9b19", // 鬙
+ 0x9b1a: "\xbe\f\u9b1a", // 鬚
+ 0x9b1b: "\xbe\f\u9b1b", // 鬛
+ 0x9b1c: "\xbe\f\u9b1c", // 鬜
+ 0x9b1d: "\xbe\v\u9b1d", // 鬝
+ 0x9b1e: "\xbe\r\u9b1e", // 鬞
+ 0x9b1f: "\xbe\r\u9b1f", // 鬟
+ 0x9b20: "\xbe\r\u9b20", // 鬠
+ 0x9b21: "\xbe\x0e\u9b21", // 鬡
+ 0x9b22: "\xbe\x0e\u9b22", // 鬢
+ 0x9b23: "\xbe\x0f\u9b23", // 鬣
+ 0x9b24: "\xbe\x11\u9b24", // 鬤
+ 0x9b25: "\xbf\x00\u9b25", // 鬥
+ 0x9b26: "\xbf\x04\u9b26", // 鬦
+ 0x9b27: "\xbf\x05\u9b27", // 鬧
+ 0x9b28: "\xbf\x06\u9b28", // 鬨
+ 0x9b29: "\xbf\b\u9b29", // 鬩
+ 0x9b2a: "\xbf\n\u9b2a", // 鬪
+ 0x9b2b: "\xbf\f\u9b2b", // 鬫
+ 0x9b2c: "\xbf\x0e\u9b2c", // 鬬
+ 0x9b2d: "\xbf\x0e\u9b2d", // 鬭
+ 0x9b2e: "\xbf\x11\u9b2e", // 鬮
+ 0x9b2f: "\xc0\x00\u9b2f", // 鬯
+ 0x9b30: "\xc0\x11\u9b30", // 鬰
+ 0x9b31: "\xc0\x13\u9b31", // 鬱
+ 0x9b32: "\xc1\x00\u9b32", // 鬲
+ 0x9b33: "\xc1\x06\u9b33", // 鬳
+ 0x9b34: "\xc1\a\u9b34", // 鬴
+ 0x9b35: "\xc1\b\u9b35", // 鬵
+ 0x9b36: "\xc1\b\u9b36", // 鬶
+ 0x9b37: "\xc1\t\u9b37", // 鬷
+ 0x9b38: "\xc1\n\u9b38", // 鬸
+ 0x9b39: "\xc1\v\u9b39", // 鬹
+ 0x9b3a: "\xc1\v\u9b3a", // 鬺
+ 0x9b3b: "\xc1\f\u9b3b", // 鬻
+ 0x9b3c: "\xc2\x00\u9b3c", // 鬼
+ 0x9b3d: "\xc2\x03\u9b3d", // 鬽
+ 0x9b3e: "\xc2\x04\u9b3e", // 鬾
+ 0x9b3f: "\xc2\x04\u9b3f", // 鬿
+ 0x9b40: "\xc2\x04\u9b40", // 魀
+ 0x9b41: "\xc2\x04\u9b41", // 魁
+ 0x9b42: "\xc2\x04\u9b42", // 魂
+ 0x9b43: "\xc2\x05\u9b43", // 魃
+ 0x9b44: "\xc2\x05\u9b44", // 魄
+ 0x9b45: "\xc2\x05\u9b45", // 魅
+ 0x9b46: "\xc2\x05\u9b46", // 魆
+ 0x9b47: "\xc2\x06\u9b47", // 魇
+ 0x9b48: "\xc2\a\u9b48", // 魈
+ 0x9b49: "\xc2\a\u9b49", // 魉
+ 0x9b4a: "\xc2\b\u9b4a", // 魊
+ 0x9b4b: "\xc2\b\u9b4b", // 魋
+ 0x9b4c: "\xc2\b\u9b4c", // 魌
+ 0x9b4d: "\xc2\b\u9b4d", // 魍
+ 0x9b4e: "\xc2\b\u9b4e", // 魎
+ 0x9b4f: "\xc2\b\u9b4f", // 魏
+ 0x9b50: "\xc2\n\u9b50", // 魐
+ 0x9b51: "\xc2\v\u9b51", // 魑
+ 0x9b52: "\xc2\v\u9b52", // 魒
+ 0x9b53: "\xc2\v\u9b53", // 魓
+ 0x9b54: "\xc2\v\u9b54", // 魔
+ 0x9b55: "\xc2\f\u9b55", // 魕
+ 0x9b56: "\xc2\f\u9b56", // 魖
+ 0x9b57: "\xc2\x0e\u9b57", // 魗
+ 0x9b58: "\xc2\x0e\u9b58", // 魘
+ 0x9b59: "\xc2\x0e\u9b59", // 魙
+ 0x9b5a: "\xc3\x00\u9b5a", // 魚
+ 0x9b5b: "\xc3\x02\u9b5b", // 魛
+ 0x9b5c: "\xc3\x02\u9b5c", // 魜
+ 0x9b5d: "\xc3\x02\u9b5d", // 魝
+ 0x9b5e: "\xc3\x02\u9b5e", // 魞
+ 0x9b5f: "\xc3\x03\u9b5f", // 魟
+ 0x9b60: "\xc3\x03\u9b60", // 魠
+ 0x9b61: "\xc3\x03\u9b61", // 魡
+ 0x9b62: "\xc3\x03\u9b62", // 魢
+ 0x9b63: "\xc3\x04\u9b63", // 魣
+ 0x9b64: "\xc3\x04\u9b64", // 魤
+ 0x9b65: "\xc3\x04\u9b65", // 魥
+ 0x9b66: "\xc3\x04\u9b66", // 魦
+ 0x9b67: "\xc3\x04\u9b67", // 魧
+ 0x9b68: "\xc3\x04\u9b68", // 魨
+ 0x9b69: "\xc3\x04\u9b69", // 魩
+ 0x9b6a: "\xc3\x04\u9b6a", // 魪
+ 0x9b6b: "\xc3\x04\u9b6b", // 魫
+ 0x9b6c: "\xc3\x04\u9b6c", // 魬
+ 0x9b6d: "\xc3\x04\u9b6d", // 魭
+ 0x9b6e: "\xc3\x04\u9b6e", // 魮
+ 0x9b6f: "\xc3\x04\u9b6f", // 魯
+ 0x9b70: "\xc3\x04\u9b70", // 魰
+ 0x9b71: "\xc3\x04\u9b71", // 魱
+ 0x9b72: "\xc3\x04\u9b72", // 魲
+ 0x9b73: "\xc3\x04\u9b73", // 魳
+ 0x9b74: "\xc3\x04\u9b74", // 魴
+ 0x9b75: "\xc3\x04\u9b75", // 魵
+ 0x9b76: "\xc3\x04\u9b76", // 魶
+ 0x9b77: "\xc3\x04\u9b77", // 魷
+ 0x9b78: "\xc3\x04\u9b78", // 魸
+ 0x9b79: "\xc3\x04\u9b79", // 魹
+ 0x9b7a: "\xc3\x05\u9b7a", // 魺
+ 0x9b7b: "\xc3\x05\u9b7b", // 魻
+ 0x9b7c: "\xc3\x05\u9b7c", // 魼
+ 0x9b7d: "\xc3\x05\u9b7d", // 魽
+ 0x9b7e: "\xc3\x05\u9b7e", // 魾
+ 0x9b7f: "\xc3\x05\u9b7f", // 魿
+ 0x9b80: "\xc3\x05\u9b80", // 鮀
+ 0x9b81: "\xc3\x05\u9b81", // 鮁
+ 0x9b82: "\xc3\x05\u9b82", // 鮂
+ 0x9b83: "\xc3\x05\u9b83", // 鮃
+ 0x9b84: "\xc3\x05\u9b84", // 鮄
+ 0x9b85: "\xc3\x05\u9b85", // 鮅
+ 0x9b86: "\xc3\x05\u9b86", // 鮆
+ 0x9b87: "\xc3\x05\u9b87", // 鮇
+ 0x9b88: "\xc3\x05\u9b88", // 鮈
+ 0x9b89: "\xc3\x05\u9b89", // 鮉
+ 0x9b8a: "\xc3\x05\u9b8a", // 鮊
+ 0x9b8b: "\xc3\x05\u9b8b", // 鮋
+ 0x9b8c: "\xc3\x05\u9b8c", // 鮌
+ 0x9b8d: "\xc3\x05\u9b8d", // 鮍
+ 0x9b8e: "\xc3\x05\u9b8e", // 鮎
+ 0x9b8f: "\xc3\x05\u9b8f", // 鮏
+ 0x9b90: "\xc3\x05\u9b90", // 鮐
+ 0x9b91: "\xc3\x05\u9b91", // 鮑
+ 0x9b92: "\xc3\x05\u9b92", // 鮒
+ 0x9b93: "\xc3\x05\u9b93", // 鮓
+ 0x9b94: "\xc3\x05\u9b94", // 鮔
+ 0x9b95: "\xc3\x05\u9b95", // 鮕
+ 0x9b96: "\xc3\x05\u9b96", // 鮖
+ 0x9b97: "\xc3\x05\u9b97", // 鮗
+ 0x9b98: "\xc3\x05\u9b98", // 鮘
+ 0x9b99: "\xc3\x06\u9b99", // 鮙
+ 0x9b9a: "\xc3\x06\u9b9a", // 鮚
+ 0x9b9b: "\xc3\x06\u9b9b", // 鮛
+ 0x9b9c: "\xc3\x06\u9b9c", // 鮜
+ 0x9b9d: "\xc3\x06\u9b9d", // 鮝
+ 0x9b9e: "\xc3\x06\u9b9e", // 鮞
+ 0x9b9f: "\xc3\x06\u9b9f", // 鮟
+ 0x9ba0: "\xc3\x06\u9ba0", // 鮠
+ 0x9ba1: "\xc3\x06\u9ba1", // 鮡
+ 0x9ba2: "\xc3\x06\u9ba2", // 鮢
+ 0x9ba3: "\xc3\x05\u9ba3", // 鮣
+ 0x9ba4: "\xc3\x06\u9ba4", // 鮤
+ 0x9ba5: "\xc3\x06\u9ba5", // 鮥
+ 0x9ba6: "\xc3\x06\u9ba6", // 鮦
+ 0x9ba7: "\xc3\x06\u9ba7", // 鮧
+ 0x9ba8: "\xc3\x06\u9ba8", // 鮨
+ 0x9ba9: "\xc3\x06\u9ba9", // 鮩
+ 0x9baa: "\xc3\x06\u9baa", // 鮪
+ 0x9bab: "\xc3\x06\u9bab", // 鮫
+ 0x9bac: "\xc3\x06\u9bac", // 鮬
+ 0x9bad: "\xc3\x06\u9bad", // 鮭
+ 0x9bae: "\xc3\x06\u9bae", // 鮮
+ 0x9baf: "\xc3\x06\u9baf", // 鮯
+ 0x9bb0: "\xc3\x06\u9bb0", // 鮰
+ 0x9bb1: "\xc3\x06\u9bb1", // 鮱
+ 0x9bb2: "\xc3\x06\u9bb2", // 鮲
+ 0x9bb3: "\xc3\x06\u9bb3", // 鮳
+ 0x9bb4: "\xc3\x06\u9bb4", // 鮴
+ 0x9bb5: "\xc3\a\u9bb5", // 鮵
+ 0x9bb6: "\xc3\a\u9bb6", // 鮶
+ 0x9bb7: "\xc3\a\u9bb7", // 鮷
+ 0x9bb8: "\xc3\a\u9bb8", // 鮸
+ 0x9bb9: "\xc3\a\u9bb9", // 鮹
+ 0x9bba: "\xc3\x06\u9bba", // 鮺
+ 0x9bbb: "\xc3\a\u9bbb", // 鮻
+ 0x9bbc: "\xc3\a\u9bbc", // 鮼
+ 0x9bbd: "\xc3\a\u9bbd", // 鮽
+ 0x9bbe: "\xc3\a\u9bbe", // 鮾
+ 0x9bbf: "\xc3\a\u9bbf", // 鮿
+ 0x9bc0: "\xc3\a\u9bc0", // 鯀
+ 0x9bc1: "\xc3\a\u9bc1", // 鯁
+ 0x9bc2: "\xc3\a\u9bc2", // 鯂
+ 0x9bc3: "\xc3\a\u9bc3", // 鯃
+ 0x9bc4: "\xc3\a\u9bc4", // 鯄
+ 0x9bc5: "\xc3\a\u9bc5", // 鯅
+ 0x9bc6: "\xc3\a\u9bc6", // 鯆
+ 0x9bc7: "\xc3\a\u9bc7", // 鯇
+ 0x9bc8: "\xc3\a\u9bc8", // 鯈
+ 0x9bc9: "\xc3\a\u9bc9", // 鯉
+ 0x9bca: "\xc3\a\u9bca", // 鯊
+ 0x9bcb: "\xc3\a\u9bcb", // 鯋
+ 0x9bcc: "\xc3\a\u9bcc", // 鯌
+ 0x9bcd: "\xc3\a\u9bcd", // 鯍
+ 0x9bce: "\xc3\a\u9bce", // 鯎
+ 0x9bcf: "\xc3\a\u9bcf", // 鯏
+ 0x9bd0: "\xc3\a\u9bd0", // 鯐
+ 0x9bd1: "\xc3\a\u9bd1", // 鯑
+ 0x9bd2: "\xc3\a\u9bd2", // 鯒
+ 0x9bd3: "\xc3\a\u9bd3", // 鯓
+ 0x9bd4: "\xc3\b\u9bd4", // 鯔
+ 0x9bd5: "\xc3\b\u9bd5", // 鯕
+ 0x9bd6: "\xc3\b\u9bd6", // 鯖
+ 0x9bd7: "\xc3\b\u9bd7", // 鯗
+ 0x9bd8: "\xc3\b\u9bd8", // 鯘
+ 0x9bd9: "\xc3\b\u9bd9", // 鯙
+ 0x9bda: "\xc3\b\u9bda", // 鯚
+ 0x9bdb: "\xc3\b\u9bdb", // 鯛
+ 0x9bdc: "\xc3\b\u9bdc", // 鯜
+ 0x9bdd: "\xc3\b\u9bdd", // 鯝
+ 0x9bde: "\xc3\b\u9bde", // 鯞
+ 0x9bdf: "\xc3\b\u9bdf", // 鯟
+ 0x9be0: "\xc3\b\u9be0", // 鯠
+ 0x9be1: "\xc3\b\u9be1", // 鯡
+ 0x9be2: "\xc3\b\u9be2", // 鯢
+ 0x9be3: "\xc3\b\u9be3", // 鯣
+ 0x9be4: "\xc3\b\u9be4", // 鯤
+ 0x9be5: "\xc3\b\u9be5", // 鯥
+ 0x9be6: "\xc3\b\u9be6", // 鯦
+ 0x9be7: "\xc3\b\u9be7", // 鯧
+ 0x9be8: "\xc3\b\u9be8", // 鯨
+ 0x9be9: "\xc3\b\u9be9", // 鯩
+ 0x9bea: "\xc3\b\u9bea", // 鯪
+ 0x9beb: "\xc3\b\u9beb", // 鯫
+ 0x9bec: "\xc3\b\u9bec", // 鯬
+ 0x9bed: "\xc3\b\u9bed", // 鯭
+ 0x9bee: "\xc3\b\u9bee", // 鯮
+ 0x9bef: "\xc3\b\u9bef", // 鯯
+ 0x9bf0: "\xc3\b\u9bf0", // 鯰
+ 0x9bf1: "\xc3\b\u9bf1", // 鯱
+ 0x9bf2: "\xc3\b\u9bf2", // 鯲
+ 0x9bf3: "\xc3\b\u9bf3", // 鯳
+ 0x9bf4: "\xc3\b\u9bf4", // 鯴
+ 0x9bf5: "\xc3\b\u9bf5", // 鯵
+ 0x9bf6: "\xc3\t\u9bf6", // 鯶
+ 0x9bf7: "\xc3\t\u9bf7", // 鯷
+ 0x9bf8: "\xc3\t\u9bf8", // 鯸
+ 0x9bf9: "\xc3\t\u9bf9", // 鯹
+ 0x9bfa: "\xc3\t\u9bfa", // 鯺
+ 0x9bfb: "\xc3\b\u9bfb", // 鯻
+ 0x9bfc: "\xc3\t\u9bfc", // 鯼
+ 0x9bfd: "\xc3\a\u9bfd", // 鯽
+ 0x9bfe: "\xc3\t\u9bfe", // 鯾
+ 0x9bff: "\xc3\t\u9bff", // 鯿
+ 0x9c00: "\xc3\t\u9c00", // 鰀
+ 0x9c01: "\xc3\t\u9c01", // 鰁
+ 0x9c02: "\xc3\t\u9c02", // 鰂
+ 0x9c03: "\xc3\t\u9c03", // 鰃
+ 0x9c04: "\xc3\t\u9c04", // 鰄
+ 0x9c05: "\xc3\t\u9c05", // 鰅
+ 0x9c06: "\xc3\t\u9c06", // 鰆
+ 0x9c07: "\xc3\t\u9c07", // 鰇
+ 0x9c08: "\xc3\t\u9c08", // 鰈
+ 0x9c09: "\xc3\t\u9c09", // 鰉
+ 0x9c0a: "\xc3\t\u9c0a", // 鰊
+ 0x9c0b: "\xc3\t\u9c0b", // 鰋
+ 0x9c0c: "\xc3\t\u9c0c", // 鰌
+ 0x9c0d: "\xc3\t\u9c0d", // 鰍
+ 0x9c0e: "\xc3\t\u9c0e", // 鰎
+ 0x9c0f: "\xc3\t\u9c0f", // 鰏
+ 0x9c10: "\xc3\t\u9c10", // 鰐
+ 0x9c11: "\xc3\t\u9c11", // 鰑
+ 0x9c12: "\xc3\t\u9c12", // 鰒
+ 0x9c13: "\xc3\t\u9c13", // 鰓
+ 0x9c14: "\xc3\t\u9c14", // 鰔
+ 0x9c15: "\xc3\t\u9c15", // 鰕
+ 0x9c16: "\xc3\t\u9c16", // 鰖
+ 0x9c17: "\xc3\t\u9c17", // 鰗
+ 0x9c18: "\xc3\t\u9c18", // 鰘
+ 0x9c19: "\xc3\t\u9c19", // 鰙
+ 0x9c1a: "\xc3\t\u9c1a", // 鰚
+ 0x9c1b: "\xc3\t\u9c1b", // 鰛
+ 0x9c1c: "\xc3\n\u9c1c", // 鰜
+ 0x9c1d: "\xc3\n\u9c1d", // 鰝
+ 0x9c1e: "\xc3\n\u9c1e", // 鰞
+ 0x9c1f: "\xc3\n\u9c1f", // 鰟
+ 0x9c20: "\xc3\t\u9c20", // 鰠
+ 0x9c21: "\xc3\n\u9c21", // 鰡
+ 0x9c22: "\xc3\n\u9c22", // 鰢
+ 0x9c23: "\xc3\n\u9c23", // 鰣
+ 0x9c24: "\xc3\n\u9c24", // 鰤
+ 0x9c25: "\xc3\n\u9c25", // 鰥
+ 0x9c26: "\xc3\n\u9c26", // 鰦
+ 0x9c27: "\xc3\n\u9c27", // 鰧
+ 0x9c28: "\xc3\n\u9c28", // 鰨
+ 0x9c29: "\xc3\n\u9c29", // 鰩
+ 0x9c2a: "\xc3\n\u9c2a", // 鰪
+ 0x9c2b: "\xc3\n\u9c2b", // 鰫
+ 0x9c2c: "\xc3\n\u9c2c", // 鰬
+ 0x9c2d: "\xc3\n\u9c2d", // 鰭
+ 0x9c2e: "\xc3\n\u9c2e", // 鰮
+ 0x9c2f: "\xc3\n\u9c2f", // 鰯
+ 0x9c30: "\xc3\n\u9c30", // 鰰
+ 0x9c31: "\xc3\v\u9c31", // 鰱
+ 0x9c32: "\xc3\v\u9c32", // 鰲
+ 0x9c33: "\xc3\v\u9c33", // 鰳
+ 0x9c34: "\xc3\v\u9c34", // 鰴
+ 0x9c35: "\xc3\v\u9c35", // 鰵
+ 0x9c36: "\xc3\v\u9c36", // 鰶
+ 0x9c37: "\xc3\v\u9c37", // 鰷
+ 0x9c38: "\xc3\v\u9c38", // 鰸
+ 0x9c39: "\xc3\v\u9c39", // 鰹
+ 0x9c3a: "\xc3\v\u9c3a", // 鰺
+ 0x9c3b: "\xc3\v\u9c3b", // 鰻
+ 0x9c3c: "\xc3\v\u9c3c", // 鰼
+ 0x9c3d: "\xc3\v\u9c3d", // 鰽
+ 0x9c3e: "\xc3\v\u9c3e", // 鰾
+ 0x9c3f: "\xc3\v\u9c3f", // 鰿
+ 0x9c40: "\xc3\v\u9c40", // 鱀
+ 0x9c41: "\xc3\v\u9c41", // 鱁
+ 0x9c42: "\xc3\v\u9c42", // 鱂
+ 0x9c43: "\xc3\v\u9c43", // 鱃
+ 0x9c44: "\xc3\v\u9c44", // 鱄
+ 0x9c45: "\xc3\v\u9c45", // 鱅
+ 0x9c46: "\xc3\v\u9c46", // 鱆
+ 0x9c47: "\xc3\v\u9c47", // 鱇
+ 0x9c48: "\xc3\v\u9c48", // 鱈
+ 0x9c49: "\xc3\f\u9c49", // 鱉
+ 0x9c4a: "\xc3\f\u9c4a", // 鱊
+ 0x9c4b: "\xc3\f\u9c4b", // 鱋
+ 0x9c4c: "\xc3\f\u9c4c", // 鱌
+ 0x9c4d: "\xc3\f\u9c4d", // 鱍
+ 0x9c4e: "\xc3\f\u9c4e", // 鱎
+ 0x9c4f: "\xc3\f\u9c4f", // 鱏
+ 0x9c50: "\xc3\f\u9c50", // 鱐
+ 0x9c51: "\xc3\f\u9c51", // 鱑
+ 0x9c52: "\xc3\f\u9c52", // 鱒
+ 0x9c53: "\xc3\f\u9c53", // 鱓
+ 0x9c54: "\xc3\f\u9c54", // 鱔
+ 0x9c55: "\xc3\f\u9c55", // 鱕
+ 0x9c56: "\xc3\f\u9c56", // 鱖
+ 0x9c57: "\xc3\f\u9c57", // 鱗
+ 0x9c58: "\xc3\f\u9c58", // 鱘
+ 0x9c59: "\xc3\f\u9c59", // 鱙
+ 0x9c5a: "\xc3\f\u9c5a", // 鱚
+ 0x9c5b: "\xc3\f\u9c5b", // 鱛
+ 0x9c5c: "\xc3\r\u9c5c", // 鱜
+ 0x9c5d: "\xc3\r\u9c5d", // 鱝
+ 0x9c5e: "\xc3\r\u9c5e", // 鱞
+ 0x9c5f: "\xc3\r\u9c5f", // 鱟
+ 0x9c60: "\xc3\r\u9c60", // 鱠
+ 0x9c61: "\xc3\r\u9c61", // 鱡
+ 0x9c62: "\xc3\r\u9c62", // 鱢
+ 0x9c63: "\xc3\r\u9c63", // 鱣
+ 0x9c64: "\xc3\r\u9c64", // 鱤
+ 0x9c65: "\xc3\r\u9c65", // 鱥
+ 0x9c66: "\xc3\r\u9c66", // 鱦
+ 0x9c67: "\xc3\r\u9c67", // 鱧
+ 0x9c68: "\xc3\x0e\u9c68", // 鱨
+ 0x9c69: "\xc3\r\u9c69", // 鱩
+ 0x9c6a: "\xc3\r\u9c6a", // 鱪
+ 0x9c6b: "\xc3\r\u9c6b", // 鱫
+ 0x9c6c: "\xc3\x0e\u9c6c", // 鱬
+ 0x9c6d: "\xc3\x0e\u9c6d", // 鱭
+ 0x9c6e: "\xc3\x0e\u9c6e", // 鱮
+ 0x9c6f: "\xc3\x0e\u9c6f", // 鱯
+ 0x9c70: "\xc3\x0e\u9c70", // 鱰
+ 0x9c71: "\xc3\x0f\u9c71", // 鱱
+ 0x9c72: "\xc3\x0f\u9c72", // 鱲
+ 0x9c73: "\xc3\x0f\u9c73", // 鱳
+ 0x9c74: "\xc3\x0f\u9c74", // 鱴
+ 0x9c75: "\xc3\x0f\u9c75", // 鱵
+ 0x9c76: "\xc3\x0f\u9c76", // 鱶
+ 0x9c77: "\xc3\x10\u9c77", // 鱷
+ 0x9c78: "\xc3\x10\u9c78", // 鱸
+ 0x9c79: "\xc3\x12\u9c79", // 鱹
+ 0x9c7a: "\xc3\x13\u9c7a", // 鱺
+ 0x9c7b: "\xc3\x16\u9c7b", // 鱻
+ 0x9c7c: "\xc3\x00\u9c7c", // 鱼
+ 0x9c7d: "\xc3\x02\u9c7d", // 鱽
+ 0x9c7e: "\xc3\x03\u9c7e", // 鱾
+ 0x9c7f: "\xc3\x04\u9c7f", // 鱿
+ 0x9c80: "\xc3\x04\u9c80", // 鲀
+ 0x9c81: "\xc3\x04\u9c81", // 鲁
+ 0x9c82: "\xc3\x04\u9c82", // 鲂
+ 0x9c83: "\xc3\x04\u9c83", // 鲃
+ 0x9c84: "\xc3\x05\u9c84", // 鲄
+ 0x9c85: "\xc3\x05\u9c85", // 鲅
+ 0x9c86: "\xc3\x05\u9c86", // 鲆
+ 0x9c87: "\xc3\x05\u9c87", // 鲇
+ 0x9c88: "\xc3\x05\u9c88", // 鲈
+ 0x9c89: "\xc3\x05\u9c89", // 鲉
+ 0x9c8a: "\xc3\x05\u9c8a", // 鲊
+ 0x9c8b: "\xc3\x05\u9c8b", // 鲋
+ 0x9c8c: "\xc3\x05\u9c8c", // 鲌
+ 0x9c8d: "\xc3\x05\u9c8d", // 鲍
+ 0x9c8e: "\xc3\x05\u9c8e", // 鲎
+ 0x9c8f: "\xc3\x05\u9c8f", // 鲏
+ 0x9c90: "\xc3\x05\u9c90", // 鲐
+ 0x9c91: "\xc3\x06\u9c91", // 鲑
+ 0x9c92: "\xc3\x06\u9c92", // 鲒
+ 0x9c93: "\xc3\x06\u9c93", // 鲓
+ 0x9c94: "\xc3\x06\u9c94", // 鲔
+ 0x9c95: "\xc3\x06\u9c95", // 鲕
+ 0x9c96: "\xc3\x06\u9c96", // 鲖
+ 0x9c97: "\xc3\x06\u9c97", // 鲗
+ 0x9c98: "\xc3\x06\u9c98", // 鲘
+ 0x9c99: "\xc3\x06\u9c99", // 鲙
+ 0x9c9a: "\xc3\x06\u9c9a", // 鲚
+ 0x9c9b: "\xc3\x06\u9c9b", // 鲛
+ 0x9c9c: "\xc3\x06\u9c9c", // 鲜
+ 0x9c9d: "\xc3\x06\u9c9d", // 鲝
+ 0x9c9e: "\xc3\x06\u9c9e", // 鲞
+ 0x9c9f: "\xc3\x06\u9c9f", // 鲟
+ 0x9ca0: "\xc3\a\u9ca0", // 鲠
+ 0x9ca1: "\xc3\a\u9ca1", // 鲡
+ 0x9ca2: "\xc3\a\u9ca2", // 鲢
+ 0x9ca3: "\xc3\a\u9ca3", // 鲣
+ 0x9ca4: "\xc3\a\u9ca4", // 鲤
+ 0x9ca5: "\xc3\a\u9ca5", // 鲥
+ 0x9ca6: "\xc3\a\u9ca6", // 鲦
+ 0x9ca7: "\xc3\a\u9ca7", // 鲧
+ 0x9ca8: "\xc3\a\u9ca8", // 鲨
+ 0x9ca9: "\xc3\a\u9ca9", // 鲩
+ 0x9caa: "\xc3\a\u9caa", // 鲪
+ 0x9cab: "\xc3\a\u9cab", // 鲫
+ 0x9cac: "\xc3\a\u9cac", // 鲬
+ 0x9cad: "\xc3\b\u9cad", // 鲭
+ 0x9cae: "\xc3\b\u9cae", // 鲮
+ 0x9caf: "\xc3\b\u9caf", // 鲯
+ 0x9cb0: "\xc3\b\u9cb0", // 鲰
+ 0x9cb1: "\xc3\b\u9cb1", // 鲱
+ 0x9cb2: "\xc3\b\u9cb2", // 鲲
+ 0x9cb3: "\xc3\b\u9cb3", // 鲳
+ 0x9cb4: "\xc3\b\u9cb4", // 鲴
+ 0x9cb5: "\xc3\b\u9cb5", // 鲵
+ 0x9cb6: "\xc3\b\u9cb6", // 鲶
+ 0x9cb7: "\xc3\b\u9cb7", // 鲷
+ 0x9cb8: "\xc3\b\u9cb8", // 鲸
+ 0x9cb9: "\xc3\b\u9cb9", // 鲹
+ 0x9cba: "\xc3\b\u9cba", // 鲺
+ 0x9cbb: "\xc3\b\u9cbb", // 鲻
+ 0x9cbc: "\xc3\t\u9cbc", // 鲼
+ 0x9cbd: "\xc3\t\u9cbd", // 鲽
+ 0x9cbe: "\xc3\n\u9cbe", // 鲾
+ 0x9cbf: "\xc3\t\u9cbf", // 鲿
+ 0x9cc0: "\xc3\t\u9cc0", // 鳀
+ 0x9cc1: "\xc3\t\u9cc1", // 鳁
+ 0x9cc2: "\xc3\t\u9cc2", // 鳂
+ 0x9cc3: "\xc3\t\u9cc3", // 鳃
+ 0x9cc4: "\xc3\t\u9cc4", // 鳄
+ 0x9cc5: "\xc3\t\u9cc5", // 鳅
+ 0x9cc6: "\xc3\t\u9cc6", // 鳆
+ 0x9cc7: "\xc3\t\u9cc7", // 鳇
+ 0x9cc8: "\xc3\t\u9cc8", // 鳈
+ 0x9cc9: "\xc3\t\u9cc9", // 鳉
+ 0x9cca: "\xc3\t\u9cca", // 鳊
+ 0x9ccb: "\xc3\t\u9ccb", // 鳋
+ 0x9ccc: "\xc3\n\u9ccc", // 鳌
+ 0x9ccd: "\xc3\n\u9ccd", // 鳍
+ 0x9cce: "\xc3\n\u9cce", // 鳎
+ 0x9ccf: "\xc3\n\u9ccf", // 鳏
+ 0x9cd0: "\xc3\n\u9cd0", // 鳐
+ 0x9cd1: "\xc3\n\u9cd1", // 鳑
+ 0x9cd2: "\xc3\n\u9cd2", // 鳒
+ 0x9cd3: "\xc3\v\u9cd3", // 鳓
+ 0x9cd4: "\xc3\v\u9cd4", // 鳔
+ 0x9cd5: "\xc3\v\u9cd5", // 鳕
+ 0x9cd6: "\xc3\v\u9cd6", // 鳖
+ 0x9cd7: "\xc3\v\u9cd7", // 鳗
+ 0x9cd8: "\xc3\v\u9cd8", // 鳘
+ 0x9cd9: "\xc3\v\u9cd9", // 鳙
+ 0x9cda: "\xc3\v\u9cda", // 鳚
+ 0x9cdb: "\xc3\v\u9cdb", // 鳛
+ 0x9cdc: "\xc3\f\u9cdc", // 鳜
+ 0x9cdd: "\xc3\f\u9cdd", // 鳝
+ 0x9cde: "\xc3\f\u9cde", // 鳞
+ 0x9cdf: "\xc3\f\u9cdf", // 鳟
+ 0x9ce0: "\xc3\r\u9ce0", // 鳠
+ 0x9ce1: "\xc3\r\u9ce1", // 鳡
+ 0x9ce2: "\xc3\r\u9ce2", // 鳢
+ 0x9ce3: "\xc3\r\u9ce3", // 鳣
+ 0x9ce4: "\xc3\x0e\u9ce4", // 鳤
+ 0x9ce5: "\xc4\x00\u9ce5", // 鳥
+ 0x9ce6: "\xc4\x01\u9ce6", // 鳦
+ 0x9ce7: "\xc4\x02\u9ce7", // 鳧
+ 0x9ce8: "\xc4\x02\u9ce8", // 鳨
+ 0x9ce9: "\xc4\x02\u9ce9", // 鳩
+ 0x9cea: "\xc4\x02\u9cea", // 鳪
+ 0x9ceb: "\xc4\x02\u9ceb", // 鳫
+ 0x9cec: "\xc4\x02\u9cec", // 鳬
+ 0x9ced: "\xc4\x02\u9ced", // 鳭
+ 0x9cee: "\xc4\x02\u9cee", // 鳮
+ 0x9cef: "\xc4\x02\u9cef", // 鳯
+ 0x9cf0: "\xc4\x02\u9cf0", // 鳰
+ 0x9cf1: "\xc4\x03\u9cf1", // 鳱
+ 0x9cf2: "\xc4\x03\u9cf2", // 鳲
+ 0x9cf3: "\xc4\x03\u9cf3", // 鳳
+ 0x9cf4: "\xc4\x03\u9cf4", // 鳴
+ 0x9cf5: "\xc4\x03\u9cf5", // 鳵
+ 0x9cf6: "\xc4\x03\u9cf6", // 鳶
+ 0x9cf7: "\xc4\x04\u9cf7", // 鳷
+ 0x9cf8: "\xc4\x04\u9cf8", // 鳸
+ 0x9cf9: "\xc4\x04\u9cf9", // 鳹
+ 0x9cfa: "\xc4\x04\u9cfa", // 鳺
+ 0x9cfb: "\xc4\x04\u9cfb", // 鳻
+ 0x9cfc: "\xc4\x04\u9cfc", // 鳼
+ 0x9cfd: "\xc4\x04\u9cfd", // 鳽
+ 0x9cfe: "\xc4\x04\u9cfe", // 鳾
+ 0x9cff: "\xc4\x04\u9cff", // 鳿
+ 0x9d00: "\xc4\x04\u9d00", // 鴀
+ 0x9d01: "\xc4\x04\u9d01", // 鴁
+ 0x9d02: "\xc4\x04\u9d02", // 鴂
+ 0x9d03: "\xc4\x04\u9d03", // 鴃
+ 0x9d04: "\xc4\x04\u9d04", // 鴄
+ 0x9d05: "\xc4\x04\u9d05", // 鴅
+ 0x9d06: "\xc4\x04\u9d06", // 鴆
+ 0x9d07: "\xc4\x04\u9d07", // 鴇
+ 0x9d08: "\xc4\x04\u9d08", // 鴈
+ 0x9d09: "\xc4\x04\u9d09", // 鴉
+ 0x9d0a: "\xc4\x05\u9d0a", // 鴊
+ 0x9d0b: "\xc4\x04\u9d0b", // 鴋
+ 0x9d0c: "\xc4\x04\u9d0c", // 鴌
+ 0x9d0d: "\xc4\x04\u9d0d", // 鴍
+ 0x9d0e: "\xc4\x04\u9d0e", // 鴎
+ 0x9d0f: "\xc4\x05\u9d0f", // 鴏
+ 0x9d10: "\xc4\x05\u9d10", // 鴐
+ 0x9d11: "\xc4\x05\u9d11", // 鴑
+ 0x9d12: "\xc4\x05\u9d12", // 鴒
+ 0x9d13: "\xc4\x05\u9d13", // 鴓
+ 0x9d14: "\xc4\x05\u9d14", // 鴔
+ 0x9d15: "\xc4\x05\u9d15", // 鴕
+ 0x9d16: "\xc4\x05\u9d16", // 鴖
+ 0x9d17: "\xc4\x05\u9d17", // 鴗
+ 0x9d18: "\xc4\x05\u9d18", // 鴘
+ 0x9d19: "\xc4\x05\u9d19", // 鴙
+ 0x9d1a: "\xc4\x05\u9d1a", // 鴚
+ 0x9d1b: "\xc4\x05\u9d1b", // 鴛
+ 0x9d1c: "\xc4\x05\u9d1c", // 鴜
+ 0x9d1d: "\xc4\x05\u9d1d", // 鴝
+ 0x9d1e: "\xc4\x05\u9d1e", // 鴞
+ 0x9d1f: "\xc4\x05\u9d1f", // 鴟
+ 0x9d20: "\xc4\x05\u9d20", // 鴠
+ 0x9d21: "\xc4\x05\u9d21", // 鴡
+ 0x9d22: "\xc4\x05\u9d22", // 鴢
+ 0x9d23: "\xc4\x05\u9d23", // 鴣
+ 0x9d24: "\xc4\x05\u9d24", // 鴤
+ 0x9d25: "\xc4\x05\u9d25", // 鴥
+ 0x9d26: "\xc4\x05\u9d26", // 鴦
+ 0x9d27: "\xc4\x05\u9d27", // 鴧
+ 0x9d28: "\xc4\x05\u9d28", // 鴨
+ 0x9d29: "\xc4\x05\u9d29", // 鴩
+ 0x9d2a: "\xc4\x05\u9d2a", // 鴪
+ 0x9d2b: "\xc4\x05\u9d2b", // 鴫
+ 0x9d2c: "\xc4\x05\u9d2c", // 鴬
+ 0x9d2d: "\xc4\x06\u9d2d", // 鴭
+ 0x9d2e: "\xc4\x06\u9d2e", // 鴮
+ 0x9d2f: "\xc4\x06\u9d2f", // 鴯
+ 0x9d30: "\xc4\x06\u9d30", // 鴰
+ 0x9d31: "\xc4\x06\u9d31", // 鴱
+ 0x9d32: "\xc4\x06\u9d32", // 鴲
+ 0x9d33: "\xc4\x06\u9d33", // 鴳
+ 0x9d34: "\xc4\x06\u9d34", // 鴴
+ 0x9d35: "\xc4\x06\u9d35", // 鴵
+ 0x9d36: "\xc4\x06\u9d36", // 鴶
+ 0x9d37: "\xc4\x06\u9d37", // 鴷
+ 0x9d38: "\xc4\x06\u9d38", // 鴸
+ 0x9d39: "\xc4\x06\u9d39", // 鴹
+ 0x9d3a: "\xc4\x06\u9d3a", // 鴺
+ 0x9d3b: "\xc4\x06\u9d3b", // 鴻
+ 0x9d3c: "\xc4\x06\u9d3c", // 鴼
+ 0x9d3d: "\xc4\x06\u9d3d", // 鴽
+ 0x9d3e: "\xc4\x06\u9d3e", // 鴾
+ 0x9d3f: "\xc4\x06\u9d3f", // 鴿
+ 0x9d40: "\xc4\x06\u9d40", // 鵀
+ 0x9d41: "\xc4\x06\u9d41", // 鵁
+ 0x9d42: "\xc4\x06\u9d42", // 鵂
+ 0x9d43: "\xc4\x06\u9d43", // 鵃
+ 0x9d44: "\xc4\x06\u9d44", // 鵄
+ 0x9d45: "\xc4\x06\u9d45", // 鵅
+ 0x9d46: "\xc4\x06\u9d46", // 鵆
+ 0x9d47: "\xc4\x06\u9d47", // 鵇
+ 0x9d48: "\xc4\x06\u9d48", // 鵈
+ 0x9d49: "\xc4\x06\u9d49", // 鵉
+ 0x9d4a: "\xc4\a\u9d4a", // 鵊
+ 0x9d4b: "\xc4\a\u9d4b", // 鵋
+ 0x9d4c: "\xc4\a\u9d4c", // 鵌
+ 0x9d4d: "\xc4\a\u9d4d", // 鵍
+ 0x9d4e: "\xc4\a\u9d4e", // 鵎
+ 0x9d4f: "\xc4\a\u9d4f", // 鵏
+ 0x9d50: "\xc4\a\u9d50", // 鵐
+ 0x9d51: "\xc4\a\u9d51", // 鵑
+ 0x9d52: "\xc4\a\u9d52", // 鵒
+ 0x9d53: "\xc4\a\u9d53", // 鵓
+ 0x9d54: "\xc4\a\u9d54", // 鵔
+ 0x9d55: "\xc4\a\u9d55", // 鵕
+ 0x9d56: "\xc4\a\u9d56", // 鵖
+ 0x9d57: "\xc4\a\u9d57", // 鵗
+ 0x9d58: "\xc4\a\u9d58", // 鵘
+ 0x9d59: "\xc4\a\u9d59", // 鵙
+ 0x9d5a: "\xc4\a\u9d5a", // 鵚
+ 0x9d5b: "\xc4\a\u9d5b", // 鵛
+ 0x9d5c: "\xc4\a\u9d5c", // 鵜
+ 0x9d5d: "\xc4\a\u9d5d", // 鵝
+ 0x9d5e: "\xc4\a\u9d5e", // 鵞
+ 0x9d5f: "\xc4\a\u9d5f", // 鵟
+ 0x9d60: "\xc4\a\u9d60", // 鵠
+ 0x9d61: "\xc4\a\u9d61", // 鵡
+ 0x9d62: "\xc4\a\u9d62", // 鵢
+ 0x9d63: "\xc4\a\u9d63", // 鵣
+ 0x9d64: "\x94\v\u9d64", // 鵤
+ 0x9d65: "\xc4\a\u9d65", // 鵥
+ 0x9d66: "\xc4\b\u9d66", // 鵦
+ 0x9d67: "\xc4\b\u9d67", // 鵧
+ 0x9d68: "\xc4\b\u9d68", // 鵨
+ 0x9d69: "\xc4\b\u9d69", // 鵩
+ 0x9d6a: "\xc4\b\u9d6a", // 鵪
+ 0x9d6b: "\xc4\b\u9d6b", // 鵫
+ 0x9d6c: "\xc4\b\u9d6c", // 鵬
+ 0x9d6d: "\xc4\b\u9d6d", // 鵭
+ 0x9d6e: "\xc4\b\u9d6e", // 鵮
+ 0x9d6f: "\xc4\b\u9d6f", // 鵯
+ 0x9d70: "\xc4\b\u9d70", // 鵰
+ 0x9d71: "\xc4\b\u9d71", // 鵱
+ 0x9d72: "\xc4\b\u9d72", // 鵲
+ 0x9d73: "\xc4\b\u9d73", // 鵳
+ 0x9d74: "\xc4\b\u9d74", // 鵴
+ 0x9d75: "\xc4\b\u9d75", // 鵵
+ 0x9d76: "\xc4\b\u9d76", // 鵶
+ 0x9d77: "\xc4\b\u9d77", // 鵷
+ 0x9d78: "\xc4\b\u9d78", // 鵸
+ 0x9d79: "\xc4\b\u9d79", // 鵹
+ 0x9d7a: "\xc4\b\u9d7a", // 鵺
+ 0x9d7b: "\xc4\b\u9d7b", // 鵻
+ 0x9d7c: "\xc4\b\u9d7c", // 鵼
+ 0x9d7d: "\xc4\b\u9d7d", // 鵽
+ 0x9d7e: "\xc4\b\u9d7e", // 鵾
+ 0x9d7f: "\xc4\b\u9d7f", // 鵿
+ 0x9d80: "\xc4\b\u9d80", // 鶀
+ 0x9d81: "\xc4\b\u9d81", // 鶁
+ 0x9d82: "\xc4\b\u9d82", // 鶂
+ 0x9d83: "\xc4\b\u9d83", // 鶃
+ 0x9d84: "\xc4\b\u9d84", // 鶄
+ 0x9d85: "\xc4\b\u9d85", // 鶅
+ 0x9d86: "\xc4\b\u9d86", // 鶆
+ 0x9d87: "\xc4\b\u9d87", // 鶇
+ 0x9d88: "\xc4\b\u9d88", // 鶈
+ 0x9d89: "\xc4\b\u9d89", // 鶉
+ 0x9d8a: "\xc4\b\u9d8a", // 鶊
+ 0x9d8b: "\xc4\b\u9d8b", // 鶋
+ 0x9d8c: "\xc4\b\u9d8c", // 鶌
+ 0x9d8d: "\xc4\b\u9d8d", // 鶍
+ 0x9d8e: "\xc4\b\u9d8e", // 鶎
+ 0x9d8f: "\xc4\b\u9d8f", // 鶏
+ 0x9d90: "\xc4\t\u9d90", // 鶐
+ 0x9d91: "\xc4\b\u9d91", // 鶑
+ 0x9d92: "\xc4\t\u9d92", // 鶒
+ 0x9d93: "\xc4\t\u9d93", // 鶓
+ 0x9d94: "\xc4\t\u9d94", // 鶔
+ 0x9d95: "\xc4\t\u9d95", // 鶕
+ 0x9d96: "\xc4\t\u9d96", // 鶖
+ 0x9d97: "\xc4\t\u9d97", // 鶗
+ 0x9d98: "\xc4\t\u9d98", // 鶘
+ 0x9d99: "\xc4\t\u9d99", // 鶙
+ 0x9d9a: "\xc4\t\u9d9a", // 鶚
+ 0x9d9b: "\xc4\t\u9d9b", // 鶛
+ 0x9d9c: "\xc4\t\u9d9c", // 鶜
+ 0x9d9d: "\xc4\t\u9d9d", // 鶝
+ 0x9d9e: "\xc4\t\u9d9e", // 鶞
+ 0x9d9f: "\xc4\t\u9d9f", // 鶟
+ 0x9da0: "\xc4\t\u9da0", // 鶠
+ 0x9da1: "\xc4\t\u9da1", // 鶡
+ 0x9da2: "\xc4\t\u9da2", // 鶢
+ 0x9da3: "\xc4\t\u9da3", // 鶣
+ 0x9da4: "\xc4\t\u9da4", // 鶤
+ 0x9da5: "\xc4\t\u9da5", // 鶥
+ 0x9da6: "\xc4\t\u9da6", // 鶦
+ 0x9da7: "\xc4\t\u9da7", // 鶧
+ 0x9da8: "\xc4\t\u9da8", // 鶨
+ 0x9da9: "\xc4\t\u9da9", // 鶩
+ 0x9daa: "\xc4\t\u9daa", // 鶪
+ 0x9dab: "\xc4\t\u9dab", // 鶫
+ 0x9dac: "\xc4\n\u9dac", // 鶬
+ 0x9dad: "\xc4\n\u9dad", // 鶭
+ 0x9dae: "\xc4\n\u9dae", // 鶮
+ 0x9daf: "\xc4\n\u9daf", // 鶯
+ 0x9db0: "\xc4\n\u9db0", // 鶰
+ 0x9db1: "\xc4\n\u9db1", // 鶱
+ 0x9db2: "\xc4\n\u9db2", // 鶲
+ 0x9db3: "\xc4\n\u9db3", // 鶳
+ 0x9db4: "\xc4\n\u9db4", // 鶴
+ 0x9db5: "\xc4\n\u9db5", // 鶵
+ 0x9db6: "\xc4\n\u9db6", // 鶶
+ 0x9db7: "\xc4\n\u9db7", // 鶷
+ 0x9db8: "\xc4\n\u9db8", // 鶸
+ 0x9db9: "\xc4\n\u9db9", // 鶹
+ 0x9dba: "\xc4\n\u9dba", // 鶺
+ 0x9dbb: "\xc4\n\u9dbb", // 鶻
+ 0x9dbc: "\xc4\n\u9dbc", // 鶼
+ 0x9dbd: "\xc4\n\u9dbd", // 鶽
+ 0x9dbe: "\xc4\n\u9dbe", // 鶾
+ 0x9dbf: "\xc4\n\u9dbf", // 鶿
+ 0x9dc0: "\xc4\n\u9dc0", // 鷀
+ 0x9dc1: "\xc4\n\u9dc1", // 鷁
+ 0x9dc2: "\xc4\n\u9dc2", // 鷂
+ 0x9dc3: "\xc4\n\u9dc3", // 鷃
+ 0x9dc4: "\xc4\n\u9dc4", // 鷄
+ 0x9dc5: "\xc4\n\u9dc5", // 鷅
+ 0x9dc6: "\xc4\n\u9dc6", // 鷆
+ 0x9dc7: "\xc4\n\u9dc7", // 鷇
+ 0x9dc8: "\xc4\n\u9dc8", // 鷈
+ 0x9dc9: "\xc4\n\u9dc9", // 鷉
+ 0x9dca: "\xc4\n\u9dca", // 鷊
+ 0x9dcb: "\xc4\v\u9dcb", // 鷋
+ 0x9dcc: "\xc4\n\u9dcc", // 鷌
+ 0x9dcd: "\xc4\n\u9dcd", // 鷍
+ 0x9dce: "\xc4\n\u9dce", // 鷎
+ 0x9dcf: "\xc4\n\u9dcf", // 鷏
+ 0x9dd0: "\xc4\v\u9dd0", // 鷐
+ 0x9dd1: "\xc4\v\u9dd1", // 鷑
+ 0x9dd2: "\xc4\v\u9dd2", // 鷒
+ 0x9dd3: "\xc4\v\u9dd3", // 鷓
+ 0x9dd4: "\xc4\v\u9dd4", // 鷔
+ 0x9dd5: "\xc4\v\u9dd5", // 鷕
+ 0x9dd6: "\xc4\v\u9dd6", // 鷖
+ 0x9dd7: "\xc4\v\u9dd7", // 鷗
+ 0x9dd8: "\xc4\v\u9dd8", // 鷘
+ 0x9dd9: "\xc4\v\u9dd9", // 鷙
+ 0x9dda: "\xc4\v\u9dda", // 鷚
+ 0x9ddb: "\xc4\v\u9ddb", // 鷛
+ 0x9ddc: "\xc4\v\u9ddc", // 鷜
+ 0x9ddd: "\xc4\v\u9ddd", // 鷝
+ 0x9dde: "\xc4\v\u9dde", // 鷞
+ 0x9ddf: "\xc4\v\u9ddf", // 鷟
+ 0x9de0: "\xc3\v\u9de0", // 鷠
+ 0x9de1: "\xc4\f\u9de1", // 鷡
+ 0x9de2: "\xc4\f\u9de2", // 鷢
+ 0x9de3: "\xc4\f\u9de3", // 鷣
+ 0x9de4: "\xc4\f\u9de4", // 鷤
+ 0x9de5: "\xc4\f\u9de5", // 鷥
+ 0x9de6: "\xc4\f\u9de6", // 鷦
+ 0x9de7: "\xc4\f\u9de7", // 鷧
+ 0x9de8: "\xc4\f\u9de8", // 鷨
+ 0x9de9: "\xc4\f\u9de9", // 鷩
+ 0x9dea: "\xc4\f\u9dea", // 鷪
+ 0x9deb: "\xc4\f\u9deb", // 鷫
+ 0x9dec: "\xc4\f\u9dec", // 鷬
+ 0x9ded: "\xc4\f\u9ded", // 鷭
+ 0x9dee: "\xc4\f\u9dee", // 鷮
+ 0x9def: "\xc4\f\u9def", // 鷯
+ 0x9df0: "\xc4\f\u9df0", // 鷰
+ 0x9df1: "\xc4\f\u9df1", // 鷱
+ 0x9df2: "\xc4\f\u9df2", // 鷲
+ 0x9df3: "\xc4\f\u9df3", // 鷳
+ 0x9df4: "\xc4\f\u9df4", // 鷴
+ 0x9df5: "\xc4\f\u9df5", // 鷵
+ 0x9df6: "\xc4\f\u9df6", // 鷶
+ 0x9df7: "\xc4\f\u9df7", // 鷷
+ 0x9df8: "\xc4\f\u9df8", // 鷸
+ 0x9df9: "\xc4\r\u9df9", // 鷹
+ 0x9dfa: "\xc4\f\u9dfa", // 鷺
+ 0x9dfb: "\xc4\f\u9dfb", // 鷻
+ 0x9dfc: "\xc4\f\u9dfc", // 鷼
+ 0x9dfd: "\xc4\r\u9dfd", // 鷽
+ 0x9dfe: "\xc4\r\u9dfe", // 鷾
+ 0x9dff: "\xc4\r\u9dff", // 鷿
+ 0x9e00: "\xc4\r\u9e00", // 鸀
+ 0x9e01: "\xc4\r\u9e01", // 鸁
+ 0x9e02: "\xc4\r\u9e02", // 鸂
+ 0x9e03: "\xc4\r\u9e03", // 鸃
+ 0x9e04: "\xc4\r\u9e04", // 鸄
+ 0x9e05: "\xc4\r\u9e05", // 鸅
+ 0x9e06: "\xc4\r\u9e06", // 鸆
+ 0x9e07: "\xc4\r\u9e07", // 鸇
+ 0x9e08: "\xc4\r\u9e08", // 鸈
+ 0x9e09: "\xc4\r\u9e09", // 鸉
+ 0x9e0a: "\xc4\r\u9e0a", // 鸊
+ 0x9e0b: "\xc4\x0e\u9e0b", // 鸋
+ 0x9e0c: "\xc4\x0e\u9e0c", // 鸌
+ 0x9e0d: "\xc4\x0e\u9e0d", // 鸍
+ 0x9e0e: "\xc4\x0e\u9e0e", // 鸎
+ 0x9e0f: "\xc4\x0e\u9e0f", // 鸏
+ 0x9e10: "\xc4\x0e\u9e10", // 鸐
+ 0x9e11: "\xc4\x0e\u9e11", // 鸑
+ 0x9e12: "\xc4\x0e\u9e12", // 鸒
+ 0x9e13: "\xc4\x0f\u9e13", // 鸓
+ 0x9e14: "\xc4\x0f\u9e14", // 鸔
+ 0x9e15: "\xc4\x10\u9e15", // 鸕
+ 0x9e16: "\xc4\x10\u9e16", // 鸖
+ 0x9e17: "\xc4\x10\u9e17", // 鸗
+ 0x9e18: "\xc4\x11\u9e18", // 鸘
+ 0x9e19: "\xc4\x11\u9e19", // 鸙
+ 0x9e1a: "\xc4\x11\u9e1a", // 鸚
+ 0x9e1b: "\xc4\x12\u9e1b", // 鸛
+ 0x9e1c: "\xc4\x12\u9e1c", // 鸜
+ 0x9e1d: "\xc4\x13\u9e1d", // 鸝
+ 0x9e1e: "\xc4\x13\u9e1e", // 鸞
+ 0x9e1f: "\xc4\x00\u9e1f", // 鸟
+ 0x9e20: "\xc4\x02\u9e20", // 鸠
+ 0x9e21: "\xc4\x02\u9e21", // 鸡
+ 0x9e22: "\xc4\x03\u9e22", // 鸢
+ 0x9e23: "\xc4\x03\u9e23", // 鸣
+ 0x9e24: "\xc4\x03\u9e24", // 鸤
+ 0x9e25: "\xc4\x04\u9e25", // 鸥
+ 0x9e26: "\xc4\x04\u9e26", // 鸦
+ 0x9e27: "\xc4\x04\u9e27", // 鸧
+ 0x9e28: "\xc4\x04\u9e28", // 鸨
+ 0x9e29: "\xc4\x04\u9e29", // 鸩
+ 0x9e2a: "\xc4\x05\u9e2a", // 鸪
+ 0x9e2b: "\xc4\x05\u9e2b", // 鸫
+ 0x9e2c: "\xc4\x05\u9e2c", // 鸬
+ 0x9e2d: "\xc4\x05\u9e2d", // 鸭
+ 0x9e2e: "\xc4\x05\u9e2e", // 鸮
+ 0x9e2f: "\xc4\x05\u9e2f", // 鸯
+ 0x9e30: "\xc4\x05\u9e30", // 鸰
+ 0x9e31: "\xc4\x05\u9e31", // 鸱
+ 0x9e32: "\xc4\x05\u9e32", // 鸲
+ 0x9e33: "\xc4\x05\u9e33", // 鸳
+ 0x9e34: "\xc4\x05\u9e34", // 鸴
+ 0x9e35: "\xc4\x05\u9e35", // 鸵
+ 0x9e36: "\xc4\x05\u9e36", // 鸶
+ 0x9e37: "\xc4\x06\u9e37", // 鸷
+ 0x9e38: "\xc4\x06\u9e38", // 鸸
+ 0x9e39: "\xc4\x06\u9e39", // 鸹
+ 0x9e3a: "\xc4\x06\u9e3a", // 鸺
+ 0x9e3b: "\xc4\x06\u9e3b", // 鸻
+ 0x9e3c: "\xc4\x06\u9e3c", // 鸼
+ 0x9e3d: "\xc4\x06\u9e3d", // 鸽
+ 0x9e3e: "\xc4\x06\u9e3e", // 鸾
+ 0x9e3f: "\xc4\x06\u9e3f", // 鸿
+ 0x9e40: "\xc4\a\u9e40", // 鹀
+ 0x9e41: "\xc4\a\u9e41", // 鹁
+ 0x9e42: "\xc4\a\u9e42", // 鹂
+ 0x9e43: "\xc4\a\u9e43", // 鹃
+ 0x9e44: "\xc4\a\u9e44", // 鹄
+ 0x9e45: "\xc4\a\u9e45", // 鹅
+ 0x9e46: "\xc4\a\u9e46", // 鹆
+ 0x9e47: "\xc4\a\u9e47", // 鹇
+ 0x9e48: "\xc4\a\u9e48", // 鹈
+ 0x9e49: "\xc4\b\u9e49", // 鹉
+ 0x9e4a: "\xc4\b\u9e4a", // 鹊
+ 0x9e4b: "\xc4\b\u9e4b", // 鹋
+ 0x9e4c: "\xc4\b\u9e4c", // 鹌
+ 0x9e4d: "\xc4\b\u9e4d", // 鹍
+ 0x9e4e: "\xc4\b\u9e4e", // 鹎
+ 0x9e4f: "\xc4\b\u9e4f", // 鹏
+ 0x9e50: "\xc4\b\u9e50", // 鹐
+ 0x9e51: "\xc4\b\u9e51", // 鹑
+ 0x9e52: "\xc4\b\u9e52", // 鹒
+ 0x9e53: "\xc4\b\u9e53", // 鹓
+ 0x9e54: "\xc4\b\u9e54", // 鹔
+ 0x9e55: "\xc4\t\u9e55", // 鹕
+ 0x9e56: "\xc4\t\u9e56", // 鹖
+ 0x9e57: "\xc4\t\u9e57", // 鹗
+ 0x9e58: "\xc4\n\u9e58", // 鹘
+ 0x9e59: "\xc4\t\u9e59", // 鹙
+ 0x9e5a: "\xc4\t\u9e5a", // 鹚
+ 0x9e5b: "\xc4\t\u9e5b", // 鹛
+ 0x9e5c: "\xc4\t\u9e5c", // 鹜
+ 0x9e5d: "\xc4\n\u9e5d", // 鹝
+ 0x9e5e: "\xc4\n\u9e5e", // 鹞
+ 0x9e5f: "\xc4\n\u9e5f", // 鹟
+ 0x9e60: "\xc4\n\u9e60", // 鹠
+ 0x9e61: "\xc4\n\u9e61", // 鹡
+ 0x9e62: "\xc4\n\u9e62", // 鹢
+ 0x9e63: "\xc4\n\u9e63", // 鹣
+ 0x9e64: "\xc4\n\u9e64", // 鹤
+ 0x9e65: "\xc4\v\u9e65", // 鹥
+ 0x9e66: "\xc4\v\u9e66", // 鹦
+ 0x9e67: "\xc4\v\u9e67", // 鹧
+ 0x9e68: "\xc4\v\u9e68", // 鹨
+ 0x9e69: "\xc4\f\u9e69", // 鹩
+ 0x9e6a: "\xc4\f\u9e6a", // 鹪
+ 0x9e6b: "\xc4\f\u9e6b", // 鹫
+ 0x9e6c: "\xc4\f\u9e6c", // 鹬
+ 0x9e6d: "\xc4\r\u9e6d", // 鹭
+ 0x9e6e: "\xc4\r\u9e6e", // 鹮
+ 0x9e6f: "\xc4\r\u9e6f", // 鹯
+ 0x9e70: "\xc4\r\u9e70", // 鹰
+ 0x9e71: "\xc4\x0e\u9e71", // 鹱
+ 0x9e72: "\xc4\x0e\u9e72", // 鹲
+ 0x9e73: "\xc4\x11\u9e73", // 鹳
+ 0x9e74: "\xc4\x11\u9e74", // 鹴
+ 0x9e75: "\xc5\x00\u9e75", // 鹵
+ 0x9e76: "\xc5\x04\u9e76", // 鹶
+ 0x9e77: "\xc5\x05\u9e77", // 鹷
+ 0x9e78: "\xc5\b\u9e78", // 鹸
+ 0x9e79: "\xc5\t\u9e79", // 鹹
+ 0x9e7a: "\xc5\n\u9e7a", // 鹺
+ 0x9e7b: "\xc5\n\u9e7b", // 鹻
+ 0x9e7c: "\xc5\r\u9e7c", // 鹼
+ 0x9e7d: "\xc5\r\u9e7d", // 鹽
+ 0x9e7e: "\xc5\t\u9e7e", // 鹾
+ 0x9e7f: "\xc6\x00\u9e7f", // 鹿
+ 0x9e80: "\xc6\x02\u9e80", // 麀
+ 0x9e81: "\xc6\x02\u9e81", // 麁
+ 0x9e82: "\xc6\x02\u9e82", // 麂
+ 0x9e83: "\xc6\x04\u9e83", // 麃
+ 0x9e84: "\xc6\x04\u9e84", // 麄
+ 0x9e85: "\xc6\x05\u9e85", // 麅
+ 0x9e86: "\xc6\x05\u9e86", // 麆
+ 0x9e87: "\xc6\x05\u9e87", // 麇
+ 0x9e88: "\xc6\x05\u9e88", // 麈
+ 0x9e89: "\xc6\x06\u9e89", // 麉
+ 0x9e8a: "\xc6\x06\u9e8a", // 麊
+ 0x9e8b: "\xc6\x06\u9e8b", // 麋
+ 0x9e8c: "\xc6\a\u9e8c", // 麌
+ 0x9e8d: "\xc6\a\u9e8d", // 麍
+ 0x9e8e: "\xc6\a\u9e8e", // 麎
+ 0x9e8f: "\xc6\a\u9e8f", // 麏
+ 0x9e90: "\xc6\a\u9e90", // 麐
+ 0x9e91: "\xc6\b\u9e91", // 麑
+ 0x9e92: "\xc6\b\u9e92", // 麒
+ 0x9e93: "\xc6\b\u9e93", // 麓
+ 0x9e94: "\xc6\b\u9e94", // 麔
+ 0x9e95: "\xc6\b\u9e95", // 麕
+ 0x9e96: "\xc6\b\u9e96", // 麖
+ 0x9e97: "\xc6\b\u9e97", // 麗
+ 0x9e98: "\xc6\t\u9e98", // 麘
+ 0x9e99: "\xc6\t\u9e99", // 麙
+ 0x9e9a: "\xc6\t\u9e9a", // 麚
+ 0x9e9b: "\xc6\t\u9e9b", // 麛
+ 0x9e9c: "\xc6\n\u9e9c", // 麜
+ 0x9e9d: "\xc6\n\u9e9d", // 麝
+ 0x9e9e: "\xc6\v\u9e9e", // 麞
+ 0x9e9f: "\xc6\f\u9e9f", // 麟
+ 0x9ea0: "\xc6\r\u9ea0", // 麠
+ 0x9ea1: "\xc6\x0e\u9ea1", // 麡
+ 0x9ea2: "\xc6\x11\u9ea2", // 麢
+ 0x9ea3: "\xc6\x14\u9ea3", // 麣
+ 0x9ea4: "\xc6\x16\u9ea4", // 麤
+ 0x9ea5: "\xc7\x00\u9ea5", // 麥
+ 0x9ea6: "\xc7\x00\u9ea6", // 麦
+ 0x9ea7: "\xc7\x03\u9ea7", // 麧
+ 0x9ea8: "\xc7\x04\u9ea8", // 麨
+ 0x9ea9: "\xc7\x04\u9ea9", // 麩
+ 0x9eaa: "\xc7\x04\u9eaa", // 麪
+ 0x9eab: "\xc7\x04\u9eab", // 麫
+ 0x9eac: "\xc7\x05\u9eac", // 麬
+ 0x9ead: "\xc7\x05\u9ead", // 麭
+ 0x9eae: "\xc7\x05\u9eae", // 麮
+ 0x9eaf: "\xc7\x06\u9eaf", // 麯
+ 0x9eb0: "\xc7\x06\u9eb0", // 麰
+ 0x9eb1: "\xc7\a\u9eb1", // 麱
+ 0x9eb2: "\xc7\a\u9eb2", // 麲
+ 0x9eb3: "\xc7\b\u9eb3", // 麳
+ 0x9eb4: "\xc7\b\u9eb4", // 麴
+ 0x9eb5: "\xc7\t\u9eb5", // 麵
+ 0x9eb6: "\xc7\v\u9eb6", // 麶
+ 0x9eb7: "\xc7\x12\u9eb7", // 麷
+ 0x9eb8: "\xc7\x04\u9eb8", // 麸
+ 0x9eb9: "\xc7\b\u9eb9", // 麹
+ 0x9eba: "\xc7\t\u9eba", // 麺
+ 0x9ebb: "\xc8\x00\u9ebb", // 麻
+ 0x9ebc: "\xc8\x03\u9ebc", // 麼
+ 0x9ebd: "\xc8\x03\u9ebd", // 麽
+ 0x9ebe: "\xc8\x04\u9ebe", // 麾
+ 0x9ebf: "\xc8\a\u9ebf", // 麿
+ 0x9ec0: "\xc8\b\u9ec0", // 黀
+ 0x9ec1: "\xc8\t\u9ec1", // 黁
+ 0x9ec2: "\xc8\r\u9ec2", // 黂
+ 0x9ec3: "\xc9\x00\u9ec3", // 黃
+ 0x9ec4: "\xc9\x00\u9ec4", // 黄
+ 0x9ec5: "\xc9\x04\u9ec5", // 黅
+ 0x9ec6: "\xc9\x04\u9ec6", // 黆
+ 0x9ec7: "\xc9\x05\u9ec7", // 黇
+ 0x9ec8: "\xc9\x05\u9ec8", // 黈
+ 0x9ec9: "\xc9\x05\u9ec9", // 黉
+ 0x9eca: "\xc9\x06\u9eca", // 黊
+ 0x9ecb: "\xc9\x06\u9ecb", // 黋
+ 0x9ecc: "\xc9\r\u9ecc", // 黌
+ 0x9ecd: "\xca\x00\u9ecd", // 黍
+ 0x9ece: "\xca\x03\u9ece", // 黎
+ 0x9ecf: "\xca\x05\u9ecf", // 黏
+ 0x9ed0: "\xca\n\u9ed0", // 黐
+ 0x9ed1: "\xcb\x00\u9ed1", // 黑
+ 0x9ed2: "\xcb\x00\u9ed2", // 黒
+ 0x9ed3: "\xcb\x03\u9ed3", // 黓
+ 0x9ed4: "\xcb\x04\u9ed4", // 黔
+ 0x9ed5: "\xcb\x04\u9ed5", // 黕
+ 0x9ed6: "\xcb\x04\u9ed6", // 黖
+ 0x9ed7: "\xcb\x04\u9ed7", // 黗
+ 0x9ed8: "\xcb\x04\u9ed8", // 默
+ 0x9ed9: "V\v\u9ed9", // 黙
+ 0x9eda: "\xcb\x05\u9eda", // 黚
+ 0x9edb: "\xcb\x05\u9edb", // 黛
+ 0x9edc: "\xcb\x05\u9edc", // 黜
+ 0x9edd: "\xcb\x05\u9edd", // 黝
+ 0x9ede: "\xcb\x05\u9ede", // 點
+ 0x9edf: "\xcb\x06\u9edf", // 黟
+ 0x9ee0: "\xcb\x06\u9ee0", // 黠
+ 0x9ee1: "\xcb\x06\u9ee1", // 黡
+ 0x9ee2: "\xcb\a\u9ee2", // 黢
+ 0x9ee3: "\xcb\a\u9ee3", // 黣
+ 0x9ee4: "\xcb\b\u9ee4", // 黤
+ 0x9ee5: "\xcb\b\u9ee5", // 黥
+ 0x9ee6: "\xcb\b\u9ee6", // 黦
+ 0x9ee7: "\xcb\b\u9ee7", // 黧
+ 0x9ee8: "\xcb\b\u9ee8", // 黨
+ 0x9ee9: "\xcb\b\u9ee9", // 黩
+ 0x9eea: "\xcb\b\u9eea", // 黪
+ 0x9eeb: "\xcb\t\u9eeb", // 黫
+ 0x9eec: "\xcb\t\u9eec", // 黬
+ 0x9eed: "\xcb\t\u9eed", // 黭
+ 0x9eee: "\xcb\t\u9eee", // 黮
+ 0x9eef: "\xcb\t\u9eef", // 黯
+ 0x9ef0: "\xcb\n\u9ef0", // 黰
+ 0x9ef1: "\xcb\n\u9ef1", // 黱
+ 0x9ef2: "\xcb\v\u9ef2", // 黲
+ 0x9ef3: "\xcb\v\u9ef3", // 黳
+ 0x9ef4: "\xcb\v\u9ef4", // 黴
+ 0x9ef5: "\xcb\r\u9ef5", // 黵
+ 0x9ef6: "\xcb\x0e\u9ef6", // 黶
+ 0x9ef7: "\xcb\x0f\u9ef7", // 黷
+ 0x9ef8: "\xcb\x10\u9ef8", // 黸
+ 0x9ef9: "\xcc\x00\u9ef9", // 黹
+ 0x9efa: "\xcc\x04\u9efa", // 黺
+ 0x9efb: "\xcc\x05\u9efb", // 黻
+ 0x9efc: "\xcc\a\u9efc", // 黼
+ 0x9efd: "\xcd\x00\u9efd", // 黽
+ 0x9efe: "\xcd\x00\u9efe", // 黾
+ 0x9eff: "\xcd\x04\u9eff", // 黿
+ 0x9f00: "\xcd\x05\u9f00", // 鼀
+ 0x9f01: "\xcd\x05\u9f01", // 鼁
+ 0x9f02: "\xcd\x05\u9f02", // 鼂
+ 0x9f03: "\xcd\x06\u9f03", // 鼃
+ 0x9f04: "\xcd\x06\u9f04", // 鼄
+ 0x9f05: "\xcd\b\u9f05", // 鼅
+ 0x9f06: "\xcd\n\u9f06", // 鼆
+ 0x9f07: "\xcd\n\u9f07", // 鼇
+ 0x9f08: "\xcd\f\u9f08", // 鼈
+ 0x9f09: "\xcd\f\u9f09", // 鼉
+ 0x9f0a: "\xcd\r\u9f0a", // 鼊
+ 0x9f0b: "\xcd\x04\u9f0b", // 鼋
+ 0x9f0c: "\xcd\x05\u9f0c", // 鼌
+ 0x9f0d: "\xcd\f\u9f0d", // 鼍
+ 0x9f0e: "\xce\x00\u9f0e", // 鼎
+ 0x9f0f: "\xce\x02\u9f0f", // 鼏
+ 0x9f10: "\xce\x02\u9f10", // 鼐
+ 0x9f11: "\xce\x02\u9f11", // 鼑
+ 0x9f12: "\xce\x03\u9f12", // 鼒
+ 0x9f13: "\xcf\x00\u9f13", // 鼓
+ 0x9f14: "\xcf\x00\u9f14", // 鼔
+ 0x9f15: "\xcf\x05\u9f15", // 鼕
+ 0x9f16: "\xcf\x05\u9f16", // 鼖
+ 0x9f17: "\xcf\x06\u9f17", // 鼗
+ 0x9f18: "\xcf\b\u9f18", // 鼘
+ 0x9f19: "\xcf\b\u9f19", // 鼙
+ 0x9f1a: "\xcf\b\u9f1a", // 鼚
+ 0x9f1b: "\xcf\b\u9f1b", // 鼛
+ 0x9f1c: "\xcf\n\u9f1c", // 鼜
+ 0x9f1d: "\xcf\v\u9f1d", // 鼝
+ 0x9f1e: "\xcf\v\u9f1e", // 鼞
+ 0x9f1f: "\xcf\f\u9f1f", // 鼟
+ 0x9f20: "\xd0\x00\u9f20", // 鼠
+ 0x9f21: "\xd0\x00\u9f21", // 鼡
+ 0x9f22: "\xd0\x04\u9f22", // 鼢
+ 0x9f23: "\xd0\x04\u9f23", // 鼣
+ 0x9f24: "\xd0\x04\u9f24", // 鼤
+ 0x9f25: "\xd0\x05\u9f25", // 鼥
+ 0x9f26: "\xd0\x05\u9f26", // 鼦
+ 0x9f27: "\xd0\x05\u9f27", // 鼧
+ 0x9f28: "\xd0\x05\u9f28", // 鼨
+ 0x9f29: "\xd0\x05\u9f29", // 鼩
+ 0x9f2a: "\xd0\x05\u9f2a", // 鼪
+ 0x9f2b: "\xd0\x05\u9f2b", // 鼫
+ 0x9f2c: "\xd0\x05\u9f2c", // 鼬
+ 0x9f2d: "\xd0\x06\u9f2d", // 鼭
+ 0x9f2e: "\xd0\a\u9f2e", // 鼮
+ 0x9f2f: "\xd0\a\u9f2f", // 鼯
+ 0x9f30: "\xd0\a\u9f30", // 鼰
+ 0x9f31: "\xd0\b\u9f31", // 鼱
+ 0x9f32: "\xd0\t\u9f32", // 鼲
+ 0x9f33: "\xd0\t\u9f33", // 鼳
+ 0x9f34: "\xd0\t\u9f34", // 鼴
+ 0x9f35: "\xd0\t\u9f35", // 鼵
+ 0x9f36: "\xd0\n\u9f36", // 鼶
+ 0x9f37: "\xd0\n\u9f37", // 鼷
+ 0x9f38: "\xd0\n\u9f38", // 鼸
+ 0x9f39: "\xd0\n\u9f39", // 鼹
+ 0x9f3a: "\xd0\x0f\u9f3a", // 鼺
+ 0x9f3b: "\xd1\x00\u9f3b", // 鼻
+ 0x9f3c: "\xd1\x02\u9f3c", // 鼼
+ 0x9f3d: "\xd1\x02\u9f3d", // 鼽
+ 0x9f3e: "\xd1\x03\u9f3e", // 鼾
+ 0x9f3f: "\xd1\x03\u9f3f", // 鼿
+ 0x9f40: "\xd1\x05\u9f40", // 齀
+ 0x9f41: "\xd1\x05\u9f41", // 齁
+ 0x9f42: "\xd1\b\u9f42", // 齂
+ 0x9f43: "\xd1\t\u9f43", // 齃
+ 0x9f44: "\xd1\t\u9f44", // 齄
+ 0x9f45: "\xd1\n\u9f45", // 齅
+ 0x9f46: "\xd1\n\u9f46", // 齆
+ 0x9f47: "\xd1\v\u9f47", // 齇
+ 0x9f48: "\xd1\r\u9f48", // 齈
+ 0x9f49: "\xd1\x16\u9f49", // 齉
+ 0x9f4a: "\xd2\x00\u9f4a", // 齊
+ 0x9f4b: "\xd2\x03\u9f4b", // 齋
+ 0x9f4c: "\xd2\x04\u9f4c", // 齌
+ 0x9f4d: "\xd2\x05\u9f4d", // 齍
+ 0x9f4e: "\xd2\a\u9f4e", // 齎
+ 0x9f4f: "\xd2\t\u9f4f", // 齏
+ 0x9f50: "\xd2\x00\u9f50", // 齐
+ 0x9f51: "\xd2\t\u9f51", // 齑
+ 0x9f52: "\xd3\x00\u9f52", // 齒
+ 0x9f53: "\xd3\x01\u9f53", // 齓
+ 0x9f54: "\xd3\x02\u9f54", // 齔
+ 0x9f55: "\xd3\x03\u9f55", // 齕
+ 0x9f56: "\xd3\x04\u9f56", // 齖
+ 0x9f57: "\xd3\x04\u9f57", // 齗
+ 0x9f58: "\xd3\x04\u9f58", // 齘
+ 0x9f59: "\xd3\x05\u9f59", // 齙
+ 0x9f5a: "\xd3\x05\u9f5a", // 齚
+ 0x9f5b: "\xd3\x05\u9f5b", // 齛
+ 0x9f5c: "\xd3\x05\u9f5c", // 齜
+ 0x9f5d: "\xd3\x05\u9f5d", // 齝
+ 0x9f5e: "\xd3\x05\u9f5e", // 齞
+ 0x9f5f: "\xd3\x05\u9f5f", // 齟
+ 0x9f60: "\xd3\x05\u9f60", // 齠
+ 0x9f61: "\xd3\x05\u9f61", // 齡
+ 0x9f62: "\xd3\x05\u9f62", // 齢
+ 0x9f63: "\xd3\x05\u9f63", // 齣
+ 0x9f64: "\xd3\x06\u9f64", // 齤
+ 0x9f65: "\xd3\x06\u9f65", // 齥
+ 0x9f66: "\xd3\x06\u9f66", // 齦
+ 0x9f67: "\xd3\x06\u9f67", // 齧
+ 0x9f68: "\xd3\x06\u9f68", // 齨
+ 0x9f69: "\xd3\x06\u9f69", // 齩
+ 0x9f6a: "\xd3\a\u9f6a", // 齪
+ 0x9f6b: "\xd3\a\u9f6b", // 齫
+ 0x9f6c: "\xd3\a\u9f6c", // 齬
+ 0x9f6d: "\xd3\b\u9f6d", // 齭
+ 0x9f6e: "\xd3\b\u9f6e", // 齮
+ 0x9f6f: "\xd3\b\u9f6f", // 齯
+ 0x9f70: "\xd3\b\u9f70", // 齰
+ 0x9f71: "\xd3\b\u9f71", // 齱
+ 0x9f72: "\xd3\t\u9f72", // 齲
+ 0x9f73: "\xd3\t\u9f73", // 齳
+ 0x9f74: "\xd3\t\u9f74", // 齴
+ 0x9f75: "\xd3\t\u9f75", // 齵
+ 0x9f76: "\xd3\t\u9f76", // 齶
+ 0x9f77: "\xd3\t\u9f77", // 齷
+ 0x9f78: "\xd3\n\u9f78", // 齸
+ 0x9f79: "\xd3\n\u9f79", // 齹
+ 0x9f7a: "\xd3\n\u9f7a", // 齺
+ 0x9f7b: "\xd3\n\u9f7b", // 齻
+ 0x9f7c: "\xd3\r\u9f7c", // 齼
+ 0x9f7d: "\xd3\r\u9f7d", // 齽
+ 0x9f7e: "\xd3\x14\u9f7e", // 齾
+ 0x9f7f: "\xd3\x00\u9f7f", // 齿
+ 0x9f80: "\xd3\x02\u9f80", // 龀
+ 0x9f81: "\xd3\x03\u9f81", // 龁
+ 0x9f82: "\xd3\x04\u9f82", // 龂
+ 0x9f83: "\xd3\x05\u9f83", // 龃
+ 0x9f84: "\xd3\x05\u9f84", // 龄
+ 0x9f85: "\xd3\x05\u9f85", // 龅
+ 0x9f86: "\xd3\x05\u9f86", // 龆
+ 0x9f87: "\xd3\x06\u9f87", // 龇
+ 0x9f88: "\xd3\x06\u9f88", // 龈
+ 0x9f89: "\xd3\a\u9f89", // 龉
+ 0x9f8a: "\xd3\a\u9f8a", // 龊
+ 0x9f8b: "\xd3\t\u9f8b", // 龋
+ 0x9f8c: "\xd3\t\u9f8c", // 龌
+ 0x9f8d: "\xd4\x00\u9f8d", // 龍
+ 0x9f8e: "\xd4\x02\u9f8e", // 龎
+ 0x9f8f: "\xd4\x03\u9f8f", // 龏
+ 0x9f90: "5\x10\u9f90", // 龐
+ 0x9f91: "\xd4\x04\u9f91", // 龑
+ 0x9f92: "\xd4\x05\u9f92", // 龒
+ 0x9f93: "\xd4\x06\u9f93", // 龓
+ 0x9f94: "\xd4\x06\u9f94", // 龔
+ 0x9f95: "\xd4\x06\u9f95", // 龕
+ 0x9f96: "\xd4\x10\u9f96", // 龖
+ 0x9f97: "\xd4\x11\u9f97", // 龗
+ 0x9f98: "\xd4 \u9f98", // 龘
+ 0x9f99: "\xd4\x00\u9f99", // 龙
+ 0x9f9a: "\xd4\x06\u9f9a", // 龚
+ 0x9f9b: "\xd4\x06\u9f9b", // 龛
+ 0x9f9c: "\xd5\x00\u9f9c", // 龜
+ 0x9f9d: "\xd5\x05\u9f9d", // 龝
+ 0x9f9e: "\xd5\f\u9f9e", // 龞
+ 0x9f9f: "\xd5\x00\u9f9f", // 龟
+ 0x9fa0: "\xd6\x00\u9fa0", // 龠
+ 0x9fa1: "\xd6\x04\u9fa1", // 龡
+ 0x9fa2: "\xd6\x05\u9fa2", // 龢
+ 0x9fa3: "\xd6\b\u9fa3", // 龣
+ 0x9fa4: "\xd6\t\u9fa4", // 龤
+ 0x9fa5: "\xd6\t\u9fa5", // 龥
+ 0x9fa6: "V\v\u9fa6", // 龦
+ 0x9fa7: "H\f\u9fa7", // 龧
+ 0x9fa8: "\x16\b\u9fa8", // 龨
+ 0x9fa9: "\x8c\r\u9fa9", // 龩
+ 0x9faa: "\x9c\x02\u9faa", // 龪
+ 0x9fab: "\x9f\x05\u9fab", // 龫
+ 0x9fac: "\xa7\b\u9fac", // 龬
+ 0x9fad: "\xbb\v\u9fad", // 龭
+ 0x9fae: "\xbb\x11\u9fae", // 龮
+ 0x9faf: "\xa7\x05\u9faf", // 龯
+ 0x9fb0: "M\x00\u9fb0", // 龰
+ 0x9fb1: "\x1f\x02\u9fb1", // 龱
+ 0x9fb2: "\xa7\n\u9fb2", // 龲
+ 0x9fb3: " \r\u9fb3", // 龳
+ 0x9fb4: "\x05\x01\u9fb4", // 龴
+ 0x9fb5: "@\x00\u9fb5", // 龵
+ 0x9fb6: " \x01\u9fb6", // 龶
+ 0x9fb7: "\x8c\x01\u9fb7", // 龷
+ 0x9fb8: "*\x02\u9fb8", // 龸
+ 0x9fb9: "\f\x04\u9fb9", // 龹
+ 0x9fba: "\x18\x06\u9fba", // 龺
+ 0x9fbb: "\x95\f\u9fbb", // 龻
+ 0x9fbc: " \x0e\u9fbc", // 龼
+ 0x9fbd: "V\v\u9fbd", // 龽
+ 0x9fbe: "k\b\u9fbe", // 龾
+ 0x9fbf: "\x8c\b\u9fbf", // 龿
+ 0x9fc0: "\x8c\x12\u9fc0", // 鿀
+ 0x9fc1: "\x95\x06\u9fc1", // 鿁
+ 0x9fc2: "\x9f\v\u9fc2", // 鿂
+ 0x9fc3: "m\a\u9fc3", // 鿃
+ 0x9fc4: "K\x06\u9fc4", // 鿄
+ 0x9fc5: "q\r\u9fc5", // 鿅
+ 0x9fc6: "q\x04\u9fc6", // 鿆
+ 0x9fc7: "\t\x06\u9fc7", // 鿇
+ 0x9fc8: "<\x04\u9fc8", // 鿈
+ 0x9fc9: "<\x04\u9fc9", // 鿉
+ 0x9fca: "\x8c\a\u9fca", // 鿊
+ 0x9fcb: "\x91\f\u9fcb", // 鿋
+ 0x9fcc: "U\t\u9fcc", // 鿌
+ 0x9fcd: " \x06\u9fcd", // 鿍
+ 0x9fce: "p\x06\u9fce", // 鿎
+ 0x9fcf: "\xa7\a\u9fcf", // 鿏
+ 0x9fd0: "\xc3\n\u9fd0", // 鿐
+ 0x9fd1: "\x0f\x05\u9fd1", // 鿑
+ 0x9fd2: "\x8c\x06\u9fd2", // 鿒
+ 0x9fd3: "\x8c\t\u9fd3", // 鿓
+ 0x9fd4: "\xa7\n\u9fd4", // 鿔
+ 0x9fd5: "\xc3\x04\u9fd5", // 鿕
+ 0x9fd6: "\x01\x06\u9fd6", // 鿖
+ 0x9fd7: "\x01\b\u9fd7", // 鿗
+ 0x9fd8: "\t\n\u9fd8", // 鿘
+ 0x9fd9: "\t\v\u9fd9", // 鿙
+ 0x9fda: "\t\x0e\u9fda", // 鿚
+ 0x9fdb: "\x0f\x16\u9fdb", // 鿛
+ 0x9fdc: "@\x13\u9fdc", // 鿜
+ 0x9fdd: "K\x17\u9fdd", // 鿝
+ 0x9fde: "N\x10\u9fde", // 鿞
+ 0x9fdf: "s\a\u9fdf", // 鿟
+ 0x9fe0: "s\x10\u9fe0", // 鿠
+ 0x9fe1: "z\x1c\u9fe1", // 鿡
+ 0x9fe2: "\x80\b\u9fe2", // 鿢
+ 0x9fe3: "\x80\t\u9fe3", // 鿣
+ 0x9fe4: "\x80\f\u9fe4", // 鿤
+ 0x9fe5: "\x8a\x11\u9fe5", // 鿥
+ 0x9fe6: "\x8c\x12\u9fe6", // 鿦
+ 0x9fe7: "\xaa\x17\u9fe7", // 鿧
+ 0x9fe8: "\xad\x13\u9fe8", // 鿨
+ 0x9fe9: "\xc3\x12\u9fe9", // 鿩
+ 0x9fea: "V\r\u9fea", // 鿪
+ 0xf900: "\x97\x03\uf900", // 豈
+ 0xf901: "I\x03\uf901", // 更
+ 0xf902: "\x9f\x00\uf902", // 車
+ 0xf903: "\x9a\x06\uf903", // 賈
+ 0xf904: "U\n\uf904", // 滑
+ 0xf905: "\x02\x06\uf905", // 串
+ 0xf906: "\x1e\x02\uf906", // 句
+ 0xf907: "\xd5\x00\uf907", // 龜
+ 0xf908: "\xd5\x00\uf908", // 龜
+ 0xf909: "%\x06\uf909", // 契
+ 0xf90a: "\xa7\x00\uf90a", // 金
+ 0xf90b: "\x1e\t\uf90b", // 喇
+ 0xf90c: "%\x05\uf90c", // 奈
+ 0xf90d: "=\x10\uf90d", // 懶
+ 0xf90e: "h\x10\uf90e", // 癩
+ 0xf90f: "z\x0e\uf90f", // 羅
+ 0xf910: "\x8c\x13\uf910", // 蘿
+ 0xf911: "\x8e\v\uf911", // 螺
+ 0xf912: "\x91\b\uf912", // 裸
+ 0xf913: "\xa2\x13\uf913", // 邏
+ 0xf914: "K\v\uf914", // 樂
+ 0xf915: "U\x06\uf915", // 洛
+ 0xf916: "V\x06\uf916", // 烙
+ 0xf917: "`\x06\uf917", // 珞
+ 0xf918: "\x8c\t\uf918", // 落
+ 0xf919: "\xa4\x06\uf919", // 酪
+ 0xf91a: "\xbb\x06\uf91a", // 駱
+ 0xf91b: "\x05\f\uf91b", // 亂
+ 0xf91c: "\x1a\x05\uf91c", // 卵
+ 0xf91d: "K\x11\uf91d", // 欄
+ 0xf91e: "V\x11\uf91e", // 爛
+ 0xf91f: "\x8c\x11\uf91f", // 蘭
+ 0xf920: "\xc4\x13\uf920", // 鸞
+ 0xf921: ".\t\uf921", // 嵐
+ 0xf922: "U\x0e\uf922", // 濫
+ 0xf923: "\x8c\x0e\uf923", // 藍
+ 0xf924: "\x91\x0e\uf924", // 襤
+ 0xf925: "@\x05\uf925", // 拉
+ 0xf926: "\x82\x0f\uf926", // 臘
+ 0xf927: "\x8e\x0f\uf927", // 蠟
+ 0xf928: "5\t\uf928", // 廊
+ 0xf929: "J\a\uf929", // 朗
+ 0xf92a: "U\a\uf92a", // 浪
+ 0xf92b: "^\a\uf92b", // 狼
+ 0xf92c: "\xa3\x06\uf92c", // 郎
+ 0xf92d: "\t\x06\uf92d", // 來
+ 0xf92e: "\x0f\x05\uf92e", // 冷
+ 0xf92f: "\x13\n\uf92f", // 勞
+ 0xf930: "@\r\uf930", // 擄
+ 0xf931: "K\x0f\uf931", // 櫓
+ 0xf932: "V\x10\uf932", // 爐
+ 0xf933: "l\v\uf933", // 盧
+ 0xf934: "}\x00\uf934", // 老
+ 0xf935: "\x8c\x10\uf935", // 蘆
+ 0xf936: "\x8d\x06\uf936", // 虜
+ 0xf937: "\x9d\x06\uf937", // 路
+ 0xf938: "\xad\f\uf938", // 露
+ 0xf939: "\xc3\x04\uf939", // 魯
+ 0xf93a: "\xc4\f\uf93a", // 鷺
+ 0xf93b: "p\b\uf93b", // 碌
+ 0xf93c: "q\b\uf93c", // 祿
+ 0xf93d: "x\b\uf93d", // 綠
+ 0xf93e: "\x8c\b\uf93e", // 菉
+ 0xf93f: "\xa7\b\uf93f", // 錄
+ 0xf940: "\xc6\x00\uf940", // 鹿
+ 0xf941: "\x95\b\uf941", // 論
+ 0xf942: " \x10\uf942", // 壟
+ 0xf943: "7\x04\uf943", // 弄
+ 0xf944: "v\x10\uf944", // 籠
+ 0xf945: "\x80\x10\uf945", // 聾
+ 0xf946: "]\x03\uf946", // 牢
+ 0xf947: "p\n\uf947", // 磊
+ 0xf948: "\x9a\x06\uf948", // 賂
+ 0xf949: "\xad\x05\uf949", // 雷
+ 0xf94a: " \x0f\uf94a", // 壘
+ 0xf94b: ",\v\uf94b", // 屢
+ 0xf94c: "K\v\uf94c", // 樓
+ 0xf94d: "U\b\uf94d", // 淚
+ 0xf94e: "U\v\uf94e", // 漏
+ 0xf94f: "x\x05\uf94f", // 累
+ 0xf950: "x\v\uf950", // 縷
+ 0xf951: "\xaa\x06\uf951", // 陋
+ 0xf952: "\x13\t\uf952", // 勒
+ 0xf953: "\x82\x02\uf953", // 肋
+ 0xf954: "\x0f\r\uf954", // 凜
+ 0xf955: "\x0f\b\uf955", // 凌
+ 0xf956: "s\b\uf956", // 稜
+ 0xf957: "x\b\uf957", // 綾
+ 0xf958: "\x8c\b\uf958", // 菱
+ 0xf959: "\xaa\b\uf959", // 陵
+ 0xf95a: "\x95\x0f\uf95a", // 讀
+ 0xf95b: "@\x05\uf95b", // 拏
+ 0xf95c: "K\v\uf95c", // 樂
+ 0xf95d: "\x95\t\uf95d", // 諾
+ 0xf95e: "\x03\x03\uf95e", // 丹
+ 0xf95f: "(\v\uf95f", // 寧
+ 0xf960: "=\x05\uf960", // 怒
+ 0xf961: "_\x06\uf961", // 率
+ 0xf962: "f\a\uf962", // 異
+ 0xf963: "\x15\x03\uf963", // 北
+ 0xf964: "p\f\uf964", // 磻
+ 0xf965: "\t\a\uf965", // 便
+ 0xf966: "<\t\uf966", // 復
+ 0xf967: "\x01\x03\uf967", // 不
+ 0xf968: "U\x05\uf968", // 泌
+ 0xf969: "B\v\uf969", // 數
+ 0xf96a: "x\x04\uf96a", // 索
+ 0xf96b: "\x1c\t\uf96b", // 參
+ 0xf96c: " \n\uf96c", // 塞
+ 0xf96d: "m\x04\uf96d", // 省
+ 0xf96e: "\x8c\t\uf96e", // 葉
+ 0xf96f: "\x95\a\uf96f", // 說
+ 0xf970: "O\a\uf970", // 殺
+ 0xf971: "\xa1\x00\uf971", // 辰
+ 0xf972: "U\x04\uf972", // 沈
+ 0xf973: "@\x06\uf973", // 拾
+ 0xf974: "\x8c\x05\uf974", // 若
+ 0xf975: "@\b\uf975", // 掠
+ 0xf976: "f\x06\uf976", // 略
+ 0xf977: "\b\a\uf977", // 亮
+ 0xf978: "\v\x06\uf978", // 兩
+ 0xf979: "\x0f\b\uf979", // 凉
+ 0xf97a: "K\a\uf97a", // 梁
+ 0xf97b: "w\f\uf97b", // 糧
+ 0xf97c: "\x8a\x01\uf97c", // 良
+ 0xf97d: "\x95\b\uf97d", // 諒
+ 0xf97e: "\xa6\x05\uf97e", // 量
+ 0xf97f: "\x13\x0f\uf97f", // 勵
+ 0xf980: "\x1e\x04\uf980", // 呂
+ 0xf981: "&\x00\uf981", // 女
+ 0xf982: "5\x10\uf982", // 廬
+ 0xf983: "F\x06\uf983", // 旅
+ 0xf984: "U\x0f\uf984", // 濾
+ 0xf985: "p\x0f\uf985", // 礪
+ 0xf986: "\xa9\a\uf986", // 閭
+ 0xf987: "\xbb\x13\uf987", // 驪
+ 0xf988: "\xc6\b\uf988", // 麗
+ 0xf989: "\xca\x03\uf989", // 黎
+ 0xf98a: "\x13\x00\uf98a", // 力
+ 0xf98b: "H\f\uf98b", // 曆
+ 0xf98c: "M\f\uf98c", // 歷
+ 0xf98d: "\x9f\x0f\uf98d", // 轢
+ 0xf98e: "3\x03\uf98e", // 年
+ 0xf98f: "=\f\uf98f", // 憐
+ 0xf990: "=\x13\uf990", // 戀
+ 0xf991: "@\f\uf991", // 撚
+ 0xf992: "U\v\uf992", // 漣
+ 0xf993: "V\t\uf993", // 煉
+ 0xf994: "`\v\uf994", // 璉
+ 0xf995: "s\x03\uf995", // 秊
+ 0xf996: "x\t\uf996", // 練
+ 0xf997: "\x80\v\uf997", // 聯
+ 0xf998: "\x9f\b\uf998", // 輦
+ 0xf999: "\x8c\v\uf999", // 蓮
+ 0xf99a: "\xa2\a\uf99a", // 連
+ 0xf99b: "\xa7\t\uf99b", // 鍊
+ 0xf99c: "\x12\x04\uf99c", // 列
+ 0xf99d: "\x13\x04\uf99d", // 劣
+ 0xf99e: "\x1e\x06\uf99e", // 咽
+ 0xf99f: "V\x06\uf99f", // 烈
+ 0xf9a0: "\x91\x06\uf9a0", // 裂
+ 0xf9a1: "\x95\a\uf9a1", // 說
+ 0xf9a2: "5\n\uf9a2", // 廉
+ 0xf9a3: "=\x04\uf9a3", // 念
+ 0xf9a4: "@\b\uf9a4", // 捻
+ 0xf9a5: "N\r\uf9a5", // 殮
+ 0xf9a6: "v\r\uf9a6", // 簾
+ 0xf9a7: "^\x0f\uf9a7", // 獵
+ 0xf9a8: "\t\x03\uf9a8", // 令
+ 0xf9a9: "\x1f\x05\uf9a9", // 囹
+ 0xf9aa: "(\v\uf9aa", // 寧
+ 0xf9ab: ".\x0e\uf9ab", // 嶺
+ 0xf9ac: "=\x05\uf9ac", // 怜
+ 0xf9ad: "`\x05\uf9ad", // 玲
+ 0xf9ae: "`\n\uf9ae", // 瑩
+ 0xf9af: "{\x05\uf9af", // 羚
+ 0xf9b0: "\x80\x05\uf9b0", // 聆
+ 0xf9b1: "\xa7\x05\uf9b1", // 鈴
+ 0xf9b2: "\xad\x05\uf9b2", // 零
+ 0xf9b3: "\xad\x10\uf9b3", // 靈
+ 0xf9b4: "\xb5\x05\uf9b4", // 領
+ 0xf9b5: "\t\x06\uf9b5", // 例
+ 0xf9b6: "q\r\uf9b6", // 禮
+ 0xf9b7: "\xa4\r\uf9b7", // 醴
+ 0xf9b8: "\xab\t\uf9b8", // 隸
+ 0xf9b9: "=\b\uf9b9", // 惡
+ 0xf9ba: "\x06\x01\uf9ba", // 了
+ 0xf9bb: "\t\f\uf9bb", // 僚
+ 0xf9bc: "(\f\uf9bc", // 寮
+ 0xf9bd: ",\x04\uf9bd", // 尿
+ 0xf9be: "D\x06\uf9be", // 料
+ 0xf9bf: "K\v\uf9bf", // 樂
+ 0xf9c0: "V\f\uf9c0", // 燎
+ 0xf9c1: "h\f\uf9c1", // 療
+ 0xf9c2: "\x8c\v\uf9c2", // 蓼
+ 0xf9c3: "\xa2\f\uf9c3", // 遼
+ 0xf9c4: "\xd4\x00\uf9c4", // 龍
+ 0xf9c5: "H\t\uf9c5", // 暈
+ 0xf9c6: "\xaa\x04\uf9c6", // 阮
+ 0xf9c7: "\x12\r\uf9c7", // 劉
+ 0xf9c8: "K\x04\uf9c8", // 杻
+ 0xf9c9: "K\x05\uf9c9", // 柳
+ 0xf9ca: "U\x06\uf9ca", // 流
+ 0xf9cb: "U\n\uf9cb", // 溜
+ 0xf9cc: "`\x06\uf9cc", // 琉
+ 0xf9cd: "f\x05\uf9cd", // 留
+ 0xf9ce: "p\a\uf9ce", // 硫
+ 0xf9cf: "x\x04\uf9cf", // 紐
+ 0xf9d0: "\xb5\n\uf9d0", // 類
+ 0xf9d1: "\f\x02\uf9d1", // 六
+ 0xf9d2: ">\v\uf9d2", // 戮
+ 0xf9d3: "\xaa\b\uf9d3", // 陸
+ 0xf9d4: "\t\b\uf9d4", // 倫
+ 0xf9d5: ".\b\uf9d5", // 崙
+ 0xf9d6: "U\b\uf9d6", // 淪
+ 0xf9d7: "\x9f\b\uf9d7", // 輪
+ 0xf9d8: "<\x06\uf9d8", // 律
+ 0xf9d9: "=\n\uf9d9", // 慄
+ 0xf9da: "K\x06\uf9da", // 栗
+ 0xf9db: "_\x06\uf9db", // 率
+ 0xf9dc: "\xaa\t\uf9dc", // 隆
+ 0xf9dd: "\x12\x05\uf9dd", // 利
+ 0xf9de: "\x1e\x03\uf9de", // 吏
+ 0xf9df: ",\f\uf9df", // 履
+ 0xf9e0: "H\x04\uf9e0", // 易
+ 0xf9e1: "K\x03\uf9e1", // 李
+ 0xf9e2: "K\a\uf9e2", // 梨
+ 0xf9e3: "U\x05\uf9e3", // 泥
+ 0xf9e4: "`\a\uf9e4", // 理
+ 0xf9e5: "h\a\uf9e5", // 痢
+ 0xf9e6: "z\v\uf9e6", // 罹
+ 0xf9e7: "\x91\a\uf9e7", // 裏
+ 0xf9e8: "\x91\a\uf9e8", // 裡
+ 0xf9e9: "\xa6\x00\uf9e9", // 里
+ 0xf9ea: "\xac\v\uf9ea", // 離
+ 0xf9eb: "\x17\t\uf9eb", // 匿
+ 0xf9ec: "U\n\uf9ec", // 溺
+ 0xf9ed: "\x1e\x04\uf9ed", // 吝
+ 0xf9ee: "V\f\uf9ee", // 燐
+ 0xf9ef: "`\f\uf9ef", // 璘
+ 0xf9f0: "\x8c\x10\uf9f0", // 藺
+ 0xf9f1: "\xaa\f\uf9f1", // 隣
+ 0xf9f2: "\xc3\f\uf9f2", // 鱗
+ 0xf9f3: "\xc6\f\uf9f3", // 麟
+ 0xf9f4: "K\x04\uf9f4", // 林
+ 0xf9f5: "U\b\uf9f5", // 淋
+ 0xf9f6: "\x83\v\uf9f6", // 臨
+ 0xf9f7: "u\x00\uf9f7", // 立
+ 0xf9f8: "v\x05\uf9f8", // 笠
+ 0xf9f9: "w\x05\uf9f9", // 粒
+ 0xf9fa: "^\x04\uf9fa", // 狀
+ 0xf9fb: "V\x04\uf9fb", // 炙
+ 0xf9fc: "\x95\f\uf9fc", // 識
+ 0xf9fd: "\t\x02\uf9fd", // 什
+ 0xf9fe: "\x8c\x06\uf9fe", // 茶
+ 0xf9ff: "\x12\x06\uf9ff", // 刺
+ 0xfa00: "\x12\x02\ufa00", // 切
+ 0xfa01: "5\x06\ufa01", // 度
+ 0xfa02: "@\x05\ufa02", // 拓
+ 0xfa03: "w\n\ufa03", // 糖
+ 0xfa04: "(\x03\ufa04", // 宅
+ 0xfa05: "U\x06\ufa05", // 洞
+ 0xfa06: "H\v\ufa06", // 暴
+ 0xfa07: "\x9f\t\ufa07", // 輻
+ 0xfa08: "\x90\x00\ufa08", // 行
+ 0xfa09: "\xaa\x06\ufa09", // 降
+ 0xfa0a: "\x93\x00\ufa0a", // 見
+ 0xfa0b: "5\v\ufa0b", // 廓
+ 0xfa0c: "\n\x01\ufa0c", // 兀
+ 0xfa0d: "\x1e\n\ufa0d", // 嗀
+ 0xfa0e: "\x1d\v\ufa0e", // 﨎
+ 0xfa0f: " \a\ufa0f", // 﨏
+ 0xfa10: " \n\ufa10", // 塚
+ 0xfa11: ".\t\ufa11", // 﨑
+ 0xfa12: "H\b\ufa12", // 晴
+ 0xfa13: "K\t\ufa13", // 﨓
+ 0xfa14: "K\n\ufa14", // 﨔
+ 0xfa15: "\x0f\x0e\ufa15", // 凞
+ 0xfa16: "^\b\ufa16", // 猪
+ 0xfa17: "l\x05\ufa17", // 益
+ 0xfa18: "q\x01\ufa18", // 礼
+ 0xfa19: "q\x05\ufa19", // 神
+ 0xfa1a: "q\x06\ufa1a", // 祥
+ 0xfa1b: "q\t\ufa1b", // 福
+ 0xfa1c: "\xae\x05\ufa1c", // 靖
+ 0xfa1d: "w\b\ufa1d", // 精
+ 0xfa1e: "|\x00\ufa1e", // 羽
+ 0xfa1f: "\x8c\r\ufa1f", // 﨟
+ 0xfa20: "\x8c\x11\ufa20", // 蘒
+ 0xfa21: "\x8e\x05\ufa21", // 﨡
+ 0xfa22: "\x95\t\ufa22", // 諸
+ 0xfa23: "\x9c\x04\ufa23", // 﨣
+ 0xfa24: "\xa2\x04\ufa24", // 﨤
+ 0xfa25: "\xa2\b\ufa25", // 逸
+ 0xfa26: "\xa3\t\ufa26", // 都
+ 0xfa27: "\xa7\a\ufa27", // 﨧
+ 0xfa28: "\xa7\b\ufa28", // 﨨
+ 0xfa29: "\xaa\n\ufa29", // 﨩
+ 0xfa2a: "\xb8\x04\ufa2a", // 飯
+ 0xfa2b: "\xb8\x05\ufa2b", // 飼
+ 0xfa2c: "\xb8\b\ufa2c", // 館
+ 0xfa2d: "\xc4\n\ufa2d", // 鶴
+ 0xfa2e: "\xa3\a\ufa2e", // 郞
+ 0xfa2f: "\xab\b\ufa2f", // 隷
+ 0xfa30: "\t\a\ufa30", // 侮
+ 0xfa31: "\t\f\ufa31", // 僧
+ 0xfa32: "\n\x06\ufa32", // 免
+ 0xfa33: "\x13\a\ufa33", // 勉
+ 0xfa34: "\x13\v\ufa34", // 勤
+ 0xfa35: "\x18\x06\ufa35", // 卑
+ 0xfa36: "\x1e\t\ufa36", // 喝
+ 0xfa37: "\x1e\v\ufa37", // 嘆
+ 0xfa38: "\x1e\r\ufa38", // 器
+ 0xfa39: " \t\ufa39", // 塀
+ 0xfa3a: " \f\ufa3a", // 墨
+ 0xfa3b: ",\f\ufa3b", // 層
+ 0xfa3c: "-\x00\ufa3c", // 屮
+ 0xfa3d: "=\a\ufa3d", // 悔
+ 0xfa3e: "=\t\ufa3e", // 慨
+ 0xfa3f: "=\f\ufa3f", // 憎
+ 0xfa40: "=\x0f\ufa40", // 懲
+ 0xfa41: "B\a\ufa41", // 敏
+ 0xfa42: "G\x05\ufa42", // 既
+ 0xfa43: "H\b\ufa43", // 暑
+ 0xfa44: "K\a\ufa44", // 梅
+ 0xfa45: "U\a\ufa45", // 海
+ 0xfa46: "U\b\ufa46", // 渚
+ 0xfa47: "U\v\ufa47", // 漢
+ 0xfa48: "V\b\ufa48", // 煮
+ 0xfa49: "W\x00\ufa49", // 爫
+ 0xfa4a: "`\b\ufa4a", // 琢
+ 0xfa4b: "p\b\ufa4b", // 碑
+ 0xfa4c: "q\x03\ufa4c", // 社
+ 0xfa4d: "q\x04\ufa4d", // 祉
+ 0xfa4e: "q\x04\ufa4e", // 祈
+ 0xfa4f: "q\x05\ufa4f", // 祐
+ 0xfa50: "q\x05\ufa50", // 祖
+ 0xfa51: "q\x05\ufa51", // 祝
+ 0xfa52: "q\t\ufa52", // 禍
+ 0xfa53: "q\t\ufa53", // 禎
+ 0xfa54: "s\n\ufa54", // 穀
+ 0xfa55: "t\x04\ufa55", // 突
+ 0xfa56: "v\a\ufa56", // 節
+ 0xfa57: "x\t\ufa57", // 練
+ 0xfa58: "x\n\ufa58", // 縉
+ 0xfa59: "x\v\ufa59", // 繁
+ 0xfa5a: "z\b\ufa5a", // 署
+ 0xfa5b: "}\x04\ufa5b", // 者
+ 0xfa5c: "\x84\x04\ufa5c", // 臭
+ 0xfa5d: "\x8c\x00\ufa5d", // 艹
+ 0xfa5e: "\x8c\x00\ufa5e", // 艹
+ 0xfa5f: "\x8c\b\ufa5f", // 著
+ 0xfa60: "\x91\t\ufa60", // 褐
+ 0xfa61: "\x93\x04\ufa61", // 視
+ 0xfa62: "\x95\t\ufa62", // 謁
+ 0xfa63: "\x95\v\ufa63", // 謹
+ 0xfa64: "\x9a\a\ufa64", // 賓
+ 0xfa65: "\x9a\f\ufa65", // 贈
+ 0xfa66: "\xa2\x00\ufa66", // 辶
+ 0xfa67: "\xa2\b\ufa67", // 逸
+ 0xfa68: "\xac\v\ufa68", // 難
+ 0xfa69: "\xb4\v\ufa69", // 響
+ 0xfa6a: "\xb5\a\ufa6a", // 頻
+ 0xfa6b: "=\a\ufa6b", // 恵
+ 0xfa6c: "V\n\ufa6c", // 𤋮
+ 0xfa6d: "\x1e\r\ufa6d", // 舘
+ 0xfa70: "\x01\a\ufa70", // 並
+ 0xfa71: "\x0f\x05\ufa71", // 况
+ 0xfa72: "\v\x04\ufa72", // 全
+ 0xfa73: "\t\x06\ufa73", // 侀
+ 0xfa74: "\n\x04\ufa74", // 充
+ 0xfa75: "\f\x0e\ufa75", // 冀
+ 0xfa76: "\x13\a\ufa76", // 勇
+ 0xfa77: "\x14\x01\ufa77", // 勺
+ 0xfa78: "\x1e\t\ufa78", // 喝
+ 0xfa79: "\x1e\b\ufa79", // 啕
+ 0xfa7a: "\x1e\t\ufa7a", // 喙
+ 0xfa7b: "\x1e\n\ufa7b", // 嗢
+ 0xfa7c: " \n\ufa7c", // 塚
+ 0xfa7d: " \f\ufa7d", // 墳
+ 0xfa7e: "%\x05\ufa7e", // 奄
+ 0xfa7f: "%\x06\ufa7f", // 奔
+ 0xfa80: "&\b\ufa80", // 婢
+ 0xfa81: "&\x0e\ufa81", // 嬨
+ 0xfa82: "5\v\ufa82", // 廒
+ 0xfa83: "5\f\ufa83", // 廙
+ 0xfa84: ";\b\ufa84", // 彩
+ 0xfa85: "<\n\ufa85", // 徭
+ 0xfa86: "=\b\ufa86", // 惘
+ 0xfa87: "=\n\ufa87", // 慎
+ 0xfa88: "=\t\ufa88", // 愈
+ 0xfa89: "=\f\ufa89", // 憎
+ 0xfa8a: "=\v\ufa8a", // 慠
+ 0xfa8b: "=\x0f\ufa8b", // 懲
+ 0xfa8c: ">\r\ufa8c", // 戴
+ 0xfa8d: "@\t\ufa8d", // 揄
+ 0xfa8e: "@\n\ufa8e", // 搜
+ 0xfa8f: "@\t\ufa8f", // 摒
+ 0xfa90: "B\a\ufa90", // 敖
+ 0xfa91: "H\b\ufa91", // 晴
+ 0xfa92: "J\a\ufa92", // 朗
+ 0xfa93: "J\a\ufa93", // 望
+ 0xfa94: "K\x03\ufa94", // 杖
+ 0xfa95: "N\x00\ufa95", // 歹
+ 0xfa96: "O\a\ufa96", // 殺
+ 0xfa97: "U\x06\ufa97", // 流
+ 0xfa98: "U\n\ufa98", // 滛
+ 0xfa99: "U\t\ufa99", // 滋
+ 0xfa9a: "U\v\ufa9a", // 漢
+ 0xfa9b: "U\x10\ufa9b", // 瀞
+ 0xfa9c: "V\b\ufa9c", // 煮
+ 0xfa9d: "m\f\ufa9d", // 瞧
+ 0xfa9e: "W\x0e\ufa9e", // 爵
+ 0xfa9f: "^\x02\ufa9f", // 犯
+ 0xfaa0: "^\b\ufaa0", // 猪
+ 0xfaa1: "`\n\ufaa1", // 瑱
+ 0xfaa2: "b\t\ufaa2", // 甆
+ 0xfaa3: "f\x03\ufaa3", // 画
+ 0xfaa4: "h\n\ufaa4", // 瘝
+ 0xfaa5: "h\t\ufaa5", // 瘟
+ 0xfaa6: "l\x05\ufaa6", // 益
+ 0xfaa7: "l\x06\ufaa7", // 盛
+ 0xfaa8: "m\x03\ufaa8", // 直
+ 0xfaa9: "m\a\ufaa9", // 睊
+ 0xfaaa: "m\a\ufaaa", // 着
+ 0xfaab: "p\n\ufaab", // 磌
+ 0xfaac: "t\n\ufaac", // 窱
+ 0xfaad: "v\a\ufaad", // 節
+ 0xfaae: "w\x03\ufaae", // 类
+ 0xfaaf: "x\a\ufaaf", // 絛
+ 0xfab0: "x\t\ufab0", // 練
+ 0xfab1: "y\x06\ufab1", // 缾
+ 0xfab2: "}\x04\ufab2", // 者
+ 0xfab3: "\x8c\x06\ufab3", // 荒
+ 0xfab4: "\x8c\b\ufab4", // 華
+ 0xfab5: "\x8e\n\ufab5", // 蝹
+ 0xfab6: "\x91\v\ufab6", // 襁
+ 0xfab7: "\x92\f\ufab7", // 覆
+ 0xfab8: "q\a\ufab8", // 視
+ 0xfab9: "\x95\b\ufab9", // 調
+ 0xfaba: "\x95\t\ufaba", // 諸
+ 0xfabb: "\x95\b\ufabb", // 請
+ 0xfabc: "\x95\t\ufabc", // 謁
+ 0xfabd: "\x95\t\ufabd", // 諾
+ 0xfabe: "\x95\t\ufabe", // 諭
+ 0xfabf: "\x95\v\ufabf", // 謹
+ 0xfac0: "\x95\x10\ufac0", // 變
+ 0xfac1: "\x9a\f\ufac1", // 贈
+ 0xfac2: "\x9f\t\ufac2", // 輸
+ 0xfac3: "\xa2\f\ufac3", // 遲
+ 0xfac4: "\xa4\n\ufac4", // 醙
+ 0xfac5: "\xa7\x06\ufac5", // 鉶
+ 0xfac6: "\xaa\t\ufac6", // 陼
+ 0xfac7: "\xac\v\ufac7", // 難
+ 0xfac8: "\xae\x05\ufac8", // 靖
+ 0xfac9: "\xb2\v\ufac9", // 韛
+ 0xfaca: "\xb4\v\ufaca", // 響
+ 0xfacb: "\xb5\x04\ufacb", // 頋
+ 0xfacc: "\xb5\a\ufacc", // 頻
+ 0xfacd: "\xbe\n\ufacd", // 鬒
+ 0xface: "\xd5\x00\uface", // 龜
+ 0xfacf: "=\f\ufacf", // 𢡊
+ 0xfad0: "=\f\ufad0", // 𢡄
+ 0xfad1: "K\x04\ufad1", // 𣏕
+ 0xfad2: "K\t\ufad2", // 㮝
+ 0xfad3: "m\x04\ufad3", // 䀘
+ 0xfad4: "m\a\ufad4", // 䀹
+ 0xfad5: "m\n\ufad5", // 𥉉
+ 0xfad6: "v\f\ufad6", // 𥳐
+ 0xfad7: "\x9c\x06\ufad7", // 𧻓
+ 0xfad8: "\xd1\t\ufad8", // 齃
+ 0xfad9: "\xd4\x02\ufad9", // 龎
+ 0x20000: "\x01\x01\U00020000", // 𠀀
+ 0x20001: "\x01\x01\U00020001", // 𠀁
+ 0x20002: "\x01\x01\U00020002", // 𠀂
+ 0x20003: "\x01\x02\U00020003", // 𠀃
+ 0x20004: "\x01\x02\U00020004", // 𠀄
+ 0x20005: "\x01\x02\U00020005", // 𠀅
+ 0x20006: "\x01\x02\U00020006", // 𠀆
+ 0x20007: "\x01\x03\U00020007", // 𠀇
+ 0x20008: "\x01\x03\U00020008", // 𠀈
+ 0x20009: "\x01\x03\U00020009", // 𠀉
+ 0x2000a: "\x01\x03\U0002000a", // 𠀊
+ 0x2000b: "\x01\x03\U0002000b", // 𠀋
+ 0x2000c: "\x01\x03\U0002000c", // 𠀌
+ 0x2000d: "\x01\x04\U0002000d", // 𠀍
+ 0x2000e: "\x01\x04\U0002000e", // 𠀎
+ 0x2000f: "\x01\x04\U0002000f", // 𠀏
+ 0x20010: "\x01\x04\U00020010", // 𠀐
+ 0x20011: "\x01\x04\U00020011", // 𠀑
+ 0x20012: "\x01\x04\U00020012", // 𠀒
+ 0x20013: "\x01\x04\U00020013", // 𠀓
+ 0x20014: "\x01\x04\U00020014", // 𠀔
+ 0x20015: "\x01\x04\U00020015", // 𠀕
+ 0x20016: "\x01\x04\U00020016", // 𠀖
+ 0x20017: "\x01\x04\U00020017", // 𠀗
+ 0x20018: "\x01\x05\U00020018", // 𠀘
+ 0x20019: "\x01\x05\U00020019", // 𠀙
+ 0x2001a: "\x01\x05\U0002001a", // 𠀚
+ 0x2001b: "%\x03\U0002001b", // 𠀛
+ 0x2001c: "\x01\x05\U0002001c", // 𠀜
+ 0x2001d: "\x19\x04\U0002001d", // 𠀝
+ 0x2001e: "\x01\x05\U0002001e", // 𠀞
+ 0x2001f: "\x01\x05\U0002001f", // 𠀟
+ 0x20020: "\x01\x05\U00020020", // 𠀠
+ 0x20021: "\x01\x06\U00020021", // 𠀡
+ 0x20022: "\x01\x06\U00020022", // 𠀢
+ 0x20023: "\x01\x06\U00020023", // 𠀣
+ 0x20024: "\x01\x06\U00020024", // 𠀤
+ 0x20025: "\a\x05\U00020025", // 𠀥
+ 0x20026: "\x01\x06\U00020026", // 𠀦
+ 0x20027: "\x01\x06\U00020027", // 𠀧
+ 0x20028: "\x01\x06\U00020028", // 𠀨
+ 0x20029: "\x06\x05\U00020029", // 𠀩
+ 0x2002a: "\x01\x06\U0002002a", // 𠀪
+ 0x2002b: "\x01\x06\U0002002b", // 𠀫
+ 0x2002c: "\x01\a\U0002002c", // 𠀬
+ 0x2002d: "\x01\a\U0002002d", // 𠀭
+ 0x2002e: "\x01\a\U0002002e", // 𠀮
+ 0x2002f: "\x1f\x05\U0002002f", // 𠀯
+ 0x20030: "\x01\a\U00020030", // 𠀰
+ 0x20031: "\x01\a\U00020031", // 𠀱
+ 0x20032: "\x01\a\U00020032", // 𠀲
+ 0x20033: "\x01\a\U00020033", // 𠀳
+ 0x20034: "\x01\a\U00020034", // 𠀴
+ 0x20035: "\x01\b\U00020035", // 𠀵
+ 0x20036: "\x01\b\U00020036", // 𠀶
+ 0x20037: "\x1e\x06\U00020037", // 𠀷
+ 0x20038: "\x01\b\U00020038", // 𠀸
+ 0x20039: "\x1e\x06\U00020039", // 𠀹
+ 0x2003a: "\x01\b\U0002003a", // 𠀺
+ 0x2003b: "\x01\b\U0002003b", // 𠀻
+ 0x2003c: "#\a\U0002003c", // 𠀼
+ 0x2003d: "\x01\t\U0002003d", // 𠀽
+ 0x2003e: "\x01\t\U0002003e", // 𠀾
+ 0x2003f: "\x01\t\U0002003f", // 𠀿
+ 0x20040: "\x01\t\U00020040", // 𠁀
+ 0x20041: "\x01\n\U00020041", // 𠁁
+ 0x20042: "\x01\n\U00020042", // 𠁂
+ 0x20043: "\x01\n\U00020043", // 𠁃
+ 0x20044: "\x01\n\U00020044", // 𠁄
+ 0x20045: "\x01\n\U00020045", // 𠁅
+ 0x20046: "\x01\v\U00020046", // 𠁆
+ 0x20047: "\x01\v\U00020047", // 𠁇
+ 0x20048: "\x01\v\U00020048", // 𠁈
+ 0x20049: "\x10\n\U00020049", // 𠁉
+ 0x2004a: "\x01\v\U0002004a", // 𠁊
+ 0x2004b: "\x01\v\U0002004b", // 𠁋
+ 0x2004c: "\x01\f\U0002004c", // 𠁌
+ 0x2004d: "\x01\f\U0002004d", // 𠁍
+ 0x2004e: "\x01\r\U0002004e", // 𠁎
+ 0x2004f: "\x01\r\U0002004f", // 𠁏
+ 0x20050: "\x01\r\U00020050", // 𠁐
+ 0x20051: "\x01\r\U00020051", // 𠁑
+ 0x20052: "\x01\r\U00020052", // 𠁒
+ 0x20053: "\x01\x0e\U00020053", // 𠁓
+ 0x20054: "\x01\x0e\U00020054", // 𠁔
+ 0x20055: "\x01\x0f\U00020055", // 𠁕
+ 0x20056: "\x01\x10\U00020056", // 𠁖
+ 0x20057: "\x01\x0f\U00020057", // 𠁗
+ 0x20058: "\x01\x0f\U00020058", // 𠁘
+ 0x20059: "\x01\x0f\U00020059", // 𠁙
+ 0x2005a: "\x01\x0f\U0002005a", // 𠁚
+ 0x2005b: "\x01\x0f\U0002005b", // 𠁛
+ 0x2005c: "\f\x0f\U0002005c", // 𠁜
+ 0x2005d: "\x01\x0f\U0002005d", // 𠁝
+ 0x2005e: "H\r\U0002005e", // 𠁞
+ 0x2005f: "\x01\x11\U0002005f", // 𠁟
+ 0x20060: "\x01\x13\U00020060", // 𠁠
+ 0x20061: "\x02\x01\U00020061", // 𠁡
+ 0x20062: "\x02\x01\U00020062", // 𠁢
+ 0x20063: "\x02\x03\U00020063", // 𠁣
+ 0x20064: "\x1f\x02\U00020064", // 𠁤
+ 0x20065: "\x02\x04\U00020065", // 𠁥
+ 0x20066: "\x02\x05\U00020066", // 𠁦
+ 0x20067: "\x02\x06\U00020067", // 𠁧
+ 0x20068: "\x02\x06\U00020068", // 𠁨
+ 0x20069: "\x02\a\U00020069", // 𠁩
+ 0x2006a: "\x02\a\U0002006a", // 𠁪
+ 0x2006b: "\x02\a\U0002006b", // 𠁫
+ 0x2006c: "\x02\a\U0002006c", // 𠁬
+ 0x2006d: "\x02\b\U0002006d", // 𠁭
+ 0x2006e: "\x02\b\U0002006e", // 𠁮
+ 0x2006f: "\x02\b\U0002006f", // 𠁯
+ 0x20070: "\x02\t\U00020070", // 𠁰
+ 0x20071: "\x02\t\U00020071", // 𠁱
+ 0x20072: "\xaa\x04\U00020072", // 𠁲
+ 0x20073: "\x02\n\U00020073", // 𠁳
+ 0x20074: "\x02\v\U00020074", // 𠁴
+ 0x20075: "\x02\v\U00020075", // 𠁵
+ 0x20076: "\x02\r\U00020076", // 𠁶
+ 0x20077: "\x1e\v\U00020077", // 𠁷
+ 0x20078: "\x02\x0e\U00020078", // 𠁸
+ 0x20079: "\x02\x11\U00020079", // 𠁹
+ 0x2007a: "\x02\x12\U0002007a", // 𠁺
+ 0x2007b: "\x02\x15\U0002007b", // 𠁻
+ 0x2007c: "\x03\x02\U0002007c", // 𠁼
+ 0x2007d: "\x03\x02\U0002007d", // 𠁽
+ 0x2007e: "\x05\x03\U0002007e", // 𠁾
+ 0x2007f: "\x03\x03\U0002007f", // 𠁿
+ 0x20080: "\x03\x04\U00020080", // 𠂀
+ 0x20081: "\x03\x04\U00020081", // 𠂁
+ 0x20082: "\x03\x05\U00020082", // 𠂂
+ 0x20083: "\x03\t\U00020083", // 𠂃
+ 0x20084: "\x03\f\U00020084", // 𠂄
+ 0x20085: "\x03\x0f\U00020085", // 𠂅
+ 0x20086: "\x04\x01\U00020086", // 𠂆
+ 0x20087: "\x04\x01\U00020087", // 𠂇
+ 0x20088: "\x04\x01\U00020088", // 𠂈
+ 0x20089: "\x04\x01\U00020089", // 𠂉
+ 0x2008a: "\x04\x01\U0002008a", // 𠂊
+ 0x2008b: "\x04\x02\U0002008b", // 𠂋
+ 0x2008c: "\x04\x02\U0002008c", // 𠂌
+ 0x2008d: "\x04\x02\U0002008d", // 𠂍
+ 0x2008e: "\x04\x02\U0002008e", // 𠂎
+ 0x2008f: "\x04\x03\U0002008f", // 𠂏
+ 0x20090: "\x04\x03\U00020090", // 𠂐
+ 0x20091: "\x04\x03\U00020091", // 𠂑
+ 0x20092: "\x04\x03\U00020092", // 𠂒
+ 0x20093: "\x04\x03\U00020093", // 𠂓
+ 0x20094: "\x04\x04\U00020094", // 𠂔
+ 0x20095: "\x04\x04\U00020095", // 𠂕
+ 0x20096: "\x04\x04\U00020096", // 𠂖
+ 0x20097: "\x04\x04\U00020097", // 𠂗
+ 0x20098: "\x04\x04\U00020098", // 𠂘
+ 0x20099: "\x04\x04\U00020099", // 𠂙
+ 0x2009a: "\x04\x04\U0002009a", // 𠂚
+ 0x2009b: "\x04\x04\U0002009b", // 𠂛
+ 0x2009c: "\x04\x04\U0002009c", // 𠂜
+ 0x2009d: "\x04\x04\U0002009d", // 𠂝
+ 0x2009e: "\x04\x04\U0002009e", // 𠂞
+ 0x2009f: "\x04\x04\U0002009f", // 𠂟
+ 0x200a0: "\x04\x04\U000200a0", // 𠂠
+ 0x200a1: "\x04\x04\U000200a1", // 𠂡
+ 0x200a2: "\x04\x05\U000200a2", // 𠂢
+ 0x200a3: "\x04\x05\U000200a3", // 𠂣
+ 0x200a4: "\x04\x05\U000200a4", // 𠂤
+ 0x200a5: "\x04\x05\U000200a5", // 𠂥
+ 0x200a6: "\x04\x05\U000200a6", // 𠂦
+ 0x200a7: "\x04\x05\U000200a7", // 𠂧
+ 0x200a8: "\x89\x00\U000200a8", // 𠂨
+ 0x200a9: "\x04\x05\U000200a9", // 𠂩
+ 0x200aa: "\x04\x05\U000200aa", // 𠂪
+ 0x200ab: "\x04\x05\U000200ab", // 𠂫
+ 0x200ac: "\x1b\x04\U000200ac", // 𠂬
+ 0x200ad: "\x04\x05\U000200ad", // 𠂭
+ 0x200ae: "\x1b\x04\U000200ae", // 𠂮
+ 0x200af: "\x04\x06\U000200af", // 𠂯
+ 0x200b0: "\x1b\x05\U000200b0", // 𠂰
+ 0x200b1: "Q\x03\U000200b1", // 𠂱
+ 0x200b2: "\x04\a\U000200b2", // 𠂲
+ 0x200b3: "\x04\a\U000200b3", // 𠂳
+ 0x200b4: "\x04\b\U000200b4", // 𠂴
+ 0x200b5: "e\x03\U000200b5", // 𠂵
+ 0x200b6: "\x04\a\U000200b6", // 𠂶
+ 0x200b7: "\x04\b\U000200b7", // 𠂷
+ 0x200b8: "\x05\b\U000200b8", // 𠂸
+ 0x200b9: "\x04\t\U000200b9", // 𠂹
+ 0x200ba: "\x04\t\U000200ba", // 𠂺
+ 0x200bb: "\x04\t\U000200bb", // 𠂻
+ 0x200bc: "\x04\t\U000200bc", // 𠂼
+ 0x200bd: "\x04\t\U000200bd", // 𠂽
+ 0x200be: "\x04\t\U000200be", // 𠂾
+ 0x200bf: "\x04\n\U000200bf", // 𠂿
+ 0x200c0: "\x04\n\U000200c0", // 𠃀
+ 0x200c1: "\x04\n\U000200c1", // 𠃁
+ 0x200c2: "\x04\n\U000200c2", // 𠃂
+ 0x200c3: "\x04\v\U000200c3", // 𠃃
+ 0x200c4: "\x04\v\U000200c4", // 𠃄
+ 0x200c5: "\x04\r\U000200c5", // 𠃅
+ 0x200c6: "\x04\f\U000200c6", // 𠃆
+ 0x200c7: "\x04\x0e\U000200c7", // 𠃇
+ 0x200c8: "\x04\x16\U000200c8", // 𠃈
+ 0x200c9: "\x05\x00\U000200c9", // 𠃉
+ 0x200ca: "\x05\x00\U000200ca", // 𠃊
+ 0x200cb: "\x05\x00\U000200cb", // 𠃋
+ 0x200cc: "\x05\x00\U000200cc", // 𠃌
+ 0x200cd: "\x05\x00\U000200cd", // 𠃍
+ 0x200ce: "\x05\x00\U000200ce", // 𠃎
+ 0x200cf: "\x05\x01\U000200cf", // 𠃏
+ 0x200d0: "\x05\x01\U000200d0", // 𠃐
+ 0x200d1: "\x05\x00\U000200d1", // 𠃑
+ 0x200d2: "\x05\x02\U000200d2", // 𠃒
+ 0x200d3: "\x05\x02\U000200d3", // 𠃓
+ 0x200d4: "\x05\x02\U000200d4", // 𠃔
+ 0x200d5: "\x05\x03\U000200d5", // 𠃕
+ 0x200d6: "\x05\x03\U000200d6", // 𠃖
+ 0x200d7: "\x05\x03\U000200d7", // 𠃗
+ 0x200d8: "\x05\x03\U000200d8", // 𠃘
+ 0x200d9: "\x05\x03\U000200d9", // 𠃙
+ 0x200da: "\x05\x03\U000200da", // 𠃚
+ 0x200db: "\x05\x03\U000200db", // 𠃛
+ 0x200dc: "\x05\x03\U000200dc", // 𠃜
+ 0x200dd: "\x05\x03\U000200dd", // 𠃝
+ 0x200de: "\x05\x04\U000200de", // 𠃞
+ 0x200df: "\x05\x04\U000200df", // 𠃟
+ 0x200e0: "\x05\x04\U000200e0", // 𠃠
+ 0x200e1: "\x05\x04\U000200e1", // 𠃡
+ 0x200e2: "\x05\x04\U000200e2", // 𠃢
+ 0x200e3: "\x05\x04\U000200e3", // 𠃣
+ 0x200e4: "\x05\x05\U000200e4", // 𠃤
+ 0x200e5: "\x05\x05\U000200e5", // 𠃥
+ 0x200e6: "\x05\x05\U000200e6", // 𠃦
+ 0x200e7: "\x05\x05\U000200e7", // 𠃧
+ 0x200e8: "\x05\x05\U000200e8", // 𠃨
+ 0x200e9: "\x05\x06\U000200e9", // 𠃩
+ 0x200ea: "\x05\x06\U000200ea", // 𠃪
+ 0x200eb: "f\x02\U000200eb", // 𠃫
+ 0x200ec: "\x05\x06\U000200ec", // 𠃬
+ 0x200ed: "\x05\a\U000200ed", // 𠃭
+ 0x200ee: "\x05\a\U000200ee", // 𠃮
+ 0x200ef: "\x05\a\U000200ef", // 𠃯
+ 0x200f0: "e\x03\U000200f0", // 𠃰
+ 0x200f1: "'\x05\U000200f1", // 𠃱
+ 0x200f2: "\x05\b\U000200f2", // 𠃲
+ 0x200f3: "\x05\b\U000200f3", // 𠃳
+ 0x200f4: "\x05\b\U000200f4", // 𠃴
+ 0x200f5: "\x05\b\U000200f5", // 𠃵
+ 0x200f6: "\x05\b\U000200f6", // 𠃶
+ 0x200f7: "\x05\b\U000200f7", // 𠃷
+ 0x200f8: "\x05\t\U000200f8", // 𠃸
+ 0x200f9: "\x05\t\U000200f9", // 𠃹
+ 0x200fa: "\x05\t\U000200fa", // 𠃺
+ 0x200fb: "\x05\t\U000200fb", // 𠃻
+ 0x200fc: "\x05\n\U000200fc", // 𠃼
+ 0x200fd: "\x05\n\U000200fd", // 𠃽
+ 0x200fe: "\x05\n\U000200fe", // 𠃾
+ 0x200ff: "\x05\n\U000200ff", // 𠃿
+ 0x20100: "\x05\n\U00020100", // 𠄀
+ 0x20101: "\x05\n\U00020101", // 𠄁
+ 0x20102: "\x05\n\U00020102", // 𠄂
+ 0x20103: "\x05\f\U00020103", // 𠄃
+ 0x20104: "\x05\f\U00020104", // 𠄄
+ 0x20105: "\x05\r\U00020105", // 𠄅
+ 0x20106: "\x05\r\U00020106", // 𠄆
+ 0x20107: "\x05\r\U00020107", // 𠄇
+ 0x20108: "\x05\r\U00020108", // 𠄈
+ 0x20109: "\x05\x10\U00020109", // 𠄉
+ 0x2010a: "\x05\x12\U0002010a", // 𠄊
+ 0x2010b: "\x05\x13\U0002010b", // 𠄋
+ 0x2010c: "\x06\x00\U0002010c", // 𠄌
+ 0x2010d: "\x06\x01\U0002010d", // 𠄍
+ 0x2010e: "\x06\x01\U0002010e", // 𠄎
+ 0x2010f: "\x06\x01\U0002010f", // 𠄏
+ 0x20110: "\x06\x01\U00020110", // 𠄐
+ 0x20111: "\x06\x02\U00020111", // 𠄑
+ 0x20112: "\x06\x03\U00020112", // 𠄒
+ 0x20113: "\x06\x03\U00020113", // 𠄓
+ 0x20114: "\x06\x03\U00020114", // 𠄔
+ 0x20115: "\x06\x05\U00020115", // 𠄕
+ 0x20116: "\x06\x06\U00020116", // 𠄖
+ 0x20117: "\x06\x06\U00020117", // 𠄗
+ 0x20118: "\x06\x06\U00020118", // 𠄘
+ 0x20119: "\x06\a\U00020119", // 𠄙
+ 0x2011a: "\x06\n\U0002011a", // 𠄚
+ 0x2011b: "\x06\v\U0002011b", // 𠄛
+ 0x2011c: "\x06\x0e\U0002011c", // 𠄜
+ 0x2011d: "\x06\x0f\U0002011d", // 𠄝
+ 0x2011e: "\a\x00\U0002011e", // 𠄞
+ 0x2011f: "\a\x00\U0002011f", // 𠄟
+ 0x20120: "\a\x00\U00020120", // 𠄠
+ 0x20121: "\a\x02\U00020121", // 𠄡
+ 0x20122: "\a\x04\U00020122", // 𠄢
+ 0x20123: "\a\x04\U00020123", // 𠄣
+ 0x20124: "\a\x04\U00020124", // 𠄤
+ 0x20125: "\a\x04\U00020125", // 𠄥
+ 0x20126: "\a\x04\U00020126", // 𠄦
+ 0x20127: "\a\x04\U00020127", // 𠄧
+ 0x20128: "\a\x05\U00020128", // 𠄨
+ 0x20129: "\a\x05\U00020129", // 𠄩
+ 0x2012a: "\a\x05\U0002012a", // 𠄪
+ 0x2012b: "\a\x06\U0002012b", // 𠄫
+ 0x2012c: "\a\x06\U0002012c", // 𠄬
+ 0x2012d: "\a\x06\U0002012d", // 𠄭
+ 0x2012e: "\a\x06\U0002012e", // 𠄮
+ 0x2012f: "\a\x06\U0002012f", // 𠄯
+ 0x20130: "\a\a\U00020130", // 𠄰
+ 0x20131: "\a\a\U00020131", // 𠄱
+ 0x20132: "\a\a\U00020132", // 𠄲
+ 0x20133: "\a\a\U00020133", // 𠄳
+ 0x20134: "9\x06\U00020134", // 𠄴
+ 0x20135: "\a\b\U00020135", // 𠄵
+ 0x20136: "\a\b\U00020136", // 𠄶
+ 0x20137: "\a\b\U00020137", // 𠄷
+ 0x20138: "\a\b\U00020138", // 𠄸
+ 0x20139: "\a\t\U00020139", // 𠄹
+ 0x2013a: "\a\t\U0002013a", // 𠄺
+ 0x2013b: "\a\n\U0002013b", // 𠄻
+ 0x2013c: "\a\v\U0002013c", // 𠄼
+ 0x2013d: "\a\v\U0002013d", // 𠄽
+ 0x2013e: "\a\v\U0002013e", // 𠄾
+ 0x2013f: "\a\f\U0002013f", // 𠄿
+ 0x20140: "\a\r\U00020140", // 𠅀
+ 0x20141: "\b\x02\U00020141", // 𠅁
+ 0x20142: "\b\x03\U00020142", // 𠅂
+ 0x20143: "\b\x04\U00020143", // 𠅃
+ 0x20144: "\b\x04\U00020144", // 𠅄
+ 0x20145: "\b\x04\U00020145", // 𠅅
+ 0x20146: "\b\x04\U00020146", // 𠅆
+ 0x20147: "\b\x04\U00020147", // 𠅇
+ 0x20148: "\b\x05\U00020148", // 𠅈
+ 0x20149: "\b\x05\U00020149", // 𠅉
+ 0x2014a: "\b\x05\U0002014a", // 𠅊
+ 0x2014b: "\b\x05\U0002014b", // 𠅋
+ 0x2014c: "\b\x06\U0002014c", // 𠅌
+ 0x2014d: "\b\x06\U0002014d", // 𠅍
+ 0x2014e: "\b\x06\U0002014e", // 𠅎
+ 0x2014f: "\b\x06\U0002014f", // 𠅏
+ 0x20150: "\b\x06\U00020150", // 𠅐
+ 0x20151: "\b\x06\U00020151", // 𠅑
+ 0x20152: "\b\x06\U00020152", // 𠅒
+ 0x20153: "\b\a\U00020153", // 𠅓
+ 0x20154: "\b\a\U00020154", // 𠅔
+ 0x20155: "\b\a\U00020155", // 𠅕
+ 0x20156: "\b\b\U00020156", // 𠅖
+ 0x20157: "$\a\U00020157", // 𠅗
+ 0x20158: "\b\b\U00020158", // 𠅘
+ 0x20159: "\b\b\U00020159", // 𠅙
+ 0x2015a: "\b\b\U0002015a", // 𠅚
+ 0x2015b: "\b\b\U0002015b", // 𠅛
+ 0x2015c: "\b\b\U0002015c", // 𠅜
+ 0x2015d: "\b\b\U0002015d", // 𠅝
+ 0x2015e: "\b\t\U0002015e", // 𠅞
+ 0x2015f: "\b\t\U0002015f", // 𠅟
+ 0x20160: "\b\t\U00020160", // 𠅠
+ 0x20161: "\b\t\U00020161", // 𠅡
+ 0x20162: "\b\t\U00020162", // 𠅢
+ 0x20163: "\b\t\U00020163", // 𠅣
+ 0x20164: "\b\t\U00020164", // 𠅤
+ 0x20165: "\b\t\U00020165", // 𠅥
+ 0x20166: "\b\t\U00020166", // 𠅦
+ 0x20167: "\b\t\U00020167", // 𠅧
+ 0x20168: "\b\n\U00020168", // 𠅨
+ 0x20169: "\b\n\U00020169", // 𠅩
+ 0x2016a: "\b\n\U0002016a", // 𠅪
+ 0x2016b: "\b\n\U0002016b", // 𠅫
+ 0x2016c: "\b\n\U0002016c", // 𠅬
+ 0x2016d: "\b\n\U0002016d", // 𠅭
+ 0x2016e: "\b\n\U0002016e", // 𠅮
+ 0x2016f: "\b\n\U0002016f", // 𠅯
+ 0x20170: "o\a\U00020170", // 𠅰
+ 0x20171: "$\t\U00020171", // 𠅱
+ 0x20172: "\b\n\U00020172", // 𠅲
+ 0x20173: "\b\v\U00020173", // 𠅳
+ 0x20174: "\b\v\U00020174", // 𠅴
+ 0x20175: "\b\v\U00020175", // 𠅵
+ 0x20176: "\b\v\U00020176", // 𠅶
+ 0x20177: "\b\v\U00020177", // 𠅷
+ 0x20178: "\b\v\U00020178", // 𠅸
+ 0x20179: "4\n\U00020179", // 𠅹
+ 0x2017a: "\b\v\U0002017a", // 𠅺
+ 0x2017b: "\b\v\U0002017b", // 𠅻
+ 0x2017c: "\b\v\U0002017c", // 𠅼
+ 0x2017d: "*\n\U0002017d", // 𠅽
+ 0x2017e: "\b\f\U0002017e", // 𠅾
+ 0x2017f: "\b\f\U0002017f", // 𠅿
+ 0x20180: "\b\v\U00020180", // 𠆀
+ 0x20181: "\b\r\U00020181", // 𠆁
+ 0x20182: "\b\r\U00020182", // 𠆂
+ 0x20183: "\b\r\U00020183", // 𠆃
+ 0x20184: "\b\r\U00020184", // 𠆄
+ 0x20185: "\b\r\U00020185", // 𠆅
+ 0x20186: "\b\r\U00020186", // 𠆆
+ 0x20187: "\b\r\U00020187", // 𠆇
+ 0x20188: "\b\r\U00020188", // 𠆈
+ 0x20189: "\b\r\U00020189", // 𠆉
+ 0x2018a: "\x1e\f\U0002018a", // 𠆊
+ 0x2018b: "\b\x0e\U0002018b", // 𠆋
+ 0x2018c: "\b\x0e\U0002018c", // 𠆌
+ 0x2018d: "\b\x0e\U0002018d", // 𠆍
+ 0x2018e: "\b\x0e\U0002018e", // 𠆎
+ 0x2018f: "\b\x0e\U0002018f", // 𠆏
+ 0x20190: "\b\x0e\U00020190", // 𠆐
+ 0x20191: "\b\x0e\U00020191", // 𠆑
+ 0x20192: "\b\x0e\U00020192", // 𠆒
+ 0x20193: "$\r\U00020193", // 𠆓
+ 0x20194: "\b\x0e\U00020194", // 𠆔
+ 0x20195: "$\r\U00020195", // 𠆕
+ 0x20196: "\b\x0e\U00020196", // 𠆖
+ 0x20197: "\b\x0e\U00020197", // 𠆗
+ 0x20198: "\b\x0e\U00020198", // 𠆘
+ 0x20199: "$\x0e\U00020199", // 𠆙
+ 0x2019a: "\b\x10\U0002019a", // 𠆚
+ 0x2019b: "H\x0e\U0002019b", // 𠆛
+ 0x2019c: "\xd2\x04\U0002019c", // 𠆜
+ 0x2019d: "\b\x11\U0002019d", // 𠆝
+ 0x2019e: "\b\x13\U0002019e", // 𠆞
+ 0x2019f: "\b\x16\U0002019f", // 𠆟
+ 0x201a0: "\b\x1a\U000201a0", // 𠆠
+ 0x201a1: "\b\x1b\U000201a1", // 𠆡
+ 0x201a2: "\t\x00\U000201a2", // 𠆢
+ 0x201a3: "\t\x01\U000201a3", // 𠆣
+ 0x201a4: "\t\x01\U000201a4", // 𠆤
+ 0x201a5: "\t\x01\U000201a5", // 𠆥
+ 0x201a6: "\t\x02\U000201a6", // 𠆦
+ 0x201a7: "\t\x02\U000201a7", // 𠆧
+ 0x201a8: "\t\x02\U000201a8", // 𠆨
+ 0x201a9: "\t\x03\U000201a9", // 𠆩
+ 0x201aa: "\t\x03\U000201aa", // 𠆪
+ 0x201ab: "\t\x03\U000201ab", // 𠆫
+ 0x201ac: "\t\x03\U000201ac", // 𠆬
+ 0x201ad: "\t\x03\U000201ad", // 𠆭
+ 0x201ae: "\x13\x03\U000201ae", // 𠆮
+ 0x201af: "\t\x03\U000201af", // 𠆯
+ 0x201b0: "\t\x03\U000201b0", // 𠆰
+ 0x201b1: "\x18\x03\U000201b1", // 𠆱
+ 0x201b2: "5\x02\U000201b2", // 𠆲
+ 0x201b3: "\t\x03\U000201b3", // 𠆳
+ 0x201b4: "\t\x04\U000201b4", // 𠆴
+ 0x201b5: "\t\x04\U000201b5", // 𠆵
+ 0x201b6: "\t\x04\U000201b6", // 𠆶
+ 0x201b7: "\t\x04\U000201b7", // 𠆷
+ 0x201b8: "\t\x04\U000201b8", // 𠆸
+ 0x201b9: "\t\x04\U000201b9", // 𠆹
+ 0x201ba: "\t\x04\U000201ba", // 𠆺
+ 0x201bb: "\t\x04\U000201bb", // 𠆻
+ 0x201bc: "\t\x04\U000201bc", // 𠆼
+ 0x201bd: "\t\x04\U000201bd", // 𠆽
+ 0x201be: "\t\x04\U000201be", // 𠆾
+ 0x201bf: "\t\x04\U000201bf", // 𠆿
+ 0x201c0: "\t\x04\U000201c0", // 𠇀
+ 0x201c1: "\t\x04\U000201c1", // 𠇁
+ 0x201c2: "\t\x04\U000201c2", // 𠇂
+ 0x201c3: "\t\x04\U000201c3", // 𠇃
+ 0x201c4: "\t\x04\U000201c4", // 𠇄
+ 0x201c5: "\t\x04\U000201c5", // 𠇅
+ 0x201c6: "\t\x04\U000201c6", // 𠇆
+ 0x201c7: "\t\x04\U000201c7", // 𠇇
+ 0x201c8: "\t\x04\U000201c8", // 𠇈
+ 0x201c9: "\t\x04\U000201c9", // 𠇉
+ 0x201ca: "\t\x04\U000201ca", // 𠇊
+ 0x201cb: "\t\x04\U000201cb", // 𠇋
+ 0x201cc: "\t\x04\U000201cc", // 𠇌
+ 0x201cd: "\t\x04\U000201cd", // 𠇍
+ 0x201ce: "\t\x04\U000201ce", // 𠇎
+ 0x201cf: "\t\x04\U000201cf", // 𠇏
+ 0x201d0: "\t\x04\U000201d0", // 𠇐
+ 0x201d1: "\t\x04\U000201d1", // 𠇑
+ 0x201d2: "\v\x04\U000201d2", // 𠇒
+ 0x201d3: "\t\x04\U000201d3", // 𠇓
+ 0x201d4: "\t\x04\U000201d4", // 𠇔
+ 0x201d5: "\t\x04\U000201d5", // 𠇕
+ 0x201d6: "\t\x05\U000201d6", // 𠇖
+ 0x201d7: "\t\x05\U000201d7", // 𠇗
+ 0x201d8: "\t\x05\U000201d8", // 𠇘
+ 0x201d9: "\t\x05\U000201d9", // 𠇙
+ 0x201da: "\t\x05\U000201da", // 𠇚
+ 0x201db: "\t\x05\U000201db", // 𠇛
+ 0x201dc: "\t\x05\U000201dc", // 𠇜
+ 0x201dd: "\t\x05\U000201dd", // 𠇝
+ 0x201de: "\t\x05\U000201de", // 𠇞
+ 0x201df: "\t\x05\U000201df", // 𠇟
+ 0x201e0: "\t\x05\U000201e0", // 𠇠
+ 0x201e1: "\t\x05\U000201e1", // 𠇡
+ 0x201e2: "\t\x05\U000201e2", // 𠇢
+ 0x201e3: "\t\x05\U000201e3", // 𠇣
+ 0x201e4: "\t\x05\U000201e4", // 𠇤
+ 0x201e5: "\t\x05\U000201e5", // 𠇥
+ 0x201e6: "\t\x05\U000201e6", // 𠇦
+ 0x201e7: "\t\x05\U000201e7", // 𠇧
+ 0x201e8: "\t\x05\U000201e8", // 𠇨
+ 0x201e9: "\t\x05\U000201e9", // 𠇩
+ 0x201ea: "\t\x05\U000201ea", // 𠇪
+ 0x201eb: "\t\x05\U000201eb", // 𠇫
+ 0x201ec: "\t\x05\U000201ec", // 𠇬
+ 0x201ed: "\t\x05\U000201ed", // 𠇭
+ 0x201ee: "\t\x05\U000201ee", // 𠇮
+ 0x201ef: "\t\x05\U000201ef", // 𠇯
+ 0x201f0: "\t\x05\U000201f0", // 𠇰
+ 0x201f1: "\t\x05\U000201f1", // 𠇱
+ 0x201f2: "\t\x05\U000201f2", // 𠇲
+ 0x201f3: "\t\x05\U000201f3", // 𠇳
+ 0x201f4: "\t\x05\U000201f4", // 𠇴
+ 0x201f5: "\t\x05\U000201f5", // 𠇵
+ 0x201f6: "\t\x05\U000201f6", // 𠇶
+ 0x201f7: "\t\x05\U000201f7", // 𠇷
+ 0x201f8: "\t\x05\U000201f8", // 𠇸
+ 0x201f9: "\t\x05\U000201f9", // 𠇹
+ 0x201fa: "\t\x05\U000201fa", // 𠇺
+ 0x201fb: "\t\x05\U000201fb", // 𠇻
+ 0x201fc: "\t\x05\U000201fc", // 𠇼
+ 0x201fd: "\t\x05\U000201fd", // 𠇽
+ 0x201fe: "\t\x05\U000201fe", // 𠇾
+ 0x201ff: "\t\x05\U000201ff", // 𠇿
+ 0x20200: "\t\x05\U00020200", // 𠈀
+ 0x20201: "\t\x05\U00020201", // 𠈁
+ 0x20202: "\x1e\x04\U00020202", // 𠈂
+ 0x20203: "\t\x06\U00020203", // 𠈃
+ 0x20204: "\t\x06\U00020204", // 𠈄
+ 0x20205: "\t\x06\U00020205", // 𠈅
+ 0x20206: "\t\x06\U00020206", // 𠈆
+ 0x20207: "\t\x06\U00020207", // 𠈇
+ 0x20208: "\t\x06\U00020208", // 𠈈
+ 0x20209: "\t\x06\U00020209", // 𠈉
+ 0x2020a: "\t\x06\U0002020a", // 𠈊
+ 0x2020b: "\t\x06\U0002020b", // 𠈋
+ 0x2020c: "\t\x06\U0002020c", // 𠈌
+ 0x2020d: "\t\x06\U0002020d", // 𠈍
+ 0x2020e: "\t\x06\U0002020e", // 𠈎
+ 0x2020f: "\t\x06\U0002020f", // 𠈏
+ 0x20210: "\t\x06\U00020210", // 𠈐
+ 0x20211: "\t\x06\U00020211", // 𠈑
+ 0x20212: "\t\x06\U00020212", // 𠈒
+ 0x20213: "\t\x06\U00020213", // 𠈓
+ 0x20214: "\t\x06\U00020214", // 𠈔
+ 0x20215: "\t\x06\U00020215", // 𠈕
+ 0x20216: "\t\x06\U00020216", // 𠈖
+ 0x20217: "\t\x06\U00020217", // 𠈗
+ 0x20218: "\t\x06\U00020218", // 𠈘
+ 0x20219: "\t\x06\U00020219", // 𠈙
+ 0x2021a: "\t\x06\U0002021a", // 𠈚
+ 0x2021b: "\t\x06\U0002021b", // 𠈛
+ 0x2021c: "\t\x06\U0002021c", // 𠈜
+ 0x2021d: "\t\x06\U0002021d", // 𠈝
+ 0x2021e: "\t\x06\U0002021e", // 𠈞
+ 0x2021f: "\t\x06\U0002021f", // 𠈟
+ 0x20220: "\t\x06\U00020220", // 𠈠
+ 0x20221: "\t\x06\U00020221", // 𠈡
+ 0x20222: "\t\x06\U00020222", // 𠈢
+ 0x20223: "\t\x06\U00020223", // 𠈣
+ 0x20224: "*\x05\U00020224", // 𠈤
+ 0x20225: "\t\x06\U00020225", // 𠈥
+ 0x20226: "\t\x06\U00020226", // 𠈦
+ 0x20227: "\t\x06\U00020227", // 𠈧
+ 0x20228: "\t\x06\U00020228", // 𠈨
+ 0x20229: "\t\x06\U00020229", // 𠈩
+ 0x2022a: "\t\x06\U0002022a", // 𠈪
+ 0x2022b: "\t\x06\U0002022b", // 𠈫
+ 0x2022c: "\t\x06\U0002022c", // 𠈬
+ 0x2022d: "\t\a\U0002022d", // 𠈭
+ 0x2022e: "\t\a\U0002022e", // 𠈮
+ 0x2022f: "\t\a\U0002022f", // 𠈯
+ 0x20230: "\t\a\U00020230", // 𠈰
+ 0x20231: "\t\a\U00020231", // 𠈱
+ 0x20232: "\t\a\U00020232", // 𠈲
+ 0x20233: "\t\a\U00020233", // 𠈳
+ 0x20234: "\t\a\U00020234", // 𠈴
+ 0x20235: "\t\a\U00020235", // 𠈵
+ 0x20236: "\t\a\U00020236", // 𠈶
+ 0x20237: "\t\a\U00020237", // 𠈷
+ 0x20238: "\t\a\U00020238", // 𠈸
+ 0x20239: "\t\a\U00020239", // 𠈹
+ 0x2023a: "\t\a\U0002023a", // 𠈺
+ 0x2023b: "\t\a\U0002023b", // 𠈻
+ 0x2023c: "\t\a\U0002023c", // 𠈼
+ 0x2023d: "\t\a\U0002023d", // 𠈽
+ 0x2023e: "\t\a\U0002023e", // 𠈾
+ 0x2023f: "\t\a\U0002023f", // 𠈿
+ 0x20240: "\t\a\U00020240", // 𠉀
+ 0x20241: "\t\a\U00020241", // 𠉁
+ 0x20242: "\t\a\U00020242", // 𠉂
+ 0x20243: "\t\a\U00020243", // 𠉃
+ 0x20244: "\t\a\U00020244", // 𠉄
+ 0x20245: "\t\a\U00020245", // 𠉅
+ 0x20246: "\t\a\U00020246", // 𠉆
+ 0x20247: "\t\a\U00020247", // 𠉇
+ 0x20248: "\t\a\U00020248", // 𠉈
+ 0x20249: "\t\a\U00020249", // 𠉉
+ 0x2024a: "\t\a\U0002024a", // 𠉊
+ 0x2024b: "\t\a\U0002024b", // 𠉋
+ 0x2024c: "\t\a\U0002024c", // 𠉌
+ 0x2024d: "\t\a\U0002024d", // 𠉍
+ 0x2024e: "\t\a\U0002024e", // 𠉎
+ 0x2024f: "\t\a\U0002024f", // 𠉏
+ 0x20250: "\t\a\U00020250", // 𠉐
+ 0x20251: "\t\a\U00020251", // 𠉑
+ 0x20252: "\t\a\U00020252", // 𠉒
+ 0x20253: "\t\a\U00020253", // 𠉓
+ 0x20254: "\t\a\U00020254", // 𠉔
+ 0x20255: "\t\a\U00020255", // 𠉕
+ 0x20256: "\t\a\U00020256", // 𠉖
+ 0x20257: "\t\a\U00020257", // 𠉗
+ 0x20258: "\t\a\U00020258", // 𠉘
+ 0x20259: "\t\a\U00020259", // 𠉙
+ 0x2025a: "\t\a\U0002025a", // 𠉚
+ 0x2025b: "\t\a\U0002025b", // 𠉛
+ 0x2025c: "\t\a\U0002025c", // 𠉜
+ 0x2025d: "\t\a\U0002025d", // 𠉝
+ 0x2025e: "\t\a\U0002025e", // 𠉞
+ 0x2025f: "\t\a\U0002025f", // 𠉟
+ 0x20260: "\t\a\U00020260", // 𠉠
+ 0x20261: "\t\a\U00020261", // 𠉡
+ 0x20262: "\t\a\U00020262", // 𠉢
+ 0x20263: "\t\b\U00020263", // 𠉣
+ 0x20264: "\t\b\U00020264", // 𠉤
+ 0x20265: "\t\b\U00020265", // 𠉥
+ 0x20266: "\t\b\U00020266", // 𠉦
+ 0x20267: "\t\b\U00020267", // 𠉧
+ 0x20268: "\t\b\U00020268", // 𠉨
+ 0x20269: "\t\b\U00020269", // 𠉩
+ 0x2026a: "\t\b\U0002026a", // 𠉪
+ 0x2026b: "\t\b\U0002026b", // 𠉫
+ 0x2026c: "\t\b\U0002026c", // 𠉬
+ 0x2026d: "\t\b\U0002026d", // 𠉭
+ 0x2026e: "\t\b\U0002026e", // 𠉮
+ 0x2026f: "\t\b\U0002026f", // 𠉯
+ 0x20270: "\t\b\U00020270", // 𠉰
+ 0x20271: "\t\b\U00020271", // 𠉱
+ 0x20272: "\t\b\U00020272", // 𠉲
+ 0x20273: "\t\b\U00020273", // 𠉳
+ 0x20274: "\t\b\U00020274", // 𠉴
+ 0x20275: "\t\b\U00020275", // 𠉵
+ 0x20276: "\t\b\U00020276", // 𠉶
+ 0x20277: "\t\b\U00020277", // 𠉷
+ 0x20278: "\t\b\U00020278", // 𠉸
+ 0x20279: "\t\b\U00020279", // 𠉹
+ 0x2027a: "\t\b\U0002027a", // 𠉺
+ 0x2027b: "\t\b\U0002027b", // 𠉻
+ 0x2027c: "\t\b\U0002027c", // 𠉼
+ 0x2027d: "\t\b\U0002027d", // 𠉽
+ 0x2027e: "\t\b\U0002027e", // 𠉾
+ 0x2027f: "\t\b\U0002027f", // 𠉿
+ 0x20280: "\t\b\U00020280", // 𠊀
+ 0x20281: "\t\b\U00020281", // 𠊁
+ 0x20282: "\t\b\U00020282", // 𠊂
+ 0x20283: "\t\b\U00020283", // 𠊃
+ 0x20284: "\t\b\U00020284", // 𠊄
+ 0x20285: "\t\b\U00020285", // 𠊅
+ 0x20286: "\t\b\U00020286", // 𠊆
+ 0x20287: "\t\b\U00020287", // 𠊇
+ 0x20288: "\t\b\U00020288", // 𠊈
+ 0x20289: "\t\b\U00020289", // 𠊉
+ 0x2028a: "\t\b\U0002028a", // 𠊊
+ 0x2028b: "\t\b\U0002028b", // 𠊋
+ 0x2028c: "\t\b\U0002028c", // 𠊌
+ 0x2028d: "\t\b\U0002028d", // 𠊍
+ 0x2028e: "\t\b\U0002028e", // 𠊎
+ 0x2028f: "\t\b\U0002028f", // 𠊏
+ 0x20290: "\t\b\U00020290", // 𠊐
+ 0x20291: "\t\b\U00020291", // 𠊑
+ 0x20292: "\t\b\U00020292", // 𠊒
+ 0x20293: "\t\b\U00020293", // 𠊓
+ 0x20294: "\t\b\U00020294", // 𠊔
+ 0x20295: "\t\b\U00020295", // 𠊕
+ 0x20296: "\t\b\U00020296", // 𠊖
+ 0x20297: "\t\b\U00020297", // 𠊗
+ 0x20298: "\t\b\U00020298", // 𠊘
+ 0x20299: "\t\b\U00020299", // 𠊙
+ 0x2029a: "\t\b\U0002029a", // 𠊚
+ 0x2029b: "\t\b\U0002029b", // 𠊛
+ 0x2029c: "\t\b\U0002029c", // 𠊜
+ 0x2029d: "\t\b\U0002029d", // 𠊝
+ 0x2029e: "\t\b\U0002029e", // 𠊞
+ 0x2029f: "\t\b\U0002029f", // 𠊟
+ 0x202a0: "\t\b\U000202a0", // 𠊠
+ 0x202a1: "\t\b\U000202a1", // 𠊡
+ 0x202a2: "\t\b\U000202a2", // 𠊢
+ 0x202a3: "\t\b\U000202a3", // 𠊣
+ 0x202a4: "\t\b\U000202a4", // 𠊤
+ 0x202a5: "\t\b\U000202a5", // 𠊥
+ 0x202a6: "\t\b\U000202a6", // 𠊦
+ 0x202a7: "\t\t\U000202a7", // 𠊧
+ 0x202a8: "\t\t\U000202a8", // 𠊨
+ 0x202a9: "\t\t\U000202a9", // 𠊩
+ 0x202aa: "\t\t\U000202aa", // 𠊪
+ 0x202ab: "\t\t\U000202ab", // 𠊫
+ 0x202ac: "\t\t\U000202ac", // 𠊬
+ 0x202ad: "\t\t\U000202ad", // 𠊭
+ 0x202ae: "\t\t\U000202ae", // 𠊮
+ 0x202af: "\t\t\U000202af", // 𠊯
+ 0x202b0: "\t\t\U000202b0", // 𠊰
+ 0x202b1: "\t\t\U000202b1", // 𠊱
+ 0x202b2: "\t\t\U000202b2", // 𠊲
+ 0x202b3: "\t\t\U000202b3", // 𠊳
+ 0x202b4: "\t\t\U000202b4", // 𠊴
+ 0x202b5: "\t\t\U000202b5", // 𠊵
+ 0x202b6: "\t\t\U000202b6", // 𠊶
+ 0x202b7: "\t\t\U000202b7", // 𠊷
+ 0x202b8: "\t\t\U000202b8", // 𠊸
+ 0x202b9: "\t\t\U000202b9", // 𠊹
+ 0x202ba: "\t\t\U000202ba", // 𠊺
+ 0x202bb: "\t\t\U000202bb", // 𠊻
+ 0x202bc: "\t\t\U000202bc", // 𠊼
+ 0x202bd: "\t\t\U000202bd", // 𠊽
+ 0x202be: "\t\t\U000202be", // 𠊾
+ 0x202bf: "\t\t\U000202bf", // 𠊿
+ 0x202c0: "\t\t\U000202c0", // 𠋀
+ 0x202c1: "\t\t\U000202c1", // 𠋁
+ 0x202c2: "\t\t\U000202c2", // 𠋂
+ 0x202c3: "\t\t\U000202c3", // 𠋃
+ 0x202c4: "\t\t\U000202c4", // 𠋄
+ 0x202c5: "\t\t\U000202c5", // 𠋅
+ 0x202c6: "\t\t\U000202c6", // 𠋆
+ 0x202c7: "\t\t\U000202c7", // 𠋇
+ 0x202c8: "\t\t\U000202c8", // 𠋈
+ 0x202c9: "\t\t\U000202c9", // 𠋉
+ 0x202ca: "\t\t\U000202ca", // 𠋊
+ 0x202cb: "\t\t\U000202cb", // 𠋋
+ 0x202cc: "\t\t\U000202cc", // 𠋌
+ 0x202cd: "\t\t\U000202cd", // 𠋍
+ 0x202ce: "\t\t\U000202ce", // 𠋎
+ 0x202cf: "\t\t\U000202cf", // 𠋏
+ 0x202d0: "\t\t\U000202d0", // 𠋐
+ 0x202d1: "\xb8\x00\U000202d1", // 𠋑
+ 0x202d2: "\t\t\U000202d2", // 𠋒
+ 0x202d3: "\t\t\U000202d3", // 𠋓
+ 0x202d4: "\t\t\U000202d4", // 𠋔
+ 0x202d5: "\t\t\U000202d5", // 𠋕
+ 0x202d6: "\t\t\U000202d6", // 𠋖
+ 0x202d7: "\t\t\U000202d7", // 𠋗
+ 0x202d8: "\t\t\U000202d8", // 𠋘
+ 0x202d9: "\t\t\U000202d9", // 𠋙
+ 0x202da: "\t\t\U000202da", // 𠋚
+ 0x202db: "\t\t\U000202db", // 𠋛
+ 0x202dc: "\t\t\U000202dc", // 𠋜
+ 0x202dd: "\t\t\U000202dd", // 𠋝
+ 0x202de: "\t\t\U000202de", // 𠋞
+ 0x202df: "\t\b\U000202df", // 𠋟
+ 0x202e0: "\t\t\U000202e0", // 𠋠
+ 0x202e1: "\t\t\U000202e1", // 𠋡
+ 0x202e2: "\t\t\U000202e2", // 𠋢
+ 0x202e3: "\t\t\U000202e3", // 𠋣
+ 0x202e4: "\t\t\U000202e4", // 𠋤
+ 0x202e5: "\t\t\U000202e5", // 𠋥
+ 0x202e6: "\t\t\U000202e6", // 𠋦
+ 0x202e7: "\t\t\U000202e7", // 𠋧
+ 0x202e8: "\t\t\U000202e8", // 𠋨
+ 0x202e9: "\t\t\U000202e9", // 𠋩
+ 0x202ea: "\t\t\U000202ea", // 𠋪
+ 0x202eb: "\t\t\U000202eb", // 𠋫
+ 0x202ec: "\t\t\U000202ec", // 𠋬
+ 0x202ed: "\t\n\U000202ed", // 𠋭
+ 0x202ee: "\t\n\U000202ee", // 𠋮
+ 0x202ef: "\t\n\U000202ef", // 𠋯
+ 0x202f0: "\t\n\U000202f0", // 𠋰
+ 0x202f1: "\t\n\U000202f1", // 𠋱
+ 0x202f2: "\t\n\U000202f2", // 𠋲
+ 0x202f3: "\t\n\U000202f3", // 𠋳
+ 0x202f4: "\t\n\U000202f4", // 𠋴
+ 0x202f5: "\t\n\U000202f5", // 𠋵
+ 0x202f6: "\t\n\U000202f6", // 𠋶
+ 0x202f7: "\t\n\U000202f7", // 𠋷
+ 0x202f8: "\t\n\U000202f8", // 𠋸
+ 0x202f9: "\t\n\U000202f9", // 𠋹
+ 0x202fa: "\t\n\U000202fa", // 𠋺
+ 0x202fb: "\t\n\U000202fb", // 𠋻
+ 0x202fc: "\t\n\U000202fc", // 𠋼
+ 0x202fd: "\t\n\U000202fd", // 𠋽
+ 0x202fe: "\t\n\U000202fe", // 𠋾
+ 0x202ff: "\t\n\U000202ff", // 𠋿
+ 0x20300: "\t\n\U00020300", // 𠌀
+ 0x20301: "\t\n\U00020301", // 𠌁
+ 0x20302: "\t\n\U00020302", // 𠌂
+ 0x20303: "\t\n\U00020303", // 𠌃
+ 0x20304: "\t\n\U00020304", // 𠌄
+ 0x20305: "\t\n\U00020305", // 𠌅
+ 0x20306: "\v\n\U00020306", // 𠌆
+ 0x20307: "\t\n\U00020307", // 𠌇
+ 0x20308: "\t\n\U00020308", // 𠌈
+ 0x20309: "\t\n\U00020309", // 𠌉
+ 0x2030a: "\t\n\U0002030a", // 𠌊
+ 0x2030b: "\t\n\U0002030b", // 𠌋
+ 0x2030c: "\t\n\U0002030c", // 𠌌
+ 0x2030d: "\t\n\U0002030d", // 𠌍
+ 0x2030e: "\t\n\U0002030e", // 𠌎
+ 0x2030f: "\t\n\U0002030f", // 𠌏
+ 0x20310: "\t\n\U00020310", // 𠌐
+ 0x20311: "\t\n\U00020311", // 𠌑
+ 0x20312: "\t\n\U00020312", // 𠌒
+ 0x20313: "\t\n\U00020313", // 𠌓
+ 0x20314: "\t\n\U00020314", // 𠌔
+ 0x20315: "\t\n\U00020315", // 𠌕
+ 0x20316: "\t\n\U00020316", // 𠌖
+ 0x20317: "\t\n\U00020317", // 𠌗
+ 0x20318: "\t\n\U00020318", // 𠌘
+ 0x20319: "\t\n\U00020319", // 𠌙
+ 0x2031a: "\t\n\U0002031a", // 𠌚
+ 0x2031b: "\t\n\U0002031b", // 𠌛
+ 0x2031c: "\t\n\U0002031c", // 𠌜
+ 0x2031d: "\t\n\U0002031d", // 𠌝
+ 0x2031e: "#\t\U0002031e", // 𠌞
+ 0x2031f: "j\a\U0002031f", // 𠌟
+ 0x20320: "\t\n\U00020320", // 𠌠
+ 0x20321: "\t\n\U00020321", // 𠌡
+ 0x20322: "\t\n\U00020322", // 𠌢
+ 0x20323: "\t\n\U00020323", // 𠌣
+ 0x20324: "\t\n\U00020324", // 𠌤
+ 0x20325: "\t\n\U00020325", // 𠌥
+ 0x20326: "\t\n\U00020326", // 𠌦
+ 0x20327: "\t\n\U00020327", // 𠌧
+ 0x20328: "\t\n\U00020328", // 𠌨
+ 0x20329: "\t\n\U00020329", // 𠌩
+ 0x2032a: "m\x06\U0002032a", // 𠌪
+ 0x2032b: "\t\v\U0002032b", // 𠌫
+ 0x2032c: "\t\v\U0002032c", // 𠌬
+ 0x2032d: "\t\v\U0002032d", // 𠌭
+ 0x2032e: "\t\v\U0002032e", // 𠌮
+ 0x2032f: "\t\v\U0002032f", // 𠌯
+ 0x20330: "\t\v\U00020330", // 𠌰
+ 0x20331: "\t\v\U00020331", // 𠌱
+ 0x20332: "\t\v\U00020332", // 𠌲
+ 0x20333: "\t\v\U00020333", // 𠌳
+ 0x20334: "\t\v\U00020334", // 𠌴
+ 0x20335: "\t\v\U00020335", // 𠌵
+ 0x20336: "\t\v\U00020336", // 𠌶
+ 0x20337: "\t\v\U00020337", // 𠌷
+ 0x20338: "\t\v\U00020338", // 𠌸
+ 0x20339: "\t\v\U00020339", // 𠌹
+ 0x2033a: "\t\v\U0002033a", // 𠌺
+ 0x2033b: "\t\v\U0002033b", // 𠌻
+ 0x2033c: "\t\v\U0002033c", // 𠌼
+ 0x2033d: "\t\v\U0002033d", // 𠌽
+ 0x2033e: "\t\v\U0002033e", // 𠌾
+ 0x2033f: "\t\v\U0002033f", // 𠌿
+ 0x20340: "\t\v\U00020340", // 𠍀
+ 0x20341: "\t\v\U00020341", // 𠍁
+ 0x20342: "\t\v\U00020342", // 𠍂
+ 0x20343: "\t\v\U00020343", // 𠍃
+ 0x20344: "\t\v\U00020344", // 𠍄
+ 0x20345: "\t\v\U00020345", // 𠍅
+ 0x20346: "\t\v\U00020346", // 𠍆
+ 0x20347: "\t\v\U00020347", // 𠍇
+ 0x20348: "\t\v\U00020348", // 𠍈
+ 0x20349: "\t\v\U00020349", // 𠍉
+ 0x2034a: "\t\v\U0002034a", // 𠍊
+ 0x2034b: "\t\v\U0002034b", // 𠍋
+ 0x2034c: "\t\v\U0002034c", // 𠍌
+ 0x2034d: "\t\v\U0002034d", // 𠍍
+ 0x2034e: "\t\v\U0002034e", // 𠍎
+ 0x2034f: "\t\v\U0002034f", // 𠍏
+ 0x20350: "\t\v\U00020350", // 𠍐
+ 0x20351: "\t\v\U00020351", // 𠍑
+ 0x20352: "\t\v\U00020352", // 𠍒
+ 0x20353: "\t\v\U00020353", // 𠍓
+ 0x20354: "\t\v\U00020354", // 𠍔
+ 0x20355: "\t\v\U00020355", // 𠍕
+ 0x20356: "\t\v\U00020356", // 𠍖
+ 0x20357: "\t\v\U00020357", // 𠍗
+ 0x20358: "\t\v\U00020358", // 𠍘
+ 0x20359: "\t\v\U00020359", // 𠍙
+ 0x2035a: "\t\v\U0002035a", // 𠍚
+ 0x2035b: "\t\v\U0002035b", // 𠍛
+ 0x2035c: "\t\v\U0002035c", // 𠍜
+ 0x2035d: "\t\v\U0002035d", // 𠍝
+ 0x2035e: "\t\v\U0002035e", // 𠍞
+ 0x2035f: "\t\v\U0002035f", // 𠍟
+ 0x20360: "\t\v\U00020360", // 𠍠
+ 0x20361: "\t\v\U00020361", // 𠍡
+ 0x20362: "n\b\U00020362", // 𠍢
+ 0x20363: "\t\v\U00020363", // 𠍣
+ 0x20364: "\t\v\U00020364", // 𠍤
+ 0x20365: "\t\f\U00020365", // 𠍥
+ 0x20366: "\t\v\U00020366", // 𠍦
+ 0x20367: "\t\v\U00020367", // 𠍧
+ 0x20368: "\t\v\U00020368", // 𠍨
+ 0x20369: "\t\v\U00020369", // 𠍩
+ 0x2036a: "\t\v\U0002036a", // 𠍪
+ 0x2036b: "\t\v\U0002036b", // 𠍫
+ 0x2036c: "\t\v\U0002036c", // 𠍬
+ 0x2036d: "\t\f\U0002036d", // 𠍭
+ 0x2036e: "\t\f\U0002036e", // 𠍮
+ 0x2036f: "\t\f\U0002036f", // 𠍯
+ 0x20370: "\t\f\U00020370", // 𠍰
+ 0x20371: "\t\f\U00020371", // 𠍱
+ 0x20372: "\t\f\U00020372", // 𠍲
+ 0x20373: "\t\f\U00020373", // 𠍳
+ 0x20374: "\t\f\U00020374", // 𠍴
+ 0x20375: "\t\f\U00020375", // 𠍵
+ 0x20376: "\t\f\U00020376", // 𠍶
+ 0x20377: "\t\f\U00020377", // 𠍷
+ 0x20378: "\t\f\U00020378", // 𠍸
+ 0x20379: "\t\f\U00020379", // 𠍹
+ 0x2037a: "\t\f\U0002037a", // 𠍺
+ 0x2037b: "\t\f\U0002037b", // 𠍻
+ 0x2037c: "\t\f\U0002037c", // 𠍼
+ 0x2037d: "\t\f\U0002037d", // 𠍽
+ 0x2037e: "\t\f\U0002037e", // 𠍾
+ 0x2037f: "\t\f\U0002037f", // 𠍿
+ 0x20380: "\t\f\U00020380", // 𠎀
+ 0x20381: "\t\f\U00020381", // 𠎁
+ 0x20382: "\t\f\U00020382", // 𠎂
+ 0x20383: "\t\f\U00020383", // 𠎃
+ 0x20384: "\t\f\U00020384", // 𠎄
+ 0x20385: "\t\f\U00020385", // 𠎅
+ 0x20386: "\t\f\U00020386", // 𠎆
+ 0x20387: "\t\f\U00020387", // 𠎇
+ 0x20388: "\t\f\U00020388", // 𠎈
+ 0x20389: "\t\f\U00020389", // 𠎉
+ 0x2038a: "\t\f\U0002038a", // 𠎊
+ 0x2038b: "\t\f\U0002038b", // 𠎋
+ 0x2038c: "\t\f\U0002038c", // 𠎌
+ 0x2038d: "\t\f\U0002038d", // 𠎍
+ 0x2038e: "\t\f\U0002038e", // 𠎎
+ 0x2038f: "\t\f\U0002038f", // 𠎏
+ 0x20390: "\t\f\U00020390", // 𠎐
+ 0x20391: "\t\f\U00020391", // 𠎑
+ 0x20392: "\t\f\U00020392", // 𠎒
+ 0x20393: "\t\f\U00020393", // 𠎓
+ 0x20394: "\t\f\U00020394", // 𠎔
+ 0x20395: "\t\f\U00020395", // 𠎕
+ 0x20396: "\t\f\U00020396", // 𠎖
+ 0x20397: "\t\f\U00020397", // 𠎗
+ 0x20398: "r\n\U00020398", // 𠎘
+ 0x20399: "\t\f\U00020399", // 𠎙
+ 0x2039a: "\t\f\U0002039a", // 𠎚
+ 0x2039b: "Y\n\U0002039b", // 𠎛
+ 0x2039c: "\xd3\x05\U0002039c", // 𠎜
+ 0x2039d: "\t\f\U0002039d", // 𠎝
+ 0x2039e: "\t\f\U0002039e", // 𠎞
+ 0x2039f: "\t\f\U0002039f", // 𠎟
+ 0x203a0: "\t\f\U000203a0", // 𠎠
+ 0x203a1: "\t\f\U000203a1", // 𠎡
+ 0x203a2: "\t\f\U000203a2", // 𠎢
+ 0x203a3: "\t\f\U000203a3", // 𠎣
+ 0x203a4: "\t\f\U000203a4", // 𠎤
+ 0x203a5: "\t\f\U000203a5", // 𠎥
+ 0x203a6: "\t\f\U000203a6", // 𠎦
+ 0x203a7: "\t\f\U000203a7", // 𠎧
+ 0x203a8: "\t\f\U000203a8", // 𠎨
+ 0x203a9: "\t\f\U000203a9", // 𠎩
+ 0x203aa: "\t\f\U000203aa", // 𠎪
+ 0x203ab: "\t\f\U000203ab", // 𠎫
+ 0x203ac: "\t\f\U000203ac", // 𠎬
+ 0x203ad: "\t\f\U000203ad", // 𠎭
+ 0x203ae: "\t\f\U000203ae", // 𠎮
+ 0x203af: "\t\f\U000203af", // 𠎯
+ 0x203b0: "\t\f\U000203b0", // 𠎰
+ 0x203b1: "\t\f\U000203b1", // 𠎱
+ 0x203b2: "\t\f\U000203b2", // 𠎲
+ 0x203b3: "\t\f\U000203b3", // 𠎳
+ 0x203b4: "\t\f\U000203b4", // 𠎴
+ 0x203b5: "\t\v\U000203b5", // 𠎵
+ 0x203b6: ">\n\U000203b6", // 𠎶
+ 0x203b7: "\t\r\U000203b7", // 𠎷
+ 0x203b8: "\t\r\U000203b8", // 𠎸
+ 0x203b9: "\t\r\U000203b9", // 𠎹
+ 0x203ba: "\t\r\U000203ba", // 𠎺
+ 0x203bb: "\t\r\U000203bb", // 𠎻
+ 0x203bc: "\t\r\U000203bc", // 𠎼
+ 0x203bd: "\t\r\U000203bd", // 𠎽
+ 0x203be: "\t\r\U000203be", // 𠎾
+ 0x203bf: "\t\r\U000203bf", // 𠎿
+ 0x203c0: "\t\r\U000203c0", // 𠏀
+ 0x203c1: "\t\r\U000203c1", // 𠏁
+ 0x203c2: "\t\r\U000203c2", // 𠏂
+ 0x203c3: "\t\r\U000203c3", // 𠏃
+ 0x203c4: "\t\r\U000203c4", // 𠏄
+ 0x203c5: "\t\r\U000203c5", // 𠏅
+ 0x203c6: "\t\r\U000203c6", // 𠏆
+ 0x203c7: "\t\r\U000203c7", // 𠏇
+ 0x203c8: "\t\r\U000203c8", // 𠏈
+ 0x203c9: "\t\r\U000203c9", // 𠏉
+ 0x203ca: "\t\r\U000203ca", // 𠏊
+ 0x203cb: "\t\r\U000203cb", // 𠏋
+ 0x203cc: "\t\r\U000203cc", // 𠏌
+ 0x203cd: "\t\r\U000203cd", // 𠏍
+ 0x203ce: "\t\r\U000203ce", // 𠏎
+ 0x203cf: "\t\r\U000203cf", // 𠏏
+ 0x203d0: "\t\f\U000203d0", // 𠏐
+ 0x203d1: "\t\r\U000203d1", // 𠏑
+ 0x203d2: "\t\x0e\U000203d2", // 𠏒
+ 0x203d3: "\x1e\f\U000203d3", // 𠏓
+ 0x203d4: "\t\r\U000203d4", // 𠏔
+ 0x203d5: "\t\r\U000203d5", // 𠏕
+ 0x203d6: "\t\r\U000203d6", // 𠏖
+ 0x203d7: "\t\r\U000203d7", // 𠏗
+ 0x203d8: "\t\r\U000203d8", // 𠏘
+ 0x203d9: "\t\r\U000203d9", // 𠏙
+ 0x203da: "\t\r\U000203da", // 𠏚
+ 0x203db: "\t\r\U000203db", // 𠏛
+ 0x203dc: "\t\r\U000203dc", // 𠏜
+ 0x203dd: "\t\r\U000203dd", // 𠏝
+ 0x203de: "\t\r\U000203de", // 𠏞
+ 0x203df: "\t\r\U000203df", // 𠏟
+ 0x203e0: "\t\r\U000203e0", // 𠏠
+ 0x203e1: "\t\r\U000203e1", // 𠏡
+ 0x203e2: "\t\r\U000203e2", // 𠏢
+ 0x203e3: "\t\r\U000203e3", // 𠏣
+ 0x203e4: "\t\r\U000203e4", // 𠏤
+ 0x203e5: "\t\r\U000203e5", // 𠏥
+ 0x203e6: "\t\r\U000203e6", // 𠏦
+ 0x203e7: "\x1e\f\U000203e7", // 𠏧
+ 0x203e8: "\t\x0e\U000203e8", // 𠏨
+ 0x203e9: "\t\x0e\U000203e9", // 𠏩
+ 0x203ea: "\t\x0e\U000203ea", // 𠏪
+ 0x203eb: "\t\x0e\U000203eb", // 𠏫
+ 0x203ec: "\t\x0e\U000203ec", // 𠏬
+ 0x203ed: "\t\x0e\U000203ed", // 𠏭
+ 0x203ee: "\t\x0e\U000203ee", // 𠏮
+ 0x203ef: "\t\x0e\U000203ef", // 𠏯
+ 0x203f0: "\t\x0e\U000203f0", // 𠏰
+ 0x203f1: "\t\x0e\U000203f1", // 𠏱
+ 0x203f2: "\t\x0e\U000203f2", // 𠏲
+ 0x203f3: "\t\x0e\U000203f3", // 𠏳
+ 0x203f4: "\t\x0e\U000203f4", // 𠏴
+ 0x203f5: "\t\x0e\U000203f5", // 𠏵
+ 0x203f6: "\t\x0e\U000203f6", // 𠏶
+ 0x203f7: "\t\x0e\U000203f7", // 𠏷
+ 0x203f8: "\t\x0e\U000203f8", // 𠏸
+ 0x203f9: "\t\x0e\U000203f9", // 𠏹
+ 0x203fa: "\t\x0e\U000203fa", // 𠏺
+ 0x203fb: "\t\x0e\U000203fb", // 𠏻
+ 0x203fc: "\t\x0e\U000203fc", // 𠏼
+ 0x203fd: "\t\x0e\U000203fd", // 𠏽
+ 0x203fe: "\t\x0e\U000203fe", // 𠏾
+ 0x203ff: "\t\x0e\U000203ff", // 𠏿
+ 0x20400: "\t\x0e\U00020400", // 𠐀
+ 0x20401: "\t\x0e\U00020401", // 𠐁
+ 0x20402: "\t\x0e\U00020402", // 𠐂
+ 0x20403: "\t\x0e\U00020403", // 𠐃
+ 0x20404: "\t\x0e\U00020404", // 𠐄
+ 0x20405: "\t\x0e\U00020405", // 𠐅
+ 0x20406: "\t\x0e\U00020406", // 𠐆
+ 0x20407: "\t\x0e\U00020407", // 𠐇
+ 0x20408: "\t\x0f\U00020408", // 𠐈
+ 0x20409: "\t\x0f\U00020409", // 𠐉
+ 0x2040a: "\t\x0f\U0002040a", // 𠐊
+ 0x2040b: "\t\x0f\U0002040b", // 𠐋
+ 0x2040c: "\t\x0f\U0002040c", // 𠐌
+ 0x2040d: "\t\x0f\U0002040d", // 𠐍
+ 0x2040e: "\t\x0f\U0002040e", // 𠐎
+ 0x2040f: "\t\x0f\U0002040f", // 𠐏
+ 0x20410: "\t\x0f\U00020410", // 𠐐
+ 0x20411: "\t\x0f\U00020411", // 𠐑
+ 0x20412: "\t\x0f\U00020412", // 𠐒
+ 0x20413: "\t\x0f\U00020413", // 𠐓
+ 0x20414: "\t\x0f\U00020414", // 𠐔
+ 0x20415: "\t\x0f\U00020415", // 𠐕
+ 0x20416: "\t\x0f\U00020416", // 𠐖
+ 0x20417: "\t\x0f\U00020417", // 𠐗
+ 0x20418: "\t\x0f\U00020418", // 𠐘
+ 0x20419: "\t\x0f\U00020419", // 𠐙
+ 0x2041a: "\t\x0f\U0002041a", // 𠐚
+ 0x2041b: "\t\x0f\U0002041b", // 𠐛
+ 0x2041c: "\x95\n\U0002041c", // 𠐜
+ 0x2041d: "\t\x0f\U0002041d", // 𠐝
+ 0x2041e: "\t\x0f\U0002041e", // 𠐞
+ 0x2041f: "\t\x0f\U0002041f", // 𠐟
+ 0x20420: "\t\x0f\U00020420", // 𠐠
+ 0x20421: "\t\x0f\U00020421", // 𠐡
+ 0x20422: "\t\x0f\U00020422", // 𠐢
+ 0x20423: "\t\x10\U00020423", // 𠐣
+ 0x20424: "\t\x10\U00020424", // 𠐤
+ 0x20425: "\t\x10\U00020425", // 𠐥
+ 0x20426: "\t\x10\U00020426", // 𠐦
+ 0x20427: "\t\x10\U00020427", // 𠐧
+ 0x20428: "\t\x10\U00020428", // 𠐨
+ 0x20429: "\t\x10\U00020429", // 𠐩
+ 0x2042a: "\t\x10\U0002042a", // 𠐪
+ 0x2042b: "\t\x10\U0002042b", // 𠐫
+ 0x2042c: "\t\x10\U0002042c", // 𠐬
+ 0x2042d: "\t\x10\U0002042d", // 𠐭
+ 0x2042e: "\t\x10\U0002042e", // 𠐮
+ 0x2042f: "\t\x10\U0002042f", // 𠐯
+ 0x20430: "\t\x10\U00020430", // 𠐰
+ 0x20431: "\t\x10\U00020431", // 𠐱
+ 0x20432: "\t\x10\U00020432", // 𠐲
+ 0x20433: "\t\x10\U00020433", // 𠐳
+ 0x20434: "\t\x10\U00020434", // 𠐴
+ 0x20435: "\t\x10\U00020435", // 𠐵
+ 0x20436: "\t\x10\U00020436", // 𠐶
+ 0x20437: "\t\x10\U00020437", // 𠐷
+ 0x20438: "\t\x10\U00020438", // 𠐸
+ 0x20439: "\t\x10\U00020439", // 𠐹
+ 0x2043a: "\t\x10\U0002043a", // 𠐺
+ 0x2043b: "\t\x11\U0002043b", // 𠐻
+ 0x2043c: "\t\x11\U0002043c", // 𠐼
+ 0x2043d: "\t\x11\U0002043d", // 𠐽
+ 0x2043e: "\t\x11\U0002043e", // 𠐾
+ 0x2043f: "\t\x11\U0002043f", // 𠐿
+ 0x20440: "\t\x11\U00020440", // 𠑀
+ 0x20441: "\t\x11\U00020441", // 𠑁
+ 0x20442: "Y\x0f\U00020442", // 𠑂
+ 0x20443: "\t\x11\U00020443", // 𠑃
+ 0x20444: "\t\x11\U00020444", // 𠑄
+ 0x20445: "\t\x11\U00020445", // 𠑅
+ 0x20446: "\t\x11\U00020446", // 𠑆
+ 0x20447: "\t\x11\U00020447", // 𠑇
+ 0x20448: "\t\x11\U00020448", // 𠑈
+ 0x20449: "\t\x11\U00020449", // 𠑉
+ 0x2044a: "\t\x11\U0002044a", // 𠑊
+ 0x2044b: "\t\x11\U0002044b", // 𠑋
+ 0x2044c: "\t\x11\U0002044c", // 𠑌
+ 0x2044d: "\t\x12\U0002044d", // 𠑍
+ 0x2044e: "\t\x12\U0002044e", // 𠑎
+ 0x2044f: "\t\x12\U0002044f", // 𠑏
+ 0x20450: "\t\x12\U00020450", // 𠑐
+ 0x20451: "\t\x12\U00020451", // 𠑑
+ 0x20452: "\t\x12\U00020452", // 𠑒
+ 0x20453: "\t\x12\U00020453", // 𠑓
+ 0x20454: "\t\x12\U00020454", // 𠑔
+ 0x20455: "\t\x12\U00020455", // 𠑕
+ 0x20456: "\t\x12\U00020456", // 𠑖
+ 0x20457: "\t\x13\U00020457", // 𠑗
+ 0x20458: "\t\x13\U00020458", // 𠑘
+ 0x20459: "\t\x13\U00020459", // 𠑙
+ 0x2045a: "\t\x13\U0002045a", // 𠑚
+ 0x2045b: "\t\x13\U0002045b", // 𠑛
+ 0x2045c: "\t\x13\U0002045c", // 𠑜
+ 0x2045d: "\t\x13\U0002045d", // 𠑝
+ 0x2045e: "\t\x12\U0002045e", // 𠑞
+ 0x2045f: "\t\x13\U0002045f", // 𠑟
+ 0x20460: "\t\x13\U00020460", // 𠑠
+ 0x20461: "\t\x13\U00020461", // 𠑡
+ 0x20462: "\t\x13\U00020462", // 𠑢
+ 0x20463: "\t\x13\U00020463", // 𠑣
+ 0x20464: "\t\x14\U00020464", // 𠑤
+ 0x20465: "\t\x14\U00020465", // 𠑥
+ 0x20466: "\t\x14\U00020466", // 𠑦
+ 0x20467: "\t\x14\U00020467", // 𠑧
+ 0x20468: "\t\x14\U00020468", // 𠑨
+ 0x20469: "\t\x14\U00020469", // 𠑩
+ 0x2046a: "\t\x15\U0002046a", // 𠑪
+ 0x2046b: "\t\x15\U0002046b", // 𠑫
+ 0x2046c: "\t\x15\U0002046c", // 𠑬
+ 0x2046d: "\t\x15\U0002046d", // 𠑭
+ 0x2046e: "\t\x15\U0002046e", // 𠑮
+ 0x2046f: "\t\x15\U0002046f", // 𠑯
+ 0x20470: "\t\x16\U00020470", // 𠑰
+ 0x20471: "I\x15\U00020471", // 𠑱
+ 0x20472: "\t\x18\U00020472", // 𠑲
+ 0x20473: "\t\x18\U00020473", // 𠑳
+ 0x20474: "\x8e\x17\U00020474", // 𠑴
+ 0x20475: "\t\x1b\U00020475", // 𠑵
+ 0x20476: "\n\x02\U00020476", // 𠑶
+ 0x20477: "\n\x03\U00020477", // 𠑷
+ 0x20478: "\n\x03\U00020478", // 𠑸
+ 0x20479: "\n\x04\U00020479", // 𠑹
+ 0x2047a: "\n\x04\U0002047a", // 𠑺
+ 0x2047b: "\n\x04\U0002047b", // 𠑻
+ 0x2047c: "\n\x04\U0002047c", // 𠑼
+ 0x2047d: "\n\x05\U0002047d", // 𠑽
+ 0x2047e: "\n\x05\U0002047e", // 𠑾
+ 0x2047f: "\n\x05\U0002047f", // 𠑿
+ 0x20480: "\n\x05\U00020480", // 𠒀
+ 0x20481: "\n\x05\U00020481", // 𠒁
+ 0x20482: "\n\x05\U00020482", // 𠒂
+ 0x20483: "\n\x06\U00020483", // 𠒃
+ 0x20484: "\n\x06\U00020484", // 𠒄
+ 0x20485: "\n\x06\U00020485", // 𠒅
+ 0x20486: "\n\x06\U00020486", // 𠒆
+ 0x20487: "\n\x06\U00020487", // 𠒇
+ 0x20488: "\n\x06\U00020488", // 𠒈
+ 0x20489: "\n\x06\U00020489", // 𠒉
+ 0x2048a: "\n\x06\U0002048a", // 𠒊
+ 0x2048b: "\n\x06\U0002048b", // 𠒋
+ 0x2048c: "\n\a\U0002048c", // 𠒌
+ 0x2048d: "\n\a\U0002048d", // 𠒍
+ 0x2048e: "\n\a\U0002048e", // 𠒎
+ 0x2048f: "\n\a\U0002048f", // 𠒏
+ 0x20490: "\n\b\U00020490", // 𠒐
+ 0x20491: "\n\b\U00020491", // 𠒑
+ 0x20492: "\n\b\U00020492", // 𠒒
+ 0x20493: "\n\b\U00020493", // 𠒓
+ 0x20494: "\n\b\U00020494", // 𠒔
+ 0x20495: "\n\b\U00020495", // 𠒕
+ 0x20496: "\n\b\U00020496", // 𠒖
+ 0x20497: "\n\t\U00020497", // 𠒗
+ 0x20498: "\n\t\U00020498", // 𠒘
+ 0x20499: "\n\t\U00020499", // 𠒙
+ 0x2049a: "\n\t\U0002049a", // 𠒚
+ 0x2049b: "\n\t\U0002049b", // 𠒛
+ 0x2049c: "\n\t\U0002049c", // 𠒜
+ 0x2049d: "\n\t\U0002049d", // 𠒝
+ 0x2049e: "\n\n\U0002049e", // 𠒞
+ 0x2049f: "\n\n\U0002049f", // 𠒟
+ 0x204a0: "\n\n\U000204a0", // 𠒠
+ 0x204a1: "\n\n\U000204a1", // 𠒡
+ 0x204a2: "\n\n\U000204a2", // 𠒢
+ 0x204a3: "\n\n\U000204a3", // 𠒣
+ 0x204a4: "\n\v\U000204a4", // 𠒤
+ 0x204a5: "\n\v\U000204a5", // 𠒥
+ 0x204a6: "\n\v\U000204a6", // 𠒦
+ 0x204a7: "\n\f\U000204a7", // 𠒧
+ 0x204a8: "\n\f\U000204a8", // 𠒨
+ 0x204a9: "\n\f\U000204a9", // 𠒩
+ 0x204aa: "\n\f\U000204aa", // 𠒪
+ 0x204ab: "\n\f\U000204ab", // 𠒫
+ 0x204ac: "\n\f\U000204ac", // 𠒬
+ 0x204ad: "\n\f\U000204ad", // 𠒭
+ 0x204ae: "\n\f\U000204ae", // 𠒮
+ 0x204af: "\n\f\U000204af", // 𠒯
+ 0x204b0: "\n\r\U000204b0", // 𠒰
+ 0x204b1: "\n\r\U000204b1", // 𠒱
+ 0x204b2: "\n\r\U000204b2", // 𠒲
+ 0x204b3: "\n\x0e\U000204b3", // 𠒳
+ 0x204b4: "\n\r\U000204b4", // 𠒴
+ 0x204b5: "\n\r\U000204b5", // 𠒵
+ 0x204b6: "\n\r\U000204b6", // 𠒶
+ 0x204b7: "\n\r\U000204b7", // 𠒷
+ 0x204b8: "\n\x0e\U000204b8", // 𠒸
+ 0x204b9: "\n\x0e\U000204b9", // 𠒹
+ 0x204ba: "\n\x0e\U000204ba", // 𠒺
+ 0x204bb: "\n\x0e\U000204bb", // 𠒻
+ 0x204bc: "\n\x0e\U000204bc", // 𠒼
+ 0x204bd: "\n\x0e\U000204bd", // 𠒽
+ 0x204be: "\n\x0e\U000204be", // 𠒾
+ 0x204bf: "\n\x0f\U000204bf", // 𠒿
+ 0x204c0: "\n\x0f\U000204c0", // 𠓀
+ 0x204c1: "\n\x0f\U000204c1", // 𠓁
+ 0x204c2: "\n\x0f\U000204c2", // 𠓂
+ 0x204c3: "\n\x0f\U000204c3", // 𠓃
+ 0x204c4: "\n\x0f\U000204c4", // 𠓄
+ 0x204c5: "\n\x0f\U000204c5", // 𠓅
+ 0x204c6: "\n\x10\U000204c6", // 𠓆
+ 0x204c7: "\n\x0f\U000204c7", // 𠓇
+ 0x204c8: "\n\x10\U000204c8", // 𠓈
+ 0x204c9: "\n\x10\U000204c9", // 𠓉
+ 0x204ca: "\n\x10\U000204ca", // 𠓊
+ 0x204cb: "\n\x11\U000204cb", // 𠓋
+ 0x204cc: "5\x10\U000204cc", // 𠓌
+ 0x204cd: "\n\x12\U000204cd", // 𠓍
+ 0x204ce: "\n\x11\U000204ce", // 𠓎
+ 0x204cf: "\n\x12\U000204cf", // 𠓏
+ 0x204d0: "\n\x12\U000204d0", // 𠓐
+ 0x204d1: "\n\x13\U000204d1", // 𠓑
+ 0x204d2: "\n\x13\U000204d2", // 𠓒
+ 0x204d3: "\n\x14\U000204d3", // 𠓓
+ 0x204d4: "\n\x14\U000204d4", // 𠓔
+ 0x204d5: "\n\x15\U000204d5", // 𠓕
+ 0x204d6: "\n\x15\U000204d6", // 𠓖
+ 0x204d7: "\n\x16\U000204d7", // 𠓗
+ 0x204d8: "\n\x16\U000204d8", // 𠓘
+ 0x204d9: "\n\x16\U000204d9", // 𠓙
+ 0x204da: "\n\x18\U000204da", // 𠓚
+ 0x204db: "\v\x01\U000204db", // 𠓛
+ 0x204dc: "\v\x02\U000204dc", // 𠓜
+ 0x204dd: "\v\x02\U000204dd", // 𠓝
+ 0x204de: "\v\x02\U000204de", // 𠓞
+ 0x204df: "\v\x03\U000204df", // 𠓟
+ 0x204e0: "\v\x04\U000204e0", // 𠓠
+ 0x204e1: "\v\x04\U000204e1", // 𠓡
+ 0x204e2: "\v\x04\U000204e2", // 𠓢
+ 0x204e3: "\v\x04\U000204e3", // 𠓣
+ 0x204e4: "\v\x05\U000204e4", // 𠓤
+ 0x204e5: "\v\x05\U000204e5", // 𠓥
+ 0x204e6: "\v\x05\U000204e6", // 𠓦
+ 0x204e7: "\v\x05\U000204e7", // 𠓧
+ 0x204e8: "\v\x05\U000204e8", // 𠓨
+ 0x204e9: "\v\x06\U000204e9", // 𠓩
+ 0x204ea: "\v\a\U000204ea", // 𠓪
+ 0x204eb: "\v\a\U000204eb", // 𠓫
+ 0x204ec: "\v\a\U000204ec", // 𠓬
+ 0x204ed: "\v\b\U000204ed", // 𠓭
+ 0x204ee: "\v\b\U000204ee", // 𠓮
+ 0x204ef: "\v\b\U000204ef", // 𠓯
+ 0x204f0: "\v\b\U000204f0", // 𠓰
+ 0x204f1: "\v\t\U000204f1", // 𠓱
+ 0x204f2: "\v\n\U000204f2", // 𠓲
+ 0x204f3: "\v\n\U000204f3", // 𠓳
+ 0x204f4: "\v\v\U000204f4", // 𠓴
+ 0x204f5: "\v\v\U000204f5", // 𠓵
+ 0x204f6: "\v\v\U000204f6", // 𠓶
+ 0x204f7: "\v\v\U000204f7", // 𠓷
+ 0x204f8: "\v\f\U000204f8", // 𠓸
+ 0x204f9: "\v\f\U000204f9", // 𠓹
+ 0x204fa: "\v\f\U000204fa", // 𠓺
+ 0x204fb: "\v\f\U000204fb", // 𠓻
+ 0x204fc: "\v\x0e\U000204fc", // 𠓼
+ 0x204fd: "\v\x0f\U000204fd", // 𠓽
+ 0x204fe: "\v\x10\U000204fe", // 𠓾
+ 0x204ff: "\v\x12\U000204ff", // 𠓿
+ 0x20500: "\f\x01\U00020500", // 𠔀
+ 0x20501: "\f\x02\U00020501", // 𠔁
+ 0x20502: "\f\x02\U00020502", // 𠔂
+ 0x20503: "\f\x02\U00020503", // 𠔃
+ 0x20504: "\f\x02\U00020504", // 𠔄
+ 0x20505: "\f\x03\U00020505", // 𠔅
+ 0x20506: "\f\x03\U00020506", // 𠔆
+ 0x20507: "\xa2\x00\U00020507", // 𠔇
+ 0x20508: "\f\x04\U00020508", // 𠔈
+ 0x20509: "\f\x04\U00020509", // 𠔉
+ 0x2050a: "\f\x05\U0002050a", // 𠔊
+ 0x2050b: "\f\x05\U0002050b", // 𠔋
+ 0x2050c: "\f\x05\U0002050c", // 𠔌
+ 0x2050d: "\f\x05\U0002050d", // 𠔍
+ 0x2050e: "\f\x05\U0002050e", // 𠔎
+ 0x2050f: "\f\x05\U0002050f", // 𠔏
+ 0x20510: "\f\x06\U00020510", // 𠔐
+ 0x20511: "\f\x06\U00020511", // 𠔑
+ 0x20512: "\f\a\U00020512", // 𠔒
+ 0x20513: "\f\a\U00020513", // 𠔓
+ 0x20514: "\f\a\U00020514", // 𠔔
+ 0x20515: "\f\a\U00020515", // 𠔕
+ 0x20516: "\f\a\U00020516", // 𠔖
+ 0x20517: "\f\a\U00020517", // 𠔗
+ 0x20518: "9\x06\U00020518", // 𠔘
+ 0x20519: "\f\b\U00020519", // 𠔙
+ 0x2051a: "\f\b\U0002051a", // 𠔚
+ 0x2051b: "\f\b\U0002051b", // 𠔛
+ 0x2051c: "\f\t\U0002051c", // 𠔜
+ 0x2051d: "\f\t\U0002051d", // 𠔝
+ 0x2051e: "\f\n\U0002051e", // 𠔞
+ 0x2051f: "\f\n\U0002051f", // 𠔟
+ 0x20520: "\f\n\U00020520", // 𠔠
+ 0x20521: "\f\n\U00020521", // 𠔡
+ 0x20522: "\f\n\U00020522", // 𠔢
+ 0x20523: "\f\n\U00020523", // 𠔣
+ 0x20524: "\f\n\U00020524", // 𠔤
+ 0x20525: "\f\n\U00020525", // 𠔥
+ 0x20526: "\f\n\U00020526", // 𠔦
+ 0x20527: "\f\n\U00020527", // 𠔧
+ 0x20528: "\f\v\U00020528", // 𠔨
+ 0x20529: "\f\v\U00020529", // 𠔩
+ 0x2052a: "\f\v\U0002052a", // 𠔪
+ 0x2052b: "\f\v\U0002052b", // 𠔫
+ 0x2052c: "\f\v\U0002052c", // 𠔬
+ 0x2052d: "\f\v\U0002052d", // 𠔭
+ 0x2052e: "\f\v\U0002052e", // 𠔮
+ 0x2052f: "\f\f\U0002052f", // 𠔯
+ 0x20530: "\f\f\U00020530", // 𠔰
+ 0x20531: "\f\f\U00020531", // 𠔱
+ 0x20532: "\x1c\f\U00020532", // 𠔲
+ 0x20533: "\f\x0e\U00020533", // 𠔳
+ 0x20534: "\f\x0e\U00020534", // 𠔴
+ 0x20535: "\f\x0e\U00020535", // 𠔵
+ 0x20536: "\f\x10\U00020536", // 𠔶
+ 0x20537: "\f\x10\U00020537", // 𠔷
+ 0x20538: "\f\x11\U00020538", // 𠔸
+ 0x20539: "\f\x11\U00020539", // 𠔹
+ 0x2053a: "\f\x11\U0002053a", // 𠔺
+ 0x2053b: "\x86:\U0002053b", // 𠔻
+ 0x2053c: "\r\x01\U0002053c", // 𠔼
+ 0x2053d: "\r\x02\U0002053d", // 𠔽
+ 0x2053e: "\r\x02\U0002053e", // 𠔾
+ 0x2053f: "\r\x02\U0002053f", // 𠔿
+ 0x20540: "\r\x02\U00020540", // 𠕀
+ 0x20541: "\r\x03\U00020541", // 𠕁
+ 0x20542: "\r\x03\U00020542", // 𠕂
+ 0x20543: "\r\x03\U00020543", // 𠕃
+ 0x20544: "\r\x03\U00020544", // 𠕄
+ 0x20545: "\r\x03\U00020545", // 𠕅
+ 0x20546: "\r\x03\U00020546", // 𠕆
+ 0x20547: "\r\x03\U00020547", // 𠕇
+ 0x20548: "\r\x03\U00020548", // 𠕈
+ 0x20549: "\r\x03\U00020549", // 𠕉
+ 0x2054a: "\r\x03\U0002054a", // 𠕊
+ 0x2054b: "\r\x04\U0002054b", // 𠕋
+ 0x2054c: "\r\x04\U0002054c", // 𠕌
+ 0x2054d: "\r\x04\U0002054d", // 𠕍
+ 0x2054e: "\r\x04\U0002054e", // 𠕎
+ 0x2054f: "\r\x04\U0002054f", // 𠕏
+ 0x20550: "\r\x05\U00020550", // 𠕐
+ 0x20551: "\r\x05\U00020551", // 𠕑
+ 0x20552: "\r\x05\U00020552", // 𠕒
+ 0x20553: "\r\x05\U00020553", // 𠕓
+ 0x20554: "\r\x05\U00020554", // 𠕔
+ 0x20555: "\r\x05\U00020555", // 𠕕
+ 0x20556: "\r\x06\U00020556", // 𠕖
+ 0x20557: "\r\x06\U00020557", // 𠕗
+ 0x20558: "\r\x06\U00020558", // 𠕘
+ 0x20559: "\r\x06\U00020559", // 𠕙
+ 0x2055a: "\r\x06\U0002055a", // 𠕚
+ 0x2055b: "\r\a\U0002055b", // 𠕛
+ 0x2055c: "\r\a\U0002055c", // 𠕜
+ 0x2055d: "\r\b\U0002055d", // 𠕝
+ 0x2055e: "\r\b\U0002055e", // 𠕞
+ 0x2055f: "\r\b\U0002055f", // 𠕟
+ 0x20560: "\r\t\U00020560", // 𠕠
+ 0x20561: "\r\t\U00020561", // 𠕡
+ 0x20562: "\r\t\U00020562", // 𠕢
+ 0x20563: "\r\n\U00020563", // 𠕣
+ 0x20564: "\r\n\U00020564", // 𠕤
+ 0x20565: "\r\n\U00020565", // 𠕥
+ 0x20566: "\r\v\U00020566", // 𠕦
+ 0x20567: "\r\v\U00020567", // 𠕧
+ 0x20568: "\r\f\U00020568", // 𠕨
+ 0x20569: "\r\f\U00020569", // 𠕩
+ 0x2056a: "\r\r\U0002056a", // 𠕪
+ 0x2056b: "=\v\U0002056b", // 𠕫
+ 0x2056c: "\r\r\U0002056c", // 𠕬
+ 0x2056d: "\r\x0e\U0002056d", // 𠕭
+ 0x2056e: "\r\x0e\U0002056e", // 𠕮
+ 0x2056f: "\r\x10\U0002056f", // 𠕯
+ 0x20570: "\r\x10\U00020570", // 𠕰
+ 0x20571: "\r\x12\U00020571", // 𠕱
+ 0x20572: "\r\x14\U00020572", // 𠕲
+ 0x20573: "\x0e\x02\U00020573", // 𠕳
+ 0x20574: "\x0e\x02\U00020574", // 𠕴
+ 0x20575: "\x0e\x03\U00020575", // 𠕵
+ 0x20576: "\x0e\x03\U00020576", // 𠕶
+ 0x20577: "\x0e\x03\U00020577", // 𠕷
+ 0x20578: "\x0e\x03\U00020578", // 𠕸
+ 0x20579: "\x0e\x04\U00020579", // 𠕹
+ 0x2057a: "\x0e\x04\U0002057a", // 𠕺
+ 0x2057b: "\x0e\x04\U0002057b", // 𠕻
+ 0x2057c: "\x0e\x04\U0002057c", // 𠕼
+ 0x2057d: "\x0e\x04\U0002057d", // 𠕽
+ 0x2057e: "\x0e\x04\U0002057e", // 𠕾
+ 0x2057f: "\x0e\x04\U0002057f", // 𠕿
+ 0x20580: "\x0e\x05\U00020580", // 𠖀
+ 0x20581: "\x0e\x05\U00020581", // 𠖁
+ 0x20582: "\x0e\x05\U00020582", // 𠖂
+ 0x20583: "\x0e\x05\U00020583", // 𠖃
+ 0x20584: "\x0e\x06\U00020584", // 𠖄
+ 0x20585: "\x0e\x06\U00020585", // 𠖅
+ 0x20586: "\x0e\x06\U00020586", // 𠖆
+ 0x20587: "\x0e\a\U00020587", // 𠖇
+ 0x20588: "\x0e\a\U00020588", // 𠖈
+ 0x20589: "\x0e\a\U00020589", // 𠖉
+ 0x2058a: "\x0e\a\U0002058a", // 𠖊
+ 0x2058b: "\x0e\a\U0002058b", // 𠖋
+ 0x2058c: "\x0e\b\U0002058c", // 𠖌
+ 0x2058d: "\x0e\b\U0002058d", // 𠖍
+ 0x2058e: "\x0e\b\U0002058e", // 𠖎
+ 0x2058f: "\x0e\b\U0002058f", // 𠖏
+ 0x20590: "\x0e\b\U00020590", // 𠖐
+ 0x20591: "\x0e\b\U00020591", // 𠖑
+ 0x20592: "\x0e\b\U00020592", // 𠖒
+ 0x20593: "\x0e\t\U00020593", // 𠖓
+ 0x20594: "\x0e\n\U00020594", // 𠖔
+ 0x20595: "\x0e\n\U00020595", // 𠖕
+ 0x20596: "\x0e\n\U00020596", // 𠖖
+ 0x20597: "\x0e\n\U00020597", // 𠖗
+ 0x20598: "\x0e\n\U00020598", // 𠖘
+ 0x20599: "\x0e\n\U00020599", // 𠖙
+ 0x2059a: "\x0e\v\U0002059a", // 𠖚
+ 0x2059b: "\x0e\v\U0002059b", // 𠖛
+ 0x2059c: "\x0e\f\U0002059c", // 𠖜
+ 0x2059d: "\x0e\f\U0002059d", // 𠖝
+ 0x2059e: "\x0e\f\U0002059e", // 𠖞
+ 0x2059f: "q\n\U0002059f", // 𠖟
+ 0x205a0: "\x0e\x0e\U000205a0", // 𠖠
+ 0x205a1: "\x0e\x0e\U000205a1", // 𠖡
+ 0x205a2: "\x0e\x0f\U000205a2", // 𠖢
+ 0x205a3: "\x0e\x10\U000205a3", // 𠖣
+ 0x205a4: "\x0e\x10\U000205a4", // 𠖤
+ 0x205a5: "\x0e\x10\U000205a5", // 𠖥
+ 0x205a6: "\x0e\x12\U000205a6", // 𠖦
+ 0x205a7: "\x0e\x12\U000205a7", // 𠖧
+ 0x205a8: "\x0e\x12\U000205a8", // 𠖨
+ 0x205a9: "\x0e\x13\U000205a9", // 𠖩
+ 0x205aa: "\x0e\x14\U000205aa", // 𠖪
+ 0x205ab: "\x0e\x15\U000205ab", // 𠖫
+ 0x205ac: "\x0f\x01\U000205ac", // 𠖬
+ 0x205ad: "\x0f\x02\U000205ad", // 𠖭
+ 0x205ae: "\x0f\x03\U000205ae", // 𠖮
+ 0x205af: "\x0f\x03\U000205af", // 𠖯
+ 0x205b0: "\x0f\x03\U000205b0", // 𠖰
+ 0x205b1: "\x0f\x04\U000205b1", // 𠖱
+ 0x205b2: "\x0f\x04\U000205b2", // 𠖲
+ 0x205b3: "\x0f\x04\U000205b3", // 𠖳
+ 0x205b4: "\x0f\x04\U000205b4", // 𠖴
+ 0x205b5: "\x0f\x04\U000205b5", // 𠖵
+ 0x205b6: "\x0f\x04\U000205b6", // 𠖶
+ 0x205b7: "\x0f\x05\U000205b7", // 𠖷
+ 0x205b8: "\x0f\x05\U000205b8", // 𠖸
+ 0x205b9: "\x0f\x05\U000205b9", // 𠖹
+ 0x205ba: "\x0f\x05\U000205ba", // 𠖺
+ 0x205bb: "\x0f\x05\U000205bb", // 𠖻
+ 0x205bc: "\x0f\x05\U000205bc", // 𠖼
+ 0x205bd: "\x0f\x05\U000205bd", // 𠖽
+ 0x205be: "\x0f\x05\U000205be", // 𠖾
+ 0x205bf: "\x0f\x05\U000205bf", // 𠖿
+ 0x205c0: "\x0f\x06\U000205c0", // 𠗀
+ 0x205c1: "\x0f\x05\U000205c1", // 𠗁
+ 0x205c2: "\x0f\x06\U000205c2", // 𠗂
+ 0x205c3: "\x0f\x06\U000205c3", // 𠗃
+ 0x205c4: "\x0f\x06\U000205c4", // 𠗄
+ 0x205c5: "\x0f\x06\U000205c5", // 𠗅
+ 0x205c6: "\x0f\x06\U000205c6", // 𠗆
+ 0x205c7: "\x0f\x06\U000205c7", // 𠗇
+ 0x205c8: "\x0f\a\U000205c8", // 𠗈
+ 0x205c9: "\x0f\a\U000205c9", // 𠗉
+ 0x205ca: "\x0f\a\U000205ca", // 𠗊
+ 0x205cb: "\x0f\a\U000205cb", // 𠗋
+ 0x205cc: "\x0f\a\U000205cc", // 𠗌
+ 0x205cd: "\x0f\a\U000205cd", // 𠗍
+ 0x205ce: "\x0f\a\U000205ce", // 𠗎
+ 0x205cf: "\x0f\a\U000205cf", // 𠗏
+ 0x205d0: "\x0f\a\U000205d0", // 𠗐
+ 0x205d1: "\x0f\a\U000205d1", // 𠗑
+ 0x205d2: "\x0f\a\U000205d2", // 𠗒
+ 0x205d3: "\x0f\a\U000205d3", // 𠗓
+ 0x205d4: "\x0f\a\U000205d4", // 𠗔
+ 0x205d5: "\x0f\a\U000205d5", // 𠗕
+ 0x205d6: "\x0f\a\U000205d6", // 𠗖
+ 0x205d7: "\x0f\a\U000205d7", // 𠗗
+ 0x205d8: "\x0f\b\U000205d8", // 𠗘
+ 0x205d9: "\x0f\b\U000205d9", // 𠗙
+ 0x205da: "\x0f\b\U000205da", // 𠗚
+ 0x205db: "\x0f\b\U000205db", // 𠗛
+ 0x205dc: "\x0f\b\U000205dc", // 𠗜
+ 0x205dd: "\x0f\b\U000205dd", // 𠗝
+ 0x205de: "\x0f\b\U000205de", // 𠗞
+ 0x205df: "\x0f\b\U000205df", // 𠗟
+ 0x205e0: "\x0f\b\U000205e0", // 𠗠
+ 0x205e1: "\x0f\b\U000205e1", // 𠗡
+ 0x205e2: "\x0f\b\U000205e2", // 𠗢
+ 0x205e3: "\x0f\b\U000205e3", // 𠗣
+ 0x205e4: "\x0f\b\U000205e4", // 𠗤
+ 0x205e5: "\x0f\t\U000205e5", // 𠗥
+ 0x205e6: "\x0f\t\U000205e6", // 𠗦
+ 0x205e7: "\x0f\t\U000205e7", // 𠗧
+ 0x205e8: "\x0f\t\U000205e8", // 𠗨
+ 0x205e9: "\x0f\t\U000205e9", // 𠗩
+ 0x205ea: "\x0f\t\U000205ea", // 𠗪
+ 0x205eb: "\x0f\t\U000205eb", // 𠗫
+ 0x205ec: "\x0f\t\U000205ec", // 𠗬
+ 0x205ed: "\x0f\t\U000205ed", // 𠗭
+ 0x205ee: "\x0f\t\U000205ee", // 𠗮
+ 0x205ef: "\x0f\t\U000205ef", // 𠗯
+ 0x205f0: "\x0f\t\U000205f0", // 𠗰
+ 0x205f1: "\x0f\n\U000205f1", // 𠗱
+ 0x205f2: "\x0f\n\U000205f2", // 𠗲
+ 0x205f3: "\x0f\n\U000205f3", // 𠗳
+ 0x205f4: "\x0f\n\U000205f4", // 𠗴
+ 0x205f5: "\x0f\n\U000205f5", // 𠗵
+ 0x205f6: "\x0f\n\U000205f6", // 𠗶
+ 0x205f7: "\x0f\n\U000205f7", // 𠗷
+ 0x205f8: "\x0f\n\U000205f8", // 𠗸
+ 0x205f9: "\x0f\n\U000205f9", // 𠗹
+ 0x205fa: "\x0f\v\U000205fa", // 𠗺
+ 0x205fb: "\x0f\v\U000205fb", // 𠗻
+ 0x205fc: "\x0f\v\U000205fc", // 𠗼
+ 0x205fd: "\x0f\v\U000205fd", // 𠗽
+ 0x205fe: "\x0f\v\U000205fe", // 𠗾
+ 0x205ff: "\x0f\v\U000205ff", // 𠗿
+ 0x20600: "\x0f\v\U00020600", // 𠘀
+ 0x20601: "\x0f\v\U00020601", // 𠘁
+ 0x20602: "\x0f\v\U00020602", // 𠘂
+ 0x20603: "\x0f\v\U00020603", // 𠘃
+ 0x20604: "\x0f\f\U00020604", // 𠘄
+ 0x20605: "\x0f\f\U00020605", // 𠘅
+ 0x20606: "\x0f\f\U00020606", // 𠘆
+ 0x20607: "\x0f\f\U00020607", // 𠘇
+ 0x20608: "\x0f\f\U00020608", // 𠘈
+ 0x20609: "\x0f\f\U00020609", // 𠘉
+ 0x2060a: "\x0f\r\U0002060a", // 𠘊
+ 0x2060b: "\x0f\r\U0002060b", // 𠘋
+ 0x2060c: "\x0f\r\U0002060c", // 𠘌
+ 0x2060d: "\x0f\r\U0002060d", // 𠘍
+ 0x2060e: "\x0f\r\U0002060e", // 𠘎
+ 0x2060f: "\x0f\r\U0002060f", // 𠘏
+ 0x20610: "\x0f\r\U00020610", // 𠘐
+ 0x20611: "\x0f\r\U00020611", // 𠘑
+ 0x20612: "\x0f\x0e\U00020612", // 𠘒
+ 0x20613: "\x0f\f\U00020613", // 𠘓
+ 0x20614: "\x0f\x0e\U00020614", // 𠘔
+ 0x20615: "\x0f\x0e\U00020615", // 𠘕
+ 0x20616: "\x0f\x0f\U00020616", // 𠘖
+ 0x20617: "\x0f\x0f\U00020617", // 𠘗
+ 0x20618: "\x0f\x0f\U00020618", // 𠘘
+ 0x20619: "\x0f\x0f\U00020619", // 𠘙
+ 0x2061a: "\x0f\x0f\U0002061a", // 𠘚
+ 0x2061b: "\x0f\x0f\U0002061b", // 𠘛
+ 0x2061c: "\x0f\x0f\U0002061c", // 𠘜
+ 0x2061d: "\x0f\x10\U0002061d", // 𠘝
+ 0x2061e: "\x0f\x10\U0002061e", // 𠘞
+ 0x2061f: "\x0f\x10\U0002061f", // 𠘟
+ 0x20620: "\x0f\x10\U00020620", // 𠘠
+ 0x20621: "\x0f\x10\U00020621", // 𠘡
+ 0x20622: "\x0f\x11\U00020622", // 𠘢
+ 0x20623: "\x0f\x11\U00020623", // 𠘣
+ 0x20624: "\x0f\x13\U00020624", // 𠘤
+ 0x20625: "\x0f\x14\U00020625", // 𠘥
+ 0x20626: "\x0f\x18\U00020626", // 𠘦
+ 0x20627: "\x10\x00\U00020627", // 𠘧
+ 0x20628: "\x10\x00\U00020628", // 𠘨
+ 0x20629: "\x10\x02\U00020629", // 𠘩
+ 0x2062a: "\x10\x02\U0002062a", // 𠘪
+ 0x2062b: "\x10\x02\U0002062b", // 𠘫
+ 0x2062c: "\x10\x02\U0002062c", // 𠘬
+ 0x2062d: "\x10\x02\U0002062d", // 𠘭
+ 0x2062e: "\x10\x02\U0002062e", // 𠘮
+ 0x2062f: "\x10\x02\U0002062f", // 𠘯
+ 0x20630: "\x10\x02\U00020630", // 𠘰
+ 0x20631: "\x10\x03\U00020631", // 𠘱
+ 0x20632: "\x10\x03\U00020632", // 𠘲
+ 0x20633: "\x10\x03\U00020633", // 𠘳
+ 0x20634: "\x10\x03\U00020634", // 𠘴
+ 0x20635: "\x10\x04\U00020635", // 𠘵
+ 0x20636: "\x10\x04\U00020636", // 𠘶
+ 0x20637: "\x10\x04\U00020637", // 𠘷
+ 0x20638: "\x10\x04\U00020638", // 𠘸
+ 0x20639: "\x10\x04\U00020639", // 𠘹
+ 0x2063a: "\x10\x04\U0002063a", // 𠘺
+ 0x2063b: "\x10\x04\U0002063b", // 𠘻
+ 0x2063c: "\x10\x05\U0002063c", // 𠘼
+ 0x2063d: "\x10\x05\U0002063d", // 𠘽
+ 0x2063e: "\x10\x05\U0002063e", // 𠘾
+ 0x2063f: "\x10\x05\U0002063f", // 𠘿
+ 0x20640: "\x10\x05\U00020640", // 𠙀
+ 0x20641: "\x10\x05\U00020641", // 𠙁
+ 0x20642: "\x10\x05\U00020642", // 𠙂
+ 0x20643: "\x10\x05\U00020643", // 𠙃
+ 0x20644: "\x10\x05\U00020644", // 𠙄
+ 0x20645: "\x10\x05\U00020645", // 𠙅
+ 0x20646: "\x10\x06\U00020646", // 𠙆
+ 0x20647: "\x10\x06\U00020647", // 𠙇
+ 0x20648: "\x10\x06\U00020648", // 𠙈
+ 0x20649: "\x10\x06\U00020649", // 𠙉
+ 0x2064a: "\x10\x06\U0002064a", // 𠙊
+ 0x2064b: "\x10\x06\U0002064b", // 𠙋
+ 0x2064c: "\x10\x06\U0002064c", // 𠙌
+ 0x2064d: "\x10\x06\U0002064d", // 𠙍
+ 0x2064e: "\x10\x06\U0002064e", // 𠙎
+ 0x2064f: "\x10\a\U0002064f", // 𠙏
+ 0x20650: "\x10\a\U00020650", // 𠙐
+ 0x20651: "\x10\a\U00020651", // 𠙑
+ 0x20652: "\x10\b\U00020652", // 𠙒
+ 0x20653: "\x10\b\U00020653", // 𠙓
+ 0x20654: "\x10\b\U00020654", // 𠙔
+ 0x20655: "\x10\b\U00020655", // 𠙕
+ 0x20656: "\x10\b\U00020656", // 𠙖
+ 0x20657: "/\a\U00020657", // 𠙗
+ 0x20658: "\x10\t\U00020658", // 𠙘
+ 0x20659: "\x10\t\U00020659", // 𠙙
+ 0x2065a: "\"\b\U0002065a", // 𠙚
+ 0x2065b: "\x10\t\U0002065b", // 𠙛
+ 0x2065c: "\x10\t\U0002065c", // 𠙜
+ 0x2065d: "\x10\t\U0002065d", // 𠙝
+ 0x2065e: "\x10\t\U0002065e", // 𠙞
+ 0x2065f: "\x10\n\U0002065f", // 𠙟
+ 0x20660: "\x10\n\U00020660", // 𠙠
+ 0x20661: "\x10\n\U00020661", // 𠙡
+ 0x20662: "\x10\n\U00020662", // 𠙢
+ 0x20663: "\x10\n\U00020663", // 𠙣
+ 0x20664: "\x10\v\U00020664", // 𠙤
+ 0x20665: "\x10\v\U00020665", // 𠙥
+ 0x20666: "\x10\v\U00020666", // 𠙦
+ 0x20667: "\x10\v\U00020667", // 𠙧
+ 0x20668: "\x10\f\U00020668", // 𠙨
+ 0x20669: "\x10\f\U00020669", // 𠙩
+ 0x2066a: "\x10\f\U0002066a", // 𠙪
+ 0x2066b: "\x10\r\U0002066b", // 𠙫
+ 0x2066c: "\xb6\x06\U0002066c", // 𠙬
+ 0x2066d: "\x10\x0e\U0002066d", // 𠙭
+ 0x2066e: "\x10\x0e\U0002066e", // 𠙮
+ 0x2066f: "\x10\x0e\U0002066f", // 𠙯
+ 0x20670: "\x10\x0e\U00020670", // 𠙰
+ 0x20671: "\x10\x0f\U00020671", // 𠙱
+ 0x20672: "\x10\x12\U00020672", // 𠙲
+ 0x20673: "\x10\x13\U00020673", // 𠙳
+ 0x20674: "\x11\x00\U00020674", // 𠙴
+ 0x20675: "\x11\x01\U00020675", // 𠙵
+ 0x20676: "\x11\x02\U00020676", // 𠙶
+ 0x20677: "\x11\x02\U00020677", // 𠙷
+ 0x20678: "\x11\x02\U00020678", // 𠙸
+ 0x20679: "\x11\x03\U00020679", // 𠙹
+ 0x2067a: "\x11\x03\U0002067a", // 𠙺
+ 0x2067b: "\x11\x03\U0002067b", // 𠙻
+ 0x2067c: "\x1e\x02\U0002067c", // 𠙼
+ 0x2067d: "\x11\x03\U0002067d", // 𠙽
+ 0x2067e: "\x11\x04\U0002067e", // 𠙾
+ 0x2067f: "\x11\x04\U0002067f", // 𠙿
+ 0x20680: "\x11\x04\U00020680", // 𠚀
+ 0x20681: "\x11\x04\U00020681", // 𠚁
+ 0x20682: "\x11\x04\U00020682", // 𠚂
+ 0x20683: "\x11\x04\U00020683", // 𠚃
+ 0x20684: "\x11\x04\U00020684", // 𠚄
+ 0x20685: "\x11\x04\U00020685", // 𠚅
+ 0x20686: "\x11\x05\U00020686", // 𠚆
+ 0x20687: "\x11\x05\U00020687", // 𠚇
+ 0x20688: "\x11\x05\U00020688", // 𠚈
+ 0x20689: "\x11\x05\U00020689", // 𠚉
+ 0x2068a: "\x11\x05\U0002068a", // 𠚊
+ 0x2068b: "\x11\x06\U0002068b", // 𠚋
+ 0x2068c: "\x11\x06\U0002068c", // 𠚌
+ 0x2068d: "\x11\x06\U0002068d", // 𠚍
+ 0x2068e: "\x11\a\U0002068e", // 𠚎
+ 0x2068f: "\x11\a\U0002068f", // 𠚏
+ 0x20690: "\x11\a\U00020690", // 𠚐
+ 0x20691: "\xb0\x00\U00020691", // 𠚑
+ 0x20692: "\x11\b\U00020692", // 𠚒
+ 0x20693: "\x11\b\U00020693", // 𠚓
+ 0x20694: "\x11\t\U00020694", // 𠚔
+ 0x20695: "\x11\t\U00020695", // 𠚕
+ 0x20696: "\x11\t\U00020696", // 𠚖
+ 0x20697: "\x11\t\U00020697", // 𠚗
+ 0x20698: "\x11\n\U00020698", // 𠚘
+ 0x20699: "\x11\f\U00020699", // 𠚙
+ 0x2069a: "\x11\f\U0002069a", // 𠚚
+ 0x2069b: " \f\U0002069b", // 𠚛
+ 0x2069c: "\x11\r\U0002069c", // 𠚜
+ 0x2069d: "\x11\x0e\U0002069d", // 𠚝
+ 0x2069e: "\x11\x0f\U0002069e", // 𠚞
+ 0x2069f: "\x11\x11\U0002069f", // 𠚟
+ 0x206a0: "\x11\x12\U000206a0", // 𠚠
+ 0x206a1: "\x11\x13\U000206a1", // 𠚡
+ 0x206a2: "\x11\x16\U000206a2", // 𠚢
+ 0x206a3: "\x12\x00\U000206a3", // 𠚣
+ 0x206a4: "\x12\x01\U000206a4", // 𠚤
+ 0x206a5: "\x12\x02\U000206a5", // 𠚥
+ 0x206a6: "\x12\x02\U000206a6", // 𠚦
+ 0x206a7: "\x12\x02\U000206a7", // 𠚧
+ 0x206a8: "\x12\x02\U000206a8", // 𠚨
+ 0x206a9: "\x12\x02\U000206a9", // 𠚩
+ 0x206aa: "\x12\x02\U000206aa", // 𠚪
+ 0x206ab: "\x12\x02\U000206ab", // 𠚫
+ 0x206ac: "\x12\x02\U000206ac", // 𠚬
+ 0x206ad: "\x12\x03\U000206ad", // 𠚭
+ 0x206ae: "\x12\x03\U000206ae", // 𠚮
+ 0x206af: "\x12\x03\U000206af", // 𠚯
+ 0x206b0: "\x12\x03\U000206b0", // 𠚰
+ 0x206b1: "\x12\x03\U000206b1", // 𠚱
+ 0x206b2: "\x12\x03\U000206b2", // 𠚲
+ 0x206b3: "\x12\x03\U000206b3", // 𠚳
+ 0x206b4: "\x12\x03\U000206b4", // 𠚴
+ 0x206b5: "\x12\x04\U000206b5", // 𠚵
+ 0x206b6: "\x12\x03\U000206b6", // 𠚶
+ 0x206b7: "\x12\x04\U000206b7", // 𠚷
+ 0x206b8: "\x12\x04\U000206b8", // 𠚸
+ 0x206b9: "\x12\x04\U000206b9", // 𠚹
+ 0x206ba: "\x12\x04\U000206ba", // 𠚺
+ 0x206bb: "\x12\x03\U000206bb", // 𠚻
+ 0x206bc: "\x12\x04\U000206bc", // 𠚼
+ 0x206bd: "\x12\x04\U000206bd", // 𠚽
+ 0x206be: "\x12\x04\U000206be", // 𠚾
+ 0x206bf: "\x12\x04\U000206bf", // 𠚿
+ 0x206c0: "\x12\x04\U000206c0", // 𠛀
+ 0x206c1: "\x12\x04\U000206c1", // 𠛁
+ 0x206c2: "\x12\x04\U000206c2", // 𠛂
+ 0x206c3: "\x12\x04\U000206c3", // 𠛃
+ 0x206c4: "\x12\x04\U000206c4", // 𠛄
+ 0x206c5: "\x12\x04\U000206c5", // 𠛅
+ 0x206c6: "\x12\x04\U000206c6", // 𠛆
+ 0x206c7: "\x12\x04\U000206c7", // 𠛇
+ 0x206c8: "\x12\x04\U000206c8", // 𠛈
+ 0x206c9: "\x12\x04\U000206c9", // 𠛉
+ 0x206ca: "\x12\x04\U000206ca", // 𠛊
+ 0x206cb: "\x12\x04\U000206cb", // 𠛋
+ 0x206cc: "\x12\x04\U000206cc", // 𠛌
+ 0x206cd: "\x12\x04\U000206cd", // 𠛍
+ 0x206ce: "\x12\x05\U000206ce", // 𠛎
+ 0x206cf: "\x12\x05\U000206cf", // 𠛏
+ 0x206d0: "\x12\x05\U000206d0", // 𠛐
+ 0x206d1: "\x12\x05\U000206d1", // 𠛑
+ 0x206d2: "\x12\x05\U000206d2", // 𠛒
+ 0x206d3: "\x12\x05\U000206d3", // 𠛓
+ 0x206d4: "\x12\x05\U000206d4", // 𠛔
+ 0x206d5: "\x12\x05\U000206d5", // 𠛕
+ 0x206d6: "\x12\x05\U000206d6", // 𠛖
+ 0x206d7: "\x12\x05\U000206d7", // 𠛗
+ 0x206d8: "\x12\x05\U000206d8", // 𠛘
+ 0x206d9: "\x12\x05\U000206d9", // 𠛙
+ 0x206da: "\x12\x05\U000206da", // 𠛚
+ 0x206db: "\x12\x05\U000206db", // 𠛛
+ 0x206dc: "\x12\x05\U000206dc", // 𠛜
+ 0x206dd: "\x12\x05\U000206dd", // 𠛝
+ 0x206de: "\x12\x05\U000206de", // 𠛞
+ 0x206df: "\x12\x05\U000206df", // 𠛟
+ 0x206e0: "\x12\x05\U000206e0", // 𠛠
+ 0x206e1: "\x12\x05\U000206e1", // 𠛡
+ 0x206e2: "\x12\x05\U000206e2", // 𠛢
+ 0x206e3: "\x12\x05\U000206e3", // 𠛣
+ 0x206e4: "\x12\x05\U000206e4", // 𠛤
+ 0x206e5: "\x12\x05\U000206e5", // 𠛥
+ 0x206e6: "\x12\x05\U000206e6", // 𠛦
+ 0x206e7: "\x12\x06\U000206e7", // 𠛧
+ 0x206e8: "\x12\x06\U000206e8", // 𠛨
+ 0x206e9: "\x12\x06\U000206e9", // 𠛩
+ 0x206ea: "\x12\x06\U000206ea", // 𠛪
+ 0x206eb: "\x12\x06\U000206eb", // 𠛫
+ 0x206ec: "\x12\x06\U000206ec", // 𠛬
+ 0x206ed: "\x12\x06\U000206ed", // 𠛭
+ 0x206ee: "\x12\x06\U000206ee", // 𠛮
+ 0x206ef: "\x12\x06\U000206ef", // 𠛯
+ 0x206f0: "\x12\x06\U000206f0", // 𠛰
+ 0x206f1: "\x12\x06\U000206f1", // 𠛱
+ 0x206f2: "\x12\x06\U000206f2", // 𠛲
+ 0x206f3: "\x12\x06\U000206f3", // 𠛳
+ 0x206f4: "\x12\x06\U000206f4", // 𠛴
+ 0x206f5: "\x12\x06\U000206f5", // 𠛵
+ 0x206f6: "\x12\x06\U000206f6", // 𠛶
+ 0x206f7: "\x12\x06\U000206f7", // 𠛷
+ 0x206f8: "\x12\x06\U000206f8", // 𠛸
+ 0x206f9: "\x12\x06\U000206f9", // 𠛹
+ 0x206fa: "\x12\x06\U000206fa", // 𠛺
+ 0x206fb: "\x12\x06\U000206fb", // 𠛻
+ 0x206fc: "\x12\x06\U000206fc", // 𠛼
+ 0x206fd: "\x12\x06\U000206fd", // 𠛽
+ 0x206fe: "\x12\x06\U000206fe", // 𠛾
+ 0x206ff: "\x12\x06\U000206ff", // 𠛿
+ 0x20700: "\x12\x06\U00020700", // 𠜀
+ 0x20701: "\x12\x06\U00020701", // 𠜁
+ 0x20702: "\x12\x06\U00020702", // 𠜂
+ 0x20703: "\x12\x06\U00020703", // 𠜃
+ 0x20704: "\x12\x06\U00020704", // 𠜄
+ 0x20705: "\x12\x06\U00020705", // 𠜅
+ 0x20706: "\x12\x06\U00020706", // 𠜆
+ 0x20707: "\x12\x06\U00020707", // 𠜇
+ 0x20708: "\x12\x06\U00020708", // 𠜈
+ 0x20709: "\x12\x06\U00020709", // 𠜉
+ 0x2070a: "\x12\x06\U0002070a", // 𠜊
+ 0x2070b: "\x12\x06\U0002070b", // 𠜋
+ 0x2070c: "\x12\x06\U0002070c", // 𠜌
+ 0x2070d: "\x12\x06\U0002070d", // 𠜍
+ 0x2070e: "\x12\x06\U0002070e", // 𠜎
+ 0x2070f: "\x12\x06\U0002070f", // 𠜏
+ 0x20710: "\x12\a\U00020710", // 𠜐
+ 0x20711: "\x12\a\U00020711", // 𠜑
+ 0x20712: "\x12\a\U00020712", // 𠜒
+ 0x20713: "\x12\a\U00020713", // 𠜓
+ 0x20714: "\x12\a\U00020714", // 𠜔
+ 0x20715: "\x12\a\U00020715", // 𠜕
+ 0x20716: "\x12\a\U00020716", // 𠜖
+ 0x20717: "\x12\a\U00020717", // 𠜗
+ 0x20718: "\x12\a\U00020718", // 𠜘
+ 0x20719: "\x12\a\U00020719", // 𠜙
+ 0x2071a: "\x12\a\U0002071a", // 𠜚
+ 0x2071b: "\x12\a\U0002071b", // 𠜛
+ 0x2071c: "\x12\a\U0002071c", // 𠜜
+ 0x2071d: "\x12\a\U0002071d", // 𠜝
+ 0x2071e: "\x12\a\U0002071e", // 𠜞
+ 0x2071f: "\x12\a\U0002071f", // 𠜟
+ 0x20720: "\x12\a\U00020720", // 𠜠
+ 0x20721: "\x12\a\U00020721", // 𠜡
+ 0x20722: "\x12\a\U00020722", // 𠜢
+ 0x20723: "\x12\a\U00020723", // 𠜣
+ 0x20724: "\x12\a\U00020724", // 𠜤
+ 0x20725: "\x12\a\U00020725", // 𠜥
+ 0x20726: "\x12\a\U00020726", // 𠜦
+ 0x20727: "\x12\a\U00020727", // 𠜧
+ 0x20728: "\x12\a\U00020728", // 𠜨
+ 0x20729: "\x12\a\U00020729", // 𠜩
+ 0x2072a: "\x12\a\U0002072a", // 𠜪
+ 0x2072b: "\x12\a\U0002072b", // 𠜫
+ 0x2072c: "\x12\a\U0002072c", // 𠜬
+ 0x2072d: "\x12\a\U0002072d", // 𠜭
+ 0x2072e: "\x12\a\U0002072e", // 𠜮
+ 0x2072f: "\x12\a\U0002072f", // 𠜯
+ 0x20730: "\x12\a\U00020730", // 𠜰
+ 0x20731: "\x12\b\U00020731", // 𠜱
+ 0x20732: "\x12\b\U00020732", // 𠜲
+ 0x20733: "\x12\b\U00020733", // 𠜳
+ 0x20734: "\x12\b\U00020734", // 𠜴
+ 0x20735: "\x12\b\U00020735", // 𠜵
+ 0x20736: "\x12\b\U00020736", // 𠜶
+ 0x20737: "\x12\b\U00020737", // 𠜷
+ 0x20738: "\x12\b\U00020738", // 𠜸
+ 0x20739: "\x12\b\U00020739", // 𠜹
+ 0x2073a: "\x12\b\U0002073a", // 𠜺
+ 0x2073b: "\x12\b\U0002073b", // 𠜻
+ 0x2073c: "\x12\b\U0002073c", // 𠜼
+ 0x2073d: "\x12\b\U0002073d", // 𠜽
+ 0x2073e: "\x12\b\U0002073e", // 𠜾
+ 0x2073f: "\x12\b\U0002073f", // 𠜿
+ 0x20740: "\x12\b\U00020740", // 𠝀
+ 0x20741: "\x12\b\U00020741", // 𠝁
+ 0x20742: "\x12\b\U00020742", // 𠝂
+ 0x20743: "\x12\b\U00020743", // 𠝃
+ 0x20744: "\x12\b\U00020744", // 𠝄
+ 0x20745: "\x12\b\U00020745", // 𠝅
+ 0x20746: "\x12\b\U00020746", // 𠝆
+ 0x20747: "\x12\b\U00020747", // 𠝇
+ 0x20748: "\x12\b\U00020748", // 𠝈
+ 0x20749: "\x12\b\U00020749", // 𠝉
+ 0x2074a: "\x12\b\U0002074a", // 𠝊
+ 0x2074b: "\x12\b\U0002074b", // 𠝋
+ 0x2074c: "\x12\b\U0002074c", // 𠝌
+ 0x2074d: "\x12\b\U0002074d", // 𠝍
+ 0x2074e: "\x12\b\U0002074e", // 𠝎
+ 0x2074f: "\x12\b\U0002074f", // 𠝏
+ 0x20750: "\x12\b\U00020750", // 𠝐
+ 0x20751: "\x12\b\U00020751", // 𠝑
+ 0x20752: "\x12\b\U00020752", // 𠝒
+ 0x20753: "\x12\b\U00020753", // 𠝓
+ 0x20754: "\x12\b\U00020754", // 𠝔
+ 0x20755: "\x12\b\U00020755", // 𠝕
+ 0x20756: "\x12\b\U00020756", // 𠝖
+ 0x20757: "\x12\b\U00020757", // 𠝗
+ 0x20758: "\x12\b\U00020758", // 𠝘
+ 0x20759: "\x12\b\U00020759", // 𠝙
+ 0x2075a: "\x12\b\U0002075a", // 𠝚
+ 0x2075b: "\x12\b\U0002075b", // 𠝛
+ 0x2075c: "\x12\b\U0002075c", // 𠝜
+ 0x2075d: "\x12\t\U0002075d", // 𠝝
+ 0x2075e: "\x12\t\U0002075e", // 𠝞
+ 0x2075f: "\x12\t\U0002075f", // 𠝟
+ 0x20760: "\x12\t\U00020760", // 𠝠
+ 0x20761: "\x12\t\U00020761", // 𠝡
+ 0x20762: "\x12\t\U00020762", // 𠝢
+ 0x20763: "\x12\t\U00020763", // 𠝣
+ 0x20764: "\x12\t\U00020764", // 𠝤
+ 0x20765: "\x12\t\U00020765", // 𠝥
+ 0x20766: "\x12\t\U00020766", // 𠝦
+ 0x20767: "\x12\t\U00020767", // 𠝧
+ 0x20768: "\x12\t\U00020768", // 𠝨
+ 0x20769: "\x12\t\U00020769", // 𠝩
+ 0x2076a: "\x12\t\U0002076a", // 𠝪
+ 0x2076b: "\x12\t\U0002076b", // 𠝫
+ 0x2076c: "\x12\t\U0002076c", // 𠝬
+ 0x2076d: "\x12\t\U0002076d", // 𠝭
+ 0x2076e: "\x12\t\U0002076e", // 𠝮
+ 0x2076f: "\x12\t\U0002076f", // 𠝯
+ 0x20770: "\x12\t\U00020770", // 𠝰
+ 0x20771: "\x12\t\U00020771", // 𠝱
+ 0x20772: "\x12\t\U00020772", // 𠝲
+ 0x20773: "\x12\t\U00020773", // 𠝳
+ 0x20774: "\x12\t\U00020774", // 𠝴
+ 0x20775: "\x12\t\U00020775", // 𠝵
+ 0x20776: "\x12\b\U00020776", // 𠝶
+ 0x20777: "\x12\t\U00020777", // 𠝷
+ 0x20778: "\x12\t\U00020778", // 𠝸
+ 0x20779: "\x12\t\U00020779", // 𠝹
+ 0x2077a: "\x12\t\U0002077a", // 𠝺
+ 0x2077b: "\x12\t\U0002077b", // 𠝻
+ 0x2077c: "\x12\t\U0002077c", // 𠝼
+ 0x2077d: "\x12\t\U0002077d", // 𠝽
+ 0x2077e: "\x12\t\U0002077e", // 𠝾
+ 0x2077f: "\x12\n\U0002077f", // 𠝿
+ 0x20780: "\x12\n\U00020780", // 𠞀
+ 0x20781: "\x12\n\U00020781", // 𠞁
+ 0x20782: "\x12\n\U00020782", // 𠞂
+ 0x20783: "\x12\n\U00020783", // 𠞃
+ 0x20784: "\x12\n\U00020784", // 𠞄
+ 0x20785: "\x12\n\U00020785", // 𠞅
+ 0x20786: "\x12\n\U00020786", // 𠞆
+ 0x20787: "\x12\n\U00020787", // 𠞇
+ 0x20788: "\x12\n\U00020788", // 𠞈
+ 0x20789: "\x12\n\U00020789", // 𠞉
+ 0x2078a: "\x12\n\U0002078a", // 𠞊
+ 0x2078b: "\x12\n\U0002078b", // 𠞋
+ 0x2078c: "\x12\n\U0002078c", // 𠞌
+ 0x2078d: "\x12\n\U0002078d", // 𠞍
+ 0x2078e: "\x12\n\U0002078e", // 𠞎
+ 0x2078f: "\x12\n\U0002078f", // 𠞏
+ 0x20790: "\x12\n\U00020790", // 𠞐
+ 0x20791: "\x12\n\U00020791", // 𠞑
+ 0x20792: "\x12\n\U00020792", // 𠞒
+ 0x20793: "\x12\n\U00020793", // 𠞓
+ 0x20794: "\x12\n\U00020794", // 𠞔
+ 0x20795: "\x12\n\U00020795", // 𠞕
+ 0x20796: "\x12\n\U00020796", // 𠞖
+ 0x20797: "\x12\n\U00020797", // 𠞗
+ 0x20798: "\x12\n\U00020798", // 𠞘
+ 0x20799: "\x12\n\U00020799", // 𠞙
+ 0x2079a: "\x12\n\U0002079a", // 𠞚
+ 0x2079b: "\x12\n\U0002079b", // 𠞛
+ 0x2079c: "s\a\U0002079c", // 𠞜
+ 0x2079d: "\x12\n\U0002079d", // 𠞝
+ 0x2079e: "\x12\n\U0002079e", // 𠞞
+ 0x2079f: "\x12\n\U0002079f", // 𠞟
+ 0x207a0: "\x12\n\U000207a0", // 𠞠
+ 0x207a1: "\x12\n\U000207a1", // 𠞡
+ 0x207a2: "\x12\n\U000207a2", // 𠞢
+ 0x207a3: "\x12\n\U000207a3", // 𠞣
+ 0x207a4: "\x12\n\U000207a4", // 𠞤
+ 0x207a5: "\x12\v\U000207a5", // 𠞥
+ 0x207a6: "\x12\v\U000207a6", // 𠞦
+ 0x207a7: "\x12\v\U000207a7", // 𠞧
+ 0x207a8: "\x12\v\U000207a8", // 𠞨
+ 0x207a9: "\x12\v\U000207a9", // 𠞩
+ 0x207aa: "\x12\v\U000207aa", // 𠞪
+ 0x207ab: "\x12\v\U000207ab", // 𠞫
+ 0x207ac: "\x12\v\U000207ac", // 𠞬
+ 0x207ad: "\x12\v\U000207ad", // 𠞭
+ 0x207ae: "\x12\v\U000207ae", // 𠞮
+ 0x207af: "\x12\v\U000207af", // 𠞯
+ 0x207b0: "\x12\v\U000207b0", // 𠞰
+ 0x207b1: "\x12\v\U000207b1", // 𠞱
+ 0x207b2: "\x12\v\U000207b2", // 𠞲
+ 0x207b3: "\x12\v\U000207b3", // 𠞳
+ 0x207b4: "\x12\v\U000207b4", // 𠞴
+ 0x207b5: "\x12\v\U000207b5", // 𠞵
+ 0x207b6: "\x12\v\U000207b6", // 𠞶
+ 0x207b7: "\x12\v\U000207b7", // 𠞷
+ 0x207b8: "\x12\v\U000207b8", // 𠞸
+ 0x207b9: "\x12\v\U000207b9", // 𠞹
+ 0x207ba: "\x12\v\U000207ba", // 𠞺
+ 0x207bb: "\x12\v\U000207bb", // 𠞻
+ 0x207bc: "\x12\v\U000207bc", // 𠞼
+ 0x207bd: "\x12\v\U000207bd", // 𠞽
+ 0x207be: "\x12\v\U000207be", // 𠞾
+ 0x207bf: "\x12\v\U000207bf", // 𠞿
+ 0x207c0: "\x12\v\U000207c0", // 𠟀
+ 0x207c1: "\x12\v\U000207c1", // 𠟁
+ 0x207c2: "\x12\f\U000207c2", // 𠟂
+ 0x207c3: "\x12\f\U000207c3", // 𠟃
+ 0x207c4: "\x12\f\U000207c4", // 𠟄
+ 0x207c5: "\x12\f\U000207c5", // 𠟅
+ 0x207c6: "\x12\f\U000207c6", // 𠟆
+ 0x207c7: "\x12\f\U000207c7", // 𠟇
+ 0x207c8: "\x12\f\U000207c8", // 𠟈
+ 0x207c9: "\x12\f\U000207c9", // 𠟉
+ 0x207ca: "\x12\f\U000207ca", // 𠟊
+ 0x207cb: "\x12\f\U000207cb", // 𠟋
+ 0x207cc: "\x12\f\U000207cc", // 𠟌
+ 0x207cd: "\x12\f\U000207cd", // 𠟍
+ 0x207ce: "\x12\f\U000207ce", // 𠟎
+ 0x207cf: "\x12\f\U000207cf", // 𠟏
+ 0x207d0: "\x12\f\U000207d0", // 𠟐
+ 0x207d1: "\x12\f\U000207d1", // 𠟑
+ 0x207d2: "\x12\f\U000207d2", // 𠟒
+ 0x207d3: "\x12\f\U000207d3", // 𠟓
+ 0x207d4: "\x12\f\U000207d4", // 𠟔
+ 0x207d5: "\x12\f\U000207d5", // 𠟕
+ 0x207d6: "\x12\f\U000207d6", // 𠟖
+ 0x207d7: "\x12\f\U000207d7", // 𠟗
+ 0x207d8: "\x12\f\U000207d8", // 𠟘
+ 0x207d9: "\x12\f\U000207d9", // 𠟙
+ 0x207da: "\x12\f\U000207da", // 𠟚
+ 0x207db: "\x12\f\U000207db", // 𠟛
+ 0x207dc: "\x12\f\U000207dc", // 𠟜
+ 0x207dd: "\x12\f\U000207dd", // 𠟝
+ 0x207de: "\x12\f\U000207de", // 𠟞
+ 0x207df: "\x12\f\U000207df", // 𠟟
+ 0x207e0: "\x12\r\U000207e0", // 𠟠
+ 0x207e1: "\x12\f\U000207e1", // 𠟡
+ 0x207e2: "\x12\f\U000207e2", // 𠟢
+ 0x207e3: "\x12\f\U000207e3", // 𠟣
+ 0x207e4: "\x12\f\U000207e4", // 𠟤
+ 0x207e5: "\x12\f\U000207e5", // 𠟥
+ 0x207e6: "\x12\r\U000207e6", // 𠟦
+ 0x207e7: "\x12\r\U000207e7", // 𠟧
+ 0x207e8: "\x12\r\U000207e8", // 𠟨
+ 0x207e9: "\x12\r\U000207e9", // 𠟩
+ 0x207ea: "\x12\r\U000207ea", // 𠟪
+ 0x207eb: "\x12\r\U000207eb", // 𠟫
+ 0x207ec: "\x12\r\U000207ec", // 𠟬
+ 0x207ed: "\x12\r\U000207ed", // 𠟭
+ 0x207ee: "\x12\r\U000207ee", // 𠟮
+ 0x207ef: "\x12\r\U000207ef", // 𠟯
+ 0x207f0: "\x12\r\U000207f0", // 𠟰
+ 0x207f1: "\x12\r\U000207f1", // 𠟱
+ 0x207f2: "\x12\r\U000207f2", // 𠟲
+ 0x207f3: "\x12\r\U000207f3", // 𠟳
+ 0x207f4: "\x12\r\U000207f4", // 𠟴
+ 0x207f5: "\x12\r\U000207f5", // 𠟵
+ 0x207f6: "\x12\r\U000207f6", // 𠟶
+ 0x207f7: "\x12\r\U000207f7", // 𠟷
+ 0x207f8: "\x12\r\U000207f8", // 𠟸
+ 0x207f9: "\x12\r\U000207f9", // 𠟹
+ 0x207fa: "\x12\x0e\U000207fa", // 𠟺
+ 0x207fb: "\x12\x0e\U000207fb", // 𠟻
+ 0x207fc: "\x12\x0e\U000207fc", // 𠟼
+ 0x207fd: "\x12\x0e\U000207fd", // 𠟽
+ 0x207fe: "\x12\x0e\U000207fe", // 𠟾
+ 0x207ff: "\x12\x0e\U000207ff", // 𠟿
+ 0x20800: "\x12\x0e\U00020800", // 𠠀
+ 0x20801: "\x12\x0e\U00020801", // 𠠁
+ 0x20802: "\x12\x0e\U00020802", // 𠠂
+ 0x20803: "\x12\x0e\U00020803", // 𠠃
+ 0x20804: "\x12\x0e\U00020804", // 𠠄
+ 0x20805: "\x12\x0e\U00020805", // 𠠅
+ 0x20806: "\x12\x0e\U00020806", // 𠠆
+ 0x20807: "\x12\x0e\U00020807", // 𠠇
+ 0x20808: "\x12\x0e\U00020808", // 𠠈
+ 0x20809: "\x12\x0e\U00020809", // 𠠉
+ 0x2080a: "\x12\x0e\U0002080a", // 𠠊
+ 0x2080b: "\x9a\t\U0002080b", // 𠠋
+ 0x2080c: "\x12\x0f\U0002080c", // 𠠌
+ 0x2080d: "\x12\x0f\U0002080d", // 𠠍
+ 0x2080e: "\x12\x0f\U0002080e", // 𠠎
+ 0x2080f: "\x12\x0f\U0002080f", // 𠠏
+ 0x20810: "\x12\x0f\U00020810", // 𠠐
+ 0x20811: "\x12\x0f\U00020811", // 𠠑
+ 0x20812: "\x12\x0f\U00020812", // 𠠒
+ 0x20813: "\x12\x0f\U00020813", // 𠠓
+ 0x20814: "\x12\x0f\U00020814", // 𠠔
+ 0x20815: "\x12\x0f\U00020815", // 𠠕
+ 0x20816: "\x12\x0f\U00020816", // 𠠖
+ 0x20817: "\x12\x0f\U00020817", // 𠠗
+ 0x20818: "\x12\x0f\U00020818", // 𠠘
+ 0x20819: "\x12\x0f\U00020819", // 𠠙
+ 0x2081a: "\x12\x0f\U0002081a", // 𠠚
+ 0x2081b: "\x12\x10\U0002081b", // 𠠛
+ 0x2081c: "\x12\x10\U0002081c", // 𠠜
+ 0x2081d: "\x12\x10\U0002081d", // 𠠝
+ 0x2081e: "\x12\x10\U0002081e", // 𠠞
+ 0x2081f: "\x12\x10\U0002081f", // 𠠟
+ 0x20820: "\x12\x10\U00020820", // 𠠠
+ 0x20821: "\x12\x11\U00020821", // 𠠡
+ 0x20822: "\x12\x11\U00020822", // 𠠢
+ 0x20823: "\x12\x11\U00020823", // 𠠣
+ 0x20824: "\x12\x12\U00020824", // 𠠤
+ 0x20825: "\x12\x13\U00020825", // 𠠥
+ 0x20826: "\x12\x12\U00020826", // 𠠦
+ 0x20827: "\x12\x12\U00020827", // 𠠧
+ 0x20828: "\x12\x12\U00020828", // 𠠨
+ 0x20829: "\x12\x12\U00020829", // 𠠩
+ 0x2082a: "\x12\x13\U0002082a", // 𠠪
+ 0x2082b: "\x12\x13\U0002082b", // 𠠫
+ 0x2082c: "\x12\x13\U0002082c", // 𠠬
+ 0x2082d: "\x12\x13\U0002082d", // 𠠭
+ 0x2082e: "\x12\x15\U0002082e", // 𠠮
+ 0x2082f: "\x12\x16\U0002082f", // 𠠯
+ 0x20830: "\x12\x18\U00020830", // 𠠰
+ 0x20831: "\x12\x18\U00020831", // 𠠱
+ 0x20832: "\x13\x01\U00020832", // 𠠲
+ 0x20833: "\x13\x02\U00020833", // 𠠳
+ 0x20834: "\x13\x02\U00020834", // 𠠴
+ 0x20835: "\x13\x02\U00020835", // 𠠵
+ 0x20836: "\x13\x03\U00020836", // 𠠶
+ 0x20837: "\x13\x03\U00020837", // 𠠷
+ 0x20838: "\x13\x03\U00020838", // 𠠸
+ 0x20839: "\x13\x04\U00020839", // 𠠹
+ 0x2083a: "\x13\x04\U0002083a", // 𠠺
+ 0x2083b: "\x13\x04\U0002083b", // 𠠻
+ 0x2083c: "\x13\x04\U0002083c", // 𠠼
+ 0x2083d: "\x13\x04\U0002083d", // 𠠽
+ 0x2083e: "\x13\x04\U0002083e", // 𠠾
+ 0x2083f: "\x13\x04\U0002083f", // 𠠿
+ 0x20840: "\x13\x04\U00020840", // 𠡀
+ 0x20841: "\x13\x04\U00020841", // 𠡁
+ 0x20842: "\x13\x05\U00020842", // 𠡂
+ 0x20843: "\x13\x05\U00020843", // 𠡃
+ 0x20844: "\x13\x05\U00020844", // 𠡄
+ 0x20845: "\x13\x05\U00020845", // 𠡅
+ 0x20846: "\x13\x05\U00020846", // 𠡆
+ 0x20847: "\x13\x05\U00020847", // 𠡇
+ 0x20848: "\x13\x05\U00020848", // 𠡈
+ 0x20849: "\x13\x05\U00020849", // 𠡉
+ 0x2084a: "\x13\x05\U0002084a", // 𠡊
+ 0x2084b: "\x13\x05\U0002084b", // 𠡋
+ 0x2084c: "\x13\x05\U0002084c", // 𠡌
+ 0x2084d: "\x13\x05\U0002084d", // 𠡍
+ 0x2084e: "\x13\x05\U0002084e", // 𠡎
+ 0x2084f: "\x13\x05\U0002084f", // 𠡏
+ 0x20850: "\x13\x05\U00020850", // 𠡐
+ 0x20851: "\x13\x06\U00020851", // 𠡑
+ 0x20852: "\x13\x06\U00020852", // 𠡒
+ 0x20853: "\x13\x06\U00020853", // 𠡓
+ 0x20854: "\x13\x06\U00020854", // 𠡔
+ 0x20855: "\x13\x06\U00020855", // 𠡕
+ 0x20856: "\x13\x06\U00020856", // 𠡖
+ 0x20857: "\x13\x06\U00020857", // 𠡗
+ 0x20858: "\x13\x06\U00020858", // 𠡘
+ 0x20859: "\x13\x06\U00020859", // 𠡙
+ 0x2085a: "\x13\x06\U0002085a", // 𠡚
+ 0x2085b: "\x13\x06\U0002085b", // 𠡛
+ 0x2085c: "\x13\x06\U0002085c", // 𠡜
+ 0x2085d: "\x13\x06\U0002085d", // 𠡝
+ 0x2085e: "\x13\a\U0002085e", // 𠡞
+ 0x2085f: "\x13\a\U0002085f", // 𠡟
+ 0x20860: "\x13\a\U00020860", // 𠡠
+ 0x20861: "\x13\a\U00020861", // 𠡡
+ 0x20862: "\x13\a\U00020862", // 𠡢
+ 0x20863: "\x13\a\U00020863", // 𠡣
+ 0x20864: "\x13\a\U00020864", // 𠡤
+ 0x20865: "\x13\a\U00020865", // 𠡥
+ 0x20866: "\x13\a\U00020866", // 𠡦
+ 0x20867: "\x13\a\U00020867", // 𠡧
+ 0x20868: "\x13\a\U00020868", // 𠡨
+ 0x20869: "\x13\a\U00020869", // 𠡩
+ 0x2086a: "\x13\a\U0002086a", // 𠡪
+ 0x2086b: "\x13\b\U0002086b", // 𠡫
+ 0x2086c: "\x13\b\U0002086c", // 𠡬
+ 0x2086d: "\x13\b\U0002086d", // 𠡭
+ 0x2086e: "\x13\b\U0002086e", // 𠡮
+ 0x2086f: "\x13\b\U0002086f", // 𠡯
+ 0x20870: "\x13\b\U00020870", // 𠡰
+ 0x20871: "\x13\b\U00020871", // 𠡱
+ 0x20872: "\x13\b\U00020872", // 𠡲
+ 0x20873: "\x13\b\U00020873", // 𠡳
+ 0x20874: "\x13\b\U00020874", // 𠡴
+ 0x20875: "\x13\b\U00020875", // 𠡵
+ 0x20876: "\x13\b\U00020876", // 𠡶
+ 0x20877: "\x13\b\U00020877", // 𠡷
+ 0x20878: "\x13\b\U00020878", // 𠡸
+ 0x20879: "\x13\b\U00020879", // 𠡹
+ 0x2087a: "\x13\b\U0002087a", // 𠡺
+ 0x2087b: "\x13\t\U0002087b", // 𠡻
+ 0x2087c: "\x13\t\U0002087c", // 𠡼
+ 0x2087d: "\x13\t\U0002087d", // 𠡽
+ 0x2087e: "\x13\t\U0002087e", // 𠡾
+ 0x2087f: "\x13\t\U0002087f", // 𠡿
+ 0x20880: "\x13\t\U00020880", // 𠢀
+ 0x20881: "\x13\t\U00020881", // 𠢁
+ 0x20882: "\x13\t\U00020882", // 𠢂
+ 0x20883: "\x13\t\U00020883", // 𠢃
+ 0x20884: "\x13\t\U00020884", // 𠢄
+ 0x20885: "\x13\n\U00020885", // 𠢅
+ 0x20886: "\x13\n\U00020886", // 𠢆
+ 0x20887: "\x13\n\U00020887", // 𠢇
+ 0x20888: "\x13\n\U00020888", // 𠢈
+ 0x20889: "\x13\n\U00020889", // 𠢉
+ 0x2088a: "\x13\n\U0002088a", // 𠢊
+ 0x2088b: "\x13\n\U0002088b", // 𠢋
+ 0x2088c: "\x13\n\U0002088c", // 𠢌
+ 0x2088d: "\x13\n\U0002088d", // 𠢍
+ 0x2088e: "\x13\n\U0002088e", // 𠢎
+ 0x2088f: "\x13\n\U0002088f", // 𠢏
+ 0x20890: "\x13\n\U00020890", // 𠢐
+ 0x20891: "\x13\n\U00020891", // 𠢑
+ 0x20892: "\x13\n\U00020892", // 𠢒
+ 0x20893: "\x13\v\U00020893", // 𠢓
+ 0x20894: "\x13\v\U00020894", // 𠢔
+ 0x20895: "\x13\v\U00020895", // 𠢕
+ 0x20896: "\x13\v\U00020896", // 𠢖
+ 0x20897: "\x13\v\U00020897", // 𠢗
+ 0x20898: "\x13\v\U00020898", // 𠢘
+ 0x20899: "\x13\v\U00020899", // 𠢙
+ 0x2089a: "\x13\v\U0002089a", // 𠢚
+ 0x2089b: "\x13\v\U0002089b", // 𠢛
+ 0x2089c: "\x13\v\U0002089c", // 𠢜
+ 0x2089d: "\x13\v\U0002089d", // 𠢝
+ 0x2089e: "\x13\v\U0002089e", // 𠢞
+ 0x2089f: "\x13\v\U0002089f", // 𠢟
+ 0x208a0: "\x13\f\U000208a0", // 𠢠
+ 0x208a1: "\x13\f\U000208a1", // 𠢡
+ 0x208a2: "\x13\f\U000208a2", // 𠢢
+ 0x208a3: "\x13\f\U000208a3", // 𠢣
+ 0x208a4: "\x13\f\U000208a4", // 𠢤
+ 0x208a5: "\x13\f\U000208a5", // 𠢥
+ 0x208a6: "\x13\f\U000208a6", // 𠢦
+ 0x208a7: "\x13\f\U000208a7", // 𠢧
+ 0x208a8: "\x13\f\U000208a8", // 𠢨
+ 0x208a9: "\x13\f\U000208a9", // 𠢩
+ 0x208aa: "\x13\f\U000208aa", // 𠢪
+ 0x208ab: "\x13\f\U000208ab", // 𠢫
+ 0x208ac: "\x13\f\U000208ac", // 𠢬
+ 0x208ad: "\x13\f\U000208ad", // 𠢭
+ 0x208ae: "\x13\f\U000208ae", // 𠢮
+ 0x208af: "\x13\f\U000208af", // 𠢯
+ 0x208b0: "\x13\r\U000208b0", // 𠢰
+ 0x208b1: "\x13\r\U000208b1", // 𠢱
+ 0x208b2: "\x13\r\U000208b2", // 𠢲
+ 0x208b3: "\x13\r\U000208b3", // 𠢳
+ 0x208b4: "\x13\r\U000208b4", // 𠢴
+ 0x208b5: "\x13\r\U000208b5", // 𠢵
+ 0x208b6: "\x13\x0e\U000208b6", // 𠢶
+ 0x208b7: "\x13\x0e\U000208b7", // 𠢷
+ 0x208b8: "\x13\x0e\U000208b8", // 𠢸
+ 0x208b9: "\x13\x0f\U000208b9", // 𠢹
+ 0x208ba: "\x13\x0f\U000208ba", // 𠢺
+ 0x208bb: "\x13\x0f\U000208bb", // 𠢻
+ 0x208bc: "\x13\x0f\U000208bc", // 𠢼
+ 0x208bd: "\x13\x0f\U000208bd", // 𠢽
+ 0x208be: "\x13\x0f\U000208be", // 𠢾
+ 0x208bf: "\x13\x0f\U000208bf", // 𠢿
+ 0x208c0: "\x13\x10\U000208c0", // 𠣀
+ 0x208c1: "\x13\x10\U000208c1", // 𠣁
+ 0x208c2: "\x13\x10\U000208c2", // 𠣂
+ 0x208c3: "\x13\x10\U000208c3", // 𠣃
+ 0x208c4: "\x13\x11\U000208c4", // 𠣄
+ 0x208c5: "\x13\x11\U000208c5", // 𠣅
+ 0x208c6: "\x13\x12\U000208c6", // 𠣆
+ 0x208c7: "\x13\x13\U000208c7", // 𠣇
+ 0x208c8: "\x13\x15\U000208c8", // 𠣈
+ 0x208c9: "\x13\x15\U000208c9", // 𠣉
+ 0x208ca: "\x13\x17\U000208ca", // 𠣊
+ 0x208cb: "\x13 \U000208cb", // 𠣋
+ 0x208cc: "\x14\x02\U000208cc", // 𠣌
+ 0x208cd: "\x14\x03\U000208cd", // 𠣍
+ 0x208ce: "\x14\x03\U000208ce", // 𠣎
+ 0x208cf: "\x14\x03\U000208cf", // 𠣏
+ 0x208d0: "\x14\x03\U000208d0", // 𠣐
+ 0x208d1: "\x14\x04\U000208d1", // 𠣑
+ 0x208d2: "\x14\x04\U000208d2", // 𠣒
+ 0x208d3: "\x14\x04\U000208d3", // 𠣓
+ 0x208d4: "\x14\x05\U000208d4", // 𠣔
+ 0x208d5: "\x14\x05\U000208d5", // 𠣕
+ 0x208d6: "\x14\x05\U000208d6", // 𠣖
+ 0x208d7: "\x14\x05\U000208d7", // 𠣗
+ 0x208d8: "\x14\x06\U000208d8", // 𠣘
+ 0x208d9: "\x14\x06\U000208d9", // 𠣙
+ 0x208da: "\x14\x06\U000208da", // 𠣚
+ 0x208db: "\x14\x06\U000208db", // 𠣛
+ 0x208dc: "\x14\x06\U000208dc", // 𠣜
+ 0x208dd: "\x14\x06\U000208dd", // 𠣝
+ 0x208de: "\x14\a\U000208de", // 𠣞
+ 0x208df: "\x14\a\U000208df", // 𠣟
+ 0x208e0: "\x14\a\U000208e0", // 𠣠
+ 0x208e1: "\x14\a\U000208e1", // 𠣡
+ 0x208e2: "\x14\a\U000208e2", // 𠣢
+ 0x208e3: "\x14\a\U000208e3", // 𠣣
+ 0x208e4: "\x14\b\U000208e4", // 𠣤
+ 0x208e5: "\x14\b\U000208e5", // 𠣥
+ 0x208e6: "\x14\b\U000208e6", // 𠣦
+ 0x208e7: "\x14\b\U000208e7", // 𠣧
+ 0x208e8: "\x14\b\U000208e8", // 𠣨
+ 0x208e9: "\x14\b\U000208e9", // 𠣩
+ 0x208ea: "\x14\b\U000208ea", // 𠣪
+ 0x208eb: "\x14\b\U000208eb", // 𠣫
+ 0x208ec: "\x14\b\U000208ec", // 𠣬
+ 0x208ed: "\x14\b\U000208ed", // 𠣭
+ 0x208ee: "\x14\t\U000208ee", // 𠣮
+ 0x208ef: "\x14\t\U000208ef", // 𠣯
+ 0x208f0: "\x14\t\U000208f0", // 𠣰
+ 0x208f1: "\x14\t\U000208f1", // 𠣱
+ 0x208f2: "\x14\t\U000208f2", // 𠣲
+ 0x208f3: "\x14\t\U000208f3", // 𠣳
+ 0x208f4: "\x14\t\U000208f4", // 𠣴
+ 0x208f5: "\x14\n\U000208f5", // 𠣵
+ 0x208f6: "\x14\n\U000208f6", // 𠣶
+ 0x208f7: "\x14\n\U000208f7", // 𠣷
+ 0x208f8: "\x14\v\U000208f8", // 𠣸
+ 0x208f9: "\x14\v\U000208f9", // 𠣹
+ 0x208fa: "\x14\v\U000208fa", // 𠣺
+ 0x208fb: "\x14\v\U000208fb", // 𠣻
+ 0x208fc: "\x14\v\U000208fc", // 𠣼
+ 0x208fd: "\x14\f\U000208fd", // 𠣽
+ 0x208fe: "\x14\f\U000208fe", // 𠣾
+ 0x208ff: "\x14\f\U000208ff", // 𠣿
+ 0x20900: "\x14\f\U00020900", // 𠤀
+ 0x20901: "\x14\f\U00020901", // 𠤁
+ 0x20902: "\x14\f\U00020902", // 𠤂
+ 0x20903: "\x14\r\U00020903", // 𠤃
+ 0x20904: "\x14\x0e\U00020904", // 𠤄
+ 0x20905: "\x14\x0e\U00020905", // 𠤅
+ 0x20906: "\x14\x0e\U00020906", // 𠤆
+ 0x20907: "\x14\x0e\U00020907", // 𠤇
+ 0x20908: "\x14\x0f\U00020908", // 𠤈
+ 0x20909: "\x14\x0f\U00020909", // 𠤉
+ 0x2090a: "\x14\x0f\U0002090a", // 𠤊
+ 0x2090b: "\x14\x12\U0002090b", // 𠤋
+ 0x2090c: "\x14\x12\U0002090c", // 𠤌
+ 0x2090d: "\x14\x12\U0002090d", // 𠤍
+ 0x2090e: "\x15\x00\U0002090e", // 𠤎
+ 0x2090f: "\x15\x02\U0002090f", // 𠤏
+ 0x20910: "\x15\x03\U00020910", // 𠤐
+ 0x20911: "\x15\x05\U00020911", // 𠤑
+ 0x20912: "\x15\x05\U00020912", // 𠤒
+ 0x20913: "\x15\x05\U00020913", // 𠤓
+ 0x20914: "\x15\x05\U00020914", // 𠤔
+ 0x20915: "\x15\x05\U00020915", // 𠤕
+ 0x20916: "\x15\x06\U00020916", // 𠤖
+ 0x20917: "\x15\a\U00020917", // 𠤗
+ 0x20918: "\x15\a\U00020918", // 𠤘
+ 0x20919: "\x15\a\U00020919", // 𠤙
+ 0x2091a: "\x15\a\U0002091a", // 𠤚
+ 0x2091b: "\x15\a\U0002091b", // 𠤛
+ 0x2091c: "\x15\a\U0002091c", // 𠤜
+ 0x2091d: "\x15\a\U0002091d", // 𠤝
+ 0x2091e: "\x15\b\U0002091e", // 𠤞
+ 0x2091f: "\x15\b\U0002091f", // 𠤟
+ 0x20920: "\x15\b\U00020920", // 𠤠
+ 0x20921: "\x15\b\U00020921", // 𠤡
+ 0x20922: "\x01\t\U00020922", // 𠤢
+ 0x20923: "\x15\n\U00020923", // 𠤣
+ 0x20924: "\x15\n\U00020924", // 𠤤
+ 0x20925: "\x15\v\U00020925", // 𠤥
+ 0x20926: "\x15\f\U00020926", // 𠤦
+ 0x20927: "\x15\f\U00020927", // 𠤧
+ 0x20928: "\x15\f\U00020928", // 𠤨
+ 0x20929: "\x15\x0f\U00020929", // 𠤩
+ 0x2092a: "\x15\x10\U0002092a", // 𠤪
+ 0x2092b: "\x86\r\U0002092b", // 𠤫
+ 0x2092c: "\x16\x00\U0002092c", // 𠤬
+ 0x2092d: "\x16\x02\U0002092d", // 𠤭
+ 0x2092e: "\x16\x04\U0002092e", // 𠤮
+ 0x2092f: "\x16\x04\U0002092f", // 𠤯
+ 0x20930: "\x16\x04\U00020930", // 𠤰
+ 0x20931: "\x16\x04\U00020931", // 𠤱
+ 0x20932: "\x17\x04\U00020932", // 𠤲
+ 0x20933: "\x16\x05\U00020933", // 𠤳
+ 0x20934: "\x16\x05\U00020934", // 𠤴
+ 0x20935: "\x16\x05\U00020935", // 𠤵
+ 0x20936: "\x16\x05\U00020936", // 𠤶
+ 0x20937: "\x16\x05\U00020937", // 𠤷
+ 0x20938: "\x16\x06\U00020938", // 𠤸
+ 0x20939: "\x16\x06\U00020939", // 𠤹
+ 0x2093a: "\x16\x06\U0002093a", // 𠤺
+ 0x2093b: "\x16\x06\U0002093b", // 𠤻
+ 0x2093c: "\x16\a\U0002093c", // 𠤼
+ 0x2093d: "\x16\a\U0002093d", // 𠤽
+ 0x2093e: "\x16\a\U0002093e", // 𠤾
+ 0x2093f: "\x16\a\U0002093f", // 𠤿
+ 0x20940: "\x16\a\U00020940", // 𠥀
+ 0x20941: "\x16\a\U00020941", // 𠥁
+ 0x20942: "\x16\a\U00020942", // 𠥂
+ 0x20943: "\x17\a\U00020943", // 𠥃
+ 0x20944: "\x16\a\U00020944", // 𠥄
+ 0x20945: "\x16\a\U00020945", // 𠥅
+ 0x20946: "\x16\a\U00020946", // 𠥆
+ 0x20947: "\x16\a\U00020947", // 𠥇
+ 0x20948: "\x16\a\U00020948", // 𠥈
+ 0x20949: "\x16\b\U00020949", // 𠥉
+ 0x2094a: "\x16\b\U0002094a", // 𠥊
+ 0x2094b: "\x16\b\U0002094b", // 𠥋
+ 0x2094c: "\x16\b\U0002094c", // 𠥌
+ 0x2094d: "\x16\b\U0002094d", // 𠥍
+ 0x2094e: "\x16\t\U0002094e", // 𠥎
+ 0x2094f: "\x16\t\U0002094f", // 𠥏
+ 0x20950: "\x16\n\U00020950", // 𠥐
+ 0x20951: "\x16\n\U00020951", // 𠥑
+ 0x20952: "\x16\n\U00020952", // 𠥒
+ 0x20953: "\x16\n\U00020953", // 𠥓
+ 0x20954: "\x16\n\U00020954", // 𠥔
+ 0x20955: "\x16\n\U00020955", // 𠥕
+ 0x20956: "\x16\v\U00020956", // 𠥖
+ 0x20957: "\x16\v\U00020957", // 𠥗
+ 0x20958: "\x16\v\U00020958", // 𠥘
+ 0x20959: "\x16\f\U00020959", // 𠥙
+ 0x2095a: "\x16\f\U0002095a", // 𠥚
+ 0x2095b: "\x16\f\U0002095b", // 𠥛
+ 0x2095c: "\x16\r\U0002095c", // 𠥜
+ 0x2095d: "\x16\r\U0002095d", // 𠥝
+ 0x2095e: "\x16\r\U0002095e", // 𠥞
+ 0x2095f: "\x16\r\U0002095f", // 𠥟
+ 0x20960: "\x16\r\U00020960", // 𠥠
+ 0x20961: "\x16\r\U00020961", // 𠥡
+ 0x20962: "\x16\x0e\U00020962", // 𠥢
+ 0x20963: "\x16\x0e\U00020963", // 𠥣
+ 0x20964: "\x16\x10\U00020964", // 𠥤
+ 0x20965: "\x16\x10\U00020965", // 𠥥
+ 0x20966: "\x16\x11\U00020966", // 𠥦
+ 0x20967: "\x16\x11\U00020967", // 𠥧
+ 0x20968: "\x16\x12\U00020968", // 𠥨
+ 0x20969: "\x16\x12\U00020969", // 𠥩
+ 0x2096a: "\x16\x14\U0002096a", // 𠥪
+ 0x2096b: "\x16\x18\U0002096b", // 𠥫
+ 0x2096c: "\x16\x1c\U0002096c", // 𠥬
+ 0x2096d: "\x17\x02\U0002096d", // 𠥭
+ 0x2096e: "\x17\x04\U0002096e", // 𠥮
+ 0x2096f: "\x17\x04\U0002096f", // 𠥯
+ 0x20970: "\x17\x05\U00020970", // 𠥰
+ 0x20971: "\x17\x05\U00020971", // 𠥱
+ 0x20972: "\x17\x05\U00020972", // 𠥲
+ 0x20973: "\x17\x06\U00020973", // 𠥳
+ 0x20974: "\x17\a\U00020974", // 𠥴
+ 0x20975: "\x17\a\U00020975", // 𠥵
+ 0x20976: "\x17\b\U00020976", // 𠥶
+ 0x20977: "\x17\f\U00020977", // 𠥷
+ 0x20978: "\x17\x12\U00020978", // 𠥸
+ 0x20979: "\x17\x14\U00020979", // 𠥹
+ 0x2097a: "\x17\x14\U0002097a", // 𠥺
+ 0x2097b: "\x18\x02\U0002097b", // 𠥻
+ 0x2097c: "\x18\x02\U0002097c", // 𠥼
+ 0x2097d: "\x18\x03\U0002097d", // 𠥽
+ 0x2097e: "\x18\x03\U0002097e", // 𠥾
+ 0x2097f: "\x18\x02\U0002097f", // 𠥿
+ 0x20980: "\x18\x03\U00020980", // 𠦀
+ 0x20981: "\x18\x03\U00020981", // 𠦁
+ 0x20982: "\x18\x04\U00020982", // 𠦂
+ 0x20983: "\x18\x04\U00020983", // 𠦃
+ 0x20984: "\x18\x04\U00020984", // 𠦄
+ 0x20985: "\x18\x04\U00020985", // 𠦅
+ 0x20986: "\x18\x04\U00020986", // 𠦆
+ 0x20987: "\x18\x04\U00020987", // 𠦇
+ 0x20988: "\x18\x04\U00020988", // 𠦈
+ 0x20989: "\x18\x04\U00020989", // 𠦉
+ 0x2098a: "\x18\x04\U0002098a", // 𠦊
+ 0x2098b: "\x18\x04\U0002098b", // 𠦋
+ 0x2098c: "\x18\x04\U0002098c", // 𠦌
+ 0x2098d: "\x18\x04\U0002098d", // 𠦍
+ 0x2098e: "\x18\x04\U0002098e", // 𠦎
+ 0x2098f: "\x18\x04\U0002098f", // 𠦏
+ 0x20990: "\x18\x04\U00020990", // 𠦐
+ 0x20991: "\x18\x05\U00020991", // 𠦑
+ 0x20992: "\x18\x05\U00020992", // 𠦒
+ 0x20993: "\x18\x05\U00020993", // 𠦓
+ 0x20994: "\x18\x05\U00020994", // 𠦔
+ 0x20995: "\x18\x05\U00020995", // 𠦕
+ 0x20996: "\x18\x05\U00020996", // 𠦖
+ 0x20997: "\x18\x05\U00020997", // 𠦗
+ 0x20998: "\x18\x06\U00020998", // 𠦘
+ 0x20999: "\x18\x06\U00020999", // 𠦙
+ 0x2099a: "\x18\x06\U0002099a", // 𠦚
+ 0x2099b: "\x18\x06\U0002099b", // 𠦛
+ 0x2099c: "\x18\x06\U0002099c", // 𠦜
+ 0x2099d: "\x18\x06\U0002099d", // 𠦝
+ 0x2099e: "\x18\x06\U0002099e", // 𠦞
+ 0x2099f: "\x18\x06\U0002099f", // 𠦟
+ 0x209a0: "\x18\x06\U000209a0", // 𠦠
+ 0x209a1: "\x18\x06\U000209a1", // 𠦡
+ 0x209a2: "\x18\x06\U000209a2", // 𠦢
+ 0x209a3: "\x18\b\U000209a3", // 𠦣
+ 0x209a4: "\x18\b\U000209a4", // 𠦤
+ 0x209a5: "\x18\b\U000209a5", // 𠦥
+ 0x209a6: "\x18\b\U000209a6", // 𠦦
+ 0x209a7: "\x18\b\U000209a7", // 𠦧
+ 0x209a8: "\x18\b\U000209a8", // 𠦨
+ 0x209a9: "\x18\b\U000209a9", // 𠦩
+ 0x209aa: "\x18\t\U000209aa", // 𠦪
+ 0x209ab: "\x18\t\U000209ab", // 𠦫
+ 0x209ac: "\x18\t\U000209ac", // 𠦬
+ 0x209ad: "\x18\t\U000209ad", // 𠦭
+ 0x209ae: "\x18\t\U000209ae", // 𠦮
+ 0x209af: "\x18\t\U000209af", // 𠦯
+ 0x209b0: "\x18\n\U000209b0", // 𠦰
+ 0x209b1: "\x18\n\U000209b1", // 𠦱
+ 0x209b2: "\x18\n\U000209b2", // 𠦲
+ 0x209b3: "\x18\n\U000209b3", // 𠦳
+ 0x209b4: "\x18\v\U000209b4", // 𠦴
+ 0x209b5: "\x18\v\U000209b5", // 𠦵
+ 0x209b6: "\x18\v\U000209b6", // 𠦶
+ 0x209b7: "\x18\v\U000209b7", // 𠦷
+ 0x209b8: "\x18\v\U000209b8", // 𠦸
+ 0x209b9: "\x18\v\U000209b9", // 𠦹
+ 0x209ba: "\x18\v\U000209ba", // 𠦺
+ 0x209bb: "\x18\v\U000209bb", // 𠦻
+ 0x209bc: "\x18\v\U000209bc", // 𠦼
+ 0x209bd: "\x18\f\U000209bd", // 𠦽
+ 0x209be: "\x18\f\U000209be", // 𠦾
+ 0x209bf: "\x18\f\U000209bf", // 𠦿
+ 0x209c0: "\x18\r\U000209c0", // 𠧀
+ 0x209c1: "\x18\r\U000209c1", // 𠧁
+ 0x209c2: "\x18\r\U000209c2", // 𠧂
+ 0x209c3: "\x18\r\U000209c3", // 𠧃
+ 0x209c4: "\x18\r\U000209c4", // 𠧄
+ 0x209c5: "\x18\x0f\U000209c5", // 𠧅
+ 0x209c6: "\x18\x0f\U000209c6", // 𠧆
+ 0x209c7: "\x18\x0f\U000209c7", // 𠧇
+ 0x209c8: "\x18\x0f\U000209c8", // 𠧈
+ 0x209c9: "\x18\x10\U000209c9", // 𠧉
+ 0x209ca: "\x18\x10\U000209ca", // 𠧊
+ 0x209cb: "\x18\x10\U000209cb", // 𠧋
+ 0x209cc: "\x18\x10\U000209cc", // 𠧌
+ 0x209cd: "\x18\x10\U000209cd", // 𠧍
+ 0x209ce: "\x18\x11\U000209ce", // 𠧎
+ 0x209cf: "\x18\x13\U000209cf", // 𠧏
+ 0x209d0: "\x18\x17\U000209d0", // 𠧐
+ 0x209d1: "\x18\x18\U000209d1", // 𠧑
+ 0x209d2: "\x19\x01\U000209d2", // 𠧒
+ 0x209d3: "\x19\x03\U000209d3", // 𠧓
+ 0x209d4: "\x19\x04\U000209d4", // 𠧔
+ 0x209d5: "\x19\x04\U000209d5", // 𠧕
+ 0x209d6: "\x19\x04\U000209d6", // 𠧖
+ 0x209d7: "\x19\x04\U000209d7", // 𠧗
+ 0x209d8: "\x19\x04\U000209d8", // 𠧘
+ 0x209d9: "\x19\x05\U000209d9", // 𠧙
+ 0x209da: "\x19\x05\U000209da", // 𠧚
+ 0x209db: "\x19\x05\U000209db", // 𠧛
+ 0x209dc: "\x19\x05\U000209dc", // 𠧜
+ 0x209dd: "\x05\x06\U000209dd", // 𠧝
+ 0x209de: "\x19\x06\U000209de", // 𠧞
+ 0x209df: "\x19\x06\U000209df", // 𠧟
+ 0x209e0: "\x19\x06\U000209e0", // 𠧠
+ 0x209e1: "\x19\x06\U000209e1", // 𠧡
+ 0x209e2: "\x19\x06\U000209e2", // 𠧢
+ 0x209e3: "\x19\x06\U000209e3", // 𠧣
+ 0x209e4: "\x19\x06\U000209e4", // 𠧤
+ 0x209e5: "\x19\x06\U000209e5", // 𠧥
+ 0x209e6: "\x19\x06\U000209e6", // 𠧦
+ 0x209e7: "\x19\x06\U000209e7", // 𠧧
+ 0x209e8: "\x19\x06\U000209e8", // 𠧨
+ 0x209e9: "\x19\a\U000209e9", // 𠧩
+ 0x209ea: "\x19\a\U000209ea", // 𠧪
+ 0x209eb: "\x19\a\U000209eb", // 𠧫
+ 0x209ec: "\x19\a\U000209ec", // 𠧬
+ 0x209ed: "\x19\a\U000209ed", // 𠧭
+ 0x209ee: "\x19\a\U000209ee", // 𠧮
+ 0x209ef: "\x19\a\U000209ef", // 𠧯
+ 0x209f0: "\x19\a\U000209f0", // 𠧰
+ 0x209f1: "\x19\a\U000209f1", // 𠧱
+ 0x209f2: "\x19\a\U000209f2", // 𠧲
+ 0x209f3: "\x19\b\U000209f3", // 𠧳
+ 0x209f4: "\x19\b\U000209f4", // 𠧴
+ 0x209f5: "\x19\b\U000209f5", // 𠧵
+ 0x209f6: "\x19\b\U000209f6", // 𠧶
+ 0x209f7: "\x19\b\U000209f7", // 𠧷
+ 0x209f8: "\xc5\x00\U000209f8", // 𠧸
+ 0x209f9: "\x19\b\U000209f9", // 𠧹
+ 0x209fa: "\x19\t\U000209fa", // 𠧺
+ 0x209fb: "\x19\t\U000209fb", // 𠧻
+ 0x209fc: "\x19\t\U000209fc", // 𠧼
+ 0x209fd: "\x19\t\U000209fd", // 𠧽
+ 0x209fe: "\x19\t\U000209fe", // 𠧾
+ 0x209ff: "\x19\t\U000209ff", // 𠧿
+ 0x20a00: "\x19\n\U00020a00", // 𠨀
+ 0x20a01: "\x19\n\U00020a01", // 𠨁
+ 0x20a02: "\x19\n\U00020a02", // 𠨂
+ 0x20a03: "$\t\U00020a03", // 𠨃
+ 0x20a04: "\x19\n\U00020a04", // 𠨄
+ 0x20a05: "\x19\v\U00020a05", // 𠨅
+ 0x20a06: "\x19\f\U00020a06", // 𠨆
+ 0x20a07: "\x19\f\U00020a07", // 𠨇
+ 0x20a08: "\x19\r\U00020a08", // 𠨈
+ 0x20a09: "\x19\r\U00020a09", // 𠨉
+ 0x20a0a: "\x19\r\U00020a0a", // 𠨊
+ 0x20a0b: "\x19\x19\U00020a0b", // 𠨋
+ 0x20a0c: "\x19\x1f\U00020a0c", // 𠨌
+ 0x20a0d: "\x1a\x02\U00020a0d", // 𠨍
+ 0x20a0e: "\x1a\x02\U00020a0e", // 𠨎
+ 0x20a0f: "\x1a\x02\U00020a0f", // 𠨏
+ 0x20a10: "\x1a\x02\U00020a10", // 𠨐
+ 0x20a11: "\x1a\x03\U00020a11", // 𠨑
+ 0x20a12: "\x1a\x04\U00020a12", // 𠨒
+ 0x20a13: "\x1a\x04\U00020a13", // 𠨓
+ 0x20a14: "\x1a\x04\U00020a14", // 𠨔
+ 0x20a15: "\x1a\x04\U00020a15", // 𠨕
+ 0x20a16: "\x1a\x04\U00020a16", // 𠨖
+ 0x20a17: "\x1a\x04\U00020a17", // 𠨗
+ 0x20a18: "\x1a\x05\U00020a18", // 𠨘
+ 0x20a19: "\x1a\a\U00020a19", // 𠨙
+ 0x20a1a: "\x1a\a\U00020a1a", // 𠨚
+ 0x20a1b: "\x1a\a\U00020a1b", // 𠨛
+ 0x20a1c: "\x1a\a\U00020a1c", // 𠨜
+ 0x20a1d: "\x1a\a\U00020a1d", // 𠨝
+ 0x20a1e: "\x1a\b\U00020a1e", // 𠨞
+ 0x20a1f: "\x1a\n\U00020a1f", // 𠨟
+ 0x20a20: "\x1a\n\U00020a20", // 𠨠
+ 0x20a21: "\x1a\n\U00020a21", // 𠨡
+ 0x20a22: "\x1a\v\U00020a22", // 𠨢
+ 0x20a23: "\x1a\v\U00020a23", // 𠨣
+ 0x20a24: "\x1a\v\U00020a24", // 𠨤
+ 0x20a25: "\x1a\f\U00020a25", // 𠨥
+ 0x20a26: "\x1a\x0f\U00020a26", // 𠨦
+ 0x20a27: "\x1a\x10\U00020a27", // 𠨧
+ 0x20a28: "\x1a\x10\U00020a28", // 𠨨
+ 0x20a29: "\x1a\x10\U00020a29", // 𠨩
+ 0x20a2a: "\x1a\x10\U00020a2a", // 𠨪
+ 0x20a2b: "\x1a\x18\U00020a2b", // 𠨫
+ 0x20a2c: "\x1b\x02\U00020a2c", // 𠨬
+ 0x20a2d: "\x1b\x03\U00020a2d", // 𠨭
+ 0x20a2e: "\x1b\x03\U00020a2e", // 𠨮
+ 0x20a2f: "\x1b\x03\U00020a2f", // 𠨯
+ 0x20a30: "\x1b\x03\U00020a30", // 𠨰
+ 0x20a31: "\x1b\x03\U00020a31", // 𠨱
+ 0x20a32: "\x1b\x03\U00020a32", // 𠨲
+ 0x20a33: "\x1b\x03\U00020a33", // 𠨳
+ 0x20a34: "\x1b\x04\U00020a34", // 𠨴
+ 0x20a35: "\x1b\x04\U00020a35", // 𠨵
+ 0x20a36: "\x1b\x04\U00020a36", // 𠨶
+ 0x20a37: "\x1b\x04\U00020a37", // 𠨷
+ 0x20a38: "\x1b\x04\U00020a38", // 𠨸
+ 0x20a39: "\x1b\x04\U00020a39", // 𠨹
+ 0x20a3a: "\x1b\x04\U00020a3a", // 𠨺
+ 0x20a3b: "\x1b\x04\U00020a3b", // 𠨻
+ 0x20a3c: "\x1b\x04\U00020a3c", // 𠨼
+ 0x20a3d: "\x1b\x04\U00020a3d", // 𠨽
+ 0x20a3e: "\x1b\x04\U00020a3e", // 𠨾
+ 0x20a3f: "\x1b\x04\U00020a3f", // 𠨿
+ 0x20a40: "\x1b\x05\U00020a40", // 𠩀
+ 0x20a41: "\x1b\x05\U00020a41", // 𠩁
+ 0x20a42: "\x1b\x05\U00020a42", // 𠩂
+ 0x20a43: "\x1b\x05\U00020a43", // 𠩃
+ 0x20a44: "\x1b\x05\U00020a44", // 𠩄
+ 0x20a45: "\x1b\x05\U00020a45", // 𠩅
+ 0x20a46: "\x1b\x05\U00020a46", // 𠩆
+ 0x20a47: "\x1b\x05\U00020a47", // 𠩇
+ 0x20a48: "\x1b\x05\U00020a48", // 𠩈
+ 0x20a49: "\x1b\x05\U00020a49", // 𠩉
+ 0x20a4a: "\x1b\x06\U00020a4a", // 𠩊
+ 0x20a4b: "\x1b\x06\U00020a4b", // 𠩋
+ 0x20a4c: "\x1b\x06\U00020a4c", // 𠩌
+ 0x20a4d: "\x1b\x06\U00020a4d", // 𠩍
+ 0x20a4e: "\x1b\x06\U00020a4e", // 𠩎
+ 0x20a4f: "\x1b\x06\U00020a4f", // 𠩏
+ 0x20a50: "\x1b\x06\U00020a50", // 𠩐
+ 0x20a51: "\x1b\x06\U00020a51", // 𠩑
+ 0x20a52: "\x1b\x06\U00020a52", // 𠩒
+ 0x20a53: "\x1b\x06\U00020a53", // 𠩓
+ 0x20a54: "\x1b\x06\U00020a54", // 𠩔
+ 0x20a55: "\x1b\x06\U00020a55", // 𠩕
+ 0x20a56: "\f\x06\U00020a56", // 𠩖
+ 0x20a57: "\x1b\a\U00020a57", // 𠩗
+ 0x20a58: "\x1b\a\U00020a58", // 𠩘
+ 0x20a59: "\x1b\a\U00020a59", // 𠩙
+ 0x20a5a: "\x1b\a\U00020a5a", // 𠩚
+ 0x20a5b: "\x1b\a\U00020a5b", // 𠩛
+ 0x20a5c: "\x1b\a\U00020a5c", // 𠩜
+ 0x20a5d: "\x1b\a\U00020a5d", // 𠩝
+ 0x20a5e: "\x1b\a\U00020a5e", // 𠩞
+ 0x20a5f: "\x1b\a\U00020a5f", // 𠩟
+ 0x20a60: "\x1b\a\U00020a60", // 𠩠
+ 0x20a61: "\x1b\a\U00020a61", // 𠩡
+ 0x20a62: "\x1b\a\U00020a62", // 𠩢
+ 0x20a63: "\x1b\a\U00020a63", // 𠩣
+ 0x20a64: "\x1b\a\U00020a64", // 𠩤
+ 0x20a65: "\x1b\a\U00020a65", // 𠩥
+ 0x20a66: "\x1b\a\U00020a66", // 𠩦
+ 0x20a67: "\x1b\b\U00020a67", // 𠩧
+ 0x20a68: "\x1b\b\U00020a68", // 𠩨
+ 0x20a69: "\x1b\b\U00020a69", // 𠩩
+ 0x20a6a: "\x1b\b\U00020a6a", // 𠩪
+ 0x20a6b: "\x1b\b\U00020a6b", // 𠩫
+ 0x20a6c: "\x1b\b\U00020a6c", // 𠩬
+ 0x20a6d: "\x1b\b\U00020a6d", // 𠩭
+ 0x20a6e: "\x1b\b\U00020a6e", // 𠩮
+ 0x20a6f: "\x1b\b\U00020a6f", // 𠩯
+ 0x20a70: "\x1b\b\U00020a70", // 𠩰
+ 0x20a71: "\x1b\b\U00020a71", // 𠩱
+ 0x20a72: "\x1b\b\U00020a72", // 𠩲
+ 0x20a73: "\x1b\b\U00020a73", // 𠩳
+ 0x20a74: "\x1b\b\U00020a74", // 𠩴
+ 0x20a75: "\x1b\b\U00020a75", // 𠩵
+ 0x20a76: "\x1b\b\U00020a76", // 𠩶
+ 0x20a77: "\x1b\b\U00020a77", // 𠩷
+ 0x20a78: "\x1b\t\U00020a78", // 𠩸
+ 0x20a79: "\x1b\t\U00020a79", // 𠩹
+ 0x20a7a: "\x1b\t\U00020a7a", // 𠩺
+ 0x20a7b: "\x1b\t\U00020a7b", // 𠩻
+ 0x20a7c: "\x1b\t\U00020a7c", // 𠩼
+ 0x20a7d: "\x1b\t\U00020a7d", // 𠩽
+ 0x20a7e: "\x1b\t\U00020a7e", // 𠩾
+ 0x20a7f: "\x1b\v\U00020a7f", // 𠩿
+ 0x20a80: "\x1b\t\U00020a80", // 𠪀
+ 0x20a81: "\x1b\t\U00020a81", // 𠪁
+ 0x20a82: "\x1b\t\U00020a82", // 𠪂
+ 0x20a83: "\x1b\t\U00020a83", // 𠪃
+ 0x20a84: "\x1b\t\U00020a84", // 𠪄
+ 0x20a85: "\x1b\t\U00020a85", // 𠪅
+ 0x20a86: "\x1b\t\U00020a86", // 𠪆
+ 0x20a87: "\x1b\n\U00020a87", // 𠪇
+ 0x20a88: "\x1b\n\U00020a88", // 𠪈
+ 0x20a89: "\x1b\n\U00020a89", // 𠪉
+ 0x20a8a: "\x1b\n\U00020a8a", // 𠪊
+ 0x20a8b: "\x1b\n\U00020a8b", // 𠪋
+ 0x20a8c: "\x1b\n\U00020a8c", // 𠪌
+ 0x20a8d: "\x1b\n\U00020a8d", // 𠪍
+ 0x20a8e: "\x1b\n\U00020a8e", // 𠪎
+ 0x20a8f: "\x1b\n\U00020a8f", // 𠪏
+ 0x20a90: "\x1b\n\U00020a90", // 𠪐
+ 0x20a91: "\x1b\v\U00020a91", // 𠪑
+ 0x20a92: "\x1b\v\U00020a92", // 𠪒
+ 0x20a93: "\x1b\v\U00020a93", // 𠪓
+ 0x20a94: "\x1b\v\U00020a94", // 𠪔
+ 0x20a95: "\x1b\v\U00020a95", // 𠪕
+ 0x20a96: "\x1b\v\U00020a96", // 𠪖
+ 0x20a97: "\x1b\v\U00020a97", // 𠪗
+ 0x20a98: "\x1b\v\U00020a98", // 𠪘
+ 0x20a99: "\x1b\f\U00020a99", // 𠪙
+ 0x20a9a: "\x1b\f\U00020a9a", // 𠪚
+ 0x20a9b: "\x1b\f\U00020a9b", // 𠪛
+ 0x20a9c: "\x1b\f\U00020a9c", // 𠪜
+ 0x20a9d: "\x1b\f\U00020a9d", // 𠪝
+ 0x20a9e: "\x1b\f\U00020a9e", // 𠪞
+ 0x20a9f: "\x1b\f\U00020a9f", // 𠪟
+ 0x20aa0: "\x1b\f\U00020aa0", // 𠪠
+ 0x20aa1: "\x1b\f\U00020aa1", // 𠪡
+ 0x20aa2: "\x1b\f\U00020aa2", // 𠪢
+ 0x20aa3: "\x1b\f\U00020aa3", // 𠪣
+ 0x20aa4: "\x1b\f\U00020aa4", // 𠪤
+ 0x20aa5: "\x1b\f\U00020aa5", // 𠪥
+ 0x20aa6: "\x1b\f\U00020aa6", // 𠪦
+ 0x20aa7: "\x1b\f\U00020aa7", // 𠪧
+ 0x20aa8: "\x1b\f\U00020aa8", // 𠪨
+ 0x20aa9: "\x1b\f\U00020aa9", // 𠪩
+ 0x20aaa: "\x1b\f\U00020aaa", // 𠪪
+ 0x20aab: "\x1b\f\U00020aab", // 𠪫
+ 0x20aac: "\x1b\f\U00020aac", // 𠪬
+ 0x20aad: "\x1b\r\U00020aad", // 𠪭
+ 0x20aae: "\x1b\r\U00020aae", // 𠪮
+ 0x20aaf: "\x1b\r\U00020aaf", // 𠪯
+ 0x20ab0: "\x1b\r\U00020ab0", // 𠪰
+ 0x20ab1: "\x1b\r\U00020ab1", // 𠪱
+ 0x20ab2: "\x1b\r\U00020ab2", // 𠪲
+ 0x20ab3: "\x1b\r\U00020ab3", // 𠪳
+ 0x20ab4: "\x1b\r\U00020ab4", // 𠪴
+ 0x20ab5: "\x1b\r\U00020ab5", // 𠪵
+ 0x20ab6: "\x1b\r\U00020ab6", // 𠪶
+ 0x20ab7: "\x1b\r\U00020ab7", // 𠪷
+ 0x20ab8: "\x1b\r\U00020ab8", // 𠪸
+ 0x20ab9: "b\n\U00020ab9", // 𠪹
+ 0x20aba: "\x1b\x0e\U00020aba", // 𠪺
+ 0x20abb: "\x1b\x0e\U00020abb", // 𠪻
+ 0x20abc: "\x1b\x0e\U00020abc", // 𠪼
+ 0x20abd: "\x1b\x0e\U00020abd", // 𠪽
+ 0x20abe: "\x1b\x0e\U00020abe", // 𠪾
+ 0x20abf: "\x1b\x0f\U00020abf", // 𠪿
+ 0x20ac0: "\x1b\x10\U00020ac0", // 𠫀
+ 0x20ac1: "\x1b\x10\U00020ac1", // 𠫁
+ 0x20ac2: "\x1b\x10\U00020ac2", // 𠫂
+ 0x20ac3: "\x1b\x10\U00020ac3", // 𠫃
+ 0x20ac4: "\x1b\x10\U00020ac4", // 𠫄
+ 0x20ac5: "\x1b\x10\U00020ac5", // 𠫅
+ 0x20ac6: "\x1b\x10\U00020ac6", // 𠫆
+ 0x20ac7: "\x1b\x12\U00020ac7", // 𠫇
+ 0x20ac8: "R\x10\U00020ac8", // 𠫈
+ 0x20ac9: "\x1b\x13\U00020ac9", // 𠫉
+ 0x20aca: "\x1b\x13\U00020aca", // 𠫊
+ 0x20acb: "\x1b\x14\U00020acb", // 𠫋
+ 0x20acc: "\x1b\x15\U00020acc", // 𠫌
+ 0x20acd: "\x1b\x15\U00020acd", // 𠫍
+ 0x20ace: "\x1b\x15\U00020ace", // 𠫎
+ 0x20acf: "\x1b\x16\U00020acf", // 𠫏
+ 0x20ad0: "\x1b\x1b\U00020ad0", // 𠫐
+ 0x20ad1: "\x1b\x1e\U00020ad1", // 𠫑
+ 0x20ad2: "\x1b\x1f\U00020ad2", // 𠫒
+ 0x20ad3: "\x1c\x01\U00020ad3", // 𠫓
+ 0x20ad4: "\x1c\x01\U00020ad4", // 𠫔
+ 0x20ad5: "\x1c\x01\U00020ad5", // 𠫕
+ 0x20ad6: "\x1c\x01\U00020ad6", // 𠫖
+ 0x20ad7: "\x1c\x02\U00020ad7", // 𠫗
+ 0x20ad8: "\x1c\x02\U00020ad8", // 𠫘
+ 0x20ad9: "\x1c\x03\U00020ad9", // 𠫙
+ 0x20ada: "\x1c\x03\U00020ada", // 𠫚
+ 0x20adb: "\x1c\x03\U00020adb", // 𠫛
+ 0x20adc: "\x1c\x03\U00020adc", // 𠫜
+ 0x20add: "\x1c\x03\U00020add", // 𠫝
+ 0x20ade: "\x1c\x04\U00020ade", // 𠫞
+ 0x20adf: "\x1c\x04\U00020adf", // 𠫟
+ 0x20ae0: "\x1c\x04\U00020ae0", // 𠫠
+ 0x20ae1: "\x1c\x04\U00020ae1", // 𠫡
+ 0x20ae2: "\x1c\x04\U00020ae2", // 𠫢
+ 0x20ae3: "\x1c\x04\U00020ae3", // 𠫣
+ 0x20ae4: "\x1c\x04\U00020ae4", // 𠫤
+ 0x20ae5: "\x1c\x04\U00020ae5", // 𠫥
+ 0x20ae6: "\x1c\x05\U00020ae6", // 𠫦
+ 0x20ae7: "\x1c\x05\U00020ae7", // 𠫧
+ 0x20ae8: "\x1c\x05\U00020ae8", // 𠫨
+ 0x20ae9: "\x1c\x06\U00020ae9", // 𠫩
+ 0x20aea: "\x1c\x06\U00020aea", // 𠫪
+ 0x20aeb: "\x1c\x06\U00020aeb", // 𠫫
+ 0x20aec: "\x1c\x06\U00020aec", // 𠫬
+ 0x20aed: "\x1c\x06\U00020aed", // 𠫭
+ 0x20aee: "\x10\x06\U00020aee", // 𠫮
+ 0x20aef: "\x1c\x06\U00020aef", // 𠫯
+ 0x20af0: "\x1c\a\U00020af0", // 𠫰
+ 0x20af1: "\x1c\a\U00020af1", // 𠫱
+ 0x20af2: "\x1c\a\U00020af2", // 𠫲
+ 0x20af3: "\x1d\a\U00020af3", // 𠫳
+ 0x20af4: "\x1c\a\U00020af4", // 𠫴
+ 0x20af5: "\x1c\a\U00020af5", // 𠫵
+ 0x20af6: "\x1c\a\U00020af6", // 𠫶
+ 0x20af7: "\x1c\a\U00020af7", // 𠫷
+ 0x20af8: "\x1c\a\U00020af8", // 𠫸
+ 0x20af9: "\x1c\b\U00020af9", // 𠫹
+ 0x20afa: "\x1c\b\U00020afa", // 𠫺
+ 0x20afb: "\x1c\b\U00020afb", // 𠫻
+ 0x20afc: "\x1c\b\U00020afc", // 𠫼
+ 0x20afd: "\x1c\t\U00020afd", // 𠫽
+ 0x20afe: "\x1c\t\U00020afe", // 𠫾
+ 0x20aff: "\x1c\n\U00020aff", // 𠫿
+ 0x20b00: "\x1c\n\U00020b00", // 𠬀
+ 0x20b01: "\x1c\n\U00020b01", // 𠬁
+ 0x20b02: "\x1c\n\U00020b02", // 𠬂
+ 0x20b03: "\x1c\n\U00020b03", // 𠬃
+ 0x20b04: "\x1c\n\U00020b04", // 𠬄
+ 0x20b05: "\x1c\n\U00020b05", // 𠬅
+ 0x20b06: "\x1c\v\U00020b06", // 𠬆
+ 0x20b07: "\x1c\v\U00020b07", // 𠬇
+ 0x20b08: "\x1c\v\U00020b08", // 𠬈
+ 0x20b09: "\x1c\v\U00020b09", // 𠬉
+ 0x20b0a: "\x1c\v\U00020b0a", // 𠬊
+ 0x20b0b: "\x1c\v\U00020b0b", // 𠬋
+ 0x20b0c: "\x1c\v\U00020b0c", // 𠬌
+ 0x20b0d: "\x1c\f\U00020b0d", // 𠬍
+ 0x20b0e: "\x1c\f\U00020b0e", // 𠬎
+ 0x20b0f: "\x1c\f\U00020b0f", // 𠬏
+ 0x20b10: "\x1c\f\U00020b10", // 𠬐
+ 0x20b11: "\x1c\r\U00020b11", // 𠬑
+ 0x20b12: "\x1c\r\U00020b12", // 𠬒
+ 0x20b13: "\x1c\x0e\U00020b13", // 𠬓
+ 0x20b14: "\x1c\x11\U00020b14", // 𠬔
+ 0x20b15: "\x1c\x0f\U00020b15", // 𠬕
+ 0x20b16: "\x1c\x0f\U00020b16", // 𠬖
+ 0x20b17: "\x1c\x0f\U00020b17", // 𠬗
+ 0x20b18: "\x1c\x11\U00020b18", // 𠬘
+ 0x20b19: "\x1c\x11\U00020b19", // 𠬙
+ 0x20b1a: "\x1d\x02\U00020b1a", // 𠬚
+ 0x20b1b: "\x1d\x02\U00020b1b", // 𠬛
+ 0x20b1c: "\x1d\x02\U00020b1c", // 𠬜
+ 0x20b1d: "\x1d\x02\U00020b1d", // 𠬝
+ 0x20b1e: "\x1d\x02\U00020b1e", // 𠬞
+ 0x20b1f: "\x1d\x02\U00020b1f", // 𠬟
+ 0x20b20: "\x1d\x02\U00020b20", // 𠬠
+ 0x20b21: "\x1d\x03\U00020b21", // 𠬡
+ 0x20b22: "\x1d\x03\U00020b22", // 𠬢
+ 0x20b23: "\x1d\x03\U00020b23", // 𠬣
+ 0x20b24: "\x1d\x03\U00020b24", // 𠬤
+ 0x20b25: "\x1d\x03\U00020b25", // 𠬥
+ 0x20b26: "\x1d\x03\U00020b26", // 𠬦
+ 0x20b27: "\x1d\x03\U00020b27", // 𠬧
+ 0x20b28: "\x1d\x03\U00020b28", // 𠬨
+ 0x20b29: "\x1d\x04\U00020b29", // 𠬩
+ 0x20b2a: "\x1d\x04\U00020b2a", // 𠬪
+ 0x20b2b: "\x1d\x04\U00020b2b", // 𠬫
+ 0x20b2c: "\x1d\x04\U00020b2c", // 𠬬
+ 0x20b2d: "\x1d\x04\U00020b2d", // 𠬭
+ 0x20b2e: "\x1d\x04\U00020b2e", // 𠬮
+ 0x20b2f: "\x1d\x04\U00020b2f", // 𠬯
+ 0x20b30: "\x1d\x04\U00020b30", // 𠬰
+ 0x20b31: "\x1d\x05\U00020b31", // 𠬱
+ 0x20b32: "\x1d\x05\U00020b32", // 𠬲
+ 0x20b33: "\x1d\x05\U00020b33", // 𠬳
+ 0x20b34: "\x1d\x05\U00020b34", // 𠬴
+ 0x20b35: "\x1d\x05\U00020b35", // 𠬵
+ 0x20b36: "\x1d\x05\U00020b36", // 𠬶
+ 0x20b37: "\x1d\x05\U00020b37", // 𠬷
+ 0x20b38: "\x1d\x05\U00020b38", // 𠬸
+ 0x20b39: "\x1d\x06\U00020b39", // 𠬹
+ 0x20b3a: "\x1d\x06\U00020b3a", // 𠬺
+ 0x20b3b: "\x1d\x06\U00020b3b", // 𠬻
+ 0x20b3c: "\x1d\x06\U00020b3c", // 𠬼
+ 0x20b3d: "\x1d\x06\U00020b3d", // 𠬽
+ 0x20b3e: "\x1d\x06\U00020b3e", // 𠬾
+ 0x20b3f: "\x1d\a\U00020b3f", // 𠬿
+ 0x20b40: "\x1d\a\U00020b40", // 𠭀
+ 0x20b41: "\x1d\a\U00020b41", // 𠭁
+ 0x20b42: "\x1d\a\U00020b42", // 𠭂
+ 0x20b43: "\x1d\a\U00020b43", // 𠭃
+ 0x20b44: "\x1d\a\U00020b44", // 𠭄
+ 0x20b45: "\x1d\a\U00020b45", // 𠭅
+ 0x20b46: "\x1d\a\U00020b46", // 𠭆
+ 0x20b47: "\x1d\a\U00020b47", // 𠭇
+ 0x20b48: "\x1d\a\U00020b48", // 𠭈
+ 0x20b49: "\x19\a\U00020b49", // 𠭉
+ 0x20b4a: "\x1d\b\U00020b4a", // 𠭊
+ 0x20b4b: "\x1d\b\U00020b4b", // 𠭋
+ 0x20b4c: "\x1d\b\U00020b4c", // 𠭌
+ 0x20b4d: "\x1d\b\U00020b4d", // 𠭍
+ 0x20b4e: "\x1d\b\U00020b4e", // 𠭎
+ 0x20b4f: "\x1d\b\U00020b4f", // 𠭏
+ 0x20b50: "\x1d\b\U00020b50", // 𠭐
+ 0x20b51: "\x1d\b\U00020b51", // 𠭑
+ 0x20b52: "\x1d\b\U00020b52", // 𠭒
+ 0x20b53: "\x1d\b\U00020b53", // 𠭓
+ 0x20b54: "\x1d\b\U00020b54", // 𠭔
+ 0x20b55: "\x1d\t\U00020b55", // 𠭕
+ 0x20b56: "\x1d\t\U00020b56", // 𠭖
+ 0x20b57: "\x1d\t\U00020b57", // 𠭗
+ 0x20b58: "\x1d\t\U00020b58", // 𠭘
+ 0x20b59: "\x1d\t\U00020b59", // 𠭙
+ 0x20b5a: "\x1d\t\U00020b5a", // 𠭚
+ 0x20b5b: "\x1d\t\U00020b5b", // 𠭛
+ 0x20b5c: "\x1d\t\U00020b5c", // 𠭜
+ 0x20b5d: "\x1d\t\U00020b5d", // 𠭝
+ 0x20b5e: "\x1d\t\U00020b5e", // 𠭞
+ 0x20b5f: "\x1d\t\U00020b5f", // 𠭟
+ 0x20b60: "\x1d\t\U00020b60", // 𠭠
+ 0x20b61: "\x1d\t\U00020b61", // 𠭡
+ 0x20b62: "\x1d\t\U00020b62", // 𠭢
+ 0x20b63: "\x1d\t\U00020b63", // 𠭣
+ 0x20b64: "\x1d\t\U00020b64", // 𠭤
+ 0x20b65: "\x1d\n\U00020b65", // 𠭥
+ 0x20b66: "\x1d\n\U00020b66", // 𠭦
+ 0x20b67: "\x1d\n\U00020b67", // 𠭧
+ 0x20b68: "\x1d\n\U00020b68", // 𠭨
+ 0x20b69: "\x1d\n\U00020b69", // 𠭩
+ 0x20b6a: "\x1d\n\U00020b6a", // 𠭪
+ 0x20b6b: "\x1d\n\U00020b6b", // 𠭫
+ 0x20b6c: "\x1d\n\U00020b6c", // 𠭬
+ 0x20b6d: "\x1d\n\U00020b6d", // 𠭭
+ 0x20b6e: "\x1d\n\U00020b6e", // 𠭮
+ 0x20b6f: "\x1d\v\U00020b6f", // 𠭯
+ 0x20b70: "\x1d\v\U00020b70", // 𠭰
+ 0x20b71: "\x1d\v\U00020b71", // 𠭱
+ 0x20b72: "\x1d\v\U00020b72", // 𠭲
+ 0x20b73: "\x1d\v\U00020b73", // 𠭳
+ 0x20b74: "\x1d\v\U00020b74", // 𠭴
+ 0x20b75: "\x1d\v\U00020b75", // 𠭵
+ 0x20b76: "#\n\U00020b76", // 𠭶
+ 0x20b77: "\x1d\v\U00020b77", // 𠭷
+ 0x20b78: "\x1d\v\U00020b78", // 𠭸
+ 0x20b79: "\x1d\v\U00020b79", // 𠭹
+ 0x20b7a: "\x1d\v\U00020b7a", // 𠭺
+ 0x20b7b: "\f\f\U00020b7b", // 𠭻
+ 0x20b7c: "\x1d\f\U00020b7c", // 𠭼
+ 0x20b7d: "\x1d\f\U00020b7d", // 𠭽
+ 0x20b7e: "\x1d\f\U00020b7e", // 𠭾
+ 0x20b7f: "\x1d\f\U00020b7f", // 𠭿
+ 0x20b80: "\x1d\f\U00020b80", // 𠮀
+ 0x20b81: "\x1d\f\U00020b81", // 𠮁
+ 0x20b82: "\x1d\f\U00020b82", // 𠮂
+ 0x20b83: "\x1d\r\U00020b83", // 𠮃
+ 0x20b84: "\x1d\r\U00020b84", // 𠮄
+ 0x20b85: "\x1d\r\U00020b85", // 𠮅
+ 0x20b86: "\x1d\r\U00020b86", // 𠮆
+ 0x20b87: "\x1d\x0e\U00020b87", // 𠮇
+ 0x20b88: "\x1d\x0e\U00020b88", // 𠮈
+ 0x20b89: "\x1d\x0e\U00020b89", // 𠮉
+ 0x20b8a: "\x1d\x0e\U00020b8a", // 𠮊
+ 0x20b8b: "\x1d\x0e\U00020b8b", // 𠮋
+ 0x20b8c: "\x1d\x0e\U00020b8c", // 𠮌
+ 0x20b8d: "\x1d\x0f\U00020b8d", // 𠮍
+ 0x20b8e: "\x1d\x0f\U00020b8e", // 𠮎
+ 0x20b8f: "\x1d\x0f\U00020b8f", // 𠮏
+ 0x20b90: "\x1d\x10\U00020b90", // 𠮐
+ 0x20b91: "\x1d\x11\U00020b91", // 𠮑
+ 0x20b92: "\x1d\x11\U00020b92", // 𠮒
+ 0x20b93: "\x1d\x13\U00020b93", // 𠮓
+ 0x20b94: "\x1d\x13\U00020b94", // 𠮔
+ 0x20b95: "\x1d\x14\U00020b95", // 𠮕
+ 0x20b96: "\x1d\x15\U00020b96", // 𠮖
+ 0x20b97: "\x1d\x16\U00020b97", // 𠮗
+ 0x20b98: "\x1d\x16\U00020b98", // 𠮘
+ 0x20b99: "\x1e\x01\U00020b99", // 𠮙
+ 0x20b9a: "\x1e\x01\U00020b9a", // 𠮚
+ 0x20b9b: "\x1e\x01\U00020b9b", // 𠮛
+ 0x20b9c: "\x1e\x01\U00020b9c", // 𠮜
+ 0x20b9d: "\x1e\x01\U00020b9d", // 𠮝
+ 0x20b9e: "\x1e\x01\U00020b9e", // 𠮞
+ 0x20b9f: "\x1e\x02\U00020b9f", // 𠮟
+ 0x20ba0: "\x1e\x02\U00020ba0", // 𠮠
+ 0x20ba1: "\x1e\x02\U00020ba1", // 𠮡
+ 0x20ba2: "\x1e\x02\U00020ba2", // 𠮢
+ 0x20ba3: "\x1e\x02\U00020ba3", // 𠮣
+ 0x20ba4: "\x1e\x02\U00020ba4", // 𠮤
+ 0x20ba5: "\x1e\x02\U00020ba5", // 𠮥
+ 0x20ba6: "\x1e\x02\U00020ba6", // 𠮦
+ 0x20ba7: "\x1e\x02\U00020ba7", // 𠮧
+ 0x20ba8: "\x1e\x02\U00020ba8", // 𠮨
+ 0x20ba9: "\x1e\x02\U00020ba9", // 𠮩
+ 0x20baa: "\x1e\x02\U00020baa", // 𠮪
+ 0x20bab: "\x1e\x03\U00020bab", // 𠮫
+ 0x20bac: "\x1e\x03\U00020bac", // 𠮬
+ 0x20bad: "\x1e\x03\U00020bad", // 𠮭
+ 0x20bae: "\x1e\x03\U00020bae", // 𠮮
+ 0x20baf: "\x1e\x03\U00020baf", // 𠮯
+ 0x20bb0: "\x1e\x03\U00020bb0", // 𠮰
+ 0x20bb1: "\x1e\x03\U00020bb1", // 𠮱
+ 0x20bb2: "\x1e\x03\U00020bb2", // 𠮲
+ 0x20bb3: "\x1e\x03\U00020bb3", // 𠮳
+ 0x20bb4: "\x1e\x03\U00020bb4", // 𠮴
+ 0x20bb5: "\x1e\x03\U00020bb5", // 𠮵
+ 0x20bb6: "\x1e\x03\U00020bb6", // 𠮶
+ 0x20bb7: "\x1e\x03\U00020bb7", // 𠮷
+ 0x20bb8: "\x1e\x03\U00020bb8", // 𠮸
+ 0x20bb9: "\x1e\x03\U00020bb9", // 𠮹
+ 0x20bba: "\x1e\x03\U00020bba", // 𠮺
+ 0x20bbb: "\x1e\x03\U00020bbb", // 𠮻
+ 0x20bbc: "\x1e\x03\U00020bbc", // 𠮼
+ 0x20bbd: "\x1e\x03\U00020bbd", // 𠮽
+ 0x20bbe: "\x1e\x03\U00020bbe", // 𠮾
+ 0x20bbf: "\x1e\x03\U00020bbf", // 𠮿
+ 0x20bc0: "\x1e\x03\U00020bc0", // 𠯀
+ 0x20bc1: "\x1e\x03\U00020bc1", // 𠯁
+ 0x20bc2: "\x1e\x03\U00020bc2", // 𠯂
+ 0x20bc3: "\x1e\x03\U00020bc3", // 𠯃
+ 0x20bc4: "\x1e\x03\U00020bc4", // 𠯄
+ 0x20bc5: "\x1e\x03\U00020bc5", // 𠯅
+ 0x20bc6: "\x1e\x03\U00020bc6", // 𠯆
+ 0x20bc7: "\x1e\x03\U00020bc7", // 𠯇
+ 0x20bc8: "\x1e\x03\U00020bc8", // 𠯈
+ 0x20bc9: "\x1e\x03\U00020bc9", // 𠯉
+ 0x20bca: "\x1e\x03\U00020bca", // 𠯊
+ 0x20bcb: "\x1e\x04\U00020bcb", // 𠯋
+ 0x20bcc: "\x1e\x04\U00020bcc", // 𠯌
+ 0x20bcd: "\x1e\x04\U00020bcd", // 𠯍
+ 0x20bce: "\x1e\x04\U00020bce", // 𠯎
+ 0x20bcf: "\x1e\x04\U00020bcf", // 𠯏
+ 0x20bd0: "\x1e\x04\U00020bd0", // 𠯐
+ 0x20bd1: "\x1e\x04\U00020bd1", // 𠯑
+ 0x20bd2: "\x1e\x04\U00020bd2", // 𠯒
+ 0x20bd3: "\x1e\x04\U00020bd3", // 𠯓
+ 0x20bd4: "\x1e\x04\U00020bd4", // 𠯔
+ 0x20bd5: "\x1e\x04\U00020bd5", // 𠯕
+ 0x20bd6: "\x1e\x04\U00020bd6", // 𠯖
+ 0x20bd7: "\x1e\x04\U00020bd7", // 𠯗
+ 0x20bd8: "\x1e\x04\U00020bd8", // 𠯘
+ 0x20bd9: "\x1e\x04\U00020bd9", // 𠯙
+ 0x20bda: "\x1e\x04\U00020bda", // 𠯚
+ 0x20bdb: "\x1e\x04\U00020bdb", // 𠯛
+ 0x20bdc: "\x1e\x04\U00020bdc", // 𠯜
+ 0x20bdd: "\x1e\x04\U00020bdd", // 𠯝
+ 0x20bde: "\x1e\x04\U00020bde", // 𠯞
+ 0x20bdf: "\x1e\x04\U00020bdf", // 𠯟
+ 0x20be0: "\x1e\x04\U00020be0", // 𠯠
+ 0x20be1: "\x1e\x04\U00020be1", // 𠯡
+ 0x20be2: "\x1e\x04\U00020be2", // 𠯢
+ 0x20be3: "\x1e\x04\U00020be3", // 𠯣
+ 0x20be4: "\x1e\x04\U00020be4", // 𠯤
+ 0x20be5: "\x1e\x04\U00020be5", // 𠯥
+ 0x20be6: "\x1e\x04\U00020be6", // 𠯦
+ 0x20be7: "\x1e\x04\U00020be7", // 𠯧
+ 0x20be8: "\x1e\x04\U00020be8", // 𠯨
+ 0x20be9: "\x1e\x04\U00020be9", // 𠯩
+ 0x20bea: "\x1e\x04\U00020bea", // 𠯪
+ 0x20beb: "\x1e\x04\U00020beb", // 𠯫
+ 0x20bec: "\x1e\x04\U00020bec", // 𠯬
+ 0x20bed: "\x1e\x04\U00020bed", // 𠯭
+ 0x20bee: "\x1e\x04\U00020bee", // 𠯮
+ 0x20bef: "\x1e\x04\U00020bef", // 𠯯
+ 0x20bf0: "\x1e\x04\U00020bf0", // 𠯰
+ 0x20bf1: "\x1e\x04\U00020bf1", // 𠯱
+ 0x20bf2: "\x1e\x04\U00020bf2", // 𠯲
+ 0x20bf3: "\x1e\x04\U00020bf3", // 𠯳
+ 0x20bf4: "\x1e\x04\U00020bf4", // 𠯴
+ 0x20bf5: "\x1e\x04\U00020bf5", // 𠯵
+ 0x20bf6: "\x1e\x04\U00020bf6", // 𠯶
+ 0x20bf7: "\x1e\x04\U00020bf7", // 𠯷
+ 0x20bf8: "\x1e\x04\U00020bf8", // 𠯸
+ 0x20bf9: "\x1e\x04\U00020bf9", // 𠯹
+ 0x20bfa: "\x1e\x04\U00020bfa", // 𠯺
+ 0x20bfb: "\x1e\x04\U00020bfb", // 𠯻
+ 0x20bfc: "\x1e\x04\U00020bfc", // 𠯼
+ 0x20bfd: "\x1e\x04\U00020bfd", // 𠯽
+ 0x20bfe: "\x1e\x04\U00020bfe", // 𠯾
+ 0x20bff: "\x1e\x04\U00020bff", // 𠯿
+ 0x20c00: "\x1e\x04\U00020c00", // 𠰀
+ 0x20c01: "\x1e\x04\U00020c01", // 𠰁
+ 0x20c02: "\x1e\x04\U00020c02", // 𠰂
+ 0x20c03: "\x1e\x04\U00020c03", // 𠰃
+ 0x20c04: "\x1e\x04\U00020c04", // 𠰄
+ 0x20c05: "\x1e\x04\U00020c05", // 𠰅
+ 0x20c06: "\x1e\x04\U00020c06", // 𠰆
+ 0x20c07: "\x1e\x04\U00020c07", // 𠰇
+ 0x20c08: "\x1e\x05\U00020c08", // 𠰈
+ 0x20c09: "\x1e\x05\U00020c09", // 𠰉
+ 0x20c0a: "\x1e\x05\U00020c0a", // 𠰊
+ 0x20c0b: "\x1e\x05\U00020c0b", // 𠰋
+ 0x20c0c: "\x1e\x05\U00020c0c", // 𠰌
+ 0x20c0d: "\x1e\x05\U00020c0d", // 𠰍
+ 0x20c0e: "\x1e\x05\U00020c0e", // 𠰎
+ 0x20c0f: "\x1e\x05\U00020c0f", // 𠰏
+ 0x20c10: "\x1e\x05\U00020c10", // 𠰐
+ 0x20c11: "\x1e\x05\U00020c11", // 𠰑
+ 0x20c12: "\x1e\x05\U00020c12", // 𠰒
+ 0x20c13: "\x1e\x05\U00020c13", // 𠰓
+ 0x20c14: "\x1e\x05\U00020c14", // 𠰔
+ 0x20c15: "\x1e\x05\U00020c15", // 𠰕
+ 0x20c16: "\x1e\x05\U00020c16", // 𠰖
+ 0x20c17: "\x1e\x05\U00020c17", // 𠰗
+ 0x20c18: "\x1e\x05\U00020c18", // 𠰘
+ 0x20c19: "\x1e\x05\U00020c19", // 𠰙
+ 0x20c1a: "\x1e\x05\U00020c1a", // 𠰚
+ 0x20c1b: "\x1e\x05\U00020c1b", // 𠰛
+ 0x20c1c: "\x1e\x05\U00020c1c", // 𠰜
+ 0x20c1d: "\x1e\x05\U00020c1d", // 𠰝
+ 0x20c1e: "\x1e\x05\U00020c1e", // 𠰞
+ 0x20c1f: "\x1e\x05\U00020c1f", // 𠰟
+ 0x20c20: "\x1e\x05\U00020c20", // 𠰠
+ 0x20c21: "\x1e\x05\U00020c21", // 𠰡
+ 0x20c22: "\x1e\x05\U00020c22", // 𠰢
+ 0x20c23: "\x1e\x05\U00020c23", // 𠰣
+ 0x20c24: "\x1e\x05\U00020c24", // 𠰤
+ 0x20c25: "\x1e\x05\U00020c25", // 𠰥
+ 0x20c26: "\x1e\x05\U00020c26", // 𠰦
+ 0x20c27: "\x1e\x05\U00020c27", // 𠰧
+ 0x20c28: "\x1e\x05\U00020c28", // 𠰨
+ 0x20c29: "\x1e\x05\U00020c29", // 𠰩
+ 0x20c2a: "\x1e\x05\U00020c2a", // 𠰪
+ 0x20c2b: "\x1e\x05\U00020c2b", // 𠰫
+ 0x20c2c: "\x1e\x05\U00020c2c", // 𠰬
+ 0x20c2d: "\x1e\x05\U00020c2d", // 𠰭
+ 0x20c2e: "\x1e\x05\U00020c2e", // 𠰮
+ 0x20c2f: "\x1e\x05\U00020c2f", // 𠰯
+ 0x20c30: "\x1e\x05\U00020c30", // 𠰰
+ 0x20c31: "\x1e\x05\U00020c31", // 𠰱
+ 0x20c32: "\x1e\x05\U00020c32", // 𠰲
+ 0x20c33: "\x1e\x05\U00020c33", // 𠰳
+ 0x20c34: "\x1e\x05\U00020c34", // 𠰴
+ 0x20c35: "\x1e\x05\U00020c35", // 𠰵
+ 0x20c36: "\x1e\x05\U00020c36", // 𠰶
+ 0x20c37: "\x1e\x05\U00020c37", // 𠰷
+ 0x20c38: "\x1e\x05\U00020c38", // 𠰸
+ 0x20c39: "\x1e\x05\U00020c39", // 𠰹
+ 0x20c3a: "\x1e\x05\U00020c3a", // 𠰺
+ 0x20c3b: "\x1e\x05\U00020c3b", // 𠰻
+ 0x20c3c: "\x1e\x05\U00020c3c", // 𠰼
+ 0x20c3d: "\x1e\x05\U00020c3d", // 𠰽
+ 0x20c3e: "\x1e\x05\U00020c3e", // 𠰾
+ 0x20c3f: "\x1e\x05\U00020c3f", // 𠰿
+ 0x20c40: "\x1e\x05\U00020c40", // 𠱀
+ 0x20c41: "\x1e\x05\U00020c41", // 𠱁
+ 0x20c42: "\x1e\x05\U00020c42", // 𠱂
+ 0x20c43: "\x1e\x05\U00020c43", // 𠱃
+ 0x20c44: "\x1e\x05\U00020c44", // 𠱄
+ 0x20c45: "\x1e\x05\U00020c45", // 𠱅
+ 0x20c46: "\x1e\x05\U00020c46", // 𠱆
+ 0x20c47: "\x1e\x05\U00020c47", // 𠱇
+ 0x20c48: "\x1e\x05\U00020c48", // 𠱈
+ 0x20c49: "\x1e\x05\U00020c49", // 𠱉
+ 0x20c4a: "\x1e\x05\U00020c4a", // 𠱊
+ 0x20c4b: "\x1e\x05\U00020c4b", // 𠱋
+ 0x20c4c: "\x1e\x05\U00020c4c", // 𠱌
+ 0x20c4d: "\x1e\x05\U00020c4d", // 𠱍
+ 0x20c4e: "\x1e\x05\U00020c4e", // 𠱎
+ 0x20c4f: "\x1e\x05\U00020c4f", // 𠱏
+ 0x20c50: "\x1e\x06\U00020c50", // 𠱐
+ 0x20c51: "\x1e\x06\U00020c51", // 𠱑
+ 0x20c52: "\x1e\x06\U00020c52", // 𠱒
+ 0x20c53: "\x1e\x06\U00020c53", // 𠱓
+ 0x20c54: "\x1e\x06\U00020c54", // 𠱔
+ 0x20c55: "\x1e\x06\U00020c55", // 𠱕
+ 0x20c56: "\x1e\x06\U00020c56", // 𠱖
+ 0x20c57: "\x1e\x06\U00020c57", // 𠱗
+ 0x20c58: "\x1e\x06\U00020c58", // 𠱘
+ 0x20c59: "\x1e\x06\U00020c59", // 𠱙
+ 0x20c5a: "\x1e\x06\U00020c5a", // 𠱚
+ 0x20c5b: "\x1e\x06\U00020c5b", // 𠱛
+ 0x20c5c: "\x1e\x06\U00020c5c", // 𠱜
+ 0x20c5d: "\x1e\x06\U00020c5d", // 𠱝
+ 0x20c5e: "\x1e\x06\U00020c5e", // 𠱞
+ 0x20c5f: "\x1e\x06\U00020c5f", // 𠱟
+ 0x20c60: "\x1e\x06\U00020c60", // 𠱠
+ 0x20c61: "\x1e\x06\U00020c61", // 𠱡
+ 0x20c62: "\x1e\x06\U00020c62", // 𠱢
+ 0x20c63: "\x1e\x06\U00020c63", // 𠱣
+ 0x20c64: "\x1e\x06\U00020c64", // 𠱤
+ 0x20c65: "\x1e\x06\U00020c65", // 𠱥
+ 0x20c66: "\x1e\x06\U00020c66", // 𠱦
+ 0x20c67: "\x1e\x06\U00020c67", // 𠱧
+ 0x20c68: "\x1e\x06\U00020c68", // 𠱨
+ 0x20c69: "\x1e\x06\U00020c69", // 𠱩
+ 0x20c6a: "\x1e\x06\U00020c6a", // 𠱪
+ 0x20c6b: "\x1e\x06\U00020c6b", // 𠱫
+ 0x20c6c: "\x1e\x06\U00020c6c", // 𠱬
+ 0x20c6d: "\x1e\x06\U00020c6d", // 𠱭
+ 0x20c6e: "\x1e\x06\U00020c6e", // 𠱮
+ 0x20c6f: "\x1e\x06\U00020c6f", // 𠱯
+ 0x20c70: "\x1e\x06\U00020c70", // 𠱰
+ 0x20c71: "\x1e\x06\U00020c71", // 𠱱
+ 0x20c72: "\x1e\x06\U00020c72", // 𠱲
+ 0x20c73: "\x1e\x06\U00020c73", // 𠱳
+ 0x20c74: "\x1e\x06\U00020c74", // 𠱴
+ 0x20c75: "\x1e\x06\U00020c75", // 𠱵
+ 0x20c76: "\x1e\x06\U00020c76", // 𠱶
+ 0x20c77: "\x1e\x06\U00020c77", // 𠱷
+ 0x20c78: "\x1e\x06\U00020c78", // 𠱸
+ 0x20c79: "\x1e\x06\U00020c79", // 𠱹
+ 0x20c7a: "\x1e\x06\U00020c7a", // 𠱺
+ 0x20c7b: "\x1e\x06\U00020c7b", // 𠱻
+ 0x20c7c: "\x1e\x06\U00020c7c", // 𠱼
+ 0x20c7d: "\x1e\x06\U00020c7d", // 𠱽
+ 0x20c7e: "\x1e\x06\U00020c7e", // 𠱾
+ 0x20c7f: "\x1e\x06\U00020c7f", // 𠱿
+ 0x20c80: "\x1e\x06\U00020c80", // 𠲀
+ 0x20c81: "\x1e\x06\U00020c81", // 𠲁
+ 0x20c82: "\x1e\x06\U00020c82", // 𠲂
+ 0x20c83: "\x1e\x06\U00020c83", // 𠲃
+ 0x20c84: "\x1e\x06\U00020c84", // 𠲄
+ 0x20c85: "\x1e\x06\U00020c85", // 𠲅
+ 0x20c86: "\x1e\x06\U00020c86", // 𠲆
+ 0x20c87: "\x1e\x06\U00020c87", // 𠲇
+ 0x20c88: "\x1e\x06\U00020c88", // 𠲈
+ 0x20c89: "\x1e\x06\U00020c89", // 𠲉
+ 0x20c8a: "\x1e\x06\U00020c8a", // 𠲊
+ 0x20c8b: "\x1e\x06\U00020c8b", // 𠲋
+ 0x20c8c: "\x1e\x06\U00020c8c", // 𠲌
+ 0x20c8d: "\x1e\x06\U00020c8d", // 𠲍
+ 0x20c8e: "\x1e\x06\U00020c8e", // 𠲎
+ 0x20c8f: "\x1e\x06\U00020c8f", // 𠲏
+ 0x20c90: "\x1e\x06\U00020c90", // 𠲐
+ 0x20c91: "\x1e\x06\U00020c91", // 𠲑
+ 0x20c92: "\x1e\x06\U00020c92", // 𠲒
+ 0x20c93: "\x1e\x06\U00020c93", // 𠲓
+ 0x20c94: "\x1e\x06\U00020c94", // 𠲔
+ 0x20c95: "\x1e\x06\U00020c95", // 𠲕
+ 0x20c96: "\x1e\x06\U00020c96", // 𠲖
+ 0x20c97: "\x1e\x06\U00020c97", // 𠲗
+ 0x20c98: "\x1e\x06\U00020c98", // 𠲘
+ 0x20c99: "\x1e\x06\U00020c99", // 𠲙
+ 0x20c9a: "\x1e\x06\U00020c9a", // 𠲚
+ 0x20c9b: "\x1e\x06\U00020c9b", // 𠲛
+ 0x20c9c: "\x1e\x06\U00020c9c", // 𠲜
+ 0x20c9d: "\x1e\x06\U00020c9d", // 𠲝
+ 0x20c9e: "\x1e\x06\U00020c9e", // 𠲞
+ 0x20c9f: "\x1e\x06\U00020c9f", // 𠲟
+ 0x20ca0: "\x1e\x06\U00020ca0", // 𠲠
+ 0x20ca1: "\x1e\x06\U00020ca1", // 𠲡
+ 0x20ca2: "\x1e\x06\U00020ca2", // 𠲢
+ 0x20ca3: "\x1e\x06\U00020ca3", // 𠲣
+ 0x20ca4: "\x1e\x06\U00020ca4", // 𠲤
+ 0x20ca5: "\x1e\x06\U00020ca5", // 𠲥
+ 0x20ca6: "\x1e\x06\U00020ca6", // 𠲦
+ 0x20ca7: "\x1e\x06\U00020ca7", // 𠲧
+ 0x20ca8: "\x1e\x06\U00020ca8", // 𠲨
+ 0x20ca9: "\x1e\x06\U00020ca9", // 𠲩
+ 0x20caa: "\x1e\x06\U00020caa", // 𠲪
+ 0x20cab: "\x1e\x06\U00020cab", // 𠲫
+ 0x20cac: "\x1e\a\U00020cac", // 𠲬
+ 0x20cad: "\x1e\a\U00020cad", // 𠲭
+ 0x20cae: "\x1e\a\U00020cae", // 𠲮
+ 0x20caf: "\x1e\a\U00020caf", // 𠲯
+ 0x20cb0: "\x1e\a\U00020cb0", // 𠲰
+ 0x20cb1: "\x1e\a\U00020cb1", // 𠲱
+ 0x20cb2: "\x1e\a\U00020cb2", // 𠲲
+ 0x20cb3: "\x1e\a\U00020cb3", // 𠲳
+ 0x20cb4: "\x1e\a\U00020cb4", // 𠲴
+ 0x20cb5: "\x1e\a\U00020cb5", // 𠲵
+ 0x20cb6: "\x1e\a\U00020cb6", // 𠲶
+ 0x20cb7: "\x1e\a\U00020cb7", // 𠲷
+ 0x20cb8: "\x1e\a\U00020cb8", // 𠲸
+ 0x20cb9: "\x1e\a\U00020cb9", // 𠲹
+ 0x20cba: "\x1e\a\U00020cba", // 𠲺
+ 0x20cbb: "\x1e\a\U00020cbb", // 𠲻
+ 0x20cbc: "\x1e\a\U00020cbc", // 𠲼
+ 0x20cbd: "\x1e\a\U00020cbd", // 𠲽
+ 0x20cbe: "\x1e\a\U00020cbe", // 𠲾
+ 0x20cbf: "\x1e\a\U00020cbf", // 𠲿
+ 0x20cc0: "\x1e\a\U00020cc0", // 𠳀
+ 0x20cc1: "\x1e\a\U00020cc1", // 𠳁
+ 0x20cc2: "\x1e\a\U00020cc2", // 𠳂
+ 0x20cc3: "\x1e\a\U00020cc3", // 𠳃
+ 0x20cc4: "\x1e\a\U00020cc4", // 𠳄
+ 0x20cc5: "\x1e\a\U00020cc5", // 𠳅
+ 0x20cc6: "\x1e\a\U00020cc6", // 𠳆
+ 0x20cc7: "\x1e\a\U00020cc7", // 𠳇
+ 0x20cc8: "\x1e\a\U00020cc8", // 𠳈
+ 0x20cc9: "\x1e\a\U00020cc9", // 𠳉
+ 0x20cca: "\x1e\a\U00020cca", // 𠳊
+ 0x20ccb: "\x1e\a\U00020ccb", // 𠳋
+ 0x20ccc: "\x1e\a\U00020ccc", // 𠳌
+ 0x20ccd: "\x1e\a\U00020ccd", // 𠳍
+ 0x20cce: "\x1e\a\U00020cce", // 𠳎
+ 0x20ccf: "\x1e\a\U00020ccf", // 𠳏
+ 0x20cd0: "\x1e\a\U00020cd0", // 𠳐
+ 0x20cd1: "\x1e\a\U00020cd1", // 𠳑
+ 0x20cd2: "\x1e\a\U00020cd2", // 𠳒
+ 0x20cd3: "\x1e\a\U00020cd3", // 𠳓
+ 0x20cd4: "\x1e\a\U00020cd4", // 𠳔
+ 0x20cd5: "\x1e\a\U00020cd5", // 𠳕
+ 0x20cd6: "\x1e\a\U00020cd6", // 𠳖
+ 0x20cd7: "\x1e\a\U00020cd7", // 𠳗
+ 0x20cd8: "\x1e\a\U00020cd8", // 𠳘
+ 0x20cd9: "\x1e\a\U00020cd9", // 𠳙
+ 0x20cda: "\x1e\a\U00020cda", // 𠳚
+ 0x20cdb: "\x1e\a\U00020cdb", // 𠳛
+ 0x20cdc: "\x1e\a\U00020cdc", // 𠳜
+ 0x20cdd: "\x1e\a\U00020cdd", // 𠳝
+ 0x20cde: "\x1e\a\U00020cde", // 𠳞
+ 0x20cdf: "\x1e\a\U00020cdf", // 𠳟
+ 0x20ce0: "\x1e\a\U00020ce0", // 𠳠
+ 0x20ce1: "\x1e\a\U00020ce1", // 𠳡
+ 0x20ce2: "\x1e\a\U00020ce2", // 𠳢
+ 0x20ce3: "\x1e\a\U00020ce3", // 𠳣
+ 0x20ce4: "\x1e\a\U00020ce4", // 𠳤
+ 0x20ce5: "\x1e\b\U00020ce5", // 𠳥
+ 0x20ce6: "\x1e\a\U00020ce6", // 𠳦
+ 0x20ce7: "\x1e\a\U00020ce7", // 𠳧
+ 0x20ce8: "\x1e\a\U00020ce8", // 𠳨
+ 0x20ce9: "\x1e\a\U00020ce9", // 𠳩
+ 0x20cea: "\x1e\a\U00020cea", // 𠳪
+ 0x20ceb: "e\x05\U00020ceb", // 𠳫
+ 0x20cec: "\x1e\a\U00020cec", // 𠳬
+ 0x20ced: "\x1e\a\U00020ced", // 𠳭
+ 0x20cee: "\x1e\a\U00020cee", // 𠳮
+ 0x20cef: "\x1e\a\U00020cef", // 𠳯
+ 0x20cf0: "\x1e\a\U00020cf0", // 𠳰
+ 0x20cf1: "\x1e\a\U00020cf1", // 𠳱
+ 0x20cf2: "\x1e\a\U00020cf2", // 𠳲
+ 0x20cf3: "\x1e\a\U00020cf3", // 𠳳
+ 0x20cf4: "\x1e\a\U00020cf4", // 𠳴
+ 0x20cf5: "\x1e\a\U00020cf5", // 𠳵
+ 0x20cf6: "\x1e\a\U00020cf6", // 𠳶
+ 0x20cf7: "\x1e\a\U00020cf7", // 𠳷
+ 0x20cf8: "\x1e\a\U00020cf8", // 𠳸
+ 0x20cf9: "\x1e\a\U00020cf9", // 𠳹
+ 0x20cfa: "\x1e\a\U00020cfa", // 𠳺
+ 0x20cfb: "\x1e\a\U00020cfb", // 𠳻
+ 0x20cfc: "\x1e\a\U00020cfc", // 𠳼
+ 0x20cfd: "\x1e\a\U00020cfd", // 𠳽
+ 0x20cfe: "\x1e\a\U00020cfe", // 𠳾
+ 0x20cff: "\x1e\a\U00020cff", // 𠳿
+ 0x20d00: "\x1e\a\U00020d00", // 𠴀
+ 0x20d01: "\x1e\a\U00020d01", // 𠴁
+ 0x20d02: "\x1e\a\U00020d02", // 𠴂
+ 0x20d03: "\x1e\a\U00020d03", // 𠴃
+ 0x20d04: "\x1e\a\U00020d04", // 𠴄
+ 0x20d05: "\x1e\a\U00020d05", // 𠴅
+ 0x20d06: "\x1e\a\U00020d06", // 𠴆
+ 0x20d07: "\x1e\a\U00020d07", // 𠴇
+ 0x20d08: "\x1e\a\U00020d08", // 𠴈
+ 0x20d09: "\x1e\a\U00020d09", // 𠴉
+ 0x20d0a: "\x1e\a\U00020d0a", // 𠴊
+ 0x20d0b: "\x1e\a\U00020d0b", // 𠴋
+ 0x20d0c: "\x1e\a\U00020d0c", // 𠴌
+ 0x20d0d: "\x1e\a\U00020d0d", // 𠴍
+ 0x20d0e: "\x1e\a\U00020d0e", // 𠴎
+ 0x20d0f: "\x1e\a\U00020d0f", // 𠴏
+ 0x20d10: "\x1e\a\U00020d10", // 𠴐
+ 0x20d11: "\x1e\a\U00020d11", // 𠴑
+ 0x20d12: "\x1e\a\U00020d12", // 𠴒
+ 0x20d13: "\x1e\a\U00020d13", // 𠴓
+ 0x20d14: "\x1e\a\U00020d14", // 𠴔
+ 0x20d15: "\x1e\a\U00020d15", // 𠴕
+ 0x20d16: "\x1e\a\U00020d16", // 𠴖
+ 0x20d17: "\x1e\a\U00020d17", // 𠴗
+ 0x20d18: "\x1e\a\U00020d18", // 𠴘
+ 0x20d19: "\x1e\a\U00020d19", // 𠴙
+ 0x20d1a: "\x1e\a\U00020d1a", // 𠴚
+ 0x20d1b: "\x1e\a\U00020d1b", // 𠴛
+ 0x20d1c: "\x1e\a\U00020d1c", // 𠴜
+ 0x20d1d: "\x1e\a\U00020d1d", // 𠴝
+ 0x20d1e: "\x1e\a\U00020d1e", // 𠴞
+ 0x20d1f: "\x1e\a\U00020d1f", // 𠴟
+ 0x20d20: "\x1e\a\U00020d20", // 𠴠
+ 0x20d21: "\x1e\a\U00020d21", // 𠴡
+ 0x20d22: "\x1e\a\U00020d22", // 𠴢
+ 0x20d23: "\x1e\a\U00020d23", // 𠴣
+ 0x20d24: "\x1e\a\U00020d24", // 𠴤
+ 0x20d25: "\x1e\a\U00020d25", // 𠴥
+ 0x20d26: "`\x06\U00020d26", // 𠴦
+ 0x20d27: "\x1e\b\U00020d27", // 𠴧
+ 0x20d28: "\x1e\b\U00020d28", // 𠴨
+ 0x20d29: "\x1e\b\U00020d29", // 𠴩
+ 0x20d2a: "\x1e\b\U00020d2a", // 𠴪
+ 0x20d2b: "\x1e\b\U00020d2b", // 𠴫
+ 0x20d2c: "\x1e\b\U00020d2c", // 𠴬
+ 0x20d2d: "\x1e\b\U00020d2d", // 𠴭
+ 0x20d2e: "\x1e\b\U00020d2e", // 𠴮
+ 0x20d2f: "\x1e\b\U00020d2f", // 𠴯
+ 0x20d30: "\x1e\b\U00020d30", // 𠴰
+ 0x20d31: "\x1e\b\U00020d31", // 𠴱
+ 0x20d32: "\x1e\b\U00020d32", // 𠴲
+ 0x20d33: "\x1e\b\U00020d33", // 𠴳
+ 0x20d34: "\x1e\b\U00020d34", // 𠴴
+ 0x20d35: "\x1e\b\U00020d35", // 𠴵
+ 0x20d36: "\x1e\b\U00020d36", // 𠴶
+ 0x20d37: "\x1e\b\U00020d37", // 𠴷
+ 0x20d38: "\x1e\b\U00020d38", // 𠴸
+ 0x20d39: "\x1e\b\U00020d39", // 𠴹
+ 0x20d3a: "\x1e\b\U00020d3a", // 𠴺
+ 0x20d3b: "\x1e\b\U00020d3b", // 𠴻
+ 0x20d3c: "\x1e\b\U00020d3c", // 𠴼
+ 0x20d3d: "\x1e\b\U00020d3d", // 𠴽
+ 0x20d3e: "\x1e\b\U00020d3e", // 𠴾
+ 0x20d3f: "\x1e\b\U00020d3f", // 𠴿
+ 0x20d40: "\x1e\b\U00020d40", // 𠵀
+ 0x20d41: "\x1e\b\U00020d41", // 𠵁
+ 0x20d42: "\x1e\b\U00020d42", // 𠵂
+ 0x20d43: "\x1e\b\U00020d43", // 𠵃
+ 0x20d44: "\x1e\b\U00020d44", // 𠵄
+ 0x20d45: "\x1e\b\U00020d45", // 𠵅
+ 0x20d46: "\x1e\b\U00020d46", // 𠵆
+ 0x20d47: "\x1e\b\U00020d47", // 𠵇
+ 0x20d48: "\x1e\b\U00020d48", // 𠵈
+ 0x20d49: "\x1e\b\U00020d49", // 𠵉
+ 0x20d4a: "\x1e\b\U00020d4a", // 𠵊
+ 0x20d4b: "\x1e\b\U00020d4b", // 𠵋
+ 0x20d4c: "\x1e\b\U00020d4c", // 𠵌
+ 0x20d4d: "\x1e\b\U00020d4d", // 𠵍
+ 0x20d4e: "\x1e\b\U00020d4e", // 𠵎
+ 0x20d4f: "\x1e\b\U00020d4f", // 𠵏
+ 0x20d50: "\x1e\b\U00020d50", // 𠵐
+ 0x20d51: "\x1e\b\U00020d51", // 𠵑
+ 0x20d52: "\x1e\b\U00020d52", // 𠵒
+ 0x20d53: "\x1e\b\U00020d53", // 𠵓
+ 0x20d54: "\x1e\b\U00020d54", // 𠵔
+ 0x20d55: "\x1e\b\U00020d55", // 𠵕
+ 0x20d56: "\x1e\b\U00020d56", // 𠵖
+ 0x20d57: "\x1e\b\U00020d57", // 𠵗
+ 0x20d58: "\x1e\b\U00020d58", // 𠵘
+ 0x20d59: "\x1e\b\U00020d59", // 𠵙
+ 0x20d5a: "\x1e\b\U00020d5a", // 𠵚
+ 0x20d5b: "\x1e\b\U00020d5b", // 𠵛
+ 0x20d5c: "\x1e\b\U00020d5c", // 𠵜
+ 0x20d5d: "\x1e\b\U00020d5d", // 𠵝
+ 0x20d5e: "\x1e\b\U00020d5e", // 𠵞
+ 0x20d5f: "\x1e\b\U00020d5f", // 𠵟
+ 0x20d60: "\x1e\b\U00020d60", // 𠵠
+ 0x20d61: "\x1e\b\U00020d61", // 𠵡
+ 0x20d62: "\x1e\b\U00020d62", // 𠵢
+ 0x20d63: "\x1e\b\U00020d63", // 𠵣
+ 0x20d64: "\x1e\b\U00020d64", // 𠵤
+ 0x20d65: "\x1e\b\U00020d65", // 𠵥
+ 0x20d66: "\x1e\b\U00020d66", // 𠵦
+ 0x20d67: "\x1e\b\U00020d67", // 𠵧
+ 0x20d68: "\x1e\b\U00020d68", // 𠵨
+ 0x20d69: "\x1e\b\U00020d69", // 𠵩
+ 0x20d6a: "\x1e\b\U00020d6a", // 𠵪
+ 0x20d6b: "\x1e\b\U00020d6b", // 𠵫
+ 0x20d6c: "\x1e\b\U00020d6c", // 𠵬
+ 0x20d6d: "\x1e\b\U00020d6d", // 𠵭
+ 0x20d6e: "\x1e\b\U00020d6e", // 𠵮
+ 0x20d6f: "\x1e\b\U00020d6f", // 𠵯
+ 0x20d70: "\x1e\b\U00020d70", // 𠵰
+ 0x20d71: "\x1e\b\U00020d71", // 𠵱
+ 0x20d72: "\x1e\b\U00020d72", // 𠵲
+ 0x20d73: "\x1e\b\U00020d73", // 𠵳
+ 0x20d74: "\x1e\b\U00020d74", // 𠵴
+ 0x20d75: "\x1e\b\U00020d75", // 𠵵
+ 0x20d76: "\x1e\b\U00020d76", // 𠵶
+ 0x20d77: "\x1e\b\U00020d77", // 𠵷
+ 0x20d78: "\x1e\b\U00020d78", // 𠵸
+ 0x20d79: "\x1e\b\U00020d79", // 𠵹
+ 0x20d7a: "\x1e\b\U00020d7a", // 𠵺
+ 0x20d7b: "\x1e\b\U00020d7b", // 𠵻
+ 0x20d7c: "\x1e\b\U00020d7c", // 𠵼
+ 0x20d7d: "\x1e\b\U00020d7d", // 𠵽
+ 0x20d7e: "\x1e\b\U00020d7e", // 𠵾
+ 0x20d7f: "\x1e\b\U00020d7f", // 𠵿
+ 0x20d80: "\x1e\b\U00020d80", // 𠶀
+ 0x20d81: "\x1e\b\U00020d81", // 𠶁
+ 0x20d82: "\x1e\b\U00020d82", // 𠶂
+ 0x20d83: "\x1e\b\U00020d83", // 𠶃
+ 0x20d84: "\x1e\b\U00020d84", // 𠶄
+ 0x20d85: "\x1e\b\U00020d85", // 𠶅
+ 0x20d86: "\x1e\b\U00020d86", // 𠶆
+ 0x20d87: "\x1e\b\U00020d87", // 𠶇
+ 0x20d88: "\x1e\b\U00020d88", // 𠶈
+ 0x20d89: "\x1e\b\U00020d89", // 𠶉
+ 0x20d8a: "\x1e\b\U00020d8a", // 𠶊
+ 0x20d8b: "\x1e\b\U00020d8b", // 𠶋
+ 0x20d8c: "\x1e\b\U00020d8c", // 𠶌
+ 0x20d8d: "\x1e\b\U00020d8d", // 𠶍
+ 0x20d8e: "\x1e\b\U00020d8e", // 𠶎
+ 0x20d8f: "\x1e\b\U00020d8f", // 𠶏
+ 0x20d90: "\x1e\b\U00020d90", // 𠶐
+ 0x20d91: "\x1e\b\U00020d91", // 𠶑
+ 0x20d92: "\x1e\b\U00020d92", // 𠶒
+ 0x20d93: "\x1e\b\U00020d93", // 𠶓
+ 0x20d94: "\x1e\b\U00020d94", // 𠶔
+ 0x20d95: "\x1e\b\U00020d95", // 𠶕
+ 0x20d96: "\x1e\b\U00020d96", // 𠶖
+ 0x20d97: "\x1e\b\U00020d97", // 𠶗
+ 0x20d98: "\x1e\b\U00020d98", // 𠶘
+ 0x20d99: "\x1e\b\U00020d99", // 𠶙
+ 0x20d9a: "\x1e\b\U00020d9a", // 𠶚
+ 0x20d9b: "\x1e\b\U00020d9b", // 𠶛
+ 0x20d9c: "\x1e\b\U00020d9c", // 𠶜
+ 0x20d9d: "\x1e\b\U00020d9d", // 𠶝
+ 0x20d9e: "\x1e\b\U00020d9e", // 𠶞
+ 0x20d9f: "\x1e\b\U00020d9f", // 𠶟
+ 0x20da0: "\x1e\b\U00020da0", // 𠶠
+ 0x20da1: "\x1e\b\U00020da1", // 𠶡
+ 0x20da2: "\x1e\b\U00020da2", // 𠶢
+ 0x20da3: "\x1e\b\U00020da3", // 𠶣
+ 0x20da4: "\x1e\b\U00020da4", // 𠶤
+ 0x20da5: "\x1e\b\U00020da5", // 𠶥
+ 0x20da6: "\x1e\b\U00020da6", // 𠶦
+ 0x20da7: "\x1e\b\U00020da7", // 𠶧
+ 0x20da8: "\x1e\b\U00020da8", // 𠶨
+ 0x20da9: "\x1e\b\U00020da9", // 𠶩
+ 0x20daa: "\x1e\b\U00020daa", // 𠶪
+ 0x20dab: "\x1e\b\U00020dab", // 𠶫
+ 0x20dac: "\x1e\b\U00020dac", // 𠶬
+ 0x20dad: "\x1e\b\U00020dad", // 𠶭
+ 0x20dae: "\x1e\b\U00020dae", // 𠶮
+ 0x20daf: "\x1e\b\U00020daf", // 𠶯
+ 0x20db0: "\x1e\b\U00020db0", // 𠶰
+ 0x20db1: "\x1e\b\U00020db1", // 𠶱
+ 0x20db2: "\x1e\b\U00020db2", // 𠶲
+ 0x20db3: "\x1e\b\U00020db3", // 𠶳
+ 0x20db4: "\x1e\b\U00020db4", // 𠶴
+ 0x20db5: "\x1e\b\U00020db5", // 𠶵
+ 0x20db6: "\x1e\b\U00020db6", // 𠶶
+ 0x20db7: "\x1e\t\U00020db7", // 𠶷
+ 0x20db8: "\x1e\t\U00020db8", // 𠶸
+ 0x20db9: "\x1e\t\U00020db9", // 𠶹
+ 0x20dba: "\x1e\t\U00020dba", // 𠶺
+ 0x20dbb: "\x1e\t\U00020dbb", // 𠶻
+ 0x20dbc: "\x1e\t\U00020dbc", // 𠶼
+ 0x20dbd: "\x1e\t\U00020dbd", // 𠶽
+ 0x20dbe: "\x1e\t\U00020dbe", // 𠶾
+ 0x20dbf: "\x1e\t\U00020dbf", // 𠶿
+ 0x20dc0: "\x1e\t\U00020dc0", // 𠷀
+ 0x20dc1: "\x1e\t\U00020dc1", // 𠷁
+ 0x20dc2: "\x1e\t\U00020dc2", // 𠷂
+ 0x20dc3: "\x1e\t\U00020dc3", // 𠷃
+ 0x20dc4: "\x1e\t\U00020dc4", // 𠷄
+ 0x20dc5: "\x1e\t\U00020dc5", // 𠷅
+ 0x20dc6: "\x1e\t\U00020dc6", // 𠷆
+ 0x20dc7: "\x1e\t\U00020dc7", // 𠷇
+ 0x20dc8: "\x1e\t\U00020dc8", // 𠷈
+ 0x20dc9: "\x1e\t\U00020dc9", // 𠷉
+ 0x20dca: "\x1e\t\U00020dca", // 𠷊
+ 0x20dcb: "\x1e\t\U00020dcb", // 𠷋
+ 0x20dcc: "\x1e\t\U00020dcc", // 𠷌
+ 0x20dcd: "\x1e\t\U00020dcd", // 𠷍
+ 0x20dce: "\x1e\t\U00020dce", // 𠷎
+ 0x20dcf: "\x1e\t\U00020dcf", // 𠷏
+ 0x20dd0: "\x1e\t\U00020dd0", // 𠷐
+ 0x20dd1: "\x1e\t\U00020dd1", // 𠷑
+ 0x20dd2: "\x1e\t\U00020dd2", // 𠷒
+ 0x20dd3: "\x1e\t\U00020dd3", // 𠷓
+ 0x20dd4: "\x1e\t\U00020dd4", // 𠷔
+ 0x20dd5: "\x1e\t\U00020dd5", // 𠷕
+ 0x20dd6: "\x1e\t\U00020dd6", // 𠷖
+ 0x20dd7: "\x1e\t\U00020dd7", // 𠷗
+ 0x20dd8: "\x1e\t\U00020dd8", // 𠷘
+ 0x20dd9: "\x1e\t\U00020dd9", // 𠷙
+ 0x20dda: "\x1e\t\U00020dda", // 𠷚
+ 0x20ddb: "\x1e\t\U00020ddb", // 𠷛
+ 0x20ddc: "\x1e\t\U00020ddc", // 𠷜
+ 0x20ddd: "\x1e\t\U00020ddd", // 𠷝
+ 0x20dde: "\x1e\t\U00020dde", // 𠷞
+ 0x20ddf: "\x1e\t\U00020ddf", // 𠷟
+ 0x20de0: "\x1e\t\U00020de0", // 𠷠
+ 0x20de1: "\x1e\t\U00020de1", // 𠷡
+ 0x20de2: "\x1e\n\U00020de2", // 𠷢
+ 0x20de3: "\x1e\t\U00020de3", // 𠷣
+ 0x20de4: "\x1e\t\U00020de4", // 𠷤
+ 0x20de5: "\x1e\t\U00020de5", // 𠷥
+ 0x20de6: "\x1e\t\U00020de6", // 𠷦
+ 0x20de7: "\x1e\t\U00020de7", // 𠷧
+ 0x20de8: "\x1e\t\U00020de8", // 𠷨
+ 0x20de9: "\x1e\t\U00020de9", // 𠷩
+ 0x20dea: "\x1e\t\U00020dea", // 𠷪
+ 0x20deb: "\x1e\t\U00020deb", // 𠷫
+ 0x20dec: "\x1e\t\U00020dec", // 𠷬
+ 0x20ded: "\x1e\t\U00020ded", // 𠷭
+ 0x20dee: "\x1e\t\U00020dee", // 𠷮
+ 0x20def: "\x1e\t\U00020def", // 𠷯
+ 0x20df0: "\x1e\t\U00020df0", // 𠷰
+ 0x20df1: "\x1e\t\U00020df1", // 𠷱
+ 0x20df2: "\x1e\t\U00020df2", // 𠷲
+ 0x20df3: "\x1e\t\U00020df3", // 𠷳
+ 0x20df4: "\x1e\t\U00020df4", // 𠷴
+ 0x20df5: "\x1e\t\U00020df5", // 𠷵
+ 0x20df6: "\x1e\t\U00020df6", // 𠷶
+ 0x20df7: "\x1e\t\U00020df7", // 𠷷
+ 0x20df8: "\x1e\t\U00020df8", // 𠷸
+ 0x20df9: "\x1e\t\U00020df9", // 𠷹
+ 0x20dfa: "\x1e\t\U00020dfa", // 𠷺
+ 0x20dfb: "\x1e\t\U00020dfb", // 𠷻
+ 0x20dfc: "\x1e\t\U00020dfc", // 𠷼
+ 0x20dfd: "\x1e\t\U00020dfd", // 𠷽
+ 0x20dfe: "\x1e\t\U00020dfe", // 𠷾
+ 0x20dff: "\x1e\t\U00020dff", // 𠷿
+ 0x20e00: "\x1e\t\U00020e00", // 𠸀
+ 0x20e01: "\x1e\t\U00020e01", // 𠸁
+ 0x20e02: "\x1e\t\U00020e02", // 𠸂
+ 0x20e03: "\x1e\t\U00020e03", // 𠸃
+ 0x20e04: "\x1e\t\U00020e04", // 𠸄
+ 0x20e05: "\x1e\t\U00020e05", // 𠸅
+ 0x20e06: "\x1e\t\U00020e06", // 𠸆
+ 0x20e07: "\x1e\t\U00020e07", // 𠸇
+ 0x20e08: "\x1e\t\U00020e08", // 𠸈
+ 0x20e09: "\x1e\t\U00020e09", // 𠸉
+ 0x20e0a: "\x1e\t\U00020e0a", // 𠸊
+ 0x20e0b: "\x1e\t\U00020e0b", // 𠸋
+ 0x20e0c: "\x1e\t\U00020e0c", // 𠸌
+ 0x20e0d: "\x1e\t\U00020e0d", // 𠸍
+ 0x20e0e: "\x1e\t\U00020e0e", // 𠸎
+ 0x20e0f: "\x1e\t\U00020e0f", // 𠸏
+ 0x20e10: "\x1e\t\U00020e10", // 𠸐
+ 0x20e11: "\x1e\t\U00020e11", // 𠸑
+ 0x20e12: "\x1e\t\U00020e12", // 𠸒
+ 0x20e13: "\x1e\t\U00020e13", // 𠸓
+ 0x20e14: "\x1e\t\U00020e14", // 𠸔
+ 0x20e15: "\x1e\t\U00020e15", // 𠸕
+ 0x20e16: "\x1e\t\U00020e16", // 𠸖
+ 0x20e17: "\x1e\t\U00020e17", // 𠸗
+ 0x20e18: "\x1e\t\U00020e18", // 𠸘
+ 0x20e19: "\x1e\t\U00020e19", // 𠸙
+ 0x20e1a: "\x1e\t\U00020e1a", // 𠸚
+ 0x20e1b: "\x1e\t\U00020e1b", // 𠸛
+ 0x20e1c: "\x1e\t\U00020e1c", // 𠸜
+ 0x20e1d: "\x1e\t\U00020e1d", // 𠸝
+ 0x20e1e: "\x1e\t\U00020e1e", // 𠸞
+ 0x20e1f: "\x1e\t\U00020e1f", // 𠸟
+ 0x20e20: "\x1e\t\U00020e20", // 𠸠
+ 0x20e21: "\x1e\t\U00020e21", // 𠸡
+ 0x20e22: "\x1e\t\U00020e22", // 𠸢
+ 0x20e23: "\x1e\t\U00020e23", // 𠸣
+ 0x20e24: "\x1e\t\U00020e24", // 𠸤
+ 0x20e25: "\x1e\t\U00020e25", // 𠸥
+ 0x20e26: "\x1e\t\U00020e26", // 𠸦
+ 0x20e27: "\x1e\t\U00020e27", // 𠸧
+ 0x20e28: "\x1e\t\U00020e28", // 𠸨
+ 0x20e29: "\x1e\t\U00020e29", // 𠸩
+ 0x20e2a: "\x1e\t\U00020e2a", // 𠸪
+ 0x20e2b: "\x1e\t\U00020e2b", // 𠸫
+ 0x20e2c: "\x1e\t\U00020e2c", // 𠸬
+ 0x20e2d: "\x1e\t\U00020e2d", // 𠸭
+ 0x20e2e: "\x1e\t\U00020e2e", // 𠸮
+ 0x20e2f: "\x1e\t\U00020e2f", // 𠸯
+ 0x20e30: "\x1e\t\U00020e30", // 𠸰
+ 0x20e31: "\x1e\t\U00020e31", // 𠸱
+ 0x20e32: "\x1e\t\U00020e32", // 𠸲
+ 0x20e33: "\x1e\t\U00020e33", // 𠸳
+ 0x20e34: "\x1e\t\U00020e34", // 𠸴
+ 0x20e35: "\x1e\t\U00020e35", // 𠸵
+ 0x20e36: "\x1e\n\U00020e36", // 𠸶
+ 0x20e37: "\x1e\n\U00020e37", // 𠸷
+ 0x20e38: "\x1e\n\U00020e38", // 𠸸
+ 0x20e39: "\x1e\n\U00020e39", // 𠸹
+ 0x20e3a: "\x1e\n\U00020e3a", // 𠸺
+ 0x20e3b: "\x1e\t\U00020e3b", // 𠸻
+ 0x20e3c: "\x1e\t\U00020e3c", // 𠸼
+ 0x20e3d: "\x1e\t\U00020e3d", // 𠸽
+ 0x20e3e: "\x1e\t\U00020e3e", // 𠸾
+ 0x20e3f: "\x1e\n\U00020e3f", // 𠸿
+ 0x20e40: "\x1e\n\U00020e40", // 𠹀
+ 0x20e41: "\x1e\n\U00020e41", // 𠹁
+ 0x20e42: "\x1e\n\U00020e42", // 𠹂
+ 0x20e43: "\x1e\n\U00020e43", // 𠹃
+ 0x20e44: "\x1e\n\U00020e44", // 𠹄
+ 0x20e45: "\x1e\n\U00020e45", // 𠹅
+ 0x20e46: "\x1e\n\U00020e46", // 𠹆
+ 0x20e47: "\x1e\n\U00020e47", // 𠹇
+ 0x20e48: "\x1e\n\U00020e48", // 𠹈
+ 0x20e49: "\x1e\n\U00020e49", // 𠹉
+ 0x20e4a: "\x1e\n\U00020e4a", // 𠹊
+ 0x20e4b: "\x1e\n\U00020e4b", // 𠹋
+ 0x20e4c: "\x1e\n\U00020e4c", // 𠹌
+ 0x20e4d: "\x1e\n\U00020e4d", // 𠹍
+ 0x20e4e: "\x1e\n\U00020e4e", // 𠹎
+ 0x20e4f: "\x1e\n\U00020e4f", // 𠹏
+ 0x20e50: "\x1e\n\U00020e50", // 𠹐
+ 0x20e51: "\x1e\n\U00020e51", // 𠹑
+ 0x20e52: "\x1e\n\U00020e52", // 𠹒
+ 0x20e53: "\x1e\n\U00020e53", // 𠹓
+ 0x20e54: "\x1e\n\U00020e54", // 𠹔
+ 0x20e55: "\x1e\n\U00020e55", // 𠹕
+ 0x20e56: "\x1e\n\U00020e56", // 𠹖
+ 0x20e57: "\x1e\n\U00020e57", // 𠹗
+ 0x20e58: "\x1e\n\U00020e58", // 𠹘
+ 0x20e59: "\x1e\n\U00020e59", // 𠹙
+ 0x20e5a: "\x1e\n\U00020e5a", // 𠹚
+ 0x20e5b: "\x1e\n\U00020e5b", // 𠹛
+ 0x20e5c: "\x1e\n\U00020e5c", // 𠹜
+ 0x20e5d: "\x1e\n\U00020e5d", // 𠹝
+ 0x20e5e: "\x1e\n\U00020e5e", // 𠹞
+ 0x20e5f: "\x1e\n\U00020e5f", // 𠹟
+ 0x20e60: "\x1e\n\U00020e60", // 𠹠
+ 0x20e61: "\x1e\n\U00020e61", // 𠹡
+ 0x20e62: "\x1e\n\U00020e62", // 𠹢
+ 0x20e63: "\x1e\n\U00020e63", // 𠹣
+ 0x20e64: "\x1e\n\U00020e64", // 𠹤
+ 0x20e65: "\x1e\n\U00020e65", // 𠹥
+ 0x20e66: "\x1e\n\U00020e66", // 𠹦
+ 0x20e67: "\x1e\n\U00020e67", // 𠹧
+ 0x20e68: "\x1e\n\U00020e68", // 𠹨
+ 0x20e69: "\x1e\n\U00020e69", // 𠹩
+ 0x20e6a: "\x1e\n\U00020e6a", // 𠹪
+ 0x20e6b: "\x1e\n\U00020e6b", // 𠹫
+ 0x20e6c: "\x1e\n\U00020e6c", // 𠹬
+ 0x20e6d: "\x1e\n\U00020e6d", // 𠹭
+ 0x20e6e: "\x1e\n\U00020e6e", // 𠹮
+ 0x20e6f: "\x1e\n\U00020e6f", // 𠹯
+ 0x20e70: "\x1e\f\U00020e70", // 𠹰
+ 0x20e71: "\x1e\f\U00020e71", // 𠹱
+ 0x20e72: "\x1e\f\U00020e72", // 𠹲
+ 0x20e73: "\x1e\n\U00020e73", // 𠹳
+ 0x20e74: "\x1e\n\U00020e74", // 𠹴
+ 0x20e75: "\x1e\n\U00020e75", // 𠹵
+ 0x20e76: "\x1e\n\U00020e76", // 𠹶
+ 0x20e77: "\x1e\n\U00020e77", // 𠹷
+ 0x20e78: "\x1e\n\U00020e78", // 𠹸
+ 0x20e79: "\x1e\n\U00020e79", // 𠹹
+ 0x20e7a: "\x1e\n\U00020e7a", // 𠹺
+ 0x20e7b: "\x1e\n\U00020e7b", // 𠹻
+ 0x20e7c: "\x1e\n\U00020e7c", // 𠹼
+ 0x20e7d: "\x1e\n\U00020e7d", // 𠹽
+ 0x20e7e: "\x1e\n\U00020e7e", // 𠹾
+ 0x20e7f: "\x1e\n\U00020e7f", // 𠹿
+ 0x20e80: "\x1e\n\U00020e80", // 𠺀
+ 0x20e81: "\x1e\n\U00020e81", // 𠺁
+ 0x20e82: "\x1e\n\U00020e82", // 𠺂
+ 0x20e83: "\x1e\n\U00020e83", // 𠺃
+ 0x20e84: "\x1e\n\U00020e84", // 𠺄
+ 0x20e85: "\x1e\n\U00020e85", // 𠺅
+ 0x20e86: "\x1e\n\U00020e86", // 𠺆
+ 0x20e87: "\x1e\n\U00020e87", // 𠺇
+ 0x20e88: "\x1e\n\U00020e88", // 𠺈
+ 0x20e89: "\x1e\n\U00020e89", // 𠺉
+ 0x20e8a: "\x1e\n\U00020e8a", // 𠺊
+ 0x20e8b: "\x1e\n\U00020e8b", // 𠺋
+ 0x20e8c: "\x1e\n\U00020e8c", // 𠺌
+ 0x20e8d: "\x1e\n\U00020e8d", // 𠺍
+ 0x20e8e: "\x1e\n\U00020e8e", // 𠺎
+ 0x20e8f: "\x1e\n\U00020e8f", // 𠺏
+ 0x20e90: "\x1e\n\U00020e90", // 𠺐
+ 0x20e91: "\x1e\n\U00020e91", // 𠺑
+ 0x20e92: "\x1e\n\U00020e92", // 𠺒
+ 0x20e93: "\x1e\n\U00020e93", // 𠺓
+ 0x20e94: "\x1e\n\U00020e94", // 𠺔
+ 0x20e95: "\x1e\n\U00020e95", // 𠺕
+ 0x20e96: "\x1e\n\U00020e96", // 𠺖
+ 0x20e97: "\x1e\n\U00020e97", // 𠺗
+ 0x20e98: "\x1e\n\U00020e98", // 𠺘
+ 0x20e99: "\x1e\n\U00020e99", // 𠺙
+ 0x20e9a: "\x1e\n\U00020e9a", // 𠺚
+ 0x20e9b: "\x1e\n\U00020e9b", // 𠺛
+ 0x20e9c: "\x1e\n\U00020e9c", // 𠺜
+ 0x20e9d: "\x1e\n\U00020e9d", // 𠺝
+ 0x20e9e: "\x1e\n\U00020e9e", // 𠺞
+ 0x20e9f: "\x1e\n\U00020e9f", // 𠺟
+ 0x20ea0: "\x1e\n\U00020ea0", // 𠺠
+ 0x20ea1: "\x1e\n\U00020ea1", // 𠺡
+ 0x20ea2: "\x1e\n\U00020ea2", // 𠺢
+ 0x20ea3: "\x1e\n\U00020ea3", // 𠺣
+ 0x20ea4: "\x1e\n\U00020ea4", // 𠺤
+ 0x20ea5: "\x1e\n\U00020ea5", // 𠺥
+ 0x20ea6: "\x1e\n\U00020ea6", // 𠺦
+ 0x20ea7: "\x1e\n\U00020ea7", // 𠺧
+ 0x20ea8: "\x1e\n\U00020ea8", // 𠺨
+ 0x20ea9: "\x1e\n\U00020ea9", // 𠺩
+ 0x20eaa: "\x1e\n\U00020eaa", // 𠺪
+ 0x20eab: "\x1e\n\U00020eab", // 𠺫
+ 0x20eac: "\x1e\n\U00020eac", // 𠺬
+ 0x20ead: "\x1e\n\U00020ead", // 𠺭
+ 0x20eae: "\x1e\n\U00020eae", // 𠺮
+ 0x20eaf: "\x1e\n\U00020eaf", // 𠺯
+ 0x20eb0: "\x1e\n\U00020eb0", // 𠺰
+ 0x20eb1: "\x1e\n\U00020eb1", // 𠺱
+ 0x20eb2: "\x1e\n\U00020eb2", // 𠺲
+ 0x20eb3: "\x1e\n\U00020eb3", // 𠺳
+ 0x20eb4: "\x1e\n\U00020eb4", // 𠺴
+ 0x20eb5: "\x1e\n\U00020eb5", // 𠺵
+ 0x20eb6: "\x1e\n\U00020eb6", // 𠺶
+ 0x20eb7: "\x1e\n\U00020eb7", // 𠺷
+ 0x20eb8: "\x1e\n\U00020eb8", // 𠺸
+ 0x20eb9: "\x1e\n\U00020eb9", // 𠺹
+ 0x20eba: "\x1e\n\U00020eba", // 𠺺
+ 0x20ebb: "\x1e\n\U00020ebb", // 𠺻
+ 0x20ebc: "\x1e\n\U00020ebc", // 𠺼
+ 0x20ebd: "\x1e\n\U00020ebd", // 𠺽
+ 0x20ebe: "\x1e\n\U00020ebe", // 𠺾
+ 0x20ebf: "\x1e\n\U00020ebf", // 𠺿
+ 0x20ec0: "\x1e\n\U00020ec0", // 𠻀
+ 0x20ec1: "\x1e\n\U00020ec1", // 𠻁
+ 0x20ec2: "\x1e\n\U00020ec2", // 𠻂
+ 0x20ec3: "\x1e\n\U00020ec3", // 𠻃
+ 0x20ec4: "\x1e\n\U00020ec4", // 𠻄
+ 0x20ec5: "\x1e\n\U00020ec5", // 𠻅
+ 0x20ec6: "\x1e\n\U00020ec6", // 𠻆
+ 0x20ec7: "\x1e\n\U00020ec7", // 𠻇
+ 0x20ec8: "\x1e\n\U00020ec8", // 𠻈
+ 0x20ec9: "\x1e\n\U00020ec9", // 𠻉
+ 0x20eca: "\x1e\n\U00020eca", // 𠻊
+ 0x20ecb: "\x1e\n\U00020ecb", // 𠻋
+ 0x20ecc: "\x1e\n\U00020ecc", // 𠻌
+ 0x20ecd: "\x1e\n\U00020ecd", // 𠻍
+ 0x20ece: "\x1e\n\U00020ece", // 𠻎
+ 0x20ecf: "\x1e\n\U00020ecf", // 𠻏
+ 0x20ed0: "\x1e\n\U00020ed0", // 𠻐
+ 0x20ed1: "\x1e\n\U00020ed1", // 𠻑
+ 0x20ed2: "\x1e\n\U00020ed2", // 𠻒
+ 0x20ed3: "\x1e\n\U00020ed3", // 𠻓
+ 0x20ed4: "\x1e\v\U00020ed4", // 𠻔
+ 0x20ed5: "\x1e\v\U00020ed5", // 𠻕
+ 0x20ed6: "\x1e\v\U00020ed6", // 𠻖
+ 0x20ed7: "\x1e\v\U00020ed7", // 𠻗
+ 0x20ed8: "\x1e\v\U00020ed8", // 𠻘
+ 0x20ed9: "\x1e\v\U00020ed9", // 𠻙
+ 0x20eda: "\x1e\v\U00020eda", // 𠻚
+ 0x20edb: "\x1e\v\U00020edb", // 𠻛
+ 0x20edc: "\x1e\v\U00020edc", // 𠻜
+ 0x20edd: "\x1e\v\U00020edd", // 𠻝
+ 0x20ede: "\x1e\v\U00020ede", // 𠻞
+ 0x20edf: "\x1e\v\U00020edf", // 𠻟
+ 0x20ee0: "\x1e\v\U00020ee0", // 𠻠
+ 0x20ee1: "\x1e\v\U00020ee1", // 𠻡
+ 0x20ee2: "\x1e\v\U00020ee2", // 𠻢
+ 0x20ee3: "\x1e\v\U00020ee3", // 𠻣
+ 0x20ee4: "\x1e\v\U00020ee4", // 𠻤
+ 0x20ee5: "\x1e\v\U00020ee5", // 𠻥
+ 0x20ee6: "\x1e\v\U00020ee6", // 𠻦
+ 0x20ee7: "\x1e\v\U00020ee7", // 𠻧
+ 0x20ee8: "\x1e\v\U00020ee8", // 𠻨
+ 0x20ee9: "\x1e\v\U00020ee9", // 𠻩
+ 0x20eea: "\x1e\v\U00020eea", // 𠻪
+ 0x20eeb: "\x1e\v\U00020eeb", // 𠻫
+ 0x20eec: "\x1e\v\U00020eec", // 𠻬
+ 0x20eed: "\x1e\v\U00020eed", // 𠻭
+ 0x20eee: "\x1e\v\U00020eee", // 𠻮
+ 0x20eef: "\x1e\v\U00020eef", // 𠻯
+ 0x20ef0: "\x1e\v\U00020ef0", // 𠻰
+ 0x20ef1: "\x1e\v\U00020ef1", // 𠻱
+ 0x20ef2: "\x1e\v\U00020ef2", // 𠻲
+ 0x20ef3: "\x1e\v\U00020ef3", // 𠻳
+ 0x20ef4: "\x1e\v\U00020ef4", // 𠻴
+ 0x20ef5: "\x1e\v\U00020ef5", // 𠻵
+ 0x20ef6: "\x1e\v\U00020ef6", // 𠻶
+ 0x20ef7: "\x1e\v\U00020ef7", // 𠻷
+ 0x20ef8: "\x1e\v\U00020ef8", // 𠻸
+ 0x20ef9: "\x1e\v\U00020ef9", // 𠻹
+ 0x20efa: "\x1e\v\U00020efa", // 𠻺
+ 0x20efb: "\x1e\v\U00020efb", // 𠻻
+ 0x20efc: "\x1e\v\U00020efc", // 𠻼
+ 0x20efd: "\x1e\v\U00020efd", // 𠻽
+ 0x20efe: "\x1e\v\U00020efe", // 𠻾
+ 0x20eff: "\x1e\v\U00020eff", // 𠻿
+ 0x20f00: "\x1e\v\U00020f00", // 𠼀
+ 0x20f01: "\x1e\v\U00020f01", // 𠼁
+ 0x20f02: "\x1e\v\U00020f02", // 𠼂
+ 0x20f03: "\x1e\v\U00020f03", // 𠼃
+ 0x20f04: "\x1e\v\U00020f04", // 𠼄
+ 0x20f05: "\x1e\v\U00020f05", // 𠼅
+ 0x20f06: "\x1e\v\U00020f06", // 𠼆
+ 0x20f07: "\x1e\v\U00020f07", // 𠼇
+ 0x20f08: "\x1e\v\U00020f08", // 𠼈
+ 0x20f09: "\x1e\v\U00020f09", // 𠼉
+ 0x20f0a: "\x1e\v\U00020f0a", // 𠼊
+ 0x20f0b: "\x1e\v\U00020f0b", // 𠼋
+ 0x20f0c: "\x1e\v\U00020f0c", // 𠼌
+ 0x20f0d: "\x1e\v\U00020f0d", // 𠼍
+ 0x20f0e: "\x1e\v\U00020f0e", // 𠼎
+ 0x20f0f: "\x1e\v\U00020f0f", // 𠼏
+ 0x20f10: "\x1e\v\U00020f10", // 𠼐
+ 0x20f11: "\x1e\v\U00020f11", // 𠼑
+ 0x20f12: "\x1e\v\U00020f12", // 𠼒
+ 0x20f13: "\x1e\v\U00020f13", // 𠼓
+ 0x20f14: "\x1e\v\U00020f14", // 𠼔
+ 0x20f15: "\x1e\v\U00020f15", // 𠼕
+ 0x20f16: "\x1e\v\U00020f16", // 𠼖
+ 0x20f17: "\x1e\v\U00020f17", // 𠼗
+ 0x20f18: "\x1e\v\U00020f18", // 𠼘
+ 0x20f19: "\x1e\v\U00020f19", // 𠼙
+ 0x20f1a: "\x1e\v\U00020f1a", // 𠼚
+ 0x20f1b: "\x1e\v\U00020f1b", // 𠼛
+ 0x20f1c: "\x1e\v\U00020f1c", // 𠼜
+ 0x20f1d: "\x1e\v\U00020f1d", // 𠼝
+ 0x20f1e: "\x1e\v\U00020f1e", // 𠼞
+ 0x20f1f: "\x1e\v\U00020f1f", // 𠼟
+ 0x20f20: "\x1e\v\U00020f20", // 𠼠
+ 0x20f21: "\x1e\v\U00020f21", // 𠼡
+ 0x20f22: "\x1e\v\U00020f22", // 𠼢
+ 0x20f23: "\x1e\v\U00020f23", // 𠼣
+ 0x20f24: "\x1e\v\U00020f24", // 𠼤
+ 0x20f25: "\x1e\v\U00020f25", // 𠼥
+ 0x20f26: "\x1e\v\U00020f26", // 𠼦
+ 0x20f27: "\x1e\v\U00020f27", // 𠼧
+ 0x20f28: "\x1e\v\U00020f28", // 𠼨
+ 0x20f29: "\x1e\v\U00020f29", // 𠼩
+ 0x20f2a: "\x1e\v\U00020f2a", // 𠼪
+ 0x20f2b: "\x1e\v\U00020f2b", // 𠼫
+ 0x20f2c: "\x1e\v\U00020f2c", // 𠼬
+ 0x20f2d: "\x1e\v\U00020f2d", // 𠼭
+ 0x20f2e: "\x1e\v\U00020f2e", // 𠼮
+ 0x20f2f: "\x1e\v\U00020f2f", // 𠼯
+ 0x20f30: "\x1e\v\U00020f30", // 𠼰
+ 0x20f31: "\x1e\v\U00020f31", // 𠼱
+ 0x20f32: "\x1e\v\U00020f32", // 𠼲
+ 0x20f33: "\x1e\v\U00020f33", // 𠼳
+ 0x20f34: "\x1e\v\U00020f34", // 𠼴
+ 0x20f35: "\x1e\v\U00020f35", // 𠼵
+ 0x20f36: "\x1e\v\U00020f36", // 𠼶
+ 0x20f37: "\x1e\v\U00020f37", // 𠼷
+ 0x20f38: "\x1e\v\U00020f38", // 𠼸
+ 0x20f39: "\x1e\v\U00020f39", // 𠼹
+ 0x20f3a: "\x1e\v\U00020f3a", // 𠼺
+ 0x20f3b: "\x1e\v\U00020f3b", // 𠼻
+ 0x20f3c: "\x1e\v\U00020f3c", // 𠼼
+ 0x20f3d: "\x1e\v\U00020f3d", // 𠼽
+ 0x20f3e: "\x1e\v\U00020f3e", // 𠼾
+ 0x20f3f: "\x1e\v\U00020f3f", // 𠼿
+ 0x20f40: "\x1e\v\U00020f40", // 𠽀
+ 0x20f41: "\x1e\v\U00020f41", // 𠽁
+ 0x20f42: "\x1e\v\U00020f42", // 𠽂
+ 0x20f43: "\x1e\v\U00020f43", // 𠽃
+ 0x20f44: "\x1e\v\U00020f44", // 𠽄
+ 0x20f45: "\x1e\v\U00020f45", // 𠽅
+ 0x20f46: "\x1e\v\U00020f46", // 𠽆
+ 0x20f47: "\x1e\v\U00020f47", // 𠽇
+ 0x20f48: "\x1e\v\U00020f48", // 𠽈
+ 0x20f49: "\x1e\v\U00020f49", // 𠽉
+ 0x20f4a: "\x1e\v\U00020f4a", // 𠽊
+ 0x20f4b: "\x1e\v\U00020f4b", // 𠽋
+ 0x20f4c: "\x1e\v\U00020f4c", // 𠽌
+ 0x20f4d: "\x1e\v\U00020f4d", // 𠽍
+ 0x20f4e: "\x1e\v\U00020f4e", // 𠽎
+ 0x20f4f: "\x1e\v\U00020f4f", // 𠽏
+ 0x20f50: "\x1e\v\U00020f50", // 𠽐
+ 0x20f51: "\x1e\v\U00020f51", // 𠽑
+ 0x20f52: "\x1e\v\U00020f52", // 𠽒
+ 0x20f53: "\x1e\v\U00020f53", // 𠽓
+ 0x20f54: "\x1e\v\U00020f54", // 𠽔
+ 0x20f55: "\x1e\v\U00020f55", // 𠽕
+ 0x20f56: "\x1e\v\U00020f56", // 𠽖
+ 0x20f57: "\x1e\v\U00020f57", // 𠽗
+ 0x20f58: "\x1e\v\U00020f58", // 𠽘
+ 0x20f59: "\x1e\v\U00020f59", // 𠽙
+ 0x20f5a: "\x1e\v\U00020f5a", // 𠽚
+ 0x20f5b: "\x1e\v\U00020f5b", // 𠽛
+ 0x20f5c: "\x1e\v\U00020f5c", // 𠽜
+ 0x20f5d: "\x1e\v\U00020f5d", // 𠽝
+ 0x20f5e: "\x1e\v\U00020f5e", // 𠽞
+ 0x20f5f: "\x1e\v\U00020f5f", // 𠽟
+ 0x20f60: "\x1e\v\U00020f60", // 𠽠
+ 0x20f61: "\x1e\f\U00020f61", // 𠽡
+ 0x20f62: "\x1e\f\U00020f62", // 𠽢
+ 0x20f63: "\x1e\f\U00020f63", // 𠽣
+ 0x20f64: "\x1e\f\U00020f64", // 𠽤
+ 0x20f65: "\x1e\f\U00020f65", // 𠽥
+ 0x20f66: "\x1e\f\U00020f66", // 𠽦
+ 0x20f67: "\x1e\f\U00020f67", // 𠽧
+ 0x20f68: "\x1e\f\U00020f68", // 𠽨
+ 0x20f69: "\x1e\f\U00020f69", // 𠽩
+ 0x20f6a: "\x1e\f\U00020f6a", // 𠽪
+ 0x20f6b: "\x1e\f\U00020f6b", // 𠽫
+ 0x20f6c: "\x1e\f\U00020f6c", // 𠽬
+ 0x20f6d: "\x1e\f\U00020f6d", // 𠽭
+ 0x20f6e: "\x1e\f\U00020f6e", // 𠽮
+ 0x20f6f: "\x1e\f\U00020f6f", // 𠽯
+ 0x20f70: "\x1e\f\U00020f70", // 𠽰
+ 0x20f71: "\x1e\f\U00020f71", // 𠽱
+ 0x20f72: "\x1e\f\U00020f72", // 𠽲
+ 0x20f73: "\x1e\f\U00020f73", // 𠽳
+ 0x20f74: "\x1e\f\U00020f74", // 𠽴
+ 0x20f75: "\x1e\f\U00020f75", // 𠽵
+ 0x20f76: "\x1e\f\U00020f76", // 𠽶
+ 0x20f77: "\x1e\f\U00020f77", // 𠽷
+ 0x20f78: "\x1e\f\U00020f78", // 𠽸
+ 0x20f79: "\x1e\f\U00020f79", // 𠽹
+ 0x20f7a: "\x1e\f\U00020f7a", // 𠽺
+ 0x20f7b: "\x1e\f\U00020f7b", // 𠽻
+ 0x20f7c: "\x1e\f\U00020f7c", // 𠽼
+ 0x20f7d: "\x1e\f\U00020f7d", // 𠽽
+ 0x20f7e: "\x1e\f\U00020f7e", // 𠽾
+ 0x20f7f: "\x1e\f\U00020f7f", // 𠽿
+ 0x20f80: "\x1e\f\U00020f80", // 𠾀
+ 0x20f81: "\x1e\f\U00020f81", // 𠾁
+ 0x20f82: "\x1e\f\U00020f82", // 𠾂
+ 0x20f83: "\x1e\f\U00020f83", // 𠾃
+ 0x20f84: "\x1e\f\U00020f84", // 𠾄
+ 0x20f85: "\x1e\f\U00020f85", // 𠾅
+ 0x20f86: "\x1e\f\U00020f86", // 𠾆
+ 0x20f87: "\x1e\f\U00020f87", // 𠾇
+ 0x20f88: "\x1e\f\U00020f88", // 𠾈
+ 0x20f89: "\x1e\f\U00020f89", // 𠾉
+ 0x20f8a: "\x1e\f\U00020f8a", // 𠾊
+ 0x20f8b: "\x1e\f\U00020f8b", // 𠾋
+ 0x20f8c: "\x1e\f\U00020f8c", // 𠾌
+ 0x20f8d: "\x1e\f\U00020f8d", // 𠾍
+ 0x20f8e: "\x1e\f\U00020f8e", // 𠾎
+ 0x20f8f: "\x1e\f\U00020f8f", // 𠾏
+ 0x20f90: "\x1e\f\U00020f90", // 𠾐
+ 0x20f91: "\x1e\f\U00020f91", // 𠾑
+ 0x20f92: "\x1e\f\U00020f92", // 𠾒
+ 0x20f93: "\x1e\f\U00020f93", // 𠾓
+ 0x20f94: "\x1e\f\U00020f94", // 𠾔
+ 0x20f95: "\x1e\f\U00020f95", // 𠾕
+ 0x20f96: "\x1e\f\U00020f96", // 𠾖
+ 0x20f97: "\x1e\f\U00020f97", // 𠾗
+ 0x20f98: "\x1e\f\U00020f98", // 𠾘
+ 0x20f99: "\x1e\f\U00020f99", // 𠾙
+ 0x20f9a: "\x1e\f\U00020f9a", // 𠾚
+ 0x20f9b: "\x1e\f\U00020f9b", // 𠾛
+ 0x20f9c: "\x1e\f\U00020f9c", // 𠾜
+ 0x20f9d: "\x1e\f\U00020f9d", // 𠾝
+ 0x20f9e: "\x1e\f\U00020f9e", // 𠾞
+ 0x20f9f: "\x1e\f\U00020f9f", // 𠾟
+ 0x20fa0: "\x1e\f\U00020fa0", // 𠾠
+ 0x20fa1: "\x1e\f\U00020fa1", // 𠾡
+ 0x20fa2: "\x1e\f\U00020fa2", // 𠾢
+ 0x20fa3: "\x1e\f\U00020fa3", // 𠾣
+ 0x20fa4: "\x1e\f\U00020fa4", // 𠾤
+ 0x20fa5: "\x1e\f\U00020fa5", // 𠾥
+ 0x20fa6: "\x1e\f\U00020fa6", // 𠾦
+ 0x20fa7: "r\n\U00020fa7", // 𠾧
+ 0x20fa8: "\x1e\f\U00020fa8", // 𠾨
+ 0x20fa9: "\x1e\f\U00020fa9", // 𠾩
+ 0x20faa: "\x1e\f\U00020faa", // 𠾪
+ 0x20fab: "\x1e\f\U00020fab", // 𠾫
+ 0x20fac: "\x1e\f\U00020fac", // 𠾬
+ 0x20fad: "\x1e\f\U00020fad", // 𠾭
+ 0x20fae: "\x1e\f\U00020fae", // 𠾮
+ 0x20faf: "\x1e\f\U00020faf", // 𠾯
+ 0x20fb0: "\x1e\f\U00020fb0", // 𠾰
+ 0x20fb1: "\x1e\f\U00020fb1", // 𠾱
+ 0x20fb2: "\x1e\f\U00020fb2", // 𠾲
+ 0x20fb3: "\x1e\f\U00020fb3", // 𠾳
+ 0x20fb4: "\x1e\f\U00020fb4", // 𠾴
+ 0x20fb5: "\x1e\f\U00020fb5", // 𠾵
+ 0x20fb6: "\x1e\f\U00020fb6", // 𠾶
+ 0x20fb7: "\x1e\f\U00020fb7", // 𠾷
+ 0x20fb8: "\x1e\f\U00020fb8", // 𠾸
+ 0x20fb9: "\x1e\f\U00020fb9", // 𠾹
+ 0x20fba: "\x1e\f\U00020fba", // 𠾺
+ 0x20fbb: "\x1e\f\U00020fbb", // 𠾻
+ 0x20fbc: "\x1e\f\U00020fbc", // 𠾼
+ 0x20fbd: "\x1e\f\U00020fbd", // 𠾽
+ 0x20fbe: "\x1e\f\U00020fbe", // 𠾾
+ 0x20fbf: "\x1e\f\U00020fbf", // 𠾿
+ 0x20fc0: "\x1e\f\U00020fc0", // 𠿀
+ 0x20fc1: "\x1e\f\U00020fc1", // 𠿁
+ 0x20fc2: "\x1e\f\U00020fc2", // 𠿂
+ 0x20fc3: "\x1e\f\U00020fc3", // 𠿃
+ 0x20fc4: "\x1e\f\U00020fc4", // 𠿄
+ 0x20fc5: "\x1e\f\U00020fc5", // 𠿅
+ 0x20fc6: "\x1e\f\U00020fc6", // 𠿆
+ 0x20fc7: "\x1e\r\U00020fc7", // 𠿇
+ 0x20fc8: "\x1e\r\U00020fc8", // 𠿈
+ 0x20fc9: "\x1e\r\U00020fc9", // 𠿉
+ 0x20fca: "\x1e\r\U00020fca", // 𠿊
+ 0x20fcb: "\x1e\r\U00020fcb", // 𠿋
+ 0x20fcc: "\x1e\r\U00020fcc", // 𠿌
+ 0x20fcd: "\x1e\r\U00020fcd", // 𠿍
+ 0x20fce: "\x1e\r\U00020fce", // 𠿎
+ 0x20fcf: "\x1e\r\U00020fcf", // 𠿏
+ 0x20fd0: "\x1e\r\U00020fd0", // 𠿐
+ 0x20fd1: "\x1e\r\U00020fd1", // 𠿑
+ 0x20fd2: "\x1e\r\U00020fd2", // 𠿒
+ 0x20fd3: "\x1e\r\U00020fd3", // 𠿓
+ 0x20fd4: "\x1e\r\U00020fd4", // 𠿔
+ 0x20fd5: "\x1e\r\U00020fd5", // 𠿕
+ 0x20fd6: "\x1e\r\U00020fd6", // 𠿖
+ 0x20fd7: "\x1e\r\U00020fd7", // 𠿗
+ 0x20fd8: "\x1e\r\U00020fd8", // 𠿘
+ 0x20fd9: "\x1e\r\U00020fd9", // 𠿙
+ 0x20fda: "\x1e\r\U00020fda", // 𠿚
+ 0x20fdb: "\x1e\r\U00020fdb", // 𠿛
+ 0x20fdc: "\x1e\r\U00020fdc", // 𠿜
+ 0x20fdd: "\x1e\r\U00020fdd", // 𠿝
+ 0x20fde: "\x1e\r\U00020fde", // 𠿞
+ 0x20fdf: "\x1e\r\U00020fdf", // 𠿟
+ 0x20fe0: "\x1e\r\U00020fe0", // 𠿠
+ 0x20fe1: "\x1e\r\U00020fe1", // 𠿡
+ 0x20fe2: "\x1e\r\U00020fe2", // 𠿢
+ 0x20fe3: "\x1e\r\U00020fe3", // 𠿣
+ 0x20fe4: "\x1e\r\U00020fe4", // 𠿤
+ 0x20fe5: "\x1e\r\U00020fe5", // 𠿥
+ 0x20fe6: "\x1e\r\U00020fe6", // 𠿦
+ 0x20fe7: "\x1e\r\U00020fe7", // 𠿧
+ 0x20fe8: "\x1e\r\U00020fe8", // 𠿨
+ 0x20fe9: "\x1e\r\U00020fe9", // 𠿩
+ 0x20fea: "\x1e\r\U00020fea", // 𠿪
+ 0x20feb: "\x1e\r\U00020feb", // 𠿫
+ 0x20fec: "\x1e\r\U00020fec", // 𠿬
+ 0x20fed: "\x1e\r\U00020fed", // 𠿭
+ 0x20fee: "\x1e\r\U00020fee", // 𠿮
+ 0x20fef: "\x1e\r\U00020fef", // 𠿯
+ 0x20ff0: "\x1e\r\U00020ff0", // 𠿰
+ 0x20ff1: "\x1e\r\U00020ff1", // 𠿱
+ 0x20ff2: "\x1e\r\U00020ff2", // 𠿲
+ 0x20ff3: "\x1e\r\U00020ff3", // 𠿳
+ 0x20ff4: "\x1e\r\U00020ff4", // 𠿴
+ 0x20ff5: "\x1e\r\U00020ff5", // 𠿵
+ 0x20ff6: "\x1e\r\U00020ff6", // 𠿶
+ 0x20ff7: "\x1e\r\U00020ff7", // 𠿷
+ 0x20ff8: "\x1e\r\U00020ff8", // 𠿸
+ 0x20ff9: "\x1e\r\U00020ff9", // 𠿹
+ 0x20ffa: "\x1e\r\U00020ffa", // 𠿺
+ 0x20ffb: "\x1e\r\U00020ffb", // 𠿻
+ 0x20ffc: "\x1e\r\U00020ffc", // 𠿼
+ 0x20ffd: "\x1e\r\U00020ffd", // 𠿽
+ 0x20ffe: "\x1e\r\U00020ffe", // 𠿾
+ 0x20fff: "\x1e\r\U00020fff", // 𠿿
+ 0x21000: "\x1e\r\U00021000", // 𡀀
+ 0x21001: "\x1e\r\U00021001", // 𡀁
+ 0x21002: "\x1e\r\U00021002", // 𡀂
+ 0x21003: "\x1e\r\U00021003", // 𡀃
+ 0x21004: "\x1e\r\U00021004", // 𡀄
+ 0x21005: "\x1e\r\U00021005", // 𡀅
+ 0x21006: "\x1e\r\U00021006", // 𡀆
+ 0x21007: "\x1e\r\U00021007", // 𡀇
+ 0x21008: "\x1e\r\U00021008", // 𡀈
+ 0x21009: "\x1e\r\U00021009", // 𡀉
+ 0x2100a: "\x1e\r\U0002100a", // 𡀊
+ 0x2100b: "\x1e\r\U0002100b", // 𡀋
+ 0x2100c: "\x1e\r\U0002100c", // 𡀌
+ 0x2100d: "\x1e\r\U0002100d", // 𡀍
+ 0x2100e: "\x1e\r\U0002100e", // 𡀎
+ 0x2100f: "\x1e\r\U0002100f", // 𡀏
+ 0x21010: "\x1e\r\U00021010", // 𡀐
+ 0x21011: "\x1e\r\U00021011", // 𡀑
+ 0x21012: "\x1e\r\U00021012", // 𡀒
+ 0x21013: "\x1e\r\U00021013", // 𡀓
+ 0x21014: "\x1e\f\U00021014", // 𡀔
+ 0x21015: "\x1e\r\U00021015", // 𡀕
+ 0x21016: "\x1e\r\U00021016", // 𡀖
+ 0x21017: "\x1e\r\U00021017", // 𡀗
+ 0x21018: "\x1e\r\U00021018", // 𡀘
+ 0x21019: "\x1e\r\U00021019", // 𡀙
+ 0x2101a: "\x1e\r\U0002101a", // 𡀚
+ 0x2101b: "\x1e\r\U0002101b", // 𡀛
+ 0x2101c: "\x1e\r\U0002101c", // 𡀜
+ 0x2101d: "\x1e\r\U0002101d", // 𡀝
+ 0x2101e: "\x1e\r\U0002101e", // 𡀞
+ 0x2101f: "\x1e\r\U0002101f", // 𡀟
+ 0x21020: "\x1e\r\U00021020", // 𡀠
+ 0x21021: "\x1e\r\U00021021", // 𡀡
+ 0x21022: "\x1e\r\U00021022", // 𡀢
+ 0x21023: "\x1e\r\U00021023", // 𡀣
+ 0x21024: "\x1e\r\U00021024", // 𡀤
+ 0x21025: "\x1e\r\U00021025", // 𡀥
+ 0x21026: "\x1e\f\U00021026", // 𡀦
+ 0x21027: "\x1e\r\U00021027", // 𡀧
+ 0x21028: "\x1e\r\U00021028", // 𡀨
+ 0x21029: "\x1e\r\U00021029", // 𡀩
+ 0x2102a: "\x1e\r\U0002102a", // 𡀪
+ 0x2102b: "\x1e\r\U0002102b", // 𡀫
+ 0x2102c: "\x1e\r\U0002102c", // 𡀬
+ 0x2102d: "\x1e\r\U0002102d", // 𡀭
+ 0x2102e: "\x1e\r\U0002102e", // 𡀮
+ 0x2102f: "\x1e\r\U0002102f", // 𡀯
+ 0x21030: "\x1e\r\U00021030", // 𡀰
+ 0x21031: "\x1e\r\U00021031", // 𡀱
+ 0x21032: "\x1e\r\U00021032", // 𡀲
+ 0x21033: "\x1e\r\U00021033", // 𡀳
+ 0x21034: "\x1e\r\U00021034", // 𡀴
+ 0x21035: "\x1e\r\U00021035", // 𡀵
+ 0x21036: "\x1e\r\U00021036", // 𡀶
+ 0x21037: "\x1e\r\U00021037", // 𡀷
+ 0x21038: "\x1e\r\U00021038", // 𡀸
+ 0x21039: "\x1e\r\U00021039", // 𡀹
+ 0x2103a: "\x1e\r\U0002103a", // 𡀺
+ 0x2103b: "\x1e\r\U0002103b", // 𡀻
+ 0x2103c: "\x1e\r\U0002103c", // 𡀼
+ 0x2103d: "\x1e\x0e\U0002103d", // 𡀽
+ 0x2103e: "\x1e\x0e\U0002103e", // 𡀾
+ 0x2103f: "\x1e\x0e\U0002103f", // 𡀿
+ 0x21040: "\x1e\x0e\U00021040", // 𡁀
+ 0x21041: "\x1e\x0e\U00021041", // 𡁁
+ 0x21042: "\x1e\x0e\U00021042", // 𡁂
+ 0x21043: "\x1e\x0e\U00021043", // 𡁃
+ 0x21044: "\x1e\x0e\U00021044", // 𡁄
+ 0x21045: "\x1e\x0e\U00021045", // 𡁅
+ 0x21046: "\x1e\x0e\U00021046", // 𡁆
+ 0x21047: "\x1e\x0e\U00021047", // 𡁇
+ 0x21048: "\x1e\x0e\U00021048", // 𡁈
+ 0x21049: "\x1e\x0e\U00021049", // 𡁉
+ 0x2104a: "\x1e\x0e\U0002104a", // 𡁊
+ 0x2104b: "\x1e\x0e\U0002104b", // 𡁋
+ 0x2104c: "\x1e\x0e\U0002104c", // 𡁌
+ 0x2104d: "\x1e\x0e\U0002104d", // 𡁍
+ 0x2104e: "\x1e\x0e\U0002104e", // 𡁎
+ 0x2104f: "\x1e\x0e\U0002104f", // 𡁏
+ 0x21050: "\x1e\x0e\U00021050", // 𡁐
+ 0x21051: "\x1e\x0e\U00021051", // 𡁑
+ 0x21052: "\x1e\x0e\U00021052", // 𡁒
+ 0x21053: "\x1e\x0e\U00021053", // 𡁓
+ 0x21054: "\x1e\x0e\U00021054", // 𡁔
+ 0x21055: "\x1e\x0e\U00021055", // 𡁕
+ 0x21056: "\x1e\x0e\U00021056", // 𡁖
+ 0x21057: "\x1e\x0e\U00021057", // 𡁗
+ 0x21058: "\x1e\x0e\U00021058", // 𡁘
+ 0x21059: "\x1e\x0e\U00021059", // 𡁙
+ 0x2105a: "\x1e\x0e\U0002105a", // 𡁚
+ 0x2105b: "\x1e\x0e\U0002105b", // 𡁛
+ 0x2105c: "\x1e\x0e\U0002105c", // 𡁜
+ 0x2105d: "\x1e\x0e\U0002105d", // 𡁝
+ 0x2105e: "\x1e\x0e\U0002105e", // 𡁞
+ 0x2105f: "\x1e\x0e\U0002105f", // 𡁟
+ 0x21060: "\x1e\x0e\U00021060", // 𡁠
+ 0x21061: "\x1e\x0e\U00021061", // 𡁡
+ 0x21062: "\x1e\x0e\U00021062", // 𡁢
+ 0x21063: "\x1e\x0e\U00021063", // 𡁣
+ 0x21064: "\x1e\x0e\U00021064", // 𡁤
+ 0x21065: "\x1e\x0e\U00021065", // 𡁥
+ 0x21066: "\x1e\x0e\U00021066", // 𡁦
+ 0x21067: "\x1e\x0e\U00021067", // 𡁧
+ 0x21068: "\x1e\x0e\U00021068", // 𡁨
+ 0x21069: "\x1e\x0e\U00021069", // 𡁩
+ 0x2106a: "\x1e\x0e\U0002106a", // 𡁪
+ 0x2106b: "\x1e\x0e\U0002106b", // 𡁫
+ 0x2106c: "\x1e\x0e\U0002106c", // 𡁬
+ 0x2106d: "\x1e\x0e\U0002106d", // 𡁭
+ 0x2106e: "\x1e\x0e\U0002106e", // 𡁮
+ 0x2106f: "\x1e\x0e\U0002106f", // 𡁯
+ 0x21070: "\x1e\x0e\U00021070", // 𡁰
+ 0x21071: "\x1e\x0e\U00021071", // 𡁱
+ 0x21072: "\x1e\x0e\U00021072", // 𡁲
+ 0x21073: "\x1e\x0e\U00021073", // 𡁳
+ 0x21074: "\x1e\x0e\U00021074", // 𡁴
+ 0x21075: "\x1e\x0e\U00021075", // 𡁵
+ 0x21076: "\x1e\x0e\U00021076", // 𡁶
+ 0x21077: "\x1e\x0e\U00021077", // 𡁷
+ 0x21078: "\x1e\x0e\U00021078", // 𡁸
+ 0x21079: "\x1e\x0e\U00021079", // 𡁹
+ 0x2107a: "\x1e\x0e\U0002107a", // 𡁺
+ 0x2107b: "\x1e\x0e\U0002107b", // 𡁻
+ 0x2107c: "\x1e\x0e\U0002107c", // 𡁼
+ 0x2107d: "\x1e\x0e\U0002107d", // 𡁽
+ 0x2107e: "\x1e\x0e\U0002107e", // 𡁾
+ 0x2107f: "\x1e\x0e\U0002107f", // 𡁿
+ 0x21080: "\x1e\x0e\U00021080", // 𡂀
+ 0x21081: "\x1e\x0e\U00021081", // 𡂁
+ 0x21082: "\x1e\x0e\U00021082", // 𡂂
+ 0x21083: "\x1e\x0e\U00021083", // 𡂃
+ 0x21084: "\x1e\x0e\U00021084", // 𡂄
+ 0x21085: "\x1e\x0e\U00021085", // 𡂅
+ 0x21086: "\x1e\x0e\U00021086", // 𡂆
+ 0x21087: "\x1e\x0e\U00021087", // 𡂇
+ 0x21088: "\x1e\x0e\U00021088", // 𡂈
+ 0x21089: "\x1e\x0e\U00021089", // 𡂉
+ 0x2108a: "\x1e\x0e\U0002108a", // 𡂊
+ 0x2108b: "\x1e\x0e\U0002108b", // 𡂋
+ 0x2108c: "\x1e\x0e\U0002108c", // 𡂌
+ 0x2108d: "\x1e\x0e\U0002108d", // 𡂍
+ 0x2108e: "\x1e\x0e\U0002108e", // 𡂎
+ 0x2108f: "\x1e\x0f\U0002108f", // 𡂏
+ 0x21090: "\x1e\x0f\U00021090", // 𡂐
+ 0x21091: "\x1e\x0f\U00021091", // 𡂑
+ 0x21092: "\x1e\x0f\U00021092", // 𡂒
+ 0x21093: "\x1e\x0f\U00021093", // 𡂓
+ 0x21094: "\x1e\x0f\U00021094", // 𡂔
+ 0x21095: "\x1e\x0f\U00021095", // 𡂕
+ 0x21096: "\x1e\x0f\U00021096", // 𡂖
+ 0x21097: "\x1e\x0f\U00021097", // 𡂗
+ 0x21098: "\x1e\x0f\U00021098", // 𡂘
+ 0x21099: "\x1e\x0f\U00021099", // 𡂙
+ 0x2109a: "\x1e\x0f\U0002109a", // 𡂚
+ 0x2109b: "\x1e\x0f\U0002109b", // 𡂛
+ 0x2109c: "\x1e\x0f\U0002109c", // 𡂜
+ 0x2109d: "\x1e\x0f\U0002109d", // 𡂝
+ 0x2109e: "\x1e\x0f\U0002109e", // 𡂞
+ 0x2109f: "\x1e\x0f\U0002109f", // 𡂟
+ 0x210a0: "\x1e\x0f\U000210a0", // 𡂠
+ 0x210a1: "\x1e\x0f\U000210a1", // 𡂡
+ 0x210a2: "\x1e\x0f\U000210a2", // 𡂢
+ 0x210a3: "\x1e\x0f\U000210a3", // 𡂣
+ 0x210a4: "\x1e\x0f\U000210a4", // 𡂤
+ 0x210a5: "\x1e\x0f\U000210a5", // 𡂥
+ 0x210a6: "\x1e\x0f\U000210a6", // 𡂦
+ 0x210a7: "\x1e\x0f\U000210a7", // 𡂧
+ 0x210a8: "\x1e\x0f\U000210a8", // 𡂨
+ 0x210a9: "\x1e\x0f\U000210a9", // 𡂩
+ 0x210aa: "\x1e\x0f\U000210aa", // 𡂪
+ 0x210ab: "\x1e\x0f\U000210ab", // 𡂫
+ 0x210ac: "\x1e\x0f\U000210ac", // 𡂬
+ 0x210ad: "\x1e\x0f\U000210ad", // 𡂭
+ 0x210ae: "\x1e\x0f\U000210ae", // 𡂮
+ 0x210af: "\x1e\x0f\U000210af", // 𡂯
+ 0x210b0: "\x1e\x0f\U000210b0", // 𡂰
+ 0x210b1: "\x1e\x0f\U000210b1", // 𡂱
+ 0x210b2: "\x1e\x0f\U000210b2", // 𡂲
+ 0x210b3: "\x1e\x0f\U000210b3", // 𡂳
+ 0x210b4: "\x1e\x0f\U000210b4", // 𡂴
+ 0x210b5: "\x1e\x0f\U000210b5", // 𡂵
+ 0x210b6: "\x1e\x0f\U000210b6", // 𡂶
+ 0x210b7: "\x1e\x0f\U000210b7", // 𡂷
+ 0x210b8: "\x1e\x0f\U000210b8", // 𡂸
+ 0x210b9: "\x1e\x0f\U000210b9", // 𡂹
+ 0x210ba: "\x1e\x0f\U000210ba", // 𡂺
+ 0x210bb: "\x1e\x0f\U000210bb", // 𡂻
+ 0x210bc: "\x1e\x0f\U000210bc", // 𡂼
+ 0x210bd: "\x1e\x0f\U000210bd", // 𡂽
+ 0x210be: "\x1e\x0f\U000210be", // 𡂾
+ 0x210bf: "\x1e\x0f\U000210bf", // 𡂿
+ 0x210c0: "\x1e\x0f\U000210c0", // 𡃀
+ 0x210c1: "\x1e\x0f\U000210c1", // 𡃁
+ 0x210c2: "\x1e\x0f\U000210c2", // 𡃂
+ 0x210c3: "\x1e\x0f\U000210c3", // 𡃃
+ 0x210c4: "\x1e\x0f\U000210c4", // 𡃄
+ 0x210c5: "\x1e\x0f\U000210c5", // 𡃅
+ 0x210c6: "\x1e\x0f\U000210c6", // 𡃆
+ 0x210c7: "\x1e\x0f\U000210c7", // 𡃇
+ 0x210c8: "\x1e\x0f\U000210c8", // 𡃈
+ 0x210c9: "\x1e\x0f\U000210c9", // 𡃉
+ 0x210ca: "\x1e\x0f\U000210ca", // 𡃊
+ 0x210cb: "\x1e\x0f\U000210cb", // 𡃋
+ 0x210cc: "\x1e\x0f\U000210cc", // 𡃌
+ 0x210cd: "\x1e\x0f\U000210cd", // 𡃍
+ 0x210ce: "\x1e\x0f\U000210ce", // 𡃎
+ 0x210cf: "\x1e\x0f\U000210cf", // 𡃏
+ 0x210d0: "\x1e\x0f\U000210d0", // 𡃐
+ 0x210d1: "\x1e\x0f\U000210d1", // 𡃑
+ 0x210d2: "\x1e\x0f\U000210d2", // 𡃒
+ 0x210d3: "\x1e\x0f\U000210d3", // 𡃓
+ 0x210d4: "\x1e\x0f\U000210d4", // 𡃔
+ 0x210d5: "\x1e\x0f\U000210d5", // 𡃕
+ 0x210d6: "\x1e\x0f\U000210d6", // 𡃖
+ 0x210d7: "\x1e\x0f\U000210d7", // 𡃗
+ 0x210d8: "\x1e\x0f\U000210d8", // 𡃘
+ 0x210d9: "\x1e\x0f\U000210d9", // 𡃙
+ 0x210da: "\x1e\x0f\U000210da", // 𡃚
+ 0x210db: "\x1e\x0f\U000210db", // 𡃛
+ 0x210dc: "\x1e\x0f\U000210dc", // 𡃜
+ 0x210dd: "\x1e\x0f\U000210dd", // 𡃝
+ 0x210de: "\x1e\x0f\U000210de", // 𡃞
+ 0x210df: "\x1e\x0f\U000210df", // 𡃟
+ 0x210e0: "\x1e\x10\U000210e0", // 𡃠
+ 0x210e1: "\x1e\x10\U000210e1", // 𡃡
+ 0x210e2: "\x1e\x10\U000210e2", // 𡃢
+ 0x210e3: "\x1e\x10\U000210e3", // 𡃣
+ 0x210e4: "\x1e\x10\U000210e4", // 𡃤
+ 0x210e5: "\x1e\x10\U000210e5", // 𡃥
+ 0x210e6: "\x1e\x10\U000210e6", // 𡃦
+ 0x210e7: "\x1e\x10\U000210e7", // 𡃧
+ 0x210e8: "\x1e\x10\U000210e8", // 𡃨
+ 0x210e9: "\x1e\x10\U000210e9", // 𡃩
+ 0x210ea: "\x1e\x10\U000210ea", // 𡃪
+ 0x210eb: "\x1e\x10\U000210eb", // 𡃫
+ 0x210ec: "\x1e\x10\U000210ec", // 𡃬
+ 0x210ed: "\x1e\x10\U000210ed", // 𡃭
+ 0x210ee: "\x1e\x10\U000210ee", // 𡃮
+ 0x210ef: "\x1e\x10\U000210ef", // 𡃯
+ 0x210f0: "\x1e\x0f\U000210f0", // 𡃰
+ 0x210f1: "\x1e\x10\U000210f1", // 𡃱
+ 0x210f2: "\x1e\x10\U000210f2", // 𡃲
+ 0x210f3: "\x1e\x10\U000210f3", // 𡃳
+ 0x210f4: "\x1e\x10\U000210f4", // 𡃴
+ 0x210f5: "\x1e\x10\U000210f5", // 𡃵
+ 0x210f6: "\x1e\x10\U000210f6", // 𡃶
+ 0x210f7: "\x1e\x10\U000210f7", // 𡃷
+ 0x210f8: "\x1e\x10\U000210f8", // 𡃸
+ 0x210f9: "\x1e\x10\U000210f9", // 𡃹
+ 0x210fa: "\x1e\x10\U000210fa", // 𡃺
+ 0x210fb: "\x1e\x10\U000210fb", // 𡃻
+ 0x210fc: "\x1e\x10\U000210fc", // 𡃼
+ 0x210fd: "\x1e\x10\U000210fd", // 𡃽
+ 0x210fe: "\x1e\x10\U000210fe", // 𡃾
+ 0x210ff: "\x1e\x10\U000210ff", // 𡃿
+ 0x21100: "\x1e\x10\U00021100", // 𡄀
+ 0x21101: "\x1e\x10\U00021101", // 𡄁
+ 0x21102: "\x1e\x10\U00021102", // 𡄂
+ 0x21103: "\x1e\x10\U00021103", // 𡄃
+ 0x21104: "\x1e\x10\U00021104", // 𡄄
+ 0x21105: "\x1e\x10\U00021105", // 𡄅
+ 0x21106: "\x1e\x10\U00021106", // 𡄆
+ 0x21107: "\x1e\x10\U00021107", // 𡄇
+ 0x21108: "\x1e\x10\U00021108", // 𡄈
+ 0x21109: "Y\x0f\U00021109", // 𡄉
+ 0x2110a: "\x1e\x10\U0002110a", // 𡄊
+ 0x2110b: "\x1e\x10\U0002110b", // 𡄋
+ 0x2110c: "\x1e\x10\U0002110c", // 𡄌
+ 0x2110d: "\x1e\x10\U0002110d", // 𡄍
+ 0x2110e: "\x1e\x10\U0002110e", // 𡄎
+ 0x2110f: "\x1e\x10\U0002110f", // 𡄏
+ 0x21110: "\x1e\x10\U00021110", // 𡄐
+ 0x21111: "\x1e\x11\U00021111", // 𡄑
+ 0x21112: "\x1e\x11\U00021112", // 𡄒
+ 0x21113: "\x1e\x11\U00021113", // 𡄓
+ 0x21114: "\x1e\x11\U00021114", // 𡄔
+ 0x21115: "\x1e\x11\U00021115", // 𡄕
+ 0x21116: "\x1e\x11\U00021116", // 𡄖
+ 0x21117: "\x1e\x11\U00021117", // 𡄗
+ 0x21118: "\x1e\x11\U00021118", // 𡄘
+ 0x21119: "\x1e\x11\U00021119", // 𡄙
+ 0x2111a: "\x1e\x11\U0002111a", // 𡄚
+ 0x2111b: "\x1e\x11\U0002111b", // 𡄛
+ 0x2111c: "\x1e\x11\U0002111c", // 𡄜
+ 0x2111d: "\x1e\x11\U0002111d", // 𡄝
+ 0x2111e: "\x1e\x11\U0002111e", // 𡄞
+ 0x2111f: "\x1e\x11\U0002111f", // 𡄟
+ 0x21120: "\x1e\x11\U00021120", // 𡄠
+ 0x21121: "\x1e\x11\U00021121", // 𡄡
+ 0x21122: "\x1e\x11\U00021122", // 𡄢
+ 0x21123: "\x1e\x11\U00021123", // 𡄣
+ 0x21124: "\x1e\x11\U00021124", // 𡄤
+ 0x21125: "\x1e\x11\U00021125", // 𡄥
+ 0x21126: "\x1e\x11\U00021126", // 𡄦
+ 0x21127: "\x1e\x11\U00021127", // 𡄧
+ 0x21128: "\x1e\x11\U00021128", // 𡄨
+ 0x21129: "\x1e\x11\U00021129", // 𡄩
+ 0x2112a: "\x1e\x11\U0002112a", // 𡄪
+ 0x2112b: "\x1e\x11\U0002112b", // 𡄫
+ 0x2112c: "\x1e\x11\U0002112c", // 𡄬
+ 0x2112d: "\x1e\x11\U0002112d", // 𡄭
+ 0x2112e: "\x1e\x11\U0002112e", // 𡄮
+ 0x2112f: "\x1e\x11\U0002112f", // 𡄯
+ 0x21130: "\x1e\x11\U00021130", // 𡄰
+ 0x21131: "\x1e\x12\U00021131", // 𡄱
+ 0x21132: "\x1e\x12\U00021132", // 𡄲
+ 0x21133: "\x1e\x12\U00021133", // 𡄳
+ 0x21134: "\x1e\x12\U00021134", // 𡄴
+ 0x21135: "\x1e\x12\U00021135", // 𡄵
+ 0x21136: "\x1e\x12\U00021136", // 𡄶
+ 0x21137: "\x1e\x12\U00021137", // 𡄷
+ 0x21138: "\x1e\x12\U00021138", // 𡄸
+ 0x21139: "\x1e\x12\U00021139", // 𡄹
+ 0x2113a: "\x1e\x12\U0002113a", // 𡄺
+ 0x2113b: "\x1e\x12\U0002113b", // 𡄻
+ 0x2113c: "\x1e\x12\U0002113c", // 𡄼
+ 0x2113d: "\x1e\x12\U0002113d", // 𡄽
+ 0x2113e: "\x1e\x12\U0002113e", // 𡄾
+ 0x2113f: "\x1e\x12\U0002113f", // 𡄿
+ 0x21140: "\x1e\x12\U00021140", // 𡅀
+ 0x21141: "\x1e\x12\U00021141", // 𡅁
+ 0x21142: "\x1e\x12\U00021142", // 𡅂
+ 0x21143: "\x1e\x12\U00021143", // 𡅃
+ 0x21144: "\x1e\x12\U00021144", // 𡅄
+ 0x21145: "\x1e\x12\U00021145", // 𡅅
+ 0x21146: "\x1e\x12\U00021146", // 𡅆
+ 0x21147: "\x1e\x12\U00021147", // 𡅇
+ 0x21148: "\x1e\x12\U00021148", // 𡅈
+ 0x21149: "\x1e\x12\U00021149", // 𡅉
+ 0x2114a: "\x1e\x12\U0002114a", // 𡅊
+ 0x2114b: "\x1e\x12\U0002114b", // 𡅋
+ 0x2114c: "\x1e\x12\U0002114c", // 𡅌
+ 0x2114d: "\x1e\x12\U0002114d", // 𡅍
+ 0x2114e: "\x1e\x12\U0002114e", // 𡅎
+ 0x2114f: "\x1e\x12\U0002114f", // 𡅏
+ 0x21150: "\x1e\x12\U00021150", // 𡅐
+ 0x21151: "\x1e\x12\U00021151", // 𡅑
+ 0x21152: "\x1e\x12\U00021152", // 𡅒
+ 0x21153: "\x1e\x12\U00021153", // 𡅓
+ 0x21154: "\x1e\x12\U00021154", // 𡅔
+ 0x21155: "!\x12\U00021155", // 𡅕
+ 0x21156: "{\x0f\U00021156", // 𡅖
+ 0x21157: "\x1e\x13\U00021157", // 𡅗
+ 0x21158: "\x1e\x13\U00021158", // 𡅘
+ 0x21159: "\x1e\x13\U00021159", // 𡅙
+ 0x2115a: "\x1e\x13\U0002115a", // 𡅚
+ 0x2115b: "\x1e\x13\U0002115b", // 𡅛
+ 0x2115c: "\x1e\x13\U0002115c", // 𡅜
+ 0x2115d: "\x1e\x13\U0002115d", // 𡅝
+ 0x2115e: "\x1e\x13\U0002115e", // 𡅞
+ 0x2115f: "\x1e\x13\U0002115f", // 𡅟
+ 0x21160: "\x1e\x13\U00021160", // 𡅠
+ 0x21161: "\x1e\x13\U00021161", // 𡅡
+ 0x21162: "\x1e\x13\U00021162", // 𡅢
+ 0x21163: "\x1e\x12\U00021163", // 𡅣
+ 0x21164: "\x1e\x13\U00021164", // 𡅤
+ 0x21165: "\x1e\x13\U00021165", // 𡅥
+ 0x21166: "\x1e\x13\U00021166", // 𡅦
+ 0x21167: "\x1e\x13\U00021167", // 𡅧
+ 0x21168: "\x1e\x13\U00021168", // 𡅨
+ 0x21169: "\x1e\x13\U00021169", // 𡅩
+ 0x2116a: "\x1e\x13\U0002116a", // 𡅪
+ 0x2116b: "\x1e\x13\U0002116b", // 𡅫
+ 0x2116c: "\x1e\x13\U0002116c", // 𡅬
+ 0x2116d: "\x1e\x13\U0002116d", // 𡅭
+ 0x2116e: "\x1e\x13\U0002116e", // 𡅮
+ 0x2116f: "\x1e\x13\U0002116f", // 𡅯
+ 0x21170: "\x1e\x14\U00021170", // 𡅰
+ 0x21171: "\x1e\x14\U00021171", // 𡅱
+ 0x21172: "\x1e\x14\U00021172", // 𡅲
+ 0x21173: "\x1e\x14\U00021173", // 𡅳
+ 0x21174: "\x1e\x14\U00021174", // 𡅴
+ 0x21175: "\x1e\x14\U00021175", // 𡅵
+ 0x21176: "\x1e\x14\U00021176", // 𡅶
+ 0x21177: "\x1e\x14\U00021177", // 𡅷
+ 0x21178: "\x1e\x14\U00021178", // 𡅸
+ 0x21179: "\x1e\x15\U00021179", // 𡅹
+ 0x2117a: "\x1e\x15\U0002117a", // 𡅺
+ 0x2117b: "\x1e\x15\U0002117b", // 𡅻
+ 0x2117c: "\x1e\x15\U0002117c", // 𡅼
+ 0x2117d: "\x1e\x15\U0002117d", // 𡅽
+ 0x2117e: "\x1e\x15\U0002117e", // 𡅾
+ 0x2117f: "\x1e\x15\U0002117f", // 𡅿
+ 0x21180: "\x1e\x15\U00021180", // 𡆀
+ 0x21181: "\x1e\x15\U00021181", // 𡆁
+ 0x21182: "\x1e\x15\U00021182", // 𡆂
+ 0x21183: "\x1e\x15\U00021183", // 𡆃
+ 0x21184: "\x1e\x15\U00021184", // 𡆄
+ 0x21185: "\x1e\x15\U00021185", // 𡆅
+ 0x21186: "\x1e\x16\U00021186", // 𡆆
+ 0x21187: "\x1e\x16\U00021187", // 𡆇
+ 0x21188: "\x1e\x16\U00021188", // 𡆈
+ 0x21189: "\x1e\x16\U00021189", // 𡆉
+ 0x2118a: "\x1e\x16\U0002118a", // 𡆊
+ 0x2118b: "\x1e\x16\U0002118b", // 𡆋
+ 0x2118c: "\x1e\x16\U0002118c", // 𡆌
+ 0x2118d: "\x1e\x16\U0002118d", // 𡆍
+ 0x2118e: "\x1e\x16\U0002118e", // 𡆎
+ 0x2118f: "\x1e\x17\U0002118f", // 𡆏
+ 0x21190: "\x1e\x17\U00021190", // 𡆐
+ 0x21191: "\x1e\x17\U00021191", // 𡆑
+ 0x21192: "\x1e\x17\U00021192", // 𡆒
+ 0x21193: "\x1e\x17\U00021193", // 𡆓
+ 0x21194: "\x1e\x17\U00021194", // 𡆔
+ 0x21195: "\x1e\x17\U00021195", // 𡆕
+ 0x21196: "\x1e\x17\U00021196", // 𡆖
+ 0x21197: "\x1e\x17\U00021197", // 𡆗
+ 0x21198: "\x1e\x17\U00021198", // 𡆘
+ 0x21199: "\x1e\x18\U00021199", // 𡆙
+ 0x2119a: "\x1e\x18\U0002119a", // 𡆚
+ 0x2119b: "\x1e\x19\U0002119b", // 𡆛
+ 0x2119c: "\x1e\x19\U0002119c", // 𡆜
+ 0x2119d: "\x1e\x19\U0002119d", // 𡆝
+ 0x2119e: "\x1e\x18\U0002119e", // 𡆞
+ 0x2119f: "\x1e\x1c\U0002119f", // 𡆟
+ 0x211a0: "\x1f\x01\U000211a0", // 𡆠
+ 0x211a1: "\x1f\x01\U000211a1", // 𡆡
+ 0x211a2: "\x1f\x01\U000211a2", // 𡆢
+ 0x211a3: "\x1f\x02\U000211a3", // 𡆣
+ 0x211a4: "\x1f\x02\U000211a4", // 𡆤
+ 0x211a5: "\x1f\x02\U000211a5", // 𡆥
+ 0x211a6: "\x1f\x02\U000211a6", // 𡆦
+ 0x211a7: "\x1f\x03\U000211a7", // 𡆧
+ 0x211a8: "\x1f\x03\U000211a8", // 𡆨
+ 0x211a9: "\x1f\x03\U000211a9", // 𡆩
+ 0x211aa: "\x1f\x03\U000211aa", // 𡆪
+ 0x211ab: "\x1f\x03\U000211ab", // 𡆫
+ 0x211ac: "\x1f\x03\U000211ac", // 𡆬
+ 0x211ad: "\x1f\x03\U000211ad", // 𡆭
+ 0x211ae: "\x1f\x03\U000211ae", // 𡆮
+ 0x211af: "\x1f\x03\U000211af", // 𡆯
+ 0x211b0: "\x1f\x03\U000211b0", // 𡆰
+ 0x211b1: "\x1f\x03\U000211b1", // 𡆱
+ 0x211b2: "\x1f\x03\U000211b2", // 𡆲
+ 0x211b3: "\x1f\x03\U000211b3", // 𡆳
+ 0x211b4: "\x1f\x04\U000211b4", // 𡆴
+ 0x211b5: "\x1f\x04\U000211b5", // 𡆵
+ 0x211b6: "\x1f\x04\U000211b6", // 𡆶
+ 0x211b7: "\x1f\x04\U000211b7", // 𡆷
+ 0x211b8: "\x1f\x04\U000211b8", // 𡆸
+ 0x211b9: "\x1f\x04\U000211b9", // 𡆹
+ 0x211ba: "\x1f\x04\U000211ba", // 𡆺
+ 0x211bb: "\x1f\x04\U000211bb", // 𡆻
+ 0x211bc: "\x1f\x04\U000211bc", // 𡆼
+ 0x211bd: "\x1f\x04\U000211bd", // 𡆽
+ 0x211be: "\x1f\x04\U000211be", // 𡆾
+ 0x211bf: "\x1f\x04\U000211bf", // 𡆿
+ 0x211c0: "\x1f\x04\U000211c0", // 𡇀
+ 0x211c1: "\x1f\x04\U000211c1", // 𡇁
+ 0x211c2: "\x1f\x04\U000211c2", // 𡇂
+ 0x211c3: "\x1f\x04\U000211c3", // 𡇃
+ 0x211c4: "\x1f\x04\U000211c4", // 𡇄
+ 0x211c5: "\x1f\x04\U000211c5", // 𡇅
+ 0x211c6: "\x1f\x04\U000211c6", // 𡇆
+ 0x211c7: "\x1f\x04\U000211c7", // 𡇇
+ 0x211c8: "\x1f\x05\U000211c8", // 𡇈
+ 0x211c9: "\x1f\x05\U000211c9", // 𡇉
+ 0x211ca: "\x1f\x05\U000211ca", // 𡇊
+ 0x211cb: "\x1f\x05\U000211cb", // 𡇋
+ 0x211cc: "\x1f\x05\U000211cc", // 𡇌
+ 0x211cd: "f\x03\U000211cd", // 𡇍
+ 0x211ce: "\x1f\x05\U000211ce", // 𡇎
+ 0x211cf: "\x1f\x05\U000211cf", // 𡇏
+ 0x211d0: "\x1f\x05\U000211d0", // 𡇐
+ 0x211d1: "\x1f\x05\U000211d1", // 𡇑
+ 0x211d2: "\x1f\x06\U000211d2", // 𡇒
+ 0x211d3: "\x1f\x06\U000211d3", // 𡇓
+ 0x211d4: "\x1f\x06\U000211d4", // 𡇔
+ 0x211d5: "\x1f\x06\U000211d5", // 𡇕
+ 0x211d6: "\x1f\x06\U000211d6", // 𡇖
+ 0x211d7: "\x1f\x06\U000211d7", // 𡇗
+ 0x211d8: "\x1f\x06\U000211d8", // 𡇘
+ 0x211d9: "\x1f\x06\U000211d9", // 𡇙
+ 0x211da: "\x1f\x06\U000211da", // 𡇚
+ 0x211db: "\x1f\x06\U000211db", // 𡇛
+ 0x211dc: "\x1f\x06\U000211dc", // 𡇜
+ 0x211dd: "\x1f\x06\U000211dd", // 𡇝
+ 0x211de: "\x1f\x06\U000211de", // 𡇞
+ 0x211df: "\x1f\x06\U000211df", // 𡇟
+ 0x211e0: "\x1f\a\U000211e0", // 𡇠
+ 0x211e1: "\x1f\a\U000211e1", // 𡇡
+ 0x211e2: "\x1f\a\U000211e2", // 𡇢
+ 0x211e3: "\x1f\a\U000211e3", // 𡇣
+ 0x211e4: "\x1f\a\U000211e4", // 𡇤
+ 0x211e5: "\x1f\a\U000211e5", // 𡇥
+ 0x211e6: "\x1f\a\U000211e6", // 𡇦
+ 0x211e7: "\x1f\a\U000211e7", // 𡇧
+ 0x211e8: "\x1f\a\U000211e8", // 𡇨
+ 0x211e9: "\x1f\a\U000211e9", // 𡇩
+ 0x211ea: "\x1f\a\U000211ea", // 𡇪
+ 0x211eb: "\x1f\a\U000211eb", // 𡇫
+ 0x211ec: "\x1f\a\U000211ec", // 𡇬
+ 0x211ed: "\x1f\a\U000211ed", // 𡇭
+ 0x211ee: "\x1f\a\U000211ee", // 𡇮
+ 0x211ef: "\x1f\a\U000211ef", // 𡇯
+ 0x211f0: "\x1f\b\U000211f0", // 𡇰
+ 0x211f1: "\x1f\b\U000211f1", // 𡇱
+ 0x211f2: "\x1f\b\U000211f2", // 𡇲
+ 0x211f3: "\x1f\b\U000211f3", // 𡇳
+ 0x211f4: "\x1f\b\U000211f4", // 𡇴
+ 0x211f5: "\x1f\b\U000211f5", // 𡇵
+ 0x211f6: "\x1f\b\U000211f6", // 𡇶
+ 0x211f7: "\x1f\b\U000211f7", // 𡇷
+ 0x211f8: "\x1f\b\U000211f8", // 𡇸
+ 0x211f9: "\x1f\b\U000211f9", // 𡇹
+ 0x211fa: "\x1f\b\U000211fa", // 𡇺
+ 0x211fb: "\x1f\b\U000211fb", // 𡇻
+ 0x211fc: "\x1f\t\U000211fc", // 𡇼
+ 0x211fd: "\x1f\t\U000211fd", // 𡇽
+ 0x211fe: "\x1f\t\U000211fe", // 𡇾
+ 0x211ff: "\x1f\t\U000211ff", // 𡇿
+ 0x21200: "\x1f\b\U00021200", // 𡈀
+ 0x21201: "\x1f\t\U00021201", // 𡈁
+ 0x21202: "\x1f\t\U00021202", // 𡈂
+ 0x21203: "\x1f\t\U00021203", // 𡈃
+ 0x21204: "\x1f\t\U00021204", // 𡈄
+ 0x21205: "\x1f\t\U00021205", // 𡈅
+ 0x21206: "\x1f\t\U00021206", // 𡈆
+ 0x21207: "\x1f\t\U00021207", // 𡈇
+ 0x21208: "\x1f\t\U00021208", // 𡈈
+ 0x21209: "\x1f\t\U00021209", // 𡈉
+ 0x2120a: "\x1f\n\U0002120a", // 𡈊
+ 0x2120b: "\x1f\n\U0002120b", // 𡈋
+ 0x2120c: "\x1f\n\U0002120c", // 𡈌
+ 0x2120d: "\x1f\n\U0002120d", // 𡈍
+ 0x2120e: "\x1f\n\U0002120e", // 𡈎
+ 0x2120f: "\x1f\n\U0002120f", // 𡈏
+ 0x21210: "\x1f\n\U00021210", // 𡈐
+ 0x21211: "\x1f\n\U00021211", // 𡈑
+ 0x21212: "\x1f\n\U00021212", // 𡈒
+ 0x21213: "\x1f\n\U00021213", // 𡈓
+ 0x21214: "\x1f\n\U00021214", // 𡈔
+ 0x21215: "\x1f\v\U00021215", // 𡈕
+ 0x21216: "\x1f\v\U00021216", // 𡈖
+ 0x21217: "\x1f\v\U00021217", // 𡈗
+ 0x21218: "\x1f\v\U00021218", // 𡈘
+ 0x21219: "\x1f\v\U00021219", // 𡈙
+ 0x2121a: "\x1f\v\U0002121a", // 𡈚
+ 0x2121b: "\x1f\v\U0002121b", // 𡈛
+ 0x2121c: "\x1f\v\U0002121c", // 𡈜
+ 0x2121d: "\x1f\v\U0002121d", // 𡈝
+ 0x2121e: "\x1f\v\U0002121e", // 𡈞
+ 0x2121f: "\x1f\v\U0002121f", // 𡈟
+ 0x21220: "\x1f\v\U00021220", // 𡈠
+ 0x21221: "\x1f\v\U00021221", // 𡈡
+ 0x21222: "\x1f\f\U00021222", // 𡈢
+ 0x21223: "\x1f\f\U00021223", // 𡈣
+ 0x21224: "\x1f\f\U00021224", // 𡈤
+ 0x21225: "\x1f\r\U00021225", // 𡈥
+ 0x21226: "\x1f\f\U00021226", // 𡈦
+ 0x21227: "\x1f\f\U00021227", // 𡈧
+ 0x21228: "\x1f\f\U00021228", // 𡈨
+ 0x21229: "\x1f\f\U00021229", // 𡈩
+ 0x2122a: "\x1f\r\U0002122a", // 𡈪
+ 0x2122b: "\x1f\r\U0002122b", // 𡈫
+ 0x2122c: "\x1f\r\U0002122c", // 𡈬
+ 0x2122d: "\x1f\x0e\U0002122d", // 𡈭
+ 0x2122e: "\x1f\x0e\U0002122e", // 𡈮
+ 0x2122f: "\x1f\x0e\U0002122f", // 𡈯
+ 0x21230: "\x1f\x0e\U00021230", // 𡈰
+ 0x21231: "\x1f\x0e\U00021231", // 𡈱
+ 0x21232: "\x1f\x0f\U00021232", // 𡈲
+ 0x21233: "\x1f\x10\U00021233", // 𡈳
+ 0x21234: "\x1f\x10\U00021234", // 𡈴
+ 0x21235: "\x1f\x11\U00021235", // 𡈵
+ 0x21236: "\x1f\x11\U00021236", // 𡈶
+ 0x21237: "\x1f\x11\U00021237", // 𡈷
+ 0x21238: "\x1f\x12\U00021238", // 𡈸
+ 0x21239: "\x1f\x12\U00021239", // 𡈹
+ 0x2123a: "\x1f\x12\U0002123a", // 𡈺
+ 0x2123b: "\x1f\x17\U0002123b", // 𡈻
+ 0x2123c: " \x01\U0002123c", // 𡈼
+ 0x2123d: " \x01\U0002123d", // 𡈽
+ 0x2123e: " \x01\U0002123e", // 𡈾
+ 0x2123f: " \x02\U0002123f", // 𡈿
+ 0x21240: " \x02\U00021240", // 𡉀
+ 0x21241: " \x02\U00021241", // 𡉁
+ 0x21242: " \x02\U00021242", // 𡉂
+ 0x21243: " \x02\U00021243", // 𡉃
+ 0x21244: " \x02\U00021244", // 𡉄
+ 0x21245: " \x02\U00021245", // 𡉅
+ 0x21246: " \x02\U00021246", // 𡉆
+ 0x21247: " \x02\U00021247", // 𡉇
+ 0x21248: " \x03\U00021248", // 𡉈
+ 0x21249: " \x03\U00021249", // 𡉉
+ 0x2124a: " \x03\U0002124a", // 𡉊
+ 0x2124b: " \x03\U0002124b", // 𡉋
+ 0x2124c: " \x03\U0002124c", // 𡉌
+ 0x2124d: " \x03\U0002124d", // 𡉍
+ 0x2124e: " \x03\U0002124e", // 𡉎
+ 0x2124f: " \x03\U0002124f", // 𡉏
+ 0x21250: " \x03\U00021250", // 𡉐
+ 0x21251: " \x03\U00021251", // 𡉑
+ 0x21252: " \x03\U00021252", // 𡉒
+ 0x21253: " \x03\U00021253", // 𡉓
+ 0x21254: " \x03\U00021254", // 𡉔
+ 0x21255: " \x03\U00021255", // 𡉕
+ 0x21256: " \x03\U00021256", // 𡉖
+ 0x21257: "'\x03\U00021257", // 𡉗
+ 0x21258: " \x04\U00021258", // 𡉘
+ 0x21259: " \x04\U00021259", // 𡉙
+ 0x2125a: " \x04\U0002125a", // 𡉚
+ 0x2125b: " \x04\U0002125b", // 𡉛
+ 0x2125c: " \x04\U0002125c", // 𡉜
+ 0x2125d: " \x04\U0002125d", // 𡉝
+ 0x2125e: " \x04\U0002125e", // 𡉞
+ 0x2125f: " \x04\U0002125f", // 𡉟
+ 0x21260: " \x04\U00021260", // 𡉠
+ 0x21261: " \x04\U00021261", // 𡉡
+ 0x21262: " \x04\U00021262", // 𡉢
+ 0x21263: " \x04\U00021263", // 𡉣
+ 0x21264: " \x04\U00021264", // 𡉤
+ 0x21265: " \x04\U00021265", // 𡉥
+ 0x21266: " \x04\U00021266", // 𡉦
+ 0x21267: " \x04\U00021267", // 𡉧
+ 0x21268: " \x04\U00021268", // 𡉨
+ 0x21269: " \x04\U00021269", // 𡉩
+ 0x2126a: " \x04\U0002126a", // 𡉪
+ 0x2126b: " \x04\U0002126b", // 𡉫
+ 0x2126c: " \x04\U0002126c", // 𡉬
+ 0x2126d: " \x04\U0002126d", // 𡉭
+ 0x2126e: " \x04\U0002126e", // 𡉮
+ 0x2126f: " \x04\U0002126f", // 𡉯
+ 0x21270: " \x04\U00021270", // 𡉰
+ 0x21271: " \x04\U00021271", // 𡉱
+ 0x21272: " \x04\U00021272", // 𡉲
+ 0x21273: " \x04\U00021273", // 𡉳
+ 0x21274: " \x04\U00021274", // 𡉴
+ 0x21275: " \x04\U00021275", // 𡉵
+ 0x21276: " \x04\U00021276", // 𡉶
+ 0x21277: " \x04\U00021277", // 𡉷
+ 0x21278: " \x04\U00021278", // 𡉸
+ 0x21279: " \x04\U00021279", // 𡉹
+ 0x2127a: " \x04\U0002127a", // 𡉺
+ 0x2127b: " \x04\U0002127b", // 𡉻
+ 0x2127c: " \x04\U0002127c", // 𡉼
+ 0x2127d: " \x04\U0002127d", // 𡉽
+ 0x2127e: " \x04\U0002127e", // 𡉾
+ 0x2127f: " \x04\U0002127f", // 𡉿
+ 0x21280: " \x04\U00021280", // 𡊀
+ 0x21281: " \x04\U00021281", // 𡊁
+ 0x21282: " \x04\U00021282", // 𡊂
+ 0x21283: " \x04\U00021283", // 𡊃
+ 0x21284: " \x05\U00021284", // 𡊄
+ 0x21285: " \x05\U00021285", // 𡊅
+ 0x21286: " \x05\U00021286", // 𡊆
+ 0x21287: " \x05\U00021287", // 𡊇
+ 0x21288: " \x05\U00021288", // 𡊈
+ 0x21289: " \x05\U00021289", // 𡊉
+ 0x2128a: " \x05\U0002128a", // 𡊊
+ 0x2128b: " \x05\U0002128b", // 𡊋
+ 0x2128c: " \x05\U0002128c", // 𡊌
+ 0x2128d: " \x05\U0002128d", // 𡊍
+ 0x2128e: " \x05\U0002128e", // 𡊎
+ 0x2128f: " \x05\U0002128f", // 𡊏
+ 0x21290: " \x05\U00021290", // 𡊐
+ 0x21291: " \x05\U00021291", // 𡊑
+ 0x21292: " \x05\U00021292", // 𡊒
+ 0x21293: " \x05\U00021293", // 𡊓
+ 0x21294: " \x05\U00021294", // 𡊔
+ 0x21295: " \x05\U00021295", // 𡊕
+ 0x21296: " \x05\U00021296", // 𡊖
+ 0x21297: " \x05\U00021297", // 𡊗
+ 0x21298: " \x05\U00021298", // 𡊘
+ 0x21299: " \x05\U00021299", // 𡊙
+ 0x2129a: " \x05\U0002129a", // 𡊚
+ 0x2129b: " \x05\U0002129b", // 𡊛
+ 0x2129c: " \x05\U0002129c", // 𡊜
+ 0x2129d: " \x05\U0002129d", // 𡊝
+ 0x2129e: " \x05\U0002129e", // 𡊞
+ 0x2129f: " \x05\U0002129f", // 𡊟
+ 0x212a0: " \x05\U000212a0", // 𡊠
+ 0x212a1: " \x05\U000212a1", // 𡊡
+ 0x212a2: " \x05\U000212a2", // 𡊢
+ 0x212a3: " \x05\U000212a3", // 𡊣
+ 0x212a4: " \x05\U000212a4", // 𡊤
+ 0x212a5: " \x05\U000212a5", // 𡊥
+ 0x212a6: " \x05\U000212a6", // 𡊦
+ 0x212a7: " \x05\U000212a7", // 𡊧
+ 0x212a8: " \x05\U000212a8", // 𡊨
+ 0x212a9: " \x05\U000212a9", // 𡊩
+ 0x212aa: " \x05\U000212aa", // 𡊪
+ 0x212ab: " \x05\U000212ab", // 𡊫
+ 0x212ac: " \x05\U000212ac", // 𡊬
+ 0x212ad: " \x05\U000212ad", // 𡊭
+ 0x212ae: " \x05\U000212ae", // 𡊮
+ 0x212af: " \x05\U000212af", // 𡊯
+ 0x212b0: " \x05\U000212b0", // 𡊰
+ 0x212b1: " \x05\U000212b1", // 𡊱
+ 0x212b2: " \x05\U000212b2", // 𡊲
+ 0x212b3: " \x05\U000212b3", // 𡊳
+ 0x212b4: " \x05\U000212b4", // 𡊴
+ 0x212b5: " \x05\U000212b5", // 𡊵
+ 0x212b6: " \x05\U000212b6", // 𡊶
+ 0x212b7: " \x06\U000212b7", // 𡊷
+ 0x212b8: " \x06\U000212b8", // 𡊸
+ 0x212b9: " \x06\U000212b9", // 𡊹
+ 0x212ba: " \x06\U000212ba", // 𡊺
+ 0x212bb: " \x06\U000212bb", // 𡊻
+ 0x212bc: " \x06\U000212bc", // 𡊼
+ 0x212bd: " \x06\U000212bd", // 𡊽
+ 0x212be: " \x06\U000212be", // 𡊾
+ 0x212bf: " \x06\U000212bf", // 𡊿
+ 0x212c0: " \x06\U000212c0", // 𡋀
+ 0x212c1: " \x06\U000212c1", // 𡋁
+ 0x212c2: " \x06\U000212c2", // 𡋂
+ 0x212c3: " \x06\U000212c3", // 𡋃
+ 0x212c4: " \x06\U000212c4", // 𡋄
+ 0x212c5: " \x06\U000212c5", // 𡋅
+ 0x212c6: " \x06\U000212c6", // 𡋆
+ 0x212c7: " \x06\U000212c7", // 𡋇
+ 0x212c8: " \x06\U000212c8", // 𡋈
+ 0x212c9: " \x06\U000212c9", // 𡋉
+ 0x212ca: " \x06\U000212ca", // 𡋊
+ 0x212cb: " \x06\U000212cb", // 𡋋
+ 0x212cc: " \x06\U000212cc", // 𡋌
+ 0x212cd: " \x06\U000212cd", // 𡋍
+ 0x212ce: " \x06\U000212ce", // 𡋎
+ 0x212cf: " \x06\U000212cf", // 𡋏
+ 0x212d0: " \x06\U000212d0", // 𡋐
+ 0x212d1: " \x06\U000212d1", // 𡋑
+ 0x212d2: " \x06\U000212d2", // 𡋒
+ 0x212d3: " \x06\U000212d3", // 𡋓
+ 0x212d4: " \x06\U000212d4", // 𡋔
+ 0x212d5: " \x06\U000212d5", // 𡋕
+ 0x212d6: " \x06\U000212d6", // 𡋖
+ 0x212d7: " \x06\U000212d7", // 𡋗
+ 0x212d8: " \x06\U000212d8", // 𡋘
+ 0x212d9: " \x06\U000212d9", // 𡋙
+ 0x212da: " \x06\U000212da", // 𡋚
+ 0x212db: " \x06\U000212db", // 𡋛
+ 0x212dc: "\x82\x05\U000212dc", // 𡋜
+ 0x212dd: " \x06\U000212dd", // 𡋝
+ 0x212de: " \x06\U000212de", // 𡋞
+ 0x212df: " \x06\U000212df", // 𡋟
+ 0x212e0: " \x06\U000212e0", // 𡋠
+ 0x212e1: " \x06\U000212e1", // 𡋡
+ 0x212e2: " \x06\U000212e2", // 𡋢
+ 0x212e3: " \x06\U000212e3", // 𡋣
+ 0x212e4: " \x06\U000212e4", // 𡋤
+ 0x212e5: " \x06\U000212e5", // 𡋥
+ 0x212e6: " \x06\U000212e6", // 𡋦
+ 0x212e7: " \x06\U000212e7", // 𡋧
+ 0x212e8: " \x06\U000212e8", // 𡋨
+ 0x212e9: " \x06\U000212e9", // 𡋩
+ 0x212ea: " \x06\U000212ea", // 𡋪
+ 0x212eb: " \x06\U000212eb", // 𡋫
+ 0x212ec: " \x06\U000212ec", // 𡋬
+ 0x212ed: " \a\U000212ed", // 𡋭
+ 0x212ee: " \a\U000212ee", // 𡋮
+ 0x212ef: " \a\U000212ef", // 𡋯
+ 0x212f0: " \a\U000212f0", // 𡋰
+ 0x212f1: " \a\U000212f1", // 𡋱
+ 0x212f2: " \a\U000212f2", // 𡋲
+ 0x212f3: " \a\U000212f3", // 𡋳
+ 0x212f4: " \a\U000212f4", // 𡋴
+ 0x212f5: " \a\U000212f5", // 𡋵
+ 0x212f6: " \a\U000212f6", // 𡋶
+ 0x212f7: " \a\U000212f7", // 𡋷
+ 0x212f8: " \a\U000212f8", // 𡋸
+ 0x212f9: " \a\U000212f9", // 𡋹
+ 0x212fa: " \a\U000212fa", // 𡋺
+ 0x212fb: " \a\U000212fb", // 𡋻
+ 0x212fc: " \a\U000212fc", // 𡋼
+ 0x212fd: " \a\U000212fd", // 𡋽
+ 0x212fe: " \a\U000212fe", // 𡋾
+ 0x212ff: " \a\U000212ff", // 𡋿
+ 0x21300: " \a\U00021300", // 𡌀
+ 0x21301: " \a\U00021301", // 𡌁
+ 0x21302: " \a\U00021302", // 𡌂
+ 0x21303: " \a\U00021303", // 𡌃
+ 0x21304: " \a\U00021304", // 𡌄
+ 0x21305: " \a\U00021305", // 𡌅
+ 0x21306: " \a\U00021306", // 𡌆
+ 0x21307: " \a\U00021307", // 𡌇
+ 0x21308: " \a\U00021308", // 𡌈
+ 0x21309: " \a\U00021309", // 𡌉
+ 0x2130a: " \a\U0002130a", // 𡌊
+ 0x2130b: " \a\U0002130b", // 𡌋
+ 0x2130c: " \a\U0002130c", // 𡌌
+ 0x2130d: " \a\U0002130d", // 𡌍
+ 0x2130e: " \a\U0002130e", // 𡌎
+ 0x2130f: " \a\U0002130f", // 𡌏
+ 0x21310: " \a\U00021310", // 𡌐
+ 0x21311: " \a\U00021311", // 𡌑
+ 0x21312: " \a\U00021312", // 𡌒
+ 0x21313: " \a\U00021313", // 𡌓
+ 0x21314: " \a\U00021314", // 𡌔
+ 0x21315: " \a\U00021315", // 𡌕
+ 0x21316: " \a\U00021316", // 𡌖
+ 0x21317: " \a\U00021317", // 𡌗
+ 0x21318: " \a\U00021318", // 𡌘
+ 0x21319: " \a\U00021319", // 𡌙
+ 0x2131a: " \a\U0002131a", // 𡌚
+ 0x2131b: " \a\U0002131b", // 𡌛
+ 0x2131c: " \a\U0002131c", // 𡌜
+ 0x2131d: " \a\U0002131d", // 𡌝
+ 0x2131e: " \a\U0002131e", // 𡌞
+ 0x2131f: " \a\U0002131f", // 𡌟
+ 0x21320: " \a\U00021320", // 𡌠
+ 0x21321: " \a\U00021321", // 𡌡
+ 0x21322: " \a\U00021322", // 𡌢
+ 0x21323: " \a\U00021323", // 𡌣
+ 0x21324: " \a\U00021324", // 𡌤
+ 0x21325: " \a\U00021325", // 𡌥
+ 0x21326: " \b\U00021326", // 𡌦
+ 0x21327: " \b\U00021327", // 𡌧
+ 0x21328: " \b\U00021328", // 𡌨
+ 0x21329: " \b\U00021329", // 𡌩
+ 0x2132a: " \b\U0002132a", // 𡌪
+ 0x2132b: " \b\U0002132b", // 𡌫
+ 0x2132c: " \b\U0002132c", // 𡌬
+ 0x2132d: " \b\U0002132d", // 𡌭
+ 0x2132e: " \b\U0002132e", // 𡌮
+ 0x2132f: " \b\U0002132f", // 𡌯
+ 0x21330: " \b\U00021330", // 𡌰
+ 0x21331: " \b\U00021331", // 𡌱
+ 0x21332: " \b\U00021332", // 𡌲
+ 0x21333: " \b\U00021333", // 𡌳
+ 0x21334: " \b\U00021334", // 𡌴
+ 0x21335: " \b\U00021335", // 𡌵
+ 0x21336: " \b\U00021336", // 𡌶
+ 0x21337: " \b\U00021337", // 𡌷
+ 0x21338: " \b\U00021338", // 𡌸
+ 0x21339: " \b\U00021339", // 𡌹
+ 0x2133a: " \b\U0002133a", // 𡌺
+ 0x2133b: " \b\U0002133b", // 𡌻
+ 0x2133c: " \b\U0002133c", // 𡌼
+ 0x2133d: " \b\U0002133d", // 𡌽
+ 0x2133e: " \b\U0002133e", // 𡌾
+ 0x2133f: " \b\U0002133f", // 𡌿
+ 0x21340: " \b\U00021340", // 𡍀
+ 0x21341: " \b\U00021341", // 𡍁
+ 0x21342: " \b\U00021342", // 𡍂
+ 0x21343: " \b\U00021343", // 𡍃
+ 0x21344: " \b\U00021344", // 𡍄
+ 0x21345: " \b\U00021345", // 𡍅
+ 0x21346: " \b\U00021346", // 𡍆
+ 0x21347: " \b\U00021347", // 𡍇
+ 0x21348: " \b\U00021348", // 𡍈
+ 0x21349: " \b\U00021349", // 𡍉
+ 0x2134a: " \b\U0002134a", // 𡍊
+ 0x2134b: " \b\U0002134b", // 𡍋
+ 0x2134c: " \b\U0002134c", // 𡍌
+ 0x2134d: " \b\U0002134d", // 𡍍
+ 0x2134e: " \b\U0002134e", // 𡍎
+ 0x2134f: " \b\U0002134f", // 𡍏
+ 0x21350: " \b\U00021350", // 𡍐
+ 0x21351: " \b\U00021351", // 𡍑
+ 0x21352: " \b\U00021352", // 𡍒
+ 0x21353: " \b\U00021353", // 𡍓
+ 0x21354: " \b\U00021354", // 𡍔
+ 0x21355: " \b\U00021355", // 𡍕
+ 0x21356: " \b\U00021356", // 𡍖
+ 0x21357: " \b\U00021357", // 𡍗
+ 0x21358: " \b\U00021358", // 𡍘
+ 0x21359: " \b\U00021359", // 𡍙
+ 0x2135a: " \b\U0002135a", // 𡍚
+ 0x2135b: " \b\U0002135b", // 𡍛
+ 0x2135c: " \b\U0002135c", // 𡍜
+ 0x2135d: " \b\U0002135d", // 𡍝
+ 0x2135e: " \b\U0002135e", // 𡍞
+ 0x2135f: " \b\U0002135f", // 𡍟
+ 0x21360: " \b\U00021360", // 𡍠
+ 0x21361: " \b\U00021361", // 𡍡
+ 0x21362: " \b\U00021362", // 𡍢
+ 0x21363: " \b\U00021363", // 𡍣
+ 0x21364: " \t\U00021364", // 𡍤
+ 0x21365: " \t\U00021365", // 𡍥
+ 0x21366: " \t\U00021366", // 𡍦
+ 0x21367: " \t\U00021367", // 𡍧
+ 0x21368: " \t\U00021368", // 𡍨
+ 0x21369: " \t\U00021369", // 𡍩
+ 0x2136a: " \t\U0002136a", // 𡍪
+ 0x2136b: " \t\U0002136b", // 𡍫
+ 0x2136c: " \t\U0002136c", // 𡍬
+ 0x2136d: " \t\U0002136d", // 𡍭
+ 0x2136e: " \t\U0002136e", // 𡍮
+ 0x2136f: " \t\U0002136f", // 𡍯
+ 0x21370: " \t\U00021370", // 𡍰
+ 0x21371: " \t\U00021371", // 𡍱
+ 0x21372: " \t\U00021372", // 𡍲
+ 0x21373: " \t\U00021373", // 𡍳
+ 0x21374: " \t\U00021374", // 𡍴
+ 0x21375: " \t\U00021375", // 𡍵
+ 0x21376: " \t\U00021376", // 𡍶
+ 0x21377: " \t\U00021377", // 𡍷
+ 0x21378: " \t\U00021378", // 𡍸
+ 0x21379: " \t\U00021379", // 𡍹
+ 0x2137a: " \t\U0002137a", // 𡍺
+ 0x2137b: " \t\U0002137b", // 𡍻
+ 0x2137c: " \t\U0002137c", // 𡍼
+ 0x2137d: " \t\U0002137d", // 𡍽
+ 0x2137e: " \t\U0002137e", // 𡍾
+ 0x2137f: " \t\U0002137f", // 𡍿
+ 0x21380: " \t\U00021380", // 𡎀
+ 0x21381: " \t\U00021381", // 𡎁
+ 0x21382: " \t\U00021382", // 𡎂
+ 0x21383: " \t\U00021383", // 𡎃
+ 0x21384: " \t\U00021384", // 𡎄
+ 0x21385: " \t\U00021385", // 𡎅
+ 0x21386: " \t\U00021386", // 𡎆
+ 0x21387: " \t\U00021387", // 𡎇
+ 0x21388: " \t\U00021388", // 𡎈
+ 0x21389: " \t\U00021389", // 𡎉
+ 0x2138a: " \t\U0002138a", // 𡎊
+ 0x2138b: " \t\U0002138b", // 𡎋
+ 0x2138c: " \t\U0002138c", // 𡎌
+ 0x2138d: " \t\U0002138d", // 𡎍
+ 0x2138e: " \t\U0002138e", // 𡎎
+ 0x2138f: " \t\U0002138f", // 𡎏
+ 0x21390: " \t\U00021390", // 𡎐
+ 0x21391: " \t\U00021391", // 𡎑
+ 0x21392: " \t\U00021392", // 𡎒
+ 0x21393: " \t\U00021393", // 𡎓
+ 0x21394: " \t\U00021394", // 𡎔
+ 0x21395: " \t\U00021395", // 𡎕
+ 0x21396: " \t\U00021396", // 𡎖
+ 0x21397: " \t\U00021397", // 𡎗
+ 0x21398: " \t\U00021398", // 𡎘
+ 0x21399: " \t\U00021399", // 𡎙
+ 0x2139a: " \t\U0002139a", // 𡎚
+ 0x2139b: " \t\U0002139b", // 𡎛
+ 0x2139c: " \t\U0002139c", // 𡎜
+ 0x2139d: " \t\U0002139d", // 𡎝
+ 0x2139e: " \t\U0002139e", // 𡎞
+ 0x2139f: " \t\U0002139f", // 𡎟
+ 0x213a0: " \t\U000213a0", // 𡎠
+ 0x213a1: " \t\U000213a1", // 𡎡
+ 0x213a2: " \t\U000213a2", // 𡎢
+ 0x213a3: " \t\U000213a3", // 𡎣
+ 0x213a4: " \t\U000213a4", // 𡎤
+ 0x213a5: " \t\U000213a5", // 𡎥
+ 0x213a6: " \t\U000213a6", // 𡎦
+ 0x213a7: " \t\U000213a7", // 𡎧
+ 0x213a8: " \t\U000213a8", // 𡎨
+ 0x213a9: " \t\U000213a9", // 𡎩
+ 0x213aa: " \t\U000213aa", // 𡎪
+ 0x213ab: " \t\U000213ab", // 𡎫
+ 0x213ac: " \t\U000213ac", // 𡎬
+ 0x213ad: " \t\U000213ad", // 𡎭
+ 0x213ae: " \n\U000213ae", // 𡎮
+ 0x213af: " \n\U000213af", // 𡎯
+ 0x213b0: " \n\U000213b0", // 𡎰
+ 0x213b1: " \n\U000213b1", // 𡎱
+ 0x213b2: " \n\U000213b2", // 𡎲
+ 0x213b3: " \n\U000213b3", // 𡎳
+ 0x213b4: " \n\U000213b4", // 𡎴
+ 0x213b5: " \n\U000213b5", // 𡎵
+ 0x213b6: " \n\U000213b6", // 𡎶
+ 0x213b7: " \n\U000213b7", // 𡎷
+ 0x213b8: " \n\U000213b8", // 𡎸
+ 0x213b9: " \n\U000213b9", // 𡎹
+ 0x213ba: " \n\U000213ba", // 𡎺
+ 0x213bb: " \n\U000213bb", // 𡎻
+ 0x213bc: " \n\U000213bc", // 𡎼
+ 0x213bd: " \n\U000213bd", // 𡎽
+ 0x213be: " \n\U000213be", // 𡎾
+ 0x213bf: " \n\U000213bf", // 𡎿
+ 0x213c0: " \n\U000213c0", // 𡏀
+ 0x213c1: " \n\U000213c1", // 𡏁
+ 0x213c2: " \n\U000213c2", // 𡏂
+ 0x213c3: " \n\U000213c3", // 𡏃
+ 0x213c4: " \n\U000213c4", // 𡏄
+ 0x213c5: " \n\U000213c5", // 𡏅
+ 0x213c6: " \n\U000213c6", // 𡏆
+ 0x213c7: " \n\U000213c7", // 𡏇
+ 0x213c8: " \n\U000213c8", // 𡏈
+ 0x213c9: " \n\U000213c9", // 𡏉
+ 0x213ca: " \n\U000213ca", // 𡏊
+ 0x213cb: " \n\U000213cb", // 𡏋
+ 0x213cc: " \n\U000213cc", // 𡏌
+ 0x213cd: " \n\U000213cd", // 𡏍
+ 0x213ce: " \n\U000213ce", // 𡏎
+ 0x213cf: " \n\U000213cf", // 𡏏
+ 0x213d0: " \n\U000213d0", // 𡏐
+ 0x213d1: " \n\U000213d1", // 𡏑
+ 0x213d2: " \n\U000213d2", // 𡏒
+ 0x213d3: " \n\U000213d3", // 𡏓
+ 0x213d4: " \n\U000213d4", // 𡏔
+ 0x213d5: " \n\U000213d5", // 𡏕
+ 0x213d6: " \n\U000213d6", // 𡏖
+ 0x213d7: " \n\U000213d7", // 𡏗
+ 0x213d8: " \n\U000213d8", // 𡏘
+ 0x213d9: " \n\U000213d9", // 𡏙
+ 0x213da: " \n\U000213da", // 𡏚
+ 0x213db: " \n\U000213db", // 𡏛
+ 0x213dc: " \n\U000213dc", // 𡏜
+ 0x213dd: " \n\U000213dd", // 𡏝
+ 0x213de: " \n\U000213de", // 𡏞
+ 0x213df: " \n\U000213df", // 𡏟
+ 0x213e0: " \n\U000213e0", // 𡏠
+ 0x213e1: " \n\U000213e1", // 𡏡
+ 0x213e2: " \n\U000213e2", // 𡏢
+ 0x213e3: " \n\U000213e3", // 𡏣
+ 0x213e4: " \n\U000213e4", // 𡏤
+ 0x213e5: " \n\U000213e5", // 𡏥
+ 0x213e6: " \n\U000213e6", // 𡏦
+ 0x213e7: " \n\U000213e7", // 𡏧
+ 0x213e8: " \n\U000213e8", // 𡏨
+ 0x213e9: " \n\U000213e9", // 𡏩
+ 0x213ea: " \n\U000213ea", // 𡏪
+ 0x213eb: " \n\U000213eb", // 𡏫
+ 0x213ec: " \n\U000213ec", // 𡏬
+ 0x213ed: " \v\U000213ed", // 𡏭
+ 0x213ee: " \v\U000213ee", // 𡏮
+ 0x213ef: " \v\U000213ef", // 𡏯
+ 0x213f0: " \v\U000213f0", // 𡏰
+ 0x213f1: " \v\U000213f1", // 𡏱
+ 0x213f2: " \v\U000213f2", // 𡏲
+ 0x213f3: " \v\U000213f3", // 𡏳
+ 0x213f4: " \v\U000213f4", // 𡏴
+ 0x213f5: " \v\U000213f5", // 𡏵
+ 0x213f6: " \v\U000213f6", // 𡏶
+ 0x213f7: " \v\U000213f7", // 𡏷
+ 0x213f8: " \v\U000213f8", // 𡏸
+ 0x213f9: " \v\U000213f9", // 𡏹
+ 0x213fa: " \v\U000213fa", // 𡏺
+ 0x213fb: " \v\U000213fb", // 𡏻
+ 0x213fc: " \v\U000213fc", // 𡏼
+ 0x213fd: " \v\U000213fd", // 𡏽
+ 0x213fe: " \v\U000213fe", // 𡏾
+ 0x213ff: " \v\U000213ff", // 𡏿
+ 0x21400: " \v\U00021400", // 𡐀
+ 0x21401: " \v\U00021401", // 𡐁
+ 0x21402: " \v\U00021402", // 𡐂
+ 0x21403: " \v\U00021403", // 𡐃
+ 0x21404: " \v\U00021404", // 𡐄
+ 0x21405: " \v\U00021405", // 𡐅
+ 0x21406: " \v\U00021406", // 𡐆
+ 0x21407: " \v\U00021407", // 𡐇
+ 0x21408: " \v\U00021408", // 𡐈
+ 0x21409: " \v\U00021409", // 𡐉
+ 0x2140a: " \v\U0002140a", // 𡐊
+ 0x2140b: " \v\U0002140b", // 𡐋
+ 0x2140c: " \v\U0002140c", // 𡐌
+ 0x2140d: " \v\U0002140d", // 𡐍
+ 0x2140e: " \v\U0002140e", // 𡐎
+ 0x2140f: " \v\U0002140f", // 𡐏
+ 0x21410: " \v\U00021410", // 𡐐
+ 0x21411: " \v\U00021411", // 𡐑
+ 0x21412: " \v\U00021412", // 𡐒
+ 0x21413: " \v\U00021413", // 𡐓
+ 0x21414: " \v\U00021414", // 𡐔
+ 0x21415: " \v\U00021415", // 𡐕
+ 0x21416: " \v\U00021416", // 𡐖
+ 0x21417: " \v\U00021417", // 𡐗
+ 0x21418: " \v\U00021418", // 𡐘
+ 0x21419: " \v\U00021419", // 𡐙
+ 0x2141a: " \v\U0002141a", // 𡐚
+ 0x2141b: " \v\U0002141b", // 𡐛
+ 0x2141c: " \v\U0002141c", // 𡐜
+ 0x2141d: " \v\U0002141d", // 𡐝
+ 0x2141e: " \f\U0002141e", // 𡐞
+ 0x2141f: " \f\U0002141f", // 𡐟
+ 0x21420: " \f\U00021420", // 𡐠
+ 0x21421: " \f\U00021421", // 𡐡
+ 0x21422: " \f\U00021422", // 𡐢
+ 0x21423: " \f\U00021423", // 𡐣
+ 0x21424: " \f\U00021424", // 𡐤
+ 0x21425: " \f\U00021425", // 𡐥
+ 0x21426: " \f\U00021426", // 𡐦
+ 0x21427: " \f\U00021427", // 𡐧
+ 0x21428: " \f\U00021428", // 𡐨
+ 0x21429: " \f\U00021429", // 𡐩
+ 0x2142a: " \f\U0002142a", // 𡐪
+ 0x2142b: " \f\U0002142b", // 𡐫
+ 0x2142c: " \f\U0002142c", // 𡐬
+ 0x2142d: " \f\U0002142d", // 𡐭
+ 0x2142e: " \f\U0002142e", // 𡐮
+ 0x2142f: " \f\U0002142f", // 𡐯
+ 0x21430: " \f\U00021430", // 𡐰
+ 0x21431: " \f\U00021431", // 𡐱
+ 0x21432: " \f\U00021432", // 𡐲
+ 0x21433: " \f\U00021433", // 𡐳
+ 0x21434: " \f\U00021434", // 𡐴
+ 0x21435: " \f\U00021435", // 𡐵
+ 0x21436: " \f\U00021436", // 𡐶
+ 0x21437: " \f\U00021437", // 𡐷
+ 0x21438: " \f\U00021438", // 𡐸
+ 0x21439: " \f\U00021439", // 𡐹
+ 0x2143a: " \f\U0002143a", // 𡐺
+ 0x2143b: " \f\U0002143b", // 𡐻
+ 0x2143c: " \f\U0002143c", // 𡐼
+ 0x2143d: " \f\U0002143d", // 𡐽
+ 0x2143e: " \f\U0002143e", // 𡐾
+ 0x2143f: " \f\U0002143f", // 𡐿
+ 0x21440: " \f\U00021440", // 𡑀
+ 0x21441: " \f\U00021441", // 𡑁
+ 0x21442: " \f\U00021442", // 𡑂
+ 0x21443: " \f\U00021443", // 𡑃
+ 0x21444: " \f\U00021444", // 𡑄
+ 0x21445: " \f\U00021445", // 𡑅
+ 0x21446: " \f\U00021446", // 𡑆
+ 0x21447: " \f\U00021447", // 𡑇
+ 0x21448: " \f\U00021448", // 𡑈
+ 0x21449: " \f\U00021449", // 𡑉
+ 0x2144a: " \f\U0002144a", // 𡑊
+ 0x2144b: " \f\U0002144b", // 𡑋
+ 0x2144c: " \f\U0002144c", // 𡑌
+ 0x2144d: " \f\U0002144d", // 𡑍
+ 0x2144e: " \f\U0002144e", // 𡑎
+ 0x2144f: " \f\U0002144f", // 𡑏
+ 0x21450: " \f\U00021450", // 𡑐
+ 0x21451: " \f\U00021451", // 𡑑
+ 0x21452: " \f\U00021452", // 𡑒
+ 0x21453: " \f\U00021453", // 𡑓
+ 0x21454: " \f\U00021454", // 𡑔
+ 0x21455: " \f\U00021455", // 𡑕
+ 0x21456: " \f\U00021456", // 𡑖
+ 0x21457: " \f\U00021457", // 𡑗
+ 0x21458: " \f\U00021458", // 𡑘
+ 0x21459: " \f\U00021459", // 𡑙
+ 0x2145a: " \f\U0002145a", // 𡑚
+ 0x2145b: " \f\U0002145b", // 𡑛
+ 0x2145c: " \f\U0002145c", // 𡑜
+ 0x2145d: " \f\U0002145d", // 𡑝
+ 0x2145e: " \r\U0002145e", // 𡑞
+ 0x2145f: " \r\U0002145f", // 𡑟
+ 0x21460: " \r\U00021460", // 𡑠
+ 0x21461: " \r\U00021461", // 𡑡
+ 0x21462: " \r\U00021462", // 𡑢
+ 0x21463: " \r\U00021463", // 𡑣
+ 0x21464: " \r\U00021464", // 𡑤
+ 0x21465: " \r\U00021465", // 𡑥
+ 0x21466: " \r\U00021466", // 𡑦
+ 0x21467: " \r\U00021467", // 𡑧
+ 0x21468: " \r\U00021468", // 𡑨
+ 0x21469: " \r\U00021469", // 𡑩
+ 0x2146a: " \r\U0002146a", // 𡑪
+ 0x2146b: " \r\U0002146b", // 𡑫
+ 0x2146c: " \r\U0002146c", // 𡑬
+ 0x2146d: " \r\U0002146d", // 𡑭
+ 0x2146e: " \r\U0002146e", // 𡑮
+ 0x2146f: " \r\U0002146f", // 𡑯
+ 0x21470: " \r\U00021470", // 𡑰
+ 0x21471: " \r\U00021471", // 𡑱
+ 0x21472: " \r\U00021472", // 𡑲
+ 0x21473: " \r\U00021473", // 𡑳
+ 0x21474: " \r\U00021474", // 𡑴
+ 0x21475: " \r\U00021475", // 𡑵
+ 0x21476: " \r\U00021476", // 𡑶
+ 0x21477: " \r\U00021477", // 𡑷
+ 0x21478: " \r\U00021478", // 𡑸
+ 0x21479: " \r\U00021479", // 𡑹
+ 0x2147a: "\xa8\t\U0002147a", // 𡑺
+ 0x2147b: " \r\U0002147b", // 𡑻
+ 0x2147c: " \r\U0002147c", // 𡑼
+ 0x2147d: " \r\U0002147d", // 𡑽
+ 0x2147e: " \r\U0002147e", // 𡑾
+ 0x2147f: " \r\U0002147f", // 𡑿
+ 0x21480: " \r\U00021480", // 𡒀
+ 0x21481: " \r\U00021481", // 𡒁
+ 0x21482: " \r\U00021482", // 𡒂
+ 0x21483: " \r\U00021483", // 𡒃
+ 0x21484: " \r\U00021484", // 𡒄
+ 0x21485: " \r\U00021485", // 𡒅
+ 0x21486: " \r\U00021486", // 𡒆
+ 0x21487: " \r\U00021487", // 𡒇
+ 0x21488: " \r\U00021488", // 𡒈
+ 0x21489: " \x0e\U00021489", // 𡒉
+ 0x2148a: " \x0e\U0002148a", // 𡒊
+ 0x2148b: " \x0e\U0002148b", // 𡒋
+ 0x2148c: " \x0e\U0002148c", // 𡒌
+ 0x2148d: " \x0e\U0002148d", // 𡒍
+ 0x2148e: " \x0e\U0002148e", // 𡒎
+ 0x2148f: " \x0e\U0002148f", // 𡒏
+ 0x21490: " \x0e\U00021490", // 𡒐
+ 0x21491: " \x0e\U00021491", // 𡒑
+ 0x21492: " \x0e\U00021492", // 𡒒
+ 0x21493: " \x0e\U00021493", // 𡒓
+ 0x21494: " \x0e\U00021494", // 𡒔
+ 0x21495: " \x0e\U00021495", // 𡒕
+ 0x21496: " \x0e\U00021496", // 𡒖
+ 0x21497: " \x0e\U00021497", // 𡒗
+ 0x21498: " \x0e\U00021498", // 𡒘
+ 0x21499: " \x0e\U00021499", // 𡒙
+ 0x2149a: " \x0e\U0002149a", // 𡒚
+ 0x2149b: " \x0e\U0002149b", // 𡒛
+ 0x2149c: " \x0e\U0002149c", // 𡒜
+ 0x2149d: " \x0e\U0002149d", // 𡒝
+ 0x2149e: " \x0e\U0002149e", // 𡒞
+ 0x2149f: " \x0e\U0002149f", // 𡒟
+ 0x214a0: " \x0e\U000214a0", // 𡒠
+ 0x214a1: "\xcf\x04\U000214a1", // 𡒡
+ 0x214a2: " \x0e\U000214a2", // 𡒢
+ 0x214a3: " \x0e\U000214a3", // 𡒣
+ 0x214a4: " \x0e\U000214a4", // 𡒤
+ 0x214a5: " \x0e\U000214a5", // 𡒥
+ 0x214a6: " \x0e\U000214a6", // 𡒦
+ 0x214a7: " \x0e\U000214a7", // 𡒧
+ 0x214a8: " \x0e\U000214a8", // 𡒨
+ 0x214a9: " \x0e\U000214a9", // 𡒩
+ 0x214aa: " \x0e\U000214aa", // 𡒪
+ 0x214ab: " \x0e\U000214ab", // 𡒫
+ 0x214ac: " \x0e\U000214ac", // 𡒬
+ 0x214ad: " \x0e\U000214ad", // 𡒭
+ 0x214ae: " \x0e\U000214ae", // 𡒮
+ 0x214af: " \x0e\U000214af", // 𡒯
+ 0x214b0: " \x0f\U000214b0", // 𡒰
+ 0x214b1: " \x0f\U000214b1", // 𡒱
+ 0x214b2: " \x0f\U000214b2", // 𡒲
+ 0x214b3: " \x0f\U000214b3", // 𡒳
+ 0x214b4: " \x0f\U000214b4", // 𡒴
+ 0x214b5: " \x0f\U000214b5", // 𡒵
+ 0x214b6: " \x0f\U000214b6", // 𡒶
+ 0x214b7: " \x0f\U000214b7", // 𡒷
+ 0x214b8: " \x0f\U000214b8", // 𡒸
+ 0x214b9: " \x0f\U000214b9", // 𡒹
+ 0x214ba: " \x0f\U000214ba", // 𡒺
+ 0x214bb: " \x0f\U000214bb", // 𡒻
+ 0x214bc: " \x0f\U000214bc", // 𡒼
+ 0x214bd: " \x0f\U000214bd", // 𡒽
+ 0x214be: " \x0f\U000214be", // 𡒾
+ 0x214bf: " \x0f\U000214bf", // 𡒿
+ 0x214c0: " \x10\U000214c0", // 𡓀
+ 0x214c1: " \x0f\U000214c1", // 𡓁
+ 0x214c2: " \x0f\U000214c2", // 𡓂
+ 0x214c3: " \x0f\U000214c3", // 𡓃
+ 0x214c4: " \x0f\U000214c4", // 𡓄
+ 0x214c5: " \x0f\U000214c5", // 𡓅
+ 0x214c6: " \x0f\U000214c6", // 𡓆
+ 0x214c7: " \x0f\U000214c7", // 𡓇
+ 0x214c8: " \x0f\U000214c8", // 𡓈
+ 0x214c9: " \x0f\U000214c9", // 𡓉
+ 0x214ca: " \x0f\U000214ca", // 𡓊
+ 0x214cb: " \x0f\U000214cb", // 𡓋
+ 0x214cc: " \x10\U000214cc", // 𡓌
+ 0x214cd: " \x0f\U000214cd", // 𡓍
+ 0x214ce: " \x0f\U000214ce", // 𡓎
+ 0x214cf: " \x0f\U000214cf", // 𡓏
+ 0x214d0: " \x10\U000214d0", // 𡓐
+ 0x214d1: " \x10\U000214d1", // 𡓑
+ 0x214d2: " \x10\U000214d2", // 𡓒
+ 0x214d3: " \x10\U000214d3", // 𡓓
+ 0x214d4: " \x10\U000214d4", // 𡓔
+ 0x214d5: " \x10\U000214d5", // 𡓕
+ 0x214d6: " \x10\U000214d6", // 𡓖
+ 0x214d7: " \x10\U000214d7", // 𡓗
+ 0x214d8: " \x10\U000214d8", // 𡓘
+ 0x214d9: " \x10\U000214d9", // 𡓙
+ 0x214da: " \x10\U000214da", // 𡓚
+ 0x214db: "\x96\f\U000214db", // 𡓛
+ 0x214dc: " \x10\U000214dc", // 𡓜
+ 0x214dd: " \x10\U000214dd", // 𡓝
+ 0x214de: " \x10\U000214de", // 𡓞
+ 0x214df: " \x10\U000214df", // 𡓟
+ 0x214e0: " \x10\U000214e0", // 𡓠
+ 0x214e1: " \x10\U000214e1", // 𡓡
+ 0x214e2: " \x10\U000214e2", // 𡓢
+ 0x214e3: " \x10\U000214e3", // 𡓣
+ 0x214e4: " \x10\U000214e4", // 𡓤
+ 0x214e5: " \x10\U000214e5", // 𡓥
+ 0x214e6: " \x11\U000214e6", // 𡓦
+ 0x214e7: " \x11\U000214e7", // 𡓧
+ 0x214e8: " \x11\U000214e8", // 𡓨
+ 0x214e9: " \x11\U000214e9", // 𡓩
+ 0x214ea: " \x11\U000214ea", // 𡓪
+ 0x214eb: " \x11\U000214eb", // 𡓫
+ 0x214ec: " \x11\U000214ec", // 𡓬
+ 0x214ed: " \x11\U000214ed", // 𡓭
+ 0x214ee: " \x11\U000214ee", // 𡓮
+ 0x214ef: " \x11\U000214ef", // 𡓯
+ 0x214f0: " \x11\U000214f0", // 𡓰
+ 0x214f1: " \x12\U000214f1", // 𡓱
+ 0x214f2: " \x12\U000214f2", // 𡓲
+ 0x214f3: " \x12\U000214f3", // 𡓳
+ 0x214f4: " \x12\U000214f4", // 𡓴
+ 0x214f5: " \x12\U000214f5", // 𡓵
+ 0x214f6: " \x12\U000214f6", // 𡓶
+ 0x214f7: "\xb8\f\U000214f7", // 𡓷
+ 0x214f8: " \x12\U000214f8", // 𡓸
+ 0x214f9: " \x12\U000214f9", // 𡓹
+ 0x214fa: " \x13\U000214fa", // 𡓺
+ 0x214fb: " \x12\U000214fb", // 𡓻
+ 0x214fc: " \x12\U000214fc", // 𡓼
+ 0x214fd: " \x12\U000214fd", // 𡓽
+ 0x214fe: " \x12\U000214fe", // 𡓾
+ 0x214ff: " \x12\U000214ff", // 𡓿
+ 0x21500: " \x12\U00021500", // 𡔀
+ 0x21501: " \x12\U00021501", // 𡔁
+ 0x21502: " \x13\U00021502", // 𡔂
+ 0x21503: " \x13\U00021503", // 𡔃
+ 0x21504: " \x13\U00021504", // 𡔄
+ 0x21505: " \x13\U00021505", // 𡔅
+ 0x21506: " \x13\U00021506", // 𡔆
+ 0x21507: " \x13\U00021507", // 𡔇
+ 0x21508: " \x13\U00021508", // 𡔈
+ 0x21509: " \x13\U00021509", // 𡔉
+ 0x2150a: " \x14\U0002150a", // 𡔊
+ 0x2150b: " \x14\U0002150b", // 𡔋
+ 0x2150c: " \x14\U0002150c", // 𡔌
+ 0x2150d: " \x14\U0002150d", // 𡔍
+ 0x2150e: " \x14\U0002150e", // 𡔎
+ 0x2150f: " \x15\U0002150f", // 𡔏
+ 0x21510: " \x15\U00021510", // 𡔐
+ 0x21511: " \x15\U00021511", // 𡔑
+ 0x21512: " \x15\U00021512", // 𡔒
+ 0x21513: " \x15\U00021513", // 𡔓
+ 0x21514: " \x15\U00021514", // 𡔔
+ 0x21515: " \x15\U00021515", // 𡔕
+ 0x21516: " \x17\U00021516", // 𡔖
+ 0x21517: " \x1a\U00021517", // 𡔗
+ 0x21518: " \x1b\U00021518", // 𡔘
+ 0x21519: " !\U00021519", // 𡔙
+ 0x2151a: " $\U0002151a", // 𡔚
+ 0x2151b: "!\x02\U0002151b", // 𡔛
+ 0x2151c: "!\x03\U0002151c", // 𡔜
+ 0x2151d: "!\x04\U0002151d", // 𡔝
+ 0x2151e: "!\x04\U0002151e", // 𡔞
+ 0x2151f: "!\x05\U0002151f", // 𡔟
+ 0x21520: "!\x06\U00021520", // 𡔠
+ 0x21521: "!\x06\U00021521", // 𡔡
+ 0x21522: "!\x06\U00021522", // 𡔢
+ 0x21523: "!\a\U00021523", // 𡔣
+ 0x21524: "!\a\U00021524", // 𡔤
+ 0x21525: "!\a\U00021525", // 𡔥
+ 0x21526: "!\a\U00021526", // 𡔦
+ 0x21527: "!\a\U00021527", // 𡔧
+ 0x21528: "!\a\U00021528", // 𡔨
+ 0x21529: "!\a\U00021529", // 𡔩
+ 0x2152a: "!\b\U0002152a", // 𡔪
+ 0x2152b: "!\b\U0002152b", // 𡔫
+ 0x2152c: "!\b\U0002152c", // 𡔬
+ 0x2152d: "!\b\U0002152d", // 𡔭
+ 0x2152e: "!\t\U0002152e", // 𡔮
+ 0x2152f: "!\t\U0002152f", // 𡔯
+ 0x21530: "!\n\U00021530", // 𡔰
+ 0x21531: "%\t\U00021531", // 𡔱
+ 0x21532: "!\n\U00021532", // 𡔲
+ 0x21533: "!\n\U00021533", // 𡔳
+ 0x21534: "!\n\U00021534", // 𡔴
+ 0x21535: "!\n\U00021535", // 𡔵
+ 0x21536: "!\v\U00021536", // 𡔶
+ 0x21537: "\xcf\x00\U00021537", // 𡔷
+ 0x21538: "!\v\U00021538", // 𡔸
+ 0x21539: "!\v\U00021539", // 𡔹
+ 0x2153a: "!\v\U0002153a", // 𡔺
+ 0x2153b: "!\v\U0002153b", // 𡔻
+ 0x2153c: "!\f\U0002153c", // 𡔼
+ 0x2153d: "!\f\U0002153d", // 𡔽
+ 0x2153e: "!\r\U0002153e", // 𡔾
+ 0x2153f: "!\r\U0002153f", // 𡔿
+ 0x21540: "!\r\U00021540", // 𡕀
+ 0x21541: "!\x0e\U00021541", // 𡕁
+ 0x21542: "!\x0e\U00021542", // 𡕂
+ 0x21543: "!\x0e\U00021543", // 𡕃
+ 0x21544: "!\x0e\U00021544", // 𡕄
+ 0x21545: "!\x0f\U00021545", // 𡕅
+ 0x21546: "\x97\v\U00021546", // 𡕆
+ 0x21547: "!\x0f\U00021547", // 𡕇
+ 0x21548: "!\x0f\U00021548", // 𡕈
+ 0x21549: "!\x0f\U00021549", // 𡕉
+ 0x2154a: "!\x0f\U0002154a", // 𡕊
+ 0x2154b: "!\x10\U0002154b", // 𡕋
+ 0x2154c: "!\x10\U0002154c", // 𡕌
+ 0x2154d: "!\x11\U0002154d", // 𡕍
+ 0x2154e: "p\x0f\U0002154e", // 𡕎
+ 0x2154f: "!\x13\U0002154f", // 𡕏
+ 0x21550: "!\x13\U00021550", // 𡕐
+ 0x21551: "!\x13\U00021551", // 𡕑
+ 0x21552: "\"\x00\U00021552", // 𡕒
+ 0x21553: "\"\x02\U00021553", // 𡕓
+ 0x21554: "\"\x02\U00021554", // 𡕔
+ 0x21555: "\"\x03\U00021555", // 𡕕
+ 0x21556: "\"\x03\U00021556", // 𡕖
+ 0x21557: "\"\x04\U00021557", // 𡕗
+ 0x21558: "\"\x04\U00021558", // 𡕘
+ 0x21559: "\"\x04\U00021559", // 𡕙
+ 0x2155a: "\"\a\U0002155a", // 𡕚
+ 0x2155b: "\"\b\U0002155b", // 𡕛
+ 0x2155c: "\"\b\U0002155c", // 𡕜
+ 0x2155d: "\"\n\U0002155d", // 𡕝
+ 0x2155e: "#\x03\U0002155e", // 𡕞
+ 0x2155f: "#\x03\U0002155f", // 𡕟
+ 0x21560: "#\x04\U00021560", // 𡕠
+ 0x21561: "#\x04\U00021561", // 𡕡
+ 0x21562: "#\x05\U00021562", // 𡕢
+ 0x21563: "#\x05\U00021563", // 𡕣
+ 0x21564: "#\x05\U00021564", // 𡕤
+ 0x21565: "#\x05\U00021565", // 𡕥
+ 0x21566: "#\a\U00021566", // 𡕦
+ 0x21567: "#\b\U00021567", // 𡕧
+ 0x21568: "#\b\U00021568", // 𡕨
+ 0x21569: "#\b\U00021569", // 𡕩
+ 0x2156a: "#\b\U0002156a", // 𡕪
+ 0x2156b: "#\b\U0002156b", // 𡕫
+ 0x2156c: "#\b\U0002156c", // 𡕬
+ 0x2156d: "#\t\U0002156d", // 𡕭
+ 0x2156e: "#\n\U0002156e", // 𡕮
+ 0x2156f: "#\n\U0002156f", // 𡕯
+ 0x21570: "#\n\U00021570", // 𡕰
+ 0x21571: "#\n\U00021571", // 𡕱
+ 0x21572: "#\v\U00021572", // 𡕲
+ 0x21573: "#\v\U00021573", // 𡕳
+ 0x21574: "#\v\U00021574", // 𡕴
+ 0x21575: "#\v\U00021575", // 𡕵
+ 0x21576: "#\f\U00021576", // 𡕶
+ 0x21577: "#\f\U00021577", // 𡕷
+ 0x21578: "#\r\U00021578", // 𡕸
+ 0x21579: "#\r\U00021579", // 𡕹
+ 0x2157a: "#\r\U0002157a", // 𡕺
+ 0x2157b: "#\x0e\U0002157b", // 𡕻
+ 0x2157c: "#\x0f\U0002157c", // 𡕼
+ 0x2157d: "#\x0f\U0002157d", // 𡕽
+ 0x2157e: "#\x0f\U0002157e", // 𡕾
+ 0x2157f: "#\x0f\U0002157f", // 𡕿
+ 0x21580: "#\x10\U00021580", // 𡖀
+ 0x21581: "#\x11\U00021581", // 𡖁
+ 0x21582: "#\x14\U00021582", // 𡖂
+ 0x21583: "#\x1b\U00021583", // 𡖃
+ 0x21584: "$\x02\U00021584", // 𡖄
+ 0x21585: "$\x02\U00021585", // 𡖅
+ 0x21586: "$\x02\U00021586", // 𡖆
+ 0x21587: "$\x03\U00021587", // 𡖇
+ 0x21588: "$\x03\U00021588", // 𡖈
+ 0x21589: "$\x03\U00021589", // 𡖉
+ 0x2158a: "$\x04\U0002158a", // 𡖊
+ 0x2158b: "$\x04\U0002158b", // 𡖋
+ 0x2158c: "$\x04\U0002158c", // 𡖌
+ 0x2158d: "$\x05\U0002158d", // 𡖍
+ 0x2158e: "$\x05\U0002158e", // 𡖎
+ 0x2158f: "$\x05\U0002158f", // 𡖏
+ 0x21590: "$\x06\U00021590", // 𡖐
+ 0x21591: "$\x06\U00021591", // 𡖑
+ 0x21592: "$\a\U00021592", // 𡖒
+ 0x21593: "$\a\U00021593", // 𡖓
+ 0x21594: "$\a\U00021594", // 𡖔
+ 0x21595: "$\a\U00021595", // 𡖕
+ 0x21596: "$\a\U00021596", // 𡖖
+ 0x21597: "$\a\U00021597", // 𡖗
+ 0x21598: "$\a\U00021598", // 𡖘
+ 0x21599: "$\a\U00021599", // 𡖙
+ 0x2159a: "$\a\U0002159a", // 𡖚
+ 0x2159b: "$\a\U0002159b", // 𡖛
+ 0x2159c: "$\a\U0002159c", // 𡖜
+ 0x2159d: "$\b\U0002159d", // 𡖝
+ 0x2159e: "$\b\U0002159e", // 𡖞
+ 0x2159f: "$\b\U0002159f", // 𡖟
+ 0x215a0: "$\b\U000215a0", // 𡖠
+ 0x215a1: "$\b\U000215a1", // 𡖡
+ 0x215a2: "$\b\U000215a2", // 𡖢
+ 0x215a3: "$\b\U000215a3", // 𡖣
+ 0x215a4: "$\b\U000215a4", // 𡖤
+ 0x215a5: "$\b\U000215a5", // 𡖥
+ 0x215a6: "$\t\U000215a6", // 𡖦
+ 0x215a7: "$\t\U000215a7", // 𡖧
+ 0x215a8: "$\t\U000215a8", // 𡖨
+ 0x215a9: "$\t\U000215a9", // 𡖩
+ 0x215aa: "$\t\U000215aa", // 𡖪
+ 0x215ab: "$\t\U000215ab", // 𡖫
+ 0x215ac: "$\t\U000215ac", // 𡖬
+ 0x215ad: "$\t\U000215ad", // 𡖭
+ 0x215ae: "$\t\U000215ae", // 𡖮
+ 0x215af: "$\n\U000215af", // 𡖯
+ 0x215b0: "$\t\U000215b0", // 𡖰
+ 0x215b1: "$\n\U000215b1", // 𡖱
+ 0x215b2: "$\n\U000215b2", // 𡖲
+ 0x215b3: "$\n\U000215b3", // 𡖳
+ 0x215b4: "$\n\U000215b4", // 𡖴
+ 0x215b5: "$\n\U000215b5", // 𡖵
+ 0x215b6: "$\v\U000215b6", // 𡖶
+ 0x215b7: "$\v\U000215b7", // 𡖷
+ 0x215b8: "$\v\U000215b8", // 𡖸
+ 0x215b9: "$\v\U000215b9", // 𡖹
+ 0x215ba: "$\v\U000215ba", // 𡖺
+ 0x215bb: "$\v\U000215bb", // 𡖻
+ 0x215bc: "$\v\U000215bc", // 𡖼
+ 0x215bd: "$\v\U000215bd", // 𡖽
+ 0x215be: "$\v\U000215be", // 𡖾
+ 0x215bf: "$\f\U000215bf", // 𡖿
+ 0x215c0: "$\f\U000215c0", // 𡗀
+ 0x215c1: "$\f\U000215c1", // 𡗁
+ 0x215c2: "$\r\U000215c2", // 𡗂
+ 0x215c3: "$\r\U000215c3", // 𡗃
+ 0x215c4: "$\r\U000215c4", // 𡗄
+ 0x215c5: "$\r\U000215c5", // 𡗅
+ 0x215c6: "$\x0e\U000215c6", // 𡗆
+ 0x215c7: "$\x0e\U000215c7", // 𡗇
+ 0x215c8: "$\x0e\U000215c8", // 𡗈
+ 0x215c9: "$\x0f\U000215c9", // 𡗉
+ 0x215ca: "$\x0f\U000215ca", // 𡗊
+ 0x215cb: "$\x10\U000215cb", // 𡗋
+ 0x215cc: "$\x10\U000215cc", // 𡗌
+ 0x215cd: "$\x12\U000215cd", // 𡗍
+ 0x215ce: "$\x12\U000215ce", // 𡗎
+ 0x215cf: "$\x17\U000215cf", // 𡗏
+ 0x215d0: "$\x10\U000215d0", // 𡗐
+ 0x215d1: "$\x1c\U000215d1", // 𡗑
+ 0x215d2: "%\x01\U000215d2", // 𡗒
+ 0x215d3: "%\x01\U000215d3", // 𡗓
+ 0x215d4: "%\x01\U000215d4", // 𡗔
+ 0x215d5: "%\x02\U000215d5", // 𡗕
+ 0x215d6: "%\x02\U000215d6", // 𡗖
+ 0x215d7: "%\x02\U000215d7", // 𡗗
+ 0x215d8: "%\x02\U000215d8", // 𡗘
+ 0x215d9: "%\x02\U000215d9", // 𡗙
+ 0x215da: "%\x02\U000215da", // 𡗚
+ 0x215db: "%\x02\U000215db", // 𡗛
+ 0x215dc: "^\x01\U000215dc", // 𡗜
+ 0x215dd: "%\x03\U000215dd", // 𡗝
+ 0x215de: "%\x03\U000215de", // 𡗞
+ 0x215df: "%\x03\U000215df", // 𡗟
+ 0x215e0: "%\x03\U000215e0", // 𡗠
+ 0x215e1: "%\x03\U000215e1", // 𡗡
+ 0x215e2: "%\x03\U000215e2", // 𡗢
+ 0x215e3: "%\x03\U000215e3", // 𡗣
+ 0x215e4: "%\x03\U000215e4", // 𡗤
+ 0x215e5: "%\x04\U000215e5", // 𡗥
+ 0x215e6: "%\x04\U000215e6", // 𡗦
+ 0x215e7: "%\x04\U000215e7", // 𡗧
+ 0x215e8: "%\x04\U000215e8", // 𡗨
+ 0x215e9: "%\x04\U000215e9", // 𡗩
+ 0x215ea: "%\x04\U000215ea", // 𡗪
+ 0x215eb: "%\x04\U000215eb", // 𡗫
+ 0x215ec: "%\x04\U000215ec", // 𡗬
+ 0x215ed: "%\x04\U000215ed", // 𡗭
+ 0x215ee: "%\x04\U000215ee", // 𡗮
+ 0x215ef: "%\x04\U000215ef", // 𡗯
+ 0x215f0: "%\x04\U000215f0", // 𡗰
+ 0x215f1: "%\x04\U000215f1", // 𡗱
+ 0x215f2: "%\x04\U000215f2", // 𡗲
+ 0x215f3: "%\x04\U000215f3", // 𡗳
+ 0x215f4: "%\x04\U000215f4", // 𡗴
+ 0x215f5: "%\x04\U000215f5", // 𡗵
+ 0x215f6: "%\x04\U000215f6", // 𡗶
+ 0x215f7: "%\x05\U000215f7", // 𡗷
+ 0x215f8: "%\x05\U000215f8", // 𡗸
+ 0x215f9: "%\x05\U000215f9", // 𡗹
+ 0x215fa: "%\x05\U000215fa", // 𡗺
+ 0x215fb: "%\x05\U000215fb", // 𡗻
+ 0x215fc: "%\x05\U000215fc", // 𡗼
+ 0x215fd: "%\x05\U000215fd", // 𡗽
+ 0x215fe: "%\x05\U000215fe", // 𡗾
+ 0x215ff: "%\x05\U000215ff", // 𡗿
+ 0x21600: "%\x05\U00021600", // 𡘀
+ 0x21601: "%\x05\U00021601", // 𡘁
+ 0x21602: "%\x05\U00021602", // 𡘂
+ 0x21603: "%\x05\U00021603", // 𡘃
+ 0x21604: "%\x05\U00021604", // 𡘄
+ 0x21605: "%\x05\U00021605", // 𡘅
+ 0x21606: "%\x05\U00021606", // 𡘆
+ 0x21607: "%\x05\U00021607", // 𡘇
+ 0x21608: "%\x05\U00021608", // 𡘈
+ 0x21609: "%\x05\U00021609", // 𡘉
+ 0x2160a: "%\x05\U0002160a", // 𡘊
+ 0x2160b: "%\x05\U0002160b", // 𡘋
+ 0x2160c: "%\x05\U0002160c", // 𡘌
+ 0x2160d: "%\x06\U0002160d", // 𡘍
+ 0x2160e: "%\x06\U0002160e", // 𡘎
+ 0x2160f: "%\x06\U0002160f", // 𡘏
+ 0x21610: "%\x06\U00021610", // 𡘐
+ 0x21611: "%\x06\U00021611", // 𡘑
+ 0x21612: "%\x06\U00021612", // 𡘒
+ 0x21613: "%\x06\U00021613", // 𡘓
+ 0x21614: "%\x06\U00021614", // 𡘔
+ 0x21615: "%\x06\U00021615", // 𡘕
+ 0x21616: "%\x06\U00021616", // 𡘖
+ 0x21617: "%\x06\U00021617", // 𡘗
+ 0x21618: "%\x06\U00021618", // 𡘘
+ 0x21619: "%\x06\U00021619", // 𡘙
+ 0x2161a: "%\x06\U0002161a", // 𡘚
+ 0x2161b: "%\x06\U0002161b", // 𡘛
+ 0x2161c: "%\x06\U0002161c", // 𡘜
+ 0x2161d: "%\a\U0002161d", // 𡘝
+ 0x2161e: "%\a\U0002161e", // 𡘞
+ 0x2161f: "%\a\U0002161f", // 𡘟
+ 0x21620: "%\a\U00021620", // 𡘠
+ 0x21621: "%\a\U00021621", // 𡘡
+ 0x21622: "%\a\U00021622", // 𡘢
+ 0x21623: "%\a\U00021623", // 𡘣
+ 0x21624: "%\a\U00021624", // 𡘤
+ 0x21625: "%\a\U00021625", // 𡘥
+ 0x21626: "%\a\U00021626", // 𡘦
+ 0x21627: "%\a\U00021627", // 𡘧
+ 0x21628: "%\a\U00021628", // 𡘨
+ 0x21629: "%\a\U00021629", // 𡘩
+ 0x2162a: "%\a\U0002162a", // 𡘪
+ 0x2162b: "%\a\U0002162b", // 𡘫
+ 0x2162c: "%\a\U0002162c", // 𡘬
+ 0x2162d: "%\a\U0002162d", // 𡘭
+ 0x2162e: "%\a\U0002162e", // 𡘮
+ 0x2162f: "%\a\U0002162f", // 𡘯
+ 0x21630: "%\a\U00021630", // 𡘰
+ 0x21631: "%\a\U00021631", // 𡘱
+ 0x21632: "%\a\U00021632", // 𡘲
+ 0x21633: "%\a\U00021633", // 𡘳
+ 0x21634: "%\b\U00021634", // 𡘴
+ 0x21635: "%\b\U00021635", // 𡘵
+ 0x21636: "%\b\U00021636", // 𡘶
+ 0x21637: "%\b\U00021637", // 𡘷
+ 0x21638: "%\b\U00021638", // 𡘸
+ 0x21639: "%\b\U00021639", // 𡘹
+ 0x2163a: "%\b\U0002163a", // 𡘺
+ 0x2163b: "%\b\U0002163b", // 𡘻
+ 0x2163c: "%\b\U0002163c", // 𡘼
+ 0x2163d: "%\b\U0002163d", // 𡘽
+ 0x2163e: "%\b\U0002163e", // 𡘾
+ 0x2163f: "%\b\U0002163f", // 𡘿
+ 0x21640: "%\b\U00021640", // 𡙀
+ 0x21641: "%\b\U00021641", // 𡙁
+ 0x21642: "%\b\U00021642", // 𡙂
+ 0x21643: "%\b\U00021643", // 𡙃
+ 0x21644: "%\b\U00021644", // 𡙄
+ 0x21645: "%\b\U00021645", // 𡙅
+ 0x21646: "%\b\U00021646", // 𡙆
+ 0x21647: "%\t\U00021647", // 𡙇
+ 0x21648: "%\t\U00021648", // 𡙈
+ 0x21649: "%\t\U00021649", // 𡙉
+ 0x2164a: "%\t\U0002164a", // 𡙊
+ 0x2164b: "%\t\U0002164b", // 𡙋
+ 0x2164c: "%\t\U0002164c", // 𡙌
+ 0x2164d: "%\t\U0002164d", // 𡙍
+ 0x2164e: "%\t\U0002164e", // 𡙎
+ 0x2164f: "%\t\U0002164f", // 𡙏
+ 0x21650: "%\t\U00021650", // 𡙐
+ 0x21651: "%\t\U00021651", // 𡙑
+ 0x21652: "%\t\U00021652", // 𡙒
+ 0x21653: "%\t\U00021653", // 𡙓
+ 0x21654: "%\t\U00021654", // 𡙔
+ 0x21655: "%\t\U00021655", // 𡙕
+ 0x21656: "%\t\U00021656", // 𡙖
+ 0x21657: "%\t\U00021657", // 𡙗
+ 0x21658: "%\t\U00021658", // 𡙘
+ 0x21659: "%\t\U00021659", // 𡙙
+ 0x2165a: "%\t\U0002165a", // 𡙚
+ 0x2165b: "%\n\U0002165b", // 𡙛
+ 0x2165c: "%\n\U0002165c", // 𡙜
+ 0x2165d: "%\n\U0002165d", // 𡙝
+ 0x2165e: "%\n\U0002165e", // 𡙞
+ 0x2165f: "%\n\U0002165f", // 𡙟
+ 0x21660: "%\n\U00021660", // 𡙠
+ 0x21661: "%\n\U00021661", // 𡙡
+ 0x21662: "%\n\U00021662", // 𡙢
+ 0x21663: "%\n\U00021663", // 𡙣
+ 0x21664: "%\n\U00021664", // 𡙤
+ 0x21665: "%\n\U00021665", // 𡙥
+ 0x21666: "%\n\U00021666", // 𡙦
+ 0x21667: "%\n\U00021667", // 𡙧
+ 0x21668: "%\n\U00021668", // 𡙨
+ 0x21669: "%\n\U00021669", // 𡙩
+ 0x2166a: "%\n\U0002166a", // 𡙪
+ 0x2166b: "%\n\U0002166b", // 𡙫
+ 0x2166c: "%\v\U0002166c", // 𡙬
+ 0x2166d: "%\v\U0002166d", // 𡙭
+ 0x2166e: "%\v\U0002166e", // 𡙮
+ 0x2166f: "%\v\U0002166f", // 𡙯
+ 0x21670: "%\v\U00021670", // 𡙰
+ 0x21671: "%\v\U00021671", // 𡙱
+ 0x21672: "%\v\U00021672", // 𡙲
+ 0x21673: "%\v\U00021673", // 𡙳
+ 0x21674: "%\v\U00021674", // 𡙴
+ 0x21675: "%\v\U00021675", // 𡙵
+ 0x21676: "%\v\U00021676", // 𡙶
+ 0x21677: "%\f\U00021677", // 𡙷
+ 0x21678: "%\f\U00021678", // 𡙸
+ 0x21679: "%\f\U00021679", // 𡙹
+ 0x2167a: "%\f\U0002167a", // 𡙺
+ 0x2167b: "%\f\U0002167b", // 𡙻
+ 0x2167c: "%\f\U0002167c", // 𡙼
+ 0x2167d: "%\f\U0002167d", // 𡙽
+ 0x2167e: "%\f\U0002167e", // 𡙾
+ 0x2167f: "%\f\U0002167f", // 𡙿
+ 0x21680: "%\f\U00021680", // 𡚀
+ 0x21681: "%\f\U00021681", // 𡚁
+ 0x21682: "%\f\U00021682", // 𡚂
+ 0x21683: "%\f\U00021683", // 𡚃
+ 0x21684: "%\f\U00021684", // 𡚄
+ 0x21685: "%\f\U00021685", // 𡚅
+ 0x21686: "%\r\U00021686", // 𡚆
+ 0x21687: "%\r\U00021687", // 𡚇
+ 0x21688: "%\r\U00021688", // 𡚈
+ 0x21689: "%\r\U00021689", // 𡚉
+ 0x2168a: "%\r\U0002168a", // 𡚊
+ 0x2168b: "%\r\U0002168b", // 𡚋
+ 0x2168c: "%\r\U0002168c", // 𡚌
+ 0x2168d: "%\r\U0002168d", // 𡚍
+ 0x2168e: "%\r\U0002168e", // 𡚎
+ 0x2168f: "%\x0e\U0002168f", // 𡚏
+ 0x21690: "%\x0e\U00021690", // 𡚐
+ 0x21691: "%\x0e\U00021691", // 𡚑
+ 0x21692: "%\x0e\U00021692", // 𡚒
+ 0x21693: "%\x0e\U00021693", // 𡚓
+ 0x21694: "%\x0e\U00021694", // 𡚔
+ 0x21695: "%\x0e\U00021695", // 𡚕
+ 0x21696: "%\x0e\U00021696", // 𡚖
+ 0x21697: "%\x0f\U00021697", // 𡚗
+ 0x21698: "%\x10\U00021698", // 𡚘
+ 0x21699: "%\x10\U00021699", // 𡚙
+ 0x2169a: "%\x10\U0002169a", // 𡚚
+ 0x2169b: "%\x11\U0002169b", // 𡚛
+ 0x2169c: "%\x12\U0002169c", // 𡚜
+ 0x2169d: "%\x12\U0002169d", // 𡚝
+ 0x2169e: "%\x13\U0002169e", // 𡚞
+ 0x2169f: "%\x13\U0002169f", // 𡚟
+ 0x216a0: "%\x14\U000216a0", // 𡚠
+ 0x216a1: "%\x14\U000216a1", // 𡚡
+ 0x216a2: "%\x14\U000216a2", // 𡚢
+ 0x216a3: "%\x15\U000216a3", // 𡚣
+ 0x216a4: "%\x15\U000216a4", // 𡚤
+ 0x216a5: "%\x18\U000216a5", // 𡚥
+ 0x216a6: "&\x01\U000216a6", // 𡚦
+ 0x216a7: "&\x02\U000216a7", // 𡚧
+ 0x216a8: "&\x02\U000216a8", // 𡚨
+ 0x216a9: "&\x02\U000216a9", // 𡚩
+ 0x216aa: "&\x02\U000216aa", // 𡚪
+ 0x216ab: "&\x02\U000216ab", // 𡚫
+ 0x216ac: "&\x02\U000216ac", // 𡚬
+ 0x216ad: "&\x02\U000216ad", // 𡚭
+ 0x216ae: "&\x03\U000216ae", // 𡚮
+ 0x216af: "&\x03\U000216af", // 𡚯
+ 0x216b0: "&\x03\U000216b0", // 𡚰
+ 0x216b1: "&\x03\U000216b1", // 𡚱
+ 0x216b2: "&\x03\U000216b2", // 𡚲
+ 0x216b3: "&\x03\U000216b3", // 𡚳
+ 0x216b4: "&\x03\U000216b4", // 𡚴
+ 0x216b5: "&\x03\U000216b5", // 𡚵
+ 0x216b6: "&\x03\U000216b6", // 𡚶
+ 0x216b7: "&\x03\U000216b7", // 𡚷
+ 0x216b8: "&\x03\U000216b8", // 𡚸
+ 0x216b9: "&\x03\U000216b9", // 𡚹
+ 0x216ba: "&\x03\U000216ba", // 𡚺
+ 0x216bb: "&\x03\U000216bb", // 𡚻
+ 0x216bc: "&\x04\U000216bc", // 𡚼
+ 0x216bd: "&\x04\U000216bd", // 𡚽
+ 0x216be: "&\x04\U000216be", // 𡚾
+ 0x216bf: "&\x04\U000216bf", // 𡚿
+ 0x216c0: "&\x04\U000216c0", // 𡛀
+ 0x216c1: "&\x04\U000216c1", // 𡛁
+ 0x216c2: "&\x04\U000216c2", // 𡛂
+ 0x216c3: "&\x04\U000216c3", // 𡛃
+ 0x216c4: "&\x04\U000216c4", // 𡛄
+ 0x216c5: "&\x04\U000216c5", // 𡛅
+ 0x216c6: "&\x04\U000216c6", // 𡛆
+ 0x216c7: "&\x04\U000216c7", // 𡛇
+ 0x216c8: "&\x04\U000216c8", // 𡛈
+ 0x216c9: "&\x04\U000216c9", // 𡛉
+ 0x216ca: "&\x04\U000216ca", // 𡛊
+ 0x216cb: "&\x04\U000216cb", // 𡛋
+ 0x216cc: "&\x04\U000216cc", // 𡛌
+ 0x216cd: "&\x04\U000216cd", // 𡛍
+ 0x216ce: "&\x04\U000216ce", // 𡛎
+ 0x216cf: "&\x04\U000216cf", // 𡛏
+ 0x216d0: "&\x04\U000216d0", // 𡛐
+ 0x216d1: "&\x04\U000216d1", // 𡛑
+ 0x216d2: "&\x04\U000216d2", // 𡛒
+ 0x216d3: "&\x04\U000216d3", // 𡛓
+ 0x216d4: "&\x04\U000216d4", // 𡛔
+ 0x216d5: "&\x04\U000216d5", // 𡛕
+ 0x216d6: "&\x04\U000216d6", // 𡛖
+ 0x216d7: "&\x04\U000216d7", // 𡛗
+ 0x216d8: "&\x04\U000216d8", // 𡛘
+ 0x216d9: "&\x05\U000216d9", // 𡛙
+ 0x216da: "&\x05\U000216da", // 𡛚
+ 0x216db: "&\x05\U000216db", // 𡛛
+ 0x216dc: "&\x05\U000216dc", // 𡛜
+ 0x216dd: "&\x05\U000216dd", // 𡛝
+ 0x216de: "&\x05\U000216de", // 𡛞
+ 0x216df: "&\x05\U000216df", // 𡛟
+ 0x216e0: "&\x05\U000216e0", // 𡛠
+ 0x216e1: "&\x05\U000216e1", // 𡛡
+ 0x216e2: "&\x05\U000216e2", // 𡛢
+ 0x216e3: "&\x05\U000216e3", // 𡛣
+ 0x216e4: "&\x05\U000216e4", // 𡛤
+ 0x216e5: "&\x05\U000216e5", // 𡛥
+ 0x216e6: "&\x05\U000216e6", // 𡛦
+ 0x216e7: "&\x05\U000216e7", // 𡛧
+ 0x216e8: "&\x05\U000216e8", // 𡛨
+ 0x216e9: "&\x05\U000216e9", // 𡛩
+ 0x216ea: "&\x05\U000216ea", // 𡛪
+ 0x216eb: "&\x05\U000216eb", // 𡛫
+ 0x216ec: "&\x05\U000216ec", // 𡛬
+ 0x216ed: "&\x05\U000216ed", // 𡛭
+ 0x216ee: "&\x05\U000216ee", // 𡛮
+ 0x216ef: "&\x05\U000216ef", // 𡛯
+ 0x216f0: "&\x05\U000216f0", // 𡛰
+ 0x216f1: "&\x05\U000216f1", // 𡛱
+ 0x216f2: "&\x05\U000216f2", // 𡛲
+ 0x216f3: "&\x05\U000216f3", // 𡛳
+ 0x216f4: "&\x05\U000216f4", // 𡛴
+ 0x216f5: "&\x05\U000216f5", // 𡛵
+ 0x216f6: "&\x05\U000216f6", // 𡛶
+ 0x216f7: "&\x05\U000216f7", // 𡛷
+ 0x216f8: "&\x05\U000216f8", // 𡛸
+ 0x216f9: "&\x05\U000216f9", // 𡛹
+ 0x216fa: "&\x05\U000216fa", // 𡛺
+ 0x216fb: "&\x05\U000216fb", // 𡛻
+ 0x216fc: "&\x05\U000216fc", // 𡛼
+ 0x216fd: "&\x05\U000216fd", // 𡛽
+ 0x216fe: "&\x05\U000216fe", // 𡛾
+ 0x216ff: "&\x05\U000216ff", // 𡛿
+ 0x21700: "&\x05\U00021700", // 𡜀
+ 0x21701: "&\x05\U00021701", // 𡜁
+ 0x21702: "&\x06\U00021702", // 𡜂
+ 0x21703: "&\x06\U00021703", // 𡜃
+ 0x21704: "&\x06\U00021704", // 𡜄
+ 0x21705: "&\x06\U00021705", // 𡜅
+ 0x21706: "&\x06\U00021706", // 𡜆
+ 0x21707: "&\x06\U00021707", // 𡜇
+ 0x21708: "&\x06\U00021708", // 𡜈
+ 0x21709: "&\x06\U00021709", // 𡜉
+ 0x2170a: "&\x06\U0002170a", // 𡜊
+ 0x2170b: "&\x06\U0002170b", // 𡜋
+ 0x2170c: "&\x06\U0002170c", // 𡜌
+ 0x2170d: "&\x06\U0002170d", // 𡜍
+ 0x2170e: "&\x06\U0002170e", // 𡜎
+ 0x2170f: "&\x06\U0002170f", // 𡜏
+ 0x21710: "&\x06\U00021710", // 𡜐
+ 0x21711: "&\x06\U00021711", // 𡜑
+ 0x21712: "&\x06\U00021712", // 𡜒
+ 0x21713: "&\x06\U00021713", // 𡜓
+ 0x21714: "&\x06\U00021714", // 𡜔
+ 0x21715: "&\x06\U00021715", // 𡜕
+ 0x21716: "&\x06\U00021716", // 𡜖
+ 0x21717: "&\x06\U00021717", // 𡜗
+ 0x21718: "&\x06\U00021718", // 𡜘
+ 0x21719: "&\x06\U00021719", // 𡜙
+ 0x2171a: "&\x06\U0002171a", // 𡜚
+ 0x2171b: "&\x06\U0002171b", // 𡜛
+ 0x2171c: "&\x06\U0002171c", // 𡜜
+ 0x2171d: "&\x06\U0002171d", // 𡜝
+ 0x2171e: "&\x06\U0002171e", // 𡜞
+ 0x2171f: "&\x06\U0002171f", // 𡜟
+ 0x21720: "&\x06\U00021720", // 𡜠
+ 0x21721: "&\x06\U00021721", // 𡜡
+ 0x21722: "&\x06\U00021722", // 𡜢
+ 0x21723: "&\x06\U00021723", // 𡜣
+ 0x21724: "&\x06\U00021724", // 𡜤
+ 0x21725: "&\x06\U00021725", // 𡜥
+ 0x21726: "&\x06\U00021726", // 𡜦
+ 0x21727: "&\x06\U00021727", // 𡜧
+ 0x21728: "&\x06\U00021728", // 𡜨
+ 0x21729: "&\x06\U00021729", // 𡜩
+ 0x2172a: "&\x06\U0002172a", // 𡜪
+ 0x2172b: "&\x06\U0002172b", // 𡜫
+ 0x2172c: "&\x06\U0002172c", // 𡜬
+ 0x2172d: "&\x06\U0002172d", // 𡜭
+ 0x2172e: "&\a\U0002172e", // 𡜮
+ 0x2172f: "&\a\U0002172f", // 𡜯
+ 0x21730: "&\a\U00021730", // 𡜰
+ 0x21731: "&\a\U00021731", // 𡜱
+ 0x21732: "&\a\U00021732", // 𡜲
+ 0x21733: "&\a\U00021733", // 𡜳
+ 0x21734: "&\a\U00021734", // 𡜴
+ 0x21735: "&\a\U00021735", // 𡜵
+ 0x21736: "&\a\U00021736", // 𡜶
+ 0x21737: "&\a\U00021737", // 𡜷
+ 0x21738: "&\a\U00021738", // 𡜸
+ 0x21739: "&\a\U00021739", // 𡜹
+ 0x2173a: "&\a\U0002173a", // 𡜺
+ 0x2173b: "&\a\U0002173b", // 𡜻
+ 0x2173c: "&\a\U0002173c", // 𡜼
+ 0x2173d: "&\a\U0002173d", // 𡜽
+ 0x2173e: "&\a\U0002173e", // 𡜾
+ 0x2173f: "&\a\U0002173f", // 𡜿
+ 0x21740: "&\a\U00021740", // 𡝀
+ 0x21741: "&\a\U00021741", // 𡝁
+ 0x21742: "&\a\U00021742", // 𡝂
+ 0x21743: "&\a\U00021743", // 𡝃
+ 0x21744: "&\a\U00021744", // 𡝄
+ 0x21745: "&\a\U00021745", // 𡝅
+ 0x21746: "&\a\U00021746", // 𡝆
+ 0x21747: "&\a\U00021747", // 𡝇
+ 0x21748: "&\a\U00021748", // 𡝈
+ 0x21749: "&\a\U00021749", // 𡝉
+ 0x2174a: "&\a\U0002174a", // 𡝊
+ 0x2174b: "&\a\U0002174b", // 𡝋
+ 0x2174c: "&\a\U0002174c", // 𡝌
+ 0x2174d: "&\a\U0002174d", // 𡝍
+ 0x2174e: "&\a\U0002174e", // 𡝎
+ 0x2174f: "&\a\U0002174f", // 𡝏
+ 0x21750: "&\a\U00021750", // 𡝐
+ 0x21751: "&\a\U00021751", // 𡝑
+ 0x21752: "&\a\U00021752", // 𡝒
+ 0x21753: "&\a\U00021753", // 𡝓
+ 0x21754: "&\a\U00021754", // 𡝔
+ 0x21755: "&\a\U00021755", // 𡝕
+ 0x21756: "&\a\U00021756", // 𡝖
+ 0x21757: "&\a\U00021757", // 𡝗
+ 0x21758: "&\a\U00021758", // 𡝘
+ 0x21759: "&\a\U00021759", // 𡝙
+ 0x2175a: "&\a\U0002175a", // 𡝚
+ 0x2175b: "&\a\U0002175b", // 𡝛
+ 0x2175c: "&\a\U0002175c", // 𡝜
+ 0x2175d: "&\a\U0002175d", // 𡝝
+ 0x2175e: "&\b\U0002175e", // 𡝞
+ 0x2175f: "&\b\U0002175f", // 𡝟
+ 0x21760: "&\b\U00021760", // 𡝠
+ 0x21761: "&\b\U00021761", // 𡝡
+ 0x21762: "&\b\U00021762", // 𡝢
+ 0x21763: "&\b\U00021763", // 𡝣
+ 0x21764: "&\b\U00021764", // 𡝤
+ 0x21765: "&\b\U00021765", // 𡝥
+ 0x21766: "&\b\U00021766", // 𡝦
+ 0x21767: "&\b\U00021767", // 𡝧
+ 0x21768: "&\b\U00021768", // 𡝨
+ 0x21769: "&\b\U00021769", // 𡝩
+ 0x2176a: "&\b\U0002176a", // 𡝪
+ 0x2176b: "&\b\U0002176b", // 𡝫
+ 0x2176c: "&\b\U0002176c", // 𡝬
+ 0x2176d: "&\b\U0002176d", // 𡝭
+ 0x2176e: "&\b\U0002176e", // 𡝮
+ 0x2176f: "&\b\U0002176f", // 𡝯
+ 0x21770: "&\b\U00021770", // 𡝰
+ 0x21771: "&\b\U00021771", // 𡝱
+ 0x21772: "&\b\U00021772", // 𡝲
+ 0x21773: "&\b\U00021773", // 𡝳
+ 0x21774: "&\b\U00021774", // 𡝴
+ 0x21775: "&\b\U00021775", // 𡝵
+ 0x21776: "&\b\U00021776", // 𡝶
+ 0x21777: "&\b\U00021777", // 𡝷
+ 0x21778: "&\b\U00021778", // 𡝸
+ 0x21779: "&\b\U00021779", // 𡝹
+ 0x2177a: "&\b\U0002177a", // 𡝺
+ 0x2177b: "&\b\U0002177b", // 𡝻
+ 0x2177c: "&\b\U0002177c", // 𡝼
+ 0x2177d: "&\b\U0002177d", // 𡝽
+ 0x2177e: "&\b\U0002177e", // 𡝾
+ 0x2177f: "&\b\U0002177f", // 𡝿
+ 0x21780: "&\b\U00021780", // 𡞀
+ 0x21781: "&\b\U00021781", // 𡞁
+ 0x21782: "&\b\U00021782", // 𡞂
+ 0x21783: "&\b\U00021783", // 𡞃
+ 0x21784: "&\b\U00021784", // 𡞄
+ 0x21785: "&\b\U00021785", // 𡞅
+ 0x21786: "&\b\U00021786", // 𡞆
+ 0x21787: "&\b\U00021787", // 𡞇
+ 0x21788: "&\b\U00021788", // 𡞈
+ 0x21789: "&\b\U00021789", // 𡞉
+ 0x2178a: "&\b\U0002178a", // 𡞊
+ 0x2178b: "&\b\U0002178b", // 𡞋
+ 0x2178c: "&\b\U0002178c", // 𡞌
+ 0x2178d: "&\b\U0002178d", // 𡞍
+ 0x2178e: "&\b\U0002178e", // 𡞎
+ 0x2178f: "&\b\U0002178f", // 𡞏
+ 0x21790: "&\b\U00021790", // 𡞐
+ 0x21791: "&\b\U00021791", // 𡞑
+ 0x21792: "&\b\U00021792", // 𡞒
+ 0x21793: "&\b\U00021793", // 𡞓
+ 0x21794: "&\b\U00021794", // 𡞔
+ 0x21795: "&\b\U00021795", // 𡞕
+ 0x21796: "&\b\U00021796", // 𡞖
+ 0x21797: "&\b\U00021797", // 𡞗
+ 0x21798: "&\b\U00021798", // 𡞘
+ 0x21799: "&\b\U00021799", // 𡞙
+ 0x2179a: "&\b\U0002179a", // 𡞚
+ 0x2179b: "&\b\U0002179b", // 𡞛
+ 0x2179c: "&\t\U0002179c", // 𡞜
+ 0x2179d: "&\t\U0002179d", // 𡞝
+ 0x2179e: "&\t\U0002179e", // 𡞞
+ 0x2179f: "&\t\U0002179f", // 𡞟
+ 0x217a0: "&\t\U000217a0", // 𡞠
+ 0x217a1: "&\t\U000217a1", // 𡞡
+ 0x217a2: "&\t\U000217a2", // 𡞢
+ 0x217a3: "&\t\U000217a3", // 𡞣
+ 0x217a4: "&\t\U000217a4", // 𡞤
+ 0x217a5: "&\t\U000217a5", // 𡞥
+ 0x217a6: "&\t\U000217a6", // 𡞦
+ 0x217a7: "&\t\U000217a7", // 𡞧
+ 0x217a8: "&\t\U000217a8", // 𡞨
+ 0x217a9: "&\t\U000217a9", // 𡞩
+ 0x217aa: "&\t\U000217aa", // 𡞪
+ 0x217ab: "&\t\U000217ab", // 𡞫
+ 0x217ac: "&\t\U000217ac", // 𡞬
+ 0x217ad: "&\t\U000217ad", // 𡞭
+ 0x217ae: "&\t\U000217ae", // 𡞮
+ 0x217af: "&\t\U000217af", // 𡞯
+ 0x217b0: "&\t\U000217b0", // 𡞰
+ 0x217b1: "&\t\U000217b1", // 𡞱
+ 0x217b2: "&\t\U000217b2", // 𡞲
+ 0x217b3: "&\t\U000217b3", // 𡞳
+ 0x217b4: "&\t\U000217b4", // 𡞴
+ 0x217b5: "&\t\U000217b5", // 𡞵
+ 0x217b6: "&\t\U000217b6", // 𡞶
+ 0x217b7: "&\t\U000217b7", // 𡞷
+ 0x217b8: "&\t\U000217b8", // 𡞸
+ 0x217b9: "&\t\U000217b9", // 𡞹
+ 0x217ba: "&\t\U000217ba", // 𡞺
+ 0x217bb: "&\t\U000217bb", // 𡞻
+ 0x217bc: "&\t\U000217bc", // 𡞼
+ 0x217bd: "&\t\U000217bd", // 𡞽
+ 0x217be: "&\t\U000217be", // 𡞾
+ 0x217bf: "&\t\U000217bf", // 𡞿
+ 0x217c0: "&\t\U000217c0", // 𡟀
+ 0x217c1: "&\t\U000217c1", // 𡟁
+ 0x217c2: "&\t\U000217c2", // 𡟂
+ 0x217c3: "&\t\U000217c3", // 𡟃
+ 0x217c4: "&\t\U000217c4", // 𡟄
+ 0x217c5: "&\t\U000217c5", // 𡟅
+ 0x217c6: "&\t\U000217c6", // 𡟆
+ 0x217c7: "&\t\U000217c7", // 𡟇
+ 0x217c8: "&\t\U000217c8", // 𡟈
+ 0x217c9: "&\t\U000217c9", // 𡟉
+ 0x217ca: "&\t\U000217ca", // 𡟊
+ 0x217cb: "&\t\U000217cb", // 𡟋
+ 0x217cc: "&\t\U000217cc", // 𡟌
+ 0x217cd: "&\t\U000217cd", // 𡟍
+ 0x217ce: "&\t\U000217ce", // 𡟎
+ 0x217cf: "&\t\U000217cf", // 𡟏
+ 0x217d0: "&\t\U000217d0", // 𡟐
+ 0x217d1: "&\t\U000217d1", // 𡟑
+ 0x217d2: "&\t\U000217d2", // 𡟒
+ 0x217d3: "&\t\U000217d3", // 𡟓
+ 0x217d4: "&\t\U000217d4", // 𡟔
+ 0x217d5: "&\t\U000217d5", // 𡟕
+ 0x217d6: "&\t\U000217d6", // 𡟖
+ 0x217d7: "&\t\U000217d7", // 𡟗
+ 0x217d8: "&\t\U000217d8", // 𡟘
+ 0x217d9: "&\t\U000217d9", // 𡟙
+ 0x217da: "&\t\U000217da", // 𡟚
+ 0x217db: "&\t\U000217db", // 𡟛
+ 0x217dc: "&\t\U000217dc", // 𡟜
+ 0x217dd: "&\t\U000217dd", // 𡟝
+ 0x217de: "&\t\U000217de", // 𡟞
+ 0x217df: "&\t\U000217df", // 𡟟
+ 0x217e0: "&\t\U000217e0", // 𡟠
+ 0x217e1: "&\t\U000217e1", // 𡟡
+ 0x217e2: "&\t\U000217e2", // 𡟢
+ 0x217e3: "&\t\U000217e3", // 𡟣
+ 0x217e4: "&\t\U000217e4", // 𡟤
+ 0x217e5: "&\t\U000217e5", // 𡟥
+ 0x217e6: "&\t\U000217e6", // 𡟦
+ 0x217e7: "&\t\U000217e7", // 𡟧
+ 0x217e8: "&\n\U000217e8", // 𡟨
+ 0x217e9: "&\n\U000217e9", // 𡟩
+ 0x217ea: "&\n\U000217ea", // 𡟪
+ 0x217eb: "&\n\U000217eb", // 𡟫
+ 0x217ec: "&\n\U000217ec", // 𡟬
+ 0x217ed: "&\n\U000217ed", // 𡟭
+ 0x217ee: "&\n\U000217ee", // 𡟮
+ 0x217ef: "&\n\U000217ef", // 𡟯
+ 0x217f0: "&\n\U000217f0", // 𡟰
+ 0x217f1: "&\n\U000217f1", // 𡟱
+ 0x217f2: "&\n\U000217f2", // 𡟲
+ 0x217f3: "&\n\U000217f3", // 𡟳
+ 0x217f4: "&\n\U000217f4", // 𡟴
+ 0x217f5: "&\n\U000217f5", // 𡟵
+ 0x217f6: "&\n\U000217f6", // 𡟶
+ 0x217f7: "&\n\U000217f7", // 𡟷
+ 0x217f8: "&\n\U000217f8", // 𡟸
+ 0x217f9: "&\n\U000217f9", // 𡟹
+ 0x217fa: "&\n\U000217fa", // 𡟺
+ 0x217fb: "&\n\U000217fb", // 𡟻
+ 0x217fc: "&\n\U000217fc", // 𡟼
+ 0x217fd: "&\n\U000217fd", // 𡟽
+ 0x217fe: "&\n\U000217fe", // 𡟾
+ 0x217ff: "&\n\U000217ff", // 𡟿
+ 0x21800: "&\n\U00021800", // 𡠀
+ 0x21801: "&\n\U00021801", // 𡠁
+ 0x21802: "&\n\U00021802", // 𡠂
+ 0x21803: "&\n\U00021803", // 𡠃
+ 0x21804: "&\n\U00021804", // 𡠄
+ 0x21805: "&\n\U00021805", // 𡠅
+ 0x21806: "&\n\U00021806", // 𡠆
+ 0x21807: "&\n\U00021807", // 𡠇
+ 0x21808: "&\n\U00021808", // 𡠈
+ 0x21809: "&\n\U00021809", // 𡠉
+ 0x2180a: "&\n\U0002180a", // 𡠊
+ 0x2180b: "&\n\U0002180b", // 𡠋
+ 0x2180c: "&\n\U0002180c", // 𡠌
+ 0x2180d: "&\n\U0002180d", // 𡠍
+ 0x2180e: "&\n\U0002180e", // 𡠎
+ 0x2180f: "&\n\U0002180f", // 𡠏
+ 0x21810: "&\n\U00021810", // 𡠐
+ 0x21811: "&\n\U00021811", // 𡠑
+ 0x21812: "&\n\U00021812", // 𡠒
+ 0x21813: "&\n\U00021813", // 𡠓
+ 0x21814: "&\n\U00021814", // 𡠔
+ 0x21815: "&\n\U00021815", // 𡠕
+ 0x21816: "&\f\U00021816", // 𡠖
+ 0x21817: "&\v\U00021817", // 𡠗
+ 0x21818: "&\f\U00021818", // 𡠘
+ 0x21819: "&\v\U00021819", // 𡠙
+ 0x2181a: "&\v\U0002181a", // 𡠚
+ 0x2181b: "&\v\U0002181b", // 𡠛
+ 0x2181c: "&\v\U0002181c", // 𡠜
+ 0x2181d: "&\v\U0002181d", // 𡠝
+ 0x2181e: "&\v\U0002181e", // 𡠞
+ 0x2181f: "&\v\U0002181f", // 𡠟
+ 0x21820: "&\v\U00021820", // 𡠠
+ 0x21821: "&\v\U00021821", // 𡠡
+ 0x21822: "&\v\U00021822", // 𡠢
+ 0x21823: "&\t\U00021823", // 𡠣
+ 0x21824: "&\v\U00021824", // 𡠤
+ 0x21825: "&\v\U00021825", // 𡠥
+ 0x21826: "&\v\U00021826", // 𡠦
+ 0x21827: "&\v\U00021827", // 𡠧
+ 0x21828: "&\v\U00021828", // 𡠨
+ 0x21829: "&\v\U00021829", // 𡠩
+ 0x2182a: "&\v\U0002182a", // 𡠪
+ 0x2182b: "&\v\U0002182b", // 𡠫
+ 0x2182c: "&\v\U0002182c", // 𡠬
+ 0x2182d: "&\v\U0002182d", // 𡠭
+ 0x2182e: "&\v\U0002182e", // 𡠮
+ 0x2182f: "&\v\U0002182f", // 𡠯
+ 0x21830: "&\v\U00021830", // 𡠰
+ 0x21831: "&\v\U00021831", // 𡠱
+ 0x21832: "&\f\U00021832", // 𡠲
+ 0x21833: "&\v\U00021833", // 𡠳
+ 0x21834: "&\v\U00021834", // 𡠴
+ 0x21835: "&\v\U00021835", // 𡠵
+ 0x21836: "&\v\U00021836", // 𡠶
+ 0x21837: "&\v\U00021837", // 𡠷
+ 0x21838: "&\v\U00021838", // 𡠸
+ 0x21839: "&\v\U00021839", // 𡠹
+ 0x2183a: "&\v\U0002183a", // 𡠺
+ 0x2183b: "&\v\U0002183b", // 𡠻
+ 0x2183c: "&\v\U0002183c", // 𡠼
+ 0x2183d: "&\v\U0002183d", // 𡠽
+ 0x2183e: "&\v\U0002183e", // 𡠾
+ 0x2183f: "&\v\U0002183f", // 𡠿
+ 0x21840: "&\v\U00021840", // 𡡀
+ 0x21841: "&\v\U00021841", // 𡡁
+ 0x21842: "&\v\U00021842", // 𡡂
+ 0x21843: "&\v\U00021843", // 𡡃
+ 0x21844: "&\v\U00021844", // 𡡄
+ 0x21845: "&\v\U00021845", // 𡡅
+ 0x21846: "&\v\U00021846", // 𡡆
+ 0x21847: "&\v\U00021847", // 𡡇
+ 0x21848: "&\v\U00021848", // 𡡈
+ 0x21849: "&\v\U00021849", // 𡡉
+ 0x2184a: "&\v\U0002184a", // 𡡊
+ 0x2184b: "&\v\U0002184b", // 𡡋
+ 0x2184c: "&\v\U0002184c", // 𡡌
+ 0x2184d: "&\v\U0002184d", // 𡡍
+ 0x2184e: "&\v\U0002184e", // 𡡎
+ 0x2184f: "&\f\U0002184f", // 𡡏
+ 0x21850: "&\f\U00021850", // 𡡐
+ 0x21851: "&\f\U00021851", // 𡡑
+ 0x21852: "&\f\U00021852", // 𡡒
+ 0x21853: "&\f\U00021853", // 𡡓
+ 0x21854: "&\f\U00021854", // 𡡔
+ 0x21855: "&\f\U00021855", // 𡡕
+ 0x21856: "&\f\U00021856", // 𡡖
+ 0x21857: "&\f\U00021857", // 𡡗
+ 0x21858: "&\f\U00021858", // 𡡘
+ 0x21859: "&\f\U00021859", // 𡡙
+ 0x2185a: "&\f\U0002185a", // 𡡚
+ 0x2185b: "&\f\U0002185b", // 𡡛
+ 0x2185c: "&\f\U0002185c", // 𡡜
+ 0x2185d: "&\f\U0002185d", // 𡡝
+ 0x2185e: "&\f\U0002185e", // 𡡞
+ 0x2185f: "&\f\U0002185f", // 𡡟
+ 0x21860: "&\f\U00021860", // 𡡠
+ 0x21861: "&\f\U00021861", // 𡡡
+ 0x21862: "&\f\U00021862", // 𡡢
+ 0x21863: "&\f\U00021863", // 𡡣
+ 0x21864: "&\f\U00021864", // 𡡤
+ 0x21865: "&\f\U00021865", // 𡡥
+ 0x21866: "&\f\U00021866", // 𡡦
+ 0x21867: "&\f\U00021867", // 𡡧
+ 0x21868: "&\f\U00021868", // 𡡨
+ 0x21869: "&\f\U00021869", // 𡡩
+ 0x2186a: "&\f\U0002186a", // 𡡪
+ 0x2186b: "&\f\U0002186b", // 𡡫
+ 0x2186c: "&\f\U0002186c", // 𡡬
+ 0x2186d: "&\f\U0002186d", // 𡡭
+ 0x2186e: "&\f\U0002186e", // 𡡮
+ 0x2186f: "&\f\U0002186f", // 𡡯
+ 0x21870: "&\f\U00021870", // 𡡰
+ 0x21871: "&\f\U00021871", // 𡡱
+ 0x21872: "&\f\U00021872", // 𡡲
+ 0x21873: "&\f\U00021873", // 𡡳
+ 0x21874: "&\f\U00021874", // 𡡴
+ 0x21875: "&\f\U00021875", // 𡡵
+ 0x21876: "&\f\U00021876", // 𡡶
+ 0x21877: "&\f\U00021877", // 𡡷
+ 0x21878: "&\f\U00021878", // 𡡸
+ 0x21879: "&\f\U00021879", // 𡡹
+ 0x2187a: "&\f\U0002187a", // 𡡺
+ 0x2187b: "&\f\U0002187b", // 𡡻
+ 0x2187c: "&\f\U0002187c", // 𡡼
+ 0x2187d: "&\f\U0002187d", // 𡡽
+ 0x2187e: "&\f\U0002187e", // 𡡾
+ 0x2187f: "&\f\U0002187f", // 𡡿
+ 0x21880: "&\f\U00021880", // 𡢀
+ 0x21881: "&\f\U00021881", // 𡢁
+ 0x21882: "&\f\U00021882", // 𡢂
+ 0x21883: "&\f\U00021883", // 𡢃
+ 0x21884: "&\f\U00021884", // 𡢄
+ 0x21885: "&\f\U00021885", // 𡢅
+ 0x21886: "&\f\U00021886", // 𡢆
+ 0x21887: "&\f\U00021887", // 𡢇
+ 0x21888: "&\f\U00021888", // 𡢈
+ 0x21889: "&\f\U00021889", // 𡢉
+ 0x2188a: "&\f\U0002188a", // 𡢊
+ 0x2188b: "&\f\U0002188b", // 𡢋
+ 0x2188c: "&\f\U0002188c", // 𡢌
+ 0x2188d: "&\f\U0002188d", // 𡢍
+ 0x2188e: "&\r\U0002188e", // 𡢎
+ 0x2188f: "w\t\U0002188f", // 𡢏
+ 0x21890: "&\f\U00021890", // 𡢐
+ 0x21891: "&\r\U00021891", // 𡢑
+ 0x21892: "&\r\U00021892", // 𡢒
+ 0x21893: "&\r\U00021893", // 𡢓
+ 0x21894: "&\r\U00021894", // 𡢔
+ 0x21895: "&\r\U00021895", // 𡢕
+ 0x21896: "&\r\U00021896", // 𡢖
+ 0x21897: "&\r\U00021897", // 𡢗
+ 0x21898: "&\r\U00021898", // 𡢘
+ 0x21899: "&\r\U00021899", // 𡢙
+ 0x2189a: "&\r\U0002189a", // 𡢚
+ 0x2189b: "&\r\U0002189b", // 𡢛
+ 0x2189c: "&\r\U0002189c", // 𡢜
+ 0x2189d: "&\r\U0002189d", // 𡢝
+ 0x2189e: "&\r\U0002189e", // 𡢞
+ 0x2189f: "&\r\U0002189f", // 𡢟
+ 0x218a0: "&\r\U000218a0", // 𡢠
+ 0x218a1: "&\r\U000218a1", // 𡢡
+ 0x218a2: "&\r\U000218a2", // 𡢢
+ 0x218a3: "&\r\U000218a3", // 𡢣
+ 0x218a4: "&\r\U000218a4", // 𡢤
+ 0x218a5: "&\r\U000218a5", // 𡢥
+ 0x218a6: "&\r\U000218a6", // 𡢦
+ 0x218a7: "&\r\U000218a7", // 𡢧
+ 0x218a8: "&\r\U000218a8", // 𡢨
+ 0x218a9: "&\r\U000218a9", // 𡢩
+ 0x218aa: "&\r\U000218aa", // 𡢪
+ 0x218ab: "&\r\U000218ab", // 𡢫
+ 0x218ac: "&\r\U000218ac", // 𡢬
+ 0x218ad: "&\r\U000218ad", // 𡢭
+ 0x218ae: "&\r\U000218ae", // 𡢮
+ 0x218af: "&\r\U000218af", // 𡢯
+ 0x218b0: "&\r\U000218b0", // 𡢰
+ 0x218b1: "&\r\U000218b1", // 𡢱
+ 0x218b2: "&\r\U000218b2", // 𡢲
+ 0x218b3: "&\r\U000218b3", // 𡢳
+ 0x218b4: "&\r\U000218b4", // 𡢴
+ 0x218b5: "&\r\U000218b5", // 𡢵
+ 0x218b6: "&\r\U000218b6", // 𡢶
+ 0x218b7: "&\r\U000218b7", // 𡢷
+ 0x218b8: "&\r\U000218b8", // 𡢸
+ 0x218b9: "&\r\U000218b9", // 𡢹
+ 0x218ba: "&\r\U000218ba", // 𡢺
+ 0x218bb: "&\r\U000218bb", // 𡢻
+ 0x218bc: "&\r\U000218bc", // 𡢼
+ 0x218bd: "&\r\U000218bd", // 𡢽
+ 0x218be: "&\r\U000218be", // 𡢾
+ 0x218bf: "&\r\U000218bf", // 𡢿
+ 0x218c0: "&\r\U000218c0", // 𡣀
+ 0x218c1: "&\r\U000218c1", // 𡣁
+ 0x218c2: "&\r\U000218c2", // 𡣂
+ 0x218c3: "&\r\U000218c3", // 𡣃
+ 0x218c4: "&\r\U000218c4", // 𡣄
+ 0x218c5: "&\x0e\U000218c5", // 𡣅
+ 0x218c6: "&\x0e\U000218c6", // 𡣆
+ 0x218c7: "&\x0e\U000218c7", // 𡣇
+ 0x218c8: "&\x0e\U000218c8", // 𡣈
+ 0x218c9: "&\x0e\U000218c9", // 𡣉
+ 0x218ca: "&\x0e\U000218ca", // 𡣊
+ 0x218cb: "&\x0e\U000218cb", // 𡣋
+ 0x218cc: "&\x0e\U000218cc", // 𡣌
+ 0x218cd: "&\x0e\U000218cd", // 𡣍
+ 0x218ce: "&\x0e\U000218ce", // 𡣎
+ 0x218cf: "&\x0e\U000218cf", // 𡣏
+ 0x218d0: "&\x0e\U000218d0", // 𡣐
+ 0x218d1: "&\x0e\U000218d1", // 𡣑
+ 0x218d2: "&\x0e\U000218d2", // 𡣒
+ 0x218d3: "&\x0e\U000218d3", // 𡣓
+ 0x218d4: "&\x0e\U000218d4", // 𡣔
+ 0x218d5: "&\x0e\U000218d5", // 𡣕
+ 0x218d6: "&\x0e\U000218d6", // 𡣖
+ 0x218d7: "&\x0e\U000218d7", // 𡣗
+ 0x218d8: "&\x0e\U000218d8", // 𡣘
+ 0x218d9: "&\x0e\U000218d9", // 𡣙
+ 0x218da: "&\x0e\U000218da", // 𡣚
+ 0x218db: "&\x0e\U000218db", // 𡣛
+ 0x218dc: "&\x0e\U000218dc", // 𡣜
+ 0x218dd: "&\x0e\U000218dd", // 𡣝
+ 0x218de: "&\x0e\U000218de", // 𡣞
+ 0x218df: "&\x0e\U000218df", // 𡣟
+ 0x218e0: "&\x0e\U000218e0", // 𡣠
+ 0x218e1: "&\x0e\U000218e1", // 𡣡
+ 0x218e2: "\xa6\n\U000218e2", // 𡣢
+ 0x218e3: "&\x0e\U000218e3", // 𡣣
+ 0x218e4: "&\x0e\U000218e4", // 𡣤
+ 0x218e5: "&\x0e\U000218e5", // 𡣥
+ 0x218e6: "&\x0e\U000218e6", // 𡣦
+ 0x218e7: "&\x0e\U000218e7", // 𡣧
+ 0x218e8: "&\x0e\U000218e8", // 𡣨
+ 0x218e9: "&\x0e\U000218e9", // 𡣩
+ 0x218ea: "&\x0f\U000218ea", // 𡣪
+ 0x218eb: "&\x0f\U000218eb", // 𡣫
+ 0x218ec: "&\x0f\U000218ec", // 𡣬
+ 0x218ed: "&\x0f\U000218ed", // 𡣭
+ 0x218ee: "&\x0f\U000218ee", // 𡣮
+ 0x218ef: "&\x0f\U000218ef", // 𡣯
+ 0x218f0: "&\x0f\U000218f0", // 𡣰
+ 0x218f1: "&\x0f\U000218f1", // 𡣱
+ 0x218f2: "&\x0f\U000218f2", // 𡣲
+ 0x218f3: "&\x0f\U000218f3", // 𡣳
+ 0x218f4: "&\x0f\U000218f4", // 𡣴
+ 0x218f5: "&\x0f\U000218f5", // 𡣵
+ 0x218f6: "&\x0f\U000218f6", // 𡣶
+ 0x218f7: "&\x0f\U000218f7", // 𡣷
+ 0x218f8: "&\x0f\U000218f8", // 𡣸
+ 0x218f9: "&\x0f\U000218f9", // 𡣹
+ 0x218fa: "&\x0f\U000218fa", // 𡣺
+ 0x218fb: "&\x0f\U000218fb", // 𡣻
+ 0x218fc: "&\x0f\U000218fc", // 𡣼
+ 0x218fd: "&\x10\U000218fd", // 𡣽
+ 0x218fe: "&\x10\U000218fe", // 𡣾
+ 0x218ff: "&\x10\U000218ff", // 𡣿
+ 0x21900: "&\x10\U00021900", // 𡤀
+ 0x21901: "&\x10\U00021901", // 𡤁
+ 0x21902: "&\x10\U00021902", // 𡤂
+ 0x21903: "&\x10\U00021903", // 𡤃
+ 0x21904: "&\x10\U00021904", // 𡤄
+ 0x21905: "&\x10\U00021905", // 𡤅
+ 0x21906: "&\x10\U00021906", // 𡤆
+ 0x21907: "&\x10\U00021907", // 𡤇
+ 0x21908: "&\x10\U00021908", // 𡤈
+ 0x21909: "&\x10\U00021909", // 𡤉
+ 0x2190a: "&\x10\U0002190a", // 𡤊
+ 0x2190b: "&\x10\U0002190b", // 𡤋
+ 0x2190c: "&\x10\U0002190c", // 𡤌
+ 0x2190d: "&\x10\U0002190d", // 𡤍
+ 0x2190e: "&\x11\U0002190e", // 𡤎
+ 0x2190f: "&\x11\U0002190f", // 𡤏
+ 0x21910: "&\x11\U00021910", // 𡤐
+ 0x21911: "&\x11\U00021911", // 𡤑
+ 0x21912: "&\x11\U00021912", // 𡤒
+ 0x21913: "&\x11\U00021913", // 𡤓
+ 0x21914: "&\x11\U00021914", // 𡤔
+ 0x21915: "&\x11\U00021915", // 𡤕
+ 0x21916: "&\x11\U00021916", // 𡤖
+ 0x21917: "&\x11\U00021917", // 𡤗
+ 0x21918: "&\x12\U00021918", // 𡤘
+ 0x21919: "&\x12\U00021919", // 𡤙
+ 0x2191a: "&\x12\U0002191a", // 𡤚
+ 0x2191b: "&\x12\U0002191b", // 𡤛
+ 0x2191c: "&\x12\U0002191c", // 𡤜
+ 0x2191d: "&\x12\U0002191d", // 𡤝
+ 0x2191e: "&\x10\U0002191e", // 𡤞
+ 0x2191f: "&\x12\U0002191f", // 𡤟
+ 0x21920: "&\x12\U00021920", // 𡤠
+ 0x21921: "&\x13\U00021921", // 𡤡
+ 0x21922: "&\x13\U00021922", // 𡤢
+ 0x21923: "&\x13\U00021923", // 𡤣
+ 0x21924: "&\x13\U00021924", // 𡤤
+ 0x21925: "&\x13\U00021925", // 𡤥
+ 0x21926: "&\x13\U00021926", // 𡤦
+ 0x21927: "&\x13\U00021927", // 𡤧
+ 0x21928: "&\x13\U00021928", // 𡤨
+ 0x21929: "&\x13\U00021929", // 𡤩
+ 0x2192a: "&\x13\U0002192a", // 𡤪
+ 0x2192b: "&\x14\U0002192b", // 𡤫
+ 0x2192c: "&\x14\U0002192c", // 𡤬
+ 0x2192d: "&\x14\U0002192d", // 𡤭
+ 0x2192e: "&\x15\U0002192e", // 𡤮
+ 0x2192f: "&\x15\U0002192f", // 𡤯
+ 0x21930: "&\x15\U00021930", // 𡤰
+ 0x21931: "&\x15\U00021931", // 𡤱
+ 0x21932: "&\x15\U00021932", // 𡤲
+ 0x21933: "&\x15\U00021933", // 𡤳
+ 0x21934: "&\x16\U00021934", // 𡤴
+ 0x21935: "&\x16\U00021935", // 𡤵
+ 0x21936: "&\x16\U00021936", // 𡤶
+ 0x21937: "&\x18\U00021937", // 𡤷
+ 0x21938: "&\x18\U00021938", // 𡤸
+ 0x21939: "&\x18\U00021939", // 𡤹
+ 0x2193a: "&\x18\U0002193a", // 𡤺
+ 0x2193b: "&\x1e\U0002193b", // 𡤻
+ 0x2193c: "'\x00\U0002193c", // 𡤼
+ 0x2193d: "'\x01\U0002193d", // 𡤽
+ 0x2193e: "'\x02\U0002193e", // 𡤾
+ 0x2193f: "'\x02\U0002193f", // 𡤿
+ 0x21940: "'\x02\U00021940", // 𡥀
+ 0x21941: "'\x02\U00021941", // 𡥁
+ 0x21942: "'\x02\U00021942", // 𡥂
+ 0x21943: "'\x03\U00021943", // 𡥃
+ 0x21944: "'\x03\U00021944", // 𡥄
+ 0x21945: "'\x03\U00021945", // 𡥅
+ 0x21946: "'\x04\U00021946", // 𡥆
+ 0x21947: "'\x04\U00021947", // 𡥇
+ 0x21948: "'\x04\U00021948", // 𡥈
+ 0x21949: "'\x04\U00021949", // 𡥉
+ 0x2194a: "'\x04\U0002194a", // 𡥊
+ 0x2194b: "\x19\x05\U0002194b", // 𡥋
+ 0x2194c: "'\x04\U0002194c", // 𡥌
+ 0x2194d: "'\x04\U0002194d", // 𡥍
+ 0x2194e: "'\x05\U0002194e", // 𡥎
+ 0x2194f: "'\x05\U0002194f", // 𡥏
+ 0x21950: "'\x05\U00021950", // 𡥐
+ 0x21951: "'\x05\U00021951", // 𡥑
+ 0x21952: "'\x05\U00021952", // 𡥒
+ 0x21953: "'\x05\U00021953", // 𡥓
+ 0x21954: "'\x05\U00021954", // 𡥔
+ 0x21955: "'\x05\U00021955", // 𡥕
+ 0x21956: "'\x05\U00021956", // 𡥖
+ 0x21957: "'\x05\U00021957", // 𡥗
+ 0x21958: "'\x05\U00021958", // 𡥘
+ 0x21959: "'\x05\U00021959", // 𡥙
+ 0x2195a: "'\x05\U0002195a", // 𡥚
+ 0x2195b: "'\x06\U0002195b", // 𡥛
+ 0x2195c: "'\x06\U0002195c", // 𡥜
+ 0x2195d: "'\x06\U0002195d", // 𡥝
+ 0x2195e: "'\x06\U0002195e", // 𡥞
+ 0x2195f: "'\x06\U0002195f", // 𡥟
+ 0x21960: "'\x06\U00021960", // 𡥠
+ 0x21961: "'\x06\U00021961", // 𡥡
+ 0x21962: "'\x06\U00021962", // 𡥢
+ 0x21963: "'\x06\U00021963", // 𡥣
+ 0x21964: "'\x06\U00021964", // 𡥤
+ 0x21965: "'\x06\U00021965", // 𡥥
+ 0x21966: "'\x06\U00021966", // 𡥦
+ 0x21967: "'\x06\U00021967", // 𡥧
+ 0x21968: "'\a\U00021968", // 𡥨
+ 0x21969: "'\a\U00021969", // 𡥩
+ 0x2196a: "'\a\U0002196a", // 𡥪
+ 0x2196b: "'\a\U0002196b", // 𡥫
+ 0x2196c: "'\a\U0002196c", // 𡥬
+ 0x2196d: "'\a\U0002196d", // 𡥭
+ 0x2196e: "'\b\U0002196e", // 𡥮
+ 0x2196f: "'\b\U0002196f", // 𡥯
+ 0x21970: "'\b\U00021970", // 𡥰
+ 0x21971: "'\b\U00021971", // 𡥱
+ 0x21972: "'\b\U00021972", // 𡥲
+ 0x21973: "'\b\U00021973", // 𡥳
+ 0x21974: "'\b\U00021974", // 𡥴
+ 0x21975: "'\b\U00021975", // 𡥵
+ 0x21976: "'\t\U00021976", // 𡥶
+ 0x21977: "'\t\U00021977", // 𡥷
+ 0x21978: "'\t\U00021978", // 𡥸
+ 0x21979: "'\t\U00021979", // 𡥹
+ 0x2197a: "'\t\U0002197a", // 𡥺
+ 0x2197b: "'\t\U0002197b", // 𡥻
+ 0x2197c: "'\t\U0002197c", // 𡥼
+ 0x2197d: "'\t\U0002197d", // 𡥽
+ 0x2197e: "'\t\U0002197e", // 𡥾
+ 0x2197f: "'\t\U0002197f", // 𡥿
+ 0x21980: "'\t\U00021980", // 𡦀
+ 0x21981: "'\t\U00021981", // 𡦁
+ 0x21982: "'\t\U00021982", // 𡦂
+ 0x21983: "'\n\U00021983", // 𡦃
+ 0x21984: "'\n\U00021984", // 𡦄
+ 0x21985: "'\n\U00021985", // 𡦅
+ 0x21986: "'\n\U00021986", // 𡦆
+ 0x21987: "'\n\U00021987", // 𡦇
+ 0x21988: "'\n\U00021988", // 𡦈
+ 0x21989: "'\n\U00021989", // 𡦉
+ 0x2198a: "'\n\U0002198a", // 𡦊
+ 0x2198b: "'\n\U0002198b", // 𡦋
+ 0x2198c: "'\n\U0002198c", // 𡦌
+ 0x2198d: "'\n\U0002198d", // 𡦍
+ 0x2198e: "'\n\U0002198e", // 𡦎
+ 0x2198f: "'\n\U0002198f", // 𡦏
+ 0x21990: "'\n\U00021990", // 𡦐
+ 0x21991: "'\v\U00021991", // 𡦑
+ 0x21992: "'\v\U00021992", // 𡦒
+ 0x21993: "'\v\U00021993", // 𡦓
+ 0x21994: "'\v\U00021994", // 𡦔
+ 0x21995: "'\v\U00021995", // 𡦕
+ 0x21996: "'\v\U00021996", // 𡦖
+ 0x21997: "'\f\U00021997", // 𡦗
+ 0x21998: "'\f\U00021998", // 𡦘
+ 0x21999: "'\f\U00021999", // 𡦙
+ 0x2199a: "'\f\U0002199a", // 𡦚
+ 0x2199b: "'\f\U0002199b", // 𡦛
+ 0x2199c: "'\f\U0002199c", // 𡦜
+ 0x2199d: "'\f\U0002199d", // 𡦝
+ 0x2199e: "'\r\U0002199e", // 𡦞
+ 0x2199f: "'\r\U0002199f", // 𡦟
+ 0x219a0: "'\r\U000219a0", // 𡦠
+ 0x219a1: "'\r\U000219a1", // 𡦡
+ 0x219a2: "'\r\U000219a2", // 𡦢
+ 0x219a3: "'\r\U000219a3", // 𡦣
+ 0x219a4: "'\r\U000219a4", // 𡦤
+ 0x219a5: "'\r\U000219a5", // 𡦥
+ 0x219a6: "'\r\U000219a6", // 𡦦
+ 0x219a7: "'\r\U000219a7", // 𡦧
+ 0x219a8: "'\r\U000219a8", // 𡦨
+ 0x219a9: "'\x0e\U000219a9", // 𡦩
+ 0x219aa: "'\x0f\U000219aa", // 𡦪
+ 0x219ab: "'\x0f\U000219ab", // 𡦫
+ 0x219ac: "'\x0f\U000219ac", // 𡦬
+ 0x219ad: "'\x10\U000219ad", // 𡦭
+ 0x219ae: "'\x10\U000219ae", // 𡦮
+ 0x219af: "'\x10\U000219af", // 𡦯
+ 0x219b0: "'\x10\U000219b0", // 𡦰
+ 0x219b1: "'\x11\U000219b1", // 𡦱
+ 0x219b2: "'\x11\U000219b2", // 𡦲
+ 0x219b3: "'\x11\U000219b3", // 𡦳
+ 0x219b4: "'\x11\U000219b4", // 𡦴
+ 0x219b5: "'\x11\U000219b5", // 𡦵
+ 0x219b6: "'\x11\U000219b6", // 𡦶
+ 0x219b7: "'\x13\U000219b7", // 𡦷
+ 0x219b8: "'\x18\U000219b8", // 𡦸
+ 0x219b9: "(\x01\U000219b9", // 𡦹
+ 0x219ba: "(\x02\U000219ba", // 𡦺
+ 0x219bb: "(\x02\U000219bb", // 𡦻
+ 0x219bc: "(\x02\U000219bc", // 𡦼
+ 0x219bd: "(\x03\U000219bd", // 𡦽
+ 0x219be: "(\x03\U000219be", // 𡦾
+ 0x219bf: "(\x03\U000219bf", // 𡦿
+ 0x219c0: "(\x03\U000219c0", // 𡧀
+ 0x219c1: "(\x03\U000219c1", // 𡧁
+ 0x219c2: "(\x03\U000219c2", // 𡧂
+ 0x219c3: "(\x03\U000219c3", // 𡧃
+ 0x219c4: "(\x03\U000219c4", // 𡧄
+ 0x219c5: "(\x03\U000219c5", // 𡧅
+ 0x219c6: "(\x03\U000219c6", // 𡧆
+ 0x219c7: "(\x03\U000219c7", // 𡧇
+ 0x219c8: "(\x03\U000219c8", // 𡧈
+ 0x219c9: "(\x03\U000219c9", // 𡧉
+ 0x219ca: "(\x03\U000219ca", // 𡧊
+ 0x219cb: "(\x04\U000219cb", // 𡧋
+ 0x219cc: "(\x04\U000219cc", // 𡧌
+ 0x219cd: "(\x04\U000219cd", // 𡧍
+ 0x219ce: "(\x04\U000219ce", // 𡧎
+ 0x219cf: "(\x04\U000219cf", // 𡧏
+ 0x219d0: "(\x04\U000219d0", // 𡧐
+ 0x219d1: "(\x04\U000219d1", // 𡧑
+ 0x219d2: "(\x04\U000219d2", // 𡧒
+ 0x219d3: "(\x04\U000219d3", // 𡧓
+ 0x219d4: "(\x04\U000219d4", // 𡧔
+ 0x219d5: "(\x04\U000219d5", // 𡧕
+ 0x219d6: "(\x05\U000219d6", // 𡧖
+ 0x219d7: "(\x05\U000219d7", // 𡧗
+ 0x219d8: "(\x05\U000219d8", // 𡧘
+ 0x219d9: "(\x05\U000219d9", // 𡧙
+ 0x219da: "(\x05\U000219da", // 𡧚
+ 0x219db: "(\x05\U000219db", // 𡧛
+ 0x219dc: "(\x05\U000219dc", // 𡧜
+ 0x219dd: "(\x05\U000219dd", // 𡧝
+ 0x219de: "(\x05\U000219de", // 𡧞
+ 0x219df: "(\x05\U000219df", // 𡧟
+ 0x219e0: "(\x05\U000219e0", // 𡧠
+ 0x219e1: "(\x05\U000219e1", // 𡧡
+ 0x219e2: "(\x05\U000219e2", // 𡧢
+ 0x219e3: "(\x05\U000219e3", // 𡧣
+ 0x219e4: "(\x05\U000219e4", // 𡧤
+ 0x219e5: "(\x05\U000219e5", // 𡧥
+ 0x219e6: "(\x05\U000219e6", // 𡧦
+ 0x219e7: "(\x05\U000219e7", // 𡧧
+ 0x219e8: "(\x05\U000219e8", // 𡧨
+ 0x219e9: "(\x06\U000219e9", // 𡧩
+ 0x219ea: "(\x06\U000219ea", // 𡧪
+ 0x219eb: "(\x06\U000219eb", // 𡧫
+ 0x219ec: "(\x06\U000219ec", // 𡧬
+ 0x219ed: "(\x06\U000219ed", // 𡧭
+ 0x219ee: "(\x06\U000219ee", // 𡧮
+ 0x219ef: "(\x06\U000219ef", // 𡧯
+ 0x219f0: "(\x06\U000219f0", // 𡧰
+ 0x219f1: "(\x06\U000219f1", // 𡧱
+ 0x219f2: "(\x06\U000219f2", // 𡧲
+ 0x219f3: "(\x06\U000219f3", // 𡧳
+ 0x219f4: "(\x06\U000219f4", // 𡧴
+ 0x219f5: "(\x06\U000219f5", // 𡧵
+ 0x219f6: "(\x06\U000219f6", // 𡧶
+ 0x219f7: "(\x06\U000219f7", // 𡧷
+ 0x219f8: "(\x06\U000219f8", // 𡧸
+ 0x219f9: "(\x06\U000219f9", // 𡧹
+ 0x219fa: "(\x06\U000219fa", // 𡧺
+ 0x219fb: "(\x06\U000219fb", // 𡧻
+ 0x219fc: "(\x06\U000219fc", // 𡧼
+ 0x219fd: "(\x06\U000219fd", // 𡧽
+ 0x219fe: "(\x06\U000219fe", // 𡧾
+ 0x219ff: "(\x06\U000219ff", // 𡧿
+ 0x21a00: "(\a\U00021a00", // 𡨀
+ 0x21a01: "(\a\U00021a01", // 𡨁
+ 0x21a02: "(\a\U00021a02", // 𡨂
+ 0x21a03: "(\a\U00021a03", // 𡨃
+ 0x21a04: "(\a\U00021a04", // 𡨄
+ 0x21a05: "(\a\U00021a05", // 𡨅
+ 0x21a06: "(\a\U00021a06", // 𡨆
+ 0x21a07: "(\a\U00021a07", // 𡨇
+ 0x21a08: "(\a\U00021a08", // 𡨈
+ 0x21a09: "(\a\U00021a09", // 𡨉
+ 0x21a0a: "(\a\U00021a0a", // 𡨊
+ 0x21a0b: "(\a\U00021a0b", // 𡨋
+ 0x21a0c: "(\a\U00021a0c", // 𡨌
+ 0x21a0d: "(\a\U00021a0d", // 𡨍
+ 0x21a0e: "(\a\U00021a0e", // 𡨎
+ 0x21a0f: "(\a\U00021a0f", // 𡨏
+ 0x21a10: "(\a\U00021a10", // 𡨐
+ 0x21a11: "(\a\U00021a11", // 𡨑
+ 0x21a12: "(\a\U00021a12", // 𡨒
+ 0x21a13: "(\a\U00021a13", // 𡨓
+ 0x21a14: "(\a\U00021a14", // 𡨔
+ 0x21a15: "(\a\U00021a15", // 𡨕
+ 0x21a16: "(\a\U00021a16", // 𡨖
+ 0x21a17: "(\a\U00021a17", // 𡨗
+ 0x21a18: "(\a\U00021a18", // 𡨘
+ 0x21a19: "(\a\U00021a19", // 𡨙
+ 0x21a1a: "(\a\U00021a1a", // 𡨚
+ 0x21a1b: "(\a\U00021a1b", // 𡨛
+ 0x21a1c: "(\a\U00021a1c", // 𡨜
+ 0x21a1d: "(\a\U00021a1d", // 𡨝
+ 0x21a1e: "(\a\U00021a1e", // 𡨞
+ 0x21a1f: "(\a\U00021a1f", // 𡨟
+ 0x21a20: "(\a\U00021a20", // 𡨠
+ 0x21a21: "(\a\U00021a21", // 𡨡
+ 0x21a22: "(\b\U00021a22", // 𡨢
+ 0x21a23: "(\b\U00021a23", // 𡨣
+ 0x21a24: "(\b\U00021a24", // 𡨤
+ 0x21a25: "(\b\U00021a25", // 𡨥
+ 0x21a26: "(\b\U00021a26", // 𡨦
+ 0x21a27: "(\b\U00021a27", // 𡨧
+ 0x21a28: "(\b\U00021a28", // 𡨨
+ 0x21a29: "(\b\U00021a29", // 𡨩
+ 0x21a2a: "(\b\U00021a2a", // 𡨪
+ 0x21a2b: "(\b\U00021a2b", // 𡨫
+ 0x21a2c: "(\b\U00021a2c", // 𡨬
+ 0x21a2d: "(\b\U00021a2d", // 𡨭
+ 0x21a2e: "(\b\U00021a2e", // 𡨮
+ 0x21a2f: "(\b\U00021a2f", // 𡨯
+ 0x21a30: "(\b\U00021a30", // 𡨰
+ 0x21a31: "(\b\U00021a31", // 𡨱
+ 0x21a32: "(\b\U00021a32", // 𡨲
+ 0x21a33: "(\b\U00021a33", // 𡨳
+ 0x21a34: "(\b\U00021a34", // 𡨴
+ 0x21a35: "(\b\U00021a35", // 𡨵
+ 0x21a36: "(\b\U00021a36", // 𡨶
+ 0x21a37: "(\b\U00021a37", // 𡨷
+ 0x21a38: "(\b\U00021a38", // 𡨸
+ 0x21a39: "(\b\U00021a39", // 𡨹
+ 0x21a3a: "(\b\U00021a3a", // 𡨺
+ 0x21a3b: "(\b\U00021a3b", // 𡨻
+ 0x21a3c: "(\b\U00021a3c", // 𡨼
+ 0x21a3d: "(\t\U00021a3d", // 𡨽
+ 0x21a3e: "(\t\U00021a3e", // 𡨾
+ 0x21a3f: "(\t\U00021a3f", // 𡨿
+ 0x21a40: "(\t\U00021a40", // 𡩀
+ 0x21a41: "(\t\U00021a41", // 𡩁
+ 0x21a42: "(\t\U00021a42", // 𡩂
+ 0x21a43: "(\t\U00021a43", // 𡩃
+ 0x21a44: "(\t\U00021a44", // 𡩄
+ 0x21a45: "(\t\U00021a45", // 𡩅
+ 0x21a46: "(\t\U00021a46", // 𡩆
+ 0x21a47: "(\t\U00021a47", // 𡩇
+ 0x21a48: "(\t\U00021a48", // 𡩈
+ 0x21a49: "(\t\U00021a49", // 𡩉
+ 0x21a4a: "(\t\U00021a4a", // 𡩊
+ 0x21a4b: "(\t\U00021a4b", // 𡩋
+ 0x21a4c: "(\t\U00021a4c", // 𡩌
+ 0x21a4d: "(\t\U00021a4d", // 𡩍
+ 0x21a4e: "(\t\U00021a4e", // 𡩎
+ 0x21a4f: "(\t\U00021a4f", // 𡩏
+ 0x21a50: "(\t\U00021a50", // 𡩐
+ 0x21a51: "(\t\U00021a51", // 𡩑
+ 0x21a52: "(\t\U00021a52", // 𡩒
+ 0x21a53: "(\t\U00021a53", // 𡩓
+ 0x21a54: "(\t\U00021a54", // 𡩔
+ 0x21a55: "(\t\U00021a55", // 𡩕
+ 0x21a56: "(\t\U00021a56", // 𡩖
+ 0x21a57: "(\t\U00021a57", // 𡩗
+ 0x21a58: "(\t\U00021a58", // 𡩘
+ 0x21a59: "(\t\U00021a59", // 𡩙
+ 0x21a5a: "(\t\U00021a5a", // 𡩚
+ 0x21a5b: "(\t\U00021a5b", // 𡩛
+ 0x21a5c: "(\t\U00021a5c", // 𡩜
+ 0x21a5d: "(\t\U00021a5d", // 𡩝
+ 0x21a5e: "(\t\U00021a5e", // 𡩞
+ 0x21a5f: "(\n\U00021a5f", // 𡩟
+ 0x21a60: "(\n\U00021a60", // 𡩠
+ 0x21a61: "(\n\U00021a61", // 𡩡
+ 0x21a62: "(\n\U00021a62", // 𡩢
+ 0x21a63: "(\n\U00021a63", // 𡩣
+ 0x21a64: "(\n\U00021a64", // 𡩤
+ 0x21a65: "(\n\U00021a65", // 𡩥
+ 0x21a66: "(\n\U00021a66", // 𡩦
+ 0x21a67: "(\n\U00021a67", // 𡩧
+ 0x21a68: "(\n\U00021a68", // 𡩨
+ 0x21a69: "(\n\U00021a69", // 𡩩
+ 0x21a6a: "(\n\U00021a6a", // 𡩪
+ 0x21a6b: "(\n\U00021a6b", // 𡩫
+ 0x21a6c: "(\n\U00021a6c", // 𡩬
+ 0x21a6d: "(\n\U00021a6d", // 𡩭
+ 0x21a6e: "(\n\U00021a6e", // 𡩮
+ 0x21a6f: "(\n\U00021a6f", // 𡩯
+ 0x21a70: "(\n\U00021a70", // 𡩰
+ 0x21a71: "(\n\U00021a71", // 𡩱
+ 0x21a72: "(\n\U00021a72", // 𡩲
+ 0x21a73: "(\n\U00021a73", // 𡩳
+ 0x21a74: "(\n\U00021a74", // 𡩴
+ 0x21a75: "(\n\U00021a75", // 𡩵
+ 0x21a76: "(\n\U00021a76", // 𡩶
+ 0x21a77: "(\n\U00021a77", // 𡩷
+ 0x21a78: "(\n\U00021a78", // 𡩸
+ 0x21a79: "(\n\U00021a79", // 𡩹
+ 0x21a7a: "(\n\U00021a7a", // 𡩺
+ 0x21a7b: "(\v\U00021a7b", // 𡩻
+ 0x21a7c: "(\v\U00021a7c", // 𡩼
+ 0x21a7d: "(\v\U00021a7d", // 𡩽
+ 0x21a7e: "(\v\U00021a7e", // 𡩾
+ 0x21a7f: "(\v\U00021a7f", // 𡩿
+ 0x21a80: "(\v\U00021a80", // 𡪀
+ 0x21a81: "(\v\U00021a81", // 𡪁
+ 0x21a82: "(\v\U00021a82", // 𡪂
+ 0x21a83: "(\v\U00021a83", // 𡪃
+ 0x21a84: "(\v\U00021a84", // 𡪄
+ 0x21a85: "(\v\U00021a85", // 𡪅
+ 0x21a86: "(\v\U00021a86", // 𡪆
+ 0x21a87: "(\v\U00021a87", // 𡪇
+ 0x21a88: "(\v\U00021a88", // 𡪈
+ 0x21a89: "(\v\U00021a89", // 𡪉
+ 0x21a8a: "(\v\U00021a8a", // 𡪊
+ 0x21a8b: "(\v\U00021a8b", // 𡪋
+ 0x21a8c: "(\v\U00021a8c", // 𡪌
+ 0x21a8d: "(\v\U00021a8d", // 𡪍
+ 0x21a8e: "(\v\U00021a8e", // 𡪎
+ 0x21a8f: "(\v\U00021a8f", // 𡪏
+ 0x21a90: "(\v\U00021a90", // 𡪐
+ 0x21a91: "(\v\U00021a91", // 𡪑
+ 0x21a92: "(\v\U00021a92", // 𡪒
+ 0x21a93: "(\v\U00021a93", // 𡪓
+ 0x21a94: "(\v\U00021a94", // 𡪔
+ 0x21a95: "(\v\U00021a95", // 𡪕
+ 0x21a96: "(\v\U00021a96", // 𡪖
+ 0x21a97: "(\v\U00021a97", // 𡪗
+ 0x21a98: "(\v\U00021a98", // 𡪘
+ 0x21a99: "(\v\U00021a99", // 𡪙
+ 0x21a9a: "(\v\U00021a9a", // 𡪚
+ 0x21a9b: "(\v\U00021a9b", // 𡪛
+ 0x21a9c: "(\v\U00021a9c", // 𡪜
+ 0x21a9d: "(\v\U00021a9d", // 𡪝
+ 0x21a9e: "\x1d\f\U00021a9e", // 𡪞
+ 0x21a9f: "(\f\U00021a9f", // 𡪟
+ 0x21aa0: "(\f\U00021aa0", // 𡪠
+ 0x21aa1: "(\f\U00021aa1", // 𡪡
+ 0x21aa2: "(\f\U00021aa2", // 𡪢
+ 0x21aa3: "(\f\U00021aa3", // 𡪣
+ 0x21aa4: "(\f\U00021aa4", // 𡪤
+ 0x21aa5: "(\f\U00021aa5", // 𡪥
+ 0x21aa6: "(\f\U00021aa6", // 𡪦
+ 0x21aa7: "(\f\U00021aa7", // 𡪧
+ 0x21aa8: "(\f\U00021aa8", // 𡪨
+ 0x21aa9: "(\f\U00021aa9", // 𡪩
+ 0x21aaa: "(\f\U00021aaa", // 𡪪
+ 0x21aab: "(\f\U00021aab", // 𡪫
+ 0x21aac: "(\f\U00021aac", // 𡪬
+ 0x21aad: "(\f\U00021aad", // 𡪭
+ 0x21aae: "(\f\U00021aae", // 𡪮
+ 0x21aaf: "(\f\U00021aaf", // 𡪯
+ 0x21ab0: "(\f\U00021ab0", // 𡪰
+ 0x21ab1: "(\f\U00021ab1", // 𡪱
+ 0x21ab2: "(\f\U00021ab2", // 𡪲
+ 0x21ab3: "(\f\U00021ab3", // 𡪳
+ 0x21ab4: "(\f\U00021ab4", // 𡪴
+ 0x21ab5: "(\f\U00021ab5", // 𡪵
+ 0x21ab6: "(\f\U00021ab6", // 𡪶
+ 0x21ab7: "(\f\U00021ab7", // 𡪷
+ 0x21ab8: "(\f\U00021ab8", // 𡪸
+ 0x21ab9: "(\f\U00021ab9", // 𡪹
+ 0x21aba: "(\f\U00021aba", // 𡪺
+ 0x21abb: "(\f\U00021abb", // 𡪻
+ 0x21abc: "(\f\U00021abc", // 𡪼
+ 0x21abd: "(\f\U00021abd", // 𡪽
+ 0x21abe: "(\r\U00021abe", // 𡪾
+ 0x21abf: "(\r\U00021abf", // 𡪿
+ 0x21ac0: "(\r\U00021ac0", // 𡫀
+ 0x21ac1: "(\r\U00021ac1", // 𡫁
+ 0x21ac2: "(\r\U00021ac2", // 𡫂
+ 0x21ac3: "(\r\U00021ac3", // 𡫃
+ 0x21ac4: "(\r\U00021ac4", // 𡫄
+ 0x21ac5: "(\r\U00021ac5", // 𡫅
+ 0x21ac6: "(\r\U00021ac6", // 𡫆
+ 0x21ac7: "(\r\U00021ac7", // 𡫇
+ 0x21ac8: "(\r\U00021ac8", // 𡫈
+ 0x21ac9: "(\r\U00021ac9", // 𡫉
+ 0x21aca: "(\r\U00021aca", // 𡫊
+ 0x21acb: "(\r\U00021acb", // 𡫋
+ 0x21acc: "(\r\U00021acc", // 𡫌
+ 0x21acd: "(\r\U00021acd", // 𡫍
+ 0x21ace: "(\r\U00021ace", // 𡫎
+ 0x21acf: "(\r\U00021acf", // 𡫏
+ 0x21ad0: "(\r\U00021ad0", // 𡫐
+ 0x21ad1: "(\x0e\U00021ad1", // 𡫑
+ 0x21ad2: "(\x0e\U00021ad2", // 𡫒
+ 0x21ad3: "(\x0e\U00021ad3", // 𡫓
+ 0x21ad4: "(\x0e\U00021ad4", // 𡫔
+ 0x21ad5: "(\x0e\U00021ad5", // 𡫕
+ 0x21ad6: "(\x0e\U00021ad6", // 𡫖
+ 0x21ad7: "(\x0e\U00021ad7", // 𡫗
+ 0x21ad8: "(\x0e\U00021ad8", // 𡫘
+ 0x21ad9: "(\x0e\U00021ad9", // 𡫙
+ 0x21ada: "(\x0e\U00021ada", // 𡫚
+ 0x21adb: "(\x0e\U00021adb", // 𡫛
+ 0x21adc: "(\x0e\U00021adc", // 𡫜
+ 0x21add: "(\x0e\U00021add", // 𡫝
+ 0x21ade: "(\x0f\U00021ade", // 𡫞
+ 0x21adf: "(\x0f\U00021adf", // 𡫟
+ 0x21ae0: "(\x0f\U00021ae0", // 𡫠
+ 0x21ae1: "(\x0f\U00021ae1", // 𡫡
+ 0x21ae2: "(\x0f\U00021ae2", // 𡫢
+ 0x21ae3: "(\x0f\U00021ae3", // 𡫣
+ 0x21ae4: "(\x0f\U00021ae4", // 𡫤
+ 0x21ae5: "(\x0f\U00021ae5", // 𡫥
+ 0x21ae6: "(\x0f\U00021ae6", // 𡫦
+ 0x21ae7: "(\x0f\U00021ae7", // 𡫧
+ 0x21ae8: "(\x0f\U00021ae8", // 𡫨
+ 0x21ae9: "(\x0f\U00021ae9", // 𡫩
+ 0x21aea: "(\x0f\U00021aea", // 𡫪
+ 0x21aeb: "(\x0f\U00021aeb", // 𡫫
+ 0x21aec: "(\x10\U00021aec", // 𡫬
+ 0x21aed: "(\x10\U00021aed", // 𡫭
+ 0x21aee: "(\x10\U00021aee", // 𡫮
+ 0x21aef: "(\x10\U00021aef", // 𡫯
+ 0x21af0: "(\x10\U00021af0", // 𡫰
+ 0x21af1: "(\x10\U00021af1", // 𡫱
+ 0x21af2: "(\x10\U00021af2", // 𡫲
+ 0x21af3: "(\x10\U00021af3", // 𡫳
+ 0x21af4: "(\x10\U00021af4", // 𡫴
+ 0x21af5: "(\x10\U00021af5", // 𡫵
+ 0x21af6: "(\x10\U00021af6", // 𡫶
+ 0x21af7: "(\x11\U00021af7", // 𡫷
+ 0x21af8: "(\x11\U00021af8", // 𡫸
+ 0x21af9: "(\x11\U00021af9", // 𡫹
+ 0x21afa: "(\x11\U00021afa", // 𡫺
+ 0x21afb: "(\x11\U00021afb", // 𡫻
+ 0x21afc: "(\x12\U00021afc", // 𡫼
+ 0x21afd: "(\x12\U00021afd", // 𡫽
+ 0x21afe: "(\x12\U00021afe", // 𡫾
+ 0x21aff: "(\x12\U00021aff", // 𡫿
+ 0x21b00: "(\x12\U00021b00", // 𡬀
+ 0x21b01: "(\x12\U00021b01", // 𡬁
+ 0x21b02: "(\x12\U00021b02", // 𡬂
+ 0x21b03: "(\x12\U00021b03", // 𡬃
+ 0x21b04: "(\x13\U00021b04", // 𡬄
+ 0x21b05: "(\x13\U00021b05", // 𡬅
+ 0x21b06: "(\x13\U00021b06", // 𡬆
+ 0x21b07: "(\x13\U00021b07", // 𡬇
+ 0x21b08: "(\x13\U00021b08", // 𡬈
+ 0x21b09: "(\x13\U00021b09", // 𡬉
+ 0x21b0a: "(\x13\U00021b0a", // 𡬊
+ 0x21b0b: "(\x13\U00021b0b", // 𡬋
+ 0x21b0c: "(\x14\U00021b0c", // 𡬌
+ 0x21b0d: "(\x15\U00021b0d", // 𡬍
+ 0x21b0e: "(\x18\U00021b0e", // 𡬎
+ 0x21b0f: "(\x15\U00021b0f", // 𡬏
+ 0x21b10: "(\x15\U00021b10", // 𡬐
+ 0x21b11: "(\x16\U00021b11", // 𡬑
+ 0x21b12: "(\x19\U00021b12", // 𡬒
+ 0x21b13: "(\x16\U00021b13", // 𡬓
+ 0x21b14: "(\x16\U00021b14", // 𡬔
+ 0x21b15: "(\x16\U00021b15", // 𡬕
+ 0x21b16: "(\x17\U00021b16", // 𡬖
+ 0x21b17: "(\x17\U00021b17", // 𡬗
+ 0x21b18: "(\x17\U00021b18", // 𡬘
+ 0x21b19: "(\x18\U00021b19", // 𡬙
+ 0x21b1a: "(\x18\U00021b1a", // 𡬚
+ 0x21b1b: "(\x1a\U00021b1b", // 𡬛
+ 0x21b1c: "(!\U00021b1c", // 𡬜
+ 0x21b1d: ")\x01\U00021b1d", // 𡬝
+ 0x21b1e: ")\x03\U00021b1e", // 𡬞
+ 0x21b1f: ")\x05\U00021b1f", // 𡬟
+ 0x21b20: ")\x05\U00021b20", // 𡬠
+ 0x21b21: ")\x05\U00021b21", // 𡬡
+ 0x21b22: ")\x05\U00021b22", // 𡬢
+ 0x21b23: ")\x05\U00021b23", // 𡬣
+ 0x21b24: ")\x05\U00021b24", // 𡬤
+ 0x21b25: ")\x05\U00021b25", // 𡬥
+ 0x21b26: ")\x05\U00021b26", // 𡬦
+ 0x21b27: ")\x06\U00021b27", // 𡬧
+ 0x21b28: ")\x06\U00021b28", // 𡬨
+ 0x21b29: ")\x06\U00021b29", // 𡬩
+ 0x21b2a: ")\x06\U00021b2a", // 𡬪
+ 0x21b2b: ")\x06\U00021b2b", // 𡬫
+ 0x21b2c: ")\x06\U00021b2c", // 𡬬
+ 0x21b2d: ")\a\U00021b2d", // 𡬭
+ 0x21b2e: ")\b\U00021b2e", // 𡬮
+ 0x21b2f: ")\b\U00021b2f", // 𡬯
+ 0x21b30: ")\b\U00021b30", // 𡬰
+ 0x21b31: ")\b\U00021b31", // 𡬱
+ 0x21b32: ")\b\U00021b32", // 𡬲
+ 0x21b33: ")\t\U00021b33", // 𡬳
+ 0x21b34: ")\t\U00021b34", // 𡬴
+ 0x21b35: ")\t\U00021b35", // 𡬵
+ 0x21b36: ")\t\U00021b36", // 𡬶
+ 0x21b37: ")\t\U00021b37", // 𡬷
+ 0x21b38: ")\t\U00021b38", // 𡬸
+ 0x21b39: ")\n\U00021b39", // 𡬹
+ 0x21b3a: ")\n\U00021b3a", // 𡬺
+ 0x21b3b: ")\n\U00021b3b", // 𡬻
+ 0x21b3c: ")\n\U00021b3c", // 𡬼
+ 0x21b3d: ")\v\U00021b3d", // 𡬽
+ 0x21b3e: ")\v\U00021b3e", // 𡬾
+ 0x21b3f: ")\v\U00021b3f", // 𡬿
+ 0x21b40: ")\v\U00021b40", // 𡭀
+ 0x21b41: ")\v\U00021b41", // 𡭁
+ 0x21b42: ")\v\U00021b42", // 𡭂
+ 0x21b43: ")\f\U00021b43", // 𡭃
+ 0x21b44: ")\f\U00021b44", // 𡭄
+ 0x21b45: ")\f\U00021b45", // 𡭅
+ 0x21b46: ")\f\U00021b46", // 𡭆
+ 0x21b47: ")\f\U00021b47", // 𡭇
+ 0x21b48: ")\f\U00021b48", // 𡭈
+ 0x21b49: ")\f\U00021b49", // 𡭉
+ 0x21b4a: ")\r\U00021b4a", // 𡭊
+ 0x21b4b: ")\r\U00021b4b", // 𡭋
+ 0x21b4c: ")\r\U00021b4c", // 𡭌
+ 0x21b4d: ")\x0e\U00021b4d", // 𡭍
+ 0x21b4e: ")\x0e\U00021b4e", // 𡭎
+ 0x21b4f: ")\x0e\U00021b4f", // 𡭏
+ 0x21b50: ")\x0f\U00021b50", // 𡭐
+ 0x21b51: ")\x10\U00021b51", // 𡭑
+ 0x21b52: ")\x11\U00021b52", // 𡭒
+ 0x21b53: ")\x12\U00021b53", // 𡭓
+ 0x21b54: "*\x00\U00021b54", // 𡭔
+ 0x21b55: "*\x01\U00021b55", // 𡭕
+ 0x21b56: "*\x01\U00021b56", // 𡭖
+ 0x21b57: "*\x02\U00021b57", // 𡭗
+ 0x21b58: "*\x02\U00021b58", // 𡭘
+ 0x21b59: "*\x03\U00021b59", // 𡭙
+ 0x21b5a: "*\x03\U00021b5a", // 𡭚
+ 0x21b5b: "*\x03\U00021b5b", // 𡭛
+ 0x21b5c: "*\x03\U00021b5c", // 𡭜
+ 0x21b5d: "*\x04\U00021b5d", // 𡭝
+ 0x21b5e: "*\x04\U00021b5e", // 𡭞
+ 0x21b5f: "*\x04\U00021b5f", // 𡭟
+ 0x21b60: "*\x04\U00021b60", // 𡭠
+ 0x21b61: "*\x04\U00021b61", // 𡭡
+ 0x21b62: "*\x04\U00021b62", // 𡭢
+ 0x21b63: "*\x04\U00021b63", // 𡭣
+ 0x21b64: "*\x04\U00021b64", // 𡭤
+ 0x21b65: "*\x05\U00021b65", // 𡭥
+ 0x21b66: "*\x05\U00021b66", // 𡭦
+ 0x21b67: "*\x05\U00021b67", // 𡭧
+ 0x21b68: "*\x05\U00021b68", // 𡭨
+ 0x21b69: "*\x05\U00021b69", // 𡭩
+ 0x21b6a: "*\x06\U00021b6a", // 𡭪
+ 0x21b6b: "*\x06\U00021b6b", // 𡭫
+ 0x21b6c: "*\x06\U00021b6c", // 𡭬
+ 0x21b6d: "*\x06\U00021b6d", // 𡭭
+ 0x21b6e: "*\x06\U00021b6e", // 𡭮
+ 0x21b6f: "*\x06\U00021b6f", // 𡭯
+ 0x21b70: "*\x06\U00021b70", // 𡭰
+ 0x21b71: "*\x06\U00021b71", // 𡭱
+ 0x21b72: "*\x06\U00021b72", // 𡭲
+ 0x21b73: "*\x06\U00021b73", // 𡭳
+ 0x21b74: "*\a\U00021b74", // 𡭴
+ 0x21b75: "*\a\U00021b75", // 𡭵
+ 0x21b76: "*\a\U00021b76", // 𡭶
+ 0x21b77: "*\a\U00021b77", // 𡭷
+ 0x21b78: "*\a\U00021b78", // 𡭸
+ 0x21b79: "*\a\U00021b79", // 𡭹
+ 0x21b7a: "*\a\U00021b7a", // 𡭺
+ 0x21b7b: "*\a\U00021b7b", // 𡭻
+ 0x21b7c: "*\a\U00021b7c", // 𡭼
+ 0x21b7d: "*\b\U00021b7d", // 𡭽
+ 0x21b7e: "*\b\U00021b7e", // 𡭾
+ 0x21b7f: "*\b\U00021b7f", // 𡭿
+ 0x21b80: "*\b\U00021b80", // 𡮀
+ 0x21b81: "*\b\U00021b81", // 𡮁
+ 0x21b82: "*\b\U00021b82", // 𡮂
+ 0x21b83: "*\b\U00021b83", // 𡮃
+ 0x21b84: "*\b\U00021b84", // 𡮄
+ 0x21b85: "*\b\U00021b85", // 𡮅
+ 0x21b86: "*\b\U00021b86", // 𡮆
+ 0x21b87: "*\b\U00021b87", // 𡮇
+ 0x21b88: "*\b\U00021b88", // 𡮈
+ 0x21b89: "*\b\U00021b89", // 𡮉
+ 0x21b8a: "*\b\U00021b8a", // 𡮊
+ 0x21b8b: "*\b\U00021b8b", // 𡮋
+ 0x21b8c: "*\b\U00021b8c", // 𡮌
+ 0x21b8d: "*\b\U00021b8d", // 𡮍
+ 0x21b8e: "*\t\U00021b8e", // 𡮎
+ 0x21b8f: "*\t\U00021b8f", // 𡮏
+ 0x21b90: "*\t\U00021b90", // 𡮐
+ 0x21b91: "*\t\U00021b91", // 𡮑
+ 0x21b92: "*\t\U00021b92", // 𡮒
+ 0x21b93: "*\t\U00021b93", // 𡮓
+ 0x21b94: "*\t\U00021b94", // 𡮔
+ 0x21b95: "*\t\U00021b95", // 𡮕
+ 0x21b96: "*\t\U00021b96", // 𡮖
+ 0x21b97: "*\t\U00021b97", // 𡮗
+ 0x21b98: "*\n\U00021b98", // 𡮘
+ 0x21b99: "*\n\U00021b99", // 𡮙
+ 0x21b9a: "*\n\U00021b9a", // 𡮚
+ 0x21b9b: "*\n\U00021b9b", // 𡮛
+ 0x21b9c: "*\n\U00021b9c", // 𡮜
+ 0x21b9d: "*\n\U00021b9d", // 𡮝
+ 0x21b9e: "*\v\U00021b9e", // 𡮞
+ 0x21b9f: "*\v\U00021b9f", // 𡮟
+ 0x21ba0: "*\v\U00021ba0", // 𡮠
+ 0x21ba1: "*\v\U00021ba1", // 𡮡
+ 0x21ba2: "*\v\U00021ba2", // 𡮢
+ 0x21ba3: "*\v\U00021ba3", // 𡮣
+ 0x21ba4: "*\v\U00021ba4", // 𡮤
+ 0x21ba5: "*\v\U00021ba5", // 𡮥
+ 0x21ba6: "*\f\U00021ba6", // 𡮦
+ 0x21ba7: "*\f\U00021ba7", // 𡮧
+ 0x21ba8: "*\f\U00021ba8", // 𡮨
+ 0x21ba9: "*\f\U00021ba9", // 𡮩
+ 0x21baa: "*\f\U00021baa", // 𡮪
+ 0x21bab: "*\f\U00021bab", // 𡮫
+ 0x21bac: "*\f\U00021bac", // 𡮬
+ 0x21bad: "*\f\U00021bad", // 𡮭
+ 0x21bae: "*\f\U00021bae", // 𡮮
+ 0x21baf: "*\f\U00021baf", // 𡮯
+ 0x21bb0: "*\r\U00021bb0", // 𡮰
+ 0x21bb1: "*\r\U00021bb1", // 𡮱
+ 0x21bb2: "*\r\U00021bb2", // 𡮲
+ 0x21bb3: "*\r\U00021bb3", // 𡮳
+ 0x21bb4: "*\x0e\U00021bb4", // 𡮴
+ 0x21bb5: "*\x0e\U00021bb5", // 𡮵
+ 0x21bb6: "*\x0e\U00021bb6", // 𡮶
+ 0x21bb7: "*\x0f\U00021bb7", // 𡮷
+ 0x21bb8: "*\x0f\U00021bb8", // 𡮸
+ 0x21bb9: "*\x0f\U00021bb9", // 𡮹
+ 0x21bba: "*\x0f\U00021bba", // 𡮺
+ 0x21bbb: "*\x0f\U00021bbb", // 𡮻
+ 0x21bbc: "*\x10\U00021bbc", // 𡮼
+ 0x21bbd: "*\x10\U00021bbd", // 𡮽
+ 0x21bbe: "*\x10\U00021bbe", // 𡮾
+ 0x21bbf: "*\x12\U00021bbf", // 𡮿
+ 0x21bc0: "*\x1d\U00021bc0", // 𡯀
+ 0x21bc1: "+\x00\U00021bc1", // 𡯁
+ 0x21bc2: "+\x00\U00021bc2", // 𡯂
+ 0x21bc3: "+\x01\U00021bc3", // 𡯃
+ 0x21bc4: "+\x02\U00021bc4", // 𡯄
+ 0x21bc5: "+\x02\U00021bc5", // 𡯅
+ 0x21bc6: "+\x02\U00021bc6", // 𡯆
+ 0x21bc7: "+\x02\U00021bc7", // 𡯇
+ 0x21bc8: "+\x02\U00021bc8", // 𡯈
+ 0x21bc9: "+\x02\U00021bc9", // 𡯉
+ 0x21bca: "+\x02\U00021bca", // 𡯊
+ 0x21bcb: "+\x03\U00021bcb", // 𡯋
+ 0x21bcc: "+\x03\U00021bcc", // 𡯌
+ 0x21bcd: "+\x03\U00021bcd", // 𡯍
+ 0x21bce: "+\x03\U00021bce", // 𡯎
+ 0x21bcf: "+\x04\U00021bcf", // 𡯏
+ 0x21bd0: "+\x04\U00021bd0", // 𡯐
+ 0x21bd1: "+\x04\U00021bd1", // 𡯑
+ 0x21bd2: "+\x04\U00021bd2", // 𡯒
+ 0x21bd3: "+\x04\U00021bd3", // 𡯓
+ 0x21bd4: "+\x04\U00021bd4", // 𡯔
+ 0x21bd5: "+\x04\U00021bd5", // 𡯕
+ 0x21bd6: "+\x04\U00021bd6", // 𡯖
+ 0x21bd7: "+\x04\U00021bd7", // 𡯗
+ 0x21bd8: "+\x04\U00021bd8", // 𡯘
+ 0x21bd9: "+\x04\U00021bd9", // 𡯙
+ 0x21bda: "+\x05\U00021bda", // 𡯚
+ 0x21bdb: "+\x05\U00021bdb", // 𡯛
+ 0x21bdc: "+\x05\U00021bdc", // 𡯜
+ 0x21bdd: "+\x05\U00021bdd", // 𡯝
+ 0x21bde: "+\x05\U00021bde", // 𡯞
+ 0x21bdf: "+\x05\U00021bdf", // 𡯟
+ 0x21be0: "+\x05\U00021be0", // 𡯠
+ 0x21be1: "+\x05\U00021be1", // 𡯡
+ 0x21be2: "+\x06\U00021be2", // 𡯢
+ 0x21be3: "+\x06\U00021be3", // 𡯣
+ 0x21be4: "+\x06\U00021be4", // 𡯤
+ 0x21be5: "\x8e\x03\U00021be5", // 𡯥
+ 0x21be6: "+\x06\U00021be6", // 𡯦
+ 0x21be7: "+\x06\U00021be7", // 𡯧
+ 0x21be8: "+\a\U00021be8", // 𡯨
+ 0x21be9: "+\a\U00021be9", // 𡯩
+ 0x21bea: "+\a\U00021bea", // 𡯪
+ 0x21beb: "+\a\U00021beb", // 𡯫
+ 0x21bec: "+\a\U00021bec", // 𡯬
+ 0x21bed: "+\a\U00021bed", // 𡯭
+ 0x21bee: "+\a\U00021bee", // 𡯮
+ 0x21bef: "+\a\U00021bef", // 𡯯
+ 0x21bf0: "+\a\U00021bf0", // 𡯰
+ 0x21bf1: "+\a\U00021bf1", // 𡯱
+ 0x21bf2: "+\a\U00021bf2", // 𡯲
+ 0x21bf3: "+\b\U00021bf3", // 𡯳
+ 0x21bf4: "+\b\U00021bf4", // 𡯴
+ 0x21bf5: "+\b\U00021bf5", // 𡯵
+ 0x21bf6: "+\b\U00021bf6", // 𡯶
+ 0x21bf7: "+\b\U00021bf7", // 𡯷
+ 0x21bf8: "+\b\U00021bf8", // 𡯸
+ 0x21bf9: "+\t\U00021bf9", // 𡯹
+ 0x21bfa: "+\t\U00021bfa", // 𡯺
+ 0x21bfb: "+\t\U00021bfb", // 𡯻
+ 0x21bfc: "+\t\U00021bfc", // 𡯼
+ 0x21bfd: "+\t\U00021bfd", // 𡯽
+ 0x21bfe: "+\t\U00021bfe", // 𡯾
+ 0x21bff: "+\t\U00021bff", // 𡯿
+ 0x21c00: "+\t\U00021c00", // 𡰀
+ 0x21c01: "+\t\U00021c01", // 𡰁
+ 0x21c02: "+\t\U00021c02", // 𡰂
+ 0x21c03: "+\n\U00021c03", // 𡰃
+ 0x21c04: "+\n\U00021c04", // 𡰄
+ 0x21c05: "+\n\U00021c05", // 𡰅
+ 0x21c06: "+\n\U00021c06", // 𡰆
+ 0x21c07: "+\n\U00021c07", // 𡰇
+ 0x21c08: "+\n\U00021c08", // 𡰈
+ 0x21c09: "+\n\U00021c09", // 𡰉
+ 0x21c0a: "+\n\U00021c0a", // 𡰊
+ 0x21c0b: "+\v\U00021c0b", // 𡰋
+ 0x21c0c: "+\v\U00021c0c", // 𡰌
+ 0x21c0d: "+\v\U00021c0d", // 𡰍
+ 0x21c0e: "+\v\U00021c0e", // 𡰎
+ 0x21c0f: "+\v\U00021c0f", // 𡰏
+ 0x21c10: "+\f\U00021c10", // 𡰐
+ 0x21c11: "+\f\U00021c11", // 𡰑
+ 0x21c12: "+\f\U00021c12", // 𡰒
+ 0x21c13: "+\f\U00021c13", // 𡰓
+ 0x21c14: "+\f\U00021c14", // 𡰔
+ 0x21c15: "+\f\U00021c15", // 𡰕
+ 0x21c16: "+\r\U00021c16", // 𡰖
+ 0x21c17: "+\r\U00021c17", // 𡰗
+ 0x21c18: "+\r\U00021c18", // 𡰘
+ 0x21c19: "+\r\U00021c19", // 𡰙
+ 0x21c1a: "+\r\U00021c1a", // 𡰚
+ 0x21c1b: "+\x0e\U00021c1b", // 𡰛
+ 0x21c1c: "+\x0e\U00021c1c", // 𡰜
+ 0x21c1d: "+\x12\U00021c1d", // 𡰝
+ 0x21c1e: "+\x12\U00021c1e", // 𡰞
+ 0x21c1f: "+\x13\U00021c1f", // 𡰟
+ 0x21c20: "+\x13\U00021c20", // 𡰠
+ 0x21c21: "+\x16\U00021c21", // 𡰡
+ 0x21c22: "+\x16\U00021c22", // 𡰢
+ 0x21c23: ",\x00\U00021c23", // 𡰣
+ 0x21c24: ",\x02\U00021c24", // 𡰤
+ 0x21c25: ",\x02\U00021c25", // 𡰥
+ 0x21c26: ",\x02\U00021c26", // 𡰦
+ 0x21c27: ",\x02\U00021c27", // 𡰧
+ 0x21c28: ",\x02\U00021c28", // 𡰨
+ 0x21c29: ",\x03\U00021c29", // 𡰩
+ 0x21c2a: ",\x03\U00021c2a", // 𡰪
+ 0x21c2b: ",\x03\U00021c2b", // 𡰫
+ 0x21c2c: ",\x03\U00021c2c", // 𡰬
+ 0x21c2d: ",\x03\U00021c2d", // 𡰭
+ 0x21c2e: ",\x03\U00021c2e", // 𡰮
+ 0x21c2f: ",\x03\U00021c2f", // 𡰯
+ 0x21c30: ",\x03\U00021c30", // 𡰰
+ 0x21c31: ",\x03\U00021c31", // 𡰱
+ 0x21c32: ",\x03\U00021c32", // 𡰲
+ 0x21c33: ",\x03\U00021c33", // 𡰳
+ 0x21c34: ",\x02\U00021c34", // 𡰴
+ 0x21c35: ",\x04\U00021c35", // 𡰵
+ 0x21c36: ",\x04\U00021c36", // 𡰶
+ 0x21c37: ",\x04\U00021c37", // 𡰷
+ 0x21c38: ",\x04\U00021c38", // 𡰸
+ 0x21c39: ",\x04\U00021c39", // 𡰹
+ 0x21c3a: ",\x04\U00021c3a", // 𡰺
+ 0x21c3b: ",\x04\U00021c3b", // 𡰻
+ 0x21c3c: ",\x04\U00021c3c", // 𡰼
+ 0x21c3d: ",\x04\U00021c3d", // 𡰽
+ 0x21c3e: ",\x05\U00021c3e", // 𡰾
+ 0x21c3f: ",\x05\U00021c3f", // 𡰿
+ 0x21c40: ",\x05\U00021c40", // 𡱀
+ 0x21c41: ",\x05\U00021c41", // 𡱁
+ 0x21c42: ",\x05\U00021c42", // 𡱂
+ 0x21c43: ",\x05\U00021c43", // 𡱃
+ 0x21c44: ",\x05\U00021c44", // 𡱄
+ 0x21c45: ",\x05\U00021c45", // 𡱅
+ 0x21c46: ",\x05\U00021c46", // 𡱆
+ 0x21c47: ",\x05\U00021c47", // 𡱇
+ 0x21c48: ",\x05\U00021c48", // 𡱈
+ 0x21c49: ",\x05\U00021c49", // 𡱉
+ 0x21c4a: ",\x05\U00021c4a", // 𡱊
+ 0x21c4b: ",\x05\U00021c4b", // 𡱋
+ 0x21c4c: ",\x06\U00021c4c", // 𡱌
+ 0x21c4d: ",\x06\U00021c4d", // 𡱍
+ 0x21c4e: ",\x06\U00021c4e", // 𡱎
+ 0x21c4f: ",\x06\U00021c4f", // 𡱏
+ 0x21c50: ",\x06\U00021c50", // 𡱐
+ 0x21c51: ",\x06\U00021c51", // 𡱑
+ 0x21c52: ",\x06\U00021c52", // 𡱒
+ 0x21c53: ",\x06\U00021c53", // 𡱓
+ 0x21c54: ",\x06\U00021c54", // 𡱔
+ 0x21c55: ",\x06\U00021c55", // 𡱕
+ 0x21c56: ",\x06\U00021c56", // 𡱖
+ 0x21c57: ",\x06\U00021c57", // 𡱗
+ 0x21c58: ",\x06\U00021c58", // 𡱘
+ 0x21c59: ",\x06\U00021c59", // 𡱙
+ 0x21c5a: ",\x06\U00021c5a", // 𡱚
+ 0x21c5b: ",\x06\U00021c5b", // 𡱛
+ 0x21c5c: ",\x06\U00021c5c", // 𡱜
+ 0x21c5d: ",\x06\U00021c5d", // 𡱝
+ 0x21c5e: ",\x06\U00021c5e", // 𡱞
+ 0x21c5f: ",\x06\U00021c5f", // 𡱟
+ 0x21c60: ",\x06\U00021c60", // 𡱠
+ 0x21c61: ",\x06\U00021c61", // 𡱡
+ 0x21c62: ",\a\U00021c62", // 𡱢
+ 0x21c63: ",\a\U00021c63", // 𡱣
+ 0x21c64: ",\a\U00021c64", // 𡱤
+ 0x21c65: ",\a\U00021c65", // 𡱥
+ 0x21c66: ",\a\U00021c66", // 𡱦
+ 0x21c67: ",\a\U00021c67", // 𡱧
+ 0x21c68: ",\a\U00021c68", // 𡱨
+ 0x21c69: ",\a\U00021c69", // 𡱩
+ 0x21c6a: ",\a\U00021c6a", // 𡱪
+ 0x21c6b: ",\a\U00021c6b", // 𡱫
+ 0x21c6c: ",\a\U00021c6c", // 𡱬
+ 0x21c6d: ",\a\U00021c6d", // 𡱭
+ 0x21c6e: ",\a\U00021c6e", // 𡱮
+ 0x21c6f: ",\a\U00021c6f", // 𡱯
+ 0x21c70: ",\a\U00021c70", // 𡱰
+ 0x21c71: ",\a\U00021c71", // 𡱱
+ 0x21c72: ",\a\U00021c72", // 𡱲
+ 0x21c73: ",\a\U00021c73", // 𡱳
+ 0x21c74: ",\a\U00021c74", // 𡱴
+ 0x21c75: ",\a\U00021c75", // 𡱵
+ 0x21c76: ",\a\U00021c76", // 𡱶
+ 0x21c77: ",\a\U00021c77", // 𡱷
+ 0x21c78: ",\a\U00021c78", // 𡱸
+ 0x21c79: ",\a\U00021c79", // 𡱹
+ 0x21c7a: ",\b\U00021c7a", // 𡱺
+ 0x21c7b: ",\b\U00021c7b", // 𡱻
+ 0x21c7c: ",\b\U00021c7c", // 𡱼
+ 0x21c7d: ",\b\U00021c7d", // 𡱽
+ 0x21c7e: ",\b\U00021c7e", // 𡱾
+ 0x21c7f: ",\b\U00021c7f", // 𡱿
+ 0x21c80: ",\b\U00021c80", // 𡲀
+ 0x21c81: ",\b\U00021c81", // 𡲁
+ 0x21c82: ",\b\U00021c82", // 𡲂
+ 0x21c83: ",\b\U00021c83", // 𡲃
+ 0x21c84: ",\b\U00021c84", // 𡲄
+ 0x21c85: ",\b\U00021c85", // 𡲅
+ 0x21c86: ",\b\U00021c86", // 𡲆
+ 0x21c87: ",\b\U00021c87", // 𡲇
+ 0x21c88: ",\b\U00021c88", // 𡲈
+ 0x21c89: ",\b\U00021c89", // 𡲉
+ 0x21c8a: ",\b\U00021c8a", // 𡲊
+ 0x21c8b: ",\b\U00021c8b", // 𡲋
+ 0x21c8c: ",\b\U00021c8c", // 𡲌
+ 0x21c8d: ",\b\U00021c8d", // 𡲍
+ 0x21c8e: ",\b\U00021c8e", // 𡲎
+ 0x21c8f: ",\b\U00021c8f", // 𡲏
+ 0x21c90: ",\b\U00021c90", // 𡲐
+ 0x21c91: ",\b\U00021c91", // 𡲑
+ 0x21c92: ",\b\U00021c92", // 𡲒
+ 0x21c93: ",\b\U00021c93", // 𡲓
+ 0x21c94: ",\t\U00021c94", // 𡲔
+ 0x21c95: ",\t\U00021c95", // 𡲕
+ 0x21c96: ",\t\U00021c96", // 𡲖
+ 0x21c97: ",\t\U00021c97", // 𡲗
+ 0x21c98: ",\t\U00021c98", // 𡲘
+ 0x21c99: ",\t\U00021c99", // 𡲙
+ 0x21c9a: ",\t\U00021c9a", // 𡲚
+ 0x21c9b: ",\t\U00021c9b", // 𡲛
+ 0x21c9c: ",\t\U00021c9c", // 𡲜
+ 0x21c9d: ",\t\U00021c9d", // 𡲝
+ 0x21c9e: ",\t\U00021c9e", // 𡲞
+ 0x21c9f: ",\t\U00021c9f", // 𡲟
+ 0x21ca0: ",\t\U00021ca0", // 𡲠
+ 0x21ca1: ",\t\U00021ca1", // 𡲡
+ 0x21ca2: ",\t\U00021ca2", // 𡲢
+ 0x21ca3: ",\t\U00021ca3", // 𡲣
+ 0x21ca4: ",\t\U00021ca4", // 𡲤
+ 0x21ca5: ",\t\U00021ca5", // 𡲥
+ 0x21ca6: ",\t\U00021ca6", // 𡲦
+ 0x21ca7: ",\t\U00021ca7", // 𡲧
+ 0x21ca8: ",\t\U00021ca8", // 𡲨
+ 0x21ca9: ",\t\U00021ca9", // 𡲩
+ 0x21caa: ",\t\U00021caa", // 𡲪
+ 0x21cab: ",\t\U00021cab", // 𡲫
+ 0x21cac: ",\n\U00021cac", // 𡲬
+ 0x21cad: ",\n\U00021cad", // 𡲭
+ 0x21cae: ",\n\U00021cae", // 𡲮
+ 0x21caf: ",\n\U00021caf", // 𡲯
+ 0x21cb0: ",\n\U00021cb0", // 𡲰
+ 0x21cb1: ",\n\U00021cb1", // 𡲱
+ 0x21cb2: ",\n\U00021cb2", // 𡲲
+ 0x21cb3: ",\n\U00021cb3", // 𡲳
+ 0x21cb4: ",\n\U00021cb4", // 𡲴
+ 0x21cb5: ",\n\U00021cb5", // 𡲵
+ 0x21cb6: ",\n\U00021cb6", // 𡲶
+ 0x21cb7: ",\n\U00021cb7", // 𡲷
+ 0x21cb8: ",\n\U00021cb8", // 𡲸
+ 0x21cb9: ",\n\U00021cb9", // 𡲹
+ 0x21cba: ",\n\U00021cba", // 𡲺
+ 0x21cbb: ",\n\U00021cbb", // 𡲻
+ 0x21cbc: ",\n\U00021cbc", // 𡲼
+ 0x21cbd: ",\n\U00021cbd", // 𡲽
+ 0x21cbe: ",\n\U00021cbe", // 𡲾
+ 0x21cbf: ",\n\U00021cbf", // 𡲿
+ 0x21cc0: ",\n\U00021cc0", // 𡳀
+ 0x21cc1: ",\n\U00021cc1", // 𡳁
+ 0x21cc2: ",\n\U00021cc2", // 𡳂
+ 0x21cc3: ",\n\U00021cc3", // 𡳃
+ 0x21cc4: ",\v\U00021cc4", // 𡳄
+ 0x21cc5: ",\v\U00021cc5", // 𡳅
+ 0x21cc6: ",\v\U00021cc6", // 𡳆
+ 0x21cc7: ",\v\U00021cc7", // 𡳇
+ 0x21cc8: ",\v\U00021cc8", // 𡳈
+ 0x21cc9: ",\v\U00021cc9", // 𡳉
+ 0x21cca: ",\v\U00021cca", // 𡳊
+ 0x21ccb: ",\v\U00021ccb", // 𡳋
+ 0x21ccc: ",\v\U00021ccc", // 𡳌
+ 0x21ccd: ",\v\U00021ccd", // 𡳍
+ 0x21cce: ",\v\U00021cce", // 𡳎
+ 0x21ccf: ",\v\U00021ccf", // 𡳏
+ 0x21cd0: ",\f\U00021cd0", // 𡳐
+ 0x21cd1: ",\f\U00021cd1", // 𡳑
+ 0x21cd2: ",\f\U00021cd2", // 𡳒
+ 0x21cd3: ",\f\U00021cd3", // 𡳓
+ 0x21cd4: ",\f\U00021cd4", // 𡳔
+ 0x21cd5: ",\f\U00021cd5", // 𡳕
+ 0x21cd6: ",\f\U00021cd6", // 𡳖
+ 0x21cd7: ",\f\U00021cd7", // 𡳗
+ 0x21cd8: ",\f\U00021cd8", // 𡳘
+ 0x21cd9: ",\f\U00021cd9", // 𡳙
+ 0x21cda: ",\f\U00021cda", // 𡳚
+ 0x21cdb: ",\f\U00021cdb", // 𡳛
+ 0x21cdc: ",\f\U00021cdc", // 𡳜
+ 0x21cdd: ",\f\U00021cdd", // 𡳝
+ 0x21cde: ",\f\U00021cde", // 𡳞
+ 0x21cdf: ",\r\U00021cdf", // 𡳟
+ 0x21ce0: ",\r\U00021ce0", // 𡳠
+ 0x21ce1: ",\r\U00021ce1", // 𡳡
+ 0x21ce2: ",\r\U00021ce2", // 𡳢
+ 0x21ce3: ",\r\U00021ce3", // 𡳣
+ 0x21ce4: ",\r\U00021ce4", // 𡳤
+ 0x21ce5: ",\r\U00021ce5", // 𡳥
+ 0x21ce6: ",\r\U00021ce6", // 𡳦
+ 0x21ce7: ",\r\U00021ce7", // 𡳧
+ 0x21ce8: ",\x0e\U00021ce8", // 𡳨
+ 0x21ce9: ",\x0e\U00021ce9", // 𡳩
+ 0x21cea: ",\x0f\U00021cea", // 𡳪
+ 0x21ceb: ",\x0f\U00021ceb", // 𡳫
+ 0x21cec: ",\x10\U00021cec", // 𡳬
+ 0x21ced: ",\x10\U00021ced", // 𡳭
+ 0x21cee: ",\x10\U00021cee", // 𡳮
+ 0x21cef: ",\x10\U00021cef", // 𡳯
+ 0x21cf0: ",\x10\U00021cf0", // 𡳰
+ 0x21cf1: ",\x11\U00021cf1", // 𡳱
+ 0x21cf2: ",\x11\U00021cf2", // 𡳲
+ 0x21cf3: ",\x11\U00021cf3", // 𡳳
+ 0x21cf4: ",\x11\U00021cf4", // 𡳴
+ 0x21cf5: ",\x12\U00021cf5", // 𡳵
+ 0x21cf6: ",\x12\U00021cf6", // 𡳶
+ 0x21cf7: ",\x12\U00021cf7", // 𡳷
+ 0x21cf8: ",\x13\U00021cf8", // 𡳸
+ 0x21cf9: ",\x13\U00021cf9", // 𡳹
+ 0x21cfa: ",\x13\U00021cfa", // 𡳺
+ 0x21cfb: ",\x15\U00021cfb", // 𡳻
+ 0x21cfc: ",\x16\U00021cfc", // 𡳼
+ 0x21cfd: ",\x16\U00021cfd", // 𡳽
+ 0x21cfe: "-\x00\U00021cfe", // 𡳾
+ 0x21cff: "-\x02\U00021cff", // 𡳿
+ 0x21d00: "-\x03\U00021d00", // 𡴀
+ 0x21d01: "-\x03\U00021d01", // 𡴁
+ 0x21d02: "-\x03\U00021d02", // 𡴂
+ 0x21d03: "-\x03\U00021d03", // 𡴃
+ 0x21d04: "-\x03\U00021d04", // 𡴄
+ 0x21d05: "-\x03\U00021d05", // 𡴅
+ 0x21d06: "-\x04\U00021d06", // 𡴆
+ 0x21d07: "-\x04\U00021d07", // 𡴇
+ 0x21d08: "-\x04\U00021d08", // 𡴈
+ 0x21d09: "-\x04\U00021d09", // 𡴉
+ 0x21d0a: "-\x04\U00021d0a", // 𡴊
+ 0x21d0b: "-\x05\U00021d0b", // 𡴋
+ 0x21d0c: "-\x05\U00021d0c", // 𡴌
+ 0x21d0d: "-\x05\U00021d0d", // 𡴍
+ 0x21d0e: "-\x06\U00021d0e", // 𡴎
+ 0x21d0f: "-\x06\U00021d0f", // 𡴏
+ 0x21d10: "-\x06\U00021d10", // 𡴐
+ 0x21d11: "-\x06\U00021d11", // 𡴑
+ 0x21d12: "-\x06\U00021d12", // 𡴒
+ 0x21d13: "-\x06\U00021d13", // 𡴓
+ 0x21d14: "-\x06\U00021d14", // 𡴔
+ 0x21d15: "-\a\U00021d15", // 𡴕
+ 0x21d16: "-\a\U00021d16", // 𡴖
+ 0x21d17: "-\a\U00021d17", // 𡴗
+ 0x21d18: "-\a\U00021d18", // 𡴘
+ 0x21d19: "-\a\U00021d19", // 𡴙
+ 0x21d1a: "-\a\U00021d1a", // 𡴚
+ 0x21d1b: "-\b\U00021d1b", // 𡴛
+ 0x21d1c: "-\b\U00021d1c", // 𡴜
+ 0x21d1d: "-\t\U00021d1d", // 𡴝
+ 0x21d1e: "-\t\U00021d1e", // 𡴞
+ 0x21d1f: "-\t\U00021d1f", // 𡴟
+ 0x21d20: "-\t\U00021d20", // 𡴠
+ 0x21d21: "-\t\U00021d21", // 𡴡
+ 0x21d22: "-\t\U00021d22", // 𡴢
+ 0x21d23: "-\t\U00021d23", // 𡴣
+ 0x21d24: "-\n\U00021d24", // 𡴤
+ 0x21d25: "-\n\U00021d25", // 𡴥
+ 0x21d26: "-\f\U00021d26", // 𡴦
+ 0x21d27: "-\f\U00021d27", // 𡴧
+ 0x21d28: "-\f\U00021d28", // 𡴨
+ 0x21d29: "-\f\U00021d29", // 𡴩
+ 0x21d2a: "-\x0f\U00021d2a", // 𡴪
+ 0x21d2b: "-\x12\U00021d2b", // 𡴫
+ 0x21d2c: "-\x13\U00021d2c", // 𡴬
+ 0x21d2d: ".\x01\U00021d2d", // 𡴭
+ 0x21d2e: ".\x01\U00021d2e", // 𡴮
+ 0x21d2f: ".\x01\U00021d2f", // 𡴯
+ 0x21d30: ".\x02\U00021d30", // 𡴰
+ 0x21d31: ".\x02\U00021d31", // 𡴱
+ 0x21d32: ".\x02\U00021d32", // 𡴲
+ 0x21d33: ".\x02\U00021d33", // 𡴳
+ 0x21d34: ".\x02\U00021d34", // 𡴴
+ 0x21d35: ".\x02\U00021d35", // 𡴵
+ 0x21d36: ".\x02\U00021d36", // 𡴶
+ 0x21d37: ".\x02\U00021d37", // 𡴷
+ 0x21d38: ".\x02\U00021d38", // 𡴸
+ 0x21d39: ".\x02\U00021d39", // 𡴹
+ 0x21d3a: ".\x02\U00021d3a", // 𡴺
+ 0x21d3b: ".\x02\U00021d3b", // 𡴻
+ 0x21d3c: ".\x02\U00021d3c", // 𡴼
+ 0x21d3d: ".\x02\U00021d3d", // 𡴽
+ 0x21d3e: ".\x03\U00021d3e", // 𡴾
+ 0x21d3f: ".\x03\U00021d3f", // 𡴿
+ 0x21d40: ".\x03\U00021d40", // 𡵀
+ 0x21d41: ".\x03\U00021d41", // 𡵁
+ 0x21d42: ".\x03\U00021d42", // 𡵂
+ 0x21d43: ".\x03\U00021d43", // 𡵃
+ 0x21d44: ".\x03\U00021d44", // 𡵄
+ 0x21d45: ".\x03\U00021d45", // 𡵅
+ 0x21d46: ".\x03\U00021d46", // 𡵆
+ 0x21d47: ".\x03\U00021d47", // 𡵇
+ 0x21d48: ".\x03\U00021d48", // 𡵈
+ 0x21d49: ".\x03\U00021d49", // 𡵉
+ 0x21d4a: ".\x03\U00021d4a", // 𡵊
+ 0x21d4b: ".\x03\U00021d4b", // 𡵋
+ 0x21d4c: ".\x03\U00021d4c", // 𡵌
+ 0x21d4d: ".\x03\U00021d4d", // 𡵍
+ 0x21d4e: ".\x03\U00021d4e", // 𡵎
+ 0x21d4f: ".\x03\U00021d4f", // 𡵏
+ 0x21d50: ".\x03\U00021d50", // 𡵐
+ 0x21d51: ".\x03\U00021d51", // 𡵑
+ 0x21d52: ".\x03\U00021d52", // 𡵒
+ 0x21d53: ".\x04\U00021d53", // 𡵓
+ 0x21d54: ".\x04\U00021d54", // 𡵔
+ 0x21d55: ".\x04\U00021d55", // 𡵕
+ 0x21d56: ".\x04\U00021d56", // 𡵖
+ 0x21d57: ".\x04\U00021d57", // 𡵗
+ 0x21d58: ".\x04\U00021d58", // 𡵘
+ 0x21d59: ".\x04\U00021d59", // 𡵙
+ 0x21d5a: ".\x04\U00021d5a", // 𡵚
+ 0x21d5b: ".\x04\U00021d5b", // 𡵛
+ 0x21d5c: ".\x04\U00021d5c", // 𡵜
+ 0x21d5d: ".\x04\U00021d5d", // 𡵝
+ 0x21d5e: ".\x04\U00021d5e", // 𡵞
+ 0x21d5f: ".\x04\U00021d5f", // 𡵟
+ 0x21d60: ".\x04\U00021d60", // 𡵠
+ 0x21d61: ".\x04\U00021d61", // 𡵡
+ 0x21d62: ".\x04\U00021d62", // 𡵢
+ 0x21d63: ".\x04\U00021d63", // 𡵣
+ 0x21d64: ".\x04\U00021d64", // 𡵤
+ 0x21d65: ".\x04\U00021d65", // 𡵥
+ 0x21d66: ".\x04\U00021d66", // 𡵦
+ 0x21d67: ".\x04\U00021d67", // 𡵧
+ 0x21d68: ".\x04\U00021d68", // 𡵨
+ 0x21d69: ".\x04\U00021d69", // 𡵩
+ 0x21d6a: ".\x04\U00021d6a", // 𡵪
+ 0x21d6b: ".\x04\U00021d6b", // 𡵫
+ 0x21d6c: ".\x04\U00021d6c", // 𡵬
+ 0x21d6d: ".\x04\U00021d6d", // 𡵭
+ 0x21d6e: ".\x04\U00021d6e", // 𡵮
+ 0x21d6f: ".\x04\U00021d6f", // 𡵯
+ 0x21d70: ".\x04\U00021d70", // 𡵰
+ 0x21d71: ".\x04\U00021d71", // 𡵱
+ 0x21d72: ".\x04\U00021d72", // 𡵲
+ 0x21d73: ".\x04\U00021d73", // 𡵳
+ 0x21d74: ".\x04\U00021d74", // 𡵴
+ 0x21d75: ".\x04\U00021d75", // 𡵵
+ 0x21d76: ".\x04\U00021d76", // 𡵶
+ 0x21d77: ".\x04\U00021d77", // 𡵷
+ 0x21d78: ".\x04\U00021d78", // 𡵸
+ 0x21d79: ".\x04\U00021d79", // 𡵹
+ 0x21d7a: ".\x04\U00021d7a", // 𡵺
+ 0x21d7b: ".\x04\U00021d7b", // 𡵻
+ 0x21d7c: ".\x04\U00021d7c", // 𡵼
+ 0x21d7d: ".\x04\U00021d7d", // 𡵽
+ 0x21d7e: ".\x04\U00021d7e", // 𡵾
+ 0x21d7f: ".\x04\U00021d7f", // 𡵿
+ 0x21d80: ".\x04\U00021d80", // 𡶀
+ 0x21d81: ".\x04\U00021d81", // 𡶁
+ 0x21d82: ".\x04\U00021d82", // 𡶂
+ 0x21d83: ".\x05\U00021d83", // 𡶃
+ 0x21d84: ".\x05\U00021d84", // 𡶄
+ 0x21d85: ".\x05\U00021d85", // 𡶅
+ 0x21d86: ".\x05\U00021d86", // 𡶆
+ 0x21d87: ".\x05\U00021d87", // 𡶇
+ 0x21d88: ".\x05\U00021d88", // 𡶈
+ 0x21d89: ".\x05\U00021d89", // 𡶉
+ 0x21d8a: ".\x05\U00021d8a", // 𡶊
+ 0x21d8b: ".\x05\U00021d8b", // 𡶋
+ 0x21d8c: ".\x05\U00021d8c", // 𡶌
+ 0x21d8d: ".\x05\U00021d8d", // 𡶍
+ 0x21d8e: ".\x05\U00021d8e", // 𡶎
+ 0x21d8f: ".\x05\U00021d8f", // 𡶏
+ 0x21d90: ".\x05\U00021d90", // 𡶐
+ 0x21d91: ".\x05\U00021d91", // 𡶑
+ 0x21d92: ".\x05\U00021d92", // 𡶒
+ 0x21d93: ".\x05\U00021d93", // 𡶓
+ 0x21d94: ".\x05\U00021d94", // 𡶔
+ 0x21d95: ".\x05\U00021d95", // 𡶕
+ 0x21d96: ".\x05\U00021d96", // 𡶖
+ 0x21d97: ".\x05\U00021d97", // 𡶗
+ 0x21d98: ".\x05\U00021d98", // 𡶘
+ 0x21d99: ".\x05\U00021d99", // 𡶙
+ 0x21d9a: ".\x05\U00021d9a", // 𡶚
+ 0x21d9b: ".\x05\U00021d9b", // 𡶛
+ 0x21d9c: ".\x05\U00021d9c", // 𡶜
+ 0x21d9d: ".\x05\U00021d9d", // 𡶝
+ 0x21d9e: ".\x05\U00021d9e", // 𡶞
+ 0x21d9f: ".\x05\U00021d9f", // 𡶟
+ 0x21da0: ".\x05\U00021da0", // 𡶠
+ 0x21da1: ".\x05\U00021da1", // 𡶡
+ 0x21da2: ".\x05\U00021da2", // 𡶢
+ 0x21da3: ".\x05\U00021da3", // 𡶣
+ 0x21da4: "e\x03\U00021da4", // 𡶤
+ 0x21da5: ".\x05\U00021da5", // 𡶥
+ 0x21da6: ".\x05\U00021da6", // 𡶦
+ 0x21da7: ".\x05\U00021da7", // 𡶧
+ 0x21da8: ".\x05\U00021da8", // 𡶨
+ 0x21da9: ".\x05\U00021da9", // 𡶩
+ 0x21daa: ".\x05\U00021daa", // 𡶪
+ 0x21dab: ".\x06\U00021dab", // 𡶫
+ 0x21dac: ".\x06\U00021dac", // 𡶬
+ 0x21dad: ".\x06\U00021dad", // 𡶭
+ 0x21dae: ".\x06\U00021dae", // 𡶮
+ 0x21daf: ".\x06\U00021daf", // 𡶯
+ 0x21db0: ".\x06\U00021db0", // 𡶰
+ 0x21db1: ".\x06\U00021db1", // 𡶱
+ 0x21db2: ".\x06\U00021db2", // 𡶲
+ 0x21db3: ".\x06\U00021db3", // 𡶳
+ 0x21db4: ".\x06\U00021db4", // 𡶴
+ 0x21db5: ".\x06\U00021db5", // 𡶵
+ 0x21db6: ".\x06\U00021db6", // 𡶶
+ 0x21db7: ".\x06\U00021db7", // 𡶷
+ 0x21db8: ".\x06\U00021db8", // 𡶸
+ 0x21db9: ".\x06\U00021db9", // 𡶹
+ 0x21dba: ".\x06\U00021dba", // 𡶺
+ 0x21dbb: ".\x06\U00021dbb", // 𡶻
+ 0x21dbc: ".\x06\U00021dbc", // 𡶼
+ 0x21dbd: ".\x06\U00021dbd", // 𡶽
+ 0x21dbe: ".\x06\U00021dbe", // 𡶾
+ 0x21dbf: ".\x06\U00021dbf", // 𡶿
+ 0x21dc0: ".\x06\U00021dc0", // 𡷀
+ 0x21dc1: ".\x06\U00021dc1", // 𡷁
+ 0x21dc2: ".\x06\U00021dc2", // 𡷂
+ 0x21dc3: ".\x06\U00021dc3", // 𡷃
+ 0x21dc4: ".\x06\U00021dc4", // 𡷄
+ 0x21dc5: ".\x06\U00021dc5", // 𡷅
+ 0x21dc6: ".\x06\U00021dc6", // 𡷆
+ 0x21dc7: ".\x06\U00021dc7", // 𡷇
+ 0x21dc8: ".\x06\U00021dc8", // 𡷈
+ 0x21dc9: ".\x06\U00021dc9", // 𡷉
+ 0x21dca: ".\x06\U00021dca", // 𡷊
+ 0x21dcb: ".\x06\U00021dcb", // 𡷋
+ 0x21dcc: ".\x06\U00021dcc", // 𡷌
+ 0x21dcd: ".\x06\U00021dcd", // 𡷍
+ 0x21dce: ".\x06\U00021dce", // 𡷎
+ 0x21dcf: ".\x06\U00021dcf", // 𡷏
+ 0x21dd0: ".\x06\U00021dd0", // 𡷐
+ 0x21dd1: ".\x06\U00021dd1", // 𡷑
+ 0x21dd2: ".\x06\U00021dd2", // 𡷒
+ 0x21dd3: ".\x06\U00021dd3", // 𡷓
+ 0x21dd4: ".\x06\U00021dd4", // 𡷔
+ 0x21dd5: ".\a\U00021dd5", // 𡷕
+ 0x21dd6: ".\a\U00021dd6", // 𡷖
+ 0x21dd7: ".\a\U00021dd7", // 𡷗
+ 0x21dd8: ".\a\U00021dd8", // 𡷘
+ 0x21dd9: ".\a\U00021dd9", // 𡷙
+ 0x21dda: ".\a\U00021dda", // 𡷚
+ 0x21ddb: ".\a\U00021ddb", // 𡷛
+ 0x21ddc: ".\a\U00021ddc", // 𡷜
+ 0x21ddd: ".\a\U00021ddd", // 𡷝
+ 0x21dde: ".\a\U00021dde", // 𡷞
+ 0x21ddf: ".\a\U00021ddf", // 𡷟
+ 0x21de0: ".\a\U00021de0", // 𡷠
+ 0x21de1: ".\a\U00021de1", // 𡷡
+ 0x21de2: ".\a\U00021de2", // 𡷢
+ 0x21de3: ".\a\U00021de3", // 𡷣
+ 0x21de4: ".\a\U00021de4", // 𡷤
+ 0x21de5: ".\a\U00021de5", // 𡷥
+ 0x21de6: ".\a\U00021de6", // 𡷦
+ 0x21de7: ".\a\U00021de7", // 𡷧
+ 0x21de8: ".\a\U00021de8", // 𡷨
+ 0x21de9: ".\a\U00021de9", // 𡷩
+ 0x21dea: ".\a\U00021dea", // 𡷪
+ 0x21deb: ".\a\U00021deb", // 𡷫
+ 0x21dec: ".\a\U00021dec", // 𡷬
+ 0x21ded: ".\a\U00021ded", // 𡷭
+ 0x21dee: ".\a\U00021dee", // 𡷮
+ 0x21def: ".\a\U00021def", // 𡷯
+ 0x21df0: ".\a\U00021df0", // 𡷰
+ 0x21df1: ".\a\U00021df1", // 𡷱
+ 0x21df2: ".\a\U00021df2", // 𡷲
+ 0x21df3: ".\a\U00021df3", // 𡷳
+ 0x21df4: ".\a\U00021df4", // 𡷴
+ 0x21df5: ".\a\U00021df5", // 𡷵
+ 0x21df6: ".\a\U00021df6", // 𡷶
+ 0x21df7: ".\a\U00021df7", // 𡷷
+ 0x21df8: ".\a\U00021df8", // 𡷸
+ 0x21df9: ".\a\U00021df9", // 𡷹
+ 0x21dfa: ".\a\U00021dfa", // 𡷺
+ 0x21dfb: ".\a\U00021dfb", // 𡷻
+ 0x21dfc: ".\a\U00021dfc", // 𡷼
+ 0x21dfd: ".\a\U00021dfd", // 𡷽
+ 0x21dfe: ".\a\U00021dfe", // 𡷾
+ 0x21dff: ".\a\U00021dff", // 𡷿
+ 0x21e00: ".\a\U00021e00", // 𡸀
+ 0x21e01: ".\a\U00021e01", // 𡸁
+ 0x21e02: ".\a\U00021e02", // 𡸂
+ 0x21e03: ".\a\U00021e03", // 𡸃
+ 0x21e04: ".\a\U00021e04", // 𡸄
+ 0x21e05: ".\a\U00021e05", // 𡸅
+ 0x21e06: ".\a\U00021e06", // 𡸆
+ 0x21e07: ".\a\U00021e07", // 𡸇
+ 0x21e08: ".\a\U00021e08", // 𡸈
+ 0x21e09: ".\a\U00021e09", // 𡸉
+ 0x21e0a: ".\a\U00021e0a", // 𡸊
+ 0x21e0b: ".\a\U00021e0b", // 𡸋
+ 0x21e0c: ".\a\U00021e0c", // 𡸌
+ 0x21e0d: ".\a\U00021e0d", // 𡸍
+ 0x21e0e: ".\a\U00021e0e", // 𡸎
+ 0x21e0f: ".\a\U00021e0f", // 𡸏
+ 0x21e10: ".\a\U00021e10", // 𡸐
+ 0x21e11: ".\b\U00021e11", // 𡸑
+ 0x21e12: ".\b\U00021e12", // 𡸒
+ 0x21e13: ".\b\U00021e13", // 𡸓
+ 0x21e14: ".\b\U00021e14", // 𡸔
+ 0x21e15: ".\b\U00021e15", // 𡸕
+ 0x21e16: ".\b\U00021e16", // 𡸖
+ 0x21e17: ".\b\U00021e17", // 𡸗
+ 0x21e18: ".\b\U00021e18", // 𡸘
+ 0x21e19: ".\b\U00021e19", // 𡸙
+ 0x21e1a: ".\b\U00021e1a", // 𡸚
+ 0x21e1b: ".\b\U00021e1b", // 𡸛
+ 0x21e1c: ".\b\U00021e1c", // 𡸜
+ 0x21e1d: ".\b\U00021e1d", // 𡸝
+ 0x21e1e: ".\b\U00021e1e", // 𡸞
+ 0x21e1f: ".\b\U00021e1f", // 𡸟
+ 0x21e20: ".\b\U00021e20", // 𡸠
+ 0x21e21: ".\b\U00021e21", // 𡸡
+ 0x21e22: ".\b\U00021e22", // 𡸢
+ 0x21e23: ".\b\U00021e23", // 𡸣
+ 0x21e24: ".\b\U00021e24", // 𡸤
+ 0x21e25: ".\b\U00021e25", // 𡸥
+ 0x21e26: ".\b\U00021e26", // 𡸦
+ 0x21e27: ".\b\U00021e27", // 𡸧
+ 0x21e28: ".\b\U00021e28", // 𡸨
+ 0x21e29: ".\b\U00021e29", // 𡸩
+ 0x21e2a: ".\b\U00021e2a", // 𡸪
+ 0x21e2b: ".\b\U00021e2b", // 𡸫
+ 0x21e2c: ".\b\U00021e2c", // 𡸬
+ 0x21e2d: ".\b\U00021e2d", // 𡸭
+ 0x21e2e: ".\b\U00021e2e", // 𡸮
+ 0x21e2f: ".\b\U00021e2f", // 𡸯
+ 0x21e30: ".\b\U00021e30", // 𡸰
+ 0x21e31: ".\b\U00021e31", // 𡸱
+ 0x21e32: ".\b\U00021e32", // 𡸲
+ 0x21e33: ".\b\U00021e33", // 𡸳
+ 0x21e34: ".\b\U00021e34", // 𡸴
+ 0x21e35: ".\b\U00021e35", // 𡸵
+ 0x21e36: ".\b\U00021e36", // 𡸶
+ 0x21e37: ".\b\U00021e37", // 𡸷
+ 0x21e38: ".\b\U00021e38", // 𡸸
+ 0x21e39: ".\b\U00021e39", // 𡸹
+ 0x21e3a: ".\b\U00021e3a", // 𡸺
+ 0x21e3b: ".\b\U00021e3b", // 𡸻
+ 0x21e3c: ".\b\U00021e3c", // 𡸼
+ 0x21e3d: ".\b\U00021e3d", // 𡸽
+ 0x21e3e: ".\b\U00021e3e", // 𡸾
+ 0x21e3f: ".\b\U00021e3f", // 𡸿
+ 0x21e40: ".\b\U00021e40", // 𡹀
+ 0x21e41: ".\b\U00021e41", // 𡹁
+ 0x21e42: ".\b\U00021e42", // 𡹂
+ 0x21e43: ".\b\U00021e43", // 𡹃
+ 0x21e44: ".\b\U00021e44", // 𡹄
+ 0x21e45: ".\b\U00021e45", // 𡹅
+ 0x21e46: ".\b\U00021e46", // 𡹆
+ 0x21e47: ".\b\U00021e47", // 𡹇
+ 0x21e48: ".\b\U00021e48", // 𡹈
+ 0x21e49: ".\b\U00021e49", // 𡹉
+ 0x21e4a: ".\b\U00021e4a", // 𡹊
+ 0x21e4b: ".\b\U00021e4b", // 𡹋
+ 0x21e4c: ".\b\U00021e4c", // 𡹌
+ 0x21e4d: ".\b\U00021e4d", // 𡹍
+ 0x21e4e: ".\b\U00021e4e", // 𡹎
+ 0x21e4f: ".\b\U00021e4f", // 𡹏
+ 0x21e50: ".\b\U00021e50", // 𡹐
+ 0x21e51: ".\b\U00021e51", // 𡹑
+ 0x21e52: ".\b\U00021e52", // 𡹒
+ 0x21e53: ".\b\U00021e53", // 𡹓
+ 0x21e54: ".\b\U00021e54", // 𡹔
+ 0x21e55: ".\b\U00021e55", // 𡹕
+ 0x21e56: ".\b\U00021e56", // 𡹖
+ 0x21e57: ".\b\U00021e57", // 𡹗
+ 0x21e58: ".\b\U00021e58", // 𡹘
+ 0x21e59: ".\b\U00021e59", // 𡹙
+ 0x21e5a: ".\b\U00021e5a", // 𡹚
+ 0x21e5b: ".\b\U00021e5b", // 𡹛
+ 0x21e5c: ".\b\U00021e5c", // 𡹜
+ 0x21e5d: ".\b\U00021e5d", // 𡹝
+ 0x21e5e: ".\b\U00021e5e", // 𡹞
+ 0x21e5f: ".\b\U00021e5f", // 𡹟
+ 0x21e60: ".\b\U00021e60", // 𡹠
+ 0x21e61: ".\b\U00021e61", // 𡹡
+ 0x21e62: ".\b\U00021e62", // 𡹢
+ 0x21e63: ".\b\U00021e63", // 𡹣
+ 0x21e64: ".\b\U00021e64", // 𡹤
+ 0x21e65: ".\b\U00021e65", // 𡹥
+ 0x21e66: ".\b\U00021e66", // 𡹦
+ 0x21e67: ".\b\U00021e67", // 𡹧
+ 0x21e68: ".\b\U00021e68", // 𡹨
+ 0x21e69: ".\b\U00021e69", // 𡹩
+ 0x21e6a: ".\t\U00021e6a", // 𡹪
+ 0x21e6b: ".\t\U00021e6b", // 𡹫
+ 0x21e6c: ".\t\U00021e6c", // 𡹬
+ 0x21e6d: ".\t\U00021e6d", // 𡹭
+ 0x21e6e: ".\t\U00021e6e", // 𡹮
+ 0x21e6f: ".\t\U00021e6f", // 𡹯
+ 0x21e70: ".\t\U00021e70", // 𡹰
+ 0x21e71: ".\t\U00021e71", // 𡹱
+ 0x21e72: ".\t\U00021e72", // 𡹲
+ 0x21e73: ".\t\U00021e73", // 𡹳
+ 0x21e74: ".\t\U00021e74", // 𡹴
+ 0x21e75: ".\t\U00021e75", // 𡹵
+ 0x21e76: ".\t\U00021e76", // 𡹶
+ 0x21e77: ".\t\U00021e77", // 𡹷
+ 0x21e78: ".\t\U00021e78", // 𡹸
+ 0x21e79: ".\t\U00021e79", // 𡹹
+ 0x21e7a: ".\t\U00021e7a", // 𡹺
+ 0x21e7b: ".\t\U00021e7b", // 𡹻
+ 0x21e7c: ".\t\U00021e7c", // 𡹼
+ 0x21e7d: ".\t\U00021e7d", // 𡹽
+ 0x21e7e: ".\t\U00021e7e", // 𡹾
+ 0x21e7f: ".\t\U00021e7f", // 𡹿
+ 0x21e80: ".\t\U00021e80", // 𡺀
+ 0x21e81: ".\t\U00021e81", // 𡺁
+ 0x21e82: ".\t\U00021e82", // 𡺂
+ 0x21e83: ".\t\U00021e83", // 𡺃
+ 0x21e84: ".\t\U00021e84", // 𡺄
+ 0x21e85: ".\t\U00021e85", // 𡺅
+ 0x21e86: ".\t\U00021e86", // 𡺆
+ 0x21e87: ".\t\U00021e87", // 𡺇
+ 0x21e88: ".\t\U00021e88", // 𡺈
+ 0x21e89: ".\t\U00021e89", // 𡺉
+ 0x21e8a: ".\t\U00021e8a", // 𡺊
+ 0x21e8b: ".\t\U00021e8b", // 𡺋
+ 0x21e8c: ".\t\U00021e8c", // 𡺌
+ 0x21e8d: ".\t\U00021e8d", // 𡺍
+ 0x21e8e: ".\t\U00021e8e", // 𡺎
+ 0x21e8f: ".\t\U00021e8f", // 𡺏
+ 0x21e90: ".\t\U00021e90", // 𡺐
+ 0x21e91: ".\t\U00021e91", // 𡺑
+ 0x21e92: ".\t\U00021e92", // 𡺒
+ 0x21e93: ".\t\U00021e93", // 𡺓
+ 0x21e94: ".\t\U00021e94", // 𡺔
+ 0x21e95: ".\t\U00021e95", // 𡺕
+ 0x21e96: ".\t\U00021e96", // 𡺖
+ 0x21e97: ".\t\U00021e97", // 𡺗
+ 0x21e98: ".\t\U00021e98", // 𡺘
+ 0x21e99: ".\t\U00021e99", // 𡺙
+ 0x21e9a: ".\t\U00021e9a", // 𡺚
+ 0x21e9b: ".\t\U00021e9b", // 𡺛
+ 0x21e9c: ".\t\U00021e9c", // 𡺜
+ 0x21e9d: ".\t\U00021e9d", // 𡺝
+ 0x21e9e: ".\t\U00021e9e", // 𡺞
+ 0x21e9f: ".\t\U00021e9f", // 𡺟
+ 0x21ea0: ".\t\U00021ea0", // 𡺠
+ 0x21ea1: ".\t\U00021ea1", // 𡺡
+ 0x21ea2: ".\t\U00021ea2", // 𡺢
+ 0x21ea3: ".\t\U00021ea3", // 𡺣
+ 0x21ea4: ".\t\U00021ea4", // 𡺤
+ 0x21ea5: ".\t\U00021ea5", // 𡺥
+ 0x21ea6: ".\t\U00021ea6", // 𡺦
+ 0x21ea7: ".\t\U00021ea7", // 𡺧
+ 0x21ea8: ".\t\U00021ea8", // 𡺨
+ 0x21ea9: ".\t\U00021ea9", // 𡺩
+ 0x21eaa: ".\n\U00021eaa", // 𡺪
+ 0x21eab: ".\n\U00021eab", // 𡺫
+ 0x21eac: ".\n\U00021eac", // 𡺬
+ 0x21ead: ".\n\U00021ead", // 𡺭
+ 0x21eae: ".\n\U00021eae", // 𡺮
+ 0x21eaf: ".\n\U00021eaf", // 𡺯
+ 0x21eb0: ".\n\U00021eb0", // 𡺰
+ 0x21eb1: ".\n\U00021eb1", // 𡺱
+ 0x21eb2: ".\n\U00021eb2", // 𡺲
+ 0x21eb3: ".\n\U00021eb3", // 𡺳
+ 0x21eb4: ".\n\U00021eb4", // 𡺴
+ 0x21eb5: ".\n\U00021eb5", // 𡺵
+ 0x21eb6: ".\n\U00021eb6", // 𡺶
+ 0x21eb7: ".\n\U00021eb7", // 𡺷
+ 0x21eb8: ".\n\U00021eb8", // 𡺸
+ 0x21eb9: ".\n\U00021eb9", // 𡺹
+ 0x21eba: ".\n\U00021eba", // 𡺺
+ 0x21ebb: ".\n\U00021ebb", // 𡺻
+ 0x21ebc: ".\n\U00021ebc", // 𡺼
+ 0x21ebd: ".\n\U00021ebd", // 𡺽
+ 0x21ebe: ".\n\U00021ebe", // 𡺾
+ 0x21ebf: ".\n\U00021ebf", // 𡺿
+ 0x21ec0: ".\n\U00021ec0", // 𡻀
+ 0x21ec1: ".\n\U00021ec1", // 𡻁
+ 0x21ec2: ".\n\U00021ec2", // 𡻂
+ 0x21ec3: ".\n\U00021ec3", // 𡻃
+ 0x21ec4: ".\n\U00021ec4", // 𡻄
+ 0x21ec5: ".\n\U00021ec5", // 𡻅
+ 0x21ec6: ".\n\U00021ec6", // 𡻆
+ 0x21ec7: ".\n\U00021ec7", // 𡻇
+ 0x21ec8: ".\n\U00021ec8", // 𡻈
+ 0x21ec9: ".\n\U00021ec9", // 𡻉
+ 0x21eca: ".\n\U00021eca", // 𡻊
+ 0x21ecb: ".\n\U00021ecb", // 𡻋
+ 0x21ecc: ".\n\U00021ecc", // 𡻌
+ 0x21ecd: ".\n\U00021ecd", // 𡻍
+ 0x21ece: ".\n\U00021ece", // 𡻎
+ 0x21ecf: ".\n\U00021ecf", // 𡻏
+ 0x21ed0: ".\n\U00021ed0", // 𡻐
+ 0x21ed1: ".\n\U00021ed1", // 𡻑
+ 0x21ed2: ".\n\U00021ed2", // 𡻒
+ 0x21ed3: ".\n\U00021ed3", // 𡻓
+ 0x21ed4: ".\n\U00021ed4", // 𡻔
+ 0x21ed5: ".\n\U00021ed5", // 𡻕
+ 0x21ed6: ".\n\U00021ed6", // 𡻖
+ 0x21ed7: ".\n\U00021ed7", // 𡻗
+ 0x21ed8: ".\v\U00021ed8", // 𡻘
+ 0x21ed9: ".\v\U00021ed9", // 𡻙
+ 0x21eda: ".\v\U00021eda", // 𡻚
+ 0x21edb: ".\v\U00021edb", // 𡻛
+ 0x21edc: ".\v\U00021edc", // 𡻜
+ 0x21edd: ".\v\U00021edd", // 𡻝
+ 0x21ede: ".\v\U00021ede", // 𡻞
+ 0x21edf: ".\v\U00021edf", // 𡻟
+ 0x21ee0: ".\v\U00021ee0", // 𡻠
+ 0x21ee1: ".\v\U00021ee1", // 𡻡
+ 0x21ee2: ".\v\U00021ee2", // 𡻢
+ 0x21ee3: ".\v\U00021ee3", // 𡻣
+ 0x21ee4: ".\v\U00021ee4", // 𡻤
+ 0x21ee5: ".\v\U00021ee5", // 𡻥
+ 0x21ee6: ".\v\U00021ee6", // 𡻦
+ 0x21ee7: ".\v\U00021ee7", // 𡻧
+ 0x21ee8: ".\v\U00021ee8", // 𡻨
+ 0x21ee9: ".\v\U00021ee9", // 𡻩
+ 0x21eea: ".\v\U00021eea", // 𡻪
+ 0x21eeb: ".\v\U00021eeb", // 𡻫
+ 0x21eec: ".\v\U00021eec", // 𡻬
+ 0x21eed: ".\v\U00021eed", // 𡻭
+ 0x21eee: ".\v\U00021eee", // 𡻮
+ 0x21eef: ".\v\U00021eef", // 𡻯
+ 0x21ef0: ".\v\U00021ef0", // 𡻰
+ 0x21ef1: ".\v\U00021ef1", // 𡻱
+ 0x21ef2: ".\v\U00021ef2", // 𡻲
+ 0x21ef3: ".\v\U00021ef3", // 𡻳
+ 0x21ef4: ".\v\U00021ef4", // 𡻴
+ 0x21ef5: ".\v\U00021ef5", // 𡻵
+ 0x21ef6: ".\v\U00021ef6", // 𡻶
+ 0x21ef7: ".\v\U00021ef7", // 𡻷
+ 0x21ef8: ".\v\U00021ef8", // 𡻸
+ 0x21ef9: ".\v\U00021ef9", // 𡻹
+ 0x21efa: ".\v\U00021efa", // 𡻺
+ 0x21efb: ".\v\U00021efb", // 𡻻
+ 0x21efc: ".\v\U00021efc", // 𡻼
+ 0x21efd: ".\v\U00021efd", // 𡻽
+ 0x21efe: ".\v\U00021efe", // 𡻾
+ 0x21eff: ".\v\U00021eff", // 𡻿
+ 0x21f00: ".\v\U00021f00", // 𡼀
+ 0x21f01: ".\v\U00021f01", // 𡼁
+ 0x21f02: ".\v\U00021f02", // 𡼂
+ 0x21f03: ".\v\U00021f03", // 𡼃
+ 0x21f04: ".\v\U00021f04", // 𡼄
+ 0x21f05: ".\v\U00021f05", // 𡼅
+ 0x21f06: ".\v\U00021f06", // 𡼆
+ 0x21f07: ".\v\U00021f07", // 𡼇
+ 0x21f08: ".\v\U00021f08", // 𡼈
+ 0x21f09: ".\v\U00021f09", // 𡼉
+ 0x21f0a: ".\f\U00021f0a", // 𡼊
+ 0x21f0b: ".\f\U00021f0b", // 𡼋
+ 0x21f0c: ".\f\U00021f0c", // 𡼌
+ 0x21f0d: ".\f\U00021f0d", // 𡼍
+ 0x21f0e: ".\f\U00021f0e", // 𡼎
+ 0x21f0f: ".\f\U00021f0f", // 𡼏
+ 0x21f10: ".\f\U00021f10", // 𡼐
+ 0x21f11: ".\f\U00021f11", // 𡼑
+ 0x21f12: ".\f\U00021f12", // 𡼒
+ 0x21f13: ".\f\U00021f13", // 𡼓
+ 0x21f14: ".\f\U00021f14", // 𡼔
+ 0x21f15: ".\f\U00021f15", // 𡼕
+ 0x21f16: ".\f\U00021f16", // 𡼖
+ 0x21f17: ".\f\U00021f17", // 𡼗
+ 0x21f18: ".\f\U00021f18", // 𡼘
+ 0x21f19: ".\f\U00021f19", // 𡼙
+ 0x21f1a: ".\f\U00021f1a", // 𡼚
+ 0x21f1b: ".\f\U00021f1b", // 𡼛
+ 0x21f1c: ".\f\U00021f1c", // 𡼜
+ 0x21f1d: ".\f\U00021f1d", // 𡼝
+ 0x21f1e: ".\f\U00021f1e", // 𡼞
+ 0x21f1f: ".\f\U00021f1f", // 𡼟
+ 0x21f20: ".\f\U00021f20", // 𡼠
+ 0x21f21: ".\f\U00021f21", // 𡼡
+ 0x21f22: ".\f\U00021f22", // 𡼢
+ 0x21f23: ".\f\U00021f23", // 𡼣
+ 0x21f24: ".\f\U00021f24", // 𡼤
+ 0x21f25: ".\f\U00021f25", // 𡼥
+ 0x21f26: ".\f\U00021f26", // 𡼦
+ 0x21f27: ".\f\U00021f27", // 𡼧
+ 0x21f28: ".\f\U00021f28", // 𡼨
+ 0x21f29: ".\f\U00021f29", // 𡼩
+ 0x21f2a: ".\f\U00021f2a", // 𡼪
+ 0x21f2b: ".\f\U00021f2b", // 𡼫
+ 0x21f2c: ".\f\U00021f2c", // 𡼬
+ 0x21f2d: ".\f\U00021f2d", // 𡼭
+ 0x21f2e: ".\f\U00021f2e", // 𡼮
+ 0x21f2f: ".\f\U00021f2f", // 𡼯
+ 0x21f30: ".\f\U00021f30", // 𡼰
+ 0x21f31: ".\f\U00021f31", // 𡼱
+ 0x21f32: ".\f\U00021f32", // 𡼲
+ 0x21f33: ".\f\U00021f33", // 𡼳
+ 0x21f34: ".\f\U00021f34", // 𡼴
+ 0x21f35: ".\f\U00021f35", // 𡼵
+ 0x21f36: ".\f\U00021f36", // 𡼶
+ 0x21f37: ".\f\U00021f37", // 𡼷
+ 0x21f38: ".\f\U00021f38", // 𡼸
+ 0x21f39: ".\f\U00021f39", // 𡼹
+ 0x21f3a: ".\f\U00021f3a", // 𡼺
+ 0x21f3b: ".\f\U00021f3b", // 𡼻
+ 0x21f3c: ".\f\U00021f3c", // 𡼼
+ 0x21f3d: ".\r\U00021f3d", // 𡼽
+ 0x21f3e: ".\r\U00021f3e", // 𡼾
+ 0x21f3f: ".\r\U00021f3f", // 𡼿
+ 0x21f40: ".\r\U00021f40", // 𡽀
+ 0x21f41: ".\r\U00021f41", // 𡽁
+ 0x21f42: ".\r\U00021f42", // 𡽂
+ 0x21f43: ".\r\U00021f43", // 𡽃
+ 0x21f44: ".\r\U00021f44", // 𡽄
+ 0x21f45: ".\r\U00021f45", // 𡽅
+ 0x21f46: ".\r\U00021f46", // 𡽆
+ 0x21f47: ".\r\U00021f47", // 𡽇
+ 0x21f48: ".\r\U00021f48", // 𡽈
+ 0x21f49: ".\x0e\U00021f49", // 𡽉
+ 0x21f4a: ".\r\U00021f4a", // 𡽊
+ 0x21f4b: ".\r\U00021f4b", // 𡽋
+ 0x21f4c: ".\r\U00021f4c", // 𡽌
+ 0x21f4d: ".\r\U00021f4d", // 𡽍
+ 0x21f4e: ".\r\U00021f4e", // 𡽎
+ 0x21f4f: ".\r\U00021f4f", // 𡽏
+ 0x21f50: ".\r\U00021f50", // 𡽐
+ 0x21f51: ".\r\U00021f51", // 𡽑
+ 0x21f52: ".\r\U00021f52", // 𡽒
+ 0x21f53: ".\r\U00021f53", // 𡽓
+ 0x21f54: ".\r\U00021f54", // 𡽔
+ 0x21f55: ".\r\U00021f55", // 𡽕
+ 0x21f56: ".\r\U00021f56", // 𡽖
+ 0x21f57: ".\r\U00021f57", // 𡽗
+ 0x21f58: ".\r\U00021f58", // 𡽘
+ 0x21f59: ".\r\U00021f59", // 𡽙
+ 0x21f5a: ".\r\U00021f5a", // 𡽚
+ 0x21f5b: ".\r\U00021f5b", // 𡽛
+ 0x21f5c: ".\x0e\U00021f5c", // 𡽜
+ 0x21f5d: ".\x0e\U00021f5d", // 𡽝
+ 0x21f5e: ".\x0e\U00021f5e", // 𡽞
+ 0x21f5f: ".\x0e\U00021f5f", // 𡽟
+ 0x21f60: ".\x0e\U00021f60", // 𡽠
+ 0x21f61: ".\x0e\U00021f61", // 𡽡
+ 0x21f62: ".\x0e\U00021f62", // 𡽢
+ 0x21f63: ".\x0e\U00021f63", // 𡽣
+ 0x21f64: ".\x0e\U00021f64", // 𡽤
+ 0x21f65: ".\x0e\U00021f65", // 𡽥
+ 0x21f66: ".\x0e\U00021f66", // 𡽦
+ 0x21f67: ".\x0e\U00021f67", // 𡽧
+ 0x21f68: ".\x0e\U00021f68", // 𡽨
+ 0x21f69: ".\x0e\U00021f69", // 𡽩
+ 0x21f6a: ".\x0e\U00021f6a", // 𡽪
+ 0x21f6b: ".\x0e\U00021f6b", // 𡽫
+ 0x21f6c: ".\x0e\U00021f6c", // 𡽬
+ 0x21f6d: ".\x0e\U00021f6d", // 𡽭
+ 0x21f6e: ".\x0e\U00021f6e", // 𡽮
+ 0x21f6f: ".\x0e\U00021f6f", // 𡽯
+ 0x21f70: ".\x0e\U00021f70", // 𡽰
+ 0x21f71: ".\x0e\U00021f71", // 𡽱
+ 0x21f72: ".\x0e\U00021f72", // 𡽲
+ 0x21f73: ".\x0e\U00021f73", // 𡽳
+ 0x21f74: ".\x0e\U00021f74", // 𡽴
+ 0x21f75: ".\x0e\U00021f75", // 𡽵
+ 0x21f76: ".\x0e\U00021f76", // 𡽶
+ 0x21f77: ".\x0e\U00021f77", // 𡽷
+ 0x21f78: ".\x0e\U00021f78", // 𡽸
+ 0x21f79: ".\x0e\U00021f79", // 𡽹
+ 0x21f7a: ".\x0e\U00021f7a", // 𡽺
+ 0x21f7b: ".\x0e\U00021f7b", // 𡽻
+ 0x21f7c: ".\x0e\U00021f7c", // 𡽼
+ 0x21f7d: ".\x0e\U00021f7d", // 𡽽
+ 0x21f7e: ".\x0e\U00021f7e", // 𡽾
+ 0x21f7f: ".\x0e\U00021f7f", // 𡽿
+ 0x21f80: ".\x0e\U00021f80", // 𡾀
+ 0x21f81: ".\x0e\U00021f81", // 𡾁
+ 0x21f82: ".\x0f\U00021f82", // 𡾂
+ 0x21f83: ".\x0f\U00021f83", // 𡾃
+ 0x21f84: ".\x0f\U00021f84", // 𡾄
+ 0x21f85: ".\x0f\U00021f85", // 𡾅
+ 0x21f86: ".\x0f\U00021f86", // 𡾆
+ 0x21f87: ".\x0f\U00021f87", // 𡾇
+ 0x21f88: ".\x0f\U00021f88", // 𡾈
+ 0x21f89: ".\x0f\U00021f89", // 𡾉
+ 0x21f8a: ".\x0f\U00021f8a", // 𡾊
+ 0x21f8b: ".\x0f\U00021f8b", // 𡾋
+ 0x21f8c: ".\x0f\U00021f8c", // 𡾌
+ 0x21f8d: ".\x0f\U00021f8d", // 𡾍
+ 0x21f8e: ".\x0f\U00021f8e", // 𡾎
+ 0x21f8f: ".\x0f\U00021f8f", // 𡾏
+ 0x21f90: ".\x0f\U00021f90", // 𡾐
+ 0x21f91: ".\x0f\U00021f91", // 𡾑
+ 0x21f92: ".\x0f\U00021f92", // 𡾒
+ 0x21f93: ".\x0f\U00021f93", // 𡾓
+ 0x21f94: ".\x0f\U00021f94", // 𡾔
+ 0x21f95: ".\x0f\U00021f95", // 𡾕
+ 0x21f96: ".\x0f\U00021f96", // 𡾖
+ 0x21f97: "%\x0f\U00021f97", // 𡾗
+ 0x21f98: ".\x10\U00021f98", // 𡾘
+ 0x21f99: ".\x10\U00021f99", // 𡾙
+ 0x21f9a: ".\x10\U00021f9a", // 𡾚
+ 0x21f9b: ".\x10\U00021f9b", // 𡾛
+ 0x21f9c: ".\x10\U00021f9c", // 𡾜
+ 0x21f9d: ".\x10\U00021f9d", // 𡾝
+ 0x21f9e: ".\x10\U00021f9e", // 𡾞
+ 0x21f9f: ".\x10\U00021f9f", // 𡾟
+ 0x21fa0: ".\x0f\U00021fa0", // 𡾠
+ 0x21fa1: ".\x10\U00021fa1", // 𡾡
+ 0x21fa2: ".\x10\U00021fa2", // 𡾢
+ 0x21fa3: ".\x10\U00021fa3", // 𡾣
+ 0x21fa4: ".\x10\U00021fa4", // 𡾤
+ 0x21fa5: ".\x10\U00021fa5", // 𡾥
+ 0x21fa6: ".\x10\U00021fa6", // 𡾦
+ 0x21fa7: ".\x10\U00021fa7", // 𡾧
+ 0x21fa8: ".\x10\U00021fa8", // 𡾨
+ 0x21fa9: ".\x10\U00021fa9", // 𡾩
+ 0x21faa: ".\x10\U00021faa", // 𡾪
+ 0x21fab: ".\x10\U00021fab", // 𡾫
+ 0x21fac: ".\x10\U00021fac", // 𡾬
+ 0x21fad: ".\x10\U00021fad", // 𡾭
+ 0x21fae: ".\x11\U00021fae", // 𡾮
+ 0x21faf: ".\x11\U00021faf", // 𡾯
+ 0x21fb0: ".\x11\U00021fb0", // 𡾰
+ 0x21fb1: ".\x11\U00021fb1", // 𡾱
+ 0x21fb2: ".\x11\U00021fb2", // 𡾲
+ 0x21fb3: ".\x11\U00021fb3", // 𡾳
+ 0x21fb4: ".\x11\U00021fb4", // 𡾴
+ 0x21fb5: ".\x11\U00021fb5", // 𡾵
+ 0x21fb6: ".\x11\U00021fb6", // 𡾶
+ 0x21fb7: ".\x11\U00021fb7", // 𡾷
+ 0x21fb8: ".\x11\U00021fb8", // 𡾸
+ 0x21fb9: ".\x11\U00021fb9", // 𡾹
+ 0x21fba: ".\x11\U00021fba", // 𡾺
+ 0x21fbb: ".\x0e\U00021fbb", // 𡾻
+ 0x21fbc: ".\x12\U00021fbc", // 𡾼
+ 0x21fbd: ".\x12\U00021fbd", // 𡾽
+ 0x21fbe: ".\x12\U00021fbe", // 𡾾
+ 0x21fbf: ".\x12\U00021fbf", // 𡾿
+ 0x21fc0: ".\x12\U00021fc0", // 𡿀
+ 0x21fc1: ".\x12\U00021fc1", // 𡿁
+ 0x21fc2: ".\x12\U00021fc2", // 𡿂
+ 0x21fc3: ".\x12\U00021fc3", // 𡿃
+ 0x21fc4: ".\x12\U00021fc4", // 𡿄
+ 0x21fc5: ".\x12\U00021fc5", // 𡿅
+ 0x21fc6: ".\x12\U00021fc6", // 𡿆
+ 0x21fc7: ".\x13\U00021fc7", // 𡿇
+ 0x21fc8: ".\x13\U00021fc8", // 𡿈
+ 0x21fc9: ".\x13\U00021fc9", // 𡿉
+ 0x21fca: ".\x13\U00021fca", // 𡿊
+ 0x21fcb: ".\x13\U00021fcb", // 𡿋
+ 0x21fcc: ".\x13\U00021fcc", // 𡿌
+ 0x21fcd: ".\x13\U00021fcd", // 𡿍
+ 0x21fce: ".\x13\U00021fce", // 𡿎
+ 0x21fcf: ".\x13\U00021fcf", // 𡿏
+ 0x21fd0: ".\x13\U00021fd0", // 𡿐
+ 0x21fd1: ".\x13\U00021fd1", // 𡿑
+ 0x21fd2: ".\x14\U00021fd2", // 𡿒
+ 0x21fd3: ".\x14\U00021fd3", // 𡿓
+ 0x21fd4: ".\x15\U00021fd4", // 𡿔
+ 0x21fd5: ".\x15\U00021fd5", // 𡿕
+ 0x21fd6: ".\x15\U00021fd6", // 𡿖
+ 0x21fd7: ".\x15\U00021fd7", // 𡿗
+ 0x21fd8: ".\x15\U00021fd8", // 𡿘
+ 0x21fd9: ".\x15\U00021fd9", // 𡿙
+ 0x21fda: ".\x15\U00021fda", // 𡿚
+ 0x21fdb: ".\x15\U00021fdb", // 𡿛
+ 0x21fdc: ".\x15\U00021fdc", // 𡿜
+ 0x21fdd: ".\x16\U00021fdd", // 𡿝
+ 0x21fde: ".\x16\U00021fde", // 𡿞
+ 0x21fdf: ".\x16\U00021fdf", // 𡿟
+ 0x21fe0: ".\x18\U00021fe0", // 𡿠
+ 0x21fe1: ".\x18\U00021fe1", // 𡿡
+ 0x21fe2: ".\x19\U00021fe2", // 𡿢
+ 0x21fe3: ".\x18\U00021fe3", // 𡿣
+ 0x21fe4: ".\x18\U00021fe4", // 𡿤
+ 0x21fe5: ".\x1d\U00021fe5", // 𡿥
+ 0x21fe6: "/\x00\U00021fe6", // 𡿦
+ 0x21fe7: "/\x01\U00021fe7", // 𡿧
+ 0x21fe8: "/\x00\U00021fe8", // 𡿨
+ 0x21fe9: "/\x03\U00021fe9", // 𡿩
+ 0x21fea: "/\x03\U00021fea", // 𡿪
+ 0x21feb: "/\x03\U00021feb", // 𡿫
+ 0x21fec: "/\x03\U00021fec", // 𡿬
+ 0x21fed: "/\x03\U00021fed", // 𡿭
+ 0x21fee: "/\x04\U00021fee", // 𡿮
+ 0x21fef: "/\x04\U00021fef", // 𡿯
+ 0x21ff0: "/\x04\U00021ff0", // 𡿰
+ 0x21ff1: "/\x05\U00021ff1", // 𡿱
+ 0x21ff2: "/\x05\U00021ff2", // 𡿲
+ 0x21ff3: "/\x05\U00021ff3", // 𡿳
+ 0x21ff4: "/\x05\U00021ff4", // 𡿴
+ 0x21ff5: "/\x05\U00021ff5", // 𡿵
+ 0x21ff6: "/\x05\U00021ff6", // 𡿶
+ 0x21ff7: "/\x06\U00021ff7", // 𡿷
+ 0x21ff8: "/\x06\U00021ff8", // 𡿸
+ 0x21ff9: "/\x06\U00021ff9", // 𡿹
+ 0x21ffa: "/\x06\U00021ffa", // 𡿺
+ 0x21ffb: "/\x06\U00021ffb", // 𡿻
+ 0x21ffc: "/\a\U00021ffc", // 𡿼
+ 0x21ffd: "/\a\U00021ffd", // 𡿽
+ 0x21ffe: "/\b\U00021ffe", // 𡿾
+ 0x21fff: "/\b\U00021fff", // 𡿿
+ 0x22000: "/\b\U00022000", // 𢀀
+ 0x22001: "/\t\U00022001", // 𢀁
+ 0x22002: "/\v\U00022002", // 𢀂
+ 0x22003: "/\f\U00022003", // 𢀃
+ 0x22004: "/\r\U00022004", // 𢀄
+ 0x22005: "/\r\U00022005", // 𢀅
+ 0x22006: "/\r\U00022006", // 𢀆
+ 0x22007: "/\x0e\U00022007", // 𢀇
+ 0x22008: "/\x0f\U00022008", // 𢀈
+ 0x22009: "/\x10\U00022009", // 𢀉
+ 0x2200a: "/\x10\U0002200a", // 𢀊
+ 0x2200b: "/\x11\U0002200b", // 𢀋
+ 0x2200c: "/\x13\U0002200c", // 𢀌
+ 0x2200d: "/\x13\U0002200d", // 𢀍
+ 0x2200e: "/\x15\U0002200e", // 𢀎
+ 0x2200f: "/\x18\U0002200f", // 𢀏
+ 0x22010: "/\x1a\U00022010", // 𢀐
+ 0x22011: "0\x01\U00022011", // 𢀑
+ 0x22012: "0\x01\U00022012", // 𢀒
+ 0x22013: "0\x01\U00022013", // 𢀓
+ 0x22014: "0\x01\U00022014", // 𢀔
+ 0x22015: "0\x01\U00022015", // 𢀕
+ 0x22016: "0\x02\U00022016", // 𢀖
+ 0x22017: "0\x02\U00022017", // 𢀗
+ 0x22018: "0\x02\U00022018", // 𢀘
+ 0x22019: "0\x02\U00022019", // 𢀙
+ 0x2201a: "0\x03\U0002201a", // 𢀚
+ 0x2201b: "0\x03\U0002201b", // 𢀛
+ 0x2201c: "0\x04\U0002201c", // 𢀜
+ 0x2201d: "0\x04\U0002201d", // 𢀝
+ 0x2201e: "0\x04\U0002201e", // 𢀞
+ 0x2201f: "0\x05\U0002201f", // 𢀟
+ 0x22020: "0\x06\U00022020", // 𢀠
+ 0x22021: "0\a\U00022021", // 𢀡
+ 0x22022: "0\a\U00022022", // 𢀢
+ 0x22023: "0\b\U00022023", // 𢀣
+ 0x22024: "0\t\U00022024", // 𢀤
+ 0x22025: "0\t\U00022025", // 𢀥
+ 0x22026: "0\n\U00022026", // 𢀦
+ 0x22027: "0\n\U00022027", // 𢀧
+ 0x22028: "0\f\U00022028", // 𢀨
+ 0x22029: "0\f\U00022029", // 𢀩
+ 0x2202a: "0\f\U0002202a", // 𢀪
+ 0x2202b: "0\f\U0002202b", // 𢀫
+ 0x2202c: "0\r\U0002202c", // 𢀬
+ 0x2202d: "0\x0e\U0002202d", // 𢀭
+ 0x2202e: "0\x0f\U0002202e", // 𢀮
+ 0x2202f: "0\x10\U0002202f", // 𢀯
+ 0x22030: "0\x12\U00022030", // 𢀰
+ 0x22031: "0\x12\U00022031", // 𢀱
+ 0x22032: "0\x12\U00022032", // 𢀲
+ 0x22033: "1\x01\U00022033", // 𢀳
+ 0x22034: "1\x02\U00022034", // 𢀴
+ 0x22035: "1\x02\U00022035", // 𢀵
+ 0x22036: "1\x03\U00022036", // 𢀶
+ 0x22037: "1\x05\U00022037", // 𢀷
+ 0x22038: "1\x05\U00022038", // 𢀸
+ 0x22039: "1\x06\U00022039", // 𢀹
+ 0x2203a: "1\x06\U0002203a", // 𢀺
+ 0x2203b: "1\x06\U0002203b", // 𢀻
+ 0x2203c: "1\a\U0002203c", // 𢀼
+ 0x2203d: "1\a\U0002203d", // 𢀽
+ 0x2203e: "1\a\U0002203e", // 𢀾
+ 0x2203f: "1\a\U0002203f", // 𢀿
+ 0x22040: "1\b\U00022040", // 𢁀
+ 0x22041: "1\b\U00022041", // 𢁁
+ 0x22042: "1\b\U00022042", // 𢁂
+ 0x22043: "1\b\U00022043", // 𢁃
+ 0x22044: "1\b\U00022044", // 𢁄
+ 0x22045: "1\t\U00022045", // 𢁅
+ 0x22046: "1\t\U00022046", // 𢁆
+ 0x22047: "1\t\U00022047", // 𢁇
+ 0x22048: "1\t\U00022048", // 𢁈
+ 0x22049: "1\t\U00022049", // 𢁉
+ 0x2204a: "1\n\U0002204a", // 𢁊
+ 0x2204b: "1\f\U0002204b", // 𢁋
+ 0x2204c: "1\f\U0002204c", // 𢁌
+ 0x2204d: "1\r\U0002204d", // 𢁍
+ 0x2204e: "1\x0e\U0002204e", // 𢁎
+ 0x2204f: "1\r\U0002204f", // 𢁏
+ 0x22050: "1\x0f\U00022050", // 𢁐
+ 0x22051: "1\x11\U00022051", // 𢁑
+ 0x22052: "2\x02\U00022052", // 𢁒
+ 0x22053: "2\x02\U00022053", // 𢁓
+ 0x22054: "2\x02\U00022054", // 𢁔
+ 0x22055: "2\x03\U00022055", // 𢁕
+ 0x22056: "2\x03\U00022056", // 𢁖
+ 0x22057: "2\x03\U00022057", // 𢁗
+ 0x22058: "2\x03\U00022058", // 𢁘
+ 0x22059: "2\x03\U00022059", // 𢁙
+ 0x2205a: "2\x03\U0002205a", // 𢁚
+ 0x2205b: "2\x03\U0002205b", // 𢁛
+ 0x2205c: "2\x03\U0002205c", // 𢁜
+ 0x2205d: "2\x03\U0002205d", // 𢁝
+ 0x2205e: "2\x03\U0002205e", // 𢁞
+ 0x2205f: "2\x03\U0002205f", // 𢁟
+ 0x22060: "2\x03\U00022060", // 𢁠
+ 0x22061: "2\x03\U00022061", // 𢁡
+ 0x22062: "2\x03\U00022062", // 𢁢
+ 0x22063: "2\x03\U00022063", // 𢁣
+ 0x22064: "2\x03\U00022064", // 𢁤
+ 0x22065: "2\x04\U00022065", // 𢁥
+ 0x22066: "2\x04\U00022066", // 𢁦
+ 0x22067: "2\x04\U00022067", // 𢁧
+ 0x22068: "2\x04\U00022068", // 𢁨
+ 0x22069: "2\x04\U00022069", // 𢁩
+ 0x2206a: "2\x04\U0002206a", // 𢁪
+ 0x2206b: "2\x04\U0002206b", // 𢁫
+ 0x2206c: "2\x04\U0002206c", // 𢁬
+ 0x2206d: "2\x04\U0002206d", // 𢁭
+ 0x2206e: "2\x04\U0002206e", // 𢁮
+ 0x2206f: "2\x04\U0002206f", // 𢁯
+ 0x22070: "2\x04\U00022070", // 𢁰
+ 0x22071: "2\x04\U00022071", // 𢁱
+ 0x22072: "2\x04\U00022072", // 𢁲
+ 0x22073: "2\x04\U00022073", // 𢁳
+ 0x22074: "2\x04\U00022074", // 𢁴
+ 0x22075: "2\x04\U00022075", // 𢁵
+ 0x22076: "2\x04\U00022076", // 𢁶
+ 0x22077: "2\x04\U00022077", // 𢁷
+ 0x22078: "2\x04\U00022078", // 𢁸
+ 0x22079: "2\x04\U00022079", // 𢁹
+ 0x2207a: "2\x04\U0002207a", // 𢁺
+ 0x2207b: "2\x05\U0002207b", // 𢁻
+ 0x2207c: "2\x05\U0002207c", // 𢁼
+ 0x2207d: "2\x05\U0002207d", // 𢁽
+ 0x2207e: "2\x05\U0002207e", // 𢁾
+ 0x2207f: "2\x05\U0002207f", // 𢁿
+ 0x22080: "2\x05\U00022080", // 𢂀
+ 0x22081: "2\x05\U00022081", // 𢂁
+ 0x22082: "2\x05\U00022082", // 𢂂
+ 0x22083: "2\x05\U00022083", // 𢂃
+ 0x22084: "2\x05\U00022084", // 𢂄
+ 0x22085: "2\x05\U00022085", // 𢂅
+ 0x22086: "2\x05\U00022086", // 𢂆
+ 0x22087: "2\x05\U00022087", // 𢂇
+ 0x22088: "2\x05\U00022088", // 𢂈
+ 0x22089: "2\x05\U00022089", // 𢂉
+ 0x2208a: "2\x05\U0002208a", // 𢂊
+ 0x2208b: "2\x05\U0002208b", // 𢂋
+ 0x2208c: "2\x05\U0002208c", // 𢂌
+ 0x2208d: "2\x05\U0002208d", // 𢂍
+ 0x2208e: "2\x05\U0002208e", // 𢂎
+ 0x2208f: "2\x05\U0002208f", // 𢂏
+ 0x22090: "2\x06\U00022090", // 𢂐
+ 0x22091: "2\x06\U00022091", // 𢂑
+ 0x22092: "2\x06\U00022092", // 𢂒
+ 0x22093: "2\x06\U00022093", // 𢂓
+ 0x22094: "2\x06\U00022094", // 𢂔
+ 0x22095: "2\x06\U00022095", // 𢂕
+ 0x22096: "2\x06\U00022096", // 𢂖
+ 0x22097: "2\x06\U00022097", // 𢂗
+ 0x22098: "2\x06\U00022098", // 𢂘
+ 0x22099: "2\x06\U00022099", // 𢂙
+ 0x2209a: "2\x06\U0002209a", // 𢂚
+ 0x2209b: "2\x06\U0002209b", // 𢂛
+ 0x2209c: "2\x06\U0002209c", // 𢂜
+ 0x2209d: "2\x06\U0002209d", // 𢂝
+ 0x2209e: "2\x06\U0002209e", // 𢂞
+ 0x2209f: "2\x06\U0002209f", // 𢂟
+ 0x220a0: "2\x06\U000220a0", // 𢂠
+ 0x220a1: "2\x06\U000220a1", // 𢂡
+ 0x220a2: "2\x06\U000220a2", // 𢂢
+ 0x220a3: "2\x06\U000220a3", // 𢂣
+ 0x220a4: "2\x06\U000220a4", // 𢂤
+ 0x220a5: "2\x06\U000220a5", // 𢂥
+ 0x220a6: "2\x06\U000220a6", // 𢂦
+ 0x220a7: "2\x06\U000220a7", // 𢂧
+ 0x220a8: "2\x06\U000220a8", // 𢂨
+ 0x220a9: "2\x06\U000220a9", // 𢂩
+ 0x220aa: "2\x06\U000220aa", // 𢂪
+ 0x220ab: "2\x06\U000220ab", // 𢂫
+ 0x220ac: "2\x06\U000220ac", // 𢂬
+ 0x220ad: "2\x06\U000220ad", // 𢂭
+ 0x220ae: "2\x06\U000220ae", // 𢂮
+ 0x220af: "2\x06\U000220af", // 𢂯
+ 0x220b0: "2\x06\U000220b0", // 𢂰
+ 0x220b1: "2\a\U000220b1", // 𢂱
+ 0x220b2: "2\a\U000220b2", // 𢂲
+ 0x220b3: "2\a\U000220b3", // 𢂳
+ 0x220b4: "2\a\U000220b4", // 𢂴
+ 0x220b5: "2\a\U000220b5", // 𢂵
+ 0x220b6: "2\a\U000220b6", // 𢂶
+ 0x220b7: "2\a\U000220b7", // 𢂷
+ 0x220b8: "2\a\U000220b8", // 𢂸
+ 0x220b9: "2\a\U000220b9", // 𢂹
+ 0x220ba: "2\a\U000220ba", // 𢂺
+ 0x220bb: "2\a\U000220bb", // 𢂻
+ 0x220bc: "2\a\U000220bc", // 𢂼
+ 0x220bd: "2\a\U000220bd", // 𢂽
+ 0x220be: "2\a\U000220be", // 𢂾
+ 0x220bf: "2\a\U000220bf", // 𢂿
+ 0x220c0: "2\a\U000220c0", // 𢃀
+ 0x220c1: "2\a\U000220c1", // 𢃁
+ 0x220c2: "2\a\U000220c2", // 𢃂
+ 0x220c3: "2\a\U000220c3", // 𢃃
+ 0x220c4: "2\a\U000220c4", // 𢃄
+ 0x220c5: "2\a\U000220c5", // 𢃅
+ 0x220c6: "2\a\U000220c6", // 𢃆
+ 0x220c7: "2\a\U000220c7", // 𢃇
+ 0x220c8: "2\a\U000220c8", // 𢃈
+ 0x220c9: "2\a\U000220c9", // 𢃉
+ 0x220ca: "2\a\U000220ca", // 𢃊
+ 0x220cb: "2\a\U000220cb", // 𢃋
+ 0x220cc: "2\a\U000220cc", // 𢃌
+ 0x220cd: "2\b\U000220cd", // 𢃍
+ 0x220ce: "2\b\U000220ce", // 𢃎
+ 0x220cf: "2\b\U000220cf", // 𢃏
+ 0x220d0: "2\b\U000220d0", // 𢃐
+ 0x220d1: "2\b\U000220d1", // 𢃑
+ 0x220d2: "2\b\U000220d2", // 𢃒
+ 0x220d3: "2\b\U000220d3", // 𢃓
+ 0x220d4: "2\b\U000220d4", // 𢃔
+ 0x220d5: "2\b\U000220d5", // 𢃕
+ 0x220d6: "2\b\U000220d6", // 𢃖
+ 0x220d7: "2\b\U000220d7", // 𢃗
+ 0x220d8: "2\b\U000220d8", // 𢃘
+ 0x220d9: "2\b\U000220d9", // 𢃙
+ 0x220da: "2\b\U000220da", // 𢃚
+ 0x220db: "2\b\U000220db", // 𢃛
+ 0x220dc: "2\b\U000220dc", // 𢃜
+ 0x220dd: "2\b\U000220dd", // 𢃝
+ 0x220de: "2\b\U000220de", // 𢃞
+ 0x220df: "2\b\U000220df", // 𢃟
+ 0x220e0: "2\b\U000220e0", // 𢃠
+ 0x220e1: "2\b\U000220e1", // 𢃡
+ 0x220e2: "2\b\U000220e2", // 𢃢
+ 0x220e3: "2\b\U000220e3", // 𢃣
+ 0x220e4: "2\b\U000220e4", // 𢃤
+ 0x220e5: "2\b\U000220e5", // 𢃥
+ 0x220e6: "2\b\U000220e6", // 𢃦
+ 0x220e7: "2\b\U000220e7", // 𢃧
+ 0x220e8: "2\b\U000220e8", // 𢃨
+ 0x220e9: "2\b\U000220e9", // 𢃩
+ 0x220ea: "2\b\U000220ea", // 𢃪
+ 0x220eb: "2\t\U000220eb", // 𢃫
+ 0x220ec: "2\t\U000220ec", // 𢃬
+ 0x220ed: "2\t\U000220ed", // 𢃭
+ 0x220ee: "2\t\U000220ee", // 𢃮
+ 0x220ef: "2\t\U000220ef", // 𢃯
+ 0x220f0: "2\t\U000220f0", // 𢃰
+ 0x220f1: "2\t\U000220f1", // 𢃱
+ 0x220f2: "2\t\U000220f2", // 𢃲
+ 0x220f3: "2\t\U000220f3", // 𢃳
+ 0x220f4: "2\t\U000220f4", // 𢃴
+ 0x220f5: "2\t\U000220f5", // 𢃵
+ 0x220f6: "2\t\U000220f6", // 𢃶
+ 0x220f7: "2\t\U000220f7", // 𢃷
+ 0x220f8: "2\t\U000220f8", // 𢃸
+ 0x220f9: "2\t\U000220f9", // 𢃹
+ 0x220fa: "2\t\U000220fa", // 𢃺
+ 0x220fb: "2\t\U000220fb", // 𢃻
+ 0x220fc: "2\t\U000220fc", // 𢃼
+ 0x220fd: "2\t\U000220fd", // 𢃽
+ 0x220fe: "2\t\U000220fe", // 𢃾
+ 0x220ff: "2\t\U000220ff", // 𢃿
+ 0x22100: "2\t\U00022100", // 𢄀
+ 0x22101: "2\t\U00022101", // 𢄁
+ 0x22102: "2\t\U00022102", // 𢄂
+ 0x22103: "2\t\U00022103", // 𢄃
+ 0x22104: "2\t\U00022104", // 𢄄
+ 0x22105: "2\t\U00022105", // 𢄅
+ 0x22106: "2\t\U00022106", // 𢄆
+ 0x22107: "2\t\U00022107", // 𢄇
+ 0x22108: "2\t\U00022108", // 𢄈
+ 0x22109: "2\t\U00022109", // 𢄉
+ 0x2210a: "2\n\U0002210a", // 𢄊
+ 0x2210b: "2\n\U0002210b", // 𢄋
+ 0x2210c: "2\n\U0002210c", // 𢄌
+ 0x2210d: "2\n\U0002210d", // 𢄍
+ 0x2210e: "2\n\U0002210e", // 𢄎
+ 0x2210f: "2\n\U0002210f", // 𢄏
+ 0x22110: "2\n\U00022110", // 𢄐
+ 0x22111: "2\n\U00022111", // 𢄑
+ 0x22112: "2\n\U00022112", // 𢄒
+ 0x22113: "2\n\U00022113", // 𢄓
+ 0x22114: "2\n\U00022114", // 𢄔
+ 0x22115: "2\n\U00022115", // 𢄕
+ 0x22116: "2\n\U00022116", // 𢄖
+ 0x22117: "2\n\U00022117", // 𢄗
+ 0x22118: "2\n\U00022118", // 𢄘
+ 0x22119: "2\n\U00022119", // 𢄙
+ 0x2211a: "2\n\U0002211a", // 𢄚
+ 0x2211b: "2\n\U0002211b", // 𢄛
+ 0x2211c: "2\n\U0002211c", // 𢄜
+ 0x2211d: "2\n\U0002211d", // 𢄝
+ 0x2211e: "2\n\U0002211e", // 𢄞
+ 0x2211f: "2\v\U0002211f", // 𢄟
+ 0x22120: "2\v\U00022120", // 𢄠
+ 0x22121: "2\v\U00022121", // 𢄡
+ 0x22122: "2\v\U00022122", // 𢄢
+ 0x22123: "2\v\U00022123", // 𢄣
+ 0x22124: "2\v\U00022124", // 𢄤
+ 0x22125: "2\v\U00022125", // 𢄥
+ 0x22126: "2\v\U00022126", // 𢄦
+ 0x22127: "2\v\U00022127", // 𢄧
+ 0x22128: "2\v\U00022128", // 𢄨
+ 0x22129: "2\v\U00022129", // 𢄩
+ 0x2212a: "2\v\U0002212a", // 𢄪
+ 0x2212b: "2\v\U0002212b", // 𢄫
+ 0x2212c: "2\v\U0002212c", // 𢄬
+ 0x2212d: "2\v\U0002212d", // 𢄭
+ 0x2212e: "2\v\U0002212e", // 𢄮
+ 0x2212f: "2\v\U0002212f", // 𢄯
+ 0x22130: "2\v\U00022130", // 𢄰
+ 0x22131: "2\v\U00022131", // 𢄱
+ 0x22132: "2\v\U00022132", // 𢄲
+ 0x22133: "2\f\U00022133", // 𢄳
+ 0x22134: "2\f\U00022134", // 𢄴
+ 0x22135: "2\f\U00022135", // 𢄵
+ 0x22136: "2\f\U00022136", // 𢄶
+ 0x22137: "2\f\U00022137", // 𢄷
+ 0x22138: "2\f\U00022138", // 𢄸
+ 0x22139: "2\f\U00022139", // 𢄹
+ 0x2213a: "2\f\U0002213a", // 𢄺
+ 0x2213b: "2\f\U0002213b", // 𢄻
+ 0x2213c: "2\f\U0002213c", // 𢄼
+ 0x2213d: "2\f\U0002213d", // 𢄽
+ 0x2213e: "2\f\U0002213e", // 𢄾
+ 0x2213f: "2\f\U0002213f", // 𢄿
+ 0x22140: "2\f\U00022140", // 𢅀
+ 0x22141: "2\f\U00022141", // 𢅁
+ 0x22142: "2\f\U00022142", // 𢅂
+ 0x22143: "2\f\U00022143", // 𢅃
+ 0x22144: "2\f\U00022144", // 𢅄
+ 0x22145: "2\f\U00022145", // 𢅅
+ 0x22146: "2\f\U00022146", // 𢅆
+ 0x22147: "2\f\U00022147", // 𢅇
+ 0x22148: "2\f\U00022148", // 𢅈
+ 0x22149: "2\f\U00022149", // 𢅉
+ 0x2214a: "2\f\U0002214a", // 𢅊
+ 0x2214b: "2\f\U0002214b", // 𢅋
+ 0x2214c: "2\f\U0002214c", // 𢅌
+ 0x2214d: "2\r\U0002214d", // 𢅍
+ 0x2214e: "2\r\U0002214e", // 𢅎
+ 0x2214f: "2\r\U0002214f", // 𢅏
+ 0x22150: "2\r\U00022150", // 𢅐
+ 0x22151: "2\r\U00022151", // 𢅑
+ 0x22152: "2\r\U00022152", // 𢅒
+ 0x22153: "2\r\U00022153", // 𢅓
+ 0x22154: "2\r\U00022154", // 𢅔
+ 0x22155: "2\r\U00022155", // 𢅕
+ 0x22156: "2\r\U00022156", // 𢅖
+ 0x22157: "2\r\U00022157", // 𢅗
+ 0x22158: "2\r\U00022158", // 𢅘
+ 0x22159: "2\r\U00022159", // 𢅙
+ 0x2215a: "2\r\U0002215a", // 𢅚
+ 0x2215b: "2\r\U0002215b", // 𢅛
+ 0x2215c: "2\r\U0002215c", // 𢅜
+ 0x2215d: "2\r\U0002215d", // 𢅝
+ 0x2215e: "2\r\U0002215e", // 𢅞
+ 0x2215f: "2\x0e\U0002215f", // 𢅟
+ 0x22160: "2\x0e\U00022160", // 𢅠
+ 0x22161: "2\x0e\U00022161", // 𢅡
+ 0x22162: "2\x0e\U00022162", // 𢅢
+ 0x22163: "2\x0e\U00022163", // 𢅣
+ 0x22164: "2\x0e\U00022164", // 𢅤
+ 0x22165: "2\x0e\U00022165", // 𢅥
+ 0x22166: "2\x0e\U00022166", // 𢅦
+ 0x22167: "2\x0e\U00022167", // 𢅧
+ 0x22168: "2\x0e\U00022168", // 𢅨
+ 0x22169: "2\x0f\U00022169", // 𢅩
+ 0x2216a: "2\x0f\U0002216a", // 𢅪
+ 0x2216b: "2\x0f\U0002216b", // 𢅫
+ 0x2216c: "2\x0f\U0002216c", // 𢅬
+ 0x2216d: "2\x10\U0002216d", // 𢅭
+ 0x2216e: "2\x10\U0002216e", // 𢅮
+ 0x2216f: "2\x10\U0002216f", // 𢅯
+ 0x22170: "2\x10\U00022170", // 𢅰
+ 0x22171: "2\x10\U00022171", // 𢅱
+ 0x22172: "2\x10\U00022172", // 𢅲
+ 0x22173: "2\x10\U00022173", // 𢅳
+ 0x22174: "2\x10\U00022174", // 𢅴
+ 0x22175: "2\x10\U00022175", // 𢅵
+ 0x22176: "2\x10\U00022176", // 𢅶
+ 0x22177: "2\x10\U00022177", // 𢅷
+ 0x22178: "2\x11\U00022178", // 𢅸
+ 0x22179: "2\x11\U00022179", // 𢅹
+ 0x2217a: "2\x11\U0002217a", // 𢅺
+ 0x2217b: "2\x12\U0002217b", // 𢅻
+ 0x2217c: "2\x12\U0002217c", // 𢅼
+ 0x2217d: "2\x12\U0002217d", // 𢅽
+ 0x2217e: "2\x13\U0002217e", // 𢅾
+ 0x2217f: "2\x13\U0002217f", // 𢅿
+ 0x22180: "2\x13\U00022180", // 𢆀
+ 0x22181: "2\x13\U00022181", // 𢆁
+ 0x22182: "2\x14\U00022182", // 𢆂
+ 0x22183: "2\x15\U00022183", // 𢆃
+ 0x22184: "2\x15\U00022184", // 𢆄
+ 0x22185: "2\x15\U00022185", // 𢆅
+ 0x22186: "2\x15\U00022186", // 𢆆
+ 0x22187: "2\x18\U00022187", // 𢆇
+ 0x22188: "2\x18\U00022188", // 𢆈
+ 0x22189: "3\x02\U00022189", // 𢆉
+ 0x2218a: "3\x04\U0002218a", // 𢆊
+ 0x2218b: "3\x04\U0002218b", // 𢆋
+ 0x2218c: "3\x04\U0002218c", // 𢆌
+ 0x2218d: "3\x05\U0002218d", // 𢆍
+ 0x2218e: "3\x05\U0002218e", // 𢆎
+ 0x2218f: "3\x05\U0002218f", // 𢆏
+ 0x22190: "3\x05\U00022190", // 𢆐
+ 0x22191: "3\x06\U00022191", // 𢆑
+ 0x22192: "3\x06\U00022192", // 𢆒
+ 0x22193: "3\x06\U00022193", // 𢆓
+ 0x22194: "3\x06\U00022194", // 𢆔
+ 0x22195: "3\x06\U00022195", // 𢆕
+ 0x22196: "3\a\U00022196", // 𢆖
+ 0x22197: "3\a\U00022197", // 𢆗
+ 0x22198: "3\a\U00022198", // 𢆘
+ 0x22199: "3\a\U00022199", // 𢆙
+ 0x2219a: "3\b\U0002219a", // 𢆚
+ 0x2219b: "3\t\U0002219b", // 𢆛
+ 0x2219c: "3\t\U0002219c", // 𢆜
+ 0x2219d: "3\t\U0002219d", // 𢆝
+ 0x2219e: "3\n\U0002219e", // 𢆞
+ 0x2219f: "3\n\U0002219f", // 𢆟
+ 0x221a0: "3\n\U000221a0", // 𢆠
+ 0x221a1: "\x05\r\U000221a1", // 𢆡
+ 0x221a2: "3\v\U000221a2", // 𢆢
+ 0x221a3: "$\v\U000221a3", // 𢆣
+ 0x221a4: "3\v\U000221a4", // 𢆤
+ 0x221a5: "3\f\U000221a5", // 𢆥
+ 0x221a6: "3\r\U000221a6", // 𢆦
+ 0x221a7: "3\r\U000221a7", // 𢆧
+ 0x221a8: "3\r\U000221a8", // 𢆨
+ 0x221a9: "3\r\U000221a9", // 𢆩
+ 0x221aa: "3\x0f\U000221aa", // 𢆪
+ 0x221ab: "3\x10\U000221ab", // 𢆫
+ 0x221ac: "3\x11\U000221ac", // 𢆬
+ 0x221ad: "3\x12\U000221ad", // 𢆭
+ 0x221ae: "3\x14\U000221ae", // 𢆮
+ 0x221af: "4\x01\U000221af", // 𢆯
+ 0x221b0: "4\x01\U000221b0", // 𢆰
+ 0x221b1: "4\x01\U000221b1", // 𢆱
+ 0x221b2: "4\x02\U000221b2", // 𢆲
+ 0x221b3: "4\x02\U000221b3", // 𢆳
+ 0x221b4: "4\x02\U000221b4", // 𢆴
+ 0x221b5: "4\x02\U000221b5", // 𢆵
+ 0x221b6: "4\x03\U000221b6", // 𢆶
+ 0x221b7: "4\x04\U000221b7", // 𢆷
+ 0x221b8: "4\x04\U000221b8", // 𢆸
+ 0x221b9: "4\x04\U000221b9", // 𢆹
+ 0x221ba: "4\x04\U000221ba", // 𢆺
+ 0x221bb: "4\x05\U000221bb", // 𢆻
+ 0x221bc: "4\x05\U000221bc", // 𢆼
+ 0x221bd: "4\x05\U000221bd", // 𢆽
+ 0x221be: "4\x05\U000221be", // 𢆾
+ 0x221bf: "4\x06\U000221bf", // 𢆿
+ 0x221c0: ",\x06\U000221c0", // 𢇀
+ 0x221c1: "4\a\U000221c1", // 𢇁
+ 0x221c2: "4\x06\U000221c2", // 𢇂
+ 0x221c3: "4\a\U000221c3", // 𢇃
+ 0x221c4: "4\a\U000221c4", // 𢇄
+ 0x221c5: "4\a\U000221c5", // 𢇅
+ 0x221c6: "4\a\U000221c6", // 𢇆
+ 0x221c7: "4\b\U000221c7", // 𢇇
+ 0x221c8: "4\b\U000221c8", // 𢇈
+ 0x221c9: "4\b\U000221c9", // 𢇉
+ 0x221ca: "4\t\U000221ca", // 𢇊
+ 0x221cb: "4\n\U000221cb", // 𢇋
+ 0x221cc: "4\v\U000221cc", // 𢇌
+ 0x221cd: "4\v\U000221cd", // 𢇍
+ 0x221ce: "4\v\U000221ce", // 𢇎
+ 0x221cf: "4\v\U000221cf", // 𢇏
+ 0x221d0: "4\f\U000221d0", // 𢇐
+ 0x221d1: "4\f\U000221d1", // 𢇑
+ 0x221d2: "4\f\U000221d2", // 𢇒
+ 0x221d3: "4\f\U000221d3", // 𢇓
+ 0x221d4: "*\x0e\U000221d4", // 𢇔
+ 0x221d5: "\x11\x10\U000221d5", // 𢇕
+ 0x221d6: "4\x13\U000221d6", // 𢇖
+ 0x221d7: "5\x03\U000221d7", // 𢇗
+ 0x221d8: "5\x03\U000221d8", // 𢇘
+ 0x221d9: "5\x03\U000221d9", // 𢇙
+ 0x221da: "5\x03\U000221da", // 𢇚
+ 0x221db: "5\x03\U000221db", // 𢇛
+ 0x221dc: "5\x03\U000221dc", // 𢇜
+ 0x221dd: "5\x03\U000221dd", // 𢇝
+ 0x221de: "5\x03\U000221de", // 𢇞
+ 0x221df: "5\x03\U000221df", // 𢇟
+ 0x221e0: "5\x03\U000221e0", // 𢇠
+ 0x221e1: "5\x03\U000221e1", // 𢇡
+ 0x221e2: "5\x03\U000221e2", // 𢇢
+ 0x221e3: "5\x04\U000221e3", // 𢇣
+ 0x221e4: "5\x04\U000221e4", // 𢇤
+ 0x221e5: "5\x04\U000221e5", // 𢇥
+ 0x221e6: "5\x04\U000221e6", // 𢇦
+ 0x221e7: "5\x04\U000221e7", // 𢇧
+ 0x221e8: "5\x04\U000221e8", // 𢇨
+ 0x221e9: "5\x04\U000221e9", // 𢇩
+ 0x221ea: "5\x04\U000221ea", // 𢇪
+ 0x221eb: "5\x04\U000221eb", // 𢇫
+ 0x221ec: "5\x04\U000221ec", // 𢇬
+ 0x221ed: "5\x04\U000221ed", // 𢇭
+ 0x221ee: "5\x04\U000221ee", // 𢇮
+ 0x221ef: "5\x04\U000221ef", // 𢇯
+ 0x221f0: "5\x04\U000221f0", // 𢇰
+ 0x221f1: "5\x04\U000221f1", // 𢇱
+ 0x221f2: "5\x05\U000221f2", // 𢇲
+ 0x221f3: "5\x05\U000221f3", // 𢇳
+ 0x221f4: "5\x05\U000221f4", // 𢇴
+ 0x221f5: "5\x05\U000221f5", // 𢇵
+ 0x221f6: "5\x05\U000221f6", // 𢇶
+ 0x221f7: "5\x05\U000221f7", // 𢇷
+ 0x221f8: "5\x05\U000221f8", // 𢇸
+ 0x221f9: "5\x05\U000221f9", // 𢇹
+ 0x221fa: "5\x05\U000221fa", // 𢇺
+ 0x221fb: "5\x05\U000221fb", // 𢇻
+ 0x221fc: "5\x05\U000221fc", // 𢇼
+ 0x221fd: "5\x05\U000221fd", // 𢇽
+ 0x221fe: "5\x05\U000221fe", // 𢇾
+ 0x221ff: "5\x05\U000221ff", // 𢇿
+ 0x22200: "5\x05\U00022200", // 𢈀
+ 0x22201: "5\x05\U00022201", // 𢈁
+ 0x22202: "5\x05\U00022202", // 𢈂
+ 0x22203: "5\x05\U00022203", // 𢈃
+ 0x22204: "5\x05\U00022204", // 𢈄
+ 0x22205: "5\x05\U00022205", // 𢈅
+ 0x22206: "5\x05\U00022206", // 𢈆
+ 0x22207: "5\x06\U00022207", // 𢈇
+ 0x22208: "5\x06\U00022208", // 𢈈
+ 0x22209: "5\x06\U00022209", // 𢈉
+ 0x2220a: "5\x06\U0002220a", // 𢈊
+ 0x2220b: "5\x06\U0002220b", // 𢈋
+ 0x2220c: "5\x06\U0002220c", // 𢈌
+ 0x2220d: "5\x06\U0002220d", // 𢈍
+ 0x2220e: "5\x06\U0002220e", // 𢈎
+ 0x2220f: "5\x06\U0002220f", // 𢈏
+ 0x22210: "5\x06\U00022210", // 𢈐
+ 0x22211: "5\x06\U00022211", // 𢈑
+ 0x22212: "5\x06\U00022212", // 𢈒
+ 0x22213: "5\x06\U00022213", // 𢈓
+ 0x22214: "5\x06\U00022214", // 𢈔
+ 0x22215: "5\x06\U00022215", // 𢈕
+ 0x22216: "5\x06\U00022216", // 𢈖
+ 0x22217: "5\x06\U00022217", // 𢈗
+ 0x22218: "5\x06\U00022218", // 𢈘
+ 0x22219: "5\a\U00022219", // 𢈙
+ 0x2221a: "5\a\U0002221a", // 𢈚
+ 0x2221b: "5\a\U0002221b", // 𢈛
+ 0x2221c: "5\a\U0002221c", // 𢈜
+ 0x2221d: "5\a\U0002221d", // 𢈝
+ 0x2221e: "5\a\U0002221e", // 𢈞
+ 0x2221f: "5\a\U0002221f", // 𢈟
+ 0x22220: "5\a\U00022220", // 𢈠
+ 0x22221: "5\a\U00022221", // 𢈡
+ 0x22222: "5\a\U00022222", // 𢈢
+ 0x22223: "5\a\U00022223", // 𢈣
+ 0x22224: "5\a\U00022224", // 𢈤
+ 0x22225: "5\a\U00022225", // 𢈥
+ 0x22226: "5\a\U00022226", // 𢈦
+ 0x22227: "5\a\U00022227", // 𢈧
+ 0x22228: "5\a\U00022228", // 𢈨
+ 0x22229: "5\a\U00022229", // 𢈩
+ 0x2222a: "5\a\U0002222a", // 𢈪
+ 0x2222b: "5\a\U0002222b", // 𢈫
+ 0x2222c: "5\a\U0002222c", // 𢈬
+ 0x2222d: "5\a\U0002222d", // 𢈭
+ 0x2222e: "5\a\U0002222e", // 𢈮
+ 0x2222f: "5\a\U0002222f", // 𢈯
+ 0x22230: "5\a\U00022230", // 𢈰
+ 0x22231: "5\a\U00022231", // 𢈱
+ 0x22232: "'\a\U00022232", // 𢈲
+ 0x22233: "5\b\U00022233", // 𢈳
+ 0x22234: "5\b\U00022234", // 𢈴
+ 0x22235: "5\b\U00022235", // 𢈵
+ 0x22236: "5\b\U00022236", // 𢈶
+ 0x22237: "5\b\U00022237", // 𢈷
+ 0x22238: "5\b\U00022238", // 𢈸
+ 0x22239: "5\b\U00022239", // 𢈹
+ 0x2223a: "5\b\U0002223a", // 𢈺
+ 0x2223b: "5\b\U0002223b", // 𢈻
+ 0x2223c: "5\b\U0002223c", // 𢈼
+ 0x2223d: "5\b\U0002223d", // 𢈽
+ 0x2223e: "5\b\U0002223e", // 𢈾
+ 0x2223f: "5\b\U0002223f", // 𢈿
+ 0x22240: "5\b\U00022240", // 𢉀
+ 0x22241: "5\b\U00022241", // 𢉁
+ 0x22242: "5\b\U00022242", // 𢉂
+ 0x22243: "5\b\U00022243", // 𢉃
+ 0x22244: "5\b\U00022244", // 𢉄
+ 0x22245: "5\b\U00022245", // 𢉅
+ 0x22246: "5\b\U00022246", // 𢉆
+ 0x22247: "5\b\U00022247", // 𢉇
+ 0x22248: "5\b\U00022248", // 𢉈
+ 0x22249: "5\b\U00022249", // 𢉉
+ 0x2224a: "5\b\U0002224a", // 𢉊
+ 0x2224b: "5\b\U0002224b", // 𢉋
+ 0x2224c: "5\b\U0002224c", // 𢉌
+ 0x2224d: "5\b\U0002224d", // 𢉍
+ 0x2224e: "5\b\U0002224e", // 𢉎
+ 0x2224f: "5\b\U0002224f", // 𢉏
+ 0x22250: "5\b\U00022250", // 𢉐
+ 0x22251: "5\b\U00022251", // 𢉑
+ 0x22252: "5\b\U00022252", // 𢉒
+ 0x22253: "5\b\U00022253", // 𢉓
+ 0x22254: "5\b\U00022254", // 𢉔
+ 0x22255: "5\b\U00022255", // 𢉕
+ 0x22256: "\xc6\x00\U00022256", // 𢉖
+ 0x22257: "5\b\U00022257", // 𢉗
+ 0x22258: "5\b\U00022258", // 𢉘
+ 0x22259: "5\b\U00022259", // 𢉙
+ 0x2225a: "5\b\U0002225a", // 𢉚
+ 0x2225b: "5\t\U0002225b", // 𢉛
+ 0x2225c: "5\t\U0002225c", // 𢉜
+ 0x2225d: "5\t\U0002225d", // 𢉝
+ 0x2225e: "5\t\U0002225e", // 𢉞
+ 0x2225f: "5\t\U0002225f", // 𢉟
+ 0x22260: "5\t\U00022260", // 𢉠
+ 0x22261: "5\t\U00022261", // 𢉡
+ 0x22262: "5\t\U00022262", // 𢉢
+ 0x22263: "5\t\U00022263", // 𢉣
+ 0x22264: "5\t\U00022264", // 𢉤
+ 0x22265: "5\t\U00022265", // 𢉥
+ 0x22266: "5\t\U00022266", // 𢉦
+ 0x22267: "5\t\U00022267", // 𢉧
+ 0x22268: "5\t\U00022268", // 𢉨
+ 0x22269: "5\t\U00022269", // 𢉩
+ 0x2226a: "5\t\U0002226a", // 𢉪
+ 0x2226b: "5\t\U0002226b", // 𢉫
+ 0x2226c: "5\t\U0002226c", // 𢉬
+ 0x2226d: "5\t\U0002226d", // 𢉭
+ 0x2226e: "5\t\U0002226e", // 𢉮
+ 0x2226f: "5\t\U0002226f", // 𢉯
+ 0x22270: "5\t\U00022270", // 𢉰
+ 0x22271: "5\t\U00022271", // 𢉱
+ 0x22272: "5\t\U00022272", // 𢉲
+ 0x22273: "5\t\U00022273", // 𢉳
+ 0x22274: "5\t\U00022274", // 𢉴
+ 0x22275: "5\t\U00022275", // 𢉵
+ 0x22276: "5\t\U00022276", // 𢉶
+ 0x22277: "5\t\U00022277", // 𢉷
+ 0x22278: "5\t\U00022278", // 𢉸
+ 0x22279: "5\t\U00022279", // 𢉹
+ 0x2227a: "5\t\U0002227a", // 𢉺
+ 0x2227b: "5\t\U0002227b", // 𢉻
+ 0x2227c: "5\n\U0002227c", // 𢉼
+ 0x2227d: "5\t\U0002227d", // 𢉽
+ 0x2227e: "5\t\U0002227e", // 𢉾
+ 0x2227f: "5\n\U0002227f", // 𢉿
+ 0x22280: "5\n\U00022280", // 𢊀
+ 0x22281: "5\n\U00022281", // 𢊁
+ 0x22282: "5\n\U00022282", // 𢊂
+ 0x22283: "5\n\U00022283", // 𢊃
+ 0x22284: "5\n\U00022284", // 𢊄
+ 0x22285: "5\n\U00022285", // 𢊅
+ 0x22286: "5\n\U00022286", // 𢊆
+ 0x22287: "5\n\U00022287", // 𢊇
+ 0x22288: "5\n\U00022288", // 𢊈
+ 0x22289: "5\n\U00022289", // 𢊉
+ 0x2228a: "5\n\U0002228a", // 𢊊
+ 0x2228b: "5\n\U0002228b", // 𢊋
+ 0x2228c: "5\n\U0002228c", // 𢊌
+ 0x2228d: "5\n\U0002228d", // 𢊍
+ 0x2228e: "5\n\U0002228e", // 𢊎
+ 0x2228f: "5\n\U0002228f", // 𢊏
+ 0x22290: "5\n\U00022290", // 𢊐
+ 0x22291: "5\n\U00022291", // 𢊑
+ 0x22292: "5\n\U00022292", // 𢊒
+ 0x22293: "5\n\U00022293", // 𢊓
+ 0x22294: "5\n\U00022294", // 𢊔
+ 0x22295: "5\v\U00022295", // 𢊕
+ 0x22296: "5\v\U00022296", // 𢊖
+ 0x22297: "5\v\U00022297", // 𢊗
+ 0x22298: "5\v\U00022298", // 𢊘
+ 0x22299: "5\v\U00022299", // 𢊙
+ 0x2229a: "5\v\U0002229a", // 𢊚
+ 0x2229b: "5\v\U0002229b", // 𢊛
+ 0x2229c: "5\v\U0002229c", // 𢊜
+ 0x2229d: "5\v\U0002229d", // 𢊝
+ 0x2229e: "5\v\U0002229e", // 𢊞
+ 0x2229f: "5\v\U0002229f", // 𢊟
+ 0x222a0: "5\v\U000222a0", // 𢊠
+ 0x222a1: "5\v\U000222a1", // 𢊡
+ 0x222a2: "5\v\U000222a2", // 𢊢
+ 0x222a3: "5\v\U000222a3", // 𢊣
+ 0x222a4: "5\v\U000222a4", // 𢊤
+ 0x222a5: "5\v\U000222a5", // 𢊥
+ 0x222a6: "5\v\U000222a6", // 𢊦
+ 0x222a7: "5\v\U000222a7", // 𢊧
+ 0x222a8: "5\v\U000222a8", // 𢊨
+ 0x222a9: "5\v\U000222a9", // 𢊩
+ 0x222aa: "5\v\U000222aa", // 𢊪
+ 0x222ab: "5\v\U000222ab", // 𢊫
+ 0x222ac: "5\v\U000222ac", // 𢊬
+ 0x222ad: "5\f\U000222ad", // 𢊭
+ 0x222ae: "5\f\U000222ae", // 𢊮
+ 0x222af: "5\f\U000222af", // 𢊯
+ 0x222b0: "5\f\U000222b0", // 𢊰
+ 0x222b1: "5\f\U000222b1", // 𢊱
+ 0x222b2: "5\f\U000222b2", // 𢊲
+ 0x222b3: "5\f\U000222b3", // 𢊳
+ 0x222b4: "5\f\U000222b4", // 𢊴
+ 0x222b5: "5\f\U000222b5", // 𢊵
+ 0x222b6: "5\f\U000222b6", // 𢊶
+ 0x222b7: "5\f\U000222b7", // 𢊷
+ 0x222b8: "5\f\U000222b8", // 𢊸
+ 0x222b9: "5\f\U000222b9", // 𢊹
+ 0x222ba: "5\f\U000222ba", // 𢊺
+ 0x222bb: "5\f\U000222bb", // 𢊻
+ 0x222bc: "5\f\U000222bc", // 𢊼
+ 0x222bd: "5\f\U000222bd", // 𢊽
+ 0x222be: "5\f\U000222be", // 𢊾
+ 0x222bf: "5\f\U000222bf", // 𢊿
+ 0x222c0: "5\f\U000222c0", // 𢋀
+ 0x222c1: "5\f\U000222c1", // 𢋁
+ 0x222c2: "5\r\U000222c2", // 𢋂
+ 0x222c3: "5\r\U000222c3", // 𢋃
+ 0x222c4: "5\r\U000222c4", // 𢋄
+ 0x222c5: "5\r\U000222c5", // 𢋅
+ 0x222c6: "5\r\U000222c6", // 𢋆
+ 0x222c7: "5\r\U000222c7", // 𢋇
+ 0x222c8: "5\r\U000222c8", // 𢋈
+ 0x222c9: "5\r\U000222c9", // 𢋉
+ 0x222ca: "5\r\U000222ca", // 𢋊
+ 0x222cb: "5\r\U000222cb", // 𢋋
+ 0x222cc: "5\r\U000222cc", // 𢋌
+ 0x222cd: "5\r\U000222cd", // 𢋍
+ 0x222ce: "5\r\U000222ce", // 𢋎
+ 0x222cf: "5\r\U000222cf", // 𢋏
+ 0x222d0: "5\r\U000222d0", // 𢋐
+ 0x222d1: "5\x0e\U000222d1", // 𢋑
+ 0x222d2: "5\x0e\U000222d2", // 𢋒
+ 0x222d3: "5\x0e\U000222d3", // 𢋓
+ 0x222d4: "5\x0e\U000222d4", // 𢋔
+ 0x222d5: "5\x0e\U000222d5", // 𢋕
+ 0x222d6: "5\x0e\U000222d6", // 𢋖
+ 0x222d7: "5\x0e\U000222d7", // 𢋗
+ 0x222d8: "5\x0e\U000222d8", // 𢋘
+ 0x222d9: "5\x0e\U000222d9", // 𢋙
+ 0x222da: "5\x0e\U000222da", // 𢋚
+ 0x222db: "5\x0e\U000222db", // 𢋛
+ 0x222dc: "\x8e\v\U000222dc", // 𢋜
+ 0x222dd: "5\x0e\U000222dd", // 𢋝
+ 0x222de: "5\x0e\U000222de", // 𢋞
+ 0x222df: "5\x0e\U000222df", // 𢋟
+ 0x222e0: "5\x0e\U000222e0", // 𢋠
+ 0x222e1: "5\x0f\U000222e1", // 𢋡
+ 0x222e2: "5\x0f\U000222e2", // 𢋢
+ 0x222e3: "5\x0f\U000222e3", // 𢋣
+ 0x222e4: "5\x0f\U000222e4", // 𢋤
+ 0x222e5: "5\x0f\U000222e5", // 𢋥
+ 0x222e6: "5\x0f\U000222e6", // 𢋦
+ 0x222e7: "5\x0f\U000222e7", // 𢋧
+ 0x222e8: "5\x0f\U000222e8", // 𢋨
+ 0x222e9: "5\x0f\U000222e9", // 𢋩
+ 0x222ea: "5\x0f\U000222ea", // 𢋪
+ 0x222eb: "5\x0f\U000222eb", // 𢋫
+ 0x222ec: "5\x0f\U000222ec", // 𢋬
+ 0x222ed: "5\x0f\U000222ed", // 𢋭
+ 0x222ee: "5\x10\U000222ee", // 𢋮
+ 0x222ef: "5\x10\U000222ef", // 𢋯
+ 0x222f0: "5\x10\U000222f0", // 𢋰
+ 0x222f1: "5\x10\U000222f1", // 𢋱
+ 0x222f2: "5\x10\U000222f2", // 𢋲
+ 0x222f3: "5\x10\U000222f3", // 𢋳
+ 0x222f4: "5\x10\U000222f4", // 𢋴
+ 0x222f5: "5\x10\U000222f5", // 𢋵
+ 0x222f6: "5\x10\U000222f6", // 𢋶
+ 0x222f7: "5\x10\U000222f7", // 𢋷
+ 0x222f8: "5\x10\U000222f8", // 𢋸
+ 0x222f9: "5\x10\U000222f9", // 𢋹
+ 0x222fa: "5\x10\U000222fa", // 𢋺
+ 0x222fb: "5\x11\U000222fb", // 𢋻
+ 0x222fc: "5\x11\U000222fc", // 𢋼
+ 0x222fd: "5\x11\U000222fd", // 𢋽
+ 0x222fe: "5\x11\U000222fe", // 𢋾
+ 0x222ff: "5\x11\U000222ff", // 𢋿
+ 0x22300: "5\x11\U00022300", // 𢌀
+ 0x22301: "5\x11\U00022301", // 𢌁
+ 0x22302: "5\x11\U00022302", // 𢌂
+ 0x22303: "5\x11\U00022303", // 𢌃
+ 0x22304: "5\x12\U00022304", // 𢌄
+ 0x22305: "5\x12\U00022305", // 𢌅
+ 0x22306: "5\x12\U00022306", // 𢌆
+ 0x22307: "U\x12\U00022307", // 𢌇
+ 0x22308: "5\x13\U00022308", // 𢌈
+ 0x22309: "5\x13\U00022309", // 𢌉
+ 0x2230a: "5\x13\U0002230a", // 𢌊
+ 0x2230b: "5\x13\U0002230b", // 𢌋
+ 0x2230c: "5\x13\U0002230c", // 𢌌
+ 0x2230d: "5\x14\U0002230d", // 𢌍
+ 0x2230e: "5\x14\U0002230e", // 𢌎
+ 0x2230f: "5\x14\U0002230f", // 𢌏
+ 0x22310: "5\x14\U00022310", // 𢌐
+ 0x22311: "5\x14\U00022311", // 𢌑
+ 0x22312: "5\x15\U00022312", // 𢌒
+ 0x22313: "5\x17\U00022313", // 𢌓
+ 0x22314: "5\x18\U00022314", // 𢌔
+ 0x22315: "5\x18\U00022315", // 𢌕
+ 0x22316: "5\x19\U00022316", // 𢌖
+ 0x22317: "6\x02\U00022317", // 𢌗
+ 0x22318: "6\x03\U00022318", // 𢌘
+ 0x22319: "6\x03\U00022319", // 𢌙
+ 0x2231a: "6\x03\U0002231a", // 𢌚
+ 0x2231b: "6\x05\U0002231b", // 𢌛
+ 0x2231c: "6\x04\U0002231c", // 𢌜
+ 0x2231d: "6\x05\U0002231d", // 𢌝
+ 0x2231e: "6\x05\U0002231e", // 𢌞
+ 0x2231f: "6\x06\U0002231f", // 𢌟
+ 0x22320: "6\a\U00022320", // 𢌠
+ 0x22321: "6\a\U00022321", // 𢌡
+ 0x22322: "6\a\U00022322", // 𢌢
+ 0x22323: "6\a\U00022323", // 𢌣
+ 0x22324: "6\a\U00022324", // 𢌤
+ 0x22325: "6\a\U00022325", // 𢌥
+ 0x22326: "6\b\U00022326", // 𢌦
+ 0x22327: "6\b\U00022327", // 𢌧
+ 0x22328: "6\t\U00022328", // 𢌨
+ 0x22329: "6\t\U00022329", // 𢌩
+ 0x2232a: "6\t\U0002232a", // 𢌪
+ 0x2232b: "6\n\U0002232b", // 𢌫
+ 0x2232c: "7\x00\U0002232c", // 𢌬
+ 0x2232d: "7\x01\U0002232d", // 𢌭
+ 0x2232e: "7\x02\U0002232e", // 𢌮
+ 0x2232f: "7\x02\U0002232f", // 𢌯
+ 0x22330: "7\x03\U00022330", // 𢌰
+ 0x22331: "7\x03\U00022331", // 𢌱
+ 0x22332: "7\x03\U00022332", // 𢌲
+ 0x22333: "7\x04\U00022333", // 𢌳
+ 0x22334: "7\x06\U00022334", // 𢌴
+ 0x22335: "7\x04\U00022335", // 𢌵
+ 0x22336: "7\x04\U00022336", // 𢌶
+ 0x22337: "7\x04\U00022337", // 𢌷
+ 0x22338: "7\x04\U00022338", // 𢌸
+ 0x22339: "7\x04\U00022339", // 𢌹
+ 0x2233a: "7\x04\U0002233a", // 𢌺
+ 0x2233b: "7\x05\U0002233b", // 𢌻
+ 0x2233c: "7\x06\U0002233c", // 𢌼
+ 0x2233d: "7\x05\U0002233d", // 𢌽
+ 0x2233e: "7\x05\U0002233e", // 𢌾
+ 0x2233f: "7\x05\U0002233f", // 𢌿
+ 0x22340: "7\x05\U00022340", // 𢍀
+ 0x22341: "7\x05\U00022341", // 𢍁
+ 0x22342: "7\x06\U00022342", // 𢍂
+ 0x22343: "7\x06\U00022343", // 𢍃
+ 0x22344: "7\x06\U00022344", // 𢍄
+ 0x22345: "7\x06\U00022345", // 𢍅
+ 0x22346: "7\x06\U00022346", // 𢍆
+ 0x22347: "7\x06\U00022347", // 𢍇
+ 0x22348: "7\x06\U00022348", // 𢍈
+ 0x22349: "7\x06\U00022349", // 𢍉
+ 0x2234a: "7\x06\U0002234a", // 𢍊
+ 0x2234b: "7\x06\U0002234b", // 𢍋
+ 0x2234c: "7\x06\U0002234c", // 𢍌
+ 0x2234d: "7\a\U0002234d", // 𢍍
+ 0x2234e: "7\a\U0002234e", // 𢍎
+ 0x2234f: "7\a\U0002234f", // 𢍏
+ 0x22350: "7\a\U00022350", // 𢍐
+ 0x22351: "7\a\U00022351", // 𢍑
+ 0x22352: "7\a\U00022352", // 𢍒
+ 0x22353: "7\a\U00022353", // 𢍓
+ 0x22354: "7\b\U00022354", // 𢍔
+ 0x22355: "7\b\U00022355", // 𢍕
+ 0x22356: "7\b\U00022356", // 𢍖
+ 0x22357: "7\b\U00022357", // 𢍗
+ 0x22358: "7\b\U00022358", // 𢍘
+ 0x22359: "7\b\U00022359", // 𢍙
+ 0x2235a: "7\t\U0002235a", // 𢍚
+ 0x2235b: "7\t\U0002235b", // 𢍛
+ 0x2235c: "7\t\U0002235c", // 𢍜
+ 0x2235d: "7\t\U0002235d", // 𢍝
+ 0x2235e: "7\t\U0002235e", // 𢍞
+ 0x2235f: "7\t\U0002235f", // 𢍟
+ 0x22360: "7\t\U00022360", // 𢍠
+ 0x22361: "7\t\U00022361", // 𢍡
+ 0x22362: "7\n\U00022362", // 𢍢
+ 0x22363: "7\n\U00022363", // 𢍣
+ 0x22364: "7\n\U00022364", // 𢍤
+ 0x22365: "7\n\U00022365", // 𢍥
+ 0x22366: "7\v\U00022366", // 𢍦
+ 0x22367: "7\v\U00022367", // 𢍧
+ 0x22368: "7\v\U00022368", // 𢍨
+ 0x22369: "7\v\U00022369", // 𢍩
+ 0x2236a: "7\v\U0002236a", // 𢍪
+ 0x2236b: "7\v\U0002236b", // 𢍫
+ 0x2236c: "7\f\U0002236c", // 𢍬
+ 0x2236d: "\x11\f\U0002236d", // 𢍭
+ 0x2236e: "7\r\U0002236e", // 𢍮
+ 0x2236f: "7\r\U0002236f", // 𢍯
+ 0x22370: "7\r\U00022370", // 𢍰
+ 0x22371: "7\r\U00022371", // 𢍱
+ 0x22372: "7\x0e\U00022372", // 𢍲
+ 0x22373: "7\x0e\U00022373", // 𢍳
+ 0x22374: "7\x0e\U00022374", // 𢍴
+ 0x22375: "7\x10\U00022375", // 𢍵
+ 0x22376: "7\x13\U00022376", // 𢍶
+ 0x22377: "7\x18\U00022377", // 𢍷
+ 0x22378: "7\x18\U00022378", // 𢍸
+ 0x22379: "7\x1a\U00022379", // 𢍹
+ 0x2237a: "8\x00\U0002237a", // 𢍺
+ 0x2237b: "8\x01\U0002237b", // 𢍻
+ 0x2237c: "8\x01\U0002237c", // 𢍼
+ 0x2237d: "8\x03\U0002237d", // 𢍽
+ 0x2237e: "8\x03\U0002237e", // 𢍾
+ 0x2237f: "8\x04\U0002237f", // 𢍿
+ 0x22380: "8\x04\U00022380", // 𢎀
+ 0x22381: "8\x04\U00022381", // 𢎁
+ 0x22382: "8\x04\U00022382", // 𢎂
+ 0x22383: "8\x04\U00022383", // 𢎃
+ 0x22384: "8\x05\U00022384", // 𢎄
+ 0x22385: "8\x05\U00022385", // 𢎅
+ 0x22386: "8\x06\U00022386", // 𢎆
+ 0x22387: "8\x06\U00022387", // 𢎇
+ 0x22388: "8\x06\U00022388", // 𢎈
+ 0x22389: "8\x06\U00022389", // 𢎉
+ 0x2238a: "8\x06\U0002238a", // 𢎊
+ 0x2238b: "8\a\U0002238b", // 𢎋
+ 0x2238c: "8\a\U0002238c", // 𢎌
+ 0x2238d: "8\b\U0002238d", // 𢎍
+ 0x2238e: "8\t\U0002238e", // 𢎎
+ 0x2238f: "8\n\U0002238f", // 𢎏
+ 0x22390: "8\n\U00022390", // 𢎐
+ 0x22391: "8\f\U00022391", // 𢎑
+ 0x22392: "8\f\U00022392", // 𢎒
+ 0x22393: "8\r\U00022393", // 𢎓
+ 0x22394: "8\x0e\U00022394", // 𢎔
+ 0x22395: "8\x0f\U00022395", // 𢎕
+ 0x22396: "8\x12\U00022396", // 𢎖
+ 0x22397: "9\x00\U00022397", // 𢎗
+ 0x22398: "9\x00\U00022398", // 𢎘
+ 0x22399: "9\x01\U00022399", // 𢎙
+ 0x2239a: "9\x01\U0002239a", // 𢎚
+ 0x2239b: "9\x01\U0002239b", // 𢎛
+ 0x2239c: "9\x01\U0002239c", // 𢎜
+ 0x2239d: "9\x01\U0002239d", // 𢎝
+ 0x2239e: "9\x01\U0002239e", // 𢎞
+ 0x2239f: "9\x01\U0002239f", // 𢎟
+ 0x223a0: "9\x01\U000223a0", // 𢎠
+ 0x223a1: "9\x01\U000223a1", // 𢎡
+ 0x223a2: "9\x02\U000223a2", // 𢎢
+ 0x223a3: "9\x02\U000223a3", // 𢎣
+ 0x223a4: "9\x02\U000223a4", // 𢎤
+ 0x223a5: "9\x02\U000223a5", // 𢎥
+ 0x223a6: "9\x02\U000223a6", // 𢎦
+ 0x223a7: "9\x02\U000223a7", // 𢎧
+ 0x223a8: "9\x02\U000223a8", // 𢎨
+ 0x223a9: "9\x02\U000223a9", // 𢎩
+ 0x223aa: "9\x02\U000223aa", // 𢎪
+ 0x223ab: "9\x03\U000223ab", // 𢎫
+ 0x223ac: "9\x03\U000223ac", // 𢎬
+ 0x223ad: "9\x03\U000223ad", // 𢎭
+ 0x223ae: "9\x03\U000223ae", // 𢎮
+ 0x223af: "9\x03\U000223af", // 𢎯
+ 0x223b0: "9\x03\U000223b0", // 𢎰
+ 0x223b1: "9\x03\U000223b1", // 𢎱
+ 0x223b2: "9\x03\U000223b2", // 𢎲
+ 0x223b3: "9\x03\U000223b3", // 𢎳
+ 0x223b4: "9\x03\U000223b4", // 𢎴
+ 0x223b5: "9\x03\U000223b5", // 𢎵
+ 0x223b6: "9\x03\U000223b6", // 𢎶
+ 0x223b7: "9\x04\U000223b7", // 𢎷
+ 0x223b8: "9\x04\U000223b8", // 𢎸
+ 0x223b9: "9\x04\U000223b9", // 𢎹
+ 0x223ba: "9\x04\U000223ba", // 𢎺
+ 0x223bb: "9\x04\U000223bb", // 𢎻
+ 0x223bc: "9\x04\U000223bc", // 𢎼
+ 0x223bd: "9\x04\U000223bd", // 𢎽
+ 0x223be: "9\x04\U000223be", // 𢎾
+ 0x223bf: "9\x04\U000223bf", // 𢎿
+ 0x223c0: "9\x04\U000223c0", // 𢏀
+ 0x223c1: "9\x04\U000223c1", // 𢏁
+ 0x223c2: "9\x04\U000223c2", // 𢏂
+ 0x223c3: "9\x04\U000223c3", // 𢏃
+ 0x223c4: "9\x04\U000223c4", // 𢏄
+ 0x223c5: "9\x04\U000223c5", // 𢏅
+ 0x223c6: "9\x05\U000223c6", // 𢏆
+ 0x223c7: "9\x05\U000223c7", // 𢏇
+ 0x223c8: "9\x05\U000223c8", // 𢏈
+ 0x223c9: "9\x05\U000223c9", // 𢏉
+ 0x223ca: "9\x05\U000223ca", // 𢏊
+ 0x223cb: "9\x05\U000223cb", // 𢏋
+ 0x223cc: "9\x05\U000223cc", // 𢏌
+ 0x223cd: "9\x05\U000223cd", // 𢏍
+ 0x223ce: "9\x05\U000223ce", // 𢏎
+ 0x223cf: "9\x05\U000223cf", // 𢏏
+ 0x223d0: "9\x05\U000223d0", // 𢏐
+ 0x223d1: "9\x05\U000223d1", // 𢏑
+ 0x223d2: "9\x05\U000223d2", // 𢏒
+ 0x223d3: "9\x05\U000223d3", // 𢏓
+ 0x223d4: "9\x06\U000223d4", // 𢏔
+ 0x223d5: "9\x06\U000223d5", // 𢏕
+ 0x223d6: "9\x06\U000223d6", // 𢏖
+ 0x223d7: "9\x06\U000223d7", // 𢏗
+ 0x223d8: "9\x06\U000223d8", // 𢏘
+ 0x223d9: "9\x06\U000223d9", // 𢏙
+ 0x223da: "9\x06\U000223da", // 𢏚
+ 0x223db: "9\x06\U000223db", // 𢏛
+ 0x223dc: "9\x06\U000223dc", // 𢏜
+ 0x223dd: "9\x06\U000223dd", // 𢏝
+ 0x223de: "9\x06\U000223de", // 𢏞
+ 0x223df: "9\x06\U000223df", // 𢏟
+ 0x223e0: "9\x06\U000223e0", // 𢏠
+ 0x223e1: "9\x06\U000223e1", // 𢏡
+ 0x223e2: "9\x06\U000223e2", // 𢏢
+ 0x223e3: "9\x06\U000223e3", // 𢏣
+ 0x223e4: "9\a\U000223e4", // 𢏤
+ 0x223e5: "9\a\U000223e5", // 𢏥
+ 0x223e6: "9\a\U000223e6", // 𢏦
+ 0x223e7: "9\a\U000223e7", // 𢏧
+ 0x223e8: "9\a\U000223e8", // 𢏨
+ 0x223e9: "9\a\U000223e9", // 𢏩
+ 0x223ea: "9\a\U000223ea", // 𢏪
+ 0x223eb: "9\a\U000223eb", // 𢏫
+ 0x223ec: "9\a\U000223ec", // 𢏬
+ 0x223ed: "9\a\U000223ed", // 𢏭
+ 0x223ee: "9\b\U000223ee", // 𢏮
+ 0x223ef: "9\b\U000223ef", // 𢏯
+ 0x223f0: "9\b\U000223f0", // 𢏰
+ 0x223f1: "9\b\U000223f1", // 𢏱
+ 0x223f2: "9\b\U000223f2", // 𢏲
+ 0x223f3: "9\b\U000223f3", // 𢏳
+ 0x223f4: "9\b\U000223f4", // 𢏴
+ 0x223f5: "9\b\U000223f5", // 𢏵
+ 0x223f6: "9\b\U000223f6", // 𢏶
+ 0x223f7: "9\b\U000223f7", // 𢏷
+ 0x223f8: "9\b\U000223f8", // 𢏸
+ 0x223f9: "9\b\U000223f9", // 𢏹
+ 0x223fa: "9\b\U000223fa", // 𢏺
+ 0x223fb: "9\b\U000223fb", // 𢏻
+ 0x223fc: "9\b\U000223fc", // 𢏼
+ 0x223fd: "9\b\U000223fd", // 𢏽
+ 0x223fe: "9\b\U000223fe", // 𢏾
+ 0x223ff: "9\b\U000223ff", // 𢏿
+ 0x22400: "9\t\U00022400", // 𢐀
+ 0x22401: "9\t\U00022401", // 𢐁
+ 0x22402: "9\t\U00022402", // 𢐂
+ 0x22403: "9\t\U00022403", // 𢐃
+ 0x22404: "9\t\U00022404", // 𢐄
+ 0x22405: "9\t\U00022405", // 𢐅
+ 0x22406: "9\t\U00022406", // 𢐆
+ 0x22407: "9\t\U00022407", // 𢐇
+ 0x22408: "9\t\U00022408", // 𢐈
+ 0x22409: "9\t\U00022409", // 𢐉
+ 0x2240a: "9\n\U0002240a", // 𢐊
+ 0x2240b: "9\n\U0002240b", // 𢐋
+ 0x2240c: "9\n\U0002240c", // 𢐌
+ 0x2240d: "9\n\U0002240d", // 𢐍
+ 0x2240e: "9\n\U0002240e", // 𢐎
+ 0x2240f: "9\n\U0002240f", // 𢐏
+ 0x22410: "9\n\U00022410", // 𢐐
+ 0x22411: "9\n\U00022411", // 𢐑
+ 0x22412: "9\v\U00022412", // 𢐒
+ 0x22413: "9\v\U00022413", // 𢐓
+ 0x22414: "9\v\U00022414", // 𢐔
+ 0x22415: "9\v\U00022415", // 𢐕
+ 0x22416: "9\v\U00022416", // 𢐖
+ 0x22417: "9\v\U00022417", // 𢐗
+ 0x22418: "9\v\U00022418", // 𢐘
+ 0x22419: "9\v\U00022419", // 𢐙
+ 0x2241a: "9\v\U0002241a", // 𢐚
+ 0x2241b: "9\v\U0002241b", // 𢐛
+ 0x2241c: "9\v\U0002241c", // 𢐜
+ 0x2241d: "9\v\U0002241d", // 𢐝
+ 0x2241e: "9\f\U0002241e", // 𢐞
+ 0x2241f: "9\f\U0002241f", // 𢐟
+ 0x22420: "9\f\U00022420", // 𢐠
+ 0x22421: "9\f\U00022421", // 𢐡
+ 0x22422: "9\f\U00022422", // 𢐢
+ 0x22423: "9\f\U00022423", // 𢐣
+ 0x22424: "9\f\U00022424", // 𢐤
+ 0x22425: "9\r\U00022425", // 𢐥
+ 0x22426: "9\r\U00022426", // 𢐦
+ 0x22427: "9\r\U00022427", // 𢐧
+ 0x22428: "9\r\U00022428", // 𢐨
+ 0x22429: "9\r\U00022429", // 𢐩
+ 0x2242a: "9\r\U0002242a", // 𢐪
+ 0x2242b: "w\n\U0002242b", // 𢐫
+ 0x2242c: "9\x0e\U0002242c", // 𢐬
+ 0x2242d: "9\x0e\U0002242d", // 𢐭
+ 0x2242e: "9\x0e\U0002242e", // 𢐮
+ 0x2242f: "9\x0e\U0002242f", // 𢐯
+ 0x22430: "9\x0e\U00022430", // 𢐰
+ 0x22431: "9\x0e\U00022431", // 𢐱
+ 0x22432: "9\x0f\U00022432", // 𢐲
+ 0x22433: "9\x0f\U00022433", // 𢐳
+ 0x22434: "9\x0f\U00022434", // 𢐴
+ 0x22435: "9\x0f\U00022435", // 𢐵
+ 0x22436: "9\x0f\U00022436", // 𢐶
+ 0x22437: "9\x0f\U00022437", // 𢐷
+ 0x22438: "9\x10\U00022438", // 𢐸
+ 0x22439: "9\x10\U00022439", // 𢐹
+ 0x2243a: "9\x10\U0002243a", // 𢐺
+ 0x2243b: "9\x10\U0002243b", // 𢐻
+ 0x2243c: "9\x10\U0002243c", // 𢐼
+ 0x2243d: "9\x10\U0002243d", // 𢐽
+ 0x2243e: "9\x10\U0002243e", // 𢐾
+ 0x2243f: "9\x11\U0002243f", // 𢐿
+ 0x22440: "9\x11\U00022440", // 𢑀
+ 0x22441: "9\x11\U00022441", // 𢑁
+ 0x22442: "9\x11\U00022442", // 𢑂
+ 0x22443: "9\x11\U00022443", // 𢑃
+ 0x22444: "9\x11\U00022444", // 𢑄
+ 0x22445: "9\x11\U00022445", // 𢑅
+ 0x22446: "9\x12\U00022446", // 𢑆
+ 0x22447: "9\x12\U00022447", // 𢑇
+ 0x22448: "9\x12\U00022448", // 𢑈
+ 0x22449: "9\x12\U00022449", // 𢑉
+ 0x2244a: "9\x13\U0002244a", // 𢑊
+ 0x2244b: "9\x15\U0002244b", // 𢑋
+ 0x2244c: "9\x16\U0002244c", // 𢑌
+ 0x2244d: "9\x19\U0002244d", // 𢑍
+ 0x2244e: "9\x1d\U0002244e", // 𢑎
+ 0x2244f: ":\x03\U0002244f", // 𢑏
+ 0x22450: ":\x03\U00022450", // 𢑐
+ 0x22451: ":\x03\U00022451", // 𢑑
+ 0x22452: ":\x03\U00022452", // 𢑒
+ 0x22453: ":\x04\U00022453", // 𢑓
+ 0x22454: ":\x05\U00022454", // 𢑔
+ 0x22455: ":\x05\U00022455", // 𢑕
+ 0x22456: "f\x03\U00022456", // 𢑖
+ 0x22457: ":\x06\U00022457", // 𢑗
+ 0x22458: ":\x06\U00022458", // 𢑘
+ 0x22459: ":\x06\U00022459", // 𢑙
+ 0x2245a: ":\x06\U0002245a", // 𢑚
+ 0x2245b: ":\a\U0002245b", // 𢑛
+ 0x2245c: ":\a\U0002245c", // 𢑜
+ 0x2245d: ":\a\U0002245d", // 𢑝
+ 0x2245e: ":\b\U0002245e", // 𢑞
+ 0x2245f: ":\b\U0002245f", // 𢑟
+ 0x22460: ":\b\U00022460", // 𢑠
+ 0x22461: ":\b\U00022461", // 𢑡
+ 0x22462: ":\t\U00022462", // 𢑢
+ 0x22463: ":\t\U00022463", // 𢑣
+ 0x22464: ":\t\U00022464", // 𢑤
+ 0x22465: ":\n\U00022465", // 𢑥
+ 0x22466: ":\n\U00022466", // 𢑦
+ 0x22467: ":\n\U00022467", // 𢑧
+ 0x22468: ":\v\U00022468", // 𢑨
+ 0x22469: ":\v\U00022469", // 𢑩
+ 0x2246a: ":\v\U0002246a", // 𢑪
+ 0x2246b: ":\v\U0002246b", // 𢑫
+ 0x2246c: ":\v\U0002246c", // 𢑬
+ 0x2246d: ":\f\U0002246d", // 𢑭
+ 0x2246e: ":\f\U0002246e", // 𢑮
+ 0x2246f: ":\r\U0002246f", // 𢑯
+ 0x22470: "0\r\U00022470", // 𢑰
+ 0x22471: ":\r\U00022471", // 𢑱
+ 0x22472: ":\x0e\U00022472", // 𢑲
+ 0x22473: ":\x0f\U00022473", // 𢑳
+ 0x22474: ":\x0f\U00022474", // 𢑴
+ 0x22475: ":\x0f\U00022475", // 𢑵
+ 0x22476: ":\x0f\U00022476", // 𢑶
+ 0x22477: ":\x10\U00022477", // 𢑷
+ 0x22478: ":\x10\U00022478", // 𢑸
+ 0x22479: ":\x10\U00022479", // 𢑹
+ 0x2247a: ":\x10\U0002247a", // 𢑺
+ 0x2247b: ":\x11\U0002247b", // 𢑻
+ 0x2247c: ":\x11\U0002247c", // 𢑼
+ 0x2247d: ":\x13\U0002247d", // 𢑽
+ 0x2247e: ":\x14\U0002247e", // 𢑾
+ 0x2247f: ":\x17\U0002247f", // 𢑿
+ 0x22480: ";\x02\U00022480", // 𢒀
+ 0x22481: ";\x02\U00022481", // 𢒁
+ 0x22482: ";\x02\U00022482", // 𢒂
+ 0x22483: ";\x03\U00022483", // 𢒃
+ 0x22484: ";\x03\U00022484", // 𢒄
+ 0x22485: ";\x03\U00022485", // 𢒅
+ 0x22486: ";\x03\U00022486", // 𢒆
+ 0x22487: ";\x04\U00022487", // 𢒇
+ 0x22488: ";\x04\U00022488", // 𢒈
+ 0x22489: ";\x05\U00022489", // 𢒉
+ 0x2248a: ";\x05\U0002248a", // 𢒊
+ 0x2248b: ";\x05\U0002248b", // 𢒋
+ 0x2248c: ";\x05\U0002248c", // 𢒌
+ 0x2248d: ";\x05\U0002248d", // 𢒍
+ 0x2248e: ";\x06\U0002248e", // 𢒎
+ 0x2248f: ";\a\U0002248f", // 𢒏
+ 0x22490: ";\a\U00022490", // 𢒐
+ 0x22491: ";\a\U00022491", // 𢒑
+ 0x22492: ";\a\U00022492", // 𢒒
+ 0x22493: ";\a\U00022493", // 𢒓
+ 0x22494: ";\b\U00022494", // 𢒔
+ 0x22495: ";\b\U00022495", // 𢒕
+ 0x22496: ";\b\U00022496", // 𢒖
+ 0x22497: ";\b\U00022497", // 𢒗
+ 0x22498: ";\b\U00022498", // 𢒘
+ 0x22499: ";\b\U00022499", // 𢒙
+ 0x2249a: ";\b\U0002249a", // 𢒚
+ 0x2249b: ";\b\U0002249b", // 𢒛
+ 0x2249c: ";\b\U0002249c", // 𢒜
+ 0x2249d: ";\b\U0002249d", // 𢒝
+ 0x2249e: ";\t\U0002249e", // 𢒞
+ 0x2249f: ";\t\U0002249f", // 𢒟
+ 0x224a0: ";\t\U000224a0", // 𢒠
+ 0x224a1: ";\t\U000224a1", // 𢒡
+ 0x224a2: ";\t\U000224a2", // 𢒢
+ 0x224a3: ";\t\U000224a3", // 𢒣
+ 0x224a4: ";\n\U000224a4", // 𢒤
+ 0x224a5: ";\n\U000224a5", // 𢒥
+ 0x224a6: ";\n\U000224a6", // 𢒦
+ 0x224a7: ";\n\U000224a7", // 𢒧
+ 0x224a8: ";\n\U000224a8", // 𢒨
+ 0x224a9: ";\v\U000224a9", // 𢒩
+ 0x224aa: ";\v\U000224aa", // 𢒪
+ 0x224ab: ";\f\U000224ab", // 𢒫
+ 0x224ac: ";\f\U000224ac", // 𢒬
+ 0x224ad: ";\f\U000224ad", // 𢒭
+ 0x224ae: ";\f\U000224ae", // 𢒮
+ 0x224af: ";\f\U000224af", // 𢒯
+ 0x224b0: ";\r\U000224b0", // 𢒰
+ 0x224b1: ";\r\U000224b1", // 𢒱
+ 0x224b2: ";\r\U000224b2", // 𢒲
+ 0x224b3: ";\r\U000224b3", // 𢒳
+ 0x224b4: ";\x0e\U000224b4", // 𢒴
+ 0x224b5: ";\x0f\U000224b5", // 𢒵
+ 0x224b6: ";\x12\U000224b6", // 𢒶
+ 0x224b7: ";\x11\U000224b7", // 𢒷
+ 0x224b8: ";\x13\U000224b8", // 𢒸
+ 0x224b9: ";\x13\U000224b9", // 𢒹
+ 0x224ba: ";\x13\U000224ba", // 𢒺
+ 0x224bb: ";\x16\U000224bb", // 𢒻
+ 0x224bc: "<\x01\U000224bc", // 𢒼
+ 0x224bd: "<\x01\U000224bd", // 𢒽
+ 0x224be: "<\x02\U000224be", // 𢒾
+ 0x224bf: "<\x02\U000224bf", // 𢒿
+ 0x224c0: "<\x03\U000224c0", // 𢓀
+ 0x224c1: "<\x03\U000224c1", // 𢓁
+ 0x224c2: "<\x03\U000224c2", // 𢓂
+ 0x224c3: "<\x03\U000224c3", // 𢓃
+ 0x224c4: "<\x04\U000224c4", // 𢓄
+ 0x224c5: "<\x04\U000224c5", // 𢓅
+ 0x224c6: "<\x04\U000224c6", // 𢓆
+ 0x224c7: "<\x04\U000224c7", // 𢓇
+ 0x224c8: "<\x04\U000224c8", // 𢓈
+ 0x224c9: "<\x04\U000224c9", // 𢓉
+ 0x224ca: "<\x04\U000224ca", // 𢓊
+ 0x224cb: "<\x04\U000224cb", // 𢓋
+ 0x224cc: "<\x04\U000224cc", // 𢓌
+ 0x224cd: "<\x04\U000224cd", // 𢓍
+ 0x224ce: "<\x04\U000224ce", // 𢓎
+ 0x224cf: "<\x04\U000224cf", // 𢓏
+ 0x224d0: "<\x04\U000224d0", // 𢓐
+ 0x224d1: "<\x04\U000224d1", // 𢓑
+ 0x224d2: "<\x05\U000224d2", // 𢓒
+ 0x224d3: "<\x05\U000224d3", // 𢓓
+ 0x224d4: "<\x05\U000224d4", // 𢓔
+ 0x224d5: "<\x05\U000224d5", // 𢓕
+ 0x224d6: "<\x05\U000224d6", // 𢓖
+ 0x224d7: "<\x05\U000224d7", // 𢓗
+ 0x224d8: "<\x05\U000224d8", // 𢓘
+ 0x224d9: "<\x05\U000224d9", // 𢓙
+ 0x224da: "<\x05\U000224da", // 𢓚
+ 0x224db: "<\x05\U000224db", // 𢓛
+ 0x224dc: "<\x06\U000224dc", // 𢓜
+ 0x224dd: "<\x06\U000224dd", // 𢓝
+ 0x224de: "<\x06\U000224de", // 𢓞
+ 0x224df: "<\x06\U000224df", // 𢓟
+ 0x224e0: "<\x06\U000224e0", // 𢓠
+ 0x224e1: "<\x06\U000224e1", // 𢓡
+ 0x224e2: "<\x06\U000224e2", // 𢓢
+ 0x224e3: "<\x06\U000224e3", // 𢓣
+ 0x224e4: "<\x06\U000224e4", // 𢓤
+ 0x224e5: "<\x06\U000224e5", // 𢓥
+ 0x224e6: "<\x06\U000224e6", // 𢓦
+ 0x224e7: "<\x06\U000224e7", // 𢓧
+ 0x224e8: "<\x06\U000224e8", // 𢓨
+ 0x224e9: "<\x06\U000224e9", // 𢓩
+ 0x224ea: "<\a\U000224ea", // 𢓪
+ 0x224eb: "<\a\U000224eb", // 𢓫
+ 0x224ec: "<\a\U000224ec", // 𢓬
+ 0x224ed: "<\a\U000224ed", // 𢓭
+ 0x224ee: "<\a\U000224ee", // 𢓮
+ 0x224ef: "<\a\U000224ef", // 𢓯
+ 0x224f0: "<\a\U000224f0", // 𢓰
+ 0x224f1: "<\a\U000224f1", // 𢓱
+ 0x224f2: "<\a\U000224f2", // 𢓲
+ 0x224f3: "<\a\U000224f3", // 𢓳
+ 0x224f4: "<\a\U000224f4", // 𢓴
+ 0x224f5: "<\a\U000224f5", // 𢓵
+ 0x224f6: "<\a\U000224f6", // 𢓶
+ 0x224f7: "<\a\U000224f7", // 𢓷
+ 0x224f8: "<\a\U000224f8", // 𢓸
+ 0x224f9: "<\a\U000224f9", // 𢓹
+ 0x224fa: "<\a\U000224fa", // 𢓺
+ 0x224fb: "<\a\U000224fb", // 𢓻
+ 0x224fc: "<\a\U000224fc", // 𢓼
+ 0x224fd: "<\a\U000224fd", // 𢓽
+ 0x224fe: "<\a\U000224fe", // 𢓾
+ 0x224ff: "<\a\U000224ff", // 𢓿
+ 0x22500: "<\a\U00022500", // 𢔀
+ 0x22501: "<\b\U00022501", // 𢔁
+ 0x22502: "<\b\U00022502", // 𢔂
+ 0x22503: "<\b\U00022503", // 𢔃
+ 0x22504: "<\b\U00022504", // 𢔄
+ 0x22505: "<\b\U00022505", // 𢔅
+ 0x22506: "<\b\U00022506", // 𢔆
+ 0x22507: "<\b\U00022507", // 𢔇
+ 0x22508: "<\b\U00022508", // 𢔈
+ 0x22509: "<\b\U00022509", // 𢔉
+ 0x2250a: "<\b\U0002250a", // 𢔊
+ 0x2250b: "<\b\U0002250b", // 𢔋
+ 0x2250c: "<\b\U0002250c", // 𢔌
+ 0x2250d: "<\b\U0002250d", // 𢔍
+ 0x2250e: "<\b\U0002250e", // 𢔎
+ 0x2250f: "<\b\U0002250f", // 𢔏
+ 0x22510: "<\b\U00022510", // 𢔐
+ 0x22511: "<\b\U00022511", // 𢔑
+ 0x22512: "<\b\U00022512", // 𢔒
+ 0x22513: "<\b\U00022513", // 𢔓
+ 0x22514: "<\b\U00022514", // 𢔔
+ 0x22515: "<\b\U00022515", // 𢔕
+ 0x22516: "<\b\U00022516", // 𢔖
+ 0x22517: "<\b\U00022517", // 𢔗
+ 0x22518: "<\b\U00022518", // 𢔘
+ 0x22519: "<\b\U00022519", // 𢔙
+ 0x2251a: "<\b\U0002251a", // 𢔚
+ 0x2251b: "<\b\U0002251b", // 𢔛
+ 0x2251c: "<\b\U0002251c", // 𢔜
+ 0x2251d: "<\b\U0002251d", // 𢔝
+ 0x2251e: "<\b\U0002251e", // 𢔞
+ 0x2251f: "<\t\U0002251f", // 𢔟
+ 0x22520: "<\t\U00022520", // 𢔠
+ 0x22521: "<\t\U00022521", // 𢔡
+ 0x22522: "<\t\U00022522", // 𢔢
+ 0x22523: "<\t\U00022523", // 𢔣
+ 0x22524: "<\t\U00022524", // 𢔤
+ 0x22525: "<\t\U00022525", // 𢔥
+ 0x22526: "<\t\U00022526", // 𢔦
+ 0x22527: "<\t\U00022527", // 𢔧
+ 0x22528: "<\t\U00022528", // 𢔨
+ 0x22529: "<\t\U00022529", // 𢔩
+ 0x2252a: "<\t\U0002252a", // 𢔪
+ 0x2252b: "<\t\U0002252b", // 𢔫
+ 0x2252c: "\x90\x06\U0002252c", // 𢔬
+ 0x2252d: "<\t\U0002252d", // 𢔭
+ 0x2252e: "<\t\U0002252e", // 𢔮
+ 0x2252f: "<\t\U0002252f", // 𢔯
+ 0x22530: "<\t\U00022530", // 𢔰
+ 0x22531: "<\t\U00022531", // 𢔱
+ 0x22532: "<\n\U00022532", // 𢔲
+ 0x22533: "<\n\U00022533", // 𢔳
+ 0x22534: "<\n\U00022534", // 𢔴
+ 0x22535: "<\n\U00022535", // 𢔵
+ 0x22536: "<\n\U00022536", // 𢔶
+ 0x22537: "<\n\U00022537", // 𢔷
+ 0x22538: "<\n\U00022538", // 𢔸
+ 0x22539: "<\n\U00022539", // 𢔹
+ 0x2253a: "<\n\U0002253a", // 𢔺
+ 0x2253b: "<\n\U0002253b", // 𢔻
+ 0x2253c: "<\n\U0002253c", // 𢔼
+ 0x2253d: "<\n\U0002253d", // 𢔽
+ 0x2253e: "<\n\U0002253e", // 𢔾
+ 0x2253f: "<\n\U0002253f", // 𢔿
+ 0x22540: "<\n\U00022540", // 𢕀
+ 0x22541: "<\n\U00022541", // 𢕁
+ 0x22542: "<\n\U00022542", // 𢕂
+ 0x22543: "<\n\U00022543", // 𢕃
+ 0x22544: "<\n\U00022544", // 𢕄
+ 0x22545: "<\n\U00022545", // 𢕅
+ 0x22546: "<\n\U00022546", // 𢕆
+ 0x22547: "<\n\U00022547", // 𢕇
+ 0x22548: "<\n\U00022548", // 𢕈
+ 0x22549: "<\n\U00022549", // 𢕉
+ 0x2254a: "<\n\U0002254a", // 𢕊
+ 0x2254b: "<\n\U0002254b", // 𢕋
+ 0x2254c: "<\n\U0002254c", // 𢕌
+ 0x2254d: "<\n\U0002254d", // 𢕍
+ 0x2254e: "<\n\U0002254e", // 𢕎
+ 0x2254f: "<\v\U0002254f", // 𢕏
+ 0x22550: "<\v\U00022550", // 𢕐
+ 0x22551: "<\v\U00022551", // 𢕑
+ 0x22552: "<\v\U00022552", // 𢕒
+ 0x22553: "<\v\U00022553", // 𢕓
+ 0x22554: "<\v\U00022554", // 𢕔
+ 0x22555: "<\v\U00022555", // 𢕕
+ 0x22556: "<\v\U00022556", // 𢕖
+ 0x22557: "<\v\U00022557", // 𢕗
+ 0x22558: "<\v\U00022558", // 𢕘
+ 0x22559: "<\v\U00022559", // 𢕙
+ 0x2255a: "<\v\U0002255a", // 𢕚
+ 0x2255b: "<\v\U0002255b", // 𢕛
+ 0x2255c: "<\v\U0002255c", // 𢕜
+ 0x2255d: "<\v\U0002255d", // 𢕝
+ 0x2255e: "<\v\U0002255e", // 𢕞
+ 0x2255f: "<\v\U0002255f", // 𢕟
+ 0x22560: "<\v\U00022560", // 𢕠
+ 0x22561: "<\v\U00022561", // 𢕡
+ 0x22562: "<\v\U00022562", // 𢕢
+ 0x22563: "<\v\U00022563", // 𢕣
+ 0x22564: "<\v\U00022564", // 𢕤
+ 0x22565: "<\v\U00022565", // 𢕥
+ 0x22566: "<\v\U00022566", // 𢕦
+ 0x22567: "<\n\U00022567", // 𢕧
+ 0x22568: "<\v\U00022568", // 𢕨
+ 0x22569: "<\v\U00022569", // 𢕩
+ 0x2256a: "<\f\U0002256a", // 𢕪
+ 0x2256b: "<\f\U0002256b", // 𢕫
+ 0x2256c: "<\f\U0002256c", // 𢕬
+ 0x2256d: "<\f\U0002256d", // 𢕭
+ 0x2256e: "<\f\U0002256e", // 𢕮
+ 0x2256f: "<\f\U0002256f", // 𢕯
+ 0x22570: "<\f\U00022570", // 𢕰
+ 0x22571: "<\f\U00022571", // 𢕱
+ 0x22572: "<\f\U00022572", // 𢕲
+ 0x22573: "<\f\U00022573", // 𢕳
+ 0x22574: "<\f\U00022574", // 𢕴
+ 0x22575: "<\f\U00022575", // 𢕵
+ 0x22576: "<\f\U00022576", // 𢕶
+ 0x22577: "<\f\U00022577", // 𢕷
+ 0x22578: "<\f\U00022578", // 𢕸
+ 0x22579: "<\r\U00022579", // 𢕹
+ 0x2257a: "<\r\U0002257a", // 𢕺
+ 0x2257b: "<\r\U0002257b", // 𢕻
+ 0x2257c: "<\r\U0002257c", // 𢕼
+ 0x2257d: "<\r\U0002257d", // 𢕽
+ 0x2257e: "<\r\U0002257e", // 𢕾
+ 0x2257f: "<\r\U0002257f", // 𢕿
+ 0x22580: "<\r\U00022580", // 𢖀
+ 0x22581: "<\r\U00022581", // 𢖁
+ 0x22582: "<\r\U00022582", // 𢖂
+ 0x22583: "<\r\U00022583", // 𢖃
+ 0x22584: "<\r\U00022584", // 𢖄
+ 0x22585: "\x90\n\U00022585", // 𢖅
+ 0x22586: "<\r\U00022586", // 𢖆
+ 0x22587: "<\r\U00022587", // 𢖇
+ 0x22588: "<\x0e\U00022588", // 𢖈
+ 0x22589: "<\x0e\U00022589", // 𢖉
+ 0x2258a: "<\x0e\U0002258a", // 𢖊
+ 0x2258b: "\x90\v\U0002258b", // 𢖋
+ 0x2258c: "<\x0e\U0002258c", // 𢖌
+ 0x2258d: "<\x0e\U0002258d", // 𢖍
+ 0x2258e: "<\x0e\U0002258e", // 𢖎
+ 0x2258f: "<\x0f\U0002258f", // 𢖏
+ 0x22590: "<\x0f\U00022590", // 𢖐
+ 0x22591: "<\x0f\U00022591", // 𢖑
+ 0x22592: "<\x0f\U00022592", // 𢖒
+ 0x22593: "<\x0f\U00022593", // 𢖓
+ 0x22594: "<\x0f\U00022594", // 𢖔
+ 0x22595: "<\x0f\U00022595", // 𢖕
+ 0x22596: "<\x0f\U00022596", // 𢖖
+ 0x22597: "<\x0f\U00022597", // 𢖗
+ 0x22598: "<\x10\U00022598", // 𢖘
+ 0x22599: "<\x10\U00022599", // 𢖙
+ 0x2259a: "<\x10\U0002259a", // 𢖚
+ 0x2259b: "\xcb\a\U0002259b", // 𢖛
+ 0x2259c: "<\x10\U0002259c", // 𢖜
+ 0x2259d: "<\x11\U0002259d", // 𢖝
+ 0x2259e: "<\x11\U0002259e", // 𢖞
+ 0x2259f: "<\x11\U0002259f", // 𢖟
+ 0x225a0: "<\x11\U000225a0", // 𢖠
+ 0x225a1: "\x90\x0e\U000225a1", // 𢖡
+ 0x225a2: "<\x11\U000225a2", // 𢖢
+ 0x225a3: "<\x12\U000225a3", // 𢖣
+ 0x225a4: "<\x12\U000225a4", // 𢖤
+ 0x225a5: "<\x13\U000225a5", // 𢖥
+ 0x225a6: "<\x14\U000225a6", // 𢖦
+ 0x225a7: "<\x16\U000225a7", // 𢖧
+ 0x225a8: "<\x18\U000225a8", // 𢖨
+ 0x225a9: "=\x00\U000225a9", // 𢖩
+ 0x225aa: "=\x01\U000225aa", // 𢖪
+ 0x225ab: "=\x02\U000225ab", // 𢖫
+ 0x225ac: "=\x02\U000225ac", // 𢖬
+ 0x225ad: "=\x02\U000225ad", // 𢖭
+ 0x225ae: "=\x02\U000225ae", // 𢖮
+ 0x225af: "=\x02\U000225af", // 𢖯
+ 0x225b0: "=\x02\U000225b0", // 𢖰
+ 0x225b1: "=\x02\U000225b1", // 𢖱
+ 0x225b2: "=\x03\U000225b2", // 𢖲
+ 0x225b3: "=\x03\U000225b3", // 𢖳
+ 0x225b4: "=\x03\U000225b4", // 𢖴
+ 0x225b5: "=\x03\U000225b5", // 𢖵
+ 0x225b6: "=\x03\U000225b6", // 𢖶
+ 0x225b7: "=\x03\U000225b7", // 𢖷
+ 0x225b8: "=\x03\U000225b8", // 𢖸
+ 0x225b9: "=\x03\U000225b9", // 𢖹
+ 0x225ba: "=\x03\U000225ba", // 𢖺
+ 0x225bb: "=\x03\U000225bb", // 𢖻
+ 0x225bc: "=\x03\U000225bc", // 𢖼
+ 0x225bd: "=\x03\U000225bd", // 𢖽
+ 0x225be: "=\x03\U000225be", // 𢖾
+ 0x225bf: "=\x03\U000225bf", // 𢖿
+ 0x225c0: "=\x03\U000225c0", // 𢗀
+ 0x225c1: "=\x03\U000225c1", // 𢗁
+ 0x225c2: "=\x03\U000225c2", // 𢗂
+ 0x225c3: "=\x03\U000225c3", // 𢗃
+ 0x225c4: "=\x03\U000225c4", // 𢗄
+ 0x225c5: "=\x03\U000225c5", // 𢗅
+ 0x225c6: "=\x03\U000225c6", // 𢗆
+ 0x225c7: "=\x03\U000225c7", // 𢗇
+ 0x225c8: "=\x03\U000225c8", // 𢗈
+ 0x225c9: "=\x04\U000225c9", // 𢗉
+ 0x225ca: "=\x04\U000225ca", // 𢗊
+ 0x225cb: "=\x04\U000225cb", // 𢗋
+ 0x225cc: "=\x04\U000225cc", // 𢗌
+ 0x225cd: "=\x04\U000225cd", // 𢗍
+ 0x225ce: "=\x04\U000225ce", // 𢗎
+ 0x225cf: "=\x04\U000225cf", // 𢗏
+ 0x225d0: "=\x04\U000225d0", // 𢗐
+ 0x225d1: "=\x04\U000225d1", // 𢗑
+ 0x225d2: "=\x04\U000225d2", // 𢗒
+ 0x225d3: "=\x04\U000225d3", // 𢗓
+ 0x225d4: "=\x04\U000225d4", // 𢗔
+ 0x225d5: "=\x04\U000225d5", // 𢗕
+ 0x225d6: "=\x04\U000225d6", // 𢗖
+ 0x225d7: "=\x04\U000225d7", // 𢗗
+ 0x225d8: "=\x04\U000225d8", // 𢗘
+ 0x225d9: "=\x04\U000225d9", // 𢗙
+ 0x225da: "=\x04\U000225da", // 𢗚
+ 0x225db: "=\x04\U000225db", // 𢗛
+ 0x225dc: "=\x04\U000225dc", // 𢗜
+ 0x225dd: "=\x04\U000225dd", // 𢗝
+ 0x225de: "=\x04\U000225de", // 𢗞
+ 0x225df: "=\x04\U000225df", // 𢗟
+ 0x225e0: "=\x04\U000225e0", // 𢗠
+ 0x225e1: "=\x04\U000225e1", // 𢗡
+ 0x225e2: "=\x04\U000225e2", // 𢗢
+ 0x225e3: "=\x04\U000225e3", // 𢗣
+ 0x225e4: "=\x04\U000225e4", // 𢗤
+ 0x225e5: "=\x04\U000225e5", // 𢗥
+ 0x225e6: "=\x04\U000225e6", // 𢗦
+ 0x225e7: "=\x04\U000225e7", // 𢗧
+ 0x225e8: "=\x04\U000225e8", // 𢗨
+ 0x225e9: "=\x04\U000225e9", // 𢗩
+ 0x225ea: "=\x04\U000225ea", // 𢗪
+ 0x225eb: "=\x04\U000225eb", // 𢗫
+ 0x225ec: "=\x04\U000225ec", // 𢗬
+ 0x225ed: "=\x04\U000225ed", // 𢗭
+ 0x225ee: "=\x04\U000225ee", // 𢗮
+ 0x225ef: "=\x04\U000225ef", // 𢗯
+ 0x225f0: "=\x04\U000225f0", // 𢗰
+ 0x225f1: "=\x04\U000225f1", // 𢗱
+ 0x225f2: "=\x04\U000225f2", // 𢗲
+ 0x225f3: "=\x04\U000225f3", // 𢗳
+ 0x225f4: "=\x04\U000225f4", // 𢗴
+ 0x225f5: "=\x04\U000225f5", // 𢗵
+ 0x225f6: "=\x04\U000225f6", // 𢗶
+ 0x225f7: "=\x04\U000225f7", // 𢗷
+ 0x225f8: "=\x04\U000225f8", // 𢗸
+ 0x225f9: "=\x04\U000225f9", // 𢗹
+ 0x225fa: "=\x04\U000225fa", // 𢗺
+ 0x225fb: "=\x04\U000225fb", // 𢗻
+ 0x225fc: "=\x04\U000225fc", // 𢗼
+ 0x225fd: "=\x04\U000225fd", // 𢗽
+ 0x225fe: "=\x04\U000225fe", // 𢗾
+ 0x225ff: "=\x05\U000225ff", // 𢗿
+ 0x22600: "=\x05\U00022600", // 𢘀
+ 0x22601: "=\x05\U00022601", // 𢘁
+ 0x22602: "=\x05\U00022602", // 𢘂
+ 0x22603: "=\x05\U00022603", // 𢘃
+ 0x22604: "=\x05\U00022604", // 𢘄
+ 0x22605: "=\x05\U00022605", // 𢘅
+ 0x22606: "=\x05\U00022606", // 𢘆
+ 0x22607: "=\x05\U00022607", // 𢘇
+ 0x22608: "=\x05\U00022608", // 𢘈
+ 0x22609: "=\x05\U00022609", // 𢘉
+ 0x2260a: "=\x05\U0002260a", // 𢘊
+ 0x2260b: "=\x05\U0002260b", // 𢘋
+ 0x2260c: "=\x05\U0002260c", // 𢘌
+ 0x2260d: "=\x05\U0002260d", // 𢘍
+ 0x2260e: "=\x05\U0002260e", // 𢘎
+ 0x2260f: "=\x05\U0002260f", // 𢘏
+ 0x22610: "=\x05\U00022610", // 𢘐
+ 0x22611: "=\x05\U00022611", // 𢘑
+ 0x22612: "=\x05\U00022612", // 𢘒
+ 0x22613: "=\x05\U00022613", // 𢘓
+ 0x22614: "=\x05\U00022614", // 𢘔
+ 0x22615: "=\x05\U00022615", // 𢘕
+ 0x22616: "=\x05\U00022616", // 𢘖
+ 0x22617: "=\x05\U00022617", // 𢘗
+ 0x22618: "=\x05\U00022618", // 𢘘
+ 0x22619: "=\x05\U00022619", // 𢘙
+ 0x2261a: "=\x05\U0002261a", // 𢘚
+ 0x2261b: "=\x05\U0002261b", // 𢘛
+ 0x2261c: "=\x05\U0002261c", // 𢘜
+ 0x2261d: "=\x05\U0002261d", // 𢘝
+ 0x2261e: "=\x05\U0002261e", // 𢘞
+ 0x2261f: "=\x05\U0002261f", // 𢘟
+ 0x22620: "=\x05\U00022620", // 𢘠
+ 0x22621: "=\x05\U00022621", // 𢘡
+ 0x22622: "=\x05\U00022622", // 𢘢
+ 0x22623: "=\x05\U00022623", // 𢘣
+ 0x22624: "=\x05\U00022624", // 𢘤
+ 0x22625: "=\x05\U00022625", // 𢘥
+ 0x22626: "=\x05\U00022626", // 𢘦
+ 0x22627: "=\x05\U00022627", // 𢘧
+ 0x22628: "=\x05\U00022628", // 𢘨
+ 0x22629: "=\x05\U00022629", // 𢘩
+ 0x2262a: "=\x05\U0002262a", // 𢘪
+ 0x2262b: "=\x05\U0002262b", // 𢘫
+ 0x2262c: "=\x05\U0002262c", // 𢘬
+ 0x2262d: "=\x05\U0002262d", // 𢘭
+ 0x2262e: "=\x05\U0002262e", // 𢘮
+ 0x2262f: "=\x05\U0002262f", // 𢘯
+ 0x22630: "=\x05\U00022630", // 𢘰
+ 0x22631: "=\x05\U00022631", // 𢘱
+ 0x22632: "=\x05\U00022632", // 𢘲
+ 0x22633: "=\x05\U00022633", // 𢘳
+ 0x22634: "=\x06\U00022634", // 𢘴
+ 0x22635: "=\x06\U00022635", // 𢘵
+ 0x22636: "=\x06\U00022636", // 𢘶
+ 0x22637: "=\x06\U00022637", // 𢘷
+ 0x22638: "=\x06\U00022638", // 𢘸
+ 0x22639: "=\x06\U00022639", // 𢘹
+ 0x2263a: "=\x06\U0002263a", // 𢘺
+ 0x2263b: "=\x06\U0002263b", // 𢘻
+ 0x2263c: "=\x06\U0002263c", // 𢘼
+ 0x2263d: "=\x06\U0002263d", // 𢘽
+ 0x2263e: "=\x06\U0002263e", // 𢘾
+ 0x2263f: "=\x06\U0002263f", // 𢘿
+ 0x22640: "=\x06\U00022640", // 𢙀
+ 0x22641: "=\x06\U00022641", // 𢙁
+ 0x22642: "=\x06\U00022642", // 𢙂
+ 0x22643: "=\x06\U00022643", // 𢙃
+ 0x22644: "=\x06\U00022644", // 𢙄
+ 0x22645: "=\x06\U00022645", // 𢙅
+ 0x22646: "=\x06\U00022646", // 𢙆
+ 0x22647: "=\x06\U00022647", // 𢙇
+ 0x22648: "=\x06\U00022648", // 𢙈
+ 0x22649: "=\x06\U00022649", // 𢙉
+ 0x2264a: "=\x06\U0002264a", // 𢙊
+ 0x2264b: "=\x06\U0002264b", // 𢙋
+ 0x2264c: "=\x06\U0002264c", // 𢙌
+ 0x2264d: "=\x06\U0002264d", // 𢙍
+ 0x2264e: "=\x06\U0002264e", // 𢙎
+ 0x2264f: "=\x06\U0002264f", // 𢙏
+ 0x22650: "=\x06\U00022650", // 𢙐
+ 0x22651: "=\x06\U00022651", // 𢙑
+ 0x22652: "=\x06\U00022652", // 𢙒
+ 0x22653: "=\x06\U00022653", // 𢙓
+ 0x22654: "=\x06\U00022654", // 𢙔
+ 0x22655: "=\x06\U00022655", // 𢙕
+ 0x22656: "=\x06\U00022656", // 𢙖
+ 0x22657: "=\x06\U00022657", // 𢙗
+ 0x22658: "=\x06\U00022658", // 𢙘
+ 0x22659: "=\x06\U00022659", // 𢙙
+ 0x2265a: "=\x06\U0002265a", // 𢙚
+ 0x2265b: "=\x06\U0002265b", // 𢙛
+ 0x2265c: "=\x06\U0002265c", // 𢙜
+ 0x2265d: "=\x06\U0002265d", // 𢙝
+ 0x2265e: "=\x06\U0002265e", // 𢙞
+ 0x2265f: "=\x06\U0002265f", // 𢙟
+ 0x22660: "=\x06\U00022660", // 𢙠
+ 0x22661: "=\x06\U00022661", // 𢙡
+ 0x22662: "=\x06\U00022662", // 𢙢
+ 0x22663: "=\x06\U00022663", // 𢙣
+ 0x22664: "=\x06\U00022664", // 𢙤
+ 0x22665: "=\x06\U00022665", // 𢙥
+ 0x22666: "=\x06\U00022666", // 𢙦
+ 0x22667: "=\x06\U00022667", // 𢙧
+ 0x22668: "=\x06\U00022668", // 𢙨
+ 0x22669: "=\x06\U00022669", // 𢙩
+ 0x2266a: "=\x06\U0002266a", // 𢙪
+ 0x2266b: "=\x06\U0002266b", // 𢙫
+ 0x2266c: "=\x06\U0002266c", // 𢙬
+ 0x2266d: "=\x06\U0002266d", // 𢙭
+ 0x2266e: "=\x06\U0002266e", // 𢙮
+ 0x2266f: "=\x06\U0002266f", // 𢙯
+ 0x22670: "=\x06\U00022670", // 𢙰
+ 0x22671: "=\a\U00022671", // 𢙱
+ 0x22672: "=\a\U00022672", // 𢙲
+ 0x22673: "=\a\U00022673", // 𢙳
+ 0x22674: "=\a\U00022674", // 𢙴
+ 0x22675: "=\a\U00022675", // 𢙵
+ 0x22676: "=\a\U00022676", // 𢙶
+ 0x22677: "=\a\U00022677", // 𢙷
+ 0x22678: "=\a\U00022678", // 𢙸
+ 0x22679: "=\a\U00022679", // 𢙹
+ 0x2267a: "=\a\U0002267a", // 𢙺
+ 0x2267b: "=\a\U0002267b", // 𢙻
+ 0x2267c: "=\a\U0002267c", // 𢙼
+ 0x2267d: "=\a\U0002267d", // 𢙽
+ 0x2267e: "=\a\U0002267e", // 𢙾
+ 0x2267f: "=\a\U0002267f", // 𢙿
+ 0x22680: "=\a\U00022680", // 𢚀
+ 0x22681: "=\a\U00022681", // 𢚁
+ 0x22682: "=\a\U00022682", // 𢚂
+ 0x22683: "=\a\U00022683", // 𢚃
+ 0x22684: "=\a\U00022684", // 𢚄
+ 0x22685: "=\a\U00022685", // 𢚅
+ 0x22686: "=\a\U00022686", // 𢚆
+ 0x22687: "=\a\U00022687", // 𢚇
+ 0x22688: "=\a\U00022688", // 𢚈
+ 0x22689: "=\a\U00022689", // 𢚉
+ 0x2268a: "=\a\U0002268a", // 𢚊
+ 0x2268b: "=\a\U0002268b", // 𢚋
+ 0x2268c: "=\a\U0002268c", // 𢚌
+ 0x2268d: "=\a\U0002268d", // 𢚍
+ 0x2268e: "=\a\U0002268e", // 𢚎
+ 0x2268f: "=\a\U0002268f", // 𢚏
+ 0x22690: "=\a\U00022690", // 𢚐
+ 0x22691: "=\a\U00022691", // 𢚑
+ 0x22692: "=\a\U00022692", // 𢚒
+ 0x22693: "=\a\U00022693", // 𢚓
+ 0x22694: "=\a\U00022694", // 𢚔
+ 0x22695: "=\a\U00022695", // 𢚕
+ 0x22696: "=\a\U00022696", // 𢚖
+ 0x22697: "=\a\U00022697", // 𢚗
+ 0x22698: "=\a\U00022698", // 𢚘
+ 0x22699: "=\a\U00022699", // 𢚙
+ 0x2269a: "=\a\U0002269a", // 𢚚
+ 0x2269b: "=\a\U0002269b", // 𢚛
+ 0x2269c: "=\a\U0002269c", // 𢚜
+ 0x2269d: "=\a\U0002269d", // 𢚝
+ 0x2269e: "=\a\U0002269e", // 𢚞
+ 0x2269f: "=\a\U0002269f", // 𢚟
+ 0x226a0: "=\a\U000226a0", // 𢚠
+ 0x226a1: "=\a\U000226a1", // 𢚡
+ 0x226a2: "=\a\U000226a2", // 𢚢
+ 0x226a3: "=\a\U000226a3", // 𢚣
+ 0x226a4: "=\a\U000226a4", // 𢚤
+ 0x226a5: "=\a\U000226a5", // 𢚥
+ 0x226a6: "=\a\U000226a6", // 𢚦
+ 0x226a7: "=\a\U000226a7", // 𢚧
+ 0x226a8: "=\a\U000226a8", // 𢚨
+ 0x226a9: "=\a\U000226a9", // 𢚩
+ 0x226aa: "=\a\U000226aa", // 𢚪
+ 0x226ab: "=\a\U000226ab", // 𢚫
+ 0x226ac: "=\a\U000226ac", // 𢚬
+ 0x226ad: "=\a\U000226ad", // 𢚭
+ 0x226ae: "=\a\U000226ae", // 𢚮
+ 0x226af: "=\a\U000226af", // 𢚯
+ 0x226b0: "=\a\U000226b0", // 𢚰
+ 0x226b1: "=\a\U000226b1", // 𢚱
+ 0x226b2: "=\a\U000226b2", // 𢚲
+ 0x226b3: "=\a\U000226b3", // 𢚳
+ 0x226b4: "=\a\U000226b4", // 𢚴
+ 0x226b5: "=\a\U000226b5", // 𢚵
+ 0x226b6: "=\a\U000226b6", // 𢚶
+ 0x226b7: "=\a\U000226b7", // 𢚷
+ 0x226b8: "=\a\U000226b8", // 𢚸
+ 0x226b9: "=\a\U000226b9", // 𢚹
+ 0x226ba: "=\a\U000226ba", // 𢚺
+ 0x226bb: "=\a\U000226bb", // 𢚻
+ 0x226bc: "=\a\U000226bc", // 𢚼
+ 0x226bd: "=\a\U000226bd", // 𢚽
+ 0x226be: "=\a\U000226be", // 𢚾
+ 0x226bf: "=\a\U000226bf", // 𢚿
+ 0x226c0: "=\b\U000226c0", // 𢛀
+ 0x226c1: "=\b\U000226c1", // 𢛁
+ 0x226c2: "=\b\U000226c2", // 𢛂
+ 0x226c3: "=\b\U000226c3", // 𢛃
+ 0x226c4: "=\b\U000226c4", // 𢛄
+ 0x226c5: "=\b\U000226c5", // 𢛅
+ 0x226c6: "=\b\U000226c6", // 𢛆
+ 0x226c7: "=\b\U000226c7", // 𢛇
+ 0x226c8: "=\b\U000226c8", // 𢛈
+ 0x226c9: "=\b\U000226c9", // 𢛉
+ 0x226ca: "=\b\U000226ca", // 𢛊
+ 0x226cb: "=\b\U000226cb", // 𢛋
+ 0x226cc: "=\b\U000226cc", // 𢛌
+ 0x226cd: "=\b\U000226cd", // 𢛍
+ 0x226ce: "=\b\U000226ce", // 𢛎
+ 0x226cf: "=\b\U000226cf", // 𢛏
+ 0x226d0: "=\b\U000226d0", // 𢛐
+ 0x226d1: "=\b\U000226d1", // 𢛑
+ 0x226d2: "=\b\U000226d2", // 𢛒
+ 0x226d3: "=\b\U000226d3", // 𢛓
+ 0x226d4: "=\b\U000226d4", // 𢛔
+ 0x226d5: "=\b\U000226d5", // 𢛕
+ 0x226d6: "=\b\U000226d6", // 𢛖
+ 0x226d7: "=\b\U000226d7", // 𢛗
+ 0x226d8: "=\b\U000226d8", // 𢛘
+ 0x226d9: "=\b\U000226d9", // 𢛙
+ 0x226da: "=\b\U000226da", // 𢛚
+ 0x226db: "=\b\U000226db", // 𢛛
+ 0x226dc: "=\b\U000226dc", // 𢛜
+ 0x226dd: "=\b\U000226dd", // 𢛝
+ 0x226de: "=\b\U000226de", // 𢛞
+ 0x226df: "=\b\U000226df", // 𢛟
+ 0x226e0: "=\b\U000226e0", // 𢛠
+ 0x226e1: "=\b\U000226e1", // 𢛡
+ 0x226e2: "=\b\U000226e2", // 𢛢
+ 0x226e3: "=\b\U000226e3", // 𢛣
+ 0x226e4: "=\b\U000226e4", // 𢛤
+ 0x226e5: "=\b\U000226e5", // 𢛥
+ 0x226e6: "=\b\U000226e6", // 𢛦
+ 0x226e7: "=\b\U000226e7", // 𢛧
+ 0x226e8: "=\b\U000226e8", // 𢛨
+ 0x226e9: "=\b\U000226e9", // 𢛩
+ 0x226ea: "=\b\U000226ea", // 𢛪
+ 0x226eb: "=\b\U000226eb", // 𢛫
+ 0x226ec: "=\b\U000226ec", // 𢛬
+ 0x226ed: "=\b\U000226ed", // 𢛭
+ 0x226ee: "=\b\U000226ee", // 𢛮
+ 0x226ef: "=\b\U000226ef", // 𢛯
+ 0x226f0: "=\b\U000226f0", // 𢛰
+ 0x226f1: "=\b\U000226f1", // 𢛱
+ 0x226f2: "=\b\U000226f2", // 𢛲
+ 0x226f3: "=\b\U000226f3", // 𢛳
+ 0x226f4: "=\b\U000226f4", // 𢛴
+ 0x226f5: "=\b\U000226f5", // 𢛵
+ 0x226f6: "=\b\U000226f6", // 𢛶
+ 0x226f7: "=\b\U000226f7", // 𢛷
+ 0x226f8: "=\b\U000226f8", // 𢛸
+ 0x226f9: "=\b\U000226f9", // 𢛹
+ 0x226fa: "=\b\U000226fa", // 𢛺
+ 0x226fb: "=\b\U000226fb", // 𢛻
+ 0x226fc: "=\b\U000226fc", // 𢛼
+ 0x226fd: "=\b\U000226fd", // 𢛽
+ 0x226fe: "=\b\U000226fe", // 𢛾
+ 0x226ff: "=\b\U000226ff", // 𢛿
+ 0x22700: "=\b\U00022700", // 𢜀
+ 0x22701: "=\b\U00022701", // 𢜁
+ 0x22702: "=\b\U00022702", // 𢜂
+ 0x22703: "=\b\U00022703", // 𢜃
+ 0x22704: "=\b\U00022704", // 𢜄
+ 0x22705: "=\b\U00022705", // 𢜅
+ 0x22706: "=\b\U00022706", // 𢜆
+ 0x22707: "=\b\U00022707", // 𢜇
+ 0x22708: "=\b\U00022708", // 𢜈
+ 0x22709: "=\b\U00022709", // 𢜉
+ 0x2270a: "=\b\U0002270a", // 𢜊
+ 0x2270b: "=\b\U0002270b", // 𢜋
+ 0x2270c: "=\b\U0002270c", // 𢜌
+ 0x2270d: "=\b\U0002270d", // 𢜍
+ 0x2270e: "=\b\U0002270e", // 𢜎
+ 0x2270f: "=\b\U0002270f", // 𢜏
+ 0x22710: "=\b\U00022710", // 𢜐
+ 0x22711: "=\b\U00022711", // 𢜑
+ 0x22712: "=\b\U00022712", // 𢜒
+ 0x22713: "=\b\U00022713", // 𢜓
+ 0x22714: "=\b\U00022714", // 𢜔
+ 0x22715: "=\b\U00022715", // 𢜕
+ 0x22716: "=\b\U00022716", // 𢜖
+ 0x22717: "=\b\U00022717", // 𢜗
+ 0x22718: "=\b\U00022718", // 𢜘
+ 0x22719: "=\b\U00022719", // 𢜙
+ 0x2271a: "=\b\U0002271a", // 𢜚
+ 0x2271b: "=\b\U0002271b", // 𢜛
+ 0x2271c: "=\b\U0002271c", // 𢜜
+ 0x2271d: "=\b\U0002271d", // 𢜝
+ 0x2271e: "=\b\U0002271e", // 𢜞
+ 0x2271f: "=\b\U0002271f", // 𢜟
+ 0x22720: "=\b\U00022720", // 𢜠
+ 0x22721: "=\b\U00022721", // 𢜡
+ 0x22722: "=\b\U00022722", // 𢜢
+ 0x22723: "=\b\U00022723", // 𢜣
+ 0x22724: "=\b\U00022724", // 𢜤
+ 0x22725: "=\b\U00022725", // 𢜥
+ 0x22726: "=\b\U00022726", // 𢜦
+ 0x22727: "=\b\U00022727", // 𢜧
+ 0x22728: "=\t\U00022728", // 𢜨
+ 0x22729: "=\t\U00022729", // 𢜩
+ 0x2272a: "=\t\U0002272a", // 𢜪
+ 0x2272b: "=\t\U0002272b", // 𢜫
+ 0x2272c: "=\t\U0002272c", // 𢜬
+ 0x2272d: "=\t\U0002272d", // 𢜭
+ 0x2272e: "=\t\U0002272e", // 𢜮
+ 0x2272f: "=\t\U0002272f", // 𢜯
+ 0x22730: "=\t\U00022730", // 𢜰
+ 0x22731: "=\t\U00022731", // 𢜱
+ 0x22732: "=\t\U00022732", // 𢜲
+ 0x22733: "=\t\U00022733", // 𢜳
+ 0x22734: "=\t\U00022734", // 𢜴
+ 0x22735: "=\t\U00022735", // 𢜵
+ 0x22736: "=\t\U00022736", // 𢜶
+ 0x22737: "=\t\U00022737", // 𢜷
+ 0x22738: "=\t\U00022738", // 𢜸
+ 0x22739: "=\t\U00022739", // 𢜹
+ 0x2273a: "=\t\U0002273a", // 𢜺
+ 0x2273b: "=\t\U0002273b", // 𢜻
+ 0x2273c: "=\t\U0002273c", // 𢜼
+ 0x2273d: "=\t\U0002273d", // 𢜽
+ 0x2273e: "=\t\U0002273e", // 𢜾
+ 0x2273f: "=\t\U0002273f", // 𢜿
+ 0x22740: "=\t\U00022740", // 𢝀
+ 0x22741: "=\t\U00022741", // 𢝁
+ 0x22742: "=\t\U00022742", // 𢝂
+ 0x22743: "=\t\U00022743", // 𢝃
+ 0x22744: "=\t\U00022744", // 𢝄
+ 0x22745: "=\t\U00022745", // 𢝅
+ 0x22746: "=\t\U00022746", // 𢝆
+ 0x22747: "=\t\U00022747", // 𢝇
+ 0x22748: "=\t\U00022748", // 𢝈
+ 0x22749: "=\t\U00022749", // 𢝉
+ 0x2274a: "=\t\U0002274a", // 𢝊
+ 0x2274b: "=\t\U0002274b", // 𢝋
+ 0x2274c: "=\t\U0002274c", // 𢝌
+ 0x2274d: "=\t\U0002274d", // 𢝍
+ 0x2274e: "=\t\U0002274e", // 𢝎
+ 0x2274f: "=\t\U0002274f", // 𢝏
+ 0x22750: "=\t\U00022750", // 𢝐
+ 0x22751: "=\t\U00022751", // 𢝑
+ 0x22752: "=\t\U00022752", // 𢝒
+ 0x22753: "=\t\U00022753", // 𢝓
+ 0x22754: "=\t\U00022754", // 𢝔
+ 0x22755: "=\t\U00022755", // 𢝕
+ 0x22756: "=\t\U00022756", // 𢝖
+ 0x22757: "=\t\U00022757", // 𢝗
+ 0x22758: "=\t\U00022758", // 𢝘
+ 0x22759: "=\t\U00022759", // 𢝙
+ 0x2275a: "=\t\U0002275a", // 𢝚
+ 0x2275b: "=\t\U0002275b", // 𢝛
+ 0x2275c: "=\t\U0002275c", // 𢝜
+ 0x2275d: "=\t\U0002275d", // 𢝝
+ 0x2275e: "=\t\U0002275e", // 𢝞
+ 0x2275f: "=\t\U0002275f", // 𢝟
+ 0x22760: "=\t\U00022760", // 𢝠
+ 0x22761: "=\t\U00022761", // 𢝡
+ 0x22762: "=\t\U00022762", // 𢝢
+ 0x22763: "=\t\U00022763", // 𢝣
+ 0x22764: "=\t\U00022764", // 𢝤
+ 0x22765: "=\t\U00022765", // 𢝥
+ 0x22766: "=\t\U00022766", // 𢝦
+ 0x22767: "=\t\U00022767", // 𢝧
+ 0x22768: "=\t\U00022768", // 𢝨
+ 0x22769: "=\t\U00022769", // 𢝩
+ 0x2276a: "=\t\U0002276a", // 𢝪
+ 0x2276b: "=\t\U0002276b", // 𢝫
+ 0x2276c: "=\t\U0002276c", // 𢝬
+ 0x2276d: "=\t\U0002276d", // 𢝭
+ 0x2276e: "=\t\U0002276e", // 𢝮
+ 0x2276f: "=\t\U0002276f", // 𢝯
+ 0x22770: "=\t\U00022770", // 𢝰
+ 0x22771: "=\t\U00022771", // 𢝱
+ 0x22772: "=\t\U00022772", // 𢝲
+ 0x22773: "=\t\U00022773", // 𢝳
+ 0x22774: "=\t\U00022774", // 𢝴
+ 0x22775: "=\t\U00022775", // 𢝵
+ 0x22776: "=\t\U00022776", // 𢝶
+ 0x22777: "=\t\U00022777", // 𢝷
+ 0x22778: "=\t\U00022778", // 𢝸
+ 0x22779: "=\t\U00022779", // 𢝹
+ 0x2277a: "=\t\U0002277a", // 𢝺
+ 0x2277b: "=\t\U0002277b", // 𢝻
+ 0x2277c: "=\t\U0002277c", // 𢝼
+ 0x2277d: "=\t\U0002277d", // 𢝽
+ 0x2277e: "=\t\U0002277e", // 𢝾
+ 0x2277f: "=\t\U0002277f", // 𢝿
+ 0x22780: "=\t\U00022780", // 𢞀
+ 0x22781: "=\t\U00022781", // 𢞁
+ 0x22782: "=\t\U00022782", // 𢞂
+ 0x22783: "=\t\U00022783", // 𢞃
+ 0x22784: "=\t\U00022784", // 𢞄
+ 0x22785: "=\t\U00022785", // 𢞅
+ 0x22786: "=\t\U00022786", // 𢞆
+ 0x22787: "=\t\U00022787", // 𢞇
+ 0x22788: "=\t\U00022788", // 𢞈
+ 0x22789: "=\t\U00022789", // 𢞉
+ 0x2278a: "=\t\U0002278a", // 𢞊
+ 0x2278b: "=\t\U0002278b", // 𢞋
+ 0x2278c: "=\t\U0002278c", // 𢞌
+ 0x2278d: "=\n\U0002278d", // 𢞍
+ 0x2278e: "=\n\U0002278e", // 𢞎
+ 0x2278f: "=\n\U0002278f", // 𢞏
+ 0x22790: "=\n\U00022790", // 𢞐
+ 0x22791: "=\n\U00022791", // 𢞑
+ 0x22792: "=\n\U00022792", // 𢞒
+ 0x22793: "=\n\U00022793", // 𢞓
+ 0x22794: "=\n\U00022794", // 𢞔
+ 0x22795: "=\n\U00022795", // 𢞕
+ 0x22796: "=\n\U00022796", // 𢞖
+ 0x22797: "=\n\U00022797", // 𢞗
+ 0x22798: "=\n\U00022798", // 𢞘
+ 0x22799: "=\n\U00022799", // 𢞙
+ 0x2279a: "=\n\U0002279a", // 𢞚
+ 0x2279b: "=\n\U0002279b", // 𢞛
+ 0x2279c: "=\n\U0002279c", // 𢞜
+ 0x2279d: "=\n\U0002279d", // 𢞝
+ 0x2279e: "=\n\U0002279e", // 𢞞
+ 0x2279f: "=\n\U0002279f", // 𢞟
+ 0x227a0: "=\n\U000227a0", // 𢞠
+ 0x227a1: "=\n\U000227a1", // 𢞡
+ 0x227a2: "=\n\U000227a2", // 𢞢
+ 0x227a3: "=\n\U000227a3", // 𢞣
+ 0x227a4: "=\n\U000227a4", // 𢞤
+ 0x227a5: "=\n\U000227a5", // 𢞥
+ 0x227a6: "=\n\U000227a6", // 𢞦
+ 0x227a7: "=\n\U000227a7", // 𢞧
+ 0x227a8: "=\n\U000227a8", // 𢞨
+ 0x227a9: "=\n\U000227a9", // 𢞩
+ 0x227aa: "=\n\U000227aa", // 𢞪
+ 0x227ab: "=\n\U000227ab", // 𢞫
+ 0x227ac: "=\n\U000227ac", // 𢞬
+ 0x227ad: "=\n\U000227ad", // 𢞭
+ 0x227ae: "=\n\U000227ae", // 𢞮
+ 0x227af: "=\n\U000227af", // 𢞯
+ 0x227b0: "=\n\U000227b0", // 𢞰
+ 0x227b1: "=\n\U000227b1", // 𢞱
+ 0x227b2: "=\n\U000227b2", // 𢞲
+ 0x227b3: "=\n\U000227b3", // 𢞳
+ 0x227b4: "=\n\U000227b4", // 𢞴
+ 0x227b5: "=\n\U000227b5", // 𢞵
+ 0x227b6: "=\n\U000227b6", // 𢞶
+ 0x227b7: "=\n\U000227b7", // 𢞷
+ 0x227b8: "=\n\U000227b8", // 𢞸
+ 0x227b9: "=\n\U000227b9", // 𢞹
+ 0x227ba: "=\n\U000227ba", // 𢞺
+ 0x227bb: "=\n\U000227bb", // 𢞻
+ 0x227bc: "=\n\U000227bc", // 𢞼
+ 0x227bd: "=\n\U000227bd", // 𢞽
+ 0x227be: "=\n\U000227be", // 𢞾
+ 0x227bf: "=\n\U000227bf", // 𢞿
+ 0x227c0: "=\n\U000227c0", // 𢟀
+ 0x227c1: "=\n\U000227c1", // 𢟁
+ 0x227c2: "=\n\U000227c2", // 𢟂
+ 0x227c3: "=\n\U000227c3", // 𢟃
+ 0x227c4: "=\n\U000227c4", // 𢟄
+ 0x227c5: "=\n\U000227c5", // 𢟅
+ 0x227c6: "=\n\U000227c6", // 𢟆
+ 0x227c7: "=\n\U000227c7", // 𢟇
+ 0x227c8: "=\n\U000227c8", // 𢟈
+ 0x227c9: "=\n\U000227c9", // 𢟉
+ 0x227ca: "=\n\U000227ca", // 𢟊
+ 0x227cb: "=\n\U000227cb", // 𢟋
+ 0x227cc: "=\n\U000227cc", // 𢟌
+ 0x227cd: "=\n\U000227cd", // 𢟍
+ 0x227ce: "=\n\U000227ce", // 𢟎
+ 0x227cf: "=\n\U000227cf", // 𢟏
+ 0x227d0: "=\n\U000227d0", // 𢟐
+ 0x227d1: "=\n\U000227d1", // 𢟑
+ 0x227d2: "=\n\U000227d2", // 𢟒
+ 0x227d3: "=\n\U000227d3", // 𢟓
+ 0x227d4: "=\n\U000227d4", // 𢟔
+ 0x227d5: "=\n\U000227d5", // 𢟕
+ 0x227d6: "=\n\U000227d6", // 𢟖
+ 0x227d7: "=\n\U000227d7", // 𢟗
+ 0x227d8: "=\n\U000227d8", // 𢟘
+ 0x227d9: "=\n\U000227d9", // 𢟙
+ 0x227da: "=\n\U000227da", // 𢟚
+ 0x227db: "=\n\U000227db", // 𢟛
+ 0x227dc: "=\n\U000227dc", // 𢟜
+ 0x227dd: "=\n\U000227dd", // 𢟝
+ 0x227de: "=\n\U000227de", // 𢟞
+ 0x227df: "=\n\U000227df", // 𢟟
+ 0x227e0: "=\v\U000227e0", // 𢟠
+ 0x227e1: "=\v\U000227e1", // 𢟡
+ 0x227e2: "=\v\U000227e2", // 𢟢
+ 0x227e3: "=\v\U000227e3", // 𢟣
+ 0x227e4: "=\v\U000227e4", // 𢟤
+ 0x227e5: "=\v\U000227e5", // 𢟥
+ 0x227e6: "=\v\U000227e6", // 𢟦
+ 0x227e7: "=\v\U000227e7", // 𢟧
+ 0x227e8: "=\v\U000227e8", // 𢟨
+ 0x227e9: "=\v\U000227e9", // 𢟩
+ 0x227ea: "=\v\U000227ea", // 𢟪
+ 0x227eb: "=\v\U000227eb", // 𢟫
+ 0x227ec: "=\v\U000227ec", // 𢟬
+ 0x227ed: "=\v\U000227ed", // 𢟭
+ 0x227ee: "=\v\U000227ee", // 𢟮
+ 0x227ef: "=\v\U000227ef", // 𢟯
+ 0x227f0: "=\v\U000227f0", // 𢟰
+ 0x227f1: "=\v\U000227f1", // 𢟱
+ 0x227f2: "=\v\U000227f2", // 𢟲
+ 0x227f3: "=\v\U000227f3", // 𢟳
+ 0x227f4: "=\v\U000227f4", // 𢟴
+ 0x227f5: "=\v\U000227f5", // 𢟵
+ 0x227f6: "=\v\U000227f6", // 𢟶
+ 0x227f7: "=\v\U000227f7", // 𢟷
+ 0x227f8: "=\v\U000227f8", // 𢟸
+ 0x227f9: "=\v\U000227f9", // 𢟹
+ 0x227fa: "=\v\U000227fa", // 𢟺
+ 0x227fb: "=\v\U000227fb", // 𢟻
+ 0x227fc: "=\v\U000227fc", // 𢟼
+ 0x227fd: "=\v\U000227fd", // 𢟽
+ 0x227fe: "=\v\U000227fe", // 𢟾
+ 0x227ff: "=\v\U000227ff", // 𢟿
+ 0x22800: "=\v\U00022800", // 𢠀
+ 0x22801: "=\v\U00022801", // 𢠁
+ 0x22802: "=\v\U00022802", // 𢠂
+ 0x22803: "=\v\U00022803", // 𢠃
+ 0x22804: "=\v\U00022804", // 𢠄
+ 0x22805: "=\v\U00022805", // 𢠅
+ 0x22806: "=\v\U00022806", // 𢠆
+ 0x22807: "=\v\U00022807", // 𢠇
+ 0x22808: "=\v\U00022808", // 𢠈
+ 0x22809: "=\v\U00022809", // 𢠉
+ 0x2280a: "=\v\U0002280a", // 𢠊
+ 0x2280b: "=\v\U0002280b", // 𢠋
+ 0x2280c: "=\v\U0002280c", // 𢠌
+ 0x2280d: "=\v\U0002280d", // 𢠍
+ 0x2280e: "=\v\U0002280e", // 𢠎
+ 0x2280f: "=\v\U0002280f", // 𢠏
+ 0x22810: "=\v\U00022810", // 𢠐
+ 0x22811: "=\v\U00022811", // 𢠑
+ 0x22812: "=\v\U00022812", // 𢠒
+ 0x22813: "=\v\U00022813", // 𢠓
+ 0x22814: "=\v\U00022814", // 𢠔
+ 0x22815: "=\v\U00022815", // 𢠕
+ 0x22816: "=\v\U00022816", // 𢠖
+ 0x22817: "=\v\U00022817", // 𢠗
+ 0x22818: "=\v\U00022818", // 𢠘
+ 0x22819: "=\v\U00022819", // 𢠙
+ 0x2281a: "=\v\U0002281a", // 𢠚
+ 0x2281b: "=\v\U0002281b", // 𢠛
+ 0x2281c: "=\v\U0002281c", // 𢠜
+ 0x2281d: "=\v\U0002281d", // 𢠝
+ 0x2281e: "=\v\U0002281e", // 𢠞
+ 0x2281f: "=\v\U0002281f", // 𢠟
+ 0x22820: "=\v\U00022820", // 𢠠
+ 0x22821: "=\v\U00022821", // 𢠡
+ 0x22822: "=\v\U00022822", // 𢠢
+ 0x22823: "=\v\U00022823", // 𢠣
+ 0x22824: "=\v\U00022824", // 𢠤
+ 0x22825: "=\v\U00022825", // 𢠥
+ 0x22826: "=\v\U00022826", // 𢠦
+ 0x22827: "=\v\U00022827", // 𢠧
+ 0x22828: "=\v\U00022828", // 𢠨
+ 0x22829: "=\v\U00022829", // 𢠩
+ 0x2282a: "=\v\U0002282a", // 𢠪
+ 0x2282b: "=\v\U0002282b", // 𢠫
+ 0x2282c: "=\v\U0002282c", // 𢠬
+ 0x2282d: "=\v\U0002282d", // 𢠭
+ 0x2282e: "=\v\U0002282e", // 𢠮
+ 0x2282f: "=\v\U0002282f", // 𢠯
+ 0x22830: "=\v\U00022830", // 𢠰
+ 0x22831: "=\f\U00022831", // 𢠱
+ 0x22832: "=\f\U00022832", // 𢠲
+ 0x22833: "=\f\U00022833", // 𢠳
+ 0x22834: "=\f\U00022834", // 𢠴
+ 0x22835: "=\f\U00022835", // 𢠵
+ 0x22836: "=\f\U00022836", // 𢠶
+ 0x22837: "=\f\U00022837", // 𢠷
+ 0x22838: "=\f\U00022838", // 𢠸
+ 0x22839: "=\f\U00022839", // 𢠹
+ 0x2283a: "=\f\U0002283a", // 𢠺
+ 0x2283b: "=\f\U0002283b", // 𢠻
+ 0x2283c: "=\f\U0002283c", // 𢠼
+ 0x2283d: "=\f\U0002283d", // 𢠽
+ 0x2283e: "=\f\U0002283e", // 𢠾
+ 0x2283f: "=\f\U0002283f", // 𢠿
+ 0x22840: "=\f\U00022840", // 𢡀
+ 0x22841: "=\f\U00022841", // 𢡁
+ 0x22842: "=\f\U00022842", // 𢡂
+ 0x22843: "=\f\U00022843", // 𢡃
+ 0x22844: "=\f\U00022844", // 𢡄
+ 0x22845: "=\f\U00022845", // 𢡅
+ 0x22846: "=\f\U00022846", // 𢡆
+ 0x22847: "=\f\U00022847", // 𢡇
+ 0x22848: "=\f\U00022848", // 𢡈
+ 0x22849: "=\f\U00022849", // 𢡉
+ 0x2284a: "=\f\U0002284a", // 𢡊
+ 0x2284b: "=\f\U0002284b", // 𢡋
+ 0x2284c: "=\f\U0002284c", // 𢡌
+ 0x2284d: "=\f\U0002284d", // 𢡍
+ 0x2284e: "=\f\U0002284e", // 𢡎
+ 0x2284f: "=\f\U0002284f", // 𢡏
+ 0x22850: "=\f\U00022850", // 𢡐
+ 0x22851: "=\f\U00022851", // 𢡑
+ 0x22852: "=\f\U00022852", // 𢡒
+ 0x22853: "=\f\U00022853", // 𢡓
+ 0x22854: "=\f\U00022854", // 𢡔
+ 0x22855: "=\f\U00022855", // 𢡕
+ 0x22856: "=\f\U00022856", // 𢡖
+ 0x22857: "=\f\U00022857", // 𢡗
+ 0x22858: "=\f\U00022858", // 𢡘
+ 0x22859: "=\f\U00022859", // 𢡙
+ 0x2285a: "=\f\U0002285a", // 𢡚
+ 0x2285b: "=\f\U0002285b", // 𢡛
+ 0x2285c: "=\f\U0002285c", // 𢡜
+ 0x2285d: "=\f\U0002285d", // 𢡝
+ 0x2285e: "=\f\U0002285e", // 𢡞
+ 0x2285f: "=\f\U0002285f", // 𢡟
+ 0x22860: "=\f\U00022860", // 𢡠
+ 0x22861: "=\f\U00022861", // 𢡡
+ 0x22862: "=\f\U00022862", // 𢡢
+ 0x22863: "=\f\U00022863", // 𢡣
+ 0x22864: "=\f\U00022864", // 𢡤
+ 0x22865: "=\f\U00022865", // 𢡥
+ 0x22866: "=\f\U00022866", // 𢡦
+ 0x22867: "=\f\U00022867", // 𢡧
+ 0x22868: "=\f\U00022868", // 𢡨
+ 0x22869: "=\f\U00022869", // 𢡩
+ 0x2286a: "=\f\U0002286a", // 𢡪
+ 0x2286b: "=\f\U0002286b", // 𢡫
+ 0x2286c: "=\f\U0002286c", // 𢡬
+ 0x2286d: "=\f\U0002286d", // 𢡭
+ 0x2286e: "=\f\U0002286e", // 𢡮
+ 0x2286f: "=\f\U0002286f", // 𢡯
+ 0x22870: "=\f\U00022870", // 𢡰
+ 0x22871: "=\f\U00022871", // 𢡱
+ 0x22872: "=\f\U00022872", // 𢡲
+ 0x22873: "=\f\U00022873", // 𢡳
+ 0x22874: "=\f\U00022874", // 𢡴
+ 0x22875: "=\f\U00022875", // 𢡵
+ 0x22876: "=\f\U00022876", // 𢡶
+ 0x22877: "=\f\U00022877", // 𢡷
+ 0x22878: "=\f\U00022878", // 𢡸
+ 0x22879: "=\f\U00022879", // 𢡹
+ 0x2287a: "=\f\U0002287a", // 𢡺
+ 0x2287b: "=\f\U0002287b", // 𢡻
+ 0x2287c: "=\f\U0002287c", // 𢡼
+ 0x2287d: "=\f\U0002287d", // 𢡽
+ 0x2287e: "=\f\U0002287e", // 𢡾
+ 0x2287f: "=\f\U0002287f", // 𢡿
+ 0x22880: "=\f\U00022880", // 𢢀
+ 0x22881: "=\f\U00022881", // 𢢁
+ 0x22882: "=\f\U00022882", // 𢢂
+ 0x22883: "=\f\U00022883", // 𢢃
+ 0x22884: "=\f\U00022884", // 𢢄
+ 0x22885: "=\f\U00022885", // 𢢅
+ 0x22886: "=\f\U00022886", // 𢢆
+ 0x22887: "=\f\U00022887", // 𢢇
+ 0x22888: "=\f\U00022888", // 𢢈
+ 0x22889: "=\f\U00022889", // 𢢉
+ 0x2288a: "=\f\U0002288a", // 𢢊
+ 0x2288b: "=\f\U0002288b", // 𢢋
+ 0x2288c: "=\f\U0002288c", // 𢢌
+ 0x2288d: "=\f\U0002288d", // 𢢍
+ 0x2288e: "=\f\U0002288e", // 𢢎
+ 0x2288f: "=\f\U0002288f", // 𢢏
+ 0x22890: "=\f\U00022890", // 𢢐
+ 0x22891: "=\f\U00022891", // 𢢑
+ 0x22892: "=\r\U00022892", // 𢢒
+ 0x22893: "=\r\U00022893", // 𢢓
+ 0x22894: "=\r\U00022894", // 𢢔
+ 0x22895: "=\r\U00022895", // 𢢕
+ 0x22896: "=\r\U00022896", // 𢢖
+ 0x22897: "=\r\U00022897", // 𢢗
+ 0x22898: "=\r\U00022898", // 𢢘
+ 0x22899: "=\r\U00022899", // 𢢙
+ 0x2289a: "=\r\U0002289a", // 𢢚
+ 0x2289b: "=\r\U0002289b", // 𢢛
+ 0x2289c: "=\r\U0002289c", // 𢢜
+ 0x2289d: "=\r\U0002289d", // 𢢝
+ 0x2289e: "=\r\U0002289e", // 𢢞
+ 0x2289f: "=\r\U0002289f", // 𢢟
+ 0x228a0: "=\r\U000228a0", // 𢢠
+ 0x228a1: "=\r\U000228a1", // 𢢡
+ 0x228a2: "=\r\U000228a2", // 𢢢
+ 0x228a3: "=\r\U000228a3", // 𢢣
+ 0x228a4: "=\r\U000228a4", // 𢢤
+ 0x228a5: "=\r\U000228a5", // 𢢥
+ 0x228a6: "=\r\U000228a6", // 𢢦
+ 0x228a7: "=\r\U000228a7", // 𢢧
+ 0x228a8: "=\r\U000228a8", // 𢢨
+ 0x228a9: "=\r\U000228a9", // 𢢩
+ 0x228aa: "=\r\U000228aa", // 𢢪
+ 0x228ab: "=\r\U000228ab", // 𢢫
+ 0x228ac: "=\r\U000228ac", // 𢢬
+ 0x228ad: "=\r\U000228ad", // 𢢭
+ 0x228ae: "=\r\U000228ae", // 𢢮
+ 0x228af: "=\r\U000228af", // 𢢯
+ 0x228b0: "=\r\U000228b0", // 𢢰
+ 0x228b1: "=\r\U000228b1", // 𢢱
+ 0x228b2: "=\r\U000228b2", // 𢢲
+ 0x228b3: "=\r\U000228b3", // 𢢳
+ 0x228b4: "=\r\U000228b4", // 𢢴
+ 0x228b5: "=\r\U000228b5", // 𢢵
+ 0x228b6: "=\r\U000228b6", // 𢢶
+ 0x228b7: "=\r\U000228b7", // 𢢷
+ 0x228b8: "=\r\U000228b8", // 𢢸
+ 0x228b9: "=\r\U000228b9", // 𢢹
+ 0x228ba: "=\r\U000228ba", // 𢢺
+ 0x228bb: "=\r\U000228bb", // 𢢻
+ 0x228bc: "=\r\U000228bc", // 𢢼
+ 0x228bd: "=\r\U000228bd", // 𢢽
+ 0x228be: "=\r\U000228be", // 𢢾
+ 0x228bf: "=\r\U000228bf", // 𢢿
+ 0x228c0: "=\r\U000228c0", // 𢣀
+ 0x228c1: "=\r\U000228c1", // 𢣁
+ 0x228c2: "=\r\U000228c2", // 𢣂
+ 0x228c3: "=\r\U000228c3", // 𢣃
+ 0x228c4: "=\r\U000228c4", // 𢣄
+ 0x228c5: "=\r\U000228c5", // 𢣅
+ 0x228c6: "=\r\U000228c6", // 𢣆
+ 0x228c7: "=\r\U000228c7", // 𢣇
+ 0x228c8: "=\r\U000228c8", // 𢣈
+ 0x228c9: "=\r\U000228c9", // 𢣉
+ 0x228ca: "=\r\U000228ca", // 𢣊
+ 0x228cb: "=\r\U000228cb", // 𢣋
+ 0x228cc: "=\r\U000228cc", // 𢣌
+ 0x228cd: "=\r\U000228cd", // 𢣍
+ 0x228ce: "=\x0e\U000228ce", // 𢣎
+ 0x228cf: "=\x0e\U000228cf", // 𢣏
+ 0x228d0: "=\x0e\U000228d0", // 𢣐
+ 0x228d1: "=\x0e\U000228d1", // 𢣑
+ 0x228d2: "=\x0e\U000228d2", // 𢣒
+ 0x228d3: "=\x0e\U000228d3", // 𢣓
+ 0x228d4: "=\x0e\U000228d4", // 𢣔
+ 0x228d5: "=\x0e\U000228d5", // 𢣕
+ 0x228d6: "=\x0e\U000228d6", // 𢣖
+ 0x228d7: "=\x0e\U000228d7", // 𢣗
+ 0x228d8: "=\x0e\U000228d8", // 𢣘
+ 0x228d9: "=\x0e\U000228d9", // 𢣙
+ 0x228da: "=\x0e\U000228da", // 𢣚
+ 0x228db: "=\x0e\U000228db", // 𢣛
+ 0x228dc: "=\x0e\U000228dc", // 𢣜
+ 0x228dd: "=\x0e\U000228dd", // 𢣝
+ 0x228de: "=\x0e\U000228de", // 𢣞
+ 0x228df: "=\x0e\U000228df", // 𢣟
+ 0x228e0: "=\x0e\U000228e0", // 𢣠
+ 0x228e1: "=\x0e\U000228e1", // 𢣡
+ 0x228e2: "=\x0e\U000228e2", // 𢣢
+ 0x228e3: "=\x0e\U000228e3", // 𢣣
+ 0x228e4: "=\x0e\U000228e4", // 𢣤
+ 0x228e5: "=\x0e\U000228e5", // 𢣥
+ 0x228e6: "=\x0e\U000228e6", // 𢣦
+ 0x228e7: "=\x0e\U000228e7", // 𢣧
+ 0x228e8: "=\x0e\U000228e8", // 𢣨
+ 0x228e9: "=\x0e\U000228e9", // 𢣩
+ 0x228ea: "=\x0e\U000228ea", // 𢣪
+ 0x228eb: "=\x0e\U000228eb", // 𢣫
+ 0x228ec: "=\x0e\U000228ec", // 𢣬
+ 0x228ed: "=\x0e\U000228ed", // 𢣭
+ 0x228ee: "=\x0e\U000228ee", // 𢣮
+ 0x228ef: "=\x0e\U000228ef", // 𢣯
+ 0x228f0: "=\x0e\U000228f0", // 𢣰
+ 0x228f1: "=\x0e\U000228f1", // 𢣱
+ 0x228f2: "=\x0e\U000228f2", // 𢣲
+ 0x228f3: "=\x0e\U000228f3", // 𢣳
+ 0x228f4: "=\x0e\U000228f4", // 𢣴
+ 0x228f5: "=\x0e\U000228f5", // 𢣵
+ 0x228f6: "=\x0e\U000228f6", // 𢣶
+ 0x228f7: "=\x0e\U000228f7", // 𢣷
+ 0x228f8: "=\x0e\U000228f8", // 𢣸
+ 0x228f9: "=\x0e\U000228f9", // 𢣹
+ 0x228fa: "=\x0e\U000228fa", // 𢣺
+ 0x228fb: "=\x0f\U000228fb", // 𢣻
+ 0x228fc: "=\x0f\U000228fc", // 𢣼
+ 0x228fd: "=\x0f\U000228fd", // 𢣽
+ 0x228fe: "=\x0f\U000228fe", // 𢣾
+ 0x228ff: "=\x0f\U000228ff", // 𢣿
+ 0x22900: "=\x0f\U00022900", // 𢤀
+ 0x22901: "=\x0f\U00022901", // 𢤁
+ 0x22902: "=\x0f\U00022902", // 𢤂
+ 0x22903: "=\x0f\U00022903", // 𢤃
+ 0x22904: "=\x0f\U00022904", // 𢤄
+ 0x22905: "=\x0f\U00022905", // 𢤅
+ 0x22906: "=\x0f\U00022906", // 𢤆
+ 0x22907: "=\x0f\U00022907", // 𢤇
+ 0x22908: "=\x0f\U00022908", // 𢤈
+ 0x22909: "=\x0f\U00022909", // 𢤉
+ 0x2290a: "=\x0f\U0002290a", // 𢤊
+ 0x2290b: "=\x0f\U0002290b", // 𢤋
+ 0x2290c: "=\x0f\U0002290c", // 𢤌
+ 0x2290d: "=\x0f\U0002290d", // 𢤍
+ 0x2290e: "=\x0f\U0002290e", // 𢤎
+ 0x2290f: "=\x0f\U0002290f", // 𢤏
+ 0x22910: "=\x0f\U00022910", // 𢤐
+ 0x22911: "=\x0f\U00022911", // 𢤑
+ 0x22912: "=\x0f\U00022912", // 𢤒
+ 0x22913: "=\x0f\U00022913", // 𢤓
+ 0x22914: "=\x0f\U00022914", // 𢤔
+ 0x22915: "=\x0f\U00022915", // 𢤕
+ 0x22916: "=\x0f\U00022916", // 𢤖
+ 0x22917: "=\x0f\U00022917", // 𢤗
+ 0x22918: "=\x0f\U00022918", // 𢤘
+ 0x22919: "=\x0f\U00022919", // 𢤙
+ 0x2291a: "=\x0f\U0002291a", // 𢤚
+ 0x2291b: "=\x0f\U0002291b", // 𢤛
+ 0x2291c: "=\x0f\U0002291c", // 𢤜
+ 0x2291d: "=\x0f\U0002291d", // 𢤝
+ 0x2291e: "=\x0f\U0002291e", // 𢤞
+ 0x2291f: "=\x0f\U0002291f", // 𢤟
+ 0x22920: "=\x0f\U00022920", // 𢤠
+ 0x22921: "=\x0f\U00022921", // 𢤡
+ 0x22922: "=\x0f\U00022922", // 𢤢
+ 0x22923: "=\x0f\U00022923", // 𢤣
+ 0x22924: "=\x0f\U00022924", // 𢤤
+ 0x22925: "=\x0f\U00022925", // 𢤥
+ 0x22926: "=\x10\U00022926", // 𢤦
+ 0x22927: "=\x10\U00022927", // 𢤧
+ 0x22928: "=\x10\U00022928", // 𢤨
+ 0x22929: "=\x10\U00022929", // 𢤩
+ 0x2292a: "=\x10\U0002292a", // 𢤪
+ 0x2292b: "=\x10\U0002292b", // 𢤫
+ 0x2292c: "=\x10\U0002292c", // 𢤬
+ 0x2292d: "=\x10\U0002292d", // 𢤭
+ 0x2292e: "=\x10\U0002292e", // 𢤮
+ 0x2292f: "=\x10\U0002292f", // 𢤯
+ 0x22930: "=\x10\U00022930", // 𢤰
+ 0x22931: "=\x10\U00022931", // 𢤱
+ 0x22932: "=\x10\U00022932", // 𢤲
+ 0x22933: "=\x10\U00022933", // 𢤳
+ 0x22934: "=\x10\U00022934", // 𢤴
+ 0x22935: "=\x10\U00022935", // 𢤵
+ 0x22936: "=\x10\U00022936", // 𢤶
+ 0x22937: "=\x10\U00022937", // 𢤷
+ 0x22938: "=\x10\U00022938", // 𢤸
+ 0x22939: "=\x10\U00022939", // 𢤹
+ 0x2293a: "=\x10\U0002293a", // 𢤺
+ 0x2293b: "=\x10\U0002293b", // 𢤻
+ 0x2293c: "=\x10\U0002293c", // 𢤼
+ 0x2293d: "=\x10\U0002293d", // 𢤽
+ 0x2293e: "=\x10\U0002293e", // 𢤾
+ 0x2293f: "=\x10\U0002293f", // 𢤿
+ 0x22940: "=\x10\U00022940", // 𢥀
+ 0x22941: "=\x10\U00022941", // 𢥁
+ 0x22942: "=\x10\U00022942", // 𢥂
+ 0x22943: "=\x10\U00022943", // 𢥃
+ 0x22944: "=\x10\U00022944", // 𢥄
+ 0x22945: "=\x10\U00022945", // 𢥅
+ 0x22946: "=\x10\U00022946", // 𢥆
+ 0x22947: "=\x10\U00022947", // 𢥇
+ 0x22948: "=\x10\U00022948", // 𢥈
+ 0x22949: "=\x10\U00022949", // 𢥉
+ 0x2294a: "=\x10\U0002294a", // 𢥊
+ 0x2294b: "=\x11\U0002294b", // 𢥋
+ 0x2294c: "=\x11\U0002294c", // 𢥌
+ 0x2294d: "=\x11\U0002294d", // 𢥍
+ 0x2294e: "=\x11\U0002294e", // 𢥎
+ 0x2294f: "=\x11\U0002294f", // 𢥏
+ 0x22950: "=\x11\U00022950", // 𢥐
+ 0x22951: "=\x11\U00022951", // 𢥑
+ 0x22952: "=\x11\U00022952", // 𢥒
+ 0x22953: "=\x11\U00022953", // 𢥓
+ 0x22954: "=\x11\U00022954", // 𢥔
+ 0x22955: "=\x11\U00022955", // 𢥕
+ 0x22956: "=\x11\U00022956", // 𢥖
+ 0x22957: "=\x12\U00022957", // 𢥗
+ 0x22958: "=\x12\U00022958", // 𢥘
+ 0x22959: "=\x12\U00022959", // 𢥙
+ 0x2295a: "=\x12\U0002295a", // 𢥚
+ 0x2295b: "=\x12\U0002295b", // 𢥛
+ 0x2295c: "=\x12\U0002295c", // 𢥜
+ 0x2295d: "=\x12\U0002295d", // 𢥝
+ 0x2295e: "=\x12\U0002295e", // 𢥞
+ 0x2295f: "=\x12\U0002295f", // 𢥟
+ 0x22960: "=\x12\U00022960", // 𢥠
+ 0x22961: "=\x12\U00022961", // 𢥡
+ 0x22962: "=\x12\U00022962", // 𢥢
+ 0x22963: "=\x12\U00022963", // 𢥣
+ 0x22964: "=\x12\U00022964", // 𢥤
+ 0x22965: "=\x13\U00022965", // 𢥥
+ 0x22966: "=\x13\U00022966", // 𢥦
+ 0x22967: "=\x13\U00022967", // 𢥧
+ 0x22968: "=\x13\U00022968", // 𢥨
+ 0x22969: "=\x13\U00022969", // 𢥩
+ 0x2296a: "=\x13\U0002296a", // 𢥪
+ 0x2296b: "=\x13\U0002296b", // 𢥫
+ 0x2296c: "=\x13\U0002296c", // 𢥬
+ 0x2296d: "=\x13\U0002296d", // 𢥭
+ 0x2296e: "=\x13\U0002296e", // 𢥮
+ 0x2296f: "=\x14\U0002296f", // 𢥯
+ 0x22970: "=\x14\U00022970", // 𢥰
+ 0x22971: "=\x14\U00022971", // 𢥱
+ 0x22972: "=\x14\U00022972", // 𢥲
+ 0x22973: "=\x14\U00022973", // 𢥳
+ 0x22974: "=\x14\U00022974", // 𢥴
+ 0x22975: "=\x14\U00022975", // 𢥵
+ 0x22976: "=\x14\U00022976", // 𢥶
+ 0x22977: "=\x14\U00022977", // 𢥷
+ 0x22978: "=\x14\U00022978", // 𢥸
+ 0x22979: "=\x14\U00022979", // 𢥹
+ 0x2297a: "=\x14\U0002297a", // 𢥺
+ 0x2297b: "=\x15\U0002297b", // 𢥻
+ 0x2297c: "=\x15\U0002297c", // 𢥼
+ 0x2297d: "=\x15\U0002297d", // 𢥽
+ 0x2297e: "=\x15\U0002297e", // 𢥾
+ 0x2297f: "=\x15\U0002297f", // 𢥿
+ 0x22980: "=\x15\U00022980", // 𢦀
+ 0x22981: "=\x15\U00022981", // 𢦁
+ 0x22982: "=\x15\U00022982", // 𢦂
+ 0x22983: "=\x17\U00022983", // 𢦃
+ 0x22984: "=\x17\U00022984", // 𢦄
+ 0x22985: "=\x18\U00022985", // 𢦅
+ 0x22986: "=\x18\U00022986", // 𢦆
+ 0x22987: "=\x18\U00022987", // 𢦇
+ 0x22988: "=\x19\U00022988", // 𢦈
+ 0x22989: "=\x19\U00022989", // 𢦉
+ 0x2298a: "=\x1b\U0002298a", // 𢦊
+ 0x2298b: "=\x1c\U0002298b", // 𢦋
+ 0x2298c: ">\x01\U0002298c", // 𢦌
+ 0x2298d: ">\x01\U0002298d", // 𢦍
+ 0x2298e: ">\x02\U0002298e", // 𢦎
+ 0x2298f: ">\x02\U0002298f", // 𢦏
+ 0x22990: ">\x02\U00022990", // 𢦐
+ 0x22991: ">\x02\U00022991", // 𢦑
+ 0x22992: ">\x03\U00022992", // 𢦒
+ 0x22993: ">\x03\U00022993", // 𢦓
+ 0x22994: ">\x03\U00022994", // 𢦔
+ 0x22995: ">\x03\U00022995", // 𢦕
+ 0x22996: ">\x03\U00022996", // 𢦖
+ 0x22997: ">\x03\U00022997", // 𢦗
+ 0x22998: ">\x03\U00022998", // 𢦘
+ 0x22999: ">\x03\U00022999", // 𢦙
+ 0x2299a: ">\x04\U0002299a", // 𢦚
+ 0x2299b: ">\x04\U0002299b", // 𢦛
+ 0x2299c: ">\x04\U0002299c", // 𢦜
+ 0x2299d: ">\x04\U0002299d", // 𢦝
+ 0x2299e: ">\x04\U0002299e", // 𢦞
+ 0x2299f: ">\x04\U0002299f", // 𢦟
+ 0x229a0: ">\x04\U000229a0", // 𢦠
+ 0x229a1: ">\x04\U000229a1", // 𢦡
+ 0x229a2: ">\x04\U000229a2", // 𢦢
+ 0x229a3: ">\x04\U000229a3", // 𢦣
+ 0x229a4: ">\x04\U000229a4", // 𢦤
+ 0x229a5: ">\x04\U000229a5", // 𢦥
+ 0x229a6: ">\x05\U000229a6", // 𢦦
+ 0x229a7: ">\x05\U000229a7", // 𢦧
+ 0x229a8: ">\x05\U000229a8", // 𢦨
+ 0x229a9: ">\x05\U000229a9", // 𢦩
+ 0x229aa: ">\x05\U000229aa", // 𢦪
+ 0x229ab: ">\x05\U000229ab", // 𢦫
+ 0x229ac: ">\x05\U000229ac", // 𢦬
+ 0x229ad: ">\x05\U000229ad", // 𢦭
+ 0x229ae: ">\x05\U000229ae", // 𢦮
+ 0x229af: ">\x05\U000229af", // 𢦯
+ 0x229b0: ">\x05\U000229b0", // 𢦰
+ 0x229b1: ">\x05\U000229b1", // 𢦱
+ 0x229b2: ">\x05\U000229b2", // 𢦲
+ 0x229b3: ">\x05\U000229b3", // 𢦳
+ 0x229b4: ">\x05\U000229b4", // 𢦴
+ 0x229b5: ">\x05\U000229b5", // 𢦵
+ 0x229b6: ">\x05\U000229b6", // 𢦶
+ 0x229b7: ">\x06\U000229b7", // 𢦷
+ 0x229b8: ">\x06\U000229b8", // 𢦸
+ 0x229b9: ">\x06\U000229b9", // 𢦹
+ 0x229ba: ">\x06\U000229ba", // 𢦺
+ 0x229bb: ">\x06\U000229bb", // 𢦻
+ 0x229bc: ">\x06\U000229bc", // 𢦼
+ 0x229bd: ">\x06\U000229bd", // 𢦽
+ 0x229be: ">\x06\U000229be", // 𢦾
+ 0x229bf: ">\a\U000229bf", // 𢦿
+ 0x229c0: ">\a\U000229c0", // 𢧀
+ 0x229c1: ">\a\U000229c1", // 𢧁
+ 0x229c2: ">\a\U000229c2", // 𢧂
+ 0x229c3: ">\a\U000229c3", // 𢧃
+ 0x229c4: ">\a\U000229c4", // 𢧄
+ 0x229c5: ">\a\U000229c5", // 𢧅
+ 0x229c6: ">\a\U000229c6", // 𢧆
+ 0x229c7: ">\a\U000229c7", // 𢧇
+ 0x229c8: ">\b\U000229c8", // 𢧈
+ 0x229c9: ">\b\U000229c9", // 𢧉
+ 0x229ca: ">\b\U000229ca", // 𢧊
+ 0x229cb: ">\b\U000229cb", // 𢧋
+ 0x229cc: ">\b\U000229cc", // 𢧌
+ 0x229cd: ">\b\U000229cd", // 𢧍
+ 0x229ce: ">\b\U000229ce", // 𢧎
+ 0x229cf: ">\b\U000229cf", // 𢧏
+ 0x229d0: ">\b\U000229d0", // 𢧐
+ 0x229d1: ">\b\U000229d1", // 𢧑
+ 0x229d2: ">\b\U000229d2", // 𢧒
+ 0x229d3: ">\b\U000229d3", // 𢧓
+ 0x229d4: ">\t\U000229d4", // 𢧔
+ 0x229d5: ">\t\U000229d5", // 𢧕
+ 0x229d6: ">\t\U000229d6", // 𢧖
+ 0x229d7: ">\t\U000229d7", // 𢧗
+ 0x229d8: ">\t\U000229d8", // 𢧘
+ 0x229d9: ">\t\U000229d9", // 𢧙
+ 0x229da: ">\t\U000229da", // 𢧚
+ 0x229db: ">\t\U000229db", // 𢧛
+ 0x229dc: ">\t\U000229dc", // 𢧜
+ 0x229dd: ">\t\U000229dd", // 𢧝
+ 0x229de: ">\t\U000229de", // 𢧞
+ 0x229df: ">\t\U000229df", // 𢧟
+ 0x229e0: ">\t\U000229e0", // 𢧠
+ 0x229e1: ">\t\U000229e1", // 𢧡
+ 0x229e2: ">\n\U000229e2", // 𢧢
+ 0x229e3: ">\n\U000229e3", // 𢧣
+ 0x229e4: ">\n\U000229e4", // 𢧤
+ 0x229e5: ">\n\U000229e5", // 𢧥
+ 0x229e6: ">\n\U000229e6", // 𢧦
+ 0x229e7: ">\n\U000229e7", // 𢧧
+ 0x229e8: ">\v\U000229e8", // 𢧨
+ 0x229e9: ">\n\U000229e9", // 𢧩
+ 0x229ea: ">\n\U000229ea", // 𢧪
+ 0x229eb: ">\n\U000229eb", // 𢧫
+ 0x229ec: ">\n\U000229ec", // 𢧬
+ 0x229ed: ">\n\U000229ed", // 𢧭
+ 0x229ee: ">\n\U000229ee", // 𢧮
+ 0x229ef: ">\n\U000229ef", // 𢧯
+ 0x229f0: ">\n\U000229f0", // 𢧰
+ 0x229f1: ">\n\U000229f1", // 𢧱
+ 0x229f2: ">\v\U000229f2", // 𢧲
+ 0x229f3: ">\v\U000229f3", // 𢧳
+ 0x229f4: ">\v\U000229f4", // 𢧴
+ 0x229f5: ">\v\U000229f5", // 𢧵
+ 0x229f6: ">\v\U000229f6", // 𢧶
+ 0x229f7: ">\v\U000229f7", // 𢧷
+ 0x229f8: ">\v\U000229f8", // 𢧸
+ 0x229f9: ">\v\U000229f9", // 𢧹
+ 0x229fa: ">\v\U000229fa", // 𢧺
+ 0x229fb: ">\v\U000229fb", // 𢧻
+ 0x229fc: ">\v\U000229fc", // 𢧼
+ 0x229fd: ">\v\U000229fd", // 𢧽
+ 0x229fe: ">\v\U000229fe", // 𢧾
+ 0x229ff: ">\v\U000229ff", // 𢧿
+ 0x22a00: ">\v\U00022a00", // 𢨀
+ 0x22a01: ">\v\U00022a01", // 𢨁
+ 0x22a02: ">\v\U00022a02", // 𢨂
+ 0x22a03: ">\v\U00022a03", // 𢨃
+ 0x22a04: ">\v\U00022a04", // 𢨄
+ 0x22a05: ">\v\U00022a05", // 𢨅
+ 0x22a06: ">\v\U00022a06", // 𢨆
+ 0x22a07: ">\f\U00022a07", // 𢨇
+ 0x22a08: ">\f\U00022a08", // 𢨈
+ 0x22a09: ">\f\U00022a09", // 𢨉
+ 0x22a0a: ">\f\U00022a0a", // 𢨊
+ 0x22a0b: ">\f\U00022a0b", // 𢨋
+ 0x22a0c: ">\f\U00022a0c", // 𢨌
+ 0x22a0d: ">\f\U00022a0d", // 𢨍
+ 0x22a0e: ">\f\U00022a0e", // 𢨎
+ 0x22a0f: ">\f\U00022a0f", // 𢨏
+ 0x22a10: "\x1e\r\U00022a10", // 𢨐
+ 0x22a11: ">\f\U00022a11", // 𢨑
+ 0x22a12: ">\f\U00022a12", // 𢨒
+ 0x22a13: ">\r\U00022a13", // 𢨓
+ 0x22a14: ">\r\U00022a14", // 𢨔
+ 0x22a15: ">\r\U00022a15", // 𢨕
+ 0x22a16: ">\r\U00022a16", // 𢨖
+ 0x22a17: ">\r\U00022a17", // 𢨗
+ 0x22a18: ">\x0e\U00022a18", // 𢨘
+ 0x22a19: ">\x0e\U00022a19", // 𢨙
+ 0x22a1a: ">\x0f\U00022a1a", // 𢨚
+ 0x22a1b: ">\x0f\U00022a1b", // 𢨛
+ 0x22a1c: ">\x0f\U00022a1c", // 𢨜
+ 0x22a1d: ">\x0f\U00022a1d", // 𢨝
+ 0x22a1e: ">\x10\U00022a1e", // 𢨞
+ 0x22a1f: ">\x10\U00022a1f", // 𢨟
+ 0x22a20: ">\x10\U00022a20", // 𢨠
+ 0x22a21: ">\x11\U00022a21", // 𢨡
+ 0x22a22: ">\x11\U00022a22", // 𢨢
+ 0x22a23: ">\x11\U00022a23", // 𢨣
+ 0x22a24: "?\x01\U00022a24", // 𢨤
+ 0x22a25: "?\x01\U00022a25", // 𢨥
+ 0x22a26: "?\x02\U00022a26", // 𢨦
+ 0x22a27: "?\x02\U00022a27", // 𢨧
+ 0x22a28: "?\x02\U00022a28", // 𢨨
+ 0x22a29: "?\x02\U00022a29", // 𢨩
+ 0x22a2a: "?\x03\U00022a2a", // 𢨪
+ 0x22a2b: "?\x03\U00022a2b", // 𢨫
+ 0x22a2c: "?\x03\U00022a2c", // 𢨬
+ 0x22a2d: "?\x03\U00022a2d", // 𢨭
+ 0x22a2e: "?\x03\U00022a2e", // 𢨮
+ 0x22a2f: "?\x04\U00022a2f", // 𢨯
+ 0x22a30: "?\x04\U00022a30", // 𢨰
+ 0x22a31: "?\x04\U00022a31", // 𢨱
+ 0x22a32: "?\x04\U00022a32", // 𢨲
+ 0x22a33: "?\x04\U00022a33", // 𢨳
+ 0x22a34: "?\x04\U00022a34", // 𢨴
+ 0x22a35: "?\x04\U00022a35", // 𢨵
+ 0x22a36: "?\x05\U00022a36", // 𢨶
+ 0x22a37: "?\x05\U00022a37", // 𢨷
+ 0x22a38: "?\x05\U00022a38", // 𢨸
+ 0x22a39: "?\x05\U00022a39", // 𢨹
+ 0x22a3a: "?\x05\U00022a3a", // 𢨺
+ 0x22a3b: "?\x05\U00022a3b", // 𢨻
+ 0x22a3c: "?\x05\U00022a3c", // 𢨼
+ 0x22a3d: "?\x05\U00022a3d", // 𢨽
+ 0x22a3e: "?\x05\U00022a3e", // 𢨾
+ 0x22a3f: "?\x05\U00022a3f", // 𢨿
+ 0x22a40: "?\x05\U00022a40", // 𢩀
+ 0x22a41: "?\x05\U00022a41", // 𢩁
+ 0x22a42: "?\x05\U00022a42", // 𢩂
+ 0x22a43: "?\x05\U00022a43", // 𢩃
+ 0x22a44: "?\x05\U00022a44", // 𢩄
+ 0x22a45: "?\x06\U00022a45", // 𢩅
+ 0x22a46: "?\x06\U00022a46", // 𢩆
+ 0x22a47: "?\x06\U00022a47", // 𢩇
+ 0x22a48: "?\x06\U00022a48", // 𢩈
+ 0x22a49: "?\x06\U00022a49", // 𢩉
+ 0x22a4a: "?\x06\U00022a4a", // 𢩊
+ 0x22a4b: "?\x06\U00022a4b", // 𢩋
+ 0x22a4c: "?\x06\U00022a4c", // 𢩌
+ 0x22a4d: "?\a\U00022a4d", // 𢩍
+ 0x22a4e: "?\a\U00022a4e", // 𢩎
+ 0x22a4f: "?\a\U00022a4f", // 𢩏
+ 0x22a50: "?\a\U00022a50", // 𢩐
+ 0x22a51: "?\b\U00022a51", // 𢩑
+ 0x22a52: "?\b\U00022a52", // 𢩒
+ 0x22a53: "?\b\U00022a53", // 𢩓
+ 0x22a54: "?\b\U00022a54", // 𢩔
+ 0x22a55: "?\b\U00022a55", // 𢩕
+ 0x22a56: "?\t\U00022a56", // 𢩖
+ 0x22a57: "?\t\U00022a57", // 𢩗
+ 0x22a58: "?\n\U00022a58", // 𢩘
+ 0x22a59: "?\n\U00022a59", // 𢩙
+ 0x22a5a: "?\n\U00022a5a", // 𢩚
+ 0x22a5b: "?\n\U00022a5b", // 𢩛
+ 0x22a5c: "?\v\U00022a5c", // 𢩜
+ 0x22a5d: "?\v\U00022a5d", // 𢩝
+ 0x22a5e: "?\v\U00022a5e", // 𢩞
+ 0x22a5f: "?\f\U00022a5f", // 𢩟
+ 0x22a60: "?\r\U00022a60", // 𢩠
+ 0x22a61: "?\x0e\U00022a61", // 𢩡
+ 0x22a62: "?\x11\U00022a62", // 𢩢
+ 0x22a63: "?\x13\U00022a63", // 𢩣
+ 0x22a64: "?\x13\U00022a64", // 𢩤
+ 0x22a65: "@\x01\U00022a65", // 𢩥
+ 0x22a66: "@\x01\U00022a66", // 𢩦
+ 0x22a67: "@\x01\U00022a67", // 𢩧
+ 0x22a68: "@\x02\U00022a68", // 𢩨
+ 0x22a69: "@\x02\U00022a69", // 𢩩
+ 0x22a6a: "@\x02\U00022a6a", // 𢩪
+ 0x22a6b: "@\x02\U00022a6b", // 𢩫
+ 0x22a6c: "@\x02\U00022a6c", // 𢩬
+ 0x22a6d: "@\x03\U00022a6d", // 𢩭
+ 0x22a6e: "@\x03\U00022a6e", // 𢩮
+ 0x22a6f: "@\x03\U00022a6f", // 𢩯
+ 0x22a70: "@\x03\U00022a70", // 𢩰
+ 0x22a71: "@\x03\U00022a71", // 𢩱
+ 0x22a72: "@\x03\U00022a72", // 𢩲
+ 0x22a73: "@\x03\U00022a73", // 𢩳
+ 0x22a74: "@\x03\U00022a74", // 𢩴
+ 0x22a75: "@\x03\U00022a75", // 𢩵
+ 0x22a76: "@\x03\U00022a76", // 𢩶
+ 0x22a77: "@\x03\U00022a77", // 𢩷
+ 0x22a78: "@\x03\U00022a78", // 𢩸
+ 0x22a79: "@\x03\U00022a79", // 𢩹
+ 0x22a7a: "@\x03\U00022a7a", // 𢩺
+ 0x22a7b: "@\x03\U00022a7b", // 𢩻
+ 0x22a7c: "@\x03\U00022a7c", // 𢩼
+ 0x22a7d: "@\x03\U00022a7d", // 𢩽
+ 0x22a7e: "@\x03\U00022a7e", // 𢩾
+ 0x22a7f: "@\x03\U00022a7f", // 𢩿
+ 0x22a80: "@\x03\U00022a80", // 𢪀
+ 0x22a81: "@\x03\U00022a81", // 𢪁
+ 0x22a82: "@\x03\U00022a82", // 𢪂
+ 0x22a83: "@\x04\U00022a83", // 𢪃
+ 0x22a84: "@\x04\U00022a84", // 𢪄
+ 0x22a85: "@\x04\U00022a85", // 𢪅
+ 0x22a86: "@\x04\U00022a86", // 𢪆
+ 0x22a87: "@\x04\U00022a87", // 𢪇
+ 0x22a88: "@\x04\U00022a88", // 𢪈
+ 0x22a89: "@\x04\U00022a89", // 𢪉
+ 0x22a8a: "@\x04\U00022a8a", // 𢪊
+ 0x22a8b: "@\x04\U00022a8b", // 𢪋
+ 0x22a8c: "@\x04\U00022a8c", // 𢪌
+ 0x22a8d: "@\x04\U00022a8d", // 𢪍
+ 0x22a8e: "@\x04\U00022a8e", // 𢪎
+ 0x22a8f: "@\x04\U00022a8f", // 𢪏
+ 0x22a90: "@\x04\U00022a90", // 𢪐
+ 0x22a91: "@\x04\U00022a91", // 𢪑
+ 0x22a92: "@\x04\U00022a92", // 𢪒
+ 0x22a93: "@\x04\U00022a93", // 𢪓
+ 0x22a94: "@\x04\U00022a94", // 𢪔
+ 0x22a95: "@\x04\U00022a95", // 𢪕
+ 0x22a96: "@\x04\U00022a96", // 𢪖
+ 0x22a97: "@\x04\U00022a97", // 𢪗
+ 0x22a98: "@\x04\U00022a98", // 𢪘
+ 0x22a99: "@\x04\U00022a99", // 𢪙
+ 0x22a9a: "@\x04\U00022a9a", // 𢪚
+ 0x22a9b: "@\x04\U00022a9b", // 𢪛
+ 0x22a9c: "@\x04\U00022a9c", // 𢪜
+ 0x22a9d: "@\x04\U00022a9d", // 𢪝
+ 0x22a9e: "@\x04\U00022a9e", // 𢪞
+ 0x22a9f: "@\x04\U00022a9f", // 𢪟
+ 0x22aa0: "@\x04\U00022aa0", // 𢪠
+ 0x22aa1: "@\x04\U00022aa1", // 𢪡
+ 0x22aa2: "@\x04\U00022aa2", // 𢪢
+ 0x22aa3: "@\x04\U00022aa3", // 𢪣
+ 0x22aa4: "@\x04\U00022aa4", // 𢪤
+ 0x22aa5: "@\x04\U00022aa5", // 𢪥
+ 0x22aa6: "@\x04\U00022aa6", // 𢪦
+ 0x22aa7: "@\x04\U00022aa7", // 𢪧
+ 0x22aa8: "@\x04\U00022aa8", // 𢪨
+ 0x22aa9: "@\x04\U00022aa9", // 𢪩
+ 0x22aaa: "@\x04\U00022aaa", // 𢪪
+ 0x22aab: "@\x04\U00022aab", // 𢪫
+ 0x22aac: "@\x04\U00022aac", // 𢪬
+ 0x22aad: "@\x04\U00022aad", // 𢪭
+ 0x22aae: "@\x04\U00022aae", // 𢪮
+ 0x22aaf: "@\x04\U00022aaf", // 𢪯
+ 0x22ab0: "@\x04\U00022ab0", // 𢪰
+ 0x22ab1: "@\x04\U00022ab1", // 𢪱
+ 0x22ab2: "@\x04\U00022ab2", // 𢪲
+ 0x22ab3: "@\x04\U00022ab3", // 𢪳
+ 0x22ab4: "@\x05\U00022ab4", // 𢪴
+ 0x22ab5: "@\x05\U00022ab5", // 𢪵
+ 0x22ab6: "@\x05\U00022ab6", // 𢪶
+ 0x22ab7: "@\x05\U00022ab7", // 𢪷
+ 0x22ab8: "@\x05\U00022ab8", // 𢪸
+ 0x22ab9: "@\x05\U00022ab9", // 𢪹
+ 0x22aba: "@\x05\U00022aba", // 𢪺
+ 0x22abb: "@\x05\U00022abb", // 𢪻
+ 0x22abc: "@\x05\U00022abc", // 𢪼
+ 0x22abd: "@\x05\U00022abd", // 𢪽
+ 0x22abe: "@\x05\U00022abe", // 𢪾
+ 0x22abf: "@\x05\U00022abf", // 𢪿
+ 0x22ac0: "@\x05\U00022ac0", // 𢫀
+ 0x22ac1: "@\x05\U00022ac1", // 𢫁
+ 0x22ac2: "@\x05\U00022ac2", // 𢫂
+ 0x22ac3: "@\x05\U00022ac3", // 𢫃
+ 0x22ac4: "@\x05\U00022ac4", // 𢫄
+ 0x22ac5: "@\x05\U00022ac5", // 𢫅
+ 0x22ac6: "@\x05\U00022ac6", // 𢫆
+ 0x22ac7: "@\x05\U00022ac7", // 𢫇
+ 0x22ac8: "@\x05\U00022ac8", // 𢫈
+ 0x22ac9: "@\x05\U00022ac9", // 𢫉
+ 0x22aca: "@\x05\U00022aca", // 𢫊
+ 0x22acb: "@\x05\U00022acb", // 𢫋
+ 0x22acc: "@\x05\U00022acc", // 𢫌
+ 0x22acd: "@\x05\U00022acd", // 𢫍
+ 0x22ace: "@\x05\U00022ace", // 𢫎
+ 0x22acf: "@\x05\U00022acf", // 𢫏
+ 0x22ad0: "@\x05\U00022ad0", // 𢫐
+ 0x22ad1: "@\x05\U00022ad1", // 𢫑
+ 0x22ad2: "@\x05\U00022ad2", // 𢫒
+ 0x22ad3: "@\x05\U00022ad3", // 𢫓
+ 0x22ad4: "@\x05\U00022ad4", // 𢫔
+ 0x22ad5: "@\x05\U00022ad5", // 𢫕
+ 0x22ad6: "@\x05\U00022ad6", // 𢫖
+ 0x22ad7: "@\x05\U00022ad7", // 𢫗
+ 0x22ad8: "@\x05\U00022ad8", // 𢫘
+ 0x22ad9: "@\x05\U00022ad9", // 𢫙
+ 0x22ada: "@\x05\U00022ada", // 𢫚
+ 0x22adb: "@\x05\U00022adb", // 𢫛
+ 0x22adc: "@\x05\U00022adc", // 𢫜
+ 0x22add: "@\x05\U00022add", // 𢫝
+ 0x22ade: "@\x05\U00022ade", // 𢫞
+ 0x22adf: "@\x05\U00022adf", // 𢫟
+ 0x22ae0: "@\x05\U00022ae0", // 𢫠
+ 0x22ae1: "@\x05\U00022ae1", // 𢫡
+ 0x22ae2: "@\x05\U00022ae2", // 𢫢
+ 0x22ae3: "@\x05\U00022ae3", // 𢫣
+ 0x22ae4: "@\x06\U00022ae4", // 𢫤
+ 0x22ae5: "@\x06\U00022ae5", // 𢫥
+ 0x22ae6: "@\x06\U00022ae6", // 𢫦
+ 0x22ae7: "@\x06\U00022ae7", // 𢫧
+ 0x22ae8: "@\x06\U00022ae8", // 𢫨
+ 0x22ae9: "@\x06\U00022ae9", // 𢫩
+ 0x22aea: "@\x06\U00022aea", // 𢫪
+ 0x22aeb: "@\x06\U00022aeb", // 𢫫
+ 0x22aec: "@\x06\U00022aec", // 𢫬
+ 0x22aed: "@\x06\U00022aed", // 𢫭
+ 0x22aee: "@\x06\U00022aee", // 𢫮
+ 0x22aef: "@\x06\U00022aef", // 𢫯
+ 0x22af0: "@\x06\U00022af0", // 𢫰
+ 0x22af1: "@\x06\U00022af1", // 𢫱
+ 0x22af2: "@\x06\U00022af2", // 𢫲
+ 0x22af3: "@\x06\U00022af3", // 𢫳
+ 0x22af4: "@\x06\U00022af4", // 𢫴
+ 0x22af5: "@\x06\U00022af5", // 𢫵
+ 0x22af6: "@\x06\U00022af6", // 𢫶
+ 0x22af7: "@\x06\U00022af7", // 𢫷
+ 0x22af8: "@\x06\U00022af8", // 𢫸
+ 0x22af9: "@\x06\U00022af9", // 𢫹
+ 0x22afa: "@\x06\U00022afa", // 𢫺
+ 0x22afb: "@\x06\U00022afb", // 𢫻
+ 0x22afc: "@\x06\U00022afc", // 𢫼
+ 0x22afd: "@\x06\U00022afd", // 𢫽
+ 0x22afe: "@\x06\U00022afe", // 𢫾
+ 0x22aff: "@\x06\U00022aff", // 𢫿
+ 0x22b00: "@\x06\U00022b00", // 𢬀
+ 0x22b01: "@\x06\U00022b01", // 𢬁
+ 0x22b02: "@\x06\U00022b02", // 𢬂
+ 0x22b03: "@\x06\U00022b03", // 𢬃
+ 0x22b04: "@\x06\U00022b04", // 𢬄
+ 0x22b05: "@\x06\U00022b05", // 𢬅
+ 0x22b06: "@\x06\U00022b06", // 𢬆
+ 0x22b07: "@\x06\U00022b07", // 𢬇
+ 0x22b08: "@\x06\U00022b08", // 𢬈
+ 0x22b09: "@\x06\U00022b09", // 𢬉
+ 0x22b0a: "@\x06\U00022b0a", // 𢬊
+ 0x22b0b: "@\x06\U00022b0b", // 𢬋
+ 0x22b0c: "@\x06\U00022b0c", // 𢬌
+ 0x22b0d: "@\x06\U00022b0d", // 𢬍
+ 0x22b0e: "@\x06\U00022b0e", // 𢬎
+ 0x22b0f: "@\x06\U00022b0f", // 𢬏
+ 0x22b10: "@\x06\U00022b10", // 𢬐
+ 0x22b11: "@\x06\U00022b11", // 𢬑
+ 0x22b12: "@\x06\U00022b12", // 𢬒
+ 0x22b13: "@\x06\U00022b13", // 𢬓
+ 0x22b14: "@\x06\U00022b14", // 𢬔
+ 0x22b15: "@\x06\U00022b15", // 𢬕
+ 0x22b16: "@\x06\U00022b16", // 𢬖
+ 0x22b17: "@\x06\U00022b17", // 𢬗
+ 0x22b18: "@\x06\U00022b18", // 𢬘
+ 0x22b19: "@\x06\U00022b19", // 𢬙
+ 0x22b1a: "@\x06\U00022b1a", // 𢬚
+ 0x22b1b: "@\x06\U00022b1b", // 𢬛
+ 0x22b1c: "@\x06\U00022b1c", // 𢬜
+ 0x22b1d: "@\x06\U00022b1d", // 𢬝
+ 0x22b1e: "@\x06\U00022b1e", // 𢬞
+ 0x22b1f: "@\x06\U00022b1f", // 𢬟
+ 0x22b20: "@\x06\U00022b20", // 𢬠
+ 0x22b21: "@\x06\U00022b21", // 𢬡
+ 0x22b22: "@\x06\U00022b22", // 𢬢
+ 0x22b23: "@\x06\U00022b23", // 𢬣
+ 0x22b24: "@\x06\U00022b24", // 𢬤
+ 0x22b25: "@\x06\U00022b25", // 𢬥
+ 0x22b26: "@\x06\U00022b26", // 𢬦
+ 0x22b27: "@\x06\U00022b27", // 𢬧
+ 0x22b28: "@\x06\U00022b28", // 𢬨
+ 0x22b29: "@\x06\U00022b29", // 𢬩
+ 0x22b2a: "@\x06\U00022b2a", // 𢬪
+ 0x22b2b: "@\x06\U00022b2b", // 𢬫
+ 0x22b2c: "@\x06\U00022b2c", // 𢬬
+ 0x22b2d: "@\x06\U00022b2d", // 𢬭
+ 0x22b2e: "@\x06\U00022b2e", // 𢬮
+ 0x22b2f: "@\a\U00022b2f", // 𢬯
+ 0x22b30: "@\a\U00022b30", // 𢬰
+ 0x22b31: "@\a\U00022b31", // 𢬱
+ 0x22b32: "@\a\U00022b32", // 𢬲
+ 0x22b33: "@\a\U00022b33", // 𢬳
+ 0x22b34: "@\a\U00022b34", // 𢬴
+ 0x22b35: "@\a\U00022b35", // 𢬵
+ 0x22b36: "@\a\U00022b36", // 𢬶
+ 0x22b37: "@\a\U00022b37", // 𢬷
+ 0x22b38: "@\a\U00022b38", // 𢬸
+ 0x22b39: "@\a\U00022b39", // 𢬹
+ 0x22b3a: "@\a\U00022b3a", // 𢬺
+ 0x22b3b: "@\a\U00022b3b", // 𢬻
+ 0x22b3c: "@\a\U00022b3c", // 𢬼
+ 0x22b3d: "@\a\U00022b3d", // 𢬽
+ 0x22b3e: "@\a\U00022b3e", // 𢬾
+ 0x22b3f: "@\a\U00022b3f", // 𢬿
+ 0x22b40: "@\a\U00022b40", // 𢭀
+ 0x22b41: "@\a\U00022b41", // 𢭁
+ 0x22b42: "@\a\U00022b42", // 𢭂
+ 0x22b43: "@\a\U00022b43", // 𢭃
+ 0x22b44: "@\a\U00022b44", // 𢭄
+ 0x22b45: "@\a\U00022b45", // 𢭅
+ 0x22b46: "@\a\U00022b46", // 𢭆
+ 0x22b47: "@\a\U00022b47", // 𢭇
+ 0x22b48: "@\a\U00022b48", // 𢭈
+ 0x22b49: "@\a\U00022b49", // 𢭉
+ 0x22b4a: "@\a\U00022b4a", // 𢭊
+ 0x22b4b: "@\a\U00022b4b", // 𢭋
+ 0x22b4c: "@\a\U00022b4c", // 𢭌
+ 0x22b4d: "@\a\U00022b4d", // 𢭍
+ 0x22b4e: "@\a\U00022b4e", // 𢭎
+ 0x22b4f: "@\a\U00022b4f", // 𢭏
+ 0x22b50: "@\a\U00022b50", // 𢭐
+ 0x22b51: "@\a\U00022b51", // 𢭑
+ 0x22b52: "@\a\U00022b52", // 𢭒
+ 0x22b53: "@\a\U00022b53", // 𢭓
+ 0x22b54: "@\a\U00022b54", // 𢭔
+ 0x22b55: "@\a\U00022b55", // 𢭕
+ 0x22b56: "@\a\U00022b56", // 𢭖
+ 0x22b57: "@\a\U00022b57", // 𢭗
+ 0x22b58: "@\a\U00022b58", // 𢭘
+ 0x22b59: "@\a\U00022b59", // 𢭙
+ 0x22b5a: "@\a\U00022b5a", // 𢭚
+ 0x22b5b: "@\a\U00022b5b", // 𢭛
+ 0x22b5c: "@\a\U00022b5c", // 𢭜
+ 0x22b5d: "@\a\U00022b5d", // 𢭝
+ 0x22b5e: "@\a\U00022b5e", // 𢭞
+ 0x22b5f: "@\a\U00022b5f", // 𢭟
+ 0x22b60: "@\a\U00022b60", // 𢭠
+ 0x22b61: "@\a\U00022b61", // 𢭡
+ 0x22b62: "@\a\U00022b62", // 𢭢
+ 0x22b63: "@\a\U00022b63", // 𢭣
+ 0x22b64: "@\a\U00022b64", // 𢭤
+ 0x22b65: "@\a\U00022b65", // 𢭥
+ 0x22b66: "@\a\U00022b66", // 𢭦
+ 0x22b67: "@\a\U00022b67", // 𢭧
+ 0x22b68: "@\a\U00022b68", // 𢭨
+ 0x22b69: "@\a\U00022b69", // 𢭩
+ 0x22b6a: "@\a\U00022b6a", // 𢭪
+ 0x22b6b: "@\a\U00022b6b", // 𢭫
+ 0x22b6c: "@\a\U00022b6c", // 𢭬
+ 0x22b6d: "@\a\U00022b6d", // 𢭭
+ 0x22b6e: "@\a\U00022b6e", // 𢭮
+ 0x22b6f: "@\a\U00022b6f", // 𢭯
+ 0x22b70: "@\a\U00022b70", // 𢭰
+ 0x22b71: "@\a\U00022b71", // 𢭱
+ 0x22b72: "@\a\U00022b72", // 𢭲
+ 0x22b73: "@\a\U00022b73", // 𢭳
+ 0x22b74: "@\a\U00022b74", // 𢭴
+ 0x22b75: "@\a\U00022b75", // 𢭵
+ 0x22b76: "@\a\U00022b76", // 𢭶
+ 0x22b77: "@\a\U00022b77", // 𢭷
+ 0x22b78: "@\a\U00022b78", // 𢭸
+ 0x22b79: "@\a\U00022b79", // 𢭹
+ 0x22b7a: "@\a\U00022b7a", // 𢭺
+ 0x22b7b: "@\a\U00022b7b", // 𢭻
+ 0x22b7c: "@\a\U00022b7c", // 𢭼
+ 0x22b7d: "@\a\U00022b7d", // 𢭽
+ 0x22b7e: "@\a\U00022b7e", // 𢭾
+ 0x22b7f: "@\a\U00022b7f", // 𢭿
+ 0x22b80: "@\a\U00022b80", // 𢮀
+ 0x22b81: "@\b\U00022b81", // 𢮁
+ 0x22b82: "@\b\U00022b82", // 𢮂
+ 0x22b83: "@\b\U00022b83", // 𢮃
+ 0x22b84: "@\b\U00022b84", // 𢮄
+ 0x22b85: "@\b\U00022b85", // 𢮅
+ 0x22b86: "@\b\U00022b86", // 𢮆
+ 0x22b87: "@\b\U00022b87", // 𢮇
+ 0x22b88: "@\b\U00022b88", // 𢮈
+ 0x22b89: "@\b\U00022b89", // 𢮉
+ 0x22b8a: "@\b\U00022b8a", // 𢮊
+ 0x22b8b: "@\b\U00022b8b", // 𢮋
+ 0x22b8c: "@\b\U00022b8c", // 𢮌
+ 0x22b8d: "@\b\U00022b8d", // 𢮍
+ 0x22b8e: "@\b\U00022b8e", // 𢮎
+ 0x22b8f: "@\b\U00022b8f", // 𢮏
+ 0x22b90: "@\b\U00022b90", // 𢮐
+ 0x22b91: "@\b\U00022b91", // 𢮑
+ 0x22b92: "@\b\U00022b92", // 𢮒
+ 0x22b93: "@\b\U00022b93", // 𢮓
+ 0x22b94: "@\b\U00022b94", // 𢮔
+ 0x22b95: "@\b\U00022b95", // 𢮕
+ 0x22b96: "@\b\U00022b96", // 𢮖
+ 0x22b97: "@\b\U00022b97", // 𢮗
+ 0x22b98: "@\b\U00022b98", // 𢮘
+ 0x22b99: "@\b\U00022b99", // 𢮙
+ 0x22b9a: "@\b\U00022b9a", // 𢮚
+ 0x22b9b: "@\b\U00022b9b", // 𢮛
+ 0x22b9c: "@\b\U00022b9c", // 𢮜
+ 0x22b9d: "@\b\U00022b9d", // 𢮝
+ 0x22b9e: "@\b\U00022b9e", // 𢮞
+ 0x22b9f: "@\b\U00022b9f", // 𢮟
+ 0x22ba0: "@\b\U00022ba0", // 𢮠
+ 0x22ba1: "@\b\U00022ba1", // 𢮡
+ 0x22ba2: "@\b\U00022ba2", // 𢮢
+ 0x22ba3: "@\b\U00022ba3", // 𢮣
+ 0x22ba4: "@\b\U00022ba4", // 𢮤
+ 0x22ba5: "@\b\U00022ba5", // 𢮥
+ 0x22ba6: "@\b\U00022ba6", // 𢮦
+ 0x22ba7: "@\b\U00022ba7", // 𢮧
+ 0x22ba8: "@\b\U00022ba8", // 𢮨
+ 0x22ba9: "@\b\U00022ba9", // 𢮩
+ 0x22baa: "@\b\U00022baa", // 𢮪
+ 0x22bab: "@\b\U00022bab", // 𢮫
+ 0x22bac: "@\b\U00022bac", // 𢮬
+ 0x22bad: "@\b\U00022bad", // 𢮭
+ 0x22bae: "@\b\U00022bae", // 𢮮
+ 0x22baf: "@\b\U00022baf", // 𢮯
+ 0x22bb0: "@\b\U00022bb0", // 𢮰
+ 0x22bb1: "@\b\U00022bb1", // 𢮱
+ 0x22bb2: "@\b\U00022bb2", // 𢮲
+ 0x22bb3: "@\b\U00022bb3", // 𢮳
+ 0x22bb4: "@\b\U00022bb4", // 𢮴
+ 0x22bb5: "@\b\U00022bb5", // 𢮵
+ 0x22bb6: "@\b\U00022bb6", // 𢮶
+ 0x22bb7: "@\b\U00022bb7", // 𢮷
+ 0x22bb8: "@\b\U00022bb8", // 𢮸
+ 0x22bb9: "@\b\U00022bb9", // 𢮹
+ 0x22bba: "@\b\U00022bba", // 𢮺
+ 0x22bbb: "@\b\U00022bbb", // 𢮻
+ 0x22bbc: "@\b\U00022bbc", // 𢮼
+ 0x22bbd: "@\b\U00022bbd", // 𢮽
+ 0x22bbe: "@\b\U00022bbe", // 𢮾
+ 0x22bbf: "@\b\U00022bbf", // 𢮿
+ 0x22bc0: "@\b\U00022bc0", // 𢯀
+ 0x22bc1: "@\b\U00022bc1", // 𢯁
+ 0x22bc2: "@\b\U00022bc2", // 𢯂
+ 0x22bc3: "@\b\U00022bc3", // 𢯃
+ 0x22bc4: "@\b\U00022bc4", // 𢯄
+ 0x22bc5: "@\b\U00022bc5", // 𢯅
+ 0x22bc6: "@\b\U00022bc6", // 𢯆
+ 0x22bc7: "@\b\U00022bc7", // 𢯇
+ 0x22bc8: "@\b\U00022bc8", // 𢯈
+ 0x22bc9: "@\b\U00022bc9", // 𢯉
+ 0x22bca: "@\b\U00022bca", // 𢯊
+ 0x22bcb: "@\b\U00022bcb", // 𢯋
+ 0x22bcc: "@\b\U00022bcc", // 𢯌
+ 0x22bcd: "@\b\U00022bcd", // 𢯍
+ 0x22bce: "@\b\U00022bce", // 𢯎
+ 0x22bcf: "@\b\U00022bcf", // 𢯏
+ 0x22bd0: "@\b\U00022bd0", // 𢯐
+ 0x22bd1: "@\b\U00022bd1", // 𢯑
+ 0x22bd2: "@\b\U00022bd2", // 𢯒
+ 0x22bd3: "@\b\U00022bd3", // 𢯓
+ 0x22bd4: "@\b\U00022bd4", // 𢯔
+ 0x22bd5: "@\b\U00022bd5", // 𢯕
+ 0x22bd6: "@\b\U00022bd6", // 𢯖
+ 0x22bd7: "@\b\U00022bd7", // 𢯗
+ 0x22bd8: "@\b\U00022bd8", // 𢯘
+ 0x22bd9: "@\b\U00022bd9", // 𢯙
+ 0x22bda: "@\b\U00022bda", // 𢯚
+ 0x22bdb: "@\b\U00022bdb", // 𢯛
+ 0x22bdc: "@\b\U00022bdc", // 𢯜
+ 0x22bdd: "@\b\U00022bdd", // 𢯝
+ 0x22bde: "@\b\U00022bde", // 𢯞
+ 0x22bdf: "@\b\U00022bdf", // 𢯟
+ 0x22be0: "@\b\U00022be0", // 𢯠
+ 0x22be1: "@\b\U00022be1", // 𢯡
+ 0x22be2: "@\b\U00022be2", // 𢯢
+ 0x22be3: "@\b\U00022be3", // 𢯣
+ 0x22be4: "@\b\U00022be4", // 𢯤
+ 0x22be5: "@\b\U00022be5", // 𢯥
+ 0x22be6: "@\b\U00022be6", // 𢯦
+ 0x22be7: "@\b\U00022be7", // 𢯧
+ 0x22be8: "@\b\U00022be8", // 𢯨
+ 0x22be9: "@\t\U00022be9", // 𢯩
+ 0x22bea: "@\t\U00022bea", // 𢯪
+ 0x22beb: "@\t\U00022beb", // 𢯫
+ 0x22bec: "@\t\U00022bec", // 𢯬
+ 0x22bed: "@\t\U00022bed", // 𢯭
+ 0x22bee: "@\t\U00022bee", // 𢯮
+ 0x22bef: "@\t\U00022bef", // 𢯯
+ 0x22bf0: "@\t\U00022bf0", // 𢯰
+ 0x22bf1: "@\t\U00022bf1", // 𢯱
+ 0x22bf2: "@\t\U00022bf2", // 𢯲
+ 0x22bf3: "@\t\U00022bf3", // 𢯳
+ 0x22bf4: "@\t\U00022bf4", // 𢯴
+ 0x22bf5: "@\t\U00022bf5", // 𢯵
+ 0x22bf6: "@\t\U00022bf6", // 𢯶
+ 0x22bf7: "@\t\U00022bf7", // 𢯷
+ 0x22bf8: "@\t\U00022bf8", // 𢯸
+ 0x22bf9: "@\t\U00022bf9", // 𢯹
+ 0x22bfa: "@\t\U00022bfa", // 𢯺
+ 0x22bfb: "@\t\U00022bfb", // 𢯻
+ 0x22bfc: "@\t\U00022bfc", // 𢯼
+ 0x22bfd: "@\t\U00022bfd", // 𢯽
+ 0x22bfe: "@\t\U00022bfe", // 𢯾
+ 0x22bff: "@\t\U00022bff", // 𢯿
+ 0x22c00: "@\t\U00022c00", // 𢰀
+ 0x22c01: "@\t\U00022c01", // 𢰁
+ 0x22c02: "@\t\U00022c02", // 𢰂
+ 0x22c03: "@\t\U00022c03", // 𢰃
+ 0x22c04: "@\t\U00022c04", // 𢰄
+ 0x22c05: "@\t\U00022c05", // 𢰅
+ 0x22c06: "@\t\U00022c06", // 𢰆
+ 0x22c07: "@\t\U00022c07", // 𢰇
+ 0x22c08: "@\t\U00022c08", // 𢰈
+ 0x22c09: "@\t\U00022c09", // 𢰉
+ 0x22c0a: "@\t\U00022c0a", // 𢰊
+ 0x22c0b: "@\t\U00022c0b", // 𢰋
+ 0x22c0c: "@\t\U00022c0c", // 𢰌
+ 0x22c0d: "@\t\U00022c0d", // 𢰍
+ 0x22c0e: "@\t\U00022c0e", // 𢰎
+ 0x22c0f: "@\t\U00022c0f", // 𢰏
+ 0x22c10: "@\t\U00022c10", // 𢰐
+ 0x22c11: "@\t\U00022c11", // 𢰑
+ 0x22c12: "@\t\U00022c12", // 𢰒
+ 0x22c13: "@\t\U00022c13", // 𢰓
+ 0x22c14: "@\t\U00022c14", // 𢰔
+ 0x22c15: "@\t\U00022c15", // 𢰕
+ 0x22c16: "@\t\U00022c16", // 𢰖
+ 0x22c17: "@\t\U00022c17", // 𢰗
+ 0x22c18: "@\t\U00022c18", // 𢰘
+ 0x22c19: "@\t\U00022c19", // 𢰙
+ 0x22c1a: "@\t\U00022c1a", // 𢰚
+ 0x22c1b: "@\t\U00022c1b", // 𢰛
+ 0x22c1c: "@\t\U00022c1c", // 𢰜
+ 0x22c1d: "@\t\U00022c1d", // 𢰝
+ 0x22c1e: "@\t\U00022c1e", // 𢰞
+ 0x22c1f: "@\t\U00022c1f", // 𢰟
+ 0x22c20: "@\t\U00022c20", // 𢰠
+ 0x22c21: "@\t\U00022c21", // 𢰡
+ 0x22c22: "@\t\U00022c22", // 𢰢
+ 0x22c23: "@\t\U00022c23", // 𢰣
+ 0x22c24: "@\t\U00022c24", // 𢰤
+ 0x22c25: "@\t\U00022c25", // 𢰥
+ 0x22c26: "@\t\U00022c26", // 𢰦
+ 0x22c27: "@\t\U00022c27", // 𢰧
+ 0x22c28: "@\t\U00022c28", // 𢰨
+ 0x22c29: "@\t\U00022c29", // 𢰩
+ 0x22c2a: "@\t\U00022c2a", // 𢰪
+ 0x22c2b: "@\t\U00022c2b", // 𢰫
+ 0x22c2c: "@\t\U00022c2c", // 𢰬
+ 0x22c2d: "@\t\U00022c2d", // 𢰭
+ 0x22c2e: "@\t\U00022c2e", // 𢰮
+ 0x22c2f: "@\t\U00022c2f", // 𢰯
+ 0x22c30: "@\t\U00022c30", // 𢰰
+ 0x22c31: "@\t\U00022c31", // 𢰱
+ 0x22c32: "@\t\U00022c32", // 𢰲
+ 0x22c33: "@\t\U00022c33", // 𢰳
+ 0x22c34: "@\t\U00022c34", // 𢰴
+ 0x22c35: "@\t\U00022c35", // 𢰵
+ 0x22c36: "@\t\U00022c36", // 𢰶
+ 0x22c37: "@\t\U00022c37", // 𢰷
+ 0x22c38: "@\t\U00022c38", // 𢰸
+ 0x22c39: "@\t\U00022c39", // 𢰹
+ 0x22c3a: "@\t\U00022c3a", // 𢰺
+ 0x22c3b: "@\t\U00022c3b", // 𢰻
+ 0x22c3c: "@\t\U00022c3c", // 𢰼
+ 0x22c3d: "@\t\U00022c3d", // 𢰽
+ 0x22c3e: "@\t\U00022c3e", // 𢰾
+ 0x22c3f: "m\b\U00022c3f", // 𢰿
+ 0x22c40: "@\t\U00022c40", // 𢱀
+ 0x22c41: "@\t\U00022c41", // 𢱁
+ 0x22c42: "@\t\U00022c42", // 𢱂
+ 0x22c43: "@\t\U00022c43", // 𢱃
+ 0x22c44: "@\t\U00022c44", // 𢱄
+ 0x22c45: "@\t\U00022c45", // 𢱅
+ 0x22c46: "@\t\U00022c46", // 𢱆
+ 0x22c47: "@\t\U00022c47", // 𢱇
+ 0x22c48: "@\t\U00022c48", // 𢱈
+ 0x22c49: "@\t\U00022c49", // 𢱉
+ 0x22c4a: "@\t\U00022c4a", // 𢱊
+ 0x22c4b: "@\t\U00022c4b", // 𢱋
+ 0x22c4c: "@\t\U00022c4c", // 𢱌
+ 0x22c4d: "@\t\U00022c4d", // 𢱍
+ 0x22c4e: "@\t\U00022c4e", // 𢱎
+ 0x22c4f: "@\t\U00022c4f", // 𢱏
+ 0x22c50: "@\t\U00022c50", // 𢱐
+ 0x22c51: "@\t\U00022c51", // 𢱑
+ 0x22c52: "@\t\U00022c52", // 𢱒
+ 0x22c53: "@\t\U00022c53", // 𢱓
+ 0x22c54: "@\t\U00022c54", // 𢱔
+ 0x22c55: "@\t\U00022c55", // 𢱕
+ 0x22c56: "@\t\U00022c56", // 𢱖
+ 0x22c57: "@\t\U00022c57", // 𢱗
+ 0x22c58: "@\t\U00022c58", // 𢱘
+ 0x22c59: "@\t\U00022c59", // 𢱙
+ 0x22c5a: "@\t\U00022c5a", // 𢱚
+ 0x22c5b: "@\t\U00022c5b", // 𢱛
+ 0x22c5c: "@\t\U00022c5c", // 𢱜
+ 0x22c5d: "@\t\U00022c5d", // 𢱝
+ 0x22c5e: "@\t\U00022c5e", // 𢱞
+ 0x22c5f: "@\n\U00022c5f", // 𢱟
+ 0x22c60: "@\n\U00022c60", // 𢱠
+ 0x22c61: "@\n\U00022c61", // 𢱡
+ 0x22c62: "@\n\U00022c62", // 𢱢
+ 0x22c63: "@\n\U00022c63", // 𢱣
+ 0x22c64: "@\n\U00022c64", // 𢱤
+ 0x22c65: "@\n\U00022c65", // 𢱥
+ 0x22c66: "@\n\U00022c66", // 𢱦
+ 0x22c67: "@\n\U00022c67", // 𢱧
+ 0x22c68: "@\n\U00022c68", // 𢱨
+ 0x22c69: "@\n\U00022c69", // 𢱩
+ 0x22c6a: "@\n\U00022c6a", // 𢱪
+ 0x22c6b: "@\n\U00022c6b", // 𢱫
+ 0x22c6c: "@\n\U00022c6c", // 𢱬
+ 0x22c6d: "@\n\U00022c6d", // 𢱭
+ 0x22c6e: "@\n\U00022c6e", // 𢱮
+ 0x22c6f: "@\n\U00022c6f", // 𢱯
+ 0x22c70: "@\n\U00022c70", // 𢱰
+ 0x22c71: "@\n\U00022c71", // 𢱱
+ 0x22c72: "@\n\U00022c72", // 𢱲
+ 0x22c73: "@\n\U00022c73", // 𢱳
+ 0x22c74: "@\n\U00022c74", // 𢱴
+ 0x22c75: "@\n\U00022c75", // 𢱵
+ 0x22c76: "@\n\U00022c76", // 𢱶
+ 0x22c77: "@\n\U00022c77", // 𢱷
+ 0x22c78: "@\n\U00022c78", // 𢱸
+ 0x22c79: "@\n\U00022c79", // 𢱹
+ 0x22c7a: "@\n\U00022c7a", // 𢱺
+ 0x22c7b: "@\n\U00022c7b", // 𢱻
+ 0x22c7c: "@\n\U00022c7c", // 𢱼
+ 0x22c7d: "@\n\U00022c7d", // 𢱽
+ 0x22c7e: "@\n\U00022c7e", // 𢱾
+ 0x22c7f: "@\n\U00022c7f", // 𢱿
+ 0x22c80: "@\n\U00022c80", // 𢲀
+ 0x22c81: "@\n\U00022c81", // 𢲁
+ 0x22c82: "@\n\U00022c82", // 𢲂
+ 0x22c83: "@\n\U00022c83", // 𢲃
+ 0x22c84: "@\n\U00022c84", // 𢲄
+ 0x22c85: "@\n\U00022c85", // 𢲅
+ 0x22c86: "@\n\U00022c86", // 𢲆
+ 0x22c87: "@\n\U00022c87", // 𢲇
+ 0x22c88: "@\n\U00022c88", // 𢲈
+ 0x22c89: "@\n\U00022c89", // 𢲉
+ 0x22c8a: "@\n\U00022c8a", // 𢲊
+ 0x22c8b: "@\n\U00022c8b", // 𢲋
+ 0x22c8c: "@\n\U00022c8c", // 𢲌
+ 0x22c8d: "@\n\U00022c8d", // 𢲍
+ 0x22c8e: "@\n\U00022c8e", // 𢲎
+ 0x22c8f: "@\n\U00022c8f", // 𢲏
+ 0x22c90: "@\n\U00022c90", // 𢲐
+ 0x22c91: "@\n\U00022c91", // 𢲑
+ 0x22c92: "@\n\U00022c92", // 𢲒
+ 0x22c93: "@\n\U00022c93", // 𢲓
+ 0x22c94: "@\n\U00022c94", // 𢲔
+ 0x22c95: "@\n\U00022c95", // 𢲕
+ 0x22c96: "@\n\U00022c96", // 𢲖
+ 0x22c97: "@\n\U00022c97", // 𢲗
+ 0x22c98: "@\n\U00022c98", // 𢲘
+ 0x22c99: "@\n\U00022c99", // 𢲙
+ 0x22c9a: "@\n\U00022c9a", // 𢲚
+ 0x22c9b: "@\n\U00022c9b", // 𢲛
+ 0x22c9c: "@\n\U00022c9c", // 𢲜
+ 0x22c9d: "@\n\U00022c9d", // 𢲝
+ 0x22c9e: "@\n\U00022c9e", // 𢲞
+ 0x22c9f: "@\n\U00022c9f", // 𢲟
+ 0x22ca0: "@\n\U00022ca0", // 𢲠
+ 0x22ca1: "@\n\U00022ca1", // 𢲡
+ 0x22ca2: "@\n\U00022ca2", // 𢲢
+ 0x22ca3: "@\n\U00022ca3", // 𢲣
+ 0x22ca4: "@\n\U00022ca4", // 𢲤
+ 0x22ca5: "@\n\U00022ca5", // 𢲥
+ 0x22ca6: "@\n\U00022ca6", // 𢲦
+ 0x22ca7: "@\n\U00022ca7", // 𢲧
+ 0x22ca8: "@\n\U00022ca8", // 𢲨
+ 0x22ca9: "@\n\U00022ca9", // 𢲩
+ 0x22caa: "@\n\U00022caa", // 𢲪
+ 0x22cab: "@\n\U00022cab", // 𢲫
+ 0x22cac: "@\n\U00022cac", // 𢲬
+ 0x22cad: "@\n\U00022cad", // 𢲭
+ 0x22cae: "@\n\U00022cae", // 𢲮
+ 0x22caf: "@\n\U00022caf", // 𢲯
+ 0x22cb0: "@\n\U00022cb0", // 𢲰
+ 0x22cb1: "@\n\U00022cb1", // 𢲱
+ 0x22cb2: "@\n\U00022cb2", // 𢲲
+ 0x22cb3: "@\v\U00022cb3", // 𢲳
+ 0x22cb4: "@\v\U00022cb4", // 𢲴
+ 0x22cb5: "@\v\U00022cb5", // 𢲵
+ 0x22cb6: "@\v\U00022cb6", // 𢲶
+ 0x22cb7: "@\v\U00022cb7", // 𢲷
+ 0x22cb8: "@\v\U00022cb8", // 𢲸
+ 0x22cb9: "@\v\U00022cb9", // 𢲹
+ 0x22cba: "@\v\U00022cba", // 𢲺
+ 0x22cbb: "@\v\U00022cbb", // 𢲻
+ 0x22cbc: "@\v\U00022cbc", // 𢲼
+ 0x22cbd: "@\v\U00022cbd", // 𢲽
+ 0x22cbe: "@\v\U00022cbe", // 𢲾
+ 0x22cbf: "@\v\U00022cbf", // 𢲿
+ 0x22cc0: "@\v\U00022cc0", // 𢳀
+ 0x22cc1: "@\v\U00022cc1", // 𢳁
+ 0x22cc2: "@\v\U00022cc2", // 𢳂
+ 0x22cc3: "@\v\U00022cc3", // 𢳃
+ 0x22cc4: "@\v\U00022cc4", // 𢳄
+ 0x22cc5: "@\v\U00022cc5", // 𢳅
+ 0x22cc6: "@\v\U00022cc6", // 𢳆
+ 0x22cc7: "@\v\U00022cc7", // 𢳇
+ 0x22cc8: "@\v\U00022cc8", // 𢳈
+ 0x22cc9: "@\v\U00022cc9", // 𢳉
+ 0x22cca: "@\v\U00022cca", // 𢳊
+ 0x22ccb: "@\v\U00022ccb", // 𢳋
+ 0x22ccc: "@\v\U00022ccc", // 𢳌
+ 0x22ccd: "@\v\U00022ccd", // 𢳍
+ 0x22cce: "@\v\U00022cce", // 𢳎
+ 0x22ccf: "@\v\U00022ccf", // 𢳏
+ 0x22cd0: "@\v\U00022cd0", // 𢳐
+ 0x22cd1: "@\v\U00022cd1", // 𢳑
+ 0x22cd2: "@\v\U00022cd2", // 𢳒
+ 0x22cd3: "@\v\U00022cd3", // 𢳓
+ 0x22cd4: "@\v\U00022cd4", // 𢳔
+ 0x22cd5: "@\v\U00022cd5", // 𢳕
+ 0x22cd6: "@\v\U00022cd6", // 𢳖
+ 0x22cd7: "@\v\U00022cd7", // 𢳗
+ 0x22cd8: "@\v\U00022cd8", // 𢳘
+ 0x22cd9: "@\v\U00022cd9", // 𢳙
+ 0x22cda: "@\v\U00022cda", // 𢳚
+ 0x22cdb: "@\v\U00022cdb", // 𢳛
+ 0x22cdc: "@\v\U00022cdc", // 𢳜
+ 0x22cdd: "@\v\U00022cdd", // 𢳝
+ 0x22cde: "@\v\U00022cde", // 𢳞
+ 0x22cdf: "@\v\U00022cdf", // 𢳟
+ 0x22ce0: "@\v\U00022ce0", // 𢳠
+ 0x22ce1: "@\v\U00022ce1", // 𢳡
+ 0x22ce2: "@\v\U00022ce2", // 𢳢
+ 0x22ce3: "@\v\U00022ce3", // 𢳣
+ 0x22ce4: "@\v\U00022ce4", // 𢳤
+ 0x22ce5: "@\v\U00022ce5", // 𢳥
+ 0x22ce6: "@\v\U00022ce6", // 𢳦
+ 0x22ce7: "@\v\U00022ce7", // 𢳧
+ 0x22ce8: "@\v\U00022ce8", // 𢳨
+ 0x22ce9: "@\v\U00022ce9", // 𢳩
+ 0x22cea: "@\v\U00022cea", // 𢳪
+ 0x22ceb: "@\v\U00022ceb", // 𢳫
+ 0x22cec: "@\v\U00022cec", // 𢳬
+ 0x22ced: "@\v\U00022ced", // 𢳭
+ 0x22cee: "@\v\U00022cee", // 𢳮
+ 0x22cef: "@\v\U00022cef", // 𢳯
+ 0x22cf0: "@\v\U00022cf0", // 𢳰
+ 0x22cf1: "@\v\U00022cf1", // 𢳱
+ 0x22cf2: "@\v\U00022cf2", // 𢳲
+ 0x22cf3: "@\v\U00022cf3", // 𢳳
+ 0x22cf4: "@\v\U00022cf4", // 𢳴
+ 0x22cf5: "@\v\U00022cf5", // 𢳵
+ 0x22cf6: "@\v\U00022cf6", // 𢳶
+ 0x22cf7: "@\v\U00022cf7", // 𢳷
+ 0x22cf8: "@\v\U00022cf8", // 𢳸
+ 0x22cf9: "@\v\U00022cf9", // 𢳹
+ 0x22cfa: "@\v\U00022cfa", // 𢳺
+ 0x22cfb: "@\v\U00022cfb", // 𢳻
+ 0x22cfc: "@\v\U00022cfc", // 𢳼
+ 0x22cfd: "@\v\U00022cfd", // 𢳽
+ 0x22cfe: "@\v\U00022cfe", // 𢳾
+ 0x22cff: "@\v\U00022cff", // 𢳿
+ 0x22d00: "@\v\U00022d00", // 𢴀
+ 0x22d01: "@\v\U00022d01", // 𢴁
+ 0x22d02: "@\v\U00022d02", // 𢴂
+ 0x22d03: "@\v\U00022d03", // 𢴃
+ 0x22d04: "@\v\U00022d04", // 𢴄
+ 0x22d05: "@\v\U00022d05", // 𢴅
+ 0x22d06: "@\v\U00022d06", // 𢴆
+ 0x22d07: "@\v\U00022d07", // 𢴇
+ 0x22d08: "@\v\U00022d08", // 𢴈
+ 0x22d09: "@\v\U00022d09", // 𢴉
+ 0x22d0a: "@\v\U00022d0a", // 𢴊
+ 0x22d0b: "@\v\U00022d0b", // 𢴋
+ 0x22d0c: "@\v\U00022d0c", // 𢴌
+ 0x22d0d: "@\v\U00022d0d", // 𢴍
+ 0x22d0e: "@\v\U00022d0e", // 𢴎
+ 0x22d0f: "@\v\U00022d0f", // 𢴏
+ 0x22d10: "@\v\U00022d10", // 𢴐
+ 0x22d11: "@\v\U00022d11", // 𢴑
+ 0x22d12: "@\v\U00022d12", // 𢴒
+ 0x22d13: "@\v\U00022d13", // 𢴓
+ 0x22d14: "@\v\U00022d14", // 𢴔
+ 0x22d15: "@\f\U00022d15", // 𢴕
+ 0x22d16: "@\v\U00022d16", // 𢴖
+ 0x22d17: "@\v\U00022d17", // 𢴗
+ 0x22d18: "@\v\U00022d18", // 𢴘
+ 0x22d19: "@\v\U00022d19", // 𢴙
+ 0x22d1a: "@\v\U00022d1a", // 𢴚
+ 0x22d1b: "@\v\U00022d1b", // 𢴛
+ 0x22d1c: "@\v\U00022d1c", // 𢴜
+ 0x22d1d: "@\v\U00022d1d", // 𢴝
+ 0x22d1e: "@\v\U00022d1e", // 𢴞
+ 0x22d1f: "@\v\U00022d1f", // 𢴟
+ 0x22d20: "@\f\U00022d20", // 𢴠
+ 0x22d21: "@\f\U00022d21", // 𢴡
+ 0x22d22: "@\f\U00022d22", // 𢴢
+ 0x22d23: "@\f\U00022d23", // 𢴣
+ 0x22d24: "@\f\U00022d24", // 𢴤
+ 0x22d25: "@\f\U00022d25", // 𢴥
+ 0x22d26: "@\f\U00022d26", // 𢴦
+ 0x22d27: "@\f\U00022d27", // 𢴧
+ 0x22d28: "@\f\U00022d28", // 𢴨
+ 0x22d29: "@\f\U00022d29", // 𢴩
+ 0x22d2a: "@\f\U00022d2a", // 𢴪
+ 0x22d2b: "@\f\U00022d2b", // 𢴫
+ 0x22d2c: "@\f\U00022d2c", // 𢴬
+ 0x22d2d: "@\f\U00022d2d", // 𢴭
+ 0x22d2e: "@\f\U00022d2e", // 𢴮
+ 0x22d2f: "@\f\U00022d2f", // 𢴯
+ 0x22d30: "@\f\U00022d30", // 𢴰
+ 0x22d31: "@\f\U00022d31", // 𢴱
+ 0x22d32: "@\f\U00022d32", // 𢴲
+ 0x22d33: "@\f\U00022d33", // 𢴳
+ 0x22d34: "@\f\U00022d34", // 𢴴
+ 0x22d35: "@\f\U00022d35", // 𢴵
+ 0x22d36: "@\f\U00022d36", // 𢴶
+ 0x22d37: "@\f\U00022d37", // 𢴷
+ 0x22d38: "@\f\U00022d38", // 𢴸
+ 0x22d39: "@\f\U00022d39", // 𢴹
+ 0x22d3a: "@\f\U00022d3a", // 𢴺
+ 0x22d3b: "@\f\U00022d3b", // 𢴻
+ 0x22d3c: "@\f\U00022d3c", // 𢴼
+ 0x22d3d: "@\f\U00022d3d", // 𢴽
+ 0x22d3e: "@\f\U00022d3e", // 𢴾
+ 0x22d3f: "@\f\U00022d3f", // 𢴿
+ 0x22d40: "@\f\U00022d40", // 𢵀
+ 0x22d41: "@\f\U00022d41", // 𢵁
+ 0x22d42: "@\f\U00022d42", // 𢵂
+ 0x22d43: "@\f\U00022d43", // 𢵃
+ 0x22d44: "@\f\U00022d44", // 𢵄
+ 0x22d45: "@\f\U00022d45", // 𢵅
+ 0x22d46: "@\f\U00022d46", // 𢵆
+ 0x22d47: "@\f\U00022d47", // 𢵇
+ 0x22d48: "@\f\U00022d48", // 𢵈
+ 0x22d49: "@\f\U00022d49", // 𢵉
+ 0x22d4a: "@\f\U00022d4a", // 𢵊
+ 0x22d4b: "@\f\U00022d4b", // 𢵋
+ 0x22d4c: "@\f\U00022d4c", // 𢵌
+ 0x22d4d: "@\f\U00022d4d", // 𢵍
+ 0x22d4e: "@\f\U00022d4e", // 𢵎
+ 0x22d4f: "@\f\U00022d4f", // 𢵏
+ 0x22d50: "@\f\U00022d50", // 𢵐
+ 0x22d51: "@\f\U00022d51", // 𢵑
+ 0x22d52: "@\f\U00022d52", // 𢵒
+ 0x22d53: "@\f\U00022d53", // 𢵓
+ 0x22d54: "@\f\U00022d54", // 𢵔
+ 0x22d55: "@\f\U00022d55", // 𢵕
+ 0x22d56: "@\f\U00022d56", // 𢵖
+ 0x22d57: "@\f\U00022d57", // 𢵗
+ 0x22d58: "@\f\U00022d58", // 𢵘
+ 0x22d59: "@\f\U00022d59", // 𢵙
+ 0x22d5a: "@\f\U00022d5a", // 𢵚
+ 0x22d5b: "@\f\U00022d5b", // 𢵛
+ 0x22d5c: "@\f\U00022d5c", // 𢵜
+ 0x22d5d: "@\f\U00022d5d", // 𢵝
+ 0x22d5e: "@\f\U00022d5e", // 𢵞
+ 0x22d5f: "@\f\U00022d5f", // 𢵟
+ 0x22d60: "@\f\U00022d60", // 𢵠
+ 0x22d61: "@\f\U00022d61", // 𢵡
+ 0x22d62: "@\f\U00022d62", // 𢵢
+ 0x22d63: "@\f\U00022d63", // 𢵣
+ 0x22d64: "@\f\U00022d64", // 𢵤
+ 0x22d65: "@\f\U00022d65", // 𢵥
+ 0x22d66: "@\f\U00022d66", // 𢵦
+ 0x22d67: "@\f\U00022d67", // 𢵧
+ 0x22d68: "@\f\U00022d68", // 𢵨
+ 0x22d69: "@\f\U00022d69", // 𢵩
+ 0x22d6a: "@\f\U00022d6a", // 𢵪
+ 0x22d6b: "@\f\U00022d6b", // 𢵫
+ 0x22d6c: "@\f\U00022d6c", // 𢵬
+ 0x22d6d: "@\f\U00022d6d", // 𢵭
+ 0x22d6e: "@\f\U00022d6e", // 𢵮
+ 0x22d6f: "@\f\U00022d6f", // 𢵯
+ 0x22d70: "@\f\U00022d70", // 𢵰
+ 0x22d71: "@\f\U00022d71", // 𢵱
+ 0x22d72: "@\f\U00022d72", // 𢵲
+ 0x22d73: "@\f\U00022d73", // 𢵳
+ 0x22d74: "@\f\U00022d74", // 𢵴
+ 0x22d75: "@\f\U00022d75", // 𢵵
+ 0x22d76: "@\f\U00022d76", // 𢵶
+ 0x22d77: "@\f\U00022d77", // 𢵷
+ 0x22d78: "@\f\U00022d78", // 𢵸
+ 0x22d79: "@\f\U00022d79", // 𢵹
+ 0x22d7a: "@\f\U00022d7a", // 𢵺
+ 0x22d7b: "@\f\U00022d7b", // 𢵻
+ 0x22d7c: "@\f\U00022d7c", // 𢵼
+ 0x22d7d: "@\f\U00022d7d", // 𢵽
+ 0x22d7e: "@\f\U00022d7e", // 𢵾
+ 0x22d7f: "@\r\U00022d7f", // 𢵿
+ 0x22d80: "@\r\U00022d80", // 𢶀
+ 0x22d81: "@\r\U00022d81", // 𢶁
+ 0x22d82: "@\r\U00022d82", // 𢶂
+ 0x22d83: "@\r\U00022d83", // 𢶃
+ 0x22d84: "@\r\U00022d84", // 𢶄
+ 0x22d85: "@\r\U00022d85", // 𢶅
+ 0x22d86: "@\r\U00022d86", // 𢶆
+ 0x22d87: "@\r\U00022d87", // 𢶇
+ 0x22d88: "@\r\U00022d88", // 𢶈
+ 0x22d89: "@\r\U00022d89", // 𢶉
+ 0x22d8a: "@\r\U00022d8a", // 𢶊
+ 0x22d8b: "@\r\U00022d8b", // 𢶋
+ 0x22d8c: "@\r\U00022d8c", // 𢶌
+ 0x22d8d: "@\r\U00022d8d", // 𢶍
+ 0x22d8e: "@\r\U00022d8e", // 𢶎
+ 0x22d8f: "@\r\U00022d8f", // 𢶏
+ 0x22d90: "@\r\U00022d90", // 𢶐
+ 0x22d91: "@\r\U00022d91", // 𢶑
+ 0x22d92: "@\r\U00022d92", // 𢶒
+ 0x22d93: "@\r\U00022d93", // 𢶓
+ 0x22d94: "@\r\U00022d94", // 𢶔
+ 0x22d95: "@\r\U00022d95", // 𢶕
+ 0x22d96: "@\r\U00022d96", // 𢶖
+ 0x22d97: "@\r\U00022d97", // 𢶗
+ 0x22d98: "@\r\U00022d98", // 𢶘
+ 0x22d99: "@\r\U00022d99", // 𢶙
+ 0x22d9a: "@\r\U00022d9a", // 𢶚
+ 0x22d9b: "@\r\U00022d9b", // 𢶛
+ 0x22d9c: "@\r\U00022d9c", // 𢶜
+ 0x22d9d: "@\r\U00022d9d", // 𢶝
+ 0x22d9e: "@\r\U00022d9e", // 𢶞
+ 0x22d9f: "@\r\U00022d9f", // 𢶟
+ 0x22da0: "@\r\U00022da0", // 𢶠
+ 0x22da1: "@\r\U00022da1", // 𢶡
+ 0x22da2: "@\r\U00022da2", // 𢶢
+ 0x22da3: "@\r\U00022da3", // 𢶣
+ 0x22da4: "@\r\U00022da4", // 𢶤
+ 0x22da5: "@\r\U00022da5", // 𢶥
+ 0x22da6: "@\r\U00022da6", // 𢶦
+ 0x22da7: "@\r\U00022da7", // 𢶧
+ 0x22da8: "@\r\U00022da8", // 𢶨
+ 0x22da9: "@\r\U00022da9", // 𢶩
+ 0x22daa: "@\r\U00022daa", // 𢶪
+ 0x22dab: "@\r\U00022dab", // 𢶫
+ 0x22dac: "@\r\U00022dac", // 𢶬
+ 0x22dad: "@\r\U00022dad", // 𢶭
+ 0x22dae: "@\r\U00022dae", // 𢶮
+ 0x22daf: "@\r\U00022daf", // 𢶯
+ 0x22db0: "@\r\U00022db0", // 𢶰
+ 0x22db1: "@\r\U00022db1", // 𢶱
+ 0x22db2: "@\r\U00022db2", // 𢶲
+ 0x22db3: "@\r\U00022db3", // 𢶳
+ 0x22db4: "@\r\U00022db4", // 𢶴
+ 0x22db5: "@\r\U00022db5", // 𢶵
+ 0x22db6: "@\r\U00022db6", // 𢶶
+ 0x22db7: "@\r\U00022db7", // 𢶷
+ 0x22db8: "@\r\U00022db8", // 𢶸
+ 0x22db9: "@\r\U00022db9", // 𢶹
+ 0x22dba: "@\r\U00022dba", // 𢶺
+ 0x22dbb: "@\r\U00022dbb", // 𢶻
+ 0x22dbc: "@\r\U00022dbc", // 𢶼
+ 0x22dbd: "@\r\U00022dbd", // 𢶽
+ 0x22dbe: "@\r\U00022dbe", // 𢶾
+ 0x22dbf: "@\r\U00022dbf", // 𢶿
+ 0x22dc0: "@\r\U00022dc0", // 𢷀
+ 0x22dc1: "@\r\U00022dc1", // 𢷁
+ 0x22dc2: "@\r\U00022dc2", // 𢷂
+ 0x22dc3: "@\r\U00022dc3", // 𢷃
+ 0x22dc4: "@\r\U00022dc4", // 𢷄
+ 0x22dc5: "@\f\U00022dc5", // 𢷅
+ 0x22dc6: "@\r\U00022dc6", // 𢷆
+ 0x22dc7: "@\r\U00022dc7", // 𢷇
+ 0x22dc8: "@\r\U00022dc8", // 𢷈
+ 0x22dc9: "@\r\U00022dc9", // 𢷉
+ 0x22dca: "@\r\U00022dca", // 𢷊
+ 0x22dcb: "@\x0e\U00022dcb", // 𢷋
+ 0x22dcc: "@\x0e\U00022dcc", // 𢷌
+ 0x22dcd: "@\x0e\U00022dcd", // 𢷍
+ 0x22dce: "@\x0e\U00022dce", // 𢷎
+ 0x22dcf: "@\x0e\U00022dcf", // 𢷏
+ 0x22dd0: "@\x0e\U00022dd0", // 𢷐
+ 0x22dd1: "@\x0e\U00022dd1", // 𢷑
+ 0x22dd2: "@\x0e\U00022dd2", // 𢷒
+ 0x22dd3: "@\x0e\U00022dd3", // 𢷓
+ 0x22dd4: "@\x0e\U00022dd4", // 𢷔
+ 0x22dd5: "@\x0e\U00022dd5", // 𢷕
+ 0x22dd6: "@\x0e\U00022dd6", // 𢷖
+ 0x22dd7: "@\x0e\U00022dd7", // 𢷗
+ 0x22dd8: "@\x0e\U00022dd8", // 𢷘
+ 0x22dd9: "@\x0e\U00022dd9", // 𢷙
+ 0x22dda: "@\x0e\U00022dda", // 𢷚
+ 0x22ddb: "@\x0e\U00022ddb", // 𢷛
+ 0x22ddc: "@\x0e\U00022ddc", // 𢷜
+ 0x22ddd: "@\x0e\U00022ddd", // 𢷝
+ 0x22dde: "@\x0e\U00022dde", // 𢷞
+ 0x22ddf: "@\x0e\U00022ddf", // 𢷟
+ 0x22de0: "@\x0e\U00022de0", // 𢷠
+ 0x22de1: "@\x0e\U00022de1", // 𢷡
+ 0x22de2: "@\x0e\U00022de2", // 𢷢
+ 0x22de3: "@\x0e\U00022de3", // 𢷣
+ 0x22de4: "@\x0e\U00022de4", // 𢷤
+ 0x22de5: "@\x0e\U00022de5", // 𢷥
+ 0x22de6: "@\x0e\U00022de6", // 𢷦
+ 0x22de7: "@\x0e\U00022de7", // 𢷧
+ 0x22de8: "@\x0e\U00022de8", // 𢷨
+ 0x22de9: "@\x0e\U00022de9", // 𢷩
+ 0x22dea: "@\x0e\U00022dea", // 𢷪
+ 0x22deb: "@\x0e\U00022deb", // 𢷫
+ 0x22dec: "@\x0e\U00022dec", // 𢷬
+ 0x22ded: "@\x0e\U00022ded", // 𢷭
+ 0x22dee: "@\x0e\U00022dee", // 𢷮
+ 0x22def: "@\x0e\U00022def", // 𢷯
+ 0x22df0: "@\x0e\U00022df0", // 𢷰
+ 0x22df1: "@\x0e\U00022df1", // 𢷱
+ 0x22df2: "@\x0e\U00022df2", // 𢷲
+ 0x22df3: "@\x0e\U00022df3", // 𢷳
+ 0x22df4: "@\x0e\U00022df4", // 𢷴
+ 0x22df5: "@\x0e\U00022df5", // 𢷵
+ 0x22df6: "@\x0f\U00022df6", // 𢷶
+ 0x22df7: "@\x0f\U00022df7", // 𢷷
+ 0x22df8: "@\x0f\U00022df8", // 𢷸
+ 0x22df9: "@\x0f\U00022df9", // 𢷹
+ 0x22dfa: "@\x0f\U00022dfa", // 𢷺
+ 0x22dfb: "@\x0f\U00022dfb", // 𢷻
+ 0x22dfc: "@\x0f\U00022dfc", // 𢷼
+ 0x22dfd: "@\x0f\U00022dfd", // 𢷽
+ 0x22dfe: "@\x0f\U00022dfe", // 𢷾
+ 0x22dff: "@\x0f\U00022dff", // 𢷿
+ 0x22e00: "@\x0f\U00022e00", // 𢸀
+ 0x22e01: "@\x0f\U00022e01", // 𢸁
+ 0x22e02: "@\x0f\U00022e02", // 𢸂
+ 0x22e03: "@\x0f\U00022e03", // 𢸃
+ 0x22e04: "@\x0f\U00022e04", // 𢸄
+ 0x22e05: "@\x0f\U00022e05", // 𢸅
+ 0x22e06: "@\x0f\U00022e06", // 𢸆
+ 0x22e07: "@\x0f\U00022e07", // 𢸇
+ 0x22e08: "@\x0f\U00022e08", // 𢸈
+ 0x22e09: "@\x0f\U00022e09", // 𢸉
+ 0x22e0a: "@\x0f\U00022e0a", // 𢸊
+ 0x22e0b: "@\x0f\U00022e0b", // 𢸋
+ 0x22e0c: "@\x0f\U00022e0c", // 𢸌
+ 0x22e0d: "@\x0f\U00022e0d", // 𢸍
+ 0x22e0e: "@\x0f\U00022e0e", // 𢸎
+ 0x22e0f: "@\x0f\U00022e0f", // 𢸏
+ 0x22e10: "@\x0f\U00022e10", // 𢸐
+ 0x22e11: "@\x0f\U00022e11", // 𢸑
+ 0x22e12: "@\x0f\U00022e12", // 𢸒
+ 0x22e13: "@\x0f\U00022e13", // 𢸓
+ 0x22e14: "@\x0f\U00022e14", // 𢸔
+ 0x22e15: "@\x0f\U00022e15", // 𢸕
+ 0x22e16: "@\x0f\U00022e16", // 𢸖
+ 0x22e17: "@\x0f\U00022e17", // 𢸗
+ 0x22e18: "@\x0f\U00022e18", // 𢸘
+ 0x22e19: "@\x0f\U00022e19", // 𢸙
+ 0x22e1a: "@\x0f\U00022e1a", // 𢸚
+ 0x22e1b: "@\x0f\U00022e1b", // 𢸛
+ 0x22e1c: "@\x0f\U00022e1c", // 𢸜
+ 0x22e1d: "@\x0f\U00022e1d", // 𢸝
+ 0x22e1e: "@\x0f\U00022e1e", // 𢸞
+ 0x22e1f: "@\x0f\U00022e1f", // 𢸟
+ 0x22e20: "@\x0f\U00022e20", // 𢸠
+ 0x22e21: "@\x0f\U00022e21", // 𢸡
+ 0x22e22: "@\x0f\U00022e22", // 𢸢
+ 0x22e23: "@\x10\U00022e23", // 𢸣
+ 0x22e24: "@\x10\U00022e24", // 𢸤
+ 0x22e25: "@\x10\U00022e25", // 𢸥
+ 0x22e26: "@\x10\U00022e26", // 𢸦
+ 0x22e27: "@\x10\U00022e27", // 𢸧
+ 0x22e28: "@\x10\U00022e28", // 𢸨
+ 0x22e29: "@\x10\U00022e29", // 𢸩
+ 0x22e2a: "@\x10\U00022e2a", // 𢸪
+ 0x22e2b: "@\x10\U00022e2b", // 𢸫
+ 0x22e2c: "@\x10\U00022e2c", // 𢸬
+ 0x22e2d: "@\x10\U00022e2d", // 𢸭
+ 0x22e2e: "@\x10\U00022e2e", // 𢸮
+ 0x22e2f: "@\x10\U00022e2f", // 𢸯
+ 0x22e30: "@\x10\U00022e30", // 𢸰
+ 0x22e31: "@\x10\U00022e31", // 𢸱
+ 0x22e32: "@\x10\U00022e32", // 𢸲
+ 0x22e33: "@\x10\U00022e33", // 𢸳
+ 0x22e34: "@\x10\U00022e34", // 𢸴
+ 0x22e35: "@\x10\U00022e35", // 𢸵
+ 0x22e36: "@\x10\U00022e36", // 𢸶
+ 0x22e37: "@\x10\U00022e37", // 𢸷
+ 0x22e38: "@\x10\U00022e38", // 𢸸
+ 0x22e39: "@\x10\U00022e39", // 𢸹
+ 0x22e3a: "@\x10\U00022e3a", // 𢸺
+ 0x22e3b: "@\x10\U00022e3b", // 𢸻
+ 0x22e3c: "@\x10\U00022e3c", // 𢸼
+ 0x22e3d: "@\x10\U00022e3d", // 𢸽
+ 0x22e3e: "@\x10\U00022e3e", // 𢸾
+ 0x22e3f: "@\x10\U00022e3f", // 𢸿
+ 0x22e40: "@\x10\U00022e40", // 𢹀
+ 0x22e41: "@\x10\U00022e41", // 𢹁
+ 0x22e42: "@\x10\U00022e42", // 𢹂
+ 0x22e43: "@\x10\U00022e43", // 𢹃
+ 0x22e44: "@\x10\U00022e44", // 𢹄
+ 0x22e45: "@\x10\U00022e45", // 𢹅
+ 0x22e46: "@\x10\U00022e46", // 𢹆
+ 0x22e47: "@\x10\U00022e47", // 𢹇
+ 0x22e48: "@\x10\U00022e48", // 𢹈
+ 0x22e49: "@\x10\U00022e49", // 𢹉
+ 0x22e4a: "@\x10\U00022e4a", // 𢹊
+ 0x22e4b: "@\x10\U00022e4b", // 𢹋
+ 0x22e4c: "@\x10\U00022e4c", // 𢹌
+ 0x22e4d: "@\x11\U00022e4d", // 𢹍
+ 0x22e4e: "@\x11\U00022e4e", // 𢹎
+ 0x22e4f: "@\x11\U00022e4f", // 𢹏
+ 0x22e50: "@\x11\U00022e50", // 𢹐
+ 0x22e51: "@\x11\U00022e51", // 𢹑
+ 0x22e52: "@\x11\U00022e52", // 𢹒
+ 0x22e53: "@\x11\U00022e53", // 𢹓
+ 0x22e54: "@\x11\U00022e54", // 𢹔
+ 0x22e55: "@\x11\U00022e55", // 𢹕
+ 0x22e56: "@\x11\U00022e56", // 𢹖
+ 0x22e57: "@\x11\U00022e57", // 𢹗
+ 0x22e58: "@\x11\U00022e58", // 𢹘
+ 0x22e59: "@\x11\U00022e59", // 𢹙
+ 0x22e5a: "@\x11\U00022e5a", // 𢹚
+ 0x22e5b: "@\x11\U00022e5b", // 𢹛
+ 0x22e5c: "@\x11\U00022e5c", // 𢹜
+ 0x22e5d: "@\x11\U00022e5d", // 𢹝
+ 0x22e5e: "@\x11\U00022e5e", // 𢹞
+ 0x22e5f: "@\x11\U00022e5f", // 𢹟
+ 0x22e60: "@\x11\U00022e60", // 𢹠
+ 0x22e61: "@\x11\U00022e61", // 𢹡
+ 0x22e62: "@\x12\U00022e62", // 𢹢
+ 0x22e63: "@\x11\U00022e63", // 𢹣
+ 0x22e64: "@\x11\U00022e64", // 𢹤
+ 0x22e65: "@\x11\U00022e65", // 𢹥
+ 0x22e66: "@\x11\U00022e66", // 𢹦
+ 0x22e67: "@\x11\U00022e67", // 𢹧
+ 0x22e68: "@\x11\U00022e68", // 𢹨
+ 0x22e69: "@\x11\U00022e69", // 𢹩
+ 0x22e6a: "@\x11\U00022e6a", // 𢹪
+ 0x22e6b: "@\x11\U00022e6b", // 𢹫
+ 0x22e6c: "@\x12\U00022e6c", // 𢹬
+ 0x22e6d: "@\x12\U00022e6d", // 𢹭
+ 0x22e6e: "@\x12\U00022e6e", // 𢹮
+ 0x22e6f: "@\x12\U00022e6f", // 𢹯
+ 0x22e70: "@\x12\U00022e70", // 𢹰
+ 0x22e71: "@\x12\U00022e71", // 𢹱
+ 0x22e72: "@\x12\U00022e72", // 𢹲
+ 0x22e73: "@\x12\U00022e73", // 𢹳
+ 0x22e74: "@\x12\U00022e74", // 𢹴
+ 0x22e75: "@\x12\U00022e75", // 𢹵
+ 0x22e76: "@\x12\U00022e76", // 𢹶
+ 0x22e77: "@\x12\U00022e77", // 𢹷
+ 0x22e78: "@\x12\U00022e78", // 𢹸
+ 0x22e79: "@\x12\U00022e79", // 𢹹
+ 0x22e7a: "@\x12\U00022e7a", // 𢹺
+ 0x22e7b: "@\x12\U00022e7b", // 𢹻
+ 0x22e7c: "@\x12\U00022e7c", // 𢹼
+ 0x22e7d: "@\x12\U00022e7d", // 𢹽
+ 0x22e7e: "@\x12\U00022e7e", // 𢹾
+ 0x22e7f: "@\x12\U00022e7f", // 𢹿
+ 0x22e80: "@\x12\U00022e80", // 𢺀
+ 0x22e81: "@\x12\U00022e81", // 𢺁
+ 0x22e82: "@\x13\U00022e82", // 𢺂
+ 0x22e83: "@\x13\U00022e83", // 𢺃
+ 0x22e84: "@\x13\U00022e84", // 𢺄
+ 0x22e85: "@\x13\U00022e85", // 𢺅
+ 0x22e86: "@\x13\U00022e86", // 𢺆
+ 0x22e87: "@\x13\U00022e87", // 𢺇
+ 0x22e88: "@\x13\U00022e88", // 𢺈
+ 0x22e89: "@\x13\U00022e89", // 𢺉
+ 0x22e8a: "@\x13\U00022e8a", // 𢺊
+ 0x22e8b: "@\x13\U00022e8b", // 𢺋
+ 0x22e8c: "@\x13\U00022e8c", // 𢺌
+ 0x22e8d: "@\x13\U00022e8d", // 𢺍
+ 0x22e8e: "@\x13\U00022e8e", // 𢺎
+ 0x22e8f: "@\x13\U00022e8f", // 𢺏
+ 0x22e90: "@\x13\U00022e90", // 𢺐
+ 0x22e91: "@\x13\U00022e91", // 𢺑
+ 0x22e92: "@\x13\U00022e92", // 𢺒
+ 0x22e93: "@\x13\U00022e93", // 𢺓
+ 0x22e94: "@\x13\U00022e94", // 𢺔
+ 0x22e95: "@\x13\U00022e95", // 𢺕
+ 0x22e96: "@\x14\U00022e96", // 𢺖
+ 0x22e97: "@\x14\U00022e97", // 𢺗
+ 0x22e98: "@\x14\U00022e98", // 𢺘
+ 0x22e99: "@\x14\U00022e99", // 𢺙
+ 0x22e9a: "@\x14\U00022e9a", // 𢺚
+ 0x22e9b: "@\x14\U00022e9b", // 𢺛
+ 0x22e9c: "@\x14\U00022e9c", // 𢺜
+ 0x22e9d: "@\x14\U00022e9d", // 𢺝
+ 0x22e9e: "@\x15\U00022e9e", // 𢺞
+ 0x22e9f: "@\x15\U00022e9f", // 𢺟
+ 0x22ea0: "@\x15\U00022ea0", // 𢺠
+ 0x22ea1: "@\x15\U00022ea1", // 𢺡
+ 0x22ea2: "@\x15\U00022ea2", // 𢺢
+ 0x22ea3: "@\x15\U00022ea3", // 𢺣
+ 0x22ea4: "@\x15\U00022ea4", // 𢺤
+ 0x22ea5: "@\x15\U00022ea5", // 𢺥
+ 0x22ea6: "@\x15\U00022ea6", // 𢺦
+ 0x22ea7: "@\x15\U00022ea7", // 𢺧
+ 0x22ea8: "@\x15\U00022ea8", // 𢺨
+ 0x22ea9: "@\x15\U00022ea9", // 𢺩
+ 0x22eaa: "@\x15\U00022eaa", // 𢺪
+ 0x22eab: "@\x15\U00022eab", // 𢺫
+ 0x22eac: "@\x16\U00022eac", // 𢺬
+ 0x22ead: "@\x16\U00022ead", // 𢺭
+ 0x22eae: "@\x16\U00022eae", // 𢺮
+ 0x22eaf: "@\x16\U00022eaf", // 𢺯
+ 0x22eb0: "@\x18\U00022eb0", // 𢺰
+ 0x22eb1: "@\x18\U00022eb1", // 𢺱
+ 0x22eb2: "@\x18\U00022eb2", // 𢺲
+ 0x22eb3: "@\x19\U00022eb3", // 𢺳
+ 0x22eb4: "@\x1d\U00022eb4", // 𢺴
+ 0x22eb5: "A\x02\U00022eb5", // 𢺵
+ 0x22eb6: "A\x03\U00022eb6", // 𢺶
+ 0x22eb7: "A\x04\U00022eb7", // 𢺷
+ 0x22eb8: "A\x04\U00022eb8", // 𢺸
+ 0x22eb9: "A\x04\U00022eb9", // 𢺹
+ 0x22eba: "A\x04\U00022eba", // 𢺺
+ 0x22ebb: "A\x04\U00022ebb", // 𢺻
+ 0x22ebc: "A\x04\U00022ebc", // 𢺼
+ 0x22ebd: "A\x04\U00022ebd", // 𢺽
+ 0x22ebe: "A\x05\U00022ebe", // 𢺾
+ 0x22ebf: "A\x05\U00022ebf", // 𢺿
+ 0x22ec0: "A\x05\U00022ec0", // 𢻀
+ 0x22ec1: "A\x06\U00022ec1", // 𢻁
+ 0x22ec2: "A\x06\U00022ec2", // 𢻂
+ 0x22ec3: "A\x06\U00022ec3", // 𢻃
+ 0x22ec4: "A\x06\U00022ec4", // 𢻄
+ 0x22ec5: "A\x06\U00022ec5", // 𢻅
+ 0x22ec6: "A\x06\U00022ec6", // 𢻆
+ 0x22ec7: "A\x06\U00022ec7", // 𢻇
+ 0x22ec8: "$\a\U00022ec8", // 𢻈
+ 0x22ec9: "A\x06\U00022ec9", // 𢻉
+ 0x22eca: "A\a\U00022eca", // 𢻊
+ 0x22ecb: "A\a\U00022ecb", // 𢻋
+ 0x22ecc: "A\a\U00022ecc", // 𢻌
+ 0x22ecd: "A\a\U00022ecd", // 𢻍
+ 0x22ece: "A\b\U00022ece", // 𢻎
+ 0x22ecf: "A\b\U00022ecf", // 𢻏
+ 0x22ed0: "A\b\U00022ed0", // 𢻐
+ 0x22ed1: "A\b\U00022ed1", // 𢻑
+ 0x22ed2: "A\b\U00022ed2", // 𢻒
+ 0x22ed3: "A\b\U00022ed3", // 𢻓
+ 0x22ed4: "A\b\U00022ed4", // 𢻔
+ 0x22ed5: "A\t\U00022ed5", // 𢻕
+ 0x22ed6: "A\t\U00022ed6", // 𢻖
+ 0x22ed7: "A\t\U00022ed7", // 𢻗
+ 0x22ed8: "A\t\U00022ed8", // 𢻘
+ 0x22ed9: "A\t\U00022ed9", // 𢻙
+ 0x22eda: "A\n\U00022eda", // 𢻚
+ 0x22edb: "A\n\U00022edb", // 𢻛
+ 0x22edc: "A\n\U00022edc", // 𢻜
+ 0x22edd: "A\v\U00022edd", // 𢻝
+ 0x22ede: "A\v\U00022ede", // 𢻞
+ 0x22edf: "A\v\U00022edf", // 𢻟
+ 0x22ee0: "A\f\U00022ee0", // 𢻠
+ 0x22ee1: "A\f\U00022ee1", // 𢻡
+ 0x22ee2: "A\f\U00022ee2", // 𢻢
+ 0x22ee3: "A\f\U00022ee3", // 𢻣
+ 0x22ee4: "A\f\U00022ee4", // 𢻤
+ 0x22ee5: "A\r\U00022ee5", // 𢻥
+ 0x22ee6: "A\r\U00022ee6", // 𢻦
+ 0x22ee7: "A\r\U00022ee7", // 𢻧
+ 0x22ee8: "A\r\U00022ee8", // 𢻨
+ 0x22ee9: "A\r\U00022ee9", // 𢻩
+ 0x22eea: "A\x10\U00022eea", // 𢻪
+ 0x22eeb: "B\x03\U00022eeb", // 𢻫
+ 0x22eec: "B\x03\U00022eec", // 𢻬
+ 0x22eed: "B\x03\U00022eed", // 𢻭
+ 0x22eee: "B\x03\U00022eee", // 𢻮
+ 0x22eef: "B\x03\U00022eef", // 𢻯
+ 0x22ef0: "B\x03\U00022ef0", // 𢻰
+ 0x22ef1: "B\x03\U00022ef1", // 𢻱
+ 0x22ef2: "B\x03\U00022ef2", // 𢻲
+ 0x22ef3: "B\x04\U00022ef3", // 𢻳
+ 0x22ef4: "B\x04\U00022ef4", // 𢻴
+ 0x22ef5: "B\x04\U00022ef5", // 𢻵
+ 0x22ef6: "B\x04\U00022ef6", // 𢻶
+ 0x22ef7: "B\x04\U00022ef7", // 𢻷
+ 0x22ef8: "B\x04\U00022ef8", // 𢻸
+ 0x22ef9: "B\x04\U00022ef9", // 𢻹
+ 0x22efa: "B\x04\U00022efa", // 𢻺
+ 0x22efb: "B\x04\U00022efb", // 𢻻
+ 0x22efc: "B\x04\U00022efc", // 𢻼
+ 0x22efd: "B\x04\U00022efd", // 𢻽
+ 0x22efe: "B\x04\U00022efe", // 𢻾
+ 0x22eff: "B\x04\U00022eff", // 𢻿
+ 0x22f00: "B\x04\U00022f00", // 𢼀
+ 0x22f01: "B\x04\U00022f01", // 𢼁
+ 0x22f02: "B\x04\U00022f02", // 𢼂
+ 0x22f03: "B\x04\U00022f03", // 𢼃
+ 0x22f04: "B\x04\U00022f04", // 𢼄
+ 0x22f05: "B\x04\U00022f05", // 𢼅
+ 0x22f06: "B\x04\U00022f06", // 𢼆
+ 0x22f07: "B\x04\U00022f07", // 𢼇
+ 0x22f08: "B\x04\U00022f08", // 𢼈
+ 0x22f09: "B\x05\U00022f09", // 𢼉
+ 0x22f0a: "B\x05\U00022f0a", // 𢼊
+ 0x22f0b: "B\x05\U00022f0b", // 𢼋
+ 0x22f0c: "B\x05\U00022f0c", // 𢼌
+ 0x22f0d: "B\x05\U00022f0d", // 𢼍
+ 0x22f0e: "B\x05\U00022f0e", // 𢼎
+ 0x22f0f: "B\x05\U00022f0f", // 𢼏
+ 0x22f10: "B\x05\U00022f10", // 𢼐
+ 0x22f11: "B\x05\U00022f11", // 𢼑
+ 0x22f12: "B\x05\U00022f12", // 𢼒
+ 0x22f13: "B\x05\U00022f13", // 𢼓
+ 0x22f14: "B\x05\U00022f14", // 𢼔
+ 0x22f15: "B\x05\U00022f15", // 𢼕
+ 0x22f16: "B\x05\U00022f16", // 𢼖
+ 0x22f17: "B\x05\U00022f17", // 𢼗
+ 0x22f18: "B\x05\U00022f18", // 𢼘
+ 0x22f19: "B\x05\U00022f19", // 𢼙
+ 0x22f1a: "B\x05\U00022f1a", // 𢼚
+ 0x22f1b: "B\x06\U00022f1b", // 𢼛
+ 0x22f1c: "B\x06\U00022f1c", // 𢼜
+ 0x22f1d: "B\x06\U00022f1d", // 𢼝
+ 0x22f1e: "B\x06\U00022f1e", // 𢼞
+ 0x22f1f: "B\x06\U00022f1f", // 𢼟
+ 0x22f20: "B\x06\U00022f20", // 𢼠
+ 0x22f21: "B\x06\U00022f21", // 𢼡
+ 0x22f22: "B\x06\U00022f22", // 𢼢
+ 0x22f23: "B\x06\U00022f23", // 𢼣
+ 0x22f24: "B\x06\U00022f24", // 𢼤
+ 0x22f25: "B\x06\U00022f25", // 𢼥
+ 0x22f26: "B\x06\U00022f26", // 𢼦
+ 0x22f27: "B\x06\U00022f27", // 𢼧
+ 0x22f28: "B\x06\U00022f28", // 𢼨
+ 0x22f29: "B\x06\U00022f29", // 𢼩
+ 0x22f2a: "B\x06\U00022f2a", // 𢼪
+ 0x22f2b: "B\x06\U00022f2b", // 𢼫
+ 0x22f2c: "B\x06\U00022f2c", // 𢼬
+ 0x22f2d: "B\x06\U00022f2d", // 𢼭
+ 0x22f2e: "B\x06\U00022f2e", // 𢼮
+ 0x22f2f: "B\x06\U00022f2f", // 𢼯
+ 0x22f30: "B\x06\U00022f30", // 𢼰
+ 0x22f31: "B\x06\U00022f31", // 𢼱
+ 0x22f32: "B\x06\U00022f32", // 𢼲
+ 0x22f33: "B\x06\U00022f33", // 𢼳
+ 0x22f34: "B\x06\U00022f34", // 𢼴
+ 0x22f35: "B\x06\U00022f35", // 𢼵
+ 0x22f36: "B\x06\U00022f36", // 𢼶
+ 0x22f37: "B\x06\U00022f37", // 𢼷
+ 0x22f38: "B\x06\U00022f38", // 𢼸
+ 0x22f39: "B\a\U00022f39", // 𢼹
+ 0x22f3a: "B\a\U00022f3a", // 𢼺
+ 0x22f3b: "B\a\U00022f3b", // 𢼻
+ 0x22f3c: "B\a\U00022f3c", // 𢼼
+ 0x22f3d: "B\a\U00022f3d", // 𢼽
+ 0x22f3e: "B\a\U00022f3e", // 𢼾
+ 0x22f3f: "B\a\U00022f3f", // 𢼿
+ 0x22f40: "B\a\U00022f40", // 𢽀
+ 0x22f41: "B\a\U00022f41", // 𢽁
+ 0x22f42: "B\a\U00022f42", // 𢽂
+ 0x22f43: "B\a\U00022f43", // 𢽃
+ 0x22f44: "B\a\U00022f44", // 𢽄
+ 0x22f45: "B\a\U00022f45", // 𢽅
+ 0x22f46: "B\a\U00022f46", // 𢽆
+ 0x22f47: "B\a\U00022f47", // 𢽇
+ 0x22f48: "B\a\U00022f48", // 𢽈
+ 0x22f49: "B\a\U00022f49", // 𢽉
+ 0x22f4a: "B\a\U00022f4a", // 𢽊
+ 0x22f4b: "B\a\U00022f4b", // 𢽋
+ 0x22f4c: "B\a\U00022f4c", // 𢽌
+ 0x22f4d: "B\a\U00022f4d", // 𢽍
+ 0x22f4e: "B\a\U00022f4e", // 𢽎
+ 0x22f4f: "B\a\U00022f4f", // 𢽏
+ 0x22f50: "B\a\U00022f50", // 𢽐
+ 0x22f51: "B\a\U00022f51", // 𢽑
+ 0x22f52: "B\a\U00022f52", // 𢽒
+ 0x22f53: "B\a\U00022f53", // 𢽓
+ 0x22f54: "B\a\U00022f54", // 𢽔
+ 0x22f55: "B\a\U00022f55", // 𢽕
+ 0x22f56: "B\a\U00022f56", // 𢽖
+ 0x22f57: "B\a\U00022f57", // 𢽗
+ 0x22f58: "B\a\U00022f58", // 𢽘
+ 0x22f59: "B\a\U00022f59", // 𢽙
+ 0x22f5a: "B\b\U00022f5a", // 𢽚
+ 0x22f5b: "B\b\U00022f5b", // 𢽛
+ 0x22f5c: "B\a\U00022f5c", // 𢽜
+ 0x22f5d: "B\b\U00022f5d", // 𢽝
+ 0x22f5e: "B\b\U00022f5e", // 𢽞
+ 0x22f5f: "B\b\U00022f5f", // 𢽟
+ 0x22f60: "B\b\U00022f60", // 𢽠
+ 0x22f61: "B\b\U00022f61", // 𢽡
+ 0x22f62: "B\b\U00022f62", // 𢽢
+ 0x22f63: "B\b\U00022f63", // 𢽣
+ 0x22f64: "B\b\U00022f64", // 𢽤
+ 0x22f65: "B\b\U00022f65", // 𢽥
+ 0x22f66: "B\b\U00022f66", // 𢽦
+ 0x22f67: "B\b\U00022f67", // 𢽧
+ 0x22f68: "B\b\U00022f68", // 𢽨
+ 0x22f69: "B\b\U00022f69", // 𢽩
+ 0x22f6a: "B\b\U00022f6a", // 𢽪
+ 0x22f6b: "B\b\U00022f6b", // 𢽫
+ 0x22f6c: "B\b\U00022f6c", // 𢽬
+ 0x22f6d: "B\b\U00022f6d", // 𢽭
+ 0x22f6e: "B\b\U00022f6e", // 𢽮
+ 0x22f6f: "B\b\U00022f6f", // 𢽯
+ 0x22f70: "B\b\U00022f70", // 𢽰
+ 0x22f71: "B\b\U00022f71", // 𢽱
+ 0x22f72: "B\b\U00022f72", // 𢽲
+ 0x22f73: "B\b\U00022f73", // 𢽳
+ 0x22f74: "B\b\U00022f74", // 𢽴
+ 0x22f75: "B\b\U00022f75", // 𢽵
+ 0x22f76: "B\b\U00022f76", // 𢽶
+ 0x22f77: "B\a\U00022f77", // 𢽷
+ 0x22f78: "B\b\U00022f78", // 𢽸
+ 0x22f79: "B\b\U00022f79", // 𢽹
+ 0x22f7a: "B\b\U00022f7a", // 𢽺
+ 0x22f7b: "B\b\U00022f7b", // 𢽻
+ 0x22f7c: "B\b\U00022f7c", // 𢽼
+ 0x22f7d: "B\b\U00022f7d", // 𢽽
+ 0x22f7e: "B\b\U00022f7e", // 𢽾
+ 0x22f7f: "B\t\U00022f7f", // 𢽿
+ 0x22f80: "B\t\U00022f80", // 𢾀
+ 0x22f81: "B\t\U00022f81", // 𢾁
+ 0x22f82: "B\t\U00022f82", // 𢾂
+ 0x22f83: "B\t\U00022f83", // 𢾃
+ 0x22f84: "B\t\U00022f84", // 𢾄
+ 0x22f85: "B\t\U00022f85", // 𢾅
+ 0x22f86: "B\t\U00022f86", // 𢾆
+ 0x22f87: "B\t\U00022f87", // 𢾇
+ 0x22f88: "B\t\U00022f88", // 𢾈
+ 0x22f89: "B\t\U00022f89", // 𢾉
+ 0x22f8a: "B\t\U00022f8a", // 𢾊
+ 0x22f8b: "B\t\U00022f8b", // 𢾋
+ 0x22f8c: "B\t\U00022f8c", // 𢾌
+ 0x22f8d: "B\t\U00022f8d", // 𢾍
+ 0x22f8e: "B\t\U00022f8e", // 𢾎
+ 0x22f8f: "B\t\U00022f8f", // 𢾏
+ 0x22f90: "B\t\U00022f90", // 𢾐
+ 0x22f91: "B\t\U00022f91", // 𢾑
+ 0x22f92: "B\t\U00022f92", // 𢾒
+ 0x22f93: "B\t\U00022f93", // 𢾓
+ 0x22f94: "B\t\U00022f94", // 𢾔
+ 0x22f95: "B\t\U00022f95", // 𢾕
+ 0x22f96: "B\t\U00022f96", // 𢾖
+ 0x22f97: "B\t\U00022f97", // 𢾗
+ 0x22f98: "B\t\U00022f98", // 𢾘
+ 0x22f99: "B\t\U00022f99", // 𢾙
+ 0x22f9a: "B\t\U00022f9a", // 𢾚
+ 0x22f9b: "B\t\U00022f9b", // 𢾛
+ 0x22f9c: "B\t\U00022f9c", // 𢾜
+ 0x22f9d: "B\t\U00022f9d", // 𢾝
+ 0x22f9e: "B\t\U00022f9e", // 𢾞
+ 0x22f9f: "B\t\U00022f9f", // 𢾟
+ 0x22fa0: "B\t\U00022fa0", // 𢾠
+ 0x22fa1: "B\t\U00022fa1", // 𢾡
+ 0x22fa2: "B\t\U00022fa2", // 𢾢
+ 0x22fa3: "B\b\U00022fa3", // 𢾣
+ 0x22fa4: "B\t\U00022fa4", // 𢾤
+ 0x22fa5: "m\b\U00022fa5", // 𢾥
+ 0x22fa6: "B\n\U00022fa6", // 𢾦
+ 0x22fa7: "B\n\U00022fa7", // 𢾧
+ 0x22fa8: "B\n\U00022fa8", // 𢾨
+ 0x22fa9: "B\n\U00022fa9", // 𢾩
+ 0x22faa: "B\n\U00022faa", // 𢾪
+ 0x22fab: "B\n\U00022fab", // 𢾫
+ 0x22fac: "B\n\U00022fac", // 𢾬
+ 0x22fad: "B\n\U00022fad", // 𢾭
+ 0x22fae: "B\n\U00022fae", // 𢾮
+ 0x22faf: "B\n\U00022faf", // 𢾯
+ 0x22fb0: "B\n\U00022fb0", // 𢾰
+ 0x22fb1: "B\n\U00022fb1", // 𢾱
+ 0x22fb2: "B\n\U00022fb2", // 𢾲
+ 0x22fb3: "B\n\U00022fb3", // 𢾳
+ 0x22fb4: "B\n\U00022fb4", // 𢾴
+ 0x22fb5: "B\n\U00022fb5", // 𢾵
+ 0x22fb6: "B\n\U00022fb6", // 𢾶
+ 0x22fb7: "B\n\U00022fb7", // 𢾷
+ 0x22fb8: "B\n\U00022fb8", // 𢾸
+ 0x22fb9: "B\n\U00022fb9", // 𢾹
+ 0x22fba: "B\n\U00022fba", // 𢾺
+ 0x22fbb: "B\n\U00022fbb", // 𢾻
+ 0x22fbc: "B\n\U00022fbc", // 𢾼
+ 0x22fbd: "B\n\U00022fbd", // 𢾽
+ 0x22fbe: "B\n\U00022fbe", // 𢾾
+ 0x22fbf: "B\n\U00022fbf", // 𢾿
+ 0x22fc0: "B\n\U00022fc0", // 𢿀
+ 0x22fc1: "B\n\U00022fc1", // 𢿁
+ 0x22fc2: "B\n\U00022fc2", // 𢿂
+ 0x22fc3: "B\n\U00022fc3", // 𢿃
+ 0x22fc4: "B\n\U00022fc4", // 𢿄
+ 0x22fc5: "B\n\U00022fc5", // 𢿅
+ 0x22fc6: "q\t\U00022fc6", // 𢿆
+ 0x22fc7: "B\v\U00022fc7", // 𢿇
+ 0x22fc8: "B\v\U00022fc8", // 𢿈
+ 0x22fc9: "B\v\U00022fc9", // 𢿉
+ 0x22fca: "B\v\U00022fca", // 𢿊
+ 0x22fcb: "B\v\U00022fcb", // 𢿋
+ 0x22fcc: "B\v\U00022fcc", // 𢿌
+ 0x22fcd: "B\v\U00022fcd", // 𢿍
+ 0x22fce: "B\v\U00022fce", // 𢿎
+ 0x22fcf: "B\v\U00022fcf", // 𢿏
+ 0x22fd0: "B\v\U00022fd0", // 𢿐
+ 0x22fd1: "B\v\U00022fd1", // 𢿑
+ 0x22fd2: "B\v\U00022fd2", // 𢿒
+ 0x22fd3: "B\v\U00022fd3", // 𢿓
+ 0x22fd4: "B\v\U00022fd4", // 𢿔
+ 0x22fd5: "B\v\U00022fd5", // 𢿕
+ 0x22fd6: "B\v\U00022fd6", // 𢿖
+ 0x22fd7: "B\v\U00022fd7", // 𢿗
+ 0x22fd8: "B\v\U00022fd8", // 𢿘
+ 0x22fd9: "B\v\U00022fd9", // 𢿙
+ 0x22fda: "B\v\U00022fda", // 𢿚
+ 0x22fdb: "B\v\U00022fdb", // 𢿛
+ 0x22fdc: "B\v\U00022fdc", // 𢿜
+ 0x22fdd: "B\v\U00022fdd", // 𢿝
+ 0x22fde: "B\f\U00022fde", // 𢿞
+ 0x22fdf: "B\f\U00022fdf", // 𢿟
+ 0x22fe0: "B\f\U00022fe0", // 𢿠
+ 0x22fe1: "B\f\U00022fe1", // 𢿡
+ 0x22fe2: "B\f\U00022fe2", // 𢿢
+ 0x22fe3: "B\f\U00022fe3", // 𢿣
+ 0x22fe4: "B\f\U00022fe4", // 𢿤
+ 0x22fe5: "B\f\U00022fe5", // 𢿥
+ 0x22fe6: "B\f\U00022fe6", // 𢿦
+ 0x22fe7: "B\f\U00022fe7", // 𢿧
+ 0x22fe8: "B\f\U00022fe8", // 𢿨
+ 0x22fe9: "B\f\U00022fe9", // 𢿩
+ 0x22fea: "B\f\U00022fea", // 𢿪
+ 0x22feb: "B\f\U00022feb", // 𢿫
+ 0x22fec: "B\f\U00022fec", // 𢿬
+ 0x22fed: "B\f\U00022fed", // 𢿭
+ 0x22fee: "B\f\U00022fee", // 𢿮
+ 0x22fef: "B\f\U00022fef", // 𢿯
+ 0x22ff0: "B\f\U00022ff0", // 𢿰
+ 0x22ff1: "B\f\U00022ff1", // 𢿱
+ 0x22ff2: "B\f\U00022ff2", // 𢿲
+ 0x22ff3: "B\f\U00022ff3", // 𢿳
+ 0x22ff4: "B\f\U00022ff4", // 𢿴
+ 0x22ff5: "B\f\U00022ff5", // 𢿵
+ 0x22ff6: "B\f\U00022ff6", // 𢿶
+ 0x22ff7: "B\f\U00022ff7", // 𢿷
+ 0x22ff8: "B\f\U00022ff8", // 𢿸
+ 0x22ff9: "B\f\U00022ff9", // 𢿹
+ 0x22ffa: "B\f\U00022ffa", // 𢿺
+ 0x22ffb: "B\f\U00022ffb", // 𢿻
+ 0x22ffc: "B\f\U00022ffc", // 𢿼
+ 0x22ffd: "B\f\U00022ffd", // 𢿽
+ 0x22ffe: "B\r\U00022ffe", // 𢿾
+ 0x22fff: "B\r\U00022fff", // 𢿿
+ 0x23000: "B\r\U00023000", // 𣀀
+ 0x23001: "B\r\U00023001", // 𣀁
+ 0x23002: "B\r\U00023002", // 𣀂
+ 0x23003: "B\r\U00023003", // 𣀃
+ 0x23004: "B\x0e\U00023004", // 𣀄
+ 0x23005: "B\r\U00023005", // 𣀅
+ 0x23006: "B\r\U00023006", // 𣀆
+ 0x23007: "B\r\U00023007", // 𣀇
+ 0x23008: "B\r\U00023008", // 𣀈
+ 0x23009: "B\r\U00023009", // 𣀉
+ 0x2300a: "B\r\U0002300a", // 𣀊
+ 0x2300b: "B\r\U0002300b", // 𣀋
+ 0x2300c: "B\r\U0002300c", // 𣀌
+ 0x2300d: "B\r\U0002300d", // 𣀍
+ 0x2300e: "B\r\U0002300e", // 𣀎
+ 0x2300f: "B\r\U0002300f", // 𣀏
+ 0x23010: "B\x0e\U00023010", // 𣀐
+ 0x23011: "B\x0e\U00023011", // 𣀑
+ 0x23012: "B\x0e\U00023012", // 𣀒
+ 0x23013: "B\x0e\U00023013", // 𣀓
+ 0x23014: "B\x0e\U00023014", // 𣀔
+ 0x23015: "B\x0e\U00023015", // 𣀕
+ 0x23016: "B\x0e\U00023016", // 𣀖
+ 0x23017: "B\x0e\U00023017", // 𣀗
+ 0x23018: "B\x0e\U00023018", // 𣀘
+ 0x23019: "B\x0e\U00023019", // 𣀙
+ 0x2301a: "B\x0e\U0002301a", // 𣀚
+ 0x2301b: "B\x0f\U0002301b", // 𣀛
+ 0x2301c: "B\x0f\U0002301c", // 𣀜
+ 0x2301d: "B\x0f\U0002301d", // 𣀝
+ 0x2301e: "B\x0f\U0002301e", // 𣀞
+ 0x2301f: "B\x0f\U0002301f", // 𣀟
+ 0x23020: "B\x0f\U00023020", // 𣀠
+ 0x23021: "B\x0f\U00023021", // 𣀡
+ 0x23022: "B\x0f\U00023022", // 𣀢
+ 0x23023: "B\x10\U00023023", // 𣀣
+ 0x23024: "B\x10\U00023024", // 𣀤
+ 0x23025: "B\x10\U00023025", // 𣀥
+ 0x23026: "B\x10\U00023026", // 𣀦
+ 0x23027: "B\x10\U00023027", // 𣀧
+ 0x23028: "B\x10\U00023028", // 𣀨
+ 0x23029: "B\x10\U00023029", // 𣀩
+ 0x2302a: "B\x10\U0002302a", // 𣀪
+ 0x2302b: "B\x10\U0002302b", // 𣀫
+ 0x2302c: "B\x10\U0002302c", // 𣀬
+ 0x2302d: "B\x10\U0002302d", // 𣀭
+ 0x2302e: "B\x11\U0002302e", // 𣀮
+ 0x2302f: "B\x11\U0002302f", // 𣀯
+ 0x23030: "B\x11\U00023030", // 𣀰
+ 0x23031: "B\x11\U00023031", // 𣀱
+ 0x23032: "B\x11\U00023032", // 𣀲
+ 0x23033: "B\x12\U00023033", // 𣀳
+ 0x23034: "B\x12\U00023034", // 𣀴
+ 0x23035: "B\x13\U00023035", // 𣀵
+ 0x23036: "B\x13\U00023036", // 𣀶
+ 0x23037: "B\x13\U00023037", // 𣀷
+ 0x23038: "B\x13\U00023038", // 𣀸
+ 0x23039: "B\x13\U00023039", // 𣀹
+ 0x2303a: "B\x13\U0002303a", // 𣀺
+ 0x2303b: "B\x15\U0002303b", // 𣀻
+ 0x2303c: "B\x15\U0002303c", // 𣀼
+ 0x2303d: "B\x17\U0002303d", // 𣀽
+ 0x2303e: "B\x17\U0002303e", // 𣀾
+ 0x2303f: "B\x18\U0002303f", // 𣀿
+ 0x23040: "B\x19\U00023040", // 𣁀
+ 0x23041: "C\x02\U00023041", // 𣁁
+ 0x23042: "C\x03\U00023042", // 𣁂
+ 0x23043: "C\x04\U00023043", // 𣁃
+ 0x23044: "C\x04\U00023044", // 𣁄
+ 0x23045: "C\x04\U00023045", // 𣁅
+ 0x23046: "C\x05\U00023046", // 𣁆
+ 0x23047: "C\x05\U00023047", // 𣁇
+ 0x23048: "C\x05\U00023048", // 𣁈
+ 0x23049: "C\x05\U00023049", // 𣁉
+ 0x2304a: "C\x06\U0002304a", // 𣁊
+ 0x2304b: "B\x06\U0002304b", // 𣁋
+ 0x2304c: "C\x06\U0002304c", // 𣁌
+ 0x2304d: "C\x06\U0002304d", // 𣁍
+ 0x2304e: "C\a\U0002304e", // 𣁎
+ 0x2304f: "C\a\U0002304f", // 𣁏
+ 0x23050: "C\a\U00023050", // 𣁐
+ 0x23051: "C\a\U00023051", // 𣁑
+ 0x23052: "C\a\U00023052", // 𣁒
+ 0x23053: "C\a\U00023053", // 𣁓
+ 0x23054: "C\b\U00023054", // 𣁔
+ 0x23055: "C\b\U00023055", // 𣁕
+ 0x23056: "C\b\U00023056", // 𣁖
+ 0x23057: "C\t\U00023057", // 𣁗
+ 0x23058: "C\t\U00023058", // 𣁘
+ 0x23059: "C\t\U00023059", // 𣁙
+ 0x2305a: "C\a\U0002305a", // 𣁚
+ 0x2305b: "B\v\U0002305b", // 𣁛
+ 0x2305c: "C\v\U0002305c", // 𣁜
+ 0x2305d: "C\v\U0002305d", // 𣁝
+ 0x2305e: "C\v\U0002305e", // 𣁞
+ 0x2305f: "C\v\U0002305f", // 𣁟
+ 0x23060: "C\v\U00023060", // 𣁠
+ 0x23061: "C\v\U00023061", // 𣁡
+ 0x23062: "C\f\U00023062", // 𣁢
+ 0x23063: "C\f\U00023063", // 𣁣
+ 0x23064: "C\r\U00023064", // 𣁤
+ 0x23065: "C\x0e\U00023065", // 𣁥
+ 0x23066: "C\x0e\U00023066", // 𣁦
+ 0x23067: "C\x0f\U00023067", // 𣁧
+ 0x23068: "C\x10\U00023068", // 𣁨
+ 0x23069: "C\x11\U00023069", // 𣁩
+ 0x2306a: "C\x11\U0002306a", // 𣁪
+ 0x2306b: "C\x13\U0002306b", // 𣁫
+ 0x2306c: "D\x00\U0002306c", // 𣁬
+ 0x2306d: "D\x03\U0002306d", // 𣁭
+ 0x2306e: "D\x04\U0002306e", // 𣁮
+ 0x2306f: "D\x04\U0002306f", // 𣁯
+ 0x23070: "D\x04\U00023070", // 𣁰
+ 0x23071: "D\x05\U00023071", // 𣁱
+ 0x23072: "D\x05\U00023072", // 𣁲
+ 0x23073: "D\x06\U00023073", // 𣁳
+ 0x23074: "D\x06\U00023074", // 𣁴
+ 0x23075: "D\x06\U00023075", // 𣁵
+ 0x23076: "D\x06\U00023076", // 𣁶
+ 0x23077: "D\a\U00023077", // 𣁷
+ 0x23078: "D\a\U00023078", // 𣁸
+ 0x23079: "D\a\U00023079", // 𣁹
+ 0x2307a: "D\a\U0002307a", // 𣁺
+ 0x2307b: "D\a\U0002307b", // 𣁻
+ 0x2307c: "D\b\U0002307c", // 𣁼
+ 0x2307d: "D\b\U0002307d", // 𣁽
+ 0x2307e: "D\b\U0002307e", // 𣁾
+ 0x2307f: "D\b\U0002307f", // 𣁿
+ 0x23080: "D\b\U00023080", // 𣂀
+ 0x23081: "D\t\U00023081", // 𣂁
+ 0x23082: "D\n\U00023082", // 𣂂
+ 0x23083: "D\t\U00023083", // 𣂃
+ 0x23084: "D\t\U00023084", // 𣂄
+ 0x23085: "D\t\U00023085", // 𣂅
+ 0x23086: "D\n\U00023086", // 𣂆
+ 0x23087: "D\n\U00023087", // 𣂇
+ 0x23088: "D\n\U00023088", // 𣂈
+ 0x23089: "D\v\U00023089", // 𣂉
+ 0x2308a: "D\v\U0002308a", // 𣂊
+ 0x2308b: "D\v\U0002308b", // 𣂋
+ 0x2308c: "D\r\U0002308c", // 𣂌
+ 0x2308d: "D\r\U0002308d", // 𣂍
+ 0x2308e: "D\x0e\U0002308e", // 𣂎
+ 0x2308f: "D\x0f\U0002308f", // 𣂏
+ 0x23090: "D\x10\U00023090", // 𣂐
+ 0x23091: "E\x00\U00023091", // 𣂑
+ 0x23092: "E\x02\U00023092", // 𣂒
+ 0x23093: "E\x03\U00023093", // 𣂓
+ 0x23094: "E\x04\U00023094", // 𣂔
+ 0x23095: "E\x04\U00023095", // 𣂕
+ 0x23096: "E\x04\U00023096", // 𣂖
+ 0x23097: "E\x04\U00023097", // 𣂗
+ 0x23098: "E\x04\U00023098", // 𣂘
+ 0x23099: "E\x05\U00023099", // 𣂙
+ 0x2309a: "E\x05\U0002309a", // 𣂚
+ 0x2309b: "E\x06\U0002309b", // 𣂛
+ 0x2309c: "E\x06\U0002309c", // 𣂜
+ 0x2309d: "E\x06\U0002309d", // 𣂝
+ 0x2309e: "E\a\U0002309e", // 𣂞
+ 0x2309f: "E\a\U0002309f", // 𣂟
+ 0x230a0: "E\a\U000230a0", // 𣂠
+ 0x230a1: "E\b\U000230a1", // 𣂡
+ 0x230a2: "E\b\U000230a2", // 𣂢
+ 0x230a3: "E\b\U000230a3", // 𣂣
+ 0x230a4: "E\b\U000230a4", // 𣂤
+ 0x230a5: "E\b\U000230a5", // 𣂥
+ 0x230a6: "E\b\U000230a6", // 𣂦
+ 0x230a7: "E\b\U000230a7", // 𣂧
+ 0x230a8: "E\b\U000230a8", // 𣂨
+ 0x230a9: "E\b\U000230a9", // 𣂩
+ 0x230aa: "E\b\U000230aa", // 𣂪
+ 0x230ab: "q\a\U000230ab", // 𣂫
+ 0x230ac: "E\b\U000230ac", // 𣂬
+ 0x230ad: "E\b\U000230ad", // 𣂭
+ 0x230ae: "E\t\U000230ae", // 𣂮
+ 0x230af: "E\t\U000230af", // 𣂯
+ 0x230b0: "E\t\U000230b0", // 𣂰
+ 0x230b1: "E\t\U000230b1", // 𣂱
+ 0x230b2: "E\t\U000230b2", // 𣂲
+ 0x230b3: "E\t\U000230b3", // 𣂳
+ 0x230b4: "E\t\U000230b4", // 𣂴
+ 0x230b5: "E\t\U000230b5", // 𣂵
+ 0x230b6: "E\n\U000230b6", // 𣂶
+ 0x230b7: "E\n\U000230b7", // 𣂷
+ 0x230b8: "E\n\U000230b8", // 𣂸
+ 0x230b9: "E\n\U000230b9", // 𣂹
+ 0x230ba: "E\n\U000230ba", // 𣂺
+ 0x230bb: "E\v\U000230bb", // 𣂻
+ 0x230bc: "E\v\U000230bc", // 𣂼
+ 0x230bd: "E\v\U000230bd", // 𣂽
+ 0x230be: "E\v\U000230be", // 𣂾
+ 0x230bf: "E\v\U000230bf", // 𣂿
+ 0x230c0: "E\f\U000230c0", // 𣃀
+ 0x230c1: "E\f\U000230c1", // 𣃁
+ 0x230c2: "E\f\U000230c2", // 𣃂
+ 0x230c3: "E\f\U000230c3", // 𣃃
+ 0x230c4: "E\f\U000230c4", // 𣃄
+ 0x230c5: "E\f\U000230c5", // 𣃅
+ 0x230c6: "E\f\U000230c6", // 𣃆
+ 0x230c7: "E\r\U000230c7", // 𣃇
+ 0x230c8: "E\r\U000230c8", // 𣃈
+ 0x230c9: "E\r\U000230c9", // 𣃉
+ 0x230ca: "E\r\U000230ca", // 𣃊
+ 0x230cb: "E\r\U000230cb", // 𣃋
+ 0x230cc: "E\x0e\U000230cc", // 𣃌
+ 0x230cd: "E\x0e\U000230cd", // 𣃍
+ 0x230ce: "E\x0e\U000230ce", // 𣃎
+ 0x230cf: "E\x0e\U000230cf", // 𣃏
+ 0x230d0: "E\x0e\U000230d0", // 𣃐
+ 0x230d1: "E\x0f\U000230d1", // 𣃑
+ 0x230d2: "E\x0f\U000230d2", // 𣃒
+ 0x230d3: "E\x0f\U000230d3", // 𣃓
+ 0x230d4: "E\x10\U000230d4", // 𣃔
+ 0x230d5: "E\x10\U000230d5", // 𣃕
+ 0x230d6: "E\x12\U000230d6", // 𣃖
+ 0x230d7: "F\x02\U000230d7", // 𣃗
+ 0x230d8: "F\x03\U000230d8", // 𣃘
+ 0x230d9: "F\x03\U000230d9", // 𣃙
+ 0x230da: "F\x04\U000230da", // 𣃚
+ 0x230db: "F\x04\U000230db", // 𣃛
+ 0x230dc: "F\x04\U000230dc", // 𣃜
+ 0x230dd: "F\x05\U000230dd", // 𣃝
+ 0x230de: "F\x05\U000230de", // 𣃞
+ 0x230df: "F\x05\U000230df", // 𣃟
+ 0x230e0: "F\x05\U000230e0", // 𣃠
+ 0x230e1: "F\x05\U000230e1", // 𣃡
+ 0x230e2: "F\x05\U000230e2", // 𣃢
+ 0x230e3: "F\x05\U000230e3", // 𣃣
+ 0x230e4: "F\x05\U000230e4", // 𣃤
+ 0x230e5: "F\x05\U000230e5", // 𣃥
+ 0x230e6: "F\x06\U000230e6", // 𣃦
+ 0x230e7: "F\x06\U000230e7", // 𣃧
+ 0x230e8: "F\x06\U000230e8", // 𣃨
+ 0x230e9: "F\x06\U000230e9", // 𣃩
+ 0x230ea: "F\x06\U000230ea", // 𣃪
+ 0x230eb: "F\x06\U000230eb", // 𣃫
+ 0x230ec: "F\x06\U000230ec", // 𣃬
+ 0x230ed: "F\x06\U000230ed", // 𣃭
+ 0x230ee: "F\x06\U000230ee", // 𣃮
+ 0x230ef: "F\x06\U000230ef", // 𣃯
+ 0x230f0: "F\x06\U000230f0", // 𣃰
+ 0x230f1: "F\x06\U000230f1", // 𣃱
+ 0x230f2: "F\x06\U000230f2", // 𣃲
+ 0x230f3: "F\a\U000230f3", // 𣃳
+ 0x230f4: "F\a\U000230f4", // 𣃴
+ 0x230f5: "F\a\U000230f5", // 𣃵
+ 0x230f6: "F\a\U000230f6", // 𣃶
+ 0x230f7: "F\a\U000230f7", // 𣃷
+ 0x230f8: "F\a\U000230f8", // 𣃸
+ 0x230f9: "F\a\U000230f9", // 𣃹
+ 0x230fa: "F\a\U000230fa", // 𣃺
+ 0x230fb: "F\a\U000230fb", // 𣃻
+ 0x230fc: "F\b\U000230fc", // 𣃼
+ 0x230fd: "F\b\U000230fd", // 𣃽
+ 0x230fe: "F\b\U000230fe", // 𣃾
+ 0x230ff: "F\b\U000230ff", // 𣃿
+ 0x23100: "F\b\U00023100", // 𣄀
+ 0x23101: "F\b\U00023101", // 𣄁
+ 0x23102: "F\b\U00023102", // 𣄂
+ 0x23103: "F\b\U00023103", // 𣄃
+ 0x23104: "F\b\U00023104", // 𣄄
+ 0x23105: "F\b\U00023105", // 𣄅
+ 0x23106: "F\b\U00023106", // 𣄆
+ 0x23107: "F\b\U00023107", // 𣄇
+ 0x23108: "F\t\U00023108", // 𣄈
+ 0x23109: "F\t\U00023109", // 𣄉
+ 0x2310a: "F\t\U0002310a", // 𣄊
+ 0x2310b: "F\t\U0002310b", // 𣄋
+ 0x2310c: "F\t\U0002310c", // 𣄌
+ 0x2310d: "F\t\U0002310d", // 𣄍
+ 0x2310e: "F\n\U0002310e", // 𣄎
+ 0x2310f: "F\n\U0002310f", // 𣄏
+ 0x23110: "F\n\U00023110", // 𣄐
+ 0x23111: "F\n\U00023111", // 𣄑
+ 0x23112: "F\n\U00023112", // 𣄒
+ 0x23113: "F\n\U00023113", // 𣄓
+ 0x23114: "F\v\U00023114", // 𣄔
+ 0x23115: "F\v\U00023115", // 𣄕
+ 0x23116: "F\v\U00023116", // 𣄖
+ 0x23117: "F\f\U00023117", // 𣄗
+ 0x23118: "F\f\U00023118", // 𣄘
+ 0x23119: "F\f\U00023119", // 𣄙
+ 0x2311a: "F\f\U0002311a", // 𣄚
+ 0x2311b: "F\f\U0002311b", // 𣄛
+ 0x2311c: "F\f\U0002311c", // 𣄜
+ 0x2311d: "F\r\U0002311d", // 𣄝
+ 0x2311e: "F\x0e\U0002311e", // 𣄞
+ 0x2311f: "F\x0e\U0002311f", // 𣄟
+ 0x23120: "F\x0e\U00023120", // 𣄠
+ 0x23121: "F\x0e\U00023121", // 𣄡
+ 0x23122: "F\x0e\U00023122", // 𣄢
+ 0x23123: "F\x0e\U00023123", // 𣄣
+ 0x23124: "F\x0f\U00023124", // 𣄤
+ 0x23125: "F\x10\U00023125", // 𣄥
+ 0x23126: "F\x11\U00023126", // 𣄦
+ 0x23127: "F\x12\U00023127", // 𣄧
+ 0x23128: "F\x12\U00023128", // 𣄨
+ 0x23129: "F\x13\U00023129", // 𣄩
+ 0x2312a: "F\x14\U0002312a", // 𣄪
+ 0x2312b: "F\x15\U0002312b", // 𣄫
+ 0x2312c: "F\x16\U0002312c", // 𣄬
+ 0x2312d: "G\x02\U0002312d", // 𣄭
+ 0x2312e: "G\x03\U0002312e", // 𣄮
+ 0x2312f: "G\x03\U0002312f", // 𣄯
+ 0x23130: "G\x05\U00023130", // 𣄰
+ 0x23131: "G\x06\U00023131", // 𣄱
+ 0x23132: "G\x06\U00023132", // 𣄲
+ 0x23133: "G\x06\U00023133", // 𣄳
+ 0x23134: "G\b\U00023134", // 𣄴
+ 0x23135: "G\b\U00023135", // 𣄵
+ 0x23136: "G\t\U00023136", // 𣄶
+ 0x23137: "G\t\U00023137", // 𣄷
+ 0x23138: "G\t\U00023138", // 𣄸
+ 0x23139: "G\v\U00023139", // 𣄹
+ 0x2313a: "G\f\U0002313a", // 𣄺
+ 0x2313b: "H\x01\U0002313b", // 𣄻
+ 0x2313c: "H\x01\U0002313c", // 𣄼
+ 0x2313d: "H\x01\U0002313d", // 𣄽
+ 0x2313e: "H\x02\U0002313e", // 𣄾
+ 0x2313f: "H\x02\U0002313f", // 𣄿
+ 0x23140: "H\x02\U00023140", // 𣅀
+ 0x23141: "H\x02\U00023141", // 𣅁
+ 0x23142: "H\x02\U00023142", // 𣅂
+ 0x23143: "H\x02\U00023143", // 𣅃
+ 0x23144: "H\x03\U00023144", // 𣅄
+ 0x23145: "H\x02\U00023145", // 𣅅
+ 0x23146: "H\x03\U00023146", // 𣅆
+ 0x23147: "H\x03\U00023147", // 𣅇
+ 0x23148: "H\x03\U00023148", // 𣅈
+ 0x23149: "H\x03\U00023149", // 𣅉
+ 0x2314a: "H\x03\U0002314a", // 𣅊
+ 0x2314b: "H\x03\U0002314b", // 𣅋
+ 0x2314c: "H\x03\U0002314c", // 𣅌
+ 0x2314d: "H\x03\U0002314d", // 𣅍
+ 0x2314e: "H\x03\U0002314e", // 𣅎
+ 0x2314f: "H\x03\U0002314f", // 𣅏
+ 0x23150: "H\x03\U00023150", // 𣅐
+ 0x23151: "H\x03\U00023151", // 𣅑
+ 0x23152: "H\x03\U00023152", // 𣅒
+ 0x23153: "H\x03\U00023153", // 𣅓
+ 0x23154: "H\x03\U00023154", // 𣅔
+ 0x23155: "H\x03\U00023155", // 𣅕
+ 0x23156: "H\x03\U00023156", // 𣅖
+ 0x23157: "H\x03\U00023157", // 𣅗
+ 0x23158: "H\x03\U00023158", // 𣅘
+ 0x23159: "H\x03\U00023159", // 𣅙
+ 0x2315a: "H\x04\U0002315a", // 𣅚
+ 0x2315b: "H\x04\U0002315b", // 𣅛
+ 0x2315c: "H\x04\U0002315c", // 𣅜
+ 0x2315d: "H\x04\U0002315d", // 𣅝
+ 0x2315e: "H\x04\U0002315e", // 𣅞
+ 0x2315f: "H\x04\U0002315f", // 𣅟
+ 0x23160: "H\x04\U00023160", // 𣅠
+ 0x23161: "H\x04\U00023161", // 𣅡
+ 0x23162: "H\x04\U00023162", // 𣅢
+ 0x23163: "H\x04\U00023163", // 𣅣
+ 0x23164: "H\x04\U00023164", // 𣅤
+ 0x23165: "H\x04\U00023165", // 𣅥
+ 0x23166: "H\x04\U00023166", // 𣅦
+ 0x23167: "H\x04\U00023167", // 𣅧
+ 0x23168: "H\x04\U00023168", // 𣅨
+ 0x23169: "H\x04\U00023169", // 𣅩
+ 0x2316a: "H\x04\U0002316a", // 𣅪
+ 0x2316b: "H\x04\U0002316b", // 𣅫
+ 0x2316c: "H\x04\U0002316c", // 𣅬
+ 0x2316d: "H\x04\U0002316d", // 𣅭
+ 0x2316e: "H\x04\U0002316e", // 𣅮
+ 0x2316f: "H\x04\U0002316f", // 𣅯
+ 0x23170: "H\x04\U00023170", // 𣅰
+ 0x23171: "H\x04\U00023171", // 𣅱
+ 0x23172: "H\x04\U00023172", // 𣅲
+ 0x23173: "H\x04\U00023173", // 𣅳
+ 0x23174: "H\x04\U00023174", // 𣅴
+ 0x23175: "H\x04\U00023175", // 𣅵
+ 0x23176: "H\x04\U00023176", // 𣅶
+ 0x23177: "H\x05\U00023177", // 𣅷
+ 0x23178: "H\x05\U00023178", // 𣅸
+ 0x23179: "H\x05\U00023179", // 𣅹
+ 0x2317a: "H\x05\U0002317a", // 𣅺
+ 0x2317b: "H\x05\U0002317b", // 𣅻
+ 0x2317c: "H\x05\U0002317c", // 𣅼
+ 0x2317d: "H\x05\U0002317d", // 𣅽
+ 0x2317e: "H\x05\U0002317e", // 𣅾
+ 0x2317f: "H\x05\U0002317f", // 𣅿
+ 0x23180: "H\x05\U00023180", // 𣆀
+ 0x23181: "H\x05\U00023181", // 𣆁
+ 0x23182: "H\x05\U00023182", // 𣆂
+ 0x23183: "H\x05\U00023183", // 𣆃
+ 0x23184: "H\x05\U00023184", // 𣆄
+ 0x23185: "H\x05\U00023185", // 𣆅
+ 0x23186: "H\x05\U00023186", // 𣆆
+ 0x23187: "H\x05\U00023187", // 𣆇
+ 0x23188: "H\x05\U00023188", // 𣆈
+ 0x23189: "I\x05\U00023189", // 𣆉
+ 0x2318a: "H\x05\U0002318a", // 𣆊
+ 0x2318b: "H\x05\U0002318b", // 𣆋
+ 0x2318c: "H\x05\U0002318c", // 𣆌
+ 0x2318d: "H\x05\U0002318d", // 𣆍
+ 0x2318e: "H\x05\U0002318e", // 𣆎
+ 0x2318f: "H\x05\U0002318f", // 𣆏
+ 0x23190: "H\x05\U00023190", // 𣆐
+ 0x23191: "H\x05\U00023191", // 𣆑
+ 0x23192: "H\x06\U00023192", // 𣆒
+ 0x23193: "H\x06\U00023193", // 𣆓
+ 0x23194: "H\x06\U00023194", // 𣆔
+ 0x23195: "H\x06\U00023195", // 𣆕
+ 0x23196: "H\x06\U00023196", // 𣆖
+ 0x23197: "H\x06\U00023197", // 𣆗
+ 0x23198: "H\x06\U00023198", // 𣆘
+ 0x23199: "H\x06\U00023199", // 𣆙
+ 0x2319a: "H\x06\U0002319a", // 𣆚
+ 0x2319b: "H\x06\U0002319b", // 𣆛
+ 0x2319c: "H\x06\U0002319c", // 𣆜
+ 0x2319d: "H\x06\U0002319d", // 𣆝
+ 0x2319e: "H\x06\U0002319e", // 𣆞
+ 0x2319f: "H\x06\U0002319f", // 𣆟
+ 0x231a0: "H\x06\U000231a0", // 𣆠
+ 0x231a1: "H\x06\U000231a1", // 𣆡
+ 0x231a2: "H\x06\U000231a2", // 𣆢
+ 0x231a3: "H\x06\U000231a3", // 𣆣
+ 0x231a4: "H\x06\U000231a4", // 𣆤
+ 0x231a5: "H\x06\U000231a5", // 𣆥
+ 0x231a6: "H\x06\U000231a6", // 𣆦
+ 0x231a7: "H\x06\U000231a7", // 𣆧
+ 0x231a8: "H\x06\U000231a8", // 𣆨
+ 0x231a9: "H\x06\U000231a9", // 𣆩
+ 0x231aa: "H\x06\U000231aa", // 𣆪
+ 0x231ab: "H\x06\U000231ab", // 𣆫
+ 0x231ac: "H\x06\U000231ac", // 𣆬
+ 0x231ad: "H\x06\U000231ad", // 𣆭
+ 0x231ae: "H\x06\U000231ae", // 𣆮
+ 0x231af: "H\x06\U000231af", // 𣆯
+ 0x231b0: "H\x06\U000231b0", // 𣆰
+ 0x231b1: "H\x06\U000231b1", // 𣆱
+ 0x231b2: "H\a\U000231b2", // 𣆲
+ 0x231b3: "H\a\U000231b3", // 𣆳
+ 0x231b4: "H\a\U000231b4", // 𣆴
+ 0x231b5: "H\a\U000231b5", // 𣆵
+ 0x231b6: "H\a\U000231b6", // 𣆶
+ 0x231b7: "H\a\U000231b7", // 𣆷
+ 0x231b8: "H\a\U000231b8", // 𣆸
+ 0x231b9: "H\a\U000231b9", // 𣆹
+ 0x231ba: "H\a\U000231ba", // 𣆺
+ 0x231bb: "H\a\U000231bb", // 𣆻
+ 0x231bc: "H\a\U000231bc", // 𣆼
+ 0x231bd: "H\a\U000231bd", // 𣆽
+ 0x231be: "H\a\U000231be", // 𣆾
+ 0x231bf: "H\a\U000231bf", // 𣆿
+ 0x231c0: "H\a\U000231c0", // 𣇀
+ 0x231c1: "H\a\U000231c1", // 𣇁
+ 0x231c2: "H\a\U000231c2", // 𣇂
+ 0x231c3: "H\a\U000231c3", // 𣇃
+ 0x231c4: "H\a\U000231c4", // 𣇄
+ 0x231c5: "H\a\U000231c5", // 𣇅
+ 0x231c6: "H\a\U000231c6", // 𣇆
+ 0x231c7: "H\a\U000231c7", // 𣇇
+ 0x231c8: "H\a\U000231c8", // 𣇈
+ 0x231c9: "H\a\U000231c9", // 𣇉
+ 0x231ca: "H\a\U000231ca", // 𣇊
+ 0x231cb: "H\a\U000231cb", // 𣇋
+ 0x231cc: "H\a\U000231cc", // 𣇌
+ 0x231cd: "H\a\U000231cd", // 𣇍
+ 0x231ce: "H\a\U000231ce", // 𣇎
+ 0x231cf: "H\a\U000231cf", // 𣇏
+ 0x231d0: "H\a\U000231d0", // 𣇐
+ 0x231d1: "H\a\U000231d1", // 𣇑
+ 0x231d2: "H\a\U000231d2", // 𣇒
+ 0x231d3: "H\a\U000231d3", // 𣇓
+ 0x231d4: "H\a\U000231d4", // 𣇔
+ 0x231d5: "H\a\U000231d5", // 𣇕
+ 0x231d6: "H\a\U000231d6", // 𣇖
+ 0x231d7: "H\a\U000231d7", // 𣇗
+ 0x231d8: "H\a\U000231d8", // 𣇘
+ 0x231d9: "H\a\U000231d9", // 𣇙
+ 0x231da: "H\a\U000231da", // 𣇚
+ 0x231db: "H\a\U000231db", // 𣇛
+ 0x231dc: "H\a\U000231dc", // 𣇜
+ 0x231dd: "H\a\U000231dd", // 𣇝
+ 0x231de: "H\a\U000231de", // 𣇞
+ 0x231df: "H\a\U000231df", // 𣇟
+ 0x231e0: "H\a\U000231e0", // 𣇠
+ 0x231e1: "H\a\U000231e1", // 𣇡
+ 0x231e2: "H\b\U000231e2", // 𣇢
+ 0x231e3: "H\b\U000231e3", // 𣇣
+ 0x231e4: "H\b\U000231e4", // 𣇤
+ 0x231e5: "H\b\U000231e5", // 𣇥
+ 0x231e6: "H\b\U000231e6", // 𣇦
+ 0x231e7: "H\b\U000231e7", // 𣇧
+ 0x231e8: "H\b\U000231e8", // 𣇨
+ 0x231e9: "H\b\U000231e9", // 𣇩
+ 0x231ea: "H\b\U000231ea", // 𣇪
+ 0x231eb: "H\b\U000231eb", // 𣇫
+ 0x231ec: "H\b\U000231ec", // 𣇬
+ 0x231ed: "H\b\U000231ed", // 𣇭
+ 0x231ee: "H\b\U000231ee", // 𣇮
+ 0x231ef: "H\b\U000231ef", // 𣇯
+ 0x231f0: "H\b\U000231f0", // 𣇰
+ 0x231f1: "H\b\U000231f1", // 𣇱
+ 0x231f2: "H\b\U000231f2", // 𣇲
+ 0x231f3: "H\b\U000231f3", // 𣇳
+ 0x231f4: "H\b\U000231f4", // 𣇴
+ 0x231f5: "H\b\U000231f5", // 𣇵
+ 0x231f6: "H\b\U000231f6", // 𣇶
+ 0x231f7: "H\b\U000231f7", // 𣇷
+ 0x231f8: "H\b\U000231f8", // 𣇸
+ 0x231f9: "H\b\U000231f9", // 𣇹
+ 0x231fa: "H\b\U000231fa", // 𣇺
+ 0x231fb: "H\b\U000231fb", // 𣇻
+ 0x231fc: "H\b\U000231fc", // 𣇼
+ 0x231fd: "H\b\U000231fd", // 𣇽
+ 0x231fe: "H\b\U000231fe", // 𣇾
+ 0x231ff: "H\b\U000231ff", // 𣇿
+ 0x23200: "H\b\U00023200", // 𣈀
+ 0x23201: "H\b\U00023201", // 𣈁
+ 0x23202: "H\b\U00023202", // 𣈂
+ 0x23203: "H\b\U00023203", // 𣈃
+ 0x23204: "H\b\U00023204", // 𣈄
+ 0x23205: "H\b\U00023205", // 𣈅
+ 0x23206: "H\b\U00023206", // 𣈆
+ 0x23207: "H\b\U00023207", // 𣈇
+ 0x23208: "H\b\U00023208", // 𣈈
+ 0x23209: "H\b\U00023209", // 𣈉
+ 0x2320a: "H\b\U0002320a", // 𣈊
+ 0x2320b: "H\b\U0002320b", // 𣈋
+ 0x2320c: "H\b\U0002320c", // 𣈌
+ 0x2320d: "H\b\U0002320d", // 𣈍
+ 0x2320e: "H\b\U0002320e", // 𣈎
+ 0x2320f: "H\b\U0002320f", // 𣈏
+ 0x23210: "H\b\U00023210", // 𣈐
+ 0x23211: "H\b\U00023211", // 𣈑
+ 0x23212: "H\b\U00023212", // 𣈒
+ 0x23213: "H\b\U00023213", // 𣈓
+ 0x23214: "H\b\U00023214", // 𣈔
+ 0x23215: "H\b\U00023215", // 𣈕
+ 0x23216: "H\b\U00023216", // 𣈖
+ 0x23217: "H\b\U00023217", // 𣈗
+ 0x23218: "H\b\U00023218", // 𣈘
+ 0x23219: "H\b\U00023219", // 𣈙
+ 0x2321a: "H\b\U0002321a", // 𣈚
+ 0x2321b: "H\b\U0002321b", // 𣈛
+ 0x2321c: "H\b\U0002321c", // 𣈜
+ 0x2321d: "H\b\U0002321d", // 𣈝
+ 0x2321e: "H\b\U0002321e", // 𣈞
+ 0x2321f: "H\b\U0002321f", // 𣈟
+ 0x23220: "H\b\U00023220", // 𣈠
+ 0x23221: "H\b\U00023221", // 𣈡
+ 0x23222: "H\b\U00023222", // 𣈢
+ 0x23223: "H\b\U00023223", // 𣈣
+ 0x23224: "H\t\U00023224", // 𣈤
+ 0x23225: "H\t\U00023225", // 𣈥
+ 0x23226: "H\t\U00023226", // 𣈦
+ 0x23227: "H\t\U00023227", // 𣈧
+ 0x23228: "H\t\U00023228", // 𣈨
+ 0x23229: "H\t\U00023229", // 𣈩
+ 0x2322a: "H\t\U0002322a", // 𣈪
+ 0x2322b: "H\t\U0002322b", // 𣈫
+ 0x2322c: "H\t\U0002322c", // 𣈬
+ 0x2322d: "H\t\U0002322d", // 𣈭
+ 0x2322e: "H\t\U0002322e", // 𣈮
+ 0x2322f: "H\t\U0002322f", // 𣈯
+ 0x23230: "H\t\U00023230", // 𣈰
+ 0x23231: "H\t\U00023231", // 𣈱
+ 0x23232: "H\t\U00023232", // 𣈲
+ 0x23233: "H\t\U00023233", // 𣈳
+ 0x23234: "H\t\U00023234", // 𣈴
+ 0x23235: "H\t\U00023235", // 𣈵
+ 0x23236: "H\t\U00023236", // 𣈶
+ 0x23237: "H\t\U00023237", // 𣈷
+ 0x23238: "H\t\U00023238", // 𣈸
+ 0x23239: "H\t\U00023239", // 𣈹
+ 0x2323a: "H\t\U0002323a", // 𣈺
+ 0x2323b: "H\t\U0002323b", // 𣈻
+ 0x2323c: "H\t\U0002323c", // 𣈼
+ 0x2323d: "H\t\U0002323d", // 𣈽
+ 0x2323e: "H\t\U0002323e", // 𣈾
+ 0x2323f: "H\t\U0002323f", // 𣈿
+ 0x23240: "H\t\U00023240", // 𣉀
+ 0x23241: "H\t\U00023241", // 𣉁
+ 0x23242: "H\t\U00023242", // 𣉂
+ 0x23243: "H\t\U00023243", // 𣉃
+ 0x23244: "H\t\U00023244", // 𣉄
+ 0x23245: "H\t\U00023245", // 𣉅
+ 0x23246: "H\t\U00023246", // 𣉆
+ 0x23247: "H\t\U00023247", // 𣉇
+ 0x23248: "H\t\U00023248", // 𣉈
+ 0x23249: "H\t\U00023249", // 𣉉
+ 0x2324a: "H\t\U0002324a", // 𣉊
+ 0x2324b: "H\t\U0002324b", // 𣉋
+ 0x2324c: "H\t\U0002324c", // 𣉌
+ 0x2324d: "H\t\U0002324d", // 𣉍
+ 0x2324e: "H\t\U0002324e", // 𣉎
+ 0x2324f: "H\t\U0002324f", // 𣉏
+ 0x23250: "H\t\U00023250", // 𣉐
+ 0x23251: "H\t\U00023251", // 𣉑
+ 0x23252: "H\n\U00023252", // 𣉒
+ 0x23253: "H\n\U00023253", // 𣉓
+ 0x23254: "H\n\U00023254", // 𣉔
+ 0x23255: "H\n\U00023255", // 𣉕
+ 0x23256: "H\n\U00023256", // 𣉖
+ 0x23257: "H\n\U00023257", // 𣉗
+ 0x23258: "H\n\U00023258", // 𣉘
+ 0x23259: "H\n\U00023259", // 𣉙
+ 0x2325a: "H\n\U0002325a", // 𣉚
+ 0x2325b: "H\n\U0002325b", // 𣉛
+ 0x2325c: "H\n\U0002325c", // 𣉜
+ 0x2325d: "H\n\U0002325d", // 𣉝
+ 0x2325e: "H\n\U0002325e", // 𣉞
+ 0x2325f: "H\n\U0002325f", // 𣉟
+ 0x23260: "H\n\U00023260", // 𣉠
+ 0x23261: "6\v\U00023261", // 𣉡
+ 0x23262: "H\n\U00023262", // 𣉢
+ 0x23263: "H\n\U00023263", // 𣉣
+ 0x23264: "H\n\U00023264", // 𣉤
+ 0x23265: "H\n\U00023265", // 𣉥
+ 0x23266: "H\n\U00023266", // 𣉦
+ 0x23267: "H\n\U00023267", // 𣉧
+ 0x23268: "H\n\U00023268", // 𣉨
+ 0x23269: "H\n\U00023269", // 𣉩
+ 0x2326a: "H\n\U0002326a", // 𣉪
+ 0x2326b: "H\n\U0002326b", // 𣉫
+ 0x2326c: "H\n\U0002326c", // 𣉬
+ 0x2326d: "H\n\U0002326d", // 𣉭
+ 0x2326e: "H\n\U0002326e", // 𣉮
+ 0x2326f: "H\n\U0002326f", // 𣉯
+ 0x23270: "H\n\U00023270", // 𣉰
+ 0x23271: "H\n\U00023271", // 𣉱
+ 0x23272: "H\n\U00023272", // 𣉲
+ 0x23273: "H\n\U00023273", // 𣉳
+ 0x23274: "H\n\U00023274", // 𣉴
+ 0x23275: "H\n\U00023275", // 𣉵
+ 0x23276: "H\n\U00023276", // 𣉶
+ 0x23277: "H\n\U00023277", // 𣉷
+ 0x23278: "H\n\U00023278", // 𣉸
+ 0x23279: "H\n\U00023279", // 𣉹
+ 0x2327a: "H\n\U0002327a", // 𣉺
+ 0x2327b: "H\v\U0002327b", // 𣉻
+ 0x2327c: "H\v\U0002327c", // 𣉼
+ 0x2327d: "H\v\U0002327d", // 𣉽
+ 0x2327e: "H\v\U0002327e", // 𣉾
+ 0x2327f: "H\v\U0002327f", // 𣉿
+ 0x23280: "H\v\U00023280", // 𣊀
+ 0x23281: "H\v\U00023281", // 𣊁
+ 0x23282: "H\v\U00023282", // 𣊂
+ 0x23283: "H\v\U00023283", // 𣊃
+ 0x23284: "H\v\U00023284", // 𣊄
+ 0x23285: "H\v\U00023285", // 𣊅
+ 0x23286: "H\v\U00023286", // 𣊆
+ 0x23287: "H\v\U00023287", // 𣊇
+ 0x23288: "H\v\U00023288", // 𣊈
+ 0x23289: "H\f\U00023289", // 𣊉
+ 0x2328a: "H\v\U0002328a", // 𣊊
+ 0x2328b: "H\v\U0002328b", // 𣊋
+ 0x2328c: "H\v\U0002328c", // 𣊌
+ 0x2328d: "H\v\U0002328d", // 𣊍
+ 0x2328e: "H\v\U0002328e", // 𣊎
+ 0x2328f: "H\v\U0002328f", // 𣊏
+ 0x23290: "H\v\U00023290", // 𣊐
+ 0x23291: "H\v\U00023291", // 𣊑
+ 0x23292: ")\f\U00023292", // 𣊒
+ 0x23293: "H\v\U00023293", // 𣊓
+ 0x23294: "H\v\U00023294", // 𣊔
+ 0x23295: "H\v\U00023295", // 𣊕
+ 0x23296: "H\v\U00023296", // 𣊖
+ 0x23297: "H\v\U00023297", // 𣊗
+ 0x23298: "H\v\U00023298", // 𣊘
+ 0x23299: "H\v\U00023299", // 𣊙
+ 0x2329a: "H\v\U0002329a", // 𣊚
+ 0x2329b: "H\v\U0002329b", // 𣊛
+ 0x2329c: "H\v\U0002329c", // 𣊜
+ 0x2329d: "H\v\U0002329d", // 𣊝
+ 0x2329e: "H\f\U0002329e", // 𣊞
+ 0x2329f: "H\f\U0002329f", // 𣊟
+ 0x232a0: "H\f\U000232a0", // 𣊠
+ 0x232a1: "H\f\U000232a1", // 𣊡
+ 0x232a2: "H\f\U000232a2", // 𣊢
+ 0x232a3: "H\f\U000232a3", // 𣊣
+ 0x232a4: "H\f\U000232a4", // 𣊤
+ 0x232a5: "H\f\U000232a5", // 𣊥
+ 0x232a6: "H\f\U000232a6", // 𣊦
+ 0x232a7: "H\f\U000232a7", // 𣊧
+ 0x232a8: "H\f\U000232a8", // 𣊨
+ 0x232a9: "H\f\U000232a9", // 𣊩
+ 0x232aa: "H\f\U000232aa", // 𣊪
+ 0x232ab: "H\f\U000232ab", // 𣊫
+ 0x232ac: "H\f\U000232ac", // 𣊬
+ 0x232ad: "H\f\U000232ad", // 𣊭
+ 0x232ae: "H\f\U000232ae", // 𣊮
+ 0x232af: "H\f\U000232af", // 𣊯
+ 0x232b0: "H\f\U000232b0", // 𣊰
+ 0x232b1: "H\f\U000232b1", // 𣊱
+ 0x232b2: "H\f\U000232b2", // 𣊲
+ 0x232b3: "H\f\U000232b3", // 𣊳
+ 0x232b4: "H\f\U000232b4", // 𣊴
+ 0x232b5: "H\f\U000232b5", // 𣊵
+ 0x232b6: "H\f\U000232b6", // 𣊶
+ 0x232b7: "H\f\U000232b7", // 𣊷
+ 0x232b8: "H\f\U000232b8", // 𣊸
+ 0x232b9: "H\f\U000232b9", // 𣊹
+ 0x232ba: "H\f\U000232ba", // 𣊺
+ 0x232bb: "H\f\U000232bb", // 𣊻
+ 0x232bc: "H\f\U000232bc", // 𣊼
+ 0x232bd: "H\f\U000232bd", // 𣊽
+ 0x232be: "H\f\U000232be", // 𣊾
+ 0x232bf: "H\f\U000232bf", // 𣊿
+ 0x232c0: "H\f\U000232c0", // 𣋀
+ 0x232c1: "H\f\U000232c1", // 𣋁
+ 0x232c2: "H\f\U000232c2", // 𣋂
+ 0x232c3: "H\f\U000232c3", // 𣋃
+ 0x232c4: "H\f\U000232c4", // 𣋄
+ 0x232c5: "H\f\U000232c5", // 𣋅
+ 0x232c6: "H\f\U000232c6", // 𣋆
+ 0x232c7: "H\v\U000232c7", // 𣋇
+ 0x232c8: "H\f\U000232c8", // 𣋈
+ 0x232c9: "H\r\U000232c9", // 𣋉
+ 0x232ca: "H\r\U000232ca", // 𣋊
+ 0x232cb: "H\r\U000232cb", // 𣋋
+ 0x232cc: "H\r\U000232cc", // 𣋌
+ 0x232cd: "H\r\U000232cd", // 𣋍
+ 0x232ce: "H\r\U000232ce", // 𣋎
+ 0x232cf: "H\r\U000232cf", // 𣋏
+ 0x232d0: "H\r\U000232d0", // 𣋐
+ 0x232d1: "H\r\U000232d1", // 𣋑
+ 0x232d2: "H\r\U000232d2", // 𣋒
+ 0x232d3: "H\r\U000232d3", // 𣋓
+ 0x232d4: "H\r\U000232d4", // 𣋔
+ 0x232d5: "H\r\U000232d5", // 𣋕
+ 0x232d6: "H\r\U000232d6", // 𣋖
+ 0x232d7: "H\r\U000232d7", // 𣋗
+ 0x232d8: "H\r\U000232d8", // 𣋘
+ 0x232d9: "H\r\U000232d9", // 𣋙
+ 0x232da: "H\r\U000232da", // 𣋚
+ 0x232db: "H\r\U000232db", // 𣋛
+ 0x232dc: "H\r\U000232dc", // 𣋜
+ 0x232dd: "H\r\U000232dd", // 𣋝
+ 0x232de: "H\x0e\U000232de", // 𣋞
+ 0x232df: "H\x0e\U000232df", // 𣋟
+ 0x232e0: "H\x0e\U000232e0", // 𣋠
+ 0x232e1: "H\x0e\U000232e1", // 𣋡
+ 0x232e2: "H\x0e\U000232e2", // 𣋢
+ 0x232e3: "H\x0e\U000232e3", // 𣋣
+ 0x232e4: "H\x0e\U000232e4", // 𣋤
+ 0x232e5: "H\x0e\U000232e5", // 𣋥
+ 0x232e6: "H\x0e\U000232e6", // 𣋦
+ 0x232e7: "H\x0e\U000232e7", // 𣋧
+ 0x232e8: "H\x0e\U000232e8", // 𣋨
+ 0x232e9: "H\x0e\U000232e9", // 𣋩
+ 0x232ea: "H\x0e\U000232ea", // 𣋪
+ 0x232eb: "H\x0e\U000232eb", // 𣋫
+ 0x232ec: "H\x0e\U000232ec", // 𣋬
+ 0x232ed: "H\x0e\U000232ed", // 𣋭
+ 0x232ee: "H\x0e\U000232ee", // 𣋮
+ 0x232ef: "H\x0e\U000232ef", // 𣋯
+ 0x232f0: "H\x0e\U000232f0", // 𣋰
+ 0x232f1: "H\x0e\U000232f1", // 𣋱
+ 0x232f2: "H\x0f\U000232f2", // 𣋲
+ 0x232f3: "H\x0f\U000232f3", // 𣋳
+ 0x232f4: "H\x0f\U000232f4", // 𣋴
+ 0x232f5: "H\x0f\U000232f5", // 𣋵
+ 0x232f6: "H\x0f\U000232f6", // 𣋶
+ 0x232f7: "H\x0f\U000232f7", // 𣋷
+ 0x232f8: "H\x0f\U000232f8", // 𣋸
+ 0x232f9: "H\x0f\U000232f9", // 𣋹
+ 0x232fa: "H\x0f\U000232fa", // 𣋺
+ 0x232fb: "H\x0f\U000232fb", // 𣋻
+ 0x232fc: "H\x0f\U000232fc", // 𣋼
+ 0x232fd: "H\x0f\U000232fd", // 𣋽
+ 0x232fe: "H\x0f\U000232fe", // 𣋾
+ 0x232ff: "H\x10\U000232ff", // 𣋿
+ 0x23300: "H\x10\U00023300", // 𣌀
+ 0x23301: "H\x10\U00023301", // 𣌁
+ 0x23302: "H\x10\U00023302", // 𣌂
+ 0x23303: "H\x10\U00023303", // 𣌃
+ 0x23304: "H\x10\U00023304", // 𣌄
+ 0x23305: "H\x10\U00023305", // 𣌅
+ 0x23306: "H\x10\U00023306", // 𣌆
+ 0x23307: "H\x10\U00023307", // 𣌇
+ 0x23308: "H\x11\U00023308", // 𣌈
+ 0x23309: "H\x11\U00023309", // 𣌉
+ 0x2330a: "H\x11\U0002330a", // 𣌊
+ 0x2330b: "H\x11\U0002330b", // 𣌋
+ 0x2330c: "H\x11\U0002330c", // 𣌌
+ 0x2330d: "H\x12\U0002330d", // 𣌍
+ 0x2330e: "H\x12\U0002330e", // 𣌎
+ 0x2330f: "H\x12\U0002330f", // 𣌏
+ 0x23310: "H\x12\U00023310", // 𣌐
+ 0x23311: "H\x12\U00023311", // 𣌑
+ 0x23312: "H\x12\U00023312", // 𣌒
+ 0x23313: "H\x12\U00023313", // 𣌓
+ 0x23314: "H\x12\U00023314", // 𣌔
+ 0x23315: "H\x12\U00023315", // 𣌕
+ 0x23316: "H\x13\U00023316", // 𣌖
+ 0x23317: "H\x14\U00023317", // 𣌗
+ 0x23318: "H\x14\U00023318", // 𣌘
+ 0x23319: "H\x14\U00023319", // 𣌙
+ 0x2331a: "\x95\x11\U0002331a", // 𣌚
+ 0x2331b: "H\x14\U0002331b", // 𣌛
+ 0x2331c: "H\x15\U0002331c", // 𣌜
+ 0x2331d: "H\x15\U0002331d", // 𣌝
+ 0x2331e: "{\x15\U0002331e", // 𣌞
+ 0x2331f: "H\x18\U0002331f", // 𣌟
+ 0x23320: "H \U00023320", // 𣌠
+ 0x23321: "I\x03\U00023321", // 𣌡
+ 0x23322: "I\x03\U00023322", // 𣌢
+ 0x23323: "I\x04\U00023323", // 𣌣
+ 0x23324: "I\x04\U00023324", // 𣌤
+ 0x23325: "I\x04\U00023325", // 𣌥
+ 0x23326: "I\x04\U00023326", // 𣌦
+ 0x23327: "I\x05\U00023327", // 𣌧
+ 0x23328: "I\x05\U00023328", // 𣌨
+ 0x23329: "I\x05\U00023329", // 𣌩
+ 0x2332a: "I\x05\U0002332a", // 𣌪
+ 0x2332b: "I\x05\U0002332b", // 𣌫
+ 0x2332c: "I\x05\U0002332c", // 𣌬
+ 0x2332d: "I\x06\U0002332d", // 𣌭
+ 0x2332e: "I\x06\U0002332e", // 𣌮
+ 0x2332f: "I\x06\U0002332f", // 𣌯
+ 0x23330: "I\x06\U00023330", // 𣌰
+ 0x23331: "I\x06\U00023331", // 𣌱
+ 0x23332: "I\x06\U00023332", // 𣌲
+ 0x23333: "I\x06\U00023333", // 𣌳
+ 0x23334: "I\x06\U00023334", // 𣌴
+ 0x23335: "I\x06\U00023335", // 𣌵
+ 0x23336: "I\x06\U00023336", // 𣌶
+ 0x23337: "I\a\U00023337", // 𣌷
+ 0x23338: "I\a\U00023338", // 𣌸
+ 0x23339: "I\a\U00023339", // 𣌹
+ 0x2333a: "I\a\U0002333a", // 𣌺
+ 0x2333b: "I\b\U0002333b", // 𣌻
+ 0x2333c: "I\b\U0002333c", // 𣌼
+ 0x2333d: "I\b\U0002333d", // 𣌽
+ 0x2333e: "I\t\U0002333e", // 𣌾
+ 0x2333f: "I\t\U0002333f", // 𣌿
+ 0x23340: "I\t\U00023340", // 𣍀
+ 0x23341: "I\t\U00023341", // 𣍁
+ 0x23342: "I\t\U00023342", // 𣍂
+ 0x23343: "I\n\U00023343", // 𣍃
+ 0x23344: "I\n\U00023344", // 𣍄
+ 0x23345: "I\n\U00023345", // 𣍅
+ 0x23346: "I\v\U00023346", // 𣍆
+ 0x23347: "I\v\U00023347", // 𣍇
+ 0x23348: "I\v\U00023348", // 𣍈
+ 0x23349: "I\v\U00023349", // 𣍉
+ 0x2334a: "I\v\U0002334a", // 𣍊
+ 0x2334b: "I\f\U0002334b", // 𣍋
+ 0x2334c: "I\f\U0002334c", // 𣍌
+ 0x2334d: "I\f\U0002334d", // 𣍍
+ 0x2334e: "I\f\U0002334e", // 𣍎
+ 0x2334f: "I\r\U0002334f", // 𣍏
+ 0x23350: "I\r\U00023350", // 𣍐
+ 0x23351: "I\x0e\U00023351", // 𣍑
+ 0x23352: "I\x0e\U00023352", // 𣍒
+ 0x23353: "I\x0e\U00023353", // 𣍓
+ 0x23354: "I\x0e\U00023354", // 𣍔
+ 0x23355: "I\x0e\U00023355", // 𣍕
+ 0x23356: "I\x0f\U00023356", // 𣍖
+ 0x23357: "I\x0f\U00023357", // 𣍗
+ 0x23358: "I\x10\U00023358", // 𣍘
+ 0x23359: "I\x10\U00023359", // 𣍙
+ 0x2335a: "I\x14\U0002335a", // 𣍚
+ 0x2335b: "I\x18\U0002335b", // 𣍛
+ 0x2335c: "I\x1f\U0002335c", // 𣍜
+ 0x2335d: "J\x01\U0002335d", // 𣍝
+ 0x2335e: "J\x02\U0002335e", // 𣍞
+ 0x2335f: "J\x03\U0002335f", // 𣍟
+ 0x23360: "J\x03\U00023360", // 𣍠
+ 0x23361: "J\x03\U00023361", // 𣍡
+ 0x23362: "J\x03\U00023362", // 𣍢
+ 0x23363: "J\x03\U00023363", // 𣍣
+ 0x23364: "J\x04\U00023364", // 𣍤
+ 0x23365: "J\x05\U00023365", // 𣍥
+ 0x23366: "J\x05\U00023366", // 𣍦
+ 0x23367: "J\x05\U00023367", // 𣍧
+ 0x23368: "\x82\x05\U00023368", // 𣍨
+ 0x23369: "J\x05\U00023369", // 𣍩
+ 0x2336a: "J\x05\U0002336a", // 𣍪
+ 0x2336b: "J\x05\U0002336b", // 𣍫
+ 0x2336c: "J\x05\U0002336c", // 𣍬
+ 0x2336d: "J\x06\U0002336d", // 𣍭
+ 0x2336e: "J\x06\U0002336e", // 𣍮
+ 0x2336f: "\x82\x06\U0002336f", // 𣍯
+ 0x23370: "\x82\x06\U00023370", // 𣍰
+ 0x23371: "J\a\U00023371", // 𣍱
+ 0x23372: "J\a\U00023372", // 𣍲
+ 0x23373: "J\a\U00023373", // 𣍳
+ 0x23374: "J\a\U00023374", // 𣍴
+ 0x23375: "J\a\U00023375", // 𣍵
+ 0x23376: "J\a\U00023376", // 𣍶
+ 0x23377: "J\b\U00023377", // 𣍷
+ 0x23378: "J\b\U00023378", // 𣍸
+ 0x23379: "J\b\U00023379", // 𣍹
+ 0x2337a: "J\b\U0002337a", // 𣍺
+ 0x2337b: "J\b\U0002337b", // 𣍻
+ 0x2337c: "J\b\U0002337c", // 𣍼
+ 0x2337d: "J\b\U0002337d", // 𣍽
+ 0x2337e: "J\b\U0002337e", // 𣍾
+ 0x2337f: "J\b\U0002337f", // 𣍿
+ 0x23380: "J\b\U00023380", // 𣎀
+ 0x23381: "J\b\U00023381", // 𣎁
+ 0x23382: "J\b\U00023382", // 𣎂
+ 0x23383: "J\b\U00023383", // 𣎃
+ 0x23384: "J\t\U00023384", // 𣎄
+ 0x23385: "J\t\U00023385", // 𣎅
+ 0x23386: "J\t\U00023386", // 𣎆
+ 0x23387: "J\t\U00023387", // 𣎇
+ 0x23388: "J\t\U00023388", // 𣎈
+ 0x23389: "J\t\U00023389", // 𣎉
+ 0x2338a: "J\t\U0002338a", // 𣎊
+ 0x2338b: "J\t\U0002338b", // 𣎋
+ 0x2338c: "J\t\U0002338c", // 𣎌
+ 0x2338d: "J\n\U0002338d", // 𣎍
+ 0x2338e: "J\n\U0002338e", // 𣎎
+ 0x2338f: "J\n\U0002338f", // 𣎏
+ 0x23390: "J\n\U00023390", // 𣎐
+ 0x23391: "J\n\U00023391", // 𣎑
+ 0x23392: "J\v\U00023392", // 𣎒
+ 0x23393: "J\v\U00023393", // 𣎓
+ 0x23394: "J\v\U00023394", // 𣎔
+ 0x23395: "J\v\U00023395", // 𣎕
+ 0x23396: "J\v\U00023396", // 𣎖
+ 0x23397: "J\v\U00023397", // 𣎗
+ 0x23398: "J\v\U00023398", // 𣎘
+ 0x23399: "J\v\U00023399", // 𣎙
+ 0x2339a: "J\f\U0002339a", // 𣎚
+ 0x2339b: "J\f\U0002339b", // 𣎛
+ 0x2339c: "J\r\U0002339c", // 𣎜
+ 0x2339d: "J\f\U0002339d", // 𣎝
+ 0x2339e: "J\f\U0002339e", // 𣎞
+ 0x2339f: "J\f\U0002339f", // 𣎟
+ 0x233a0: "J\f\U000233a0", // 𣎠
+ 0x233a1: "J\f\U000233a1", // 𣎡
+ 0x233a2: "J\f\U000233a2", // 𣎢
+ 0x233a3: "J\r\U000233a3", // 𣎣
+ 0x233a4: "J\r\U000233a4", // 𣎤
+ 0x233a5: "J\r\U000233a5", // 𣎥
+ 0x233a6: "J\r\U000233a6", // 𣎦
+ 0x233a7: "J\r\U000233a7", // 𣎧
+ 0x233a8: "J\r\U000233a8", // 𣎨
+ 0x233a9: "J\x0e\U000233a9", // 𣎩
+ 0x233aa: "J\x0e\U000233aa", // 𣎪
+ 0x233ab: "J\x0e\U000233ab", // 𣎫
+ 0x233ac: "J\x0e\U000233ac", // 𣎬
+ 0x233ad: "J\x0e\U000233ad", // 𣎭
+ 0x233ae: "J\x10\U000233ae", // 𣎮
+ 0x233af: "J\x10\U000233af", // 𣎯
+ 0x233b0: "J\x12\U000233b0", // 𣎰
+ 0x233b1: "J\x13\U000233b1", // 𣎱
+ 0x233b2: "J\x14\U000233b2", // 𣎲
+ 0x233b3: "K\x00\U000233b3", // 𣎳
+ 0x233b4: "K\x00\U000233b4", // 𣎴
+ 0x233b5: "K\x01\U000233b5", // 𣎵
+ 0x233b6: "K\x01\U000233b6", // 𣎶
+ 0x233b7: "K\x01\U000233b7", // 𣎷
+ 0x233b8: "K\x02\U000233b8", // 𣎸
+ 0x233b9: "K\x02\U000233b9", // 𣎹
+ 0x233ba: "K\x02\U000233ba", // 𣎺
+ 0x233bb: "K\x02\U000233bb", // 𣎻
+ 0x233bc: "K\x02\U000233bc", // 𣎼
+ 0x233bd: "K\x02\U000233bd", // 𣎽
+ 0x233be: "K\x02\U000233be", // 𣎾
+ 0x233bf: "K\x02\U000233bf", // 𣎿
+ 0x233c0: "K\x02\U000233c0", // 𣏀
+ 0x233c1: "K\x03\U000233c1", // 𣏁
+ 0x233c2: "K\x03\U000233c2", // 𣏂
+ 0x233c3: "K\x03\U000233c3", // 𣏃
+ 0x233c4: "K\x03\U000233c4", // 𣏄
+ 0x233c5: "K\x03\U000233c5", // 𣏅
+ 0x233c6: "K\x03\U000233c6", // 𣏆
+ 0x233c7: "K\x03\U000233c7", // 𣏇
+ 0x233c8: "K\x03\U000233c8", // 𣏈
+ 0x233c9: "K\x03\U000233c9", // 𣏉
+ 0x233ca: "K\x03\U000233ca", // 𣏊
+ 0x233cb: "K\x03\U000233cb", // 𣏋
+ 0x233cc: "K\x03\U000233cc", // 𣏌
+ 0x233cd: "K\x03\U000233cd", // 𣏍
+ 0x233ce: "K\x03\U000233ce", // 𣏎
+ 0x233cf: "K\x03\U000233cf", // 𣏏
+ 0x233d0: "K\x03\U000233d0", // 𣏐
+ 0x233d1: "K\x03\U000233d1", // 𣏑
+ 0x233d2: "K\x03\U000233d2", // 𣏒
+ 0x233d3: "K\x03\U000233d3", // 𣏓
+ 0x233d4: "K\x04\U000233d4", // 𣏔
+ 0x233d5: "K\x04\U000233d5", // 𣏕
+ 0x233d6: "K\x04\U000233d6", // 𣏖
+ 0x233d7: "K\x04\U000233d7", // 𣏗
+ 0x233d8: "K\x04\U000233d8", // 𣏘
+ 0x233d9: "K\x04\U000233d9", // 𣏙
+ 0x233da: "K\x04\U000233da", // 𣏚
+ 0x233db: "K\x04\U000233db", // 𣏛
+ 0x233dc: "K\x04\U000233dc", // 𣏜
+ 0x233dd: "K\x04\U000233dd", // 𣏝
+ 0x233de: "K\x04\U000233de", // 𣏞
+ 0x233df: "K\x04\U000233df", // 𣏟
+ 0x233e0: "K\x04\U000233e0", // 𣏠
+ 0x233e1: "K\x04\U000233e1", // 𣏡
+ 0x233e2: "K\x04\U000233e2", // 𣏢
+ 0x233e3: "K\x04\U000233e3", // 𣏣
+ 0x233e4: "K\x04\U000233e4", // 𣏤
+ 0x233e5: "K\x04\U000233e5", // 𣏥
+ 0x233e6: "K\x04\U000233e6", // 𣏦
+ 0x233e7: "K\x04\U000233e7", // 𣏧
+ 0x233e8: "K\x04\U000233e8", // 𣏨
+ 0x233e9: "K\x04\U000233e9", // 𣏩
+ 0x233ea: "K\x04\U000233ea", // 𣏪
+ 0x233eb: "K\x04\U000233eb", // 𣏫
+ 0x233ec: "K\x04\U000233ec", // 𣏬
+ 0x233ed: "K\x04\U000233ed", // 𣏭
+ 0x233ee: "K\x04\U000233ee", // 𣏮
+ 0x233ef: "K\x04\U000233ef", // 𣏯
+ 0x233f0: "K\x04\U000233f0", // 𣏰
+ 0x233f1: "K\x04\U000233f1", // 𣏱
+ 0x233f2: "K\x04\U000233f2", // 𣏲
+ 0x233f3: "K\x04\U000233f3", // 𣏳
+ 0x233f4: "K\x04\U000233f4", // 𣏴
+ 0x233f5: "K\x04\U000233f5", // 𣏵
+ 0x233f6: "K\x04\U000233f6", // 𣏶
+ 0x233f7: "K\x04\U000233f7", // 𣏷
+ 0x233f8: "K\x04\U000233f8", // 𣏸
+ 0x233f9: "K\x04\U000233f9", // 𣏹
+ 0x233fa: "K\x04\U000233fa", // 𣏺
+ 0x233fb: "K\x04\U000233fb", // 𣏻
+ 0x233fc: "K\x04\U000233fc", // 𣏼
+ 0x233fd: "K\x04\U000233fd", // 𣏽
+ 0x233fe: "K\x04\U000233fe", // 𣏾
+ 0x233ff: "K\x04\U000233ff", // 𣏿
+ 0x23400: "K\x04\U00023400", // 𣐀
+ 0x23401: "K\x04\U00023401", // 𣐁
+ 0x23402: "K\x04\U00023402", // 𣐂
+ 0x23403: "K\x04\U00023403", // 𣐃
+ 0x23404: "K\x04\U00023404", // 𣐄
+ 0x23405: "K\x04\U00023405", // 𣐅
+ 0x23406: "K\x04\U00023406", // 𣐆
+ 0x23407: "K\x04\U00023407", // 𣐇
+ 0x23408: "K\x05\U00023408", // 𣐈
+ 0x23409: "K\x05\U00023409", // 𣐉
+ 0x2340a: "K\x05\U0002340a", // 𣐊
+ 0x2340b: "K\x05\U0002340b", // 𣐋
+ 0x2340c: "K\x05\U0002340c", // 𣐌
+ 0x2340d: "K\x05\U0002340d", // 𣐍
+ 0x2340e: "K\x05\U0002340e", // 𣐎
+ 0x2340f: "K\x05\U0002340f", // 𣐏
+ 0x23410: "K\x05\U00023410", // 𣐐
+ 0x23411: "K\x05\U00023411", // 𣐑
+ 0x23412: "K\x05\U00023412", // 𣐒
+ 0x23413: "K\x05\U00023413", // 𣐓
+ 0x23414: "K\x05\U00023414", // 𣐔
+ 0x23415: "K\x05\U00023415", // 𣐕
+ 0x23416: "K\x05\U00023416", // 𣐖
+ 0x23417: "K\x05\U00023417", // 𣐗
+ 0x23418: "K\x05\U00023418", // 𣐘
+ 0x23419: "K\x05\U00023419", // 𣐙
+ 0x2341a: "K\x05\U0002341a", // 𣐚
+ 0x2341b: "K\x05\U0002341b", // 𣐛
+ 0x2341c: "K\x05\U0002341c", // 𣐜
+ 0x2341d: "K\x05\U0002341d", // 𣐝
+ 0x2341e: "K\x05\U0002341e", // 𣐞
+ 0x2341f: "K\x05\U0002341f", // 𣐟
+ 0x23420: "K\x05\U00023420", // 𣐠
+ 0x23421: "K\x05\U00023421", // 𣐡
+ 0x23422: "K\x05\U00023422", // 𣐢
+ 0x23423: "K\x05\U00023423", // 𣐣
+ 0x23424: "K\x05\U00023424", // 𣐤
+ 0x23425: "K\x05\U00023425", // 𣐥
+ 0x23426: "K\x05\U00023426", // 𣐦
+ 0x23427: "K\x05\U00023427", // 𣐧
+ 0x23428: "K\x05\U00023428", // 𣐨
+ 0x23429: "K\x05\U00023429", // 𣐩
+ 0x2342a: "K\x05\U0002342a", // 𣐪
+ 0x2342b: "K\x05\U0002342b", // 𣐫
+ 0x2342c: "K\x05\U0002342c", // 𣐬
+ 0x2342d: "K\x05\U0002342d", // 𣐭
+ 0x2342e: "K\x05\U0002342e", // 𣐮
+ 0x2342f: "K\x05\U0002342f", // 𣐯
+ 0x23430: "K\x05\U00023430", // 𣐰
+ 0x23431: "K\x05\U00023431", // 𣐱
+ 0x23432: "K\x05\U00023432", // 𣐲
+ 0x23433: "K\x05\U00023433", // 𣐳
+ 0x23434: "K\x05\U00023434", // 𣐴
+ 0x23435: "K\x06\U00023435", // 𣐵
+ 0x23436: "K\x06\U00023436", // 𣐶
+ 0x23437: "K\x06\U00023437", // 𣐷
+ 0x23438: "K\x06\U00023438", // 𣐸
+ 0x23439: "K\x06\U00023439", // 𣐹
+ 0x2343a: "K\x06\U0002343a", // 𣐺
+ 0x2343b: "K\x06\U0002343b", // 𣐻
+ 0x2343c: "K\x06\U0002343c", // 𣐼
+ 0x2343d: "K\x06\U0002343d", // 𣐽
+ 0x2343e: "K\x06\U0002343e", // 𣐾
+ 0x2343f: "K\x06\U0002343f", // 𣐿
+ 0x23440: "K\x06\U00023440", // 𣑀
+ 0x23441: "K\x06\U00023441", // 𣑁
+ 0x23442: "K\x06\U00023442", // 𣑂
+ 0x23443: "K\x06\U00023443", // 𣑃
+ 0x23444: "K\x06\U00023444", // 𣑄
+ 0x23445: "K\x06\U00023445", // 𣑅
+ 0x23446: "K\x06\U00023446", // 𣑆
+ 0x23447: "K\x06\U00023447", // 𣑇
+ 0x23448: "K\x06\U00023448", // 𣑈
+ 0x23449: "K\x06\U00023449", // 𣑉
+ 0x2344a: "K\x06\U0002344a", // 𣑊
+ 0x2344b: "K\x06\U0002344b", // 𣑋
+ 0x2344c: "K\x06\U0002344c", // 𣑌
+ 0x2344d: "K\x06\U0002344d", // 𣑍
+ 0x2344e: "K\x06\U0002344e", // 𣑎
+ 0x2344f: "K\x06\U0002344f", // 𣑏
+ 0x23450: "K\x06\U00023450", // 𣑐
+ 0x23451: "K\x06\U00023451", // 𣑑
+ 0x23452: "K\x06\U00023452", // 𣑒
+ 0x23453: "K\x06\U00023453", // 𣑓
+ 0x23454: "K\x06\U00023454", // 𣑔
+ 0x23455: "K\x06\U00023455", // 𣑕
+ 0x23456: "K\x06\U00023456", // 𣑖
+ 0x23457: "K\x06\U00023457", // 𣑗
+ 0x23458: "K\x06\U00023458", // 𣑘
+ 0x23459: "K\x06\U00023459", // 𣑙
+ 0x2345a: "K\x06\U0002345a", // 𣑚
+ 0x2345b: "K\x06\U0002345b", // 𣑛
+ 0x2345c: "K\x06\U0002345c", // 𣑜
+ 0x2345d: "K\x06\U0002345d", // 𣑝
+ 0x2345e: "K\x06\U0002345e", // 𣑞
+ 0x2345f: "K\x06\U0002345f", // 𣑟
+ 0x23460: "K\x06\U00023460", // 𣑠
+ 0x23461: "K\x06\U00023461", // 𣑡
+ 0x23462: "K\x06\U00023462", // 𣑢
+ 0x23463: "K\x06\U00023463", // 𣑣
+ 0x23464: "K\x06\U00023464", // 𣑤
+ 0x23465: "K\x06\U00023465", // 𣑥
+ 0x23466: "K\x06\U00023466", // 𣑦
+ 0x23467: " \a\U00023467", // 𣑧
+ 0x23468: "K\x06\U00023468", // 𣑨
+ 0x23469: "K\x06\U00023469", // 𣑩
+ 0x2346a: "K\x06\U0002346a", // 𣑪
+ 0x2346b: "K\x06\U0002346b", // 𣑫
+ 0x2346c: "K\x06\U0002346c", // 𣑬
+ 0x2346d: "K\x06\U0002346d", // 𣑭
+ 0x2346e: "K\x06\U0002346e", // 𣑮
+ 0x2346f: "K\x06\U0002346f", // 𣑯
+ 0x23470: "K\x06\U00023470", // 𣑰
+ 0x23471: "K\x06\U00023471", // 𣑱
+ 0x23472: "K\x06\U00023472", // 𣑲
+ 0x23473: "K\x06\U00023473", // 𣑳
+ 0x23474: "K\x06\U00023474", // 𣑴
+ 0x23475: "K\x06\U00023475", // 𣑵
+ 0x23476: "K\x06\U00023476", // 𣑶
+ 0x23477: "K\x06\U00023477", // 𣑷
+ 0x23478: "K\x06\U00023478", // 𣑸
+ 0x23479: "K\x06\U00023479", // 𣑹
+ 0x2347a: "K\x06\U0002347a", // 𣑺
+ 0x2347b: "K\x06\U0002347b", // 𣑻
+ 0x2347c: "K\x06\U0002347c", // 𣑼
+ 0x2347d: "K\x06\U0002347d", // 𣑽
+ 0x2347e: "K\x06\U0002347e", // 𣑾
+ 0x2347f: "K\a\U0002347f", // 𣑿
+ 0x23480: "K\a\U00023480", // 𣒀
+ 0x23481: "K\a\U00023481", // 𣒁
+ 0x23482: "K\a\U00023482", // 𣒂
+ 0x23483: "K\a\U00023483", // 𣒃
+ 0x23484: "K\a\U00023484", // 𣒄
+ 0x23485: "K\a\U00023485", // 𣒅
+ 0x23486: "K\a\U00023486", // 𣒆
+ 0x23487: "K\a\U00023487", // 𣒇
+ 0x23488: "K\a\U00023488", // 𣒈
+ 0x23489: "K\a\U00023489", // 𣒉
+ 0x2348a: "K\a\U0002348a", // 𣒊
+ 0x2348b: "K\a\U0002348b", // 𣒋
+ 0x2348c: "K\a\U0002348c", // 𣒌
+ 0x2348d: "K\a\U0002348d", // 𣒍
+ 0x2348e: "K\a\U0002348e", // 𣒎
+ 0x2348f: "K\a\U0002348f", // 𣒏
+ 0x23490: "K\a\U00023490", // 𣒐
+ 0x23491: "K\a\U00023491", // 𣒑
+ 0x23492: "K\a\U00023492", // 𣒒
+ 0x23493: "K\a\U00023493", // 𣒓
+ 0x23494: "K\a\U00023494", // 𣒔
+ 0x23495: "K\a\U00023495", // 𣒕
+ 0x23496: "K\a\U00023496", // 𣒖
+ 0x23497: "K\a\U00023497", // 𣒗
+ 0x23498: "K\a\U00023498", // 𣒘
+ 0x23499: "K\a\U00023499", // 𣒙
+ 0x2349a: "K\a\U0002349a", // 𣒚
+ 0x2349b: "K\a\U0002349b", // 𣒛
+ 0x2349c: "K\a\U0002349c", // 𣒜
+ 0x2349d: "K\a\U0002349d", // 𣒝
+ 0x2349e: "K\a\U0002349e", // 𣒞
+ 0x2349f: "K\a\U0002349f", // 𣒟
+ 0x234a0: "K\a\U000234a0", // 𣒠
+ 0x234a1: "K\a\U000234a1", // 𣒡
+ 0x234a2: "K\a\U000234a2", // 𣒢
+ 0x234a3: "K\a\U000234a3", // 𣒣
+ 0x234a4: "K\a\U000234a4", // 𣒤
+ 0x234a5: "K\a\U000234a5", // 𣒥
+ 0x234a6: "K\a\U000234a6", // 𣒦
+ 0x234a7: "K\a\U000234a7", // 𣒧
+ 0x234a8: "K\a\U000234a8", // 𣒨
+ 0x234a9: "K\a\U000234a9", // 𣒩
+ 0x234aa: "K\a\U000234aa", // 𣒪
+ 0x234ab: "K\a\U000234ab", // 𣒫
+ 0x234ac: "K\a\U000234ac", // 𣒬
+ 0x234ad: "K\a\U000234ad", // 𣒭
+ 0x234ae: "K\a\U000234ae", // 𣒮
+ 0x234af: "K\a\U000234af", // 𣒯
+ 0x234b0: "K\a\U000234b0", // 𣒰
+ 0x234b1: "K\a\U000234b1", // 𣒱
+ 0x234b2: "K\a\U000234b2", // 𣒲
+ 0x234b3: "K\a\U000234b3", // 𣒳
+ 0x234b4: "K\a\U000234b4", // 𣒴
+ 0x234b5: "K\a\U000234b5", // 𣒵
+ 0x234b6: "K\a\U000234b6", // 𣒶
+ 0x234b7: "K\a\U000234b7", // 𣒷
+ 0x234b8: "K\a\U000234b8", // 𣒸
+ 0x234b9: "K\a\U000234b9", // 𣒹
+ 0x234ba: "K\a\U000234ba", // 𣒺
+ 0x234bb: "K\a\U000234bb", // 𣒻
+ 0x234bc: "K\a\U000234bc", // 𣒼
+ 0x234bd: "K\a\U000234bd", // 𣒽
+ 0x234be: "K\a\U000234be", // 𣒾
+ 0x234bf: "K\a\U000234bf", // 𣒿
+ 0x234c0: "K\a\U000234c0", // 𣓀
+ 0x234c1: "K\b\U000234c1", // 𣓁
+ 0x234c2: "K\b\U000234c2", // 𣓂
+ 0x234c3: "K\b\U000234c3", // 𣓃
+ 0x234c4: "K\b\U000234c4", // 𣓄
+ 0x234c5: "K\b\U000234c5", // 𣓅
+ 0x234c6: "K\b\U000234c6", // 𣓆
+ 0x234c7: "K\b\U000234c7", // 𣓇
+ 0x234c8: "K\b\U000234c8", // 𣓈
+ 0x234c9: "K\b\U000234c9", // 𣓉
+ 0x234ca: "K\b\U000234ca", // 𣓊
+ 0x234cb: "K\b\U000234cb", // 𣓋
+ 0x234cc: "K\b\U000234cc", // 𣓌
+ 0x234cd: "K\b\U000234cd", // 𣓍
+ 0x234ce: "K\b\U000234ce", // 𣓎
+ 0x234cf: "K\b\U000234cf", // 𣓏
+ 0x234d0: "K\b\U000234d0", // 𣓐
+ 0x234d1: "K\b\U000234d1", // 𣓑
+ 0x234d2: "K\b\U000234d2", // 𣓒
+ 0x234d3: "K\b\U000234d3", // 𣓓
+ 0x234d4: "K\b\U000234d4", // 𣓔
+ 0x234d5: "K\b\U000234d5", // 𣓕
+ 0x234d6: "K\b\U000234d6", // 𣓖
+ 0x234d7: "K\b\U000234d7", // 𣓗
+ 0x234d8: "K\b\U000234d8", // 𣓘
+ 0x234d9: "K\b\U000234d9", // 𣓙
+ 0x234da: "K\b\U000234da", // 𣓚
+ 0x234db: "K\b\U000234db", // 𣓛
+ 0x234dc: "K\b\U000234dc", // 𣓜
+ 0x234dd: "K\b\U000234dd", // 𣓝
+ 0x234de: "K\b\U000234de", // 𣓞
+ 0x234df: "K\b\U000234df", // 𣓟
+ 0x234e0: "K\b\U000234e0", // 𣓠
+ 0x234e1: "K\b\U000234e1", // 𣓡
+ 0x234e2: "K\b\U000234e2", // 𣓢
+ 0x234e3: "K\b\U000234e3", // 𣓣
+ 0x234e4: "K\b\U000234e4", // 𣓤
+ 0x234e5: "K\b\U000234e5", // 𣓥
+ 0x234e6: "K\b\U000234e6", // 𣓦
+ 0x234e7: "K\b\U000234e7", // 𣓧
+ 0x234e8: "K\b\U000234e8", // 𣓨
+ 0x234e9: "K\b\U000234e9", // 𣓩
+ 0x234ea: "K\b\U000234ea", // 𣓪
+ 0x234eb: "K\b\U000234eb", // 𣓫
+ 0x234ec: "K\b\U000234ec", // 𣓬
+ 0x234ed: "K\b\U000234ed", // 𣓭
+ 0x234ee: "K\b\U000234ee", // 𣓮
+ 0x234ef: "K\b\U000234ef", // 𣓯
+ 0x234f0: "K\b\U000234f0", // 𣓰
+ 0x234f1: "K\b\U000234f1", // 𣓱
+ 0x234f2: "K\b\U000234f2", // 𣓲
+ 0x234f3: "K\b\U000234f3", // 𣓳
+ 0x234f4: "K\b\U000234f4", // 𣓴
+ 0x234f5: "K\b\U000234f5", // 𣓵
+ 0x234f6: "K\b\U000234f6", // 𣓶
+ 0x234f7: "K\b\U000234f7", // 𣓷
+ 0x234f8: "K\b\U000234f8", // 𣓸
+ 0x234f9: "K\b\U000234f9", // 𣓹
+ 0x234fa: "K\b\U000234fa", // 𣓺
+ 0x234fb: "K\b\U000234fb", // 𣓻
+ 0x234fc: "K\b\U000234fc", // 𣓼
+ 0x234fd: "K\b\U000234fd", // 𣓽
+ 0x234fe: "K\b\U000234fe", // 𣓾
+ 0x234ff: "K\b\U000234ff", // 𣓿
+ 0x23500: "K\b\U00023500", // 𣔀
+ 0x23501: "K\b\U00023501", // 𣔁
+ 0x23502: "K\b\U00023502", // 𣔂
+ 0x23503: "K\b\U00023503", // 𣔃
+ 0x23504: "K\b\U00023504", // 𣔄
+ 0x23505: "K\b\U00023505", // 𣔅
+ 0x23506: "K\b\U00023506", // 𣔆
+ 0x23507: "K\b\U00023507", // 𣔇
+ 0x23508: "K\b\U00023508", // 𣔈
+ 0x23509: "K\b\U00023509", // 𣔉
+ 0x2350a: "K\b\U0002350a", // 𣔊
+ 0x2350b: "K\b\U0002350b", // 𣔋
+ 0x2350c: "K\b\U0002350c", // 𣔌
+ 0x2350d: "K\b\U0002350d", // 𣔍
+ 0x2350e: "K\b\U0002350e", // 𣔎
+ 0x2350f: "K\b\U0002350f", // 𣔏
+ 0x23510: "K\b\U00023510", // 𣔐
+ 0x23511: "K\b\U00023511", // 𣔑
+ 0x23512: "K\b\U00023512", // 𣔒
+ 0x23513: "K\b\U00023513", // 𣔓
+ 0x23514: "K\b\U00023514", // 𣔔
+ 0x23515: "K\b\U00023515", // 𣔕
+ 0x23516: "K\b\U00023516", // 𣔖
+ 0x23517: "K\b\U00023517", // 𣔗
+ 0x23518: "K\b\U00023518", // 𣔘
+ 0x23519: "K\b\U00023519", // 𣔙
+ 0x2351a: "K\b\U0002351a", // 𣔚
+ 0x2351b: "K\b\U0002351b", // 𣔛
+ 0x2351c: "K\b\U0002351c", // 𣔜
+ 0x2351d: "K\b\U0002351d", // 𣔝
+ 0x2351e: "K\b\U0002351e", // 𣔞
+ 0x2351f: "K\b\U0002351f", // 𣔟
+ 0x23520: "K\b\U00023520", // 𣔠
+ 0x23521: "K\b\U00023521", // 𣔡
+ 0x23522: "K\b\U00023522", // 𣔢
+ 0x23523: "K\b\U00023523", // 𣔣
+ 0x23524: "K\b\U00023524", // 𣔤
+ 0x23525: "K\b\U00023525", // 𣔥
+ 0x23526: "K\b\U00023526", // 𣔦
+ 0x23527: "K\b\U00023527", // 𣔧
+ 0x23528: "K\b\U00023528", // 𣔨
+ 0x23529: "K\b\U00023529", // 𣔩
+ 0x2352a: "K\b\U0002352a", // 𣔪
+ 0x2352b: "K\b\U0002352b", // 𣔫
+ 0x2352c: "K\b\U0002352c", // 𣔬
+ 0x2352d: "K\b\U0002352d", // 𣔭
+ 0x2352e: "K\b\U0002352e", // 𣔮
+ 0x2352f: "K\b\U0002352f", // 𣔯
+ 0x23530: "K\b\U00023530", // 𣔰
+ 0x23531: "K\t\U00023531", // 𣔱
+ 0x23532: "K\t\U00023532", // 𣔲
+ 0x23533: "K\t\U00023533", // 𣔳
+ 0x23534: "K\t\U00023534", // 𣔴
+ 0x23535: "K\t\U00023535", // 𣔵
+ 0x23536: "K\t\U00023536", // 𣔶
+ 0x23537: "K\t\U00023537", // 𣔷
+ 0x23538: "K\t\U00023538", // 𣔸
+ 0x23539: "K\t\U00023539", // 𣔹
+ 0x2353a: "K\t\U0002353a", // 𣔺
+ 0x2353b: "K\t\U0002353b", // 𣔻
+ 0x2353c: "K\t\U0002353c", // 𣔼
+ 0x2353d: "K\t\U0002353d", // 𣔽
+ 0x2353e: "K\t\U0002353e", // 𣔾
+ 0x2353f: "K\t\U0002353f", // 𣔿
+ 0x23540: "K\t\U00023540", // 𣕀
+ 0x23541: "K\t\U00023541", // 𣕁
+ 0x23542: "K\t\U00023542", // 𣕂
+ 0x23543: "K\t\U00023543", // 𣕃
+ 0x23544: "K\t\U00023544", // 𣕄
+ 0x23545: "K\t\U00023545", // 𣕅
+ 0x23546: "K\t\U00023546", // 𣕆
+ 0x23547: "K\t\U00023547", // 𣕇
+ 0x23548: "K\t\U00023548", // 𣕈
+ 0x23549: "K\t\U00023549", // 𣕉
+ 0x2354a: "K\t\U0002354a", // 𣕊
+ 0x2354b: "K\t\U0002354b", // 𣕋
+ 0x2354c: "K\t\U0002354c", // 𣕌
+ 0x2354d: "K\t\U0002354d", // 𣕍
+ 0x2354e: "K\t\U0002354e", // 𣕎
+ 0x2354f: "K\t\U0002354f", // 𣕏
+ 0x23550: "K\t\U00023550", // 𣕐
+ 0x23551: "K\t\U00023551", // 𣕑
+ 0x23552: "K\t\U00023552", // 𣕒
+ 0x23553: "K\t\U00023553", // 𣕓
+ 0x23554: "K\t\U00023554", // 𣕔
+ 0x23555: "K\t\U00023555", // 𣕕
+ 0x23556: "K\t\U00023556", // 𣕖
+ 0x23557: "K\t\U00023557", // 𣕗
+ 0x23558: "K\t\U00023558", // 𣕘
+ 0x23559: "K\t\U00023559", // 𣕙
+ 0x2355a: "K\t\U0002355a", // 𣕚
+ 0x2355b: "K\t\U0002355b", // 𣕛
+ 0x2355c: "K\t\U0002355c", // 𣕜
+ 0x2355d: "K\t\U0002355d", // 𣕝
+ 0x2355e: "K\t\U0002355e", // 𣕞
+ 0x2355f: "K\t\U0002355f", // 𣕟
+ 0x23560: "K\t\U00023560", // 𣕠
+ 0x23561: "K\t\U00023561", // 𣕡
+ 0x23562: "K\t\U00023562", // 𣕢
+ 0x23563: "K\t\U00023563", // 𣕣
+ 0x23564: "K\n\U00023564", // 𣕤
+ 0x23565: "K\t\U00023565", // 𣕥
+ 0x23566: "K\t\U00023566", // 𣕦
+ 0x23567: "K\t\U00023567", // 𣕧
+ 0x23568: "K\t\U00023568", // 𣕨
+ 0x23569: "K\t\U00023569", // 𣕩
+ 0x2356a: "K\t\U0002356a", // 𣕪
+ 0x2356b: "K\t\U0002356b", // 𣕫
+ 0x2356c: "K\t\U0002356c", // 𣕬
+ 0x2356d: "K\t\U0002356d", // 𣕭
+ 0x2356e: "K\t\U0002356e", // 𣕮
+ 0x2356f: "K\t\U0002356f", // 𣕯
+ 0x23570: "K\t\U00023570", // 𣕰
+ 0x23571: "K\t\U00023571", // 𣕱
+ 0x23572: "K\t\U00023572", // 𣕲
+ 0x23573: "K\t\U00023573", // 𣕳
+ 0x23574: "K\t\U00023574", // 𣕴
+ 0x23575: "K\t\U00023575", // 𣕵
+ 0x23576: "K\t\U00023576", // 𣕶
+ 0x23577: "K\t\U00023577", // 𣕷
+ 0x23578: "K\t\U00023578", // 𣕸
+ 0x23579: "K\t\U00023579", // 𣕹
+ 0x2357a: "K\t\U0002357a", // 𣕺
+ 0x2357b: "K\t\U0002357b", // 𣕻
+ 0x2357c: "K\t\U0002357c", // 𣕼
+ 0x2357d: "K\t\U0002357d", // 𣕽
+ 0x2357e: "K\t\U0002357e", // 𣕾
+ 0x2357f: "K\t\U0002357f", // 𣕿
+ 0x23580: "K\t\U00023580", // 𣖀
+ 0x23581: "K\t\U00023581", // 𣖁
+ 0x23582: "K\t\U00023582", // 𣖂
+ 0x23583: "K\t\U00023583", // 𣖃
+ 0x23584: "K\t\U00023584", // 𣖄
+ 0x23585: "K\t\U00023585", // 𣖅
+ 0x23586: "K\t\U00023586", // 𣖆
+ 0x23587: "K\t\U00023587", // 𣖇
+ 0x23588: "K\t\U00023588", // 𣖈
+ 0x23589: "K\t\U00023589", // 𣖉
+ 0x2358a: "K\t\U0002358a", // 𣖊
+ 0x2358b: "K\t\U0002358b", // 𣖋
+ 0x2358c: "K\t\U0002358c", // 𣖌
+ 0x2358d: "K\t\U0002358d", // 𣖍
+ 0x2358e: "K\t\U0002358e", // 𣖎
+ 0x2358f: "K\t\U0002358f", // 𣖏
+ 0x23590: "K\t\U00023590", // 𣖐
+ 0x23591: "K\t\U00023591", // 𣖑
+ 0x23592: "K\t\U00023592", // 𣖒
+ 0x23593: "K\t\U00023593", // 𣖓
+ 0x23594: "K\t\U00023594", // 𣖔
+ 0x23595: "K\t\U00023595", // 𣖕
+ 0x23596: "K\t\U00023596", // 𣖖
+ 0x23597: "K\t\U00023597", // 𣖗
+ 0x23598: "K\t\U00023598", // 𣖘
+ 0x23599: "K\t\U00023599", // 𣖙
+ 0x2359a: "K\t\U0002359a", // 𣖚
+ 0x2359b: "K\t\U0002359b", // 𣖛
+ 0x2359c: "K\t\U0002359c", // 𣖜
+ 0x2359d: "K\t\U0002359d", // 𣖝
+ 0x2359e: "K\t\U0002359e", // 𣖞
+ 0x2359f: "K\t\U0002359f", // 𣖟
+ 0x235a0: "K\t\U000235a0", // 𣖠
+ 0x235a1: "K\t\U000235a1", // 𣖡
+ 0x235a2: "K\t\U000235a2", // 𣖢
+ 0x235a3: "K\t\U000235a3", // 𣖣
+ 0x235a4: "K\t\U000235a4", // 𣖤
+ 0x235a5: "K\t\U000235a5", // 𣖥
+ 0x235a6: "K\t\U000235a6", // 𣖦
+ 0x235a7: "K\t\U000235a7", // 𣖧
+ 0x235a8: "K\t\U000235a8", // 𣖨
+ 0x235a9: "K\t\U000235a9", // 𣖩
+ 0x235aa: "K\n\U000235aa", // 𣖪
+ 0x235ab: "K\n\U000235ab", // 𣖫
+ 0x235ac: "K\n\U000235ac", // 𣖬
+ 0x235ad: "K\n\U000235ad", // 𣖭
+ 0x235ae: "K\n\U000235ae", // 𣖮
+ 0x235af: "K\n\U000235af", // 𣖯
+ 0x235b0: "K\n\U000235b0", // 𣖰
+ 0x235b1: "K\n\U000235b1", // 𣖱
+ 0x235b2: "K\n\U000235b2", // 𣖲
+ 0x235b3: "K\n\U000235b3", // 𣖳
+ 0x235b4: "K\n\U000235b4", // 𣖴
+ 0x235b5: "K\n\U000235b5", // 𣖵
+ 0x235b6: "K\n\U000235b6", // 𣖶
+ 0x235b7: "K\n\U000235b7", // 𣖷
+ 0x235b8: "K\n\U000235b8", // 𣖸
+ 0x235b9: "K\n\U000235b9", // 𣖹
+ 0x235ba: "K\n\U000235ba", // 𣖺
+ 0x235bb: "K\n\U000235bb", // 𣖻
+ 0x235bc: "K\n\U000235bc", // 𣖼
+ 0x235bd: "K\n\U000235bd", // 𣖽
+ 0x235be: "K\n\U000235be", // 𣖾
+ 0x235bf: "K\n\U000235bf", // 𣖿
+ 0x235c0: "K\n\U000235c0", // 𣗀
+ 0x235c1: "K\n\U000235c1", // 𣗁
+ 0x235c2: "K\n\U000235c2", // 𣗂
+ 0x235c3: "K\n\U000235c3", // 𣗃
+ 0x235c4: "K\n\U000235c4", // 𣗄
+ 0x235c5: "K\n\U000235c5", // 𣗅
+ 0x235c6: "K\n\U000235c6", // 𣗆
+ 0x235c7: "K\n\U000235c7", // 𣗇
+ 0x235c8: "K\n\U000235c8", // 𣗈
+ 0x235c9: "K\n\U000235c9", // 𣗉
+ 0x235ca: "K\n\U000235ca", // 𣗊
+ 0x235cb: "K\n\U000235cb", // 𣗋
+ 0x235cc: "K\n\U000235cc", // 𣗌
+ 0x235cd: "K\n\U000235cd", // 𣗍
+ 0x235ce: "K\n\U000235ce", // 𣗎
+ 0x235cf: "K\n\U000235cf", // 𣗏
+ 0x235d0: "K\n\U000235d0", // 𣗐
+ 0x235d1: "K\n\U000235d1", // 𣗑
+ 0x235d2: "K\n\U000235d2", // 𣗒
+ 0x235d3: "K\n\U000235d3", // 𣗓
+ 0x235d4: "K\n\U000235d4", // 𣗔
+ 0x235d5: "K\n\U000235d5", // 𣗕
+ 0x235d6: "K\n\U000235d6", // 𣗖
+ 0x235d7: "K\n\U000235d7", // 𣗗
+ 0x235d8: "K\n\U000235d8", // 𣗘
+ 0x235d9: "K\n\U000235d9", // 𣗙
+ 0x235da: "K\n\U000235da", // 𣗚
+ 0x235db: "K\n\U000235db", // 𣗛
+ 0x235dc: "K\n\U000235dc", // 𣗜
+ 0x235dd: "K\n\U000235dd", // 𣗝
+ 0x235de: "K\n\U000235de", // 𣗞
+ 0x235df: "K\n\U000235df", // 𣗟
+ 0x235e0: "K\n\U000235e0", // 𣗠
+ 0x235e1: "K\n\U000235e1", // 𣗡
+ 0x235e2: "K\n\U000235e2", // 𣗢
+ 0x235e3: "K\n\U000235e3", // 𣗣
+ 0x235e4: "K\n\U000235e4", // 𣗤
+ 0x235e5: "K\n\U000235e5", // 𣗥
+ 0x235e6: "K\n\U000235e6", // 𣗦
+ 0x235e7: "K\n\U000235e7", // 𣗧
+ 0x235e8: "K\n\U000235e8", // 𣗨
+ 0x235e9: "K\n\U000235e9", // 𣗩
+ 0x235ea: "K\n\U000235ea", // 𣗪
+ 0x235eb: "K\n\U000235eb", // 𣗫
+ 0x235ec: "K\n\U000235ec", // 𣗬
+ 0x235ed: "K\n\U000235ed", // 𣗭
+ 0x235ee: "K\n\U000235ee", // 𣗮
+ 0x235ef: "K\n\U000235ef", // 𣗯
+ 0x235f0: "K\n\U000235f0", // 𣗰
+ 0x235f1: "K\n\U000235f1", // 𣗱
+ 0x235f2: "K\n\U000235f2", // 𣗲
+ 0x235f3: "K\n\U000235f3", // 𣗳
+ 0x235f4: "K\n\U000235f4", // 𣗴
+ 0x235f5: "K\n\U000235f5", // 𣗵
+ 0x235f6: "K\n\U000235f6", // 𣗶
+ 0x235f7: "K\n\U000235f7", // 𣗷
+ 0x235f8: "K\n\U000235f8", // 𣗸
+ 0x235f9: "K\n\U000235f9", // 𣗹
+ 0x235fa: "K\n\U000235fa", // 𣗺
+ 0x235fb: "K\n\U000235fb", // 𣗻
+ 0x235fc: "K\n\U000235fc", // 𣗼
+ 0x235fd: "K\n\U000235fd", // 𣗽
+ 0x235fe: "K\n\U000235fe", // 𣗾
+ 0x235ff: "K\n\U000235ff", // 𣗿
+ 0x23600: "K\n\U00023600", // 𣘀
+ 0x23601: "K\n\U00023601", // 𣘁
+ 0x23602: "K\n\U00023602", // 𣘂
+ 0x23603: "K\n\U00023603", // 𣘃
+ 0x23604: "K\n\U00023604", // 𣘄
+ 0x23605: "K\n\U00023605", // 𣘅
+ 0x23606: "K\n\U00023606", // 𣘆
+ 0x23607: "K\n\U00023607", // 𣘇
+ 0x23608: "K\n\U00023608", // 𣘈
+ 0x23609: "K\n\U00023609", // 𣘉
+ 0x2360a: "K\n\U0002360a", // 𣘊
+ 0x2360b: "K\n\U0002360b", // 𣘋
+ 0x2360c: "K\n\U0002360c", // 𣘌
+ 0x2360d: "K\n\U0002360d", // 𣘍
+ 0x2360e: "K\n\U0002360e", // 𣘎
+ 0x2360f: "K\n\U0002360f", // 𣘏
+ 0x23610: "K\n\U00023610", // 𣘐
+ 0x23611: "K\n\U00023611", // 𣘑
+ 0x23612: "K\n\U00023612", // 𣘒
+ 0x23613: "K\n\U00023613", // 𣘓
+ 0x23614: "K\n\U00023614", // 𣘔
+ 0x23615: "K\v\U00023615", // 𣘕
+ 0x23616: "K\v\U00023616", // 𣘖
+ 0x23617: "K\v\U00023617", // 𣘗
+ 0x23618: "K\v\U00023618", // 𣘘
+ 0x23619: "K\v\U00023619", // 𣘙
+ 0x2361a: "K\v\U0002361a", // 𣘚
+ 0x2361b: "K\v\U0002361b", // 𣘛
+ 0x2361c: "K\v\U0002361c", // 𣘜
+ 0x2361d: "K\v\U0002361d", // 𣘝
+ 0x2361e: "K\v\U0002361e", // 𣘞
+ 0x2361f: "K\v\U0002361f", // 𣘟
+ 0x23620: "K\v\U00023620", // 𣘠
+ 0x23621: "K\v\U00023621", // 𣘡
+ 0x23622: "K\v\U00023622", // 𣘢
+ 0x23623: "K\v\U00023623", // 𣘣
+ 0x23624: "K\v\U00023624", // 𣘤
+ 0x23625: "K\v\U00023625", // 𣘥
+ 0x23626: "K\v\U00023626", // 𣘦
+ 0x23627: "K\v\U00023627", // 𣘧
+ 0x23628: "K\v\U00023628", // 𣘨
+ 0x23629: "K\v\U00023629", // 𣘩
+ 0x2362a: "K\v\U0002362a", // 𣘪
+ 0x2362b: "K\v\U0002362b", // 𣘫
+ 0x2362c: "K\v\U0002362c", // 𣘬
+ 0x2362d: "K\v\U0002362d", // 𣘭
+ 0x2362e: "K\v\U0002362e", // 𣘮
+ 0x2362f: "K\v\U0002362f", // 𣘯
+ 0x23630: "K\v\U00023630", // 𣘰
+ 0x23631: "K\v\U00023631", // 𣘱
+ 0x23632: "K\v\U00023632", // 𣘲
+ 0x23633: "K\v\U00023633", // 𣘳
+ 0x23634: "K\v\U00023634", // 𣘴
+ 0x23635: "K\v\U00023635", // 𣘵
+ 0x23636: "K\v\U00023636", // 𣘶
+ 0x23637: "K\v\U00023637", // 𣘷
+ 0x23638: "K\v\U00023638", // 𣘸
+ 0x23639: "K\v\U00023639", // 𣘹
+ 0x2363a: "K\v\U0002363a", // 𣘺
+ 0x2363b: "K\v\U0002363b", // 𣘻
+ 0x2363c: "K\v\U0002363c", // 𣘼
+ 0x2363d: "K\v\U0002363d", // 𣘽
+ 0x2363e: "K\v\U0002363e", // 𣘾
+ 0x2363f: "K\v\U0002363f", // 𣘿
+ 0x23640: "K\v\U00023640", // 𣙀
+ 0x23641: "K\v\U00023641", // 𣙁
+ 0x23642: "K\v\U00023642", // 𣙂
+ 0x23643: "K\v\U00023643", // 𣙃
+ 0x23644: "K\v\U00023644", // 𣙄
+ 0x23645: "K\v\U00023645", // 𣙅
+ 0x23646: "K\v\U00023646", // 𣙆
+ 0x23647: "K\v\U00023647", // 𣙇
+ 0x23648: "K\v\U00023648", // 𣙈
+ 0x23649: "K\v\U00023649", // 𣙉
+ 0x2364a: "K\v\U0002364a", // 𣙊
+ 0x2364b: "K\v\U0002364b", // 𣙋
+ 0x2364c: "K\v\U0002364c", // 𣙌
+ 0x2364d: "K\v\U0002364d", // 𣙍
+ 0x2364e: "K\v\U0002364e", // 𣙎
+ 0x2364f: "K\v\U0002364f", // 𣙏
+ 0x23650: "K\v\U00023650", // 𣙐
+ 0x23651: "K\v\U00023651", // 𣙑
+ 0x23652: "K\f\U00023652", // 𣙒
+ 0x23653: "K\v\U00023653", // 𣙓
+ 0x23654: "K\v\U00023654", // 𣙔
+ 0x23655: "K\v\U00023655", // 𣙕
+ 0x23656: "K\v\U00023656", // 𣙖
+ 0x23657: "K\v\U00023657", // 𣙗
+ 0x23658: "K\v\U00023658", // 𣙘
+ 0x23659: "K\v\U00023659", // 𣙙
+ 0x2365a: "K\v\U0002365a", // 𣙚
+ 0x2365b: "K\v\U0002365b", // 𣙛
+ 0x2365c: "K\v\U0002365c", // 𣙜
+ 0x2365d: "K\v\U0002365d", // 𣙝
+ 0x2365e: "K\v\U0002365e", // 𣙞
+ 0x2365f: "K\v\U0002365f", // 𣙟
+ 0x23660: "K\v\U00023660", // 𣙠
+ 0x23661: "K\v\U00023661", // 𣙡
+ 0x23662: "K\v\U00023662", // 𣙢
+ 0x23663: "K\v\U00023663", // 𣙣
+ 0x23664: "K\v\U00023664", // 𣙤
+ 0x23665: "K\v\U00023665", // 𣙥
+ 0x23666: "K\v\U00023666", // 𣙦
+ 0x23667: "K\v\U00023667", // 𣙧
+ 0x23668: "K\v\U00023668", // 𣙨
+ 0x23669: "K\v\U00023669", // 𣙩
+ 0x2366a: "K\v\U0002366a", // 𣙪
+ 0x2366b: "K\v\U0002366b", // 𣙫
+ 0x2366c: "K\v\U0002366c", // 𣙬
+ 0x2366d: "K\v\U0002366d", // 𣙭
+ 0x2366e: "K\v\U0002366e", // 𣙮
+ 0x2366f: "K\v\U0002366f", // 𣙯
+ 0x23670: "K\v\U00023670", // 𣙰
+ 0x23671: "K\v\U00023671", // 𣙱
+ 0x23672: "K\v\U00023672", // 𣙲
+ 0x23673: "K\v\U00023673", // 𣙳
+ 0x23674: "K\v\U00023674", // 𣙴
+ 0x23675: "K\v\U00023675", // 𣙵
+ 0x23676: "K\v\U00023676", // 𣙶
+ 0x23677: "K\v\U00023677", // 𣙷
+ 0x23678: "K\v\U00023678", // 𣙸
+ 0x23679: "K\v\U00023679", // 𣙹
+ 0x2367a: "K\v\U0002367a", // 𣙺
+ 0x2367b: "K\f\U0002367b", // 𣙻
+ 0x2367c: "K\f\U0002367c", // 𣙼
+ 0x2367d: "K\f\U0002367d", // 𣙽
+ 0x2367e: "K\f\U0002367e", // 𣙾
+ 0x2367f: "K\f\U0002367f", // 𣙿
+ 0x23680: "K\f\U00023680", // 𣚀
+ 0x23681: "K\f\U00023681", // 𣚁
+ 0x23682: "K\f\U00023682", // 𣚂
+ 0x23683: "K\f\U00023683", // 𣚃
+ 0x23684: "K\f\U00023684", // 𣚄
+ 0x23685: "K\f\U00023685", // 𣚅
+ 0x23686: "K\f\U00023686", // 𣚆
+ 0x23687: "K\f\U00023687", // 𣚇
+ 0x23688: "K\f\U00023688", // 𣚈
+ 0x23689: "K\f\U00023689", // 𣚉
+ 0x2368a: "K\f\U0002368a", // 𣚊
+ 0x2368b: "K\f\U0002368b", // 𣚋
+ 0x2368c: "K\f\U0002368c", // 𣚌
+ 0x2368d: "K\f\U0002368d", // 𣚍
+ 0x2368e: "K\f\U0002368e", // 𣚎
+ 0x2368f: "K\f\U0002368f", // 𣚏
+ 0x23690: "K\f\U00023690", // 𣚐
+ 0x23691: "K\f\U00023691", // 𣚑
+ 0x23692: "K\f\U00023692", // 𣚒
+ 0x23693: "K\f\U00023693", // 𣚓
+ 0x23694: "K\f\U00023694", // 𣚔
+ 0x23695: "K\f\U00023695", // 𣚕
+ 0x23696: "K\f\U00023696", // 𣚖
+ 0x23697: "K\f\U00023697", // 𣚗
+ 0x23698: "K\f\U00023698", // 𣚘
+ 0x23699: "K\f\U00023699", // 𣚙
+ 0x2369a: "K\f\U0002369a", // 𣚚
+ 0x2369b: "K\f\U0002369b", // 𣚛
+ 0x2369c: "K\f\U0002369c", // 𣚜
+ 0x2369d: "K\f\U0002369d", // 𣚝
+ 0x2369e: "K\f\U0002369e", // 𣚞
+ 0x2369f: "K\f\U0002369f", // 𣚟
+ 0x236a0: "K\f\U000236a0", // 𣚠
+ 0x236a1: "K\f\U000236a1", // 𣚡
+ 0x236a2: "K\f\U000236a2", // 𣚢
+ 0x236a3: "K\f\U000236a3", // 𣚣
+ 0x236a4: "K\f\U000236a4", // 𣚤
+ 0x236a5: "K\f\U000236a5", // 𣚥
+ 0x236a6: "K\f\U000236a6", // 𣚦
+ 0x236a7: "K\f\U000236a7", // 𣚧
+ 0x236a8: "K\f\U000236a8", // 𣚨
+ 0x236a9: "K\f\U000236a9", // 𣚩
+ 0x236aa: "K\f\U000236aa", // 𣚪
+ 0x236ab: "K\f\U000236ab", // 𣚫
+ 0x236ac: "K\f\U000236ac", // 𣚬
+ 0x236ad: "K\f\U000236ad", // 𣚭
+ 0x236ae: "K\f\U000236ae", // 𣚮
+ 0x236af: "K\f\U000236af", // 𣚯
+ 0x236b0: "K\f\U000236b0", // 𣚰
+ 0x236b1: "K\f\U000236b1", // 𣚱
+ 0x236b2: "K\f\U000236b2", // 𣚲
+ 0x236b3: "K\f\U000236b3", // 𣚳
+ 0x236b4: "K\f\U000236b4", // 𣚴
+ 0x236b5: "K\f\U000236b5", // 𣚵
+ 0x236b6: "K\f\U000236b6", // 𣚶
+ 0x236b7: "K\f\U000236b7", // 𣚷
+ 0x236b8: "K\f\U000236b8", // 𣚸
+ 0x236b9: "K\f\U000236b9", // 𣚹
+ 0x236ba: "K\f\U000236ba", // 𣚺
+ 0x236bb: "K\f\U000236bb", // 𣚻
+ 0x236bc: "K\f\U000236bc", // 𣚼
+ 0x236bd: "K\f\U000236bd", // 𣚽
+ 0x236be: "K\f\U000236be", // 𣚾
+ 0x236bf: "K\f\U000236bf", // 𣚿
+ 0x236c0: "K\f\U000236c0", // 𣛀
+ 0x236c1: "K\f\U000236c1", // 𣛁
+ 0x236c2: "K\f\U000236c2", // 𣛂
+ 0x236c3: "K\f\U000236c3", // 𣛃
+ 0x236c4: "K\f\U000236c4", // 𣛄
+ 0x236c5: "K\f\U000236c5", // 𣛅
+ 0x236c6: "K\f\U000236c6", // 𣛆
+ 0x236c7: "K\f\U000236c7", // 𣛇
+ 0x236c8: "K\f\U000236c8", // 𣛈
+ 0x236c9: "K\f\U000236c9", // 𣛉
+ 0x236ca: "K\f\U000236ca", // 𣛊
+ 0x236cb: "K\f\U000236cb", // 𣛋
+ 0x236cc: "K\f\U000236cc", // 𣛌
+ 0x236cd: "K\f\U000236cd", // 𣛍
+ 0x236ce: "K\f\U000236ce", // 𣛎
+ 0x236cf: "K\f\U000236cf", // 𣛏
+ 0x236d0: "K\f\U000236d0", // 𣛐
+ 0x236d1: "K\f\U000236d1", // 𣛑
+ 0x236d2: "K\f\U000236d2", // 𣛒
+ 0x236d3: "K\f\U000236d3", // 𣛓
+ 0x236d4: "K\f\U000236d4", // 𣛔
+ 0x236d5: "K\f\U000236d5", // 𣛕
+ 0x236d6: "K\f\U000236d6", // 𣛖
+ 0x236d7: "K\f\U000236d7", // 𣛗
+ 0x236d8: "K\f\U000236d8", // 𣛘
+ 0x236d9: "K\f\U000236d9", // 𣛙
+ 0x236da: "K\f\U000236da", // 𣛚
+ 0x236db: "K\f\U000236db", // 𣛛
+ 0x236dc: "K\f\U000236dc", // 𣛜
+ 0x236dd: "K\f\U000236dd", // 𣛝
+ 0x236de: "K\f\U000236de", // 𣛞
+ 0x236df: "K\f\U000236df", // 𣛟
+ 0x236e0: "K\f\U000236e0", // 𣛠
+ 0x236e1: "K\f\U000236e1", // 𣛡
+ 0x236e2: "K\f\U000236e2", // 𣛢
+ 0x236e3: "K\f\U000236e3", // 𣛣
+ 0x236e4: "K\f\U000236e4", // 𣛤
+ 0x236e5: "K\f\U000236e5", // 𣛥
+ 0x236e6: "K\f\U000236e6", // 𣛦
+ 0x236e7: "K\f\U000236e7", // 𣛧
+ 0x236e8: "K\f\U000236e8", // 𣛨
+ 0x236e9: "K\f\U000236e9", // 𣛩
+ 0x236ea: "K\f\U000236ea", // 𣛪
+ 0x236eb: "K\f\U000236eb", // 𣛫
+ 0x236ec: "K\f\U000236ec", // 𣛬
+ 0x236ed: "K\f\U000236ed", // 𣛭
+ 0x236ee: "K\f\U000236ee", // 𣛮
+ 0x236ef: "K\f\U000236ef", // 𣛯
+ 0x236f0: "K\r\U000236f0", // 𣛰
+ 0x236f1: "K\r\U000236f1", // 𣛱
+ 0x236f2: "K\r\U000236f2", // 𣛲
+ 0x236f3: "K\r\U000236f3", // 𣛳
+ 0x236f4: "K\r\U000236f4", // 𣛴
+ 0x236f5: "K\r\U000236f5", // 𣛵
+ 0x236f6: "K\r\U000236f6", // 𣛶
+ 0x236f7: "K\r\U000236f7", // 𣛷
+ 0x236f8: "K\r\U000236f8", // 𣛸
+ 0x236f9: "K\r\U000236f9", // 𣛹
+ 0x236fa: "K\r\U000236fa", // 𣛺
+ 0x236fb: "K\r\U000236fb", // 𣛻
+ 0x236fc: "K\r\U000236fc", // 𣛼
+ 0x236fd: "K\r\U000236fd", // 𣛽
+ 0x236fe: "K\r\U000236fe", // 𣛾
+ 0x236ff: "K\r\U000236ff", // 𣛿
+ 0x23700: "K\r\U00023700", // 𣜀
+ 0x23701: "K\r\U00023701", // 𣜁
+ 0x23702: "K\r\U00023702", // 𣜂
+ 0x23703: "K\r\U00023703", // 𣜃
+ 0x23704: "K\r\U00023704", // 𣜄
+ 0x23705: "K\r\U00023705", // 𣜅
+ 0x23706: "K\r\U00023706", // 𣜆
+ 0x23707: "K\r\U00023707", // 𣜇
+ 0x23708: "K\r\U00023708", // 𣜈
+ 0x23709: "K\r\U00023709", // 𣜉
+ 0x2370a: "K\r\U0002370a", // 𣜊
+ 0x2370b: "K\r\U0002370b", // 𣜋
+ 0x2370c: "K\r\U0002370c", // 𣜌
+ 0x2370d: "K\r\U0002370d", // 𣜍
+ 0x2370e: "K\r\U0002370e", // 𣜎
+ 0x2370f: "K\r\U0002370f", // 𣜏
+ 0x23710: "K\r\U00023710", // 𣜐
+ 0x23711: "K\r\U00023711", // 𣜑
+ 0x23712: "K\r\U00023712", // 𣜒
+ 0x23713: "K\r\U00023713", // 𣜓
+ 0x23714: "K\r\U00023714", // 𣜔
+ 0x23715: "K\r\U00023715", // 𣜕
+ 0x23716: "K\r\U00023716", // 𣜖
+ 0x23717: "K\r\U00023717", // 𣜗
+ 0x23718: "K\r\U00023718", // 𣜘
+ 0x23719: "K\r\U00023719", // 𣜙
+ 0x2371a: "K\r\U0002371a", // 𣜚
+ 0x2371b: "K\r\U0002371b", // 𣜛
+ 0x2371c: "K\r\U0002371c", // 𣜜
+ 0x2371d: "K\r\U0002371d", // 𣜝
+ 0x2371e: "K\r\U0002371e", // 𣜞
+ 0x2371f: "K\r\U0002371f", // 𣜟
+ 0x23720: "K\r\U00023720", // 𣜠
+ 0x23721: "K\r\U00023721", // 𣜡
+ 0x23722: "r\f\U00023722", // 𣜢
+ 0x23723: "K\r\U00023723", // 𣜣
+ 0x23724: "K\r\U00023724", // 𣜤
+ 0x23725: "K\r\U00023725", // 𣜥
+ 0x23726: "K\r\U00023726", // 𣜦
+ 0x23727: "K\r\U00023727", // 𣜧
+ 0x23728: "K\r\U00023728", // 𣜨
+ 0x23729: "K\r\U00023729", // 𣜩
+ 0x2372a: "K\r\U0002372a", // 𣜪
+ 0x2372b: "K\r\U0002372b", // 𣜫
+ 0x2372c: "K\r\U0002372c", // 𣜬
+ 0x2372d: "K\r\U0002372d", // 𣜭
+ 0x2372e: "K\r\U0002372e", // 𣜮
+ 0x2372f: "K\r\U0002372f", // 𣜯
+ 0x23730: "K\r\U00023730", // 𣜰
+ 0x23731: "K\r\U00023731", // 𣜱
+ 0x23732: "K\r\U00023732", // 𣜲
+ 0x23733: "K\r\U00023733", // 𣜳
+ 0x23734: "K\r\U00023734", // 𣜴
+ 0x23735: "K\r\U00023735", // 𣜵
+ 0x23736: "K\r\U00023736", // 𣜶
+ 0x23737: "K\r\U00023737", // 𣜷
+ 0x23738: "K\r\U00023738", // 𣜸
+ 0x23739: "K\r\U00023739", // 𣜹
+ 0x2373a: "K\r\U0002373a", // 𣜺
+ 0x2373b: "K\r\U0002373b", // 𣜻
+ 0x2373c: "K\r\U0002373c", // 𣜼
+ 0x2373d: "K\r\U0002373d", // 𣜽
+ 0x2373e: "K\r\U0002373e", // 𣜾
+ 0x2373f: "K\r\U0002373f", // 𣜿
+ 0x23740: "K\r\U00023740", // 𣝀
+ 0x23741: "K\x0e\U00023741", // 𣝁
+ 0x23742: "K\x0e\U00023742", // 𣝂
+ 0x23743: "K\x0e\U00023743", // 𣝃
+ 0x23744: "K\x0e\U00023744", // 𣝄
+ 0x23745: "K\x0e\U00023745", // 𣝅
+ 0x23746: "K\x0e\U00023746", // 𣝆
+ 0x23747: "K\x0e\U00023747", // 𣝇
+ 0x23748: "K\x0e\U00023748", // 𣝈
+ 0x23749: "K\x0e\U00023749", // 𣝉
+ 0x2374a: "K\x0e\U0002374a", // 𣝊
+ 0x2374b: "K\x0e\U0002374b", // 𣝋
+ 0x2374c: "K\x0e\U0002374c", // 𣝌
+ 0x2374d: "K\x0e\U0002374d", // 𣝍
+ 0x2374e: "K\x0e\U0002374e", // 𣝎
+ 0x2374f: "K\x0e\U0002374f", // 𣝏
+ 0x23750: "K\x0e\U00023750", // 𣝐
+ 0x23751: "K\x0e\U00023751", // 𣝑
+ 0x23752: "K\x0e\U00023752", // 𣝒
+ 0x23753: "K\x0e\U00023753", // 𣝓
+ 0x23754: "K\x0e\U00023754", // 𣝔
+ 0x23755: "K\x0e\U00023755", // 𣝕
+ 0x23756: "K\x0e\U00023756", // 𣝖
+ 0x23757: "K\x0e\U00023757", // 𣝗
+ 0x23758: "K\x0e\U00023758", // 𣝘
+ 0x23759: "K\x0f\U00023759", // 𣝙
+ 0x2375a: "K\x0e\U0002375a", // 𣝚
+ 0x2375b: "K\x0e\U0002375b", // 𣝛
+ 0x2375c: "K\x0e\U0002375c", // 𣝜
+ 0x2375d: "K\x0e\U0002375d", // 𣝝
+ 0x2375e: "K\x0e\U0002375e", // 𣝞
+ 0x2375f: "K\x0e\U0002375f", // 𣝟
+ 0x23760: "K\x0e\U00023760", // 𣝠
+ 0x23761: "K\x0e\U00023761", // 𣝡
+ 0x23762: "K\x0e\U00023762", // 𣝢
+ 0x23763: "K\x0e\U00023763", // 𣝣
+ 0x23764: "K\x0e\U00023764", // 𣝤
+ 0x23765: "K\x0e\U00023765", // 𣝥
+ 0x23766: "K\x0e\U00023766", // 𣝦
+ 0x23767: "K\x0e\U00023767", // 𣝧
+ 0x23768: "K\x0e\U00023768", // 𣝨
+ 0x23769: "K\x0e\U00023769", // 𣝩
+ 0x2376a: "K\x0e\U0002376a", // 𣝪
+ 0x2376b: "K\x0e\U0002376b", // 𣝫
+ 0x2376c: "K\x0e\U0002376c", // 𣝬
+ 0x2376d: "K\x0e\U0002376d", // 𣝭
+ 0x2376e: "K\x0e\U0002376e", // 𣝮
+ 0x2376f: "K\x0e\U0002376f", // 𣝯
+ 0x23770: "K\x0e\U00023770", // 𣝰
+ 0x23771: "K\x0e\U00023771", // 𣝱
+ 0x23772: "K\x0e\U00023772", // 𣝲
+ 0x23773: "K\x0e\U00023773", // 𣝳
+ 0x23774: "K\x0e\U00023774", // 𣝴
+ 0x23775: "K\x0e\U00023775", // 𣝵
+ 0x23776: "K\x0e\U00023776", // 𣝶
+ 0x23777: "K\x0e\U00023777", // 𣝷
+ 0x23778: "K\x0e\U00023778", // 𣝸
+ 0x23779: "K\x0e\U00023779", // 𣝹
+ 0x2377a: "K\x0e\U0002377a", // 𣝺
+ 0x2377b: "K\x0e\U0002377b", // 𣝻
+ 0x2377c: "K\x0e\U0002377c", // 𣝼
+ 0x2377d: "K\x0e\U0002377d", // 𣝽
+ 0x2377e: "K\x0e\U0002377e", // 𣝾
+ 0x2377f: "K\x0e\U0002377f", // 𣝿
+ 0x23780: "K\x0e\U00023780", // 𣞀
+ 0x23781: "K\x0e\U00023781", // 𣞁
+ 0x23782: "K\x0e\U00023782", // 𣞂
+ 0x23783: "K\x0e\U00023783", // 𣞃
+ 0x23784: "K\x0e\U00023784", // 𣞄
+ 0x23785: "K\x0e\U00023785", // 𣞅
+ 0x23786: "K\x0e\U00023786", // 𣞆
+ 0x23787: "K\x0e\U00023787", // 𣞇
+ 0x23788: "K\x0e\U00023788", // 𣞈
+ 0x23789: "K\x0e\U00023789", // 𣞉
+ 0x2378a: "K\x0e\U0002378a", // 𣞊
+ 0x2378b: "K\x0e\U0002378b", // 𣞋
+ 0x2378c: "K\x0e\U0002378c", // 𣞌
+ 0x2378d: "K\x0e\U0002378d", // 𣞍
+ 0x2378e: "K\x0e\U0002378e", // 𣞎
+ 0x2378f: "p\r\U0002378f", // 𣞏
+ 0x23790: "K\x0f\U00023790", // 𣞐
+ 0x23791: "K\x0f\U00023791", // 𣞑
+ 0x23792: "K\x0f\U00023792", // 𣞒
+ 0x23793: "K\x0f\U00023793", // 𣞓
+ 0x23794: "K\x0f\U00023794", // 𣞔
+ 0x23795: "K\x0f\U00023795", // 𣞕
+ 0x23796: "K\x0f\U00023796", // 𣞖
+ 0x23797: "K\x0f\U00023797", // 𣞗
+ 0x23798: "K\x0f\U00023798", // 𣞘
+ 0x23799: "K\x0f\U00023799", // 𣞙
+ 0x2379a: "K\x0f\U0002379a", // 𣞚
+ 0x2379b: "K\x0f\U0002379b", // 𣞛
+ 0x2379c: "K\x0f\U0002379c", // 𣞜
+ 0x2379d: "K\x0f\U0002379d", // 𣞝
+ 0x2379e: "K\x0f\U0002379e", // 𣞞
+ 0x2379f: "K\x0f\U0002379f", // 𣞟
+ 0x237a0: "K\x0f\U000237a0", // 𣞠
+ 0x237a1: "K\x0f\U000237a1", // 𣞡
+ 0x237a2: "K\x0f\U000237a2", // 𣞢
+ 0x237a3: "K\x0f\U000237a3", // 𣞣
+ 0x237a4: "K\x0f\U000237a4", // 𣞤
+ 0x237a5: "K\x0f\U000237a5", // 𣞥
+ 0x237a6: "K\x0f\U000237a6", // 𣞦
+ 0x237a7: "K\x0f\U000237a7", // 𣞧
+ 0x237a8: "K\x0f\U000237a8", // 𣞨
+ 0x237a9: "K\x0f\U000237a9", // 𣞩
+ 0x237aa: "K\x0f\U000237aa", // 𣞪
+ 0x237ab: "K\x0f\U000237ab", // 𣞫
+ 0x237ac: "K\x0f\U000237ac", // 𣞬
+ 0x237ad: "K\x0f\U000237ad", // 𣞭
+ 0x237ae: "K\x0f\U000237ae", // 𣞮
+ 0x237af: "K\x0f\U000237af", // 𣞯
+ 0x237b0: "K\x0f\U000237b0", // 𣞰
+ 0x237b1: "K\x0f\U000237b1", // 𣞱
+ 0x237b2: "K\x0f\U000237b2", // 𣞲
+ 0x237b3: "K\x0f\U000237b3", // 𣞳
+ 0x237b4: "K\x0f\U000237b4", // 𣞴
+ 0x237b5: "K\x0f\U000237b5", // 𣞵
+ 0x237b6: "K\x0f\U000237b6", // 𣞶
+ 0x237b7: "K\x0f\U000237b7", // 𣞷
+ 0x237b8: "K\x0f\U000237b8", // 𣞸
+ 0x237b9: "K\x0f\U000237b9", // 𣞹
+ 0x237ba: "K\x0f\U000237ba", // 𣞺
+ 0x237bb: "K\x0f\U000237bb", // 𣞻
+ 0x237bc: "K\x0f\U000237bc", // 𣞼
+ 0x237bd: "K\x0f\U000237bd", // 𣞽
+ 0x237be: "K\x0f\U000237be", // 𣞾
+ 0x237bf: "K\x0f\U000237bf", // 𣞿
+ 0x237c0: "K\x0f\U000237c0", // 𣟀
+ 0x237c1: "K\x0f\U000237c1", // 𣟁
+ 0x237c2: "K\x0f\U000237c2", // 𣟂
+ 0x237c3: "K\x0f\U000237c3", // 𣟃
+ 0x237c4: "K\x10\U000237c4", // 𣟄
+ 0x237c5: "K\x10\U000237c5", // 𣟅
+ 0x237c6: "K\x10\U000237c6", // 𣟆
+ 0x237c7: "K\x10\U000237c7", // 𣟇
+ 0x237c8: "K\x10\U000237c8", // 𣟈
+ 0x237c9: "K\x10\U000237c9", // 𣟉
+ 0x237ca: "K\x10\U000237ca", // 𣟊
+ 0x237cb: "K\x10\U000237cb", // 𣟋
+ 0x237cc: "K\x10\U000237cc", // 𣟌
+ 0x237cd: "K\x10\U000237cd", // 𣟍
+ 0x237ce: "K\x10\U000237ce", // 𣟎
+ 0x237cf: "K\x10\U000237cf", // 𣟏
+ 0x237d0: "K\x10\U000237d0", // 𣟐
+ 0x237d1: "K\x0f\U000237d1", // 𣟑
+ 0x237d2: "K\x10\U000237d2", // 𣟒
+ 0x237d3: "K\x10\U000237d3", // 𣟓
+ 0x237d4: "K\x10\U000237d4", // 𣟔
+ 0x237d5: "K\x10\U000237d5", // 𣟕
+ 0x237d6: "K\x10\U000237d6", // 𣟖
+ 0x237d7: "K\x10\U000237d7", // 𣟗
+ 0x237d8: "K\x10\U000237d8", // 𣟘
+ 0x237d9: "K\x10\U000237d9", // 𣟙
+ 0x237da: "K\x10\U000237da", // 𣟚
+ 0x237db: "K\x10\U000237db", // 𣟛
+ 0x237dc: "K\x10\U000237dc", // 𣟜
+ 0x237dd: "K\x10\U000237dd", // 𣟝
+ 0x237de: "K\x10\U000237de", // 𣟞
+ 0x237df: "K\x10\U000237df", // 𣟟
+ 0x237e0: "K\x10\U000237e0", // 𣟠
+ 0x237e1: "K\x10\U000237e1", // 𣟡
+ 0x237e2: "K\x10\U000237e2", // 𣟢
+ 0x237e3: "K\x10\U000237e3", // 𣟣
+ 0x237e4: "K\x10\U000237e4", // 𣟤
+ 0x237e5: "K\x10\U000237e5", // 𣟥
+ 0x237e6: "K\x10\U000237e6", // 𣟦
+ 0x237e7: "K\x10\U000237e7", // 𣟧
+ 0x237e8: "K\x10\U000237e8", // 𣟨
+ 0x237e9: "K\x10\U000237e9", // 𣟩
+ 0x237ea: "K\x10\U000237ea", // 𣟪
+ 0x237eb: "K\x10\U000237eb", // 𣟫
+ 0x237ec: "K\x10\U000237ec", // 𣟬
+ 0x237ed: "K\x10\U000237ed", // 𣟭
+ 0x237ee: "K\x10\U000237ee", // 𣟮
+ 0x237ef: "K\x11\U000237ef", // 𣟯
+ 0x237f0: "K\x11\U000237f0", // 𣟰
+ 0x237f1: "K\x11\U000237f1", // 𣟱
+ 0x237f2: "K\x11\U000237f2", // 𣟲
+ 0x237f3: "K\x11\U000237f3", // 𣟳
+ 0x237f4: "K\x11\U000237f4", // 𣟴
+ 0x237f5: "K\x11\U000237f5", // 𣟵
+ 0x237f6: "K\x11\U000237f6", // 𣟶
+ 0x237f7: "K\x11\U000237f7", // 𣟷
+ 0x237f8: "K\x11\U000237f8", // 𣟸
+ 0x237f9: "K\x11\U000237f9", // 𣟹
+ 0x237fa: "K\x11\U000237fa", // 𣟺
+ 0x237fb: "K\x11\U000237fb", // 𣟻
+ 0x237fc: "K\x11\U000237fc", // 𣟼
+ 0x237fd: "K\x11\U000237fd", // 𣟽
+ 0x237fe: "K\x11\U000237fe", // 𣟾
+ 0x237ff: "K\x11\U000237ff", // 𣟿
+ 0x23800: "K\x11\U00023800", // 𣠀
+ 0x23801: "K\x11\U00023801", // 𣠁
+ 0x23802: "K\x12\U00023802", // 𣠂
+ 0x23803: "K\x11\U00023803", // 𣠃
+ 0x23804: "K\x11\U00023804", // 𣠄
+ 0x23805: "K\x11\U00023805", // 𣠅
+ 0x23806: "K\x11\U00023806", // 𣠆
+ 0x23807: "K\x11\U00023807", // 𣠇
+ 0x23808: "K\x11\U00023808", // 𣠈
+ 0x23809: "K\x11\U00023809", // 𣠉
+ 0x2380a: "K\x11\U0002380a", // 𣠊
+ 0x2380b: "K\x11\U0002380b", // 𣠋
+ 0x2380c: "K\x11\U0002380c", // 𣠌
+ 0x2380d: "K\x11\U0002380d", // 𣠍
+ 0x2380e: "K\x11\U0002380e", // 𣠎
+ 0x2380f: "K\x11\U0002380f", // 𣠏
+ 0x23810: "K\x11\U00023810", // 𣠐
+ 0x23811: "K\x11\U00023811", // 𣠑
+ 0x23812: "K\x11\U00023812", // 𣠒
+ 0x23813: "K\x11\U00023813", // 𣠓
+ 0x23814: "K\x11\U00023814", // 𣠔
+ 0x23815: "K\x11\U00023815", // 𣠕
+ 0x23816: "K\x11\U00023816", // 𣠖
+ 0x23817: "K\x11\U00023817", // 𣠗
+ 0x23818: "K\x11\U00023818", // 𣠘
+ 0x23819: "K\x12\U00023819", // 𣠙
+ 0x2381a: "K\x12\U0002381a", // 𣠚
+ 0x2381b: "K\x12\U0002381b", // 𣠛
+ 0x2381c: "K\x12\U0002381c", // 𣠜
+ 0x2381d: "K\x12\U0002381d", // 𣠝
+ 0x2381e: "K\x12\U0002381e", // 𣠞
+ 0x2381f: "K\x12\U0002381f", // 𣠟
+ 0x23820: "K\x12\U00023820", // 𣠠
+ 0x23821: "K\x12\U00023821", // 𣠡
+ 0x23822: "K\x12\U00023822", // 𣠢
+ 0x23823: "K\x12\U00023823", // 𣠣
+ 0x23824: "K\x12\U00023824", // 𣠤
+ 0x23825: "K\x12\U00023825", // 𣠥
+ 0x23826: "K\x12\U00023826", // 𣠦
+ 0x23827: "K\x12\U00023827", // 𣠧
+ 0x23828: "K\x12\U00023828", // 𣠨
+ 0x23829: "K\x12\U00023829", // 𣠩
+ 0x2382a: "K\x12\U0002382a", // 𣠪
+ 0x2382b: "K\x12\U0002382b", // 𣠫
+ 0x2382c: "K\x12\U0002382c", // 𣠬
+ 0x2382d: "K\x12\U0002382d", // 𣠭
+ 0x2382e: "K\x12\U0002382e", // 𣠮
+ 0x2382f: "K\x12\U0002382f", // 𣠯
+ 0x23830: "K\x12\U00023830", // 𣠰
+ 0x23831: "K\x12\U00023831", // 𣠱
+ 0x23832: "K\x12\U00023832", // 𣠲
+ 0x23833: "K\x12\U00023833", // 𣠳
+ 0x23834: "K\x12\U00023834", // 𣠴
+ 0x23835: "K\x12\U00023835", // 𣠵
+ 0x23836: "K\x12\U00023836", // 𣠶
+ 0x23837: "K\x13\U00023837", // 𣠷
+ 0x23838: "K\x13\U00023838", // 𣠸
+ 0x23839: "K\x13\U00023839", // 𣠹
+ 0x2383a: "K\x13\U0002383a", // 𣠺
+ 0x2383b: "K\x13\U0002383b", // 𣠻
+ 0x2383c: "K\x13\U0002383c", // 𣠼
+ 0x2383d: "K\x13\U0002383d", // 𣠽
+ 0x2383e: "K\x13\U0002383e", // 𣠾
+ 0x2383f: "K\x13\U0002383f", // 𣠿
+ 0x23840: "K\x13\U00023840", // 𣡀
+ 0x23841: "K\x13\U00023841", // 𣡁
+ 0x23842: "K\x13\U00023842", // 𣡂
+ 0x23843: "K\x13\U00023843", // 𣡃
+ 0x23844: "K\x13\U00023844", // 𣡄
+ 0x23845: "K\x13\U00023845", // 𣡅
+ 0x23846: "K\x13\U00023846", // 𣡆
+ 0x23847: "K\x13\U00023847", // 𣡇
+ 0x23848: "K\x13\U00023848", // 𣡈
+ 0x23849: "K\x13\U00023849", // 𣡉
+ 0x2384a: "K\x13\U0002384a", // 𣡊
+ 0x2384b: "K\x14\U0002384b", // 𣡋
+ 0x2384c: "K\x14\U0002384c", // 𣡌
+ 0x2384d: "K\x14\U0002384d", // 𣡍
+ 0x2384e: "K\x14\U0002384e", // 𣡎
+ 0x2384f: "K\x14\U0002384f", // 𣡏
+ 0x23850: "K\x14\U00023850", // 𣡐
+ 0x23851: "K\x14\U00023851", // 𣡑
+ 0x23852: "K\x14\U00023852", // 𣡒
+ 0x23853: "K\x14\U00023853", // 𣡓
+ 0x23854: "K\x14\U00023854", // 𣡔
+ 0x23855: "K\x14\U00023855", // 𣡕
+ 0x23856: "K\x14\U00023856", // 𣡖
+ 0x23857: "K\x14\U00023857", // 𣡗
+ 0x23858: "K\x14\U00023858", // 𣡘
+ 0x23859: "K\x14\U00023859", // 𣡙
+ 0x2385a: "K\x14\U0002385a", // 𣡚
+ 0x2385b: "K\x14\U0002385b", // 𣡛
+ 0x2385c: "K\x14\U0002385c", // 𣡜
+ 0x2385d: "K\x14\U0002385d", // 𣡝
+ 0x2385e: "K\x15\U0002385e", // 𣡞
+ 0x2385f: "K\x15\U0002385f", // 𣡟
+ 0x23860: "K\x15\U00023860", // 𣡠
+ 0x23861: "K\x15\U00023861", // 𣡡
+ 0x23862: "K\x15\U00023862", // 𣡢
+ 0x23863: "K\x15\U00023863", // 𣡣
+ 0x23864: "K\x15\U00023864", // 𣡤
+ 0x23865: "K\x15\U00023865", // 𣡥
+ 0x23866: "K\x15\U00023866", // 𣡦
+ 0x23867: "K\x15\U00023867", // 𣡧
+ 0x23868: "K\x15\U00023868", // 𣡨
+ 0x23869: "K\x16\U00023869", // 𣡩
+ 0x2386a: "K\x16\U0002386a", // 𣡪
+ 0x2386b: "K\x16\U0002386b", // 𣡫
+ 0x2386c: "K\x16\U0002386c", // 𣡬
+ 0x2386d: "K\x16\U0002386d", // 𣡭
+ 0x2386e: "K\x15\U0002386e", // 𣡮
+ 0x2386f: "K\x16\U0002386f", // 𣡯
+ 0x23870: "K\x16\U00023870", // 𣡰
+ 0x23871: "K\x16\U00023871", // 𣡱
+ 0x23872: "K\x17\U00023872", // 𣡲
+ 0x23873: "$\x18\U00023873", // 𣡳
+ 0x23874: "K\x17\U00023874", // 𣡴
+ 0x23875: "K\x17\U00023875", // 𣡵
+ 0x23876: "K\x18\U00023876", // 𣡶
+ 0x23877: "K\x18\U00023877", // 𣡷
+ 0x23878: "K\x18\U00023878", // 𣡸
+ 0x23879: "K\x19\U00023879", // 𣡹
+ 0x2387a: "K\x1a\U0002387a", // 𣡺
+ 0x2387b: "K\x1a\U0002387b", // 𣡻
+ 0x2387c: "K\x1b\U0002387c", // 𣡼
+ 0x2387d: "K\x1c\U0002387d", // 𣡽
+ 0x2387e: "K\x1c\U0002387e", // 𣡾
+ 0x2387f: "K\x1e\U0002387f", // 𣡿
+ 0x23880: "L\x02\U00023880", // 𣢀
+ 0x23881: "L\x03\U00023881", // 𣢁
+ 0x23882: "L\x03\U00023882", // 𣢂
+ 0x23883: "L\x03\U00023883", // 𣢃
+ 0x23884: "L\x03\U00023884", // 𣢄
+ 0x23885: "L\x03\U00023885", // 𣢅
+ 0x23886: "L\x03\U00023886", // 𣢆
+ 0x23887: "L\x03\U00023887", // 𣢇
+ 0x23888: "L\x03\U00023888", // 𣢈
+ 0x23889: "L\x04\U00023889", // 𣢉
+ 0x2388a: "L\x04\U0002388a", // 𣢊
+ 0x2388b: "L\x04\U0002388b", // 𣢋
+ 0x2388c: "L\x04\U0002388c", // 𣢌
+ 0x2388d: "L\x04\U0002388d", // 𣢍
+ 0x2388e: "L\x04\U0002388e", // 𣢎
+ 0x2388f: "L\x04\U0002388f", // 𣢏
+ 0x23890: "L\x04\U00023890", // 𣢐
+ 0x23891: "L\x04\U00023891", // 𣢑
+ 0x23892: "L\x04\U00023892", // 𣢒
+ 0x23893: "L\x04\U00023893", // 𣢓
+ 0x23894: "L\x04\U00023894", // 𣢔
+ 0x23895: "L\x04\U00023895", // 𣢕
+ 0x23896: "L\x04\U00023896", // 𣢖
+ 0x23897: "L\x05\U00023897", // 𣢗
+ 0x23898: "L\x05\U00023898", // 𣢘
+ 0x23899: "L\x05\U00023899", // 𣢙
+ 0x2389a: "L\x05\U0002389a", // 𣢚
+ 0x2389b: "L\x05\U0002389b", // 𣢛
+ 0x2389c: "L\x05\U0002389c", // 𣢜
+ 0x2389d: "L\x05\U0002389d", // 𣢝
+ 0x2389e: "L\x05\U0002389e", // 𣢞
+ 0x2389f: "L\x05\U0002389f", // 𣢟
+ 0x238a0: "L\x05\U000238a0", // 𣢠
+ 0x238a1: "L\x05\U000238a1", // 𣢡
+ 0x238a2: "L\x05\U000238a2", // 𣢢
+ 0x238a3: "L\x05\U000238a3", // 𣢣
+ 0x238a4: "L\x05\U000238a4", // 𣢤
+ 0x238a5: "L\x05\U000238a5", // 𣢥
+ 0x238a6: "L\x05\U000238a6", // 𣢦
+ 0x238a7: "L\x06\U000238a7", // 𣢧
+ 0x238a8: "L\x06\U000238a8", // 𣢨
+ 0x238a9: "L\x06\U000238a9", // 𣢩
+ 0x238aa: "L\x06\U000238aa", // 𣢪
+ 0x238ab: "L\x06\U000238ab", // 𣢫
+ 0x238ac: "L\x06\U000238ac", // 𣢬
+ 0x238ad: "L\x06\U000238ad", // 𣢭
+ 0x238ae: "L\x06\U000238ae", // 𣢮
+ 0x238af: "L\x06\U000238af", // 𣢯
+ 0x238b0: "L\x06\U000238b0", // 𣢰
+ 0x238b1: "L\x06\U000238b1", // 𣢱
+ 0x238b2: "L\x06\U000238b2", // 𣢲
+ 0x238b3: "L\x06\U000238b3", // 𣢳
+ 0x238b4: "L\x06\U000238b4", // 𣢴
+ 0x238b5: "L\x06\U000238b5", // 𣢵
+ 0x238b6: "L\x06\U000238b6", // 𣢶
+ 0x238b7: "L\x06\U000238b7", // 𣢷
+ 0x238b8: "L\x06\U000238b8", // 𣢸
+ 0x238b9: "L\x06\U000238b9", // 𣢹
+ 0x238ba: "L\a\U000238ba", // 𣢺
+ 0x238bb: "L\a\U000238bb", // 𣢻
+ 0x238bc: "L\a\U000238bc", // 𣢼
+ 0x238bd: "L\a\U000238bd", // 𣢽
+ 0x238be: "L\a\U000238be", // 𣢾
+ 0x238bf: "L\a\U000238bf", // 𣢿
+ 0x238c0: "L\a\U000238c0", // 𣣀
+ 0x238c1: "L\a\U000238c1", // 𣣁
+ 0x238c2: "L\a\U000238c2", // 𣣂
+ 0x238c3: "L\a\U000238c3", // 𣣃
+ 0x238c4: "L\a\U000238c4", // 𣣄
+ 0x238c5: "L\a\U000238c5", // 𣣅
+ 0x238c6: "L\a\U000238c6", // 𣣆
+ 0x238c7: "L\a\U000238c7", // 𣣇
+ 0x238c8: "L\b\U000238c8", // 𣣈
+ 0x238c9: "L\b\U000238c9", // 𣣉
+ 0x238ca: "L\b\U000238ca", // 𣣊
+ 0x238cb: "L\b\U000238cb", // 𣣋
+ 0x238cc: "L\b\U000238cc", // 𣣌
+ 0x238cd: "L\b\U000238cd", // 𣣍
+ 0x238ce: "L\b\U000238ce", // 𣣎
+ 0x238cf: "L\b\U000238cf", // 𣣏
+ 0x238d0: "L\b\U000238d0", // 𣣐
+ 0x238d1: "L\b\U000238d1", // 𣣑
+ 0x238d2: "L\b\U000238d2", // 𣣒
+ 0x238d3: "L\b\U000238d3", // 𣣓
+ 0x238d4: "L\b\U000238d4", // 𣣔
+ 0x238d5: "L\b\U000238d5", // 𣣕
+ 0x238d6: "L\b\U000238d6", // 𣣖
+ 0x238d7: "L\b\U000238d7", // 𣣗
+ 0x238d8: "L\b\U000238d8", // 𣣘
+ 0x238d9: "L\b\U000238d9", // 𣣙
+ 0x238da: "L\b\U000238da", // 𣣚
+ 0x238db: "L\b\U000238db", // 𣣛
+ 0x238dc: "L\b\U000238dc", // 𣣜
+ 0x238dd: "L\t\U000238dd", // 𣣝
+ 0x238de: "L\t\U000238de", // 𣣞
+ 0x238df: "L\t\U000238df", // 𣣟
+ 0x238e0: "L\t\U000238e0", // 𣣠
+ 0x238e1: "L\t\U000238e1", // 𣣡
+ 0x238e2: "L\t\U000238e2", // 𣣢
+ 0x238e3: "L\t\U000238e3", // 𣣣
+ 0x238e4: "L\t\U000238e4", // 𣣤
+ 0x238e5: "L\t\U000238e5", // 𣣥
+ 0x238e6: "L\t\U000238e6", // 𣣦
+ 0x238e7: "L\t\U000238e7", // 𣣧
+ 0x238e8: "L\t\U000238e8", // 𣣨
+ 0x238e9: "L\t\U000238e9", // 𣣩
+ 0x238ea: "L\t\U000238ea", // 𣣪
+ 0x238eb: "L\t\U000238eb", // 𣣫
+ 0x238ec: "\x9a\x06\U000238ec", // 𣣬
+ 0x238ed: "L\t\U000238ed", // 𣣭
+ 0x238ee: "L\t\U000238ee", // 𣣮
+ 0x238ef: "L\t\U000238ef", // 𣣯
+ 0x238f0: "L\t\U000238f0", // 𣣰
+ 0x238f1: "L\t\U000238f1", // 𣣱
+ 0x238f2: "L\n\U000238f2", // 𣣲
+ 0x238f3: "L\n\U000238f3", // 𣣳
+ 0x238f4: "L\n\U000238f4", // 𣣴
+ 0x238f5: "L\n\U000238f5", // 𣣵
+ 0x238f6: "L\n\U000238f6", // 𣣶
+ 0x238f7: "L\n\U000238f7", // 𣣷
+ 0x238f8: "L\n\U000238f8", // 𣣸
+ 0x238f9: "L\n\U000238f9", // 𣣹
+ 0x238fa: "L\n\U000238fa", // 𣣺
+ 0x238fb: "L\n\U000238fb", // 𣣻
+ 0x238fc: "L\n\U000238fc", // 𣣼
+ 0x238fd: "L\n\U000238fd", // 𣣽
+ 0x238fe: "L\n\U000238fe", // 𣣾
+ 0x238ff: "L\n\U000238ff", // 𣣿
+ 0x23900: "L\n\U00023900", // 𣤀
+ 0x23901: "L\n\U00023901", // 𣤁
+ 0x23902: "L\n\U00023902", // 𣤂
+ 0x23903: "L\n\U00023903", // 𣤃
+ 0x23904: "L\n\U00023904", // 𣤄
+ 0x23905: "L\n\U00023905", // 𣤅
+ 0x23906: "L\n\U00023906", // 𣤆
+ 0x23907: "L\n\U00023907", // 𣤇
+ 0x23908: "L\v\U00023908", // 𣤈
+ 0x23909: "L\v\U00023909", // 𣤉
+ 0x2390a: "L\v\U0002390a", // 𣤊
+ 0x2390b: "L\v\U0002390b", // 𣤋
+ 0x2390c: "L\v\U0002390c", // 𣤌
+ 0x2390d: "L\v\U0002390d", // 𣤍
+ 0x2390e: "L\v\U0002390e", // 𣤎
+ 0x2390f: "L\v\U0002390f", // 𣤏
+ 0x23910: "L\v\U00023910", // 𣤐
+ 0x23911: "L\v\U00023911", // 𣤑
+ 0x23912: "L\v\U00023912", // 𣤒
+ 0x23913: "L\v\U00023913", // 𣤓
+ 0x23914: "L\v\U00023914", // 𣤔
+ 0x23915: "L\v\U00023915", // 𣤕
+ 0x23916: "L\v\U00023916", // 𣤖
+ 0x23917: "L\v\U00023917", // 𣤗
+ 0x23918: "L\f\U00023918", // 𣤘
+ 0x23919: "L\f\U00023919", // 𣤙
+ 0x2391a: "L\f\U0002391a", // 𣤚
+ 0x2391b: "L\f\U0002391b", // 𣤛
+ 0x2391c: "L\f\U0002391c", // 𣤜
+ 0x2391d: "L\f\U0002391d", // 𣤝
+ 0x2391e: "L\f\U0002391e", // 𣤞
+ 0x2391f: "L\f\U0002391f", // 𣤟
+ 0x23920: "L\r\U00023920", // 𣤠
+ 0x23921: "L\r\U00023921", // 𣤡
+ 0x23922: "L\r\U00023922", // 𣤢
+ 0x23923: "L\r\U00023923", // 𣤣
+ 0x23924: "L\r\U00023924", // 𣤤
+ 0x23925: "L\r\U00023925", // 𣤥
+ 0x23926: "L\r\U00023926", // 𣤦
+ 0x23927: "L\r\U00023927", // 𣤧
+ 0x23928: "L\x0e\U00023928", // 𣤨
+ 0x23929: "L\x0e\U00023929", // 𣤩
+ 0x2392a: "L\x0e\U0002392a", // 𣤪
+ 0x2392b: "L\x0e\U0002392b", // 𣤫
+ 0x2392c: "L\x0f\U0002392c", // 𣤬
+ 0x2392d: "L\x0f\U0002392d", // 𣤭
+ 0x2392e: "L\x0f\U0002392e", // 𣤮
+ 0x2392f: "L\x0f\U0002392f", // 𣤯
+ 0x23930: "L\x0f\U00023930", // 𣤰
+ 0x23931: "L\x10\U00023931", // 𣤱
+ 0x23932: "L\x10\U00023932", // 𣤲
+ 0x23933: "L\x10\U00023933", // 𣤳
+ 0x23934: "L\x11\U00023934", // 𣤴
+ 0x23935: "L\x11\U00023935", // 𣤵
+ 0x23936: "L\x12\U00023936", // 𣤶
+ 0x23937: "L\x11\U00023937", // 𣤷
+ 0x23938: "L\x11\U00023938", // 𣤸
+ 0x23939: "L\x12\U00023939", // 𣤹
+ 0x2393a: "L\x12\U0002393a", // 𣤺
+ 0x2393b: "L\x12\U0002393b", // 𣤻
+ 0x2393c: "L\x12\U0002393c", // 𣤼
+ 0x2393d: "L\x13\U0002393d", // 𣤽
+ 0x2393e: "L\x14\U0002393e", // 𣤾
+ 0x2393f: "L\x15\U0002393f", // 𣤿
+ 0x23940: "L\x15\U00023940", // 𣥀
+ 0x23941: "L\x16\U00023941", // 𣥁
+ 0x23942: "M\x00\U00023942", // 𣥂
+ 0x23943: "M\x01\U00023943", // 𣥃
+ 0x23944: "M\x01\U00023944", // 𣥄
+ 0x23945: "M\x02\U00023945", // 𣥅
+ 0x23946: "M\x02\U00023946", // 𣥆
+ 0x23947: "M\x03\U00023947", // 𣥇
+ 0x23948: "M\x03\U00023948", // 𣥈
+ 0x23949: "M\x04\U00023949", // 𣥉
+ 0x2394a: "M\x03\U0002394a", // 𣥊
+ 0x2394b: "M\x03\U0002394b", // 𣥋
+ 0x2394c: "M\x03\U0002394c", // 𣥌
+ 0x2394d: "M\x04\U0002394d", // 𣥍
+ 0x2394e: "M\x04\U0002394e", // 𣥎
+ 0x2394f: "M\x04\U0002394f", // 𣥏
+ 0x23950: "M\x04\U00023950", // 𣥐
+ 0x23951: "M\x04\U00023951", // 𣥑
+ 0x23952: "M\x04\U00023952", // 𣥒
+ 0x23953: "M\x04\U00023953", // 𣥓
+ 0x23954: "M\x04\U00023954", // 𣥔
+ 0x23955: "M\x04\U00023955", // 𣥕
+ 0x23956: "M\x04\U00023956", // 𣥖
+ 0x23957: "M\x04\U00023957", // 𣥗
+ 0x23958: "M\x04\U00023958", // 𣥘
+ 0x23959: "M\x04\U00023959", // 𣥙
+ 0x2395a: "M\x04\U0002395a", // 𣥚
+ 0x2395b: "M\x04\U0002395b", // 𣥛
+ 0x2395c: "M\x04\U0002395c", // 𣥜
+ 0x2395d: "M\x04\U0002395d", // 𣥝
+ 0x2395e: "M\x04\U0002395e", // 𣥞
+ 0x2395f: "M\x04\U0002395f", // 𣥟
+ 0x23960: "M\x04\U00023960", // 𣥠
+ 0x23961: "M\x04\U00023961", // 𣥡
+ 0x23962: "M\x05\U00023962", // 𣥢
+ 0x23963: "M\x05\U00023963", // 𣥣
+ 0x23964: "M\x05\U00023964", // 𣥤
+ 0x23965: "\x18\x06\U00023965", // 𣥥
+ 0x23966: "M\x06\U00023966", // 𣥦
+ 0x23967: "M\x06\U00023967", // 𣥧
+ 0x23968: "M\x06\U00023968", // 𣥨
+ 0x23969: "M\x06\U00023969", // 𣥩
+ 0x2396a: "M\x06\U0002396a", // 𣥪
+ 0x2396b: "M\x06\U0002396b", // 𣥫
+ 0x2396c: "M\x06\U0002396c", // 𣥬
+ 0x2396d: "M\x06\U0002396d", // 𣥭
+ 0x2396e: "M\x06\U0002396e", // 𣥮
+ 0x2396f: "M\x06\U0002396f", // 𣥯
+ 0x23970: "M\x06\U00023970", // 𣥰
+ 0x23971: "M\x06\U00023971", // 𣥱
+ 0x23972: ";\a\U00023972", // 𣥲
+ 0x23973: "M\a\U00023973", // 𣥳
+ 0x23974: "M\a\U00023974", // 𣥴
+ 0x23975: "M\a\U00023975", // 𣥵
+ 0x23976: "M\a\U00023976", // 𣥶
+ 0x23977: "M\a\U00023977", // 𣥷
+ 0x23978: "M\a\U00023978", // 𣥸
+ 0x23979: "M\b\U00023979", // 𣥹
+ 0x2397a: "M\b\U0002397a", // 𣥺
+ 0x2397b: "M\b\U0002397b", // 𣥻
+ 0x2397c: "M\b\U0002397c", // 𣥼
+ 0x2397d: "M\b\U0002397d", // 𣥽
+ 0x2397e: "M\b\U0002397e", // 𣥾
+ 0x2397f: "M\b\U0002397f", // 𣥿
+ 0x23980: "M\b\U00023980", // 𣦀
+ 0x23981: "M\b\U00023981", // 𣦁
+ 0x23982: "M\b\U00023982", // 𣦂
+ 0x23983: "M\b\U00023983", // 𣦃
+ 0x23984: "M\b\U00023984", // 𣦄
+ 0x23985: "M\b\U00023985", // 𣦅
+ 0x23986: "M\b\U00023986", // 𣦆
+ 0x23987: "M\t\U00023987", // 𣦇
+ 0x23988: "M\t\U00023988", // 𣦈
+ 0x23989: "M\t\U00023989", // 𣦉
+ 0x2398a: "M\t\U0002398a", // 𣦊
+ 0x2398b: "\xd3\x00\U0002398b", // 𣦋
+ 0x2398c: "M\t\U0002398c", // 𣦌
+ 0x2398d: "M\t\U0002398d", // 𣦍
+ 0x2398e: "M\t\U0002398e", // 𣦎
+ 0x2398f: "8\n\U0002398f", // 𣦏
+ 0x23990: "M\n\U00023990", // 𣦐
+ 0x23991: "M\n\U00023991", // 𣦑
+ 0x23992: "M\n\U00023992", // 𣦒
+ 0x23993: "M\n\U00023993", // 𣦓
+ 0x23994: "M\v\U00023994", // 𣦔
+ 0x23995: "M\v\U00023995", // 𣦕
+ 0x23996: "M\v\U00023996", // 𣦖
+ 0x23997: "M\v\U00023997", // 𣦗
+ 0x23998: "M\v\U00023998", // 𣦘
+ 0x23999: "M\v\U00023999", // 𣦙
+ 0x2399a: "M\v\U0002399a", // 𣦚
+ 0x2399b: "M\v\U0002399b", // 𣦛
+ 0x2399c: "M\f\U0002399c", // 𣦜
+ 0x2399d: "M\f\U0002399d", // 𣦝
+ 0x2399e: "M\f\U0002399e", // 𣦞
+ 0x2399f: "M\f\U0002399f", // 𣦟
+ 0x239a0: "M\f\U000239a0", // 𣦠
+ 0x239a1: "M\r\U000239a1", // 𣦡
+ 0x239a2: "M\r\U000239a2", // 𣦢
+ 0x239a3: "M\r\U000239a3", // 𣦣
+ 0x239a4: "M\r\U000239a4", // 𣦤
+ 0x239a5: "M\r\U000239a5", // 𣦥
+ 0x239a6: "M\x0e\U000239a6", // 𣦦
+ 0x239a7: "M\x0e\U000239a7", // 𣦧
+ 0x239a8: "M\x0e\U000239a8", // 𣦨
+ 0x239a9: "M\x0e\U000239a9", // 𣦩
+ 0x239aa: "M\x0e\U000239aa", // 𣦪
+ 0x239ab: "M\x0e\U000239ab", // 𣦫
+ 0x239ac: "M\x0f\U000239ac", // 𣦬
+ 0x239ad: ".\x10\U000239ad", // 𣦭
+ 0x239ae: "M\x11\U000239ae", // 𣦮
+ 0x239af: "M\x12\U000239af", // 𣦯
+ 0x239b0: "M\x12\U000239b0", // 𣦰
+ 0x239b1: "M\x13\U000239b1", // 𣦱
+ 0x239b2: "M\x13\U000239b2", // 𣦲
+ 0x239b3: "M\x14\U000239b3", // 𣦳
+ 0x239b4: "M\x14\U000239b4", // 𣦴
+ 0x239b5: "N\x00\U000239b5", // 𣦵
+ 0x239b6: "N\x00\U000239b6", // 𣦶
+ 0x239b7: "N\x01\U000239b7", // 𣦷
+ 0x239b8: "N\x02\U000239b8", // 𣦸
+ 0x239b9: "N\x02\U000239b9", // 𣦹
+ 0x239ba: "N\x02\U000239ba", // 𣦺
+ 0x239bb: "N\x02\U000239bb", // 𣦻
+ 0x239bc: "N\x02\U000239bc", // 𣦼
+ 0x239bd: "N\x02\U000239bd", // 𣦽
+ 0x239be: "N\x02\U000239be", // 𣦾
+ 0x239bf: "N\x03\U000239bf", // 𣦿
+ 0x239c0: "N\x03\U000239c0", // 𣧀
+ 0x239c1: "N\x03\U000239c1", // 𣧁
+ 0x239c2: "N\x03\U000239c2", // 𣧂
+ 0x239c3: "N\x03\U000239c3", // 𣧃
+ 0x239c4: "N\x03\U000239c4", // 𣧄
+ 0x239c5: "N\x03\U000239c5", // 𣧅
+ 0x239c6: "N\x03\U000239c6", // 𣧆
+ 0x239c7: "N\x03\U000239c7", // 𣧇
+ 0x239c8: "N\x03\U000239c8", // 𣧈
+ 0x239c9: "N\x04\U000239c9", // 𣧉
+ 0x239ca: "N\x04\U000239ca", // 𣧊
+ 0x239cb: "N\x04\U000239cb", // 𣧋
+ 0x239cc: "N\x04\U000239cc", // 𣧌
+ 0x239cd: "N\x04\U000239cd", // 𣧍
+ 0x239ce: "N\x04\U000239ce", // 𣧎
+ 0x239cf: "N\x04\U000239cf", // 𣧏
+ 0x239d0: "N\x04\U000239d0", // 𣧐
+ 0x239d1: "N\x04\U000239d1", // 𣧑
+ 0x239d2: "N\x04\U000239d2", // 𣧒
+ 0x239d3: "N\x04\U000239d3", // 𣧓
+ 0x239d4: "N\x04\U000239d4", // 𣧔
+ 0x239d5: "N\x04\U000239d5", // 𣧕
+ 0x239d6: "N\x04\U000239d6", // 𣧖
+ 0x239d7: "N\x04\U000239d7", // 𣧗
+ 0x239d8: "N\x04\U000239d8", // 𣧘
+ 0x239d9: "N\x04\U000239d9", // 𣧙
+ 0x239da: "N\x04\U000239da", // 𣧚
+ 0x239db: "N\x04\U000239db", // 𣧛
+ 0x239dc: "N\x04\U000239dc", // 𣧜
+ 0x239dd: "N\x05\U000239dd", // 𣧝
+ 0x239de: "N\x05\U000239de", // 𣧞
+ 0x239df: "N\x05\U000239df", // 𣧟
+ 0x239e0: "N\x05\U000239e0", // 𣧠
+ 0x239e1: "N\x05\U000239e1", // 𣧡
+ 0x239e2: "N\x05\U000239e2", // 𣧢
+ 0x239e3: "N\x05\U000239e3", // 𣧣
+ 0x239e4: "N\x05\U000239e4", // 𣧤
+ 0x239e5: "N\x05\U000239e5", // 𣧥
+ 0x239e6: "N\x05\U000239e6", // 𣧦
+ 0x239e7: "N\x05\U000239e7", // 𣧧
+ 0x239e8: "N\x05\U000239e8", // 𣧨
+ 0x239e9: "N\x05\U000239e9", // 𣧩
+ 0x239ea: "N\x05\U000239ea", // 𣧪
+ 0x239eb: "N\x05\U000239eb", // 𣧫
+ 0x239ec: "N\x05\U000239ec", // 𣧬
+ 0x239ed: "N\x05\U000239ed", // 𣧭
+ 0x239ee: "N\x05\U000239ee", // 𣧮
+ 0x239ef: "N\x05\U000239ef", // 𣧯
+ 0x239f0: "N\x05\U000239f0", // 𣧰
+ 0x239f1: "N\x05\U000239f1", // 𣧱
+ 0x239f2: "N\x06\U000239f2", // 𣧲
+ 0x239f3: "N\x06\U000239f3", // 𣧳
+ 0x239f4: "N\x06\U000239f4", // 𣧴
+ 0x239f5: "N\x06\U000239f5", // 𣧵
+ 0x239f6: "N\x06\U000239f6", // 𣧶
+ 0x239f7: "N\x06\U000239f7", // 𣧷
+ 0x239f8: "N\x06\U000239f8", // 𣧸
+ 0x239f9: "N\x06\U000239f9", // 𣧹
+ 0x239fa: "N\x06\U000239fa", // 𣧺
+ 0x239fb: "N\x06\U000239fb", // 𣧻
+ 0x239fc: "N\x06\U000239fc", // 𣧼
+ 0x239fd: "N\x06\U000239fd", // 𣧽
+ 0x239fe: "N\x06\U000239fe", // 𣧾
+ 0x239ff: "N\x06\U000239ff", // 𣧿
+ 0x23a00: "N\x06\U00023a00", // 𣨀
+ 0x23a01: "N\x06\U00023a01", // 𣨁
+ 0x23a02: "N\x06\U00023a02", // 𣨂
+ 0x23a03: "N\x06\U00023a03", // 𣨃
+ 0x23a04: "N\x06\U00023a04", // 𣨄
+ 0x23a05: "N\a\U00023a05", // 𣨅
+ 0x23a06: "N\a\U00023a06", // 𣨆
+ 0x23a07: "N\a\U00023a07", // 𣨇
+ 0x23a08: "N\a\U00023a08", // 𣨈
+ 0x23a09: "N\a\U00023a09", // 𣨉
+ 0x23a0a: "N\a\U00023a0a", // 𣨊
+ 0x23a0b: "N\a\U00023a0b", // 𣨋
+ 0x23a0c: "N\a\U00023a0c", // 𣨌
+ 0x23a0d: "N\a\U00023a0d", // 𣨍
+ 0x23a0e: "N\a\U00023a0e", // 𣨎
+ 0x23a0f: "N\a\U00023a0f", // 𣨏
+ 0x23a10: "N\a\U00023a10", // 𣨐
+ 0x23a11: "N\a\U00023a11", // 𣨑
+ 0x23a12: "N\a\U00023a12", // 𣨒
+ 0x23a13: "N\a\U00023a13", // 𣨓
+ 0x23a14: "N\a\U00023a14", // 𣨔
+ 0x23a15: "N\a\U00023a15", // 𣨕
+ 0x23a16: "N\b\U00023a16", // 𣨖
+ 0x23a17: "N\b\U00023a17", // 𣨗
+ 0x23a18: "N\b\U00023a18", // 𣨘
+ 0x23a19: "N\b\U00023a19", // 𣨙
+ 0x23a1a: "N\b\U00023a1a", // 𣨚
+ 0x23a1b: "N\b\U00023a1b", // 𣨛
+ 0x23a1c: "N\b\U00023a1c", // 𣨜
+ 0x23a1d: "N\b\U00023a1d", // 𣨝
+ 0x23a1e: "N\b\U00023a1e", // 𣨞
+ 0x23a1f: "N\b\U00023a1f", // 𣨟
+ 0x23a20: "N\b\U00023a20", // 𣨠
+ 0x23a21: "N\b\U00023a21", // 𣨡
+ 0x23a22: "N\b\U00023a22", // 𣨢
+ 0x23a23: "N\b\U00023a23", // 𣨣
+ 0x23a24: "N\b\U00023a24", // 𣨤
+ 0x23a25: "N\b\U00023a25", // 𣨥
+ 0x23a26: "N\b\U00023a26", // 𣨦
+ 0x23a27: "N\b\U00023a27", // 𣨧
+ 0x23a28: "N\b\U00023a28", // 𣨨
+ 0x23a29: "N\b\U00023a29", // 𣨩
+ 0x23a2a: "N\b\U00023a2a", // 𣨪
+ 0x23a2b: "N\b\U00023a2b", // 𣨫
+ 0x23a2c: "N\b\U00023a2c", // 𣨬
+ 0x23a2d: "N\b\U00023a2d", // 𣨭
+ 0x23a2e: "N\b\U00023a2e", // 𣨮
+ 0x23a2f: "N\b\U00023a2f", // 𣨯
+ 0x23a30: "N\b\U00023a30", // 𣨰
+ 0x23a31: "N\t\U00023a31", // 𣨱
+ 0x23a32: "N\t\U00023a32", // 𣨲
+ 0x23a33: "N\t\U00023a33", // 𣨳
+ 0x23a34: "N\t\U00023a34", // 𣨴
+ 0x23a35: "N\t\U00023a35", // 𣨵
+ 0x23a36: "N\t\U00023a36", // 𣨶
+ 0x23a37: "N\t\U00023a37", // 𣨷
+ 0x23a38: "N\t\U00023a38", // 𣨸
+ 0x23a39: "N\t\U00023a39", // 𣨹
+ 0x23a3a: "N\t\U00023a3a", // 𣨺
+ 0x23a3b: "N\t\U00023a3b", // 𣨻
+ 0x23a3c: "N\t\U00023a3c", // 𣨼
+ 0x23a3d: "N\t\U00023a3d", // 𣨽
+ 0x23a3e: "N\t\U00023a3e", // 𣨾
+ 0x23a3f: "N\t\U00023a3f", // 𣨿
+ 0x23a40: "N\t\U00023a40", // 𣩀
+ 0x23a41: "N\t\U00023a41", // 𣩁
+ 0x23a42: "N\t\U00023a42", // 𣩂
+ 0x23a43: "N\t\U00023a43", // 𣩃
+ 0x23a44: "N\n\U00023a44", // 𣩄
+ 0x23a45: "N\n\U00023a45", // 𣩅
+ 0x23a46: "N\n\U00023a46", // 𣩆
+ 0x23a47: "N\n\U00023a47", // 𣩇
+ 0x23a48: "N\n\U00023a48", // 𣩈
+ 0x23a49: "N\n\U00023a49", // 𣩉
+ 0x23a4a: "N\n\U00023a4a", // 𣩊
+ 0x23a4b: "N\n\U00023a4b", // 𣩋
+ 0x23a4c: "N\n\U00023a4c", // 𣩌
+ 0x23a4d: "N\v\U00023a4d", // 𣩍
+ 0x23a4e: "N\v\U00023a4e", // 𣩎
+ 0x23a4f: "N\v\U00023a4f", // 𣩏
+ 0x23a50: "N\v\U00023a50", // 𣩐
+ 0x23a51: "N\v\U00023a51", // 𣩑
+ 0x23a52: "N\v\U00023a52", // 𣩒
+ 0x23a53: "N\v\U00023a53", // 𣩓
+ 0x23a54: "N\v\U00023a54", // 𣩔
+ 0x23a55: "N\v\U00023a55", // 𣩕
+ 0x23a56: "N\v\U00023a56", // 𣩖
+ 0x23a57: "N\v\U00023a57", // 𣩗
+ 0x23a58: "N\v\U00023a58", // 𣩘
+ 0x23a59: "N\v\U00023a59", // 𣩙
+ 0x23a5a: "N\v\U00023a5a", // 𣩚
+ 0x23a5b: "N\v\U00023a5b", // 𣩛
+ 0x23a5c: "N\v\U00023a5c", // 𣩜
+ 0x23a5d: "N\f\U00023a5d", // 𣩝
+ 0x23a5e: "N\f\U00023a5e", // 𣩞
+ 0x23a5f: "N\f\U00023a5f", // 𣩟
+ 0x23a60: "N\f\U00023a60", // 𣩠
+ 0x23a61: "N\f\U00023a61", // 𣩡
+ 0x23a62: "N\f\U00023a62", // 𣩢
+ 0x23a63: "N\f\U00023a63", // 𣩣
+ 0x23a64: "N\f\U00023a64", // 𣩤
+ 0x23a65: "N\f\U00023a65", // 𣩥
+ 0x23a66: "N\f\U00023a66", // 𣩦
+ 0x23a67: "N\f\U00023a67", // 𣩧
+ 0x23a68: "N\r\U00023a68", // 𣩨
+ 0x23a69: "N\r\U00023a69", // 𣩩
+ 0x23a6a: "N\r\U00023a6a", // 𣩪
+ 0x23a6b: "N\r\U00023a6b", // 𣩫
+ 0x23a6c: "N\r\U00023a6c", // 𣩬
+ 0x23a6d: "N\r\U00023a6d", // 𣩭
+ 0x23a6e: "N\r\U00023a6e", // 𣩮
+ 0x23a6f: "N\x0e\U00023a6f", // 𣩯
+ 0x23a70: "N\x0e\U00023a70", // 𣩰
+ 0x23a71: "N\x0e\U00023a71", // 𣩱
+ 0x23a72: "N\x0e\U00023a72", // 𣩲
+ 0x23a73: "N\x0e\U00023a73", // 𣩳
+ 0x23a74: "N\x0e\U00023a74", // 𣩴
+ 0x23a75: "N\x0e\U00023a75", // 𣩵
+ 0x23a76: "N\x0e\U00023a76", // 𣩶
+ 0x23a77: "N\x0f\U00023a77", // 𣩷
+ 0x23a78: "N\x0f\U00023a78", // 𣩸
+ 0x23a79: "N\x10\U00023a79", // 𣩹
+ 0x23a7a: "N\x10\U00023a7a", // 𣩺
+ 0x23a7b: "N\x10\U00023a7b", // 𣩻
+ 0x23a7c: "N\x11\U00023a7c", // 𣩼
+ 0x23a7d: "N\x11\U00023a7d", // 𣩽
+ 0x23a7e: "N\x12\U00023a7e", // 𣩾
+ 0x23a7f: "N\x13\U00023a7f", // 𣩿
+ 0x23a80: "N\x13\U00023a80", // 𣪀
+ 0x23a81: "N\x13\U00023a81", // 𣪁
+ 0x23a82: "O\x04\U00023a82", // 𣪂
+ 0x23a83: "O\x04\U00023a83", // 𣪃
+ 0x23a84: "O\x04\U00023a84", // 𣪄
+ 0x23a85: "O\x05\U00023a85", // 𣪅
+ 0x23a86: "O\x05\U00023a86", // 𣪆
+ 0x23a87: "O\x05\U00023a87", // 𣪇
+ 0x23a88: "O\x06\U00023a88", // 𣪈
+ 0x23a89: "O\x06\U00023a89", // 𣪉
+ 0x23a8a: "O\x06\U00023a8a", // 𣪊
+ 0x23a8b: "O\a\U00023a8b", // 𣪋
+ 0x23a8c: "O\a\U00023a8c", // 𣪌
+ 0x23a8d: "O\a\U00023a8d", // 𣪍
+ 0x23a8e: "O\a\U00023a8e", // 𣪎
+ 0x23a8f: "O\a\U00023a8f", // 𣪏
+ 0x23a90: "O\a\U00023a90", // 𣪐
+ 0x23a91: "O\a\U00023a91", // 𣪑
+ 0x23a92: "O\a\U00023a92", // 𣪒
+ 0x23a93: "O\a\U00023a93", // 𣪓
+ 0x23a94: "O\a\U00023a94", // 𣪔
+ 0x23a95: "O\a\U00023a95", // 𣪕
+ 0x23a96: "O\a\U00023a96", // 𣪖
+ 0x23a97: "O\a\U00023a97", // 𣪗
+ 0x23a98: "O\a\U00023a98", // 𣪘
+ 0x23a99: "O\b\U00023a99", // 𣪙
+ 0x23a9a: "O\b\U00023a9a", // 𣪚
+ 0x23a9b: "O\b\U00023a9b", // 𣪛
+ 0x23a9c: "O\b\U00023a9c", // 𣪜
+ 0x23a9d: "O\b\U00023a9d", // 𣪝
+ 0x23a9e: "O\b\U00023a9e", // 𣪞
+ 0x23a9f: "O\b\U00023a9f", // 𣪟
+ 0x23aa0: "O\t\U00023aa0", // 𣪠
+ 0x23aa1: "O\t\U00023aa1", // 𣪡
+ 0x23aa2: "O\t\U00023aa2", // 𣪢
+ 0x23aa3: "O\t\U00023aa3", // 𣪣
+ 0x23aa4: "O\t\U00023aa4", // 𣪤
+ 0x23aa5: "O\t\U00023aa5", // 𣪥
+ 0x23aa6: "O\t\U00023aa6", // 𣪦
+ 0x23aa7: "O\t\U00023aa7", // 𣪧
+ 0x23aa8: "O\t\U00023aa8", // 𣪨
+ 0x23aa9: "O\t\U00023aa9", // 𣪩
+ 0x23aaa: "O\t\U00023aaa", // 𣪪
+ 0x23aab: "O\t\U00023aab", // 𣪫
+ 0x23aac: "O\t\U00023aac", // 𣪬
+ 0x23aad: "m\b\U00023aad", // 𣪭
+ 0x23aae: "O\n\U00023aae", // 𣪮
+ 0x23aaf: "O\n\U00023aaf", // 𣪯
+ 0x23ab0: "O\n\U00023ab0", // 𣪰
+ 0x23ab1: "O\n\U00023ab1", // 𣪱
+ 0x23ab2: "O\n\U00023ab2", // 𣪲
+ 0x23ab3: "O\n\U00023ab3", // 𣪳
+ 0x23ab4: "O\n\U00023ab4", // 𣪴
+ 0x23ab5: "O\n\U00023ab5", // 𣪵
+ 0x23ab6: "O\v\U00023ab6", // 𣪶
+ 0x23ab7: "O\v\U00023ab7", // 𣪷
+ 0x23ab8: "O\v\U00023ab8", // 𣪸
+ 0x23ab9: "O\v\U00023ab9", // 𣪹
+ 0x23aba: "O\v\U00023aba", // 𣪺
+ 0x23abb: "O\f\U00023abb", // 𣪻
+ 0x23abc: "O\f\U00023abc", // 𣪼
+ 0x23abd: "O\f\U00023abd", // 𣪽
+ 0x23abe: "O\f\U00023abe", // 𣪾
+ 0x23abf: "O\f\U00023abf", // 𣪿
+ 0x23ac0: "O\f\U00023ac0", // 𣫀
+ 0x23ac1: "O\f\U00023ac1", // 𣫁
+ 0x23ac2: "O\f\U00023ac2", // 𣫂
+ 0x23ac3: "O\f\U00023ac3", // 𣫃
+ 0x23ac4: "O\f\U00023ac4", // 𣫄
+ 0x23ac5: "O\f\U00023ac5", // 𣫅
+ 0x23ac6: "O\f\U00023ac6", // 𣫆
+ 0x23ac7: "O\f\U00023ac7", // 𣫇
+ 0x23ac8: "O\f\U00023ac8", // 𣫈
+ 0x23ac9: "O\f\U00023ac9", // 𣫉
+ 0x23aca: "O\f\U00023aca", // 𣫊
+ 0x23acb: "O\f\U00023acb", // 𣫋
+ 0x23acc: "O\r\U00023acc", // 𣫌
+ 0x23acd: "O\r\U00023acd", // 𣫍
+ 0x23ace: "O\r\U00023ace", // 𣫎
+ 0x23acf: "O\r\U00023acf", // 𣫏
+ 0x23ad0: "O\x0e\U00023ad0", // 𣫐
+ 0x23ad1: "O\x0e\U00023ad1", // 𣫑
+ 0x23ad2: "O\x0e\U00023ad2", // 𣫒
+ 0x23ad3: "O\x0e\U00023ad3", // 𣫓
+ 0x23ad4: "O\x0e\U00023ad4", // 𣫔
+ 0x23ad5: "O\x0e\U00023ad5", // 𣫕
+ 0x23ad6: "O\x0e\U00023ad6", // 𣫖
+ 0x23ad7: "O\x0e\U00023ad7", // 𣫗
+ 0x23ad8: "O\x0f\U00023ad8", // 𣫘
+ 0x23ad9: "O\x0f\U00023ad9", // 𣫙
+ 0x23ada: "O\x0f\U00023ada", // 𣫚
+ 0x23adb: "O\x0f\U00023adb", // 𣫛
+ 0x23adc: "O\x0f\U00023adc", // 𣫜
+ 0x23add: "O\x0f\U00023add", // 𣫝
+ 0x23ade: "O\x10\U00023ade", // 𣫞
+ 0x23adf: "O\x10\U00023adf", // 𣫟
+ 0x23ae0: "O\x11\U00023ae0", // 𣫠
+ 0x23ae1: "O\x11\U00023ae1", // 𣫡
+ 0x23ae2: "O\x13\U00023ae2", // 𣫢
+ 0x23ae3: "O\x13\U00023ae3", // 𣫣
+ 0x23ae4: "O\x13\U00023ae4", // 𣫤
+ 0x23ae5: "O\x13\U00023ae5", // 𣫥
+ 0x23ae6: "O\x14\U00023ae6", // 𣫦
+ 0x23ae7: "O\x14\U00023ae7", // 𣫧
+ 0x23ae8: "O\x14\U00023ae8", // 𣫨
+ 0x23ae9: "O\x15\U00023ae9", // 𣫩
+ 0x23aea: "O\x17\U00023aea", // 𣫪
+ 0x23aeb: "O\x17\U00023aeb", // 𣫫
+ 0x23aec: "P\x00\U00023aec", // 𣫬
+ 0x23aed: "P\x02\U00023aed", // 𣫭
+ 0x23aee: "P\x03\U00023aee", // 𣫮
+ 0x23aef: "P\x04\U00023aef", // 𣫯
+ 0x23af0: "P\x04\U00023af0", // 𣫰
+ 0x23af1: "P\x04\U00023af1", // 𣫱
+ 0x23af2: "P\x04\U00023af2", // 𣫲
+ 0x23af3: "P\x05\U00023af3", // 𣫳
+ 0x23af4: "P\x06\U00023af4", // 𣫴
+ 0x23af5: "P\a\U00023af5", // 𣫵
+ 0x23af6: "P\a\U00023af6", // 𣫶
+ 0x23af7: "P\a\U00023af7", // 𣫷
+ 0x23af8: "P\a\U00023af8", // 𣫸
+ 0x23af9: "P\t\U00023af9", // 𣫹
+ 0x23afa: "P\n\U00023afa", // 𣫺
+ 0x23afb: "P\n\U00023afb", // 𣫻
+ 0x23afc: "P\n\U00023afc", // 𣫼
+ 0x23afd: "P\f\U00023afd", // 𣫽
+ 0x23afe: "P\f\U00023afe", // 𣫾
+ 0x23aff: "P\r\U00023aff", // 𣫿
+ 0x23b00: "P\x0f\U00023b00", // 𣬀
+ 0x23b01: "P\x12\U00023b01", // 𣬁
+ 0x23b02: "Q\x03\U00023b02", // 𣬂
+ 0x23b03: "Q\x03\U00023b03", // 𣬃
+ 0x23b04: "Q\x04\U00023b04", // 𣬄
+ 0x23b05: "Q\x04\U00023b05", // 𣬅
+ 0x23b06: "Q\x04\U00023b06", // 𣬆
+ 0x23b07: "Q\x04\U00023b07", // 𣬇
+ 0x23b08: "Q\x06\U00023b08", // 𣬈
+ 0x23b09: "Q\x06\U00023b09", // 𣬉
+ 0x23b0a: "Q\x06\U00023b0a", // 𣬊
+ 0x23b0b: "Q\a\U00023b0b", // 𣬋
+ 0x23b0c: "Q\a\U00023b0c", // 𣬌
+ 0x23b0d: "Q\t\U00023b0d", // 𣬍
+ 0x23b0e: "Q\n\U00023b0e", // 𣬎
+ 0x23b0f: "Q\n\U00023b0f", // 𣬏
+ 0x23b10: "Q\n\U00023b10", // 𣬐
+ 0x23b11: "Q\n\U00023b11", // 𣬑
+ 0x23b12: "Q\v\U00023b12", // 𣬒
+ 0x23b13: "Q\f\U00023b13", // 𣬓
+ 0x23b14: "Q\f\U00023b14", // 𣬔
+ 0x23b15: "Q\r\U00023b15", // 𣬕
+ 0x23b16: "Q\x0f\U00023b16", // 𣬖
+ 0x23b17: "Q\x10\U00023b17", // 𣬗
+ 0x23b18: "Q\x10\U00023b18", // 𣬘
+ 0x23b19: "Q\x12\U00023b19", // 𣬙
+ 0x23b1a: "Q\x17\U00023b1a", // 𣬚
+ 0x23b1b: "R\x00\U00023b1b", // 𣬛
+ 0x23b1c: "R\x02\U00023b1c", // 𣬜
+ 0x23b1d: "R\x02\U00023b1d", // 𣬝
+ 0x23b1e: "R\x02\U00023b1e", // 𣬞
+ 0x23b1f: "R\x02\U00023b1f", // 𣬟
+ 0x23b20: "R\x02\U00023b20", // 𣬠
+ 0x23b21: "R\x03\U00023b21", // 𣬡
+ 0x23b22: "R\x03\U00023b22", // 𣬢
+ 0x23b23: "R\x03\U00023b23", // 𣬣
+ 0x23b24: "R\x03\U00023b24", // 𣬤
+ 0x23b25: "R\x03\U00023b25", // 𣬥
+ 0x23b26: "R\x03\U00023b26", // 𣬦
+ 0x23b27: "R\x03\U00023b27", // 𣬧
+ 0x23b28: "R\x03\U00023b28", // 𣬨
+ 0x23b29: "R\x04\U00023b29", // 𣬩
+ 0x23b2a: "R\x04\U00023b2a", // 𣬪
+ 0x23b2b: "R\x04\U00023b2b", // 𣬫
+ 0x23b2c: "R\x04\U00023b2c", // 𣬬
+ 0x23b2d: "R\x04\U00023b2d", // 𣬭
+ 0x23b2e: "R\x04\U00023b2e", // 𣬮
+ 0x23b2f: "R\x04\U00023b2f", // 𣬯
+ 0x23b30: "R\x04\U00023b30", // 𣬰
+ 0x23b31: "R\x04\U00023b31", // 𣬱
+ 0x23b32: "R\x04\U00023b32", // 𣬲
+ 0x23b33: "R\x04\U00023b33", // 𣬳
+ 0x23b34: "R\x04\U00023b34", // 𣬴
+ 0x23b35: "R\x04\U00023b35", // 𣬵
+ 0x23b36: "R\x04\U00023b36", // 𣬶
+ 0x23b37: "R\x04\U00023b37", // 𣬷
+ 0x23b38: "R\x05\U00023b38", // 𣬸
+ 0x23b39: "R\x05\U00023b39", // 𣬹
+ 0x23b3a: "R\x05\U00023b3a", // 𣬺
+ 0x23b3b: "R\x05\U00023b3b", // 𣬻
+ 0x23b3c: "R\x05\U00023b3c", // 𣬼
+ 0x23b3d: "R\x05\U00023b3d", // 𣬽
+ 0x23b3e: "R\x05\U00023b3e", // 𣬾
+ 0x23b3f: "R\x05\U00023b3f", // 𣬿
+ 0x23b40: "R\x05\U00023b40", // 𣭀
+ 0x23b41: "R\x05\U00023b41", // 𣭁
+ 0x23b42: "R\x05\U00023b42", // 𣭂
+ 0x23b43: "R\x05\U00023b43", // 𣭃
+ 0x23b44: "R\x05\U00023b44", // 𣭄
+ 0x23b45: "R\x05\U00023b45", // 𣭅
+ 0x23b46: "R\x05\U00023b46", // 𣭆
+ 0x23b47: "R\x05\U00023b47", // 𣭇
+ 0x23b48: "R\x05\U00023b48", // 𣭈
+ 0x23b49: "R\x05\U00023b49", // 𣭉
+ 0x23b4a: "R\x05\U00023b4a", // 𣭊
+ 0x23b4b: "R\x05\U00023b4b", // 𣭋
+ 0x23b4c: "R\x05\U00023b4c", // 𣭌
+ 0x23b4d: "R\x05\U00023b4d", // 𣭍
+ 0x23b4e: "R\x05\U00023b4e", // 𣭎
+ 0x23b4f: "R\x05\U00023b4f", // 𣭏
+ 0x23b50: "R\x05\U00023b50", // 𣭐
+ 0x23b51: "R\x05\U00023b51", // 𣭑
+ 0x23b52: "R\x05\U00023b52", // 𣭒
+ 0x23b53: "R\x05\U00023b53", // 𣭓
+ 0x23b54: "R\x05\U00023b54", // 𣭔
+ 0x23b55: "R\x05\U00023b55", // 𣭕
+ 0x23b56: "R\x05\U00023b56", // 𣭖
+ 0x23b57: "R\x05\U00023b57", // 𣭗
+ 0x23b58: "R\x05\U00023b58", // 𣭘
+ 0x23b59: "R\x05\U00023b59", // 𣭙
+ 0x23b5a: "R\x05\U00023b5a", // 𣭚
+ 0x23b5b: "R\x05\U00023b5b", // 𣭛
+ 0x23b5c: "R\x06\U00023b5c", // 𣭜
+ 0x23b5d: "R\x06\U00023b5d", // 𣭝
+ 0x23b5e: "R\x06\U00023b5e", // 𣭞
+ 0x23b5f: "R\x06\U00023b5f", // 𣭟
+ 0x23b60: "R\x06\U00023b60", // 𣭠
+ 0x23b61: "R\x06\U00023b61", // 𣭡
+ 0x23b62: "R\x06\U00023b62", // 𣭢
+ 0x23b63: "R\x06\U00023b63", // 𣭣
+ 0x23b64: "R\x06\U00023b64", // 𣭤
+ 0x23b65: "R\x06\U00023b65", // 𣭥
+ 0x23b66: "R\x06\U00023b66", // 𣭦
+ 0x23b67: "R\x06\U00023b67", // 𣭧
+ 0x23b68: "R\x06\U00023b68", // 𣭨
+ 0x23b69: "R\x06\U00023b69", // 𣭩
+ 0x23b6a: "R\x06\U00023b6a", // 𣭪
+ 0x23b6b: "R\x06\U00023b6b", // 𣭫
+ 0x23b6c: "R\x06\U00023b6c", // 𣭬
+ 0x23b6d: "R\x06\U00023b6d", // 𣭭
+ 0x23b6e: "R\x06\U00023b6e", // 𣭮
+ 0x23b6f: "R\x06\U00023b6f", // 𣭯
+ 0x23b70: "R\x06\U00023b70", // 𣭰
+ 0x23b71: "R\a\U00023b71", // 𣭱
+ 0x23b72: "R\a\U00023b72", // 𣭲
+ 0x23b73: "R\a\U00023b73", // 𣭳
+ 0x23b74: "R\a\U00023b74", // 𣭴
+ 0x23b75: "R\a\U00023b75", // 𣭵
+ 0x23b76: "R\a\U00023b76", // 𣭶
+ 0x23b77: "R\a\U00023b77", // 𣭷
+ 0x23b78: "R\a\U00023b78", // 𣭸
+ 0x23b79: "R\a\U00023b79", // 𣭹
+ 0x23b7a: "R\a\U00023b7a", // 𣭺
+ 0x23b7b: "R\a\U00023b7b", // 𣭻
+ 0x23b7c: "R\a\U00023b7c", // 𣭼
+ 0x23b7d: "R\a\U00023b7d", // 𣭽
+ 0x23b7e: "R\a\U00023b7e", // 𣭾
+ 0x23b7f: "R\a\U00023b7f", // 𣭿
+ 0x23b80: "R\a\U00023b80", // 𣮀
+ 0x23b81: "R\a\U00023b81", // 𣮁
+ 0x23b82: "R\a\U00023b82", // 𣮂
+ 0x23b83: "R\a\U00023b83", // 𣮃
+ 0x23b84: "R\a\U00023b84", // 𣮄
+ 0x23b85: "R\a\U00023b85", // 𣮅
+ 0x23b86: "R\a\U00023b86", // 𣮆
+ 0x23b87: "R\a\U00023b87", // 𣮇
+ 0x23b88: "R\b\U00023b88", // 𣮈
+ 0x23b89: "R\b\U00023b89", // 𣮉
+ 0x23b8a: "R\b\U00023b8a", // 𣮊
+ 0x23b8b: "R\b\U00023b8b", // 𣮋
+ 0x23b8c: "R\b\U00023b8c", // 𣮌
+ 0x23b8d: "R\b\U00023b8d", // 𣮍
+ 0x23b8e: "R\b\U00023b8e", // 𣮎
+ 0x23b8f: "R\b\U00023b8f", // 𣮏
+ 0x23b90: "R\b\U00023b90", // 𣮐
+ 0x23b91: "R\b\U00023b91", // 𣮑
+ 0x23b92: "R\b\U00023b92", // 𣮒
+ 0x23b93: "R\b\U00023b93", // 𣮓
+ 0x23b94: "R\b\U00023b94", // 𣮔
+ 0x23b95: "R\b\U00023b95", // 𣮕
+ 0x23b96: "R\b\U00023b96", // 𣮖
+ 0x23b97: "R\b\U00023b97", // 𣮗
+ 0x23b98: "R\b\U00023b98", // 𣮘
+ 0x23b99: "R\b\U00023b99", // 𣮙
+ 0x23b9a: "R\b\U00023b9a", // 𣮚
+ 0x23b9b: "R\b\U00023b9b", // 𣮛
+ 0x23b9c: "R\b\U00023b9c", // 𣮜
+ 0x23b9d: "R\b\U00023b9d", // 𣮝
+ 0x23b9e: "R\b\U00023b9e", // 𣮞
+ 0x23b9f: "R\b\U00023b9f", // 𣮟
+ 0x23ba0: "R\b\U00023ba0", // 𣮠
+ 0x23ba1: "R\b\U00023ba1", // 𣮡
+ 0x23ba2: "R\b\U00023ba2", // 𣮢
+ 0x23ba3: "R\b\U00023ba3", // 𣮣
+ 0x23ba4: "R\b\U00023ba4", // 𣮤
+ 0x23ba5: "R\b\U00023ba5", // 𣮥
+ 0x23ba6: "R\b\U00023ba6", // 𣮦
+ 0x23ba7: "R\b\U00023ba7", // 𣮧
+ 0x23ba8: "R\t\U00023ba8", // 𣮨
+ 0x23ba9: "R\t\U00023ba9", // 𣮩
+ 0x23baa: "R\t\U00023baa", // 𣮪
+ 0x23bab: "R\t\U00023bab", // 𣮫
+ 0x23bac: "R\t\U00023bac", // 𣮬
+ 0x23bad: "R\t\U00023bad", // 𣮭
+ 0x23bae: "R\t\U00023bae", // 𣮮
+ 0x23baf: "R\t\U00023baf", // 𣮯
+ 0x23bb0: "R\t\U00023bb0", // 𣮰
+ 0x23bb1: "R\t\U00023bb1", // 𣮱
+ 0x23bb2: "R\t\U00023bb2", // 𣮲
+ 0x23bb3: "R\t\U00023bb3", // 𣮳
+ 0x23bb4: "R\t\U00023bb4", // 𣮴
+ 0x23bb5: "R\t\U00023bb5", // 𣮵
+ 0x23bb6: "R\t\U00023bb6", // 𣮶
+ 0x23bb7: "R\t\U00023bb7", // 𣮷
+ 0x23bb8: "R\t\U00023bb8", // 𣮸
+ 0x23bb9: "R\t\U00023bb9", // 𣮹
+ 0x23bba: "R\t\U00023bba", // 𣮺
+ 0x23bbb: "R\t\U00023bbb", // 𣮻
+ 0x23bbc: "R\t\U00023bbc", // 𣮼
+ 0x23bbd: "R\t\U00023bbd", // 𣮽
+ 0x23bbe: "R\t\U00023bbe", // 𣮾
+ 0x23bbf: "R\t\U00023bbf", // 𣮿
+ 0x23bc0: "R\t\U00023bc0", // 𣯀
+ 0x23bc1: "R\t\U00023bc1", // 𣯁
+ 0x23bc2: "R\t\U00023bc2", // 𣯂
+ 0x23bc3: "R\t\U00023bc3", // 𣯃
+ 0x23bc4: "R\t\U00023bc4", // 𣯄
+ 0x23bc5: "R\n\U00023bc5", // 𣯅
+ 0x23bc6: "R\n\U00023bc6", // 𣯆
+ 0x23bc7: "R\n\U00023bc7", // 𣯇
+ 0x23bc8: "R\n\U00023bc8", // 𣯈
+ 0x23bc9: "R\n\U00023bc9", // 𣯉
+ 0x23bca: "R\n\U00023bca", // 𣯊
+ 0x23bcb: "R\n\U00023bcb", // 𣯋
+ 0x23bcc: "R\n\U00023bcc", // 𣯌
+ 0x23bcd: "R\n\U00023bcd", // 𣯍
+ 0x23bce: "R\n\U00023bce", // 𣯎
+ 0x23bcf: "R\n\U00023bcf", // 𣯏
+ 0x23bd0: "R\n\U00023bd0", // 𣯐
+ 0x23bd1: "R\n\U00023bd1", // 𣯑
+ 0x23bd2: "R\n\U00023bd2", // 𣯒
+ 0x23bd3: "R\n\U00023bd3", // 𣯓
+ 0x23bd4: "R\n\U00023bd4", // 𣯔
+ 0x23bd5: "R\n\U00023bd5", // 𣯕
+ 0x23bd6: "R\n\U00023bd6", // 𣯖
+ 0x23bd7: "R\n\U00023bd7", // 𣯗
+ 0x23bd8: "R\n\U00023bd8", // 𣯘
+ 0x23bd9: "R\n\U00023bd9", // 𣯙
+ 0x23bda: "R\n\U00023bda", // 𣯚
+ 0x23bdb: "R\n\U00023bdb", // 𣯛
+ 0x23bdc: "R\n\U00023bdc", // 𣯜
+ 0x23bdd: "R\n\U00023bdd", // 𣯝
+ 0x23bde: "R\n\U00023bde", // 𣯞
+ 0x23bdf: "R\n\U00023bdf", // 𣯟
+ 0x23be0: "R\n\U00023be0", // 𣯠
+ 0x23be1: "R\n\U00023be1", // 𣯡
+ 0x23be2: "R\n\U00023be2", // 𣯢
+ 0x23be3: "R\v\U00023be3", // 𣯣
+ 0x23be4: "R\v\U00023be4", // 𣯤
+ 0x23be5: "R\v\U00023be5", // 𣯥
+ 0x23be6: "R\v\U00023be6", // 𣯦
+ 0x23be7: "R\v\U00023be7", // 𣯧
+ 0x23be8: "R\v\U00023be8", // 𣯨
+ 0x23be9: "R\v\U00023be9", // 𣯩
+ 0x23bea: "R\v\U00023bea", // 𣯪
+ 0x23beb: "R\v\U00023beb", // 𣯫
+ 0x23bec: "R\v\U00023bec", // 𣯬
+ 0x23bed: "R\v\U00023bed", // 𣯭
+ 0x23bee: "R\v\U00023bee", // 𣯮
+ 0x23bef: "R\v\U00023bef", // 𣯯
+ 0x23bf0: "R\v\U00023bf0", // 𣯰
+ 0x23bf1: "R\v\U00023bf1", // 𣯱
+ 0x23bf2: "R\v\U00023bf2", // 𣯲
+ 0x23bf3: "R\v\U00023bf3", // 𣯳
+ 0x23bf4: "R\v\U00023bf4", // 𣯴
+ 0x23bf5: "R\v\U00023bf5", // 𣯵
+ 0x23bf6: "R\v\U00023bf6", // 𣯶
+ 0x23bf7: "R\v\U00023bf7", // 𣯷
+ 0x23bf8: "R\f\U00023bf8", // 𣯸
+ 0x23bf9: "R\f\U00023bf9", // 𣯹
+ 0x23bfa: "R\f\U00023bfa", // 𣯺
+ 0x23bfb: "R\f\U00023bfb", // 𣯻
+ 0x23bfc: "R\f\U00023bfc", // 𣯼
+ 0x23bfd: "R\f\U00023bfd", // 𣯽
+ 0x23bfe: "R\f\U00023bfe", // 𣯾
+ 0x23bff: "R\f\U00023bff", // 𣯿
+ 0x23c00: "R\f\U00023c00", // 𣰀
+ 0x23c01: "R\f\U00023c01", // 𣰁
+ 0x23c02: "R\f\U00023c02", // 𣰂
+ 0x23c03: "R\f\U00023c03", // 𣰃
+ 0x23c04: "R\f\U00023c04", // 𣰄
+ 0x23c05: "R\f\U00023c05", // 𣰅
+ 0x23c06: "R\f\U00023c06", // 𣰆
+ 0x23c07: "R\f\U00023c07", // 𣰇
+ 0x23c08: "R\f\U00023c08", // 𣰈
+ 0x23c09: "R\f\U00023c09", // 𣰉
+ 0x23c0a: "R\r\U00023c0a", // 𣰊
+ 0x23c0b: "R\r\U00023c0b", // 𣰋
+ 0x23c0c: "R\r\U00023c0c", // 𣰌
+ 0x23c0d: "R\r\U00023c0d", // 𣰍
+ 0x23c0e: "R\r\U00023c0e", // 𣰎
+ 0x23c0f: "R\r\U00023c0f", // 𣰏
+ 0x23c10: "R\r\U00023c10", // 𣰐
+ 0x23c11: "R\r\U00023c11", // 𣰑
+ 0x23c12: "R\r\U00023c12", // 𣰒
+ 0x23c13: "R\r\U00023c13", // 𣰓
+ 0x23c14: "R\r\U00023c14", // 𣰔
+ 0x23c15: "R\r\U00023c15", // 𣰕
+ 0x23c16: "R\r\U00023c16", // 𣰖
+ 0x23c17: "R\r\U00023c17", // 𣰗
+ 0x23c18: "R\r\U00023c18", // 𣰘
+ 0x23c19: "R\r\U00023c19", // 𣰙
+ 0x23c1a: "R\x0e\U00023c1a", // 𣰚
+ 0x23c1b: "R\x0e\U00023c1b", // 𣰛
+ 0x23c1c: "R\x0e\U00023c1c", // 𣰜
+ 0x23c1d: "R\x0e\U00023c1d", // 𣰝
+ 0x23c1e: "R\x0e\U00023c1e", // 𣰞
+ 0x23c1f: "R\x0e\U00023c1f", // 𣰟
+ 0x23c20: "R\x0e\U00023c20", // 𣰠
+ 0x23c21: "R\x0e\U00023c21", // 𣰡
+ 0x23c22: "R\x0e\U00023c22", // 𣰢
+ 0x23c23: "R\x0e\U00023c23", // 𣰣
+ 0x23c24: "R\x0e\U00023c24", // 𣰤
+ 0x23c25: "R\x0e\U00023c25", // 𣰥
+ 0x23c26: "R\x0e\U00023c26", // 𣰦
+ 0x23c27: "R\x0e\U00023c27", // 𣰧
+ 0x23c28: "R\x0e\U00023c28", // 𣰨
+ 0x23c29: "R\x0e\U00023c29", // 𣰩
+ 0x23c2a: "R\x0e\U00023c2a", // 𣰪
+ 0x23c2b: "R\x0f\U00023c2b", // 𣰫
+ 0x23c2c: "R\x0f\U00023c2c", // 𣰬
+ 0x23c2d: "R\x0f\U00023c2d", // 𣰭
+ 0x23c2e: "R\x0f\U00023c2e", // 𣰮
+ 0x23c2f: "R\x0f\U00023c2f", // 𣰯
+ 0x23c30: "R\x0f\U00023c30", // 𣰰
+ 0x23c31: "R\x10\U00023c31", // 𣰱
+ 0x23c32: "R\x10\U00023c32", // 𣰲
+ 0x23c33: "R\x10\U00023c33", // 𣰳
+ 0x23c34: "R\x10\U00023c34", // 𣰴
+ 0x23c35: "R\x10\U00023c35", // 𣰵
+ 0x23c36: "R\x11\U00023c36", // 𣰶
+ 0x23c37: "R\x11\U00023c37", // 𣰷
+ 0x23c38: "R\x11\U00023c38", // 𣰸
+ 0x23c39: "R\x11\U00023c39", // 𣰹
+ 0x23c3a: "R\x11\U00023c3a", // 𣰺
+ 0x23c3b: "R\x12\U00023c3b", // 𣰻
+ 0x23c3c: "R\x12\U00023c3c", // 𣰼
+ 0x23c3d: "R\x12\U00023c3d", // 𣰽
+ 0x23c3e: "R\x12\U00023c3e", // 𣰾
+ 0x23c3f: "R\x13\U00023c3f", // 𣰿
+ 0x23c40: "R\x13\U00023c40", // 𣱀
+ 0x23c41: "R\x13\U00023c41", // 𣱁
+ 0x23c42: "R\x16\U00023c42", // 𣱂
+ 0x23c43: "R\x16\U00023c43", // 𣱃
+ 0x23c44: "R\x18\U00023c44", // 𣱄
+ 0x23c45: "S\x04\U00023c45", // 𣱅
+ 0x23c46: "S\x04\U00023c46", // 𣱆
+ 0x23c47: "S\x05\U00023c47", // 𣱇
+ 0x23c48: "S\x05\U00023c48", // 𣱈
+ 0x23c49: "S\x05\U00023c49", // 𣱉
+ 0x23c4a: "S\x05\U00023c4a", // 𣱊
+ 0x23c4b: "S\a\U00023c4b", // 𣱋
+ 0x23c4c: "S\a\U00023c4c", // 𣱌
+ 0x23c4d: "S\a\U00023c4d", // 𣱍
+ 0x23c4e: "S\a\U00023c4e", // 𣱎
+ 0x23c4f: "S\t\U00023c4f", // 𣱏
+ 0x23c50: "S\n\U00023c50", // 𣱐
+ 0x23c51: "S\f\U00023c51", // 𣱑
+ 0x23c52: "S\r\U00023c52", // 𣱒
+ 0x23c53: "S\x0e\U00023c53", // 𣱓
+ 0x23c54: "S\x0e\U00023c54", // 𣱔
+ 0x23c55: "T\x02\U00023c55", // 𣱕
+ 0x23c56: "T\x02\U00023c56", // 𣱖
+ 0x23c57: "T\x03\U00023c57", // 𣱗
+ 0x23c58: "T\x03\U00023c58", // 𣱘
+ 0x23c59: "T\x04\U00023c59", // 𣱙
+ 0x23c5a: "T\x04\U00023c5a", // 𣱚
+ 0x23c5b: "T\x04\U00023c5b", // 𣱛
+ 0x23c5c: "T\x05\U00023c5c", // 𣱜
+ 0x23c5d: "T\x05\U00023c5d", // 𣱝
+ 0x23c5e: "T\x05\U00023c5e", // 𣱞
+ 0x23c5f: "T\x05\U00023c5f", // 𣱟
+ 0x23c60: "T\x05\U00023c60", // 𣱠
+ 0x23c61: "T\x06\U00023c61", // 𣱡
+ 0x23c62: "T\b\U00023c62", // 𣱢
+ 0x23c63: "T\a\U00023c63", // 𣱣
+ 0x23c64: "T\b\U00023c64", // 𣱤
+ 0x23c65: "T\b\U00023c65", // 𣱥
+ 0x23c66: "T\t\U00023c66", // 𣱦
+ 0x23c67: "T\t\U00023c67", // 𣱧
+ 0x23c68: "T\t\U00023c68", // 𣱨
+ 0x23c69: "T\n\U00023c69", // 𣱩
+ 0x23c6a: "T\v\U00023c6a", // 𣱪
+ 0x23c6b: "T\v\U00023c6b", // 𣱫
+ 0x23c6c: "T\r\U00023c6c", // 𣱬
+ 0x23c6d: "T\r\U00023c6d", // 𣱭
+ 0x23c6e: "T\x0e\U00023c6e", // 𣱮
+ 0x23c6f: "T\x11\U00023c6f", // 𣱯
+ 0x23c70: "T\x11\U00023c70", // 𣱰
+ 0x23c71: "U\x00\U00023c71", // 𣱱
+ 0x23c72: "U\x01\U00023c72", // 𣱲
+ 0x23c73: "U\x01\U00023c73", // 𣱳
+ 0x23c74: "U\x01\U00023c74", // 𣱴
+ 0x23c75: "U\x02\U00023c75", // 𣱵
+ 0x23c76: "U\x02\U00023c76", // 𣱶
+ 0x23c77: "U\x02\U00023c77", // 𣱷
+ 0x23c78: "U\x02\U00023c78", // 𣱸
+ 0x23c79: "U\x02\U00023c79", // 𣱹
+ 0x23c7a: "U\x02\U00023c7a", // 𣱺
+ 0x23c7b: "U\x02\U00023c7b", // 𣱻
+ 0x23c7c: "U\x02\U00023c7c", // 𣱼
+ 0x23c7d: "U\x02\U00023c7d", // 𣱽
+ 0x23c7e: "U\x02\U00023c7e", // 𣱾
+ 0x23c7f: "U\x02\U00023c7f", // 𣱿
+ 0x23c80: "U\x03\U00023c80", // 𣲀
+ 0x23c81: "U\x03\U00023c81", // 𣲁
+ 0x23c82: "U\x03\U00023c82", // 𣲂
+ 0x23c83: "U\x03\U00023c83", // 𣲃
+ 0x23c84: "U\x03\U00023c84", // 𣲄
+ 0x23c85: "U\x03\U00023c85", // 𣲅
+ 0x23c86: "U\x03\U00023c86", // 𣲆
+ 0x23c87: "U\x03\U00023c87", // 𣲇
+ 0x23c88: "U\x03\U00023c88", // 𣲈
+ 0x23c89: "U\x03\U00023c89", // 𣲉
+ 0x23c8a: "U\x03\U00023c8a", // 𣲊
+ 0x23c8b: "U\x03\U00023c8b", // 𣲋
+ 0x23c8c: "U\x03\U00023c8c", // 𣲌
+ 0x23c8d: "U\x03\U00023c8d", // 𣲍
+ 0x23c8e: "U\x04\U00023c8e", // 𣲎
+ 0x23c8f: "U\x04\U00023c8f", // 𣲏
+ 0x23c90: "U\x04\U00023c90", // 𣲐
+ 0x23c91: "U\x04\U00023c91", // 𣲑
+ 0x23c92: "U\x04\U00023c92", // 𣲒
+ 0x23c93: "U\x04\U00023c93", // 𣲓
+ 0x23c94: "U\x04\U00023c94", // 𣲔
+ 0x23c95: "U\x04\U00023c95", // 𣲕
+ 0x23c96: "U\x04\U00023c96", // 𣲖
+ 0x23c97: "U\x04\U00023c97", // 𣲗
+ 0x23c98: "U\x04\U00023c98", // 𣲘
+ 0x23c99: "U\x04\U00023c99", // 𣲙
+ 0x23c9a: "U\x04\U00023c9a", // 𣲚
+ 0x23c9b: "U\x04\U00023c9b", // 𣲛
+ 0x23c9c: "U\x04\U00023c9c", // 𣲜
+ 0x23c9d: "U\x04\U00023c9d", // 𣲝
+ 0x23c9e: "U\x04\U00023c9e", // 𣲞
+ 0x23c9f: "U\x04\U00023c9f", // 𣲟
+ 0x23ca0: "U\x04\U00023ca0", // 𣲠
+ 0x23ca1: "U\x04\U00023ca1", // 𣲡
+ 0x23ca2: "U\x04\U00023ca2", // 𣲢
+ 0x23ca3: "U\x04\U00023ca3", // 𣲣
+ 0x23ca4: "U\x04\U00023ca4", // 𣲤
+ 0x23ca5: "U\x04\U00023ca5", // 𣲥
+ 0x23ca6: "U\x04\U00023ca6", // 𣲦
+ 0x23ca7: "U\x04\U00023ca7", // 𣲧
+ 0x23ca8: "U\x04\U00023ca8", // 𣲨
+ 0x23ca9: "U\x04\U00023ca9", // 𣲩
+ 0x23caa: "U\x04\U00023caa", // 𣲪
+ 0x23cab: "U\x04\U00023cab", // 𣲫
+ 0x23cac: "U\x04\U00023cac", // 𣲬
+ 0x23cad: "U\x04\U00023cad", // 𣲭
+ 0x23cae: "U\x04\U00023cae", // 𣲮
+ 0x23caf: "U\x04\U00023caf", // 𣲯
+ 0x23cb0: "U\x04\U00023cb0", // 𣲰
+ 0x23cb1: "U\x04\U00023cb1", // 𣲱
+ 0x23cb2: "U\x05\U00023cb2", // 𣲲
+ 0x23cb3: "U\x05\U00023cb3", // 𣲳
+ 0x23cb4: "U\x05\U00023cb4", // 𣲴
+ 0x23cb5: "U\x05\U00023cb5", // 𣲵
+ 0x23cb6: "U\x05\U00023cb6", // 𣲶
+ 0x23cb7: "U\x05\U00023cb7", // 𣲷
+ 0x23cb8: "U\x05\U00023cb8", // 𣲸
+ 0x23cb9: "U\x05\U00023cb9", // 𣲹
+ 0x23cba: "U\x05\U00023cba", // 𣲺
+ 0x23cbb: "U\x05\U00023cbb", // 𣲻
+ 0x23cbc: "U\x05\U00023cbc", // 𣲼
+ 0x23cbd: "U\x05\U00023cbd", // 𣲽
+ 0x23cbe: "U\x05\U00023cbe", // 𣲾
+ 0x23cbf: "U\x05\U00023cbf", // 𣲿
+ 0x23cc0: "U\x05\U00023cc0", // 𣳀
+ 0x23cc1: "U\x05\U00023cc1", // 𣳁
+ 0x23cc2: "U\x05\U00023cc2", // 𣳂
+ 0x23cc3: "U\x05\U00023cc3", // 𣳃
+ 0x23cc4: "U\x05\U00023cc4", // 𣳄
+ 0x23cc5: "U\x05\U00023cc5", // 𣳅
+ 0x23cc6: "U\x05\U00023cc6", // 𣳆
+ 0x23cc7: "U\x05\U00023cc7", // 𣳇
+ 0x23cc8: "U\x05\U00023cc8", // 𣳈
+ 0x23cc9: "U\x05\U00023cc9", // 𣳉
+ 0x23cca: "U\x05\U00023cca", // 𣳊
+ 0x23ccb: "U\x05\U00023ccb", // 𣳋
+ 0x23ccc: "U\x05\U00023ccc", // 𣳌
+ 0x23ccd: "U\x05\U00023ccd", // 𣳍
+ 0x23cce: "U\x05\U00023cce", // 𣳎
+ 0x23ccf: "U\x05\U00023ccf", // 𣳏
+ 0x23cd0: "U\x05\U00023cd0", // 𣳐
+ 0x23cd1: "U\x05\U00023cd1", // 𣳑
+ 0x23cd2: "U\x05\U00023cd2", // 𣳒
+ 0x23cd3: "U\x05\U00023cd3", // 𣳓
+ 0x23cd4: "U\x05\U00023cd4", // 𣳔
+ 0x23cd5: "U\x05\U00023cd5", // 𣳕
+ 0x23cd6: "U\x05\U00023cd6", // 𣳖
+ 0x23cd7: "U\x05\U00023cd7", // 𣳗
+ 0x23cd8: "U\x05\U00023cd8", // 𣳘
+ 0x23cd9: "U\x05\U00023cd9", // 𣳙
+ 0x23cda: "U\x05\U00023cda", // 𣳚
+ 0x23cdb: "U\x05\U00023cdb", // 𣳛
+ 0x23cdc: "U\x05\U00023cdc", // 𣳜
+ 0x23cdd: "U\x05\U00023cdd", // 𣳝
+ 0x23cde: "U\x05\U00023cde", // 𣳞
+ 0x23cdf: "U\x05\U00023cdf", // 𣳟
+ 0x23ce0: "U\x05\U00023ce0", // 𣳠
+ 0x23ce1: "U\x05\U00023ce1", // 𣳡
+ 0x23ce2: "U\x05\U00023ce2", // 𣳢
+ 0x23ce3: "U\x05\U00023ce3", // 𣳣
+ 0x23ce4: "U\x06\U00023ce4", // 𣳤
+ 0x23ce5: "U\x06\U00023ce5", // 𣳥
+ 0x23ce6: "U\x06\U00023ce6", // 𣳦
+ 0x23ce7: "U\x06\U00023ce7", // 𣳧
+ 0x23ce8: "U\x06\U00023ce8", // 𣳨
+ 0x23ce9: "U\x06\U00023ce9", // 𣳩
+ 0x23cea: "U\x06\U00023cea", // 𣳪
+ 0x23ceb: "U\x06\U00023ceb", // 𣳫
+ 0x23cec: "U\x06\U00023cec", // 𣳬
+ 0x23ced: "U\x06\U00023ced", // 𣳭
+ 0x23cee: "U\x06\U00023cee", // 𣳮
+ 0x23cef: "U\x06\U00023cef", // 𣳯
+ 0x23cf0: "U\x06\U00023cf0", // 𣳰
+ 0x23cf1: "U\x06\U00023cf1", // 𣳱
+ 0x23cf2: "U\x06\U00023cf2", // 𣳲
+ 0x23cf3: "U\x06\U00023cf3", // 𣳳
+ 0x23cf4: "U\x06\U00023cf4", // 𣳴
+ 0x23cf5: "U\x06\U00023cf5", // 𣳵
+ 0x23cf6: "U\x06\U00023cf6", // 𣳶
+ 0x23cf7: "U\x06\U00023cf7", // 𣳷
+ 0x23cf8: "U\x06\U00023cf8", // 𣳸
+ 0x23cf9: "U\x06\U00023cf9", // 𣳹
+ 0x23cfa: "U\x06\U00023cfa", // 𣳺
+ 0x23cfb: "U\x06\U00023cfb", // 𣳻
+ 0x23cfc: "U\x06\U00023cfc", // 𣳼
+ 0x23cfd: "U\x06\U00023cfd", // 𣳽
+ 0x23cfe: "U\x06\U00023cfe", // 𣳾
+ 0x23cff: "U\x06\U00023cff", // 𣳿
+ 0x23d00: "U\x06\U00023d00", // 𣴀
+ 0x23d01: "U\x06\U00023d01", // 𣴁
+ 0x23d02: "U\x06\U00023d02", // 𣴂
+ 0x23d03: "U\x06\U00023d03", // 𣴃
+ 0x23d04: "U\x06\U00023d04", // 𣴄
+ 0x23d05: "U\x06\U00023d05", // 𣴅
+ 0x23d06: "U\x06\U00023d06", // 𣴆
+ 0x23d07: "U\x06\U00023d07", // 𣴇
+ 0x23d08: "U\x06\U00023d08", // 𣴈
+ 0x23d09: "U\x06\U00023d09", // 𣴉
+ 0x23d0a: "U\x06\U00023d0a", // 𣴊
+ 0x23d0b: "U\x06\U00023d0b", // 𣴋
+ 0x23d0c: "U\x06\U00023d0c", // 𣴌
+ 0x23d0d: "U\x06\U00023d0d", // 𣴍
+ 0x23d0e: "U\x06\U00023d0e", // 𣴎
+ 0x23d0f: "U\x06\U00023d0f", // 𣴏
+ 0x23d10: "U\x06\U00023d10", // 𣴐
+ 0x23d11: "U\x06\U00023d11", // 𣴑
+ 0x23d12: "U\x06\U00023d12", // 𣴒
+ 0x23d13: "U\x06\U00023d13", // 𣴓
+ 0x23d14: "U\x06\U00023d14", // 𣴔
+ 0x23d15: "U\x06\U00023d15", // 𣴕
+ 0x23d16: "U\x06\U00023d16", // 𣴖
+ 0x23d17: "U\x06\U00023d17", // 𣴗
+ 0x23d18: "U\x06\U00023d18", // 𣴘
+ 0x23d19: "U\x06\U00023d19", // 𣴙
+ 0x23d1a: "U\x06\U00023d1a", // 𣴚
+ 0x23d1b: "U\x06\U00023d1b", // 𣴛
+ 0x23d1c: "U\x06\U00023d1c", // 𣴜
+ 0x23d1d: "U\x06\U00023d1d", // 𣴝
+ 0x23d1e: "U\a\U00023d1e", // 𣴞
+ 0x23d1f: "U\a\U00023d1f", // 𣴟
+ 0x23d20: "U\a\U00023d20", // 𣴠
+ 0x23d21: "U\a\U00023d21", // 𣴡
+ 0x23d22: "U\a\U00023d22", // 𣴢
+ 0x23d23: "U\a\U00023d23", // 𣴣
+ 0x23d24: "U\a\U00023d24", // 𣴤
+ 0x23d25: "U\a\U00023d25", // 𣴥
+ 0x23d26: "U\a\U00023d26", // 𣴦
+ 0x23d27: "U\a\U00023d27", // 𣴧
+ 0x23d28: "U\a\U00023d28", // 𣴨
+ 0x23d29: "U\a\U00023d29", // 𣴩
+ 0x23d2a: "U\a\U00023d2a", // 𣴪
+ 0x23d2b: "U\a\U00023d2b", // 𣴫
+ 0x23d2c: "U\a\U00023d2c", // 𣴬
+ 0x23d2d: "U\a\U00023d2d", // 𣴭
+ 0x23d2e: "U\a\U00023d2e", // 𣴮
+ 0x23d2f: "U\a\U00023d2f", // 𣴯
+ 0x23d30: "U\a\U00023d30", // 𣴰
+ 0x23d31: "U\a\U00023d31", // 𣴱
+ 0x23d32: "U\a\U00023d32", // 𣴲
+ 0x23d33: "U\a\U00023d33", // 𣴳
+ 0x23d34: "U\a\U00023d34", // 𣴴
+ 0x23d35: "U\a\U00023d35", // 𣴵
+ 0x23d36: "U\a\U00023d36", // 𣴶
+ 0x23d37: "U\a\U00023d37", // 𣴷
+ 0x23d38: "U\a\U00023d38", // 𣴸
+ 0x23d39: "U\a\U00023d39", // 𣴹
+ 0x23d3a: "U\a\U00023d3a", // 𣴺
+ 0x23d3b: "U\a\U00023d3b", // 𣴻
+ 0x23d3c: "U\a\U00023d3c", // 𣴼
+ 0x23d3d: "U\a\U00023d3d", // 𣴽
+ 0x23d3e: "U\a\U00023d3e", // 𣴾
+ 0x23d3f: "U\a\U00023d3f", // 𣴿
+ 0x23d40: "U\a\U00023d40", // 𣵀
+ 0x23d41: "U\a\U00023d41", // 𣵁
+ 0x23d42: "U\a\U00023d42", // 𣵂
+ 0x23d43: "U\a\U00023d43", // 𣵃
+ 0x23d44: "U\a\U00023d44", // 𣵄
+ 0x23d45: "U\a\U00023d45", // 𣵅
+ 0x23d46: "U\a\U00023d46", // 𣵆
+ 0x23d47: "U\a\U00023d47", // 𣵇
+ 0x23d48: "U\a\U00023d48", // 𣵈
+ 0x23d49: "U\a\U00023d49", // 𣵉
+ 0x23d4a: "U\a\U00023d4a", // 𣵊
+ 0x23d4b: "U\a\U00023d4b", // 𣵋
+ 0x23d4c: "U\a\U00023d4c", // 𣵌
+ 0x23d4d: "U\a\U00023d4d", // 𣵍
+ 0x23d4e: "U\a\U00023d4e", // 𣵎
+ 0x23d4f: "U\a\U00023d4f", // 𣵏
+ 0x23d50: "U\a\U00023d50", // 𣵐
+ 0x23d51: "U\a\U00023d51", // 𣵑
+ 0x23d52: "U\a\U00023d52", // 𣵒
+ 0x23d53: "U\a\U00023d53", // 𣵓
+ 0x23d54: "U\a\U00023d54", // 𣵔
+ 0x23d55: "U\a\U00023d55", // 𣵕
+ 0x23d56: "U\a\U00023d56", // 𣵖
+ 0x23d57: "U\a\U00023d57", // 𣵗
+ 0x23d58: "U\a\U00023d58", // 𣵘
+ 0x23d59: "U\a\U00023d59", // 𣵙
+ 0x23d5a: "U\a\U00023d5a", // 𣵚
+ 0x23d5b: "U\a\U00023d5b", // 𣵛
+ 0x23d5c: "U\a\U00023d5c", // 𣵜
+ 0x23d5d: "U\a\U00023d5d", // 𣵝
+ 0x23d5e: "U\a\U00023d5e", // 𣵞
+ 0x23d5f: "U\a\U00023d5f", // 𣵟
+ 0x23d60: "U\a\U00023d60", // 𣵠
+ 0x23d61: "U\a\U00023d61", // 𣵡
+ 0x23d62: "U\a\U00023d62", // 𣵢
+ 0x23d63: "U\a\U00023d63", // 𣵣
+ 0x23d64: "U\a\U00023d64", // 𣵤
+ 0x23d65: "U\a\U00023d65", // 𣵥
+ 0x23d66: "U\a\U00023d66", // 𣵦
+ 0x23d67: "U\a\U00023d67", // 𣵧
+ 0x23d68: "U\a\U00023d68", // 𣵨
+ 0x23d69: "U\a\U00023d69", // 𣵩
+ 0x23d6a: "U\a\U00023d6a", // 𣵪
+ 0x23d6b: "U\a\U00023d6b", // 𣵫
+ 0x23d6c: "U\a\U00023d6c", // 𣵬
+ 0x23d6d: "U\a\U00023d6d", // 𣵭
+ 0x23d6e: "U\a\U00023d6e", // 𣵮
+ 0x23d6f: "U\a\U00023d6f", // 𣵯
+ 0x23d70: "U\a\U00023d70", // 𣵰
+ 0x23d71: "U\a\U00023d71", // 𣵱
+ 0x23d72: "U\a\U00023d72", // 𣵲
+ 0x23d73: "U\a\U00023d73", // 𣵳
+ 0x23d74: "U\a\U00023d74", // 𣵴
+ 0x23d75: "U\a\U00023d75", // 𣵵
+ 0x23d76: "U\a\U00023d76", // 𣵶
+ 0x23d77: "U\b\U00023d77", // 𣵷
+ 0x23d78: "U\b\U00023d78", // 𣵸
+ 0x23d79: "U\b\U00023d79", // 𣵹
+ 0x23d7a: "U\b\U00023d7a", // 𣵺
+ 0x23d7b: "U\b\U00023d7b", // 𣵻
+ 0x23d7c: "U\b\U00023d7c", // 𣵼
+ 0x23d7d: "U\b\U00023d7d", // 𣵽
+ 0x23d7e: "U\b\U00023d7e", // 𣵾
+ 0x23d7f: "U\b\U00023d7f", // 𣵿
+ 0x23d80: "U\b\U00023d80", // 𣶀
+ 0x23d81: "U\b\U00023d81", // 𣶁
+ 0x23d82: "U\b\U00023d82", // 𣶂
+ 0x23d83: "U\b\U00023d83", // 𣶃
+ 0x23d84: "U\b\U00023d84", // 𣶄
+ 0x23d85: "U\b\U00023d85", // 𣶅
+ 0x23d86: "U\b\U00023d86", // 𣶆
+ 0x23d87: "U\b\U00023d87", // 𣶇
+ 0x23d88: "U\b\U00023d88", // 𣶈
+ 0x23d89: "U\b\U00023d89", // 𣶉
+ 0x23d8a: "U\b\U00023d8a", // 𣶊
+ 0x23d8b: "U\b\U00023d8b", // 𣶋
+ 0x23d8c: "U\b\U00023d8c", // 𣶌
+ 0x23d8d: "U\b\U00023d8d", // 𣶍
+ 0x23d8e: "U\b\U00023d8e", // 𣶎
+ 0x23d8f: "U\b\U00023d8f", // 𣶏
+ 0x23d90: "U\b\U00023d90", // 𣶐
+ 0x23d91: "U\b\U00023d91", // 𣶑
+ 0x23d92: "U\b\U00023d92", // 𣶒
+ 0x23d93: "U\b\U00023d93", // 𣶓
+ 0x23d94: "U\b\U00023d94", // 𣶔
+ 0x23d95: "U\b\U00023d95", // 𣶕
+ 0x23d96: "U\b\U00023d96", // 𣶖
+ 0x23d97: "U\b\U00023d97", // 𣶗
+ 0x23d98: "U\b\U00023d98", // 𣶘
+ 0x23d99: "U\b\U00023d99", // 𣶙
+ 0x23d9a: "U\b\U00023d9a", // 𣶚
+ 0x23d9b: "U\b\U00023d9b", // 𣶛
+ 0x23d9c: "U\b\U00023d9c", // 𣶜
+ 0x23d9d: "U\b\U00023d9d", // 𣶝
+ 0x23d9e: "U\b\U00023d9e", // 𣶞
+ 0x23d9f: "U\b\U00023d9f", // 𣶟
+ 0x23da0: "U\b\U00023da0", // 𣶠
+ 0x23da1: "U\b\U00023da1", // 𣶡
+ 0x23da2: "U\b\U00023da2", // 𣶢
+ 0x23da3: "U\b\U00023da3", // 𣶣
+ 0x23da4: "U\b\U00023da4", // 𣶤
+ 0x23da5: "U\b\U00023da5", // 𣶥
+ 0x23da6: "U\b\U00023da6", // 𣶦
+ 0x23da7: "U\b\U00023da7", // 𣶧
+ 0x23da8: "U\b\U00023da8", // 𣶨
+ 0x23da9: "U\b\U00023da9", // 𣶩
+ 0x23daa: "U\b\U00023daa", // 𣶪
+ 0x23dab: "U\b\U00023dab", // 𣶫
+ 0x23dac: "U\b\U00023dac", // 𣶬
+ 0x23dad: "U\b\U00023dad", // 𣶭
+ 0x23dae: "U\b\U00023dae", // 𣶮
+ 0x23daf: "U\b\U00023daf", // 𣶯
+ 0x23db0: "U\b\U00023db0", // 𣶰
+ 0x23db1: "U\b\U00023db1", // 𣶱
+ 0x23db2: "U\b\U00023db2", // 𣶲
+ 0x23db3: "U\b\U00023db3", // 𣶳
+ 0x23db4: "U\b\U00023db4", // 𣶴
+ 0x23db5: "U\b\U00023db5", // 𣶵
+ 0x23db6: "U\b\U00023db6", // 𣶶
+ 0x23db7: "U\b\U00023db7", // 𣶷
+ 0x23db8: "U\b\U00023db8", // 𣶸
+ 0x23db9: "U\b\U00023db9", // 𣶹
+ 0x23dba: "U\b\U00023dba", // 𣶺
+ 0x23dbb: "U\b\U00023dbb", // 𣶻
+ 0x23dbc: "U\b\U00023dbc", // 𣶼
+ 0x23dbd: "U\b\U00023dbd", // 𣶽
+ 0x23dbe: "U\b\U00023dbe", // 𣶾
+ 0x23dbf: "U\b\U00023dbf", // 𣶿
+ 0x23dc0: "U\b\U00023dc0", // 𣷀
+ 0x23dc1: "U\b\U00023dc1", // 𣷁
+ 0x23dc2: "U\b\U00023dc2", // 𣷂
+ 0x23dc3: "U\b\U00023dc3", // 𣷃
+ 0x23dc4: "U\b\U00023dc4", // 𣷄
+ 0x23dc5: "U\b\U00023dc5", // 𣷅
+ 0x23dc6: "U\b\U00023dc6", // 𣷆
+ 0x23dc7: "U\b\U00023dc7", // 𣷇
+ 0x23dc8: "U\b\U00023dc8", // 𣷈
+ 0x23dc9: "U\b\U00023dc9", // 𣷉
+ 0x23dca: "U\b\U00023dca", // 𣷊
+ 0x23dcb: "U\b\U00023dcb", // 𣷋
+ 0x23dcc: "U\b\U00023dcc", // 𣷌
+ 0x23dcd: "U\b\U00023dcd", // 𣷍
+ 0x23dce: "U\b\U00023dce", // 𣷎
+ 0x23dcf: "U\b\U00023dcf", // 𣷏
+ 0x23dd0: "U\b\U00023dd0", // 𣷐
+ 0x23dd1: "U\b\U00023dd1", // 𣷑
+ 0x23dd2: "U\b\U00023dd2", // 𣷒
+ 0x23dd3: "U\b\U00023dd3", // 𣷓
+ 0x23dd4: "U\b\U00023dd4", // 𣷔
+ 0x23dd5: "U\b\U00023dd5", // 𣷕
+ 0x23dd6: "U\b\U00023dd6", // 𣷖
+ 0x23dd7: "U\b\U00023dd7", // 𣷗
+ 0x23dd8: "U\b\U00023dd8", // 𣷘
+ 0x23dd9: "U\b\U00023dd9", // 𣷙
+ 0x23dda: "U\a\U00023dda", // 𣷚
+ 0x23ddb: "U\b\U00023ddb", // 𣷛
+ 0x23ddc: "U\b\U00023ddc", // 𣷜
+ 0x23ddd: "U\b\U00023ddd", // 𣷝
+ 0x23dde: "U\b\U00023dde", // 𣷞
+ 0x23ddf: "U\b\U00023ddf", // 𣷟
+ 0x23de0: "U\b\U00023de0", // 𣷠
+ 0x23de1: "U\b\U00023de1", // 𣷡
+ 0x23de2: "U\b\U00023de2", // 𣷢
+ 0x23de3: "U\b\U00023de3", // 𣷣
+ 0x23de4: "U\b\U00023de4", // 𣷤
+ 0x23de5: "U\b\U00023de5", // 𣷥
+ 0x23de6: "U\b\U00023de6", // 𣷦
+ 0x23de7: "U\b\U00023de7", // 𣷧
+ 0x23de8: "U\b\U00023de8", // 𣷨
+ 0x23de9: "U\b\U00023de9", // 𣷩
+ 0x23dea: "U\b\U00023dea", // 𣷪
+ 0x23deb: "U\b\U00023deb", // 𣷫
+ 0x23dec: "U\b\U00023dec", // 𣷬
+ 0x23ded: "U\b\U00023ded", // 𣷭
+ 0x23dee: "U\b\U00023dee", // 𣷮
+ 0x23def: "U\b\U00023def", // 𣷯
+ 0x23df0: "U\b\U00023df0", // 𣷰
+ 0x23df1: "U\b\U00023df1", // 𣷱
+ 0x23df2: "U\b\U00023df2", // 𣷲
+ 0x23df3: "U\b\U00023df3", // 𣷳
+ 0x23df4: "U\b\U00023df4", // 𣷴
+ 0x23df5: "U\b\U00023df5", // 𣷵
+ 0x23df6: "U\b\U00023df6", // 𣷶
+ 0x23df7: "U\b\U00023df7", // 𣷷
+ 0x23df8: "U\b\U00023df8", // 𣷸
+ 0x23df9: "U\b\U00023df9", // 𣷹
+ 0x23dfa: "U\b\U00023dfa", // 𣷺
+ 0x23dfb: "U\b\U00023dfb", // 𣷻
+ 0x23dfc: "U\t\U00023dfc", // 𣷼
+ 0x23dfd: "U\t\U00023dfd", // 𣷽
+ 0x23dfe: "U\t\U00023dfe", // 𣷾
+ 0x23dff: "U\t\U00023dff", // 𣷿
+ 0x23e00: "U\t\U00023e00", // 𣸀
+ 0x23e01: "U\t\U00023e01", // 𣸁
+ 0x23e02: "U\t\U00023e02", // 𣸂
+ 0x23e03: "U\t\U00023e03", // 𣸃
+ 0x23e04: "U\t\U00023e04", // 𣸄
+ 0x23e05: "U\t\U00023e05", // 𣸅
+ 0x23e06: "U\t\U00023e06", // 𣸆
+ 0x23e07: "U\t\U00023e07", // 𣸇
+ 0x23e08: "U\t\U00023e08", // 𣸈
+ 0x23e09: "U\t\U00023e09", // 𣸉
+ 0x23e0a: "U\b\U00023e0a", // 𣸊
+ 0x23e0b: "U\t\U00023e0b", // 𣸋
+ 0x23e0c: "U\t\U00023e0c", // 𣸌
+ 0x23e0d: "U\t\U00023e0d", // 𣸍
+ 0x23e0e: "U\t\U00023e0e", // 𣸎
+ 0x23e0f: "U\t\U00023e0f", // 𣸏
+ 0x23e10: "U\t\U00023e10", // 𣸐
+ 0x23e11: "U\t\U00023e11", // 𣸑
+ 0x23e12: "U\t\U00023e12", // 𣸒
+ 0x23e13: "U\t\U00023e13", // 𣸓
+ 0x23e14: "U\t\U00023e14", // 𣸔
+ 0x23e15: "U\t\U00023e15", // 𣸕
+ 0x23e16: "U\t\U00023e16", // 𣸖
+ 0x23e17: "U\t\U00023e17", // 𣸗
+ 0x23e18: "U\t\U00023e18", // 𣸘
+ 0x23e19: "U\t\U00023e19", // 𣸙
+ 0x23e1a: "U\t\U00023e1a", // 𣸚
+ 0x23e1b: "U\t\U00023e1b", // 𣸛
+ 0x23e1c: "U\t\U00023e1c", // 𣸜
+ 0x23e1d: "U\t\U00023e1d", // 𣸝
+ 0x23e1e: "U\t\U00023e1e", // 𣸞
+ 0x23e1f: "U\t\U00023e1f", // 𣸟
+ 0x23e20: "U\t\U00023e20", // 𣸠
+ 0x23e21: "U\t\U00023e21", // 𣸡
+ 0x23e22: "U\t\U00023e22", // 𣸢
+ 0x23e23: "U\t\U00023e23", // 𣸣
+ 0x23e24: "U\t\U00023e24", // 𣸤
+ 0x23e25: "U\t\U00023e25", // 𣸥
+ 0x23e26: "U\t\U00023e26", // 𣸦
+ 0x23e27: "U\t\U00023e27", // 𣸧
+ 0x23e28: "U\t\U00023e28", // 𣸨
+ 0x23e29: "U\t\U00023e29", // 𣸩
+ 0x23e2a: "U\t\U00023e2a", // 𣸪
+ 0x23e2b: "U\t\U00023e2b", // 𣸫
+ 0x23e2c: "U\t\U00023e2c", // 𣸬
+ 0x23e2d: "U\t\U00023e2d", // 𣸭
+ 0x23e2e: "U\t\U00023e2e", // 𣸮
+ 0x23e2f: "U\t\U00023e2f", // 𣸯
+ 0x23e30: "U\t\U00023e30", // 𣸰
+ 0x23e31: "U\t\U00023e31", // 𣸱
+ 0x23e32: "U\t\U00023e32", // 𣸲
+ 0x23e33: "U\t\U00023e33", // 𣸳
+ 0x23e34: "U\t\U00023e34", // 𣸴
+ 0x23e35: "U\t\U00023e35", // 𣸵
+ 0x23e36: "U\t\U00023e36", // 𣸶
+ 0x23e37: "U\t\U00023e37", // 𣸷
+ 0x23e38: "U\t\U00023e38", // 𣸸
+ 0x23e39: "U\t\U00023e39", // 𣸹
+ 0x23e3a: "U\t\U00023e3a", // 𣸺
+ 0x23e3b: "U\t\U00023e3b", // 𣸻
+ 0x23e3c: "U\t\U00023e3c", // 𣸼
+ 0x23e3d: "U\t\U00023e3d", // 𣸽
+ 0x23e3e: "U\t\U00023e3e", // 𣸾
+ 0x23e3f: "U\t\U00023e3f", // 𣸿
+ 0x23e40: "U\t\U00023e40", // 𣹀
+ 0x23e41: "U\t\U00023e41", // 𣹁
+ 0x23e42: "U\t\U00023e42", // 𣹂
+ 0x23e43: "U\t\U00023e43", // 𣹃
+ 0x23e44: "U\t\U00023e44", // 𣹄
+ 0x23e45: "U\t\U00023e45", // 𣹅
+ 0x23e46: "U\t\U00023e46", // 𣹆
+ 0x23e47: "U\t\U00023e47", // 𣹇
+ 0x23e48: "U\t\U00023e48", // 𣹈
+ 0x23e49: "U\t\U00023e49", // 𣹉
+ 0x23e4a: "U\t\U00023e4a", // 𣹊
+ 0x23e4b: "U\t\U00023e4b", // 𣹋
+ 0x23e4c: "U\t\U00023e4c", // 𣹌
+ 0x23e4d: "U\t\U00023e4d", // 𣹍
+ 0x23e4e: "U\t\U00023e4e", // 𣹎
+ 0x23e4f: "U\t\U00023e4f", // 𣹏
+ 0x23e50: "U\t\U00023e50", // 𣹐
+ 0x23e51: "U\t\U00023e51", // 𣹑
+ 0x23e52: "U\t\U00023e52", // 𣹒
+ 0x23e53: "U\t\U00023e53", // 𣹓
+ 0x23e54: "U\t\U00023e54", // 𣹔
+ 0x23e55: "U\t\U00023e55", // 𣹕
+ 0x23e56: "U\t\U00023e56", // 𣹖
+ 0x23e57: "U\t\U00023e57", // 𣹗
+ 0x23e58: "U\t\U00023e58", // 𣹘
+ 0x23e59: "U\t\U00023e59", // 𣹙
+ 0x23e5a: "U\t\U00023e5a", // 𣹚
+ 0x23e5b: "U\t\U00023e5b", // 𣹛
+ 0x23e5c: "U\t\U00023e5c", // 𣹜
+ 0x23e5d: "U\n\U00023e5d", // 𣹝
+ 0x23e5e: "U\n\U00023e5e", // 𣹞
+ 0x23e5f: "U\n\U00023e5f", // 𣹟
+ 0x23e60: "U\n\U00023e60", // 𣹠
+ 0x23e61: "U\n\U00023e61", // 𣹡
+ 0x23e62: "U\n\U00023e62", // 𣹢
+ 0x23e63: "U\n\U00023e63", // 𣹣
+ 0x23e64: "U\n\U00023e64", // 𣹤
+ 0x23e65: "U\n\U00023e65", // 𣹥
+ 0x23e66: "U\n\U00023e66", // 𣹦
+ 0x23e67: "U\n\U00023e67", // 𣹧
+ 0x23e68: "U\n\U00023e68", // 𣹨
+ 0x23e69: "U\n\U00023e69", // 𣹩
+ 0x23e6a: "U\n\U00023e6a", // 𣹪
+ 0x23e6b: "U\n\U00023e6b", // 𣹫
+ 0x23e6c: "U\n\U00023e6c", // 𣹬
+ 0x23e6d: "U\n\U00023e6d", // 𣹭
+ 0x23e6e: "U\n\U00023e6e", // 𣹮
+ 0x23e6f: "U\n\U00023e6f", // 𣹯
+ 0x23e70: "U\n\U00023e70", // 𣹰
+ 0x23e71: "U\n\U00023e71", // 𣹱
+ 0x23e72: "U\n\U00023e72", // 𣹲
+ 0x23e73: "U\n\U00023e73", // 𣹳
+ 0x23e74: "U\n\U00023e74", // 𣹴
+ 0x23e75: "U\n\U00023e75", // 𣹵
+ 0x23e76: "U\n\U00023e76", // 𣹶
+ 0x23e77: "U\n\U00023e77", // 𣹷
+ 0x23e78: "U\n\U00023e78", // 𣹸
+ 0x23e79: "U\n\U00023e79", // 𣹹
+ 0x23e7a: "U\n\U00023e7a", // 𣹺
+ 0x23e7b: "U\n\U00023e7b", // 𣹻
+ 0x23e7c: "U\n\U00023e7c", // 𣹼
+ 0x23e7d: "U\n\U00023e7d", // 𣹽
+ 0x23e7e: "U\n\U00023e7e", // 𣹾
+ 0x23e7f: "U\n\U00023e7f", // 𣹿
+ 0x23e80: "U\n\U00023e80", // 𣺀
+ 0x23e81: "U\n\U00023e81", // 𣺁
+ 0x23e82: "U\n\U00023e82", // 𣺂
+ 0x23e83: "U\n\U00023e83", // 𣺃
+ 0x23e84: "U\n\U00023e84", // 𣺄
+ 0x23e85: "U\n\U00023e85", // 𣺅
+ 0x23e86: "U\n\U00023e86", // 𣺆
+ 0x23e87: "U\n\U00023e87", // 𣺇
+ 0x23e88: "U\n\U00023e88", // 𣺈
+ 0x23e89: "U\n\U00023e89", // 𣺉
+ 0x23e8a: "U\n\U00023e8a", // 𣺊
+ 0x23e8b: "U\n\U00023e8b", // 𣺋
+ 0x23e8c: "U\n\U00023e8c", // 𣺌
+ 0x23e8d: "U\n\U00023e8d", // 𣺍
+ 0x23e8e: "U\n\U00023e8e", // 𣺎
+ 0x23e8f: "U\n\U00023e8f", // 𣺏
+ 0x23e90: "U\n\U00023e90", // 𣺐
+ 0x23e91: "U\n\U00023e91", // 𣺑
+ 0x23e92: "U\n\U00023e92", // 𣺒
+ 0x23e93: "U\n\U00023e93", // 𣺓
+ 0x23e94: "U\n\U00023e94", // 𣺔
+ 0x23e95: "U\n\U00023e95", // 𣺕
+ 0x23e96: "U\n\U00023e96", // 𣺖
+ 0x23e97: "U\n\U00023e97", // 𣺗
+ 0x23e98: "U\n\U00023e98", // 𣺘
+ 0x23e99: "U\n\U00023e99", // 𣺙
+ 0x23e9a: "U\n\U00023e9a", // 𣺚
+ 0x23e9b: "U\n\U00023e9b", // 𣺛
+ 0x23e9c: "U\n\U00023e9c", // 𣺜
+ 0x23e9d: "U\n\U00023e9d", // 𣺝
+ 0x23e9e: "U\n\U00023e9e", // 𣺞
+ 0x23e9f: "U\n\U00023e9f", // 𣺟
+ 0x23ea0: "U\n\U00023ea0", // 𣺠
+ 0x23ea1: "U\n\U00023ea1", // 𣺡
+ 0x23ea2: "U\n\U00023ea2", // 𣺢
+ 0x23ea3: "U\n\U00023ea3", // 𣺣
+ 0x23ea4: "U\n\U00023ea4", // 𣺤
+ 0x23ea5: "U\n\U00023ea5", // 𣺥
+ 0x23ea6: "U\n\U00023ea6", // 𣺦
+ 0x23ea7: "U\n\U00023ea7", // 𣺧
+ 0x23ea8: "U\n\U00023ea8", // 𣺨
+ 0x23ea9: "U\n\U00023ea9", // 𣺩
+ 0x23eaa: "U\n\U00023eaa", // 𣺪
+ 0x23eab: "U\n\U00023eab", // 𣺫
+ 0x23eac: "U\n\U00023eac", // 𣺬
+ 0x23ead: "U\n\U00023ead", // 𣺭
+ 0x23eae: "U\n\U00023eae", // 𣺮
+ 0x23eaf: "U\n\U00023eaf", // 𣺯
+ 0x23eb0: "U\n\U00023eb0", // 𣺰
+ 0x23eb1: "U\n\U00023eb1", // 𣺱
+ 0x23eb2: "U\n\U00023eb2", // 𣺲
+ 0x23eb3: "U\n\U00023eb3", // 𣺳
+ 0x23eb4: "U\n\U00023eb4", // 𣺴
+ 0x23eb5: "U\n\U00023eb5", // 𣺵
+ 0x23eb6: "U\n\U00023eb6", // 𣺶
+ 0x23eb7: "U\n\U00023eb7", // 𣺷
+ 0x23eb8: "U\n\U00023eb8", // 𣺸
+ 0x23eb9: "U\n\U00023eb9", // 𣺹
+ 0x23eba: "U\n\U00023eba", // 𣺺
+ 0x23ebb: "U\n\U00023ebb", // 𣺻
+ 0x23ebc: "U\n\U00023ebc", // 𣺼
+ 0x23ebd: "U\n\U00023ebd", // 𣺽
+ 0x23ebe: "U\n\U00023ebe", // 𣺾
+ 0x23ebf: "U\n\U00023ebf", // 𣺿
+ 0x23ec0: "U\n\U00023ec0", // 𣻀
+ 0x23ec1: "U\n\U00023ec1", // 𣻁
+ 0x23ec2: "U\n\U00023ec2", // 𣻂
+ 0x23ec3: "U\n\U00023ec3", // 𣻃
+ 0x23ec4: "U\n\U00023ec4", // 𣻄
+ 0x23ec5: "U\n\U00023ec5", // 𣻅
+ 0x23ec6: "U\n\U00023ec6", // 𣻆
+ 0x23ec7: "U\n\U00023ec7", // 𣻇
+ 0x23ec8: "U\n\U00023ec8", // 𣻈
+ 0x23ec9: "U\n\U00023ec9", // 𣻉
+ 0x23eca: "U\n\U00023eca", // 𣻊
+ 0x23ecb: "U\n\U00023ecb", // 𣻋
+ 0x23ecc: "U\n\U00023ecc", // 𣻌
+ 0x23ecd: "U\v\U00023ecd", // 𣻍
+ 0x23ece: "U\v\U00023ece", // 𣻎
+ 0x23ecf: "U\v\U00023ecf", // 𣻏
+ 0x23ed0: "U\v\U00023ed0", // 𣻐
+ 0x23ed1: "U\v\U00023ed1", // 𣻑
+ 0x23ed2: "U\v\U00023ed2", // 𣻒
+ 0x23ed3: "U\v\U00023ed3", // 𣻓
+ 0x23ed4: "U\v\U00023ed4", // 𣻔
+ 0x23ed5: "U\v\U00023ed5", // 𣻕
+ 0x23ed6: "U\v\U00023ed6", // 𣻖
+ 0x23ed7: "U\v\U00023ed7", // 𣻗
+ 0x23ed8: "U\v\U00023ed8", // 𣻘
+ 0x23ed9: "U\v\U00023ed9", // 𣻙
+ 0x23eda: "U\v\U00023eda", // 𣻚
+ 0x23edb: "U\v\U00023edb", // 𣻛
+ 0x23edc: "U\v\U00023edc", // 𣻜
+ 0x23edd: "U\v\U00023edd", // 𣻝
+ 0x23ede: "U\v\U00023ede", // 𣻞
+ 0x23edf: "U\v\U00023edf", // 𣻟
+ 0x23ee0: "U\v\U00023ee0", // 𣻠
+ 0x23ee1: "U\v\U00023ee1", // 𣻡
+ 0x23ee2: "U\v\U00023ee2", // 𣻢
+ 0x23ee3: "U\v\U00023ee3", // 𣻣
+ 0x23ee4: "U\v\U00023ee4", // 𣻤
+ 0x23ee5: "U\v\U00023ee5", // 𣻥
+ 0x23ee6: "U\v\U00023ee6", // 𣻦
+ 0x23ee7: "U\v\U00023ee7", // 𣻧
+ 0x23ee8: "U\v\U00023ee8", // 𣻨
+ 0x23ee9: "U\v\U00023ee9", // 𣻩
+ 0x23eea: "U\v\U00023eea", // 𣻪
+ 0x23eeb: "U\v\U00023eeb", // 𣻫
+ 0x23eec: "U\v\U00023eec", // 𣻬
+ 0x23eed: "U\v\U00023eed", // 𣻭
+ 0x23eee: "U\v\U00023eee", // 𣻮
+ 0x23eef: "U\v\U00023eef", // 𣻯
+ 0x23ef0: "U\v\U00023ef0", // 𣻰
+ 0x23ef1: "U\v\U00023ef1", // 𣻱
+ 0x23ef2: "U\v\U00023ef2", // 𣻲
+ 0x23ef3: "U\v\U00023ef3", // 𣻳
+ 0x23ef4: "U\f\U00023ef4", // 𣻴
+ 0x23ef5: "U\v\U00023ef5", // 𣻵
+ 0x23ef6: "U\v\U00023ef6", // 𣻶
+ 0x23ef7: "U\v\U00023ef7", // 𣻷
+ 0x23ef8: "U\v\U00023ef8", // 𣻸
+ 0x23ef9: "U\v\U00023ef9", // 𣻹
+ 0x23efa: "U\v\U00023efa", // 𣻺
+ 0x23efb: "U\v\U00023efb", // 𣻻
+ 0x23efc: "U\v\U00023efc", // 𣻼
+ 0x23efd: "U\v\U00023efd", // 𣻽
+ 0x23efe: "U\v\U00023efe", // 𣻾
+ 0x23eff: "U\v\U00023eff", // 𣻿
+ 0x23f00: "U\v\U00023f00", // 𣼀
+ 0x23f01: "U\v\U00023f01", // 𣼁
+ 0x23f02: "U\v\U00023f02", // 𣼂
+ 0x23f03: "U\v\U00023f03", // 𣼃
+ 0x23f04: "U\v\U00023f04", // 𣼄
+ 0x23f05: "U\v\U00023f05", // 𣼅
+ 0x23f06: "U\v\U00023f06", // 𣼆
+ 0x23f07: "U\v\U00023f07", // 𣼇
+ 0x23f08: "U\v\U00023f08", // 𣼈
+ 0x23f09: "U\v\U00023f09", // 𣼉
+ 0x23f0a: "U\v\U00023f0a", // 𣼊
+ 0x23f0b: "U\v\U00023f0b", // 𣼋
+ 0x23f0c: "U\v\U00023f0c", // 𣼌
+ 0x23f0d: "U\v\U00023f0d", // 𣼍
+ 0x23f0e: "U\v\U00023f0e", // 𣼎
+ 0x23f0f: "U\v\U00023f0f", // 𣼏
+ 0x23f10: "U\v\U00023f10", // 𣼐
+ 0x23f11: "U\v\U00023f11", // 𣼑
+ 0x23f12: "U\v\U00023f12", // 𣼒
+ 0x23f13: "U\v\U00023f13", // 𣼓
+ 0x23f14: "U\v\U00023f14", // 𣼔
+ 0x23f15: "U\v\U00023f15", // 𣼕
+ 0x23f16: "U\v\U00023f16", // 𣼖
+ 0x23f17: "U\v\U00023f17", // 𣼗
+ 0x23f18: "U\v\U00023f18", // 𣼘
+ 0x23f19: ":\f\U00023f19", // 𣼙
+ 0x23f1a: "U\v\U00023f1a", // 𣼚
+ 0x23f1b: "U\v\U00023f1b", // 𣼛
+ 0x23f1c: "U\v\U00023f1c", // 𣼜
+ 0x23f1d: "U\v\U00023f1d", // 𣼝
+ 0x23f1e: "U\v\U00023f1e", // 𣼞
+ 0x23f1f: "U\v\U00023f1f", // 𣼟
+ 0x23f20: "U\v\U00023f20", // 𣼠
+ 0x23f21: "U\v\U00023f21", // 𣼡
+ 0x23f22: "U\v\U00023f22", // 𣼢
+ 0x23f23: "U\v\U00023f23", // 𣼣
+ 0x23f24: "U\v\U00023f24", // 𣼤
+ 0x23f25: "U\v\U00023f25", // 𣼥
+ 0x23f26: "U\v\U00023f26", // 𣼦
+ 0x23f27: "U\v\U00023f27", // 𣼧
+ 0x23f28: "U\v\U00023f28", // 𣼨
+ 0x23f29: "U\v\U00023f29", // 𣼩
+ 0x23f2a: "U\v\U00023f2a", // 𣼪
+ 0x23f2b: "U\v\U00023f2b", // 𣼫
+ 0x23f2c: "U\v\U00023f2c", // 𣼬
+ 0x23f2d: "U\v\U00023f2d", // 𣼭
+ 0x23f2e: "U\v\U00023f2e", // 𣼮
+ 0x23f2f: "U\v\U00023f2f", // 𣼯
+ 0x23f30: "U\v\U00023f30", // 𣼰
+ 0x23f31: "U\v\U00023f31", // 𣼱
+ 0x23f32: "U\v\U00023f32", // 𣼲
+ 0x23f33: "U\v\U00023f33", // 𣼳
+ 0x23f34: "U\v\U00023f34", // 𣼴
+ 0x23f35: "U\v\U00023f35", // 𣼵
+ 0x23f36: "U\v\U00023f36", // 𣼶
+ 0x23f37: "U\v\U00023f37", // 𣼷
+ 0x23f38: "U\v\U00023f38", // 𣼸
+ 0x23f39: "U\v\U00023f39", // 𣼹
+ 0x23f3a: "U\v\U00023f3a", // 𣼺
+ 0x23f3b: "U\v\U00023f3b", // 𣼻
+ 0x23f3c: "U\v\U00023f3c", // 𣼼
+ 0x23f3d: "U\v\U00023f3d", // 𣼽
+ 0x23f3e: "U\v\U00023f3e", // 𣼾
+ 0x23f3f: "U\v\U00023f3f", // 𣼿
+ 0x23f40: "U\v\U00023f40", // 𣽀
+ 0x23f41: "U\v\U00023f41", // 𣽁
+ 0x23f42: "U\v\U00023f42", // 𣽂
+ 0x23f43: "U\f\U00023f43", // 𣽃
+ 0x23f44: "U\f\U00023f44", // 𣽄
+ 0x23f45: "U\f\U00023f45", // 𣽅
+ 0x23f46: "U\f\U00023f46", // 𣽆
+ 0x23f47: "U\f\U00023f47", // 𣽇
+ 0x23f48: "U\f\U00023f48", // 𣽈
+ 0x23f49: "U\f\U00023f49", // 𣽉
+ 0x23f4a: "U\f\U00023f4a", // 𣽊
+ 0x23f4b: "U\f\U00023f4b", // 𣽋
+ 0x23f4c: "U\f\U00023f4c", // 𣽌
+ 0x23f4d: "U\f\U00023f4d", // 𣽍
+ 0x23f4e: "U\f\U00023f4e", // 𣽎
+ 0x23f4f: "U\f\U00023f4f", // 𣽏
+ 0x23f50: "U\f\U00023f50", // 𣽐
+ 0x23f51: "U\f\U00023f51", // 𣽑
+ 0x23f52: "U\f\U00023f52", // 𣽒
+ 0x23f53: "U\f\U00023f53", // 𣽓
+ 0x23f54: "U\f\U00023f54", // 𣽔
+ 0x23f55: "U\f\U00023f55", // 𣽕
+ 0x23f56: "U\f\U00023f56", // 𣽖
+ 0x23f57: "U\f\U00023f57", // 𣽗
+ 0x23f58: "U\f\U00023f58", // 𣽘
+ 0x23f59: "U\f\U00023f59", // 𣽙
+ 0x23f5a: "U\f\U00023f5a", // 𣽚
+ 0x23f5b: "U\f\U00023f5b", // 𣽛
+ 0x23f5c: "U\f\U00023f5c", // 𣽜
+ 0x23f5d: "U\f\U00023f5d", // 𣽝
+ 0x23f5e: "U\f\U00023f5e", // 𣽞
+ 0x23f5f: "U\f\U00023f5f", // 𣽟
+ 0x23f60: "U\f\U00023f60", // 𣽠
+ 0x23f61: "U\f\U00023f61", // 𣽡
+ 0x23f62: "U\f\U00023f62", // 𣽢
+ 0x23f63: "U\f\U00023f63", // 𣽣
+ 0x23f64: "U\f\U00023f64", // 𣽤
+ 0x23f65: "U\f\U00023f65", // 𣽥
+ 0x23f66: "U\f\U00023f66", // 𣽦
+ 0x23f67: "U\f\U00023f67", // 𣽧
+ 0x23f68: "U\f\U00023f68", // 𣽨
+ 0x23f69: "U\f\U00023f69", // 𣽩
+ 0x23f6a: "U\f\U00023f6a", // 𣽪
+ 0x23f6b: "U\f\U00023f6b", // 𣽫
+ 0x23f6c: "U\f\U00023f6c", // 𣽬
+ 0x23f6d: "U\f\U00023f6d", // 𣽭
+ 0x23f6e: "U\f\U00023f6e", // 𣽮
+ 0x23f6f: "U\f\U00023f6f", // 𣽯
+ 0x23f70: "U\f\U00023f70", // 𣽰
+ 0x23f71: "U\f\U00023f71", // 𣽱
+ 0x23f72: "U\f\U00023f72", // 𣽲
+ 0x23f73: "U\f\U00023f73", // 𣽳
+ 0x23f74: "U\f\U00023f74", // 𣽴
+ 0x23f75: "U\f\U00023f75", // 𣽵
+ 0x23f76: "U\f\U00023f76", // 𣽶
+ 0x23f77: "U\f\U00023f77", // 𣽷
+ 0x23f78: "U\f\U00023f78", // 𣽸
+ 0x23f79: "U\f\U00023f79", // 𣽹
+ 0x23f7a: "U\f\U00023f7a", // 𣽺
+ 0x23f7b: "U\f\U00023f7b", // 𣽻
+ 0x23f7c: "U\f\U00023f7c", // 𣽼
+ 0x23f7d: "U\f\U00023f7d", // 𣽽
+ 0x23f7e: "U\f\U00023f7e", // 𣽾
+ 0x23f7f: "U\f\U00023f7f", // 𣽿
+ 0x23f80: "U\f\U00023f80", // 𣾀
+ 0x23f81: "U\f\U00023f81", // 𣾁
+ 0x23f82: "U\f\U00023f82", // 𣾂
+ 0x23f83: "U\f\U00023f83", // 𣾃
+ 0x23f84: "U\f\U00023f84", // 𣾄
+ 0x23f85: "U\f\U00023f85", // 𣾅
+ 0x23f86: "U\f\U00023f86", // 𣾆
+ 0x23f87: "U\f\U00023f87", // 𣾇
+ 0x23f88: "U\f\U00023f88", // 𣾈
+ 0x23f89: "U\f\U00023f89", // 𣾉
+ 0x23f8a: "U\f\U00023f8a", // 𣾊
+ 0x23f8b: "U\f\U00023f8b", // 𣾋
+ 0x23f8c: "U\f\U00023f8c", // 𣾌
+ 0x23f8d: "U\f\U00023f8d", // 𣾍
+ 0x23f8e: "U\f\U00023f8e", // 𣾎
+ 0x23f8f: "U\f\U00023f8f", // 𣾏
+ 0x23f90: "U\f\U00023f90", // 𣾐
+ 0x23f91: "U\f\U00023f91", // 𣾑
+ 0x23f92: "U\f\U00023f92", // 𣾒
+ 0x23f93: "U\f\U00023f93", // 𣾓
+ 0x23f94: "U\f\U00023f94", // 𣾔
+ 0x23f95: "U\f\U00023f95", // 𣾕
+ 0x23f96: "U\f\U00023f96", // 𣾖
+ 0x23f97: "U\f\U00023f97", // 𣾗
+ 0x23f98: "U\f\U00023f98", // 𣾘
+ 0x23f99: "U\f\U00023f99", // 𣾙
+ 0x23f9a: "U\f\U00023f9a", // 𣾚
+ 0x23f9b: "U\f\U00023f9b", // 𣾛
+ 0x23f9c: "U\f\U00023f9c", // 𣾜
+ 0x23f9d: "U\f\U00023f9d", // 𣾝
+ 0x23f9e: "U\f\U00023f9e", // 𣾞
+ 0x23f9f: "U\f\U00023f9f", // 𣾟
+ 0x23fa0: "U\f\U00023fa0", // 𣾠
+ 0x23fa1: "U\f\U00023fa1", // 𣾡
+ 0x23fa2: "U\f\U00023fa2", // 𣾢
+ 0x23fa3: "U\f\U00023fa3", // 𣾣
+ 0x23fa4: "U\f\U00023fa4", // 𣾤
+ 0x23fa5: "U\f\U00023fa5", // 𣾥
+ 0x23fa6: "U\f\U00023fa6", // 𣾦
+ 0x23fa7: "U\f\U00023fa7", // 𣾧
+ 0x23fa8: "U\f\U00023fa8", // 𣾨
+ 0x23fa9: "U\r\U00023fa9", // 𣾩
+ 0x23faa: "U\f\U00023faa", // 𣾪
+ 0x23fab: "U\f\U00023fab", // 𣾫
+ 0x23fac: "U\f\U00023fac", // 𣾬
+ 0x23fad: "U\f\U00023fad", // 𣾭
+ 0x23fae: "U\f\U00023fae", // 𣾮
+ 0x23faf: "U\f\U00023faf", // 𣾯
+ 0x23fb0: "U\f\U00023fb0", // 𣾰
+ 0x23fb1: "U\f\U00023fb1", // 𣾱
+ 0x23fb2: "U\f\U00023fb2", // 𣾲
+ 0x23fb3: "U\f\U00023fb3", // 𣾳
+ 0x23fb4: "U\f\U00023fb4", // 𣾴
+ 0x23fb5: "U\f\U00023fb5", // 𣾵
+ 0x23fb6: "U\f\U00023fb6", // 𣾶
+ 0x23fb7: "U\f\U00023fb7", // 𣾷
+ 0x23fb8: "U\f\U00023fb8", // 𣾸
+ 0x23fb9: "U\f\U00023fb9", // 𣾹
+ 0x23fba: "U\f\U00023fba", // 𣾺
+ 0x23fbb: "U\f\U00023fbb", // 𣾻
+ 0x23fbc: "U\f\U00023fbc", // 𣾼
+ 0x23fbd: "U\f\U00023fbd", // 𣾽
+ 0x23fbe: "U\f\U00023fbe", // 𣾾
+ 0x23fbf: "U\f\U00023fbf", // 𣾿
+ 0x23fc0: "U\x0e\U00023fc0", // 𣿀
+ 0x23fc1: "U\f\U00023fc1", // 𣿁
+ 0x23fc2: "U\f\U00023fc2", // 𣿂
+ 0x23fc3: "U\f\U00023fc3", // 𣿃
+ 0x23fc4: "U\f\U00023fc4", // 𣿄
+ 0x23fc5: "U\r\U00023fc5", // 𣿅
+ 0x23fc6: "U\r\U00023fc6", // 𣿆
+ 0x23fc7: "U\r\U00023fc7", // 𣿇
+ 0x23fc8: "U\r\U00023fc8", // 𣿈
+ 0x23fc9: "U\r\U00023fc9", // 𣿉
+ 0x23fca: "U\r\U00023fca", // 𣿊
+ 0x23fcb: "U\r\U00023fcb", // 𣿋
+ 0x23fcc: "U\r\U00023fcc", // 𣿌
+ 0x23fcd: "U\r\U00023fcd", // 𣿍
+ 0x23fce: "U\r\U00023fce", // 𣿎
+ 0x23fcf: "U\r\U00023fcf", // 𣿏
+ 0x23fd0: "U\r\U00023fd0", // 𣿐
+ 0x23fd1: "U\r\U00023fd1", // 𣿑
+ 0x23fd2: "U\r\U00023fd2", // 𣿒
+ 0x23fd3: "U\r\U00023fd3", // 𣿓
+ 0x23fd4: "U\r\U00023fd4", // 𣿔
+ 0x23fd5: "U\r\U00023fd5", // 𣿕
+ 0x23fd6: "U\r\U00023fd6", // 𣿖
+ 0x23fd7: "U\r\U00023fd7", // 𣿗
+ 0x23fd8: "U\r\U00023fd8", // 𣿘
+ 0x23fd9: "U\r\U00023fd9", // 𣿙
+ 0x23fda: "U\r\U00023fda", // 𣿚
+ 0x23fdb: "U\r\U00023fdb", // 𣿛
+ 0x23fdc: "U\r\U00023fdc", // 𣿜
+ 0x23fdd: "U\r\U00023fdd", // 𣿝
+ 0x23fde: "U\r\U00023fde", // 𣿞
+ 0x23fdf: "U\r\U00023fdf", // 𣿟
+ 0x23fe0: "U\r\U00023fe0", // 𣿠
+ 0x23fe1: "U\r\U00023fe1", // 𣿡
+ 0x23fe2: "U\r\U00023fe2", // 𣿢
+ 0x23fe3: "U\r\U00023fe3", // 𣿣
+ 0x23fe4: "U\r\U00023fe4", // 𣿤
+ 0x23fe5: "U\r\U00023fe5", // 𣿥
+ 0x23fe6: "U\r\U00023fe6", // 𣿦
+ 0x23fe7: "U\r\U00023fe7", // 𣿧
+ 0x23fe8: "U\r\U00023fe8", // 𣿨
+ 0x23fe9: "U\r\U00023fe9", // 𣿩
+ 0x23fea: "U\r\U00023fea", // 𣿪
+ 0x23feb: "U\r\U00023feb", // 𣿫
+ 0x23fec: "U\r\U00023fec", // 𣿬
+ 0x23fed: "U\r\U00023fed", // 𣿭
+ 0x23fee: "U\r\U00023fee", // 𣿮
+ 0x23fef: "U\r\U00023fef", // 𣿯
+ 0x23ff0: "U\r\U00023ff0", // 𣿰
+ 0x23ff1: "U\r\U00023ff1", // 𣿱
+ 0x23ff2: "U\r\U00023ff2", // 𣿲
+ 0x23ff3: "U\r\U00023ff3", // 𣿳
+ 0x23ff4: "U\r\U00023ff4", // 𣿴
+ 0x23ff5: "U\r\U00023ff5", // 𣿵
+ 0x23ff6: "U\r\U00023ff6", // 𣿶
+ 0x23ff7: "U\r\U00023ff7", // 𣿷
+ 0x23ff8: "U\r\U00023ff8", // 𣿸
+ 0x23ff9: "U\r\U00023ff9", // 𣿹
+ 0x23ffa: "U\r\U00023ffa", // 𣿺
+ 0x23ffb: "U\r\U00023ffb", // 𣿻
+ 0x23ffc: "U\r\U00023ffc", // 𣿼
+ 0x23ffd: "U\r\U00023ffd", // 𣿽
+ 0x23ffe: "U\r\U00023ffe", // 𣿾
+ 0x23fff: "U\r\U00023fff", // 𣿿
+ 0x24000: "U\r\U00024000", // 𤀀
+ 0x24001: "U\r\U00024001", // 𤀁
+ 0x24002: "U\r\U00024002", // 𤀂
+ 0x24003: "U\r\U00024003", // 𤀃
+ 0x24004: "U\r\U00024004", // 𤀄
+ 0x24005: "U\r\U00024005", // 𤀅
+ 0x24006: "U\r\U00024006", // 𤀆
+ 0x24007: "U\r\U00024007", // 𤀇
+ 0x24008: "U\r\U00024008", // 𤀈
+ 0x24009: "U\r\U00024009", // 𤀉
+ 0x2400a: "U\r\U0002400a", // 𤀊
+ 0x2400b: "U\r\U0002400b", // 𤀋
+ 0x2400c: "U\r\U0002400c", // 𤀌
+ 0x2400d: "U\r\U0002400d", // 𤀍
+ 0x2400e: "U\r\U0002400e", // 𤀎
+ 0x2400f: "U\r\U0002400f", // 𤀏
+ 0x24010: "U\r\U00024010", // 𤀐
+ 0x24011: "U\r\U00024011", // 𤀑
+ 0x24012: "U\r\U00024012", // 𤀒
+ 0x24013: "U\r\U00024013", // 𤀓
+ 0x24014: "U\r\U00024014", // 𤀔
+ 0x24015: "U\r\U00024015", // 𤀕
+ 0x24016: "U\r\U00024016", // 𤀖
+ 0x24017: "U\r\U00024017", // 𤀗
+ 0x24018: "U\r\U00024018", // 𤀘
+ 0x24019: "U\r\U00024019", // 𤀙
+ 0x2401a: "U\r\U0002401a", // 𤀚
+ 0x2401b: "U\r\U0002401b", // 𤀛
+ 0x2401c: "U\r\U0002401c", // 𤀜
+ 0x2401d: "U\r\U0002401d", // 𤀝
+ 0x2401e: "U\r\U0002401e", // 𤀞
+ 0x2401f: "U\r\U0002401f", // 𤀟
+ 0x24020: "U\r\U00024020", // 𤀠
+ 0x24021: "U\r\U00024021", // 𤀡
+ 0x24022: "0\r\U00024022", // 𤀢
+ 0x24023: "U\x0e\U00024023", // 𤀣
+ 0x24024: "U\x0e\U00024024", // 𤀤
+ 0x24025: "U\x0e\U00024025", // 𤀥
+ 0x24026: "U\x0e\U00024026", // 𤀦
+ 0x24027: "U\x0e\U00024027", // 𤀧
+ 0x24028: "U\x0e\U00024028", // 𤀨
+ 0x24029: "U\x0e\U00024029", // 𤀩
+ 0x2402a: "U\x0e\U0002402a", // 𤀪
+ 0x2402b: "U\x0e\U0002402b", // 𤀫
+ 0x2402c: "U\x0e\U0002402c", // 𤀬
+ 0x2402d: "U\x0e\U0002402d", // 𤀭
+ 0x2402e: "U\x0e\U0002402e", // 𤀮
+ 0x2402f: "U\x0e\U0002402f", // 𤀯
+ 0x24030: "U\x0e\U00024030", // 𤀰
+ 0x24031: "U\x0e\U00024031", // 𤀱
+ 0x24032: "U\x0e\U00024032", // 𤀲
+ 0x24033: "U\x0e\U00024033", // 𤀳
+ 0x24034: "U\x0e\U00024034", // 𤀴
+ 0x24035: "U\x0e\U00024035", // 𤀵
+ 0x24036: "U\x0e\U00024036", // 𤀶
+ 0x24037: "U\x0e\U00024037", // 𤀷
+ 0x24038: "U\x0e\U00024038", // 𤀸
+ 0x24039: "U\x0e\U00024039", // 𤀹
+ 0x2403a: "U\x0e\U0002403a", // 𤀺
+ 0x2403b: "U\x0e\U0002403b", // 𤀻
+ 0x2403c: "U\x0e\U0002403c", // 𤀼
+ 0x2403d: "U\x0e\U0002403d", // 𤀽
+ 0x2403e: "U\x0e\U0002403e", // 𤀾
+ 0x2403f: "U\x0e\U0002403f", // 𤀿
+ 0x24040: "U\x0e\U00024040", // 𤁀
+ 0x24041: "U\x0e\U00024041", // 𤁁
+ 0x24042: "U\x0e\U00024042", // 𤁂
+ 0x24043: "U\x0e\U00024043", // 𤁃
+ 0x24044: "U\x0e\U00024044", // 𤁄
+ 0x24045: "U\x0e\U00024045", // 𤁅
+ 0x24046: "U\x0e\U00024046", // 𤁆
+ 0x24047: "U\x0e\U00024047", // 𤁇
+ 0x24048: "U\x0e\U00024048", // 𤁈
+ 0x24049: "U\x0e\U00024049", // 𤁉
+ 0x2404a: "U\x0e\U0002404a", // 𤁊
+ 0x2404b: "U\x0e\U0002404b", // 𤁋
+ 0x2404c: "U\x0e\U0002404c", // 𤁌
+ 0x2404d: "U\x0e\U0002404d", // 𤁍
+ 0x2404e: "U\x0e\U0002404e", // 𤁎
+ 0x2404f: "U\x0e\U0002404f", // 𤁏
+ 0x24050: "U\x0e\U00024050", // 𤁐
+ 0x24051: "U\x0e\U00024051", // 𤁑
+ 0x24052: "U\x0e\U00024052", // 𤁒
+ 0x24053: "U\x0e\U00024053", // 𤁓
+ 0x24054: "U\x0e\U00024054", // 𤁔
+ 0x24055: "U\x0e\U00024055", // 𤁕
+ 0x24056: "U\x0e\U00024056", // 𤁖
+ 0x24057: "U\x0e\U00024057", // 𤁗
+ 0x24058: "U\x0e\U00024058", // 𤁘
+ 0x24059: "U\x0e\U00024059", // 𤁙
+ 0x2405a: "U\x0e\U0002405a", // 𤁚
+ 0x2405b: "U\x0e\U0002405b", // 𤁛
+ 0x2405c: "U\x0e\U0002405c", // 𤁜
+ 0x2405d: "U\x0e\U0002405d", // 𤁝
+ 0x2405e: "U\x0f\U0002405e", // 𤁞
+ 0x2405f: "U\x0e\U0002405f", // 𤁟
+ 0x24060: "U\x0e\U00024060", // 𤁠
+ 0x24061: "U\x0f\U00024061", // 𤁡
+ 0x24062: "U\x0f\U00024062", // 𤁢
+ 0x24063: "U\x0f\U00024063", // 𤁣
+ 0x24064: "U\x0f\U00024064", // 𤁤
+ 0x24065: "U\x0f\U00024065", // 𤁥
+ 0x24066: "U\x0f\U00024066", // 𤁦
+ 0x24067: "U\x0f\U00024067", // 𤁧
+ 0x24068: "U\x0f\U00024068", // 𤁨
+ 0x24069: "U\x0f\U00024069", // 𤁩
+ 0x2406a: "U\x0f\U0002406a", // 𤁪
+ 0x2406b: "U\x0f\U0002406b", // 𤁫
+ 0x2406c: "U\x0f\U0002406c", // 𤁬
+ 0x2406d: "U\x0f\U0002406d", // 𤁭
+ 0x2406e: "U\x0f\U0002406e", // 𤁮
+ 0x2406f: "U\x0f\U0002406f", // 𤁯
+ 0x24070: "U\x0f\U00024070", // 𤁰
+ 0x24071: "U\x0f\U00024071", // 𤁱
+ 0x24072: "U\x0f\U00024072", // 𤁲
+ 0x24073: "U\x0f\U00024073", // 𤁳
+ 0x24074: "U\x0f\U00024074", // 𤁴
+ 0x24075: "U\x0f\U00024075", // 𤁵
+ 0x24076: "U\x0f\U00024076", // 𤁶
+ 0x24077: "U\x0f\U00024077", // 𤁷
+ 0x24078: "U\x0f\U00024078", // 𤁸
+ 0x24079: "U\x0f\U00024079", // 𤁹
+ 0x2407a: "U\x0f\U0002407a", // 𤁺
+ 0x2407b: "U\x0f\U0002407b", // 𤁻
+ 0x2407c: "U\x0f\U0002407c", // 𤁼
+ 0x2407d: "U\x0f\U0002407d", // 𤁽
+ 0x2407e: "U\x0f\U0002407e", // 𤁾
+ 0x2407f: "U\x0f\U0002407f", // 𤁿
+ 0x24080: "U\x0f\U00024080", // 𤂀
+ 0x24081: "U\x0f\U00024081", // 𤂁
+ 0x24082: "U\x0f\U00024082", // 𤂂
+ 0x24083: "U\x0f\U00024083", // 𤂃
+ 0x24084: "U\x0f\U00024084", // 𤂄
+ 0x24085: "U\x0f\U00024085", // 𤂅
+ 0x24086: "U\x0f\U00024086", // 𤂆
+ 0x24087: "U\x0f\U00024087", // 𤂇
+ 0x24088: "U\x0f\U00024088", // 𤂈
+ 0x24089: "U\x0f\U00024089", // 𤂉
+ 0x2408a: "U\x0f\U0002408a", // 𤂊
+ 0x2408b: "U\x0f\U0002408b", // 𤂋
+ 0x2408c: "U\x0f\U0002408c", // 𤂌
+ 0x2408d: "U\x0f\U0002408d", // 𤂍
+ 0x2408e: "U\x0f\U0002408e", // 𤂎
+ 0x2408f: "U\x0f\U0002408f", // 𤂏
+ 0x24090: "U\x0f\U00024090", // 𤂐
+ 0x24091: "U\x0f\U00024091", // 𤂑
+ 0x24092: "U\x0f\U00024092", // 𤂒
+ 0x24093: "U\x0f\U00024093", // 𤂓
+ 0x24094: "U\x0f\U00024094", // 𤂔
+ 0x24095: "U\x0f\U00024095", // 𤂕
+ 0x24096: "U\x0f\U00024096", // 𤂖
+ 0x24097: "U\x0f\U00024097", // 𤂗
+ 0x24098: "U\x0f\U00024098", // 𤂘
+ 0x24099: "U\x0f\U00024099", // 𤂙
+ 0x2409a: "U\x0f\U0002409a", // 𤂚
+ 0x2409b: "U\x0f\U0002409b", // 𤂛
+ 0x2409c: "U\x0f\U0002409c", // 𤂜
+ 0x2409d: "U\x10\U0002409d", // 𤂝
+ 0x2409e: "U\x0f\U0002409e", // 𤂞
+ 0x2409f: "U\x0f\U0002409f", // 𤂟
+ 0x240a0: "U\x0f\U000240a0", // 𤂠
+ 0x240a1: "U\x10\U000240a1", // 𤂡
+ 0x240a2: "U\x0f\U000240a2", // 𤂢
+ 0x240a3: "U\x0f\U000240a3", // 𤂣
+ 0x240a4: "U\x0f\U000240a4", // 𤂤
+ 0x240a5: "U\x0f\U000240a5", // 𤂥
+ 0x240a6: "U\x0f\U000240a6", // 𤂦
+ 0x240a7: "U\x0f\U000240a7", // 𤂧
+ 0x240a8: "U\x0f\U000240a8", // 𤂨
+ 0x240a9: "U\x0f\U000240a9", // 𤂩
+ 0x240aa: "U\x0f\U000240aa", // 𤂪
+ 0x240ab: "U\x0f\U000240ab", // 𤂫
+ 0x240ac: "U\x0f\U000240ac", // 𤂬
+ 0x240ad: "U\x0f\U000240ad", // 𤂭
+ 0x240ae: "U\x0f\U000240ae", // 𤂮
+ 0x240af: "U\x0f\U000240af", // 𤂯
+ 0x240b0: "U\x0f\U000240b0", // 𤂰
+ 0x240b1: "U\x0f\U000240b1", // 𤂱
+ 0x240b2: "U\x0f\U000240b2", // 𤂲
+ 0x240b3: "U\x10\U000240b3", // 𤂳
+ 0x240b4: "U\x10\U000240b4", // 𤂴
+ 0x240b5: "U\x10\U000240b5", // 𤂵
+ 0x240b6: "U\x10\U000240b6", // 𤂶
+ 0x240b7: "U\x10\U000240b7", // 𤂷
+ 0x240b8: "U\x10\U000240b8", // 𤂸
+ 0x240b9: "U\x10\U000240b9", // 𤂹
+ 0x240ba: "U\x10\U000240ba", // 𤂺
+ 0x240bb: "U\x10\U000240bb", // 𤂻
+ 0x240bc: "U\x10\U000240bc", // 𤂼
+ 0x240bd: "U\x10\U000240bd", // 𤂽
+ 0x240be: "U\x10\U000240be", // 𤂾
+ 0x240bf: "U\x10\U000240bf", // 𤂿
+ 0x240c0: "U\x10\U000240c0", // 𤃀
+ 0x240c1: "U\x10\U000240c1", // 𤃁
+ 0x240c2: "U\x10\U000240c2", // 𤃂
+ 0x240c3: "U\x10\U000240c3", // 𤃃
+ 0x240c4: "U\x10\U000240c4", // 𤃄
+ 0x240c5: "U\x10\U000240c5", // 𤃅
+ 0x240c6: "U\x10\U000240c6", // 𤃆
+ 0x240c7: "U\x10\U000240c7", // 𤃇
+ 0x240c8: "U\x10\U000240c8", // 𤃈
+ 0x240c9: "U\x10\U000240c9", // 𤃉
+ 0x240ca: "U\x10\U000240ca", // 𤃊
+ 0x240cb: "U\x10\U000240cb", // 𤃋
+ 0x240cc: "U\x10\U000240cc", // 𤃌
+ 0x240cd: "U\x10\U000240cd", // 𤃍
+ 0x240ce: "U\x10\U000240ce", // 𤃎
+ 0x240cf: "U\x10\U000240cf", // 𤃏
+ 0x240d0: "U\x10\U000240d0", // 𤃐
+ 0x240d1: "U\x10\U000240d1", // 𤃑
+ 0x240d2: "U\x10\U000240d2", // 𤃒
+ 0x240d3: "U\x10\U000240d3", // 𤃓
+ 0x240d4: "U\x10\U000240d4", // 𤃔
+ 0x240d5: "U\x10\U000240d5", // 𤃕
+ 0x240d6: "U\x10\U000240d6", // 𤃖
+ 0x240d7: "U\x10\U000240d7", // 𤃗
+ 0x240d8: "U\x10\U000240d8", // 𤃘
+ 0x240d9: "U\x10\U000240d9", // 𤃙
+ 0x240da: "U\x10\U000240da", // 𤃚
+ 0x240db: "U\x10\U000240db", // 𤃛
+ 0x240dc: "U\x10\U000240dc", // 𤃜
+ 0x240dd: "U\x10\U000240dd", // 𤃝
+ 0x240de: "U\x10\U000240de", // 𤃞
+ 0x240df: "U\x10\U000240df", // 𤃟
+ 0x240e0: "U\x10\U000240e0", // 𤃠
+ 0x240e1: "U\x10\U000240e1", // 𤃡
+ 0x240e2: "U\x10\U000240e2", // 𤃢
+ 0x240e3: "U\x10\U000240e3", // 𤃣
+ 0x240e4: "U\x10\U000240e4", // 𤃤
+ 0x240e5: "U\x10\U000240e5", // 𤃥
+ 0x240e6: "U\x10\U000240e6", // 𤃦
+ 0x240e7: "U\x10\U000240e7", // 𤃧
+ 0x240e8: "U\x11\U000240e8", // 𤃨
+ 0x240e9: "U\x11\U000240e9", // 𤃩
+ 0x240ea: "U\x11\U000240ea", // 𤃪
+ 0x240eb: "U\x11\U000240eb", // 𤃫
+ 0x240ec: "U\x11\U000240ec", // 𤃬
+ 0x240ed: "U\x11\U000240ed", // 𤃭
+ 0x240ee: "U\x11\U000240ee", // 𤃮
+ 0x240ef: "U\x11\U000240ef", // 𤃯
+ 0x240f0: "U\x11\U000240f0", // 𤃰
+ 0x240f1: "U\x11\U000240f1", // 𤃱
+ 0x240f2: "U\x11\U000240f2", // 𤃲
+ 0x240f3: "U\x11\U000240f3", // 𤃳
+ 0x240f4: "U\x11\U000240f4", // 𤃴
+ 0x240f5: "U\x11\U000240f5", // 𤃵
+ 0x240f6: "U\x11\U000240f6", // 𤃶
+ 0x240f7: "U\x11\U000240f7", // 𤃷
+ 0x240f8: "U\x11\U000240f8", // 𤃸
+ 0x240f9: "U\x11\U000240f9", // 𤃹
+ 0x240fa: "U\x11\U000240fa", // 𤃺
+ 0x240fb: "U\x11\U000240fb", // 𤃻
+ 0x240fc: "U\x11\U000240fc", // 𤃼
+ 0x240fd: "U\x11\U000240fd", // 𤃽
+ 0x240fe: "U\x11\U000240fe", // 𤃾
+ 0x240ff: "U\x11\U000240ff", // 𤃿
+ 0x24100: "U\x11\U00024100", // 𤄀
+ 0x24101: "U\x11\U00024101", // 𤄁
+ 0x24102: "U\x11\U00024102", // 𤄂
+ 0x24103: "U\x11\U00024103", // 𤄃
+ 0x24104: "U\x11\U00024104", // 𤄄
+ 0x24105: "U\x11\U00024105", // 𤄅
+ 0x24106: "U\x11\U00024106", // 𤄆
+ 0x24107: "U\x11\U00024107", // 𤄇
+ 0x24108: "U\x11\U00024108", // 𤄈
+ 0x24109: "U\x11\U00024109", // 𤄉
+ 0x2410a: "U\x11\U0002410a", // 𤄊
+ 0x2410b: "U\x11\U0002410b", // 𤄋
+ 0x2410c: "U\x11\U0002410c", // 𤄌
+ 0x2410d: "U\x11\U0002410d", // 𤄍
+ 0x2410e: "U\x12\U0002410e", // 𤄎
+ 0x2410f: "U\x12\U0002410f", // 𤄏
+ 0x24110: "U\x12\U00024110", // 𤄐
+ 0x24111: "U\x12\U00024111", // 𤄑
+ 0x24112: "U\x12\U00024112", // 𤄒
+ 0x24113: "U\x12\U00024113", // 𤄓
+ 0x24114: "U\x12\U00024114", // 𤄔
+ 0x24115: "U\x12\U00024115", // 𤄕
+ 0x24116: "U\x12\U00024116", // 𤄖
+ 0x24117: "U\x12\U00024117", // 𤄗
+ 0x24118: "U\x12\U00024118", // 𤄘
+ 0x24119: "U\x12\U00024119", // 𤄙
+ 0x2411a: "U\x12\U0002411a", // 𤄚
+ 0x2411b: "U\x12\U0002411b", // 𤄛
+ 0x2411c: "U\x12\U0002411c", // 𤄜
+ 0x2411d: "U\x12\U0002411d", // 𤄝
+ 0x2411e: "U\x12\U0002411e", // 𤄞
+ 0x2411f: "U\x12\U0002411f", // 𤄟
+ 0x24120: "U\x12\U00024120", // 𤄠
+ 0x24121: "U\x12\U00024121", // 𤄡
+ 0x24122: "U\x12\U00024122", // 𤄢
+ 0x24123: "U\x12\U00024123", // 𤄣
+ 0x24124: "U\x12\U00024124", // 𤄤
+ 0x24125: "U\x12\U00024125", // 𤄥
+ 0x24126: "U\x12\U00024126", // 𤄦
+ 0x24127: "U\x12\U00024127", // 𤄧
+ 0x24128: "U\x12\U00024128", // 𤄨
+ 0x24129: "U\x12\U00024129", // 𤄩
+ 0x2412a: "U\x12\U0002412a", // 𤄪
+ 0x2412b: "U\x12\U0002412b", // 𤄫
+ 0x2412c: "U\x12\U0002412c", // 𤄬
+ 0x2412d: "U\x12\U0002412d", // 𤄭
+ 0x2412e: "U\x12\U0002412e", // 𤄮
+ 0x2412f: "U\x12\U0002412f", // 𤄯
+ 0x24130: "U\x12\U00024130", // 𤄰
+ 0x24131: "U\x12\U00024131", // 𤄱
+ 0x24132: "U\x12\U00024132", // 𤄲
+ 0x24133: "U\x12\U00024133", // 𤄳
+ 0x24134: "U\x12\U00024134", // 𤄴
+ 0x24135: "U\x12\U00024135", // 𤄵
+ 0x24136: "U\x13\U00024136", // 𤄶
+ 0x24137: "U\x13\U00024137", // 𤄷
+ 0x24138: "U\x13\U00024138", // 𤄸
+ 0x24139: "U\x13\U00024139", // 𤄹
+ 0x2413a: "U\x13\U0002413a", // 𤄺
+ 0x2413b: "U\x13\U0002413b", // 𤄻
+ 0x2413c: "U\x13\U0002413c", // 𤄼
+ 0x2413d: "U\x13\U0002413d", // 𤄽
+ 0x2413e: "U\x13\U0002413e", // 𤄾
+ 0x2413f: "U\x13\U0002413f", // 𤄿
+ 0x24140: "U\x13\U00024140", // 𤅀
+ 0x24141: "U\x13\U00024141", // 𤅁
+ 0x24142: "U\x13\U00024142", // 𤅂
+ 0x24143: "U\x13\U00024143", // 𤅃
+ 0x24144: "U\x13\U00024144", // 𤅄
+ 0x24145: "U\x13\U00024145", // 𤅅
+ 0x24146: "U\x13\U00024146", // 𤅆
+ 0x24147: "U\x13\U00024147", // 𤅇
+ 0x24148: "U\x13\U00024148", // 𤅈
+ 0x24149: "U\x13\U00024149", // 𤅉
+ 0x2414a: "U\x14\U0002414a", // 𤅊
+ 0x2414b: "U\x14\U0002414b", // 𤅋
+ 0x2414c: "U\x14\U0002414c", // 𤅌
+ 0x2414d: "U\x14\U0002414d", // 𤅍
+ 0x2414e: "U\x14\U0002414e", // 𤅎
+ 0x2414f: "U\x14\U0002414f", // 𤅏
+ 0x24150: "U\x14\U00024150", // 𤅐
+ 0x24151: "U\x14\U00024151", // 𤅑
+ 0x24152: "U\x14\U00024152", // 𤅒
+ 0x24153: "U\x14\U00024153", // 𤅓
+ 0x24154: "U\x14\U00024154", // 𤅔
+ 0x24155: "U\x14\U00024155", // 𤅕
+ 0x24156: "U\x14\U00024156", // 𤅖
+ 0x24157: "U\x14\U00024157", // 𤅗
+ 0x24158: "U\x14\U00024158", // 𤅘
+ 0x24159: "U\x14\U00024159", // 𤅙
+ 0x2415a: "U\x14\U0002415a", // 𤅚
+ 0x2415b: "U\x14\U0002415b", // 𤅛
+ 0x2415c: "U\x14\U0002415c", // 𤅜
+ 0x2415d: "U\x14\U0002415d", // 𤅝
+ 0x2415e: "U\x14\U0002415e", // 𤅞
+ 0x2415f: "U\x14\U0002415f", // 𤅟
+ 0x24160: "U\x15\U00024160", // 𤅠
+ 0x24161: "U\x15\U00024161", // 𤅡
+ 0x24162: "U\x15\U00024162", // 𤅢
+ 0x24163: "U\x15\U00024163", // 𤅣
+ 0x24164: "U\x15\U00024164", // 𤅤
+ 0x24165: "U\x15\U00024165", // 𤅥
+ 0x24166: "U\x15\U00024166", // 𤅦
+ 0x24167: "U\x15\U00024167", // 𤅧
+ 0x24168: "U\x15\U00024168", // 𤅨
+ 0x24169: "U\x16\U00024169", // 𤅩
+ 0x2416a: "U\x16\U0002416a", // 𤅪
+ 0x2416b: "U\x16\U0002416b", // 𤅫
+ 0x2416c: "U\x16\U0002416c", // 𤅬
+ 0x2416d: "U\x16\U0002416d", // 𤅭
+ 0x2416e: "U\x16\U0002416e", // 𤅮
+ 0x2416f: "U\x16\U0002416f", // 𤅯
+ 0x24170: "U\x17\U00024170", // 𤅰
+ 0x24171: "U\x17\U00024171", // 𤅱
+ 0x24172: "U\x17\U00024172", // 𤅲
+ 0x24173: "U\x17\U00024173", // 𤅳
+ 0x24174: "U\x17\U00024174", // 𤅴
+ 0x24175: "U\x17\U00024175", // 𤅵
+ 0x24176: "U\x17\U00024176", // 𤅶
+ 0x24177: "U\x18\U00024177", // 𤅷
+ 0x24178: "U\x18\U00024178", // 𤅸
+ 0x24179: "U\x18\U00024179", // 𤅹
+ 0x2417a: "U\x18\U0002417a", // 𤅺
+ 0x2417b: "U\x18\U0002417b", // 𤅻
+ 0x2417c: "U\x19\U0002417c", // 𤅼
+ 0x2417d: "U\x19\U0002417d", // 𤅽
+ 0x2417e: "U\x1a\U0002417e", // 𤅾
+ 0x2417f: "U\x1b\U0002417f", // 𤅿
+ 0x24180: "U\x1e\U00024180", // 𤆀
+ 0x24181: "U \U00024181", // 𤆁
+ 0x24182: "V\x01\U00024182", // 𤆂
+ 0x24183: "V\x02\U00024183", // 𤆃
+ 0x24184: "V\x02\U00024184", // 𤆄
+ 0x24185: "V\x02\U00024185", // 𤆅
+ 0x24186: "V\x02\U00024186", // 𤆆
+ 0x24187: "V\x02\U00024187", // 𤆇
+ 0x24188: "V\x02\U00024188", // 𤆈
+ 0x24189: "V\x02\U00024189", // 𤆉
+ 0x2418a: "V\x02\U0002418a", // 𤆊
+ 0x2418b: "V\x02\U0002418b", // 𤆋
+ 0x2418c: "V\x02\U0002418c", // 𤆌
+ 0x2418d: "V\x03\U0002418d", // 𤆍
+ 0x2418e: "V\x03\U0002418e", // 𤆎
+ 0x2418f: "V\x03\U0002418f", // 𤆏
+ 0x24190: "V\x03\U00024190", // 𤆐
+ 0x24191: "V\x03\U00024191", // 𤆑
+ 0x24192: "V\x03\U00024192", // 𤆒
+ 0x24193: "V\x03\U00024193", // 𤆓
+ 0x24194: "V\x03\U00024194", // 𤆔
+ 0x24195: "V\x03\U00024195", // 𤆕
+ 0x24196: "V\x03\U00024196", // 𤆖
+ 0x24197: "V\x03\U00024197", // 𤆗
+ 0x24198: "V\x03\U00024198", // 𤆘
+ 0x24199: "V\x03\U00024199", // 𤆙
+ 0x2419a: "V\x03\U0002419a", // 𤆚
+ 0x2419b: "V\x03\U0002419b", // 𤆛
+ 0x2419c: "V\x03\U0002419c", // 𤆜
+ 0x2419d: "V\x04\U0002419d", // 𤆝
+ 0x2419e: "V\x04\U0002419e", // 𤆞
+ 0x2419f: "V\x04\U0002419f", // 𤆟
+ 0x241a0: "V\x04\U000241a0", // 𤆠
+ 0x241a1: "V\x04\U000241a1", // 𤆡
+ 0x241a2: "V\x04\U000241a2", // 𤆢
+ 0x241a3: "V\x04\U000241a3", // 𤆣
+ 0x241a4: "V\x04\U000241a4", // 𤆤
+ 0x241a5: "V\x04\U000241a5", // 𤆥
+ 0x241a6: "V\x04\U000241a6", // 𤆦
+ 0x241a7: "V\x04\U000241a7", // 𤆧
+ 0x241a8: "V\x04\U000241a8", // 𤆨
+ 0x241a9: "V\x04\U000241a9", // 𤆩
+ 0x241aa: "V\x04\U000241aa", // 𤆪
+ 0x241ab: "V\x04\U000241ab", // 𤆫
+ 0x241ac: "V\x04\U000241ac", // 𤆬
+ 0x241ad: "V\x04\U000241ad", // 𤆭
+ 0x241ae: "V\x04\U000241ae", // 𤆮
+ 0x241af: "V\x04\U000241af", // 𤆯
+ 0x241b0: "V\x04\U000241b0", // 𤆰
+ 0x241b1: "V\x04\U000241b1", // 𤆱
+ 0x241b2: "V\x04\U000241b2", // 𤆲
+ 0x241b3: "V\x04\U000241b3", // 𤆳
+ 0x241b4: "V\x04\U000241b4", // 𤆴
+ 0x241b5: "V\x04\U000241b5", // 𤆵
+ 0x241b6: "V\x04\U000241b6", // 𤆶
+ 0x241b7: "V\x04\U000241b7", // 𤆷
+ 0x241b8: "V\x04\U000241b8", // 𤆸
+ 0x241b9: "V\x04\U000241b9", // 𤆹
+ 0x241ba: "V\x04\U000241ba", // 𤆺
+ 0x241bb: "V\x04\U000241bb", // 𤆻
+ 0x241bc: "V\x05\U000241bc", // 𤆼
+ 0x241bd: "V\x05\U000241bd", // 𤆽
+ 0x241be: "V\x05\U000241be", // 𤆾
+ 0x241bf: "V\x05\U000241bf", // 𤆿
+ 0x241c0: "V\x05\U000241c0", // 𤇀
+ 0x241c1: "V\x05\U000241c1", // 𤇁
+ 0x241c2: "V\x05\U000241c2", // 𤇂
+ 0x241c3: "V\x05\U000241c3", // 𤇃
+ 0x241c4: "V\x05\U000241c4", // 𤇄
+ 0x241c5: "V\x05\U000241c5", // 𤇅
+ 0x241c6: "V\x05\U000241c6", // 𤇆
+ 0x241c7: "V\x05\U000241c7", // 𤇇
+ 0x241c8: "V\x05\U000241c8", // 𤇈
+ 0x241c9: "V\x05\U000241c9", // 𤇉
+ 0x241ca: "V\x05\U000241ca", // 𤇊
+ 0x241cb: "V\x05\U000241cb", // 𤇋
+ 0x241cc: "V\x05\U000241cc", // 𤇌
+ 0x241cd: "V\x05\U000241cd", // 𤇍
+ 0x241ce: "V\x05\U000241ce", // 𤇎
+ 0x241cf: "V\x05\U000241cf", // 𤇏
+ 0x241d0: "V\x05\U000241d0", // 𤇐
+ 0x241d1: "V\x05\U000241d1", // 𤇑
+ 0x241d2: "V\x05\U000241d2", // 𤇒
+ 0x241d3: "V\x05\U000241d3", // 𤇓
+ 0x241d4: "V\x05\U000241d4", // 𤇔
+ 0x241d5: "V\x05\U000241d5", // 𤇕
+ 0x241d6: "V\x05\U000241d6", // 𤇖
+ 0x241d7: "V\x05\U000241d7", // 𤇗
+ 0x241d8: "V\x05\U000241d8", // 𤇘
+ 0x241d9: "V\x05\U000241d9", // 𤇙
+ 0x241da: "V\x05\U000241da", // 𤇚
+ 0x241db: "V\x05\U000241db", // 𤇛
+ 0x241dc: "V\x05\U000241dc", // 𤇜
+ 0x241dd: "V\x05\U000241dd", // 𤇝
+ 0x241de: "V\x05\U000241de", // 𤇞
+ 0x241df: "V\x05\U000241df", // 𤇟
+ 0x241e0: "V\x05\U000241e0", // 𤇠
+ 0x241e1: "V\x05\U000241e1", // 𤇡
+ 0x241e2: "V\x05\U000241e2", // 𤇢
+ 0x241e3: "V\x05\U000241e3", // 𤇣
+ 0x241e4: "V\x05\U000241e4", // 𤇤
+ 0x241e5: "V\x05\U000241e5", // 𤇥
+ 0x241e6: "V\x05\U000241e6", // 𤇦
+ 0x241e7: "V\x05\U000241e7", // 𤇧
+ 0x241e8: "V\x05\U000241e8", // 𤇨
+ 0x241e9: "V\x05\U000241e9", // 𤇩
+ 0x241ea: "V\x05\U000241ea", // 𤇪
+ 0x241eb: "V\x05\U000241eb", // 𤇫
+ 0x241ec: "V\x05\U000241ec", // 𤇬
+ 0x241ed: "V\x05\U000241ed", // 𤇭
+ 0x241ee: "V\x05\U000241ee", // 𤇮
+ 0x241ef: "V\x06\U000241ef", // 𤇯
+ 0x241f0: "V\x06\U000241f0", // 𤇰
+ 0x241f1: "V\x06\U000241f1", // 𤇱
+ 0x241f2: "V\x06\U000241f2", // 𤇲
+ 0x241f3: "V\x06\U000241f3", // 𤇳
+ 0x241f4: "V\x06\U000241f4", // 𤇴
+ 0x241f5: "V\x06\U000241f5", // 𤇵
+ 0x241f6: "V\x06\U000241f6", // 𤇶
+ 0x241f7: "V\x06\U000241f7", // 𤇷
+ 0x241f8: "V\x06\U000241f8", // 𤇸
+ 0x241f9: "V\x06\U000241f9", // 𤇹
+ 0x241fa: "V\x06\U000241fa", // 𤇺
+ 0x241fb: "V\x06\U000241fb", // 𤇻
+ 0x241fc: "V\x06\U000241fc", // 𤇼
+ 0x241fd: "V\x06\U000241fd", // 𤇽
+ 0x241fe: "V\x06\U000241fe", // 𤇾
+ 0x241ff: "V\x06\U000241ff", // 𤇿
+ 0x24200: "V\x06\U00024200", // 𤈀
+ 0x24201: "V\x06\U00024201", // 𤈁
+ 0x24202: "V\x06\U00024202", // 𤈂
+ 0x24203: "V\x06\U00024203", // 𤈃
+ 0x24204: "V\x06\U00024204", // 𤈄
+ 0x24205: "V\x06\U00024205", // 𤈅
+ 0x24206: "V\x06\U00024206", // 𤈆
+ 0x24207: "V\x06\U00024207", // 𤈇
+ 0x24208: "V\x06\U00024208", // 𤈈
+ 0x24209: "V\x06\U00024209", // 𤈉
+ 0x2420a: "V\x06\U0002420a", // 𤈊
+ 0x2420b: "V\x06\U0002420b", // 𤈋
+ 0x2420c: "V\x06\U0002420c", // 𤈌
+ 0x2420d: "V\x06\U0002420d", // 𤈍
+ 0x2420e: "V\x06\U0002420e", // 𤈎
+ 0x2420f: "V\x06\U0002420f", // 𤈏
+ 0x24210: "V\x06\U00024210", // 𤈐
+ 0x24211: "V\x06\U00024211", // 𤈑
+ 0x24212: "V\x06\U00024212", // 𤈒
+ 0x24213: "V\x06\U00024213", // 𤈓
+ 0x24214: "V\x06\U00024214", // 𤈔
+ 0x24215: "V\x06\U00024215", // 𤈕
+ 0x24216: "V\x06\U00024216", // 𤈖
+ 0x24217: "V\x06\U00024217", // 𤈗
+ 0x24218: "V\x06\U00024218", // 𤈘
+ 0x24219: "V\x06\U00024219", // 𤈙
+ 0x2421a: "V\x06\U0002421a", // 𤈚
+ 0x2421b: "V\x06\U0002421b", // 𤈛
+ 0x2421c: "V\x06\U0002421c", // 𤈜
+ 0x2421d: "V\x06\U0002421d", // 𤈝
+ 0x2421e: "V\x06\U0002421e", // 𤈞
+ 0x2421f: "V\x06\U0002421f", // 𤈟
+ 0x24220: "V\x06\U00024220", // 𤈠
+ 0x24221: "V\x06\U00024221", // 𤈡
+ 0x24222: "V\x06\U00024222", // 𤈢
+ 0x24223: "V\x06\U00024223", // 𤈣
+ 0x24224: "V\x06\U00024224", // 𤈤
+ 0x24225: "V\a\U00024225", // 𤈥
+ 0x24226: "V\a\U00024226", // 𤈦
+ 0x24227: "V\a\U00024227", // 𤈧
+ 0x24228: "V\a\U00024228", // 𤈨
+ 0x24229: "V\a\U00024229", // 𤈩
+ 0x2422a: "V\a\U0002422a", // 𤈪
+ 0x2422b: "V\a\U0002422b", // 𤈫
+ 0x2422c: "V\a\U0002422c", // 𤈬
+ 0x2422d: "V\a\U0002422d", // 𤈭
+ 0x2422e: "V\a\U0002422e", // 𤈮
+ 0x2422f: "V\a\U0002422f", // 𤈯
+ 0x24230: "V\a\U00024230", // 𤈰
+ 0x24231: "V\a\U00024231", // 𤈱
+ 0x24232: "V\a\U00024232", // 𤈲
+ 0x24233: "V\a\U00024233", // 𤈳
+ 0x24234: "V\a\U00024234", // 𤈴
+ 0x24235: "V\a\U00024235", // 𤈵
+ 0x24236: "V\a\U00024236", // 𤈶
+ 0x24237: "V\a\U00024237", // 𤈷
+ 0x24238: "V\a\U00024238", // 𤈸
+ 0x24239: "V\a\U00024239", // 𤈹
+ 0x2423a: "V\a\U0002423a", // 𤈺
+ 0x2423b: "V\a\U0002423b", // 𤈻
+ 0x2423c: "V\a\U0002423c", // 𤈼
+ 0x2423d: "V\a\U0002423d", // 𤈽
+ 0x2423e: "V\a\U0002423e", // 𤈾
+ 0x2423f: "V\a\U0002423f", // 𤈿
+ 0x24240: "V\a\U00024240", // 𤉀
+ 0x24241: "V\a\U00024241", // 𤉁
+ 0x24242: "V\a\U00024242", // 𤉂
+ 0x24243: "V\a\U00024243", // 𤉃
+ 0x24244: "V\a\U00024244", // 𤉄
+ 0x24245: "V\a\U00024245", // 𤉅
+ 0x24246: "V\a\U00024246", // 𤉆
+ 0x24247: "V\a\U00024247", // 𤉇
+ 0x24248: "V\a\U00024248", // 𤉈
+ 0x24249: "V\a\U00024249", // 𤉉
+ 0x2424a: "V\a\U0002424a", // 𤉊
+ 0x2424b: "V\a\U0002424b", // 𤉋
+ 0x2424c: "V\a\U0002424c", // 𤉌
+ 0x2424d: "V\a\U0002424d", // 𤉍
+ 0x2424e: "V\a\U0002424e", // 𤉎
+ 0x2424f: "V\a\U0002424f", // 𤉏
+ 0x24250: "V\a\U00024250", // 𤉐
+ 0x24251: "V\a\U00024251", // 𤉑
+ 0x24252: "V\a\U00024252", // 𤉒
+ 0x24253: "V\a\U00024253", // 𤉓
+ 0x24254: "V\a\U00024254", // 𤉔
+ 0x24255: "V\a\U00024255", // 𤉕
+ 0x24256: "V\a\U00024256", // 𤉖
+ 0x24257: "V\a\U00024257", // 𤉗
+ 0x24258: "V\a\U00024258", // 𤉘
+ 0x24259: "V\a\U00024259", // 𤉙
+ 0x2425a: "V\a\U0002425a", // 𤉚
+ 0x2425b: "V\a\U0002425b", // 𤉛
+ 0x2425c: "V\a\U0002425c", // 𤉜
+ 0x2425d: "V\a\U0002425d", // 𤉝
+ 0x2425e: "V\a\U0002425e", // 𤉞
+ 0x2425f: "V\a\U0002425f", // 𤉟
+ 0x24260: "V\a\U00024260", // 𤉠
+ 0x24261: "V\a\U00024261", // 𤉡
+ 0x24262: "V\b\U00024262", // 𤉢
+ 0x24263: "V\b\U00024263", // 𤉣
+ 0x24264: "V\b\U00024264", // 𤉤
+ 0x24265: "V\b\U00024265", // 𤉥
+ 0x24266: "V\b\U00024266", // 𤉦
+ 0x24267: "V\b\U00024267", // 𤉧
+ 0x24268: "V\b\U00024268", // 𤉨
+ 0x24269: "V\b\U00024269", // 𤉩
+ 0x2426a: "V\b\U0002426a", // 𤉪
+ 0x2426b: "V\b\U0002426b", // 𤉫
+ 0x2426c: "V\b\U0002426c", // 𤉬
+ 0x2426d: "V\b\U0002426d", // 𤉭
+ 0x2426e: "V\b\U0002426e", // 𤉮
+ 0x2426f: "V\b\U0002426f", // 𤉯
+ 0x24270: "V\b\U00024270", // 𤉰
+ 0x24271: "V\b\U00024271", // 𤉱
+ 0x24272: "V\b\U00024272", // 𤉲
+ 0x24273: "V\b\U00024273", // 𤉳
+ 0x24274: "V\b\U00024274", // 𤉴
+ 0x24275: "V\b\U00024275", // 𤉵
+ 0x24276: "V\b\U00024276", // 𤉶
+ 0x24277: "V\b\U00024277", // 𤉷
+ 0x24278: "V\b\U00024278", // 𤉸
+ 0x24279: "V\b\U00024279", // 𤉹
+ 0x2427a: "V\b\U0002427a", // 𤉺
+ 0x2427b: "V\b\U0002427b", // 𤉻
+ 0x2427c: "V\b\U0002427c", // 𤉼
+ 0x2427d: "V\b\U0002427d", // 𤉽
+ 0x2427e: "V\b\U0002427e", // 𤉾
+ 0x2427f: "V\b\U0002427f", // 𤉿
+ 0x24280: "V\b\U00024280", // 𤊀
+ 0x24281: "V\b\U00024281", // 𤊁
+ 0x24282: "V\b\U00024282", // 𤊂
+ 0x24283: "V\b\U00024283", // 𤊃
+ 0x24284: "V\b\U00024284", // 𤊄
+ 0x24285: "V\b\U00024285", // 𤊅
+ 0x24286: "V\b\U00024286", // 𤊆
+ 0x24287: "V\b\U00024287", // 𤊇
+ 0x24288: "V\b\U00024288", // 𤊈
+ 0x24289: "V\b\U00024289", // 𤊉
+ 0x2428a: "V\b\U0002428a", // 𤊊
+ 0x2428b: "V\b\U0002428b", // 𤊋
+ 0x2428c: "V\b\U0002428c", // 𤊌
+ 0x2428d: "V\b\U0002428d", // 𤊍
+ 0x2428e: "V\b\U0002428e", // 𤊎
+ 0x2428f: "V\b\U0002428f", // 𤊏
+ 0x24290: "V\b\U00024290", // 𤊐
+ 0x24291: "V\b\U00024291", // 𤊑
+ 0x24292: "V\b\U00024292", // 𤊒
+ 0x24293: "V\b\U00024293", // 𤊓
+ 0x24294: "V\b\U00024294", // 𤊔
+ 0x24295: "V\b\U00024295", // 𤊕
+ 0x24296: "V\b\U00024296", // 𤊖
+ 0x24297: "V\b\U00024297", // 𤊗
+ 0x24298: "V\b\U00024298", // 𤊘
+ 0x24299: "V\b\U00024299", // 𤊙
+ 0x2429a: "V\b\U0002429a", // 𤊚
+ 0x2429b: "V\b\U0002429b", // 𤊛
+ 0x2429c: "V\b\U0002429c", // 𤊜
+ 0x2429d: "V\b\U0002429d", // 𤊝
+ 0x2429e: "V\b\U0002429e", // 𤊞
+ 0x2429f: "V\b\U0002429f", // 𤊟
+ 0x242a0: "V\b\U000242a0", // 𤊠
+ 0x242a1: "V\b\U000242a1", // 𤊡
+ 0x242a2: "V\b\U000242a2", // 𤊢
+ 0x242a3: "V\b\U000242a3", // 𤊣
+ 0x242a4: "V\b\U000242a4", // 𤊤
+ 0x242a5: "V\b\U000242a5", // 𤊥
+ 0x242a6: "V\b\U000242a6", // 𤊦
+ 0x242a7: "V\b\U000242a7", // 𤊧
+ 0x242a8: "V\b\U000242a8", // 𤊨
+ 0x242a9: "V\b\U000242a9", // 𤊩
+ 0x242aa: "V\b\U000242aa", // 𤊪
+ 0x242ab: "V\b\U000242ab", // 𤊫
+ 0x242ac: "V\b\U000242ac", // 𤊬
+ 0x242ad: "V\b\U000242ad", // 𤊭
+ 0x242ae: "V\b\U000242ae", // 𤊮
+ 0x242af: "V\b\U000242af", // 𤊯
+ 0x242b0: "V\b\U000242b0", // 𤊰
+ 0x242b1: "V\b\U000242b1", // 𤊱
+ 0x242b2: "V\t\U000242b2", // 𤊲
+ 0x242b3: "V\t\U000242b3", // 𤊳
+ 0x242b4: "V\t\U000242b4", // 𤊴
+ 0x242b5: "V\t\U000242b5", // 𤊵
+ 0x242b6: "V\t\U000242b6", // 𤊶
+ 0x242b7: "V\t\U000242b7", // 𤊷
+ 0x242b8: "V\t\U000242b8", // 𤊸
+ 0x242b9: "V\t\U000242b9", // 𤊹
+ 0x242ba: "V\t\U000242ba", // 𤊺
+ 0x242bb: "V\t\U000242bb", // 𤊻
+ 0x242bc: "V\t\U000242bc", // 𤊼
+ 0x242bd: "V\t\U000242bd", // 𤊽
+ 0x242be: "V\t\U000242be", // 𤊾
+ 0x242bf: "V\t\U000242bf", // 𤊿
+ 0x242c0: "V\t\U000242c0", // 𤋀
+ 0x242c1: "V\t\U000242c1", // 𤋁
+ 0x242c2: "V\t\U000242c2", // 𤋂
+ 0x242c3: "V\t\U000242c3", // 𤋃
+ 0x242c4: "V\t\U000242c4", // 𤋄
+ 0x242c5: "V\t\U000242c5", // 𤋅
+ 0x242c6: "V\t\U000242c6", // 𤋆
+ 0x242c7: "V\t\U000242c7", // 𤋇
+ 0x242c8: "V\t\U000242c8", // 𤋈
+ 0x242c9: "V\t\U000242c9", // 𤋉
+ 0x242ca: "V\t\U000242ca", // 𤋊
+ 0x242cb: "V\t\U000242cb", // 𤋋
+ 0x242cc: "V\t\U000242cc", // 𤋌
+ 0x242cd: "V\t\U000242cd", // 𤋍
+ 0x242ce: "V\t\U000242ce", // 𤋎
+ 0x242cf: "V\t\U000242cf", // 𤋏
+ 0x242d0: "V\t\U000242d0", // 𤋐
+ 0x242d1: "V\t\U000242d1", // 𤋑
+ 0x242d2: "V\t\U000242d2", // 𤋒
+ 0x242d3: "V\t\U000242d3", // 𤋓
+ 0x242d4: "V\t\U000242d4", // 𤋔
+ 0x242d5: "V\t\U000242d5", // 𤋕
+ 0x242d6: "V\t\U000242d6", // 𤋖
+ 0x242d7: "V\t\U000242d7", // 𤋗
+ 0x242d8: "V\t\U000242d8", // 𤋘
+ 0x242d9: "V\t\U000242d9", // 𤋙
+ 0x242da: "V\t\U000242da", // 𤋚
+ 0x242db: "V\t\U000242db", // 𤋛
+ 0x242dc: "V\t\U000242dc", // 𤋜
+ 0x242dd: "V\t\U000242dd", // 𤋝
+ 0x242de: "V\t\U000242de", // 𤋞
+ 0x242df: "V\t\U000242df", // 𤋟
+ 0x242e0: "V\t\U000242e0", // 𤋠
+ 0x242e1: "V\t\U000242e1", // 𤋡
+ 0x242e2: "V\t\U000242e2", // 𤋢
+ 0x242e3: "V\t\U000242e3", // 𤋣
+ 0x242e4: "V\t\U000242e4", // 𤋤
+ 0x242e5: "V\t\U000242e5", // 𤋥
+ 0x242e6: "V\t\U000242e6", // 𤋦
+ 0x242e7: "V\t\U000242e7", // 𤋧
+ 0x242e8: "V\t\U000242e8", // 𤋨
+ 0x242e9: "V\t\U000242e9", // 𤋩
+ 0x242ea: "V\t\U000242ea", // 𤋪
+ 0x242eb: "V\t\U000242eb", // 𤋫
+ 0x242ec: "V\t\U000242ec", // 𤋬
+ 0x242ed: "V\t\U000242ed", // 𤋭
+ 0x242ee: "V\t\U000242ee", // 𤋮
+ 0x242ef: "V\t\U000242ef", // 𤋯
+ 0x242f0: "V\t\U000242f0", // 𤋰
+ 0x242f1: "V\t\U000242f1", // 𤋱
+ 0x242f2: "V\t\U000242f2", // 𤋲
+ 0x242f3: "\xc3\x00\U000242f3", // 𤋳
+ 0x242f4: "V\t\U000242f4", // 𤋴
+ 0x242f5: "V\t\U000242f5", // 𤋵
+ 0x242f6: "V\t\U000242f6", // 𤋶
+ 0x242f7: "V\t\U000242f7", // 𤋷
+ 0x242f8: "V\t\U000242f8", // 𤋸
+ 0x242f9: "V\t\U000242f9", // 𤋹
+ 0x242fa: "V\t\U000242fa", // 𤋺
+ 0x242fb: "V\t\U000242fb", // 𤋻
+ 0x242fc: "V\t\U000242fc", // 𤋼
+ 0x242fd: "V\t\U000242fd", // 𤋽
+ 0x242fe: "V\t\U000242fe", // 𤋾
+ 0x242ff: "V\t\U000242ff", // 𤋿
+ 0x24300: "V\t\U00024300", // 𤌀
+ 0x24301: "V\t\U00024301", // 𤌁
+ 0x24302: "V\t\U00024302", // 𤌂
+ 0x24303: "V\t\U00024303", // 𤌃
+ 0x24304: "V\t\U00024304", // 𤌄
+ 0x24305: "V\t\U00024305", // 𤌅
+ 0x24306: "V\t\U00024306", // 𤌆
+ 0x24307: "V\n\U00024307", // 𤌇
+ 0x24308: "V\n\U00024308", // 𤌈
+ 0x24309: "V\n\U00024309", // 𤌉
+ 0x2430a: "V\n\U0002430a", // 𤌊
+ 0x2430b: "V\n\U0002430b", // 𤌋
+ 0x2430c: "V\n\U0002430c", // 𤌌
+ 0x2430d: "V\n\U0002430d", // 𤌍
+ 0x2430e: "V\n\U0002430e", // 𤌎
+ 0x2430f: "V\n\U0002430f", // 𤌏
+ 0x24310: "V\n\U00024310", // 𤌐
+ 0x24311: "V\n\U00024311", // 𤌑
+ 0x24312: "V\n\U00024312", // 𤌒
+ 0x24313: "V\n\U00024313", // 𤌓
+ 0x24314: "V\n\U00024314", // 𤌔
+ 0x24315: "V\n\U00024315", // 𤌕
+ 0x24316: "V\n\U00024316", // 𤌖
+ 0x24317: "V\n\U00024317", // 𤌗
+ 0x24318: "V\n\U00024318", // 𤌘
+ 0x24319: "V\n\U00024319", // 𤌙
+ 0x2431a: "V\n\U0002431a", // 𤌚
+ 0x2431b: "V\n\U0002431b", // 𤌛
+ 0x2431c: "V\n\U0002431c", // 𤌜
+ 0x2431d: "V\n\U0002431d", // 𤌝
+ 0x2431e: "V\n\U0002431e", // 𤌞
+ 0x2431f: "V\n\U0002431f", // 𤌟
+ 0x24320: "V\n\U00024320", // 𤌠
+ 0x24321: "V\n\U00024321", // 𤌡
+ 0x24322: "V\n\U00024322", // 𤌢
+ 0x24323: "V\n\U00024323", // 𤌣
+ 0x24324: "V\n\U00024324", // 𤌤
+ 0x24325: "V\n\U00024325", // 𤌥
+ 0x24326: "V\n\U00024326", // 𤌦
+ 0x24327: "V\n\U00024327", // 𤌧
+ 0x24328: "V\n\U00024328", // 𤌨
+ 0x24329: "V\n\U00024329", // 𤌩
+ 0x2432a: "V\n\U0002432a", // 𤌪
+ 0x2432b: "V\n\U0002432b", // 𤌫
+ 0x2432c: "V\n\U0002432c", // 𤌬
+ 0x2432d: "V\n\U0002432d", // 𤌭
+ 0x2432e: "V\n\U0002432e", // 𤌮
+ 0x2432f: "V\n\U0002432f", // 𤌯
+ 0x24330: "V\n\U00024330", // 𤌰
+ 0x24331: "V\n\U00024331", // 𤌱
+ 0x24332: "V\v\U00024332", // 𤌲
+ 0x24333: "V\n\U00024333", // 𤌳
+ 0x24334: "V\n\U00024334", // 𤌴
+ 0x24335: "V\n\U00024335", // 𤌵
+ 0x24336: "V\n\U00024336", // 𤌶
+ 0x24337: "V\n\U00024337", // 𤌷
+ 0x24338: "V\n\U00024338", // 𤌸
+ 0x24339: "V\n\U00024339", // 𤌹
+ 0x2433a: "V\n\U0002433a", // 𤌺
+ 0x2433b: "V\n\U0002433b", // 𤌻
+ 0x2433c: "V\n\U0002433c", // 𤌼
+ 0x2433d: "V\n\U0002433d", // 𤌽
+ 0x2433e: "V\n\U0002433e", // 𤌾
+ 0x2433f: "V\n\U0002433f", // 𤌿
+ 0x24340: "V\n\U00024340", // 𤍀
+ 0x24341: "V\n\U00024341", // 𤍁
+ 0x24342: "V\n\U00024342", // 𤍂
+ 0x24343: "V\n\U00024343", // 𤍃
+ 0x24344: "V\n\U00024344", // 𤍄
+ 0x24345: "V\n\U00024345", // 𤍅
+ 0x24346: "V\n\U00024346", // 𤍆
+ 0x24347: "V\n\U00024347", // 𤍇
+ 0x24348: "V\n\U00024348", // 𤍈
+ 0x24349: "V\n\U00024349", // 𤍉
+ 0x2434a: "V\n\U0002434a", // 𤍊
+ 0x2434b: "V\n\U0002434b", // 𤍋
+ 0x2434c: "V\n\U0002434c", // 𤍌
+ 0x2434d: "V\n\U0002434d", // 𤍍
+ 0x2434e: "V\n\U0002434e", // 𤍎
+ 0x2434f: "V\t\U0002434f", // 𤍏
+ 0x24350: "V\v\U00024350", // 𤍐
+ 0x24351: "V\v\U00024351", // 𤍑
+ 0x24352: "V\v\U00024352", // 𤍒
+ 0x24353: "V\v\U00024353", // 𤍓
+ 0x24354: "V\v\U00024354", // 𤍔
+ 0x24355: "V\v\U00024355", // 𤍕
+ 0x24356: "V\v\U00024356", // 𤍖
+ 0x24357: "V\v\U00024357", // 𤍗
+ 0x24358: "V\v\U00024358", // 𤍘
+ 0x24359: "V\v\U00024359", // 𤍙
+ 0x2435a: "V\v\U0002435a", // 𤍚
+ 0x2435b: "V\v\U0002435b", // 𤍛
+ 0x2435c: "V\v\U0002435c", // 𤍜
+ 0x2435d: "V\v\U0002435d", // 𤍝
+ 0x2435e: "V\v\U0002435e", // 𤍞
+ 0x2435f: "V\v\U0002435f", // 𤍟
+ 0x24360: "V\v\U00024360", // 𤍠
+ 0x24361: "V\v\U00024361", // 𤍡
+ 0x24362: "V\v\U00024362", // 𤍢
+ 0x24363: "V\v\U00024363", // 𤍣
+ 0x24364: "V\v\U00024364", // 𤍤
+ 0x24365: "V\v\U00024365", // 𤍥
+ 0x24366: "V\v\U00024366", // 𤍦
+ 0x24367: "V\v\U00024367", // 𤍧
+ 0x24368: "V\v\U00024368", // 𤍨
+ 0x24369: "V\f\U00024369", // 𤍩
+ 0x2436a: "V\v\U0002436a", // 𤍪
+ 0x2436b: "V\v\U0002436b", // 𤍫
+ 0x2436c: "V\v\U0002436c", // 𤍬
+ 0x2436d: "V\v\U0002436d", // 𤍭
+ 0x2436e: "V\v\U0002436e", // 𤍮
+ 0x2436f: "V\v\U0002436f", // 𤍯
+ 0x24370: "V\v\U00024370", // 𤍰
+ 0x24371: "V\v\U00024371", // 𤍱
+ 0x24372: "V\v\U00024372", // 𤍲
+ 0x24373: "V\v\U00024373", // 𤍳
+ 0x24374: "V\v\U00024374", // 𤍴
+ 0x24375: "V\v\U00024375", // 𤍵
+ 0x24376: "V\v\U00024376", // 𤍶
+ 0x24377: "V\v\U00024377", // 𤍷
+ 0x24378: "V\v\U00024378", // 𤍸
+ 0x24379: "V\v\U00024379", // 𤍹
+ 0x2437a: "V\v\U0002437a", // 𤍺
+ 0x2437b: "V\v\U0002437b", // 𤍻
+ 0x2437c: "V\v\U0002437c", // 𤍼
+ 0x2437d: "V\v\U0002437d", // 𤍽
+ 0x2437e: "V\v\U0002437e", // 𤍾
+ 0x2437f: "V\v\U0002437f", // 𤍿
+ 0x24380: "\x8c\n\U00024380", // 𤎀
+ 0x24381: "V\v\U00024381", // 𤎁
+ 0x24382: "\xb0\x06\U00024382", // 𤎂
+ 0x24383: "V\v\U00024383", // 𤎃
+ 0x24384: "V\v\U00024384", // 𤎄
+ 0x24385: "V\v\U00024385", // 𤎅
+ 0x24386: "V\v\U00024386", // 𤎆
+ 0x24387: "V\v\U00024387", // 𤎇
+ 0x24388: "V\v\U00024388", // 𤎈
+ 0x24389: "V\v\U00024389", // 𤎉
+ 0x2438a: "V\v\U0002438a", // 𤎊
+ 0x2438b: "V\v\U0002438b", // 𤎋
+ 0x2438c: "V\v\U0002438c", // 𤎌
+ 0x2438d: "V\v\U0002438d", // 𤎍
+ 0x2438e: "V\v\U0002438e", // 𤎎
+ 0x2438f: "V\v\U0002438f", // 𤎏
+ 0x24390: "V\v\U00024390", // 𤎐
+ 0x24391: "V\v\U00024391", // 𤎑
+ 0x24392: "V\v\U00024392", // 𤎒
+ 0x24393: "V\v\U00024393", // 𤎓
+ 0x24394: "V\v\U00024394", // 𤎔
+ 0x24395: "V\v\U00024395", // 𤎕
+ 0x24396: "V\v\U00024396", // 𤎖
+ 0x24397: "V\v\U00024397", // 𤎗
+ 0x24398: "V\v\U00024398", // 𤎘
+ 0x24399: "V\v\U00024399", // 𤎙
+ 0x2439a: "V\v\U0002439a", // 𤎚
+ 0x2439b: "V\v\U0002439b", // 𤎛
+ 0x2439c: "V\v\U0002439c", // 𤎜
+ 0x2439d: "V\f\U0002439d", // 𤎝
+ 0x2439e: "V\f\U0002439e", // 𤎞
+ 0x2439f: "V\f\U0002439f", // 𤎟
+ 0x243a0: "V\f\U000243a0", // 𤎠
+ 0x243a1: "V\f\U000243a1", // 𤎡
+ 0x243a2: "V\f\U000243a2", // 𤎢
+ 0x243a3: "V\f\U000243a3", // 𤎣
+ 0x243a4: "V\f\U000243a4", // 𤎤
+ 0x243a5: "V\f\U000243a5", // 𤎥
+ 0x243a6: "V\f\U000243a6", // 𤎦
+ 0x243a7: "V\f\U000243a7", // 𤎧
+ 0x243a8: "V\f\U000243a8", // 𤎨
+ 0x243a9: "V\f\U000243a9", // 𤎩
+ 0x243aa: "V\f\U000243aa", // 𤎪
+ 0x243ab: "V\f\U000243ab", // 𤎫
+ 0x243ac: "V\f\U000243ac", // 𤎬
+ 0x243ad: "V\f\U000243ad", // 𤎭
+ 0x243ae: "V\f\U000243ae", // 𤎮
+ 0x243af: "V\f\U000243af", // 𤎯
+ 0x243b0: "V\f\U000243b0", // 𤎰
+ 0x243b1: "V\f\U000243b1", // 𤎱
+ 0x243b2: "V\f\U000243b2", // 𤎲
+ 0x243b3: "V\f\U000243b3", // 𤎳
+ 0x243b4: "V\f\U000243b4", // 𤎴
+ 0x243b5: "V\f\U000243b5", // 𤎵
+ 0x243b6: "V\f\U000243b6", // 𤎶
+ 0x243b7: "V\f\U000243b7", // 𤎷
+ 0x243b8: "V\f\U000243b8", // 𤎸
+ 0x243b9: "V\f\U000243b9", // 𤎹
+ 0x243ba: "V\f\U000243ba", // 𤎺
+ 0x243bb: "V\f\U000243bb", // 𤎻
+ 0x243bc: "V\f\U000243bc", // 𤎼
+ 0x243bd: "V\f\U000243bd", // 𤎽
+ 0x243be: "V\f\U000243be", // 𤎾
+ 0x243bf: "V\f\U000243bf", // 𤎿
+ 0x243c0: "V\f\U000243c0", // 𤏀
+ 0x243c1: "V\f\U000243c1", // 𤏁
+ 0x243c2: "V\f\U000243c2", // 𤏂
+ 0x243c3: "V\f\U000243c3", // 𤏃
+ 0x243c4: "V\f\U000243c4", // 𤏄
+ 0x243c5: "V\f\U000243c5", // 𤏅
+ 0x243c6: "V\f\U000243c6", // 𤏆
+ 0x243c7: "V\f\U000243c7", // 𤏇
+ 0x243c8: "V\f\U000243c8", // 𤏈
+ 0x243c9: "V\f\U000243c9", // 𤏉
+ 0x243ca: "V\f\U000243ca", // 𤏊
+ 0x243cb: "V\f\U000243cb", // 𤏋
+ 0x243cc: "V\f\U000243cc", // 𤏌
+ 0x243cd: "V\f\U000243cd", // 𤏍
+ 0x243ce: "V\f\U000243ce", // 𤏎
+ 0x243cf: "V\f\U000243cf", // 𤏏
+ 0x243d0: "V\f\U000243d0", // 𤏐
+ 0x243d1: "V\f\U000243d1", // 𤏑
+ 0x243d2: "V\f\U000243d2", // 𤏒
+ 0x243d3: "V\f\U000243d3", // 𤏓
+ 0x243d4: "V\f\U000243d4", // 𤏔
+ 0x243d5: "V\f\U000243d5", // 𤏕
+ 0x243d6: "V\f\U000243d6", // 𤏖
+ 0x243d7: "V\f\U000243d7", // 𤏗
+ 0x243d8: "V\f\U000243d8", // 𤏘
+ 0x243d9: "V\f\U000243d9", // 𤏙
+ 0x243da: "V\f\U000243da", // 𤏚
+ 0x243db: "V\f\U000243db", // 𤏛
+ 0x243dc: "V\f\U000243dc", // 𤏜
+ 0x243dd: "V\f\U000243dd", // 𤏝
+ 0x243de: "V\f\U000243de", // 𤏞
+ 0x243df: "V\f\U000243df", // 𤏟
+ 0x243e0: "%\r\U000243e0", // 𤏠
+ 0x243e1: "V\f\U000243e1", // 𤏡
+ 0x243e2: "V\f\U000243e2", // 𤏢
+ 0x243e3: "V\f\U000243e3", // 𤏣
+ 0x243e4: "V\f\U000243e4", // 𤏤
+ 0x243e5: "V\f\U000243e5", // 𤏥
+ 0x243e6: "V\f\U000243e6", // 𤏦
+ 0x243e7: "V\f\U000243e7", // 𤏧
+ 0x243e8: "V\f\U000243e8", // 𤏨
+ 0x243e9: "V\f\U000243e9", // 𤏩
+ 0x243ea: "V\f\U000243ea", // 𤏪
+ 0x243eb: "V\f\U000243eb", // 𤏫
+ 0x243ec: "V\f\U000243ec", // 𤏬
+ 0x243ed: "V\f\U000243ed", // 𤏭
+ 0x243ee: "V\f\U000243ee", // 𤏮
+ 0x243ef: "V\f\U000243ef", // 𤏯
+ 0x243f0: "V\f\U000243f0", // 𤏰
+ 0x243f1: "V\f\U000243f1", // 𤏱
+ 0x243f2: "V\f\U000243f2", // 𤏲
+ 0x243f3: "V\f\U000243f3", // 𤏳
+ 0x243f4: "V\f\U000243f4", // 𤏴
+ 0x243f5: "V\r\U000243f5", // 𤏵
+ 0x243f6: "V\r\U000243f6", // 𤏶
+ 0x243f7: "V\r\U000243f7", // 𤏷
+ 0x243f8: "V\r\U000243f8", // 𤏸
+ 0x243f9: "V\r\U000243f9", // 𤏹
+ 0x243fa: "V\r\U000243fa", // 𤏺
+ 0x243fb: "V\r\U000243fb", // 𤏻
+ 0x243fc: "V\r\U000243fc", // 𤏼
+ 0x243fd: "V\r\U000243fd", // 𤏽
+ 0x243fe: "V\r\U000243fe", // 𤏾
+ 0x243ff: "V\r\U000243ff", // 𤏿
+ 0x24400: "V\r\U00024400", // 𤐀
+ 0x24401: "V\r\U00024401", // 𤐁
+ 0x24402: "V\r\U00024402", // 𤐂
+ 0x24403: "V\r\U00024403", // 𤐃
+ 0x24404: "V\r\U00024404", // 𤐄
+ 0x24405: "V\r\U00024405", // 𤐅
+ 0x24406: "V\r\U00024406", // 𤐆
+ 0x24407: "V\r\U00024407", // 𤐇
+ 0x24408: "V\r\U00024408", // 𤐈
+ 0x24409: "V\r\U00024409", // 𤐉
+ 0x2440a: "V\r\U0002440a", // 𤐊
+ 0x2440b: "V\r\U0002440b", // 𤐋
+ 0x2440c: "V\r\U0002440c", // 𤐌
+ 0x2440d: "V\r\U0002440d", // 𤐍
+ 0x2440e: "V\r\U0002440e", // 𤐎
+ 0x2440f: "V\r\U0002440f", // 𤐏
+ 0x24410: "V\r\U00024410", // 𤐐
+ 0x24411: "V\r\U00024411", // 𤐑
+ 0x24412: "V\r\U00024412", // 𤐒
+ 0x24413: "V\r\U00024413", // 𤐓
+ 0x24414: "V\r\U00024414", // 𤐔
+ 0x24415: "V\r\U00024415", // 𤐕
+ 0x24416: "V\r\U00024416", // 𤐖
+ 0x24417: "V\r\U00024417", // 𤐗
+ 0x24418: "V\r\U00024418", // 𤐘
+ 0x24419: "V\r\U00024419", // 𤐙
+ 0x2441a: "V\r\U0002441a", // 𤐚
+ 0x2441b: "V\r\U0002441b", // 𤐛
+ 0x2441c: "V\r\U0002441c", // 𤐜
+ 0x2441d: "V\r\U0002441d", // 𤐝
+ 0x2441e: "V\r\U0002441e", // 𤐞
+ 0x2441f: "V\r\U0002441f", // 𤐟
+ 0x24420: "V\r\U00024420", // 𤐠
+ 0x24421: "V\r\U00024421", // 𤐡
+ 0x24422: "V\r\U00024422", // 𤐢
+ 0x24423: "V\r\U00024423", // 𤐣
+ 0x24424: "V\x0e\U00024424", // 𤐤
+ 0x24425: "V\x0e\U00024425", // 𤐥
+ 0x24426: "V\x0e\U00024426", // 𤐦
+ 0x24427: "V\x0e\U00024427", // 𤐧
+ 0x24428: "V\x0e\U00024428", // 𤐨
+ 0x24429: "V\x0e\U00024429", // 𤐩
+ 0x2442a: "V\x0e\U0002442a", // 𤐪
+ 0x2442b: "V\x0e\U0002442b", // 𤐫
+ 0x2442c: "V\x0e\U0002442c", // 𤐬
+ 0x2442d: "V\x0e\U0002442d", // 𤐭
+ 0x2442e: "V\x0e\U0002442e", // 𤐮
+ 0x2442f: "V\x0e\U0002442f", // 𤐯
+ 0x24430: "V\x0e\U00024430", // 𤐰
+ 0x24431: "V\x0e\U00024431", // 𤐱
+ 0x24432: "V\x0e\U00024432", // 𤐲
+ 0x24433: "V\x0e\U00024433", // 𤐳
+ 0x24434: "V\x0e\U00024434", // 𤐴
+ 0x24435: "V\x0e\U00024435", // 𤐵
+ 0x24436: "V\x0e\U00024436", // 𤐶
+ 0x24437: "V\x0e\U00024437", // 𤐷
+ 0x24438: "V\x0e\U00024438", // 𤐸
+ 0x24439: "V\x0e\U00024439", // 𤐹
+ 0x2443a: "V\x0e\U0002443a", // 𤐺
+ 0x2443b: "V\x0e\U0002443b", // 𤐻
+ 0x2443c: "V\x0e\U0002443c", // 𤐼
+ 0x2443d: "V\x0e\U0002443d", // 𤐽
+ 0x2443e: "V\x0e\U0002443e", // 𤐾
+ 0x2443f: "V\x0e\U0002443f", // 𤐿
+ 0x24440: "V\x0e\U00024440", // 𤑀
+ 0x24441: "V\x0e\U00024441", // 𤑁
+ 0x24442: "V\x0e\U00024442", // 𤑂
+ 0x24443: "\x82\x0e\U00024443", // 𤑃
+ 0x24444: "V\x0e\U00024444", // 𤑄
+ 0x24445: "V\x0e\U00024445", // 𤑅
+ 0x24446: "V\x0e\U00024446", // 𤑆
+ 0x24447: "V\x0e\U00024447", // 𤑇
+ 0x24448: "V\x0e\U00024448", // 𤑈
+ 0x24449: "V\x0e\U00024449", // 𤑉
+ 0x2444a: "V\x0e\U0002444a", // 𤑊
+ 0x2444b: "V\x0e\U0002444b", // 𤑋
+ 0x2444c: "V\x0e\U0002444c", // 𤑌
+ 0x2444d: "V\x0e\U0002444d", // 𤑍
+ 0x2444e: "V\x0e\U0002444e", // 𤑎
+ 0x2444f: "V\x0e\U0002444f", // 𤑏
+ 0x24450: "V\x0e\U00024450", // 𤑐
+ 0x24451: "V\x0e\U00024451", // 𤑑
+ 0x24452: "V\x0f\U00024452", // 𤑒
+ 0x24453: "V\x0f\U00024453", // 𤑓
+ 0x24454: "V\x0f\U00024454", // 𤑔
+ 0x24455: "V\x0f\U00024455", // 𤑕
+ 0x24456: "V\x0f\U00024456", // 𤑖
+ 0x24457: "V\x0f\U00024457", // 𤑗
+ 0x24458: "V\x0f\U00024458", // 𤑘
+ 0x24459: "V\x0f\U00024459", // 𤑙
+ 0x2445a: "V\x0f\U0002445a", // 𤑚
+ 0x2445b: "V\x0f\U0002445b", // 𤑛
+ 0x2445c: "V\x0f\U0002445c", // 𤑜
+ 0x2445d: "V\x0f\U0002445d", // 𤑝
+ 0x2445e: "V\x0f\U0002445e", // 𤑞
+ 0x2445f: "V\x0f\U0002445f", // 𤑟
+ 0x24460: "V\x0f\U00024460", // 𤑠
+ 0x24461: "V\x0f\U00024461", // 𤑡
+ 0x24462: "V\x0f\U00024462", // 𤑢
+ 0x24463: "V\x0f\U00024463", // 𤑣
+ 0x24464: "V\x0f\U00024464", // 𤑤
+ 0x24465: "V\x0f\U00024465", // 𤑥
+ 0x24466: "V\x0f\U00024466", // 𤑦
+ 0x24467: "V\x0f\U00024467", // 𤑧
+ 0x24468: "V\x0f\U00024468", // 𤑨
+ 0x24469: "V\x0f\U00024469", // 𤑩
+ 0x2446a: "V\x0f\U0002446a", // 𤑪
+ 0x2446b: "V\x0f\U0002446b", // 𤑫
+ 0x2446c: "V\x0f\U0002446c", // 𤑬
+ 0x2446d: "V\x0f\U0002446d", // 𤑭
+ 0x2446e: "V\x0f\U0002446e", // 𤑮
+ 0x2446f: "V\x0f\U0002446f", // 𤑯
+ 0x24470: "V\x0f\U00024470", // 𤑰
+ 0x24471: "V\x0f\U00024471", // 𤑱
+ 0x24472: "V\x0f\U00024472", // 𤑲
+ 0x24473: "V\x10\U00024473", // 𤑳
+ 0x24474: "V\x10\U00024474", // 𤑴
+ 0x24475: "V\x10\U00024475", // 𤑵
+ 0x24476: "V\x10\U00024476", // 𤑶
+ 0x24477: "V\x10\U00024477", // 𤑷
+ 0x24478: "V\x10\U00024478", // 𤑸
+ 0x24479: "V\x10\U00024479", // 𤑹
+ 0x2447a: "V\x10\U0002447a", // 𤑺
+ 0x2447b: "V\x10\U0002447b", // 𤑻
+ 0x2447c: "V\x10\U0002447c", // 𤑼
+ 0x2447d: "V\x10\U0002447d", // 𤑽
+ 0x2447e: "V\x10\U0002447e", // 𤑾
+ 0x2447f: "V\x10\U0002447f", // 𤑿
+ 0x24480: "V\x10\U00024480", // 𤒀
+ 0x24481: "V\x10\U00024481", // 𤒁
+ 0x24482: "V\x10\U00024482", // 𤒂
+ 0x24483: "V\x10\U00024483", // 𤒃
+ 0x24484: "V\x10\U00024484", // 𤒄
+ 0x24485: "V\x10\U00024485", // 𤒅
+ 0x24486: "V\x10\U00024486", // 𤒆
+ 0x24487: "V\x10\U00024487", // 𤒇
+ 0x24488: "V\x10\U00024488", // 𤒈
+ 0x24489: "V\x10\U00024489", // 𤒉
+ 0x2448a: "V\x10\U0002448a", // 𤒊
+ 0x2448b: "V\x10\U0002448b", // 𤒋
+ 0x2448c: "V\x10\U0002448c", // 𤒌
+ 0x2448d: "V\x10\U0002448d", // 𤒍
+ 0x2448e: "V\x10\U0002448e", // 𤒎
+ 0x2448f: "V\x10\U0002448f", // 𤒏
+ 0x24490: "V\x10\U00024490", // 𤒐
+ 0x24491: "V\x10\U00024491", // 𤒑
+ 0x24492: "V\x10\U00024492", // 𤒒
+ 0x24493: "V\x10\U00024493", // 𤒓
+ 0x24494: "V\x10\U00024494", // 𤒔
+ 0x24495: "V\x10\U00024495", // 𤒕
+ 0x24496: "V\x10\U00024496", // 𤒖
+ 0x24497: "V\x10\U00024497", // 𤒗
+ 0x24498: "V\x10\U00024498", // 𤒘
+ 0x24499: "V\x10\U00024499", // 𤒙
+ 0x2449a: "V\x10\U0002449a", // 𤒚
+ 0x2449b: "V\x10\U0002449b", // 𤒛
+ 0x2449c: "V\x10\U0002449c", // 𤒜
+ 0x2449d: "V\x10\U0002449d", // 𤒝
+ 0x2449e: "V\x10\U0002449e", // 𤒞
+ 0x2449f: "V\x10\U0002449f", // 𤒟
+ 0x244a0: "V\x10\U000244a0", // 𤒠
+ 0x244a1: "V\x11\U000244a1", // 𤒡
+ 0x244a2: "V\x11\U000244a2", // 𤒢
+ 0x244a3: "V\x11\U000244a3", // 𤒣
+ 0x244a4: "V\x11\U000244a4", // 𤒤
+ 0x244a5: "V\x11\U000244a5", // 𤒥
+ 0x244a6: "V\x11\U000244a6", // 𤒦
+ 0x244a7: "V\x11\U000244a7", // 𤒧
+ 0x244a8: "V\x10\U000244a8", // 𤒨
+ 0x244a9: "V\x12\U000244a9", // 𤒩
+ 0x244aa: "V\x11\U000244aa", // 𤒪
+ 0x244ab: "V\x11\U000244ab", // 𤒫
+ 0x244ac: "V\x11\U000244ac", // 𤒬
+ 0x244ad: "V\x11\U000244ad", // 𤒭
+ 0x244ae: "V\x11\U000244ae", // 𤒮
+ 0x244af: "V\x11\U000244af", // 𤒯
+ 0x244b0: "V\x11\U000244b0", // 𤒰
+ 0x244b1: "V\x11\U000244b1", // 𤒱
+ 0x244b2: "V\x11\U000244b2", // 𤒲
+ 0x244b3: "V\x11\U000244b3", // 𤒳
+ 0x244b4: "V\x11\U000244b4", // 𤒴
+ 0x244b5: "V\x11\U000244b5", // 𤒵
+ 0x244b6: "V\x11\U000244b6", // 𤒶
+ 0x244b7: "V\x11\U000244b7", // 𤒷
+ 0x244b8: "V\x11\U000244b8", // 𤒸
+ 0x244b9: "V\x11\U000244b9", // 𤒹
+ 0x244ba: "V\x12\U000244ba", // 𤒺
+ 0x244bb: "V\x12\U000244bb", // 𤒻
+ 0x244bc: "V\x13\U000244bc", // 𤒼
+ 0x244bd: "V\x12\U000244bd", // 𤒽
+ 0x244be: "V\x12\U000244be", // 𤒾
+ 0x244bf: "V\x12\U000244bf", // 𤒿
+ 0x244c0: "V\x12\U000244c0", // 𤓀
+ 0x244c1: "V\x12\U000244c1", // 𤓁
+ 0x244c2: "V\x12\U000244c2", // 𤓂
+ 0x244c3: "V\x12\U000244c3", // 𤓃
+ 0x244c4: "V\x12\U000244c4", // 𤓄
+ 0x244c5: "V\x12\U000244c5", // 𤓅
+ 0x244c6: "V\x12\U000244c6", // 𤓆
+ 0x244c7: "V\x13\U000244c7", // 𤓇
+ 0x244c8: "V\x13\U000244c8", // 𤓈
+ 0x244c9: "V\x13\U000244c9", // 𤓉
+ 0x244ca: "V\x13\U000244ca", // 𤓊
+ 0x244cb: "V\x13\U000244cb", // 𤓋
+ 0x244cc: "V\x13\U000244cc", // 𤓌
+ 0x244cd: "V\x13\U000244cd", // 𤓍
+ 0x244ce: "V\x13\U000244ce", // 𤓎
+ 0x244cf: "\x82\x13\U000244cf", // 𤓏
+ 0x244d0: "V\x13\U000244d0", // 𤓐
+ 0x244d1: "V\x13\U000244d1", // 𤓑
+ 0x244d2: "V\x13\U000244d2", // 𤓒
+ 0x244d3: "V\x13\U000244d3", // 𤓓
+ 0x244d4: "V\x13\U000244d4", // 𤓔
+ 0x244d5: "V\x13\U000244d5", // 𤓕
+ 0x244d6: "V\x13\U000244d6", // 𤓖
+ 0x244d7: "V\x14\U000244d7", // 𤓗
+ 0x244d8: "V\x14\U000244d8", // 𤓘
+ 0x244d9: "V\x14\U000244d9", // 𤓙
+ 0x244da: "V\x14\U000244da", // 𤓚
+ 0x244db: "V\x14\U000244db", // 𤓛
+ 0x244dc: "V\x15\U000244dc", // 𤓜
+ 0x244dd: "V\x15\U000244dd", // 𤓝
+ 0x244de: "V\x15\U000244de", // 𤓞
+ 0x244df: "\x86\x12\U000244df", // 𤓟
+ 0x244e0: "V\x15\U000244e0", // 𤓠
+ 0x244e1: "V\x15\U000244e1", // 𤓡
+ 0x244e2: "V\x15\U000244e2", // 𤓢
+ 0x244e3: "V\x15\U000244e3", // 𤓣
+ 0x244e4: "V\x16\U000244e4", // 𤓤
+ 0x244e5: "V\x16\U000244e5", // 𤓥
+ 0x244e6: "V\x17\U000244e6", // 𤓦
+ 0x244e7: "V\x17\U000244e7", // 𤓧
+ 0x244e8: "V\x17\U000244e8", // 𤓨
+ 0x244e9: "V\x17\U000244e9", // 𤓩
+ 0x244ea: "V\x18\U000244ea", // 𤓪
+ 0x244eb: "V\x19\U000244eb", // 𤓫
+ 0x244ec: "V\x18\U000244ec", // 𤓬
+ 0x244ed: "V\x1a\U000244ed", // 𤓭
+ 0x244ee: "V\x1d\U000244ee", // 𤓮
+ 0x244ef: "W\x00\U000244ef", // 𤓯
+ 0x244f0: "W\x00\U000244f0", // 𤓰
+ 0x244f1: "W\x01\U000244f1", // 𤓱
+ 0x244f2: "W\x03\U000244f2", // 𤓲
+ 0x244f3: "W\x03\U000244f3", // 𤓳
+ 0x244f4: "W\x03\U000244f4", // 𤓴
+ 0x244f5: "W\x03\U000244f5", // 𤓵
+ 0x244f6: "W\x04\U000244f6", // 𤓶
+ 0x244f7: "W\x04\U000244f7", // 𤓷
+ 0x244f8: "W\x04\U000244f8", // 𤓸
+ 0x244f9: "W\x04\U000244f9", // 𤓹
+ 0x244fa: "W\x04\U000244fa", // 𤓺
+ 0x244fb: "W\x04\U000244fb", // 𤓻
+ 0x244fc: "W\x04\U000244fc", // 𤓼
+ 0x244fd: "W\x05\U000244fd", // 𤓽
+ 0x244fe: "W\x05\U000244fe", // 𤓾
+ 0x244ff: "W\x05\U000244ff", // 𤓿
+ 0x24500: "W\x05\U00024500", // 𤔀
+ 0x24501: "W\x05\U00024501", // 𤔁
+ 0x24502: "W\x05\U00024502", // 𤔂
+ 0x24503: "W\x05\U00024503", // 𤔃
+ 0x24504: "W\x05\U00024504", // 𤔄
+ 0x24505: "W\x05\U00024505", // 𤔅
+ 0x24506: "W\x05\U00024506", // 𤔆
+ 0x24507: "W\x05\U00024507", // 𤔇
+ 0x24508: "W\x05\U00024508", // 𤔈
+ 0x24509: "W\x05\U00024509", // 𤔉
+ 0x2450a: "W\x05\U0002450a", // 𤔊
+ 0x2450b: "W\x05\U0002450b", // 𤔋
+ 0x2450c: "W\x06\U0002450c", // 𤔌
+ 0x2450d: "W\x06\U0002450d", // 𤔍
+ 0x2450e: "W\x06\U0002450e", // 𤔎
+ 0x2450f: "W\x06\U0002450f", // 𤔏
+ 0x24510: "W\a\U00024510", // 𤔐
+ 0x24511: "W\a\U00024511", // 𤔑
+ 0x24512: "W\a\U00024512", // 𤔒
+ 0x24513: "W\a\U00024513", // 𤔓
+ 0x24514: "W\b\U00024514", // 𤔔
+ 0x24515: "W\b\U00024515", // 𤔕
+ 0x24516: "W\b\U00024516", // 𤔖
+ 0x24517: "\x1f\t\U00024517", // 𤔗
+ 0x24518: "W\b\U00024518", // 𤔘
+ 0x24519: "W\b\U00024519", // 𤔙
+ 0x2451a: "W\b\U0002451a", // 𤔚
+ 0x2451b: "W\b\U0002451b", // 𤔛
+ 0x2451c: "W\t\U0002451c", // 𤔜
+ 0x2451d: "W\t\U0002451d", // 𤔝
+ 0x2451e: "W\t\U0002451e", // 𤔞
+ 0x2451f: "W\t\U0002451f", // 𤔟
+ 0x24520: "W\t\U00024520", // 𤔠
+ 0x24521: "W\t\U00024521", // 𤔡
+ 0x24522: "W\n\U00024522", // 𤔢
+ 0x24523: "W\n\U00024523", // 𤔣
+ 0x24524: "W\n\U00024524", // 𤔤
+ 0x24525: "W\n\U00024525", // 𤔥
+ 0x24526: "W\n\U00024526", // 𤔦
+ 0x24527: "W\v\U00024527", // 𤔧
+ 0x24528: "W\v\U00024528", // 𤔨
+ 0x24529: "W\v\U00024529", // 𤔩
+ 0x2452a: "W\v\U0002452a", // 𤔪
+ 0x2452b: "W\v\U0002452b", // 𤔫
+ 0x2452c: "W\v\U0002452c", // 𤔬
+ 0x2452d: "W\v\U0002452d", // 𤔭
+ 0x2452e: "W\f\U0002452e", // 𤔮
+ 0x2452f: "W\f\U0002452f", // 𤔯
+ 0x24530: "W\f\U00024530", // 𤔰
+ 0x24531: "W\f\U00024531", // 𤔱
+ 0x24532: "W\r\U00024532", // 𤔲
+ 0x24533: "W\r\U00024533", // 𤔳
+ 0x24534: "W\r\U00024534", // 𤔴
+ 0x24535: "W\r\U00024535", // 𤔵
+ 0x24536: "W\r\U00024536", // 𤔶
+ 0x24537: "W\r\U00024537", // 𤔷
+ 0x24538: "W\r\U00024538", // 𤔸
+ 0x24539: "W\x0e\U00024539", // 𤔹
+ 0x2453a: "W\x0f\U0002453a", // 𤔺
+ 0x2453b: "W\x0e\U0002453b", // 𤔻
+ 0x2453c: "W\r\U0002453c", // 𤔼
+ 0x2453d: "W\x0e\U0002453d", // 𤔽
+ 0x2453e: "W\x0e\U0002453e", // 𤔾
+ 0x2453f: "W\x0f\U0002453f", // 𤔿
+ 0x24540: "W\x0f\U00024540", // 𤕀
+ 0x24541: "y\r\U00024541", // 𤕁
+ 0x24542: "W\x10\U00024542", // 𤕂
+ 0x24543: "W\x10\U00024543", // 𤕃
+ 0x24544: "W\x10\U00024544", // 𤕄
+ 0x24545: "W\x10\U00024545", // 𤕅
+ 0x24546: "W\x10\U00024546", // 𤕆
+ 0x24547: "W\x11\U00024547", // 𤕇
+ 0x24548: "W\x13\U00024548", // 𤕈
+ 0x24549: "W\x13\U00024549", // 𤕉
+ 0x2454a: "W\x13\U0002454a", // 𤕊
+ 0x2454b: "W\x14\U0002454b", // 𤕋
+ 0x2454c: "W\x15\U0002454c", // 𤕌
+ 0x2454d: "W\x15\U0002454d", // 𤕍
+ 0x2454e: "X\x03\U0002454e", // 𤕎
+ 0x2454f: "X\x03\U0002454f", // 𤕏
+ 0x24550: "X\x04\U00024550", // 𤕐
+ 0x24551: "X\x04\U00024551", // 𤕑
+ 0x24552: "X\x05\U00024552", // 𤕒
+ 0x24553: "X\x06\U00024553", // 𤕓
+ 0x24554: "X\x06\U00024554", // 𤕔
+ 0x24555: "X\a\U00024555", // 𤕕
+ 0x24556: "X\b\U00024556", // 𤕖
+ 0x24557: "X\b\U00024557", // 𤕗
+ 0x24558: "X\t\U00024558", // 𤕘
+ 0x24559: "X\n\U00024559", // 𤕙
+ 0x2455a: "X\n\U0002455a", // 𤕚
+ 0x2455b: "X\f\U0002455b", // 𤕛
+ 0x2455c: "Y\x01\U0002455c", // 𤕜
+ 0x2455d: "Y\x04\U0002455d", // 𤕝
+ 0x2455e: "Y\x05\U0002455e", // 𤕞
+ 0x2455f: "Y\x05\U0002455f", // 𤕟
+ 0x24560: "Y\x06\U00024560", // 𤕠
+ 0x24561: "Y\x06\U00024561", // 𤕡
+ 0x24562: "Y\a\U00024562", // 𤕢
+ 0x24563: "Y\b\U00024563", // 𤕣
+ 0x24564: "Y\t\U00024564", // 𤕤
+ 0x24565: "Y\t\U00024565", // 𤕥
+ 0x24566: "Y\v\U00024566", // 𤕦
+ 0x24567: "Y\v\U00024567", // 𤕧
+ 0x24568: "Y\v\U00024568", // 𤕨
+ 0x24569: "Y\f\U00024569", // 𤕩
+ 0x2456a: "Z\x00\U0002456a", // 𤕪
+ 0x2456b: "Z\x01\U0002456b", // 𤕫
+ 0x2456c: "Z\x01\U0002456c", // 𤕬
+ 0x2456d: "Z\x02\U0002456d", // 𤕭
+ 0x2456e: "Z\x03\U0002456e", // 𤕮
+ 0x2456f: "Z\x04\U0002456f", // 𤕯
+ 0x24570: "Z\x04\U00024570", // 𤕰
+ 0x24571: "Z\x04\U00024571", // 𤕱
+ 0x24572: "Z\x05\U00024572", // 𤕲
+ 0x24573: "Z\x05\U00024573", // 𤕳
+ 0x24574: "Z\x05\U00024574", // 𤕴
+ 0x24575: "Z\x05\U00024575", // 𤕵
+ 0x24576: "Z\x06\U00024576", // 𤕶
+ 0x24577: "Z\x06\U00024577", // 𤕷
+ 0x24578: "Z\x06\U00024578", // 𤕸
+ 0x24579: "Z\x06\U00024579", // 𤕹
+ 0x2457a: "Z\x06\U0002457a", // 𤕺
+ 0x2457b: "Z\a\U0002457b", // 𤕻
+ 0x2457c: "Z\a\U0002457c", // 𤕼
+ 0x2457d: "Z\a\U0002457d", // 𤕽
+ 0x2457e: "Z\a\U0002457e", // 𤕾
+ 0x2457f: "Z\a\U0002457f", // 𤕿
+ 0x24580: "Z\a\U00024580", // 𤖀
+ 0x24581: "Z\a\U00024581", // 𤖁
+ 0x24582: "Z\a\U00024582", // 𤖂
+ 0x24583: "Z\a\U00024583", // 𤖃
+ 0x24584: "Z\b\U00024584", // 𤖄
+ 0x24585: "Z\b\U00024585", // 𤖅
+ 0x24586: "Z\b\U00024586", // 𤖆
+ 0x24587: "Z\b\U00024587", // 𤖇
+ 0x24588: "Z\b\U00024588", // 𤖈
+ 0x24589: "Z\b\U00024589", // 𤖉
+ 0x2458a: "Z\b\U0002458a", // 𤖊
+ 0x2458b: "Z\b\U0002458b", // 𤖋
+ 0x2458c: "Z\t\U0002458c", // 𤖌
+ 0x2458d: "Z\t\U0002458d", // 𤖍
+ 0x2458e: "Z\t\U0002458e", // 𤖎
+ 0x2458f: "Z\n\U0002458f", // 𤖏
+ 0x24590: "Z\n\U00024590", // 𤖐
+ 0x24591: "Z\n\U00024591", // 𤖑
+ 0x24592: "Z\n\U00024592", // 𤖒
+ 0x24593: "Z\v\U00024593", // 𤖓
+ 0x24594: "Z\v\U00024594", // 𤖔
+ 0x24595: "Z\v\U00024595", // 𤖕
+ 0x24596: "Z\f\U00024596", // 𤖖
+ 0x24597: "Z\f\U00024597", // 𤖗
+ 0x24598: "Z\f\U00024598", // 𤖘
+ 0x24599: "Z\f\U00024599", // 𤖙
+ 0x2459a: "Z\f\U0002459a", // 𤖚
+ 0x2459b: "Z\f\U0002459b", // 𤖛
+ 0x2459c: "Z\r\U0002459c", // 𤖜
+ 0x2459d: "Z\r\U0002459d", // 𤖝
+ 0x2459e: "Z\r\U0002459e", // 𤖞
+ 0x2459f: "Z\r\U0002459f", // 𤖟
+ 0x245a0: "Z\x0f\U000245a0", // 𤖠
+ 0x245a1: "Z\x0f\U000245a1", // 𤖡
+ 0x245a2: "Z\x10\U000245a2", // 𤖢
+ 0x245a3: "Z\x12\U000245a3", // 𤖣
+ 0x245a4: "Z\x13\U000245a4", // 𤖤
+ 0x245a5: "Z\x17\U000245a5", // 𤖥
+ 0x245a6: "Z\x18\U000245a6", // 𤖦
+ 0x245a7: "Z\x18\U000245a7", // 𤖧
+ 0x245a8: "[\x01\U000245a8", // 𤖨
+ 0x245a9: "[\x03\U000245a9", // 𤖩
+ 0x245aa: "[\x03\U000245aa", // 𤖪
+ 0x245ab: "[\x03\U000245ab", // 𤖫
+ 0x245ac: "[\x04\U000245ac", // 𤖬
+ 0x245ad: "[\x04\U000245ad", // 𤖭
+ 0x245ae: "[\x04\U000245ae", // 𤖮
+ 0x245af: "[\x04\U000245af", // 𤖯
+ 0x245b0: "[\x04\U000245b0", // 𤖰
+ 0x245b1: "[\x05\U000245b1", // 𤖱
+ 0x245b2: "[\x05\U000245b2", // 𤖲
+ 0x245b3: "[\x05\U000245b3", // 𤖳
+ 0x245b4: "[\x05\U000245b4", // 𤖴
+ 0x245b5: "[\x05\U000245b5", // 𤖵
+ 0x245b6: "[\x05\U000245b6", // 𤖶
+ 0x245b7: "[\x05\U000245b7", // 𤖷
+ 0x245b8: "[\x05\U000245b8", // 𤖸
+ 0x245b9: "[\x05\U000245b9", // 𤖹
+ 0x245ba: "[\x06\U000245ba", // 𤖺
+ 0x245bb: "[\x06\U000245bb", // 𤖻
+ 0x245bc: "[\x06\U000245bc", // 𤖼
+ 0x245bd: "[\x06\U000245bd", // 𤖽
+ 0x245be: "[\x06\U000245be", // 𤖾
+ 0x245bf: "[\x06\U000245bf", // 𤖿
+ 0x245c0: "[\a\U000245c0", // 𤗀
+ 0x245c1: "[\a\U000245c1", // 𤗁
+ 0x245c2: "[\a\U000245c2", // 𤗂
+ 0x245c3: "[\a\U000245c3", // 𤗃
+ 0x245c4: "[\a\U000245c4", // 𤗄
+ 0x245c5: "[\a\U000245c5", // 𤗅
+ 0x245c6: "[\a\U000245c6", // 𤗆
+ 0x245c7: "[\b\U000245c7", // 𤗇
+ 0x245c8: "[\b\U000245c8", // 𤗈
+ 0x245c9: "[\b\U000245c9", // 𤗉
+ 0x245ca: "[\b\U000245ca", // 𤗊
+ 0x245cb: "[\b\U000245cb", // 𤗋
+ 0x245cc: "[\b\U000245cc", // 𤗌
+ 0x245cd: "[\b\U000245cd", // 𤗍
+ 0x245ce: "[\b\U000245ce", // 𤗎
+ 0x245cf: "[\b\U000245cf", // 𤗏
+ 0x245d0: "[\b\U000245d0", // 𤗐
+ 0x245d1: "[\b\U000245d1", // 𤗑
+ 0x245d2: "[\b\U000245d2", // 𤗒
+ 0x245d3: "[\b\U000245d3", // 𤗓
+ 0x245d4: "[\b\U000245d4", // 𤗔
+ 0x245d5: "[\b\U000245d5", // 𤗕
+ 0x245d6: "[\b\U000245d6", // 𤗖
+ 0x245d7: "[\b\U000245d7", // 𤗗
+ 0x245d8: "[\t\U000245d8", // 𤗘
+ 0x245d9: "[\t\U000245d9", // 𤗙
+ 0x245da: "[\t\U000245da", // 𤗚
+ 0x245db: "[\t\U000245db", // 𤗛
+ 0x245dc: "[\t\U000245dc", // 𤗜
+ 0x245dd: "[\t\U000245dd", // 𤗝
+ 0x245de: "[\t\U000245de", // 𤗞
+ 0x245df: "[\t\U000245df", // 𤗟
+ 0x245e0: "[\t\U000245e0", // 𤗠
+ 0x245e1: "[\t\U000245e1", // 𤗡
+ 0x245e2: "[\n\U000245e2", // 𤗢
+ 0x245e3: "[\n\U000245e3", // 𤗣
+ 0x245e4: "[\n\U000245e4", // 𤗤
+ 0x245e5: "[\n\U000245e5", // 𤗥
+ 0x245e6: "[\n\U000245e6", // 𤗦
+ 0x245e7: "[\n\U000245e7", // 𤗧
+ 0x245e8: "[\v\U000245e8", // 𤗨
+ 0x245e9: "[\v\U000245e9", // 𤗩
+ 0x245ea: "[\v\U000245ea", // 𤗪
+ 0x245eb: "[\v\U000245eb", // 𤗫
+ 0x245ec: "[\v\U000245ec", // 𤗬
+ 0x245ed: "[\v\U000245ed", // 𤗭
+ 0x245ee: "[\v\U000245ee", // 𤗮
+ 0x245ef: "[\v\U000245ef", // 𤗯
+ 0x245f0: "[\v\U000245f0", // 𤗰
+ 0x245f1: "[\v\U000245f1", // 𤗱
+ 0x245f2: "[\v\U000245f2", // 𤗲
+ 0x245f3: "[\f\U000245f3", // 𤗳
+ 0x245f4: "[\f\U000245f4", // 𤗴
+ 0x245f5: "[\f\U000245f5", // 𤗵
+ 0x245f6: "[\f\U000245f6", // 𤗶
+ 0x245f7: "[\f\U000245f7", // 𤗷
+ 0x245f8: "[\f\U000245f8", // 𤗸
+ 0x245f9: "[\f\U000245f9", // 𤗹
+ 0x245fa: "[\r\U000245fa", // 𤗺
+ 0x245fb: "[\r\U000245fb", // 𤗻
+ 0x245fc: "[\r\U000245fc", // 𤗼
+ 0x245fd: "[\r\U000245fd", // 𤗽
+ 0x245fe: "[\r\U000245fe", // 𤗾
+ 0x245ff: "[\x0e\U000245ff", // 𤗿
+ 0x24600: "[\x0e\U00024600", // 𤘀
+ 0x24601: "[\x0e\U00024601", // 𤘁
+ 0x24602: "[\x0e\U00024602", // 𤘂
+ 0x24603: "[\x10\U00024603", // 𤘃
+ 0x24604: "[\x11\U00024604", // 𤘄
+ 0x24605: "\\\x03\U00024605", // 𤘅
+ 0x24606: "\\\x04\U00024606", // 𤘆
+ 0x24607: "\\\x05\U00024607", // 𤘇
+ 0x24608: "\\\x06\U00024608", // 𤘈
+ 0x24609: "\\\x06\U00024609", // 𤘉
+ 0x2460a: "\\\a\U0002460a", // 𤘊
+ 0x2460b: "\\\a\U0002460b", // 𤘋
+ 0x2460c: "\\\b\U0002460c", // 𤘌
+ 0x2460d: "\\\b\U0002460d", // 𤘍
+ 0x2460e: "\\\b\U0002460e", // 𤘎
+ 0x2460f: "\\\b\U0002460f", // 𤘏
+ 0x24610: "\\\t\U00024610", // 𤘐
+ 0x24611: "\\\n\U00024611", // 𤘑
+ 0x24612: "\\\v\U00024612", // 𤘒
+ 0x24613: "\\\x0e\U00024613", // 𤘓
+ 0x24614: "]\x01\U00024614", // 𤘔
+ 0x24615: "]\x02\U00024615", // 𤘕
+ 0x24616: "]\x02\U00024616", // 𤘖
+ 0x24617: "]\x02\U00024617", // 𤘗
+ 0x24618: "]\x03\U00024618", // 𤘘
+ 0x24619: "]\x03\U00024619", // 𤘙
+ 0x2461a: "]\x03\U0002461a", // 𤘚
+ 0x2461b: "]\x03\U0002461b", // 𤘛
+ 0x2461c: "]\x04\U0002461c", // 𤘜
+ 0x2461d: "]\x04\U0002461d", // 𤘝
+ 0x2461e: "]\x04\U0002461e", // 𤘞
+ 0x2461f: "]\x04\U0002461f", // 𤘟
+ 0x24620: "]\x04\U00024620", // 𤘠
+ 0x24621: "]\x04\U00024621", // 𤘡
+ 0x24622: "]\x04\U00024622", // 𤘢
+ 0x24623: "]\x04\U00024623", // 𤘣
+ 0x24624: "]\x04\U00024624", // 𤘤
+ 0x24625: "]\x04\U00024625", // 𤘥
+ 0x24626: "]\x04\U00024626", // 𤘦
+ 0x24627: "]\x04\U00024627", // 𤘧
+ 0x24628: "]\x04\U00024628", // 𤘨
+ 0x24629: "]\x04\U00024629", // 𤘩
+ 0x2462a: "]\x04\U0002462a", // 𤘪
+ 0x2462b: "]\x04\U0002462b", // 𤘫
+ 0x2462c: "]\x04\U0002462c", // 𤘬
+ 0x2462d: "]\x04\U0002462d", // 𤘭
+ 0x2462e: "]\x04\U0002462e", // 𤘮
+ 0x2462f: "]\x04\U0002462f", // 𤘯
+ 0x24630: "]\x04\U00024630", // 𤘰
+ 0x24631: "]\x04\U00024631", // 𤘱
+ 0x24632: "]\x04\U00024632", // 𤘲
+ 0x24633: "]\x04\U00024633", // 𤘳
+ 0x24634: "]\x04\U00024634", // 𤘴
+ 0x24635: "]\x04\U00024635", // 𤘵
+ 0x24636: "]\x04\U00024636", // 𤘶
+ 0x24637: "]\x04\U00024637", // 𤘷
+ 0x24638: "]\x05\U00024638", // 𤘸
+ 0x24639: "]\x05\U00024639", // 𤘹
+ 0x2463a: "]\x05\U0002463a", // 𤘺
+ 0x2463b: "]\x05\U0002463b", // 𤘻
+ 0x2463c: "]\x05\U0002463c", // 𤘼
+ 0x2463d: "]\x05\U0002463d", // 𤘽
+ 0x2463e: "]\x05\U0002463e", // 𤘾
+ 0x2463f: "]\x05\U0002463f", // 𤘿
+ 0x24640: "]\x05\U00024640", // 𤙀
+ 0x24641: "]\x05\U00024641", // 𤙁
+ 0x24642: "]\x05\U00024642", // 𤙂
+ 0x24643: "]\x05\U00024643", // 𤙃
+ 0x24644: "]\x05\U00024644", // 𤙄
+ 0x24645: "]\x05\U00024645", // 𤙅
+ 0x24646: "]\x05\U00024646", // 𤙆
+ 0x24647: "]\x05\U00024647", // 𤙇
+ 0x24648: "]\x05\U00024648", // 𤙈
+ 0x24649: "]\x05\U00024649", // 𤙉
+ 0x2464a: "]\x05\U0002464a", // 𤙊
+ 0x2464b: "]\x05\U0002464b", // 𤙋
+ 0x2464c: "]\x05\U0002464c", // 𤙌
+ 0x2464d: "]\x05\U0002464d", // 𤙍
+ 0x2464e: "]\x05\U0002464e", // 𤙎
+ 0x2464f: "]\x05\U0002464f", // 𤙏
+ 0x24650: "]\x05\U00024650", // 𤙐
+ 0x24651: "]\x06\U00024651", // 𤙑
+ 0x24652: "]\x06\U00024652", // 𤙒
+ 0x24653: "]\x06\U00024653", // 𤙓
+ 0x24654: "]\x06\U00024654", // 𤙔
+ 0x24655: "]\x06\U00024655", // 𤙕
+ 0x24656: "]\x06\U00024656", // 𤙖
+ 0x24657: "]\x06\U00024657", // 𤙗
+ 0x24658: "]\x06\U00024658", // 𤙘
+ 0x24659: "]\x06\U00024659", // 𤙙
+ 0x2465a: "]\x06\U0002465a", // 𤙚
+ 0x2465b: "]\a\U0002465b", // 𤙛
+ 0x2465c: "]\a\U0002465c", // 𤙜
+ 0x2465d: "]\a\U0002465d", // 𤙝
+ 0x2465e: "]\a\U0002465e", // 𤙞
+ 0x2465f: "]\a\U0002465f", // 𤙟
+ 0x24660: "]\a\U00024660", // 𤙠
+ 0x24661: "]\a\U00024661", // 𤙡
+ 0x24662: "]\a\U00024662", // 𤙢
+ 0x24663: "]\a\U00024663", // 𤙣
+ 0x24664: "]\a\U00024664", // 𤙤
+ 0x24665: "]\a\U00024665", // 𤙥
+ 0x24666: "]\a\U00024666", // 𤙦
+ 0x24667: "]\a\U00024667", // 𤙧
+ 0x24668: "]\a\U00024668", // 𤙨
+ 0x24669: "]\a\U00024669", // 𤙩
+ 0x2466a: "]\a\U0002466a", // 𤙪
+ 0x2466b: "]\a\U0002466b", // 𤙫
+ 0x2466c: "]\a\U0002466c", // 𤙬
+ 0x2466d: "]\a\U0002466d", // 𤙭
+ 0x2466e: "]\a\U0002466e", // 𤙮
+ 0x2466f: "]\b\U0002466f", // 𤙯
+ 0x24670: "]\b\U00024670", // 𤙰
+ 0x24671: "]\b\U00024671", // 𤙱
+ 0x24672: "]\b\U00024672", // 𤙲
+ 0x24673: "]\b\U00024673", // 𤙳
+ 0x24674: "]\b\U00024674", // 𤙴
+ 0x24675: "]\b\U00024675", // 𤙵
+ 0x24676: "]\b\U00024676", // 𤙶
+ 0x24677: "]\b\U00024677", // 𤙷
+ 0x24678: "]\b\U00024678", // 𤙸
+ 0x24679: "]\b\U00024679", // 𤙹
+ 0x2467a: "]\b\U0002467a", // 𤙺
+ 0x2467b: "]\b\U0002467b", // 𤙻
+ 0x2467c: "]\b\U0002467c", // 𤙼
+ 0x2467d: "]\b\U0002467d", // 𤙽
+ 0x2467e: "]\b\U0002467e", // 𤙾
+ 0x2467f: "]\b\U0002467f", // 𤙿
+ 0x24680: "]\b\U00024680", // 𤚀
+ 0x24681: "]\b\U00024681", // 𤚁
+ 0x24682: "]\b\U00024682", // 𤚂
+ 0x24683: "]\b\U00024683", // 𤚃
+ 0x24684: "]\b\U00024684", // 𤚄
+ 0x24685: "]\b\U00024685", // 𤚅
+ 0x24686: "]\b\U00024686", // 𤚆
+ 0x24687: "]\b\U00024687", // 𤚇
+ 0x24688: "]\b\U00024688", // 𤚈
+ 0x24689: "]\b\U00024689", // 𤚉
+ 0x2468a: "]\b\U0002468a", // 𤚊
+ 0x2468b: "]\b\U0002468b", // 𤚋
+ 0x2468c: "]\b\U0002468c", // 𤚌
+ 0x2468d: "]\t\U0002468d", // 𤚍
+ 0x2468e: "]\t\U0002468e", // 𤚎
+ 0x2468f: "]\t\U0002468f", // 𤚏
+ 0x24690: "]\t\U00024690", // 𤚐
+ 0x24691: "]\t\U00024691", // 𤚑
+ 0x24692: "]\t\U00024692", // 𤚒
+ 0x24693: "]\t\U00024693", // 𤚓
+ 0x24694: "]\t\U00024694", // 𤚔
+ 0x24695: "]\t\U00024695", // 𤚕
+ 0x24696: "]\t\U00024696", // 𤚖
+ 0x24697: "]\t\U00024697", // 𤚗
+ 0x24698: "]\t\U00024698", // 𤚘
+ 0x24699: "]\t\U00024699", // 𤚙
+ 0x2469a: "]\t\U0002469a", // 𤚚
+ 0x2469b: "]\t\U0002469b", // 𤚛
+ 0x2469c: "M\t\U0002469c", // 𤚜
+ 0x2469d: "]\t\U0002469d", // 𤚝
+ 0x2469e: "]\t\U0002469e", // 𤚞
+ 0x2469f: "]\t\U0002469f", // 𤚟
+ 0x246a0: "]\t\U000246a0", // 𤚠
+ 0x246a1: "]\t\U000246a1", // 𤚡
+ 0x246a2: "]\t\U000246a2", // 𤚢
+ 0x246a3: "]\t\U000246a3", // 𤚣
+ 0x246a4: "]\t\U000246a4", // 𤚤
+ 0x246a5: "]\t\U000246a5", // 𤚥
+ 0x246a6: "]\t\U000246a6", // 𤚦
+ 0x246a7: "]\t\U000246a7", // 𤚧
+ 0x246a8: "]\t\U000246a8", // 𤚨
+ 0x246a9: "]\n\U000246a9", // 𤚩
+ 0x246aa: "]\n\U000246aa", // 𤚪
+ 0x246ab: "]\n\U000246ab", // 𤚫
+ 0x246ac: "]\n\U000246ac", // 𤚬
+ 0x246ad: "]\n\U000246ad", // 𤚭
+ 0x246ae: "]\n\U000246ae", // 𤚮
+ 0x246af: "]\n\U000246af", // 𤚯
+ 0x246b0: "]\n\U000246b0", // 𤚰
+ 0x246b1: "]\n\U000246b1", // 𤚱
+ 0x246b2: "]\n\U000246b2", // 𤚲
+ 0x246b3: "]\n\U000246b3", // 𤚳
+ 0x246b4: "]\n\U000246b4", // 𤚴
+ 0x246b5: "]\n\U000246b5", // 𤚵
+ 0x246b6: "]\n\U000246b6", // 𤚶
+ 0x246b7: "]\n\U000246b7", // 𤚷
+ 0x246b8: "]\n\U000246b8", // 𤚸
+ 0x246b9: "]\n\U000246b9", // 𤚹
+ 0x246ba: "]\n\U000246ba", // 𤚺
+ 0x246bb: "]\n\U000246bb", // 𤚻
+ 0x246bc: "]\n\U000246bc", // 𤚼
+ 0x246bd: "]\n\U000246bd", // 𤚽
+ 0x246be: "]\n\U000246be", // 𤚾
+ 0x246bf: "]\t\U000246bf", // 𤚿
+ 0x246c0: "]\n\U000246c0", // 𤛀
+ 0x246c1: "]\n\U000246c1", // 𤛁
+ 0x246c2: "]\n\U000246c2", // 𤛂
+ 0x246c3: "]\n\U000246c3", // 𤛃
+ 0x246c4: "]\n\U000246c4", // 𤛄
+ 0x246c5: "]\n\U000246c5", // 𤛅
+ 0x246c6: "]\n\U000246c6", // 𤛆
+ 0x246c7: "]\n\U000246c7", // 𤛇
+ 0x246c8: "]\n\U000246c8", // 𤛈
+ 0x246c9: "]\n\U000246c9", // 𤛉
+ 0x246ca: "]\v\U000246ca", // 𤛊
+ 0x246cb: "]\v\U000246cb", // 𤛋
+ 0x246cc: "]\v\U000246cc", // 𤛌
+ 0x246cd: "]\v\U000246cd", // 𤛍
+ 0x246ce: "]\v\U000246ce", // 𤛎
+ 0x246cf: "]\v\U000246cf", // 𤛏
+ 0x246d0: "]\v\U000246d0", // 𤛐
+ 0x246d1: "]\v\U000246d1", // 𤛑
+ 0x246d2: "]\v\U000246d2", // 𤛒
+ 0x246d3: "]\v\U000246d3", // 𤛓
+ 0x246d4: "]\v\U000246d4", // 𤛔
+ 0x246d5: "]\v\U000246d5", // 𤛕
+ 0x246d6: "]\v\U000246d6", // 𤛖
+ 0x246d7: "O\v\U000246d7", // 𤛗
+ 0x246d8: "]\v\U000246d8", // 𤛘
+ 0x246d9: "]\v\U000246d9", // 𤛙
+ 0x246da: "]\v\U000246da", // 𤛚
+ 0x246db: "]\v\U000246db", // 𤛛
+ 0x246dc: "]\v\U000246dc", // 𤛜
+ 0x246dd: "]\v\U000246dd", // 𤛝
+ 0x246de: "]\v\U000246de", // 𤛞
+ 0x246df: "]\v\U000246df", // 𤛟
+ 0x246e0: "]\v\U000246e0", // 𤛠
+ 0x246e1: "]\f\U000246e1", // 𤛡
+ 0x246e2: "]\f\U000246e2", // 𤛢
+ 0x246e3: "]\f\U000246e3", // 𤛣
+ 0x246e4: "]\f\U000246e4", // 𤛤
+ 0x246e5: "]\f\U000246e5", // 𤛥
+ 0x246e6: "]\f\U000246e6", // 𤛦
+ 0x246e7: "]\f\U000246e7", // 𤛧
+ 0x246e8: "]\f\U000246e8", // 𤛨
+ 0x246e9: "]\f\U000246e9", // 𤛩
+ 0x246ea: "]\f\U000246ea", // 𤛪
+ 0x246eb: "]\f\U000246eb", // 𤛫
+ 0x246ec: "]\f\U000246ec", // 𤛬
+ 0x246ed: "]\f\U000246ed", // 𤛭
+ 0x246ee: "]\f\U000246ee", // 𤛮
+ 0x246ef: "]\r\U000246ef", // 𤛯
+ 0x246f0: "]\r\U000246f0", // 𤛰
+ 0x246f1: "]\r\U000246f1", // 𤛱
+ 0x246f2: "]\r\U000246f2", // 𤛲
+ 0x246f3: "]\r\U000246f3", // 𤛳
+ 0x246f4: "]\r\U000246f4", // 𤛴
+ 0x246f5: "]\r\U000246f5", // 𤛵
+ 0x246f6: "]\r\U000246f6", // 𤛶
+ 0x246f7: "]\r\U000246f7", // 𤛷
+ 0x246f8: "]\r\U000246f8", // 𤛸
+ 0x246f9: "]\x0e\U000246f9", // 𤛹
+ 0x246fa: "]\x0e\U000246fa", // 𤛺
+ 0x246fb: "]\x0f\U000246fb", // 𤛻
+ 0x246fc: "]\x0f\U000246fc", // 𤛼
+ 0x246fd: "]\x0f\U000246fd", // 𤛽
+ 0x246fe: "]\x0f\U000246fe", // 𤛾
+ 0x246ff: "]\x0f\U000246ff", // 𤛿
+ 0x24700: "]\x0f\U00024700", // 𤜀
+ 0x24701: "]\x0f\U00024701", // 𤜁
+ 0x24702: "]\x10\U00024702", // 𤜂
+ 0x24703: "]\x10\U00024703", // 𤜃
+ 0x24704: "]\x10\U00024704", // 𤜄
+ 0x24705: "]\x10\U00024705", // 𤜅
+ 0x24706: "]\x10\U00024706", // 𤜆
+ 0x24707: "]\x11\U00024707", // 𤜇
+ 0x24708: "]\x11\U00024708", // 𤜈
+ 0x24709: "]\x11\U00024709", // 𤜉
+ 0x2470a: "]\x11\U0002470a", // 𤜊
+ 0x2470b: "]\x11\U0002470b", // 𤜋
+ 0x2470c: "]\x12\U0002470c", // 𤜌
+ 0x2470d: "]\x12\U0002470d", // 𤜍
+ 0x2470e: "]\x12\U0002470e", // 𤜎
+ 0x2470f: "]\x12\U0002470f", // 𤜏
+ 0x24710: "]\x12\U00024710", // 𤜐
+ 0x24711: "]\x13\U00024711", // 𤜑
+ 0x24712: "]\x13\U00024712", // 𤜒
+ 0x24713: "]\x13\U00024713", // 𤜓
+ 0x24714: "]\x14\U00024714", // 𤜔
+ 0x24715: "]\x14\U00024715", // 𤜕
+ 0x24716: "]\x15\U00024716", // 𤜖
+ 0x24717: "]\x15\U00024717", // 𤜗
+ 0x24718: "]\x15\U00024718", // 𤜘
+ 0x24719: "]\x18\U00024719", // 𤜙
+ 0x2471a: "^\x01\U0002471a", // 𤜚
+ 0x2471b: "^\x02\U0002471b", // 𤜛
+ 0x2471c: "^\x02\U0002471c", // 𤜜
+ 0x2471d: "^\x02\U0002471d", // 𤜝
+ 0x2471e: "^\x02\U0002471e", // 𤜞
+ 0x2471f: "^\x02\U0002471f", // 𤜟
+ 0x24720: "^\x02\U00024720", // 𤜠
+ 0x24721: "^\x03\U00024721", // 𤜡
+ 0x24722: "^\x03\U00024722", // 𤜢
+ 0x24723: "^\x03\U00024723", // 𤜣
+ 0x24724: "^\x03\U00024724", // 𤜤
+ 0x24725: "^\x03\U00024725", // 𤜥
+ 0x24726: "^\x03\U00024726", // 𤜦
+ 0x24727: "^\x03\U00024727", // 𤜧
+ 0x24728: "^\x03\U00024728", // 𤜨
+ 0x24729: "^\x03\U00024729", // 𤜩
+ 0x2472a: "^\x03\U0002472a", // 𤜪
+ 0x2472b: "^\x03\U0002472b", // 𤜫
+ 0x2472c: "^\x03\U0002472c", // 𤜬
+ 0x2472d: "^\x03\U0002472d", // 𤜭
+ 0x2472e: "^\x03\U0002472e", // 𤜮
+ 0x2472f: "^\x04\U0002472f", // 𤜯
+ 0x24730: "^\x04\U00024730", // 𤜰
+ 0x24731: "^\x04\U00024731", // 𤜱
+ 0x24732: "^\x04\U00024732", // 𤜲
+ 0x24733: "^\x04\U00024733", // 𤜳
+ 0x24734: "^\x04\U00024734", // 𤜴
+ 0x24735: "^\x04\U00024735", // 𤜵
+ 0x24736: "^\x04\U00024736", // 𤜶
+ 0x24737: "^\x04\U00024737", // 𤜷
+ 0x24738: "^\x04\U00024738", // 𤜸
+ 0x24739: "^\x04\U00024739", // 𤜹
+ 0x2473a: "^\x04\U0002473a", // 𤜺
+ 0x2473b: "^\x04\U0002473b", // 𤜻
+ 0x2473c: "^\x04\U0002473c", // 𤜼
+ 0x2473d: "^\x04\U0002473d", // 𤜽
+ 0x2473e: "^\x04\U0002473e", // 𤜾
+ 0x2473f: "^\x04\U0002473f", // 𤜿
+ 0x24740: "^\x04\U00024740", // 𤝀
+ 0x24741: "^\x04\U00024741", // 𤝁
+ 0x24742: "^\x04\U00024742", // 𤝂
+ 0x24743: "^\x04\U00024743", // 𤝃
+ 0x24744: "^\x04\U00024744", // 𤝄
+ 0x24745: "^\x04\U00024745", // 𤝅
+ 0x24746: "^\x04\U00024746", // 𤝆
+ 0x24747: "^\x04\U00024747", // 𤝇
+ 0x24748: "^\x04\U00024748", // 𤝈
+ 0x24749: "^\x04\U00024749", // 𤝉
+ 0x2474a: "^\x04\U0002474a", // 𤝊
+ 0x2474b: "^\x04\U0002474b", // 𤝋
+ 0x2474c: "^\x04\U0002474c", // 𤝌
+ 0x2474d: "^\x04\U0002474d", // 𤝍
+ 0x2474e: "^\x04\U0002474e", // 𤝎
+ 0x2474f: "^\x05\U0002474f", // 𤝏
+ 0x24750: "^\x05\U00024750", // 𤝐
+ 0x24751: "^\x05\U00024751", // 𤝑
+ 0x24752: "^\x05\U00024752", // 𤝒
+ 0x24753: "^\x05\U00024753", // 𤝓
+ 0x24754: "^\x05\U00024754", // 𤝔
+ 0x24755: "^\x05\U00024755", // 𤝕
+ 0x24756: "^\x05\U00024756", // 𤝖
+ 0x24757: "^\x05\U00024757", // 𤝗
+ 0x24758: "^\x05\U00024758", // 𤝘
+ 0x24759: "^\x05\U00024759", // 𤝙
+ 0x2475a: "^\x05\U0002475a", // 𤝚
+ 0x2475b: "^\x05\U0002475b", // 𤝛
+ 0x2475c: "^\x05\U0002475c", // 𤝜
+ 0x2475d: "^\x05\U0002475d", // 𤝝
+ 0x2475e: "^\x05\U0002475e", // 𤝞
+ 0x2475f: "^\x05\U0002475f", // 𤝟
+ 0x24760: "^\x05\U00024760", // 𤝠
+ 0x24761: "^\x05\U00024761", // 𤝡
+ 0x24762: "^\x05\U00024762", // 𤝢
+ 0x24763: "^\x05\U00024763", // 𤝣
+ 0x24764: "^\x05\U00024764", // 𤝤
+ 0x24765: "^\x05\U00024765", // 𤝥
+ 0x24766: "^\x05\U00024766", // 𤝦
+ 0x24767: "^\x05\U00024767", // 𤝧
+ 0x24768: "^\x05\U00024768", // 𤝨
+ 0x24769: "^\x05\U00024769", // 𤝩
+ 0x2476a: "^\x05\U0002476a", // 𤝪
+ 0x2476b: "^\x05\U0002476b", // 𤝫
+ 0x2476c: "^\x05\U0002476c", // 𤝬
+ 0x2476d: "^\x05\U0002476d", // 𤝭
+ 0x2476e: "^\x04\U0002476e", // 𤝮
+ 0x2476f: "^\x06\U0002476f", // 𤝯
+ 0x24770: "^\x06\U00024770", // 𤝰
+ 0x24771: "^\x06\U00024771", // 𤝱
+ 0x24772: "^\x06\U00024772", // 𤝲
+ 0x24773: "^\x06\U00024773", // 𤝳
+ 0x24774: "^\x06\U00024774", // 𤝴
+ 0x24775: "^\x06\U00024775", // 𤝵
+ 0x24776: "^\x06\U00024776", // 𤝶
+ 0x24777: "^\x06\U00024777", // 𤝷
+ 0x24778: "^\x06\U00024778", // 𤝸
+ 0x24779: "^\x06\U00024779", // 𤝹
+ 0x2477a: "^\x06\U0002477a", // 𤝺
+ 0x2477b: "^\x06\U0002477b", // 𤝻
+ 0x2477c: "^\x06\U0002477c", // 𤝼
+ 0x2477d: "^\x06\U0002477d", // 𤝽
+ 0x2477e: "^\x06\U0002477e", // 𤝾
+ 0x2477f: "^\x06\U0002477f", // 𤝿
+ 0x24780: "^\x06\U00024780", // 𤞀
+ 0x24781: "^\x06\U00024781", // 𤞁
+ 0x24782: "^\x06\U00024782", // 𤞂
+ 0x24783: "^\x06\U00024783", // 𤞃
+ 0x24784: "^\x06\U00024784", // 𤞄
+ 0x24785: "^\x06\U00024785", // 𤞅
+ 0x24786: "^\x06\U00024786", // 𤞆
+ 0x24787: "^\x06\U00024787", // 𤞇
+ 0x24788: "^\x06\U00024788", // 𤞈
+ 0x24789: "^\x06\U00024789", // 𤞉
+ 0x2478a: "^\x06\U0002478a", // 𤞊
+ 0x2478b: "^\x06\U0002478b", // 𤞋
+ 0x2478c: "^\x06\U0002478c", // 𤞌
+ 0x2478d: "^\x06\U0002478d", // 𤞍
+ 0x2478e: "^\x06\U0002478e", // 𤞎
+ 0x2478f: "^\x06\U0002478f", // 𤞏
+ 0x24790: "^\x06\U00024790", // 𤞐
+ 0x24791: "^\x06\U00024791", // 𤞑
+ 0x24792: "^\x06\U00024792", // 𤞒
+ 0x24793: "^\x06\U00024793", // 𤞓
+ 0x24794: "^\x06\U00024794", // 𤞔
+ 0x24795: "^\x06\U00024795", // 𤞕
+ 0x24796: "^\x06\U00024796", // 𤞖
+ 0x24797: "^\x06\U00024797", // 𤞗
+ 0x24798: "^\x06\U00024798", // 𤞘
+ 0x24799: "^\a\U00024799", // 𤞙
+ 0x2479a: "^\a\U0002479a", // 𤞚
+ 0x2479b: "^\a\U0002479b", // 𤞛
+ 0x2479c: "^\a\U0002479c", // 𤞜
+ 0x2479d: "^\a\U0002479d", // 𤞝
+ 0x2479e: "^\a\U0002479e", // 𤞞
+ 0x2479f: "^\a\U0002479f", // 𤞟
+ 0x247a0: "^\a\U000247a0", // 𤞠
+ 0x247a1: "^\a\U000247a1", // 𤞡
+ 0x247a2: "^\a\U000247a2", // 𤞢
+ 0x247a3: "^\x06\U000247a3", // 𤞣
+ 0x247a4: "^\a\U000247a4", // 𤞤
+ 0x247a5: "^\a\U000247a5", // 𤞥
+ 0x247a6: "^\a\U000247a6", // 𤞦
+ 0x247a7: "^\a\U000247a7", // 𤞧
+ 0x247a8: "^\a\U000247a8", // 𤞨
+ 0x247a9: "^\a\U000247a9", // 𤞩
+ 0x247aa: "^\a\U000247aa", // 𤞪
+ 0x247ab: "^\a\U000247ab", // 𤞫
+ 0x247ac: "^\a\U000247ac", // 𤞬
+ 0x247ad: "^\a\U000247ad", // 𤞭
+ 0x247ae: "^\a\U000247ae", // 𤞮
+ 0x247af: "^\a\U000247af", // 𤞯
+ 0x247b0: "^\a\U000247b0", // 𤞰
+ 0x247b1: "^\a\U000247b1", // 𤞱
+ 0x247b2: "^\a\U000247b2", // 𤞲
+ 0x247b3: "^\a\U000247b3", // 𤞳
+ 0x247b4: "^\a\U000247b4", // 𤞴
+ 0x247b5: "^\a\U000247b5", // 𤞵
+ 0x247b6: "^\a\U000247b6", // 𤞶
+ 0x247b7: "^\a\U000247b7", // 𤞷
+ 0x247b8: "^\a\U000247b8", // 𤞸
+ 0x247b9: "^\a\U000247b9", // 𤞹
+ 0x247ba: "^\a\U000247ba", // 𤞺
+ 0x247bb: "^\a\U000247bb", // 𤞻
+ 0x247bc: "^\a\U000247bc", // 𤞼
+ 0x247bd: "^\a\U000247bd", // 𤞽
+ 0x247be: "^\a\U000247be", // 𤞾
+ 0x247bf: "^\a\U000247bf", // 𤞿
+ 0x247c0: "^\a\U000247c0", // 𤟀
+ 0x247c1: "^\a\U000247c1", // 𤟁
+ 0x247c2: "^\a\U000247c2", // 𤟂
+ 0x247c3: "^\b\U000247c3", // 𤟃
+ 0x247c4: "^\b\U000247c4", // 𤟄
+ 0x247c5: "^\b\U000247c5", // 𤟅
+ 0x247c6: "^\b\U000247c6", // 𤟆
+ 0x247c7: "^\b\U000247c7", // 𤟇
+ 0x247c8: "^\b\U000247c8", // 𤟈
+ 0x247c9: "^\b\U000247c9", // 𤟉
+ 0x247ca: "^\b\U000247ca", // 𤟊
+ 0x247cb: "^\b\U000247cb", // 𤟋
+ 0x247cc: "^\b\U000247cc", // 𤟌
+ 0x247cd: "^\b\U000247cd", // 𤟍
+ 0x247ce: "^\b\U000247ce", // 𤟎
+ 0x247cf: "^\b\U000247cf", // 𤟏
+ 0x247d0: "^\b\U000247d0", // 𤟐
+ 0x247d1: "^\b\U000247d1", // 𤟑
+ 0x247d2: "^\b\U000247d2", // 𤟒
+ 0x247d3: "^\b\U000247d3", // 𤟓
+ 0x247d4: "^\b\U000247d4", // 𤟔
+ 0x247d5: "^\b\U000247d5", // 𤟕
+ 0x247d6: "^\b\U000247d6", // 𤟖
+ 0x247d7: "^\b\U000247d7", // 𤟗
+ 0x247d8: "^\b\U000247d8", // 𤟘
+ 0x247d9: "^\b\U000247d9", // 𤟙
+ 0x247da: "^\b\U000247da", // 𤟚
+ 0x247db: "^\b\U000247db", // 𤟛
+ 0x247dc: "^\t\U000247dc", // 𤟜
+ 0x247dd: "^\t\U000247dd", // 𤟝
+ 0x247de: "^\t\U000247de", // 𤟞
+ 0x247df: "^\t\U000247df", // 𤟟
+ 0x247e0: "^\t\U000247e0", // 𤟠
+ 0x247e1: "^\t\U000247e1", // 𤟡
+ 0x247e2: "^\t\U000247e2", // 𤟢
+ 0x247e3: "^\t\U000247e3", // 𤟣
+ 0x247e4: "^\t\U000247e4", // 𤟤
+ 0x247e5: "^\t\U000247e5", // 𤟥
+ 0x247e6: "^\t\U000247e6", // 𤟦
+ 0x247e7: "^\t\U000247e7", // 𤟧
+ 0x247e8: "^\t\U000247e8", // 𤟨
+ 0x247e9: "^\t\U000247e9", // 𤟩
+ 0x247ea: "^\t\U000247ea", // 𤟪
+ 0x247eb: "^\t\U000247eb", // 𤟫
+ 0x247ec: "^\t\U000247ec", // 𤟬
+ 0x247ed: "^\t\U000247ed", // 𤟭
+ 0x247ee: "^\t\U000247ee", // 𤟮
+ 0x247ef: "^\t\U000247ef", // 𤟯
+ 0x247f0: "^\t\U000247f0", // 𤟰
+ 0x247f1: "^\t\U000247f1", // 𤟱
+ 0x247f2: "^\t\U000247f2", // 𤟲
+ 0x247f3: "^\t\U000247f3", // 𤟳
+ 0x247f4: "^\t\U000247f4", // 𤟴
+ 0x247f5: "?\t\U000247f5", // 𤟵
+ 0x247f6: "^\t\U000247f6", // 𤟶
+ 0x247f7: "^\t\U000247f7", // 𤟷
+ 0x247f8: "^\t\U000247f8", // 𤟸
+ 0x247f9: "^\t\U000247f9", // 𤟹
+ 0x247fa: "^\t\U000247fa", // 𤟺
+ 0x247fb: "^\t\U000247fb", // 𤟻
+ 0x247fc: "^\t\U000247fc", // 𤟼
+ 0x247fd: "^\t\U000247fd", // 𤟽
+ 0x247fe: "^\t\U000247fe", // 𤟾
+ 0x247ff: "^\t\U000247ff", // 𤟿
+ 0x24800: "^\t\U00024800", // 𤠀
+ 0x24801: "^\t\U00024801", // 𤠁
+ 0x24802: "^\t\U00024802", // 𤠂
+ 0x24803: "^\t\U00024803", // 𤠃
+ 0x24804: "^\t\U00024804", // 𤠄
+ 0x24805: "^\t\U00024805", // 𤠅
+ 0x24806: "^\t\U00024806", // 𤠆
+ 0x24807: "^\t\U00024807", // 𤠇
+ 0x24808: "^\t\U00024808", // 𤠈
+ 0x24809: "^\t\U00024809", // 𤠉
+ 0x2480a: "^\t\U0002480a", // 𤠊
+ 0x2480b: "^\t\U0002480b", // 𤠋
+ 0x2480c: "^\t\U0002480c", // 𤠌
+ 0x2480d: "^\n\U0002480d", // 𤠍
+ 0x2480e: "^\n\U0002480e", // 𤠎
+ 0x2480f: "^\n\U0002480f", // 𤠏
+ 0x24810: "^\n\U00024810", // 𤠐
+ 0x24811: "^\n\U00024811", // 𤠑
+ 0x24812: "^\n\U00024812", // 𤠒
+ 0x24813: "^\n\U00024813", // 𤠓
+ 0x24814: "^\n\U00024814", // 𤠔
+ 0x24815: "^\n\U00024815", // 𤠕
+ 0x24816: "^\n\U00024816", // 𤠖
+ 0x24817: "^\n\U00024817", // 𤠗
+ 0x24818: "^\n\U00024818", // 𤠘
+ 0x24819: "^\n\U00024819", // 𤠙
+ 0x2481a: "^\n\U0002481a", // 𤠚
+ 0x2481b: "^\n\U0002481b", // 𤠛
+ 0x2481c: "^\n\U0002481c", // 𤠜
+ 0x2481d: "^\n\U0002481d", // 𤠝
+ 0x2481e: "^\n\U0002481e", // 𤠞
+ 0x2481f: "^\n\U0002481f", // 𤠟
+ 0x24820: "^\n\U00024820", // 𤠠
+ 0x24821: "^\n\U00024821", // 𤠡
+ 0x24822: "^\n\U00024822", // 𤠢
+ 0x24823: "^\n\U00024823", // 𤠣
+ 0x24824: "^\n\U00024824", // 𤠤
+ 0x24825: "^\n\U00024825", // 𤠥
+ 0x24826: "^\n\U00024826", // 𤠦
+ 0x24827: "^\n\U00024827", // 𤠧
+ 0x24828: "^\n\U00024828", // 𤠨
+ 0x24829: "^\n\U00024829", // 𤠩
+ 0x2482a: "^\n\U0002482a", // 𤠪
+ 0x2482b: "^\n\U0002482b", // 𤠫
+ 0x2482c: "^\n\U0002482c", // 𤠬
+ 0x2482d: "^\n\U0002482d", // 𤠭
+ 0x2482e: "^\n\U0002482e", // 𤠮
+ 0x2482f: "^\n\U0002482f", // 𤠯
+ 0x24830: "^\n\U00024830", // 𤠰
+ 0x24831: "^\n\U00024831", // 𤠱
+ 0x24832: "^\n\U00024832", // 𤠲
+ 0x24833: "^\n\U00024833", // 𤠳
+ 0x24834: "^\n\U00024834", // 𤠴
+ 0x24835: "^\n\U00024835", // 𤠵
+ 0x24836: "^\n\U00024836", // 𤠶
+ 0x24837: "^\n\U00024837", // 𤠷
+ 0x24838: "^\n\U00024838", // 𤠸
+ 0x24839: "^\v\U00024839", // 𤠹
+ 0x2483a: "^\v\U0002483a", // 𤠺
+ 0x2483b: "^\v\U0002483b", // 𤠻
+ 0x2483c: "^\v\U0002483c", // 𤠼
+ 0x2483d: "^\v\U0002483d", // 𤠽
+ 0x2483e: "^\v\U0002483e", // 𤠾
+ 0x2483f: "^\v\U0002483f", // 𤠿
+ 0x24840: "^\v\U00024840", // 𤡀
+ 0x24841: "^\v\U00024841", // 𤡁
+ 0x24842: "^\v\U00024842", // 𤡂
+ 0x24843: "^\v\U00024843", // 𤡃
+ 0x24844: "^\v\U00024844", // 𤡄
+ 0x24845: "^\v\U00024845", // 𤡅
+ 0x24846: "^\v\U00024846", // 𤡆
+ 0x24847: "^\v\U00024847", // 𤡇
+ 0x24848: "^\v\U00024848", // 𤡈
+ 0x24849: "^\v\U00024849", // 𤡉
+ 0x2484a: "^\v\U0002484a", // 𤡊
+ 0x2484b: "^\v\U0002484b", // 𤡋
+ 0x2484c: "^\v\U0002484c", // 𤡌
+ 0x2484d: "^\v\U0002484d", // 𤡍
+ 0x2484e: "^\v\U0002484e", // 𤡎
+ 0x2484f: "^\v\U0002484f", // 𤡏
+ 0x24850: "^\v\U00024850", // 𤡐
+ 0x24851: "^\v\U00024851", // 𤡑
+ 0x24852: "^\v\U00024852", // 𤡒
+ 0x24853: "^\v\U00024853", // 𤡓
+ 0x24854: "^\v\U00024854", // 𤡔
+ 0x24855: "^\v\U00024855", // 𤡕
+ 0x24856: "^\v\U00024856", // 𤡖
+ 0x24857: "^\v\U00024857", // 𤡗
+ 0x24858: "^\v\U00024858", // 𤡘
+ 0x24859: "^\v\U00024859", // 𤡙
+ 0x2485a: "^\v\U0002485a", // 𤡚
+ 0x2485b: "^\v\U0002485b", // 𤡛
+ 0x2485c: "^\v\U0002485c", // 𤡜
+ 0x2485d: "^\v\U0002485d", // 𤡝
+ 0x2485e: "^\v\U0002485e", // 𤡞
+ 0x2485f: "^\v\U0002485f", // 𤡟
+ 0x24860: "^\v\U00024860", // 𤡠
+ 0x24861: "^\v\U00024861", // 𤡡
+ 0x24862: "^\v\U00024862", // 𤡢
+ 0x24863: "^\f\U00024863", // 𤡣
+ 0x24864: "^\f\U00024864", // 𤡤
+ 0x24865: "^\f\U00024865", // 𤡥
+ 0x24866: "^\f\U00024866", // 𤡦
+ 0x24867: "^\f\U00024867", // 𤡧
+ 0x24868: "^\f\U00024868", // 𤡨
+ 0x24869: "^\f\U00024869", // 𤡩
+ 0x2486a: "^\f\U0002486a", // 𤡪
+ 0x2486b: "^\f\U0002486b", // 𤡫
+ 0x2486c: "^\f\U0002486c", // 𤡬
+ 0x2486d: "^\f\U0002486d", // 𤡭
+ 0x2486e: "^\f\U0002486e", // 𤡮
+ 0x2486f: "^\f\U0002486f", // 𤡯
+ 0x24870: "^\f\U00024870", // 𤡰
+ 0x24871: "^\f\U00024871", // 𤡱
+ 0x24872: "^\f\U00024872", // 𤡲
+ 0x24873: "^\f\U00024873", // 𤡳
+ 0x24874: "^\f\U00024874", // 𤡴
+ 0x24875: "^\f\U00024875", // 𤡵
+ 0x24876: "^\f\U00024876", // 𤡶
+ 0x24877: "^\f\U00024877", // 𤡷
+ 0x24878: "^\f\U00024878", // 𤡸
+ 0x24879: "^\f\U00024879", // 𤡹
+ 0x2487a: "^\f\U0002487a", // 𤡺
+ 0x2487b: "^\f\U0002487b", // 𤡻
+ 0x2487c: "^\f\U0002487c", // 𤡼
+ 0x2487d: "^\f\U0002487d", // 𤡽
+ 0x2487e: "^\f\U0002487e", // 𤡾
+ 0x2487f: "^\f\U0002487f", // 𤡿
+ 0x24880: "^\f\U00024880", // 𤢀
+ 0x24881: "^\f\U00024881", // 𤢁
+ 0x24882: "^\f\U00024882", // 𤢂
+ 0x24883: "^\f\U00024883", // 𤢃
+ 0x24884: "^\f\U00024884", // 𤢄
+ 0x24885: "^\f\U00024885", // 𤢅
+ 0x24886: "^\f\U00024886", // 𤢆
+ 0x24887: "^\f\U00024887", // 𤢇
+ 0x24888: "^\f\U00024888", // 𤢈
+ 0x24889: "^\f\U00024889", // 𤢉
+ 0x2488a: "^\f\U0002488a", // 𤢊
+ 0x2488b: "^\f\U0002488b", // 𤢋
+ 0x2488c: "^\r\U0002488c", // 𤢌
+ 0x2488d: "^\r\U0002488d", // 𤢍
+ 0x2488e: "^\r\U0002488e", // 𤢎
+ 0x2488f: "^\r\U0002488f", // 𤢏
+ 0x24890: "^\r\U00024890", // 𤢐
+ 0x24891: "^\r\U00024891", // 𤢑
+ 0x24892: "^\r\U00024892", // 𤢒
+ 0x24893: "^\r\U00024893", // 𤢓
+ 0x24894: "^\r\U00024894", // 𤢔
+ 0x24895: "^\r\U00024895", // 𤢕
+ 0x24896: "^\r\U00024896", // 𤢖
+ 0x24897: "^\r\U00024897", // 𤢗
+ 0x24898: "^\r\U00024898", // 𤢘
+ 0x24899: "^\r\U00024899", // 𤢙
+ 0x2489a: "^\r\U0002489a", // 𤢚
+ 0x2489b: "^\r\U0002489b", // 𤢛
+ 0x2489c: "^\r\U0002489c", // 𤢜
+ 0x2489d: "^\r\U0002489d", // 𤢝
+ 0x2489e: "^\r\U0002489e", // 𤢞
+ 0x2489f: "^\r\U0002489f", // 𤢟
+ 0x248a0: "^\r\U000248a0", // 𤢠
+ 0x248a1: "^\r\U000248a1", // 𤢡
+ 0x248a2: "^\r\U000248a2", // 𤢢
+ 0x248a3: "^\r\U000248a3", // 𤢣
+ 0x248a4: "^\r\U000248a4", // 𤢤
+ 0x248a5: "^\r\U000248a5", // 𤢥
+ 0x248a6: "^\x0e\U000248a6", // 𤢦
+ 0x248a7: "^\x0e\U000248a7", // 𤢧
+ 0x248a8: "^\x0e\U000248a8", // 𤢨
+ 0x248a9: "^\x0e\U000248a9", // 𤢩
+ 0x248aa: "^\x0e\U000248aa", // 𤢪
+ 0x248ab: "^\x0e\U000248ab", // 𤢫
+ 0x248ac: "^\x0e\U000248ac", // 𤢬
+ 0x248ad: "^\x0e\U000248ad", // 𤢭
+ 0x248ae: "^\x0e\U000248ae", // 𤢮
+ 0x248af: "^\x0e\U000248af", // 𤢯
+ 0x248b0: "^\x0e\U000248b0", // 𤢰
+ 0x248b1: "^\x0e\U000248b1", // 𤢱
+ 0x248b2: "^\x0e\U000248b2", // 𤢲
+ 0x248b3: "^\x0e\U000248b3", // 𤢳
+ 0x248b4: "^\x0f\U000248b4", // 𤢴
+ 0x248b5: "^\x0f\U000248b5", // 𤢵
+ 0x248b6: "^\x0f\U000248b6", // 𤢶
+ 0x248b7: "^\x0f\U000248b7", // 𤢷
+ 0x248b8: "^\x0f\U000248b8", // 𤢸
+ 0x248b9: "^\x0f\U000248b9", // 𤢹
+ 0x248ba: "^\x0f\U000248ba", // 𤢺
+ 0x248bb: "^\x0f\U000248bb", // 𤢻
+ 0x248bc: "^\x0f\U000248bc", // 𤢼
+ 0x248bd: "^\x0f\U000248bd", // 𤢽
+ 0x248be: "^\x0f\U000248be", // 𤢾
+ 0x248bf: "^\x0f\U000248bf", // 𤢿
+ 0x248c0: "^\x0f\U000248c0", // 𤣀
+ 0x248c1: "^\x0f\U000248c1", // 𤣁
+ 0x248c2: "^\x0f\U000248c2", // 𤣂
+ 0x248c3: "^\x0f\U000248c3", // 𤣃
+ 0x248c4: "^\x0f\U000248c4", // 𤣄
+ 0x248c5: "^\x10\U000248c5", // 𤣅
+ 0x248c6: "^\x10\U000248c6", // 𤣆
+ 0x248c7: "^\x10\U000248c7", // 𤣇
+ 0x248c8: "^\x10\U000248c8", // 𤣈
+ 0x248c9: "^\x10\U000248c9", // 𤣉
+ 0x248ca: "^\x10\U000248ca", // 𤣊
+ 0x248cb: "^\x10\U000248cb", // 𤣋
+ 0x248cc: "^\x10\U000248cc", // 𤣌
+ 0x248cd: "^\x11\U000248cd", // 𤣍
+ 0x248ce: "^\x11\U000248ce", // 𤣎
+ 0x248cf: "^\x11\U000248cf", // 𤣏
+ 0x248d0: "^\x11\U000248d0", // 𤣐
+ 0x248d1: "^\x12\U000248d1", // 𤣑
+ 0x248d2: "^\x12\U000248d2", // 𤣒
+ 0x248d3: "^\x12\U000248d3", // 𤣓
+ 0x248d4: "^\x12\U000248d4", // 𤣔
+ 0x248d5: "^\x12\U000248d5", // 𤣕
+ 0x248d6: "^\x12\U000248d6", // 𤣖
+ 0x248d7: "^\x13\U000248d7", // 𤣗
+ 0x248d8: "^\x13\U000248d8", // 𤣘
+ 0x248d9: "^\x13\U000248d9", // 𤣙
+ 0x248da: "^\x13\U000248da", // 𤣚
+ 0x248db: "^\x14\U000248db", // 𤣛
+ 0x248dc: "^\x14\U000248dc", // 𤣜
+ 0x248dd: "^\x14\U000248dd", // 𤣝
+ 0x248de: "^\x14\U000248de", // 𤣞
+ 0x248df: "^\x15\U000248df", // 𤣟
+ 0x248e0: "^\x15\U000248e0", // 𤣠
+ 0x248e1: "^\x15\U000248e1", // 𤣡
+ 0x248e2: "^\x15\U000248e2", // 𤣢
+ 0x248e3: "^\x16\U000248e3", // 𤣣
+ 0x248e4: "^\x18\U000248e4", // 𤣤
+ 0x248e5: "_\x00\U000248e5", // 𤣥
+ 0x248e6: "_\x04\U000248e6", // 𤣦
+ 0x248e7: "_\a\U000248e7", // 𤣧
+ 0x248e8: "_\t\U000248e8", // 𤣨
+ 0x248e9: "`\x00\U000248e9", // 𤣩
+ 0x248ea: "`\x02\U000248ea", // 𤣪
+ 0x248eb: "`\x02\U000248eb", // 𤣫
+ 0x248ec: "`\x02\U000248ec", // 𤣬
+ 0x248ed: "`\x03\U000248ed", // 𤣭
+ 0x248ee: "`\x03\U000248ee", // 𤣮
+ 0x248ef: "`\x03\U000248ef", // 𤣯
+ 0x248f0: "`\x03\U000248f0", // 𤣰
+ 0x248f1: "`\x03\U000248f1", // 𤣱
+ 0x248f2: "`\x03\U000248f2", // 𤣲
+ 0x248f3: "`\x03\U000248f3", // 𤣳
+ 0x248f4: "`\x03\U000248f4", // 𤣴
+ 0x248f5: "`\x03\U000248f5", // 𤣵
+ 0x248f6: "`\x03\U000248f6", // 𤣶
+ 0x248f7: "`\x03\U000248f7", // 𤣷
+ 0x248f8: "`\x03\U000248f8", // 𤣸
+ 0x248f9: "`\x04\U000248f9", // 𤣹
+ 0x248fa: "`\x04\U000248fa", // 𤣺
+ 0x248fb: "`\x04\U000248fb", // 𤣻
+ 0x248fc: "`\x04\U000248fc", // 𤣼
+ 0x248fd: "`\x04\U000248fd", // 𤣽
+ 0x248fe: "`\x04\U000248fe", // 𤣾
+ 0x248ff: "`\x04\U000248ff", // 𤣿
+ 0x24900: "`\x04\U00024900", // 𤤀
+ 0x24901: "`\x04\U00024901", // 𤤁
+ 0x24902: "`\x04\U00024902", // 𤤂
+ 0x24903: "`\x04\U00024903", // 𤤃
+ 0x24904: "`\x04\U00024904", // 𤤄
+ 0x24905: "`\x04\U00024905", // 𤤅
+ 0x24906: "`\x04\U00024906", // 𤤆
+ 0x24907: "`\x04\U00024907", // 𤤇
+ 0x24908: "`\x04\U00024908", // 𤤈
+ 0x24909: "`\x04\U00024909", // 𤤉
+ 0x2490a: "`\x04\U0002490a", // 𤤊
+ 0x2490b: "`\x04\U0002490b", // 𤤋
+ 0x2490c: "`\x04\U0002490c", // 𤤌
+ 0x2490d: "`\x04\U0002490d", // 𤤍
+ 0x2490e: "`\x04\U0002490e", // 𤤎
+ 0x2490f: "`\x05\U0002490f", // 𤤏
+ 0x24910: "`\x05\U00024910", // 𤤐
+ 0x24911: "`\x05\U00024911", // 𤤑
+ 0x24912: "`\x05\U00024912", // 𤤒
+ 0x24913: "`\x05\U00024913", // 𤤓
+ 0x24914: "`\x05\U00024914", // 𤤔
+ 0x24915: "`\x05\U00024915", // 𤤕
+ 0x24916: "`\x05\U00024916", // 𤤖
+ 0x24917: "`\x05\U00024917", // 𤤗
+ 0x24918: "`\x05\U00024918", // 𤤘
+ 0x24919: "`\x05\U00024919", // 𤤙
+ 0x2491a: "`\x05\U0002491a", // 𤤚
+ 0x2491b: "`\x05\U0002491b", // 𤤛
+ 0x2491c: "`\x05\U0002491c", // 𤤜
+ 0x2491d: "`\x05\U0002491d", // 𤤝
+ 0x2491e: "`\x05\U0002491e", // 𤤞
+ 0x2491f: "`\x05\U0002491f", // 𤤟
+ 0x24920: "`\x05\U00024920", // 𤤠
+ 0x24921: "`\x05\U00024921", // 𤤡
+ 0x24922: "`\x05\U00024922", // 𤤢
+ 0x24923: "`\x05\U00024923", // 𤤣
+ 0x24924: "`\x05\U00024924", // 𤤤
+ 0x24925: "`\x05\U00024925", // 𤤥
+ 0x24926: "`\x05\U00024926", // 𤤦
+ 0x24927: "`\x05\U00024927", // 𤤧
+ 0x24928: "`\x05\U00024928", // 𤤨
+ 0x24929: "`\x05\U00024929", // 𤤩
+ 0x2492a: "`\x05\U0002492a", // 𤤪
+ 0x2492b: "`\x05\U0002492b", // 𤤫
+ 0x2492c: "`\x05\U0002492c", // 𤤬
+ 0x2492d: "`\x05\U0002492d", // 𤤭
+ 0x2492e: "`\x05\U0002492e", // 𤤮
+ 0x2492f: "`\x05\U0002492f", // 𤤯
+ 0x24930: "`\x05\U00024930", // 𤤰
+ 0x24931: "`\x05\U00024931", // 𤤱
+ 0x24932: "`\x05\U00024932", // 𤤲
+ 0x24933: "`\x05\U00024933", // 𤤳
+ 0x24934: "`\x05\U00024934", // 𤤴
+ 0x24935: "`\x06\U00024935", // 𤤵
+ 0x24936: "`\x06\U00024936", // 𤤶
+ 0x24937: "`\x06\U00024937", // 𤤷
+ 0x24938: "`\x06\U00024938", // 𤤸
+ 0x24939: "`\x06\U00024939", // 𤤹
+ 0x2493a: "`\x06\U0002493a", // 𤤺
+ 0x2493b: "`\x06\U0002493b", // 𤤻
+ 0x2493c: "`\x06\U0002493c", // 𤤼
+ 0x2493d: "`\x06\U0002493d", // 𤤽
+ 0x2493e: "`\x06\U0002493e", // 𤤾
+ 0x2493f: "`\x06\U0002493f", // 𤤿
+ 0x24940: "`\x06\U00024940", // 𤥀
+ 0x24941: "`\x06\U00024941", // 𤥁
+ 0x24942: "`\x06\U00024942", // 𤥂
+ 0x24943: "`\x06\U00024943", // 𤥃
+ 0x24944: "`\x06\U00024944", // 𤥄
+ 0x24945: "`\x06\U00024945", // 𤥅
+ 0x24946: "`\x06\U00024946", // 𤥆
+ 0x24947: "`\x06\U00024947", // 𤥇
+ 0x24948: "`\x06\U00024948", // 𤥈
+ 0x24949: "`\x06\U00024949", // 𤥉
+ 0x2494a: "`\x06\U0002494a", // 𤥊
+ 0x2494b: "`\x06\U0002494b", // 𤥋
+ 0x2494c: "`\x06\U0002494c", // 𤥌
+ 0x2494d: "`\x06\U0002494d", // 𤥍
+ 0x2494e: "`\x06\U0002494e", // 𤥎
+ 0x2494f: "`\x06\U0002494f", // 𤥏
+ 0x24950: "`\x06\U00024950", // 𤥐
+ 0x24951: "`\x06\U00024951", // 𤥑
+ 0x24952: "`\x06\U00024952", // 𤥒
+ 0x24953: "`\x06\U00024953", // 𤥓
+ 0x24954: "`\x06\U00024954", // 𤥔
+ 0x24955: "`\x06\U00024955", // 𤥕
+ 0x24956: "`\a\U00024956", // 𤥖
+ 0x24957: "`\a\U00024957", // 𤥗
+ 0x24958: "`\a\U00024958", // 𤥘
+ 0x24959: "`\a\U00024959", // 𤥙
+ 0x2495a: "`\a\U0002495a", // 𤥚
+ 0x2495b: "`\a\U0002495b", // 𤥛
+ 0x2495c: "`\a\U0002495c", // 𤥜
+ 0x2495d: "`\a\U0002495d", // 𤥝
+ 0x2495e: "`\a\U0002495e", // 𤥞
+ 0x2495f: "`\a\U0002495f", // 𤥟
+ 0x24960: "`\a\U00024960", // 𤥠
+ 0x24961: "`\a\U00024961", // 𤥡
+ 0x24962: "`\a\U00024962", // 𤥢
+ 0x24963: "`\a\U00024963", // 𤥣
+ 0x24964: "`\a\U00024964", // 𤥤
+ 0x24965: "`\a\U00024965", // 𤥥
+ 0x24966: "`\a\U00024966", // 𤥦
+ 0x24967: "`\a\U00024967", // 𤥧
+ 0x24968: "`\a\U00024968", // 𤥨
+ 0x24969: "`\a\U00024969", // 𤥩
+ 0x2496a: "`\a\U0002496a", // 𤥪
+ 0x2496b: "`\a\U0002496b", // 𤥫
+ 0x2496c: "`\a\U0002496c", // 𤥬
+ 0x2496d: "`\a\U0002496d", // 𤥭
+ 0x2496e: "`\a\U0002496e", // 𤥮
+ 0x2496f: "`\a\U0002496f", // 𤥯
+ 0x24970: "`\a\U00024970", // 𤥰
+ 0x24971: "`\a\U00024971", // 𤥱
+ 0x24972: "`\a\U00024972", // 𤥲
+ 0x24973: "`\a\U00024973", // 𤥳
+ 0x24974: "`\a\U00024974", // 𤥴
+ 0x24975: "`\a\U00024975", // 𤥵
+ 0x24976: "`\a\U00024976", // 𤥶
+ 0x24977: "`\a\U00024977", // 𤥷
+ 0x24978: "`\a\U00024978", // 𤥸
+ 0x24979: "`\a\U00024979", // 𤥹
+ 0x2497a: "`\a\U0002497a", // 𤥺
+ 0x2497b: "`\b\U0002497b", // 𤥻
+ 0x2497c: "`\b\U0002497c", // 𤥼
+ 0x2497d: "`\b\U0002497d", // 𤥽
+ 0x2497e: "`\b\U0002497e", // 𤥾
+ 0x2497f: "`\b\U0002497f", // 𤥿
+ 0x24980: "`\b\U00024980", // 𤦀
+ 0x24981: "`\b\U00024981", // 𤦁
+ 0x24982: "`\b\U00024982", // 𤦂
+ 0x24983: "`\b\U00024983", // 𤦃
+ 0x24984: "`\b\U00024984", // 𤦄
+ 0x24985: "`\b\U00024985", // 𤦅
+ 0x24986: "`\b\U00024986", // 𤦆
+ 0x24987: "`\b\U00024987", // 𤦇
+ 0x24988: "`\b\U00024988", // 𤦈
+ 0x24989: "`\b\U00024989", // 𤦉
+ 0x2498a: "`\b\U0002498a", // 𤦊
+ 0x2498b: "`\b\U0002498b", // 𤦋
+ 0x2498c: "`\b\U0002498c", // 𤦌
+ 0x2498d: "`\b\U0002498d", // 𤦍
+ 0x2498e: "`\b\U0002498e", // 𤦎
+ 0x2498f: "`\b\U0002498f", // 𤦏
+ 0x24990: "`\b\U00024990", // 𤦐
+ 0x24991: "`\b\U00024991", // 𤦑
+ 0x24992: "`\b\U00024992", // 𤦒
+ 0x24993: "`\b\U00024993", // 𤦓
+ 0x24994: "`\b\U00024994", // 𤦔
+ 0x24995: "`\b\U00024995", // 𤦕
+ 0x24996: "`\b\U00024996", // 𤦖
+ 0x24997: "`\b\U00024997", // 𤦗
+ 0x24998: "`\b\U00024998", // 𤦘
+ 0x24999: "`\b\U00024999", // 𤦙
+ 0x2499a: "`\b\U0002499a", // 𤦚
+ 0x2499b: "`\b\U0002499b", // 𤦛
+ 0x2499c: "`\b\U0002499c", // 𤦜
+ 0x2499d: "`\b\U0002499d", // 𤦝
+ 0x2499e: "`\b\U0002499e", // 𤦞
+ 0x2499f: "`\b\U0002499f", // 𤦟
+ 0x249a0: "`\b\U000249a0", // 𤦠
+ 0x249a1: "`\b\U000249a1", // 𤦡
+ 0x249a2: "`\b\U000249a2", // 𤦢
+ 0x249a3: "`\b\U000249a3", // 𤦣
+ 0x249a4: "`\b\U000249a4", // 𤦤
+ 0x249a5: "`\b\U000249a5", // 𤦥
+ 0x249a6: "`\b\U000249a6", // 𤦦
+ 0x249a7: "`\b\U000249a7", // 𤦧
+ 0x249a8: "`\b\U000249a8", // 𤦨
+ 0x249a9: "`\b\U000249a9", // 𤦩
+ 0x249aa: "`\b\U000249aa", // 𤦪
+ 0x249ab: "`\b\U000249ab", // 𤦫
+ 0x249ac: "`\b\U000249ac", // 𤦬
+ 0x249ad: "`\b\U000249ad", // 𤦭
+ 0x249ae: "`\b\U000249ae", // 𤦮
+ 0x249af: "`\t\U000249af", // 𤦯
+ 0x249b0: "`\t\U000249b0", // 𤦰
+ 0x249b1: "`\t\U000249b1", // 𤦱
+ 0x249b2: "`\t\U000249b2", // 𤦲
+ 0x249b3: "`\t\U000249b3", // 𤦳
+ 0x249b4: "`\t\U000249b4", // 𤦴
+ 0x249b5: "`\t\U000249b5", // 𤦵
+ 0x249b6: "`\t\U000249b6", // 𤦶
+ 0x249b7: "`\t\U000249b7", // 𤦷
+ 0x249b8: "`\t\U000249b8", // 𤦸
+ 0x249b9: "`\t\U000249b9", // 𤦹
+ 0x249ba: "`\t\U000249ba", // 𤦺
+ 0x249bb: "`\t\U000249bb", // 𤦻
+ 0x249bc: "`\t\U000249bc", // 𤦼
+ 0x249bd: "`\t\U000249bd", // 𤦽
+ 0x249be: "`\t\U000249be", // 𤦾
+ 0x249bf: "`\t\U000249bf", // 𤦿
+ 0x249c0: "`\t\U000249c0", // 𤧀
+ 0x249c1: "`\t\U000249c1", // 𤧁
+ 0x249c2: "`\t\U000249c2", // 𤧂
+ 0x249c3: "`\t\U000249c3", // 𤧃
+ 0x249c4: "`\t\U000249c4", // 𤧄
+ 0x249c5: "`\t\U000249c5", // 𤧅
+ 0x249c6: "`\t\U000249c6", // 𤧆
+ 0x249c7: "`\t\U000249c7", // 𤧇
+ 0x249c8: "`\t\U000249c8", // 𤧈
+ 0x249c9: "`\t\U000249c9", // 𤧉
+ 0x249ca: "`\t\U000249ca", // 𤧊
+ 0x249cb: "`\t\U000249cb", // 𤧋
+ 0x249cc: "`\t\U000249cc", // 𤧌
+ 0x249cd: "`\t\U000249cd", // 𤧍
+ 0x249ce: "`\t\U000249ce", // 𤧎
+ 0x249cf: "`\t\U000249cf", // 𤧏
+ 0x249d0: "`\t\U000249d0", // 𤧐
+ 0x249d1: "`\t\U000249d1", // 𤧑
+ 0x249d2: "`\t\U000249d2", // 𤧒
+ 0x249d3: "`\t\U000249d3", // 𤧓
+ 0x249d4: "`\t\U000249d4", // 𤧔
+ 0x249d5: "`\t\U000249d5", // 𤧕
+ 0x249d6: "`\t\U000249d6", // 𤧖
+ 0x249d7: "`\t\U000249d7", // 𤧗
+ 0x249d8: "`\t\U000249d8", // 𤧘
+ 0x249d9: "`\t\U000249d9", // 𤧙
+ 0x249da: "`\t\U000249da", // 𤧚
+ 0x249db: "`\t\U000249db", // 𤧛
+ 0x249dc: "`\t\U000249dc", // 𤧜
+ 0x249dd: "`\t\U000249dd", // 𤧝
+ 0x249de: "`\t\U000249de", // 𤧞
+ 0x249df: "`\t\U000249df", // 𤧟
+ 0x249e0: "`\t\U000249e0", // 𤧠
+ 0x249e1: "`\t\U000249e1", // 𤧡
+ 0x249e2: "`\t\U000249e2", // 𤧢
+ 0x249e3: "`\t\U000249e3", // 𤧣
+ 0x249e4: "`\t\U000249e4", // 𤧤
+ 0x249e5: "`\t\U000249e5", // 𤧥
+ 0x249e6: "`\t\U000249e6", // 𤧦
+ 0x249e7: "`\t\U000249e7", // 𤧧
+ 0x249e8: "`\t\U000249e8", // 𤧨
+ 0x249e9: "`\t\U000249e9", // 𤧩
+ 0x249ea: "`\n\U000249ea", // 𤧪
+ 0x249eb: "`\n\U000249eb", // 𤧫
+ 0x249ec: "`\n\U000249ec", // 𤧬
+ 0x249ed: "`\n\U000249ed", // 𤧭
+ 0x249ee: "`\n\U000249ee", // 𤧮
+ 0x249ef: "`\n\U000249ef", // 𤧯
+ 0x249f0: "`\n\U000249f0", // 𤧰
+ 0x249f1: "`\n\U000249f1", // 𤧱
+ 0x249f2: "`\n\U000249f2", // 𤧲
+ 0x249f3: "`\n\U000249f3", // 𤧳
+ 0x249f4: "`\n\U000249f4", // 𤧴
+ 0x249f5: "`\n\U000249f5", // 𤧵
+ 0x249f6: "`\n\U000249f6", // 𤧶
+ 0x249f7: "`\n\U000249f7", // 𤧷
+ 0x249f8: "`\n\U000249f8", // 𤧸
+ 0x249f9: "`\n\U000249f9", // 𤧹
+ 0x249fa: "`\n\U000249fa", // 𤧺
+ 0x249fb: "`\n\U000249fb", // 𤧻
+ 0x249fc: "`\n\U000249fc", // 𤧼
+ 0x249fd: "`\n\U000249fd", // 𤧽
+ 0x249fe: "`\n\U000249fe", // 𤧾
+ 0x249ff: "`\n\U000249ff", // 𤧿
+ 0x24a00: "`\n\U00024a00", // 𤨀
+ 0x24a01: "`\n\U00024a01", // 𤨁
+ 0x24a02: "`\n\U00024a02", // 𤨂
+ 0x24a03: "`\n\U00024a03", // 𤨃
+ 0x24a04: "`\n\U00024a04", // 𤨄
+ 0x24a05: "`\n\U00024a05", // 𤨅
+ 0x24a06: "`\n\U00024a06", // 𤨆
+ 0x24a07: "`\n\U00024a07", // 𤨇
+ 0x24a08: "`\n\U00024a08", // 𤨈
+ 0x24a09: "`\n\U00024a09", // 𤨉
+ 0x24a0a: "`\n\U00024a0a", // 𤨊
+ 0x24a0b: "`\n\U00024a0b", // 𤨋
+ 0x24a0c: "`\n\U00024a0c", // 𤨌
+ 0x24a0d: "`\n\U00024a0d", // 𤨍
+ 0x24a0e: "`\n\U00024a0e", // 𤨎
+ 0x24a0f: "`\n\U00024a0f", // 𤨏
+ 0x24a10: "`\n\U00024a10", // 𤨐
+ 0x24a11: "`\n\U00024a11", // 𤨑
+ 0x24a12: "`\n\U00024a12", // 𤨒
+ 0x24a13: "`\n\U00024a13", // 𤨓
+ 0x24a14: "`\v\U00024a14", // 𤨔
+ 0x24a15: "`\v\U00024a15", // 𤨕
+ 0x24a16: "`\v\U00024a16", // 𤨖
+ 0x24a17: "`\v\U00024a17", // 𤨗
+ 0x24a18: "`\v\U00024a18", // 𤨘
+ 0x24a19: "`\v\U00024a19", // 𤨙
+ 0x24a1a: "`\v\U00024a1a", // 𤨚
+ 0x24a1b: "`\v\U00024a1b", // 𤨛
+ 0x24a1c: "`\v\U00024a1c", // 𤨜
+ 0x24a1d: "`\v\U00024a1d", // 𤨝
+ 0x24a1e: "`\v\U00024a1e", // 𤨞
+ 0x24a1f: "`\v\U00024a1f", // 𤨟
+ 0x24a20: "`\v\U00024a20", // 𤨠
+ 0x24a21: "`\v\U00024a21", // 𤨡
+ 0x24a22: "`\v\U00024a22", // 𤨢
+ 0x24a23: "`\v\U00024a23", // 𤨣
+ 0x24a24: "`\v\U00024a24", // 𤨤
+ 0x24a25: "`\v\U00024a25", // 𤨥
+ 0x24a26: "`\v\U00024a26", // 𤨦
+ 0x24a27: "`\v\U00024a27", // 𤨧
+ 0x24a28: "`\v\U00024a28", // 𤨨
+ 0x24a29: "`\v\U00024a29", // 𤨩
+ 0x24a2a: "`\v\U00024a2a", // 𤨪
+ 0x24a2b: "`\v\U00024a2b", // 𤨫
+ 0x24a2c: "`\v\U00024a2c", // 𤨬
+ 0x24a2d: "`\v\U00024a2d", // 𤨭
+ 0x24a2e: "`\v\U00024a2e", // 𤨮
+ 0x24a2f: "`\v\U00024a2f", // 𤨯
+ 0x24a30: "`\v\U00024a30", // 𤨰
+ 0x24a31: "`\v\U00024a31", // 𤨱
+ 0x24a32: "`\v\U00024a32", // 𤨲
+ 0x24a33: "`\v\U00024a33", // 𤨳
+ 0x24a34: "`\v\U00024a34", // 𤨴
+ 0x24a35: "`\v\U00024a35", // 𤨵
+ 0x24a36: "`\v\U00024a36", // 𤨶
+ 0x24a37: "`\v\U00024a37", // 𤨷
+ 0x24a38: "`\v\U00024a38", // 𤨸
+ 0x24a39: "`\v\U00024a39", // 𤨹
+ 0x24a3a: "`\v\U00024a3a", // 𤨺
+ 0x24a3b: "`\v\U00024a3b", // 𤨻
+ 0x24a3c: "`\v\U00024a3c", // 𤨼
+ 0x24a3d: "`\v\U00024a3d", // 𤨽
+ 0x24a3e: "`\v\U00024a3e", // 𤨾
+ 0x24a3f: "`\v\U00024a3f", // 𤨿
+ 0x24a40: "`\f\U00024a40", // 𤩀
+ 0x24a41: "`\v\U00024a41", // 𤩁
+ 0x24a42: "`\f\U00024a42", // 𤩂
+ 0x24a43: "`\f\U00024a43", // 𤩃
+ 0x24a44: "`\f\U00024a44", // 𤩄
+ 0x24a45: "`\f\U00024a45", // 𤩅
+ 0x24a46: "`\f\U00024a46", // 𤩆
+ 0x24a47: "`\f\U00024a47", // 𤩇
+ 0x24a48: "`\f\U00024a48", // 𤩈
+ 0x24a49: "`\f\U00024a49", // 𤩉
+ 0x24a4a: "`\f\U00024a4a", // 𤩊
+ 0x24a4b: "`\f\U00024a4b", // 𤩋
+ 0x24a4c: "`\f\U00024a4c", // 𤩌
+ 0x24a4d: "`\f\U00024a4d", // 𤩍
+ 0x24a4e: "`\f\U00024a4e", // 𤩎
+ 0x24a4f: "`\f\U00024a4f", // 𤩏
+ 0x24a50: "`\f\U00024a50", // 𤩐
+ 0x24a51: "`\f\U00024a51", // 𤩑
+ 0x24a52: "`\f\U00024a52", // 𤩒
+ 0x24a53: "`\f\U00024a53", // 𤩓
+ 0x24a54: "`\f\U00024a54", // 𤩔
+ 0x24a55: "`\f\U00024a55", // 𤩕
+ 0x24a56: "`\f\U00024a56", // 𤩖
+ 0x24a57: "`\f\U00024a57", // 𤩗
+ 0x24a58: "`\f\U00024a58", // 𤩘
+ 0x24a59: "`\f\U00024a59", // 𤩙
+ 0x24a5a: "`\f\U00024a5a", // 𤩚
+ 0x24a5b: "`\f\U00024a5b", // 𤩛
+ 0x24a5c: "`\f\U00024a5c", // 𤩜
+ 0x24a5d: "`\f\U00024a5d", // 𤩝
+ 0x24a5e: "`\f\U00024a5e", // 𤩞
+ 0x24a5f: "`\f\U00024a5f", // 𤩟
+ 0x24a60: "`\f\U00024a60", // 𤩠
+ 0x24a61: "`\f\U00024a61", // 𤩡
+ 0x24a62: "`\f\U00024a62", // 𤩢
+ 0x24a63: "`\f\U00024a63", // 𤩣
+ 0x24a64: "`\f\U00024a64", // 𤩤
+ 0x24a65: "`\f\U00024a65", // 𤩥
+ 0x24a66: "`\f\U00024a66", // 𤩦
+ 0x24a67: "`\f\U00024a67", // 𤩧
+ 0x24a68: "`\f\U00024a68", // 𤩨
+ 0x24a69: "`\f\U00024a69", // 𤩩
+ 0x24a6a: "`\f\U00024a6a", // 𤩪
+ 0x24a6b: "`\r\U00024a6b", // 𤩫
+ 0x24a6c: "`\r\U00024a6c", // 𤩬
+ 0x24a6d: "`\r\U00024a6d", // 𤩭
+ 0x24a6e: "`\r\U00024a6e", // 𤩮
+ 0x24a6f: "`\r\U00024a6f", // 𤩯
+ 0x24a70: "`\r\U00024a70", // 𤩰
+ 0x24a71: "`\r\U00024a71", // 𤩱
+ 0x24a72: "`\r\U00024a72", // 𤩲
+ 0x24a73: "`\r\U00024a73", // 𤩳
+ 0x24a74: "`\r\U00024a74", // 𤩴
+ 0x24a75: "`\r\U00024a75", // 𤩵
+ 0x24a76: "`\r\U00024a76", // 𤩶
+ 0x24a77: "`\r\U00024a77", // 𤩷
+ 0x24a78: "`\r\U00024a78", // 𤩸
+ 0x24a79: "`\r\U00024a79", // 𤩹
+ 0x24a7a: "`\r\U00024a7a", // 𤩺
+ 0x24a7b: "`\r\U00024a7b", // 𤩻
+ 0x24a7c: "`\r\U00024a7c", // 𤩼
+ 0x24a7d: "`\r\U00024a7d", // 𤩽
+ 0x24a7e: "`\r\U00024a7e", // 𤩾
+ 0x24a7f: "`\r\U00024a7f", // 𤩿
+ 0x24a80: "`\r\U00024a80", // 𤪀
+ 0x24a81: "`\r\U00024a81", // 𤪁
+ 0x24a82: "`\r\U00024a82", // 𤪂
+ 0x24a83: "`\r\U00024a83", // 𤪃
+ 0x24a84: "`\r\U00024a84", // 𤪄
+ 0x24a85: "`\r\U00024a85", // 𤪅
+ 0x24a86: "`\r\U00024a86", // 𤪆
+ 0x24a87: "`\r\U00024a87", // 𤪇
+ 0x24a88: "`\r\U00024a88", // 𤪈
+ 0x24a89: "`\r\U00024a89", // 𤪉
+ 0x24a8a: "`\r\U00024a8a", // 𤪊
+ 0x24a8b: "`\x0e\U00024a8b", // 𤪋
+ 0x24a8c: "`\x0e\U00024a8c", // 𤪌
+ 0x24a8d: "`\x0e\U00024a8d", // 𤪍
+ 0x24a8e: "`\x0e\U00024a8e", // 𤪎
+ 0x24a8f: "`\x0e\U00024a8f", // 𤪏
+ 0x24a90: "`\x0e\U00024a90", // 𤪐
+ 0x24a91: "`\x0e\U00024a91", // 𤪑
+ 0x24a92: "`\x0e\U00024a92", // 𤪒
+ 0x24a93: "`\x0e\U00024a93", // 𤪓
+ 0x24a94: "`\x0e\U00024a94", // 𤪔
+ 0x24a95: "`\x0e\U00024a95", // 𤪕
+ 0x24a96: "`\x0e\U00024a96", // 𤪖
+ 0x24a97: "`\x0e\U00024a97", // 𤪗
+ 0x24a98: "`\x0e\U00024a98", // 𤪘
+ 0x24a99: "`\x0e\U00024a99", // 𤪙
+ 0x24a9a: "`\x0e\U00024a9a", // 𤪚
+ 0x24a9b: "`\x0e\U00024a9b", // 𤪛
+ 0x24a9c: "`\x0e\U00024a9c", // 𤪜
+ 0x24a9d: "`\x0e\U00024a9d", // 𤪝
+ 0x24a9e: "`\x0e\U00024a9e", // 𤪞
+ 0x24a9f: "`\x0e\U00024a9f", // 𤪟
+ 0x24aa0: "`\x0e\U00024aa0", // 𤪠
+ 0x24aa1: "`\x0e\U00024aa1", // 𤪡
+ 0x24aa2: "`\x0e\U00024aa2", // 𤪢
+ 0x24aa3: "`\x0e\U00024aa3", // 𤪣
+ 0x24aa4: "`\x0e\U00024aa4", // 𤪤
+ 0x24aa5: "`\x0e\U00024aa5", // 𤪥
+ 0x24aa6: "`\x0e\U00024aa6", // 𤪦
+ 0x24aa7: "`\x0e\U00024aa7", // 𤪧
+ 0x24aa8: "`\x0e\U00024aa8", // 𤪨
+ 0x24aa9: "`\x0f\U00024aa9", // 𤪩
+ 0x24aaa: "`\x0f\U00024aaa", // 𤪪
+ 0x24aab: "`\x0f\U00024aab", // 𤪫
+ 0x24aac: "`\x0f\U00024aac", // 𤪬
+ 0x24aad: "`\x0f\U00024aad", // 𤪭
+ 0x24aae: "`\x0f\U00024aae", // 𤪮
+ 0x24aaf: "`\x0f\U00024aaf", // 𤪯
+ 0x24ab0: "`\x0f\U00024ab0", // 𤪰
+ 0x24ab1: "`\x0f\U00024ab1", // 𤪱
+ 0x24ab2: "`\x0f\U00024ab2", // 𤪲
+ 0x24ab3: "`\x0f\U00024ab3", // 𤪳
+ 0x24ab4: "`\x0e\U00024ab4", // 𤪴
+ 0x24ab5: "`\x0f\U00024ab5", // 𤪵
+ 0x24ab6: "`\x0f\U00024ab6", // 𤪶
+ 0x24ab7: "`\x0f\U00024ab7", // 𤪷
+ 0x24ab8: "`\x0f\U00024ab8", // 𤪸
+ 0x24ab9: "`\x0f\U00024ab9", // 𤪹
+ 0x24aba: "`\x0f\U00024aba", // 𤪺
+ 0x24abb: "`\x0f\U00024abb", // 𤪻
+ 0x24abc: "`\x0f\U00024abc", // 𤪼
+ 0x24abd: "`\x0f\U00024abd", // 𤪽
+ 0x24abe: "`\x10\U00024abe", // 𤪾
+ 0x24abf: "`\x10\U00024abf", // 𤪿
+ 0x24ac0: "`\x10\U00024ac0", // 𤫀
+ 0x24ac1: "`\x10\U00024ac1", // 𤫁
+ 0x24ac2: "`\x10\U00024ac2", // 𤫂
+ 0x24ac3: "`\x10\U00024ac3", // 𤫃
+ 0x24ac4: "`\x10\U00024ac4", // 𤫄
+ 0x24ac5: "`\x10\U00024ac5", // 𤫅
+ 0x24ac6: "`\x10\U00024ac6", // 𤫆
+ 0x24ac7: "`\x10\U00024ac7", // 𤫇
+ 0x24ac8: "`\x10\U00024ac8", // 𤫈
+ 0x24ac9: "`\x11\U00024ac9", // 𤫉
+ 0x24aca: "`\x11\U00024aca", // 𤫊
+ 0x24acb: "`\x11\U00024acb", // 𤫋
+ 0x24acc: "`\x11\U00024acc", // 𤫌
+ 0x24acd: "`\x11\U00024acd", // 𤫍
+ 0x24ace: "`\x11\U00024ace", // 𤫎
+ 0x24acf: "`\x11\U00024acf", // 𤫏
+ 0x24ad0: "`\x11\U00024ad0", // 𤫐
+ 0x24ad1: "`\x11\U00024ad1", // 𤫑
+ 0x24ad2: "`\x11\U00024ad2", // 𤫒
+ 0x24ad3: "`\x11\U00024ad3", // 𤫓
+ 0x24ad4: "`\x12\U00024ad4", // 𤫔
+ 0x24ad5: "`\x12\U00024ad5", // 𤫕
+ 0x24ad6: "`\x12\U00024ad6", // 𤫖
+ 0x24ad7: "`\x12\U00024ad7", // 𤫗
+ 0x24ad8: "`\x12\U00024ad8", // 𤫘
+ 0x24ad9: "`\x13\U00024ad9", // 𤫙
+ 0x24ada: "`\x13\U00024ada", // 𤫚
+ 0x24adb: "`\x13\U00024adb", // 𤫛
+ 0x24adc: "`\x13\U00024adc", // 𤫜
+ 0x24add: "`\x13\U00024add", // 𤫝
+ 0x24ade: "`\x13\U00024ade", // 𤫞
+ 0x24adf: "`\x13\U00024adf", // 𤫟
+ 0x24ae0: "`\x14\U00024ae0", // 𤫠
+ 0x24ae1: "y\x12\U00024ae1", // 𤫡
+ 0x24ae2: "`\x16\U00024ae2", // 𤫢
+ 0x24ae3: "`\x15\U00024ae3", // 𤫣
+ 0x24ae4: "`\x15\U00024ae4", // 𤫤
+ 0x24ae5: "`\x15\U00024ae5", // 𤫥
+ 0x24ae6: "`\x15\U00024ae6", // 𤫦
+ 0x24ae7: "`\x15\U00024ae7", // 𤫧
+ 0x24ae8: "`\x16\U00024ae8", // 𤫨
+ 0x24ae9: "`\x18\U00024ae9", // 𤫩
+ 0x24aea: "a\x03\U00024aea", // 𤫪
+ 0x24aeb: "a\x04\U00024aeb", // 𤫫
+ 0x24aec: "a\x04\U00024aec", // 𤫬
+ 0x24aed: "a\x04\U00024aed", // 𤫭
+ 0x24aee: "a\x04\U00024aee", // 𤫮
+ 0x24aef: "a\x04\U00024aef", // 𤫯
+ 0x24af0: "a\x05\U00024af0", // 𤫰
+ 0x24af1: "a\x05\U00024af1", // 𤫱
+ 0x24af2: "a\x05\U00024af2", // 𤫲
+ 0x24af3: "a\x05\U00024af3", // 𤫳
+ 0x24af4: "a\x05\U00024af4", // 𤫴
+ 0x24af5: "a\x06\U00024af5", // 𤫵
+ 0x24af6: "a\x06\U00024af6", // 𤫶
+ 0x24af7: "a\x06\U00024af7", // 𤫷
+ 0x24af8: "a\x06\U00024af8", // 𤫸
+ 0x24af9: "a\x06\U00024af9", // 𤫹
+ 0x24afa: "a\a\U00024afa", // 𤫺
+ 0x24afb: "a\a\U00024afb", // 𤫻
+ 0x24afc: "a\a\U00024afc", // 𤫼
+ 0x24afd: "a\a\U00024afd", // 𤫽
+ 0x24afe: "a\a\U00024afe", // 𤫾
+ 0x24aff: "a\a\U00024aff", // 𤫿
+ 0x24b00: "a\a\U00024b00", // 𤬀
+ 0x24b01: "a\b\U00024b01", // 𤬁
+ 0x24b02: "a\b\U00024b02", // 𤬂
+ 0x24b03: "a\b\U00024b03", // 𤬃
+ 0x24b04: "a\b\U00024b04", // 𤬄
+ 0x24b05: "a\b\U00024b05", // 𤬅
+ 0x24b06: "a\b\U00024b06", // 𤬆
+ 0x24b07: "a\n\U00024b07", // 𤬇
+ 0x24b08: "a\t\U00024b08", // 𤬈
+ 0x24b09: "a\t\U00024b09", // 𤬉
+ 0x24b0a: "a\t\U00024b0a", // 𤬊
+ 0x24b0b: "a\t\U00024b0b", // 𤬋
+ 0x24b0c: "a\t\U00024b0c", // 𤬌
+ 0x24b0d: "a\n\U00024b0d", // 𤬍
+ 0x24b0e: "a\v\U00024b0e", // 𤬎
+ 0x24b0f: "a\v\U00024b0f", // 𤬏
+ 0x24b10: "a\n\U00024b10", // 𤬐
+ 0x24b11: "a\n\U00024b11", // 𤬑
+ 0x24b12: "a\n\U00024b12", // 𤬒
+ 0x24b13: "a\n\U00024b13", // 𤬓
+ 0x24b14: "a\n\U00024b14", // 𤬔
+ 0x24b15: "a\n\U00024b15", // 𤬕
+ 0x24b16: "a\v\U00024b16", // 𤬖
+ 0x24b17: "a\f\U00024b17", // 𤬗
+ 0x24b18: "a\r\U00024b18", // 𤬘
+ 0x24b19: "a\r\U00024b19", // 𤬙
+ 0x24b1a: "a\r\U00024b1a", // 𤬚
+ 0x24b1b: "a\x10\U00024b1b", // 𤬛
+ 0x24b1c: "a\x10\U00024b1c", // 𤬜
+ 0x24b1d: "a\x10\U00024b1d", // 𤬝
+ 0x24b1e: "a\x11\U00024b1e", // 𤬞
+ 0x24b1f: "a\x11\U00024b1f", // 𤬟
+ 0x24b20: "a\x12\U00024b20", // 𤬠
+ 0x24b21: "a\x12\U00024b21", // 𤬡
+ 0x24b22: "a\x13\U00024b22", // 𤬢
+ 0x24b23: "a\x15\U00024b23", // 𤬣
+ 0x24b24: "a\x15\U00024b24", // 𤬤
+ 0x24b25: "a\x19\U00024b25", // 𤬥
+ 0x24b26: "b\x02\U00024b26", // 𤬦
+ 0x24b27: "b\x02\U00024b27", // 𤬧
+ 0x24b28: "b\x03\U00024b28", // 𤬨
+ 0x24b29: "b\x03\U00024b29", // 𤬩
+ 0x24b2a: "b\x03\U00024b2a", // 𤬪
+ 0x24b2b: "b\x03\U00024b2b", // 𤬫
+ 0x24b2c: "b\x04\U00024b2c", // 𤬬
+ 0x24b2d: "b\x04\U00024b2d", // 𤬭
+ 0x24b2e: "b\x04\U00024b2e", // 𤬮
+ 0x24b2f: "b\x04\U00024b2f", // 𤬯
+ 0x24b30: "b\x04\U00024b30", // 𤬰
+ 0x24b31: "b\x04\U00024b31", // 𤬱
+ 0x24b32: "b\x04\U00024b32", // 𤬲
+ 0x24b33: "b\x05\U00024b33", // 𤬳
+ 0x24b34: "b\x05\U00024b34", // 𤬴
+ 0x24b35: "b\x05\U00024b35", // 𤬵
+ 0x24b36: "b\x05\U00024b36", // 𤬶
+ 0x24b37: "b\x05\U00024b37", // 𤬷
+ 0x24b38: "b\x05\U00024b38", // 𤬸
+ 0x24b39: "b\x05\U00024b39", // 𤬹
+ 0x24b3a: "b\x05\U00024b3a", // 𤬺
+ 0x24b3b: "b\x05\U00024b3b", // 𤬻
+ 0x24b3c: "b\x05\U00024b3c", // 𤬼
+ 0x24b3d: "b\x05\U00024b3d", // 𤬽
+ 0x24b3e: "b\x06\U00024b3e", // 𤬾
+ 0x24b3f: "b\x06\U00024b3f", // 𤬿
+ 0x24b40: "b\x06\U00024b40", // 𤭀
+ 0x24b41: "b\x06\U00024b41", // 𤭁
+ 0x24b42: "b\x06\U00024b42", // 𤭂
+ 0x24b43: "b\x06\U00024b43", // 𤭃
+ 0x24b44: "b\x06\U00024b44", // 𤭄
+ 0x24b45: "b\x06\U00024b45", // 𤭅
+ 0x24b46: "b\x06\U00024b46", // 𤭆
+ 0x24b47: "b\x06\U00024b47", // 𤭇
+ 0x24b48: "b\x06\U00024b48", // 𤭈
+ 0x24b49: "b\x06\U00024b49", // 𤭉
+ 0x24b4a: "b\x06\U00024b4a", // 𤭊
+ 0x24b4b: "b\x06\U00024b4b", // 𤭋
+ 0x24b4c: "b\a\U00024b4c", // 𤭌
+ 0x24b4d: "b\a\U00024b4d", // 𤭍
+ 0x24b4e: "b\a\U00024b4e", // 𤭎
+ 0x24b4f: "b\a\U00024b4f", // 𤭏
+ 0x24b50: "b\a\U00024b50", // 𤭐
+ 0x24b51: "b\a\U00024b51", // 𤭑
+ 0x24b52: "b\a\U00024b52", // 𤭒
+ 0x24b53: "b\a\U00024b53", // 𤭓
+ 0x24b54: "b\a\U00024b54", // 𤭔
+ 0x24b55: "b\a\U00024b55", // 𤭕
+ 0x24b56: "b\a\U00024b56", // 𤭖
+ 0x24b57: "b\a\U00024b57", // 𤭗
+ 0x24b58: "b\a\U00024b58", // 𤭘
+ 0x24b59: "b\a\U00024b59", // 𤭙
+ 0x24b5a: "b\a\U00024b5a", // 𤭚
+ 0x24b5b: "b\b\U00024b5b", // 𤭛
+ 0x24b5c: "b\b\U00024b5c", // 𤭜
+ 0x24b5d: "b\b\U00024b5d", // 𤭝
+ 0x24b5e: "b\b\U00024b5e", // 𤭞
+ 0x24b5f: "b\b\U00024b5f", // 𤭟
+ 0x24b60: "b\b\U00024b60", // 𤭠
+ 0x24b61: "b\b\U00024b61", // 𤭡
+ 0x24b62: "b\b\U00024b62", // 𤭢
+ 0x24b63: "b\b\U00024b63", // 𤭣
+ 0x24b64: "b\b\U00024b64", // 𤭤
+ 0x24b65: "b\b\U00024b65", // 𤭥
+ 0x24b66: "b\b\U00024b66", // 𤭦
+ 0x24b67: "b\t\U00024b67", // 𤭧
+ 0x24b68: "b\t\U00024b68", // 𤭨
+ 0x24b69: "b\t\U00024b69", // 𤭩
+ 0x24b6a: "b\t\U00024b6a", // 𤭪
+ 0x24b6b: "b\t\U00024b6b", // 𤭫
+ 0x24b6c: "b\t\U00024b6c", // 𤭬
+ 0x24b6d: "b\t\U00024b6d", // 𤭭
+ 0x24b6e: "b\t\U00024b6e", // 𤭮
+ 0x24b6f: "b\t\U00024b6f", // 𤭯
+ 0x24b70: "b\t\U00024b70", // 𤭰
+ 0x24b71: "b\t\U00024b71", // 𤭱
+ 0x24b72: "b\b\U00024b72", // 𤭲
+ 0x24b73: "b\t\U00024b73", // 𤭳
+ 0x24b74: "b\t\U00024b74", // 𤭴
+ 0x24b75: "b\t\U00024b75", // 𤭵
+ 0x24b76: "b\t\U00024b76", // 𤭶
+ 0x24b77: "b\t\U00024b77", // 𤭷
+ 0x24b78: "b\t\U00024b78", // 𤭸
+ 0x24b79: "b\n\U00024b79", // 𤭹
+ 0x24b7a: "b\n\U00024b7a", // 𤭺
+ 0x24b7b: "b\n\U00024b7b", // 𤭻
+ 0x24b7c: "b\n\U00024b7c", // 𤭼
+ 0x24b7d: "b\n\U00024b7d", // 𤭽
+ 0x24b7e: "b\n\U00024b7e", // 𤭾
+ 0x24b7f: "b\n\U00024b7f", // 𤭿
+ 0x24b80: "b\n\U00024b80", // 𤮀
+ 0x24b81: "b\n\U00024b81", // 𤮁
+ 0x24b82: "b\n\U00024b82", // 𤮂
+ 0x24b83: "b\n\U00024b83", // 𤮃
+ 0x24b84: "b\n\U00024b84", // 𤮄
+ 0x24b85: "b\v\U00024b85", // 𤮅
+ 0x24b86: "b\v\U00024b86", // 𤮆
+ 0x24b87: "b\v\U00024b87", // 𤮇
+ 0x24b88: "b\v\U00024b88", // 𤮈
+ 0x24b89: "b\v\U00024b89", // 𤮉
+ 0x24b8a: "b\v\U00024b8a", // 𤮊
+ 0x24b8b: "b\v\U00024b8b", // 𤮋
+ 0x24b8c: "b\v\U00024b8c", // 𤮌
+ 0x24b8d: "b\v\U00024b8d", // 𤮍
+ 0x24b8e: "b\f\U00024b8e", // 𤮎
+ 0x24b8f: "b\f\U00024b8f", // 𤮏
+ 0x24b90: "b\f\U00024b90", // 𤮐
+ 0x24b91: "b\f\U00024b91", // 𤮑
+ 0x24b92: "b\f\U00024b92", // 𤮒
+ 0x24b93: "b\f\U00024b93", // 𤮓
+ 0x24b94: "b\f\U00024b94", // 𤮔
+ 0x24b95: "b\f\U00024b95", // 𤮕
+ 0x24b96: "b\b\U00024b96", // 𤮖
+ 0x24b97: "b\f\U00024b97", // 𤮗
+ 0x24b98: "b\r\U00024b98", // 𤮘
+ 0x24b99: "b\r\U00024b99", // 𤮙
+ 0x24b9a: "b\r\U00024b9a", // 𤮚
+ 0x24b9b: "b\r\U00024b9b", // 𤮛
+ 0x24b9c: "b\r\U00024b9c", // 𤮜
+ 0x24b9d: "b\r\U00024b9d", // 𤮝
+ 0x24b9e: "b\r\U00024b9e", // 𤮞
+ 0x24b9f: "b\r\U00024b9f", // 𤮟
+ 0x24ba0: "b\x0e\U00024ba0", // 𤮠
+ 0x24ba1: "b\x0e\U00024ba1", // 𤮡
+ 0x24ba2: "b\x0f\U00024ba2", // 𤮢
+ 0x24ba3: "b\x0f\U00024ba3", // 𤮣
+ 0x24ba4: "b\x0f\U00024ba4", // 𤮤
+ 0x24ba5: "b\x0f\U00024ba5", // 𤮥
+ 0x24ba6: "b\x10\U00024ba6", // 𤮦
+ 0x24ba7: "b\x10\U00024ba7", // 𤮧
+ 0x24ba8: "b\x10\U00024ba8", // 𤮨
+ 0x24ba9: "b\x10\U00024ba9", // 𤮩
+ 0x24baa: "b\x10\U00024baa", // 𤮪
+ 0x24bab: "b\x10\U00024bab", // 𤮫
+ 0x24bac: "b\x10\U00024bac", // 𤮬
+ 0x24bad: "b\x11\U00024bad", // 𤮭
+ 0x24bae: "b\x11\U00024bae", // 𤮮
+ 0x24baf: "b\x11\U00024baf", // 𤮯
+ 0x24bb0: "b\x12\U00024bb0", // 𤮰
+ 0x24bb1: "b\x12\U00024bb1", // 𤮱
+ 0x24bb2: "b\x12\U00024bb2", // 𤮲
+ 0x24bb3: "b\x12\U00024bb3", // 𤮳
+ 0x24bb4: "b\x12\U00024bb4", // 𤮴
+ 0x24bb5: "b\x12\U00024bb5", // 𤮵
+ 0x24bb6: "b\x13\U00024bb6", // 𤮶
+ 0x24bb7: "b\x14\U00024bb7", // 𤮷
+ 0x24bb8: "b\x16\U00024bb8", // 𤮸
+ 0x24bb9: "b\x18\U00024bb9", // 𤮹
+ 0x24bba: "c\x00\U00024bba", // 𤮺
+ 0x24bbb: "c\x03\U00024bbb", // 𤮻
+ 0x24bbc: "c\x03\U00024bbc", // 𤮼
+ 0x24bbd: "c\x03\U00024bbd", // 𤮽
+ 0x24bbe: "c\x03\U00024bbe", // 𤮾
+ 0x24bbf: "c\x03\U00024bbf", // 𤮿
+ 0x24bc0: "c\x03\U00024bc0", // 𤯀
+ 0x24bc1: "c\x04\U00024bc1", // 𤯁
+ 0x24bc2: "c\x04\U00024bc2", // 𤯂
+ 0x24bc3: "c\x04\U00024bc3", // 𤯃
+ 0x24bc4: "c\x04\U00024bc4", // 𤯄
+ 0x24bc5: "c\x05\U00024bc5", // 𤯅
+ 0x24bc6: "c\a\U00024bc6", // 𤯆
+ 0x24bc7: "c\b\U00024bc7", // 𤯇
+ 0x24bc8: "c\t\U00024bc8", // 𤯈
+ 0x24bc9: "c\n\U00024bc9", // 𤯉
+ 0x24bca: "c\n\U00024bca", // 𤯊
+ 0x24bcb: "c\v\U00024bcb", // 𤯋
+ 0x24bcc: "c\v\U00024bcc", // 𤯌
+ 0x24bcd: "c\f\U00024bcd", // 𤯍
+ 0x24bce: "c\r\U00024bce", // 𤯎
+ 0x24bcf: "*\x0f\U00024bcf", // 𤯏
+ 0x24bd0: "c\x10\U00024bd0", // 𤯐
+ 0x24bd1: "c\x11\U00024bd1", // 𤯑
+ 0x24bd2: "c\x17\U00024bd2", // 𤯒
+ 0x24bd3: "d\x00\U00024bd3", // 𤯓
+ 0x24bd4: "d\x01\U00024bd4", // 𤯔
+ 0x24bd5: "d\x03\U00024bd5", // 𤯕
+ 0x24bd6: "d\x03\U00024bd6", // 𤯖
+ 0x24bd7: "d\x03\U00024bd7", // 𤯗
+ 0x24bd8: "d\x04\U00024bd8", // 𤯘
+ 0x24bd9: "d\x04\U00024bd9", // 𤯙
+ 0x24bda: "d\x04\U00024bda", // 𤯚
+ 0x24bdb: "d\x04\U00024bdb", // 𤯛
+ 0x24bdc: "d\x04\U00024bdc", // 𤯜
+ 0x24bdd: "d\x04\U00024bdd", // 𤯝
+ 0x24bde: "d\x04\U00024bde", // 𤯞
+ 0x24bdf: "d\x05\U00024bdf", // 𤯟
+ 0x24be0: "d\x06\U00024be0", // 𤯠
+ 0x24be1: "d\x06\U00024be1", // 𤯡
+ 0x24be2: "d\x06\U00024be2", // 𤯢
+ 0x24be3: "d\x06\U00024be3", // 𤯣
+ 0x24be4: "d\x06\U00024be4", // 𤯤
+ 0x24be5: "d\x06\U00024be5", // 𤯥
+ 0x24be6: "d\a\U00024be6", // 𤯦
+ 0x24be7: "d\a\U00024be7", // 𤯧
+ 0x24be8: "d\a\U00024be8", // 𤯨
+ 0x24be9: "d\a\U00024be9", // 𤯩
+ 0x24bea: "d\a\U00024bea", // 𤯪
+ 0x24beb: "d\a\U00024beb", // 𤯫
+ 0x24bec: "d\b\U00024bec", // 𤯬
+ 0x24bed: "d\b\U00024bed", // 𤯭
+ 0x24bee: "d\b\U00024bee", // 𤯮
+ 0x24bef: "d\b\U00024bef", // 𤯯
+ 0x24bf0: "d\b\U00024bf0", // 𤯰
+ 0x24bf1: "d\b\U00024bf1", // 𤯱
+ 0x24bf2: "d\t\U00024bf2", // 𤯲
+ 0x24bf3: "d\t\U00024bf3", // 𤯳
+ 0x24bf4: "d\t\U00024bf4", // 𤯴
+ 0x24bf5: "d\n\U00024bf5", // 𤯵
+ 0x24bf6: "d\v\U00024bf6", // 𤯶
+ 0x24bf7: "d\f\U00024bf7", // 𤯷
+ 0x24bf8: "d\f\U00024bf8", // 𤯸
+ 0x24bf9: "d\f\U00024bf9", // 𤯹
+ 0x24bfa: "d\r\U00024bfa", // 𤯺
+ 0x24bfb: "d\x0e\U00024bfb", // 𤯻
+ 0x24bfc: "d\x0e\U00024bfc", // 𤯼
+ 0x24bfd: "9\x10\U00024bfd", // 𤯽
+ 0x24bfe: "d\x0e\U00024bfe", // 𤯾
+ 0x24bff: "d\x0e\U00024bff", // 𤯿
+ 0x24c00: "d\x10\U00024c00", // 𤰀
+ 0x24c01: "d\x11\U00024c01", // 𤰁
+ 0x24c02: "d\x11\U00024c02", // 𤰂
+ 0x24c03: "e\x01\U00024c03", // 𤰃
+ 0x24c04: "e\x02\U00024c04", // 𤰄
+ 0x24c05: "e\x03\U00024c05", // 𤰅
+ 0x24c06: "e\x03\U00024c06", // 𤰆
+ 0x24c07: "e\x05\U00024c07", // 𤰇
+ 0x24c08: "e\x06\U00024c08", // 𤰈
+ 0x24c09: "e\a\U00024c09", // 𤰉
+ 0x24c0a: "e\t\U00024c0a", // 𤰊
+ 0x24c0b: "e\n\U00024c0b", // 𤰋
+ 0x24c0c: "e\n\U00024c0c", // 𤰌
+ 0x24c0d: "e\r\U00024c0d", // 𤰍
+ 0x24c0e: "e\x0e\U00024c0e", // 𤰎
+ 0x24c0f: "e\x11\U00024c0f", // 𤰏
+ 0x24c10: "e\x14\U00024c10", // 𤰐
+ 0x24c11: "e\x12\U00024c11", // 𤰑
+ 0x24c12: "f\x00\U00024c12", // 𤰒
+ 0x24c13: "f\x01\U00024c13", // 𤰓
+ 0x24c14: "f\x01\U00024c14", // 𤰔
+ 0x24c15: "f\x02\U00024c15", // 𤰕
+ 0x24c16: "f\x02\U00024c16", // 𤰖
+ 0x24c17: "f\x02\U00024c17", // 𤰗
+ 0x24c18: "f\x02\U00024c18", // 𤰘
+ 0x24c19: "f\x02\U00024c19", // 𤰙
+ 0x24c1a: "f\x02\U00024c1a", // 𤰚
+ 0x24c1b: "f\x02\U00024c1b", // 𤰛
+ 0x24c1c: "f\x02\U00024c1c", // 𤰜
+ 0x24c1d: "f\x03\U00024c1d", // 𤰝
+ 0x24c1e: "f\x03\U00024c1e", // 𤰞
+ 0x24c1f: "f\x03\U00024c1f", // 𤰟
+ 0x24c20: "f\x03\U00024c20", // 𤰠
+ 0x24c21: "f\x03\U00024c21", // 𤰡
+ 0x24c22: "f\x03\U00024c22", // 𤰢
+ 0x24c23: "f\x03\U00024c23", // 𤰣
+ 0x24c24: "f\x03\U00024c24", // 𤰤
+ 0x24c25: "f\x03\U00024c25", // 𤰥
+ 0x24c26: "f\x03\U00024c26", // 𤰦
+ 0x24c27: "f\x03\U00024c27", // 𤰧
+ 0x24c28: "f\x03\U00024c28", // 𤰨
+ 0x24c29: "f\x04\U00024c29", // 𤰩
+ 0x24c2a: "f\x04\U00024c2a", // 𤰪
+ 0x24c2b: "f\x04\U00024c2b", // 𤰫
+ 0x24c2c: "f\x04\U00024c2c", // 𤰬
+ 0x24c2d: "f\x04\U00024c2d", // 𤰭
+ 0x24c2e: "f\x04\U00024c2e", // 𤰮
+ 0x24c2f: "f\x04\U00024c2f", // 𤰯
+ 0x24c30: "f\x04\U00024c30", // 𤰰
+ 0x24c31: "f\x04\U00024c31", // 𤰱
+ 0x24c32: "f\x04\U00024c32", // 𤰲
+ 0x24c33: "f\x04\U00024c33", // 𤰳
+ 0x24c34: "f\x04\U00024c34", // 𤰴
+ 0x24c35: "f\x04\U00024c35", // 𤰵
+ 0x24c36: "f\x04\U00024c36", // 𤰶
+ 0x24c37: "f\x04\U00024c37", // 𤰷
+ 0x24c38: "f\x04\U00024c38", // 𤰸
+ 0x24c39: "f\x04\U00024c39", // 𤰹
+ 0x24c3a: "f\x04\U00024c3a", // 𤰺
+ 0x24c3b: "f\x04\U00024c3b", // 𤰻
+ 0x24c3c: "f\x04\U00024c3c", // 𤰼
+ 0x24c3d: "f\x04\U00024c3d", // 𤰽
+ 0x24c3e: "f\x04\U00024c3e", // 𤰾
+ 0x24c3f: "f\x04\U00024c3f", // 𤰿
+ 0x24c40: "f\x04\U00024c40", // 𤱀
+ 0x24c41: "f\x04\U00024c41", // 𤱁
+ 0x24c42: "f\x04\U00024c42", // 𤱂
+ 0x24c43: "f\x04\U00024c43", // 𤱃
+ 0x24c44: "f\x04\U00024c44", // 𤱄
+ 0x24c45: "f\x04\U00024c45", // 𤱅
+ 0x24c46: "f\x04\U00024c46", // 𤱆
+ 0x24c47: "f\x04\U00024c47", // 𤱇
+ 0x24c48: "f\x04\U00024c48", // 𤱈
+ 0x24c49: "f\x04\U00024c49", // 𤱉
+ 0x24c4a: "f\x04\U00024c4a", // 𤱊
+ 0x24c4b: "f\x04\U00024c4b", // 𤱋
+ 0x24c4c: "f\x05\U00024c4c", // 𤱌
+ 0x24c4d: "f\x05\U00024c4d", // 𤱍
+ 0x24c4e: "f\x05\U00024c4e", // 𤱎
+ 0x24c4f: "f\x05\U00024c4f", // 𤱏
+ 0x24c50: "f\x05\U00024c50", // 𤱐
+ 0x24c51: "f\x05\U00024c51", // 𤱑
+ 0x24c52: "f\x05\U00024c52", // 𤱒
+ 0x24c53: "f\x05\U00024c53", // 𤱓
+ 0x24c54: "f\x05\U00024c54", // 𤱔
+ 0x24c55: "f\x05\U00024c55", // 𤱕
+ 0x24c56: "f\x05\U00024c56", // 𤱖
+ 0x24c57: "f\x05\U00024c57", // 𤱗
+ 0x24c58: "f\x05\U00024c58", // 𤱘
+ 0x24c59: "f\x05\U00024c59", // 𤱙
+ 0x24c5a: "f\x05\U00024c5a", // 𤱚
+ 0x24c5b: "f\x05\U00024c5b", // 𤱛
+ 0x24c5c: "f\x05\U00024c5c", // 𤱜
+ 0x24c5d: "f\x05\U00024c5d", // 𤱝
+ 0x24c5e: "f\x05\U00024c5e", // 𤱞
+ 0x24c5f: "f\x05\U00024c5f", // 𤱟
+ 0x24c60: "f\x05\U00024c60", // 𤱠
+ 0x24c61: "\x05\t\U00024c61", // 𤱡
+ 0x24c62: "f\x05\U00024c62", // 𤱢
+ 0x24c63: "f\x05\U00024c63", // 𤱣
+ 0x24c64: "f\x05\U00024c64", // 𤱤
+ 0x24c65: "f\x06\U00024c65", // 𤱥
+ 0x24c66: "f\x06\U00024c66", // 𤱦
+ 0x24c67: "f\x06\U00024c67", // 𤱧
+ 0x24c68: "f\x06\U00024c68", // 𤱨
+ 0x24c69: "f\x06\U00024c69", // 𤱩
+ 0x24c6a: "f\x06\U00024c6a", // 𤱪
+ 0x24c6b: "f\x06\U00024c6b", // 𤱫
+ 0x24c6c: "f\x06\U00024c6c", // 𤱬
+ 0x24c6d: "f\x06\U00024c6d", // 𤱭
+ 0x24c6e: "f\x06\U00024c6e", // 𤱮
+ 0x24c6f: "f\x06\U00024c6f", // 𤱯
+ 0x24c70: "f\x06\U00024c70", // 𤱰
+ 0x24c71: "f\x06\U00024c71", // 𤱱
+ 0x24c72: "f\x06\U00024c72", // 𤱲
+ 0x24c73: "f\x06\U00024c73", // 𤱳
+ 0x24c74: "f\x06\U00024c74", // 𤱴
+ 0x24c75: "f\x06\U00024c75", // 𤱵
+ 0x24c76: "f\x06\U00024c76", // 𤱶
+ 0x24c77: "f\x06\U00024c77", // 𤱷
+ 0x24c78: "f\x06\U00024c78", // 𤱸
+ 0x24c79: "f\x06\U00024c79", // 𤱹
+ 0x24c7a: "f\x06\U00024c7a", // 𤱺
+ 0x24c7b: "f\a\U00024c7b", // 𤱻
+ 0x24c7c: "f\a\U00024c7c", // 𤱼
+ 0x24c7d: "f\a\U00024c7d", // 𤱽
+ 0x24c7e: "f\a\U00024c7e", // 𤱾
+ 0x24c7f: "f\a\U00024c7f", // 𤱿
+ 0x24c80: "f\a\U00024c80", // 𤲀
+ 0x24c81: "f\a\U00024c81", // 𤲁
+ 0x24c82: "f\a\U00024c82", // 𤲂
+ 0x24c83: "f\a\U00024c83", // 𤲃
+ 0x24c84: "f\a\U00024c84", // 𤲄
+ 0x24c85: "f\a\U00024c85", // 𤲅
+ 0x24c86: "f\a\U00024c86", // 𤲆
+ 0x24c87: "f\a\U00024c87", // 𤲇
+ 0x24c88: "f\a\U00024c88", // 𤲈
+ 0x24c89: "f\a\U00024c89", // 𤲉
+ 0x24c8a: "f\a\U00024c8a", // 𤲊
+ 0x24c8b: "f\a\U00024c8b", // 𤲋
+ 0x24c8c: "f\a\U00024c8c", // 𤲌
+ 0x24c8d: "f\a\U00024c8d", // 𤲍
+ 0x24c8e: "f\a\U00024c8e", // 𤲎
+ 0x24c8f: "f\a\U00024c8f", // 𤲏
+ 0x24c90: "f\a\U00024c90", // 𤲐
+ 0x24c91: "f\b\U00024c91", // 𤲑
+ 0x24c92: "f\b\U00024c92", // 𤲒
+ 0x24c93: "f\b\U00024c93", // 𤲓
+ 0x24c94: "f\b\U00024c94", // 𤲔
+ 0x24c95: "f\b\U00024c95", // 𤲕
+ 0x24c96: "f\b\U00024c96", // 𤲖
+ 0x24c97: "f\b\U00024c97", // 𤲗
+ 0x24c98: "f\b\U00024c98", // 𤲘
+ 0x24c99: "f\b\U00024c99", // 𤲙
+ 0x24c9a: "f\b\U00024c9a", // 𤲚
+ 0x24c9b: "f\b\U00024c9b", // 𤲛
+ 0x24c9c: "f\b\U00024c9c", // 𤲜
+ 0x24c9d: "f\b\U00024c9d", // 𤲝
+ 0x24c9e: "f\b\U00024c9e", // 𤲞
+ 0x24c9f: "f\b\U00024c9f", // 𤲟
+ 0x24ca0: "f\b\U00024ca0", // 𤲠
+ 0x24ca1: "f\b\U00024ca1", // 𤲡
+ 0x24ca2: "f\b\U00024ca2", // 𤲢
+ 0x24ca3: "f\b\U00024ca3", // 𤲣
+ 0x24ca4: "f\b\U00024ca4", // 𤲤
+ 0x24ca5: "f\b\U00024ca5", // 𤲥
+ 0x24ca6: "f\b\U00024ca6", // 𤲦
+ 0x24ca7: "f\b\U00024ca7", // 𤲧
+ 0x24ca8: "f\b\U00024ca8", // 𤲨
+ 0x24ca9: "f\b\U00024ca9", // 𤲩
+ 0x24caa: "f\b\U00024caa", // 𤲪
+ 0x24cab: "f\t\U00024cab", // 𤲫
+ 0x24cac: "f\t\U00024cac", // 𤲬
+ 0x24cad: "f\t\U00024cad", // 𤲭
+ 0x24cae: "f\t\U00024cae", // 𤲮
+ 0x24caf: "f\t\U00024caf", // 𤲯
+ 0x24cb0: "f\t\U00024cb0", // 𤲰
+ 0x24cb1: "f\t\U00024cb1", // 𤲱
+ 0x24cb2: "f\t\U00024cb2", // 𤲲
+ 0x24cb3: "f\t\U00024cb3", // 𤲳
+ 0x24cb4: "f\t\U00024cb4", // 𤲴
+ 0x24cb5: "f\t\U00024cb5", // 𤲵
+ 0x24cb6: "f\t\U00024cb6", // 𤲶
+ 0x24cb7: "f\n\U00024cb7", // 𤲷
+ 0x24cb8: "f\n\U00024cb8", // 𤲸
+ 0x24cb9: "f\n\U00024cb9", // 𤲹
+ 0x24cba: "f\n\U00024cba", // 𤲺
+ 0x24cbb: "f\n\U00024cbb", // 𤲻
+ 0x24cbc: "f\n\U00024cbc", // 𤲼
+ 0x24cbd: "f\n\U00024cbd", // 𤲽
+ 0x24cbe: "f\n\U00024cbe", // 𤲾
+ 0x24cbf: "f\n\U00024cbf", // 𤲿
+ 0x24cc0: "f\n\U00024cc0", // 𤳀
+ 0x24cc1: "f\n\U00024cc1", // 𤳁
+ 0x24cc2: "f\n\U00024cc2", // 𤳂
+ 0x24cc3: "f\n\U00024cc3", // 𤳃
+ 0x24cc4: "f\n\U00024cc4", // 𤳄
+ 0x24cc5: "f\n\U00024cc5", // 𤳅
+ 0x24cc6: "f\n\U00024cc6", // 𤳆
+ 0x24cc7: "f\n\U00024cc7", // 𤳇
+ 0x24cc8: "f\v\U00024cc8", // 𤳈
+ 0x24cc9: "f\v\U00024cc9", // 𤳉
+ 0x24cca: "f\v\U00024cca", // 𤳊
+ 0x24ccb: "f\v\U00024ccb", // 𤳋
+ 0x24ccc: "f\v\U00024ccc", // 𤳌
+ 0x24ccd: "f\v\U00024ccd", // 𤳍
+ 0x24cce: "f\v\U00024cce", // 𤳎
+ 0x24ccf: "\x01\x0f\U00024ccf", // 𤳏
+ 0x24cd0: "f\v\U00024cd0", // 𤳐
+ 0x24cd1: "f\v\U00024cd1", // 𤳑
+ 0x24cd2: "f\f\U00024cd2", // 𤳒
+ 0x24cd3: "f\f\U00024cd3", // 𤳓
+ 0x24cd4: "f\f\U00024cd4", // 𤳔
+ 0x24cd5: "f\f\U00024cd5", // 𤳕
+ 0x24cd6: "f\f\U00024cd6", // 𤳖
+ 0x24cd7: "f\f\U00024cd7", // 𤳗
+ 0x24cd8: "f\f\U00024cd8", // 𤳘
+ 0x24cd9: "f\f\U00024cd9", // 𤳙
+ 0x24cda: "f\f\U00024cda", // 𤳚
+ 0x24cdb: "\xa5\n\U00024cdb", // 𤳛
+ 0x24cdc: "f\f\U00024cdc", // 𤳜
+ 0x24cdd: "f\f\U00024cdd", // 𤳝
+ 0x24cde: "f\f\U00024cde", // 𤳞
+ 0x24cdf: "f\f\U00024cdf", // 𤳟
+ 0x24ce0: "f\f\U00024ce0", // 𤳠
+ 0x24ce1: "f\f\U00024ce1", // 𤳡
+ 0x24ce2: "f\f\U00024ce2", // 𤳢
+ 0x24ce3: "f\f\U00024ce3", // 𤳣
+ 0x24ce4: "f\r\U00024ce4", // 𤳤
+ 0x24ce5: "f\r\U00024ce5", // 𤳥
+ 0x24ce6: "f\r\U00024ce6", // 𤳦
+ 0x24ce7: "f\r\U00024ce7", // 𤳧
+ 0x24ce8: "f\r\U00024ce8", // 𤳨
+ 0x24ce9: "f\x0e\U00024ce9", // 𤳩
+ 0x24cea: "f\x0e\U00024cea", // 𤳪
+ 0x24ceb: "f\x0e\U00024ceb", // 𤳫
+ 0x24cec: "f\x0e\U00024cec", // 𤳬
+ 0x24ced: "f\x0e\U00024ced", // 𤳭
+ 0x24cee: "f\x0e\U00024cee", // 𤳮
+ 0x24cef: "f\x0e\U00024cef", // 𤳯
+ 0x24cf0: "f\x0e\U00024cf0", // 𤳰
+ 0x24cf1: "f\x0f\U00024cf1", // 𤳱
+ 0x24cf2: "f\x0e\U00024cf2", // 𤳲
+ 0x24cf3: "f\x0f\U00024cf3", // 𤳳
+ 0x24cf4: "f\x0f\U00024cf4", // 𤳴
+ 0x24cf5: "f\x0f\U00024cf5", // 𤳵
+ 0x24cf6: "f\x0f\U00024cf6", // 𤳶
+ 0x24cf7: "f\x0f\U00024cf7", // 𤳷
+ 0x24cf8: "f\x0f\U00024cf8", // 𤳸
+ 0x24cf9: "f\x10\U00024cf9", // 𤳹
+ 0x24cfa: "f\x10\U00024cfa", // 𤳺
+ 0x24cfb: "f\x10\U00024cfb", // 𤳻
+ 0x24cfc: "f\x10\U00024cfc", // 𤳼
+ 0x24cfd: "f\x10\U00024cfd", // 𤳽
+ 0x24cfe: "f\x10\U00024cfe", // 𤳾
+ 0x24cff: "f\x11\U00024cff", // 𤳿
+ 0x24d00: "f\x11\U00024d00", // 𤴀
+ 0x24d01: "f\x11\U00024d01", // 𤴁
+ 0x24d02: "f\x12\U00024d02", // 𤴂
+ 0x24d03: "f\x12\U00024d03", // 𤴃
+ 0x24d04: "f\x12\U00024d04", // 𤴄
+ 0x24d05: "f\x13\U00024d05", // 𤴅
+ 0x24d06: "f\x14\U00024d06", // 𤴆
+ 0x24d07: "f\x15\U00024d07", // 𤴇
+ 0x24d08: "f\x15\U00024d08", // 𤴈
+ 0x24d09: "f\x15\U00024d09", // 𤴉
+ 0x24d0a: "f\x15\U00024d0a", // 𤴊
+ 0x24d0b: "f\x15\U00024d0b", // 𤴋
+ 0x24d0c: "f\x16\U00024d0c", // 𤴌
+ 0x24d0d: "f\x16\U00024d0d", // 𤴍
+ 0x24d0e: "f\x17\U00024d0e", // 𤴎
+ 0x24d0f: "f\x19\U00024d0f", // 𤴏
+ 0x24d10: "f\x1b\U00024d10", // 𤴐
+ 0x24d11: "f\x1c\U00024d11", // 𤴑
+ 0x24d12: "f\x1f\U00024d12", // 𤴒
+ 0x24d13: "g\x00\U00024d13", // 𤴓
+ 0x24d14: "g\x00\U00024d14", // 𤴔
+ 0x24d15: "g\x01\U00024d15", // 𤴕
+ 0x24d16: "g\x03\U00024d16", // 𤴖
+ 0x24d17: "g\x05\U00024d17", // 𤴗
+ 0x24d18: "g\x04\U00024d18", // 𤴘
+ 0x24d19: "g\a\U00024d19", // 𤴙
+ 0x24d1a: "g\a\U00024d1a", // 𤴚
+ 0x24d1b: "g\a\U00024d1b", // 𤴛
+ 0x24d1c: "g\b\U00024d1c", // 𤴜
+ 0x24d1d: "g\b\U00024d1d", // 𤴝
+ 0x24d1e: "g\n\U00024d1e", // 𤴞
+ 0x24d1f: "g\v\U00024d1f", // 𤴟
+ 0x24d20: "g\v\U00024d20", // 𤴠
+ 0x24d21: "g\v\U00024d21", // 𤴡
+ 0x24d22: "g\v\U00024d22", // 𤴢
+ 0x24d23: "g\r\U00024d23", // 𤴣
+ 0x24d24: "g\x11\U00024d24", // 𤴤
+ 0x24d25: "h\x01\U00024d25", // 𤴥
+ 0x24d26: "h\x02\U00024d26", // 𤴦
+ 0x24d27: "h\x02\U00024d27", // 𤴧
+ 0x24d28: "h\x02\U00024d28", // 𤴨
+ 0x24d29: "h\x02\U00024d29", // 𤴩
+ 0x24d2a: "h\x02\U00024d2a", // 𤴪
+ 0x24d2b: "h\x02\U00024d2b", // 𤴫
+ 0x24d2c: "h\x02\U00024d2c", // 𤴬
+ 0x24d2d: "h\x02\U00024d2d", // 𤴭
+ 0x24d2e: "h\x02\U00024d2e", // 𤴮
+ 0x24d2f: "h\x03\U00024d2f", // 𤴯
+ 0x24d30: "h\x03\U00024d30", // 𤴰
+ 0x24d31: "h\x03\U00024d31", // 𤴱
+ 0x24d32: "h\x03\U00024d32", // 𤴲
+ 0x24d33: "h\x03\U00024d33", // 𤴳
+ 0x24d34: "h\x03\U00024d34", // 𤴴
+ 0x24d35: "h\x03\U00024d35", // 𤴵
+ 0x24d36: "h\x03\U00024d36", // 𤴶
+ 0x24d37: "h\x04\U00024d37", // 𤴷
+ 0x24d38: "h\x04\U00024d38", // 𤴸
+ 0x24d39: "h\x04\U00024d39", // 𤴹
+ 0x24d3a: "h\x04\U00024d3a", // 𤴺
+ 0x24d3b: "h\x04\U00024d3b", // 𤴻
+ 0x24d3c: "h\x04\U00024d3c", // 𤴼
+ 0x24d3d: "h\x04\U00024d3d", // 𤴽
+ 0x24d3e: "h\x04\U00024d3e", // 𤴾
+ 0x24d3f: "h\x04\U00024d3f", // 𤴿
+ 0x24d40: "h\x04\U00024d40", // 𤵀
+ 0x24d41: "h\x04\U00024d41", // 𤵁
+ 0x24d42: "h\x04\U00024d42", // 𤵂
+ 0x24d43: "h\x04\U00024d43", // 𤵃
+ 0x24d44: "h\x04\U00024d44", // 𤵄
+ 0x24d45: "h\x04\U00024d45", // 𤵅
+ 0x24d46: "h\x04\U00024d46", // 𤵆
+ 0x24d47: "h\x04\U00024d47", // 𤵇
+ 0x24d48: "h\x04\U00024d48", // 𤵈
+ 0x24d49: "h\x04\U00024d49", // 𤵉
+ 0x24d4a: "h\x04\U00024d4a", // 𤵊
+ 0x24d4b: "h\x04\U00024d4b", // 𤵋
+ 0x24d4c: "h\x04\U00024d4c", // 𤵌
+ 0x24d4d: "h\x04\U00024d4d", // 𤵍
+ 0x24d4e: "h\x04\U00024d4e", // 𤵎
+ 0x24d4f: "h\x04\U00024d4f", // 𤵏
+ 0x24d50: "h\x04\U00024d50", // 𤵐
+ 0x24d51: "h\x04\U00024d51", // 𤵑
+ 0x24d52: "h\x04\U00024d52", // 𤵒
+ 0x24d53: "h\x04\U00024d53", // 𤵓
+ 0x24d54: "h\x04\U00024d54", // 𤵔
+ 0x24d55: "h\x04\U00024d55", // 𤵕
+ 0x24d56: "h\x04\U00024d56", // 𤵖
+ 0x24d57: "h\x05\U00024d57", // 𤵗
+ 0x24d58: "h\x05\U00024d58", // 𤵘
+ 0x24d59: "h\x05\U00024d59", // 𤵙
+ 0x24d5a: "h\x05\U00024d5a", // 𤵚
+ 0x24d5b: "h\x05\U00024d5b", // 𤵛
+ 0x24d5c: "h\x05\U00024d5c", // 𤵜
+ 0x24d5d: "h\x05\U00024d5d", // 𤵝
+ 0x24d5e: "h\x05\U00024d5e", // 𤵞
+ 0x24d5f: "h\x05\U00024d5f", // 𤵟
+ 0x24d60: "h\x05\U00024d60", // 𤵠
+ 0x24d61: "h\x05\U00024d61", // 𤵡
+ 0x24d62: "h\x05\U00024d62", // 𤵢
+ 0x24d63: "h\x05\U00024d63", // 𤵣
+ 0x24d64: "h\x05\U00024d64", // 𤵤
+ 0x24d65: "h\x05\U00024d65", // 𤵥
+ 0x24d66: "h\x05\U00024d66", // 𤵦
+ 0x24d67: "h\x05\U00024d67", // 𤵧
+ 0x24d68: "h\x05\U00024d68", // 𤵨
+ 0x24d69: "h\x05\U00024d69", // 𤵩
+ 0x24d6a: "h\x05\U00024d6a", // 𤵪
+ 0x24d6b: "h\x05\U00024d6b", // 𤵫
+ 0x24d6c: "h\x05\U00024d6c", // 𤵬
+ 0x24d6d: "h\x05\U00024d6d", // 𤵭
+ 0x24d6e: "h\x05\U00024d6e", // 𤵮
+ 0x24d6f: "h\x05\U00024d6f", // 𤵯
+ 0x24d70: "h\x05\U00024d70", // 𤵰
+ 0x24d71: "h\x05\U00024d71", // 𤵱
+ 0x24d72: "h\x05\U00024d72", // 𤵲
+ 0x24d73: "h\x05\U00024d73", // 𤵳
+ 0x24d74: "h\x05\U00024d74", // 𤵴
+ 0x24d75: "h\x05\U00024d75", // 𤵵
+ 0x24d76: "h\x05\U00024d76", // 𤵶
+ 0x24d77: "h\x06\U00024d77", // 𤵷
+ 0x24d78: "h\x06\U00024d78", // 𤵸
+ 0x24d79: "h\x06\U00024d79", // 𤵹
+ 0x24d7a: "h\x06\U00024d7a", // 𤵺
+ 0x24d7b: "h\x06\U00024d7b", // 𤵻
+ 0x24d7c: "h\x06\U00024d7c", // 𤵼
+ 0x24d7d: "h\x06\U00024d7d", // 𤵽
+ 0x24d7e: "h\x06\U00024d7e", // 𤵾
+ 0x24d7f: "h\x06\U00024d7f", // 𤵿
+ 0x24d80: "h\x06\U00024d80", // 𤶀
+ 0x24d81: "h\x06\U00024d81", // 𤶁
+ 0x24d82: "h\x06\U00024d82", // 𤶂
+ 0x24d83: "h\x06\U00024d83", // 𤶃
+ 0x24d84: "h\x06\U00024d84", // 𤶄
+ 0x24d85: "h\x06\U00024d85", // 𤶅
+ 0x24d86: "h\x06\U00024d86", // 𤶆
+ 0x24d87: "h\x06\U00024d87", // 𤶇
+ 0x24d88: "h\x06\U00024d88", // 𤶈
+ 0x24d89: "h\x06\U00024d89", // 𤶉
+ 0x24d8a: "h\x06\U00024d8a", // 𤶊
+ 0x24d8b: "h\x06\U00024d8b", // 𤶋
+ 0x24d8c: "h\x06\U00024d8c", // 𤶌
+ 0x24d8d: "h\x06\U00024d8d", // 𤶍
+ 0x24d8e: "h\x06\U00024d8e", // 𤶎
+ 0x24d8f: "h\x06\U00024d8f", // 𤶏
+ 0x24d90: "h\x06\U00024d90", // 𤶐
+ 0x24d91: "h\x06\U00024d91", // 𤶑
+ 0x24d92: "h\x06\U00024d92", // 𤶒
+ 0x24d93: "h\x06\U00024d93", // 𤶓
+ 0x24d94: "h\x06\U00024d94", // 𤶔
+ 0x24d95: "h\a\U00024d95", // 𤶕
+ 0x24d96: "h\a\U00024d96", // 𤶖
+ 0x24d97: "h\a\U00024d97", // 𤶗
+ 0x24d98: "h\a\U00024d98", // 𤶘
+ 0x24d99: "h\a\U00024d99", // 𤶙
+ 0x24d9a: "h\a\U00024d9a", // 𤶚
+ 0x24d9b: "h\a\U00024d9b", // 𤶛
+ 0x24d9c: "h\a\U00024d9c", // 𤶜
+ 0x24d9d: "h\a\U00024d9d", // 𤶝
+ 0x24d9e: "h\a\U00024d9e", // 𤶞
+ 0x24d9f: "h\a\U00024d9f", // 𤶟
+ 0x24da0: "h\a\U00024da0", // 𤶠
+ 0x24da1: "h\a\U00024da1", // 𤶡
+ 0x24da2: "h\a\U00024da2", // 𤶢
+ 0x24da3: "h\a\U00024da3", // 𤶣
+ 0x24da4: "h\a\U00024da4", // 𤶤
+ 0x24da5: "h\a\U00024da5", // 𤶥
+ 0x24da6: "h\a\U00024da6", // 𤶦
+ 0x24da7: "h\a\U00024da7", // 𤶧
+ 0x24da8: "h\a\U00024da8", // 𤶨
+ 0x24da9: "h\a\U00024da9", // 𤶩
+ 0x24daa: "h\a\U00024daa", // 𤶪
+ 0x24dab: "h\a\U00024dab", // 𤶫
+ 0x24dac: "h\a\U00024dac", // 𤶬
+ 0x24dad: "h\a\U00024dad", // 𤶭
+ 0x24dae: "h\a\U00024dae", // 𤶮
+ 0x24daf: "h\a\U00024daf", // 𤶯
+ 0x24db0: "h\a\U00024db0", // 𤶰
+ 0x24db1: "h\a\U00024db1", // 𤶱
+ 0x24db2: "h\a\U00024db2", // 𤶲
+ 0x24db3: "h\a\U00024db3", // 𤶳
+ 0x24db4: "h\a\U00024db4", // 𤶴
+ 0x24db5: "h\a\U00024db5", // 𤶵
+ 0x24db6: "h\a\U00024db6", // 𤶶
+ 0x24db7: "h\a\U00024db7", // 𤶷
+ 0x24db8: "h\a\U00024db8", // 𤶸
+ 0x24db9: "h\a\U00024db9", // 𤶹
+ 0x24dba: "h\a\U00024dba", // 𤶺
+ 0x24dbb: "h\a\U00024dbb", // 𤶻
+ 0x24dbc: "h\a\U00024dbc", // 𤶼
+ 0x24dbd: "h\a\U00024dbd", // 𤶽
+ 0x24dbe: "h\a\U00024dbe", // 𤶾
+ 0x24dbf: "h\a\U00024dbf", // 𤶿
+ 0x24dc0: "h\a\U00024dc0", // 𤷀
+ 0x24dc1: "h\a\U00024dc1", // 𤷁
+ 0x24dc2: "h\b\U00024dc2", // 𤷂
+ 0x24dc3: "h\b\U00024dc3", // 𤷃
+ 0x24dc4: "h\b\U00024dc4", // 𤷄
+ 0x24dc5: "h\b\U00024dc5", // 𤷅
+ 0x24dc6: "h\b\U00024dc6", // 𤷆
+ 0x24dc7: "h\b\U00024dc7", // 𤷇
+ 0x24dc8: "h\b\U00024dc8", // 𤷈
+ 0x24dc9: "h\b\U00024dc9", // 𤷉
+ 0x24dca: "h\b\U00024dca", // 𤷊
+ 0x24dcb: "h\b\U00024dcb", // 𤷋
+ 0x24dcc: "h\b\U00024dcc", // 𤷌
+ 0x24dcd: "h\b\U00024dcd", // 𤷍
+ 0x24dce: "h\b\U00024dce", // 𤷎
+ 0x24dcf: "h\b\U00024dcf", // 𤷏
+ 0x24dd0: "h\b\U00024dd0", // 𤷐
+ 0x24dd1: "h\b\U00024dd1", // 𤷑
+ 0x24dd2: "h\b\U00024dd2", // 𤷒
+ 0x24dd3: "h\b\U00024dd3", // 𤷓
+ 0x24dd4: "h\b\U00024dd4", // 𤷔
+ 0x24dd5: "h\b\U00024dd5", // 𤷕
+ 0x24dd6: "h\b\U00024dd6", // 𤷖
+ 0x24dd7: "h\b\U00024dd7", // 𤷗
+ 0x24dd8: "h\b\U00024dd8", // 𤷘
+ 0x24dd9: "h\b\U00024dd9", // 𤷙
+ 0x24dda: "h\b\U00024dda", // 𤷚
+ 0x24ddb: "h\b\U00024ddb", // 𤷛
+ 0x24ddc: "h\b\U00024ddc", // 𤷜
+ 0x24ddd: "h\b\U00024ddd", // 𤷝
+ 0x24dde: "h\b\U00024dde", // 𤷞
+ 0x24ddf: "h\b\U00024ddf", // 𤷟
+ 0x24de0: "h\b\U00024de0", // 𤷠
+ 0x24de1: "h\b\U00024de1", // 𤷡
+ 0x24de2: "h\b\U00024de2", // 𤷢
+ 0x24de3: "h\b\U00024de3", // 𤷣
+ 0x24de4: "h\b\U00024de4", // 𤷤
+ 0x24de5: "h\b\U00024de5", // 𤷥
+ 0x24de6: "h\b\U00024de6", // 𤷦
+ 0x24de7: "h\b\U00024de7", // 𤷧
+ 0x24de8: "h\b\U00024de8", // 𤷨
+ 0x24de9: "h\b\U00024de9", // 𤷩
+ 0x24dea: "h\b\U00024dea", // 𤷪
+ 0x24deb: "h\b\U00024deb", // 𤷫
+ 0x24dec: "h\b\U00024dec", // 𤷬
+ 0x24ded: "h\b\U00024ded", // 𤷭
+ 0x24dee: "h\b\U00024dee", // 𤷮
+ 0x24def: "h\b\U00024def", // 𤷯
+ 0x24df0: "h\b\U00024df0", // 𤷰
+ 0x24df1: "h\b\U00024df1", // 𤷱
+ 0x24df2: "h\b\U00024df2", // 𤷲
+ 0x24df3: "h\b\U00024df3", // 𤷳
+ 0x24df4: "h\b\U00024df4", // 𤷴
+ 0x24df5: "h\b\U00024df5", // 𤷵
+ 0x24df6: "h\b\U00024df6", // 𤷶
+ 0x24df7: "h\b\U00024df7", // 𤷷
+ 0x24df8: "h\b\U00024df8", // 𤷸
+ 0x24df9: "h\b\U00024df9", // 𤷹
+ 0x24dfa: "h\b\U00024dfa", // 𤷺
+ 0x24dfb: "h\t\U00024dfb", // 𤷻
+ 0x24dfc: "h\t\U00024dfc", // 𤷼
+ 0x24dfd: "h\t\U00024dfd", // 𤷽
+ 0x24dfe: "h\t\U00024dfe", // 𤷾
+ 0x24dff: "h\t\U00024dff", // 𤷿
+ 0x24e00: "h\t\U00024e00", // 𤸀
+ 0x24e01: "h\t\U00024e01", // 𤸁
+ 0x24e02: "h\t\U00024e02", // 𤸂
+ 0x24e03: "h\t\U00024e03", // 𤸃
+ 0x24e04: "h\t\U00024e04", // 𤸄
+ 0x24e05: "h\t\U00024e05", // 𤸅
+ 0x24e06: "h\t\U00024e06", // 𤸆
+ 0x24e07: "h\t\U00024e07", // 𤸇
+ 0x24e08: "h\t\U00024e08", // 𤸈
+ 0x24e09: "h\t\U00024e09", // 𤸉
+ 0x24e0a: "h\t\U00024e0a", // 𤸊
+ 0x24e0b: "h\t\U00024e0b", // 𤸋
+ 0x24e0c: "h\t\U00024e0c", // 𤸌
+ 0x24e0d: "h\t\U00024e0d", // 𤸍
+ 0x24e0e: "h\t\U00024e0e", // 𤸎
+ 0x24e0f: "h\t\U00024e0f", // 𤸏
+ 0x24e10: "h\t\U00024e10", // 𤸐
+ 0x24e11: "h\t\U00024e11", // 𤸑
+ 0x24e12: "h\t\U00024e12", // 𤸒
+ 0x24e13: "h\t\U00024e13", // 𤸓
+ 0x24e14: "h\t\U00024e14", // 𤸔
+ 0x24e15: "h\t\U00024e15", // 𤸕
+ 0x24e16: "h\t\U00024e16", // 𤸖
+ 0x24e17: "h\t\U00024e17", // 𤸗
+ 0x24e18: "h\t\U00024e18", // 𤸘
+ 0x24e19: "h\t\U00024e19", // 𤸙
+ 0x24e1a: "h\t\U00024e1a", // 𤸚
+ 0x24e1b: "h\t\U00024e1b", // 𤸛
+ 0x24e1c: "h\t\U00024e1c", // 𤸜
+ 0x24e1d: "h\t\U00024e1d", // 𤸝
+ 0x24e1e: "h\t\U00024e1e", // 𤸞
+ 0x24e1f: "h\t\U00024e1f", // 𤸟
+ 0x24e20: "h\t\U00024e20", // 𤸠
+ 0x24e21: "h\t\U00024e21", // 𤸡
+ 0x24e22: "h\t\U00024e22", // 𤸢
+ 0x24e23: "h\t\U00024e23", // 𤸣
+ 0x24e24: "h\t\U00024e24", // 𤸤
+ 0x24e25: "h\t\U00024e25", // 𤸥
+ 0x24e26: "h\t\U00024e26", // 𤸦
+ 0x24e27: "h\t\U00024e27", // 𤸧
+ 0x24e28: "h\t\U00024e28", // 𤸨
+ 0x24e29: "h\t\U00024e29", // 𤸩
+ 0x24e2a: "h\n\U00024e2a", // 𤸪
+ 0x24e2b: "h\n\U00024e2b", // 𤸫
+ 0x24e2c: "h\n\U00024e2c", // 𤸬
+ 0x24e2d: "h\n\U00024e2d", // 𤸭
+ 0x24e2e: "h\n\U00024e2e", // 𤸮
+ 0x24e2f: "h\n\U00024e2f", // 𤸯
+ 0x24e30: "h\n\U00024e30", // 𤸰
+ 0x24e31: "h\n\U00024e31", // 𤸱
+ 0x24e32: "h\n\U00024e32", // 𤸲
+ 0x24e33: "h\n\U00024e33", // 𤸳
+ 0x24e34: "h\n\U00024e34", // 𤸴
+ 0x24e35: "h\n\U00024e35", // 𤸵
+ 0x24e36: "h\n\U00024e36", // 𤸶
+ 0x24e37: "h\n\U00024e37", // 𤸷
+ 0x24e38: "h\n\U00024e38", // 𤸸
+ 0x24e39: "h\n\U00024e39", // 𤸹
+ 0x24e3a: "h\n\U00024e3a", // 𤸺
+ 0x24e3b: "h\n\U00024e3b", // 𤸻
+ 0x24e3c: "h\n\U00024e3c", // 𤸼
+ 0x24e3d: "h\n\U00024e3d", // 𤸽
+ 0x24e3e: "h\n\U00024e3e", // 𤸾
+ 0x24e3f: "h\n\U00024e3f", // 𤸿
+ 0x24e40: "h\n\U00024e40", // 𤹀
+ 0x24e41: "h\n\U00024e41", // 𤹁
+ 0x24e42: "h\n\U00024e42", // 𤹂
+ 0x24e43: "h\n\U00024e43", // 𤹃
+ 0x24e44: "h\n\U00024e44", // 𤹄
+ 0x24e45: "h\n\U00024e45", // 𤹅
+ 0x24e46: "h\n\U00024e46", // 𤹆
+ 0x24e47: "h\n\U00024e47", // 𤹇
+ 0x24e48: "h\n\U00024e48", // 𤹈
+ 0x24e49: "h\n\U00024e49", // 𤹉
+ 0x24e4a: "h\n\U00024e4a", // 𤹊
+ 0x24e4b: "h\n\U00024e4b", // 𤹋
+ 0x24e4c: "h\n\U00024e4c", // 𤹌
+ 0x24e4d: "h\n\U00024e4d", // 𤹍
+ 0x24e4e: "h\n\U00024e4e", // 𤹎
+ 0x24e4f: "h\n\U00024e4f", // 𤹏
+ 0x24e50: "h\n\U00024e50", // 𤹐
+ 0x24e51: "h\n\U00024e51", // 𤹑
+ 0x24e52: "h\n\U00024e52", // 𤹒
+ 0x24e53: "h\n\U00024e53", // 𤹓
+ 0x24e54: "h\n\U00024e54", // 𤹔
+ 0x24e55: "h\n\U00024e55", // 𤹕
+ 0x24e56: "h\n\U00024e56", // 𤹖
+ 0x24e57: "h\n\U00024e57", // 𤹗
+ 0x24e58: "h\n\U00024e58", // 𤹘
+ 0x24e59: "h\n\U00024e59", // 𤹙
+ 0x24e5a: "h\n\U00024e5a", // 𤹚
+ 0x24e5b: "h\n\U00024e5b", // 𤹛
+ 0x24e5c: "h\n\U00024e5c", // 𤹜
+ 0x24e5d: "h\v\U00024e5d", // 𤹝
+ 0x24e5e: "h\v\U00024e5e", // 𤹞
+ 0x24e5f: "h\v\U00024e5f", // 𤹟
+ 0x24e60: "h\v\U00024e60", // 𤹠
+ 0x24e61: "h\v\U00024e61", // 𤹡
+ 0x24e62: "h\v\U00024e62", // 𤹢
+ 0x24e63: "h\v\U00024e63", // 𤹣
+ 0x24e64: "h\v\U00024e64", // 𤹤
+ 0x24e65: "h\v\U00024e65", // 𤹥
+ 0x24e66: "h\v\U00024e66", // 𤹦
+ 0x24e67: "h\v\U00024e67", // 𤹧
+ 0x24e68: "h\v\U00024e68", // 𤹨
+ 0x24e69: "h\v\U00024e69", // 𤹩
+ 0x24e6a: "h\v\U00024e6a", // 𤹪
+ 0x24e6b: "h\v\U00024e6b", // 𤹫
+ 0x24e6c: "h\v\U00024e6c", // 𤹬
+ 0x24e6d: "h\v\U00024e6d", // 𤹭
+ 0x24e6e: "h\v\U00024e6e", // 𤹮
+ 0x24e6f: "h\v\U00024e6f", // 𤹯
+ 0x24e70: "h\v\U00024e70", // 𤹰
+ 0x24e71: "h\v\U00024e71", // 𤹱
+ 0x24e72: "h\v\U00024e72", // 𤹲
+ 0x24e73: "h\v\U00024e73", // 𤹳
+ 0x24e74: "h\v\U00024e74", // 𤹴
+ 0x24e75: "h\v\U00024e75", // 𤹵
+ 0x24e76: "h\v\U00024e76", // 𤹶
+ 0x24e77: "h\v\U00024e77", // 𤹷
+ 0x24e78: "h\v\U00024e78", // 𤹸
+ 0x24e79: "h\v\U00024e79", // 𤹹
+ 0x24e7a: "h\v\U00024e7a", // 𤹺
+ 0x24e7b: "h\v\U00024e7b", // 𤹻
+ 0x24e7c: "h\v\U00024e7c", // 𤹼
+ 0x24e7d: "h\v\U00024e7d", // 𤹽
+ 0x24e7e: "h\v\U00024e7e", // 𤹾
+ 0x24e7f: "h\v\U00024e7f", // 𤹿
+ 0x24e80: "h\v\U00024e80", // 𤺀
+ 0x24e81: "h\v\U00024e81", // 𤺁
+ 0x24e82: "h\v\U00024e82", // 𤺂
+ 0x24e83: "h\f\U00024e83", // 𤺃
+ 0x24e84: "h\f\U00024e84", // 𤺄
+ 0x24e85: "h\f\U00024e85", // 𤺅
+ 0x24e86: "h\f\U00024e86", // 𤺆
+ 0x24e87: "h\f\U00024e87", // 𤺇
+ 0x24e88: "h\f\U00024e88", // 𤺈
+ 0x24e89: "h\f\U00024e89", // 𤺉
+ 0x24e8a: "h\f\U00024e8a", // 𤺊
+ 0x24e8b: "h\f\U00024e8b", // 𤺋
+ 0x24e8c: "h\f\U00024e8c", // 𤺌
+ 0x24e8d: "h\f\U00024e8d", // 𤺍
+ 0x24e8e: "h\f\U00024e8e", // 𤺎
+ 0x24e8f: "h\f\U00024e8f", // 𤺏
+ 0x24e90: "h\f\U00024e90", // 𤺐
+ 0x24e91: "h\f\U00024e91", // 𤺑
+ 0x24e92: "h\f\U00024e92", // 𤺒
+ 0x24e93: "h\f\U00024e93", // 𤺓
+ 0x24e94: "h\f\U00024e94", // 𤺔
+ 0x24e95: "h\f\U00024e95", // 𤺕
+ 0x24e96: "h\f\U00024e96", // 𤺖
+ 0x24e97: "h\f\U00024e97", // 𤺗
+ 0x24e98: "h\f\U00024e98", // 𤺘
+ 0x24e99: "h\f\U00024e99", // 𤺙
+ 0x24e9a: "h\f\U00024e9a", // 𤺚
+ 0x24e9b: "h\f\U00024e9b", // 𤺛
+ 0x24e9c: "h\f\U00024e9c", // 𤺜
+ 0x24e9d: "h\f\U00024e9d", // 𤺝
+ 0x24e9e: "h\v\U00024e9e", // 𤺞
+ 0x24e9f: "h\f\U00024e9f", // 𤺟
+ 0x24ea0: "h\f\U00024ea0", // 𤺠
+ 0x24ea1: "h\f\U00024ea1", // 𤺡
+ 0x24ea2: "h\f\U00024ea2", // 𤺢
+ 0x24ea3: "h\f\U00024ea3", // 𤺣
+ 0x24ea4: "h\f\U00024ea4", // 𤺤
+ 0x24ea5: "h\f\U00024ea5", // 𤺥
+ 0x24ea6: "h\f\U00024ea6", // 𤺦
+ 0x24ea7: "h\f\U00024ea7", // 𤺧
+ 0x24ea8: "h\f\U00024ea8", // 𤺨
+ 0x24ea9: "h\f\U00024ea9", // 𤺩
+ 0x24eaa: "h\f\U00024eaa", // 𤺪
+ 0x24eab: "h\f\U00024eab", // 𤺫
+ 0x24eac: "h\f\U00024eac", // 𤺬
+ 0x24ead: "h\f\U00024ead", // 𤺭
+ 0x24eae: "h\f\U00024eae", // 𤺮
+ 0x24eaf: "h\f\U00024eaf", // 𤺯
+ 0x24eb0: "h\f\U00024eb0", // 𤺰
+ 0x24eb1: "h\f\U00024eb1", // 𤺱
+ 0x24eb2: "h\f\U00024eb2", // 𤺲
+ 0x24eb3: "h\f\U00024eb3", // 𤺳
+ 0x24eb4: "h\f\U00024eb4", // 𤺴
+ 0x24eb5: "h\f\U00024eb5", // 𤺵
+ 0x24eb6: "h\f\U00024eb6", // 𤺶
+ 0x24eb7: "h\f\U00024eb7", // 𤺷
+ 0x24eb8: "h\f\U00024eb8", // 𤺸
+ 0x24eb9: "h\f\U00024eb9", // 𤺹
+ 0x24eba: "h\r\U00024eba", // 𤺺
+ 0x24ebb: "h\r\U00024ebb", // 𤺻
+ 0x24ebc: "h\r\U00024ebc", // 𤺼
+ 0x24ebd: "h\r\U00024ebd", // 𤺽
+ 0x24ebe: "h\r\U00024ebe", // 𤺾
+ 0x24ebf: "h\r\U00024ebf", // 𤺿
+ 0x24ec0: "h\r\U00024ec0", // 𤻀
+ 0x24ec1: "h\r\U00024ec1", // 𤻁
+ 0x24ec2: "h\r\U00024ec2", // 𤻂
+ 0x24ec3: "h\r\U00024ec3", // 𤻃
+ 0x24ec4: "h\r\U00024ec4", // 𤻄
+ 0x24ec5: "h\r\U00024ec5", // 𤻅
+ 0x24ec6: "h\r\U00024ec6", // 𤻆
+ 0x24ec7: "h\r\U00024ec7", // 𤻇
+ 0x24ec8: "h\r\U00024ec8", // 𤻈
+ 0x24ec9: "h\r\U00024ec9", // 𤻉
+ 0x24eca: "h\r\U00024eca", // 𤻊
+ 0x24ecb: "h\r\U00024ecb", // 𤻋
+ 0x24ecc: "h\r\U00024ecc", // 𤻌
+ 0x24ecd: "h\r\U00024ecd", // 𤻍
+ 0x24ece: "h\r\U00024ece", // 𤻎
+ 0x24ecf: "h\r\U00024ecf", // 𤻏
+ 0x24ed0: "h\r\U00024ed0", // 𤻐
+ 0x24ed1: "h\r\U00024ed1", // 𤻑
+ 0x24ed2: "h\r\U00024ed2", // 𤻒
+ 0x24ed3: "h\r\U00024ed3", // 𤻓
+ 0x24ed4: "h\r\U00024ed4", // 𤻔
+ 0x24ed5: "h\x0e\U00024ed5", // 𤻕
+ 0x24ed6: "h\x0e\U00024ed6", // 𤻖
+ 0x24ed7: "h\x0e\U00024ed7", // 𤻗
+ 0x24ed8: "h\x0e\U00024ed8", // 𤻘
+ 0x24ed9: "h\x0e\U00024ed9", // 𤻙
+ 0x24eda: "h\x0e\U00024eda", // 𤻚
+ 0x24edb: "h\x0e\U00024edb", // 𤻛
+ 0x24edc: "h\x0e\U00024edc", // 𤻜
+ 0x24edd: "h\x0e\U00024edd", // 𤻝
+ 0x24ede: "h\x0e\U00024ede", // 𤻞
+ 0x24edf: "h\x0e\U00024edf", // 𤻟
+ 0x24ee0: "h\x0e\U00024ee0", // 𤻠
+ 0x24ee1: "h\x0e\U00024ee1", // 𤻡
+ 0x24ee2: "h\x0e\U00024ee2", // 𤻢
+ 0x24ee3: "h\x0e\U00024ee3", // 𤻣
+ 0x24ee4: "h\x0e\U00024ee4", // 𤻤
+ 0x24ee5: "h\x0e\U00024ee5", // 𤻥
+ 0x24ee6: "h\x0e\U00024ee6", // 𤻦
+ 0x24ee7: "h\x0e\U00024ee7", // 𤻧
+ 0x24ee8: "h\x0e\U00024ee8", // 𤻨
+ 0x24ee9: "h\x0e\U00024ee9", // 𤻩
+ 0x24eea: "h\x0e\U00024eea", // 𤻪
+ 0x24eeb: "h\x0e\U00024eeb", // 𤻫
+ 0x24eec: "h\x0e\U00024eec", // 𤻬
+ 0x24eed: "h\x0e\U00024eed", // 𤻭
+ 0x24eee: "h\x0e\U00024eee", // 𤻮
+ 0x24eef: "h\x0e\U00024eef", // 𤻯
+ 0x24ef0: "h\x0f\U00024ef0", // 𤻰
+ 0x24ef1: "h\x0f\U00024ef1", // 𤻱
+ 0x24ef2: "h\x0f\U00024ef2", // 𤻲
+ 0x24ef3: "h\x0f\U00024ef3", // 𤻳
+ 0x24ef4: "h\x0f\U00024ef4", // 𤻴
+ 0x24ef5: "h\x0f\U00024ef5", // 𤻵
+ 0x24ef6: "h\x0f\U00024ef6", // 𤻶
+ 0x24ef7: "h\x0f\U00024ef7", // 𤻷
+ 0x24ef8: "h\x0f\U00024ef8", // 𤻸
+ 0x24ef9: "h\x0f\U00024ef9", // 𤻹
+ 0x24efa: "h\x0f\U00024efa", // 𤻺
+ 0x24efb: "h\x0f\U00024efb", // 𤻻
+ 0x24efc: "h\x0f\U00024efc", // 𤻼
+ 0x24efd: "h\x0f\U00024efd", // 𤻽
+ 0x24efe: "h\x0f\U00024efe", // 𤻾
+ 0x24eff: "h\x0f\U00024eff", // 𤻿
+ 0x24f00: "h\x10\U00024f00", // 𤼀
+ 0x24f01: "h\x10\U00024f01", // 𤼁
+ 0x24f02: "h\x10\U00024f02", // 𤼂
+ 0x24f03: "h\x10\U00024f03", // 𤼃
+ 0x24f04: "h\x10\U00024f04", // 𤼄
+ 0x24f05: "h\x10\U00024f05", // 𤼅
+ 0x24f06: "h\x10\U00024f06", // 𤼆
+ 0x24f07: "h\x10\U00024f07", // 𤼇
+ 0x24f08: "h\x10\U00024f08", // 𤼈
+ 0x24f09: "h\x10\U00024f09", // 𤼉
+ 0x24f0a: "h\x10\U00024f0a", // 𤼊
+ 0x24f0b: "h\x11\U00024f0b", // 𤼋
+ 0x24f0c: "h\x11\U00024f0c", // 𤼌
+ 0x24f0d: "h\x11\U00024f0d", // 𤼍
+ 0x24f0e: "h\x11\U00024f0e", // 𤼎
+ 0x24f0f: "h\x11\U00024f0f", // 𤼏
+ 0x24f10: "h\x12\U00024f10", // 𤼐
+ 0x24f11: "h\x12\U00024f11", // 𤼑
+ 0x24f12: "h\x12\U00024f12", // 𤼒
+ 0x24f13: "h\x12\U00024f13", // 𤼓
+ 0x24f14: "h\x12\U00024f14", // 𤼔
+ 0x24f15: "h\x12\U00024f15", // 𤼕
+ 0x24f16: "h\x12\U00024f16", // 𤼖
+ 0x24f17: "h\x12\U00024f17", // 𤼗
+ 0x24f18: "h\x13\U00024f18", // 𤼘
+ 0x24f19: "h\x13\U00024f19", // 𤼙
+ 0x24f1a: "h\x13\U00024f1a", // 𤼚
+ 0x24f1b: "h\x13\U00024f1b", // 𤼛
+ 0x24f1c: "h\x14\U00024f1c", // 𤼜
+ 0x24f1d: "h\x14\U00024f1d", // 𤼝
+ 0x24f1e: "h\x14\U00024f1e", // 𤼞
+ 0x24f1f: "h\x15\U00024f1f", // 𤼟
+ 0x24f20: "h\x15\U00024f20", // 𤼠
+ 0x24f21: "h\x15\U00024f21", // 𤼡
+ 0x24f22: "h\x16\U00024f22", // 𤼢
+ 0x24f23: "h\x17\U00024f23", // 𤼣
+ 0x24f24: "h\x18\U00024f24", // 𤼤
+ 0x24f25: "i\x02\U00024f25", // 𤼥
+ 0x24f26: "i\x02\U00024f26", // 𤼦
+ 0x24f27: "i\x04\U00024f27", // 𤼧
+ 0x24f28: "i\x04\U00024f28", // 𤼨
+ 0x24f29: "i\x05\U00024f29", // 𤼩
+ 0x24f2a: "i\x05\U00024f2a", // 𤼪
+ 0x24f2b: "i\x05\U00024f2b", // 𤼫
+ 0x24f2c: "i\x06\U00024f2c", // 𤼬
+ 0x24f2d: "i\x06\U00024f2d", // 𤼭
+ 0x24f2e: "i\x06\U00024f2e", // 𤼮
+ 0x24f2f: "i\a\U00024f2f", // 𤼯
+ 0x24f30: "i\a\U00024f30", // 𤼰
+ 0x24f31: "i\a\U00024f31", // 𤼱
+ 0x24f32: "i\a\U00024f32", // 𤼲
+ 0x24f33: "i\b\U00024f33", // 𤼳
+ 0x24f34: "i\b\U00024f34", // 𤼴
+ 0x24f35: "i\b\U00024f35", // 𤼵
+ 0x24f36: "i\t\U00024f36", // 𤼶
+ 0x24f37: "i\n\U00024f37", // 𤼷
+ 0x24f38: "i\n\U00024f38", // 𤼸
+ 0x24f39: "i\v\U00024f39", // 𤼹
+ 0x24f3a: "i\v\U00024f3a", // 𤼺
+ 0x24f3b: "i\x0f\U00024f3b", // 𤼻
+ 0x24f3c: "i\v\U00024f3c", // 𤼼
+ 0x24f3d: "j\x01\U00024f3d", // 𤼽
+ 0x24f3e: "j\x01\U00024f3e", // 𤼾
+ 0x24f3f: "j\x02\U00024f3f", // 𤼿
+ 0x24f40: "j\x02\U00024f40", // 𤽀
+ 0x24f41: "j\x02\U00024f41", // 𤽁
+ 0x24f42: "j\x03\U00024f42", // 𤽂
+ 0x24f43: "j\x03\U00024f43", // 𤽃
+ 0x24f44: "j\x03\U00024f44", // 𤽄
+ 0x24f45: "j\x03\U00024f45", // 𤽅
+ 0x24f46: "j\x03\U00024f46", // 𤽆
+ 0x24f47: "j\x03\U00024f47", // 𤽇
+ 0x24f48: "j\x04\U00024f48", // 𤽈
+ 0x24f49: "j\x04\U00024f49", // 𤽉
+ 0x24f4a: "j\x04\U00024f4a", // 𤽊
+ 0x24f4b: "j\x04\U00024f4b", // 𤽋
+ 0x24f4c: "j\x04\U00024f4c", // 𤽌
+ 0x24f4d: "j\x04\U00024f4d", // 𤽍
+ 0x24f4e: "j\x04\U00024f4e", // 𤽎
+ 0x24f4f: "j\x04\U00024f4f", // 𤽏
+ 0x24f50: "j\x04\U00024f50", // 𤽐
+ 0x24f51: "j\x04\U00024f51", // 𤽑
+ 0x24f52: "j\x04\U00024f52", // 𤽒
+ 0x24f53: "j\x04\U00024f53", // 𤽓
+ 0x24f54: "j\x04\U00024f54", // 𤽔
+ 0x24f55: "j\x04\U00024f55", // 𤽕
+ 0x24f56: "j\x04\U00024f56", // 𤽖
+ 0x24f57: "j\x04\U00024f57", // 𤽗
+ 0x24f58: "j\x05\U00024f58", // 𤽘
+ 0x24f59: "j\x05\U00024f59", // 𤽙
+ 0x24f5a: "j\x05\U00024f5a", // 𤽚
+ 0x24f5b: "j\x05\U00024f5b", // 𤽛
+ 0x24f5c: "j\x05\U00024f5c", // 𤽜
+ 0x24f5d: "j\x05\U00024f5d", // 𤽝
+ 0x24f5e: "j\x05\U00024f5e", // 𤽞
+ 0x24f5f: "j\x05\U00024f5f", // 𤽟
+ 0x24f60: "j\x05\U00024f60", // 𤽠
+ 0x24f61: "j\x05\U00024f61", // 𤽡
+ 0x24f62: "j\x05\U00024f62", // 𤽢
+ 0x24f63: "j\x05\U00024f63", // 𤽣
+ 0x24f64: "j\x05\U00024f64", // 𤽤
+ 0x24f65: "j\x06\U00024f65", // 𤽥
+ 0x24f66: "j\x06\U00024f66", // 𤽦
+ 0x24f67: "j\x06\U00024f67", // 𤽧
+ 0x24f68: "j\x06\U00024f68", // 𤽨
+ 0x24f69: "j\x06\U00024f69", // 𤽩
+ 0x24f6a: "j\x06\U00024f6a", // 𤽪
+ 0x24f6b: "j\x06\U00024f6b", // 𤽫
+ 0x24f6c: "j\a\U00024f6c", // 𤽬
+ 0x24f6d: "j\a\U00024f6d", // 𤽭
+ 0x24f6e: "j\a\U00024f6e", // 𤽮
+ 0x24f6f: "j\a\U00024f6f", // 𤽯
+ 0x24f70: "j\a\U00024f70", // 𤽰
+ 0x24f71: "j\a\U00024f71", // 𤽱
+ 0x24f72: "j\a\U00024f72", // 𤽲
+ 0x24f73: "j\a\U00024f73", // 𤽳
+ 0x24f74: "j\a\U00024f74", // 𤽴
+ 0x24f75: "j\a\U00024f75", // 𤽵
+ 0x24f76: "j\a\U00024f76", // 𤽶
+ 0x24f77: "j\a\U00024f77", // 𤽷
+ 0x24f78: "j\a\U00024f78", // 𤽸
+ 0x24f79: "j\b\U00024f79", // 𤽹
+ 0x24f7a: "j\b\U00024f7a", // 𤽺
+ 0x24f7b: "j\b\U00024f7b", // 𤽻
+ 0x24f7c: "j\b\U00024f7c", // 𤽼
+ 0x24f7d: "j\b\U00024f7d", // 𤽽
+ 0x24f7e: "j\b\U00024f7e", // 𤽾
+ 0x24f7f: "j\b\U00024f7f", // 𤽿
+ 0x24f80: "j\b\U00024f80", // 𤾀
+ 0x24f81: "j\b\U00024f81", // 𤾁
+ 0x24f82: "j\b\U00024f82", // 𤾂
+ 0x24f83: "j\b\U00024f83", // 𤾃
+ 0x24f84: "j\b\U00024f84", // 𤾄
+ 0x24f85: "j\b\U00024f85", // 𤾅
+ 0x24f86: "j\b\U00024f86", // 𤾆
+ 0x24f87: "j\b\U00024f87", // 𤾇
+ 0x24f88: "j\t\U00024f88", // 𤾈
+ 0x24f89: "j\t\U00024f89", // 𤾉
+ 0x24f8a: "j\t\U00024f8a", // 𤾊
+ 0x24f8b: "j\t\U00024f8b", // 𤾋
+ 0x24f8c: "j\t\U00024f8c", // 𤾌
+ 0x24f8d: "j\t\U00024f8d", // 𤾍
+ 0x24f8e: "j\t\U00024f8e", // 𤾎
+ 0x24f8f: "j\t\U00024f8f", // 𤾏
+ 0x24f90: "j\t\U00024f90", // 𤾐
+ 0x24f91: "j\t\U00024f91", // 𤾑
+ 0x24f92: "j\t\U00024f92", // 𤾒
+ 0x24f93: "j\t\U00024f93", // 𤾓
+ 0x24f94: "j\n\U00024f94", // 𤾔
+ 0x24f95: "j\n\U00024f95", // 𤾕
+ 0x24f96: "j\n\U00024f96", // 𤾖
+ 0x24f97: "j\n\U00024f97", // 𤾗
+ 0x24f98: "j\n\U00024f98", // 𤾘
+ 0x24f99: "j\n\U00024f99", // 𤾙
+ 0x24f9a: "j\n\U00024f9a", // 𤾚
+ 0x24f9b: "j\v\U00024f9b", // 𤾛
+ 0x24f9c: "j\v\U00024f9c", // 𤾜
+ 0x24f9d: "j\v\U00024f9d", // 𤾝
+ 0x24f9e: "j\v\U00024f9e", // 𤾞
+ 0x24f9f: "j\v\U00024f9f", // 𤾟
+ 0x24fa0: "j\f\U00024fa0", // 𤾠
+ 0x24fa1: "j\f\U00024fa1", // 𤾡
+ 0x24fa2: "j\f\U00024fa2", // 𤾢
+ 0x24fa3: "j\f\U00024fa3", // 𤾣
+ 0x24fa4: "j\f\U00024fa4", // 𤾤
+ 0x24fa5: "j\f\U00024fa5", // 𤾥
+ 0x24fa6: "j\f\U00024fa6", // 𤾦
+ 0x24fa7: "j\r\U00024fa7", // 𤾧
+ 0x24fa8: "j\r\U00024fa8", // 𤾨
+ 0x24fa9: "j\r\U00024fa9", // 𤾩
+ 0x24faa: "j\r\U00024faa", // 𤾪
+ 0x24fab: "j\x0e\U00024fab", // 𤾫
+ 0x24fac: "j\x0e\U00024fac", // 𤾬
+ 0x24fad: "j\x0e\U00024fad", // 𤾭
+ 0x24fae: "j\x0e\U00024fae", // 𤾮
+ 0x24faf: "j\x0e\U00024faf", // 𤾯
+ 0x24fb0: "j\x0e\U00024fb0", // 𤾰
+ 0x24fb1: "j\x0e\U00024fb1", // 𤾱
+ 0x24fb2: "j\x0e\U00024fb2", // 𤾲
+ 0x24fb3: "j\x0e\U00024fb3", // 𤾳
+ 0x24fb4: "j\x0f\U00024fb4", // 𤾴
+ 0x24fb5: "j\x0f\U00024fb5", // 𤾵
+ 0x24fb6: "j\x0f\U00024fb6", // 𤾶
+ 0x24fb7: "j\x0f\U00024fb7", // 𤾷
+ 0x24fb8: "j\x10\U00024fb8", // 𤾸
+ 0x24fb9: "j\x10\U00024fb9", // 𤾹
+ 0x24fba: "j\x10\U00024fba", // 𤾺
+ 0x24fbb: "j\x11\U00024fbb", // 𤾻
+ 0x24fbc: "j\x11\U00024fbc", // 𤾼
+ 0x24fbd: "j\x11\U00024fbd", // 𤾽
+ 0x24fbe: "j\x12\U00024fbe", // 𤾾
+ 0x24fbf: "j\x12\U00024fbf", // 𤾿
+ 0x24fc0: "j\x13\U00024fc0", // 𤿀
+ 0x24fc1: "j\x13\U00024fc1", // 𤿁
+ 0x24fc2: "j\x13\U00024fc2", // 𤿂
+ 0x24fc3: "j\x13\U00024fc3", // 𤿃
+ 0x24fc4: "j\x14\U00024fc4", // 𤿄
+ 0x24fc5: "j\x18\U00024fc5", // 𤿅
+ 0x24fc6: "k\x02\U00024fc6", // 𤿆
+ 0x24fc7: "k\x02\U00024fc7", // 𤿇
+ 0x24fc8: "k\x03\U00024fc8", // 𤿈
+ 0x24fc9: "k\x03\U00024fc9", // 𤿉
+ 0x24fca: "k\x03\U00024fca", // 𤿊
+ 0x24fcb: "k\x03\U00024fcb", // 𤿋
+ 0x24fcc: "k\x03\U00024fcc", // 𤿌
+ 0x24fcd: "k\x03\U00024fcd", // 𤿍
+ 0x24fce: "k\x04\U00024fce", // 𤿎
+ 0x24fcf: "k\x04\U00024fcf", // 𤿏
+ 0x24fd0: "k\x04\U00024fd0", // 𤿐
+ 0x24fd1: "k\x04\U00024fd1", // 𤿑
+ 0x24fd2: "k\x04\U00024fd2", // 𤿒
+ 0x24fd3: "k\x04\U00024fd3", // 𤿓
+ 0x24fd4: "k\x04\U00024fd4", // 𤿔
+ 0x24fd5: "k\x05\U00024fd5", // 𤿕
+ 0x24fd6: "k\x05\U00024fd6", // 𤿖
+ 0x24fd7: "k\x05\U00024fd7", // 𤿗
+ 0x24fd8: "k\x05\U00024fd8", // 𤿘
+ 0x24fd9: "k\x05\U00024fd9", // 𤿙
+ 0x24fda: "k\x05\U00024fda", // 𤿚
+ 0x24fdb: "k\x05\U00024fdb", // 𤿛
+ 0x24fdc: "k\x05\U00024fdc", // 𤿜
+ 0x24fdd: "k\x05\U00024fdd", // 𤿝
+ 0x24fde: "k\x05\U00024fde", // 𤿞
+ 0x24fdf: "k\x06\U00024fdf", // 𤿟
+ 0x24fe0: "k\x06\U00024fe0", // 𤿠
+ 0x24fe1: "k\x06\U00024fe1", // 𤿡
+ 0x24fe2: "k\x06\U00024fe2", // 𤿢
+ 0x24fe3: "k\x06\U00024fe3", // 𤿣
+ 0x24fe4: "k\x06\U00024fe4", // 𤿤
+ 0x24fe5: "k\x06\U00024fe5", // 𤿥
+ 0x24fe6: "k\x06\U00024fe6", // 𤿦
+ 0x24fe7: "k\a\U00024fe7", // 𤿧
+ 0x24fe8: "k\a\U00024fe8", // 𤿨
+ 0x24fe9: "k\a\U00024fe9", // 𤿩
+ 0x24fea: "k\a\U00024fea", // 𤿪
+ 0x24feb: "k\a\U00024feb", // 𤿫
+ 0x24fec: "k\a\U00024fec", // 𤿬
+ 0x24fed: "k\a\U00024fed", // 𤿭
+ 0x24fee: "k\a\U00024fee", // 𤿮
+ 0x24fef: "k\b\U00024fef", // 𤿯
+ 0x24ff0: "k\a\U00024ff0", // 𤿰
+ 0x24ff1: "k\a\U00024ff1", // 𤿱
+ 0x24ff2: "k\a\U00024ff2", // 𤿲
+ 0x24ff3: "k\b\U00024ff3", // 𤿳
+ 0x24ff4: "k\b\U00024ff4", // 𤿴
+ 0x24ff5: "k\b\U00024ff5", // 𤿵
+ 0x24ff6: "k\b\U00024ff6", // 𤿶
+ 0x24ff7: "k\b\U00024ff7", // 𤿷
+ 0x24ff8: "k\b\U00024ff8", // 𤿸
+ 0x24ff9: "k\b\U00024ff9", // 𤿹
+ 0x24ffa: "k\b\U00024ffa", // 𤿺
+ 0x24ffb: "k\b\U00024ffb", // 𤿻
+ 0x24ffc: "k\b\U00024ffc", // 𤿼
+ 0x24ffd: "k\b\U00024ffd", // 𤿽
+ 0x24ffe: "k\b\U00024ffe", // 𤿾
+ 0x24fff: "k\b\U00024fff", // 𤿿
+ 0x25000: "k\t\U00025000", // 𥀀
+ 0x25001: "k\t\U00025001", // 𥀁
+ 0x25002: "k\t\U00025002", // 𥀂
+ 0x25003: "k\t\U00025003", // 𥀃
+ 0x25004: "k\t\U00025004", // 𥀄
+ 0x25005: "k\t\U00025005", // 𥀅
+ 0x25006: "k\t\U00025006", // 𥀆
+ 0x25007: "k\t\U00025007", // 𥀇
+ 0x25008: "k\t\U00025008", // 𥀈
+ 0x25009: "k\t\U00025009", // 𥀉
+ 0x2500a: "k\t\U0002500a", // 𥀊
+ 0x2500b: "k\t\U0002500b", // 𥀋
+ 0x2500c: "k\t\U0002500c", // 𥀌
+ 0x2500d: "k\n\U0002500d", // 𥀍
+ 0x2500e: "k\n\U0002500e", // 𥀎
+ 0x2500f: "k\n\U0002500f", // 𥀏
+ 0x25010: "k\n\U00025010", // 𥀐
+ 0x25011: "k\n\U00025011", // 𥀑
+ 0x25012: "k\n\U00025012", // 𥀒
+ 0x25013: "k\n\U00025013", // 𥀓
+ 0x25014: "k\v\U00025014", // 𥀔
+ 0x25015: "k\v\U00025015", // 𥀕
+ 0x25016: "k\v\U00025016", // 𥀖
+ 0x25017: "k\v\U00025017", // 𥀗
+ 0x25018: "k\v\U00025018", // 𥀘
+ 0x25019: "k\v\U00025019", // 𥀙
+ 0x2501a: "k\v\U0002501a", // 𥀚
+ 0x2501b: "k\v\U0002501b", // 𥀛
+ 0x2501c: "k\v\U0002501c", // 𥀜
+ 0x2501d: "k\v\U0002501d", // 𥀝
+ 0x2501e: "k\v\U0002501e", // 𥀞
+ 0x2501f: "k\f\U0002501f", // 𥀟
+ 0x25020: "k\f\U00025020", // 𥀠
+ 0x25021: "k\f\U00025021", // 𥀡
+ 0x25022: "k\r\U00025022", // 𥀢
+ 0x25023: "k\r\U00025023", // 𥀣
+ 0x25024: "k\r\U00025024", // 𥀤
+ 0x25025: "k\r\U00025025", // 𥀥
+ 0x25026: "k\r\U00025026", // 𥀦
+ 0x25027: "k\r\U00025027", // 𥀧
+ 0x25028: "k\r\U00025028", // 𥀨
+ 0x25029: "k\r\U00025029", // 𥀩
+ 0x2502a: "k\r\U0002502a", // 𥀪
+ 0x2502b: "k\x0e\U0002502b", // 𥀫
+ 0x2502c: "k\x0e\U0002502c", // 𥀬
+ 0x2502d: "k\x0e\U0002502d", // 𥀭
+ 0x2502e: "k\x0e\U0002502e", // 𥀮
+ 0x2502f: "k\x0f\U0002502f", // 𥀯
+ 0x25030: "k\x0f\U00025030", // 𥀰
+ 0x25031: "k\x0f\U00025031", // 𥀱
+ 0x25032: "k\x0f\U00025032", // 𥀲
+ 0x25033: "k\x0f\U00025033", // 𥀳
+ 0x25034: "k\x10\U00025034", // 𥀴
+ 0x25035: "k\x10\U00025035", // 𥀵
+ 0x25036: "k\x11\U00025036", // 𥀶
+ 0x25037: "k\x11\U00025037", // 𥀷
+ 0x25038: "k\x11\U00025038", // 𥀸
+ 0x25039: "k\x13\U00025039", // 𥀹
+ 0x2503a: "k\x13\U0002503a", // 𥀺
+ 0x2503b: "\xcf\f\U0002503b", // 𥀻
+ 0x2503c: "\xcf\r\U0002503c", // 𥀼
+ 0x2503d: "\xcf\x10\U0002503d", // 𥀽
+ 0x2503e: "\xcf\x14\U0002503e", // 𥀾
+ 0x2503f: "l\x02\U0002503f", // 𥀿
+ 0x25040: "l\x02\U00025040", // 𥁀
+ 0x25041: "l\x03\U00025041", // 𥁁
+ 0x25042: "l\x03\U00025042", // 𥁂
+ 0x25043: "l\x03\U00025043", // 𥁃
+ 0x25044: "l\x03\U00025044", // 𥁄
+ 0x25045: "l\x03\U00025045", // 𥁅
+ 0x25046: "l\x04\U00025046", // 𥁆
+ 0x25047: "l\x04\U00025047", // 𥁇
+ 0x25048: "l\x04\U00025048", // 𥁈
+ 0x25049: "l\x04\U00025049", // 𥁉
+ 0x2504a: "l\x04\U0002504a", // 𥁊
+ 0x2504b: "l\x04\U0002504b", // 𥁋
+ 0x2504c: "l\x04\U0002504c", // 𥁌
+ 0x2504d: "l\x04\U0002504d", // 𥁍
+ 0x2504e: "l\x05\U0002504e", // 𥁎
+ 0x2504f: "l\x05\U0002504f", // 𥁏
+ 0x25050: "l\x05\U00025050", // 𥁐
+ 0x25051: "l\x05\U00025051", // 𥁑
+ 0x25052: "l\x05\U00025052", // 𥁒
+ 0x25053: "l\x05\U00025053", // 𥁓
+ 0x25054: "l\x05\U00025054", // 𥁔
+ 0x25055: "l\x05\U00025055", // 𥁕
+ 0x25056: "l\x05\U00025056", // 𥁖
+ 0x25057: "l\x05\U00025057", // 𥁗
+ 0x25058: "l\x05\U00025058", // 𥁘
+ 0x25059: "l\x05\U00025059", // 𥁙
+ 0x2505a: "l\x05\U0002505a", // 𥁚
+ 0x2505b: "l\x05\U0002505b", // 𥁛
+ 0x2505c: "l\x05\U0002505c", // 𥁜
+ 0x2505d: "l\x05\U0002505d", // 𥁝
+ 0x2505e: "l\x06\U0002505e", // 𥁞
+ 0x2505f: "l\x06\U0002505f", // 𥁟
+ 0x25060: "l\x06\U00025060", // 𥁠
+ 0x25061: "l\x06\U00025061", // 𥁡
+ 0x25062: "l\x06\U00025062", // 𥁢
+ 0x25063: "l\x06\U00025063", // 𥁣
+ 0x25064: "l\x06\U00025064", // 𥁤
+ 0x25065: "l\x06\U00025065", // 𥁥
+ 0x25066: "l\x06\U00025066", // 𥁦
+ 0x25067: "l\x06\U00025067", // 𥁧
+ 0x25068: "l\x06\U00025068", // 𥁨
+ 0x25069: "l\x06\U00025069", // 𥁩
+ 0x2506a: "l\x06\U0002506a", // 𥁪
+ 0x2506b: "l\x05\U0002506b", // 𥁫
+ 0x2506c: "l\a\U0002506c", // 𥁬
+ 0x2506d: "l\a\U0002506d", // 𥁭
+ 0x2506e: "l\a\U0002506e", // 𥁮
+ 0x2506f: "l\a\U0002506f", // 𥁯
+ 0x25070: "l\a\U00025070", // 𥁰
+ 0x25071: "l\a\U00025071", // 𥁱
+ 0x25072: "l\a\U00025072", // 𥁲
+ 0x25073: "l\a\U00025073", // 𥁳
+ 0x25074: "l\a\U00025074", // 𥁴
+ 0x25075: "l\a\U00025075", // 𥁵
+ 0x25076: "l\a\U00025076", // 𥁶
+ 0x25077: "l\b\U00025077", // 𥁷
+ 0x25078: "l\b\U00025078", // 𥁸
+ 0x25079: "l\b\U00025079", // 𥁹
+ 0x2507a: "l\b\U0002507a", // 𥁺
+ 0x2507b: "l\b\U0002507b", // 𥁻
+ 0x2507c: "l\b\U0002507c", // 𥁼
+ 0x2507d: "l\b\U0002507d", // 𥁽
+ 0x2507e: "l\b\U0002507e", // 𥁾
+ 0x2507f: "l\b\U0002507f", // 𥁿
+ 0x25080: "l\b\U00025080", // 𥂀
+ 0x25081: "l\b\U00025081", // 𥂁
+ 0x25082: "l\b\U00025082", // 𥂂
+ 0x25083: "l\t\U00025083", // 𥂃
+ 0x25084: "l\t\U00025084", // 𥂄
+ 0x25085: "l\t\U00025085", // 𥂅
+ 0x25086: "l\t\U00025086", // 𥂆
+ 0x25087: "l\n\U00025087", // 𥂇
+ 0x25088: "l\n\U00025088", // 𥂈
+ 0x25089: "l\n\U00025089", // 𥂉
+ 0x2508a: "l\n\U0002508a", // 𥂊
+ 0x2508b: "l\n\U0002508b", // 𥂋
+ 0x2508c: "l\n\U0002508c", // 𥂌
+ 0x2508d: "l\n\U0002508d", // 𥂍
+ 0x2508e: "l\n\U0002508e", // 𥂎
+ 0x2508f: "l\n\U0002508f", // 𥂏
+ 0x25090: "l\n\U00025090", // 𥂐
+ 0x25091: "l\n\U00025091", // 𥂑
+ 0x25092: "l\n\U00025092", // 𥂒
+ 0x25093: "l\v\U00025093", // 𥂓
+ 0x25094: "l\v\U00025094", // 𥂔
+ 0x25095: "l\v\U00025095", // 𥂕
+ 0x25096: "l\v\U00025096", // 𥂖
+ 0x25097: "l\v\U00025097", // 𥂗
+ 0x25098: "l\v\U00025098", // 𥂘
+ 0x25099: "l\v\U00025099", // 𥂙
+ 0x2509a: "l\v\U0002509a", // 𥂚
+ 0x2509b: "l\v\U0002509b", // 𥂛
+ 0x2509c: "l\v\U0002509c", // 𥂜
+ 0x2509d: "l\v\U0002509d", // 𥂝
+ 0x2509e: "l\v\U0002509e", // 𥂞
+ 0x2509f: "l\v\U0002509f", // 𥂟
+ 0x250a0: "l\v\U000250a0", // 𥂠
+ 0x250a1: "l\v\U000250a1", // 𥂡
+ 0x250a2: "l\v\U000250a2", // 𥂢
+ 0x250a3: "l\v\U000250a3", // 𥂣
+ 0x250a4: "l\v\U000250a4", // 𥂤
+ 0x250a5: "l\f\U000250a5", // 𥂥
+ 0x250a6: "l\f\U000250a6", // 𥂦
+ 0x250a7: "l\f\U000250a7", // 𥂧
+ 0x250a8: "l\f\U000250a8", // 𥂨
+ 0x250a9: "l\f\U000250a9", // 𥂩
+ 0x250aa: "l\f\U000250aa", // 𥂪
+ 0x250ab: "l\f\U000250ab", // 𥂫
+ 0x250ac: "l\f\U000250ac", // 𥂬
+ 0x250ad: "l\f\U000250ad", // 𥂭
+ 0x250ae: "l\f\U000250ae", // 𥂮
+ 0x250af: "l\f\U000250af", // 𥂯
+ 0x250b0: "l\f\U000250b0", // 𥂰
+ 0x250b1: "l\f\U000250b1", // 𥂱
+ 0x250b2: "l\f\U000250b2", // 𥂲
+ 0x250b3: "\x0f\x0f\U000250b3", // 𥂳
+ 0x250b4: "l\f\U000250b4", // 𥂴
+ 0x250b5: "l\f\U000250b5", // 𥂵
+ 0x250b6: "l\f\U000250b6", // 𥂶
+ 0x250b7: "l\f\U000250b7", // 𥂷
+ 0x250b8: "l\r\U000250b8", // 𥂸
+ 0x250b9: "l\r\U000250b9", // 𥂹
+ 0x250ba: "l\r\U000250ba", // 𥂺
+ 0x250bb: "l\x0e\U000250bb", // 𥂻
+ 0x250bc: "l\r\U000250bc", // 𥂼
+ 0x250bd: "l\r\U000250bd", // 𥂽
+ 0x250be: "l\r\U000250be", // 𥂾
+ 0x250bf: "l\r\U000250bf", // 𥂿
+ 0x250c0: "l\r\U000250c0", // 𥃀
+ 0x250c1: "l\x0e\U000250c1", // 𥃁
+ 0x250c2: "l\x0e\U000250c2", // 𥃂
+ 0x250c3: "l\x0e\U000250c3", // 𥃃
+ 0x250c4: "l\x0e\U000250c4", // 𥃄
+ 0x250c5: "l\x0e\U000250c5", // 𥃅
+ 0x250c6: "l\x0e\U000250c6", // 𥃆
+ 0x250c7: "l\x0f\U000250c7", // 𥃇
+ 0x250c8: "l\x0f\U000250c8", // 𥃈
+ 0x250c9: "l\x0f\U000250c9", // 𥃉
+ 0x250ca: "l\x0f\U000250ca", // 𥃊
+ 0x250cb: "l\x0f\U000250cb", // 𥃋
+ 0x250cc: "l\x0f\U000250cc", // 𥃌
+ 0x250cd: "l\x0f\U000250cd", // 𥃍
+ 0x250ce: "l\x0f\U000250ce", // 𥃎
+ 0x250cf: "l\x0f\U000250cf", // 𥃏
+ 0x250d0: "l\x0f\U000250d0", // 𥃐
+ 0x250d1: "l\x0f\U000250d1", // 𥃑
+ 0x250d2: "l\x10\U000250d2", // 𥃒
+ 0x250d3: "l\x11\U000250d3", // 𥃓
+ 0x250d4: "l\x11\U000250d4", // 𥃔
+ 0x250d5: "l\x11\U000250d5", // 𥃕
+ 0x250d6: "l\x11\U000250d6", // 𥃖
+ 0x250d7: "l\x11\U000250d7", // 𥃗
+ 0x250d8: "l\x12\U000250d8", // 𥃘
+ 0x250d9: "l\x12\U000250d9", // 𥃙
+ 0x250da: "l\x13\U000250da", // 𥃚
+ 0x250db: "l\x13\U000250db", // 𥃛
+ 0x250dc: "l\x13\U000250dc", // 𥃜
+ 0x250dd: "l\x13\U000250dd", // 𥃝
+ 0x250de: "l\x12\U000250de", // 𥃞
+ 0x250df: "l\x14\U000250df", // 𥃟
+ 0x250e0: "l\x14\U000250e0", // 𥃠
+ 0x250e1: "l\x15\U000250e1", // 𥃡
+ 0x250e2: "l\x19\U000250e2", // 𥃢
+ 0x250e3: "l\x1c\U000250e3", // 𥃣
+ 0x250e4: "m\x01\U000250e4", // 𥃤
+ 0x250e5: "m\x01\U000250e5", // 𥃥
+ 0x250e6: "m\x02\U000250e6", // 𥃦
+ 0x250e7: "m\x02\U000250e7", // 𥃧
+ 0x250e8: "m\x02\U000250e8", // 𥃨
+ 0x250e9: "m\x02\U000250e9", // 𥃩
+ 0x250ea: "m\x02\U000250ea", // 𥃪
+ 0x250eb: "m\x02\U000250eb", // 𥃫
+ 0x250ec: "m\x02\U000250ec", // 𥃬
+ 0x250ed: "m\x02\U000250ed", // 𥃭
+ 0x250ee: "m\x02\U000250ee", // 𥃮
+ 0x250ef: "m\x02\U000250ef", // 𥃯
+ 0x250f0: "m\x02\U000250f0", // 𥃰
+ 0x250f1: "m\x02\U000250f1", // 𥃱
+ 0x250f2: "m\x03\U000250f2", // 𥃲
+ 0x250f3: "m\x03\U000250f3", // 𥃳
+ 0x250f4: "m\x03\U000250f4", // 𥃴
+ 0x250f5: "m\x03\U000250f5", // 𥃵
+ 0x250f6: "m\x03\U000250f6", // 𥃶
+ 0x250f7: "m\x03\U000250f7", // 𥃷
+ 0x250f8: "m\x03\U000250f8", // 𥃸
+ 0x250f9: "m\x03\U000250f9", // 𥃹
+ 0x250fa: "m\x03\U000250fa", // 𥃺
+ 0x250fb: "m\x03\U000250fb", // 𥃻
+ 0x250fc: "m\x03\U000250fc", // 𥃼
+ 0x250fd: "m\x03\U000250fd", // 𥃽
+ 0x250fe: "m\x03\U000250fe", // 𥃾
+ 0x250ff: "m\x03\U000250ff", // 𥃿
+ 0x25100: "m\x03\U00025100", // 𥄀
+ 0x25101: "m\x03\U00025101", // 𥄁
+ 0x25102: "m\x03\U00025102", // 𥄂
+ 0x25103: "m\x04\U00025103", // 𥄃
+ 0x25104: "m\x04\U00025104", // 𥄄
+ 0x25105: "m\x04\U00025105", // 𥄅
+ 0x25106: "m\x04\U00025106", // 𥄆
+ 0x25107: "m\x04\U00025107", // 𥄇
+ 0x25108: "m\x04\U00025108", // 𥄈
+ 0x25109: "m\x04\U00025109", // 𥄉
+ 0x2510a: "m\x04\U0002510a", // 𥄊
+ 0x2510b: "m\x04\U0002510b", // 𥄋
+ 0x2510c: "m\x04\U0002510c", // 𥄌
+ 0x2510d: "m\x04\U0002510d", // 𥄍
+ 0x2510e: "m\x04\U0002510e", // 𥄎
+ 0x2510f: "m\x04\U0002510f", // 𥄏
+ 0x25110: "m\x04\U00025110", // 𥄐
+ 0x25111: "m\x04\U00025111", // 𥄑
+ 0x25112: "m\x04\U00025112", // 𥄒
+ 0x25113: "m\x04\U00025113", // 𥄓
+ 0x25114: "m\x04\U00025114", // 𥄔
+ 0x25115: "m\x04\U00025115", // 𥄕
+ 0x25116: "m\x04\U00025116", // 𥄖
+ 0x25117: "m\x04\U00025117", // 𥄗
+ 0x25118: "m\x04\U00025118", // 𥄘
+ 0x25119: "m\x04\U00025119", // 𥄙
+ 0x2511a: "m\x04\U0002511a", // 𥄚
+ 0x2511b: "m\x04\U0002511b", // 𥄛
+ 0x2511c: "m\x04\U0002511c", // 𥄜
+ 0x2511d: "m\x04\U0002511d", // 𥄝
+ 0x2511e: "m\x04\U0002511e", // 𥄞
+ 0x2511f: "m\x04\U0002511f", // 𥄟
+ 0x25120: "m\x04\U00025120", // 𥄠
+ 0x25121: "m\x04\U00025121", // 𥄡
+ 0x25122: "m\x04\U00025122", // 𥄢
+ 0x25123: "m\x04\U00025123", // 𥄣
+ 0x25124: "m\x04\U00025124", // 𥄤
+ 0x25125: "m\x04\U00025125", // 𥄥
+ 0x25126: "m\x04\U00025126", // 𥄦
+ 0x25127: "m\x04\U00025127", // 𥄧
+ 0x25128: "m\x04\U00025128", // 𥄨
+ 0x25129: "m\x04\U00025129", // 𥄩
+ 0x2512a: "m\x04\U0002512a", // 𥄪
+ 0x2512b: "m\x04\U0002512b", // 𥄫
+ 0x2512c: "m\x04\U0002512c", // 𥄬
+ 0x2512d: "m\x04\U0002512d", // 𥄭
+ 0x2512e: "m\x04\U0002512e", // 𥄮
+ 0x2512f: "m\x04\U0002512f", // 𥄯
+ 0x25130: "m\x04\U00025130", // 𥄰
+ 0x25131: "m\x05\U00025131", // 𥄱
+ 0x25132: "m\x05\U00025132", // 𥄲
+ 0x25133: "m\x05\U00025133", // 𥄳
+ 0x25134: "m\x05\U00025134", // 𥄴
+ 0x25135: "m\x05\U00025135", // 𥄵
+ 0x25136: "m\x05\U00025136", // 𥄶
+ 0x25137: "m\x05\U00025137", // 𥄷
+ 0x25138: "m\x05\U00025138", // 𥄸
+ 0x25139: "m\x05\U00025139", // 𥄹
+ 0x2513a: "m\x05\U0002513a", // 𥄺
+ 0x2513b: "m\x05\U0002513b", // 𥄻
+ 0x2513c: "m\x05\U0002513c", // 𥄼
+ 0x2513d: "m\x05\U0002513d", // 𥄽
+ 0x2513e: "m\x05\U0002513e", // 𥄾
+ 0x2513f: "m\x05\U0002513f", // 𥄿
+ 0x25140: "m\x05\U00025140", // 𥅀
+ 0x25141: "m\x05\U00025141", // 𥅁
+ 0x25142: "m\x05\U00025142", // 𥅂
+ 0x25143: "m\x05\U00025143", // 𥅃
+ 0x25144: "m\x05\U00025144", // 𥅄
+ 0x25145: "m\x05\U00025145", // 𥅅
+ 0x25146: "m\x05\U00025146", // 𥅆
+ 0x25147: "m\x05\U00025147", // 𥅇
+ 0x25148: "m\x05\U00025148", // 𥅈
+ 0x25149: "m\x05\U00025149", // 𥅉
+ 0x2514a: "m\x05\U0002514a", // 𥅊
+ 0x2514b: "m\x05\U0002514b", // 𥅋
+ 0x2514c: "m\x05\U0002514c", // 𥅌
+ 0x2514d: "m\x05\U0002514d", // 𥅍
+ 0x2514e: "m\x05\U0002514e", // 𥅎
+ 0x2514f: "m\x05\U0002514f", // 𥅏
+ 0x25150: "m\x05\U00025150", // 𥅐
+ 0x25151: "m\x05\U00025151", // 𥅑
+ 0x25152: "m\x05\U00025152", // 𥅒
+ 0x25153: "m\x05\U00025153", // 𥅓
+ 0x25154: "m\x05\U00025154", // 𥅔
+ 0x25155: "m\x05\U00025155", // 𥅕
+ 0x25156: "m\x05\U00025156", // 𥅖
+ 0x25157: "m\x05\U00025157", // 𥅗
+ 0x25158: "m\x05\U00025158", // 𥅘
+ 0x25159: "m\x05\U00025159", // 𥅙
+ 0x2515a: "m\x06\U0002515a", // 𥅚
+ 0x2515b: "m\x06\U0002515b", // 𥅛
+ 0x2515c: "m\x06\U0002515c", // 𥅜
+ 0x2515d: "m\x06\U0002515d", // 𥅝
+ 0x2515e: "m\x06\U0002515e", // 𥅞
+ 0x2515f: "m\x06\U0002515f", // 𥅟
+ 0x25160: "m\x06\U00025160", // 𥅠
+ 0x25161: "m\x06\U00025161", // 𥅡
+ 0x25162: "m\x06\U00025162", // 𥅢
+ 0x25163: "m\x06\U00025163", // 𥅣
+ 0x25164: "m\x06\U00025164", // 𥅤
+ 0x25165: "m\x06\U00025165", // 𥅥
+ 0x25166: "m\x06\U00025166", // 𥅦
+ 0x25167: "m\x06\U00025167", // 𥅧
+ 0x25168: "m\x06\U00025168", // 𥅨
+ 0x25169: "m\x06\U00025169", // 𥅩
+ 0x2516a: "m\x06\U0002516a", // 𥅪
+ 0x2516b: "m\x06\U0002516b", // 𥅫
+ 0x2516c: "m\x06\U0002516c", // 𥅬
+ 0x2516d: "m\x06\U0002516d", // 𥅭
+ 0x2516e: "m\x06\U0002516e", // 𥅮
+ 0x2516f: "m\x06\U0002516f", // 𥅯
+ 0x25170: "m\x06\U00025170", // 𥅰
+ 0x25171: "m\x06\U00025171", // 𥅱
+ 0x25172: "m\x06\U00025172", // 𥅲
+ 0x25173: "m\x06\U00025173", // 𥅳
+ 0x25174: "m\x06\U00025174", // 𥅴
+ 0x25175: "m\x06\U00025175", // 𥅵
+ 0x25176: "m\x06\U00025176", // 𥅶
+ 0x25177: "m\x06\U00025177", // 𥅷
+ 0x25178: "m\x06\U00025178", // 𥅸
+ 0x25179: "m\x06\U00025179", // 𥅹
+ 0x2517a: "m\x06\U0002517a", // 𥅺
+ 0x2517b: "m\x06\U0002517b", // 𥅻
+ 0x2517c: "m\x06\U0002517c", // 𥅼
+ 0x2517d: "m\x06\U0002517d", // 𥅽
+ 0x2517e: "m\x06\U0002517e", // 𥅾
+ 0x2517f: "m\x06\U0002517f", // 𥅿
+ 0x25180: "m\x06\U00025180", // 𥆀
+ 0x25181: "m\x06\U00025181", // 𥆁
+ 0x25182: "m\x06\U00025182", // 𥆂
+ 0x25183: "m\x06\U00025183", // 𥆃
+ 0x25184: "m\x06\U00025184", // 𥆄
+ 0x25185: "m\x06\U00025185", // 𥆅
+ 0x25186: "m\x06\U00025186", // 𥆆
+ 0x25187: "m\x06\U00025187", // 𥆇
+ 0x25188: "m\x06\U00025188", // 𥆈
+ 0x25189: "m\x06\U00025189", // 𥆉
+ 0x2518a: "m\a\U0002518a", // 𥆊
+ 0x2518b: "m\a\U0002518b", // 𥆋
+ 0x2518c: "m\a\U0002518c", // 𥆌
+ 0x2518d: "m\a\U0002518d", // 𥆍
+ 0x2518e: "m\a\U0002518e", // 𥆎
+ 0x2518f: "m\a\U0002518f", // 𥆏
+ 0x25190: "m\a\U00025190", // 𥆐
+ 0x25191: "m\a\U00025191", // 𥆑
+ 0x25192: "m\a\U00025192", // 𥆒
+ 0x25193: "m\a\U00025193", // 𥆓
+ 0x25194: "m\a\U00025194", // 𥆔
+ 0x25195: "m\a\U00025195", // 𥆕
+ 0x25196: "m\a\U00025196", // 𥆖
+ 0x25197: "m\a\U00025197", // 𥆗
+ 0x25198: "m\a\U00025198", // 𥆘
+ 0x25199: "m\a\U00025199", // 𥆙
+ 0x2519a: "m\a\U0002519a", // 𥆚
+ 0x2519b: "m\a\U0002519b", // 𥆛
+ 0x2519c: "m\a\U0002519c", // 𥆜
+ 0x2519d: "m\a\U0002519d", // 𥆝
+ 0x2519e: "m\a\U0002519e", // 𥆞
+ 0x2519f: "m\a\U0002519f", // 𥆟
+ 0x251a0: "m\a\U000251a0", // 𥆠
+ 0x251a1: "m\a\U000251a1", // 𥆡
+ 0x251a2: "m\a\U000251a2", // 𥆢
+ 0x251a3: "m\a\U000251a3", // 𥆣
+ 0x251a4: "m\a\U000251a4", // 𥆤
+ 0x251a5: "m\a\U000251a5", // 𥆥
+ 0x251a6: "m\a\U000251a6", // 𥆦
+ 0x251a7: "m\a\U000251a7", // 𥆧
+ 0x251a8: "m\a\U000251a8", // 𥆨
+ 0x251a9: "m\a\U000251a9", // 𥆩
+ 0x251aa: "m\a\U000251aa", // 𥆪
+ 0x251ab: "m\a\U000251ab", // 𥆫
+ 0x251ac: "m\a\U000251ac", // 𥆬
+ 0x251ad: "m\a\U000251ad", // 𥆭
+ 0x251ae: "m\a\U000251ae", // 𥆮
+ 0x251af: "m\a\U000251af", // 𥆯
+ 0x251b0: "m\a\U000251b0", // 𥆰
+ 0x251b1: "m\a\U000251b1", // 𥆱
+ 0x251b2: "m\a\U000251b2", // 𥆲
+ 0x251b3: "m\a\U000251b3", // 𥆳
+ 0x251b4: "m\a\U000251b4", // 𥆴
+ 0x251b5: "m\a\U000251b5", // 𥆵
+ 0x251b6: "m\a\U000251b6", // 𥆶
+ 0x251b7: "m\a\U000251b7", // 𥆷
+ 0x251b8: "m\a\U000251b8", // 𥆸
+ 0x251b9: "m\a\U000251b9", // 𥆹
+ 0x251ba: "m\a\U000251ba", // 𥆺
+ 0x251bb: "m\a\U000251bb", // 𥆻
+ 0x251bc: "m\a\U000251bc", // 𥆼
+ 0x251bd: "m\a\U000251bd", // 𥆽
+ 0x251be: "m\a\U000251be", // 𥆾
+ 0x251bf: "m\a\U000251bf", // 𥆿
+ 0x251c0: "m\a\U000251c0", // 𥇀
+ 0x251c1: "m\a\U000251c1", // 𥇁
+ 0x251c2: "m\a\U000251c2", // 𥇂
+ 0x251c3: "m\a\U000251c3", // 𥇃
+ 0x251c4: "m\a\U000251c4", // 𥇄
+ 0x251c5: "m\b\U000251c5", // 𥇅
+ 0x251c6: "m\a\U000251c6", // 𥇆
+ 0x251c7: "m\a\U000251c7", // 𥇇
+ 0x251c8: "m\a\U000251c8", // 𥇈
+ 0x251c9: "m\b\U000251c9", // 𥇉
+ 0x251ca: "m\b\U000251ca", // 𥇊
+ 0x251cb: "m\b\U000251cb", // 𥇋
+ 0x251cc: "m\b\U000251cc", // 𥇌
+ 0x251cd: "m\b\U000251cd", // 𥇍
+ 0x251ce: "m\b\U000251ce", // 𥇎
+ 0x251cf: "m\b\U000251cf", // 𥇏
+ 0x251d0: "m\b\U000251d0", // 𥇐
+ 0x251d1: "m\b\U000251d1", // 𥇑
+ 0x251d2: "m\b\U000251d2", // 𥇒
+ 0x251d3: "m\b\U000251d3", // 𥇓
+ 0x251d4: "m\b\U000251d4", // 𥇔
+ 0x251d5: "m\b\U000251d5", // 𥇕
+ 0x251d6: "m\b\U000251d6", // 𥇖
+ 0x251d7: "m\b\U000251d7", // 𥇗
+ 0x251d8: "m\b\U000251d8", // 𥇘
+ 0x251d9: "m\b\U000251d9", // 𥇙
+ 0x251da: "m\b\U000251da", // 𥇚
+ 0x251db: "m\b\U000251db", // 𥇛
+ 0x251dc: "m\b\U000251dc", // 𥇜
+ 0x251dd: "m\b\U000251dd", // 𥇝
+ 0x251de: "m\b\U000251de", // 𥇞
+ 0x251df: "m\b\U000251df", // 𥇟
+ 0x251e0: "m\b\U000251e0", // 𥇠
+ 0x251e1: "m\b\U000251e1", // 𥇡
+ 0x251e2: "m\b\U000251e2", // 𥇢
+ 0x251e3: "m\b\U000251e3", // 𥇣
+ 0x251e4: "m\b\U000251e4", // 𥇤
+ 0x251e5: "m\b\U000251e5", // 𥇥
+ 0x251e6: "m\b\U000251e6", // 𥇦
+ 0x251e7: "m\b\U000251e7", // 𥇧
+ 0x251e8: "m\b\U000251e8", // 𥇨
+ 0x251e9: "m\b\U000251e9", // 𥇩
+ 0x251ea: "m\b\U000251ea", // 𥇪
+ 0x251eb: "m\a\U000251eb", // 𥇫
+ 0x251ec: "m\b\U000251ec", // 𥇬
+ 0x251ed: "m\b\U000251ed", // 𥇭
+ 0x251ee: "m\b\U000251ee", // 𥇮
+ 0x251ef: "m\b\U000251ef", // 𥇯
+ 0x251f0: "m\b\U000251f0", // 𥇰
+ 0x251f1: "m\b\U000251f1", // 𥇱
+ 0x251f2: "m\b\U000251f2", // 𥇲
+ 0x251f3: "m\b\U000251f3", // 𥇳
+ 0x251f4: "E\t\U000251f4", // 𥇴
+ 0x251f5: "m\b\U000251f5", // 𥇵
+ 0x251f6: "m\b\U000251f6", // 𥇶
+ 0x251f7: "m\b\U000251f7", // 𥇷
+ 0x251f8: "m\b\U000251f8", // 𥇸
+ 0x251f9: "m\b\U000251f9", // 𥇹
+ 0x251fa: "m\b\U000251fa", // 𥇺
+ 0x251fb: "m\b\U000251fb", // 𥇻
+ 0x251fc: "m\b\U000251fc", // 𥇼
+ 0x251fd: "m\b\U000251fd", // 𥇽
+ 0x251fe: "m\b\U000251fe", // 𥇾
+ 0x251ff: "m\b\U000251ff", // 𥇿
+ 0x25200: "m\b\U00025200", // 𥈀
+ 0x25201: "m\b\U00025201", // 𥈁
+ 0x25202: "m\t\U00025202", // 𥈂
+ 0x25203: "m\t\U00025203", // 𥈃
+ 0x25204: "m\t\U00025204", // 𥈄
+ 0x25205: "m\t\U00025205", // 𥈅
+ 0x25206: "m\t\U00025206", // 𥈆
+ 0x25207: "m\t\U00025207", // 𥈇
+ 0x25208: "m\t\U00025208", // 𥈈
+ 0x25209: "m\t\U00025209", // 𥈉
+ 0x2520a: "m\t\U0002520a", // 𥈊
+ 0x2520b: "m\t\U0002520b", // 𥈋
+ 0x2520c: "m\t\U0002520c", // 𥈌
+ 0x2520d: "m\t\U0002520d", // 𥈍
+ 0x2520e: "m\t\U0002520e", // 𥈎
+ 0x2520f: "m\t\U0002520f", // 𥈏
+ 0x25210: "m\t\U00025210", // 𥈐
+ 0x25211: "m\t\U00025211", // 𥈑
+ 0x25212: "m\t\U00025212", // 𥈒
+ 0x25213: "m\t\U00025213", // 𥈓
+ 0x25214: "m\t\U00025214", // 𥈔
+ 0x25215: "m\t\U00025215", // 𥈕
+ 0x25216: "m\t\U00025216", // 𥈖
+ 0x25217: "m\t\U00025217", // 𥈗
+ 0x25218: "m\t\U00025218", // 𥈘
+ 0x25219: "m\t\U00025219", // 𥈙
+ 0x2521a: "m\t\U0002521a", // 𥈚
+ 0x2521b: "m\t\U0002521b", // 𥈛
+ 0x2521c: "m\t\U0002521c", // 𥈜
+ 0x2521d: "m\t\U0002521d", // 𥈝
+ 0x2521e: "m\t\U0002521e", // 𥈞
+ 0x2521f: "m\t\U0002521f", // 𥈟
+ 0x25220: "m\t\U00025220", // 𥈠
+ 0x25221: "m\t\U00025221", // 𥈡
+ 0x25222: "m\t\U00025222", // 𥈢
+ 0x25223: "m\t\U00025223", // 𥈣
+ 0x25224: "m\t\U00025224", // 𥈤
+ 0x25225: "m\t\U00025225", // 𥈥
+ 0x25226: "m\t\U00025226", // 𥈦
+ 0x25227: "m\t\U00025227", // 𥈧
+ 0x25228: "m\t\U00025228", // 𥈨
+ 0x25229: "m\t\U00025229", // 𥈩
+ 0x2522a: "m\t\U0002522a", // 𥈪
+ 0x2522b: "m\t\U0002522b", // 𥈫
+ 0x2522c: "m\t\U0002522c", // 𥈬
+ 0x2522d: "m\t\U0002522d", // 𥈭
+ 0x2522e: "m\t\U0002522e", // 𥈮
+ 0x2522f: "m\t\U0002522f", // 𥈯
+ 0x25230: "m\t\U00025230", // 𥈰
+ 0x25231: "m\t\U00025231", // 𥈱
+ 0x25232: "m\t\U00025232", // 𥈲
+ 0x25233: "m\t\U00025233", // 𥈳
+ 0x25234: "m\t\U00025234", // 𥈴
+ 0x25235: "m\t\U00025235", // 𥈵
+ 0x25236: "m\t\U00025236", // 𥈶
+ 0x25237: "m\t\U00025237", // 𥈷
+ 0x25238: "m\t\U00025238", // 𥈸
+ 0x25239: "m\t\U00025239", // 𥈹
+ 0x2523a: "m\t\U0002523a", // 𥈺
+ 0x2523b: "m\t\U0002523b", // 𥈻
+ 0x2523c: "m\n\U0002523c", // 𥈼
+ 0x2523d: "m\n\U0002523d", // 𥈽
+ 0x2523e: "m\n\U0002523e", // 𥈾
+ 0x2523f: "m\n\U0002523f", // 𥈿
+ 0x25240: "m\n\U00025240", // 𥉀
+ 0x25241: "m\n\U00025241", // 𥉁
+ 0x25242: "m\n\U00025242", // 𥉂
+ 0x25243: "m\n\U00025243", // 𥉃
+ 0x25244: "m\n\U00025244", // 𥉄
+ 0x25245: "m\n\U00025245", // 𥉅
+ 0x25246: "m\n\U00025246", // 𥉆
+ 0x25247: "m\n\U00025247", // 𥉇
+ 0x25248: "m\n\U00025248", // 𥉈
+ 0x25249: "m\n\U00025249", // 𥉉
+ 0x2524a: "m\n\U0002524a", // 𥉊
+ 0x2524b: "m\n\U0002524b", // 𥉋
+ 0x2524c: "m\n\U0002524c", // 𥉌
+ 0x2524d: "m\n\U0002524d", // 𥉍
+ 0x2524e: "m\n\U0002524e", // 𥉎
+ 0x2524f: "m\n\U0002524f", // 𥉏
+ 0x25250: "m\n\U00025250", // 𥉐
+ 0x25251: "m\n\U00025251", // 𥉑
+ 0x25252: "m\n\U00025252", // 𥉒
+ 0x25253: "m\n\U00025253", // 𥉓
+ 0x25254: "m\n\U00025254", // 𥉔
+ 0x25255: "m\n\U00025255", // 𥉕
+ 0x25256: "m\n\U00025256", // 𥉖
+ 0x25257: "m\n\U00025257", // 𥉗
+ 0x25258: "m\n\U00025258", // 𥉘
+ 0x25259: "m\n\U00025259", // 𥉙
+ 0x2525a: "m\n\U0002525a", // 𥉚
+ 0x2525b: "m\n\U0002525b", // 𥉛
+ 0x2525c: "m\n\U0002525c", // 𥉜
+ 0x2525d: "m\n\U0002525d", // 𥉝
+ 0x2525e: "m\n\U0002525e", // 𥉞
+ 0x2525f: "m\n\U0002525f", // 𥉟
+ 0x25260: "m\n\U00025260", // 𥉠
+ 0x25261: "m\n\U00025261", // 𥉡
+ 0x25262: "m\n\U00025262", // 𥉢
+ 0x25263: "m\n\U00025263", // 𥉣
+ 0x25264: "m\n\U00025264", // 𥉤
+ 0x25265: "m\n\U00025265", // 𥉥
+ 0x25266: "m\n\U00025266", // 𥉦
+ 0x25267: "m\n\U00025267", // 𥉧
+ 0x25268: "m\n\U00025268", // 𥉨
+ 0x25269: "m\n\U00025269", // 𥉩
+ 0x2526a: "m\n\U0002526a", // 𥉪
+ 0x2526b: "m\n\U0002526b", // 𥉫
+ 0x2526c: "m\n\U0002526c", // 𥉬
+ 0x2526d: "m\n\U0002526d", // 𥉭
+ 0x2526e: "m\n\U0002526e", // 𥉮
+ 0x2526f: "m\n\U0002526f", // 𥉯
+ 0x25270: "m\n\U00025270", // 𥉰
+ 0x25271: "m\n\U00025271", // 𥉱
+ 0x25272: "m\n\U00025272", // 𥉲
+ 0x25273: "m\n\U00025273", // 𥉳
+ 0x25274: "m\v\U00025274", // 𥉴
+ 0x25275: "m\v\U00025275", // 𥉵
+ 0x25276: "m\v\U00025276", // 𥉶
+ 0x25277: "m\v\U00025277", // 𥉷
+ 0x25278: "m\v\U00025278", // 𥉸
+ 0x25279: "m\v\U00025279", // 𥉹
+ 0x2527a: "m\v\U0002527a", // 𥉺
+ 0x2527b: "m\v\U0002527b", // 𥉻
+ 0x2527c: "m\v\U0002527c", // 𥉼
+ 0x2527d: "m\v\U0002527d", // 𥉽
+ 0x2527e: "m\v\U0002527e", // 𥉾
+ 0x2527f: "m\v\U0002527f", // 𥉿
+ 0x25280: "m\v\U00025280", // 𥊀
+ 0x25281: "m\v\U00025281", // 𥊁
+ 0x25282: "m\v\U00025282", // 𥊂
+ 0x25283: "m\v\U00025283", // 𥊃
+ 0x25284: "m\v\U00025284", // 𥊄
+ 0x25285: "m\v\U00025285", // 𥊅
+ 0x25286: "m\v\U00025286", // 𥊆
+ 0x25287: "m\n\U00025287", // 𥊇
+ 0x25288: "m\v\U00025288", // 𥊈
+ 0x25289: "m\v\U00025289", // 𥊉
+ 0x2528a: "m\v\U0002528a", // 𥊊
+ 0x2528b: "m\v\U0002528b", // 𥊋
+ 0x2528c: "m\v\U0002528c", // 𥊌
+ 0x2528d: "m\v\U0002528d", // 𥊍
+ 0x2528e: "m\v\U0002528e", // 𥊎
+ 0x2528f: "m\v\U0002528f", // 𥊏
+ 0x25290: "m\v\U00025290", // 𥊐
+ 0x25291: "m\v\U00025291", // 𥊑
+ 0x25292: "m\v\U00025292", // 𥊒
+ 0x25293: "m\v\U00025293", // 𥊓
+ 0x25294: "m\v\U00025294", // 𥊔
+ 0x25295: "m\v\U00025295", // 𥊕
+ 0x25296: "m\v\U00025296", // 𥊖
+ 0x25297: "m\v\U00025297", // 𥊗
+ 0x25298: "m\v\U00025298", // 𥊘
+ 0x25299: "m\v\U00025299", // 𥊙
+ 0x2529a: "m\v\U0002529a", // 𥊚
+ 0x2529b: "m\v\U0002529b", // 𥊛
+ 0x2529c: "m\v\U0002529c", // 𥊜
+ 0x2529d: "m\v\U0002529d", // 𥊝
+ 0x2529e: "m\v\U0002529e", // 𥊞
+ 0x2529f: "m\v\U0002529f", // 𥊟
+ 0x252a0: "m\v\U000252a0", // 𥊠
+ 0x252a1: "m\v\U000252a1", // 𥊡
+ 0x252a2: "m\v\U000252a2", // 𥊢
+ 0x252a3: "m\v\U000252a3", // 𥊣
+ 0x252a4: "m\v\U000252a4", // 𥊤
+ 0x252a5: "m\v\U000252a5", // 𥊥
+ 0x252a6: "m\v\U000252a6", // 𥊦
+ 0x252a7: "m\v\U000252a7", // 𥊧
+ 0x252a8: "m\v\U000252a8", // 𥊨
+ 0x252a9: "m\v\U000252a9", // 𥊩
+ 0x252aa: "m\f\U000252aa", // 𥊪
+ 0x252ab: "m\f\U000252ab", // 𥊫
+ 0x252ac: "m\f\U000252ac", // 𥊬
+ 0x252ad: "m\f\U000252ad", // 𥊭
+ 0x252ae: "m\f\U000252ae", // 𥊮
+ 0x252af: "m\f\U000252af", // 𥊯
+ 0x252b0: "m\f\U000252b0", // 𥊰
+ 0x252b1: "m\f\U000252b1", // 𥊱
+ 0x252b2: "m\f\U000252b2", // 𥊲
+ 0x252b3: "m\f\U000252b3", // 𥊳
+ 0x252b4: "m\f\U000252b4", // 𥊴
+ 0x252b5: "m\f\U000252b5", // 𥊵
+ 0x252b6: "m\f\U000252b6", // 𥊶
+ 0x252b7: "m\f\U000252b7", // 𥊷
+ 0x252b8: "m\f\U000252b8", // 𥊸
+ 0x252b9: "m\f\U000252b9", // 𥊹
+ 0x252ba: "m\f\U000252ba", // 𥊺
+ 0x252bb: "m\f\U000252bb", // 𥊻
+ 0x252bc: "m\f\U000252bc", // 𥊼
+ 0x252bd: "m\f\U000252bd", // 𥊽
+ 0x252be: "m\f\U000252be", // 𥊾
+ 0x252bf: "m\f\U000252bf", // 𥊿
+ 0x252c0: "m\f\U000252c0", // 𥋀
+ 0x252c1: "m\f\U000252c1", // 𥋁
+ 0x252c2: "m\f\U000252c2", // 𥋂
+ 0x252c3: "m\f\U000252c3", // 𥋃
+ 0x252c4: "m\f\U000252c4", // 𥋄
+ 0x252c5: "m\f\U000252c5", // 𥋅
+ 0x252c6: "m\f\U000252c6", // 𥋆
+ 0x252c7: "m\f\U000252c7", // 𥋇
+ 0x252c8: "m\f\U000252c8", // 𥋈
+ 0x252c9: "m\f\U000252c9", // 𥋉
+ 0x252ca: "m\f\U000252ca", // 𥋊
+ 0x252cb: "m\f\U000252cb", // 𥋋
+ 0x252cc: "m\f\U000252cc", // 𥋌
+ 0x252cd: "m\f\U000252cd", // 𥋍
+ 0x252ce: "m\f\U000252ce", // 𥋎
+ 0x252cf: "m\f\U000252cf", // 𥋏
+ 0x252d0: "m\f\U000252d0", // 𥋐
+ 0x252d1: "m\f\U000252d1", // 𥋑
+ 0x252d2: "m\f\U000252d2", // 𥋒
+ 0x252d3: "m\f\U000252d3", // 𥋓
+ 0x252d4: "m\f\U000252d4", // 𥋔
+ 0x252d5: "m\f\U000252d5", // 𥋕
+ 0x252d6: "m\v\U000252d6", // 𥋖
+ 0x252d7: "m\f\U000252d7", // 𥋗
+ 0x252d8: "m\r\U000252d8", // 𥋘
+ 0x252d9: "m\r\U000252d9", // 𥋙
+ 0x252da: "m\r\U000252da", // 𥋚
+ 0x252db: "m\r\U000252db", // 𥋛
+ 0x252dc: "m\r\U000252dc", // 𥋜
+ 0x252dd: "m\r\U000252dd", // 𥋝
+ 0x252de: "m\r\U000252de", // 𥋞
+ 0x252df: "m\r\U000252df", // 𥋟
+ 0x252e0: "m\r\U000252e0", // 𥋠
+ 0x252e1: "m\r\U000252e1", // 𥋡
+ 0x252e2: "m\r\U000252e2", // 𥋢
+ 0x252e3: "m\r\U000252e3", // 𥋣
+ 0x252e4: "m\r\U000252e4", // 𥋤
+ 0x252e5: "m\r\U000252e5", // 𥋥
+ 0x252e6: "m\r\U000252e6", // 𥋦
+ 0x252e7: "m\r\U000252e7", // 𥋧
+ 0x252e8: "m\r\U000252e8", // 𥋨
+ 0x252e9: "m\r\U000252e9", // 𥋩
+ 0x252ea: "m\r\U000252ea", // 𥋪
+ 0x252eb: "m\r\U000252eb", // 𥋫
+ 0x252ec: "m\r\U000252ec", // 𥋬
+ 0x252ed: "m\r\U000252ed", // 𥋭
+ 0x252ee: "m\r\U000252ee", // 𥋮
+ 0x252ef: "m\r\U000252ef", // 𥋯
+ 0x252f0: "m\r\U000252f0", // 𥋰
+ 0x252f1: "m\r\U000252f1", // 𥋱
+ 0x252f2: "m\r\U000252f2", // 𥋲
+ 0x252f3: "m\r\U000252f3", // 𥋳
+ 0x252f4: "m\r\U000252f4", // 𥋴
+ 0x252f5: "m\r\U000252f5", // 𥋵
+ 0x252f6: "m\r\U000252f6", // 𥋶
+ 0x252f7: "m\r\U000252f7", // 𥋷
+ 0x252f8: "m\r\U000252f8", // 𥋸
+ 0x252f9: "m\r\U000252f9", // 𥋹
+ 0x252fa: "m\r\U000252fa", // 𥋺
+ 0x252fb: "m\r\U000252fb", // 𥋻
+ 0x252fc: "m\r\U000252fc", // 𥋼
+ 0x252fd: "m\r\U000252fd", // 𥋽
+ 0x252fe: "m\r\U000252fe", // 𥋾
+ 0x252ff: "m\x0e\U000252ff", // 𥋿
+ 0x25300: "m\x0e\U00025300", // 𥌀
+ 0x25301: "m\x0e\U00025301", // 𥌁
+ 0x25302: "m\x0e\U00025302", // 𥌂
+ 0x25303: "m\x0e\U00025303", // 𥌃
+ 0x25304: "m\x0e\U00025304", // 𥌄
+ 0x25305: "m\x0e\U00025305", // 𥌅
+ 0x25306: "m\x0e\U00025306", // 𥌆
+ 0x25307: "m\x0e\U00025307", // 𥌇
+ 0x25308: "m\x0e\U00025308", // 𥌈
+ 0x25309: "m\x0e\U00025309", // 𥌉
+ 0x2530a: "m\x0e\U0002530a", // 𥌊
+ 0x2530b: "m\x0e\U0002530b", // 𥌋
+ 0x2530c: "m\x0e\U0002530c", // 𥌌
+ 0x2530d: "m\x0e\U0002530d", // 𥌍
+ 0x2530e: "m\x0e\U0002530e", // 𥌎
+ 0x2530f: "m\x0e\U0002530f", // 𥌏
+ 0x25310: "m\x0e\U00025310", // 𥌐
+ 0x25311: "m\x0e\U00025311", // 𥌑
+ 0x25312: "m\x0e\U00025312", // 𥌒
+ 0x25313: "m\x0e\U00025313", // 𥌓
+ 0x25314: "m\x0e\U00025314", // 𥌔
+ 0x25315: "\xb1\n\U00025315", // 𥌕
+ 0x25316: "m\x0e\U00025316", // 𥌖
+ 0x25317: "m\x0e\U00025317", // 𥌗
+ 0x25318: "m\x0e\U00025318", // 𥌘
+ 0x25319: "m\x0e\U00025319", // 𥌙
+ 0x2531a: "m\x0f\U0002531a", // 𥌚
+ 0x2531b: "m\x0f\U0002531b", // 𥌛
+ 0x2531c: "m\x0f\U0002531c", // 𥌜
+ 0x2531d: "m\x0f\U0002531d", // 𥌝
+ 0x2531e: "m\x0f\U0002531e", // 𥌞
+ 0x2531f: "m\x0f\U0002531f", // 𥌟
+ 0x25320: "m\x0f\U00025320", // 𥌠
+ 0x25321: "m\x0f\U00025321", // 𥌡
+ 0x25322: "m\x0f\U00025322", // 𥌢
+ 0x25323: "m\x0f\U00025323", // 𥌣
+ 0x25324: "m\x0f\U00025324", // 𥌤
+ 0x25325: "m\x0f\U00025325", // 𥌥
+ 0x25326: "m\x0f\U00025326", // 𥌦
+ 0x25327: "m\x0f\U00025327", // 𥌧
+ 0x25328: "m\x0f\U00025328", // 𥌨
+ 0x25329: "m\x0f\U00025329", // 𥌩
+ 0x2532a: "m\x0f\U0002532a", // 𥌪
+ 0x2532b: "m\x0f\U0002532b", // 𥌫
+ 0x2532c: "m\x0f\U0002532c", // 𥌬
+ 0x2532d: "m\x10\U0002532d", // 𥌭
+ 0x2532e: "m\x10\U0002532e", // 𥌮
+ 0x2532f: "m\x10\U0002532f", // 𥌯
+ 0x25330: "m\x10\U00025330", // 𥌰
+ 0x25331: "m\x10\U00025331", // 𥌱
+ 0x25332: "m\x10\U00025332", // 𥌲
+ 0x25333: "m\x10\U00025333", // 𥌳
+ 0x25334: "m\x10\U00025334", // 𥌴
+ 0x25335: "m\x10\U00025335", // 𥌵
+ 0x25336: "m\x10\U00025336", // 𥌶
+ 0x25337: "m\x10\U00025337", // 𥌷
+ 0x25338: "m\x10\U00025338", // 𥌸
+ 0x25339: "m\x10\U00025339", // 𥌹
+ 0x2533a: "m\x11\U0002533a", // 𥌺
+ 0x2533b: "m\x11\U0002533b", // 𥌻
+ 0x2533c: "m\x11\U0002533c", // 𥌼
+ 0x2533d: "m\x11\U0002533d", // 𥌽
+ 0x2533e: "m\x11\U0002533e", // 𥌾
+ 0x2533f: "m\x11\U0002533f", // 𥌿
+ 0x25340: "m\x11\U00025340", // 𥍀
+ 0x25341: "m\x11\U00025341", // 𥍁
+ 0x25342: "m\x10\U00025342", // 𥍂
+ 0x25343: "m\x11\U00025343", // 𥍃
+ 0x25344: "\x93\x0f\U00025344", // 𥍄
+ 0x25345: "m\x11\U00025345", // 𥍅
+ 0x25346: "m\x11\U00025346", // 𥍆
+ 0x25347: "m\x11\U00025347", // 𥍇
+ 0x25348: "m\x12\U00025348", // 𥍈
+ 0x25349: "m\x12\U00025349", // 𥍉
+ 0x2534a: "m\x12\U0002534a", // 𥍊
+ 0x2534b: "m\x12\U0002534b", // 𥍋
+ 0x2534c: "m\x12\U0002534c", // 𥍌
+ 0x2534d: "m\x12\U0002534d", // 𥍍
+ 0x2534e: "m\x12\U0002534e", // 𥍎
+ 0x2534f: "m\x13\U0002534f", // 𥍏
+ 0x25350: "m\x13\U00025350", // 𥍐
+ 0x25351: "m\x13\U00025351", // 𥍑
+ 0x25352: "m\x13\U00025352", // 𥍒
+ 0x25353: "m\x14\U00025353", // 𥍓
+ 0x25354: "m\x15\U00025354", // 𥍔
+ 0x25355: "m\x15\U00025355", // 𥍕
+ 0x25356: "m\x15\U00025356", // 𥍖
+ 0x25357: "m\x15\U00025357", // 𥍗
+ 0x25358: "m\x15\U00025358", // 𥍘
+ 0x25359: "m\x16\U00025359", // 𥍙
+ 0x2535a: "m\x16\U0002535a", // 𥍚
+ 0x2535b: "m\x17\U0002535b", // 𥍛
+ 0x2535c: "m\x18\U0002535c", // 𥍜
+ 0x2535d: "n\x01\U0002535d", // 𥍝
+ 0x2535e: "n\x03\U0002535e", // 𥍞
+ 0x2535f: "n\x04\U0002535f", // 𥍟
+ 0x25360: "n\x04\U00025360", // 𥍠
+ 0x25361: "n\x05\U00025361", // 𥍡
+ 0x25362: "n\x05\U00025362", // 𥍢
+ 0x25363: "n\x05\U00025363", // 𥍣
+ 0x25364: "n\x05\U00025364", // 𥍤
+ 0x25365: "n\x05\U00025365", // 𥍥
+ 0x25366: "n\x05\U00025366", // 𥍦
+ 0x25367: "n\x06\U00025367", // 𥍧
+ 0x25368: "n\x06\U00025368", // 𥍨
+ 0x25369: "n\x06\U00025369", // 𥍩
+ 0x2536a: "n\a\U0002536a", // 𥍪
+ 0x2536b: "n\a\U0002536b", // 𥍫
+ 0x2536c: "n\a\U0002536c", // 𥍬
+ 0x2536d: "n\a\U0002536d", // 𥍭
+ 0x2536e: "n\a\U0002536e", // 𥍮
+ 0x2536f: "n\a\U0002536f", // 𥍯
+ 0x25370: "n\a\U00025370", // 𥍰
+ 0x25371: "n\a\U00025371", // 𥍱
+ 0x25372: "n\b\U00025372", // 𥍲
+ 0x25373: "n\b\U00025373", // 𥍳
+ 0x25374: "n\b\U00025374", // 𥍴
+ 0x25375: "n\b\U00025375", // 𥍵
+ 0x25376: "n\t\U00025376", // 𥍶
+ 0x25377: "n\t\U00025377", // 𥍷
+ 0x25378: "n\t\U00025378", // 𥍸
+ 0x25379: "n\t\U00025379", // 𥍹
+ 0x2537a: "n\t\U0002537a", // 𥍺
+ 0x2537b: "n\t\U0002537b", // 𥍻
+ 0x2537c: "n\t\U0002537c", // 𥍼
+ 0x2537d: "n\t\U0002537d", // 𥍽
+ 0x2537e: "n\t\U0002537e", // 𥍾
+ 0x2537f: "n\t\U0002537f", // 𥍿
+ 0x25380: "n\t\U00025380", // 𥎀
+ 0x25381: "n\t\U00025381", // 𥎁
+ 0x25382: "n\n\U00025382", // 𥎂
+ 0x25383: "n\n\U00025383", // 𥎃
+ 0x25384: "n\n\U00025384", // 𥎄
+ 0x25385: "n\n\U00025385", // 𥎅
+ 0x25386: "n\n\U00025386", // 𥎆
+ 0x25387: "n\n\U00025387", // 𥎇
+ 0x25388: "n\n\U00025388", // 𥎈
+ 0x25389: "n\n\U00025389", // 𥎉
+ 0x2538a: "n\v\U0002538a", // 𥎊
+ 0x2538b: "n\v\U0002538b", // 𥎋
+ 0x2538c: "n\v\U0002538c", // 𥎌
+ 0x2538d: "n\v\U0002538d", // 𥎍
+ 0x2538e: "n\r\U0002538e", // 𥎎
+ 0x2538f: "n\f\U0002538f", // 𥎏
+ 0x25390: "n\f\U00025390", // 𥎐
+ 0x25391: "n\f\U00025391", // 𥎑
+ 0x25392: "n\f\U00025392", // 𥎒
+ 0x25393: "n\r\U00025393", // 𥎓
+ 0x25394: "n\r\U00025394", // 𥎔
+ 0x25395: "n\r\U00025395", // 𥎕
+ 0x25396: "n\x0e\U00025396", // 𥎖
+ 0x25397: "n\x0e\U00025397", // 𥎗
+ 0x25398: "n\x0e\U00025398", // 𥎘
+ 0x25399: "n\x0e\U00025399", // 𥎙
+ 0x2539a: "n\x0e\U0002539a", // 𥎚
+ 0x2539b: "n\x0e\U0002539b", // 𥎛
+ 0x2539c: "n\x0e\U0002539c", // 𥎜
+ 0x2539d: "n\x10\U0002539d", // 𥎝
+ 0x2539e: "n\x0f\U0002539e", // 𥎞
+ 0x2539f: "n\x0f\U0002539f", // 𥎟
+ 0x253a0: "n\x0f\U000253a0", // 𥎠
+ 0x253a1: "n\x12\U000253a1", // 𥎡
+ 0x253a2: "n\x12\U000253a2", // 𥎢
+ 0x253a3: "n\x12\U000253a3", // 𥎣
+ 0x253a4: "n\x1e\U000253a4", // 𥎤
+ 0x253a5: "n\x1f\U000253a5", // 𥎥
+ 0x253a6: "o\x02\U000253a6", // 𥎦
+ 0x253a7: "o\x02\U000253a7", // 𥎧
+ 0x253a8: "o\x03\U000253a8", // 𥎨
+ 0x253a9: "o\x04\U000253a9", // 𥎩
+ 0x253aa: "o\x04\U000253aa", // 𥎪
+ 0x253ab: "o\x04\U000253ab", // 𥎫
+ 0x253ac: "o\x04\U000253ac", // 𥎬
+ 0x253ad: "o\x04\U000253ad", // 𥎭
+ 0x253ae: "o\x04\U000253ae", // 𥎮
+ 0x253af: "o\x04\U000253af", // 𥎯
+ 0x253b0: "o\x05\U000253b0", // 𥎰
+ 0x253b1: "o\x05\U000253b1", // 𥎱
+ 0x253b2: "o\x05\U000253b2", // 𥎲
+ 0x253b3: "o\x05\U000253b3", // 𥎳
+ 0x253b4: "o\x05\U000253b4", // 𥎴
+ 0x253b5: "o\x05\U000253b5", // 𥎵
+ 0x253b6: "o\x05\U000253b6", // 𥎶
+ 0x253b7: "o\x05\U000253b7", // 𥎷
+ 0x253b8: "o\x05\U000253b8", // 𥎸
+ 0x253b9: "o\x06\U000253b9", // 𥎹
+ 0x253ba: "o\x06\U000253ba", // 𥎺
+ 0x253bb: "o\x06\U000253bb", // 𥎻
+ 0x253bc: "o\x06\U000253bc", // 𥎼
+ 0x253bd: "o\x06\U000253bd", // 𥎽
+ 0x253be: "o\x06\U000253be", // 𥎾
+ 0x253bf: "o\x06\U000253bf", // 𥎿
+ 0x253c0: "o\x06\U000253c0", // 𥏀
+ 0x253c1: "o\x06\U000253c1", // 𥏁
+ 0x253c2: "o\x06\U000253c2", // 𥏂
+ 0x253c3: "o\x06\U000253c3", // 𥏃
+ 0x253c4: "o\x06\U000253c4", // 𥏄
+ 0x253c5: "o\x06\U000253c5", // 𥏅
+ 0x253c6: "o\x06\U000253c6", // 𥏆
+ 0x253c7: "o\x06\U000253c7", // 𥏇
+ 0x253c8: "o\x06\U000253c8", // 𥏈
+ 0x253c9: "o\x06\U000253c9", // 𥏉
+ 0x253ca: "o\x06\U000253ca", // 𥏊
+ 0x253cb: "o\x06\U000253cb", // 𥏋
+ 0x253cc: "o\x06\U000253cc", // 𥏌
+ 0x253cd: "o\x06\U000253cd", // 𥏍
+ 0x253ce: "o\a\U000253ce", // 𥏎
+ 0x253cf: "o\a\U000253cf", // 𥏏
+ 0x253d0: "o\a\U000253d0", // 𥏐
+ 0x253d1: "o\a\U000253d1", // 𥏑
+ 0x253d2: "o\a\U000253d2", // 𥏒
+ 0x253d3: "o\a\U000253d3", // 𥏓
+ 0x253d4: "o\a\U000253d4", // 𥏔
+ 0x253d5: "o\a\U000253d5", // 𥏕
+ 0x253d6: "o\a\U000253d6", // 𥏖
+ 0x253d7: "o\a\U000253d7", // 𥏗
+ 0x253d8: "o\b\U000253d8", // 𥏘
+ 0x253d9: "o\b\U000253d9", // 𥏙
+ 0x253da: "o\b\U000253da", // 𥏚
+ 0x253db: "o\b\U000253db", // 𥏛
+ 0x253dc: "o\b\U000253dc", // 𥏜
+ 0x253dd: "o\b\U000253dd", // 𥏝
+ 0x253de: "o\b\U000253de", // 𥏞
+ 0x253df: "o\b\U000253df", // 𥏟
+ 0x253e0: "o\b\U000253e0", // 𥏠
+ 0x253e1: "o\b\U000253e1", // 𥏡
+ 0x253e2: "o\b\U000253e2", // 𥏢
+ 0x253e3: "o\b\U000253e3", // 𥏣
+ 0x253e4: "o\b\U000253e4", // 𥏤
+ 0x253e5: "o\b\U000253e5", // 𥏥
+ 0x253e6: "o\b\U000253e6", // 𥏦
+ 0x253e7: "o\b\U000253e7", // 𥏧
+ 0x253e8: "o\b\U000253e8", // 𥏨
+ 0x253e9: "o\b\U000253e9", // 𥏩
+ 0x253ea: "o\t\U000253ea", // 𥏪
+ 0x253eb: "o\t\U000253eb", // 𥏫
+ 0x253ec: "o\t\U000253ec", // 𥏬
+ 0x253ed: "o\t\U000253ed", // 𥏭
+ 0x253ee: "o\t\U000253ee", // 𥏮
+ 0x253ef: "o\t\U000253ef", // 𥏯
+ 0x253f0: "o\t\U000253f0", // 𥏰
+ 0x253f1: "o\t\U000253f1", // 𥏱
+ 0x253f2: "o\n\U000253f2", // 𥏲
+ 0x253f3: "o\n\U000253f3", // 𥏳
+ 0x253f4: "o\n\U000253f4", // 𥏴
+ 0x253f5: "o\n\U000253f5", // 𥏵
+ 0x253f6: "o\n\U000253f6", // 𥏶
+ 0x253f7: "o\n\U000253f7", // 𥏷
+ 0x253f8: "o\n\U000253f8", // 𥏸
+ 0x253f9: "o\n\U000253f9", // 𥏹
+ 0x253fa: "o\n\U000253fa", // 𥏺
+ 0x253fb: "o\v\U000253fb", // 𥏻
+ 0x253fc: "o\v\U000253fc", // 𥏼
+ 0x253fd: "o\v\U000253fd", // 𥏽
+ 0x253fe: "o\v\U000253fe", // 𥏾
+ 0x253ff: "o\v\U000253ff", // 𥏿
+ 0x25400: "o\f\U00025400", // 𥐀
+ 0x25401: "o\f\U00025401", // 𥐁
+ 0x25402: "o\f\U00025402", // 𥐂
+ 0x25403: "o\f\U00025403", // 𥐃
+ 0x25404: "o\f\U00025404", // 𥐄
+ 0x25405: "o\f\U00025405", // 𥐅
+ 0x25406: "o\f\U00025406", // 𥐆
+ 0x25407: "o\r\U00025407", // 𥐇
+ 0x25408: "o\r\U00025408", // 𥐈
+ 0x25409: "o\r\U00025409", // 𥐉
+ 0x2540a: "o\r\U0002540a", // 𥐊
+ 0x2540b: "o\r\U0002540b", // 𥐋
+ 0x2540c: "o\x0e\U0002540c", // 𥐌
+ 0x2540d: "o\x0e\U0002540d", // 𥐍
+ 0x2540e: "o\x0e\U0002540e", // 𥐎
+ 0x2540f: "o\x0e\U0002540f", // 𥐏
+ 0x25410: "o\x12\U00025410", // 𥐐
+ 0x25411: "o\x11\U00025411", // 𥐑
+ 0x25412: "o\x11\U00025412", // 𥐒
+ 0x25413: "o\x12\U00025413", // 𥐓
+ 0x25414: "o\x12\U00025414", // 𥐔
+ 0x25415: "p\x01\U00025415", // 𥐕
+ 0x25416: "p\x01\U00025416", // 𥐖
+ 0x25417: "p\x02\U00025417", // 𥐗
+ 0x25418: "p\x02\U00025418", // 𥐘
+ 0x25419: "p\x02\U00025419", // 𥐙
+ 0x2541a: "p\x02\U0002541a", // 𥐚
+ 0x2541b: "p\x02\U0002541b", // 𥐛
+ 0x2541c: "p\x02\U0002541c", // 𥐜
+ 0x2541d: "p\x03\U0002541d", // 𥐝
+ 0x2541e: "p\x03\U0002541e", // 𥐞
+ 0x2541f: "p\x03\U0002541f", // 𥐟
+ 0x25420: "p\x03\U00025420", // 𥐠
+ 0x25421: "p\x03\U00025421", // 𥐡
+ 0x25422: "p\x03\U00025422", // 𥐢
+ 0x25423: "p\x03\U00025423", // 𥐣
+ 0x25424: "p\x03\U00025424", // 𥐤
+ 0x25425: "p\x03\U00025425", // 𥐥
+ 0x25426: "p\x03\U00025426", // 𥐦
+ 0x25427: "p\x03\U00025427", // 𥐧
+ 0x25428: "p\x03\U00025428", // 𥐨
+ 0x25429: "p\x04\U00025429", // 𥐩
+ 0x2542a: "p\x04\U0002542a", // 𥐪
+ 0x2542b: "p\x04\U0002542b", // 𥐫
+ 0x2542c: "p\x04\U0002542c", // 𥐬
+ 0x2542d: "p\x04\U0002542d", // 𥐭
+ 0x2542e: "p\x04\U0002542e", // 𥐮
+ 0x2542f: "p\x04\U0002542f", // 𥐯
+ 0x25430: "p\x04\U00025430", // 𥐰
+ 0x25431: "p\x04\U00025431", // 𥐱
+ 0x25432: "p\x04\U00025432", // 𥐲
+ 0x25433: "p\x04\U00025433", // 𥐳
+ 0x25434: "p\x04\U00025434", // 𥐴
+ 0x25435: "p\x04\U00025435", // 𥐵
+ 0x25436: "p\x04\U00025436", // 𥐶
+ 0x25437: "p\x04\U00025437", // 𥐷
+ 0x25438: "p\x04\U00025438", // 𥐸
+ 0x25439: "p\x04\U00025439", // 𥐹
+ 0x2543a: "p\x04\U0002543a", // 𥐺
+ 0x2543b: "p\x04\U0002543b", // 𥐻
+ 0x2543c: "p\x04\U0002543c", // 𥐼
+ 0x2543d: "p\x04\U0002543d", // 𥐽
+ 0x2543e: "p\x04\U0002543e", // 𥐾
+ 0x2543f: "p\x04\U0002543f", // 𥐿
+ 0x25440: "p\x04\U00025440", // 𥑀
+ 0x25441: "p\x04\U00025441", // 𥑁
+ 0x25442: "p\x04\U00025442", // 𥑂
+ 0x25443: "p\x04\U00025443", // 𥑃
+ 0x25444: "p\x04\U00025444", // 𥑄
+ 0x25445: "p\x04\U00025445", // 𥑅
+ 0x25446: "p\x05\U00025446", // 𥑆
+ 0x25447: "p\x05\U00025447", // 𥑇
+ 0x25448: "p\x05\U00025448", // 𥑈
+ 0x25449: "p\x05\U00025449", // 𥑉
+ 0x2544a: "p\x05\U0002544a", // 𥑊
+ 0x2544b: "p\x05\U0002544b", // 𥑋
+ 0x2544c: "p\x05\U0002544c", // 𥑌
+ 0x2544d: "p\x05\U0002544d", // 𥑍
+ 0x2544e: "p\x05\U0002544e", // 𥑎
+ 0x2544f: "p\x05\U0002544f", // 𥑏
+ 0x25450: "p\x05\U00025450", // 𥑐
+ 0x25451: "p\x05\U00025451", // 𥑑
+ 0x25452: "p\x05\U00025452", // 𥑒
+ 0x25453: "p\x05\U00025453", // 𥑓
+ 0x25454: "p\x05\U00025454", // 𥑔
+ 0x25455: "p\x05\U00025455", // 𥑕
+ 0x25456: "p\x05\U00025456", // 𥑖
+ 0x25457: "p\x05\U00025457", // 𥑗
+ 0x25458: "p\x05\U00025458", // 𥑘
+ 0x25459: "p\x05\U00025459", // 𥑙
+ 0x2545a: "p\x05\U0002545a", // 𥑚
+ 0x2545b: "p\x05\U0002545b", // 𥑛
+ 0x2545c: "p\x05\U0002545c", // 𥑜
+ 0x2545d: "p\x05\U0002545d", // 𥑝
+ 0x2545e: "p\x05\U0002545e", // 𥑞
+ 0x2545f: "p\x05\U0002545f", // 𥑟
+ 0x25460: "p\x05\U00025460", // 𥑠
+ 0x25461: "p\x05\U00025461", // 𥑡
+ 0x25462: "p\x05\U00025462", // 𥑢
+ 0x25463: "p\x05\U00025463", // 𥑣
+ 0x25464: "p\x05\U00025464", // 𥑤
+ 0x25465: "p\x05\U00025465", // 𥑥
+ 0x25466: "p\x05\U00025466", // 𥑦
+ 0x25467: "p\x05\U00025467", // 𥑧
+ 0x25468: "p\x05\U00025468", // 𥑨
+ 0x25469: "p\x05\U00025469", // 𥑩
+ 0x2546a: "p\x05\U0002546a", // 𥑪
+ 0x2546b: "p\x05\U0002546b", // 𥑫
+ 0x2546c: "p\x05\U0002546c", // 𥑬
+ 0x2546d: "p\x05\U0002546d", // 𥑭
+ 0x2546e: "p\x05\U0002546e", // 𥑮
+ 0x2546f: "p\x05\U0002546f", // 𥑯
+ 0x25470: "p\x05\U00025470", // 𥑰
+ 0x25471: "p\x05\U00025471", // 𥑱
+ 0x25472: "p\x05\U00025472", // 𥑲
+ 0x25473: "p\x06\U00025473", // 𥑳
+ 0x25474: "p\x06\U00025474", // 𥑴
+ 0x25475: "p\x06\U00025475", // 𥑵
+ 0x25476: "p\x06\U00025476", // 𥑶
+ 0x25477: "p\x06\U00025477", // 𥑷
+ 0x25478: "p\x06\U00025478", // 𥑸
+ 0x25479: "p\x06\U00025479", // 𥑹
+ 0x2547a: "p\x06\U0002547a", // 𥑺
+ 0x2547b: "p\x06\U0002547b", // 𥑻
+ 0x2547c: "p\x06\U0002547c", // 𥑼
+ 0x2547d: "p\x06\U0002547d", // 𥑽
+ 0x2547e: "p\x06\U0002547e", // 𥑾
+ 0x2547f: "p\x06\U0002547f", // 𥑿
+ 0x25480: "p\x06\U00025480", // 𥒀
+ 0x25481: "p\x06\U00025481", // 𥒁
+ 0x25482: "p\x06\U00025482", // 𥒂
+ 0x25483: "p\x06\U00025483", // 𥒃
+ 0x25484: "p\x06\U00025484", // 𥒄
+ 0x25485: "p\x06\U00025485", // 𥒅
+ 0x25486: "p\x06\U00025486", // 𥒆
+ 0x25487: "p\x06\U00025487", // 𥒇
+ 0x25488: "p\x06\U00025488", // 𥒈
+ 0x25489: "p\x06\U00025489", // 𥒉
+ 0x2548a: "p\x06\U0002548a", // 𥒊
+ 0x2548b: "p\x06\U0002548b", // 𥒋
+ 0x2548c: "p\x06\U0002548c", // 𥒌
+ 0x2548d: "p\x06\U0002548d", // 𥒍
+ 0x2548e: "p\x06\U0002548e", // 𥒎
+ 0x2548f: "p\x06\U0002548f", // 𥒏
+ 0x25490: "p\x06\U00025490", // 𥒐
+ 0x25491: "p\x06\U00025491", // 𥒑
+ 0x25492: "p\x06\U00025492", // 𥒒
+ 0x25493: "p\x06\U00025493", // 𥒓
+ 0x25494: "p\x06\U00025494", // 𥒔
+ 0x25495: "p\x06\U00025495", // 𥒕
+ 0x25496: "p\x06\U00025496", // 𥒖
+ 0x25497: "p\x06\U00025497", // 𥒗
+ 0x25498: "p\x06\U00025498", // 𥒘
+ 0x25499: "p\x06\U00025499", // 𥒙
+ 0x2549a: "p\x06\U0002549a", // 𥒚
+ 0x2549b: "p\x06\U0002549b", // 𥒛
+ 0x2549c: "p\x06\U0002549c", // 𥒜
+ 0x2549d: "p\x06\U0002549d", // 𥒝
+ 0x2549e: "p\x06\U0002549e", // 𥒞
+ 0x2549f: "p\x06\U0002549f", // 𥒟
+ 0x254a0: "p\x06\U000254a0", // 𥒠
+ 0x254a1: "p\x06\U000254a1", // 𥒡
+ 0x254a2: "p\x06\U000254a2", // 𥒢
+ 0x254a3: "p\x06\U000254a3", // 𥒣
+ 0x254a4: "p\x06\U000254a4", // 𥒤
+ 0x254a5: "p\x06\U000254a5", // 𥒥
+ 0x254a6: "p\x06\U000254a6", // 𥒦
+ 0x254a7: "p\x06\U000254a7", // 𥒧
+ 0x254a8: "p\x06\U000254a8", // 𥒨
+ 0x254a9: "p\x06\U000254a9", // 𥒩
+ 0x254aa: "p\a\U000254aa", // 𥒪
+ 0x254ab: "p\a\U000254ab", // 𥒫
+ 0x254ac: "p\a\U000254ac", // 𥒬
+ 0x254ad: "p\a\U000254ad", // 𥒭
+ 0x254ae: "p\a\U000254ae", // 𥒮
+ 0x254af: "p\a\U000254af", // 𥒯
+ 0x254b0: "p\a\U000254b0", // 𥒰
+ 0x254b1: "p\a\U000254b1", // 𥒱
+ 0x254b2: "p\a\U000254b2", // 𥒲
+ 0x254b3: "p\a\U000254b3", // 𥒳
+ 0x254b4: "p\a\U000254b4", // 𥒴
+ 0x254b5: "p\a\U000254b5", // 𥒵
+ 0x254b6: "p\a\U000254b6", // 𥒶
+ 0x254b7: "p\a\U000254b7", // 𥒷
+ 0x254b8: "p\a\U000254b8", // 𥒸
+ 0x254b9: "p\a\U000254b9", // 𥒹
+ 0x254ba: "p\a\U000254ba", // 𥒺
+ 0x254bb: "p\a\U000254bb", // 𥒻
+ 0x254bc: "p\a\U000254bc", // 𥒼
+ 0x254bd: "p\a\U000254bd", // 𥒽
+ 0x254be: "p\a\U000254be", // 𥒾
+ 0x254bf: "p\a\U000254bf", // 𥒿
+ 0x254c0: "p\a\U000254c0", // 𥓀
+ 0x254c1: "p\a\U000254c1", // 𥓁
+ 0x254c2: "p\a\U000254c2", // 𥓂
+ 0x254c3: "p\a\U000254c3", // 𥓃
+ 0x254c4: "p\a\U000254c4", // 𥓄
+ 0x254c5: "p\a\U000254c5", // 𥓅
+ 0x254c6: "p\a\U000254c6", // 𥓆
+ 0x254c7: "p\a\U000254c7", // 𥓇
+ 0x254c8: "p\a\U000254c8", // 𥓈
+ 0x254c9: "p\a\U000254c9", // 𥓉
+ 0x254ca: "p\b\U000254ca", // 𥓊
+ 0x254cb: "p\b\U000254cb", // 𥓋
+ 0x254cc: "p\b\U000254cc", // 𥓌
+ 0x254cd: "p\b\U000254cd", // 𥓍
+ 0x254ce: "p\b\U000254ce", // 𥓎
+ 0x254cf: "p\b\U000254cf", // 𥓏
+ 0x254d0: "p\b\U000254d0", // 𥓐
+ 0x254d1: "p\b\U000254d1", // 𥓑
+ 0x254d2: "p\b\U000254d2", // 𥓒
+ 0x254d3: "p\b\U000254d3", // 𥓓
+ 0x254d4: "p\b\U000254d4", // 𥓔
+ 0x254d5: "p\b\U000254d5", // 𥓕
+ 0x254d6: "p\b\U000254d6", // 𥓖
+ 0x254d7: "p\b\U000254d7", // 𥓗
+ 0x254d8: "p\b\U000254d8", // 𥓘
+ 0x254d9: "p\b\U000254d9", // 𥓙
+ 0x254da: "p\b\U000254da", // 𥓚
+ 0x254db: "p\b\U000254db", // 𥓛
+ 0x254dc: "p\b\U000254dc", // 𥓜
+ 0x254dd: "p\b\U000254dd", // 𥓝
+ 0x254de: "p\b\U000254de", // 𥓞
+ 0x254df: "p\b\U000254df", // 𥓟
+ 0x254e0: "p\b\U000254e0", // 𥓠
+ 0x254e1: "p\b\U000254e1", // 𥓡
+ 0x254e2: "p\b\U000254e2", // 𥓢
+ 0x254e3: "p\b\U000254e3", // 𥓣
+ 0x254e4: "p\b\U000254e4", // 𥓤
+ 0x254e5: "p\b\U000254e5", // 𥓥
+ 0x254e6: "p\b\U000254e6", // 𥓦
+ 0x254e7: "p\b\U000254e7", // 𥓧
+ 0x254e8: "p\b\U000254e8", // 𥓨
+ 0x254e9: "p\b\U000254e9", // 𥓩
+ 0x254ea: "p\b\U000254ea", // 𥓪
+ 0x254eb: "p\b\U000254eb", // 𥓫
+ 0x254ec: "p\b\U000254ec", // 𥓬
+ 0x254ed: "p\b\U000254ed", // 𥓭
+ 0x254ee: "p\b\U000254ee", // 𥓮
+ 0x254ef: "p\b\U000254ef", // 𥓯
+ 0x254f0: "p\b\U000254f0", // 𥓰
+ 0x254f1: "p\b\U000254f1", // 𥓱
+ 0x254f2: "p\b\U000254f2", // 𥓲
+ 0x254f3: "p\b\U000254f3", // 𥓳
+ 0x254f4: "p\b\U000254f4", // 𥓴
+ 0x254f5: "p\b\U000254f5", // 𥓵
+ 0x254f6: "p\b\U000254f6", // 𥓶
+ 0x254f7: "p\b\U000254f7", // 𥓷
+ 0x254f8: "p\b\U000254f8", // 𥓸
+ 0x254f9: "p\b\U000254f9", // 𥓹
+ 0x254fa: "p\t\U000254fa", // 𥓺
+ 0x254fb: "p\t\U000254fb", // 𥓻
+ 0x254fc: "p\t\U000254fc", // 𥓼
+ 0x254fd: "p\t\U000254fd", // 𥓽
+ 0x254fe: "p\t\U000254fe", // 𥓾
+ 0x254ff: "p\t\U000254ff", // 𥓿
+ 0x25500: "p\t\U00025500", // 𥔀
+ 0x25501: "p\t\U00025501", // 𥔁
+ 0x25502: "p\t\U00025502", // 𥔂
+ 0x25503: "p\t\U00025503", // 𥔃
+ 0x25504: "p\t\U00025504", // 𥔄
+ 0x25505: "p\t\U00025505", // 𥔅
+ 0x25506: "p\t\U00025506", // 𥔆
+ 0x25507: "p\t\U00025507", // 𥔇
+ 0x25508: "p\t\U00025508", // 𥔈
+ 0x25509: "p\t\U00025509", // 𥔉
+ 0x2550a: "p\t\U0002550a", // 𥔊
+ 0x2550b: "p\t\U0002550b", // 𥔋
+ 0x2550c: "p\t\U0002550c", // 𥔌
+ 0x2550d: "p\t\U0002550d", // 𥔍
+ 0x2550e: "p\t\U0002550e", // 𥔎
+ 0x2550f: "p\t\U0002550f", // 𥔏
+ 0x25510: "p\t\U00025510", // 𥔐
+ 0x25511: "p\t\U00025511", // 𥔑
+ 0x25512: "p\t\U00025512", // 𥔒
+ 0x25513: "p\t\U00025513", // 𥔓
+ 0x25514: "p\t\U00025514", // 𥔔
+ 0x25515: "p\t\U00025515", // 𥔕
+ 0x25516: "p\t\U00025516", // 𥔖
+ 0x25517: "p\t\U00025517", // 𥔗
+ 0x25518: "p\t\U00025518", // 𥔘
+ 0x25519: "p\t\U00025519", // 𥔙
+ 0x2551a: "p\t\U0002551a", // 𥔚
+ 0x2551b: "p\t\U0002551b", // 𥔛
+ 0x2551c: "p\t\U0002551c", // 𥔜
+ 0x2551d: "p\t\U0002551d", // 𥔝
+ 0x2551e: "p\t\U0002551e", // 𥔞
+ 0x2551f: "p\t\U0002551f", // 𥔟
+ 0x25520: "p\t\U00025520", // 𥔠
+ 0x25521: "p\t\U00025521", // 𥔡
+ 0x25522: "p\t\U00025522", // 𥔢
+ 0x25523: "p\t\U00025523", // 𥔣
+ 0x25524: "p\t\U00025524", // 𥔤
+ 0x25525: "p\t\U00025525", // 𥔥
+ 0x25526: "p\t\U00025526", // 𥔦
+ 0x25527: "p\t\U00025527", // 𥔧
+ 0x25528: "p\t\U00025528", // 𥔨
+ 0x25529: "p\t\U00025529", // 𥔩
+ 0x2552a: "p\t\U0002552a", // 𥔪
+ 0x2552b: "p\t\U0002552b", // 𥔫
+ 0x2552c: "p\t\U0002552c", // 𥔬
+ 0x2552d: "p\n\U0002552d", // 𥔭
+ 0x2552e: "p\n\U0002552e", // 𥔮
+ 0x2552f: "p\n\U0002552f", // 𥔯
+ 0x25530: "p\n\U00025530", // 𥔰
+ 0x25531: "p\n\U00025531", // 𥔱
+ 0x25532: "p\n\U00025532", // 𥔲
+ 0x25533: "p\n\U00025533", // 𥔳
+ 0x25534: "p\n\U00025534", // 𥔴
+ 0x25535: "p\n\U00025535", // 𥔵
+ 0x25536: "p\n\U00025536", // 𥔶
+ 0x25537: "p\n\U00025537", // 𥔷
+ 0x25538: "p\n\U00025538", // 𥔸
+ 0x25539: "p\n\U00025539", // 𥔹
+ 0x2553a: "p\n\U0002553a", // 𥔺
+ 0x2553b: "p\n\U0002553b", // 𥔻
+ 0x2553c: "p\n\U0002553c", // 𥔼
+ 0x2553d: "p\n\U0002553d", // 𥔽
+ 0x2553e: "p\n\U0002553e", // 𥔾
+ 0x2553f: "p\n\U0002553f", // 𥔿
+ 0x25540: "p\n\U00025540", // 𥕀
+ 0x25541: "p\n\U00025541", // 𥕁
+ 0x25542: "p\n\U00025542", // 𥕂
+ 0x25543: "p\n\U00025543", // 𥕃
+ 0x25544: "p\n\U00025544", // 𥕄
+ 0x25545: "p\n\U00025545", // 𥕅
+ 0x25546: "p\n\U00025546", // 𥕆
+ 0x25547: "p\n\U00025547", // 𥕇
+ 0x25548: "p\n\U00025548", // 𥕈
+ 0x25549: "p\n\U00025549", // 𥕉
+ 0x2554a: "p\n\U0002554a", // 𥕊
+ 0x2554b: "p\n\U0002554b", // 𥕋
+ 0x2554c: "p\v\U0002554c", // 𥕌
+ 0x2554d: "p\v\U0002554d", // 𥕍
+ 0x2554e: "p\v\U0002554e", // 𥕎
+ 0x2554f: "p\v\U0002554f", // 𥕏
+ 0x25550: "p\v\U00025550", // 𥕐
+ 0x25551: "p\v\U00025551", // 𥕑
+ 0x25552: "p\v\U00025552", // 𥕒
+ 0x25553: "p\v\U00025553", // 𥕓
+ 0x25554: "p\v\U00025554", // 𥕔
+ 0x25555: "p\v\U00025555", // 𥕕
+ 0x25556: "p\v\U00025556", // 𥕖
+ 0x25557: "p\v\U00025557", // 𥕗
+ 0x25558: "p\v\U00025558", // 𥕘
+ 0x25559: "p\v\U00025559", // 𥕙
+ 0x2555a: "p\v\U0002555a", // 𥕚
+ 0x2555b: "p\v\U0002555b", // 𥕛
+ 0x2555c: "p\v\U0002555c", // 𥕜
+ 0x2555d: "p\v\U0002555d", // 𥕝
+ 0x2555e: "p\v\U0002555e", // 𥕞
+ 0x2555f: "p\v\U0002555f", // 𥕟
+ 0x25560: "p\v\U00025560", // 𥕠
+ 0x25561: "p\v\U00025561", // 𥕡
+ 0x25562: "p\v\U00025562", // 𥕢
+ 0x25563: "p\v\U00025563", // 𥕣
+ 0x25564: "p\v\U00025564", // 𥕤
+ 0x25565: "p\v\U00025565", // 𥕥
+ 0x25566: "p\v\U00025566", // 𥕦
+ 0x25567: "p\v\U00025567", // 𥕧
+ 0x25568: "p\v\U00025568", // 𥕨
+ 0x25569: "p\v\U00025569", // 𥕩
+ 0x2556a: "p\v\U0002556a", // 𥕪
+ 0x2556b: "p\v\U0002556b", // 𥕫
+ 0x2556c: "p\v\U0002556c", // 𥕬
+ 0x2556d: "p\v\U0002556d", // 𥕭
+ 0x2556e: "p\v\U0002556e", // 𥕮
+ 0x2556f: "p\v\U0002556f", // 𥕯
+ 0x25570: "p\f\U00025570", // 𥕰
+ 0x25571: "p\f\U00025571", // 𥕱
+ 0x25572: "p\f\U00025572", // 𥕲
+ 0x25573: "p\f\U00025573", // 𥕳
+ 0x25574: "p\f\U00025574", // 𥕴
+ 0x25575: "p\f\U00025575", // 𥕵
+ 0x25576: "p\f\U00025576", // 𥕶
+ 0x25577: "p\f\U00025577", // 𥕷
+ 0x25578: "p\f\U00025578", // 𥕸
+ 0x25579: "p\f\U00025579", // 𥕹
+ 0x2557a: "p\f\U0002557a", // 𥕺
+ 0x2557b: "p\f\U0002557b", // 𥕻
+ 0x2557c: "p\f\U0002557c", // 𥕼
+ 0x2557d: "p\f\U0002557d", // 𥕽
+ 0x2557e: "p\f\U0002557e", // 𥕾
+ 0x2557f: "p\f\U0002557f", // 𥕿
+ 0x25580: "p\f\U00025580", // 𥖀
+ 0x25581: "p\f\U00025581", // 𥖁
+ 0x25582: "p\f\U00025582", // 𥖂
+ 0x25583: "p\f\U00025583", // 𥖃
+ 0x25584: "p\f\U00025584", // 𥖄
+ 0x25585: "p\f\U00025585", // 𥖅
+ 0x25586: "p\f\U00025586", // 𥖆
+ 0x25587: "p\f\U00025587", // 𥖇
+ 0x25588: "p\f\U00025588", // 𥖈
+ 0x25589: "p\f\U00025589", // 𥖉
+ 0x2558a: "p\f\U0002558a", // 𥖊
+ 0x2558b: "p\f\U0002558b", // 𥖋
+ 0x2558c: "p\f\U0002558c", // 𥖌
+ 0x2558d: "p\f\U0002558d", // 𥖍
+ 0x2558e: "p\f\U0002558e", // 𥖎
+ 0x2558f: "p\f\U0002558f", // 𥖏
+ 0x25590: "p\f\U00025590", // 𥖐
+ 0x25591: "p\f\U00025591", // 𥖑
+ 0x25592: "p\f\U00025592", // 𥖒
+ 0x25593: "p\f\U00025593", // 𥖓
+ 0x25594: "p\f\U00025594", // 𥖔
+ 0x25595: "p\f\U00025595", // 𥖕
+ 0x25596: "p\f\U00025596", // 𥖖
+ 0x25597: "p\r\U00025597", // 𥖗
+ 0x25598: "p\r\U00025598", // 𥖘
+ 0x25599: "p\r\U00025599", // 𥖙
+ 0x2559a: "p\r\U0002559a", // 𥖚
+ 0x2559b: "p\r\U0002559b", // 𥖛
+ 0x2559c: "p\r\U0002559c", // 𥖜
+ 0x2559d: "p\r\U0002559d", // 𥖝
+ 0x2559e: "p\r\U0002559e", // 𥖞
+ 0x2559f: "p\r\U0002559f", // 𥖟
+ 0x255a0: "p\r\U000255a0", // 𥖠
+ 0x255a1: "p\r\U000255a1", // 𥖡
+ 0x255a2: "p\r\U000255a2", // 𥖢
+ 0x255a3: "p\r\U000255a3", // 𥖣
+ 0x255a4: "p\r\U000255a4", // 𥖤
+ 0x255a5: "p\r\U000255a5", // 𥖥
+ 0x255a6: "p\r\U000255a6", // 𥖦
+ 0x255a7: "p\r\U000255a7", // 𥖧
+ 0x255a8: "p\r\U000255a8", // 𥖨
+ 0x255a9: "p\r\U000255a9", // 𥖩
+ 0x255aa: "p\x0e\U000255aa", // 𥖪
+ 0x255ab: "p\x0e\U000255ab", // 𥖫
+ 0x255ac: "p\x0e\U000255ac", // 𥖬
+ 0x255ad: "p\x0e\U000255ad", // 𥖭
+ 0x255ae: "p\x0e\U000255ae", // 𥖮
+ 0x255af: "p\x0e\U000255af", // 𥖯
+ 0x255b0: "p\x0e\U000255b0", // 𥖰
+ 0x255b1: "p\x0e\U000255b1", // 𥖱
+ 0x255b2: "p\x0e\U000255b2", // 𥖲
+ 0x255b3: "p\x0e\U000255b3", // 𥖳
+ 0x255b4: "p\x0e\U000255b4", // 𥖴
+ 0x255b5: "p\x0e\U000255b5", // 𥖵
+ 0x255b6: "p\x0e\U000255b6", // 𥖶
+ 0x255b7: "p\x0e\U000255b7", // 𥖷
+ 0x255b8: "p\x0e\U000255b8", // 𥖸
+ 0x255b9: "p\x0e\U000255b9", // 𥖹
+ 0x255ba: "p\x0e\U000255ba", // 𥖺
+ 0x255bb: "p\x0f\U000255bb", // 𥖻
+ 0x255bc: "p\x0f\U000255bc", // 𥖼
+ 0x255bd: "p\x0f\U000255bd", // 𥖽
+ 0x255be: "p\x0f\U000255be", // 𥖾
+ 0x255bf: "p\x0f\U000255bf", // 𥖿
+ 0x255c0: "p\x0f\U000255c0", // 𥗀
+ 0x255c1: "p\x0f\U000255c1", // 𥗁
+ 0x255c2: "p\x0f\U000255c2", // 𥗂
+ 0x255c3: "p\x0f\U000255c3", // 𥗃
+ 0x255c4: "p\x0f\U000255c4", // 𥗄
+ 0x255c5: "p\x0f\U000255c5", // 𥗅
+ 0x255c6: "p\x0f\U000255c6", // 𥗆
+ 0x255c7: "p\x0f\U000255c7", // 𥗇
+ 0x255c8: "p\x0f\U000255c8", // 𥗈
+ 0x255c9: "p\x0f\U000255c9", // 𥗉
+ 0x255ca: "p\x0f\U000255ca", // 𥗊
+ 0x255cb: "p\x0f\U000255cb", // 𥗋
+ 0x255cc: "p\x0f\U000255cc", // 𥗌
+ 0x255cd: "p\x0f\U000255cd", // 𥗍
+ 0x255ce: "p\x0f\U000255ce", // 𥗎
+ 0x255cf: "p\x0f\U000255cf", // 𥗏
+ 0x255d0: "p\x0f\U000255d0", // 𥗐
+ 0x255d1: "p\x0f\U000255d1", // 𥗑
+ 0x255d2: "p\x10\U000255d2", // 𥗒
+ 0x255d3: "p\x10\U000255d3", // 𥗓
+ 0x255d4: "p\x10\U000255d4", // 𥗔
+ 0x255d5: "p\x10\U000255d5", // 𥗕
+ 0x255d6: "p\x10\U000255d6", // 𥗖
+ 0x255d7: "p\x10\U000255d7", // 𥗗
+ 0x255d8: "p\x10\U000255d8", // 𥗘
+ 0x255d9: "p\x10\U000255d9", // 𥗙
+ 0x255da: "p\x10\U000255da", // 𥗚
+ 0x255db: "p\x10\U000255db", // 𥗛
+ 0x255dc: "p\x10\U000255dc", // 𥗜
+ 0x255dd: "p\x11\U000255dd", // 𥗝
+ 0x255de: "p\x11\U000255de", // 𥗞
+ 0x255df: "p\x11\U000255df", // 𥗟
+ 0x255e0: "p\x11\U000255e0", // 𥗠
+ 0x255e1: "p\x11\U000255e1", // 𥗡
+ 0x255e2: "p\x11\U000255e2", // 𥗢
+ 0x255e3: "p\x11\U000255e3", // 𥗣
+ 0x255e4: "p\x11\U000255e4", // 𥗤
+ 0x255e5: "p\x11\U000255e5", // 𥗥
+ 0x255e6: "p\x11\U000255e6", // 𥗦
+ 0x255e7: "p\x11\U000255e7", // 𥗧
+ 0x255e8: "p\x11\U000255e8", // 𥗨
+ 0x255e9: "p\x11\U000255e9", // 𥗩
+ 0x255ea: "p\x11\U000255ea", // 𥗪
+ 0x255eb: "p\x12\U000255eb", // 𥗫
+ 0x255ec: "p\x12\U000255ec", // 𥗬
+ 0x255ed: "p\x12\U000255ed", // 𥗭
+ 0x255ee: "p\x12\U000255ee", // 𥗮
+ 0x255ef: "p\x12\U000255ef", // 𥗯
+ 0x255f0: "p\x12\U000255f0", // 𥗰
+ 0x255f1: "p\x12\U000255f1", // 𥗱
+ 0x255f2: "p\x12\U000255f2", // 𥗲
+ 0x255f3: "p\x12\U000255f3", // 𥗳
+ 0x255f4: "p\x13\U000255f4", // 𥗴
+ 0x255f5: "p\x13\U000255f5", // 𥗵
+ 0x255f6: "\xba\x0f\U000255f6", // 𥗶
+ 0x255f7: "p\x13\U000255f7", // 𥗷
+ 0x255f8: "p\x13\U000255f8", // 𥗸
+ 0x255f9: "p\x14\U000255f9", // 𥗹
+ 0x255fa: "p\x15\U000255fa", // 𥗺
+ 0x255fb: "p\x15\U000255fb", // 𥗻
+ 0x255fc: "p\x15\U000255fc", // 𥗼
+ 0x255fd: "p\x15\U000255fd", // 𥗽
+ 0x255fe: "p\x16\U000255fe", // 𥗾
+ 0x255ff: "p\x16\U000255ff", // 𥗿
+ 0x25600: "p\x16\U00025600", // 𥘀
+ 0x25601: "p\x17\U00025601", // 𥘁
+ 0x25602: "p\x17\U00025602", // 𥘂
+ 0x25603: "p\x18\U00025603", // 𥘃
+ 0x25604: "p\x1d\U00025604", // 𥘄
+ 0x25605: "q\x00\U00025605", // 𥘅
+ 0x25606: "q\x01\U00025606", // 𥘆
+ 0x25607: "q\x02\U00025607", // 𥘇
+ 0x25608: "q\x02\U00025608", // 𥘈
+ 0x25609: "q\x02\U00025609", // 𥘉
+ 0x2560a: "q\x02\U0002560a", // 𥘊
+ 0x2560b: "q\x02\U0002560b", // 𥘋
+ 0x2560c: "q\x02\U0002560c", // 𥘌
+ 0x2560d: "q\x03\U0002560d", // 𥘍
+ 0x2560e: "q\x03\U0002560e", // 𥘎
+ 0x2560f: "q\x03\U0002560f", // 𥘏
+ 0x25610: "q\x03\U00025610", // 𥘐
+ 0x25611: "q\x03\U00025611", // 𥘑
+ 0x25612: "q\x03\U00025612", // 𥘒
+ 0x25613: "q\x03\U00025613", // 𥘓
+ 0x25614: "q\x03\U00025614", // 𥘔
+ 0x25615: "q\x04\U00025615", // 𥘕
+ 0x25616: "q\x04\U00025616", // 𥘖
+ 0x25617: "q\x04\U00025617", // 𥘗
+ 0x25618: "q\x04\U00025618", // 𥘘
+ 0x25619: "q\x04\U00025619", // 𥘙
+ 0x2561a: "q\x04\U0002561a", // 𥘚
+ 0x2561b: "q\x04\U0002561b", // 𥘛
+ 0x2561c: "q\x04\U0002561c", // 𥘜
+ 0x2561d: "q\x04\U0002561d", // 𥘝
+ 0x2561e: "q\x04\U0002561e", // 𥘞
+ 0x2561f: "q\x04\U0002561f", // 𥘟
+ 0x25620: "q\x04\U00025620", // 𥘠
+ 0x25621: "q\x04\U00025621", // 𥘡
+ 0x25622: "q\x04\U00025622", // 𥘢
+ 0x25623: "q\x04\U00025623", // 𥘣
+ 0x25624: "q\x04\U00025624", // 𥘤
+ 0x25625: "q\x04\U00025625", // 𥘥
+ 0x25626: "q\x04\U00025626", // 𥘦
+ 0x25627: "q\x04\U00025627", // 𥘧
+ 0x25628: "q\x04\U00025628", // 𥘨
+ 0x25629: "q\x04\U00025629", // 𥘩
+ 0x2562a: "q\x04\U0002562a", // 𥘪
+ 0x2562b: "q\x05\U0002562b", // 𥘫
+ 0x2562c: "q\x05\U0002562c", // 𥘬
+ 0x2562d: "q\x05\U0002562d", // 𥘭
+ 0x2562e: "q\x05\U0002562e", // 𥘮
+ 0x2562f: "q\x05\U0002562f", // 𥘯
+ 0x25630: "q\x05\U00025630", // 𥘰
+ 0x25631: "q\x05\U00025631", // 𥘱
+ 0x25632: "q\x05\U00025632", // 𥘲
+ 0x25633: "q\x05\U00025633", // 𥘳
+ 0x25634: "q\x05\U00025634", // 𥘴
+ 0x25635: "q\x05\U00025635", // 𥘵
+ 0x25636: "q\x05\U00025636", // 𥘶
+ 0x25637: "q\x05\U00025637", // 𥘷
+ 0x25638: "q\x05\U00025638", // 𥘸
+ 0x25639: "q\x05\U00025639", // 𥘹
+ 0x2563a: "q\x05\U0002563a", // 𥘺
+ 0x2563b: "q\x05\U0002563b", // 𥘻
+ 0x2563c: "q\x05\U0002563c", // 𥘼
+ 0x2563d: "q\x05\U0002563d", // 𥘽
+ 0x2563e: "q\x05\U0002563e", // 𥘾
+ 0x2563f: "q\x05\U0002563f", // 𥘿
+ 0x25640: "q\x05\U00025640", // 𥙀
+ 0x25641: "q\x05\U00025641", // 𥙁
+ 0x25642: "q\x05\U00025642", // 𥙂
+ 0x25643: "q\x05\U00025643", // 𥙃
+ 0x25644: "q\x05\U00025644", // 𥙄
+ 0x25645: "q\x05\U00025645", // 𥙅
+ 0x25646: "q\x05\U00025646", // 𥙆
+ 0x25647: "q\x05\U00025647", // 𥙇
+ 0x25648: "q\x05\U00025648", // 𥙈
+ 0x25649: "q\x05\U00025649", // 𥙉
+ 0x2564a: "q\x05\U0002564a", // 𥙊
+ 0x2564b: "q\x05\U0002564b", // 𥙋
+ 0x2564c: "q\x05\U0002564c", // 𥙌
+ 0x2564d: "q\x05\U0002564d", // 𥙍
+ 0x2564e: "q\x06\U0002564e", // 𥙎
+ 0x2564f: "q\x06\U0002564f", // 𥙏
+ 0x25650: "q\x06\U00025650", // 𥙐
+ 0x25651: "q\x06\U00025651", // 𥙑
+ 0x25652: "q\x06\U00025652", // 𥙒
+ 0x25653: "q\x06\U00025653", // 𥙓
+ 0x25654: "q\x06\U00025654", // 𥙔
+ 0x25655: "q\x06\U00025655", // 𥙕
+ 0x25656: "q\x06\U00025656", // 𥙖
+ 0x25657: "q\x06\U00025657", // 𥙗
+ 0x25658: "q\x06\U00025658", // 𥙘
+ 0x25659: "q\x06\U00025659", // 𥙙
+ 0x2565a: "q\x06\U0002565a", // 𥙚
+ 0x2565b: "q\x06\U0002565b", // 𥙛
+ 0x2565c: "q\x06\U0002565c", // 𥙜
+ 0x2565d: "q\x06\U0002565d", // 𥙝
+ 0x2565e: "q\x06\U0002565e", // 𥙞
+ 0x2565f: "q\x06\U0002565f", // 𥙟
+ 0x25660: "q\x06\U00025660", // 𥙠
+ 0x25661: "q\x06\U00025661", // 𥙡
+ 0x25662: "q\x06\U00025662", // 𥙢
+ 0x25663: "q\x06\U00025663", // 𥙣
+ 0x25664: "q\x06\U00025664", // 𥙤
+ 0x25665: "q\x06\U00025665", // 𥙥
+ 0x25666: "q\x06\U00025666", // 𥙦
+ 0x25667: "q\x06\U00025667", // 𥙧
+ 0x25668: "q\x06\U00025668", // 𥙨
+ 0x25669: "q\x06\U00025669", // 𥙩
+ 0x2566a: "q\x06\U0002566a", // 𥙪
+ 0x2566b: "q\a\U0002566b", // 𥙫
+ 0x2566c: "q\a\U0002566c", // 𥙬
+ 0x2566d: "q\a\U0002566d", // 𥙭
+ 0x2566e: "q\a\U0002566e", // 𥙮
+ 0x2566f: "q\a\U0002566f", // 𥙯
+ 0x25670: "q\a\U00025670", // 𥙰
+ 0x25671: "q\a\U00025671", // 𥙱
+ 0x25672: "q\a\U00025672", // 𥙲
+ 0x25673: "q\a\U00025673", // 𥙳
+ 0x25674: "q\a\U00025674", // 𥙴
+ 0x25675: "q\a\U00025675", // 𥙵
+ 0x25676: "q\a\U00025676", // 𥙶
+ 0x25677: "q\a\U00025677", // 𥙷
+ 0x25678: "q\a\U00025678", // 𥙸
+ 0x25679: "q\a\U00025679", // 𥙹
+ 0x2567a: "q\a\U0002567a", // 𥙺
+ 0x2567b: "q\a\U0002567b", // 𥙻
+ 0x2567c: "q\a\U0002567c", // 𥙼
+ 0x2567d: "q\a\U0002567d", // 𥙽
+ 0x2567e: "q\a\U0002567e", // 𥙾
+ 0x2567f: "q\a\U0002567f", // 𥙿
+ 0x25680: "q\a\U00025680", // 𥚀
+ 0x25681: "q\a\U00025681", // 𥚁
+ 0x25682: "q\a\U00025682", // 𥚂
+ 0x25683: "q\a\U00025683", // 𥚃
+ 0x25684: "q\a\U00025684", // 𥚄
+ 0x25685: "q\a\U00025685", // 𥚅
+ 0x25686: "q\a\U00025686", // 𥚆
+ 0x25687: "q\a\U00025687", // 𥚇
+ 0x25688: "q\b\U00025688", // 𥚈
+ 0x25689: "q\b\U00025689", // 𥚉
+ 0x2568a: "q\b\U0002568a", // 𥚊
+ 0x2568b: "q\b\U0002568b", // 𥚋
+ 0x2568c: "q\b\U0002568c", // 𥚌
+ 0x2568d: "q\b\U0002568d", // 𥚍
+ 0x2568e: "q\b\U0002568e", // 𥚎
+ 0x2568f: "q\b\U0002568f", // 𥚏
+ 0x25690: "q\b\U00025690", // 𥚐
+ 0x25691: "q\b\U00025691", // 𥚑
+ 0x25692: "q\b\U00025692", // 𥚒
+ 0x25693: "q\b\U00025693", // 𥚓
+ 0x25694: "q\b\U00025694", // 𥚔
+ 0x25695: "q\b\U00025695", // 𥚕
+ 0x25696: "q\b\U00025696", // 𥚖
+ 0x25697: "q\b\U00025697", // 𥚗
+ 0x25698: "q\b\U00025698", // 𥚘
+ 0x25699: "q\b\U00025699", // 𥚙
+ 0x2569a: "q\b\U0002569a", // 𥚚
+ 0x2569b: "q\b\U0002569b", // 𥚛
+ 0x2569c: "q\b\U0002569c", // 𥚜
+ 0x2569d: "q\b\U0002569d", // 𥚝
+ 0x2569e: "q\b\U0002569e", // 𥚞
+ 0x2569f: "q\b\U0002569f", // 𥚟
+ 0x256a0: "q\b\U000256a0", // 𥚠
+ 0x256a1: "q\b\U000256a1", // 𥚡
+ 0x256a2: "q\b\U000256a2", // 𥚢
+ 0x256a3: "q\b\U000256a3", // 𥚣
+ 0x256a4: "q\b\U000256a4", // 𥚤
+ 0x256a5: "q\b\U000256a5", // 𥚥
+ 0x256a6: "q\t\U000256a6", // 𥚦
+ 0x256a7: "q\t\U000256a7", // 𥚧
+ 0x256a8: "q\t\U000256a8", // 𥚨
+ 0x256a9: "q\t\U000256a9", // 𥚩
+ 0x256aa: "q\t\U000256aa", // 𥚪
+ 0x256ab: "q\t\U000256ab", // 𥚫
+ 0x256ac: "q\t\U000256ac", // 𥚬
+ 0x256ad: "q\t\U000256ad", // 𥚭
+ 0x256ae: "q\t\U000256ae", // 𥚮
+ 0x256af: "q\t\U000256af", // 𥚯
+ 0x256b0: "q\t\U000256b0", // 𥚰
+ 0x256b1: "q\t\U000256b1", // 𥚱
+ 0x256b2: "q\t\U000256b2", // 𥚲
+ 0x256b3: "q\t\U000256b3", // 𥚳
+ 0x256b4: "q\t\U000256b4", // 𥚴
+ 0x256b5: "q\t\U000256b5", // 𥚵
+ 0x256b6: "q\t\U000256b6", // 𥚶
+ 0x256b7: "q\t\U000256b7", // 𥚷
+ 0x256b8: "q\t\U000256b8", // 𥚸
+ 0x256b9: "q\t\U000256b9", // 𥚹
+ 0x256ba: "q\t\U000256ba", // 𥚺
+ 0x256bb: "q\t\U000256bb", // 𥚻
+ 0x256bc: "q\t\U000256bc", // 𥚼
+ 0x256bd: "q\t\U000256bd", // 𥚽
+ 0x256be: "q\t\U000256be", // 𥚾
+ 0x256bf: "q\t\U000256bf", // 𥚿
+ 0x256c0: "q\t\U000256c0", // 𥛀
+ 0x256c1: "q\t\U000256c1", // 𥛁
+ 0x256c2: "q\t\U000256c2", // 𥛂
+ 0x256c3: "q\t\U000256c3", // 𥛃
+ 0x256c4: "q\t\U000256c4", // 𥛄
+ 0x256c5: "q\n\U000256c5", // 𥛅
+ 0x256c6: "q\n\U000256c6", // 𥛆
+ 0x256c7: "q\n\U000256c7", // 𥛇
+ 0x256c8: "q\n\U000256c8", // 𥛈
+ 0x256c9: "q\n\U000256c9", // 𥛉
+ 0x256ca: "q\n\U000256ca", // 𥛊
+ 0x256cb: "q\n\U000256cb", // 𥛋
+ 0x256cc: "q\n\U000256cc", // 𥛌
+ 0x256cd: "q\n\U000256cd", // 𥛍
+ 0x256ce: "q\n\U000256ce", // 𥛎
+ 0x256cf: "q\n\U000256cf", // 𥛏
+ 0x256d0: "q\n\U000256d0", // 𥛐
+ 0x256d1: "q\n\U000256d1", // 𥛑
+ 0x256d2: "q\n\U000256d2", // 𥛒
+ 0x256d3: "q\n\U000256d3", // 𥛓
+ 0x256d4: "q\n\U000256d4", // 𥛔
+ 0x256d5: "q\n\U000256d5", // 𥛕
+ 0x256d6: "q\n\U000256d6", // 𥛖
+ 0x256d7: "q\n\U000256d7", // 𥛗
+ 0x256d8: "q\v\U000256d8", // 𥛘
+ 0x256d9: "q\v\U000256d9", // 𥛙
+ 0x256da: "q\v\U000256da", // 𥛚
+ 0x256db: "q\v\U000256db", // 𥛛
+ 0x256dc: "q\v\U000256dc", // 𥛜
+ 0x256dd: "q\v\U000256dd", // 𥛝
+ 0x256de: "q\v\U000256de", // 𥛞
+ 0x256df: "q\v\U000256df", // 𥛟
+ 0x256e0: "q\v\U000256e0", // 𥛠
+ 0x256e1: "q\v\U000256e1", // 𥛡
+ 0x256e2: "q\v\U000256e2", // 𥛢
+ 0x256e3: "q\v\U000256e3", // 𥛣
+ 0x256e4: "q\v\U000256e4", // 𥛤
+ 0x256e5: "q\v\U000256e5", // 𥛥
+ 0x256e6: "q\v\U000256e6", // 𥛦
+ 0x256e7: "q\v\U000256e7", // 𥛧
+ 0x256e8: "q\v\U000256e8", // 𥛨
+ 0x256e9: "q\v\U000256e9", // 𥛩
+ 0x256ea: "q\v\U000256ea", // 𥛪
+ 0x256eb: "q\v\U000256eb", // 𥛫
+ 0x256ec: "q\v\U000256ec", // 𥛬
+ 0x256ed: "q\v\U000256ed", // 𥛭
+ 0x256ee: "q\f\U000256ee", // 𥛮
+ 0x256ef: "q\f\U000256ef", // 𥛯
+ 0x256f0: "q\f\U000256f0", // 𥛰
+ 0x256f1: "q\f\U000256f1", // 𥛱
+ 0x256f2: "q\f\U000256f2", // 𥛲
+ 0x256f3: "q\f\U000256f3", // 𥛳
+ 0x256f4: "q\f\U000256f4", // 𥛴
+ 0x256f5: "q\f\U000256f5", // 𥛵
+ 0x256f6: "q\f\U000256f6", // 𥛶
+ 0x256f7: "q\f\U000256f7", // 𥛷
+ 0x256f8: "q\f\U000256f8", // 𥛸
+ 0x256f9: "q\f\U000256f9", // 𥛹
+ 0x256fa: "q\f\U000256fa", // 𥛺
+ 0x256fb: "q\f\U000256fb", // 𥛻
+ 0x256fc: "q\f\U000256fc", // 𥛼
+ 0x256fd: "q\f\U000256fd", // 𥛽
+ 0x256fe: "q\f\U000256fe", // 𥛾
+ 0x256ff: "q\f\U000256ff", // 𥛿
+ 0x25700: "q\f\U00025700", // 𥜀
+ 0x25701: "q\f\U00025701", // 𥜁
+ 0x25702: "q\f\U00025702", // 𥜂
+ 0x25703: "q\r\U00025703", // 𥜃
+ 0x25704: "q\r\U00025704", // 𥜄
+ 0x25705: "q\r\U00025705", // 𥜅
+ 0x25706: "q\r\U00025706", // 𥜆
+ 0x25707: "q\r\U00025707", // 𥜇
+ 0x25708: "q\r\U00025708", // 𥜈
+ 0x25709: "q\r\U00025709", // 𥜉
+ 0x2570a: "q\r\U0002570a", // 𥜊
+ 0x2570b: "q\r\U0002570b", // 𥜋
+ 0x2570c: "q\r\U0002570c", // 𥜌
+ 0x2570d: "q\r\U0002570d", // 𥜍
+ 0x2570e: "q\r\U0002570e", // 𥜎
+ 0x2570f: "q\r\U0002570f", // 𥜏
+ 0x25710: "q\r\U00025710", // 𥜐
+ 0x25711: "q\r\U00025711", // 𥜑
+ 0x25712: "q\x0e\U00025712", // 𥜒
+ 0x25713: "q\x0e\U00025713", // 𥜓
+ 0x25714: "q\x0e\U00025714", // 𥜔
+ 0x25715: "q\x0e\U00025715", // 𥜕
+ 0x25716: "q\x0e\U00025716", // 𥜖
+ 0x25717: "q\x0e\U00025717", // 𥜗
+ 0x25718: "q\x0e\U00025718", // 𥜘
+ 0x25719: "q\x0e\U00025719", // 𥜙
+ 0x2571a: "q\x0f\U0002571a", // 𥜚
+ 0x2571b: "q\x0f\U0002571b", // 𥜛
+ 0x2571c: "q\x0f\U0002571c", // 𥜜
+ 0x2571d: "q\x0f\U0002571d", // 𥜝
+ 0x2571e: "q\x0f\U0002571e", // 𥜞
+ 0x2571f: "q\x0f\U0002571f", // 𥜟
+ 0x25720: "q\x10\U00025720", // 𥜠
+ 0x25721: "q\x10\U00025721", // 𥜡
+ 0x25722: "q\x10\U00025722", // 𥜢
+ 0x25723: "q\x10\U00025723", // 𥜣
+ 0x25724: "q\x10\U00025724", // 𥜤
+ 0x25725: "q\x11\U00025725", // 𥜥
+ 0x25726: "q\x11\U00025726", // 𥜦
+ 0x25727: "q\x11\U00025727", // 𥜧
+ 0x25728: "q\x11\U00025728", // 𥜨
+ 0x25729: "q\x11\U00025729", // 𥜩
+ 0x2572a: "q\x12\U0002572a", // 𥜪
+ 0x2572b: "q\x12\U0002572b", // 𥜫
+ 0x2572c: "q\x12\U0002572c", // 𥜬
+ 0x2572d: "q\x12\U0002572d", // 𥜭
+ 0x2572e: "q\x12\U0002572e", // 𥜮
+ 0x2572f: "q\x12\U0002572f", // 𥜯
+ 0x25730: "q\x13\U00025730", // 𥜰
+ 0x25731: "q\x13\U00025731", // 𥜱
+ 0x25732: "q\x13\U00025732", // 𥜲
+ 0x25733: "q\x13\U00025733", // 𥜳
+ 0x25734: "q\x14\U00025734", // 𥜴
+ 0x25735: "q\x14\U00025735", // 𥜵
+ 0x25736: "q\x15\U00025736", // 𥜶
+ 0x25737: "q\x15\U00025737", // 𥜷
+ 0x25738: "q\x15\U00025738", // 𥜸
+ 0x25739: "q\x16\U00025739", // 𥜹
+ 0x2573a: "q\x16\U0002573a", // 𥜺
+ 0x2573b: "r\x01\U0002573b", // 𥜻
+ 0x2573c: "r\x04\U0002573c", // 𥜼
+ 0x2573d: "r\x06\U0002573d", // 𥜽
+ 0x2573e: "r\a\U0002573e", // 𥜾
+ 0x2573f: "r\b\U0002573f", // 𥜿
+ 0x25740: "\x05\v\U00025740", // 𥝀
+ 0x25741: "r\b\U00025741", // 𥝁
+ 0x25742: "r\b\U00025742", // 𥝂
+ 0x25743: "r\t\U00025743", // 𥝃
+ 0x25744: "r\n\U00025744", // 𥝄
+ 0x25745: "r\v\U00025745", // 𥝅
+ 0x25746: "r\v\U00025746", // 𥝆
+ 0x25747: "r\v\U00025747", // 𥝇
+ 0x25748: "r\r\U00025748", // 𥝈
+ 0x25749: "r\r\U00025749", // 𥝉
+ 0x2574a: "r\x11\U0002574a", // 𥝊
+ 0x2574b: "r\x14\U0002574b", // 𥝋
+ 0x2574c: "s\x00\U0002574c", // 𥝌
+ 0x2574d: "s\x01\U0002574d", // 𥝍
+ 0x2574e: "s\x01\U0002574e", // 𥝎
+ 0x2574f: "s\x01\U0002574f", // 𥝏
+ 0x25750: "s\x02\U00025750", // 𥝐
+ 0x25751: "s\x02\U00025751", // 𥝑
+ 0x25752: "s\x02\U00025752", // 𥝒
+ 0x25753: "s\x02\U00025753", // 𥝓
+ 0x25754: "s\x03\U00025754", // 𥝔
+ 0x25755: "s\x03\U00025755", // 𥝕
+ 0x25756: "s\x03\U00025756", // 𥝖
+ 0x25757: "s\x03\U00025757", // 𥝗
+ 0x25758: "s\x03\U00025758", // 𥝘
+ 0x25759: "s\x03\U00025759", // 𥝙
+ 0x2575a: "s\x03\U0002575a", // 𥝚
+ 0x2575b: "s\x03\U0002575b", // 𥝛
+ 0x2575c: "s\x03\U0002575c", // 𥝜
+ 0x2575d: "s\x03\U0002575d", // 𥝝
+ 0x2575e: "s\x03\U0002575e", // 𥝞
+ 0x2575f: "s\x03\U0002575f", // 𥝟
+ 0x25760: "s\x03\U00025760", // 𥝠
+ 0x25761: "s\x03\U00025761", // 𥝡
+ 0x25762: "s\x03\U00025762", // 𥝢
+ 0x25763: "s\x04\U00025763", // 𥝣
+ 0x25764: "s\x04\U00025764", // 𥝤
+ 0x25765: "s\x04\U00025765", // 𥝥
+ 0x25766: "s\x04\U00025766", // 𥝦
+ 0x25767: "s\x04\U00025767", // 𥝧
+ 0x25768: "s\x04\U00025768", // 𥝨
+ 0x25769: "s\x04\U00025769", // 𥝩
+ 0x2576a: "s\x04\U0002576a", // 𥝪
+ 0x2576b: "s\x04\U0002576b", // 𥝫
+ 0x2576c: "s\x04\U0002576c", // 𥝬
+ 0x2576d: "s\x04\U0002576d", // 𥝭
+ 0x2576e: "s\x04\U0002576e", // 𥝮
+ 0x2576f: "s\x04\U0002576f", // 𥝯
+ 0x25770: "s\x04\U00025770", // 𥝰
+ 0x25771: "s\x04\U00025771", // 𥝱
+ 0x25772: "s\x04\U00025772", // 𥝲
+ 0x25773: "s\x04\U00025773", // 𥝳
+ 0x25774: "s\x04\U00025774", // 𥝴
+ 0x25775: "s\x04\U00025775", // 𥝵
+ 0x25776: "s\x04\U00025776", // 𥝶
+ 0x25777: "s\x04\U00025777", // 𥝷
+ 0x25778: "s\x04\U00025778", // 𥝸
+ 0x25779: "s\x04\U00025779", // 𥝹
+ 0x2577a: "s\x04\U0002577a", // 𥝺
+ 0x2577b: "s\x04\U0002577b", // 𥝻
+ 0x2577c: "s\x04\U0002577c", // 𥝼
+ 0x2577d: "s\x04\U0002577d", // 𥝽
+ 0x2577e: "s\x05\U0002577e", // 𥝾
+ 0x2577f: "s\x05\U0002577f", // 𥝿
+ 0x25780: "s\x05\U00025780", // 𥞀
+ 0x25781: "s\x05\U00025781", // 𥞁
+ 0x25782: "s\x05\U00025782", // 𥞂
+ 0x25783: "s\x05\U00025783", // 𥞃
+ 0x25784: "s\x05\U00025784", // 𥞄
+ 0x25785: "s\x05\U00025785", // 𥞅
+ 0x25786: "s\x05\U00025786", // 𥞆
+ 0x25787: "s\x05\U00025787", // 𥞇
+ 0x25788: "s\x05\U00025788", // 𥞈
+ 0x25789: "s\x05\U00025789", // 𥞉
+ 0x2578a: "s\x05\U0002578a", // 𥞊
+ 0x2578b: "s\x05\U0002578b", // 𥞋
+ 0x2578c: "s\x05\U0002578c", // 𥞌
+ 0x2578d: "s\x05\U0002578d", // 𥞍
+ 0x2578e: "s\x05\U0002578e", // 𥞎
+ 0x2578f: "s\x05\U0002578f", // 𥞏
+ 0x25790: "s\x05\U00025790", // 𥞐
+ 0x25791: "s\x05\U00025791", // 𥞑
+ 0x25792: "s\x05\U00025792", // 𥞒
+ 0x25793: "s\x05\U00025793", // 𥞓
+ 0x25794: "s\x05\U00025794", // 𥞔
+ 0x25795: "s\x05\U00025795", // 𥞕
+ 0x25796: "s\x05\U00025796", // 𥞖
+ 0x25797: "s\x05\U00025797", // 𥞗
+ 0x25798: "s\x06\U00025798", // 𥞘
+ 0x25799: "s\x06\U00025799", // 𥞙
+ 0x2579a: "s\x06\U0002579a", // 𥞚
+ 0x2579b: "s\x06\U0002579b", // 𥞛
+ 0x2579c: "s\x06\U0002579c", // 𥞜
+ 0x2579d: "s\x06\U0002579d", // 𥞝
+ 0x2579e: "s\x06\U0002579e", // 𥞞
+ 0x2579f: "s\x06\U0002579f", // 𥞟
+ 0x257a0: "s\x06\U000257a0", // 𥞠
+ 0x257a1: "s\x06\U000257a1", // 𥞡
+ 0x257a2: "s\x06\U000257a2", // 𥞢
+ 0x257a3: "s\x06\U000257a3", // 𥞣
+ 0x257a4: "s\x06\U000257a4", // 𥞤
+ 0x257a5: "s\x06\U000257a5", // 𥞥
+ 0x257a6: "s\x06\U000257a6", // 𥞦
+ 0x257a7: "s\x06\U000257a7", // 𥞧
+ 0x257a8: "s\x06\U000257a8", // 𥞨
+ 0x257a9: "s\x06\U000257a9", // 𥞩
+ 0x257aa: "s\x06\U000257aa", // 𥞪
+ 0x257ab: "s\x06\U000257ab", // 𥞫
+ 0x257ac: "s\x06\U000257ac", // 𥞬
+ 0x257ad: "s\x06\U000257ad", // 𥞭
+ 0x257ae: "s\x06\U000257ae", // 𥞮
+ 0x257af: "s\x06\U000257af", // 𥞯
+ 0x257b0: "s\x06\U000257b0", // 𥞰
+ 0x257b1: "s\x06\U000257b1", // 𥞱
+ 0x257b2: "s\a\U000257b2", // 𥞲
+ 0x257b3: "s\a\U000257b3", // 𥞳
+ 0x257b4: "s\a\U000257b4", // 𥞴
+ 0x257b5: "s\a\U000257b5", // 𥞵
+ 0x257b6: "s\a\U000257b6", // 𥞶
+ 0x257b7: "s\a\U000257b7", // 𥞷
+ 0x257b8: "s\a\U000257b8", // 𥞸
+ 0x257b9: "s\a\U000257b9", // 𥞹
+ 0x257ba: "s\a\U000257ba", // 𥞺
+ 0x257bb: "s\a\U000257bb", // 𥞻
+ 0x257bc: "s\a\U000257bc", // 𥞼
+ 0x257bd: "s\a\U000257bd", // 𥞽
+ 0x257be: "s\a\U000257be", // 𥞾
+ 0x257bf: "s\a\U000257bf", // 𥞿
+ 0x257c0: "s\a\U000257c0", // 𥟀
+ 0x257c1: "s\a\U000257c1", // 𥟁
+ 0x257c2: "s\a\U000257c2", // 𥟂
+ 0x257c3: "s\a\U000257c3", // 𥟃
+ 0x257c4: "s\a\U000257c4", // 𥟄
+ 0x257c5: "s\x06\U000257c5", // 𥟅
+ 0x257c6: "s\a\U000257c6", // 𥟆
+ 0x257c7: "s\a\U000257c7", // 𥟇
+ 0x257c8: "s\a\U000257c8", // 𥟈
+ 0x257c9: "s\a\U000257c9", // 𥟉
+ 0x257ca: "s\a\U000257ca", // 𥟊
+ 0x257cb: "s\a\U000257cb", // 𥟋
+ 0x257cc: "s\a\U000257cc", // 𥟌
+ 0x257cd: "s\b\U000257cd", // 𥟍
+ 0x257ce: "s\b\U000257ce", // 𥟎
+ 0x257cf: "s\b\U000257cf", // 𥟏
+ 0x257d0: "s\b\U000257d0", // 𥟐
+ 0x257d1: "s\b\U000257d1", // 𥟑
+ 0x257d2: "s\b\U000257d2", // 𥟒
+ 0x257d3: "s\b\U000257d3", // 𥟓
+ 0x257d4: "s\b\U000257d4", // 𥟔
+ 0x257d5: "s\b\U000257d5", // 𥟕
+ 0x257d6: "s\b\U000257d6", // 𥟖
+ 0x257d7: "s\b\U000257d7", // 𥟗
+ 0x257d8: "s\b\U000257d8", // 𥟘
+ 0x257d9: "s\b\U000257d9", // 𥟙
+ 0x257da: "s\b\U000257da", // 𥟚
+ 0x257db: "s\b\U000257db", // 𥟛
+ 0x257dc: "s\b\U000257dc", // 𥟜
+ 0x257dd: "s\b\U000257dd", // 𥟝
+ 0x257de: "s\b\U000257de", // 𥟞
+ 0x257df: "s\b\U000257df", // 𥟟
+ 0x257e0: "s\b\U000257e0", // 𥟠
+ 0x257e1: "s\b\U000257e1", // 𥟡
+ 0x257e2: "s\b\U000257e2", // 𥟢
+ 0x257e3: "s\b\U000257e3", // 𥟣
+ 0x257e4: "s\b\U000257e4", // 𥟤
+ 0x257e5: "s\b\U000257e5", // 𥟥
+ 0x257e6: "s\b\U000257e6", // 𥟦
+ 0x257e7: "s\b\U000257e7", // 𥟧
+ 0x257e8: "s\b\U000257e8", // 𥟨
+ 0x257e9: "s\b\U000257e9", // 𥟩
+ 0x257ea: "s\b\U000257ea", // 𥟪
+ 0x257eb: "s\b\U000257eb", // 𥟫
+ 0x257ec: "s\b\U000257ec", // 𥟬
+ 0x257ed: "s\b\U000257ed", // 𥟭
+ 0x257ee: "s\b\U000257ee", // 𥟮
+ 0x257ef: "s\b\U000257ef", // 𥟯
+ 0x257f0: "s\b\U000257f0", // 𥟰
+ 0x257f1: "s\b\U000257f1", // 𥟱
+ 0x257f2: "s\b\U000257f2", // 𥟲
+ 0x257f3: "s\b\U000257f3", // 𥟳
+ 0x257f4: "s\b\U000257f4", // 𥟴
+ 0x257f5: "s\b\U000257f5", // 𥟵
+ 0x257f6: "s\b\U000257f6", // 𥟶
+ 0x257f7: "s\b\U000257f7", // 𥟷
+ 0x257f8: "s\b\U000257f8", // 𥟸
+ 0x257f9: "s\b\U000257f9", // 𥟹
+ 0x257fa: "s\b\U000257fa", // 𥟺
+ 0x257fb: "s\b\U000257fb", // 𥟻
+ 0x257fc: "s\b\U000257fc", // 𥟼
+ 0x257fd: "s\t\U000257fd", // 𥟽
+ 0x257fe: "s\t\U000257fe", // 𥟾
+ 0x257ff: "s\t\U000257ff", // 𥟿
+ 0x25800: "s\t\U00025800", // 𥠀
+ 0x25801: "s\t\U00025801", // 𥠁
+ 0x25802: "s\t\U00025802", // 𥠂
+ 0x25803: "s\t\U00025803", // 𥠃
+ 0x25804: "s\t\U00025804", // 𥠄
+ 0x25805: "s\t\U00025805", // 𥠅
+ 0x25806: "s\t\U00025806", // 𥠆
+ 0x25807: "s\t\U00025807", // 𥠇
+ 0x25808: "s\t\U00025808", // 𥠈
+ 0x25809: "s\t\U00025809", // 𥠉
+ 0x2580a: "s\t\U0002580a", // 𥠊
+ 0x2580b: "s\t\U0002580b", // 𥠋
+ 0x2580c: "s\t\U0002580c", // 𥠌
+ 0x2580d: "s\t\U0002580d", // 𥠍
+ 0x2580e: "s\t\U0002580e", // 𥠎
+ 0x2580f: "s\t\U0002580f", // 𥠏
+ 0x25810: "s\t\U00025810", // 𥠐
+ 0x25811: "s\t\U00025811", // 𥠑
+ 0x25812: "s\t\U00025812", // 𥠒
+ 0x25813: "s\t\U00025813", // 𥠓
+ 0x25814: "s\t\U00025814", // 𥠔
+ 0x25815: "s\t\U00025815", // 𥠕
+ 0x25816: "s\t\U00025816", // 𥠖
+ 0x25817: "s\t\U00025817", // 𥠗
+ 0x25818: "s\t\U00025818", // 𥠘
+ 0x25819: "s\t\U00025819", // 𥠙
+ 0x2581a: "s\t\U0002581a", // 𥠚
+ 0x2581b: "s\t\U0002581b", // 𥠛
+ 0x2581c: "s\t\U0002581c", // 𥠜
+ 0x2581d: "s\t\U0002581d", // 𥠝
+ 0x2581e: "s\t\U0002581e", // 𥠞
+ 0x2581f: "s\t\U0002581f", // 𥠟
+ 0x25820: "s\t\U00025820", // 𥠠
+ 0x25821: "s\t\U00025821", // 𥠡
+ 0x25822: "s\t\U00025822", // 𥠢
+ 0x25823: "s\t\U00025823", // 𥠣
+ 0x25824: "s\t\U00025824", // 𥠤
+ 0x25825: "s\t\U00025825", // 𥠥
+ 0x25826: "s\t\U00025826", // 𥠦
+ 0x25827: "s\t\U00025827", // 𥠧
+ 0x25828: "s\t\U00025828", // 𥠨
+ 0x25829: "s\t\U00025829", // 𥠩
+ 0x2582a: "s\t\U0002582a", // 𥠪
+ 0x2582b: "s\t\U0002582b", // 𥠫
+ 0x2582c: "s\t\U0002582c", // 𥠬
+ 0x2582d: "s\t\U0002582d", // 𥠭
+ 0x2582e: "s\t\U0002582e", // 𥠮
+ 0x2582f: "s\t\U0002582f", // 𥠯
+ 0x25830: "s\t\U00025830", // 𥠰
+ 0x25831: "s\n\U00025831", // 𥠱
+ 0x25832: "s\n\U00025832", // 𥠲
+ 0x25833: "s\n\U00025833", // 𥠳
+ 0x25834: "s\n\U00025834", // 𥠴
+ 0x25835: "s\n\U00025835", // 𥠵
+ 0x25836: "s\n\U00025836", // 𥠶
+ 0x25837: "s\n\U00025837", // 𥠷
+ 0x25838: "s\n\U00025838", // 𥠸
+ 0x25839: "s\n\U00025839", // 𥠹
+ 0x2583a: "s\n\U0002583a", // 𥠺
+ 0x2583b: "s\n\U0002583b", // 𥠻
+ 0x2583c: "s\n\U0002583c", // 𥠼
+ 0x2583d: "s\n\U0002583d", // 𥠽
+ 0x2583e: "s\n\U0002583e", // 𥠾
+ 0x2583f: "s\n\U0002583f", // 𥠿
+ 0x25840: "s\n\U00025840", // 𥡀
+ 0x25841: "s\n\U00025841", // 𥡁
+ 0x25842: "s\n\U00025842", // 𥡂
+ 0x25843: "s\n\U00025843", // 𥡃
+ 0x25844: "s\n\U00025844", // 𥡄
+ 0x25845: "s\n\U00025845", // 𥡅
+ 0x25846: "s\n\U00025846", // 𥡆
+ 0x25847: "s\n\U00025847", // 𥡇
+ 0x25848: "s\n\U00025848", // 𥡈
+ 0x25849: "s\n\U00025849", // 𥡉
+ 0x2584a: "s\n\U0002584a", // 𥡊
+ 0x2584b: "s\n\U0002584b", // 𥡋
+ 0x2584c: "s\n\U0002584c", // 𥡌
+ 0x2584d: "s\n\U0002584d", // 𥡍
+ 0x2584e: "s\n\U0002584e", // 𥡎
+ 0x2584f: "s\n\U0002584f", // 𥡏
+ 0x25850: "s\n\U00025850", // 𥡐
+ 0x25851: "s\n\U00025851", // 𥡑
+ 0x25852: "s\n\U00025852", // 𥡒
+ 0x25853: "s\n\U00025853", // 𥡓
+ 0x25854: "s\n\U00025854", // 𥡔
+ 0x25855: "s\n\U00025855", // 𥡕
+ 0x25856: "s\n\U00025856", // 𥡖
+ 0x25857: "s\n\U00025857", // 𥡗
+ 0x25858: "s\n\U00025858", // 𥡘
+ 0x25859: "s\n\U00025859", // 𥡙
+ 0x2585a: "s\n\U0002585a", // 𥡚
+ 0x2585b: "s\n\U0002585b", // 𥡛
+ 0x2585c: "s\v\U0002585c", // 𥡜
+ 0x2585d: "s\v\U0002585d", // 𥡝
+ 0x2585e: "s\v\U0002585e", // 𥡞
+ 0x2585f: "s\v\U0002585f", // 𥡟
+ 0x25860: "s\v\U00025860", // 𥡠
+ 0x25861: "s\v\U00025861", // 𥡡
+ 0x25862: "s\v\U00025862", // 𥡢
+ 0x25863: "s\v\U00025863", // 𥡣
+ 0x25864: "s\v\U00025864", // 𥡤
+ 0x25865: "s\v\U00025865", // 𥡥
+ 0x25866: "s\v\U00025866", // 𥡦
+ 0x25867: "s\v\U00025867", // 𥡧
+ 0x25868: "s\v\U00025868", // 𥡨
+ 0x25869: "s\v\U00025869", // 𥡩
+ 0x2586a: "s\v\U0002586a", // 𥡪
+ 0x2586b: "s\v\U0002586b", // 𥡫
+ 0x2586c: "s\v\U0002586c", // 𥡬
+ 0x2586d: "s\v\U0002586d", // 𥡭
+ 0x2586e: "s\v\U0002586e", // 𥡮
+ 0x2586f: "s\v\U0002586f", // 𥡯
+ 0x25870: "s\v\U00025870", // 𥡰
+ 0x25871: "s\v\U00025871", // 𥡱
+ 0x25872: "s\v\U00025872", // 𥡲
+ 0x25873: "s\v\U00025873", // 𥡳
+ 0x25874: "s\v\U00025874", // 𥡴
+ 0x25875: "s\v\U00025875", // 𥡵
+ 0x25876: "s\v\U00025876", // 𥡶
+ 0x25877: "s\v\U00025877", // 𥡷
+ 0x25878: "s\v\U00025878", // 𥡸
+ 0x25879: "s\v\U00025879", // 𥡹
+ 0x2587a: "s\v\U0002587a", // 𥡺
+ 0x2587b: "s\v\U0002587b", // 𥡻
+ 0x2587c: "s\v\U0002587c", // 𥡼
+ 0x2587d: "s\v\U0002587d", // 𥡽
+ 0x2587e: "s\v\U0002587e", // 𥡾
+ 0x2587f: "s\v\U0002587f", // 𥡿
+ 0x25880: "s\v\U00025880", // 𥢀
+ 0x25881: "s\v\U00025881", // 𥢁
+ 0x25882: "s\v\U00025882", // 𥢂
+ 0x25883: "s\v\U00025883", // 𥢃
+ 0x25884: "s\v\U00025884", // 𥢄
+ 0x25885: "s\v\U00025885", // 𥢅
+ 0x25886: "s\v\U00025886", // 𥢆
+ 0x25887: "s\v\U00025887", // 𥢇
+ 0x25888: "s\v\U00025888", // 𥢈
+ 0x25889: "s\v\U00025889", // 𥢉
+ 0x2588a: "s\f\U0002588a", // 𥢊
+ 0x2588b: "s\f\U0002588b", // 𥢋
+ 0x2588c: "s\f\U0002588c", // 𥢌
+ 0x2588d: "s\f\U0002588d", // 𥢍
+ 0x2588e: "s\f\U0002588e", // 𥢎
+ 0x2588f: "s\f\U0002588f", // 𥢏
+ 0x25890: "s\f\U00025890", // 𥢐
+ 0x25891: "s\f\U00025891", // 𥢑
+ 0x25892: "s\f\U00025892", // 𥢒
+ 0x25893: "s\f\U00025893", // 𥢓
+ 0x25894: "s\f\U00025894", // 𥢔
+ 0x25895: "s\f\U00025895", // 𥢕
+ 0x25896: "s\f\U00025896", // 𥢖
+ 0x25897: "s\f\U00025897", // 𥢗
+ 0x25898: "s\f\U00025898", // 𥢘
+ 0x25899: "s\f\U00025899", // 𥢙
+ 0x2589a: "s\f\U0002589a", // 𥢚
+ 0x2589b: "s\f\U0002589b", // 𥢛
+ 0x2589c: "s\f\U0002589c", // 𥢜
+ 0x2589d: "s\f\U0002589d", // 𥢝
+ 0x2589e: "s\f\U0002589e", // 𥢞
+ 0x2589f: "s\f\U0002589f", // 𥢟
+ 0x258a0: "s\f\U000258a0", // 𥢠
+ 0x258a1: "s\f\U000258a1", // 𥢡
+ 0x258a2: "s\f\U000258a2", // 𥢢
+ 0x258a3: "s\f\U000258a3", // 𥢣
+ 0x258a4: "s\f\U000258a4", // 𥢤
+ 0x258a5: "s\f\U000258a5", // 𥢥
+ 0x258a6: "s\f\U000258a6", // 𥢦
+ 0x258a7: "s\f\U000258a7", // 𥢧
+ 0x258a8: "s\f\U000258a8", // 𥢨
+ 0x258a9: "s\f\U000258a9", // 𥢩
+ 0x258aa: "s\f\U000258aa", // 𥢪
+ 0x258ab: "s\f\U000258ab", // 𥢫
+ 0x258ac: "s\f\U000258ac", // 𥢬
+ 0x258ad: "s\f\U000258ad", // 𥢭
+ 0x258ae: "s\f\U000258ae", // 𥢮
+ 0x258af: "s\f\U000258af", // 𥢯
+ 0x258b0: "s\f\U000258b0", // 𥢰
+ 0x258b1: "s\f\U000258b1", // 𥢱
+ 0x258b2: "s\f\U000258b2", // 𥢲
+ 0x258b3: "s\f\U000258b3", // 𥢳
+ 0x258b4: "s\r\U000258b4", // 𥢴
+ 0x258b5: "s\r\U000258b5", // 𥢵
+ 0x258b6: "s\r\U000258b6", // 𥢶
+ 0x258b7: "s\r\U000258b7", // 𥢷
+ 0x258b8: "s\r\U000258b8", // 𥢸
+ 0x258b9: "s\r\U000258b9", // 𥢹
+ 0x258ba: "s\r\U000258ba", // 𥢺
+ 0x258bb: "s\r\U000258bb", // 𥢻
+ 0x258bc: "s\r\U000258bc", // 𥢼
+ 0x258bd: "s\r\U000258bd", // 𥢽
+ 0x258be: "s\r\U000258be", // 𥢾
+ 0x258bf: "s\r\U000258bf", // 𥢿
+ 0x258c0: "s\r\U000258c0", // 𥣀
+ 0x258c1: "s\r\U000258c1", // 𥣁
+ 0x258c2: "s\r\U000258c2", // 𥣂
+ 0x258c3: "s\r\U000258c3", // 𥣃
+ 0x258c4: "s\r\U000258c4", // 𥣄
+ 0x258c5: "s\r\U000258c5", // 𥣅
+ 0x258c6: "s\r\U000258c6", // 𥣆
+ 0x258c7: "s\r\U000258c7", // 𥣇
+ 0x258c8: "s\r\U000258c8", // 𥣈
+ 0x258c9: "s\r\U000258c9", // 𥣉
+ 0x258ca: "s\x0e\U000258ca", // 𥣊
+ 0x258cb: "s\r\U000258cb", // 𥣋
+ 0x258cc: "s\r\U000258cc", // 𥣌
+ 0x258cd: "s\r\U000258cd", // 𥣍
+ 0x258ce: "s\r\U000258ce", // 𥣎
+ 0x258cf: "s\r\U000258cf", // 𥣏
+ 0x258d0: "s\r\U000258d0", // 𥣐
+ 0x258d1: "s\r\U000258d1", // 𥣑
+ 0x258d2: "s\r\U000258d2", // 𥣒
+ 0x258d3: "s\r\U000258d3", // 𥣓
+ 0x258d4: "s\r\U000258d4", // 𥣔
+ 0x258d5: "s\x0e\U000258d5", // 𥣕
+ 0x258d6: "s\x0e\U000258d6", // 𥣖
+ 0x258d7: "s\x0e\U000258d7", // 𥣗
+ 0x258d8: "s\x0e\U000258d8", // 𥣘
+ 0x258d9: "s\x0e\U000258d9", // 𥣙
+ 0x258da: "s\x0e\U000258da", // 𥣚
+ 0x258db: "s\x0e\U000258db", // 𥣛
+ 0x258dc: "s\x0e\U000258dc", // 𥣜
+ 0x258dd: "s\x0e\U000258dd", // 𥣝
+ 0x258de: "s\x0e\U000258de", // 𥣞
+ 0x258df: "s\x0e\U000258df", // 𥣟
+ 0x258e0: "s\x0e\U000258e0", // 𥣠
+ 0x258e1: "s\x0e\U000258e1", // 𥣡
+ 0x258e2: "s\x0f\U000258e2", // 𥣢
+ 0x258e3: "s\x0e\U000258e3", // 𥣣
+ 0x258e4: "s\x0e\U000258e4", // 𥣤
+ 0x258e5: "s\x0e\U000258e5", // 𥣥
+ 0x258e6: "s\x0e\U000258e6", // 𥣦
+ 0x258e7: "s\x0e\U000258e7", // 𥣧
+ 0x258e8: "s\x0f\U000258e8", // 𥣨
+ 0x258e9: "s\x0f\U000258e9", // 𥣩
+ 0x258ea: "s\x0f\U000258ea", // 𥣪
+ 0x258eb: "s\x0f\U000258eb", // 𥣫
+ 0x258ec: "s\x0f\U000258ec", // 𥣬
+ 0x258ed: "s\x0f\U000258ed", // 𥣭
+ 0x258ee: "s\x0f\U000258ee", // 𥣮
+ 0x258ef: "s\x0f\U000258ef", // 𥣯
+ 0x258f0: "s\x0f\U000258f0", // 𥣰
+ 0x258f1: "s\x0f\U000258f1", // 𥣱
+ 0x258f2: "s\x0f\U000258f2", // 𥣲
+ 0x258f3: "s\x0f\U000258f3", // 𥣳
+ 0x258f4: "s\x0f\U000258f4", // 𥣴
+ 0x258f5: "s\x0f\U000258f5", // 𥣵
+ 0x258f6: "s\x0f\U000258f6", // 𥣶
+ 0x258f7: "\xa6\r\U000258f7", // 𥣷
+ 0x258f8: "s\x0f\U000258f8", // 𥣸
+ 0x258f9: "s\x0f\U000258f9", // 𥣹
+ 0x258fa: "s\x0f\U000258fa", // 𥣺
+ 0x258fb: "s\x0f\U000258fb", // 𥣻
+ 0x258fc: "s\x0f\U000258fc", // 𥣼
+ 0x258fd: "s\x0f\U000258fd", // 𥣽
+ 0x258fe: "s\x0f\U000258fe", // 𥣾
+ 0x258ff: "s\x0f\U000258ff", // 𥣿
+ 0x25900: "s\x10\U00025900", // 𥤀
+ 0x25901: "s\x10\U00025901", // 𥤁
+ 0x25902: "s\x10\U00025902", // 𥤂
+ 0x25903: "s\x10\U00025903", // 𥤃
+ 0x25904: "s\x10\U00025904", // 𥤄
+ 0x25905: "s\x10\U00025905", // 𥤅
+ 0x25906: "s\x11\U00025906", // 𥤆
+ 0x25907: "s\x11\U00025907", // 𥤇
+ 0x25908: "s\x11\U00025908", // 𥤈
+ 0x25909: "s\x11\U00025909", // 𥤉
+ 0x2590a: "s\x12\U0002590a", // 𥤊
+ 0x2590b: "s\x12\U0002590b", // 𥤋
+ 0x2590c: "s\x12\U0002590c", // 𥤌
+ 0x2590d: "s\x12\U0002590d", // 𥤍
+ 0x2590e: "s\x12\U0002590e", // 𥤎
+ 0x2590f: "s\x12\U0002590f", // 𥤏
+ 0x25910: "s\x12\U00025910", // 𥤐
+ 0x25911: "s\x12\U00025911", // 𥤑
+ 0x25912: "s\x12\U00025912", // 𥤒
+ 0x25913: "s\x13\U00025913", // 𥤓
+ 0x25914: "K\x14\U00025914", // 𥤔
+ 0x25915: "s\x13\U00025915", // 𥤕
+ 0x25916: "s\x13\U00025916", // 𥤖
+ 0x25917: "s\x14\U00025917", // 𥤗
+ 0x25918: "s\x14\U00025918", // 𥤘
+ 0x25919: "s\x14\U00025919", // 𥤙
+ 0x2591a: "s\x14\U0002591a", // 𥤚
+ 0x2591b: "s\x15\U0002591b", // 𥤛
+ 0x2591c: "s\x15\U0002591c", // 𥤜
+ 0x2591d: "s\x15\U0002591d", // 𥤝
+ 0x2591e: "s\x18\U0002591e", // 𥤞
+ 0x2591f: "s\x18\U0002591f", // 𥤟
+ 0x25920: "s\x1b\U00025920", // 𥤠
+ 0x25921: "s\x1e\U00025921", // 𥤡
+ 0x25922: "t\x00\U00025922", // 𥤢
+ 0x25923: "t\x02\U00025923", // 𥤣
+ 0x25924: "t\x02\U00025924", // 𥤤
+ 0x25925: "t\x02\U00025925", // 𥤥
+ 0x25926: "t\x02\U00025926", // 𥤦
+ 0x25927: "t\x03\U00025927", // 𥤧
+ 0x25928: "t\x03\U00025928", // 𥤨
+ 0x25929: "t\x03\U00025929", // 𥤩
+ 0x2592a: "t\x03\U0002592a", // 𥤪
+ 0x2592b: "t\x03\U0002592b", // 𥤫
+ 0x2592c: "t\x03\U0002592c", // 𥤬
+ 0x2592d: "t\x03\U0002592d", // 𥤭
+ 0x2592e: "t\x03\U0002592e", // 𥤮
+ 0x2592f: "t\x03\U0002592f", // 𥤯
+ 0x25930: "t\x03\U00025930", // 𥤰
+ 0x25931: "t\x03\U00025931", // 𥤱
+ 0x25932: "t\x03\U00025932", // 𥤲
+ 0x25933: "t\x03\U00025933", // 𥤳
+ 0x25934: "t\x04\U00025934", // 𥤴
+ 0x25935: "t\x04\U00025935", // 𥤵
+ 0x25936: "t\x04\U00025936", // 𥤶
+ 0x25937: "t\x04\U00025937", // 𥤷
+ 0x25938: "t\x04\U00025938", // 𥤸
+ 0x25939: "t\x04\U00025939", // 𥤹
+ 0x2593a: "t\x04\U0002593a", // 𥤺
+ 0x2593b: "t\x04\U0002593b", // 𥤻
+ 0x2593c: "t\x04\U0002593c", // 𥤼
+ 0x2593d: "t\x04\U0002593d", // 𥤽
+ 0x2593e: "t\x04\U0002593e", // 𥤾
+ 0x2593f: "t\x04\U0002593f", // 𥤿
+ 0x25940: "t\x04\U00025940", // 𥥀
+ 0x25941: "t\x04\U00025941", // 𥥁
+ 0x25942: "t\x04\U00025942", // 𥥂
+ 0x25943: "t\x04\U00025943", // 𥥃
+ 0x25944: "t\x04\U00025944", // 𥥄
+ 0x25945: "t\x04\U00025945", // 𥥅
+ 0x25946: "t\x04\U00025946", // 𥥆
+ 0x25947: "t\x05\U00025947", // 𥥇
+ 0x25948: "t\x05\U00025948", // 𥥈
+ 0x25949: "t\x05\U00025949", // 𥥉
+ 0x2594a: "t\x05\U0002594a", // 𥥊
+ 0x2594b: "t\x05\U0002594b", // 𥥋
+ 0x2594c: "t\x05\U0002594c", // 𥥌
+ 0x2594d: "t\x05\U0002594d", // 𥥍
+ 0x2594e: "t\x05\U0002594e", // 𥥎
+ 0x2594f: "t\x05\U0002594f", // 𥥏
+ 0x25950: "t\x05\U00025950", // 𥥐
+ 0x25951: "t\x05\U00025951", // 𥥑
+ 0x25952: "t\x05\U00025952", // 𥥒
+ 0x25953: "t\x05\U00025953", // 𥥓
+ 0x25954: "t\x05\U00025954", // 𥥔
+ 0x25955: "t\x05\U00025955", // 𥥕
+ 0x25956: "t\x05\U00025956", // 𥥖
+ 0x25957: "t\x05\U00025957", // 𥥗
+ 0x25958: "t\x05\U00025958", // 𥥘
+ 0x25959: "t\x05\U00025959", // 𥥙
+ 0x2595a: "t\x05\U0002595a", // 𥥚
+ 0x2595b: "t\x05\U0002595b", // 𥥛
+ 0x2595c: "t\x05\U0002595c", // 𥥜
+ 0x2595d: "t\x05\U0002595d", // 𥥝
+ 0x2595e: "t\x05\U0002595e", // 𥥞
+ 0x2595f: "t\x05\U0002595f", // 𥥟
+ 0x25960: "t\x06\U00025960", // 𥥠
+ 0x25961: "t\x06\U00025961", // 𥥡
+ 0x25962: "t\x06\U00025962", // 𥥢
+ 0x25963: "t\x06\U00025963", // 𥥣
+ 0x25964: "t\x06\U00025964", // 𥥤
+ 0x25965: "t\x06\U00025965", // 𥥥
+ 0x25966: "t\x06\U00025966", // 𥥦
+ 0x25967: "t\x06\U00025967", // 𥥧
+ 0x25968: "t\x06\U00025968", // 𥥨
+ 0x25969: "t\x06\U00025969", // 𥥩
+ 0x2596a: "t\x06\U0002596a", // 𥥪
+ 0x2596b: "t\x06\U0002596b", // 𥥫
+ 0x2596c: "t\x06\U0002596c", // 𥥬
+ 0x2596d: "t\x06\U0002596d", // 𥥭
+ 0x2596e: "t\x06\U0002596e", // 𥥮
+ 0x2596f: "t\x06\U0002596f", // 𥥯
+ 0x25970: "t\x06\U00025970", // 𥥰
+ 0x25971: "t\x06\U00025971", // 𥥱
+ 0x25972: "t\x06\U00025972", // 𥥲
+ 0x25973: "t\x06\U00025973", // 𥥳
+ 0x25974: "t\x06\U00025974", // 𥥴
+ 0x25975: "t\x06\U00025975", // 𥥵
+ 0x25976: "t\a\U00025976", // 𥥶
+ 0x25977: "t\a\U00025977", // 𥥷
+ 0x25978: "t\a\U00025978", // 𥥸
+ 0x25979: "t\a\U00025979", // 𥥹
+ 0x2597a: "t\a\U0002597a", // 𥥺
+ 0x2597b: "t\a\U0002597b", // 𥥻
+ 0x2597c: "t\a\U0002597c", // 𥥼
+ 0x2597d: "t\a\U0002597d", // 𥥽
+ 0x2597e: "t\a\U0002597e", // 𥥾
+ 0x2597f: "t\a\U0002597f", // 𥥿
+ 0x25980: "t\a\U00025980", // 𥦀
+ 0x25981: "t\a\U00025981", // 𥦁
+ 0x25982: "t\a\U00025982", // 𥦂
+ 0x25983: "t\a\U00025983", // 𥦃
+ 0x25984: "t\a\U00025984", // 𥦄
+ 0x25985: "t\a\U00025985", // 𥦅
+ 0x25986: "t\a\U00025986", // 𥦆
+ 0x25987: "t\a\U00025987", // 𥦇
+ 0x25988: "t\a\U00025988", // 𥦈
+ 0x25989: "t\a\U00025989", // 𥦉
+ 0x2598a: "t\a\U0002598a", // 𥦊
+ 0x2598b: "t\a\U0002598b", // 𥦋
+ 0x2598c: "t\a\U0002598c", // 𥦌
+ 0x2598d: "t\a\U0002598d", // 𥦍
+ 0x2598e: "t\a\U0002598e", // 𥦎
+ 0x2598f: "t\a\U0002598f", // 𥦏
+ 0x25990: "t\a\U00025990", // 𥦐
+ 0x25991: "t\a\U00025991", // 𥦑
+ 0x25992: "t\a\U00025992", // 𥦒
+ 0x25993: "t\a\U00025993", // 𥦓
+ 0x25994: "t\a\U00025994", // 𥦔
+ 0x25995: "t\a\U00025995", // 𥦕
+ 0x25996: "t\a\U00025996", // 𥦖
+ 0x25997: "t\a\U00025997", // 𥦗
+ 0x25998: "t\a\U00025998", // 𥦘
+ 0x25999: "t\a\U00025999", // 𥦙
+ 0x2599a: "t\a\U0002599a", // 𥦚
+ 0x2599b: "t\b\U0002599b", // 𥦛
+ 0x2599c: "t\b\U0002599c", // 𥦜
+ 0x2599d: "t\b\U0002599d", // 𥦝
+ 0x2599e: "t\b\U0002599e", // 𥦞
+ 0x2599f: "t\b\U0002599f", // 𥦟
+ 0x259a0: "t\b\U000259a0", // 𥦠
+ 0x259a1: "t\b\U000259a1", // 𥦡
+ 0x259a2: "t\b\U000259a2", // 𥦢
+ 0x259a3: "t\b\U000259a3", // 𥦣
+ 0x259a4: "t\b\U000259a4", // 𥦤
+ 0x259a5: "t\b\U000259a5", // 𥦥
+ 0x259a6: "t\b\U000259a6", // 𥦦
+ 0x259a7: "t\b\U000259a7", // 𥦧
+ 0x259a8: "t\b\U000259a8", // 𥦨
+ 0x259a9: "t\b\U000259a9", // 𥦩
+ 0x259aa: "t\b\U000259aa", // 𥦪
+ 0x259ab: "t\b\U000259ab", // 𥦫
+ 0x259ac: "t\b\U000259ac", // 𥦬
+ 0x259ad: "t\b\U000259ad", // 𥦭
+ 0x259ae: "t\b\U000259ae", // 𥦮
+ 0x259af: "t\b\U000259af", // 𥦯
+ 0x259b0: "t\b\U000259b0", // 𥦰
+ 0x259b1: "t\b\U000259b1", // 𥦱
+ 0x259b2: "t\b\U000259b2", // 𥦲
+ 0x259b3: "t\b\U000259b3", // 𥦳
+ 0x259b4: "t\b\U000259b4", // 𥦴
+ 0x259b5: "t\b\U000259b5", // 𥦵
+ 0x259b6: "t\b\U000259b6", // 𥦶
+ 0x259b7: "t\b\U000259b7", // 𥦷
+ 0x259b8: "t\t\U000259b8", // 𥦸
+ 0x259b9: "t\t\U000259b9", // 𥦹
+ 0x259ba: "t\t\U000259ba", // 𥦺
+ 0x259bb: "t\t\U000259bb", // 𥦻
+ 0x259bc: "t\t\U000259bc", // 𥦼
+ 0x259bd: "t\t\U000259bd", // 𥦽
+ 0x259be: "t\t\U000259be", // 𥦾
+ 0x259bf: "t\t\U000259bf", // 𥦿
+ 0x259c0: "t\t\U000259c0", // 𥧀
+ 0x259c1: "t\t\U000259c1", // 𥧁
+ 0x259c2: "t\t\U000259c2", // 𥧂
+ 0x259c3: "t\t\U000259c3", // 𥧃
+ 0x259c4: "t\t\U000259c4", // 𥧄
+ 0x259c5: "t\t\U000259c5", // 𥧅
+ 0x259c6: "t\t\U000259c6", // 𥧆
+ 0x259c7: "t\t\U000259c7", // 𥧇
+ 0x259c8: "t\t\U000259c8", // 𥧈
+ 0x259c9: "t\t\U000259c9", // 𥧉
+ 0x259ca: "t\t\U000259ca", // 𥧊
+ 0x259cb: "t\t\U000259cb", // 𥧋
+ 0x259cc: "t\t\U000259cc", // 𥧌
+ 0x259cd: "t\t\U000259cd", // 𥧍
+ 0x259ce: "t\t\U000259ce", // 𥧎
+ 0x259cf: "t\t\U000259cf", // 𥧏
+ 0x259d0: "t\n\U000259d0", // 𥧐
+ 0x259d1: "t\n\U000259d1", // 𥧑
+ 0x259d2: "t\n\U000259d2", // 𥧒
+ 0x259d3: "t\n\U000259d3", // 𥧓
+ 0x259d4: "t\n\U000259d4", // 𥧔
+ 0x259d5: "t\n\U000259d5", // 𥧕
+ 0x259d6: "t\n\U000259d6", // 𥧖
+ 0x259d7: "t\n\U000259d7", // 𥧗
+ 0x259d8: "t\n\U000259d8", // 𥧘
+ 0x259d9: "t\n\U000259d9", // 𥧙
+ 0x259da: "t\n\U000259da", // 𥧚
+ 0x259db: "t\n\U000259db", // 𥧛
+ 0x259dc: "t\n\U000259dc", // 𥧜
+ 0x259dd: "t\n\U000259dd", // 𥧝
+ 0x259de: "t\n\U000259de", // 𥧞
+ 0x259df: "t\n\U000259df", // 𥧟
+ 0x259e0: "t\n\U000259e0", // 𥧠
+ 0x259e1: "t\n\U000259e1", // 𥧡
+ 0x259e2: "\x80\t\U000259e2", // 𥧢
+ 0x259e3: "t\n\U000259e3", // 𥧣
+ 0x259e4: "t\n\U000259e4", // 𥧤
+ 0x259e5: "t\n\U000259e5", // 𥧥
+ 0x259e6: "t\n\U000259e6", // 𥧦
+ 0x259e7: "t\n\U000259e7", // 𥧧
+ 0x259e8: "t\n\U000259e8", // 𥧨
+ 0x259e9: "t\n\U000259e9", // 𥧩
+ 0x259ea: "t\n\U000259ea", // 𥧪
+ 0x259eb: "t\n\U000259eb", // 𥧫
+ 0x259ec: "t\v\U000259ec", // 𥧬
+ 0x259ed: "t\v\U000259ed", // 𥧭
+ 0x259ee: "t\v\U000259ee", // 𥧮
+ 0x259ef: "t\v\U000259ef", // 𥧯
+ 0x259f0: "t\v\U000259f0", // 𥧰
+ 0x259f1: "t\v\U000259f1", // 𥧱
+ 0x259f2: "t\v\U000259f2", // 𥧲
+ 0x259f3: "t\v\U000259f3", // 𥧳
+ 0x259f4: "t\v\U000259f4", // 𥧴
+ 0x259f5: "t\v\U000259f5", // 𥧵
+ 0x259f6: "t\v\U000259f6", // 𥧶
+ 0x259f7: "t\v\U000259f7", // 𥧷
+ 0x259f8: "t\v\U000259f8", // 𥧸
+ 0x259f9: "t\v\U000259f9", // 𥧹
+ 0x259fa: "t\v\U000259fa", // 𥧺
+ 0x259fb: "t\v\U000259fb", // 𥧻
+ 0x259fc: "t\f\U000259fc", // 𥧼
+ 0x259fd: "t\v\U000259fd", // 𥧽
+ 0x259fe: "t\v\U000259fe", // 𥧾
+ 0x259ff: "t\v\U000259ff", // 𥧿
+ 0x25a00: "t\v\U00025a00", // 𥨀
+ 0x25a01: "t\v\U00025a01", // 𥨁
+ 0x25a02: "t\v\U00025a02", // 𥨂
+ 0x25a03: "t\v\U00025a03", // 𥨃
+ 0x25a04: "t\v\U00025a04", // 𥨄
+ 0x25a05: "t\v\U00025a05", // 𥨅
+ 0x25a06: "t\v\U00025a06", // 𥨆
+ 0x25a07: "t\v\U00025a07", // 𥨇
+ 0x25a08: "t\v\U00025a08", // 𥨈
+ 0x25a09: "t\v\U00025a09", // 𥨉
+ 0x25a0a: "t\v\U00025a0a", // 𥨊
+ 0x25a0b: "t\v\U00025a0b", // 𥨋
+ 0x25a0c: "t\f\U00025a0c", // 𥨌
+ 0x25a0d: "t\f\U00025a0d", // 𥨍
+ 0x25a0e: "t\f\U00025a0e", // 𥨎
+ 0x25a0f: "t\f\U00025a0f", // 𥨏
+ 0x25a10: "t\f\U00025a10", // 𥨐
+ 0x25a11: "t\f\U00025a11", // 𥨑
+ 0x25a12: "t\f\U00025a12", // 𥨒
+ 0x25a13: "t\f\U00025a13", // 𥨓
+ 0x25a14: "t\f\U00025a14", // 𥨔
+ 0x25a15: "t\f\U00025a15", // 𥨕
+ 0x25a16: "t\f\U00025a16", // 𥨖
+ 0x25a17: "t\f\U00025a17", // 𥨗
+ 0x25a18: "t\f\U00025a18", // 𥨘
+ 0x25a19: "t\f\U00025a19", // 𥨙
+ 0x25a1a: "t\f\U00025a1a", // 𥨚
+ 0x25a1b: "t\f\U00025a1b", // 𥨛
+ 0x25a1c: "t\f\U00025a1c", // 𥨜
+ 0x25a1d: "t\f\U00025a1d", // 𥨝
+ 0x25a1e: "t\f\U00025a1e", // 𥨞
+ 0x25a1f: "t\f\U00025a1f", // 𥨟
+ 0x25a20: "t\r\U00025a20", // 𥨠
+ 0x25a21: "t\r\U00025a21", // 𥨡
+ 0x25a22: "t\r\U00025a22", // 𥨢
+ 0x25a23: "t\r\U00025a23", // 𥨣
+ 0x25a24: "t\r\U00025a24", // 𥨤
+ 0x25a25: "t\r\U00025a25", // 𥨥
+ 0x25a26: "t\r\U00025a26", // 𥨦
+ 0x25a27: "t\r\U00025a27", // 𥨧
+ 0x25a28: "t\r\U00025a28", // 𥨨
+ 0x25a29: "t\f\U00025a29", // 𥨩
+ 0x25a2a: "t\x0e\U00025a2a", // 𥨪
+ 0x25a2b: "t\x0e\U00025a2b", // 𥨫
+ 0x25a2c: "t\x0e\U00025a2c", // 𥨬
+ 0x25a2d: "t\x0e\U00025a2d", // 𥨭
+ 0x25a2e: "t\x0e\U00025a2e", // 𥨮
+ 0x25a2f: "t\x0e\U00025a2f", // 𥨯
+ 0x25a30: "t\x0f\U00025a30", // 𥨰
+ 0x25a31: "t\x0f\U00025a31", // 𥨱
+ 0x25a32: "t\x0e\U00025a32", // 𥨲
+ 0x25a33: "t\x0f\U00025a33", // 𥨳
+ 0x25a34: "t\x0f\U00025a34", // 𥨴
+ 0x25a35: "t\x10\U00025a35", // 𥨵
+ 0x25a36: "t\x0f\U00025a36", // 𥨶
+ 0x25a37: "t\x0f\U00025a37", // 𥨷
+ 0x25a38: "t\x0f\U00025a38", // 𥨸
+ 0x25a39: "t\x0f\U00025a39", // 𥨹
+ 0x25a3a: "t\x0f\U00025a3a", // 𥨺
+ 0x25a3b: "t\x10\U00025a3b", // 𥨻
+ 0x25a3c: "t\x10\U00025a3c", // 𥨼
+ 0x25a3d: "t\x10\U00025a3d", // 𥨽
+ 0x25a3e: "t\x10\U00025a3e", // 𥨾
+ 0x25a3f: "t\x10\U00025a3f", // 𥨿
+ 0x25a40: "t\x10\U00025a40", // 𥩀
+ 0x25a41: "t\x10\U00025a41", // 𥩁
+ 0x25a42: "t\x10\U00025a42", // 𥩂
+ 0x25a43: "t\x10\U00025a43", // 𥩃
+ 0x25a44: "t\x10\U00025a44", // 𥩄
+ 0x25a45: "t\x10\U00025a45", // 𥩅
+ 0x25a46: "t\x10\U00025a46", // 𥩆
+ 0x25a47: "t\x10\U00025a47", // 𥩇
+ 0x25a48: "t\x10\U00025a48", // 𥩈
+ 0x25a49: "t\x11\U00025a49", // 𥩉
+ 0x25a4a: "t\x12\U00025a4a", // 𥩊
+ 0x25a4b: "t\x12\U00025a4b", // 𥩋
+ 0x25a4c: "t\x13\U00025a4c", // 𥩌
+ 0x25a4d: "t\x13\U00025a4d", // 𥩍
+ 0x25a4e: "t\x14\U00025a4e", // 𥩎
+ 0x25a4f: "t\x13\U00025a4f", // 𥩏
+ 0x25a50: "t\x13\U00025a50", // 𥩐
+ 0x25a51: "t\x13\U00025a51", // 𥩑
+ 0x25a52: "t\x14\U00025a52", // 𥩒
+ 0x25a53: "t\x15\U00025a53", // 𥩓
+ 0x25a54: "t\x18\U00025a54", // 𥩔
+ 0x25a55: "u\x02\U00025a55", // 𥩕
+ 0x25a56: "u\x02\U00025a56", // 𥩖
+ 0x25a57: "u\x03\U00025a57", // 𥩗
+ 0x25a58: "u\x03\U00025a58", // 𥩘
+ 0x25a59: "u\x04\U00025a59", // 𥩙
+ 0x25a5a: "u\x04\U00025a5a", // 𥩚
+ 0x25a5b: "u\x04\U00025a5b", // 𥩛
+ 0x25a5c: "u\x04\U00025a5c", // 𥩜
+ 0x25a5d: "u\x04\U00025a5d", // 𥩝
+ 0x25a5e: "u\x04\U00025a5e", // 𥩞
+ 0x25a5f: "u\x04\U00025a5f", // 𥩟
+ 0x25a60: "u\x05\U00025a60", // 𥩠
+ 0x25a61: "u\x05\U00025a61", // 𥩡
+ 0x25a62: "u\x05\U00025a62", // 𥩢
+ 0x25a63: "u\x05\U00025a63", // 𥩣
+ 0x25a64: "u\x05\U00025a64", // 𥩤
+ 0x25a65: "u\x05\U00025a65", // 𥩥
+ 0x25a66: "u\x05\U00025a66", // 𥩦
+ 0x25a67: "u\x05\U00025a67", // 𥩧
+ 0x25a68: "u\x05\U00025a68", // 𥩨
+ 0x25a69: "u\x05\U00025a69", // 𥩩
+ 0x25a6a: "u\x05\U00025a6a", // 𥩪
+ 0x25a6b: "u\x05\U00025a6b", // 𥩫
+ 0x25a6c: "u\x05\U00025a6c", // 𥩬
+ 0x25a6d: "u\x05\U00025a6d", // 𥩭
+ 0x25a6e: "u\x05\U00025a6e", // 𥩮
+ 0x25a6f: "u\x05\U00025a6f", // 𥩯
+ 0x25a70: "u\x05\U00025a70", // 𥩰
+ 0x25a71: "u\x06\U00025a71", // 𥩱
+ 0x25a72: "u\x06\U00025a72", // 𥩲
+ 0x25a73: "u\x06\U00025a73", // 𥩳
+ 0x25a74: "u\x06\U00025a74", // 𥩴
+ 0x25a75: "u\x06\U00025a75", // 𥩵
+ 0x25a76: "u\x06\U00025a76", // 𥩶
+ 0x25a77: "u\x06\U00025a77", // 𥩷
+ 0x25a78: "u\x06\U00025a78", // 𥩸
+ 0x25a79: "u\x06\U00025a79", // 𥩹
+ 0x25a7a: "u\x06\U00025a7a", // 𥩺
+ 0x25a7b: "u\x06\U00025a7b", // 𥩻
+ 0x25a7c: "u\x06\U00025a7c", // 𥩼
+ 0x25a7d: "u\x06\U00025a7d", // 𥩽
+ 0x25a7e: "u\a\U00025a7e", // 𥩾
+ 0x25a7f: "u\a\U00025a7f", // 𥩿
+ 0x25a80: "u\a\U00025a80", // 𥪀
+ 0x25a81: "u\a\U00025a81", // 𥪁
+ 0x25a82: "u\a\U00025a82", // 𥪂
+ 0x25a83: "u\a\U00025a83", // 𥪃
+ 0x25a84: "u\a\U00025a84", // 𥪄
+ 0x25a85: "u\a\U00025a85", // 𥪅
+ 0x25a86: "u\a\U00025a86", // 𥪆
+ 0x25a87: "u\a\U00025a87", // 𥪇
+ 0x25a88: "u\a\U00025a88", // 𥪈
+ 0x25a89: "u\a\U00025a89", // 𥪉
+ 0x25a8a: "u\b\U00025a8a", // 𥪊
+ 0x25a8b: "u\b\U00025a8b", // 𥪋
+ 0x25a8c: "u\b\U00025a8c", // 𥪌
+ 0x25a8d: "u\b\U00025a8d", // 𥪍
+ 0x25a8e: "u\b\U00025a8e", // 𥪎
+ 0x25a8f: "u\b\U00025a8f", // 𥪏
+ 0x25a90: "u\b\U00025a90", // 𥪐
+ 0x25a91: "u\b\U00025a91", // 𥪑
+ 0x25a92: "u\b\U00025a92", // 𥪒
+ 0x25a93: "u\b\U00025a93", // 𥪓
+ 0x25a94: "u\b\U00025a94", // 𥪔
+ 0x25a95: "u\b\U00025a95", // 𥪕
+ 0x25a96: "u\b\U00025a96", // 𥪖
+ 0x25a97: "u\b\U00025a97", // 𥪗
+ 0x25a98: "u\t\U00025a98", // 𥪘
+ 0x25a99: "u\t\U00025a99", // 𥪙
+ 0x25a9a: "u\t\U00025a9a", // 𥪚
+ 0x25a9b: "u\t\U00025a9b", // 𥪛
+ 0x25a9c: "u\t\U00025a9c", // 𥪜
+ 0x25a9d: "u\t\U00025a9d", // 𥪝
+ 0x25a9e: "u\t\U00025a9e", // 𥪞
+ 0x25a9f: "u\t\U00025a9f", // 𥪟
+ 0x25aa0: "u\t\U00025aa0", // 𥪠
+ 0x25aa1: "u\t\U00025aa1", // 𥪡
+ 0x25aa2: "u\t\U00025aa2", // 𥪢
+ 0x25aa3: "u\t\U00025aa3", // 𥪣
+ 0x25aa4: "u\t\U00025aa4", // 𥪤
+ 0x25aa5: "u\n\U00025aa5", // 𥪥
+ 0x25aa6: "u\n\U00025aa6", // 𥪦
+ 0x25aa7: "u\n\U00025aa7", // 𥪧
+ 0x25aa8: "u\n\U00025aa8", // 𥪨
+ 0x25aa9: "u\n\U00025aa9", // 𥪩
+ 0x25aaa: "u\n\U00025aaa", // 𥪪
+ 0x25aab: "u\n\U00025aab", // 𥪫
+ 0x25aac: "u\n\U00025aac", // 𥪬
+ 0x25aad: "u\v\U00025aad", // 𥪭
+ 0x25aae: "u\v\U00025aae", // 𥪮
+ 0x25aaf: "u\f\U00025aaf", // 𥪯
+ 0x25ab0: "u\v\U00025ab0", // 𥪰
+ 0x25ab1: "u\v\U00025ab1", // 𥪱
+ 0x25ab2: "u\f\U00025ab2", // 𥪲
+ 0x25ab3: "u\f\U00025ab3", // 𥪳
+ 0x25ab4: "u\f\U00025ab4", // 𥪴
+ 0x25ab5: "u\f\U00025ab5", // 𥪵
+ 0x25ab6: "u\f\U00025ab6", // 𥪶
+ 0x25ab7: "u\f\U00025ab7", // 𥪷
+ 0x25ab8: "u\f\U00025ab8", // 𥪸
+ 0x25ab9: "u\f\U00025ab9", // 𥪹
+ 0x25aba: "u\x0e\U00025aba", // 𥪺
+ 0x25abb: "u\f\U00025abb", // 𥪻
+ 0x25abc: "u\r\U00025abc", // 𥪼
+ 0x25abd: "u\r\U00025abd", // 𥪽
+ 0x25abe: "u\r\U00025abe", // 𥪾
+ 0x25abf: "u\r\U00025abf", // 𥪿
+ 0x25ac0: "u\r\U00025ac0", // 𥫀
+ 0x25ac1: "u\r\U00025ac1", // 𥫁
+ 0x25ac2: "H\x0e\U00025ac2", // 𥫂
+ 0x25ac3: "u\r\U00025ac3", // 𥫃
+ 0x25ac4: "u\r\U00025ac4", // 𥫄
+ 0x25ac5: "u\x0e\U00025ac5", // 𥫅
+ 0x25ac6: "u\x0e\U00025ac6", // 𥫆
+ 0x25ac7: "u\x0e\U00025ac7", // 𥫇
+ 0x25ac8: "u\x0f\U00025ac8", // 𥫈
+ 0x25ac9: "u\x0f\U00025ac9", // 𥫉
+ 0x25aca: "u\x0f\U00025aca", // 𥫊
+ 0x25acb: "u\x0f\U00025acb", // 𥫋
+ 0x25acc: "u\x0f\U00025acc", // 𥫌
+ 0x25acd: "u\x0f\U00025acd", // 𥫍
+ 0x25ace: "u\x10\U00025ace", // 𥫎
+ 0x25acf: "u\x10\U00025acf", // 𥫏
+ 0x25ad0: "u\x11\U00025ad0", // 𥫐
+ 0x25ad1: "u\x11\U00025ad1", // 𥫑
+ 0x25ad2: "u\x14\U00025ad2", // 𥫒
+ 0x25ad3: "u\x12\U00025ad3", // 𥫓
+ 0x25ad4: "u\x13\U00025ad4", // 𥫔
+ 0x25ad5: "u\x14\U00025ad5", // 𥫕
+ 0x25ad6: "u\x14\U00025ad6", // 𥫖
+ 0x25ad7: "v\x00\U00025ad7", // 𥫗
+ 0x25ad8: "v\x01\U00025ad8", // 𥫘
+ 0x25ad9: "v\x02\U00025ad9", // 𥫙
+ 0x25ada: "v\x02\U00025ada", // 𥫚
+ 0x25adb: "v\x02\U00025adb", // 𥫛
+ 0x25adc: "v\x02\U00025adc", // 𥫜
+ 0x25add: "v\x03\U00025add", // 𥫝
+ 0x25ade: "v\x03\U00025ade", // 𥫞
+ 0x25adf: "v\x03\U00025adf", // 𥫟
+ 0x25ae0: "v\x03\U00025ae0", // 𥫠
+ 0x25ae1: "v\x03\U00025ae1", // 𥫡
+ 0x25ae2: "v\x03\U00025ae2", // 𥫢
+ 0x25ae3: "v\x03\U00025ae3", // 𥫣
+ 0x25ae4: "v\x03\U00025ae4", // 𥫤
+ 0x25ae5: "v\x03\U00025ae5", // 𥫥
+ 0x25ae6: "v\x03\U00025ae6", // 𥫦
+ 0x25ae7: "v\x03\U00025ae7", // 𥫧
+ 0x25ae8: "v\x03\U00025ae8", // 𥫨
+ 0x25ae9: "v\x03\U00025ae9", // 𥫩
+ 0x25aea: "v\x03\U00025aea", // 𥫪
+ 0x25aeb: "v\x03\U00025aeb", // 𥫫
+ 0x25aec: "v\x03\U00025aec", // 𥫬
+ 0x25aed: "v\x03\U00025aed", // 𥫭
+ 0x25aee: "v\x03\U00025aee", // 𥫮
+ 0x25aef: "v\x04\U00025aef", // 𥫯
+ 0x25af0: "v\x04\U00025af0", // 𥫰
+ 0x25af1: "v\x04\U00025af1", // 𥫱
+ 0x25af2: "v\x04\U00025af2", // 𥫲
+ 0x25af3: "v\x04\U00025af3", // 𥫳
+ 0x25af4: "v\x04\U00025af4", // 𥫴
+ 0x25af5: "v\x04\U00025af5", // 𥫵
+ 0x25af6: "v\x04\U00025af6", // 𥫶
+ 0x25af7: "v\x04\U00025af7", // 𥫷
+ 0x25af8: "v\x04\U00025af8", // 𥫸
+ 0x25af9: "v\x04\U00025af9", // 𥫹
+ 0x25afa: "v\x04\U00025afa", // 𥫺
+ 0x25afb: "v\x04\U00025afb", // 𥫻
+ 0x25afc: "v\x04\U00025afc", // 𥫼
+ 0x25afd: "v\x04\U00025afd", // 𥫽
+ 0x25afe: "v\x04\U00025afe", // 𥫾
+ 0x25aff: "v\x04\U00025aff", // 𥫿
+ 0x25b00: "v\x04\U00025b00", // 𥬀
+ 0x25b01: "v\x04\U00025b01", // 𥬁
+ 0x25b02: "v\x04\U00025b02", // 𥬂
+ 0x25b03: "v\x04\U00025b03", // 𥬃
+ 0x25b04: "v\x04\U00025b04", // 𥬄
+ 0x25b05: "v\x04\U00025b05", // 𥬅
+ 0x25b06: "v\x04\U00025b06", // 𥬆
+ 0x25b07: "v\x04\U00025b07", // 𥬇
+ 0x25b08: "v\x04\U00025b08", // 𥬈
+ 0x25b09: "v\x04\U00025b09", // 𥬉
+ 0x25b0a: "v\x04\U00025b0a", // 𥬊
+ 0x25b0b: "v\x04\U00025b0b", // 𥬋
+ 0x25b0c: "v\x05\U00025b0c", // 𥬌
+ 0x25b0d: "v\x05\U00025b0d", // 𥬍
+ 0x25b0e: "v\x05\U00025b0e", // 𥬎
+ 0x25b0f: "v\x05\U00025b0f", // 𥬏
+ 0x25b10: "v\x05\U00025b10", // 𥬐
+ 0x25b11: "v\x05\U00025b11", // 𥬑
+ 0x25b12: "v\x05\U00025b12", // 𥬒
+ 0x25b13: "v\x05\U00025b13", // 𥬓
+ 0x25b14: "v\x05\U00025b14", // 𥬔
+ 0x25b15: "v\x05\U00025b15", // 𥬕
+ 0x25b16: "v\x05\U00025b16", // 𥬖
+ 0x25b17: "v\x05\U00025b17", // 𥬗
+ 0x25b18: "v\x05\U00025b18", // 𥬘
+ 0x25b19: "v\x05\U00025b19", // 𥬙
+ 0x25b1a: "v\x05\U00025b1a", // 𥬚
+ 0x25b1b: "v\x05\U00025b1b", // 𥬛
+ 0x25b1c: "v\x05\U00025b1c", // 𥬜
+ 0x25b1d: "v\x05\U00025b1d", // 𥬝
+ 0x25b1e: "v\x05\U00025b1e", // 𥬞
+ 0x25b1f: "v\x05\U00025b1f", // 𥬟
+ 0x25b20: "v\x05\U00025b20", // 𥬠
+ 0x25b21: "v\x05\U00025b21", // 𥬡
+ 0x25b22: "v\x05\U00025b22", // 𥬢
+ 0x25b23: "v\x05\U00025b23", // 𥬣
+ 0x25b24: "v\x05\U00025b24", // 𥬤
+ 0x25b25: "v\x05\U00025b25", // 𥬥
+ 0x25b26: "v\x05\U00025b26", // 𥬦
+ 0x25b27: "v\x05\U00025b27", // 𥬧
+ 0x25b28: "v\x05\U00025b28", // 𥬨
+ 0x25b29: "v\x05\U00025b29", // 𥬩
+ 0x25b2a: "v\x06\U00025b2a", // 𥬪
+ 0x25b2b: "v\x06\U00025b2b", // 𥬫
+ 0x25b2c: "v\x06\U00025b2c", // 𥬬
+ 0x25b2d: "v\x06\U00025b2d", // 𥬭
+ 0x25b2e: "v\x06\U00025b2e", // 𥬮
+ 0x25b2f: "v\x06\U00025b2f", // 𥬯
+ 0x25b30: "v\x06\U00025b30", // 𥬰
+ 0x25b31: "v\x06\U00025b31", // 𥬱
+ 0x25b32: "v\x06\U00025b32", // 𥬲
+ 0x25b33: "v\x06\U00025b33", // 𥬳
+ 0x25b34: "v\x06\U00025b34", // 𥬴
+ 0x25b35: "v\x06\U00025b35", // 𥬵
+ 0x25b36: "v\x06\U00025b36", // 𥬶
+ 0x25b37: "v\x06\U00025b37", // 𥬷
+ 0x25b38: "v\x06\U00025b38", // 𥬸
+ 0x25b39: "v\x06\U00025b39", // 𥬹
+ 0x25b3a: "v\x06\U00025b3a", // 𥬺
+ 0x25b3b: "v\x06\U00025b3b", // 𥬻
+ 0x25b3c: "v\x06\U00025b3c", // 𥬼
+ 0x25b3d: "v\x06\U00025b3d", // 𥬽
+ 0x25b3e: "v\x06\U00025b3e", // 𥬾
+ 0x25b3f: "v\x05\U00025b3f", // 𥬿
+ 0x25b40: "v\x06\U00025b40", // 𥭀
+ 0x25b41: "v\x06\U00025b41", // 𥭁
+ 0x25b42: "v\x06\U00025b42", // 𥭂
+ 0x25b43: "v\x06\U00025b43", // 𥭃
+ 0x25b44: "v\x06\U00025b44", // 𥭄
+ 0x25b45: "v\x06\U00025b45", // 𥭅
+ 0x25b46: "v\x06\U00025b46", // 𥭆
+ 0x25b47: "v\x06\U00025b47", // 𥭇
+ 0x25b48: "v\x06\U00025b48", // 𥭈
+ 0x25b49: "v\x06\U00025b49", // 𥭉
+ 0x25b4a: "v\x06\U00025b4a", // 𥭊
+ 0x25b4b: "v\x06\U00025b4b", // 𥭋
+ 0x25b4c: "v\x06\U00025b4c", // 𥭌
+ 0x25b4d: "v\x06\U00025b4d", // 𥭍
+ 0x25b4e: "v\x06\U00025b4e", // 𥭎
+ 0x25b4f: "v\x06\U00025b4f", // 𥭏
+ 0x25b50: "v\a\U00025b50", // 𥭐
+ 0x25b51: "v\a\U00025b51", // 𥭑
+ 0x25b52: "v\a\U00025b52", // 𥭒
+ 0x25b53: "v\a\U00025b53", // 𥭓
+ 0x25b54: "v\a\U00025b54", // 𥭔
+ 0x25b55: "v\a\U00025b55", // 𥭕
+ 0x25b56: "v\a\U00025b56", // 𥭖
+ 0x25b57: "v\a\U00025b57", // 𥭗
+ 0x25b58: "v\a\U00025b58", // 𥭘
+ 0x25b59: "v\a\U00025b59", // 𥭙
+ 0x25b5a: "v\a\U00025b5a", // 𥭚
+ 0x25b5b: "v\a\U00025b5b", // 𥭛
+ 0x25b5c: "v\a\U00025b5c", // 𥭜
+ 0x25b5d: "v\a\U00025b5d", // 𥭝
+ 0x25b5e: "v\a\U00025b5e", // 𥭞
+ 0x25b5f: "v\a\U00025b5f", // 𥭟
+ 0x25b60: "v\a\U00025b60", // 𥭠
+ 0x25b61: "v\a\U00025b61", // 𥭡
+ 0x25b62: "v\a\U00025b62", // 𥭢
+ 0x25b63: "v\a\U00025b63", // 𥭣
+ 0x25b64: "v\a\U00025b64", // 𥭤
+ 0x25b65: "v\a\U00025b65", // 𥭥
+ 0x25b66: "v\a\U00025b66", // 𥭦
+ 0x25b67: "v\a\U00025b67", // 𥭧
+ 0x25b68: "v\a\U00025b68", // 𥭨
+ 0x25b69: "v\a\U00025b69", // 𥭩
+ 0x25b6a: "v\a\U00025b6a", // 𥭪
+ 0x25b6b: "v\a\U00025b6b", // 𥭫
+ 0x25b6c: "v\a\U00025b6c", // 𥭬
+ 0x25b6d: "v\a\U00025b6d", // 𥭭
+ 0x25b6e: "v\a\U00025b6e", // 𥭮
+ 0x25b6f: "v\a\U00025b6f", // 𥭯
+ 0x25b70: "v\a\U00025b70", // 𥭰
+ 0x25b71: "v\a\U00025b71", // 𥭱
+ 0x25b72: "v\a\U00025b72", // 𥭲
+ 0x25b73: "v\a\U00025b73", // 𥭳
+ 0x25b74: "v\a\U00025b74", // 𥭴
+ 0x25b75: "v\a\U00025b75", // 𥭵
+ 0x25b76: "v\a\U00025b76", // 𥭶
+ 0x25b77: "v\a\U00025b77", // 𥭷
+ 0x25b78: "v\a\U00025b78", // 𥭸
+ 0x25b79: "v\a\U00025b79", // 𥭹
+ 0x25b7a: "v\a\U00025b7a", // 𥭺
+ 0x25b7b: "v\a\U00025b7b", // 𥭻
+ 0x25b7c: "v\a\U00025b7c", // 𥭼
+ 0x25b7d: "v\a\U00025b7d", // 𥭽
+ 0x25b7e: "v\a\U00025b7e", // 𥭾
+ 0x25b7f: "v\a\U00025b7f", // 𥭿
+ 0x25b80: "v\a\U00025b80", // 𥮀
+ 0x25b81: "v\a\U00025b81", // 𥮁
+ 0x25b82: "v\a\U00025b82", // 𥮂
+ 0x25b83: "v\a\U00025b83", // 𥮃
+ 0x25b84: "v\a\U00025b84", // 𥮄
+ 0x25b85: "v\a\U00025b85", // 𥮅
+ 0x25b86: "v\a\U00025b86", // 𥮆
+ 0x25b87: "v\a\U00025b87", // 𥮇
+ 0x25b88: "v\b\U00025b88", // 𥮈
+ 0x25b89: "v\a\U00025b89", // 𥮉
+ 0x25b8a: "v\a\U00025b8a", // 𥮊
+ 0x25b8b: "v\a\U00025b8b", // 𥮋
+ 0x25b8c: "v\a\U00025b8c", // 𥮌
+ 0x25b8d: "v\b\U00025b8d", // 𥮍
+ 0x25b8e: "v\b\U00025b8e", // 𥮎
+ 0x25b8f: "v\b\U00025b8f", // 𥮏
+ 0x25b90: "v\b\U00025b90", // 𥮐
+ 0x25b91: "v\b\U00025b91", // 𥮑
+ 0x25b92: "v\b\U00025b92", // 𥮒
+ 0x25b93: "v\b\U00025b93", // 𥮓
+ 0x25b94: "v\b\U00025b94", // 𥮔
+ 0x25b95: "v\b\U00025b95", // 𥮕
+ 0x25b96: "v\b\U00025b96", // 𥮖
+ 0x25b97: "v\b\U00025b97", // 𥮗
+ 0x25b98: "v\b\U00025b98", // 𥮘
+ 0x25b99: "v\b\U00025b99", // 𥮙
+ 0x25b9a: "v\b\U00025b9a", // 𥮚
+ 0x25b9b: "v\b\U00025b9b", // 𥮛
+ 0x25b9c: "v\b\U00025b9c", // 𥮜
+ 0x25b9d: "v\b\U00025b9d", // 𥮝
+ 0x25b9e: "v\b\U00025b9e", // 𥮞
+ 0x25b9f: "v\b\U00025b9f", // 𥮟
+ 0x25ba0: "v\b\U00025ba0", // 𥮠
+ 0x25ba1: "v\b\U00025ba1", // 𥮡
+ 0x25ba2: "v\b\U00025ba2", // 𥮢
+ 0x25ba3: "v\b\U00025ba3", // 𥮣
+ 0x25ba4: "v\b\U00025ba4", // 𥮤
+ 0x25ba5: "v\b\U00025ba5", // 𥮥
+ 0x25ba6: "v\b\U00025ba6", // 𥮦
+ 0x25ba7: "v\b\U00025ba7", // 𥮧
+ 0x25ba8: "v\b\U00025ba8", // 𥮨
+ 0x25ba9: "v\b\U00025ba9", // 𥮩
+ 0x25baa: "v\b\U00025baa", // 𥮪
+ 0x25bab: "v\b\U00025bab", // 𥮫
+ 0x25bac: "v\b\U00025bac", // 𥮬
+ 0x25bad: "v\b\U00025bad", // 𥮭
+ 0x25bae: "v\b\U00025bae", // 𥮮
+ 0x25baf: "v\b\U00025baf", // 𥮯
+ 0x25bb0: "v\b\U00025bb0", // 𥮰
+ 0x25bb1: "v\b\U00025bb1", // 𥮱
+ 0x25bb2: "v\b\U00025bb2", // 𥮲
+ 0x25bb3: "v\b\U00025bb3", // 𥮳
+ 0x25bb4: "v\b\U00025bb4", // 𥮴
+ 0x25bb5: "v\b\U00025bb5", // 𥮵
+ 0x25bb6: "v\b\U00025bb6", // 𥮶
+ 0x25bb7: "v\b\U00025bb7", // 𥮷
+ 0x25bb8: "v\b\U00025bb8", // 𥮸
+ 0x25bb9: "v\b\U00025bb9", // 𥮹
+ 0x25bba: "v\b\U00025bba", // 𥮺
+ 0x25bbb: "v\b\U00025bbb", // 𥮻
+ 0x25bbc: "v\b\U00025bbc", // 𥮼
+ 0x25bbd: "v\b\U00025bbd", // 𥮽
+ 0x25bbe: "v\b\U00025bbe", // 𥮾
+ 0x25bbf: "v\b\U00025bbf", // 𥮿
+ 0x25bc0: "v\b\U00025bc0", // 𥯀
+ 0x25bc1: "v\b\U00025bc1", // 𥯁
+ 0x25bc2: "v\b\U00025bc2", // 𥯂
+ 0x25bc3: "v\b\U00025bc3", // 𥯃
+ 0x25bc4: "v\b\U00025bc4", // 𥯄
+ 0x25bc5: "v\b\U00025bc5", // 𥯅
+ 0x25bc6: "v\b\U00025bc6", // 𥯆
+ 0x25bc7: "v\b\U00025bc7", // 𥯇
+ 0x25bc8: "v\b\U00025bc8", // 𥯈
+ 0x25bc9: "v\b\U00025bc9", // 𥯉
+ 0x25bca: "v\b\U00025bca", // 𥯊
+ 0x25bcb: "v\b\U00025bcb", // 𥯋
+ 0x25bcc: "v\b\U00025bcc", // 𥯌
+ 0x25bcd: "v\b\U00025bcd", // 𥯍
+ 0x25bce: "v\b\U00025bce", // 𥯎
+ 0x25bcf: "v\b\U00025bcf", // 𥯏
+ 0x25bd0: "v\b\U00025bd0", // 𥯐
+ 0x25bd1: "v\t\U00025bd1", // 𥯑
+ 0x25bd2: "v\t\U00025bd2", // 𥯒
+ 0x25bd3: "v\t\U00025bd3", // 𥯓
+ 0x25bd4: "v\t\U00025bd4", // 𥯔
+ 0x25bd5: "v\t\U00025bd5", // 𥯕
+ 0x25bd6: "v\t\U00025bd6", // 𥯖
+ 0x25bd7: "v\t\U00025bd7", // 𥯗
+ 0x25bd8: "v\t\U00025bd8", // 𥯘
+ 0x25bd9: "v\t\U00025bd9", // 𥯙
+ 0x25bda: "v\t\U00025bda", // 𥯚
+ 0x25bdb: "v\t\U00025bdb", // 𥯛
+ 0x25bdc: "v\t\U00025bdc", // 𥯜
+ 0x25bdd: "v\t\U00025bdd", // 𥯝
+ 0x25bde: "v\t\U00025bde", // 𥯞
+ 0x25bdf: "v\t\U00025bdf", // 𥯟
+ 0x25be0: "v\t\U00025be0", // 𥯠
+ 0x25be1: "v\t\U00025be1", // 𥯡
+ 0x25be2: "v\t\U00025be2", // 𥯢
+ 0x25be3: "v\t\U00025be3", // 𥯣
+ 0x25be4: "v\t\U00025be4", // 𥯤
+ 0x25be5: "v\t\U00025be5", // 𥯥
+ 0x25be6: "v\t\U00025be6", // 𥯦
+ 0x25be7: "v\t\U00025be7", // 𥯧
+ 0x25be8: "v\t\U00025be8", // 𥯨
+ 0x25be9: "v\t\U00025be9", // 𥯩
+ 0x25bea: "v\t\U00025bea", // 𥯪
+ 0x25beb: "v\t\U00025beb", // 𥯫
+ 0x25bec: "v\t\U00025bec", // 𥯬
+ 0x25bed: "v\t\U00025bed", // 𥯭
+ 0x25bee: "v\t\U00025bee", // 𥯮
+ 0x25bef: "v\t\U00025bef", // 𥯯
+ 0x25bf0: "v\t\U00025bf0", // 𥯰
+ 0x25bf1: "v\t\U00025bf1", // 𥯱
+ 0x25bf2: "v\t\U00025bf2", // 𥯲
+ 0x25bf3: "v\t\U00025bf3", // 𥯳
+ 0x25bf4: "v\t\U00025bf4", // 𥯴
+ 0x25bf5: "v\t\U00025bf5", // 𥯵
+ 0x25bf6: "v\t\U00025bf6", // 𥯶
+ 0x25bf7: "v\t\U00025bf7", // 𥯷
+ 0x25bf8: "v\t\U00025bf8", // 𥯸
+ 0x25bf9: "v\t\U00025bf9", // 𥯹
+ 0x25bfa: "v\t\U00025bfa", // 𥯺
+ 0x25bfb: "v\t\U00025bfb", // 𥯻
+ 0x25bfc: "v\t\U00025bfc", // 𥯼
+ 0x25bfd: "v\t\U00025bfd", // 𥯽
+ 0x25bfe: "v\t\U00025bfe", // 𥯾
+ 0x25bff: "v\t\U00025bff", // 𥯿
+ 0x25c00: "v\t\U00025c00", // 𥰀
+ 0x25c01: "v\t\U00025c01", // 𥰁
+ 0x25c02: "v\t\U00025c02", // 𥰂
+ 0x25c03: "v\t\U00025c03", // 𥰃
+ 0x25c04: "v\t\U00025c04", // 𥰄
+ 0x25c05: "v\t\U00025c05", // 𥰅
+ 0x25c06: "v\t\U00025c06", // 𥰆
+ 0x25c07: "v\t\U00025c07", // 𥰇
+ 0x25c08: "v\t\U00025c08", // 𥰈
+ 0x25c09: "v\t\U00025c09", // 𥰉
+ 0x25c0a: "v\t\U00025c0a", // 𥰊
+ 0x25c0b: "v\t\U00025c0b", // 𥰋
+ 0x25c0c: "v\t\U00025c0c", // 𥰌
+ 0x25c0d: "v\t\U00025c0d", // 𥰍
+ 0x25c0e: "v\t\U00025c0e", // 𥰎
+ 0x25c0f: "v\t\U00025c0f", // 𥰏
+ 0x25c10: "v\t\U00025c10", // 𥰐
+ 0x25c11: "v\t\U00025c11", // 𥰑
+ 0x25c12: "v\t\U00025c12", // 𥰒
+ 0x25c13: "v\t\U00025c13", // 𥰓
+ 0x25c14: "v\t\U00025c14", // 𥰔
+ 0x25c15: "v\t\U00025c15", // 𥰕
+ 0x25c16: "v\t\U00025c16", // 𥰖
+ 0x25c17: "v\t\U00025c17", // 𥰗
+ 0x25c18: "v\n\U00025c18", // 𥰘
+ 0x25c19: "v\n\U00025c19", // 𥰙
+ 0x25c1a: "v\n\U00025c1a", // 𥰚
+ 0x25c1b: "v\n\U00025c1b", // 𥰛
+ 0x25c1c: "v\n\U00025c1c", // 𥰜
+ 0x25c1d: "v\n\U00025c1d", // 𥰝
+ 0x25c1e: "v\n\U00025c1e", // 𥰞
+ 0x25c1f: "v\n\U00025c1f", // 𥰟
+ 0x25c20: "v\n\U00025c20", // 𥰠
+ 0x25c21: "v\n\U00025c21", // 𥰡
+ 0x25c22: "v\n\U00025c22", // 𥰢
+ 0x25c23: "v\n\U00025c23", // 𥰣
+ 0x25c24: "v\n\U00025c24", // 𥰤
+ 0x25c25: "v\n\U00025c25", // 𥰥
+ 0x25c26: "v\n\U00025c26", // 𥰦
+ 0x25c27: "v\n\U00025c27", // 𥰧
+ 0x25c28: "v\n\U00025c28", // 𥰨
+ 0x25c29: "v\n\U00025c29", // 𥰩
+ 0x25c2a: "v\n\U00025c2a", // 𥰪
+ 0x25c2b: "v\n\U00025c2b", // 𥰫
+ 0x25c2c: "v\n\U00025c2c", // 𥰬
+ 0x25c2d: "v\n\U00025c2d", // 𥰭
+ 0x25c2e: "v\n\U00025c2e", // 𥰮
+ 0x25c2f: "v\n\U00025c2f", // 𥰯
+ 0x25c30: "v\n\U00025c30", // 𥰰
+ 0x25c31: "v\n\U00025c31", // 𥰱
+ 0x25c32: "v\n\U00025c32", // 𥰲
+ 0x25c33: "v\n\U00025c33", // 𥰳
+ 0x25c34: "v\n\U00025c34", // 𥰴
+ 0x25c35: "v\n\U00025c35", // 𥰵
+ 0x25c36: "v\n\U00025c36", // 𥰶
+ 0x25c37: "v\n\U00025c37", // 𥰷
+ 0x25c38: "v\n\U00025c38", // 𥰸
+ 0x25c39: "v\n\U00025c39", // 𥰹
+ 0x25c3a: "v\n\U00025c3a", // 𥰺
+ 0x25c3b: "v\n\U00025c3b", // 𥰻
+ 0x25c3c: "v\n\U00025c3c", // 𥰼
+ 0x25c3d: "v\n\U00025c3d", // 𥰽
+ 0x25c3e: "v\n\U00025c3e", // 𥰾
+ 0x25c3f: "v\n\U00025c3f", // 𥰿
+ 0x25c40: "v\n\U00025c40", // 𥱀
+ 0x25c41: "v\n\U00025c41", // 𥱁
+ 0x25c42: "v\n\U00025c42", // 𥱂
+ 0x25c43: "v\n\U00025c43", // 𥱃
+ 0x25c44: "v\n\U00025c44", // 𥱄
+ 0x25c45: "v\n\U00025c45", // 𥱅
+ 0x25c46: "v\n\U00025c46", // 𥱆
+ 0x25c47: "v\n\U00025c47", // 𥱇
+ 0x25c48: "v\n\U00025c48", // 𥱈
+ 0x25c49: "v\n\U00025c49", // 𥱉
+ 0x25c4a: "v\n\U00025c4a", // 𥱊
+ 0x25c4b: "v\n\U00025c4b", // 𥱋
+ 0x25c4c: "v\n\U00025c4c", // 𥱌
+ 0x25c4d: "v\n\U00025c4d", // 𥱍
+ 0x25c4e: "v\n\U00025c4e", // 𥱎
+ 0x25c4f: "v\n\U00025c4f", // 𥱏
+ 0x25c50: "v\n\U00025c50", // 𥱐
+ 0x25c51: "v\n\U00025c51", // 𥱑
+ 0x25c52: "v\n\U00025c52", // 𥱒
+ 0x25c53: "v\n\U00025c53", // 𥱓
+ 0x25c54: "v\n\U00025c54", // 𥱔
+ 0x25c55: "v\n\U00025c55", // 𥱕
+ 0x25c56: "v\n\U00025c56", // 𥱖
+ 0x25c57: "v\n\U00025c57", // 𥱗
+ 0x25c58: "v\n\U00025c58", // 𥱘
+ 0x25c59: "v\n\U00025c59", // 𥱙
+ 0x25c5a: "v\n\U00025c5a", // 𥱚
+ 0x25c5b: "v\n\U00025c5b", // 𥱛
+ 0x25c5c: "v\n\U00025c5c", // 𥱜
+ 0x25c5d: "v\n\U00025c5d", // 𥱝
+ 0x25c5e: "v\n\U00025c5e", // 𥱞
+ 0x25c5f: "v\n\U00025c5f", // 𥱟
+ 0x25c60: "v\n\U00025c60", // 𥱠
+ 0x25c61: "v\n\U00025c61", // 𥱡
+ 0x25c62: "v\n\U00025c62", // 𥱢
+ 0x25c63: "v\n\U00025c63", // 𥱣
+ 0x25c64: "v\n\U00025c64", // 𥱤
+ 0x25c65: "v\n\U00025c65", // 𥱥
+ 0x25c66: "v\n\U00025c66", // 𥱦
+ 0x25c67: "v\n\U00025c67", // 𥱧
+ 0x25c68: "v\n\U00025c68", // 𥱨
+ 0x25c69: "v\n\U00025c69", // 𥱩
+ 0x25c6a: "v\n\U00025c6a", // 𥱪
+ 0x25c6b: "v\n\U00025c6b", // 𥱫
+ 0x25c6c: "v\n\U00025c6c", // 𥱬
+ 0x25c6d: "v\n\U00025c6d", // 𥱭
+ 0x25c6e: "v\n\U00025c6e", // 𥱮
+ 0x25c6f: "v\n\U00025c6f", // 𥱯
+ 0x25c70: "v\n\U00025c70", // 𥱰
+ 0x25c71: "v\n\U00025c71", // 𥱱
+ 0x25c72: "v\n\U00025c72", // 𥱲
+ 0x25c73: "v\n\U00025c73", // 𥱳
+ 0x25c74: "v\n\U00025c74", // 𥱴
+ 0x25c75: "v\v\U00025c75", // 𥱵
+ 0x25c76: "v\v\U00025c76", // 𥱶
+ 0x25c77: "v\v\U00025c77", // 𥱷
+ 0x25c78: "v\v\U00025c78", // 𥱸
+ 0x25c79: "v\v\U00025c79", // 𥱹
+ 0x25c7a: "v\v\U00025c7a", // 𥱺
+ 0x25c7b: "v\v\U00025c7b", // 𥱻
+ 0x25c7c: "v\v\U00025c7c", // 𥱼
+ 0x25c7d: "v\v\U00025c7d", // 𥱽
+ 0x25c7e: "v\v\U00025c7e", // 𥱾
+ 0x25c7f: "v\v\U00025c7f", // 𥱿
+ 0x25c80: "v\v\U00025c80", // 𥲀
+ 0x25c81: "v\v\U00025c81", // 𥲁
+ 0x25c82: "v\v\U00025c82", // 𥲂
+ 0x25c83: "v\v\U00025c83", // 𥲃
+ 0x25c84: "v\v\U00025c84", // 𥲄
+ 0x25c85: "v\v\U00025c85", // 𥲅
+ 0x25c86: "v\v\U00025c86", // 𥲆
+ 0x25c87: "v\v\U00025c87", // 𥲇
+ 0x25c88: "v\v\U00025c88", // 𥲈
+ 0x25c89: "v\v\U00025c89", // 𥲉
+ 0x25c8a: "v\v\U00025c8a", // 𥲊
+ 0x25c8b: "v\v\U00025c8b", // 𥲋
+ 0x25c8c: "v\v\U00025c8c", // 𥲌
+ 0x25c8d: "v\v\U00025c8d", // 𥲍
+ 0x25c8e: "v\v\U00025c8e", // 𥲎
+ 0x25c8f: "v\v\U00025c8f", // 𥲏
+ 0x25c90: "v\v\U00025c90", // 𥲐
+ 0x25c91: "v\v\U00025c91", // 𥲑
+ 0x25c92: "v\v\U00025c92", // 𥲒
+ 0x25c93: "v\v\U00025c93", // 𥲓
+ 0x25c94: "v\v\U00025c94", // 𥲔
+ 0x25c95: "v\v\U00025c95", // 𥲕
+ 0x25c96: "v\v\U00025c96", // 𥲖
+ 0x25c97: "v\v\U00025c97", // 𥲗
+ 0x25c98: "v\v\U00025c98", // 𥲘
+ 0x25c99: "v\v\U00025c99", // 𥲙
+ 0x25c9a: "v\v\U00025c9a", // 𥲚
+ 0x25c9b: "v\v\U00025c9b", // 𥲛
+ 0x25c9c: "v\v\U00025c9c", // 𥲜
+ 0x25c9d: "v\v\U00025c9d", // 𥲝
+ 0x25c9e: "v\v\U00025c9e", // 𥲞
+ 0x25c9f: "v\v\U00025c9f", // 𥲟
+ 0x25ca0: "v\v\U00025ca0", // 𥲠
+ 0x25ca1: "v\v\U00025ca1", // 𥲡
+ 0x25ca2: "v\v\U00025ca2", // 𥲢
+ 0x25ca3: "v\v\U00025ca3", // 𥲣
+ 0x25ca4: "v\v\U00025ca4", // 𥲤
+ 0x25ca5: "v\v\U00025ca5", // 𥲥
+ 0x25ca6: "v\v\U00025ca6", // 𥲦
+ 0x25ca7: "v\v\U00025ca7", // 𥲧
+ 0x25ca8: "v\v\U00025ca8", // 𥲨
+ 0x25ca9: "v\v\U00025ca9", // 𥲩
+ 0x25caa: "v\v\U00025caa", // 𥲪
+ 0x25cab: "v\v\U00025cab", // 𥲫
+ 0x25cac: "v\v\U00025cac", // 𥲬
+ 0x25cad: "v\v\U00025cad", // 𥲭
+ 0x25cae: "v\v\U00025cae", // 𥲮
+ 0x25caf: "v\v\U00025caf", // 𥲯
+ 0x25cb0: "v\v\U00025cb0", // 𥲰
+ 0x25cb1: "v\v\U00025cb1", // 𥲱
+ 0x25cb2: "v\v\U00025cb2", // 𥲲
+ 0x25cb3: "v\v\U00025cb3", // 𥲳
+ 0x25cb4: "v\v\U00025cb4", // 𥲴
+ 0x25cb5: "v\v\U00025cb5", // 𥲵
+ 0x25cb6: "v\v\U00025cb6", // 𥲶
+ 0x25cb7: "v\v\U00025cb7", // 𥲷
+ 0x25cb8: "v\v\U00025cb8", // 𥲸
+ 0x25cb9: "v\v\U00025cb9", // 𥲹
+ 0x25cba: "v\v\U00025cba", // 𥲺
+ 0x25cbb: "v\v\U00025cbb", // 𥲻
+ 0x25cbc: "v\v\U00025cbc", // 𥲼
+ 0x25cbd: "v\v\U00025cbd", // 𥲽
+ 0x25cbe: "v\v\U00025cbe", // 𥲾
+ 0x25cbf: "v\v\U00025cbf", // 𥲿
+ 0x25cc0: "v\v\U00025cc0", // 𥳀
+ 0x25cc1: "v\f\U00025cc1", // 𥳁
+ 0x25cc2: "v\v\U00025cc2", // 𥳂
+ 0x25cc3: "v\v\U00025cc3", // 𥳃
+ 0x25cc4: "v\v\U00025cc4", // 𥳄
+ 0x25cc5: "v\v\U00025cc5", // 𥳅
+ 0x25cc6: "v\f\U00025cc6", // 𥳆
+ 0x25cc7: "v\f\U00025cc7", // 𥳇
+ 0x25cc8: "v\f\U00025cc8", // 𥳈
+ 0x25cc9: "v\f\U00025cc9", // 𥳉
+ 0x25cca: "v\f\U00025cca", // 𥳊
+ 0x25ccb: "v\f\U00025ccb", // 𥳋
+ 0x25ccc: "v\f\U00025ccc", // 𥳌
+ 0x25ccd: "v\f\U00025ccd", // 𥳍
+ 0x25cce: "v\f\U00025cce", // 𥳎
+ 0x25ccf: "v\f\U00025ccf", // 𥳏
+ 0x25cd0: "v\f\U00025cd0", // 𥳐
+ 0x25cd1: "v\f\U00025cd1", // 𥳑
+ 0x25cd2: "v\f\U00025cd2", // 𥳒
+ 0x25cd3: "v\f\U00025cd3", // 𥳓
+ 0x25cd4: "v\f\U00025cd4", // 𥳔
+ 0x25cd5: "v\f\U00025cd5", // 𥳕
+ 0x25cd6: "v\f\U00025cd6", // 𥳖
+ 0x25cd7: "v\f\U00025cd7", // 𥳗
+ 0x25cd8: "v\f\U00025cd8", // 𥳘
+ 0x25cd9: "v\f\U00025cd9", // 𥳙
+ 0x25cda: "v\f\U00025cda", // 𥳚
+ 0x25cdb: "v\f\U00025cdb", // 𥳛
+ 0x25cdc: "v\f\U00025cdc", // 𥳜
+ 0x25cdd: "v\f\U00025cdd", // 𥳝
+ 0x25cde: "v\f\U00025cde", // 𥳞
+ 0x25cdf: "v\f\U00025cdf", // 𥳟
+ 0x25ce0: "v\f\U00025ce0", // 𥳠
+ 0x25ce1: "v\f\U00025ce1", // 𥳡
+ 0x25ce2: "v\f\U00025ce2", // 𥳢
+ 0x25ce3: "v\f\U00025ce3", // 𥳣
+ 0x25ce4: "v\f\U00025ce4", // 𥳤
+ 0x25ce5: "v\f\U00025ce5", // 𥳥
+ 0x25ce6: "v\f\U00025ce6", // 𥳦
+ 0x25ce7: "v\f\U00025ce7", // 𥳧
+ 0x25ce8: "v\f\U00025ce8", // 𥳨
+ 0x25ce9: "v\f\U00025ce9", // 𥳩
+ 0x25cea: "v\f\U00025cea", // 𥳪
+ 0x25ceb: "v\f\U00025ceb", // 𥳫
+ 0x25cec: "v\f\U00025cec", // 𥳬
+ 0x25ced: "v\f\U00025ced", // 𥳭
+ 0x25cee: "v\f\U00025cee", // 𥳮
+ 0x25cef: "v\f\U00025cef", // 𥳯
+ 0x25cf0: "v\f\U00025cf0", // 𥳰
+ 0x25cf1: "v\f\U00025cf1", // 𥳱
+ 0x25cf2: "v\f\U00025cf2", // 𥳲
+ 0x25cf3: "v\f\U00025cf3", // 𥳳
+ 0x25cf4: "v\f\U00025cf4", // 𥳴
+ 0x25cf5: "v\f\U00025cf5", // 𥳵
+ 0x25cf6: "v\f\U00025cf6", // 𥳶
+ 0x25cf7: "v\f\U00025cf7", // 𥳷
+ 0x25cf8: "v\f\U00025cf8", // 𥳸
+ 0x25cf9: "v\f\U00025cf9", // 𥳹
+ 0x25cfa: "v\f\U00025cfa", // 𥳺
+ 0x25cfb: "v\f\U00025cfb", // 𥳻
+ 0x25cfc: "v\f\U00025cfc", // 𥳼
+ 0x25cfd: "v\f\U00025cfd", // 𥳽
+ 0x25cfe: "v\f\U00025cfe", // 𥳾
+ 0x25cff: "v\f\U00025cff", // 𥳿
+ 0x25d00: "v\f\U00025d00", // 𥴀
+ 0x25d01: "v\f\U00025d01", // 𥴁
+ 0x25d02: "v\f\U00025d02", // 𥴂
+ 0x25d03: "v\f\U00025d03", // 𥴃
+ 0x25d04: "v\f\U00025d04", // 𥴄
+ 0x25d05: "v\f\U00025d05", // 𥴅
+ 0x25d06: "v\f\U00025d06", // 𥴆
+ 0x25d07: "v\f\U00025d07", // 𥴇
+ 0x25d08: "v\f\U00025d08", // 𥴈
+ 0x25d09: "v\f\U00025d09", // 𥴉
+ 0x25d0a: "v\f\U00025d0a", // 𥴊
+ 0x25d0b: "v\f\U00025d0b", // 𥴋
+ 0x25d0c: "v\f\U00025d0c", // 𥴌
+ 0x25d0d: "v\f\U00025d0d", // 𥴍
+ 0x25d0e: "v\v\U00025d0e", // 𥴎
+ 0x25d0f: "v\f\U00025d0f", // 𥴏
+ 0x25d10: "v\f\U00025d10", // 𥴐
+ 0x25d11: "v\f\U00025d11", // 𥴑
+ 0x25d12: "v\f\U00025d12", // 𥴒
+ 0x25d13: "v\f\U00025d13", // 𥴓
+ 0x25d14: "v\f\U00025d14", // 𥴔
+ 0x25d15: "v\f\U00025d15", // 𥴕
+ 0x25d16: "v\f\U00025d16", // 𥴖
+ 0x25d17: "v\f\U00025d17", // 𥴗
+ 0x25d18: "v\f\U00025d18", // 𥴘
+ 0x25d19: "v\f\U00025d19", // 𥴙
+ 0x25d1a: "v\f\U00025d1a", // 𥴚
+ 0x25d1b: "v\f\U00025d1b", // 𥴛
+ 0x25d1c: "v\f\U00025d1c", // 𥴜
+ 0x25d1d: "v\f\U00025d1d", // 𥴝
+ 0x25d1e: "v\f\U00025d1e", // 𥴞
+ 0x25d1f: "v\f\U00025d1f", // 𥴟
+ 0x25d20: "v\f\U00025d20", // 𥴠
+ 0x25d21: "v\r\U00025d21", // 𥴡
+ 0x25d22: "v\r\U00025d22", // 𥴢
+ 0x25d23: "v\r\U00025d23", // 𥴣
+ 0x25d24: "v\r\U00025d24", // 𥴤
+ 0x25d25: "v\r\U00025d25", // 𥴥
+ 0x25d26: "v\r\U00025d26", // 𥴦
+ 0x25d27: "v\r\U00025d27", // 𥴧
+ 0x25d28: "v\r\U00025d28", // 𥴨
+ 0x25d29: "v\r\U00025d29", // 𥴩
+ 0x25d2a: "v\r\U00025d2a", // 𥴪
+ 0x25d2b: "v\r\U00025d2b", // 𥴫
+ 0x25d2c: "v\r\U00025d2c", // 𥴬
+ 0x25d2d: "v\r\U00025d2d", // 𥴭
+ 0x25d2e: "v\r\U00025d2e", // 𥴮
+ 0x25d2f: "v\r\U00025d2f", // 𥴯
+ 0x25d30: "v\r\U00025d30", // 𥴰
+ 0x25d31: "v\r\U00025d31", // 𥴱
+ 0x25d32: "v\r\U00025d32", // 𥴲
+ 0x25d33: "v\r\U00025d33", // 𥴳
+ 0x25d34: "v\r\U00025d34", // 𥴴
+ 0x25d35: "v\r\U00025d35", // 𥴵
+ 0x25d36: "v\r\U00025d36", // 𥴶
+ 0x25d37: "v\r\U00025d37", // 𥴷
+ 0x25d38: "v\r\U00025d38", // 𥴸
+ 0x25d39: "v\r\U00025d39", // 𥴹
+ 0x25d3a: "v\r\U00025d3a", // 𥴺
+ 0x25d3b: "v\r\U00025d3b", // 𥴻
+ 0x25d3c: "v\r\U00025d3c", // 𥴼
+ 0x25d3d: "v\r\U00025d3d", // 𥴽
+ 0x25d3e: "v\r\U00025d3e", // 𥴾
+ 0x25d3f: "v\r\U00025d3f", // 𥴿
+ 0x25d40: "v\r\U00025d40", // 𥵀
+ 0x25d41: "v\r\U00025d41", // 𥵁
+ 0x25d42: "v\r\U00025d42", // 𥵂
+ 0x25d43: "v\r\U00025d43", // 𥵃
+ 0x25d44: "v\r\U00025d44", // 𥵄
+ 0x25d45: "v\r\U00025d45", // 𥵅
+ 0x25d46: "v\r\U00025d46", // 𥵆
+ 0x25d47: "v\r\U00025d47", // 𥵇
+ 0x25d48: "v\r\U00025d48", // 𥵈
+ 0x25d49: "v\r\U00025d49", // 𥵉
+ 0x25d4a: "v\r\U00025d4a", // 𥵊
+ 0x25d4b: "v\r\U00025d4b", // 𥵋
+ 0x25d4c: "v\r\U00025d4c", // 𥵌
+ 0x25d4d: "v\r\U00025d4d", // 𥵍
+ 0x25d4e: "v\r\U00025d4e", // 𥵎
+ 0x25d4f: "v\r\U00025d4f", // 𥵏
+ 0x25d50: "v\r\U00025d50", // 𥵐
+ 0x25d51: "v\r\U00025d51", // 𥵑
+ 0x25d52: "v\r\U00025d52", // 𥵒
+ 0x25d53: "v\r\U00025d53", // 𥵓
+ 0x25d54: "v\r\U00025d54", // 𥵔
+ 0x25d55: "v\r\U00025d55", // 𥵕
+ 0x25d56: "v\r\U00025d56", // 𥵖
+ 0x25d57: "v\r\U00025d57", // 𥵗
+ 0x25d58: "v\r\U00025d58", // 𥵘
+ 0x25d59: "v\r\U00025d59", // 𥵙
+ 0x25d5a: "v\r\U00025d5a", // 𥵚
+ 0x25d5b: "v\r\U00025d5b", // 𥵛
+ 0x25d5c: "v\x0e\U00025d5c", // 𥵜
+ 0x25d5d: "v\x0e\U00025d5d", // 𥵝
+ 0x25d5e: "v\x0e\U00025d5e", // 𥵞
+ 0x25d5f: "v\x0e\U00025d5f", // 𥵟
+ 0x25d60: "v\x0e\U00025d60", // 𥵠
+ 0x25d61: "v\x0e\U00025d61", // 𥵡
+ 0x25d62: "v\x0e\U00025d62", // 𥵢
+ 0x25d63: "v\x0e\U00025d63", // 𥵣
+ 0x25d64: "v\x0e\U00025d64", // 𥵤
+ 0x25d65: "v\x0e\U00025d65", // 𥵥
+ 0x25d66: "v\x0e\U00025d66", // 𥵦
+ 0x25d67: "v\x0e\U00025d67", // 𥵧
+ 0x25d68: "v\x0e\U00025d68", // 𥵨
+ 0x25d69: "v\x0e\U00025d69", // 𥵩
+ 0x25d6a: "v\x0e\U00025d6a", // 𥵪
+ 0x25d6b: "v\x0e\U00025d6b", // 𥵫
+ 0x25d6c: "v\x0e\U00025d6c", // 𥵬
+ 0x25d6d: "v\x0e\U00025d6d", // 𥵭
+ 0x25d6e: "v\x0e\U00025d6e", // 𥵮
+ 0x25d6f: "v\x0e\U00025d6f", // 𥵯
+ 0x25d70: "v\x0e\U00025d70", // 𥵰
+ 0x25d71: "v\x0e\U00025d71", // 𥵱
+ 0x25d72: "v\x0e\U00025d72", // 𥵲
+ 0x25d73: "v\x0e\U00025d73", // 𥵳
+ 0x25d74: "v\x0e\U00025d74", // 𥵴
+ 0x25d75: "v\x0e\U00025d75", // 𥵵
+ 0x25d76: "v\x0e\U00025d76", // 𥵶
+ 0x25d77: "v\x0e\U00025d77", // 𥵷
+ 0x25d78: "v\x0e\U00025d78", // 𥵸
+ 0x25d79: "v\x0e\U00025d79", // 𥵹
+ 0x25d7a: "v\x0e\U00025d7a", // 𥵺
+ 0x25d7b: "v\x0e\U00025d7b", // 𥵻
+ 0x25d7c: "v\x0e\U00025d7c", // 𥵼
+ 0x25d7d: "v\x0e\U00025d7d", // 𥵽
+ 0x25d7e: "v\x0e\U00025d7e", // 𥵾
+ 0x25d7f: "v\x0e\U00025d7f", // 𥵿
+ 0x25d80: "v\x0e\U00025d80", // 𥶀
+ 0x25d81: "v\x0e\U00025d81", // 𥶁
+ 0x25d82: "v\x0e\U00025d82", // 𥶂
+ 0x25d83: "v\x0e\U00025d83", // 𥶃
+ 0x25d84: "v\x0e\U00025d84", // 𥶄
+ 0x25d85: "v\x0f\U00025d85", // 𥶅
+ 0x25d86: "v\x0f\U00025d86", // 𥶆
+ 0x25d87: "v\x0f\U00025d87", // 𥶇
+ 0x25d88: "v\x0f\U00025d88", // 𥶈
+ 0x25d89: "v\x0f\U00025d89", // 𥶉
+ 0x25d8a: "v\x0f\U00025d8a", // 𥶊
+ 0x25d8b: "v\x0f\U00025d8b", // 𥶋
+ 0x25d8c: "v\x0f\U00025d8c", // 𥶌
+ 0x25d8d: "v\x0f\U00025d8d", // 𥶍
+ 0x25d8e: "v\x0f\U00025d8e", // 𥶎
+ 0x25d8f: "v\x0f\U00025d8f", // 𥶏
+ 0x25d90: "v\x0f\U00025d90", // 𥶐
+ 0x25d91: "v\x0f\U00025d91", // 𥶑
+ 0x25d92: "v\x0f\U00025d92", // 𥶒
+ 0x25d93: "v\x0f\U00025d93", // 𥶓
+ 0x25d94: "v\x0f\U00025d94", // 𥶔
+ 0x25d95: "v\x0f\U00025d95", // 𥶕
+ 0x25d96: "v\x0f\U00025d96", // 𥶖
+ 0x25d97: "v\x0f\U00025d97", // 𥶗
+ 0x25d98: "v\x0f\U00025d98", // 𥶘
+ 0x25d99: "v\x0f\U00025d99", // 𥶙
+ 0x25d9a: "v\x0f\U00025d9a", // 𥶚
+ 0x25d9b: "v\x0f\U00025d9b", // 𥶛
+ 0x25d9c: "v\x0f\U00025d9c", // 𥶜
+ 0x25d9d: "v\x0f\U00025d9d", // 𥶝
+ 0x25d9e: "v\x0f\U00025d9e", // 𥶞
+ 0x25d9f: "v\x0f\U00025d9f", // 𥶟
+ 0x25da0: "v\x0f\U00025da0", // 𥶠
+ 0x25da1: "v\x0f\U00025da1", // 𥶡
+ 0x25da2: "v\x0f\U00025da2", // 𥶢
+ 0x25da3: "v\x0f\U00025da3", // 𥶣
+ 0x25da4: "v\x0f\U00025da4", // 𥶤
+ 0x25da5: "v\x0f\U00025da5", // 𥶥
+ 0x25da6: "v\x0f\U00025da6", // 𥶦
+ 0x25da7: "v\x0f\U00025da7", // 𥶧
+ 0x25da8: "v\x0f\U00025da8", // 𥶨
+ 0x25da9: "v\x0f\U00025da9", // 𥶩
+ 0x25daa: "v\x0f\U00025daa", // 𥶪
+ 0x25dab: "v\x0f\U00025dab", // 𥶫
+ 0x25dac: "v\x0f\U00025dac", // 𥶬
+ 0x25dad: "v\x0f\U00025dad", // 𥶭
+ 0x25dae: "v\x0f\U00025dae", // 𥶮
+ 0x25daf: "v\x0f\U00025daf", // 𥶯
+ 0x25db0: "v\x0f\U00025db0", // 𥶰
+ 0x25db1: "v\x0f\U00025db1", // 𥶱
+ 0x25db2: "v\x0f\U00025db2", // 𥶲
+ 0x25db3: "v\x0f\U00025db3", // 𥶳
+ 0x25db4: "v\x0f\U00025db4", // 𥶴
+ 0x25db5: "v\x10\U00025db5", // 𥶵
+ 0x25db6: "v\x10\U00025db6", // 𥶶
+ 0x25db7: "v\x10\U00025db7", // 𥶷
+ 0x25db8: "v\x10\U00025db8", // 𥶸
+ 0x25db9: "v\x10\U00025db9", // 𥶹
+ 0x25dba: "v\x10\U00025dba", // 𥶺
+ 0x25dbb: "v\x10\U00025dbb", // 𥶻
+ 0x25dbc: "v\x10\U00025dbc", // 𥶼
+ 0x25dbd: "v\x10\U00025dbd", // 𥶽
+ 0x25dbe: "v\x10\U00025dbe", // 𥶾
+ 0x25dbf: "v\x10\U00025dbf", // 𥶿
+ 0x25dc0: "v\x10\U00025dc0", // 𥷀
+ 0x25dc1: "v\x10\U00025dc1", // 𥷁
+ 0x25dc2: "v\x10\U00025dc2", // 𥷂
+ 0x25dc3: "v\x10\U00025dc3", // 𥷃
+ 0x25dc4: "v\x10\U00025dc4", // 𥷄
+ 0x25dc5: "v\x10\U00025dc5", // 𥷅
+ 0x25dc6: "v\x10\U00025dc6", // 𥷆
+ 0x25dc7: "v\x10\U00025dc7", // 𥷇
+ 0x25dc8: "v\x10\U00025dc8", // 𥷈
+ 0x25dc9: "v\x10\U00025dc9", // 𥷉
+ 0x25dca: "v\x10\U00025dca", // 𥷊
+ 0x25dcb: "v\x10\U00025dcb", // 𥷋
+ 0x25dcc: "v\x10\U00025dcc", // 𥷌
+ 0x25dcd: "v\x10\U00025dcd", // 𥷍
+ 0x25dce: "v\x10\U00025dce", // 𥷎
+ 0x25dcf: "v\x10\U00025dcf", // 𥷏
+ 0x25dd0: "v\x10\U00025dd0", // 𥷐
+ 0x25dd1: "v\x10\U00025dd1", // 𥷑
+ 0x25dd2: "v\x10\U00025dd2", // 𥷒
+ 0x25dd3: "v\x10\U00025dd3", // 𥷓
+ 0x25dd4: "v\x11\U00025dd4", // 𥷔
+ 0x25dd5: "v\x11\U00025dd5", // 𥷕
+ 0x25dd6: "v\x11\U00025dd6", // 𥷖
+ 0x25dd7: "v\x11\U00025dd7", // 𥷗
+ 0x25dd8: "v\x11\U00025dd8", // 𥷘
+ 0x25dd9: "v\x11\U00025dd9", // 𥷙
+ 0x25dda: "v\x11\U00025dda", // 𥷚
+ 0x25ddb: "v\x11\U00025ddb", // 𥷛
+ 0x25ddc: "v\x11\U00025ddc", // 𥷜
+ 0x25ddd: "v\x11\U00025ddd", // 𥷝
+ 0x25dde: "v\x11\U00025dde", // 𥷞
+ 0x25ddf: "v\x11\U00025ddf", // 𥷟
+ 0x25de0: "v\x11\U00025de0", // 𥷠
+ 0x25de1: "v\x11\U00025de1", // 𥷡
+ 0x25de2: "v\x11\U00025de2", // 𥷢
+ 0x25de3: "v\x11\U00025de3", // 𥷣
+ 0x25de4: "v\x11\U00025de4", // 𥷤
+ 0x25de5: "v\x11\U00025de5", // 𥷥
+ 0x25de6: "v\x11\U00025de6", // 𥷦
+ 0x25de7: "v\x11\U00025de7", // 𥷧
+ 0x25de8: "v\x12\U00025de8", // 𥷨
+ 0x25de9: "v\x12\U00025de9", // 𥷩
+ 0x25dea: "v\x12\U00025dea", // 𥷪
+ 0x25deb: "v\x12\U00025deb", // 𥷫
+ 0x25dec: "v\x12\U00025dec", // 𥷬
+ 0x25ded: "v\x12\U00025ded", // 𥷭
+ 0x25dee: "v\x12\U00025dee", // 𥷮
+ 0x25def: "v\x12\U00025def", // 𥷯
+ 0x25df0: "v\x12\U00025df0", // 𥷰
+ 0x25df1: "v\x12\U00025df1", // 𥷱
+ 0x25df2: "v\x12\U00025df2", // 𥷲
+ 0x25df3: "v\x12\U00025df3", // 𥷳
+ 0x25df4: "v\x12\U00025df4", // 𥷴
+ 0x25df5: "v\x12\U00025df5", // 𥷵
+ 0x25df6: "v\x12\U00025df6", // 𥷶
+ 0x25df7: "v\x12\U00025df7", // 𥷷
+ 0x25df8: "v\x12\U00025df8", // 𥷸
+ 0x25df9: "v\x12\U00025df9", // 𥷹
+ 0x25dfa: "v\x12\U00025dfa", // 𥷺
+ 0x25dfb: "v\x12\U00025dfb", // 𥷻
+ 0x25dfc: "v\x13\U00025dfc", // 𥷼
+ 0x25dfd: "v\x13\U00025dfd", // 𥷽
+ 0x25dfe: "v\x13\U00025dfe", // 𥷾
+ 0x25dff: "v\x13\U00025dff", // 𥷿
+ 0x25e00: "v\x13\U00025e00", // 𥸀
+ 0x25e01: "v\x13\U00025e01", // 𥸁
+ 0x25e02: "v\x13\U00025e02", // 𥸂
+ 0x25e03: "v\x13\U00025e03", // 𥸃
+ 0x25e04: "v\x13\U00025e04", // 𥸄
+ 0x25e05: "v\x13\U00025e05", // 𥸅
+ 0x25e06: "v\x13\U00025e06", // 𥸆
+ 0x25e07: "v\x13\U00025e07", // 𥸇
+ 0x25e08: "v\x14\U00025e08", // 𥸈
+ 0x25e09: "v\x14\U00025e09", // 𥸉
+ 0x25e0a: "v\x14\U00025e0a", // 𥸊
+ 0x25e0b: "v\x14\U00025e0b", // 𥸋
+ 0x25e0c: "v\x14\U00025e0c", // 𥸌
+ 0x25e0d: "v\x14\U00025e0d", // 𥸍
+ 0x25e0e: "v\x14\U00025e0e", // 𥸎
+ 0x25e0f: "v\x14\U00025e0f", // 𥸏
+ 0x25e10: "v\x15\U00025e10", // 𥸐
+ 0x25e11: "v\x15\U00025e11", // 𥸑
+ 0x25e12: "v\x15\U00025e12", // 𥸒
+ 0x25e13: "v\x15\U00025e13", // 𥸓
+ 0x25e14: "v\x15\U00025e14", // 𥸔
+ 0x25e15: "v\x15\U00025e15", // 𥸕
+ 0x25e16: "v\x15\U00025e16", // 𥸖
+ 0x25e17: "v\x16\U00025e17", // 𥸗
+ 0x25e18: "v\x17\U00025e18", // 𥸘
+ 0x25e19: "v\x17\U00025e19", // 𥸙
+ 0x25e1a: "v\x16\U00025e1a", // 𥸚
+ 0x25e1b: "v\x16\U00025e1b", // 𥸛
+ 0x25e1c: "v\x16\U00025e1c", // 𥸜
+ 0x25e1d: "v\x16\U00025e1d", // 𥸝
+ 0x25e1e: "v\x17\U00025e1e", // 𥸞
+ 0x25e1f: "v\x17\U00025e1f", // 𥸟
+ 0x25e20: "v\x17\U00025e20", // 𥸠
+ 0x25e21: "v\x18\U00025e21", // 𥸡
+ 0x25e22: "v\x18\U00025e22", // 𥸢
+ 0x25e23: "v\x19\U00025e23", // 𥸣
+ 0x25e24: "v\x1a\U00025e24", // 𥸤
+ 0x25e25: "w\x01\U00025e25", // 𥸥
+ 0x25e26: "w\x01\U00025e26", // 𥸦
+ 0x25e27: "w\x02\U00025e27", // 𥸧
+ 0x25e28: "w\x02\U00025e28", // 𥸨
+ 0x25e29: "w\x02\U00025e29", // 𥸩
+ 0x25e2a: "w\x02\U00025e2a", // 𥸪
+ 0x25e2b: "w\x03\U00025e2b", // 𥸫
+ 0x25e2c: "w\x03\U00025e2c", // 𥸬
+ 0x25e2d: "w\x03\U00025e2d", // 𥸭
+ 0x25e2e: "w\x03\U00025e2e", // 𥸮
+ 0x25e2f: "w\x03\U00025e2f", // 𥸯
+ 0x25e30: "w\x03\U00025e30", // 𥸰
+ 0x25e31: "w\x03\U00025e31", // 𥸱
+ 0x25e32: "w\x03\U00025e32", // 𥸲
+ 0x25e33: "w\x04\U00025e33", // 𥸳
+ 0x25e34: "w\x04\U00025e34", // 𥸴
+ 0x25e35: "w\x04\U00025e35", // 𥸵
+ 0x25e36: "w\x04\U00025e36", // 𥸶
+ 0x25e37: "w\x04\U00025e37", // 𥸷
+ 0x25e38: "w\x04\U00025e38", // 𥸸
+ 0x25e39: "w\x04\U00025e39", // 𥸹
+ 0x25e3a: "w\x04\U00025e3a", // 𥸺
+ 0x25e3b: "w\x04\U00025e3b", // 𥸻
+ 0x25e3c: "w\x04\U00025e3c", // 𥸼
+ 0x25e3d: "w\x04\U00025e3d", // 𥸽
+ 0x25e3e: "w\x04\U00025e3e", // 𥸾
+ 0x25e3f: "w\x04\U00025e3f", // 𥸿
+ 0x25e40: "w\x04\U00025e40", // 𥹀
+ 0x25e41: "w\x05\U00025e41", // 𥹁
+ 0x25e42: "w\x05\U00025e42", // 𥹂
+ 0x25e43: "w\x05\U00025e43", // 𥹃
+ 0x25e44: "w\x05\U00025e44", // 𥹄
+ 0x25e45: "w\x05\U00025e45", // 𥹅
+ 0x25e46: "w\x05\U00025e46", // 𥹆
+ 0x25e47: "w\x05\U00025e47", // 𥹇
+ 0x25e48: "w\x05\U00025e48", // 𥹈
+ 0x25e49: "w\x05\U00025e49", // 𥹉
+ 0x25e4a: "w\x05\U00025e4a", // 𥹊
+ 0x25e4b: "w\x05\U00025e4b", // 𥹋
+ 0x25e4c: "w\x05\U00025e4c", // 𥹌
+ 0x25e4d: "w\x05\U00025e4d", // 𥹍
+ 0x25e4e: "w\x05\U00025e4e", // 𥹎
+ 0x25e4f: "w\x05\U00025e4f", // 𥹏
+ 0x25e50: "w\x05\U00025e50", // 𥹐
+ 0x25e51: "w\x05\U00025e51", // 𥹑
+ 0x25e52: "w\x05\U00025e52", // 𥹒
+ 0x25e53: "w\x05\U00025e53", // 𥹓
+ 0x25e54: "w\x05\U00025e54", // 𥹔
+ 0x25e55: "w\x05\U00025e55", // 𥹕
+ 0x25e56: "w\x05\U00025e56", // 𥹖
+ 0x25e57: "w\x06\U00025e57", // 𥹗
+ 0x25e58: "w\x05\U00025e58", // 𥹘
+ 0x25e59: "w\x05\U00025e59", // 𥹙
+ 0x25e5a: "w\x06\U00025e5a", // 𥹚
+ 0x25e5b: "w\x06\U00025e5b", // 𥹛
+ 0x25e5c: "w\x06\U00025e5c", // 𥹜
+ 0x25e5d: "w\x06\U00025e5d", // 𥹝
+ 0x25e5e: "w\x06\U00025e5e", // 𥹞
+ 0x25e5f: "w\x06\U00025e5f", // 𥹟
+ 0x25e60: "w\x06\U00025e60", // 𥹠
+ 0x25e61: "w\x06\U00025e61", // 𥹡
+ 0x25e62: "w\x06\U00025e62", // 𥹢
+ 0x25e63: "w\x06\U00025e63", // 𥹣
+ 0x25e64: "w\x06\U00025e64", // 𥹤
+ 0x25e65: "w\x06\U00025e65", // 𥹥
+ 0x25e66: "w\x06\U00025e66", // 𥹦
+ 0x25e67: "w\x06\U00025e67", // 𥹧
+ 0x25e68: "w\x06\U00025e68", // 𥹨
+ 0x25e69: "w\x06\U00025e69", // 𥹩
+ 0x25e6a: "w\x06\U00025e6a", // 𥹪
+ 0x25e6b: "w\x06\U00025e6b", // 𥹫
+ 0x25e6c: "w\x06\U00025e6c", // 𥹬
+ 0x25e6d: "w\x06\U00025e6d", // 𥹭
+ 0x25e6e: "w\x06\U00025e6e", // 𥹮
+ 0x25e6f: "w\x06\U00025e6f", // 𥹯
+ 0x25e70: "w\x06\U00025e70", // 𥹰
+ 0x25e71: "w\x05\U00025e71", // 𥹱
+ 0x25e72: "w\a\U00025e72", // 𥹲
+ 0x25e73: "w\a\U00025e73", // 𥹳
+ 0x25e74: "w\a\U00025e74", // 𥹴
+ 0x25e75: "w\a\U00025e75", // 𥹵
+ 0x25e76: "w\a\U00025e76", // 𥹶
+ 0x25e77: "w\a\U00025e77", // 𥹷
+ 0x25e78: "w\a\U00025e78", // 𥹸
+ 0x25e79: "w\a\U00025e79", // 𥹹
+ 0x25e7a: "w\a\U00025e7a", // 𥹺
+ 0x25e7b: "w\a\U00025e7b", // 𥹻
+ 0x25e7c: "w\a\U00025e7c", // 𥹼
+ 0x25e7d: "w\a\U00025e7d", // 𥹽
+ 0x25e7e: "w\a\U00025e7e", // 𥹾
+ 0x25e7f: "w\a\U00025e7f", // 𥹿
+ 0x25e80: "w\a\U00025e80", // 𥺀
+ 0x25e81: "w\a\U00025e81", // 𥺁
+ 0x25e82: "w\a\U00025e82", // 𥺂
+ 0x25e83: "w\a\U00025e83", // 𥺃
+ 0x25e84: "w\a\U00025e84", // 𥺄
+ 0x25e85: "w\a\U00025e85", // 𥺅
+ 0x25e86: "w\a\U00025e86", // 𥺆
+ 0x25e87: "w\a\U00025e87", // 𥺇
+ 0x25e88: "w\a\U00025e88", // 𥺈
+ 0x25e89: "w\a\U00025e89", // 𥺉
+ 0x25e8a: "w\a\U00025e8a", // 𥺊
+ 0x25e8b: "w\a\U00025e8b", // 𥺋
+ 0x25e8c: "w\a\U00025e8c", // 𥺌
+ 0x25e8d: "w\a\U00025e8d", // 𥺍
+ 0x25e8e: "w\a\U00025e8e", // 𥺎
+ 0x25e8f: "w\a\U00025e8f", // 𥺏
+ 0x25e90: "w\a\U00025e90", // 𥺐
+ 0x25e91: "w\a\U00025e91", // 𥺑
+ 0x25e92: "w\a\U00025e92", // 𥺒
+ 0x25e93: "w\a\U00025e93", // 𥺓
+ 0x25e94: "w\a\U00025e94", // 𥺔
+ 0x25e95: "w\a\U00025e95", // 𥺕
+ 0x25e96: "w\a\U00025e96", // 𥺖
+ 0x25e97: "w\a\U00025e97", // 𥺗
+ 0x25e98: "w\b\U00025e98", // 𥺘
+ 0x25e99: "w\b\U00025e99", // 𥺙
+ 0x25e9a: "w\b\U00025e9a", // 𥺚
+ 0x25e9b: "w\b\U00025e9b", // 𥺛
+ 0x25e9c: "w\b\U00025e9c", // 𥺜
+ 0x25e9d: "w\b\U00025e9d", // 𥺝
+ 0x25e9e: "w\b\U00025e9e", // 𥺞
+ 0x25e9f: "w\b\U00025e9f", // 𥺟
+ 0x25ea0: "w\b\U00025ea0", // 𥺠
+ 0x25ea1: "w\b\U00025ea1", // 𥺡
+ 0x25ea2: "w\b\U00025ea2", // 𥺢
+ 0x25ea3: "w\b\U00025ea3", // 𥺣
+ 0x25ea4: "w\b\U00025ea4", // 𥺤
+ 0x25ea5: "w\b\U00025ea5", // 𥺥
+ 0x25ea6: "w\b\U00025ea6", // 𥺦
+ 0x25ea7: "w\b\U00025ea7", // 𥺧
+ 0x25ea8: "w\b\U00025ea8", // 𥺨
+ 0x25ea9: "w\b\U00025ea9", // 𥺩
+ 0x25eaa: "w\b\U00025eaa", // 𥺪
+ 0x25eab: "w\b\U00025eab", // 𥺫
+ 0x25eac: "w\b\U00025eac", // 𥺬
+ 0x25ead: "w\b\U00025ead", // 𥺭
+ 0x25eae: "w\b\U00025eae", // 𥺮
+ 0x25eaf: "w\b\U00025eaf", // 𥺯
+ 0x25eb0: "w\b\U00025eb0", // 𥺰
+ 0x25eb1: "w\b\U00025eb1", // 𥺱
+ 0x25eb2: "w\b\U00025eb2", // 𥺲
+ 0x25eb3: "w\b\U00025eb3", // 𥺳
+ 0x25eb4: "w\b\U00025eb4", // 𥺴
+ 0x25eb5: "w\b\U00025eb5", // 𥺵
+ 0x25eb6: "w\b\U00025eb6", // 𥺶
+ 0x25eb7: "w\b\U00025eb7", // 𥺷
+ 0x25eb8: "w\b\U00025eb8", // 𥺸
+ 0x25eb9: "w\b\U00025eb9", // 𥺹
+ 0x25eba: "w\b\U00025eba", // 𥺺
+ 0x25ebb: "w\b\U00025ebb", // 𥺻
+ 0x25ebc: "w\b\U00025ebc", // 𥺼
+ 0x25ebd: "w\b\U00025ebd", // 𥺽
+ 0x25ebe: "w\b\U00025ebe", // 𥺾
+ 0x25ebf: "w\b\U00025ebf", // 𥺿
+ 0x25ec0: "w\b\U00025ec0", // 𥻀
+ 0x25ec1: "w\t\U00025ec1", // 𥻁
+ 0x25ec2: "w\t\U00025ec2", // 𥻂
+ 0x25ec3: "w\t\U00025ec3", // 𥻃
+ 0x25ec4: "w\t\U00025ec4", // 𥻄
+ 0x25ec5: "w\t\U00025ec5", // 𥻅
+ 0x25ec6: "w\t\U00025ec6", // 𥻆
+ 0x25ec7: "w\t\U00025ec7", // 𥻇
+ 0x25ec8: "w\t\U00025ec8", // 𥻈
+ 0x25ec9: "w\t\U00025ec9", // 𥻉
+ 0x25eca: "w\t\U00025eca", // 𥻊
+ 0x25ecb: "w\t\U00025ecb", // 𥻋
+ 0x25ecc: "w\t\U00025ecc", // 𥻌
+ 0x25ecd: "w\t\U00025ecd", // 𥻍
+ 0x25ece: "w\t\U00025ece", // 𥻎
+ 0x25ecf: "w\t\U00025ecf", // 𥻏
+ 0x25ed0: "w\t\U00025ed0", // 𥻐
+ 0x25ed1: "w\t\U00025ed1", // 𥻑
+ 0x25ed2: "w\t\U00025ed2", // 𥻒
+ 0x25ed3: "w\t\U00025ed3", // 𥻓
+ 0x25ed4: "w\t\U00025ed4", // 𥻔
+ 0x25ed5: "w\t\U00025ed5", // 𥻕
+ 0x25ed6: "w\t\U00025ed6", // 𥻖
+ 0x25ed7: "w\t\U00025ed7", // 𥻗
+ 0x25ed8: "w\t\U00025ed8", // 𥻘
+ 0x25ed9: "w\t\U00025ed9", // 𥻙
+ 0x25eda: "w\t\U00025eda", // 𥻚
+ 0x25edb: "w\t\U00025edb", // 𥻛
+ 0x25edc: "w\t\U00025edc", // 𥻜
+ 0x25edd: "w\t\U00025edd", // 𥻝
+ 0x25ede: "w\t\U00025ede", // 𥻞
+ 0x25edf: "w\t\U00025edf", // 𥻟
+ 0x25ee0: "w\t\U00025ee0", // 𥻠
+ 0x25ee1: "w\t\U00025ee1", // 𥻡
+ 0x25ee2: "w\t\U00025ee2", // 𥻢
+ 0x25ee3: "w\t\U00025ee3", // 𥻣
+ 0x25ee4: "w\n\U00025ee4", // 𥻤
+ 0x25ee5: "w\n\U00025ee5", // 𥻥
+ 0x25ee6: "w\n\U00025ee6", // 𥻦
+ 0x25ee7: "w\n\U00025ee7", // 𥻧
+ 0x25ee8: "w\n\U00025ee8", // 𥻨
+ 0x25ee9: "w\n\U00025ee9", // 𥻩
+ 0x25eea: "w\n\U00025eea", // 𥻪
+ 0x25eeb: "w\n\U00025eeb", // 𥻫
+ 0x25eec: "w\n\U00025eec", // 𥻬
+ 0x25eed: "w\n\U00025eed", // 𥻭
+ 0x25eee: "w\n\U00025eee", // 𥻮
+ 0x25eef: "w\n\U00025eef", // 𥻯
+ 0x25ef0: "w\n\U00025ef0", // 𥻰
+ 0x25ef1: "w\n\U00025ef1", // 𥻱
+ 0x25ef2: "w\n\U00025ef2", // 𥻲
+ 0x25ef3: "w\n\U00025ef3", // 𥻳
+ 0x25ef4: "w\n\U00025ef4", // 𥻴
+ 0x25ef5: "w\n\U00025ef5", // 𥻵
+ 0x25ef6: "w\n\U00025ef6", // 𥻶
+ 0x25ef7: "w\n\U00025ef7", // 𥻷
+ 0x25ef8: "w\n\U00025ef8", // 𥻸
+ 0x25ef9: "w\n\U00025ef9", // 𥻹
+ 0x25efa: "w\n\U00025efa", // 𥻺
+ 0x25efb: "w\n\U00025efb", // 𥻻
+ 0x25efc: "w\n\U00025efc", // 𥻼
+ 0x25efd: "w\n\U00025efd", // 𥻽
+ 0x25efe: "w\n\U00025efe", // 𥻾
+ 0x25eff: "w\v\U00025eff", // 𥻿
+ 0x25f00: "w\v\U00025f00", // 𥼀
+ 0x25f01: "w\v\U00025f01", // 𥼁
+ 0x25f02: "w\v\U00025f02", // 𥼂
+ 0x25f03: "w\v\U00025f03", // 𥼃
+ 0x25f04: "w\v\U00025f04", // 𥼄
+ 0x25f05: "w\v\U00025f05", // 𥼅
+ 0x25f06: "w\v\U00025f06", // 𥼆
+ 0x25f07: "w\v\U00025f07", // 𥼇
+ 0x25f08: "w\v\U00025f08", // 𥼈
+ 0x25f09: "w\v\U00025f09", // 𥼉
+ 0x25f0a: "w\v\U00025f0a", // 𥼊
+ 0x25f0b: "w\v\U00025f0b", // 𥼋
+ 0x25f0c: "w\v\U00025f0c", // 𥼌
+ 0x25f0d: "w\v\U00025f0d", // 𥼍
+ 0x25f0e: "w\v\U00025f0e", // 𥼎
+ 0x25f0f: "w\v\U00025f0f", // 𥼏
+ 0x25f10: "w\v\U00025f10", // 𥼐
+ 0x25f11: "w\v\U00025f11", // 𥼑
+ 0x25f12: "w\v\U00025f12", // 𥼒
+ 0x25f13: "w\v\U00025f13", // 𥼓
+ 0x25f14: "w\v\U00025f14", // 𥼔
+ 0x25f15: "w\v\U00025f15", // 𥼕
+ 0x25f16: "w\v\U00025f16", // 𥼖
+ 0x25f17: "w\f\U00025f17", // 𥼗
+ 0x25f18: "w\f\U00025f18", // 𥼘
+ 0x25f19: "w\f\U00025f19", // 𥼙
+ 0x25f1a: "w\f\U00025f1a", // 𥼚
+ 0x25f1b: "w\f\U00025f1b", // 𥼛
+ 0x25f1c: "w\f\U00025f1c", // 𥼜
+ 0x25f1d: "w\f\U00025f1d", // 𥼝
+ 0x25f1e: "w\f\U00025f1e", // 𥼞
+ 0x25f1f: "w\f\U00025f1f", // 𥼟
+ 0x25f20: "w\f\U00025f20", // 𥼠
+ 0x25f21: "w\f\U00025f21", // 𥼡
+ 0x25f22: "w\f\U00025f22", // 𥼢
+ 0x25f23: "w\f\U00025f23", // 𥼣
+ 0x25f24: "w\f\U00025f24", // 𥼤
+ 0x25f25: "w\f\U00025f25", // 𥼥
+ 0x25f26: "w\f\U00025f26", // 𥼦
+ 0x25f27: "w\f\U00025f27", // 𥼧
+ 0x25f28: "w\f\U00025f28", // 𥼨
+ 0x25f29: "w\f\U00025f29", // 𥼩
+ 0x25f2a: "w\f\U00025f2a", // 𥼪
+ 0x25f2b: "w\f\U00025f2b", // 𥼫
+ 0x25f2c: "w\f\U00025f2c", // 𥼬
+ 0x25f2d: "w\f\U00025f2d", // 𥼭
+ 0x25f2e: "w\f\U00025f2e", // 𥼮
+ 0x25f2f: "w\f\U00025f2f", // 𥼯
+ 0x25f30: "w\f\U00025f30", // 𥼰
+ 0x25f31: "w\f\U00025f31", // 𥼱
+ 0x25f32: "w\f\U00025f32", // 𥼲
+ 0x25f33: "w\f\U00025f33", // 𥼳
+ 0x25f34: "w\f\U00025f34", // 𥼴
+ 0x25f35: "w\f\U00025f35", // 𥼵
+ 0x25f36: "w\r\U00025f36", // 𥼶
+ 0x25f37: "w\r\U00025f37", // 𥼷
+ 0x25f38: "w\r\U00025f38", // 𥼸
+ 0x25f39: "w\r\U00025f39", // 𥼹
+ 0x25f3a: "w\r\U00025f3a", // 𥼺
+ 0x25f3b: "w\r\U00025f3b", // 𥼻
+ 0x25f3c: "w\r\U00025f3c", // 𥼼
+ 0x25f3d: "w\r\U00025f3d", // 𥼽
+ 0x25f3e: "w\r\U00025f3e", // 𥼾
+ 0x25f3f: "w\r\U00025f3f", // 𥼿
+ 0x25f40: "w\r\U00025f40", // 𥽀
+ 0x25f41: "w\r\U00025f41", // 𥽁
+ 0x25f42: "w\r\U00025f42", // 𥽂
+ 0x25f43: "w\r\U00025f43", // 𥽃
+ 0x25f44: "w\r\U00025f44", // 𥽄
+ 0x25f45: "w\r\U00025f45", // 𥽅
+ 0x25f46: "w\r\U00025f46", // 𥽆
+ 0x25f47: "w\r\U00025f47", // 𥽇
+ 0x25f48: "w\r\U00025f48", // 𥽈
+ 0x25f49: "w\r\U00025f49", // 𥽉
+ 0x25f4a: "w\r\U00025f4a", // 𥽊
+ 0x25f4b: "w\r\U00025f4b", // 𥽋
+ 0x25f4c: "w\r\U00025f4c", // 𥽌
+ 0x25f4d: "w\r\U00025f4d", // 𥽍
+ 0x25f4e: "w\r\U00025f4e", // 𥽎
+ 0x25f4f: "w\x0e\U00025f4f", // 𥽏
+ 0x25f50: "w\x0e\U00025f50", // 𥽐
+ 0x25f51: "w\x0e\U00025f51", // 𥽑
+ 0x25f52: "w\x0e\U00025f52", // 𥽒
+ 0x25f53: "w\x0e\U00025f53", // 𥽓
+ 0x25f54: "w\x0e\U00025f54", // 𥽔
+ 0x25f55: "w\x0e\U00025f55", // 𥽕
+ 0x25f56: "w\x0e\U00025f56", // 𥽖
+ 0x25f57: "w\x0f\U00025f57", // 𥽗
+ 0x25f58: "w\x0f\U00025f58", // 𥽘
+ 0x25f59: "w\x0f\U00025f59", // 𥽙
+ 0x25f5a: "w\x0f\U00025f5a", // 𥽚
+ 0x25f5b: "w\x0f\U00025f5b", // 𥽛
+ 0x25f5c: "w\x0f\U00025f5c", // 𥽜
+ 0x25f5d: "w\x0f\U00025f5d", // 𥽝
+ 0x25f5e: "w\x0f\U00025f5e", // 𥽞
+ 0x25f5f: "w\x0f\U00025f5f", // 𥽟
+ 0x25f60: "w\x0f\U00025f60", // 𥽠
+ 0x25f61: "w\x10\U00025f61", // 𥽡
+ 0x25f62: "w\x0f\U00025f62", // 𥽢
+ 0x25f63: "w\x0f\U00025f63", // 𥽣
+ 0x25f64: "w\x10\U00025f64", // 𥽤
+ 0x25f65: "w\x10\U00025f65", // 𥽥
+ 0x25f66: "w\x10\U00025f66", // 𥽦
+ 0x25f67: "w\x10\U00025f67", // 𥽧
+ 0x25f68: "w\x10\U00025f68", // 𥽨
+ 0x25f69: "w\x10\U00025f69", // 𥽩
+ 0x25f6a: "w\x10\U00025f6a", // 𥽪
+ 0x25f6b: "w\x10\U00025f6b", // 𥽫
+ 0x25f6c: "w\x11\U00025f6c", // 𥽬
+ 0x25f6d: "w\x11\U00025f6d", // 𥽭
+ 0x25f6e: "w\x11\U00025f6e", // 𥽮
+ 0x25f6f: "w\x11\U00025f6f", // 𥽯
+ 0x25f70: "w\x11\U00025f70", // 𥽰
+ 0x25f71: "w\x12\U00025f71", // 𥽱
+ 0x25f72: "w\x12\U00025f72", // 𥽲
+ 0x25f73: "w\x12\U00025f73", // 𥽳
+ 0x25f74: "w\x12\U00025f74", // 𥽴
+ 0x25f75: "w\x12\U00025f75", // 𥽵
+ 0x25f76: "w\x13\U00025f76", // 𥽶
+ 0x25f77: "w\x13\U00025f77", // 𥽷
+ 0x25f78: "w\x13\U00025f78", // 𥽸
+ 0x25f79: "w\x13\U00025f79", // 𥽹
+ 0x25f7a: "w\x13\U00025f7a", // 𥽺
+ 0x25f7b: "w\x14\U00025f7b", // 𥽻
+ 0x25f7c: "w\x14\U00025f7c", // 𥽼
+ 0x25f7d: "w\x14\U00025f7d", // 𥽽
+ 0x25f7e: "w\x14\U00025f7e", // 𥽾
+ 0x25f7f: "w\x14\U00025f7f", // 𥽿
+ 0x25f80: "w\x15\U00025f80", // 𥾀
+ 0x25f81: "w\x15\U00025f81", // 𥾁
+ 0x25f82: "w\x18\U00025f82", // 𥾂
+ 0x25f83: "w\x19\U00025f83", // 𥾃
+ 0x25f84: "w\x1b\U00025f84", // 𥾄
+ 0x25f85: "x\x02\U00025f85", // 𥾅
+ 0x25f86: "x\x02\U00025f86", // 𥾆
+ 0x25f87: "x\x02\U00025f87", // 𥾇
+ 0x25f88: "x\x02\U00025f88", // 𥾈
+ 0x25f89: "x\x02\U00025f89", // 𥾉
+ 0x25f8a: "x\x02\U00025f8a", // 𥾊
+ 0x25f8b: "x\x02\U00025f8b", // 𥾋
+ 0x25f8c: "x\x03\U00025f8c", // 𥾌
+ 0x25f8d: "x\x03\U00025f8d", // 𥾍
+ 0x25f8e: "x\x03\U00025f8e", // 𥾎
+ 0x25f8f: "x\x03\U00025f8f", // 𥾏
+ 0x25f90: "x\x03\U00025f90", // 𥾐
+ 0x25f91: "x\x03\U00025f91", // 𥾑
+ 0x25f92: "x\x03\U00025f92", // 𥾒
+ 0x25f93: "x\x03\U00025f93", // 𥾓
+ 0x25f94: "x\x03\U00025f94", // 𥾔
+ 0x25f95: "x\x03\U00025f95", // 𥾕
+ 0x25f96: "x\x03\U00025f96", // 𥾖
+ 0x25f97: "x\x03\U00025f97", // 𥾗
+ 0x25f98: "x\x03\U00025f98", // 𥾘
+ 0x25f99: "x\x04\U00025f99", // 𥾙
+ 0x25f9a: "x\x04\U00025f9a", // 𥾚
+ 0x25f9b: "x\x04\U00025f9b", // 𥾛
+ 0x25f9c: "x\x04\U00025f9c", // 𥾜
+ 0x25f9d: "x\x04\U00025f9d", // 𥾝
+ 0x25f9e: "x\x04\U00025f9e", // 𥾞
+ 0x25f9f: "x\x04\U00025f9f", // 𥾟
+ 0x25fa0: "x\x04\U00025fa0", // 𥾠
+ 0x25fa1: "x\x04\U00025fa1", // 𥾡
+ 0x25fa2: "x\x04\U00025fa2", // 𥾢
+ 0x25fa3: "x\x04\U00025fa3", // 𥾣
+ 0x25fa4: "x\x04\U00025fa4", // 𥾤
+ 0x25fa5: "x\x04\U00025fa5", // 𥾥
+ 0x25fa6: "x\x04\U00025fa6", // 𥾦
+ 0x25fa7: "x\x04\U00025fa7", // 𥾧
+ 0x25fa8: "x\x04\U00025fa8", // 𥾨
+ 0x25fa9: "x\x04\U00025fa9", // 𥾩
+ 0x25faa: "x\x04\U00025faa", // 𥾪
+ 0x25fab: "x\x04\U00025fab", // 𥾫
+ 0x25fac: "x\x04\U00025fac", // 𥾬
+ 0x25fad: "x\x04\U00025fad", // 𥾭
+ 0x25fae: "x\x04\U00025fae", // 𥾮
+ 0x25faf: "x\x04\U00025faf", // 𥾯
+ 0x25fb0: "x\x04\U00025fb0", // 𥾰
+ 0x25fb1: "x\x04\U00025fb1", // 𥾱
+ 0x25fb2: "x\x04\U00025fb2", // 𥾲
+ 0x25fb3: "x\x04\U00025fb3", // 𥾳
+ 0x25fb4: "x\x04\U00025fb4", // 𥾴
+ 0x25fb5: "x\x04\U00025fb5", // 𥾵
+ 0x25fb6: "x\x04\U00025fb6", // 𥾶
+ 0x25fb7: "x\x04\U00025fb7", // 𥾷
+ 0x25fb8: "x\x04\U00025fb8", // 𥾸
+ 0x25fb9: "x\x04\U00025fb9", // 𥾹
+ 0x25fba: "x\x04\U00025fba", // 𥾺
+ 0x25fbb: "x\x04\U00025fbb", // 𥾻
+ 0x25fbc: "x\x04\U00025fbc", // 𥾼
+ 0x25fbd: "x\x04\U00025fbd", // 𥾽
+ 0x25fbe: "x\x04\U00025fbe", // 𥾾
+ 0x25fbf: "x\x04\U00025fbf", // 𥾿
+ 0x25fc0: "x\x04\U00025fc0", // 𥿀
+ 0x25fc1: "x\x04\U00025fc1", // 𥿁
+ 0x25fc2: "x\x04\U00025fc2", // 𥿂
+ 0x25fc3: "x\x05\U00025fc3", // 𥿃
+ 0x25fc4: "x\x05\U00025fc4", // 𥿄
+ 0x25fc5: "x\x05\U00025fc5", // 𥿅
+ 0x25fc6: "x\x05\U00025fc6", // 𥿆
+ 0x25fc7: "x\x05\U00025fc7", // 𥿇
+ 0x25fc8: "x\x05\U00025fc8", // 𥿈
+ 0x25fc9: "x\x05\U00025fc9", // 𥿉
+ 0x25fca: "x\x05\U00025fca", // 𥿊
+ 0x25fcb: "x\x05\U00025fcb", // 𥿋
+ 0x25fcc: "x\x05\U00025fcc", // 𥿌
+ 0x25fcd: "x\x05\U00025fcd", // 𥿍
+ 0x25fce: "x\x05\U00025fce", // 𥿎
+ 0x25fcf: "x\x05\U00025fcf", // 𥿏
+ 0x25fd0: "x\x05\U00025fd0", // 𥿐
+ 0x25fd1: "x\x05\U00025fd1", // 𥿑
+ 0x25fd2: "x\x05\U00025fd2", // 𥿒
+ 0x25fd3: "x\x05\U00025fd3", // 𥿓
+ 0x25fd4: "x\x05\U00025fd4", // 𥿔
+ 0x25fd5: "x\x05\U00025fd5", // 𥿕
+ 0x25fd6: "x\x05\U00025fd6", // 𥿖
+ 0x25fd7: "x\x05\U00025fd7", // 𥿗
+ 0x25fd8: "x\x05\U00025fd8", // 𥿘
+ 0x25fd9: "x\x05\U00025fd9", // 𥿙
+ 0x25fda: "x\x05\U00025fda", // 𥿚
+ 0x25fdb: "x\x05\U00025fdb", // 𥿛
+ 0x25fdc: "x\x05\U00025fdc", // 𥿜
+ 0x25fdd: "x\x05\U00025fdd", // 𥿝
+ 0x25fde: "x\x05\U00025fde", // 𥿞
+ 0x25fdf: "x\x05\U00025fdf", // 𥿟
+ 0x25fe0: "x\x05\U00025fe0", // 𥿠
+ 0x25fe1: "x\x05\U00025fe1", // 𥿡
+ 0x25fe2: "x\x05\U00025fe2", // 𥿢
+ 0x25fe3: "x\x05\U00025fe3", // 𥿣
+ 0x25fe4: "x\x05\U00025fe4", // 𥿤
+ 0x25fe5: "x\x05\U00025fe5", // 𥿥
+ 0x25fe6: "x\x06\U00025fe6", // 𥿦
+ 0x25fe7: "x\x06\U00025fe7", // 𥿧
+ 0x25fe8: "x\x06\U00025fe8", // 𥿨
+ 0x25fe9: "x\x06\U00025fe9", // 𥿩
+ 0x25fea: "x\x06\U00025fea", // 𥿪
+ 0x25feb: "x\x06\U00025feb", // 𥿫
+ 0x25fec: "x\x06\U00025fec", // 𥿬
+ 0x25fed: "x\x06\U00025fed", // 𥿭
+ 0x25fee: "x\x06\U00025fee", // 𥿮
+ 0x25fef: "x\x06\U00025fef", // 𥿯
+ 0x25ff0: "x\x06\U00025ff0", // 𥿰
+ 0x25ff1: "x\x06\U00025ff1", // 𥿱
+ 0x25ff2: "x\x06\U00025ff2", // 𥿲
+ 0x25ff3: "x\x06\U00025ff3", // 𥿳
+ 0x25ff4: "x\x06\U00025ff4", // 𥿴
+ 0x25ff5: "x\x06\U00025ff5", // 𥿵
+ 0x25ff6: "x\x06\U00025ff6", // 𥿶
+ 0x25ff7: "x\x06\U00025ff7", // 𥿷
+ 0x25ff8: "x\x06\U00025ff8", // 𥿸
+ 0x25ff9: "x\x06\U00025ff9", // 𥿹
+ 0x25ffa: "x\x06\U00025ffa", // 𥿺
+ 0x25ffb: "x\x06\U00025ffb", // 𥿻
+ 0x25ffc: "x\x06\U00025ffc", // 𥿼
+ 0x25ffd: "x\x06\U00025ffd", // 𥿽
+ 0x25ffe: "x\x06\U00025ffe", // 𥿾
+ 0x25fff: "x\x06\U00025fff", // 𥿿
+ 0x26000: "x\x06\U00026000", // 𦀀
+ 0x26001: "x\x06\U00026001", // 𦀁
+ 0x26002: "x\x06\U00026002", // 𦀂
+ 0x26003: "x\x06\U00026003", // 𦀃
+ 0x26004: "x\x06\U00026004", // 𦀄
+ 0x26005: "x\x06\U00026005", // 𦀅
+ 0x26006: "x\x06\U00026006", // 𦀆
+ 0x26007: "x\x06\U00026007", // 𦀇
+ 0x26008: "x\x06\U00026008", // 𦀈
+ 0x26009: "x\x06\U00026009", // 𦀉
+ 0x2600a: "x\x06\U0002600a", // 𦀊
+ 0x2600b: "x\x06\U0002600b", // 𦀋
+ 0x2600c: "x\x06\U0002600c", // 𦀌
+ 0x2600d: "x\x06\U0002600d", // 𦀍
+ 0x2600e: "x\x06\U0002600e", // 𦀎
+ 0x2600f: "x\x06\U0002600f", // 𦀏
+ 0x26010: "x\x06\U00026010", // 𦀐
+ 0x26011: "x\x06\U00026011", // 𦀑
+ 0x26012: "x\a\U00026012", // 𦀒
+ 0x26013: "x\a\U00026013", // 𦀓
+ 0x26014: "x\a\U00026014", // 𦀔
+ 0x26015: "x\a\U00026015", // 𦀕
+ 0x26016: "x\a\U00026016", // 𦀖
+ 0x26017: "x\a\U00026017", // 𦀗
+ 0x26018: "x\a\U00026018", // 𦀘
+ 0x26019: "x\a\U00026019", // 𦀙
+ 0x2601a: "x\a\U0002601a", // 𦀚
+ 0x2601b: "x\a\U0002601b", // 𦀛
+ 0x2601c: "x\a\U0002601c", // 𦀜
+ 0x2601d: "x\a\U0002601d", // 𦀝
+ 0x2601e: "x\a\U0002601e", // 𦀞
+ 0x2601f: "x\a\U0002601f", // 𦀟
+ 0x26020: "x\a\U00026020", // 𦀠
+ 0x26021: "x\a\U00026021", // 𦀡
+ 0x26022: "x\a\U00026022", // 𦀢
+ 0x26023: "x\a\U00026023", // 𦀣
+ 0x26024: "x\a\U00026024", // 𦀤
+ 0x26025: "x\a\U00026025", // 𦀥
+ 0x26026: "x\a\U00026026", // 𦀦
+ 0x26027: "x\a\U00026027", // 𦀧
+ 0x26028: "x\a\U00026028", // 𦀨
+ 0x26029: "x\a\U00026029", // 𦀩
+ 0x2602a: "x\a\U0002602a", // 𦀪
+ 0x2602b: "x\a\U0002602b", // 𦀫
+ 0x2602c: "x\a\U0002602c", // 𦀬
+ 0x2602d: "x\a\U0002602d", // 𦀭
+ 0x2602e: "x\a\U0002602e", // 𦀮
+ 0x2602f: "x\a\U0002602f", // 𦀯
+ 0x26030: "x\a\U00026030", // 𦀰
+ 0x26031: "x\a\U00026031", // 𦀱
+ 0x26032: "x\a\U00026032", // 𦀲
+ 0x26033: "x\a\U00026033", // 𦀳
+ 0x26034: "x\a\U00026034", // 𦀴
+ 0x26035: "x\a\U00026035", // 𦀵
+ 0x26036: "x\a\U00026036", // 𦀶
+ 0x26037: "x\a\U00026037", // 𦀷
+ 0x26038: "x\a\U00026038", // 𦀸
+ 0x26039: "x\a\U00026039", // 𦀹
+ 0x2603a: "x\a\U0002603a", // 𦀺
+ 0x2603b: "x\a\U0002603b", // 𦀻
+ 0x2603c: "x\a\U0002603c", // 𦀼
+ 0x2603d: "x\a\U0002603d", // 𦀽
+ 0x2603e: "x\a\U0002603e", // 𦀾
+ 0x2603f: "x\a\U0002603f", // 𦀿
+ 0x26040: "x\a\U00026040", // 𦁀
+ 0x26041: "x\a\U00026041", // 𦁁
+ 0x26042: "x\a\U00026042", // 𦁂
+ 0x26043: "x\a\U00026043", // 𦁃
+ 0x26044: "x\a\U00026044", // 𦁄
+ 0x26045: "x\a\U00026045", // 𦁅
+ 0x26046: "x\b\U00026046", // 𦁆
+ 0x26047: "x\b\U00026047", // 𦁇
+ 0x26048: "x\b\U00026048", // 𦁈
+ 0x26049: "x\b\U00026049", // 𦁉
+ 0x2604a: "x\b\U0002604a", // 𦁊
+ 0x2604b: "x\b\U0002604b", // 𦁋
+ 0x2604c: "x\b\U0002604c", // 𦁌
+ 0x2604d: "x\b\U0002604d", // 𦁍
+ 0x2604e: "x\b\U0002604e", // 𦁎
+ 0x2604f: "x\b\U0002604f", // 𦁏
+ 0x26050: "x\b\U00026050", // 𦁐
+ 0x26051: "x\b\U00026051", // 𦁑
+ 0x26052: "x\b\U00026052", // 𦁒
+ 0x26053: "x\b\U00026053", // 𦁓
+ 0x26054: "x\b\U00026054", // 𦁔
+ 0x26055: "x\b\U00026055", // 𦁕
+ 0x26056: "x\b\U00026056", // 𦁖
+ 0x26057: "x\b\U00026057", // 𦁗
+ 0x26058: "x\b\U00026058", // 𦁘
+ 0x26059: "x\b\U00026059", // 𦁙
+ 0x2605a: "x\b\U0002605a", // 𦁚
+ 0x2605b: "x\b\U0002605b", // 𦁛
+ 0x2605c: "x\b\U0002605c", // 𦁜
+ 0x2605d: "x\b\U0002605d", // 𦁝
+ 0x2605e: "x\b\U0002605e", // 𦁞
+ 0x2605f: "x\b\U0002605f", // 𦁟
+ 0x26060: "x\b\U00026060", // 𦁠
+ 0x26061: "x\b\U00026061", // 𦁡
+ 0x26062: "x\b\U00026062", // 𦁢
+ 0x26063: "x\b\U00026063", // 𦁣
+ 0x26064: "x\b\U00026064", // 𦁤
+ 0x26065: "x\b\U00026065", // 𦁥
+ 0x26066: "x\b\U00026066", // 𦁦
+ 0x26067: "x\b\U00026067", // 𦁧
+ 0x26068: "x\b\U00026068", // 𦁨
+ 0x26069: "x\b\U00026069", // 𦁩
+ 0x2606a: "x\b\U0002606a", // 𦁪
+ 0x2606b: "x\b\U0002606b", // 𦁫
+ 0x2606c: "x\b\U0002606c", // 𦁬
+ 0x2606d: "x\b\U0002606d", // 𦁭
+ 0x2606e: "x\b\U0002606e", // 𦁮
+ 0x2606f: "x\b\U0002606f", // 𦁯
+ 0x26070: "x\b\U00026070", // 𦁰
+ 0x26071: "x\b\U00026071", // 𦁱
+ 0x26072: "x\b\U00026072", // 𦁲
+ 0x26073: "x\b\U00026073", // 𦁳
+ 0x26074: "x\b\U00026074", // 𦁴
+ 0x26075: "x\b\U00026075", // 𦁵
+ 0x26076: "x\b\U00026076", // 𦁶
+ 0x26077: "x\b\U00026077", // 𦁷
+ 0x26078: "x\b\U00026078", // 𦁸
+ 0x26079: "x\b\U00026079", // 𦁹
+ 0x2607a: "x\b\U0002607a", // 𦁺
+ 0x2607b: "x\b\U0002607b", // 𦁻
+ 0x2607c: "x\b\U0002607c", // 𦁼
+ 0x2607d: "x\b\U0002607d", // 𦁽
+ 0x2607e: "x\b\U0002607e", // 𦁾
+ 0x2607f: "x\b\U0002607f", // 𦁿
+ 0x26080: "x\t\U00026080", // 𦂀
+ 0x26081: "x\t\U00026081", // 𦂁
+ 0x26082: "x\t\U00026082", // 𦂂
+ 0x26083: "x\t\U00026083", // 𦂃
+ 0x26084: "x\t\U00026084", // 𦂄
+ 0x26085: "x\t\U00026085", // 𦂅
+ 0x26086: "x\t\U00026086", // 𦂆
+ 0x26087: "x\t\U00026087", // 𦂇
+ 0x26088: "x\t\U00026088", // 𦂈
+ 0x26089: "x\t\U00026089", // 𦂉
+ 0x2608a: "x\t\U0002608a", // 𦂊
+ 0x2608b: "x\t\U0002608b", // 𦂋
+ 0x2608c: "x\t\U0002608c", // 𦂌
+ 0x2608d: "x\t\U0002608d", // 𦂍
+ 0x2608e: "x\t\U0002608e", // 𦂎
+ 0x2608f: "x\t\U0002608f", // 𦂏
+ 0x26090: "x\t\U00026090", // 𦂐
+ 0x26091: "x\t\U00026091", // 𦂑
+ 0x26092: "x\t\U00026092", // 𦂒
+ 0x26093: "x\t\U00026093", // 𦂓
+ 0x26094: "x\t\U00026094", // 𦂔
+ 0x26095: "x\t\U00026095", // 𦂕
+ 0x26096: "x\t\U00026096", // 𦂖
+ 0x26097: "x\t\U00026097", // 𦂗
+ 0x26098: "x\t\U00026098", // 𦂘
+ 0x26099: "x\t\U00026099", // 𦂙
+ 0x2609a: "x\t\U0002609a", // 𦂚
+ 0x2609b: "x\t\U0002609b", // 𦂛
+ 0x2609c: "x\t\U0002609c", // 𦂜
+ 0x2609d: "x\t\U0002609d", // 𦂝
+ 0x2609e: "x\t\U0002609e", // 𦂞
+ 0x2609f: "x\t\U0002609f", // 𦂟
+ 0x260a0: "x\t\U000260a0", // 𦂠
+ 0x260a1: "x\t\U000260a1", // 𦂡
+ 0x260a2: "x\t\U000260a2", // 𦂢
+ 0x260a3: "x\t\U000260a3", // 𦂣
+ 0x260a4: "x\t\U000260a4", // 𦂤
+ 0x260a5: "x\t\U000260a5", // 𦂥
+ 0x260a6: "x\t\U000260a6", // 𦂦
+ 0x260a7: "x\n\U000260a7", // 𦂧
+ 0x260a8: "x\t\U000260a8", // 𦂨
+ 0x260a9: "x\t\U000260a9", // 𦂩
+ 0x260aa: "x\t\U000260aa", // 𦂪
+ 0x260ab: "x\t\U000260ab", // 𦂫
+ 0x260ac: "x\t\U000260ac", // 𦂬
+ 0x260ad: "x\t\U000260ad", // 𦂭
+ 0x260ae: "x\t\U000260ae", // 𦂮
+ 0x260af: "x\t\U000260af", // 𦂯
+ 0x260b0: "x\t\U000260b0", // 𦂰
+ 0x260b1: "x\t\U000260b1", // 𦂱
+ 0x260b2: "x\t\U000260b2", // 𦂲
+ 0x260b3: "x\t\U000260b3", // 𦂳
+ 0x260b4: "x\t\U000260b4", // 𦂴
+ 0x260b5: "x\t\U000260b5", // 𦂵
+ 0x260b6: "x\t\U000260b6", // 𦂶
+ 0x260b7: "x\t\U000260b7", // 𦂷
+ 0x260b8: "x\t\U000260b8", // 𦂸
+ 0x260b9: "x\t\U000260b9", // 𦂹
+ 0x260ba: "x\t\U000260ba", // 𦂺
+ 0x260bb: "x\t\U000260bb", // 𦂻
+ 0x260bc: "x\t\U000260bc", // 𦂼
+ 0x260bd: "x\t\U000260bd", // 𦂽
+ 0x260be: "x\t\U000260be", // 𦂾
+ 0x260bf: "x\t\U000260bf", // 𦂿
+ 0x260c0: "x\t\U000260c0", // 𦃀
+ 0x260c1: "x\t\U000260c1", // 𦃁
+ 0x260c2: "x\n\U000260c2", // 𦃂
+ 0x260c3: "x\n\U000260c3", // 𦃃
+ 0x260c4: "x\n\U000260c4", // 𦃄
+ 0x260c5: "x\n\U000260c5", // 𦃅
+ 0x260c6: "x\n\U000260c6", // 𦃆
+ 0x260c7: "x\n\U000260c7", // 𦃇
+ 0x260c8: "x\n\U000260c8", // 𦃈
+ 0x260c9: "x\n\U000260c9", // 𦃉
+ 0x260ca: "x\n\U000260ca", // 𦃊
+ 0x260cb: "x\n\U000260cb", // 𦃋
+ 0x260cc: "x\n\U000260cc", // 𦃌
+ 0x260cd: "x\n\U000260cd", // 𦃍
+ 0x260ce: "x\n\U000260ce", // 𦃎
+ 0x260cf: "x\n\U000260cf", // 𦃏
+ 0x260d0: "x\n\U000260d0", // 𦃐
+ 0x260d1: "x\n\U000260d1", // 𦃑
+ 0x260d2: "x\n\U000260d2", // 𦃒
+ 0x260d3: "x\n\U000260d3", // 𦃓
+ 0x260d4: "x\n\U000260d4", // 𦃔
+ 0x260d5: "x\n\U000260d5", // 𦃕
+ 0x260d6: "x\n\U000260d6", // 𦃖
+ 0x260d7: "x\n\U000260d7", // 𦃗
+ 0x260d8: "x\n\U000260d8", // 𦃘
+ 0x260d9: "x\n\U000260d9", // 𦃙
+ 0x260da: "x\n\U000260da", // 𦃚
+ 0x260db: "x\n\U000260db", // 𦃛
+ 0x260dc: "x\n\U000260dc", // 𦃜
+ 0x260dd: "x\n\U000260dd", // 𦃝
+ 0x260de: "x\n\U000260de", // 𦃞
+ 0x260df: "x\n\U000260df", // 𦃟
+ 0x260e0: "x\n\U000260e0", // 𦃠
+ 0x260e1: "x\n\U000260e1", // 𦃡
+ 0x260e2: "x\n\U000260e2", // 𦃢
+ 0x260e3: "x\n\U000260e3", // 𦃣
+ 0x260e4: "x\n\U000260e4", // 𦃤
+ 0x260e5: "x\n\U000260e5", // 𦃥
+ 0x260e6: "x\n\U000260e6", // 𦃦
+ 0x260e7: "x\n\U000260e7", // 𦃧
+ 0x260e8: "x\n\U000260e8", // 𦃨
+ 0x260e9: "x\n\U000260e9", // 𦃩
+ 0x260ea: "x\n\U000260ea", // 𦃪
+ 0x260eb: "x\n\U000260eb", // 𦃫
+ 0x260ec: "x\n\U000260ec", // 𦃬
+ 0x260ed: "x\n\U000260ed", // 𦃭
+ 0x260ee: "x\n\U000260ee", // 𦃮
+ 0x260ef: "x\n\U000260ef", // 𦃯
+ 0x260f0: "x\n\U000260f0", // 𦃰
+ 0x260f1: "x\n\U000260f1", // 𦃱
+ 0x260f2: "x\n\U000260f2", // 𦃲
+ 0x260f3: "x\n\U000260f3", // 𦃳
+ 0x260f4: "x\n\U000260f4", // 𦃴
+ 0x260f5: "x\n\U000260f5", // 𦃵
+ 0x260f6: "x\n\U000260f6", // 𦃶
+ 0x260f7: "x\n\U000260f7", // 𦃷
+ 0x260f8: "x\n\U000260f8", // 𦃸
+ 0x260f9: "x\n\U000260f9", // 𦃹
+ 0x260fa: "x\n\U000260fa", // 𦃺
+ 0x260fb: "x\n\U000260fb", // 𦃻
+ 0x260fc: "x\n\U000260fc", // 𦃼
+ 0x260fd: "x\n\U000260fd", // 𦃽
+ 0x260fe: "x\n\U000260fe", // 𦃾
+ 0x260ff: "x\n\U000260ff", // 𦃿
+ 0x26100: "x\n\U00026100", // 𦄀
+ 0x26101: "x\n\U00026101", // 𦄁
+ 0x26102: "x\v\U00026102", // 𦄂
+ 0x26103: "x\n\U00026103", // 𦄃
+ 0x26104: "x\n\U00026104", // 𦄄
+ 0x26105: "x\n\U00026105", // 𦄅
+ 0x26106: "x\n\U00026106", // 𦄆
+ 0x26107: "x\n\U00026107", // 𦄇
+ 0x26108: "x\n\U00026108", // 𦄈
+ 0x26109: "x\v\U00026109", // 𦄉
+ 0x2610a: "x\v\U0002610a", // 𦄊
+ 0x2610b: "x\v\U0002610b", // 𦄋
+ 0x2610c: "x\v\U0002610c", // 𦄌
+ 0x2610d: "x\v\U0002610d", // 𦄍
+ 0x2610e: "x\v\U0002610e", // 𦄎
+ 0x2610f: "x\v\U0002610f", // 𦄏
+ 0x26110: "x\v\U00026110", // 𦄐
+ 0x26111: "x\v\U00026111", // 𦄑
+ 0x26112: "x\v\U00026112", // 𦄒
+ 0x26113: "x\v\U00026113", // 𦄓
+ 0x26114: "x\v\U00026114", // 𦄔
+ 0x26115: "x\v\U00026115", // 𦄕
+ 0x26116: "x\v\U00026116", // 𦄖
+ 0x26117: "x\v\U00026117", // 𦄗
+ 0x26118: "x\v\U00026118", // 𦄘
+ 0x26119: "x\v\U00026119", // 𦄙
+ 0x2611a: "x\v\U0002611a", // 𦄚
+ 0x2611b: "x\v\U0002611b", // 𦄛
+ 0x2611c: "x\v\U0002611c", // 𦄜
+ 0x2611d: "x\v\U0002611d", // 𦄝
+ 0x2611e: "x\v\U0002611e", // 𦄞
+ 0x2611f: "x\v\U0002611f", // 𦄟
+ 0x26120: "x\v\U00026120", // 𦄠
+ 0x26121: "x\v\U00026121", // 𦄡
+ 0x26122: "x\v\U00026122", // 𦄢
+ 0x26123: "x\v\U00026123", // 𦄣
+ 0x26124: "x\v\U00026124", // 𦄤
+ 0x26125: "x\v\U00026125", // 𦄥
+ 0x26126: "x\v\U00026126", // 𦄦
+ 0x26127: "x\v\U00026127", // 𦄧
+ 0x26128: "x\v\U00026128", // 𦄨
+ 0x26129: "x\v\U00026129", // 𦄩
+ 0x2612a: "x\v\U0002612a", // 𦄪
+ 0x2612b: "x\v\U0002612b", // 𦄫
+ 0x2612c: "x\v\U0002612c", // 𦄬
+ 0x2612d: "x\v\U0002612d", // 𦄭
+ 0x2612e: "x\v\U0002612e", // 𦄮
+ 0x2612f: "x\v\U0002612f", // 𦄯
+ 0x26130: "x\v\U00026130", // 𦄰
+ 0x26131: "x\v\U00026131", // 𦄱
+ 0x26132: "x\v\U00026132", // 𦄲
+ 0x26133: "x\v\U00026133", // 𦄳
+ 0x26134: "x\v\U00026134", // 𦄴
+ 0x26135: "x\v\U00026135", // 𦄵
+ 0x26136: "x\v\U00026136", // 𦄶
+ 0x26137: "x\v\U00026137", // 𦄷
+ 0x26138: "x\v\U00026138", // 𦄸
+ 0x26139: "x\v\U00026139", // 𦄹
+ 0x2613a: "x\v\U0002613a", // 𦄺
+ 0x2613b: "x\v\U0002613b", // 𦄻
+ 0x2613c: "x\f\U0002613c", // 𦄼
+ 0x2613d: "x\f\U0002613d", // 𦄽
+ 0x2613e: "x\f\U0002613e", // 𦄾
+ 0x2613f: "x\f\U0002613f", // 𦄿
+ 0x26140: "x\f\U00026140", // 𦅀
+ 0x26141: "x\f\U00026141", // 𦅁
+ 0x26142: "x\f\U00026142", // 𦅂
+ 0x26143: "x\f\U00026143", // 𦅃
+ 0x26144: "x\f\U00026144", // 𦅄
+ 0x26145: "x\f\U00026145", // 𦅅
+ 0x26146: "x\f\U00026146", // 𦅆
+ 0x26147: "x\f\U00026147", // 𦅇
+ 0x26148: "x\f\U00026148", // 𦅈
+ 0x26149: "x\f\U00026149", // 𦅉
+ 0x2614a: "x\f\U0002614a", // 𦅊
+ 0x2614b: "x\f\U0002614b", // 𦅋
+ 0x2614c: "x\f\U0002614c", // 𦅌
+ 0x2614d: "x\f\U0002614d", // 𦅍
+ 0x2614e: "x\f\U0002614e", // 𦅎
+ 0x2614f: "x\f\U0002614f", // 𦅏
+ 0x26150: "x\f\U00026150", // 𦅐
+ 0x26151: "x\f\U00026151", // 𦅑
+ 0x26152: "x\f\U00026152", // 𦅒
+ 0x26153: "x\f\U00026153", // 𦅓
+ 0x26154: "x\f\U00026154", // 𦅔
+ 0x26155: "x\f\U00026155", // 𦅕
+ 0x26156: "x\f\U00026156", // 𦅖
+ 0x26157: "x\f\U00026157", // 𦅗
+ 0x26158: "x\f\U00026158", // 𦅘
+ 0x26159: "x\f\U00026159", // 𦅙
+ 0x2615a: "x\f\U0002615a", // 𦅚
+ 0x2615b: "x\f\U0002615b", // 𦅛
+ 0x2615c: "x\f\U0002615c", // 𦅜
+ 0x2615d: "x\f\U0002615d", // 𦅝
+ 0x2615e: "x\f\U0002615e", // 𦅞
+ 0x2615f: "x\f\U0002615f", // 𦅟
+ 0x26160: "x\f\U00026160", // 𦅠
+ 0x26161: "x\f\U00026161", // 𦅡
+ 0x26162: "x\f\U00026162", // 𦅢
+ 0x26163: "x\f\U00026163", // 𦅣
+ 0x26164: "x\f\U00026164", // 𦅤
+ 0x26165: "x\f\U00026165", // 𦅥
+ 0x26166: "x\f\U00026166", // 𦅦
+ 0x26167: "x\f\U00026167", // 𦅧
+ 0x26168: "x\f\U00026168", // 𦅨
+ 0x26169: "x\f\U00026169", // 𦅩
+ 0x2616a: "x\f\U0002616a", // 𦅪
+ 0x2616b: "x\f\U0002616b", // 𦅫
+ 0x2616c: "x\f\U0002616c", // 𦅬
+ 0x2616d: "x\f\U0002616d", // 𦅭
+ 0x2616e: "x\f\U0002616e", // 𦅮
+ 0x2616f: "x\f\U0002616f", // 𦅯
+ 0x26170: "x\f\U00026170", // 𦅰
+ 0x26171: "x\f\U00026171", // 𦅱
+ 0x26172: "x\f\U00026172", // 𦅲
+ 0x26173: "x\f\U00026173", // 𦅳
+ 0x26174: "x\f\U00026174", // 𦅴
+ 0x26175: "x\r\U00026175", // 𦅵
+ 0x26176: "x\r\U00026176", // 𦅶
+ 0x26177: "x\r\U00026177", // 𦅷
+ 0x26178: "x\r\U00026178", // 𦅸
+ 0x26179: "x\r\U00026179", // 𦅹
+ 0x2617a: "x\r\U0002617a", // 𦅺
+ 0x2617b: "x\r\U0002617b", // 𦅻
+ 0x2617c: "x\r\U0002617c", // 𦅼
+ 0x2617d: "x\r\U0002617d", // 𦅽
+ 0x2617e: "x\r\U0002617e", // 𦅾
+ 0x2617f: "x\r\U0002617f", // 𦅿
+ 0x26180: "x\r\U00026180", // 𦆀
+ 0x26181: "x\r\U00026181", // 𦆁
+ 0x26182: "x\r\U00026182", // 𦆂
+ 0x26183: "x\r\U00026183", // 𦆃
+ 0x26184: "x\r\U00026184", // 𦆄
+ 0x26185: "x\r\U00026185", // 𦆅
+ 0x26186: "x\r\U00026186", // 𦆆
+ 0x26187: "x\r\U00026187", // 𦆇
+ 0x26188: "x\r\U00026188", // 𦆈
+ 0x26189: "x\r\U00026189", // 𦆉
+ 0x2618a: "x\r\U0002618a", // 𦆊
+ 0x2618b: "x\r\U0002618b", // 𦆋
+ 0x2618c: "x\r\U0002618c", // 𦆌
+ 0x2618d: "x\r\U0002618d", // 𦆍
+ 0x2618e: "x\r\U0002618e", // 𦆎
+ 0x2618f: "x\r\U0002618f", // 𦆏
+ 0x26190: "x\r\U00026190", // 𦆐
+ 0x26191: "x\r\U00026191", // 𦆑
+ 0x26192: "x\r\U00026192", // 𦆒
+ 0x26193: "x\r\U00026193", // 𦆓
+ 0x26194: "x\r\U00026194", // 𦆔
+ 0x26195: "x\r\U00026195", // 𦆕
+ 0x26196: "x\r\U00026196", // 𦆖
+ 0x26197: "x\r\U00026197", // 𦆗
+ 0x26198: "x\r\U00026198", // 𦆘
+ 0x26199: "x\r\U00026199", // 𦆙
+ 0x2619a: "x\r\U0002619a", // 𦆚
+ 0x2619b: "x\r\U0002619b", // 𦆛
+ 0x2619c: "x\x0e\U0002619c", // 𦆜
+ 0x2619d: "x\x0e\U0002619d", // 𦆝
+ 0x2619e: "x\x0e\U0002619e", // 𦆞
+ 0x2619f: "x\x0e\U0002619f", // 𦆟
+ 0x261a0: "x\x0e\U000261a0", // 𦆠
+ 0x261a1: "x\x0e\U000261a1", // 𦆡
+ 0x261a2: "x\x0e\U000261a2", // 𦆢
+ 0x261a3: "x\x0e\U000261a3", // 𦆣
+ 0x261a4: "x\x0f\U000261a4", // 𦆤
+ 0x261a5: "x\r\U000261a5", // 𦆥
+ 0x261a6: "x\x0e\U000261a6", // 𦆦
+ 0x261a7: "x\x0e\U000261a7", // 𦆧
+ 0x261a8: "x\x0f\U000261a8", // 𦆨
+ 0x261a9: "x\x0e\U000261a9", // 𦆩
+ 0x261aa: "x\x0e\U000261aa", // 𦆪
+ 0x261ab: "x\x0f\U000261ab", // 𦆫
+ 0x261ac: "x\x0e\U000261ac", // 𦆬
+ 0x261ad: "x\x0e\U000261ad", // 𦆭
+ 0x261ae: "x\x0e\U000261ae", // 𦆮
+ 0x261af: "x\x0e\U000261af", // 𦆯
+ 0x261b0: "x\x0e\U000261b0", // 𦆰
+ 0x261b1: "x\x0e\U000261b1", // 𦆱
+ 0x261b2: "x\x0e\U000261b2", // 𦆲
+ 0x261b3: "x\x0e\U000261b3", // 𦆳
+ 0x261b4: "x\x0e\U000261b4", // 𦆴
+ 0x261b5: "x\x0e\U000261b5", // 𦆵
+ 0x261b6: "x\x0e\U000261b6", // 𦆶
+ 0x261b7: "x\x0e\U000261b7", // 𦆷
+ 0x261b8: "x\x0e\U000261b8", // 𦆸
+ 0x261b9: "x\x0e\U000261b9", // 𦆹
+ 0x261ba: "x\x0e\U000261ba", // 𦆺
+ 0x261bb: "x\x0f\U000261bb", // 𦆻
+ 0x261bc: "x\x0f\U000261bc", // 𦆼
+ 0x261bd: "x\x0f\U000261bd", // 𦆽
+ 0x261be: "x\x0f\U000261be", // 𦆾
+ 0x261bf: "x\x0f\U000261bf", // 𦆿
+ 0x261c0: "x\x0f\U000261c0", // 𦇀
+ 0x261c1: "x\x0f\U000261c1", // 𦇁
+ 0x261c2: "x\x10\U000261c2", // 𦇂
+ 0x261c3: "x\x0f\U000261c3", // 𦇃
+ 0x261c4: "x\x0f\U000261c4", // 𦇄
+ 0x261c5: "x\x0f\U000261c5", // 𦇅
+ 0x261c6: "x\x0f\U000261c6", // 𦇆
+ 0x261c7: "x\x0f\U000261c7", // 𦇇
+ 0x261c8: "x\x0f\U000261c8", // 𦇈
+ 0x261c9: "x\x0f\U000261c9", // 𦇉
+ 0x261ca: "x\x0f\U000261ca", // 𦇊
+ 0x261cb: "x\x0f\U000261cb", // 𦇋
+ 0x261cc: "x\x0f\U000261cc", // 𦇌
+ 0x261cd: "x\x0f\U000261cd", // 𦇍
+ 0x261ce: "x\x0f\U000261ce", // 𦇎
+ 0x261cf: "x\x0f\U000261cf", // 𦇏
+ 0x261d0: "x\x0f\U000261d0", // 𦇐
+ 0x261d1: "x\x0f\U000261d1", // 𦇑
+ 0x261d2: "x\x0f\U000261d2", // 𦇒
+ 0x261d3: "x\x0f\U000261d3", // 𦇓
+ 0x261d4: "x\x10\U000261d4", // 𦇔
+ 0x261d5: "x\x10\U000261d5", // 𦇕
+ 0x261d6: "x\x10\U000261d6", // 𦇖
+ 0x261d7: "x\x10\U000261d7", // 𦇗
+ 0x261d8: "x\x10\U000261d8", // 𦇘
+ 0x261d9: "x\x10\U000261d9", // 𦇙
+ 0x261da: "x\x10\U000261da", // 𦇚
+ 0x261db: "x\x10\U000261db", // 𦇛
+ 0x261dc: "x\x10\U000261dc", // 𦇜
+ 0x261dd: "x\x10\U000261dd", // 𦇝
+ 0x261de: "x\x10\U000261de", // 𦇞
+ 0x261df: "x\x10\U000261df", // 𦇟
+ 0x261e0: "x\x10\U000261e0", // 𦇠
+ 0x261e1: "x\x10\U000261e1", // 𦇡
+ 0x261e2: "x\x10\U000261e2", // 𦇢
+ 0x261e3: "x\x10\U000261e3", // 𦇣
+ 0x261e4: "x\x10\U000261e4", // 𦇤
+ 0x261e5: "x\x10\U000261e5", // 𦇥
+ 0x261e6: "x\x10\U000261e6", // 𦇦
+ 0x261e7: "x\x11\U000261e7", // 𦇧
+ 0x261e8: "x\x11\U000261e8", // 𦇨
+ 0x261e9: "x\x11\U000261e9", // 𦇩
+ 0x261ea: "x\x11\U000261ea", // 𦇪
+ 0x261eb: "x\x11\U000261eb", // 𦇫
+ 0x261ec: "x\x11\U000261ec", // 𦇬
+ 0x261ed: "x\x11\U000261ed", // 𦇭
+ 0x261ee: "x\x11\U000261ee", // 𦇮
+ 0x261ef: "x\x11\U000261ef", // 𦇯
+ 0x261f0: "x\x12\U000261f0", // 𦇰
+ 0x261f1: "x\x12\U000261f1", // 𦇱
+ 0x261f2: "x\x12\U000261f2", // 𦇲
+ 0x261f3: "x\x12\U000261f3", // 𦇳
+ 0x261f4: "x\x12\U000261f4", // 𦇴
+ 0x261f5: "x\x12\U000261f5", // 𦇵
+ 0x261f6: "x\x12\U000261f6", // 𦇶
+ 0x261f7: "x\x12\U000261f7", // 𦇷
+ 0x261f8: "x\x13\U000261f8", // 𦇸
+ 0x261f9: "x\x12\U000261f9", // 𦇹
+ 0x261fa: "x\x13\U000261fa", // 𦇺
+ 0x261fb: "x\x13\U000261fb", // 𦇻
+ 0x261fc: "x\x14\U000261fc", // 𦇼
+ 0x261fd: "x\x14\U000261fd", // 𦇽
+ 0x261fe: "x\x15\U000261fe", // 𦇾
+ 0x261ff: "x\x15\U000261ff", // 𦇿
+ 0x26200: "x\x15\U00026200", // 𦈀
+ 0x26201: "x\x15\U00026201", // 𦈁
+ 0x26202: "x\x15\U00026202", // 𦈂
+ 0x26203: "x\x16\U00026203", // 𦈃
+ 0x26204: "x\x16\U00026204", // 𦈄
+ 0x26205: "x\x17\U00026205", // 𦈅
+ 0x26206: "x\x18\U00026206", // 𦈆
+ 0x26207: "x\x19\U00026207", // 𦈇
+ 0x26208: "x\x05\U00026208", // 𦈈
+ 0x26209: "x\x06\U00026209", // 𦈉
+ 0x2620a: "x\a\U0002620a", // 𦈊
+ 0x2620b: "x\a\U0002620b", // 𦈋
+ 0x2620c: "x\a\U0002620c", // 𦈌
+ 0x2620d: "x\b\U0002620d", // 𦈍
+ 0x2620e: "x\b\U0002620e", // 𦈎
+ 0x2620f: "x\b\U0002620f", // 𦈏
+ 0x26210: "x\b\U00026210", // 𦈐
+ 0x26211: "x\t\U00026211", // 𦈑
+ 0x26212: "x\t\U00026212", // 𦈒
+ 0x26213: "x\t\U00026213", // 𦈓
+ 0x26214: "x\t\U00026214", // 𦈔
+ 0x26215: "x\t\U00026215", // 𦈕
+ 0x26216: "x\n\U00026216", // 𦈖
+ 0x26217: "x\n\U00026217", // 𦈗
+ 0x26218: "x\n\U00026218", // 𦈘
+ 0x26219: "x\n\U00026219", // 𦈙
+ 0x2621a: "x\v\U0002621a", // 𦈚
+ 0x2621b: "x\f\U0002621b", // 𦈛
+ 0x2621c: "x\f\U0002621c", // 𦈜
+ 0x2621d: "x\f\U0002621d", // 𦈝
+ 0x2621e: "x\r\U0002621e", // 𦈞
+ 0x2621f: "x\r\U0002621f", // 𦈟
+ 0x26220: "x\x0e\U00026220", // 𦈠
+ 0x26221: "x\x0e\U00026221", // 𦈡
+ 0x26222: "y\x00\U00026222", // 𦈢
+ 0x26223: "y\x03\U00026223", // 𦈣
+ 0x26224: "y\x03\U00026224", // 𦈤
+ 0x26225: "y\x03\U00026225", // 𦈥
+ 0x26226: "y\x04\U00026226", // 𦈦
+ 0x26227: "y\x04\U00026227", // 𦈧
+ 0x26228: "y\x04\U00026228", // 𦈨
+ 0x26229: "y\x05\U00026229", // 𦈩
+ 0x2622a: "y\x05\U0002622a", // 𦈪
+ 0x2622b: "y\x05\U0002622b", // 𦈫
+ 0x2622c: "y\x05\U0002622c", // 𦈬
+ 0x2622d: "y\x05\U0002622d", // 𦈭
+ 0x2622e: "y\x05\U0002622e", // 𦈮
+ 0x2622f: "y\x06\U0002622f", // 𦈯
+ 0x26230: "y\x06\U00026230", // 𦈰
+ 0x26231: "y\x06\U00026231", // 𦈱
+ 0x26232: "y\x06\U00026232", // 𦈲
+ 0x26233: "y\x06\U00026233", // 𦈳
+ 0x26234: "y\a\U00026234", // 𦈴
+ 0x26235: "y\a\U00026235", // 𦈵
+ 0x26236: "y\a\U00026236", // 𦈶
+ 0x26237: "y\a\U00026237", // 𦈷
+ 0x26238: "y\b\U00026238", // 𦈸
+ 0x26239: "y\b\U00026239", // 𦈹
+ 0x2623a: "y\b\U0002623a", // 𦈺
+ 0x2623b: "y\b\U0002623b", // 𦈻
+ 0x2623c: "y\b\U0002623c", // 𦈼
+ 0x2623d: "y\b\U0002623d", // 𦈽
+ 0x2623e: "y\b\U0002623e", // 𦈾
+ 0x2623f: "y\b\U0002623f", // 𦈿
+ 0x26240: "y\b\U00026240", // 𦉀
+ 0x26241: "y\t\U00026241", // 𦉁
+ 0x26242: "y\t\U00026242", // 𦉂
+ 0x26243: "y\t\U00026243", // 𦉃
+ 0x26244: "y\t\U00026244", // 𦉄
+ 0x26245: "y\t\U00026245", // 𦉅
+ 0x26246: "y\t\U00026246", // 𦉆
+ 0x26247: "y\t\U00026247", // 𦉇
+ 0x26248: "y\n\U00026248", // 𦉈
+ 0x26249: "y\n\U00026249", // 𦉉
+ 0x2624a: "y\n\U0002624a", // 𦉊
+ 0x2624b: "y\n\U0002624b", // 𦉋
+ 0x2624c: "y\n\U0002624c", // 𦉌
+ 0x2624d: "y\n\U0002624d", // 𦉍
+ 0x2624e: "y\n\U0002624e", // 𦉎
+ 0x2624f: "y\v\U0002624f", // 𦉏
+ 0x26250: "y\v\U00026250", // 𦉐
+ 0x26251: "y\v\U00026251", // 𦉑
+ 0x26252: "y\v\U00026252", // 𦉒
+ 0x26253: "y\v\U00026253", // 𦉓
+ 0x26254: "y\v\U00026254", // 𦉔
+ 0x26255: "y\f\U00026255", // 𦉕
+ 0x26256: "y\f\U00026256", // 𦉖
+ 0x26257: "y\f\U00026257", // 𦉗
+ 0x26258: "y\f\U00026258", // 𦉘
+ 0x26259: "y\r\U00026259", // 𦉙
+ 0x2625a: "y\r\U0002625a", // 𦉚
+ 0x2625b: "y\r\U0002625b", // 𦉛
+ 0x2625c: "y\r\U0002625c", // 𦉜
+ 0x2625d: "y\x0e\U0002625d", // 𦉝
+ 0x2625e: "y\x0e\U0002625e", // 𦉞
+ 0x2625f: "y\x0f\U0002625f", // 𦉟
+ 0x26260: "y\x0f\U00026260", // 𦉠
+ 0x26261: "y\x10\U00026261", // 𦉡
+ 0x26262: "y\x11\U00026262", // 𦉢
+ 0x26263: "y\x11\U00026263", // 𦉣
+ 0x26264: "y\x11\U00026264", // 𦉤
+ 0x26265: "y\x12\U00026265", // 𦉥
+ 0x26266: "y\x12\U00026266", // 𦉦
+ 0x26267: "y\x14\U00026267", // 𦉧
+ 0x26268: "y\x15\U00026268", // 𦉨
+ 0x26269: "y\x19\U00026269", // 𦉩
+ 0x2626a: "z\x00\U0002626a", // 𦉪
+ 0x2626b: "z\x00\U0002626b", // 𦉫
+ 0x2626c: "z\x02\U0002626c", // 𦉬
+ 0x2626d: "z\x00\U0002626d", // 𦉭
+ 0x2626e: "z\x02\U0002626e", // 𦉮
+ 0x2626f: "z\x01\U0002626f", // 𦉯
+ 0x26270: "z\x00\U00026270", // 𦉰
+ 0x26271: "z\x02\U00026271", // 𦉱
+ 0x26272: "z\x02\U00026272", // 𦉲
+ 0x26273: "z\x02\U00026273", // 𦉳
+ 0x26274: "z\x02\U00026274", // 𦉴
+ 0x26275: "z\x02\U00026275", // 𦉵
+ 0x26276: "z\x02\U00026276", // 𦉶
+ 0x26277: "z\x03\U00026277", // 𦉷
+ 0x26278: "z\x03\U00026278", // 𦉸
+ 0x26279: "z\x03\U00026279", // 𦉹
+ 0x2627a: "z\x03\U0002627a", // 𦉺
+ 0x2627b: "z\x03\U0002627b", // 𦉻
+ 0x2627c: "z\x03\U0002627c", // 𦉼
+ 0x2627d: "z\x03\U0002627d", // 𦉽
+ 0x2627e: "z\x03\U0002627e", // 𦉾
+ 0x2627f: "z\x03\U0002627f", // 𦉿
+ 0x26280: "z\x03\U00026280", // 𦊀
+ 0x26281: "z\x04\U00026281", // 𦊁
+ 0x26282: "z\x04\U00026282", // 𦊂
+ 0x26283: "z\x04\U00026283", // 𦊃
+ 0x26284: "z\x04\U00026284", // 𦊄
+ 0x26285: "z\x04\U00026285", // 𦊅
+ 0x26286: "z\x04\U00026286", // 𦊆
+ 0x26287: "z\x04\U00026287", // 𦊇
+ 0x26288: "z\x04\U00026288", // 𦊈
+ 0x26289: "z\x04\U00026289", // 𦊉
+ 0x2628a: "z\x04\U0002628a", // 𦊊
+ 0x2628b: "z\x04\U0002628b", // 𦊋
+ 0x2628c: "z\x04\U0002628c", // 𦊌
+ 0x2628d: "z\x04\U0002628d", // 𦊍
+ 0x2628e: "z\x05\U0002628e", // 𦊎
+ 0x2628f: "z\x05\U0002628f", // 𦊏
+ 0x26290: "z\x05\U00026290", // 𦊐
+ 0x26291: "z\x05\U00026291", // 𦊑
+ 0x26292: "z\x05\U00026292", // 𦊒
+ 0x26293: "z\x05\U00026293", // 𦊓
+ 0x26294: "z\x05\U00026294", // 𦊔
+ 0x26295: "z\x05\U00026295", // 𦊕
+ 0x26296: "z\x05\U00026296", // 𦊖
+ 0x26297: "z\x05\U00026297", // 𦊗
+ 0x26298: "z\x05\U00026298", // 𦊘
+ 0x26299: "z\x05\U00026299", // 𦊙
+ 0x2629a: "z\x05\U0002629a", // 𦊚
+ 0x2629b: "z\x05\U0002629b", // 𦊛
+ 0x2629c: "z\x05\U0002629c", // 𦊜
+ 0x2629d: "z\x05\U0002629d", // 𦊝
+ 0x2629e: "z\x05\U0002629e", // 𦊞
+ 0x2629f: "z\x05\U0002629f", // 𦊟
+ 0x262a0: "z\x05\U000262a0", // 𦊠
+ 0x262a1: "z\x05\U000262a1", // 𦊡
+ 0x262a2: "z\x05\U000262a2", // 𦊢
+ 0x262a3: "z\x05\U000262a3", // 𦊣
+ 0x262a4: ".\a\U000262a4", // 𦊤
+ 0x262a5: "z\x05\U000262a5", // 𦊥
+ 0x262a6: "z\x05\U000262a6", // 𦊦
+ 0x262a7: "z\x05\U000262a7", // 𦊧
+ 0x262a8: "z\x05\U000262a8", // 𦊨
+ 0x262a9: "z\x05\U000262a9", // 𦊩
+ 0x262aa: "z\x06\U000262aa", // 𦊪
+ 0x262ab: "z\x06\U000262ab", // 𦊫
+ 0x262ac: "z\x06\U000262ac", // 𦊬
+ 0x262ad: "z\x06\U000262ad", // 𦊭
+ 0x262ae: "z\x06\U000262ae", // 𦊮
+ 0x262af: "z\x06\U000262af", // 𦊯
+ 0x262b0: "z\x06\U000262b0", // 𦊰
+ 0x262b1: "z\x06\U000262b1", // 𦊱
+ 0x262b2: "z\x06\U000262b2", // 𦊲
+ 0x262b3: "z\x05\U000262b3", // 𦊳
+ 0x262b4: "z\x06\U000262b4", // 𦊴
+ 0x262b5: "z\x06\U000262b5", // 𦊵
+ 0x262b6: "z\x06\U000262b6", // 𦊶
+ 0x262b7: "z\x06\U000262b7", // 𦊷
+ 0x262b8: "z\x06\U000262b8", // 𦊸
+ 0x262b9: "z\x06\U000262b9", // 𦊹
+ 0x262ba: "z\x06\U000262ba", // 𦊺
+ 0x262bb: "z\x06\U000262bb", // 𦊻
+ 0x262bc: "z\a\U000262bc", // 𦊼
+ 0x262bd: "z\a\U000262bd", // 𦊽
+ 0x262be: "z\a\U000262be", // 𦊾
+ 0x262bf: "z\a\U000262bf", // 𦊿
+ 0x262c0: "z\a\U000262c0", // 𦋀
+ 0x262c1: "z\a\U000262c1", // 𦋁
+ 0x262c2: "z\a\U000262c2", // 𦋂
+ 0x262c3: "z\a\U000262c3", // 𦋃
+ 0x262c4: "z\a\U000262c4", // 𦋄
+ 0x262c5: "z\b\U000262c5", // 𦋅
+ 0x262c6: "z\b\U000262c6", // 𦋆
+ 0x262c7: "z\b\U000262c7", // 𦋇
+ 0x262c8: "z\b\U000262c8", // 𦋈
+ 0x262c9: "z\b\U000262c9", // 𦋉
+ 0x262ca: "z\b\U000262ca", // 𦋊
+ 0x262cb: "z\b\U000262cb", // 𦋋
+ 0x262cc: "z\b\U000262cc", // 𦋌
+ 0x262cd: "z\b\U000262cd", // 𦋍
+ 0x262ce: "z\b\U000262ce", // 𦋎
+ 0x262cf: "z\b\U000262cf", // 𦋏
+ 0x262d0: "z\b\U000262d0", // 𦋐
+ 0x262d1: "z\a\U000262d1", // 𦋑
+ 0x262d2: "z\b\U000262d2", // 𦋒
+ 0x262d3: "z\b\U000262d3", // 𦋓
+ 0x262d4: "z\b\U000262d4", // 𦋔
+ 0x262d5: "z\b\U000262d5", // 𦋕
+ 0x262d6: "z\b\U000262d6", // 𦋖
+ 0x262d7: "z\b\U000262d7", // 𦋗
+ 0x262d8: "z\b\U000262d8", // 𦋘
+ 0x262d9: "z\b\U000262d9", // 𦋙
+ 0x262da: "z\b\U000262da", // 𦋚
+ 0x262db: "z\b\U000262db", // 𦋛
+ 0x262dc: "z\b\U000262dc", // 𦋜
+ 0x262dd: "z\t\U000262dd", // 𦋝
+ 0x262de: "z\t\U000262de", // 𦋞
+ 0x262df: "z\t\U000262df", // 𦋟
+ 0x262e0: "z\t\U000262e0", // 𦋠
+ 0x262e1: "z\t\U000262e1", // 𦋡
+ 0x262e2: "z\t\U000262e2", // 𦋢
+ 0x262e3: "z\t\U000262e3", // 𦋣
+ 0x262e4: "z\t\U000262e4", // 𦋤
+ 0x262e5: "z\t\U000262e5", // 𦋥
+ 0x262e6: "z\t\U000262e6", // 𦋦
+ 0x262e7: "z\t\U000262e7", // 𦋧
+ 0x262e8: "z\t\U000262e8", // 𦋨
+ 0x262e9: "z\t\U000262e9", // 𦋩
+ 0x262ea: "6\f\U000262ea", // 𦋪
+ 0x262eb: "z\t\U000262eb", // 𦋫
+ 0x262ec: "z\t\U000262ec", // 𦋬
+ 0x262ed: "z\t\U000262ed", // 𦋭
+ 0x262ee: "z\t\U000262ee", // 𦋮
+ 0x262ef: "z\n\U000262ef", // 𦋯
+ 0x262f0: "z\n\U000262f0", // 𦋰
+ 0x262f1: "z\n\U000262f1", // 𦋱
+ 0x262f2: "z\n\U000262f2", // 𦋲
+ 0x262f3: "z\n\U000262f3", // 𦋳
+ 0x262f4: "z\n\U000262f4", // 𦋴
+ 0x262f5: "z\n\U000262f5", // 𦋵
+ 0x262f6: "z\n\U000262f6", // 𦋶
+ 0x262f7: "z\n\U000262f7", // 𦋷
+ 0x262f8: "z\n\U000262f8", // 𦋸
+ 0x262f9: "z\n\U000262f9", // 𦋹
+ 0x262fa: "z\n\U000262fa", // 𦋺
+ 0x262fb: "z\n\U000262fb", // 𦋻
+ 0x262fc: "z\n\U000262fc", // 𦋼
+ 0x262fd: "z\v\U000262fd", // 𦋽
+ 0x262fe: "z\v\U000262fe", // 𦋾
+ 0x262ff: "z\v\U000262ff", // 𦋿
+ 0x26300: "z\v\U00026300", // 𦌀
+ 0x26301: "z\v\U00026301", // 𦌁
+ 0x26302: "z\v\U00026302", // 𦌂
+ 0x26303: "z\v\U00026303", // 𦌃
+ 0x26304: "z\v\U00026304", // 𦌄
+ 0x26305: "z\v\U00026305", // 𦌅
+ 0x26306: "z\v\U00026306", // 𦌆
+ 0x26307: "z\v\U00026307", // 𦌇
+ 0x26308: "z\v\U00026308", // 𦌈
+ 0x26309: "z\v\U00026309", // 𦌉
+ 0x2630a: "z\v\U0002630a", // 𦌊
+ 0x2630b: "z\v\U0002630b", // 𦌋
+ 0x2630c: "z\v\U0002630c", // 𦌌
+ 0x2630d: "z\v\U0002630d", // 𦌍
+ 0x2630e: "z\v\U0002630e", // 𦌎
+ 0x2630f: "z\v\U0002630f", // 𦌏
+ 0x26310: "z\v\U00026310", // 𦌐
+ 0x26311: "z\v\U00026311", // 𦌑
+ 0x26312: "z\f\U00026312", // 𦌒
+ 0x26313: "z\f\U00026313", // 𦌓
+ 0x26314: "z\f\U00026314", // 𦌔
+ 0x26315: "z\f\U00026315", // 𦌕
+ 0x26316: "z\f\U00026316", // 𦌖
+ 0x26317: "z\f\U00026317", // 𦌗
+ 0x26318: "z\f\U00026318", // 𦌘
+ 0x26319: "z\f\U00026319", // 𦌙
+ 0x2631a: "z\f\U0002631a", // 𦌚
+ 0x2631b: "z\f\U0002631b", // 𦌛
+ 0x2631c: "z\f\U0002631c", // 𦌜
+ 0x2631d: "z\f\U0002631d", // 𦌝
+ 0x2631e: "z\f\U0002631e", // 𦌞
+ 0x2631f: "z\r\U0002631f", // 𦌟
+ 0x26320: "z\r\U00026320", // 𦌠
+ 0x26321: "z\r\U00026321", // 𦌡
+ 0x26322: "z\r\U00026322", // 𦌢
+ 0x26323: "z\r\U00026323", // 𦌣
+ 0x26324: "z\r\U00026324", // 𦌤
+ 0x26325: "z\r\U00026325", // 𦌥
+ 0x26326: "z\r\U00026326", // 𦌦
+ 0x26327: "z\r\U00026327", // 𦌧
+ 0x26328: "z\r\U00026328", // 𦌨
+ 0x26329: "{\f\U00026329", // 𦌩
+ 0x2632a: "z\x0e\U0002632a", // 𦌪
+ 0x2632b: "z\x0e\U0002632b", // 𦌫
+ 0x2632c: "z\x0e\U0002632c", // 𦌬
+ 0x2632d: "z\x0e\U0002632d", // 𦌭
+ 0x2632e: "z\x0e\U0002632e", // 𦌮
+ 0x2632f: "z\x0e\U0002632f", // 𦌯
+ 0x26330: "z\x0e\U00026330", // 𦌰
+ 0x26331: "z\x0e\U00026331", // 𦌱
+ 0x26332: "z\x0e\U00026332", // 𦌲
+ 0x26333: "z\x0e\U00026333", // 𦌳
+ 0x26334: "z\x0e\U00026334", // 𦌴
+ 0x26335: "z\x0f\U00026335", // 𦌵
+ 0x26336: "z\x0f\U00026336", // 𦌶
+ 0x26337: "z\x0f\U00026337", // 𦌷
+ 0x26338: "z\x0f\U00026338", // 𦌸
+ 0x26339: "z\x0f\U00026339", // 𦌹
+ 0x2633a: "z\x0f\U0002633a", // 𦌺
+ 0x2633b: "z\x10\U0002633b", // 𦌻
+ 0x2633c: "z\x10\U0002633c", // 𦌼
+ 0x2633d: "z\x12\U0002633d", // 𦌽
+ 0x2633e: "z\x13\U0002633e", // 𦌾
+ 0x2633f: "z\x13\U0002633f", // 𦌿
+ 0x26340: "z\x13\U00026340", // 𦍀
+ 0x26341: "z\x13\U00026341", // 𦍁
+ 0x26342: "z\x13\U00026342", // 𦍂
+ 0x26343: "z\x13\U00026343", // 𦍃
+ 0x26344: "z\x13\U00026344", // 𦍄
+ 0x26345: "z\x13\U00026345", // 𦍅
+ 0x26346: "z\x15\U00026346", // 𦍆
+ 0x26347: "z\x16\U00026347", // 𦍇
+ 0x26348: "z\x17\U00026348", // 𦍈
+ 0x26349: "z\x17\U00026349", // 𦍉
+ 0x2634a: "z\x17\U0002634a", // 𦍊
+ 0x2634b: "{\x00\U0002634b", // 𦍋
+ 0x2634c: "{\x00\U0002634c", // 𦍌
+ 0x2634d: "{\x00\U0002634d", // 𦍍
+ 0x2634e: "{\x02\U0002634e", // 𦍎
+ 0x2634f: "{\x02\U0002634f", // 𦍏
+ 0x26350: "{\x02\U00026350", // 𦍐
+ 0x26351: "{\x03\U00026351", // 𦍑
+ 0x26352: "{\x03\U00026352", // 𦍒
+ 0x26353: "{\x03\U00026353", // 𦍓
+ 0x26354: "{\x03\U00026354", // 𦍔
+ 0x26355: "{\x03\U00026355", // 𦍕
+ 0x26356: "{\x03\U00026356", // 𦍖
+ 0x26357: "{\x04\U00026357", // 𦍗
+ 0x26358: "{\x04\U00026358", // 𦍘
+ 0x26359: "{\x04\U00026359", // 𦍙
+ 0x2635a: "{\x04\U0002635a", // 𦍚
+ 0x2635b: "{\x04\U0002635b", // 𦍛
+ 0x2635c: "{\x04\U0002635c", // 𦍜
+ 0x2635d: "{\x04\U0002635d", // 𦍝
+ 0x2635e: "{\x04\U0002635e", // 𦍞
+ 0x2635f: "{\x04\U0002635f", // 𦍟
+ 0x26360: "{\x04\U00026360", // 𦍠
+ 0x26361: "{\x04\U00026361", // 𦍡
+ 0x26362: "{\x04\U00026362", // 𦍢
+ 0x26363: "{\x04\U00026363", // 𦍣
+ 0x26364: "{\x04\U00026364", // 𦍤
+ 0x26365: "{\x05\U00026365", // 𦍥
+ 0x26366: "{\x05\U00026366", // 𦍦
+ 0x26367: "{\x05\U00026367", // 𦍧
+ 0x26368: "{\x05\U00026368", // 𦍨
+ 0x26369: "{\x05\U00026369", // 𦍩
+ 0x2636a: "{\x05\U0002636a", // 𦍪
+ 0x2636b: "{\x05\U0002636b", // 𦍫
+ 0x2636c: "{\x05\U0002636c", // 𦍬
+ 0x2636d: "{\x05\U0002636d", // 𦍭
+ 0x2636e: "{\x04\U0002636e", // 𦍮
+ 0x2636f: "{\x05\U0002636f", // 𦍯
+ 0x26370: "{\x05\U00026370", // 𦍰
+ 0x26371: "{\x05\U00026371", // 𦍱
+ 0x26372: "{\x05\U00026372", // 𦍲
+ 0x26373: "{\x05\U00026373", // 𦍳
+ 0x26374: "{\x05\U00026374", // 𦍴
+ 0x26375: "{\x05\U00026375", // 𦍵
+ 0x26376: "{\x05\U00026376", // 𦍶
+ 0x26377: "{\x05\U00026377", // 𦍷
+ 0x26378: "{\x05\U00026378", // 𦍸
+ 0x26379: "{\x06\U00026379", // 𦍹
+ 0x2637a: "{\x06\U0002637a", // 𦍺
+ 0x2637b: "{\x06\U0002637b", // 𦍻
+ 0x2637c: "{\x06\U0002637c", // 𦍼
+ 0x2637d: "{\x06\U0002637d", // 𦍽
+ 0x2637e: "{\x06\U0002637e", // 𦍾
+ 0x2637f: "{\x06\U0002637f", // 𦍿
+ 0x26380: "{\x06\U00026380", // 𦎀
+ 0x26381: "{\x06\U00026381", // 𦎁
+ 0x26382: "{\x06\U00026382", // 𦎂
+ 0x26383: "{\x06\U00026383", // 𦎃
+ 0x26384: "{\x06\U00026384", // 𦎄
+ 0x26385: "\x1c\n\U00026385", // 𦎅
+ 0x26386: "{\a\U00026386", // 𦎆
+ 0x26387: "{\a\U00026387", // 𦎇
+ 0x26388: "{\a\U00026388", // 𦎈
+ 0x26389: "{\a\U00026389", // 𦎉
+ 0x2638a: "{\a\U0002638a", // 𦎊
+ 0x2638b: "{\a\U0002638b", // 𦎋
+ 0x2638c: "{\a\U0002638c", // 𦎌
+ 0x2638d: "{\a\U0002638d", // 𦎍
+ 0x2638e: "{\a\U0002638e", // 𦎎
+ 0x2638f: "{\a\U0002638f", // 𦎏
+ 0x26390: "{\a\U00026390", // 𦎐
+ 0x26391: "{\a\U00026391", // 𦎑
+ 0x26392: "{\a\U00026392", // 𦎒
+ 0x26393: "{\a\U00026393", // 𦎓
+ 0x26394: "{\a\U00026394", // 𦎔
+ 0x26395: "{\a\U00026395", // 𦎕
+ 0x26396: "{\a\U00026396", // 𦎖
+ 0x26397: "{\b\U00026397", // 𦎗
+ 0x26398: "{\b\U00026398", // 𦎘
+ 0x26399: "{\b\U00026399", // 𦎙
+ 0x2639a: "{\b\U0002639a", // 𦎚
+ 0x2639b: "{\b\U0002639b", // 𦎛
+ 0x2639c: "{\b\U0002639c", // 𦎜
+ 0x2639d: "{\b\U0002639d", // 𦎝
+ 0x2639e: "{\b\U0002639e", // 𦎞
+ 0x2639f: "{\b\U0002639f", // 𦎟
+ 0x263a0: "{\b\U000263a0", // 𦎠
+ 0x263a1: "{\b\U000263a1", // 𦎡
+ 0x263a2: "{\t\U000263a2", // 𦎢
+ 0x263a3: "{\t\U000263a3", // 𦎣
+ 0x263a4: "{\t\U000263a4", // 𦎤
+ 0x263a5: "{\t\U000263a5", // 𦎥
+ 0x263a6: "{\t\U000263a6", // 𦎦
+ 0x263a7: "{\t\U000263a7", // 𦎧
+ 0x263a8: "{\t\U000263a8", // 𦎨
+ 0x263a9: "{\t\U000263a9", // 𦎩
+ 0x263aa: "{\t\U000263aa", // 𦎪
+ 0x263ab: "{\t\U000263ab", // 𦎫
+ 0x263ac: "{\t\U000263ac", // 𦎬
+ 0x263ad: "{\t\U000263ad", // 𦎭
+ 0x263ae: "{\t\U000263ae", // 𦎮
+ 0x263af: "{\n\U000263af", // 𦎯
+ 0x263b0: "{\n\U000263b0", // 𦎰
+ 0x263b1: "{\n\U000263b1", // 𦎱
+ 0x263b2: "{\n\U000263b2", // 𦎲
+ 0x263b3: "{\n\U000263b3", // 𦎳
+ 0x263b4: "{\n\U000263b4", // 𦎴
+ 0x263b5: "{\n\U000263b5", // 𦎵
+ 0x263b6: "{\n\U000263b6", // 𦎶
+ 0x263b7: "{\v\U000263b7", // 𦎷
+ 0x263b8: "{\v\U000263b8", // 𦎸
+ 0x263b9: "{\v\U000263b9", // 𦎹
+ 0x263ba: "{\v\U000263ba", // 𦎺
+ 0x263bb: "{\v\U000263bb", // 𦎻
+ 0x263bc: "{\v\U000263bc", // 𦎼
+ 0x263bd: "{\v\U000263bd", // 𦎽
+ 0x263be: "{\v\U000263be", // 𦎾
+ 0x263bf: "{\v\U000263bf", // 𦎿
+ 0x263c0: "{\v\U000263c0", // 𦏀
+ 0x263c1: "{\v\U000263c1", // 𦏁
+ 0x263c2: "{\v\U000263c2", // 𦏂
+ 0x263c3: "{\v\U000263c3", // 𦏃
+ 0x263c4: "{\v\U000263c4", // 𦏄
+ 0x263c5: "{\f\U000263c5", // 𦏅
+ 0x263c6: "{\f\U000263c6", // 𦏆
+ 0x263c7: "{\f\U000263c7", // 𦏇
+ 0x263c8: "{\f\U000263c8", // 𦏈
+ 0x263c9: "{\f\U000263c9", // 𦏉
+ 0x263ca: "{\f\U000263ca", // 𦏊
+ 0x263cb: "{\f\U000263cb", // 𦏋
+ 0x263cc: "{\f\U000263cc", // 𦏌
+ 0x263cd: "{\f\U000263cd", // 𦏍
+ 0x263ce: "{\f\U000263ce", // 𦏎
+ 0x263cf: "{\f\U000263cf", // 𦏏
+ 0x263d0: "{\f\U000263d0", // 𦏐
+ 0x263d1: "{\f\U000263d1", // 𦏑
+ 0x263d2: "{\f\U000263d2", // 𦏒
+ 0x263d3: "{\f\U000263d3", // 𦏓
+ 0x263d4: "{\f\U000263d4", // 𦏔
+ 0x263d5: "{\r\U000263d5", // 𦏕
+ 0x263d6: "{\r\U000263d6", // 𦏖
+ 0x263d7: "{\r\U000263d7", // 𦏗
+ 0x263d8: "{\r\U000263d8", // 𦏘
+ 0x263d9: "{\r\U000263d9", // 𦏙
+ 0x263da: "{\r\U000263da", // 𦏚
+ 0x263db: "{\r\U000263db", // 𦏛
+ 0x263dc: "{\x0e\U000263dc", // 𦏜
+ 0x263dd: "{\x0e\U000263dd", // 𦏝
+ 0x263de: "{\x0e\U000263de", // 𦏞
+ 0x263df: "{\x0e\U000263df", // 𦏟
+ 0x263e0: "{\x0e\U000263e0", // 𦏠
+ 0x263e1: "{\x0e\U000263e1", // 𦏡
+ 0x263e2: "{\x0f\U000263e2", // 𦏢
+ 0x263e3: "{\x0f\U000263e3", // 𦏣
+ 0x263e4: "{\x0f\U000263e4", // 𦏤
+ 0x263e5: "{\x0f\U000263e5", // 𦏥
+ 0x263e6: "{\x0f\U000263e6", // 𦏦
+ 0x263e7: "{\x0f\U000263e7", // 𦏧
+ 0x263e8: "{\x10\U000263e8", // 𦏨
+ 0x263e9: "{\x10\U000263e9", // 𦏩
+ 0x263ea: "{\x11\U000263ea", // 𦏪
+ 0x263eb: "{\x11\U000263eb", // 𦏫
+ 0x263ec: "{\x12\U000263ec", // 𦏬
+ 0x263ed: "{\x13\U000263ed", // 𦏭
+ 0x263ee: "{\x14\U000263ee", // 𦏮
+ 0x263ef: "{\x15\U000263ef", // 𦏯
+ 0x263f0: "{\x18\U000263f0", // 𦏰
+ 0x263f1: "{\x18\U000263f1", // 𦏱
+ 0x263f2: "|\x02\U000263f2", // 𦏲
+ 0x263f3: "|\x01\U000263f3", // 𦏳
+ 0x263f4: "|\x03\U000263f4", // 𦏴
+ 0x263f5: "|\x03\U000263f5", // 𦏵
+ 0x263f6: "|\x03\U000263f6", // 𦏶
+ 0x263f7: "|\x03\U000263f7", // 𦏷
+ 0x263f8: "|\x03\U000263f8", // 𦏸
+ 0x263f9: "|\x03\U000263f9", // 𦏹
+ 0x263fa: "|\x03\U000263fa", // 𦏺
+ 0x263fb: "|\x03\U000263fb", // 𦏻
+ 0x263fc: "|\x03\U000263fc", // 𦏼
+ 0x263fd: "|\x03\U000263fd", // 𦏽
+ 0x263fe: "|\x03\U000263fe", // 𦏾
+ 0x263ff: "|\x03\U000263ff", // 𦏿
+ 0x26400: "|\x03\U00026400", // 𦐀
+ 0x26401: "|\x03\U00026401", // 𦐁
+ 0x26402: "|\x04\U00026402", // 𦐂
+ 0x26403: "|\x04\U00026403", // 𦐃
+ 0x26404: "|\x04\U00026404", // 𦐄
+ 0x26405: "|\x04\U00026405", // 𦐅
+ 0x26406: "|\x04\U00026406", // 𦐆
+ 0x26407: "|\x04\U00026407", // 𦐇
+ 0x26408: "|\x04\U00026408", // 𦐈
+ 0x26409: "|\x04\U00026409", // 𦐉
+ 0x2640a: "|\x04\U0002640a", // 𦐊
+ 0x2640b: "|\x04\U0002640b", // 𦐋
+ 0x2640c: "|\x04\U0002640c", // 𦐌
+ 0x2640d: "|\x04\U0002640d", // 𦐍
+ 0x2640e: "|\x04\U0002640e", // 𦐎
+ 0x2640f: "|\x04\U0002640f", // 𦐏
+ 0x26410: "|\x04\U00026410", // 𦐐
+ 0x26411: "|\x04\U00026411", // 𦐑
+ 0x26412: "|\x04\U00026412", // 𦐒
+ 0x26413: "|\x04\U00026413", // 𦐓
+ 0x26414: "|\x04\U00026414", // 𦐔
+ 0x26415: "|\x05\U00026415", // 𦐕
+ 0x26416: "|\x05\U00026416", // 𦐖
+ 0x26417: "|\x05\U00026417", // 𦐗
+ 0x26418: "|\x05\U00026418", // 𦐘
+ 0x26419: "|\x05\U00026419", // 𦐙
+ 0x2641a: "|\x05\U0002641a", // 𦐚
+ 0x2641b: "|\x05\U0002641b", // 𦐛
+ 0x2641c: "|\x05\U0002641c", // 𦐜
+ 0x2641d: "|\x05\U0002641d", // 𦐝
+ 0x2641e: "|\x05\U0002641e", // 𦐞
+ 0x2641f: "|\x05\U0002641f", // 𦐟
+ 0x26420: "|\x05\U00026420", // 𦐠
+ 0x26421: "|\x05\U00026421", // 𦐡
+ 0x26422: "|\x05\U00026422", // 𦐢
+ 0x26423: "|\x06\U00026423", // 𦐣
+ 0x26424: "|\x06\U00026424", // 𦐤
+ 0x26425: "|\x06\U00026425", // 𦐥
+ 0x26426: "|\x06\U00026426", // 𦐦
+ 0x26427: "|\x06\U00026427", // 𦐧
+ 0x26428: "|\x06\U00026428", // 𦐨
+ 0x26429: "|\x06\U00026429", // 𦐩
+ 0x2642a: "|\x06\U0002642a", // 𦐪
+ 0x2642b: "|\x06\U0002642b", // 𦐫
+ 0x2642c: "|\x06\U0002642c", // 𦐬
+ 0x2642d: "|\x06\U0002642d", // 𦐭
+ 0x2642e: "|\x06\U0002642e", // 𦐮
+ 0x2642f: "|\x06\U0002642f", // 𦐯
+ 0x26430: "|\x06\U00026430", // 𦐰
+ 0x26431: "|\x06\U00026431", // 𦐱
+ 0x26432: "|\x06\U00026432", // 𦐲
+ 0x26433: "|\x06\U00026433", // 𦐳
+ 0x26434: "|\x06\U00026434", // 𦐴
+ 0x26435: "|\x06\U00026435", // 𦐵
+ 0x26436: "|\x06\U00026436", // 𦐶
+ 0x26437: "|\x06\U00026437", // 𦐷
+ 0x26438: "|\a\U00026438", // 𦐸
+ 0x26439: "|\a\U00026439", // 𦐹
+ 0x2643a: "|\a\U0002643a", // 𦐺
+ 0x2643b: "|\a\U0002643b", // 𦐻
+ 0x2643c: "|\a\U0002643c", // 𦐼
+ 0x2643d: "|\a\U0002643d", // 𦐽
+ 0x2643e: "|\a\U0002643e", // 𦐾
+ 0x2643f: "|\a\U0002643f", // 𦐿
+ 0x26440: "|\a\U00026440", // 𦑀
+ 0x26441: "|\a\U00026441", // 𦑁
+ 0x26442: "|\a\U00026442", // 𦑂
+ 0x26443: "|\a\U00026443", // 𦑃
+ 0x26444: "|\a\U00026444", // 𦑄
+ 0x26445: "|\b\U00026445", // 𦑅
+ 0x26446: "|\a\U00026446", // 𦑆
+ 0x26447: "|\b\U00026447", // 𦑇
+ 0x26448: "|\b\U00026448", // 𦑈
+ 0x26449: "|\b\U00026449", // 𦑉
+ 0x2644a: "|\b\U0002644a", // 𦑊
+ 0x2644b: "|\b\U0002644b", // 𦑋
+ 0x2644c: "|\b\U0002644c", // 𦑌
+ 0x2644d: "|\b\U0002644d", // 𦑍
+ 0x2644e: "|\b\U0002644e", // 𦑎
+ 0x2644f: "|\b\U0002644f", // 𦑏
+ 0x26450: "|\b\U00026450", // 𦑐
+ 0x26451: "=\v\U00026451", // 𦑑
+ 0x26452: "|\b\U00026452", // 𦑒
+ 0x26453: "|\b\U00026453", // 𦑓
+ 0x26454: "|\b\U00026454", // 𦑔
+ 0x26455: "|\b\U00026455", // 𦑕
+ 0x26456: "|\b\U00026456", // 𦑖
+ 0x26457: "|\b\U00026457", // 𦑗
+ 0x26458: "|\t\U00026458", // 𦑘
+ 0x26459: "|\t\U00026459", // 𦑙
+ 0x2645a: "|\t\U0002645a", // 𦑚
+ 0x2645b: "|\t\U0002645b", // 𦑛
+ 0x2645c: "|\t\U0002645c", // 𦑜
+ 0x2645d: "|\t\U0002645d", // 𦑝
+ 0x2645e: "|\t\U0002645e", // 𦑞
+ 0x2645f: "|\t\U0002645f", // 𦑟
+ 0x26460: "|\t\U00026460", // 𦑠
+ 0x26461: "|\t\U00026461", // 𦑡
+ 0x26462: "|\t\U00026462", // 𦑢
+ 0x26463: "|\t\U00026463", // 𦑣
+ 0x26464: "|\t\U00026464", // 𦑤
+ 0x26465: "|\t\U00026465", // 𦑥
+ 0x26466: "|\t\U00026466", // 𦑦
+ 0x26467: "|\t\U00026467", // 𦑧
+ 0x26468: "|\t\U00026468", // 𦑨
+ 0x26469: "|\t\U00026469", // 𦑩
+ 0x2646a: "|\t\U0002646a", // 𦑪
+ 0x2646b: "|\t\U0002646b", // 𦑫
+ 0x2646c: "|\t\U0002646c", // 𦑬
+ 0x2646d: "|\t\U0002646d", // 𦑭
+ 0x2646e: "|\t\U0002646e", // 𦑮
+ 0x2646f: "|\t\U0002646f", // 𦑯
+ 0x26470: "|\n\U00026470", // 𦑰
+ 0x26471: "|\n\U00026471", // 𦑱
+ 0x26472: "|\n\U00026472", // 𦑲
+ 0x26473: "|\n\U00026473", // 𦑳
+ 0x26474: "|\n\U00026474", // 𦑴
+ 0x26475: "|\n\U00026475", // 𦑵
+ 0x26476: "|\n\U00026476", // 𦑶
+ 0x26477: "|\n\U00026477", // 𦑷
+ 0x26478: "|\n\U00026478", // 𦑸
+ 0x26479: "|\n\U00026479", // 𦑹
+ 0x2647a: "|\n\U0002647a", // 𦑺
+ 0x2647b: "|\t\U0002647b", // 𦑻
+ 0x2647c: "|\n\U0002647c", // 𦑼
+ 0x2647d: "|\n\U0002647d", // 𦑽
+ 0x2647e: "|\n\U0002647e", // 𦑾
+ 0x2647f: "|\n\U0002647f", // 𦑿
+ 0x26480: "|\n\U00026480", // 𦒀
+ 0x26481: "|\n\U00026481", // 𦒁
+ 0x26482: "|\n\U00026482", // 𦒂
+ 0x26483: "|\v\U00026483", // 𦒃
+ 0x26484: "|\v\U00026484", // 𦒄
+ 0x26485: "|\v\U00026485", // 𦒅
+ 0x26486: "|\v\U00026486", // 𦒆
+ 0x26487: "|\v\U00026487", // 𦒇
+ 0x26488: "|\v\U00026488", // 𦒈
+ 0x26489: "|\v\U00026489", // 𦒉
+ 0x2648a: "|\v\U0002648a", // 𦒊
+ 0x2648b: "|\v\U0002648b", // 𦒋
+ 0x2648c: "|\v\U0002648c", // 𦒌
+ 0x2648d: "|\f\U0002648d", // 𦒍
+ 0x2648e: "|\f\U0002648e", // 𦒎
+ 0x2648f: "|\f\U0002648f", // 𦒏
+ 0x26490: "|\f\U00026490", // 𦒐
+ 0x26491: "|\f\U00026491", // 𦒑
+ 0x26492: "|\f\U00026492", // 𦒒
+ 0x26493: "|\f\U00026493", // 𦒓
+ 0x26494: "|\f\U00026494", // 𦒔
+ 0x26495: "|\f\U00026495", // 𦒕
+ 0x26496: "|\f\U00026496", // 𦒖
+ 0x26497: "|\f\U00026497", // 𦒗
+ 0x26498: "|\f\U00026498", // 𦒘
+ 0x26499: "|\f\U00026499", // 𦒙
+ 0x2649a: "|\f\U0002649a", // 𦒚
+ 0x2649b: "|\f\U0002649b", // 𦒛
+ 0x2649c: "|\r\U0002649c", // 𦒜
+ 0x2649d: "|\r\U0002649d", // 𦒝
+ 0x2649e: "|\n\U0002649e", // 𦒞
+ 0x2649f: "|\f\U0002649f", // 𦒟
+ 0x264a0: "|\r\U000264a0", // 𦒠
+ 0x264a1: "|\r\U000264a1", // 𦒡
+ 0x264a2: "|\x0e\U000264a2", // 𦒢
+ 0x264a3: "|\x0e\U000264a3", // 𦒣
+ 0x264a4: "|\x0e\U000264a4", // 𦒤
+ 0x264a5: "|\x0e\U000264a5", // 𦒥
+ 0x264a6: "|\x0f\U000264a6", // 𦒦
+ 0x264a7: "|\x10\U000264a7", // 𦒧
+ 0x264a8: "|\x0f\U000264a8", // 𦒨
+ 0x264a9: "|\x0f\U000264a9", // 𦒩
+ 0x264aa: "|\x0e\U000264aa", // 𦒪
+ 0x264ab: "|\x0e\U000264ab", // 𦒫
+ 0x264ac: "|\x0f\U000264ac", // 𦒬
+ 0x264ad: "|\x10\U000264ad", // 𦒭
+ 0x264ae: "|\x10\U000264ae", // 𦒮
+ 0x264af: "|\x10\U000264af", // 𦒯
+ 0x264b0: "|\x12\U000264b0", // 𦒰
+ 0x264b1: "}\x02\U000264b1", // 𦒱
+ 0x264b2: "}\x02\U000264b2", // 𦒲
+ 0x264b3: "}\x03\U000264b3", // 𦒳
+ 0x264b4: "}\x03\U000264b4", // 𦒴
+ 0x264b5: "}\x03\U000264b5", // 𦒵
+ 0x264b6: "}\x04\U000264b6", // 𦒶
+ 0x264b7: "}\x04\U000264b7", // 𦒷
+ 0x264b8: "}\x04\U000264b8", // 𦒸
+ 0x264b9: "}\x04\U000264b9", // 𦒹
+ 0x264ba: "}\x05\U000264ba", // 𦒺
+ 0x264bb: "}\x05\U000264bb", // 𦒻
+ 0x264bc: "}\x05\U000264bc", // 𦒼
+ 0x264bd: "}\x05\U000264bd", // 𦒽
+ 0x264be: "}\x05\U000264be", // 𦒾
+ 0x264bf: "}\x05\U000264bf", // 𦒿
+ 0x264c0: "}\x06\U000264c0", // 𦓀
+ 0x264c1: "}\b\U000264c1", // 𦓁
+ 0x264c2: "}\t\U000264c2", // 𦓂
+ 0x264c3: "}\f\U000264c3", // 𦓃
+ 0x264c4: "}\n\U000264c4", // 𦓄
+ 0x264c5: "}\n\U000264c5", // 𦓅
+ 0x264c6: "}\v\U000264c6", // 𦓆
+ 0x264c7: "}\v\U000264c7", // 𦓇
+ 0x264c8: "}\f\U000264c8", // 𦓈
+ 0x264c9: "}\f\U000264c9", // 𦓉
+ 0x264ca: "}\r\U000264ca", // 𦓊
+ 0x264cb: "}\x12\U000264cb", // 𦓋
+ 0x264cc: "}\x12\U000264cc", // 𦓌
+ 0x264cd: "}\x15\U000264cd", // 𦓍
+ 0x264ce: "~\x02\U000264ce", // 𦓎
+ 0x264cf: "~\x02\U000264cf", // 𦓏
+ 0x264d0: "~\x00\U000264d0", // 𦓐
+ 0x264d1: "~\x02\U000264d1", // 𦓑
+ 0x264d2: "~\x04\U000264d2", // 𦓒
+ 0x264d3: "~\x05\U000264d3", // 𦓓
+ 0x264d4: "~\x06\U000264d4", // 𦓔
+ 0x264d5: "~\x06\U000264d5", // 𦓕
+ 0x264d6: "~\a\U000264d6", // 𦓖
+ 0x264d7: "~\b\U000264d7", // 𦓗
+ 0x264d8: "~\t\U000264d8", // 𦓘
+ 0x264d9: "~\t\U000264d9", // 𦓙
+ 0x264da: "~\t\U000264da", // 𦓚
+ 0x264db: "~\t\U000264db", // 𦓛
+ 0x264dc: "~\t\U000264dc", // 𦓜
+ 0x264dd: "~\n\U000264dd", // 𦓝
+ 0x264de: "~\n\U000264de", // 𦓞
+ 0x264df: "~\v\U000264df", // 𦓟
+ 0x264e0: "~\v\U000264e0", // 𦓠
+ 0x264e1: "~\v\U000264e1", // 𦓡
+ 0x264e2: "~\x10\U000264e2", // 𦓢
+ 0x264e3: "~\x12\U000264e3", // 𦓣
+ 0x264e4: "\u007f\x00\U000264e4", // 𦓤
+ 0x264e5: "\u007f\x02\U000264e5", // 𦓥
+ 0x264e6: "\u007f\x02\U000264e6", // 𦓦
+ 0x264e7: "\u007f\x02\U000264e7", // 𦓧
+ 0x264e8: "\u007f\x03\U000264e8", // 𦓨
+ 0x264e9: "\u007f\x03\U000264e9", // 𦓩
+ 0x264ea: "\u007f\x03\U000264ea", // 𦓪
+ 0x264eb: "\u007f\x04\U000264eb", // 𦓫
+ 0x264ec: "\u007f\x05\U000264ec", // 𦓬
+ 0x264ed: "\u007f\x05\U000264ed", // 𦓭
+ 0x264ee: "\u007f\x05\U000264ee", // 𦓮
+ 0x264ef: "\u007f\x06\U000264ef", // 𦓯
+ 0x264f0: "\u007f\x06\U000264f0", // 𦓰
+ 0x264f1: "\u007f\x06\U000264f1", // 𦓱
+ 0x264f2: "\u007f\x06\U000264f2", // 𦓲
+ 0x264f3: "\u007f\x06\U000264f3", // 𦓳
+ 0x264f4: "\u007f\a\U000264f4", // 𦓴
+ 0x264f5: "\u007f\a\U000264f5", // 𦓵
+ 0x264f6: "\u007f\a\U000264f6", // 𦓶
+ 0x264f7: "\u007f\b\U000264f7", // 𦓷
+ 0x264f8: "\u007f\b\U000264f8", // 𦓸
+ 0x264f9: "\u007f\b\U000264f9", // 𦓹
+ 0x264fa: "\u007f\b\U000264fa", // 𦓺
+ 0x264fb: "\u007f\b\U000264fb", // 𦓻
+ 0x264fc: "\u007f\b\U000264fc", // 𦓼
+ 0x264fd: "\u007f\b\U000264fd", // 𦓽
+ 0x264fe: "\u007f\b\U000264fe", // 𦓾
+ 0x264ff: "\u007f\b\U000264ff", // 𦓿
+ 0x26500: "\u007f\b\U00026500", // 𦔀
+ 0x26501: "\u007f\b\U00026501", // 𦔁
+ 0x26502: "\u007f\t\U00026502", // 𦔂
+ 0x26503: "\u007f\t\U00026503", // 𦔃
+ 0x26504: "\u007f\t\U00026504", // 𦔄
+ 0x26505: "\u007f\t\U00026505", // 𦔅
+ 0x26506: "\u007f\t\U00026506", // 𦔆
+ 0x26507: "\u007f\t\U00026507", // 𦔇
+ 0x26508: "\u007f\t\U00026508", // 𦔈
+ 0x26509: "\u007f\t\U00026509", // 𦔉
+ 0x2650a: "\u007f\t\U0002650a", // 𦔊
+ 0x2650b: "\u007f\n\U0002650b", // 𦔋
+ 0x2650c: "\u007f\n\U0002650c", // 𦔌
+ 0x2650d: "\u007f\n\U0002650d", // 𦔍
+ 0x2650e: "\u007f\n\U0002650e", // 𦔎
+ 0x2650f: "\u007f\n\U0002650f", // 𦔏
+ 0x26510: "\u007f\n\U00026510", // 𦔐
+ 0x26511: "\u007f\n\U00026511", // 𦔑
+ 0x26512: "\u007f\n\U00026512", // 𦔒
+ 0x26513: "\u007f\v\U00026513", // 𦔓
+ 0x26514: "\u007f\v\U00026514", // 𦔔
+ 0x26515: "\u007f\v\U00026515", // 𦔕
+ 0x26516: "\u007f\v\U00026516", // 𦔖
+ 0x26517: "\u007f\v\U00026517", // 𦔗
+ 0x26518: "\u007f\v\U00026518", // 𦔘
+ 0x26519: "\u007f\v\U00026519", // 𦔙
+ 0x2651a: "\u007f\v\U0002651a", // 𦔚
+ 0x2651b: "\u007f\f\U0002651b", // 𦔛
+ 0x2651c: "\u007f\f\U0002651c", // 𦔜
+ 0x2651d: "\u007f\f\U0002651d", // 𦔝
+ 0x2651e: "\u007f\f\U0002651e", // 𦔞
+ 0x2651f: "\u007f\r\U0002651f", // 𦔟
+ 0x26520: "\u007f\f\U00026520", // 𦔠
+ 0x26521: "\u007f\f\U00026521", // 𦔡
+ 0x26522: "\u007f\f\U00026522", // 𦔢
+ 0x26523: "\u007f\f\U00026523", // 𦔣
+ 0x26524: "\u007f\f\U00026524", // 𦔤
+ 0x26525: "\u007f\r\U00026525", // 𦔥
+ 0x26526: "\u007f\r\U00026526", // 𦔦
+ 0x26527: "\u007f\r\U00026527", // 𦔧
+ 0x26528: "\u007f\r\U00026528", // 𦔨
+ 0x26529: "\u007f\x0f\U00026529", // 𦔩
+ 0x2652a: "\u007f\x0f\U0002652a", // 𦔪
+ 0x2652b: "\u007f\x12\U0002652b", // 𦔫
+ 0x2652c: "\u007f\x12\U0002652c", // 𦔬
+ 0x2652d: "\u007f\x13\U0002652d", // 𦔭
+ 0x2652e: "\x80\x01\U0002652e", // 𦔮
+ 0x2652f: "\x80\x02\U0002652f", // 𦔯
+ 0x26530: "\x80\x02\U00026530", // 𦔰
+ 0x26531: "\x80\x02\U00026531", // 𦔱
+ 0x26532: "\x80\x02\U00026532", // 𦔲
+ 0x26533: "\x80\x02\U00026533", // 𦔳
+ 0x26534: "\x80\x02\U00026534", // 𦔴
+ 0x26535: "\x80\x02\U00026535", // 𦔵
+ 0x26536: "\x80\x02\U00026536", // 𦔶
+ 0x26537: "\x80\x03\U00026537", // 𦔷
+ 0x26538: "\x80\x03\U00026538", // 𦔸
+ 0x26539: "\x80\x03\U00026539", // 𦔹
+ 0x2653a: "\x80\x03\U0002653a", // 𦔺
+ 0x2653b: "\x80\x03\U0002653b", // 𦔻
+ 0x2653c: "\x80\x04\U0002653c", // 𦔼
+ 0x2653d: "\x80\x04\U0002653d", // 𦔽
+ 0x2653e: "\x80\x04\U0002653e", // 𦔾
+ 0x2653f: "\x80\x04\U0002653f", // 𦔿
+ 0x26540: "\x80\x04\U00026540", // 𦕀
+ 0x26541: "\x80\x04\U00026541", // 𦕁
+ 0x26542: "\x80\x04\U00026542", // 𦕂
+ 0x26543: "\x80\x04\U00026543", // 𦕃
+ 0x26544: "\x80\x04\U00026544", // 𦕄
+ 0x26545: "\x80\x04\U00026545", // 𦕅
+ 0x26546: "\x80\x04\U00026546", // 𦕆
+ 0x26547: "\x80\x04\U00026547", // 𦕇
+ 0x26548: "\x80\x04\U00026548", // 𦕈
+ 0x26549: "\x80\x04\U00026549", // 𦕉
+ 0x2654a: "\x80\x04\U0002654a", // 𦕊
+ 0x2654b: "\x80\x04\U0002654b", // 𦕋
+ 0x2654c: "\x80\x04\U0002654c", // 𦕌
+ 0x2654d: "\x80\x04\U0002654d", // 𦕍
+ 0x2654e: "\x80\x04\U0002654e", // 𦕎
+ 0x2654f: "\x80\x04\U0002654f", // 𦕏
+ 0x26550: "\x80\x05\U00026550", // 𦕐
+ 0x26551: "\x80\x05\U00026551", // 𦕑
+ 0x26552: "\x80\x05\U00026552", // 𦕒
+ 0x26553: "\x80\x05\U00026553", // 𦕓
+ 0x26554: "\x80\x05\U00026554", // 𦕔
+ 0x26555: "\x80\x05\U00026555", // 𦕕
+ 0x26556: "\x80\x05\U00026556", // 𦕖
+ 0x26557: "\x80\x05\U00026557", // 𦕗
+ 0x26558: "\x80\x05\U00026558", // 𦕘
+ 0x26559: "\x80\x05\U00026559", // 𦕙
+ 0x2655a: "\x80\x05\U0002655a", // 𦕚
+ 0x2655b: "\x80\x05\U0002655b", // 𦕛
+ 0x2655c: "\x80\x05\U0002655c", // 𦕜
+ 0x2655d: "\x80\x05\U0002655d", // 𦕝
+ 0x2655e: "\x80\x05\U0002655e", // 𦕞
+ 0x2655f: "\x80\x05\U0002655f", // 𦕟
+ 0x26560: "\x80\x06\U00026560", // 𦕠
+ 0x26561: "\x80\x06\U00026561", // 𦕡
+ 0x26562: "\x80\x06\U00026562", // 𦕢
+ 0x26563: "\x80\a\U00026563", // 𦕣
+ 0x26564: "\x80\x06\U00026564", // 𦕤
+ 0x26565: "\x80\x06\U00026565", // 𦕥
+ 0x26566: "\x80\x06\U00026566", // 𦕦
+ 0x26567: "\x80\x06\U00026567", // 𦕧
+ 0x26568: "\x80\x06\U00026568", // 𦕨
+ 0x26569: "\x80\x06\U00026569", // 𦕩
+ 0x2656a: "\x80\x06\U0002656a", // 𦕪
+ 0x2656b: "\x80\x06\U0002656b", // 𦕫
+ 0x2656c: "\x80\x06\U0002656c", // 𦕬
+ 0x2656d: "\x80\x06\U0002656d", // 𦕭
+ 0x2656e: "\x80\x06\U0002656e", // 𦕮
+ 0x2656f: "\x80\x06\U0002656f", // 𦕯
+ 0x26570: "\x80\x06\U00026570", // 𦕰
+ 0x26571: "\x80\x06\U00026571", // 𦕱
+ 0x26572: "\x80\x06\U00026572", // 𦕲
+ 0x26573: "\x80\x06\U00026573", // 𦕳
+ 0x26574: "\x80\x06\U00026574", // 𦕴
+ 0x26575: "\x80\a\U00026575", // 𦕵
+ 0x26576: "\x80\a\U00026576", // 𦕶
+ 0x26577: "\x80\a\U00026577", // 𦕷
+ 0x26578: "\x80\a\U00026578", // 𦕸
+ 0x26579: "\x80\a\U00026579", // 𦕹
+ 0x2657a: "\x80\a\U0002657a", // 𦕺
+ 0x2657b: "\x80\a\U0002657b", // 𦕻
+ 0x2657c: "\x80\a\U0002657c", // 𦕼
+ 0x2657d: "\x80\a\U0002657d", // 𦕽
+ 0x2657e: "\x80\a\U0002657e", // 𦕾
+ 0x2657f: "\x80\a\U0002657f", // 𦕿
+ 0x26580: "\x80\a\U00026580", // 𦖀
+ 0x26581: "\x80\a\U00026581", // 𦖁
+ 0x26582: "\x80\a\U00026582", // 𦖂
+ 0x26583: "\x80\a\U00026583", // 𦖃
+ 0x26584: "\x80\a\U00026584", // 𦖄
+ 0x26585: "\x80\a\U00026585", // 𦖅
+ 0x26586: "\x80\a\U00026586", // 𦖆
+ 0x26587: "\x80\a\U00026587", // 𦖇
+ 0x26588: "\x80\b\U00026588", // 𦖈
+ 0x26589: "\x80\b\U00026589", // 𦖉
+ 0x2658a: "\x80\b\U0002658a", // 𦖊
+ 0x2658b: "\x80\b\U0002658b", // 𦖋
+ 0x2658c: "\x80\b\U0002658c", // 𦖌
+ 0x2658d: "\x80\b\U0002658d", // 𦖍
+ 0x2658e: "\x80\b\U0002658e", // 𦖎
+ 0x2658f: "\x80\b\U0002658f", // 𦖏
+ 0x26590: "\x80\b\U00026590", // 𦖐
+ 0x26591: "\x80\b\U00026591", // 𦖑
+ 0x26592: "\x80\b\U00026592", // 𦖒
+ 0x26593: "\x80\b\U00026593", // 𦖓
+ 0x26594: "\x80\b\U00026594", // 𦖔
+ 0x26595: "\x80\b\U00026595", // 𦖕
+ 0x26596: "\x80\b\U00026596", // 𦖖
+ 0x26597: "\x80\a\U00026597", // 𦖗
+ 0x26598: "\x80\b\U00026598", // 𦖘
+ 0x26599: "\x80\b\U00026599", // 𦖙
+ 0x2659a: "\x80\b\U0002659a", // 𦖚
+ 0x2659b: "\x80\b\U0002659b", // 𦖛
+ 0x2659c: "\x80\b\U0002659c", // 𦖜
+ 0x2659d: "\x80\b\U0002659d", // 𦖝
+ 0x2659e: "\x80\b\U0002659e", // 𦖞
+ 0x2659f: "\x80\b\U0002659f", // 𦖟
+ 0x265a0: "\x80\b\U000265a0", // 𦖠
+ 0x265a1: "\x80\b\U000265a1", // 𦖡
+ 0x265a2: "\x80\t\U000265a2", // 𦖢
+ 0x265a3: "\x80\t\U000265a3", // 𦖣
+ 0x265a4: "\x80\t\U000265a4", // 𦖤
+ 0x265a5: "\x80\t\U000265a5", // 𦖥
+ 0x265a6: "\x80\t\U000265a6", // 𦖦
+ 0x265a7: "\x80\t\U000265a7", // 𦖧
+ 0x265a8: "\x80\t\U000265a8", // 𦖨
+ 0x265a9: "\x80\t\U000265a9", // 𦖩
+ 0x265aa: "\x80\t\U000265aa", // 𦖪
+ 0x265ab: "\x80\t\U000265ab", // 𦖫
+ 0x265ac: "\x80\t\U000265ac", // 𦖬
+ 0x265ad: "\x80\t\U000265ad", // 𦖭
+ 0x265ae: "\x80\t\U000265ae", // 𦖮
+ 0x265af: "\x80\t\U000265af", // 𦖯
+ 0x265b0: "\x80\t\U000265b0", // 𦖰
+ 0x265b1: "\x80\t\U000265b1", // 𦖱
+ 0x265b2: "\x80\t\U000265b2", // 𦖲
+ 0x265b3: "\x80\t\U000265b3", // 𦖳
+ 0x265b4: "\x80\t\U000265b4", // 𦖴
+ 0x265b5: "\x80\t\U000265b5", // 𦖵
+ 0x265b6: "\x80\t\U000265b6", // 𦖶
+ 0x265b7: "\x80\t\U000265b7", // 𦖷
+ 0x265b8: "\x80\t\U000265b8", // 𦖸
+ 0x265b9: "\x80\t\U000265b9", // 𦖹
+ 0x265ba: "\x80\t\U000265ba", // 𦖺
+ 0x265bb: "\x80\t\U000265bb", // 𦖻
+ 0x265bc: "\x80\n\U000265bc", // 𦖼
+ 0x265bd: "\x80\n\U000265bd", // 𦖽
+ 0x265be: "\x80\n\U000265be", // 𦖾
+ 0x265bf: "\x80\n\U000265bf", // 𦖿
+ 0x265c0: "\x80\n\U000265c0", // 𦗀
+ 0x265c1: "\x80\n\U000265c1", // 𦗁
+ 0x265c2: "\x80\n\U000265c2", // 𦗂
+ 0x265c3: "\x80\n\U000265c3", // 𦗃
+ 0x265c4: "\x80\n\U000265c4", // 𦗄
+ 0x265c5: "\x80\n\U000265c5", // 𦗅
+ 0x265c6: "\x80\n\U000265c6", // 𦗆
+ 0x265c7: "\x80\t\U000265c7", // 𦗇
+ 0x265c8: "\x80\n\U000265c8", // 𦗈
+ 0x265c9: "\x80\n\U000265c9", // 𦗉
+ 0x265ca: "\x80\n\U000265ca", // 𦗊
+ 0x265cb: "\x80\n\U000265cb", // 𦗋
+ 0x265cc: "\x80\n\U000265cc", // 𦗌
+ 0x265cd: "\x80\n\U000265cd", // 𦗍
+ 0x265ce: "\x80\n\U000265ce", // 𦗎
+ 0x265cf: "\x80\n\U000265cf", // 𦗏
+ 0x265d0: "\x80\v\U000265d0", // 𦗐
+ 0x265d1: "\x80\v\U000265d1", // 𦗑
+ 0x265d2: "\x80\v\U000265d2", // 𦗒
+ 0x265d3: "\x80\v\U000265d3", // 𦗓
+ 0x265d4: "\x80\v\U000265d4", // 𦗔
+ 0x265d5: "\x80\v\U000265d5", // 𦗕
+ 0x265d6: "\x80\v\U000265d6", // 𦗖
+ 0x265d7: "\x80\v\U000265d7", // 𦗗
+ 0x265d8: "\x80\v\U000265d8", // 𦗘
+ 0x265d9: "\x80\v\U000265d9", // 𦗙
+ 0x265da: "\x80\v\U000265da", // 𦗚
+ 0x265db: "\x80\v\U000265db", // 𦗛
+ 0x265dc: "\x80\v\U000265dc", // 𦗜
+ 0x265dd: "\x80\v\U000265dd", // 𦗝
+ 0x265de: "\x80\v\U000265de", // 𦗞
+ 0x265df: "\x80\f\U000265df", // 𦗟
+ 0x265e0: "\x80\f\U000265e0", // 𦗠
+ 0x265e1: "\x80\f\U000265e1", // 𦗡
+ 0x265e2: "\x80\f\U000265e2", // 𦗢
+ 0x265e3: "\x80\f\U000265e3", // 𦗣
+ 0x265e4: "\x80\f\U000265e4", // 𦗤
+ 0x265e5: "\x80\f\U000265e5", // 𦗥
+ 0x265e6: "\x80\f\U000265e6", // 𦗦
+ 0x265e7: "\x80\f\U000265e7", // 𦗧
+ 0x265e8: "\x80\f\U000265e8", // 𦗨
+ 0x265e9: "\x80\f\U000265e9", // 𦗩
+ 0x265ea: "\x80\f\U000265ea", // 𦗪
+ 0x265eb: "\x80\f\U000265eb", // 𦗫
+ 0x265ec: "\x80\f\U000265ec", // 𦗬
+ 0x265ed: "\x80\f\U000265ed", // 𦗭
+ 0x265ee: "\x80\f\U000265ee", // 𦗮
+ 0x265ef: "\x80\f\U000265ef", // 𦗯
+ 0x265f0: "\x80\f\U000265f0", // 𦗰
+ 0x265f1: "\x80\f\U000265f1", // 𦗱
+ 0x265f2: "\x80\f\U000265f2", // 𦗲
+ 0x265f3: "\x80\r\U000265f3", // 𦗳
+ 0x265f4: "\x80\r\U000265f4", // 𦗴
+ 0x265f5: "\x80\r\U000265f5", // 𦗵
+ 0x265f6: "\x80\r\U000265f6", // 𦗶
+ 0x265f7: "\x80\r\U000265f7", // 𦗷
+ 0x265f8: "\x80\r\U000265f8", // 𦗸
+ 0x265f9: "\x80\r\U000265f9", // 𦗹
+ 0x265fa: "\x80\r\U000265fa", // 𦗺
+ 0x265fb: "\x80\r\U000265fb", // 𦗻
+ 0x265fc: "\x80\r\U000265fc", // 𦗼
+ 0x265fd: "\x80\r\U000265fd", // 𦗽
+ 0x265fe: "\x80\x0e\U000265fe", // 𦗾
+ 0x265ff: "\x80\x0e\U000265ff", // 𦗿
+ 0x26600: "\x80\x0e\U00026600", // 𦘀
+ 0x26601: "\x80\x0e\U00026601", // 𦘁
+ 0x26602: "\x80\x0e\U00026602", // 𦘂
+ 0x26603: "\x80\x0e\U00026603", // 𦘃
+ 0x26604: "\x80\x0e\U00026604", // 𦘄
+ 0x26605: "\x80\x0f\U00026605", // 𦘅
+ 0x26606: "\x80\x0f\U00026606", // 𦘆
+ 0x26607: "\x80\x0f\U00026607", // 𦘇
+ 0x26608: "\x80\x0f\U00026608", // 𦘈
+ 0x26609: "\x80\x0f\U00026609", // 𦘉
+ 0x2660a: "\x80\x10\U0002660a", // 𦘊
+ 0x2660b: "\x80\x10\U0002660b", // 𦘋
+ 0x2660c: "\x80\x10\U0002660c", // 𦘌
+ 0x2660d: "\x80\x11\U0002660d", // 𦘍
+ 0x2660e: "\x80\x11\U0002660e", // 𦘎
+ 0x2660f: "\x80\x12\U0002660f", // 𦘏
+ 0x26610: "\x80\x13\U00026610", // 𦘐
+ 0x26611: "\x80\x14\U00026611", // 𦘑
+ 0x26612: "\x81\x00\U00026612", // 𦘒
+ 0x26613: "\x81\x02\U00026613", // 𦘓
+ 0x26614: "\x81\x03\U00026614", // 𦘔
+ 0x26615: "\x81\x05\U00026615", // 𦘕
+ 0x26616: "\x81\x05\U00026616", // 𦘖
+ 0x26617: "\x81\x05\U00026617", // 𦘗
+ 0x26618: "\x81\x06\U00026618", // 𦘘
+ 0x26619: "\x81\x06\U00026619", // 𦘙
+ 0x2661a: "\x81\x06\U0002661a", // 𦘚
+ 0x2661b: "\x81\a\U0002661b", // 𦘛
+ 0x2661c: "\x81\a\U0002661c", // 𦘜
+ 0x2661d: "\x81\b\U0002661d", // 𦘝
+ 0x2661e: "\x81\b\U0002661e", // 𦘞
+ 0x2661f: "\x81\b\U0002661f", // 𦘟
+ 0x26620: "\x81\t\U00026620", // 𦘠
+ 0x26621: "\x81\t\U00026621", // 𦘡
+ 0x26622: "\x81\t\U00026622", // 𦘢
+ 0x26623: "\x81\n\U00026623", // 𦘣
+ 0x26624: "\x81\v\U00026624", // 𦘤
+ 0x26625: "\x81\v\U00026625", // 𦘥
+ 0x26626: "\x81\v\U00026626", // 𦘦
+ 0x26627: "\x81\r\U00026627", // 𦘧
+ 0x26628: "\x81\x0e\U00026628", // 𦘨
+ 0x26629: "\x82\x02\U00026629", // 𦘩
+ 0x2662a: "\x82\x02\U0002662a", // 𦘪
+ 0x2662b: "\x82\x02\U0002662b", // 𦘫
+ 0x2662c: "\x82\x02\U0002662c", // 𦘬
+ 0x2662d: "\x82\x02\U0002662d", // 𦘭
+ 0x2662e: "\x82\x02\U0002662e", // 𦘮
+ 0x2662f: "\x82\x02\U0002662f", // 𦘯
+ 0x26630: "\x82\x02\U00026630", // 𦘰
+ 0x26631: "\x82\x02\U00026631", // 𦘱
+ 0x26632: "\x82\x02\U00026632", // 𦘲
+ 0x26633: "\x82\x02\U00026633", // 𦘳
+ 0x26634: "\x82\x03\U00026634", // 𦘴
+ 0x26635: "\x82\x03\U00026635", // 𦘵
+ 0x26636: "\x82\x03\U00026636", // 𦘶
+ 0x26637: "\x82\x03\U00026637", // 𦘷
+ 0x26638: "\x82\x03\U00026638", // 𦘸
+ 0x26639: "\x82\x03\U00026639", // 𦘹
+ 0x2663a: "\x82\x03\U0002663a", // 𦘺
+ 0x2663b: "\x82\x03\U0002663b", // 𦘻
+ 0x2663c: "\x82\x03\U0002663c", // 𦘼
+ 0x2663d: "\x82\x03\U0002663d", // 𦘽
+ 0x2663e: "\x82\x03\U0002663e", // 𦘾
+ 0x2663f: "\x82\x04\U0002663f", // 𦘿
+ 0x26640: "\x82\x04\U00026640", // 𦙀
+ 0x26641: "\x82\x04\U00026641", // 𦙁
+ 0x26642: "\x82\x04\U00026642", // 𦙂
+ 0x26643: "\x82\x04\U00026643", // 𦙃
+ 0x26644: "\x82\x04\U00026644", // 𦙄
+ 0x26645: "\x82\x04\U00026645", // 𦙅
+ 0x26646: "\x82\x04\U00026646", // 𦙆
+ 0x26647: "\x82\x04\U00026647", // 𦙇
+ 0x26648: "\x82\x04\U00026648", // 𦙈
+ 0x26649: "\x82\x04\U00026649", // 𦙉
+ 0x2664a: "\x82\x04\U0002664a", // 𦙊
+ 0x2664b: "\x82\x04\U0002664b", // 𦙋
+ 0x2664c: "\x82\x04\U0002664c", // 𦙌
+ 0x2664d: "\x82\x04\U0002664d", // 𦙍
+ 0x2664e: "\x82\x04\U0002664e", // 𦙎
+ 0x2664f: "\x82\x04\U0002664f", // 𦙏
+ 0x26650: "\x82\x04\U00026650", // 𦙐
+ 0x26651: "\x82\x04\U00026651", // 𦙑
+ 0x26652: "\x82\x04\U00026652", // 𦙒
+ 0x26653: "\x82\x04\U00026653", // 𦙓
+ 0x26654: "\x82\x04\U00026654", // 𦙔
+ 0x26655: "\x82\x04\U00026655", // 𦙕
+ 0x26656: "\x82\x04\U00026656", // 𦙖
+ 0x26657: "\x82\x04\U00026657", // 𦙗
+ 0x26658: "\x82\x04\U00026658", // 𦙘
+ 0x26659: "\x82\x04\U00026659", // 𦙙
+ 0x2665a: "\x82\x04\U0002665a", // 𦙚
+ 0x2665b: "\x82\x04\U0002665b", // 𦙛
+ 0x2665c: "\x82\x04\U0002665c", // 𦙜
+ 0x2665d: "\x82\x04\U0002665d", // 𦙝
+ 0x2665e: "\x82\x04\U0002665e", // 𦙞
+ 0x2665f: "\x82\x04\U0002665f", // 𦙟
+ 0x26660: "\x82\x04\U00026660", // 𦙠
+ 0x26661: "\x82\x04\U00026661", // 𦙡
+ 0x26662: "\x82\x04\U00026662", // 𦙢
+ 0x26663: "\x82\x04\U00026663", // 𦙣
+ 0x26664: "\x82\x04\U00026664", // 𦙤
+ 0x26665: "\x82\x04\U00026665", // 𦙥
+ 0x26666: "\x82\x04\U00026666", // 𦙦
+ 0x26667: "\x82\x04\U00026667", // 𦙧
+ 0x26668: "\x82\x04\U00026668", // 𦙨
+ 0x26669: "\x82\x04\U00026669", // 𦙩
+ 0x2666a: "\x82\x05\U0002666a", // 𦙪
+ 0x2666b: "\x82\x05\U0002666b", // 𦙫
+ 0x2666c: "\x82\x05\U0002666c", // 𦙬
+ 0x2666d: "\x82\x05\U0002666d", // 𦙭
+ 0x2666e: "\x82\x05\U0002666e", // 𦙮
+ 0x2666f: "\x82\x05\U0002666f", // 𦙯
+ 0x26670: "\x82\x05\U00026670", // 𦙰
+ 0x26671: "\x82\x05\U00026671", // 𦙱
+ 0x26672: "\x82\x05\U00026672", // 𦙲
+ 0x26673: "\x82\x05\U00026673", // 𦙳
+ 0x26674: "\x82\x05\U00026674", // 𦙴
+ 0x26675: "\x82\x05\U00026675", // 𦙵
+ 0x26676: "\x82\x05\U00026676", // 𦙶
+ 0x26677: "\x82\x05\U00026677", // 𦙷
+ 0x26678: "\x82\x05\U00026678", // 𦙸
+ 0x26679: "\x82\x05\U00026679", // 𦙹
+ 0x2667a: "\x82\x05\U0002667a", // 𦙺
+ 0x2667b: "\x82\x05\U0002667b", // 𦙻
+ 0x2667c: "\x82\x05\U0002667c", // 𦙼
+ 0x2667d: "\x82\x05\U0002667d", // 𦙽
+ 0x2667e: "\x82\x05\U0002667e", // 𦙾
+ 0x2667f: "\x82\x05\U0002667f", // 𦙿
+ 0x26680: "\x82\x05\U00026680", // 𦚀
+ 0x26681: "\x82\x05\U00026681", // 𦚁
+ 0x26682: "\x82\x05\U00026682", // 𦚂
+ 0x26683: "\x82\x05\U00026683", // 𦚃
+ 0x26684: "\x82\x05\U00026684", // 𦚄
+ 0x26685: "\x82\x05\U00026685", // 𦚅
+ 0x26686: "\x82\x05\U00026686", // 𦚆
+ 0x26687: "\x82\x05\U00026687", // 𦚇
+ 0x26688: "\x82\x05\U00026688", // 𦚈
+ 0x26689: "\x82\x05\U00026689", // 𦚉
+ 0x2668a: "\x82\x05\U0002668a", // 𦚊
+ 0x2668b: "\x82\x05\U0002668b", // 𦚋
+ 0x2668c: "\x82\x05\U0002668c", // 𦚌
+ 0x2668d: "\x82\x05\U0002668d", // 𦚍
+ 0x2668e: "\x82\x05\U0002668e", // 𦚎
+ 0x2668f: "\x82\x05\U0002668f", // 𦚏
+ 0x26690: "\x82\x05\U00026690", // 𦚐
+ 0x26691: "\x82\x05\U00026691", // 𦚑
+ 0x26692: "\x82\x05\U00026692", // 𦚒
+ 0x26693: "\x82\x05\U00026693", // 𦚓
+ 0x26694: "\x82\x05\U00026694", // 𦚔
+ 0x26695: "\x82\x05\U00026695", // 𦚕
+ 0x26696: "\x82\x05\U00026696", // 𦚖
+ 0x26697: "\x82\x05\U00026697", // 𦚗
+ 0x26698: "\x82\x05\U00026698", // 𦚘
+ 0x26699: "\x82\x05\U00026699", // 𦚙
+ 0x2669a: "\x82\x05\U0002669a", // 𦚚
+ 0x2669b: "\x82\x05\U0002669b", // 𦚛
+ 0x2669c: "\x82\x05\U0002669c", // 𦚜
+ 0x2669d: "\x82\x06\U0002669d", // 𦚝
+ 0x2669e: "\x82\x06\U0002669e", // 𦚞
+ 0x2669f: "\x82\x06\U0002669f", // 𦚟
+ 0x266a0: "\x82\x06\U000266a0", // 𦚠
+ 0x266a1: "\x82\x06\U000266a1", // 𦚡
+ 0x266a2: "\x82\x06\U000266a2", // 𦚢
+ 0x266a3: "\x82\x06\U000266a3", // 𦚣
+ 0x266a4: "\x82\x06\U000266a4", // 𦚤
+ 0x266a5: "\x82\x06\U000266a5", // 𦚥
+ 0x266a6: "\x82\x06\U000266a6", // 𦚦
+ 0x266a7: "\x82\x06\U000266a7", // 𦚧
+ 0x266a8: "\x82\x06\U000266a8", // 𦚨
+ 0x266a9: "\x82\x06\U000266a9", // 𦚩
+ 0x266aa: "\x82\x06\U000266aa", // 𦚪
+ 0x266ab: "\x82\x06\U000266ab", // 𦚫
+ 0x266ac: "\x82\x06\U000266ac", // 𦚬
+ 0x266ad: "\x82\x06\U000266ad", // 𦚭
+ 0x266ae: "\x82\x06\U000266ae", // 𦚮
+ 0x266af: "\x82\x06\U000266af", // 𦚯
+ 0x266b0: "\x82\x06\U000266b0", // 𦚰
+ 0x266b1: "\x82\x06\U000266b1", // 𦚱
+ 0x266b2: "\x82\x06\U000266b2", // 𦚲
+ 0x266b3: "\x82\x06\U000266b3", // 𦚳
+ 0x266b4: "\x82\x06\U000266b4", // 𦚴
+ 0x266b5: "\x82\x06\U000266b5", // 𦚵
+ 0x266b6: "\x82\x06\U000266b6", // 𦚶
+ 0x266b7: "\x82\x06\U000266b7", // 𦚷
+ 0x266b8: "\x82\x06\U000266b8", // 𦚸
+ 0x266b9: "\x82\x06\U000266b9", // 𦚹
+ 0x266ba: "\x82\x06\U000266ba", // 𦚺
+ 0x266bb: "\x82\x06\U000266bb", // 𦚻
+ 0x266bc: "\x82\x06\U000266bc", // 𦚼
+ 0x266bd: "\x82\x06\U000266bd", // 𦚽
+ 0x266be: "\x82\x06\U000266be", // 𦚾
+ 0x266bf: "\x82\x06\U000266bf", // 𦚿
+ 0x266c0: "\x82\x06\U000266c0", // 𦛀
+ 0x266c1: "\x82\x06\U000266c1", // 𦛁
+ 0x266c2: "\x82\x06\U000266c2", // 𦛂
+ 0x266c3: "\x82\x06\U000266c3", // 𦛃
+ 0x266c4: "\x82\x06\U000266c4", // 𦛄
+ 0x266c5: "\x82\x06\U000266c5", // 𦛅
+ 0x266c6: "\x82\x06\U000266c6", // 𦛆
+ 0x266c7: "\x82\x06\U000266c7", // 𦛇
+ 0x266c8: "\x82\x06\U000266c8", // 𦛈
+ 0x266c9: "\x82\x06\U000266c9", // 𦛉
+ 0x266ca: "\x82\x06\U000266ca", // 𦛊
+ 0x266cb: "\x82\x06\U000266cb", // 𦛋
+ 0x266cc: "\x82\x06\U000266cc", // 𦛌
+ 0x266cd: "\x82\x06\U000266cd", // 𦛍
+ 0x266ce: "\x82\x06\U000266ce", // 𦛎
+ 0x266cf: "\x82\x06\U000266cf", // 𦛏
+ 0x266d0: "\x82\x06\U000266d0", // 𦛐
+ 0x266d1: "\x82\x06\U000266d1", // 𦛑
+ 0x266d2: "\x82\x06\U000266d2", // 𦛒
+ 0x266d3: "\x82\x06\U000266d3", // 𦛓
+ 0x266d4: "\x82\a\U000266d4", // 𦛔
+ 0x266d5: "\x82\a\U000266d5", // 𦛕
+ 0x266d6: "\x82\a\U000266d6", // 𦛖
+ 0x266d7: "\x82\a\U000266d7", // 𦛗
+ 0x266d8: "\x82\a\U000266d8", // 𦛘
+ 0x266d9: "\x82\a\U000266d9", // 𦛙
+ 0x266da: "\x82\a\U000266da", // 𦛚
+ 0x266db: "\x82\a\U000266db", // 𦛛
+ 0x266dc: "\x82\a\U000266dc", // 𦛜
+ 0x266dd: "\x82\a\U000266dd", // 𦛝
+ 0x266de: "\x82\a\U000266de", // 𦛞
+ 0x266df: "\x82\a\U000266df", // 𦛟
+ 0x266e0: "\x82\a\U000266e0", // 𦛠
+ 0x266e1: "\x82\a\U000266e1", // 𦛡
+ 0x266e2: "\x82\a\U000266e2", // 𦛢
+ 0x266e3: "\x82\a\U000266e3", // 𦛣
+ 0x266e4: "\x82\a\U000266e4", // 𦛤
+ 0x266e5: "\x82\a\U000266e5", // 𦛥
+ 0x266e6: "\x82\a\U000266e6", // 𦛦
+ 0x266e7: "\x82\a\U000266e7", // 𦛧
+ 0x266e8: "\x82\a\U000266e8", // 𦛨
+ 0x266e9: "\x82\a\U000266e9", // 𦛩
+ 0x266ea: "\x82\a\U000266ea", // 𦛪
+ 0x266eb: "\x82\a\U000266eb", // 𦛫
+ 0x266ec: "\x82\a\U000266ec", // 𦛬
+ 0x266ed: "\x82\a\U000266ed", // 𦛭
+ 0x266ee: "\x82\a\U000266ee", // 𦛮
+ 0x266ef: "\x82\a\U000266ef", // 𦛯
+ 0x266f0: "\x82\a\U000266f0", // 𦛰
+ 0x266f1: "\x82\a\U000266f1", // 𦛱
+ 0x266f2: "\x82\a\U000266f2", // 𦛲
+ 0x266f3: "\x82\a\U000266f3", // 𦛳
+ 0x266f4: "\x82\a\U000266f4", // 𦛴
+ 0x266f5: "\x82\a\U000266f5", // 𦛵
+ 0x266f6: "\x82\a\U000266f6", // 𦛶
+ 0x266f7: "\x82\a\U000266f7", // 𦛷
+ 0x266f8: "\x82\a\U000266f8", // 𦛸
+ 0x266f9: "\x82\a\U000266f9", // 𦛹
+ 0x266fa: "\x82\a\U000266fa", // 𦛺
+ 0x266fb: "\x82\a\U000266fb", // 𦛻
+ 0x266fc: "\x82\a\U000266fc", // 𦛼
+ 0x266fd: "\x82\a\U000266fd", // 𦛽
+ 0x266fe: "\x82\a\U000266fe", // 𦛾
+ 0x266ff: "\x82\a\U000266ff", // 𦛿
+ 0x26700: "\x82\a\U00026700", // 𦜀
+ 0x26701: "\x82\a\U00026701", // 𦜁
+ 0x26702: "\x82\a\U00026702", // 𦜂
+ 0x26703: "\x82\a\U00026703", // 𦜃
+ 0x26704: "\x82\a\U00026704", // 𦜄
+ 0x26705: "\x82\a\U00026705", // 𦜅
+ 0x26706: "\x82\b\U00026706", // 𦜆
+ 0x26707: "\x82\b\U00026707", // 𦜇
+ 0x26708: "\x82\b\U00026708", // 𦜈
+ 0x26709: "\x82\b\U00026709", // 𦜉
+ 0x2670a: "\x82\b\U0002670a", // 𦜊
+ 0x2670b: "\x82\b\U0002670b", // 𦜋
+ 0x2670c: "\x82\b\U0002670c", // 𦜌
+ 0x2670d: "\x82\b\U0002670d", // 𦜍
+ 0x2670e: "\x82\b\U0002670e", // 𦜎
+ 0x2670f: "\x82\b\U0002670f", // 𦜏
+ 0x26710: "\x82\b\U00026710", // 𦜐
+ 0x26711: "\x82\b\U00026711", // 𦜑
+ 0x26712: "\x82\b\U00026712", // 𦜒
+ 0x26713: "\x82\b\U00026713", // 𦜓
+ 0x26714: "\x82\b\U00026714", // 𦜔
+ 0x26715: "\x82\b\U00026715", // 𦜕
+ 0x26716: "\x82\b\U00026716", // 𦜖
+ 0x26717: "\x82\b\U00026717", // 𦜗
+ 0x26718: "\x82\b\U00026718", // 𦜘
+ 0x26719: "\x82\b\U00026719", // 𦜙
+ 0x2671a: "\x82\b\U0002671a", // 𦜚
+ 0x2671b: "\x82\b\U0002671b", // 𦜛
+ 0x2671c: "\x82\b\U0002671c", // 𦜜
+ 0x2671d: "\x82\b\U0002671d", // 𦜝
+ 0x2671e: "\x82\b\U0002671e", // 𦜞
+ 0x2671f: "\x82\b\U0002671f", // 𦜟
+ 0x26720: "\x82\b\U00026720", // 𦜠
+ 0x26721: "\x82\b\U00026721", // 𦜡
+ 0x26722: "\x82\b\U00026722", // 𦜢
+ 0x26723: "\x82\b\U00026723", // 𦜣
+ 0x26724: "\x82\b\U00026724", // 𦜤
+ 0x26725: "\x82\b\U00026725", // 𦜥
+ 0x26726: "\x82\b\U00026726", // 𦜦
+ 0x26727: "\x82\b\U00026727", // 𦜧
+ 0x26728: "\x82\b\U00026728", // 𦜨
+ 0x26729: "\x82\b\U00026729", // 𦜩
+ 0x2672a: "\x82\b\U0002672a", // 𦜪
+ 0x2672b: "\x82\b\U0002672b", // 𦜫
+ 0x2672c: "\x82\b\U0002672c", // 𦜬
+ 0x2672d: "\x82\b\U0002672d", // 𦜭
+ 0x2672e: "\x82\b\U0002672e", // 𦜮
+ 0x2672f: "\x82\b\U0002672f", // 𦜯
+ 0x26730: "\x82\b\U00026730", // 𦜰
+ 0x26731: "\x82\b\U00026731", // 𦜱
+ 0x26732: "\x82\b\U00026732", // 𦜲
+ 0x26733: "J\b\U00026733", // 𦜳
+ 0x26734: "\x82\b\U00026734", // 𦜴
+ 0x26735: "\x82\b\U00026735", // 𦜵
+ 0x26736: "\x82\b\U00026736", // 𦜶
+ 0x26737: "\x82\b\U00026737", // 𦜷
+ 0x26738: "\x82\b\U00026738", // 𦜸
+ 0x26739: "\x82\b\U00026739", // 𦜹
+ 0x2673a: "\x82\b\U0002673a", // 𦜺
+ 0x2673b: "\x82\b\U0002673b", // 𦜻
+ 0x2673c: "\x82\b\U0002673c", // 𦜼
+ 0x2673d: "\x82\b\U0002673d", // 𦜽
+ 0x2673e: "\x82\b\U0002673e", // 𦜾
+ 0x2673f: "\x82\b\U0002673f", // 𦜿
+ 0x26740: "\x82\b\U00026740", // 𦝀
+ 0x26741: "\x82\b\U00026741", // 𦝁
+ 0x26742: "\x82\b\U00026742", // 𦝂
+ 0x26743: "\x82\b\U00026743", // 𦝃
+ 0x26744: "\x82\b\U00026744", // 𦝄
+ 0x26745: "\x82\b\U00026745", // 𦝅
+ 0x26746: "\x82\b\U00026746", // 𦝆
+ 0x26747: "\x82\b\U00026747", // 𦝇
+ 0x26748: "\x82\b\U00026748", // 𦝈
+ 0x26749: "\x82\b\U00026749", // 𦝉
+ 0x2674a: "\x82\b\U0002674a", // 𦝊
+ 0x2674b: "\x82\b\U0002674b", // 𦝋
+ 0x2674c: "\x82\b\U0002674c", // 𦝌
+ 0x2674d: "\x82\b\U0002674d", // 𦝍
+ 0x2674e: "\x82\b\U0002674e", // 𦝎
+ 0x2674f: "\x82\b\U0002674f", // 𦝏
+ 0x26750: "\x82\b\U00026750", // 𦝐
+ 0x26751: "\x82\b\U00026751", // 𦝑
+ 0x26752: "\x82\b\U00026752", // 𦝒
+ 0x26753: "\x82\b\U00026753", // 𦝓
+ 0x26754: "\x82\b\U00026754", // 𦝔
+ 0x26755: "\x82\b\U00026755", // 𦝕
+ 0x26756: "\x82\b\U00026756", // 𦝖
+ 0x26757: "\x82\b\U00026757", // 𦝗
+ 0x26758: "\x82\b\U00026758", // 𦝘
+ 0x26759: "\x82\b\U00026759", // 𦝙
+ 0x2675a: "\x82\t\U0002675a", // 𦝚
+ 0x2675b: "\x82\t\U0002675b", // 𦝛
+ 0x2675c: "\x82\t\U0002675c", // 𦝜
+ 0x2675d: "\x82\t\U0002675d", // 𦝝
+ 0x2675e: "\x82\t\U0002675e", // 𦝞
+ 0x2675f: "\x82\t\U0002675f", // 𦝟
+ 0x26760: "\x82\t\U00026760", // 𦝠
+ 0x26761: "\x82\t\U00026761", // 𦝡
+ 0x26762: "\x82\t\U00026762", // 𦝢
+ 0x26763: "\x82\t\U00026763", // 𦝣
+ 0x26764: "\x82\t\U00026764", // 𦝤
+ 0x26765: "\x82\t\U00026765", // 𦝥
+ 0x26766: "\x82\t\U00026766", // 𦝦
+ 0x26767: "\x82\t\U00026767", // 𦝧
+ 0x26768: "\x82\t\U00026768", // 𦝨
+ 0x26769: "\x82\t\U00026769", // 𦝩
+ 0x2676a: "\x82\t\U0002676a", // 𦝪
+ 0x2676b: "\x82\t\U0002676b", // 𦝫
+ 0x2676c: "\x82\t\U0002676c", // 𦝬
+ 0x2676d: "\x82\t\U0002676d", // 𦝭
+ 0x2676e: "\x82\t\U0002676e", // 𦝮
+ 0x2676f: "\x82\t\U0002676f", // 𦝯
+ 0x26770: "\x82\t\U00026770", // 𦝰
+ 0x26771: "\x82\t\U00026771", // 𦝱
+ 0x26772: "\x82\t\U00026772", // 𦝲
+ 0x26773: "\x82\t\U00026773", // 𦝳
+ 0x26774: "\x82\t\U00026774", // 𦝴
+ 0x26775: "\x82\t\U00026775", // 𦝵
+ 0x26776: "\x82\t\U00026776", // 𦝶
+ 0x26777: "\x82\t\U00026777", // 𦝷
+ 0x26778: "\x82\t\U00026778", // 𦝸
+ 0x26779: "\x82\t\U00026779", // 𦝹
+ 0x2677a: "\x82\t\U0002677a", // 𦝺
+ 0x2677b: "\x82\t\U0002677b", // 𦝻
+ 0x2677c: "\x82\t\U0002677c", // 𦝼
+ 0x2677d: "\x82\t\U0002677d", // 𦝽
+ 0x2677e: "\x82\t\U0002677e", // 𦝾
+ 0x2677f: "\x82\t\U0002677f", // 𦝿
+ 0x26780: "\x82\t\U00026780", // 𦞀
+ 0x26781: "\x82\t\U00026781", // 𦞁
+ 0x26782: "\x82\t\U00026782", // 𦞂
+ 0x26783: "\x82\t\U00026783", // 𦞃
+ 0x26784: "\x82\t\U00026784", // 𦞄
+ 0x26785: "\x82\t\U00026785", // 𦞅
+ 0x26786: "\x82\t\U00026786", // 𦞆
+ 0x26787: "\x82\t\U00026787", // 𦞇
+ 0x26788: "\x82\t\U00026788", // 𦞈
+ 0x26789: "\x82\t\U00026789", // 𦞉
+ 0x2678a: "\x82\t\U0002678a", // 𦞊
+ 0x2678b: "\x82\t\U0002678b", // 𦞋
+ 0x2678c: "\x82\t\U0002678c", // 𦞌
+ 0x2678d: "\x82\t\U0002678d", // 𦞍
+ 0x2678e: "\x82\t\U0002678e", // 𦞎
+ 0x2678f: "\x82\t\U0002678f", // 𦞏
+ 0x26790: "\x82\t\U00026790", // 𦞐
+ 0x26791: "\x82\t\U00026791", // 𦞑
+ 0x26792: "\x82\t\U00026792", // 𦞒
+ 0x26793: "\x82\t\U00026793", // 𦞓
+ 0x26794: "\x82\t\U00026794", // 𦞔
+ 0x26795: "\x82\t\U00026795", // 𦞕
+ 0x26796: "\x82\t\U00026796", // 𦞖
+ 0x26797: "\x82\t\U00026797", // 𦞗
+ 0x26798: "\x82\t\U00026798", // 𦞘
+ 0x26799: "\x82\n\U00026799", // 𦞙
+ 0x2679a: "\x82\n\U0002679a", // 𦞚
+ 0x2679b: "\x82\n\U0002679b", // 𦞛
+ 0x2679c: "\x82\n\U0002679c", // 𦞜
+ 0x2679d: "\x82\n\U0002679d", // 𦞝
+ 0x2679e: "\x82\n\U0002679e", // 𦞞
+ 0x2679f: "\x82\n\U0002679f", // 𦞟
+ 0x267a0: "\x82\n\U000267a0", // 𦞠
+ 0x267a1: "\x82\n\U000267a1", // 𦞡
+ 0x267a2: "\x82\n\U000267a2", // 𦞢
+ 0x267a3: "\x82\n\U000267a3", // 𦞣
+ 0x267a4: "\x82\n\U000267a4", // 𦞤
+ 0x267a5: "\x82\n\U000267a5", // 𦞥
+ 0x267a6: "\x82\n\U000267a6", // 𦞦
+ 0x267a7: "\x82\n\U000267a7", // 𦞧
+ 0x267a8: "\x82\n\U000267a8", // 𦞨
+ 0x267a9: "\x82\n\U000267a9", // 𦞩
+ 0x267aa: "\x82\n\U000267aa", // 𦞪
+ 0x267ab: "\x82\n\U000267ab", // 𦞫
+ 0x267ac: "\x82\n\U000267ac", // 𦞬
+ 0x267ad: "\x82\n\U000267ad", // 𦞭
+ 0x267ae: "\x82\n\U000267ae", // 𦞮
+ 0x267af: "\x82\n\U000267af", // 𦞯
+ 0x267b0: "\x82\n\U000267b0", // 𦞰
+ 0x267b1: "\x82\n\U000267b1", // 𦞱
+ 0x267b2: "\x82\n\U000267b2", // 𦞲
+ 0x267b3: "\x82\n\U000267b3", // 𦞳
+ 0x267b4: "\x82\n\U000267b4", // 𦞴
+ 0x267b5: "\x82\n\U000267b5", // 𦞵
+ 0x267b6: "\x82\n\U000267b6", // 𦞶
+ 0x267b7: "\x82\n\U000267b7", // 𦞷
+ 0x267b8: "\x82\n\U000267b8", // 𦞸
+ 0x267b9: "\x82\n\U000267b9", // 𦞹
+ 0x267ba: "\x82\n\U000267ba", // 𦞺
+ 0x267bb: "\x82\n\U000267bb", // 𦞻
+ 0x267bc: "\x82\n\U000267bc", // 𦞼
+ 0x267bd: "\x82\n\U000267bd", // 𦞽
+ 0x267be: "\x82\n\U000267be", // 𦞾
+ 0x267bf: "\x82\n\U000267bf", // 𦞿
+ 0x267c0: "\x82\n\U000267c0", // 𦟀
+ 0x267c1: "\x82\n\U000267c1", // 𦟁
+ 0x267c2: "\x82\n\U000267c2", // 𦟂
+ 0x267c3: "\x82\n\U000267c3", // 𦟃
+ 0x267c4: "\x82\n\U000267c4", // 𦟄
+ 0x267c5: "\x82\n\U000267c5", // 𦟅
+ 0x267c6: "\x82\n\U000267c6", // 𦟆
+ 0x267c7: "\x82\n\U000267c7", // 𦟇
+ 0x267c8: "\x82\n\U000267c8", // 𦟈
+ 0x267c9: "\x82\n\U000267c9", // 𦟉
+ 0x267ca: "\x82\n\U000267ca", // 𦟊
+ 0x267cb: "\x82\n\U000267cb", // 𦟋
+ 0x267cc: "\x82\n\U000267cc", // 𦟌
+ 0x267cd: "\x82\n\U000267cd", // 𦟍
+ 0x267ce: "\x82\n\U000267ce", // 𦟎
+ 0x267cf: "\x82\n\U000267cf", // 𦟏
+ 0x267d0: "\x82\n\U000267d0", // 𦟐
+ 0x267d1: "\x82\n\U000267d1", // 𦟑
+ 0x267d2: "\x82\n\U000267d2", // 𦟒
+ 0x267d3: "\x82\t\U000267d3", // 𦟓
+ 0x267d4: "\x82\t\U000267d4", // 𦟔
+ 0x267d5: "\x82\n\U000267d5", // 𦟕
+ 0x267d6: "\x82\n\U000267d6", // 𦟖
+ 0x267d7: "\x82\n\U000267d7", // 𦟗
+ 0x267d8: "\x82\v\U000267d8", // 𦟘
+ 0x267d9: "\x82\v\U000267d9", // 𦟙
+ 0x267da: "\x82\v\U000267da", // 𦟚
+ 0x267db: "\x82\v\U000267db", // 𦟛
+ 0x267dc: "\x82\v\U000267dc", // 𦟜
+ 0x267dd: "\x82\v\U000267dd", // 𦟝
+ 0x267de: "\x82\v\U000267de", // 𦟞
+ 0x267df: "\x82\v\U000267df", // 𦟟
+ 0x267e0: "\x82\v\U000267e0", // 𦟠
+ 0x267e1: "\x82\v\U000267e1", // 𦟡
+ 0x267e2: "\x82\v\U000267e2", // 𦟢
+ 0x267e3: "\x82\v\U000267e3", // 𦟣
+ 0x267e4: "\x82\v\U000267e4", // 𦟤
+ 0x267e5: "\x82\v\U000267e5", // 𦟥
+ 0x267e6: "\x82\v\U000267e6", // 𦟦
+ 0x267e7: "\x82\v\U000267e7", // 𦟧
+ 0x267e8: "\x82\v\U000267e8", // 𦟨
+ 0x267e9: "\x82\v\U000267e9", // 𦟩
+ 0x267ea: "\x82\v\U000267ea", // 𦟪
+ 0x267eb: "\x82\v\U000267eb", // 𦟫
+ 0x267ec: "\x82\v\U000267ec", // 𦟬
+ 0x267ed: "\x82\v\U000267ed", // 𦟭
+ 0x267ee: "\x82\v\U000267ee", // 𦟮
+ 0x267ef: "\x82\v\U000267ef", // 𦟯
+ 0x267f0: "\x82\v\U000267f0", // 𦟰
+ 0x267f1: "\x82\v\U000267f1", // 𦟱
+ 0x267f2: "\x82\v\U000267f2", // 𦟲
+ 0x267f3: "\x82\v\U000267f3", // 𦟳
+ 0x267f4: "\x82\v\U000267f4", // 𦟴
+ 0x267f5: "\x82\v\U000267f5", // 𦟵
+ 0x267f6: "\x82\v\U000267f6", // 𦟶
+ 0x267f7: "\x82\v\U000267f7", // 𦟷
+ 0x267f8: "\x82\v\U000267f8", // 𦟸
+ 0x267f9: "\x82\v\U000267f9", // 𦟹
+ 0x267fa: "\x82\v\U000267fa", // 𦟺
+ 0x267fb: "\x82\v\U000267fb", // 𦟻
+ 0x267fc: "\x82\v\U000267fc", // 𦟼
+ 0x267fd: "\x82\v\U000267fd", // 𦟽
+ 0x267fe: "\x82\v\U000267fe", // 𦟾
+ 0x267ff: "\x82\v\U000267ff", // 𦟿
+ 0x26800: "\x82\v\U00026800", // 𦠀
+ 0x26801: "\x82\v\U00026801", // 𦠁
+ 0x26802: "\x82\v\U00026802", // 𦠂
+ 0x26803: "\x82\f\U00026803", // 𦠃
+ 0x26804: "\x82\f\U00026804", // 𦠄
+ 0x26805: "\x82\f\U00026805", // 𦠅
+ 0x26806: "\x82\f\U00026806", // 𦠆
+ 0x26807: "\x82\f\U00026807", // 𦠇
+ 0x26808: "\x82\f\U00026808", // 𦠈
+ 0x26809: "\x82\f\U00026809", // 𦠉
+ 0x2680a: "\x82\f\U0002680a", // 𦠊
+ 0x2680b: "\x82\f\U0002680b", // 𦠋
+ 0x2680c: "\x82\f\U0002680c", // 𦠌
+ 0x2680d: "\x82\f\U0002680d", // 𦠍
+ 0x2680e: "\x82\f\U0002680e", // 𦠎
+ 0x2680f: "\x82\f\U0002680f", // 𦠏
+ 0x26810: "\x82\f\U00026810", // 𦠐
+ 0x26811: "\x82\f\U00026811", // 𦠑
+ 0x26812: "\x82\f\U00026812", // 𦠒
+ 0x26813: "\x82\f\U00026813", // 𦠓
+ 0x26814: "\x82\f\U00026814", // 𦠔
+ 0x26815: "\x82\f\U00026815", // 𦠕
+ 0x26816: "\x82\f\U00026816", // 𦠖
+ 0x26817: "\x82\f\U00026817", // 𦠗
+ 0x26818: "\x82\f\U00026818", // 𦠘
+ 0x26819: "\x82\f\U00026819", // 𦠙
+ 0x2681a: "\x82\f\U0002681a", // 𦠚
+ 0x2681b: "\x82\f\U0002681b", // 𦠛
+ 0x2681c: "\x82\f\U0002681c", // 𦠜
+ 0x2681d: "\x82\f\U0002681d", // 𦠝
+ 0x2681e: "\x82\f\U0002681e", // 𦠞
+ 0x2681f: "\x82\f\U0002681f", // 𦠟
+ 0x26820: "\x82\f\U00026820", // 𦠠
+ 0x26821: "\x82\f\U00026821", // 𦠡
+ 0x26822: "\x82\f\U00026822", // 𦠢
+ 0x26823: "\x82\f\U00026823", // 𦠣
+ 0x26824: "\x82\f\U00026824", // 𦠤
+ 0x26825: "\x82\f\U00026825", // 𦠥
+ 0x26826: "\x82\f\U00026826", // 𦠦
+ 0x26827: "\x82\f\U00026827", // 𦠧
+ 0x26828: "\x82\f\U00026828", // 𦠨
+ 0x26829: "\x82\f\U00026829", // 𦠩
+ 0x2682a: "\x82\f\U0002682a", // 𦠪
+ 0x2682b: "\x82\f\U0002682b", // 𦠫
+ 0x2682c: "\x82\f\U0002682c", // 𦠬
+ 0x2682d: "\x82\f\U0002682d", // 𦠭
+ 0x2682e: "\x82\f\U0002682e", // 𦠮
+ 0x2682f: "\x82\f\U0002682f", // 𦠯
+ 0x26830: "\x82\f\U00026830", // 𦠰
+ 0x26831: "\x82\f\U00026831", // 𦠱
+ 0x26832: "\x82\f\U00026832", // 𦠲
+ 0x26833: "\x82\f\U00026833", // 𦠳
+ 0x26834: "\x82\f\U00026834", // 𦠴
+ 0x26835: "\x82\f\U00026835", // 𦠵
+ 0x26836: "\x82\f\U00026836", // 𦠶
+ 0x26837: "\x82\f\U00026837", // 𦠷
+ 0x26838: "\x82\f\U00026838", // 𦠸
+ 0x26839: "\x82\f\U00026839", // 𦠹
+ 0x2683a: "\x82\f\U0002683a", // 𦠺
+ 0x2683b: "\x82\f\U0002683b", // 𦠻
+ 0x2683c: "\x82\f\U0002683c", // 𦠼
+ 0x2683d: "\x82\f\U0002683d", // 𦠽
+ 0x2683e: "\x82\r\U0002683e", // 𦠾
+ 0x2683f: "\x82\r\U0002683f", // 𦠿
+ 0x26840: "\x82\r\U00026840", // 𦡀
+ 0x26841: "\x82\r\U00026841", // 𦡁
+ 0x26842: "\x82\r\U00026842", // 𦡂
+ 0x26843: "\x82\r\U00026843", // 𦡃
+ 0x26844: "\x82\f\U00026844", // 𦡄
+ 0x26845: "\x82\r\U00026845", // 𦡅
+ 0x26846: "\x82\r\U00026846", // 𦡆
+ 0x26847: "\x82\r\U00026847", // 𦡇
+ 0x26848: "\x82\r\U00026848", // 𦡈
+ 0x26849: "\x82\r\U00026849", // 𦡉
+ 0x2684a: "\x82\r\U0002684a", // 𦡊
+ 0x2684b: "\x82\r\U0002684b", // 𦡋
+ 0x2684c: "\x82\r\U0002684c", // 𦡌
+ 0x2684d: "\x82\r\U0002684d", // 𦡍
+ 0x2684e: "\x82\x0e\U0002684e", // 𦡎
+ 0x2684f: "\x82\r\U0002684f", // 𦡏
+ 0x26850: "\x82\r\U00026850", // 𦡐
+ 0x26851: "\x82\r\U00026851", // 𦡑
+ 0x26852: "\x82\r\U00026852", // 𦡒
+ 0x26853: "\x82\r\U00026853", // 𦡓
+ 0x26854: "\x82\r\U00026854", // 𦡔
+ 0x26855: "\x82\r\U00026855", // 𦡕
+ 0x26856: "J\r\U00026856", // 𦡖
+ 0x26857: "=\r\U00026857", // 𦡗
+ 0x26858: "\x82\r\U00026858", // 𦡘
+ 0x26859: "\x82\r\U00026859", // 𦡙
+ 0x2685a: "\x82\r\U0002685a", // 𦡚
+ 0x2685b: "\x82\r\U0002685b", // 𦡛
+ 0x2685c: "\x82\r\U0002685c", // 𦡜
+ 0x2685d: "\x82\r\U0002685d", // 𦡝
+ 0x2685e: "\x82\r\U0002685e", // 𦡞
+ 0x2685f: "\x82\r\U0002685f", // 𦡟
+ 0x26860: "\x82\r\U00026860", // 𦡠
+ 0x26861: "\x82\r\U00026861", // 𦡡
+ 0x26862: "\x82\r\U00026862", // 𦡢
+ 0x26863: "\x82\r\U00026863", // 𦡣
+ 0x26864: "\x82\r\U00026864", // 𦡤
+ 0x26865: "\x82\r\U00026865", // 𦡥
+ 0x26866: "\x82\r\U00026866", // 𦡦
+ 0x26867: "\x82\r\U00026867", // 𦡧
+ 0x26868: "\x82\r\U00026868", // 𦡨
+ 0x26869: "\x82\r\U00026869", // 𦡩
+ 0x2686a: "\x82\r\U0002686a", // 𦡪
+ 0x2686b: "\x82\r\U0002686b", // 𦡫
+ 0x2686c: "\x82\r\U0002686c", // 𦡬
+ 0x2686d: "\x82\r\U0002686d", // 𦡭
+ 0x2686e: "\x82\f\U0002686e", // 𦡮
+ 0x2686f: "\x82\r\U0002686f", // 𦡯
+ 0x26870: "\x82\x0e\U00026870", // 𦡰
+ 0x26871: "\x82\x0e\U00026871", // 𦡱
+ 0x26872: "\x82\x0e\U00026872", // 𦡲
+ 0x26873: "\x82\x0e\U00026873", // 𦡳
+ 0x26874: "\x82\x0e\U00026874", // 𦡴
+ 0x26875: "\x82\x0e\U00026875", // 𦡵
+ 0x26876: "\x82\x0e\U00026876", // 𦡶
+ 0x26877: "\x82\x0e\U00026877", // 𦡷
+ 0x26878: "\x82\x0e\U00026878", // 𦡸
+ 0x26879: "\x82\x0e\U00026879", // 𦡹
+ 0x2687a: "\x82\x0e\U0002687a", // 𦡺
+ 0x2687b: "\x82\x0e\U0002687b", // 𦡻
+ 0x2687c: "\x82\x0e\U0002687c", // 𦡼
+ 0x2687d: "\x82\x0e\U0002687d", // 𦡽
+ 0x2687e: "\x82\x0e\U0002687e", // 𦡾
+ 0x2687f: "\x82\x0e\U0002687f", // 𦡿
+ 0x26880: "\x82\x0e\U00026880", // 𦢀
+ 0x26881: "\x82\x0e\U00026881", // 𦢁
+ 0x26882: "\x82\x0e\U00026882", // 𦢂
+ 0x26883: "\x82\x0e\U00026883", // 𦢃
+ 0x26884: "\x82\x0e\U00026884", // 𦢄
+ 0x26885: "\x82\x0e\U00026885", // 𦢅
+ 0x26886: "\x82\x0e\U00026886", // 𦢆
+ 0x26887: "\x82\x0e\U00026887", // 𦢇
+ 0x26888: "\x82\x0e\U00026888", // 𦢈
+ 0x26889: "\x82\x0e\U00026889", // 𦢉
+ 0x2688a: "\x82\x0f\U0002688a", // 𦢊
+ 0x2688b: "\x82\x0f\U0002688b", // 𦢋
+ 0x2688c: "\x82\x0f\U0002688c", // 𦢌
+ 0x2688d: "\x82\x0f\U0002688d", // 𦢍
+ 0x2688e: "\x82\x0f\U0002688e", // 𦢎
+ 0x2688f: "\x82\x0f\U0002688f", // 𦢏
+ 0x26890: "\x82\x0f\U00026890", // 𦢐
+ 0x26891: "\x82\x0f\U00026891", // 𦢑
+ 0x26892: "\x82\x0f\U00026892", // 𦢒
+ 0x26893: "\x82\x0f\U00026893", // 𦢓
+ 0x26894: "\x82\x0f\U00026894", // 𦢔
+ 0x26895: "\x82\x0f\U00026895", // 𦢕
+ 0x26896: "\x82\x0f\U00026896", // 𦢖
+ 0x26897: "\x82\x0f\U00026897", // 𦢗
+ 0x26898: "\x82\x0f\U00026898", // 𦢘
+ 0x26899: "\x82\x0f\U00026899", // 𦢙
+ 0x2689a: "\x82\x0f\U0002689a", // 𦢚
+ 0x2689b: "\x82\x0f\U0002689b", // 𦢛
+ 0x2689c: "\x82\x0f\U0002689c", // 𦢜
+ 0x2689d: "\x82\x0f\U0002689d", // 𦢝
+ 0x2689e: "\x82\x0f\U0002689e", // 𦢞
+ 0x2689f: "\x82\x0f\U0002689f", // 𦢟
+ 0x268a0: "\x82\x0f\U000268a0", // 𦢠
+ 0x268a1: "\x82\x0f\U000268a1", // 𦢡
+ 0x268a2: "\x82\x0f\U000268a2", // 𦢢
+ 0x268a3: "\x82\x0f\U000268a3", // 𦢣
+ 0x268a4: "\x82\x0f\U000268a4", // 𦢤
+ 0x268a5: "\x82\x10\U000268a5", // 𦢥
+ 0x268a6: "\x82\x10\U000268a6", // 𦢦
+ 0x268a7: "\x82\x10\U000268a7", // 𦢧
+ 0x268a8: "\x82\x10\U000268a8", // 𦢨
+ 0x268a9: "\x82\x10\U000268a9", // 𦢩
+ 0x268aa: "\x82\x10\U000268aa", // 𦢪
+ 0x268ab: "\x82\x10\U000268ab", // 𦢫
+ 0x268ac: "\x82\x10\U000268ac", // 𦢬
+ 0x268ad: "\x82\x10\U000268ad", // 𦢭
+ 0x268ae: "\x82\x10\U000268ae", // 𦢮
+ 0x268af: "\x82\x10\U000268af", // 𦢯
+ 0x268b0: "\x82\x10\U000268b0", // 𦢰
+ 0x268b1: "\x82\x10\U000268b1", // 𦢱
+ 0x268b2: "\x82\x10\U000268b2", // 𦢲
+ 0x268b3: "\x82\x10\U000268b3", // 𦢳
+ 0x268b4: "\x82\x10\U000268b4", // 𦢴
+ 0x268b5: "\x82\x10\U000268b5", // 𦢵
+ 0x268b6: "\x82\x10\U000268b6", // 𦢶
+ 0x268b7: "\x82\x10\U000268b7", // 𦢷
+ 0x268b8: "\x82\x11\U000268b8", // 𦢸
+ 0x268b9: "\x82\x11\U000268b9", // 𦢹
+ 0x268ba: "\x82\x11\U000268ba", // 𦢺
+ 0x268bb: "\x82\x11\U000268bb", // 𦢻
+ 0x268bc: "\x82\x11\U000268bc", // 𦢼
+ 0x268bd: "\x82\x11\U000268bd", // 𦢽
+ 0x268be: "\x82\x11\U000268be", // 𦢾
+ 0x268bf: "\x82\x12\U000268bf", // 𦢿
+ 0x268c0: "\x82\x12\U000268c0", // 𦣀
+ 0x268c1: "\x82\x12\U000268c1", // 𦣁
+ 0x268c2: "\x82\x12\U000268c2", // 𦣂
+ 0x268c3: "\x82\x12\U000268c3", // 𦣃
+ 0x268c4: "\x82\x12\U000268c4", // 𦣄
+ 0x268c5: "\x82\x12\U000268c5", // 𦣅
+ 0x268c6: "\x82\x13\U000268c6", // 𦣆
+ 0x268c7: "\x82\x13\U000268c7", // 𦣇
+ 0x268c8: "\x82\x13\U000268c8", // 𦣈
+ 0x268c9: "\x82\x13\U000268c9", // 𦣉
+ 0x268ca: "\x82\x13\U000268ca", // 𦣊
+ 0x268cb: "\x82\x13\U000268cb", // 𦣋
+ 0x268cc: "\x82\x13\U000268cc", // 𦣌
+ 0x268cd: "\x82\x13\U000268cd", // 𦣍
+ 0x268ce: "\x82\x13\U000268ce", // 𦣎
+ 0x268cf: "\x82\x13\U000268cf", // 𦣏
+ 0x268d0: "\x82\x13\U000268d0", // 𦣐
+ 0x268d1: "\x82\x14\U000268d1", // 𦣑
+ 0x268d2: "\x82\x14\U000268d2", // 𦣒
+ 0x268d3: "\x82\x14\U000268d3", // 𦣓
+ 0x268d4: "\x82\x14\U000268d4", // 𦣔
+ 0x268d5: "\x82\x14\U000268d5", // 𦣕
+ 0x268d6: "\x82\x15\U000268d6", // 𦣖
+ 0x268d7: "\x82\x15\U000268d7", // 𦣗
+ 0x268d8: "\x82\x16\U000268d8", // 𦣘
+ 0x268d9: "\x82\x16\U000268d9", // 𦣙
+ 0x268da: "\x82\x16\U000268da", // 𦣚
+ 0x268db: "\x82\x17\U000268db", // 𦣛
+ 0x268dc: "\x82\x18\U000268dc", // 𦣜
+ 0x268dd: "\x83\x01\U000268dd", // 𦣝
+ 0x268de: "\x83\x00\U000268de", // 𦣞
+ 0x268df: "\x83\x03\U000268df", // 𦣟
+ 0x268e0: "\x83\x04\U000268e0", // 𦣠
+ 0x268e1: "\x83\x04\U000268e1", // 𦣡
+ 0x268e2: "\x83\x04\U000268e2", // 𦣢
+ 0x268e3: "\x83\x04\U000268e3", // 𦣣
+ 0x268e4: "\x83\x05\U000268e4", // 𦣤
+ 0x268e5: "\x83\x05\U000268e5", // 𦣥
+ 0x268e6: "\x83\x06\U000268e6", // 𦣦
+ 0x268e7: "\x83\x06\U000268e7", // 𦣧
+ 0x268e8: "\x83\x06\U000268e8", // 𦣨
+ 0x268e9: "\x83\x06\U000268e9", // 𦣩
+ 0x268ea: "\x83\n\U000268ea", // 𦣪
+ 0x268eb: "\x83\b\U000268eb", // 𦣫
+ 0x268ec: "\x83\b\U000268ec", // 𦣬
+ 0x268ed: "\x83\t\U000268ed", // 𦣭
+ 0x268ee: "\x83\b\U000268ee", // 𦣮
+ 0x268ef: "\x83\t\U000268ef", // 𦣯
+ 0x268f0: "\x83\v\U000268f0", // 𦣰
+ 0x268f1: "\x83\v\U000268f1", // 𦣱
+ 0x268f2: "\x83\f\U000268f2", // 𦣲
+ 0x268f3: "\x83\f\U000268f3", // 𦣳
+ 0x268f4: "\x83\x0f\U000268f4", // 𦣴
+ 0x268f5: "\x83\x0f\U000268f5", // 𦣵
+ 0x268f6: "\x83\x10\U000268f6", // 𦣶
+ 0x268f7: "\x83\x17\U000268f7", // 𦣷
+ 0x268f8: "\x83\x19\U000268f8", // 𦣸
+ 0x268f9: "\x84\x00\U000268f9", // 𦣹
+ 0x268fa: "\x84\x01\U000268fa", // 𦣺
+ 0x268fb: "\x84\x01\U000268fb", // 𦣻
+ 0x268fc: "\x84\x01\U000268fc", // 𦣼
+ 0x268fd: "\x84\x02\U000268fd", // 𦣽
+ 0x268fe: "\x84\x03\U000268fe", // 𦣾
+ 0x268ff: "\x84\x03\U000268ff", // 𦣿
+ 0x26900: "\x84\x03\U00026900", // 𦤀
+ 0x26901: "\x84\x04\U00026901", // 𦤁
+ 0x26902: "\x84\x04\U00026902", // 𦤂
+ 0x26903: "\x84\x04\U00026903", // 𦤃
+ 0x26904: "\x84\x04\U00026904", // 𦤄
+ 0x26905: "\x84\x04\U00026905", // 𦤅
+ 0x26906: "\x84\x04\U00026906", // 𦤆
+ 0x26907: "\x84\x04\U00026907", // 𦤇
+ 0x26908: "\x84\x04\U00026908", // 𦤈
+ 0x26909: "\x84\x04\U00026909", // 𦤉
+ 0x2690a: "\x84\x04\U0002690a", // 𦤊
+ 0x2690b: "\x84\x04\U0002690b", // 𦤋
+ 0x2690c: "\x84\x05\U0002690c", // 𦤌
+ 0x2690d: "\x84\x05\U0002690d", // 𦤍
+ 0x2690e: "\x84\x05\U0002690e", // 𦤎
+ 0x2690f: "\x84\x05\U0002690f", // 𦤏
+ 0x26910: "\x84\x06\U00026910", // 𦤐
+ 0x26911: "\x84\x06\U00026911", // 𦤑
+ 0x26912: "\x84\x06\U00026912", // 𦤒
+ 0x26913: "\x84\x06\U00026913", // 𦤓
+ 0x26914: "\x84\a\U00026914", // 𦤔
+ 0x26915: "\x84\b\U00026915", // 𦤕
+ 0x26916: "\x84\b\U00026916", // 𦤖
+ 0x26917: "\x84\b\U00026917", // 𦤗
+ 0x26918: "\x84\t\U00026918", // 𦤘
+ 0x26919: "\x84\t\U00026919", // 𦤙
+ 0x2691a: "\x84\t\U0002691a", // 𦤚
+ 0x2691b: "\x84\t\U0002691b", // 𦤛
+ 0x2691c: "\x84\t\U0002691c", // 𦤜
+ 0x2691d: "\x84\t\U0002691d", // 𦤝
+ 0x2691e: "\x84\n\U0002691e", // 𦤞
+ 0x2691f: "\x84\n\U0002691f", // 𦤟
+ 0x26920: "\x84\n\U00026920", // 𦤠
+ 0x26921: "\x84\v\U00026921", // 𦤡
+ 0x26922: "\x84\v\U00026922", // 𦤢
+ 0x26923: "\x84\v\U00026923", // 𦤣
+ 0x26924: "\x84\v\U00026924", // 𦤤
+ 0x26925: "\x84\f\U00026925", // 𦤥
+ 0x26926: "\x84\r\U00026926", // 𦤦
+ 0x26927: "\x84\r\U00026927", // 𦤧
+ 0x26928: "\x84\r\U00026928", // 𦤨
+ 0x26929: "\x84\r\U00026929", // 𦤩
+ 0x2692a: "\x84\r\U0002692a", // 𦤪
+ 0x2692b: "\x84\x0e\U0002692b", // 𦤫
+ 0x2692c: "\x84\x0e\U0002692c", // 𦤬
+ 0x2692d: "\x84\x0e\U0002692d", // 𦤭
+ 0x2692e: "\x84\x0e\U0002692e", // 𦤮
+ 0x2692f: "\x84\x0f\U0002692f", // 𦤯
+ 0x26930: "\x84\x0f\U00026930", // 𦤰
+ 0x26931: "\x84\x12\U00026931", // 𦤱
+ 0x26932: "\x84\x14\U00026932", // 𦤲
+ 0x26933: "\x85\x00\U00026933", // 𦤳
+ 0x26934: "\x85\x00\U00026934", // 𦤴
+ 0x26935: "\x85\x02\U00026935", // 𦤵
+ 0x26936: "\x85\x03\U00026936", // 𦤶
+ 0x26937: "\x85\x03\U00026937", // 𦤷
+ 0x26938: "\x85\x03\U00026938", // 𦤸
+ 0x26939: "\x85\x04\U00026939", // 𦤹
+ 0x2693a: "\x85\x04\U0002693a", // 𦤺
+ 0x2693b: "\x85\x05\U0002693b", // 𦤻
+ 0x2693c: "\x85\x05\U0002693c", // 𦤼
+ 0x2693d: "\x85\x05\U0002693d", // 𦤽
+ 0x2693e: "\x85\x05\U0002693e", // 𦤾
+ 0x2693f: "\x85\x06\U0002693f", // 𦤿
+ 0x26940: "\x85\x06\U00026940", // 𦥀
+ 0x26941: "\x85\a\U00026941", // 𦥁
+ 0x26942: "\x85\b\U00026942", // 𦥂
+ 0x26943: "\x85\b\U00026943", // 𦥃
+ 0x26944: "\x85\b\U00026944", // 𦥄
+ 0x26945: "\x85\t\U00026945", // 𦥅
+ 0x26946: "\x85\t\U00026946", // 𦥆
+ 0x26947: "\x85\t\U00026947", // 𦥇
+ 0x26948: " \v\U00026948", // 𦥈
+ 0x26949: "\x85\n\U00026949", // 𦥉
+ 0x2694a: "\x85\n\U0002694a", // 𦥊
+ 0x2694b: "\x85\n\U0002694b", // 𦥋
+ 0x2694c: "\x85\n\U0002694c", // 𦥌
+ 0x2694d: "\x85\n\U0002694d", // 𦥍
+ 0x2694e: "\x85\v\U0002694e", // 𦥎
+ 0x2694f: "\x85\f\U0002694f", // 𦥏
+ 0x26950: "\x85\f\U00026950", // 𦥐
+ 0x26951: "\x86\x00\U00026951", // 𦥑
+ 0x26952: "\x86\x00\U00026952", // 𦥒
+ 0x26953: "\x86\x00\U00026953", // 𦥓
+ 0x26954: "\x86\x01\U00026954", // 𦥔
+ 0x26955: "\x86\x02\U00026955", // 𦥕
+ 0x26956: "\x86\x02\U00026956", // 𦥖
+ 0x26957: "\x86\x03\U00026957", // 𦥗
+ 0x26958: "\x86\x03\U00026958", // 𦥘
+ 0x26959: "\x86\x02\U00026959", // 𦥙
+ 0x2695a: "\x86\x03\U0002695a", // 𦥚
+ 0x2695b: "\x86\x03\U0002695b", // 𦥛
+ 0x2695c: "\x86\x03\U0002695c", // 𦥜
+ 0x2695d: "\x86\x04\U0002695d", // 𦥝
+ 0x2695e: "\x86\x04\U0002695e", // 𦥞
+ 0x2695f: "\x86\x04\U0002695f", // 𦥟
+ 0x26960: "\x86\x04\U00026960", // 𦥠
+ 0x26961: "\x86\x04\U00026961", // 𦥡
+ 0x26962: "\x86\x04\U00026962", // 𦥢
+ 0x26963: "\x86\x04\U00026963", // 𦥣
+ 0x26964: "\x86\x04\U00026964", // 𦥤
+ 0x26965: "\x86\x05\U00026965", // 𦥥
+ 0x26966: "\x86\x05\U00026966", // 𦥦
+ 0x26967: "\x86\x03\U00026967", // 𦥧
+ 0x26968: "\x86\x05\U00026968", // 𦥨
+ 0x26969: "\x86\x05\U00026969", // 𦥩
+ 0x2696a: "\x86\x05\U0002696a", // 𦥪
+ 0x2696b: "\x86\x05\U0002696b", // 𦥫
+ 0x2696c: "\x86\x05\U0002696c", // 𦥬
+ 0x2696d: "\x86\x06\U0002696d", // 𦥭
+ 0x2696e: "\x86\x06\U0002696e", // 𦥮
+ 0x2696f: "\x86\x06\U0002696f", // 𦥯
+ 0x26970: "\x86\x06\U00026970", // 𦥰
+ 0x26971: "\x86\x06\U00026971", // 𦥱
+ 0x26972: "\x86\x06\U00026972", // 𦥲
+ 0x26973: "\x86\a\U00026973", // 𦥳
+ 0x26974: "\x86\a\U00026974", // 𦥴
+ 0x26975: "\x86\a\U00026975", // 𦥵
+ 0x26976: "\x86\a\U00026976", // 𦥶
+ 0x26977: "\x86\a\U00026977", // 𦥷
+ 0x26978: "\x86\a\U00026978", // 𦥸
+ 0x26979: "\x86\a\U00026979", // 𦥹
+ 0x2697a: "\x86\a\U0002697a", // 𦥺
+ 0x2697b: "\x86\b\U0002697b", // 𦥻
+ 0x2697c: "\x86\b\U0002697c", // 𦥼
+ 0x2697d: "\x86\b\U0002697d", // 𦥽
+ 0x2697e: "\x86\b\U0002697e", // 𦥾
+ 0x2697f: "\x86\b\U0002697f", // 𦥿
+ 0x26980: "\x86\b\U00026980", // 𦦀
+ 0x26981: "\x86\b\U00026981", // 𦦁
+ 0x26982: "\x86\b\U00026982", // 𦦂
+ 0x26983: "\x86\b\U00026983", // 𦦃
+ 0x26984: "\x86\b\U00026984", // 𦦄
+ 0x26985: "\x86\t\U00026985", // 𦦅
+ 0x26986: "\x86\t\U00026986", // 𦦆
+ 0x26987: "\x86\t\U00026987", // 𦦇
+ 0x26988: "\x86\t\U00026988", // 𦦈
+ 0x26989: "\x86\t\U00026989", // 𦦉
+ 0x2698a: "\x86\t\U0002698a", // 𦦊
+ 0x2698b: "\x86\t\U0002698b", // 𦦋
+ 0x2698c: "\x86\t\U0002698c", // 𦦌
+ 0x2698d: "\x86\t\U0002698d", // 𦦍
+ 0x2698e: "\x86\t\U0002698e", // 𦦎
+ 0x2698f: "\x86\n\U0002698f", // 𦦏
+ 0x26990: "\x86\n\U00026990", // 𦦐
+ 0x26991: "\x86\n\U00026991", // 𦦑
+ 0x26992: "\x86\n\U00026992", // 𦦒
+ 0x26993: "\x86\n\U00026993", // 𦦓
+ 0x26994: "r\v\U00026994", // 𦦔
+ 0x26995: "\x86\n\U00026995", // 𦦕
+ 0x26996: "\x86\n\U00026996", // 𦦖
+ 0x26997: "\x86\n\U00026997", // 𦦗
+ 0x26998: "\x86\v\U00026998", // 𦦘
+ 0x26999: "\x86\v\U00026999", // 𦦙
+ 0x2699a: "\x86\v\U0002699a", // 𦦚
+ 0x2699b: "\x86\v\U0002699b", // 𦦛
+ 0x2699c: "\x86\v\U0002699c", // 𦦜
+ 0x2699d: "\x86\v\U0002699d", // 𦦝
+ 0x2699e: "\x86\v\U0002699e", // 𦦞
+ 0x2699f: "\x86\v\U0002699f", // 𦦟
+ 0x269a0: "\x86\v\U000269a0", // 𦦠
+ 0x269a1: "\x86\f\U000269a1", // 𦦡
+ 0x269a2: "\x86\f\U000269a2", // 𦦢
+ 0x269a3: "\x86\f\U000269a3", // 𦦣
+ 0x269a4: "\x86\f\U000269a4", // 𦦤
+ 0x269a5: "\x86\f\U000269a5", // 𦦥
+ 0x269a6: "\x86\f\U000269a6", // 𦦦
+ 0x269a7: "\x86\f\U000269a7", // 𦦧
+ 0x269a8: "V\x0e\U000269a8", // 𦦨
+ 0x269a9: "\x86\r\U000269a9", // 𦦩
+ 0x269aa: "\x86\r\U000269aa", // 𦦪
+ 0x269ab: "\x86\r\U000269ab", // 𦦫
+ 0x269ac: "\x86\r\U000269ac", // 𦦬
+ 0x269ad: "\x86\x0e\U000269ad", // 𦦭
+ 0x269ae: "\x86\x0e\U000269ae", // 𦦮
+ 0x269af: "\x86\r\U000269af", // 𦦯
+ 0x269b0: "\x86\x0e\U000269b0", // 𦦰
+ 0x269b1: "\x86\x0e\U000269b1", // 𦦱
+ 0x269b2: "\x86\x0e\U000269b2", // 𦦲
+ 0x269b3: "\x86\x0e\U000269b3", // 𦦳
+ 0x269b4: "\x86\x0e\U000269b4", // 𦦴
+ 0x269b5: "\x86\x0e\U000269b5", // 𦦵
+ 0x269b6: "\x86\x0f\U000269b6", // 𦦶
+ 0x269b7: "\x86\x0f\U000269b7", // 𦦷
+ 0x269b8: "\x86\x0f\U000269b8", // 𦦸
+ 0x269b9: "\x86\x10\U000269b9", // 𦦹
+ 0x269ba: "\x86\x11\U000269ba", // 𦦺
+ 0x269bb: "\x86\x11\U000269bb", // 𦦻
+ 0x269bc: "\x86\x12\U000269bc", // 𦦼
+ 0x269bd: "\x86\x13\U000269bd", // 𦦽
+ 0x269be: "\x86\x13\U000269be", // 𦦾
+ 0x269bf: "\x86\x13\U000269bf", // 𦦿
+ 0x269c0: "\x86\x14\U000269c0", // 𦧀
+ 0x269c1: "\x86\x15\U000269c1", // 𦧁
+ 0x269c2: "\x86\x15\U000269c2", // 𦧂
+ 0x269c3: "\x86\x18\U000269c3", // 𦧃
+ 0x269c4: "\x86$\U000269c4", // 𦧄
+ 0x269c5: "\x86*\U000269c5", // 𦧅
+ 0x269c6: "\x87\x01\U000269c6", // 𦧆
+ 0x269c7: "\x87\x03\U000269c7", // 𦧇
+ 0x269c8: "\x87\x04\U000269c8", // 𦧈
+ 0x269c9: "\x87\x04\U000269c9", // 𦧉
+ 0x269ca: "\x87\x04\U000269ca", // 𦧊
+ 0x269cb: "\x87\x04\U000269cb", // 𦧋
+ 0x269cc: "\x87\x04\U000269cc", // 𦧌
+ 0x269cd: "\x87\x04\U000269cd", // 𦧍
+ 0x269ce: "\x87\x04\U000269ce", // 𦧎
+ 0x269cf: "\x87\x04\U000269cf", // 𦧏
+ 0x269d0: "\x87\x04\U000269d0", // 𦧐
+ 0x269d1: "\x87\x05\U000269d1", // 𦧑
+ 0x269d2: "\x87\x05\U000269d2", // 𦧒
+ 0x269d3: "\x87\x05\U000269d3", // 𦧓
+ 0x269d4: "\x87\x05\U000269d4", // 𦧔
+ 0x269d5: "\x87\x06\U000269d5", // 𦧕
+ 0x269d6: "\x87\x06\U000269d6", // 𦧖
+ 0x269d7: "\x87\x06\U000269d7", // 𦧗
+ 0x269d8: "\x87\x06\U000269d8", // 𦧘
+ 0x269d9: "\x87\x06\U000269d9", // 𦧙
+ 0x269da: "\x87\x06\U000269da", // 𦧚
+ 0x269db: "\x87\x06\U000269db", // 𦧛
+ 0x269dc: "\x87\x06\U000269dc", // 𦧜
+ 0x269dd: "\x87\a\U000269dd", // 𦧝
+ 0x269de: "\x87\a\U000269de", // 𦧞
+ 0x269df: "\x87\b\U000269df", // 𦧟
+ 0x269e0: "\x87\b\U000269e0", // 𦧠
+ 0x269e1: "\x87\b\U000269e1", // 𦧡
+ 0x269e2: "\x87\b\U000269e2", // 𦧢
+ 0x269e3: "\x87\b\U000269e3", // 𦧣
+ 0x269e4: "\x87\b\U000269e4", // 𦧤
+ 0x269e5: "\x87\b\U000269e5", // 𦧥
+ 0x269e6: "\x87\b\U000269e6", // 𦧦
+ 0x269e7: "\x87\t\U000269e7", // 𦧧
+ 0x269e8: "\x87\t\U000269e8", // 𦧨
+ 0x269e9: "\x87\t\U000269e9", // 𦧩
+ 0x269ea: "\x87\t\U000269ea", // 𦧪
+ 0x269eb: "\x87\t\U000269eb", // 𦧫
+ 0x269ec: "\x87\t\U000269ec", // 𦧬
+ 0x269ed: "\x87\n\U000269ed", // 𦧭
+ 0x269ee: "\x87\n\U000269ee", // 𦧮
+ 0x269ef: "\x87\n\U000269ef", // 𦧯
+ 0x269f0: "\x87\n\U000269f0", // 𦧰
+ 0x269f1: "\x87\v\U000269f1", // 𦧱
+ 0x269f2: "\x87\v\U000269f2", // 𦧲
+ 0x269f3: "\x87\v\U000269f3", // 𦧳
+ 0x269f4: "\x87\f\U000269f4", // 𦧴
+ 0x269f5: "\x87\f\U000269f5", // 𦧵
+ 0x269f6: "\x87\f\U000269f6", // 𦧶
+ 0x269f7: "\x87\r\U000269f7", // 𦧷
+ 0x269f8: "\x87\x0e\U000269f8", // 𦧸
+ 0x269f9: "\x87\x0f\U000269f9", // 𦧹
+ 0x269fa: "\x87\x10\U000269fa", // 𦧺
+ 0x269fb: "\x87\x11\U000269fb", // 𦧻
+ 0x269fc: "\x87\x11\U000269fc", // 𦧼
+ 0x269fd: "\x87\x14\U000269fd", // 𦧽
+ 0x269fe: "\x88\t\U000269fe", // 𦧾
+ 0x269ff: "\x88\t\U000269ff", // 𦧿
+ 0x26a00: "\x88\f\U00026a00", // 𦨀
+ 0x26a01: "\x88\x0e\U00026a01", // 𦨁
+ 0x26a02: "\x88\x11\U00026a02", // 𦨂
+ 0x26a03: "\x88\x10\U00026a03", // 𦨃
+ 0x26a04: "\x88\x12\U00026a04", // 𦨄
+ 0x26a05: "\x88\x13\U00026a05", // 𦨅
+ 0x26a06: "\x88\x15\U00026a06", // 𦨆
+ 0x26a07: "\x89\x01\U00026a07", // 𦨇
+ 0x26a08: "\x89\x02\U00026a08", // 𦨈
+ 0x26a09: "\x89\x02\U00026a09", // 𦨉
+ 0x26a0a: "\x89\x02\U00026a0a", // 𦨊
+ 0x26a0b: "\x89\x02\U00026a0b", // 𦨋
+ 0x26a0c: "\x89\x02\U00026a0c", // 𦨌
+ 0x26a0d: "\x89\x02\U00026a0d", // 𦨍
+ 0x26a0e: "\x89\x03\U00026a0e", // 𦨎
+ 0x26a0f: "\x89\x03\U00026a0f", // 𦨏
+ 0x26a10: "\x89\x03\U00026a10", // 𦨐
+ 0x26a11: "\x89\x03\U00026a11", // 𦨑
+ 0x26a12: "\x89\x03\U00026a12", // 𦨒
+ 0x26a13: "\x89\x03\U00026a13", // 𦨓
+ 0x26a14: "\x89\x03\U00026a14", // 𦨔
+ 0x26a15: "\x89\x04\U00026a15", // 𦨕
+ 0x26a16: "\x89\x04\U00026a16", // 𦨖
+ 0x26a17: "\x89\x04\U00026a17", // 𦨗
+ 0x26a18: "\x89\x04\U00026a18", // 𦨘
+ 0x26a19: "\x89\x04\U00026a19", // 𦨙
+ 0x26a1a: "\x89\x04\U00026a1a", // 𦨚
+ 0x26a1b: "\x89\x04\U00026a1b", // 𦨛
+ 0x26a1c: "\x89\x04\U00026a1c", // 𦨜
+ 0x26a1d: "\x89\x04\U00026a1d", // 𦨝
+ 0x26a1e: "\x89\x04\U00026a1e", // 𦨞
+ 0x26a1f: "\x89\x04\U00026a1f", // 𦨟
+ 0x26a20: "\x89\x04\U00026a20", // 𦨠
+ 0x26a21: "\x89\x05\U00026a21", // 𦨡
+ 0x26a22: "\x89\x05\U00026a22", // 𦨢
+ 0x26a23: "\x89\x05\U00026a23", // 𦨣
+ 0x26a24: "\x89\x05\U00026a24", // 𦨤
+ 0x26a25: "\x89\x05\U00026a25", // 𦨥
+ 0x26a26: "\x89\x05\U00026a26", // 𦨦
+ 0x26a27: "\x89\x05\U00026a27", // 𦨧
+ 0x26a28: "\x89\x05\U00026a28", // 𦨨
+ 0x26a29: "\x89\x05\U00026a29", // 𦨩
+ 0x26a2a: "\x89\x05\U00026a2a", // 𦨪
+ 0x26a2b: "\x89\x05\U00026a2b", // 𦨫
+ 0x26a2c: "\x89\x05\U00026a2c", // 𦨬
+ 0x26a2d: "\x89\x05\U00026a2d", // 𦨭
+ 0x26a2e: "\x89\x05\U00026a2e", // 𦨮
+ 0x26a2f: "\x89\x06\U00026a2f", // 𦨯
+ 0x26a30: "\x89\x06\U00026a30", // 𦨰
+ 0x26a31: "\x89\x06\U00026a31", // 𦨱
+ 0x26a32: "\x89\x06\U00026a32", // 𦨲
+ 0x26a33: "\x89\a\U00026a33", // 𦨳
+ 0x26a34: "\x89\x06\U00026a34", // 𦨴
+ 0x26a35: "\x89\x06\U00026a35", // 𦨵
+ 0x26a36: "\x89\x06\U00026a36", // 𦨶
+ 0x26a37: "\x89\x06\U00026a37", // 𦨷
+ 0x26a38: "\x89\x06\U00026a38", // 𦨸
+ 0x26a39: "\x89\x06\U00026a39", // 𦨹
+ 0x26a3a: "\x89\x06\U00026a3a", // 𦨺
+ 0x26a3b: "\x89\x06\U00026a3b", // 𦨻
+ 0x26a3c: "\x89\x06\U00026a3c", // 𦨼
+ 0x26a3d: "\x89\a\U00026a3d", // 𦨽
+ 0x26a3e: "\x89\a\U00026a3e", // 𦨾
+ 0x26a3f: "\x89\a\U00026a3f", // 𦨿
+ 0x26a40: "\x89\a\U00026a40", // 𦩀
+ 0x26a41: "\x89\a\U00026a41", // 𦩁
+ 0x26a42: "\x89\a\U00026a42", // 𦩂
+ 0x26a43: "\x89\a\U00026a43", // 𦩃
+ 0x26a44: "\x89\a\U00026a44", // 𦩄
+ 0x26a45: "\x89\a\U00026a45", // 𦩅
+ 0x26a46: "\x89\a\U00026a46", // 𦩆
+ 0x26a47: "\x89\a\U00026a47", // 𦩇
+ 0x26a48: "\x89\a\U00026a48", // 𦩈
+ 0x26a49: "\x89\a\U00026a49", // 𦩉
+ 0x26a4a: "\x89\b\U00026a4a", // 𦩊
+ 0x26a4b: "\x89\b\U00026a4b", // 𦩋
+ 0x26a4c: "\x89\b\U00026a4c", // 𦩌
+ 0x26a4d: "\x89\b\U00026a4d", // 𦩍
+ 0x26a4e: "\x89\b\U00026a4e", // 𦩎
+ 0x26a4f: "\x89\b\U00026a4f", // 𦩏
+ 0x26a50: "\x89\b\U00026a50", // 𦩐
+ 0x26a51: "\x89\b\U00026a51", // 𦩑
+ 0x26a52: "\x89\b\U00026a52", // 𦩒
+ 0x26a53: "\x89\b\U00026a53", // 𦩓
+ 0x26a54: "\x89\b\U00026a54", // 𦩔
+ 0x26a55: "\x89\b\U00026a55", // 𦩕
+ 0x26a56: "\x89\b\U00026a56", // 𦩖
+ 0x26a57: "\x89\b\U00026a57", // 𦩗
+ 0x26a58: "\x89\b\U00026a58", // 𦩘
+ 0x26a59: "\x89\b\U00026a59", // 𦩙
+ 0x26a5a: "\x89\b\U00026a5a", // 𦩚
+ 0x26a5b: "\x89\b\U00026a5b", // 𦩛
+ 0x26a5c: "\x89\b\U00026a5c", // 𦩜
+ 0x26a5d: "\x89\t\U00026a5d", // 𦩝
+ 0x26a5e: "\x89\t\U00026a5e", // 𦩞
+ 0x26a5f: "\x89\t\U00026a5f", // 𦩟
+ 0x26a60: "\x89\t\U00026a60", // 𦩠
+ 0x26a61: "\x89\t\U00026a61", // 𦩡
+ 0x26a62: "\x89\t\U00026a62", // 𦩢
+ 0x26a63: "\x89\t\U00026a63", // 𦩣
+ 0x26a64: "\x89\t\U00026a64", // 𦩤
+ 0x26a65: "\x89\t\U00026a65", // 𦩥
+ 0x26a66: "\x89\t\U00026a66", // 𦩦
+ 0x26a67: "\x89\t\U00026a67", // 𦩧
+ 0x26a68: "\x89\t\U00026a68", // 𦩨
+ 0x26a69: "\x89\t\U00026a69", // 𦩩
+ 0x26a6a: "\x89\t\U00026a6a", // 𦩪
+ 0x26a6b: "\x89\t\U00026a6b", // 𦩫
+ 0x26a6c: "\x89\t\U00026a6c", // 𦩬
+ 0x26a6d: "\x89\t\U00026a6d", // 𦩭
+ 0x26a6e: "\x89\t\U00026a6e", // 𦩮
+ 0x26a6f: "\x89\t\U00026a6f", // 𦩯
+ 0x26a70: "\x89\t\U00026a70", // 𦩰
+ 0x26a71: "\x89\t\U00026a71", // 𦩱
+ 0x26a72: "\x89\t\U00026a72", // 𦩲
+ 0x26a73: "\x89\t\U00026a73", // 𦩳
+ 0x26a74: "\x89\n\U00026a74", // 𦩴
+ 0x26a75: "\x89\n\U00026a75", // 𦩵
+ 0x26a76: "\x89\n\U00026a76", // 𦩶
+ 0x26a77: "\x89\n\U00026a77", // 𦩷
+ 0x26a78: "\x89\n\U00026a78", // 𦩸
+ 0x26a79: "\x89\n\U00026a79", // 𦩹
+ 0x26a7a: "\x89\n\U00026a7a", // 𦩺
+ 0x26a7b: "\x89\n\U00026a7b", // 𦩻
+ 0x26a7c: "\x89\n\U00026a7c", // 𦩼
+ 0x26a7d: "\x89\n\U00026a7d", // 𦩽
+ 0x26a7e: "\x89\n\U00026a7e", // 𦩾
+ 0x26a7f: "\x89\t\U00026a7f", // 𦩿
+ 0x26a80: "\x89\n\U00026a80", // 𦪀
+ 0x26a81: "\x89\n\U00026a81", // 𦪁
+ 0x26a82: "\x89\n\U00026a82", // 𦪂
+ 0x26a83: "\x89\n\U00026a83", // 𦪃
+ 0x26a84: "\x89\n\U00026a84", // 𦪄
+ 0x26a85: "\x89\n\U00026a85", // 𦪅
+ 0x26a86: "\x89\v\U00026a86", // 𦪆
+ 0x26a87: "\x89\v\U00026a87", // 𦪇
+ 0x26a88: "\x89\v\U00026a88", // 𦪈
+ 0x26a89: "\x89\v\U00026a89", // 𦪉
+ 0x26a8a: "\x89\v\U00026a8a", // 𦪊
+ 0x26a8b: "\x89\v\U00026a8b", // 𦪋
+ 0x26a8c: "\x89\v\U00026a8c", // 𦪌
+ 0x26a8d: "\x89\v\U00026a8d", // 𦪍
+ 0x26a8e: "\x89\v\U00026a8e", // 𦪎
+ 0x26a8f: "\x89\v\U00026a8f", // 𦪏
+ 0x26a90: "\x89\v\U00026a90", // 𦪐
+ 0x26a91: "\x89\f\U00026a91", // 𦪑
+ 0x26a92: "\x89\f\U00026a92", // 𦪒
+ 0x26a93: "\x89\f\U00026a93", // 𦪓
+ 0x26a94: "\x89\f\U00026a94", // 𦪔
+ 0x26a95: "\x89\f\U00026a95", // 𦪕
+ 0x26a96: "\x89\f\U00026a96", // 𦪖
+ 0x26a97: "\x89\f\U00026a97", // 𦪗
+ 0x26a98: "\x89\f\U00026a98", // 𦪘
+ 0x26a99: "\x89\f\U00026a99", // 𦪙
+ 0x26a9a: "\x89\f\U00026a9a", // 𦪚
+ 0x26a9b: "\x89\f\U00026a9b", // 𦪛
+ 0x26a9c: "\x89\f\U00026a9c", // 𦪜
+ 0x26a9d: "\x89\f\U00026a9d", // 𦪝
+ 0x26a9e: "\x89\f\U00026a9e", // 𦪞
+ 0x26a9f: "\x89\f\U00026a9f", // 𦪟
+ 0x26aa0: "\x89\f\U00026aa0", // 𦪠
+ 0x26aa1: "\x89\f\U00026aa1", // 𦪡
+ 0x26aa2: "\x89\f\U00026aa2", // 𦪢
+ 0x26aa3: "\x89\f\U00026aa3", // 𦪣
+ 0x26aa4: "\x89\f\U00026aa4", // 𦪤
+ 0x26aa5: "\x89\f\U00026aa5", // 𦪥
+ 0x26aa6: "\x89\f\U00026aa6", // 𦪦
+ 0x26aa7: "\x89\f\U00026aa7", // 𦪧
+ 0x26aa8: "\x89\r\U00026aa8", // 𦪨
+ 0x26aa9: "\x89\r\U00026aa9", // 𦪩
+ 0x26aaa: "\x89\r\U00026aaa", // 𦪪
+ 0x26aab: "\x89\r\U00026aab", // 𦪫
+ 0x26aac: "\x89\r\U00026aac", // 𦪬
+ 0x26aad: "\x89\r\U00026aad", // 𦪭
+ 0x26aae: "\x89\r\U00026aae", // 𦪮
+ 0x26aaf: "\x89\r\U00026aaf", // 𦪯
+ 0x26ab0: "\x89\r\U00026ab0", // 𦪰
+ 0x26ab1: "\x89\x0e\U00026ab1", // 𦪱
+ 0x26ab2: "\x89\x0e\U00026ab2", // 𦪲
+ 0x26ab3: "\x89\x0e\U00026ab3", // 𦪳
+ 0x26ab4: "\x89\x0e\U00026ab4", // 𦪴
+ 0x26ab5: "\x89\x0e\U00026ab5", // 𦪵
+ 0x26ab6: "\x89\x0f\U00026ab6", // 𦪶
+ 0x26ab7: "\x89\x0f\U00026ab7", // 𦪷
+ 0x26ab8: "\x89\x0f\U00026ab8", // 𦪸
+ 0x26ab9: "l\x10\U00026ab9", // 𦪹
+ 0x26aba: "\x89\x0f\U00026aba", // 𦪺
+ 0x26abb: "\x89\x0f\U00026abb", // 𦪻
+ 0x26abc: "\x89\x0f\U00026abc", // 𦪼
+ 0x26abd: "\x89\x10\U00026abd", // 𦪽
+ 0x26abe: "\x89\x10\U00026abe", // 𦪾
+ 0x26abf: "\x89\x10\U00026abf", // 𦪿
+ 0x26ac0: "\x89\x10\U00026ac0", // 𦫀
+ 0x26ac1: "\x89\x10\U00026ac1", // 𦫁
+ 0x26ac2: "\x89\x10\U00026ac2", // 𦫂
+ 0x26ac3: "\x89\x11\U00026ac3", // 𦫃
+ 0x26ac4: "\x89\x11\U00026ac4", // 𦫄
+ 0x26ac5: "\x89\x13\U00026ac5", // 𦫅
+ 0x26ac6: "\x89\x13\U00026ac6", // 𦫆
+ 0x26ac7: "\x89\x14\U00026ac7", // 𦫇
+ 0x26ac8: "\x89\x15\U00026ac8", // 𦫈
+ 0x26ac9: "\x89\x14\U00026ac9", // 𦫉
+ 0x26aca: "\x89\x18\U00026aca", // 𦫊
+ 0x26acb: "\x8a\x03\U00026acb", // 𦫋
+ 0x26acc: "\x8a\x05\U00026acc", // 𦫌
+ 0x26acd: "\x8a\x05\U00026acd", // 𦫍
+ 0x26ace: "\x8a\x06\U00026ace", // 𦫎
+ 0x26acf: "\x8a\a\U00026acf", // 𦫏
+ 0x26ad0: "\x8a\t\U00026ad0", // 𦫐
+ 0x26ad1: "\x8a\v\U00026ad1", // 𦫑
+ 0x26ad2: "\x8a\x0e\U00026ad2", // 𦫒
+ 0x26ad3: "\x8b\x03\U00026ad3", // 𦫓
+ 0x26ad4: "\x8b\x05\U00026ad4", // 𦫔
+ 0x26ad5: "\x8b\x05\U00026ad5", // 𦫕
+ 0x26ad6: "\x8b\x05\U00026ad6", // 𦫖
+ 0x26ad7: "\x8b\x05\U00026ad7", // 𦫗
+ 0x26ad8: "\x8b\x05\U00026ad8", // 𦫘
+ 0x26ad9: "\x8b\x05\U00026ad9", // 𦫙
+ 0x26ada: "\x8b\x06\U00026ada", // 𦫚
+ 0x26adb: "\x8b\a\U00026adb", // 𦫛
+ 0x26adc: "\x8b\a\U00026adc", // 𦫜
+ 0x26add: "\x8b\a\U00026add", // 𦫝
+ 0x26ade: "\x8b\b\U00026ade", // 𦫞
+ 0x26adf: "\x8b\b\U00026adf", // 𦫟
+ 0x26ae0: "\x8b\b\U00026ae0", // 𦫠
+ 0x26ae1: "\x8b\b\U00026ae1", // 𦫡
+ 0x26ae2: "\x8b\b\U00026ae2", // 𦫢
+ 0x26ae3: "\x8b\b\U00026ae3", // 𦫣
+ 0x26ae4: "\x8b\t\U00026ae4", // 𦫤
+ 0x26ae5: "\x8b\t\U00026ae5", // 𦫥
+ 0x26ae6: "\x8b\t\U00026ae6", // 𦫦
+ 0x26ae7: "\x8b\t\U00026ae7", // 𦫧
+ 0x26ae8: "\x8b\t\U00026ae8", // 𦫨
+ 0x26ae9: "\x8b\t\U00026ae9", // 𦫩
+ 0x26aea: "\x8b\n\U00026aea", // 𦫪
+ 0x26aeb: "\x8b\n\U00026aeb", // 𦫫
+ 0x26aec: "\x8b\n\U00026aec", // 𦫬
+ 0x26aed: "\x8b\n\U00026aed", // 𦫭
+ 0x26aee: "\x8b\n\U00026aee", // 𦫮
+ 0x26aef: "\x8b\x0e\U00026aef", // 𦫯
+ 0x26af0: "\x8b\x0e\U00026af0", // 𦫰
+ 0x26af1: "\x8b\x0e\U00026af1", // 𦫱
+ 0x26af2: "\x8b\x13\U00026af2", // 𦫲
+ 0x26af3: "\x8c\x01\U00026af3", // 𦫳
+ 0x26af4: "\x8c\x01\U00026af4", // 𦫴
+ 0x26af5: "\x8c\x01\U00026af5", // 𦫵
+ 0x26af6: "\x8c\x02\U00026af6", // 𦫶
+ 0x26af7: "\x8c\x02\U00026af7", // 𦫷
+ 0x26af8: "\x8c\x02\U00026af8", // 𦫸
+ 0x26af9: "\x8c\x02\U00026af9", // 𦫹
+ 0x26afa: "\x8c\x02\U00026afa", // 𦫺
+ 0x26afb: "\x8c\x02\U00026afb", // 𦫻
+ 0x26afc: "\x8c\x02\U00026afc", // 𦫼
+ 0x26afd: "\x8c\x02\U00026afd", // 𦫽
+ 0x26afe: "\x8c\x02\U00026afe", // 𦫾
+ 0x26aff: "\x8c\x02\U00026aff", // 𦫿
+ 0x26b00: "\x8c\x02\U00026b00", // 𦬀
+ 0x26b01: "\x8c\x03\U00026b01", // 𦬁
+ 0x26b02: "\x8c\x03\U00026b02", // 𦬂
+ 0x26b03: "\x8c\x03\U00026b03", // 𦬃
+ 0x26b04: "\x8c\x03\U00026b04", // 𦬄
+ 0x26b05: "\x8c\x03\U00026b05", // 𦬅
+ 0x26b06: "\x8c\x03\U00026b06", // 𦬆
+ 0x26b07: "\x8c\x03\U00026b07", // 𦬇
+ 0x26b08: "\x8c\x03\U00026b08", // 𦬈
+ 0x26b09: "\x8c\x03\U00026b09", // 𦬉
+ 0x26b0a: "\x8c\x03\U00026b0a", // 𦬊
+ 0x26b0b: "\x8c\x03\U00026b0b", // 𦬋
+ 0x26b0c: "\x8c\x03\U00026b0c", // 𦬌
+ 0x26b0d: "\x8c\x03\U00026b0d", // 𦬍
+ 0x26b0e: "\x8c\x03\U00026b0e", // 𦬎
+ 0x26b0f: "\x8c\x03\U00026b0f", // 𦬏
+ 0x26b10: "\x8c\x03\U00026b10", // 𦬐
+ 0x26b11: "\x8c\x03\U00026b11", // 𦬑
+ 0x26b12: "\x8c\x03\U00026b12", // 𦬒
+ 0x26b13: "\x8c\x04\U00026b13", // 𦬓
+ 0x26b14: "\x8c\x04\U00026b14", // 𦬔
+ 0x26b15: "\x8c\x04\U00026b15", // 𦬕
+ 0x26b16: "\x8c\x04\U00026b16", // 𦬖
+ 0x26b17: "\x8c\x04\U00026b17", // 𦬗
+ 0x26b18: "\x8c\x04\U00026b18", // 𦬘
+ 0x26b19: "\x8c\x04\U00026b19", // 𦬙
+ 0x26b1a: "\x8c\x04\U00026b1a", // 𦬚
+ 0x26b1b: "\x8c\x04\U00026b1b", // 𦬛
+ 0x26b1c: "\x8c\x04\U00026b1c", // 𦬜
+ 0x26b1d: "\x8c\x04\U00026b1d", // 𦬝
+ 0x26b1e: "\x8c\x04\U00026b1e", // 𦬞
+ 0x26b1f: "\x8c\x04\U00026b1f", // 𦬟
+ 0x26b20: "\x8c\x04\U00026b20", // 𦬠
+ 0x26b21: "\x8c\x04\U00026b21", // 𦬡
+ 0x26b22: "\x8c\x04\U00026b22", // 𦬢
+ 0x26b23: "\x8c\x04\U00026b23", // 𦬣
+ 0x26b24: "\x8c\x04\U00026b24", // 𦬤
+ 0x26b25: "\x8c\x04\U00026b25", // 𦬥
+ 0x26b26: "\x8c\x04\U00026b26", // 𦬦
+ 0x26b27: "\x8c\x04\U00026b27", // 𦬧
+ 0x26b28: "\x8c\x04\U00026b28", // 𦬨
+ 0x26b29: "\x8c\x04\U00026b29", // 𦬩
+ 0x26b2a: "\x8c\x04\U00026b2a", // 𦬪
+ 0x26b2b: "\x8c\x04\U00026b2b", // 𦬫
+ 0x26b2c: "\x8c\x04\U00026b2c", // 𦬬
+ 0x26b2d: "\x8c\x04\U00026b2d", // 𦬭
+ 0x26b2e: "\x8c\x04\U00026b2e", // 𦬮
+ 0x26b2f: "\x8c\x04\U00026b2f", // 𦬯
+ 0x26b30: "\x8c\x04\U00026b30", // 𦬰
+ 0x26b31: "\x8c\x04\U00026b31", // 𦬱
+ 0x26b32: "\x8c\x04\U00026b32", // 𦬲
+ 0x26b33: "\x8c\x04\U00026b33", // 𦬳
+ 0x26b34: "\x8c\x04\U00026b34", // 𦬴
+ 0x26b35: "\x8c\x04\U00026b35", // 𦬵
+ 0x26b36: "\x8c\x04\U00026b36", // 𦬶
+ 0x26b37: "\x8c\x05\U00026b37", // 𦬷
+ 0x26b38: "\x8c\x05\U00026b38", // 𦬸
+ 0x26b39: "\x8c\x05\U00026b39", // 𦬹
+ 0x26b3a: "\x8c\x05\U00026b3a", // 𦬺
+ 0x26b3b: "\x8c\x05\U00026b3b", // 𦬻
+ 0x26b3c: "\x8c\x05\U00026b3c", // 𦬼
+ 0x26b3d: "\x8c\x05\U00026b3d", // 𦬽
+ 0x26b3e: "\x8c\x05\U00026b3e", // 𦬾
+ 0x26b3f: "\x8c\x05\U00026b3f", // 𦬿
+ 0x26b40: "\x8c\x05\U00026b40", // 𦭀
+ 0x26b41: "\x8c\x05\U00026b41", // 𦭁
+ 0x26b42: "\x8c\x05\U00026b42", // 𦭂
+ 0x26b43: "\x8c\x05\U00026b43", // 𦭃
+ 0x26b44: "\x8c\x05\U00026b44", // 𦭄
+ 0x26b45: "\x8c\x05\U00026b45", // 𦭅
+ 0x26b46: "\x8c\x05\U00026b46", // 𦭆
+ 0x26b47: "\x8c\x05\U00026b47", // 𦭇
+ 0x26b48: "\x8c\x05\U00026b48", // 𦭈
+ 0x26b49: "\x8c\x05\U00026b49", // 𦭉
+ 0x26b4a: "\x8c\x05\U00026b4a", // 𦭊
+ 0x26b4b: "\x8c\x05\U00026b4b", // 𦭋
+ 0x26b4c: "\x8c\x05\U00026b4c", // 𦭌
+ 0x26b4d: "\x8c\x05\U00026b4d", // 𦭍
+ 0x26b4e: "\x8c\x05\U00026b4e", // 𦭎
+ 0x26b4f: "\x8c\x05\U00026b4f", // 𦭏
+ 0x26b50: "\x8c\x05\U00026b50", // 𦭐
+ 0x26b51: "\x8c\x05\U00026b51", // 𦭑
+ 0x26b52: "\x8c\x05\U00026b52", // 𦭒
+ 0x26b53: "\x8c\x05\U00026b53", // 𦭓
+ 0x26b54: "\x8c\x05\U00026b54", // 𦭔
+ 0x26b55: "\x8c\x05\U00026b55", // 𦭕
+ 0x26b56: "\x8c\x05\U00026b56", // 𦭖
+ 0x26b57: "\x8c\x05\U00026b57", // 𦭗
+ 0x26b58: "\x8c\x05\U00026b58", // 𦭘
+ 0x26b59: "\x8c\x05\U00026b59", // 𦭙
+ 0x26b5a: "\x8c\x05\U00026b5a", // 𦭚
+ 0x26b5b: "\x8c\x05\U00026b5b", // 𦭛
+ 0x26b5c: "\x8c\x05\U00026b5c", // 𦭜
+ 0x26b5d: "\x8c\x05\U00026b5d", // 𦭝
+ 0x26b5e: "\x8c\x05\U00026b5e", // 𦭞
+ 0x26b5f: "\x8c\x05\U00026b5f", // 𦭟
+ 0x26b60: "\x8c\x05\U00026b60", // 𦭠
+ 0x26b61: "\x8c\x05\U00026b61", // 𦭡
+ 0x26b62: "\x8c\x05\U00026b62", // 𦭢
+ 0x26b63: "\x8c\x05\U00026b63", // 𦭣
+ 0x26b64: "\x8c\x05\U00026b64", // 𦭤
+ 0x26b65: "\x8c\x05\U00026b65", // 𦭥
+ 0x26b66: "\x8c\x05\U00026b66", // 𦭦
+ 0x26b67: "\x8c\x05\U00026b67", // 𦭧
+ 0x26b68: "\x8c\x05\U00026b68", // 𦭨
+ 0x26b69: "\x8c\x05\U00026b69", // 𦭩
+ 0x26b6a: "\x8c\x05\U00026b6a", // 𦭪
+ 0x26b6b: "\x8c\x05\U00026b6b", // 𦭫
+ 0x26b6c: "\x8c\x05\U00026b6c", // 𦭬
+ 0x26b6d: "\x8c\x06\U00026b6d", // 𦭭
+ 0x26b6e: "\x8c\x06\U00026b6e", // 𦭮
+ 0x26b6f: "\x8c\x06\U00026b6f", // 𦭯
+ 0x26b70: "\x8c\x06\U00026b70", // 𦭰
+ 0x26b71: "\x8c\x06\U00026b71", // 𦭱
+ 0x26b72: "\x8c\x06\U00026b72", // 𦭲
+ 0x26b73: "\x8c\x06\U00026b73", // 𦭳
+ 0x26b74: "\x8c\x06\U00026b74", // 𦭴
+ 0x26b75: "\x8c\x06\U00026b75", // 𦭵
+ 0x26b76: "\x8c\x06\U00026b76", // 𦭶
+ 0x26b77: "\x8c\x06\U00026b77", // 𦭷
+ 0x26b78: "\x8c\x06\U00026b78", // 𦭸
+ 0x26b79: "\x8c\x06\U00026b79", // 𦭹
+ 0x26b7a: "\x8c\x06\U00026b7a", // 𦭺
+ 0x26b7b: "\x8c\x06\U00026b7b", // 𦭻
+ 0x26b7c: "\x8c\x06\U00026b7c", // 𦭼
+ 0x26b7d: "\x8c\x06\U00026b7d", // 𦭽
+ 0x26b7e: "\x8c\x06\U00026b7e", // 𦭾
+ 0x26b7f: "\x8c\x06\U00026b7f", // 𦭿
+ 0x26b80: "\x8c\x06\U00026b80", // 𦮀
+ 0x26b81: "\x8c\x06\U00026b81", // 𦮁
+ 0x26b82: "\x8c\x06\U00026b82", // 𦮂
+ 0x26b83: "\x8c\x06\U00026b83", // 𦮃
+ 0x26b84: "\x8c\x06\U00026b84", // 𦮄
+ 0x26b85: "\x8c\x06\U00026b85", // 𦮅
+ 0x26b86: "\x8c\x06\U00026b86", // 𦮆
+ 0x26b87: "\x8c\x06\U00026b87", // 𦮇
+ 0x26b88: "\x8c\x06\U00026b88", // 𦮈
+ 0x26b89: "\x8c\x06\U00026b89", // 𦮉
+ 0x26b8a: "\x8c\x06\U00026b8a", // 𦮊
+ 0x26b8b: "\x8c\x06\U00026b8b", // 𦮋
+ 0x26b8c: "\x8c\x06\U00026b8c", // 𦮌
+ 0x26b8d: "\x8c\x06\U00026b8d", // 𦮍
+ 0x26b8e: "\x8c\x06\U00026b8e", // 𦮎
+ 0x26b8f: "\x8c\x06\U00026b8f", // 𦮏
+ 0x26b90: "\x8c\x06\U00026b90", // 𦮐
+ 0x26b91: "\x8c\x06\U00026b91", // 𦮑
+ 0x26b92: "\x8c\x06\U00026b92", // 𦮒
+ 0x26b93: "\x8c\x06\U00026b93", // 𦮓
+ 0x26b94: "\x8c\x06\U00026b94", // 𦮔
+ 0x26b95: "\x8c\x06\U00026b95", // 𦮕
+ 0x26b96: "\x8c\x06\U00026b96", // 𦮖
+ 0x26b97: "\x8c\x06\U00026b97", // 𦮗
+ 0x26b98: "\x8c\x06\U00026b98", // 𦮘
+ 0x26b99: "\x8c\x06\U00026b99", // 𦮙
+ 0x26b9a: "\x8c\x06\U00026b9a", // 𦮚
+ 0x26b9b: "\x8c\x06\U00026b9b", // 𦮛
+ 0x26b9c: "\x8c\x06\U00026b9c", // 𦮜
+ 0x26b9d: "\x8c\x06\U00026b9d", // 𦮝
+ 0x26b9e: "\x8c\x06\U00026b9e", // 𦮞
+ 0x26b9f: "\x8c\x06\U00026b9f", // 𦮟
+ 0x26ba0: "\x8c\x06\U00026ba0", // 𦮠
+ 0x26ba1: "\x8c\x06\U00026ba1", // 𦮡
+ 0x26ba2: "\x8c\x06\U00026ba2", // 𦮢
+ 0x26ba3: "\x8c\x06\U00026ba3", // 𦮣
+ 0x26ba4: "\x8c\x06\U00026ba4", // 𦮤
+ 0x26ba5: "\x8c\x06\U00026ba5", // 𦮥
+ 0x26ba6: "\x8c\x06\U00026ba6", // 𦮦
+ 0x26ba7: "\x8c\x06\U00026ba7", // 𦮧
+ 0x26ba8: "\x8c\x06\U00026ba8", // 𦮨
+ 0x26ba9: "\x8c\x06\U00026ba9", // 𦮩
+ 0x26baa: "\x8c\x06\U00026baa", // 𦮪
+ 0x26bab: "\x8c\x06\U00026bab", // 𦮫
+ 0x26bac: "\x8c\x06\U00026bac", // 𦮬
+ 0x26bad: "\x8c\x06\U00026bad", // 𦮭
+ 0x26bae: "\x8c\x06\U00026bae", // 𦮮
+ 0x26baf: "\x8c\x06\U00026baf", // 𦮯
+ 0x26bb0: "\x8c\x06\U00026bb0", // 𦮰
+ 0x26bb1: "\x8c\x06\U00026bb1", // 𦮱
+ 0x26bb2: "\x8c\x06\U00026bb2", // 𦮲
+ 0x26bb3: "\x8c\x06\U00026bb3", // 𦮳
+ 0x26bb4: "\x8c\x06\U00026bb4", // 𦮴
+ 0x26bb5: "\x8c\x06\U00026bb5", // 𦮵
+ 0x26bb6: "\x8c\a\U00026bb6", // 𦮶
+ 0x26bb7: "\x8c\a\U00026bb7", // 𦮷
+ 0x26bb8: "\x8c\a\U00026bb8", // 𦮸
+ 0x26bb9: "\x8c\a\U00026bb9", // 𦮹
+ 0x26bba: "\x8c\a\U00026bba", // 𦮺
+ 0x26bbb: "\x8c\a\U00026bbb", // 𦮻
+ 0x26bbc: "\x8c\a\U00026bbc", // 𦮼
+ 0x26bbd: "\x8c\a\U00026bbd", // 𦮽
+ 0x26bbe: "\x8c\a\U00026bbe", // 𦮾
+ 0x26bbf: "\x8c\a\U00026bbf", // 𦮿
+ 0x26bc0: "\x8c\a\U00026bc0", // 𦯀
+ 0x26bc1: "\x8c\a\U00026bc1", // 𦯁
+ 0x26bc2: "\x8c\a\U00026bc2", // 𦯂
+ 0x26bc3: "\x8c\a\U00026bc3", // 𦯃
+ 0x26bc4: "\x8c\a\U00026bc4", // 𦯄
+ 0x26bc5: "\x8c\a\U00026bc5", // 𦯅
+ 0x26bc6: "\x8c\a\U00026bc6", // 𦯆
+ 0x26bc7: "\x8c\a\U00026bc7", // 𦯇
+ 0x26bc8: "\x8c\a\U00026bc8", // 𦯈
+ 0x26bc9: "\x8c\a\U00026bc9", // 𦯉
+ 0x26bca: "\x8c\a\U00026bca", // 𦯊
+ 0x26bcb: "\x8c\a\U00026bcb", // 𦯋
+ 0x26bcc: "\x8c\a\U00026bcc", // 𦯌
+ 0x26bcd: "\x8c\a\U00026bcd", // 𦯍
+ 0x26bce: "\x8c\a\U00026bce", // 𦯎
+ 0x26bcf: "\x8c\a\U00026bcf", // 𦯏
+ 0x26bd0: "\x8c\a\U00026bd0", // 𦯐
+ 0x26bd1: "\x8c\a\U00026bd1", // 𦯑
+ 0x26bd2: "\x8c\a\U00026bd2", // 𦯒
+ 0x26bd3: "\x8c\a\U00026bd3", // 𦯓
+ 0x26bd4: "\x8c\a\U00026bd4", // 𦯔
+ 0x26bd5: "\x8c\a\U00026bd5", // 𦯕
+ 0x26bd6: "\x8c\a\U00026bd6", // 𦯖
+ 0x26bd7: "\x8c\a\U00026bd7", // 𦯗
+ 0x26bd8: "\x8c\a\U00026bd8", // 𦯘
+ 0x26bd9: "\x8c\a\U00026bd9", // 𦯙
+ 0x26bda: "\x8c\a\U00026bda", // 𦯚
+ 0x26bdb: "\x8c\a\U00026bdb", // 𦯛
+ 0x26bdc: "\x8c\a\U00026bdc", // 𦯜
+ 0x26bdd: "\x8c\a\U00026bdd", // 𦯝
+ 0x26bde: "\x8c\a\U00026bde", // 𦯞
+ 0x26bdf: "\x8c\a\U00026bdf", // 𦯟
+ 0x26be0: "\x8c\a\U00026be0", // 𦯠
+ 0x26be1: "\x8c\a\U00026be1", // 𦯡
+ 0x26be2: "\x8c\a\U00026be2", // 𦯢
+ 0x26be3: "\x8c\a\U00026be3", // 𦯣
+ 0x26be4: "\x8c\a\U00026be4", // 𦯤
+ 0x26be5: "\x8c\a\U00026be5", // 𦯥
+ 0x26be6: "\x8c\a\U00026be6", // 𦯦
+ 0x26be7: "\x8c\a\U00026be7", // 𦯧
+ 0x26be8: "\x8c\a\U00026be8", // 𦯨
+ 0x26be9: "\x8c\a\U00026be9", // 𦯩
+ 0x26bea: "\x8c\a\U00026bea", // 𦯪
+ 0x26beb: "\x8c\a\U00026beb", // 𦯫
+ 0x26bec: "\x8c\a\U00026bec", // 𦯬
+ 0x26bed: "\x8c\a\U00026bed", // 𦯭
+ 0x26bee: "\x8c\a\U00026bee", // 𦯮
+ 0x26bef: "\x8c\a\U00026bef", // 𦯯
+ 0x26bf0: "\x8c\a\U00026bf0", // 𦯰
+ 0x26bf1: "\x8c\b\U00026bf1", // 𦯱
+ 0x26bf2: "\x8c\a\U00026bf2", // 𦯲
+ 0x26bf3: "\x8c\a\U00026bf3", // 𦯳
+ 0x26bf4: "\x8c\a\U00026bf4", // 𦯴
+ 0x26bf5: "\x8c\a\U00026bf5", // 𦯵
+ 0x26bf6: "\x8c\a\U00026bf6", // 𦯶
+ 0x26bf7: "\x8c\a\U00026bf7", // 𦯷
+ 0x26bf8: "\x8c\a\U00026bf8", // 𦯸
+ 0x26bf9: "\x8c\a\U00026bf9", // 𦯹
+ 0x26bfa: "\x8c\a\U00026bfa", // 𦯺
+ 0x26bfb: "\x8c\a\U00026bfb", // 𦯻
+ 0x26bfc: "\x8c\a\U00026bfc", // 𦯼
+ 0x26bfd: "\x8c\a\U00026bfd", // 𦯽
+ 0x26bfe: "\x8c\a\U00026bfe", // 𦯾
+ 0x26bff: "\x8c\a\U00026bff", // 𦯿
+ 0x26c00: "\x8c\a\U00026c00", // 𦰀
+ 0x26c01: "\x8c\a\U00026c01", // 𦰁
+ 0x26c02: "\x8c\a\U00026c02", // 𦰂
+ 0x26c03: "\x8c\a\U00026c03", // 𦰃
+ 0x26c04: "\x8c\a\U00026c04", // 𦰄
+ 0x26c05: "\x8c\a\U00026c05", // 𦰅
+ 0x26c06: "\x8c\a\U00026c06", // 𦰆
+ 0x26c07: "\x8c\a\U00026c07", // 𦰇
+ 0x26c08: "\x8c\a\U00026c08", // 𦰈
+ 0x26c09: "\x8c\a\U00026c09", // 𦰉
+ 0x26c0a: "\x8c\a\U00026c0a", // 𦰊
+ 0x26c0b: "\x8c\a\U00026c0b", // 𦰋
+ 0x26c0c: "\x8c\a\U00026c0c", // 𦰌
+ 0x26c0d: "\x8c\a\U00026c0d", // 𦰍
+ 0x26c0e: "\x8c\a\U00026c0e", // 𦰎
+ 0x26c0f: "\x8c\a\U00026c0f", // 𦰏
+ 0x26c10: "\x8c\a\U00026c10", // 𦰐
+ 0x26c11: "\x8c\a\U00026c11", // 𦰑
+ 0x26c12: "\x8c\a\U00026c12", // 𦰒
+ 0x26c13: "\x8c\a\U00026c13", // 𦰓
+ 0x26c14: "\x8c\a\U00026c14", // 𦰔
+ 0x26c15: "\x8c\a\U00026c15", // 𦰕
+ 0x26c16: "\x8c\b\U00026c16", // 𦰖
+ 0x26c17: "\x8c\a\U00026c17", // 𦰗
+ 0x26c18: "\x8c\a\U00026c18", // 𦰘
+ 0x26c19: "\x8c\a\U00026c19", // 𦰙
+ 0x26c1a: "\x8c\a\U00026c1a", // 𦰚
+ 0x26c1b: "\x8c\a\U00026c1b", // 𦰛
+ 0x26c1c: "\x8c\a\U00026c1c", // 𦰜
+ 0x26c1d: "\x8c\a\U00026c1d", // 𦰝
+ 0x26c1e: "\x8c\a\U00026c1e", // 𦰞
+ 0x26c1f: "\x8c\a\U00026c1f", // 𦰟
+ 0x26c20: "\x8c\a\U00026c20", // 𦰠
+ 0x26c21: "\x8c\a\U00026c21", // 𦰡
+ 0x26c22: "\x8c\a\U00026c22", // 𦰢
+ 0x26c23: "\x8c\a\U00026c23", // 𦰣
+ 0x26c24: "\x8c\a\U00026c24", // 𦰤
+ 0x26c25: "\x8c\a\U00026c25", // 𦰥
+ 0x26c26: "\x8c\a\U00026c26", // 𦰦
+ 0x26c27: "\x8c\a\U00026c27", // 𦰧
+ 0x26c28: "\x8c\a\U00026c28", // 𦰨
+ 0x26c29: "\x8c\a\U00026c29", // 𦰩
+ 0x26c2a: "\x8c\b\U00026c2a", // 𦰪
+ 0x26c2b: "\x8c\b\U00026c2b", // 𦰫
+ 0x26c2c: "\x8c\b\U00026c2c", // 𦰬
+ 0x26c2d: "\x8c\b\U00026c2d", // 𦰭
+ 0x26c2e: "\x8c\b\U00026c2e", // 𦰮
+ 0x26c2f: "\x8c\b\U00026c2f", // 𦰯
+ 0x26c30: "\x8c\b\U00026c30", // 𦰰
+ 0x26c31: "\x8c\b\U00026c31", // 𦰱
+ 0x26c32: "\x8c\b\U00026c32", // 𦰲
+ 0x26c33: "\x8c\b\U00026c33", // 𦰳
+ 0x26c34: "\x8c\b\U00026c34", // 𦰴
+ 0x26c35: "\x8c\b\U00026c35", // 𦰵
+ 0x26c36: "\x8c\b\U00026c36", // 𦰶
+ 0x26c37: "\x8c\b\U00026c37", // 𦰷
+ 0x26c38: "\x8c\b\U00026c38", // 𦰸
+ 0x26c39: "\x8c\b\U00026c39", // 𦰹
+ 0x26c3a: "\x8c\b\U00026c3a", // 𦰺
+ 0x26c3b: "\x8c\b\U00026c3b", // 𦰻
+ 0x26c3c: "\x8c\b\U00026c3c", // 𦰼
+ 0x26c3d: "\x8c\b\U00026c3d", // 𦰽
+ 0x26c3e: "\x8c\b\U00026c3e", // 𦰾
+ 0x26c3f: "\x8c\b\U00026c3f", // 𦰿
+ 0x26c40: "\x8c\b\U00026c40", // 𦱀
+ 0x26c41: "\x8c\b\U00026c41", // 𦱁
+ 0x26c42: "\x8c\b\U00026c42", // 𦱂
+ 0x26c43: "\x8c\b\U00026c43", // 𦱃
+ 0x26c44: "\x8c\b\U00026c44", // 𦱄
+ 0x26c45: "\x8c\b\U00026c45", // 𦱅
+ 0x26c46: "\x8c\b\U00026c46", // 𦱆
+ 0x26c47: "\x8c\b\U00026c47", // 𦱇
+ 0x26c48: "\x8c\b\U00026c48", // 𦱈
+ 0x26c49: "\x8c\b\U00026c49", // 𦱉
+ 0x26c4a: "\x8c\b\U00026c4a", // 𦱊
+ 0x26c4b: "\x8c\b\U00026c4b", // 𦱋
+ 0x26c4c: "\x8c\b\U00026c4c", // 𦱌
+ 0x26c4d: "\x8c\b\U00026c4d", // 𦱍
+ 0x26c4e: "\x8c\b\U00026c4e", // 𦱎
+ 0x26c4f: "\x8c\b\U00026c4f", // 𦱏
+ 0x26c50: "\x8c\b\U00026c50", // 𦱐
+ 0x26c51: "\x8c\b\U00026c51", // 𦱑
+ 0x26c52: "\x8c\b\U00026c52", // 𦱒
+ 0x26c53: "\x8c\b\U00026c53", // 𦱓
+ 0x26c54: "\x8c\b\U00026c54", // 𦱔
+ 0x26c55: "\x8c\b\U00026c55", // 𦱕
+ 0x26c56: "\x8c\b\U00026c56", // 𦱖
+ 0x26c57: "\x8c\b\U00026c57", // 𦱗
+ 0x26c58: "\x8c\b\U00026c58", // 𦱘
+ 0x26c59: "\x8c\b\U00026c59", // 𦱙
+ 0x26c5a: "\x8c\b\U00026c5a", // 𦱚
+ 0x26c5b: "\x8c\b\U00026c5b", // 𦱛
+ 0x26c5c: "\x8c\b\U00026c5c", // 𦱜
+ 0x26c5d: "\x8c\b\U00026c5d", // 𦱝
+ 0x26c5e: "\x8c\b\U00026c5e", // 𦱞
+ 0x26c5f: "\x8c\b\U00026c5f", // 𦱟
+ 0x26c60: "\x8c\b\U00026c60", // 𦱠
+ 0x26c61: "\x8c\b\U00026c61", // 𦱡
+ 0x26c62: "\x8c\b\U00026c62", // 𦱢
+ 0x26c63: "\x8c\b\U00026c63", // 𦱣
+ 0x26c64: "\x8c\b\U00026c64", // 𦱤
+ 0x26c65: "\x8c\b\U00026c65", // 𦱥
+ 0x26c66: "\x8c\b\U00026c66", // 𦱦
+ 0x26c67: "\x8c\b\U00026c67", // 𦱧
+ 0x26c68: "\x8c\b\U00026c68", // 𦱨
+ 0x26c69: "\x8c\b\U00026c69", // 𦱩
+ 0x26c6a: "\x8c\b\U00026c6a", // 𦱪
+ 0x26c6b: "\x8c\b\U00026c6b", // 𦱫
+ 0x26c6c: "\x8c\b\U00026c6c", // 𦱬
+ 0x26c6d: "\x8c\b\U00026c6d", // 𦱭
+ 0x26c6e: "\x8c\b\U00026c6e", // 𦱮
+ 0x26c6f: "\x8c\b\U00026c6f", // 𦱯
+ 0x26c70: "\x8c\b\U00026c70", // 𦱰
+ 0x26c71: "\x8c\b\U00026c71", // 𦱱
+ 0x26c72: "\x8c\b\U00026c72", // 𦱲
+ 0x26c73: "\x8c\b\U00026c73", // 𦱳
+ 0x26c74: "\x8c\b\U00026c74", // 𦱴
+ 0x26c75: "\x8c\b\U00026c75", // 𦱵
+ 0x26c76: "\x8c\b\U00026c76", // 𦱶
+ 0x26c77: "\x8c\b\U00026c77", // 𦱷
+ 0x26c78: "\x8c\b\U00026c78", // 𦱸
+ 0x26c79: "\x8c\b\U00026c79", // 𦱹
+ 0x26c7a: "\x8c\b\U00026c7a", // 𦱺
+ 0x26c7b: "\x8c\b\U00026c7b", // 𦱻
+ 0x26c7c: "\x8c\b\U00026c7c", // 𦱼
+ 0x26c7d: "\x8c\b\U00026c7d", // 𦱽
+ 0x26c7e: "\x8c\b\U00026c7e", // 𦱾
+ 0x26c7f: "\x8c\b\U00026c7f", // 𦱿
+ 0x26c80: "\x8c\b\U00026c80", // 𦲀
+ 0x26c81: "\x8c\b\U00026c81", // 𦲁
+ 0x26c82: "\x8c\b\U00026c82", // 𦲂
+ 0x26c83: "\x8c\b\U00026c83", // 𦲃
+ 0x26c84: "\x8c\b\U00026c84", // 𦲄
+ 0x26c85: "\x8c\b\U00026c85", // 𦲅
+ 0x26c86: "\x8c\b\U00026c86", // 𦲆
+ 0x26c87: "\x8c\b\U00026c87", // 𦲇
+ 0x26c88: "\x8c\b\U00026c88", // 𦲈
+ 0x26c89: "\x8c\b\U00026c89", // 𦲉
+ 0x26c8a: "\x8c\b\U00026c8a", // 𦲊
+ 0x26c8b: "\x8c\b\U00026c8b", // 𦲋
+ 0x26c8c: "\x8c\b\U00026c8c", // 𦲌
+ 0x26c8d: "\x8c\b\U00026c8d", // 𦲍
+ 0x26c8e: "\x8c\b\U00026c8e", // 𦲎
+ 0x26c8f: "\x8c\b\U00026c8f", // 𦲏
+ 0x26c90: "\x8c\b\U00026c90", // 𦲐
+ 0x26c91: "\x8c\b\U00026c91", // 𦲑
+ 0x26c92: "\x8c\b\U00026c92", // 𦲒
+ 0x26c93: "\x8c\b\U00026c93", // 𦲓
+ 0x26c94: "\x8c\b\U00026c94", // 𦲔
+ 0x26c95: "\x8c\b\U00026c95", // 𦲕
+ 0x26c96: "\x8c\b\U00026c96", // 𦲖
+ 0x26c97: "\x8c\b\U00026c97", // 𦲗
+ 0x26c98: "\x8c\b\U00026c98", // 𦲘
+ 0x26c99: "\x8c\b\U00026c99", // 𦲙
+ 0x26c9a: "\x8c\b\U00026c9a", // 𦲚
+ 0x26c9b: "\x8c\b\U00026c9b", // 𦲛
+ 0x26c9c: "\x8c\b\U00026c9c", // 𦲜
+ 0x26c9d: "\x8c\b\U00026c9d", // 𦲝
+ 0x26c9e: "\x8c\b\U00026c9e", // 𦲞
+ 0x26c9f: "\x8c\b\U00026c9f", // 𦲟
+ 0x26ca0: "\x8c\b\U00026ca0", // 𦲠
+ 0x26ca1: "\x8c\b\U00026ca1", // 𦲡
+ 0x26ca2: "\x8c\b\U00026ca2", // 𦲢
+ 0x26ca3: "\x8c\b\U00026ca3", // 𦲣
+ 0x26ca4: "\x8c\b\U00026ca4", // 𦲤
+ 0x26ca5: "\x8c\b\U00026ca5", // 𦲥
+ 0x26ca6: "\x8c\b\U00026ca6", // 𦲦
+ 0x26ca7: "\x8c\b\U00026ca7", // 𦲧
+ 0x26ca8: "\x8c\b\U00026ca8", // 𦲨
+ 0x26ca9: "\x8c\b\U00026ca9", // 𦲩
+ 0x26caa: "\x8c\b\U00026caa", // 𦲪
+ 0x26cab: "\x8c\b\U00026cab", // 𦲫
+ 0x26cac: "\x8c\b\U00026cac", // 𦲬
+ 0x26cad: "\x8c\b\U00026cad", // 𦲭
+ 0x26cae: "\x8c\b\U00026cae", // 𦲮
+ 0x26caf: "\x8c\b\U00026caf", // 𦲯
+ 0x26cb0: "\x8c\b\U00026cb0", // 𦲰
+ 0x26cb1: "\x8c\b\U00026cb1", // 𦲱
+ 0x26cb2: "\x8c\b\U00026cb2", // 𦲲
+ 0x26cb3: "\x8c\b\U00026cb3", // 𦲳
+ 0x26cb4: "\x8c\b\U00026cb4", // 𦲴
+ 0x26cb5: "\x8c\b\U00026cb5", // 𦲵
+ 0x26cb6: "\x8c\b\U00026cb6", // 𦲶
+ 0x26cb7: "\x8c\b\U00026cb7", // 𦲷
+ 0x26cb8: "\x8c\b\U00026cb8", // 𦲸
+ 0x26cb9: "\x8c\b\U00026cb9", // 𦲹
+ 0x26cba: "\x8c\b\U00026cba", // 𦲺
+ 0x26cbb: "\x8c\b\U00026cbb", // 𦲻
+ 0x26cbc: "\x8c\b\U00026cbc", // 𦲼
+ 0x26cbd: "\x8c\b\U00026cbd", // 𦲽
+ 0x26cbe: "\x8c\b\U00026cbe", // 𦲾
+ 0x26cbf: "\x8c\b\U00026cbf", // 𦲿
+ 0x26cc0: "\x8c\b\U00026cc0", // 𦳀
+ 0x26cc1: "\x8c\t\U00026cc1", // 𦳁
+ 0x26cc2: "\x8c\t\U00026cc2", // 𦳂
+ 0x26cc3: "\x8c\t\U00026cc3", // 𦳃
+ 0x26cc4: "\x8c\t\U00026cc4", // 𦳄
+ 0x26cc5: "\x8c\t\U00026cc5", // 𦳅
+ 0x26cc6: "\x8c\t\U00026cc6", // 𦳆
+ 0x26cc7: "\x8c\t\U00026cc7", // 𦳇
+ 0x26cc8: "\x8c\t\U00026cc8", // 𦳈
+ 0x26cc9: "\x8c\t\U00026cc9", // 𦳉
+ 0x26cca: "\x8c\t\U00026cca", // 𦳊
+ 0x26ccb: "\x8c\t\U00026ccb", // 𦳋
+ 0x26ccc: "\x8c\t\U00026ccc", // 𦳌
+ 0x26ccd: "\x8c\t\U00026ccd", // 𦳍
+ 0x26cce: "\x8c\t\U00026cce", // 𦳎
+ 0x26ccf: "\x8c\t\U00026ccf", // 𦳏
+ 0x26cd0: "\x8c\t\U00026cd0", // 𦳐
+ 0x26cd1: "\x8c\t\U00026cd1", // 𦳑
+ 0x26cd2: "\x8c\t\U00026cd2", // 𦳒
+ 0x26cd3: "\x8c\t\U00026cd3", // 𦳓
+ 0x26cd4: "\x8c\t\U00026cd4", // 𦳔
+ 0x26cd5: "\x8c\t\U00026cd5", // 𦳕
+ 0x26cd6: "\x8c\t\U00026cd6", // 𦳖
+ 0x26cd7: "\x8c\t\U00026cd7", // 𦳗
+ 0x26cd8: "\x8c\t\U00026cd8", // 𦳘
+ 0x26cd9: "\x8c\t\U00026cd9", // 𦳙
+ 0x26cda: "\x8c\t\U00026cda", // 𦳚
+ 0x26cdb: "\x8c\t\U00026cdb", // 𦳛
+ 0x26cdc: "\x8c\t\U00026cdc", // 𦳜
+ 0x26cdd: "\x8c\t\U00026cdd", // 𦳝
+ 0x26cde: "\x8c\t\U00026cde", // 𦳞
+ 0x26cdf: "\x8c\t\U00026cdf", // 𦳟
+ 0x26ce0: "\x8c\t\U00026ce0", // 𦳠
+ 0x26ce1: "\x8c\t\U00026ce1", // 𦳡
+ 0x26ce2: "\x8c\t\U00026ce2", // 𦳢
+ 0x26ce3: "\x8c\t\U00026ce3", // 𦳣
+ 0x26ce4: "\x8c\t\U00026ce4", // 𦳤
+ 0x26ce5: "\x8c\t\U00026ce5", // 𦳥
+ 0x26ce6: "\x8c\t\U00026ce6", // 𦳦
+ 0x26ce7: "\x8c\t\U00026ce7", // 𦳧
+ 0x26ce8: "\x8c\t\U00026ce8", // 𦳨
+ 0x26ce9: "\x8c\t\U00026ce9", // 𦳩
+ 0x26cea: "\x8c\t\U00026cea", // 𦳪
+ 0x26ceb: "\x8c\t\U00026ceb", // 𦳫
+ 0x26cec: "\x8c\t\U00026cec", // 𦳬
+ 0x26ced: "\x8c\t\U00026ced", // 𦳭
+ 0x26cee: "\x8c\t\U00026cee", // 𦳮
+ 0x26cef: "\x8c\t\U00026cef", // 𦳯
+ 0x26cf0: "\x8c\t\U00026cf0", // 𦳰
+ 0x26cf1: "\x8c\t\U00026cf1", // 𦳱
+ 0x26cf2: "\x8c\t\U00026cf2", // 𦳲
+ 0x26cf3: "\x8c\t\U00026cf3", // 𦳳
+ 0x26cf4: "\x8c\t\U00026cf4", // 𦳴
+ 0x26cf5: "\x8c\t\U00026cf5", // 𦳵
+ 0x26cf6: "\x8c\t\U00026cf6", // 𦳶
+ 0x26cf7: "\x8c\t\U00026cf7", // 𦳷
+ 0x26cf8: "\x8c\t\U00026cf8", // 𦳸
+ 0x26cf9: "\x8c\t\U00026cf9", // 𦳹
+ 0x26cfa: "\x8c\t\U00026cfa", // 𦳺
+ 0x26cfb: "\x8c\t\U00026cfb", // 𦳻
+ 0x26cfc: "\x8c\t\U00026cfc", // 𦳼
+ 0x26cfd: "\x8c\t\U00026cfd", // 𦳽
+ 0x26cfe: "\x8c\t\U00026cfe", // 𦳾
+ 0x26cff: "\x8c\t\U00026cff", // 𦳿
+ 0x26d00: "\x8c\t\U00026d00", // 𦴀
+ 0x26d01: "\x8c\t\U00026d01", // 𦴁
+ 0x26d02: "\x8c\t\U00026d02", // 𦴂
+ 0x26d03: "\x8c\t\U00026d03", // 𦴃
+ 0x26d04: "\x8c\t\U00026d04", // 𦴄
+ 0x26d05: "\x8c\t\U00026d05", // 𦴅
+ 0x26d06: "\x8c\t\U00026d06", // 𦴆
+ 0x26d07: "\x8c\t\U00026d07", // 𦴇
+ 0x26d08: "\x8c\t\U00026d08", // 𦴈
+ 0x26d09: "\x8c\t\U00026d09", // 𦴉
+ 0x26d0a: "\x8c\t\U00026d0a", // 𦴊
+ 0x26d0b: "\x8c\t\U00026d0b", // 𦴋
+ 0x26d0c: "\x8c\t\U00026d0c", // 𦴌
+ 0x26d0d: "\x8c\t\U00026d0d", // 𦴍
+ 0x26d0e: "\x8c\t\U00026d0e", // 𦴎
+ 0x26d0f: "\x8c\t\U00026d0f", // 𦴏
+ 0x26d10: "\x8c\t\U00026d10", // 𦴐
+ 0x26d11: "\x8c\t\U00026d11", // 𦴑
+ 0x26d12: "\x8c\t\U00026d12", // 𦴒
+ 0x26d13: "\x8c\t\U00026d13", // 𦴓
+ 0x26d14: "\x8c\t\U00026d14", // 𦴔
+ 0x26d15: "\x8c\t\U00026d15", // 𦴕
+ 0x26d16: "\x8c\t\U00026d16", // 𦴖
+ 0x26d17: "\x8c\t\U00026d17", // 𦴗
+ 0x26d18: "\x8c\t\U00026d18", // 𦴘
+ 0x26d19: "\x8c\t\U00026d19", // 𦴙
+ 0x26d1a: "\x8c\t\U00026d1a", // 𦴚
+ 0x26d1b: "\x8c\t\U00026d1b", // 𦴛
+ 0x26d1c: "\x8c\t\U00026d1c", // 𦴜
+ 0x26d1d: "\x8c\t\U00026d1d", // 𦴝
+ 0x26d1e: "\x8c\t\U00026d1e", // 𦴞
+ 0x26d1f: "\x8c\t\U00026d1f", // 𦴟
+ 0x26d20: "\x8c\t\U00026d20", // 𦴠
+ 0x26d21: "\x8c\t\U00026d21", // 𦴡
+ 0x26d22: "\x8c\t\U00026d22", // 𦴢
+ 0x26d23: "\x8c\t\U00026d23", // 𦴣
+ 0x26d24: "\x8c\t\U00026d24", // 𦴤
+ 0x26d25: "\x8c\t\U00026d25", // 𦴥
+ 0x26d26: "\x8c\t\U00026d26", // 𦴦
+ 0x26d27: "\x8c\t\U00026d27", // 𦴧
+ 0x26d28: "\x8c\t\U00026d28", // 𦴨
+ 0x26d29: "\x8c\t\U00026d29", // 𦴩
+ 0x26d2a: "\x8c\t\U00026d2a", // 𦴪
+ 0x26d2b: "\x8c\t\U00026d2b", // 𦴫
+ 0x26d2c: "\x8c\t\U00026d2c", // 𦴬
+ 0x26d2d: "\x8c\t\U00026d2d", // 𦴭
+ 0x26d2e: "\x8c\t\U00026d2e", // 𦴮
+ 0x26d2f: "\x8c\t\U00026d2f", // 𦴯
+ 0x26d30: "\x8c\t\U00026d30", // 𦴰
+ 0x26d31: "\x8c\t\U00026d31", // 𦴱
+ 0x26d32: "\x8c\t\U00026d32", // 𦴲
+ 0x26d33: "\x8c\t\U00026d33", // 𦴳
+ 0x26d34: "\x8c\t\U00026d34", // 𦴴
+ 0x26d35: "\x8c\t\U00026d35", // 𦴵
+ 0x26d36: "U\n\U00026d36", // 𦴶
+ 0x26d37: "\x8c\t\U00026d37", // 𦴷
+ 0x26d38: "\x8c\t\U00026d38", // 𦴸
+ 0x26d39: "\x8c\t\U00026d39", // 𦴹
+ 0x26d3a: "\x8c\t\U00026d3a", // 𦴺
+ 0x26d3b: "\x8c\t\U00026d3b", // 𦴻
+ 0x26d3c: "\x8c\t\U00026d3c", // 𦴼
+ 0x26d3d: "\x8c\t\U00026d3d", // 𦴽
+ 0x26d3e: "\x8c\t\U00026d3e", // 𦴾
+ 0x26d3f: "\x8c\t\U00026d3f", // 𦴿
+ 0x26d40: "\x8c\t\U00026d40", // 𦵀
+ 0x26d41: "\x8c\t\U00026d41", // 𦵁
+ 0x26d42: "\x8c\t\U00026d42", // 𦵂
+ 0x26d43: "\x8c\t\U00026d43", // 𦵃
+ 0x26d44: "\x8c\t\U00026d44", // 𦵄
+ 0x26d45: "\x8c\t\U00026d45", // 𦵅
+ 0x26d46: "\x8c\t\U00026d46", // 𦵆
+ 0x26d47: "\x8c\n\U00026d47", // 𦵇
+ 0x26d48: "\x8c\t\U00026d48", // 𦵈
+ 0x26d49: "\x8c\t\U00026d49", // 𦵉
+ 0x26d4a: "\x8c\t\U00026d4a", // 𦵊
+ 0x26d4b: "\x8c\t\U00026d4b", // 𦵋
+ 0x26d4c: "\x8c\t\U00026d4c", // 𦵌
+ 0x26d4d: "\x8c\t\U00026d4d", // 𦵍
+ 0x26d4e: "\x8c\t\U00026d4e", // 𦵎
+ 0x26d4f: "\x8c\t\U00026d4f", // 𦵏
+ 0x26d50: "\x8c\t\U00026d50", // 𦵐
+ 0x26d51: "\x8c\t\U00026d51", // 𦵑
+ 0x26d52: "\x8c\t\U00026d52", // 𦵒
+ 0x26d53: "\x8c\t\U00026d53", // 𦵓
+ 0x26d54: "\x8c\t\U00026d54", // 𦵔
+ 0x26d55: "\x8c\t\U00026d55", // 𦵕
+ 0x26d56: "\x8c\t\U00026d56", // 𦵖
+ 0x26d57: "\x8c\t\U00026d57", // 𦵗
+ 0x26d58: "\x8c\t\U00026d58", // 𦵘
+ 0x26d59: "\x8c\t\U00026d59", // 𦵙
+ 0x26d5a: "\x8c\t\U00026d5a", // 𦵚
+ 0x26d5b: "\x8c\t\U00026d5b", // 𦵛
+ 0x26d5c: "\x8c\t\U00026d5c", // 𦵜
+ 0x26d5d: "\x8c\t\U00026d5d", // 𦵝
+ 0x26d5e: "\x8c\t\U00026d5e", // 𦵞
+ 0x26d5f: "\x8c\t\U00026d5f", // 𦵟
+ 0x26d60: "\x8c\t\U00026d60", // 𦵠
+ 0x26d61: "\x8c\n\U00026d61", // 𦵡
+ 0x26d62: "\x8c\n\U00026d62", // 𦵢
+ 0x26d63: "\x8c\n\U00026d63", // 𦵣
+ 0x26d64: "\x8c\n\U00026d64", // 𦵤
+ 0x26d65: "\x8c\n\U00026d65", // 𦵥
+ 0x26d66: "\x8c\n\U00026d66", // 𦵦
+ 0x26d67: "\x8c\n\U00026d67", // 𦵧
+ 0x26d68: "\x8c\n\U00026d68", // 𦵨
+ 0x26d69: "\x8c\n\U00026d69", // 𦵩
+ 0x26d6a: "\x8c\n\U00026d6a", // 𦵪
+ 0x26d6b: "\x8c\n\U00026d6b", // 𦵫
+ 0x26d6c: "\x8c\n\U00026d6c", // 𦵬
+ 0x26d6d: "\x8c\n\U00026d6d", // 𦵭
+ 0x26d6e: "\x8c\n\U00026d6e", // 𦵮
+ 0x26d6f: "\x8c\n\U00026d6f", // 𦵯
+ 0x26d70: "\x8c\n\U00026d70", // 𦵰
+ 0x26d71: "\x8c\n\U00026d71", // 𦵱
+ 0x26d72: "\x8c\n\U00026d72", // 𦵲
+ 0x26d73: "\x8c\n\U00026d73", // 𦵳
+ 0x26d74: "\x8c\n\U00026d74", // 𦵴
+ 0x26d75: "\x8c\n\U00026d75", // 𦵵
+ 0x26d76: "\x8c\n\U00026d76", // 𦵶
+ 0x26d77: "\x8c\n\U00026d77", // 𦵷
+ 0x26d78: "\x8c\n\U00026d78", // 𦵸
+ 0x26d79: "\x8c\n\U00026d79", // 𦵹
+ 0x26d7a: "\x8c\n\U00026d7a", // 𦵺
+ 0x26d7b: "\x8c\n\U00026d7b", // 𦵻
+ 0x26d7c: "\x8c\n\U00026d7c", // 𦵼
+ 0x26d7d: "\x8c\n\U00026d7d", // 𦵽
+ 0x26d7e: "\x8c\n\U00026d7e", // 𦵾
+ 0x26d7f: "\x8c\n\U00026d7f", // 𦵿
+ 0x26d80: "\x8c\n\U00026d80", // 𦶀
+ 0x26d81: "\x8c\n\U00026d81", // 𦶁
+ 0x26d82: "\x8c\n\U00026d82", // 𦶂
+ 0x26d83: "\x8c\n\U00026d83", // 𦶃
+ 0x26d84: "\x8c\n\U00026d84", // 𦶄
+ 0x26d85: "\x8c\n\U00026d85", // 𦶅
+ 0x26d86: "\x8c\n\U00026d86", // 𦶆
+ 0x26d87: "\x8c\n\U00026d87", // 𦶇
+ 0x26d88: "\x8c\n\U00026d88", // 𦶈
+ 0x26d89: "\x8c\n\U00026d89", // 𦶉
+ 0x26d8a: "\x8c\n\U00026d8a", // 𦶊
+ 0x26d8b: "\x8c\n\U00026d8b", // 𦶋
+ 0x26d8c: "\x8c\n\U00026d8c", // 𦶌
+ 0x26d8d: "\x8c\n\U00026d8d", // 𦶍
+ 0x26d8e: "\x8c\n\U00026d8e", // 𦶎
+ 0x26d8f: "\x8c\n\U00026d8f", // 𦶏
+ 0x26d90: "\x8c\n\U00026d90", // 𦶐
+ 0x26d91: "\x8c\n\U00026d91", // 𦶑
+ 0x26d92: "\x8c\n\U00026d92", // 𦶒
+ 0x26d93: "\x8c\n\U00026d93", // 𦶓
+ 0x26d94: "\x8c\n\U00026d94", // 𦶔
+ 0x26d95: "\x8c\n\U00026d95", // 𦶕
+ 0x26d96: "\x8c\n\U00026d96", // 𦶖
+ 0x26d97: "\x8c\n\U00026d97", // 𦶗
+ 0x26d98: "\x8c\n\U00026d98", // 𦶘
+ 0x26d99: "\x8c\n\U00026d99", // 𦶙
+ 0x26d9a: "\x8c\n\U00026d9a", // 𦶚
+ 0x26d9b: "\x8c\n\U00026d9b", // 𦶛
+ 0x26d9c: "\x8c\n\U00026d9c", // 𦶜
+ 0x26d9d: "\x8c\n\U00026d9d", // 𦶝
+ 0x26d9e: "\x8c\n\U00026d9e", // 𦶞
+ 0x26d9f: "\x8c\n\U00026d9f", // 𦶟
+ 0x26da0: "\x8c\n\U00026da0", // 𦶠
+ 0x26da1: "\x8c\n\U00026da1", // 𦶡
+ 0x26da2: "\x8c\n\U00026da2", // 𦶢
+ 0x26da3: "\x8c\n\U00026da3", // 𦶣
+ 0x26da4: "\x8c\n\U00026da4", // 𦶤
+ 0x26da5: "\x8c\n\U00026da5", // 𦶥
+ 0x26da6: "\x8c\n\U00026da6", // 𦶦
+ 0x26da7: "\x8c\n\U00026da7", // 𦶧
+ 0x26da8: "\x8c\n\U00026da8", // 𦶨
+ 0x26da9: "\x8c\n\U00026da9", // 𦶩
+ 0x26daa: "\x8c\n\U00026daa", // 𦶪
+ 0x26dab: "\x8c\n\U00026dab", // 𦶫
+ 0x26dac: "\x8c\n\U00026dac", // 𦶬
+ 0x26dad: "\x8c\n\U00026dad", // 𦶭
+ 0x26dae: "\x8c\n\U00026dae", // 𦶮
+ 0x26daf: "\x8c\n\U00026daf", // 𦶯
+ 0x26db0: "\x8c\n\U00026db0", // 𦶰
+ 0x26db1: "\x8c\n\U00026db1", // 𦶱
+ 0x26db2: "\x8c\n\U00026db2", // 𦶲
+ 0x26db3: "\x8c\n\U00026db3", // 𦶳
+ 0x26db4: "\x8c\n\U00026db4", // 𦶴
+ 0x26db5: "\x8c\n\U00026db5", // 𦶵
+ 0x26db6: "\x8c\n\U00026db6", // 𦶶
+ 0x26db7: "\x8c\n\U00026db7", // 𦶷
+ 0x26db8: "\x8c\n\U00026db8", // 𦶸
+ 0x26db9: "\x8c\n\U00026db9", // 𦶹
+ 0x26dba: "\x8c\n\U00026dba", // 𦶺
+ 0x26dbb: "\x8c\n\U00026dbb", // 𦶻
+ 0x26dbc: "\x8c\n\U00026dbc", // 𦶼
+ 0x26dbd: "\x8c\n\U00026dbd", // 𦶽
+ 0x26dbe: "\x8c\n\U00026dbe", // 𦶾
+ 0x26dbf: "\x8c\n\U00026dbf", // 𦶿
+ 0x26dc0: "\x8c\n\U00026dc0", // 𦷀
+ 0x26dc1: "\x8c\n\U00026dc1", // 𦷁
+ 0x26dc2: "\x8c\n\U00026dc2", // 𦷂
+ 0x26dc3: "\x8c\n\U00026dc3", // 𦷃
+ 0x26dc4: "\x8c\n\U00026dc4", // 𦷄
+ 0x26dc5: "\x8c\n\U00026dc5", // 𦷅
+ 0x26dc6: "\x8c\n\U00026dc6", // 𦷆
+ 0x26dc7: "\x8c\n\U00026dc7", // 𦷇
+ 0x26dc8: "\x8c\n\U00026dc8", // 𦷈
+ 0x26dc9: "\x8c\n\U00026dc9", // 𦷉
+ 0x26dca: "\x8c\n\U00026dca", // 𦷊
+ 0x26dcb: "\x8c\n\U00026dcb", // 𦷋
+ 0x26dcc: "\x8c\n\U00026dcc", // 𦷌
+ 0x26dcd: "\x8c\n\U00026dcd", // 𦷍
+ 0x26dce: "\x8c\n\U00026dce", // 𦷎
+ 0x26dcf: "\x8c\n\U00026dcf", // 𦷏
+ 0x26dd0: "\x8c\n\U00026dd0", // 𦷐
+ 0x26dd1: "\x8c\n\U00026dd1", // 𦷑
+ 0x26dd2: "\x8c\n\U00026dd2", // 𦷒
+ 0x26dd3: "\x8c\n\U00026dd3", // 𦷓
+ 0x26dd4: "\x8c\n\U00026dd4", // 𦷔
+ 0x26dd5: "\x8c\n\U00026dd5", // 𦷕
+ 0x26dd6: "\x8c\n\U00026dd6", // 𦷖
+ 0x26dd7: "\x8c\n\U00026dd7", // 𦷗
+ 0x26dd8: "\x8c\n\U00026dd8", // 𦷘
+ 0x26dd9: "\x8c\n\U00026dd9", // 𦷙
+ 0x26dda: "\x8c\n\U00026dda", // 𦷚
+ 0x26ddb: "\x8c\n\U00026ddb", // 𦷛
+ 0x26ddc: "\x8c\n\U00026ddc", // 𦷜
+ 0x26ddd: "\x8c\n\U00026ddd", // 𦷝
+ 0x26dde: "\x8c\n\U00026dde", // 𦷞
+ 0x26ddf: "\x8c\n\U00026ddf", // 𦷟
+ 0x26de0: "\x8c\n\U00026de0", // 𦷠
+ 0x26de1: "\x8c\n\U00026de1", // 𦷡
+ 0x26de2: "\x8c\n\U00026de2", // 𦷢
+ 0x26de3: "\x8c\n\U00026de3", // 𦷣
+ 0x26de4: "\x8c\n\U00026de4", // 𦷤
+ 0x26de5: "\x8c\n\U00026de5", // 𦷥
+ 0x26de6: "\x8c\n\U00026de6", // 𦷦
+ 0x26de7: "\x8c\n\U00026de7", // 𦷧
+ 0x26de8: "\x8c\n\U00026de8", // 𦷨
+ 0x26de9: "\x8c\n\U00026de9", // 𦷩
+ 0x26dea: "\x8c\n\U00026dea", // 𦷪
+ 0x26deb: "\x8c\n\U00026deb", // 𦷫
+ 0x26dec: "\x8c\n\U00026dec", // 𦷬
+ 0x26ded: "\x8c\n\U00026ded", // 𦷭
+ 0x26dee: "\x8c\n\U00026dee", // 𦷮
+ 0x26def: "\x8c\n\U00026def", // 𦷯
+ 0x26df0: "\x8c\n\U00026df0", // 𦷰
+ 0x26df1: "\x8c\n\U00026df1", // 𦷱
+ 0x26df2: "\x8c\n\U00026df2", // 𦷲
+ 0x26df3: "\x8c\n\U00026df3", // 𦷳
+ 0x26df4: "\x8c\n\U00026df4", // 𦷴
+ 0x26df5: "\x8c\n\U00026df5", // 𦷵
+ 0x26df6: "\x8c\n\U00026df6", // 𦷶
+ 0x26df7: "\x8c\n\U00026df7", // 𦷷
+ 0x26df8: "\x8c\n\U00026df8", // 𦷸
+ 0x26df9: "\x8c\n\U00026df9", // 𦷹
+ 0x26dfa: "\x8c\n\U00026dfa", // 𦷺
+ 0x26dfb: "\x8c\n\U00026dfb", // 𦷻
+ 0x26dfc: "\x8c\n\U00026dfc", // 𦷼
+ 0x26dfd: "\x8c\n\U00026dfd", // 𦷽
+ 0x26dfe: "\x8c\n\U00026dfe", // 𦷾
+ 0x26dff: "\x8c\v\U00026dff", // 𦷿
+ 0x26e00: "\x8c\v\U00026e00", // 𦸀
+ 0x26e01: "\x8c\v\U00026e01", // 𦸁
+ 0x26e02: "\x8c\v\U00026e02", // 𦸂
+ 0x26e03: "\x8c\v\U00026e03", // 𦸃
+ 0x26e04: "\x8c\v\U00026e04", // 𦸄
+ 0x26e05: "\x8c\v\U00026e05", // 𦸅
+ 0x26e06: "\x8c\v\U00026e06", // 𦸆
+ 0x26e07: "\x8c\v\U00026e07", // 𦸇
+ 0x26e08: "\x8c\v\U00026e08", // 𦸈
+ 0x26e09: "\x8c\v\U00026e09", // 𦸉
+ 0x26e0a: "\x8c\v\U00026e0a", // 𦸊
+ 0x26e0b: "\x8c\v\U00026e0b", // 𦸋
+ 0x26e0c: "\x8c\v\U00026e0c", // 𦸌
+ 0x26e0d: "\x8c\v\U00026e0d", // 𦸍
+ 0x26e0e: "\x8c\v\U00026e0e", // 𦸎
+ 0x26e0f: "\x8c\v\U00026e0f", // 𦸏
+ 0x26e10: "\x8c\v\U00026e10", // 𦸐
+ 0x26e11: "\x8c\v\U00026e11", // 𦸑
+ 0x26e12: "\x8c\v\U00026e12", // 𦸒
+ 0x26e13: "\x8c\v\U00026e13", // 𦸓
+ 0x26e14: "\x8c\v\U00026e14", // 𦸔
+ 0x26e15: "\x8c\v\U00026e15", // 𦸕
+ 0x26e16: "\x8c\v\U00026e16", // 𦸖
+ 0x26e17: "\x8c\v\U00026e17", // 𦸗
+ 0x26e18: "\x8c\v\U00026e18", // 𦸘
+ 0x26e19: "\x8c\v\U00026e19", // 𦸙
+ 0x26e1a: "\x8c\v\U00026e1a", // 𦸚
+ 0x26e1b: "\x8c\v\U00026e1b", // 𦸛
+ 0x26e1c: "\x8c\v\U00026e1c", // 𦸜
+ 0x26e1d: "\x8c\v\U00026e1d", // 𦸝
+ 0x26e1e: "\x8c\v\U00026e1e", // 𦸞
+ 0x26e1f: "\x8c\v\U00026e1f", // 𦸟
+ 0x26e20: "\x8c\v\U00026e20", // 𦸠
+ 0x26e21: "\x8c\v\U00026e21", // 𦸡
+ 0x26e22: "\x8c\v\U00026e22", // 𦸢
+ 0x26e23: "\x8c\v\U00026e23", // 𦸣
+ 0x26e24: "\x8c\v\U00026e24", // 𦸤
+ 0x26e25: "\x8c\v\U00026e25", // 𦸥
+ 0x26e26: "\x8c\v\U00026e26", // 𦸦
+ 0x26e27: "\x8c\v\U00026e27", // 𦸧
+ 0x26e28: "\x8c\v\U00026e28", // 𦸨
+ 0x26e29: "\x8c\v\U00026e29", // 𦸩
+ 0x26e2a: "\x8c\v\U00026e2a", // 𦸪
+ 0x26e2b: "\x8c\v\U00026e2b", // 𦸫
+ 0x26e2c: "\x8c\v\U00026e2c", // 𦸬
+ 0x26e2d: "\x8c\v\U00026e2d", // 𦸭
+ 0x26e2e: "\x8c\v\U00026e2e", // 𦸮
+ 0x26e2f: "\x8c\v\U00026e2f", // 𦸯
+ 0x26e30: "\x8c\v\U00026e30", // 𦸰
+ 0x26e31: "\x8c\v\U00026e31", // 𦸱
+ 0x26e32: "\x8c\v\U00026e32", // 𦸲
+ 0x26e33: "\x8c\v\U00026e33", // 𦸳
+ 0x26e34: "\x8c\v\U00026e34", // 𦸴
+ 0x26e35: "\x8c\v\U00026e35", // 𦸵
+ 0x26e36: "\x8c\v\U00026e36", // 𦸶
+ 0x26e37: "\x8c\v\U00026e37", // 𦸷
+ 0x26e38: "\x8c\v\U00026e38", // 𦸸
+ 0x26e39: "\x8c\v\U00026e39", // 𦸹
+ 0x26e3a: "\x8c\v\U00026e3a", // 𦸺
+ 0x26e3b: "\x8c\v\U00026e3b", // 𦸻
+ 0x26e3c: "\x8c\v\U00026e3c", // 𦸼
+ 0x26e3d: "\x8c\f\U00026e3d", // 𦸽
+ 0x26e3e: "\x8c\v\U00026e3e", // 𦸾
+ 0x26e3f: "\x8c\v\U00026e3f", // 𦸿
+ 0x26e40: "\x8c\v\U00026e40", // 𦹀
+ 0x26e41: "\x8c\v\U00026e41", // 𦹁
+ 0x26e42: "\x8c\v\U00026e42", // 𦹂
+ 0x26e43: "\x8c\v\U00026e43", // 𦹃
+ 0x26e44: "\x8c\v\U00026e44", // 𦹄
+ 0x26e45: "\x8c\v\U00026e45", // 𦹅
+ 0x26e46: "\x8c\v\U00026e46", // 𦹆
+ 0x26e47: "\x8c\v\U00026e47", // 𦹇
+ 0x26e48: "\x8c\v\U00026e48", // 𦹈
+ 0x26e49: "\x8c\v\U00026e49", // 𦹉
+ 0x26e4a: "\x8c\v\U00026e4a", // 𦹊
+ 0x26e4b: "\x8c\v\U00026e4b", // 𦹋
+ 0x26e4c: "\x8c\v\U00026e4c", // 𦹌
+ 0x26e4d: "\x8c\v\U00026e4d", // 𦹍
+ 0x26e4e: "\x8c\v\U00026e4e", // 𦹎
+ 0x26e4f: "\x8c\v\U00026e4f", // 𦹏
+ 0x26e50: "\x8c\v\U00026e50", // 𦹐
+ 0x26e51: "\x8c\v\U00026e51", // 𦹑
+ 0x26e52: "\x8c\v\U00026e52", // 𦹒
+ 0x26e53: "\x8c\v\U00026e53", // 𦹓
+ 0x26e54: "\x8c\v\U00026e54", // 𦹔
+ 0x26e55: "\x8c\v\U00026e55", // 𦹕
+ 0x26e56: "\x8c\v\U00026e56", // 𦹖
+ 0x26e57: "\x8c\v\U00026e57", // 𦹗
+ 0x26e58: "\x8c\v\U00026e58", // 𦹘
+ 0x26e59: "\x8c\v\U00026e59", // 𦹙
+ 0x26e5a: "\x8c\v\U00026e5a", // 𦹚
+ 0x26e5b: "\x8c\v\U00026e5b", // 𦹛
+ 0x26e5c: "\x8c\v\U00026e5c", // 𦹜
+ 0x26e5d: "\x8c\v\U00026e5d", // 𦹝
+ 0x26e5e: "\x8c\v\U00026e5e", // 𦹞
+ 0x26e5f: "\x8c\v\U00026e5f", // 𦹟
+ 0x26e60: "\x8c\v\U00026e60", // 𦹠
+ 0x26e61: "\x8c\v\U00026e61", // 𦹡
+ 0x26e62: "\x8c\v\U00026e62", // 𦹢
+ 0x26e63: "\x8c\v\U00026e63", // 𦹣
+ 0x26e64: "\x8c\v\U00026e64", // 𦹤
+ 0x26e65: "\x8c\v\U00026e65", // 𦹥
+ 0x26e66: "\x8c\v\U00026e66", // 𦹦
+ 0x26e67: "\x8c\v\U00026e67", // 𦹧
+ 0x26e68: "\x8c\v\U00026e68", // 𦹨
+ 0x26e69: "\x8c\v\U00026e69", // 𦹩
+ 0x26e6a: "\x8c\v\U00026e6a", // 𦹪
+ 0x26e6b: "\x8c\v\U00026e6b", // 𦹫
+ 0x26e6c: "\x8c\v\U00026e6c", // 𦹬
+ 0x26e6d: "\x8c\v\U00026e6d", // 𦹭
+ 0x26e6e: "\x8c\v\U00026e6e", // 𦹮
+ 0x26e6f: "\x8c\v\U00026e6f", // 𦹯
+ 0x26e70: "\x8c\v\U00026e70", // 𦹰
+ 0x26e71: "\x8c\v\U00026e71", // 𦹱
+ 0x26e72: "\x8c\v\U00026e72", // 𦹲
+ 0x26e73: "\x8c\v\U00026e73", // 𦹳
+ 0x26e74: "\x8c\v\U00026e74", // 𦹴
+ 0x26e75: "\x8c\v\U00026e75", // 𦹵
+ 0x26e76: "\x8c\v\U00026e76", // 𦹶
+ 0x26e77: "\x8c\v\U00026e77", // 𦹷
+ 0x26e78: "\x8c\v\U00026e78", // 𦹸
+ 0x26e79: "\x8c\v\U00026e79", // 𦹹
+ 0x26e7a: "\x8c\v\U00026e7a", // 𦹺
+ 0x26e7b: "\x8c\v\U00026e7b", // 𦹻
+ 0x26e7c: "\x8c\v\U00026e7c", // 𦹼
+ 0x26e7d: "\x8c\v\U00026e7d", // 𦹽
+ 0x26e7e: "\x8c\v\U00026e7e", // 𦹾
+ 0x26e7f: "\x8c\v\U00026e7f", // 𦹿
+ 0x26e80: "\x8c\v\U00026e80", // 𦺀
+ 0x26e81: "\x8c\v\U00026e81", // 𦺁
+ 0x26e82: "\x8c\v\U00026e82", // 𦺂
+ 0x26e83: "\x8c\v\U00026e83", // 𦺃
+ 0x26e84: "\x8c\v\U00026e84", // 𦺄
+ 0x26e85: "\x8c\x1a\U00026e85", // 𦺅
+ 0x26e86: "\x8c\f\U00026e86", // 𦺆
+ 0x26e87: "\x8c\f\U00026e87", // 𦺇
+ 0x26e88: "\x8c\f\U00026e88", // 𦺈
+ 0x26e89: "\x8c\f\U00026e89", // 𦺉
+ 0x26e8a: "\x8c\f\U00026e8a", // 𦺊
+ 0x26e8b: "\x8c\f\U00026e8b", // 𦺋
+ 0x26e8c: "\x8c\f\U00026e8c", // 𦺌
+ 0x26e8d: "\x8c\f\U00026e8d", // 𦺍
+ 0x26e8e: "\x8c\f\U00026e8e", // 𦺎
+ 0x26e8f: "\x8c\f\U00026e8f", // 𦺏
+ 0x26e90: "\x8c\f\U00026e90", // 𦺐
+ 0x26e91: "\x8c\f\U00026e91", // 𦺑
+ 0x26e92: "\x8c\f\U00026e92", // 𦺒
+ 0x26e93: "\x8c\f\U00026e93", // 𦺓
+ 0x26e94: "\x8c\f\U00026e94", // 𦺔
+ 0x26e95: "\x8c\f\U00026e95", // 𦺕
+ 0x26e96: "\x8c\f\U00026e96", // 𦺖
+ 0x26e97: "\x8c\f\U00026e97", // 𦺗
+ 0x26e98: "\x8c\f\U00026e98", // 𦺘
+ 0x26e99: "\x8c\f\U00026e99", // 𦺙
+ 0x26e9a: "\x8c\f\U00026e9a", // 𦺚
+ 0x26e9b: "\x8c\f\U00026e9b", // 𦺛
+ 0x26e9c: "\x8c\f\U00026e9c", // 𦺜
+ 0x26e9d: "\x8c\f\U00026e9d", // 𦺝
+ 0x26e9e: "\x8c\f\U00026e9e", // 𦺞
+ 0x26e9f: "\x8c\f\U00026e9f", // 𦺟
+ 0x26ea0: "\x8c\f\U00026ea0", // 𦺠
+ 0x26ea1: "\x8c\f\U00026ea1", // 𦺡
+ 0x26ea2: "\x8c\f\U00026ea2", // 𦺢
+ 0x26ea3: "\x8c\f\U00026ea3", // 𦺣
+ 0x26ea4: "\x8c\f\U00026ea4", // 𦺤
+ 0x26ea5: "\x8c\f\U00026ea5", // 𦺥
+ 0x26ea6: "\x8c\f\U00026ea6", // 𦺦
+ 0x26ea7: "\x8c\f\U00026ea7", // 𦺧
+ 0x26ea8: "\x8c\f\U00026ea8", // 𦺨
+ 0x26ea9: "\x8c\f\U00026ea9", // 𦺩
+ 0x26eaa: "\x8c\f\U00026eaa", // 𦺪
+ 0x26eab: "\x8c\f\U00026eab", // 𦺫
+ 0x26eac: "\x8c\f\U00026eac", // 𦺬
+ 0x26ead: "\x8c\f\U00026ead", // 𦺭
+ 0x26eae: "\x8c\f\U00026eae", // 𦺮
+ 0x26eaf: "\x8c\f\U00026eaf", // 𦺯
+ 0x26eb0: "\x8c\f\U00026eb0", // 𦺰
+ 0x26eb1: "\x8c\f\U00026eb1", // 𦺱
+ 0x26eb2: "\x8c\f\U00026eb2", // 𦺲
+ 0x26eb3: "\x8c\f\U00026eb3", // 𦺳
+ 0x26eb4: "\x8c\f\U00026eb4", // 𦺴
+ 0x26eb5: "\x8c\f\U00026eb5", // 𦺵
+ 0x26eb6: "\x8c\f\U00026eb6", // 𦺶
+ 0x26eb7: "\x8c\f\U00026eb7", // 𦺷
+ 0x26eb8: "\x8c\f\U00026eb8", // 𦺸
+ 0x26eb9: "\x8c\f\U00026eb9", // 𦺹
+ 0x26eba: "\x8c\f\U00026eba", // 𦺺
+ 0x26ebb: "\x8c\f\U00026ebb", // 𦺻
+ 0x26ebc: "\x8c\f\U00026ebc", // 𦺼
+ 0x26ebd: "\x8c\f\U00026ebd", // 𦺽
+ 0x26ebe: "\x8c\f\U00026ebe", // 𦺾
+ 0x26ebf: "\x8c\f\U00026ebf", // 𦺿
+ 0x26ec0: "\x8c\f\U00026ec0", // 𦻀
+ 0x26ec1: "\x8c\f\U00026ec1", // 𦻁
+ 0x26ec2: "\x8c\f\U00026ec2", // 𦻂
+ 0x26ec3: "\x8c\f\U00026ec3", // 𦻃
+ 0x26ec4: "\x8c\f\U00026ec4", // 𦻄
+ 0x26ec5: "\x8c\f\U00026ec5", // 𦻅
+ 0x26ec6: "\x8c\f\U00026ec6", // 𦻆
+ 0x26ec7: "=\x0f\U00026ec7", // 𦻇
+ 0x26ec8: "\x8c\f\U00026ec8", // 𦻈
+ 0x26ec9: "\x8c\f\U00026ec9", // 𦻉
+ 0x26eca: "\x8c\f\U00026eca", // 𦻊
+ 0x26ecb: "\x8c\f\U00026ecb", // 𦻋
+ 0x26ecc: "\x8c\f\U00026ecc", // 𦻌
+ 0x26ecd: "\x8c\f\U00026ecd", // 𦻍
+ 0x26ece: "\x8c\f\U00026ece", // 𦻎
+ 0x26ecf: "\x8c\f\U00026ecf", // 𦻏
+ 0x26ed0: "\x8c\f\U00026ed0", // 𦻐
+ 0x26ed1: "\x8c\f\U00026ed1", // 𦻑
+ 0x26ed2: "\x8c\f\U00026ed2", // 𦻒
+ 0x26ed3: "\x8c\f\U00026ed3", // 𦻓
+ 0x26ed4: "\x8c\f\U00026ed4", // 𦻔
+ 0x26ed5: "\x8c\f\U00026ed5", // 𦻕
+ 0x26ed6: "\x8c\f\U00026ed6", // 𦻖
+ 0x26ed7: "\x8c\f\U00026ed7", // 𦻗
+ 0x26ed8: "\x8c\f\U00026ed8", // 𦻘
+ 0x26ed9: "\x8c\f\U00026ed9", // 𦻙
+ 0x26eda: "\x8c\f\U00026eda", // 𦻚
+ 0x26edb: "\x8c\f\U00026edb", // 𦻛
+ 0x26edc: "\x8c\f\U00026edc", // 𦻜
+ 0x26edd: "\x8c\f\U00026edd", // 𦻝
+ 0x26ede: "\x8c\f\U00026ede", // 𦻞
+ 0x26edf: "\x8c\f\U00026edf", // 𦻟
+ 0x26ee0: "\x8c\f\U00026ee0", // 𦻠
+ 0x26ee1: "\x8c\f\U00026ee1", // 𦻡
+ 0x26ee2: "\x8c\f\U00026ee2", // 𦻢
+ 0x26ee3: "\x8c\f\U00026ee3", // 𦻣
+ 0x26ee4: "\x8c\f\U00026ee4", // 𦻤
+ 0x26ee5: "\x8c\f\U00026ee5", // 𦻥
+ 0x26ee6: "\x8c\f\U00026ee6", // 𦻦
+ 0x26ee7: "\x8c\f\U00026ee7", // 𦻧
+ 0x26ee8: "\x8c\f\U00026ee8", // 𦻨
+ 0x26ee9: "\x8c\f\U00026ee9", // 𦻩
+ 0x26eea: "\x8c\f\U00026eea", // 𦻪
+ 0x26eeb: "\x8c\f\U00026eeb", // 𦻫
+ 0x26eec: "\x8c\f\U00026eec", // 𦻬
+ 0x26eed: "\x8c\f\U00026eed", // 𦻭
+ 0x26eee: "\x8c\f\U00026eee", // 𦻮
+ 0x26eef: "\x8c\f\U00026eef", // 𦻯
+ 0x26ef0: "\x8c\f\U00026ef0", // 𦻰
+ 0x26ef1: "\x8c\f\U00026ef1", // 𦻱
+ 0x26ef2: "\x8c\f\U00026ef2", // 𦻲
+ 0x26ef3: "\x8c\f\U00026ef3", // 𦻳
+ 0x26ef4: "\x8c\f\U00026ef4", // 𦻴
+ 0x26ef5: "\x8c\f\U00026ef5", // 𦻵
+ 0x26ef6: "\x8c\f\U00026ef6", // 𦻶
+ 0x26ef7: "\x8c\f\U00026ef7", // 𦻷
+ 0x26ef8: "\x8c\f\U00026ef8", // 𦻸
+ 0x26ef9: "\x8c\f\U00026ef9", // 𦻹
+ 0x26efa: "\x8c\f\U00026efa", // 𦻺
+ 0x26efb: "\x8c\f\U00026efb", // 𦻻
+ 0x26efc: "\x8c\f\U00026efc", // 𦻼
+ 0x26efd: "\x8c\f\U00026efd", // 𦻽
+ 0x26efe: "\x8c\r\U00026efe", // 𦻾
+ 0x26eff: "\x8c\f\U00026eff", // 𦻿
+ 0x26f00: "\x8c\f\U00026f00", // 𦼀
+ 0x26f01: "\x8c\f\U00026f01", // 𦼁
+ 0x26f02: "\x8c\f\U00026f02", // 𦼂
+ 0x26f03: "\x8c\f\U00026f03", // 𦼃
+ 0x26f04: "\x8c\f\U00026f04", // 𦼄
+ 0x26f05: "\x8c\f\U00026f05", // 𦼅
+ 0x26f06: "\x8c\f\U00026f06", // 𦼆
+ 0x26f07: "\x8c\f\U00026f07", // 𦼇
+ 0x26f08: "\x8c\f\U00026f08", // 𦼈
+ 0x26f09: "\x8c\f\U00026f09", // 𦼉
+ 0x26f0a: "\x8c\f\U00026f0a", // 𦼊
+ 0x26f0b: "\x8c\f\U00026f0b", // 𦼋
+ 0x26f0c: "\x8c\f\U00026f0c", // 𦼌
+ 0x26f0d: "\x8c\f\U00026f0d", // 𦼍
+ 0x26f0e: "\x8c\f\U00026f0e", // 𦼎
+ 0x26f0f: "\x8c\f\U00026f0f", // 𦼏
+ 0x26f10: "\x8c\f\U00026f10", // 𦼐
+ 0x26f11: "\x8c\f\U00026f11", // 𦼑
+ 0x26f12: "\x8c\f\U00026f12", // 𦼒
+ 0x26f13: "\x8c\f\U00026f13", // 𦼓
+ 0x26f14: "\x8c\f\U00026f14", // 𦼔
+ 0x26f15: "\x8c\f\U00026f15", // 𦼕
+ 0x26f16: "\x8c\f\U00026f16", // 𦼖
+ 0x26f17: "\x8c\f\U00026f17", // 𦼗
+ 0x26f18: "\x8c\f\U00026f18", // 𦼘
+ 0x26f19: "\x8c\f\U00026f19", // 𦼙
+ 0x26f1a: "\x8c\f\U00026f1a", // 𦼚
+ 0x26f1b: "\x8c\f\U00026f1b", // 𦼛
+ 0x26f1c: "\x8c\f\U00026f1c", // 𦼜
+ 0x26f1d: "\x8c\f\U00026f1d", // 𦼝
+ 0x26f1e: "\x8c\f\U00026f1e", // 𦼞
+ 0x26f1f: "\x8c\f\U00026f1f", // 𦼟
+ 0x26f20: "\x8c\f\U00026f20", // 𦼠
+ 0x26f21: "\x8c\f\U00026f21", // 𦼡
+ 0x26f22: "\x8c\f\U00026f22", // 𦼢
+ 0x26f23: "\x8c\f\U00026f23", // 𦼣
+ 0x26f24: "\x8c\f\U00026f24", // 𦼤
+ 0x26f25: "\x8c\f\U00026f25", // 𦼥
+ 0x26f26: "\x8c\f\U00026f26", // 𦼦
+ 0x26f27: "\x8c\f\U00026f27", // 𦼧
+ 0x26f28: "\x8c\f\U00026f28", // 𦼨
+ 0x26f29: "\x8c\r\U00026f29", // 𦼩
+ 0x26f2a: "\x8c\r\U00026f2a", // 𦼪
+ 0x26f2b: "\x8c\r\U00026f2b", // 𦼫
+ 0x26f2c: "\x8c\r\U00026f2c", // 𦼬
+ 0x26f2d: "\x8c\r\U00026f2d", // 𦼭
+ 0x26f2e: "\x8c\r\U00026f2e", // 𦼮
+ 0x26f2f: "\x8c\r\U00026f2f", // 𦼯
+ 0x26f30: "\x8c\r\U00026f30", // 𦼰
+ 0x26f31: "\x8c\r\U00026f31", // 𦼱
+ 0x26f32: "\x8c\r\U00026f32", // 𦼲
+ 0x26f33: "\x8c\r\U00026f33", // 𦼳
+ 0x26f34: "\x8c\r\U00026f34", // 𦼴
+ 0x26f35: "\x8c\r\U00026f35", // 𦼵
+ 0x26f36: "\x8c\r\U00026f36", // 𦼶
+ 0x26f37: "\x8c\r\U00026f37", // 𦼷
+ 0x26f38: "\x8c\r\U00026f38", // 𦼸
+ 0x26f39: "\x8c\r\U00026f39", // 𦼹
+ 0x26f3a: "\x8c\r\U00026f3a", // 𦼺
+ 0x26f3b: "\x8c\r\U00026f3b", // 𦼻
+ 0x26f3c: "\x8c\r\U00026f3c", // 𦼼
+ 0x26f3d: "\x8c\r\U00026f3d", // 𦼽
+ 0x26f3e: "\x8c\r\U00026f3e", // 𦼾
+ 0x26f3f: "\x8c\r\U00026f3f", // 𦼿
+ 0x26f40: "\x8c\r\U00026f40", // 𦽀
+ 0x26f41: "\x8c\r\U00026f41", // 𦽁
+ 0x26f42: "\x8c\r\U00026f42", // 𦽂
+ 0x26f43: "\x8c\r\U00026f43", // 𦽃
+ 0x26f44: "\x8c\r\U00026f44", // 𦽄
+ 0x26f45: "\x8c\r\U00026f45", // 𦽅
+ 0x26f46: "\x8c\r\U00026f46", // 𦽆
+ 0x26f47: "\x8c\r\U00026f47", // 𦽇
+ 0x26f48: "\x8c\r\U00026f48", // 𦽈
+ 0x26f49: "\x8c\r\U00026f49", // 𦽉
+ 0x26f4a: "\x8c\r\U00026f4a", // 𦽊
+ 0x26f4b: "\x8c\r\U00026f4b", // 𦽋
+ 0x26f4c: "\x8c\r\U00026f4c", // 𦽌
+ 0x26f4d: "\x8c\r\U00026f4d", // 𦽍
+ 0x26f4e: "\x8c\r\U00026f4e", // 𦽎
+ 0x26f4f: "\x8c\r\U00026f4f", // 𦽏
+ 0x26f50: "\x8c\r\U00026f50", // 𦽐
+ 0x26f51: "\x8c\r\U00026f51", // 𦽑
+ 0x26f52: "\x8c\r\U00026f52", // 𦽒
+ 0x26f53: "\x8c\r\U00026f53", // 𦽓
+ 0x26f54: "\x8c\r\U00026f54", // 𦽔
+ 0x26f55: "\x8c\r\U00026f55", // 𦽕
+ 0x26f56: "\x8c\r\U00026f56", // 𦽖
+ 0x26f57: "\x8c\r\U00026f57", // 𦽗
+ 0x26f58: "\x8c\r\U00026f58", // 𦽘
+ 0x26f59: "\x8c\r\U00026f59", // 𦽙
+ 0x26f5a: "\x8c\r\U00026f5a", // 𦽚
+ 0x26f5b: "\x8c\r\U00026f5b", // 𦽛
+ 0x26f5c: "\x8c\r\U00026f5c", // 𦽜
+ 0x26f5d: "\x8c\r\U00026f5d", // 𦽝
+ 0x26f5e: "\x8c\r\U00026f5e", // 𦽞
+ 0x26f5f: "\x8c\r\U00026f5f", // 𦽟
+ 0x26f60: "\x8c\r\U00026f60", // 𦽠
+ 0x26f61: "\x8c\r\U00026f61", // 𦽡
+ 0x26f62: "\x8c\r\U00026f62", // 𦽢
+ 0x26f63: "\x8c\r\U00026f63", // 𦽣
+ 0x26f64: "\x8c\r\U00026f64", // 𦽤
+ 0x26f65: "\x8c\r\U00026f65", // 𦽥
+ 0x26f66: "\x8c\r\U00026f66", // 𦽦
+ 0x26f67: "\x8c\r\U00026f67", // 𦽧
+ 0x26f68: "\x8c\r\U00026f68", // 𦽨
+ 0x26f69: "\x8c\r\U00026f69", // 𦽩
+ 0x26f6a: "\x8c\r\U00026f6a", // 𦽪
+ 0x26f6b: "\x8c\r\U00026f6b", // 𦽫
+ 0x26f6c: "\x8c\r\U00026f6c", // 𦽬
+ 0x26f6d: "\x8c\f\U00026f6d", // 𦽭
+ 0x26f6e: "\x8c\r\U00026f6e", // 𦽮
+ 0x26f6f: "\x8c\r\U00026f6f", // 𦽯
+ 0x26f70: "\x8c\r\U00026f70", // 𦽰
+ 0x26f71: "\x8c\r\U00026f71", // 𦽱
+ 0x26f72: "\x8c\r\U00026f72", // 𦽲
+ 0x26f73: "\x8c\r\U00026f73", // 𦽳
+ 0x26f74: "\x8c\r\U00026f74", // 𦽴
+ 0x26f75: "\x8c\r\U00026f75", // 𦽵
+ 0x26f76: "\x8c\r\U00026f76", // 𦽶
+ 0x26f77: "\x8c\r\U00026f77", // 𦽷
+ 0x26f78: "\x8c\r\U00026f78", // 𦽸
+ 0x26f79: "\x8c\r\U00026f79", // 𦽹
+ 0x26f7a: "\x8c\r\U00026f7a", // 𦽺
+ 0x26f7b: "\x8c\r\U00026f7b", // 𦽻
+ 0x26f7c: "\x8c\r\U00026f7c", // 𦽼
+ 0x26f7d: "\x8c\r\U00026f7d", // 𦽽
+ 0x26f7e: "\x8c\r\U00026f7e", // 𦽾
+ 0x26f7f: "\x8c\r\U00026f7f", // 𦽿
+ 0x26f80: "\x8c\r\U00026f80", // 𦾀
+ 0x26f81: "\x8c\r\U00026f81", // 𦾁
+ 0x26f82: "\x8c\r\U00026f82", // 𦾂
+ 0x26f83: "\x8c\r\U00026f83", // 𦾃
+ 0x26f84: "\x8c\r\U00026f84", // 𦾄
+ 0x26f85: "\x8c\r\U00026f85", // 𦾅
+ 0x26f86: "\x8c\r\U00026f86", // 𦾆
+ 0x26f87: "\x8c\r\U00026f87", // 𦾇
+ 0x26f88: "\x8c\r\U00026f88", // 𦾈
+ 0x26f89: "\x8c\r\U00026f89", // 𦾉
+ 0x26f8a: "\x8c\r\U00026f8a", // 𦾊
+ 0x26f8b: "\x8c\r\U00026f8b", // 𦾋
+ 0x26f8c: "\x8c\r\U00026f8c", // 𦾌
+ 0x26f8d: "\x8c\r\U00026f8d", // 𦾍
+ 0x26f8e: "\x8c\r\U00026f8e", // 𦾎
+ 0x26f8f: "\x8c\r\U00026f8f", // 𦾏
+ 0x26f90: "\x8c\r\U00026f90", // 𦾐
+ 0x26f91: "\x8c\r\U00026f91", // 𦾑
+ 0x26f92: "\x8c\r\U00026f92", // 𦾒
+ 0x26f93: "\x8c\r\U00026f93", // 𦾓
+ 0x26f94: "\x8c\r\U00026f94", // 𦾔
+ 0x26f95: "\x8c\r\U00026f95", // 𦾕
+ 0x26f96: "\x8c\r\U00026f96", // 𦾖
+ 0x26f97: "\x8c\r\U00026f97", // 𦾗
+ 0x26f98: "\x8c\r\U00026f98", // 𦾘
+ 0x26f99: "\x8c\r\U00026f99", // 𦾙
+ 0x26f9a: "\x8c\r\U00026f9a", // 𦾚
+ 0x26f9b: "\x8c\r\U00026f9b", // 𦾛
+ 0x26f9c: "\x8c\r\U00026f9c", // 𦾜
+ 0x26f9d: "\x8c\r\U00026f9d", // 𦾝
+ 0x26f9e: "\x8c\r\U00026f9e", // 𦾞
+ 0x26f9f: "\x8c\r\U00026f9f", // 𦾟
+ 0x26fa0: "\x8c\r\U00026fa0", // 𦾠
+ 0x26fa1: "\x8c\r\U00026fa1", // 𦾡
+ 0x26fa2: "\x8c\r\U00026fa2", // 𦾢
+ 0x26fa3: "\x8c\r\U00026fa3", // 𦾣
+ 0x26fa4: "\x8c\r\U00026fa4", // 𦾤
+ 0x26fa5: "\x8c\r\U00026fa5", // 𦾥
+ 0x26fa6: "\x8c\r\U00026fa6", // 𦾦
+ 0x26fa7: "\x8c\r\U00026fa7", // 𦾧
+ 0x26fa8: "\x8c\r\U00026fa8", // 𦾨
+ 0x26fa9: "\x8c\r\U00026fa9", // 𦾩
+ 0x26faa: "\x8c\x0e\U00026faa", // 𦾪
+ 0x26fab: "\x8c\x0e\U00026fab", // 𦾫
+ 0x26fac: "\x8c\x0e\U00026fac", // 𦾬
+ 0x26fad: "\x8c\x0e\U00026fad", // 𦾭
+ 0x26fae: "\x8c\x0e\U00026fae", // 𦾮
+ 0x26faf: "\x8c\x0e\U00026faf", // 𦾯
+ 0x26fb0: "\x8c\x0e\U00026fb0", // 𦾰
+ 0x26fb1: "\x8c\x0e\U00026fb1", // 𦾱
+ 0x26fb2: "\x8c\x0e\U00026fb2", // 𦾲
+ 0x26fb3: "\x8c\x0e\U00026fb3", // 𦾳
+ 0x26fb4: "\x8c\x0e\U00026fb4", // 𦾴
+ 0x26fb5: "\x8c\x0e\U00026fb5", // 𦾵
+ 0x26fb6: "\x8c\x0e\U00026fb6", // 𦾶
+ 0x26fb7: "\x8c\x0e\U00026fb7", // 𦾷
+ 0x26fb8: "\x8c\x0e\U00026fb8", // 𦾸
+ 0x26fb9: "\x8c\x0e\U00026fb9", // 𦾹
+ 0x26fba: "\x8c\x0e\U00026fba", // 𦾺
+ 0x26fbb: "\x8c\x0e\U00026fbb", // 𦾻
+ 0x26fbc: "\x8c\x0e\U00026fbc", // 𦾼
+ 0x26fbd: "\x8c\x0e\U00026fbd", // 𦾽
+ 0x26fbe: "\x8c\x0e\U00026fbe", // 𦾾
+ 0x26fbf: "\x8c\x0e\U00026fbf", // 𦾿
+ 0x26fc0: "\x8c\x0e\U00026fc0", // 𦿀
+ 0x26fc1: "\x8c\x0e\U00026fc1", // 𦿁
+ 0x26fc2: "\x8c\x0e\U00026fc2", // 𦿂
+ 0x26fc3: "\x8c\x0e\U00026fc3", // 𦿃
+ 0x26fc4: "\x8c\x0e\U00026fc4", // 𦿄
+ 0x26fc5: "\x8c\x0e\U00026fc5", // 𦿅
+ 0x26fc6: "\x8c\x0e\U00026fc6", // 𦿆
+ 0x26fc7: "\x8c\x0e\U00026fc7", // 𦿇
+ 0x26fc8: "\x8c\x0e\U00026fc8", // 𦿈
+ 0x26fc9: "\x8c\x0e\U00026fc9", // 𦿉
+ 0x26fca: "\x8c\x0e\U00026fca", // 𦿊
+ 0x26fcb: "\x8c\x0e\U00026fcb", // 𦿋
+ 0x26fcc: "\x8c\x0e\U00026fcc", // 𦿌
+ 0x26fcd: "\x8c\x0e\U00026fcd", // 𦿍
+ 0x26fce: "\x8c\x0e\U00026fce", // 𦿎
+ 0x26fcf: "\x8c\x0e\U00026fcf", // 𦿏
+ 0x26fd0: "\x8c\x0e\U00026fd0", // 𦿐
+ 0x26fd1: "\x8c\x0e\U00026fd1", // 𦿑
+ 0x26fd2: "\x8c\x0e\U00026fd2", // 𦿒
+ 0x26fd3: "\x8c\x0e\U00026fd3", // 𦿓
+ 0x26fd4: "\x8c\x0f\U00026fd4", // 𦿔
+ 0x26fd5: "\x8c\x0f\U00026fd5", // 𦿕
+ 0x26fd6: "\x8c\x0e\U00026fd6", // 𦿖
+ 0x26fd7: "\x8c\x0e\U00026fd7", // 𦿗
+ 0x26fd8: "\x8c\x0e\U00026fd8", // 𦿘
+ 0x26fd9: "\x8c\x0e\U00026fd9", // 𦿙
+ 0x26fda: "\x8c\x0e\U00026fda", // 𦿚
+ 0x26fdb: "\x8c\x0e\U00026fdb", // 𦿛
+ 0x26fdc: "\x8c\x0e\U00026fdc", // 𦿜
+ 0x26fdd: "\x8c\x0f\U00026fdd", // 𦿝
+ 0x26fde: "\x8c\x0e\U00026fde", // 𦿞
+ 0x26fdf: "\x8c\x0e\U00026fdf", // 𦿟
+ 0x26fe0: "\x8c\x0e\U00026fe0", // 𦿠
+ 0x26fe1: "\x8c\r\U00026fe1", // 𦿡
+ 0x26fe2: "\x8c\x0e\U00026fe2", // 𦿢
+ 0x26fe3: "\x8c\x0e\U00026fe3", // 𦿣
+ 0x26fe4: "\x8c\x0e\U00026fe4", // 𦿤
+ 0x26fe5: "\x8c\x0e\U00026fe5", // 𦿥
+ 0x26fe6: "\x8c\x0e\U00026fe6", // 𦿦
+ 0x26fe7: "\x8c\x0e\U00026fe7", // 𦿧
+ 0x26fe8: "\x8c\x0e\U00026fe8", // 𦿨
+ 0x26fe9: "\x8c\x0e\U00026fe9", // 𦿩
+ 0x26fea: "\x8c\x0e\U00026fea", // 𦿪
+ 0x26feb: "\x8c\x0e\U00026feb", // 𦿫
+ 0x26fec: "\x8c\x0e\U00026fec", // 𦿬
+ 0x26fed: "\x8c\x0e\U00026fed", // 𦿭
+ 0x26fee: "\x8c\x0e\U00026fee", // 𦿮
+ 0x26fef: "\x8c\x0e\U00026fef", // 𦿯
+ 0x26ff0: "\x8c\x0e\U00026ff0", // 𦿰
+ 0x26ff1: "\x8c\x0e\U00026ff1", // 𦿱
+ 0x26ff2: "\x8c\x0e\U00026ff2", // 𦿲
+ 0x26ff3: "\x8c\x0e\U00026ff3", // 𦿳
+ 0x26ff4: "\x8c\x0e\U00026ff4", // 𦿴
+ 0x26ff5: "\x8c\x0e\U00026ff5", // 𦿵
+ 0x26ff6: "\x8c\x0e\U00026ff6", // 𦿶
+ 0x26ff7: "\x8c\x0e\U00026ff7", // 𦿷
+ 0x26ff8: "\x8c\r\U00026ff8", // 𦿸
+ 0x26ff9: "\x8c\x0e\U00026ff9", // 𦿹
+ 0x26ffa: "\x8c\x0e\U00026ffa", // 𦿺
+ 0x26ffb: "\x8c\x0e\U00026ffb", // 𦿻
+ 0x26ffc: "\x8c\x0e\U00026ffc", // 𦿼
+ 0x26ffd: "\x8c\x0e\U00026ffd", // 𦿽
+ 0x26ffe: "\x8c\x0e\U00026ffe", // 𦿾
+ 0x26fff: "\x8c\x0e\U00026fff", // 𦿿
+ 0x27000: "\x8c\x0e\U00027000", // 𧀀
+ 0x27001: "\x8c\x0e\U00027001", // 𧀁
+ 0x27002: "\x8c\x0e\U00027002", // 𧀂
+ 0x27003: "\x8c\x0e\U00027003", // 𧀃
+ 0x27004: "\x8c\x0e\U00027004", // 𧀄
+ 0x27005: "\x8c\x0e\U00027005", // 𧀅
+ 0x27006: "\x8c\x0e\U00027006", // 𧀆
+ 0x27007: "\x8c\x0e\U00027007", // 𧀇
+ 0x27008: "\x8c\x0e\U00027008", // 𧀈
+ 0x27009: "\x8c\x0e\U00027009", // 𧀉
+ 0x2700a: "\x8c\x0e\U0002700a", // 𧀊
+ 0x2700b: "\x8c\x0e\U0002700b", // 𧀋
+ 0x2700c: "\x8c\x0e\U0002700c", // 𧀌
+ 0x2700d: "\x8c\x0e\U0002700d", // 𧀍
+ 0x2700e: "\x8c\x0e\U0002700e", // 𧀎
+ 0x2700f: "\x8c\x0e\U0002700f", // 𧀏
+ 0x27010: "\x8c\x0e\U00027010", // 𧀐
+ 0x27011: "\x8c\x0e\U00027011", // 𧀑
+ 0x27012: "\x8c\x0e\U00027012", // 𧀒
+ 0x27013: "\x8c\x0e\U00027013", // 𧀓
+ 0x27014: "\x8c\x0e\U00027014", // 𧀔
+ 0x27015: "\x8c\x0e\U00027015", // 𧀕
+ 0x27016: "\x8c\x0e\U00027016", // 𧀖
+ 0x27017: "\x8c\x0e\U00027017", // 𧀗
+ 0x27018: "\x8c\x0e\U00027018", // 𧀘
+ 0x27019: "\x8c\x0e\U00027019", // 𧀙
+ 0x2701a: "\x8c\x0e\U0002701a", // 𧀚
+ 0x2701b: "\x8c\x0e\U0002701b", // 𧀛
+ 0x2701c: "\x8c\x0e\U0002701c", // 𧀜
+ 0x2701d: "\x8c\x0e\U0002701d", // 𧀝
+ 0x2701e: "\x8c\x0e\U0002701e", // 𧀞
+ 0x2701f: "\x8c\x0e\U0002701f", // 𧀟
+ 0x27020: "\x8c\x0f\U00027020", // 𧀠
+ 0x27021: "\x8c\x0f\U00027021", // 𧀡
+ 0x27022: "\x8c\x0f\U00027022", // 𧀢
+ 0x27023: "\x8c\x0f\U00027023", // 𧀣
+ 0x27024: "\x8c\x0f\U00027024", // 𧀤
+ 0x27025: "\x8c\x0f\U00027025", // 𧀥
+ 0x27026: "\x8c\x0f\U00027026", // 𧀦
+ 0x27027: "\x8c\x0f\U00027027", // 𧀧
+ 0x27028: "\x8c\x0f\U00027028", // 𧀨
+ 0x27029: "\x8c\x0f\U00027029", // 𧀩
+ 0x2702a: "\x8c\x0f\U0002702a", // 𧀪
+ 0x2702b: "\x8c\x0f\U0002702b", // 𧀫
+ 0x2702c: "\x8c\x0f\U0002702c", // 𧀬
+ 0x2702d: "\x8c\x0f\U0002702d", // 𧀭
+ 0x2702e: "\x8c\x0f\U0002702e", // 𧀮
+ 0x2702f: "\x8c\x0f\U0002702f", // 𧀯
+ 0x27030: "\x8c\x0f\U00027030", // 𧀰
+ 0x27031: "\x8c\x0f\U00027031", // 𧀱
+ 0x27032: "\x8c\x0f\U00027032", // 𧀲
+ 0x27033: "\x8c\x0f\U00027033", // 𧀳
+ 0x27034: "\x8c\x0f\U00027034", // 𧀴
+ 0x27035: "\x8c\x0f\U00027035", // 𧀵
+ 0x27036: "\x8c\x0f\U00027036", // 𧀶
+ 0x27037: "\x8c\x0f\U00027037", // 𧀷
+ 0x27038: "\x8c\x0f\U00027038", // 𧀸
+ 0x27039: "\x8c\x0f\U00027039", // 𧀹
+ 0x2703a: "\x8c\x0f\U0002703a", // 𧀺
+ 0x2703b: "\x8c\x0f\U0002703b", // 𧀻
+ 0x2703c: "\x8c\x0f\U0002703c", // 𧀼
+ 0x2703d: "\x8c\x0f\U0002703d", // 𧀽
+ 0x2703e: "\x8c\x0f\U0002703e", // 𧀾
+ 0x2703f: "\x8c\x0f\U0002703f", // 𧀿
+ 0x27040: "\x8c\x0f\U00027040", // 𧁀
+ 0x27041: "\x8c\x0f\U00027041", // 𧁁
+ 0x27042: "\x8c\x0f\U00027042", // 𧁂
+ 0x27043: "\x8c\x0f\U00027043", // 𧁃
+ 0x27044: "\x8c\x0f\U00027044", // 𧁄
+ 0x27045: "\x8c\x0f\U00027045", // 𧁅
+ 0x27046: "\x8c\x0f\U00027046", // 𧁆
+ 0x27047: "\x8c\x0f\U00027047", // 𧁇
+ 0x27048: "\x8c\x0f\U00027048", // 𧁈
+ 0x27049: "\x8c\x0f\U00027049", // 𧁉
+ 0x2704a: "\x8c\x0f\U0002704a", // 𧁊
+ 0x2704b: "\x8c\x0f\U0002704b", // 𧁋
+ 0x2704c: "\x8c\x0f\U0002704c", // 𧁌
+ 0x2704d: "\x8c\x0f\U0002704d", // 𧁍
+ 0x2704e: "\x8c\x0f\U0002704e", // 𧁎
+ 0x2704f: "\x8c\x0f\U0002704f", // 𧁏
+ 0x27050: "\x8c\x0f\U00027050", // 𧁐
+ 0x27051: "\x8c\x0f\U00027051", // 𧁑
+ 0x27052: "\x8c\x0f\U00027052", // 𧁒
+ 0x27053: "\x8c\x0f\U00027053", // 𧁓
+ 0x27054: "\x8c\x0f\U00027054", // 𧁔
+ 0x27055: "\x8c\x0f\U00027055", // 𧁕
+ 0x27056: "\x8c\x0f\U00027056", // 𧁖
+ 0x27057: "\x8c\x0f\U00027057", // 𧁗
+ 0x27058: "\x8c\x0f\U00027058", // 𧁘
+ 0x27059: "\x8c\x0f\U00027059", // 𧁙
+ 0x2705a: "\x8c\x0f\U0002705a", // 𧁚
+ 0x2705b: "\x8c\x0f\U0002705b", // 𧁛
+ 0x2705c: "\x8c\x0f\U0002705c", // 𧁜
+ 0x2705d: "\x8c\x0f\U0002705d", // 𧁝
+ 0x2705e: "\x8c\x0f\U0002705e", // 𧁞
+ 0x2705f: "\x8c\x0f\U0002705f", // 𧁟
+ 0x27060: "\x8c\x0f\U00027060", // 𧁠
+ 0x27061: "\x8c\x0f\U00027061", // 𧁡
+ 0x27062: "\x8c\x0f\U00027062", // 𧁢
+ 0x27063: "\x8c\x0f\U00027063", // 𧁣
+ 0x27064: "\x8c\x0f\U00027064", // 𧁤
+ 0x27065: "\x8c\x0f\U00027065", // 𧁥
+ 0x27066: "\x8c\x0f\U00027066", // 𧁦
+ 0x27067: "\x8c\x0f\U00027067", // 𧁧
+ 0x27068: "\x8c\x0f\U00027068", // 𧁨
+ 0x27069: "\x8c\x0f\U00027069", // 𧁩
+ 0x2706a: "\x8c\x0f\U0002706a", // 𧁪
+ 0x2706b: "\x8c\x0f\U0002706b", // 𧁫
+ 0x2706c: "\x8c\x0f\U0002706c", // 𧁬
+ 0x2706d: "\x8c\x0f\U0002706d", // 𧁭
+ 0x2706e: "\x8c\x0f\U0002706e", // 𧁮
+ 0x2706f: "\x8c\x0f\U0002706f", // 𧁯
+ 0x27070: "\x8c\x0f\U00027070", // 𧁰
+ 0x27071: "\x8c\x0f\U00027071", // 𧁱
+ 0x27072: "\x8c\x0f\U00027072", // 𧁲
+ 0x27073: "\x8c\x0f\U00027073", // 𧁳
+ 0x27074: "\x8c\x0f\U00027074", // 𧁴
+ 0x27075: "\x8c\x0f\U00027075", // 𧁵
+ 0x27076: "\x8c\x0f\U00027076", // 𧁶
+ 0x27077: "\x8c\x0f\U00027077", // 𧁷
+ 0x27078: "\x8c\x0f\U00027078", // 𧁸
+ 0x27079: "\x8c\x0f\U00027079", // 𧁹
+ 0x2707a: "\x8c\x0f\U0002707a", // 𧁺
+ 0x2707b: "\x8c\x10\U0002707b", // 𧁻
+ 0x2707c: "\x8c\x10\U0002707c", // 𧁼
+ 0x2707d: "\x8c\x10\U0002707d", // 𧁽
+ 0x2707e: "\x8c\x10\U0002707e", // 𧁾
+ 0x2707f: "\x8c\x10\U0002707f", // 𧁿
+ 0x27080: "\x8c\x10\U00027080", // 𧂀
+ 0x27081: "\x8c\x10\U00027081", // 𧂁
+ 0x27082: "\x8c\x10\U00027082", // 𧂂
+ 0x27083: "\x8c\x10\U00027083", // 𧂃
+ 0x27084: "\x8c\x10\U00027084", // 𧂄
+ 0x27085: "\x8c\x10\U00027085", // 𧂅
+ 0x27086: "\x8c\x10\U00027086", // 𧂆
+ 0x27087: "\x8c\x10\U00027087", // 𧂇
+ 0x27088: "\x8c\x10\U00027088", // 𧂈
+ 0x27089: "\x8c\x10\U00027089", // 𧂉
+ 0x2708a: "\x8c\x10\U0002708a", // 𧂊
+ 0x2708b: "\x8c\x10\U0002708b", // 𧂋
+ 0x2708c: "\x8c\x10\U0002708c", // 𧂌
+ 0x2708d: "\x8c\x10\U0002708d", // 𧂍
+ 0x2708e: "\x8c\x10\U0002708e", // 𧂎
+ 0x2708f: "\x8c\x10\U0002708f", // 𧂏
+ 0x27090: "\x8c\x10\U00027090", // 𧂐
+ 0x27091: "\x8c\x10\U00027091", // 𧂑
+ 0x27092: "\x8c\x10\U00027092", // 𧂒
+ 0x27093: "\x8c\x10\U00027093", // 𧂓
+ 0x27094: "\x8c\x10\U00027094", // 𧂔
+ 0x27095: "\x8c\x10\U00027095", // 𧂕
+ 0x27096: "\x8c\x10\U00027096", // 𧂖
+ 0x27097: "\x8c\x10\U00027097", // 𧂗
+ 0x27098: "\x8c\x10\U00027098", // 𧂘
+ 0x27099: "\x8c\x10\U00027099", // 𧂙
+ 0x2709a: "\x8c\x10\U0002709a", // 𧂚
+ 0x2709b: "\x8c\x10\U0002709b", // 𧂛
+ 0x2709c: "\x8c\x10\U0002709c", // 𧂜
+ 0x2709d: "\x8c\x10\U0002709d", // 𧂝
+ 0x2709e: "\x8c\x10\U0002709e", // 𧂞
+ 0x2709f: "\x8c\x10\U0002709f", // 𧂟
+ 0x270a0: "\x8c\x10\U000270a0", // 𧂠
+ 0x270a1: "\x8c\x10\U000270a1", // 𧂡
+ 0x270a2: "\x8c\x10\U000270a2", // 𧂢
+ 0x270a3: "\x8c\x10\U000270a3", // 𧂣
+ 0x270a4: "\x8c\x10\U000270a4", // 𧂤
+ 0x270a5: "\x8c\x10\U000270a5", // 𧂥
+ 0x270a6: "\x8c\x10\U000270a6", // 𧂦
+ 0x270a7: "\x8c\x10\U000270a7", // 𧂧
+ 0x270a8: "\x8c\x10\U000270a8", // 𧂨
+ 0x270a9: "\x8c\x10\U000270a9", // 𧂩
+ 0x270aa: "\x8c\x10\U000270aa", // 𧂪
+ 0x270ab: "\x8c\x10\U000270ab", // 𧂫
+ 0x270ac: "\x8c\x10\U000270ac", // 𧂬
+ 0x270ad: "\x8c\x10\U000270ad", // 𧂭
+ 0x270ae: "\x8c\x10\U000270ae", // 𧂮
+ 0x270af: "\x8c\x10\U000270af", // 𧂯
+ 0x270b0: "\x8c\x10\U000270b0", // 𧂰
+ 0x270b1: "\x8c\x10\U000270b1", // 𧂱
+ 0x270b2: "\x8c\x10\U000270b2", // 𧂲
+ 0x270b3: "\x8c\x10\U000270b3", // 𧂳
+ 0x270b4: "\x8c\x10\U000270b4", // 𧂴
+ 0x270b5: "\x8c\x10\U000270b5", // 𧂵
+ 0x270b6: "\x8c\x10\U000270b6", // 𧂶
+ 0x270b7: "\x8c\x10\U000270b7", // 𧂷
+ 0x270b8: "\x8c\x10\U000270b8", // 𧂸
+ 0x270b9: "\x8c\x10\U000270b9", // 𧂹
+ 0x270ba: "\x8c\x10\U000270ba", // 𧂺
+ 0x270bb: "\x8c\x10\U000270bb", // 𧂻
+ 0x270bc: "\x8c\x10\U000270bc", // 𧂼
+ 0x270bd: "\x8c\x10\U000270bd", // 𧂽
+ 0x270be: "\x8c\x10\U000270be", // 𧂾
+ 0x270bf: "\x8c\x10\U000270bf", // 𧂿
+ 0x270c0: "\x8c\x10\U000270c0", // 𧃀
+ 0x270c1: "\x8c\x10\U000270c1", // 𧃁
+ 0x270c2: "\x8c\x10\U000270c2", // 𧃂
+ 0x270c3: "\x8c\x10\U000270c3", // 𧃃
+ 0x270c4: "\x8c\x10\U000270c4", // 𧃄
+ 0x270c5: "\x8c\x10\U000270c5", // 𧃅
+ 0x270c6: "\x8c\x10\U000270c6", // 𧃆
+ 0x270c7: "\x8c\x10\U000270c7", // 𧃇
+ 0x270c8: "\x8c\x10\U000270c8", // 𧃈
+ 0x270c9: "\x8c\x10\U000270c9", // 𧃉
+ 0x270ca: "\x8c\x10\U000270ca", // 𧃊
+ 0x270cb: "\x8c\x10\U000270cb", // 𧃋
+ 0x270cc: "\x8c\x0f\U000270cc", // 𧃌
+ 0x270cd: "\x8c\x11\U000270cd", // 𧃍
+ 0x270ce: "\x8c\x10\U000270ce", // 𧃎
+ 0x270cf: "\x8c\x11\U000270cf", // 𧃏
+ 0x270d0: "\x8c\x11\U000270d0", // 𧃐
+ 0x270d1: "\x8c\x11\U000270d1", // 𧃑
+ 0x270d2: "\x8c\x11\U000270d2", // 𧃒
+ 0x270d3: "\x8c\x11\U000270d3", // 𧃓
+ 0x270d4: "\x8c\x11\U000270d4", // 𧃔
+ 0x270d5: "\x8c\x11\U000270d5", // 𧃕
+ 0x270d6: "\x8c\x11\U000270d6", // 𧃖
+ 0x270d7: "\x8c\x11\U000270d7", // 𧃗
+ 0x270d8: "\x8c\x11\U000270d8", // 𧃘
+ 0x270d9: "\x8c\x11\U000270d9", // 𧃙
+ 0x270da: "\x8c\x11\U000270da", // 𧃚
+ 0x270db: "\x8c\x11\U000270db", // 𧃛
+ 0x270dc: "\x8c\x11\U000270dc", // 𧃜
+ 0x270dd: "\x8c\x11\U000270dd", // 𧃝
+ 0x270de: "\x8c\x11\U000270de", // 𧃞
+ 0x270df: "\x8c\x11\U000270df", // 𧃟
+ 0x270e0: "\x8c\x11\U000270e0", // 𧃠
+ 0x270e1: "\x8c\x11\U000270e1", // 𧃡
+ 0x270e2: "\x8c\x11\U000270e2", // 𧃢
+ 0x270e3: "\x8c\x11\U000270e3", // 𧃣
+ 0x270e4: "\x8c\x11\U000270e4", // 𧃤
+ 0x270e5: "\x8c\x11\U000270e5", // 𧃥
+ 0x270e6: "\x8c\x11\U000270e6", // 𧃦
+ 0x270e7: "\x8c\x11\U000270e7", // 𧃧
+ 0x270e8: "\x8c\x11\U000270e8", // 𧃨
+ 0x270e9: "\x8c\x11\U000270e9", // 𧃩
+ 0x270ea: "\x8c\x11\U000270ea", // 𧃪
+ 0x270eb: "\x8c\x11\U000270eb", // 𧃫
+ 0x270ec: "\x8c\x11\U000270ec", // 𧃬
+ 0x270ed: "\x8c\x11\U000270ed", // 𧃭
+ 0x270ee: "\x8c\x11\U000270ee", // 𧃮
+ 0x270ef: "\x8c\x11\U000270ef", // 𧃯
+ 0x270f0: "\x8c\x11\U000270f0", // 𧃰
+ 0x270f1: "\x8c\x11\U000270f1", // 𧃱
+ 0x270f2: "\x8c\x11\U000270f2", // 𧃲
+ 0x270f3: "\x8c\x11\U000270f3", // 𧃳
+ 0x270f4: "\x8c\x11\U000270f4", // 𧃴
+ 0x270f5: "\x8c\x11\U000270f5", // 𧃵
+ 0x270f6: "\x8c\x11\U000270f6", // 𧃶
+ 0x270f7: "\x8c\x11\U000270f7", // 𧃷
+ 0x270f8: "\x8c\x11\U000270f8", // 𧃸
+ 0x270f9: "\x8c\x11\U000270f9", // 𧃹
+ 0x270fa: "\x8c\x11\U000270fa", // 𧃺
+ 0x270fb: "\x8c\x11\U000270fb", // 𧃻
+ 0x270fc: "\x8c\x11\U000270fc", // 𧃼
+ 0x270fd: "\x8c\x11\U000270fd", // 𧃽
+ 0x270fe: "\x8c\x11\U000270fe", // 𧃾
+ 0x270ff: "\x8c\x11\U000270ff", // 𧃿
+ 0x27100: "\x8c\x11\U00027100", // 𧄀
+ 0x27101: "\x8c\x11\U00027101", // 𧄁
+ 0x27102: "\x8c\x11\U00027102", // 𧄂
+ 0x27103: "\x8c\x11\U00027103", // 𧄃
+ 0x27104: "\x8c\x11\U00027104", // 𧄄
+ 0x27105: "\x8c\x11\U00027105", // 𧄅
+ 0x27106: "\x8c\x11\U00027106", // 𧄆
+ 0x27107: "\x8c\x11\U00027107", // 𧄇
+ 0x27108: "\x8c\x11\U00027108", // 𧄈
+ 0x27109: "\x8c\x11\U00027109", // 𧄉
+ 0x2710a: "\x8c\x11\U0002710a", // 𧄊
+ 0x2710b: "\x8c\x11\U0002710b", // 𧄋
+ 0x2710c: "\x8c\x11\U0002710c", // 𧄌
+ 0x2710d: "\x8c\x12\U0002710d", // 𧄍
+ 0x2710e: "\x8c\x12\U0002710e", // 𧄎
+ 0x2710f: "\x8c\x12\U0002710f", // 𧄏
+ 0x27110: "\x8c\x12\U00027110", // 𧄐
+ 0x27111: "\x8c\x12\U00027111", // 𧄑
+ 0x27112: "\x8c\x12\U00027112", // 𧄒
+ 0x27113: "\x8c\x12\U00027113", // 𧄓
+ 0x27114: "\x8c\x12\U00027114", // 𧄔
+ 0x27115: "\x8c\x12\U00027115", // 𧄕
+ 0x27116: "\x8c\x12\U00027116", // 𧄖
+ 0x27117: "\x8c\x12\U00027117", // 𧄗
+ 0x27118: "\x8c\x12\U00027118", // 𧄘
+ 0x27119: "\x8c\x12\U00027119", // 𧄙
+ 0x2711a: "\x8c\x12\U0002711a", // 𧄚
+ 0x2711b: "\x8c\x12\U0002711b", // 𧄛
+ 0x2711c: "\x8c\x12\U0002711c", // 𧄜
+ 0x2711d: "\x8c\x12\U0002711d", // 𧄝
+ 0x2711e: "\x8c\x12\U0002711e", // 𧄞
+ 0x2711f: "\x8c\x12\U0002711f", // 𧄟
+ 0x27120: "\x8c\x12\U00027120", // 𧄠
+ 0x27121: "\x8c\x12\U00027121", // 𧄡
+ 0x27122: "\x8c\x12\U00027122", // 𧄢
+ 0x27123: "\x8c\x12\U00027123", // 𧄣
+ 0x27124: "\x8c\x12\U00027124", // 𧄤
+ 0x27125: "\x8c\x12\U00027125", // 𧄥
+ 0x27126: "\x8c\x12\U00027126", // 𧄦
+ 0x27127: "\x8c\x12\U00027127", // 𧄧
+ 0x27128: "\x8c\x12\U00027128", // 𧄨
+ 0x27129: "\x8c\x12\U00027129", // 𧄩
+ 0x2712a: "\x8c\x12\U0002712a", // 𧄪
+ 0x2712b: "\x8c\x12\U0002712b", // 𧄫
+ 0x2712c: "\x8c\x12\U0002712c", // 𧄬
+ 0x2712d: "\x8c\x12\U0002712d", // 𧄭
+ 0x2712e: "\x8c\x12\U0002712e", // 𧄮
+ 0x2712f: "\x8c\x12\U0002712f", // 𧄯
+ 0x27130: "\x8c\x12\U00027130", // 𧄰
+ 0x27131: "\x8c\x12\U00027131", // 𧄱
+ 0x27132: "\x8c\x12\U00027132", // 𧄲
+ 0x27133: "\x8c\x12\U00027133", // 𧄳
+ 0x27134: "\x8c\x12\U00027134", // 𧄴
+ 0x27135: "\x8c\x12\U00027135", // 𧄵
+ 0x27136: "\x8c\x13\U00027136", // 𧄶
+ 0x27137: "\x8c\x13\U00027137", // 𧄷
+ 0x27138: "\x8c\x13\U00027138", // 𧄸
+ 0x27139: "\x8c\x13\U00027139", // 𧄹
+ 0x2713a: "\x8c\x13\U0002713a", // 𧄺
+ 0x2713b: "\x8c\x13\U0002713b", // 𧄻
+ 0x2713c: "\x8c\x13\U0002713c", // 𧄼
+ 0x2713d: "\x8c\x13\U0002713d", // 𧄽
+ 0x2713e: "\x8c\x13\U0002713e", // 𧄾
+ 0x2713f: "\x8c\x13\U0002713f", // 𧄿
+ 0x27140: "\x8c\x13\U00027140", // 𧅀
+ 0x27141: "\x8c\x13\U00027141", // 𧅁
+ 0x27142: "\x8c\x13\U00027142", // 𧅂
+ 0x27143: "\x8c\x13\U00027143", // 𧅃
+ 0x27144: "\x8c\x13\U00027144", // 𧅄
+ 0x27145: "\x8c\x13\U00027145", // 𧅅
+ 0x27146: "\x8c\x13\U00027146", // 𧅆
+ 0x27147: "\x8c\x13\U00027147", // 𧅇
+ 0x27148: "\x8c\x13\U00027148", // 𧅈
+ 0x27149: "\x8c\x13\U00027149", // 𧅉
+ 0x2714a: "\x8c\x13\U0002714a", // 𧅊
+ 0x2714b: "\x8c\x13\U0002714b", // 𧅋
+ 0x2714c: "\x8c\x13\U0002714c", // 𧅌
+ 0x2714d: "\x8c\x13\U0002714d", // 𧅍
+ 0x2714e: "\x8c\x13\U0002714e", // 𧅎
+ 0x2714f: "\x8c\x13\U0002714f", // 𧅏
+ 0x27150: "\x8c\x13\U00027150", // 𧅐
+ 0x27151: "\x8c\x13\U00027151", // 𧅑
+ 0x27152: "\x8c\x13\U00027152", // 𧅒
+ 0x27153: "\x8c\x13\U00027153", // 𧅓
+ 0x27154: "\x8c\x13\U00027154", // 𧅔
+ 0x27155: "\x8c\x13\U00027155", // 𧅕
+ 0x27156: "\x8c\x14\U00027156", // 𧅖
+ 0x27157: "\x8c\x14\U00027157", // 𧅗
+ 0x27158: "\x8c\x14\U00027158", // 𧅘
+ 0x27159: "\x8c\x14\U00027159", // 𧅙
+ 0x2715a: "\x8c\x14\U0002715a", // 𧅚
+ 0x2715b: "\x8c\x14\U0002715b", // 𧅛
+ 0x2715c: "\x8c\x14\U0002715c", // 𧅜
+ 0x2715d: "\x8c\x14\U0002715d", // 𧅝
+ 0x2715e: "\x8c\x14\U0002715e", // 𧅞
+ 0x2715f: "\x8c\x14\U0002715f", // 𧅟
+ 0x27160: "\x8c\x14\U00027160", // 𧅠
+ 0x27161: "\x8c\x14\U00027161", // 𧅡
+ 0x27162: "\x8c\x14\U00027162", // 𧅢
+ 0x27163: "\x8c\x14\U00027163", // 𧅣
+ 0x27164: "\x8c\x14\U00027164", // 𧅤
+ 0x27165: "\x8c\x14\U00027165", // 𧅥
+ 0x27166: "\x8c\x14\U00027166", // 𧅦
+ 0x27167: "\x8c\x14\U00027167", // 𧅧
+ 0x27168: "\x8c\x14\U00027168", // 𧅨
+ 0x27169: "\x8c\x14\U00027169", // 𧅩
+ 0x2716a: "\x8c\x14\U0002716a", // 𧅪
+ 0x2716b: "\x8c\x14\U0002716b", // 𧅫
+ 0x2716c: "\x8c\x14\U0002716c", // 𧅬
+ 0x2716d: "\x8c\x14\U0002716d", // 𧅭
+ 0x2716e: "\x8c\x15\U0002716e", // 𧅮
+ 0x2716f: "\x8c\x15\U0002716f", // 𧅯
+ 0x27170: "\x8c\x15\U00027170", // 𧅰
+ 0x27171: "\x8c\x15\U00027171", // 𧅱
+ 0x27172: "\x8c\x15\U00027172", // 𧅲
+ 0x27173: "\x8c\x15\U00027173", // 𧅳
+ 0x27174: "\x8c\x15\U00027174", // 𧅴
+ 0x27175: "\x8c\x18\U00027175", // 𧅵
+ 0x27176: "\x8c\x15\U00027176", // 𧅶
+ 0x27177: "\x8c\x15\U00027177", // 𧅷
+ 0x27178: "\x8c\x15\U00027178", // 𧅸
+ 0x27179: "\x8c\x15\U00027179", // 𧅹
+ 0x2717a: "\x8c\x16\U0002717a", // 𧅺
+ 0x2717b: "\x8c\x16\U0002717b", // 𧅻
+ 0x2717c: "\x8c\x16\U0002717c", // 𧅼
+ 0x2717d: "\x8c\x16\U0002717d", // 𧅽
+ 0x2717e: "\x8c\x16\U0002717e", // 𧅾
+ 0x2717f: "\x8c\x16\U0002717f", // 𧅿
+ 0x27180: "\x8c\x16\U00027180", // 𧆀
+ 0x27181: "\x8c\x16\U00027181", // 𧆁
+ 0x27182: "\x8c\x16\U00027182", // 𧆂
+ 0x27183: "\x8c\x16\U00027183", // 𧆃
+ 0x27184: "\x8c\x16\U00027184", // 𧆄
+ 0x27185: "\x8c\x16\U00027185", // 𧆅
+ 0x27186: "q\x15\U00027186", // 𧆆
+ 0x27187: "\x8c\x17\U00027187", // 𧆇
+ 0x27188: "\x8c\x17\U00027188", // 𧆈
+ 0x27189: "\x8c\x17\U00027189", // 𧆉
+ 0x2718a: "\x8c\x17\U0002718a", // 𧆊
+ 0x2718b: "\x8c\x17\U0002718b", // 𧆋
+ 0x2718c: "\x8c\x17\U0002718c", // 𧆌
+ 0x2718d: "\x8c\x17\U0002718d", // 𧆍
+ 0x2718e: "\x8c\x17\U0002718e", // 𧆎
+ 0x2718f: "\x8c\x18\U0002718f", // 𧆏
+ 0x27190: "\x8c\x18\U00027190", // 𧆐
+ 0x27191: "\x8c\x18\U00027191", // 𧆑
+ 0x27192: "\x8c\x18\U00027192", // 𧆒
+ 0x27193: "\x8c!\U00027193", // 𧆓
+ 0x27194: "\x8c\x19\U00027194", // 𧆔
+ 0x27195: "\x8c\x19\U00027195", // 𧆕
+ 0x27196: "\x8c\x1a\U00027196", // 𧆖
+ 0x27197: "\x8c\x1b\U00027197", // 𧆗
+ 0x27198: "\x8c'\U00027198", // 𧆘
+ 0x27199: "\x8c\x1d\U00027199", // 𧆙
+ 0x2719a: "\x8c\x1a\U0002719a", // 𧆚
+ 0x2719b: "\x8d\x02\U0002719b", // 𧆛
+ 0x2719c: "\x8d\x03\U0002719c", // 𧆜
+ 0x2719d: "\x8d\x03\U0002719d", // 𧆝
+ 0x2719e: "\x8d\x03\U0002719e", // 𧆞
+ 0x2719f: "\x8d\x04\U0002719f", // 𧆟
+ 0x271a0: "\x8d\x04\U000271a0", // 𧆠
+ 0x271a1: "\x8d\x04\U000271a1", // 𧆡
+ 0x271a2: "\x8d\x04\U000271a2", // 𧆢
+ 0x271a3: "\x8d\x05\U000271a3", // 𧆣
+ 0x271a4: "\x8d\x05\U000271a4", // 𧆤
+ 0x271a5: "\x8d\x05\U000271a5", // 𧆥
+ 0x271a6: "\x8d\x05\U000271a6", // 𧆦
+ 0x271a7: "\x8d\x05\U000271a7", // 𧆧
+ 0x271a8: "\x8d\x05\U000271a8", // 𧆨
+ 0x271a9: "\x8d\x05\U000271a9", // 𧆩
+ 0x271aa: "\x8d\x05\U000271aa", // 𧆪
+ 0x271ab: "\x8d\x05\U000271ab", // 𧆫
+ 0x271ac: "\x8d\x05\U000271ac", // 𧆬
+ 0x271ad: "\x8d\x05\U000271ad", // 𧆭
+ 0x271ae: "\x8d\x05\U000271ae", // 𧆮
+ 0x271af: "\x8d\x05\U000271af", // 𧆯
+ 0x271b0: "\x8d\x05\U000271b0", // 𧆰
+ 0x271b1: "\x8d\x06\U000271b1", // 𧆱
+ 0x271b2: "\x8d\x06\U000271b2", // 𧆲
+ 0x271b3: "\x8d\x06\U000271b3", // 𧆳
+ 0x271b4: "\x8d\x06\U000271b4", // 𧆴
+ 0x271b5: "\x8d\x06\U000271b5", // 𧆵
+ 0x271b6: "\x8d\x06\U000271b6", // 𧆶
+ 0x271b7: "\x8d\x06\U000271b7", // 𧆷
+ 0x271b8: "\x8d\x06\U000271b8", // 𧆸
+ 0x271b9: "\x8d\x06\U000271b9", // 𧆹
+ 0x271ba: "\x8d\a\U000271ba", // 𧆺
+ 0x271bb: "\x8d\a\U000271bb", // 𧆻
+ 0x271bc: "\x8d\a\U000271bc", // 𧆼
+ 0x271bd: "\x8d\a\U000271bd", // 𧆽
+ 0x271be: "\x8d\a\U000271be", // 𧆾
+ 0x271bf: "\x8d\a\U000271bf", // 𧆿
+ 0x271c0: "\x8d\a\U000271c0", // 𧇀
+ 0x271c1: "\x8d\b\U000271c1", // 𧇁
+ 0x271c2: "\x8d\b\U000271c2", // 𧇂
+ 0x271c3: "\x8d\b\U000271c3", // 𧇃
+ 0x271c4: "\x8d\b\U000271c4", // 𧇄
+ 0x271c5: "\x8d\b\U000271c5", // 𧇅
+ 0x271c6: "\x8d\b\U000271c6", // 𧇆
+ 0x271c7: "\x8d\b\U000271c7", // 𧇇
+ 0x271c8: "\x8d\b\U000271c8", // 𧇈
+ 0x271c9: "\x8d\b\U000271c9", // 𧇉
+ 0x271ca: "\x8d\b\U000271ca", // 𧇊
+ 0x271cb: "\x8d\b\U000271cb", // 𧇋
+ 0x271cc: "\x8d\b\U000271cc", // 𧇌
+ 0x271cd: "\x8d\b\U000271cd", // 𧇍
+ 0x271ce: "\x8d\b\U000271ce", // 𧇎
+ 0x271cf: "\x8d\t\U000271cf", // 𧇏
+ 0x271d0: "\x8d\t\U000271d0", // 𧇐
+ 0x271d1: "\x8d\t\U000271d1", // 𧇑
+ 0x271d2: "\x8d\t\U000271d2", // 𧇒
+ 0x271d3: "\x8d\t\U000271d3", // 𧇓
+ 0x271d4: "\x8d\t\U000271d4", // 𧇔
+ 0x271d5: "\x8d\t\U000271d5", // 𧇕
+ 0x271d6: "\x8d\t\U000271d6", // 𧇖
+ 0x271d7: "\x8d\t\U000271d7", // 𧇗
+ 0x271d8: "\x8d\t\U000271d8", // 𧇘
+ 0x271d9: "\x8d\t\U000271d9", // 𧇙
+ 0x271da: "\x8d\t\U000271da", // 𧇚
+ 0x271db: "\x8d\t\U000271db", // 𧇛
+ 0x271dc: "\x8d\n\U000271dc", // 𧇜
+ 0x271dd: "\x8d\n\U000271dd", // 𧇝
+ 0x271de: "\x8d\n\U000271de", // 𧇞
+ 0x271df: "\x8d\n\U000271df", // 𧇟
+ 0x271e0: "\x8d\n\U000271e0", // 𧇠
+ 0x271e1: "\x8d\n\U000271e1", // 𧇡
+ 0x271e2: "\x8d\n\U000271e2", // 𧇢
+ 0x271e3: "\x8d\n\U000271e3", // 𧇣
+ 0x271e4: "\x8d\n\U000271e4", // 𧇤
+ 0x271e5: "\x8d\n\U000271e5", // 𧇥
+ 0x271e6: "\x8d\n\U000271e6", // 𧇦
+ 0x271e7: "\x8d\n\U000271e7", // 𧇧
+ 0x271e8: "\x8d\n\U000271e8", // 𧇨
+ 0x271e9: "\x8d\n\U000271e9", // 𧇩
+ 0x271ea: "\x8d\n\U000271ea", // 𧇪
+ 0x271eb: "\x8d\n\U000271eb", // 𧇫
+ 0x271ec: "\x8d\n\U000271ec", // 𧇬
+ 0x271ed: "\x8d\n\U000271ed", // 𧇭
+ 0x271ee: "\x8d\n\U000271ee", // 𧇮
+ 0x271ef: "\x8d\n\U000271ef", // 𧇯
+ 0x271f0: "\x8d\n\U000271f0", // 𧇰
+ 0x271f1: "\x8d\v\U000271f1", // 𧇱
+ 0x271f2: "\x8d\v\U000271f2", // 𧇲
+ 0x271f3: "\x8d\v\U000271f3", // 𧇳
+ 0x271f4: "\x8d\v\U000271f4", // 𧇴
+ 0x271f5: "\x8d\v\U000271f5", // 𧇵
+ 0x271f6: "\x8d\v\U000271f6", // 𧇶
+ 0x271f7: "\x8d\v\U000271f7", // 𧇷
+ 0x271f8: "\x8d\v\U000271f8", // 𧇸
+ 0x271f9: "\x8d\v\U000271f9", // 𧇹
+ 0x271fa: "\x8d\v\U000271fa", // 𧇺
+ 0x271fb: "\x8d\f\U000271fb", // 𧇻
+ 0x271fc: "\x8d\f\U000271fc", // 𧇼
+ 0x271fd: "\x8d\f\U000271fd", // 𧇽
+ 0x271fe: "\x8d\f\U000271fe", // 𧇾
+ 0x271ff: "\x8d\f\U000271ff", // 𧇿
+ 0x27200: "\x8d\f\U00027200", // 𧈀
+ 0x27201: "\x8d\f\U00027201", // 𧈁
+ 0x27202: "\x8d\r\U00027202", // 𧈂
+ 0x27203: "\x8d\f\U00027203", // 𧈃
+ 0x27204: "\x8d\f\U00027204", // 𧈄
+ 0x27205: "\x8d\r\U00027205", // 𧈅
+ 0x27206: "\x8d\r\U00027206", // 𧈆
+ 0x27207: "\x8d\r\U00027207", // 𧈇
+ 0x27208: "\x8d\r\U00027208", // 𧈈
+ 0x27209: "\x8d\r\U00027209", // 𧈉
+ 0x2720a: "\x8d\r\U0002720a", // 𧈊
+ 0x2720b: "\x8d\x0e\U0002720b", // 𧈋
+ 0x2720c: "\x8d\x0e\U0002720c", // 𧈌
+ 0x2720d: "\x8d\x0e\U0002720d", // 𧈍
+ 0x2720e: "\x8d\x0e\U0002720e", // 𧈎
+ 0x2720f: "\x8d\x0e\U0002720f", // 𧈏
+ 0x27210: "\xb8\v\U00027210", // 𧈐
+ 0x27211: "\x8d\x0f\U00027211", // 𧈑
+ 0x27212: "\x8d\x0f\U00027212", // 𧈒
+ 0x27213: "\x8d\x0f\U00027213", // 𧈓
+ 0x27214: "\x8d\x0f\U00027214", // 𧈔
+ 0x27215: "\x8d\x0f\U00027215", // 𧈕
+ 0x27216: "\x8d\x0f\U00027216", // 𧈖
+ 0x27217: "\x8d\x0f\U00027217", // 𧈗
+ 0x27218: "\x8d\x10\U00027218", // 𧈘
+ 0x27219: "\x8d\x10\U00027219", // 𧈙
+ 0x2721a: "\x8d\x11\U0002721a", // 𧈚
+ 0x2721b: "\x8d\x11\U0002721b", // 𧈛
+ 0x2721c: "\x8d\x14\U0002721c", // 𧈜
+ 0x2721d: "\x8e\x01\U0002721d", // 𧈝
+ 0x2721e: "\x8e\x01\U0002721e", // 𧈞
+ 0x2721f: "\x8e\x02\U0002721f", // 𧈟
+ 0x27220: "\x8e\x02\U00027220", // 𧈠
+ 0x27221: "\x8e\x02\U00027221", // 𧈡
+ 0x27222: "\x8e\x02\U00027222", // 𧈢
+ 0x27223: "\x8e\x02\U00027223", // 𧈣
+ 0x27224: "\x8e\x02\U00027224", // 𧈤
+ 0x27225: "\x8e\x02\U00027225", // 𧈥
+ 0x27226: "\x8e\x02\U00027226", // 𧈦
+ 0x27227: "\x8e\x02\U00027227", // 𧈧
+ 0x27228: "\x8e\x03\U00027228", // 𧈨
+ 0x27229: "\x8e\x03\U00027229", // 𧈩
+ 0x2722a: "\x8e\x03\U0002722a", // 𧈪
+ 0x2722b: "\x8e\x03\U0002722b", // 𧈫
+ 0x2722c: "\x8e\x03\U0002722c", // 𧈬
+ 0x2722d: "\x8e\x03\U0002722d", // 𧈭
+ 0x2722e: "\x8e\x03\U0002722e", // 𧈮
+ 0x2722f: "\x8e\x03\U0002722f", // 𧈯
+ 0x27230: "\x8e\x03\U00027230", // 𧈰
+ 0x27231: "\x8e\x03\U00027231", // 𧈱
+ 0x27232: "\x8e\x03\U00027232", // 𧈲
+ 0x27233: "\x8e\x03\U00027233", // 𧈳
+ 0x27234: "\x8e\x03\U00027234", // 𧈴
+ 0x27235: "\x8e\x03\U00027235", // 𧈵
+ 0x27236: "\x8e\x03\U00027236", // 𧈶
+ 0x27237: "\x8e\x03\U00027237", // 𧈷
+ 0x27238: "\x8e\x03\U00027238", // 𧈸
+ 0x27239: "\x8e\x03\U00027239", // 𧈹
+ 0x2723a: "\x8e\x03\U0002723a", // 𧈺
+ 0x2723b: "\x8e\x04\U0002723b", // 𧈻
+ 0x2723c: "\x8e\x04\U0002723c", // 𧈼
+ 0x2723d: "\x8e\x04\U0002723d", // 𧈽
+ 0x2723e: "\x8e\x04\U0002723e", // 𧈾
+ 0x2723f: "\x8e\x04\U0002723f", // 𧈿
+ 0x27240: "\x8e\x04\U00027240", // 𧉀
+ 0x27241: "\x8e\x04\U00027241", // 𧉁
+ 0x27242: "\x8e\x04\U00027242", // 𧉂
+ 0x27243: "\x8e\x04\U00027243", // 𧉃
+ 0x27244: "\x8e\x04\U00027244", // 𧉄
+ 0x27245: "\x8e\x04\U00027245", // 𧉅
+ 0x27246: "\x8e\x04\U00027246", // 𧉆
+ 0x27247: "\x8e\x04\U00027247", // 𧉇
+ 0x27248: "\x8e\x04\U00027248", // 𧉈
+ 0x27249: "\x8e\x04\U00027249", // 𧉉
+ 0x2724a: "\x8e\x04\U0002724a", // 𧉊
+ 0x2724b: "\x8e\x04\U0002724b", // 𧉋
+ 0x2724c: "\x8e\x04\U0002724c", // 𧉌
+ 0x2724d: "\x8e\x04\U0002724d", // 𧉍
+ 0x2724e: "\x8e\x04\U0002724e", // 𧉎
+ 0x2724f: "\x8e\x04\U0002724f", // 𧉏
+ 0x27250: "\x8e\x04\U00027250", // 𧉐
+ 0x27251: "\x8e\x04\U00027251", // 𧉑
+ 0x27252: "\x8e\x04\U00027252", // 𧉒
+ 0x27253: "\x8e\x04\U00027253", // 𧉓
+ 0x27254: "\x8e\x04\U00027254", // 𧉔
+ 0x27255: "\x8e\x04\U00027255", // 𧉕
+ 0x27256: "\x8e\x04\U00027256", // 𧉖
+ 0x27257: "\x8e\x04\U00027257", // 𧉗
+ 0x27258: "\x8e\x04\U00027258", // 𧉘
+ 0x27259: "\x8e\x04\U00027259", // 𧉙
+ 0x2725a: "\x8e\x04\U0002725a", // 𧉚
+ 0x2725b: "\x8e\x04\U0002725b", // 𧉛
+ 0x2725c: "\x8e\x04\U0002725c", // 𧉜
+ 0x2725d: "\x8e\x04\U0002725d", // 𧉝
+ 0x2725e: "\x8e\x05\U0002725e", // 𧉞
+ 0x2725f: "\x8e\x05\U0002725f", // 𧉟
+ 0x27260: "\x8e\x05\U00027260", // 𧉠
+ 0x27261: "\x8e\x05\U00027261", // 𧉡
+ 0x27262: "\x8e\x05\U00027262", // 𧉢
+ 0x27263: "\x8e\x05\U00027263", // 𧉣
+ 0x27264: "\x8e\x05\U00027264", // 𧉤
+ 0x27265: "\x8e\x05\U00027265", // 𧉥
+ 0x27266: "\x8e\x05\U00027266", // 𧉦
+ 0x27267: "\x8e\x05\U00027267", // 𧉧
+ 0x27268: "\x8e\x05\U00027268", // 𧉨
+ 0x27269: "\x8e\x05\U00027269", // 𧉩
+ 0x2726a: "\x8e\x05\U0002726a", // 𧉪
+ 0x2726b: "\x8e\x05\U0002726b", // 𧉫
+ 0x2726c: "\x8e\x05\U0002726c", // 𧉬
+ 0x2726d: "\x8e\x05\U0002726d", // 𧉭
+ 0x2726e: "\x8e\x05\U0002726e", // 𧉮
+ 0x2726f: "\x8e\x05\U0002726f", // 𧉯
+ 0x27270: "\x8e\x05\U00027270", // 𧉰
+ 0x27271: "\x8e\x05\U00027271", // 𧉱
+ 0x27272: "\x8e\x05\U00027272", // 𧉲
+ 0x27273: "\x8e\x05\U00027273", // 𧉳
+ 0x27274: "\x8e\x05\U00027274", // 𧉴
+ 0x27275: "\x8e\x05\U00027275", // 𧉵
+ 0x27276: "\x8e\x05\U00027276", // 𧉶
+ 0x27277: "\x8e\x05\U00027277", // 𧉷
+ 0x27278: "\x8e\x05\U00027278", // 𧉸
+ 0x27279: "\x8e\x05\U00027279", // 𧉹
+ 0x2727a: "\x8e\x05\U0002727a", // 𧉺
+ 0x2727b: "\x8e\x05\U0002727b", // 𧉻
+ 0x2727c: "\x8e\x05\U0002727c", // 𧉼
+ 0x2727d: "\x8e\x05\U0002727d", // 𧉽
+ 0x2727e: "\x8e\x05\U0002727e", // 𧉾
+ 0x2727f: "\x8e\x05\U0002727f", // 𧉿
+ 0x27280: "\x8e\x05\U00027280", // 𧊀
+ 0x27281: "\x8e\x05\U00027281", // 𧊁
+ 0x27282: "\x8e\x05\U00027282", // 𧊂
+ 0x27283: "\x8e\x05\U00027283", // 𧊃
+ 0x27284: "\x8e\x05\U00027284", // 𧊄
+ 0x27285: "\x8e\x05\U00027285", // 𧊅
+ 0x27286: "\x8e\x05\U00027286", // 𧊆
+ 0x27287: "\x8e\x05\U00027287", // 𧊇
+ 0x27288: "\x8e\x05\U00027288", // 𧊈
+ 0x27289: "\x8e\x05\U00027289", // 𧊉
+ 0x2728a: "\x8e\x05\U0002728a", // 𧊊
+ 0x2728b: "\x8e\x05\U0002728b", // 𧊋
+ 0x2728c: "\x8e\x05\U0002728c", // 𧊌
+ 0x2728d: "\x8e\x05\U0002728d", // 𧊍
+ 0x2728e: "\x8e\x05\U0002728e", // 𧊎
+ 0x2728f: "\x8e\x06\U0002728f", // 𧊏
+ 0x27290: "\x8e\x06\U00027290", // 𧊐
+ 0x27291: "\x8e\x06\U00027291", // 𧊑
+ 0x27292: "\x8e\x06\U00027292", // 𧊒
+ 0x27293: "\x8e\x06\U00027293", // 𧊓
+ 0x27294: "\x8e\x06\U00027294", // 𧊔
+ 0x27295: "\x8e\x06\U00027295", // 𧊕
+ 0x27296: "\x8e\x06\U00027296", // 𧊖
+ 0x27297: "\x8e\x06\U00027297", // 𧊗
+ 0x27298: "\x8e\x06\U00027298", // 𧊘
+ 0x27299: "\x8e\x06\U00027299", // 𧊙
+ 0x2729a: "\x8e\x06\U0002729a", // 𧊚
+ 0x2729b: "\x8e\x06\U0002729b", // 𧊛
+ 0x2729c: "\x8e\x06\U0002729c", // 𧊜
+ 0x2729d: "\x8e\x06\U0002729d", // 𧊝
+ 0x2729e: "\x8e\x06\U0002729e", // 𧊞
+ 0x2729f: "\x8e\x06\U0002729f", // 𧊟
+ 0x272a0: "\x8e\x06\U000272a0", // 𧊠
+ 0x272a1: "\x8e\x06\U000272a1", // 𧊡
+ 0x272a2: "\x8e\x06\U000272a2", // 𧊢
+ 0x272a3: "\x8e\x06\U000272a3", // 𧊣
+ 0x272a4: "\x8e\x06\U000272a4", // 𧊤
+ 0x272a5: "\x8e\x06\U000272a5", // 𧊥
+ 0x272a6: "\x8e\x06\U000272a6", // 𧊦
+ 0x272a7: "\x8e\x06\U000272a7", // 𧊧
+ 0x272a8: "\x8e\x06\U000272a8", // 𧊨
+ 0x272a9: "\x8e\x06\U000272a9", // 𧊩
+ 0x272aa: "\x8e\x06\U000272aa", // 𧊪
+ 0x272ab: "\x8e\a\U000272ab", // 𧊫
+ 0x272ac: "\x8e\x06\U000272ac", // 𧊬
+ 0x272ad: "\x8e\x06\U000272ad", // 𧊭
+ 0x272ae: "\x8e\a\U000272ae", // 𧊮
+ 0x272af: "\x8e\x06\U000272af", // 𧊯
+ 0x272b0: "\x8e\x06\U000272b0", // 𧊰
+ 0x272b1: "\x8e\x06\U000272b1", // 𧊱
+ 0x272b2: "\x8e\x06\U000272b2", // 𧊲
+ 0x272b3: "\x8e\x06\U000272b3", // 𧊳
+ 0x272b4: "\x8e\x06\U000272b4", // 𧊴
+ 0x272b5: "\x8e\x06\U000272b5", // 𧊵
+ 0x272b6: "\x8e\x06\U000272b6", // 𧊶
+ 0x272b7: "\x8e\x06\U000272b7", // 𧊷
+ 0x272b8: "\x8e\x06\U000272b8", // 𧊸
+ 0x272b9: "\x8e\x06\U000272b9", // 𧊹
+ 0x272ba: "\x8e\x06\U000272ba", // 𧊺
+ 0x272bb: "\x8e\x06\U000272bb", // 𧊻
+ 0x272bc: "\x8e\x06\U000272bc", // 𧊼
+ 0x272bd: "\x8e\x06\U000272bd", // 𧊽
+ 0x272be: "\x8e\x06\U000272be", // 𧊾
+ 0x272bf: "\x8e\x06\U000272bf", // 𧊿
+ 0x272c0: "\x8e\x06\U000272c0", // 𧋀
+ 0x272c1: "\x8e\x06\U000272c1", // 𧋁
+ 0x272c2: "\x8e\x06\U000272c2", // 𧋂
+ 0x272c3: "\x8e\x06\U000272c3", // 𧋃
+ 0x272c4: "\x8e\x06\U000272c4", // 𧋄
+ 0x272c5: "\x8e\x06\U000272c5", // 𧋅
+ 0x272c6: "\x8e\x06\U000272c6", // 𧋆
+ 0x272c7: "\x8e\x06\U000272c7", // 𧋇
+ 0x272c8: "\x8e\a\U000272c8", // 𧋈
+ 0x272c9: "\x8e\a\U000272c9", // 𧋉
+ 0x272ca: "\x8e\a\U000272ca", // 𧋊
+ 0x272cb: "\x8e\a\U000272cb", // 𧋋
+ 0x272cc: "\x8e\a\U000272cc", // 𧋌
+ 0x272cd: "\x8e\a\U000272cd", // 𧋍
+ 0x272ce: "\x8e\a\U000272ce", // 𧋎
+ 0x272cf: "\x8e\a\U000272cf", // 𧋏
+ 0x272d0: "\x8e\a\U000272d0", // 𧋐
+ 0x272d1: "\x8e\a\U000272d1", // 𧋑
+ 0x272d2: "\x8e\a\U000272d2", // 𧋒
+ 0x272d3: "\x8e\a\U000272d3", // 𧋓
+ 0x272d4: "\x8e\a\U000272d4", // 𧋔
+ 0x272d5: "\x8e\a\U000272d5", // 𧋕
+ 0x272d6: "\x8e\a\U000272d6", // 𧋖
+ 0x272d7: "\x8e\a\U000272d7", // 𧋗
+ 0x272d8: "\x8e\a\U000272d8", // 𧋘
+ 0x272d9: "\x8e\a\U000272d9", // 𧋙
+ 0x272da: "\x8e\a\U000272da", // 𧋚
+ 0x272db: "\x8e\a\U000272db", // 𧋛
+ 0x272dc: "\x8e\a\U000272dc", // 𧋜
+ 0x272dd: "\x8e\a\U000272dd", // 𧋝
+ 0x272de: "\x8e\b\U000272de", // 𧋞
+ 0x272df: "\x8e\a\U000272df", // 𧋟
+ 0x272e0: "\x8e\a\U000272e0", // 𧋠
+ 0x272e1: "\x8e\a\U000272e1", // 𧋡
+ 0x272e2: "\x8e\a\U000272e2", // 𧋢
+ 0x272e3: "\x8e\a\U000272e3", // 𧋣
+ 0x272e4: "\x8e\a\U000272e4", // 𧋤
+ 0x272e5: "\x8e\a\U000272e5", // 𧋥
+ 0x272e6: "\x8e\a\U000272e6", // 𧋦
+ 0x272e7: "\x8e\a\U000272e7", // 𧋧
+ 0x272e8: "\x8e\a\U000272e8", // 𧋨
+ 0x272e9: "\x8e\a\U000272e9", // 𧋩
+ 0x272ea: "\x8e\a\U000272ea", // 𧋪
+ 0x272eb: "\x8e\a\U000272eb", // 𧋫
+ 0x272ec: "\x8e\a\U000272ec", // 𧋬
+ 0x272ed: "\x8e\a\U000272ed", // 𧋭
+ 0x272ee: "\x8e\a\U000272ee", // 𧋮
+ 0x272ef: "\x8e\a\U000272ef", // 𧋯
+ 0x272f0: "\x8e\a\U000272f0", // 𧋰
+ 0x272f1: "\x8e\a\U000272f1", // 𧋱
+ 0x272f2: "\x8e\a\U000272f2", // 𧋲
+ 0x272f3: "\x8e\a\U000272f3", // 𧋳
+ 0x272f4: "\x8e\a\U000272f4", // 𧋴
+ 0x272f5: "\x8e\a\U000272f5", // 𧋵
+ 0x272f6: "\x8e\a\U000272f6", // 𧋶
+ 0x272f7: "\x8e\a\U000272f7", // 𧋷
+ 0x272f8: "\x8e\a\U000272f8", // 𧋸
+ 0x272f9: "\x8e\a\U000272f9", // 𧋹
+ 0x272fa: "\x8e\a\U000272fa", // 𧋺
+ 0x272fb: "\x8e\a\U000272fb", // 𧋻
+ 0x272fc: "\x8e\a\U000272fc", // 𧋼
+ 0x272fd: "\x8e\a\U000272fd", // 𧋽
+ 0x272fe: "\x8e\a\U000272fe", // 𧋾
+ 0x272ff: "\x8e\a\U000272ff", // 𧋿
+ 0x27300: "\x8e\a\U00027300", // 𧌀
+ 0x27301: "\x8e\a\U00027301", // 𧌁
+ 0x27302: "\x8e\a\U00027302", // 𧌂
+ 0x27303: "\x8e\b\U00027303", // 𧌃
+ 0x27304: "\x8e\b\U00027304", // 𧌄
+ 0x27305: "\x8e\b\U00027305", // 𧌅
+ 0x27306: "\x8e\b\U00027306", // 𧌆
+ 0x27307: "\x8e\b\U00027307", // 𧌇
+ 0x27308: "\x8e\b\U00027308", // 𧌈
+ 0x27309: "\x8e\b\U00027309", // 𧌉
+ 0x2730a: "\x8e\b\U0002730a", // 𧌊
+ 0x2730b: "\x8e\b\U0002730b", // 𧌋
+ 0x2730c: "\x8e\b\U0002730c", // 𧌌
+ 0x2730d: "\x8e\b\U0002730d", // 𧌍
+ 0x2730e: "\x8e\b\U0002730e", // 𧌎
+ 0x2730f: "\x8e\b\U0002730f", // 𧌏
+ 0x27310: "\x8e\b\U00027310", // 𧌐
+ 0x27311: "\x8e\b\U00027311", // 𧌑
+ 0x27312: "\x8e\b\U00027312", // 𧌒
+ 0x27313: "\x8e\b\U00027313", // 𧌓
+ 0x27314: "\x8e\b\U00027314", // 𧌔
+ 0x27315: "\x8e\b\U00027315", // 𧌕
+ 0x27316: "\x8e\b\U00027316", // 𧌖
+ 0x27317: "\x8e\b\U00027317", // 𧌗
+ 0x27318: "\x8e\b\U00027318", // 𧌘
+ 0x27319: "\x8e\b\U00027319", // 𧌙
+ 0x2731a: "\x8e\b\U0002731a", // 𧌚
+ 0x2731b: "\x8e\b\U0002731b", // 𧌛
+ 0x2731c: "\x8e\b\U0002731c", // 𧌜
+ 0x2731d: "\x8e\b\U0002731d", // 𧌝
+ 0x2731e: "\x8e\a\U0002731e", // 𧌞
+ 0x2731f: "\x8e\b\U0002731f", // 𧌟
+ 0x27320: "\x8e\b\U00027320", // 𧌠
+ 0x27321: "\x8e\b\U00027321", // 𧌡
+ 0x27322: "\x8e\b\U00027322", // 𧌢
+ 0x27323: "\x8e\b\U00027323", // 𧌣
+ 0x27324: "\x8e\b\U00027324", // 𧌤
+ 0x27325: "\x8e\b\U00027325", // 𧌥
+ 0x27326: "\x8e\b\U00027326", // 𧌦
+ 0x27327: "\x8e\b\U00027327", // 𧌧
+ 0x27328: "\x8e\b\U00027328", // 𧌨
+ 0x27329: "\x8e\b\U00027329", // 𧌩
+ 0x2732a: "\x8e\b\U0002732a", // 𧌪
+ 0x2732b: "\x8e\b\U0002732b", // 𧌫
+ 0x2732c: "\x8e\b\U0002732c", // 𧌬
+ 0x2732d: "\x8e\b\U0002732d", // 𧌭
+ 0x2732e: "\x8e\b\U0002732e", // 𧌮
+ 0x2732f: "\x8e\b\U0002732f", // 𧌯
+ 0x27330: "\x8e\t\U00027330", // 𧌰
+ 0x27331: "\x8e\b\U00027331", // 𧌱
+ 0x27332: "\x8e\b\U00027332", // 𧌲
+ 0x27333: "\x8e\b\U00027333", // 𧌳
+ 0x27334: "\x8e\b\U00027334", // 𧌴
+ 0x27335: "\x8e\b\U00027335", // 𧌵
+ 0x27336: "\x8e\b\U00027336", // 𧌶
+ 0x27337: "\x8e\b\U00027337", // 𧌷
+ 0x27338: "\x8e\b\U00027338", // 𧌸
+ 0x27339: "\x8e\b\U00027339", // 𧌹
+ 0x2733a: "\x8e\b\U0002733a", // 𧌺
+ 0x2733b: "\x8e\b\U0002733b", // 𧌻
+ 0x2733c: "\x8e\b\U0002733c", // 𧌼
+ 0x2733d: "\x8e\b\U0002733d", // 𧌽
+ 0x2733e: "\x8e\b\U0002733e", // 𧌾
+ 0x2733f: "\x8e\b\U0002733f", // 𧌿
+ 0x27340: "\x8e\b\U00027340", // 𧍀
+ 0x27341: "\x8e\b\U00027341", // 𧍁
+ 0x27342: "\x8e\b\U00027342", // 𧍂
+ 0x27343: "\x8e\b\U00027343", // 𧍃
+ 0x27344: "\x8e\b\U00027344", // 𧍄
+ 0x27345: "\x8e\b\U00027345", // 𧍅
+ 0x27346: "\x8e\b\U00027346", // 𧍆
+ 0x27347: "\x8e\b\U00027347", // 𧍇
+ 0x27348: "\x8e\b\U00027348", // 𧍈
+ 0x27349: "\x8e\b\U00027349", // 𧍉
+ 0x2734a: "\x8e\b\U0002734a", // 𧍊
+ 0x2734b: "\x8e\b\U0002734b", // 𧍋
+ 0x2734c: "\x8e\b\U0002734c", // 𧍌
+ 0x2734d: "\x8e\b\U0002734d", // 𧍍
+ 0x2734e: "\x8e\b\U0002734e", // 𧍎
+ 0x2734f: "\x8e\b\U0002734f", // 𧍏
+ 0x27350: "\x8e\b\U00027350", // 𧍐
+ 0x27351: "\x8e\b\U00027351", // 𧍑
+ 0x27352: "\x8e\t\U00027352", // 𧍒
+ 0x27353: "\x8e\t\U00027353", // 𧍓
+ 0x27354: "\x8e\t\U00027354", // 𧍔
+ 0x27355: "\x8e\t\U00027355", // 𧍕
+ 0x27356: "\x8e\t\U00027356", // 𧍖
+ 0x27357: "\x8e\t\U00027357", // 𧍗
+ 0x27358: "\x8e\t\U00027358", // 𧍘
+ 0x27359: "\x8e\t\U00027359", // 𧍙
+ 0x2735a: "\x8e\t\U0002735a", // 𧍚
+ 0x2735b: "\x8e\t\U0002735b", // 𧍛
+ 0x2735c: "\x8e\t\U0002735c", // 𧍜
+ 0x2735d: "\x8e\t\U0002735d", // 𧍝
+ 0x2735e: "\x8e\t\U0002735e", // 𧍞
+ 0x2735f: "\x8e\t\U0002735f", // 𧍟
+ 0x27360: "\x8e\t\U00027360", // 𧍠
+ 0x27361: "\x8e\t\U00027361", // 𧍡
+ 0x27362: "\x8e\t\U00027362", // 𧍢
+ 0x27363: "\x8e\t\U00027363", // 𧍣
+ 0x27364: "\x8e\t\U00027364", // 𧍤
+ 0x27365: "\x8e\t\U00027365", // 𧍥
+ 0x27366: "\x8e\t\U00027366", // 𧍦
+ 0x27367: "\x8e\t\U00027367", // 𧍧
+ 0x27368: "\x8e\t\U00027368", // 𧍨
+ 0x27369: "\x8e\t\U00027369", // 𧍩
+ 0x2736a: "\x8e\t\U0002736a", // 𧍪
+ 0x2736b: "\x8e\t\U0002736b", // 𧍫
+ 0x2736c: "\x8e\t\U0002736c", // 𧍬
+ 0x2736d: "\x8e\t\U0002736d", // 𧍭
+ 0x2736e: "\x8e\t\U0002736e", // 𧍮
+ 0x2736f: "\x8e\t\U0002736f", // 𧍯
+ 0x27370: "\x8e\t\U00027370", // 𧍰
+ 0x27371: "\x8e\t\U00027371", // 𧍱
+ 0x27372: "\x8e\t\U00027372", // 𧍲
+ 0x27373: "\x8e\t\U00027373", // 𧍳
+ 0x27374: "\x8e\t\U00027374", // 𧍴
+ 0x27375: "\x8e\t\U00027375", // 𧍵
+ 0x27376: "\x8e\t\U00027376", // 𧍶
+ 0x27377: "\x8e\t\U00027377", // 𧍷
+ 0x27378: "\x8e\t\U00027378", // 𧍸
+ 0x27379: "\x8e\t\U00027379", // 𧍹
+ 0x2737a: "\x8e\t\U0002737a", // 𧍺
+ 0x2737b: "\x8e\t\U0002737b", // 𧍻
+ 0x2737c: "\x8e\t\U0002737c", // 𧍼
+ 0x2737d: "\x8e\t\U0002737d", // 𧍽
+ 0x2737e: "\x8e\t\U0002737e", // 𧍾
+ 0x2737f: "\x8e\t\U0002737f", // 𧍿
+ 0x27380: "\x8e\t\U00027380", // 𧎀
+ 0x27381: "\x8e\t\U00027381", // 𧎁
+ 0x27382: "\x8e\t\U00027382", // 𧎂
+ 0x27383: "\x8e\t\U00027383", // 𧎃
+ 0x27384: "\x8e\t\U00027384", // 𧎄
+ 0x27385: "\x8e\t\U00027385", // 𧎅
+ 0x27386: "\x8e\t\U00027386", // 𧎆
+ 0x27387: "\x8e\t\U00027387", // 𧎇
+ 0x27388: "\x8e\t\U00027388", // 𧎈
+ 0x27389: "\x8e\t\U00027389", // 𧎉
+ 0x2738a: "\x8e\t\U0002738a", // 𧎊
+ 0x2738b: "\x8e\t\U0002738b", // 𧎋
+ 0x2738c: "\x8e\t\U0002738c", // 𧎌
+ 0x2738d: "\x8e\t\U0002738d", // 𧎍
+ 0x2738e: "\x8e\t\U0002738e", // 𧎎
+ 0x2738f: "\x8e\t\U0002738f", // 𧎏
+ 0x27390: "\x8e\t\U00027390", // 𧎐
+ 0x27391: "\x8e\t\U00027391", // 𧎑
+ 0x27392: "\x8e\t\U00027392", // 𧎒
+ 0x27393: "\x8e\t\U00027393", // 𧎓
+ 0x27394: "\x8e\t\U00027394", // 𧎔
+ 0x27395: "\x8e\t\U00027395", // 𧎕
+ 0x27396: "\x8e\t\U00027396", // 𧎖
+ 0x27397: "\x8e\t\U00027397", // 𧎗
+ 0x27398: "\x8e\t\U00027398", // 𧎘
+ 0x27399: "\x8e\t\U00027399", // 𧎙
+ 0x2739a: "\x8e\t\U0002739a", // 𧎚
+ 0x2739b: "\x8e\t\U0002739b", // 𧎛
+ 0x2739c: "\x8e\t\U0002739c", // 𧎜
+ 0x2739d: "\x8e\t\U0002739d", // 𧎝
+ 0x2739e: "\x8e\t\U0002739e", // 𧎞
+ 0x2739f: "\x8e\t\U0002739f", // 𧎟
+ 0x273a0: "\x8e\t\U000273a0", // 𧎠
+ 0x273a1: "\x8e\n\U000273a1", // 𧎡
+ 0x273a2: "\x8e\n\U000273a2", // 𧎢
+ 0x273a3: "\x8e\n\U000273a3", // 𧎣
+ 0x273a4: "\x8e\n\U000273a4", // 𧎤
+ 0x273a5: "\x8e\n\U000273a5", // 𧎥
+ 0x273a6: "\x8e\n\U000273a6", // 𧎦
+ 0x273a7: "\x8e\n\U000273a7", // 𧎧
+ 0x273a8: "\x8e\n\U000273a8", // 𧎨
+ 0x273a9: "\x8e\n\U000273a9", // 𧎩
+ 0x273aa: "\x8e\n\U000273aa", // 𧎪
+ 0x273ab: "\x8e\n\U000273ab", // 𧎫
+ 0x273ac: "\x8e\n\U000273ac", // 𧎬
+ 0x273ad: "\x8e\n\U000273ad", // 𧎭
+ 0x273ae: "\x8e\n\U000273ae", // 𧎮
+ 0x273af: "\x8e\n\U000273af", // 𧎯
+ 0x273b0: "\x8e\n\U000273b0", // 𧎰
+ 0x273b1: "\x8e\n\U000273b1", // 𧎱
+ 0x273b2: "\x8e\n\U000273b2", // 𧎲
+ 0x273b3: "\x8e\n\U000273b3", // 𧎳
+ 0x273b4: "\x8e\n\U000273b4", // 𧎴
+ 0x273b5: "\x8e\n\U000273b5", // 𧎵
+ 0x273b6: "\x8e\n\U000273b6", // 𧎶
+ 0x273b7: "\x8e\n\U000273b7", // 𧎷
+ 0x273b8: "\x8e\n\U000273b8", // 𧎸
+ 0x273b9: "\x8e\n\U000273b9", // 𧎹
+ 0x273ba: "\x8e\n\U000273ba", // 𧎺
+ 0x273bb: "\x8e\n\U000273bb", // 𧎻
+ 0x273bc: "\x8e\n\U000273bc", // 𧎼
+ 0x273bd: "\x8e\n\U000273bd", // 𧎽
+ 0x273be: "\x8e\n\U000273be", // 𧎾
+ 0x273bf: "\x8e\n\U000273bf", // 𧎿
+ 0x273c0: "\x8e\n\U000273c0", // 𧏀
+ 0x273c1: "\x8e\n\U000273c1", // 𧏁
+ 0x273c2: "\x8e\n\U000273c2", // 𧏂
+ 0x273c3: "\x8e\n\U000273c3", // 𧏃
+ 0x273c4: "\x8e\n\U000273c4", // 𧏄
+ 0x273c5: "\x8e\n\U000273c5", // 𧏅
+ 0x273c6: "\x8e\n\U000273c6", // 𧏆
+ 0x273c7: "\x8e\t\U000273c7", // 𧏇
+ 0x273c8: "\x8e\n\U000273c8", // 𧏈
+ 0x273c9: "\x8e\n\U000273c9", // 𧏉
+ 0x273ca: "\x8e\n\U000273ca", // 𧏊
+ 0x273cb: "\x8e\n\U000273cb", // 𧏋
+ 0x273cc: "\x8e\n\U000273cc", // 𧏌
+ 0x273cd: "\x8e\n\U000273cd", // 𧏍
+ 0x273ce: "\x8e\n\U000273ce", // 𧏎
+ 0x273cf: "\x8e\n\U000273cf", // 𧏏
+ 0x273d0: "\x8e\n\U000273d0", // 𧏐
+ 0x273d1: "\x8e\n\U000273d1", // 𧏑
+ 0x273d2: "\x8e\n\U000273d2", // 𧏒
+ 0x273d3: "\x8e\n\U000273d3", // 𧏓
+ 0x273d4: "\x8e\n\U000273d4", // 𧏔
+ 0x273d5: "\x8e\n\U000273d5", // 𧏕
+ 0x273d6: "\x8e\n\U000273d6", // 𧏖
+ 0x273d7: "\x8e\n\U000273d7", // 𧏗
+ 0x273d8: "\x8e\n\U000273d8", // 𧏘
+ 0x273d9: "\x8e\n\U000273d9", // 𧏙
+ 0x273da: "\x8e\n\U000273da", // 𧏚
+ 0x273db: "\x8e\n\U000273db", // 𧏛
+ 0x273dc: "\x8e\n\U000273dc", // 𧏜
+ 0x273dd: "\x8e\n\U000273dd", // 𧏝
+ 0x273de: "\x8e\n\U000273de", // 𧏞
+ 0x273df: "\x8e\n\U000273df", // 𧏟
+ 0x273e0: "\x8e\n\U000273e0", // 𧏠
+ 0x273e1: "\x8e\n\U000273e1", // 𧏡
+ 0x273e2: "\x8e\n\U000273e2", // 𧏢
+ 0x273e3: "\x8e\n\U000273e3", // 𧏣
+ 0x273e4: "\x8e\n\U000273e4", // 𧏤
+ 0x273e5: "\x8e\n\U000273e5", // 𧏥
+ 0x273e6: "\x8e\n\U000273e6", // 𧏦
+ 0x273e7: "\x8e\n\U000273e7", // 𧏧
+ 0x273e8: "\x8e\n\U000273e8", // 𧏨
+ 0x273e9: "\x8e\n\U000273e9", // 𧏩
+ 0x273ea: "\x8e\n\U000273ea", // 𧏪
+ 0x273eb: "\x8e\n\U000273eb", // 𧏫
+ 0x273ec: "\x8e\n\U000273ec", // 𧏬
+ 0x273ed: "\x8e\n\U000273ed", // 𧏭
+ 0x273ee: "\x8e\n\U000273ee", // 𧏮
+ 0x273ef: "\x8e\n\U000273ef", // 𧏯
+ 0x273f0: "\x8e\n\U000273f0", // 𧏰
+ 0x273f1: "\x8e\n\U000273f1", // 𧏱
+ 0x273f2: "\x8e\n\U000273f2", // 𧏲
+ 0x273f3: "\x8e\n\U000273f3", // 𧏳
+ 0x273f4: "\x8e\n\U000273f4", // 𧏴
+ 0x273f5: "\x8e\n\U000273f5", // 𧏵
+ 0x273f6: "\x8e\n\U000273f6", // 𧏶
+ 0x273f7: "\x8e\n\U000273f7", // 𧏷
+ 0x273f8: "\x8e\v\U000273f8", // 𧏸
+ 0x273f9: "\x8e\v\U000273f9", // 𧏹
+ 0x273fa: "\x8e\v\U000273fa", // 𧏺
+ 0x273fb: "\x8e\v\U000273fb", // 𧏻
+ 0x273fc: "\x8e\v\U000273fc", // 𧏼
+ 0x273fd: "\x8e\v\U000273fd", // 𧏽
+ 0x273fe: "\x8e\v\U000273fe", // 𧏾
+ 0x273ff: "\x8e\v\U000273ff", // 𧏿
+ 0x27400: "\x8e\v\U00027400", // 𧐀
+ 0x27401: "\x8e\v\U00027401", // 𧐁
+ 0x27402: "\x8e\v\U00027402", // 𧐂
+ 0x27403: "\x8e\v\U00027403", // 𧐃
+ 0x27404: "\x8e\v\U00027404", // 𧐄
+ 0x27405: "\x8e\v\U00027405", // 𧐅
+ 0x27406: "\x8e\v\U00027406", // 𧐆
+ 0x27407: "\x8e\v\U00027407", // 𧐇
+ 0x27408: "\x8e\v\U00027408", // 𧐈
+ 0x27409: "\x8e\v\U00027409", // 𧐉
+ 0x2740a: "\x8e\v\U0002740a", // 𧐊
+ 0x2740b: "\x8e\v\U0002740b", // 𧐋
+ 0x2740c: "\x8e\v\U0002740c", // 𧐌
+ 0x2740d: "\x8e\v\U0002740d", // 𧐍
+ 0x2740e: "\x8e\v\U0002740e", // 𧐎
+ 0x2740f: "\x8e\v\U0002740f", // 𧐏
+ 0x27410: "\x8e\v\U00027410", // 𧐐
+ 0x27411: "\x8e\v\U00027411", // 𧐑
+ 0x27412: "\x8e\v\U00027412", // 𧐒
+ 0x27413: "\x8e\v\U00027413", // 𧐓
+ 0x27414: "\x8e\v\U00027414", // 𧐔
+ 0x27415: "\x8e\v\U00027415", // 𧐕
+ 0x27416: "\x8e\v\U00027416", // 𧐖
+ 0x27417: "\x8e\v\U00027417", // 𧐗
+ 0x27418: "\x8e\v\U00027418", // 𧐘
+ 0x27419: "\x8e\v\U00027419", // 𧐙
+ 0x2741a: "\x8e\v\U0002741a", // 𧐚
+ 0x2741b: "\x8e\v\U0002741b", // 𧐛
+ 0x2741c: "\x8e\v\U0002741c", // 𧐜
+ 0x2741d: "\x8e\v\U0002741d", // 𧐝
+ 0x2741e: "\x8e\v\U0002741e", // 𧐞
+ 0x2741f: "\x8e\v\U0002741f", // 𧐟
+ 0x27420: "\x8e\v\U00027420", // 𧐠
+ 0x27421: "\x8e\v\U00027421", // 𧐡
+ 0x27422: "\x8e\v\U00027422", // 𧐢
+ 0x27423: "\x8e\v\U00027423", // 𧐣
+ 0x27424: "\x8e\v\U00027424", // 𧐤
+ 0x27425: "\x8e\v\U00027425", // 𧐥
+ 0x27426: "\x8e\v\U00027426", // 𧐦
+ 0x27427: "\x8e\v\U00027427", // 𧐧
+ 0x27428: "\x8e\v\U00027428", // 𧐨
+ 0x27429: "\x8e\v\U00027429", // 𧐩
+ 0x2742a: "\x8e\v\U0002742a", // 𧐪
+ 0x2742b: "\x8e\v\U0002742b", // 𧐫
+ 0x2742c: "\x8e\v\U0002742c", // 𧐬
+ 0x2742d: "\x8e\v\U0002742d", // 𧐭
+ 0x2742e: "\x8e\v\U0002742e", // 𧐮
+ 0x2742f: "\x8e\v\U0002742f", // 𧐯
+ 0x27430: "z\r\U00027430", // 𧐰
+ 0x27431: "\x8e\v\U00027431", // 𧐱
+ 0x27432: "\x8e\v\U00027432", // 𧐲
+ 0x27433: "\x8e\v\U00027433", // 𧐳
+ 0x27434: "\x8e\v\U00027434", // 𧐴
+ 0x27435: "\x8e\v\U00027435", // 𧐵
+ 0x27436: "\x8e\v\U00027436", // 𧐶
+ 0x27437: "\x8e\v\U00027437", // 𧐷
+ 0x27438: "\x8e\v\U00027438", // 𧐸
+ 0x27439: "\x8e\v\U00027439", // 𧐹
+ 0x2743a: "\x8e\v\U0002743a", // 𧐺
+ 0x2743b: "\x8e\v\U0002743b", // 𧐻
+ 0x2743c: "\x8e\v\U0002743c", // 𧐼
+ 0x2743d: "\x8e\v\U0002743d", // 𧐽
+ 0x2743e: "\x8e\v\U0002743e", // 𧐾
+ 0x2743f: "\x8e\v\U0002743f", // 𧐿
+ 0x27440: "\x8e\v\U00027440", // 𧑀
+ 0x27441: "\x8e\v\U00027441", // 𧑁
+ 0x27442: "\x8e\v\U00027442", // 𧑂
+ 0x27443: "\x8e\v\U00027443", // 𧑃
+ 0x27444: "\x8e\f\U00027444", // 𧑄
+ 0x27445: "\x8e\f\U00027445", // 𧑅
+ 0x27446: "\x8e\f\U00027446", // 𧑆
+ 0x27447: "\x8e\f\U00027447", // 𧑇
+ 0x27448: "\x8e\f\U00027448", // 𧑈
+ 0x27449: "\x8e\f\U00027449", // 𧑉
+ 0x2744a: "\x8e\f\U0002744a", // 𧑊
+ 0x2744b: "\x8e\f\U0002744b", // 𧑋
+ 0x2744c: "\x8e\f\U0002744c", // 𧑌
+ 0x2744d: "\x8e\f\U0002744d", // 𧑍
+ 0x2744e: "\x8e\f\U0002744e", // 𧑎
+ 0x2744f: "\x8e\f\U0002744f", // 𧑏
+ 0x27450: "\x8e\f\U00027450", // 𧑐
+ 0x27451: "\x8e\f\U00027451", // 𧑑
+ 0x27452: "\x8e\f\U00027452", // 𧑒
+ 0x27453: "\x8e\f\U00027453", // 𧑓
+ 0x27454: "\x8e\f\U00027454", // 𧑔
+ 0x27455: "\x8e\f\U00027455", // 𧑕
+ 0x27456: "\x8e\f\U00027456", // 𧑖
+ 0x27457: "\x8e\f\U00027457", // 𧑗
+ 0x27458: "\x8e\f\U00027458", // 𧑘
+ 0x27459: "\x8e\f\U00027459", // 𧑙
+ 0x2745a: "\x8e\f\U0002745a", // 𧑚
+ 0x2745b: "\x8e\f\U0002745b", // 𧑛
+ 0x2745c: "\x8e\f\U0002745c", // 𧑜
+ 0x2745d: "\x8e\f\U0002745d", // 𧑝
+ 0x2745e: "\x8e\f\U0002745e", // 𧑞
+ 0x2745f: "\x8e\f\U0002745f", // 𧑟
+ 0x27460: "\x8e\f\U00027460", // 𧑠
+ 0x27461: "\x8e\f\U00027461", // 𧑡
+ 0x27462: "\x8e\f\U00027462", // 𧑢
+ 0x27463: "\x8e\f\U00027463", // 𧑣
+ 0x27464: "\x8e\f\U00027464", // 𧑤
+ 0x27465: "\x8e\f\U00027465", // 𧑥
+ 0x27466: "\x8e\f\U00027466", // 𧑦
+ 0x27467: "\x8e\f\U00027467", // 𧑧
+ 0x27468: "\x8e\f\U00027468", // 𧑨
+ 0x27469: "\x8e\f\U00027469", // 𧑩
+ 0x2746a: "\x8e\f\U0002746a", // 𧑪
+ 0x2746b: "\x8e\f\U0002746b", // 𧑫
+ 0x2746c: "\x8e\f\U0002746c", // 𧑬
+ 0x2746d: "\x8e\f\U0002746d", // 𧑭
+ 0x2746e: "\x8e\f\U0002746e", // 𧑮
+ 0x2746f: "\x8e\f\U0002746f", // 𧑯
+ 0x27470: "\x8e\f\U00027470", // 𧑰
+ 0x27471: "\x8e\f\U00027471", // 𧑱
+ 0x27472: "\x8e\f\U00027472", // 𧑲
+ 0x27473: "\x8e\f\U00027473", // 𧑳
+ 0x27474: "\x8e\f\U00027474", // 𧑴
+ 0x27475: "\x8e\f\U00027475", // 𧑵
+ 0x27476: "\x8e\f\U00027476", // 𧑶
+ 0x27477: "\x8e\f\U00027477", // 𧑷
+ 0x27478: "\x8e\f\U00027478", // 𧑸
+ 0x27479: "\x8e\f\U00027479", // 𧑹
+ 0x2747a: "\x8e\f\U0002747a", // 𧑺
+ 0x2747b: "\x8e\f\U0002747b", // 𧑻
+ 0x2747c: "\x8e\f\U0002747c", // 𧑼
+ 0x2747d: "\x8e\f\U0002747d", // 𧑽
+ 0x2747e: "\x8e\f\U0002747e", // 𧑾
+ 0x2747f: "\x8e\f\U0002747f", // 𧑿
+ 0x27480: "\x8e\f\U00027480", // 𧒀
+ 0x27481: "\x8e\f\U00027481", // 𧒁
+ 0x27482: "\x8e\f\U00027482", // 𧒂
+ 0x27483: "\x8e\f\U00027483", // 𧒃
+ 0x27484: "\x8e\f\U00027484", // 𧒄
+ 0x27485: "\x8e\f\U00027485", // 𧒅
+ 0x27486: "\x8e\f\U00027486", // 𧒆
+ 0x27487: "\x8e\f\U00027487", // 𧒇
+ 0x27488: "\x8e\f\U00027488", // 𧒈
+ 0x27489: "\x8e\f\U00027489", // 𧒉
+ 0x2748a: "\x8e\f\U0002748a", // 𧒊
+ 0x2748b: "\x8e\f\U0002748b", // 𧒋
+ 0x2748c: "\x8e\f\U0002748c", // 𧒌
+ 0x2748d: "\x8e\f\U0002748d", // 𧒍
+ 0x2748e: "\x8e\r\U0002748e", // 𧒎
+ 0x2748f: "\x8e\r\U0002748f", // 𧒏
+ 0x27490: "\x8e\r\U00027490", // 𧒐
+ 0x27491: "\x8e\r\U00027491", // 𧒑
+ 0x27492: "\x8e\r\U00027492", // 𧒒
+ 0x27493: "\x8e\r\U00027493", // 𧒓
+ 0x27494: "\x8e\r\U00027494", // 𧒔
+ 0x27495: "\x8e\r\U00027495", // 𧒕
+ 0x27496: "\x8e\r\U00027496", // 𧒖
+ 0x27497: "\x8e\r\U00027497", // 𧒗
+ 0x27498: "\x8e\r\U00027498", // 𧒘
+ 0x27499: "\x8e\r\U00027499", // 𧒙
+ 0x2749a: "\x8e\r\U0002749a", // 𧒚
+ 0x2749b: "\x8e\r\U0002749b", // 𧒛
+ 0x2749c: "\x8e\r\U0002749c", // 𧒜
+ 0x2749d: "\x8e\r\U0002749d", // 𧒝
+ 0x2749e: "\x8e\r\U0002749e", // 𧒞
+ 0x2749f: "\x8e\r\U0002749f", // 𧒟
+ 0x274a0: "\x8e\r\U000274a0", // 𧒠
+ 0x274a1: "\x8e\r\U000274a1", // 𧒡
+ 0x274a2: "\x8e\r\U000274a2", // 𧒢
+ 0x274a3: "\x8e\r\U000274a3", // 𧒣
+ 0x274a4: "\x8e\r\U000274a4", // 𧒤
+ 0x274a5: "\x8e\r\U000274a5", // 𧒥
+ 0x274a6: "\x8e\r\U000274a6", // 𧒦
+ 0x274a7: "\x8e\r\U000274a7", // 𧒧
+ 0x274a8: "\x8e\r\U000274a8", // 𧒨
+ 0x274a9: "\x8e\r\U000274a9", // 𧒩
+ 0x274aa: "\x8e\r\U000274aa", // 𧒪
+ 0x274ab: "\x8e\r\U000274ab", // 𧒫
+ 0x274ac: "\x8e\r\U000274ac", // 𧒬
+ 0x274ad: "\x8e\r\U000274ad", // 𧒭
+ 0x274ae: "\x8e\r\U000274ae", // 𧒮
+ 0x274af: "\x8e\r\U000274af", // 𧒯
+ 0x274b0: "\x8e\r\U000274b0", // 𧒰
+ 0x274b1: "\x8e\r\U000274b1", // 𧒱
+ 0x274b2: "\x8e\r\U000274b2", // 𧒲
+ 0x274b3: "\x8e\r\U000274b3", // 𧒳
+ 0x274b4: "\x8e\r\U000274b4", // 𧒴
+ 0x274b5: "\x8e\r\U000274b5", // 𧒵
+ 0x274b6: "\x8e\r\U000274b6", // 𧒶
+ 0x274b7: "\x8e\r\U000274b7", // 𧒷
+ 0x274b8: "\x8e\r\U000274b8", // 𧒸
+ 0x274b9: "\x8e\r\U000274b9", // 𧒹
+ 0x274ba: "\x8e\r\U000274ba", // 𧒺
+ 0x274bb: "\x8e\r\U000274bb", // 𧒻
+ 0x274bc: "\x8e\r\U000274bc", // 𧒼
+ 0x274bd: "\x8e\r\U000274bd", // 𧒽
+ 0x274be: "\x8e\r\U000274be", // 𧒾
+ 0x274bf: "\x8e\r\U000274bf", // 𧒿
+ 0x274c0: "\x8e\r\U000274c0", // 𧓀
+ 0x274c1: "\x8e\r\U000274c1", // 𧓁
+ 0x274c2: "\x8e\r\U000274c2", // 𧓂
+ 0x274c3: "\x8e\r\U000274c3", // 𧓃
+ 0x274c4: "\x8e\r\U000274c4", // 𧓄
+ 0x274c5: "\x8e\r\U000274c5", // 𧓅
+ 0x274c6: "\x8e\r\U000274c6", // 𧓆
+ 0x274c7: "\x8e\r\U000274c7", // 𧓇
+ 0x274c8: "\x8e\r\U000274c8", // 𧓈
+ 0x274c9: "\x8e\x0e\U000274c9", // 𧓉
+ 0x274ca: "\x8e\x0e\U000274ca", // 𧓊
+ 0x274cb: "\x8e\x0e\U000274cb", // 𧓋
+ 0x274cc: "\x8e\x0e\U000274cc", // 𧓌
+ 0x274cd: "\x8e\x0e\U000274cd", // 𧓍
+ 0x274ce: "\x8e\x0e\U000274ce", // 𧓎
+ 0x274cf: "\x8e\x0e\U000274cf", // 𧓏
+ 0x274d0: "\x8e\x0e\U000274d0", // 𧓐
+ 0x274d1: "\x8e\x0e\U000274d1", // 𧓑
+ 0x274d2: "\x8e\x0e\U000274d2", // 𧓒
+ 0x274d3: "\x8e\x0e\U000274d3", // 𧓓
+ 0x274d4: "\x8e\x0e\U000274d4", // 𧓔
+ 0x274d5: "\x8e\x0e\U000274d5", // 𧓕
+ 0x274d6: "\x8e\x0e\U000274d6", // 𧓖
+ 0x274d7: "\x8e\x0e\U000274d7", // 𧓗
+ 0x274d8: "\x8e\x0e\U000274d8", // 𧓘
+ 0x274d9: "\x8e\x0e\U000274d9", // 𧓙
+ 0x274da: "\x8e\x0e\U000274da", // 𧓚
+ 0x274db: "\x8e\x0e\U000274db", // 𧓛
+ 0x274dc: "\x8e\x0e\U000274dc", // 𧓜
+ 0x274dd: "\x8e\x0e\U000274dd", // 𧓝
+ 0x274de: "\x8e\x0e\U000274de", // 𧓞
+ 0x274df: "\x8e\x0e\U000274df", // 𧓟
+ 0x274e0: "\x8e\x0e\U000274e0", // 𧓠
+ 0x274e1: "\x8e\x0e\U000274e1", // 𧓡
+ 0x274e2: "\x8e\x0e\U000274e2", // 𧓢
+ 0x274e3: "\x8e\x0e\U000274e3", // 𧓣
+ 0x274e4: "\x8e\x0e\U000274e4", // 𧓤
+ 0x274e5: "\x8e\x0e\U000274e5", // 𧓥
+ 0x274e6: "\x8e\x0e\U000274e6", // 𧓦
+ 0x274e7: "\x8e\x0e\U000274e7", // 𧓧
+ 0x274e8: "\x8e\x0e\U000274e8", // 𧓨
+ 0x274e9: "\x8e\x0e\U000274e9", // 𧓩
+ 0x274ea: "\x8e\x0e\U000274ea", // 𧓪
+ 0x274eb: "\x8e\x0e\U000274eb", // 𧓫
+ 0x274ec: "\x8e\x0e\U000274ec", // 𧓬
+ 0x274ed: "\x8e\x0e\U000274ed", // 𧓭
+ 0x274ee: "\x8e\x0e\U000274ee", // 𧓮
+ 0x274ef: "\x8e\x0e\U000274ef", // 𧓯
+ 0x274f0: "\x8e\x0e\U000274f0", // 𧓰
+ 0x274f1: "\x8e\x0f\U000274f1", // 𧓱
+ 0x274f2: "\x8e\x0f\U000274f2", // 𧓲
+ 0x274f3: "\x8e\x0f\U000274f3", // 𧓳
+ 0x274f4: "\x8e\x0f\U000274f4", // 𧓴
+ 0x274f5: "\x8e\x0f\U000274f5", // 𧓵
+ 0x274f6: "\x8e\x0f\U000274f6", // 𧓶
+ 0x274f7: "\x8e\x0f\U000274f7", // 𧓷
+ 0x274f8: "\x8e\x0f\U000274f8", // 𧓸
+ 0x274f9: "\x8e\x0f\U000274f9", // 𧓹
+ 0x274fa: "\x8e\x0f\U000274fa", // 𧓺
+ 0x274fb: "\x8e\x0f\U000274fb", // 𧓻
+ 0x274fc: "\x8e\x0f\U000274fc", // 𧓼
+ 0x274fd: "\x8e\x0f\U000274fd", // 𧓽
+ 0x274fe: "\x8e\x0f\U000274fe", // 𧓾
+ 0x274ff: "\x8e\x0f\U000274ff", // 𧓿
+ 0x27500: "\x8e\x0f\U00027500", // 𧔀
+ 0x27501: "\x8e\x0f\U00027501", // 𧔁
+ 0x27502: "\x8e\x0f\U00027502", // 𧔂
+ 0x27503: "\x8e\x0f\U00027503", // 𧔃
+ 0x27504: "\x8e\x0f\U00027504", // 𧔄
+ 0x27505: "\x8e\x0f\U00027505", // 𧔅
+ 0x27506: "\x8e\x0f\U00027506", // 𧔆
+ 0x27507: "\x8e\x0f\U00027507", // 𧔇
+ 0x27508: "\x8e\x0f\U00027508", // 𧔈
+ 0x27509: "\x8e\x0f\U00027509", // 𧔉
+ 0x2750a: "\x8e\x0f\U0002750a", // 𧔊
+ 0x2750b: "\x8e\x0f\U0002750b", // 𧔋
+ 0x2750c: "\x8e\x0f\U0002750c", // 𧔌
+ 0x2750d: "\x8e\x0f\U0002750d", // 𧔍
+ 0x2750e: "\x8e\x0f\U0002750e", // 𧔎
+ 0x2750f: "\x8e\x0f\U0002750f", // 𧔏
+ 0x27510: "\x8e\x0f\U00027510", // 𧔐
+ 0x27511: "\x8e\x0f\U00027511", // 𧔑
+ 0x27512: "\x8e\x0f\U00027512", // 𧔒
+ 0x27513: "\x8e\x0f\U00027513", // 𧔓
+ 0x27514: "\x8e\x0f\U00027514", // 𧔔
+ 0x27515: "\x8e\x0f\U00027515", // 𧔕
+ 0x27516: "\x8e\x0f\U00027516", // 𧔖
+ 0x27517: "\x8e\x0f\U00027517", // 𧔗
+ 0x27518: "\x8e\x0f\U00027518", // 𧔘
+ 0x27519: "\x8e\x0f\U00027519", // 𧔙
+ 0x2751a: "\x8e\x0f\U0002751a", // 𧔚
+ 0x2751b: "\x8e\x0f\U0002751b", // 𧔛
+ 0x2751c: "\x8e\x0f\U0002751c", // 𧔜
+ 0x2751d: "\x8e\x10\U0002751d", // 𧔝
+ 0x2751e: "\x8e\x10\U0002751e", // 𧔞
+ 0x2751f: "\x8e\x10\U0002751f", // 𧔟
+ 0x27520: "\x8e\x10\U00027520", // 𧔠
+ 0x27521: "\x8e\x10\U00027521", // 𧔡
+ 0x27522: "\x8e\x10\U00027522", // 𧔢
+ 0x27523: "\x8e\x10\U00027523", // 𧔣
+ 0x27524: "\x8e\x10\U00027524", // 𧔤
+ 0x27525: "\x8e\x10\U00027525", // 𧔥
+ 0x27526: "\x8e\x10\U00027526", // 𧔦
+ 0x27527: "\x8e\x10\U00027527", // 𧔧
+ 0x27528: "\x8e\x10\U00027528", // 𧔨
+ 0x27529: "\x8e\x10\U00027529", // 𧔩
+ 0x2752a: "\x8e\x10\U0002752a", // 𧔪
+ 0x2752b: "\x8e\x10\U0002752b", // 𧔫
+ 0x2752c: "\x8e\x10\U0002752c", // 𧔬
+ 0x2752d: "\x8e\x10\U0002752d", // 𧔭
+ 0x2752e: "\x8e\x10\U0002752e", // 𧔮
+ 0x2752f: "\x8e\x10\U0002752f", // 𧔯
+ 0x27530: "\x8e\x10\U00027530", // 𧔰
+ 0x27531: "\x8e\x10\U00027531", // 𧔱
+ 0x27532: "\x8e\x10\U00027532", // 𧔲
+ 0x27533: "\x8e\x10\U00027533", // 𧔳
+ 0x27534: "\x8e\x10\U00027534", // 𧔴
+ 0x27535: "\x8e\x10\U00027535", // 𧔵
+ 0x27536: "\x8e\x10\U00027536", // 𧔶
+ 0x27537: "\x8e\x10\U00027537", // 𧔷
+ 0x27538: "\x8e\x10\U00027538", // 𧔸
+ 0x27539: "\x8e\x10\U00027539", // 𧔹
+ 0x2753a: "\x8e\x10\U0002753a", // 𧔺
+ 0x2753b: "\x8e\x10\U0002753b", // 𧔻
+ 0x2753c: "\x8e\x10\U0002753c", // 𧔼
+ 0x2753d: "\x8e\x10\U0002753d", // 𧔽
+ 0x2753e: "\x8e\x10\U0002753e", // 𧔾
+ 0x2753f: "\x8e\x10\U0002753f", // 𧔿
+ 0x27540: "\x8e\x10\U00027540", // 𧕀
+ 0x27541: "\x8e\x10\U00027541", // 𧕁
+ 0x27542: "\x8e\x10\U00027542", // 𧕂
+ 0x27543: "\x8e\x11\U00027543", // 𧕃
+ 0x27544: "\x8e\x11\U00027544", // 𧕄
+ 0x27545: "\x8e\x11\U00027545", // 𧕅
+ 0x27546: "\x8e\x11\U00027546", // 𧕆
+ 0x27547: "\x8e\x11\U00027547", // 𧕇
+ 0x27548: "\x8e\x11\U00027548", // 𧕈
+ 0x27549: "\x8e\x11\U00027549", // 𧕉
+ 0x2754a: "\x8e\x11\U0002754a", // 𧕊
+ 0x2754b: "\x8e\x11\U0002754b", // 𧕋
+ 0x2754c: "\x8e\x11\U0002754c", // 𧕌
+ 0x2754d: "\x8e\x11\U0002754d", // 𧕍
+ 0x2754e: "\x8e\x11\U0002754e", // 𧕎
+ 0x2754f: "\x8e\x11\U0002754f", // 𧕏
+ 0x27550: "\x8e\x11\U00027550", // 𧕐
+ 0x27551: "\x8e\x11\U00027551", // 𧕑
+ 0x27552: "\x8e\x11\U00027552", // 𧕒
+ 0x27553: "\x8e\x12\U00027553", // 𧕓
+ 0x27554: "\x8e\x11\U00027554", // 𧕔
+ 0x27555: "\x8e\x11\U00027555", // 𧕕
+ 0x27556: "\x8e\x11\U00027556", // 𧕖
+ 0x27557: "\x8e\x11\U00027557", // 𧕗
+ 0x27558: "\x8e\x11\U00027558", // 𧕘
+ 0x27559: "\x8e\x11\U00027559", // 𧕙
+ 0x2755a: "\x8e\x11\U0002755a", // 𧕚
+ 0x2755b: "\x8e\x12\U0002755b", // 𧕛
+ 0x2755c: "\x8e\x12\U0002755c", // 𧕜
+ 0x2755d: "\x8e\x12\U0002755d", // 𧕝
+ 0x2755e: "\x8e\x12\U0002755e", // 𧕞
+ 0x2755f: "\x8e\x12\U0002755f", // 𧕟
+ 0x27560: "\x8e\x12\U00027560", // 𧕠
+ 0x27561: "\x8e\x12\U00027561", // 𧕡
+ 0x27562: "\x8e\x12\U00027562", // 𧕢
+ 0x27563: "\x8e\x12\U00027563", // 𧕣
+ 0x27564: "\x8e\x12\U00027564", // 𧕤
+ 0x27565: "\x8e\x12\U00027565", // 𧕥
+ 0x27566: "\x8e\x12\U00027566", // 𧕦
+ 0x27567: "\x8e\x12\U00027567", // 𧕧
+ 0x27568: "\x8e\x12\U00027568", // 𧕨
+ 0x27569: "\x8e\x12\U00027569", // 𧕩
+ 0x2756a: "\x8e\x12\U0002756a", // 𧕪
+ 0x2756b: "\x8e\x12\U0002756b", // 𧕫
+ 0x2756c: "\x8e\x12\U0002756c", // 𧕬
+ 0x2756d: "\x8e\x12\U0002756d", // 𧕭
+ 0x2756e: "\x8e\x12\U0002756e", // 𧕮
+ 0x2756f: "\x8e\x13\U0002756f", // 𧕯
+ 0x27570: "\x8e\x13\U00027570", // 𧕰
+ 0x27571: "\x8e\x13\U00027571", // 𧕱
+ 0x27572: "\x8e\x13\U00027572", // 𧕲
+ 0x27573: "\x8e\x13\U00027573", // 𧕳
+ 0x27574: "\x8e\x13\U00027574", // 𧕴
+ 0x27575: "\x8e\x13\U00027575", // 𧕵
+ 0x27576: "\x8e\x13\U00027576", // 𧕶
+ 0x27577: "\x8e\x13\U00027577", // 𧕷
+ 0x27578: "\x8e\x13\U00027578", // 𧕸
+ 0x27579: "\x8e\x13\U00027579", // 𧕹
+ 0x2757a: "\x8e\x13\U0002757a", // 𧕺
+ 0x2757b: "\x8e\x13\U0002757b", // 𧕻
+ 0x2757c: "\x8e\x13\U0002757c", // 𧕼
+ 0x2757d: "\x8e\x14\U0002757d", // 𧕽
+ 0x2757e: "\x8e\x14\U0002757e", // 𧕾
+ 0x2757f: "\x8e\x14\U0002757f", // 𧕿
+ 0x27580: "\x8e\x14\U00027580", // 𧖀
+ 0x27581: "\x8e\x14\U00027581", // 𧖁
+ 0x27582: "\x8e\x14\U00027582", // 𧖂
+ 0x27583: "\x8e\x14\U00027583", // 𧖃
+ 0x27584: "\x8e\x15\U00027584", // 𧖄
+ 0x27585: "\x8e\x15\U00027585", // 𧖅
+ 0x27586: "\x8e\x15\U00027586", // 𧖆
+ 0x27587: "\x8e\x15\U00027587", // 𧖇
+ 0x27588: "\x8e\x15\U00027588", // 𧖈
+ 0x27589: "\x8e\x15\U00027589", // 𧖉
+ 0x2758a: "\x8e\x14\U0002758a", // 𧖊
+ 0x2758b: "\x8e\x15\U0002758b", // 𧖋
+ 0x2758c: "\x8e\x15\U0002758c", // 𧖌
+ 0x2758d: "\x8e\x15\U0002758d", // 𧖍
+ 0x2758e: "\x8e\x15\U0002758e", // 𧖎
+ 0x2758f: "\x8e\x15\U0002758f", // 𧖏
+ 0x27590: "\x8e\x15\U00027590", // 𧖐
+ 0x27591: "\x8e\x16\U00027591", // 𧖑
+ 0x27592: "\x8e\x16\U00027592", // 𧖒
+ 0x27593: "\x8e\x16\U00027593", // 𧖓
+ 0x27594: "\x8e\x16\U00027594", // 𧖔
+ 0x27595: "\x8e\x16\U00027595", // 𧖕
+ 0x27596: "\x8e\x16\U00027596", // 𧖖
+ 0x27597: "\x8e\x16\U00027597", // 𧖗
+ 0x27598: "\x8e\x17\U00027598", // 𧖘
+ 0x27599: "\x8e\x17\U00027599", // 𧖙
+ 0x2759a: "\x8e\x17\U0002759a", // 𧖚
+ 0x2759b: "\x8e\x17\U0002759b", // 𧖛
+ 0x2759c: "\x8e\x18\U0002759c", // 𧖜
+ 0x2759d: "\x8e\x18\U0002759d", // 𧖝
+ 0x2759e: "\x8e\x18\U0002759e", // 𧖞
+ 0x2759f: "\x8e\x18\U0002759f", // 𧖟
+ 0x275a0: "\xc4\x13\U000275a0", // 𧖠
+ 0x275a1: "\x8e\x18\U000275a1", // 𧖡
+ 0x275a2: "\x8e\x19\U000275a2", // 𧖢
+ 0x275a3: "\x8e\x19\U000275a3", // 𧖣
+ 0x275a4: "\x8e\x1a\U000275a4", // 𧖤
+ 0x275a5: "\x8e\x1a\U000275a5", // 𧖥
+ 0x275a6: "\x8e\x1a\U000275a6", // 𧖦
+ 0x275a7: "\x8f\x02\U000275a7", // 𧖧
+ 0x275a8: "\x8f\x02\U000275a8", // 𧖨
+ 0x275a9: "\x8f\x02\U000275a9", // 𧖩
+ 0x275aa: "\x8f\x03\U000275aa", // 𧖪
+ 0x275ab: "\x8f\x04\U000275ab", // 𧖫
+ 0x275ac: "\x8f\x04\U000275ac", // 𧖬
+ 0x275ad: "\x8f\x04\U000275ad", // 𧖭
+ 0x275ae: "\x8f\x04\U000275ae", // 𧖮
+ 0x275af: "\x8f\x04\U000275af", // 𧖯
+ 0x275b0: "\x8f\x05\U000275b0", // 𧖰
+ 0x275b1: "\x8f\x05\U000275b1", // 𧖱
+ 0x275b2: "\x8f\x05\U000275b2", // 𧖲
+ 0x275b3: "\x8f\x06\U000275b3", // 𧖳
+ 0x275b4: "\x8f\x06\U000275b4", // 𧖴
+ 0x275b5: "\x8f\a\U000275b5", // 𧖵
+ 0x275b6: "\x8f\a\U000275b6", // 𧖶
+ 0x275b7: "\x8f\a\U000275b7", // 𧖷
+ 0x275b8: "\x8f\a\U000275b8", // 𧖸
+ 0x275b9: "\x8f\a\U000275b9", // 𧖹
+ 0x275ba: "\x8f\b\U000275ba", // 𧖺
+ 0x275bb: "\x8f\b\U000275bb", // 𧖻
+ 0x275bc: "\x8f\b\U000275bc", // 𧖼
+ 0x275bd: "\x8f\b\U000275bd", // 𧖽
+ 0x275be: "\x8f\b\U000275be", // 𧖾
+ 0x275bf: "\x8f\b\U000275bf", // 𧖿
+ 0x275c0: "\x8f\t\U000275c0", // 𧗀
+ 0x275c1: "\x8f\t\U000275c1", // 𧗁
+ 0x275c2: "\x8f\t\U000275c2", // 𧗂
+ 0x275c3: "\x8f\t\U000275c3", // 𧗃
+ 0x275c4: "\x8f\b\U000275c4", // 𧗄
+ 0x275c5: "\x8f\t\U000275c5", // 𧗅
+ 0x275c6: "\x8f\n\U000275c6", // 𧗆
+ 0x275c7: "\x8f\n\U000275c7", // 𧗇
+ 0x275c8: "\x8f\n\U000275c8", // 𧗈
+ 0x275c9: "\x8f\n\U000275c9", // 𧗉
+ 0x275ca: "\x8f\n\U000275ca", // 𧗊
+ 0x275cb: "\x8f\v\U000275cb", // 𧗋
+ 0x275cc: "\x8f\v\U000275cc", // 𧗌
+ 0x275cd: "\x8f\v\U000275cd", // 𧗍
+ 0x275ce: "\x8f\f\U000275ce", // 𧗎
+ 0x275cf: "\x8f\f\U000275cf", // 𧗏
+ 0x275d0: "\x8f\f\U000275d0", // 𧗐
+ 0x275d1: "\x8f\f\U000275d1", // 𧗑
+ 0x275d2: "\x8f\f\U000275d2", // 𧗒
+ 0x275d3: "\x8f\f\U000275d3", // 𧗓
+ 0x275d4: "\x8f\r\U000275d4", // 𧗔
+ 0x275d5: "\x8f\r\U000275d5", // 𧗕
+ 0x275d6: "\x8f\x0e\U000275d6", // 𧗖
+ 0x275d7: "\x8f\x0e\U000275d7", // 𧗗
+ 0x275d8: "\x8f\x0f\U000275d8", // 𧗘
+ 0x275d9: "\x8f\x10\U000275d9", // 𧗙
+ 0x275da: "\x8f\x10\U000275da", // 𧗚
+ 0x275db: "\x8f\x11\U000275db", // 𧗛
+ 0x275dc: "\x8f\x18\U000275dc", // 𧗜
+ 0x275dd: "\x90\x02\U000275dd", // 𧗝
+ 0x275de: "\x90\x02\U000275de", // 𧗞
+ 0x275df: "\x90\x02\U000275df", // 𧗟
+ 0x275e0: "\x90\x02\U000275e0", // 𧗠
+ 0x275e1: "\x90\x03\U000275e1", // 𧗡
+ 0x275e2: "\x90\x03\U000275e2", // 𧗢
+ 0x275e3: "\x90\x03\U000275e3", // 𧗣
+ 0x275e4: "\x90\x03\U000275e4", // 𧗤
+ 0x275e5: "\x90\x03\U000275e5", // 𧗥
+ 0x275e6: "\x90\x04\U000275e6", // 𧗦
+ 0x275e7: "\x90\x04\U000275e7", // 𧗧
+ 0x275e8: "\x90\x04\U000275e8", // 𧗨
+ 0x275e9: "\x90\x04\U000275e9", // 𧗩
+ 0x275ea: "\x90\x05\U000275ea", // 𧗪
+ 0x275eb: "\x90\x06\U000275eb", // 𧗫
+ 0x275ec: "\x90\x06\U000275ec", // 𧗬
+ 0x275ed: "\x90\x06\U000275ed", // 𧗭
+ 0x275ee: "\x90\x06\U000275ee", // 𧗮
+ 0x275ef: "\x90\x06\U000275ef", // 𧗯
+ 0x275f0: "\x90\x06\U000275f0", // 𧗰
+ 0x275f1: "\x90\x06\U000275f1", // 𧗱
+ 0x275f2: "\x90\a\U000275f2", // 𧗲
+ 0x275f3: "\x90\a\U000275f3", // 𧗳
+ 0x275f4: "\x90\a\U000275f4", // 𧗴
+ 0x275f5: "\x90\a\U000275f5", // 𧗵
+ 0x275f6: "\x90\a\U000275f6", // 𧗶
+ 0x275f7: "\x90\a\U000275f7", // 𧗷
+ 0x275f8: "\x90\b\U000275f8", // 𧗸
+ 0x275f9: "\x90\t\U000275f9", // 𧗹
+ 0x275fa: "\x90\b\U000275fa", // 𧗺
+ 0x275fb: "\x90\b\U000275fb", // 𧗻
+ 0x275fc: "\x90\t\U000275fc", // 𧗼
+ 0x275fd: "\x90\t\U000275fd", // 𧗽
+ 0x275fe: "\x90\n\U000275fe", // 𧗾
+ 0x275ff: "\x90\v\U000275ff", // 𧗿
+ 0x27600: "\x90\v\U00027600", // 𧘀
+ 0x27601: "\x90\v\U00027601", // 𧘁
+ 0x27602: "\x90\f\U00027602", // 𧘂
+ 0x27603: "\x90\f\U00027603", // 𧘃
+ 0x27604: "\x90\r\U00027604", // 𧘄
+ 0x27605: "\x90\x0f\U00027605", // 𧘅
+ 0x27606: "\x90\x10\U00027606", // 𧘆
+ 0x27607: "\x91\x00\U00027607", // 𧘇
+ 0x27608: "\x91\x02\U00027608", // 𧘈
+ 0x27609: "\x91\x02\U00027609", // 𧘉
+ 0x2760a: "\x91\x02\U0002760a", // 𧘊
+ 0x2760b: "\x91\x02\U0002760b", // 𧘋
+ 0x2760c: "\x91\x02\U0002760c", // 𧘌
+ 0x2760d: "\x91\x03\U0002760d", // 𧘍
+ 0x2760e: "\x91\x03\U0002760e", // 𧘎
+ 0x2760f: "\x91\x03\U0002760f", // 𧘏
+ 0x27610: "\x91\x03\U00027610", // 𧘐
+ 0x27611: "\x91\x03\U00027611", // 𧘑
+ 0x27612: "\x91\x03\U00027612", // 𧘒
+ 0x27613: "\x91\x03\U00027613", // 𧘓
+ 0x27614: "\x91\x03\U00027614", // 𧘔
+ 0x27615: "\x91\x03\U00027615", // 𧘕
+ 0x27616: "\x91\x03\U00027616", // 𧘖
+ 0x27617: "\x91\x03\U00027617", // 𧘗
+ 0x27618: "\x91\x03\U00027618", // 𧘘
+ 0x27619: "\x91\x03\U00027619", // 𧘙
+ 0x2761a: "\x91\x03\U0002761a", // 𧘚
+ 0x2761b: "\x91\x03\U0002761b", // 𧘛
+ 0x2761c: "\x91\x03\U0002761c", // 𧘜
+ 0x2761d: "\x91\x04\U0002761d", // 𧘝
+ 0x2761e: "\x91\x04\U0002761e", // 𧘞
+ 0x2761f: "\x91\x04\U0002761f", // 𧘟
+ 0x27620: "\x91\x04\U00027620", // 𧘠
+ 0x27621: "\x91\x04\U00027621", // 𧘡
+ 0x27622: "\x91\x04\U00027622", // 𧘢
+ 0x27623: "\x91\x04\U00027623", // 𧘣
+ 0x27624: "\x91\x04\U00027624", // 𧘤
+ 0x27625: "\x91\x04\U00027625", // 𧘥
+ 0x27626: "\x91\x04\U00027626", // 𧘦
+ 0x27627: "\x91\x04\U00027627", // 𧘧
+ 0x27628: "\x91\x04\U00027628", // 𧘨
+ 0x27629: "\x91\x04\U00027629", // 𧘩
+ 0x2762a: "\x91\x04\U0002762a", // 𧘪
+ 0x2762b: "\x91\x04\U0002762b", // 𧘫
+ 0x2762c: "\x91\x04\U0002762c", // 𧘬
+ 0x2762d: "\x91\x04\U0002762d", // 𧘭
+ 0x2762e: "\x91\x04\U0002762e", // 𧘮
+ 0x2762f: "\x91\x04\U0002762f", // 𧘯
+ 0x27630: "\x91\x04\U00027630", // 𧘰
+ 0x27631: "\x91\x04\U00027631", // 𧘱
+ 0x27632: "\x91\x04\U00027632", // 𧘲
+ 0x27633: "\x91\x04\U00027633", // 𧘳
+ 0x27634: "\x91\x04\U00027634", // 𧘴
+ 0x27635: "\x91\x04\U00027635", // 𧘵
+ 0x27636: "\x91\x04\U00027636", // 𧘶
+ 0x27637: "\x91\x04\U00027637", // 𧘷
+ 0x27638: "\x91\x04\U00027638", // 𧘸
+ 0x27639: "\x91\x04\U00027639", // 𧘹
+ 0x2763a: "\x91\x04\U0002763a", // 𧘺
+ 0x2763b: "\x91\x04\U0002763b", // 𧘻
+ 0x2763c: "\x91\x04\U0002763c", // 𧘼
+ 0x2763d: "\x91\x05\U0002763d", // 𧘽
+ 0x2763e: "\x91\x06\U0002763e", // 𧘾
+ 0x2763f: "\x91\x05\U0002763f", // 𧘿
+ 0x27640: "\x91\x05\U00027640", // 𧙀
+ 0x27641: "\x91\x05\U00027641", // 𧙁
+ 0x27642: "\x91\x05\U00027642", // 𧙂
+ 0x27643: "\x91\x05\U00027643", // 𧙃
+ 0x27644: "\x91\x05\U00027644", // 𧙄
+ 0x27645: "\x91\x05\U00027645", // 𧙅
+ 0x27646: "\x91\x05\U00027646", // 𧙆
+ 0x27647: "\x91\x05\U00027647", // 𧙇
+ 0x27648: "\x91\x05\U00027648", // 𧙈
+ 0x27649: "\x91\x05\U00027649", // 𧙉
+ 0x2764a: "\x91\x05\U0002764a", // 𧙊
+ 0x2764b: "\x91\x05\U0002764b", // 𧙋
+ 0x2764c: "\x91\x05\U0002764c", // 𧙌
+ 0x2764d: "\x91\x05\U0002764d", // 𧙍
+ 0x2764e: "\x91\x05\U0002764e", // 𧙎
+ 0x2764f: "\x91\x05\U0002764f", // 𧙏
+ 0x27650: "\x91\x05\U00027650", // 𧙐
+ 0x27651: "\x91\x05\U00027651", // 𧙑
+ 0x27652: "\x91\x05\U00027652", // 𧙒
+ 0x27653: "\x91\x05\U00027653", // 𧙓
+ 0x27654: "\x91\x05\U00027654", // 𧙔
+ 0x27655: "\x91\x05\U00027655", // 𧙕
+ 0x27656: "\x91\x05\U00027656", // 𧙖
+ 0x27657: "\x91\x05\U00027657", // 𧙗
+ 0x27658: "\x91\x05\U00027658", // 𧙘
+ 0x27659: "\x91\x05\U00027659", // 𧙙
+ 0x2765a: "\x91\x05\U0002765a", // 𧙚
+ 0x2765b: "\x91\x05\U0002765b", // 𧙛
+ 0x2765c: "\x91\x05\U0002765c", // 𧙜
+ 0x2765d: "\x91\x05\U0002765d", // 𧙝
+ 0x2765e: "\x91\x06\U0002765e", // 𧙞
+ 0x2765f: "\x91\x06\U0002765f", // 𧙟
+ 0x27660: "\x91\x06\U00027660", // 𧙠
+ 0x27661: "\x91\x06\U00027661", // 𧙡
+ 0x27662: "\x91\x06\U00027662", // 𧙢
+ 0x27663: "\x91\x06\U00027663", // 𧙣
+ 0x27664: "\x91\x06\U00027664", // 𧙤
+ 0x27665: "\x91\x06\U00027665", // 𧙥
+ 0x27666: "\x91\x06\U00027666", // 𧙦
+ 0x27667: "\x91\x06\U00027667", // 𧙧
+ 0x27668: "\x91\x06\U00027668", // 𧙨
+ 0x27669: "\x91\x06\U00027669", // 𧙩
+ 0x2766a: "\x91\x06\U0002766a", // 𧙪
+ 0x2766b: "\x91\x06\U0002766b", // 𧙫
+ 0x2766c: "\x91\x06\U0002766c", // 𧙬
+ 0x2766d: "\x91\x06\U0002766d", // 𧙭
+ 0x2766e: "\x91\x06\U0002766e", // 𧙮
+ 0x2766f: "\x91\x06\U0002766f", // 𧙯
+ 0x27670: "\x91\x06\U00027670", // 𧙰
+ 0x27671: "\x91\x06\U00027671", // 𧙱
+ 0x27672: "\x91\x06\U00027672", // 𧙲
+ 0x27673: "\x91\x06\U00027673", // 𧙳
+ 0x27674: "\x91\x06\U00027674", // 𧙴
+ 0x27675: "\x91\x06\U00027675", // 𧙵
+ 0x27676: "\x91\x06\U00027676", // 𧙶
+ 0x27677: "\x91\x06\U00027677", // 𧙷
+ 0x27678: "\x91\x06\U00027678", // 𧙸
+ 0x27679: "\x91\x06\U00027679", // 𧙹
+ 0x2767a: "\x91\x06\U0002767a", // 𧙺
+ 0x2767b: "\x91\x06\U0002767b", // 𧙻
+ 0x2767c: "\x91\x06\U0002767c", // 𧙼
+ 0x2767d: "\x91\x06\U0002767d", // 𧙽
+ 0x2767e: "\x91\x06\U0002767e", // 𧙾
+ 0x2767f: "\x91\x06\U0002767f", // 𧙿
+ 0x27680: "\x91\a\U00027680", // 𧚀
+ 0x27681: "\x91\a\U00027681", // 𧚁
+ 0x27682: "\x91\a\U00027682", // 𧚂
+ 0x27683: "\x91\a\U00027683", // 𧚃
+ 0x27684: "\x91\a\U00027684", // 𧚄
+ 0x27685: "\x91\a\U00027685", // 𧚅
+ 0x27686: "\x91\a\U00027686", // 𧚆
+ 0x27687: "\x91\a\U00027687", // 𧚇
+ 0x27688: "\x91\a\U00027688", // 𧚈
+ 0x27689: "\x91\a\U00027689", // 𧚉
+ 0x2768a: "\x91\a\U0002768a", // 𧚊
+ 0x2768b: "\x91\a\U0002768b", // 𧚋
+ 0x2768c: "\x91\a\U0002768c", // 𧚌
+ 0x2768d: "\x91\a\U0002768d", // 𧚍
+ 0x2768e: "\x91\a\U0002768e", // 𧚎
+ 0x2768f: "\x91\a\U0002768f", // 𧚏
+ 0x27690: "\x91\a\U00027690", // 𧚐
+ 0x27691: "\x91\a\U00027691", // 𧚑
+ 0x27692: "\x91\a\U00027692", // 𧚒
+ 0x27693: "\x91\a\U00027693", // 𧚓
+ 0x27694: "\x91\a\U00027694", // 𧚔
+ 0x27695: "\x91\a\U00027695", // 𧚕
+ 0x27696: "\x91\a\U00027696", // 𧚖
+ 0x27697: "\x91\a\U00027697", // 𧚗
+ 0x27698: "\x91\a\U00027698", // 𧚘
+ 0x27699: "\x91\a\U00027699", // 𧚙
+ 0x2769a: "\x91\a\U0002769a", // 𧚚
+ 0x2769b: "\x91\a\U0002769b", // 𧚛
+ 0x2769c: "\x91\a\U0002769c", // 𧚜
+ 0x2769d: "\x91\a\U0002769d", // 𧚝
+ 0x2769e: "\x91\a\U0002769e", // 𧚞
+ 0x2769f: "\x91\a\U0002769f", // 𧚟
+ 0x276a0: "\x91\a\U000276a0", // 𧚠
+ 0x276a1: "\x91\a\U000276a1", // 𧚡
+ 0x276a2: "\x91\a\U000276a2", // 𧚢
+ 0x276a3: "\x91\a\U000276a3", // 𧚣
+ 0x276a4: "\x91\b\U000276a4", // 𧚤
+ 0x276a5: "\x91\b\U000276a5", // 𧚥
+ 0x276a6: "\x91\b\U000276a6", // 𧚦
+ 0x276a7: "\x91\b\U000276a7", // 𧚧
+ 0x276a8: "\x91\b\U000276a8", // 𧚨
+ 0x276a9: "\x91\b\U000276a9", // 𧚩
+ 0x276aa: "\x91\b\U000276aa", // 𧚪
+ 0x276ab: "\x91\b\U000276ab", // 𧚫
+ 0x276ac: "\x91\b\U000276ac", // 𧚬
+ 0x276ad: "\x91\b\U000276ad", // 𧚭
+ 0x276ae: "\x91\b\U000276ae", // 𧚮
+ 0x276af: "\x91\b\U000276af", // 𧚯
+ 0x276b0: "\x91\b\U000276b0", // 𧚰
+ 0x276b1: "\x91\b\U000276b1", // 𧚱
+ 0x276b2: "\x91\b\U000276b2", // 𧚲
+ 0x276b3: "\x91\b\U000276b3", // 𧚳
+ 0x276b4: "\x91\b\U000276b4", // 𧚴
+ 0x276b5: "\x91\b\U000276b5", // 𧚵
+ 0x276b6: "\x91\b\U000276b6", // 𧚶
+ 0x276b7: "\x91\b\U000276b7", // 𧚷
+ 0x276b8: "\x91\b\U000276b8", // 𧚸
+ 0x276b9: "\x91\b\U000276b9", // 𧚹
+ 0x276ba: "\x91\b\U000276ba", // 𧚺
+ 0x276bb: "\x91\t\U000276bb", // 𧚻
+ 0x276bc: "\x91\b\U000276bc", // 𧚼
+ 0x276bd: "\x91\b\U000276bd", // 𧚽
+ 0x276be: "\x91\b\U000276be", // 𧚾
+ 0x276bf: "\x91\b\U000276bf", // 𧚿
+ 0x276c0: "\x91\b\U000276c0", // 𧛀
+ 0x276c1: "\x91\b\U000276c1", // 𧛁
+ 0x276c2: "\x91\b\U000276c2", // 𧛂
+ 0x276c3: "\x91\b\U000276c3", // 𧛃
+ 0x276c4: "\x91\b\U000276c4", // 𧛄
+ 0x276c5: "\x91\b\U000276c5", // 𧛅
+ 0x276c6: "\x91\b\U000276c6", // 𧛆
+ 0x276c7: "\x91\b\U000276c7", // 𧛇
+ 0x276c8: "\x91\b\U000276c8", // 𧛈
+ 0x276c9: "\x91\b\U000276c9", // 𧛉
+ 0x276ca: "\x91\b\U000276ca", // 𧛊
+ 0x276cb: "\x91\b\U000276cb", // 𧛋
+ 0x276cc: "\x91\b\U000276cc", // 𧛌
+ 0x276cd: "\x91\b\U000276cd", // 𧛍
+ 0x276ce: "\x91\b\U000276ce", // 𧛎
+ 0x276cf: "\x91\t\U000276cf", // 𧛏
+ 0x276d0: "\x91\t\U000276d0", // 𧛐
+ 0x276d1: "\x91\t\U000276d1", // 𧛑
+ 0x276d2: "\x91\t\U000276d2", // 𧛒
+ 0x276d3: "\x91\t\U000276d3", // 𧛓
+ 0x276d4: "\x91\t\U000276d4", // 𧛔
+ 0x276d5: "\x91\t\U000276d5", // 𧛕
+ 0x276d6: "\x91\t\U000276d6", // 𧛖
+ 0x276d7: "\x91\t\U000276d7", // 𧛗
+ 0x276d8: "\x91\t\U000276d8", // 𧛘
+ 0x276d9: "\x91\t\U000276d9", // 𧛙
+ 0x276da: "\x91\t\U000276da", // 𧛚
+ 0x276db: "\x91\t\U000276db", // 𧛛
+ 0x276dc: "\x91\t\U000276dc", // 𧛜
+ 0x276dd: "\x91\t\U000276dd", // 𧛝
+ 0x276de: "\x91\t\U000276de", // 𧛞
+ 0x276df: "\x91\t\U000276df", // 𧛟
+ 0x276e0: "\x91\t\U000276e0", // 𧛠
+ 0x276e1: "\x91\t\U000276e1", // 𧛡
+ 0x276e2: "\x91\t\U000276e2", // 𧛢
+ 0x276e3: "\x91\t\U000276e3", // 𧛣
+ 0x276e4: "\x91\t\U000276e4", // 𧛤
+ 0x276e5: "\x91\t\U000276e5", // 𧛥
+ 0x276e6: "\x91\t\U000276e6", // 𧛦
+ 0x276e7: "\x91\t\U000276e7", // 𧛧
+ 0x276e8: "\x91\t\U000276e8", // 𧛨
+ 0x276e9: "\x91\t\U000276e9", // 𧛩
+ 0x276ea: "\x91\t\U000276ea", // 𧛪
+ 0x276eb: "\x91\t\U000276eb", // 𧛫
+ 0x276ec: "\x91\t\U000276ec", // 𧛬
+ 0x276ed: "\x91\t\U000276ed", // 𧛭
+ 0x276ee: "\x91\t\U000276ee", // 𧛮
+ 0x276ef: "\x91\t\U000276ef", // 𧛯
+ 0x276f0: "\x91\t\U000276f0", // 𧛰
+ 0x276f1: "\x91\t\U000276f1", // 𧛱
+ 0x276f2: "\x91\t\U000276f2", // 𧛲
+ 0x276f3: "\x91\t\U000276f3", // 𧛳
+ 0x276f4: "\x91\t\U000276f4", // 𧛴
+ 0x276f5: "\x91\t\U000276f5", // 𧛵
+ 0x276f6: "\x91\t\U000276f6", // 𧛶
+ 0x276f7: "\x91\t\U000276f7", // 𧛷
+ 0x276f8: "\x91\n\U000276f8", // 𧛸
+ 0x276f9: "\x91\n\U000276f9", // 𧛹
+ 0x276fa: "\x91\n\U000276fa", // 𧛺
+ 0x276fb: "\x91\n\U000276fb", // 𧛻
+ 0x276fc: "\x91\n\U000276fc", // 𧛼
+ 0x276fd: "\x91\n\U000276fd", // 𧛽
+ 0x276fe: "\x91\n\U000276fe", // 𧛾
+ 0x276ff: "\x91\n\U000276ff", // 𧛿
+ 0x27700: "\x91\n\U00027700", // 𧜀
+ 0x27701: "\x91\n\U00027701", // 𧜁
+ 0x27702: "\x91\n\U00027702", // 𧜂
+ 0x27703: "\x91\n\U00027703", // 𧜃
+ 0x27704: "\x91\n\U00027704", // 𧜄
+ 0x27705: "\x91\n\U00027705", // 𧜅
+ 0x27706: "\x91\n\U00027706", // 𧜆
+ 0x27707: "\x91\n\U00027707", // 𧜇
+ 0x27708: "\x91\n\U00027708", // 𧜈
+ 0x27709: "\x91\n\U00027709", // 𧜉
+ 0x2770a: "\x91\n\U0002770a", // 𧜊
+ 0x2770b: "\x91\n\U0002770b", // 𧜋
+ 0x2770c: "\x91\n\U0002770c", // 𧜌
+ 0x2770d: "\x91\n\U0002770d", // 𧜍
+ 0x2770e: "\x91\n\U0002770e", // 𧜎
+ 0x2770f: "\x91\n\U0002770f", // 𧜏
+ 0x27710: "\x91\n\U00027710", // 𧜐
+ 0x27711: "\x91\n\U00027711", // 𧜑
+ 0x27712: "\x91\n\U00027712", // 𧜒
+ 0x27713: "\x91\n\U00027713", // 𧜓
+ 0x27714: "\x91\n\U00027714", // 𧜔
+ 0x27715: "\x91\n\U00027715", // 𧜕
+ 0x27716: "\x91\n\U00027716", // 𧜖
+ 0x27717: "\x91\n\U00027717", // 𧜗
+ 0x27718: "\x91\n\U00027718", // 𧜘
+ 0x27719: "\x91\n\U00027719", // 𧜙
+ 0x2771a: "\x91\n\U0002771a", // 𧜚
+ 0x2771b: "\x91\n\U0002771b", // 𧜛
+ 0x2771c: "\x91\n\U0002771c", // 𧜜
+ 0x2771d: "\x91\v\U0002771d", // 𧜝
+ 0x2771e: "\x91\v\U0002771e", // 𧜞
+ 0x2771f: "\x91\v\U0002771f", // 𧜟
+ 0x27720: "\x91\v\U00027720", // 𧜠
+ 0x27721: "\x91\v\U00027721", // 𧜡
+ 0x27722: "\x91\v\U00027722", // 𧜢
+ 0x27723: "\x91\v\U00027723", // 𧜣
+ 0x27724: "\x91\v\U00027724", // 𧜤
+ 0x27725: "\x91\v\U00027725", // 𧜥
+ 0x27726: "\x91\v\U00027726", // 𧜦
+ 0x27727: "\x91\v\U00027727", // 𧜧
+ 0x27728: "\x91\n\U00027728", // 𧜨
+ 0x27729: "\x91\v\U00027729", // 𧜩
+ 0x2772a: "\x91\v\U0002772a", // 𧜪
+ 0x2772b: "\x91\v\U0002772b", // 𧜫
+ 0x2772c: "\x91\v\U0002772c", // 𧜬
+ 0x2772d: "\x91\f\U0002772d", // 𧜭
+ 0x2772e: "\x91\v\U0002772e", // 𧜮
+ 0x2772f: "\x91\v\U0002772f", // 𧜯
+ 0x27730: "\x91\v\U00027730", // 𧜰
+ 0x27731: "\x91\v\U00027731", // 𧜱
+ 0x27732: "\x91\v\U00027732", // 𧜲
+ 0x27733: "\x91\v\U00027733", // 𧜳
+ 0x27734: "\x91\v\U00027734", // 𧜴
+ 0x27735: "\x91\v\U00027735", // 𧜵
+ 0x27736: "\x91\v\U00027736", // 𧜶
+ 0x27737: "\x91\v\U00027737", // 𧜷
+ 0x27738: "\x91\v\U00027738", // 𧜸
+ 0x27739: "\x91\v\U00027739", // 𧜹
+ 0x2773a: "\x91\v\U0002773a", // 𧜺
+ 0x2773b: "\x91\v\U0002773b", // 𧜻
+ 0x2773c: "\x91\v\U0002773c", // 𧜼
+ 0x2773d: "\x91\v\U0002773d", // 𧜽
+ 0x2773e: "\x91\v\U0002773e", // 𧜾
+ 0x2773f: "\x91\v\U0002773f", // 𧜿
+ 0x27740: "\x91\v\U00027740", // 𧝀
+ 0x27741: "\x91\v\U00027741", // 𧝁
+ 0x27742: "\x91\f\U00027742", // 𧝂
+ 0x27743: "\x91\f\U00027743", // 𧝃
+ 0x27744: "\x91\f\U00027744", // 𧝄
+ 0x27745: "\x91\f\U00027745", // 𧝅
+ 0x27746: "\x91\f\U00027746", // 𧝆
+ 0x27747: "\x91\f\U00027747", // 𧝇
+ 0x27748: "\x91\f\U00027748", // 𧝈
+ 0x27749: "\x91\f\U00027749", // 𧝉
+ 0x2774a: "\x91\f\U0002774a", // 𧝊
+ 0x2774b: "\x91\f\U0002774b", // 𧝋
+ 0x2774c: "\x91\f\U0002774c", // 𧝌
+ 0x2774d: "\x91\f\U0002774d", // 𧝍
+ 0x2774e: "\x91\f\U0002774e", // 𧝎
+ 0x2774f: "\x91\f\U0002774f", // 𧝏
+ 0x27750: "\x91\f\U00027750", // 𧝐
+ 0x27751: "\x91\f\U00027751", // 𧝑
+ 0x27752: "\x91\f\U00027752", // 𧝒
+ 0x27753: "\x91\f\U00027753", // 𧝓
+ 0x27754: "\x91\f\U00027754", // 𧝔
+ 0x27755: "\x91\f\U00027755", // 𧝕
+ 0x27756: "\x91\f\U00027756", // 𧝖
+ 0x27757: "\x91\f\U00027757", // 𧝗
+ 0x27758: "\x91\f\U00027758", // 𧝘
+ 0x27759: "\x91\f\U00027759", // 𧝙
+ 0x2775a: "\x91\f\U0002775a", // 𧝚
+ 0x2775b: "\x91\f\U0002775b", // 𧝛
+ 0x2775c: "\x91\f\U0002775c", // 𧝜
+ 0x2775d: "\x91\f\U0002775d", // 𧝝
+ 0x2775e: "\x91\f\U0002775e", // 𧝞
+ 0x2775f: "\x91\f\U0002775f", // 𧝟
+ 0x27760: "\x91\f\U00027760", // 𧝠
+ 0x27761: "\x91\f\U00027761", // 𧝡
+ 0x27762: "\x91\f\U00027762", // 𧝢
+ 0x27763: "\x91\f\U00027763", // 𧝣
+ 0x27764: "\x91\f\U00027764", // 𧝤
+ 0x27765: "\x91\f\U00027765", // 𧝥
+ 0x27766: "\x91\f\U00027766", // 𧝦
+ 0x27767: "\x91\f\U00027767", // 𧝧
+ 0x27768: "\x91\f\U00027768", // 𧝨
+ 0x27769: "\x91\f\U00027769", // 𧝩
+ 0x2776a: "\x91\f\U0002776a", // 𧝪
+ 0x2776b: "\x91\f\U0002776b", // 𧝫
+ 0x2776c: "\x91\f\U0002776c", // 𧝬
+ 0x2776d: "\x91\f\U0002776d", // 𧝭
+ 0x2776e: "\x91\f\U0002776e", // 𧝮
+ 0x2776f: "\x91\f\U0002776f", // 𧝯
+ 0x27770: "\x91\f\U00027770", // 𧝰
+ 0x27771: "\x91\r\U00027771", // 𧝱
+ 0x27772: "\x91\r\U00027772", // 𧝲
+ 0x27773: "\x91\r\U00027773", // 𧝳
+ 0x27774: "\x91\r\U00027774", // 𧝴
+ 0x27775: "\x91\r\U00027775", // 𧝵
+ 0x27776: "\x91\r\U00027776", // 𧝶
+ 0x27777: "\x91\r\U00027777", // 𧝷
+ 0x27778: "\x91\r\U00027778", // 𧝸
+ 0x27779: "\x91\r\U00027779", // 𧝹
+ 0x2777a: "\x91\r\U0002777a", // 𧝺
+ 0x2777b: "\x91\r\U0002777b", // 𧝻
+ 0x2777c: "\x91\r\U0002777c", // 𧝼
+ 0x2777d: "\x91\r\U0002777d", // 𧝽
+ 0x2777e: "\x91\r\U0002777e", // 𧝾
+ 0x2777f: "\x91\r\U0002777f", // 𧝿
+ 0x27780: "\x91\r\U00027780", // 𧞀
+ 0x27781: "\x91\r\U00027781", // 𧞁
+ 0x27782: "\x91\r\U00027782", // 𧞂
+ 0x27783: "\x91\r\U00027783", // 𧞃
+ 0x27784: "\x91\r\U00027784", // 𧞄
+ 0x27785: "\x91\r\U00027785", // 𧞅
+ 0x27786: "\x91\r\U00027786", // 𧞆
+ 0x27787: "\x91\r\U00027787", // 𧞇
+ 0x27788: "\x91\r\U00027788", // 𧞈
+ 0x27789: "\x91\r\U00027789", // 𧞉
+ 0x2778a: "\x91\r\U0002778a", // 𧞊
+ 0x2778b: "\x91\r\U0002778b", // 𧞋
+ 0x2778c: "\x91\r\U0002778c", // 𧞌
+ 0x2778d: "\x91\x0e\U0002778d", // 𧞍
+ 0x2778e: "\x91\x0e\U0002778e", // 𧞎
+ 0x2778f: "\x91\x0e\U0002778f", // 𧞏
+ 0x27790: "\x91\x0e\U00027790", // 𧞐
+ 0x27791: "\x91\x0e\U00027791", // 𧞑
+ 0x27792: "\x91\x0e\U00027792", // 𧞒
+ 0x27793: "\x91\x0e\U00027793", // 𧞓
+ 0x27794: "\x91\x0e\U00027794", // 𧞔
+ 0x27795: "\x91\x0e\U00027795", // 𧞕
+ 0x27796: "\x91\x0e\U00027796", // 𧞖
+ 0x27797: "\x91\x0f\U00027797", // 𧞗
+ 0x27798: "\x91\x0e\U00027798", // 𧞘
+ 0x27799: "\x91\x0e\U00027799", // 𧞙
+ 0x2779a: "\x91\x0e\U0002779a", // 𧞚
+ 0x2779b: "\x91\x0e\U0002779b", // 𧞛
+ 0x2779c: "\x91\x0e\U0002779c", // 𧞜
+ 0x2779d: "\x91\x0e\U0002779d", // 𧞝
+ 0x2779e: "\x91\x0e\U0002779e", // 𧞞
+ 0x2779f: "\x91\x0e\U0002779f", // 𧞟
+ 0x277a0: "\x91\x0e\U000277a0", // 𧞠
+ 0x277a1: "\x91\x0e\U000277a1", // 𧞡
+ 0x277a2: "\x91\x0e\U000277a2", // 𧞢
+ 0x277a3: "\x91\x0e\U000277a3", // 𧞣
+ 0x277a4: "\x91\x0e\U000277a4", // 𧞤
+ 0x277a5: "\x91\x0e\U000277a5", // 𧞥
+ 0x277a6: "\x91\x0e\U000277a6", // 𧞦
+ 0x277a7: "\x91\x0f\U000277a7", // 𧞧
+ 0x277a8: "\x91\x0f\U000277a8", // 𧞨
+ 0x277a9: "\x91\x0f\U000277a9", // 𧞩
+ 0x277aa: "\x91\x0f\U000277aa", // 𧞪
+ 0x277ab: "\x91\x0f\U000277ab", // 𧞫
+ 0x277ac: "\x91\x0f\U000277ac", // 𧞬
+ 0x277ad: "\x91\x0f\U000277ad", // 𧞭
+ 0x277ae: "\x91\x0f\U000277ae", // 𧞮
+ 0x277af: "\x91\x0f\U000277af", // 𧞯
+ 0x277b0: "\x91\x0f\U000277b0", // 𧞰
+ 0x277b1: "\x91\x0f\U000277b1", // 𧞱
+ 0x277b2: "\x91\x10\U000277b2", // 𧞲
+ 0x277b3: "\x91\x0f\U000277b3", // 𧞳
+ 0x277b4: "\x91\x0f\U000277b4", // 𧞴
+ 0x277b5: "\x91\x0f\U000277b5", // 𧞵
+ 0x277b6: "\x91\x10\U000277b6", // 𧞶
+ 0x277b7: "\x91\x10\U000277b7", // 𧞷
+ 0x277b8: "\x91\x10\U000277b8", // 𧞸
+ 0x277b9: "\x91\x10\U000277b9", // 𧞹
+ 0x277ba: "\x91\x10\U000277ba", // 𧞺
+ 0x277bb: "\x91\x10\U000277bb", // 𧞻
+ 0x277bc: "\x91\x10\U000277bc", // 𧞼
+ 0x277bd: "\x91\x10\U000277bd", // 𧞽
+ 0x277be: "\x91\x10\U000277be", // 𧞾
+ 0x277bf: "\x91\x10\U000277bf", // 𧞿
+ 0x277c0: "\x91\x10\U000277c0", // 𧟀
+ 0x277c1: "\x91\x10\U000277c1", // 𧟁
+ 0x277c2: "\x91\x10\U000277c2", // 𧟂
+ 0x277c3: "\x91\x11\U000277c3", // 𧟃
+ 0x277c4: "\x91\x11\U000277c4", // 𧟄
+ 0x277c5: "\x91\x11\U000277c5", // 𧟅
+ 0x277c6: "\x91\x11\U000277c6", // 𧟆
+ 0x277c7: "\x91\x11\U000277c7", // 𧟇
+ 0x277c8: "\x91\x12\U000277c8", // 𧟈
+ 0x277c9: "\x91\x12\U000277c9", // 𧟉
+ 0x277ca: "\x91\x12\U000277ca", // 𧟊
+ 0x277cb: "\x91\x12\U000277cb", // 𧟋
+ 0x277cc: "\x91\x13\U000277cc", // 𧟌
+ 0x277cd: "\x91\x13\U000277cd", // 𧟍
+ 0x277ce: "\x91\x13\U000277ce", // 𧟎
+ 0x277cf: "\x91\x13\U000277cf", // 𧟏
+ 0x277d0: "\x91\x14\U000277d0", // 𧟐
+ 0x277d1: "\x91\x14\U000277d1", // 𧟑
+ 0x277d2: "\x91\x14\U000277d2", // 𧟒
+ 0x277d3: "\x91\x14\U000277d3", // 𧟓
+ 0x277d4: "\x91\x14\U000277d4", // 𧟔
+ 0x277d5: "\x91\x15\U000277d5", // 𧟕
+ 0x277d6: "\x91\x15\U000277d6", // 𧟖
+ 0x277d7: "\x91\x15\U000277d7", // 𧟗
+ 0x277d8: "\x91\x16\U000277d8", // 𧟘
+ 0x277d9: "\x91\x18\U000277d9", // 𧟙
+ 0x277da: "\x91\x18\U000277da", // 𧟚
+ 0x277db: "\x91\x1a\U000277db", // 𧟛
+ 0x277dc: "\x91\x1c\U000277dc", // 𧟜
+ 0x277dd: "\x91\x1c\U000277dd", // 𧟝
+ 0x277de: "\x91 \U000277de", // 𧟞
+ 0x277df: "\x91 \U000277df", // 𧟟
+ 0x277e0: "\x92\x01\U000277e0", // 𧟠
+ 0x277e1: "\x92\x01\U000277e1", // 𧟡
+ 0x277e2: "\x92\x01\U000277e2", // 𧟢
+ 0x277e3: "\x92\x02\U000277e3", // 𧟣
+ 0x277e4: "\x92\x03\U000277e4", // 𧟤
+ 0x277e5: "\x92\x03\U000277e5", // 𧟥
+ 0x277e6: "\x92\x03\U000277e6", // 𧟦
+ 0x277e7: "\x92\x04\U000277e7", // 𧟧
+ 0x277e8: "\x92\x04\U000277e8", // 𧟨
+ 0x277e9: "\x92\x04\U000277e9", // 𧟩
+ 0x277ea: "\x92\x05\U000277ea", // 𧟪
+ 0x277eb: "\x92\x05\U000277eb", // 𧟫
+ 0x277ec: "\x92\x05\U000277ec", // 𧟬
+ 0x277ed: "\x92\x06\U000277ed", // 𧟭
+ 0x277ee: "\x92\x06\U000277ee", // 𧟮
+ 0x277ef: "\x92\a\U000277ef", // 𧟯
+ 0x277f0: "\x92\a\U000277f0", // 𧟰
+ 0x277f1: "\x92\b\U000277f1", // 𧟱
+ 0x277f2: "\x92\b\U000277f2", // 𧟲
+ 0x277f3: "\x92\b\U000277f3", // 𧟳
+ 0x277f4: "\x92\b\U000277f4", // 𧟴
+ 0x277f5: "\x92\b\U000277f5", // 𧟵
+ 0x277f6: "\x92\b\U000277f6", // 𧟶
+ 0x277f7: "\x92\b\U000277f7", // 𧟷
+ 0x277f8: "\x92\b\U000277f8", // 𧟸
+ 0x277f9: "\x92\t\U000277f9", // 𧟹
+ 0x277fa: "\x92\t\U000277fa", // 𧟺
+ 0x277fb: "\x92\t\U000277fb", // 𧟻
+ 0x277fc: "\x92\n\U000277fc", // 𧟼
+ 0x277fd: "\x92\n\U000277fd", // 𧟽
+ 0x277fe: "\x92\n\U000277fe", // 𧟾
+ 0x277ff: "\x92\v\U000277ff", // 𧟿
+ 0x27800: "\x92\f\U00027800", // 𧠀
+ 0x27801: "\x92\f\U00027801", // 𧠁
+ 0x27802: "\x92\r\U00027802", // 𧠂
+ 0x27803: "\x92\x0e\U00027803", // 𧠃
+ 0x27804: "\x92\x0f\U00027804", // 𧠄
+ 0x27805: "\x92\x13\U00027805", // 𧠅
+ 0x27806: "\x93\x01\U00027806", // 𧠆
+ 0x27807: "\x93\x01\U00027807", // 𧠇
+ 0x27808: "\x93\x02\U00027808", // 𧠈
+ 0x27809: "\x93\x03\U00027809", // 𧠉
+ 0x2780a: "\x93\x03\U0002780a", // 𧠊
+ 0x2780b: "\x93\x03\U0002780b", // 𧠋
+ 0x2780c: "\x93\x03\U0002780c", // 𧠌
+ 0x2780d: "\x93\x03\U0002780d", // 𧠍
+ 0x2780e: "\x93\x04\U0002780e", // 𧠎
+ 0x2780f: "\x93\x04\U0002780f", // 𧠏
+ 0x27810: "\x93\x04\U00027810", // 𧠐
+ 0x27811: "\x93\x04\U00027811", // 𧠑
+ 0x27812: "\x93\x04\U00027812", // 𧠒
+ 0x27813: "\x93\x04\U00027813", // 𧠓
+ 0x27814: "\x93\x04\U00027814", // 𧠔
+ 0x27815: "\x93\x04\U00027815", // 𧠕
+ 0x27816: "\x93\x04\U00027816", // 𧠖
+ 0x27817: "\x93\x04\U00027817", // 𧠗
+ 0x27818: "\x93\x04\U00027818", // 𧠘
+ 0x27819: "\x93\x04\U00027819", // 𧠙
+ 0x2781a: "\x93\x04\U0002781a", // 𧠚
+ 0x2781b: "\x93\x04\U0002781b", // 𧠛
+ 0x2781c: "\x93\x05\U0002781c", // 𧠜
+ 0x2781d: "\x93\x05\U0002781d", // 𧠝
+ 0x2781e: "\x93\x05\U0002781e", // 𧠞
+ 0x2781f: "\x93\x05\U0002781f", // 𧠟
+ 0x27820: "\x93\x05\U00027820", // 𧠠
+ 0x27821: "\x93\x05\U00027821", // 𧠡
+ 0x27822: "\x93\x05\U00027822", // 𧠢
+ 0x27823: "\x93\x05\U00027823", // 𧠣
+ 0x27824: "\x93\x05\U00027824", // 𧠤
+ 0x27825: "\x93\x05\U00027825", // 𧠥
+ 0x27826: "\x93\x05\U00027826", // 𧠦
+ 0x27827: "\x93\x05\U00027827", // 𧠧
+ 0x27828: "\x93\x06\U00027828", // 𧠨
+ 0x27829: "\x93\x06\U00027829", // 𧠩
+ 0x2782a: "\x93\x06\U0002782a", // 𧠪
+ 0x2782b: "\x93\x06\U0002782b", // 𧠫
+ 0x2782c: "\x93\x06\U0002782c", // 𧠬
+ 0x2782d: "\x93\x06\U0002782d", // 𧠭
+ 0x2782e: "\x93\x06\U0002782e", // 𧠮
+ 0x2782f: "\x93\x06\U0002782f", // 𧠯
+ 0x27830: "\x93\x06\U00027830", // 𧠰
+ 0x27831: "\x93\x06\U00027831", // 𧠱
+ 0x27832: "\x93\x06\U00027832", // 𧠲
+ 0x27833: "\x93\x06\U00027833", // 𧠳
+ 0x27834: "\x93\x06\U00027834", // 𧠴
+ 0x27835: "\x93\x06\U00027835", // 𧠵
+ 0x27836: "\x93\x06\U00027836", // 𧠶
+ 0x27837: "\x93\x06\U00027837", // 𧠷
+ 0x27838: "\x93\x06\U00027838", // 𧠸
+ 0x27839: "\x93\x06\U00027839", // 𧠹
+ 0x2783a: "\x93\x06\U0002783a", // 𧠺
+ 0x2783b: "\x93\a\U0002783b", // 𧠻
+ 0x2783c: "\x93\a\U0002783c", // 𧠼
+ 0x2783d: "\x93\a\U0002783d", // 𧠽
+ 0x2783e: "\x93\a\U0002783e", // 𧠾
+ 0x2783f: "\x93\a\U0002783f", // 𧠿
+ 0x27840: "\x93\a\U00027840", // 𧡀
+ 0x27841: "\x93\a\U00027841", // 𧡁
+ 0x27842: "\x93\a\U00027842", // 𧡂
+ 0x27843: "\x93\a\U00027843", // 𧡃
+ 0x27844: "\x93\a\U00027844", // 𧡄
+ 0x27845: "\x93\a\U00027845", // 𧡅
+ 0x27846: "\x93\a\U00027846", // 𧡆
+ 0x27847: "\x93\a\U00027847", // 𧡇
+ 0x27848: "\x93\a\U00027848", // 𧡈
+ 0x27849: "\x93\a\U00027849", // 𧡉
+ 0x2784a: "\x93\a\U0002784a", // 𧡊
+ 0x2784b: "\x93\b\U0002784b", // 𧡋
+ 0x2784c: "\x93\b\U0002784c", // 𧡌
+ 0x2784d: "\x93\b\U0002784d", // 𧡍
+ 0x2784e: "\x93\b\U0002784e", // 𧡎
+ 0x2784f: "\x93\b\U0002784f", // 𧡏
+ 0x27850: "\x93\b\U00027850", // 𧡐
+ 0x27851: "\x93\b\U00027851", // 𧡑
+ 0x27852: "\x93\b\U00027852", // 𧡒
+ 0x27853: "\x93\b\U00027853", // 𧡓
+ 0x27854: "\x93\b\U00027854", // 𧡔
+ 0x27855: "\x93\b\U00027855", // 𧡕
+ 0x27856: "\x93\b\U00027856", // 𧡖
+ 0x27857: "\x93\b\U00027857", // 𧡗
+ 0x27858: "\x93\b\U00027858", // 𧡘
+ 0x27859: "\x93\b\U00027859", // 𧡙
+ 0x2785a: "\x93\b\U0002785a", // 𧡚
+ 0x2785b: "\x93\b\U0002785b", // 𧡛
+ 0x2785c: "\x93\b\U0002785c", // 𧡜
+ 0x2785d: "\x93\b\U0002785d", // 𧡝
+ 0x2785e: "\x93\b\U0002785e", // 𧡞
+ 0x2785f: "\x93\b\U0002785f", // 𧡟
+ 0x27860: "\x93\b\U00027860", // 𧡠
+ 0x27861: "\x93\t\U00027861", // 𧡡
+ 0x27862: "\x93\t\U00027862", // 𧡢
+ 0x27863: "\x93\t\U00027863", // 𧡣
+ 0x27864: "\x93\t\U00027864", // 𧡤
+ 0x27865: "\x93\t\U00027865", // 𧡥
+ 0x27866: "\x93\t\U00027866", // 𧡦
+ 0x27867: "\x93\t\U00027867", // 𧡧
+ 0x27868: "\x93\t\U00027868", // 𧡨
+ 0x27869: "\x93\t\U00027869", // 𧡩
+ 0x2786a: "\x93\t\U0002786a", // 𧡪
+ 0x2786b: "\x93\t\U0002786b", // 𧡫
+ 0x2786c: "\x93\t\U0002786c", // 𧡬
+ 0x2786d: "\x93\t\U0002786d", // 𧡭
+ 0x2786e: "\x93\t\U0002786e", // 𧡮
+ 0x2786f: "\x93\t\U0002786f", // 𧡯
+ 0x27870: "\x93\t\U00027870", // 𧡰
+ 0x27871: "\x93\t\U00027871", // 𧡱
+ 0x27872: "\x93\t\U00027872", // 𧡲
+ 0x27873: "\x93\t\U00027873", // 𧡳
+ 0x27874: "\x93\t\U00027874", // 𧡴
+ 0x27875: "\x93\t\U00027875", // 𧡵
+ 0x27876: "\x93\t\U00027876", // 𧡶
+ 0x27877: "\x93\n\U00027877", // 𧡷
+ 0x27878: "\x93\n\U00027878", // 𧡸
+ 0x27879: "\x93\n\U00027879", // 𧡹
+ 0x2787a: "\x93\n\U0002787a", // 𧡺
+ 0x2787b: "\x93\n\U0002787b", // 𧡻
+ 0x2787c: "\x93\n\U0002787c", // 𧡼
+ 0x2787d: "\x93\n\U0002787d", // 𧡽
+ 0x2787e: "\x93\n\U0002787e", // 𧡾
+ 0x2787f: "\x93\n\U0002787f", // 𧡿
+ 0x27880: "\x93\n\U00027880", // 𧢀
+ 0x27881: "\x93\n\U00027881", // 𧢁
+ 0x27882: "\x93\v\U00027882", // 𧢂
+ 0x27883: "\x93\v\U00027883", // 𧢃
+ 0x27884: "\x93\v\U00027884", // 𧢄
+ 0x27885: "\x93\v\U00027885", // 𧢅
+ 0x27886: "\x93\v\U00027886", // 𧢆
+ 0x27887: "\x93\v\U00027887", // 𧢇
+ 0x27888: "\x93\v\U00027888", // 𧢈
+ 0x27889: "\x93\v\U00027889", // 𧢉
+ 0x2788a: "\x93\v\U0002788a", // 𧢊
+ 0x2788b: "\x93\v\U0002788b", // 𧢋
+ 0x2788c: "\x93\f\U0002788c", // 𧢌
+ 0x2788d: "\x93\f\U0002788d", // 𧢍
+ 0x2788e: "\x93\f\U0002788e", // 𧢎
+ 0x2788f: "\x93\f\U0002788f", // 𧢏
+ 0x27890: "\x93\f\U00027890", // 𧢐
+ 0x27891: "\x93\f\U00027891", // 𧢑
+ 0x27892: "\x93\r\U00027892", // 𧢒
+ 0x27893: "\x93\r\U00027893", // 𧢓
+ 0x27894: "\x93\r\U00027894", // 𧢔
+ 0x27895: "\x93\r\U00027895", // 𧢕
+ 0x27896: "\x93\r\U00027896", // 𧢖
+ 0x27897: "\x93\r\U00027897", // 𧢗
+ 0x27898: "\x93\x0e\U00027898", // 𧢘
+ 0x27899: "\x93\x0e\U00027899", // 𧢙
+ 0x2789a: "\x93\x0e\U0002789a", // 𧢚
+ 0x2789b: "\x93\x0e\U0002789b", // 𧢛
+ 0x2789c: "\x93\x0f\U0002789c", // 𧢜
+ 0x2789d: "\x93\x0f\U0002789d", // 𧢝
+ 0x2789e: "\x93\x0f\U0002789e", // 𧢞
+ 0x2789f: "\x93\x0f\U0002789f", // 𧢟
+ 0x278a0: "\x93\x0f\U000278a0", // 𧢠
+ 0x278a1: "\x93\x0f\U000278a1", // 𧢡
+ 0x278a2: "\x93\x11\U000278a2", // 𧢢
+ 0x278a3: "\x93\x11\U000278a3", // 𧢣
+ 0x278a4: "\x93\x11\U000278a4", // 𧢤
+ 0x278a5: "\x93\x11\U000278a5", // 𧢥
+ 0x278a6: "\x93\x12\U000278a6", // 𧢦
+ 0x278a7: "\x93\x12\U000278a7", // 𧢧
+ 0x278a8: "\x93\x12\U000278a8", // 𧢨
+ 0x278a9: "\x93\x12\U000278a9", // 𧢩
+ 0x278aa: "\x93\x12\U000278aa", // 𧢪
+ 0x278ab: "\x93\x12\U000278ab", // 𧢫
+ 0x278ac: "\x93\x13\U000278ac", // 𧢬
+ 0x278ad: "\x93\x14\U000278ad", // 𧢭
+ 0x278ae: "\x93\x15\U000278ae", // 𧢮
+ 0x278af: "\x93\x1b\U000278af", // 𧢯
+ 0x278b0: "\x93\x1e\U000278b0", // 𧢰
+ 0x278b1: "\x93%\U000278b1", // 𧢱
+ 0x278b2: "\x94\x00\U000278b2", // 𧢲
+ 0x278b3: "\x94\x01\U000278b3", // 𧢳
+ 0x278b4: "\x94\x02\U000278b4", // 𧢴
+ 0x278b5: "\x94\x02\U000278b5", // 𧢵
+ 0x278b6: "\x94\x02\U000278b6", // 𧢶
+ 0x278b7: "\x94\x03\U000278b7", // 𧢷
+ 0x278b8: "\x94\x03\U000278b8", // 𧢸
+ 0x278b9: "\x94\x03\U000278b9", // 𧢹
+ 0x278ba: "\x94\x03\U000278ba", // 𧢺
+ 0x278bb: "\x94\x04\U000278bb", // 𧢻
+ 0x278bc: "\x94\x04\U000278bc", // 𧢼
+ 0x278bd: "\x94\x04\U000278bd", // 𧢽
+ 0x278be: "\x94\x04\U000278be", // 𧢾
+ 0x278bf: "\x94\x04\U000278bf", // 𧢿
+ 0x278c0: "\x94\x04\U000278c0", // 𧣀
+ 0x278c1: "\x94\x04\U000278c1", // 𧣁
+ 0x278c2: "\x94\x04\U000278c2", // 𧣂
+ 0x278c3: "\x94\x04\U000278c3", // 𧣃
+ 0x278c4: "\x94\x04\U000278c4", // 𧣄
+ 0x278c5: "\x94\x04\U000278c5", // 𧣅
+ 0x278c6: "\x94\x04\U000278c6", // 𧣆
+ 0x278c7: "\x94\x04\U000278c7", // 𧣇
+ 0x278c8: "\x94\x04\U000278c8", // 𧣈
+ 0x278c9: "\x94\x04\U000278c9", // 𧣉
+ 0x278ca: "\x94\x04\U000278ca", // 𧣊
+ 0x278cb: "\x94\x04\U000278cb", // 𧣋
+ 0x278cc: "\x94\x04\U000278cc", // 𧣌
+ 0x278cd: "\x94\x04\U000278cd", // 𧣍
+ 0x278ce: "\x94\x04\U000278ce", // 𧣎
+ 0x278cf: "\x94\x04\U000278cf", // 𧣏
+ 0x278d0: "\x94\x04\U000278d0", // 𧣐
+ 0x278d1: "\x94\x05\U000278d1", // 𧣑
+ 0x278d2: "\x94\x05\U000278d2", // 𧣒
+ 0x278d3: "\x94\x05\U000278d3", // 𧣓
+ 0x278d4: "\x94\x05\U000278d4", // 𧣔
+ 0x278d5: "\x94\x05\U000278d5", // 𧣕
+ 0x278d6: "\x94\x05\U000278d6", // 𧣖
+ 0x278d7: "\x94\x05\U000278d7", // 𧣗
+ 0x278d8: "\x94\x05\U000278d8", // 𧣘
+ 0x278d9: "\x94\x05\U000278d9", // 𧣙
+ 0x278da: "\x94\x05\U000278da", // 𧣚
+ 0x278db: "\x94\x05\U000278db", // 𧣛
+ 0x278dc: "\x94\x05\U000278dc", // 𧣜
+ 0x278dd: "\x94\x05\U000278dd", // 𧣝
+ 0x278de: "\x94\x05\U000278de", // 𧣞
+ 0x278df: "\x94\x05\U000278df", // 𧣟
+ 0x278e0: "\x94\x05\U000278e0", // 𧣠
+ 0x278e1: "\x94\x06\U000278e1", // 𧣡
+ 0x278e2: "\x94\x06\U000278e2", // 𧣢
+ 0x278e3: "\x94\x06\U000278e3", // 𧣣
+ 0x278e4: "\x94\x06\U000278e4", // 𧣤
+ 0x278e5: "\x94\x06\U000278e5", // 𧣥
+ 0x278e6: "\x94\x06\U000278e6", // 𧣦
+ 0x278e7: "\x94\x06\U000278e7", // 𧣧
+ 0x278e8: "\x94\a\U000278e8", // 𧣨
+ 0x278e9: "\x94\a\U000278e9", // 𧣩
+ 0x278ea: "\x94\a\U000278ea", // 𧣪
+ 0x278eb: "\x94\a\U000278eb", // 𧣫
+ 0x278ec: "\x94\a\U000278ec", // 𧣬
+ 0x278ed: "\x94\a\U000278ed", // 𧣭
+ 0x278ee: "\x94\a\U000278ee", // 𧣮
+ 0x278ef: "\x94\a\U000278ef", // 𧣯
+ 0x278f0: "\x94\a\U000278f0", // 𧣰
+ 0x278f1: "\x94\a\U000278f1", // 𧣱
+ 0x278f2: "\x94\a\U000278f2", // 𧣲
+ 0x278f3: "\x94\a\U000278f3", // 𧣳
+ 0x278f4: "\x94\b\U000278f4", // 𧣴
+ 0x278f5: "\x94\b\U000278f5", // 𧣵
+ 0x278f6: "\x94\b\U000278f6", // 𧣶
+ 0x278f7: "\x94\b\U000278f7", // 𧣷
+ 0x278f8: "\x94\b\U000278f8", // 𧣸
+ 0x278f9: "\x94\b\U000278f9", // 𧣹
+ 0x278fa: "\x94\b\U000278fa", // 𧣺
+ 0x278fb: "\x94\b\U000278fb", // 𧣻
+ 0x278fc: "\x94\b\U000278fc", // 𧣼
+ 0x278fd: "\x94\b\U000278fd", // 𧣽
+ 0x278fe: "\x94\b\U000278fe", // 𧣾
+ 0x278ff: "\x94\b\U000278ff", // 𧣿
+ 0x27900: "\x94\b\U00027900", // 𧤀
+ 0x27901: "\x94\b\U00027901", // 𧤁
+ 0x27902: "\x94\b\U00027902", // 𧤂
+ 0x27903: "\x94\b\U00027903", // 𧤃
+ 0x27904: "\x94\b\U00027904", // 𧤄
+ 0x27905: "\x94\b\U00027905", // 𧤅
+ 0x27906: "\x94\b\U00027906", // 𧤆
+ 0x27907: "\x94\b\U00027907", // 𧤇
+ 0x27908: "\x94\b\U00027908", // 𧤈
+ 0x27909: "\x94\b\U00027909", // 𧤉
+ 0x2790a: "\x94\b\U0002790a", // 𧤊
+ 0x2790b: "\x94\t\U0002790b", // 𧤋
+ 0x2790c: "\x94\t\U0002790c", // 𧤌
+ 0x2790d: "\x94\t\U0002790d", // 𧤍
+ 0x2790e: "\x94\t\U0002790e", // 𧤎
+ 0x2790f: "\x94\t\U0002790f", // 𧤏
+ 0x27910: "\x94\t\U00027910", // 𧤐
+ 0x27911: "\x94\t\U00027911", // 𧤑
+ 0x27912: "\x94\t\U00027912", // 𧤒
+ 0x27913: "\x94\t\U00027913", // 𧤓
+ 0x27914: "\x94\t\U00027914", // 𧤔
+ 0x27915: "\x94\t\U00027915", // 𧤕
+ 0x27916: "\x94\t\U00027916", // 𧤖
+ 0x27917: "\x94\t\U00027917", // 𧤗
+ 0x27918: "\x94\t\U00027918", // 𧤘
+ 0x27919: "\x94\t\U00027919", // 𧤙
+ 0x2791a: "\x94\t\U0002791a", // 𧤚
+ 0x2791b: "\x94\n\U0002791b", // 𧤛
+ 0x2791c: "\x94\n\U0002791c", // 𧤜
+ 0x2791d: "\x94\n\U0002791d", // 𧤝
+ 0x2791e: "\x94\n\U0002791e", // 𧤞
+ 0x2791f: "\x94\n\U0002791f", // 𧤟
+ 0x27920: "\x94\n\U00027920", // 𧤠
+ 0x27921: "\x94\n\U00027921", // 𧤡
+ 0x27922: "\x94\t\U00027922", // 𧤢
+ 0x27923: "\x94\n\U00027923", // 𧤣
+ 0x27924: "\x94\n\U00027924", // 𧤤
+ 0x27925: "\x94\n\U00027925", // 𧤥
+ 0x27926: "\x94\n\U00027926", // 𧤦
+ 0x27927: "\x94\n\U00027927", // 𧤧
+ 0x27928: "\x94\n\U00027928", // 𧤨
+ 0x27929: "\x94\n\U00027929", // 𧤩
+ 0x2792a: "\x94\n\U0002792a", // 𧤪
+ 0x2792b: "\x94\n\U0002792b", // 𧤫
+ 0x2792c: "\x94\n\U0002792c", // 𧤬
+ 0x2792d: "\x94\n\U0002792d", // 𧤭
+ 0x2792e: "\x94\n\U0002792e", // 𧤮
+ 0x2792f: "\x94\v\U0002792f", // 𧤯
+ 0x27930: "\x94\v\U00027930", // 𧤰
+ 0x27931: "\x94\v\U00027931", // 𧤱
+ 0x27932: "\x94\v\U00027932", // 𧤲
+ 0x27933: "\x94\v\U00027933", // 𧤳
+ 0x27934: "\x94\v\U00027934", // 𧤴
+ 0x27935: "\x94\v\U00027935", // 𧤵
+ 0x27936: "\x94\v\U00027936", // 𧤶
+ 0x27937: "\x94\v\U00027937", // 𧤷
+ 0x27938: "\x94\v\U00027938", // 𧤸
+ 0x27939: "\x94\v\U00027939", // 𧤹
+ 0x2793a: "\x94\f\U0002793a", // 𧤺
+ 0x2793b: "\x94\f\U0002793b", // 𧤻
+ 0x2793c: "\x94\f\U0002793c", // 𧤼
+ 0x2793d: "\x94\f\U0002793d", // 𧤽
+ 0x2793e: "\x94\f\U0002793e", // 𧤾
+ 0x2793f: "\x94\f\U0002793f", // 𧤿
+ 0x27940: "\x94\f\U00027940", // 𧥀
+ 0x27941: "\x94\f\U00027941", // 𧥁
+ 0x27942: "\x94\f\U00027942", // 𧥂
+ 0x27943: "\x94\f\U00027943", // 𧥃
+ 0x27944: "\x94\r\U00027944", // 𧥄
+ 0x27945: "\x94\r\U00027945", // 𧥅
+ 0x27946: "\x94\r\U00027946", // 𧥆
+ 0x27947: "\x94\r\U00027947", // 𧥇
+ 0x27948: "\x94\x0e\U00027948", // 𧥈
+ 0x27949: "\x94\x0e\U00027949", // 𧥉
+ 0x2794a: "\x94\x0e\U0002794a", // 𧥊
+ 0x2794b: "\x94\x0e\U0002794b", // 𧥋
+ 0x2794c: "\x94\x0f\U0002794c", // 𧥌
+ 0x2794d: "\x94\x0f\U0002794d", // 𧥍
+ 0x2794e: "\x94\x0f\U0002794e", // 𧥎
+ 0x2794f: "\x94\x0f\U0002794f", // 𧥏
+ 0x27950: "\x94\x0f\U00027950", // 𧥐
+ 0x27951: "\x94\x10\U00027951", // 𧥑
+ 0x27952: "\x94\x10\U00027952", // 𧥒
+ 0x27953: "\x94\x11\U00027953", // 𧥓
+ 0x27954: "\x94\x11\U00027954", // 𧥔
+ 0x27955: "\x94\x12\U00027955", // 𧥕
+ 0x27956: "\x94\x13\U00027956", // 𧥖
+ 0x27957: "\x94\x15\U00027957", // 𧥗
+ 0x27958: "\x94\x15\U00027958", // 𧥘
+ 0x27959: "\x94\x16\U00027959", // 𧥙
+ 0x2795a: "\x94\x16\U0002795a", // 𧥚
+ 0x2795b: "\x95\x00\U0002795b", // 𧥛
+ 0x2795c: "\x95\x00\U0002795c", // 𧥜
+ 0x2795d: "\x95\x01\U0002795d", // 𧥝
+ 0x2795e: "\x95\x01\U0002795e", // 𧥞
+ 0x2795f: "\x95\x01\U0002795f", // 𧥟
+ 0x27960: "\x95\x02\U00027960", // 𧥠
+ 0x27961: "\x95\x03\U00027961", // 𧥡
+ 0x27962: "\x95\x03\U00027962", // 𧥢
+ 0x27963: "\x95\x03\U00027963", // 𧥣
+ 0x27964: "\x95\x03\U00027964", // 𧥤
+ 0x27965: "\x95\x03\U00027965", // 𧥥
+ 0x27966: "\x95\x03\U00027966", // 𧥦
+ 0x27967: "\x95\x03\U00027967", // 𧥧
+ 0x27968: "\x95\x03\U00027968", // 𧥨
+ 0x27969: "\x95\x03\U00027969", // 𧥩
+ 0x2796a: "\x95\x03\U0002796a", // 𧥪
+ 0x2796b: "\x95\x03\U0002796b", // 𧥫
+ 0x2796c: "\x95\x03\U0002796c", // 𧥬
+ 0x2796d: "\x95\x03\U0002796d", // 𧥭
+ 0x2796e: "\x95\x04\U0002796e", // 𧥮
+ 0x2796f: "\x95\x04\U0002796f", // 𧥯
+ 0x27970: "\x95\x04\U00027970", // 𧥰
+ 0x27971: "\x95\x04\U00027971", // 𧥱
+ 0x27972: "\x95\x04\U00027972", // 𧥲
+ 0x27973: "\x95\x04\U00027973", // 𧥳
+ 0x27974: "\x95\x04\U00027974", // 𧥴
+ 0x27975: "\x95\x04\U00027975", // 𧥵
+ 0x27976: "\x95\x04\U00027976", // 𧥶
+ 0x27977: "\x95\x04\U00027977", // 𧥷
+ 0x27978: "\x95\x04\U00027978", // 𧥸
+ 0x27979: "\x95\x04\U00027979", // 𧥹
+ 0x2797a: "\x95\x04\U0002797a", // 𧥺
+ 0x2797b: "\x95\x04\U0002797b", // 𧥻
+ 0x2797c: "\x95\x04\U0002797c", // 𧥼
+ 0x2797d: "\x95\x04\U0002797d", // 𧥽
+ 0x2797e: "\x95\x04\U0002797e", // 𧥾
+ 0x2797f: "\x95\x04\U0002797f", // 𧥿
+ 0x27980: "\x95\x04\U00027980", // 𧦀
+ 0x27981: "\x95\x04\U00027981", // 𧦁
+ 0x27982: "\x95\x04\U00027982", // 𧦂
+ 0x27983: "\x95\x04\U00027983", // 𧦃
+ 0x27984: "\x95\x04\U00027984", // 𧦄
+ 0x27985: "\x95\x04\U00027985", // 𧦅
+ 0x27986: "\x95\x04\U00027986", // 𧦆
+ 0x27987: "\x95\x04\U00027987", // 𧦇
+ 0x27988: "\x95\x04\U00027988", // 𧦈
+ 0x27989: "\x95\x04\U00027989", // 𧦉
+ 0x2798a: "\x95\x04\U0002798a", // 𧦊
+ 0x2798b: "\x95\x04\U0002798b", // 𧦋
+ 0x2798c: "\x95\x04\U0002798c", // 𧦌
+ 0x2798d: "\x95\x04\U0002798d", // 𧦍
+ 0x2798e: "\x95\x04\U0002798e", // 𧦎
+ 0x2798f: "\x95\x04\U0002798f", // 𧦏
+ 0x27990: "\x95\x04\U00027990", // 𧦐
+ 0x27991: "\x95\x04\U00027991", // 𧦑
+ 0x27992: "\x95\x04\U00027992", // 𧦒
+ 0x27993: "\x95\x04\U00027993", // 𧦓
+ 0x27994: "\x95\x04\U00027994", // 𧦔
+ 0x27995: "\x95\x04\U00027995", // 𧦕
+ 0x27996: "\x95\x04\U00027996", // 𧦖
+ 0x27997: "\x95\x04\U00027997", // 𧦗
+ 0x27998: "\x95\x04\U00027998", // 𧦘
+ 0x27999: "\x95\x04\U00027999", // 𧦙
+ 0x2799a: "\x95\x04\U0002799a", // 𧦚
+ 0x2799b: "\x95\x04\U0002799b", // 𧦛
+ 0x2799c: "\x95\x05\U0002799c", // 𧦜
+ 0x2799d: "\x95\x05\U0002799d", // 𧦝
+ 0x2799e: "\x95\x05\U0002799e", // 𧦞
+ 0x2799f: "\x95\x05\U0002799f", // 𧦟
+ 0x279a0: "\x95\x05\U000279a0", // 𧦠
+ 0x279a1: "\x95\x05\U000279a1", // 𧦡
+ 0x279a2: "\x95\x05\U000279a2", // 𧦢
+ 0x279a3: "\x95\x05\U000279a3", // 𧦣
+ 0x279a4: "\x95\x05\U000279a4", // 𧦤
+ 0x279a5: "\x95\x05\U000279a5", // 𧦥
+ 0x279a6: "\x95\x05\U000279a6", // 𧦦
+ 0x279a7: "\x95\x05\U000279a7", // 𧦧
+ 0x279a8: "\x95\x05\U000279a8", // 𧦨
+ 0x279a9: "\x95\x05\U000279a9", // 𧦩
+ 0x279aa: "\x95\x05\U000279aa", // 𧦪
+ 0x279ab: "\x95\x05\U000279ab", // 𧦫
+ 0x279ac: "\x95\x05\U000279ac", // 𧦬
+ 0x279ad: "\x95\x05\U000279ad", // 𧦭
+ 0x279ae: "\x95\x05\U000279ae", // 𧦮
+ 0x279af: "\x95\x05\U000279af", // 𧦯
+ 0x279b0: "\x95\x05\U000279b0", // 𧦰
+ 0x279b1: "\x95\x05\U000279b1", // 𧦱
+ 0x279b2: "\x95\x05\U000279b2", // 𧦲
+ 0x279b3: "\x95\x05\U000279b3", // 𧦳
+ 0x279b4: "\x95\x05\U000279b4", // 𧦴
+ 0x279b5: "\x95\x05\U000279b5", // 𧦵
+ 0x279b6: "\x95\x05\U000279b6", // 𧦶
+ 0x279b7: "\x95\x05\U000279b7", // 𧦷
+ 0x279b8: "\x95\x05\U000279b8", // 𧦸
+ 0x279b9: "\x95\x05\U000279b9", // 𧦹
+ 0x279ba: "\x95\x05\U000279ba", // 𧦺
+ 0x279bb: "\x95\x05\U000279bb", // 𧦻
+ 0x279bc: "\x95\x05\U000279bc", // 𧦼
+ 0x279bd: "\x95\x05\U000279bd", // 𧦽
+ 0x279be: "\x95\x05\U000279be", // 𧦾
+ 0x279bf: "\x95\x05\U000279bf", // 𧦿
+ 0x279c0: "\x95\x05\U000279c0", // 𧧀
+ 0x279c1: "\x95\x05\U000279c1", // 𧧁
+ 0x279c2: "\x95\x05\U000279c2", // 𧧂
+ 0x279c3: "\x95\x06\U000279c3", // 𧧃
+ 0x279c4: "\x95\x06\U000279c4", // 𧧄
+ 0x279c5: "\x95\x06\U000279c5", // 𧧅
+ 0x279c6: "\x95\x06\U000279c6", // 𧧆
+ 0x279c7: "\x95\x06\U000279c7", // 𧧇
+ 0x279c8: "\x95\x06\U000279c8", // 𧧈
+ 0x279c9: "\x95\x06\U000279c9", // 𧧉
+ 0x279ca: "\x95\x06\U000279ca", // 𧧊
+ 0x279cb: "\x95\x06\U000279cb", // 𧧋
+ 0x279cc: "\x95\x06\U000279cc", // 𧧌
+ 0x279cd: "\x95\x06\U000279cd", // 𧧍
+ 0x279ce: "\x95\x06\U000279ce", // 𧧎
+ 0x279cf: "\x95\x06\U000279cf", // 𧧏
+ 0x279d0: "\x95\x06\U000279d0", // 𧧐
+ 0x279d1: "\x95\x06\U000279d1", // 𧧑
+ 0x279d2: "\x95\x06\U000279d2", // 𧧒
+ 0x279d3: "\x95\x06\U000279d3", // 𧧓
+ 0x279d4: "\x95\x06\U000279d4", // 𧧔
+ 0x279d5: "\x95\x06\U000279d5", // 𧧕
+ 0x279d6: "\x95\x06\U000279d6", // 𧧖
+ 0x279d7: "\x95\x06\U000279d7", // 𧧗
+ 0x279d8: "\x95\x06\U000279d8", // 𧧘
+ 0x279d9: "\x95\x06\U000279d9", // 𧧙
+ 0x279da: "\x95\x06\U000279da", // 𧧚
+ 0x279db: "\x95\x06\U000279db", // 𧧛
+ 0x279dc: "\x95\x06\U000279dc", // 𧧜
+ 0x279dd: "\x95\x06\U000279dd", // 𧧝
+ 0x279de: "\x95\x06\U000279de", // 𧧞
+ 0x279df: "\x95\x06\U000279df", // 𧧟
+ 0x279e0: "\x95\x06\U000279e0", // 𧧠
+ 0x279e1: "\x95\x06\U000279e1", // 𧧡
+ 0x279e2: "\x95\x06\U000279e2", // 𧧢
+ 0x279e3: "\x95\x06\U000279e3", // 𧧣
+ 0x279e4: "\x95\x06\U000279e4", // 𧧤
+ 0x279e5: "\x95\x06\U000279e5", // 𧧥
+ 0x279e6: "\x95\x06\U000279e6", // 𧧦
+ 0x279e7: "\x95\x06\U000279e7", // 𧧧
+ 0x279e8: "\x95\x06\U000279e8", // 𧧨
+ 0x279e9: "\x95\x06\U000279e9", // 𧧩
+ 0x279ea: "\x95\x06\U000279ea", // 𧧪
+ 0x279eb: "\x95\x06\U000279eb", // 𧧫
+ 0x279ec: "\x95\x06\U000279ec", // 𧧬
+ 0x279ed: "\x95\x06\U000279ed", // 𧧭
+ 0x279ee: "\x95\x06\U000279ee", // 𧧮
+ 0x279ef: "\x95\x06\U000279ef", // 𧧯
+ 0x279f0: "\x95\x06\U000279f0", // 𧧰
+ 0x279f1: "\x95\x06\U000279f1", // 𧧱
+ 0x279f2: "\x95\x06\U000279f2", // 𧧲
+ 0x279f3: "\x95\x06\U000279f3", // 𧧳
+ 0x279f4: "\x95\a\U000279f4", // 𧧴
+ 0x279f5: "\x95\a\U000279f5", // 𧧵
+ 0x279f6: "\x95\a\U000279f6", // 𧧶
+ 0x279f7: "\x95\a\U000279f7", // 𧧷
+ 0x279f8: "\x95\a\U000279f8", // 𧧸
+ 0x279f9: "\x95\a\U000279f9", // 𧧹
+ 0x279fa: "\x95\a\U000279fa", // 𧧺
+ 0x279fb: "\x95\a\U000279fb", // 𧧻
+ 0x279fc: "\x95\a\U000279fc", // 𧧼
+ 0x279fd: "\x95\a\U000279fd", // 𧧽
+ 0x279fe: "\x95\a\U000279fe", // 𧧾
+ 0x279ff: "\x95\a\U000279ff", // 𧧿
+ 0x27a00: "\x95\a\U00027a00", // 𧨀
+ 0x27a01: "\x95\a\U00027a01", // 𧨁
+ 0x27a02: "\x95\a\U00027a02", // 𧨂
+ 0x27a03: "\x95\a\U00027a03", // 𧨃
+ 0x27a04: "\x95\a\U00027a04", // 𧨄
+ 0x27a05: "\x95\a\U00027a05", // 𧨅
+ 0x27a06: "\x95\a\U00027a06", // 𧨆
+ 0x27a07: "\x95\a\U00027a07", // 𧨇
+ 0x27a08: "\x95\a\U00027a08", // 𧨈
+ 0x27a09: "\x95\a\U00027a09", // 𧨉
+ 0x27a0a: "\x95\a\U00027a0a", // 𧨊
+ 0x27a0b: "\x95\a\U00027a0b", // 𧨋
+ 0x27a0c: "\x95\a\U00027a0c", // 𧨌
+ 0x27a0d: "\x95\a\U00027a0d", // 𧨍
+ 0x27a0e: "\x95\a\U00027a0e", // 𧨎
+ 0x27a0f: "\x95\a\U00027a0f", // 𧨏
+ 0x27a10: "\x95\a\U00027a10", // 𧨐
+ 0x27a11: "\x95\a\U00027a11", // 𧨑
+ 0x27a12: "\x95\a\U00027a12", // 𧨒
+ 0x27a13: "\x95\a\U00027a13", // 𧨓
+ 0x27a14: "\x95\a\U00027a14", // 𧨔
+ 0x27a15: "\x95\a\U00027a15", // 𧨕
+ 0x27a16: "\x95\a\U00027a16", // 𧨖
+ 0x27a17: "\x95\a\U00027a17", // 𧨗
+ 0x27a18: "\x95\a\U00027a18", // 𧨘
+ 0x27a19: "\x95\a\U00027a19", // 𧨙
+ 0x27a1a: "\x95\a\U00027a1a", // 𧨚
+ 0x27a1b: "\x95\a\U00027a1b", // 𧨛
+ 0x27a1c: "\x95\x06\U00027a1c", // 𧨜
+ 0x27a1d: "\x95\a\U00027a1d", // 𧨝
+ 0x27a1e: "\x95\a\U00027a1e", // 𧨞
+ 0x27a1f: "\x95\a\U00027a1f", // 𧨟
+ 0x27a20: "\x95\a\U00027a20", // 𧨠
+ 0x27a21: "\x95\a\U00027a21", // 𧨡
+ 0x27a22: "\x95\a\U00027a22", // 𧨢
+ 0x27a23: "\x95\a\U00027a23", // 𧨣
+ 0x27a24: "\x95\a\U00027a24", // 𧨤
+ 0x27a25: "\x95\a\U00027a25", // 𧨥
+ 0x27a26: "\x95\b\U00027a26", // 𧨦
+ 0x27a27: "\x95\b\U00027a27", // 𧨧
+ 0x27a28: "\x95\b\U00027a28", // 𧨨
+ 0x27a29: "\x95\b\U00027a29", // 𧨩
+ 0x27a2a: "\x95\b\U00027a2a", // 𧨪
+ 0x27a2b: "\x95\b\U00027a2b", // 𧨫
+ 0x27a2c: "\x95\b\U00027a2c", // 𧨬
+ 0x27a2d: "\x95\b\U00027a2d", // 𧨭
+ 0x27a2e: "\x95\b\U00027a2e", // 𧨮
+ 0x27a2f: "\x95\b\U00027a2f", // 𧨯
+ 0x27a30: "\x95\b\U00027a30", // 𧨰
+ 0x27a31: "\x95\b\U00027a31", // 𧨱
+ 0x27a32: "\x95\b\U00027a32", // 𧨲
+ 0x27a33: "\x95\b\U00027a33", // 𧨳
+ 0x27a34: "\x95\b\U00027a34", // 𧨴
+ 0x27a35: "\x95\b\U00027a35", // 𧨵
+ 0x27a36: "\x95\b\U00027a36", // 𧨶
+ 0x27a37: "\x95\b\U00027a37", // 𧨷
+ 0x27a38: "\x95\b\U00027a38", // 𧨸
+ 0x27a39: "\x95\b\U00027a39", // 𧨹
+ 0x27a3a: "\x95\b\U00027a3a", // 𧨺
+ 0x27a3b: "\x95\b\U00027a3b", // 𧨻
+ 0x27a3c: "\x95\b\U00027a3c", // 𧨼
+ 0x27a3d: "\x95\b\U00027a3d", // 𧨽
+ 0x27a3e: "\x95\b\U00027a3e", // 𧨾
+ 0x27a3f: "\x95\b\U00027a3f", // 𧨿
+ 0x27a40: "\x95\b\U00027a40", // 𧩀
+ 0x27a41: "\x95\b\U00027a41", // 𧩁
+ 0x27a42: "\x95\b\U00027a42", // 𧩂
+ 0x27a43: "\x95\b\U00027a43", // 𧩃
+ 0x27a44: "\x95\b\U00027a44", // 𧩄
+ 0x27a45: "\x95\b\U00027a45", // 𧩅
+ 0x27a46: "\x95\b\U00027a46", // 𧩆
+ 0x27a47: "\x95\b\U00027a47", // 𧩇
+ 0x27a48: "\x95\b\U00027a48", // 𧩈
+ 0x27a49: "\x95\b\U00027a49", // 𧩉
+ 0x27a4a: "\x95\b\U00027a4a", // 𧩊
+ 0x27a4b: "\x95\b\U00027a4b", // 𧩋
+ 0x27a4c: "\x95\b\U00027a4c", // 𧩌
+ 0x27a4d: "\x95\b\U00027a4d", // 𧩍
+ 0x27a4e: "\x95\b\U00027a4e", // 𧩎
+ 0x27a4f: "\x95\b\U00027a4f", // 𧩏
+ 0x27a50: "\x95\b\U00027a50", // 𧩐
+ 0x27a51: "\x95\b\U00027a51", // 𧩑
+ 0x27a52: "\x95\b\U00027a52", // 𧩒
+ 0x27a53: "\x95\b\U00027a53", // 𧩓
+ 0x27a54: "\x95\b\U00027a54", // 𧩔
+ 0x27a55: "\x95\b\U00027a55", // 𧩕
+ 0x27a56: "\x95\b\U00027a56", // 𧩖
+ 0x27a57: "\x95\b\U00027a57", // 𧩗
+ 0x27a58: "\x95\b\U00027a58", // 𧩘
+ 0x27a59: "\x95\b\U00027a59", // 𧩙
+ 0x27a5a: "\x95\b\U00027a5a", // 𧩚
+ 0x27a5b: "\x95\b\U00027a5b", // 𧩛
+ 0x27a5c: "\x95\b\U00027a5c", // 𧩜
+ 0x27a5d: "\x95\b\U00027a5d", // 𧩝
+ 0x27a5e: "\x95\b\U00027a5e", // 𧩞
+ 0x27a5f: "\x95\b\U00027a5f", // 𧩟
+ 0x27a60: "\x95\b\U00027a60", // 𧩠
+ 0x27a61: "\x95\b\U00027a61", // 𧩡
+ 0x27a62: "\x95\b\U00027a62", // 𧩢
+ 0x27a63: "\x95\t\U00027a63", // 𧩣
+ 0x27a64: "\x95\t\U00027a64", // 𧩤
+ 0x27a65: "\x95\t\U00027a65", // 𧩥
+ 0x27a66: "\x95\t\U00027a66", // 𧩦
+ 0x27a67: "\x95\t\U00027a67", // 𧩧
+ 0x27a68: "\x95\t\U00027a68", // 𧩨
+ 0x27a69: "\x95\t\U00027a69", // 𧩩
+ 0x27a6a: "\x95\t\U00027a6a", // 𧩪
+ 0x27a6b: "\x95\t\U00027a6b", // 𧩫
+ 0x27a6c: "\x95\t\U00027a6c", // 𧩬
+ 0x27a6d: "\x95\t\U00027a6d", // 𧩭
+ 0x27a6e: "\x95\t\U00027a6e", // 𧩮
+ 0x27a6f: "\x95\t\U00027a6f", // 𧩯
+ 0x27a70: "\x95\t\U00027a70", // 𧩰
+ 0x27a71: "\x95\t\U00027a71", // 𧩱
+ 0x27a72: "\x95\t\U00027a72", // 𧩲
+ 0x27a73: "\x95\t\U00027a73", // 𧩳
+ 0x27a74: "\x95\t\U00027a74", // 𧩴
+ 0x27a75: "\x95\t\U00027a75", // 𧩵
+ 0x27a76: "\x95\t\U00027a76", // 𧩶
+ 0x27a77: "\x95\t\U00027a77", // 𧩷
+ 0x27a78: "\x95\t\U00027a78", // 𧩸
+ 0x27a79: "\x95\t\U00027a79", // 𧩹
+ 0x27a7a: "\x95\t\U00027a7a", // 𧩺
+ 0x27a7b: "\x95\t\U00027a7b", // 𧩻
+ 0x27a7c: "\x95\t\U00027a7c", // 𧩼
+ 0x27a7d: "\x95\t\U00027a7d", // 𧩽
+ 0x27a7e: "\x95\t\U00027a7e", // 𧩾
+ 0x27a7f: "\x95\t\U00027a7f", // 𧩿
+ 0x27a80: "\x95\t\U00027a80", // 𧪀
+ 0x27a81: "\x95\t\U00027a81", // 𧪁
+ 0x27a82: "\x95\t\U00027a82", // 𧪂
+ 0x27a83: "\x95\t\U00027a83", // 𧪃
+ 0x27a84: "\x95\t\U00027a84", // 𧪄
+ 0x27a85: "\x95\t\U00027a85", // 𧪅
+ 0x27a86: "\x95\t\U00027a86", // 𧪆
+ 0x27a87: "\x95\t\U00027a87", // 𧪇
+ 0x27a88: "\x95\t\U00027a88", // 𧪈
+ 0x27a89: "\x95\t\U00027a89", // 𧪉
+ 0x27a8a: "\x95\t\U00027a8a", // 𧪊
+ 0x27a8b: "\x95\t\U00027a8b", // 𧪋
+ 0x27a8c: "\x95\t\U00027a8c", // 𧪌
+ 0x27a8d: "\x95\t\U00027a8d", // 𧪍
+ 0x27a8e: "\x95\t\U00027a8e", // 𧪎
+ 0x27a8f: "\x95\t\U00027a8f", // 𧪏
+ 0x27a90: "\x95\t\U00027a90", // 𧪐
+ 0x27a91: "\x95\t\U00027a91", // 𧪑
+ 0x27a92: "\x95\t\U00027a92", // 𧪒
+ 0x27a93: "\x95\t\U00027a93", // 𧪓
+ 0x27a94: "\x95\t\U00027a94", // 𧪔
+ 0x27a95: "\x95\t\U00027a95", // 𧪕
+ 0x27a96: "\x95\t\U00027a96", // 𧪖
+ 0x27a97: "\x95\t\U00027a97", // 𧪗
+ 0x27a98: "\x95\n\U00027a98", // 𧪘
+ 0x27a99: "\x95\n\U00027a99", // 𧪙
+ 0x27a9a: "\x95\n\U00027a9a", // 𧪚
+ 0x27a9b: "\x95\n\U00027a9b", // 𧪛
+ 0x27a9c: "\x95\n\U00027a9c", // 𧪜
+ 0x27a9d: "\x95\n\U00027a9d", // 𧪝
+ 0x27a9e: "\x95\n\U00027a9e", // 𧪞
+ 0x27a9f: "\x95\n\U00027a9f", // 𧪟
+ 0x27aa0: "\x95\n\U00027aa0", // 𧪠
+ 0x27aa1: "\x95\n\U00027aa1", // 𧪡
+ 0x27aa2: "\x95\n\U00027aa2", // 𧪢
+ 0x27aa3: "\x95\n\U00027aa3", // 𧪣
+ 0x27aa4: "\x95\n\U00027aa4", // 𧪤
+ 0x27aa5: "\x95\n\U00027aa5", // 𧪥
+ 0x27aa6: "\x95\n\U00027aa6", // 𧪦
+ 0x27aa7: "\x95\n\U00027aa7", // 𧪧
+ 0x27aa8: "\x95\n\U00027aa8", // 𧪨
+ 0x27aa9: "\x95\n\U00027aa9", // 𧪩
+ 0x27aaa: "\x95\n\U00027aaa", // 𧪪
+ 0x27aab: "\x95\n\U00027aab", // 𧪫
+ 0x27aac: "\x95\n\U00027aac", // 𧪬
+ 0x27aad: "\x95\n\U00027aad", // 𧪭
+ 0x27aae: "\x95\n\U00027aae", // 𧪮
+ 0x27aaf: "\x95\n\U00027aaf", // 𧪯
+ 0x27ab0: "\x95\n\U00027ab0", // 𧪰
+ 0x27ab1: "\x95\n\U00027ab1", // 𧪱
+ 0x27ab2: "\x95\n\U00027ab2", // 𧪲
+ 0x27ab3: "\x95\n\U00027ab3", // 𧪳
+ 0x27ab4: "\x95\n\U00027ab4", // 𧪴
+ 0x27ab5: "\x95\n\U00027ab5", // 𧪵
+ 0x27ab6: "\x95\n\U00027ab6", // 𧪶
+ 0x27ab7: "\x95\n\U00027ab7", // 𧪷
+ 0x27ab8: "\x95\n\U00027ab8", // 𧪸
+ 0x27ab9: "\x95\n\U00027ab9", // 𧪹
+ 0x27aba: "\x95\n\U00027aba", // 𧪺
+ 0x27abb: "\x95\n\U00027abb", // 𧪻
+ 0x27abc: "\x95\n\U00027abc", // 𧪼
+ 0x27abd: "\x95\n\U00027abd", // 𧪽
+ 0x27abe: "\x95\n\U00027abe", // 𧪾
+ 0x27abf: "\x95\n\U00027abf", // 𧪿
+ 0x27ac0: "\x95\n\U00027ac0", // 𧫀
+ 0x27ac1: "\x95\n\U00027ac1", // 𧫁
+ 0x27ac2: "\x95\n\U00027ac2", // 𧫂
+ 0x27ac3: "\x95\n\U00027ac3", // 𧫃
+ 0x27ac4: "\x95\n\U00027ac4", // 𧫄
+ 0x27ac5: "\x95\n\U00027ac5", // 𧫅
+ 0x27ac6: "\x95\n\U00027ac6", // 𧫆
+ 0x27ac7: "\x95\n\U00027ac7", // 𧫇
+ 0x27ac8: "\x95\n\U00027ac8", // 𧫈
+ 0x27ac9: "\x95\n\U00027ac9", // 𧫉
+ 0x27aca: "\x95\n\U00027aca", // 𧫊
+ 0x27acb: "\x95\n\U00027acb", // 𧫋
+ 0x27acc: "\x95\n\U00027acc", // 𧫌
+ 0x27acd: "\x95\n\U00027acd", // 𧫍
+ 0x27ace: "\x95\n\U00027ace", // 𧫎
+ 0x27acf: "\x95\n\U00027acf", // 𧫏
+ 0x27ad0: "\x95\n\U00027ad0", // 𧫐
+ 0x27ad1: "\x95\n\U00027ad1", // 𧫑
+ 0x27ad2: "\x95\v\U00027ad2", // 𧫒
+ 0x27ad3: "\x95\v\U00027ad3", // 𧫓
+ 0x27ad4: "\x95\v\U00027ad4", // 𧫔
+ 0x27ad5: "\x95\v\U00027ad5", // 𧫕
+ 0x27ad6: "\x95\v\U00027ad6", // 𧫖
+ 0x27ad7: "\x95\v\U00027ad7", // 𧫗
+ 0x27ad8: "\x95\v\U00027ad8", // 𧫘
+ 0x27ad9: "\x95\v\U00027ad9", // 𧫙
+ 0x27ada: "\x95\v\U00027ada", // 𧫚
+ 0x27adb: "\x95\v\U00027adb", // 𧫛
+ 0x27adc: "\x95\v\U00027adc", // 𧫜
+ 0x27add: "\x95\v\U00027add", // 𧫝
+ 0x27ade: "\x95\v\U00027ade", // 𧫞
+ 0x27adf: "\x95\v\U00027adf", // 𧫟
+ 0x27ae0: "\x95\v\U00027ae0", // 𧫠
+ 0x27ae1: "\x95\v\U00027ae1", // 𧫡
+ 0x27ae2: "\x95\v\U00027ae2", // 𧫢
+ 0x27ae3: "\x95\v\U00027ae3", // 𧫣
+ 0x27ae4: "\x95\v\U00027ae4", // 𧫤
+ 0x27ae5: "\x95\v\U00027ae5", // 𧫥
+ 0x27ae6: "\x95\v\U00027ae6", // 𧫦
+ 0x27ae7: "\x95\v\U00027ae7", // 𧫧
+ 0x27ae8: "\x95\v\U00027ae8", // 𧫨
+ 0x27ae9: "\x95\v\U00027ae9", // 𧫩
+ 0x27aea: "\x95\v\U00027aea", // 𧫪
+ 0x27aeb: "\x95\v\U00027aeb", // 𧫫
+ 0x27aec: "\x95\v\U00027aec", // 𧫬
+ 0x27aed: "\x95\v\U00027aed", // 𧫭
+ 0x27aee: "\x95\v\U00027aee", // 𧫮
+ 0x27aef: "\x95\v\U00027aef", // 𧫯
+ 0x27af0: "\x95\v\U00027af0", // 𧫰
+ 0x27af1: "\x95\v\U00027af1", // 𧫱
+ 0x27af2: "\x95\v\U00027af2", // 𧫲
+ 0x27af3: "\x95\v\U00027af3", // 𧫳
+ 0x27af4: "\x95\v\U00027af4", // 𧫴
+ 0x27af5: "\x95\v\U00027af5", // 𧫵
+ 0x27af6: "\x95\v\U00027af6", // 𧫶
+ 0x27af7: "\x95\v\U00027af7", // 𧫷
+ 0x27af8: "\x95\v\U00027af8", // 𧫸
+ 0x27af9: "\x95\v\U00027af9", // 𧫹
+ 0x27afa: "\x95\v\U00027afa", // 𧫺
+ 0x27afb: "\x95\v\U00027afb", // 𧫻
+ 0x27afc: "\x95\v\U00027afc", // 𧫼
+ 0x27afd: "\x95\v\U00027afd", // 𧫽
+ 0x27afe: "\x95\f\U00027afe", // 𧫾
+ 0x27aff: "\x95\f\U00027aff", // 𧫿
+ 0x27b00: "\x95\f\U00027b00", // 𧬀
+ 0x27b01: "\x95\f\U00027b01", // 𧬁
+ 0x27b02: "\x95\f\U00027b02", // 𧬂
+ 0x27b03: "\x95\f\U00027b03", // 𧬃
+ 0x27b04: "\x95\f\U00027b04", // 𧬄
+ 0x27b05: "\x95\f\U00027b05", // 𧬅
+ 0x27b06: "\x95\f\U00027b06", // 𧬆
+ 0x27b07: "\x95\f\U00027b07", // 𧬇
+ 0x27b08: "\x95\f\U00027b08", // 𧬈
+ 0x27b09: "\x95\f\U00027b09", // 𧬉
+ 0x27b0a: "\x95\f\U00027b0a", // 𧬊
+ 0x27b0b: "\x95\f\U00027b0b", // 𧬋
+ 0x27b0c: "\x95\f\U00027b0c", // 𧬌
+ 0x27b0d: "\x95\f\U00027b0d", // 𧬍
+ 0x27b0e: "\x95\f\U00027b0e", // 𧬎
+ 0x27b0f: "\x95\f\U00027b0f", // 𧬏
+ 0x27b10: "\x95\f\U00027b10", // 𧬐
+ 0x27b11: "\x95\f\U00027b11", // 𧬑
+ 0x27b12: "\x95\f\U00027b12", // 𧬒
+ 0x27b13: "\x95\f\U00027b13", // 𧬓
+ 0x27b14: "\x95\f\U00027b14", // 𧬔
+ 0x27b15: "\x95\f\U00027b15", // 𧬕
+ 0x27b16: "\x95\f\U00027b16", // 𧬖
+ 0x27b17: "\x95\f\U00027b17", // 𧬗
+ 0x27b18: "\x95\f\U00027b18", // 𧬘
+ 0x27b19: "\x95\f\U00027b19", // 𧬙
+ 0x27b1a: "\x95\f\U00027b1a", // 𧬚
+ 0x27b1b: "\x95\f\U00027b1b", // 𧬛
+ 0x27b1c: "\x95\f\U00027b1c", // 𧬜
+ 0x27b1d: "\x95\f\U00027b1d", // 𧬝
+ 0x27b1e: "\x95\f\U00027b1e", // 𧬞
+ 0x27b1f: "\x95\f\U00027b1f", // 𧬟
+ 0x27b20: "\x95\f\U00027b20", // 𧬠
+ 0x27b21: "\x95\f\U00027b21", // 𧬡
+ 0x27b22: "\x95\f\U00027b22", // 𧬢
+ 0x27b23: "\x95\f\U00027b23", // 𧬣
+ 0x27b24: "\x95\f\U00027b24", // 𧬤
+ 0x27b25: "\x95\f\U00027b25", // 𧬥
+ 0x27b26: "\x95\f\U00027b26", // 𧬦
+ 0x27b27: "\x95\r\U00027b27", // 𧬧
+ 0x27b28: "\x95\r\U00027b28", // 𧬨
+ 0x27b29: "\x95\r\U00027b29", // 𧬩
+ 0x27b2a: "\x95\r\U00027b2a", // 𧬪
+ 0x27b2b: "\x95\r\U00027b2b", // 𧬫
+ 0x27b2c: "\x95\r\U00027b2c", // 𧬬
+ 0x27b2d: "\x95\r\U00027b2d", // 𧬭
+ 0x27b2e: "\x95\r\U00027b2e", // 𧬮
+ 0x27b2f: "\x95\r\U00027b2f", // 𧬯
+ 0x27b30: "\x95\r\U00027b30", // 𧬰
+ 0x27b31: "\x95\r\U00027b31", // 𧬱
+ 0x27b32: "\x95\r\U00027b32", // 𧬲
+ 0x27b33: "\x95\r\U00027b33", // 𧬳
+ 0x27b34: "\x95\r\U00027b34", // 𧬴
+ 0x27b35: "\x95\r\U00027b35", // 𧬵
+ 0x27b36: "\x95\r\U00027b36", // 𧬶
+ 0x27b37: "\x95\r\U00027b37", // 𧬷
+ 0x27b38: "\x95\r\U00027b38", // 𧬸
+ 0x27b39: "\x95\r\U00027b39", // 𧬹
+ 0x27b3a: "\x95\r\U00027b3a", // 𧬺
+ 0x27b3b: "\x95\r\U00027b3b", // 𧬻
+ 0x27b3c: "\x95\r\U00027b3c", // 𧬼
+ 0x27b3d: "\x95\r\U00027b3d", // 𧬽
+ 0x27b3e: "\x95\r\U00027b3e", // 𧬾
+ 0x27b3f: "\x95\r\U00027b3f", // 𧬿
+ 0x27b40: "\x95\r\U00027b40", // 𧭀
+ 0x27b41: "\x95\r\U00027b41", // 𧭁
+ 0x27b42: "\x95\x0e\U00027b42", // 𧭂
+ 0x27b43: "\x95\x0e\U00027b43", // 𧭃
+ 0x27b44: "\x95\x0e\U00027b44", // 𧭄
+ 0x27b45: "\x95\x0e\U00027b45", // 𧭅
+ 0x27b46: "\x95\x0e\U00027b46", // 𧭆
+ 0x27b47: "\x95\x0e\U00027b47", // 𧭇
+ 0x27b48: "\x95\x0e\U00027b48", // 𧭈
+ 0x27b49: "\x95\x0e\U00027b49", // 𧭉
+ 0x27b4a: "\x95\x0e\U00027b4a", // 𧭊
+ 0x27b4b: "\x95\x0e\U00027b4b", // 𧭋
+ 0x27b4c: "\x95\x0e\U00027b4c", // 𧭌
+ 0x27b4d: "\x95\x0e\U00027b4d", // 𧭍
+ 0x27b4e: "\x95\x0e\U00027b4e", // 𧭎
+ 0x27b4f: "\x95\x0e\U00027b4f", // 𧭏
+ 0x27b50: "\x95\x0e\U00027b50", // 𧭐
+ 0x27b51: "\x95\x0f\U00027b51", // 𧭑
+ 0x27b52: "\x95\x0e\U00027b52", // 𧭒
+ 0x27b53: "\x95\x0e\U00027b53", // 𧭓
+ 0x27b54: "\x95\x0e\U00027b54", // 𧭔
+ 0x27b55: "\x95\x0e\U00027b55", // 𧭕
+ 0x27b56: "\x95\x0e\U00027b56", // 𧭖
+ 0x27b57: "\x95\x0e\U00027b57", // 𧭗
+ 0x27b58: "\x95\x0e\U00027b58", // 𧭘
+ 0x27b59: "\x95\x0e\U00027b59", // 𧭙
+ 0x27b5a: "\x95\x0e\U00027b5a", // 𧭚
+ 0x27b5b: "\x95\x0e\U00027b5b", // 𧭛
+ 0x27b5c: "\x95\x0f\U00027b5c", // 𧭜
+ 0x27b5d: "\x95\x0f\U00027b5d", // 𧭝
+ 0x27b5e: "\x95\x0f\U00027b5e", // 𧭞
+ 0x27b5f: "\x95\x0f\U00027b5f", // 𧭟
+ 0x27b60: "\x95\x0f\U00027b60", // 𧭠
+ 0x27b61: "\x95\x0f\U00027b61", // 𧭡
+ 0x27b62: "\x95\x0f\U00027b62", // 𧭢
+ 0x27b63: "\x95\x0f\U00027b63", // 𧭣
+ 0x27b64: "\x95\x0f\U00027b64", // 𧭤
+ 0x27b65: "\x95\x0f\U00027b65", // 𧭥
+ 0x27b66: "\x95\x0f\U00027b66", // 𧭦
+ 0x27b67: "\x95\x0f\U00027b67", // 𧭧
+ 0x27b68: "\x95\x0f\U00027b68", // 𧭨
+ 0x27b69: "\x95\x0f\U00027b69", // 𧭩
+ 0x27b6a: "\x95\x0f\U00027b6a", // 𧭪
+ 0x27b6b: "\x95\x0f\U00027b6b", // 𧭫
+ 0x27b6c: "\x95\x0f\U00027b6c", // 𧭬
+ 0x27b6d: "\x95\x0f\U00027b6d", // 𧭭
+ 0x27b6e: "\x95\x0f\U00027b6e", // 𧭮
+ 0x27b6f: "\x95\x0f\U00027b6f", // 𧭯
+ 0x27b70: "\x95\x0f\U00027b70", // 𧭰
+ 0x27b71: "\x95\x0f\U00027b71", // 𧭱
+ 0x27b72: "\x95\x0f\U00027b72", // 𧭲
+ 0x27b73: "\x95\x0f\U00027b73", // 𧭳
+ 0x27b74: "\x95\x0f\U00027b74", // 𧭴
+ 0x27b75: "\x95\x0f\U00027b75", // 𧭵
+ 0x27b76: "\x95\x0f\U00027b76", // 𧭶
+ 0x27b77: "\x95\x0f\U00027b77", // 𧭷
+ 0x27b78: "\x95\x10\U00027b78", // 𧭸
+ 0x27b79: "\x95\x10\U00027b79", // 𧭹
+ 0x27b7a: "\x95\x10\U00027b7a", // 𧭺
+ 0x27b7b: "\x95\x10\U00027b7b", // 𧭻
+ 0x27b7c: "\x95\x10\U00027b7c", // 𧭼
+ 0x27b7d: "\x95\x10\U00027b7d", // 𧭽
+ 0x27b7e: "\x95\x10\U00027b7e", // 𧭾
+ 0x27b7f: "\x95\x10\U00027b7f", // 𧭿
+ 0x27b80: "\x95\x10\U00027b80", // 𧮀
+ 0x27b81: "\x95\x10\U00027b81", // 𧮁
+ 0x27b82: "\x95\x10\U00027b82", // 𧮂
+ 0x27b83: "\x95\x10\U00027b83", // 𧮃
+ 0x27b84: "\x95\x10\U00027b84", // 𧮄
+ 0x27b85: "\x95\x11\U00027b85", // 𧮅
+ 0x27b86: "\x95\x11\U00027b86", // 𧮆
+ 0x27b87: "\x95\x11\U00027b87", // 𧮇
+ 0x27b88: "\x95\x11\U00027b88", // 𧮈
+ 0x27b89: "\x95\x11\U00027b89", // 𧮉
+ 0x27b8a: "\x95\x11\U00027b8a", // 𧮊
+ 0x27b8b: "\x95\x11\U00027b8b", // 𧮋
+ 0x27b8c: "\x95\x11\U00027b8c", // 𧮌
+ 0x27b8d: "\x95\x11\U00027b8d", // 𧮍
+ 0x27b8e: "\x95\x11\U00027b8e", // 𧮎
+ 0x27b8f: "\x95\x11\U00027b8f", // 𧮏
+ 0x27b90: "\x95\x11\U00027b90", // 𧮐
+ 0x27b91: "\x95\x12\U00027b91", // 𧮑
+ 0x27b92: "\x95\x12\U00027b92", // 𧮒
+ 0x27b93: "\x95\x12\U00027b93", // 𧮓
+ 0x27b94: "\x95\x12\U00027b94", // 𧮔
+ 0x27b95: "\x95\x12\U00027b95", // 𧮕
+ 0x27b96: "\x95\x12\U00027b96", // 𧮖
+ 0x27b97: "\x95\x12\U00027b97", // 𧮗
+ 0x27b98: "\x95\x12\U00027b98", // 𧮘
+ 0x27b99: "\x95\x13\U00027b99", // 𧮙
+ 0x27b9a: "\x95\x13\U00027b9a", // 𧮚
+ 0x27b9b: "\x95\x13\U00027b9b", // 𧮛
+ 0x27b9c: "\x95\x13\U00027b9c", // 𧮜
+ 0x27b9d: "\x95\x13\U00027b9d", // 𧮝
+ 0x27b9e: "\x95\x14\U00027b9e", // 𧮞
+ 0x27b9f: "\x95\x14\U00027b9f", // 𧮟
+ 0x27ba0: "\x95\x14\U00027ba0", // 𧮠
+ 0x27ba1: "\x95\x14\U00027ba1", // 𧮡
+ 0x27ba2: "\x95\x15\U00027ba2", // 𧮢
+ 0x27ba3: "\x95\x15\U00027ba3", // 𧮣
+ 0x27ba4: "\x95\x15\U00027ba4", // 𧮤
+ 0x27ba5: "\x1e\x19\U00027ba5", // 𧮥
+ 0x27ba6: "\x95\x15\U00027ba6", // 𧮦
+ 0x27ba7: "\x95\x15\U00027ba7", // 𧮧
+ 0x27ba8: "\x95\x16\U00027ba8", // 𧮨
+ 0x27ba9: "\x95 \U00027ba9", // 𧮩
+ 0x27baa: "\x95\x05\U00027baa", // 𧮪
+ 0x27bab: "\x96\x00\U00027bab", // 𧮫
+ 0x27bac: "\x96\x03\U00027bac", // 𧮬
+ 0x27bad: "\x96\x03\U00027bad", // 𧮭
+ 0x27bae: "\x96\x03\U00027bae", // 𧮮
+ 0x27baf: "\x96\x04\U00027baf", // 𧮯
+ 0x27bb0: "\x96\x04\U00027bb0", // 𧮰
+ 0x27bb1: "\x96\x04\U00027bb1", // 𧮱
+ 0x27bb2: "\x96\x04\U00027bb2", // 𧮲
+ 0x27bb3: "\x96\x05\U00027bb3", // 𧮳
+ 0x27bb4: "\x96\x05\U00027bb4", // 𧮴
+ 0x27bb5: "\x96\x06\U00027bb5", // 𧮵
+ 0x27bb6: "\x96\x06\U00027bb6", // 𧮶
+ 0x27bb7: "\x96\x06\U00027bb7", // 𧮷
+ 0x27bb8: "\x96\a\U00027bb8", // 𧮸
+ 0x27bb9: "\x96\a\U00027bb9", // 𧮹
+ 0x27bba: "\x96\b\U00027bba", // 𧮺
+ 0x27bbb: "\x96\b\U00027bbb", // 𧮻
+ 0x27bbc: "\x96\b\U00027bbc", // 𧮼
+ 0x27bbd: "\x96\b\U00027bbd", // 𧮽
+ 0x27bbe: "\x96\b\U00027bbe", // 𧮾
+ 0x27bbf: "\x96\b\U00027bbf", // 𧮿
+ 0x27bc0: "\x96\t\U00027bc0", // 𧯀
+ 0x27bc1: "\x96\t\U00027bc1", // 𧯁
+ 0x27bc2: "\x96\t\U00027bc2", // 𧯂
+ 0x27bc3: "\x96\t\U00027bc3", // 𧯃
+ 0x27bc4: "\x96\t\U00027bc4", // 𧯄
+ 0x27bc5: "\x96\t\U00027bc5", // 𧯅
+ 0x27bc6: "\x96\n\U00027bc6", // 𧯆
+ 0x27bc7: "\x96\n\U00027bc7", // 𧯇
+ 0x27bc8: "\x96\n\U00027bc8", // 𧯈
+ 0x27bc9: "\x96\n\U00027bc9", // 𧯉
+ 0x27bca: "\x96\v\U00027bca", // 𧯊
+ 0x27bcb: "\x96\f\U00027bcb", // 𧯋
+ 0x27bcc: "\x96\f\U00027bcc", // 𧯌
+ 0x27bcd: "\x96\f\U00027bcd", // 𧯍
+ 0x27bce: "\x96\f\U00027bce", // 𧯎
+ 0x27bcf: "\x96\f\U00027bcf", // 𧯏
+ 0x27bd0: "\x96\f\U00027bd0", // 𧯐
+ 0x27bd1: "\x96\f\U00027bd1", // 𧯑
+ 0x27bd2: "\x96\f\U00027bd2", // 𧯒
+ 0x27bd3: "\x96\r\U00027bd3", // 𧯓
+ 0x27bd4: "\x96\r\U00027bd4", // 𧯔
+ 0x27bd5: "\x96\x0e\U00027bd5", // 𧯕
+ 0x27bd6: "\x96\x0e\U00027bd6", // 𧯖
+ 0x27bd7: "\x96\x12\U00027bd7", // 𧯗
+ 0x27bd8: "\x96\x14\U00027bd8", // 𧯘
+ 0x27bd9: "\x96\x18\U00027bd9", // 𧯙
+ 0x27bda: "\x97\x02\U00027bda", // 𧯚
+ 0x27bdb: "\x97\x03\U00027bdb", // 𧯛
+ 0x27bdc: "\x97\x03\U00027bdc", // 𧯜
+ 0x27bdd: "\x97\x03\U00027bdd", // 𧯝
+ 0x27bde: "\x97\x04\U00027bde", // 𧯞
+ 0x27bdf: "\x97\x04\U00027bdf", // 𧯟
+ 0x27be0: "\x97\x05\U00027be0", // 𧯠
+ 0x27be1: "\x97\x05\U00027be1", // 𧯡
+ 0x27be2: "\x97\x05\U00027be2", // 𧯢
+ 0x27be3: "\x97\x05\U00027be3", // 𧯣
+ 0x27be4: "\x97\x05\U00027be4", // 𧯤
+ 0x27be5: "\x97\x06\U00027be5", // 𧯥
+ 0x27be6: "\x97\x06\U00027be6", // 𧯦
+ 0x27be7: " \n\U00027be7", // 𧯧
+ 0x27be8: "\x97\x06\U00027be8", // 𧯨
+ 0x27be9: "\x97\a\U00027be9", // 𧯩
+ 0x27bea: "\x97\a\U00027bea", // 𧯪
+ 0x27beb: "\x97\a\U00027beb", // 𧯫
+ 0x27bec: "\x97\a\U00027bec", // 𧯬
+ 0x27bed: "\x97\b\U00027bed", // 𧯭
+ 0x27bee: "\x97\b\U00027bee", // 𧯮
+ 0x27bef: "\x97\b\U00027bef", // 𧯯
+ 0x27bf0: "\x97\b\U00027bf0", // 𧯰
+ 0x27bf1: "\x97\b\U00027bf1", // 𧯱
+ 0x27bf2: "\x97\b\U00027bf2", // 𧯲
+ 0x27bf3: "\x97\b\U00027bf3", // 𧯳
+ 0x27bf4: "\x97\b\U00027bf4", // 𧯴
+ 0x27bf5: "\x97\b\U00027bf5", // 𧯵
+ 0x27bf6: "\x97\b\U00027bf6", // 𧯶
+ 0x27bf7: "\x97\t\U00027bf7", // 𧯷
+ 0x27bf8: "\x97\t\U00027bf8", // 𧯸
+ 0x27bf9: "\x97\t\U00027bf9", // 𧯹
+ 0x27bfa: "\x97\t\U00027bfa", // 𧯺
+ 0x27bfb: "\x97\t\U00027bfb", // 𧯻
+ 0x27bfc: "\x97\n\U00027bfc", // 𧯼
+ 0x27bfd: "\x97\n\U00027bfd", // 𧯽
+ 0x27bfe: "\x97\n\U00027bfe", // 𧯾
+ 0x27bff: "\x97\n\U00027bff", // 𧯿
+ 0x27c00: "\x97\n\U00027c00", // 𧰀
+ 0x27c01: "\x97\n\U00027c01", // 𧰁
+ 0x27c02: "\x97\n\U00027c02", // 𧰂
+ 0x27c03: "\x97\v\U00027c03", // 𧰃
+ 0x27c04: "\x97\v\U00027c04", // 𧰄
+ 0x27c05: "\x97\v\U00027c05", // 𧰅
+ 0x27c06: "\x97\v\U00027c06", // 𧰆
+ 0x27c07: "\x97\v\U00027c07", // 𧰇
+ 0x27c08: "\x97\n\U00027c08", // 𧰈
+ 0x27c09: "\x97\f\U00027c09", // 𧰉
+ 0x27c0a: "\x97\f\U00027c0a", // 𧰊
+ 0x27c0b: "\x97\f\U00027c0b", // 𧰋
+ 0x27c0c: "\x97\f\U00027c0c", // 𧰌
+ 0x27c0d: "\x97\f\U00027c0d", // 𧰍
+ 0x27c0e: "\x97\f\U00027c0e", // 𧰎
+ 0x27c0f: "\x97\f\U00027c0f", // 𧰏
+ 0x27c10: "\x97\f\U00027c10", // 𧰐
+ 0x27c11: "\x97\r\U00027c11", // 𧰑
+ 0x27c12: "\x97\r\U00027c12", // 𧰒
+ 0x27c13: "\x97\r\U00027c13", // 𧰓
+ 0x27c14: "\x97\r\U00027c14", // 𧰔
+ 0x27c15: "\x97\r\U00027c15", // 𧰕
+ 0x27c16: "\x97\r\U00027c16", // 𧰖
+ 0x27c17: "\x97\x0e\U00027c17", // 𧰗
+ 0x27c18: "\x97\x0e\U00027c18", // 𧰘
+ 0x27c19: "\x97\x0f\U00027c19", // 𧰙
+ 0x27c1a: "\x97\x0f\U00027c1a", // 𧰚
+ 0x27c1b: "\x97\x0f\U00027c1b", // 𧰛
+ 0x27c1c: "\x97\x0f\U00027c1c", // 𧰜
+ 0x27c1d: "\x97\x10\U00027c1d", // 𧰝
+ 0x27c1e: "\x97\x10\U00027c1e", // 𧰞
+ 0x27c1f: "\x97\x10\U00027c1f", // 𧰟
+ 0x27c20: "\x97\x11\U00027c20", // 𧰠
+ 0x27c21: "\x97\x12\U00027c21", // 𧰡
+ 0x27c22: "\x97\x12\U00027c22", // 𧰢
+ 0x27c23: "\x97\x14\U00027c23", // 𧰣
+ 0x27c24: "\x97\x14\U00027c24", // 𧰤
+ 0x27c25: "\x97\x16\U00027c25", // 𧰥
+ 0x27c26: "\x98\x01\U00027c26", // 𧰦
+ 0x27c27: "\x98\x00\U00027c27", // 𧰧
+ 0x27c28: "\x98\x00\U00027c28", // 𧰨
+ 0x27c29: "\x98\x02\U00027c29", // 𧰩
+ 0x27c2a: "\x98\x03\U00027c2a", // 𧰪
+ 0x27c2b: "\x98\x03\U00027c2b", // 𧰫
+ 0x27c2c: "\x98\x03\U00027c2c", // 𧰬
+ 0x27c2d: "\x98\x03\U00027c2d", // 𧰭
+ 0x27c2e: "\x98\x04\U00027c2e", // 𧰮
+ 0x27c2f: "\x98\x04\U00027c2f", // 𧰯
+ 0x27c30: "\x98\x04\U00027c30", // 𧰰
+ 0x27c31: "\x98\x04\U00027c31", // 𧰱
+ 0x27c32: "\x98\x04\U00027c32", // 𧰲
+ 0x27c33: "\x98\x04\U00027c33", // 𧰳
+ 0x27c34: "\x98\x04\U00027c34", // 𧰴
+ 0x27c35: "\x98\x05\U00027c35", // 𧰵
+ 0x27c36: "\x98\x05\U00027c36", // 𧰶
+ 0x27c37: "\x98\x05\U00027c37", // 𧰷
+ 0x27c38: "\x98\x05\U00027c38", // 𧰸
+ 0x27c39: "\x98\x05\U00027c39", // 𧰹
+ 0x27c3a: "\x98\x05\U00027c3a", // 𧰺
+ 0x27c3b: "\x98\x05\U00027c3b", // 𧰻
+ 0x27c3c: "\x98\x05\U00027c3c", // 𧰼
+ 0x27c3d: "\x98\x05\U00027c3d", // 𧰽
+ 0x27c3e: "\x98\x05\U00027c3e", // 𧰾
+ 0x27c3f: "\x98\x06\U00027c3f", // 𧰿
+ 0x27c40: "\x98\x06\U00027c40", // 𧱀
+ 0x27c41: "\x98\x06\U00027c41", // 𧱁
+ 0x27c42: "\x98\x06\U00027c42", // 𧱂
+ 0x27c43: "\x98\x06\U00027c43", // 𧱃
+ 0x27c44: "\x98\x06\U00027c44", // 𧱄
+ 0x27c45: "\x98\x06\U00027c45", // 𧱅
+ 0x27c46: "\x98\x06\U00027c46", // 𧱆
+ 0x27c47: "\x98\x06\U00027c47", // 𧱇
+ 0x27c48: "\x98\x06\U00027c48", // 𧱈
+ 0x27c49: "\x98\x06\U00027c49", // 𧱉
+ 0x27c4a: "\x98\x06\U00027c4a", // 𧱊
+ 0x27c4b: "\x98\x06\U00027c4b", // 𧱋
+ 0x27c4c: "\x98\x06\U00027c4c", // 𧱌
+ 0x27c4d: "\x98\a\U00027c4d", // 𧱍
+ 0x27c4e: "\x98\a\U00027c4e", // 𧱎
+ 0x27c4f: "\x98\a\U00027c4f", // 𧱏
+ 0x27c50: "\x98\a\U00027c50", // 𧱐
+ 0x27c51: "\x98\a\U00027c51", // 𧱑
+ 0x27c52: "\x98\a\U00027c52", // 𧱒
+ 0x27c53: "\x98\a\U00027c53", // 𧱓
+ 0x27c54: "\x98\a\U00027c54", // 𧱔
+ 0x27c55: "\x98\a\U00027c55", // 𧱕
+ 0x27c56: "\x98\a\U00027c56", // 𧱖
+ 0x27c57: "\x98\a\U00027c57", // 𧱗
+ 0x27c58: "\x98\b\U00027c58", // 𧱘
+ 0x27c59: "\x98\b\U00027c59", // 𧱙
+ 0x27c5a: "\x98\b\U00027c5a", // 𧱚
+ 0x27c5b: "\x98\b\U00027c5b", // 𧱛
+ 0x27c5c: "\x98\b\U00027c5c", // 𧱜
+ 0x27c5d: "\x98\b\U00027c5d", // 𧱝
+ 0x27c5e: "\x98\b\U00027c5e", // 𧱞
+ 0x27c5f: "\x98\b\U00027c5f", // 𧱟
+ 0x27c60: "\x98\b\U00027c60", // 𧱠
+ 0x27c61: "\x98\b\U00027c61", // 𧱡
+ 0x27c62: "\x98\b\U00027c62", // 𧱢
+ 0x27c63: "\x98\b\U00027c63", // 𧱣
+ 0x27c64: "\x98\b\U00027c64", // 𧱤
+ 0x27c65: "\x98\b\U00027c65", // 𧱥
+ 0x27c66: "\x98\b\U00027c66", // 𧱦
+ 0x27c67: "\x98\b\U00027c67", // 𧱧
+ 0x27c68: "\x98\t\U00027c68", // 𧱨
+ 0x27c69: "\x98\t\U00027c69", // 𧱩
+ 0x27c6a: "\x98\t\U00027c6a", // 𧱪
+ 0x27c6b: "\x98\t\U00027c6b", // 𧱫
+ 0x27c6c: "\x98\t\U00027c6c", // 𧱬
+ 0x27c6d: "\x98\t\U00027c6d", // 𧱭
+ 0x27c6e: "\x98\t\U00027c6e", // 𧱮
+ 0x27c6f: "\x98\t\U00027c6f", // 𧱯
+ 0x27c70: "\x98\t\U00027c70", // 𧱰
+ 0x27c71: "\x98\t\U00027c71", // 𧱱
+ 0x27c72: "\x98\n\U00027c72", // 𧱲
+ 0x27c73: "\x98\n\U00027c73", // 𧱳
+ 0x27c74: "\x98\n\U00027c74", // 𧱴
+ 0x27c75: "\x98\n\U00027c75", // 𧱵
+ 0x27c76: "\x98\n\U00027c76", // 𧱶
+ 0x27c77: "\x98\n\U00027c77", // 𧱷
+ 0x27c78: "\x98\n\U00027c78", // 𧱸
+ 0x27c79: "\x98\n\U00027c79", // 𧱹
+ 0x27c7a: "\x98\n\U00027c7a", // 𧱺
+ 0x27c7b: "\x98\v\U00027c7b", // 𧱻
+ 0x27c7c: "\x98\v\U00027c7c", // 𧱼
+ 0x27c7d: "\x98\v\U00027c7d", // 𧱽
+ 0x27c7e: "\x98\v\U00027c7e", // 𧱾
+ 0x27c7f: "\x98\v\U00027c7f", // 𧱿
+ 0x27c80: "\x98\v\U00027c80", // 𧲀
+ 0x27c81: "\x98\v\U00027c81", // 𧲁
+ 0x27c82: "\x98\f\U00027c82", // 𧲂
+ 0x27c83: "\x98\f\U00027c83", // 𧲃
+ 0x27c84: "\x98\f\U00027c84", // 𧲄
+ 0x27c85: "\x98\f\U00027c85", // 𧲅
+ 0x27c86: "\x98\f\U00027c86", // 𧲆
+ 0x27c87: "\x98\r\U00027c87", // 𧲇
+ 0x27c88: "\x98\r\U00027c88", // 𧲈
+ 0x27c89: "\x98\r\U00027c89", // 𧲉
+ 0x27c8a: "\x98\r\U00027c8a", // 𧲊
+ 0x27c8b: "\x98\r\U00027c8b", // 𧲋
+ 0x27c8c: "\x98\x0e\U00027c8c", // 𧲌
+ 0x27c8d: "\x98\x0e\U00027c8d", // 𧲍
+ 0x27c8e: "\x98\x0e\U00027c8e", // 𧲎
+ 0x27c8f: "\x98\x0e\U00027c8f", // 𧲏
+ 0x27c90: "\x98\x0f\U00027c90", // 𧲐
+ 0x27c91: "\x98\x0f\U00027c91", // 𧲑
+ 0x27c92: "\x98\x0f\U00027c92", // 𧲒
+ 0x27c93: "\x98\x0f\U00027c93", // 𧲓
+ 0x27c94: "\x98\x10\U00027c94", // 𧲔
+ 0x27c95: "\x98\x10\U00027c95", // 𧲕
+ 0x27c96: "\x98\x10\U00027c96", // 𧲖
+ 0x27c97: "\x98\x0f\U00027c97", // 𧲗
+ 0x27c98: "\x98\x11\U00027c98", // 𧲘
+ 0x27c99: "\x98\x11\U00027c99", // 𧲙
+ 0x27c9a: "\x98\x12\U00027c9a", // 𧲚
+ 0x27c9b: "\x98\x12\U00027c9b", // 𧲛
+ 0x27c9c: "\x98\x12\U00027c9c", // 𧲜
+ 0x27c9d: "\x98\x14\U00027c9d", // 𧲝
+ 0x27c9e: "\x98\x16\U00027c9e", // 𧲞
+ 0x27c9f: "\x98\x1d\U00027c9f", // 𧲟
+ 0x27ca0: "\x99\x01\U00027ca0", // 𧲠
+ 0x27ca1: "\x99\x02\U00027ca1", // 𧲡
+ 0x27ca2: "\x99\x03\U00027ca2", // 𧲢
+ 0x27ca3: "\x99\x03\U00027ca3", // 𧲣
+ 0x27ca4: "\x99\x04\U00027ca4", // 𧲤
+ 0x27ca5: "\x99\x04\U00027ca5", // 𧲥
+ 0x27ca6: "\x99\x04\U00027ca6", // 𧲦
+ 0x27ca7: "\x99\x04\U00027ca7", // 𧲧
+ 0x27ca8: "\x99\x04\U00027ca8", // 𧲨
+ 0x27ca9: "\x99\x04\U00027ca9", // 𧲩
+ 0x27caa: "\x99\x04\U00027caa", // 𧲪
+ 0x27cab: "\x99\x04\U00027cab", // 𧲫
+ 0x27cac: "\x99\x05\U00027cac", // 𧲬
+ 0x27cad: "\x99\x05\U00027cad", // 𧲭
+ 0x27cae: "\x99\x05\U00027cae", // 𧲮
+ 0x27caf: "\x99\x05\U00027caf", // 𧲯
+ 0x27cb0: "\x99\x05\U00027cb0", // 𧲰
+ 0x27cb1: "\x99\x05\U00027cb1", // 𧲱
+ 0x27cb2: "\x99\x05\U00027cb2", // 𧲲
+ 0x27cb3: "\x99\x05\U00027cb3", // 𧲳
+ 0x27cb4: "\x99\x05\U00027cb4", // 𧲴
+ 0x27cb5: "\x99\x05\U00027cb5", // 𧲵
+ 0x27cb6: "\x99\x05\U00027cb6", // 𧲶
+ 0x27cb7: "\x99\x05\U00027cb7", // 𧲷
+ 0x27cb8: "\x99\x05\U00027cb8", // 𧲸
+ 0x27cb9: "\x99\x05\U00027cb9", // 𧲹
+ 0x27cba: "\x99\x05\U00027cba", // 𧲺
+ 0x27cbb: "\x99\x05\U00027cbb", // 𧲻
+ 0x27cbc: "\x99\x05\U00027cbc", // 𧲼
+ 0x27cbd: "\x99\x05\U00027cbd", // 𧲽
+ 0x27cbe: "\x99\x06\U00027cbe", // 𧲾
+ 0x27cbf: "\x99\x06\U00027cbf", // 𧲿
+ 0x27cc0: "\x99\x06\U00027cc0", // 𧳀
+ 0x27cc1: "\x99\x06\U00027cc1", // 𧳁
+ 0x27cc2: "\x99\x06\U00027cc2", // 𧳂
+ 0x27cc3: "\x99\x06\U00027cc3", // 𧳃
+ 0x27cc4: "\x99\x06\U00027cc4", // 𧳄
+ 0x27cc5: "\x99\x06\U00027cc5", // 𧳅
+ 0x27cc6: "\x99\x06\U00027cc6", // 𧳆
+ 0x27cc7: "\x99\x06\U00027cc7", // 𧳇
+ 0x27cc8: "\x99\x06\U00027cc8", // 𧳈
+ 0x27cc9: "\x99\x06\U00027cc9", // 𧳉
+ 0x27cca: "\x99\a\U00027cca", // 𧳊
+ 0x27ccb: "\x99\a\U00027ccb", // 𧳋
+ 0x27ccc: "\x99\a\U00027ccc", // 𧳌
+ 0x27ccd: "\x99\a\U00027ccd", // 𧳍
+ 0x27cce: "\x99\a\U00027cce", // 𧳎
+ 0x27ccf: "\x99\a\U00027ccf", // 𧳏
+ 0x27cd0: "\x99\a\U00027cd0", // 𧳐
+ 0x27cd1: "\x99\a\U00027cd1", // 𧳑
+ 0x27cd2: "\x99\a\U00027cd2", // 𧳒
+ 0x27cd3: "\x99\a\U00027cd3", // 𧳓
+ 0x27cd4: "\x99\a\U00027cd4", // 𧳔
+ 0x27cd5: "\x99\a\U00027cd5", // 𧳕
+ 0x27cd6: "\x99\a\U00027cd6", // 𧳖
+ 0x27cd7: "\x99\a\U00027cd7", // 𧳗
+ 0x27cd8: "\x99\a\U00027cd8", // 𧳘
+ 0x27cd9: "\x99\b\U00027cd9", // 𧳙
+ 0x27cda: "\x99\b\U00027cda", // 𧳚
+ 0x27cdb: "\x99\b\U00027cdb", // 𧳛
+ 0x27cdc: "\x99\b\U00027cdc", // 𧳜
+ 0x27cdd: "\x99\b\U00027cdd", // 𧳝
+ 0x27cde: "\x99\b\U00027cde", // 𧳞
+ 0x27cdf: "\x99\b\U00027cdf", // 𧳟
+ 0x27ce0: "\x99\b\U00027ce0", // 𧳠
+ 0x27ce1: "\x99\b\U00027ce1", // 𧳡
+ 0x27ce2: "\x99\b\U00027ce2", // 𧳢
+ 0x27ce3: "\x99\b\U00027ce3", // 𧳣
+ 0x27ce4: "\x99\b\U00027ce4", // 𧳤
+ 0x27ce5: "\x99\b\U00027ce5", // 𧳥
+ 0x27ce6: "\x99\t\U00027ce6", // 𧳦
+ 0x27ce7: "\x99\t\U00027ce7", // 𧳧
+ 0x27ce8: "\x99\t\U00027ce8", // 𧳨
+ 0x27ce9: "\x99\t\U00027ce9", // 𧳩
+ 0x27cea: "\x99\t\U00027cea", // 𧳪
+ 0x27ceb: "\x99\t\U00027ceb", // 𧳫
+ 0x27cec: "\x99\t\U00027cec", // 𧳬
+ 0x27ced: "\x99\t\U00027ced", // 𧳭
+ 0x27cee: "\x99\t\U00027cee", // 𧳮
+ 0x27cef: "\x99\t\U00027cef", // 𧳯
+ 0x27cf0: "\x99\t\U00027cf0", // 𧳰
+ 0x27cf1: "\x99\b\U00027cf1", // 𧳱
+ 0x27cf2: "\x99\t\U00027cf2", // 𧳲
+ 0x27cf3: "\x99\t\U00027cf3", // 𧳳
+ 0x27cf4: "\x99\t\U00027cf4", // 𧳴
+ 0x27cf5: "\x99\n\U00027cf5", // 𧳵
+ 0x27cf6: "\x99\n\U00027cf6", // 𧳶
+ 0x27cf7: "\x99\n\U00027cf7", // 𧳷
+ 0x27cf8: "\x99\n\U00027cf8", // 𧳸
+ 0x27cf9: "\x99\n\U00027cf9", // 𧳹
+ 0x27cfa: "\x99\n\U00027cfa", // 𧳺
+ 0x27cfb: "\x99\n\U00027cfb", // 𧳻
+ 0x27cfc: "\x99\n\U00027cfc", // 𧳼
+ 0x27cfd: "\x99\n\U00027cfd", // 𧳽
+ 0x27cfe: "\x99\n\U00027cfe", // 𧳾
+ 0x27cff: "\x99\n\U00027cff", // 𧳿
+ 0x27d00: "\x99\n\U00027d00", // 𧴀
+ 0x27d01: "\x99\v\U00027d01", // 𧴁
+ 0x27d02: "\x99\v\U00027d02", // 𧴂
+ 0x27d03: "\x99\v\U00027d03", // 𧴃
+ 0x27d04: "\x99\v\U00027d04", // 𧴄
+ 0x27d05: "\x99\v\U00027d05", // 𧴅
+ 0x27d06: "\x99\f\U00027d06", // 𧴆
+ 0x27d07: "\x99\v\U00027d07", // 𧴇
+ 0x27d08: "\x99\v\U00027d08", // 𧴈
+ 0x27d09: "\x99\v\U00027d09", // 𧴉
+ 0x27d0a: "\x99\v\U00027d0a", // 𧴊
+ 0x27d0b: "\x99\v\U00027d0b", // 𧴋
+ 0x27d0c: "\x99\f\U00027d0c", // 𧴌
+ 0x27d0d: "\x99\f\U00027d0d", // 𧴍
+ 0x27d0e: "\x99\f\U00027d0e", // 𧴎
+ 0x27d0f: "\x99\f\U00027d0f", // 𧴏
+ 0x27d10: "\x99\r\U00027d10", // 𧴐
+ 0x27d11: "\x99\f\U00027d11", // 𧴑
+ 0x27d12: "\x99\f\U00027d12", // 𧴒
+ 0x27d13: "\x99\f\U00027d13", // 𧴓
+ 0x27d14: "\x99\f\U00027d14", // 𧴔
+ 0x27d15: "\x99\f\U00027d15", // 𧴕
+ 0x27d16: "\x99\r\U00027d16", // 𧴖
+ 0x27d17: "\x99\r\U00027d17", // 𧴗
+ 0x27d18: "\x99\r\U00027d18", // 𧴘
+ 0x27d19: "\x99\r\U00027d19", // 𧴙
+ 0x27d1a: "\x99\r\U00027d1a", // 𧴚
+ 0x27d1b: "\x99\r\U00027d1b", // 𧴛
+ 0x27d1c: "\x99\r\U00027d1c", // 𧴜
+ 0x27d1d: "\x99\x0e\U00027d1d", // 𧴝
+ 0x27d1e: "\x99\x0e\U00027d1e", // 𧴞
+ 0x27d1f: "\x99\x0f\U00027d1f", // 𧴟
+ 0x27d20: "\x99\x10\U00027d20", // 𧴠
+ 0x27d21: "\x99\x10\U00027d21", // 𧴡
+ 0x27d22: "\x99\x11\U00027d22", // 𧴢
+ 0x27d23: "\x99\x14\U00027d23", // 𧴣
+ 0x27d24: "\x9a\x02\U00027d24", // 𧴤
+ 0x27d25: "\x9a\x02\U00027d25", // 𧴥
+ 0x27d26: "\x9a\x02\U00027d26", // 𧴦
+ 0x27d27: "\x9a\x02\U00027d27", // 𧴧
+ 0x27d28: "\x9a\x02\U00027d28", // 𧴨
+ 0x27d29: "\x9a\x02\U00027d29", // 𧴩
+ 0x27d2a: "\x9a\x03\U00027d2a", // 𧴪
+ 0x27d2b: "\x9a\x03\U00027d2b", // 𧴫
+ 0x27d2c: "\x9a\x03\U00027d2c", // 𧴬
+ 0x27d2d: "\x9a\x03\U00027d2d", // 𧴭
+ 0x27d2e: "\x9a\x03\U00027d2e", // 𧴮
+ 0x27d2f: "\x9a\x03\U00027d2f", // 𧴯
+ 0x27d30: "\x9a\x03\U00027d30", // 𧴰
+ 0x27d31: "\x9a\x03\U00027d31", // 𧴱
+ 0x27d32: "\x9a\x03\U00027d32", // 𧴲
+ 0x27d33: "\x9a\x04\U00027d33", // 𧴳
+ 0x27d34: "\x9a\x04\U00027d34", // 𧴴
+ 0x27d35: "\x9a\x04\U00027d35", // 𧴵
+ 0x27d36: "\x9a\x04\U00027d36", // 𧴶
+ 0x27d37: "\x9a\x04\U00027d37", // 𧴷
+ 0x27d38: "\x9a\x04\U00027d38", // 𧴸
+ 0x27d39: "\x9a\x04\U00027d39", // 𧴹
+ 0x27d3a: "\x9a\x04\U00027d3a", // 𧴺
+ 0x27d3b: "\x9a\x04\U00027d3b", // 𧴻
+ 0x27d3c: "\x9a\x04\U00027d3c", // 𧴼
+ 0x27d3d: "\x9a\x04\U00027d3d", // 𧴽
+ 0x27d3e: "\x9a\x04\U00027d3e", // 𧴾
+ 0x27d3f: "\x9a\x04\U00027d3f", // 𧴿
+ 0x27d40: "\x9a\x04\U00027d40", // 𧵀
+ 0x27d41: "\x9a\x04\U00027d41", // 𧵁
+ 0x27d42: "\x9a\x04\U00027d42", // 𧵂
+ 0x27d43: "\x9a\x04\U00027d43", // 𧵃
+ 0x27d44: "\x9a\x04\U00027d44", // 𧵄
+ 0x27d45: "\x9a\x04\U00027d45", // 𧵅
+ 0x27d46: "\x9a\x04\U00027d46", // 𧵆
+ 0x27d47: "\x9a\x04\U00027d47", // 𧵇
+ 0x27d48: "\x9a\x04\U00027d48", // 𧵈
+ 0x27d49: "\x9a\x05\U00027d49", // 𧵉
+ 0x27d4a: "\x9a\x05\U00027d4a", // 𧵊
+ 0x27d4b: "\x9a\x05\U00027d4b", // 𧵋
+ 0x27d4c: "\x9a\x05\U00027d4c", // 𧵌
+ 0x27d4d: "\x9a\x05\U00027d4d", // 𧵍
+ 0x27d4e: "\x9a\x05\U00027d4e", // 𧵎
+ 0x27d4f: "\x9a\x05\U00027d4f", // 𧵏
+ 0x27d50: "\x9a\x05\U00027d50", // 𧵐
+ 0x27d51: "\x9a\x05\U00027d51", // 𧵑
+ 0x27d52: "\x9a\x05\U00027d52", // 𧵒
+ 0x27d53: "\x9a\x05\U00027d53", // 𧵓
+ 0x27d54: "\x9a\x05\U00027d54", // 𧵔
+ 0x27d55: "\x9a\x05\U00027d55", // 𧵕
+ 0x27d56: "\x9a\x05\U00027d56", // 𧵖
+ 0x27d57: "\x9a\x05\U00027d57", // 𧵗
+ 0x27d58: "\x9a\x05\U00027d58", // 𧵘
+ 0x27d59: "\x9a\x05\U00027d59", // 𧵙
+ 0x27d5a: "\x9a\x05\U00027d5a", // 𧵚
+ 0x27d5b: "\x9a\x05\U00027d5b", // 𧵛
+ 0x27d5c: "\x9a\x05\U00027d5c", // 𧵜
+ 0x27d5d: "\x9a\x05\U00027d5d", // 𧵝
+ 0x27d5e: "\x9a\x05\U00027d5e", // 𧵞
+ 0x27d5f: "\x9a\x05\U00027d5f", // 𧵟
+ 0x27d60: "\x9a\x05\U00027d60", // 𧵠
+ 0x27d61: "\x9a\x05\U00027d61", // 𧵡
+ 0x27d62: "\x9a\x05\U00027d62", // 𧵢
+ 0x27d63: "\x9a\x06\U00027d63", // 𧵣
+ 0x27d64: "\x9a\x06\U00027d64", // 𧵤
+ 0x27d65: "\x9a\x06\U00027d65", // 𧵥
+ 0x27d66: "\x9a\x06\U00027d66", // 𧵦
+ 0x27d67: "\x9a\x06\U00027d67", // 𧵧
+ 0x27d68: "\x9a\x06\U00027d68", // 𧵨
+ 0x27d69: "\x9a\x06\U00027d69", // 𧵩
+ 0x27d6a: "\x9a\x06\U00027d6a", // 𧵪
+ 0x27d6b: "\x9a\x06\U00027d6b", // 𧵫
+ 0x27d6c: "\x9a\x06\U00027d6c", // 𧵬
+ 0x27d6d: "\x9a\x06\U00027d6d", // 𧵭
+ 0x27d6e: "\x9a\x06\U00027d6e", // 𧵮
+ 0x27d6f: "\x9a\x06\U00027d6f", // 𧵯
+ 0x27d70: "\x9a\x06\U00027d70", // 𧵰
+ 0x27d71: "\x9a\x06\U00027d71", // 𧵱
+ 0x27d72: "\x9a\x06\U00027d72", // 𧵲
+ 0x27d73: "\x9a\x06\U00027d73", // 𧵳
+ 0x27d74: "\x9a\x06\U00027d74", // 𧵴
+ 0x27d75: "\x9a\x06\U00027d75", // 𧵵
+ 0x27d76: "\x9a\x06\U00027d76", // 𧵶
+ 0x27d77: "\x9a\x06\U00027d77", // 𧵷
+ 0x27d78: "\x9a\x06\U00027d78", // 𧵸
+ 0x27d79: "\x9a\x06\U00027d79", // 𧵹
+ 0x27d7a: "\x9a\x06\U00027d7a", // 𧵺
+ 0x27d7b: "\x9a\x06\U00027d7b", // 𧵻
+ 0x27d7c: "\x9a\x06\U00027d7c", // 𧵼
+ 0x27d7d: "\x9a\x06\U00027d7d", // 𧵽
+ 0x27d7e: "\x9a\x06\U00027d7e", // 𧵾
+ 0x27d7f: "\x9a\x06\U00027d7f", // 𧵿
+ 0x27d80: "\x9a\x06\U00027d80", // 𧶀
+ 0x27d81: "\x9a\x06\U00027d81", // 𧶁
+ 0x27d82: "\x9a\x06\U00027d82", // 𧶂
+ 0x27d83: "\x9a\x06\U00027d83", // 𧶃
+ 0x27d84: "\x9a\x06\U00027d84", // 𧶄
+ 0x27d85: "\x9a\a\U00027d85", // 𧶅
+ 0x27d86: "\x9a\a\U00027d86", // 𧶆
+ 0x27d87: "\x9a\a\U00027d87", // 𧶇
+ 0x27d88: "\x9a\a\U00027d88", // 𧶈
+ 0x27d89: "\x9a\a\U00027d89", // 𧶉
+ 0x27d8a: "\x9a\a\U00027d8a", // 𧶊
+ 0x27d8b: "\x9a\a\U00027d8b", // 𧶋
+ 0x27d8c: "\x9a\a\U00027d8c", // 𧶌
+ 0x27d8d: "\x9a\a\U00027d8d", // 𧶍
+ 0x27d8e: "\x9a\a\U00027d8e", // 𧶎
+ 0x27d8f: "\x9a\a\U00027d8f", // 𧶏
+ 0x27d90: "\x9a\a\U00027d90", // 𧶐
+ 0x27d91: "\x9a\a\U00027d91", // 𧶑
+ 0x27d92: "\x9a\a\U00027d92", // 𧶒
+ 0x27d93: "\x9a\a\U00027d93", // 𧶓
+ 0x27d94: "\x9a\a\U00027d94", // 𧶔
+ 0x27d95: "\x9a\a\U00027d95", // 𧶕
+ 0x27d96: "\x9a\a\U00027d96", // 𧶖
+ 0x27d97: "\x9a\a\U00027d97", // 𧶗
+ 0x27d98: "\x9a\a\U00027d98", // 𧶘
+ 0x27d99: "\x9a\a\U00027d99", // 𧶙
+ 0x27d9a: "\x9a\a\U00027d9a", // 𧶚
+ 0x27d9b: "\x9a\b\U00027d9b", // 𧶛
+ 0x27d9c: "\x9a\b\U00027d9c", // 𧶜
+ 0x27d9d: "\x9a\b\U00027d9d", // 𧶝
+ 0x27d9e: "\x9a\b\U00027d9e", // 𧶞
+ 0x27d9f: "\x9a\b\U00027d9f", // 𧶟
+ 0x27da0: "\x9a\b\U00027da0", // 𧶠
+ 0x27da1: "\x9a\b\U00027da1", // 𧶡
+ 0x27da2: "\x9a\b\U00027da2", // 𧶢
+ 0x27da3: "\x9a\b\U00027da3", // 𧶣
+ 0x27da4: "\x9a\b\U00027da4", // 𧶤
+ 0x27da5: "\x9a\b\U00027da5", // 𧶥
+ 0x27da6: "\x9a\b\U00027da6", // 𧶦
+ 0x27da7: "\x9a\b\U00027da7", // 𧶧
+ 0x27da8: "\x9a\b\U00027da8", // 𧶨
+ 0x27da9: "\x9a\b\U00027da9", // 𧶩
+ 0x27daa: "\x9a\b\U00027daa", // 𧶪
+ 0x27dab: "\x9a\b\U00027dab", // 𧶫
+ 0x27dac: "\x9a\b\U00027dac", // 𧶬
+ 0x27dad: "\x9a\b\U00027dad", // 𧶭
+ 0x27dae: "\x9a\b\U00027dae", // 𧶮
+ 0x27daf: "\x9a\b\U00027daf", // 𧶯
+ 0x27db0: "\x9a\b\U00027db0", // 𧶰
+ 0x27db1: "\x9a\t\U00027db1", // 𧶱
+ 0x27db2: "\x9a\t\U00027db2", // 𧶲
+ 0x27db3: "\x9a\t\U00027db3", // 𧶳
+ 0x27db4: "\x9a\t\U00027db4", // 𧶴
+ 0x27db5: "\x9a\t\U00027db5", // 𧶵
+ 0x27db6: "\x9a\t\U00027db6", // 𧶶
+ 0x27db7: "\x9a\t\U00027db7", // 𧶷
+ 0x27db8: "\x9a\t\U00027db8", // 𧶸
+ 0x27db9: "\x9a\t\U00027db9", // 𧶹
+ 0x27dba: "\x9a\t\U00027dba", // 𧶺
+ 0x27dbb: "\x9a\t\U00027dbb", // 𧶻
+ 0x27dbc: "\x9a\t\U00027dbc", // 𧶼
+ 0x27dbd: "\x9a\t\U00027dbd", // 𧶽
+ 0x27dbe: "\x9a\t\U00027dbe", // 𧶾
+ 0x27dbf: "\x9a\t\U00027dbf", // 𧶿
+ 0x27dc0: "\x9a\t\U00027dc0", // 𧷀
+ 0x27dc1: "\x9a\t\U00027dc1", // 𧷁
+ 0x27dc2: "\x9a\t\U00027dc2", // 𧷂
+ 0x27dc3: "\x9a\t\U00027dc3", // 𧷃
+ 0x27dc4: "\x9a\t\U00027dc4", // 𧷄
+ 0x27dc5: "z\f\U00027dc5", // 𧷅
+ 0x27dc6: "\x9a\t\U00027dc6", // 𧷆
+ 0x27dc7: "\x9a\t\U00027dc7", // 𧷇
+ 0x27dc8: "\x9a\t\U00027dc8", // 𧷈
+ 0x27dc9: "\x9a\t\U00027dc9", // 𧷉
+ 0x27dca: "\x9a\t\U00027dca", // 𧷊
+ 0x27dcb: "\x9a\t\U00027dcb", // 𧷋
+ 0x27dcc: "\x9a\n\U00027dcc", // 𧷌
+ 0x27dcd: "\x9a\n\U00027dcd", // 𧷍
+ 0x27dce: "\x9a\n\U00027dce", // 𧷎
+ 0x27dcf: "\x9a\n\U00027dcf", // 𧷏
+ 0x27dd0: "\x9a\n\U00027dd0", // 𧷐
+ 0x27dd1: "\x9a\n\U00027dd1", // 𧷑
+ 0x27dd2: "\x9a\n\U00027dd2", // 𧷒
+ 0x27dd3: "\x9a\n\U00027dd3", // 𧷓
+ 0x27dd4: "\x9a\n\U00027dd4", // 𧷔
+ 0x27dd5: "\x9a\n\U00027dd5", // 𧷕
+ 0x27dd6: "\x9a\n\U00027dd6", // 𧷖
+ 0x27dd7: "\x9a\n\U00027dd7", // 𧷗
+ 0x27dd8: "\x9a\n\U00027dd8", // 𧷘
+ 0x27dd9: "\x9a\n\U00027dd9", // 𧷙
+ 0x27dda: "\x9a\n\U00027dda", // 𧷚
+ 0x27ddb: "\x9a\n\U00027ddb", // 𧷛
+ 0x27ddc: "\x9a\n\U00027ddc", // 𧷜
+ 0x27ddd: "\x9a\n\U00027ddd", // 𧷝
+ 0x27dde: "\x9a\v\U00027dde", // 𧷞
+ 0x27ddf: "\x9a\v\U00027ddf", // 𧷟
+ 0x27de0: "\x9a\v\U00027de0", // 𧷠
+ 0x27de1: "\x9a\v\U00027de1", // 𧷡
+ 0x27de2: "\x9a\v\U00027de2", // 𧷢
+ 0x27de3: "\x9a\v\U00027de3", // 𧷣
+ 0x27de4: "\x9a\v\U00027de4", // 𧷤
+ 0x27de5: "\x9a\v\U00027de5", // 𧷥
+ 0x27de6: "\x9a\v\U00027de6", // 𧷦
+ 0x27de7: "\x9a\v\U00027de7", // 𧷧
+ 0x27de8: "\x9a\v\U00027de8", // 𧷨
+ 0x27de9: "\x9a\v\U00027de9", // 𧷩
+ 0x27dea: "\x9a\v\U00027dea", // 𧷪
+ 0x27deb: "\x9a\v\U00027deb", // 𧷫
+ 0x27dec: "\x9a\v\U00027dec", // 𧷬
+ 0x27ded: "\x9a\v\U00027ded", // 𧷭
+ 0x27dee: "\x9a\v\U00027dee", // 𧷮
+ 0x27def: "\x9a\v\U00027def", // 𧷯
+ 0x27df0: "\x9a\v\U00027df0", // 𧷰
+ 0x27df1: "\x9a\v\U00027df1", // 𧷱
+ 0x27df2: "\x9a\v\U00027df2", // 𧷲
+ 0x27df3: "\x9a\v\U00027df3", // 𧷳
+ 0x27df4: "\x9a\v\U00027df4", // 𧷴
+ 0x27df5: "\x9a\v\U00027df5", // 𧷵
+ 0x27df6: "\x9a\v\U00027df6", // 𧷶
+ 0x27df7: "\x9a\v\U00027df7", // 𧷷
+ 0x27df8: "\x9a\v\U00027df8", // 𧷸
+ 0x27df9: "\x9a\v\U00027df9", // 𧷹
+ 0x27dfa: "\x9a\v\U00027dfa", // 𧷺
+ 0x27dfb: "\x9a\v\U00027dfb", // 𧷻
+ 0x27dfc: "\x9a\f\U00027dfc", // 𧷼
+ 0x27dfd: "\x9a\f\U00027dfd", // 𧷽
+ 0x27dfe: "\x9a\f\U00027dfe", // 𧷾
+ 0x27dff: "\x9a\f\U00027dff", // 𧷿
+ 0x27e00: "\x9a\f\U00027e00", // 𧸀
+ 0x27e01: "\x9a\f\U00027e01", // 𧸁
+ 0x27e02: "\x9a\f\U00027e02", // 𧸂
+ 0x27e03: "\x9a\f\U00027e03", // 𧸃
+ 0x27e04: "\x9a\f\U00027e04", // 𧸄
+ 0x27e05: "\x9a\f\U00027e05", // 𧸅
+ 0x27e06: "\x9a\f\U00027e06", // 𧸆
+ 0x27e07: "\x9a\f\U00027e07", // 𧸇
+ 0x27e08: "\x9a\f\U00027e08", // 𧸈
+ 0x27e09: "\x9a\f\U00027e09", // 𧸉
+ 0x27e0a: "\x9a\f\U00027e0a", // 𧸊
+ 0x27e0b: "\x9a\f\U00027e0b", // 𧸋
+ 0x27e0c: "\x9a\f\U00027e0c", // 𧸌
+ 0x27e0d: "\x9a\f\U00027e0d", // 𧸍
+ 0x27e0e: "\x9a\f\U00027e0e", // 𧸎
+ 0x27e0f: "\x9a\f\U00027e0f", // 𧸏
+ 0x27e10: "\x9a\f\U00027e10", // 𧸐
+ 0x27e11: "\x9a\f\U00027e11", // 𧸑
+ 0x27e12: "\x9a\f\U00027e12", // 𧸒
+ 0x27e13: "\x9a\f\U00027e13", // 𧸓
+ 0x27e14: "\x9a\f\U00027e14", // 𧸔
+ 0x27e15: "\x9a\f\U00027e15", // 𧸕
+ 0x27e16: "\x9a\r\U00027e16", // 𧸖
+ 0x27e17: "\x9a\r\U00027e17", // 𧸗
+ 0x27e18: "\x9a\r\U00027e18", // 𧸘
+ 0x27e19: "\x9a\r\U00027e19", // 𧸙
+ 0x27e1a: "\x9a\r\U00027e1a", // 𧸚
+ 0x27e1b: "\x9a\r\U00027e1b", // 𧸛
+ 0x27e1c: "\x9a\r\U00027e1c", // 𧸜
+ 0x27e1d: "\x9a\r\U00027e1d", // 𧸝
+ 0x27e1e: "\x9a\r\U00027e1e", // 𧸞
+ 0x27e1f: "\x9a\r\U00027e1f", // 𧸟
+ 0x27e20: "\x9a\r\U00027e20", // 𧸠
+ 0x27e21: "\x9a\r\U00027e21", // 𧸡
+ 0x27e22: "\x9a\r\U00027e22", // 𧸢
+ 0x27e23: "\x9a\r\U00027e23", // 𧸣
+ 0x27e24: "\x9a\r\U00027e24", // 𧸤
+ 0x27e25: "\x9a\r\U00027e25", // 𧸥
+ 0x27e26: "\x9a\x0e\U00027e26", // 𧸦
+ 0x27e27: "\x9a\x0e\U00027e27", // 𧸧
+ 0x27e28: "\x9a\x0e\U00027e28", // 𧸨
+ 0x27e29: "\x9a\x0e\U00027e29", // 𧸩
+ 0x27e2a: "\x9a\x0e\U00027e2a", // 𧸪
+ 0x27e2b: "\x9a\x0e\U00027e2b", // 𧸫
+ 0x27e2c: "\x9a\x0e\U00027e2c", // 𧸬
+ 0x27e2d: "\x9a\x0e\U00027e2d", // 𧸭
+ 0x27e2e: "\x9a\x0e\U00027e2e", // 𧸮
+ 0x27e2f: "\x9a\x0e\U00027e2f", // 𧸯
+ 0x27e30: "\x9a\x0e\U00027e30", // 𧸰
+ 0x27e31: "\x9a\x0f\U00027e31", // 𧸱
+ 0x27e32: "\x9a\x0f\U00027e32", // 𧸲
+ 0x27e33: "\x9a\x0f\U00027e33", // 𧸳
+ 0x27e34: "\x9a\x0f\U00027e34", // 𧸴
+ 0x27e35: "\x9a\x0f\U00027e35", // 𧸵
+ 0x27e36: "\x9a\x0f\U00027e36", // 𧸶
+ 0x27e37: "\x9a\x0f\U00027e37", // 𧸷
+ 0x27e38: "\x9a\x0f\U00027e38", // 𧸸
+ 0x27e39: "\x9a\x0f\U00027e39", // 𧸹
+ 0x27e3a: "\x9a\x0f\U00027e3a", // 𧸺
+ 0x27e3b: "\x9a\x0f\U00027e3b", // 𧸻
+ 0x27e3c: "\x9a\x0f\U00027e3c", // 𧸼
+ 0x27e3d: "\x9a\x10\U00027e3d", // 𧸽
+ 0x27e3e: "\x9a\x10\U00027e3e", // 𧸾
+ 0x27e3f: "\x9a\x0f\U00027e3f", // 𧸿
+ 0x27e40: "\x9a\x10\U00027e40", // 𧹀
+ 0x27e41: "\x9a\x10\U00027e41", // 𧹁
+ 0x27e42: "\x9a\x10\U00027e42", // 𧹂
+ 0x27e43: "\x9a\x10\U00027e43", // 𧹃
+ 0x27e44: "\x9a\x10\U00027e44", // 𧹄
+ 0x27e45: "\x9a\x10\U00027e45", // 𧹅
+ 0x27e46: "\x9a\x10\U00027e46", // 𧹆
+ 0x27e47: "\x9a\x10\U00027e47", // 𧹇
+ 0x27e48: "\x9a\x11\U00027e48", // 𧹈
+ 0x27e49: "\x9a\x11\U00027e49", // 𧹉
+ 0x27e4a: "\x9a\x11\U00027e4a", // 𧹊
+ 0x27e4b: "\x9a\x11\U00027e4b", // 𧹋
+ 0x27e4c: "\x9a\x12\U00027e4c", // 𧹌
+ 0x27e4d: "\x9a\x12\U00027e4d", // 𧹍
+ 0x27e4e: "\x9a\x13\U00027e4e", // 𧹎
+ 0x27e4f: "\x9a\x13\U00027e4f", // 𧹏
+ 0x27e50: "\x9a\x13\U00027e50", // 𧹐
+ 0x27e51: "\x9a\x04\U00027e51", // 𧹑
+ 0x27e52: "\x9a\x05\U00027e52", // 𧹒
+ 0x27e53: "\x9a\a\U00027e53", // 𧹓
+ 0x27e54: "\x9a\b\U00027e54", // 𧹔
+ 0x27e55: "\x9a\b\U00027e55", // 𧹕
+ 0x27e56: "\x9a\b\U00027e56", // 𧹖
+ 0x27e57: "\x9a\v\U00027e57", // 𧹗
+ 0x27e58: "\x9b\x01\U00027e58", // 𧹘
+ 0x27e59: "\x9b\x02\U00027e59", // 𧹙
+ 0x27e5a: "\x9b\x02\U00027e5a", // 𧹚
+ 0x27e5b: "\x9b\x04\U00027e5b", // 𧹛
+ 0x27e5c: "\x9b\x04\U00027e5c", // 𧹜
+ 0x27e5d: "\x9b\x05\U00027e5d", // 𧹝
+ 0x27e5e: "\x9b\x05\U00027e5e", // 𧹞
+ 0x27e5f: "\x9b\x05\U00027e5f", // 𧹟
+ 0x27e60: "\x9b\x06\U00027e60", // 𧹠
+ 0x27e61: "\x9b\x06\U00027e61", // 𧹡
+ 0x27e62: "\x9b\x06\U00027e62", // 𧹢
+ 0x27e63: "\x9b\a\U00027e63", // 𧹣
+ 0x27e64: "\x9b\a\U00027e64", // 𧹤
+ 0x27e65: "\x9b\a\U00027e65", // 𧹥
+ 0x27e66: "\x9b\a\U00027e66", // 𧹦
+ 0x27e67: "\x9b\b\U00027e67", // 𧹧
+ 0x27e68: "\x9b\b\U00027e68", // 𧹨
+ 0x27e69: "\x9b\b\U00027e69", // 𧹩
+ 0x27e6a: "\x9b\b\U00027e6a", // 𧹪
+ 0x27e6b: "\x9b\b\U00027e6b", // 𧹫
+ 0x27e6c: "\x9b\t\U00027e6c", // 𧹬
+ 0x27e6d: "\x9b\t\U00027e6d", // 𧹭
+ 0x27e6e: "\x9b\t\U00027e6e", // 𧹮
+ 0x27e6f: "\x9b\t\U00027e6f", // 𧹯
+ 0x27e70: "\x9b\t\U00027e70", // 𧹰
+ 0x27e71: "\x9b\t\U00027e71", // 𧹱
+ 0x27e72: "\x9b\n\U00027e72", // 𧹲
+ 0x27e73: "\x9b\n\U00027e73", // 𧹳
+ 0x27e74: "\x9b\n\U00027e74", // 𧹴
+ 0x27e75: "\x9b\n\U00027e75", // 𧹵
+ 0x27e76: "\x9b\v\U00027e76", // 𧹶
+ 0x27e77: "\x9b\v\U00027e77", // 𧹷
+ 0x27e78: "\x9b\f\U00027e78", // 𧹸
+ 0x27e79: "\x9b\f\U00027e79", // 𧹹
+ 0x27e7a: "\x9b\f\U00027e7a", // 𧹺
+ 0x27e7b: "\x9b\f\U00027e7b", // 𧹻
+ 0x27e7c: "\x9b\f\U00027e7c", // 𧹼
+ 0x27e7d: "\x9b\x0e\U00027e7d", // 𧹽
+ 0x27e7e: "\x9b\x0e\U00027e7e", // 𧹾
+ 0x27e7f: "\x9b\x0e\U00027e7f", // 𧹿
+ 0x27e80: "\x9b\x0f\U00027e80", // 𧺀
+ 0x27e81: "\x9b\x0f\U00027e81", // 𧺁
+ 0x27e82: "\x9b\x10\U00027e82", // 𧺂
+ 0x27e83: "\x9b\x10\U00027e83", // 𧺃
+ 0x27e84: "\x9b\x10\U00027e84", // 𧺄
+ 0x27e85: "\x9b\x10\U00027e85", // 𧺅
+ 0x27e86: "\x9c\x00\U00027e86", // 𧺆
+ 0x27e87: "\x9c\x01\U00027e87", // 𧺇
+ 0x27e88: "\x9c\x02\U00027e88", // 𧺈
+ 0x27e89: "\x9c\x02\U00027e89", // 𧺉
+ 0x27e8a: "\x9c\x02\U00027e8a", // 𧺊
+ 0x27e8b: "\x9c\x02\U00027e8b", // 𧺋
+ 0x27e8c: "\x9c\x02\U00027e8c", // 𧺌
+ 0x27e8d: "\x9c\x02\U00027e8d", // 𧺍
+ 0x27e8e: "\x9c\x02\U00027e8e", // 𧺎
+ 0x27e8f: "\x9c\x03\U00027e8f", // 𧺏
+ 0x27e90: "\x9c\x03\U00027e90", // 𧺐
+ 0x27e91: "\x9c\x03\U00027e91", // 𧺑
+ 0x27e92: "\x9c\x03\U00027e92", // 𧺒
+ 0x27e93: "\x9c\x03\U00027e93", // 𧺓
+ 0x27e94: "\x9c\x03\U00027e94", // 𧺔
+ 0x27e95: "\x9c\x03\U00027e95", // 𧺕
+ 0x27e96: "\x9c\x03\U00027e96", // 𧺖
+ 0x27e97: "\x9c\x03\U00027e97", // 𧺗
+ 0x27e98: "\x9c\x03\U00027e98", // 𧺘
+ 0x27e99: "\x9c\x03\U00027e99", // 𧺙
+ 0x27e9a: "\x9c\x03\U00027e9a", // 𧺚
+ 0x27e9b: "\x9c\x03\U00027e9b", // 𧺛
+ 0x27e9c: "\x9c\x03\U00027e9c", // 𧺜
+ 0x27e9d: "\x9c\x04\U00027e9d", // 𧺝
+ 0x27e9e: "\x9c\x04\U00027e9e", // 𧺞
+ 0x27e9f: "\x9c\x04\U00027e9f", // 𧺟
+ 0x27ea0: "\x9c\x04\U00027ea0", // 𧺠
+ 0x27ea1: "\x9c\x04\U00027ea1", // 𧺡
+ 0x27ea2: "\x9c\x04\U00027ea2", // 𧺢
+ 0x27ea3: "\x9c\x04\U00027ea3", // 𧺣
+ 0x27ea4: "\x9c\x04\U00027ea4", // 𧺤
+ 0x27ea5: "\x9c\x04\U00027ea5", // 𧺥
+ 0x27ea6: "\x9c\x04\U00027ea6", // 𧺦
+ 0x27ea7: "\x9c\x04\U00027ea7", // 𧺧
+ 0x27ea8: "\x9c\x04\U00027ea8", // 𧺨
+ 0x27ea9: "\x9c\x04\U00027ea9", // 𧺩
+ 0x27eaa: "\x9c\x04\U00027eaa", // 𧺪
+ 0x27eab: "\x9c\x04\U00027eab", // 𧺫
+ 0x27eac: "\x9c\x04\U00027eac", // 𧺬
+ 0x27ead: "\x9c\x04\U00027ead", // 𧺭
+ 0x27eae: "\x9c\x04\U00027eae", // 𧺮
+ 0x27eaf: "\x9c\x04\U00027eaf", // 𧺯
+ 0x27eb0: "\x9c\x04\U00027eb0", // 𧺰
+ 0x27eb1: "\x9c\x04\U00027eb1", // 𧺱
+ 0x27eb2: "\x9c\x04\U00027eb2", // 𧺲
+ 0x27eb3: "\x9c\x04\U00027eb3", // 𧺳
+ 0x27eb4: "\x9c\x04\U00027eb4", // 𧺴
+ 0x27eb5: "\x9c\x04\U00027eb5", // 𧺵
+ 0x27eb6: "\x9c\x05\U00027eb6", // 𧺶
+ 0x27eb7: "\x9c\x05\U00027eb7", // 𧺷
+ 0x27eb8: "\x9c\x05\U00027eb8", // 𧺸
+ 0x27eb9: "\x9c\x05\U00027eb9", // 𧺹
+ 0x27eba: "\x9c\x05\U00027eba", // 𧺺
+ 0x27ebb: "\x9c\x05\U00027ebb", // 𧺻
+ 0x27ebc: "\x9c\x05\U00027ebc", // 𧺼
+ 0x27ebd: "\x9c\x05\U00027ebd", // 𧺽
+ 0x27ebe: "\x9c\x05\U00027ebe", // 𧺾
+ 0x27ebf: "\x9c\x05\U00027ebf", // 𧺿
+ 0x27ec0: "\x9c\x05\U00027ec0", // 𧻀
+ 0x27ec1: "\x9c\x05\U00027ec1", // 𧻁
+ 0x27ec2: "\x9c\x05\U00027ec2", // 𧻂
+ 0x27ec3: "\x9c\x05\U00027ec3", // 𧻃
+ 0x27ec4: "\x9c\x05\U00027ec4", // 𧻄
+ 0x27ec5: "\x9c\x05\U00027ec5", // 𧻅
+ 0x27ec6: "\x9c\x05\U00027ec6", // 𧻆
+ 0x27ec7: "\x9c\x05\U00027ec7", // 𧻇
+ 0x27ec8: "\x9c\x05\U00027ec8", // 𧻈
+ 0x27ec9: "\x9c\x05\U00027ec9", // 𧻉
+ 0x27eca: "\x9c\x05\U00027eca", // 𧻊
+ 0x27ecb: "\x9c\x05\U00027ecb", // 𧻋
+ 0x27ecc: "\x9c\x05\U00027ecc", // 𧻌
+ 0x27ecd: "\x9c\x05\U00027ecd", // 𧻍
+ 0x27ece: "\x9c\x05\U00027ece", // 𧻎
+ 0x27ecf: "\x9c\x05\U00027ecf", // 𧻏
+ 0x27ed0: "\x9c\x06\U00027ed0", // 𧻐
+ 0x27ed1: "\x9c\x06\U00027ed1", // 𧻑
+ 0x27ed2: "\x9c\x06\U00027ed2", // 𧻒
+ 0x27ed3: "\x9c\x06\U00027ed3", // 𧻓
+ 0x27ed4: "\x9c\x06\U00027ed4", // 𧻔
+ 0x27ed5: "\x9c\x06\U00027ed5", // 𧻕
+ 0x27ed6: "\x9c\x06\U00027ed6", // 𧻖
+ 0x27ed7: "\x9c\x06\U00027ed7", // 𧻗
+ 0x27ed8: "\x9c\x06\U00027ed8", // 𧻘
+ 0x27ed9: "\x9c\x06\U00027ed9", // 𧻙
+ 0x27eda: "\x9c\x06\U00027eda", // 𧻚
+ 0x27edb: "\x9c\x06\U00027edb", // 𧻛
+ 0x27edc: "\x9c\x06\U00027edc", // 𧻜
+ 0x27edd: "\x9c\x06\U00027edd", // 𧻝
+ 0x27ede: "\x9c\x06\U00027ede", // 𧻞
+ 0x27edf: "\x9c\x06\U00027edf", // 𧻟
+ 0x27ee0: "\x9c\x06\U00027ee0", // 𧻠
+ 0x27ee1: "\x9c\x06\U00027ee1", // 𧻡
+ 0x27ee2: "\x9c\x06\U00027ee2", // 𧻢
+ 0x27ee3: "\x9c\x06\U00027ee3", // 𧻣
+ 0x27ee4: "\x9c\x06\U00027ee4", // 𧻤
+ 0x27ee5: "\x9c\x06\U00027ee5", // 𧻥
+ 0x27ee6: "\x9c\x06\U00027ee6", // 𧻦
+ 0x27ee7: "\x9c\x06\U00027ee7", // 𧻧
+ 0x27ee8: "\x9c\x06\U00027ee8", // 𧻨
+ 0x27ee9: "\x9c\x06\U00027ee9", // 𧻩
+ 0x27eea: "\x9c\x06\U00027eea", // 𧻪
+ 0x27eeb: "\x9c\x06\U00027eeb", // 𧻫
+ 0x27eec: "\x9c\x06\U00027eec", // 𧻬
+ 0x27eed: "\x9c\x06\U00027eed", // 𧻭
+ 0x27eee: "\x9c\x06\U00027eee", // 𧻮
+ 0x27eef: "\x9c\a\U00027eef", // 𧻯
+ 0x27ef0: "\x9c\a\U00027ef0", // 𧻰
+ 0x27ef1: "\x9c\a\U00027ef1", // 𧻱
+ 0x27ef2: "\x9c\a\U00027ef2", // 𧻲
+ 0x27ef3: "\x9c\a\U00027ef3", // 𧻳
+ 0x27ef4: "\x9c\a\U00027ef4", // 𧻴
+ 0x27ef5: "\x9c\a\U00027ef5", // 𧻵
+ 0x27ef6: "\x9c\a\U00027ef6", // 𧻶
+ 0x27ef7: "\x9c\a\U00027ef7", // 𧻷
+ 0x27ef8: "\x9c\a\U00027ef8", // 𧻸
+ 0x27ef9: "\x9c\a\U00027ef9", // 𧻹
+ 0x27efa: "\x9c\a\U00027efa", // 𧻺
+ 0x27efb: "\x9c\a\U00027efb", // 𧻻
+ 0x27efc: "\x9c\a\U00027efc", // 𧻼
+ 0x27efd: "\x9c\a\U00027efd", // 𧻽
+ 0x27efe: "\x9c\a\U00027efe", // 𧻾
+ 0x27eff: "\x9c\a\U00027eff", // 𧻿
+ 0x27f00: "\x9c\a\U00027f00", // 𧼀
+ 0x27f01: "\x9c\a\U00027f01", // 𧼁
+ 0x27f02: "\x9c\a\U00027f02", // 𧼂
+ 0x27f03: "\x9c\a\U00027f03", // 𧼃
+ 0x27f04: "\x9c\a\U00027f04", // 𧼄
+ 0x27f05: "\x9c\a\U00027f05", // 𧼅
+ 0x27f06: "\x9c\a\U00027f06", // 𧼆
+ 0x27f07: "\x9c\a\U00027f07", // 𧼇
+ 0x27f08: "\x9c\a\U00027f08", // 𧼈
+ 0x27f09: "\x9c\a\U00027f09", // 𧼉
+ 0x27f0a: "\x9c\a\U00027f0a", // 𧼊
+ 0x27f0b: "\x9c\a\U00027f0b", // 𧼋
+ 0x27f0c: "\x9c\a\U00027f0c", // 𧼌
+ 0x27f0d: "\x9c\a\U00027f0d", // 𧼍
+ 0x27f0e: "\x9c\b\U00027f0e", // 𧼎
+ 0x27f0f: "\x9c\b\U00027f0f", // 𧼏
+ 0x27f10: "\x9c\b\U00027f10", // 𧼐
+ 0x27f11: "\x9c\b\U00027f11", // 𧼑
+ 0x27f12: "\x9c\b\U00027f12", // 𧼒
+ 0x27f13: "\x9c\b\U00027f13", // 𧼓
+ 0x27f14: "\x9c\b\U00027f14", // 𧼔
+ 0x27f15: "\x9c\b\U00027f15", // 𧼕
+ 0x27f16: "\x9c\b\U00027f16", // 𧼖
+ 0x27f17: "\x9c\b\U00027f17", // 𧼗
+ 0x27f18: "\x9c\b\U00027f18", // 𧼘
+ 0x27f19: "\x9c\b\U00027f19", // 𧼙
+ 0x27f1a: "\x9c\b\U00027f1a", // 𧼚
+ 0x27f1b: "\x9c\b\U00027f1b", // 𧼛
+ 0x27f1c: "\x9c\b\U00027f1c", // 𧼜
+ 0x27f1d: "\x9c\a\U00027f1d", // 𧼝
+ 0x27f1e: "\x9c\b\U00027f1e", // 𧼞
+ 0x27f1f: "\x9c\t\U00027f1f", // 𧼟
+ 0x27f20: "\x9c\b\U00027f20", // 𧼠
+ 0x27f21: "\x9c\b\U00027f21", // 𧼡
+ 0x27f22: "\x9c\b\U00027f22", // 𧼢
+ 0x27f23: "\x9c\b\U00027f23", // 𧼣
+ 0x27f24: "\x9c\b\U00027f24", // 𧼤
+ 0x27f25: "\x9c\b\U00027f25", // 𧼥
+ 0x27f26: "\x9c\b\U00027f26", // 𧼦
+ 0x27f27: "\x9c\b\U00027f27", // 𧼧
+ 0x27f28: "\x9c\t\U00027f28", // 𧼨
+ 0x27f29: "\x9c\t\U00027f29", // 𧼩
+ 0x27f2a: "\x9c\t\U00027f2a", // 𧼪
+ 0x27f2b: "\x9c\t\U00027f2b", // 𧼫
+ 0x27f2c: "\x9c\t\U00027f2c", // 𧼬
+ 0x27f2d: "\x9c\t\U00027f2d", // 𧼭
+ 0x27f2e: "\x9c\t\U00027f2e", // 𧼮
+ 0x27f2f: "\x9c\t\U00027f2f", // 𧼯
+ 0x27f30: "\x9c\t\U00027f30", // 𧼰
+ 0x27f31: "\x9c\t\U00027f31", // 𧼱
+ 0x27f32: "\x9c\t\U00027f32", // 𧼲
+ 0x27f33: "\x9c\t\U00027f33", // 𧼳
+ 0x27f34: "\x9c\t\U00027f34", // 𧼴
+ 0x27f35: "\x9c\t\U00027f35", // 𧼵
+ 0x27f36: "\x9c\t\U00027f36", // 𧼶
+ 0x27f37: "\x9c\t\U00027f37", // 𧼷
+ 0x27f38: "\x9c\t\U00027f38", // 𧼸
+ 0x27f39: "\x9c\t\U00027f39", // 𧼹
+ 0x27f3a: "\x9c\t\U00027f3a", // 𧼺
+ 0x27f3b: "\x9c\t\U00027f3b", // 𧼻
+ 0x27f3c: "\x9c\t\U00027f3c", // 𧼼
+ 0x27f3d: "\x9c\t\U00027f3d", // 𧼽
+ 0x27f3e: "\x9c\t\U00027f3e", // 𧼾
+ 0x27f3f: "\x9c\t\U00027f3f", // 𧼿
+ 0x27f40: "\x9c\t\U00027f40", // 𧽀
+ 0x27f41: "\x9c\t\U00027f41", // 𧽁
+ 0x27f42: "\x9c\t\U00027f42", // 𧽂
+ 0x27f43: "\x9c\t\U00027f43", // 𧽃
+ 0x27f44: "\x9c\t\U00027f44", // 𧽄
+ 0x27f45: "\x9c\t\U00027f45", // 𧽅
+ 0x27f46: "\x9c\t\U00027f46", // 𧽆
+ 0x27f47: "\x9c\t\U00027f47", // 𧽇
+ 0x27f48: "\x9c\t\U00027f48", // 𧽈
+ 0x27f49: "\x9c\n\U00027f49", // 𧽉
+ 0x27f4a: "\x9c\n\U00027f4a", // 𧽊
+ 0x27f4b: "\x9c\n\U00027f4b", // 𧽋
+ 0x27f4c: "\x9c\n\U00027f4c", // 𧽌
+ 0x27f4d: "\x9c\n\U00027f4d", // 𧽍
+ 0x27f4e: "\x9c\n\U00027f4e", // 𧽎
+ 0x27f4f: "\x9c\n\U00027f4f", // 𧽏
+ 0x27f50: "\x9c\n\U00027f50", // 𧽐
+ 0x27f51: "\x9c\n\U00027f51", // 𧽑
+ 0x27f52: "\x9c\n\U00027f52", // 𧽒
+ 0x27f53: "\x9c\n\U00027f53", // 𧽓
+ 0x27f54: "\x9c\n\U00027f54", // 𧽔
+ 0x27f55: "\x9c\n\U00027f55", // 𧽕
+ 0x27f56: "\x9c\n\U00027f56", // 𧽖
+ 0x27f57: "\x9c\n\U00027f57", // 𧽗
+ 0x27f58: "\x9c\n\U00027f58", // 𧽘
+ 0x27f59: "\x9c\n\U00027f59", // 𧽙
+ 0x27f5a: "\x9c\n\U00027f5a", // 𧽚
+ 0x27f5b: "\x9c\n\U00027f5b", // 𧽛
+ 0x27f5c: "\x9c\n\U00027f5c", // 𧽜
+ 0x27f5d: "\x9c\n\U00027f5d", // 𧽝
+ 0x27f5e: "\x9c\v\U00027f5e", // 𧽞
+ 0x27f5f: "\x9c\v\U00027f5f", // 𧽟
+ 0x27f60: "\x9c\v\U00027f60", // 𧽠
+ 0x27f61: "\x9c\v\U00027f61", // 𧽡
+ 0x27f62: "\x9c\v\U00027f62", // 𧽢
+ 0x27f63: "\x9c\v\U00027f63", // 𧽣
+ 0x27f64: "\x9c\v\U00027f64", // 𧽤
+ 0x27f65: "\x9c\v\U00027f65", // 𧽥
+ 0x27f66: "\x9c\v\U00027f66", // 𧽦
+ 0x27f67: "\x9c\v\U00027f67", // 𧽧
+ 0x27f68: "\x9c\v\U00027f68", // 𧽨
+ 0x27f69: "\x9c\v\U00027f69", // 𧽩
+ 0x27f6a: "\x9c\v\U00027f6a", // 𧽪
+ 0x27f6b: "\x9c\v\U00027f6b", // 𧽫
+ 0x27f6c: "\x9c\v\U00027f6c", // 𧽬
+ 0x27f6d: "\x9c\v\U00027f6d", // 𧽭
+ 0x27f6e: "\x9c\v\U00027f6e", // 𧽮
+ 0x27f6f: "\x9c\v\U00027f6f", // 𧽯
+ 0x27f70: "\x9c\v\U00027f70", // 𧽰
+ 0x27f71: "\x9c\v\U00027f71", // 𧽱
+ 0x27f72: "\x9c\v\U00027f72", // 𧽲
+ 0x27f73: "\x9c\v\U00027f73", // 𧽳
+ 0x27f74: "\x9c\v\U00027f74", // 𧽴
+ 0x27f75: "\x9c\v\U00027f75", // 𧽵
+ 0x27f76: "\x9c\f\U00027f76", // 𧽶
+ 0x27f77: "\x9c\f\U00027f77", // 𧽷
+ 0x27f78: "\x9c\f\U00027f78", // 𧽸
+ 0x27f79: "\x9c\f\U00027f79", // 𧽹
+ 0x27f7a: "\x9c\f\U00027f7a", // 𧽺
+ 0x27f7b: "\x9c\f\U00027f7b", // 𧽻
+ 0x27f7c: "\x9c\f\U00027f7c", // 𧽼
+ 0x27f7d: "\x9c\f\U00027f7d", // 𧽽
+ 0x27f7e: "\x9c\f\U00027f7e", // 𧽾
+ 0x27f7f: "\x9c\f\U00027f7f", // 𧽿
+ 0x27f80: "\x9c\f\U00027f80", // 𧾀
+ 0x27f81: "\x9c\f\U00027f81", // 𧾁
+ 0x27f82: "\x9c\f\U00027f82", // 𧾂
+ 0x27f83: "\x9c\f\U00027f83", // 𧾃
+ 0x27f84: "\x9c\f\U00027f84", // 𧾄
+ 0x27f85: "\x9c\f\U00027f85", // 𧾅
+ 0x27f86: "\x9c\f\U00027f86", // 𧾆
+ 0x27f87: "\x9c\f\U00027f87", // 𧾇
+ 0x27f88: "\x9c\f\U00027f88", // 𧾈
+ 0x27f89: "\x9c\f\U00027f89", // 𧾉
+ 0x27f8a: "\x9c\f\U00027f8a", // 𧾊
+ 0x27f8b: "\x9c\f\U00027f8b", // 𧾋
+ 0x27f8c: "\x9c\f\U00027f8c", // 𧾌
+ 0x27f8d: "\x9c\r\U00027f8d", // 𧾍
+ 0x27f8e: "\x9c\r\U00027f8e", // 𧾎
+ 0x27f8f: "\x9c\r\U00027f8f", // 𧾏
+ 0x27f90: "\x9c\r\U00027f90", // 𧾐
+ 0x27f91: "\x9c\r\U00027f91", // 𧾑
+ 0x27f92: "\x9c\r\U00027f92", // 𧾒
+ 0x27f93: "\x9c\r\U00027f93", // 𧾓
+ 0x27f94: "\x9c\r\U00027f94", // 𧾔
+ 0x27f95: "\x9c\r\U00027f95", // 𧾕
+ 0x27f96: "\x9c\r\U00027f96", // 𧾖
+ 0x27f97: "\x9c\r\U00027f97", // 𧾗
+ 0x27f98: "\x9c\r\U00027f98", // 𧾘
+ 0x27f99: "\x9c\x0e\U00027f99", // 𧾙
+ 0x27f9a: "\x9c\x0e\U00027f9a", // 𧾚
+ 0x27f9b: "\x9c\x0e\U00027f9b", // 𧾛
+ 0x27f9c: "\x9c\x0e\U00027f9c", // 𧾜
+ 0x27f9d: "\x9c\x0e\U00027f9d", // 𧾝
+ 0x27f9e: "\x9c\x0e\U00027f9e", // 𧾞
+ 0x27f9f: "\x9c\x0e\U00027f9f", // 𧾟
+ 0x27fa0: "\x9c\x0e\U00027fa0", // 𧾠
+ 0x27fa1: "\x9c\x0f\U00027fa1", // 𧾡
+ 0x27fa2: "\x9c\x0f\U00027fa2", // 𧾢
+ 0x27fa3: "\x9c\x0f\U00027fa3", // 𧾣
+ 0x27fa4: "\x9c\x0f\U00027fa4", // 𧾤
+ 0x27fa5: "\x9c\x0f\U00027fa5", // 𧾥
+ 0x27fa6: "\x9c\x0f\U00027fa6", // 𧾦
+ 0x27fa7: "\x9c\x0f\U00027fa7", // 𧾧
+ 0x27fa8: "\x9c\x10\U00027fa8", // 𧾨
+ 0x27fa9: "\x9c\x10\U00027fa9", // 𧾩
+ 0x27faa: "\x9c\x10\U00027faa", // 𧾪
+ 0x27fab: "\x9c\x10\U00027fab", // 𧾫
+ 0x27fac: "\x9c\x10\U00027fac", // 𧾬
+ 0x27fad: "\x9c\x10\U00027fad", // 𧾭
+ 0x27fae: "\x9c\x11\U00027fae", // 𧾮
+ 0x27faf: "\x9c\x11\U00027faf", // 𧾯
+ 0x27fb0: "\x9c\x12\U00027fb0", // 𧾰
+ 0x27fb1: "\x9c\x12\U00027fb1", // 𧾱
+ 0x27fb2: "\x9c\x12\U00027fb2", // 𧾲
+ 0x27fb3: "\x9c\x12\U00027fb3", // 𧾳
+ 0x27fb4: "\x9c\x12\U00027fb4", // 𧾴
+ 0x27fb5: "\x9c\x14\U00027fb5", // 𧾵
+ 0x27fb6: "\x9c\x15\U00027fb6", // 𧾶
+ 0x27fb7: "\x9d\x00\U00027fb7", // 𧾷
+ 0x27fb8: "\x9d\x01\U00027fb8", // 𧾸
+ 0x27fb9: "\x9d\x01\U00027fb9", // 𧾹
+ 0x27fba: "\x9d\x02\U00027fba", // 𧾺
+ 0x27fbb: "\x9d\x02\U00027fbb", // 𧾻
+ 0x27fbc: "\x9d\x02\U00027fbc", // 𧾼
+ 0x27fbd: "\x9d\x02\U00027fbd", // 𧾽
+ 0x27fbe: "\x9d\x02\U00027fbe", // 𧾾
+ 0x27fbf: "\x9d\x02\U00027fbf", // 𧾿
+ 0x27fc0: "\x9d\x02\U00027fc0", // 𧿀
+ 0x27fc1: "\x9d\x03\U00027fc1", // 𧿁
+ 0x27fc2: "\x9d\x03\U00027fc2", // 𧿂
+ 0x27fc3: "\x9d\x03\U00027fc3", // 𧿃
+ 0x27fc4: "\x9d\x03\U00027fc4", // 𧿄
+ 0x27fc5: "\x9d\x03\U00027fc5", // 𧿅
+ 0x27fc6: "\x9d\x03\U00027fc6", // 𧿆
+ 0x27fc7: "\x9d\x03\U00027fc7", // 𧿇
+ 0x27fc8: "\x9d\x03\U00027fc8", // 𧿈
+ 0x27fc9: "\x9d\x03\U00027fc9", // 𧿉
+ 0x27fca: "\x9d\x03\U00027fca", // 𧿊
+ 0x27fcb: "\x9d\x03\U00027fcb", // 𧿋
+ 0x27fcc: "\x9d\x03\U00027fcc", // 𧿌
+ 0x27fcd: "\x9d\x03\U00027fcd", // 𧿍
+ 0x27fce: "\x9d\x03\U00027fce", // 𧿎
+ 0x27fcf: "\x9d\x03\U00027fcf", // 𧿏
+ 0x27fd0: "\x9d\x03\U00027fd0", // 𧿐
+ 0x27fd1: "\x9d\x03\U00027fd1", // 𧿑
+ 0x27fd2: "\x9d\x04\U00027fd2", // 𧿒
+ 0x27fd3: "\x9d\x04\U00027fd3", // 𧿓
+ 0x27fd4: "\x9d\x04\U00027fd4", // 𧿔
+ 0x27fd5: "\x9d\x04\U00027fd5", // 𧿕
+ 0x27fd6: "\x9d\x04\U00027fd6", // 𧿖
+ 0x27fd7: "\x9d\x04\U00027fd7", // 𧿗
+ 0x27fd8: "\x9d\x04\U00027fd8", // 𧿘
+ 0x27fd9: "\x9d\x04\U00027fd9", // 𧿙
+ 0x27fda: "\x9d\x04\U00027fda", // 𧿚
+ 0x27fdb: "\x9d\x04\U00027fdb", // 𧿛
+ 0x27fdc: "\x9d\x04\U00027fdc", // 𧿜
+ 0x27fdd: "\x9d\x04\U00027fdd", // 𧿝
+ 0x27fde: "\x9d\x04\U00027fde", // 𧿞
+ 0x27fdf: "\x9d\x04\U00027fdf", // 𧿟
+ 0x27fe0: "\x9d\x04\U00027fe0", // 𧿠
+ 0x27fe1: "\x9d\x04\U00027fe1", // 𧿡
+ 0x27fe2: "\x9d\x04\U00027fe2", // 𧿢
+ 0x27fe3: "\x9d\x04\U00027fe3", // 𧿣
+ 0x27fe4: "\x9d\x04\U00027fe4", // 𧿤
+ 0x27fe5: "\x9d\x04\U00027fe5", // 𧿥
+ 0x27fe6: "\x9d\x04\U00027fe6", // 𧿦
+ 0x27fe7: "\x9d\x04\U00027fe7", // 𧿧
+ 0x27fe8: "\x9d\x04\U00027fe8", // 𧿨
+ 0x27fe9: "\x9d\x04\U00027fe9", // 𧿩
+ 0x27fea: "\x9d\x04\U00027fea", // 𧿪
+ 0x27feb: "\x9d\x04\U00027feb", // 𧿫
+ 0x27fec: "\x9d\x04\U00027fec", // 𧿬
+ 0x27fed: "\x9d\x04\U00027fed", // 𧿭
+ 0x27fee: "\x9d\x04\U00027fee", // 𧿮
+ 0x27fef: "\x9d\x04\U00027fef", // 𧿯
+ 0x27ff0: "\x9d\x04\U00027ff0", // 𧿰
+ 0x27ff1: "\x9d\x04\U00027ff1", // 𧿱
+ 0x27ff2: "\x9d\x05\U00027ff2", // 𧿲
+ 0x27ff3: "\x9d\x05\U00027ff3", // 𧿳
+ 0x27ff4: "\x9d\x05\U00027ff4", // 𧿴
+ 0x27ff5: "\x9d\x05\U00027ff5", // 𧿵
+ 0x27ff6: "\x9d\x05\U00027ff6", // 𧿶
+ 0x27ff7: "\x9d\x05\U00027ff7", // 𧿷
+ 0x27ff8: "\x9d\x05\U00027ff8", // 𧿸
+ 0x27ff9: "\x9d\x05\U00027ff9", // 𧿹
+ 0x27ffa: "\x9d\x05\U00027ffa", // 𧿺
+ 0x27ffb: "\x9d\x05\U00027ffb", // 𧿻
+ 0x27ffc: "\x9d\x05\U00027ffc", // 𧿼
+ 0x27ffd: "\x9d\x05\U00027ffd", // 𧿽
+ 0x27ffe: "\x9d\x05\U00027ffe", // 𧿾
+ 0x27fff: "\x9d\x05\U00027fff", // 𧿿
+ 0x28000: "\x9d\x05\U00028000", // 𨀀
+ 0x28001: "\x9d\x05\U00028001", // 𨀁
+ 0x28002: "\x9d\x05\U00028002", // 𨀂
+ 0x28003: "\x9d\x05\U00028003", // 𨀃
+ 0x28004: "\x9d\x05\U00028004", // 𨀄
+ 0x28005: "\x9d\x05\U00028005", // 𨀅
+ 0x28006: "\x9d\x05\U00028006", // 𨀆
+ 0x28007: "\x9d\x05\U00028007", // 𨀇
+ 0x28008: "\x9d\x05\U00028008", // 𨀈
+ 0x28009: "\x9d\x05\U00028009", // 𨀉
+ 0x2800a: "\x9d\x05\U0002800a", // 𨀊
+ 0x2800b: "\x9d\x05\U0002800b", // 𨀋
+ 0x2800c: "\x9d\x05\U0002800c", // 𨀌
+ 0x2800d: "\x9d\x05\U0002800d", // 𨀍
+ 0x2800e: "\x9d\x05\U0002800e", // 𨀎
+ 0x2800f: "\x9d\x05\U0002800f", // 𨀏
+ 0x28010: "\x9d\x05\U00028010", // 𨀐
+ 0x28011: "\x9d\x05\U00028011", // 𨀑
+ 0x28012: "\x9d\x05\U00028012", // 𨀒
+ 0x28013: "\x9d\x05\U00028013", // 𨀓
+ 0x28014: "\x9d\x05\U00028014", // 𨀔
+ 0x28015: "\x9d\x06\U00028015", // 𨀕
+ 0x28016: "\x9d\x06\U00028016", // 𨀖
+ 0x28017: "\x9d\x06\U00028017", // 𨀗
+ 0x28018: "\x9d\x06\U00028018", // 𨀘
+ 0x28019: "\x9d\x06\U00028019", // 𨀙
+ 0x2801a: "\x9d\x06\U0002801a", // 𨀚
+ 0x2801b: "\x9d\x06\U0002801b", // 𨀛
+ 0x2801c: "\x9d\x06\U0002801c", // 𨀜
+ 0x2801d: "\x9d\x06\U0002801d", // 𨀝
+ 0x2801e: "\x9d\x06\U0002801e", // 𨀞
+ 0x2801f: "\x9d\x06\U0002801f", // 𨀟
+ 0x28020: "\x9d\x06\U00028020", // 𨀠
+ 0x28021: "\x9d\x06\U00028021", // 𨀡
+ 0x28022: "\x9d\x06\U00028022", // 𨀢
+ 0x28023: "\x9d\x06\U00028023", // 𨀣
+ 0x28024: "\x9d\x06\U00028024", // 𨀤
+ 0x28025: "\x9d\x06\U00028025", // 𨀥
+ 0x28026: "\x9d\x06\U00028026", // 𨀦
+ 0x28027: "\x9d\x06\U00028027", // 𨀧
+ 0x28028: "\x9d\x06\U00028028", // 𨀨
+ 0x28029: "\x9d\x06\U00028029", // 𨀩
+ 0x2802a: "\x9d\x06\U0002802a", // 𨀪
+ 0x2802b: "\x9d\x06\U0002802b", // 𨀫
+ 0x2802c: "\x9d\x06\U0002802c", // 𨀬
+ 0x2802d: "\x9d\x06\U0002802d", // 𨀭
+ 0x2802e: "\x9d\x06\U0002802e", // 𨀮
+ 0x2802f: "\x9d\x06\U0002802f", // 𨀯
+ 0x28030: "\x9d\x06\U00028030", // 𨀰
+ 0x28031: "\x9d\x06\U00028031", // 𨀱
+ 0x28032: "\x9d\x06\U00028032", // 𨀲
+ 0x28033: "\x9d\x06\U00028033", // 𨀳
+ 0x28034: "\x9d\x06\U00028034", // 𨀴
+ 0x28035: "\x9d\x06\U00028035", // 𨀵
+ 0x28036: "\x9d\x06\U00028036", // 𨀶
+ 0x28037: "\x9d\x06\U00028037", // 𨀷
+ 0x28038: "\x9d\x06\U00028038", // 𨀸
+ 0x28039: "\x9d\x06\U00028039", // 𨀹
+ 0x2803a: "\x9d\x06\U0002803a", // 𨀺
+ 0x2803b: "\x9d\x06\U0002803b", // 𨀻
+ 0x2803c: "\x9d\x06\U0002803c", // 𨀼
+ 0x2803d: "\x9d\x06\U0002803d", // 𨀽
+ 0x2803e: "\x9d\x06\U0002803e", // 𨀾
+ 0x2803f: "\x9d\x06\U0002803f", // 𨀿
+ 0x28040: "\x9d\a\U00028040", // 𨁀
+ 0x28041: "\x9d\a\U00028041", // 𨁁
+ 0x28042: "\x9d\a\U00028042", // 𨁂
+ 0x28043: "\x9d\a\U00028043", // 𨁃
+ 0x28044: "\x9d\a\U00028044", // 𨁄
+ 0x28045: "\x9d\a\U00028045", // 𨁅
+ 0x28046: "\x9d\a\U00028046", // 𨁆
+ 0x28047: "\x9d\a\U00028047", // 𨁇
+ 0x28048: "\x9d\a\U00028048", // 𨁈
+ 0x28049: "\x9d\a\U00028049", // 𨁉
+ 0x2804a: "\x9d\a\U0002804a", // 𨁊
+ 0x2804b: "\x9d\a\U0002804b", // 𨁋
+ 0x2804c: "\x9d\a\U0002804c", // 𨁌
+ 0x2804d: "\x9d\a\U0002804d", // 𨁍
+ 0x2804e: "\x9d\a\U0002804e", // 𨁎
+ 0x2804f: "\x9d\a\U0002804f", // 𨁏
+ 0x28050: "\x9d\a\U00028050", // 𨁐
+ 0x28051: "\x9d\a\U00028051", // 𨁑
+ 0x28052: "\x9d\a\U00028052", // 𨁒
+ 0x28053: "\x9d\a\U00028053", // 𨁓
+ 0x28054: "\x9d\a\U00028054", // 𨁔
+ 0x28055: "\x9d\a\U00028055", // 𨁕
+ 0x28056: "\x9d\a\U00028056", // 𨁖
+ 0x28057: "\x9d\a\U00028057", // 𨁗
+ 0x28058: "\x9d\a\U00028058", // 𨁘
+ 0x28059: "\x9d\a\U00028059", // 𨁙
+ 0x2805a: "\x9d\a\U0002805a", // 𨁚
+ 0x2805b: "\x9d\a\U0002805b", // 𨁛
+ 0x2805c: "\x9d\a\U0002805c", // 𨁜
+ 0x2805d: "\x9d\a\U0002805d", // 𨁝
+ 0x2805e: "\x9d\a\U0002805e", // 𨁞
+ 0x2805f: "\x9d\a\U0002805f", // 𨁟
+ 0x28060: "\x9d\a\U00028060", // 𨁠
+ 0x28061: "\x9d\a\U00028061", // 𨁡
+ 0x28062: "\x9d\a\U00028062", // 𨁢
+ 0x28063: "\x9d\a\U00028063", // 𨁣
+ 0x28064: "\x9d\a\U00028064", // 𨁤
+ 0x28065: "\x9d\a\U00028065", // 𨁥
+ 0x28066: "\x9d\a\U00028066", // 𨁦
+ 0x28067: "\x9d\a\U00028067", // 𨁧
+ 0x28068: "\x9d\a\U00028068", // 𨁨
+ 0x28069: "\x9d\a\U00028069", // 𨁩
+ 0x2806a: "\x9d\a\U0002806a", // 𨁪
+ 0x2806b: "\x9d\a\U0002806b", // 𨁫
+ 0x2806c: "\x9d\a\U0002806c", // 𨁬
+ 0x2806d: "\x9d\a\U0002806d", // 𨁭
+ 0x2806e: "\x9d\a\U0002806e", // 𨁮
+ 0x2806f: "\x9d\a\U0002806f", // 𨁯
+ 0x28070: "\x9d\a\U00028070", // 𨁰
+ 0x28071: "\x9d\a\U00028071", // 𨁱
+ 0x28072: "\x9d\a\U00028072", // 𨁲
+ 0x28073: "\x9d\a\U00028073", // 𨁳
+ 0x28074: "\x9d\a\U00028074", // 𨁴
+ 0x28075: "\x9d\b\U00028075", // 𨁵
+ 0x28076: "\x9d\b\U00028076", // 𨁶
+ 0x28077: "\x9d\b\U00028077", // 𨁷
+ 0x28078: "\x9d\b\U00028078", // 𨁸
+ 0x28079: "\x9d\b\U00028079", // 𨁹
+ 0x2807a: "\x9d\b\U0002807a", // 𨁺
+ 0x2807b: "\x9d\b\U0002807b", // 𨁻
+ 0x2807c: "\x9d\b\U0002807c", // 𨁼
+ 0x2807d: "\x9d\b\U0002807d", // 𨁽
+ 0x2807e: "\x9d\b\U0002807e", // 𨁾
+ 0x2807f: "\x9d\b\U0002807f", // 𨁿
+ 0x28080: "\x9d\b\U00028080", // 𨂀
+ 0x28081: "\x9d\b\U00028081", // 𨂁
+ 0x28082: "\x9d\b\U00028082", // 𨂂
+ 0x28083: "\x9d\b\U00028083", // 𨂃
+ 0x28084: "\x9d\b\U00028084", // 𨂄
+ 0x28085: "\x9d\b\U00028085", // 𨂅
+ 0x28086: "\x9d\b\U00028086", // 𨂆
+ 0x28087: "\x9d\b\U00028087", // 𨂇
+ 0x28088: "\x9d\b\U00028088", // 𨂈
+ 0x28089: "\x9d\b\U00028089", // 𨂉
+ 0x2808a: "\x9d\b\U0002808a", // 𨂊
+ 0x2808b: "\x9d\b\U0002808b", // 𨂋
+ 0x2808c: "\x9d\b\U0002808c", // 𨂌
+ 0x2808d: "\x9d\b\U0002808d", // 𨂍
+ 0x2808e: "\x9d\b\U0002808e", // 𨂎
+ 0x2808f: "\x9d\b\U0002808f", // 𨂏
+ 0x28090: "\x9d\b\U00028090", // 𨂐
+ 0x28091: "\x9d\b\U00028091", // 𨂑
+ 0x28092: "\x9d\b\U00028092", // 𨂒
+ 0x28093: "\x9d\b\U00028093", // 𨂓
+ 0x28094: "\x9d\b\U00028094", // 𨂔
+ 0x28095: "\x9d\b\U00028095", // 𨂕
+ 0x28096: "\x9d\b\U00028096", // 𨂖
+ 0x28097: "\x9d\b\U00028097", // 𨂗
+ 0x28098: "\x9d\b\U00028098", // 𨂘
+ 0x28099: "\x9d\b\U00028099", // 𨂙
+ 0x2809a: "\x9d\b\U0002809a", // 𨂚
+ 0x2809b: "\x9d\b\U0002809b", // 𨂛
+ 0x2809c: "\x9d\b\U0002809c", // 𨂜
+ 0x2809d: "\x9d\t\U0002809d", // 𨂝
+ 0x2809e: "\x9d\t\U0002809e", // 𨂞
+ 0x2809f: "\x9d\b\U0002809f", // 𨂟
+ 0x280a0: "\x9d\t\U000280a0", // 𨂠
+ 0x280a1: "\x9d\t\U000280a1", // 𨂡
+ 0x280a2: "\x9d\t\U000280a2", // 𨂢
+ 0x280a3: "\x9d\t\U000280a3", // 𨂣
+ 0x280a4: "\x9d\t\U000280a4", // 𨂤
+ 0x280a5: "\x9d\t\U000280a5", // 𨂥
+ 0x280a6: "\x9d\t\U000280a6", // 𨂦
+ 0x280a7: "\x9d\t\U000280a7", // 𨂧
+ 0x280a8: "\x9d\t\U000280a8", // 𨂨
+ 0x280a9: "\x9d\t\U000280a9", // 𨂩
+ 0x280aa: "\x9d\t\U000280aa", // 𨂪
+ 0x280ab: "\x9d\t\U000280ab", // 𨂫
+ 0x280ac: "\x9d\t\U000280ac", // 𨂬
+ 0x280ad: "\x9d\t\U000280ad", // 𨂭
+ 0x280ae: "\x9d\t\U000280ae", // 𨂮
+ 0x280af: "\x9d\t\U000280af", // 𨂯
+ 0x280b0: "\x9d\t\U000280b0", // 𨂰
+ 0x280b1: "\x9d\t\U000280b1", // 𨂱
+ 0x280b2: "\x9d\t\U000280b2", // 𨂲
+ 0x280b3: "\x9d\t\U000280b3", // 𨂳
+ 0x280b4: "\x9d\t\U000280b4", // 𨂴
+ 0x280b5: "\x9d\t\U000280b5", // 𨂵
+ 0x280b6: "\x9d\t\U000280b6", // 𨂶
+ 0x280b7: "\x9d\t\U000280b7", // 𨂷
+ 0x280b8: "\x9d\t\U000280b8", // 𨂸
+ 0x280b9: "\x9d\t\U000280b9", // 𨂹
+ 0x280ba: "\x9d\t\U000280ba", // 𨂺
+ 0x280bb: "\x9d\t\U000280bb", // 𨂻
+ 0x280bc: "\x9d\t\U000280bc", // 𨂼
+ 0x280bd: "\x9d\t\U000280bd", // 𨂽
+ 0x280be: "\x9d\t\U000280be", // 𨂾
+ 0x280bf: "\x9d\t\U000280bf", // 𨂿
+ 0x280c0: "\x9d\t\U000280c0", // 𨃀
+ 0x280c1: "\x9d\t\U000280c1", // 𨃁
+ 0x280c2: "\x9d\t\U000280c2", // 𨃂
+ 0x280c3: "\x9d\t\U000280c3", // 𨃃
+ 0x280c4: "\x9d\t\U000280c4", // 𨃄
+ 0x280c5: "\x9d\t\U000280c5", // 𨃅
+ 0x280c6: "\x9d\t\U000280c6", // 𨃆
+ 0x280c7: "\x9d\t\U000280c7", // 𨃇
+ 0x280c8: "\x9d\t\U000280c8", // 𨃈
+ 0x280c9: "\x9d\t\U000280c9", // 𨃉
+ 0x280ca: "\x9d\t\U000280ca", // 𨃊
+ 0x280cb: "\x9d\t\U000280cb", // 𨃋
+ 0x280cc: "\x9d\t\U000280cc", // 𨃌
+ 0x280cd: "\x9d\t\U000280cd", // 𨃍
+ 0x280ce: "\x9d\t\U000280ce", // 𨃎
+ 0x280cf: "\x9d\t\U000280cf", // 𨃏
+ 0x280d0: "\x9d\t\U000280d0", // 𨃐
+ 0x280d1: "\x9d\t\U000280d1", // 𨃑
+ 0x280d2: "\x9d\t\U000280d2", // 𨃒
+ 0x280d3: "\x9d\n\U000280d3", // 𨃓
+ 0x280d4: "\x9d\n\U000280d4", // 𨃔
+ 0x280d5: "\x9d\n\U000280d5", // 𨃕
+ 0x280d6: "\x9d\n\U000280d6", // 𨃖
+ 0x280d7: "\x9d\n\U000280d7", // 𨃗
+ 0x280d8: "\x9d\n\U000280d8", // 𨃘
+ 0x280d9: "\x9d\n\U000280d9", // 𨃙
+ 0x280da: "\x9d\n\U000280da", // 𨃚
+ 0x280db: "\x9d\n\U000280db", // 𨃛
+ 0x280dc: "\x9d\n\U000280dc", // 𨃜
+ 0x280dd: "\x9d\n\U000280dd", // 𨃝
+ 0x280de: "\x9d\n\U000280de", // 𨃞
+ 0x280df: "\x9d\n\U000280df", // 𨃟
+ 0x280e0: "\x9d\n\U000280e0", // 𨃠
+ 0x280e1: "\x9d\n\U000280e1", // 𨃡
+ 0x280e2: "\x9d\n\U000280e2", // 𨃢
+ 0x280e3: "\x9d\n\U000280e3", // 𨃣
+ 0x280e4: "\x9d\n\U000280e4", // 𨃤
+ 0x280e5: "\x9d\n\U000280e5", // 𨃥
+ 0x280e6: "\x9d\n\U000280e6", // 𨃦
+ 0x280e7: "\x9d\n\U000280e7", // 𨃧
+ 0x280e8: "\x9d\n\U000280e8", // 𨃨
+ 0x280e9: "\x9d\n\U000280e9", // 𨃩
+ 0x280ea: "\x9d\n\U000280ea", // 𨃪
+ 0x280eb: "\x9d\n\U000280eb", // 𨃫
+ 0x280ec: "\x9d\n\U000280ec", // 𨃬
+ 0x280ed: "\x9d\n\U000280ed", // 𨃭
+ 0x280ee: "\x9d\n\U000280ee", // 𨃮
+ 0x280ef: "\x9d\n\U000280ef", // 𨃯
+ 0x280f0: "\x9d\n\U000280f0", // 𨃰
+ 0x280f1: "\x9d\n\U000280f1", // 𨃱
+ 0x280f2: "\x9d\n\U000280f2", // 𨃲
+ 0x280f3: "\x9d\n\U000280f3", // 𨃳
+ 0x280f4: "\x9d\n\U000280f4", // 𨃴
+ 0x280f5: "\x9d\n\U000280f5", // 𨃵
+ 0x280f6: "\x9d\n\U000280f6", // 𨃶
+ 0x280f7: "\x9d\n\U000280f7", // 𨃷
+ 0x280f8: "\x9d\n\U000280f8", // 𨃸
+ 0x280f9: "\x9d\n\U000280f9", // 𨃹
+ 0x280fa: "\x9d\n\U000280fa", // 𨃺
+ 0x280fb: "\x9d\n\U000280fb", // 𨃻
+ 0x280fc: "\x9d\n\U000280fc", // 𨃼
+ 0x280fd: "\x9d\n\U000280fd", // 𨃽
+ 0x280fe: "\x9d\n\U000280fe", // 𨃾
+ 0x280ff: "\x9d\n\U000280ff", // 𨃿
+ 0x28100: "\x9d\n\U00028100", // 𨄀
+ 0x28101: "\x9d\n\U00028101", // 𨄁
+ 0x28102: "\x9d\n\U00028102", // 𨄂
+ 0x28103: "\x9d\v\U00028103", // 𨄃
+ 0x28104: "\x9d\n\U00028104", // 𨄄
+ 0x28105: "\x9d\v\U00028105", // 𨄅
+ 0x28106: "\x9d\v\U00028106", // 𨄆
+ 0x28107: "\x9d\v\U00028107", // 𨄇
+ 0x28108: "\x9d\v\U00028108", // 𨄈
+ 0x28109: "\x9d\v\U00028109", // 𨄉
+ 0x2810a: "\x9d\v\U0002810a", // 𨄊
+ 0x2810b: "\x9d\v\U0002810b", // 𨄋
+ 0x2810c: "\x9d\v\U0002810c", // 𨄌
+ 0x2810d: "\x9d\v\U0002810d", // 𨄍
+ 0x2810e: "\x9d\v\U0002810e", // 𨄎
+ 0x2810f: "\x9d\v\U0002810f", // 𨄏
+ 0x28110: "\x9d\v\U00028110", // 𨄐
+ 0x28111: "\x9d\v\U00028111", // 𨄑
+ 0x28112: "\x9d\v\U00028112", // 𨄒
+ 0x28113: "\x9d\v\U00028113", // 𨄓
+ 0x28114: "\x9d\v\U00028114", // 𨄔
+ 0x28115: "\x9d\v\U00028115", // 𨄕
+ 0x28116: "\x9d\v\U00028116", // 𨄖
+ 0x28117: "\x9d\v\U00028117", // 𨄗
+ 0x28118: "\x9d\v\U00028118", // 𨄘
+ 0x28119: "\x9d\v\U00028119", // 𨄙
+ 0x2811a: "\x9d\v\U0002811a", // 𨄚
+ 0x2811b: "\x9d\v\U0002811b", // 𨄛
+ 0x2811c: "\x9d\v\U0002811c", // 𨄜
+ 0x2811d: "\x9d\v\U0002811d", // 𨄝
+ 0x2811e: "\x9d\v\U0002811e", // 𨄞
+ 0x2811f: "\x9d\v\U0002811f", // 𨄟
+ 0x28120: "\x9d\v\U00028120", // 𨄠
+ 0x28121: "\x9d\v\U00028121", // 𨄡
+ 0x28122: "\x9d\v\U00028122", // 𨄢
+ 0x28123: "\x9d\v\U00028123", // 𨄣
+ 0x28124: "\x9d\v\U00028124", // 𨄤
+ 0x28125: "\x9d\v\U00028125", // 𨄥
+ 0x28126: "\x9d\v\U00028126", // 𨄦
+ 0x28127: "\x9d\v\U00028127", // 𨄧
+ 0x28128: "\x9d\v\U00028128", // 𨄨
+ 0x28129: "\x9d\v\U00028129", // 𨄩
+ 0x2812a: "\x9d\v\U0002812a", // 𨄪
+ 0x2812b: "\x9d\v\U0002812b", // 𨄫
+ 0x2812c: "\x9d\v\U0002812c", // 𨄬
+ 0x2812d: "\x9d\v\U0002812d", // 𨄭
+ 0x2812e: "\x9d\v\U0002812e", // 𨄮
+ 0x2812f: "\x9d\v\U0002812f", // 𨄯
+ 0x28130: "\x9d\v\U00028130", // 𨄰
+ 0x28131: "\x9d\v\U00028131", // 𨄱
+ 0x28132: "\x9d\v\U00028132", // 𨄲
+ 0x28133: "\x9d\v\U00028133", // 𨄳
+ 0x28134: "\x9d\v\U00028134", // 𨄴
+ 0x28135: "\x9d\v\U00028135", // 𨄵
+ 0x28136: "\x9d\v\U00028136", // 𨄶
+ 0x28137: "\x9d\v\U00028137", // 𨄷
+ 0x28138: "\x9d\v\U00028138", // 𨄸
+ 0x28139: "\x9d\v\U00028139", // 𨄹
+ 0x2813a: "\x9d\v\U0002813a", // 𨄺
+ 0x2813b: "\x9d\v\U0002813b", // 𨄻
+ 0x2813c: "\x9d\v\U0002813c", // 𨄼
+ 0x2813d: "\x9d\v\U0002813d", // 𨄽
+ 0x2813e: "\x9d\v\U0002813e", // 𨄾
+ 0x2813f: "\x9d\v\U0002813f", // 𨄿
+ 0x28140: "\x9d\v\U00028140", // 𨅀
+ 0x28141: "\x9d\v\U00028141", // 𨅁
+ 0x28142: "\x9d\v\U00028142", // 𨅂
+ 0x28143: "\x9d\v\U00028143", // 𨅃
+ 0x28144: "\x9d\v\U00028144", // 𨅄
+ 0x28145: "\x9d\v\U00028145", // 𨅅
+ 0x28146: "\x9d\v\U00028146", // 𨅆
+ 0x28147: "\x9d\v\U00028147", // 𨅇
+ 0x28148: "\x9d\v\U00028148", // 𨅈
+ 0x28149: "\x9d\v\U00028149", // 𨅉
+ 0x2814a: "\x9d\f\U0002814a", // 𨅊
+ 0x2814b: "\x9d\f\U0002814b", // 𨅋
+ 0x2814c: "\x9d\f\U0002814c", // 𨅌
+ 0x2814d: "\x9d\f\U0002814d", // 𨅍
+ 0x2814e: "\x9d\f\U0002814e", // 𨅎
+ 0x2814f: "\x9d\f\U0002814f", // 𨅏
+ 0x28150: "\x9d\f\U00028150", // 𨅐
+ 0x28151: "\x9d\f\U00028151", // 𨅑
+ 0x28152: "\x9d\f\U00028152", // 𨅒
+ 0x28153: "\x9d\f\U00028153", // 𨅓
+ 0x28154: "\x9d\f\U00028154", // 𨅔
+ 0x28155: "\x9d\f\U00028155", // 𨅕
+ 0x28156: "\x9d\f\U00028156", // 𨅖
+ 0x28157: "\x9d\f\U00028157", // 𨅗
+ 0x28158: "\x9d\f\U00028158", // 𨅘
+ 0x28159: "\x9d\f\U00028159", // 𨅙
+ 0x2815a: "\x9d\v\U0002815a", // 𨅚
+ 0x2815b: "\x9d\f\U0002815b", // 𨅛
+ 0x2815c: "\x9d\f\U0002815c", // 𨅜
+ 0x2815d: "\x9d\f\U0002815d", // 𨅝
+ 0x2815e: "\x9d\f\U0002815e", // 𨅞
+ 0x2815f: "\x9d\f\U0002815f", // 𨅟
+ 0x28160: "\x9d\f\U00028160", // 𨅠
+ 0x28161: "\x9d\f\U00028161", // 𨅡
+ 0x28162: "\x9d\f\U00028162", // 𨅢
+ 0x28163: "\x9d\f\U00028163", // 𨅣
+ 0x28164: "\x9d\f\U00028164", // 𨅤
+ 0x28165: "\x9d\f\U00028165", // 𨅥
+ 0x28166: "\x9d\f\U00028166", // 𨅦
+ 0x28167: "\x9d\f\U00028167", // 𨅧
+ 0x28168: "\x9d\f\U00028168", // 𨅨
+ 0x28169: "\x9d\f\U00028169", // 𨅩
+ 0x2816a: "\x9d\f\U0002816a", // 𨅪
+ 0x2816b: "\x9d\f\U0002816b", // 𨅫
+ 0x2816c: "\x9d\f\U0002816c", // 𨅬
+ 0x2816d: "\x9d\f\U0002816d", // 𨅭
+ 0x2816e: "\x9d\f\U0002816e", // 𨅮
+ 0x2816f: "\x9d\f\U0002816f", // 𨅯
+ 0x28170: "\x9d\f\U00028170", // 𨅰
+ 0x28171: "\x9d\f\U00028171", // 𨅱
+ 0x28172: "\x9d\f\U00028172", // 𨅲
+ 0x28173: "\x9d\f\U00028173", // 𨅳
+ 0x28174: "\x9d\f\U00028174", // 𨅴
+ 0x28175: "\x9d\f\U00028175", // 𨅵
+ 0x28176: "\x9d\f\U00028176", // 𨅶
+ 0x28177: "\x9d\f\U00028177", // 𨅷
+ 0x28178: "\x9d\f\U00028178", // 𨅸
+ 0x28179: "\x9d\f\U00028179", // 𨅹
+ 0x2817a: "\x9d\f\U0002817a", // 𨅺
+ 0x2817b: "\x9d\f\U0002817b", // 𨅻
+ 0x2817c: "\x9d\f\U0002817c", // 𨅼
+ 0x2817d: "\x9d\f\U0002817d", // 𨅽
+ 0x2817e: "\x9d\f\U0002817e", // 𨅾
+ 0x2817f: "\x9d\f\U0002817f", // 𨅿
+ 0x28180: "\x9d\f\U00028180", // 𨆀
+ 0x28181: "\x9d\r\U00028181", // 𨆁
+ 0x28182: "\x9d\r\U00028182", // 𨆂
+ 0x28183: "\x9d\r\U00028183", // 𨆃
+ 0x28184: "\x9d\r\U00028184", // 𨆄
+ 0x28185: "\x9d\r\U00028185", // 𨆅
+ 0x28186: "\x9d\r\U00028186", // 𨆆
+ 0x28187: "\x9d\r\U00028187", // 𨆇
+ 0x28188: "\x9d\r\U00028188", // 𨆈
+ 0x28189: "\x9d\r\U00028189", // 𨆉
+ 0x2818a: "\x9d\r\U0002818a", // 𨆊
+ 0x2818b: "\x9d\r\U0002818b", // 𨆋
+ 0x2818c: "\x9d\r\U0002818c", // 𨆌
+ 0x2818d: "\x9d\r\U0002818d", // 𨆍
+ 0x2818e: "\x9d\r\U0002818e", // 𨆎
+ 0x2818f: "\x9d\r\U0002818f", // 𨆏
+ 0x28190: "\x9d\r\U00028190", // 𨆐
+ 0x28191: "\x9d\r\U00028191", // 𨆑
+ 0x28192: "\x9d\r\U00028192", // 𨆒
+ 0x28193: "\x9d\r\U00028193", // 𨆓
+ 0x28194: "\x9d\r\U00028194", // 𨆔
+ 0x28195: "\x9d\r\U00028195", // 𨆕
+ 0x28196: "\x9d\r\U00028196", // 𨆖
+ 0x28197: "\x9d\r\U00028197", // 𨆗
+ 0x28198: "\x9d\r\U00028198", // 𨆘
+ 0x28199: "\x9d\r\U00028199", // 𨆙
+ 0x2819a: "\x9d\r\U0002819a", // 𨆚
+ 0x2819b: "\x9d\r\U0002819b", // 𨆛
+ 0x2819c: "\x9d\r\U0002819c", // 𨆜
+ 0x2819d: "\x9d\r\U0002819d", // 𨆝
+ 0x2819e: "\x9d\r\U0002819e", // 𨆞
+ 0x2819f: "\x9d\r\U0002819f", // 𨆟
+ 0x281a0: "\x9d\r\U000281a0", // 𨆠
+ 0x281a1: "\x9d\r\U000281a1", // 𨆡
+ 0x281a2: "\x9d\r\U000281a2", // 𨆢
+ 0x281a3: "\x9d\r\U000281a3", // 𨆣
+ 0x281a4: "\x9d\r\U000281a4", // 𨆤
+ 0x281a5: "\x9d\r\U000281a5", // 𨆥
+ 0x281a6: "\x9d\r\U000281a6", // 𨆦
+ 0x281a7: "\x9d\r\U000281a7", // 𨆧
+ 0x281a8: "\x9d\r\U000281a8", // 𨆨
+ 0x281a9: "\x9d\r\U000281a9", // 𨆩
+ 0x281aa: "\x9d\x0e\U000281aa", // 𨆪
+ 0x281ab: "\x9d\x0e\U000281ab", // 𨆫
+ 0x281ac: "\x9d\x0e\U000281ac", // 𨆬
+ 0x281ad: "\x9d\x0e\U000281ad", // 𨆭
+ 0x281ae: "\x9d\x0e\U000281ae", // 𨆮
+ 0x281af: "\x9d\x0e\U000281af", // 𨆯
+ 0x281b0: "\x9d\x0e\U000281b0", // 𨆰
+ 0x281b1: "\x9d\x0e\U000281b1", // 𨆱
+ 0x281b2: "\x9d\x0e\U000281b2", // 𨆲
+ 0x281b3: "\x9d\x0e\U000281b3", // 𨆳
+ 0x281b4: "\x9d\x0e\U000281b4", // 𨆴
+ 0x281b5: "\x9d\x0e\U000281b5", // 𨆵
+ 0x281b6: "\x9d\x0e\U000281b6", // 𨆶
+ 0x281b7: "\x9d\x0e\U000281b7", // 𨆷
+ 0x281b8: "\x9d\x0e\U000281b8", // 𨆸
+ 0x281b9: "\x9d\x0e\U000281b9", // 𨆹
+ 0x281ba: "\x9d\x0e\U000281ba", // 𨆺
+ 0x281bb: "\x9d\x0e\U000281bb", // 𨆻
+ 0x281bc: "\x9d\x0e\U000281bc", // 𨆼
+ 0x281bd: "\x9d\x0e\U000281bd", // 𨆽
+ 0x281be: "\x9d\x0e\U000281be", // 𨆾
+ 0x281bf: "\x9d\x0e\U000281bf", // 𨆿
+ 0x281c0: "\x9d\x0e\U000281c0", // 𨇀
+ 0x281c1: "\x9d\x0f\U000281c1", // 𨇁
+ 0x281c2: "\x9d\x0f\U000281c2", // 𨇂
+ 0x281c3: "\x9d\x0f\U000281c3", // 𨇃
+ 0x281c4: "\x9d\x0f\U000281c4", // 𨇄
+ 0x281c5: "\x9d\x0f\U000281c5", // 𨇅
+ 0x281c6: "\x9d\x0f\U000281c6", // 𨇆
+ 0x281c7: "\x9d\x0f\U000281c7", // 𨇇
+ 0x281c8: "\x9d\x0f\U000281c8", // 𨇈
+ 0x281c9: "\x9d\x0f\U000281c9", // 𨇉
+ 0x281ca: "\x9d\x0f\U000281ca", // 𨇊
+ 0x281cb: "\x9d\x0f\U000281cb", // 𨇋
+ 0x281cc: "\x9d\x0f\U000281cc", // 𨇌
+ 0x281cd: "\x9d\x0f\U000281cd", // 𨇍
+ 0x281ce: "\x9d\x0f\U000281ce", // 𨇎
+ 0x281cf: "\x9d\x0f\U000281cf", // 𨇏
+ 0x281d0: "\x9d\x0f\U000281d0", // 𨇐
+ 0x281d1: "\x9d\x0f\U000281d1", // 𨇑
+ 0x281d2: "\x9d\x0f\U000281d2", // 𨇒
+ 0x281d3: "\x9d\x0f\U000281d3", // 𨇓
+ 0x281d4: "\x9d\x0f\U000281d4", // 𨇔
+ 0x281d5: "\x9d\x0f\U000281d5", // 𨇕
+ 0x281d6: "\x9d\x10\U000281d6", // 𨇖
+ 0x281d7: "\x9d\x10\U000281d7", // 𨇗
+ 0x281d8: "\x9d\x10\U000281d8", // 𨇘
+ 0x281d9: "\x9d\x10\U000281d9", // 𨇙
+ 0x281da: "\x9d\x10\U000281da", // 𨇚
+ 0x281db: "\x9d\x10\U000281db", // 𨇛
+ 0x281dc: "\x9d\x10\U000281dc", // 𨇜
+ 0x281dd: "\x9d\x10\U000281dd", // 𨇝
+ 0x281de: "\x9d\x10\U000281de", // 𨇞
+ 0x281df: "\x9d\x10\U000281df", // 𨇟
+ 0x281e0: "\x9d\x10\U000281e0", // 𨇠
+ 0x281e1: "\x9d\x10\U000281e1", // 𨇡
+ 0x281e2: "\x9d\x10\U000281e2", // 𨇢
+ 0x281e3: "\x9d\x10\U000281e3", // 𨇣
+ 0x281e4: "\x9d\x11\U000281e4", // 𨇤
+ 0x281e5: "\x9d\x11\U000281e5", // 𨇥
+ 0x281e6: "\x9d\x11\U000281e6", // 𨇦
+ 0x281e7: "\x9d\x11\U000281e7", // 𨇧
+ 0x281e8: "\x9d\x11\U000281e8", // 𨇨
+ 0x281e9: "\x9d\x11\U000281e9", // 𨇩
+ 0x281ea: "\x9d\x11\U000281ea", // 𨇪
+ 0x281eb: "\x9d\x11\U000281eb", // 𨇫
+ 0x281ec: "\x9d\x11\U000281ec", // 𨇬
+ 0x281ed: "\x9d\x11\U000281ed", // 𨇭
+ 0x281ee: "\x9d\x12\U000281ee", // 𨇮
+ 0x281ef: "\x9d\x12\U000281ef", // 𨇯
+ 0x281f0: "\x9d\x12\U000281f0", // 𨇰
+ 0x281f1: "\x9d\x12\U000281f1", // 𨇱
+ 0x281f2: "\x9d\x12\U000281f2", // 𨇲
+ 0x281f3: "\x9d\x12\U000281f3", // 𨇳
+ 0x281f4: "\x9d\x12\U000281f4", // 𨇴
+ 0x281f5: "\x9d\x12\U000281f5", // 𨇵
+ 0x281f6: "\x9d\x12\U000281f6", // 𨇶
+ 0x281f7: "\x9d\x12\U000281f7", // 𨇷
+ 0x281f8: "\x9d\x12\U000281f8", // 𨇸
+ 0x281f9: "\x9d\x12\U000281f9", // 𨇹
+ 0x281fa: "\x9d\x12\U000281fa", // 𨇺
+ 0x281fb: "\x9d\x13\U000281fb", // 𨇻
+ 0x281fc: "\x9d\x13\U000281fc", // 𨇼
+ 0x281fd: "\x9d\x13\U000281fd", // 𨇽
+ 0x281fe: "\x9d\x13\U000281fe", // 𨇾
+ 0x281ff: "\x9d\x13\U000281ff", // 𨇿
+ 0x28200: "\x9d\x13\U00028200", // 𨈀
+ 0x28201: "\x9d\x14\U00028201", // 𨈁
+ 0x28202: "\x9d\x14\U00028202", // 𨈂
+ 0x28203: "\x9d\x14\U00028203", // 𨈃
+ 0x28204: "\x9d\x15\U00028204", // 𨈄
+ 0x28205: "\x9d\x15\U00028205", // 𨈅
+ 0x28206: "\x9d\x15\U00028206", // 𨈆
+ 0x28207: "\x9d\x15\U00028207", // 𨈇
+ 0x28208: "\x9d\x16\U00028208", // 𨈈
+ 0x28209: "\x9d\x16\U00028209", // 𨈉
+ 0x2820a: "\x9d\x16\U0002820a", // 𨈊
+ 0x2820b: "\x9d\x17\U0002820b", // 𨈋
+ 0x2820c: "\x9d\x17\U0002820c", // 𨈌
+ 0x2820d: "\x9d\x18\U0002820d", // 𨈍
+ 0x2820e: "\x9d\x1e\U0002820e", // 𨈎
+ 0x2820f: "\x9e\x00\U0002820f", // 𨈏
+ 0x28210: "\x9e\x00\U00028210", // 𨈐
+ 0x28211: "\x9e\x00\U00028211", // 𨈑
+ 0x28212: "\x9e\x02\U00028212", // 𨈒
+ 0x28213: "\x9e\x03\U00028213", // 𨈓
+ 0x28214: "\x9e\x03\U00028214", // 𨈔
+ 0x28215: "\x9e\x03\U00028215", // 𨈕
+ 0x28216: "\x9e\x03\U00028216", // 𨈖
+ 0x28217: "\x9e\x03\U00028217", // 𨈗
+ 0x28218: "\x9e\x04\U00028218", // 𨈘
+ 0x28219: "\x9e\x04\U00028219", // 𨈙
+ 0x2821a: "\x9e\x04\U0002821a", // 𨈚
+ 0x2821b: "\x9e\x04\U0002821b", // 𨈛
+ 0x2821c: "\x9e\x04\U0002821c", // 𨈜
+ 0x2821d: "\x9e\x04\U0002821d", // 𨈝
+ 0x2821e: "\x9e\x04\U0002821e", // 𨈞
+ 0x2821f: "\x9e\x04\U0002821f", // 𨈟
+ 0x28220: "\x9e\x04\U00028220", // 𨈠
+ 0x28221: "\x9e\x04\U00028221", // 𨈡
+ 0x28222: "\x9e\x04\U00028222", // 𨈢
+ 0x28223: "\x9e\x04\U00028223", // 𨈣
+ 0x28224: "\x9e\x04\U00028224", // 𨈤
+ 0x28225: "\x9e\x04\U00028225", // 𨈥
+ 0x28226: "\x9e\x04\U00028226", // 𨈦
+ 0x28227: "\x9e\x04\U00028227", // 𨈧
+ 0x28228: "\x9e\x04\U00028228", // 𨈨
+ 0x28229: "\x9e\x05\U00028229", // 𨈩
+ 0x2822a: "\x9e\x05\U0002822a", // 𨈪
+ 0x2822b: "\x9e\x05\U0002822b", // 𨈫
+ 0x2822c: "\x9e\x05\U0002822c", // 𨈬
+ 0x2822d: "\x9e\x05\U0002822d", // 𨈭
+ 0x2822e: "\x9e\x05\U0002822e", // 𨈮
+ 0x2822f: "\x9e\x05\U0002822f", // 𨈯
+ 0x28230: "\x9e\x05\U00028230", // 𨈰
+ 0x28231: "\x9e\x05\U00028231", // 𨈱
+ 0x28232: "\x9e\x05\U00028232", // 𨈲
+ 0x28233: "\x9e\x05\U00028233", // 𨈳
+ 0x28234: "\x9e\x05\U00028234", // 𨈴
+ 0x28235: "\x9e\x05\U00028235", // 𨈵
+ 0x28236: "\x9e\x05\U00028236", // 𨈶
+ 0x28237: "\x9e\x05\U00028237", // 𨈷
+ 0x28238: "\x9e\x06\U00028238", // 𨈸
+ 0x28239: "\x9e\x06\U00028239", // 𨈹
+ 0x2823a: "\x9e\x06\U0002823a", // 𨈺
+ 0x2823b: "\x9e\x06\U0002823b", // 𨈻
+ 0x2823c: "\x9e\x06\U0002823c", // 𨈼
+ 0x2823d: "\x9e\x06\U0002823d", // 𨈽
+ 0x2823e: "\x9e\x06\U0002823e", // 𨈾
+ 0x2823f: "\x9e\x06\U0002823f", // 𨈿
+ 0x28240: "\x9e\x06\U00028240", // 𨉀
+ 0x28241: "\x9e\x06\U00028241", // 𨉁
+ 0x28242: "\x9e\x06\U00028242", // 𨉂
+ 0x28243: "\x9e\x06\U00028243", // 𨉃
+ 0x28244: "\x9e\x06\U00028244", // 𨉄
+ 0x28245: "\x9e\x06\U00028245", // 𨉅
+ 0x28246: "\x9e\x06\U00028246", // 𨉆
+ 0x28247: "\x9e\x06\U00028247", // 𨉇
+ 0x28248: "\x9e\a\U00028248", // 𨉈
+ 0x28249: "\x9e\a\U00028249", // 𨉉
+ 0x2824a: "\x9e\a\U0002824a", // 𨉊
+ 0x2824b: "\x9e\a\U0002824b", // 𨉋
+ 0x2824c: "\x9e\a\U0002824c", // 𨉌
+ 0x2824d: "\x9e\a\U0002824d", // 𨉍
+ 0x2824e: "\x9e\a\U0002824e", // 𨉎
+ 0x2824f: "\x9e\a\U0002824f", // 𨉏
+ 0x28250: "\x9e\a\U00028250", // 𨉐
+ 0x28251: "\x9e\a\U00028251", // 𨉑
+ 0x28252: "\x9e\a\U00028252", // 𨉒
+ 0x28253: "\x9e\a\U00028253", // 𨉓
+ 0x28254: "\x9e\b\U00028254", // 𨉔
+ 0x28255: "\x9e\b\U00028255", // 𨉕
+ 0x28256: "\x9e\b\U00028256", // 𨉖
+ 0x28257: "\x9e\b\U00028257", // 𨉗
+ 0x28258: "\x9e\b\U00028258", // 𨉘
+ 0x28259: "\x9e\b\U00028259", // 𨉙
+ 0x2825a: "\x9e\b\U0002825a", // 𨉚
+ 0x2825b: "\x9e\b\U0002825b", // 𨉛
+ 0x2825c: "\x9e\b\U0002825c", // 𨉜
+ 0x2825d: "\x9e\b\U0002825d", // 𨉝
+ 0x2825e: "\x9e\b\U0002825e", // 𨉞
+ 0x2825f: "\x9e\b\U0002825f", // 𨉟
+ 0x28260: "\x9e\b\U00028260", // 𨉠
+ 0x28261: "\x9e\b\U00028261", // 𨉡
+ 0x28262: "\x9e\t\U00028262", // 𨉢
+ 0x28263: "\x9e\t\U00028263", // 𨉣
+ 0x28264: "\x9e\t\U00028264", // 𨉤
+ 0x28265: "\x9e\t\U00028265", // 𨉥
+ 0x28266: "\x9e\n\U00028266", // 𨉦
+ 0x28267: "\x9e\t\U00028267", // 𨉧
+ 0x28268: "\x9e\t\U00028268", // 𨉨
+ 0x28269: "\x9e\t\U00028269", // 𨉩
+ 0x2826a: "\x9e\t\U0002826a", // 𨉪
+ 0x2826b: "\x9e\t\U0002826b", // 𨉫
+ 0x2826c: "\x9e\t\U0002826c", // 𨉬
+ 0x2826d: "\x9e\t\U0002826d", // 𨉭
+ 0x2826e: "\x9e\n\U0002826e", // 𨉮
+ 0x2826f: "\x9e\n\U0002826f", // 𨉯
+ 0x28270: "\x9e\n\U00028270", // 𨉰
+ 0x28271: "\x9e\n\U00028271", // 𨉱
+ 0x28272: "\x9e\n\U00028272", // 𨉲
+ 0x28273: "\x9e\n\U00028273", // 𨉳
+ 0x28274: "\x9e\n\U00028274", // 𨉴
+ 0x28275: "\x9e\n\U00028275", // 𨉵
+ 0x28276: "\x9e\n\U00028276", // 𨉶
+ 0x28277: "\x9e\n\U00028277", // 𨉷
+ 0x28278: "\x9e\n\U00028278", // 𨉸
+ 0x28279: "\x9e\v\U00028279", // 𨉹
+ 0x2827a: "\x9e\v\U0002827a", // 𨉺
+ 0x2827b: "\x9e\v\U0002827b", // 𨉻
+ 0x2827c: "\x9e\v\U0002827c", // 𨉼
+ 0x2827d: "\x9e\v\U0002827d", // 𨉽
+ 0x2827e: "\x9e\v\U0002827e", // 𨉾
+ 0x2827f: "\x9e\f\U0002827f", // 𨉿
+ 0x28280: "\x9e\f\U00028280", // 𨊀
+ 0x28281: "\x9e\f\U00028281", // 𨊁
+ 0x28282: "\x9e\f\U00028282", // 𨊂
+ 0x28283: "\x9e\f\U00028283", // 𨊃
+ 0x28284: "\x9e\f\U00028284", // 𨊄
+ 0x28285: "\x9e\f\U00028285", // 𨊅
+ 0x28286: "\x9e\f\U00028286", // 𨊆
+ 0x28287: "\x9e\f\U00028287", // 𨊇
+ 0x28288: "\x9e\f\U00028288", // 𨊈
+ 0x28289: "\x9e\f\U00028289", // 𨊉
+ 0x2828a: "\x9e\f\U0002828a", // 𨊊
+ 0x2828b: "\x9e\f\U0002828b", // 𨊋
+ 0x2828c: "\x9e\f\U0002828c", // 𨊌
+ 0x2828d: "\x9e\r\U0002828d", // 𨊍
+ 0x2828e: "\x9e\r\U0002828e", // 𨊎
+ 0x2828f: "\x9e\r\U0002828f", // 𨊏
+ 0x28290: "\x9e\r\U00028290", // 𨊐
+ 0x28291: "\x9e\r\U00028291", // 𨊑
+ 0x28292: "\x9e\r\U00028292", // 𨊒
+ 0x28293: "\x9e\x0e\U00028293", // 𨊓
+ 0x28294: "\x9e\x0e\U00028294", // 𨊔
+ 0x28295: "\x9e\x0e\U00028295", // 𨊕
+ 0x28296: "\x9e\x0e\U00028296", // 𨊖
+ 0x28297: "\x9e\x0e\U00028297", // 𨊗
+ 0x28298: "\x9e\x0f\U00028298", // 𨊘
+ 0x28299: "\x9e\x0f\U00028299", // 𨊙
+ 0x2829a: "\x9e\x0f\U0002829a", // 𨊚
+ 0x2829b: "\x9e\x10\U0002829b", // 𨊛
+ 0x2829c: "\x9e\x10\U0002829c", // 𨊜
+ 0x2829d: "\x9e\x12\U0002829d", // 𨊝
+ 0x2829e: "\x9e\x12\U0002829e", // 𨊞
+ 0x2829f: "\x9e\x13\U0002829f", // 𨊟
+ 0x282a0: "\x9f\x02\U000282a0", // 𨊠
+ 0x282a1: "\x9f\x02\U000282a1", // 𨊡
+ 0x282a2: "\x9f\x02\U000282a2", // 𨊢
+ 0x282a3: "\x9f\x02\U000282a3", // 𨊣
+ 0x282a4: "\x9f\x02\U000282a4", // 𨊤
+ 0x282a5: "\x9f\x02\U000282a5", // 𨊥
+ 0x282a6: "\x9f\x02\U000282a6", // 𨊦
+ 0x282a7: "\x9f\x03\U000282a7", // 𨊧
+ 0x282a8: "\x9f\x03\U000282a8", // 𨊨
+ 0x282a9: "\x9f\x03\U000282a9", // 𨊩
+ 0x282aa: "\x9f\x03\U000282aa", // 𨊪
+ 0x282ab: "\x9f\x03\U000282ab", // 𨊫
+ 0x282ac: "\x9f\x03\U000282ac", // 𨊬
+ 0x282ad: "\x9f\x03\U000282ad", // 𨊭
+ 0x282ae: "\x9f\x03\U000282ae", // 𨊮
+ 0x282af: "\x9f\x03\U000282af", // 𨊯
+ 0x282b0: "\x9f\x03\U000282b0", // 𨊰
+ 0x282b1: "\x9f\x03\U000282b1", // 𨊱
+ 0x282b2: "\x9f\x03\U000282b2", // 𨊲
+ 0x282b3: "\x9f\x04\U000282b3", // 𨊳
+ 0x282b4: "\x9f\x04\U000282b4", // 𨊴
+ 0x282b5: "\x9f\x04\U000282b5", // 𨊵
+ 0x282b6: "\x9f\x04\U000282b6", // 𨊶
+ 0x282b7: "\x9f\x04\U000282b7", // 𨊷
+ 0x282b8: "\x9f\x04\U000282b8", // 𨊸
+ 0x282b9: "\x9f\x04\U000282b9", // 𨊹
+ 0x282ba: "\x9f\x04\U000282ba", // 𨊺
+ 0x282bb: "\x9f\x04\U000282bb", // 𨊻
+ 0x282bc: "\x9f\x04\U000282bc", // 𨊼
+ 0x282bd: "\x9f\x04\U000282bd", // 𨊽
+ 0x282be: "\x9f\x04\U000282be", // 𨊾
+ 0x282bf: "\x9f\x04\U000282bf", // 𨊿
+ 0x282c0: "\x9f\x04\U000282c0", // 𨋀
+ 0x282c1: "\x9f\x04\U000282c1", // 𨋁
+ 0x282c2: "\x9f\x04\U000282c2", // 𨋂
+ 0x282c3: "\x9f\x04\U000282c3", // 𨋃
+ 0x282c4: "\x9f\x04\U000282c4", // 𨋄
+ 0x282c5: "\x9f\x04\U000282c5", // 𨋅
+ 0x282c6: "\x9f\x04\U000282c6", // 𨋆
+ 0x282c7: "\x9f\x04\U000282c7", // 𨋇
+ 0x282c8: "\x9f\x04\U000282c8", // 𨋈
+ 0x282c9: "\x9f\x04\U000282c9", // 𨋉
+ 0x282ca: "\x9f\x04\U000282ca", // 𨋊
+ 0x282cb: "\x9f\x04\U000282cb", // 𨋋
+ 0x282cc: "\x9f\x04\U000282cc", // 𨋌
+ 0x282cd: "\x9f\x04\U000282cd", // 𨋍
+ 0x282ce: "\x9f\x05\U000282ce", // 𨋎
+ 0x282cf: "\x9f\x05\U000282cf", // 𨋏
+ 0x282d0: "\x9f\x05\U000282d0", // 𨋐
+ 0x282d1: "\x9f\x05\U000282d1", // 𨋑
+ 0x282d2: "\x9f\x05\U000282d2", // 𨋒
+ 0x282d3: "\x9f\x05\U000282d3", // 𨋓
+ 0x282d4: "\x9f\x05\U000282d4", // 𨋔
+ 0x282d5: "\x9f\x05\U000282d5", // 𨋕
+ 0x282d6: "\x9f\x05\U000282d6", // 𨋖
+ 0x282d7: "\x9f\x05\U000282d7", // 𨋗
+ 0x282d8: "\x9f\x05\U000282d8", // 𨋘
+ 0x282d9: "\x9f\x05\U000282d9", // 𨋙
+ 0x282da: "\x9f\x05\U000282da", // 𨋚
+ 0x282db: "\x9f\x05\U000282db", // 𨋛
+ 0x282dc: "\x9f\x05\U000282dc", // 𨋜
+ 0x282dd: "\x9f\x05\U000282dd", // 𨋝
+ 0x282de: "\x9f\x05\U000282de", // 𨋞
+ 0x282df: "\x9f\x05\U000282df", // 𨋟
+ 0x282e0: "\x9f\x05\U000282e0", // 𨋠
+ 0x282e1: "\x9f\x05\U000282e1", // 𨋡
+ 0x282e2: "\x9f\x05\U000282e2", // 𨋢
+ 0x282e3: "\x9f\x05\U000282e3", // 𨋣
+ 0x282e4: "\x9f\x05\U000282e4", // 𨋤
+ 0x282e5: "\x9f\x05\U000282e5", // 𨋥
+ 0x282e6: "\x9f\x05\U000282e6", // 𨋦
+ 0x282e7: "\x9f\x05\U000282e7", // 𨋧
+ 0x282e8: "\x9f\x06\U000282e8", // 𨋨
+ 0x282e9: "\x9f\x06\U000282e9", // 𨋩
+ 0x282ea: "\x9f\x06\U000282ea", // 𨋪
+ 0x282eb: "\x9f\x06\U000282eb", // 𨋫
+ 0x282ec: "\x9f\x06\U000282ec", // 𨋬
+ 0x282ed: "\x9f\x06\U000282ed", // 𨋭
+ 0x282ee: "\x9f\x06\U000282ee", // 𨋮
+ 0x282ef: "\x9f\x06\U000282ef", // 𨋯
+ 0x282f0: "\x9f\x06\U000282f0", // 𨋰
+ 0x282f1: "\x9f\x06\U000282f1", // 𨋱
+ 0x282f2: "\x9f\x06\U000282f2", // 𨋲
+ 0x282f3: "\x9f\x06\U000282f3", // 𨋳
+ 0x282f4: "\x9f\x06\U000282f4", // 𨋴
+ 0x282f5: "\x9f\x06\U000282f5", // 𨋵
+ 0x282f6: "\x9f\x06\U000282f6", // 𨋶
+ 0x282f7: "\x9f\x06\U000282f7", // 𨋷
+ 0x282f8: "\x9f\x06\U000282f8", // 𨋸
+ 0x282f9: "\x9f\x06\U000282f9", // 𨋹
+ 0x282fa: "\x9f\x06\U000282fa", // 𨋺
+ 0x282fb: "\x9f\x06\U000282fb", // 𨋻
+ 0x282fc: "\x9f\x06\U000282fc", // 𨋼
+ 0x282fd: "\x9f\x06\U000282fd", // 𨋽
+ 0x282fe: "\x9f\x06\U000282fe", // 𨋾
+ 0x282ff: "\x9f\x06\U000282ff", // 𨋿
+ 0x28300: "\x9f\x06\U00028300", // 𨌀
+ 0x28301: "\x9f\x06\U00028301", // 𨌁
+ 0x28302: "\x9f\a\U00028302", // 𨌂
+ 0x28303: "\x9f\a\U00028303", // 𨌃
+ 0x28304: "\x9f\a\U00028304", // 𨌄
+ 0x28305: "\x9f\a\U00028305", // 𨌅
+ 0x28306: "\x9f\a\U00028306", // 𨌆
+ 0x28307: "\x9f\a\U00028307", // 𨌇
+ 0x28308: "\x9f\a\U00028308", // 𨌈
+ 0x28309: "\x9f\a\U00028309", // 𨌉
+ 0x2830a: "\x9f\a\U0002830a", // 𨌊
+ 0x2830b: "\x9f\a\U0002830b", // 𨌋
+ 0x2830c: "\x9f\a\U0002830c", // 𨌌
+ 0x2830d: "\x9f\a\U0002830d", // 𨌍
+ 0x2830e: "\x9f\a\U0002830e", // 𨌎
+ 0x2830f: "\x9f\a\U0002830f", // 𨌏
+ 0x28310: "\x9f\a\U00028310", // 𨌐
+ 0x28311: "\x9f\a\U00028311", // 𨌑
+ 0x28312: "\x9f\a\U00028312", // 𨌒
+ 0x28313: "\x9f\a\U00028313", // 𨌓
+ 0x28314: "\x9f\a\U00028314", // 𨌔
+ 0x28315: "\x9f\a\U00028315", // 𨌕
+ 0x28316: "\x9f\a\U00028316", // 𨌖
+ 0x28317: "\x9f\a\U00028317", // 𨌗
+ 0x28318: "\x9f\a\U00028318", // 𨌘
+ 0x28319: "\x9f\a\U00028319", // 𨌙
+ 0x2831a: "\x9f\a\U0002831a", // 𨌚
+ 0x2831b: "\x9f\a\U0002831b", // 𨌛
+ 0x2831c: "\x9f\a\U0002831c", // 𨌜
+ 0x2831d: "\x9f\a\U0002831d", // 𨌝
+ 0x2831e: "\x9f\a\U0002831e", // 𨌞
+ 0x2831f: "\x9f\a\U0002831f", // 𨌟
+ 0x28320: "\x9f\b\U00028320", // 𨌠
+ 0x28321: "\x9f\b\U00028321", // 𨌡
+ 0x28322: "\x9f\b\U00028322", // 𨌢
+ 0x28323: "\x9f\b\U00028323", // 𨌣
+ 0x28324: "\x9f\b\U00028324", // 𨌤
+ 0x28325: "\x9f\b\U00028325", // 𨌥
+ 0x28326: "\x9f\b\U00028326", // 𨌦
+ 0x28327: "\x9f\b\U00028327", // 𨌧
+ 0x28328: "\x9f\b\U00028328", // 𨌨
+ 0x28329: "\x9f\b\U00028329", // 𨌩
+ 0x2832a: "\x9f\b\U0002832a", // 𨌪
+ 0x2832b: "\x9f\b\U0002832b", // 𨌫
+ 0x2832c: "\x9f\b\U0002832c", // 𨌬
+ 0x2832d: "\x9f\b\U0002832d", // 𨌭
+ 0x2832e: "\x9f\b\U0002832e", // 𨌮
+ 0x2832f: "\x9f\b\U0002832f", // 𨌯
+ 0x28330: "\x9f\b\U00028330", // 𨌰
+ 0x28331: "\x9f\b\U00028331", // 𨌱
+ 0x28332: "\x9f\b\U00028332", // 𨌲
+ 0x28333: "\x9f\b\U00028333", // 𨌳
+ 0x28334: "\x9f\b\U00028334", // 𨌴
+ 0x28335: "\x9f\b\U00028335", // 𨌵
+ 0x28336: "\x9f\b\U00028336", // 𨌶
+ 0x28337: "\x9f\b\U00028337", // 𨌷
+ 0x28338: "\x9f\b\U00028338", // 𨌸
+ 0x28339: "\x9f\b\U00028339", // 𨌹
+ 0x2833a: "\x9f\b\U0002833a", // 𨌺
+ 0x2833b: "\x9f\b\U0002833b", // 𨌻
+ 0x2833c: "\x9f\b\U0002833c", // 𨌼
+ 0x2833d: "\x9f\b\U0002833d", // 𨌽
+ 0x2833e: "\x9f\b\U0002833e", // 𨌾
+ 0x2833f: "\x9f\b\U0002833f", // 𨌿
+ 0x28340: "\x9f\b\U00028340", // 𨍀
+ 0x28341: "\x9f\b\U00028341", // 𨍁
+ 0x28342: "\x9f\b\U00028342", // 𨍂
+ 0x28343: "\x9f\b\U00028343", // 𨍃
+ 0x28344: "\x9f\b\U00028344", // 𨍄
+ 0x28345: "\x9f\b\U00028345", // 𨍅
+ 0x28346: "\x9f\b\U00028346", // 𨍆
+ 0x28347: "\x9f\t\U00028347", // 𨍇
+ 0x28348: "\x9f\t\U00028348", // 𨍈
+ 0x28349: "\x9f\t\U00028349", // 𨍉
+ 0x2834a: "\x9f\t\U0002834a", // 𨍊
+ 0x2834b: "\x9f\t\U0002834b", // 𨍋
+ 0x2834c: "\x9f\t\U0002834c", // 𨍌
+ 0x2834d: "\x9f\t\U0002834d", // 𨍍
+ 0x2834e: "\x9f\t\U0002834e", // 𨍎
+ 0x2834f: "\x9f\t\U0002834f", // 𨍏
+ 0x28350: "\x9f\t\U00028350", // 𨍐
+ 0x28351: "\x9f\t\U00028351", // 𨍑
+ 0x28352: "\x9f\t\U00028352", // 𨍒
+ 0x28353: "\x9f\t\U00028353", // 𨍓
+ 0x28354: "\x9f\t\U00028354", // 𨍔
+ 0x28355: "\x9f\t\U00028355", // 𨍕
+ 0x28356: "\x9f\t\U00028356", // 𨍖
+ 0x28357: "\x9f\t\U00028357", // 𨍗
+ 0x28358: "\x9f\t\U00028358", // 𨍘
+ 0x28359: "\x9f\t\U00028359", // 𨍙
+ 0x2835a: "\x9f\t\U0002835a", // 𨍚
+ 0x2835b: "\x9f\t\U0002835b", // 𨍛
+ 0x2835c: "\x9f\t\U0002835c", // 𨍜
+ 0x2835d: "\x9f\t\U0002835d", // 𨍝
+ 0x2835e: "\x9f\t\U0002835e", // 𨍞
+ 0x2835f: "\x9f\t\U0002835f", // 𨍟
+ 0x28360: "\x9f\t\U00028360", // 𨍠
+ 0x28361: "\x9f\t\U00028361", // 𨍡
+ 0x28362: "\x9f\t\U00028362", // 𨍢
+ 0x28363: "\x9f\t\U00028363", // 𨍣
+ 0x28364: "\x9f\t\U00028364", // 𨍤
+ 0x28365: "\x9f\t\U00028365", // 𨍥
+ 0x28366: "\x9f\t\U00028366", // 𨍦
+ 0x28367: "\x9f\t\U00028367", // 𨍧
+ 0x28368: "\x9f\t\U00028368", // 𨍨
+ 0x28369: "\x9f\n\U00028369", // 𨍩
+ 0x2836a: "\x9f\n\U0002836a", // 𨍪
+ 0x2836b: "\x9f\n\U0002836b", // 𨍫
+ 0x2836c: "\x9f\n\U0002836c", // 𨍬
+ 0x2836d: "\x9f\n\U0002836d", // 𨍭
+ 0x2836e: "\x9f\n\U0002836e", // 𨍮
+ 0x2836f: "\x9f\n\U0002836f", // 𨍯
+ 0x28370: "\x9f\n\U00028370", // 𨍰
+ 0x28371: "\x9f\n\U00028371", // 𨍱
+ 0x28372: "\x9f\n\U00028372", // 𨍲
+ 0x28373: "\x9f\n\U00028373", // 𨍳
+ 0x28374: "\x9f\n\U00028374", // 𨍴
+ 0x28375: "\x9f\n\U00028375", // 𨍵
+ 0x28376: "\x9f\n\U00028376", // 𨍶
+ 0x28377: "\x9f\n\U00028377", // 𨍷
+ 0x28378: "\x9f\n\U00028378", // 𨍸
+ 0x28379: "\x9f\n\U00028379", // 𨍹
+ 0x2837a: "\x9f\n\U0002837a", // 𨍺
+ 0x2837b: "\x9f\n\U0002837b", // 𨍻
+ 0x2837c: "\x9f\n\U0002837c", // 𨍼
+ 0x2837d: "\x9f\n\U0002837d", // 𨍽
+ 0x2837e: "\x9f\n\U0002837e", // 𨍾
+ 0x2837f: "\x9f\n\U0002837f", // 𨍿
+ 0x28380: "\x9f\n\U00028380", // 𨎀
+ 0x28381: "\x9f\n\U00028381", // 𨎁
+ 0x28382: "\x9f\n\U00028382", // 𨎂
+ 0x28383: "\x9f\n\U00028383", // 𨎃
+ 0x28384: "\x9f\n\U00028384", // 𨎄
+ 0x28385: "\x9f\n\U00028385", // 𨎅
+ 0x28386: "\x9f\n\U00028386", // 𨎆
+ 0x28387: "\x9f\n\U00028387", // 𨎇
+ 0x28388: "\x9f\n\U00028388", // 𨎈
+ 0x28389: "\x9f\n\U00028389", // 𨎉
+ 0x2838a: "\x9f\v\U0002838a", // 𨎊
+ 0x2838b: "\x9f\v\U0002838b", // 𨎋
+ 0x2838c: "\x9f\v\U0002838c", // 𨎌
+ 0x2838d: "\x9f\v\U0002838d", // 𨎍
+ 0x2838e: "\x9f\v\U0002838e", // 𨎎
+ 0x2838f: "\x9f\v\U0002838f", // 𨎏
+ 0x28390: "\x9f\v\U00028390", // 𨎐
+ 0x28391: "\x9f\v\U00028391", // 𨎑
+ 0x28392: "\x9f\v\U00028392", // 𨎒
+ 0x28393: "\x9f\v\U00028393", // 𨎓
+ 0x28394: "\x9f\v\U00028394", // 𨎔
+ 0x28395: "\x9f\v\U00028395", // 𨎕
+ 0x28396: "\x9f\v\U00028396", // 𨎖
+ 0x28397: "\x9f\v\U00028397", // 𨎗
+ 0x28398: "\x9f\v\U00028398", // 𨎘
+ 0x28399: "\x9f\v\U00028399", // 𨎙
+ 0x2839a: "\x9f\v\U0002839a", // 𨎚
+ 0x2839b: "\x9f\v\U0002839b", // 𨎛
+ 0x2839c: "\x9f\v\U0002839c", // 𨎜
+ 0x2839d: "\x9f\v\U0002839d", // 𨎝
+ 0x2839e: "\x9f\v\U0002839e", // 𨎞
+ 0x2839f: "\x9f\v\U0002839f", // 𨎟
+ 0x283a0: "\x9f\v\U000283a0", // 𨎠
+ 0x283a1: "\x9f\v\U000283a1", // 𨎡
+ 0x283a2: "\x9f\v\U000283a2", // 𨎢
+ 0x283a3: "\x9f\v\U000283a3", // 𨎣
+ 0x283a4: "\x9f\f\U000283a4", // 𨎤
+ 0x283a5: "\x9f\f\U000283a5", // 𨎥
+ 0x283a6: "\x9f\f\U000283a6", // 𨎦
+ 0x283a7: "\x9f\f\U000283a7", // 𨎧
+ 0x283a8: "\x9f\f\U000283a8", // 𨎨
+ 0x283a9: "\x9f\f\U000283a9", // 𨎩
+ 0x283aa: "\x9f\f\U000283aa", // 𨎪
+ 0x283ab: "\x9f\f\U000283ab", // 𨎫
+ 0x283ac: "\x9f\f\U000283ac", // 𨎬
+ 0x283ad: "\x9f\f\U000283ad", // 𨎭
+ 0x283ae: "\x9f\f\U000283ae", // 𨎮
+ 0x283af: "\x9f\f\U000283af", // 𨎯
+ 0x283b0: "\x9f\f\U000283b0", // 𨎰
+ 0x283b1: "\x9f\f\U000283b1", // 𨎱
+ 0x283b2: "\x9f\r\U000283b2", // 𨎲
+ 0x283b3: "\x9f\r\U000283b3", // 𨎳
+ 0x283b4: "\x9f\r\U000283b4", // 𨎴
+ 0x283b5: "\x9f\r\U000283b5", // 𨎵
+ 0x283b6: "\x9f\r\U000283b6", // 𨎶
+ 0x283b7: "\x9f\r\U000283b7", // 𨎷
+ 0x283b8: "\x9f\r\U000283b8", // 𨎸
+ 0x283b9: "\x9f\r\U000283b9", // 𨎹
+ 0x283ba: "\x9f\r\U000283ba", // 𨎺
+ 0x283bb: "\x9f\r\U000283bb", // 𨎻
+ 0x283bc: "\x9f\r\U000283bc", // 𨎼
+ 0x283bd: "\x9f\r\U000283bd", // 𨎽
+ 0x283be: "\x9f\r\U000283be", // 𨎾
+ 0x283bf: "\x9f\r\U000283bf", // 𨎿
+ 0x283c0: "\x9f\r\U000283c0", // 𨏀
+ 0x283c1: "\x9f\r\U000283c1", // 𨏁
+ 0x283c2: "\x9f\r\U000283c2", // 𨏂
+ 0x283c3: "\x9f\r\U000283c3", // 𨏃
+ 0x283c4: "\x9f\r\U000283c4", // 𨏄
+ 0x283c5: "\x9f\r\U000283c5", // 𨏅
+ 0x283c6: "\x9f\r\U000283c6", // 𨏆
+ 0x283c7: "\x9f\r\U000283c7", // 𨏇
+ 0x283c8: "\x9f\x0e\U000283c8", // 𨏈
+ 0x283c9: "\x9f\x0e\U000283c9", // 𨏉
+ 0x283ca: "\x9f\x0e\U000283ca", // 𨏊
+ 0x283cb: "\x9f\x0e\U000283cb", // 𨏋
+ 0x283cc: "\x9f\x0e\U000283cc", // 𨏌
+ 0x283cd: "\x9f\x0e\U000283cd", // 𨏍
+ 0x283ce: "\x9f\x0e\U000283ce", // 𨏎
+ 0x283cf: "\x9f\x0e\U000283cf", // 𨏏
+ 0x283d0: "\x9f\x0e\U000283d0", // 𨏐
+ 0x283d1: "\x9f\x0f\U000283d1", // 𨏑
+ 0x283d2: "\x9f\x0f\U000283d2", // 𨏒
+ 0x283d3: "\x9f\x0f\U000283d3", // 𨏓
+ 0x283d4: "\x9f\x0f\U000283d4", // 𨏔
+ 0x283d5: "\x9f\x0f\U000283d5", // 𨏕
+ 0x283d6: "\x9f\x0f\U000283d6", // 𨏖
+ 0x283d7: "\x9f\x0f\U000283d7", // 𨏗
+ 0x283d8: "\x9f\x0f\U000283d8", // 𨏘
+ 0x283d9: "\x9f\x0f\U000283d9", // 𨏙
+ 0x283da: "\x9f\x0f\U000283da", // 𨏚
+ 0x283db: "\x9f\x0f\U000283db", // 𨏛
+ 0x283dc: "\x9f\x0f\U000283dc", // 𨏜
+ 0x283dd: "\x9f\x0f\U000283dd", // 𨏝
+ 0x283de: "\x9f\x10\U000283de", // 𨏞
+ 0x283df: "\x9f\x10\U000283df", // 𨏟
+ 0x283e0: "\x9f\x10\U000283e0", // 𨏠
+ 0x283e1: "\x9f\x10\U000283e1", // 𨏡
+ 0x283e2: "\x9f\x10\U000283e2", // 𨏢
+ 0x283e3: "\x9f\x10\U000283e3", // 𨏣
+ 0x283e4: "\x9f\x10\U000283e4", // 𨏤
+ 0x283e5: "\x9f\x10\U000283e5", // 𨏥
+ 0x283e6: "\x9f\x10\U000283e6", // 𨏦
+ 0x283e7: "\x9f\x10\U000283e7", // 𨏧
+ 0x283e8: "\x9f\x10\U000283e8", // 𨏨
+ 0x283e9: "\x9f\x11\U000283e9", // 𨏩
+ 0x283ea: "\x9f\x11\U000283ea", // 𨏪
+ 0x283eb: "\x9f\x11\U000283eb", // 𨏫
+ 0x283ec: "\x9f\x11\U000283ec", // 𨏬
+ 0x283ed: "\x9f\x11\U000283ed", // 𨏭
+ 0x283ee: "\x9f\x11\U000283ee", // 𨏮
+ 0x283ef: "\x9f\x11\U000283ef", // 𨏯
+ 0x283f0: "\x9f\x11\U000283f0", // 𨏰
+ 0x283f1: "\x9f\x11\U000283f1", // 𨏱
+ 0x283f2: "\x9f\x11\U000283f2", // 𨏲
+ 0x283f3: "\x9f\x12\U000283f3", // 𨏳
+ 0x283f4: "\x9f\x12\U000283f4", // 𨏴
+ 0x283f5: "\x9f\x13\U000283f5", // 𨏵
+ 0x283f6: "\x9f\x13\U000283f6", // 𨏶
+ 0x283f7: "\x9f\x13\U000283f7", // 𨏷
+ 0x283f8: "\x9f\x13\U000283f8", // 𨏸
+ 0x283f9: "\x9f\x14\U000283f9", // 𨏹
+ 0x283fa: "\x9f\x15\U000283fa", // 𨏺
+ 0x283fb: "\x9f\x14\U000283fb", // 𨏻
+ 0x283fc: "\x9f\x15\U000283fc", // 𨏼
+ 0x283fd: "\x9f\x13\U000283fd", // 𨏽
+ 0x283fe: "\x9f\x14\U000283fe", // 𨏾
+ 0x283ff: "\x9f\x15\U000283ff", // 𨏿
+ 0x28400: "\x9f\x15\U00028400", // 𨐀
+ 0x28401: "\x9f\x16\U00028401", // 𨐁
+ 0x28402: "\x9f\x17\U00028402", // 𨐂
+ 0x28403: "\x9f\x18\U00028403", // 𨐃
+ 0x28404: "\x9f\x1f\U00028404", // 𨐄
+ 0x28405: "\x9f\x04\U00028405", // 𨐅
+ 0x28406: "\x9f\x04\U00028406", // 𨐆
+ 0x28407: "\x9f\x05\U00028407", // 𨐇
+ 0x28408: "\x9f\x06\U00028408", // 𨐈
+ 0x28409: "\x9f\f\U00028409", // 𨐉
+ 0x2840a: "\x9f\x10\U0002840a", // 𨐊
+ 0x2840b: "\xa0\x00\U0002840b", // 𨐋
+ 0x2840c: "\xa0\x01\U0002840c", // 𨐌
+ 0x2840d: "\xa0\x03\U0002840d", // 𨐍
+ 0x2840e: "\xa0\x03\U0002840e", // 𨐎
+ 0x2840f: "\xa0\x04\U0002840f", // 𨐏
+ 0x28410: "\xa0\x04\U00028410", // 𨐐
+ 0x28411: "\xa0\x04\U00028411", // 𨐑
+ 0x28412: "\xa0\x05\U00028412", // 𨐒
+ 0x28413: "\xa0\x05\U00028413", // 𨐓
+ 0x28414: "\xa0\x06\U00028414", // 𨐔
+ 0x28415: "\xa0\x06\U00028415", // 𨐕
+ 0x28416: "\xa0\x06\U00028416", // 𨐖
+ 0x28417: "\xa0\x06\U00028417", // 𨐗
+ 0x28418: "\xa0\a\U00028418", // 𨐘
+ 0x28419: "\xa0\a\U00028419", // 𨐙
+ 0x2841a: "\xa0\a\U0002841a", // 𨐚
+ 0x2841b: "\xa0\a\U0002841b", // 𨐛
+ 0x2841c: "\xa0\b\U0002841c", // 𨐜
+ 0x2841d: "\xa0\b\U0002841d", // 𨐝
+ 0x2841e: "\xa0\b\U0002841e", // 𨐞
+ 0x2841f: "\xa0\b\U0002841f", // 𨐟
+ 0x28420: "\xa0\t\U00028420", // 𨐠
+ 0x28421: "\xa0\t\U00028421", // 𨐡
+ 0x28422: "\xa0\t\U00028422", // 𨐢
+ 0x28423: "\xa0\t\U00028423", // 𨐣
+ 0x28424: "\xa0\t\U00028424", // 𨐤
+ 0x28425: "\xa0\t\U00028425", // 𨐥
+ 0x28426: "\xa0\t\U00028426", // 𨐦
+ 0x28427: "\xa0\t\U00028427", // 𨐧
+ 0x28428: "\xa0\n\U00028428", // 𨐨
+ 0x28429: "\xa0\n\U00028429", // 𨐩
+ 0x2842a: "\xa0\n\U0002842a", // 𨐪
+ 0x2842b: "\xa0\n\U0002842b", // 𨐫
+ 0x2842c: "\xa0\n\U0002842c", // 𨐬
+ 0x2842d: "\xa0\n\U0002842d", // 𨐭
+ 0x2842e: "\xa0\n\U0002842e", // 𨐮
+ 0x2842f: "\xa0\n\U0002842f", // 𨐯
+ 0x28430: "\xa0\v\U00028430", // 𨐰
+ 0x28431: "\xa0\v\U00028431", // 𨐱
+ 0x28432: "\xa0\v\U00028432", // 𨐲
+ 0x28433: "?\x0e\U00028433", // 𨐳
+ 0x28434: "f\r\U00028434", // 𨐴
+ 0x28435: "\xa0\f\U00028435", // 𨐵
+ 0x28436: "\xa0\f\U00028436", // 𨐶
+ 0x28437: "\xa0\f\U00028437", // 𨐷
+ 0x28438: "\xa0\f\U00028438", // 𨐸
+ 0x28439: "\xa0\f\U00028439", // 𨐹
+ 0x2843a: "\xa0\r\U0002843a", // 𨐺
+ 0x2843b: "\xa0\r\U0002843b", // 𨐻
+ 0x2843c: "\xa0\r\U0002843c", // 𨐼
+ 0x2843d: "\xa0\x0e\U0002843d", // 𨐽
+ 0x2843e: "\xa0\x0f\U0002843e", // 𨐾
+ 0x2843f: "\xa0\x0f\U0002843f", // 𨐿
+ 0x28440: "\xa0\x11\U00028440", // 𨑀
+ 0x28441: "\xa0\x16\U00028441", // 𨑁
+ 0x28442: "\xa0\x17\U00028442", // 𨑂
+ 0x28443: "\xa1\x00\U00028443", // 𨑃
+ 0x28444: "\xa1\x00\U00028444", // 𨑄
+ 0x28445: "\xa1\x06\U00028445", // 𨑅
+ 0x28446: "\xa1\x06\U00028446", // 𨑆
+ 0x28447: "\xa1\x06\U00028447", // 𨑇
+ 0x28448: "\xa1\b\U00028448", // 𨑈
+ 0x28449: "\xa1\t\U00028449", // 𨑉
+ 0x2844a: "\xa1\f\U0002844a", // 𨑊
+ 0x2844b: "\xa1\x0e\U0002844b", // 𨑋
+ 0x2844c: "\xa1\x0f\U0002844c", // 𨑌
+ 0x2844d: "\xa2\x02\U0002844d", // 𨑍
+ 0x2844e: "\xa2\x02\U0002844e", // 𨑎
+ 0x2844f: "\xa2\x02\U0002844f", // 𨑏
+ 0x28450: "\xa2\x02\U00028450", // 𨑐
+ 0x28451: "\xa2\x03\U00028451", // 𨑑
+ 0x28452: "\xa2\x03\U00028452", // 𨑒
+ 0x28453: "\xa2\x03\U00028453", // 𨑓
+ 0x28454: "\xa2\x03\U00028454", // 𨑔
+ 0x28455: "\xa2\x03\U00028455", // 𨑕
+ 0x28456: "\xa2\x03\U00028456", // 𨑖
+ 0x28457: "\xa2\x03\U00028457", // 𨑗
+ 0x28458: "\xa2\x03\U00028458", // 𨑘
+ 0x28459: "\xa2\x03\U00028459", // 𨑙
+ 0x2845a: "\xa2\x03\U0002845a", // 𨑚
+ 0x2845b: "\xa2\x03\U0002845b", // 𨑛
+ 0x2845c: "\xa2\x03\U0002845c", // 𨑜
+ 0x2845d: "\xa2\x03\U0002845d", // 𨑝
+ 0x2845e: "\xa2\x03\U0002845e", // 𨑞
+ 0x2845f: "\xa2\x03\U0002845f", // 𨑟
+ 0x28460: "\xa2\x03\U00028460", // 𨑠
+ 0x28461: "\xa2\x03\U00028461", // 𨑡
+ 0x28462: "\xa2\x04\U00028462", // 𨑢
+ 0x28463: "\xa2\x04\U00028463", // 𨑣
+ 0x28464: "\xa2\x04\U00028464", // 𨑤
+ 0x28465: "\xa2\x04\U00028465", // 𨑥
+ 0x28466: "\xa2\x04\U00028466", // 𨑦
+ 0x28467: "\xa2\x04\U00028467", // 𨑧
+ 0x28468: "\xa2\x04\U00028468", // 𨑨
+ 0x28469: "\xa2\x04\U00028469", // 𨑩
+ 0x2846a: "\xa2\x04\U0002846a", // 𨑪
+ 0x2846b: "\xa2\x04\U0002846b", // 𨑫
+ 0x2846c: "\xa2\x04\U0002846c", // 𨑬
+ 0x2846d: "\xa2\x04\U0002846d", // 𨑭
+ 0x2846e: "\xa2\x04\U0002846e", // 𨑮
+ 0x2846f: "\xa2\x04\U0002846f", // 𨑯
+ 0x28470: "\xa2\x04\U00028470", // 𨑰
+ 0x28471: "\xa2\x04\U00028471", // 𨑱
+ 0x28472: "\xa2\x04\U00028472", // 𨑲
+ 0x28473: "\xa2\x04\U00028473", // 𨑳
+ 0x28474: "\xa2\x04\U00028474", // 𨑴
+ 0x28475: "\xa2\x04\U00028475", // 𨑵
+ 0x28476: "\xa2\x04\U00028476", // 𨑶
+ 0x28477: "\xa2\x04\U00028477", // 𨑷
+ 0x28478: "\xa2\x04\U00028478", // 𨑸
+ 0x28479: "\xa2\x04\U00028479", // 𨑹
+ 0x2847a: "\xa2\x04\U0002847a", // 𨑺
+ 0x2847b: "\xa2\x04\U0002847b", // 𨑻
+ 0x2847c: "\xa2\x04\U0002847c", // 𨑼
+ 0x2847d: "\xa2\x04\U0002847d", // 𨑽
+ 0x2847e: "\xa2\x04\U0002847e", // 𨑾
+ 0x2847f: "\xa2\x04\U0002847f", // 𨑿
+ 0x28480: "\xa2\x04\U00028480", // 𨒀
+ 0x28481: "\xa2\x04\U00028481", // 𨒁
+ 0x28482: "\xa2\x05\U00028482", // 𨒂
+ 0x28483: "\xa2\x05\U00028483", // 𨒃
+ 0x28484: "\xa2\x05\U00028484", // 𨒄
+ 0x28485: "\xa2\x05\U00028485", // 𨒅
+ 0x28486: "\xa2\x05\U00028486", // 𨒆
+ 0x28487: "\xa2\x05\U00028487", // 𨒇
+ 0x28488: "\xa2\x05\U00028488", // 𨒈
+ 0x28489: "\xa2\x05\U00028489", // 𨒉
+ 0x2848a: "\xa2\x05\U0002848a", // 𨒊
+ 0x2848b: "\xa2\x05\U0002848b", // 𨒋
+ 0x2848c: "\xa2\x05\U0002848c", // 𨒌
+ 0x2848d: "\xa2\x05\U0002848d", // 𨒍
+ 0x2848e: "\xa2\x05\U0002848e", // 𨒎
+ 0x2848f: "\xa2\x05\U0002848f", // 𨒏
+ 0x28490: "\xa2\x05\U00028490", // 𨒐
+ 0x28491: "\xa2\x05\U00028491", // 𨒑
+ 0x28492: "\xa2\x05\U00028492", // 𨒒
+ 0x28493: "\xa2\x05\U00028493", // 𨒓
+ 0x28494: "\xa2\x05\U00028494", // 𨒔
+ 0x28495: "\xa2\x05\U00028495", // 𨒕
+ 0x28496: "\xa2\x05\U00028496", // 𨒖
+ 0x28497: "\xa2\x05\U00028497", // 𨒗
+ 0x28498: "\xa2\x05\U00028498", // 𨒘
+ 0x28499: "\xa2\x05\U00028499", // 𨒙
+ 0x2849a: "\xa2\x05\U0002849a", // 𨒚
+ 0x2849b: "\xa2\x05\U0002849b", // 𨒛
+ 0x2849c: "\xa2\x05\U0002849c", // 𨒜
+ 0x2849d: "\xa2\x05\U0002849d", // 𨒝
+ 0x2849e: "\xa2\x05\U0002849e", // 𨒞
+ 0x2849f: "\xa2\x05\U0002849f", // 𨒟
+ 0x284a0: "\xa2\x05\U000284a0", // 𨒠
+ 0x284a1: "\xa2\x05\U000284a1", // 𨒡
+ 0x284a2: "\xa2\x05\U000284a2", // 𨒢
+ 0x284a3: "\xa2\x05\U000284a3", // 𨒣
+ 0x284a4: "\xa2\x05\U000284a4", // 𨒤
+ 0x284a5: "\xa2\x06\U000284a5", // 𨒥
+ 0x284a6: "\xa2\x06\U000284a6", // 𨒦
+ 0x284a7: "\xa2\x06\U000284a7", // 𨒧
+ 0x284a8: "\xa2\x06\U000284a8", // 𨒨
+ 0x284a9: "\xa2\x06\U000284a9", // 𨒩
+ 0x284aa: "\xa2\x06\U000284aa", // 𨒪
+ 0x284ab: "\xa2\x06\U000284ab", // 𨒫
+ 0x284ac: "\xa2\x06\U000284ac", // 𨒬
+ 0x284ad: "\xa2\x06\U000284ad", // 𨒭
+ 0x284ae: "\xa2\x06\U000284ae", // 𨒮
+ 0x284af: "\xa2\x06\U000284af", // 𨒯
+ 0x284b0: "\xa2\x06\U000284b0", // 𨒰
+ 0x284b1: "\xa2\x06\U000284b1", // 𨒱
+ 0x284b2: "\xa2\x06\U000284b2", // 𨒲
+ 0x284b3: "\xa2\x06\U000284b3", // 𨒳
+ 0x284b4: "\xa2\x06\U000284b4", // 𨒴
+ 0x284b5: "\xa2\x06\U000284b5", // 𨒵
+ 0x284b6: "\xa2\x06\U000284b6", // 𨒶
+ 0x284b7: "\xa2\x06\U000284b7", // 𨒷
+ 0x284b8: "\xa2\x06\U000284b8", // 𨒸
+ 0x284b9: "\xa2\x06\U000284b9", // 𨒹
+ 0x284ba: "\xa2\x06\U000284ba", // 𨒺
+ 0x284bb: "\xa2\x06\U000284bb", // 𨒻
+ 0x284bc: "\xa2\x06\U000284bc", // 𨒼
+ 0x284bd: "\xa2\x06\U000284bd", // 𨒽
+ 0x284be: "\xa2\x06\U000284be", // 𨒾
+ 0x284bf: "\xa2\x06\U000284bf", // 𨒿
+ 0x284c0: "\xa2\x06\U000284c0", // 𨓀
+ 0x284c1: "\xa2\x06\U000284c1", // 𨓁
+ 0x284c2: "\xa2\x06\U000284c2", // 𨓂
+ 0x284c3: "\xa2\x06\U000284c3", // 𨓃
+ 0x284c4: "\xa2\x06\U000284c4", // 𨓄
+ 0x284c5: "\xa2\a\U000284c5", // 𨓅
+ 0x284c6: "\xa2\a\U000284c6", // 𨓆
+ 0x284c7: "\xa2\a\U000284c7", // 𨓇
+ 0x284c8: "\xa2\a\U000284c8", // 𨓈
+ 0x284c9: "\xa2\a\U000284c9", // 𨓉
+ 0x284ca: "\xa2\a\U000284ca", // 𨓊
+ 0x284cb: "\xa2\a\U000284cb", // 𨓋
+ 0x284cc: "\xa2\a\U000284cc", // 𨓌
+ 0x284cd: "\xa2\a\U000284cd", // 𨓍
+ 0x284ce: "\xa2\a\U000284ce", // 𨓎
+ 0x284cf: "\xa2\a\U000284cf", // 𨓏
+ 0x284d0: "\xa2\a\U000284d0", // 𨓐
+ 0x284d1: "\xa2\a\U000284d1", // 𨓑
+ 0x284d2: "\xa2\a\U000284d2", // 𨓒
+ 0x284d3: "\xa2\a\U000284d3", // 𨓓
+ 0x284d4: "\xa2\a\U000284d4", // 𨓔
+ 0x284d5: "\xa2\a\U000284d5", // 𨓕
+ 0x284d6: "\xa2\a\U000284d6", // 𨓖
+ 0x284d7: "\xa2\a\U000284d7", // 𨓗
+ 0x284d8: "\xa2\a\U000284d8", // 𨓘
+ 0x284d9: "\xa2\a\U000284d9", // 𨓙
+ 0x284da: "\xa2\a\U000284da", // 𨓚
+ 0x284db: "\xa2\a\U000284db", // 𨓛
+ 0x284dc: "\xa2\a\U000284dc", // 𨓜
+ 0x284dd: "\xa2\a\U000284dd", // 𨓝
+ 0x284de: "\xa2\a\U000284de", // 𨓞
+ 0x284df: "\xa2\a\U000284df", // 𨓟
+ 0x284e0: "\xa2\a\U000284e0", // 𨓠
+ 0x284e1: "\xa2\a\U000284e1", // 𨓡
+ 0x284e2: "\xa2\a\U000284e2", // 𨓢
+ 0x284e3: "\xa2\a\U000284e3", // 𨓣
+ 0x284e4: "\xa2\a\U000284e4", // 𨓤
+ 0x284e5: "\xa2\a\U000284e5", // 𨓥
+ 0x284e6: "\xa2\a\U000284e6", // 𨓦
+ 0x284e7: "\xa2\a\U000284e7", // 𨓧
+ 0x284e8: "\xa2\a\U000284e8", // 𨓨
+ 0x284e9: "\xa2\a\U000284e9", // 𨓩
+ 0x284ea: "\xa2\a\U000284ea", // 𨓪
+ 0x284eb: "\xa2\b\U000284eb", // 𨓫
+ 0x284ec: "\xa2\b\U000284ec", // 𨓬
+ 0x284ed: "\xa2\b\U000284ed", // 𨓭
+ 0x284ee: "\xa2\b\U000284ee", // 𨓮
+ 0x284ef: "\xa2\b\U000284ef", // 𨓯
+ 0x284f0: "\xa2\b\U000284f0", // 𨓰
+ 0x284f1: "\xa2\b\U000284f1", // 𨓱
+ 0x284f2: "\xa2\b\U000284f2", // 𨓲
+ 0x284f3: "\xa2\b\U000284f3", // 𨓳
+ 0x284f4: "\xa2\b\U000284f4", // 𨓴
+ 0x284f5: "\xa2\b\U000284f5", // 𨓵
+ 0x284f6: "\xa2\b\U000284f6", // 𨓶
+ 0x284f7: "\xa2\b\U000284f7", // 𨓷
+ 0x284f8: "\xa2\b\U000284f8", // 𨓸
+ 0x284f9: "\xa2\b\U000284f9", // 𨓹
+ 0x284fa: "\xa2\b\U000284fa", // 𨓺
+ 0x284fb: "\xa2\b\U000284fb", // 𨓻
+ 0x284fc: "\xa2\b\U000284fc", // 𨓼
+ 0x284fd: "\xa2\b\U000284fd", // 𨓽
+ 0x284fe: "\xa2\b\U000284fe", // 𨓾
+ 0x284ff: "\xa2\b\U000284ff", // 𨓿
+ 0x28500: "\xa2\b\U00028500", // 𨔀
+ 0x28501: "\xa2\b\U00028501", // 𨔁
+ 0x28502: "\xa2\b\U00028502", // 𨔂
+ 0x28503: "\xa2\b\U00028503", // 𨔃
+ 0x28504: "\xa2\b\U00028504", // 𨔄
+ 0x28505: "\xa2\b\U00028505", // 𨔅
+ 0x28506: "\xa2\b\U00028506", // 𨔆
+ 0x28507: "\xa2\b\U00028507", // 𨔇
+ 0x28508: "\xa2\b\U00028508", // 𨔈
+ 0x28509: "\xa2\b\U00028509", // 𨔉
+ 0x2850a: "\xa2\b\U0002850a", // 𨔊
+ 0x2850b: "\xa2\b\U0002850b", // 𨔋
+ 0x2850c: "\xa2\b\U0002850c", // 𨔌
+ 0x2850d: "\xa2\b\U0002850d", // 𨔍
+ 0x2850e: "\xa2\t\U0002850e", // 𨔎
+ 0x2850f: "\xa2\b\U0002850f", // 𨔏
+ 0x28510: "\xa2\b\U00028510", // 𨔐
+ 0x28511: "\xa2\b\U00028511", // 𨔑
+ 0x28512: "\xa2\b\U00028512", // 𨔒
+ 0x28513: "\xa2\b\U00028513", // 𨔓
+ 0x28514: "\xa2\b\U00028514", // 𨔔
+ 0x28515: "\xa2\b\U00028515", // 𨔕
+ 0x28516: "\xa2\b\U00028516", // 𨔖
+ 0x28517: "\xa2\b\U00028517", // 𨔗
+ 0x28518: "\xa2\b\U00028518", // 𨔘
+ 0x28519: "\xa2\b\U00028519", // 𨔙
+ 0x2851a: "\xa2\b\U0002851a", // 𨔚
+ 0x2851b: "\xa2\b\U0002851b", // 𨔛
+ 0x2851c: "\xa2\b\U0002851c", // 𨔜
+ 0x2851d: "\xa2\t\U0002851d", // 𨔝
+ 0x2851e: "\xa2\t\U0002851e", // 𨔞
+ 0x2851f: "\xa2\t\U0002851f", // 𨔟
+ 0x28520: "\xa2\b\U00028520", // 𨔠
+ 0x28521: "\xa2\t\U00028521", // 𨔡
+ 0x28522: "\xa2\t\U00028522", // 𨔢
+ 0x28523: "\xa2\t\U00028523", // 𨔣
+ 0x28524: "\xa2\t\U00028524", // 𨔤
+ 0x28525: "\xa2\t\U00028525", // 𨔥
+ 0x28526: "\xa2\t\U00028526", // 𨔦
+ 0x28527: "\xa2\t\U00028527", // 𨔧
+ 0x28528: "\xa2\t\U00028528", // 𨔨
+ 0x28529: "\xa2\t\U00028529", // 𨔩
+ 0x2852a: "\xa2\t\U0002852a", // 𨔪
+ 0x2852b: "\xa2\t\U0002852b", // 𨔫
+ 0x2852c: "\xa2\t\U0002852c", // 𨔬
+ 0x2852d: "\xa2\t\U0002852d", // 𨔭
+ 0x2852e: "\xa2\t\U0002852e", // 𨔮
+ 0x2852f: "\xa2\t\U0002852f", // 𨔯
+ 0x28530: "\xa2\t\U00028530", // 𨔰
+ 0x28531: "\xa2\t\U00028531", // 𨔱
+ 0x28532: "\xa2\t\U00028532", // 𨔲
+ 0x28533: "\xa2\t\U00028533", // 𨔳
+ 0x28534: "\xa2\t\U00028534", // 𨔴
+ 0x28535: "\xa2\t\U00028535", // 𨔵
+ 0x28536: "\xa2\t\U00028536", // 𨔶
+ 0x28537: "\xa2\t\U00028537", // 𨔷
+ 0x28538: "\xa2\t\U00028538", // 𨔸
+ 0x28539: "\xa2\t\U00028539", // 𨔹
+ 0x2853a: "\xa2\t\U0002853a", // 𨔺
+ 0x2853b: "\xa2\t\U0002853b", // 𨔻
+ 0x2853c: "\xa2\t\U0002853c", // 𨔼
+ 0x2853d: "\xa2\t\U0002853d", // 𨔽
+ 0x2853e: "\xa2\t\U0002853e", // 𨔾
+ 0x2853f: "\xa2\t\U0002853f", // 𨔿
+ 0x28540: "\xa2\t\U00028540", // 𨕀
+ 0x28541: "\xa2\t\U00028541", // 𨕁
+ 0x28542: "\xa2\t\U00028542", // 𨕂
+ 0x28543: "\xa2\t\U00028543", // 𨕃
+ 0x28544: "\xa2\t\U00028544", // 𨕄
+ 0x28545: "\xa2\t\U00028545", // 𨕅
+ 0x28546: "\xa2\t\U00028546", // 𨕆
+ 0x28547: "\xa2\t\U00028547", // 𨕇
+ 0x28548: "\xa2\t\U00028548", // 𨕈
+ 0x28549: "\xa2\t\U00028549", // 𨕉
+ 0x2854a: "\xa2\t\U0002854a", // 𨕊
+ 0x2854b: "\xa2\t\U0002854b", // 𨕋
+ 0x2854c: "\xa2\t\U0002854c", // 𨕌
+ 0x2854d: "\xa2\t\U0002854d", // 𨕍
+ 0x2854e: "\xa2\t\U0002854e", // 𨕎
+ 0x2854f: "\xa2\t\U0002854f", // 𨕏
+ 0x28550: "\xa2\t\U00028550", // 𨕐
+ 0x28551: "\xa2\t\U00028551", // 𨕑
+ 0x28552: "\xa2\t\U00028552", // 𨕒
+ 0x28553: "\xa2\t\U00028553", // 𨕓
+ 0x28554: "\xa2\t\U00028554", // 𨕔
+ 0x28555: "\xa2\t\U00028555", // 𨕕
+ 0x28556: "\xa2\t\U00028556", // 𨕖
+ 0x28557: "\xa2\t\U00028557", // 𨕗
+ 0x28558: "\xa2\t\U00028558", // 𨕘
+ 0x28559: "\xa2\t\U00028559", // 𨕙
+ 0x2855a: "\xa2\t\U0002855a", // 𨕚
+ 0x2855b: "\xa2\t\U0002855b", // 𨕛
+ 0x2855c: "\xa2\t\U0002855c", // 𨕜
+ 0x2855d: "\xa2\n\U0002855d", // 𨕝
+ 0x2855e: "\xa2\n\U0002855e", // 𨕞
+ 0x2855f: "\xa2\n\U0002855f", // 𨕟
+ 0x28560: "\xa2\n\U00028560", // 𨕠
+ 0x28561: "\xa2\n\U00028561", // 𨕡
+ 0x28562: "\xa2\n\U00028562", // 𨕢
+ 0x28563: "\xa2\n\U00028563", // 𨕣
+ 0x28564: "\xa2\n\U00028564", // 𨕤
+ 0x28565: "\xa2\n\U00028565", // 𨕥
+ 0x28566: "\xa2\n\U00028566", // 𨕦
+ 0x28567: "\xa2\n\U00028567", // 𨕧
+ 0x28568: "\xa2\n\U00028568", // 𨕨
+ 0x28569: "\xa2\n\U00028569", // 𨕩
+ 0x2856a: "\xa2\n\U0002856a", // 𨕪
+ 0x2856b: "\xa2\n\U0002856b", // 𨕫
+ 0x2856c: "\xa2\n\U0002856c", // 𨕬
+ 0x2856d: "\xa2\n\U0002856d", // 𨕭
+ 0x2856e: "\xa2\n\U0002856e", // 𨕮
+ 0x2856f: "\xa2\n\U0002856f", // 𨕯
+ 0x28570: "\xa2\n\U00028570", // 𨕰
+ 0x28571: "\xa2\n\U00028571", // 𨕱
+ 0x28572: "\xa2\n\U00028572", // 𨕲
+ 0x28573: "\xa2\n\U00028573", // 𨕳
+ 0x28574: "\xa2\n\U00028574", // 𨕴
+ 0x28575: "\xa2\n\U00028575", // 𨕵
+ 0x28576: "\xa2\n\U00028576", // 𨕶
+ 0x28577: "\xa2\n\U00028577", // 𨕷
+ 0x28578: "\xa2\n\U00028578", // 𨕸
+ 0x28579: "\xa2\n\U00028579", // 𨕹
+ 0x2857a: "\xa2\n\U0002857a", // 𨕺
+ 0x2857b: "\xa2\n\U0002857b", // 𨕻
+ 0x2857c: "\xa2\n\U0002857c", // 𨕼
+ 0x2857d: "\xa2\n\U0002857d", // 𨕽
+ 0x2857e: "\xa2\n\U0002857e", // 𨕾
+ 0x2857f: "\xa2\n\U0002857f", // 𨕿
+ 0x28580: "\xa2\n\U00028580", // 𨖀
+ 0x28581: "\xa2\n\U00028581", // 𨖁
+ 0x28582: "\xa2\n\U00028582", // 𨖂
+ 0x28583: "\xa2\n\U00028583", // 𨖃
+ 0x28584: "\xa2\n\U00028584", // 𨖄
+ 0x28585: "\xa2\n\U00028585", // 𨖅
+ 0x28586: "\xa2\v\U00028586", // 𨖆
+ 0x28587: "\xa2\v\U00028587", // 𨖇
+ 0x28588: "\xa2\v\U00028588", // 𨖈
+ 0x28589: "\xa2\v\U00028589", // 𨖉
+ 0x2858a: "\xa2\v\U0002858a", // 𨖊
+ 0x2858b: "\xa2\v\U0002858b", // 𨖋
+ 0x2858c: "\xa2\v\U0002858c", // 𨖌
+ 0x2858d: "\xa2\v\U0002858d", // 𨖍
+ 0x2858e: "\xa2\v\U0002858e", // 𨖎
+ 0x2858f: "\xa2\v\U0002858f", // 𨖏
+ 0x28590: "\xa2\v\U00028590", // 𨖐
+ 0x28591: "\xa2\v\U00028591", // 𨖑
+ 0x28592: "\xa2\v\U00028592", // 𨖒
+ 0x28593: "\xa2\v\U00028593", // 𨖓
+ 0x28594: "\xa2\v\U00028594", // 𨖔
+ 0x28595: "\xa2\v\U00028595", // 𨖕
+ 0x28596: "\xa2\v\U00028596", // 𨖖
+ 0x28597: "\xa2\v\U00028597", // 𨖗
+ 0x28598: "\xa2\v\U00028598", // 𨖘
+ 0x28599: "\xa2\v\U00028599", // 𨖙
+ 0x2859a: "\xa2\v\U0002859a", // 𨖚
+ 0x2859b: "\xa2\v\U0002859b", // 𨖛
+ 0x2859c: "\xa2\v\U0002859c", // 𨖜
+ 0x2859d: "\xa2\v\U0002859d", // 𨖝
+ 0x2859e: "\xa2\v\U0002859e", // 𨖞
+ 0x2859f: "\xa2\v\U0002859f", // 𨖟
+ 0x285a0: "\xa2\v\U000285a0", // 𨖠
+ 0x285a1: "\xa2\v\U000285a1", // 𨖡
+ 0x285a2: "\xa2\v\U000285a2", // 𨖢
+ 0x285a3: "\xa2\v\U000285a3", // 𨖣
+ 0x285a4: "\xa2\v\U000285a4", // 𨖤
+ 0x285a5: "\xa2\v\U000285a5", // 𨖥
+ 0x285a6: "\xa2\v\U000285a6", // 𨖦
+ 0x285a7: "\xa2\v\U000285a7", // 𨖧
+ 0x285a8: "\xa2\v\U000285a8", // 𨖨
+ 0x285a9: "\xa2\v\U000285a9", // 𨖩
+ 0x285aa: "\xa2\v\U000285aa", // 𨖪
+ 0x285ab: "\xa2\v\U000285ab", // 𨖫
+ 0x285ac: "\xa2\v\U000285ac", // 𨖬
+ 0x285ad: "\xa2\v\U000285ad", // 𨖭
+ 0x285ae: "\xa2\v\U000285ae", // 𨖮
+ 0x285af: "\xa2\v\U000285af", // 𨖯
+ 0x285b0: "\xa2\v\U000285b0", // 𨖰
+ 0x285b1: "\xa2\v\U000285b1", // 𨖱
+ 0x285b2: "\xa2\v\U000285b2", // 𨖲
+ 0x285b3: "\xa2\v\U000285b3", // 𨖳
+ 0x285b4: "\xa2\f\U000285b4", // 𨖴
+ 0x285b5: "\xa2\f\U000285b5", // 𨖵
+ 0x285b6: "\xa2\f\U000285b6", // 𨖶
+ 0x285b7: "\xa2\f\U000285b7", // 𨖷
+ 0x285b8: "\xa2\f\U000285b8", // 𨖸
+ 0x285b9: "\xa2\f\U000285b9", // 𨖹
+ 0x285ba: "\xa2\f\U000285ba", // 𨖺
+ 0x285bb: "\xa2\f\U000285bb", // 𨖻
+ 0x285bc: "\xa2\f\U000285bc", // 𨖼
+ 0x285bd: "\xa2\f\U000285bd", // 𨖽
+ 0x285be: "\xa2\f\U000285be", // 𨖾
+ 0x285bf: "\xa2\f\U000285bf", // 𨖿
+ 0x285c0: "\xa2\f\U000285c0", // 𨗀
+ 0x285c1: "\xa2\f\U000285c1", // 𨗁
+ 0x285c2: "\xa2\f\U000285c2", // 𨗂
+ 0x285c3: "\xa2\f\U000285c3", // 𨗃
+ 0x285c4: "\xa2\f\U000285c4", // 𨗄
+ 0x285c5: "\xa2\f\U000285c5", // 𨗅
+ 0x285c6: "\xa2\f\U000285c6", // 𨗆
+ 0x285c7: "\xa2\f\U000285c7", // 𨗇
+ 0x285c8: "\xa2\f\U000285c8", // 𨗈
+ 0x285c9: "\xa2\f\U000285c9", // 𨗉
+ 0x285ca: "\xa2\f\U000285ca", // 𨗊
+ 0x285cb: "\xa2\f\U000285cb", // 𨗋
+ 0x285cc: "\xa2\f\U000285cc", // 𨗌
+ 0x285cd: "\xa2\f\U000285cd", // 𨗍
+ 0x285ce: "\xa2\f\U000285ce", // 𨗎
+ 0x285cf: "\xa2\f\U000285cf", // 𨗏
+ 0x285d0: "\xa2\f\U000285d0", // 𨗐
+ 0x285d1: "\xa2\f\U000285d1", // 𨗑
+ 0x285d2: "\xa2\f\U000285d2", // 𨗒
+ 0x285d3: "\x1e\r\U000285d3", // 𨗓
+ 0x285d4: "\xa2\f\U000285d4", // 𨗔
+ 0x285d5: "\xa2\f\U000285d5", // 𨗕
+ 0x285d6: "\xa2\f\U000285d6", // 𨗖
+ 0x285d7: "\xa2\f\U000285d7", // 𨗗
+ 0x285d8: "\xa2\f\U000285d8", // 𨗘
+ 0x285d9: "\xa2\f\U000285d9", // 𨗙
+ 0x285da: "\xa2\f\U000285da", // 𨗚
+ 0x285db: "\xa2\f\U000285db", // 𨗛
+ 0x285dc: "\xa2\f\U000285dc", // 𨗜
+ 0x285dd: "\xa2\f\U000285dd", // 𨗝
+ 0x285de: "\xa2\f\U000285de", // 𨗞
+ 0x285df: "\xa2\f\U000285df", // 𨗟
+ 0x285e0: "\xa2\f\U000285e0", // 𨗠
+ 0x285e1: "\xa2\f\U000285e1", // 𨗡
+ 0x285e2: "\xa2\f\U000285e2", // 𨗢
+ 0x285e3: "\xa2\f\U000285e3", // 𨗣
+ 0x285e4: "\xa2\f\U000285e4", // 𨗤
+ 0x285e5: "\xa2\r\U000285e5", // 𨗥
+ 0x285e6: "\xa2\r\U000285e6", // 𨗦
+ 0x285e7: "\xa2\r\U000285e7", // 𨗧
+ 0x285e8: "\xa2\r\U000285e8", // 𨗨
+ 0x285e9: "\xa2\r\U000285e9", // 𨗩
+ 0x285ea: "\xa2\r\U000285ea", // 𨗪
+ 0x285eb: "\xa2\r\U000285eb", // 𨗫
+ 0x285ec: "\xa2\r\U000285ec", // 𨗬
+ 0x285ed: "\xa2\r\U000285ed", // 𨗭
+ 0x285ee: "\xa2\r\U000285ee", // 𨗮
+ 0x285ef: "\xa2\r\U000285ef", // 𨗯
+ 0x285f0: "\xa2\r\U000285f0", // 𨗰
+ 0x285f1: "\xa2\r\U000285f1", // 𨗱
+ 0x285f2: "\xa2\r\U000285f2", // 𨗲
+ 0x285f3: "\xa2\r\U000285f3", // 𨗳
+ 0x285f4: "\xa2\r\U000285f4", // 𨗴
+ 0x285f5: "\xa2\r\U000285f5", // 𨗵
+ 0x285f6: "\xa2\r\U000285f6", // 𨗶
+ 0x285f7: "\xa2\r\U000285f7", // 𨗷
+ 0x285f8: "\xa2\r\U000285f8", // 𨗸
+ 0x285f9: "\xa2\r\U000285f9", // 𨗹
+ 0x285fa: "\xa2\r\U000285fa", // 𨗺
+ 0x285fb: "\xa2\r\U000285fb", // 𨗻
+ 0x285fc: "\xa2\r\U000285fc", // 𨗼
+ 0x285fd: "\xa2\r\U000285fd", // 𨗽
+ 0x285fe: "\xa2\r\U000285fe", // 𨗾
+ 0x285ff: "\xa2\r\U000285ff", // 𨗿
+ 0x28600: "\xa2\r\U00028600", // 𨘀
+ 0x28601: "\xa2\r\U00028601", // 𨘁
+ 0x28602: "\xa2\r\U00028602", // 𨘂
+ 0x28603: "\xa2\r\U00028603", // 𨘃
+ 0x28604: "\xa2\r\U00028604", // 𨘄
+ 0x28605: "\xa2\r\U00028605", // 𨘅
+ 0x28606: "\xa2\r\U00028606", // 𨘆
+ 0x28607: "\xa2\x0e\U00028607", // 𨘇
+ 0x28608: "\xa2\x0e\U00028608", // 𨘈
+ 0x28609: "\xa2\x0e\U00028609", // 𨘉
+ 0x2860a: "\xa2\x0e\U0002860a", // 𨘊
+ 0x2860b: "\xa2\x0e\U0002860b", // 𨘋
+ 0x2860c: "\xa2\x0e\U0002860c", // 𨘌
+ 0x2860d: "\xa2\x0e\U0002860d", // 𨘍
+ 0x2860e: "\xa2\x0e\U0002860e", // 𨘎
+ 0x2860f: "\xa2\x0e\U0002860f", // 𨘏
+ 0x28610: "\xa2\x0e\U00028610", // 𨘐
+ 0x28611: "\xa2\x0e\U00028611", // 𨘑
+ 0x28612: "\xa2\x0e\U00028612", // 𨘒
+ 0x28613: "\xa2\x0e\U00028613", // 𨘓
+ 0x28614: "\xa2\x0e\U00028614", // 𨘔
+ 0x28615: "\xa2\x0e\U00028615", // 𨘕
+ 0x28616: "\xa2\x0e\U00028616", // 𨘖
+ 0x28617: "\xa2\x0e\U00028617", // 𨘗
+ 0x28618: "\xa2\x0e\U00028618", // 𨘘
+ 0x28619: "\xa2\x0e\U00028619", // 𨘙
+ 0x2861a: "\xa2\x0e\U0002861a", // 𨘚
+ 0x2861b: "\xa2\x0e\U0002861b", // 𨘛
+ 0x2861c: "\xa2\x0e\U0002861c", // 𨘜
+ 0x2861d: "\xa2\x0e\U0002861d", // 𨘝
+ 0x2861e: "\xa2\x0e\U0002861e", // 𨘞
+ 0x2861f: "\xa2\x0e\U0002861f", // 𨘟
+ 0x28620: "\xa2\x0e\U00028620", // 𨘠
+ 0x28621: "\xa2\x0f\U00028621", // 𨘡
+ 0x28622: "\xa2\x0f\U00028622", // 𨘢
+ 0x28623: "\xa2\x0f\U00028623", // 𨘣
+ 0x28624: "\xa2\x0f\U00028624", // 𨘤
+ 0x28625: "\xa2\x0f\U00028625", // 𨘥
+ 0x28626: "\xa2\x0f\U00028626", // 𨘦
+ 0x28627: "\xa2\x0f\U00028627", // 𨘧
+ 0x28628: "\xa2\x0f\U00028628", // 𨘨
+ 0x28629: "\xa2\x0f\U00028629", // 𨘩
+ 0x2862a: "\xa2\x0f\U0002862a", // 𨘪
+ 0x2862b: "\xa2\x0f\U0002862b", // 𨘫
+ 0x2862c: "\xa2\x0f\U0002862c", // 𨘬
+ 0x2862d: "\xa2\x0f\U0002862d", // 𨘭
+ 0x2862e: "\xa2\x0f\U0002862e", // 𨘮
+ 0x2862f: "\xa2\x0f\U0002862f", // 𨘯
+ 0x28630: "\xa2\x0f\U00028630", // 𨘰
+ 0x28631: "\xa2\x0f\U00028631", // 𨘱
+ 0x28632: "\xa2\x0f\U00028632", // 𨘲
+ 0x28633: "\xa2\x0f\U00028633", // 𨘳
+ 0x28634: "\xa2\x0f\U00028634", // 𨘴
+ 0x28635: "\xa2\x0f\U00028635", // 𨘵
+ 0x28636: "\xa2\x0f\U00028636", // 𨘶
+ 0x28637: "\xa2\x10\U00028637", // 𨘷
+ 0x28638: "\xa2\x10\U00028638", // 𨘸
+ 0x28639: "\xa2\x10\U00028639", // 𨘹
+ 0x2863a: "\xa2\x10\U0002863a", // 𨘺
+ 0x2863b: "\xa2\x10\U0002863b", // 𨘻
+ 0x2863c: "\x9f\r\U0002863c", // 𨘼
+ 0x2863d: "\xa2\x10\U0002863d", // 𨘽
+ 0x2863e: "\xa2\x10\U0002863e", // 𨘾
+ 0x2863f: "\xa2\x10\U0002863f", // 𨘿
+ 0x28640: "\xa2\x10\U00028640", // 𨙀
+ 0x28641: "\xa2\x10\U00028641", // 𨙁
+ 0x28642: "\xa2\x11\U00028642", // 𨙂
+ 0x28643: "\xa2\x11\U00028643", // 𨙃
+ 0x28644: "\xa2\x11\U00028644", // 𨙄
+ 0x28645: "\xa2\x11\U00028645", // 𨙅
+ 0x28646: "\xa2\x11\U00028646", // 𨙆
+ 0x28647: "\xa2\x11\U00028647", // 𨙇
+ 0x28648: "\xa2\x11\U00028648", // 𨙈
+ 0x28649: "\xa2\x11\U00028649", // 𨙉
+ 0x2864a: "\xa2\x11\U0002864a", // 𨙊
+ 0x2864b: "\xa2\x11\U0002864b", // 𨙋
+ 0x2864c: "\xa2\x11\U0002864c", // 𨙌
+ 0x2864d: "\xa2\x11\U0002864d", // 𨙍
+ 0x2864e: "\xa2\x11\U0002864e", // 𨙎
+ 0x2864f: "\xa2\x11\U0002864f", // 𨙏
+ 0x28650: "\xa2\x11\U00028650", // 𨙐
+ 0x28651: "\xa2\x11\U00028651", // 𨙑
+ 0x28652: "\xa2\x12\U00028652", // 𨙒
+ 0x28653: "\xa2\x12\U00028653", // 𨙓
+ 0x28654: "\xa2\x12\U00028654", // 𨙔
+ 0x28655: "\xa2\x12\U00028655", // 𨙕
+ 0x28656: "\xa2\x12\U00028656", // 𨙖
+ 0x28657: "\xa2\x12\U00028657", // 𨙗
+ 0x28658: "\xa2\x12\U00028658", // 𨙘
+ 0x28659: "\xa2\x13\U00028659", // 𨙙
+ 0x2865a: "\xa2\x13\U0002865a", // 𨙚
+ 0x2865b: "\xa2\x13\U0002865b", // 𨙛
+ 0x2865c: "\xa2\x13\U0002865c", // 𨙜
+ 0x2865d: "\xa2\x13\U0002865d", // 𨙝
+ 0x2865e: "\xa2\x13\U0002865e", // 𨙞
+ 0x2865f: "\xa2\x14\U0002865f", // 𨙟
+ 0x28660: "\xa2\x14\U00028660", // 𨙠
+ 0x28661: "\xa2\x14\U00028661", // 𨙡
+ 0x28662: "\xa2\x14\U00028662", // 𨙢
+ 0x28663: "\xa2\x14\U00028663", // 𨙣
+ 0x28664: "\xa2\x15\U00028664", // 𨙤
+ 0x28665: "\xa2\x15\U00028665", // 𨙥
+ 0x28666: "\xa2\x16\U00028666", // 𨙦
+ 0x28667: "\xa2\x17\U00028667", // 𨙧
+ 0x28668: "\xa3\x00\U00028668", // 𨙨
+ 0x28669: "\xa3\x02\U00028669", // 𨙩
+ 0x2866a: "\xa3\x02\U0002866a", // 𨙪
+ 0x2866b: "\xa3\x03\U0002866b", // 𨙫
+ 0x2866c: "\xa3\x03\U0002866c", // 𨙬
+ 0x2866d: "\xa3\x03\U0002866d", // 𨙭
+ 0x2866e: "\xa3\x03\U0002866e", // 𨙮
+ 0x2866f: "\xa3\x03\U0002866f", // 𨙯
+ 0x28670: "\xa3\x03\U00028670", // 𨙰
+ 0x28671: "\xa3\x03\U00028671", // 𨙱
+ 0x28672: "\xa3\x03\U00028672", // 𨙲
+ 0x28673: "\xa3\x03\U00028673", // 𨙳
+ 0x28674: "\xa3\x03\U00028674", // 𨙴
+ 0x28675: "\xa3\x03\U00028675", // 𨙵
+ 0x28676: "\xa3\x04\U00028676", // 𨙶
+ 0x28677: "\xa3\x04\U00028677", // 𨙷
+ 0x28678: "\xa3\x04\U00028678", // 𨙸
+ 0x28679: "\xa3\x04\U00028679", // 𨙹
+ 0x2867a: "\xa3\x04\U0002867a", // 𨙺
+ 0x2867b: "\xa3\x04\U0002867b", // 𨙻
+ 0x2867c: "\xa3\x04\U0002867c", // 𨙼
+ 0x2867d: "\xa3\x04\U0002867d", // 𨙽
+ 0x2867e: "\xa3\x04\U0002867e", // 𨙾
+ 0x2867f: "\xa3\x04\U0002867f", // 𨙿
+ 0x28680: "\xa3\x04\U00028680", // 𨚀
+ 0x28681: "\xa3\x04\U00028681", // 𨚁
+ 0x28682: "\xa3\x04\U00028682", // 𨚂
+ 0x28683: "\xa3\x04\U00028683", // 𨚃
+ 0x28684: "\xa3\x04\U00028684", // 𨚄
+ 0x28685: "\xa3\x04\U00028685", // 𨚅
+ 0x28686: "\xa3\x04\U00028686", // 𨚆
+ 0x28687: "\xa3\x04\U00028687", // 𨚇
+ 0x28688: "\xa3\x04\U00028688", // 𨚈
+ 0x28689: "\xa3\x04\U00028689", // 𨚉
+ 0x2868a: "\xa3\x04\U0002868a", // 𨚊
+ 0x2868b: "\xa3\x04\U0002868b", // 𨚋
+ 0x2868c: "\xa3\x04\U0002868c", // 𨚌
+ 0x2868d: "\xa3\x04\U0002868d", // 𨚍
+ 0x2868e: "\xa3\x04\U0002868e", // 𨚎
+ 0x2868f: "\xa3\x04\U0002868f", // 𨚏
+ 0x28690: "\xa3\x04\U00028690", // 𨚐
+ 0x28691: "\xa3\x04\U00028691", // 𨚑
+ 0x28692: "\xa3\x04\U00028692", // 𨚒
+ 0x28693: "\xa3\x05\U00028693", // 𨚓
+ 0x28694: "\xa3\x05\U00028694", // 𨚔
+ 0x28695: "\xa3\x05\U00028695", // 𨚕
+ 0x28696: "\xa3\x05\U00028696", // 𨚖
+ 0x28697: "\xa3\x05\U00028697", // 𨚗
+ 0x28698: "\xa3\x05\U00028698", // 𨚘
+ 0x28699: "\xa3\x05\U00028699", // 𨚙
+ 0x2869a: "\xa3\x05\U0002869a", // 𨚚
+ 0x2869b: "\xa3\x05\U0002869b", // 𨚛
+ 0x2869c: "\xa3\x05\U0002869c", // 𨚜
+ 0x2869d: "\xa3\x05\U0002869d", // 𨚝
+ 0x2869e: "\xa3\x05\U0002869e", // 𨚞
+ 0x2869f: "\xa3\x05\U0002869f", // 𨚟
+ 0x286a0: "\xa3\x05\U000286a0", // 𨚠
+ 0x286a1: "\xa3\x05\U000286a1", // 𨚡
+ 0x286a2: "\xa3\x05\U000286a2", // 𨚢
+ 0x286a3: "\xa3\x05\U000286a3", // 𨚣
+ 0x286a4: "\xa3\x05\U000286a4", // 𨚤
+ 0x286a5: "\xa3\x05\U000286a5", // 𨚥
+ 0x286a6: "\xa3\x05\U000286a6", // 𨚦
+ 0x286a7: "\xa3\x05\U000286a7", // 𨚧
+ 0x286a8: "\xa3\x05\U000286a8", // 𨚨
+ 0x286a9: "\xa3\x05\U000286a9", // 𨚩
+ 0x286aa: "\xa3\x05\U000286aa", // 𨚪
+ 0x286ab: "\xa3\x05\U000286ab", // 𨚫
+ 0x286ac: "\xa3\x05\U000286ac", // 𨚬
+ 0x286ad: "\xa3\x05\U000286ad", // 𨚭
+ 0x286ae: "\xa3\x05\U000286ae", // 𨚮
+ 0x286af: "\xa3\x06\U000286af", // 𨚯
+ 0x286b0: "\xa3\x06\U000286b0", // 𨚰
+ 0x286b1: "\xa3\x06\U000286b1", // 𨚱
+ 0x286b2: "\xa3\x06\U000286b2", // 𨚲
+ 0x286b3: "\xa3\x06\U000286b3", // 𨚳
+ 0x286b4: "\xa3\x06\U000286b4", // 𨚴
+ 0x286b5: "\xa3\x06\U000286b5", // 𨚵
+ 0x286b6: "\xa3\x06\U000286b6", // 𨚶
+ 0x286b7: "\xa3\x06\U000286b7", // 𨚷
+ 0x286b8: "\xa3\x06\U000286b8", // 𨚸
+ 0x286b9: "\xa3\x06\U000286b9", // 𨚹
+ 0x286ba: "\xa3\x06\U000286ba", // 𨚺
+ 0x286bb: "\xa3\x06\U000286bb", // 𨚻
+ 0x286bc: "\xa3\x06\U000286bc", // 𨚼
+ 0x286bd: "\xa3\x06\U000286bd", // 𨚽
+ 0x286be: "\xa3\x06\U000286be", // 𨚾
+ 0x286bf: "\xa3\x06\U000286bf", // 𨚿
+ 0x286c0: "\xa3\x06\U000286c0", // 𨛀
+ 0x286c1: "\xa3\x06\U000286c1", // 𨛁
+ 0x286c2: "\xa3\x06\U000286c2", // 𨛂
+ 0x286c3: "\xa3\x06\U000286c3", // 𨛃
+ 0x286c4: "\xa3\x06\U000286c4", // 𨛄
+ 0x286c5: "\xa3\x06\U000286c5", // 𨛅
+ 0x286c6: "\xa3\x06\U000286c6", // 𨛆
+ 0x286c7: "\xa3\x06\U000286c7", // 𨛇
+ 0x286c8: "\xa3\x06\U000286c8", // 𨛈
+ 0x286c9: "\xa3\x06\U000286c9", // 𨛉
+ 0x286ca: "\xa3\x06\U000286ca", // 𨛊
+ 0x286cb: "\xa3\a\U000286cb", // 𨛋
+ 0x286cc: "\xa3\a\U000286cc", // 𨛌
+ 0x286cd: "\xa3\a\U000286cd", // 𨛍
+ 0x286ce: "\xa3\a\U000286ce", // 𨛎
+ 0x286cf: "\xa3\a\U000286cf", // 𨛏
+ 0x286d0: "\xa3\a\U000286d0", // 𨛐
+ 0x286d1: "\xa3\a\U000286d1", // 𨛑
+ 0x286d2: "\xa3\a\U000286d2", // 𨛒
+ 0x286d3: "\xa3\a\U000286d3", // 𨛓
+ 0x286d4: "\xa3\a\U000286d4", // 𨛔
+ 0x286d5: "\xa3\a\U000286d5", // 𨛕
+ 0x286d6: "\xa3\a\U000286d6", // 𨛖
+ 0x286d7: "\xa3\a\U000286d7", // 𨛗
+ 0x286d8: "\xa3\a\U000286d8", // 𨛘
+ 0x286d9: "\xa3\a\U000286d9", // 𨛙
+ 0x286da: "\xa3\a\U000286da", // 𨛚
+ 0x286db: "\xa3\a\U000286db", // 𨛛
+ 0x286dc: "\xa3\a\U000286dc", // 𨛜
+ 0x286dd: "\xa3\a\U000286dd", // 𨛝
+ 0x286de: "\xa3\a\U000286de", // 𨛞
+ 0x286df: "\xa3\a\U000286df", // 𨛟
+ 0x286e0: "\xa3\a\U000286e0", // 𨛠
+ 0x286e1: "\xa3\a\U000286e1", // 𨛡
+ 0x286e2: "\xa3\a\U000286e2", // 𨛢
+ 0x286e3: "\xa3\a\U000286e3", // 𨛣
+ 0x286e4: "\xa3\a\U000286e4", // 𨛤
+ 0x286e5: "\xa3\a\U000286e5", // 𨛥
+ 0x286e6: "\xa3\a\U000286e6", // 𨛦
+ 0x286e7: "\xa3\a\U000286e7", // 𨛧
+ 0x286e8: "\xa3\a\U000286e8", // 𨛨
+ 0x286e9: "\xa3\a\U000286e9", // 𨛩
+ 0x286ea: "\xa3\a\U000286ea", // 𨛪
+ 0x286eb: "\xa3\b\U000286eb", // 𨛫
+ 0x286ec: "\xa3\b\U000286ec", // 𨛬
+ 0x286ed: "\xa3\b\U000286ed", // 𨛭
+ 0x286ee: "\xa3\b\U000286ee", // 𨛮
+ 0x286ef: "\xa3\b\U000286ef", // 𨛯
+ 0x286f0: "\xa3\b\U000286f0", // 𨛰
+ 0x286f1: "\xa3\b\U000286f1", // 𨛱
+ 0x286f2: "\xa3\b\U000286f2", // 𨛲
+ 0x286f3: "\xa3\b\U000286f3", // 𨛳
+ 0x286f4: "\xa3\b\U000286f4", // 𨛴
+ 0x286f5: "\xa3\b\U000286f5", // 𨛵
+ 0x286f6: "\xa3\b\U000286f6", // 𨛶
+ 0x286f7: "\xa3\b\U000286f7", // 𨛷
+ 0x286f8: "\xa3\b\U000286f8", // 𨛸
+ 0x286f9: "\xa3\b\U000286f9", // 𨛹
+ 0x286fa: "\xa3\b\U000286fa", // 𨛺
+ 0x286fb: "\xa3\b\U000286fb", // 𨛻
+ 0x286fc: "\xa3\b\U000286fc", // 𨛼
+ 0x286fd: "\xa3\b\U000286fd", // 𨛽
+ 0x286fe: "\xa3\b\U000286fe", // 𨛾
+ 0x286ff: "\xa3\b\U000286ff", // 𨛿
+ 0x28700: "\xa3\b\U00028700", // 𨜀
+ 0x28701: "\xa3\b\U00028701", // 𨜁
+ 0x28702: "\xa3\b\U00028702", // 𨜂
+ 0x28703: "\xa3\b\U00028703", // 𨜃
+ 0x28704: "\xa3\b\U00028704", // 𨜄
+ 0x28705: "\xa3\b\U00028705", // 𨜅
+ 0x28706: "\xa3\b\U00028706", // 𨜆
+ 0x28707: "\xa3\b\U00028707", // 𨜇
+ 0x28708: "\xa3\b\U00028708", // 𨜈
+ 0x28709: "\xa3\b\U00028709", // 𨜉
+ 0x2870a: "\xa3\b\U0002870a", // 𨜊
+ 0x2870b: "\xa3\b\U0002870b", // 𨜋
+ 0x2870c: "\xa3\b\U0002870c", // 𨜌
+ 0x2870d: "\xa3\b\U0002870d", // 𨜍
+ 0x2870e: "\xa3\b\U0002870e", // 𨜎
+ 0x2870f: "\xa3\t\U0002870f", // 𨜏
+ 0x28710: "\xa3\t\U00028710", // 𨜐
+ 0x28711: "\xa3\t\U00028711", // 𨜑
+ 0x28712: "\xa3\t\U00028712", // 𨜒
+ 0x28713: "\xa3\t\U00028713", // 𨜓
+ 0x28714: "\xa3\t\U00028714", // 𨜔
+ 0x28715: "\xa3\t\U00028715", // 𨜕
+ 0x28716: "\xa3\t\U00028716", // 𨜖
+ 0x28717: "\xa3\n\U00028717", // 𨜗
+ 0x28718: "\xa3\t\U00028718", // 𨜘
+ 0x28719: "\xa3\t\U00028719", // 𨜙
+ 0x2871a: "\xa3\t\U0002871a", // 𨜚
+ 0x2871b: "\xa3\t\U0002871b", // 𨜛
+ 0x2871c: "\xa3\t\U0002871c", // 𨜜
+ 0x2871d: "\xa3\t\U0002871d", // 𨜝
+ 0x2871e: "\xa3\t\U0002871e", // 𨜞
+ 0x2871f: "\xa3\t\U0002871f", // 𨜟
+ 0x28720: "\xa3\t\U00028720", // 𨜠
+ 0x28721: "\xa3\t\U00028721", // 𨜡
+ 0x28722: "\xa3\t\U00028722", // 𨜢
+ 0x28723: "\xa3\t\U00028723", // 𨜣
+ 0x28724: "\xa3\t\U00028724", // 𨜤
+ 0x28725: "\xa3\t\U00028725", // 𨜥
+ 0x28726: "\xa3\t\U00028726", // 𨜦
+ 0x28727: "\xa3\t\U00028727", // 𨜧
+ 0x28728: "\xa3\t\U00028728", // 𨜨
+ 0x28729: "\xa3\t\U00028729", // 𨜩
+ 0x2872a: "\xa3\t\U0002872a", // 𨜪
+ 0x2872b: "\xa3\t\U0002872b", // 𨜫
+ 0x2872c: "\xa3\t\U0002872c", // 𨜬
+ 0x2872d: "\xa3\t\U0002872d", // 𨜭
+ 0x2872e: "\xa3\t\U0002872e", // 𨜮
+ 0x2872f: "\xa3\t\U0002872f", // 𨜯
+ 0x28730: "\xa3\t\U00028730", // 𨜰
+ 0x28731: "\xa3\t\U00028731", // 𨜱
+ 0x28732: "\xa3\n\U00028732", // 𨜲
+ 0x28733: "\xa3\n\U00028733", // 𨜳
+ 0x28734: "\xa3\n\U00028734", // 𨜴
+ 0x28735: "\xa3\n\U00028735", // 𨜵
+ 0x28736: "\xa3\n\U00028736", // 𨜶
+ 0x28737: "\xa3\n\U00028737", // 𨜷
+ 0x28738: "\xa3\n\U00028738", // 𨜸
+ 0x28739: "\xa3\n\U00028739", // 𨜹
+ 0x2873a: "\xa3\n\U0002873a", // 𨜺
+ 0x2873b: "\xa3\n\U0002873b", // 𨜻
+ 0x2873c: "\xa3\n\U0002873c", // 𨜼
+ 0x2873d: "\xa3\n\U0002873d", // 𨜽
+ 0x2873e: "\xa3\n\U0002873e", // 𨜾
+ 0x2873f: "\xa3\n\U0002873f", // 𨜿
+ 0x28740: "\xa3\n\U00028740", // 𨝀
+ 0x28741: "\xa3\n\U00028741", // 𨝁
+ 0x28742: "\xa3\n\U00028742", // 𨝂
+ 0x28743: "\xa3\n\U00028743", // 𨝃
+ 0x28744: "\xa3\n\U00028744", // 𨝄
+ 0x28745: "\xa3\n\U00028745", // 𨝅
+ 0x28746: "\xa3\n\U00028746", // 𨝆
+ 0x28747: "\xa3\n\U00028747", // 𨝇
+ 0x28748: "\xa3\n\U00028748", // 𨝈
+ 0x28749: "\xa3\n\U00028749", // 𨝉
+ 0x2874a: "\xa3\n\U0002874a", // 𨝊
+ 0x2874b: "\xa3\v\U0002874b", // 𨝋
+ 0x2874c: "\xa3\v\U0002874c", // 𨝌
+ 0x2874d: "\xa3\v\U0002874d", // 𨝍
+ 0x2874e: "\xa3\v\U0002874e", // 𨝎
+ 0x2874f: "\xa3\v\U0002874f", // 𨝏
+ 0x28750: "\xa3\v\U00028750", // 𨝐
+ 0x28751: "\xa3\v\U00028751", // 𨝑
+ 0x28752: "\xa3\v\U00028752", // 𨝒
+ 0x28753: "\xa3\v\U00028753", // 𨝓
+ 0x28754: "\xa3\v\U00028754", // 𨝔
+ 0x28755: "\xa3\v\U00028755", // 𨝕
+ 0x28756: "\xa3\v\U00028756", // 𨝖
+ 0x28757: "\xa3\v\U00028757", // 𨝗
+ 0x28758: "\xa3\v\U00028758", // 𨝘
+ 0x28759: "\xa3\v\U00028759", // 𨝙
+ 0x2875a: "\xa3\v\U0002875a", // 𨝚
+ 0x2875b: "\xa3\v\U0002875b", // 𨝛
+ 0x2875c: "\xa3\v\U0002875c", // 𨝜
+ 0x2875d: "\xa3\v\U0002875d", // 𨝝
+ 0x2875e: "\xa3\v\U0002875e", // 𨝞
+ 0x2875f: "\xa3\v\U0002875f", // 𨝟
+ 0x28760: "\xa3\v\U00028760", // 𨝠
+ 0x28761: "\xa3\v\U00028761", // 𨝡
+ 0x28762: "\xa3\v\U00028762", // 𨝢
+ 0x28763: "\xa3\v\U00028763", // 𨝣
+ 0x28764: "\xa3\v\U00028764", // 𨝤
+ 0x28765: "\xa3\v\U00028765", // 𨝥
+ 0x28766: "\xa3\v\U00028766", // 𨝦
+ 0x28767: "\xa3\v\U00028767", // 𨝧
+ 0x28768: "\xa3\v\U00028768", // 𨝨
+ 0x28769: "\xa3\v\U00028769", // 𨝩
+ 0x2876a: "\xa3\v\U0002876a", // 𨝪
+ 0x2876b: "\xa3\f\U0002876b", // 𨝫
+ 0x2876c: "\xa3\f\U0002876c", // 𨝬
+ 0x2876d: "\xa3\f\U0002876d", // 𨝭
+ 0x2876e: "\xa3\f\U0002876e", // 𨝮
+ 0x2876f: "\xa3\f\U0002876f", // 𨝯
+ 0x28770: "\xa3\f\U00028770", // 𨝰
+ 0x28771: "\xa3\f\U00028771", // 𨝱
+ 0x28772: "\xa3\f\U00028772", // 𨝲
+ 0x28773: "\xa3\f\U00028773", // 𨝳
+ 0x28774: "\xa3\f\U00028774", // 𨝴
+ 0x28775: "\xa3\f\U00028775", // 𨝵
+ 0x28776: "\xa3\f\U00028776", // 𨝶
+ 0x28777: "\xa3\f\U00028777", // 𨝷
+ 0x28778: "\xa3\f\U00028778", // 𨝸
+ 0x28779: "\xa3\v\U00028779", // 𨝹
+ 0x2877a: "\xa3\f\U0002877a", // 𨝺
+ 0x2877b: "\xa3\f\U0002877b", // 𨝻
+ 0x2877c: "\xa3\f\U0002877c", // 𨝼
+ 0x2877d: "\xa3\f\U0002877d", // 𨝽
+ 0x2877e: "\xa3\f\U0002877e", // 𨝾
+ 0x2877f: "\xa3\f\U0002877f", // 𨝿
+ 0x28780: "\xa3\f\U00028780", // 𨞀
+ 0x28781: "\xa3\f\U00028781", // 𨞁
+ 0x28782: "\xa3\f\U00028782", // 𨞂
+ 0x28783: "\xa3\f\U00028783", // 𨞃
+ 0x28784: "\xa3\f\U00028784", // 𨞄
+ 0x28785: "\xa3\f\U00028785", // 𨞅
+ 0x28786: "\xa3\f\U00028786", // 𨞆
+ 0x28787: "\xa3\f\U00028787", // 𨞇
+ 0x28788: "\xa3\f\U00028788", // 𨞈
+ 0x28789: "\xa3\f\U00028789", // 𨞉
+ 0x2878a: "\xa3\f\U0002878a", // 𨞊
+ 0x2878b: "\xa3\f\U0002878b", // 𨞋
+ 0x2878c: "\xa3\f\U0002878c", // 𨞌
+ 0x2878d: "\xa3\f\U0002878d", // 𨞍
+ 0x2878e: "\xa3\f\U0002878e", // 𨞎
+ 0x2878f: "\xa3\f\U0002878f", // 𨞏
+ 0x28790: "\xa3\f\U00028790", // 𨞐
+ 0x28791: "\xa3\r\U00028791", // 𨞑
+ 0x28792: "\xa3\r\U00028792", // 𨞒
+ 0x28793: "\xa3\r\U00028793", // 𨞓
+ 0x28794: "\xa3\r\U00028794", // 𨞔
+ 0x28795: "\xa3\r\U00028795", // 𨞕
+ 0x28796: "\xa3\r\U00028796", // 𨞖
+ 0x28797: "\xa3\r\U00028797", // 𨞗
+ 0x28798: "\xa3\r\U00028798", // 𨞘
+ 0x28799: "\xa3\r\U00028799", // 𨞙
+ 0x2879a: "\xa3\r\U0002879a", // 𨞚
+ 0x2879b: "\xa3\r\U0002879b", // 𨞛
+ 0x2879c: "\xa3\r\U0002879c", // 𨞜
+ 0x2879d: "\xa3\r\U0002879d", // 𨞝
+ 0x2879e: "\xa3\r\U0002879e", // 𨞞
+ 0x2879f: "\xa3\r\U0002879f", // 𨞟
+ 0x287a0: "\xa3\r\U000287a0", // 𨞠
+ 0x287a1: "\xa3\r\U000287a1", // 𨞡
+ 0x287a2: "\xa3\r\U000287a2", // 𨞢
+ 0x287a3: "\xa3\r\U000287a3", // 𨞣
+ 0x287a4: "\xa3\r\U000287a4", // 𨞤
+ 0x287a5: "\xa3\r\U000287a5", // 𨞥
+ 0x287a6: "\xa3\r\U000287a6", // 𨞦
+ 0x287a7: "\xa3\x0e\U000287a7", // 𨞧
+ 0x287a8: "\xa3\x0e\U000287a8", // 𨞨
+ 0x287a9: "\xa3\x0e\U000287a9", // 𨞩
+ 0x287aa: "\xa3\x0e\U000287aa", // 𨞪
+ 0x287ab: "\xa3\x0e\U000287ab", // 𨞫
+ 0x287ac: "\xa3\x0e\U000287ac", // 𨞬
+ 0x287ad: "\xa3\x0e\U000287ad", // 𨞭
+ 0x287ae: "\xa3\x0e\U000287ae", // 𨞮
+ 0x287af: "\xa3\x0e\U000287af", // 𨞯
+ 0x287b0: "\xa3\x0e\U000287b0", // 𨞰
+ 0x287b1: "\xa3\x0e\U000287b1", // 𨞱
+ 0x287b2: "\xa3\x0e\U000287b2", // 𨞲
+ 0x287b3: "\xa3\x0e\U000287b3", // 𨞳
+ 0x287b4: "\xa3\x0e\U000287b4", // 𨞴
+ 0x287b5: "\xa3\x0e\U000287b5", // 𨞵
+ 0x287b6: "\xa3\x0e\U000287b6", // 𨞶
+ 0x287b7: "\xa3\x0e\U000287b7", // 𨞷
+ 0x287b8: "\xa3\x0e\U000287b8", // 𨞸
+ 0x287b9: "\xa3\x0e\U000287b9", // 𨞹
+ 0x287ba: "\xa3\x0f\U000287ba", // 𨞺
+ 0x287bb: "\xa3\x0f\U000287bb", // 𨞻
+ 0x287bc: "\xa3\x0f\U000287bc", // 𨞼
+ 0x287bd: "\xa3\x0f\U000287bd", // 𨞽
+ 0x287be: "\xa3\x0f\U000287be", // 𨞾
+ 0x287bf: "\xa3\x0f\U000287bf", // 𨞿
+ 0x287c0: "\xa3\x0f\U000287c0", // 𨟀
+ 0x287c1: "\xa3\x0f\U000287c1", // 𨟁
+ 0x287c2: "\xa3\x0f\U000287c2", // 𨟂
+ 0x287c3: "\xa3\x0f\U000287c3", // 𨟃
+ 0x287c4: "\xa3\x0f\U000287c4", // 𨟄
+ 0x287c5: "\xa3\x0f\U000287c5", // 𨟅
+ 0x287c6: "\xa3\x0f\U000287c6", // 𨟆
+ 0x287c7: "\xa3\x0f\U000287c7", // 𨟇
+ 0x287c8: "\xa3\x0f\U000287c8", // 𨟈
+ 0x287c9: "\xa3\x0f\U000287c9", // 𨟉
+ 0x287ca: "\xa3\x0f\U000287ca", // 𨟊
+ 0x287cb: "\xa3\x0f\U000287cb", // 𨟋
+ 0x287cc: "\xa3\x0f\U000287cc", // 𨟌
+ 0x287cd: "\xa3\x10\U000287cd", // 𨟍
+ 0x287ce: "\xa3\x10\U000287ce", // 𨟎
+ 0x287cf: "\xa3\x10\U000287cf", // 𨟏
+ 0x287d0: "\xa3\x10\U000287d0", // 𨟐
+ 0x287d1: "\xa3\x10\U000287d1", // 𨟑
+ 0x287d2: "\xa3\x10\U000287d2", // 𨟒
+ 0x287d3: "\xa3\x10\U000287d3", // 𨟓
+ 0x287d4: "\xa3\x10\U000287d4", // 𨟔
+ 0x287d5: "\xa3\x10\U000287d5", // 𨟕
+ 0x287d6: "\xa3\x10\U000287d6", // 𨟖
+ 0x287d7: "\xa3\x10\U000287d7", // 𨟗
+ 0x287d8: "\xa3\x10\U000287d8", // 𨟘
+ 0x287d9: "\xa3\x11\U000287d9", // 𨟙
+ 0x287da: "\xa3\x11\U000287da", // 𨟚
+ 0x287db: "\xa3\x11\U000287db", // 𨟛
+ 0x287dc: "\xa3\x11\U000287dc", // 𨟜
+ 0x287dd: "\xa3\x11\U000287dd", // 𨟝
+ 0x287de: "\xa3\x11\U000287de", // 𨟞
+ 0x287df: "\xa3\x11\U000287df", // 𨟟
+ 0x287e0: "\xa3\x12\U000287e0", // 𨟠
+ 0x287e1: "\xa3\x12\U000287e1", // 𨟡
+ 0x287e2: "\xa3\x12\U000287e2", // 𨟢
+ 0x287e3: "\xa3\x12\U000287e3", // 𨟣
+ 0x287e4: "\xa3\x13\U000287e4", // 𨟤
+ 0x287e5: "\xa3\x13\U000287e5", // 𨟥
+ 0x287e6: "\xa3\x13\U000287e6", // 𨟦
+ 0x287e7: "\xa3\x13\U000287e7", // 𨟧
+ 0x287e8: "\xa3\x14\U000287e8", // 𨟨
+ 0x287e9: "\xa3\x15\U000287e9", // 𨟩
+ 0x287ea: "\xa3\x15\U000287ea", // 𨟪
+ 0x287eb: "\xa3\x15\U000287eb", // 𨟫
+ 0x287ec: "\xa3\x15\U000287ec", // 𨟬
+ 0x287ed: "\xa3\x15\U000287ed", // 𨟭
+ 0x287ee: "\xa3\x15\U000287ee", // 𨟮
+ 0x287ef: "\xa3\x18\U000287ef", // 𨟯
+ 0x287f0: "\xa4\x03\U000287f0", // 𨟰
+ 0x287f1: "\xa4\x03\U000287f1", // 𨟱
+ 0x287f2: "\xa4\x03\U000287f2", // 𨟲
+ 0x287f3: "\xa4\x03\U000287f3", // 𨟳
+ 0x287f4: "\xa4\x04\U000287f4", // 𨟴
+ 0x287f5: "\xa4\x04\U000287f5", // 𨟵
+ 0x287f6: "\xa4\x04\U000287f6", // 𨟶
+ 0x287f7: "\xa4\x04\U000287f7", // 𨟷
+ 0x287f8: "\xa4\x04\U000287f8", // 𨟸
+ 0x287f9: "\xa4\x04\U000287f9", // 𨟹
+ 0x287fa: "\xa4\x04\U000287fa", // 𨟺
+ 0x287fb: "\xa4\x04\U000287fb", // 𨟻
+ 0x287fc: "\xa4\x04\U000287fc", // 𨟼
+ 0x287fd: "\xa4\x04\U000287fd", // 𨟽
+ 0x287fe: "\xa4\x04\U000287fe", // 𨟾
+ 0x287ff: "\xa4\x04\U000287ff", // 𨟿
+ 0x28800: "\xa4\x04\U00028800", // 𨠀
+ 0x28801: "\xa4\x04\U00028801", // 𨠁
+ 0x28802: "\xa4\x04\U00028802", // 𨠂
+ 0x28803: "\xa4\x04\U00028803", // 𨠃
+ 0x28804: "\xa4\x04\U00028804", // 𨠄
+ 0x28805: "\xa4\x04\U00028805", // 𨠅
+ 0x28806: "\xa4\x04\U00028806", // 𨠆
+ 0x28807: "\xa4\x04\U00028807", // 𨠇
+ 0x28808: "\xa4\x04\U00028808", // 𨠈
+ 0x28809: "\xa4\x04\U00028809", // 𨠉
+ 0x2880a: "\xa4\x04\U0002880a", // 𨠊
+ 0x2880b: "\xa4\x05\U0002880b", // 𨠋
+ 0x2880c: "\xa4\x05\U0002880c", // 𨠌
+ 0x2880d: "\xa4\x05\U0002880d", // 𨠍
+ 0x2880e: "\xa4\x05\U0002880e", // 𨠎
+ 0x2880f: "\xa4\x05\U0002880f", // 𨠏
+ 0x28810: "\xa4\x05\U00028810", // 𨠐
+ 0x28811: "\xa4\x05\U00028811", // 𨠑
+ 0x28812: "\xa4\x05\U00028812", // 𨠒
+ 0x28813: "\xa4\x05\U00028813", // 𨠓
+ 0x28814: "\xa4\x05\U00028814", // 𨠔
+ 0x28815: "\xa4\x05\U00028815", // 𨠕
+ 0x28816: "\xa4\x05\U00028816", // 𨠖
+ 0x28817: "\xa4\x05\U00028817", // 𨠗
+ 0x28818: "\xa4\x05\U00028818", // 𨠘
+ 0x28819: "\xa4\x05\U00028819", // 𨠙
+ 0x2881a: "\xa4\x05\U0002881a", // 𨠚
+ 0x2881b: "\xa4\x05\U0002881b", // 𨠛
+ 0x2881c: "\xa4\x05\U0002881c", // 𨠜
+ 0x2881d: "\xa4\x05\U0002881d", // 𨠝
+ 0x2881e: "\xa4\x05\U0002881e", // 𨠞
+ 0x2881f: "\xa4\x05\U0002881f", // 𨠟
+ 0x28820: "\xa4\x05\U00028820", // 𨠠
+ 0x28821: "\xa4\x05\U00028821", // 𨠡
+ 0x28822: "\xa4\x05\U00028822", // 𨠢
+ 0x28823: "\xa4\x05\U00028823", // 𨠣
+ 0x28824: "\xa4\x06\U00028824", // 𨠤
+ 0x28825: "\xa4\x06\U00028825", // 𨠥
+ 0x28826: "\xa4\x06\U00028826", // 𨠦
+ 0x28827: "\xa4\x06\U00028827", // 𨠧
+ 0x28828: "\xa4\x06\U00028828", // 𨠨
+ 0x28829: "\xa4\x06\U00028829", // 𨠩
+ 0x2882a: "\xa4\x06\U0002882a", // 𨠪
+ 0x2882b: "\xa4\x06\U0002882b", // 𨠫
+ 0x2882c: "\xa4\x06\U0002882c", // 𨠬
+ 0x2882d: "\xa4\x06\U0002882d", // 𨠭
+ 0x2882e: "\xa4\x06\U0002882e", // 𨠮
+ 0x2882f: "\xa4\x06\U0002882f", // 𨠯
+ 0x28830: "\xa4\x06\U00028830", // 𨠰
+ 0x28831: "\xa4\x06\U00028831", // 𨠱
+ 0x28832: "\xa4\x06\U00028832", // 𨠲
+ 0x28833: "\xa4\x06\U00028833", // 𨠳
+ 0x28834: "\xa4\x06\U00028834", // 𨠴
+ 0x28835: "\xa4\x06\U00028835", // 𨠵
+ 0x28836: "\xa4\x06\U00028836", // 𨠶
+ 0x28837: "\xa4\a\U00028837", // 𨠷
+ 0x28838: "\xa4\a\U00028838", // 𨠸
+ 0x28839: "\xa4\a\U00028839", // 𨠹
+ 0x2883a: "\xa4\a\U0002883a", // 𨠺
+ 0x2883b: "\xa4\a\U0002883b", // 𨠻
+ 0x2883c: "\xa4\a\U0002883c", // 𨠼
+ 0x2883d: "\xa4\a\U0002883d", // 𨠽
+ 0x2883e: "\xa4\a\U0002883e", // 𨠾
+ 0x2883f: "\xa4\a\U0002883f", // 𨠿
+ 0x28840: "\xa4\a\U00028840", // 𨡀
+ 0x28841: "\xa4\a\U00028841", // 𨡁
+ 0x28842: "\xa4\a\U00028842", // 𨡂
+ 0x28843: "\xa4\a\U00028843", // 𨡃
+ 0x28844: "\xa4\a\U00028844", // 𨡄
+ 0x28845: "\xa4\a\U00028845", // 𨡅
+ 0x28846: "\xa4\a\U00028846", // 𨡆
+ 0x28847: "\xa4\a\U00028847", // 𨡇
+ 0x28848: "\xa4\a\U00028848", // 𨡈
+ 0x28849: "\xa4\a\U00028849", // 𨡉
+ 0x2884a: "\xa4\a\U0002884a", // 𨡊
+ 0x2884b: "\xa4\a\U0002884b", // 𨡋
+ 0x2884c: "\xa4\b\U0002884c", // 𨡌
+ 0x2884d: "\xa4\b\U0002884d", // 𨡍
+ 0x2884e: "\xa4\b\U0002884e", // 𨡎
+ 0x2884f: "\xa4\b\U0002884f", // 𨡏
+ 0x28850: "\xa4\b\U00028850", // 𨡐
+ 0x28851: "\xa4\b\U00028851", // 𨡑
+ 0x28852: "\xa4\b\U00028852", // 𨡒
+ 0x28853: "\xa4\b\U00028853", // 𨡓
+ 0x28854: "\xa4\b\U00028854", // 𨡔
+ 0x28855: "\xa4\b\U00028855", // 𨡕
+ 0x28856: "\xa4\b\U00028856", // 𨡖
+ 0x28857: "\xa4\b\U00028857", // 𨡗
+ 0x28858: "\xa4\b\U00028858", // 𨡘
+ 0x28859: "\xa4\b\U00028859", // 𨡙
+ 0x2885a: "\xa4\b\U0002885a", // 𨡚
+ 0x2885b: "\xa4\b\U0002885b", // 𨡛
+ 0x2885c: "\xa4\b\U0002885c", // 𨡜
+ 0x2885d: "\xa4\b\U0002885d", // 𨡝
+ 0x2885e: "\xa4\b\U0002885e", // 𨡞
+ 0x2885f: "\xa4\b\U0002885f", // 𨡟
+ 0x28860: "\xa4\b\U00028860", // 𨡠
+ 0x28861: "\xa4\b\U00028861", // 𨡡
+ 0x28862: "\xa4\b\U00028862", // 𨡢
+ 0x28863: "\xa4\b\U00028863", // 𨡣
+ 0x28864: "\xa4\b\U00028864", // 𨡤
+ 0x28865: "\xa4\b\U00028865", // 𨡥
+ 0x28866: "\xa4\b\U00028866", // 𨡦
+ 0x28867: "\xa4\b\U00028867", // 𨡧
+ 0x28868: "\xa4\b\U00028868", // 𨡨
+ 0x28869: "\xa4\t\U00028869", // 𨡩
+ 0x2886a: "\xa4\t\U0002886a", // 𨡪
+ 0x2886b: "\xa4\t\U0002886b", // 𨡫
+ 0x2886c: "\xa4\t\U0002886c", // 𨡬
+ 0x2886d: "\xa4\t\U0002886d", // 𨡭
+ 0x2886e: "\xa4\t\U0002886e", // 𨡮
+ 0x2886f: "\xa4\t\U0002886f", // 𨡯
+ 0x28870: "\xa4\t\U00028870", // 𨡰
+ 0x28871: "\xa4\t\U00028871", // 𨡱
+ 0x28872: "\xa4\t\U00028872", // 𨡲
+ 0x28873: "\xa4\t\U00028873", // 𨡳
+ 0x28874: "\xa4\t\U00028874", // 𨡴
+ 0x28875: "\xa4\t\U00028875", // 𨡵
+ 0x28876: "\xa4\t\U00028876", // 𨡶
+ 0x28877: "\xa4\t\U00028877", // 𨡷
+ 0x28878: "\xa4\t\U00028878", // 𨡸
+ 0x28879: "\xa4\t\U00028879", // 𨡹
+ 0x2887a: "\xa4\t\U0002887a", // 𨡺
+ 0x2887b: "\xa4\t\U0002887b", // 𨡻
+ 0x2887c: "\xa4\t\U0002887c", // 𨡼
+ 0x2887d: "\xa4\t\U0002887d", // 𨡽
+ 0x2887e: "\xa4\t\U0002887e", // 𨡾
+ 0x2887f: "\xa4\t\U0002887f", // 𨡿
+ 0x28880: "\xa4\t\U00028880", // 𨢀
+ 0x28881: "\xa4\t\U00028881", // 𨢁
+ 0x28882: "\xa4\t\U00028882", // 𨢂
+ 0x28883: "\xa4\t\U00028883", // 𨢃
+ 0x28884: "\xa4\t\U00028884", // 𨢄
+ 0x28885: "\xa4\n\U00028885", // 𨢅
+ 0x28886: "\xa4\n\U00028886", // 𨢆
+ 0x28887: "\xa4\n\U00028887", // 𨢇
+ 0x28888: "\xa4\n\U00028888", // 𨢈
+ 0x28889: "\xa4\n\U00028889", // 𨢉
+ 0x2888a: "\xa4\n\U0002888a", // 𨢊
+ 0x2888b: "\xa4\n\U0002888b", // 𨢋
+ 0x2888c: "\xa4\n\U0002888c", // 𨢌
+ 0x2888d: "\xa4\n\U0002888d", // 𨢍
+ 0x2888e: "\xa4\n\U0002888e", // 𨢎
+ 0x2888f: "\xa4\n\U0002888f", // 𨢏
+ 0x28890: "\xa4\n\U00028890", // 𨢐
+ 0x28891: "\xa4\n\U00028891", // 𨢑
+ 0x28892: "\xa4\n\U00028892", // 𨢒
+ 0x28893: "\xa4\n\U00028893", // 𨢓
+ 0x28894: "\xa4\n\U00028894", // 𨢔
+ 0x28895: "\xa4\n\U00028895", // 𨢕
+ 0x28896: "\xa4\n\U00028896", // 𨢖
+ 0x28897: "\xa4\n\U00028897", // 𨢗
+ 0x28898: "\xa4\n\U00028898", // 𨢘
+ 0x28899: "\xa4\n\U00028899", // 𨢙
+ 0x2889a: "\xa4\n\U0002889a", // 𨢚
+ 0x2889b: "\xa4\n\U0002889b", // 𨢛
+ 0x2889c: "\xa4\n\U0002889c", // 𨢜
+ 0x2889d: "\xa4\n\U0002889d", // 𨢝
+ 0x2889e: "\xa4\n\U0002889e", // 𨢞
+ 0x2889f: "\xa4\n\U0002889f", // 𨢟
+ 0x288a0: "\xa4\n\U000288a0", // 𨢠
+ 0x288a1: "\xa4\v\U000288a1", // 𨢡
+ 0x288a2: "\xa4\v\U000288a2", // 𨢢
+ 0x288a3: "\xa4\v\U000288a3", // 𨢣
+ 0x288a4: "\xa4\v\U000288a4", // 𨢤
+ 0x288a5: "\xa4\v\U000288a5", // 𨢥
+ 0x288a6: "\xa4\v\U000288a6", // 𨢦
+ 0x288a7: "\xa4\v\U000288a7", // 𨢧
+ 0x288a8: "\xa4\v\U000288a8", // 𨢨
+ 0x288a9: "\xa4\v\U000288a9", // 𨢩
+ 0x288aa: "\xa4\v\U000288aa", // 𨢪
+ 0x288ab: "\xa4\v\U000288ab", // 𨢫
+ 0x288ac: "\xa4\v\U000288ac", // 𨢬
+ 0x288ad: "\xa4\v\U000288ad", // 𨢭
+ 0x288ae: "\xa4\v\U000288ae", // 𨢮
+ 0x288af: "\xa4\v\U000288af", // 𨢯
+ 0x288b0: "\xa4\v\U000288b0", // 𨢰
+ 0x288b1: "\xa4\v\U000288b1", // 𨢱
+ 0x288b2: "\xa4\v\U000288b2", // 𨢲
+ 0x288b3: "\xa4\v\U000288b3", // 𨢳
+ 0x288b4: "\xa4\v\U000288b4", // 𨢴
+ 0x288b5: "\xa4\v\U000288b5", // 𨢵
+ 0x288b6: "\xa4\v\U000288b6", // 𨢶
+ 0x288b7: "\xa4\v\U000288b7", // 𨢷
+ 0x288b8: "\xa4\v\U000288b8", // 𨢸
+ 0x288b9: "\xa4\v\U000288b9", // 𨢹
+ 0x288ba: "\xa4\v\U000288ba", // 𨢺
+ 0x288bb: "\xa4\v\U000288bb", // 𨢻
+ 0x288bc: "\xa4\v\U000288bc", // 𨢼
+ 0x288bd: "\xa4\f\U000288bd", // 𨢽
+ 0x288be: "\xa4\f\U000288be", // 𨢾
+ 0x288bf: "\xa4\f\U000288bf", // 𨢿
+ 0x288c0: "\xa4\f\U000288c0", // 𨣀
+ 0x288c1: "\xa4\f\U000288c1", // 𨣁
+ 0x288c2: "\xa4\f\U000288c2", // 𨣂
+ 0x288c3: "\xa4\f\U000288c3", // 𨣃
+ 0x288c4: "\xa4\f\U000288c4", // 𨣄
+ 0x288c5: "\xa4\f\U000288c5", // 𨣅
+ 0x288c6: "\xa4\f\U000288c6", // 𨣆
+ 0x288c7: "\xa4\f\U000288c7", // 𨣇
+ 0x288c8: "\xa4\f\U000288c8", // 𨣈
+ 0x288c9: "\xa4\f\U000288c9", // 𨣉
+ 0x288ca: "\xa4\f\U000288ca", // 𨣊
+ 0x288cb: "\xa4\f\U000288cb", // 𨣋
+ 0x288cc: "\xa4\f\U000288cc", // 𨣌
+ 0x288cd: "\xa4\f\U000288cd", // 𨣍
+ 0x288ce: "\xa4\f\U000288ce", // 𨣎
+ 0x288cf: "\xa4\f\U000288cf", // 𨣏
+ 0x288d0: "\xa4\f\U000288d0", // 𨣐
+ 0x288d1: "\xa4\f\U000288d1", // 𨣑
+ 0x288d2: "\xa4\f\U000288d2", // 𨣒
+ 0x288d3: "\xa4\f\U000288d3", // 𨣓
+ 0x288d4: "\xa4\f\U000288d4", // 𨣔
+ 0x288d5: "\xa4\f\U000288d5", // 𨣕
+ 0x288d6: "\xa4\r\U000288d6", // 𨣖
+ 0x288d7: "\xa4\r\U000288d7", // 𨣗
+ 0x288d8: "\xa4\r\U000288d8", // 𨣘
+ 0x288d9: "\xa4\r\U000288d9", // 𨣙
+ 0x288da: "\xa4\r\U000288da", // 𨣚
+ 0x288db: "\xa4\r\U000288db", // 𨣛
+ 0x288dc: "\xa4\r\U000288dc", // 𨣜
+ 0x288dd: "\xa4\r\U000288dd", // 𨣝
+ 0x288de: "\xa4\r\U000288de", // 𨣞
+ 0x288df: "\xa4\r\U000288df", // 𨣟
+ 0x288e0: "\xa4\r\U000288e0", // 𨣠
+ 0x288e1: "\xa4\r\U000288e1", // 𨣡
+ 0x288e2: "\xa4\r\U000288e2", // 𨣢
+ 0x288e3: "\xa4\r\U000288e3", // 𨣣
+ 0x288e4: "\xa4\r\U000288e4", // 𨣤
+ 0x288e5: "\xa4\r\U000288e5", // 𨣥
+ 0x288e6: "\xa4\x0e\U000288e6", // 𨣦
+ 0x288e7: "\xa4\x0e\U000288e7", // 𨣧
+ 0x288e8: "\xa4\x0e\U000288e8", // 𨣨
+ 0x288e9: "\xa4\x0e\U000288e9", // 𨣩
+ 0x288ea: "\xa4\x0e\U000288ea", // 𨣪
+ 0x288eb: "\xa4\x0e\U000288eb", // 𨣫
+ 0x288ec: "\xa4\x0e\U000288ec", // 𨣬
+ 0x288ed: "\xa4\x0e\U000288ed", // 𨣭
+ 0x288ee: "\xa4\x0f\U000288ee", // 𨣮
+ 0x288ef: "\xa4\x0f\U000288ef", // 𨣯
+ 0x288f0: "\xa4\x0f\U000288f0", // 𨣰
+ 0x288f1: "\xa4\x0f\U000288f1", // 𨣱
+ 0x288f2: "\xa4\x0f\U000288f2", // 𨣲
+ 0x288f3: "\xa4\x0f\U000288f3", // 𨣳
+ 0x288f4: "\xa4\x0f\U000288f4", // 𨣴
+ 0x288f5: "\xa4\x0f\U000288f5", // 𨣵
+ 0x288f6: "\xa4\x10\U000288f6", // 𨣶
+ 0x288f7: "\xa4\x10\U000288f7", // 𨣷
+ 0x288f8: "\xa4\x10\U000288f8", // 𨣸
+ 0x288f9: "\xa4\x10\U000288f9", // 𨣹
+ 0x288fa: "\xa4\x10\U000288fa", // 𨣺
+ 0x288fb: "\xa4\x10\U000288fb", // 𨣻
+ 0x288fc: "\xa4\x10\U000288fc", // 𨣼
+ 0x288fd: "\xa4\x10\U000288fd", // 𨣽
+ 0x288fe: "\xa4\x11\U000288fe", // 𨣾
+ 0x288ff: "\xa4\x11\U000288ff", // 𨣿
+ 0x28900: "\xa4\x11\U00028900", // 𨤀
+ 0x28901: "\xa4\x11\U00028901", // 𨤁
+ 0x28902: "\xa4\x11\U00028902", // 𨤂
+ 0x28903: "\xa4\x12\U00028903", // 𨤃
+ 0x28904: "\xa4\x12\U00028904", // 𨤄
+ 0x28905: "\xa4\x13\U00028905", // 𨤅
+ 0x28906: "\xa4\x13\U00028906", // 𨤆
+ 0x28907: "\xa4\x14\U00028907", // 𨤇
+ 0x28908: "\xa4\x14\U00028908", // 𨤈
+ 0x28909: "\xa4\x14\U00028909", // 𨤉
+ 0x2890a: "\xa4\x15\U0002890a", // 𨤊
+ 0x2890b: "\xa4\x15\U0002890b", // 𨤋
+ 0x2890c: "\xa4\x15\U0002890c", // 𨤌
+ 0x2890d: "\xa4\x18\U0002890d", // 𨤍
+ 0x2890e: "\xa4\x18\U0002890e", // 𨤎
+ 0x2890f: "\xa5\x03\U0002890f", // 𨤏
+ 0x28910: "\xa5\x04\U00028910", // 𨤐
+ 0x28911: "\xa5\x04\U00028911", // 𨤑
+ 0x28912: "\xa5\a\U00028912", // 𨤒
+ 0x28913: "\xa5\a\U00028913", // 𨤓
+ 0x28914: "\xa5\a\U00028914", // 𨤔
+ 0x28915: "\xa5\b\U00028915", // 𨤕
+ 0x28916: "\xa5\b\U00028916", // 𨤖
+ 0x28917: "\xa5\b\U00028917", // 𨤗
+ 0x28918: "\xa5\t\U00028918", // 𨤘
+ 0x28919: "\xa5\t\U00028919", // 𨤙
+ 0x2891a: "\xa5\n\U0002891a", // 𨤚
+ 0x2891b: "\xa5\n\U0002891b", // 𨤛
+ 0x2891c: "\xa5\n\U0002891c", // 𨤜
+ 0x2891d: "\xa5\v\U0002891d", // 𨤝
+ 0x2891e: "\xa5\r\U0002891e", // 𨤞
+ 0x2891f: "\xa5\x0e\U0002891f", // 𨤟
+ 0x28920: "\xa5\x0e\U00028920", // 𨤠
+ 0x28921: "\xa5\x0f\U00028921", // 𨤡
+ 0x28922: "\xa6\x04\U00028922", // 𨤢
+ 0x28923: "\xa6\x03\U00028923", // 𨤣
+ 0x28924: "\xa6\x03\U00028924", // 𨤤
+ 0x28925: "\xa6\x04\U00028925", // 𨤥
+ 0x28926: "\xa6\x05\U00028926", // 𨤦
+ 0x28927: "\xa6\x05\U00028927", // 𨤧
+ 0x28928: "\xa6\x05\U00028928", // 𨤨
+ 0x28929: "\xa6\x05\U00028929", // 𨤩
+ 0x2892a: "\xa6\x06\U0002892a", // 𨤪
+ 0x2892b: "\xa6\x06\U0002892b", // 𨤫
+ 0x2892c: "\xa6\a\U0002892c", // 𨤬
+ 0x2892d: "\xa6\b\U0002892d", // 𨤭
+ 0x2892e: "\xa6\b\U0002892e", // 𨤮
+ 0x2892f: "\xa6\b\U0002892f", // 𨤯
+ 0x28930: "\xa6\t\U00028930", // 𨤰
+ 0x28931: "\xa6\t\U00028931", // 𨤱
+ 0x28932: "\xa6\n\U00028932", // 𨤲
+ 0x28933: "\xa6\n\U00028933", // 𨤳
+ 0x28934: "\xa6\v\U00028934", // 𨤴
+ 0x28935: "\xa6\v\U00028935", // 𨤵
+ 0x28936: "\xa6\v\U00028936", // 𨤶
+ 0x28937: "\xa6\v\U00028937", // 𨤷
+ 0x28938: "\xa6\r\U00028938", // 𨤸
+ 0x28939: "\xa6\x0e\U00028939", // 𨤹
+ 0x2893a: "\xa6\x0e\U0002893a", // 𨤺
+ 0x2893b: "\xa6\x12\U0002893b", // 𨤻
+ 0x2893c: "\xa6\x17\U0002893c", // 𨤼
+ 0x2893d: "\xa7\x02\U0002893d", // 𨤽
+ 0x2893e: "\xa7\x02\U0002893e", // 𨤾
+ 0x2893f: "\xa7\x02\U0002893f", // 𨤿
+ 0x28940: "\xa7\x02\U00028940", // 𨥀
+ 0x28941: "\xa7\x02\U00028941", // 𨥁
+ 0x28942: "\xa7\x03\U00028942", // 𨥂
+ 0x28943: "\xa7\x03\U00028943", // 𨥃
+ 0x28944: "\xa7\x03\U00028944", // 𨥄
+ 0x28945: "\xa7\x03\U00028945", // 𨥅
+ 0x28946: "\xa7\x03\U00028946", // 𨥆
+ 0x28947: "\xa7\x03\U00028947", // 𨥇
+ 0x28948: "\xa7\x03\U00028948", // 𨥈
+ 0x28949: "\xa7\x03\U00028949", // 𨥉
+ 0x2894a: "\xa7\x04\U0002894a", // 𨥊
+ 0x2894b: "\xa7\x04\U0002894b", // 𨥋
+ 0x2894c: "\xa7\x04\U0002894c", // 𨥌
+ 0x2894d: "\xa7\x04\U0002894d", // 𨥍
+ 0x2894e: "\xa7\x04\U0002894e", // 𨥎
+ 0x2894f: "\xa7\x04\U0002894f", // 𨥏
+ 0x28950: "\xa7\x04\U00028950", // 𨥐
+ 0x28951: "\xa7\x04\U00028951", // 𨥑
+ 0x28952: "\xa7\x04\U00028952", // 𨥒
+ 0x28953: "\xa7\x04\U00028953", // 𨥓
+ 0x28954: "\xa7\x04\U00028954", // 𨥔
+ 0x28955: "\xa7\x04\U00028955", // 𨥕
+ 0x28956: "\xa7\x04\U00028956", // 𨥖
+ 0x28957: "\xa7\x04\U00028957", // 𨥗
+ 0x28958: "\xa7\x04\U00028958", // 𨥘
+ 0x28959: "\xa7\x04\U00028959", // 𨥙
+ 0x2895a: "\xa7\x04\U0002895a", // 𨥚
+ 0x2895b: "\xa7\x04\U0002895b", // 𨥛
+ 0x2895c: "\xa7\x04\U0002895c", // 𨥜
+ 0x2895d: "\xa7\x04\U0002895d", // 𨥝
+ 0x2895e: "\xa7\x04\U0002895e", // 𨥞
+ 0x2895f: "\xa7\x04\U0002895f", // 𨥟
+ 0x28960: "\xa7\x04\U00028960", // 𨥠
+ 0x28961: "\xa7\x04\U00028961", // 𨥡
+ 0x28962: "\xa7\x04\U00028962", // 𨥢
+ 0x28963: "\xa7\x04\U00028963", // 𨥣
+ 0x28964: "\xa7\x04\U00028964", // 𨥤
+ 0x28965: "\xa7\x05\U00028965", // 𨥥
+ 0x28966: "\xa7\x05\U00028966", // 𨥦
+ 0x28967: "\xa7\x05\U00028967", // 𨥧
+ 0x28968: "\xa7\x05\U00028968", // 𨥨
+ 0x28969: "\xa7\x05\U00028969", // 𨥩
+ 0x2896a: "\xa7\x05\U0002896a", // 𨥪
+ 0x2896b: "\xa7\x05\U0002896b", // 𨥫
+ 0x2896c: "\xa7\x05\U0002896c", // 𨥬
+ 0x2896d: "\xa7\x05\U0002896d", // 𨥭
+ 0x2896e: "\xa7\x05\U0002896e", // 𨥮
+ 0x2896f: "\xa7\x05\U0002896f", // 𨥯
+ 0x28970: "\xa7\x05\U00028970", // 𨥰
+ 0x28971: "\xa7\x05\U00028971", // 𨥱
+ 0x28972: "\xa7\x05\U00028972", // 𨥲
+ 0x28973: "\xa7\x05\U00028973", // 𨥳
+ 0x28974: "\xa7\x05\U00028974", // 𨥴
+ 0x28975: "\xa7\x05\U00028975", // 𨥵
+ 0x28976: "\xa7\x05\U00028976", // 𨥶
+ 0x28977: "\xa7\x05\U00028977", // 𨥷
+ 0x28978: "\xa7\x05\U00028978", // 𨥸
+ 0x28979: "\xa7\x05\U00028979", // 𨥹
+ 0x2897a: "\xa7\x05\U0002897a", // 𨥺
+ 0x2897b: "\xa7\x05\U0002897b", // 𨥻
+ 0x2897c: "\xa7\x05\U0002897c", // 𨥼
+ 0x2897d: "\xa7\x05\U0002897d", // 𨥽
+ 0x2897e: "\xa7\x05\U0002897e", // 𨥾
+ 0x2897f: "\xa7\x05\U0002897f", // 𨥿
+ 0x28980: "\xa7\x05\U00028980", // 𨦀
+ 0x28981: "\xa7\x05\U00028981", // 𨦁
+ 0x28982: "\xa7\x06\U00028982", // 𨦂
+ 0x28983: "\xa7\x06\U00028983", // 𨦃
+ 0x28984: "\xa7\x06\U00028984", // 𨦄
+ 0x28985: "\xa7\x06\U00028985", // 𨦅
+ 0x28986: "\xa7\x06\U00028986", // 𨦆
+ 0x28987: "\xa7\x06\U00028987", // 𨦇
+ 0x28988: "\xa7\x06\U00028988", // 𨦈
+ 0x28989: "\xa7\x06\U00028989", // 𨦉
+ 0x2898a: "\xa7\x06\U0002898a", // 𨦊
+ 0x2898b: "\xa7\x06\U0002898b", // 𨦋
+ 0x2898c: "\xa7\x06\U0002898c", // 𨦌
+ 0x2898d: "\xa7\x06\U0002898d", // 𨦍
+ 0x2898e: "\xa7\x06\U0002898e", // 𨦎
+ 0x2898f: "\xa7\x06\U0002898f", // 𨦏
+ 0x28990: "\xa7\x06\U00028990", // 𨦐
+ 0x28991: "\xa7\x06\U00028991", // 𨦑
+ 0x28992: "\xa7\x06\U00028992", // 𨦒
+ 0x28993: "\xa7\x06\U00028993", // 𨦓
+ 0x28994: "\xa7\x06\U00028994", // 𨦔
+ 0x28995: "\xa7\x06\U00028995", // 𨦕
+ 0x28996: "\xa7\x06\U00028996", // 𨦖
+ 0x28997: "\xa7\x06\U00028997", // 𨦗
+ 0x28998: "\xa7\x06\U00028998", // 𨦘
+ 0x28999: "\xa7\x06\U00028999", // 𨦙
+ 0x2899a: "\xa7\x06\U0002899a", // 𨦚
+ 0x2899b: "\xa7\x06\U0002899b", // 𨦛
+ 0x2899c: "\xa7\x06\U0002899c", // 𨦜
+ 0x2899d: "\xa7\x06\U0002899d", // 𨦝
+ 0x2899e: "\x89\b\U0002899e", // 𨦞
+ 0x2899f: "\xa7\x06\U0002899f", // 𨦟
+ 0x289a0: "\xa7\x06\U000289a0", // 𨦠
+ 0x289a1: "\xa7\x06\U000289a1", // 𨦡
+ 0x289a2: "\xa7\x06\U000289a2", // 𨦢
+ 0x289a3: "\xa7\x06\U000289a3", // 𨦣
+ 0x289a4: "\xa7\x06\U000289a4", // 𨦤
+ 0x289a5: "\xa7\x06\U000289a5", // 𨦥
+ 0x289a6: "\xa7\x06\U000289a6", // 𨦦
+ 0x289a7: "\xa7\x06\U000289a7", // 𨦧
+ 0x289a8: "\xa7\x06\U000289a8", // 𨦨
+ 0x289a9: "\xa7\x06\U000289a9", // 𨦩
+ 0x289aa: "\xa7\x06\U000289aa", // 𨦪
+ 0x289ab: "\xa7\x06\U000289ab", // 𨦫
+ 0x289ac: "\xa7\a\U000289ac", // 𨦬
+ 0x289ad: "\xa7\a\U000289ad", // 𨦭
+ 0x289ae: "\xa7\a\U000289ae", // 𨦮
+ 0x289af: "\xa7\a\U000289af", // 𨦯
+ 0x289b0: "\xa7\a\U000289b0", // 𨦰
+ 0x289b1: "\xa7\a\U000289b1", // 𨦱
+ 0x289b2: "\xa7\a\U000289b2", // 𨦲
+ 0x289b3: "\xa7\a\U000289b3", // 𨦳
+ 0x289b4: "\xa7\a\U000289b4", // 𨦴
+ 0x289b5: "\xa7\a\U000289b5", // 𨦵
+ 0x289b6: "\xa7\a\U000289b6", // 𨦶
+ 0x289b7: "\xa7\a\U000289b7", // 𨦷
+ 0x289b8: "\xa7\a\U000289b8", // 𨦸
+ 0x289b9: "\xa7\a\U000289b9", // 𨦹
+ 0x289ba: "\xa7\a\U000289ba", // 𨦺
+ 0x289bb: "\xa7\a\U000289bb", // 𨦻
+ 0x289bc: "\xa7\a\U000289bc", // 𨦼
+ 0x289bd: "\xa7\a\U000289bd", // 𨦽
+ 0x289be: "\xa7\a\U000289be", // 𨦾
+ 0x289bf: "\xa7\a\U000289bf", // 𨦿
+ 0x289c0: "\xa7\a\U000289c0", // 𨧀
+ 0x289c1: "\xa7\a\U000289c1", // 𨧁
+ 0x289c2: "\xa7\a\U000289c2", // 𨧂
+ 0x289c3: "\xa7\a\U000289c3", // 𨧃
+ 0x289c4: "\xa7\a\U000289c4", // 𨧄
+ 0x289c5: "\xa7\a\U000289c5", // 𨧅
+ 0x289c6: "\xa7\a\U000289c6", // 𨧆
+ 0x289c7: "\xa7\a\U000289c7", // 𨧇
+ 0x289c8: "\xa7\a\U000289c8", // 𨧈
+ 0x289c9: "\xa7\a\U000289c9", // 𨧉
+ 0x289ca: "\xa7\a\U000289ca", // 𨧊
+ 0x289cb: "\xa7\a\U000289cb", // 𨧋
+ 0x289cc: "\xa7\a\U000289cc", // 𨧌
+ 0x289cd: "\xa7\a\U000289cd", // 𨧍
+ 0x289ce: "\xa7\a\U000289ce", // 𨧎
+ 0x289cf: "\xa7\a\U000289cf", // 𨧏
+ 0x289d0: "\xa7\a\U000289d0", // 𨧐
+ 0x289d1: "\xa7\a\U000289d1", // 𨧑
+ 0x289d2: "\xa7\a\U000289d2", // 𨧒
+ 0x289d3: "\xa7\a\U000289d3", // 𨧓
+ 0x289d4: "\xa7\a\U000289d4", // 𨧔
+ 0x289d5: "\xa7\a\U000289d5", // 𨧕
+ 0x289d6: "\xa7\a\U000289d6", // 𨧖
+ 0x289d7: "\xa7\a\U000289d7", // 𨧗
+ 0x289d8: "\xa7\a\U000289d8", // 𨧘
+ 0x289d9: "\xa7\a\U000289d9", // 𨧙
+ 0x289da: "\xa7\a\U000289da", // 𨧚
+ 0x289db: "\xa7\a\U000289db", // 𨧛
+ 0x289dc: "\xa7\a\U000289dc", // 𨧜
+ 0x289dd: "\xa7\a\U000289dd", // 𨧝
+ 0x289de: "\xa7\a\U000289de", // 𨧞
+ 0x289df: "\xa7\a\U000289df", // 𨧟
+ 0x289e0: "\xa7\a\U000289e0", // 𨧠
+ 0x289e1: "\xa7\a\U000289e1", // 𨧡
+ 0x289e2: "\xa7\a\U000289e2", // 𨧢
+ 0x289e3: "\xa7\a\U000289e3", // 𨧣
+ 0x289e4: "\xa7\a\U000289e4", // 𨧤
+ 0x289e5: "\xa7\a\U000289e5", // 𨧥
+ 0x289e6: "\xa7\b\U000289e6", // 𨧦
+ 0x289e7: "\xa7\b\U000289e7", // 𨧧
+ 0x289e8: "\xa7\b\U000289e8", // 𨧨
+ 0x289e9: "\xa7\b\U000289e9", // 𨧩
+ 0x289ea: "\xa7\b\U000289ea", // 𨧪
+ 0x289eb: "\xa7\b\U000289eb", // 𨧫
+ 0x289ec: "\xa7\b\U000289ec", // 𨧬
+ 0x289ed: "\xa7\b\U000289ed", // 𨧭
+ 0x289ee: "\xa7\b\U000289ee", // 𨧮
+ 0x289ef: "\xa7\b\U000289ef", // 𨧯
+ 0x289f0: "\xa7\b\U000289f0", // 𨧰
+ 0x289f1: "\xa7\b\U000289f1", // 𨧱
+ 0x289f2: "\xa7\b\U000289f2", // 𨧲
+ 0x289f3: "\xa7\b\U000289f3", // 𨧳
+ 0x289f4: "\xa7\b\U000289f4", // 𨧴
+ 0x289f5: "\xa7\b\U000289f5", // 𨧵
+ 0x289f6: "\xa7\b\U000289f6", // 𨧶
+ 0x289f7: "\xa7\b\U000289f7", // 𨧷
+ 0x289f8: "\xa7\b\U000289f8", // 𨧸
+ 0x289f9: "\xa7\b\U000289f9", // 𨧹
+ 0x289fa: "\xa7\b\U000289fa", // 𨧺
+ 0x289fb: "\xa7\b\U000289fb", // 𨧻
+ 0x289fc: "\xa7\b\U000289fc", // 𨧼
+ 0x289fd: "\xa7\b\U000289fd", // 𨧽
+ 0x289fe: "\xa7\b\U000289fe", // 𨧾
+ 0x289ff: "\xa7\b\U000289ff", // 𨧿
+ 0x28a00: "\xa7\b\U00028a00", // 𨨀
+ 0x28a01: "\xa7\b\U00028a01", // 𨨁
+ 0x28a02: "\xa7\b\U00028a02", // 𨨂
+ 0x28a03: "\xa7\b\U00028a03", // 𨨃
+ 0x28a04: "\xa7\b\U00028a04", // 𨨄
+ 0x28a05: "\xa7\b\U00028a05", // 𨨅
+ 0x28a06: "\xa7\b\U00028a06", // 𨨆
+ 0x28a07: "\xa7\b\U00028a07", // 𨨇
+ 0x28a08: "\xa7\b\U00028a08", // 𨨈
+ 0x28a09: "\xa7\b\U00028a09", // 𨨉
+ 0x28a0a: "\xa7\b\U00028a0a", // 𨨊
+ 0x28a0b: "\xa7\b\U00028a0b", // 𨨋
+ 0x28a0c: "\xa7\b\U00028a0c", // 𨨌
+ 0x28a0d: "\xa7\b\U00028a0d", // 𨨍
+ 0x28a0e: "\xa7\b\U00028a0e", // 𨨎
+ 0x28a0f: "\xa7\b\U00028a0f", // 𨨏
+ 0x28a10: "\xa7\b\U00028a10", // 𨨐
+ 0x28a11: "\xa7\b\U00028a11", // 𨨑
+ 0x28a12: "\xa7\b\U00028a12", // 𨨒
+ 0x28a13: "\xa7\b\U00028a13", // 𨨓
+ 0x28a14: "\xa7\b\U00028a14", // 𨨔
+ 0x28a15: "\xa7\b\U00028a15", // 𨨕
+ 0x28a16: "\xa7\b\U00028a16", // 𨨖
+ 0x28a17: "\xa7\b\U00028a17", // 𨨗
+ 0x28a18: "\xa7\b\U00028a18", // 𨨘
+ 0x28a19: "\xa7\b\U00028a19", // 𨨙
+ 0x28a1a: "\xa7\b\U00028a1a", // 𨨚
+ 0x28a1b: "\xa7\b\U00028a1b", // 𨨛
+ 0x28a1c: "\xa7\b\U00028a1c", // 𨨜
+ 0x28a1d: "\xa7\b\U00028a1d", // 𨨝
+ 0x28a1e: "\xa7\b\U00028a1e", // 𨨞
+ 0x28a1f: "\xa7\b\U00028a1f", // 𨨟
+ 0x28a20: "\xa7\b\U00028a20", // 𨨠
+ 0x28a21: "\xa7\b\U00028a21", // 𨨡
+ 0x28a22: "\xa7\b\U00028a22", // 𨨢
+ 0x28a23: "\xa7\b\U00028a23", // 𨨣
+ 0x28a24: "\xa7\b\U00028a24", // 𨨤
+ 0x28a25: "\xa7\b\U00028a25", // 𨨥
+ 0x28a26: "\xa7\b\U00028a26", // 𨨦
+ 0x28a27: "\xa7\b\U00028a27", // 𨨧
+ 0x28a28: "\xa7\b\U00028a28", // 𨨨
+ 0x28a29: "\xa7\b\U00028a29", // 𨨩
+ 0x28a2a: "\xa7\b\U00028a2a", // 𨨪
+ 0x28a2b: "\xa7\b\U00028a2b", // 𨨫
+ 0x28a2c: "\xa7\b\U00028a2c", // 𨨬
+ 0x28a2d: "\xa7\b\U00028a2d", // 𨨭
+ 0x28a2e: "\xa7\b\U00028a2e", // 𨨮
+ 0x28a2f: "\xa7\t\U00028a2f", // 𨨯
+ 0x28a30: "\xa7\t\U00028a30", // 𨨰
+ 0x28a31: "\xa7\t\U00028a31", // 𨨱
+ 0x28a32: "\xa7\t\U00028a32", // 𨨲
+ 0x28a33: "\xa7\t\U00028a33", // 𨨳
+ 0x28a34: "\xa7\t\U00028a34", // 𨨴
+ 0x28a35: "\xa7\t\U00028a35", // 𨨵
+ 0x28a36: "\xa7\t\U00028a36", // 𨨶
+ 0x28a37: "\xa7\t\U00028a37", // 𨨷
+ 0x28a38: "\xa7\t\U00028a38", // 𨨸
+ 0x28a39: "\xa7\t\U00028a39", // 𨨹
+ 0x28a3a: "\xa7\t\U00028a3a", // 𨨺
+ 0x28a3b: "\xa7\t\U00028a3b", // 𨨻
+ 0x28a3c: "\xa7\t\U00028a3c", // 𨨼
+ 0x28a3d: "\xa7\t\U00028a3d", // 𨨽
+ 0x28a3e: "\xa7\t\U00028a3e", // 𨨾
+ 0x28a3f: "\xa7\t\U00028a3f", // 𨨿
+ 0x28a40: "\xa7\t\U00028a40", // 𨩀
+ 0x28a41: "\xa7\t\U00028a41", // 𨩁
+ 0x28a42: "\xa7\t\U00028a42", // 𨩂
+ 0x28a43: "\xa7\t\U00028a43", // 𨩃
+ 0x28a44: "\xa7\t\U00028a44", // 𨩄
+ 0x28a45: "\xa7\t\U00028a45", // 𨩅
+ 0x28a46: "\xa7\t\U00028a46", // 𨩆
+ 0x28a47: "\xa7\t\U00028a47", // 𨩇
+ 0x28a48: "\xa7\t\U00028a48", // 𨩈
+ 0x28a49: "\xa7\t\U00028a49", // 𨩉
+ 0x28a4a: "\xa7\t\U00028a4a", // 𨩊
+ 0x28a4b: "\xa7\t\U00028a4b", // 𨩋
+ 0x28a4c: "\xa7\t\U00028a4c", // 𨩌
+ 0x28a4d: "\xa7\t\U00028a4d", // 𨩍
+ 0x28a4e: "\xa7\t\U00028a4e", // 𨩎
+ 0x28a4f: "\xa7\t\U00028a4f", // 𨩏
+ 0x28a50: "\xa7\t\U00028a50", // 𨩐
+ 0x28a51: "\xa7\t\U00028a51", // 𨩑
+ 0x28a52: "\xa7\t\U00028a52", // 𨩒
+ 0x28a53: "\xa7\t\U00028a53", // 𨩓
+ 0x28a54: "\xa7\t\U00028a54", // 𨩔
+ 0x28a55: "\xa7\t\U00028a55", // 𨩕
+ 0x28a56: "\xa7\t\U00028a56", // 𨩖
+ 0x28a57: "\xa7\t\U00028a57", // 𨩗
+ 0x28a58: "\xa7\t\U00028a58", // 𨩘
+ 0x28a59: "\xa7\t\U00028a59", // 𨩙
+ 0x28a5a: "\xa7\t\U00028a5a", // 𨩚
+ 0x28a5b: "\xa7\t\U00028a5b", // 𨩛
+ 0x28a5c: "\xa7\t\U00028a5c", // 𨩜
+ 0x28a5d: "\xa7\t\U00028a5d", // 𨩝
+ 0x28a5e: "\xa7\t\U00028a5e", // 𨩞
+ 0x28a5f: "\xa7\t\U00028a5f", // 𨩟
+ 0x28a60: "\xa7\t\U00028a60", // 𨩠
+ 0x28a61: "\xa7\t\U00028a61", // 𨩡
+ 0x28a62: "\xa7\t\U00028a62", // 𨩢
+ 0x28a63: "\xa7\t\U00028a63", // 𨩣
+ 0x28a64: "\xa7\t\U00028a64", // 𨩤
+ 0x28a65: "\xa7\t\U00028a65", // 𨩥
+ 0x28a66: "\xa7\t\U00028a66", // 𨩦
+ 0x28a67: "\xa7\t\U00028a67", // 𨩧
+ 0x28a68: "\xa7\t\U00028a68", // 𨩨
+ 0x28a69: "\xa7\t\U00028a69", // 𨩩
+ 0x28a6a: "\xa7\t\U00028a6a", // 𨩪
+ 0x28a6b: "\xa7\t\U00028a6b", // 𨩫
+ 0x28a6c: "\xa7\t\U00028a6c", // 𨩬
+ 0x28a6d: "\xa7\t\U00028a6d", // 𨩭
+ 0x28a6e: "\xa7\t\U00028a6e", // 𨩮
+ 0x28a6f: "\xa7\t\U00028a6f", // 𨩯
+ 0x28a70: "\xa7\t\U00028a70", // 𨩰
+ 0x28a71: "\xa7\t\U00028a71", // 𨩱
+ 0x28a72: "\xa7\t\U00028a72", // 𨩲
+ 0x28a73: "\xa7\t\U00028a73", // 𨩳
+ 0x28a74: "\xa7\t\U00028a74", // 𨩴
+ 0x28a75: "\xa7\t\U00028a75", // 𨩵
+ 0x28a76: "\xa7\t\U00028a76", // 𨩶
+ 0x28a77: "\xa7\t\U00028a77", // 𨩷
+ 0x28a78: "\xa7\t\U00028a78", // 𨩸
+ 0x28a79: "\xa7\t\U00028a79", // 𨩹
+ 0x28a7a: "\xa7\t\U00028a7a", // 𨩺
+ 0x28a7b: "\xa7\t\U00028a7b", // 𨩻
+ 0x28a7c: "\xa7\t\U00028a7c", // 𨩼
+ 0x28a7d: "\xa7\t\U00028a7d", // 𨩽
+ 0x28a7e: "\xa7\t\U00028a7e", // 𨩾
+ 0x28a7f: "\xa7\t\U00028a7f", // 𨩿
+ 0x28a80: "\xa7\t\U00028a80", // 𨪀
+ 0x28a81: "\xa7\t\U00028a81", // 𨪁
+ 0x28a82: "\xa7\t\U00028a82", // 𨪂
+ 0x28a83: "\xa7\t\U00028a83", // 𨪃
+ 0x28a84: "\xa7\t\U00028a84", // 𨪄
+ 0x28a85: "\xa7\t\U00028a85", // 𨪅
+ 0x28a86: "\xa7\t\U00028a86", // 𨪆
+ 0x28a87: "\xa7\n\U00028a87", // 𨪇
+ 0x28a88: "\xa7\n\U00028a88", // 𨪈
+ 0x28a89: "\xa7\n\U00028a89", // 𨪉
+ 0x28a8a: "\xa7\n\U00028a8a", // 𨪊
+ 0x28a8b: "\xa7\n\U00028a8b", // 𨪋
+ 0x28a8c: "\xa7\n\U00028a8c", // 𨪌
+ 0x28a8d: "\xa7\n\U00028a8d", // 𨪍
+ 0x28a8e: "\xa7\n\U00028a8e", // 𨪎
+ 0x28a8f: "\xa7\n\U00028a8f", // 𨪏
+ 0x28a90: "\xa7\n\U00028a90", // 𨪐
+ 0x28a91: "\xa7\n\U00028a91", // 𨪑
+ 0x28a92: "\xa7\n\U00028a92", // 𨪒
+ 0x28a93: "\xa7\n\U00028a93", // 𨪓
+ 0x28a94: "\xa7\n\U00028a94", // 𨪔
+ 0x28a95: "\xa7\n\U00028a95", // 𨪕
+ 0x28a96: "\xa7\n\U00028a96", // 𨪖
+ 0x28a97: "\xa7\n\U00028a97", // 𨪗
+ 0x28a98: "\xa7\n\U00028a98", // 𨪘
+ 0x28a99: "\xa7\n\U00028a99", // 𨪙
+ 0x28a9a: "\xa7\n\U00028a9a", // 𨪚
+ 0x28a9b: "\xa7\n\U00028a9b", // 𨪛
+ 0x28a9c: "\xa7\n\U00028a9c", // 𨪜
+ 0x28a9d: "\xa7\n\U00028a9d", // 𨪝
+ 0x28a9e: "\xa7\n\U00028a9e", // 𨪞
+ 0x28a9f: "\xa7\n\U00028a9f", // 𨪟
+ 0x28aa0: "\xa7\n\U00028aa0", // 𨪠
+ 0x28aa1: "\xa7\n\U00028aa1", // 𨪡
+ 0x28aa2: "\xa7\n\U00028aa2", // 𨪢
+ 0x28aa3: "\xa7\n\U00028aa3", // 𨪣
+ 0x28aa4: "\xa7\n\U00028aa4", // 𨪤
+ 0x28aa5: "\xa7\n\U00028aa5", // 𨪥
+ 0x28aa6: "\xa7\n\U00028aa6", // 𨪦
+ 0x28aa7: "\xa7\n\U00028aa7", // 𨪧
+ 0x28aa8: "\xa7\n\U00028aa8", // 𨪨
+ 0x28aa9: "\xa7\n\U00028aa9", // 𨪩
+ 0x28aaa: "\xa7\n\U00028aaa", // 𨪪
+ 0x28aab: "\xa7\n\U00028aab", // 𨪫
+ 0x28aac: "\xa7\n\U00028aac", // 𨪬
+ 0x28aad: "\xa7\n\U00028aad", // 𨪭
+ 0x28aae: "\xa7\n\U00028aae", // 𨪮
+ 0x28aaf: "\xa7\n\U00028aaf", // 𨪯
+ 0x28ab0: "\xa7\n\U00028ab0", // 𨪰
+ 0x28ab1: "\xa7\n\U00028ab1", // 𨪱
+ 0x28ab2: "\xa7\n\U00028ab2", // 𨪲
+ 0x28ab3: "\xa7\n\U00028ab3", // 𨪳
+ 0x28ab4: "\xa7\n\U00028ab4", // 𨪴
+ 0x28ab5: "\xa7\n\U00028ab5", // 𨪵
+ 0x28ab6: "\xa7\n\U00028ab6", // 𨪶
+ 0x28ab7: "\xa7\n\U00028ab7", // 𨪷
+ 0x28ab8: "\xa7\n\U00028ab8", // 𨪸
+ 0x28ab9: "\xa7\n\U00028ab9", // 𨪹
+ 0x28aba: "\xa7\n\U00028aba", // 𨪺
+ 0x28abb: "\xa7\n\U00028abb", // 𨪻
+ 0x28abc: "\xa7\n\U00028abc", // 𨪼
+ 0x28abd: "\xa7\n\U00028abd", // 𨪽
+ 0x28abe: "\xa7\n\U00028abe", // 𨪾
+ 0x28abf: "\xa7\n\U00028abf", // 𨪿
+ 0x28ac0: "\xa7\n\U00028ac0", // 𨫀
+ 0x28ac1: "\xa7\n\U00028ac1", // 𨫁
+ 0x28ac2: "\xa7\n\U00028ac2", // 𨫂
+ 0x28ac3: "\xa7\n\U00028ac3", // 𨫃
+ 0x28ac4: "\xa7\n\U00028ac4", // 𨫄
+ 0x28ac5: "\xa7\n\U00028ac5", // 𨫅
+ 0x28ac6: "\xa7\n\U00028ac6", // 𨫆
+ 0x28ac7: "\xa7\n\U00028ac7", // 𨫇
+ 0x28ac8: "\xa7\n\U00028ac8", // 𨫈
+ 0x28ac9: "\xa7\n\U00028ac9", // 𨫉
+ 0x28aca: "\xa7\n\U00028aca", // 𨫊
+ 0x28acb: "\xa7\n\U00028acb", // 𨫋
+ 0x28acc: "\xa7\n\U00028acc", // 𨫌
+ 0x28acd: "\xa7\n\U00028acd", // 𨫍
+ 0x28ace: "\xa7\n\U00028ace", // 𨫎
+ 0x28acf: "\xa7\v\U00028acf", // 𨫏
+ 0x28ad0: "\xa7\v\U00028ad0", // 𨫐
+ 0x28ad1: "\xa7\v\U00028ad1", // 𨫑
+ 0x28ad2: "\xa7\v\U00028ad2", // 𨫒
+ 0x28ad3: "\xa7\v\U00028ad3", // 𨫓
+ 0x28ad4: "\xa7\v\U00028ad4", // 𨫔
+ 0x28ad5: "\xa7\v\U00028ad5", // 𨫕
+ 0x28ad6: "\xa7\v\U00028ad6", // 𨫖
+ 0x28ad7: "\xa7\v\U00028ad7", // 𨫗
+ 0x28ad8: "\xa7\v\U00028ad8", // 𨫘
+ 0x28ad9: "\xa7\v\U00028ad9", // 𨫙
+ 0x28ada: "\xa7\v\U00028ada", // 𨫚
+ 0x28adb: "\xa7\v\U00028adb", // 𨫛
+ 0x28adc: "\xa7\v\U00028adc", // 𨫜
+ 0x28add: "\xa7\v\U00028add", // 𨫝
+ 0x28ade: "\xa7\v\U00028ade", // 𨫞
+ 0x28adf: "\xa7\v\U00028adf", // 𨫟
+ 0x28ae0: "\xa7\v\U00028ae0", // 𨫠
+ 0x28ae1: "\xa7\v\U00028ae1", // 𨫡
+ 0x28ae2: "\xa7\v\U00028ae2", // 𨫢
+ 0x28ae3: "\xa7\v\U00028ae3", // 𨫣
+ 0x28ae4: "\xa7\v\U00028ae4", // 𨫤
+ 0x28ae5: "\xa7\v\U00028ae5", // 𨫥
+ 0x28ae6: "\xa7\v\U00028ae6", // 𨫦
+ 0x28ae7: "\xa7\v\U00028ae7", // 𨫧
+ 0x28ae8: "\xa7\v\U00028ae8", // 𨫨
+ 0x28ae9: "\xa7\v\U00028ae9", // 𨫩
+ 0x28aea: "\xa7\v\U00028aea", // 𨫪
+ 0x28aeb: "\xa7\v\U00028aeb", // 𨫫
+ 0x28aec: "\xa7\v\U00028aec", // 𨫬
+ 0x28aed: "\xa7\v\U00028aed", // 𨫭
+ 0x28aee: "\xa7\v\U00028aee", // 𨫮
+ 0x28aef: "\xa7\v\U00028aef", // 𨫯
+ 0x28af0: "\xa7\v\U00028af0", // 𨫰
+ 0x28af1: "\xa7\v\U00028af1", // 𨫱
+ 0x28af2: "\xa7\v\U00028af2", // 𨫲
+ 0x28af3: "\xa7\v\U00028af3", // 𨫳
+ 0x28af4: "\xa7\v\U00028af4", // 𨫴
+ 0x28af5: "\xa7\v\U00028af5", // 𨫵
+ 0x28af6: "\xa7\v\U00028af6", // 𨫶
+ 0x28af7: "\xa7\v\U00028af7", // 𨫷
+ 0x28af8: "\xa7\v\U00028af8", // 𨫸
+ 0x28af9: "\xa7\v\U00028af9", // 𨫹
+ 0x28afa: "\xa7\v\U00028afa", // 𨫺
+ 0x28afb: "\xa7\v\U00028afb", // 𨫻
+ 0x28afc: "\xa7\v\U00028afc", // 𨫼
+ 0x28afd: "\xa7\v\U00028afd", // 𨫽
+ 0x28afe: "\xa7\v\U00028afe", // 𨫾
+ 0x28aff: "\xa7\v\U00028aff", // 𨫿
+ 0x28b00: "\xa7\v\U00028b00", // 𨬀
+ 0x28b01: "\xa7\v\U00028b01", // 𨬁
+ 0x28b02: "\xa7\v\U00028b02", // 𨬂
+ 0x28b03: "\xa7\v\U00028b03", // 𨬃
+ 0x28b04: "\xa7\v\U00028b04", // 𨬄
+ 0x28b05: "\xa7\v\U00028b05", // 𨬅
+ 0x28b06: "\xa7\v\U00028b06", // 𨬆
+ 0x28b07: "\xa7\v\U00028b07", // 𨬇
+ 0x28b08: "\xa7\v\U00028b08", // 𨬈
+ 0x28b09: "\xa7\v\U00028b09", // 𨬉
+ 0x28b0a: "\xa7\v\U00028b0a", // 𨬊
+ 0x28b0b: "\xa7\v\U00028b0b", // 𨬋
+ 0x28b0c: "\xa7\v\U00028b0c", // 𨬌
+ 0x28b0d: "\xa7\f\U00028b0d", // 𨬍
+ 0x28b0e: "\xa7\f\U00028b0e", // 𨬎
+ 0x28b0f: "\xa7\f\U00028b0f", // 𨬏
+ 0x28b10: "\xa7\f\U00028b10", // 𨬐
+ 0x28b11: "\xa7\f\U00028b11", // 𨬑
+ 0x28b12: "\xa7\f\U00028b12", // 𨬒
+ 0x28b13: "\xa7\f\U00028b13", // 𨬓
+ 0x28b14: "\xa7\f\U00028b14", // 𨬔
+ 0x28b15: "\xa7\r\U00028b15", // 𨬕
+ 0x28b16: "\xa7\f\U00028b16", // 𨬖
+ 0x28b17: "\xa7\f\U00028b17", // 𨬗
+ 0x28b18: "\xa7\f\U00028b18", // 𨬘
+ 0x28b19: "\xa7\f\U00028b19", // 𨬙
+ 0x28b1a: "\xa7\f\U00028b1a", // 𨬚
+ 0x28b1b: "\xa7\f\U00028b1b", // 𨬛
+ 0x28b1c: "\xa7\f\U00028b1c", // 𨬜
+ 0x28b1d: "\xa7\f\U00028b1d", // 𨬝
+ 0x28b1e: "\xa7\f\U00028b1e", // 𨬞
+ 0x28b1f: "\xa7\f\U00028b1f", // 𨬟
+ 0x28b20: "\xa7\f\U00028b20", // 𨬠
+ 0x28b21: "\xa7\f\U00028b21", // 𨬡
+ 0x28b22: "\xa7\f\U00028b22", // 𨬢
+ 0x28b23: "\xa7\f\U00028b23", // 𨬣
+ 0x28b24: "\xa7\f\U00028b24", // 𨬤
+ 0x28b25: "\xa7\f\U00028b25", // 𨬥
+ 0x28b26: "\xa7\f\U00028b26", // 𨬦
+ 0x28b27: "\xa7\f\U00028b27", // 𨬧
+ 0x28b28: "\xa7\f\U00028b28", // 𨬨
+ 0x28b29: "\xa7\f\U00028b29", // 𨬩
+ 0x28b2a: "\xa7\f\U00028b2a", // 𨬪
+ 0x28b2b: "\xa7\f\U00028b2b", // 𨬫
+ 0x28b2c: "\xa7\f\U00028b2c", // 𨬬
+ 0x28b2d: "\xa7\f\U00028b2d", // 𨬭
+ 0x28b2e: "\xa7\f\U00028b2e", // 𨬮
+ 0x28b2f: "\xa7\f\U00028b2f", // 𨬯
+ 0x28b30: "\xa7\f\U00028b30", // 𨬰
+ 0x28b31: "\xa7\f\U00028b31", // 𨬱
+ 0x28b32: "\xa7\f\U00028b32", // 𨬲
+ 0x28b33: "\xa7\f\U00028b33", // 𨬳
+ 0x28b34: "\xa7\f\U00028b34", // 𨬴
+ 0x28b35: "\xa7\f\U00028b35", // 𨬵
+ 0x28b36: "\xa7\f\U00028b36", // 𨬶
+ 0x28b37: "\xa7\f\U00028b37", // 𨬷
+ 0x28b38: "\xa7\f\U00028b38", // 𨬸
+ 0x28b39: "\xa7\f\U00028b39", // 𨬹
+ 0x28b3a: "\xa7\f\U00028b3a", // 𨬺
+ 0x28b3b: "\xa7\f\U00028b3b", // 𨬻
+ 0x28b3c: "\xa7\f\U00028b3c", // 𨬼
+ 0x28b3d: "\xa7\f\U00028b3d", // 𨬽
+ 0x28b3e: "\xa7\f\U00028b3e", // 𨬾
+ 0x28b3f: "\xa7\f\U00028b3f", // 𨬿
+ 0x28b40: "\xa7\f\U00028b40", // 𨭀
+ 0x28b41: "\xa7\f\U00028b41", // 𨭁
+ 0x28b42: "\xa7\f\U00028b42", // 𨭂
+ 0x28b43: "\xa7\f\U00028b43", // 𨭃
+ 0x28b44: "\xa7\f\U00028b44", // 𨭄
+ 0x28b45: "\xa7\f\U00028b45", // 𨭅
+ 0x28b46: "\xa7\f\U00028b46", // 𨭆
+ 0x28b47: "\xa7\f\U00028b47", // 𨭇
+ 0x28b48: "\xa7\f\U00028b48", // 𨭈
+ 0x28b49: "\xa7\f\U00028b49", // 𨭉
+ 0x28b4a: "\xa7\f\U00028b4a", // 𨭊
+ 0x28b4b: "\xa7\f\U00028b4b", // 𨭋
+ 0x28b4c: "\xa7\f\U00028b4c", // 𨭌
+ 0x28b4d: "\xa7\f\U00028b4d", // 𨭍
+ 0x28b4e: "\xa7\f\U00028b4e", // 𨭎
+ 0x28b4f: "\xa7\f\U00028b4f", // 𨭏
+ 0x28b50: "\xa7\f\U00028b50", // 𨭐
+ 0x28b51: "\xa7\f\U00028b51", // 𨭑
+ 0x28b52: "\xa7\f\U00028b52", // 𨭒
+ 0x28b53: "\xa7\f\U00028b53", // 𨭓
+ 0x28b54: "\xa7\f\U00028b54", // 𨭔
+ 0x28b55: "\xa7\r\U00028b55", // 𨭕
+ 0x28b56: "\xa7\r\U00028b56", // 𨭖
+ 0x28b57: "\xa7\r\U00028b57", // 𨭗
+ 0x28b58: "\xa7\r\U00028b58", // 𨭘
+ 0x28b59: "\xa7\r\U00028b59", // 𨭙
+ 0x28b5a: "\xa7\r\U00028b5a", // 𨭚
+ 0x28b5b: "\xa7\r\U00028b5b", // 𨭛
+ 0x28b5c: "\xa7\r\U00028b5c", // 𨭜
+ 0x28b5d: "\xa7\r\U00028b5d", // 𨭝
+ 0x28b5e: "\xa7\r\U00028b5e", // 𨭞
+ 0x28b5f: "\xa7\r\U00028b5f", // 𨭟
+ 0x28b60: "\xa7\r\U00028b60", // 𨭠
+ 0x28b61: "\xa7\r\U00028b61", // 𨭡
+ 0x28b62: "\xa7\r\U00028b62", // 𨭢
+ 0x28b63: "\xa7\r\U00028b63", // 𨭣
+ 0x28b64: "\xa7\r\U00028b64", // 𨭤
+ 0x28b65: "\xa7\r\U00028b65", // 𨭥
+ 0x28b66: "\xa7\r\U00028b66", // 𨭦
+ 0x28b67: "\xa7\r\U00028b67", // 𨭧
+ 0x28b68: "\xa7\r\U00028b68", // 𨭨
+ 0x28b69: "\xa7\r\U00028b69", // 𨭩
+ 0x28b6a: "\xa7\r\U00028b6a", // 𨭪
+ 0x28b6b: "\xa7\r\U00028b6b", // 𨭫
+ 0x28b6c: "\xa7\r\U00028b6c", // 𨭬
+ 0x28b6d: "\xa7\r\U00028b6d", // 𨭭
+ 0x28b6e: "\xa7\r\U00028b6e", // 𨭮
+ 0x28b6f: "\xa7\r\U00028b6f", // 𨭯
+ 0x28b70: "\xa7\r\U00028b70", // 𨭰
+ 0x28b71: "\xa7\r\U00028b71", // 𨭱
+ 0x28b72: "\xa7\r\U00028b72", // 𨭲
+ 0x28b73: "\xa7\r\U00028b73", // 𨭳
+ 0x28b74: "\xa7\r\U00028b74", // 𨭴
+ 0x28b75: "\xa7\r\U00028b75", // 𨭵
+ 0x28b76: "\xa7\r\U00028b76", // 𨭶
+ 0x28b77: "\xa7\r\U00028b77", // 𨭷
+ 0x28b78: "\xa7\r\U00028b78", // 𨭸
+ 0x28b79: "\xa7\r\U00028b79", // 𨭹
+ 0x28b7a: "\xa7\r\U00028b7a", // 𨭺
+ 0x28b7b: "\xa7\r\U00028b7b", // 𨭻
+ 0x28b7c: "\xa7\r\U00028b7c", // 𨭼
+ 0x28b7d: "\xa7\r\U00028b7d", // 𨭽
+ 0x28b7e: "\xa7\r\U00028b7e", // 𨭾
+ 0x28b7f: "\xa7\r\U00028b7f", // 𨭿
+ 0x28b80: "\xa7\r\U00028b80", // 𨮀
+ 0x28b81: "\xa7\r\U00028b81", // 𨮁
+ 0x28b82: "\xa7\r\U00028b82", // 𨮂
+ 0x28b83: "\xa7\r\U00028b83", // 𨮃
+ 0x28b84: "\xa7\r\U00028b84", // 𨮄
+ 0x28b85: "\xa7\r\U00028b85", // 𨮅
+ 0x28b86: "\xa7\r\U00028b86", // 𨮆
+ 0x28b87: "\xa7\r\U00028b87", // 𨮇
+ 0x28b88: "\xa7\r\U00028b88", // 𨮈
+ 0x28b89: "\xa7\r\U00028b89", // 𨮉
+ 0x28b8a: "\xa7\r\U00028b8a", // 𨮊
+ 0x28b8b: "\xa7\r\U00028b8b", // 𨮋
+ 0x28b8c: "\xa7\r\U00028b8c", // 𨮌
+ 0x28b8d: "\xa7\r\U00028b8d", // 𨮍
+ 0x28b8e: "\xa7\r\U00028b8e", // 𨮎
+ 0x28b8f: "\xa7\r\U00028b8f", // 𨮏
+ 0x28b90: "\xa7\r\U00028b90", // 𨮐
+ 0x28b91: "\xa7\r\U00028b91", // 𨮑
+ 0x28b92: "\xa7\x0e\U00028b92", // 𨮒
+ 0x28b93: "\xa7\x0e\U00028b93", // 𨮓
+ 0x28b94: "\xa7\x0e\U00028b94", // 𨮔
+ 0x28b95: "\xa7\x0e\U00028b95", // 𨮕
+ 0x28b96: "\xa7\x0e\U00028b96", // 𨮖
+ 0x28b97: "\xa7\x0e\U00028b97", // 𨮗
+ 0x28b98: "\xa7\x0e\U00028b98", // 𨮘
+ 0x28b99: "\xa7\x0e\U00028b99", // 𨮙
+ 0x28b9a: "\xa7\x0e\U00028b9a", // 𨮚
+ 0x28b9b: "\xa7\x0e\U00028b9b", // 𨮛
+ 0x28b9c: "\xa7\x0e\U00028b9c", // 𨮜
+ 0x28b9d: "\xa7\x0e\U00028b9d", // 𨮝
+ 0x28b9e: "\xa7\x0e\U00028b9e", // 𨮞
+ 0x28b9f: "\xa7\x0e\U00028b9f", // 𨮟
+ 0x28ba0: "\xa7\x0e\U00028ba0", // 𨮠
+ 0x28ba1: "\xa7\x0e\U00028ba1", // 𨮡
+ 0x28ba2: "\xa7\x0e\U00028ba2", // 𨮢
+ 0x28ba3: "\xa7\x0e\U00028ba3", // 𨮣
+ 0x28ba4: "\xa7\x0e\U00028ba4", // 𨮤
+ 0x28ba5: "\xa7\x0e\U00028ba5", // 𨮥
+ 0x28ba6: "\xa7\x0e\U00028ba6", // 𨮦
+ 0x28ba7: "\xa7\x0e\U00028ba7", // 𨮧
+ 0x28ba8: "\xa7\x0e\U00028ba8", // 𨮨
+ 0x28ba9: "\xa7\x0e\U00028ba9", // 𨮩
+ 0x28baa: "\xa7\x0e\U00028baa", // 𨮪
+ 0x28bab: "\xa7\x0e\U00028bab", // 𨮫
+ 0x28bac: "\xa7\x0e\U00028bac", // 𨮬
+ 0x28bad: "\xa7\x0e\U00028bad", // 𨮭
+ 0x28bae: "\xa7\x0e\U00028bae", // 𨮮
+ 0x28baf: "\xa7\x0e\U00028baf", // 𨮯
+ 0x28bb0: "\xa7\x0e\U00028bb0", // 𨮰
+ 0x28bb1: "\xa7\x0e\U00028bb1", // 𨮱
+ 0x28bb2: "\xa7\x0e\U00028bb2", // 𨮲
+ 0x28bb3: "\xa7\x0e\U00028bb3", // 𨮳
+ 0x28bb4: "\xa7\x0e\U00028bb4", // 𨮴
+ 0x28bb5: "\xa7\x0e\U00028bb5", // 𨮵
+ 0x28bb6: "\xa7\x0e\U00028bb6", // 𨮶
+ 0x28bb7: "\xa7\x0e\U00028bb7", // 𨮷
+ 0x28bb8: "\xa7\x0f\U00028bb8", // 𨮸
+ 0x28bb9: "\xa7\x0f\U00028bb9", // 𨮹
+ 0x28bba: "\xa7\x0f\U00028bba", // 𨮺
+ 0x28bbb: "\xa7\x0f\U00028bbb", // 𨮻
+ 0x28bbc: "\xa7\x0f\U00028bbc", // 𨮼
+ 0x28bbd: "\xa7\x0f\U00028bbd", // 𨮽
+ 0x28bbe: "\xa7\x0f\U00028bbe", // 𨮾
+ 0x28bbf: "\xa7\x0f\U00028bbf", // 𨮿
+ 0x28bc0: "\xa7\x0f\U00028bc0", // 𨯀
+ 0x28bc1: "\xa7\x0f\U00028bc1", // 𨯁
+ 0x28bc2: "\xa7\x0f\U00028bc2", // 𨯂
+ 0x28bc3: "\xa7\x0f\U00028bc3", // 𨯃
+ 0x28bc4: "\xa7\x0f\U00028bc4", // 𨯄
+ 0x28bc5: "\xa7\x0f\U00028bc5", // 𨯅
+ 0x28bc6: "\xa7\x0f\U00028bc6", // 𨯆
+ 0x28bc7: "\xa7\x0f\U00028bc7", // 𨯇
+ 0x28bc8: "\xa7\x0f\U00028bc8", // 𨯈
+ 0x28bc9: "\xa7\x0f\U00028bc9", // 𨯉
+ 0x28bca: "\xa7\x0f\U00028bca", // 𨯊
+ 0x28bcb: "\xa7\x0f\U00028bcb", // 𨯋
+ 0x28bcc: "\xa7\x0f\U00028bcc", // 𨯌
+ 0x28bcd: "\xa7\x0f\U00028bcd", // 𨯍
+ 0x28bce: "\xa7\x0f\U00028bce", // 𨯎
+ 0x28bcf: "\xa7\x0f\U00028bcf", // 𨯏
+ 0x28bd0: "\xa7\x0f\U00028bd0", // 𨯐
+ 0x28bd1: "\xa7\x0f\U00028bd1", // 𨯑
+ 0x28bd2: "\xa7\x0f\U00028bd2", // 𨯒
+ 0x28bd3: "\xa7\x0f\U00028bd3", // 𨯓
+ 0x28bd4: "\xa7\x0f\U00028bd4", // 𨯔
+ 0x28bd5: "\xa7\x0f\U00028bd5", // 𨯕
+ 0x28bd6: "\xa7\x0f\U00028bd6", // 𨯖
+ 0x28bd7: "\xa7\x0f\U00028bd7", // 𨯗
+ 0x28bd8: "\xa7\x0f\U00028bd8", // 𨯘
+ 0x28bd9: "\xa7\x0f\U00028bd9", // 𨯙
+ 0x28bda: "\xa7\x0f\U00028bda", // 𨯚
+ 0x28bdb: "\xa7\x0f\U00028bdb", // 𨯛
+ 0x28bdc: "\xa7\x0f\U00028bdc", // 𨯜
+ 0x28bdd: "\xa7\x10\U00028bdd", // 𨯝
+ 0x28bde: "\xa7\x10\U00028bde", // 𨯞
+ 0x28bdf: "\xa7\x10\U00028bdf", // 𨯟
+ 0x28be0: "\xa7\x10\U00028be0", // 𨯠
+ 0x28be1: "\xa7\x10\U00028be1", // 𨯡
+ 0x28be2: "\xa7\x10\U00028be2", // 𨯢
+ 0x28be3: "\xa7\x10\U00028be3", // 𨯣
+ 0x28be4: "\xa7\x10\U00028be4", // 𨯤
+ 0x28be5: "\xa7\x10\U00028be5", // 𨯥
+ 0x28be6: "\xa7\x10\U00028be6", // 𨯦
+ 0x28be7: "\xa7\x10\U00028be7", // 𨯧
+ 0x28be8: "\xa7\x10\U00028be8", // 𨯨
+ 0x28be9: "\xa7\x10\U00028be9", // 𨯩
+ 0x28bea: "\xa7\x10\U00028bea", // 𨯪
+ 0x28beb: "\xa7\x10\U00028beb", // 𨯫
+ 0x28bec: "\xa7\x10\U00028bec", // 𨯬
+ 0x28bed: "\xa7\x10\U00028bed", // 𨯭
+ 0x28bee: "\xa7\x10\U00028bee", // 𨯮
+ 0x28bef: "\xa7\x10\U00028bef", // 𨯯
+ 0x28bf0: "\xa7\x10\U00028bf0", // 𨯰
+ 0x28bf1: "\xa7\x10\U00028bf1", // 𨯱
+ 0x28bf2: "\xa7\x10\U00028bf2", // 𨯲
+ 0x28bf3: "\xa7\x10\U00028bf3", // 𨯳
+ 0x28bf4: "\xa7\x10\U00028bf4", // 𨯴
+ 0x28bf5: "\xa7\x10\U00028bf5", // 𨯵
+ 0x28bf6: "\xa7\x10\U00028bf6", // 𨯶
+ 0x28bf7: "\xa7\x10\U00028bf7", // 𨯷
+ 0x28bf8: "\xa7\x10\U00028bf8", // 𨯸
+ 0x28bf9: "\xa7\x10\U00028bf9", // 𨯹
+ 0x28bfa: "\xa7\x11\U00028bfa", // 𨯺
+ 0x28bfb: "\xa7\x11\U00028bfb", // 𨯻
+ 0x28bfc: "\xa7\x11\U00028bfc", // 𨯼
+ 0x28bfd: "\xa7\x11\U00028bfd", // 𨯽
+ 0x28bfe: "\xa7\x11\U00028bfe", // 𨯾
+ 0x28bff: "\xa7\x11\U00028bff", // 𨯿
+ 0x28c00: "\xa7\x11\U00028c00", // 𨰀
+ 0x28c01: "\xa7\x11\U00028c01", // 𨰁
+ 0x28c02: "\xa7\x11\U00028c02", // 𨰂
+ 0x28c03: "\xa7\x11\U00028c03", // 𨰃
+ 0x28c04: "\xa7\x11\U00028c04", // 𨰄
+ 0x28c05: "\xa7\x11\U00028c05", // 𨰅
+ 0x28c06: "\xa7\x11\U00028c06", // 𨰆
+ 0x28c07: "\xa7\x11\U00028c07", // 𨰇
+ 0x28c08: "\xa7\x11\U00028c08", // 𨰈
+ 0x28c09: "\xa7\x12\U00028c09", // 𨰉
+ 0x28c0a: "\xa7\x12\U00028c0a", // 𨰊
+ 0x28c0b: "\xa7\x12\U00028c0b", // 𨰋
+ 0x28c0c: "\xa7\x12\U00028c0c", // 𨰌
+ 0x28c0d: "\xa7\x12\U00028c0d", // 𨰍
+ 0x28c0e: "\xa7\x12\U00028c0e", // 𨰎
+ 0x28c0f: "\xa7\x12\U00028c0f", // 𨰏
+ 0x28c10: "\xa7\x12\U00028c10", // 𨰐
+ 0x28c11: "\xa7\x12\U00028c11", // 𨰑
+ 0x28c12: "\xa7\x12\U00028c12", // 𨰒
+ 0x28c13: "\xa7\x12\U00028c13", // 𨰓
+ 0x28c14: "\xa7\x12\U00028c14", // 𨰔
+ 0x28c15: "\xa7\x12\U00028c15", // 𨰕
+ 0x28c16: "\xa7\x12\U00028c16", // 𨰖
+ 0x28c17: "\xa7\x12\U00028c17", // 𨰗
+ 0x28c18: "\xa7\x12\U00028c18", // 𨰘
+ 0x28c19: "\xa7\x12\U00028c19", // 𨰙
+ 0x28c1a: "\xa7\x12\U00028c1a", // 𨰚
+ 0x28c1b: "\xa7\x12\U00028c1b", // 𨰛
+ 0x28c1c: "\xa7\x12\U00028c1c", // 𨰜
+ 0x28c1d: "\xa7\x12\U00028c1d", // 𨰝
+ 0x28c1e: "\xa7\x13\U00028c1e", // 𨰞
+ 0x28c1f: "\xa7\x13\U00028c1f", // 𨰟
+ 0x28c20: "\xa7\x13\U00028c20", // 𨰠
+ 0x28c21: "\xa7\x13\U00028c21", // 𨰡
+ 0x28c22: "\xa7\x13\U00028c22", // 𨰢
+ 0x28c23: "\xa7\x13\U00028c23", // 𨰣
+ 0x28c24: "\xa7\x13\U00028c24", // 𨰤
+ 0x28c25: "\xa7\x13\U00028c25", // 𨰥
+ 0x28c26: "\xa7\x13\U00028c26", // 𨰦
+ 0x28c27: "\xa7\x13\U00028c27", // 𨰧
+ 0x28c28: "\xa7\x13\U00028c28", // 𨰨
+ 0x28c29: "\xa7\x14\U00028c29", // 𨰩
+ 0x28c2a: "\xa7\x14\U00028c2a", // 𨰪
+ 0x28c2b: "\xa7\x14\U00028c2b", // 𨰫
+ 0x28c2c: "\xa7\x14\U00028c2c", // 𨰬
+ 0x28c2d: "\xa7\x14\U00028c2d", // 𨰭
+ 0x28c2e: "\xa7\x14\U00028c2e", // 𨰮
+ 0x28c2f: "\xa7\x14\U00028c2f", // 𨰯
+ 0x28c30: "\xa7\x14\U00028c30", // 𨰰
+ 0x28c31: "\xa7\x11\U00028c31", // 𨰱
+ 0x28c32: "\xa7\x15\U00028c32", // 𨰲
+ 0x28c33: "\xa7\x15\U00028c33", // 𨰳
+ 0x28c34: "\xa7\x15\U00028c34", // 𨰴
+ 0x28c35: "\xa7\x15\U00028c35", // 𨰵
+ 0x28c36: "\xa7\x15\U00028c36", // 𨰶
+ 0x28c37: "\xa7\x16\U00028c37", // 𨰷
+ 0x28c38: "\xa7\x16\U00028c38", // 𨰸
+ 0x28c39: "\xa7\x16\U00028c39", // 𨰹
+ 0x28c3a: "\xa7\x17\U00028c3a", // 𨰺
+ 0x28c3b: "\xa7\x18\U00028c3b", // 𨰻
+ 0x28c3c: "\xa7\x1b\U00028c3c", // 𨰼
+ 0x28c3d: "\xa7\x1e\U00028c3d", // 𨰽
+ 0x28c3e: "\xa7\x03\U00028c3e", // 𨰾
+ 0x28c3f: "\xa7\x03\U00028c3f", // 𨰿
+ 0x28c40: "\xa7\x04\U00028c40", // 𨱀
+ 0x28c41: "\xa7\x04\U00028c41", // 𨱁
+ 0x28c42: "\xa7\x04\U00028c42", // 𨱂
+ 0x28c43: "\xa7\x05\U00028c43", // 𨱃
+ 0x28c44: "\xa7\x05\U00028c44", // 𨱄
+ 0x28c45: "\xa7\x05\U00028c45", // 𨱅
+ 0x28c46: "\xa7\x05\U00028c46", // 𨱆
+ 0x28c47: "\xa7\a\U00028c47", // 𨱇
+ 0x28c48: "\xa7\a\U00028c48", // 𨱈
+ 0x28c49: "\xa7\b\U00028c49", // 𨱉
+ 0x28c4a: "\xa7\b\U00028c4a", // 𨱊
+ 0x28c4b: "\xa7\b\U00028c4b", // 𨱋
+ 0x28c4c: "\xa7\b\U00028c4c", // 𨱌
+ 0x28c4d: "\xa7\n\U00028c4d", // 𨱍
+ 0x28c4e: "\xa7\t\U00028c4e", // 𨱎
+ 0x28c4f: "\xa7\n\U00028c4f", // 𨱏
+ 0x28c50: "\xa7\v\U00028c50", // 𨱐
+ 0x28c51: "\xa7\f\U00028c51", // 𨱑
+ 0x28c52: "\xa7\v\U00028c52", // 𨱒
+ 0x28c53: "\xa7\f\U00028c53", // 𨱓
+ 0x28c54: "\xa7\f\U00028c54", // 𨱔
+ 0x28c55: "\xa7\r\U00028c55", // 𨱕
+ 0x28c56: "\xa7\r\U00028c56", // 𨱖
+ 0x28c57: "\xa8\x00\U00028c57", // 𨱗
+ 0x28c58: "\xa8\x00\U00028c58", // 𨱘
+ 0x28c59: "\xa8\x02\U00028c59", // 𨱙
+ 0x28c5a: "\xa8\x04\U00028c5a", // 𨱚
+ 0x28c5b: "\xa8\x04\U00028c5b", // 𨱛
+ 0x28c5c: "\xa8\x04\U00028c5c", // 𨱜
+ 0x28c5d: "\xa8\x04\U00028c5d", // 𨱝
+ 0x28c5e: "\xa8\x04\U00028c5e", // 𨱞
+ 0x28c5f: "\xa8\x04\U00028c5f", // 𨱟
+ 0x28c60: "\xa8\x04\U00028c60", // 𨱠
+ 0x28c61: "\xa8\x04\U00028c61", // 𨱡
+ 0x28c62: "\xa8\x04\U00028c62", // 𨱢
+ 0x28c63: "\xa8\x04\U00028c63", // 𨱣
+ 0x28c64: "\xa8\x04\U00028c64", // 𨱤
+ 0x28c65: "\xa8\x04\U00028c65", // 𨱥
+ 0x28c66: "\xa8\x05\U00028c66", // 𨱦
+ 0x28c67: "\xa8\x05\U00028c67", // 𨱧
+ 0x28c68: "\xa8\x05\U00028c68", // 𨱨
+ 0x28c69: "\xa8\x05\U00028c69", // 𨱩
+ 0x28c6a: "\xa8\x05\U00028c6a", // 𨱪
+ 0x28c6b: "\xa8\x05\U00028c6b", // 𨱫
+ 0x28c6c: "\xa8\x05\U00028c6c", // 𨱬
+ 0x28c6d: "\xa8\x05\U00028c6d", // 𨱭
+ 0x28c6e: "\xa8\x05\U00028c6e", // 𨱮
+ 0x28c6f: "\xa8\x05\U00028c6f", // 𨱯
+ 0x28c70: "\xa8\x05\U00028c70", // 𨱰
+ 0x28c71: "\xa8\x05\U00028c71", // 𨱱
+ 0x28c72: "\xa8\x06\U00028c72", // 𨱲
+ 0x28c73: "\xa8\x06\U00028c73", // 𨱳
+ 0x28c74: "\xa8\x06\U00028c74", // 𨱴
+ 0x28c75: "\xa8\x06\U00028c75", // 𨱵
+ 0x28c76: "\xa8\x06\U00028c76", // 𨱶
+ 0x28c77: "\xa8\x06\U00028c77", // 𨱷
+ 0x28c78: "\xa8\x06\U00028c78", // 𨱸
+ 0x28c79: "\xa8\x06\U00028c79", // 𨱹
+ 0x28c7a: "\xa8\x06\U00028c7a", // 𨱺
+ 0x28c7b: "\xa8\x06\U00028c7b", // 𨱻
+ 0x28c7c: "\xa8\x06\U00028c7c", // 𨱼
+ 0x28c7d: "\xa8\x06\U00028c7d", // 𨱽
+ 0x28c7e: "\xa8\x06\U00028c7e", // 𨱾
+ 0x28c7f: "\xa8\x06\U00028c7f", // 𨱿
+ 0x28c80: "\xa8\a\U00028c80", // 𨲀
+ 0x28c81: "\xa8\a\U00028c81", // 𨲁
+ 0x28c82: "\xa8\a\U00028c82", // 𨲂
+ 0x28c83: "\xa8\a\U00028c83", // 𨲃
+ 0x28c84: "\xa8\a\U00028c84", // 𨲄
+ 0x28c85: "\xa8\a\U00028c85", // 𨲅
+ 0x28c86: "\xa8\a\U00028c86", // 𨲆
+ 0x28c87: "\xa8\b\U00028c87", // 𨲇
+ 0x28c88: "\xa8\b\U00028c88", // 𨲈
+ 0x28c89: "\xa8\b\U00028c89", // 𨲉
+ 0x28c8a: "\xa8\b\U00028c8a", // 𨲊
+ 0x28c8b: "\xa8\b\U00028c8b", // 𨲋
+ 0x28c8c: "\xa8\b\U00028c8c", // 𨲌
+ 0x28c8d: "\xa8\b\U00028c8d", // 𨲍
+ 0x28c8e: "\xa8\b\U00028c8e", // 𨲎
+ 0x28c8f: "\xa8\b\U00028c8f", // 𨲏
+ 0x28c90: "\xa8\b\U00028c90", // 𨲐
+ 0x28c91: "\xa8\b\U00028c91", // 𨲑
+ 0x28c92: "\xa8\b\U00028c92", // 𨲒
+ 0x28c93: "\xa8\t\U00028c93", // 𨲓
+ 0x28c94: "\xa8\t\U00028c94", // 𨲔
+ 0x28c95: "\xa8\t\U00028c95", // 𨲕
+ 0x28c96: "\xa8\n\U00028c96", // 𨲖
+ 0x28c97: "\xa8\t\U00028c97", // 𨲗
+ 0x28c98: "\xa8\t\U00028c98", // 𨲘
+ 0x28c99: "\xa8\t\U00028c99", // 𨲙
+ 0x28c9a: "\xa8\t\U00028c9a", // 𨲚
+ 0x28c9b: "\xa8\t\U00028c9b", // 𨲛
+ 0x28c9c: "\xa8\t\U00028c9c", // 𨲜
+ 0x28c9d: "\xa8\t\U00028c9d", // 𨲝
+ 0x28c9e: "\xa8\n\U00028c9e", // 𨲞
+ 0x28c9f: "\xa8\n\U00028c9f", // 𨲟
+ 0x28ca0: "\xa8\n\U00028ca0", // 𨲠
+ 0x28ca1: "\xa8\n\U00028ca1", // 𨲡
+ 0x28ca2: "\xa8\n\U00028ca2", // 𨲢
+ 0x28ca3: "\xa8\n\U00028ca3", // 𨲣
+ 0x28ca4: "\xa8\n\U00028ca4", // 𨲤
+ 0x28ca5: "\xa8\v\U00028ca5", // 𨲥
+ 0x28ca6: "\xa8\v\U00028ca6", // 𨲦
+ 0x28ca7: "\xa8\v\U00028ca7", // 𨲧
+ 0x28ca8: "\xa8\v\U00028ca8", // 𨲨
+ 0x28ca9: "\xa8\v\U00028ca9", // 𨲩
+ 0x28caa: "\xa8\v\U00028caa", // 𨲪
+ 0x28cab: "\xa8\v\U00028cab", // 𨲫
+ 0x28cac: "\xa8\v\U00028cac", // 𨲬
+ 0x28cad: "\xa8\f\U00028cad", // 𨲭
+ 0x28cae: "\xa8\f\U00028cae", // 𨲮
+ 0x28caf: "\xa8\f\U00028caf", // 𨲯
+ 0x28cb0: "\xa8\f\U00028cb0", // 𨲰
+ 0x28cb1: "\xa8\f\U00028cb1", // 𨲱
+ 0x28cb2: "\xa8\f\U00028cb2", // 𨲲
+ 0x28cb3: "\xa8\r\U00028cb3", // 𨲳
+ 0x28cb4: "\xa8\r\U00028cb4", // 𨲴
+ 0x28cb5: "\xa8\r\U00028cb5", // 𨲵
+ 0x28cb6: "\xa8\r\U00028cb6", // 𨲶
+ 0x28cb7: "\xa8\r\U00028cb7", // 𨲷
+ 0x28cb8: "\xa8\x0e\U00028cb8", // 𨲸
+ 0x28cb9: "\xa8\x0e\U00028cb9", // 𨲹
+ 0x28cba: "\xa8\x0e\U00028cba", // 𨲺
+ 0x28cbb: "\xa8\x0f\U00028cbb", // 𨲻
+ 0x28cbc: "\xa8\x0f\U00028cbc", // 𨲼
+ 0x28cbd: "\xa8\x0f\U00028cbd", // 𨲽
+ 0x28cbe: "\xa8\x0f\U00028cbe", // 𨲾
+ 0x28cbf: "\xa8\x0f\U00028cbf", // 𨲿
+ 0x28cc0: "\xa8\x10\U00028cc0", // 𨳀
+ 0x28cc1: "\xa8\x10\U00028cc1", // 𨳁
+ 0x28cc2: "\xa8\x11\U00028cc2", // 𨳂
+ 0x28cc3: "\xa8\x11\U00028cc3", // 𨳃
+ 0x28cc4: "\xa8\x13\U00028cc4", // 𨳄
+ 0x28cc5: "\xa8\x15\U00028cc5", // 𨳅
+ 0x28cc6: "\xa8\x16\U00028cc6", // 𨳆
+ 0x28cc7: "\xa9\x00\U00028cc7", // 𨳇
+ 0x28cc8: "\xa9\x00\U00028cc8", // 𨳈
+ 0x28cc9: "\xa9\x01\U00028cc9", // 𨳉
+ 0x28cca: "\xa9\x02\U00028cca", // 𨳊
+ 0x28ccb: "\xa9\x02\U00028ccb", // 𨳋
+ 0x28ccc: "\xa9\x02\U00028ccc", // 𨳌
+ 0x28ccd: "\xa9\x02\U00028ccd", // 𨳍
+ 0x28cce: "\xa9\x02\U00028cce", // 𨳎
+ 0x28ccf: "\xa9\x02\U00028ccf", // 𨳏
+ 0x28cd0: "\xa9\x03\U00028cd0", // 𨳐
+ 0x28cd1: "\xa9\x03\U00028cd1", // 𨳑
+ 0x28cd2: "\xa9\x03\U00028cd2", // 𨳒
+ 0x28cd3: "\xa9\x03\U00028cd3", // 𨳓
+ 0x28cd4: "\xa9\x03\U00028cd4", // 𨳔
+ 0x28cd5: "\xa9\x03\U00028cd5", // 𨳕
+ 0x28cd6: "\xa9\x03\U00028cd6", // 𨳖
+ 0x28cd7: "\xa9\x04\U00028cd7", // 𨳗
+ 0x28cd8: "\xa9\x04\U00028cd8", // 𨳘
+ 0x28cd9: "\xa9\x04\U00028cd9", // 𨳙
+ 0x28cda: "\xa9\x04\U00028cda", // 𨳚
+ 0x28cdb: "\xa9\x04\U00028cdb", // 𨳛
+ 0x28cdc: "\xa9\x04\U00028cdc", // 𨳜
+ 0x28cdd: "\xa9\x04\U00028cdd", // 𨳝
+ 0x28cde: "\xa9\x04\U00028cde", // 𨳞
+ 0x28cdf: "\xa9\x04\U00028cdf", // 𨳟
+ 0x28ce0: "\xa9\x04\U00028ce0", // 𨳠
+ 0x28ce1: "\xa9\x04\U00028ce1", // 𨳡
+ 0x28ce2: "\xa9\x04\U00028ce2", // 𨳢
+ 0x28ce3: "\xa9\x04\U00028ce3", // 𨳣
+ 0x28ce4: "\xa9\x04\U00028ce4", // 𨳤
+ 0x28ce5: "\xa9\x04\U00028ce5", // 𨳥
+ 0x28ce6: "\xa9\x04\U00028ce6", // 𨳦
+ 0x28ce7: "\xa9\x04\U00028ce7", // 𨳧
+ 0x28ce8: "\xa9\x04\U00028ce8", // 𨳨
+ 0x28ce9: "\xa9\x04\U00028ce9", // 𨳩
+ 0x28cea: "\xa9\x04\U00028cea", // 𨳪
+ 0x28ceb: "\xa9\x04\U00028ceb", // 𨳫
+ 0x28cec: "\xa9\x04\U00028cec", // 𨳬
+ 0x28ced: "\xa9\x04\U00028ced", // 𨳭
+ 0x28cee: "\xa9\x04\U00028cee", // 𨳮
+ 0x28cef: "\xa9\x04\U00028cef", // 𨳯
+ 0x28cf0: "\xa9\x04\U00028cf0", // 𨳰
+ 0x28cf1: "\xa9\x04\U00028cf1", // 𨳱
+ 0x28cf2: "\xa9\x04\U00028cf2", // 𨳲
+ 0x28cf3: "\xa9\x05\U00028cf3", // 𨳳
+ 0x28cf4: "\xa9\x05\U00028cf4", // 𨳴
+ 0x28cf5: "\xa9\x05\U00028cf5", // 𨳵
+ 0x28cf6: "\xa9\x05\U00028cf6", // 𨳶
+ 0x28cf7: "\xa9\x05\U00028cf7", // 𨳷
+ 0x28cf8: "\xa9\x05\U00028cf8", // 𨳸
+ 0x28cf9: "\xa9\x05\U00028cf9", // 𨳹
+ 0x28cfa: "\xa9\x05\U00028cfa", // 𨳺
+ 0x28cfb: "\xa9\x05\U00028cfb", // 𨳻
+ 0x28cfc: "\xa9\x05\U00028cfc", // 𨳼
+ 0x28cfd: "\xa9\x05\U00028cfd", // 𨳽
+ 0x28cfe: "\xa9\x05\U00028cfe", // 𨳾
+ 0x28cff: "\xa9\x05\U00028cff", // 𨳿
+ 0x28d00: "\xa9\x05\U00028d00", // 𨴀
+ 0x28d01: "\xa9\x05\U00028d01", // 𨴁
+ 0x28d02: "\xa9\x05\U00028d02", // 𨴂
+ 0x28d03: "\xa9\x05\U00028d03", // 𨴃
+ 0x28d04: "\xa9\x05\U00028d04", // 𨴄
+ 0x28d05: "\xa9\x05\U00028d05", // 𨴅
+ 0x28d06: "\xa9\x05\U00028d06", // 𨴆
+ 0x28d07: "\xa9\x05\U00028d07", // 𨴇
+ 0x28d08: "\xa9\x05\U00028d08", // 𨴈
+ 0x28d09: "\xa9\x05\U00028d09", // 𨴉
+ 0x28d0a: "\xa9\x05\U00028d0a", // 𨴊
+ 0x28d0b: "\xa9\x05\U00028d0b", // 𨴋
+ 0x28d0c: "\xa9\x05\U00028d0c", // 𨴌
+ 0x28d0d: "\xa9\x06\U00028d0d", // 𨴍
+ 0x28d0e: "\xa9\x06\U00028d0e", // 𨴎
+ 0x28d0f: "\xa9\x06\U00028d0f", // 𨴏
+ 0x28d10: "\xa9\x06\U00028d10", // 𨴐
+ 0x28d11: "\xa9\x06\U00028d11", // 𨴑
+ 0x28d12: "\xa9\x06\U00028d12", // 𨴒
+ 0x28d13: "\xa9\x06\U00028d13", // 𨴓
+ 0x28d14: "\xa9\x06\U00028d14", // 𨴔
+ 0x28d15: "\xa9\x06\U00028d15", // 𨴕
+ 0x28d16: "\xa9\x06\U00028d16", // 𨴖
+ 0x28d17: "\xa9\x06\U00028d17", // 𨴗
+ 0x28d18: "\xa9\x06\U00028d18", // 𨴘
+ 0x28d19: "\xa9\x06\U00028d19", // 𨴙
+ 0x28d1a: "\xa9\x06\U00028d1a", // 𨴚
+ 0x28d1b: "\xa9\x06\U00028d1b", // 𨴛
+ 0x28d1c: "\xa9\x06\U00028d1c", // 𨴜
+ 0x28d1d: "\xa9\x06\U00028d1d", // 𨴝
+ 0x28d1e: "\xa9\x06\U00028d1e", // 𨴞
+ 0x28d1f: "\xa9\x06\U00028d1f", // 𨴟
+ 0x28d20: "\xa9\x06\U00028d20", // 𨴠
+ 0x28d21: "\xa9\x06\U00028d21", // 𨴡
+ 0x28d22: "\xa9\x06\U00028d22", // 𨴢
+ 0x28d23: "\xa9\x06\U00028d23", // 𨴣
+ 0x28d24: "\xa9\x06\U00028d24", // 𨴤
+ 0x28d25: "\xa9\x06\U00028d25", // 𨴥
+ 0x28d26: "\xa9\x06\U00028d26", // 𨴦
+ 0x28d27: "\xa9\a\U00028d27", // 𨴧
+ 0x28d28: "\xa9\a\U00028d28", // 𨴨
+ 0x28d29: "\xa9\a\U00028d29", // 𨴩
+ 0x28d2a: "\xa9\a\U00028d2a", // 𨴪
+ 0x28d2b: "\xa9\a\U00028d2b", // 𨴫
+ 0x28d2c: "\xa9\a\U00028d2c", // 𨴬
+ 0x28d2d: "\xa9\a\U00028d2d", // 𨴭
+ 0x28d2e: "\xa9\a\U00028d2e", // 𨴮
+ 0x28d2f: "\xa9\a\U00028d2f", // 𨴯
+ 0x28d30: "\xa9\a\U00028d30", // 𨴰
+ 0x28d31: "\xa9\a\U00028d31", // 𨴱
+ 0x28d32: "\xa9\a\U00028d32", // 𨴲
+ 0x28d33: "\xa9\a\U00028d33", // 𨴳
+ 0x28d34: "\xa9\a\U00028d34", // 𨴴
+ 0x28d35: "\xa9\a\U00028d35", // 𨴵
+ 0x28d36: "\xa9\a\U00028d36", // 𨴶
+ 0x28d37: "\xa9\a\U00028d37", // 𨴷
+ 0x28d38: "\xa9\a\U00028d38", // 𨴸
+ 0x28d39: "\xa9\a\U00028d39", // 𨴹
+ 0x28d3a: "\xa9\a\U00028d3a", // 𨴺
+ 0x28d3b: "\xa9\a\U00028d3b", // 𨴻
+ 0x28d3c: "\xa9\a\U00028d3c", // 𨴼
+ 0x28d3d: "\xa9\a\U00028d3d", // 𨴽
+ 0x28d3e: "\xa9\a\U00028d3e", // 𨴾
+ 0x28d3f: "\xa9\a\U00028d3f", // 𨴿
+ 0x28d40: "\xa9\a\U00028d40", // 𨵀
+ 0x28d41: "\xa9\a\U00028d41", // 𨵁
+ 0x28d42: "\xa9\a\U00028d42", // 𨵂
+ 0x28d43: "\xa9\a\U00028d43", // 𨵃
+ 0x28d44: "\xa9\a\U00028d44", // 𨵄
+ 0x28d45: "\xa9\a\U00028d45", // 𨵅
+ 0x28d46: "\xa9\a\U00028d46", // 𨵆
+ 0x28d47: "\xa9\a\U00028d47", // 𨵇
+ 0x28d48: "\xa9\b\U00028d48", // 𨵈
+ 0x28d49: "\xa9\b\U00028d49", // 𨵉
+ 0x28d4a: "\xa9\b\U00028d4a", // 𨵊
+ 0x28d4b: "\xa9\b\U00028d4b", // 𨵋
+ 0x28d4c: "\xa9\b\U00028d4c", // 𨵌
+ 0x28d4d: "\xa9\b\U00028d4d", // 𨵍
+ 0x28d4e: "\xa9\b\U00028d4e", // 𨵎
+ 0x28d4f: "\xa9\b\U00028d4f", // 𨵏
+ 0x28d50: "\xa9\b\U00028d50", // 𨵐
+ 0x28d51: "\xa9\b\U00028d51", // 𨵑
+ 0x28d52: "\xa9\b\U00028d52", // 𨵒
+ 0x28d53: "\xa9\b\U00028d53", // 𨵓
+ 0x28d54: "\xa9\b\U00028d54", // 𨵔
+ 0x28d55: "\xa9\b\U00028d55", // 𨵕
+ 0x28d56: "\xa9\b\U00028d56", // 𨵖
+ 0x28d57: "\xa9\b\U00028d57", // 𨵗
+ 0x28d58: "\xa9\b\U00028d58", // 𨵘
+ 0x28d59: "\xa9\b\U00028d59", // 𨵙
+ 0x28d5a: "\xa9\b\U00028d5a", // 𨵚
+ 0x28d5b: "\xa9\b\U00028d5b", // 𨵛
+ 0x28d5c: "\xa9\b\U00028d5c", // 𨵜
+ 0x28d5d: "\xa9\b\U00028d5d", // 𨵝
+ 0x28d5e: "\xa9\b\U00028d5e", // 𨵞
+ 0x28d5f: "\xa9\b\U00028d5f", // 𨵟
+ 0x28d60: "\xa9\b\U00028d60", // 𨵠
+ 0x28d61: "\xa9\b\U00028d61", // 𨵡
+ 0x28d62: "\xa9\b\U00028d62", // 𨵢
+ 0x28d63: "\xa9\b\U00028d63", // 𨵣
+ 0x28d64: "\xa9\b\U00028d64", // 𨵤
+ 0x28d65: "\xa9\t\U00028d65", // 𨵥
+ 0x28d66: "\xa9\t\U00028d66", // 𨵦
+ 0x28d67: "\xa9\t\U00028d67", // 𨵧
+ 0x28d68: "\xa9\t\U00028d68", // 𨵨
+ 0x28d69: "\xa9\t\U00028d69", // 𨵩
+ 0x28d6a: "\xa9\t\U00028d6a", // 𨵪
+ 0x28d6b: "\xa9\t\U00028d6b", // 𨵫
+ 0x28d6c: "\xa9\t\U00028d6c", // 𨵬
+ 0x28d6d: "\xa9\t\U00028d6d", // 𨵭
+ 0x28d6e: "\xa9\t\U00028d6e", // 𨵮
+ 0x28d6f: "\xa9\t\U00028d6f", // 𨵯
+ 0x28d70: "\xa9\t\U00028d70", // 𨵰
+ 0x28d71: "\xa9\t\U00028d71", // 𨵱
+ 0x28d72: "\xa9\t\U00028d72", // 𨵲
+ 0x28d73: "\xa9\t\U00028d73", // 𨵳
+ 0x28d74: "\xa9\t\U00028d74", // 𨵴
+ 0x28d75: "\xa9\t\U00028d75", // 𨵵
+ 0x28d76: "\xa9\t\U00028d76", // 𨵶
+ 0x28d77: "\xa9\t\U00028d77", // 𨵷
+ 0x28d78: "\xa9\t\U00028d78", // 𨵸
+ 0x28d79: "\xa9\t\U00028d79", // 𨵹
+ 0x28d7a: "\xa9\t\U00028d7a", // 𨵺
+ 0x28d7b: "\xa9\t\U00028d7b", // 𨵻
+ 0x28d7c: "\xa9\t\U00028d7c", // 𨵼
+ 0x28d7d: "\xa9\t\U00028d7d", // 𨵽
+ 0x28d7e: "\xa9\t\U00028d7e", // 𨵾
+ 0x28d7f: "\xa9\t\U00028d7f", // 𨵿
+ 0x28d80: "\xa9\n\U00028d80", // 𨶀
+ 0x28d81: "\xa9\n\U00028d81", // 𨶁
+ 0x28d82: "\xa9\n\U00028d82", // 𨶂
+ 0x28d83: "\xa9\n\U00028d83", // 𨶃
+ 0x28d84: "\xa9\n\U00028d84", // 𨶄
+ 0x28d85: "\xa9\n\U00028d85", // 𨶅
+ 0x28d86: "\xa9\n\U00028d86", // 𨶆
+ 0x28d87: "\xa9\n\U00028d87", // 𨶇
+ 0x28d88: "\xa9\n\U00028d88", // 𨶈
+ 0x28d89: "\xa9\n\U00028d89", // 𨶉
+ 0x28d8a: "\xa9\n\U00028d8a", // 𨶊
+ 0x28d8b: "\xa9\n\U00028d8b", // 𨶋
+ 0x28d8c: "\xa9\n\U00028d8c", // 𨶌
+ 0x28d8d: "\xa9\n\U00028d8d", // 𨶍
+ 0x28d8e: "\xa9\n\U00028d8e", // 𨶎
+ 0x28d8f: "\xa9\n\U00028d8f", // 𨶏
+ 0x28d90: "\xa9\n\U00028d90", // 𨶐
+ 0x28d91: "\xa9\n\U00028d91", // 𨶑
+ 0x28d92: "\xa9\n\U00028d92", // 𨶒
+ 0x28d93: "\xa9\n\U00028d93", // 𨶓
+ 0x28d94: "\xa9\n\U00028d94", // 𨶔
+ 0x28d95: "\xa9\n\U00028d95", // 𨶕
+ 0x28d96: "\xa9\n\U00028d96", // 𨶖
+ 0x28d97: "\xa9\n\U00028d97", // 𨶗
+ 0x28d98: "\xa9\n\U00028d98", // 𨶘
+ 0x28d99: "\xa9\n\U00028d99", // 𨶙
+ 0x28d9a: "\xa9\n\U00028d9a", // 𨶚
+ 0x28d9b: "\xa9\n\U00028d9b", // 𨶛
+ 0x28d9c: "\xa9\v\U00028d9c", // 𨶜
+ 0x28d9d: "\xa9\v\U00028d9d", // 𨶝
+ 0x28d9e: "\xa9\v\U00028d9e", // 𨶞
+ 0x28d9f: "\xa9\v\U00028d9f", // 𨶟
+ 0x28da0: "\xa9\v\U00028da0", // 𨶠
+ 0x28da1: "\xa9\v\U00028da1", // 𨶡
+ 0x28da2: "\xa9\v\U00028da2", // 𨶢
+ 0x28da3: "\xa9\v\U00028da3", // 𨶣
+ 0x28da4: "\xa9\v\U00028da4", // 𨶤
+ 0x28da5: "\xa9\v\U00028da5", // 𨶥
+ 0x28da6: "\xa9\v\U00028da6", // 𨶦
+ 0x28da7: "\xa9\v\U00028da7", // 𨶧
+ 0x28da8: "\xa9\v\U00028da8", // 𨶨
+ 0x28da9: "\xa9\v\U00028da9", // 𨶩
+ 0x28daa: "\xa9\v\U00028daa", // 𨶪
+ 0x28dab: "\xa9\v\U00028dab", // 𨶫
+ 0x28dac: "\xa9\f\U00028dac", // 𨶬
+ 0x28dad: "\xa9\f\U00028dad", // 𨶭
+ 0x28dae: "\xa9\f\U00028dae", // 𨶮
+ 0x28daf: "\xa9\f\U00028daf", // 𨶯
+ 0x28db0: "\xa9\f\U00028db0", // 𨶰
+ 0x28db1: "\xa9\f\U00028db1", // 𨶱
+ 0x28db2: "\xa9\f\U00028db2", // 𨶲
+ 0x28db3: "\xa9\f\U00028db3", // 𨶳
+ 0x28db4: "\xa9\f\U00028db4", // 𨶴
+ 0x28db5: "\xa9\f\U00028db5", // 𨶵
+ 0x28db6: "\xa9\f\U00028db6", // 𨶶
+ 0x28db7: "\xa9\f\U00028db7", // 𨶷
+ 0x28db8: "\xa9\f\U00028db8", // 𨶸
+ 0x28db9: "\xa9\f\U00028db9", // 𨶹
+ 0x28dba: "\xa9\f\U00028dba", // 𨶺
+ 0x28dbb: "\xa9\f\U00028dbb", // 𨶻
+ 0x28dbc: "\xa9\f\U00028dbc", // 𨶼
+ 0x28dbd: "\xa9\f\U00028dbd", // 𨶽
+ 0x28dbe: "\xa9\f\U00028dbe", // 𨶾
+ 0x28dbf: "\xa9\f\U00028dbf", // 𨶿
+ 0x28dc0: "\xa9\f\U00028dc0", // 𨷀
+ 0x28dc1: "\xa9\f\U00028dc1", // 𨷁
+ 0x28dc2: "\xa9\f\U00028dc2", // 𨷂
+ 0x28dc3: "\xa9\r\U00028dc3", // 𨷃
+ 0x28dc4: "\xa9\r\U00028dc4", // 𨷄
+ 0x28dc5: "\xa9\r\U00028dc5", // 𨷅
+ 0x28dc6: "\xa9\r\U00028dc6", // 𨷆
+ 0x28dc7: "\xa9\r\U00028dc7", // 𨷇
+ 0x28dc8: "\xa9\r\U00028dc8", // 𨷈
+ 0x28dc9: "\xa9\r\U00028dc9", // 𨷉
+ 0x28dca: "\xa9\r\U00028dca", // 𨷊
+ 0x28dcb: "\xa9\r\U00028dcb", // 𨷋
+ 0x28dcc: "\xa9\r\U00028dcc", // 𨷌
+ 0x28dcd: "\xa9\r\U00028dcd", // 𨷍
+ 0x28dce: "\xa9\r\U00028dce", // 𨷎
+ 0x28dcf: "\xa9\r\U00028dcf", // 𨷏
+ 0x28dd0: "\xa9\r\U00028dd0", // 𨷐
+ 0x28dd1: "\xa9\r\U00028dd1", // 𨷑
+ 0x28dd2: "\xa9\r\U00028dd2", // 𨷒
+ 0x28dd3: "\xa9\r\U00028dd3", // 𨷓
+ 0x28dd4: "\xa9\x0e\U00028dd4", // 𨷔
+ 0x28dd5: "\xa9\r\U00028dd5", // 𨷕
+ 0x28dd6: "\xa9\r\U00028dd6", // 𨷖
+ 0x28dd7: "\xa9\r\U00028dd7", // 𨷗
+ 0x28dd8: "\xa9\x0e\U00028dd8", // 𨷘
+ 0x28dd9: "\xa9\x0e\U00028dd9", // 𨷙
+ 0x28dda: "\xa9\x0e\U00028dda", // 𨷚
+ 0x28ddb: "\xa9\x0e\U00028ddb", // 𨷛
+ 0x28ddc: "\xa9\x0e\U00028ddc", // 𨷜
+ 0x28ddd: "\xa9\x0e\U00028ddd", // 𨷝
+ 0x28dde: "\xa9\x0e\U00028dde", // 𨷞
+ 0x28ddf: "\xa9\x0f\U00028ddf", // 𨷟
+ 0x28de0: "\xa9\x0f\U00028de0", // 𨷠
+ 0x28de1: "\xa9\x0f\U00028de1", // 𨷡
+ 0x28de2: "\xa9\x0f\U00028de2", // 𨷢
+ 0x28de3: "\xa9\x0f\U00028de3", // 𨷣
+ 0x28de4: "\xa9\x0f\U00028de4", // 𨷤
+ 0x28de5: "\xa9\x0f\U00028de5", // 𨷥
+ 0x28de6: "\xa9\x10\U00028de6", // 𨷦
+ 0x28de7: "\xa9\x10\U00028de7", // 𨷧
+ 0x28de8: "\xa9\x10\U00028de8", // 𨷨
+ 0x28de9: "\xa9\x10\U00028de9", // 𨷩
+ 0x28dea: "\xa9\x10\U00028dea", // 𨷪
+ 0x28deb: "\xa9\x10\U00028deb", // 𨷫
+ 0x28dec: "\xa9\x10\U00028dec", // 𨷬
+ 0x28ded: "\xa9\x10\U00028ded", // 𨷭
+ 0x28dee: "\xa9\x10\U00028dee", // 𨷮
+ 0x28def: "\xa9\x11\U00028def", // 𨷯
+ 0x28df0: "\xa9\x11\U00028df0", // 𨷰
+ 0x28df1: "\xa9\x11\U00028df1", // 𨷱
+ 0x28df2: "\xa9\x11\U00028df2", // 𨷲
+ 0x28df3: "\xa9\x11\U00028df3", // 𨷳
+ 0x28df4: "\xa9\x11\U00028df4", // 𨷴
+ 0x28df5: "\xa9\x11\U00028df5", // 𨷵
+ 0x28df6: "\xa9\x10\U00028df6", // 𨷶
+ 0x28df7: "\xa9\x12\U00028df7", // 𨷷
+ 0x28df8: "\xa9\x11\U00028df8", // 𨷸
+ 0x28df9: "\xa9\x12\U00028df9", // 𨷹
+ 0x28dfa: "\xa9\x12\U00028dfa", // 𨷺
+ 0x28dfb: "\xa9\x13\U00028dfb", // 𨷻
+ 0x28dfc: "\xa9\x15\U00028dfc", // 𨷼
+ 0x28dfd: "\xa9\x18\U00028dfd", // 𨷽
+ 0x28dfe: "\xa9\x18\U00028dfe", // 𨷾
+ 0x28dff: "\xa9\x03\U00028dff", // 𨷿
+ 0x28e00: "\xa9\x03\U00028e00", // 𨸀
+ 0x28e01: "\xa9\x03\U00028e01", // 𨸁
+ 0x28e02: "\xa9\x04\U00028e02", // 𨸂
+ 0x28e03: "\xa9\x04\U00028e03", // 𨸃
+ 0x28e04: "\xa9\x06\U00028e04", // 𨸄
+ 0x28e05: "\xa9\x06\U00028e05", // 𨸅
+ 0x28e06: "\xa9\t\U00028e06", // 𨸆
+ 0x28e07: "\xa9\t\U00028e07", // 𨸇
+ 0x28e08: "\xa9\t\U00028e08", // 𨸈
+ 0x28e09: "\xa9\n\U00028e09", // 𨸉
+ 0x28e0a: "\xa9\n\U00028e0a", // 𨸊
+ 0x28e0b: "\xa9\f\U00028e0b", // 𨸋
+ 0x28e0c: "\xa9\f\U00028e0c", // 𨸌
+ 0x28e0d: "\xa9\x0e\U00028e0d", // 𨸍
+ 0x28e0e: "\xa9\x11\U00028e0e", // 𨸎
+ 0x28e0f: "\xaa\x00\U00028e0f", // 𨸏
+ 0x28e10: "\xaa\x02\U00028e10", // 𨸐
+ 0x28e11: "\xaa\x02\U00028e11", // 𨸑
+ 0x28e12: "\xaa\x02\U00028e12", // 𨸒
+ 0x28e13: "\xaa\x02\U00028e13", // 𨸓
+ 0x28e14: "\xaa\x02\U00028e14", // 𨸔
+ 0x28e15: "\xaa\x02\U00028e15", // 𨸕
+ 0x28e16: "\xaa\x03\U00028e16", // 𨸖
+ 0x28e17: "\xaa\x03\U00028e17", // 𨸗
+ 0x28e18: "\xaa\x03\U00028e18", // 𨸘
+ 0x28e19: "\xaa\x03\U00028e19", // 𨸙
+ 0x28e1a: "\xaa\x04\U00028e1a", // 𨸚
+ 0x28e1b: "\xaa\x04\U00028e1b", // 𨸛
+ 0x28e1c: "\xaa\x04\U00028e1c", // 𨸜
+ 0x28e1d: "\xaa\x04\U00028e1d", // 𨸝
+ 0x28e1e: "\xaa\x04\U00028e1e", // 𨸞
+ 0x28e1f: "\xaa\x04\U00028e1f", // 𨸟
+ 0x28e20: "\xaa\x04\U00028e20", // 𨸠
+ 0x28e21: "\xaa\x04\U00028e21", // 𨸡
+ 0x28e22: "\xaa\x04\U00028e22", // 𨸢
+ 0x28e23: "\xaa\x04\U00028e23", // 𨸣
+ 0x28e24: "\xaa\x04\U00028e24", // 𨸤
+ 0x28e25: "\xaa\x04\U00028e25", // 𨸥
+ 0x28e26: "\xaa\x04\U00028e26", // 𨸦
+ 0x28e27: "\xaa\x04\U00028e27", // 𨸧
+ 0x28e28: "\xaa\x04\U00028e28", // 𨸨
+ 0x28e29: "\xaa\x04\U00028e29", // 𨸩
+ 0x28e2a: "\xaa\x05\U00028e2a", // 𨸪
+ 0x28e2b: "\xaa\x05\U00028e2b", // 𨸫
+ 0x28e2c: "\xaa\x05\U00028e2c", // 𨸬
+ 0x28e2d: "\xaa\x05\U00028e2d", // 𨸭
+ 0x28e2e: "\xaa\x05\U00028e2e", // 𨸮
+ 0x28e2f: "\xaa\x05\U00028e2f", // 𨸯
+ 0x28e30: "\xaa\x05\U00028e30", // 𨸰
+ 0x28e31: "\xaa\x05\U00028e31", // 𨸱
+ 0x28e32: "\xaa\x05\U00028e32", // 𨸲
+ 0x28e33: "\xaa\x05\U00028e33", // 𨸳
+ 0x28e34: "\xaa\x05\U00028e34", // 𨸴
+ 0x28e35: "\xaa\x05\U00028e35", // 𨸵
+ 0x28e36: "\xaa\x05\U00028e36", // 𨸶
+ 0x28e37: "\xaa\x05\U00028e37", // 𨸷
+ 0x28e38: "\xaa\x05\U00028e38", // 𨸸
+ 0x28e39: "\xaa\x05\U00028e39", // 𨸹
+ 0x28e3a: "\xaa\x05\U00028e3a", // 𨸺
+ 0x28e3b: "\xaa\x05\U00028e3b", // 𨸻
+ 0x28e3c: "\xaa\x05\U00028e3c", // 𨸼
+ 0x28e3d: "\xaa\x05\U00028e3d", // 𨸽
+ 0x28e3e: "\xaa\x05\U00028e3e", // 𨸾
+ 0x28e3f: "\xaa\x05\U00028e3f", // 𨸿
+ 0x28e40: "\xaa\x05\U00028e40", // 𨹀
+ 0x28e41: "\xaa\x06\U00028e41", // 𨹁
+ 0x28e42: "\xaa\x06\U00028e42", // 𨹂
+ 0x28e43: "\xaa\x06\U00028e43", // 𨹃
+ 0x28e44: "\xaa\x06\U00028e44", // 𨹄
+ 0x28e45: "\xaa\x06\U00028e45", // 𨹅
+ 0x28e46: "\xaa\x06\U00028e46", // 𨹆
+ 0x28e47: "\xaa\x06\U00028e47", // 𨹇
+ 0x28e48: "\xaa\x06\U00028e48", // 𨹈
+ 0x28e49: "\xaa\x06\U00028e49", // 𨹉
+ 0x28e4a: "\xaa\x06\U00028e4a", // 𨹊
+ 0x28e4b: "\xaa\x06\U00028e4b", // 𨹋
+ 0x28e4c: "\xaa\x06\U00028e4c", // 𨹌
+ 0x28e4d: "\xaa\x06\U00028e4d", // 𨹍
+ 0x28e4e: "\xaa\x06\U00028e4e", // 𨹎
+ 0x28e4f: "\xaa\x06\U00028e4f", // 𨹏
+ 0x28e50: "\xaa\x06\U00028e50", // 𨹐
+ 0x28e51: "\xaa\x06\U00028e51", // 𨹑
+ 0x28e52: "\xaa\x06\U00028e52", // 𨹒
+ 0x28e53: "\xaa\x06\U00028e53", // 𨹓
+ 0x28e54: "\xaa\x06\U00028e54", // 𨹔
+ 0x28e55: "\xaa\x06\U00028e55", // 𨹕
+ 0x28e56: "\xaa\x06\U00028e56", // 𨹖
+ 0x28e57: "\xaa\x06\U00028e57", // 𨹗
+ 0x28e58: "\xaa\a\U00028e58", // 𨹘
+ 0x28e59: "\xaa\a\U00028e59", // 𨹙
+ 0x28e5a: "\xaa\a\U00028e5a", // 𨹚
+ 0x28e5b: "\xaa\a\U00028e5b", // 𨹛
+ 0x28e5c: "\xaa\a\U00028e5c", // 𨹜
+ 0x28e5d: "\xaa\a\U00028e5d", // 𨹝
+ 0x28e5e: "\xaa\a\U00028e5e", // 𨹞
+ 0x28e5f: "\xaa\a\U00028e5f", // 𨹟
+ 0x28e60: "\xaa\a\U00028e60", // 𨹠
+ 0x28e61: "\xaa\a\U00028e61", // 𨹡
+ 0x28e62: "\xaa\a\U00028e62", // 𨹢
+ 0x28e63: "\xaa\a\U00028e63", // 𨹣
+ 0x28e64: "\xaa\a\U00028e64", // 𨹤
+ 0x28e65: "\xaa\a\U00028e65", // 𨹥
+ 0x28e66: "\xaa\a\U00028e66", // 𨹦
+ 0x28e67: "\xaa\a\U00028e67", // 𨹧
+ 0x28e68: "\xaa\a\U00028e68", // 𨹨
+ 0x28e69: "\xaa\a\U00028e69", // 𨹩
+ 0x28e6a: "\xaa\a\U00028e6a", // 𨹪
+ 0x28e6b: "\xaa\a\U00028e6b", // 𨹫
+ 0x28e6c: "\xaa\a\U00028e6c", // 𨹬
+ 0x28e6d: "\xaa\a\U00028e6d", // 𨹭
+ 0x28e6e: "\xaa\a\U00028e6e", // 𨹮
+ 0x28e6f: "\xaa\a\U00028e6f", // 𨹯
+ 0x28e70: "\xaa\a\U00028e70", // 𨹰
+ 0x28e71: "\xaa\a\U00028e71", // 𨹱
+ 0x28e72: "\xaa\a\U00028e72", // 𨹲
+ 0x28e73: "\xaa\a\U00028e73", // 𨹳
+ 0x28e74: "'\a\U00028e74", // 𨹴
+ 0x28e75: "\xaa\b\U00028e75", // 𨹵
+ 0x28e76: "\xaa\b\U00028e76", // 𨹶
+ 0x28e77: "\xaa\b\U00028e77", // 𨹷
+ 0x28e78: "\xaa\b\U00028e78", // 𨹸
+ 0x28e79: "\xaa\b\U00028e79", // 𨹹
+ 0x28e7a: "\xaa\b\U00028e7a", // 𨹺
+ 0x28e7b: "\xaa\b\U00028e7b", // 𨹻
+ 0x28e7c: "\xaa\b\U00028e7c", // 𨹼
+ 0x28e7d: "\xaa\b\U00028e7d", // 𨹽
+ 0x28e7e: "\xaa\b\U00028e7e", // 𨹾
+ 0x28e7f: "\xaa\b\U00028e7f", // 𨹿
+ 0x28e80: "\xaa\b\U00028e80", // 𨺀
+ 0x28e81: "\xaa\b\U00028e81", // 𨺁
+ 0x28e82: "\xaa\b\U00028e82", // 𨺂
+ 0x28e83: "\xaa\b\U00028e83", // 𨺃
+ 0x28e84: "\xaa\b\U00028e84", // 𨺄
+ 0x28e85: "\xaa\b\U00028e85", // 𨺅
+ 0x28e86: "\xaa\b\U00028e86", // 𨺆
+ 0x28e87: "\xaa\b\U00028e87", // 𨺇
+ 0x28e88: "\xaa\b\U00028e88", // 𨺈
+ 0x28e89: "\xaa\b\U00028e89", // 𨺉
+ 0x28e8a: "\xaa\b\U00028e8a", // 𨺊
+ 0x28e8b: "\xaa\b\U00028e8b", // 𨺋
+ 0x28e8c: "\xaa\b\U00028e8c", // 𨺌
+ 0x28e8d: "\xaa\b\U00028e8d", // 𨺍
+ 0x28e8e: "\xaa\b\U00028e8e", // 𨺎
+ 0x28e8f: "\xaa\b\U00028e8f", // 𨺏
+ 0x28e90: "\xaa\b\U00028e90", // 𨺐
+ 0x28e91: "\xaa\b\U00028e91", // 𨺑
+ 0x28e92: "\xaa\b\U00028e92", // 𨺒
+ 0x28e93: "\xaa\b\U00028e93", // 𨺓
+ 0x28e94: "\xaa\b\U00028e94", // 𨺔
+ 0x28e95: "\xaa\b\U00028e95", // 𨺕
+ 0x28e96: "\xaa\b\U00028e96", // 𨺖
+ 0x28e97: "\xaa\b\U00028e97", // 𨺗
+ 0x28e98: "\xaa\b\U00028e98", // 𨺘
+ 0x28e99: "\xaa\b\U00028e99", // 𨺙
+ 0x28e9a: "\xaa\b\U00028e9a", // 𨺚
+ 0x28e9b: "\xaa\b\U00028e9b", // 𨺛
+ 0x28e9c: "\xaa\b\U00028e9c", // 𨺜
+ 0x28e9d: "\xaa\b\U00028e9d", // 𨺝
+ 0x28e9e: "\xaa\t\U00028e9e", // 𨺞
+ 0x28e9f: "\xaa\t\U00028e9f", // 𨺟
+ 0x28ea0: "\xaa\t\U00028ea0", // 𨺠
+ 0x28ea1: "\xaa\t\U00028ea1", // 𨺡
+ 0x28ea2: "\xaa\t\U00028ea2", // 𨺢
+ 0x28ea3: "\xaa\t\U00028ea3", // 𨺣
+ 0x28ea4: "\xaa\t\U00028ea4", // 𨺤
+ 0x28ea5: "\xaa\t\U00028ea5", // 𨺥
+ 0x28ea6: "\xaa\t\U00028ea6", // 𨺦
+ 0x28ea7: "\xaa\t\U00028ea7", // 𨺧
+ 0x28ea8: "\xaa\t\U00028ea8", // 𨺨
+ 0x28ea9: "\xaa\t\U00028ea9", // 𨺩
+ 0x28eaa: "\xaa\t\U00028eaa", // 𨺪
+ 0x28eab: "\xaa\t\U00028eab", // 𨺫
+ 0x28eac: "\xaa\t\U00028eac", // 𨺬
+ 0x28ead: "\xaa\t\U00028ead", // 𨺭
+ 0x28eae: "\xaa\t\U00028eae", // 𨺮
+ 0x28eaf: "\xaa\t\U00028eaf", // 𨺯
+ 0x28eb0: "\xaa\t\U00028eb0", // 𨺰
+ 0x28eb1: "\xaa\t\U00028eb1", // 𨺱
+ 0x28eb2: "\xaa\t\U00028eb2", // 𨺲
+ 0x28eb3: "\xaa\t\U00028eb3", // 𨺳
+ 0x28eb4: "\xaa\t\U00028eb4", // 𨺴
+ 0x28eb5: "\xaa\t\U00028eb5", // 𨺵
+ 0x28eb6: "\xaa\t\U00028eb6", // 𨺶
+ 0x28eb7: "\xaa\t\U00028eb7", // 𨺷
+ 0x28eb8: "\xaa\t\U00028eb8", // 𨺸
+ 0x28eb9: "\xaa\t\U00028eb9", // 𨺹
+ 0x28eba: "\xaa\t\U00028eba", // 𨺺
+ 0x28ebb: "\xaa\t\U00028ebb", // 𨺻
+ 0x28ebc: "\xaa\t\U00028ebc", // 𨺼
+ 0x28ebd: "\xaa\t\U00028ebd", // 𨺽
+ 0x28ebe: "\xaa\t\U00028ebe", // 𨺾
+ 0x28ebf: "\xaa\t\U00028ebf", // 𨺿
+ 0x28ec0: "\xaa\n\U00028ec0", // 𨻀
+ 0x28ec1: "\xaa\n\U00028ec1", // 𨻁
+ 0x28ec2: "\xaa\n\U00028ec2", // 𨻂
+ 0x28ec3: "\xaa\n\U00028ec3", // 𨻃
+ 0x28ec4: "\xaa\n\U00028ec4", // 𨻄
+ 0x28ec5: "\xaa\n\U00028ec5", // 𨻅
+ 0x28ec6: "\xaa\n\U00028ec6", // 𨻆
+ 0x28ec7: "\xaa\n\U00028ec7", // 𨻇
+ 0x28ec8: "\xaa\n\U00028ec8", // 𨻈
+ 0x28ec9: "\xaa\n\U00028ec9", // 𨻉
+ 0x28eca: "\xaa\n\U00028eca", // 𨻊
+ 0x28ecb: "\xaa\n\U00028ecb", // 𨻋
+ 0x28ecc: "\xaa\n\U00028ecc", // 𨻌
+ 0x28ecd: "\xaa\n\U00028ecd", // 𨻍
+ 0x28ece: "\xaa\n\U00028ece", // 𨻎
+ 0x28ecf: "\xaa\n\U00028ecf", // 𨻏
+ 0x28ed0: "\xaa\n\U00028ed0", // 𨻐
+ 0x28ed1: "\xaa\n\U00028ed1", // 𨻑
+ 0x28ed2: "\xaa\n\U00028ed2", // 𨻒
+ 0x28ed3: "\xaa\n\U00028ed3", // 𨻓
+ 0x28ed4: "\xaa\n\U00028ed4", // 𨻔
+ 0x28ed5: "\xaa\n\U00028ed5", // 𨻕
+ 0x28ed6: "\xaa\n\U00028ed6", // 𨻖
+ 0x28ed7: "\xaa\n\U00028ed7", // 𨻗
+ 0x28ed8: "\xaa\n\U00028ed8", // 𨻘
+ 0x28ed9: "\xaa\n\U00028ed9", // 𨻙
+ 0x28eda: "\xaa\n\U00028eda", // 𨻚
+ 0x28edb: "\xaa\n\U00028edb", // 𨻛
+ 0x28edc: "\xaa\n\U00028edc", // 𨻜
+ 0x28edd: "\xaa\n\U00028edd", // 𨻝
+ 0x28ede: "\xaa\n\U00028ede", // 𨻞
+ 0x28edf: "\xaa\n\U00028edf", // 𨻟
+ 0x28ee0: "\xaa\n\U00028ee0", // 𨻠
+ 0x28ee1: "\xaa\n\U00028ee1", // 𨻡
+ 0x28ee2: "\xaa\n\U00028ee2", // 𨻢
+ 0x28ee3: "\xaa\n\U00028ee3", // 𨻣
+ 0x28ee4: "\xaa\n\U00028ee4", // 𨻤
+ 0x28ee5: "\xaa\n\U00028ee5", // 𨻥
+ 0x28ee6: "\xaa\n\U00028ee6", // 𨻦
+ 0x28ee7: "\xaa\n\U00028ee7", // 𨻧
+ 0x28ee8: "\xaa\n\U00028ee8", // 𨻨
+ 0x28ee9: "\xaa\n\U00028ee9", // 𨻩
+ 0x28eea: "\xaa\n\U00028eea", // 𨻪
+ 0x28eeb: "\xaa\n\U00028eeb", // 𨻫
+ 0x28eec: "\xaa\n\U00028eec", // 𨻬
+ 0x28eed: "\xaa\n\U00028eed", // 𨻭
+ 0x28eee: "\xaa\v\U00028eee", // 𨻮
+ 0x28eef: "\xaa\v\U00028eef", // 𨻯
+ 0x28ef0: "\xaa\v\U00028ef0", // 𨻰
+ 0x28ef1: "\xaa\v\U00028ef1", // 𨻱
+ 0x28ef2: "\xaa\v\U00028ef2", // 𨻲
+ 0x28ef3: "\xaa\v\U00028ef3", // 𨻳
+ 0x28ef4: "\xaa\v\U00028ef4", // 𨻴
+ 0x28ef5: "\xaa\v\U00028ef5", // 𨻵
+ 0x28ef6: "\xaa\v\U00028ef6", // 𨻶
+ 0x28ef7: "\xaa\v\U00028ef7", // 𨻷
+ 0x28ef8: "\xaa\v\U00028ef8", // 𨻸
+ 0x28ef9: "\xaa\v\U00028ef9", // 𨻹
+ 0x28efa: "\xaa\v\U00028efa", // 𨻺
+ 0x28efb: "\xaa\v\U00028efb", // 𨻻
+ 0x28efc: "\xaa\v\U00028efc", // 𨻼
+ 0x28efd: "\xaa\v\U00028efd", // 𨻽
+ 0x28efe: "\xaa\v\U00028efe", // 𨻾
+ 0x28eff: "\xaa\v\U00028eff", // 𨻿
+ 0x28f00: "\xaa\v\U00028f00", // 𨼀
+ 0x28f01: "\xaa\v\U00028f01", // 𨼁
+ 0x28f02: "\xaa\v\U00028f02", // 𨼂
+ 0x28f03: "\xaa\v\U00028f03", // 𨼃
+ 0x28f04: "\xaa\v\U00028f04", // 𨼄
+ 0x28f05: "\xaa\v\U00028f05", // 𨼅
+ 0x28f06: "\xaa\v\U00028f06", // 𨼆
+ 0x28f07: "\xaa\v\U00028f07", // 𨼇
+ 0x28f08: "\xaa\v\U00028f08", // 𨼈
+ 0x28f09: "\xaa\v\U00028f09", // 𨼉
+ 0x28f0a: "\xaa\f\U00028f0a", // 𨼊
+ 0x28f0b: "\xaa\f\U00028f0b", // 𨼋
+ 0x28f0c: "\xaa\f\U00028f0c", // 𨼌
+ 0x28f0d: "\xaa\f\U00028f0d", // 𨼍
+ 0x28f0e: "\xaa\f\U00028f0e", // 𨼎
+ 0x28f0f: "\xaa\f\U00028f0f", // 𨼏
+ 0x28f10: "\xaa\f\U00028f10", // 𨼐
+ 0x28f11: "\xaa\f\U00028f11", // 𨼑
+ 0x28f12: "\xaa\f\U00028f12", // 𨼒
+ 0x28f13: "\xaa\f\U00028f13", // 𨼓
+ 0x28f14: "\xaa\f\U00028f14", // 𨼔
+ 0x28f15: "\xaa\f\U00028f15", // 𨼕
+ 0x28f16: "\xaa\f\U00028f16", // 𨼖
+ 0x28f17: "\xaa\f\U00028f17", // 𨼗
+ 0x28f18: "\xaa\f\U00028f18", // 𨼘
+ 0x28f19: "\xaa\f\U00028f19", // 𨼙
+ 0x28f1a: "\xaa\f\U00028f1a", // 𨼚
+ 0x28f1b: "\xaa\f\U00028f1b", // 𨼛
+ 0x28f1c: "\xaa\f\U00028f1c", // 𨼜
+ 0x28f1d: "\xaa\f\U00028f1d", // 𨼝
+ 0x28f1e: "\xaa\f\U00028f1e", // 𨼞
+ 0x28f1f: "\xaa\f\U00028f1f", // 𨼟
+ 0x28f20: "\xaa\f\U00028f20", // 𨼠
+ 0x28f21: "\xaa\f\U00028f21", // 𨼡
+ 0x28f22: "\xaa\f\U00028f22", // 𨼢
+ 0x28f23: "\xaa\f\U00028f23", // 𨼣
+ 0x28f24: "\xaa\f\U00028f24", // 𨼤
+ 0x28f25: "\xaa\f\U00028f25", // 𨼥
+ 0x28f26: "\xaa\f\U00028f26", // 𨼦
+ 0x28f27: "\xaa\f\U00028f27", // 𨼧
+ 0x28f28: "\xaa\f\U00028f28", // 𨼨
+ 0x28f29: "\xaa\f\U00028f29", // 𨼩
+ 0x28f2a: "\xaa\r\U00028f2a", // 𨼪
+ 0x28f2b: "\xaa\r\U00028f2b", // 𨼫
+ 0x28f2c: "\xaa\r\U00028f2c", // 𨼬
+ 0x28f2d: "\xaa\r\U00028f2d", // 𨼭
+ 0x28f2e: "\xaa\r\U00028f2e", // 𨼮
+ 0x28f2f: "\xaa\r\U00028f2f", // 𨼯
+ 0x28f30: "\xaa\r\U00028f30", // 𨼰
+ 0x28f31: "\xaa\r\U00028f31", // 𨼱
+ 0x28f32: "\xaa\r\U00028f32", // 𨼲
+ 0x28f33: "\xaa\r\U00028f33", // 𨼳
+ 0x28f34: "\xaa\r\U00028f34", // 𨼴
+ 0x28f35: "\xaa\r\U00028f35", // 𨼵
+ 0x28f36: "\xaa\r\U00028f36", // 𨼶
+ 0x28f37: "\xaa\r\U00028f37", // 𨼷
+ 0x28f38: "\xaa\r\U00028f38", // 𨼸
+ 0x28f39: "\xaa\r\U00028f39", // 𨼹
+ 0x28f3a: "\xaa\r\U00028f3a", // 𨼺
+ 0x28f3b: "\xaa\r\U00028f3b", // 𨼻
+ 0x28f3c: "\xaa\r\U00028f3c", // 𨼼
+ 0x28f3d: "\xaa\r\U00028f3d", // 𨼽
+ 0x28f3e: "\xaa\r\U00028f3e", // 𨼾
+ 0x28f3f: "\xaa\x0e\U00028f3f", // 𨼿
+ 0x28f40: "\xaa\x0e\U00028f40", // 𨽀
+ 0x28f41: "\xaa\x0e\U00028f41", // 𨽁
+ 0x28f42: "\xaa\x0e\U00028f42", // 𨽂
+ 0x28f43: "\xaa\x0e\U00028f43", // 𨽃
+ 0x28f44: "\xaa\x0e\U00028f44", // 𨽄
+ 0x28f45: "\xaa\x0e\U00028f45", // 𨽅
+ 0x28f46: "\xaa\x0e\U00028f46", // 𨽆
+ 0x28f47: "\xaa\x0e\U00028f47", // 𨽇
+ 0x28f48: "\xaa\x0e\U00028f48", // 𨽈
+ 0x28f49: "\xaa\x0e\U00028f49", // 𨽉
+ 0x28f4a: "\xaa\x0e\U00028f4a", // 𨽊
+ 0x28f4b: "\xaa\x0e\U00028f4b", // 𨽋
+ 0x28f4c: "\xaa\x0e\U00028f4c", // 𨽌
+ 0x28f4d: "\xaa\x0f\U00028f4d", // 𨽍
+ 0x28f4e: "\xaa\x0f\U00028f4e", // 𨽎
+ 0x28f4f: "\xaa\x0f\U00028f4f", // 𨽏
+ 0x28f50: "\xaa\x0f\U00028f50", // 𨽐
+ 0x28f51: "\xaa\x0f\U00028f51", // 𨽑
+ 0x28f52: "\xaa\x0f\U00028f52", // 𨽒
+ 0x28f53: "\xaa\x0f\U00028f53", // 𨽓
+ 0x28f54: "\xaa\x0f\U00028f54", // 𨽔
+ 0x28f55: "\xaa\x0f\U00028f55", // 𨽕
+ 0x28f56: "\xaa\x10\U00028f56", // 𨽖
+ 0x28f57: "\xaa\x10\U00028f57", // 𨽗
+ 0x28f58: "\xaa\x10\U00028f58", // 𨽘
+ 0x28f59: "\xaa\x10\U00028f59", // 𨽙
+ 0x28f5a: "\xaa\x10\U00028f5a", // 𨽚
+ 0x28f5b: "\xaa\x10\U00028f5b", // 𨽛
+ 0x28f5c: "\xaa\x10\U00028f5c", // 𨽜
+ 0x28f5d: "\xaa\x10\U00028f5d", // 𨽝
+ 0x28f5e: "\xaa\x10\U00028f5e", // 𨽞
+ 0x28f5f: "\xaa\x10\U00028f5f", // 𨽟
+ 0x28f60: "\xaa\x10\U00028f60", // 𨽠
+ 0x28f61: "\xaa\x10\U00028f61", // 𨽡
+ 0x28f62: "\xaa\x11\U00028f62", // 𨽢
+ 0x28f63: "\xaa\x11\U00028f63", // 𨽣
+ 0x28f64: "\xaa\x11\U00028f64", // 𨽤
+ 0x28f65: "\xaa\x11\U00028f65", // 𨽥
+ 0x28f66: "\xaa\x12\U00028f66", // 𨽦
+ 0x28f67: "\xaa\x12\U00028f67", // 𨽧
+ 0x28f68: "\xaa\x12\U00028f68", // 𨽨
+ 0x28f69: "\xaa\x12\U00028f69", // 𨽩
+ 0x28f6a: "\xaa\x12\U00028f6a", // 𨽪
+ 0x28f6b: "\xaa\x12\U00028f6b", // 𨽫
+ 0x28f6c: "\xaa\x13\U00028f6c", // 𨽬
+ 0x28f6d: "\xaa\x13\U00028f6d", // 𨽭
+ 0x28f6e: "\xaa\x14\U00028f6e", // 𨽮
+ 0x28f6f: "\xaa\x14\U00028f6f", // 𨽯
+ 0x28f70: "\xaa\x15\U00028f70", // 𨽰
+ 0x28f71: "\xaa\x15\U00028f71", // 𨽱
+ 0x28f72: "\xaa\x18\U00028f72", // 𨽲
+ 0x28f73: "\xaa\x18\U00028f73", // 𨽳
+ 0x28f74: "\xaa\x19\U00028f74", // 𨽴
+ 0x28f75: "\xaa\x19\U00028f75", // 𨽵
+ 0x28f76: "\xab\x05\U00028f76", // 𨽶
+ 0x28f77: "\xab\x06\U00028f77", // 𨽷
+ 0x28f78: "\xab\a\U00028f78", // 𨽸
+ 0x28f79: "\xab\a\U00028f79", // 𨽹
+ 0x28f7a: "\xab\a\U00028f7a", // 𨽺
+ 0x28f7b: "\xab\a\U00028f7b", // 𨽻
+ 0x28f7c: "\xab\b\U00028f7c", // 𨽼
+ 0x28f7d: "\xab\b\U00028f7d", // 𨽽
+ 0x28f7e: "\xab\b\U00028f7e", // 𨽾
+ 0x28f7f: "\xab\t\U00028f7f", // 𨽿
+ 0x28f80: "\xab\n\U00028f80", // 𨾀
+ 0x28f81: "\xab\n\U00028f81", // 𨾁
+ 0x28f82: "\xab\f\U00028f82", // 𨾂
+ 0x28f83: "\xab\f\U00028f83", // 𨾃
+ 0x28f84: "\xab\x0e\U00028f84", // 𨾄
+ 0x28f85: "\xac\x02\U00028f85", // 𨾅
+ 0x28f86: "\xac\x02\U00028f86", // 𨾆
+ 0x28f87: "\xac\x02\U00028f87", // 𨾇
+ 0x28f88: "\xac\x03\U00028f88", // 𨾈
+ 0x28f89: "\xac\x03\U00028f89", // 𨾉
+ 0x28f8a: "\xac\x03\U00028f8a", // 𨾊
+ 0x28f8b: "\xac\x03\U00028f8b", // 𨾋
+ 0x28f8c: "\xac\x03\U00028f8c", // 𨾌
+ 0x28f8d: "\xac\x03\U00028f8d", // 𨾍
+ 0x28f8e: "\xac\x03\U00028f8e", // 𨾎
+ 0x28f8f: "\xac\x03\U00028f8f", // 𨾏
+ 0x28f90: "\xac\x03\U00028f90", // 𨾐
+ 0x28f91: "\xac\x03\U00028f91", // 𨾑
+ 0x28f92: "\xac\x04\U00028f92", // 𨾒
+ 0x28f93: "\xac\x04\U00028f93", // 𨾓
+ 0x28f94: "\xac\x04\U00028f94", // 𨾔
+ 0x28f95: "\xac\x04\U00028f95", // 𨾕
+ 0x28f96: "\xac\x04\U00028f96", // 𨾖
+ 0x28f97: "\xac\x04\U00028f97", // 𨾗
+ 0x28f98: "\xac\x04\U00028f98", // 𨾘
+ 0x28f99: "\xac\x04\U00028f99", // 𨾙
+ 0x28f9a: "\xac\x04\U00028f9a", // 𨾚
+ 0x28f9b: "\xac\x04\U00028f9b", // 𨾛
+ 0x28f9c: "\xac\x04\U00028f9c", // 𨾜
+ 0x28f9d: "\xac\x04\U00028f9d", // 𨾝
+ 0x28f9e: "\xac\x04\U00028f9e", // 𨾞
+ 0x28f9f: "\xac\x04\U00028f9f", // 𨾟
+ 0x28fa0: "\xac\x05\U00028fa0", // 𨾠
+ 0x28fa1: "\xac\x05\U00028fa1", // 𨾡
+ 0x28fa2: "\xac\x05\U00028fa2", // 𨾢
+ 0x28fa3: "\xac\x05\U00028fa3", // 𨾣
+ 0x28fa4: "\xac\x05\U00028fa4", // 𨾤
+ 0x28fa5: "\xac\x05\U00028fa5", // 𨾥
+ 0x28fa6: "\xac\x05\U00028fa6", // 𨾦
+ 0x28fa7: "\xac\x05\U00028fa7", // 𨾧
+ 0x28fa8: "\xac\x05\U00028fa8", // 𨾨
+ 0x28fa9: "\xac\x05\U00028fa9", // 𨾩
+ 0x28faa: "\xac\x05\U00028faa", // 𨾪
+ 0x28fab: "\xac\x05\U00028fab", // 𨾫
+ 0x28fac: "\xac\x05\U00028fac", // 𨾬
+ 0x28fad: "\xac\x05\U00028fad", // 𨾭
+ 0x28fae: "\xac\x05\U00028fae", // 𨾮
+ 0x28faf: "\xac\x05\U00028faf", // 𨾯
+ 0x28fb0: "\xac\x05\U00028fb0", // 𨾰
+ 0x28fb1: "\xac\x05\U00028fb1", // 𨾱
+ 0x28fb2: "\xac\x06\U00028fb2", // 𨾲
+ 0x28fb3: "\xac\x06\U00028fb3", // 𨾳
+ 0x28fb4: "\xac\x06\U00028fb4", // 𨾴
+ 0x28fb5: "\xac\x06\U00028fb5", // 𨾵
+ 0x28fb6: "\xac\x06\U00028fb6", // 𨾶
+ 0x28fb7: "\xac\x06\U00028fb7", // 𨾷
+ 0x28fb8: "\xac\x06\U00028fb8", // 𨾸
+ 0x28fb9: "\xac\x06\U00028fb9", // 𨾹
+ 0x28fba: "\xac\x06\U00028fba", // 𨾺
+ 0x28fbb: "\xac\x06\U00028fbb", // 𨾻
+ 0x28fbc: "\xac\x06\U00028fbc", // 𨾼
+ 0x28fbd: "\xac\x06\U00028fbd", // 𨾽
+ 0x28fbe: "\xac\x06\U00028fbe", // 𨾾
+ 0x28fbf: "\xac\x06\U00028fbf", // 𨾿
+ 0x28fc0: "\xac\x06\U00028fc0", // 𨿀
+ 0x28fc1: "\xac\x06\U00028fc1", // 𨿁
+ 0x28fc2: "\xac\x06\U00028fc2", // 𨿂
+ 0x28fc3: "\xac\x06\U00028fc3", // 𨿃
+ 0x28fc4: "\xac\x06\U00028fc4", // 𨿄
+ 0x28fc5: "\xac\x06\U00028fc5", // 𨿅
+ 0x28fc6: "\xac\x06\U00028fc6", // 𨿆
+ 0x28fc7: "\xac\x06\U00028fc7", // 𨿇
+ 0x28fc8: "\xac\x06\U00028fc8", // 𨿈
+ 0x28fc9: "\xac\x06\U00028fc9", // 𨿉
+ 0x28fca: "\xac\x06\U00028fca", // 𨿊
+ 0x28fcb: "\xac\a\U00028fcb", // 𨿋
+ 0x28fcc: "\xac\a\U00028fcc", // 𨿌
+ 0x28fcd: "\xac\a\U00028fcd", // 𨿍
+ 0x28fce: "\xac\a\U00028fce", // 𨿎
+ 0x28fcf: "\xac\a\U00028fcf", // 𨿏
+ 0x28fd0: "\xac\a\U00028fd0", // 𨿐
+ 0x28fd1: "\xac\a\U00028fd1", // 𨿑
+ 0x28fd2: "\xac\a\U00028fd2", // 𨿒
+ 0x28fd3: "\xac\a\U00028fd3", // 𨿓
+ 0x28fd4: "\xac\a\U00028fd4", // 𨿔
+ 0x28fd5: "\xac\a\U00028fd5", // 𨿕
+ 0x28fd6: "\xac\a\U00028fd6", // 𨿖
+ 0x28fd7: "\xac\a\U00028fd7", // 𨿗
+ 0x28fd8: "\xac\a\U00028fd8", // 𨿘
+ 0x28fd9: "\xac\a\U00028fd9", // 𨿙
+ 0x28fda: "\xac\a\U00028fda", // 𨿚
+ 0x28fdb: "\xac\a\U00028fdb", // 𨿛
+ 0x28fdc: "\xac\a\U00028fdc", // 𨿜
+ 0x28fdd: "\xac\a\U00028fdd", // 𨿝
+ 0x28fde: "\xac\a\U00028fde", // 𨿞
+ 0x28fdf: "\xac\a\U00028fdf", // 𨿟
+ 0x28fe0: "\xac\b\U00028fe0", // 𨿠
+ 0x28fe1: "\xac\b\U00028fe1", // 𨿡
+ 0x28fe2: "\xac\b\U00028fe2", // 𨿢
+ 0x28fe3: "\xac\b\U00028fe3", // 𨿣
+ 0x28fe4: "\xac\b\U00028fe4", // 𨿤
+ 0x28fe5: "\xac\b\U00028fe5", // 𨿥
+ 0x28fe6: "\xac\b\U00028fe6", // 𨿦
+ 0x28fe7: "\xac\b\U00028fe7", // 𨿧
+ 0x28fe8: "\xac\b\U00028fe8", // 𨿨
+ 0x28fe9: "\xac\b\U00028fe9", // 𨿩
+ 0x28fea: "\xac\b\U00028fea", // 𨿪
+ 0x28feb: "\xac\b\U00028feb", // 𨿫
+ 0x28fec: "\xac\b\U00028fec", // 𨿬
+ 0x28fed: "\xac\b\U00028fed", // 𨿭
+ 0x28fee: "\xac\b\U00028fee", // 𨿮
+ 0x28fef: "\xac\b\U00028fef", // 𨿯
+ 0x28ff0: "\xac\b\U00028ff0", // 𨿰
+ 0x28ff1: "\xac\b\U00028ff1", // 𨿱
+ 0x28ff2: "\xac\b\U00028ff2", // 𨿲
+ 0x28ff3: "\xac\b\U00028ff3", // 𨿳
+ 0x28ff4: "\xac\b\U00028ff4", // 𨿴
+ 0x28ff5: "\xac\b\U00028ff5", // 𨿵
+ 0x28ff6: "\xac\b\U00028ff6", // 𨿶
+ 0x28ff7: "\xac\b\U00028ff7", // 𨿷
+ 0x28ff8: "\xac\b\U00028ff8", // 𨿸
+ 0x28ff9: "\xac\b\U00028ff9", // 𨿹
+ 0x28ffa: "\xac\b\U00028ffa", // 𨿺
+ 0x28ffb: "\xac\b\U00028ffb", // 𨿻
+ 0x28ffc: "\xac\b\U00028ffc", // 𨿼
+ 0x28ffd: "\xac\b\U00028ffd", // 𨿽
+ 0x28ffe: "\xac\b\U00028ffe", // 𨿾
+ 0x28fff: "\xac\t\U00028fff", // 𨿿
+ 0x29000: "\xac\t\U00029000", // 𩀀
+ 0x29001: "\xac\t\U00029001", // 𩀁
+ 0x29002: "\xac\t\U00029002", // 𩀂
+ 0x29003: "\xac\t\U00029003", // 𩀃
+ 0x29004: "\xac\t\U00029004", // 𩀄
+ 0x29005: "\xac\t\U00029005", // 𩀅
+ 0x29006: "\xac\t\U00029006", // 𩀆
+ 0x29007: "\xac\t\U00029007", // 𩀇
+ 0x29008: "\xac\t\U00029008", // 𩀈
+ 0x29009: "\xac\t\U00029009", // 𩀉
+ 0x2900a: "\xac\t\U0002900a", // 𩀊
+ 0x2900b: "\xac\t\U0002900b", // 𩀋
+ 0x2900c: "\xac\t\U0002900c", // 𩀌
+ 0x2900d: "\xac\t\U0002900d", // 𩀍
+ 0x2900e: "\xac\t\U0002900e", // 𩀎
+ 0x2900f: "\xac\t\U0002900f", // 𩀏
+ 0x29010: "\xac\t\U00029010", // 𩀐
+ 0x29011: "\xac\t\U00029011", // 𩀑
+ 0x29012: "\xac\t\U00029012", // 𩀒
+ 0x29013: "\xac\t\U00029013", // 𩀓
+ 0x29014: "\xac\t\U00029014", // 𩀔
+ 0x29015: "\xac\t\U00029015", // 𩀕
+ 0x29016: "\xac\t\U00029016", // 𩀖
+ 0x29017: "\xac\n\U00029017", // 𩀗
+ 0x29018: "\xac\n\U00029018", // 𩀘
+ 0x29019: "\xac\n\U00029019", // 𩀙
+ 0x2901a: "\xac\n\U0002901a", // 𩀚
+ 0x2901b: "\xac\n\U0002901b", // 𩀛
+ 0x2901c: "\xac\n\U0002901c", // 𩀜
+ 0x2901d: "\xac\n\U0002901d", // 𩀝
+ 0x2901e: "\xac\n\U0002901e", // 𩀞
+ 0x2901f: "\xac\n\U0002901f", // 𩀟
+ 0x29020: "\xac\n\U00029020", // 𩀠
+ 0x29021: "\xac\n\U00029021", // 𩀡
+ 0x29022: "\xac\n\U00029022", // 𩀢
+ 0x29023: "\xac\n\U00029023", // 𩀣
+ 0x29024: "\xac\v\U00029024", // 𩀤
+ 0x29025: "\xac\v\U00029025", // 𩀥
+ 0x29026: "\xac\v\U00029026", // 𩀦
+ 0x29027: "\xac\v\U00029027", // 𩀧
+ 0x29028: "\xac\v\U00029028", // 𩀨
+ 0x29029: "\xac\v\U00029029", // 𩀩
+ 0x2902a: "\xac\v\U0002902a", // 𩀪
+ 0x2902b: "\xac\v\U0002902b", // 𩀫
+ 0x2902c: "\xac\v\U0002902c", // 𩀬
+ 0x2902d: "\xac\v\U0002902d", // 𩀭
+ 0x2902e: "\xac\v\U0002902e", // 𩀮
+ 0x2902f: "\xac\v\U0002902f", // 𩀯
+ 0x29030: "\xac\v\U00029030", // 𩀰
+ 0x29031: "\xac\v\U00029031", // 𩀱
+ 0x29032: "\xac\v\U00029032", // 𩀲
+ 0x29033: "\xac\v\U00029033", // 𩀳
+ 0x29034: "\xac\f\U00029034", // 𩀴
+ 0x29035: "\xac\f\U00029035", // 𩀵
+ 0x29036: "\xac\f\U00029036", // 𩀶
+ 0x29037: "\xac\f\U00029037", // 𩀷
+ 0x29038: "\xac\f\U00029038", // 𩀸
+ 0x29039: "\xac\f\U00029039", // 𩀹
+ 0x2903a: "\xac\f\U0002903a", // 𩀺
+ 0x2903b: "\xac\f\U0002903b", // 𩀻
+ 0x2903c: "\xac\f\U0002903c", // 𩀼
+ 0x2903d: "\xac\f\U0002903d", // 𩀽
+ 0x2903e: "\xac\f\U0002903e", // 𩀾
+ 0x2903f: "\xac\f\U0002903f", // 𩀿
+ 0x29040: "\xac\f\U00029040", // 𩁀
+ 0x29041: "\xac\f\U00029041", // 𩁁
+ 0x29042: "\xac\f\U00029042", // 𩁂
+ 0x29043: "\xac\f\U00029043", // 𩁃
+ 0x29044: "\xac\f\U00029044", // 𩁄
+ 0x29045: "\xac\f\U00029045", // 𩁅
+ 0x29046: "\xac\f\U00029046", // 𩁆
+ 0x29047: "\xac\r\U00029047", // 𩁇
+ 0x29048: "\xac\r\U00029048", // 𩁈
+ 0x29049: "\xac\r\U00029049", // 𩁉
+ 0x2904a: "\xac\r\U0002904a", // 𩁊
+ 0x2904b: "\xac\r\U0002904b", // 𩁋
+ 0x2904c: "\xac\r\U0002904c", // 𩁌
+ 0x2904d: "\xac\r\U0002904d", // 𩁍
+ 0x2904e: "\xac\r\U0002904e", // 𩁎
+ 0x2904f: "\xac\r\U0002904f", // 𩁏
+ 0x29050: "\xac\r\U00029050", // 𩁐
+ 0x29051: "\xac\r\U00029051", // 𩁑
+ 0x29052: "\xac\r\U00029052", // 𩁒
+ 0x29053: "\xac\x0e\U00029053", // 𩁓
+ 0x29054: "\xac\x0e\U00029054", // 𩁔
+ 0x29055: "\xac\x0e\U00029055", // 𩁕
+ 0x29056: "\xac\x0e\U00029056", // 𩁖
+ 0x29057: "\xac\x0e\U00029057", // 𩁗
+ 0x29058: "\xac\x0e\U00029058", // 𩁘
+ 0x29059: "\xac\x0e\U00029059", // 𩁙
+ 0x2905a: "\xac\x0e\U0002905a", // 𩁚
+ 0x2905b: "\xac\x0e\U0002905b", // 𩁛
+ 0x2905c: "\xac\x0f\U0002905c", // 𩁜
+ 0x2905d: "\xac\x0f\U0002905d", // 𩁝
+ 0x2905e: "\xac\x0f\U0002905e", // 𩁞
+ 0x2905f: "\xac\x0f\U0002905f", // 𩁟
+ 0x29060: "\xac\x0f\U00029060", // 𩁠
+ 0x29061: "\xac\x0f\U00029061", // 𩁡
+ 0x29062: "\xac\x0f\U00029062", // 𩁢
+ 0x29063: "\xac\x0f\U00029063", // 𩁣
+ 0x29064: "\xac\x0f\U00029064", // 𩁤
+ 0x29065: "\xac\x0f\U00029065", // 𩁥
+ 0x29066: "\xac\x10\U00029066", // 𩁦
+ 0x29067: "\xac\x10\U00029067", // 𩁧
+ 0x29068: "\xac\x10\U00029068", // 𩁨
+ 0x29069: "\xac\x10\U00029069", // 𩁩
+ 0x2906a: "\xac\x10\U0002906a", // 𩁪
+ 0x2906b: "\xac\x10\U0002906b", // 𩁫
+ 0x2906c: "\xac\x11\U0002906c", // 𩁬
+ 0x2906d: "\xac\x11\U0002906d", // 𩁭
+ 0x2906e: "\xac\x11\U0002906e", // 𩁮
+ 0x2906f: "\xac\x12\U0002906f", // 𩁯
+ 0x29070: "\xac\x12\U00029070", // 𩁰
+ 0x29071: "\xac\x12\U00029071", // 𩁱
+ 0x29072: "\xac\x14\U00029072", // 𩁲
+ 0x29073: "\xac\x14\U00029073", // 𩁳
+ 0x29074: "\xac\x18\U00029074", // 𩁴
+ 0x29075: "\xac\x1c\U00029075", // 𩁵
+ 0x29076: "\xad\x01\U00029076", // 𩁶
+ 0x29077: "\xad\x02\U00029077", // 𩁷
+ 0x29078: "\xad\x02\U00029078", // 𩁸
+ 0x29079: "\xad\x03\U00029079", // 𩁹
+ 0x2907a: "\xad\x03\U0002907a", // 𩁺
+ 0x2907b: "\xad\x03\U0002907b", // 𩁻
+ 0x2907c: "\xad\x03\U0002907c", // 𩁼
+ 0x2907d: "\xad\x03\U0002907d", // 𩁽
+ 0x2907e: "\xad\x03\U0002907e", // 𩁾
+ 0x2907f: "\xad\x03\U0002907f", // 𩁿
+ 0x29080: "\xad\x03\U00029080", // 𩂀
+ 0x29081: "\xad\x03\U00029081", // 𩂁
+ 0x29082: "\xad\x04\U00029082", // 𩂂
+ 0x29083: "\xad\x04\U00029083", // 𩂃
+ 0x29084: "\xad\x04\U00029084", // 𩂄
+ 0x29085: "\xad\x04\U00029085", // 𩂅
+ 0x29086: "\xad\x04\U00029086", // 𩂆
+ 0x29087: "\xad\x04\U00029087", // 𩂇
+ 0x29088: "\xad\x04\U00029088", // 𩂈
+ 0x29089: "\xad\x04\U00029089", // 𩂉
+ 0x2908a: "\xad\x04\U0002908a", // 𩂊
+ 0x2908b: "\xad\x04\U0002908b", // 𩂋
+ 0x2908c: "\xad\x04\U0002908c", // 𩂌
+ 0x2908d: "\xad\x04\U0002908d", // 𩂍
+ 0x2908e: "\xad\x04\U0002908e", // 𩂎
+ 0x2908f: "\xad\x04\U0002908f", // 𩂏
+ 0x29090: "\xad\x04\U00029090", // 𩂐
+ 0x29091: "\xad\x04\U00029091", // 𩂑
+ 0x29092: "\xad\x05\U00029092", // 𩂒
+ 0x29093: "\xad\x05\U00029093", // 𩂓
+ 0x29094: "\xad\x05\U00029094", // 𩂔
+ 0x29095: "\xad\x05\U00029095", // 𩂕
+ 0x29096: "\xad\x05\U00029096", // 𩂖
+ 0x29097: "\xad\x05\U00029097", // 𩂗
+ 0x29098: "\xad\x05\U00029098", // 𩂘
+ 0x29099: "\xad\x05\U00029099", // 𩂙
+ 0x2909a: "\xad\x05\U0002909a", // 𩂚
+ 0x2909b: "\xad\x05\U0002909b", // 𩂛
+ 0x2909c: "\xad\x05\U0002909c", // 𩂜
+ 0x2909d: "\xad\x05\U0002909d", // 𩂝
+ 0x2909e: "\xad\x05\U0002909e", // 𩂞
+ 0x2909f: "\xad\x05\U0002909f", // 𩂟
+ 0x290a0: "\xad\x05\U000290a0", // 𩂠
+ 0x290a1: "\xad\x05\U000290a1", // 𩂡
+ 0x290a2: "\xad\x06\U000290a2", // 𩂢
+ 0x290a3: "\xad\x06\U000290a3", // 𩂣
+ 0x290a4: "\xad\x06\U000290a4", // 𩂤
+ 0x290a5: "\xad\x06\U000290a5", // 𩂥
+ 0x290a6: "\xad\x06\U000290a6", // 𩂦
+ 0x290a7: "\xad\x06\U000290a7", // 𩂧
+ 0x290a8: "\xad\x06\U000290a8", // 𩂨
+ 0x290a9: "\xad\x06\U000290a9", // 𩂩
+ 0x290aa: "\xad\x06\U000290aa", // 𩂪
+ 0x290ab: "\xad\x06\U000290ab", // 𩂫
+ 0x290ac: "\xad\x06\U000290ac", // 𩂬
+ 0x290ad: "\xad\x06\U000290ad", // 𩂭
+ 0x290ae: "\xad\x06\U000290ae", // 𩂮
+ 0x290af: "\xad\x06\U000290af", // 𩂯
+ 0x290b0: "\xad\x06\U000290b0", // 𩂰
+ 0x290b1: "\xad\x06\U000290b1", // 𩂱
+ 0x290b2: "\xad\x06\U000290b2", // 𩂲
+ 0x290b3: "\xad\x06\U000290b3", // 𩂳
+ 0x290b4: "\xad\x06\U000290b4", // 𩂴
+ 0x290b5: "\xad\x06\U000290b5", // 𩂵
+ 0x290b6: "\xad\x06\U000290b6", // 𩂶
+ 0x290b7: "\xad\a\U000290b7", // 𩂷
+ 0x290b8: "\xad\a\U000290b8", // 𩂸
+ 0x290b9: "\xad\a\U000290b9", // 𩂹
+ 0x290ba: "\xad\a\U000290ba", // 𩂺
+ 0x290bb: "\xad\a\U000290bb", // 𩂻
+ 0x290bc: "\xad\a\U000290bc", // 𩂼
+ 0x290bd: "\xad\a\U000290bd", // 𩂽
+ 0x290be: "\xad\a\U000290be", // 𩂾
+ 0x290bf: "\xad\a\U000290bf", // 𩂿
+ 0x290c0: "\xad\a\U000290c0", // 𩃀
+ 0x290c1: "\xad\a\U000290c1", // 𩃁
+ 0x290c2: "\xad\a\U000290c2", // 𩃂
+ 0x290c3: "\xad\a\U000290c3", // 𩃃
+ 0x290c4: "\xad\a\U000290c4", // 𩃄
+ 0x290c5: "\xad\a\U000290c5", // 𩃅
+ 0x290c6: "\xad\a\U000290c6", // 𩃆
+ 0x290c7: "\xad\a\U000290c7", // 𩃇
+ 0x290c8: "\xad\a\U000290c8", // 𩃈
+ 0x290c9: "\xad\a\U000290c9", // 𩃉
+ 0x290ca: "\xad\a\U000290ca", // 𩃊
+ 0x290cb: "\xad\a\U000290cb", // 𩃋
+ 0x290cc: "\xad\a\U000290cc", // 𩃌
+ 0x290cd: "\xad\a\U000290cd", // 𩃍
+ 0x290ce: "\xad\a\U000290ce", // 𩃎
+ 0x290cf: "\xad\a\U000290cf", // 𩃏
+ 0x290d0: "\xad\a\U000290d0", // 𩃐
+ 0x290d1: "\xad\a\U000290d1", // 𩃑
+ 0x290d2: "\xad\b\U000290d2", // 𩃒
+ 0x290d3: "\xad\b\U000290d3", // 𩃓
+ 0x290d4: "\xad\b\U000290d4", // 𩃔
+ 0x290d5: "\xad\b\U000290d5", // 𩃕
+ 0x290d6: "\xad\b\U000290d6", // 𩃖
+ 0x290d7: "\xad\b\U000290d7", // 𩃗
+ 0x290d8: "\xad\b\U000290d8", // 𩃘
+ 0x290d9: "\xad\b\U000290d9", // 𩃙
+ 0x290da: "\xad\b\U000290da", // 𩃚
+ 0x290db: "\xad\b\U000290db", // 𩃛
+ 0x290dc: "\xad\b\U000290dc", // 𩃜
+ 0x290dd: "\xad\b\U000290dd", // 𩃝
+ 0x290de: "\xad\b\U000290de", // 𩃞
+ 0x290df: "\xad\b\U000290df", // 𩃟
+ 0x290e0: "\xad\b\U000290e0", // 𩃠
+ 0x290e1: "\xad\b\U000290e1", // 𩃡
+ 0x290e2: "\xad\b\U000290e2", // 𩃢
+ 0x290e3: "\xad\b\U000290e3", // 𩃣
+ 0x290e4: "\xad\b\U000290e4", // 𩃤
+ 0x290e5: "\xad\b\U000290e5", // 𩃥
+ 0x290e6: "\xad\b\U000290e6", // 𩃦
+ 0x290e7: "\xad\b\U000290e7", // 𩃧
+ 0x290e8: "\xad\b\U000290e8", // 𩃨
+ 0x290e9: "\xad\b\U000290e9", // 𩃩
+ 0x290ea: "\xad\b\U000290ea", // 𩃪
+ 0x290eb: "\xad\b\U000290eb", // 𩃫
+ 0x290ec: "\xad\b\U000290ec", // 𩃬
+ 0x290ed: "\xad\b\U000290ed", // 𩃭
+ 0x290ee: "\xad\b\U000290ee", // 𩃮
+ 0x290ef: "\xad\b\U000290ef", // 𩃯
+ 0x290f0: "\xad\b\U000290f0", // 𩃰
+ 0x290f1: "\xad\b\U000290f1", // 𩃱
+ 0x290f2: "\xad\b\U000290f2", // 𩃲
+ 0x290f3: "\xad\b\U000290f3", // 𩃳
+ 0x290f4: "\xad\b\U000290f4", // 𩃴
+ 0x290f5: "\xad\t\U000290f5", // 𩃵
+ 0x290f6: "\xad\t\U000290f6", // 𩃶
+ 0x290f7: "\xad\t\U000290f7", // 𩃷
+ 0x290f8: "\xad\t\U000290f8", // 𩃸
+ 0x290f9: "\xad\t\U000290f9", // 𩃹
+ 0x290fa: "\xad\t\U000290fa", // 𩃺
+ 0x290fb: "\xad\t\U000290fb", // 𩃻
+ 0x290fc: "\xad\t\U000290fc", // 𩃼
+ 0x290fd: "\xad\t\U000290fd", // 𩃽
+ 0x290fe: "\xad\n\U000290fe", // 𩃾
+ 0x290ff: "\xad\t\U000290ff", // 𩃿
+ 0x29100: "\xad\t\U00029100", // 𩄀
+ 0x29101: "\xad\t\U00029101", // 𩄁
+ 0x29102: "\xad\t\U00029102", // 𩄂
+ 0x29103: "\xad\t\U00029103", // 𩄃
+ 0x29104: "\xad\t\U00029104", // 𩄄
+ 0x29105: "\xad\t\U00029105", // 𩄅
+ 0x29106: "\xad\t\U00029106", // 𩄆
+ 0x29107: "\xad\t\U00029107", // 𩄇
+ 0x29108: "\xad\t\U00029108", // 𩄈
+ 0x29109: "\xad\t\U00029109", // 𩄉
+ 0x2910a: "\xad\t\U0002910a", // 𩄊
+ 0x2910b: "\xad\t\U0002910b", // 𩄋
+ 0x2910c: "\xad\t\U0002910c", // 𩄌
+ 0x2910d: "\xad\t\U0002910d", // 𩄍
+ 0x2910e: "\xad\t\U0002910e", // 𩄎
+ 0x2910f: "\xad\t\U0002910f", // 𩄏
+ 0x29110: "\xad\t\U00029110", // 𩄐
+ 0x29111: "\xad\t\U00029111", // 𩄑
+ 0x29112: "\xad\t\U00029112", // 𩄒
+ 0x29113: "\xad\t\U00029113", // 𩄓
+ 0x29114: "\xad\t\U00029114", // 𩄔
+ 0x29115: "\xad\t\U00029115", // 𩄕
+ 0x29116: "\xad\t\U00029116", // 𩄖
+ 0x29117: "\xad\n\U00029117", // 𩄗
+ 0x29118: "\xad\n\U00029118", // 𩄘
+ 0x29119: "\xad\n\U00029119", // 𩄙
+ 0x2911a: "\xad\n\U0002911a", // 𩄚
+ 0x2911b: "\xad\n\U0002911b", // 𩄛
+ 0x2911c: "\xad\n\U0002911c", // 𩄜
+ 0x2911d: "\xad\n\U0002911d", // 𩄝
+ 0x2911e: "\xad\n\U0002911e", // 𩄞
+ 0x2911f: "\xad\n\U0002911f", // 𩄟
+ 0x29120: "\xad\n\U00029120", // 𩄠
+ 0x29121: "\xad\n\U00029121", // 𩄡
+ 0x29122: "\xad\n\U00029122", // 𩄢
+ 0x29123: "\xad\n\U00029123", // 𩄣
+ 0x29124: "\xad\n\U00029124", // 𩄤
+ 0x29125: "\xad\n\U00029125", // 𩄥
+ 0x29126: "\xad\n\U00029126", // 𩄦
+ 0x29127: "\xad\n\U00029127", // 𩄧
+ 0x29128: "\xad\n\U00029128", // 𩄨
+ 0x29129: "\xad\n\U00029129", // 𩄩
+ 0x2912a: "\xad\n\U0002912a", // 𩄪
+ 0x2912b: "\xad\n\U0002912b", // 𩄫
+ 0x2912c: "\xad\n\U0002912c", // 𩄬
+ 0x2912d: "\xad\n\U0002912d", // 𩄭
+ 0x2912e: "\xa2\x0e\U0002912e", // 𩄮
+ 0x2912f: "\xad\n\U0002912f", // 𩄯
+ 0x29130: "\xad\n\U00029130", // 𩄰
+ 0x29131: "\xad\n\U00029131", // 𩄱
+ 0x29132: "\xad\n\U00029132", // 𩄲
+ 0x29133: "\xad\n\U00029133", // 𩄳
+ 0x29134: "\xad\n\U00029134", // 𩄴
+ 0x29135: "\xad\n\U00029135", // 𩄵
+ 0x29136: "\xad\n\U00029136", // 𩄶
+ 0x29137: "\xad\n\U00029137", // 𩄷
+ 0x29138: "\xad\n\U00029138", // 𩄸
+ 0x29139: "\xad\n\U00029139", // 𩄹
+ 0x2913a: "\xad\n\U0002913a", // 𩄺
+ 0x2913b: "\xad\v\U0002913b", // 𩄻
+ 0x2913c: "\xad\v\U0002913c", // 𩄼
+ 0x2913d: "\xad\v\U0002913d", // 𩄽
+ 0x2913e: "\xad\v\U0002913e", // 𩄾
+ 0x2913f: "\xad\v\U0002913f", // 𩄿
+ 0x29140: "\xad\v\U00029140", // 𩅀
+ 0x29141: "\xad\v\U00029141", // 𩅁
+ 0x29142: "\xad\v\U00029142", // 𩅂
+ 0x29143: "\xad\v\U00029143", // 𩅃
+ 0x29144: "\xad\v\U00029144", // 𩅄
+ 0x29145: "\xad\v\U00029145", // 𩅅
+ 0x29146: "\xad\v\U00029146", // 𩅆
+ 0x29147: "\xad\v\U00029147", // 𩅇
+ 0x29148: "\xad\v\U00029148", // 𩅈
+ 0x29149: "\xad\v\U00029149", // 𩅉
+ 0x2914a: "\xad\v\U0002914a", // 𩅊
+ 0x2914b: "\xad\v\U0002914b", // 𩅋
+ 0x2914c: "\xad\v\U0002914c", // 𩅌
+ 0x2914d: "\xad\v\U0002914d", // 𩅍
+ 0x2914e: "\xad\v\U0002914e", // 𩅎
+ 0x2914f: "\xad\v\U0002914f", // 𩅏
+ 0x29150: "\xad\v\U00029150", // 𩅐
+ 0x29151: "\xad\v\U00029151", // 𩅑
+ 0x29152: "\xad\v\U00029152", // 𩅒
+ 0x29153: "\xad\v\U00029153", // 𩅓
+ 0x29154: "\xad\v\U00029154", // 𩅔
+ 0x29155: "\xad\v\U00029155", // 𩅕
+ 0x29156: "\xad\v\U00029156", // 𩅖
+ 0x29157: "\xad\v\U00029157", // 𩅗
+ 0x29158: "\xad\v\U00029158", // 𩅘
+ 0x29159: "\xad\v\U00029159", // 𩅙
+ 0x2915a: "\xad\v\U0002915a", // 𩅚
+ 0x2915b: "\xad\v\U0002915b", // 𩅛
+ 0x2915c: "\xad\v\U0002915c", // 𩅜
+ 0x2915d: "\xad\f\U0002915d", // 𩅝
+ 0x2915e: "\xad\f\U0002915e", // 𩅞
+ 0x2915f: "\xad\f\U0002915f", // 𩅟
+ 0x29160: "\xad\f\U00029160", // 𩅠
+ 0x29161: "\xad\f\U00029161", // 𩅡
+ 0x29162: "\xad\f\U00029162", // 𩅢
+ 0x29163: "\xad\f\U00029163", // 𩅣
+ 0x29164: "\xad\f\U00029164", // 𩅤
+ 0x29165: "\xad\f\U00029165", // 𩅥
+ 0x29166: "\xad\f\U00029166", // 𩅦
+ 0x29167: "\xad\f\U00029167", // 𩅧
+ 0x29168: "\xad\f\U00029168", // 𩅨
+ 0x29169: "\xad\f\U00029169", // 𩅩
+ 0x2916a: "\xad\f\U0002916a", // 𩅪
+ 0x2916b: "\xad\f\U0002916b", // 𩅫
+ 0x2916c: "\xad\f\U0002916c", // 𩅬
+ 0x2916d: "\xad\f\U0002916d", // 𩅭
+ 0x2916e: "\xad\f\U0002916e", // 𩅮
+ 0x2916f: "\xad\f\U0002916f", // 𩅯
+ 0x29170: "\xad\f\U00029170", // 𩅰
+ 0x29171: "\xad\f\U00029171", // 𩅱
+ 0x29172: "\xad\f\U00029172", // 𩅲
+ 0x29173: "\xad\f\U00029173", // 𩅳
+ 0x29174: "\xad\f\U00029174", // 𩅴
+ 0x29175: "\xad\f\U00029175", // 𩅵
+ 0x29176: "\xad\f\U00029176", // 𩅶
+ 0x29177: "\xad\f\U00029177", // 𩅷
+ 0x29178: "\xad\f\U00029178", // 𩅸
+ 0x29179: "\xad\f\U00029179", // 𩅹
+ 0x2917a: "\xad\f\U0002917a", // 𩅺
+ 0x2917b: "\xad\f\U0002917b", // 𩅻
+ 0x2917c: "\xad\r\U0002917c", // 𩅼
+ 0x2917d: "\xad\r\U0002917d", // 𩅽
+ 0x2917e: "\xad\r\U0002917e", // 𩅾
+ 0x2917f: "\xad\r\U0002917f", // 𩅿
+ 0x29180: "\xad\r\U00029180", // 𩆀
+ 0x29181: "\xad\r\U00029181", // 𩆁
+ 0x29182: "\xad\r\U00029182", // 𩆂
+ 0x29183: "\xad\r\U00029183", // 𩆃
+ 0x29184: "\xad\r\U00029184", // 𩆄
+ 0x29185: "\xad\r\U00029185", // 𩆅
+ 0x29186: "\xad\r\U00029186", // 𩆆
+ 0x29187: "\xad\r\U00029187", // 𩆇
+ 0x29188: "\xad\r\U00029188", // 𩆈
+ 0x29189: "\xad\r\U00029189", // 𩆉
+ 0x2918a: "\xad\r\U0002918a", // 𩆊
+ 0x2918b: "\xad\r\U0002918b", // 𩆋
+ 0x2918c: "\xad\r\U0002918c", // 𩆌
+ 0x2918d: "\xad\r\U0002918d", // 𩆍
+ 0x2918e: "\xad\r\U0002918e", // 𩆎
+ 0x2918f: "\xad\r\U0002918f", // 𩆏
+ 0x29190: "\xad\r\U00029190", // 𩆐
+ 0x29191: "\xad\x0e\U00029191", // 𩆑
+ 0x29192: "\xad\x0e\U00029192", // 𩆒
+ 0x29193: "\xad\x0e\U00029193", // 𩆓
+ 0x29194: "\xad\x0e\U00029194", // 𩆔
+ 0x29195: "\xad\x0e\U00029195", // 𩆕
+ 0x29196: "\xad\x0e\U00029196", // 𩆖
+ 0x29197: "\xad\x0e\U00029197", // 𩆗
+ 0x29198: "\xad\x0e\U00029198", // 𩆘
+ 0x29199: "\xad\x0e\U00029199", // 𩆙
+ 0x2919a: "\xad\x0e\U0002919a", // 𩆚
+ 0x2919b: "\xad\x0e\U0002919b", // 𩆛
+ 0x2919c: "\xad\x0e\U0002919c", // 𩆜
+ 0x2919d: "\xad\x0e\U0002919d", // 𩆝
+ 0x2919e: "\xad\x0e\U0002919e", // 𩆞
+ 0x2919f: "\xad\x0e\U0002919f", // 𩆟
+ 0x291a0: "\xad\x0e\U000291a0", // 𩆠
+ 0x291a1: "\xad\x0e\U000291a1", // 𩆡
+ 0x291a2: "\xad\x0e\U000291a2", // 𩆢
+ 0x291a3: "\xad\x0e\U000291a3", // 𩆣
+ 0x291a4: "\xad\x0f\U000291a4", // 𩆤
+ 0x291a5: "\xad\x0f\U000291a5", // 𩆥
+ 0x291a6: "\xad\x0f\U000291a6", // 𩆦
+ 0x291a7: "\xad\x0f\U000291a7", // 𩆧
+ 0x291a8: "\xad\x0f\U000291a8", // 𩆨
+ 0x291a9: "\xad\x0f\U000291a9", // 𩆩
+ 0x291aa: "\xad\x0f\U000291aa", // 𩆪
+ 0x291ab: "\xad\x0f\U000291ab", // 𩆫
+ 0x291ac: "\xad\x0f\U000291ac", // 𩆬
+ 0x291ad: "\xad\x10\U000291ad", // 𩆭
+ 0x291ae: "\xad\x10\U000291ae", // 𩆮
+ 0x291af: "\xad\x10\U000291af", // 𩆯
+ 0x291b0: "\xad\x10\U000291b0", // 𩆰
+ 0x291b1: "\xad\x10\U000291b1", // 𩆱
+ 0x291b2: "\xad\x10\U000291b2", // 𩆲
+ 0x291b3: "\xad\x10\U000291b3", // 𩆳
+ 0x291b4: "\xad\x10\U000291b4", // 𩆴
+ 0x291b5: "\xad\x11\U000291b5", // 𩆵
+ 0x291b6: "\xad\x11\U000291b6", // 𩆶
+ 0x291b7: "\xad\x11\U000291b7", // 𩆷
+ 0x291b8: "\xad\x11\U000291b8", // 𩆸
+ 0x291b9: "\xad\x11\U000291b9", // 𩆹
+ 0x291ba: "\xad\x11\U000291ba", // 𩆺
+ 0x291bb: "\xad\x11\U000291bb", // 𩆻
+ 0x291bc: "\xad\x11\U000291bc", // 𩆼
+ 0x291bd: "\xad\x11\U000291bd", // 𩆽
+ 0x291be: "\xad\x11\U000291be", // 𩆾
+ 0x291bf: "\xad\x12\U000291bf", // 𩆿
+ 0x291c0: "\xad\x12\U000291c0", // 𩇀
+ 0x291c1: "\xad\x12\U000291c1", // 𩇁
+ 0x291c2: "\xad\x12\U000291c2", // 𩇂
+ 0x291c3: "\xad\x12\U000291c3", // 𩇃
+ 0x291c4: "\xad\x12\U000291c4", // 𩇄
+ 0x291c5: "\xad\x12\U000291c5", // 𩇅
+ 0x291c6: "\xad\x12\U000291c6", // 𩇆
+ 0x291c7: "\xad\x12\U000291c7", // 𩇇
+ 0x291c8: "\xad\x14\U000291c8", // 𩇈
+ 0x291c9: "\xad\x14\U000291c9", // 𩇉
+ 0x291ca: "\xad\x15\U000291ca", // 𩇊
+ 0x291cb: "\xad\x15\U000291cb", // 𩇋
+ 0x291cc: "\xad\x15\U000291cc", // 𩇌
+ 0x291cd: "\xad\x15\U000291cd", // 𩇍
+ 0x291ce: "\xad\x15\U000291ce", // 𩇎
+ 0x291cf: "\xad\x17\U000291cf", // 𩇏
+ 0x291d0: "\xad\x18\U000291d0", // 𩇐
+ 0x291d1: "\xad\x18\U000291d1", // 𩇑
+ 0x291d2: "\xad\x1e\U000291d2", // 𩇒
+ 0x291d3: "\xad \U000291d3", // 𩇓
+ 0x291d4: "\xad(\U000291d4", // 𩇔
+ 0x291d5: "\xae\x03\U000291d5", // 𩇕
+ 0x291d6: "\xae\x04\U000291d6", // 𩇖
+ 0x291d7: "\xae\x04\U000291d7", // 𩇗
+ 0x291d8: "\xae\x05\U000291d8", // 𩇘
+ 0x291d9: "\xae\x05\U000291d9", // 𩇙
+ 0x291da: "\xae\x05\U000291da", // 𩇚
+ 0x291db: "\xae\x05\U000291db", // 𩇛
+ 0x291dc: "\xae\x06\U000291dc", // 𩇜
+ 0x291dd: "\xae\b\U000291dd", // 𩇝
+ 0x291de: "\xae\b\U000291de", // 𩇞
+ 0x291df: "\xae\t\U000291df", // 𩇟
+ 0x291e0: "\xae\n\U000291e0", // 𩇠
+ 0x291e1: "\xae\v\U000291e1", // 𩇡
+ 0x291e2: "\xae\f\U000291e2", // 𩇢
+ 0x291e3: "\xae\r\U000291e3", // 𩇣
+ 0x291e4: "\xae\x10\U000291e4", // 𩇤
+ 0x291e5: "\xae\x11\U000291e5", // 𩇥
+ 0x291e6: "\xaf\x02\U000291e6", // 𩇦
+ 0x291e7: "\xaf\x02\U000291e7", // 𩇧
+ 0x291e8: "\xaf\x02\U000291e8", // 𩇨
+ 0x291e9: "\xaf\x03\U000291e9", // 𩇩
+ 0x291ea: "\xaf\x03\U000291ea", // 𩇪
+ 0x291eb: "\xaf\x03\U000291eb", // 𩇫
+ 0x291ec: "\xaf\x03\U000291ec", // 𩇬
+ 0x291ed: "\xaf\x04\U000291ed", // 𩇭
+ 0x291ee: "\xaf\x04\U000291ee", // 𩇮
+ 0x291ef: "\xaf\x04\U000291ef", // 𩇯
+ 0x291f0: "\xaf\x04\U000291f0", // 𩇰
+ 0x291f1: "\xaf\x04\U000291f1", // 𩇱
+ 0x291f2: "\xaf\x04\U000291f2", // 𩇲
+ 0x291f3: "\xaf\x04\U000291f3", // 𩇳
+ 0x291f4: "\xaf\x04\U000291f4", // 𩇴
+ 0x291f5: "\xaf\x05\U000291f5", // 𩇵
+ 0x291f6: "\xaf\x05\U000291f6", // 𩇶
+ 0x291f7: "\xaf\x06\U000291f7", // 𩇷
+ 0x291f8: "\xaf\a\U000291f8", // 𩇸
+ 0x291f9: "\xaf\a\U000291f9", // 𩇹
+ 0x291fa: "\xaf\a\U000291fa", // 𩇺
+ 0x291fb: "\xaf\a\U000291fb", // 𩇻
+ 0x291fc: "\xaf\b\U000291fc", // 𩇼
+ 0x291fd: "\xaf\n\U000291fd", // 𩇽
+ 0x291fe: "\xaf\f\U000291fe", // 𩇾
+ 0x291ff: "\xaf\f\U000291ff", // 𩇿
+ 0x29200: "\xaf\f\U00029200", // 𩈀
+ 0x29201: "\xaf\f\U00029201", // 𩈁
+ 0x29202: "\xaf\x12\U00029202", // 𩈂
+ 0x29203: "\xb0\x03\U00029203", // 𩈃
+ 0x29204: "\xb0\x03\U00029204", // 𩈄
+ 0x29205: "\xb0\x03\U00029205", // 𩈅
+ 0x29206: "\xb0\x04\U00029206", // 𩈆
+ 0x29207: "\xb0\x04\U00029207", // 𩈇
+ 0x29208: "\xb0\x04\U00029208", // 𩈈
+ 0x29209: "\xb0\x04\U00029209", // 𩈉
+ 0x2920a: "\xb0\x04\U0002920a", // 𩈊
+ 0x2920b: "\xb0\x04\U0002920b", // 𩈋
+ 0x2920c: "\xb0\x04\U0002920c", // 𩈌
+ 0x2920d: "\xb0\x05\U0002920d", // 𩈍
+ 0x2920e: "\xb0\x05\U0002920e", // 𩈎
+ 0x2920f: "\xb0\x05\U0002920f", // 𩈏
+ 0x29210: "\xb0\x05\U00029210", // 𩈐
+ 0x29211: "\xb0\x05\U00029211", // 𩈑
+ 0x29212: "\xb0\x05\U00029212", // 𩈒
+ 0x29213: "\xb0\x05\U00029213", // 𩈓
+ 0x29214: "\xb0\x05\U00029214", // 𩈔
+ 0x29215: "\xb0\x05\U00029215", // 𩈕
+ 0x29216: "\xb0\x05\U00029216", // 𩈖
+ 0x29217: "\xb0\x05\U00029217", // 𩈗
+ 0x29218: "\xb0\x05\U00029218", // 𩈘
+ 0x29219: "\xb0\x06\U00029219", // 𩈙
+ 0x2921a: "\xb0\x06\U0002921a", // 𩈚
+ 0x2921b: "\xb0\x06\U0002921b", // 𩈛
+ 0x2921c: "\xb0\x06\U0002921c", // 𩈜
+ 0x2921d: "\xb0\x06\U0002921d", // 𩈝
+ 0x2921e: "\xb0\x06\U0002921e", // 𩈞
+ 0x2921f: "\xb0\x06\U0002921f", // 𩈟
+ 0x29220: "\xb0\x06\U00029220", // 𩈠
+ 0x29221: "\xb0\a\U00029221", // 𩈡
+ 0x29222: "\xb0\a\U00029222", // 𩈢
+ 0x29223: "\xb0\a\U00029223", // 𩈣
+ 0x29224: "\xb0\a\U00029224", // 𩈤
+ 0x29225: "\xb0\a\U00029225", // 𩈥
+ 0x29226: "\xb0\a\U00029226", // 𩈦
+ 0x29227: "\xb0\a\U00029227", // 𩈧
+ 0x29228: "\xb0\a\U00029228", // 𩈨
+ 0x29229: "\xb0\a\U00029229", // 𩈩
+ 0x2922a: "\xb0\a\U0002922a", // 𩈪
+ 0x2922b: "\xb0\b\U0002922b", // 𩈫
+ 0x2922c: "\xb0\b\U0002922c", // 𩈬
+ 0x2922d: "\xb0\b\U0002922d", // 𩈭
+ 0x2922e: "\xb0\b\U0002922e", // 𩈮
+ 0x2922f: "\xb0\b\U0002922f", // 𩈯
+ 0x29230: "\xb0\b\U00029230", // 𩈰
+ 0x29231: "\xb0\b\U00029231", // 𩈱
+ 0x29232: "\xb0\t\U00029232", // 𩈲
+ 0x29233: "\xb0\t\U00029233", // 𩈳
+ 0x29234: "\xb0\t\U00029234", // 𩈴
+ 0x29235: "\xb0\t\U00029235", // 𩈵
+ 0x29236: "\xb0\t\U00029236", // 𩈶
+ 0x29237: "\xb0\t\U00029237", // 𩈷
+ 0x29238: "\xb0\n\U00029238", // 𩈸
+ 0x29239: "\xb0\n\U00029239", // 𩈹
+ 0x2923a: "\xb0\n\U0002923a", // 𩈺
+ 0x2923b: "\xb0\v\U0002923b", // 𩈻
+ 0x2923c: "\xb0\v\U0002923c", // 𩈼
+ 0x2923d: "\xb0\v\U0002923d", // 𩈽
+ 0x2923e: "\xb0\v\U0002923e", // 𩈾
+ 0x2923f: "\xb0\v\U0002923f", // 𩈿
+ 0x29240: "\xb0\v\U00029240", // 𩉀
+ 0x29241: "\xb0\f\U00029241", // 𩉁
+ 0x29242: "\xb0\f\U00029242", // 𩉂
+ 0x29243: "\xb0\f\U00029243", // 𩉃
+ 0x29244: "\xb0\f\U00029244", // 𩉄
+ 0x29245: "\xb0\f\U00029245", // 𩉅
+ 0x29246: "\xb0\f\U00029246", // 𩉆
+ 0x29247: "\xb0\f\U00029247", // 𩉇
+ 0x29248: "\xb0\f\U00029248", // 𩉈
+ 0x29249: "\xb0\f\U00029249", // 𩉉
+ 0x2924a: "\xb0\r\U0002924a", // 𩉊
+ 0x2924b: "\xb0\r\U0002924b", // 𩉋
+ 0x2924c: "\xb0\x0e\U0002924c", // 𩉌
+ 0x2924d: "\xb0\x0e\U0002924d", // 𩉍
+ 0x2924e: "\xb0\x0e\U0002924e", // 𩉎
+ 0x2924f: "\xb0\x0e\U0002924f", // 𩉏
+ 0x29250: "\xb0\x0e\U00029250", // 𩉐
+ 0x29251: "\xb0\x0f\U00029251", // 𩉑
+ 0x29252: "\xb0\x0f\U00029252", // 𩉒
+ 0x29253: "\xb0\x10\U00029253", // 𩉓
+ 0x29254: "\xb0\x11\U00029254", // 𩉔
+ 0x29255: "\xb0\x11\U00029255", // 𩉕
+ 0x29256: "\xb0\x12\U00029256", // 𩉖
+ 0x29257: "\xb0\x12\U00029257", // 𩉗
+ 0x29258: "\xb0\x12\U00029258", // 𩉘
+ 0x29259: "\xb0\x13\U00029259", // 𩉙
+ 0x2925a: "\xb0\x13\U0002925a", // 𩉚
+ 0x2925b: "\xb1\x02\U0002925b", // 𩉛
+ 0x2925c: "\xb1\x02\U0002925c", // 𩉜
+ 0x2925d: "\xb1\x03\U0002925d", // 𩉝
+ 0x2925e: "\xb1\x03\U0002925e", // 𩉞
+ 0x2925f: "\xb1\x03\U0002925f", // 𩉟
+ 0x29260: "\xb1\x03\U00029260", // 𩉠
+ 0x29261: "\xb1\x04\U00029261", // 𩉡
+ 0x29262: "\xb1\x04\U00029262", // 𩉢
+ 0x29263: "\xb1\x04\U00029263", // 𩉣
+ 0x29264: "\xb1\x04\U00029264", // 𩉤
+ 0x29265: "\xb1\x04\U00029265", // 𩉥
+ 0x29266: "\xb1\x04\U00029266", // 𩉦
+ 0x29267: "\xb1\x04\U00029267", // 𩉧
+ 0x29268: "\xb1\x04\U00029268", // 𩉨
+ 0x29269: "\xb1\x04\U00029269", // 𩉩
+ 0x2926a: "\xb1\x04\U0002926a", // 𩉪
+ 0x2926b: "\xb1\x04\U0002926b", // 𩉫
+ 0x2926c: "\xb1\x04\U0002926c", // 𩉬
+ 0x2926d: "\xb1\x04\U0002926d", // 𩉭
+ 0x2926e: "\xb1\x04\U0002926e", // 𩉮
+ 0x2926f: "\xb1\x04\U0002926f", // 𩉯
+ 0x29270: "\xb1\x04\U00029270", // 𩉰
+ 0x29271: "\xb1\x04\U00029271", // 𩉱
+ 0x29272: "\xb1\x04\U00029272", // 𩉲
+ 0x29273: "\xb1\x04\U00029273", // 𩉳
+ 0x29274: "\xb1\x04\U00029274", // 𩉴
+ 0x29275: "\xb1\x04\U00029275", // 𩉵
+ 0x29276: "\xb1\x04\U00029276", // 𩉶
+ 0x29277: "\xb1\x04\U00029277", // 𩉷
+ 0x29278: "\xb1\x05\U00029278", // 𩉸
+ 0x29279: "\xb1\x05\U00029279", // 𩉹
+ 0x2927a: "\xb1\x05\U0002927a", // 𩉺
+ 0x2927b: "\xb1\x05\U0002927b", // 𩉻
+ 0x2927c: "\xb1\x05\U0002927c", // 𩉼
+ 0x2927d: "\xb1\x05\U0002927d", // 𩉽
+ 0x2927e: "\xb1\x05\U0002927e", // 𩉾
+ 0x2927f: "\xb1\x05\U0002927f", // 𩉿
+ 0x29280: "\xb1\x05\U00029280", // 𩊀
+ 0x29281: "\xb1\x05\U00029281", // 𩊁
+ 0x29282: "\xb1\x05\U00029282", // 𩊂
+ 0x29283: "\xb1\x05\U00029283", // 𩊃
+ 0x29284: "\xb1\x05\U00029284", // 𩊄
+ 0x29285: "\xb1\x05\U00029285", // 𩊅
+ 0x29286: "\xb1\x05\U00029286", // 𩊆
+ 0x29287: "\xb1\x05\U00029287", // 𩊇
+ 0x29288: "\xb1\x05\U00029288", // 𩊈
+ 0x29289: "\xb1\x05\U00029289", // 𩊉
+ 0x2928a: "\xb1\x05\U0002928a", // 𩊊
+ 0x2928b: "\xb1\x05\U0002928b", // 𩊋
+ 0x2928c: "\xb1\x05\U0002928c", // 𩊌
+ 0x2928d: "\xb1\x05\U0002928d", // 𩊍
+ 0x2928e: "\xb1\x05\U0002928e", // 𩊎
+ 0x2928f: "\xb1\x05\U0002928f", // 𩊏
+ 0x29290: "\xb1\x06\U00029290", // 𩊐
+ 0x29291: "\xb1\x06\U00029291", // 𩊑
+ 0x29292: "\xb1\x06\U00029292", // 𩊒
+ 0x29293: "\xb1\x06\U00029293", // 𩊓
+ 0x29294: "\xb1\x06\U00029294", // 𩊔
+ 0x29295: "\xb1\x06\U00029295", // 𩊕
+ 0x29296: "\xb1\x06\U00029296", // 𩊖
+ 0x29297: "\xb1\x06\U00029297", // 𩊗
+ 0x29298: "\xb1\x06\U00029298", // 𩊘
+ 0x29299: "\xb1\x06\U00029299", // 𩊙
+ 0x2929a: "\xb1\x06\U0002929a", // 𩊚
+ 0x2929b: "\xb1\x06\U0002929b", // 𩊛
+ 0x2929c: "\xb1\x06\U0002929c", // 𩊜
+ 0x2929d: "\xb1\x06\U0002929d", // 𩊝
+ 0x2929e: "\xb1\x06\U0002929e", // 𩊞
+ 0x2929f: "\xb1\x06\U0002929f", // 𩊟
+ 0x292a0: "\xb1\x06\U000292a0", // 𩊠
+ 0x292a1: "\xb1\x06\U000292a1", // 𩊡
+ 0x292a2: "\xb1\x06\U000292a2", // 𩊢
+ 0x292a3: "\xb1\x06\U000292a3", // 𩊣
+ 0x292a4: "\xb1\x06\U000292a4", // 𩊤
+ 0x292a5: "\xb1\x06\U000292a5", // 𩊥
+ 0x292a6: "\xb1\x06\U000292a6", // 𩊦
+ 0x292a7: "\xb1\x06\U000292a7", // 𩊧
+ 0x292a8: "\xb1\x06\U000292a8", // 𩊨
+ 0x292a9: "\xb1\a\U000292a9", // 𩊩
+ 0x292aa: "\xb1\a\U000292aa", // 𩊪
+ 0x292ab: "\xb1\a\U000292ab", // 𩊫
+ 0x292ac: "\xb1\a\U000292ac", // 𩊬
+ 0x292ad: "\xb1\a\U000292ad", // 𩊭
+ 0x292ae: "\xb1\a\U000292ae", // 𩊮
+ 0x292af: "\xb1\a\U000292af", // 𩊯
+ 0x292b0: "\xb1\a\U000292b0", // 𩊰
+ 0x292b1: "\xb1\a\U000292b1", // 𩊱
+ 0x292b2: "\xb1\a\U000292b2", // 𩊲
+ 0x292b3: "\xb1\a\U000292b3", // 𩊳
+ 0x292b4: "\xb1\a\U000292b4", // 𩊴
+ 0x292b5: "\xb1\a\U000292b5", // 𩊵
+ 0x292b6: "\xb1\a\U000292b6", // 𩊶
+ 0x292b7: "\xb1\a\U000292b7", // 𩊷
+ 0x292b8: "\xb1\a\U000292b8", // 𩊸
+ 0x292b9: "\xb1\a\U000292b9", // 𩊹
+ 0x292ba: "\xb1\a\U000292ba", // 𩊺
+ 0x292bb: "\xb1\a\U000292bb", // 𩊻
+ 0x292bc: "\xb1\a\U000292bc", // 𩊼
+ 0x292bd: "\xb1\a\U000292bd", // 𩊽
+ 0x292be: "\xb1\a\U000292be", // 𩊾
+ 0x292bf: "\xb1\b\U000292bf", // 𩊿
+ 0x292c0: "\xb1\b\U000292c0", // 𩋀
+ 0x292c1: "\xb1\b\U000292c1", // 𩋁
+ 0x292c2: "\xb1\b\U000292c2", // 𩋂
+ 0x292c3: "\xb1\b\U000292c3", // 𩋃
+ 0x292c4: "\xb1\b\U000292c4", // 𩋄
+ 0x292c5: "\xb1\b\U000292c5", // 𩋅
+ 0x292c6: "\xb1\b\U000292c6", // 𩋆
+ 0x292c7: "\xb1\b\U000292c7", // 𩋇
+ 0x292c8: "\xb1\b\U000292c8", // 𩋈
+ 0x292c9: "\xb1\b\U000292c9", // 𩋉
+ 0x292ca: "\xb1\b\U000292ca", // 𩋊
+ 0x292cb: "\xb1\b\U000292cb", // 𩋋
+ 0x292cc: "\xb1\b\U000292cc", // 𩋌
+ 0x292cd: "\xb1\b\U000292cd", // 𩋍
+ 0x292ce: "\xb1\b\U000292ce", // 𩋎
+ 0x292cf: "\xb1\b\U000292cf", // 𩋏
+ 0x292d0: "\xb1\b\U000292d0", // 𩋐
+ 0x292d1: "\xb1\b\U000292d1", // 𩋑
+ 0x292d2: "\xb1\b\U000292d2", // 𩋒
+ 0x292d3: "\xb1\b\U000292d3", // 𩋓
+ 0x292d4: "\xb1\b\U000292d4", // 𩋔
+ 0x292d5: "\xb1\b\U000292d5", // 𩋕
+ 0x292d6: "\xb1\b\U000292d6", // 𩋖
+ 0x292d7: "\xb1\b\U000292d7", // 𩋗
+ 0x292d8: "\xb1\b\U000292d8", // 𩋘
+ 0x292d9: "\xb1\b\U000292d9", // 𩋙
+ 0x292da: "\xb1\b\U000292da", // 𩋚
+ 0x292db: "\xb1\b\U000292db", // 𩋛
+ 0x292dc: "\xb1\b\U000292dc", // 𩋜
+ 0x292dd: "\xb1\b\U000292dd", // 𩋝
+ 0x292de: "\xb1\b\U000292de", // 𩋞
+ 0x292df: "\xb1\t\U000292df", // 𩋟
+ 0x292e0: "\xb1\t\U000292e0", // 𩋠
+ 0x292e1: "\xb1\t\U000292e1", // 𩋡
+ 0x292e2: "\xb1\t\U000292e2", // 𩋢
+ 0x292e3: "\xb1\t\U000292e3", // 𩋣
+ 0x292e4: "\xb1\t\U000292e4", // 𩋤
+ 0x292e5: "\xb1\t\U000292e5", // 𩋥
+ 0x292e6: "\xb1\t\U000292e6", // 𩋦
+ 0x292e7: "\xb1\t\U000292e7", // 𩋧
+ 0x292e8: "\xb1\t\U000292e8", // 𩋨
+ 0x292e9: "\xb1\t\U000292e9", // 𩋩
+ 0x292ea: "\xb1\t\U000292ea", // 𩋪
+ 0x292eb: "\xb1\t\U000292eb", // 𩋫
+ 0x292ec: "\xb1\t\U000292ec", // 𩋬
+ 0x292ed: "\xb1\t\U000292ed", // 𩋭
+ 0x292ee: "\xb1\t\U000292ee", // 𩋮
+ 0x292ef: "\xb1\t\U000292ef", // 𩋯
+ 0x292f0: "\xb1\t\U000292f0", // 𩋰
+ 0x292f1: "\xb1\t\U000292f1", // 𩋱
+ 0x292f2: "\xb1\t\U000292f2", // 𩋲
+ 0x292f3: "\xb1\t\U000292f3", // 𩋳
+ 0x292f4: "\xb1\t\U000292f4", // 𩋴
+ 0x292f5: "\xb1\t\U000292f5", // 𩋵
+ 0x292f6: "\xb1\t\U000292f6", // 𩋶
+ 0x292f7: "\xb1\t\U000292f7", // 𩋷
+ 0x292f8: "\xb1\t\U000292f8", // 𩋸
+ 0x292f9: "\xb1\t\U000292f9", // 𩋹
+ 0x292fa: "\xb1\t\U000292fa", // 𩋺
+ 0x292fb: "\xb1\t\U000292fb", // 𩋻
+ 0x292fc: "\xb1\t\U000292fc", // 𩋼
+ 0x292fd: "\xb1\t\U000292fd", // 𩋽
+ 0x292fe: "\xb1\t\U000292fe", // 𩋾
+ 0x292ff: "\xb1\t\U000292ff", // 𩋿
+ 0x29300: "\xb1\t\U00029300", // 𩌀
+ 0x29301: "\xb1\t\U00029301", // 𩌁
+ 0x29302: "\xb1\t\U00029302", // 𩌂
+ 0x29303: "\xb1\n\U00029303", // 𩌃
+ 0x29304: "\xb1\n\U00029304", // 𩌄
+ 0x29305: "\xb1\n\U00029305", // 𩌅
+ 0x29306: "\xb1\n\U00029306", // 𩌆
+ 0x29307: "\xb1\n\U00029307", // 𩌇
+ 0x29308: "\xb1\n\U00029308", // 𩌈
+ 0x29309: "\xb1\n\U00029309", // 𩌉
+ 0x2930a: "\xb1\n\U0002930a", // 𩌊
+ 0x2930b: "\xb1\n\U0002930b", // 𩌋
+ 0x2930c: "\xb1\n\U0002930c", // 𩌌
+ 0x2930d: "\xb1\n\U0002930d", // 𩌍
+ 0x2930e: "\xb1\n\U0002930e", // 𩌎
+ 0x2930f: "\xb1\n\U0002930f", // 𩌏
+ 0x29310: "\xb1\n\U00029310", // 𩌐
+ 0x29311: "\xb1\n\U00029311", // 𩌑
+ 0x29312: "\xb1\n\U00029312", // 𩌒
+ 0x29313: "\xb1\n\U00029313", // 𩌓
+ 0x29314: "\xb1\n\U00029314", // 𩌔
+ 0x29315: "\xb1\n\U00029315", // 𩌕
+ 0x29316: "\xb1\n\U00029316", // 𩌖
+ 0x29317: "\xb1\n\U00029317", // 𩌗
+ 0x29318: "\xb1\n\U00029318", // 𩌘
+ 0x29319: "\xb1\n\U00029319", // 𩌙
+ 0x2931a: "\xb1\n\U0002931a", // 𩌚
+ 0x2931b: "\xb1\n\U0002931b", // 𩌛
+ 0x2931c: "\xb1\n\U0002931c", // 𩌜
+ 0x2931d: "\xb1\n\U0002931d", // 𩌝
+ 0x2931e: "\xb1\n\U0002931e", // 𩌞
+ 0x2931f: "\xb1\n\U0002931f", // 𩌟
+ 0x29320: "\xb1\n\U00029320", // 𩌠
+ 0x29321: "\xb1\n\U00029321", // 𩌡
+ 0x29322: "\xb1\n\U00029322", // 𩌢
+ 0x29323: "\xb1\n\U00029323", // 𩌣
+ 0x29324: "\xb1\n\U00029324", // 𩌤
+ 0x29325: "\xb1\n\U00029325", // 𩌥
+ 0x29326: "\xb1\v\U00029326", // 𩌦
+ 0x29327: "\xb1\v\U00029327", // 𩌧
+ 0x29328: "\xb1\v\U00029328", // 𩌨
+ 0x29329: "\xb1\v\U00029329", // 𩌩
+ 0x2932a: "\xb1\v\U0002932a", // 𩌪
+ 0x2932b: "\xb1\v\U0002932b", // 𩌫
+ 0x2932c: "\xb1\v\U0002932c", // 𩌬
+ 0x2932d: "\xb1\v\U0002932d", // 𩌭
+ 0x2932e: "\xb1\v\U0002932e", // 𩌮
+ 0x2932f: "\xb1\v\U0002932f", // 𩌯
+ 0x29330: "\xb1\v\U00029330", // 𩌰
+ 0x29331: "\xb1\v\U00029331", // 𩌱
+ 0x29332: "\xb1\v\U00029332", // 𩌲
+ 0x29333: "\xb1\v\U00029333", // 𩌳
+ 0x29334: "\xb1\v\U00029334", // 𩌴
+ 0x29335: "\xb1\v\U00029335", // 𩌵
+ 0x29336: "\xb1\v\U00029336", // 𩌶
+ 0x29337: "\xb1\v\U00029337", // 𩌷
+ 0x29338: "\xb1\v\U00029338", // 𩌸
+ 0x29339: "\xb1\v\U00029339", // 𩌹
+ 0x2933a: "\xb1\v\U0002933a", // 𩌺
+ 0x2933b: "\xb1\v\U0002933b", // 𩌻
+ 0x2933c: "\xb1\v\U0002933c", // 𩌼
+ 0x2933d: "\xb1\v\U0002933d", // 𩌽
+ 0x2933e: "\xb1\v\U0002933e", // 𩌾
+ 0x2933f: "\xb1\v\U0002933f", // 𩌿
+ 0x29340: "\xb1\v\U00029340", // 𩍀
+ 0x29341: "\xb1\v\U00029341", // 𩍁
+ 0x29342: "\xb1\v\U00029342", // 𩍂
+ 0x29343: "\xb1\f\U00029343", // 𩍃
+ 0x29344: "\xb1\f\U00029344", // 𩍄
+ 0x29345: "\xb1\f\U00029345", // 𩍅
+ 0x29346: "\xb1\f\U00029346", // 𩍆
+ 0x29347: "\xb1\f\U00029347", // 𩍇
+ 0x29348: "\xb1\f\U00029348", // 𩍈
+ 0x29349: "\xb1\f\U00029349", // 𩍉
+ 0x2934a: "\xb1\f\U0002934a", // 𩍊
+ 0x2934b: "\xb1\f\U0002934b", // 𩍋
+ 0x2934c: "\xb1\f\U0002934c", // 𩍌
+ 0x2934d: "\xb1\f\U0002934d", // 𩍍
+ 0x2934e: "\xb1\f\U0002934e", // 𩍎
+ 0x2934f: "\xb1\f\U0002934f", // 𩍏
+ 0x29350: "\xb1\f\U00029350", // 𩍐
+ 0x29351: "\xb1\f\U00029351", // 𩍑
+ 0x29352: "\xb1\f\U00029352", // 𩍒
+ 0x29353: "\xb1\r\U00029353", // 𩍓
+ 0x29354: "\xb1\r\U00029354", // 𩍔
+ 0x29355: "\xb1\r\U00029355", // 𩍕
+ 0x29356: "\xb1\r\U00029356", // 𩍖
+ 0x29357: "\xb1\r\U00029357", // 𩍗
+ 0x29358: "\xb1\r\U00029358", // 𩍘
+ 0x29359: "\xb1\r\U00029359", // 𩍙
+ 0x2935a: "\xb1\r\U0002935a", // 𩍚
+ 0x2935b: "\xb1\r\U0002935b", // 𩍛
+ 0x2935c: "\xb1\r\U0002935c", // 𩍜
+ 0x2935d: "\xb1\r\U0002935d", // 𩍝
+ 0x2935e: "\xb1\r\U0002935e", // 𩍞
+ 0x2935f: "\xb1\r\U0002935f", // 𩍟
+ 0x29360: "\xb1\r\U00029360", // 𩍠
+ 0x29361: "\xb1\r\U00029361", // 𩍡
+ 0x29362: "\xb1\r\U00029362", // 𩍢
+ 0x29363: "\xb1\r\U00029363", // 𩍣
+ 0x29364: "\xb1\r\U00029364", // 𩍤
+ 0x29365: "\xb1\x0e\U00029365", // 𩍥
+ 0x29366: "\xb1\x0e\U00029366", // 𩍦
+ 0x29367: "\xb1\x0e\U00029367", // 𩍧
+ 0x29368: "\xb1\x0e\U00029368", // 𩍨
+ 0x29369: "\xb1\x0e\U00029369", // 𩍩
+ 0x2936a: "\xb1\x0e\U0002936a", // 𩍪
+ 0x2936b: "\xb1\x0e\U0002936b", // 𩍫
+ 0x2936c: "\xb1\x0e\U0002936c", // 𩍬
+ 0x2936d: "\xb1\x0e\U0002936d", // 𩍭
+ 0x2936e: "\xb1\x0e\U0002936e", // 𩍮
+ 0x2936f: "\xb1\x0e\U0002936f", // 𩍯
+ 0x29370: "\xb1\x0e\U00029370", // 𩍰
+ 0x29371: "\xb1\x0e\U00029371", // 𩍱
+ 0x29372: "\xb1\x0f\U00029372", // 𩍲
+ 0x29373: "\xb1\x0f\U00029373", // 𩍳
+ 0x29374: "\xb1\x0f\U00029374", // 𩍴
+ 0x29375: "\xb1\x0f\U00029375", // 𩍵
+ 0x29376: "\xb1\x0f\U00029376", // 𩍶
+ 0x29377: "\xb1\x0f\U00029377", // 𩍷
+ 0x29378: "\xb1\x10\U00029378", // 𩍸
+ 0x29379: "\xb1\x10\U00029379", // 𩍹
+ 0x2937a: "\xb1\x10\U0002937a", // 𩍺
+ 0x2937b: "\xc1\x0f\U0002937b", // 𩍻
+ 0x2937c: "\xb1\x10\U0002937c", // 𩍼
+ 0x2937d: "\xb1\x10\U0002937d", // 𩍽
+ 0x2937e: "\xb1\x10\U0002937e", // 𩍾
+ 0x2937f: "\xb1\x11\U0002937f", // 𩍿
+ 0x29380: "\xb1\x11\U00029380", // 𩎀
+ 0x29381: "\xb1\x11\U00029381", // 𩎁
+ 0x29382: "\xb1\x11\U00029382", // 𩎂
+ 0x29383: "\xb1\x11\U00029383", // 𩎃
+ 0x29384: "\xb1\x11\U00029384", // 𩎄
+ 0x29385: "\xb1\x11\U00029385", // 𩎅
+ 0x29386: "\xb1\x11\U00029386", // 𩎆
+ 0x29387: "\xb1\x12\U00029387", // 𩎇
+ 0x29388: "\xb1\x13\U00029388", // 𩎈
+ 0x29389: "\xb1\x13\U00029389", // 𩎉
+ 0x2938a: "\xb1\x13\U0002938a", // 𩎊
+ 0x2938b: "\xb1\x15\U0002938b", // 𩎋
+ 0x2938c: "\xb1\x17\U0002938c", // 𩎌
+ 0x2938d: "\xb1\x17\U0002938d", // 𩎍
+ 0x2938e: "\xb1\x18\U0002938e", // 𩎎
+ 0x2938f: "\xb1\x18\U0002938f", // 𩎏
+ 0x29390: "\xb1\x19\U00029390", // 𩎐
+ 0x29391: "\xb1\x1d\U00029391", // 𩎑
+ 0x29392: "\xb2\x03\U00029392", // 𩎒
+ 0x29393: "\xb2\x04\U00029393", // 𩎓
+ 0x29394: "\xb2\x04\U00029394", // 𩎔
+ 0x29395: "\xb2\x04\U00029395", // 𩎕
+ 0x29396: "\xb2\x04\U00029396", // 𩎖
+ 0x29397: "\xb2\x04\U00029397", // 𩎗
+ 0x29398: "\xb2\x05\U00029398", // 𩎘
+ 0x29399: "\xb2\x05\U00029399", // 𩎙
+ 0x2939a: "\xb2\x05\U0002939a", // 𩎚
+ 0x2939b: "\xb2\x05\U0002939b", // 𩎛
+ 0x2939c: "\xb2\x05\U0002939c", // 𩎜
+ 0x2939d: "\xb2\x05\U0002939d", // 𩎝
+ 0x2939e: "\xb2\x05\U0002939e", // 𩎞
+ 0x2939f: "\xb2\x05\U0002939f", // 𩎟
+ 0x293a0: "\xb2\x05\U000293a0", // 𩎠
+ 0x293a1: "\xb2\x05\U000293a1", // 𩎡
+ 0x293a2: "\xb2\x05\U000293a2", // 𩎢
+ 0x293a3: "\xb2\x05\U000293a3", // 𩎣
+ 0x293a4: "\xb2\x06\U000293a4", // 𩎤
+ 0x293a5: "\xb2\x06\U000293a5", // 𩎥
+ 0x293a6: "\xb2\x06\U000293a6", // 𩎦
+ 0x293a7: "\xb2\x06\U000293a7", // 𩎧
+ 0x293a8: "\xb2\x06\U000293a8", // 𩎨
+ 0x293a9: "\xb2\x06\U000293a9", // 𩎩
+ 0x293aa: "\xb2\x06\U000293aa", // 𩎪
+ 0x293ab: "\xb2\x06\U000293ab", // 𩎫
+ 0x293ac: "\xb2\x06\U000293ac", // 𩎬
+ 0x293ad: "\xb2\x06\U000293ad", // 𩎭
+ 0x293ae: "\xb2\x06\U000293ae", // 𩎮
+ 0x293af: "\xb2\a\U000293af", // 𩎯
+ 0x293b0: "\xb2\a\U000293b0", // 𩎰
+ 0x293b1: "\xb2\a\U000293b1", // 𩎱
+ 0x293b2: "\xb2\a\U000293b2", // 𩎲
+ 0x293b3: "\xb2\a\U000293b3", // 𩎳
+ 0x293b4: "\xb2\a\U000293b4", // 𩎴
+ 0x293b5: "\xb2\a\U000293b5", // 𩎵
+ 0x293b6: "\xb2\a\U000293b6", // 𩎶
+ 0x293b7: "\xb2\a\U000293b7", // 𩎷
+ 0x293b8: "\xb2\b\U000293b8", // 𩎸
+ 0x293b9: "\xb2\b\U000293b9", // 𩎹
+ 0x293ba: "\xb2\b\U000293ba", // 𩎺
+ 0x293bb: "\xb2\b\U000293bb", // 𩎻
+ 0x293bc: "\xb2\b\U000293bc", // 𩎼
+ 0x293bd: "\xb2\b\U000293bd", // 𩎽
+ 0x293be: "\xb2\b\U000293be", // 𩎾
+ 0x293bf: "\xb2\b\U000293bf", // 𩎿
+ 0x293c0: "\xb2\b\U000293c0", // 𩏀
+ 0x293c1: "\xb2\b\U000293c1", // 𩏁
+ 0x293c2: "\xb2\b\U000293c2", // 𩏂
+ 0x293c3: "\xb2\b\U000293c3", // 𩏃
+ 0x293c4: "\xb2\b\U000293c4", // 𩏄
+ 0x293c5: "\xb2\t\U000293c5", // 𩏅
+ 0x293c6: "\xb2\t\U000293c6", // 𩏆
+ 0x293c7: "\xb2\t\U000293c7", // 𩏇
+ 0x293c8: "\xb2\t\U000293c8", // 𩏈
+ 0x293c9: "\xb2\t\U000293c9", // 𩏉
+ 0x293ca: "\xb2\t\U000293ca", // 𩏊
+ 0x293cb: "\xb2\t\U000293cb", // 𩏋
+ 0x293cc: "\xb2\t\U000293cc", // 𩏌
+ 0x293cd: "\xb2\t\U000293cd", // 𩏍
+ 0x293ce: "\xb2\t\U000293ce", // 𩏎
+ 0x293cf: "\xb2\n\U000293cf", // 𩏏
+ 0x293d0: "\xb2\n\U000293d0", // 𩏐
+ 0x293d1: "\xb2\n\U000293d1", // 𩏑
+ 0x293d2: "\xb2\n\U000293d2", // 𩏒
+ 0x293d3: "\xb2\n\U000293d3", // 𩏓
+ 0x293d4: "\xb2\n\U000293d4", // 𩏔
+ 0x293d5: "\xb2\n\U000293d5", // 𩏕
+ 0x293d6: "\xb2\n\U000293d6", // 𩏖
+ 0x293d7: "\xb2\n\U000293d7", // 𩏗
+ 0x293d8: "\xb2\v\U000293d8", // 𩏘
+ 0x293d9: "\xb2\v\U000293d9", // 𩏙
+ 0x293da: "\xb2\v\U000293da", // 𩏚
+ 0x293db: "\xb2\v\U000293db", // 𩏛
+ 0x293dc: "\xb2\v\U000293dc", // 𩏜
+ 0x293dd: "\xb2\v\U000293dd", // 𩏝
+ 0x293de: "\xb2\v\U000293de", // 𩏞
+ 0x293df: "\xb2\v\U000293df", // 𩏟
+ 0x293e0: "\xb2\f\U000293e0", // 𩏠
+ 0x293e1: "\xb2\f\U000293e1", // 𩏡
+ 0x293e2: "\xb2\f\U000293e2", // 𩏢
+ 0x293e3: "\xb2\f\U000293e3", // 𩏣
+ 0x293e4: "\xb2\f\U000293e4", // 𩏤
+ 0x293e5: "\xb2\f\U000293e5", // 𩏥
+ 0x293e6: "\xb2\f\U000293e6", // 𩏦
+ 0x293e7: "\xb2\f\U000293e7", // 𩏧
+ 0x293e8: "\xb2\r\U000293e8", // 𩏨
+ 0x293e9: "\xb2\r\U000293e9", // 𩏩
+ 0x293ea: "\xb2\r\U000293ea", // 𩏪
+ 0x293eb: "\xb2\r\U000293eb", // 𩏫
+ 0x293ec: "\xb2\r\U000293ec", // 𩏬
+ 0x293ed: "\xb2\r\U000293ed", // 𩏭
+ 0x293ee: "\xb2\x0e\U000293ee", // 𩏮
+ 0x293ef: "\xb2\x0e\U000293ef", // 𩏯
+ 0x293f0: "\xb2\x0e\U000293f0", // 𩏰
+ 0x293f1: "\xb2\x0e\U000293f1", // 𩏱
+ 0x293f2: "\xb2\x0f\U000293f2", // 𩏲
+ 0x293f3: "\xb2\x0f\U000293f3", // 𩏳
+ 0x293f4: "\xb2\x10\U000293f4", // 𩏴
+ 0x293f5: "\xb2\x11\U000293f5", // 𩏵
+ 0x293f6: "\xb2\x12\U000293f6", // 𩏶
+ 0x293f7: "\xb2\x12\U000293f7", // 𩏷
+ 0x293f8: "\xb2\x12\U000293f8", // 𩏸
+ 0x293f9: "\xb2\x13\U000293f9", // 𩏹
+ 0x293fa: "\xb2\x14\U000293fa", // 𩏺
+ 0x293fb: "\xb2\x14\U000293fb", // 𩏻
+ 0x293fc: "\xb2\x04\U000293fc", // 𩏼
+ 0x293fd: "\xb2\x05\U000293fd", // 𩏽
+ 0x293fe: "\xb2\x05\U000293fe", // 𩏾
+ 0x293ff: "\xb2\t\U000293ff", // 𩏿
+ 0x29400: "\xb2\t\U00029400", // 𩐀
+ 0x29401: "\xb3\x04\U00029401", // 𩐁
+ 0x29402: "\xb3\x04\U00029402", // 𩐂
+ 0x29403: "\xb3\x06\U00029403", // 𩐃
+ 0x29404: "\xb3\a\U00029404", // 𩐄
+ 0x29405: "\xb3\b\U00029405", // 𩐅
+ 0x29406: "\xb3\b\U00029406", // 𩐆
+ 0x29407: "\xb3\b\U00029407", // 𩐇
+ 0x29408: "\xb3\t\U00029408", // 𩐈
+ 0x29409: "\xb3\n\U00029409", // 𩐉
+ 0x2940a: "\xb3\n\U0002940a", // 𩐊
+ 0x2940b: "\xb3\v\U0002940b", // 𩐋
+ 0x2940c: "\xb3\f\U0002940c", // 𩐌
+ 0x2940d: "\xb3\v\U0002940d", // 𩐍
+ 0x2940e: "\xb3\v\U0002940e", // 𩐎
+ 0x2940f: "\xb3\f\U0002940f", // 𩐏
+ 0x29410: "\xb3\f\U00029410", // 𩐐
+ 0x29411: "\xb3\r\U00029411", // 𩐑
+ 0x29412: "\xb3\r\U00029412", // 𩐒
+ 0x29413: "\xb3\r\U00029413", // 𩐓
+ 0x29414: "\xb3\x0e\U00029414", // 𩐔
+ 0x29415: "\xb3\x0e\U00029415", // 𩐕
+ 0x29416: "\xb3\x10\U00029416", // 𩐖
+ 0x29417: "\xb4\x03\U00029417", // 𩐗
+ 0x29418: "\xb4\x04\U00029418", // 𩐘
+ 0x29419: "\xb4\x04\U00029419", // 𩐙
+ 0x2941a: "\xb4\x05\U0002941a", // 𩐚
+ 0x2941b: "\xb4\x05\U0002941b", // 𩐛
+ 0x2941c: "\xb4\x05\U0002941c", // 𩐜
+ 0x2941d: "\xb4\x05\U0002941d", // 𩐝
+ 0x2941e: "\xb4\x06\U0002941e", // 𩐞
+ 0x2941f: "\xb4\x06\U0002941f", // 𩐟
+ 0x29420: "\xb4\x06\U00029420", // 𩐠
+ 0x29421: "\xb4\x06\U00029421", // 𩐡
+ 0x29422: "\xb4\x06\U00029422", // 𩐢
+ 0x29423: "\xb4\x06\U00029423", // 𩐣
+ 0x29424: "\xb4\x06\U00029424", // 𩐤
+ 0x29425: "\xb4\x06\U00029425", // 𩐥
+ 0x29426: "\xb4\x06\U00029426", // 𩐦
+ 0x29427: "\xb4\a\U00029427", // 𩐧
+ 0x29428: "\xb4\a\U00029428", // 𩐨
+ 0x29429: "\xb4\a\U00029429", // 𩐩
+ 0x2942a: "\xb4\a\U0002942a", // 𩐪
+ 0x2942b: "\xb4\a\U0002942b", // 𩐫
+ 0x2942c: "\xb4\a\U0002942c", // 𩐬
+ 0x2942d: "\xb4\b\U0002942d", // 𩐭
+ 0x2942e: "\xb4\b\U0002942e", // 𩐮
+ 0x2942f: "\xb4\b\U0002942f", // 𩐯
+ 0x29430: "\xb4\b\U00029430", // 𩐰
+ 0x29431: "\xb4\t\U00029431", // 𩐱
+ 0x29432: "\xb4\t\U00029432", // 𩐲
+ 0x29433: "\xb4\t\U00029433", // 𩐳
+ 0x29434: "\xb4\t\U00029434", // 𩐴
+ 0x29435: "\xb4\n\U00029435", // 𩐵
+ 0x29436: "\xb4\n\U00029436", // 𩐶
+ 0x29437: "\xb4\n\U00029437", // 𩐷
+ 0x29438: "\xb4\n\U00029438", // 𩐸
+ 0x29439: "\xb4\v\U00029439", // 𩐹
+ 0x2943a: "\xb4\v\U0002943a", // 𩐺
+ 0x2943b: "\xb4\v\U0002943b", // 𩐻
+ 0x2943c: "\xb4\v\U0002943c", // 𩐼
+ 0x2943d: "\xb4\v\U0002943d", // 𩐽
+ 0x2943e: "\xb4\v\U0002943e", // 𩐾
+ 0x2943f: "\xb4\f\U0002943f", // 𩐿
+ 0x29440: "\xb4\f\U00029440", // 𩑀
+ 0x29441: "\xb4\f\U00029441", // 𩑁
+ 0x29442: "\xb4\r\U00029442", // 𩑂
+ 0x29443: "\xb4\r\U00029443", // 𩑃
+ 0x29444: "\xb4\r\U00029444", // 𩑄
+ 0x29445: "\xb4\r\U00029445", // 𩑅
+ 0x29446: "\xb4\r\U00029446", // 𩑆
+ 0x29447: "\xb4\x0e\U00029447", // 𩑇
+ 0x29448: "\xb4\x0f\U00029448", // 𩑈
+ 0x29449: "\xb4\x12\U00029449", // 𩑉
+ 0x2944a: "\xb4\x18\U0002944a", // 𩑊
+ 0x2944b: "\xb5\x00\U0002944b", // 𩑋
+ 0x2944c: "\xb5\x02\U0002944c", // 𩑌
+ 0x2944d: "\xb5\x02\U0002944d", // 𩑍
+ 0x2944e: "\xb5\x02\U0002944e", // 𩑎
+ 0x2944f: "\xb5\x02\U0002944f", // 𩑏
+ 0x29450: "\xb5\x03\U00029450", // 𩑐
+ 0x29451: "\xb5\x03\U00029451", // 𩑑
+ 0x29452: "\xb5\x03\U00029452", // 𩑒
+ 0x29453: "\xb5\x03\U00029453", // 𩑓
+ 0x29454: "\xb5\x03\U00029454", // 𩑔
+ 0x29455: "\xb5\x03\U00029455", // 𩑕
+ 0x29456: "\xb5\x03\U00029456", // 𩑖
+ 0x29457: "\xb5\x03\U00029457", // 𩑗
+ 0x29458: "\xb5\x03\U00029458", // 𩑘
+ 0x29459: "\xb5\x04\U00029459", // 𩑙
+ 0x2945a: "\xb5\x04\U0002945a", // 𩑚
+ 0x2945b: "\xb5\x04\U0002945b", // 𩑛
+ 0x2945c: "\xb5\x04\U0002945c", // 𩑜
+ 0x2945d: "\xb5\x04\U0002945d", // 𩑝
+ 0x2945e: "\xb5\x04\U0002945e", // 𩑞
+ 0x2945f: "\xb5\x04\U0002945f", // 𩑟
+ 0x29460: "\xb5\x04\U00029460", // 𩑠
+ 0x29461: "\xb5\x04\U00029461", // 𩑡
+ 0x29462: "\xb5\x04\U00029462", // 𩑢
+ 0x29463: "\xb5\x04\U00029463", // 𩑣
+ 0x29464: "\xb5\x04\U00029464", // 𩑤
+ 0x29465: "\xb5\x04\U00029465", // 𩑥
+ 0x29466: "\xb5\x04\U00029466", // 𩑦
+ 0x29467: "\xb5\x04\U00029467", // 𩑧
+ 0x29468: "\xb5\x04\U00029468", // 𩑨
+ 0x29469: "\xb5\x04\U00029469", // 𩑩
+ 0x2946a: "\xb5\x04\U0002946a", // 𩑪
+ 0x2946b: "\xb5\x04\U0002946b", // 𩑫
+ 0x2946c: "\xb5\x04\U0002946c", // 𩑬
+ 0x2946d: "\xb5\x04\U0002946d", // 𩑭
+ 0x2946e: "\xb5\x04\U0002946e", // 𩑮
+ 0x2946f: "\xb5\x04\U0002946f", // 𩑯
+ 0x29470: "\xb5\x05\U00029470", // 𩑰
+ 0x29471: "\xb5\x05\U00029471", // 𩑱
+ 0x29472: "\xb5\x05\U00029472", // 𩑲
+ 0x29473: "\xb5\x05\U00029473", // 𩑳
+ 0x29474: "\xb5\x05\U00029474", // 𩑴
+ 0x29475: "\xb5\x05\U00029475", // 𩑵
+ 0x29476: "\xb5\x05\U00029476", // 𩑶
+ 0x29477: "\xb5\x05\U00029477", // 𩑷
+ 0x29478: "\xb5\x05\U00029478", // 𩑸
+ 0x29479: "\xb5\x05\U00029479", // 𩑹
+ 0x2947a: "\xb5\x05\U0002947a", // 𩑺
+ 0x2947b: "\xb5\x05\U0002947b", // 𩑻
+ 0x2947c: "\xb5\x05\U0002947c", // 𩑼
+ 0x2947d: "\xb5\x05\U0002947d", // 𩑽
+ 0x2947e: "\xb5\x05\U0002947e", // 𩑾
+ 0x2947f: "\xb5\x05\U0002947f", // 𩑿
+ 0x29480: "\xb5\x05\U00029480", // 𩒀
+ 0x29481: "\xb5\x05\U00029481", // 𩒁
+ 0x29482: "\xb5\x05\U00029482", // 𩒂
+ 0x29483: "\xb5\x05\U00029483", // 𩒃
+ 0x29484: "\xb5\x05\U00029484", // 𩒄
+ 0x29485: "\xb5\x05\U00029485", // 𩒅
+ 0x29486: "\xb5\x05\U00029486", // 𩒆
+ 0x29487: "\xb5\x05\U00029487", // 𩒇
+ 0x29488: "\xb5\x05\U00029488", // 𩒈
+ 0x29489: "\xb5\x05\U00029489", // 𩒉
+ 0x2948a: "\xb5\x05\U0002948a", // 𩒊
+ 0x2948b: "\xb5\x05\U0002948b", // 𩒋
+ 0x2948c: "\xb5\x05\U0002948c", // 𩒌
+ 0x2948d: "\xb5\x05\U0002948d", // 𩒍
+ 0x2948e: "\xb5\x05\U0002948e", // 𩒎
+ 0x2948f: "\xb5\x06\U0002948f", // 𩒏
+ 0x29490: "\xb5\x06\U00029490", // 𩒐
+ 0x29491: "\xb5\x06\U00029491", // 𩒑
+ 0x29492: "\xb5\x06\U00029492", // 𩒒
+ 0x29493: "\xb5\x06\U00029493", // 𩒓
+ 0x29494: "\xb5\x06\U00029494", // 𩒔
+ 0x29495: "\xb5\x06\U00029495", // 𩒕
+ 0x29496: "\xb5\x06\U00029496", // 𩒖
+ 0x29497: "\xb5\x06\U00029497", // 𩒗
+ 0x29498: "\xb5\x06\U00029498", // 𩒘
+ 0x29499: "\xb5\x06\U00029499", // 𩒙
+ 0x2949a: "\xb5\x06\U0002949a", // 𩒚
+ 0x2949b: "\xb5\x06\U0002949b", // 𩒛
+ 0x2949c: "\xb5\x06\U0002949c", // 𩒜
+ 0x2949d: "\xb5\x06\U0002949d", // 𩒝
+ 0x2949e: "\xb5\x06\U0002949e", // 𩒞
+ 0x2949f: "\xb5\x06\U0002949f", // 𩒟
+ 0x294a0: "\xb5\x06\U000294a0", // 𩒠
+ 0x294a1: "\xb5\x06\U000294a1", // 𩒡
+ 0x294a2: "\xb5\x06\U000294a2", // 𩒢
+ 0x294a3: "\xb5\x06\U000294a3", // 𩒣
+ 0x294a4: "\xb5\x06\U000294a4", // 𩒤
+ 0x294a5: "\xb5\x06\U000294a5", // 𩒥
+ 0x294a6: "\xb5\x06\U000294a6", // 𩒦
+ 0x294a7: "\xb5\x06\U000294a7", // 𩒧
+ 0x294a8: "\xb5\x06\U000294a8", // 𩒨
+ 0x294a9: "\xb5\x06\U000294a9", // 𩒩
+ 0x294aa: "\xb5\x06\U000294aa", // 𩒪
+ 0x294ab: "\xb5\x06\U000294ab", // 𩒫
+ 0x294ac: "\xb5\x06\U000294ac", // 𩒬
+ 0x294ad: "\xb5\x06\U000294ad", // 𩒭
+ 0x294ae: "\xb5\a\U000294ae", // 𩒮
+ 0x294af: "\xb5\a\U000294af", // 𩒯
+ 0x294b0: "\xb5\a\U000294b0", // 𩒰
+ 0x294b1: "\xb5\a\U000294b1", // 𩒱
+ 0x294b2: "\xb5\a\U000294b2", // 𩒲
+ 0x294b3: "\xb5\a\U000294b3", // 𩒳
+ 0x294b4: "\xb5\a\U000294b4", // 𩒴
+ 0x294b5: "\xb5\a\U000294b5", // 𩒵
+ 0x294b6: "\xb5\a\U000294b6", // 𩒶
+ 0x294b7: "\xb5\a\U000294b7", // 𩒷
+ 0x294b8: "\xb5\a\U000294b8", // 𩒸
+ 0x294b9: "\xb5\a\U000294b9", // 𩒹
+ 0x294ba: "\xb5\a\U000294ba", // 𩒺
+ 0x294bb: "\xb5\a\U000294bb", // 𩒻
+ 0x294bc: "\xb5\a\U000294bc", // 𩒼
+ 0x294bd: "\xb5\a\U000294bd", // 𩒽
+ 0x294be: "\xb5\a\U000294be", // 𩒾
+ 0x294bf: "\xb5\a\U000294bf", // 𩒿
+ 0x294c0: "\xb5\a\U000294c0", // 𩓀
+ 0x294c1: "\xb5\a\U000294c1", // 𩓁
+ 0x294c2: "\xb5\a\U000294c2", // 𩓂
+ 0x294c3: "\xb5\a\U000294c3", // 𩓃
+ 0x294c4: "\xb5\a\U000294c4", // 𩓄
+ 0x294c5: "\xb5\a\U000294c5", // 𩓅
+ 0x294c6: "\xb5\a\U000294c6", // 𩓆
+ 0x294c7: "\xb5\a\U000294c7", // 𩓇
+ 0x294c8: "\xb5\a\U000294c8", // 𩓈
+ 0x294c9: "\xb5\a\U000294c9", // 𩓉
+ 0x294ca: "\xb5\a\U000294ca", // 𩓊
+ 0x294cb: "\xb5\a\U000294cb", // 𩓋
+ 0x294cc: "\xb5\a\U000294cc", // 𩓌
+ 0x294cd: "\xb5\a\U000294cd", // 𩓍
+ 0x294ce: "\xb5\a\U000294ce", // 𩓎
+ 0x294cf: "\xb5\a\U000294cf", // 𩓏
+ 0x294d0: "\xb5\a\U000294d0", // 𩓐
+ 0x294d1: "\xb5\a\U000294d1", // 𩓑
+ 0x294d2: "\xb5\a\U000294d2", // 𩓒
+ 0x294d3: "\xb5\a\U000294d3", // 𩓓
+ 0x294d4: "\xb5\a\U000294d4", // 𩓔
+ 0x294d5: "\xb5\a\U000294d5", // 𩓕
+ 0x294d6: "\xb5\a\U000294d6", // 𩓖
+ 0x294d7: "\xb5\a\U000294d7", // 𩓗
+ 0x294d8: "\xb5\a\U000294d8", // 𩓘
+ 0x294d9: "\xb5\a\U000294d9", // 𩓙
+ 0x294da: "\xb5\a\U000294da", // 𩓚
+ 0x294db: "\xb5\a\U000294db", // 𩓛
+ 0x294dc: "\xb5\a\U000294dc", // 𩓜
+ 0x294dd: "\xb5\b\U000294dd", // 𩓝
+ 0x294de: "\xb5\b\U000294de", // 𩓞
+ 0x294df: "\xb5\b\U000294df", // 𩓟
+ 0x294e0: "\xb5\b\U000294e0", // 𩓠
+ 0x294e1: "\xb5\b\U000294e1", // 𩓡
+ 0x294e2: "\xb5\b\U000294e2", // 𩓢
+ 0x294e3: "\xb5\b\U000294e3", // 𩓣
+ 0x294e4: "\xb5\b\U000294e4", // 𩓤
+ 0x294e5: "\xb5\b\U000294e5", // 𩓥
+ 0x294e6: "\xb5\b\U000294e6", // 𩓦
+ 0x294e7: "\xb5\b\U000294e7", // 𩓧
+ 0x294e8: "\xb5\b\U000294e8", // 𩓨
+ 0x294e9: "\xb5\b\U000294e9", // 𩓩
+ 0x294ea: "\xb5\b\U000294ea", // 𩓪
+ 0x294eb: "\xb5\b\U000294eb", // 𩓫
+ 0x294ec: "\xb5\b\U000294ec", // 𩓬
+ 0x294ed: "\xb5\b\U000294ed", // 𩓭
+ 0x294ee: "\xb5\b\U000294ee", // 𩓮
+ 0x294ef: "\xb5\b\U000294ef", // 𩓯
+ 0x294f0: "\xb5\b\U000294f0", // 𩓰
+ 0x294f1: "\xb5\b\U000294f1", // 𩓱
+ 0x294f2: "\xb5\b\U000294f2", // 𩓲
+ 0x294f3: "\xb5\b\U000294f3", // 𩓳
+ 0x294f4: "\xb5\b\U000294f4", // 𩓴
+ 0x294f5: "\xb5\b\U000294f5", // 𩓵
+ 0x294f6: "\xb5\b\U000294f6", // 𩓶
+ 0x294f7: "\xb5\b\U000294f7", // 𩓷
+ 0x294f8: "\xb5\b\U000294f8", // 𩓸
+ 0x294f9: "\xb5\b\U000294f9", // 𩓹
+ 0x294fa: "\xb5\b\U000294fa", // 𩓺
+ 0x294fb: "\xb5\b\U000294fb", // 𩓻
+ 0x294fc: "\xb5\b\U000294fc", // 𩓼
+ 0x294fd: "\xb5\b\U000294fd", // 𩓽
+ 0x294fe: "\xb5\b\U000294fe", // 𩓾
+ 0x294ff: "\xb5\b\U000294ff", // 𩓿
+ 0x29500: "\xb5\t\U00029500", // 𩔀
+ 0x29501: "\xb5\t\U00029501", // 𩔁
+ 0x29502: "\xb5\t\U00029502", // 𩔂
+ 0x29503: "\xb5\t\U00029503", // 𩔃
+ 0x29504: "\xb5\t\U00029504", // 𩔄
+ 0x29505: "\xb5\t\U00029505", // 𩔅
+ 0x29506: "\xb5\t\U00029506", // 𩔆
+ 0x29507: "\xb5\t\U00029507", // 𩔇
+ 0x29508: "\xb5\t\U00029508", // 𩔈
+ 0x29509: "\xb5\t\U00029509", // 𩔉
+ 0x2950a: "\xb5\t\U0002950a", // 𩔊
+ 0x2950b: "\xb5\t\U0002950b", // 𩔋
+ 0x2950c: "\xb5\t\U0002950c", // 𩔌
+ 0x2950d: "\xb5\t\U0002950d", // 𩔍
+ 0x2950e: "\xb5\t\U0002950e", // 𩔎
+ 0x2950f: "\xb5\t\U0002950f", // 𩔏
+ 0x29510: "\xb5\t\U00029510", // 𩔐
+ 0x29511: "\xb5\t\U00029511", // 𩔑
+ 0x29512: "\xb5\t\U00029512", // 𩔒
+ 0x29513: "\xb5\t\U00029513", // 𩔓
+ 0x29514: "\xb5\t\U00029514", // 𩔔
+ 0x29515: "\xb5\t\U00029515", // 𩔕
+ 0x29516: "\xb5\t\U00029516", // 𩔖
+ 0x29517: "\xb5\t\U00029517", // 𩔗
+ 0x29518: "\xb5\t\U00029518", // 𩔘
+ 0x29519: "\xb5\n\U00029519", // 𩔙
+ 0x2951a: "\xb5\n\U0002951a", // 𩔚
+ 0x2951b: "\xb5\n\U0002951b", // 𩔛
+ 0x2951c: "\xb5\n\U0002951c", // 𩔜
+ 0x2951d: "\xb5\n\U0002951d", // 𩔝
+ 0x2951e: "\xb5\n\U0002951e", // 𩔞
+ 0x2951f: "\xb5\n\U0002951f", // 𩔟
+ 0x29520: "\xb5\n\U00029520", // 𩔠
+ 0x29521: "\xb5\n\U00029521", // 𩔡
+ 0x29522: "\xb5\n\U00029522", // 𩔢
+ 0x29523: "\xb5\n\U00029523", // 𩔣
+ 0x29524: "\xb5\n\U00029524", // 𩔤
+ 0x29525: "\xb5\n\U00029525", // 𩔥
+ 0x29526: "\xb5\n\U00029526", // 𩔦
+ 0x29527: "\xb5\n\U00029527", // 𩔧
+ 0x29528: "\xb5\n\U00029528", // 𩔨
+ 0x29529: "\xb5\n\U00029529", // 𩔩
+ 0x2952a: "\xb5\n\U0002952a", // 𩔪
+ 0x2952b: "\xb5\n\U0002952b", // 𩔫
+ 0x2952c: "\xb5\n\U0002952c", // 𩔬
+ 0x2952d: "\xb5\n\U0002952d", // 𩔭
+ 0x2952e: "\xb5\n\U0002952e", // 𩔮
+ 0x2952f: "\xb5\n\U0002952f", // 𩔯
+ 0x29530: "\xb5\n\U00029530", // 𩔰
+ 0x29531: "\xb5\n\U00029531", // 𩔱
+ 0x29532: "\xb5\n\U00029532", // 𩔲
+ 0x29533: "\xb5\v\U00029533", // 𩔳
+ 0x29534: "\xb5\v\U00029534", // 𩔴
+ 0x29535: "\xb5\v\U00029535", // 𩔵
+ 0x29536: "\xb5\v\U00029536", // 𩔶
+ 0x29537: "\xb5\v\U00029537", // 𩔷
+ 0x29538: "\xb5\v\U00029538", // 𩔸
+ 0x29539: "\xb5\v\U00029539", // 𩔹
+ 0x2953a: "\xb5\v\U0002953a", // 𩔺
+ 0x2953b: "\xb5\v\U0002953b", // 𩔻
+ 0x2953c: "\xb5\v\U0002953c", // 𩔼
+ 0x2953d: "\xb5\v\U0002953d", // 𩔽
+ 0x2953e: "\xb5\v\U0002953e", // 𩔾
+ 0x2953f: "\xb5\v\U0002953f", // 𩔿
+ 0x29540: "\xb5\v\U00029540", // 𩕀
+ 0x29541: "\xb5\v\U00029541", // 𩕁
+ 0x29542: "\xb5\v\U00029542", // 𩕂
+ 0x29543: "\xb5\v\U00029543", // 𩕃
+ 0x29544: "\xb5\v\U00029544", // 𩕄
+ 0x29545: "\xb5\v\U00029545", // 𩕅
+ 0x29546: "\xb5\v\U00029546", // 𩕆
+ 0x29547: "\xb5\v\U00029547", // 𩕇
+ 0x29548: "\xb5\v\U00029548", // 𩕈
+ 0x29549: "\xb5\f\U00029549", // 𩕉
+ 0x2954a: "\xb5\f\U0002954a", // 𩕊
+ 0x2954b: "\xb5\f\U0002954b", // 𩕋
+ 0x2954c: "\xb5\f\U0002954c", // 𩕌
+ 0x2954d: "\xb5\f\U0002954d", // 𩕍
+ 0x2954e: "\xb5\f\U0002954e", // 𩕎
+ 0x2954f: "\xb5\f\U0002954f", // 𩕏
+ 0x29550: "\xb5\f\U00029550", // 𩕐
+ 0x29551: "\xb5\f\U00029551", // 𩕑
+ 0x29552: "\xb5\f\U00029552", // 𩕒
+ 0x29553: "\xb5\f\U00029553", // 𩕓
+ 0x29554: "\xb5\f\U00029554", // 𩕔
+ 0x29555: "\xb5\f\U00029555", // 𩕕
+ 0x29556: "\xb5\f\U00029556", // 𩕖
+ 0x29557: "\xb5\f\U00029557", // 𩕗
+ 0x29558: "\xb5\f\U00029558", // 𩕘
+ 0x29559: "\xb5\f\U00029559", // 𩕙
+ 0x2955a: "\xb5\f\U0002955a", // 𩕚
+ 0x2955b: "\xb5\f\U0002955b", // 𩕛
+ 0x2955c: "\xb5\f\U0002955c", // 𩕜
+ 0x2955d: "\xb5\f\U0002955d", // 𩕝
+ 0x2955e: "\xb5\f\U0002955e", // 𩕞
+ 0x2955f: "\xb5\r\U0002955f", // 𩕟
+ 0x29560: "\xb5\r\U00029560", // 𩕠
+ 0x29561: "\xb5\r\U00029561", // 𩕡
+ 0x29562: "\xb5\r\U00029562", // 𩕢
+ 0x29563: "\xb5\r\U00029563", // 𩕣
+ 0x29564: "\xb5\r\U00029564", // 𩕤
+ 0x29565: "\xb5\r\U00029565", // 𩕥
+ 0x29566: "\xb5\r\U00029566", // 𩕦
+ 0x29567: "\xb5\r\U00029567", // 𩕧
+ 0x29568: "\xb5\r\U00029568", // 𩕨
+ 0x29569: "\xb5\r\U00029569", // 𩕩
+ 0x2956a: "\xb5\r\U0002956a", // 𩕪
+ 0x2956b: "\xb5\r\U0002956b", // 𩕫
+ 0x2956c: "\xb5\x0e\U0002956c", // 𩕬
+ 0x2956d: "\xb5\x0e\U0002956d", // 𩕭
+ 0x2956e: "\xb5\x0e\U0002956e", // 𩕮
+ 0x2956f: "\xb5\x0e\U0002956f", // 𩕯
+ 0x29570: "\xb5\x0e\U00029570", // 𩕰
+ 0x29571: "\xb5\x0e\U00029571", // 𩕱
+ 0x29572: "\xb5\x0e\U00029572", // 𩕲
+ 0x29573: "\xb5\x0e\U00029573", // 𩕳
+ 0x29574: "\xb5\x0e\U00029574", // 𩕴
+ 0x29575: "\xb5\x0e\U00029575", // 𩕵
+ 0x29576: "\xb5\x0e\U00029576", // 𩕶
+ 0x29577: "\xb5\x0e\U00029577", // 𩕷
+ 0x29578: "\xb5\x0e\U00029578", // 𩕸
+ 0x29579: "\xb5\x0e\U00029579", // 𩕹
+ 0x2957a: "\xb5\x0e\U0002957a", // 𩕺
+ 0x2957b: "\xb5\x0e\U0002957b", // 𩕻
+ 0x2957c: "\xb5\x0e\U0002957c", // 𩕼
+ 0x2957d: "\xb5\x0e\U0002957d", // 𩕽
+ 0x2957e: "\xb5\x0f\U0002957e", // 𩕾
+ 0x2957f: "\xb5\x0f\U0002957f", // 𩕿
+ 0x29580: "\xb5\x0f\U00029580", // 𩖀
+ 0x29581: "\xb5\x0f\U00029581", // 𩖁
+ 0x29582: "\xb5\x0f\U00029582", // 𩖂
+ 0x29583: "\xb5\x0f\U00029583", // 𩖃
+ 0x29584: "\xb5\x0f\U00029584", // 𩖄
+ 0x29585: "\xb5\x0f\U00029585", // 𩖅
+ 0x29586: "\xb5\x10\U00029586", // 𩖆
+ 0x29587: "\xb5\x10\U00029587", // 𩖇
+ 0x29588: "\xb5\x10\U00029588", // 𩖈
+ 0x29589: "\xb5\x11\U00029589", // 𩖉
+ 0x2958a: "\xb5\x11\U0002958a", // 𩖊
+ 0x2958b: "\xb5\x11\U0002958b", // 𩖋
+ 0x2958c: "\xb5\x11\U0002958c", // 𩖌
+ 0x2958d: "\xb5\x11\U0002958d", // 𩖍
+ 0x2958e: "\xb5\x11\U0002958e", // 𩖎
+ 0x2958f: "\xb5\x12\U0002958f", // 𩖏
+ 0x29590: "\xb5\x12\U00029590", // 𩖐
+ 0x29591: "\xb5\x12\U00029591", // 𩖑
+ 0x29592: "\xb5\x14\U00029592", // 𩖒
+ 0x29593: "\xb5\x14\U00029593", // 𩖓
+ 0x29594: "\xc4\x14\U00029594", // 𩖔
+ 0x29595: "\xb5\b\U00029595", // 𩖕
+ 0x29596: "\xb5\b\U00029596", // 𩖖
+ 0x29597: "\xb5\r\U00029597", // 𩖗
+ 0x29598: "\xb6\x02\U00029598", // 𩖘
+ 0x29599: "\xb6\x02\U00029599", // 𩖙
+ 0x2959a: "\xb6\x03\U0002959a", // 𩖚
+ 0x2959b: "\xb6\x03\U0002959b", // 𩖛
+ 0x2959c: "\xb6\x03\U0002959c", // 𩖜
+ 0x2959d: "\xb6\x03\U0002959d", // 𩖝
+ 0x2959e: "\xb6\x03\U0002959e", // 𩖞
+ 0x2959f: "\xb6\x03\U0002959f", // 𩖟
+ 0x295a0: "\xb6\x03\U000295a0", // 𩖠
+ 0x295a1: "\xb6\x03\U000295a1", // 𩖡
+ 0x295a2: "\xb6\x04\U000295a2", // 𩖢
+ 0x295a3: "\xb6\x04\U000295a3", // 𩖣
+ 0x295a4: "\xb6\x04\U000295a4", // 𩖤
+ 0x295a5: "\xb6\x04\U000295a5", // 𩖥
+ 0x295a6: "\xb6\x04\U000295a6", // 𩖦
+ 0x295a7: "\xb6\x04\U000295a7", // 𩖧
+ 0x295a8: "\xb6\x04\U000295a8", // 𩖨
+ 0x295a9: "\xb6\x04\U000295a9", // 𩖩
+ 0x295aa: "\xb6\x04\U000295aa", // 𩖪
+ 0x295ab: "\xb6\x04\U000295ab", // 𩖫
+ 0x295ac: "\xb6\x04\U000295ac", // 𩖬
+ 0x295ad: "\xb6\x04\U000295ad", // 𩖭
+ 0x295ae: "\xb6\x04\U000295ae", // 𩖮
+ 0x295af: "\xb6\x04\U000295af", // 𩖯
+ 0x295b0: "C\t\U000295b0", // 𩖰
+ 0x295b1: "\xb6\x04\U000295b1", // 𩖱
+ 0x295b2: "\xb6\x04\U000295b2", // 𩖲
+ 0x295b3: "\xb6\x04\U000295b3", // 𩖳
+ 0x295b4: "\xb6\x05\U000295b4", // 𩖴
+ 0x295b5: "\xb6\x05\U000295b5", // 𩖵
+ 0x295b6: "\xb6\x05\U000295b6", // 𩖶
+ 0x295b7: "\xb6\x05\U000295b7", // 𩖷
+ 0x295b8: "\xb6\x05\U000295b8", // 𩖸
+ 0x295b9: "\xb6\x05\U000295b9", // 𩖹
+ 0x295ba: "\xb6\x05\U000295ba", // 𩖺
+ 0x295bb: "\xb6\x05\U000295bb", // 𩖻
+ 0x295bc: "\xb6\x05\U000295bc", // 𩖼
+ 0x295bd: "\xb6\x05\U000295bd", // 𩖽
+ 0x295be: "\xb6\x05\U000295be", // 𩖾
+ 0x295bf: "\xb6\x05\U000295bf", // 𩖿
+ 0x295c0: "\xb6\x05\U000295c0", // 𩗀
+ 0x295c1: "\xb6\x05\U000295c1", // 𩗁
+ 0x295c2: "\xb6\x05\U000295c2", // 𩗂
+ 0x295c3: "\xb6\x05\U000295c3", // 𩗃
+ 0x295c4: "\xb6\x06\U000295c4", // 𩗄
+ 0x295c5: "\xb6\x06\U000295c5", // 𩗅
+ 0x295c6: "\xb6\x06\U000295c6", // 𩗆
+ 0x295c7: "\xb6\x06\U000295c7", // 𩗇
+ 0x295c8: "\xb6\x06\U000295c8", // 𩗈
+ 0x295c9: "\xb6\x06\U000295c9", // 𩗉
+ 0x295ca: "\xb6\x06\U000295ca", // 𩗊
+ 0x295cb: "\xb6\x06\U000295cb", // 𩗋
+ 0x295cc: "\xb6\x06\U000295cc", // 𩗌
+ 0x295cd: "\xb6\x06\U000295cd", // 𩗍
+ 0x295ce: "\xb6\x06\U000295ce", // 𩗎
+ 0x295cf: "\xb6\x06\U000295cf", // 𩗏
+ 0x295d0: "\xb6\x06\U000295d0", // 𩗐
+ 0x295d1: "\xb6\x06\U000295d1", // 𩗑
+ 0x295d2: "\xb6\x06\U000295d2", // 𩗒
+ 0x295d3: "\xb6\a\U000295d3", // 𩗓
+ 0x295d4: "\xb6\a\U000295d4", // 𩗔
+ 0x295d5: "\xb6\a\U000295d5", // 𩗕
+ 0x295d6: "\xb6\a\U000295d6", // 𩗖
+ 0x295d7: "\xb6\a\U000295d7", // 𩗗
+ 0x295d8: "\xb6\a\U000295d8", // 𩗘
+ 0x295d9: "\xb6\a\U000295d9", // 𩗙
+ 0x295da: "\xb6\a\U000295da", // 𩗚
+ 0x295db: "\xb6\a\U000295db", // 𩗛
+ 0x295dc: "\xb6\a\U000295dc", // 𩗜
+ 0x295dd: "\xb6\a\U000295dd", // 𩗝
+ 0x295de: "\xb6\a\U000295de", // 𩗞
+ 0x295df: "\xb6\a\U000295df", // 𩗟
+ 0x295e0: "\xb6\a\U000295e0", // 𩗠
+ 0x295e1: "\xb6\a\U000295e1", // 𩗡
+ 0x295e2: "\xb6\a\U000295e2", // 𩗢
+ 0x295e3: "\xb6\a\U000295e3", // 𩗣
+ 0x295e4: "\xb6\a\U000295e4", // 𩗤
+ 0x295e5: "\xb6\a\U000295e5", // 𩗥
+ 0x295e6: "\xb6\a\U000295e6", // 𩗦
+ 0x295e7: "\xb6\a\U000295e7", // 𩗧
+ 0x295e8: "\xb6\b\U000295e8", // 𩗨
+ 0x295e9: "\xb6\b\U000295e9", // 𩗩
+ 0x295ea: "\xb6\b\U000295ea", // 𩗪
+ 0x295eb: "\xb6\b\U000295eb", // 𩗫
+ 0x295ec: "\xb6\b\U000295ec", // 𩗬
+ 0x295ed: "\xb6\b\U000295ed", // 𩗭
+ 0x295ee: "\xb6\b\U000295ee", // 𩗮
+ 0x295ef: "\xb6\b\U000295ef", // 𩗯
+ 0x295f0: "\xb6\b\U000295f0", // 𩗰
+ 0x295f1: "\xb6\b\U000295f1", // 𩗱
+ 0x295f2: "\xb6\b\U000295f2", // 𩗲
+ 0x295f3: "\xb6\b\U000295f3", // 𩗳
+ 0x295f4: "\xb6\b\U000295f4", // 𩗴
+ 0x295f5: "\xb6\b\U000295f5", // 𩗵
+ 0x295f6: "\xb6\b\U000295f6", // 𩗶
+ 0x295f7: "\xb6\b\U000295f7", // 𩗷
+ 0x295f8: "\xb6\b\U000295f8", // 𩗸
+ 0x295f9: "\xb6\b\U000295f9", // 𩗹
+ 0x295fa: "\xb6\b\U000295fa", // 𩗺
+ 0x295fb: "\xb6\b\U000295fb", // 𩗻
+ 0x295fc: "\xb6\b\U000295fc", // 𩗼
+ 0x295fd: "\xb6\b\U000295fd", // 𩗽
+ 0x295fe: "\xb6\b\U000295fe", // 𩗾
+ 0x295ff: "\xb6\b\U000295ff", // 𩗿
+ 0x29600: "\xb6\b\U00029600", // 𩘀
+ 0x29601: "\xb6\b\U00029601", // 𩘁
+ 0x29602: "\xb6\b\U00029602", // 𩘂
+ 0x29603: "\xb6\b\U00029603", // 𩘃
+ 0x29604: "\xb6\b\U00029604", // 𩘄
+ 0x29605: "\xb6\t\U00029605", // 𩘅
+ 0x29606: "\xb6\t\U00029606", // 𩘆
+ 0x29607: "\xb6\t\U00029607", // 𩘇
+ 0x29608: "\xb6\t\U00029608", // 𩘈
+ 0x29609: "\xb6\t\U00029609", // 𩘉
+ 0x2960a: "\xb6\t\U0002960a", // 𩘊
+ 0x2960b: "\xb6\t\U0002960b", // 𩘋
+ 0x2960c: "\xb6\t\U0002960c", // 𩘌
+ 0x2960d: "\xb6\t\U0002960d", // 𩘍
+ 0x2960e: "\xb6\n\U0002960e", // 𩘎
+ 0x2960f: "\xb6\t\U0002960f", // 𩘏
+ 0x29610: "\xb6\t\U00029610", // 𩘐
+ 0x29611: "\xb6\t\U00029611", // 𩘑
+ 0x29612: "\xb6\t\U00029612", // 𩘒
+ 0x29613: "\xb6\t\U00029613", // 𩘓
+ 0x29614: "\xb6\t\U00029614", // 𩘔
+ 0x29615: "\xb6\t\U00029615", // 𩘕
+ 0x29616: "\xb6\t\U00029616", // 𩘖
+ 0x29617: "\xb6\t\U00029617", // 𩘗
+ 0x29618: "\xb6\t\U00029618", // 𩘘
+ 0x29619: "\xb6\t\U00029619", // 𩘙
+ 0x2961a: "\xb6\t\U0002961a", // 𩘚
+ 0x2961b: "\xb6\t\U0002961b", // 𩘛
+ 0x2961c: "\xb6\n\U0002961c", // 𩘜
+ 0x2961d: "\xb6\n\U0002961d", // 𩘝
+ 0x2961e: "\xb6\n\U0002961e", // 𩘞
+ 0x2961f: "\xb6\n\U0002961f", // 𩘟
+ 0x29620: "\xb6\n\U00029620", // 𩘠
+ 0x29621: "\xb6\n\U00029621", // 𩘡
+ 0x29622: "\xb6\n\U00029622", // 𩘢
+ 0x29623: "\xb6\n\U00029623", // 𩘣
+ 0x29624: "\xb6\n\U00029624", // 𩘤
+ 0x29625: "\xb6\n\U00029625", // 𩘥
+ 0x29626: "\xb6\n\U00029626", // 𩘦
+ 0x29627: "\xb6\n\U00029627", // 𩘧
+ 0x29628: "\xb6\n\U00029628", // 𩘨
+ 0x29629: "\xb6\n\U00029629", // 𩘩
+ 0x2962a: "\xb6\n\U0002962a", // 𩘪
+ 0x2962b: "\xb6\n\U0002962b", // 𩘫
+ 0x2962c: "\xb6\n\U0002962c", // 𩘬
+ 0x2962d: "\xb6\v\U0002962d", // 𩘭
+ 0x2962e: "\xb6\v\U0002962e", // 𩘮
+ 0x2962f: "\xb6\v\U0002962f", // 𩘯
+ 0x29630: "\xb6\v\U00029630", // 𩘰
+ 0x29631: "\xb6\v\U00029631", // 𩘱
+ 0x29632: "\xb6\v\U00029632", // 𩘲
+ 0x29633: "\xb6\v\U00029633", // 𩘳
+ 0x29634: "\xb6\v\U00029634", // 𩘴
+ 0x29635: "\xb6\v\U00029635", // 𩘵
+ 0x29636: "\xb6\v\U00029636", // 𩘶
+ 0x29637: "\xb6\v\U00029637", // 𩘷
+ 0x29638: "\xb6\f\U00029638", // 𩘸
+ 0x29639: "\xb6\f\U00029639", // 𩘹
+ 0x2963a: "\xb6\f\U0002963a", // 𩘺
+ 0x2963b: "\xb6\f\U0002963b", // 𩘻
+ 0x2963c: "\xb6\f\U0002963c", // 𩘼
+ 0x2963d: "\xb6\f\U0002963d", // 𩘽
+ 0x2963e: "\xb6\f\U0002963e", // 𩘾
+ 0x2963f: "\xb6\f\U0002963f", // 𩘿
+ 0x29640: "\xb6\f\U00029640", // 𩙀
+ 0x29641: "\xb6\f\U00029641", // 𩙁
+ 0x29642: "\xb6\f\U00029642", // 𩙂
+ 0x29643: "\xb6\f\U00029643", // 𩙃
+ 0x29644: "\xb6\f\U00029644", // 𩙄
+ 0x29645: "\xb6\f\U00029645", // 𩙅
+ 0x29646: "\xb6\f\U00029646", // 𩙆
+ 0x29647: "\xb6\f\U00029647", // 𩙇
+ 0x29648: "\xb6\r\U00029648", // 𩙈
+ 0x29649: "\xb6\r\U00029649", // 𩙉
+ 0x2964a: "\xb6\r\U0002964a", // 𩙊
+ 0x2964b: "\xb6\r\U0002964b", // 𩙋
+ 0x2964c: "\xb6\r\U0002964c", // 𩙌
+ 0x2964d: "\xb6\r\U0002964d", // 𩙍
+ 0x2964e: "\xb6\x0e\U0002964e", // 𩙎
+ 0x2964f: "\xb6\x0e\U0002964f", // 𩙏
+ 0x29650: "\xb6\x0e\U00029650", // 𩙐
+ 0x29651: "\xb6\x0f\U00029651", // 𩙑
+ 0x29652: "\xb6\x0f\U00029652", // 𩙒
+ 0x29653: "\xb6\x0f\U00029653", // 𩙓
+ 0x29654: "\xb6\x0f\U00029654", // 𩙔
+ 0x29655: "\xb6\x0f\U00029655", // 𩙕
+ 0x29656: "\xb6\x10\U00029656", // 𩙖
+ 0x29657: "\xb6\x10\U00029657", // 𩙗
+ 0x29658: "\xb6\x10\U00029658", // 𩙘
+ 0x29659: "\xb6\x10\U00029659", // 𩙙
+ 0x2965a: "\xb6\x10\U0002965a", // 𩙚
+ 0x2965b: "\xb6\x11\U0002965b", // 𩙛
+ 0x2965c: "\xb6\x11\U0002965c", // 𩙜
+ 0x2965d: "\xb6\x12\U0002965d", // 𩙝
+ 0x2965e: "\xb6\x12\U0002965e", // 𩙞
+ 0x2965f: "\xb6\x13\U0002965f", // 𩙟
+ 0x29660: "\xb6\x1a\U00029660", // 𩙠
+ 0x29661: "\xb6\x1b\U00029661", // 𩙡
+ 0x29662: "\xb6\x1c\U00029662", // 𩙢
+ 0x29663: "\xb6%\U00029663", // 𩙣
+ 0x29664: "\xb6'\U00029664", // 𩙤
+ 0x29665: "\xb6\x05\U00029665", // 𩙥
+ 0x29666: "\xb6\x05\U00029666", // 𩙦
+ 0x29667: "\xb6\a\U00029667", // 𩙧
+ 0x29668: "\xb6\b\U00029668", // 𩙨
+ 0x29669: "\xb6\b\U00029669", // 𩙩
+ 0x2966a: "\xb6\b\U0002966a", // 𩙪
+ 0x2966b: "\xb6\t\U0002966b", // 𩙫
+ 0x2966c: "\xb6\t\U0002966c", // 𩙬
+ 0x2966d: "\xb6\n\U0002966d", // 𩙭
+ 0x2966e: "\xb6\n\U0002966e", // 𩙮
+ 0x2966f: "\xb6\f\U0002966f", // 𩙯
+ 0x29670: "\xb6\r\U00029670", // 𩙰
+ 0x29671: "\xb7\x00\U00029671", // 𩙱
+ 0x29672: "\xb7\x04\U00029672", // 𩙲
+ 0x29673: "\xb7\x05\U00029673", // 𩙳
+ 0x29674: "\xb7\x06\U00029674", // 𩙴
+ 0x29675: "\xb7\t\U00029675", // 𩙵
+ 0x29676: "\xb7\n\U00029676", // 𩙶
+ 0x29677: "\xb7\n\U00029677", // 𩙷
+ 0x29678: "\xb7\n\U00029678", // 𩙸
+ 0x29679: "\xb7\v\U00029679", // 𩙹
+ 0x2967a: "\xb7\f\U0002967a", // 𩙺
+ 0x2967b: "\xb7\f\U0002967b", // 𩙻
+ 0x2967c: "\xb7\r\U0002967c", // 𩙼
+ 0x2967d: "\xb7\r\U0002967d", // 𩙽
+ 0x2967e: "\xb7\x16\U0002967e", // 𩙾
+ 0x2967f: "\xb8\x00\U0002967f", // 𩙿
+ 0x29680: "\xb8\x00\U00029680", // 𩚀
+ 0x29681: "\xb8\x00\U00029681", // 𩚁
+ 0x29682: "\xb8\x01\U00029682", // 𩚂
+ 0x29683: "\xb8\x00\U00029683", // 𩚃
+ 0x29684: "\xb8\x02\U00029684", // 𩚄
+ 0x29685: "\xb8\x02\U00029685", // 𩚅
+ 0x29686: "\xb8\x02\U00029686", // 𩚆
+ 0x29687: "\xb8\x03\U00029687", // 𩚇
+ 0x29688: "\xb8\x03\U00029688", // 𩚈
+ 0x29689: "\xb8\x03\U00029689", // 𩚉
+ 0x2968a: "\xb8\x03\U0002968a", // 𩚊
+ 0x2968b: "\xb8\x03\U0002968b", // 𩚋
+ 0x2968c: "\xb8\x03\U0002968c", // 𩚌
+ 0x2968d: "\xb8\x03\U0002968d", // 𩚍
+ 0x2968e: "\xb8\x03\U0002968e", // 𩚎
+ 0x2968f: "\xb8\x03\U0002968f", // 𩚏
+ 0x29690: "\xb8\x03\U00029690", // 𩚐
+ 0x29691: "\xb8\x03\U00029691", // 𩚑
+ 0x29692: "\xb8\x03\U00029692", // 𩚒
+ 0x29693: "\xb8\x03\U00029693", // 𩚓
+ 0x29694: "\xb8\x03\U00029694", // 𩚔
+ 0x29695: "\xb8\x04\U00029695", // 𩚕
+ 0x29696: "\xb8\x04\U00029696", // 𩚖
+ 0x29697: "\xb8\x04\U00029697", // 𩚗
+ 0x29698: "\xb8\x04\U00029698", // 𩚘
+ 0x29699: "\xb8\x04\U00029699", // 𩚙
+ 0x2969a: "\xb8\x04\U0002969a", // 𩚚
+ 0x2969b: "\xb8\x04\U0002969b", // 𩚛
+ 0x2969c: "\xb8\x04\U0002969c", // 𩚜
+ 0x2969d: "\xb8\x04\U0002969d", // 𩚝
+ 0x2969e: "\xb8\x04\U0002969e", // 𩚞
+ 0x2969f: "\xb8\x04\U0002969f", // 𩚟
+ 0x296a0: "\xb8\x04\U000296a0", // 𩚠
+ 0x296a1: "\xb8\x04\U000296a1", // 𩚡
+ 0x296a2: "\xb8\x04\U000296a2", // 𩚢
+ 0x296a3: "\xb8\x04\U000296a3", // 𩚣
+ 0x296a4: "\xb8\x04\U000296a4", // 𩚤
+ 0x296a5: "\xb8\x04\U000296a5", // 𩚥
+ 0x296a6: "\xb8\x04\U000296a6", // 𩚦
+ 0x296a7: "\xb8\x04\U000296a7", // 𩚧
+ 0x296a8: "\xb8\x05\U000296a8", // 𩚨
+ 0x296a9: "\xb8\x05\U000296a9", // 𩚩
+ 0x296aa: "\xb8\x05\U000296aa", // 𩚪
+ 0x296ab: "\xb8\x05\U000296ab", // 𩚫
+ 0x296ac: "\xb8\x05\U000296ac", // 𩚬
+ 0x296ad: "\xb8\x05\U000296ad", // 𩚭
+ 0x296ae: "\xb8\x05\U000296ae", // 𩚮
+ 0x296af: "\xb8\x05\U000296af", // 𩚯
+ 0x296b0: "\xb8\x05\U000296b0", // 𩚰
+ 0x296b1: "\xb8\x05\U000296b1", // 𩚱
+ 0x296b2: "\xb8\x05\U000296b2", // 𩚲
+ 0x296b3: "\xb8\x05\U000296b3", // 𩚳
+ 0x296b4: "\xb8\x05\U000296b4", // 𩚴
+ 0x296b5: "\xb8\x05\U000296b5", // 𩚵
+ 0x296b6: "\xb8\x05\U000296b6", // 𩚶
+ 0x296b7: "\xb8\x05\U000296b7", // 𩚷
+ 0x296b8: "\xb8\x05\U000296b8", // 𩚸
+ 0x296b9: "\xb8\x05\U000296b9", // 𩚹
+ 0x296ba: "\xb8\x05\U000296ba", // 𩚺
+ 0x296bb: "\xb8\x05\U000296bb", // 𩚻
+ 0x296bc: "\xb8\x05\U000296bc", // 𩚼
+ 0x296bd: "\xb8\x05\U000296bd", // 𩚽
+ 0x296be: "\xb8\x05\U000296be", // 𩚾
+ 0x296bf: "\xb8\x05\U000296bf", // 𩚿
+ 0x296c0: "\xb8\x05\U000296c0", // 𩛀
+ 0x296c1: "\xb8\x05\U000296c1", // 𩛁
+ 0x296c2: "\xb8\x05\U000296c2", // 𩛂
+ 0x296c3: "\xb8\x05\U000296c3", // 𩛃
+ 0x296c4: "\xb8\x05\U000296c4", // 𩛄
+ 0x296c5: "\xb8\x05\U000296c5", // 𩛅
+ 0x296c6: "\xb8\x05\U000296c6", // 𩛆
+ 0x296c7: "\xb8\x05\U000296c7", // 𩛇
+ 0x296c8: "\xb8\x05\U000296c8", // 𩛈
+ 0x296c9: "\xb8\x06\U000296c9", // 𩛉
+ 0x296ca: "\xb8\x06\U000296ca", // 𩛊
+ 0x296cb: "\xb8\x06\U000296cb", // 𩛋
+ 0x296cc: "\xb8\x06\U000296cc", // 𩛌
+ 0x296cd: "\xb8\x06\U000296cd", // 𩛍
+ 0x296ce: "\xb8\x06\U000296ce", // 𩛎
+ 0x296cf: "\xb8\x06\U000296cf", // 𩛏
+ 0x296d0: "\xb8\x06\U000296d0", // 𩛐
+ 0x296d1: "\xb8\x06\U000296d1", // 𩛑
+ 0x296d2: "\xb8\x06\U000296d2", // 𩛒
+ 0x296d3: "\xb8\x06\U000296d3", // 𩛓
+ 0x296d4: "\xb8\x06\U000296d4", // 𩛔
+ 0x296d5: "\xb8\x06\U000296d5", // 𩛕
+ 0x296d6: "\xb8\x06\U000296d6", // 𩛖
+ 0x296d7: "\xb8\x06\U000296d7", // 𩛗
+ 0x296d8: "\xb8\x06\U000296d8", // 𩛘
+ 0x296d9: "\xb8\x06\U000296d9", // 𩛙
+ 0x296da: "\xb8\x06\U000296da", // 𩛚
+ 0x296db: "\xb8\x06\U000296db", // 𩛛
+ 0x296dc: "\xb8\x06\U000296dc", // 𩛜
+ 0x296dd: "\xb8\a\U000296dd", // 𩛝
+ 0x296de: "\xb8\a\U000296de", // 𩛞
+ 0x296df: "\xb8\a\U000296df", // 𩛟
+ 0x296e0: "\xb8\a\U000296e0", // 𩛠
+ 0x296e1: "\xb8\a\U000296e1", // 𩛡
+ 0x296e2: "\xb8\a\U000296e2", // 𩛢
+ 0x296e3: "\xb8\a\U000296e3", // 𩛣
+ 0x296e4: "\xb8\a\U000296e4", // 𩛤
+ 0x296e5: "\xb8\a\U000296e5", // 𩛥
+ 0x296e6: "\xb8\a\U000296e6", // 𩛦
+ 0x296e7: "\xb8\a\U000296e7", // 𩛧
+ 0x296e8: "\xb8\a\U000296e8", // 𩛨
+ 0x296e9: "\xb8\a\U000296e9", // 𩛩
+ 0x296ea: "\xb8\a\U000296ea", // 𩛪
+ 0x296eb: "\xb8\a\U000296eb", // 𩛫
+ 0x296ec: "\xb8\a\U000296ec", // 𩛬
+ 0x296ed: "\xb8\a\U000296ed", // 𩛭
+ 0x296ee: "\xb8\a\U000296ee", // 𩛮
+ 0x296ef: "\xb8\a\U000296ef", // 𩛯
+ 0x296f0: "\xb8\a\U000296f0", // 𩛰
+ 0x296f1: "\xb8\a\U000296f1", // 𩛱
+ 0x296f2: "\xb8\a\U000296f2", // 𩛲
+ 0x296f3: "\xb8\a\U000296f3", // 𩛳
+ 0x296f4: "\xb8\a\U000296f4", // 𩛴
+ 0x296f5: "\xb8\a\U000296f5", // 𩛵
+ 0x296f6: "\xb8\a\U000296f6", // 𩛶
+ 0x296f7: "\xb8\a\U000296f7", // 𩛷
+ 0x296f8: "\xb8\a\U000296f8", // 𩛸
+ 0x296f9: "\xb8\a\U000296f9", // 𩛹
+ 0x296fa: "\xb8\b\U000296fa", // 𩛺
+ 0x296fb: "\xb8\b\U000296fb", // 𩛻
+ 0x296fc: "\xb8\b\U000296fc", // 𩛼
+ 0x296fd: "\xb8\b\U000296fd", // 𩛽
+ 0x296fe: "\xb8\b\U000296fe", // 𩛾
+ 0x296ff: "\xb8\b\U000296ff", // 𩛿
+ 0x29700: "\xb8\b\U00029700", // 𩜀
+ 0x29701: "\xb8\b\U00029701", // 𩜁
+ 0x29702: "\xb8\b\U00029702", // 𩜂
+ 0x29703: "\xb8\b\U00029703", // 𩜃
+ 0x29704: "\xb8\b\U00029704", // 𩜄
+ 0x29705: "\xb8\b\U00029705", // 𩜅
+ 0x29706: "\xb8\b\U00029706", // 𩜆
+ 0x29707: "\xb8\b\U00029707", // 𩜇
+ 0x29708: "\xb8\b\U00029708", // 𩜈
+ 0x29709: "\xb8\b\U00029709", // 𩜉
+ 0x2970a: "\xb8\b\U0002970a", // 𩜊
+ 0x2970b: "\xb8\b\U0002970b", // 𩜋
+ 0x2970c: "\xb8\b\U0002970c", // 𩜌
+ 0x2970d: "\xb8\b\U0002970d", // 𩜍
+ 0x2970e: "\xb8\b\U0002970e", // 𩜎
+ 0x2970f: "\xb8\b\U0002970f", // 𩜏
+ 0x29710: "\xb8\b\U00029710", // 𩜐
+ 0x29711: "\xb8\b\U00029711", // 𩜑
+ 0x29712: "\xb8\b\U00029712", // 𩜒
+ 0x29713: "\xb8\b\U00029713", // 𩜓
+ 0x29714: "\xb8\b\U00029714", // 𩜔
+ 0x29715: "\xb8\b\U00029715", // 𩜕
+ 0x29716: "\xb8\b\U00029716", // 𩜖
+ 0x29717: "\xb8\b\U00029717", // 𩜗
+ 0x29718: "\xb8\b\U00029718", // 𩜘
+ 0x29719: "\xb8\b\U00029719", // 𩜙
+ 0x2971a: "\xb8\b\U0002971a", // 𩜚
+ 0x2971b: "\xb8\b\U0002971b", // 𩜛
+ 0x2971c: "\xb8\b\U0002971c", // 𩜜
+ 0x2971d: "\xb8\b\U0002971d", // 𩜝
+ 0x2971e: "\xb8\b\U0002971e", // 𩜞
+ 0x2971f: "\xb8\b\U0002971f", // 𩜟
+ 0x29720: "\xb8\b\U00029720", // 𩜠
+ 0x29721: "\xb8\b\U00029721", // 𩜡
+ 0x29722: "\xb8\b\U00029722", // 𩜢
+ 0x29723: "\xb8\t\U00029723", // 𩜣
+ 0x29724: "\xb8\b\U00029724", // 𩜤
+ 0x29725: "\xb8\b\U00029725", // 𩜥
+ 0x29726: "\xb8\b\U00029726", // 𩜦
+ 0x29727: "\xb8\b\U00029727", // 𩜧
+ 0x29728: "\xb8\b\U00029728", // 𩜨
+ 0x29729: "\xb8\b\U00029729", // 𩜩
+ 0x2972a: "\xb8\b\U0002972a", // 𩜪
+ 0x2972b: "\xb8\b\U0002972b", // 𩜫
+ 0x2972c: "\xb8\b\U0002972c", // 𩜬
+ 0x2972d: "\xb8\t\U0002972d", // 𩜭
+ 0x2972e: "\xb8\t\U0002972e", // 𩜮
+ 0x2972f: "\xb8\t\U0002972f", // 𩜯
+ 0x29730: "\xb8\t\U00029730", // 𩜰
+ 0x29731: "\xb8\t\U00029731", // 𩜱
+ 0x29732: "\xb8\t\U00029732", // 𩜲
+ 0x29733: "\xb8\t\U00029733", // 𩜳
+ 0x29734: "\xb8\t\U00029734", // 𩜴
+ 0x29735: "\xb8\t\U00029735", // 𩜵
+ 0x29736: "\xb8\t\U00029736", // 𩜶
+ 0x29737: "\xb8\t\U00029737", // 𩜷
+ 0x29738: "\xb8\t\U00029738", // 𩜸
+ 0x29739: "\xb8\t\U00029739", // 𩜹
+ 0x2973a: "\xb8\t\U0002973a", // 𩜺
+ 0x2973b: "\xb8\t\U0002973b", // 𩜻
+ 0x2973c: "\xb8\t\U0002973c", // 𩜼
+ 0x2973d: "\xb8\t\U0002973d", // 𩜽
+ 0x2973e: "\xb8\t\U0002973e", // 𩜾
+ 0x2973f: "\xb8\t\U0002973f", // 𩜿
+ 0x29740: "\xb8\t\U00029740", // 𩝀
+ 0x29741: "\xb8\t\U00029741", // 𩝁
+ 0x29742: "\xb8\t\U00029742", // 𩝂
+ 0x29743: "\xb8\t\U00029743", // 𩝃
+ 0x29744: "\xb8\t\U00029744", // 𩝄
+ 0x29745: "\xb8\t\U00029745", // 𩝅
+ 0x29746: "\xb8\t\U00029746", // 𩝆
+ 0x29747: "\xb8\t\U00029747", // 𩝇
+ 0x29748: "\xb8\t\U00029748", // 𩝈
+ 0x29749: "\xb8\t\U00029749", // 𩝉
+ 0x2974a: "\xb8\t\U0002974a", // 𩝊
+ 0x2974b: "\xb8\t\U0002974b", // 𩝋
+ 0x2974c: "\xb8\t\U0002974c", // 𩝌
+ 0x2974d: "\xb8\t\U0002974d", // 𩝍
+ 0x2974e: "\xb8\t\U0002974e", // 𩝎
+ 0x2974f: "\xb8\t\U0002974f", // 𩝏
+ 0x29750: "\xb8\t\U00029750", // 𩝐
+ 0x29751: "\xb8\t\U00029751", // 𩝑
+ 0x29752: "\xb8\t\U00029752", // 𩝒
+ 0x29753: "\xb8\t\U00029753", // 𩝓
+ 0x29754: "\xb8\t\U00029754", // 𩝔
+ 0x29755: "\xb8\t\U00029755", // 𩝕
+ 0x29756: "\xb8\t\U00029756", // 𩝖
+ 0x29757: "\xb8\t\U00029757", // 𩝗
+ 0x29758: "\xb8\t\U00029758", // 𩝘
+ 0x29759: "\xb8\n\U00029759", // 𩝙
+ 0x2975a: "\xb8\n\U0002975a", // 𩝚
+ 0x2975b: "\xb8\n\U0002975b", // 𩝛
+ 0x2975c: "\xb8\n\U0002975c", // 𩝜
+ 0x2975d: "\xb8\n\U0002975d", // 𩝝
+ 0x2975e: "\xb8\n\U0002975e", // 𩝞
+ 0x2975f: "\xb8\n\U0002975f", // 𩝟
+ 0x29760: "\xb8\n\U00029760", // 𩝠
+ 0x29761: "\xb8\n\U00029761", // 𩝡
+ 0x29762: "\xb8\n\U00029762", // 𩝢
+ 0x29763: "\xb8\n\U00029763", // 𩝣
+ 0x29764: "\xb8\n\U00029764", // 𩝤
+ 0x29765: "\xb8\n\U00029765", // 𩝥
+ 0x29766: "\xb8\n\U00029766", // 𩝦
+ 0x29767: "\xb8\n\U00029767", // 𩝧
+ 0x29768: "\xb8\n\U00029768", // 𩝨
+ 0x29769: "\xb8\n\U00029769", // 𩝩
+ 0x2976a: "\xb8\n\U0002976a", // 𩝪
+ 0x2976b: "\xb8\n\U0002976b", // 𩝫
+ 0x2976c: "\xb8\n\U0002976c", // 𩝬
+ 0x2976d: "\xb8\n\U0002976d", // 𩝭
+ 0x2976e: "\xb8\n\U0002976e", // 𩝮
+ 0x2976f: "\xb8\n\U0002976f", // 𩝯
+ 0x29770: "\xb8\n\U00029770", // 𩝰
+ 0x29771: "\xb8\n\U00029771", // 𩝱
+ 0x29772: "\xb8\n\U00029772", // 𩝲
+ 0x29773: "\xb8\n\U00029773", // 𩝳
+ 0x29774: "\xb8\v\U00029774", // 𩝴
+ 0x29775: "\xb8\n\U00029775", // 𩝵
+ 0x29776: "\xb8\n\U00029776", // 𩝶
+ 0x29777: "\xb8\n\U00029777", // 𩝷
+ 0x29778: "\xb8\n\U00029778", // 𩝸
+ 0x29779: "\xb8\n\U00029779", // 𩝹
+ 0x2977a: "\xb8\n\U0002977a", // 𩝺
+ 0x2977b: "\xb8\n\U0002977b", // 𩝻
+ 0x2977c: "\xb8\n\U0002977c", // 𩝼
+ 0x2977d: "\xb8\v\U0002977d", // 𩝽
+ 0x2977e: "\xb8\v\U0002977e", // 𩝾
+ 0x2977f: "\xb8\v\U0002977f", // 𩝿
+ 0x29780: "\xb8\v\U00029780", // 𩞀
+ 0x29781: "\xb8\v\U00029781", // 𩞁
+ 0x29782: "\xb8\v\U00029782", // 𩞂
+ 0x29783: "\xb8\v\U00029783", // 𩞃
+ 0x29784: "\xb8\v\U00029784", // 𩞄
+ 0x29785: "\xb8\v\U00029785", // 𩞅
+ 0x29786: "\xb8\v\U00029786", // 𩞆
+ 0x29787: "\xb8\v\U00029787", // 𩞇
+ 0x29788: "\xb8\v\U00029788", // 𩞈
+ 0x29789: "\xb8\v\U00029789", // 𩞉
+ 0x2978a: "\xb8\v\U0002978a", // 𩞊
+ 0x2978b: "\xb8\v\U0002978b", // 𩞋
+ 0x2978c: "\xb8\v\U0002978c", // 𩞌
+ 0x2978d: "\xb8\v\U0002978d", // 𩞍
+ 0x2978e: "\xb8\v\U0002978e", // 𩞎
+ 0x2978f: "\xb8\v\U0002978f", // 𩞏
+ 0x29790: "\xb8\v\U00029790", // 𩞐
+ 0x29791: "\xb8\v\U00029791", // 𩞑
+ 0x29792: "\xb8\v\U00029792", // 𩞒
+ 0x29793: "\xb8\v\U00029793", // 𩞓
+ 0x29794: "\xb8\v\U00029794", // 𩞔
+ 0x29795: "\xb8\v\U00029795", // 𩞕
+ 0x29796: "\xb8\v\U00029796", // 𩞖
+ 0x29797: "\xb8\v\U00029797", // 𩞗
+ 0x29798: "\xb8\v\U00029798", // 𩞘
+ 0x29799: "\xb8\v\U00029799", // 𩞙
+ 0x2979a: "\xb8\v\U0002979a", // 𩞚
+ 0x2979b: "\xb8\v\U0002979b", // 𩞛
+ 0x2979c: "\xb8\v\U0002979c", // 𩞜
+ 0x2979d: "\xb8\v\U0002979d", // 𩞝
+ 0x2979e: "\xb8\v\U0002979e", // 𩞞
+ 0x2979f: "\xb8\v\U0002979f", // 𩞟
+ 0x297a0: "\xb8\v\U000297a0", // 𩞠
+ 0x297a1: "\xb8\f\U000297a1", // 𩞡
+ 0x297a2: "\xb8\f\U000297a2", // 𩞢
+ 0x297a3: "\xb8\f\U000297a3", // 𩞣
+ 0x297a4: "\xb8\f\U000297a4", // 𩞤
+ 0x297a5: "\xb8\f\U000297a5", // 𩞥
+ 0x297a6: "\xb8\f\U000297a6", // 𩞦
+ 0x297a7: "\xb8\f\U000297a7", // 𩞧
+ 0x297a8: "\xb8\f\U000297a8", // 𩞨
+ 0x297a9: "\xb8\f\U000297a9", // 𩞩
+ 0x297aa: "\xb8\f\U000297aa", // 𩞪
+ 0x297ab: "\xb8\f\U000297ab", // 𩞫
+ 0x297ac: "\xb8\f\U000297ac", // 𩞬
+ 0x297ad: "\xb8\f\U000297ad", // 𩞭
+ 0x297ae: "\xb8\f\U000297ae", // 𩞮
+ 0x297af: "\xb8\f\U000297af", // 𩞯
+ 0x297b0: "\xb8\f\U000297b0", // 𩞰
+ 0x297b1: "\xb8\f\U000297b1", // 𩞱
+ 0x297b2: "\xb8\f\U000297b2", // 𩞲
+ 0x297b3: "\xb8\f\U000297b3", // 𩞳
+ 0x297b4: "\xb8\f\U000297b4", // 𩞴
+ 0x297b5: "\xb8\f\U000297b5", // 𩞵
+ 0x297b6: "\xb8\r\U000297b6", // 𩞶
+ 0x297b7: "\xb8\f\U000297b7", // 𩞷
+ 0x297b8: "\xb8\f\U000297b8", // 𩞸
+ 0x297b9: "\xb8\f\U000297b9", // 𩞹
+ 0x297ba: "\xb8\f\U000297ba", // 𩞺
+ 0x297bb: "\xb8\f\U000297bb", // 𩞻
+ 0x297bc: "\xb8\f\U000297bc", // 𩞼
+ 0x297bd: "\xb8\f\U000297bd", // 𩞽
+ 0x297be: "\xb8\r\U000297be", // 𩞾
+ 0x297bf: "\xb8\r\U000297bf", // 𩞿
+ 0x297c0: "\xb8\r\U000297c0", // 𩟀
+ 0x297c1: "\xb8\r\U000297c1", // 𩟁
+ 0x297c2: "\xb8\r\U000297c2", // 𩟂
+ 0x297c3: "\xb8\r\U000297c3", // 𩟃
+ 0x297c4: "\xb8\r\U000297c4", // 𩟄
+ 0x297c5: "\xb8\r\U000297c5", // 𩟅
+ 0x297c6: "\xb8\r\U000297c6", // 𩟆
+ 0x297c7: "\xb8\r\U000297c7", // 𩟇
+ 0x297c8: "\xb8\r\U000297c8", // 𩟈
+ 0x297c9: "\xb8\r\U000297c9", // 𩟉
+ 0x297ca: "\xb8\r\U000297ca", // 𩟊
+ 0x297cb: "\xb8\r\U000297cb", // 𩟋
+ 0x297cc: "\xb8\r\U000297cc", // 𩟌
+ 0x297cd: "\xb8\r\U000297cd", // 𩟍
+ 0x297ce: "\xb8\r\U000297ce", // 𩟎
+ 0x297cf: "\xb8\r\U000297cf", // 𩟏
+ 0x297d0: "\xb8\r\U000297d0", // 𩟐
+ 0x297d1: "\xb8\r\U000297d1", // 𩟑
+ 0x297d2: "\xb8\r\U000297d2", // 𩟒
+ 0x297d3: "\xb8\x0e\U000297d3", // 𩟓
+ 0x297d4: "\xb8\x0e\U000297d4", // 𩟔
+ 0x297d5: "\xb8\x0e\U000297d5", // 𩟕
+ 0x297d6: "\xb8\x0e\U000297d6", // 𩟖
+ 0x297d7: "\xb8\x0e\U000297d7", // 𩟗
+ 0x297d8: "\xb8\x0e\U000297d8", // 𩟘
+ 0x297d9: "\xb8\x0e\U000297d9", // 𩟙
+ 0x297da: "\xb8\x0e\U000297da", // 𩟚
+ 0x297db: "\xb8\x0e\U000297db", // 𩟛
+ 0x297dc: "\xb8\x0e\U000297dc", // 𩟜
+ 0x297dd: "\xb8\x0e\U000297dd", // 𩟝
+ 0x297de: "\xb8\x0e\U000297de", // 𩟞
+ 0x297df: "\xb8\x0e\U000297df", // 𩟟
+ 0x297e0: "\xb8\x0e\U000297e0", // 𩟠
+ 0x297e1: "\xb8\x0e\U000297e1", // 𩟡
+ 0x297e2: "\xb8\x0e\U000297e2", // 𩟢
+ 0x297e3: "\xb8\x0e\U000297e3", // 𩟣
+ 0x297e4: "\xb8\x0f\U000297e4", // 𩟤
+ 0x297e5: "\xb8\x0f\U000297e5", // 𩟥
+ 0x297e6: "\xb8\x0f\U000297e6", // 𩟦
+ 0x297e7: "\xb8\x0f\U000297e7", // 𩟧
+ 0x297e8: "\xb8\x0f\U000297e8", // 𩟨
+ 0x297e9: "\xb8\x0f\U000297e9", // 𩟩
+ 0x297ea: "\xb8\x0f\U000297ea", // 𩟪
+ 0x297eb: "\xb8\x0f\U000297eb", // 𩟫
+ 0x297ec: "\xb8\x0f\U000297ec", // 𩟬
+ 0x297ed: "\xb8\x10\U000297ed", // 𩟭
+ 0x297ee: "\xb8\x10\U000297ee", // 𩟮
+ 0x297ef: "\xb8\x10\U000297ef", // 𩟯
+ 0x297f0: "\xb8\x10\U000297f0", // 𩟰
+ 0x297f1: "\xb8\x10\U000297f1", // 𩟱
+ 0x297f2: "\xb8\x10\U000297f2", // 𩟲
+ 0x297f3: "\xb8\x10\U000297f3", // 𩟳
+ 0x297f4: "\xb8\x10\U000297f4", // 𩟴
+ 0x297f5: "\xb8\x10\U000297f5", // 𩟵
+ 0x297f6: "\xb8\x11\U000297f6", // 𩟶
+ 0x297f7: "\xb8\x12\U000297f7", // 𩟷
+ 0x297f8: "\xb8\x12\U000297f8", // 𩟸
+ 0x297f9: "\xb8\x12\U000297f9", // 𩟹
+ 0x297fa: "\xb8\x12\U000297fa", // 𩟺
+ 0x297fb: "\xb8\x15\U000297fb", // 𩟻
+ 0x297fc: "\xb8\x16\U000297fc", // 𩟼
+ 0x297fd: "\xb8\x18\U000297fd", // 𩟽
+ 0x297fe: "\xb8\x04\U000297fe", // 𩟾
+ 0x297ff: "\xb8\x04\U000297ff", // 𩟿
+ 0x29800: "\xb8\x04\U00029800", // 𩠀
+ 0x29801: "\xb8\x05\U00029801", // 𩠁
+ 0x29802: "\xb8\x05\U00029802", // 𩠂
+ 0x29803: "\xb8\x06\U00029803", // 𩠃
+ 0x29804: "\xb8\a\U00029804", // 𩠄
+ 0x29805: "\xb8\a\U00029805", // 𩠅
+ 0x29806: "\xb8\b\U00029806", // 𩠆
+ 0x29807: "\xb8\a\U00029807", // 𩠇
+ 0x29808: "\xb8\b\U00029808", // 𩠈
+ 0x29809: "\xb8\b\U00029809", // 𩠉
+ 0x2980a: "\xb8\t\U0002980a", // 𩠊
+ 0x2980b: "\xb8\t\U0002980b", // 𩠋
+ 0x2980c: "\xb8\n\U0002980c", // 𩠌
+ 0x2980d: "\xb8\v\U0002980d", // 𩠍
+ 0x2980e: "\xb8\v\U0002980e", // 𩠎
+ 0x2980f: "\xb8\f\U0002980f", // 𩠏
+ 0x29810: "\xb9\x00\U00029810", // 𩠐
+ 0x29811: "\xb9\x02\U00029811", // 𩠑
+ 0x29812: "\xb9\x02\U00029812", // 𩠒
+ 0x29813: "\xb9\x03\U00029813", // 𩠓
+ 0x29814: "\xb9\x04\U00029814", // 𩠔
+ 0x29815: "\xb9\x05\U00029815", // 𩠕
+ 0x29816: "\xb9\x05\U00029816", // 𩠖
+ 0x29817: "\xb9\x05\U00029817", // 𩠗
+ 0x29818: "\xb9\x05\U00029818", // 𩠘
+ 0x29819: "\xb9\x05\U00029819", // 𩠙
+ 0x2981a: "\xb9\x06\U0002981a", // 𩠚
+ 0x2981b: "\xb9\x06\U0002981b", // 𩠛
+ 0x2981c: "\xb9\x06\U0002981c", // 𩠜
+ 0x2981d: "\xb9\x06\U0002981d", // 𩠝
+ 0x2981e: "\xb9\x06\U0002981e", // 𩠞
+ 0x2981f: "\xb9\x06\U0002981f", // 𩠟
+ 0x29820: "\xb9\x06\U00029820", // 𩠠
+ 0x29821: "\xb9\a\U00029821", // 𩠡
+ 0x29822: "\xb9\a\U00029822", // 𩠢
+ 0x29823: "\xb9\a\U00029823", // 𩠣
+ 0x29824: "\xb9\a\U00029824", // 𩠤
+ 0x29825: "\xb9\a\U00029825", // 𩠥
+ 0x29826: "\xb9\a\U00029826", // 𩠦
+ 0x29827: "\xb9\a\U00029827", // 𩠧
+ 0x29828: "\xb9\b\U00029828", // 𩠨
+ 0x29829: "\xb9\b\U00029829", // 𩠩
+ 0x2982a: "\xb9\t\U0002982a", // 𩠪
+ 0x2982b: "\xb9\t\U0002982b", // 𩠫
+ 0x2982c: "\xb9\t\U0002982c", // 𩠬
+ 0x2982d: "\xb9\t\U0002982d", // 𩠭
+ 0x2982e: "B\x0f\U0002982e", // 𩠮
+ 0x2982f: "\xb9\n\U0002982f", // 𩠯
+ 0x29830: "B\x10\U00029830", // 𩠰
+ 0x29831: "\xb9\n\U00029831", // 𩠱
+ 0x29832: "\xb9\v\U00029832", // 𩠲
+ 0x29833: "\xb9\f\U00029833", // 𩠳
+ 0x29834: "\xb9\r\U00029834", // 𩠴
+ 0x29835: "\xb9\x0e\U00029835", // 𩠵
+ 0x29836: "\xb9\x0e\U00029836", // 𩠶
+ 0x29837: "\xb9\x0f\U00029837", // 𩠷
+ 0x29838: "\xb9\x10\U00029838", // 𩠸
+ 0x29839: "\xb9\x12\U00029839", // 𩠹
+ 0x2983a: "\xba\x01\U0002983a", // 𩠺
+ 0x2983b: "\xba\x04\U0002983b", // 𩠻
+ 0x2983c: "\xba\x04\U0002983c", // 𩠼
+ 0x2983d: "\xba\x04\U0002983d", // 𩠽
+ 0x2983e: "\xba\x05\U0002983e", // 𩠾
+ 0x2983f: "\xba\x05\U0002983f", // 𩠿
+ 0x29840: "\xba\x05\U00029840", // 𩡀
+ 0x29841: "\xba\x05\U00029841", // 𩡁
+ 0x29842: "\xba\x06\U00029842", // 𩡂
+ 0x29843: "\xba\x05\U00029843", // 𩡃
+ 0x29844: "\xba\x05\U00029844", // 𩡄
+ 0x29845: "\xba\x06\U00029845", // 𩡅
+ 0x29846: "\xba\x06\U00029846", // 𩡆
+ 0x29847: "\xba\a\U00029847", // 𩡇
+ 0x29848: "\xba\a\U00029848", // 𩡈
+ 0x29849: "\xba\b\U00029849", // 𩡉
+ 0x2984a: "\xba\b\U0002984a", // 𩡊
+ 0x2984b: "\xba\b\U0002984b", // 𩡋
+ 0x2984c: "\xba\t\U0002984c", // 𩡌
+ 0x2984d: "\xba\t\U0002984d", // 𩡍
+ 0x2984e: "\xba\t\U0002984e", // 𩡎
+ 0x2984f: "\xba\b\U0002984f", // 𩡏
+ 0x29850: "\xba\t\U00029850", // 𩡐
+ 0x29851: "\xba\t\U00029851", // 𩡑
+ 0x29852: "\xba\t\U00029852", // 𩡒
+ 0x29853: "\xba\n\U00029853", // 𩡓
+ 0x29854: "\xba\n\U00029854", // 𩡔
+ 0x29855: "\xba\n\U00029855", // 𩡕
+ 0x29856: "\xba\n\U00029856", // 𩡖
+ 0x29857: "\xba\n\U00029857", // 𩡗
+ 0x29858: "\xba\n\U00029858", // 𩡘
+ 0x29859: "\xba\v\U00029859", // 𩡙
+ 0x2985a: "\xba\v\U0002985a", // 𩡚
+ 0x2985b: "\xba\v\U0002985b", // 𩡛
+ 0x2985c: "\xba\v\U0002985c", // 𩡜
+ 0x2985d: "\xba\f\U0002985d", // 𩡝
+ 0x2985e: "\xba\f\U0002985e", // 𩡞
+ 0x2985f: "\xba\f\U0002985f", // 𩡟
+ 0x29860: "\xba\f\U00029860", // 𩡠
+ 0x29861: "\xba\f\U00029861", // 𩡡
+ 0x29862: "\xba\r\U00029862", // 𩡢
+ 0x29863: "\xba\r\U00029863", // 𩡣
+ 0x29864: "\xba\x0e\U00029864", // 𩡤
+ 0x29865: "\xba\x11\U00029865", // 𩡥
+ 0x29866: "\xba\x13\U00029866", // 𩡦
+ 0x29867: "\xbb\x00\U00029867", // 𩡧
+ 0x29868: "\xbb\x01\U00029868", // 𩡨
+ 0x29869: "\xbb\x02\U00029869", // 𩡩
+ 0x2986a: "\xbb\x02\U0002986a", // 𩡪
+ 0x2986b: "\xbb\x02\U0002986b", // 𩡫
+ 0x2986c: "\xbb\x02\U0002986c", // 𩡬
+ 0x2986d: "\xbb\x02\U0002986d", // 𩡭
+ 0x2986e: "\xbb\x02\U0002986e", // 𩡮
+ 0x2986f: "\xbb\x02\U0002986f", // 𩡯
+ 0x29870: "\xbb\x03\U00029870", // 𩡰
+ 0x29871: "\xbb\x03\U00029871", // 𩡱
+ 0x29872: "\xbb\x03\U00029872", // 𩡲
+ 0x29873: "\xbb\x03\U00029873", // 𩡳
+ 0x29874: "\xbb\x03\U00029874", // 𩡴
+ 0x29875: "\xbb\x03\U00029875", // 𩡵
+ 0x29876: "\xbb\x03\U00029876", // 𩡶
+ 0x29877: "\xbb\x04\U00029877", // 𩡷
+ 0x29878: "\xbb\x04\U00029878", // 𩡸
+ 0x29879: "\xbb\x04\U00029879", // 𩡹
+ 0x2987a: "\xbb\x04\U0002987a", // 𩡺
+ 0x2987b: "\xbb\x04\U0002987b", // 𩡻
+ 0x2987c: "\xbb\x04\U0002987c", // 𩡼
+ 0x2987d: "\xbb\x04\U0002987d", // 𩡽
+ 0x2987e: "\xbb\x04\U0002987e", // 𩡾
+ 0x2987f: "\xbb\x05\U0002987f", // 𩡿
+ 0x29880: "\xbb\x04\U00029880", // 𩢀
+ 0x29881: "\xbb\x04\U00029881", // 𩢁
+ 0x29882: "\xbb\x04\U00029882", // 𩢂
+ 0x29883: "\xbb\x04\U00029883", // 𩢃
+ 0x29884: "\xbb\x04\U00029884", // 𩢄
+ 0x29885: "\xbb\x04\U00029885", // 𩢅
+ 0x29886: "\xbb\x05\U00029886", // 𩢆
+ 0x29887: "\xbb\x04\U00029887", // 𩢇
+ 0x29888: "\xbb\x04\U00029888", // 𩢈
+ 0x29889: "\xbb\x04\U00029889", // 𩢉
+ 0x2988a: "\xbb\x04\U0002988a", // 𩢊
+ 0x2988b: "\xbb\x04\U0002988b", // 𩢋
+ 0x2988c: "\xbb\x04\U0002988c", // 𩢌
+ 0x2988d: "\xbb\x05\U0002988d", // 𩢍
+ 0x2988e: "\xbb\x05\U0002988e", // 𩢎
+ 0x2988f: "\xbb\x05\U0002988f", // 𩢏
+ 0x29890: "\xbb\x05\U00029890", // 𩢐
+ 0x29891: "\xbb\x05\U00029891", // 𩢑
+ 0x29892: "\xbb\x05\U00029892", // 𩢒
+ 0x29893: "\xbb\x05\U00029893", // 𩢓
+ 0x29894: "\xbb\x05\U00029894", // 𩢔
+ 0x29895: "\xbb\x05\U00029895", // 𩢕
+ 0x29896: "\xbb\x05\U00029896", // 𩢖
+ 0x29897: "\xbb\x05\U00029897", // 𩢗
+ 0x29898: "\xbb\x05\U00029898", // 𩢘
+ 0x29899: "\xbb\x05\U00029899", // 𩢙
+ 0x2989a: "\xbb\x05\U0002989a", // 𩢚
+ 0x2989b: "\xbb\x05\U0002989b", // 𩢛
+ 0x2989c: "\xbb\x05\U0002989c", // 𩢜
+ 0x2989d: "\xbb\x05\U0002989d", // 𩢝
+ 0x2989e: "\xbb\x05\U0002989e", // 𩢞
+ 0x2989f: "\xbb\x05\U0002989f", // 𩢟
+ 0x298a0: "\xbb\x05\U000298a0", // 𩢠
+ 0x298a1: "\xbb\x05\U000298a1", // 𩢡
+ 0x298a2: "\xbb\x05\U000298a2", // 𩢢
+ 0x298a3: "\xbb\x05\U000298a3", // 𩢣
+ 0x298a4: "\xbb\x05\U000298a4", // 𩢤
+ 0x298a5: "\xbb\x05\U000298a5", // 𩢥
+ 0x298a6: "\xbb\x05\U000298a6", // 𩢦
+ 0x298a7: "\xbb\x05\U000298a7", // 𩢧
+ 0x298a8: "\xbb\x05\U000298a8", // 𩢨
+ 0x298a9: "\xbb\x05\U000298a9", // 𩢩
+ 0x298aa: "\xbb\x05\U000298aa", // 𩢪
+ 0x298ab: "\xbb\x05\U000298ab", // 𩢫
+ 0x298ac: "\xbb\x05\U000298ac", // 𩢬
+ 0x298ad: "\xbb\x05\U000298ad", // 𩢭
+ 0x298ae: "\xbb\x06\U000298ae", // 𩢮
+ 0x298af: "\xbb\x06\U000298af", // 𩢯
+ 0x298b0: "\xbb\x06\U000298b0", // 𩢰
+ 0x298b1: "\xbb\x06\U000298b1", // 𩢱
+ 0x298b2: "\xbb\x06\U000298b2", // 𩢲
+ 0x298b3: "\xbb\x06\U000298b3", // 𩢳
+ 0x298b4: "\xbb\x06\U000298b4", // 𩢴
+ 0x298b5: "\xbb\x06\U000298b5", // 𩢵
+ 0x298b6: "\xbb\x06\U000298b6", // 𩢶
+ 0x298b7: "\xbb\x06\U000298b7", // 𩢷
+ 0x298b8: "\xbb\x06\U000298b8", // 𩢸
+ 0x298b9: "\xbb\x06\U000298b9", // 𩢹
+ 0x298ba: "\xbb\x06\U000298ba", // 𩢺
+ 0x298bb: "\xbb\x06\U000298bb", // 𩢻
+ 0x298bc: "\xbb\x06\U000298bc", // 𩢼
+ 0x298bd: "\xbb\x06\U000298bd", // 𩢽
+ 0x298be: "\xbb\x06\U000298be", // 𩢾
+ 0x298bf: "\xbb\x06\U000298bf", // 𩢿
+ 0x298c0: "\xbb\x06\U000298c0", // 𩣀
+ 0x298c1: "\xbb\x06\U000298c1", // 𩣁
+ 0x298c2: "\xbb\x06\U000298c2", // 𩣂
+ 0x298c3: "\xbb\x06\U000298c3", // 𩣃
+ 0x298c4: "\xbb\x06\U000298c4", // 𩣄
+ 0x298c5: "\xbb\x06\U000298c5", // 𩣅
+ 0x298c6: "\xbb\x06\U000298c6", // 𩣆
+ 0x298c7: "\xbb\x06\U000298c7", // 𩣇
+ 0x298c8: "\xbb\x06\U000298c8", // 𩣈
+ 0x298c9: "\xbb\x06\U000298c9", // 𩣉
+ 0x298ca: "\xbb\x06\U000298ca", // 𩣊
+ 0x298cb: "\xbb\x06\U000298cb", // 𩣋
+ 0x298cc: "\xbb\x06\U000298cc", // 𩣌
+ 0x298cd: "\xbb\x06\U000298cd", // 𩣍
+ 0x298ce: "\xbb\x06\U000298ce", // 𩣎
+ 0x298cf: "\xbb\x06\U000298cf", // 𩣏
+ 0x298d0: "\xbb\x06\U000298d0", // 𩣐
+ 0x298d1: "\xbb\x06\U000298d1", // 𩣑
+ 0x298d2: "\xbb\x06\U000298d2", // 𩣒
+ 0x298d3: "\xbb\x06\U000298d3", // 𩣓
+ 0x298d4: "\xbb\x06\U000298d4", // 𩣔
+ 0x298d5: "\xbb\x06\U000298d5", // 𩣕
+ 0x298d6: "\xbb\a\U000298d6", // 𩣖
+ 0x298d7: "\xbb\a\U000298d7", // 𩣗
+ 0x298d8: "\xbb\a\U000298d8", // 𩣘
+ 0x298d9: "\xbb\a\U000298d9", // 𩣙
+ 0x298da: "\xbb\a\U000298da", // 𩣚
+ 0x298db: "\xbb\a\U000298db", // 𩣛
+ 0x298dc: "\xbb\a\U000298dc", // 𩣜
+ 0x298dd: "\xbb\a\U000298dd", // 𩣝
+ 0x298de: "\xbb\a\U000298de", // 𩣞
+ 0x298df: "\xbb\a\U000298df", // 𩣟
+ 0x298e0: "\xbb\a\U000298e0", // 𩣠
+ 0x298e1: "\xbb\a\U000298e1", // 𩣡
+ 0x298e2: "\xbb\a\U000298e2", // 𩣢
+ 0x298e3: "\xbb\a\U000298e3", // 𩣣
+ 0x298e4: "\xbb\a\U000298e4", // 𩣤
+ 0x298e5: "\xbb\a\U000298e5", // 𩣥
+ 0x298e6: "\xbb\a\U000298e6", // 𩣦
+ 0x298e7: "\xbb\a\U000298e7", // 𩣧
+ 0x298e8: "\xbb\a\U000298e8", // 𩣨
+ 0x298e9: "\xbb\a\U000298e9", // 𩣩
+ 0x298ea: "\xbb\a\U000298ea", // 𩣪
+ 0x298eb: "\xbb\a\U000298eb", // 𩣫
+ 0x298ec: "\xbb\a\U000298ec", // 𩣬
+ 0x298ed: "\xbb\b\U000298ed", // 𩣭
+ 0x298ee: "\xbb\b\U000298ee", // 𩣮
+ 0x298ef: "\xbb\b\U000298ef", // 𩣯
+ 0x298f0: "\xbb\b\U000298f0", // 𩣰
+ 0x298f1: "\xbb\b\U000298f1", // 𩣱
+ 0x298f2: "\xbb\b\U000298f2", // 𩣲
+ 0x298f3: "\xbb\b\U000298f3", // 𩣳
+ 0x298f4: "\xbb\b\U000298f4", // 𩣴
+ 0x298f5: "\xbb\b\U000298f5", // 𩣵
+ 0x298f6: "\xbb\b\U000298f6", // 𩣶
+ 0x298f7: "\xbb\b\U000298f7", // 𩣷
+ 0x298f8: "\xbb\b\U000298f8", // 𩣸
+ 0x298f9: "\xbb\b\U000298f9", // 𩣹
+ 0x298fa: "\xbb\b\U000298fa", // 𩣺
+ 0x298fb: "\xbb\b\U000298fb", // 𩣻
+ 0x298fc: "\xbb\b\U000298fc", // 𩣼
+ 0x298fd: "\xbb\b\U000298fd", // 𩣽
+ 0x298fe: "\xbb\b\U000298fe", // 𩣾
+ 0x298ff: "\xbb\b\U000298ff", // 𩣿
+ 0x29900: "\xbb\b\U00029900", // 𩤀
+ 0x29901: "\xbb\b\U00029901", // 𩤁
+ 0x29902: "\xbb\b\U00029902", // 𩤂
+ 0x29903: "\xbb\b\U00029903", // 𩤃
+ 0x29904: "\xbb\b\U00029904", // 𩤄
+ 0x29905: "\xbb\b\U00029905", // 𩤅
+ 0x29906: "\xbb\b\U00029906", // 𩤆
+ 0x29907: "\xbb\b\U00029907", // 𩤇
+ 0x29908: "\xbb\b\U00029908", // 𩤈
+ 0x29909: "\xbb\b\U00029909", // 𩤉
+ 0x2990a: "\xbb\b\U0002990a", // 𩤊
+ 0x2990b: "\xbb\b\U0002990b", // 𩤋
+ 0x2990c: "\xbb\b\U0002990c", // 𩤌
+ 0x2990d: "\xbb\b\U0002990d", // 𩤍
+ 0x2990e: "\xbb\b\U0002990e", // 𩤎
+ 0x2990f: "\xbb\b\U0002990f", // 𩤏
+ 0x29910: "\xbb\b\U00029910", // 𩤐
+ 0x29911: "\xbb\b\U00029911", // 𩤑
+ 0x29912: "\xbb\b\U00029912", // 𩤒
+ 0x29913: "\xbb\b\U00029913", // 𩤓
+ 0x29914: "\xbb\b\U00029914", // 𩤔
+ 0x29915: "\xbb\b\U00029915", // 𩤕
+ 0x29916: "\xbb\b\U00029916", // 𩤖
+ 0x29917: "\xbb\t\U00029917", // 𩤗
+ 0x29918: "\xbb\t\U00029918", // 𩤘
+ 0x29919: "\xbb\t\U00029919", // 𩤙
+ 0x2991a: "\xbb\t\U0002991a", // 𩤚
+ 0x2991b: "\xbb\t\U0002991b", // 𩤛
+ 0x2991c: "\xbb\t\U0002991c", // 𩤜
+ 0x2991d: "\xbb\t\U0002991d", // 𩤝
+ 0x2991e: "\xbb\b\U0002991e", // 𩤞
+ 0x2991f: "\xbb\t\U0002991f", // 𩤟
+ 0x29920: "\xbb\t\U00029920", // 𩤠
+ 0x29921: "\xbb\t\U00029921", // 𩤡
+ 0x29922: "\xbb\t\U00029922", // 𩤢
+ 0x29923: "\xbb\t\U00029923", // 𩤣
+ 0x29924: "\xbb\t\U00029924", // 𩤤
+ 0x29925: "\xbb\t\U00029925", // 𩤥
+ 0x29926: "\xbb\t\U00029926", // 𩤦
+ 0x29927: "\xbb\t\U00029927", // 𩤧
+ 0x29928: "\xbb\t\U00029928", // 𩤨
+ 0x29929: "\xbb\t\U00029929", // 𩤩
+ 0x2992a: "\xbb\t\U0002992a", // 𩤪
+ 0x2992b: "\xbb\t\U0002992b", // 𩤫
+ 0x2992c: "\xbb\t\U0002992c", // 𩤬
+ 0x2992d: "\xbb\t\U0002992d", // 𩤭
+ 0x2992e: "\xbb\t\U0002992e", // 𩤮
+ 0x2992f: "\xbb\t\U0002992f", // 𩤯
+ 0x29930: "\xbb\t\U00029930", // 𩤰
+ 0x29931: "\xbb\t\U00029931", // 𩤱
+ 0x29932: "\xbb\t\U00029932", // 𩤲
+ 0x29933: "\xbb\t\U00029933", // 𩤳
+ 0x29934: "\xbb\t\U00029934", // 𩤴
+ 0x29935: "\xbb\t\U00029935", // 𩤵
+ 0x29936: "\xbb\t\U00029936", // 𩤶
+ 0x29937: "\xbb\a\U00029937", // 𩤷
+ 0x29938: "\xbb\t\U00029938", // 𩤸
+ 0x29939: "\xbb\t\U00029939", // 𩤹
+ 0x2993a: "\xbb\t\U0002993a", // 𩤺
+ 0x2993b: "\xbb\t\U0002993b", // 𩤻
+ 0x2993c: "\xbb\t\U0002993c", // 𩤼
+ 0x2993d: "\xbb\n\U0002993d", // 𩤽
+ 0x2993e: "\xbb\n\U0002993e", // 𩤾
+ 0x2993f: "\xbb\n\U0002993f", // 𩤿
+ 0x29940: "\xbb\n\U00029940", // 𩥀
+ 0x29941: "\xbb\n\U00029941", // 𩥁
+ 0x29942: "\xbb\n\U00029942", // 𩥂
+ 0x29943: "\xbb\n\U00029943", // 𩥃
+ 0x29944: "\xbb\n\U00029944", // 𩥄
+ 0x29945: "\xbb\n\U00029945", // 𩥅
+ 0x29946: "\xbb\n\U00029946", // 𩥆
+ 0x29947: "\xbb\n\U00029947", // 𩥇
+ 0x29948: "\xbb\n\U00029948", // 𩥈
+ 0x29949: "\xbb\n\U00029949", // 𩥉
+ 0x2994a: "\xbb\n\U0002994a", // 𩥊
+ 0x2994b: "\xbb\n\U0002994b", // 𩥋
+ 0x2994c: "\xbb\n\U0002994c", // 𩥌
+ 0x2994d: "\xbb\n\U0002994d", // 𩥍
+ 0x2994e: "\xbb\n\U0002994e", // 𩥎
+ 0x2994f: "\xbb\n\U0002994f", // 𩥏
+ 0x29950: "\xbb\n\U00029950", // 𩥐
+ 0x29951: "\xbb\n\U00029951", // 𩥑
+ 0x29952: "\xbb\n\U00029952", // 𩥒
+ 0x29953: "\xbb\n\U00029953", // 𩥓
+ 0x29954: "\xbb\n\U00029954", // 𩥔
+ 0x29955: "\xbb\n\U00029955", // 𩥕
+ 0x29956: "\xbb\n\U00029956", // 𩥖
+ 0x29957: "\xbb\n\U00029957", // 𩥗
+ 0x29958: "\xbb\n\U00029958", // 𩥘
+ 0x29959: "\xbb\n\U00029959", // 𩥙
+ 0x2995a: "\xbb\n\U0002995a", // 𩥚
+ 0x2995b: "\xbb\n\U0002995b", // 𩥛
+ 0x2995c: "\xbb\n\U0002995c", // 𩥜
+ 0x2995d: "\xbb\n\U0002995d", // 𩥝
+ 0x2995e: "\xbb\n\U0002995e", // 𩥞
+ 0x2995f: "\xbb\n\U0002995f", // 𩥟
+ 0x29960: "\xbb\n\U00029960", // 𩥠
+ 0x29961: "\xbb\n\U00029961", // 𩥡
+ 0x29962: "\xbb\n\U00029962", // 𩥢
+ 0x29963: "\xbb\n\U00029963", // 𩥣
+ 0x29964: "\xbb\n\U00029964", // 𩥤
+ 0x29965: "\xbb\n\U00029965", // 𩥥
+ 0x29966: "\xbb\n\U00029966", // 𩥦
+ 0x29967: "\xbb\n\U00029967", // 𩥧
+ 0x29968: "\xbb\n\U00029968", // 𩥨
+ 0x29969: "\xbb\n\U00029969", // 𩥩
+ 0x2996a: "\xbb\n\U0002996a", // 𩥪
+ 0x2996b: "\xbb\v\U0002996b", // 𩥫
+ 0x2996c: "\xbb\v\U0002996c", // 𩥬
+ 0x2996d: "\xbb\v\U0002996d", // 𩥭
+ 0x2996e: "\xbb\v\U0002996e", // 𩥮
+ 0x2996f: "\xbb\v\U0002996f", // 𩥯
+ 0x29970: "\xbb\v\U00029970", // 𩥰
+ 0x29971: "\xbb\v\U00029971", // 𩥱
+ 0x29972: "\xbb\v\U00029972", // 𩥲
+ 0x29973: "\xbb\v\U00029973", // 𩥳
+ 0x29974: "\xbb\v\U00029974", // 𩥴
+ 0x29975: "\xbb\v\U00029975", // 𩥵
+ 0x29976: "\xbb\v\U00029976", // 𩥶
+ 0x29977: "\xbb\v\U00029977", // 𩥷
+ 0x29978: "\xbb\v\U00029978", // 𩥸
+ 0x29979: "\xbb\v\U00029979", // 𩥹
+ 0x2997a: "\xbb\v\U0002997a", // 𩥺
+ 0x2997b: "\xbb\v\U0002997b", // 𩥻
+ 0x2997c: "\xbb\v\U0002997c", // 𩥼
+ 0x2997d: "\xbb\v\U0002997d", // 𩥽
+ 0x2997e: "\xbb\v\U0002997e", // 𩥾
+ 0x2997f: "\xbb\v\U0002997f", // 𩥿
+ 0x29980: "\xbb\v\U00029980", // 𩦀
+ 0x29981: "\xbb\v\U00029981", // 𩦁
+ 0x29982: "\xbb\f\U00029982", // 𩦂
+ 0x29983: "\xbb\f\U00029983", // 𩦃
+ 0x29984: "\xbb\f\U00029984", // 𩦄
+ 0x29985: "\xbb\f\U00029985", // 𩦅
+ 0x29986: "\xbb\f\U00029986", // 𩦆
+ 0x29987: "\xbb\f\U00029987", // 𩦇
+ 0x29988: "\xbb\f\U00029988", // 𩦈
+ 0x29989: "\xbb\f\U00029989", // 𩦉
+ 0x2998a: "\xbb\f\U0002998a", // 𩦊
+ 0x2998b: "\xbb\f\U0002998b", // 𩦋
+ 0x2998c: "\xbb\f\U0002998c", // 𩦌
+ 0x2998d: "\xbb\f\U0002998d", // 𩦍
+ 0x2998e: "\xbb\f\U0002998e", // 𩦎
+ 0x2998f: "\xbb\f\U0002998f", // 𩦏
+ 0x29990: "\xbb\f\U00029990", // 𩦐
+ 0x29991: "\xbb\f\U00029991", // 𩦑
+ 0x29992: "\xbb\f\U00029992", // 𩦒
+ 0x29993: "\xbb\f\U00029993", // 𩦓
+ 0x29994: "\xbb\f\U00029994", // 𩦔
+ 0x29995: "\xbb\f\U00029995", // 𩦕
+ 0x29996: "\xbb\f\U00029996", // 𩦖
+ 0x29997: "\xbb\f\U00029997", // 𩦗
+ 0x29998: "\xbb\f\U00029998", // 𩦘
+ 0x29999: "\xbb\f\U00029999", // 𩦙
+ 0x2999a: "\xbb\f\U0002999a", // 𩦚
+ 0x2999b: "\xbb\f\U0002999b", // 𩦛
+ 0x2999c: "\xbb\f\U0002999c", // 𩦜
+ 0x2999d: "\xbb\f\U0002999d", // 𩦝
+ 0x2999e: "\xbb\r\U0002999e", // 𩦞
+ 0x2999f: "\xbb\r\U0002999f", // 𩦟
+ 0x299a0: "\xbb\r\U000299a0", // 𩦠
+ 0x299a1: "\xbb\r\U000299a1", // 𩦡
+ 0x299a2: "\xbb\r\U000299a2", // 𩦢
+ 0x299a3: "\xbb\r\U000299a3", // 𩦣
+ 0x299a4: "\xbb\r\U000299a4", // 𩦤
+ 0x299a5: "\xbb\r\U000299a5", // 𩦥
+ 0x299a6: "\xbb\r\U000299a6", // 𩦦
+ 0x299a7: "\xbb\r\U000299a7", // 𩦧
+ 0x299a8: "\xbb\r\U000299a8", // 𩦨
+ 0x299a9: "\xbb\r\U000299a9", // 𩦩
+ 0x299aa: "\xbb\r\U000299aa", // 𩦪
+ 0x299ab: "\xbb\r\U000299ab", // 𩦫
+ 0x299ac: "\xbb\r\U000299ac", // 𩦬
+ 0x299ad: "\xbb\r\U000299ad", // 𩦭
+ 0x299ae: "\xbb\r\U000299ae", // 𩦮
+ 0x299af: "\xbb\r\U000299af", // 𩦯
+ 0x299b0: "\xbb\r\U000299b0", // 𩦰
+ 0x299b1: "\xbb\r\U000299b1", // 𩦱
+ 0x299b2: "\xbb\r\U000299b2", // 𩦲
+ 0x299b3: "\xbb\r\U000299b3", // 𩦳
+ 0x299b4: "\xbb\r\U000299b4", // 𩦴
+ 0x299b5: "\xbb\r\U000299b5", // 𩦵
+ 0x299b6: "\xbb\x0e\U000299b6", // 𩦶
+ 0x299b7: "\xbb\x0e\U000299b7", // 𩦷
+ 0x299b8: "\xbb\x0e\U000299b8", // 𩦸
+ 0x299b9: "\xbb\x0e\U000299b9", // 𩦹
+ 0x299ba: "\xbb\x0e\U000299ba", // 𩦺
+ 0x299bb: "\xbb\x0e\U000299bb", // 𩦻
+ 0x299bc: "\xbb\x0e\U000299bc", // 𩦼
+ 0x299bd: "\xbb\x0e\U000299bd", // 𩦽
+ 0x299be: "\xbb\x0e\U000299be", // 𩦾
+ 0x299bf: "\xbb\x0e\U000299bf", // 𩦿
+ 0x299c0: "\xbb\x0e\U000299c0", // 𩧀
+ 0x299c1: "\xbb\x0e\U000299c1", // 𩧁
+ 0x299c2: "\xbb\x0f\U000299c2", // 𩧂
+ 0x299c3: "\xbb\x0f\U000299c3", // 𩧃
+ 0x299c4: "\xbb\x0f\U000299c4", // 𩧄
+ 0x299c5: "\xbb\x0f\U000299c5", // 𩧅
+ 0x299c6: "\xbb\x0f\U000299c6", // 𩧆
+ 0x299c7: "\xbb\x0f\U000299c7", // 𩧇
+ 0x299c8: "\xbb\x0f\U000299c8", // 𩧈
+ 0x299c9: "\xbb\x0f\U000299c9", // 𩧉
+ 0x299ca: "\xbb\x0f\U000299ca", // 𩧊
+ 0x299cb: "\xbb\x0f\U000299cb", // 𩧋
+ 0x299cc: "\xbb\x0f\U000299cc", // 𩧌
+ 0x299cd: "\xbb\x0f\U000299cd", // 𩧍
+ 0x299ce: "\xbb\x0f\U000299ce", // 𩧎
+ 0x299cf: "\xbb\x10\U000299cf", // 𩧏
+ 0x299d0: "\xbb\x10\U000299d0", // 𩧐
+ 0x299d1: "\xbb\x10\U000299d1", // 𩧑
+ 0x299d2: "\xbb\x10\U000299d2", // 𩧒
+ 0x299d3: "\xbb\x10\U000299d3", // 𩧓
+ 0x299d4: "\xbb\x11\U000299d4", // 𩧔
+ 0x299d5: "\xbb\x11\U000299d5", // 𩧕
+ 0x299d6: "\xbb\x11\U000299d6", // 𩧖
+ 0x299d7: "\xbb\x11\U000299d7", // 𩧗
+ 0x299d8: "\xbb\x12\U000299d8", // 𩧘
+ 0x299d9: "\xbb\x12\U000299d9", // 𩧙
+ 0x299da: "\xbb\x12\U000299da", // 𩧚
+ 0x299db: "\xbb\x12\U000299db", // 𩧛
+ 0x299dc: "\xbb\x12\U000299dc", // 𩧜
+ 0x299dd: "\xbb\x12\U000299dd", // 𩧝
+ 0x299de: "\xbb\x12\U000299de", // 𩧞
+ 0x299df: "\xbb\x13\U000299df", // 𩧟
+ 0x299e0: "\xbb\x13\U000299e0", // 𩧠
+ 0x299e1: "\xbb\x14\U000299e1", // 𩧡
+ 0x299e2: "\xbb\x14\U000299e2", // 𩧢
+ 0x299e3: "\xbb\x15\U000299e3", // 𩧣
+ 0x299e4: "\xbb\x15\U000299e4", // 𩧤
+ 0x299e5: "\xbb\x1a\U000299e5", // 𩧥
+ 0x299e6: "\xbb\x04\U000299e6", // 𩧦
+ 0x299e7: "\xbb\x05\U000299e7", // 𩧧
+ 0x299e8: "\xbb\x05\U000299e8", // 𩧨
+ 0x299e9: "\xbb\x05\U000299e9", // 𩧩
+ 0x299ea: "\xbb\x05\U000299ea", // 𩧪
+ 0x299eb: "\xbb\x05\U000299eb", // 𩧫
+ 0x299ec: "\xbb\x05\U000299ec", // 𩧬
+ 0x299ed: "\xbb\x05\U000299ed", // 𩧭
+ 0x299ee: "\xbb\x06\U000299ee", // 𩧮
+ 0x299ef: "\xbb\x05\U000299ef", // 𩧯
+ 0x299f0: "\xbb\x06\U000299f0", // 𩧰
+ 0x299f1: "\xbb\x06\U000299f1", // 𩧱
+ 0x299f2: "\xbb\x06\U000299f2", // 𩧲
+ 0x299f3: "\xbb\x06\U000299f3", // 𩧳
+ 0x299f4: "\xbb\x06\U000299f4", // 𩧴
+ 0x299f5: "\xbb\x06\U000299f5", // 𩧵
+ 0x299f6: "\xbb\x06\U000299f6", // 𩧶
+ 0x299f7: "\xbb\a\U000299f7", // 𩧷
+ 0x299f8: "\xbb\a\U000299f8", // 𩧸
+ 0x299f9: "\xbb\a\U000299f9", // 𩧹
+ 0x299fa: "\xbb\a\U000299fa", // 𩧺
+ 0x299fb: "\xbb\b\U000299fb", // 𩧻
+ 0x299fc: "\xbb\b\U000299fc", // 𩧼
+ 0x299fd: "\xbb\b\U000299fd", // 𩧽
+ 0x299fe: "\xbb\t\U000299fe", // 𩧾
+ 0x299ff: "\xbb\t\U000299ff", // 𩧿
+ 0x29a00: "\xbb\t\U00029a00", // 𩨀
+ 0x29a01: "\xbb\t\U00029a01", // 𩨁
+ 0x29a02: "\xbb\t\U00029a02", // 𩨂
+ 0x29a03: "\xbb\t\U00029a03", // 𩨃
+ 0x29a04: "\xbb\n\U00029a04", // 𩨄
+ 0x29a05: "\xbb\t\U00029a05", // 𩨅
+ 0x29a06: "\xbb\t\U00029a06", // 𩨆
+ 0x29a07: "\xbb\t\U00029a07", // 𩨇
+ 0x29a08: "\xbb\t\U00029a08", // 𩨈
+ 0x29a09: "\xbb\t\U00029a09", // 𩨉
+ 0x29a0a: "\xbb\t\U00029a0a", // 𩨊
+ 0x29a0b: "\xbb\n\U00029a0b", // 𩨋
+ 0x29a0c: "\xbb\n\U00029a0c", // 𩨌
+ 0x29a0d: "\xbb\n\U00029a0d", // 𩨍
+ 0x29a0e: "\xbb\f\U00029a0e", // 𩨎
+ 0x29a0f: "\xbb\f\U00029a0f", // 𩨏
+ 0x29a10: "\xbb\x0f\U00029a10", // 𩨐
+ 0x29a11: "\xbc\x02\U00029a11", // 𩨑
+ 0x29a12: "\xbc\x02\U00029a12", // 𩨒
+ 0x29a13: "\xbc\x02\U00029a13", // 𩨓
+ 0x29a14: "\xbc\x03\U00029a14", // 𩨔
+ 0x29a15: "\xbc\x03\U00029a15", // 𩨕
+ 0x29a16: "\xbc\x03\U00029a16", // 𩨖
+ 0x29a17: "\xbc\x03\U00029a17", // 𩨗
+ 0x29a18: "\xbc\x03\U00029a18", // 𩨘
+ 0x29a19: "\xbc\x03\U00029a19", // 𩨙
+ 0x29a1a: "\xbc\x03\U00029a1a", // 𩨚
+ 0x29a1b: "\xbc\x03\U00029a1b", // 𩨛
+ 0x29a1c: "\xbc\x04\U00029a1c", // 𩨜
+ 0x29a1d: "\xbc\x04\U00029a1d", // 𩨝
+ 0x29a1e: "\xbc\x04\U00029a1e", // 𩨞
+ 0x29a1f: "\xbc\x04\U00029a1f", // 𩨟
+ 0x29a20: "\xbc\x04\U00029a20", // 𩨠
+ 0x29a21: "\xbc\x04\U00029a21", // 𩨡
+ 0x29a22: "\xbc\x04\U00029a22", // 𩨢
+ 0x29a23: "\xbc\x04\U00029a23", // 𩨣
+ 0x29a24: "\xbc\x04\U00029a24", // 𩨤
+ 0x29a25: "\xbc\x04\U00029a25", // 𩨥
+ 0x29a26: "\xbc\x04\U00029a26", // 𩨦
+ 0x29a27: "\xbc\x04\U00029a27", // 𩨧
+ 0x29a28: "\xbc\x04\U00029a28", // 𩨨
+ 0x29a29: "\xbc\x04\U00029a29", // 𩨩
+ 0x29a2a: "\xbc\x04\U00029a2a", // 𩨪
+ 0x29a2b: "\xbc\x04\U00029a2b", // 𩨫
+ 0x29a2c: "\xbc\x05\U00029a2c", // 𩨬
+ 0x29a2d: "\xbc\x05\U00029a2d", // 𩨭
+ 0x29a2e: "\xbc\x05\U00029a2e", // 𩨮
+ 0x29a2f: "\xbc\x05\U00029a2f", // 𩨯
+ 0x29a30: "\xbc\x05\U00029a30", // 𩨰
+ 0x29a31: "\xbc\x05\U00029a31", // 𩨱
+ 0x29a32: "\xbc\x05\U00029a32", // 𩨲
+ 0x29a33: "\xbc\x05\U00029a33", // 𩨳
+ 0x29a34: "\xbc\x05\U00029a34", // 𩨴
+ 0x29a35: "\xbc\x05\U00029a35", // 𩨵
+ 0x29a36: "\xbc\x05\U00029a36", // 𩨶
+ 0x29a37: "\xbc\x05\U00029a37", // 𩨷
+ 0x29a38: "\xbc\x05\U00029a38", // 𩨸
+ 0x29a39: "\xbc\x05\U00029a39", // 𩨹
+ 0x29a3a: "\xbc\x05\U00029a3a", // 𩨺
+ 0x29a3b: "\xbc\x05\U00029a3b", // 𩨻
+ 0x29a3c: "\xbc\x05\U00029a3c", // 𩨼
+ 0x29a3d: "\xbc\x06\U00029a3d", // 𩨽
+ 0x29a3e: "\xbc\x06\U00029a3e", // 𩨾
+ 0x29a3f: "\xbc\x06\U00029a3f", // 𩨿
+ 0x29a40: "\xbc\x06\U00029a40", // 𩩀
+ 0x29a41: "\xbc\x06\U00029a41", // 𩩁
+ 0x29a42: "\xbc\x06\U00029a42", // 𩩂
+ 0x29a43: "\xbc\x06\U00029a43", // 𩩃
+ 0x29a44: "\xbc\x06\U00029a44", // 𩩄
+ 0x29a45: "\xbc\x06\U00029a45", // 𩩅
+ 0x29a46: "\xbc\x06\U00029a46", // 𩩆
+ 0x29a47: "\xbc\x06\U00029a47", // 𩩇
+ 0x29a48: "\xbc\x06\U00029a48", // 𩩈
+ 0x29a49: "\xbc\a\U00029a49", // 𩩉
+ 0x29a4a: "\xbc\a\U00029a4a", // 𩩊
+ 0x29a4b: "\xbc\a\U00029a4b", // 𩩋
+ 0x29a4c: "\xbc\a\U00029a4c", // 𩩌
+ 0x29a4d: "\xbc\a\U00029a4d", // 𩩍
+ 0x29a4e: "\xbc\a\U00029a4e", // 𩩎
+ 0x29a4f: "\xbc\a\U00029a4f", // 𩩏
+ 0x29a50: "\xbc\a\U00029a50", // 𩩐
+ 0x29a51: "\xbc\a\U00029a51", // 𩩑
+ 0x29a52: "\xbc\a\U00029a52", // 𩩒
+ 0x29a53: "\xbc\a\U00029a53", // 𩩓
+ 0x29a54: "\xbc\a\U00029a54", // 𩩔
+ 0x29a55: "\xbc\a\U00029a55", // 𩩕
+ 0x29a56: "\xbc\a\U00029a56", // 𩩖
+ 0x29a57: "\xbc\b\U00029a57", // 𩩗
+ 0x29a58: "\xbc\b\U00029a58", // 𩩘
+ 0x29a59: "\xbc\b\U00029a59", // 𩩙
+ 0x29a5a: "\xbc\b\U00029a5a", // 𩩚
+ 0x29a5b: "\xbc\b\U00029a5b", // 𩩛
+ 0x29a5c: "\xbc\b\U00029a5c", // 𩩜
+ 0x29a5d: "\xbc\b\U00029a5d", // 𩩝
+ 0x29a5e: "\xbc\b\U00029a5e", // 𩩞
+ 0x29a5f: "\xbc\b\U00029a5f", // 𩩟
+ 0x29a60: "\xbc\b\U00029a60", // 𩩠
+ 0x29a61: "\xbc\b\U00029a61", // 𩩡
+ 0x29a62: "\xbc\b\U00029a62", // 𩩢
+ 0x29a63: "\xbc\b\U00029a63", // 𩩣
+ 0x29a64: "\xbc\b\U00029a64", // 𩩤
+ 0x29a65: "\xbc\b\U00029a65", // 𩩥
+ 0x29a66: "\xbc\b\U00029a66", // 𩩦
+ 0x29a67: "\xbc\b\U00029a67", // 𩩧
+ 0x29a68: "\xbc\b\U00029a68", // 𩩨
+ 0x29a69: "\xbc\b\U00029a69", // 𩩩
+ 0x29a6a: "\xbc\b\U00029a6a", // 𩩪
+ 0x29a6b: "\xbc\b\U00029a6b", // 𩩫
+ 0x29a6c: "\xbc\b\U00029a6c", // 𩩬
+ 0x29a6d: "\xbc\t\U00029a6d", // 𩩭
+ 0x29a6e: "\xbc\t\U00029a6e", // 𩩮
+ 0x29a6f: "\xbc\t\U00029a6f", // 𩩯
+ 0x29a70: "\xbc\t\U00029a70", // 𩩰
+ 0x29a71: "\xbc\t\U00029a71", // 𩩱
+ 0x29a72: "\xbc\t\U00029a72", // 𩩲
+ 0x29a73: "\xbc\t\U00029a73", // 𩩳
+ 0x29a74: "\xbc\t\U00029a74", // 𩩴
+ 0x29a75: "\xbc\t\U00029a75", // 𩩵
+ 0x29a76: "\xbc\t\U00029a76", // 𩩶
+ 0x29a77: "\xbc\t\U00029a77", // 𩩷
+ 0x29a78: "\xbc\t\U00029a78", // 𩩸
+ 0x29a79: "\xbc\t\U00029a79", // 𩩹
+ 0x29a7a: "\xbc\t\U00029a7a", // 𩩺
+ 0x29a7b: "\xbc\t\U00029a7b", // 𩩻
+ 0x29a7c: "\xbc\t\U00029a7c", // 𩩼
+ 0x29a7d: "\xbc\t\U00029a7d", // 𩩽
+ 0x29a7e: "\xbc\t\U00029a7e", // 𩩾
+ 0x29a7f: "\xbc\t\U00029a7f", // 𩩿
+ 0x29a80: "\xbc\n\U00029a80", // 𩪀
+ 0x29a81: "\xbc\n\U00029a81", // 𩪁
+ 0x29a82: "\xbc\n\U00029a82", // 𩪂
+ 0x29a83: "\xbc\n\U00029a83", // 𩪃
+ 0x29a84: "\xbc\n\U00029a84", // 𩪄
+ 0x29a85: "\xbc\n\U00029a85", // 𩪅
+ 0x29a86: "\xbc\n\U00029a86", // 𩪆
+ 0x29a87: "\xbc\n\U00029a87", // 𩪇
+ 0x29a88: "\xbc\n\U00029a88", // 𩪈
+ 0x29a89: "\xbc\v\U00029a89", // 𩪉
+ 0x29a8a: "\xbc\v\U00029a8a", // 𩪊
+ 0x29a8b: "\xbc\v\U00029a8b", // 𩪋
+ 0x29a8c: "\xbc\v\U00029a8c", // 𩪌
+ 0x29a8d: "\xbc\v\U00029a8d", // 𩪍
+ 0x29a8e: "\xbc\v\U00029a8e", // 𩪎
+ 0x29a8f: "\xbc\v\U00029a8f", // 𩪏
+ 0x29a90: "\xbc\v\U00029a90", // 𩪐
+ 0x29a91: "\xbc\v\U00029a91", // 𩪑
+ 0x29a92: "\xbc\v\U00029a92", // 𩪒
+ 0x29a93: "\xbc\v\U00029a93", // 𩪓
+ 0x29a94: "\xbc\v\U00029a94", // 𩪔
+ 0x29a95: "\xbc\v\U00029a95", // 𩪕
+ 0x29a96: "\xbc\v\U00029a96", // 𩪖
+ 0x29a97: "\xbc\f\U00029a97", // 𩪗
+ 0x29a98: "\xbc\f\U00029a98", // 𩪘
+ 0x29a99: "\xbc\f\U00029a99", // 𩪙
+ 0x29a9a: "\xbc\f\U00029a9a", // 𩪚
+ 0x29a9b: "\xbc\f\U00029a9b", // 𩪛
+ 0x29a9c: "\xbc\f\U00029a9c", // 𩪜
+ 0x29a9d: "\xbc\f\U00029a9d", // 𩪝
+ 0x29a9e: "\xbc\f\U00029a9e", // 𩪞
+ 0x29a9f: "\xbc\f\U00029a9f", // 𩪟
+ 0x29aa0: "\xbc\r\U00029aa0", // 𩪠
+ 0x29aa1: "\xbc\r\U00029aa1", // 𩪡
+ 0x29aa2: "\xbc\r\U00029aa2", // 𩪢
+ 0x29aa3: "\xbc\r\U00029aa3", // 𩪣
+ 0x29aa4: "\xbc\r\U00029aa4", // 𩪤
+ 0x29aa5: "\xbc\r\U00029aa5", // 𩪥
+ 0x29aa6: "\xbc\r\U00029aa6", // 𩪦
+ 0x29aa7: "\xbc\r\U00029aa7", // 𩪧
+ 0x29aa8: "\xbc\r\U00029aa8", // 𩪨
+ 0x29aa9: "\xbc\r\U00029aa9", // 𩪩
+ 0x29aaa: "\xbc\r\U00029aaa", // 𩪪
+ 0x29aab: "\xbc\r\U00029aab", // 𩪫
+ 0x29aac: "\xbc\x0e\U00029aac", // 𩪬
+ 0x29aad: "\xbc\x0e\U00029aad", // 𩪭
+ 0x29aae: "\xbc\x0e\U00029aae", // 𩪮
+ 0x29aaf: "\xbc\x0e\U00029aaf", // 𩪯
+ 0x29ab0: "\xbc\x0e\U00029ab0", // 𩪰
+ 0x29ab1: "\xbc\x0e\U00029ab1", // 𩪱
+ 0x29ab2: "\xbc\x0f\U00029ab2", // 𩪲
+ 0x29ab3: "\xbc\x0f\U00029ab3", // 𩪳
+ 0x29ab4: "\xbc\x0f\U00029ab4", // 𩪴
+ 0x29ab5: "\xbc\x0f\U00029ab5", // 𩪵
+ 0x29ab6: "\xbc\x0f\U00029ab6", // 𩪶
+ 0x29ab7: "\xbc\x10\U00029ab7", // 𩪷
+ 0x29ab8: "\xbc\x10\U00029ab8", // 𩪸
+ 0x29ab9: "\xbc\x10\U00029ab9", // 𩪹
+ 0x29aba: "\xbc\x10\U00029aba", // 𩪺
+ 0x29abb: "\xbc\x11\U00029abb", // 𩪻
+ 0x29abc: "\xbc\x12\U00029abc", // 𩪼
+ 0x29abd: "\xbc\x12\U00029abd", // 𩪽
+ 0x29abe: "\xbc\x13\U00029abe", // 𩪾
+ 0x29abf: "\xbd\x03\U00029abf", // 𩪿
+ 0x29ac0: "\xbd\x03\U00029ac0", // 𩫀
+ 0x29ac1: "\xbd\x04\U00029ac1", // 𩫁
+ 0x29ac2: "\xbd\x04\U00029ac2", // 𩫂
+ 0x29ac3: "\xbd\x04\U00029ac3", // 𩫃
+ 0x29ac4: "\xbd\x04\U00029ac4", // 𩫄
+ 0x29ac5: "\xbd\x04\U00029ac5", // 𩫅
+ 0x29ac6: "\xbd\x04\U00029ac6", // 𩫆
+ 0x29ac7: "\xbd\x04\U00029ac7", // 𩫇
+ 0x29ac8: "\xbd\x04\U00029ac8", // 𩫈
+ 0x29ac9: "\xbd\x04\U00029ac9", // 𩫉
+ 0x29aca: "\xbd\x05\U00029aca", // 𩫊
+ 0x29acb: "\xbd\x05\U00029acb", // 𩫋
+ 0x29acc: "\xbd\x05\U00029acc", // 𩫌
+ 0x29acd: "\xbd\x05\U00029acd", // 𩫍
+ 0x29ace: "\xbd\x06\U00029ace", // 𩫎
+ 0x29acf: "\xbd\x06\U00029acf", // 𩫏
+ 0x29ad0: "\xbd\x06\U00029ad0", // 𩫐
+ 0x29ad1: "\xbd\x06\U00029ad1", // 𩫑
+ 0x29ad2: "\xbd\x06\U00029ad2", // 𩫒
+ 0x29ad3: "\xbd\x06\U00029ad3", // 𩫓
+ 0x29ad4: "\xbd\x06\U00029ad4", // 𩫔
+ 0x29ad5: "\xbd\a\U00029ad5", // 𩫕
+ 0x29ad6: "\xbd\a\U00029ad6", // 𩫖
+ 0x29ad7: "\xbd\a\U00029ad7", // 𩫗
+ 0x29ad8: "\xbd\a\U00029ad8", // 𩫘
+ 0x29ad9: "\xbd\a\U00029ad9", // 𩫙
+ 0x29ada: "\xbd\b\U00029ada", // 𩫚
+ 0x29adb: "\xbd\b\U00029adb", // 𩫛
+ 0x29adc: "\xbd\b\U00029adc", // 𩫜
+ 0x29add: "\xbd\b\U00029add", // 𩫝
+ 0x29ade: "\xbd\t\U00029ade", // 𩫞
+ 0x29adf: "\xbd\t\U00029adf", // 𩫟
+ 0x29ae0: "\xbd\n\U00029ae0", // 𩫠
+ 0x29ae1: "\xbd\n\U00029ae1", // 𩫡
+ 0x29ae2: "\xbd\n\U00029ae2", // 𩫢
+ 0x29ae3: "\xbd\n\U00029ae3", // 𩫣
+ 0x29ae4: "\xbd\n\U00029ae4", // 𩫤
+ 0x29ae5: "\xbd\v\U00029ae5", // 𩫥
+ 0x29ae6: "\xbd\v\U00029ae6", // 𩫦
+ 0x29ae7: "\xbd\f\U00029ae7", // 𩫧
+ 0x29ae8: "\xbd\r\U00029ae8", // 𩫨
+ 0x29ae9: "\xbd\r\U00029ae9", // 𩫩
+ 0x29aea: "\xbd\r\U00029aea", // 𩫪
+ 0x29aeb: "\xbd\x0e\U00029aeb", // 𩫫
+ 0x29aec: "\xbd\x0e\U00029aec", // 𩫬
+ 0x29aed: "\xbd\x0f\U00029aed", // 𩫭
+ 0x29aee: "\xbd\x10\U00029aee", // 𩫮
+ 0x29aef: "\xbd\x10\U00029aef", // 𩫯
+ 0x29af0: "\xbd\x11\U00029af0", // 𩫰
+ 0x29af1: "\xbd\x11\U00029af1", // 𩫱
+ 0x29af2: "\xbd\x12\U00029af2", // 𩫲
+ 0x29af3: "\xbd\x15\U00029af3", // 𩫳
+ 0x29af4: "\xbe\x02\U00029af4", // 𩫴
+ 0x29af5: "\xbe\x02\U00029af5", // 𩫵
+ 0x29af6: "\xbe\x02\U00029af6", // 𩫶
+ 0x29af7: "\xbe\x02\U00029af7", // 𩫷
+ 0x29af8: "\xbe\x02\U00029af8", // 𩫸
+ 0x29af9: "\xbe\x03\U00029af9", // 𩫹
+ 0x29afa: "\xbe\x03\U00029afa", // 𩫺
+ 0x29afb: "\xbe\x03\U00029afb", // 𩫻
+ 0x29afc: "\xbe\x03\U00029afc", // 𩫼
+ 0x29afd: "\xbe\x03\U00029afd", // 𩫽
+ 0x29afe: "\xbe\x03\U00029afe", // 𩫾
+ 0x29aff: "\xbe\x04\U00029aff", // 𩫿
+ 0x29b00: "\xbe\x04\U00029b00", // 𩬀
+ 0x29b01: "\xbe\x04\U00029b01", // 𩬁
+ 0x29b02: "\xbe\x04\U00029b02", // 𩬂
+ 0x29b03: "\xbe\x04\U00029b03", // 𩬃
+ 0x29b04: "\xbe\x04\U00029b04", // 𩬄
+ 0x29b05: "\xbe\x04\U00029b05", // 𩬅
+ 0x29b06: "\xbe\x04\U00029b06", // 𩬆
+ 0x29b07: "\xbe\x04\U00029b07", // 𩬇
+ 0x29b08: "\xbe\x04\U00029b08", // 𩬈
+ 0x29b09: "\xbe\x04\U00029b09", // 𩬉
+ 0x29b0a: "\xbe\x04\U00029b0a", // 𩬊
+ 0x29b0b: "\xbe\x04\U00029b0b", // 𩬋
+ 0x29b0c: "\xbe\x04\U00029b0c", // 𩬌
+ 0x29b0d: "\xbe\x04\U00029b0d", // 𩬍
+ 0x29b0e: "\xbe\x04\U00029b0e", // 𩬎
+ 0x29b0f: "\xbe\x04\U00029b0f", // 𩬏
+ 0x29b10: "\xbe\x04\U00029b10", // 𩬐
+ 0x29b11: "\xbe\x05\U00029b11", // 𩬑
+ 0x29b12: "\xbe\x05\U00029b12", // 𩬒
+ 0x29b13: "\xbe\x05\U00029b13", // 𩬓
+ 0x29b14: "\xbe\x05\U00029b14", // 𩬔
+ 0x29b15: "\xbe\x05\U00029b15", // 𩬕
+ 0x29b16: "\xbe\x05\U00029b16", // 𩬖
+ 0x29b17: "\xbe\x05\U00029b17", // 𩬗
+ 0x29b18: "\xbe\x05\U00029b18", // 𩬘
+ 0x29b19: "\xbe\x05\U00029b19", // 𩬙
+ 0x29b1a: "\xbe\x05\U00029b1a", // 𩬚
+ 0x29b1b: "\xbe\x05\U00029b1b", // 𩬛
+ 0x29b1c: "\xbe\x05\U00029b1c", // 𩬜
+ 0x29b1d: "\xbe\x05\U00029b1d", // 𩬝
+ 0x29b1e: "\xbe\x05\U00029b1e", // 𩬞
+ 0x29b1f: "\xbe\x05\U00029b1f", // 𩬟
+ 0x29b20: "\xbe\x05\U00029b20", // 𩬠
+ 0x29b21: "\xbe\x05\U00029b21", // 𩬡
+ 0x29b22: "\xbe\x05\U00029b22", // 𩬢
+ 0x29b23: "\xbe\x05\U00029b23", // 𩬣
+ 0x29b24: "\xbe\x05\U00029b24", // 𩬤
+ 0x29b25: "\xbe\x05\U00029b25", // 𩬥
+ 0x29b26: "\xbe\x05\U00029b26", // 𩬦
+ 0x29b27: "\xbe\x05\U00029b27", // 𩬧
+ 0x29b28: "\xbe\x05\U00029b28", // 𩬨
+ 0x29b29: "\xbe\x05\U00029b29", // 𩬩
+ 0x29b2a: "\xbe\x05\U00029b2a", // 𩬪
+ 0x29b2b: "\xbe\x05\U00029b2b", // 𩬫
+ 0x29b2c: "\xbe\x05\U00029b2c", // 𩬬
+ 0x29b2d: "\xbe\x05\U00029b2d", // 𩬭
+ 0x29b2e: "\xbe\x05\U00029b2e", // 𩬮
+ 0x29b2f: "\xbe\x05\U00029b2f", // 𩬯
+ 0x29b30: "\xbe\x06\U00029b30", // 𩬰
+ 0x29b31: "\xbe\x06\U00029b31", // 𩬱
+ 0x29b32: "\xbe\x06\U00029b32", // 𩬲
+ 0x29b33: "\xbe\x06\U00029b33", // 𩬳
+ 0x29b34: "\xbe\x06\U00029b34", // 𩬴
+ 0x29b35: "\xbe\x06\U00029b35", // 𩬵
+ 0x29b36: "\xbe\x06\U00029b36", // 𩬶
+ 0x29b37: "\xbe\x06\U00029b37", // 𩬷
+ 0x29b38: "\xbe\x06\U00029b38", // 𩬸
+ 0x29b39: "\xbe\x06\U00029b39", // 𩬹
+ 0x29b3a: "\xbe\x06\U00029b3a", // 𩬺
+ 0x29b3b: "\xbe\x06\U00029b3b", // 𩬻
+ 0x29b3c: "\xbe\x06\U00029b3c", // 𩬼
+ 0x29b3d: "\xbe\x06\U00029b3d", // 𩬽
+ 0x29b3e: "\xbe\x06\U00029b3e", // 𩬾
+ 0x29b3f: "\xbe\x06\U00029b3f", // 𩬿
+ 0x29b40: "\xbe\x06\U00029b40", // 𩭀
+ 0x29b41: "\xbe\x06\U00029b41", // 𩭁
+ 0x29b42: "\xbe\x06\U00029b42", // 𩭂
+ 0x29b43: "\xbe\x06\U00029b43", // 𩭃
+ 0x29b44: "\xbe\x06\U00029b44", // 𩭄
+ 0x29b45: "\xbe\x06\U00029b45", // 𩭅
+ 0x29b46: "\xbe\x06\U00029b46", // 𩭆
+ 0x29b47: "\xbe\a\U00029b47", // 𩭇
+ 0x29b48: "\xbe\a\U00029b48", // 𩭈
+ 0x29b49: "\xbe\a\U00029b49", // 𩭉
+ 0x29b4a: "\xbe\a\U00029b4a", // 𩭊
+ 0x29b4b: "\xbe\a\U00029b4b", // 𩭋
+ 0x29b4c: "\xbe\a\U00029b4c", // 𩭌
+ 0x29b4d: "\xbe\a\U00029b4d", // 𩭍
+ 0x29b4e: "\xbe\a\U00029b4e", // 𩭎
+ 0x29b4f: "\xbe\a\U00029b4f", // 𩭏
+ 0x29b50: "\xbe\a\U00029b50", // 𩭐
+ 0x29b51: "\xbe\a\U00029b51", // 𩭑
+ 0x29b52: "\xbe\a\U00029b52", // 𩭒
+ 0x29b53: "\xbe\a\U00029b53", // 𩭓
+ 0x29b54: "\xbe\a\U00029b54", // 𩭔
+ 0x29b55: "\xbe\a\U00029b55", // 𩭕
+ 0x29b56: "\xbe\a\U00029b56", // 𩭖
+ 0x29b57: "\xbe\a\U00029b57", // 𩭗
+ 0x29b58: "\xbe\a\U00029b58", // 𩭘
+ 0x29b59: "\xbe\a\U00029b59", // 𩭙
+ 0x29b5a: "\xbe\a\U00029b5a", // 𩭚
+ 0x29b5b: "\xbe\a\U00029b5b", // 𩭛
+ 0x29b5c: "\xbe\a\U00029b5c", // 𩭜
+ 0x29b5d: "\xbe\a\U00029b5d", // 𩭝
+ 0x29b5e: "\xbe\b\U00029b5e", // 𩭞
+ 0x29b5f: "\xbe\b\U00029b5f", // 𩭟
+ 0x29b60: "\xbe\b\U00029b60", // 𩭠
+ 0x29b61: "\xbe\b\U00029b61", // 𩭡
+ 0x29b62: "\xbe\b\U00029b62", // 𩭢
+ 0x29b63: "\xbe\b\U00029b63", // 𩭣
+ 0x29b64: "\xbe\b\U00029b64", // 𩭤
+ 0x29b65: "\xbe\b\U00029b65", // 𩭥
+ 0x29b66: "\xbe\b\U00029b66", // 𩭦
+ 0x29b67: "\xbe\b\U00029b67", // 𩭧
+ 0x29b68: "\xbe\b\U00029b68", // 𩭨
+ 0x29b69: "\xbe\b\U00029b69", // 𩭩
+ 0x29b6a: "\xbe\b\U00029b6a", // 𩭪
+ 0x29b6b: "\xbe\b\U00029b6b", // 𩭫
+ 0x29b6c: "\xbe\b\U00029b6c", // 𩭬
+ 0x29b6d: "\xbe\b\U00029b6d", // 𩭭
+ 0x29b6e: "\xbe\b\U00029b6e", // 𩭮
+ 0x29b6f: "\xbe\b\U00029b6f", // 𩭯
+ 0x29b70: "\xbe\b\U00029b70", // 𩭰
+ 0x29b71: "\xbe\b\U00029b71", // 𩭱
+ 0x29b72: "\xbe\b\U00029b72", // 𩭲
+ 0x29b73: "\xbe\b\U00029b73", // 𩭳
+ 0x29b74: "\xbe\b\U00029b74", // 𩭴
+ 0x29b75: "\xbe\b\U00029b75", // 𩭵
+ 0x29b76: "\xbe\b\U00029b76", // 𩭶
+ 0x29b77: "\xbe\b\U00029b77", // 𩭷
+ 0x29b78: "\xbe\b\U00029b78", // 𩭸
+ 0x29b79: "\xbe\b\U00029b79", // 𩭹
+ 0x29b7a: "\xbe\t\U00029b7a", // 𩭺
+ 0x29b7b: "\xbe\t\U00029b7b", // 𩭻
+ 0x29b7c: "\xbe\t\U00029b7c", // 𩭼
+ 0x29b7d: "\xbe\t\U00029b7d", // 𩭽
+ 0x29b7e: "\xbe\t\U00029b7e", // 𩭾
+ 0x29b7f: "\xbe\t\U00029b7f", // 𩭿
+ 0x29b80: "\xbe\t\U00029b80", // 𩮀
+ 0x29b81: "\xbe\t\U00029b81", // 𩮁
+ 0x29b82: "\xbe\t\U00029b82", // 𩮂
+ 0x29b83: "\xbe\t\U00029b83", // 𩮃
+ 0x29b84: "\xbe\t\U00029b84", // 𩮄
+ 0x29b85: "\xbe\t\U00029b85", // 𩮅
+ 0x29b86: "\xbe\t\U00029b86", // 𩮆
+ 0x29b87: "\xbe\t\U00029b87", // 𩮇
+ 0x29b88: "\xbe\t\U00029b88", // 𩮈
+ 0x29b89: "\xbe\t\U00029b89", // 𩮉
+ 0x29b8a: "\xbe\t\U00029b8a", // 𩮊
+ 0x29b8b: "\xbe\t\U00029b8b", // 𩮋
+ 0x29b8c: "\xbe\t\U00029b8c", // 𩮌
+ 0x29b8d: "\xbe\t\U00029b8d", // 𩮍
+ 0x29b8e: "\xbe\t\U00029b8e", // 𩮎
+ 0x29b8f: "\xbe\t\U00029b8f", // 𩮏
+ 0x29b90: "\xbe\t\U00029b90", // 𩮐
+ 0x29b91: "\xbe\t\U00029b91", // 𩮑
+ 0x29b92: "\xbe\t\U00029b92", // 𩮒
+ 0x29b93: "\xbe\t\U00029b93", // 𩮓
+ 0x29b94: "\xbe\t\U00029b94", // 𩮔
+ 0x29b95: "\xbe\t\U00029b95", // 𩮕
+ 0x29b96: "\xbe\n\U00029b96", // 𩮖
+ 0x29b97: "\xbe\n\U00029b97", // 𩮗
+ 0x29b98: "\xbe\n\U00029b98", // 𩮘
+ 0x29b99: "\xbe\n\U00029b99", // 𩮙
+ 0x29b9a: "\xbe\n\U00029b9a", // 𩮚
+ 0x29b9b: "\xbe\n\U00029b9b", // 𩮛
+ 0x29b9c: "\xbe\n\U00029b9c", // 𩮜
+ 0x29b9d: "\xbe\n\U00029b9d", // 𩮝
+ 0x29b9e: "\xbe\n\U00029b9e", // 𩮞
+ 0x29b9f: "\xbe\n\U00029b9f", // 𩮟
+ 0x29ba0: "\xbe\n\U00029ba0", // 𩮠
+ 0x29ba1: "\xbe\n\U00029ba1", // 𩮡
+ 0x29ba2: "\xbe\n\U00029ba2", // 𩮢
+ 0x29ba3: "\xbe\n\U00029ba3", // 𩮣
+ 0x29ba4: "\xbe\n\U00029ba4", // 𩮤
+ 0x29ba5: "\xbe\n\U00029ba5", // 𩮥
+ 0x29ba6: "\xbe\n\U00029ba6", // 𩮦
+ 0x29ba7: "\xbe\n\U00029ba7", // 𩮧
+ 0x29ba8: "\xbe\n\U00029ba8", // 𩮨
+ 0x29ba9: "\xbe\n\U00029ba9", // 𩮩
+ 0x29baa: "\xbe\n\U00029baa", // 𩮪
+ 0x29bab: "\xbe\n\U00029bab", // 𩮫
+ 0x29bac: "\xbe\n\U00029bac", // 𩮬
+ 0x29bad: "\xbe\n\U00029bad", // 𩮭
+ 0x29bae: "\xbe\n\U00029bae", // 𩮮
+ 0x29baf: "\xbe\v\U00029baf", // 𩮯
+ 0x29bb0: "\xbe\v\U00029bb0", // 𩮰
+ 0x29bb1: "\xbe\v\U00029bb1", // 𩮱
+ 0x29bb2: "\xbe\v\U00029bb2", // 𩮲
+ 0x29bb3: "\xbe\v\U00029bb3", // 𩮳
+ 0x29bb4: "\xbe\v\U00029bb4", // 𩮴
+ 0x29bb5: "\xbe\v\U00029bb5", // 𩮵
+ 0x29bb6: "\xbe\v\U00029bb6", // 𩮶
+ 0x29bb7: "\xbe\v\U00029bb7", // 𩮷
+ 0x29bb8: "\xbe\v\U00029bb8", // 𩮸
+ 0x29bb9: "\xbe\v\U00029bb9", // 𩮹
+ 0x29bba: "\xbe\v\U00029bba", // 𩮺
+ 0x29bbb: "\xbe\v\U00029bbb", // 𩮻
+ 0x29bbc: "\xbe\v\U00029bbc", // 𩮼
+ 0x29bbd: "\xbe\v\U00029bbd", // 𩮽
+ 0x29bbe: "\xbe\v\U00029bbe", // 𩮾
+ 0x29bbf: "\xbe\v\U00029bbf", // 𩮿
+ 0x29bc0: "\xbe\v\U00029bc0", // 𩯀
+ 0x29bc1: "\xbe\v\U00029bc1", // 𩯁
+ 0x29bc2: "\xbe\v\U00029bc2", // 𩯂
+ 0x29bc3: "\xbe\f\U00029bc3", // 𩯃
+ 0x29bc4: "\xbe\f\U00029bc4", // 𩯄
+ 0x29bc5: "\xbe\f\U00029bc5", // 𩯅
+ 0x29bc6: "\xbe\f\U00029bc6", // 𩯆
+ 0x29bc7: "\xbe\f\U00029bc7", // 𩯇
+ 0x29bc8: "\xbe\f\U00029bc8", // 𩯈
+ 0x29bc9: "\xbe\f\U00029bc9", // 𩯉
+ 0x29bca: "\xbe\f\U00029bca", // 𩯊
+ 0x29bcb: "\xbe\f\U00029bcb", // 𩯋
+ 0x29bcc: "\xbe\f\U00029bcc", // 𩯌
+ 0x29bcd: "\xbe\f\U00029bcd", // 𩯍
+ 0x29bce: "\xbe\f\U00029bce", // 𩯎
+ 0x29bcf: "\xbe\f\U00029bcf", // 𩯏
+ 0x29bd0: "\xbe\f\U00029bd0", // 𩯐
+ 0x29bd1: "\xbe\f\U00029bd1", // 𩯑
+ 0x29bd2: "\xbe\f\U00029bd2", // 𩯒
+ 0x29bd3: "\xbe\f\U00029bd3", // 𩯓
+ 0x29bd4: "\xbe\f\U00029bd4", // 𩯔
+ 0x29bd5: "\xbe\f\U00029bd5", // 𩯕
+ 0x29bd6: "\xbe\f\U00029bd6", // 𩯖
+ 0x29bd7: "\xbe\f\U00029bd7", // 𩯗
+ 0x29bd8: "\xbe\f\U00029bd8", // 𩯘
+ 0x29bd9: "\xbe\f\U00029bd9", // 𩯙
+ 0x29bda: "\xbe\f\U00029bda", // 𩯚
+ 0x29bdb: "\xbe\r\U00029bdb", // 𩯛
+ 0x29bdc: "\xbe\r\U00029bdc", // 𩯜
+ 0x29bdd: "\xbe\r\U00029bdd", // 𩯝
+ 0x29bde: "\xbe\r\U00029bde", // 𩯞
+ 0x29bdf: "\xbe\r\U00029bdf", // 𩯟
+ 0x29be0: "\xbe\r\U00029be0", // 𩯠
+ 0x29be1: "\xbe\r\U00029be1", // 𩯡
+ 0x29be2: "\xbe\r\U00029be2", // 𩯢
+ 0x29be3: "\xbe\r\U00029be3", // 𩯣
+ 0x29be4: "\xbe\r\U00029be4", // 𩯤
+ 0x29be5: "\xbe\r\U00029be5", // 𩯥
+ 0x29be6: "\xbe\x0e\U00029be6", // 𩯦
+ 0x29be7: "\xbe\x0e\U00029be7", // 𩯧
+ 0x29be8: "\xbe\x0e\U00029be8", // 𩯨
+ 0x29be9: "\xbe\x0e\U00029be9", // 𩯩
+ 0x29bea: "\xbe\x0e\U00029bea", // 𩯪
+ 0x29beb: "\xbe\x0e\U00029beb", // 𩯫
+ 0x29bec: "\xbe\x0e\U00029bec", // 𩯬
+ 0x29bed: "\xbe\x0e\U00029bed", // 𩯭
+ 0x29bee: "\xbe\x0e\U00029bee", // 𩯮
+ 0x29bef: "\xbe\x0e\U00029bef", // 𩯯
+ 0x29bf0: "\xbe\x0f\U00029bf0", // 𩯰
+ 0x29bf1: "\xbe\x0f\U00029bf1", // 𩯱
+ 0x29bf2: "\xbe\x0f\U00029bf2", // 𩯲
+ 0x29bf3: "\xbe\x0f\U00029bf3", // 𩯳
+ 0x29bf4: "\xbe\x0f\U00029bf4", // 𩯴
+ 0x29bf5: "\xbe\x0f\U00029bf5", // 𩯵
+ 0x29bf6: "\xbe\x0f\U00029bf6", // 𩯶
+ 0x29bf7: "\xbe\x0f\U00029bf7", // 𩯷
+ 0x29bf8: "\xbe\x0f\U00029bf8", // 𩯸
+ 0x29bf9: "\xbe\x0f\U00029bf9", // 𩯹
+ 0x29bfa: "\xbe\x10\U00029bfa", // 𩯺
+ 0x29bfb: "\xbe\x10\U00029bfb", // 𩯻
+ 0x29bfc: "\xbe\x10\U00029bfc", // 𩯼
+ 0x29bfd: "\xbe\x10\U00029bfd", // 𩯽
+ 0x29bfe: "\xbe\x10\U00029bfe", // 𩯾
+ 0x29bff: "\xbe\x10\U00029bff", // 𩯿
+ 0x29c00: "\xbe\x10\U00029c00", // 𩰀
+ 0x29c01: "\xbe\x11\U00029c01", // 𩰁
+ 0x29c02: "\xbe\x11\U00029c02", // 𩰂
+ 0x29c03: "\xbe\x11\U00029c03", // 𩰃
+ 0x29c04: "\xbe\x11\U00029c04", // 𩰄
+ 0x29c05: "\xbe\x12\U00029c05", // 𩰅
+ 0x29c06: "\xbe\x12\U00029c06", // 𩰆
+ 0x29c07: "\xbe\x12\U00029c07", // 𩰇
+ 0x29c08: "\xbe\x15\U00029c08", // 𩰈
+ 0x29c09: "\xbe\x16\U00029c09", // 𩰉
+ 0x29c0a: "\xbf\x00\U00029c0a", // 𩰊
+ 0x29c0b: "\xbf\x00\U00029c0b", // 𩰋
+ 0x29c0c: "\xbf\x03\U00029c0c", // 𩰌
+ 0x29c0d: "\xbf\x04\U00029c0d", // 𩰍
+ 0x29c0e: "\xbf\x04\U00029c0e", // 𩰎
+ 0x29c0f: "\xbf\x04\U00029c0f", // 𩰏
+ 0x29c10: "\xbf\x05\U00029c10", // 𩰐
+ 0x29c11: "\xbf\x06\U00029c11", // 𩰑
+ 0x29c12: "\xbf\a\U00029c12", // 𩰒
+ 0x29c13: "\xbf\b\U00029c13", // 𩰓
+ 0x29c14: "\xbf\b\U00029c14", // 𩰔
+ 0x29c15: "\xbf\n\U00029c15", // 𩰕
+ 0x29c16: "\xbf\v\U00029c16", // 𩰖
+ 0x29c17: "\xbf\v\U00029c17", // 𩰗
+ 0x29c18: "\xbf\v\U00029c18", // 𩰘
+ 0x29c19: "\xbf\f\U00029c19", // 𩰙
+ 0x29c1a: "\xbf\f\U00029c1a", // 𩰚
+ 0x29c1b: "\xbf\r\U00029c1b", // 𩰛
+ 0x29c1c: "\xbf\x0e\U00029c1c", // 𩰜
+ 0x29c1d: "\xbf\x0e\U00029c1d", // 𩰝
+ 0x29c1e: "\xbf\x0e\U00029c1e", // 𩰞
+ 0x29c1f: "\xbf\x12\U00029c1f", // 𩰟
+ 0x29c20: "\xc0\x05\U00029c20", // 𩰠
+ 0x29c21: "\xc0\x05\U00029c21", // 𩰡
+ 0x29c22: "\xc0\x06\U00029c22", // 𩰢
+ 0x29c23: "\xc0\b\U00029c23", // 𩰣
+ 0x29c24: "\xc0\n\U00029c24", // 𩰤
+ 0x29c25: "\xc0\v\U00029c25", // 𩰥
+ 0x29c26: "\xc0\v\U00029c26", // 𩰦
+ 0x29c27: "\xc0\f\U00029c27", // 𩰧
+ 0x29c28: "\xc0\r\U00029c28", // 𩰨
+ 0x29c29: "\xc0\x11\U00029c29", // 𩰩
+ 0x29c2a: "\xc0\x12\U00029c2a", // 𩰪
+ 0x29c2b: "\xc1\x03\U00029c2b", // 𩰫
+ 0x29c2c: "\xc1\x03\U00029c2c", // 𩰬
+ 0x29c2d: "\xc1\x04\U00029c2d", // 𩰭
+ 0x29c2e: "\xc1\x04\U00029c2e", // 𩰮
+ 0x29c2f: "\xc1\x05\U00029c2f", // 𩰯
+ 0x29c30: "\xc1\x05\U00029c30", // 𩰰
+ 0x29c31: "\xc1\x06\U00029c31", // 𩰱
+ 0x29c32: "\xc1\x06\U00029c32", // 𩰲
+ 0x29c33: "\xc1\x06\U00029c33", // 𩰳
+ 0x29c34: "\xc1\x06\U00029c34", // 𩰴
+ 0x29c35: "\xc1\x06\U00029c35", // 𩰵
+ 0x29c36: "\xc1\x06\U00029c36", // 𩰶
+ 0x29c37: "\xc1\x06\U00029c37", // 𩰷
+ 0x29c38: "\xc1\x06\U00029c38", // 𩰸
+ 0x29c39: "\xc1\a\U00029c39", // 𩰹
+ 0x29c3a: "\xc1\a\U00029c3a", // 𩰺
+ 0x29c3b: "\xc1\a\U00029c3b", // 𩰻
+ 0x29c3c: "\xc1\a\U00029c3c", // 𩰼
+ 0x29c3d: "\xc1\a\U00029c3d", // 𩰽
+ 0x29c3e: "\xc1\b\U00029c3e", // 𩰾
+ 0x29c3f: "\xc1\b\U00029c3f", // 𩰿
+ 0x29c40: "\xc1\b\U00029c40", // 𩱀
+ 0x29c41: "\xc1\b\U00029c41", // 𩱁
+ 0x29c42: "\xc1\b\U00029c42", // 𩱂
+ 0x29c43: "\xc1\t\U00029c43", // 𩱃
+ 0x29c44: "\xc1\t\U00029c44", // 𩱄
+ 0x29c45: "\xc1\t\U00029c45", // 𩱅
+ 0x29c46: "\xc1\t\U00029c46", // 𩱆
+ 0x29c47: "\xc1\n\U00029c47", // 𩱇
+ 0x29c48: "\xc1\n\U00029c48", // 𩱈
+ 0x29c49: "\xc1\n\U00029c49", // 𩱉
+ 0x29c4a: "\xc1\n\U00029c4a", // 𩱊
+ 0x29c4b: "\xc1\n\U00029c4b", // 𩱋
+ 0x29c4c: "\xc1\v\U00029c4c", // 𩱌
+ 0x29c4d: "\xc1\v\U00029c4d", // 𩱍
+ 0x29c4e: "\xc1\v\U00029c4e", // 𩱎
+ 0x29c4f: "\xc1\v\U00029c4f", // 𩱏
+ 0x29c50: "\xc1\v\U00029c50", // 𩱐
+ 0x29c51: "\xc1\v\U00029c51", // 𩱑
+ 0x29c52: "\xc1\f\U00029c52", // 𩱒
+ 0x29c53: "\xc1\f\U00029c53", // 𩱓
+ 0x29c54: "\xc1\f\U00029c54", // 𩱔
+ 0x29c55: "\xc1\f\U00029c55", // 𩱕
+ 0x29c56: "\xc1\r\U00029c56", // 𩱖
+ 0x29c57: "\xc1\r\U00029c57", // 𩱗
+ 0x29c58: "\xc1\r\U00029c58", // 𩱘
+ 0x29c59: "\xc1\r\U00029c59", // 𩱙
+ 0x29c5a: "\xc1\r\U00029c5a", // 𩱚
+ 0x29c5b: "\xc1\r\U00029c5b", // 𩱛
+ 0x29c5c: "\xc1\r\U00029c5c", // 𩱜
+ 0x29c5d: "\xc1\r\U00029c5d", // 𩱝
+ 0x29c5e: "\xc1\r\U00029c5e", // 𩱞
+ 0x29c5f: "\xc1\r\U00029c5f", // 𩱟
+ 0x29c60: "\xc1\x0e\U00029c60", // 𩱠
+ 0x29c61: "\xc1\x0e\U00029c61", // 𩱡
+ 0x29c62: "\xc1\x0e\U00029c62", // 𩱢
+ 0x29c63: "\xc1\x0e\U00029c63", // 𩱣
+ 0x29c64: "\xc1\x0f\U00029c64", // 𩱤
+ 0x29c65: "\xc1\x0f\U00029c65", // 𩱥
+ 0x29c66: "\xc1\x10\U00029c66", // 𩱦
+ 0x29c67: "\xc1\x10\U00029c67", // 𩱧
+ 0x29c68: "\xc1\x10\U00029c68", // 𩱨
+ 0x29c69: "\xc1\x10\U00029c69", // 𩱩
+ 0x29c6a: "\xc1\x10\U00029c6a", // 𩱪
+ 0x29c6b: "\xc1\x11\U00029c6b", // 𩱫
+ 0x29c6c: "\xc1\x11\U00029c6c", // 𩱬
+ 0x29c6d: "\xc1\x12\U00029c6d", // 𩱭
+ 0x29c6e: "\xc1\x12\U00029c6e", // 𩱮
+ 0x29c6f: "\xc1\x13\U00029c6f", // 𩱯
+ 0x29c70: "\xc1\x13\U00029c70", // 𩱰
+ 0x29c71: "\xc1\x14\U00029c71", // 𩱱
+ 0x29c72: "\xc1\x14\U00029c72", // 𩱲
+ 0x29c73: "\xc1\x14\U00029c73", // 𩱳
+ 0x29c74: "\xc1\x15\U00029c74", // 𩱴
+ 0x29c75: "\xc1\x15\U00029c75", // 𩱵
+ 0x29c76: "\xc1\x16\U00029c76", // 𩱶
+ 0x29c77: "\xc1\x1b\U00029c77", // 𩱷
+ 0x29c78: "\xc1\x1b\U00029c78", // 𩱸
+ 0x29c79: "\xc2\x02\U00029c79", // 𩱹
+ 0x29c7a: "\xc2\x02\U00029c7a", // 𩱺
+ 0x29c7b: "\xc2\x02\U00029c7b", // 𩱻
+ 0x29c7c: "\xc2\x02\U00029c7c", // 𩱼
+ 0x29c7d: "\xc2\x03\U00029c7d", // 𩱽
+ 0x29c7e: "\xc2\x03\U00029c7e", // 𩱾
+ 0x29c7f: "\xc2\x03\U00029c7f", // 𩱿
+ 0x29c80: "\xc2\x03\U00029c80", // 𩲀
+ 0x29c81: "\xc2\x03\U00029c81", // 𩲁
+ 0x29c82: "\xc2\x03\U00029c82", // 𩲂
+ 0x29c83: "\xc2\x03\U00029c83", // 𩲃
+ 0x29c84: "\xc2\x03\U00029c84", // 𩲄
+ 0x29c85: "\xc2\x03\U00029c85", // 𩲅
+ 0x29c86: "\xc2\x03\U00029c86", // 𩲆
+ 0x29c87: "\xc2\x03\U00029c87", // 𩲇
+ 0x29c88: "\xc2\x03\U00029c88", // 𩲈
+ 0x29c89: "\xc2\x03\U00029c89", // 𩲉
+ 0x29c8a: "\xc2\x04\U00029c8a", // 𩲊
+ 0x29c8b: "\xc2\x04\U00029c8b", // 𩲋
+ 0x29c8c: "\xc2\x04\U00029c8c", // 𩲌
+ 0x29c8d: "\xc2\x04\U00029c8d", // 𩲍
+ 0x29c8e: "\xc2\x04\U00029c8e", // 𩲎
+ 0x29c8f: "\xc2\x04\U00029c8f", // 𩲏
+ 0x29c90: "\xc2\x04\U00029c90", // 𩲐
+ 0x29c91: "\xc2\x04\U00029c91", // 𩲑
+ 0x29c92: "\xc2\x04\U00029c92", // 𩲒
+ 0x29c93: "\xc2\x04\U00029c93", // 𩲓
+ 0x29c94: "\xc2\x04\U00029c94", // 𩲔
+ 0x29c95: "\xc2\x04\U00029c95", // 𩲕
+ 0x29c96: "\xc2\x04\U00029c96", // 𩲖
+ 0x29c97: "\xc2\x04\U00029c97", // 𩲗
+ 0x29c98: "\xc2\x04\U00029c98", // 𩲘
+ 0x29c99: "\xc2\x04\U00029c99", // 𩲙
+ 0x29c9a: "\xc2\x04\U00029c9a", // 𩲚
+ 0x29c9b: "\xc2\x04\U00029c9b", // 𩲛
+ 0x29c9c: "\xc2\x04\U00029c9c", // 𩲜
+ 0x29c9d: "\xc2\x04\U00029c9d", // 𩲝
+ 0x29c9e: "\xc2\x04\U00029c9e", // 𩲞
+ 0x29c9f: "\xc2\x04\U00029c9f", // 𩲟
+ 0x29ca0: "\xc2\x04\U00029ca0", // 𩲠
+ 0x29ca1: "\xc2\x05\U00029ca1", // 𩲡
+ 0x29ca2: "\xc2\x05\U00029ca2", // 𩲢
+ 0x29ca3: "\xc2\x05\U00029ca3", // 𩲣
+ 0x29ca4: "\xc2\x05\U00029ca4", // 𩲤
+ 0x29ca5: "\xc2\x05\U00029ca5", // 𩲥
+ 0x29ca6: "\xc2\x05\U00029ca6", // 𩲦
+ 0x29ca7: "\xc2\x05\U00029ca7", // 𩲧
+ 0x29ca8: "\xc2\x05\U00029ca8", // 𩲨
+ 0x29ca9: "\xc2\x05\U00029ca9", // 𩲩
+ 0x29caa: "\xc2\x05\U00029caa", // 𩲪
+ 0x29cab: "\xc2\x05\U00029cab", // 𩲫
+ 0x29cac: "\xc2\x05\U00029cac", // 𩲬
+ 0x29cad: "\xc2\x05\U00029cad", // 𩲭
+ 0x29cae: "\xc2\x05\U00029cae", // 𩲮
+ 0x29caf: "\xc2\x05\U00029caf", // 𩲯
+ 0x29cb0: "\xc2\x05\U00029cb0", // 𩲰
+ 0x29cb1: "\xc2\x05\U00029cb1", // 𩲱
+ 0x29cb2: "\xc2\x05\U00029cb2", // 𩲲
+ 0x29cb3: "\xc2\x05\U00029cb3", // 𩲳
+ 0x29cb4: "\xc2\x05\U00029cb4", // 𩲴
+ 0x29cb5: "\xc2\x05\U00029cb5", // 𩲵
+ 0x29cb6: "\xc2\x05\U00029cb6", // 𩲶
+ 0x29cb7: "\xc2\x05\U00029cb7", // 𩲷
+ 0x29cb8: "\xc2\x05\U00029cb8", // 𩲸
+ 0x29cb9: "\xc2\x05\U00029cb9", // 𩲹
+ 0x29cba: "\xc2\x06\U00029cba", // 𩲺
+ 0x29cbb: "\xc2\x06\U00029cbb", // 𩲻
+ 0x29cbc: "\xc2\x06\U00029cbc", // 𩲼
+ 0x29cbd: "\xc2\x06\U00029cbd", // 𩲽
+ 0x29cbe: "\xc2\x06\U00029cbe", // 𩲾
+ 0x29cbf: "\xc2\x06\U00029cbf", // 𩲿
+ 0x29cc0: "\xc2\x06\U00029cc0", // 𩳀
+ 0x29cc1: "\xc2\x06\U00029cc1", // 𩳁
+ 0x29cc2: "\xc2\x06\U00029cc2", // 𩳂
+ 0x29cc3: "\xc2\x06\U00029cc3", // 𩳃
+ 0x29cc4: "\xc2\x06\U00029cc4", // 𩳄
+ 0x29cc5: "\xc2\x06\U00029cc5", // 𩳅
+ 0x29cc6: "\xc2\x06\U00029cc6", // 𩳆
+ 0x29cc7: "\xc2\x06\U00029cc7", // 𩳇
+ 0x29cc8: "\xc2\x06\U00029cc8", // 𩳈
+ 0x29cc9: "\xc2\x06\U00029cc9", // 𩳉
+ 0x29cca: "\xc2\x06\U00029cca", // 𩳊
+ 0x29ccb: "\xc2\x06\U00029ccb", // 𩳋
+ 0x29ccc: "\xc2\a\U00029ccc", // 𩳌
+ 0x29ccd: "\xc2\a\U00029ccd", // 𩳍
+ 0x29cce: "\xc2\a\U00029cce", // 𩳎
+ 0x29ccf: "\xc2\a\U00029ccf", // 𩳏
+ 0x29cd0: "\xc2\a\U00029cd0", // 𩳐
+ 0x29cd1: "\xc2\a\U00029cd1", // 𩳑
+ 0x29cd2: "\xc2\a\U00029cd2", // 𩳒
+ 0x29cd3: "\xc2\a\U00029cd3", // 𩳓
+ 0x29cd4: "\xc2\a\U00029cd4", // 𩳔
+ 0x29cd5: "\xc2\a\U00029cd5", // 𩳕
+ 0x29cd6: "\xc2\a\U00029cd6", // 𩳖
+ 0x29cd7: "\xc2\a\U00029cd7", // 𩳗
+ 0x29cd8: "\xc2\a\U00029cd8", // 𩳘
+ 0x29cd9: "\xc2\a\U00029cd9", // 𩳙
+ 0x29cda: "\xc2\a\U00029cda", // 𩳚
+ 0x29cdb: "\xc2\a\U00029cdb", // 𩳛
+ 0x29cdc: "\xc2\a\U00029cdc", // 𩳜
+ 0x29cdd: "\xc2\a\U00029cdd", // 𩳝
+ 0x29cde: "\xc2\a\U00029cde", // 𩳞
+ 0x29cdf: "\xc2\a\U00029cdf", // 𩳟
+ 0x29ce0: "\xc2\a\U00029ce0", // 𩳠
+ 0x29ce1: "\xc2\a\U00029ce1", // 𩳡
+ 0x29ce2: "\xc2\b\U00029ce2", // 𩳢
+ 0x29ce3: "\xc2\b\U00029ce3", // 𩳣
+ 0x29ce4: "\xc2\b\U00029ce4", // 𩳤
+ 0x29ce5: "\xc2\b\U00029ce5", // 𩳥
+ 0x29ce6: "\xc2\b\U00029ce6", // 𩳦
+ 0x29ce7: "\xc2\b\U00029ce7", // 𩳧
+ 0x29ce8: "\xc2\b\U00029ce8", // 𩳨
+ 0x29ce9: "\xc2\b\U00029ce9", // 𩳩
+ 0x29cea: "\xc2\b\U00029cea", // 𩳪
+ 0x29ceb: "\xc2\b\U00029ceb", // 𩳫
+ 0x29cec: "\xc2\b\U00029cec", // 𩳬
+ 0x29ced: "\xc2\b\U00029ced", // 𩳭
+ 0x29cee: "\xc2\b\U00029cee", // 𩳮
+ 0x29cef: "\xc2\b\U00029cef", // 𩳯
+ 0x29cf0: "\xc2\b\U00029cf0", // 𩳰
+ 0x29cf1: "\xc2\b\U00029cf1", // 𩳱
+ 0x29cf2: "\xc2\b\U00029cf2", // 𩳲
+ 0x29cf3: "\xc2\b\U00029cf3", // 𩳳
+ 0x29cf4: "\xc2\b\U00029cf4", // 𩳴
+ 0x29cf5: "\xc2\t\U00029cf5", // 𩳵
+ 0x29cf6: "\xc2\t\U00029cf6", // 𩳶
+ 0x29cf7: "\xc2\t\U00029cf7", // 𩳷
+ 0x29cf8: "\xc2\t\U00029cf8", // 𩳸
+ 0x29cf9: "\xc2\t\U00029cf9", // 𩳹
+ 0x29cfa: "\xc2\t\U00029cfa", // 𩳺
+ 0x29cfb: "\xc2\t\U00029cfb", // 𩳻
+ 0x29cfc: "\xc2\t\U00029cfc", // 𩳼
+ 0x29cfd: "\xc2\t\U00029cfd", // 𩳽
+ 0x29cfe: "\xc2\t\U00029cfe", // 𩳾
+ 0x29cff: "\xc2\t\U00029cff", // 𩳿
+ 0x29d00: "\xc2\t\U00029d00", // 𩴀
+ 0x29d01: "\xc2\t\U00029d01", // 𩴁
+ 0x29d02: "\xc2\t\U00029d02", // 𩴂
+ 0x29d03: "\xc2\t\U00029d03", // 𩴃
+ 0x29d04: "\xc2\t\U00029d04", // 𩴄
+ 0x29d05: "\xc2\t\U00029d05", // 𩴅
+ 0x29d06: "\xc2\n\U00029d06", // 𩴆
+ 0x29d07: "\xc2\n\U00029d07", // 𩴇
+ 0x29d08: "\xc2\n\U00029d08", // 𩴈
+ 0x29d09: "\xc2\n\U00029d09", // 𩴉
+ 0x29d0a: "\xc2\n\U00029d0a", // 𩴊
+ 0x29d0b: "\xc2\n\U00029d0b", // 𩴋
+ 0x29d0c: "\xc2\n\U00029d0c", // 𩴌
+ 0x29d0d: "\xc2\n\U00029d0d", // 𩴍
+ 0x29d0e: "\xc2\n\U00029d0e", // 𩴎
+ 0x29d0f: "\xc2\n\U00029d0f", // 𩴏
+ 0x29d10: "\xc2\v\U00029d10", // 𩴐
+ 0x29d11: "\xc2\v\U00029d11", // 𩴑
+ 0x29d12: "\xc2\v\U00029d12", // 𩴒
+ 0x29d13: "\xc2\v\U00029d13", // 𩴓
+ 0x29d14: "\xc2\v\U00029d14", // 𩴔
+ 0x29d15: "\xc2\v\U00029d15", // 𩴕
+ 0x29d16: "\xc2\v\U00029d16", // 𩴖
+ 0x29d17: "\xc2\v\U00029d17", // 𩴗
+ 0x29d18: "\xc2\v\U00029d18", // 𩴘
+ 0x29d19: "\xc2\v\U00029d19", // 𩴙
+ 0x29d1a: "\xc2\v\U00029d1a", // 𩴚
+ 0x29d1b: "\xc2\v\U00029d1b", // 𩴛
+ 0x29d1c: "\xc2\f\U00029d1c", // 𩴜
+ 0x29d1d: "\xc2\f\U00029d1d", // 𩴝
+ 0x29d1e: "\xc2\f\U00029d1e", // 𩴞
+ 0x29d1f: "\xc2\f\U00029d1f", // 𩴟
+ 0x29d20: "\xc2\f\U00029d20", // 𩴠
+ 0x29d21: "\xc2\f\U00029d21", // 𩴡
+ 0x29d22: "\xc2\f\U00029d22", // 𩴢
+ 0x29d23: "\xc2\f\U00029d23", // 𩴣
+ 0x29d24: "\xc2\f\U00029d24", // 𩴤
+ 0x29d25: "\xc2\f\U00029d25", // 𩴥
+ 0x29d26: "\xc2\f\U00029d26", // 𩴦
+ 0x29d27: "\xc2\f\U00029d27", // 𩴧
+ 0x29d28: "\xc2\f\U00029d28", // 𩴨
+ 0x29d29: "\xc2\f\U00029d29", // 𩴩
+ 0x29d2a: "\xc2\f\U00029d2a", // 𩴪
+ 0x29d2b: "\xc2\f\U00029d2b", // 𩴫
+ 0x29d2c: "\xc2\f\U00029d2c", // 𩴬
+ 0x29d2d: "\xc2\f\U00029d2d", // 𩴭
+ 0x29d2e: "\xc2\r\U00029d2e", // 𩴮
+ 0x29d2f: "\xc2\r\U00029d2f", // 𩴯
+ 0x29d30: "\xc2\r\U00029d30", // 𩴰
+ 0x29d31: "\xc2\x0e\U00029d31", // 𩴱
+ 0x29d32: "\xc2\x0e\U00029d32", // 𩴲
+ 0x29d33: "\xc2\x0e\U00029d33", // 𩴳
+ 0x29d34: "\xc2\x0e\U00029d34", // 𩴴
+ 0x29d35: "\xc2\x0e\U00029d35", // 𩴵
+ 0x29d36: "\xc2\x0e\U00029d36", // 𩴶
+ 0x29d37: "\xc2\x0e\U00029d37", // 𩴷
+ 0x29d38: "\xc2\x0e\U00029d38", // 𩴸
+ 0x29d39: "\xc2\x0e\U00029d39", // 𩴹
+ 0x29d3a: "\xc2\x0f\U00029d3a", // 𩴺
+ 0x29d3b: "\xc2\x0f\U00029d3b", // 𩴻
+ 0x29d3c: "\xc2\x0f\U00029d3c", // 𩴼
+ 0x29d3d: "\xc2\x0f\U00029d3d", // 𩴽
+ 0x29d3e: "\xc2\x0f\U00029d3e", // 𩴾
+ 0x29d3f: "\xc2\x10\U00029d3f", // 𩴿
+ 0x29d40: "\xc2\x11\U00029d40", // 𩵀
+ 0x29d41: "\xc2\x11\U00029d41", // 𩵁
+ 0x29d42: "\xc2\x11\U00029d42", // 𩵂
+ 0x29d43: "\xc2\x11\U00029d43", // 𩵃
+ 0x29d44: "\xc2\x12\U00029d44", // 𩵄
+ 0x29d45: "\xc2\x12\U00029d45", // 𩵅
+ 0x29d46: "\xc2\x13\U00029d46", // 𩵆
+ 0x29d47: "\xc2\x13\U00029d47", // 𩵇
+ 0x29d48: "\xc2\x14\U00029d48", // 𩵈
+ 0x29d49: "\xc2\x16\U00029d49", // 𩵉
+ 0x29d4a: "\xc2\x17\U00029d4a", // 𩵊
+ 0x29d4b: "\xc3\x00\U00029d4b", // 𩵋
+ 0x29d4c: "\xc3\x02\U00029d4c", // 𩵌
+ 0x29d4d: "\xc3\x02\U00029d4d", // 𩵍
+ 0x29d4e: "\xc3\x02\U00029d4e", // 𩵎
+ 0x29d4f: "\xc3\x02\U00029d4f", // 𩵏
+ 0x29d50: "\xc3\x02\U00029d50", // 𩵐
+ 0x29d51: "\xc3\x02\U00029d51", // 𩵑
+ 0x29d52: "\xc3\x02\U00029d52", // 𩵒
+ 0x29d53: "\xc3\x02\U00029d53", // 𩵓
+ 0x29d54: "\xc3\x03\U00029d54", // 𩵔
+ 0x29d55: "\xc3\x03\U00029d55", // 𩵕
+ 0x29d56: "\xc3\x03\U00029d56", // 𩵖
+ 0x29d57: "\xc3\x03\U00029d57", // 𩵗
+ 0x29d58: "\xc3\x03\U00029d58", // 𩵘
+ 0x29d59: "\xc3\x03\U00029d59", // 𩵙
+ 0x29d5a: "\xc3\x03\U00029d5a", // 𩵚
+ 0x29d5b: "\xc3\x03\U00029d5b", // 𩵛
+ 0x29d5c: "\xc3\x03\U00029d5c", // 𩵜
+ 0x29d5d: "\xc3\x03\U00029d5d", // 𩵝
+ 0x29d5e: "\xc3\x03\U00029d5e", // 𩵞
+ 0x29d5f: "\xc3\x03\U00029d5f", // 𩵟
+ 0x29d60: "\xc3\x04\U00029d60", // 𩵠
+ 0x29d61: "\xc3\x04\U00029d61", // 𩵡
+ 0x29d62: "\xc3\x04\U00029d62", // 𩵢
+ 0x29d63: "\xc3\x04\U00029d63", // 𩵣
+ 0x29d64: "\xc3\x04\U00029d64", // 𩵤
+ 0x29d65: "\xc3\x04\U00029d65", // 𩵥
+ 0x29d66: "\xc3\x04\U00029d66", // 𩵦
+ 0x29d67: "\xc3\x04\U00029d67", // 𩵧
+ 0x29d68: "\xc3\x04\U00029d68", // 𩵨
+ 0x29d69: "\xc3\x04\U00029d69", // 𩵩
+ 0x29d6a: "\xc3\x04\U00029d6a", // 𩵪
+ 0x29d6b: "\xc3\x04\U00029d6b", // 𩵫
+ 0x29d6c: "\xc3\x04\U00029d6c", // 𩵬
+ 0x29d6d: "\xc3\x04\U00029d6d", // 𩵭
+ 0x29d6e: "\xc3\x04\U00029d6e", // 𩵮
+ 0x29d6f: "\xc3\x04\U00029d6f", // 𩵯
+ 0x29d70: "\xc3\x04\U00029d70", // 𩵰
+ 0x29d71: "\xc3\x04\U00029d71", // 𩵱
+ 0x29d72: "\xc3\x04\U00029d72", // 𩵲
+ 0x29d73: "\xc3\x04\U00029d73", // 𩵳
+ 0x29d74: "\xc3\x04\U00029d74", // 𩵴
+ 0x29d75: "\xc3\x04\U00029d75", // 𩵵
+ 0x29d76: "\xc3\x04\U00029d76", // 𩵶
+ 0x29d77: "\xc3\x04\U00029d77", // 𩵷
+ 0x29d78: "\xc3\x04\U00029d78", // 𩵸
+ 0x29d79: "\xc3\x04\U00029d79", // 𩵹
+ 0x29d7a: "\xc3\x04\U00029d7a", // 𩵺
+ 0x29d7b: "\xc3\x04\U00029d7b", // 𩵻
+ 0x29d7c: "\xc3\x04\U00029d7c", // 𩵼
+ 0x29d7d: "\xc3\x04\U00029d7d", // 𩵽
+ 0x29d7e: "\xc3\x04\U00029d7e", // 𩵾
+ 0x29d7f: "\xc3\x04\U00029d7f", // 𩵿
+ 0x29d80: "\xc3\x04\U00029d80", // 𩶀
+ 0x29d81: "\xc3\x05\U00029d81", // 𩶁
+ 0x29d82: "\xc3\x05\U00029d82", // 𩶂
+ 0x29d83: "\xc3\x05\U00029d83", // 𩶃
+ 0x29d84: "\xc3\x05\U00029d84", // 𩶄
+ 0x29d85: "\xc3\x05\U00029d85", // 𩶅
+ 0x29d86: "\xc3\x05\U00029d86", // 𩶆
+ 0x29d87: "\xc3\x05\U00029d87", // 𩶇
+ 0x29d88: "\xc3\x05\U00029d88", // 𩶈
+ 0x29d89: "\xc3\x05\U00029d89", // 𩶉
+ 0x29d8a: "\xc3\x05\U00029d8a", // 𩶊
+ 0x29d8b: "\xc3\x05\U00029d8b", // 𩶋
+ 0x29d8c: "\xc3\x05\U00029d8c", // 𩶌
+ 0x29d8d: "\xc3\x05\U00029d8d", // 𩶍
+ 0x29d8e: "\xc3\x05\U00029d8e", // 𩶎
+ 0x29d8f: "\xc3\x05\U00029d8f", // 𩶏
+ 0x29d90: "\xc3\x05\U00029d90", // 𩶐
+ 0x29d91: "\xc3\x05\U00029d91", // 𩶑
+ 0x29d92: "\xc3\x05\U00029d92", // 𩶒
+ 0x29d93: "\xc3\x05\U00029d93", // 𩶓
+ 0x29d94: "\xc3\x05\U00029d94", // 𩶔
+ 0x29d95: "\xc3\x05\U00029d95", // 𩶕
+ 0x29d96: "\xc3\x05\U00029d96", // 𩶖
+ 0x29d97: "\xc3\x05\U00029d97", // 𩶗
+ 0x29d98: "\xc3\x05\U00029d98", // 𩶘
+ 0x29d99: "\xc3\x05\U00029d99", // 𩶙
+ 0x29d9a: "\xc3\x05\U00029d9a", // 𩶚
+ 0x29d9b: "\xc3\x05\U00029d9b", // 𩶛
+ 0x29d9c: "\xc3\x05\U00029d9c", // 𩶜
+ 0x29d9d: "\xc3\x05\U00029d9d", // 𩶝
+ 0x29d9e: "\xc3\x05\U00029d9e", // 𩶞
+ 0x29d9f: "\xc3\x05\U00029d9f", // 𩶟
+ 0x29da0: "\xc3\x05\U00029da0", // 𩶠
+ 0x29da1: "\xc3\x06\U00029da1", // 𩶡
+ 0x29da2: "\xc3\x06\U00029da2", // 𩶢
+ 0x29da3: "\xc3\x06\U00029da3", // 𩶣
+ 0x29da4: "\xc3\x06\U00029da4", // 𩶤
+ 0x29da5: "\xc3\x06\U00029da5", // 𩶥
+ 0x29da6: "\xc3\x06\U00029da6", // 𩶦
+ 0x29da7: "\xc3\x06\U00029da7", // 𩶧
+ 0x29da8: "\xc3\x06\U00029da8", // 𩶨
+ 0x29da9: "\xc3\x06\U00029da9", // 𩶩
+ 0x29daa: "\xc3\x06\U00029daa", // 𩶪
+ 0x29dab: "\xc3\x06\U00029dab", // 𩶫
+ 0x29dac: "\xc3\x06\U00029dac", // 𩶬
+ 0x29dad: "\xc3\x06\U00029dad", // 𩶭
+ 0x29dae: "\xc3\x06\U00029dae", // 𩶮
+ 0x29daf: "\xc3\x06\U00029daf", // 𩶯
+ 0x29db0: "\xc3\x06\U00029db0", // 𩶰
+ 0x29db1: "\xc3\x06\U00029db1", // 𩶱
+ 0x29db2: "\xc3\x06\U00029db2", // 𩶲
+ 0x29db3: "\xc3\x06\U00029db3", // 𩶳
+ 0x29db4: "\xc3\x06\U00029db4", // 𩶴
+ 0x29db5: "\xc3\x06\U00029db5", // 𩶵
+ 0x29db6: "\xc3\x06\U00029db6", // 𩶶
+ 0x29db7: "\xc3\x03\U00029db7", // 𩶷
+ 0x29db8: "\xc3\x06\U00029db8", // 𩶸
+ 0x29db9: "\xc3\x06\U00029db9", // 𩶹
+ 0x29dba: "\xc3\x06\U00029dba", // 𩶺
+ 0x29dbb: "\xc3\x06\U00029dbb", // 𩶻
+ 0x29dbc: "\xc3\x06\U00029dbc", // 𩶼
+ 0x29dbd: "\xc3\x06\U00029dbd", // 𩶽
+ 0x29dbe: "\xc3\x06\U00029dbe", // 𩶾
+ 0x29dbf: "\xc3\x06\U00029dbf", // 𩶿
+ 0x29dc0: "\xc3\x06\U00029dc0", // 𩷀
+ 0x29dc1: "\xc3\x06\U00029dc1", // 𩷁
+ 0x29dc2: "\xc3\x06\U00029dc2", // 𩷂
+ 0x29dc3: "\xc3\x06\U00029dc3", // 𩷃
+ 0x29dc4: "\xc3\x06\U00029dc4", // 𩷄
+ 0x29dc5: "\xc3\x06\U00029dc5", // 𩷅
+ 0x29dc6: "\xc3\x06\U00029dc6", // 𩷆
+ 0x29dc7: "\xc3\x06\U00029dc7", // 𩷇
+ 0x29dc8: "\xc3\x06\U00029dc8", // 𩷈
+ 0x29dc9: "\xc3\x06\U00029dc9", // 𩷉
+ 0x29dca: "\xc3\x06\U00029dca", // 𩷊
+ 0x29dcb: "\xc3\x06\U00029dcb", // 𩷋
+ 0x29dcc: "\xc3\x06\U00029dcc", // 𩷌
+ 0x29dcd: "\xc3\a\U00029dcd", // 𩷍
+ 0x29dce: "\xc3\a\U00029dce", // 𩷎
+ 0x29dcf: "\xc3\a\U00029dcf", // 𩷏
+ 0x29dd0: "\xc3\a\U00029dd0", // 𩷐
+ 0x29dd1: "\xc3\a\U00029dd1", // 𩷑
+ 0x29dd2: "\xc3\a\U00029dd2", // 𩷒
+ 0x29dd3: "\xc3\a\U00029dd3", // 𩷓
+ 0x29dd4: "\xc3\a\U00029dd4", // 𩷔
+ 0x29dd5: "\xc3\a\U00029dd5", // 𩷕
+ 0x29dd6: "\xc3\a\U00029dd6", // 𩷖
+ 0x29dd7: "\xc3\a\U00029dd7", // 𩷗
+ 0x29dd8: "\xc3\a\U00029dd8", // 𩷘
+ 0x29dd9: "\xc3\a\U00029dd9", // 𩷙
+ 0x29dda: "\xc3\a\U00029dda", // 𩷚
+ 0x29ddb: "\xc3\a\U00029ddb", // 𩷛
+ 0x29ddc: "\xc3\a\U00029ddc", // 𩷜
+ 0x29ddd: "\xc3\a\U00029ddd", // 𩷝
+ 0x29dde: "\xc3\a\U00029dde", // 𩷞
+ 0x29ddf: "\xc3\a\U00029ddf", // 𩷟
+ 0x29de0: "\xc3\a\U00029de0", // 𩷠
+ 0x29de1: "\xc3\a\U00029de1", // 𩷡
+ 0x29de2: "\xc3\a\U00029de2", // 𩷢
+ 0x29de3: "\xc3\a\U00029de3", // 𩷣
+ 0x29de4: "\xc3\a\U00029de4", // 𩷤
+ 0x29de5: "\xc3\a\U00029de5", // 𩷥
+ 0x29de6: "\xc3\a\U00029de6", // 𩷦
+ 0x29de7: "\xc3\a\U00029de7", // 𩷧
+ 0x29de8: "\xc3\a\U00029de8", // 𩷨
+ 0x29de9: "\xc3\a\U00029de9", // 𩷩
+ 0x29dea: "\xc3\a\U00029dea", // 𩷪
+ 0x29deb: "\xc3\a\U00029deb", // 𩷫
+ 0x29dec: "\xc3\a\U00029dec", // 𩷬
+ 0x29ded: "\xc3\a\U00029ded", // 𩷭
+ 0x29dee: "\xc3\a\U00029dee", // 𩷮
+ 0x29def: "\xc3\a\U00029def", // 𩷯
+ 0x29df0: "\xc3\a\U00029df0", // 𩷰
+ 0x29df1: "\xc3\a\U00029df1", // 𩷱
+ 0x29df2: "\xc3\a\U00029df2", // 𩷲
+ 0x29df3: "\xc3\a\U00029df3", // 𩷳
+ 0x29df4: "\xc3\a\U00029df4", // 𩷴
+ 0x29df5: "\xc3\a\U00029df5", // 𩷵
+ 0x29df6: "\xc3\a\U00029df6", // 𩷶
+ 0x29df7: "\xc3\b\U00029df7", // 𩷷
+ 0x29df8: "\xc3\b\U00029df8", // 𩷸
+ 0x29df9: "\xc3\b\U00029df9", // 𩷹
+ 0x29dfa: "\xc3\b\U00029dfa", // 𩷺
+ 0x29dfb: "\xc3\b\U00029dfb", // 𩷻
+ 0x29dfc: "\xc3\b\U00029dfc", // 𩷼
+ 0x29dfd: "\xc3\b\U00029dfd", // 𩷽
+ 0x29dfe: "\xc3\b\U00029dfe", // 𩷾
+ 0x29dff: "\xc3\b\U00029dff", // 𩷿
+ 0x29e00: "\xc3\b\U00029e00", // 𩸀
+ 0x29e01: "\xc3\b\U00029e01", // 𩸁
+ 0x29e02: "\xc3\b\U00029e02", // 𩸂
+ 0x29e03: "\xc3\b\U00029e03", // 𩸃
+ 0x29e04: "\xc3\b\U00029e04", // 𩸄
+ 0x29e05: "\xc3\b\U00029e05", // 𩸅
+ 0x29e06: "\xc3\b\U00029e06", // 𩸆
+ 0x29e07: "\xc3\b\U00029e07", // 𩸇
+ 0x29e08: "\xc3\b\U00029e08", // 𩸈
+ 0x29e09: "\xc3\b\U00029e09", // 𩸉
+ 0x29e0a: "\xc3\b\U00029e0a", // 𩸊
+ 0x29e0b: "\xc3\b\U00029e0b", // 𩸋
+ 0x29e0c: "\xc3\b\U00029e0c", // 𩸌
+ 0x29e0d: "\xc3\b\U00029e0d", // 𩸍
+ 0x29e0e: "\xc3\b\U00029e0e", // 𩸎
+ 0x29e0f: "\xc3\b\U00029e0f", // 𩸏
+ 0x29e10: "\xc3\b\U00029e10", // 𩸐
+ 0x29e11: "\xc3\b\U00029e11", // 𩸑
+ 0x29e12: "\xc3\b\U00029e12", // 𩸒
+ 0x29e13: "\xc3\b\U00029e13", // 𩸓
+ 0x29e14: "\xc3\b\U00029e14", // 𩸔
+ 0x29e15: "\xc3\b\U00029e15", // 𩸕
+ 0x29e16: "\xc3\b\U00029e16", // 𩸖
+ 0x29e17: "\xc3\b\U00029e17", // 𩸗
+ 0x29e18: "\xc3\b\U00029e18", // 𩸘
+ 0x29e19: "\xc3\b\U00029e19", // 𩸙
+ 0x29e1a: "\xc3\b\U00029e1a", // 𩸚
+ 0x29e1b: "\xc3\b\U00029e1b", // 𩸛
+ 0x29e1c: "\xc3\b\U00029e1c", // 𩸜
+ 0x29e1d: "\xc3\b\U00029e1d", // 𩸝
+ 0x29e1e: "\xc3\b\U00029e1e", // 𩸞
+ 0x29e1f: "\xc3\b\U00029e1f", // 𩸟
+ 0x29e20: "\xc3\b\U00029e20", // 𩸠
+ 0x29e21: "\xc3\b\U00029e21", // 𩸡
+ 0x29e22: "\xc3\b\U00029e22", // 𩸢
+ 0x29e23: "\xc3\b\U00029e23", // 𩸣
+ 0x29e24: "\xc3\b\U00029e24", // 𩸤
+ 0x29e25: "\xc3\b\U00029e25", // 𩸥
+ 0x29e26: "\xc3\b\U00029e26", // 𩸦
+ 0x29e27: "\xc3\b\U00029e27", // 𩸧
+ 0x29e28: "\xc3\b\U00029e28", // 𩸨
+ 0x29e29: "\xc3\b\U00029e29", // 𩸩
+ 0x29e2a: "\xc3\b\U00029e2a", // 𩸪
+ 0x29e2b: "\xc3\b\U00029e2b", // 𩸫
+ 0x29e2c: "\xc3\b\U00029e2c", // 𩸬
+ 0x29e2d: "\xc3\b\U00029e2d", // 𩸭
+ 0x29e2e: "\xc3\b\U00029e2e", // 𩸮
+ 0x29e2f: "\xc3\b\U00029e2f", // 𩸯
+ 0x29e30: "\xc3\b\U00029e30", // 𩸰
+ 0x29e31: "\xc3\b\U00029e31", // 𩸱
+ 0x29e32: "\xc3\b\U00029e32", // 𩸲
+ 0x29e33: "\xc3\b\U00029e33", // 𩸳
+ 0x29e34: "\xc3\b\U00029e34", // 𩸴
+ 0x29e35: "\xc3\b\U00029e35", // 𩸵
+ 0x29e36: "\xc3\b\U00029e36", // 𩸶
+ 0x29e37: "\xc3\b\U00029e37", // 𩸷
+ 0x29e38: "\xc3\b\U00029e38", // 𩸸
+ 0x29e39: "\xc3\b\U00029e39", // 𩸹
+ 0x29e3a: "\xc3\b\U00029e3a", // 𩸺
+ 0x29e3b: "\xc3\b\U00029e3b", // 𩸻
+ 0x29e3c: "\xc3\b\U00029e3c", // 𩸼
+ 0x29e3d: "\xc3\b\U00029e3d", // 𩸽
+ 0x29e3e: "\xc3\t\U00029e3e", // 𩸾
+ 0x29e3f: "\xc3\t\U00029e3f", // 𩸿
+ 0x29e40: "\xc3\t\U00029e40", // 𩹀
+ 0x29e41: "\xc3\t\U00029e41", // 𩹁
+ 0x29e42: "\xc3\t\U00029e42", // 𩹂
+ 0x29e43: "\xc3\t\U00029e43", // 𩹃
+ 0x29e44: "\xc3\t\U00029e44", // 𩹄
+ 0x29e45: "\xc3\t\U00029e45", // 𩹅
+ 0x29e46: "\xc3\t\U00029e46", // 𩹆
+ 0x29e47: "\xc3\t\U00029e47", // 𩹇
+ 0x29e48: "\xc3\t\U00029e48", // 𩹈
+ 0x29e49: "\xc3\t\U00029e49", // 𩹉
+ 0x29e4a: "\xc3\t\U00029e4a", // 𩹊
+ 0x29e4b: "\xc3\t\U00029e4b", // 𩹋
+ 0x29e4c: "\xc3\t\U00029e4c", // 𩹌
+ 0x29e4d: "\xc3\t\U00029e4d", // 𩹍
+ 0x29e4e: "\xc3\t\U00029e4e", // 𩹎
+ 0x29e4f: "\xc3\t\U00029e4f", // 𩹏
+ 0x29e50: "\xc3\t\U00029e50", // 𩹐
+ 0x29e51: "\xc3\t\U00029e51", // 𩹑
+ 0x29e52: "\xc3\t\U00029e52", // 𩹒
+ 0x29e53: "\xc3\t\U00029e53", // 𩹓
+ 0x29e54: "\xc3\t\U00029e54", // 𩹔
+ 0x29e55: "\xc3\t\U00029e55", // 𩹕
+ 0x29e56: "\xc3\t\U00029e56", // 𩹖
+ 0x29e57: "\xc3\t\U00029e57", // 𩹗
+ 0x29e58: "\xc3\t\U00029e58", // 𩹘
+ 0x29e59: "\xc3\t\U00029e59", // 𩹙
+ 0x29e5a: "\xc3\t\U00029e5a", // 𩹚
+ 0x29e5b: "\xc3\t\U00029e5b", // 𩹛
+ 0x29e5c: "\xc3\t\U00029e5c", // 𩹜
+ 0x29e5d: "\xc3\t\U00029e5d", // 𩹝
+ 0x29e5e: "\xc3\t\U00029e5e", // 𩹞
+ 0x29e5f: "\xc3\t\U00029e5f", // 𩹟
+ 0x29e60: "\xc3\t\U00029e60", // 𩹠
+ 0x29e61: "\xc3\t\U00029e61", // 𩹡
+ 0x29e62: "\xc3\t\U00029e62", // 𩹢
+ 0x29e63: "\xc3\t\U00029e63", // 𩹣
+ 0x29e64: "\xc3\t\U00029e64", // 𩹤
+ 0x29e65: "\xc3\t\U00029e65", // 𩹥
+ 0x29e66: "\xc3\t\U00029e66", // 𩹦
+ 0x29e67: "\xc3\t\U00029e67", // 𩹧
+ 0x29e68: "\xc3\t\U00029e68", // 𩹨
+ 0x29e69: "\xc3\t\U00029e69", // 𩹩
+ 0x29e6a: "\xc3\t\U00029e6a", // 𩹪
+ 0x29e6b: "\xc3\t\U00029e6b", // 𩹫
+ 0x29e6c: "\xc3\t\U00029e6c", // 𩹬
+ 0x29e6d: "\xc3\t\U00029e6d", // 𩹭
+ 0x29e6e: "\xc3\t\U00029e6e", // 𩹮
+ 0x29e6f: "\xc3\t\U00029e6f", // 𩹯
+ 0x29e70: "\xc3\t\U00029e70", // 𩹰
+ 0x29e71: "\xc3\n\U00029e71", // 𩹱
+ 0x29e72: "\xc3\n\U00029e72", // 𩹲
+ 0x29e73: "\xc3\n\U00029e73", // 𩹳
+ 0x29e74: "\xc3\n\U00029e74", // 𩹴
+ 0x29e75: "\xc3\n\U00029e75", // 𩹵
+ 0x29e76: "\xc3\n\U00029e76", // 𩹶
+ 0x29e77: "\xc3\n\U00029e77", // 𩹷
+ 0x29e78: "\xc3\n\U00029e78", // 𩹸
+ 0x29e79: "\xc3\n\U00029e79", // 𩹹
+ 0x29e7a: "\xc3\n\U00029e7a", // 𩹺
+ 0x29e7b: "\xc3\n\U00029e7b", // 𩹻
+ 0x29e7c: "\xc3\n\U00029e7c", // 𩹼
+ 0x29e7d: "\xc3\n\U00029e7d", // 𩹽
+ 0x29e7e: "\xc3\n\U00029e7e", // 𩹾
+ 0x29e7f: "\xc3\n\U00029e7f", // 𩹿
+ 0x29e80: "\xc3\n\U00029e80", // 𩺀
+ 0x29e81: "\xc3\n\U00029e81", // 𩺁
+ 0x29e82: "\xc3\n\U00029e82", // 𩺂
+ 0x29e83: "\xc3\n\U00029e83", // 𩺃
+ 0x29e84: "\xc3\n\U00029e84", // 𩺄
+ 0x29e85: "\xc3\n\U00029e85", // 𩺅
+ 0x29e86: "\xc3\n\U00029e86", // 𩺆
+ 0x29e87: "\xc3\n\U00029e87", // 𩺇
+ 0x29e88: "\xc3\n\U00029e88", // 𩺈
+ 0x29e89: "\xc3\n\U00029e89", // 𩺉
+ 0x29e8a: "\xc3\n\U00029e8a", // 𩺊
+ 0x29e8b: "\xc3\n\U00029e8b", // 𩺋
+ 0x29e8c: "\xc3\n\U00029e8c", // 𩺌
+ 0x29e8d: "\xc3\n\U00029e8d", // 𩺍
+ 0x29e8e: "\xc3\n\U00029e8e", // 𩺎
+ 0x29e8f: "\xc3\n\U00029e8f", // 𩺏
+ 0x29e90: "\xc3\n\U00029e90", // 𩺐
+ 0x29e91: "\xc3\n\U00029e91", // 𩺑
+ 0x29e92: "\xc3\n\U00029e92", // 𩺒
+ 0x29e93: "\xc3\n\U00029e93", // 𩺓
+ 0x29e94: "\xc3\n\U00029e94", // 𩺔
+ 0x29e95: "\xc3\n\U00029e95", // 𩺕
+ 0x29e96: "\xc3\n\U00029e96", // 𩺖
+ 0x29e97: "\xc3\n\U00029e97", // 𩺗
+ 0x29e98: "\xc3\n\U00029e98", // 𩺘
+ 0x29e99: "\xc3\n\U00029e99", // 𩺙
+ 0x29e9a: "\xc3\n\U00029e9a", // 𩺚
+ 0x29e9b: "\xc3\n\U00029e9b", // 𩺛
+ 0x29e9c: "\xc3\n\U00029e9c", // 𩺜
+ 0x29e9d: "\xc3\n\U00029e9d", // 𩺝
+ 0x29e9e: "\xc3\n\U00029e9e", // 𩺞
+ 0x29e9f: "\xc3\n\U00029e9f", // 𩺟
+ 0x29ea0: "\xc3\n\U00029ea0", // 𩺠
+ 0x29ea1: "\xc3\n\U00029ea1", // 𩺡
+ 0x29ea2: "\xc3\n\U00029ea2", // 𩺢
+ 0x29ea3: "\xc3\n\U00029ea3", // 𩺣
+ 0x29ea4: "\xc3\n\U00029ea4", // 𩺤
+ 0x29ea5: "\xc3\n\U00029ea5", // 𩺥
+ 0x29ea6: "\xc3\n\U00029ea6", // 𩺦
+ 0x29ea7: "\xc3\n\U00029ea7", // 𩺧
+ 0x29ea8: "\xc3\n\U00029ea8", // 𩺨
+ 0x29ea9: "\xc3\n\U00029ea9", // 𩺩
+ 0x29eaa: "\xc3\n\U00029eaa", // 𩺪
+ 0x29eab: "\xc3\n\U00029eab", // 𩺫
+ 0x29eac: "\xc3\n\U00029eac", // 𩺬
+ 0x29ead: "\xc3\v\U00029ead", // 𩺭
+ 0x29eae: "\xc3\v\U00029eae", // 𩺮
+ 0x29eaf: "\xc3\v\U00029eaf", // 𩺯
+ 0x29eb0: "\xc3\v\U00029eb0", // 𩺰
+ 0x29eb1: "\xc3\v\U00029eb1", // 𩺱
+ 0x29eb2: "\xc3\v\U00029eb2", // 𩺲
+ 0x29eb3: "\xc3\v\U00029eb3", // 𩺳
+ 0x29eb4: "\xc3\v\U00029eb4", // 𩺴
+ 0x29eb5: "\xc3\v\U00029eb5", // 𩺵
+ 0x29eb6: "\xc3\v\U00029eb6", // 𩺶
+ 0x29eb7: "\xc3\v\U00029eb7", // 𩺷
+ 0x29eb8: "\xc3\v\U00029eb8", // 𩺸
+ 0x29eb9: "\xc3\v\U00029eb9", // 𩺹
+ 0x29eba: "\xc3\v\U00029eba", // 𩺺
+ 0x29ebb: "\xc3\v\U00029ebb", // 𩺻
+ 0x29ebc: "\xc3\v\U00029ebc", // 𩺼
+ 0x29ebd: "\xc3\v\U00029ebd", // 𩺽
+ 0x29ebe: "\xc3\v\U00029ebe", // 𩺾
+ 0x29ebf: "\xc3\v\U00029ebf", // 𩺿
+ 0x29ec0: "\xc3\v\U00029ec0", // 𩻀
+ 0x29ec1: "\xc3\v\U00029ec1", // 𩻁
+ 0x29ec2: "\xc3\v\U00029ec2", // 𩻂
+ 0x29ec3: "\xc3\v\U00029ec3", // 𩻃
+ 0x29ec4: "\xc3\v\U00029ec4", // 𩻄
+ 0x29ec5: "\xc3\v\U00029ec5", // 𩻅
+ 0x29ec6: "\xc3\v\U00029ec6", // 𩻆
+ 0x29ec7: "\xc3\v\U00029ec7", // 𩻇
+ 0x29ec8: "\xc3\v\U00029ec8", // 𩻈
+ 0x29ec9: "\xc3\v\U00029ec9", // 𩻉
+ 0x29eca: "\xc3\v\U00029eca", // 𩻊
+ 0x29ecb: "\xc3\v\U00029ecb", // 𩻋
+ 0x29ecc: "\xc3\v\U00029ecc", // 𩻌
+ 0x29ecd: "\xc3\v\U00029ecd", // 𩻍
+ 0x29ece: "\xc3\v\U00029ece", // 𩻎
+ 0x29ecf: "\xc3\v\U00029ecf", // 𩻏
+ 0x29ed0: "\xc3\v\U00029ed0", // 𩻐
+ 0x29ed1: "\xc3\v\U00029ed1", // 𩻑
+ 0x29ed2: "\xc3\v\U00029ed2", // 𩻒
+ 0x29ed3: "\xc3\v\U00029ed3", // 𩻓
+ 0x29ed4: "\xc3\v\U00029ed4", // 𩻔
+ 0x29ed5: "\xc3\v\U00029ed5", // 𩻕
+ 0x29ed6: "\xc3\v\U00029ed6", // 𩻖
+ 0x29ed7: "\xc3\v\U00029ed7", // 𩻗
+ 0x29ed8: "\xc3\f\U00029ed8", // 𩻘
+ 0x29ed9: "\xc3\f\U00029ed9", // 𩻙
+ 0x29eda: "\xc3\f\U00029eda", // 𩻚
+ 0x29edb: "\xc3\f\U00029edb", // 𩻛
+ 0x29edc: "\xc3\f\U00029edc", // 𩻜
+ 0x29edd: "\xc3\f\U00029edd", // 𩻝
+ 0x29ede: "\xc3\f\U00029ede", // 𩻞
+ 0x29edf: "\xc3\f\U00029edf", // 𩻟
+ 0x29ee0: "\xc3\f\U00029ee0", // 𩻠
+ 0x29ee1: "\xc3\f\U00029ee1", // 𩻡
+ 0x29ee2: "\xc3\f\U00029ee2", // 𩻢
+ 0x29ee3: "\xc3\f\U00029ee3", // 𩻣
+ 0x29ee4: "\xc3\f\U00029ee4", // 𩻤
+ 0x29ee5: "\xc3\f\U00029ee5", // 𩻥
+ 0x29ee6: "\xc3\f\U00029ee6", // 𩻦
+ 0x29ee7: "\xc3\f\U00029ee7", // 𩻧
+ 0x29ee8: "\xc3\f\U00029ee8", // 𩻨
+ 0x29ee9: "\xc3\f\U00029ee9", // 𩻩
+ 0x29eea: "\xc3\f\U00029eea", // 𩻪
+ 0x29eeb: "\xc3\f\U00029eeb", // 𩻫
+ 0x29eec: "\xc3\f\U00029eec", // 𩻬
+ 0x29eed: "\xc3\f\U00029eed", // 𩻭
+ 0x29eee: "\xc3\f\U00029eee", // 𩻮
+ 0x29eef: "\xc3\f\U00029eef", // 𩻯
+ 0x29ef0: "\xc3\f\U00029ef0", // 𩻰
+ 0x29ef1: "\xc3\f\U00029ef1", // 𩻱
+ 0x29ef2: "\xc3\f\U00029ef2", // 𩻲
+ 0x29ef3: "\xc3\f\U00029ef3", // 𩻳
+ 0x29ef4: "\xc3\f\U00029ef4", // 𩻴
+ 0x29ef5: "\xc3\f\U00029ef5", // 𩻵
+ 0x29ef6: "\xc3\f\U00029ef6", // 𩻶
+ 0x29ef7: "\xc3\f\U00029ef7", // 𩻷
+ 0x29ef8: "\xc3\f\U00029ef8", // 𩻸
+ 0x29ef9: "\xc3\f\U00029ef9", // 𩻹
+ 0x29efa: "\xc3\f\U00029efa", // 𩻺
+ 0x29efb: "\xc3\f\U00029efb", // 𩻻
+ 0x29efc: "\xc3\f\U00029efc", // 𩻼
+ 0x29efd: "\xc3\f\U00029efd", // 𩻽
+ 0x29efe: "\xc3\f\U00029efe", // 𩻾
+ 0x29eff: "\xc3\f\U00029eff", // 𩻿
+ 0x29f00: "\xc3\f\U00029f00", // 𩼀
+ 0x29f01: "\xc3\f\U00029f01", // 𩼁
+ 0x29f02: "\xc3\r\U00029f02", // 𩼂
+ 0x29f03: "\xc3\r\U00029f03", // 𩼃
+ 0x29f04: "\xc3\r\U00029f04", // 𩼄
+ 0x29f05: "\xc3\r\U00029f05", // 𩼅
+ 0x29f06: "\xc3\r\U00029f06", // 𩼆
+ 0x29f07: "\xc3\r\U00029f07", // 𩼇
+ 0x29f08: "\xc3\r\U00029f08", // 𩼈
+ 0x29f09: "\xc3\r\U00029f09", // 𩼉
+ 0x29f0a: "\xc3\r\U00029f0a", // 𩼊
+ 0x29f0b: "\xc3\r\U00029f0b", // 𩼋
+ 0x29f0c: "\xc3\r\U00029f0c", // 𩼌
+ 0x29f0d: "\xc3\r\U00029f0d", // 𩼍
+ 0x29f0e: "\xc3\r\U00029f0e", // 𩼎
+ 0x29f0f: "\xc3\r\U00029f0f", // 𩼏
+ 0x29f10: "\xc3\r\U00029f10", // 𩼐
+ 0x29f11: "\xc3\r\U00029f11", // 𩼑
+ 0x29f12: "\xc3\r\U00029f12", // 𩼒
+ 0x29f13: "\xc3\r\U00029f13", // 𩼓
+ 0x29f14: "\xc3\r\U00029f14", // 𩼔
+ 0x29f15: "\xc3\r\U00029f15", // 𩼕
+ 0x29f16: "\xc3\r\U00029f16", // 𩼖
+ 0x29f17: "\xc3\r\U00029f17", // 𩼗
+ 0x29f18: "\xc3\r\U00029f18", // 𩼘
+ 0x29f19: "\xc3\r\U00029f19", // 𩼙
+ 0x29f1a: "\xc3\r\U00029f1a", // 𩼚
+ 0x29f1b: "\xc3\r\U00029f1b", // 𩼛
+ 0x29f1c: "\xc3\r\U00029f1c", // 𩼜
+ 0x29f1d: "\xc3\r\U00029f1d", // 𩼝
+ 0x29f1e: "\xc3\r\U00029f1e", // 𩼞
+ 0x29f1f: "\xc3\r\U00029f1f", // 𩼟
+ 0x29f20: "\xc3\r\U00029f20", // 𩼠
+ 0x29f21: "\xc3\r\U00029f21", // 𩼡
+ 0x29f22: "\xc3\r\U00029f22", // 𩼢
+ 0x29f23: "\xc3\r\U00029f23", // 𩼣
+ 0x29f24: "\xc3\r\U00029f24", // 𩼤
+ 0x29f25: "\xc3\x0e\U00029f25", // 𩼥
+ 0x29f26: "\xc3\x0e\U00029f26", // 𩼦
+ 0x29f27: "\xc3\x0e\U00029f27", // 𩼧
+ 0x29f28: "\xc3\x0e\U00029f28", // 𩼨
+ 0x29f29: "\xc3\x0e\U00029f29", // 𩼩
+ 0x29f2a: "\xc3\x0e\U00029f2a", // 𩼪
+ 0x29f2b: "\xc3\x0e\U00029f2b", // 𩼫
+ 0x29f2c: "\xc3\x0e\U00029f2c", // 𩼬
+ 0x29f2d: "\xc3\x0e\U00029f2d", // 𩼭
+ 0x29f2e: "\xc3\x0e\U00029f2e", // 𩼮
+ 0x29f2f: "\xc3\x0e\U00029f2f", // 𩼯
+ 0x29f30: "\xc3\x0e\U00029f30", // 𩼰
+ 0x29f31: "\xc3\x0e\U00029f31", // 𩼱
+ 0x29f32: "\xc3\x0e\U00029f32", // 𩼲
+ 0x29f33: "\xc3\x0e\U00029f33", // 𩼳
+ 0x29f34: "\xc3\x0e\U00029f34", // 𩼴
+ 0x29f35: "\xc3\x0e\U00029f35", // 𩼵
+ 0x29f36: "\xc3\x0e\U00029f36", // 𩼶
+ 0x29f37: "\xc3\x0e\U00029f37", // 𩼷
+ 0x29f38: "\xc3\x0e\U00029f38", // 𩼸
+ 0x29f39: "\xc3\x0e\U00029f39", // 𩼹
+ 0x29f3a: "\xc3\x0e\U00029f3a", // 𩼺
+ 0x29f3b: "\xc3\x0f\U00029f3b", // 𩼻
+ 0x29f3c: "\xc3\x0f\U00029f3c", // 𩼼
+ 0x29f3d: "\xc3\x0f\U00029f3d", // 𩼽
+ 0x29f3e: "\xc3\x0f\U00029f3e", // 𩼾
+ 0x29f3f: "\xc3\x0f\U00029f3f", // 𩼿
+ 0x29f40: "\xc3\x0f\U00029f40", // 𩽀
+ 0x29f41: "\xc3\x0f\U00029f41", // 𩽁
+ 0x29f42: "\xc3\x0f\U00029f42", // 𩽂
+ 0x29f43: "\xc3\x0f\U00029f43", // 𩽃
+ 0x29f44: "\xc3\x0f\U00029f44", // 𩽄
+ 0x29f45: "\xc3\x0f\U00029f45", // 𩽅
+ 0x29f46: "\xc3\x0f\U00029f46", // 𩽆
+ 0x29f47: "\xc3\x0f\U00029f47", // 𩽇
+ 0x29f48: "\xc3\x0f\U00029f48", // 𩽈
+ 0x29f49: "\xc3\x0f\U00029f49", // 𩽉
+ 0x29f4a: "\xc3\x0f\U00029f4a", // 𩽊
+ 0x29f4b: "\xc3\x0f\U00029f4b", // 𩽋
+ 0x29f4c: "\xc3\x0f\U00029f4c", // 𩽌
+ 0x29f4d: "\xc3\x10\U00029f4d", // 𩽍
+ 0x29f4e: "\xc3\x10\U00029f4e", // 𩽎
+ 0x29f4f: "\xc3\x10\U00029f4f", // 𩽏
+ 0x29f50: "\xc3\x10\U00029f50", // 𩽐
+ 0x29f51: "\xc3\x10\U00029f51", // 𩽑
+ 0x29f52: "\xc3\x10\U00029f52", // 𩽒
+ 0x29f53: "\xc3\x10\U00029f53", // 𩽓
+ 0x29f54: "\xc3\x10\U00029f54", // 𩽔
+ 0x29f55: "\xc3\x10\U00029f55", // 𩽕
+ 0x29f56: "\xc3\x10\U00029f56", // 𩽖
+ 0x29f57: "\xc3\x10\U00029f57", // 𩽗
+ 0x29f58: "\xc3\x10\U00029f58", // 𩽘
+ 0x29f59: "\xc3\x10\U00029f59", // 𩽙
+ 0x29f5a: "\xc3\x11\U00029f5a", // 𩽚
+ 0x29f5b: "\xc3\x11\U00029f5b", // 𩽛
+ 0x29f5c: "\xc3\x11\U00029f5c", // 𩽜
+ 0x29f5d: "\xc3\x11\U00029f5d", // 𩽝
+ 0x29f5e: "\xc3\x11\U00029f5e", // 𩽞
+ 0x29f5f: "\xc3\x11\U00029f5f", // 𩽟
+ 0x29f60: "\xc3\x11\U00029f60", // 𩽠
+ 0x29f61: "\xc3\x11\U00029f61", // 𩽡
+ 0x29f62: "\xc3\x11\U00029f62", // 𩽢
+ 0x29f63: "\xc3\x11\U00029f63", // 𩽣
+ 0x29f64: "\xc3\x11\U00029f64", // 𩽤
+ 0x29f65: "\xc3\x11\U00029f65", // 𩽥
+ 0x29f66: "\xc3\x11\U00029f66", // 𩽦
+ 0x29f67: "\xc3\x12\U00029f67", // 𩽧
+ 0x29f68: "\xc3\x12\U00029f68", // 𩽨
+ 0x29f69: "\xc3\x12\U00029f69", // 𩽩
+ 0x29f6a: "\xc3\x12\U00029f6a", // 𩽪
+ 0x29f6b: "\xc3\x12\U00029f6b", // 𩽫
+ 0x29f6c: "\xc3\x12\U00029f6c", // 𩽬
+ 0x29f6d: "\xc3\x12\U00029f6d", // 𩽭
+ 0x29f6e: "\xc3\x12\U00029f6e", // 𩽮
+ 0x29f6f: "\xc3\x12\U00029f6f", // 𩽯
+ 0x29f70: "\xc3\x13\U00029f70", // 𩽰
+ 0x29f71: "\xc3\x13\U00029f71", // 𩽱
+ 0x29f72: "\xc3\x13\U00029f72", // 𩽲
+ 0x29f73: "\xc3\x14\U00029f73", // 𩽳
+ 0x29f74: "\xc3\x14\U00029f74", // 𩽴
+ 0x29f75: "\xc3\x15\U00029f75", // 𩽵
+ 0x29f76: "\xc3\x15\U00029f76", // 𩽶
+ 0x29f77: "\xc3\x15\U00029f77", // 𩽷
+ 0x29f78: "\xc3\x15\U00029f78", // 𩽸
+ 0x29f79: "\xc3\x04\U00029f79", // 𩽹
+ 0x29f7a: "\xc3\x04\U00029f7a", // 𩽺
+ 0x29f7b: "\xc3\x04\U00029f7b", // 𩽻
+ 0x29f7c: "\xc3\x06\U00029f7c", // 𩽼
+ 0x29f7d: "\xc3\x06\U00029f7d", // 𩽽
+ 0x29f7e: "\xc3\x06\U00029f7e", // 𩽾
+ 0x29f7f: "\xc3\x06\U00029f7f", // 𩽿
+ 0x29f80: "\xc3\x05\U00029f80", // 𩾀
+ 0x29f81: "\xc3\a\U00029f81", // 𩾁
+ 0x29f82: "\xc3\a\U00029f82", // 𩾂
+ 0x29f83: "\xc3\a\U00029f83", // 𩾃
+ 0x29f84: "\xc3\a\U00029f84", // 𩾄
+ 0x29f85: "\xc3\b\U00029f85", // 𩾅
+ 0x29f86: "\xc3\b\U00029f86", // 𩾆
+ 0x29f87: "\xc3\b\U00029f87", // 𩾇
+ 0x29f88: "\xc3\b\U00029f88", // 𩾈
+ 0x29f89: "\xc3\a\U00029f89", // 𩾉
+ 0x29f8a: "\xc3\t\U00029f8a", // 𩾊
+ 0x29f8b: "\xc3\t\U00029f8b", // 𩾋
+ 0x29f8c: "\xc3\v\U00029f8c", // 𩾌
+ 0x29f8d: "\xc3\r\U00029f8d", // 𩾍
+ 0x29f8e: "\xc3\x0f\U00029f8e", // 𩾎
+ 0x29f8f: "\xc4\x01\U00029f8f", // 𩾏
+ 0x29f90: "\xc4\x01\U00029f90", // 𩾐
+ 0x29f91: "\xc4\x01\U00029f91", // 𩾑
+ 0x29f92: "\xc4\x02\U00029f92", // 𩾒
+ 0x29f93: "\xc4\x02\U00029f93", // 𩾓
+ 0x29f94: "\xc4\x02\U00029f94", // 𩾔
+ 0x29f95: "\xc4\x02\U00029f95", // 𩾕
+ 0x29f96: "\xc4\x02\U00029f96", // 𩾖
+ 0x29f97: "\xc4\x02\U00029f97", // 𩾗
+ 0x29f98: "\xc4\x02\U00029f98", // 𩾘
+ 0x29f99: "\xc4\x02\U00029f99", // 𩾙
+ 0x29f9a: "\xc4\x02\U00029f9a", // 𩾚
+ 0x29f9b: "\xc4\x02\U00029f9b", // 𩾛
+ 0x29f9c: "\xc4\x02\U00029f9c", // 𩾜
+ 0x29f9d: "\xc4\x03\U00029f9d", // 𩾝
+ 0x29f9e: "\xc4\x03\U00029f9e", // 𩾞
+ 0x29f9f: "\xc4\x03\U00029f9f", // 𩾟
+ 0x29fa0: "\xc4\x03\U00029fa0", // 𩾠
+ 0x29fa1: "\xc4\x03\U00029fa1", // 𩾡
+ 0x29fa2: "\xc4\x03\U00029fa2", // 𩾢
+ 0x29fa3: "\xc4\x03\U00029fa3", // 𩾣
+ 0x29fa4: "\xc4\x03\U00029fa4", // 𩾤
+ 0x29fa5: "\xc4\x03\U00029fa5", // 𩾥
+ 0x29fa6: "\xc4\x03\U00029fa6", // 𩾦
+ 0x29fa7: "\xc4\x03\U00029fa7", // 𩾧
+ 0x29fa8: "\xc4\x03\U00029fa8", // 𩾨
+ 0x29fa9: "\xc4\x03\U00029fa9", // 𩾩
+ 0x29faa: "\xc4\x03\U00029faa", // 𩾪
+ 0x29fab: "\xc4\x03\U00029fab", // 𩾫
+ 0x29fac: "\xc4\x03\U00029fac", // 𩾬
+ 0x29fad: "\xc4\x03\U00029fad", // 𩾭
+ 0x29fae: "\xc4\x03\U00029fae", // 𩾮
+ 0x29faf: "\xc4\x03\U00029faf", // 𩾯
+ 0x29fb0: "\xc4\x04\U00029fb0", // 𩾰
+ 0x29fb1: "\xc4\x04\U00029fb1", // 𩾱
+ 0x29fb2: "\xc4\x04\U00029fb2", // 𩾲
+ 0x29fb3: "\xc4\x04\U00029fb3", // 𩾳
+ 0x29fb4: "\xc4\x04\U00029fb4", // 𩾴
+ 0x29fb5: "\xc4\x04\U00029fb5", // 𩾵
+ 0x29fb6: "\xc4\x04\U00029fb6", // 𩾶
+ 0x29fb7: "\xc4\x04\U00029fb7", // 𩾷
+ 0x29fb8: "\xc4\x04\U00029fb8", // 𩾸
+ 0x29fb9: "\xc4\x04\U00029fb9", // 𩾹
+ 0x29fba: "\xc4\x04\U00029fba", // 𩾺
+ 0x29fbb: "\xc4\x04\U00029fbb", // 𩾻
+ 0x29fbc: "\xc4\x04\U00029fbc", // 𩾼
+ 0x29fbd: "\xc4\x04\U00029fbd", // 𩾽
+ 0x29fbe: "\xc4\x04\U00029fbe", // 𩾾
+ 0x29fbf: "\xc4\x04\U00029fbf", // 𩾿
+ 0x29fc0: "\xc4\x04\U00029fc0", // 𩿀
+ 0x29fc1: "\xc4\x04\U00029fc1", // 𩿁
+ 0x29fc2: "\xc4\x04\U00029fc2", // 𩿂
+ 0x29fc3: "\xc4\x04\U00029fc3", // 𩿃
+ 0x29fc4: "\xc4\x04\U00029fc4", // 𩿄
+ 0x29fc5: "\xc4\x04\U00029fc5", // 𩿅
+ 0x29fc6: "\xc4\x04\U00029fc6", // 𩿆
+ 0x29fc7: "\xc4\x04\U00029fc7", // 𩿇
+ 0x29fc8: "\xc4\x04\U00029fc8", // 𩿈
+ 0x29fc9: "\xc4\x04\U00029fc9", // 𩿉
+ 0x29fca: "\xc4\x04\U00029fca", // 𩿊
+ 0x29fcb: "\xc4\x04\U00029fcb", // 𩿋
+ 0x29fcc: "\xc4\x04\U00029fcc", // 𩿌
+ 0x29fcd: "\xc4\x04\U00029fcd", // 𩿍
+ 0x29fce: "\xc4\x04\U00029fce", // 𩿎
+ 0x29fcf: "\xc4\x04\U00029fcf", // 𩿏
+ 0x29fd0: "\xc4\x04\U00029fd0", // 𩿐
+ 0x29fd1: "\xc4\x04\U00029fd1", // 𩿑
+ 0x29fd2: "\xc4\x04\U00029fd2", // 𩿒
+ 0x29fd3: "\xc4\x04\U00029fd3", // 𩿓
+ 0x29fd4: "\xc4\x04\U00029fd4", // 𩿔
+ 0x29fd5: "\xc4\x04\U00029fd5", // 𩿕
+ 0x29fd6: "\xc4\x04\U00029fd6", // 𩿖
+ 0x29fd7: "\xc4\x04\U00029fd7", // 𩿗
+ 0x29fd8: "\xc4\x04\U00029fd8", // 𩿘
+ 0x29fd9: "\xc4\x04\U00029fd9", // 𩿙
+ 0x29fda: "\xc4\x04\U00029fda", // 𩿚
+ 0x29fdb: "\xc4\x04\U00029fdb", // 𩿛
+ 0x29fdc: "\xc4\x05\U00029fdc", // 𩿜
+ 0x29fdd: "\xc4\x05\U00029fdd", // 𩿝
+ 0x29fde: "\xc4\x05\U00029fde", // 𩿞
+ 0x29fdf: "\xc4\x05\U00029fdf", // 𩿟
+ 0x29fe0: "\xc4\x05\U00029fe0", // 𩿠
+ 0x29fe1: "\xc4\x05\U00029fe1", // 𩿡
+ 0x29fe2: "\xc4\x05\U00029fe2", // 𩿢
+ 0x29fe3: "\xc4\x05\U00029fe3", // 𩿣
+ 0x29fe4: "\xc4\x05\U00029fe4", // 𩿤
+ 0x29fe5: "\xc4\x05\U00029fe5", // 𩿥
+ 0x29fe6: "\xc4\x05\U00029fe6", // 𩿦
+ 0x29fe7: "\xc4\x05\U00029fe7", // 𩿧
+ 0x29fe8: "\xc4\x05\U00029fe8", // 𩿨
+ 0x29fe9: "\xc4\x05\U00029fe9", // 𩿩
+ 0x29fea: "\xc4\x05\U00029fea", // 𩿪
+ 0x29feb: "\xc4\x05\U00029feb", // 𩿫
+ 0x29fec: "\xc4\x05\U00029fec", // 𩿬
+ 0x29fed: "\xc4\x05\U00029fed", // 𩿭
+ 0x29fee: "\xc4\x05\U00029fee", // 𩿮
+ 0x29fef: "\xc4\x05\U00029fef", // 𩿯
+ 0x29ff0: "\xc4\x05\U00029ff0", // 𩿰
+ 0x29ff1: "\xc4\x05\U00029ff1", // 𩿱
+ 0x29ff2: "\xc4\x05\U00029ff2", // 𩿲
+ 0x29ff3: "\xc4\x05\U00029ff3", // 𩿳
+ 0x29ff4: "\xc4\x05\U00029ff4", // 𩿴
+ 0x29ff5: "\xc4\x05\U00029ff5", // 𩿵
+ 0x29ff6: "\xc4\x05\U00029ff6", // 𩿶
+ 0x29ff7: "\xc4\x05\U00029ff7", // 𩿷
+ 0x29ff8: "\xc4\x05\U00029ff8", // 𩿸
+ 0x29ff9: "\xc4\x05\U00029ff9", // 𩿹
+ 0x29ffa: "\xc4\x05\U00029ffa", // 𩿺
+ 0x29ffb: "\xc4\x05\U00029ffb", // 𩿻
+ 0x29ffc: "\xc4\x05\U00029ffc", // 𩿼
+ 0x29ffd: "\xc4\x05\U00029ffd", // 𩿽
+ 0x29ffe: "\xc4\x05\U00029ffe", // 𩿾
+ 0x29fff: "\xc4\x05\U00029fff", // 𩿿
+ 0x2a000: "\xc4\x05\U0002a000", // 𪀀
+ 0x2a001: "\xc4\x05\U0002a001", // 𪀁
+ 0x2a002: "\xc4\x05\U0002a002", // 𪀂
+ 0x2a003: "\xc4\x05\U0002a003", // 𪀃
+ 0x2a004: "\xc4\x05\U0002a004", // 𪀄
+ 0x2a005: "\xc4\x05\U0002a005", // 𪀅
+ 0x2a006: "\xc4\x05\U0002a006", // 𪀆
+ 0x2a007: "\xc4\x05\U0002a007", // 𪀇
+ 0x2a008: "\xc4\x05\U0002a008", // 𪀈
+ 0x2a009: "\xc4\x05\U0002a009", // 𪀉
+ 0x2a00a: "\xc4\x05\U0002a00a", // 𪀊
+ 0x2a00b: "\xc4\x05\U0002a00b", // 𪀋
+ 0x2a00c: "\xc4\x05\U0002a00c", // 𪀌
+ 0x2a00d: "\xc4\x05\U0002a00d", // 𪀍
+ 0x2a00e: "\xc4\x05\U0002a00e", // 𪀎
+ 0x2a00f: "\xc4\x05\U0002a00f", // 𪀏
+ 0x2a010: "\xc4\x05\U0002a010", // 𪀐
+ 0x2a011: "\xc4\x05\U0002a011", // 𪀑
+ 0x2a012: "\xc4\x06\U0002a012", // 𪀒
+ 0x2a013: "\xc4\x06\U0002a013", // 𪀓
+ 0x2a014: "\xc4\x06\U0002a014", // 𪀔
+ 0x2a015: "\xc4\x06\U0002a015", // 𪀕
+ 0x2a016: "\xc4\x06\U0002a016", // 𪀖
+ 0x2a017: "\xc4\x06\U0002a017", // 𪀗
+ 0x2a018: "\xc4\x06\U0002a018", // 𪀘
+ 0x2a019: "\xc4\x06\U0002a019", // 𪀙
+ 0x2a01a: "\xc4\x06\U0002a01a", // 𪀚
+ 0x2a01b: "\xc4\x06\U0002a01b", // 𪀛
+ 0x2a01c: "\xc4\x06\U0002a01c", // 𪀜
+ 0x2a01d: "\xc4\x06\U0002a01d", // 𪀝
+ 0x2a01e: "\xc4\x06\U0002a01e", // 𪀞
+ 0x2a01f: "\xc4\x06\U0002a01f", // 𪀟
+ 0x2a020: "\xc4\x06\U0002a020", // 𪀠
+ 0x2a021: "\xc4\x06\U0002a021", // 𪀡
+ 0x2a022: "\xc4\x06\U0002a022", // 𪀢
+ 0x2a023: "\xc4\x06\U0002a023", // 𪀣
+ 0x2a024: "\xc4\x06\U0002a024", // 𪀤
+ 0x2a025: "\xc4\x06\U0002a025", // 𪀥
+ 0x2a026: "\xc4\x06\U0002a026", // 𪀦
+ 0x2a027: "\xc4\x06\U0002a027", // 𪀧
+ 0x2a028: "\xc4\x06\U0002a028", // 𪀨
+ 0x2a029: "\xc4\x06\U0002a029", // 𪀩
+ 0x2a02a: "\xc4\x06\U0002a02a", // 𪀪
+ 0x2a02b: "\xc4\x06\U0002a02b", // 𪀫
+ 0x2a02c: "\xc4\x06\U0002a02c", // 𪀬
+ 0x2a02d: "\xc4\x06\U0002a02d", // 𪀭
+ 0x2a02e: "\xc4\x06\U0002a02e", // 𪀮
+ 0x2a02f: "\xc4\x06\U0002a02f", // 𪀯
+ 0x2a030: "\xc4\x06\U0002a030", // 𪀰
+ 0x2a031: "\xc4\x06\U0002a031", // 𪀱
+ 0x2a032: "\xc4\x06\U0002a032", // 𪀲
+ 0x2a033: "\xc4\x06\U0002a033", // 𪀳
+ 0x2a034: "\xc4\x06\U0002a034", // 𪀴
+ 0x2a035: "\xc4\x06\U0002a035", // 𪀵
+ 0x2a036: "\xc4\x06\U0002a036", // 𪀶
+ 0x2a037: "\xc4\x06\U0002a037", // 𪀷
+ 0x2a038: "\xc4\x06\U0002a038", // 𪀸
+ 0x2a039: "\xc4\x06\U0002a039", // 𪀹
+ 0x2a03a: "\xc4\x06\U0002a03a", // 𪀺
+ 0x2a03b: "\xc4\x06\U0002a03b", // 𪀻
+ 0x2a03c: "\xc4\x06\U0002a03c", // 𪀼
+ 0x2a03d: "\xc4\x06\U0002a03d", // 𪀽
+ 0x2a03e: "\xc4\x06\U0002a03e", // 𪀾
+ 0x2a03f: "\xc4\x06\U0002a03f", // 𪀿
+ 0x2a040: "\xc4\x06\U0002a040", // 𪁀
+ 0x2a041: "\xc4\x06\U0002a041", // 𪁁
+ 0x2a042: "\xc4\x06\U0002a042", // 𪁂
+ 0x2a043: "\xc4\x06\U0002a043", // 𪁃
+ 0x2a044: "\xc4\x06\U0002a044", // 𪁄
+ 0x2a045: "\xc4\x06\U0002a045", // 𪁅
+ 0x2a046: "\xc4\x06\U0002a046", // 𪁆
+ 0x2a047: "\xc4\x06\U0002a047", // 𪁇
+ 0x2a048: "\xc4\x06\U0002a048", // 𪁈
+ 0x2a049: "\xc4\x06\U0002a049", // 𪁉
+ 0x2a04a: "\xc4\a\U0002a04a", // 𪁊
+ 0x2a04b: "\xc4\a\U0002a04b", // 𪁋
+ 0x2a04c: "\xc4\a\U0002a04c", // 𪁌
+ 0x2a04d: "\xc4\a\U0002a04d", // 𪁍
+ 0x2a04e: "\xc4\a\U0002a04e", // 𪁎
+ 0x2a04f: "\xc4\a\U0002a04f", // 𪁏
+ 0x2a050: "\xc4\a\U0002a050", // 𪁐
+ 0x2a051: "\xc4\a\U0002a051", // 𪁑
+ 0x2a052: "\xc4\a\U0002a052", // 𪁒
+ 0x2a053: "\xc4\a\U0002a053", // 𪁓
+ 0x2a054: "\xc4\a\U0002a054", // 𪁔
+ 0x2a055: "\xc4\a\U0002a055", // 𪁕
+ 0x2a056: "\xc4\a\U0002a056", // 𪁖
+ 0x2a057: "\xc4\a\U0002a057", // 𪁗
+ 0x2a058: "\xc4\a\U0002a058", // 𪁘
+ 0x2a059: "\xc4\a\U0002a059", // 𪁙
+ 0x2a05a: "\xc4\a\U0002a05a", // 𪁚
+ 0x2a05b: "\xc4\a\U0002a05b", // 𪁛
+ 0x2a05c: "\xc4\a\U0002a05c", // 𪁜
+ 0x2a05d: "\xc4\a\U0002a05d", // 𪁝
+ 0x2a05e: "\xc4\a\U0002a05e", // 𪁞
+ 0x2a05f: "\xc4\a\U0002a05f", // 𪁟
+ 0x2a060: "\xc4\a\U0002a060", // 𪁠
+ 0x2a061: "\xc4\a\U0002a061", // 𪁡
+ 0x2a062: "\xc4\a\U0002a062", // 𪁢
+ 0x2a063: "\xc4\a\U0002a063", // 𪁣
+ 0x2a064: "\xc4\a\U0002a064", // 𪁤
+ 0x2a065: "\xc4\a\U0002a065", // 𪁥
+ 0x2a066: "\xc4\a\U0002a066", // 𪁦
+ 0x2a067: "\xc4\a\U0002a067", // 𪁧
+ 0x2a068: "\xc4\a\U0002a068", // 𪁨
+ 0x2a069: "\xc4\a\U0002a069", // 𪁩
+ 0x2a06a: "\xc4\a\U0002a06a", // 𪁪
+ 0x2a06b: "\xc4\a\U0002a06b", // 𪁫
+ 0x2a06c: "\xc4\a\U0002a06c", // 𪁬
+ 0x2a06d: "\xc4\a\U0002a06d", // 𪁭
+ 0x2a06e: "\xc4\a\U0002a06e", // 𪁮
+ 0x2a06f: "\xc4\a\U0002a06f", // 𪁯
+ 0x2a070: "\xc4\a\U0002a070", // 𪁰
+ 0x2a071: "\xc4\a\U0002a071", // 𪁱
+ 0x2a072: "\xc4\a\U0002a072", // 𪁲
+ 0x2a073: "\xc4\a\U0002a073", // 𪁳
+ 0x2a074: "\xc4\a\U0002a074", // 𪁴
+ 0x2a075: "\xc4\a\U0002a075", // 𪁵
+ 0x2a076: "\xc4\a\U0002a076", // 𪁶
+ 0x2a077: "\xc4\b\U0002a077", // 𪁷
+ 0x2a078: "\xc4\b\U0002a078", // 𪁸
+ 0x2a079: "\xc4\b\U0002a079", // 𪁹
+ 0x2a07a: "\xc4\b\U0002a07a", // 𪁺
+ 0x2a07b: "\xc4\b\U0002a07b", // 𪁻
+ 0x2a07c: "\xc4\b\U0002a07c", // 𪁼
+ 0x2a07d: "\xc4\b\U0002a07d", // 𪁽
+ 0x2a07e: "\xc4\b\U0002a07e", // 𪁾
+ 0x2a07f: "\xc4\b\U0002a07f", // 𪁿
+ 0x2a080: "\xc4\b\U0002a080", // 𪂀
+ 0x2a081: "\xc4\b\U0002a081", // 𪂁
+ 0x2a082: "\xc4\b\U0002a082", // 𪂂
+ 0x2a083: "\xc4\b\U0002a083", // 𪂃
+ 0x2a084: "\xc4\b\U0002a084", // 𪂄
+ 0x2a085: "\xc4\b\U0002a085", // 𪂅
+ 0x2a086: "\xc4\b\U0002a086", // 𪂆
+ 0x2a087: "\xc4\b\U0002a087", // 𪂇
+ 0x2a088: "\xc4\b\U0002a088", // 𪂈
+ 0x2a089: "\xc4\b\U0002a089", // 𪂉
+ 0x2a08a: "\xc4\b\U0002a08a", // 𪂊
+ 0x2a08b: "\xc4\b\U0002a08b", // 𪂋
+ 0x2a08c: "\xc4\b\U0002a08c", // 𪂌
+ 0x2a08d: "\xc4\b\U0002a08d", // 𪂍
+ 0x2a08e: "\xc4\b\U0002a08e", // 𪂎
+ 0x2a08f: "\xc4\b\U0002a08f", // 𪂏
+ 0x2a090: "\xc4\b\U0002a090", // 𪂐
+ 0x2a091: "\xc4\b\U0002a091", // 𪂑
+ 0x2a092: "\xc4\b\U0002a092", // 𪂒
+ 0x2a093: "\xc4\b\U0002a093", // 𪂓
+ 0x2a094: "\xc4\b\U0002a094", // 𪂔
+ 0x2a095: "\xc4\b\U0002a095", // 𪂕
+ 0x2a096: "\xc4\b\U0002a096", // 𪂖
+ 0x2a097: "\xc4\b\U0002a097", // 𪂗
+ 0x2a098: "\xc4\b\U0002a098", // 𪂘
+ 0x2a099: "\xc4\b\U0002a099", // 𪂙
+ 0x2a09a: "\xc4\b\U0002a09a", // 𪂚
+ 0x2a09b: "\xc4\b\U0002a09b", // 𪂛
+ 0x2a09c: "\xc4\b\U0002a09c", // 𪂜
+ 0x2a09d: "\xc4\b\U0002a09d", // 𪂝
+ 0x2a09e: "\xc4\b\U0002a09e", // 𪂞
+ 0x2a09f: "\xc4\b\U0002a09f", // 𪂟
+ 0x2a0a0: "\xc4\b\U0002a0a0", // 𪂠
+ 0x2a0a1: "\xc4\b\U0002a0a1", // 𪂡
+ 0x2a0a2: "\xc4\b\U0002a0a2", // 𪂢
+ 0x2a0a3: "\xc4\b\U0002a0a3", // 𪂣
+ 0x2a0a4: "\xc4\b\U0002a0a4", // 𪂤
+ 0x2a0a5: "\xc4\b\U0002a0a5", // 𪂥
+ 0x2a0a6: "\xc4\b\U0002a0a6", // 𪂦
+ 0x2a0a7: "\xc4\b\U0002a0a7", // 𪂧
+ 0x2a0a8: "\xc4\b\U0002a0a8", // 𪂨
+ 0x2a0a9: "\xc4\b\U0002a0a9", // 𪂩
+ 0x2a0aa: "\xc4\b\U0002a0aa", // 𪂪
+ 0x2a0ab: "\xc4\b\U0002a0ab", // 𪂫
+ 0x2a0ac: "\xc4\b\U0002a0ac", // 𪂬
+ 0x2a0ad: "\xc4\b\U0002a0ad", // 𪂭
+ 0x2a0ae: "\xc4\b\U0002a0ae", // 𪂮
+ 0x2a0af: "\xc4\b\U0002a0af", // 𪂯
+ 0x2a0b0: "\xc4\b\U0002a0b0", // 𪂰
+ 0x2a0b1: "\xc4\b\U0002a0b1", // 𪂱
+ 0x2a0b2: "\xc4\b\U0002a0b2", // 𪂲
+ 0x2a0b3: "\xc4\b\U0002a0b3", // 𪂳
+ 0x2a0b4: "\xc4\b\U0002a0b4", // 𪂴
+ 0x2a0b5: "\xc4\b\U0002a0b5", // 𪂵
+ 0x2a0b6: "\xc4\t\U0002a0b6", // 𪂶
+ 0x2a0b7: "\xc4\t\U0002a0b7", // 𪂷
+ 0x2a0b8: "\xc4\t\U0002a0b8", // 𪂸
+ 0x2a0b9: "\xc4\t\U0002a0b9", // 𪂹
+ 0x2a0ba: "\xc4\t\U0002a0ba", // 𪂺
+ 0x2a0bb: "\xc4\t\U0002a0bb", // 𪂻
+ 0x2a0bc: "\xc4\t\U0002a0bc", // 𪂼
+ 0x2a0bd: "\xc4\t\U0002a0bd", // 𪂽
+ 0x2a0be: "\xc4\t\U0002a0be", // 𪂾
+ 0x2a0bf: "\xc4\t\U0002a0bf", // 𪂿
+ 0x2a0c0: "\xc4\t\U0002a0c0", // 𪃀
+ 0x2a0c1: "\xc4\t\U0002a0c1", // 𪃁
+ 0x2a0c2: "\xc4\t\U0002a0c2", // 𪃂
+ 0x2a0c3: "\xc4\t\U0002a0c3", // 𪃃
+ 0x2a0c4: "\xc4\t\U0002a0c4", // 𪃄
+ 0x2a0c5: "\xc4\t\U0002a0c5", // 𪃅
+ 0x2a0c6: "\xc4\t\U0002a0c6", // 𪃆
+ 0x2a0c7: "\xc4\t\U0002a0c7", // 𪃇
+ 0x2a0c8: "\xc4\t\U0002a0c8", // 𪃈
+ 0x2a0c9: "\xc4\t\U0002a0c9", // 𪃉
+ 0x2a0ca: "\xc4\t\U0002a0ca", // 𪃊
+ 0x2a0cb: "\xc4\t\U0002a0cb", // 𪃋
+ 0x2a0cc: "\xc4\t\U0002a0cc", // 𪃌
+ 0x2a0cd: "\xc4\t\U0002a0cd", // 𪃍
+ 0x2a0ce: "\xc4\t\U0002a0ce", // 𪃎
+ 0x2a0cf: "\xc4\t\U0002a0cf", // 𪃏
+ 0x2a0d0: "\xc4\t\U0002a0d0", // 𪃐
+ 0x2a0d1: "\xc4\t\U0002a0d1", // 𪃑
+ 0x2a0d2: "\xc4\t\U0002a0d2", // 𪃒
+ 0x2a0d3: "\xc4\t\U0002a0d3", // 𪃓
+ 0x2a0d4: "\xc4\t\U0002a0d4", // 𪃔
+ 0x2a0d5: "\xc4\t\U0002a0d5", // 𪃕
+ 0x2a0d6: "\xc4\t\U0002a0d6", // 𪃖
+ 0x2a0d7: "\xc4\t\U0002a0d7", // 𪃗
+ 0x2a0d8: "\xc4\t\U0002a0d8", // 𪃘
+ 0x2a0d9: "\xc4\t\U0002a0d9", // 𪃙
+ 0x2a0da: "\xc4\t\U0002a0da", // 𪃚
+ 0x2a0db: "\xc4\t\U0002a0db", // 𪃛
+ 0x2a0dc: "\xc4\t\U0002a0dc", // 𪃜
+ 0x2a0dd: "\xc4\t\U0002a0dd", // 𪃝
+ 0x2a0de: "\xc4\t\U0002a0de", // 𪃞
+ 0x2a0df: "\xc4\t\U0002a0df", // 𪃟
+ 0x2a0e0: "\xc4\t\U0002a0e0", // 𪃠
+ 0x2a0e1: "\xc4\t\U0002a0e1", // 𪃡
+ 0x2a0e2: "\xc4\t\U0002a0e2", // 𪃢
+ 0x2a0e3: "\xc4\t\U0002a0e3", // 𪃣
+ 0x2a0e4: "\xc4\t\U0002a0e4", // 𪃤
+ 0x2a0e5: "\xc4\t\U0002a0e5", // 𪃥
+ 0x2a0e6: "\xc4\t\U0002a0e6", // 𪃦
+ 0x2a0e7: "\xc4\t\U0002a0e7", // 𪃧
+ 0x2a0e8: "\xc4\t\U0002a0e8", // 𪃨
+ 0x2a0e9: "\xc4\t\U0002a0e9", // 𪃩
+ 0x2a0ea: "\xc4\t\U0002a0ea", // 𪃪
+ 0x2a0eb: "\xc4\t\U0002a0eb", // 𪃫
+ 0x2a0ec: "\xc4\t\U0002a0ec", // 𪃬
+ 0x2a0ed: "\xc4\t\U0002a0ed", // 𪃭
+ 0x2a0ee: "\xc4\t\U0002a0ee", // 𪃮
+ 0x2a0ef: "\xc4\t\U0002a0ef", // 𪃯
+ 0x2a0f0: "\xc4\t\U0002a0f0", // 𪃰
+ 0x2a0f1: "\xc4\t\U0002a0f1", // 𪃱
+ 0x2a0f2: "\xc4\t\U0002a0f2", // 𪃲
+ 0x2a0f3: "\xc4\t\U0002a0f3", // 𪃳
+ 0x2a0f4: "\xc4\t\U0002a0f4", // 𪃴
+ 0x2a0f5: "\xc4\t\U0002a0f5", // 𪃵
+ 0x2a0f6: "\xc4\t\U0002a0f6", // 𪃶
+ 0x2a0f7: "\xc4\t\U0002a0f7", // 𪃷
+ 0x2a0f8: "\xc4\t\U0002a0f8", // 𪃸
+ 0x2a0f9: "\xc4\t\U0002a0f9", // 𪃹
+ 0x2a0fa: "\xc4\n\U0002a0fa", // 𪃺
+ 0x2a0fb: "\xc4\n\U0002a0fb", // 𪃻
+ 0x2a0fc: "\xc4\n\U0002a0fc", // 𪃼
+ 0x2a0fd: "\xc4\n\U0002a0fd", // 𪃽
+ 0x2a0fe: "\xc4\n\U0002a0fe", // 𪃾
+ 0x2a0ff: "\xc4\n\U0002a0ff", // 𪃿
+ 0x2a100: "\xc4\n\U0002a100", // 𪄀
+ 0x2a101: "\xc4\n\U0002a101", // 𪄁
+ 0x2a102: "\xc4\n\U0002a102", // 𪄂
+ 0x2a103: "\xc4\n\U0002a103", // 𪄃
+ 0x2a104: "\xc4\n\U0002a104", // 𪄄
+ 0x2a105: "\xc4\n\U0002a105", // 𪄅
+ 0x2a106: "\xc4\n\U0002a106", // 𪄆
+ 0x2a107: "\xc4\n\U0002a107", // 𪄇
+ 0x2a108: "\xc4\n\U0002a108", // 𪄈
+ 0x2a109: "\xc4\n\U0002a109", // 𪄉
+ 0x2a10a: "\xc4\n\U0002a10a", // 𪄊
+ 0x2a10b: "\xc4\n\U0002a10b", // 𪄋
+ 0x2a10c: "\xc4\n\U0002a10c", // 𪄌
+ 0x2a10d: "\xc4\n\U0002a10d", // 𪄍
+ 0x2a10e: "\xc4\n\U0002a10e", // 𪄎
+ 0x2a10f: "\xc4\n\U0002a10f", // 𪄏
+ 0x2a110: "\xc4\n\U0002a110", // 𪄐
+ 0x2a111: "\xc4\n\U0002a111", // 𪄑
+ 0x2a112: "\xc4\n\U0002a112", // 𪄒
+ 0x2a113: "\xc4\n\U0002a113", // 𪄓
+ 0x2a114: "\xc4\n\U0002a114", // 𪄔
+ 0x2a115: "\xc4\n\U0002a115", // 𪄕
+ 0x2a116: "\xc4\n\U0002a116", // 𪄖
+ 0x2a117: "\xc4\n\U0002a117", // 𪄗
+ 0x2a118: "\xc4\n\U0002a118", // 𪄘
+ 0x2a119: "\xc4\n\U0002a119", // 𪄙
+ 0x2a11a: "\xc4\n\U0002a11a", // 𪄚
+ 0x2a11b: "\xc4\n\U0002a11b", // 𪄛
+ 0x2a11c: "\xc4\n\U0002a11c", // 𪄜
+ 0x2a11d: "\xc4\n\U0002a11d", // 𪄝
+ 0x2a11e: "\xc4\n\U0002a11e", // 𪄞
+ 0x2a11f: "\xc4\n\U0002a11f", // 𪄟
+ 0x2a120: "\xc4\n\U0002a120", // 𪄠
+ 0x2a121: "\xc4\n\U0002a121", // 𪄡
+ 0x2a122: "\xc4\n\U0002a122", // 𪄢
+ 0x2a123: "\xc4\n\U0002a123", // 𪄣
+ 0x2a124: "\xc4\n\U0002a124", // 𪄤
+ 0x2a125: "\xc4\n\U0002a125", // 𪄥
+ 0x2a126: "\xc4\n\U0002a126", // 𪄦
+ 0x2a127: "\xc4\n\U0002a127", // 𪄧
+ 0x2a128: "\xc4\n\U0002a128", // 𪄨
+ 0x2a129: "\xc4\n\U0002a129", // 𪄩
+ 0x2a12a: "\xc4\n\U0002a12a", // 𪄪
+ 0x2a12b: "\xc4\n\U0002a12b", // 𪄫
+ 0x2a12c: "\xc4\n\U0002a12c", // 𪄬
+ 0x2a12d: "\xc4\v\U0002a12d", // 𪄭
+ 0x2a12e: "\xc4\v\U0002a12e", // 𪄮
+ 0x2a12f: "\xc4\v\U0002a12f", // 𪄯
+ 0x2a130: "\xc4\v\U0002a130", // 𪄰
+ 0x2a131: "\xc4\v\U0002a131", // 𪄱
+ 0x2a132: "\xc4\v\U0002a132", // 𪄲
+ 0x2a133: "\xc4\v\U0002a133", // 𪄳
+ 0x2a134: "\xc4\v\U0002a134", // 𪄴
+ 0x2a135: "\xc4\v\U0002a135", // 𪄵
+ 0x2a136: "\xc4\v\U0002a136", // 𪄶
+ 0x2a137: "\xc4\v\U0002a137", // 𪄷
+ 0x2a138: "\xc4\v\U0002a138", // 𪄸
+ 0x2a139: "\xc4\v\U0002a139", // 𪄹
+ 0x2a13a: "\xc4\v\U0002a13a", // 𪄺
+ 0x2a13b: "\xc4\v\U0002a13b", // 𪄻
+ 0x2a13c: "\xc4\v\U0002a13c", // 𪄼
+ 0x2a13d: "\xc4\v\U0002a13d", // 𪄽
+ 0x2a13e: "\xc4\v\U0002a13e", // 𪄾
+ 0x2a13f: "\xc4\v\U0002a13f", // 𪄿
+ 0x2a140: "\xc4\v\U0002a140", // 𪅀
+ 0x2a141: "\xc4\v\U0002a141", // 𪅁
+ 0x2a142: "\xc4\v\U0002a142", // 𪅂
+ 0x2a143: "\xc4\v\U0002a143", // 𪅃
+ 0x2a144: "\xc4\v\U0002a144", // 𪅄
+ 0x2a145: "\xc4\v\U0002a145", // 𪅅
+ 0x2a146: "\xc4\v\U0002a146", // 𪅆
+ 0x2a147: "\xc4\v\U0002a147", // 𪅇
+ 0x2a148: "\xc4\v\U0002a148", // 𪅈
+ 0x2a149: "\xc4\v\U0002a149", // 𪅉
+ 0x2a14a: "\xc4\v\U0002a14a", // 𪅊
+ 0x2a14b: "\xc4\v\U0002a14b", // 𪅋
+ 0x2a14c: "\xc4\v\U0002a14c", // 𪅌
+ 0x2a14d: "\xc4\v\U0002a14d", // 𪅍
+ 0x2a14e: "\xc4\v\U0002a14e", // 𪅎
+ 0x2a14f: "\xc4\v\U0002a14f", // 𪅏
+ 0x2a150: "\xc4\v\U0002a150", // 𪅐
+ 0x2a151: "\xc4\v\U0002a151", // 𪅑
+ 0x2a152: "\xc4\v\U0002a152", // 𪅒
+ 0x2a153: "\xc4\v\U0002a153", // 𪅓
+ 0x2a154: "\xc4\v\U0002a154", // 𪅔
+ 0x2a155: "\xc4\v\U0002a155", // 𪅕
+ 0x2a156: "\xc4\v\U0002a156", // 𪅖
+ 0x2a157: "\xc4\v\U0002a157", // 𪅗
+ 0x2a158: "\xc4\v\U0002a158", // 𪅘
+ 0x2a159: "\xc4\v\U0002a159", // 𪅙
+ 0x2a15a: "\xc4\v\U0002a15a", // 𪅚
+ 0x2a15b: "\xc4\v\U0002a15b", // 𪅛
+ 0x2a15c: "\xc4\v\U0002a15c", // 𪅜
+ 0x2a15d: "\xc4\v\U0002a15d", // 𪅝
+ 0x2a15e: "\xc4\v\U0002a15e", // 𪅞
+ 0x2a15f: "\xc4\v\U0002a15f", // 𪅟
+ 0x2a160: "\xc4\v\U0002a160", // 𪅠
+ 0x2a161: "\xc4\v\U0002a161", // 𪅡
+ 0x2a162: "\xc4\v\U0002a162", // 𪅢
+ 0x2a163: "\xc4\v\U0002a163", // 𪅣
+ 0x2a164: "\xc4\v\U0002a164", // 𪅤
+ 0x2a165: "\xc4\v\U0002a165", // 𪅥
+ 0x2a166: "\xc4\v\U0002a166", // 𪅦
+ 0x2a167: "\xc4\v\U0002a167", // 𪅧
+ 0x2a168: "\xc4\v\U0002a168", // 𪅨
+ 0x2a169: "\xc4\v\U0002a169", // 𪅩
+ 0x2a16a: "\xc4\v\U0002a16a", // 𪅪
+ 0x2a16b: "\xc4\v\U0002a16b", // 𪅫
+ 0x2a16c: "\xc4\v\U0002a16c", // 𪅬
+ 0x2a16d: "\xc4\v\U0002a16d", // 𪅭
+ 0x2a16e: "\xc4\v\U0002a16e", // 𪅮
+ 0x2a16f: "\xc4\f\U0002a16f", // 𪅯
+ 0x2a170: "\xc4\f\U0002a170", // 𪅰
+ 0x2a171: "\xc4\f\U0002a171", // 𪅱
+ 0x2a172: "\xc4\f\U0002a172", // 𪅲
+ 0x2a173: "\xc4\f\U0002a173", // 𪅳
+ 0x2a174: "\xc4\f\U0002a174", // 𪅴
+ 0x2a175: "\xc4\f\U0002a175", // 𪅵
+ 0x2a176: "\xc4\f\U0002a176", // 𪅶
+ 0x2a177: "\xc4\f\U0002a177", // 𪅷
+ 0x2a178: "\xc4\f\U0002a178", // 𪅸
+ 0x2a179: "\xc4\f\U0002a179", // 𪅹
+ 0x2a17a: "\xc4\f\U0002a17a", // 𪅺
+ 0x2a17b: "\xc4\f\U0002a17b", // 𪅻
+ 0x2a17c: "\xc4\f\U0002a17c", // 𪅼
+ 0x2a17d: "\xc4\f\U0002a17d", // 𪅽
+ 0x2a17e: "\xc4\f\U0002a17e", // 𪅾
+ 0x2a17f: "\xc4\f\U0002a17f", // 𪅿
+ 0x2a180: "\xc4\f\U0002a180", // 𪆀
+ 0x2a181: "\xc4\f\U0002a181", // 𪆁
+ 0x2a182: "\xc4\f\U0002a182", // 𪆂
+ 0x2a183: "\xc4\f\U0002a183", // 𪆃
+ 0x2a184: "\xc4\f\U0002a184", // 𪆄
+ 0x2a185: "\xc4\f\U0002a185", // 𪆅
+ 0x2a186: "\xc4\f\U0002a186", // 𪆆
+ 0x2a187: "\xc4\f\U0002a187", // 𪆇
+ 0x2a188: "\xc4\f\U0002a188", // 𪆈
+ 0x2a189: "\xc4\f\U0002a189", // 𪆉
+ 0x2a18a: "\xc4\f\U0002a18a", // 𪆊
+ 0x2a18b: "\xc4\f\U0002a18b", // 𪆋
+ 0x2a18c: "\xc4\f\U0002a18c", // 𪆌
+ 0x2a18d: "\xc4\f\U0002a18d", // 𪆍
+ 0x2a18e: "\xc4\f\U0002a18e", // 𪆎
+ 0x2a18f: "\xc4\f\U0002a18f", // 𪆏
+ 0x2a190: "\xc4\f\U0002a190", // 𪆐
+ 0x2a191: "\xc4\f\U0002a191", // 𪆑
+ 0x2a192: "\xc4\f\U0002a192", // 𪆒
+ 0x2a193: "\xc4\f\U0002a193", // 𪆓
+ 0x2a194: "\xc4\f\U0002a194", // 𪆔
+ 0x2a195: "\xc4\f\U0002a195", // 𪆕
+ 0x2a196: "\xc4\f\U0002a196", // 𪆖
+ 0x2a197: "\xc4\f\U0002a197", // 𪆗
+ 0x2a198: "\xc4\f\U0002a198", // 𪆘
+ 0x2a199: "\xc4\f\U0002a199", // 𪆙
+ 0x2a19a: "\xc4\f\U0002a19a", // 𪆚
+ 0x2a19b: "\xc4\f\U0002a19b", // 𪆛
+ 0x2a19c: "\xc4\f\U0002a19c", // 𪆜
+ 0x2a19d: "\xc4\f\U0002a19d", // 𪆝
+ 0x2a19e: "\xc4\f\U0002a19e", // 𪆞
+ 0x2a19f: "\xc4\f\U0002a19f", // 𪆟
+ 0x2a1a0: "\xc4\f\U0002a1a0", // 𪆠
+ 0x2a1a1: "\xc4\f\U0002a1a1", // 𪆡
+ 0x2a1a2: "\xc4\f\U0002a1a2", // 𪆢
+ 0x2a1a3: "\xc4\f\U0002a1a3", // 𪆣
+ 0x2a1a4: "\xc4\f\U0002a1a4", // 𪆤
+ 0x2a1a5: "\xc4\f\U0002a1a5", // 𪆥
+ 0x2a1a6: "\xc4\f\U0002a1a6", // 𪆦
+ 0x2a1a7: "\xc4\f\U0002a1a7", // 𪆧
+ 0x2a1a8: "\xc4\f\U0002a1a8", // 𪆨
+ 0x2a1a9: "\xc4\f\U0002a1a9", // 𪆩
+ 0x2a1aa: "\xc4\f\U0002a1aa", // 𪆪
+ 0x2a1ab: "\xc4\f\U0002a1ab", // 𪆫
+ 0x2a1ac: "\xc4\r\U0002a1ac", // 𪆬
+ 0x2a1ad: "\xc4\f\U0002a1ad", // 𪆭
+ 0x2a1ae: "\xc4\r\U0002a1ae", // 𪆮
+ 0x2a1af: "\xc4\r\U0002a1af", // 𪆯
+ 0x2a1b0: "\xc4\r\U0002a1b0", // 𪆰
+ 0x2a1b1: "\xc4\r\U0002a1b1", // 𪆱
+ 0x2a1b2: "\xc4\r\U0002a1b2", // 𪆲
+ 0x2a1b3: "\xc4\r\U0002a1b3", // 𪆳
+ 0x2a1b4: "\xc4\r\U0002a1b4", // 𪆴
+ 0x2a1b5: "\xc4\r\U0002a1b5", // 𪆵
+ 0x2a1b6: "\xc4\r\U0002a1b6", // 𪆶
+ 0x2a1b7: "\xc4\r\U0002a1b7", // 𪆷
+ 0x2a1b8: "\xc4\r\U0002a1b8", // 𪆸
+ 0x2a1b9: "\xc4\r\U0002a1b9", // 𪆹
+ 0x2a1ba: "\xc4\r\U0002a1ba", // 𪆺
+ 0x2a1bb: "\xc4\r\U0002a1bb", // 𪆻
+ 0x2a1bc: "\xc4\r\U0002a1bc", // 𪆼
+ 0x2a1bd: "\xc4\r\U0002a1bd", // 𪆽
+ 0x2a1be: "\xc4\r\U0002a1be", // 𪆾
+ 0x2a1bf: "\xc4\r\U0002a1bf", // 𪆿
+ 0x2a1c0: "\xc4\r\U0002a1c0", // 𪇀
+ 0x2a1c1: "\xc4\r\U0002a1c1", // 𪇁
+ 0x2a1c2: "\xc4\r\U0002a1c2", // 𪇂
+ 0x2a1c3: "\xc4\r\U0002a1c3", // 𪇃
+ 0x2a1c4: "\xc4\r\U0002a1c4", // 𪇄
+ 0x2a1c5: "\xc4\r\U0002a1c5", // 𪇅
+ 0x2a1c6: "\xc4\r\U0002a1c6", // 𪇆
+ 0x2a1c7: "\xc4\r\U0002a1c7", // 𪇇
+ 0x2a1c8: "\xc4\r\U0002a1c8", // 𪇈
+ 0x2a1c9: "\xc4\r\U0002a1c9", // 𪇉
+ 0x2a1ca: "\xc4\r\U0002a1ca", // 𪇊
+ 0x2a1cb: "\xc4\r\U0002a1cb", // 𪇋
+ 0x2a1cc: "\xc4\r\U0002a1cc", // 𪇌
+ 0x2a1cd: "\xc4\r\U0002a1cd", // 𪇍
+ 0x2a1ce: "\xc4\r\U0002a1ce", // 𪇎
+ 0x2a1cf: "\xc4\r\U0002a1cf", // 𪇏
+ 0x2a1d0: "\xc4\r\U0002a1d0", // 𪇐
+ 0x2a1d1: "\xc4\x0e\U0002a1d1", // 𪇑
+ 0x2a1d2: "\xc4\x0e\U0002a1d2", // 𪇒
+ 0x2a1d3: "\xc4\x0e\U0002a1d3", // 𪇓
+ 0x2a1d4: "\xc4\x0e\U0002a1d4", // 𪇔
+ 0x2a1d5: "\xc4\x0e\U0002a1d5", // 𪇕
+ 0x2a1d6: "\xc4\x0e\U0002a1d6", // 𪇖
+ 0x2a1d7: "\xc4\x0e\U0002a1d7", // 𪇗
+ 0x2a1d8: "\xc4\x0e\U0002a1d8", // 𪇘
+ 0x2a1d9: "\xc4\x0e\U0002a1d9", // 𪇙
+ 0x2a1da: "\xc4\x0e\U0002a1da", // 𪇚
+ 0x2a1db: "\xc4\x0e\U0002a1db", // 𪇛
+ 0x2a1dc: "\xc4\x0e\U0002a1dc", // 𪇜
+ 0x2a1dd: "\xc4\x0e\U0002a1dd", // 𪇝
+ 0x2a1de: "\xcf\f\U0002a1de", // 𪇞
+ 0x2a1df: "\xc4\x0e\U0002a1df", // 𪇟
+ 0x2a1e0: "\xc4\x0e\U0002a1e0", // 𪇠
+ 0x2a1e1: "\xc4\x0e\U0002a1e1", // 𪇡
+ 0x2a1e2: "\xc4\x0e\U0002a1e2", // 𪇢
+ 0x2a1e3: "\xc4\x0e\U0002a1e3", // 𪇣
+ 0x2a1e4: "\xc4\x0e\U0002a1e4", // 𪇤
+ 0x2a1e5: "\xc4\x0e\U0002a1e5", // 𪇥
+ 0x2a1e6: "\xc4\x0e\U0002a1e6", // 𪇦
+ 0x2a1e7: "\xc4\x0e\U0002a1e7", // 𪇧
+ 0x2a1e8: "\xc4\x0e\U0002a1e8", // 𪇨
+ 0x2a1e9: "\xc4\x0e\U0002a1e9", // 𪇩
+ 0x2a1ea: "\xc4\x0e\U0002a1ea", // 𪇪
+ 0x2a1eb: "\xc4\x0e\U0002a1eb", // 𪇫
+ 0x2a1ec: "\xc4\x0e\U0002a1ec", // 𪇬
+ 0x2a1ed: "\xc4\x0f\U0002a1ed", // 𪇭
+ 0x2a1ee: "\xc4\x0f\U0002a1ee", // 𪇮
+ 0x2a1ef: "\xc4\x0f\U0002a1ef", // 𪇯
+ 0x2a1f0: "\xc4\x0f\U0002a1f0", // 𪇰
+ 0x2a1f1: "\xc4\x0f\U0002a1f1", // 𪇱
+ 0x2a1f2: "\xc4\x0f\U0002a1f2", // 𪇲
+ 0x2a1f3: "\xc4\x0f\U0002a1f3", // 𪇳
+ 0x2a1f4: "\xc4\x0f\U0002a1f4", // 𪇴
+ 0x2a1f5: "\xc4\x0f\U0002a1f5", // 𪇵
+ 0x2a1f6: "\xc4\x0f\U0002a1f6", // 𪇶
+ 0x2a1f7: "\xc4\x0f\U0002a1f7", // 𪇷
+ 0x2a1f8: "\xc4\x0f\U0002a1f8", // 𪇸
+ 0x2a1f9: "\xc4\x0f\U0002a1f9", // 𪇹
+ 0x2a1fa: "\xc4\x0f\U0002a1fa", // 𪇺
+ 0x2a1fb: "\xc4\x0f\U0002a1fb", // 𪇻
+ 0x2a1fc: "\xc4\x0f\U0002a1fc", // 𪇼
+ 0x2a1fd: "\xc4\x0f\U0002a1fd", // 𪇽
+ 0x2a1fe: "\xc4\x0f\U0002a1fe", // 𪇾
+ 0x2a1ff: "\xc4\x0f\U0002a1ff", // 𪇿
+ 0x2a200: "\xc4\x0f\U0002a200", // 𪈀
+ 0x2a201: "\xc4\x0f\U0002a201", // 𪈁
+ 0x2a202: "\xc4\x0f\U0002a202", // 𪈂
+ 0x2a203: "\xc4\x10\U0002a203", // 𪈃
+ 0x2a204: "\xc4\x10\U0002a204", // 𪈄
+ 0x2a205: "\xc4\x10\U0002a205", // 𪈅
+ 0x2a206: "\xc4\x10\U0002a206", // 𪈆
+ 0x2a207: "\xc4\x10\U0002a207", // 𪈇
+ 0x2a208: "\xc4\x10\U0002a208", // 𪈈
+ 0x2a209: "\xc4\x10\U0002a209", // 𪈉
+ 0x2a20a: "\xc4\x10\U0002a20a", // 𪈊
+ 0x2a20b: "\xc4\x10\U0002a20b", // 𪈋
+ 0x2a20c: "\xc4\x10\U0002a20c", // 𪈌
+ 0x2a20d: "\xc4\x10\U0002a20d", // 𪈍
+ 0x2a20e: "\xc4\x10\U0002a20e", // 𪈎
+ 0x2a20f: "\xc4\x10\U0002a20f", // 𪈏
+ 0x2a210: "\xc4\x10\U0002a210", // 𪈐
+ 0x2a211: "\xc4\x10\U0002a211", // 𪈑
+ 0x2a212: "\xc4\x10\U0002a212", // 𪈒
+ 0x2a213: "\xc4\x10\U0002a213", // 𪈓
+ 0x2a214: "\xc4\x10\U0002a214", // 𪈔
+ 0x2a215: "\xc4\x10\U0002a215", // 𪈕
+ 0x2a216: "\xc4\x10\U0002a216", // 𪈖
+ 0x2a217: "\xc4\x10\U0002a217", // 𪈗
+ 0x2a218: "\xc4\x11\U0002a218", // 𪈘
+ 0x2a219: "\xc4\x11\U0002a219", // 𪈙
+ 0x2a21a: "\xc4\x11\U0002a21a", // 𪈚
+ 0x2a21b: "\xc4\x11\U0002a21b", // 𪈛
+ 0x2a21c: "\xc4\x11\U0002a21c", // 𪈜
+ 0x2a21d: "\xc4\x11\U0002a21d", // 𪈝
+ 0x2a21e: "\xc4\x11\U0002a21e", // 𪈞
+ 0x2a21f: "\xc4\x11\U0002a21f", // 𪈟
+ 0x2a220: "\xc4\x11\U0002a220", // 𪈠
+ 0x2a221: "\xc4\x11\U0002a221", // 𪈡
+ 0x2a222: "\xc4\x11\U0002a222", // 𪈢
+ 0x2a223: "\xc4\x11\U0002a223", // 𪈣
+ 0x2a224: "\xc4\x11\U0002a224", // 𪈤
+ 0x2a225: "\xc4\x12\U0002a225", // 𪈥
+ 0x2a226: "\xc4\x12\U0002a226", // 𪈦
+ 0x2a227: "\xc4\x12\U0002a227", // 𪈧
+ 0x2a228: "\xc4\x12\U0002a228", // 𪈨
+ 0x2a229: "\xc4\x12\U0002a229", // 𪈩
+ 0x2a22a: "\xc4\x12\U0002a22a", // 𪈪
+ 0x2a22b: "\xc4\x12\U0002a22b", // 𪈫
+ 0x2a22c: "\xc4\x12\U0002a22c", // 𪈬
+ 0x2a22d: "\xc4\x12\U0002a22d", // 𪈭
+ 0x2a22e: "\xc4\x13\U0002a22e", // 𪈮
+ 0x2a22f: "\xc4\x13\U0002a22f", // 𪈯
+ 0x2a230: "\xc4\x13\U0002a230", // 𪈰
+ 0x2a231: "\xc4\x13\U0002a231", // 𪈱
+ 0x2a232: "\xc4\x13\U0002a232", // 𪈲
+ 0x2a233: "\xc4\x13\U0002a233", // 𪈳
+ 0x2a234: "\xc4\x14\U0002a234", // 𪈴
+ 0x2a235: "\xc4\x14\U0002a235", // 𪈵
+ 0x2a236: "\xc4\x14\U0002a236", // 𪈶
+ 0x2a237: "\xc4\x14\U0002a237", // 𪈷
+ 0x2a238: "\xc4\x15\U0002a238", // 𪈸
+ 0x2a239: "\xc4\x15\U0002a239", // 𪈹
+ 0x2a23a: "\xc4\x15\U0002a23a", // 𪈺
+ 0x2a23b: "\xc4\x16\U0002a23b", // 𪈻
+ 0x2a23c: "\xc4\x16\U0002a23c", // 𪈼
+ 0x2a23d: "\xc4\x16\U0002a23d", // 𪈽
+ 0x2a23e: "\xc4\x18\U0002a23e", // 𪈾
+ 0x2a23f: "\xc4\x19\U0002a23f", // 𪈿
+ 0x2a240: "\xc4\x19\U0002a240", // 𪉀
+ 0x2a241: "\xc4\x04\U0002a241", // 𪉁
+ 0x2a242: "\xc4\x04\U0002a242", // 𪉂
+ 0x2a243: "\xc4\x04\U0002a243", // 𪉃
+ 0x2a244: "\xc4\x05\U0002a244", // 𪉄
+ 0x2a245: "\xc4\x06\U0002a245", // 𪉅
+ 0x2a246: "\xc4\x06\U0002a246", // 𪉆
+ 0x2a247: "\xc4\x06\U0002a247", // 𪉇
+ 0x2a248: "\xc4\x06\U0002a248", // 𪉈
+ 0x2a249: "\xc4\x06\U0002a249", // 𪉉
+ 0x2a24a: "\xc4\x06\U0002a24a", // 𪉊
+ 0x2a24b: "\xc4\x06\U0002a24b", // 𪉋
+ 0x2a24c: "\xc4\a\U0002a24c", // 𪉌
+ 0x2a24d: "\xc4\a\U0002a24d", // 𪉍
+ 0x2a24e: "\xc4\b\U0002a24e", // 𪉎
+ 0x2a24f: "\xc4\t\U0002a24f", // 𪉏
+ 0x2a250: "\xc4\t\U0002a250", // 𪉐
+ 0x2a251: "\xc4\n\U0002a251", // 𪉑
+ 0x2a252: "\xc4\n\U0002a252", // 𪉒
+ 0x2a253: "\xc4\n\U0002a253", // 𪉓
+ 0x2a254: "\xc4\n\U0002a254", // 𪉔
+ 0x2a255: "\xc4\x0f\U0002a255", // 𪉕
+ 0x2a256: "\xc5\x03\U0002a256", // 𪉖
+ 0x2a257: "\xc5\x03\U0002a257", // 𪉗
+ 0x2a258: "\xc5\x04\U0002a258", // 𪉘
+ 0x2a259: "\xc5\x04\U0002a259", // 𪉙
+ 0x2a25a: "\xc5\x04\U0002a25a", // 𪉚
+ 0x2a25b: "\xc5\x04\U0002a25b", // 𪉛
+ 0x2a25c: "\xc5\x05\U0002a25c", // 𪉜
+ 0x2a25d: "\xc5\x05\U0002a25d", // 𪉝
+ 0x2a25e: "\xc5\x05\U0002a25e", // 𪉞
+ 0x2a25f: "\xc5\x05\U0002a25f", // 𪉟
+ 0x2a260: "\xc5\x05\U0002a260", // 𪉠
+ 0x2a261: "\xc5\x05\U0002a261", // 𪉡
+ 0x2a262: "\xc5\x06\U0002a262", // 𪉢
+ 0x2a263: "\xc5\a\U0002a263", // 𪉣
+ 0x2a264: "\xc5\a\U0002a264", // 𪉤
+ 0x2a265: "\xc5\a\U0002a265", // 𪉥
+ 0x2a266: "\xc5\b\U0002a266", // 𪉦
+ 0x2a267: "\xc5\b\U0002a267", // 𪉧
+ 0x2a268: "\xc5\b\U0002a268", // 𪉨
+ 0x2a269: "\xc5\b\U0002a269", // 𪉩
+ 0x2a26a: "\xc5\b\U0002a26a", // 𪉪
+ 0x2a26b: "\xc5\b\U0002a26b", // 𪉫
+ 0x2a26c: "\xc5\b\U0002a26c", // 𪉬
+ 0x2a26d: "\xc5\t\U0002a26d", // 𪉭
+ 0x2a26e: "\xc5\t\U0002a26e", // 𪉮
+ 0x2a26f: "\xc5\t\U0002a26f", // 𪉯
+ 0x2a270: "\xc5\t\U0002a270", // 𪉰
+ 0x2a271: "\xc5\t\U0002a271", // 𪉱
+ 0x2a272: "\xc5\t\U0002a272", // 𪉲
+ 0x2a273: "\xc5\t\U0002a273", // 𪉳
+ 0x2a274: "\xc5\t\U0002a274", // 𪉴
+ 0x2a275: "\xc5\n\U0002a275", // 𪉵
+ 0x2a276: "\xc5\n\U0002a276", // 𪉶
+ 0x2a277: "\xc5\n\U0002a277", // 𪉷
+ 0x2a278: "\xc5\n\U0002a278", // 𪉸
+ 0x2a279: "\xc5\n\U0002a279", // 𪉹
+ 0x2a27a: "\xc5\v\U0002a27a", // 𪉺
+ 0x2a27b: "\xc5\v\U0002a27b", // 𪉻
+ 0x2a27c: "\xc5\v\U0002a27c", // 𪉼
+ 0x2a27d: "\xc5\v\U0002a27d", // 𪉽
+ 0x2a27e: "\xc5\v\U0002a27e", // 𪉾
+ 0x2a27f: "\xc5\f\U0002a27f", // 𪉿
+ 0x2a280: "\xc5\f\U0002a280", // 𪊀
+ 0x2a281: "\xc5\f\U0002a281", // 𪊁
+ 0x2a282: "\xc5\f\U0002a282", // 𪊂
+ 0x2a283: "\xc5\r\U0002a283", // 𪊃
+ 0x2a284: "\xc5\r\U0002a284", // 𪊄
+ 0x2a285: "\xc5\r\U0002a285", // 𪊅
+ 0x2a286: "\xc5\x0e\U0002a286", // 𪊆
+ 0x2a287: "\xc5\x0e\U0002a287", // 𪊇
+ 0x2a288: "\xc5\x0f\U0002a288", // 𪊈
+ 0x2a289: "\xc5\x10\U0002a289", // 𪊉
+ 0x2a28a: "\xc5\x11\U0002a28a", // 𪊊
+ 0x2a28b: "\xc6\x02\U0002a28b", // 𪊋
+ 0x2a28c: "\xc6\x02\U0002a28c", // 𪊌
+ 0x2a28d: "\xc6\x03\U0002a28d", // 𪊍
+ 0x2a28e: "\xc6\x03\U0002a28e", // 𪊎
+ 0x2a28f: "\xc6\x04\U0002a28f", // 𪊏
+ 0x2a290: "\xc6\x04\U0002a290", // 𪊐
+ 0x2a291: "\xc6\x04\U0002a291", // 𪊑
+ 0x2a292: "\xc6\x04\U0002a292", // 𪊒
+ 0x2a293: "\xc6\x04\U0002a293", // 𪊓
+ 0x2a294: "\xc6\x04\U0002a294", // 𪊔
+ 0x2a295: "\xc6\x04\U0002a295", // 𪊕
+ 0x2a296: "\xc6\x04\U0002a296", // 𪊖
+ 0x2a297: "\xc6\x04\U0002a297", // 𪊗
+ 0x2a298: "\xc6\x04\U0002a298", // 𪊘
+ 0x2a299: "\xc6\x04\U0002a299", // 𪊙
+ 0x2a29a: "\xc6\x04\U0002a29a", // 𪊚
+ 0x2a29b: "\xc6\x05\U0002a29b", // 𪊛
+ 0x2a29c: "\xc6\x05\U0002a29c", // 𪊜
+ 0x2a29d: "\xc6\x05\U0002a29d", // 𪊝
+ 0x2a29e: "\xc6\x05\U0002a29e", // 𪊞
+ 0x2a29f: "\xc6\x05\U0002a29f", // 𪊟
+ 0x2a2a0: "\xc6\x05\U0002a2a0", // 𪊠
+ 0x2a2a1: "\xc6\x05\U0002a2a1", // 𪊡
+ 0x2a2a2: "\xc6\x05\U0002a2a2", // 𪊢
+ 0x2a2a3: "\xc6\x05\U0002a2a3", // 𪊣
+ 0x2a2a4: "\xc6\x05\U0002a2a4", // 𪊤
+ 0x2a2a5: "\xc6\x06\U0002a2a5", // 𪊥
+ 0x2a2a6: "\xc6\x06\U0002a2a6", // 𪊦
+ 0x2a2a7: "\xc6\x06\U0002a2a7", // 𪊧
+ 0x2a2a8: "\xc6\x06\U0002a2a8", // 𪊨
+ 0x2a2a9: "\xc6\x06\U0002a2a9", // 𪊩
+ 0x2a2aa: "\xc6\x06\U0002a2aa", // 𪊪
+ 0x2a2ab: "\xc6\x06\U0002a2ab", // 𪊫
+ 0x2a2ac: "\xc6\x06\U0002a2ac", // 𪊬
+ 0x2a2ad: "\xc6\x06\U0002a2ad", // 𪊭
+ 0x2a2ae: "\xc6\x06\U0002a2ae", // 𪊮
+ 0x2a2af: "\xc6\x06\U0002a2af", // 𪊯
+ 0x2a2b0: "\xc6\x06\U0002a2b0", // 𪊰
+ 0x2a2b1: "\xc6\x06\U0002a2b1", // 𪊱
+ 0x2a2b2: "\xc6\x06\U0002a2b2", // 𪊲
+ 0x2a2b3: "\xc6\x06\U0002a2b3", // 𪊳
+ 0x2a2b4: "\xc6\a\U0002a2b4", // 𪊴
+ 0x2a2b5: "\xc6\a\U0002a2b5", // 𪊵
+ 0x2a2b6: "\xc6\a\U0002a2b6", // 𪊶
+ 0x2a2b7: "\xc6\a\U0002a2b7", // 𪊷
+ 0x2a2b8: "\xc6\a\U0002a2b8", // 𪊸
+ 0x2a2b9: "\xc6\a\U0002a2b9", // 𪊹
+ 0x2a2ba: "\xc6\a\U0002a2ba", // 𪊺
+ 0x2a2bb: "\xc6\a\U0002a2bb", // 𪊻
+ 0x2a2bc: "\xc6\a\U0002a2bc", // 𪊼
+ 0x2a2bd: "\xc6\a\U0002a2bd", // 𪊽
+ 0x2a2be: "\xc6\a\U0002a2be", // 𪊾
+ 0x2a2bf: "\xc6\a\U0002a2bf", // 𪊿
+ 0x2a2c0: "\xc6\a\U0002a2c0", // 𪋀
+ 0x2a2c1: "\xc6\a\U0002a2c1", // 𪋁
+ 0x2a2c2: "\xc6\a\U0002a2c2", // 𪋂
+ 0x2a2c3: "\xc6\a\U0002a2c3", // 𪋃
+ 0x2a2c4: "\xc6\b\U0002a2c4", // 𪋄
+ 0x2a2c5: "\xc6\b\U0002a2c5", // 𪋅
+ 0x2a2c6: "\xc6\b\U0002a2c6", // 𪋆
+ 0x2a2c7: "\xc6\b\U0002a2c7", // 𪋇
+ 0x2a2c8: "\xc6\b\U0002a2c8", // 𪋈
+ 0x2a2c9: "\xc6\b\U0002a2c9", // 𪋉
+ 0x2a2ca: "\xc6\b\U0002a2ca", // 𪋊
+ 0x2a2cb: "\xc6\b\U0002a2cb", // 𪋋
+ 0x2a2cc: "\xc6\b\U0002a2cc", // 𪋌
+ 0x2a2cd: "\xc6\b\U0002a2cd", // 𪋍
+ 0x2a2ce: "\xc6\t\U0002a2ce", // 𪋎
+ 0x2a2cf: "\xc6\t\U0002a2cf", // 𪋏
+ 0x2a2d0: "\xc6\t\U0002a2d0", // 𪋐
+ 0x2a2d1: "\xc6\t\U0002a2d1", // 𪋑
+ 0x2a2d2: "\xc6\t\U0002a2d2", // 𪋒
+ 0x2a2d3: "\xc6\t\U0002a2d3", // 𪋓
+ 0x2a2d4: "\xc6\t\U0002a2d4", // 𪋔
+ 0x2a2d5: "\xc6\t\U0002a2d5", // 𪋕
+ 0x2a2d6: "\xc6\t\U0002a2d6", // 𪋖
+ 0x2a2d7: "\xc6\n\U0002a2d7", // 𪋗
+ 0x2a2d8: "\xc6\n\U0002a2d8", // 𪋘
+ 0x2a2d9: "\xc6\n\U0002a2d9", // 𪋙
+ 0x2a2da: "\xc6\n\U0002a2da", // 𪋚
+ 0x2a2db: "\xc6\n\U0002a2db", // 𪋛
+ 0x2a2dc: "\xc6\v\U0002a2dc", // 𪋜
+ 0x2a2dd: "\xc6\v\U0002a2dd", // 𪋝
+ 0x2a2de: "\xc6\v\U0002a2de", // 𪋞
+ 0x2a2df: "\xc6\v\U0002a2df", // 𪋟
+ 0x2a2e0: "\xc6\v\U0002a2e0", // 𪋠
+ 0x2a2e1: "\xc6\f\U0002a2e1", // 𪋡
+ 0x2a2e2: "\xc6\f\U0002a2e2", // 𪋢
+ 0x2a2e3: "\xc6\f\U0002a2e3", // 𪋣
+ 0x2a2e4: "\xc6\f\U0002a2e4", // 𪋤
+ 0x2a2e5: "\xc6\f\U0002a2e5", // 𪋥
+ 0x2a2e6: "\xc6\f\U0002a2e6", // 𪋦
+ 0x2a2e7: "\xc6\f\U0002a2e7", // 𪋧
+ 0x2a2e8: "\xc6\f\U0002a2e8", // 𪋨
+ 0x2a2e9: "\xc6\f\U0002a2e9", // 𪋩
+ 0x2a2ea: "\xc6\r\U0002a2ea", // 𪋪
+ 0x2a2eb: "\xc6\r\U0002a2eb", // 𪋫
+ 0x2a2ec: "\xc6\r\U0002a2ec", // 𪋬
+ 0x2a2ed: "\xc6\r\U0002a2ed", // 𪋭
+ 0x2a2ee: "\xc6\x0e\U0002a2ee", // 𪋮
+ 0x2a2ef: "\xc6\x0e\U0002a2ef", // 𪋯
+ 0x2a2f0: "\xc6\x0e\U0002a2f0", // 𪋰
+ 0x2a2f1: "\xc6\x0e\U0002a2f1", // 𪋱
+ 0x2a2f2: "\xc6\x0e\U0002a2f2", // 𪋲
+ 0x2a2f3: "\xc6\x0e\U0002a2f3", // 𪋳
+ 0x2a2f4: "\xc6\x0e\U0002a2f4", // 𪋴
+ 0x2a2f5: "\xc6\x10\U0002a2f5", // 𪋵
+ 0x2a2f6: "\xc6\x11\U0002a2f6", // 𪋶
+ 0x2a2f7: "\xc6\x11\U0002a2f7", // 𪋷
+ 0x2a2f8: "\xc6\x12\U0002a2f8", // 𪋸
+ 0x2a2f9: "\xc6\x14\U0002a2f9", // 𪋹
+ 0x2a2fa: "\xc6\x18\U0002a2fa", // 𪋺
+ 0x2a2fb: "\xc6\x19\U0002a2fb", // 𪋻
+ 0x2a2fc: "\xc7\x02\U0002a2fc", // 𪋼
+ 0x2a2fd: "\xc7\x02\U0002a2fd", // 𪋽
+ 0x2a2fe: "\xc7\x02\U0002a2fe", // 𪋾
+ 0x2a2ff: "\xc7\x02\U0002a2ff", // 𪋿
+ 0x2a300: "\xc7\x02\U0002a300", // 𪌀
+ 0x2a301: "\xc7\x03\U0002a301", // 𪌁
+ 0x2a302: "\xc7\x03\U0002a302", // 𪌂
+ 0x2a303: "\xc7\x03\U0002a303", // 𪌃
+ 0x2a304: "\xc7\x03\U0002a304", // 𪌄
+ 0x2a305: "\xc7\x04\U0002a305", // 𪌅
+ 0x2a306: "\xc7\x04\U0002a306", // 𪌆
+ 0x2a307: "\xc7\x04\U0002a307", // 𪌇
+ 0x2a308: "\xc7\x04\U0002a308", // 𪌈
+ 0x2a309: "\xc7\x04\U0002a309", // 𪌉
+ 0x2a30a: "\xc7\x04\U0002a30a", // 𪌊
+ 0x2a30b: "\xc7\x04\U0002a30b", // 𪌋
+ 0x2a30c: "\xc7\x04\U0002a30c", // 𪌌
+ 0x2a30d: "\xc7\x04\U0002a30d", // 𪌍
+ 0x2a30e: "\xc7\x04\U0002a30e", // 𪌎
+ 0x2a30f: "\xc7\x04\U0002a30f", // 𪌏
+ 0x2a310: "\xc7\x04\U0002a310", // 𪌐
+ 0x2a311: "\xc7\x04\U0002a311", // 𪌑
+ 0x2a312: "\xc7\x04\U0002a312", // 𪌒
+ 0x2a313: "\xc7\x04\U0002a313", // 𪌓
+ 0x2a314: "\xc7\x05\U0002a314", // 𪌔
+ 0x2a315: "\xc7\x05\U0002a315", // 𪌕
+ 0x2a316: "\xc7\x05\U0002a316", // 𪌖
+ 0x2a317: "\xc7\x05\U0002a317", // 𪌗
+ 0x2a318: "\xc7\x05\U0002a318", // 𪌘
+ 0x2a319: "\xc7\x05\U0002a319", // 𪌙
+ 0x2a31a: "\xc7\x05\U0002a31a", // 𪌚
+ 0x2a31b: "\"\t\U0002a31b", // 𪌛
+ 0x2a31c: "\xc7\x05\U0002a31c", // 𪌜
+ 0x2a31d: "\xc7\x05\U0002a31d", // 𪌝
+ 0x2a31e: "\xc7\x05\U0002a31e", // 𪌞
+ 0x2a31f: "\xc7\x05\U0002a31f", // 𪌟
+ 0x2a320: "\xc7\x05\U0002a320", // 𪌠
+ 0x2a321: "\xc7\x05\U0002a321", // 𪌡
+ 0x2a322: "\xc7\x06\U0002a322", // 𪌢
+ 0x2a323: "\xc7\x06\U0002a323", // 𪌣
+ 0x2a324: "\xc7\x06\U0002a324", // 𪌤
+ 0x2a325: "\xc7\x06\U0002a325", // 𪌥
+ 0x2a326: "\xc7\x06\U0002a326", // 𪌦
+ 0x2a327: "\xc7\x06\U0002a327", // 𪌧
+ 0x2a328: "\xc7\x06\U0002a328", // 𪌨
+ 0x2a329: "\xc7\x06\U0002a329", // 𪌩
+ 0x2a32a: "\xc7\x06\U0002a32a", // 𪌪
+ 0x2a32b: "\xc7\x06\U0002a32b", // 𪌫
+ 0x2a32c: "\xc7\x06\U0002a32c", // 𪌬
+ 0x2a32d: "\xc7\a\U0002a32d", // 𪌭
+ 0x2a32e: "\xc7\a\U0002a32e", // 𪌮
+ 0x2a32f: "\xc7\a\U0002a32f", // 𪌯
+ 0x2a330: "\xc7\a\U0002a330", // 𪌰
+ 0x2a331: "\xc7\a\U0002a331", // 𪌱
+ 0x2a332: "\xc7\a\U0002a332", // 𪌲
+ 0x2a333: "\xc7\a\U0002a333", // 𪌳
+ 0x2a334: "\xc7\a\U0002a334", // 𪌴
+ 0x2a335: "\xc7\a\U0002a335", // 𪌵
+ 0x2a336: "\xc7\a\U0002a336", // 𪌶
+ 0x2a337: "\xc7\a\U0002a337", // 𪌷
+ 0x2a338: "\xc7\a\U0002a338", // 𪌸
+ 0x2a339: "\xc7\a\U0002a339", // 𪌹
+ 0x2a33a: "\xc7\a\U0002a33a", // 𪌺
+ 0x2a33b: "\xc7\a\U0002a33b", // 𪌻
+ 0x2a33c: "\xc7\b\U0002a33c", // 𪌼
+ 0x2a33d: "\xc7\b\U0002a33d", // 𪌽
+ 0x2a33e: "\xc7\b\U0002a33e", // 𪌾
+ 0x2a33f: "\xc7\b\U0002a33f", // 𪌿
+ 0x2a340: "\xc7\b\U0002a340", // 𪍀
+ 0x2a341: "\xc7\b\U0002a341", // 𪍁
+ 0x2a342: "\xc7\b\U0002a342", // 𪍂
+ 0x2a343: "\xc7\b\U0002a343", // 𪍃
+ 0x2a344: "\xc7\b\U0002a344", // 𪍄
+ 0x2a345: "\xc7\b\U0002a345", // 𪍅
+ 0x2a346: "\xc7\b\U0002a346", // 𪍆
+ 0x2a347: "\xc7\b\U0002a347", // 𪍇
+ 0x2a348: "\xc7\b\U0002a348", // 𪍈
+ 0x2a349: "\xc7\b\U0002a349", // 𪍉
+ 0x2a34a: "\xc7\b\U0002a34a", // 𪍊
+ 0x2a34b: "\xc7\b\U0002a34b", // 𪍋
+ 0x2a34c: "\xc7\t\U0002a34c", // 𪍌
+ 0x2a34d: "\xc7\t\U0002a34d", // 𪍍
+ 0x2a34e: "\xc7\t\U0002a34e", // 𪍎
+ 0x2a34f: "\xc7\t\U0002a34f", // 𪍏
+ 0x2a350: "\xc7\t\U0002a350", // 𪍐
+ 0x2a351: "\xc7\t\U0002a351", // 𪍑
+ 0x2a352: "\xc7\t\U0002a352", // 𪍒
+ 0x2a353: "\xc7\t\U0002a353", // 𪍓
+ 0x2a354: "\xc7\t\U0002a354", // 𪍔
+ 0x2a355: "\xc7\t\U0002a355", // 𪍕
+ 0x2a356: "\xc7\t\U0002a356", // 𪍖
+ 0x2a357: "\xc7\t\U0002a357", // 𪍗
+ 0x2a358: "\xc7\t\U0002a358", // 𪍘
+ 0x2a359: "\xc7\t\U0002a359", // 𪍙
+ 0x2a35a: "\xc7\t\U0002a35a", // 𪍚
+ 0x2a35b: "\xc7\n\U0002a35b", // 𪍛
+ 0x2a35c: "\xc7\n\U0002a35c", // 𪍜
+ 0x2a35d: "\xc7\n\U0002a35d", // 𪍝
+ 0x2a35e: "\xc7\n\U0002a35e", // 𪍞
+ 0x2a35f: "\xc7\n\U0002a35f", // 𪍟
+ 0x2a360: "\xc7\n\U0002a360", // 𪍠
+ 0x2a361: "\xc7\n\U0002a361", // 𪍡
+ 0x2a362: "\xc7\n\U0002a362", // 𪍢
+ 0x2a363: "\xc7\v\U0002a363", // 𪍣
+ 0x2a364: "\xc7\v\U0002a364", // 𪍤
+ 0x2a365: "\xc7\v\U0002a365", // 𪍥
+ 0x2a366: "\xc7\v\U0002a366", // 𪍦
+ 0x2a367: "\xc7\v\U0002a367", // 𪍧
+ 0x2a368: "\xc7\v\U0002a368", // 𪍨
+ 0x2a369: "\xc7\v\U0002a369", // 𪍩
+ 0x2a36a: "\xc7\v\U0002a36a", // 𪍪
+ 0x2a36b: "\xc7\v\U0002a36b", // 𪍫
+ 0x2a36c: "\xc7\v\U0002a36c", // 𪍬
+ 0x2a36d: "\xc7\v\U0002a36d", // 𪍭
+ 0x2a36e: "\xc7\v\U0002a36e", // 𪍮
+ 0x2a36f: "\xc7\v\U0002a36f", // 𪍯
+ 0x2a370: "\xc7\v\U0002a370", // 𪍰
+ 0x2a371: "\xc7\v\U0002a371", // 𪍱
+ 0x2a372: "\xc7\f\U0002a372", // 𪍲
+ 0x2a373: "\xc7\f\U0002a373", // 𪍳
+ 0x2a374: "\xc7\f\U0002a374", // 𪍴
+ 0x2a375: "\xc7\f\U0002a375", // 𪍵
+ 0x2a376: "\xc7\f\U0002a376", // 𪍶
+ 0x2a377: "\xc7\f\U0002a377", // 𪍷
+ 0x2a378: "\xc7\r\U0002a378", // 𪍸
+ 0x2a379: "\xc7\r\U0002a379", // 𪍹
+ 0x2a37a: "\xc7\r\U0002a37a", // 𪍺
+ 0x2a37b: "\xc7\r\U0002a37b", // 𪍻
+ 0x2a37c: "\xc7\r\U0002a37c", // 𪍼
+ 0x2a37d: "\xc7\r\U0002a37d", // 𪍽
+ 0x2a37e: "\xc7\r\U0002a37e", // 𪍾
+ 0x2a37f: "\xc7\x0f\U0002a37f", // 𪍿
+ 0x2a380: "\xc7\x0f\U0002a380", // 𪎀
+ 0x2a381: "\xc7\x10\U0002a381", // 𪎁
+ 0x2a382: "\xc7\x10\U0002a382", // 𪎂
+ 0x2a383: "\xc7\x11\U0002a383", // 𪎃
+ 0x2a384: "\xc7\x11\U0002a384", // 𪎄
+ 0x2a385: "\xc7\x11\U0002a385", // 𪎅
+ 0x2a386: "\xc7\x13\U0002a386", // 𪎆
+ 0x2a387: "\xc7\x14\U0002a387", // 𪎇
+ 0x2a388: "\xc7\x03\U0002a388", // 𪎈
+ 0x2a389: "\xc7\x04\U0002a389", // 𪎉
+ 0x2a38a: "\xc7\x04\U0002a38a", // 𪎊
+ 0x2a38b: "\xc7\x05\U0002a38b", // 𪎋
+ 0x2a38c: "\xc7\a\U0002a38c", // 𪎌
+ 0x2a38d: "\xc7\x02\U0002a38d", // 𪎍
+ 0x2a38e: "\xc7\b\U0002a38e", // 𪎎
+ 0x2a38f: "\xc7\b\U0002a38f", // 𪎏
+ 0x2a390: "\xc7\v\U0002a390", // 𪎐
+ 0x2a391: "\xc8\x02\U0002a391", // 𪎑
+ 0x2a392: "\xc8\x03\U0002a392", // 𪎒
+ 0x2a393: "\xc8\x03\U0002a393", // 𪎓
+ 0x2a394: "\xc8\x03\U0002a394", // 𪎔
+ 0x2a395: "\xc8\x04\U0002a395", // 𪎕
+ 0x2a396: "\xc8\x04\U0002a396", // 𪎖
+ 0x2a397: "\xc8\x04\U0002a397", // 𪎗
+ 0x2a398: "\xc8\x04\U0002a398", // 𪎘
+ 0x2a399: "\xc8\x04\U0002a399", // 𪎙
+ 0x2a39a: "\xc8\x04\U0002a39a", // 𪎚
+ 0x2a39b: "\xc8\x05\U0002a39b", // 𪎛
+ 0x2a39c: "\xc8\x05\U0002a39c", // 𪎜
+ 0x2a39d: "\xc8\x05\U0002a39d", // 𪎝
+ 0x2a39e: "\xc8\x05\U0002a39e", // 𪎞
+ 0x2a39f: "\xc8\x05\U0002a39f", // 𪎟
+ 0x2a3a0: "\xc8\x06\U0002a3a0", // 𪎠
+ 0x2a3a1: "\xc8\x06\U0002a3a1", // 𪎡
+ 0x2a3a2: "\xc8\x06\U0002a3a2", // 𪎢
+ 0x2a3a3: "\xc8\a\U0002a3a3", // 𪎣
+ 0x2a3a4: "\xc8\a\U0002a3a4", // 𪎤
+ 0x2a3a5: "\xc8\b\U0002a3a5", // 𪎥
+ 0x2a3a6: "\xc8\b\U0002a3a6", // 𪎦
+ 0x2a3a7: "\xc8\b\U0002a3a7", // 𪎧
+ 0x2a3a8: "\xc8\t\U0002a3a8", // 𪎨
+ 0x2a3a9: "\xc8\t\U0002a3a9", // 𪎩
+ 0x2a3aa: "\xc8\n\U0002a3aa", // 𪎪
+ 0x2a3ab: "\xc8\n\U0002a3ab", // 𪎫
+ 0x2a3ac: "\xc8\v\U0002a3ac", // 𪎬
+ 0x2a3ad: "\xc8\f\U0002a3ad", // 𪎭
+ 0x2a3ae: "\xc8\f\U0002a3ae", // 𪎮
+ 0x2a3af: "\xc8\f\U0002a3af", // 𪎯
+ 0x2a3b0: "\xc8\r\U0002a3b0", // 𪎰
+ 0x2a3b1: "\xc8\x0e\U0002a3b1", // 𪎱
+ 0x2a3b2: "\xc8\x14\U0002a3b2", // 𪎲
+ 0x2a3b3: "\xc9\x02\U0002a3b3", // 𪎳
+ 0x2a3b4: "\xc9\x03\U0002a3b4", // 𪎴
+ 0x2a3b5: "\xc9\x04\U0002a3b5", // 𪎵
+ 0x2a3b6: "\xc9\x04\U0002a3b6", // 𪎶
+ 0x2a3b7: "\xc9\x04\U0002a3b7", // 𪎷
+ 0x2a3b8: "\xc9\x04\U0002a3b8", // 𪎸
+ 0x2a3b9: "\xc9\x04\U0002a3b9", // 𪎹
+ 0x2a3ba: "\xc9\x05\U0002a3ba", // 𪎺
+ 0x2a3bb: "\xc9\x06\U0002a3bb", // 𪎻
+ 0x2a3bc: "\xc9\x06\U0002a3bc", // 𪎼
+ 0x2a3bd: "\xc9\x06\U0002a3bd", // 𪎽
+ 0x2a3be: "\xc9\x06\U0002a3be", // 𪎾
+ 0x2a3bf: "\xc9\x06\U0002a3bf", // 𪎿
+ 0x2a3c0: "\xc9\x06\U0002a3c0", // 𪏀
+ 0x2a3c1: "\xc9\x06\U0002a3c1", // 𪏁
+ 0x2a3c2: "\xc9\a\U0002a3c2", // 𪏂
+ 0x2a3c3: "\xc9\a\U0002a3c3", // 𪏃
+ 0x2a3c4: "\xc9\a\U0002a3c4", // 𪏄
+ 0x2a3c5: "\xc9\a\U0002a3c5", // 𪏅
+ 0x2a3c6: "\xc9\b\U0002a3c6", // 𪏆
+ 0x2a3c7: "\xc9\b\U0002a3c7", // 𪏇
+ 0x2a3c8: "\xc9\b\U0002a3c8", // 𪏈
+ 0x2a3c9: "\xc9\b\U0002a3c9", // 𪏉
+ 0x2a3ca: "\xc9\b\U0002a3ca", // 𪏊
+ 0x2a3cb: "\xc9\b\U0002a3cb", // 𪏋
+ 0x2a3cc: "\xc9\b\U0002a3cc", // 𪏌
+ 0x2a3cd: "\xc9\b\U0002a3cd", // 𪏍
+ 0x2a3ce: "\xc9\b\U0002a3ce", // 𪏎
+ 0x2a3cf: "\xc9\b\U0002a3cf", // 𪏏
+ 0x2a3d0: "\xc9\b\U0002a3d0", // 𪏐
+ 0x2a3d1: "\xc9\b\U0002a3d1", // 𪏑
+ 0x2a3d2: "\xc9\b\U0002a3d2", // 𪏒
+ 0x2a3d3: "\xc9\t\U0002a3d3", // 𪏓
+ 0x2a3d4: "\xc9\t\U0002a3d4", // 𪏔
+ 0x2a3d5: "\xc9\t\U0002a3d5", // 𪏕
+ 0x2a3d6: "\xc9\t\U0002a3d6", // 𪏖
+ 0x2a3d7: "\xc9\t\U0002a3d7", // 𪏗
+ 0x2a3d8: "\xc9\t\U0002a3d8", // 𪏘
+ 0x2a3d9: "\xc9\n\U0002a3d9", // 𪏙
+ 0x2a3da: "\xc9\n\U0002a3da", // 𪏚
+ 0x2a3db: "\xc9\n\U0002a3db", // 𪏛
+ 0x2a3dc: "\xc9\n\U0002a3dc", // 𪏜
+ 0x2a3dd: "\xc9\n\U0002a3dd", // 𪏝
+ 0x2a3de: "\xc9\n\U0002a3de", // 𪏞
+ 0x2a3df: "\xc9\v\U0002a3df", // 𪏟
+ 0x2a3e0: "\xc9\v\U0002a3e0", // 𪏠
+ 0x2a3e1: "\xc9\v\U0002a3e1", // 𪏡
+ 0x2a3e2: "\xc9\v\U0002a3e2", // 𪏢
+ 0x2a3e3: "\xc9\v\U0002a3e3", // 𪏣
+ 0x2a3e4: "\xc9\f\U0002a3e4", // 𪏤
+ 0x2a3e5: "\xc9\f\U0002a3e5", // 𪏥
+ 0x2a3e6: "\xc9\f\U0002a3e6", // 𪏦
+ 0x2a3e7: "\xc9\r\U0002a3e7", // 𪏧
+ 0x2a3e8: "\xc9\r\U0002a3e8", // 𪏨
+ 0x2a3e9: "\xc9\r\U0002a3e9", // 𪏩
+ 0x2a3ea: "\xc9\x0f\U0002a3ea", // 𪏪
+ 0x2a3eb: "\xc9\x10\U0002a3eb", // 𪏫
+ 0x2a3ec: "\xc9\x14\U0002a3ec", // 𪏬
+ 0x2a3ed: "\xca\x02\U0002a3ed", // 𪏭
+ 0x2a3ee: "\xca\x03\U0002a3ee", // 𪏮
+ 0x2a3ef: "\xca\x03\U0002a3ef", // 𪏯
+ 0x2a3f0: "\xca\x04\U0002a3f0", // 𪏰
+ 0x2a3f1: "\xca\x04\U0002a3f1", // 𪏱
+ 0x2a3f2: "\xca\x04\U0002a3f2", // 𪏲
+ 0x2a3f3: "\xca\x04\U0002a3f3", // 𪏳
+ 0x2a3f4: "\xca\x04\U0002a3f4", // 𪏴
+ 0x2a3f5: "\xca\x04\U0002a3f5", // 𪏵
+ 0x2a3f6: "\xca\x05\U0002a3f6", // 𪏶
+ 0x2a3f7: "\xca\x05\U0002a3f7", // 𪏷
+ 0x2a3f8: "\xca\x05\U0002a3f8", // 𪏸
+ 0x2a3f9: "\xca\x05\U0002a3f9", // 𪏹
+ 0x2a3fa: "\xca\x05\U0002a3fa", // 𪏺
+ 0x2a3fb: "\xca\x05\U0002a3fb", // 𪏻
+ 0x2a3fc: "\xca\x05\U0002a3fc", // 𪏼
+ 0x2a3fd: "\xca\x05\U0002a3fd", // 𪏽
+ 0x2a3fe: "\xca\x05\U0002a3fe", // 𪏾
+ 0x2a3ff: "\xca\x06\U0002a3ff", // 𪏿
+ 0x2a400: "\xca\x06\U0002a400", // 𪐀
+ 0x2a401: "\xca\a\U0002a401", // 𪐁
+ 0x2a402: "\xca\b\U0002a402", // 𪐂
+ 0x2a403: "\xca\b\U0002a403", // 𪐃
+ 0x2a404: "\xca\b\U0002a404", // 𪐄
+ 0x2a405: "\xca\b\U0002a405", // 𪐅
+ 0x2a406: "\xca\b\U0002a406", // 𪐆
+ 0x2a407: "\xca\t\U0002a407", // 𪐇
+ 0x2a408: "\xca\t\U0002a408", // 𪐈
+ 0x2a409: "\xca\t\U0002a409", // 𪐉
+ 0x2a40a: "\xca\t\U0002a40a", // 𪐊
+ 0x2a40b: "\xca\n\U0002a40b", // 𪐋
+ 0x2a40c: "\xca\v\U0002a40c", // 𪐌
+ 0x2a40d: "\xca\v\U0002a40d", // 𪐍
+ 0x2a40e: "\xca\v\U0002a40e", // 𪐎
+ 0x2a40f: "\xca\v\U0002a40f", // 𪐏
+ 0x2a410: "\xca\f\U0002a410", // 𪐐
+ 0x2a411: "\xca\x0e\U0002a411", // 𪐑
+ 0x2a412: "\xca\r\U0002a412", // 𪐒
+ 0x2a413: "\xca\x0e\U0002a413", // 𪐓
+ 0x2a414: "\xca\x10\U0002a414", // 𪐔
+ 0x2a415: "\xca\x10\U0002a415", // 𪐕
+ 0x2a416: "\xca\x10\U0002a416", // 𪐖
+ 0x2a417: "\xcb\x00\U0002a417", // 𪐗
+ 0x2a418: "\xcb\x01\U0002a418", // 𪐘
+ 0x2a419: "\xcb\x02\U0002a419", // 𪐙
+ 0x2a41a: "\xcb\x02\U0002a41a", // 𪐚
+ 0x2a41b: "\xcb\x02\U0002a41b", // 𪐛
+ 0x2a41c: "\xcb\x03\U0002a41c", // 𪐜
+ 0x2a41d: "\xcb\x03\U0002a41d", // 𪐝
+ 0x2a41e: "\xcb\x03\U0002a41e", // 𪐞
+ 0x2a41f: "\xcb\x03\U0002a41f", // 𪐟
+ 0x2a420: "\xcb\x03\U0002a420", // 𪐠
+ 0x2a421: "\xcb\x03\U0002a421", // 𪐡
+ 0x2a422: "\xcb\x03\U0002a422", // 𪐢
+ 0x2a423: "\xcb\x03\U0002a423", // 𪐣
+ 0x2a424: "\xcb\x04\U0002a424", // 𪐤
+ 0x2a425: "\xcb\x04\U0002a425", // 𪐥
+ 0x2a426: "\xcb\x04\U0002a426", // 𪐦
+ 0x2a427: "\xcb\x04\U0002a427", // 𪐧
+ 0x2a428: "\xcb\x04\U0002a428", // 𪐨
+ 0x2a429: "\xcb\x04\U0002a429", // 𪐩
+ 0x2a42a: "\xcb\x04\U0002a42a", // 𪐪
+ 0x2a42b: "\xcb\x04\U0002a42b", // 𪐫
+ 0x2a42c: "\xcb\x04\U0002a42c", // 𪐬
+ 0x2a42d: "\xcb\x04\U0002a42d", // 𪐭
+ 0x2a42e: "\xcb\x04\U0002a42e", // 𪐮
+ 0x2a42f: "\xcb\x04\U0002a42f", // 𪐯
+ 0x2a430: "\xcb\x04\U0002a430", // 𪐰
+ 0x2a431: "\xcb\x04\U0002a431", // 𪐱
+ 0x2a432: "\xcb\x05\U0002a432", // 𪐲
+ 0x2a433: "\xcb\x05\U0002a433", // 𪐳
+ 0x2a434: "\xcb\x05\U0002a434", // 𪐴
+ 0x2a435: "\xcb\x05\U0002a435", // 𪐵
+ 0x2a436: "\xcb\x05\U0002a436", // 𪐶
+ 0x2a437: "\xcb\x05\U0002a437", // 𪐷
+ 0x2a438: "\xcb\x05\U0002a438", // 𪐸
+ 0x2a439: "\xcb\x05\U0002a439", // 𪐹
+ 0x2a43a: "\xcb\x05\U0002a43a", // 𪐺
+ 0x2a43b: "\xcb\x05\U0002a43b", // 𪐻
+ 0x2a43c: "\xcb\x05\U0002a43c", // 𪐼
+ 0x2a43d: "\xcb\x05\U0002a43d", // 𪐽
+ 0x2a43e: "\xcb\x05\U0002a43e", // 𪐾
+ 0x2a43f: "\xcb\x06\U0002a43f", // 𪐿
+ 0x2a440: "\xcb\x06\U0002a440", // 𪑀
+ 0x2a441: "\xcb\x06\U0002a441", // 𪑁
+ 0x2a442: "\xcb\x06\U0002a442", // 𪑂
+ 0x2a443: "\xcb\x06\U0002a443", // 𪑃
+ 0x2a444: "\xcb\x06\U0002a444", // 𪑄
+ 0x2a445: "\xcb\x06\U0002a445", // 𪑅
+ 0x2a446: "\xcb\x06\U0002a446", // 𪑆
+ 0x2a447: "\xcb\x06\U0002a447", // 𪑇
+ 0x2a448: "\xcb\a\U0002a448", // 𪑈
+ 0x2a449: "\xcb\a\U0002a449", // 𪑉
+ 0x2a44a: "\xcb\a\U0002a44a", // 𪑊
+ 0x2a44b: "\xcb\a\U0002a44b", // 𪑋
+ 0x2a44c: "\xcb\a\U0002a44c", // 𪑌
+ 0x2a44d: "\xcb\a\U0002a44d", // 𪑍
+ 0x2a44e: "\xcb\a\U0002a44e", // 𪑎
+ 0x2a44f: "\xcb\a\U0002a44f", // 𪑏
+ 0x2a450: "\xcb\a\U0002a450", // 𪑐
+ 0x2a451: "\xcb\a\U0002a451", // 𪑑
+ 0x2a452: "\xcb\b\U0002a452", // 𪑒
+ 0x2a453: "\xcb\b\U0002a453", // 𪑓
+ 0x2a454: "\xcb\b\U0002a454", // 𪑔
+ 0x2a455: "\xcb\b\U0002a455", // 𪑕
+ 0x2a456: "\xcb\b\U0002a456", // 𪑖
+ 0x2a457: "\xcb\b\U0002a457", // 𪑗
+ 0x2a458: "\xcb\b\U0002a458", // 𪑘
+ 0x2a459: "\xcb\b\U0002a459", // 𪑙
+ 0x2a45a: "\xcb\b\U0002a45a", // 𪑚
+ 0x2a45b: "\xcb\b\U0002a45b", // 𪑛
+ 0x2a45c: "\xcb\b\U0002a45c", // 𪑜
+ 0x2a45d: "\xcb\b\U0002a45d", // 𪑝
+ 0x2a45e: "\xcb\b\U0002a45e", // 𪑞
+ 0x2a45f: "\xcb\b\U0002a45f", // 𪑟
+ 0x2a460: "\xcb\b\U0002a460", // 𪑠
+ 0x2a461: "\xcb\b\U0002a461", // 𪑡
+ 0x2a462: "\xcb\b\U0002a462", // 𪑢
+ 0x2a463: "\xcb\t\U0002a463", // 𪑣
+ 0x2a464: "\xcb\b\U0002a464", // 𪑤
+ 0x2a465: "\xcb\t\U0002a465", // 𪑥
+ 0x2a466: "\xcb\t\U0002a466", // 𪑦
+ 0x2a467: "\xcb\t\U0002a467", // 𪑧
+ 0x2a468: "\xcb\t\U0002a468", // 𪑨
+ 0x2a469: "\xcb\t\U0002a469", // 𪑩
+ 0x2a46a: "\xcb\t\U0002a46a", // 𪑪
+ 0x2a46b: "\xcb\t\U0002a46b", // 𪑫
+ 0x2a46c: "\xcb\t\U0002a46c", // 𪑬
+ 0x2a46d: "\xcb\t\U0002a46d", // 𪑭
+ 0x2a46e: "\xcb\t\U0002a46e", // 𪑮
+ 0x2a46f: "\xcb\t\U0002a46f", // 𪑯
+ 0x2a470: "\xcb\t\U0002a470", // 𪑰
+ 0x2a471: "\xcb\t\U0002a471", // 𪑱
+ 0x2a472: "\xcb\t\U0002a472", // 𪑲
+ 0x2a473: "\xcb\t\U0002a473", // 𪑳
+ 0x2a474: "\xcb\t\U0002a474", // 𪑴
+ 0x2a475: "\xcb\t\U0002a475", // 𪑵
+ 0x2a476: "\xcb\t\U0002a476", // 𪑶
+ 0x2a477: "\xcb\t\U0002a477", // 𪑷
+ 0x2a478: "\xcb\t\U0002a478", // 𪑸
+ 0x2a479: "\xcb\t\U0002a479", // 𪑹
+ 0x2a47a: "\xcb\t\U0002a47a", // 𪑺
+ 0x2a47b: "\xcb\t\U0002a47b", // 𪑻
+ 0x2a47c: "\xcb\t\U0002a47c", // 𪑼
+ 0x2a47d: "\xcb\t\U0002a47d", // 𪑽
+ 0x2a47e: "\xcb\n\U0002a47e", // 𪑾
+ 0x2a47f: "\xcb\n\U0002a47f", // 𪑿
+ 0x2a480: "\xcb\n\U0002a480", // 𪒀
+ 0x2a481: "\xcb\n\U0002a481", // 𪒁
+ 0x2a482: "\xcb\n\U0002a482", // 𪒂
+ 0x2a483: "\xcb\n\U0002a483", // 𪒃
+ 0x2a484: "\xcb\n\U0002a484", // 𪒄
+ 0x2a485: "\xcb\n\U0002a485", // 𪒅
+ 0x2a486: "\xcb\n\U0002a486", // 𪒆
+ 0x2a487: "\xcb\n\U0002a487", // 𪒇
+ 0x2a488: "\xcb\n\U0002a488", // 𪒈
+ 0x2a489: "\xcb\n\U0002a489", // 𪒉
+ 0x2a48a: "\xcb\n\U0002a48a", // 𪒊
+ 0x2a48b: "\xcb\n\U0002a48b", // 𪒋
+ 0x2a48c: "\xcb\n\U0002a48c", // 𪒌
+ 0x2a48d: "\xcb\n\U0002a48d", // 𪒍
+ 0x2a48e: "\xcb\n\U0002a48e", // 𪒎
+ 0x2a48f: "\xcb\v\U0002a48f", // 𪒏
+ 0x2a490: "\xcb\v\U0002a490", // 𪒐
+ 0x2a491: "\xcb\v\U0002a491", // 𪒑
+ 0x2a492: "\xcb\v\U0002a492", // 𪒒
+ 0x2a493: "\xcb\v\U0002a493", // 𪒓
+ 0x2a494: "\xcb\v\U0002a494", // 𪒔
+ 0x2a495: "\xcb\v\U0002a495", // 𪒕
+ 0x2a496: "\xcb\v\U0002a496", // 𪒖
+ 0x2a497: "\xcb\v\U0002a497", // 𪒗
+ 0x2a498: "\xcb\f\U0002a498", // 𪒘
+ 0x2a499: "\xcb\f\U0002a499", // 𪒙
+ 0x2a49a: "\xcb\f\U0002a49a", // 𪒚
+ 0x2a49b: "\xcb\f\U0002a49b", // 𪒛
+ 0x2a49c: "\xcb\f\U0002a49c", // 𪒜
+ 0x2a49d: "\xcb\f\U0002a49d", // 𪒝
+ 0x2a49e: "\xcb\f\U0002a49e", // 𪒞
+ 0x2a49f: "\xcb\f\U0002a49f", // 𪒟
+ 0x2a4a0: "\xcb\f\U0002a4a0", // 𪒠
+ 0x2a4a1: "\xcb\f\U0002a4a1", // 𪒡
+ 0x2a4a2: "\xcb\f\U0002a4a2", // 𪒢
+ 0x2a4a3: "\xcb\f\U0002a4a3", // 𪒣
+ 0x2a4a4: "\xcb\f\U0002a4a4", // 𪒤
+ 0x2a4a5: "\xcb\f\U0002a4a5", // 𪒥
+ 0x2a4a6: "\xcb\f\U0002a4a6", // 𪒦
+ 0x2a4a7: "\xcb\f\U0002a4a7", // 𪒧
+ 0x2a4a8: "\xcb\f\U0002a4a8", // 𪒨
+ 0x2a4a9: "\xcb\r\U0002a4a9", // 𪒩
+ 0x2a4aa: "\xcb\r\U0002a4aa", // 𪒪
+ 0x2a4ab: "\xcb\r\U0002a4ab", // 𪒫
+ 0x2a4ac: "\xcb\r\U0002a4ac", // 𪒬
+ 0x2a4ad: "\xcb\r\U0002a4ad", // 𪒭
+ 0x2a4ae: "\xcb\r\U0002a4ae", // 𪒮
+ 0x2a4af: "\xcb\r\U0002a4af", // 𪒯
+ 0x2a4b0: "\xcb\r\U0002a4b0", // 𪒰
+ 0x2a4b1: "\xcb\r\U0002a4b1", // 𪒱
+ 0x2a4b2: "\xcb\r\U0002a4b2", // 𪒲
+ 0x2a4b3: "\xcb\r\U0002a4b3", // 𪒳
+ 0x2a4b4: "\xcb\x0e\U0002a4b4", // 𪒴
+ 0x2a4b5: "\xcb\x0e\U0002a4b5", // 𪒵
+ 0x2a4b6: "\xcb\x0e\U0002a4b6", // 𪒶
+ 0x2a4b7: "\xcb\x0e\U0002a4b7", // 𪒷
+ 0x2a4b8: "\xcb\x0e\U0002a4b8", // 𪒸
+ 0x2a4b9: "\xcb\x0f\U0002a4b9", // 𪒹
+ 0x2a4ba: "\xcb\x0f\U0002a4ba", // 𪒺
+ 0x2a4bb: "\xcb\x0f\U0002a4bb", // 𪒻
+ 0x2a4bc: "\xcb\x0f\U0002a4bc", // 𪒼
+ 0x2a4bd: "\xcb\x0f\U0002a4bd", // 𪒽
+ 0x2a4be: "\xcb\x0f\U0002a4be", // 𪒾
+ 0x2a4bf: "\xcb\x10\U0002a4bf", // 𪒿
+ 0x2a4c0: "\xcb\x10\U0002a4c0", // 𪓀
+ 0x2a4c1: "\xcb\x10\U0002a4c1", // 𪓁
+ 0x2a4c2: "\xcb\x10\U0002a4c2", // 𪓂
+ 0x2a4c3: "\xcb\x11\U0002a4c3", // 𪓃
+ 0x2a4c4: "\xcb\x11\U0002a4c4", // 𪓄
+ 0x2a4c5: "\xcb\x12\U0002a4c5", // 𪓅
+ 0x2a4c6: "\xcb\x12\U0002a4c6", // 𪓆
+ 0x2a4c7: "\xcb\x14\U0002a4c7", // 𪓇
+ 0x2a4c8: "\xcb\x14\U0002a4c8", // 𪓈
+ 0x2a4c9: "\xcb\x1a\U0002a4c9", // 𪓉
+ 0x2a4ca: "\xcb\x1d\U0002a4ca", // 𪓊
+ 0x2a4cb: "\xcc\x06\U0002a4cb", // 𪓋
+ 0x2a4cc: "\xcc\b\U0002a4cc", // 𪓌
+ 0x2a4cd: "\xcc\t\U0002a4cd", // 𪓍
+ 0x2a4ce: "\xcc\t\U0002a4ce", // 𪓎
+ 0x2a4cf: "\xcc\t\U0002a4cf", // 𪓏
+ 0x2a4d0: "\xcc\v\U0002a4d0", // 𪓐
+ 0x2a4d1: "\xcd\x01\U0002a4d1", // 𪓑
+ 0x2a4d2: "\xcd\x02\U0002a4d2", // 𪓒
+ 0x2a4d3: "\xcd\x02\U0002a4d3", // 𪓓
+ 0x2a4d4: "\xcd\x04\U0002a4d4", // 𪓔
+ 0x2a4d5: "\xcd\x04\U0002a4d5", // 𪓕
+ 0x2a4d6: "\xcd\x04\U0002a4d6", // 𪓖
+ 0x2a4d7: "\xcd\x04\U0002a4d7", // 𪓗
+ 0x2a4d8: "\xcd\x04\U0002a4d8", // 𪓘
+ 0x2a4d9: "\xcd\x04\U0002a4d9", // 𪓙
+ 0x2a4da: "\xcd\x05\U0002a4da", // 𪓚
+ 0x2a4db: "\xcd\x05\U0002a4db", // 𪓛
+ 0x2a4dc: "\xcd\x05\U0002a4dc", // 𪓜
+ 0x2a4dd: "\xcd\x05\U0002a4dd", // 𪓝
+ 0x2a4de: "\xcd\x05\U0002a4de", // 𪓞
+ 0x2a4df: "\xcd\x05\U0002a4df", // 𪓟
+ 0x2a4e0: "\xcd\x05\U0002a4e0", // 𪓠
+ 0x2a4e1: "\xcd\x06\U0002a4e1", // 𪓡
+ 0x2a4e2: "\xcd\x06\U0002a4e2", // 𪓢
+ 0x2a4e3: "\xcd\x06\U0002a4e3", // 𪓣
+ 0x2a4e4: "\xcd\x06\U0002a4e4", // 𪓤
+ 0x2a4e5: "\xcd\x06\U0002a4e5", // 𪓥
+ 0x2a4e6: "\xcd\x06\U0002a4e6", // 𪓦
+ 0x2a4e7: "\xcd\a\U0002a4e7", // 𪓧
+ 0x2a4e8: "\xcd\a\U0002a4e8", // 𪓨
+ 0x2a4e9: "\xcd\a\U0002a4e9", // 𪓩
+ 0x2a4ea: "\xcd\a\U0002a4ea", // 𪓪
+ 0x2a4eb: "\xcd\a\U0002a4eb", // 𪓫
+ 0x2a4ec: "\xcd\b\U0002a4ec", // 𪓬
+ 0x2a4ed: "\xcd\b\U0002a4ed", // 𪓭
+ 0x2a4ee: "\xcd\t\U0002a4ee", // 𪓮
+ 0x2a4ef: "\xcd\t\U0002a4ef", // 𪓯
+ 0x2a4f0: "\xcd\t\U0002a4f0", // 𪓰
+ 0x2a4f1: "\xcd\t\U0002a4f1", // 𪓱
+ 0x2a4f2: "\xcd\t\U0002a4f2", // 𪓲
+ 0x2a4f3: "\xcd\t\U0002a4f3", // 𪓳
+ 0x2a4f4: "\xcd\t\U0002a4f4", // 𪓴
+ 0x2a4f5: "\xcd\t\U0002a4f5", // 𪓵
+ 0x2a4f6: "\xcd\t\U0002a4f6", // 𪓶
+ 0x2a4f7: "\xcd\n\U0002a4f7", // 𪓷
+ 0x2a4f8: "\xcd\n\U0002a4f8", // 𪓸
+ 0x2a4f9: "\xcd\v\U0002a4f9", // 𪓹
+ 0x2a4fa: "\xcd\f\U0002a4fa", // 𪓺
+ 0x2a4fb: "\xd5\t\U0002a4fb", // 𪓻
+ 0x2a4fc: "\xcd\r\U0002a4fc", // 𪓼
+ 0x2a4fd: "\xcd\f\U0002a4fd", // 𪓽
+ 0x2a4fe: "\xcd\r\U0002a4fe", // 𪓾
+ 0x2a4ff: "\xcd\x0e\U0002a4ff", // 𪓿
+ 0x2a500: "\xcd\x0e\U0002a500", // 𪔀
+ 0x2a501: "\xcd\x0f\U0002a501", // 𪔁
+ 0x2a502: "\xce\x00\U0002a502", // 𪔂
+ 0x2a503: "\xce\x02\U0002a503", // 𪔃
+ 0x2a504: "\xce\x03\U0002a504", // 𪔄
+ 0x2a505: "\xce\x03\U0002a505", // 𪔅
+ 0x2a506: "\xce\x03\U0002a506", // 𪔆
+ 0x2a507: "\xce\x04\U0002a507", // 𪔇
+ 0x2a508: "\xce\x06\U0002a508", // 𪔈
+ 0x2a509: "\xce\n\U0002a509", // 𪔉
+ 0x2a50a: "\xce\x0f\U0002a50a", // 𪔊
+ 0x2a50b: "\xcf\x03\U0002a50b", // 𪔋
+ 0x2a50c: "\xcf\x03\U0002a50c", // 𪔌
+ 0x2a50d: "\xcf\x04\U0002a50d", // 𪔍
+ 0x2a50e: "\xcf\x04\U0002a50e", // 𪔎
+ 0x2a50f: "\xcf\x04\U0002a50f", // 𪔏
+ 0x2a510: "\xcf\x05\U0002a510", // 𪔐
+ 0x2a511: "\xcf\x05\U0002a511", // 𪔑
+ 0x2a512: "\xcf\x05\U0002a512", // 𪔒
+ 0x2a513: "\xcf\x05\U0002a513", // 𪔓
+ 0x2a514: "\xcf\x06\U0002a514", // 𪔔
+ 0x2a515: "\xcf\x06\U0002a515", // 𪔕
+ 0x2a516: "\xcf\x06\U0002a516", // 𪔖
+ 0x2a517: "\xcf\x06\U0002a517", // 𪔗
+ 0x2a518: "\xcf\x06\U0002a518", // 𪔘
+ 0x2a519: "\xcf\x06\U0002a519", // 𪔙
+ 0x2a51a: "\xcf\x06\U0002a51a", // 𪔚
+ 0x2a51b: "\xcf\x06\U0002a51b", // 𪔛
+ 0x2a51c: "\xcf\a\U0002a51c", // 𪔜
+ 0x2a51d: "\xcf\a\U0002a51d", // 𪔝
+ 0x2a51e: "\xcf\a\U0002a51e", // 𪔞
+ 0x2a51f: "\xcf\a\U0002a51f", // 𪔟
+ 0x2a520: "\xcf\a\U0002a520", // 𪔠
+ 0x2a521: "\xcf\a\U0002a521", // 𪔡
+ 0x2a522: "\xcf\b\U0002a522", // 𪔢
+ 0x2a523: "\xcf\b\U0002a523", // 𪔣
+ 0x2a524: "\xcf\b\U0002a524", // 𪔤
+ 0x2a525: "\xcf\b\U0002a525", // 𪔥
+ 0x2a526: "\xcf\t\U0002a526", // 𪔦
+ 0x2a527: "\xcf\t\U0002a527", // 𪔧
+ 0x2a528: "\xcf\t\U0002a528", // 𪔨
+ 0x2a529: "\xcf\t\U0002a529", // 𪔩
+ 0x2a52a: "\xcf\t\U0002a52a", // 𪔪
+ 0x2a52b: "\xcf\t\U0002a52b", // 𪔫
+ 0x2a52c: "\xcf\t\U0002a52c", // 𪔬
+ 0x2a52d: "\xcf\t\U0002a52d", // 𪔭
+ 0x2a52e: "\xcf\n\U0002a52e", // 𪔮
+ 0x2a52f: "\xcf\v\U0002a52f", // 𪔯
+ 0x2a530: "\xcf\v\U0002a530", // 𪔰
+ 0x2a531: "\xcf\v\U0002a531", // 𪔱
+ 0x2a532: "\xcf\v\U0002a532", // 𪔲
+ 0x2a533: "\xcf\f\U0002a533", // 𪔳
+ 0x2a534: "\xcf\f\U0002a534", // 𪔴
+ 0x2a535: "\xcf\r\U0002a535", // 𪔵
+ 0x2a536: "\xcf\x0e\U0002a536", // 𪔶
+ 0x2a537: "\xcf\x10\U0002a537", // 𪔷
+ 0x2a538: "\xd0\x02\U0002a538", // 𪔸
+ 0x2a539: "\xd0\x02\U0002a539", // 𪔹
+ 0x2a53a: "\xd0\x03\U0002a53a", // 𪔺
+ 0x2a53b: "\xd0\x03\U0002a53b", // 𪔻
+ 0x2a53c: "\xd0\x03\U0002a53c", // 𪔼
+ 0x2a53d: "\xd0\x04\U0002a53d", // 𪔽
+ 0x2a53e: "\xd0\x04\U0002a53e", // 𪔾
+ 0x2a53f: "\xd0\x04\U0002a53f", // 𪔿
+ 0x2a540: "\xd0\x04\U0002a540", // 𪕀
+ 0x2a541: "\xd0\x04\U0002a541", // 𪕁
+ 0x2a542: "\xd0\x04\U0002a542", // 𪕂
+ 0x2a543: "\xd0\x04\U0002a543", // 𪕃
+ 0x2a544: "\xd0\x04\U0002a544", // 𪕄
+ 0x2a545: "\xd0\x04\U0002a545", // 𪕅
+ 0x2a546: "\xd0\x04\U0002a546", // 𪕆
+ 0x2a547: "\xd0\x04\U0002a547", // 𪕇
+ 0x2a548: "\xd0\x04\U0002a548", // 𪕈
+ 0x2a549: "\xd0\x05\U0002a549", // 𪕉
+ 0x2a54a: "\xd0\x05\U0002a54a", // 𪕊
+ 0x2a54b: "\xd0\x05\U0002a54b", // 𪕋
+ 0x2a54c: "\xd0\x05\U0002a54c", // 𪕌
+ 0x2a54d: "\xd0\x05\U0002a54d", // 𪕍
+ 0x2a54e: "\xd0\x05\U0002a54e", // 𪕎
+ 0x2a54f: "\xd0\x05\U0002a54f", // 𪕏
+ 0x2a550: "\xd0\x05\U0002a550", // 𪕐
+ 0x2a551: "\xd0\x05\U0002a551", // 𪕑
+ 0x2a552: "\xd0\x06\U0002a552", // 𪕒
+ 0x2a553: "\xd0\x06\U0002a553", // 𪕓
+ 0x2a554: "\xd0\x06\U0002a554", // 𪕔
+ 0x2a555: "\xd0\x06\U0002a555", // 𪕕
+ 0x2a556: "\xd0\x06\U0002a556", // 𪕖
+ 0x2a557: "\xd0\x06\U0002a557", // 𪕗
+ 0x2a558: "\xd0\x06\U0002a558", // 𪕘
+ 0x2a559: "\xd0\x06\U0002a559", // 𪕙
+ 0x2a55a: "\xd0\a\U0002a55a", // 𪕚
+ 0x2a55b: "\xd0\a\U0002a55b", // 𪕛
+ 0x2a55c: "\xd0\a\U0002a55c", // 𪕜
+ 0x2a55d: "\xd0\a\U0002a55d", // 𪕝
+ 0x2a55e: "\xd0\a\U0002a55e", // 𪕞
+ 0x2a55f: "\xd0\x06\U0002a55f", // 𪕟
+ 0x2a560: "\xd0\a\U0002a560", // 𪕠
+ 0x2a561: "\xd0\a\U0002a561", // 𪕡
+ 0x2a562: "\xd0\a\U0002a562", // 𪕢
+ 0x2a563: "\xd0\a\U0002a563", // 𪕣
+ 0x2a564: "\xd0\a\U0002a564", // 𪕤
+ 0x2a565: "\xd0\a\U0002a565", // 𪕥
+ 0x2a566: "\xd0\a\U0002a566", // 𪕦
+ 0x2a567: "\xd0\a\U0002a567", // 𪕧
+ 0x2a568: "\xd0\b\U0002a568", // 𪕨
+ 0x2a569: "\xd0\b\U0002a569", // 𪕩
+ 0x2a56a: "\xd0\b\U0002a56a", // 𪕪
+ 0x2a56b: "\xd0\t\U0002a56b", // 𪕫
+ 0x2a56c: "\xd0\t\U0002a56c", // 𪕬
+ 0x2a56d: "\xd0\t\U0002a56d", // 𪕭
+ 0x2a56e: "\xd0\t\U0002a56e", // 𪕮
+ 0x2a56f: "\xd0\t\U0002a56f", // 𪕯
+ 0x2a570: "\xd0\t\U0002a570", // 𪕰
+ 0x2a571: "\xd0\t\U0002a571", // 𪕱
+ 0x2a572: "\xd0\t\U0002a572", // 𪕲
+ 0x2a573: "\xd0\t\U0002a573", // 𪕳
+ 0x2a574: "\xd0\t\U0002a574", // 𪕴
+ 0x2a575: "\xd0\n\U0002a575", // 𪕵
+ 0x2a576: "\xd0\n\U0002a576", // 𪕶
+ 0x2a577: "\xd0\n\U0002a577", // 𪕷
+ 0x2a578: "\xd0\n\U0002a578", // 𪕸
+ 0x2a579: "\xd0\n\U0002a579", // 𪕹
+ 0x2a57a: "\xd0\n\U0002a57a", // 𪕺
+ 0x2a57b: "\xd0\n\U0002a57b", // 𪕻
+ 0x2a57c: "\xd0\n\U0002a57c", // 𪕼
+ 0x2a57d: "\xd0\n\U0002a57d", // 𪕽
+ 0x2a57e: "\xd0\n\U0002a57e", // 𪕾
+ 0x2a57f: "\xd1\n\U0002a57f", // 𪕿
+ 0x2a580: "\xd0\v\U0002a580", // 𪖀
+ 0x2a581: "\xd0\v\U0002a581", // 𪖁
+ 0x2a582: "\xd0\v\U0002a582", // 𪖂
+ 0x2a583: "\xd0\v\U0002a583", // 𪖃
+ 0x2a584: "\xd0\v\U0002a584", // 𪖄
+ 0x2a585: "\xd0\f\U0002a585", // 𪖅
+ 0x2a586: "\xd0\f\U0002a586", // 𪖆
+ 0x2a587: "\xd0\f\U0002a587", // 𪖇
+ 0x2a588: "\xd0\f\U0002a588", // 𪖈
+ 0x2a589: "\xd0\f\U0002a589", // 𪖉
+ 0x2a58a: "\xd0\r\U0002a58a", // 𪖊
+ 0x2a58b: "\xd0\x0e\U0002a58b", // 𪖋
+ 0x2a58c: "\xd0\x10\U0002a58c", // 𪖌
+ 0x2a58d: "\xd0\x10\U0002a58d", // 𪖍
+ 0x2a58e: "\xd0\x11\U0002a58e", // 𪖎
+ 0x2a58f: "\xd0\x12\U0002a58f", // 𪖏
+ 0x2a590: "\xd1\x01\U0002a590", // 𪖐
+ 0x2a591: "\xd1\x02\U0002a591", // 𪖑
+ 0x2a592: "\xd1\x02\U0002a592", // 𪖒
+ 0x2a593: "\xd1\x03\U0002a593", // 𪖓
+ 0x2a594: "\xd1\x03\U0002a594", // 𪖔
+ 0x2a595: "\xd1\x04\U0002a595", // 𪖕
+ 0x2a596: "\xd1\x04\U0002a596", // 𪖖
+ 0x2a597: "\xd1\x04\U0002a597", // 𪖗
+ 0x2a598: "\xd1\x04\U0002a598", // 𪖘
+ 0x2a599: "\xd1\x04\U0002a599", // 𪖙
+ 0x2a59a: "\xd1\x05\U0002a59a", // 𪖚
+ 0x2a59b: "\xd1\x05\U0002a59b", // 𪖛
+ 0x2a59c: "\xd1\x05\U0002a59c", // 𪖜
+ 0x2a59d: "\xd1\x05\U0002a59d", // 𪖝
+ 0x2a59e: "\xd1\x05\U0002a59e", // 𪖞
+ 0x2a59f: "\xd1\x05\U0002a59f", // 𪖟
+ 0x2a5a0: "\xd1\x05\U0002a5a0", // 𪖠
+ 0x2a5a1: "\xd1\x06\U0002a5a1", // 𪖡
+ 0x2a5a2: "\xd1\x06\U0002a5a2", // 𪖢
+ 0x2a5a3: "\xd1\x06\U0002a5a3", // 𪖣
+ 0x2a5a4: "\xd1\x06\U0002a5a4", // 𪖤
+ 0x2a5a5: "\xd1\a\U0002a5a5", // 𪖥
+ 0x2a5a6: "\xd1\a\U0002a5a6", // 𪖦
+ 0x2a5a7: "\xd1\a\U0002a5a7", // 𪖧
+ 0x2a5a8: "\xd1\a\U0002a5a8", // 𪖨
+ 0x2a5a9: "\xd1\a\U0002a5a9", // 𪖩
+ 0x2a5aa: "\xd1\a\U0002a5aa", // 𪖪
+ 0x2a5ab: "\xd1\a\U0002a5ab", // 𪖫
+ 0x2a5ac: "\xd1\a\U0002a5ac", // 𪖬
+ 0x2a5ad: "\xd1\b\U0002a5ad", // 𪖭
+ 0x2a5ae: "\xd1\b\U0002a5ae", // 𪖮
+ 0x2a5af: "\xd1\t\U0002a5af", // 𪖯
+ 0x2a5b0: "\xd1\t\U0002a5b0", // 𪖰
+ 0x2a5b1: "\xd1\t\U0002a5b1", // 𪖱
+ 0x2a5b2: "\xd1\t\U0002a5b2", // 𪖲
+ 0x2a5b3: "\xd1\n\U0002a5b3", // 𪖳
+ 0x2a5b4: "\xd1\n\U0002a5b4", // 𪖴
+ 0x2a5b5: "\xd1\n\U0002a5b5", // 𪖵
+ 0x2a5b6: "\xd1\v\U0002a5b6", // 𪖶
+ 0x2a5b7: "\xd1\v\U0002a5b7", // 𪖷
+ 0x2a5b8: "\xd1\v\U0002a5b8", // 𪖸
+ 0x2a5b9: "\xd1\v\U0002a5b9", // 𪖹
+ 0x2a5ba: "\xd1\v\U0002a5ba", // 𪖺
+ 0x2a5bb: "\xd1\f\U0002a5bb", // 𪖻
+ 0x2a5bc: "\xd1\f\U0002a5bc", // 𪖼
+ 0x2a5bd: "\xd1\f\U0002a5bd", // 𪖽
+ 0x2a5be: "\xd1\r\U0002a5be", // 𪖾
+ 0x2a5bf: "\xd1\r\U0002a5bf", // 𪖿
+ 0x2a5c0: "\xd1\r\U0002a5c0", // 𪗀
+ 0x2a5c1: "\xd1\x10\U0002a5c1", // 𪗁
+ 0x2a5c2: "\xd1\x11\U0002a5c2", // 𪗂
+ 0x2a5c3: "\xd1\x12\U0002a5c3", // 𪗃
+ 0x2a5c4: "\xd2\x00\U0002a5c4", // 𪗄
+ 0x2a5c5: "\xd2\x02\U0002a5c5", // 𪗅
+ 0x2a5c6: "\xd2\x03\U0002a5c6", // 𪗆
+ 0x2a5c7: "\xd2\x04\U0002a5c7", // 𪗇
+ 0x2a5c8: "\xd2\x04\U0002a5c8", // 𪗈
+ 0x2a5c9: "\xd2\x05\U0002a5c9", // 𪗉
+ 0x2a5ca: "\xd2\x05\U0002a5ca", // 𪗊
+ 0x2a5cb: "\xd2\x06\U0002a5cb", // 𪗋
+ 0x2a5cc: "\xd2\x06\U0002a5cc", // 𪗌
+ 0x2a5cd: "\xd2\b\U0002a5cd", // 𪗍
+ 0x2a5ce: "\xd2\a\U0002a5ce", // 𪗎
+ 0x2a5cf: "\xd2\v\U0002a5cf", // 𪗏
+ 0x2a5d0: "\xd2\v\U0002a5d0", // 𪗐
+ 0x2a5d1: "\xd2\v\U0002a5d1", // 𪗑
+ 0x2a5d2: "\xd2\x0e\U0002a5d2", // 𪗒
+ 0x2a5d3: "\xd2\x10\U0002a5d3", // 𪗓
+ 0x2a5d4: "\xd3\x02\U0002a5d4", // 𪗔
+ 0x2a5d5: "\xd3\x02\U0002a5d5", // 𪗕
+ 0x2a5d6: "\xd3\x02\U0002a5d6", // 𪗖
+ 0x2a5d7: "\xd3\x02\U0002a5d7", // 𪗗
+ 0x2a5d8: "\xd3\x03\U0002a5d8", // 𪗘
+ 0x2a5d9: "\xd3\x03\U0002a5d9", // 𪗙
+ 0x2a5da: "\xd3\x03\U0002a5da", // 𪗚
+ 0x2a5db: "\xd3\x04\U0002a5db", // 𪗛
+ 0x2a5dc: "\xd3\x04\U0002a5dc", // 𪗜
+ 0x2a5dd: "\xd3\x04\U0002a5dd", // 𪗝
+ 0x2a5de: "\xd3\x04\U0002a5de", // 𪗞
+ 0x2a5df: "\xd3\x04\U0002a5df", // 𪗟
+ 0x2a5e0: "\xd3\x04\U0002a5e0", // 𪗠
+ 0x2a5e1: "\xd3\x04\U0002a5e1", // 𪗡
+ 0x2a5e2: "\xd3\x04\U0002a5e2", // 𪗢
+ 0x2a5e3: "\xd3\x04\U0002a5e3", // 𪗣
+ 0x2a5e4: "\xd3\x04\U0002a5e4", // 𪗤
+ 0x2a5e5: "\xd3\x05\U0002a5e5", // 𪗥
+ 0x2a5e6: "\xd3\x05\U0002a5e6", // 𪗦
+ 0x2a5e7: "\xd3\x05\U0002a5e7", // 𪗧
+ 0x2a5e8: "\xd3\x05\U0002a5e8", // 𪗨
+ 0x2a5e9: "\xd3\x05\U0002a5e9", // 𪗩
+ 0x2a5ea: "\xd3\x05\U0002a5ea", // 𪗪
+ 0x2a5eb: "\xd3\x05\U0002a5eb", // 𪗫
+ 0x2a5ec: "\xd3\x05\U0002a5ec", // 𪗬
+ 0x2a5ed: "\xd3\x05\U0002a5ed", // 𪗭
+ 0x2a5ee: "\xd3\x05\U0002a5ee", // 𪗮
+ 0x2a5ef: "\xd3\x05\U0002a5ef", // 𪗯
+ 0x2a5f0: "\xd3\x05\U0002a5f0", // 𪗰
+ 0x2a5f1: "\xd3\x05\U0002a5f1", // 𪗱
+ 0x2a5f2: "\xd3\x05\U0002a5f2", // 𪗲
+ 0x2a5f3: "\xd3\x05\U0002a5f3", // 𪗳
+ 0x2a5f4: "\xd3\x05\U0002a5f4", // 𪗴
+ 0x2a5f5: "\xd3\x05\U0002a5f5", // 𪗵
+ 0x2a5f6: "\xd3\x05\U0002a5f6", // 𪗶
+ 0x2a5f7: "\xd3\x06\U0002a5f7", // 𪗷
+ 0x2a5f8: "\xd3\x06\U0002a5f8", // 𪗸
+ 0x2a5f9: "\xd3\x06\U0002a5f9", // 𪗹
+ 0x2a5fa: "\xd3\x06\U0002a5fa", // 𪗺
+ 0x2a5fb: "\xd3\x06\U0002a5fb", // 𪗻
+ 0x2a5fc: "\xd3\x06\U0002a5fc", // 𪗼
+ 0x2a5fd: "\xd3\x06\U0002a5fd", // 𪗽
+ 0x2a5fe: "\xd3\x06\U0002a5fe", // 𪗾
+ 0x2a5ff: "\xd3\x06\U0002a5ff", // 𪗿
+ 0x2a600: "\xd3\x06\U0002a600", // 𪘀
+ 0x2a601: "\xd3\x06\U0002a601", // 𪘁
+ 0x2a602: "\xd3\x06\U0002a602", // 𪘂
+ 0x2a603: "\xd3\x06\U0002a603", // 𪘃
+ 0x2a604: "\xd3\x06\U0002a604", // 𪘄
+ 0x2a605: "\xd3\x06\U0002a605", // 𪘅
+ 0x2a606: "\xd3\x06\U0002a606", // 𪘆
+ 0x2a607: "\xd3\x06\U0002a607", // 𪘇
+ 0x2a608: "\xd3\x06\U0002a608", // 𪘈
+ 0x2a609: "\xd3\x06\U0002a609", // 𪘉
+ 0x2a60a: "\xd3\x06\U0002a60a", // 𪘊
+ 0x2a60b: "\xd3\x06\U0002a60b", // 𪘋
+ 0x2a60c: "\xd3\x06\U0002a60c", // 𪘌
+ 0x2a60d: "\xd3\x06\U0002a60d", // 𪘍
+ 0x2a60e: "\xd3\a\U0002a60e", // 𪘎
+ 0x2a60f: "\xd3\a\U0002a60f", // 𪘏
+ 0x2a610: "\xd3\a\U0002a610", // 𪘐
+ 0x2a611: "\xd3\a\U0002a611", // 𪘑
+ 0x2a612: "\xd3\a\U0002a612", // 𪘒
+ 0x2a613: "\xd3\a\U0002a613", // 𪘓
+ 0x2a614: "\xd3\a\U0002a614", // 𪘔
+ 0x2a615: "\xd3\a\U0002a615", // 𪘕
+ 0x2a616: "\xd3\a\U0002a616", // 𪘖
+ 0x2a617: "\xd3\a\U0002a617", // 𪘗
+ 0x2a618: "\xd3\a\U0002a618", // 𪘘
+ 0x2a619: "\xd3\a\U0002a619", // 𪘙
+ 0x2a61a: "\xd3\a\U0002a61a", // 𪘚
+ 0x2a61b: "\xd3\a\U0002a61b", // 𪘛
+ 0x2a61c: "\xd3\a\U0002a61c", // 𪘜
+ 0x2a61d: "\xd3\a\U0002a61d", // 𪘝
+ 0x2a61e: "\xd3\a\U0002a61e", // 𪘞
+ 0x2a61f: "\xd3\a\U0002a61f", // 𪘟
+ 0x2a620: "\xd3\a\U0002a620", // 𪘠
+ 0x2a621: "\xd3\a\U0002a621", // 𪘡
+ 0x2a622: "\xd3\a\U0002a622", // 𪘢
+ 0x2a623: "\xd3\a\U0002a623", // 𪘣
+ 0x2a624: "\xd3\a\U0002a624", // 𪘤
+ 0x2a625: "\xd3\b\U0002a625", // 𪘥
+ 0x2a626: "\xd3\b\U0002a626", // 𪘦
+ 0x2a627: "\xd3\b\U0002a627", // 𪘧
+ 0x2a628: "\xd3\b\U0002a628", // 𪘨
+ 0x2a629: "\xd3\b\U0002a629", // 𪘩
+ 0x2a62a: "\xd3\b\U0002a62a", // 𪘪
+ 0x2a62b: "\xd3\b\U0002a62b", // 𪘫
+ 0x2a62c: "\xd3\b\U0002a62c", // 𪘬
+ 0x2a62d: "\xd3\b\U0002a62d", // 𪘭
+ 0x2a62e: "\xd3\b\U0002a62e", // 𪘮
+ 0x2a62f: "\xd3\b\U0002a62f", // 𪘯
+ 0x2a630: "\xd3\b\U0002a630", // 𪘰
+ 0x2a631: "\xd3\b\U0002a631", // 𪘱
+ 0x2a632: "\xd3\b\U0002a632", // 𪘲
+ 0x2a633: "\xd3\b\U0002a633", // 𪘳
+ 0x2a634: "\xd3\b\U0002a634", // 𪘴
+ 0x2a635: "\xd3\b\U0002a635", // 𪘵
+ 0x2a636: "\xd3\b\U0002a636", // 𪘶
+ 0x2a637: "\xd3\b\U0002a637", // 𪘷
+ 0x2a638: "\xd3\b\U0002a638", // 𪘸
+ 0x2a639: "\xd3\t\U0002a639", // 𪘹
+ 0x2a63a: "\xd3\t\U0002a63a", // 𪘺
+ 0x2a63b: "\xd3\t\U0002a63b", // 𪘻
+ 0x2a63c: "\xd3\t\U0002a63c", // 𪘼
+ 0x2a63d: "\xd3\t\U0002a63d", // 𪘽
+ 0x2a63e: "\xd3\t\U0002a63e", // 𪘾
+ 0x2a63f: "\xd3\t\U0002a63f", // 𪘿
+ 0x2a640: "\xd3\t\U0002a640", // 𪙀
+ 0x2a641: "\xd3\t\U0002a641", // 𪙁
+ 0x2a642: "\xd3\t\U0002a642", // 𪙂
+ 0x2a643: "\xd3\t\U0002a643", // 𪙃
+ 0x2a644: "\xd3\t\U0002a644", // 𪙄
+ 0x2a645: "\xd3\t\U0002a645", // 𪙅
+ 0x2a646: "\xd3\t\U0002a646", // 𪙆
+ 0x2a647: "\xd3\t\U0002a647", // 𪙇
+ 0x2a648: "\xd3\t\U0002a648", // 𪙈
+ 0x2a649: "\xd3\n\U0002a649", // 𪙉
+ 0x2a64a: "\xd3\n\U0002a64a", // 𪙊
+ 0x2a64b: "\xd3\n\U0002a64b", // 𪙋
+ 0x2a64c: "\xd3\n\U0002a64c", // 𪙌
+ 0x2a64d: "\xd3\n\U0002a64d", // 𪙍
+ 0x2a64e: "\xd3\n\U0002a64e", // 𪙎
+ 0x2a64f: "\xd3\n\U0002a64f", // 𪙏
+ 0x2a650: "\xd3\n\U0002a650", // 𪙐
+ 0x2a651: "\xd3\n\U0002a651", // 𪙑
+ 0x2a652: "\xd3\n\U0002a652", // 𪙒
+ 0x2a653: "\xd3\n\U0002a653", // 𪙓
+ 0x2a654: "\xd3\n\U0002a654", // 𪙔
+ 0x2a655: "\xd3\n\U0002a655", // 𪙕
+ 0x2a656: "\xd3\n\U0002a656", // 𪙖
+ 0x2a657: "\xd3\n\U0002a657", // 𪙗
+ 0x2a658: "\xd3\n\U0002a658", // 𪙘
+ 0x2a659: "\xd3\n\U0002a659", // 𪙙
+ 0x2a65a: "\xd3\v\U0002a65a", // 𪙚
+ 0x2a65b: "\xd3\v\U0002a65b", // 𪙛
+ 0x2a65c: "\xd3\v\U0002a65c", // 𪙜
+ 0x2a65d: "\xd3\v\U0002a65d", // 𪙝
+ 0x2a65e: "\xd3\v\U0002a65e", // 𪙞
+ 0x2a65f: "\xd3\v\U0002a65f", // 𪙟
+ 0x2a660: "\xd3\v\U0002a660", // 𪙠
+ 0x2a661: "\xd3\v\U0002a661", // 𪙡
+ 0x2a662: "\xd3\v\U0002a662", // 𪙢
+ 0x2a663: "\xd3\f\U0002a663", // 𪙣
+ 0x2a664: "\xd3\f\U0002a664", // 𪙤
+ 0x2a665: "\xd3\f\U0002a665", // 𪙥
+ 0x2a666: "\xd3\f\U0002a666", // 𪙦
+ 0x2a667: "\xd3\f\U0002a667", // 𪙧
+ 0x2a668: "\xd3\f\U0002a668", // 𪙨
+ 0x2a669: "\xd3\f\U0002a669", // 𪙩
+ 0x2a66a: "\xd3\f\U0002a66a", // 𪙪
+ 0x2a66b: "\xd3\f\U0002a66b", // 𪙫
+ 0x2a66c: "\xd3\f\U0002a66c", // 𪙬
+ 0x2a66d: "\xd3\f\U0002a66d", // 𪙭
+ 0x2a66e: "\xd3\f\U0002a66e", // 𪙮
+ 0x2a66f: "\xd3\f\U0002a66f", // 𪙯
+ 0x2a670: "\xd3\r\U0002a670", // 𪙰
+ 0x2a671: "\xd3\r\U0002a671", // 𪙱
+ 0x2a672: "\xd3\r\U0002a672", // 𪙲
+ 0x2a673: "\xd3\r\U0002a673", // 𪙳
+ 0x2a674: "\xd3\r\U0002a674", // 𪙴
+ 0x2a675: "\xd3\r\U0002a675", // 𪙵
+ 0x2a676: "\xd3\x0e\U0002a676", // 𪙶
+ 0x2a677: "\xd3\x0f\U0002a677", // 𪙷
+ 0x2a678: "\xd3\x0f\U0002a678", // 𪙸
+ 0x2a679: "\xd3\x0f\U0002a679", // 𪙹
+ 0x2a67a: "\xd3\x0f\U0002a67a", // 𪙺
+ 0x2a67b: "\xd3\x0f\U0002a67b", // 𪙻
+ 0x2a67c: "\xd3\x0f\U0002a67c", // 𪙼
+ 0x2a67d: "\xd3\x10\U0002a67d", // 𪙽
+ 0x2a67e: "\xd3\x10\U0002a67e", // 𪙾
+ 0x2a67f: "\xd3\x10\U0002a67f", // 𪙿
+ 0x2a680: "\xd3\x10\U0002a680", // 𪚀
+ 0x2a681: "\xd3\x11\U0002a681", // 𪚁
+ 0x2a682: "\xd3\x11\U0002a682", // 𪚂
+ 0x2a683: "\xd3\x11\U0002a683", // 𪚃
+ 0x2a684: "\xd3\x11\U0002a684", // 𪚄
+ 0x2a685: "\xd3\x12\U0002a685", // 𪚅
+ 0x2a686: "\xd3\x13\U0002a686", // 𪚆
+ 0x2a687: "\xd3\x13\U0002a687", // 𪚇
+ 0x2a688: "\xd3\x13\U0002a688", // 𪚈
+ 0x2a689: "\xd3\x13\U0002a689", // 𪚉
+ 0x2a68a: "\xd3\x14\U0002a68a", // 𪚊
+ 0x2a68b: "\xd3\x14\U0002a68b", // 𪚋
+ 0x2a68c: "\xd3\x15\U0002a68c", // 𪚌
+ 0x2a68d: "\xd3\x19\U0002a68d", // 𪚍
+ 0x2a68e: "\xd3\x19\U0002a68e", // 𪚎
+ 0x2a68f: "\xd3\x06\U0002a68f", // 𪚏
+ 0x2a690: "\xd3\b\U0002a690", // 𪚐
+ 0x2a691: "\xd4\x03\U0002a691", // 𪚑
+ 0x2a692: "\xd4\x03\U0002a692", // 𪚒
+ 0x2a693: "\xd4\x03\U0002a693", // 𪚓
+ 0x2a694: "\xd4\x03\U0002a694", // 𪚔
+ 0x2a695: "\xd4\x04\U0002a695", // 𪚕
+ 0x2a696: "\xd4\x04\U0002a696", // 𪚖
+ 0x2a697: "\xd4\x04\U0002a697", // 𪚗
+ 0x2a698: "\xd4\x04\U0002a698", // 𪚘
+ 0x2a699: "\xd4\x05\U0002a699", // 𪚙
+ 0x2a69a: "\xd4\x04\U0002a69a", // 𪚚
+ 0x2a69b: "\xd4\x04\U0002a69b", // 𪚛
+ 0x2a69c: "\xd4\x06\U0002a69c", // 𪚜
+ 0x2a69d: "\xd4\x06\U0002a69d", // 𪚝
+ 0x2a69e: "\xd4\x06\U0002a69e", // 𪚞
+ 0x2a69f: "\xd4\x06\U0002a69f", // 𪚟
+ 0x2a6a0: "\xd4\a\U0002a6a0", // 𪚠
+ 0x2a6a1: "\xd4\a\U0002a6a1", // 𪚡
+ 0x2a6a2: "\xd4\t\U0002a6a2", // 𪚢
+ 0x2a6a3: "\xd4\v\U0002a6a3", // 𪚣
+ 0x2a6a4: "\xd4\v\U0002a6a4", // 𪚤
+ 0x2a6a5: "\xd40\U0002a6a5", // 𪚥
+ 0x2a6a6: "\xd5\x00\U0002a6a6", // 𪚦
+ 0x2a6a7: "\xd5\x05\U0002a6a7", // 𪚧
+ 0x2a6a8: "\xd5\x02\U0002a6a8", // 𪚨
+ 0x2a6a9: "\xd5\x03\U0002a6a9", // 𪚩
+ 0x2a6aa: "\xd5\x03\U0002a6aa", // 𪚪
+ 0x2a6ab: "\xd5\x04\U0002a6ab", // 𪚫
+ 0x2a6ac: "\xd5\x04\U0002a6ac", // 𪚬
+ 0x2a6ad: "\xd5\x04\U0002a6ad", // 𪚭
+ 0x2a6ae: "\xd5\x04\U0002a6ae", // 𪚮
+ 0x2a6af: "\xd5\x04\U0002a6af", // 𪚯
+ 0x2a6b0: "\xd5\x04\U0002a6b0", // 𪚰
+ 0x2a6b1: "\xd5\x04\U0002a6b1", // 𪚱
+ 0x2a6b2: "\xd5\x04\U0002a6b2", // 𪚲
+ 0x2a6b3: "\xd5\x04\U0002a6b3", // 𪚳
+ 0x2a6b4: "\xd5\x04\U0002a6b4", // 𪚴
+ 0x2a6b5: "\xd5\x04\U0002a6b5", // 𪚵
+ 0x2a6b6: "\xd5\x05\U0002a6b6", // 𪚶
+ 0x2a6b7: "\xd5\x05\U0002a6b7", // 𪚷
+ 0x2a6b8: "\xd5\x05\U0002a6b8", // 𪚸
+ 0x2a6b9: "\xd5\x05\U0002a6b9", // 𪚹
+ 0x2a6ba: "\xd5\x05\U0002a6ba", // 𪚺
+ 0x2a6bb: "\xd5\x05\U0002a6bb", // 𪚻
+ 0x2a6bc: "\xd5\x05\U0002a6bc", // 𪚼
+ 0x2a6bd: "\xd5\x05\U0002a6bd", // 𪚽
+ 0x2a6be: "\xd5\a\U0002a6be", // 𪚾
+ 0x2a6bf: "\xd5\a\U0002a6bf", // 𪚿
+ 0x2a6c0: "\xd5\b\U0002a6c0", // 𪛀
+ 0x2a6c1: "\xd5\t\U0002a6c1", // 𪛁
+ 0x2a6c2: "\xd5\v\U0002a6c2", // 𪛂
+ 0x2a6c3: "\xd5\v\U0002a6c3", // 𪛃
+ 0x2a6c4: "\xd5\v\U0002a6c4", // 𪛄
+ 0x2a6c5: "\xd5\f\U0002a6c5", // 𪛅
+ 0x2a6c6: "\xd5\f\U0002a6c6", // 𪛆
+ 0x2a6c7: "\xd5\x0e\U0002a6c7", // 𪛇
+ 0x2a6c8: "\xd5\x11\U0002a6c8", // 𪛈
+ 0x2a6c9: "\xd5\x00\U0002a6c9", // 𪛉
+ 0x2a6ca: "\xd6\x04\U0002a6ca", // 𪛊
+ 0x2a6cb: "\xd6\b\U0002a6cb", // 𪛋
+ 0x2a6cc: "\xd6\b\U0002a6cc", // 𪛌
+ 0x2a6cd: "\xd6\b\U0002a6cd", // 𪛍
+ 0x2a6ce: "\xd6\t\U0002a6ce", // 𪛎
+ 0x2a6cf: "\xd6\t\U0002a6cf", // 𪛏
+ 0x2a6d0: "\xd6\t\U0002a6d0", // 𪛐
+ 0x2a6d1: "\xd6\t\U0002a6d1", // 𪛑
+ 0x2a6d2: "\xd6\n\U0002a6d2", // 𪛒
+ 0x2a6d3: "\xd6\v\U0002a6d3", // 𪛓
+ 0x2a6d4: "\xd6\x0e\U0002a6d4", // 𪛔
+ 0x2a6d5: "\xd6\x10\U0002a6d5", // 𪛕
+ 0x2a6d6: "\xd6\x14\U0002a6d6", // 𪛖
+ 0x2a700: "\x01\x02\U0002a700", // 𪜀
+ 0x2a701: "\x01\x02\U0002a701", // 𪜁
+ 0x2a702: "\x01\x03\U0002a702", // 𪜂
+ 0x2a703: "\x01\a\U0002a703", // 𪜃
+ 0x2a704: "\x01\b\U0002a704", // 𪜄
+ 0x2a705: "\x01\t\U0002a705", // 𪜅
+ 0x2a706: "\x01\n\U0002a706", // 𪜆
+ 0x2a707: "\x01\x0f\U0002a707", // 𪜇
+ 0x2a708: "\x02\x03\U0002a708", // 𪜈
+ 0x2a709: "\x02\b\U0002a709", // 𪜉
+ 0x2a70a: "\x03\x01\U0002a70a", // 𪜊
+ 0x2a70b: "\x03\a\U0002a70b", // 𪜋
+ 0x2a70c: "\x04\x05\U0002a70c", // 𪜌
+ 0x2a70d: "\x04\b\U0002a70d", // 𪜍
+ 0x2a70e: "\x04\t\U0002a70e", // 𪜎
+ 0x2a70f: "\x04\t\U0002a70f", // 𪜏
+ 0x2a710: "\x05\x04\U0002a710", // 𪜐
+ 0x2a711: "\x05\x05\U0002a711", // 𪜑
+ 0x2a712: "\x05\x06\U0002a712", // 𪜒
+ 0x2a713: "\x05\x06\U0002a713", // 𪜓
+ 0x2a714: "\x05\a\U0002a714", // 𪜔
+ 0x2a715: "\x05\b\U0002a715", // 𪜕
+ 0x2a716: "\x05\t\U0002a716", // 𪜖
+ 0x2a717: "\x05\t\U0002a717", // 𪜗
+ 0x2a718: "\x05\n\U0002a718", // 𪜘
+ 0x2a719: "\x05\v\U0002a719", // 𪜙
+ 0x2a71a: "\x05\v\U0002a71a", // 𪜚
+ 0x2a71b: "\x05\f\U0002a71b", // 𪜛
+ 0x2a71c: "\x06\x06\U0002a71c", // 𪜜
+ 0x2a71d: "\x06\v\U0002a71d", // 𪜝
+ 0x2a71e: "\a\f\U0002a71e", // 𪜞
+ 0x2a71f: "\a\r\U0002a71f", // 𪜟
+ 0x2a720: "\b\x03\U0002a720", // 𪜠
+ 0x2a721: "\b\x03\U0002a721", // 𪜡
+ 0x2a722: "\b\x05\U0002a722", // 𪜢
+ 0x2a723: "\b\t\U0002a723", // 𪜣
+ 0x2a724: "\b\n\U0002a724", // 𪜤
+ 0x2a725: "\b\r\U0002a725", // 𪜥
+ 0x2a726: "\b\x11\U0002a726", // 𪜦
+ 0x2a727: "\t\x02\U0002a727", // 𪜧
+ 0x2a728: "\t\x04\U0002a728", // 𪜨
+ 0x2a729: "\t\x04\U0002a729", // 𪜩
+ 0x2a72a: "\t\x04\U0002a72a", // 𪜪
+ 0x2a72b: "\t\x04\U0002a72b", // 𪜫
+ 0x2a72c: "\t\x05\U0002a72c", // 𪜬
+ 0x2a72d: "\t\x05\U0002a72d", // 𪜭
+ 0x2a72e: "\t\x05\U0002a72e", // 𪜮
+ 0x2a72f: "\t\x05\U0002a72f", // 𪜯
+ 0x2a730: "\t\x05\U0002a730", // 𪜰
+ 0x2a731: "\t\x05\U0002a731", // 𪜱
+ 0x2a732: "\t\x05\U0002a732", // 𪜲
+ 0x2a733: "\t\x05\U0002a733", // 𪜳
+ 0x2a734: "\t\x05\U0002a734", // 𪜴
+ 0x2a735: "\t\x06\U0002a735", // 𪜵
+ 0x2a736: "\t\x06\U0002a736", // 𪜶
+ 0x2a737: "\t\x06\U0002a737", // 𪜷
+ 0x2a738: "\t\x06\U0002a738", // 𪜸
+ 0x2a739: "\t\x06\U0002a739", // 𪜹
+ 0x2a73a: "\t\x06\U0002a73a", // 𪜺
+ 0x2a73b: "\t\a\U0002a73b", // 𪜻
+ 0x2a73c: "\t\a\U0002a73c", // 𪜼
+ 0x2a73d: "\t\a\U0002a73d", // 𪜽
+ 0x2a73e: "\t\a\U0002a73e", // 𪜾
+ 0x2a73f: "\t\a\U0002a73f", // 𪜿
+ 0x2a740: "\t\a\U0002a740", // 𪝀
+ 0x2a741: "\t\a\U0002a741", // 𪝁
+ 0x2a742: "\t\a\U0002a742", // 𪝂
+ 0x2a743: "\t\b\U0002a743", // 𪝃
+ 0x2a744: "\t\b\U0002a744", // 𪝄
+ 0x2a745: "\t\b\U0002a745", // 𪝅
+ 0x2a746: "\t\b\U0002a746", // 𪝆
+ 0x2a747: "\t\b\U0002a747", // 𪝇
+ 0x2a748: "\t\b\U0002a748", // 𪝈
+ 0x2a749: "\t\b\U0002a749", // 𪝉
+ 0x2a74a: "\t\b\U0002a74a", // 𪝊
+ 0x2a74b: "\t\t\U0002a74b", // 𪝋
+ 0x2a74c: "\t\t\U0002a74c", // 𪝌
+ 0x2a74d: "\t\t\U0002a74d", // 𪝍
+ 0x2a74e: "\t\t\U0002a74e", // 𪝎
+ 0x2a74f: "\t\t\U0002a74f", // 𪝏
+ 0x2a750: "\t\t\U0002a750", // 𪝐
+ 0x2a751: "\t\t\U0002a751", // 𪝑
+ 0x2a752: "\t\t\U0002a752", // 𪝒
+ 0x2a753: "\t\t\U0002a753", // 𪝓
+ 0x2a754: "\t\t\U0002a754", // 𪝔
+ 0x2a755: "\t\t\U0002a755", // 𪝕
+ 0x2a756: "\t\n\U0002a756", // 𪝖
+ 0x2a757: "\t\n\U0002a757", // 𪝗
+ 0x2a758: "\t\n\U0002a758", // 𪝘
+ 0x2a759: "\t\n\U0002a759", // 𪝙
+ 0x2a75a: "\t\n\U0002a75a", // 𪝚
+ 0x2a75b: "\t\n\U0002a75b", // 𪝛
+ 0x2a75c: "\t\n\U0002a75c", // 𪝜
+ 0x2a75d: "\t\n\U0002a75d", // 𪝝
+ 0x2a75e: "\t\n\U0002a75e", // 𪝞
+ 0x2a75f: "\t\n\U0002a75f", // 𪝟
+ 0x2a760: "\t\v\U0002a760", // 𪝠
+ 0x2a761: "\t\v\U0002a761", // 𪝡
+ 0x2a762: "\t\v\U0002a762", // 𪝢
+ 0x2a763: "\t\v\U0002a763", // 𪝣
+ 0x2a764: "\t\v\U0002a764", // 𪝤
+ 0x2a765: "\t\f\U0002a765", // 𪝥
+ 0x2a766: "\t\f\U0002a766", // 𪝦
+ 0x2a767: "\t\f\U0002a767", // 𪝧
+ 0x2a768: "\t\f\U0002a768", // 𪝨
+ 0x2a769: "\t\f\U0002a769", // 𪝩
+ 0x2a76a: "\t\f\U0002a76a", // 𪝪
+ 0x2a76b: "\t\r\U0002a76b", // 𪝫
+ 0x2a76c: "\t\r\U0002a76c", // 𪝬
+ 0x2a76d: "\t\r\U0002a76d", // 𪝭
+ 0x2a76e: "\t\r\U0002a76e", // 𪝮
+ 0x2a76f: "\t\r\U0002a76f", // 𪝯
+ 0x2a770: "\t\x0e\U0002a770", // 𪝰
+ 0x2a771: "\t\x0e\U0002a771", // 𪝱
+ 0x2a772: "\t\x0e\U0002a772", // 𪝲
+ 0x2a773: "\t\x0e\U0002a773", // 𪝳
+ 0x2a774: "\t\x0f\U0002a774", // 𪝴
+ 0x2a775: "\t\x0f\U0002a775", // 𪝵
+ 0x2a776: "\t\x0f\U0002a776", // 𪝶
+ 0x2a777: "\t\x10\U0002a777", // 𪝷
+ 0x2a778: "\t\x10\U0002a778", // 𪝸
+ 0x2a779: "\t\x10\U0002a779", // 𪝹
+ 0x2a77a: "\t\x11\U0002a77a", // 𪝺
+ 0x2a77b: "\t\x11\U0002a77b", // 𪝻
+ 0x2a77c: "\t\x11\U0002a77c", // 𪝼
+ 0x2a77d: "\t\x12\U0002a77d", // 𪝽
+ 0x2a77e: "\t\x13\U0002a77e", // 𪝾
+ 0x2a77f: "\n\x06\U0002a77f", // 𪝿
+ 0x2a780: "\n\a\U0002a780", // 𪞀
+ 0x2a781: "\n\b\U0002a781", // 𪞁
+ 0x2a782: "\n\v\U0002a782", // 𪞂
+ 0x2a783: "\n\r\U0002a783", // 𪞃
+ 0x2a784: "\n\r\U0002a784", // 𪞄
+ 0x2a785: "\n\r\U0002a785", // 𪞅
+ 0x2a786: "\n\x11\U0002a786", // 𪞆
+ 0x2a787: "\v\b\U0002a787", // 𪞇
+ 0x2a788: "\f\x04\U0002a788", // 𪞈
+ 0x2a789: "\f\n\U0002a789", // 𪞉
+ 0x2a78a: "\f\v\U0002a78a", // 𪞊
+ 0x2a78b: "\f\f\U0002a78b", // 𪞋
+ 0x2a78c: "\f\r\U0002a78c", // 𪞌
+ 0x2a78d: "\f\x0e\U0002a78d", // 𪞍
+ 0x2a78e: "\r\x05\U0002a78e", // 𪞎
+ 0x2a78f: "\x0e\x05\U0002a78f", // 𪞏
+ 0x2a790: "\x0e\x05\U0002a790", // 𪞐
+ 0x2a791: "\x0e\x06\U0002a791", // 𪞑
+ 0x2a792: "\x0e\b\U0002a792", // 𪞒
+ 0x2a793: "\x0e\t\U0002a793", // 𪞓
+ 0x2a794: "\x0e\n\U0002a794", // 𪞔
+ 0x2a795: "\x0e\f\U0002a795", // 𪞕
+ 0x2a796: "\x0f\x03\U0002a796", // 𪞖
+ 0x2a797: "\x0f\x04\U0002a797", // 𪞗
+ 0x2a798: "\x0f\x04\U0002a798", // 𪞘
+ 0x2a799: "\x0f\x04\U0002a799", // 𪞙
+ 0x2a79a: "\x0f\x04\U0002a79a", // 𪞚
+ 0x2a79b: "\x0f\x05\U0002a79b", // 𪞛
+ 0x2a79c: "\x0f\x05\U0002a79c", // 𪞜
+ 0x2a79d: "\x0f\x05\U0002a79d", // 𪞝
+ 0x2a79e: "\x0f\x06\U0002a79e", // 𪞞
+ 0x2a79f: "\x0f\a\U0002a79f", // 𪞟
+ 0x2a7a0: "\x0f\a\U0002a7a0", // 𪞠
+ 0x2a7a1: "\x0f\a\U0002a7a1", // 𪞡
+ 0x2a7a2: "\x0f\b\U0002a7a2", // 𪞢
+ 0x2a7a3: "\x0f\b\U0002a7a3", // 𪞣
+ 0x2a7a4: "\x0f\b\U0002a7a4", // 𪞤
+ 0x2a7a5: "\x0f\b\U0002a7a5", // 𪞥
+ 0x2a7a6: "\x0f\t\U0002a7a6", // 𪞦
+ 0x2a7a7: "\x0f\t\U0002a7a7", // 𪞧
+ 0x2a7a8: "\x0f\t\U0002a7a8", // 𪞨
+ 0x2a7a9: "\x0f\n\U0002a7a9", // 𪞩
+ 0x2a7aa: "\x0f\n\U0002a7aa", // 𪞪
+ 0x2a7ab: "\x0f\v\U0002a7ab", // 𪞫
+ 0x2a7ac: "\x0f\v\U0002a7ac", // 𪞬
+ 0x2a7ad: "\x0f\f\U0002a7ad", // 𪞭
+ 0x2a7ae: "\x0f\r\U0002a7ae", // 𪞮
+ 0x2a7af: "\x0f\x0e\U0002a7af", // 𪞯
+ 0x2a7b0: "\x0f\x12\U0002a7b0", // 𪞰
+ 0x2a7b1: "\x10\x04\U0002a7b1", // 𪞱
+ 0x2a7b2: "\x10\x05\U0002a7b2", // 𪞲
+ 0x2a7b3: "\x10\b\U0002a7b3", // 𪞳
+ 0x2a7b4: "\x10\t\U0002a7b4", // 𪞴
+ 0x2a7b5: "\x10\v\U0002a7b5", // 𪞵
+ 0x2a7b6: "\x11\x03\U0002a7b6", // 𪞶
+ 0x2a7b7: "\x11\x06\U0002a7b7", // 𪞷
+ 0x2a7b8: "\x11\b\U0002a7b8", // 𪞸
+ 0x2a7b9: "\x11\n\U0002a7b9", // 𪞹
+ 0x2a7ba: "\x11\v\U0002a7ba", // 𪞺
+ 0x2a7bb: "\x11\v\U0002a7bb", // 𪞻
+ 0x2a7bc: "\x11\x10\U0002a7bc", // 𪞼
+ 0x2a7bd: "\x11\x11\U0002a7bd", // 𪞽
+ 0x2a7be: "\x12\x04\U0002a7be", // 𪞾
+ 0x2a7bf: "\x12\x04\U0002a7bf", // 𪞿
+ 0x2a7c0: "\x12\x04\U0002a7c0", // 𪟀
+ 0x2a7c1: "\x12\x05\U0002a7c1", // 𪟁
+ 0x2a7c2: "\x12\x05\U0002a7c2", // 𪟂
+ 0x2a7c3: "\x12\x06\U0002a7c3", // 𪟃
+ 0x2a7c4: "\x12\x06\U0002a7c4", // 𪟄
+ 0x2a7c5: "\x12\x06\U0002a7c5", // 𪟅
+ 0x2a7c6: "\x12\a\U0002a7c6", // 𪟆
+ 0x2a7c7: "\x12\a\U0002a7c7", // 𪟇
+ 0x2a7c8: "\x12\b\U0002a7c8", // 𪟈
+ 0x2a7c9: "\x12\b\U0002a7c9", // 𪟉
+ 0x2a7ca: "\x12\t\U0002a7ca", // 𪟊
+ 0x2a7cb: "\x12\t\U0002a7cb", // 𪟋
+ 0x2a7cc: "\x12\t\U0002a7cc", // 𪟌
+ 0x2a7cd: "\x12\t\U0002a7cd", // 𪟍
+ 0x2a7ce: "\x12\n\U0002a7ce", // 𪟎
+ 0x2a7cf: "\x12\n\U0002a7cf", // 𪟏
+ 0x2a7d0: "\x12\n\U0002a7d0", // 𪟐
+ 0x2a7d1: "\x12\v\U0002a7d1", // 𪟑
+ 0x2a7d2: "\x12\v\U0002a7d2", // 𪟒
+ 0x2a7d3: "\x12\v\U0002a7d3", // 𪟓
+ 0x2a7d4: "\x12\r\U0002a7d4", // 𪟔
+ 0x2a7d5: "\x12\x0e\U0002a7d5", // 𪟕
+ 0x2a7d6: "\x12\x0e\U0002a7d6", // 𪟖
+ 0x2a7d7: "\x13\x05\U0002a7d7", // 𪟗
+ 0x2a7d8: "\x13\x05\U0002a7d8", // 𪟘
+ 0x2a7d9: "\x13\x05\U0002a7d9", // 𪟙
+ 0x2a7da: "\x13\x06\U0002a7da", // 𪟚
+ 0x2a7db: "\x13\x06\U0002a7db", // 𪟛
+ 0x2a7dc: "\x13\a\U0002a7dc", // 𪟜
+ 0x2a7dd: "\x13\b\U0002a7dd", // 𪟝
+ 0x2a7de: "\x13\b\U0002a7de", // 𪟞
+ 0x2a7df: "\x13\b\U0002a7df", // 𪟟
+ 0x2a7e0: "\x13\t\U0002a7e0", // 𪟠
+ 0x2a7e1: "\x13\n\U0002a7e1", // 𪟡
+ 0x2a7e2: "\x13\n\U0002a7e2", // 𪟢
+ 0x2a7e3: "\x13\v\U0002a7e3", // 𪟣
+ 0x2a7e4: "\x13\f\U0002a7e4", // 𪟤
+ 0x2a7e5: "\x13\f\U0002a7e5", // 𪟥
+ 0x2a7e6: "\x13\r\U0002a7e6", // 𪟦
+ 0x2a7e7: "\x13\x13\U0002a7e7", // 𪟧
+ 0x2a7e8: "\x15\x01\U0002a7e8", // 𪟨
+ 0x2a7e9: "\x15\x04\U0002a7e9", // 𪟩
+ 0x2a7ea: "\x15\a\U0002a7ea", // 𪟪
+ 0x2a7eb: "\x15\v\U0002a7eb", // 𪟫
+ 0x2a7ec: "\x16\x04\U0002a7ec", // 𪟬
+ 0x2a7ed: "\x16\x05\U0002a7ed", // 𪟭
+ 0x2a7ee: "\x16\x05\U0002a7ee", // 𪟮
+ 0x2a7ef: "\x16\a\U0002a7ef", // 𪟯
+ 0x2a7f0: "\x16\b\U0002a7f0", // 𪟰
+ 0x2a7f1: "\x16\f\U0002a7f1", // 𪟱
+ 0x2a7f2: "\x16\x12\U0002a7f2", // 𪟲
+ 0x2a7f3: "\x18\x05\U0002a7f3", // 𪟳
+ 0x2a7f4: "\x18\b\U0002a7f4", // 𪟴
+ 0x2a7f5: "\x18\t\U0002a7f5", // 𪟵
+ 0x2a7f6: "\x18\v\U0002a7f6", // 𪟶
+ 0x2a7f7: "\x18\f\U0002a7f7", // 𪟷
+ 0x2a7f8: "\x18\r\U0002a7f8", // 𪟸
+ 0x2a7f9: "\x18\r\U0002a7f9", // 𪟹
+ 0x2a7fa: "\x18\x0f\U0002a7fa", // 𪟺
+ 0x2a7fb: "\x18\x10\U0002a7fb", // 𪟻
+ 0x2a7fc: "\x18\x12\U0002a7fc", // 𪟼
+ 0x2a7fd: "\x19\x02\U0002a7fd", // 𪟽
+ 0x2a7fe: "\x19\x05\U0002a7fe", // 𪟾
+ 0x2a7ff: "\x19\b\U0002a7ff", // 𪟿
+ 0x2a800: "\x19\f\U0002a800", // 𪠀
+ 0x2a801: "\x1a\x06\U0002a801", // 𪠁
+ 0x2a802: "\x1a\a\U0002a802", // 𪠂
+ 0x2a803: "\x1b\x03\U0002a803", // 𪠃
+ 0x2a804: "\x1b\x05\U0002a804", // 𪠄
+ 0x2a805: "\x1b\x06\U0002a805", // 𪠅
+ 0x2a806: "\x1b\x06\U0002a806", // 𪠆
+ 0x2a807: "\x1b\a\U0002a807", // 𪠇
+ 0x2a808: "\x1b\a\U0002a808", // 𪠈
+ 0x2a809: "\x1b\a\U0002a809", // 𪠉
+ 0x2a80a: "\x1b\a\U0002a80a", // 𪠊
+ 0x2a80b: "\x1b\b\U0002a80b", // 𪠋
+ 0x2a80c: "\x1b\b\U0002a80c", // 𪠌
+ 0x2a80d: "\x1b\b\U0002a80d", // 𪠍
+ 0x2a80e: "\x1b\b\U0002a80e", // 𪠎
+ 0x2a80f: "\x1b\t\U0002a80f", // 𪠏
+ 0x2a810: "\x1b\t\U0002a810", // 𪠐
+ 0x2a811: "\x1b\n\U0002a811", // 𪠑
+ 0x2a812: "\x1b\n\U0002a812", // 𪠒
+ 0x2a813: "\x1b\v\U0002a813", // 𪠓
+ 0x2a814: "\x1b\v\U0002a814", // 𪠔
+ 0x2a815: "\x1b\v\U0002a815", // 𪠕
+ 0x2a816: "\x1b\f\U0002a816", // 𪠖
+ 0x2a817: "\x1b\f\U0002a817", // 𪠗
+ 0x2a818: "\x1b\r\U0002a818", // 𪠘
+ 0x2a819: "\x1b\r\U0002a819", // 𪠙
+ 0x2a81a: "\x1b\x0f\U0002a81a", // 𪠚
+ 0x2a81b: "\x1b\x12\U0002a81b", // 𪠛
+ 0x2a81c: "\x1c\a\U0002a81c", // 𪠜
+ 0x2a81d: "\x1c\b\U0002a81d", // 𪠝
+ 0x2a81e: "\x1c\t\U0002a81e", // 𪠞
+ 0x2a81f: "\x1c\n\U0002a81f", // 𪠟
+ 0x2a820: "\x1c\v\U0002a820", // 𪠠
+ 0x2a821: "\x1c\r\U0002a821", // 𪠡
+ 0x2a822: "\x1c\x12\U0002a822", // 𪠢
+ 0x2a823: "\x1d\x02\U0002a823", // 𪠣
+ 0x2a824: "\x1d\x02\U0002a824", // 𪠤
+ 0x2a825: "\x1d\x04\U0002a825", // 𪠥
+ 0x2a826: "\x1d\x05\U0002a826", // 𪠦
+ 0x2a827: "\x1d\x06\U0002a827", // 𪠧
+ 0x2a828: "\x1d\x06\U0002a828", // 𪠨
+ 0x2a829: "\x1d\a\U0002a829", // 𪠩
+ 0x2a82a: "\x1d\a\U0002a82a", // 𪠪
+ 0x2a82b: "\x1d\b\U0002a82b", // 𪠫
+ 0x2a82c: "\x1d\b\U0002a82c", // 𪠬
+ 0x2a82d: "\x1d\n\U0002a82d", // 𪠭
+ 0x2a82e: "\x1d\n\U0002a82e", // 𪠮
+ 0x2a82f: "\x1d\v\U0002a82f", // 𪠯
+ 0x2a830: "\x1d\f\U0002a830", // 𪠰
+ 0x2a831: "\x1d\x0e\U0002a831", // 𪠱
+ 0x2a832: "\x1e\x02\U0002a832", // 𪠲
+ 0x2a833: "\x1e\x04\U0002a833", // 𪠳
+ 0x2a834: "\x1e\x04\U0002a834", // 𪠴
+ 0x2a835: "\x1e\x04\U0002a835", // 𪠵
+ 0x2a836: "\x1e\x05\U0002a836", // 𪠶
+ 0x2a837: "\x1e\x05\U0002a837", // 𪠷
+ 0x2a838: "\x1e\x05\U0002a838", // 𪠸
+ 0x2a839: "\x1e\x05\U0002a839", // 𪠹
+ 0x2a83a: "\x1e\x06\U0002a83a", // 𪠺
+ 0x2a83b: "\x1e\x06\U0002a83b", // 𪠻
+ 0x2a83c: "\x1e\x06\U0002a83c", // 𪠼
+ 0x2a83d: "\x1e\x06\U0002a83d", // 𪠽
+ 0x2a83e: "\x1e\x06\U0002a83e", // 𪠾
+ 0x2a83f: "\x1e\x06\U0002a83f", // 𪠿
+ 0x2a840: "\x1e\x06\U0002a840", // 𪡀
+ 0x2a841: "\x1e\x06\U0002a841", // 𪡁
+ 0x2a842: "\x1e\x06\U0002a842", // 𪡂
+ 0x2a843: "\x1e\x06\U0002a843", // 𪡃
+ 0x2a844: "\x1e\a\U0002a844", // 𪡄
+ 0x2a845: "\x1e\a\U0002a845", // 𪡅
+ 0x2a846: "\x1e\a\U0002a846", // 𪡆
+ 0x2a847: "\x1e\a\U0002a847", // 𪡇
+ 0x2a848: "\x1e\a\U0002a848", // 𪡈
+ 0x2a849: "\x1e\a\U0002a849", // 𪡉
+ 0x2a84a: "\x1e\a\U0002a84a", // 𪡊
+ 0x2a84b: "\x1e\a\U0002a84b", // 𪡋
+ 0x2a84c: "\x1e\a\U0002a84c", // 𪡌
+ 0x2a84d: "\x1e\a\U0002a84d", // 𪡍
+ 0x2a84e: "\x1e\a\U0002a84e", // 𪡎
+ 0x2a84f: "\x1e\b\U0002a84f", // 𪡏
+ 0x2a850: "\x1e\b\U0002a850", // 𪡐
+ 0x2a851: "\x1e\b\U0002a851", // 𪡑
+ 0x2a852: "\x1e\b\U0002a852", // 𪡒
+ 0x2a853: "\x1e\b\U0002a853", // 𪡓
+ 0x2a854: "\x1e\b\U0002a854", // 𪡔
+ 0x2a855: "\x1e\b\U0002a855", // 𪡕
+ 0x2a856: "\x1e\b\U0002a856", // 𪡖
+ 0x2a857: "\x1e\b\U0002a857", // 𪡗
+ 0x2a858: "\x1e\b\U0002a858", // 𪡘
+ 0x2a859: "\x1e\b\U0002a859", // 𪡙
+ 0x2a85a: "\x1e\b\U0002a85a", // 𪡚
+ 0x2a85b: "\x1e\b\U0002a85b", // 𪡛
+ 0x2a85c: "\x1e\t\U0002a85c", // 𪡜
+ 0x2a85d: "\x1e\t\U0002a85d", // 𪡝
+ 0x2a85e: "\x1e\t\U0002a85e", // 𪡞
+ 0x2a85f: "\x1e\t\U0002a85f", // 𪡟
+ 0x2a860: "\x1e\t\U0002a860", // 𪡠
+ 0x2a861: "\x1e\t\U0002a861", // 𪡡
+ 0x2a862: "\x1e\t\U0002a862", // 𪡢
+ 0x2a863: "\x1e\t\U0002a863", // 𪡣
+ 0x2a864: "\x1e\t\U0002a864", // 𪡤
+ 0x2a865: "\x1e\t\U0002a865", // 𪡥
+ 0x2a866: "\x1e\t\U0002a866", // 𪡦
+ 0x2a867: "\x1e\t\U0002a867", // 𪡧
+ 0x2a868: "\x1e\t\U0002a868", // 𪡨
+ 0x2a869: "\x1e\t\U0002a869", // 𪡩
+ 0x2a86a: "\x1e\n\U0002a86a", // 𪡪
+ 0x2a86b: "\x1e\n\U0002a86b", // 𪡫
+ 0x2a86c: "\x1e\n\U0002a86c", // 𪡬
+ 0x2a86d: "\x1e\n\U0002a86d", // 𪡭
+ 0x2a86e: "\x1e\n\U0002a86e", // 𪡮
+ 0x2a86f: "\x1e\n\U0002a86f", // 𪡯
+ 0x2a870: "\x1e\n\U0002a870", // 𪡰
+ 0x2a871: "\x1e\n\U0002a871", // 𪡱
+ 0x2a872: "\x1e\n\U0002a872", // 𪡲
+ 0x2a873: "\x1e\n\U0002a873", // 𪡳
+ 0x2a874: "\x1e\n\U0002a874", // 𪡴
+ 0x2a875: "\x1e\n\U0002a875", // 𪡵
+ 0x2a876: "\x1e\n\U0002a876", // 𪡶
+ 0x2a877: "\x1e\n\U0002a877", // 𪡷
+ 0x2a878: "\x1e\v\U0002a878", // 𪡸
+ 0x2a879: "\x1e\v\U0002a879", // 𪡹
+ 0x2a87a: "\x1e\v\U0002a87a", // 𪡺
+ 0x2a87b: "\x1e\v\U0002a87b", // 𪡻
+ 0x2a87c: "\x1e\v\U0002a87c", // 𪡼
+ 0x2a87d: "\x1e\v\U0002a87d", // 𪡽
+ 0x2a87e: "\x1e\v\U0002a87e", // 𪡾
+ 0x2a87f: "\x1e\v\U0002a87f", // 𪡿
+ 0x2a880: "\x1e\v\U0002a880", // 𪢀
+ 0x2a881: "\x1e\v\U0002a881", // 𪢁
+ 0x2a882: "\x1e\v\U0002a882", // 𪢂
+ 0x2a883: "\x1e\v\U0002a883", // 𪢃
+ 0x2a884: "\x1e\v\U0002a884", // 𪢄
+ 0x2a885: "\x1e\f\U0002a885", // 𪢅
+ 0x2a886: "\x1e\f\U0002a886", // 𪢆
+ 0x2a887: "\x1e\f\U0002a887", // 𪢇
+ 0x2a888: "\x1e\f\U0002a888", // 𪢈
+ 0x2a889: "\x1e\f\U0002a889", // 𪢉
+ 0x2a88a: "\x1e\f\U0002a88a", // 𪢊
+ 0x2a88b: "\x1e\f\U0002a88b", // 𪢋
+ 0x2a88c: "\x1e\f\U0002a88c", // 𪢌
+ 0x2a88d: "\x1e\f\U0002a88d", // 𪢍
+ 0x2a88e: "\x1e\r\U0002a88e", // 𪢎
+ 0x2a88f: "\x1e\r\U0002a88f", // 𪢏
+ 0x2a890: "\x1e\r\U0002a890", // 𪢐
+ 0x2a891: "\x1e\r\U0002a891", // 𪢑
+ 0x2a892: "\x1e\r\U0002a892", // 𪢒
+ 0x2a893: "\x1e\r\U0002a893", // 𪢓
+ 0x2a894: "\x1e\r\U0002a894", // 𪢔
+ 0x2a895: "\x1e\x0e\U0002a895", // 𪢕
+ 0x2a896: "\x1e\x0e\U0002a896", // 𪢖
+ 0x2a897: "\x1e\x0e\U0002a897", // 𪢗
+ 0x2a898: "\x1e\x0e\U0002a898", // 𪢘
+ 0x2a899: "\x1e\x0f\U0002a899", // 𪢙
+ 0x2a89a: "\x1e\x0f\U0002a89a", // 𪢚
+ 0x2a89b: "\x1e\x0f\U0002a89b", // 𪢛
+ 0x2a89c: "\x1e\x0f\U0002a89c", // 𪢜
+ 0x2a89d: "\x1e\x0f\U0002a89d", // 𪢝
+ 0x2a89e: "\x1e\x0f\U0002a89e", // 𪢞
+ 0x2a89f: "\x1e\x10\U0002a89f", // 𪢟
+ 0x2a8a0: "\x1e\x10\U0002a8a0", // 𪢠
+ 0x2a8a1: "\x1e\x10\U0002a8a1", // 𪢡
+ 0x2a8a2: "\x1e\x11\U0002a8a2", // 𪢢
+ 0x2a8a3: "\x1e\x11\U0002a8a3", // 𪢣
+ 0x2a8a4: "\x1e\x11\U0002a8a4", // 𪢤
+ 0x2a8a5: "\x1e\x13\U0002a8a5", // 𪢥
+ 0x2a8a6: "\x1e\x15\U0002a8a6", // 𪢦
+ 0x2a8a7: "\x1e\x15\U0002a8a7", // 𪢧
+ 0x2a8a8: "\x1f\x04\U0002a8a8", // 𪢨
+ 0x2a8a9: "\x1f\x05\U0002a8a9", // 𪢩
+ 0x2a8aa: "\x1f\x06\U0002a8aa", // 𪢪
+ 0x2a8ab: "\x1f\a\U0002a8ab", // 𪢫
+ 0x2a8ac: "\x1f\b\U0002a8ac", // 𪢬
+ 0x2a8ad: "\x1f\b\U0002a8ad", // 𪢭
+ 0x2a8ae: "\x1f\n\U0002a8ae", // 𪢮
+ 0x2a8af: "\x1f\v\U0002a8af", // 𪢯
+ 0x2a8b0: "\x1f\r\U0002a8b0", // 𪢰
+ 0x2a8b1: " \x02\U0002a8b1", // 𪢱
+ 0x2a8b2: " \x02\U0002a8b2", // 𪢲
+ 0x2a8b3: " \x03\U0002a8b3", // 𪢳
+ 0x2a8b4: " \x03\U0002a8b4", // 𪢴
+ 0x2a8b5: " \x03\U0002a8b5", // 𪢵
+ 0x2a8b6: " \x03\U0002a8b6", // 𪢶
+ 0x2a8b7: " \x03\U0002a8b7", // 𪢷
+ 0x2a8b8: " \x04\U0002a8b8", // 𪢸
+ 0x2a8b9: " \x04\U0002a8b9", // 𪢹
+ 0x2a8ba: " \x04\U0002a8ba", // 𪢺
+ 0x2a8bb: " \x04\U0002a8bb", // 𪢻
+ 0x2a8bc: " \x04\U0002a8bc", // 𪢼
+ 0x2a8bd: " \x04\U0002a8bd", // 𪢽
+ 0x2a8be: " \x04\U0002a8be", // 𪢾
+ 0x2a8bf: " \x04\U0002a8bf", // 𪢿
+ 0x2a8c0: " \x04\U0002a8c0", // 𪣀
+ 0x2a8c1: " \x04\U0002a8c1", // 𪣁
+ 0x2a8c2: " \x04\U0002a8c2", // 𪣂
+ 0x2a8c3: " \x05\U0002a8c3", // 𪣃
+ 0x2a8c4: " \x05\U0002a8c4", // 𪣄
+ 0x2a8c5: " \x05\U0002a8c5", // 𪣅
+ 0x2a8c6: " \x05\U0002a8c6", // 𪣆
+ 0x2a8c7: " \x05\U0002a8c7", // 𪣇
+ 0x2a8c8: " \x05\U0002a8c8", // 𪣈
+ 0x2a8c9: " \x05\U0002a8c9", // 𪣉
+ 0x2a8ca: " \x05\U0002a8ca", // 𪣊
+ 0x2a8cb: " \x06\U0002a8cb", // 𪣋
+ 0x2a8cc: " \x06\U0002a8cc", // 𪣌
+ 0x2a8cd: " \x06\U0002a8cd", // 𪣍
+ 0x2a8ce: " \x06\U0002a8ce", // 𪣎
+ 0x2a8cf: " \x06\U0002a8cf", // 𪣏
+ 0x2a8d0: " \x06\U0002a8d0", // 𪣐
+ 0x2a8d1: " \x06\U0002a8d1", // 𪣑
+ 0x2a8d2: " \x06\U0002a8d2", // 𪣒
+ 0x2a8d3: " \x06\U0002a8d3", // 𪣓
+ 0x2a8d4: " \a\U0002a8d4", // 𪣔
+ 0x2a8d5: " \a\U0002a8d5", // 𪣕
+ 0x2a8d6: " \a\U0002a8d6", // 𪣖
+ 0x2a8d7: " \a\U0002a8d7", // 𪣗
+ 0x2a8d8: " \a\U0002a8d8", // 𪣘
+ 0x2a8d9: " \a\U0002a8d9", // 𪣙
+ 0x2a8da: " \a\U0002a8da", // 𪣚
+ 0x2a8db: " \a\U0002a8db", // 𪣛
+ 0x2a8dc: " \a\U0002a8dc", // 𪣜
+ 0x2a8dd: " \a\U0002a8dd", // 𪣝
+ 0x2a8de: " \a\U0002a8de", // 𪣞
+ 0x2a8df: " \a\U0002a8df", // 𪣟
+ 0x2a8e0: " \a\U0002a8e0", // 𪣠
+ 0x2a8e1: " \a\U0002a8e1", // 𪣡
+ 0x2a8e2: " \a\U0002a8e2", // 𪣢
+ 0x2a8e3: " \a\U0002a8e3", // 𪣣
+ 0x2a8e4: " \b\U0002a8e4", // 𪣤
+ 0x2a8e5: " \b\U0002a8e5", // 𪣥
+ 0x2a8e6: " \b\U0002a8e6", // 𪣦
+ 0x2a8e7: " \b\U0002a8e7", // 𪣧
+ 0x2a8e8: " \b\U0002a8e8", // 𪣨
+ 0x2a8e9: " \b\U0002a8e9", // 𪣩
+ 0x2a8ea: " \b\U0002a8ea", // 𪣪
+ 0x2a8eb: " \b\U0002a8eb", // 𪣫
+ 0x2a8ec: " \b\U0002a8ec", // 𪣬
+ 0x2a8ed: " \b\U0002a8ed", // 𪣭
+ 0x2a8ee: " \b\U0002a8ee", // 𪣮
+ 0x2a8ef: " \b\U0002a8ef", // 𪣯
+ 0x2a8f0: " \b\U0002a8f0", // 𪣰
+ 0x2a8f1: " \b\U0002a8f1", // 𪣱
+ 0x2a8f2: " \t\U0002a8f2", // 𪣲
+ 0x2a8f3: " \t\U0002a8f3", // 𪣳
+ 0x2a8f4: " \t\U0002a8f4", // 𪣴
+ 0x2a8f5: " \t\U0002a8f5", // 𪣵
+ 0x2a8f6: " \t\U0002a8f6", // 𪣶
+ 0x2a8f7: " \t\U0002a8f7", // 𪣷
+ 0x2a8f8: " \t\U0002a8f8", // 𪣸
+ 0x2a8f9: " \t\U0002a8f9", // 𪣹
+ 0x2a8fa: " \t\U0002a8fa", // 𪣺
+ 0x2a8fb: " \t\U0002a8fb", // 𪣻
+ 0x2a8fc: " \t\U0002a8fc", // 𪣼
+ 0x2a8fd: " \t\U0002a8fd", // 𪣽
+ 0x2a8fe: " \n\U0002a8fe", // 𪣾
+ 0x2a8ff: " \n\U0002a8ff", // 𪣿
+ 0x2a900: " \n\U0002a900", // 𪤀
+ 0x2a901: " \n\U0002a901", // 𪤁
+ 0x2a902: " \n\U0002a902", // 𪤂
+ 0x2a903: " \n\U0002a903", // 𪤃
+ 0x2a904: " \n\U0002a904", // 𪤄
+ 0x2a905: " \n\U0002a905", // 𪤅
+ 0x2a906: " \n\U0002a906", // 𪤆
+ 0x2a907: " \n\U0002a907", // 𪤇
+ 0x2a908: " \n\U0002a908", // 𪤈
+ 0x2a909: " \n\U0002a909", // 𪤉
+ 0x2a90a: " \n\U0002a90a", // 𪤊
+ 0x2a90b: " \n\U0002a90b", // 𪤋
+ 0x2a90c: " \n\U0002a90c", // 𪤌
+ 0x2a90d: " \n\U0002a90d", // 𪤍
+ 0x2a90e: " \v\U0002a90e", // 𪤎
+ 0x2a90f: " \v\U0002a90f", // 𪤏
+ 0x2a910: " \v\U0002a910", // 𪤐
+ 0x2a911: " \v\U0002a911", // 𪤑
+ 0x2a912: " \v\U0002a912", // 𪤒
+ 0x2a913: " \v\U0002a913", // 𪤓
+ 0x2a914: " \v\U0002a914", // 𪤔
+ 0x2a915: " \v\U0002a915", // 𪤕
+ 0x2a916: " \v\U0002a916", // 𪤖
+ 0x2a917: " \v\U0002a917", // 𪤗
+ 0x2a918: " \v\U0002a918", // 𪤘
+ 0x2a919: " \f\U0002a919", // 𪤙
+ 0x2a91a: " \f\U0002a91a", // 𪤚
+ 0x2a91b: " \f\U0002a91b", // 𪤛
+ 0x2a91c: " \f\U0002a91c", // 𪤜
+ 0x2a91d: " \f\U0002a91d", // 𪤝
+ 0x2a91e: " \f\U0002a91e", // 𪤞
+ 0x2a91f: " \r\U0002a91f", // 𪤟
+ 0x2a920: " \r\U0002a920", // 𪤠
+ 0x2a921: " \r\U0002a921", // 𪤡
+ 0x2a922: " \r\U0002a922", // 𪤢
+ 0x2a923: " \r\U0002a923", // 𪤣
+ 0x2a924: " \r\U0002a924", // 𪤤
+ 0x2a925: " \r\U0002a925", // 𪤥
+ 0x2a926: " \x0e\U0002a926", // 𪤦
+ 0x2a927: " \x0e\U0002a927", // 𪤧
+ 0x2a928: " \x0e\U0002a928", // 𪤨
+ 0x2a929: " \x0e\U0002a929", // 𪤩
+ 0x2a92a: " \x0e\U0002a92a", // 𪤪
+ 0x2a92b: " \x0e\U0002a92b", // 𪤫
+ 0x2a92c: " \x0f\U0002a92c", // 𪤬
+ 0x2a92d: " \x0f\U0002a92d", // 𪤭
+ 0x2a92e: " \x0f\U0002a92e", // 𪤮
+ 0x2a92f: " \x0f\U0002a92f", // 𪤯
+ 0x2a930: " \x10\U0002a930", // 𪤰
+ 0x2a931: " \x11\U0002a931", // 𪤱
+ 0x2a932: "!\a\U0002a932", // 𪤲
+ 0x2a933: "!\n\U0002a933", // 𪤳
+ 0x2a934: "!\x13\U0002a934", // 𪤴
+ 0x2a935: "\"\x11\U0002a935", // 𪤵
+ 0x2a936: "#\n\U0002a936", // 𪤶
+ 0x2a937: "$\x03\U0002a937", // 𪤷
+ 0x2a938: "$\x05\U0002a938", // 𪤸
+ 0x2a939: "$\x06\U0002a939", // 𪤹
+ 0x2a93a: "$\a\U0002a93a", // 𪤺
+ 0x2a93b: "$\b\U0002a93b", // 𪤻
+ 0x2a93c: "$\t\U0002a93c", // 𪤼
+ 0x2a93d: "$\v\U0002a93d", // 𪤽
+ 0x2a93e: "$\f\U0002a93e", // 𪤾
+ 0x2a93f: "$\r\U0002a93f", // 𪤿
+ 0x2a940: "$\x13\U0002a940", // 𪥀
+ 0x2a941: "%\x01\U0002a941", // 𪥁
+ 0x2a942: "%\x02\U0002a942", // 𪥂
+ 0x2a943: "%\x03\U0002a943", // 𪥃
+ 0x2a944: "%\x04\U0002a944", // 𪥄
+ 0x2a945: "%\x04\U0002a945", // 𪥅
+ 0x2a946: "%\x04\U0002a946", // 𪥆
+ 0x2a947: "%\x05\U0002a947", // 𪥇
+ 0x2a948: "%\x05\U0002a948", // 𪥈
+ 0x2a949: "%\x05\U0002a949", // 𪥉
+ 0x2a94a: "%\x05\U0002a94a", // 𪥊
+ 0x2a94b: "%\x05\U0002a94b", // 𪥋
+ 0x2a94c: "%\x05\U0002a94c", // 𪥌
+ 0x2a94d: "%\x06\U0002a94d", // 𪥍
+ 0x2a94e: "%\x06\U0002a94e", // 𪥎
+ 0x2a94f: "%\x06\U0002a94f", // 𪥏
+ 0x2a950: "%\a\U0002a950", // 𪥐
+ 0x2a951: "%\a\U0002a951", // 𪥑
+ 0x2a952: "%\a\U0002a952", // 𪥒
+ 0x2a953: "%\b\U0002a953", // 𪥓
+ 0x2a954: "%\b\U0002a954", // 𪥔
+ 0x2a955: "%\b\U0002a955", // 𪥕
+ 0x2a956: "%\t\U0002a956", // 𪥖
+ 0x2a957: "%\t\U0002a957", // 𪥗
+ 0x2a958: "%\t\U0002a958", // 𪥘
+ 0x2a959: "%\n\U0002a959", // 𪥙
+ 0x2a95a: "%\n\U0002a95a", // 𪥚
+ 0x2a95b: "%\n\U0002a95b", // 𪥛
+ 0x2a95c: "%\v\U0002a95c", // 𪥜
+ 0x2a95d: "%\v\U0002a95d", // 𪥝
+ 0x2a95e: "%\v\U0002a95e", // 𪥞
+ 0x2a95f: "%\f\U0002a95f", // 𪥟
+ 0x2a960: "%\f\U0002a960", // 𪥠
+ 0x2a961: "%\f\U0002a961", // 𪥡
+ 0x2a962: "%\x0f\U0002a962", // 𪥢
+ 0x2a963: "%\x11\U0002a963", // 𪥣
+ 0x2a964: "&\x03\U0002a964", // 𪥤
+ 0x2a965: "&\x03\U0002a965", // 𪥥
+ 0x2a966: "&\x04\U0002a966", // 𪥦
+ 0x2a967: "&\x04\U0002a967", // 𪥧
+ 0x2a968: "&\x04\U0002a968", // 𪥨
+ 0x2a969: "&\x04\U0002a969", // 𪥩
+ 0x2a96a: "&\x04\U0002a96a", // 𪥪
+ 0x2a96b: "&\x04\U0002a96b", // 𪥫
+ 0x2a96c: "&\x04\U0002a96c", // 𪥬
+ 0x2a96d: "&\x05\U0002a96d", // 𪥭
+ 0x2a96e: "&\x05\U0002a96e", // 𪥮
+ 0x2a96f: "&\x05\U0002a96f", // 𪥯
+ 0x2a970: "&\x05\U0002a970", // 𪥰
+ 0x2a971: "&\x06\U0002a971", // 𪥱
+ 0x2a972: "&\x06\U0002a972", // 𪥲
+ 0x2a973: "&\x06\U0002a973", // 𪥳
+ 0x2a974: "&\x06\U0002a974", // 𪥴
+ 0x2a975: "&\x06\U0002a975", // 𪥵
+ 0x2a976: "&\a\U0002a976", // 𪥶
+ 0x2a977: "&\a\U0002a977", // 𪥷
+ 0x2a978: "&\a\U0002a978", // 𪥸
+ 0x2a979: "&\a\U0002a979", // 𪥹
+ 0x2a97a: "&\a\U0002a97a", // 𪥺
+ 0x2a97b: "&\b\U0002a97b", // 𪥻
+ 0x2a97c: "&\b\U0002a97c", // 𪥼
+ 0x2a97d: "&\b\U0002a97d", // 𪥽
+ 0x2a97e: "&\b\U0002a97e", // 𪥾
+ 0x2a97f: "&\b\U0002a97f", // 𪥿
+ 0x2a980: "&\b\U0002a980", // 𪦀
+ 0x2a981: "&\b\U0002a981", // 𪦁
+ 0x2a982: "&\b\U0002a982", // 𪦂
+ 0x2a983: "&\b\U0002a983", // 𪦃
+ 0x2a984: "&\b\U0002a984", // 𪦄
+ 0x2a985: "&\b\U0002a985", // 𪦅
+ 0x2a986: "&\t\U0002a986", // 𪦆
+ 0x2a987: "&\t\U0002a987", // 𪦇
+ 0x2a988: "&\t\U0002a988", // 𪦈
+ 0x2a989: "&\t\U0002a989", // 𪦉
+ 0x2a98a: "&\t\U0002a98a", // 𪦊
+ 0x2a98b: "&\t\U0002a98b", // 𪦋
+ 0x2a98c: "&\t\U0002a98c", // 𪦌
+ 0x2a98d: "&\t\U0002a98d", // 𪦍
+ 0x2a98e: "&\t\U0002a98e", // 𪦎
+ 0x2a98f: "&\t\U0002a98f", // 𪦏
+ 0x2a990: "&\t\U0002a990", // 𪦐
+ 0x2a991: "&\n\U0002a991", // 𪦑
+ 0x2a992: "&\n\U0002a992", // 𪦒
+ 0x2a993: "&\n\U0002a993", // 𪦓
+ 0x2a994: "&\n\U0002a994", // 𪦔
+ 0x2a995: "&\n\U0002a995", // 𪦕
+ 0x2a996: "&\n\U0002a996", // 𪦖
+ 0x2a997: "&\v\U0002a997", // 𪦗
+ 0x2a998: "&\v\U0002a998", // 𪦘
+ 0x2a999: "&\v\U0002a999", // 𪦙
+ 0x2a99a: "&\v\U0002a99a", // 𪦚
+ 0x2a99b: "&\v\U0002a99b", // 𪦛
+ 0x2a99c: "&\v\U0002a99c", // 𪦜
+ 0x2a99d: "&\v\U0002a99d", // 𪦝
+ 0x2a99e: "&\v\U0002a99e", // 𪦞
+ 0x2a99f: "&\v\U0002a99f", // 𪦟
+ 0x2a9a0: "&\f\U0002a9a0", // 𪦠
+ 0x2a9a1: "&\f\U0002a9a1", // 𪦡
+ 0x2a9a2: "&\f\U0002a9a2", // 𪦢
+ 0x2a9a3: "&\f\U0002a9a3", // 𪦣
+ 0x2a9a4: "&\f\U0002a9a4", // 𪦤
+ 0x2a9a5: "&\f\U0002a9a5", // 𪦥
+ 0x2a9a6: "&\r\U0002a9a6", // 𪦦
+ 0x2a9a7: "&\r\U0002a9a7", // 𪦧
+ 0x2a9a8: "&\r\U0002a9a8", // 𪦨
+ 0x2a9a9: "&\r\U0002a9a9", // 𪦩
+ 0x2a9aa: "&\r\U0002a9aa", // 𪦪
+ 0x2a9ab: "&\x0e\U0002a9ab", // 𪦫
+ 0x2a9ac: "&\x0f\U0002a9ac", // 𪦬
+ 0x2a9ad: "&\x0f\U0002a9ad", // 𪦭
+ 0x2a9ae: "&\x0f\U0002a9ae", // 𪦮
+ 0x2a9af: "&\x0f\U0002a9af", // 𪦯
+ 0x2a9b0: "&\x10\U0002a9b0", // 𪦰
+ 0x2a9b1: "&\x10\U0002a9b1", // 𪦱
+ 0x2a9b2: "&\x11\U0002a9b2", // 𪦲
+ 0x2a9b3: "&\x12\U0002a9b3", // 𪦳
+ 0x2a9b4: "&\x12\U0002a9b4", // 𪦴
+ 0x2a9b5: "&\x14\U0002a9b5", // 𪦵
+ 0x2a9b6: "'\x04\U0002a9b6", // 𪦶
+ 0x2a9b7: "'\x04\U0002a9b7", // 𪦷
+ 0x2a9b8: "'\x04\U0002a9b8", // 𪦸
+ 0x2a9b9: "'\x04\U0002a9b9", // 𪦹
+ 0x2a9ba: "'\x05\U0002a9ba", // 𪦺
+ 0x2a9bb: "'\x06\U0002a9bb", // 𪦻
+ 0x2a9bc: "'\b\U0002a9bc", // 𪦼
+ 0x2a9bd: "'\b\U0002a9bd", // 𪦽
+ 0x2a9be: "'\b\U0002a9be", // 𪦾
+ 0x2a9bf: "'\t\U0002a9bf", // 𪦿
+ 0x2a9c0: "'\v\U0002a9c0", // 𪧀
+ 0x2a9c1: "'\r\U0002a9c1", // 𪧁
+ 0x2a9c2: "'\x0e\U0002a9c2", // 𪧂
+ 0x2a9c3: "'\x0e\U0002a9c3", // 𪧃
+ 0x2a9c4: "'\x12\U0002a9c4", // 𪧄
+ 0x2a9c5: "(\x04\U0002a9c5", // 𪧅
+ 0x2a9c6: "(\x04\U0002a9c6", // 𪧆
+ 0x2a9c7: "(\x04\U0002a9c7", // 𪧇
+ 0x2a9c8: "(\x05\U0002a9c8", // 𪧈
+ 0x2a9c9: "(\x05\U0002a9c9", // 𪧉
+ 0x2a9ca: "(\x06\U0002a9ca", // 𪧊
+ 0x2a9cb: "(\x06\U0002a9cb", // 𪧋
+ 0x2a9cc: "(\x06\U0002a9cc", // 𪧌
+ 0x2a9cd: "(\a\U0002a9cd", // 𪧍
+ 0x2a9ce: "(\a\U0002a9ce", // 𪧎
+ 0x2a9cf: "(\a\U0002a9cf", // 𪧏
+ 0x2a9d0: "(\a\U0002a9d0", // 𪧐
+ 0x2a9d1: "(\b\U0002a9d1", // 𪧑
+ 0x2a9d2: "(\b\U0002a9d2", // 𪧒
+ 0x2a9d3: "(\b\U0002a9d3", // 𪧓
+ 0x2a9d4: "(\t\U0002a9d4", // 𪧔
+ 0x2a9d5: "(\t\U0002a9d5", // 𪧕
+ 0x2a9d6: "(\t\U0002a9d6", // 𪧖
+ 0x2a9d7: "(\t\U0002a9d7", // 𪧗
+ 0x2a9d8: "(\t\U0002a9d8", // 𪧘
+ 0x2a9d9: "(\t\U0002a9d9", // 𪧙
+ 0x2a9da: "(\t\U0002a9da", // 𪧚
+ 0x2a9db: "(\n\U0002a9db", // 𪧛
+ 0x2a9dc: "(\n\U0002a9dc", // 𪧜
+ 0x2a9dd: "(\n\U0002a9dd", // 𪧝
+ 0x2a9de: "(\n\U0002a9de", // 𪧞
+ 0x2a9df: "(\n\U0002a9df", // 𪧟
+ 0x2a9e0: "(\n\U0002a9e0", // 𪧠
+ 0x2a9e1: "(\v\U0002a9e1", // 𪧡
+ 0x2a9e2: "(\v\U0002a9e2", // 𪧢
+ 0x2a9e3: "(\v\U0002a9e3", // 𪧣
+ 0x2a9e4: "(\v\U0002a9e4", // 𪧤
+ 0x2a9e5: "(\v\U0002a9e5", // 𪧥
+ 0x2a9e6: "(\f\U0002a9e6", // 𪧦
+ 0x2a9e7: "(\f\U0002a9e7", // 𪧧
+ 0x2a9e8: "(\f\U0002a9e8", // 𪧨
+ 0x2a9e9: "(\f\U0002a9e9", // 𪧩
+ 0x2a9ea: "(\f\U0002a9ea", // 𪧪
+ 0x2a9eb: "(\r\U0002a9eb", // 𪧫
+ 0x2a9ec: "(\r\U0002a9ec", // 𪧬
+ 0x2a9ed: "(\r\U0002a9ed", // 𪧭
+ 0x2a9ee: "(\r\U0002a9ee", // 𪧮
+ 0x2a9ef: "(\x0e\U0002a9ef", // 𪧯
+ 0x2a9f0: "(\x0f\U0002a9f0", // 𪧰
+ 0x2a9f1: "(\x0f\U0002a9f1", // 𪧱
+ 0x2a9f2: "(\x0f\U0002a9f2", // 𪧲
+ 0x2a9f3: "(\x11\U0002a9f3", // 𪧳
+ 0x2a9f4: "(\x11\U0002a9f4", // 𪧴
+ 0x2a9f5: "(\x12\U0002a9f5", // 𪧵
+ 0x2a9f6: "(\x15\U0002a9f6", // 𪧶
+ 0x2a9f7: ")\x03\U0002a9f7", // 𪧷
+ 0x2a9f8: ")\b\U0002a9f8", // 𪧸
+ 0x2a9f9: ")\b\U0002a9f9", // 𪧹
+ 0x2a9fa: ")\t\U0002a9fa", // 𪧺
+ 0x2a9fb: ")\f\U0002a9fb", // 𪧻
+ 0x2a9fc: ")\f\U0002a9fc", // 𪧼
+ 0x2a9fd: ")\r\U0002a9fd", // 𪧽
+ 0x2a9fe: ")\x0e\U0002a9fe", // 𪧾
+ 0x2a9ff: "*\x04\U0002a9ff", // 𪧿
+ 0x2aa00: "*\x05\U0002aa00", // 𪨀
+ 0x2aa01: "*\a\U0002aa01", // 𪨁
+ 0x2aa02: "*\a\U0002aa02", // 𪨂
+ 0x2aa03: "*\v\U0002aa03", // 𪨃
+ 0x2aa04: "*\f\U0002aa04", // 𪨄
+ 0x2aa05: "*\r\U0002aa05", // 𪨅
+ 0x2aa06: "*\x0e\U0002aa06", // 𪨆
+ 0x2aa07: "+\t\U0002aa07", // 𪨇
+ 0x2aa08: "+\n\U0002aa08", // 𪨈
+ 0x2aa09: ",\x04\U0002aa09", // 𪨉
+ 0x2aa0a: ",\x04\U0002aa0a", // 𪨊
+ 0x2aa0b: ",\x04\U0002aa0b", // 𪨋
+ 0x2aa0c: ",\x05\U0002aa0c", // 𪨌
+ 0x2aa0d: ",\x06\U0002aa0d", // 𪨍
+ 0x2aa0e: ",\x06\U0002aa0e", // 𪨎
+ 0x2aa0f: ",\a\U0002aa0f", // 𪨏
+ 0x2aa10: ",\a\U0002aa10", // 𪨐
+ 0x2aa11: ",\b\U0002aa11", // 𪨑
+ 0x2aa12: ",\n\U0002aa12", // 𪨒
+ 0x2aa13: ",\n\U0002aa13", // 𪨓
+ 0x2aa14: ",\n\U0002aa14", // 𪨔
+ 0x2aa15: ",\t\U0002aa15", // 𪨕
+ 0x2aa16: ",\t\U0002aa16", // 𪨖
+ 0x2aa17: ",\t\U0002aa17", // 𪨗
+ 0x2aa18: ",\t\U0002aa18", // 𪨘
+ 0x2aa19: ",\v\U0002aa19", // 𪨙
+ 0x2aa1a: ",\v\U0002aa1a", // 𪨚
+ 0x2aa1b: ",\f\U0002aa1b", // 𪨛
+ 0x2aa1c: ",\f\U0002aa1c", // 𪨜
+ 0x2aa1d: ",\r\U0002aa1d", // 𪨝
+ 0x2aa1e: ",\x0e\U0002aa1e", // 𪨞
+ 0x2aa1f: ",\x10\U0002aa1f", // 𪨟
+ 0x2aa20: ",\x10\U0002aa20", // 𪨠
+ 0x2aa21: ",\x13\U0002aa21", // 𪨡
+ 0x2aa22: ".\x03\U0002aa22", // 𪨢
+ 0x2aa23: ".\x03\U0002aa23", // 𪨣
+ 0x2aa24: ".\x03\U0002aa24", // 𪨤
+ 0x2aa25: ".\x03\U0002aa25", // 𪨥
+ 0x2aa26: ".\x04\U0002aa26", // 𪨦
+ 0x2aa27: ".\x04\U0002aa27", // 𪨧
+ 0x2aa28: ".\x04\U0002aa28", // 𪨨
+ 0x2aa29: ".\x05\U0002aa29", // 𪨩
+ 0x2aa2a: ".\x05\U0002aa2a", // 𪨪
+ 0x2aa2b: ".\x05\U0002aa2b", // 𪨫
+ 0x2aa2c: ".\x05\U0002aa2c", // 𪨬
+ 0x2aa2d: ".\x05\U0002aa2d", // 𪨭
+ 0x2aa2e: ".\x05\U0002aa2e", // 𪨮
+ 0x2aa2f: ".\x06\U0002aa2f", // 𪨯
+ 0x2aa30: ".\x06\U0002aa30", // 𪨰
+ 0x2aa31: ".\x06\U0002aa31", // 𪨱
+ 0x2aa32: ".\x06\U0002aa32", // 𪨲
+ 0x2aa33: ".\x06\U0002aa33", // 𪨳
+ 0x2aa34: ".\x06\U0002aa34", // 𪨴
+ 0x2aa35: ".\a\U0002aa35", // 𪨵
+ 0x2aa36: ".\a\U0002aa36", // 𪨶
+ 0x2aa37: ".\a\U0002aa37", // 𪨷
+ 0x2aa38: ".\a\U0002aa38", // 𪨸
+ 0x2aa39: ".\a\U0002aa39", // 𪨹
+ 0x2aa3a: ".\a\U0002aa3a", // 𪨺
+ 0x2aa3b: ".\b\U0002aa3b", // 𪨻
+ 0x2aa3c: ".\b\U0002aa3c", // 𪨼
+ 0x2aa3d: ".\b\U0002aa3d", // 𪨽
+ 0x2aa3e: ".\b\U0002aa3e", // 𪨾
+ 0x2aa3f: ".\b\U0002aa3f", // 𪨿
+ 0x2aa40: ".\b\U0002aa40", // 𪩀
+ 0x2aa41: ".\b\U0002aa41", // 𪩁
+ 0x2aa42: ".\t\U0002aa42", // 𪩂
+ 0x2aa43: ".\t\U0002aa43", // 𪩃
+ 0x2aa44: ".\t\U0002aa44", // 𪩄
+ 0x2aa45: ".\t\U0002aa45", // 𪩅
+ 0x2aa46: ".\t\U0002aa46", // 𪩆
+ 0x2aa47: ".\t\U0002aa47", // 𪩇
+ 0x2aa48: ".\n\U0002aa48", // 𪩈
+ 0x2aa49: ".\n\U0002aa49", // 𪩉
+ 0x2aa4a: ".\n\U0002aa4a", // 𪩊
+ 0x2aa4b: ".\n\U0002aa4b", // 𪩋
+ 0x2aa4c: ".\v\U0002aa4c", // 𪩌
+ 0x2aa4d: ".\v\U0002aa4d", // 𪩍
+ 0x2aa4e: ".\v\U0002aa4e", // 𪩎
+ 0x2aa4f: ".\v\U0002aa4f", // 𪩏
+ 0x2aa50: ".\v\U0002aa50", // 𪩐
+ 0x2aa51: ".\v\U0002aa51", // 𪩑
+ 0x2aa52: ".\v\U0002aa52", // 𪩒
+ 0x2aa53: ".\f\U0002aa53", // 𪩓
+ 0x2aa54: ".\f\U0002aa54", // 𪩔
+ 0x2aa55: ".\f\U0002aa55", // 𪩕
+ 0x2aa56: ".\f\U0002aa56", // 𪩖
+ 0x2aa57: ".\r\U0002aa57", // 𪩗
+ 0x2aa58: ".\r\U0002aa58", // 𪩘
+ 0x2aa59: ".\r\U0002aa59", // 𪩙
+ 0x2aa5a: ".\r\U0002aa5a", // 𪩚
+ 0x2aa5b: ".\x0e\U0002aa5b", // 𪩛
+ 0x2aa5c: ".\x0e\U0002aa5c", // 𪩜
+ 0x2aa5d: ".\x0e\U0002aa5d", // 𪩝
+ 0x2aa5e: ".\x10\U0002aa5e", // 𪩞
+ 0x2aa5f: ".\x12\U0002aa5f", // 𪩟
+ 0x2aa60: ".\x13\U0002aa60", // 𪩠
+ 0x2aa61: "/\x04\U0002aa61", // 𪩡
+ 0x2aa62: "/\x06\U0002aa62", // 𪩢
+ 0x2aa63: "0\x03\U0002aa63", // 𪩣
+ 0x2aa64: "0\b\U0002aa64", // 𪩤
+ 0x2aa65: "0\t\U0002aa65", // 𪩥
+ 0x2aa66: "0\n\U0002aa66", // 𪩦
+ 0x2aa67: "0\v\U0002aa67", // 𪩧
+ 0x2aa68: "0\x0e\U0002aa68", // 𪩨
+ 0x2aa69: "0\x0f\U0002aa69", // 𪩩
+ 0x2aa6a: "0\x13\U0002aa6a", // 𪩪
+ 0x2aa6b: "1\x05\U0002aa6b", // 𪩫
+ 0x2aa6c: "1\x04\U0002aa6c", // 𪩬
+ 0x2aa6d: "1\t\U0002aa6d", // 𪩭
+ 0x2aa6e: "1\t\U0002aa6e", // 𪩮
+ 0x2aa6f: "1\v\U0002aa6f", // 𪩯
+ 0x2aa70: "1\r\U0002aa70", // 𪩰
+ 0x2aa71: "1\r\U0002aa71", // 𪩱
+ 0x2aa72: "2\x02\U0002aa72", // 𪩲
+ 0x2aa73: "2\a\U0002aa73", // 𪩳
+ 0x2aa74: "2\b\U0002aa74", // 𪩴
+ 0x2aa75: "2\b\U0002aa75", // 𪩵
+ 0x2aa76: "2\b\U0002aa76", // 𪩶
+ 0x2aa77: "2\b\U0002aa77", // 𪩷
+ 0x2aa78: "2\t\U0002aa78", // 𪩸
+ 0x2aa79: "2\t\U0002aa79", // 𪩹
+ 0x2aa7a: "2\t\U0002aa7a", // 𪩺
+ 0x2aa7b: "2\v\U0002aa7b", // 𪩻
+ 0x2aa7c: "2\f\U0002aa7c", // 𪩼
+ 0x2aa7d: "2\r\U0002aa7d", // 𪩽
+ 0x2aa7e: "2\x0e\U0002aa7e", // 𪩾
+ 0x2aa7f: "2\x10\U0002aa7f", // 𪩿
+ 0x2aa80: "2\x11\U0002aa80", // 𪪀
+ 0x2aa81: "3\x04\U0002aa81", // 𪪁
+ 0x2aa82: "3\b\U0002aa82", // 𪪂
+ 0x2aa83: "3\b\U0002aa83", // 𪪃
+ 0x2aa84: "3\t\U0002aa84", // 𪪄
+ 0x2aa85: "3\n\U0002aa85", // 𪪅
+ 0x2aa86: "3\n\U0002aa86", // 𪪆
+ 0x2aa87: "3\f\U0002aa87", // 𪪇
+ 0x2aa88: "3\x0f\U0002aa88", // 𪪈
+ 0x2aa89: "3\x10\U0002aa89", // 𪪉
+ 0x2aa8a: "4\x03\U0002aa8a", // 𪪊
+ 0x2aa8b: "4\x06\U0002aa8b", // 𪪋
+ 0x2aa8c: "5\x04\U0002aa8c", // 𪪌
+ 0x2aa8d: "5\x04\U0002aa8d", // 𪪍
+ 0x2aa8e: "5\x05\U0002aa8e", // 𪪎
+ 0x2aa8f: "5\x05\U0002aa8f", // 𪪏
+ 0x2aa90: "5\x06\U0002aa90", // 𪪐
+ 0x2aa91: "5\x06\U0002aa91", // 𪪑
+ 0x2aa92: "5\a\U0002aa92", // 𪪒
+ 0x2aa93: "5\a\U0002aa93", // 𪪓
+ 0x2aa94: "5\a\U0002aa94", // 𪪔
+ 0x2aa95: "5\a\U0002aa95", // 𪪕
+ 0x2aa96: "5\a\U0002aa96", // 𪪖
+ 0x2aa97: "5\a\U0002aa97", // 𪪗
+ 0x2aa98: "5\b\U0002aa98", // 𪪘
+ 0x2aa99: "5\b\U0002aa99", // 𪪙
+ 0x2aa9a: "5\t\U0002aa9a", // 𪪚
+ 0x2aa9b: "5\t\U0002aa9b", // 𪪛
+ 0x2aa9c: "5\n\U0002aa9c", // 𪪜
+ 0x2aa9d: "5\n\U0002aa9d", // 𪪝
+ 0x2aa9e: "5\v\U0002aa9e", // 𪪞
+ 0x2aa9f: "5\v\U0002aa9f", // 𪪟
+ 0x2aaa0: "5\v\U0002aaa0", // 𪪠
+ 0x2aaa1: "5\f\U0002aaa1", // 𪪡
+ 0x2aaa2: "5\f\U0002aaa2", // 𪪢
+ 0x2aaa3: "5\f\U0002aaa3", // 𪪣
+ 0x2aaa4: "5\r\U0002aaa4", // 𪪤
+ 0x2aaa5: "5\r\U0002aaa5", // 𪪥
+ 0x2aaa6: "5\x0e\U0002aaa6", // 𪪦
+ 0x2aaa7: "5\x0e\U0002aaa7", // 𪪧
+ 0x2aaa8: "5\x0e\U0002aaa8", // 𪪨
+ 0x2aaa9: "5\x0f\U0002aaa9", // 𪪩
+ 0x2aaaa: "5\x10\U0002aaaa", // 𪪪
+ 0x2aaab: "5\x12\U0002aaab", // 𪪫
+ 0x2aaac: "6\x03\U0002aaac", // 𪪬
+ 0x2aaad: "6\x05\U0002aaad", // 𪪭
+ 0x2aaae: "6\x05\U0002aaae", // 𪪮
+ 0x2aaaf: "6\a\U0002aaaf", // 𪪯
+ 0x2aab0: "6\b\U0002aab0", // 𪪰
+ 0x2aab1: "6\t\U0002aab1", // 𪪱
+ 0x2aab2: "6\f\U0002aab2", // 𪪲
+ 0x2aab3: "7\x04\U0002aab3", // 𪪳
+ 0x2aab4: "7\x05\U0002aab4", // 𪪴
+ 0x2aab5: "7\a\U0002aab5", // 𪪵
+ 0x2aab6: "7\t\U0002aab6", // 𪪶
+ 0x2aab7: "7\n\U0002aab7", // 𪪷
+ 0x2aab8: "7\x0e\U0002aab8", // 𪪸
+ 0x2aab9: "7\x13\U0002aab9", // 𪪹
+ 0x2aaba: "9\x03\U0002aaba", // 𪪺
+ 0x2aabb: "9\x05\U0002aabb", // 𪪻
+ 0x2aabc: "9\x06\U0002aabc", // 𪪼
+ 0x2aabd: "9\x06\U0002aabd", // 𪪽
+ 0x2aabe: "9\a\U0002aabe", // 𪪾
+ 0x2aabf: "9\b\U0002aabf", // 𪪿
+ 0x2aac0: "9\t\U0002aac0", // 𪫀
+ 0x2aac1: "9\t\U0002aac1", // 𪫁
+ 0x2aac2: "9\v\U0002aac2", // 𪫂
+ 0x2aac3: "9\x0e\U0002aac3", // 𪫃
+ 0x2aac4: "9\x12\U0002aac4", // 𪫄
+ 0x2aac5: "9\x16\U0002aac5", // 𪫅
+ 0x2aac6: ":\x03\U0002aac6", // 𪫆
+ 0x2aac7: ":\x0f\U0002aac7", // 𪫇
+ 0x2aac8: ";\a\U0002aac8", // 𪫈
+ 0x2aac9: ";\f\U0002aac9", // 𪫉
+ 0x2aaca: ";\x0e\U0002aaca", // 𪫊
+ 0x2aacb: "<\x04\U0002aacb", // 𪫋
+ 0x2aacc: "<\x05\U0002aacc", // 𪫌
+ 0x2aacd: "<\a\U0002aacd", // 𪫍
+ 0x2aace: "<\a\U0002aace", // 𪫎
+ 0x2aacf: "<\b\U0002aacf", // 𪫏
+ 0x2aad0: "<\b\U0002aad0", // 𪫐
+ 0x2aad1: "<\t\U0002aad1", // 𪫑
+ 0x2aad2: "<\t\U0002aad2", // 𪫒
+ 0x2aad3: "<\t\U0002aad3", // 𪫓
+ 0x2aad4: "<\n\U0002aad4", // 𪫔
+ 0x2aad5: "<\n\U0002aad5", // 𪫕
+ 0x2aad6: "<\v\U0002aad6", // 𪫖
+ 0x2aad7: "<\v\U0002aad7", // 𪫗
+ 0x2aad8: "<\v\U0002aad8", // 𪫘
+ 0x2aad9: "<\r\U0002aad9", // 𪫙
+ 0x2aada: "<\x0e\U0002aada", // 𪫚
+ 0x2aadb: "<\x0f\U0002aadb", // 𪫛
+ 0x2aadc: "<\x0f\U0002aadc", // 𪫜
+ 0x2aadd: "=\x02\U0002aadd", // 𪫝
+ 0x2aade: "=\x03\U0002aade", // 𪫞
+ 0x2aadf: "=\x04\U0002aadf", // 𪫟
+ 0x2aae0: "=\x04\U0002aae0", // 𪫠
+ 0x2aae1: "=\x04\U0002aae1", // 𪫡
+ 0x2aae2: "=\x04\U0002aae2", // 𪫢
+ 0x2aae3: "=\x04\U0002aae3", // 𪫣
+ 0x2aae4: "=\x04\U0002aae4", // 𪫤
+ 0x2aae5: "=\x04\U0002aae5", // 𪫥
+ 0x2aae6: "=\x05\U0002aae6", // 𪫦
+ 0x2aae7: "=\x05\U0002aae7", // 𪫧
+ 0x2aae8: "=\x05\U0002aae8", // 𪫨
+ 0x2aae9: "=\x05\U0002aae9", // 𪫩
+ 0x2aaea: "=\x05\U0002aaea", // 𪫪
+ 0x2aaeb: "=\x05\U0002aaeb", // 𪫫
+ 0x2aaec: "=\x05\U0002aaec", // 𪫬
+ 0x2aaed: "=\x06\U0002aaed", // 𪫭
+ 0x2aaee: "=\x06\U0002aaee", // 𪫮
+ 0x2aaef: "=\x06\U0002aaef", // 𪫯
+ 0x2aaf0: "=\x06\U0002aaf0", // 𪫰
+ 0x2aaf1: "=\x06\U0002aaf1", // 𪫱
+ 0x2aaf2: "=\x06\U0002aaf2", // 𪫲
+ 0x2aaf3: "=\x06\U0002aaf3", // 𪫳
+ 0x2aaf4: "=\x06\U0002aaf4", // 𪫴
+ 0x2aaf5: "=\a\U0002aaf5", // 𪫵
+ 0x2aaf6: "=\a\U0002aaf6", // 𪫶
+ 0x2aaf7: "=\a\U0002aaf7", // 𪫷
+ 0x2aaf8: "=\a\U0002aaf8", // 𪫸
+ 0x2aaf9: "=\a\U0002aaf9", // 𪫹
+ 0x2aafa: "=\a\U0002aafa", // 𪫺
+ 0x2aafb: "=\a\U0002aafb", // 𪫻
+ 0x2aafc: "=\a\U0002aafc", // 𪫼
+ 0x2aafd: "=\a\U0002aafd", // 𪫽
+ 0x2aafe: "=\a\U0002aafe", // 𪫾
+ 0x2aaff: "=\b\U0002aaff", // 𪫿
+ 0x2ab00: "=\b\U0002ab00", // 𪬀
+ 0x2ab01: "=\b\U0002ab01", // 𪬁
+ 0x2ab02: "=\b\U0002ab02", // 𪬂
+ 0x2ab03: "=\b\U0002ab03", // 𪬃
+ 0x2ab04: "=\b\U0002ab04", // 𪬄
+ 0x2ab05: "=\b\U0002ab05", // 𪬅
+ 0x2ab06: "=\b\U0002ab06", // 𪬆
+ 0x2ab07: "=\t\U0002ab07", // 𪬇
+ 0x2ab08: "=\t\U0002ab08", // 𪬈
+ 0x2ab09: "=\t\U0002ab09", // 𪬉
+ 0x2ab0a: "=\t\U0002ab0a", // 𪬊
+ 0x2ab0b: "=\t\U0002ab0b", // 𪬋
+ 0x2ab0c: "=\t\U0002ab0c", // 𪬌
+ 0x2ab0d: "=\t\U0002ab0d", // 𪬍
+ 0x2ab0e: "=\t\U0002ab0e", // 𪬎
+ 0x2ab0f: "=\t\U0002ab0f", // 𪬏
+ 0x2ab10: "=\t\U0002ab10", // 𪬐
+ 0x2ab11: "=\t\U0002ab11", // 𪬑
+ 0x2ab12: "=\t\U0002ab12", // 𪬒
+ 0x2ab13: "=\n\U0002ab13", // 𪬓
+ 0x2ab14: "=\n\U0002ab14", // 𪬔
+ 0x2ab15: "=\n\U0002ab15", // 𪬕
+ 0x2ab16: "=\n\U0002ab16", // 𪬖
+ 0x2ab17: "=\n\U0002ab17", // 𪬗
+ 0x2ab18: "=\n\U0002ab18", // 𪬘
+ 0x2ab19: "=\n\U0002ab19", // 𪬙
+ 0x2ab1a: "=\n\U0002ab1a", // 𪬚
+ 0x2ab1b: "=\n\U0002ab1b", // 𪬛
+ 0x2ab1c: "=\n\U0002ab1c", // 𪬜
+ 0x2ab1d: "=\n\U0002ab1d", // 𪬝
+ 0x2ab1e: "=\n\U0002ab1e", // 𪬞
+ 0x2ab1f: "=\v\U0002ab1f", // 𪬟
+ 0x2ab20: "=\v\U0002ab20", // 𪬠
+ 0x2ab21: "=\v\U0002ab21", // 𪬡
+ 0x2ab22: "=\v\U0002ab22", // 𪬢
+ 0x2ab23: "=\v\U0002ab23", // 𪬣
+ 0x2ab24: "=\v\U0002ab24", // 𪬤
+ 0x2ab25: "=\v\U0002ab25", // 𪬥
+ 0x2ab26: "=\v\U0002ab26", // 𪬦
+ 0x2ab27: "=\v\U0002ab27", // 𪬧
+ 0x2ab28: "=\f\U0002ab28", // 𪬨
+ 0x2ab29: "=\f\U0002ab29", // 𪬩
+ 0x2ab2a: "=\f\U0002ab2a", // 𪬪
+ 0x2ab2b: "=\f\U0002ab2b", // 𪬫
+ 0x2ab2c: "=\f\U0002ab2c", // 𪬬
+ 0x2ab2d: "=\f\U0002ab2d", // 𪬭
+ 0x2ab2e: "=\r\U0002ab2e", // 𪬮
+ 0x2ab2f: "=\r\U0002ab2f", // 𪬯
+ 0x2ab30: "=\r\U0002ab30", // 𪬰
+ 0x2ab31: "=\r\U0002ab31", // 𪬱
+ 0x2ab32: "=\r\U0002ab32", // 𪬲
+ 0x2ab33: "=\r\U0002ab33", // 𪬳
+ 0x2ab34: "=\r\U0002ab34", // 𪬴
+ 0x2ab35: "=\r\U0002ab35", // 𪬵
+ 0x2ab36: "=\r\U0002ab36", // 𪬶
+ 0x2ab37: "=\x0e\U0002ab37", // 𪬷
+ 0x2ab38: "=\x0e\U0002ab38", // 𪬸
+ 0x2ab39: "=\x0e\U0002ab39", // 𪬹
+ 0x2ab3a: "=\x0f\U0002ab3a", // 𪬺
+ 0x2ab3b: "=\x0f\U0002ab3b", // 𪬻
+ 0x2ab3c: "=\x0f\U0002ab3c", // 𪬼
+ 0x2ab3d: "=\x0f\U0002ab3d", // 𪬽
+ 0x2ab3e: "=\x0f\U0002ab3e", // 𪬾
+ 0x2ab3f: "=\x10\U0002ab3f", // 𪬿
+ 0x2ab40: "=\x10\U0002ab40", // 𪭀
+ 0x2ab41: "=\x11\U0002ab41", // 𪭁
+ 0x2ab42: "=\x11\U0002ab42", // 𪭂
+ 0x2ab43: "=\x12\U0002ab43", // 𪭃
+ 0x2ab44: "=\x12\U0002ab44", // 𪭄
+ 0x2ab45: "=\x13\U0002ab45", // 𪭅
+ 0x2ab46: "=\x13\U0002ab46", // 𪭆
+ 0x2ab47: "=\x14\U0002ab47", // 𪭇
+ 0x2ab48: "=\x16\U0002ab48", // 𪭈
+ 0x2ab49: ">\x01\U0002ab49", // 𪭉
+ 0x2ab4a: ">\x02\U0002ab4a", // 𪭊
+ 0x2ab4b: ">\x05\U0002ab4b", // 𪭋
+ 0x2ab4c: ">\x05\U0002ab4c", // 𪭌
+ 0x2ab4d: ">\x06\U0002ab4d", // 𪭍
+ 0x2ab4e: ">\x06\U0002ab4e", // 𪭎
+ 0x2ab4f: ">\a\U0002ab4f", // 𪭏
+ 0x2ab50: ">\a\U0002ab50", // 𪭐
+ 0x2ab51: ">\b\U0002ab51", // 𪭑
+ 0x2ab52: ">\t\U0002ab52", // 𪭒
+ 0x2ab53: ">\n\U0002ab53", // 𪭓
+ 0x2ab54: ">\f\U0002ab54", // 𪭔
+ 0x2ab55: ">\f\U0002ab55", // 𪭕
+ 0x2ab56: ">\f\U0002ab56", // 𪭖
+ 0x2ab57: ">\x16\U0002ab57", // 𪭗
+ 0x2ab58: "?\x05\U0002ab58", // 𪭘
+ 0x2ab59: "?\a\U0002ab59", // 𪭙
+ 0x2ab5a: "?\v\U0002ab5a", // 𪭚
+ 0x2ab5b: "?\x12\U0002ab5b", // 𪭛
+ 0x2ab5c: "@\x03\U0002ab5c", // 𪭜
+ 0x2ab5d: "@\x04\U0002ab5d", // 𪭝
+ 0x2ab5e: "@\x04\U0002ab5e", // 𪭞
+ 0x2ab5f: "@\x04\U0002ab5f", // 𪭟
+ 0x2ab60: "@\x04\U0002ab60", // 𪭠
+ 0x2ab61: "@\x04\U0002ab61", // 𪭡
+ 0x2ab62: "@\x04\U0002ab62", // 𪭢
+ 0x2ab63: "@\x04\U0002ab63", // 𪭣
+ 0x2ab64: "@\x05\U0002ab64", // 𪭤
+ 0x2ab65: "@\x05\U0002ab65", // 𪭥
+ 0x2ab66: "@\x05\U0002ab66", // 𪭦
+ 0x2ab67: "@\x05\U0002ab67", // 𪭧
+ 0x2ab68: "@\x05\U0002ab68", // 𪭨
+ 0x2ab69: "@\x05\U0002ab69", // 𪭩
+ 0x2ab6a: "@\x05\U0002ab6a", // 𪭪
+ 0x2ab6b: "@\x06\U0002ab6b", // 𪭫
+ 0x2ab6c: "@\x06\U0002ab6c", // 𪭬
+ 0x2ab6d: "@\x06\U0002ab6d", // 𪭭
+ 0x2ab6e: "@\x06\U0002ab6e", // 𪭮
+ 0x2ab6f: "@\x06\U0002ab6f", // 𪭯
+ 0x2ab70: "@\x06\U0002ab70", // 𪭰
+ 0x2ab71: "@\x06\U0002ab71", // 𪭱
+ 0x2ab72: "@\x06\U0002ab72", // 𪭲
+ 0x2ab73: "@\x06\U0002ab73", // 𪭳
+ 0x2ab74: "@\a\U0002ab74", // 𪭴
+ 0x2ab75: "@\a\U0002ab75", // 𪭵
+ 0x2ab76: "@\a\U0002ab76", // 𪭶
+ 0x2ab77: "@\a\U0002ab77", // 𪭷
+ 0x2ab78: "@\a\U0002ab78", // 𪭸
+ 0x2ab79: "@\a\U0002ab79", // 𪭹
+ 0x2ab7a: "@\a\U0002ab7a", // 𪭺
+ 0x2ab7b: "@\a\U0002ab7b", // 𪭻
+ 0x2ab7c: "@\a\U0002ab7c", // 𪭼
+ 0x2ab7d: "@\a\U0002ab7d", // 𪭽
+ 0x2ab7e: "@\a\U0002ab7e", // 𪭾
+ 0x2ab7f: "@\a\U0002ab7f", // 𪭿
+ 0x2ab80: "@\a\U0002ab80", // 𪮀
+ 0x2ab81: "@\b\U0002ab81", // 𪮁
+ 0x2ab82: "@\b\U0002ab82", // 𪮂
+ 0x2ab83: "@\b\U0002ab83", // 𪮃
+ 0x2ab84: "@\b\U0002ab84", // 𪮄
+ 0x2ab85: "@\b\U0002ab85", // 𪮅
+ 0x2ab86: "@\b\U0002ab86", // 𪮆
+ 0x2ab87: "@\b\U0002ab87", // 𪮇
+ 0x2ab88: "@\b\U0002ab88", // 𪮈
+ 0x2ab89: "@\b\U0002ab89", // 𪮉
+ 0x2ab8a: "@\b\U0002ab8a", // 𪮊
+ 0x2ab8b: "@\b\U0002ab8b", // 𪮋
+ 0x2ab8c: "@\t\U0002ab8c", // 𪮌
+ 0x2ab8d: "@\t\U0002ab8d", // 𪮍
+ 0x2ab8e: "@\t\U0002ab8e", // 𪮎
+ 0x2ab8f: "@\t\U0002ab8f", // 𪮏
+ 0x2ab90: "@\t\U0002ab90", // 𪮐
+ 0x2ab91: "@\t\U0002ab91", // 𪮑
+ 0x2ab92: "@\t\U0002ab92", // 𪮒
+ 0x2ab93: "@\t\U0002ab93", // 𪮓
+ 0x2ab94: "@\t\U0002ab94", // 𪮔
+ 0x2ab95: "@\t\U0002ab95", // 𪮕
+ 0x2ab96: "@\t\U0002ab96", // 𪮖
+ 0x2ab97: "@\n\U0002ab97", // 𪮗
+ 0x2ab98: "@\n\U0002ab98", // 𪮘
+ 0x2ab99: "@\n\U0002ab99", // 𪮙
+ 0x2ab9a: "@\n\U0002ab9a", // 𪮚
+ 0x2ab9b: "@\n\U0002ab9b", // 𪮛
+ 0x2ab9c: "@\n\U0002ab9c", // 𪮜
+ 0x2ab9d: "@\n\U0002ab9d", // 𪮝
+ 0x2ab9e: "@\n\U0002ab9e", // 𪮞
+ 0x2ab9f: "@\n\U0002ab9f", // 𪮟
+ 0x2aba0: "@\n\U0002aba0", // 𪮠
+ 0x2aba1: "@\n\U0002aba1", // 𪮡
+ 0x2aba2: "@\n\U0002aba2", // 𪮢
+ 0x2aba3: "@\v\U0002aba3", // 𪮣
+ 0x2aba4: "@\v\U0002aba4", // 𪮤
+ 0x2aba5: "@\v\U0002aba5", // 𪮥
+ 0x2aba6: "@\v\U0002aba6", // 𪮦
+ 0x2aba7: "@\v\U0002aba7", // 𪮧
+ 0x2aba8: "@\v\U0002aba8", // 𪮨
+ 0x2aba9: "@\v\U0002aba9", // 𪮩
+ 0x2abaa: "@\v\U0002abaa", // 𪮪
+ 0x2abab: "@\f\U0002abab", // 𪮫
+ 0x2abac: "@\f\U0002abac", // 𪮬
+ 0x2abad: "@\f\U0002abad", // 𪮭
+ 0x2abae: "@\f\U0002abae", // 𪮮
+ 0x2abaf: "@\f\U0002abaf", // 𪮯
+ 0x2abb0: "@\f\U0002abb0", // 𪮰
+ 0x2abb1: "@\f\U0002abb1", // 𪮱
+ 0x2abb2: "@\f\U0002abb2", // 𪮲
+ 0x2abb3: "@\f\U0002abb3", // 𪮳
+ 0x2abb4: "@\f\U0002abb4", // 𪮴
+ 0x2abb5: "@\r\U0002abb5", // 𪮵
+ 0x2abb6: "@\r\U0002abb6", // 𪮶
+ 0x2abb7: "@\r\U0002abb7", // 𪮷
+ 0x2abb8: "@\x0e\U0002abb8", // 𪮸
+ 0x2abb9: "@\x0e\U0002abb9", // 𪮹
+ 0x2abba: "@\x0e\U0002abba", // 𪮺
+ 0x2abbb: "@\x0f\U0002abbb", // 𪮻
+ 0x2abbc: "@\x0f\U0002abbc", // 𪮼
+ 0x2abbd: "@\x0f\U0002abbd", // 𪮽
+ 0x2abbe: "@\x0f\U0002abbe", // 𪮾
+ 0x2abbf: "@\x0f\U0002abbf", // 𪮿
+ 0x2abc0: "@\x0f\U0002abc0", // 𪯀
+ 0x2abc1: "@\x10\U0002abc1", // 𪯁
+ 0x2abc2: "@\x11\U0002abc2", // 𪯂
+ 0x2abc3: "@\x13\U0002abc3", // 𪯃
+ 0x2abc4: "@\x14\U0002abc4", // 𪯄
+ 0x2abc5: "A\a\U0002abc5", // 𪯅
+ 0x2abc6: "A\x04\U0002abc6", // 𪯆
+ 0x2abc7: "A\v\U0002abc7", // 𪯇
+ 0x2abc8: "B\x04\U0002abc8", // 𪯈
+ 0x2abc9: "B\x05\U0002abc9", // 𪯉
+ 0x2abca: "B\x05\U0002abca", // 𪯊
+ 0x2abcb: "B\x06\U0002abcb", // 𪯋
+ 0x2abcc: "B\x06\U0002abcc", // 𪯌
+ 0x2abcd: "B\a\U0002abcd", // 𪯍
+ 0x2abce: "B\b\U0002abce", // 𪯎
+ 0x2abcf: "B\b\U0002abcf", // 𪯏
+ 0x2abd0: "B\t\U0002abd0", // 𪯐
+ 0x2abd1: "B\n\U0002abd1", // 𪯑
+ 0x2abd2: "B\n\U0002abd2", // 𪯒
+ 0x2abd3: "B\v\U0002abd3", // 𪯓
+ 0x2abd4: "B\v\U0002abd4", // 𪯔
+ 0x2abd5: "B\v\U0002abd5", // 𪯕
+ 0x2abd6: "B\v\U0002abd6", // 𪯖
+ 0x2abd7: "B\f\U0002abd7", // 𪯗
+ 0x2abd8: "B\f\U0002abd8", // 𪯘
+ 0x2abd9: "B\f\U0002abd9", // 𪯙
+ 0x2abda: "B\r\U0002abda", // 𪯚
+ 0x2abdb: "B\x0e\U0002abdb", // 𪯛
+ 0x2abdc: "B\x0e\U0002abdc", // 𪯜
+ 0x2abdd: "B\x11\U0002abdd", // 𪯝
+ 0x2abde: "B\x11\U0002abde", // 𪯞
+ 0x2abdf: "B\x14\U0002abdf", // 𪯟
+ 0x2abe0: "C\x03\U0002abe0", // 𪯠
+ 0x2abe1: "C\x04\U0002abe1", // 𪯡
+ 0x2abe2: "C\x04\U0002abe2", // 𪯢
+ 0x2abe3: "C\x05\U0002abe3", // 𪯣
+ 0x2abe4: "C\x06\U0002abe4", // 𪯤
+ 0x2abe5: "C\b\U0002abe5", // 𪯥
+ 0x2abe6: "C\b\U0002abe6", // 𪯦
+ 0x2abe7: "C\b\U0002abe7", // 𪯧
+ 0x2abe8: "C\n\U0002abe8", // 𪯨
+ 0x2abe9: "C\n\U0002abe9", // 𪯩
+ 0x2abea: "C\n\U0002abea", // 𪯪
+ 0x2abeb: "D\x05\U0002abeb", // 𪯫
+ 0x2abec: "D\x06\U0002abec", // 𪯬
+ 0x2abed: "D\n\U0002abed", // 𪯭
+ 0x2abee: "D\v\U0002abee", // 𪯮
+ 0x2abef: "D\r\U0002abef", // 𪯯
+ 0x2abf0: "D\x11\U0002abf0", // 𪯰
+ 0x2abf1: "E\x04\U0002abf1", // 𪯱
+ 0x2abf2: "F\x04\U0002abf2", // 𪯲
+ 0x2abf3: "F\x04\U0002abf3", // 𪯳
+ 0x2abf4: "F\x05\U0002abf4", // 𪯴
+ 0x2abf5: "F\x06\U0002abf5", // 𪯵
+ 0x2abf6: "F\x06\U0002abf6", // 𪯶
+ 0x2abf7: "F\x06\U0002abf7", // 𪯷
+ 0x2abf8: "F\a\U0002abf8", // 𪯸
+ 0x2abf9: "F\b\U0002abf9", // 𪯹
+ 0x2abfa: "F\b\U0002abfa", // 𪯺
+ 0x2abfb: "F\b\U0002abfb", // 𪯻
+ 0x2abfc: "F\b\U0002abfc", // 𪯼
+ 0x2abfd: "F\t\U0002abfd", // 𪯽
+ 0x2abfe: "F\n\U0002abfe", // 𪯾
+ 0x2abff: "F\v\U0002abff", // 𪯿
+ 0x2ac00: "F\v\U0002ac00", // 𪰀
+ 0x2ac01: "F\f\U0002ac01", // 𪰁
+ 0x2ac02: "F\f\U0002ac02", // 𪰂
+ 0x2ac03: "F\x0f\U0002ac03", // 𪰃
+ 0x2ac04: "F\x0f\U0002ac04", // 𪰄
+ 0x2ac05: "F\x10\U0002ac05", // 𪰅
+ 0x2ac06: "H\x03\U0002ac06", // 𪰆
+ 0x2ac07: "H\x03\U0002ac07", // 𪰇
+ 0x2ac08: "H\x04\U0002ac08", // 𪰈
+ 0x2ac09: "H\x04\U0002ac09", // 𪰉
+ 0x2ac0a: "H\x04\U0002ac0a", // 𪰊
+ 0x2ac0b: "H\x04\U0002ac0b", // 𪰋
+ 0x2ac0c: "H\x04\U0002ac0c", // 𪰌
+ 0x2ac0d: "H\x04\U0002ac0d", // 𪰍
+ 0x2ac0e: "H\x04\U0002ac0e", // 𪰎
+ 0x2ac0f: "H\x05\U0002ac0f", // 𪰏
+ 0x2ac10: "H\x05\U0002ac10", // 𪰐
+ 0x2ac11: "H\x05\U0002ac11", // 𪰑
+ 0x2ac12: "H\x05\U0002ac12", // 𪰒
+ 0x2ac13: "H\x05\U0002ac13", // 𪰓
+ 0x2ac14: "H\x05\U0002ac14", // 𪰔
+ 0x2ac15: "H\x05\U0002ac15", // 𪰕
+ 0x2ac16: "H\x05\U0002ac16", // 𪰖
+ 0x2ac17: "H\x05\U0002ac17", // 𪰗
+ 0x2ac18: "H\x05\U0002ac18", // 𪰘
+ 0x2ac19: "H\x06\U0002ac19", // 𪰙
+ 0x2ac1a: "H\x06\U0002ac1a", // 𪰚
+ 0x2ac1b: "H\x06\U0002ac1b", // 𪰛
+ 0x2ac1c: "H\x06\U0002ac1c", // 𪰜
+ 0x2ac1d: "H\x06\U0002ac1d", // 𪰝
+ 0x2ac1e: "H\x06\U0002ac1e", // 𪰞
+ 0x2ac1f: "H\x06\U0002ac1f", // 𪰟
+ 0x2ac20: "H\x06\U0002ac20", // 𪰠
+ 0x2ac21: "H\x06\U0002ac21", // 𪰡
+ 0x2ac22: "H\x06\U0002ac22", // 𪰢
+ 0x2ac23: "H\x06\U0002ac23", // 𪰣
+ 0x2ac24: "H\x06\U0002ac24", // 𪰤
+ 0x2ac25: "H\a\U0002ac25", // 𪰥
+ 0x2ac26: "H\a\U0002ac26", // 𪰦
+ 0x2ac27: "H\a\U0002ac27", // 𪰧
+ 0x2ac28: "H\a\U0002ac28", // 𪰨
+ 0x2ac29: "H\b\U0002ac29", // 𪰩
+ 0x2ac2a: "H\b\U0002ac2a", // 𪰪
+ 0x2ac2b: "H\b\U0002ac2b", // 𪰫
+ 0x2ac2c: "H\b\U0002ac2c", // 𪰬
+ 0x2ac2d: "H\b\U0002ac2d", // 𪰭
+ 0x2ac2e: "H\b\U0002ac2e", // 𪰮
+ 0x2ac2f: "H\t\U0002ac2f", // 𪰯
+ 0x2ac30: "H\t\U0002ac30", // 𪰰
+ 0x2ac31: "H\t\U0002ac31", // 𪰱
+ 0x2ac32: "H\t\U0002ac32", // 𪰲
+ 0x2ac33: "H\t\U0002ac33", // 𪰳
+ 0x2ac34: "H\t\U0002ac34", // 𪰴
+ 0x2ac35: "H\t\U0002ac35", // 𪰵
+ 0x2ac36: "H\t\U0002ac36", // 𪰶
+ 0x2ac37: "H\t\U0002ac37", // 𪰷
+ 0x2ac38: "H\n\U0002ac38", // 𪰸
+ 0x2ac39: "H\n\U0002ac39", // 𪰹
+ 0x2ac3a: "H\n\U0002ac3a", // 𪰺
+ 0x2ac3b: "H\n\U0002ac3b", // 𪰻
+ 0x2ac3c: "H\n\U0002ac3c", // 𪰼
+ 0x2ac3d: "H\n\U0002ac3d", // 𪰽
+ 0x2ac3e: "H\v\U0002ac3e", // 𪰾
+ 0x2ac3f: "H\v\U0002ac3f", // 𪰿
+ 0x2ac40: "H\v\U0002ac40", // 𪱀
+ 0x2ac41: "H\v\U0002ac41", // 𪱁
+ 0x2ac42: "H\v\U0002ac42", // 𪱂
+ 0x2ac43: "H\v\U0002ac43", // 𪱃
+ 0x2ac44: "H\v\U0002ac44", // 𪱄
+ 0x2ac45: "H\v\U0002ac45", // 𪱅
+ 0x2ac46: "H\r\U0002ac46", // 𪱆
+ 0x2ac47: "H\f\U0002ac47", // 𪱇
+ 0x2ac48: "H\f\U0002ac48", // 𪱈
+ 0x2ac49: "H\f\U0002ac49", // 𪱉
+ 0x2ac4a: "H\f\U0002ac4a", // 𪱊
+ 0x2ac4b: "H\f\U0002ac4b", // 𪱋
+ 0x2ac4c: "H\f\U0002ac4c", // 𪱌
+ 0x2ac4d: "H\r\U0002ac4d", // 𪱍
+ 0x2ac4e: "H\x0e\U0002ac4e", // 𪱎
+ 0x2ac4f: "H\x0e\U0002ac4f", // 𪱏
+ 0x2ac50: "H\x0e\U0002ac50", // 𪱐
+ 0x2ac51: "H\x11\U0002ac51", // 𪱑
+ 0x2ac52: "H\x11\U0002ac52", // 𪱒
+ 0x2ac53: "H\x11\U0002ac53", // 𪱓
+ 0x2ac54: "H\x14\U0002ac54", // 𪱔
+ 0x2ac55: "I\v\U0002ac55", // 𪱕
+ 0x2ac56: "I\f\U0002ac56", // 𪱖
+ 0x2ac57: "I\f\U0002ac57", // 𪱗
+ 0x2ac58: "I\x0f\U0002ac58", // 𪱘
+ 0x2ac59: "J\x02\U0002ac59", // 𪱙
+ 0x2ac5a: "J\x03\U0002ac5a", // 𪱚
+ 0x2ac5b: "J\x04\U0002ac5b", // 𪱛
+ 0x2ac5c: "J\x05\U0002ac5c", // 𪱜
+ 0x2ac5d: "J\x05\U0002ac5d", // 𪱝
+ 0x2ac5e: "J\x06\U0002ac5e", // 𪱞
+ 0x2ac5f: "J\n\U0002ac5f", // 𪱟
+ 0x2ac60: "J\a\U0002ac60", // 𪱠
+ 0x2ac61: "J\a\U0002ac61", // 𪱡
+ 0x2ac62: "J\a\U0002ac62", // 𪱢
+ 0x2ac63: "J\b\U0002ac63", // 𪱣
+ 0x2ac64: "J\t\U0002ac64", // 𪱤
+ 0x2ac65: "J\t\U0002ac65", // 𪱥
+ 0x2ac66: "J\t\U0002ac66", // 𪱦
+ 0x2ac67: "J\t\U0002ac67", // 𪱧
+ 0x2ac68: "J\n\U0002ac68", // 𪱨
+ 0x2ac69: "J\n\U0002ac69", // 𪱩
+ 0x2ac6a: "J\n\U0002ac6a", // 𪱪
+ 0x2ac6b: "J\v\U0002ac6b", // 𪱫
+ 0x2ac6c: "J\v\U0002ac6c", // 𪱬
+ 0x2ac6d: "J\f\U0002ac6d", // 𪱭
+ 0x2ac6e: "J\x11\U0002ac6e", // 𪱮
+ 0x2ac6f: "J\x11\U0002ac6f", // 𪱯
+ 0x2ac70: "J\x14\U0002ac70", // 𪱰
+ 0x2ac71: "K\x03\U0002ac71", // 𪱱
+ 0x2ac72: "K\x03\U0002ac72", // 𪱲
+ 0x2ac73: "K\x03\U0002ac73", // 𪱳
+ 0x2ac74: "K\x03\U0002ac74", // 𪱴
+ 0x2ac75: "K\x03\U0002ac75", // 𪱵
+ 0x2ac76: "K\x04\U0002ac76", // 𪱶
+ 0x2ac77: "K\x04\U0002ac77", // 𪱷
+ 0x2ac78: "K\x04\U0002ac78", // 𪱸
+ 0x2ac79: "K\x04\U0002ac79", // 𪱹
+ 0x2ac7a: "K\x05\U0002ac7a", // 𪱺
+ 0x2ac7b: "K\x05\U0002ac7b", // 𪱻
+ 0x2ac7c: "K\x05\U0002ac7c", // 𪱼
+ 0x2ac7d: "K\x05\U0002ac7d", // 𪱽
+ 0x2ac7e: "K\x05\U0002ac7e", // 𪱾
+ 0x2ac7f: "K\x05\U0002ac7f", // 𪱿
+ 0x2ac80: "K\x05\U0002ac80", // 𪲀
+ 0x2ac81: "K\x05\U0002ac81", // 𪲁
+ 0x2ac82: "K\x05\U0002ac82", // 𪲂
+ 0x2ac83: "K\x06\U0002ac83", // 𪲃
+ 0x2ac84: "K\x06\U0002ac84", // 𪲄
+ 0x2ac85: "K\x06\U0002ac85", // 𪲅
+ 0x2ac86: "K\x06\U0002ac86", // 𪲆
+ 0x2ac87: "K\x06\U0002ac87", // 𪲇
+ 0x2ac88: "K\x06\U0002ac88", // 𪲈
+ 0x2ac89: "K\x06\U0002ac89", // 𪲉
+ 0x2ac8a: "K\x06\U0002ac8a", // 𪲊
+ 0x2ac8b: "K\x06\U0002ac8b", // 𪲋
+ 0x2ac8c: "K\x06\U0002ac8c", // 𪲌
+ 0x2ac8d: "K\x06\U0002ac8d", // 𪲍
+ 0x2ac8e: "K\x06\U0002ac8e", // 𪲎
+ 0x2ac8f: "K\x06\U0002ac8f", // 𪲏
+ 0x2ac90: "K\a\U0002ac90", // 𪲐
+ 0x2ac91: "K\a\U0002ac91", // 𪲑
+ 0x2ac92: "K\a\U0002ac92", // 𪲒
+ 0x2ac93: "K\a\U0002ac93", // 𪲓
+ 0x2ac94: "K\a\U0002ac94", // 𪲔
+ 0x2ac95: "K\a\U0002ac95", // 𪲕
+ 0x2ac96: "K\a\U0002ac96", // 𪲖
+ 0x2ac97: "K\a\U0002ac97", // 𪲗
+ 0x2ac98: "K\a\U0002ac98", // 𪲘
+ 0x2ac99: "K\a\U0002ac99", // 𪲙
+ 0x2ac9a: "K\a\U0002ac9a", // 𪲚
+ 0x2ac9b: "K\a\U0002ac9b", // 𪲛
+ 0x2ac9c: "K\a\U0002ac9c", // 𪲜
+ 0x2ac9d: "K\a\U0002ac9d", // 𪲝
+ 0x2ac9e: "K\a\U0002ac9e", // 𪲞
+ 0x2ac9f: "K\b\U0002ac9f", // 𪲟
+ 0x2aca0: "K\b\U0002aca0", // 𪲠
+ 0x2aca1: "K\b\U0002aca1", // 𪲡
+ 0x2aca2: "K\b\U0002aca2", // 𪲢
+ 0x2aca3: "K\b\U0002aca3", // 𪲣
+ 0x2aca4: "K\b\U0002aca4", // 𪲤
+ 0x2aca5: "K\b\U0002aca5", // 𪲥
+ 0x2aca6: "K\b\U0002aca6", // 𪲦
+ 0x2aca7: "K\b\U0002aca7", // 𪲧
+ 0x2aca8: "K\b\U0002aca8", // 𪲨
+ 0x2aca9: "K\b\U0002aca9", // 𪲩
+ 0x2acaa: "K\b\U0002acaa", // 𪲪
+ 0x2acab: "K\b\U0002acab", // 𪲫
+ 0x2acac: "K\b\U0002acac", // 𪲬
+ 0x2acad: "K\b\U0002acad", // 𪲭
+ 0x2acae: "K\b\U0002acae", // 𪲮
+ 0x2acaf: "K\b\U0002acaf", // 𪲯
+ 0x2acb0: "K\t\U0002acb0", // 𪲰
+ 0x2acb1: "K\t\U0002acb1", // 𪲱
+ 0x2acb2: "K\t\U0002acb2", // 𪲲
+ 0x2acb3: "K\t\U0002acb3", // 𪲳
+ 0x2acb4: "K\t\U0002acb4", // 𪲴
+ 0x2acb5: "K\t\U0002acb5", // 𪲵
+ 0x2acb6: "K\t\U0002acb6", // 𪲶
+ 0x2acb7: "K\t\U0002acb7", // 𪲷
+ 0x2acb8: "K\t\U0002acb8", // 𪲸
+ 0x2acb9: "K\t\U0002acb9", // 𪲹
+ 0x2acba: "K\t\U0002acba", // 𪲺
+ 0x2acbb: "K\t\U0002acbb", // 𪲻
+ 0x2acbc: "K\t\U0002acbc", // 𪲼
+ 0x2acbd: "K\t\U0002acbd", // 𪲽
+ 0x2acbe: "K\t\U0002acbe", // 𪲾
+ 0x2acbf: "K\t\U0002acbf", // 𪲿
+ 0x2acc0: "K\t\U0002acc0", // 𪳀
+ 0x2acc1: "K\t\U0002acc1", // 𪳁
+ 0x2acc2: "K\t\U0002acc2", // 𪳂
+ 0x2acc3: "K\t\U0002acc3", // 𪳃
+ 0x2acc4: "K\t\U0002acc4", // 𪳄
+ 0x2acc5: "K\t\U0002acc5", // 𪳅
+ 0x2acc6: "K\t\U0002acc6", // 𪳆
+ 0x2acc7: "K\t\U0002acc7", // 𪳇
+ 0x2acc8: "K\n\U0002acc8", // 𪳈
+ 0x2acc9: "K\n\U0002acc9", // 𪳉
+ 0x2acca: "K\n\U0002acca", // 𪳊
+ 0x2accb: "K\n\U0002accb", // 𪳋
+ 0x2accc: "K\n\U0002accc", // 𪳌
+ 0x2accd: "K\n\U0002accd", // 𪳍
+ 0x2acce: "K\n\U0002acce", // 𪳎
+ 0x2accf: "K\n\U0002accf", // 𪳏
+ 0x2acd0: "K\n\U0002acd0", // 𪳐
+ 0x2acd1: "K\n\U0002acd1", // 𪳑
+ 0x2acd2: "K\n\U0002acd2", // 𪳒
+ 0x2acd3: "K\n\U0002acd3", // 𪳓
+ 0x2acd4: "K\n\U0002acd4", // 𪳔
+ 0x2acd5: "K\n\U0002acd5", // 𪳕
+ 0x2acd6: "K\n\U0002acd6", // 𪳖
+ 0x2acd7: "K\n\U0002acd7", // 𪳗
+ 0x2acd8: "K\n\U0002acd8", // 𪳘
+ 0x2acd9: "K\n\U0002acd9", // 𪳙
+ 0x2acda: "K\n\U0002acda", // 𪳚
+ 0x2acdb: "K\n\U0002acdb", // 𪳛
+ 0x2acdc: "K\n\U0002acdc", // 𪳜
+ 0x2acdd: "K\v\U0002acdd", // 𪳝
+ 0x2acde: "K\v\U0002acde", // 𪳞
+ 0x2acdf: "K\v\U0002acdf", // 𪳟
+ 0x2ace0: "K\v\U0002ace0", // 𪳠
+ 0x2ace1: "K\v\U0002ace1", // 𪳡
+ 0x2ace2: "K\v\U0002ace2", // 𪳢
+ 0x2ace3: "K\v\U0002ace3", // 𪳣
+ 0x2ace4: "K\v\U0002ace4", // 𪳤
+ 0x2ace5: "K\v\U0002ace5", // 𪳥
+ 0x2ace6: "K\v\U0002ace6", // 𪳦
+ 0x2ace7: "K\v\U0002ace7", // 𪳧
+ 0x2ace8: "K\v\U0002ace8", // 𪳨
+ 0x2ace9: "K\v\U0002ace9", // 𪳩
+ 0x2acea: "K\v\U0002acea", // 𪳪
+ 0x2aceb: "K\v\U0002aceb", // 𪳫
+ 0x2acec: "K\v\U0002acec", // 𪳬
+ 0x2aced: "K\f\U0002aced", // 𪳭
+ 0x2acee: "K\f\U0002acee", // 𪳮
+ 0x2acef: "K\f\U0002acef", // 𪳯
+ 0x2acf0: "K\f\U0002acf0", // 𪳰
+ 0x2acf1: "K\f\U0002acf1", // 𪳱
+ 0x2acf2: "K\f\U0002acf2", // 𪳲
+ 0x2acf3: "K\f\U0002acf3", // 𪳳
+ 0x2acf4: "K\f\U0002acf4", // 𪳴
+ 0x2acf5: "K\f\U0002acf5", // 𪳵
+ 0x2acf6: "K\f\U0002acf6", // 𪳶
+ 0x2acf7: "K\f\U0002acf7", // 𪳷
+ 0x2acf8: "K\f\U0002acf8", // 𪳸
+ 0x2acf9: "K\f\U0002acf9", // 𪳹
+ 0x2acfa: "K\f\U0002acfa", // 𪳺
+ 0x2acfb: "K\f\U0002acfb", // 𪳻
+ 0x2acfc: "K\f\U0002acfc", // 𪳼
+ 0x2acfd: "K\r\U0002acfd", // 𪳽
+ 0x2acfe: "K\r\U0002acfe", // 𪳾
+ 0x2acff: "K\r\U0002acff", // 𪳿
+ 0x2ad00: "K\r\U0002ad00", // 𪴀
+ 0x2ad01: "K\r\U0002ad01", // 𪴁
+ 0x2ad02: "K\r\U0002ad02", // 𪴂
+ 0x2ad03: "K\r\U0002ad03", // 𪴃
+ 0x2ad04: "K\r\U0002ad04", // 𪴄
+ 0x2ad05: "K\r\U0002ad05", // 𪴅
+ 0x2ad06: "K\r\U0002ad06", // 𪴆
+ 0x2ad07: "K\r\U0002ad07", // 𪴇
+ 0x2ad08: "K\r\U0002ad08", // 𪴈
+ 0x2ad09: "K\x0e\U0002ad09", // 𪴉
+ 0x2ad0a: "K\x0e\U0002ad0a", // 𪴊
+ 0x2ad0b: "K\x0e\U0002ad0b", // 𪴋
+ 0x2ad0c: "K\x0e\U0002ad0c", // 𪴌
+ 0x2ad0d: "K\x0e\U0002ad0d", // 𪴍
+ 0x2ad0e: "K\x0e\U0002ad0e", // 𪴎
+ 0x2ad0f: "K\x0e\U0002ad0f", // 𪴏
+ 0x2ad10: "K\x0f\U0002ad10", // 𪴐
+ 0x2ad11: "K\x0f\U0002ad11", // 𪴑
+ 0x2ad12: "K\x0f\U0002ad12", // 𪴒
+ 0x2ad13: "K\x0f\U0002ad13", // 𪴓
+ 0x2ad14: "K\x0f\U0002ad14", // 𪴔
+ 0x2ad15: "K\x0f\U0002ad15", // 𪴕
+ 0x2ad16: "K\x10\U0002ad16", // 𪴖
+ 0x2ad17: "K\x10\U0002ad17", // 𪴗
+ 0x2ad18: "K\x10\U0002ad18", // 𪴘
+ 0x2ad19: "K\x10\U0002ad19", // 𪴙
+ 0x2ad1a: "K\x10\U0002ad1a", // 𪴚
+ 0x2ad1b: "K\x11\U0002ad1b", // 𪴛
+ 0x2ad1c: "K\x11\U0002ad1c", // 𪴜
+ 0x2ad1d: "K\x11\U0002ad1d", // 𪴝
+ 0x2ad1e: "K\x11\U0002ad1e", // 𪴞
+ 0x2ad1f: "K\x12\U0002ad1f", // 𪴟
+ 0x2ad20: "K\x12\U0002ad20", // 𪴠
+ 0x2ad21: "K\x12\U0002ad21", // 𪴡
+ 0x2ad22: "K\x13\U0002ad22", // 𪴢
+ 0x2ad23: "K\x13\U0002ad23", // 𪴣
+ 0x2ad24: "K\x14\U0002ad24", // 𪴤
+ 0x2ad25: "K\x14\U0002ad25", // 𪴥
+ 0x2ad26: "K\x15\U0002ad26", // 𪴦
+ 0x2ad27: "K\x17\U0002ad27", // 𪴧
+ 0x2ad28: "K\x16\U0002ad28", // 𪴨
+ 0x2ad29: "L\x04\U0002ad29", // 𪴩
+ 0x2ad2a: "L\x05\U0002ad2a", // 𪴪
+ 0x2ad2b: "L\x05\U0002ad2b", // 𪴫
+ 0x2ad2c: "L\a\U0002ad2c", // 𪴬
+ 0x2ad2d: "L\a\U0002ad2d", // 𪴭
+ 0x2ad2e: "L\b\U0002ad2e", // 𪴮
+ 0x2ad2f: "L\t\U0002ad2f", // 𪴯
+ 0x2ad30: "L\t\U0002ad30", // 𪴰
+ 0x2ad31: "L\n\U0002ad31", // 𪴱
+ 0x2ad32: "L\v\U0002ad32", // 𪴲
+ 0x2ad33: "L\x10\U0002ad33", // 𪴳
+ 0x2ad34: "L\x14\U0002ad34", // 𪴴
+ 0x2ad35: "M\x04\U0002ad35", // 𪴵
+ 0x2ad36: "M\x06\U0002ad36", // 𪴶
+ 0x2ad37: "M\a\U0002ad37", // 𪴷
+ 0x2ad38: "M\b\U0002ad38", // 𪴸
+ 0x2ad39: "M\t\U0002ad39", // 𪴹
+ 0x2ad3a: "M\t\U0002ad3a", // 𪴺
+ 0x2ad3b: "M\n\U0002ad3b", // 𪴻
+ 0x2ad3c: "M\v\U0002ad3c", // 𪴼
+ 0x2ad3d: "M\f\U0002ad3d", // 𪴽
+ 0x2ad3e: "M\f\U0002ad3e", // 𪴾
+ 0x2ad3f: "M\r\U0002ad3f", // 𪴿
+ 0x2ad40: "N\x05\U0002ad40", // 𪵀
+ 0x2ad41: "N\x05\U0002ad41", // 𪵁
+ 0x2ad42: "N\x06\U0002ad42", // 𪵂
+ 0x2ad43: "N\x06\U0002ad43", // 𪵃
+ 0x2ad44: "N\a\U0002ad44", // 𪵄
+ 0x2ad45: "N\b\U0002ad45", // 𪵅
+ 0x2ad46: "N\n\U0002ad46", // 𪵆
+ 0x2ad47: "N\r\U0002ad47", // 𪵇
+ 0x2ad48: "O\x06\U0002ad48", // 𪵈
+ 0x2ad49: "O\x06\U0002ad49", // 𪵉
+ 0x2ad4a: "B\a\U0002ad4a", // 𪵊
+ 0x2ad4b: "O\a\U0002ad4b", // 𪵋
+ 0x2ad4c: "O\b\U0002ad4c", // 𪵌
+ 0x2ad4d: "O\b\U0002ad4d", // 𪵍
+ 0x2ad4e: "O\b\U0002ad4e", // 𪵎
+ 0x2ad4f: "O\t\U0002ad4f", // 𪵏
+ 0x2ad50: "O\v\U0002ad50", // 𪵐
+ 0x2ad51: "O\r\U0002ad51", // 𪵑
+ 0x2ad52: "O\r\U0002ad52", // 𪵒
+ 0x2ad53: "O\x15\U0002ad53", // 𪵓
+ 0x2ad54: "P\n\U0002ad54", // 𪵔
+ 0x2ad55: "Q\n\U0002ad55", // 𪵕
+ 0x2ad56: "R\x01\U0002ad56", // 𪵖
+ 0x2ad57: "R\x04\U0002ad57", // 𪵗
+ 0x2ad58: "R\x04\U0002ad58", // 𪵘
+ 0x2ad59: "R\x05\U0002ad59", // 𪵙
+ 0x2ad5a: "R\x05\U0002ad5a", // 𪵚
+ 0x2ad5b: "R\x06\U0002ad5b", // 𪵛
+ 0x2ad5c: "R\x06\U0002ad5c", // 𪵜
+ 0x2ad5d: "R\b\U0002ad5d", // 𪵝
+ 0x2ad5e: "R\b\U0002ad5e", // 𪵞
+ 0x2ad5f: "R\t\U0002ad5f", // 𪵟
+ 0x2ad60: "R\n\U0002ad60", // 𪵠
+ 0x2ad61: "R\v\U0002ad61", // 𪵡
+ 0x2ad62: "R\x0e\U0002ad62", // 𪵢
+ 0x2ad63: "T\x04\U0002ad63", // 𪵣
+ 0x2ad64: "T\x05\U0002ad64", // 𪵤
+ 0x2ad65: "T\a\U0002ad65", // 𪵥
+ 0x2ad66: "T\t\U0002ad66", // 𪵦
+ 0x2ad67: "T\n\U0002ad67", // 𪵧
+ 0x2ad68: "U\x02\U0002ad68", // 𪵨
+ 0x2ad69: "U\x03\U0002ad69", // 𪵩
+ 0x2ad6a: "U\x03\U0002ad6a", // 𪵪
+ 0x2ad6b: "U\x03\U0002ad6b", // 𪵫
+ 0x2ad6c: "U\x03\U0002ad6c", // 𪵬
+ 0x2ad6d: "U\x04\U0002ad6d", // 𪵭
+ 0x2ad6e: "U\x04\U0002ad6e", // 𪵮
+ 0x2ad6f: "U\x04\U0002ad6f", // 𪵯
+ 0x2ad70: "U\x04\U0002ad70", // 𪵰
+ 0x2ad71: "U\x05\U0002ad71", // 𪵱
+ 0x2ad72: "U\x05\U0002ad72", // 𪵲
+ 0x2ad73: "U\x05\U0002ad73", // 𪵳
+ 0x2ad74: "U\x05\U0002ad74", // 𪵴
+ 0x2ad75: "U\x05\U0002ad75", // 𪵵
+ 0x2ad76: "U\x05\U0002ad76", // 𪵶
+ 0x2ad77: "U\x06\U0002ad77", // 𪵷
+ 0x2ad78: "U\x06\U0002ad78", // 𪵸
+ 0x2ad79: "U\x06\U0002ad79", // 𪵹
+ 0x2ad7a: "U\x06\U0002ad7a", // 𪵺
+ 0x2ad7b: "U\x06\U0002ad7b", // 𪵻
+ 0x2ad7c: "U\x06\U0002ad7c", // 𪵼
+ 0x2ad7d: "U\x06\U0002ad7d", // 𪵽
+ 0x2ad7e: "U\a\U0002ad7e", // 𪵾
+ 0x2ad7f: "U\a\U0002ad7f", // 𪵿
+ 0x2ad80: "U\a\U0002ad80", // 𪶀
+ 0x2ad81: "U\a\U0002ad81", // 𪶁
+ 0x2ad82: "U\a\U0002ad82", // 𪶂
+ 0x2ad83: "U\a\U0002ad83", // 𪶃
+ 0x2ad84: "U\a\U0002ad84", // 𪶄
+ 0x2ad85: "U\a\U0002ad85", // 𪶅
+ 0x2ad86: "U\a\U0002ad86", // 𪶆
+ 0x2ad87: "U\a\U0002ad87", // 𪶇
+ 0x2ad88: "U\a\U0002ad88", // 𪶈
+ 0x2ad89: "U\a\U0002ad89", // 𪶉
+ 0x2ad8a: "U\a\U0002ad8a", // 𪶊
+ 0x2ad8b: "U\a\U0002ad8b", // 𪶋
+ 0x2ad8c: "U\b\U0002ad8c", // 𪶌
+ 0x2ad8d: "U\b\U0002ad8d", // 𪶍
+ 0x2ad8e: "U\b\U0002ad8e", // 𪶎
+ 0x2ad8f: "U\b\U0002ad8f", // 𪶏
+ 0x2ad90: "U\b\U0002ad90", // 𪶐
+ 0x2ad91: "U\b\U0002ad91", // 𪶑
+ 0x2ad92: "U\b\U0002ad92", // 𪶒
+ 0x2ad93: "U\b\U0002ad93", // 𪶓
+ 0x2ad94: "U\b\U0002ad94", // 𪶔
+ 0x2ad95: "U\b\U0002ad95", // 𪶕
+ 0x2ad96: "U\b\U0002ad96", // 𪶖
+ 0x2ad97: "U\t\U0002ad97", // 𪶗
+ 0x2ad98: "U\t\U0002ad98", // 𪶘
+ 0x2ad99: "U\t\U0002ad99", // 𪶙
+ 0x2ad9a: "U\t\U0002ad9a", // 𪶚
+ 0x2ad9b: "U\t\U0002ad9b", // 𪶛
+ 0x2ad9c: "U\t\U0002ad9c", // 𪶜
+ 0x2ad9d: "U\t\U0002ad9d", // 𪶝
+ 0x2ad9e: "U\t\U0002ad9e", // 𪶞
+ 0x2ad9f: "U\t\U0002ad9f", // 𪶟
+ 0x2ada0: "U\t\U0002ada0", // 𪶠
+ 0x2ada1: "U\t\U0002ada1", // 𪶡
+ 0x2ada2: "U\t\U0002ada2", // 𪶢
+ 0x2ada3: "U\t\U0002ada3", // 𪶣
+ 0x2ada4: "U\t\U0002ada4", // 𪶤
+ 0x2ada5: "U\t\U0002ada5", // 𪶥
+ 0x2ada6: "U\t\U0002ada6", // 𪶦
+ 0x2ada7: "U\t\U0002ada7", // 𪶧
+ 0x2ada8: "U\t\U0002ada8", // 𪶨
+ 0x2ada9: "U\t\U0002ada9", // 𪶩
+ 0x2adaa: "U\n\U0002adaa", // 𪶪
+ 0x2adab: "U\n\U0002adab", // 𪶫
+ 0x2adac: "U\n\U0002adac", // 𪶬
+ 0x2adad: "U\n\U0002adad", // 𪶭
+ 0x2adae: "U\n\U0002adae", // 𪶮
+ 0x2adaf: "U\n\U0002adaf", // 𪶯
+ 0x2adb0: "U\n\U0002adb0", // 𪶰
+ 0x2adb1: "U\n\U0002adb1", // 𪶱
+ 0x2adb2: "U\n\U0002adb2", // 𪶲
+ 0x2adb3: "U\n\U0002adb3", // 𪶳
+ 0x2adb4: "U\n\U0002adb4", // 𪶴
+ 0x2adb5: "U\n\U0002adb5", // 𪶵
+ 0x2adb6: "U\n\U0002adb6", // 𪶶
+ 0x2adb7: "U\n\U0002adb7", // 𪶷
+ 0x2adb8: "U\n\U0002adb8", // 𪶸
+ 0x2adb9: "U\n\U0002adb9", // 𪶹
+ 0x2adba: "U\n\U0002adba", // 𪶺
+ 0x2adbb: "U\n\U0002adbb", // 𪶻
+ 0x2adbc: "U\n\U0002adbc", // 𪶼
+ 0x2adbd: "U\n\U0002adbd", // 𪶽
+ 0x2adbe: "U\n\U0002adbe", // 𪶾
+ 0x2adbf: "U\v\U0002adbf", // 𪶿
+ 0x2adc0: "U\v\U0002adc0", // 𪷀
+ 0x2adc1: "U\v\U0002adc1", // 𪷁
+ 0x2adc2: "U\v\U0002adc2", // 𪷂
+ 0x2adc3: "U\v\U0002adc3", // 𪷃
+ 0x2adc4: "U\v\U0002adc4", // 𪷄
+ 0x2adc5: "U\v\U0002adc5", // 𪷅
+ 0x2adc6: "U\v\U0002adc6", // 𪷆
+ 0x2adc7: "U\v\U0002adc7", // 𪷇
+ 0x2adc8: "U\v\U0002adc8", // 𪷈
+ 0x2adc9: "U\v\U0002adc9", // 𪷉
+ 0x2adca: "U\v\U0002adca", // 𪷊
+ 0x2adcb: "U\f\U0002adcb", // 𪷋
+ 0x2adcc: "U\f\U0002adcc", // 𪷌
+ 0x2adcd: "U\f\U0002adcd", // 𪷍
+ 0x2adce: "U\f\U0002adce", // 𪷎
+ 0x2adcf: "U\f\U0002adcf", // 𪷏
+ 0x2add0: "U\f\U0002add0", // 𪷐
+ 0x2add1: "U\f\U0002add1", // 𪷑
+ 0x2add2: "U\f\U0002add2", // 𪷒
+ 0x2add3: "U\f\U0002add3", // 𪷓
+ 0x2add4: "U\f\U0002add4", // 𪷔
+ 0x2add5: "U\f\U0002add5", // 𪷕
+ 0x2add6: "U\f\U0002add6", // 𪷖
+ 0x2add7: "U\f\U0002add7", // 𪷗
+ 0x2add8: "U\f\U0002add8", // 𪷘
+ 0x2add9: "U\f\U0002add9", // 𪷙
+ 0x2adda: "U\f\U0002adda", // 𪷚
+ 0x2addb: "U\f\U0002addb", // 𪷛
+ 0x2addc: "U\f\U0002addc", // 𪷜
+ 0x2addd: "U\r\U0002addd", // 𪷝
+ 0x2adde: "U\r\U0002adde", // 𪷞
+ 0x2addf: "U\r\U0002addf", // 𪷟
+ 0x2ade0: "U\r\U0002ade0", // 𪷠
+ 0x2ade1: "U\r\U0002ade1", // 𪷡
+ 0x2ade2: "U\r\U0002ade2", // 𪷢
+ 0x2ade3: "U\r\U0002ade3", // 𪷣
+ 0x2ade4: "U\r\U0002ade4", // 𪷤
+ 0x2ade5: "U\r\U0002ade5", // 𪷥
+ 0x2ade6: "U\r\U0002ade6", // 𪷦
+ 0x2ade7: "U\r\U0002ade7", // 𪷧
+ 0x2ade8: "U\x0e\U0002ade8", // 𪷨
+ 0x2ade9: "U\x0e\U0002ade9", // 𪷩
+ 0x2adea: "U\x0e\U0002adea", // 𪷪
+ 0x2adeb: "U\x0e\U0002adeb", // 𪷫
+ 0x2adec: "U\x0e\U0002adec", // 𪷬
+ 0x2aded: "U\x0e\U0002aded", // 𪷭
+ 0x2adee: "U\x0e\U0002adee", // 𪷮
+ 0x2adef: "U\x0e\U0002adef", // 𪷯
+ 0x2adf0: "U\x0e\U0002adf0", // 𪷰
+ 0x2adf1: "U\x0e\U0002adf1", // 𪷱
+ 0x2adf2: "U\x0e\U0002adf2", // 𪷲
+ 0x2adf3: "U\x0f\U0002adf3", // 𪷳
+ 0x2adf4: "U\x0f\U0002adf4", // 𪷴
+ 0x2adf5: "U\x0f\U0002adf5", // 𪷵
+ 0x2adf6: "U\x0f\U0002adf6", // 𪷶
+ 0x2adf7: "U\x0f\U0002adf7", // 𪷷
+ 0x2adf8: "U\x0f\U0002adf8", // 𪷸
+ 0x2adf9: "U\x0f\U0002adf9", // 𪷹
+ 0x2adfa: "U\x10\U0002adfa", // 𪷺
+ 0x2adfb: "U\x10\U0002adfb", // 𪷻
+ 0x2adfc: "U\x10\U0002adfc", // 𪷼
+ 0x2adfd: "U\x10\U0002adfd", // 𪷽
+ 0x2adfe: "U\x10\U0002adfe", // 𪷾
+ 0x2adff: "U\x10\U0002adff", // 𪷿
+ 0x2ae00: "U\x11\U0002ae00", // 𪸀
+ 0x2ae01: "U\x11\U0002ae01", // 𪸁
+ 0x2ae02: "U\x11\U0002ae02", // 𪸂
+ 0x2ae03: "U\x12\U0002ae03", // 𪸃
+ 0x2ae04: "U\x12\U0002ae04", // 𪸄
+ 0x2ae05: "U\x12\U0002ae05", // 𪸅
+ 0x2ae06: "U\x12\U0002ae06", // 𪸆
+ 0x2ae07: "U\x12\U0002ae07", // 𪸇
+ 0x2ae08: "U\x13\U0002ae08", // 𪸈
+ 0x2ae09: "U\x13\U0002ae09", // 𪸉
+ 0x2ae0a: "U\x14\U0002ae0a", // 𪸊
+ 0x2ae0b: "U\x14\U0002ae0b", // 𪸋
+ 0x2ae0c: "U\x15\U0002ae0c", // 𪸌
+ 0x2ae0d: "V\x01\U0002ae0d", // 𪸍
+ 0x2ae0e: "V\x03\U0002ae0e", // 𪸎
+ 0x2ae0f: "V\x03\U0002ae0f", // 𪸏
+ 0x2ae10: "V\x03\U0002ae10", // 𪸐
+ 0x2ae11: "V\x04\U0002ae11", // 𪸑
+ 0x2ae12: "V\x04\U0002ae12", // 𪸒
+ 0x2ae13: "V\x04\U0002ae13", // 𪸓
+ 0x2ae14: "V\x04\U0002ae14", // 𪸔
+ 0x2ae15: "V\x04\U0002ae15", // 𪸕
+ 0x2ae16: "V\x04\U0002ae16", // 𪸖
+ 0x2ae17: "V\x04\U0002ae17", // 𪸗
+ 0x2ae18: "V\x05\U0002ae18", // 𪸘
+ 0x2ae19: "V\x05\U0002ae19", // 𪸙
+ 0x2ae1a: "V\x05\U0002ae1a", // 𪸚
+ 0x2ae1b: "V\x05\U0002ae1b", // 𪸛
+ 0x2ae1c: "V\x05\U0002ae1c", // 𪸜
+ 0x2ae1d: "V\x05\U0002ae1d", // 𪸝
+ 0x2ae1e: "V\x05\U0002ae1e", // 𪸞
+ 0x2ae1f: "V\x05\U0002ae1f", // 𪸟
+ 0x2ae20: "V\x05\U0002ae20", // 𪸠
+ 0x2ae21: "V\x05\U0002ae21", // 𪸡
+ 0x2ae22: "V\x05\U0002ae22", // 𪸢
+ 0x2ae23: "V\x06\U0002ae23", // 𪸣
+ 0x2ae24: "V\x06\U0002ae24", // 𪸤
+ 0x2ae25: "V\x06\U0002ae25", // 𪸥
+ 0x2ae26: "V\x06\U0002ae26", // 𪸦
+ 0x2ae27: "V\x06\U0002ae27", // 𪸧
+ 0x2ae28: "V\x06\U0002ae28", // 𪸨
+ 0x2ae29: "V\x06\U0002ae29", // 𪸩
+ 0x2ae2a: "V\x06\U0002ae2a", // 𪸪
+ 0x2ae2b: "V\a\U0002ae2b", // 𪸫
+ 0x2ae2c: "V\a\U0002ae2c", // 𪸬
+ 0x2ae2d: "V\a\U0002ae2d", // 𪸭
+ 0x2ae2e: "V\a\U0002ae2e", // 𪸮
+ 0x2ae2f: "V\a\U0002ae2f", // 𪸯
+ 0x2ae30: "V\a\U0002ae30", // 𪸰
+ 0x2ae31: "V\a\U0002ae31", // 𪸱
+ 0x2ae32: "V\a\U0002ae32", // 𪸲
+ 0x2ae33: "V\b\U0002ae33", // 𪸳
+ 0x2ae34: "V\b\U0002ae34", // 𪸴
+ 0x2ae35: "V\b\U0002ae35", // 𪸵
+ 0x2ae36: "V\b\U0002ae36", // 𪸶
+ 0x2ae37: "V\b\U0002ae37", // 𪸷
+ 0x2ae38: "V\b\U0002ae38", // 𪸸
+ 0x2ae39: "V\b\U0002ae39", // 𪸹
+ 0x2ae3a: "V\b\U0002ae3a", // 𪸺
+ 0x2ae3b: "V\b\U0002ae3b", // 𪸻
+ 0x2ae3c: "V\b\U0002ae3c", // 𪸼
+ 0x2ae3d: "V\b\U0002ae3d", // 𪸽
+ 0x2ae3e: "V\b\U0002ae3e", // 𪸾
+ 0x2ae3f: "V\b\U0002ae3f", // 𪸿
+ 0x2ae40: "V\b\U0002ae40", // 𪹀
+ 0x2ae41: "V\b\U0002ae41", // 𪹁
+ 0x2ae42: "V\b\U0002ae42", // 𪹂
+ 0x2ae43: "V\b\U0002ae43", // 𪹃
+ 0x2ae44: "V\t\U0002ae44", // 𪹄
+ 0x2ae45: "V\t\U0002ae45", // 𪹅
+ 0x2ae46: "V\t\U0002ae46", // 𪹆
+ 0x2ae47: "V\t\U0002ae47", // 𪹇
+ 0x2ae48: "V\t\U0002ae48", // 𪹈
+ 0x2ae49: "V\t\U0002ae49", // 𪹉
+ 0x2ae4a: "V\t\U0002ae4a", // 𪹊
+ 0x2ae4b: "V\t\U0002ae4b", // 𪹋
+ 0x2ae4c: "V\t\U0002ae4c", // 𪹌
+ 0x2ae4d: "V\t\U0002ae4d", // 𪹍
+ 0x2ae4e: "V\t\U0002ae4e", // 𪹎
+ 0x2ae4f: "V\t\U0002ae4f", // 𪹏
+ 0x2ae50: "V\t\U0002ae50", // 𪹐
+ 0x2ae51: "V\t\U0002ae51", // 𪹑
+ 0x2ae52: "V\n\U0002ae52", // 𪹒
+ 0x2ae53: "V\n\U0002ae53", // 𪹓
+ 0x2ae54: "V\n\U0002ae54", // 𪹔
+ 0x2ae55: "V\n\U0002ae55", // 𪹕
+ 0x2ae56: "V\n\U0002ae56", // 𪹖
+ 0x2ae57: "V\n\U0002ae57", // 𪹗
+ 0x2ae58: "V\n\U0002ae58", // 𪹘
+ 0x2ae59: "V\n\U0002ae59", // 𪹙
+ 0x2ae5a: "V\n\U0002ae5a", // 𪹚
+ 0x2ae5b: "V\n\U0002ae5b", // 𪹛
+ 0x2ae5c: "V\n\U0002ae5c", // 𪹜
+ 0x2ae5d: "V\n\U0002ae5d", // 𪹝
+ 0x2ae5e: "V\n\U0002ae5e", // 𪹞
+ 0x2ae5f: "V\n\U0002ae5f", // 𪹟
+ 0x2ae60: "V\n\U0002ae60", // 𪹠
+ 0x2ae61: "V\v\U0002ae61", // 𪹡
+ 0x2ae62: "V\v\U0002ae62", // 𪹢
+ 0x2ae63: "V\v\U0002ae63", // 𪹣
+ 0x2ae64: "V\v\U0002ae64", // 𪹤
+ 0x2ae65: "V\v\U0002ae65", // 𪹥
+ 0x2ae66: "V\v\U0002ae66", // 𪹦
+ 0x2ae67: "V\v\U0002ae67", // 𪹧
+ 0x2ae68: "V\v\U0002ae68", // 𪹨
+ 0x2ae69: "V\v\U0002ae69", // 𪹩
+ 0x2ae6a: "V\f\U0002ae6a", // 𪹪
+ 0x2ae6b: "V\f\U0002ae6b", // 𪹫
+ 0x2ae6c: "V\f\U0002ae6c", // 𪹬
+ 0x2ae6d: "V\f\U0002ae6d", // 𪹭
+ 0x2ae6e: "V\f\U0002ae6e", // 𪹮
+ 0x2ae6f: "V\f\U0002ae6f", // 𪹯
+ 0x2ae70: "V\f\U0002ae70", // 𪹰
+ 0x2ae71: "V\f\U0002ae71", // 𪹱
+ 0x2ae72: "V\f\U0002ae72", // 𪹲
+ 0x2ae73: "V\f\U0002ae73", // 𪹳
+ 0x2ae74: "V\r\U0002ae74", // 𪹴
+ 0x2ae75: "V\r\U0002ae75", // 𪹵
+ 0x2ae76: "V\r\U0002ae76", // 𪹶
+ 0x2ae77: "V\r\U0002ae77", // 𪹷
+ 0x2ae78: "V\r\U0002ae78", // 𪹸
+ 0x2ae79: "V\r\U0002ae79", // 𪹹
+ 0x2ae7a: "V\r\U0002ae7a", // 𪹺
+ 0x2ae7b: "V\r\U0002ae7b", // 𪹻
+ 0x2ae7c: "V\x0e\U0002ae7c", // 𪹼
+ 0x2ae7d: "V\x0e\U0002ae7d", // 𪹽
+ 0x2ae7e: "V\x0e\U0002ae7e", // 𪹾
+ 0x2ae7f: "V\x0e\U0002ae7f", // 𪹿
+ 0x2ae80: "V\x0e\U0002ae80", // 𪺀
+ 0x2ae81: "V\x0f\U0002ae81", // 𪺁
+ 0x2ae82: "V\x0f\U0002ae82", // 𪺂
+ 0x2ae83: "V\x10\U0002ae83", // 𪺃
+ 0x2ae84: "V\x10\U0002ae84", // 𪺄
+ 0x2ae85: "V\x10\U0002ae85", // 𪺅
+ 0x2ae86: "V\x12\U0002ae86", // 𪺆
+ 0x2ae87: "V\x12\U0002ae87", // 𪺇
+ 0x2ae88: "V\x13\U0002ae88", // 𪺈
+ 0x2ae89: "V\x14\U0002ae89", // 𪺉
+ 0x2ae8a: "V\x15\U0002ae8a", // 𪺊
+ 0x2ae8b: "V\x15\U0002ae8b", // 𪺋
+ 0x2ae8c: "V\x17\U0002ae8c", // 𪺌
+ 0x2ae8d: "W\x03\U0002ae8d", // 𪺍
+ 0x2ae8e: "W\x05\U0002ae8e", // 𪺎
+ 0x2ae8f: "W\a\U0002ae8f", // 𪺏
+ 0x2ae90: "W\b\U0002ae90", // 𪺐
+ 0x2ae91: "W\b\U0002ae91", // 𪺑
+ 0x2ae92: "W\b\U0002ae92", // 𪺒
+ 0x2ae93: "W\b\U0002ae93", // 𪺓
+ 0x2ae94: "W\t\U0002ae94", // 𪺔
+ 0x2ae95: "W\t\U0002ae95", // 𪺕
+ 0x2ae96: "W\v\U0002ae96", // 𪺖
+ 0x2ae97: "W\v\U0002ae97", // 𪺗
+ 0x2ae98: "W\r\U0002ae98", // 𪺘
+ 0x2ae99: "W\r\U0002ae99", // 𪺙
+ 0x2ae9a: "W!\U0002ae9a", // 𪺚
+ 0x2ae9b: "X\x06\U0002ae9b", // 𪺛
+ 0x2ae9c: "X\a\U0002ae9c", // 𪺜
+ 0x2ae9d: "Y\x04\U0002ae9d", // 𪺝
+ 0x2ae9e: "Z\a\U0002ae9e", // 𪺞
+ 0x2ae9f: "Z\b\U0002ae9f", // 𪺟
+ 0x2aea0: "Z\v\U0002aea0", // 𪺠
+ 0x2aea1: "Z\x0e\U0002aea1", // 𪺡
+ 0x2aea2: "[\x06\U0002aea2", // 𪺢
+ 0x2aea3: "[\a\U0002aea3", // 𪺣
+ 0x2aea4: "[\a\U0002aea4", // 𪺤
+ 0x2aea5: "[\b\U0002aea5", // 𪺥
+ 0x2aea6: "[\f\U0002aea6", // 𪺦
+ 0x2aea7: "\\\x04\U0002aea7", // 𪺧
+ 0x2aea8: "\\\b\U0002aea8", // 𪺨
+ 0x2aea9: "]\x03\U0002aea9", // 𪺩
+ 0x2aeaa: "]\x05\U0002aeaa", // 𪺪
+ 0x2aeab: "]\x05\U0002aeab", // 𪺫
+ 0x2aeac: "]\x06\U0002aeac", // 𪺬
+ 0x2aead: "]\x06\U0002aead", // 𪺭
+ 0x2aeae: "]\x06\U0002aeae", // 𪺮
+ 0x2aeaf: "]\b\U0002aeaf", // 𪺯
+ 0x2aeb0: "]\t\U0002aeb0", // 𪺰
+ 0x2aeb1: "]\n\U0002aeb1", // 𪺱
+ 0x2aeb2: "]\n\U0002aeb2", // 𪺲
+ 0x2aeb3: "]\n\U0002aeb3", // 𪺳
+ 0x2aeb4: "]\v\U0002aeb4", // 𪺴
+ 0x2aeb5: "]\f\U0002aeb5", // 𪺵
+ 0x2aeb6: "]\x11\U0002aeb6", // 𪺶
+ 0x2aeb7: "^\x04\U0002aeb7", // 𪺷
+ 0x2aeb8: "^\x05\U0002aeb8", // 𪺸
+ 0x2aeb9: "^\x05\U0002aeb9", // 𪺹
+ 0x2aeba: "^\x06\U0002aeba", // 𪺺
+ 0x2aebb: "^\x06\U0002aebb", // 𪺻
+ 0x2aebc: "^\a\U0002aebc", // 𪺼
+ 0x2aebd: "^\a\U0002aebd", // 𪺽
+ 0x2aebe: "^\b\U0002aebe", // 𪺾
+ 0x2aebf: "^\b\U0002aebf", // 𪺿
+ 0x2aec0: "^\b\U0002aec0", // 𪻀
+ 0x2aec1: "^\b\U0002aec1", // 𪻁
+ 0x2aec2: "^\t\U0002aec2", // 𪻂
+ 0x2aec3: "^\t\U0002aec3", // 𪻃
+ 0x2aec4: "^\t\U0002aec4", // 𪻄
+ 0x2aec5: "^\t\U0002aec5", // 𪻅
+ 0x2aec6: "^\n\U0002aec6", // 𪻆
+ 0x2aec7: "^\n\U0002aec7", // 𪻇
+ 0x2aec8: "^\v\U0002aec8", // 𪻈
+ 0x2aec9: "^\f\U0002aec9", // 𪻉
+ 0x2aeca: "^\x0e\U0002aeca", // 𪻊
+ 0x2aecb: "^\x0f\U0002aecb", // 𪻋
+ 0x2aecc: "^\x10\U0002aecc", // 𪻌
+ 0x2aecd: "`\x02\U0002aecd", // 𪻍
+ 0x2aece: "`\x04\U0002aece", // 𪻎
+ 0x2aecf: "`\x04\U0002aecf", // 𪻏
+ 0x2aed0: "`\x04\U0002aed0", // 𪻐
+ 0x2aed1: "`\x04\U0002aed1", // 𪻑
+ 0x2aed2: "`\x04\U0002aed2", // 𪻒
+ 0x2aed3: "`\x04\U0002aed3", // 𪻓
+ 0x2aed4: "`\x04\U0002aed4", // 𪻔
+ 0x2aed5: "`\x05\U0002aed5", // 𪻕
+ 0x2aed6: "`\x05\U0002aed6", // 𪻖
+ 0x2aed7: "`\x06\U0002aed7", // 𪻗
+ 0x2aed8: "`\x06\U0002aed8", // 𪻘
+ 0x2aed9: "`\x06\U0002aed9", // 𪻙
+ 0x2aeda: "`\x06\U0002aeda", // 𪻚
+ 0x2aedb: "`\x06\U0002aedb", // 𪻛
+ 0x2aedc: "`\x06\U0002aedc", // 𪻜
+ 0x2aedd: "`\x06\U0002aedd", // 𪻝
+ 0x2aede: "`\x06\U0002aede", // 𪻞
+ 0x2aedf: "`\x06\U0002aedf", // 𪻟
+ 0x2aee0: "`\a\U0002aee0", // 𪻠
+ 0x2aee1: "`\a\U0002aee1", // 𪻡
+ 0x2aee2: "`\a\U0002aee2", // 𪻢
+ 0x2aee3: "`\a\U0002aee3", // 𪻣
+ 0x2aee4: "`\a\U0002aee4", // 𪻤
+ 0x2aee5: "`\a\U0002aee5", // 𪻥
+ 0x2aee6: "`\b\U0002aee6", // 𪻦
+ 0x2aee7: "`\b\U0002aee7", // 𪻧
+ 0x2aee8: "`\b\U0002aee8", // 𪻨
+ 0x2aee9: "`\b\U0002aee9", // 𪻩
+ 0x2aeea: "`\b\U0002aeea", // 𪻪
+ 0x2aeeb: "`\b\U0002aeeb", // 𪻫
+ 0x2aeec: "`\b\U0002aeec", // 𪻬
+ 0x2aeed: "`\b\U0002aeed", // 𪻭
+ 0x2aeee: "`\b\U0002aeee", // 𪻮
+ 0x2aeef: "`\b\U0002aeef", // 𪻯
+ 0x2aef0: "`\b\U0002aef0", // 𪻰
+ 0x2aef1: "`\b\U0002aef1", // 𪻱
+ 0x2aef2: "`\b\U0002aef2", // 𪻲
+ 0x2aef3: "`\t\U0002aef3", // 𪻳
+ 0x2aef4: "`\t\U0002aef4", // 𪻴
+ 0x2aef5: "`\t\U0002aef5", // 𪻵
+ 0x2aef6: "`\t\U0002aef6", // 𪻶
+ 0x2aef7: "`\t\U0002aef7", // 𪻷
+ 0x2aef8: "`\t\U0002aef8", // 𪻸
+ 0x2aef9: "`\t\U0002aef9", // 𪻹
+ 0x2aefa: "`\t\U0002aefa", // 𪻺
+ 0x2aefb: "`\t\U0002aefb", // 𪻻
+ 0x2aefc: "`\t\U0002aefc", // 𪻼
+ 0x2aefd: "`\t\U0002aefd", // 𪻽
+ 0x2aefe: "`\t\U0002aefe", // 𪻾
+ 0x2aeff: "`\t\U0002aeff", // 𪻿
+ 0x2af00: "`\t\U0002af00", // 𪼀
+ 0x2af01: "`\t\U0002af01", // 𪼁
+ 0x2af02: "`\t\U0002af02", // 𪼂
+ 0x2af03: "`\n\U0002af03", // 𪼃
+ 0x2af04: "`\n\U0002af04", // 𪼄
+ 0x2af05: "`\n\U0002af05", // 𪼅
+ 0x2af06: "`\n\U0002af06", // 𪼆
+ 0x2af07: "`\n\U0002af07", // 𪼇
+ 0x2af08: "`\n\U0002af08", // 𪼈
+ 0x2af09: "`\n\U0002af09", // 𪼉
+ 0x2af0a: "`\n\U0002af0a", // 𪼊
+ 0x2af0b: "`\n\U0002af0b", // 𪼋
+ 0x2af0c: "`\n\U0002af0c", // 𪼌
+ 0x2af0d: "`\n\U0002af0d", // 𪼍
+ 0x2af0e: "`\n\U0002af0e", // 𪼎
+ 0x2af0f: "`\n\U0002af0f", // 𪼏
+ 0x2af10: "`\v\U0002af10", // 𪼐
+ 0x2af11: "`\v\U0002af11", // 𪼑
+ 0x2af12: "`\v\U0002af12", // 𪼒
+ 0x2af13: "`\v\U0002af13", // 𪼓
+ 0x2af14: "`\v\U0002af14", // 𪼔
+ 0x2af15: "`\v\U0002af15", // 𪼕
+ 0x2af16: "`\v\U0002af16", // 𪼖
+ 0x2af17: "`\f\U0002af17", // 𪼗
+ 0x2af18: "`\f\U0002af18", // 𪼘
+ 0x2af19: "`\f\U0002af19", // 𪼙
+ 0x2af1a: "`\f\U0002af1a", // 𪼚
+ 0x2af1b: "`\f\U0002af1b", // 𪼛
+ 0x2af1c: "`\f\U0002af1c", // 𪼜
+ 0x2af1d: "`\f\U0002af1d", // 𪼝
+ 0x2af1e: "`\f\U0002af1e", // 𪼞
+ 0x2af1f: "`\f\U0002af1f", // 𪼟
+ 0x2af20: "`\f\U0002af20", // 𪼠
+ 0x2af21: "`\r\U0002af21", // 𪼡
+ 0x2af22: "`\r\U0002af22", // 𪼢
+ 0x2af23: "`\r\U0002af23", // 𪼣
+ 0x2af24: "`\r\U0002af24", // 𪼤
+ 0x2af25: "`\r\U0002af25", // 𪼥
+ 0x2af26: "`\r\U0002af26", // 𪼦
+ 0x2af27: "`\x0e\U0002af27", // 𪼧
+ 0x2af28: "`\x0e\U0002af28", // 𪼨
+ 0x2af29: "`\x0f\U0002af29", // 𪼩
+ 0x2af2a: "`\x0f\U0002af2a", // 𪼪
+ 0x2af2b: "`\x0f\U0002af2b", // 𪼫
+ 0x2af2c: "`\x10\U0002af2c", // 𪼬
+ 0x2af2d: "`\x10\U0002af2d", // 𪼭
+ 0x2af2e: "`\x10\U0002af2e", // 𪼮
+ 0x2af2f: "`\x10\U0002af2f", // 𪼯
+ 0x2af30: "`\x11\U0002af30", // 𪼰
+ 0x2af31: "`\x13\U0002af31", // 𪼱
+ 0x2af32: "`\x14\U0002af32", // 𪼲
+ 0x2af33: "a\x03\U0002af33", // 𪼳
+ 0x2af34: "a\x04\U0002af34", // 𪼴
+ 0x2af35: "a\b\U0002af35", // 𪼵
+ 0x2af36: "b\x03\U0002af36", // 𪼶
+ 0x2af37: "b\x04\U0002af37", // 𪼷
+ 0x2af38: "b\x04\U0002af38", // 𪼸
+ 0x2af39: "b\x05\U0002af39", // 𪼹
+ 0x2af3a: "b\b\U0002af3a", // 𪼺
+ 0x2af3b: "b\b\U0002af3b", // 𪼻
+ 0x2af3c: "b\t\U0002af3c", // 𪼼
+ 0x2af3d: "b\n\U0002af3d", // 𪼽
+ 0x2af3e: "b\n\U0002af3e", // 𪼾
+ 0x2af3f: "b\x11\U0002af3f", // 𪼿
+ 0x2af40: "c\a\U0002af40", // 𪽀
+ 0x2af41: "d\x02\U0002af41", // 𪽁
+ 0x2af42: "d\x06\U0002af42", // 𪽂
+ 0x2af43: "d\b\U0002af43", // 𪽃
+ 0x2af44: "d\b\U0002af44", // 𪽄
+ 0x2af45: "d\b\U0002af45", // 𪽅
+ 0x2af46: "e\x01\U0002af46", // 𪽆
+ 0x2af47: "f\x02\U0002af47", // 𪽇
+ 0x2af48: "f\x03\U0002af48", // 𪽈
+ 0x2af49: "f\x04\U0002af49", // 𪽉
+ 0x2af4a: "f\x04\U0002af4a", // 𪽊
+ 0x2af4b: "f\x04\U0002af4b", // 𪽋
+ 0x2af4c: "f\x04\U0002af4c", // 𪽌
+ 0x2af4d: "f\x05\U0002af4d", // 𪽍
+ 0x2af4e: "f\x05\U0002af4e", // 𪽎
+ 0x2af4f: "f\x05\U0002af4f", // 𪽏
+ 0x2af50: "f\x05\U0002af50", // 𪽐
+ 0x2af51: "f\x06\U0002af51", // 𪽑
+ 0x2af52: "f\x06\U0002af52", // 𪽒
+ 0x2af53: "f\a\U0002af53", // 𪽓
+ 0x2af54: "f\a\U0002af54", // 𪽔
+ 0x2af55: "f\a\U0002af55", // 𪽕
+ 0x2af56: "f\a\U0002af56", // 𪽖
+ 0x2af57: "f\a\U0002af57", // 𪽗
+ 0x2af58: "f\b\U0002af58", // 𪽘
+ 0x2af59: "f\b\U0002af59", // 𪽙
+ 0x2af5a: "f\b\U0002af5a", // 𪽚
+ 0x2af5b: "f\t\U0002af5b", // 𪽛
+ 0x2af5c: "f\t\U0002af5c", // 𪽜
+ 0x2af5d: "f\n\U0002af5d", // 𪽝
+ 0x2af5e: "f\n\U0002af5e", // 𪽞
+ 0x2af5f: "f\v\U0002af5f", // 𪽟
+ 0x2af60: "f\v\U0002af60", // 𪽠
+ 0x2af61: "f\v\U0002af61", // 𪽡
+ 0x2af62: "f\f\U0002af62", // 𪽢
+ 0x2af63: "f\r\U0002af63", // 𪽣
+ 0x2af64: "f\x0f\U0002af64", // 𪽤
+ 0x2af65: "f\x10\U0002af65", // 𪽥
+ 0x2af66: "f\x10\U0002af66", // 𪽦
+ 0x2af67: "g\f\U0002af67", // 𪽧
+ 0x2af68: "h\x04\U0002af68", // 𪽨
+ 0x2af69: "h\x04\U0002af69", // 𪽩
+ 0x2af6a: "h\x04\U0002af6a", // 𪽪
+ 0x2af6b: "h\x04\U0002af6b", // 𪽫
+ 0x2af6c: "h\x05\U0002af6c", // 𪽬
+ 0x2af6d: "h\x05\U0002af6d", // 𪽭
+ 0x2af6e: "h\x05\U0002af6e", // 𪽮
+ 0x2af6f: "h\x06\U0002af6f", // 𪽯
+ 0x2af70: "h\a\U0002af70", // 𪽰
+ 0x2af71: "h\a\U0002af71", // 𪽱
+ 0x2af72: "h\b\U0002af72", // 𪽲
+ 0x2af73: "h\t\U0002af73", // 𪽳
+ 0x2af74: "h\t\U0002af74", // 𪽴
+ 0x2af75: "h\t\U0002af75", // 𪽵
+ 0x2af76: "h\n\U0002af76", // 𪽶
+ 0x2af77: "h\n\U0002af77", // 𪽷
+ 0x2af78: "h\f\U0002af78", // 𪽸
+ 0x2af79: "h\f\U0002af79", // 𪽹
+ 0x2af7a: "h\x0e\U0002af7a", // 𪽺
+ 0x2af7b: "j\x04\U0002af7b", // 𪽻
+ 0x2af7c: "j\x04\U0002af7c", // 𪽼
+ 0x2af7d: "j\x05\U0002af7d", // 𪽽
+ 0x2af7e: "j\a\U0002af7e", // 𪽾
+ 0x2af7f: "j\a\U0002af7f", // 𪽿
+ 0x2af80: "j\b\U0002af80", // 𪾀
+ 0x2af81: "j\b\U0002af81", // 𪾁
+ 0x2af82: "j\t\U0002af82", // 𪾂
+ 0x2af83: "j\t\U0002af83", // 𪾃
+ 0x2af84: "j\n\U0002af84", // 𪾄
+ 0x2af85: "j\x10\U0002af85", // 𪾅
+ 0x2af86: "k\x03\U0002af86", // 𪾆
+ 0x2af87: "k\x04\U0002af87", // 𪾇
+ 0x2af88: "k\t\U0002af88", // 𪾈
+ 0x2af89: "k\t\U0002af89", // 𪾉
+ 0x2af8a: "l\x04\U0002af8a", // 𪾊
+ 0x2af8b: "l\x04\U0002af8b", // 𪾋
+ 0x2af8c: "l\x05\U0002af8c", // 𪾌
+ 0x2af8d: "l\x05\U0002af8d", // 𪾍
+ 0x2af8e: "l\x06\U0002af8e", // 𪾎
+ 0x2af8f: "l\a\U0002af8f", // 𪾏
+ 0x2af90: "l\a\U0002af90", // 𪾐
+ 0x2af91: "l\b\U0002af91", // 𪾑
+ 0x2af92: "l\b\U0002af92", // 𪾒
+ 0x2af93: "l\t\U0002af93", // 𪾓
+ 0x2af94: "l\t\U0002af94", // 𪾔
+ 0x2af95: "l\n\U0002af95", // 𪾕
+ 0x2af96: "l\v\U0002af96", // 𪾖
+ 0x2af97: "l\f\U0002af97", // 𪾗
+ 0x2af98: "l\f\U0002af98", // 𪾘
+ 0x2af99: "l\r\U0002af99", // 𪾙
+ 0x2af9a: "l\x0e\U0002af9a", // 𪾚
+ 0x2af9b: "l\x10\U0002af9b", // 𪾛
+ 0x2af9c: "l\x11\U0002af9c", // 𪾜
+ 0x2af9d: "l\x13\U0002af9d", // 𪾝
+ 0x2af9e: "l\x18\U0002af9e", // 𪾞
+ 0x2af9f: "m\x03\U0002af9f", // 𪾟
+ 0x2afa0: "m\x03\U0002afa0", // 𪾠
+ 0x2afa1: "m\x04\U0002afa1", // 𪾡
+ 0x2afa2: "m\x04\U0002afa2", // 𪾢
+ 0x2afa3: "m\x04\U0002afa3", // 𪾣
+ 0x2afa4: "m\x05\U0002afa4", // 𪾤
+ 0x2afa5: "m\x05\U0002afa5", // 𪾥
+ 0x2afa6: "m\x05\U0002afa6", // 𪾦
+ 0x2afa7: "m\x05\U0002afa7", // 𪾧
+ 0x2afa8: "m\x06\U0002afa8", // 𪾨
+ 0x2afa9: "m\x06\U0002afa9", // 𪾩
+ 0x2afaa: "m\x06\U0002afaa", // 𪾪
+ 0x2afab: "m\a\U0002afab", // 𪾫
+ 0x2afac: "m\a\U0002afac", // 𪾬
+ 0x2afad: "m\b\U0002afad", // 𪾭
+ 0x2afae: "m\b\U0002afae", // 𪾮
+ 0x2afaf: "m\b\U0002afaf", // 𪾯
+ 0x2afb0: "m\b\U0002afb0", // 𪾰
+ 0x2afb1: "m\t\U0002afb1", // 𪾱
+ 0x2afb2: "m\t\U0002afb2", // 𪾲
+ 0x2afb3: "m\t\U0002afb3", // 𪾳
+ 0x2afb4: "m\t\U0002afb4", // 𪾴
+ 0x2afb5: "m\n\U0002afb5", // 𪾵
+ 0x2afb6: "m\n\U0002afb6", // 𪾶
+ 0x2afb7: "m\n\U0002afb7", // 𪾷
+ 0x2afb8: "m\n\U0002afb8", // 𪾸
+ 0x2afb9: "m\v\U0002afb9", // 𪾹
+ 0x2afba: "m\v\U0002afba", // 𪾺
+ 0x2afbb: "m\v\U0002afbb", // 𪾻
+ 0x2afbc: "m\f\U0002afbc", // 𪾼
+ 0x2afbd: "m\f\U0002afbd", // 𪾽
+ 0x2afbe: "m\f\U0002afbe", // 𪾾
+ 0x2afbf: "m\f\U0002afbf", // 𪾿
+ 0x2afc0: "m\f\U0002afc0", // 𪿀
+ 0x2afc1: "m\x0e\U0002afc1", // 𪿁
+ 0x2afc2: "m\x0f\U0002afc2", // 𪿂
+ 0x2afc3: "m\x10\U0002afc3", // 𪿃
+ 0x2afc4: "m\x10\U0002afc4", // 𪿄
+ 0x2afc5: "m\x18\U0002afc5", // 𪿅
+ 0x2afc6: "n\x04\U0002afc6", // 𪿆
+ 0x2afc7: "n\a\U0002afc7", // 𪿇
+ 0x2afc8: "o\x04\U0002afc8", // 𪿈
+ 0x2afc9: "o\x04\U0002afc9", // 𪿉
+ 0x2afca: "o\x06\U0002afca", // 𪿊
+ 0x2afcb: "o\b\U0002afcb", // 𪿋
+ 0x2afcc: "o\t\U0002afcc", // 𪿌
+ 0x2afcd: "o\n\U0002afcd", // 𪿍
+ 0x2afce: "o\n\U0002afce", // 𪿎
+ 0x2afcf: "o\x0f\U0002afcf", // 𪿏
+ 0x2afd0: "o\x10\U0002afd0", // 𪿐
+ 0x2afd1: "p\x04\U0002afd1", // 𪿑
+ 0x2afd2: "p\x04\U0002afd2", // 𪿒
+ 0x2afd3: "p\x04\U0002afd3", // 𪿓
+ 0x2afd4: "p\x05\U0002afd4", // 𪿔
+ 0x2afd5: "p\x05\U0002afd5", // 𪿕
+ 0x2afd6: "p\x05\U0002afd6", // 𪿖
+ 0x2afd7: "p\x05\U0002afd7", // 𪿗
+ 0x2afd8: "p\x05\U0002afd8", // 𪿘
+ 0x2afd9: "p\x06\U0002afd9", // 𪿙
+ 0x2afda: "p\x06\U0002afda", // 𪿚
+ 0x2afdb: "p\x06\U0002afdb", // 𪿛
+ 0x2afdc: "p\x06\U0002afdc", // 𪿜
+ 0x2afdd: "p\x06\U0002afdd", // 𪿝
+ 0x2afde: "p\a\U0002afde", // 𪿞
+ 0x2afdf: "p\a\U0002afdf", // 𪿟
+ 0x2afe0: "p\a\U0002afe0", // 𪿠
+ 0x2afe1: "p\a\U0002afe1", // 𪿡
+ 0x2afe2: "p\a\U0002afe2", // 𪿢
+ 0x2afe3: "p\a\U0002afe3", // 𪿣
+ 0x2afe4: "p\b\U0002afe4", // 𪿤
+ 0x2afe5: "p\b\U0002afe5", // 𪿥
+ 0x2afe6: "p\b\U0002afe6", // 𪿦
+ 0x2afe7: "p\b\U0002afe7", // 𪿧
+ 0x2afe8: "p\b\U0002afe8", // 𪿨
+ 0x2afe9: "p\b\U0002afe9", // 𪿩
+ 0x2afea: "p\t\U0002afea", // 𪿪
+ 0x2afeb: "p\t\U0002afeb", // 𪿫
+ 0x2afec: "p\n\U0002afec", // 𪿬
+ 0x2afed: "p\n\U0002afed", // 𪿭
+ 0x2afee: "p\n\U0002afee", // 𪿮
+ 0x2afef: "p\v\U0002afef", // 𪿯
+ 0x2aff0: "p\v\U0002aff0", // 𪿰
+ 0x2aff1: "p\v\U0002aff1", // 𪿱
+ 0x2aff2: "p\v\U0002aff2", // 𪿲
+ 0x2aff3: "p\v\U0002aff3", // 𪿳
+ 0x2aff4: "p\v\U0002aff4", // 𪿴
+ 0x2aff5: "p\f\U0002aff5", // 𪿵
+ 0x2aff6: "p\f\U0002aff6", // 𪿶
+ 0x2aff7: "p\f\U0002aff7", // 𪿷
+ 0x2aff8: "p\r\U0002aff8", // 𪿸
+ 0x2aff9: "p\r\U0002aff9", // 𪿹
+ 0x2affa: "p\r\U0002affa", // 𪿺
+ 0x2affb: "p\x0e\U0002affb", // 𪿻
+ 0x2affc: "p\x0e\U0002affc", // 𪿼
+ 0x2affd: "p\x0e\U0002affd", // 𪿽
+ 0x2affe: "p\x10\U0002affe", // 𪿾
+ 0x2afff: "p\x12\U0002afff", // 𪿿
+ 0x2b000: "q\x03\U0002b000", // 𫀀
+ 0x2b001: "q\x03\U0002b001", // 𫀁
+ 0x2b002: "q\x04\U0002b002", // 𫀂
+ 0x2b003: "q\x04\U0002b003", // 𫀃
+ 0x2b004: "q\x05\U0002b004", // 𫀄
+ 0x2b005: "q\x05\U0002b005", // 𫀅
+ 0x2b006: "q\x05\U0002b006", // 𫀆
+ 0x2b007: "q\x06\U0002b007", // 𫀇
+ 0x2b008: "q\x06\U0002b008", // 𫀈
+ 0x2b009: "q\x06\U0002b009", // 𫀉
+ 0x2b00a: "q\x06\U0002b00a", // 𫀊
+ 0x2b00b: "q\a\U0002b00b", // 𫀋
+ 0x2b00c: "q\a\U0002b00c", // 𫀌
+ 0x2b00d: "q\a\U0002b00d", // 𫀍
+ 0x2b00e: "q\a\U0002b00e", // 𫀎
+ 0x2b00f: "q\a\U0002b00f", // 𫀏
+ 0x2b010: "q\b\U0002b010", // 𫀐
+ 0x2b011: "q\b\U0002b011", // 𫀑
+ 0x2b012: "q\b\U0002b012", // 𫀒
+ 0x2b013: "q\b\U0002b013", // 𫀓
+ 0x2b014: "q\b\U0002b014", // 𫀔
+ 0x2b015: "q\b\U0002b015", // 𫀕
+ 0x2b016: "q\b\U0002b016", // 𫀖
+ 0x2b017: "q\b\U0002b017", // 𫀗
+ 0x2b018: "q\b\U0002b018", // 𫀘
+ 0x2b019: "q\b\U0002b019", // 𫀙
+ 0x2b01a: "q\t\U0002b01a", // 𫀚
+ 0x2b01b: "q\t\U0002b01b", // 𫀛
+ 0x2b01c: "q\n\U0002b01c", // 𫀜
+ 0x2b01d: "q\n\U0002b01d", // 𫀝
+ 0x2b01e: "q\n\U0002b01e", // 𫀞
+ 0x2b01f: "q\n\U0002b01f", // 𫀟
+ 0x2b020: "q\v\U0002b020", // 𫀠
+ 0x2b021: "q\v\U0002b021", // 𫀡
+ 0x2b022: "q\r\U0002b022", // 𫀢
+ 0x2b023: "q\x0e\U0002b023", // 𫀣
+ 0x2b024: "q\x14\U0002b024", // 𫀤
+ 0x2b025: "r\x0e\U0002b025", // 𫀥
+ 0x2b026: "s\x01\U0002b026", // 𫀦
+ 0x2b027: "s\x03\U0002b027", // 𫀧
+ 0x2b028: "s\x04\U0002b028", // 𫀨
+ 0x2b029: "s\x04\U0002b029", // 𫀩
+ 0x2b02a: "s\x05\U0002b02a", // 𫀪
+ 0x2b02b: "s\x05\U0002b02b", // 𫀫
+ 0x2b02c: "s\x05\U0002b02c", // 𫀬
+ 0x2b02d: "s\x05\U0002b02d", // 𫀭
+ 0x2b02e: "s\x06\U0002b02e", // 𫀮
+ 0x2b02f: "s\x06\U0002b02f", // 𫀯
+ 0x2b030: "s\x06\U0002b030", // 𫀰
+ 0x2b031: "s\x06\U0002b031", // 𫀱
+ 0x2b032: "s\a\U0002b032", // 𫀲
+ 0x2b033: "s\a\U0002b033", // 𫀳
+ 0x2b034: "s\a\U0002b034", // 𫀴
+ 0x2b035: "s\a\U0002b035", // 𫀵
+ 0x2b036: "s\a\U0002b036", // 𫀶
+ 0x2b037: "s\a\U0002b037", // 𫀷
+ 0x2b038: "s\a\U0002b038", // 𫀸
+ 0x2b039: "s\b\U0002b039", // 𫀹
+ 0x2b03a: "s\b\U0002b03a", // 𫀺
+ 0x2b03b: "s\b\U0002b03b", // 𫀻
+ 0x2b03c: "s\t\U0002b03c", // 𫀼
+ 0x2b03d: "s\t\U0002b03d", // 𫀽
+ 0x2b03e: "s\t\U0002b03e", // 𫀾
+ 0x2b03f: "s\t\U0002b03f", // 𫀿
+ 0x2b040: "s\t\U0002b040", // 𫁀
+ 0x2b041: "s\n\U0002b041", // 𫁁
+ 0x2b042: "s\n\U0002b042", // 𫁂
+ 0x2b043: "s\n\U0002b043", // 𫁃
+ 0x2b044: "s\n\U0002b044", // 𫁄
+ 0x2b045: "s\v\U0002b045", // 𫁅
+ 0x2b046: "s\f\U0002b046", // 𫁆
+ 0x2b047: "s\r\U0002b047", // 𫁇
+ 0x2b048: "s\r\U0002b048", // 𫁈
+ 0x2b049: "s\x0f\U0002b049", // 𫁉
+ 0x2b04a: "t\x04\U0002b04a", // 𫁊
+ 0x2b04b: "t\x05\U0002b04b", // 𫁋
+ 0x2b04c: "t\x06\U0002b04c", // 𫁌
+ 0x2b04d: "t\x06\U0002b04d", // 𫁍
+ 0x2b04e: "t\a\U0002b04e", // 𫁎
+ 0x2b04f: "t\a\U0002b04f", // 𫁏
+ 0x2b050: "t\a\U0002b050", // 𫁐
+ 0x2b051: "t\b\U0002b051", // 𫁑
+ 0x2b052: "t\b\U0002b052", // 𫁒
+ 0x2b053: "t\b\U0002b053", // 𫁓
+ 0x2b054: "t\t\U0002b054", // 𫁔
+ 0x2b055: "t\t\U0002b055", // 𫁕
+ 0x2b056: "t\n\U0002b056", // 𫁖
+ 0x2b057: "t\v\U0002b057", // 𫁗
+ 0x2b058: "t\v\U0002b058", // 𫁘
+ 0x2b059: "t\v\U0002b059", // 𫁙
+ 0x2b05a: "t\v\U0002b05a", // 𫁚
+ 0x2b05b: "t\f\U0002b05b", // 𫁛
+ 0x2b05c: "t\r\U0002b05c", // 𫁜
+ 0x2b05d: "t\x12\U0002b05d", // 𫁝
+ 0x2b05e: "u\x03\U0002b05e", // 𫁞
+ 0x2b05f: "u\x04\U0002b05f", // 𫁟
+ 0x2b060: "u\x05\U0002b060", // 𫁠
+ 0x2b061: "u\x05\U0002b061", // 𫁡
+ 0x2b062: "u\x06\U0002b062", // 𫁢
+ 0x2b063: "u\a\U0002b063", // 𫁣
+ 0x2b064: "u\a\U0002b064", // 𫁤
+ 0x2b065: "u\b\U0002b065", // 𫁥
+ 0x2b066: "u\b\U0002b066", // 𫁦
+ 0x2b067: "u\t\U0002b067", // 𫁧
+ 0x2b068: "u\t\U0002b068", // 𫁨
+ 0x2b069: "u\n\U0002b069", // 𫁩
+ 0x2b06a: "u\n\U0002b06a", // 𫁪
+ 0x2b06b: "u\n\U0002b06b", // 𫁫
+ 0x2b06c: "u\v\U0002b06c", // 𫁬
+ 0x2b06d: "u\f\U0002b06d", // 𫁭
+ 0x2b06e: "u\x0e\U0002b06e", // 𫁮
+ 0x2b06f: "u\x11\U0002b06f", // 𫁯
+ 0x2b070: "v\x02\U0002b070", // 𫁰
+ 0x2b071: "v\x03\U0002b071", // 𫁱
+ 0x2b072: "v\x04\U0002b072", // 𫁲
+ 0x2b073: "v\x04\U0002b073", // 𫁳
+ 0x2b074: "v\x04\U0002b074", // 𫁴
+ 0x2b075: "v\x04\U0002b075", // 𫁵
+ 0x2b076: "v\x04\U0002b076", // 𫁶
+ 0x2b077: "v\x04\U0002b077", // 𫁷
+ 0x2b078: "v\x05\U0002b078", // 𫁸
+ 0x2b079: "v\x05\U0002b079", // 𫁹
+ 0x2b07a: "v\x05\U0002b07a", // 𫁺
+ 0x2b07b: "v\x05\U0002b07b", // 𫁻
+ 0x2b07c: "v\x06\U0002b07c", // 𫁼
+ 0x2b07d: "v\x06\U0002b07d", // 𫁽
+ 0x2b07e: "v\a\U0002b07e", // 𫁾
+ 0x2b07f: "v\a\U0002b07f", // 𫁿
+ 0x2b080: "v\a\U0002b080", // 𫂀
+ 0x2b081: "v\a\U0002b081", // 𫂁
+ 0x2b082: "v\a\U0002b082", // 𫂂
+ 0x2b083: "v\a\U0002b083", // 𫂃
+ 0x2b084: "v\b\U0002b084", // 𫂄
+ 0x2b085: "v\b\U0002b085", // 𫂅
+ 0x2b086: "v\b\U0002b086", // 𫂆
+ 0x2b087: "v\b\U0002b087", // 𫂇
+ 0x2b088: "v\b\U0002b088", // 𫂈
+ 0x2b089: "v\b\U0002b089", // 𫂉
+ 0x2b08a: "v\t\U0002b08a", // 𫂊
+ 0x2b08b: "v\t\U0002b08b", // 𫂋
+ 0x2b08c: "v\t\U0002b08c", // 𫂌
+ 0x2b08d: "v\t\U0002b08d", // 𫂍
+ 0x2b08e: "v\t\U0002b08e", // 𫂎
+ 0x2b08f: "v\t\U0002b08f", // 𫂏
+ 0x2b090: "v\n\U0002b090", // 𫂐
+ 0x2b091: "v\n\U0002b091", // 𫂑
+ 0x2b092: "v\n\U0002b092", // 𫂒
+ 0x2b093: "v\n\U0002b093", // 𫂓
+ 0x2b094: "v\n\U0002b094", // 𫂔
+ 0x2b095: "v\n\U0002b095", // 𫂕
+ 0x2b096: "v\n\U0002b096", // 𫂖
+ 0x2b097: "v\n\U0002b097", // 𫂗
+ 0x2b098: "v\v\U0002b098", // 𫂘
+ 0x2b099: "v\v\U0002b099", // 𫂙
+ 0x2b09a: "v\v\U0002b09a", // 𫂚
+ 0x2b09b: "v\v\U0002b09b", // 𫂛
+ 0x2b09c: "v\v\U0002b09c", // 𫂜
+ 0x2b09d: "v\v\U0002b09d", // 𫂝
+ 0x2b09e: "v\v\U0002b09e", // 𫂞
+ 0x2b09f: "v\v\U0002b09f", // 𫂟
+ 0x2b0a0: "v\f\U0002b0a0", // 𫂠
+ 0x2b0a1: "v\f\U0002b0a1", // 𫂡
+ 0x2b0a2: "v\f\U0002b0a2", // 𫂢
+ 0x2b0a3: "v\f\U0002b0a3", // 𫂣
+ 0x2b0a4: "v\f\U0002b0a4", // 𫂤
+ 0x2b0a5: "v\r\U0002b0a5", // 𫂥
+ 0x2b0a6: "v\r\U0002b0a6", // 𫂦
+ 0x2b0a7: "v\x0e\U0002b0a7", // 𫂧
+ 0x2b0a8: "v\x0f\U0002b0a8", // 𫂨
+ 0x2b0a9: "v\x0f\U0002b0a9", // 𫂩
+ 0x2b0aa: "v\x0f\U0002b0aa", // 𫂪
+ 0x2b0ab: "v\x0f\U0002b0ab", // 𫂫
+ 0x2b0ac: "v\x10\U0002b0ac", // 𫂬
+ 0x2b0ad: "v\x11\U0002b0ad", // 𫂭
+ 0x2b0ae: "v\x12\U0002b0ae", // 𫂮
+ 0x2b0af: "v\x13\U0002b0af", // 𫂯
+ 0x2b0b0: "v\x16\U0002b0b0", // 𫂰
+ 0x2b0b1: "w\x02\U0002b0b1", // 𫂱
+ 0x2b0b2: "w\x02\U0002b0b2", // 𫂲
+ 0x2b0b3: "w\x03\U0002b0b3", // 𫂳
+ 0x2b0b4: "w\x03\U0002b0b4", // 𫂴
+ 0x2b0b5: "w\x04\U0002b0b5", // 𫂵
+ 0x2b0b6: "w\x04\U0002b0b6", // 𫂶
+ 0x2b0b7: "w\x04\U0002b0b7", // 𫂷
+ 0x2b0b8: "w\x05\U0002b0b8", // 𫂸
+ 0x2b0b9: "w\x05\U0002b0b9", // 𫂹
+ 0x2b0ba: "w\x05\U0002b0ba", // 𫂺
+ 0x2b0bb: "w\x05\U0002b0bb", // 𫂻
+ 0x2b0bc: "w\x05\U0002b0bc", // 𫂼
+ 0x2b0bd: "w\x06\U0002b0bd", // 𫂽
+ 0x2b0be: "w\x06\U0002b0be", // 𫂾
+ 0x2b0bf: "w\x06\U0002b0bf", // 𫂿
+ 0x2b0c0: "w\x06\U0002b0c0", // 𫃀
+ 0x2b0c1: "w\a\U0002b0c1", // 𫃁
+ 0x2b0c2: "w\b\U0002b0c2", // 𫃂
+ 0x2b0c3: "w\b\U0002b0c3", // 𫃃
+ 0x2b0c4: "w\b\U0002b0c4", // 𫃄
+ 0x2b0c5: "w\b\U0002b0c5", // 𫃅
+ 0x2b0c6: "w\t\U0002b0c6", // 𫃆
+ 0x2b0c7: "w\t\U0002b0c7", // 𫃇
+ 0x2b0c8: "w\t\U0002b0c8", // 𫃈
+ 0x2b0c9: "w\n\U0002b0c9", // 𫃉
+ 0x2b0ca: "w\n\U0002b0ca", // 𫃊
+ 0x2b0cb: "w\n\U0002b0cb", // 𫃋
+ 0x2b0cc: "w\n\U0002b0cc", // 𫃌
+ 0x2b0cd: "w\v\U0002b0cd", // 𫃍
+ 0x2b0ce: "w\v\U0002b0ce", // 𫃎
+ 0x2b0cf: "w\f\U0002b0cf", // 𫃏
+ 0x2b0d0: "w\f\U0002b0d0", // 𫃐
+ 0x2b0d1: "w\f\U0002b0d1", // 𫃑
+ 0x2b0d2: "w\r\U0002b0d2", // 𫃒
+ 0x2b0d3: "w\r\U0002b0d3", // 𫃓
+ 0x2b0d4: "w\r\U0002b0d4", // 𫃔
+ 0x2b0d5: "w\r\U0002b0d5", // 𫃕
+ 0x2b0d6: "w\x0e\U0002b0d6", // 𫃖
+ 0x2b0d7: "w\x10\U0002b0d7", // 𫃗
+ 0x2b0d8: "w\x10\U0002b0d8", // 𫃘
+ 0x2b0d9: "w\x10\U0002b0d9", // 𫃙
+ 0x2b0da: "x\x02\U0002b0da", // 𫃚
+ 0x2b0db: "x\x02\U0002b0db", // 𫃛
+ 0x2b0dc: "x\x03\U0002b0dc", // 𫃜
+ 0x2b0dd: "x\x03\U0002b0dd", // 𫃝
+ 0x2b0de: "x\x04\U0002b0de", // 𫃞
+ 0x2b0df: "x\x05\U0002b0df", // 𫃟
+ 0x2b0e0: "x\x05\U0002b0e0", // 𫃠
+ 0x2b0e1: "x\x05\U0002b0e1", // 𫃡
+ 0x2b0e2: "x\x06\U0002b0e2", // 𫃢
+ 0x2b0e3: "x\x06\U0002b0e3", // 𫃣
+ 0x2b0e4: "x\x06\U0002b0e4", // 𫃤
+ 0x2b0e5: "x\a\U0002b0e5", // 𫃥
+ 0x2b0e6: "x\a\U0002b0e6", // 𫃦
+ 0x2b0e7: "x\a\U0002b0e7", // 𫃧
+ 0x2b0e8: "x\a\U0002b0e8", // 𫃨
+ 0x2b0e9: "x\a\U0002b0e9", // 𫃩
+ 0x2b0ea: "x\b\U0002b0ea", // 𫃪
+ 0x2b0eb: "x\b\U0002b0eb", // 𫃫
+ 0x2b0ec: "x\b\U0002b0ec", // 𫃬
+ 0x2b0ed: "x\b\U0002b0ed", // 𫃭
+ 0x2b0ee: "x\b\U0002b0ee", // 𫃮
+ 0x2b0ef: "x\b\U0002b0ef", // 𫃯
+ 0x2b0f0: "x\b\U0002b0f0", // 𫃰
+ 0x2b0f1: "x\b\U0002b0f1", // 𫃱
+ 0x2b0f2: "x\b\U0002b0f2", // 𫃲
+ 0x2b0f3: "x\t\U0002b0f3", // 𫃳
+ 0x2b0f4: "x\t\U0002b0f4", // 𫃴
+ 0x2b0f5: "x\t\U0002b0f5", // 𫃵
+ 0x2b0f6: "x\t\U0002b0f6", // 𫃶
+ 0x2b0f7: "x\t\U0002b0f7", // 𫃷
+ 0x2b0f8: "x\n\U0002b0f8", // 𫃸
+ 0x2b0f9: "x\n\U0002b0f9", // 𫃹
+ 0x2b0fa: "x\n\U0002b0fa", // 𫃺
+ 0x2b0fb: "x\n\U0002b0fb", // 𫃻
+ 0x2b0fc: "x\n\U0002b0fc", // 𫃼
+ 0x2b0fd: "x\v\U0002b0fd", // 𫃽
+ 0x2b0fe: "x\v\U0002b0fe", // 𫃾
+ 0x2b0ff: "x\v\U0002b0ff", // 𫃿
+ 0x2b100: "x\v\U0002b100", // 𫄀
+ 0x2b101: "x\f\U0002b101", // 𫄁
+ 0x2b102: "x\f\U0002b102", // 𫄂
+ 0x2b103: "x\f\U0002b103", // 𫄃
+ 0x2b104: "x\f\U0002b104", // 𫄄
+ 0x2b105: "x\r\U0002b105", // 𫄅
+ 0x2b106: "x\r\U0002b106", // 𫄆
+ 0x2b107: "x\r\U0002b107", // 𫄇
+ 0x2b108: "x\r\U0002b108", // 𫄈
+ 0x2b109: "x\r\U0002b109", // 𫄉
+ 0x2b10a: "x\r\U0002b10a", // 𫄊
+ 0x2b10b: "x\r\U0002b10b", // 𫄋
+ 0x2b10c: "x\x0e\U0002b10c", // 𫄌
+ 0x2b10d: "x\x0e\U0002b10d", // 𫄍
+ 0x2b10e: "x\x0e\U0002b10e", // 𫄎
+ 0x2b10f: "x\x0f\U0002b10f", // 𫄏
+ 0x2b110: "x\x0f\U0002b110", // 𫄐
+ 0x2b111: "x\x0f\U0002b111", // 𫄑
+ 0x2b112: "x\x10\U0002b112", // 𫄒
+ 0x2b113: "x\x10\U0002b113", // 𫄓
+ 0x2b114: "x\x10\U0002b114", // 𫄔
+ 0x2b115: "x\x11\U0002b115", // 𫄕
+ 0x2b116: "x\x13\U0002b116", // 𫄖
+ 0x2b117: "x\x14\U0002b117", // 𫄗
+ 0x2b118: "x\x15\U0002b118", // 𫄘
+ 0x2b119: "x\x01\U0002b119", // 𫄙
+ 0x2b11a: "x\x04\U0002b11a", // 𫄚
+ 0x2b11b: "x\x04\U0002b11b", // 𫄛
+ 0x2b11c: "x\x04\U0002b11c", // 𫄜
+ 0x2b11d: "x\x04\U0002b11d", // 𫄝
+ 0x2b11e: "x\x05\U0002b11e", // 𫄞
+ 0x2b11f: "x\x05\U0002b11f", // 𫄟
+ 0x2b120: "x\x06\U0002b120", // 𫄠
+ 0x2b121: "x\x06\U0002b121", // 𫄡
+ 0x2b122: "x\x06\U0002b122", // 𫄢
+ 0x2b123: "x\x06\U0002b123", // 𫄣
+ 0x2b124: "x\a\U0002b124", // 𫄤
+ 0x2b125: "x\a\U0002b125", // 𫄥
+ 0x2b126: "x\a\U0002b126", // 𫄦
+ 0x2b127: "x\a\U0002b127", // 𫄧
+ 0x2b128: "x\a\U0002b128", // 𫄨
+ 0x2b129: "x\a\U0002b129", // 𫄩
+ 0x2b12a: "x\b\U0002b12a", // 𫄪
+ 0x2b12b: "x\b\U0002b12b", // 𫄫
+ 0x2b12c: "x\t\U0002b12c", // 𫄬
+ 0x2b12d: "x\t\U0002b12d", // 𫄭
+ 0x2b12e: "x\t\U0002b12e", // 𫄮
+ 0x2b12f: "x\n\U0002b12f", // 𫄯
+ 0x2b130: "x\n\U0002b130", // 𫄰
+ 0x2b131: "x\v\U0002b131", // 𫄱
+ 0x2b132: "x\v\U0002b132", // 𫄲
+ 0x2b133: "x\v\U0002b133", // 𫄳
+ 0x2b134: "x\v\U0002b134", // 𫄴
+ 0x2b135: "x\f\U0002b135", // 𫄵
+ 0x2b136: "x\f\U0002b136", // 𫄶
+ 0x2b137: "x\r\U0002b137", // 𫄷
+ 0x2b138: "x\x0e\U0002b138", // 𫄸
+ 0x2b139: "x\x12\U0002b139", // 𫄹
+ 0x2b13a: "y\a\U0002b13a", // 𫄺
+ 0x2b13b: "y\b\U0002b13b", // 𫄻
+ 0x2b13c: "y\t\U0002b13c", // 𫄼
+ 0x2b13d: "y\t\U0002b13d", // 𫄽
+ 0x2b13e: "y\n\U0002b13e", // 𫄾
+ 0x2b13f: "y\r\U0002b13f", // 𫄿
+ 0x2b140: "z\x03\U0002b140", // 𫅀
+ 0x2b141: "z\x04\U0002b141", // 𫅁
+ 0x2b142: "z\x05\U0002b142", // 𫅂
+ 0x2b143: "z\x06\U0002b143", // 𫅃
+ 0x2b144: "z\x06\U0002b144", // 𫅄
+ 0x2b145: "z\x06\U0002b145", // 𫅅
+ 0x2b146: "z\b\U0002b146", // 𫅆
+ 0x2b147: "z\b\U0002b147", // 𫅇
+ 0x2b148: "z\t\U0002b148", // 𫅈
+ 0x2b149: "z\n\U0002b149", // 𫅉
+ 0x2b14a: "z\v\U0002b14a", // 𫅊
+ 0x2b14b: "z\r\U0002b14b", // 𫅋
+ 0x2b14c: "z\x0e\U0002b14c", // 𫅌
+ 0x2b14d: "z\x10\U0002b14d", // 𫅍
+ 0x2b14e: "{\x02\U0002b14e", // 𫅎
+ 0x2b14f: "{\x05\U0002b14f", // 𫅏
+ 0x2b150: "{\x05\U0002b150", // 𫅐
+ 0x2b151: "{\x05\U0002b151", // 𫅑
+ 0x2b152: "{\x05\U0002b152", // 𫅒
+ 0x2b153: "{\x06\U0002b153", // 𫅓
+ 0x2b154: "{\x06\U0002b154", // 𫅔
+ 0x2b155: "{\a\U0002b155", // 𫅕
+ 0x2b156: "{\t\U0002b156", // 𫅖
+ 0x2b157: "{\t\U0002b157", // 𫅗
+ 0x2b158: "{\t\U0002b158", // 𫅘
+ 0x2b159: "{\n\U0002b159", // 𫅙
+ 0x2b15a: "{\v\U0002b15a", // 𫅚
+ 0x2b15b: "{\v\U0002b15b", // 𫅛
+ 0x2b15c: "{\v\U0002b15c", // 𫅜
+ 0x2b15d: "{\f\U0002b15d", // 𫅝
+ 0x2b15e: "{\f\U0002b15e", // 𫅞
+ 0x2b15f: "{\x0e\U0002b15f", // 𫅟
+ 0x2b160: "{\x10\U0002b160", // 𫅠
+ 0x2b161: "{\x10\U0002b161", // 𫅡
+ 0x2b162: "|\x03\U0002b162", // 𫅢
+ 0x2b163: "|\x04\U0002b163", // 𫅣
+ 0x2b164: "|\x05\U0002b164", // 𫅤
+ 0x2b165: "|\x06\U0002b165", // 𫅥
+ 0x2b166: "|\x06\U0002b166", // 𫅦
+ 0x2b167: "|\x06\U0002b167", // 𫅧
+ 0x2b168: "|\a\U0002b168", // 𫅨
+ 0x2b169: "|\a\U0002b169", // 𫅩
+ 0x2b16a: "|\b\U0002b16a", // 𫅪
+ 0x2b16b: "|\t\U0002b16b", // 𫅫
+ 0x2b16c: "|\t\U0002b16c", // 𫅬
+ 0x2b16d: "|\n\U0002b16d", // 𫅭
+ 0x2b16e: "|\n\U0002b16e", // 𫅮
+ 0x2b16f: "|\v\U0002b16f", // 𫅯
+ 0x2b170: "|\f\U0002b170", // 𫅰
+ 0x2b171: "|\f\U0002b171", // 𫅱
+ 0x2b172: "|\x10\U0002b172", // 𫅲
+ 0x2b173: "}\x05\U0002b173", // 𫅳
+ 0x2b174: "}\x05\U0002b174", // 𫅴
+ 0x2b175: "}\b\U0002b175", // 𫅵
+ 0x2b176: "}\t\U0002b176", // 𫅶
+ 0x2b177: "}\n\U0002b177", // 𫅷
+ 0x2b178: "}\r\U0002b178", // 𫅸
+ 0x2b179: "\u007f\x05\U0002b179", // 𫅹
+ 0x2b17a: "\u007f\x06\U0002b17a", // 𫅺
+ 0x2b17b: "\u007f\x06\U0002b17b", // 𫅻
+ 0x2b17c: "\u007f\a\U0002b17c", // 𫅼
+ 0x2b17d: "\u007f\t\U0002b17d", // 𫅽
+ 0x2b17e: "\u007f\n\U0002b17e", // 𫅾
+ 0x2b17f: "\u007f\f\U0002b17f", // 𫅿
+ 0x2b180: "\x80\x02\U0002b180", // 𫆀
+ 0x2b181: "\x80\x04\U0002b181", // 𫆁
+ 0x2b182: "\x80\x06\U0002b182", // 𫆂
+ 0x2b183: "\x80\x06\U0002b183", // 𫆃
+ 0x2b184: "\x80\a\U0002b184", // 𫆄
+ 0x2b185: "\x80\a\U0002b185", // 𫆅
+ 0x2b186: "\x80\a\U0002b186", // 𫆆
+ 0x2b187: "\x80\b\U0002b187", // 𫆇
+ 0x2b188: "\x80\b\U0002b188", // 𫆈
+ 0x2b189: "\x80\t\U0002b189", // 𫆉
+ 0x2b18a: "\x80\n\U0002b18a", // 𫆊
+ 0x2b18b: "\x80\n\U0002b18b", // 𫆋
+ 0x2b18c: "\x80\n\U0002b18c", // 𫆌
+ 0x2b18d: "\x80\n\U0002b18d", // 𫆍
+ 0x2b18e: "\x80\v\U0002b18e", // 𫆎
+ 0x2b18f: "\x80\v\U0002b18f", // 𫆏
+ 0x2b190: "\x80\f\U0002b190", // 𫆐
+ 0x2b191: "\x80\f\U0002b191", // 𫆑
+ 0x2b192: "\x80\r\U0002b192", // 𫆒
+ 0x2b193: "\x80\x16\U0002b193", // 𫆓
+ 0x2b194: "\x81\a\U0002b194", // 𫆔
+ 0x2b195: "\x81\b\U0002b195", // 𫆕
+ 0x2b196: "\x82\x04\U0002b196", // 𫆖
+ 0x2b197: "\x82\x04\U0002b197", // 𫆗
+ 0x2b198: "\x82\x04\U0002b198", // 𫆘
+ 0x2b199: "\x82\x05\U0002b199", // 𫆙
+ 0x2b19a: "\x82\x05\U0002b19a", // 𫆚
+ 0x2b19b: "\x82\x05\U0002b19b", // 𫆛
+ 0x2b19c: "\x82\x05\U0002b19c", // 𫆜
+ 0x2b19d: "\x82\x06\U0002b19d", // 𫆝
+ 0x2b19e: "\x82\x06\U0002b19e", // 𫆞
+ 0x2b19f: "\x82\a\U0002b19f", // 𫆟
+ 0x2b1a0: "\x82\a\U0002b1a0", // 𫆠
+ 0x2b1a1: "\x82\a\U0002b1a1", // 𫆡
+ 0x2b1a2: "\x82\b\U0002b1a2", // 𫆢
+ 0x2b1a3: "\x82\b\U0002b1a3", // 𫆣
+ 0x2b1a4: "\x82\b\U0002b1a4", // 𫆤
+ 0x2b1a5: "\x82\b\U0002b1a5", // 𫆥
+ 0x2b1a6: "\x82\t\U0002b1a6", // 𫆦
+ 0x2b1a7: "\x82\t\U0002b1a7", // 𫆧
+ 0x2b1a8: "\x82\t\U0002b1a8", // 𫆨
+ 0x2b1a9: "\x82\n\U0002b1a9", // 𫆩
+ 0x2b1aa: "\x82\n\U0002b1aa", // 𫆪
+ 0x2b1ab: "\x82\n\U0002b1ab", // 𫆫
+ 0x2b1ac: "\x82\n\U0002b1ac", // 𫆬
+ 0x2b1ad: "\x82\n\U0002b1ad", // 𫆭
+ 0x2b1ae: "\x82\n\U0002b1ae", // 𫆮
+ 0x2b1af: "\x82\v\U0002b1af", // 𫆯
+ 0x2b1b0: "\x82\v\U0002b1b0", // 𫆰
+ 0x2b1b1: "\x82\v\U0002b1b1", // 𫆱
+ 0x2b1b2: "\x82\v\U0002b1b2", // 𫆲
+ 0x2b1b3: "\x82\v\U0002b1b3", // 𫆳
+ 0x2b1b4: "\x82\v\U0002b1b4", // 𫆴
+ 0x2b1b5: "\x82\f\U0002b1b5", // 𫆵
+ 0x2b1b6: "\x82\f\U0002b1b6", // 𫆶
+ 0x2b1b7: "\x82\f\U0002b1b7", // 𫆷
+ 0x2b1b8: "\x82\f\U0002b1b8", // 𫆸
+ 0x2b1b9: "\x82\r\U0002b1b9", // 𫆹
+ 0x2b1ba: "\x82\r\U0002b1ba", // 𫆺
+ 0x2b1bb: "\x82\r\U0002b1bb", // 𫆻
+ 0x2b1bc: "\x82\x0e\U0002b1bc", // 𫆼
+ 0x2b1bd: "\x82\x0e\U0002b1bd", // 𫆽
+ 0x2b1be: "\x82\x0f\U0002b1be", // 𫆾
+ 0x2b1bf: "\x82\x0f\U0002b1bf", // 𫆿
+ 0x2b1c0: "\x82\x10\U0002b1c0", // 𫇀
+ 0x2b1c1: "\x82\x11\U0002b1c1", // 𫇁
+ 0x2b1c2: "\x82\x12\U0002b1c2", // 𫇂
+ 0x2b1c3: "\x82\x13\U0002b1c3", // 𫇃
+ 0x2b1c4: "\x82\x1a\U0002b1c4", // 𫇄
+ 0x2b1c5: "\x83\x04\U0002b1c5", // 𫇅
+ 0x2b1c6: "\x83\x06\U0002b1c6", // 𫇆
+ 0x2b1c7: "\x83\a\U0002b1c7", // 𫇇
+ 0x2b1c8: "\x83\b\U0002b1c8", // 𫇈
+ 0x2b1c9: "\x83\f\U0002b1c9", // 𫇉
+ 0x2b1ca: "\x84\x06\U0002b1ca", // 𫇊
+ 0x2b1cb: "\x84\t\U0002b1cb", // 𫇋
+ 0x2b1cc: "\x84\f\U0002b1cc", // 𫇌
+ 0x2b1cd: "\x84\x14\U0002b1cd", // 𫇍
+ 0x2b1ce: "\x85\a\U0002b1ce", // 𫇎
+ 0x2b1cf: "\x85\b\U0002b1cf", // 𫇏
+ 0x2b1d0: "\x85\b\U0002b1d0", // 𫇐
+ 0x2b1d1: "\x85\x0e\U0002b1d1", // 𫇑
+ 0x2b1d2: "\x86\f\U0002b1d2", // 𫇒
+ 0x2b1d3: "\x86\x14\U0002b1d3", // 𫇓
+ 0x2b1d4: "\x87\x02\U0002b1d4", // 𫇔
+ 0x2b1d5: "\x87\a\U0002b1d5", // 𫇕
+ 0x2b1d6: "\x87\a\U0002b1d6", // 𫇖
+ 0x2b1d7: "\x87\n\U0002b1d7", // 𫇗
+ 0x2b1d8: "\x87\r\U0002b1d8", // 𫇘
+ 0x2b1d9: "\x87\x10\U0002b1d9", // 𫇙
+ 0x2b1da: "\x89\x03\U0002b1da", // 𫇚
+ 0x2b1db: "\x89\b\U0002b1db", // 𫇛
+ 0x2b1dc: "\x89\t\U0002b1dc", // 𫇜
+ 0x2b1dd: "\x89\t\U0002b1dd", // 𫇝
+ 0x2b1de: "\x89\v\U0002b1de", // 𫇞
+ 0x2b1df: "\x89\f\U0002b1df", // 𫇟
+ 0x2b1e0: "\x89\x0e\U0002b1e0", // 𫇠
+ 0x2b1e1: "\x89\x10\U0002b1e1", // 𫇡
+ 0x2b1e2: "\x89\x10\U0002b1e2", // 𫇢
+ 0x2b1e3: "\x89\x10\U0002b1e3", // 𫇣
+ 0x2b1e4: "\x8b\n\U0002b1e4", // 𫇤
+ 0x2b1e5: "\x8c\x02\U0002b1e5", // 𫇥
+ 0x2b1e6: "\x8c\x02\U0002b1e6", // 𫇦
+ 0x2b1e7: "\x8c\x03\U0002b1e7", // 𫇧
+ 0x2b1e8: "\x8c\x03\U0002b1e8", // 𫇨
+ 0x2b1e9: "\x8c\x04\U0002b1e9", // 𫇩
+ 0x2b1ea: "\x8c\x04\U0002b1ea", // 𫇪
+ 0x2b1eb: "\x8c\x04\U0002b1eb", // 𫇫
+ 0x2b1ec: "\x8c\x04\U0002b1ec", // 𫇬
+ 0x2b1ed: "\x8c\x04\U0002b1ed", // 𫇭
+ 0x2b1ee: "\x8c\x05\U0002b1ee", // 𫇮
+ 0x2b1ef: "\x8c\x05\U0002b1ef", // 𫇯
+ 0x2b1f0: "\x8c\x05\U0002b1f0", // 𫇰
+ 0x2b1f1: "\x8c\x05\U0002b1f1", // 𫇱
+ 0x2b1f2: "\x8c\x05\U0002b1f2", // 𫇲
+ 0x2b1f3: "\x8c\x05\U0002b1f3", // 𫇳
+ 0x2b1f4: "\x8c\x05\U0002b1f4", // 𫇴
+ 0x2b1f5: "\x8c\x05\U0002b1f5", // 𫇵
+ 0x2b1f6: "\x8c\x06\U0002b1f6", // 𫇶
+ 0x2b1f7: "\x8c\x06\U0002b1f7", // 𫇷
+ 0x2b1f8: "\x8c\x06\U0002b1f8", // 𫇸
+ 0x2b1f9: "\x8c\x06\U0002b1f9", // 𫇹
+ 0x2b1fa: "\x8c\x06\U0002b1fa", // 𫇺
+ 0x2b1fb: "\x8c\x06\U0002b1fb", // 𫇻
+ 0x2b1fc: "\x8c\x06\U0002b1fc", // 𫇼
+ 0x2b1fd: "\x8c\x06\U0002b1fd", // 𫇽
+ 0x2b1fe: "\x8c\x06\U0002b1fe", // 𫇾
+ 0x2b1ff: "\x8c\a\U0002b1ff", // 𫇿
+ 0x2b200: "\x8c\a\U0002b200", // 𫈀
+ 0x2b201: "\x8c\a\U0002b201", // 𫈁
+ 0x2b202: "\x8c\a\U0002b202", // 𫈂
+ 0x2b203: "\x8c\a\U0002b203", // 𫈃
+ 0x2b204: "\x8c\a\U0002b204", // 𫈄
+ 0x2b205: "\x8c\a\U0002b205", // 𫈅
+ 0x2b206: "\x8c\a\U0002b206", // 𫈆
+ 0x2b207: "\x8c\a\U0002b207", // 𫈇
+ 0x2b208: "\x8c\a\U0002b208", // 𫈈
+ 0x2b209: "\x8c\a\U0002b209", // 𫈉
+ 0x2b20a: "\x8c\a\U0002b20a", // 𫈊
+ 0x2b20b: "\x8c\a\U0002b20b", // 𫈋
+ 0x2b20c: "\x8c\a\U0002b20c", // 𫈌
+ 0x2b20d: "\x8c\a\U0002b20d", // 𫈍
+ 0x2b20e: "\x8c\a\U0002b20e", // 𫈎
+ 0x2b20f: "\x8c\a\U0002b20f", // 𫈏
+ 0x2b210: "\x8c\b\U0002b210", // 𫈐
+ 0x2b211: "\x8c\b\U0002b211", // 𫈑
+ 0x2b212: "\x8c\b\U0002b212", // 𫈒
+ 0x2b213: "\x8c\b\U0002b213", // 𫈓
+ 0x2b214: "\x8c\b\U0002b214", // 𫈔
+ 0x2b215: "\x8c\b\U0002b215", // 𫈕
+ 0x2b216: "\x8c\b\U0002b216", // 𫈖
+ 0x2b217: "\x8c\b\U0002b217", // 𫈗
+ 0x2b218: "\x8c\b\U0002b218", // 𫈘
+ 0x2b219: "\x8c\b\U0002b219", // 𫈙
+ 0x2b21a: "\x8c\b\U0002b21a", // 𫈚
+ 0x2b21b: "\x8c\b\U0002b21b", // 𫈛
+ 0x2b21c: "\x8c\b\U0002b21c", // 𫈜
+ 0x2b21d: "\x8c\b\U0002b21d", // 𫈝
+ 0x2b21e: "\x8c\b\U0002b21e", // 𫈞
+ 0x2b21f: "\x8c\b\U0002b21f", // 𫈟
+ 0x2b220: "\x8c\b\U0002b220", // 𫈠
+ 0x2b221: "\x8c\t\U0002b221", // 𫈡
+ 0x2b222: "\x8c\t\U0002b222", // 𫈢
+ 0x2b223: "\x8c\t\U0002b223", // 𫈣
+ 0x2b224: "\x8c\t\U0002b224", // 𫈤
+ 0x2b225: "\x8c\t\U0002b225", // 𫈥
+ 0x2b226: "\x8c\t\U0002b226", // 𫈦
+ 0x2b227: "\x8c\t\U0002b227", // 𫈧
+ 0x2b228: "\x8c\t\U0002b228", // 𫈨
+ 0x2b229: "\x8c\t\U0002b229", // 𫈩
+ 0x2b22a: "\x8c\t\U0002b22a", // 𫈪
+ 0x2b22b: "\x8c\t\U0002b22b", // 𫈫
+ 0x2b22c: "\x8c\t\U0002b22c", // 𫈬
+ 0x2b22d: "\x8c\t\U0002b22d", // 𫈭
+ 0x2b22e: "\x8c\t\U0002b22e", // 𫈮
+ 0x2b22f: "\x8c\t\U0002b22f", // 𫈯
+ 0x2b230: "\x8c\t\U0002b230", // 𫈰
+ 0x2b231: "\x8c\t\U0002b231", // 𫈱
+ 0x2b232: "\x8c\t\U0002b232", // 𫈲
+ 0x2b233: "\x8c\t\U0002b233", // 𫈳
+ 0x2b234: "\x8c\t\U0002b234", // 𫈴
+ 0x2b235: "\x8c\t\U0002b235", // 𫈵
+ 0x2b236: "\x8c\n\U0002b236", // 𫈶
+ 0x2b237: "\x8c\n\U0002b237", // 𫈷
+ 0x2b238: "\x8c\n\U0002b238", // 𫈸
+ 0x2b239: "\x8c\n\U0002b239", // 𫈹
+ 0x2b23a: "\x8c\n\U0002b23a", // 𫈺
+ 0x2b23b: "\x8c\n\U0002b23b", // 𫈻
+ 0x2b23c: "\x8c\n\U0002b23c", // 𫈼
+ 0x2b23d: "\x8c\n\U0002b23d", // 𫈽
+ 0x2b23e: "\x8c\n\U0002b23e", // 𫈾
+ 0x2b23f: "\x8c\n\U0002b23f", // 𫈿
+ 0x2b240: "\x8c\n\U0002b240", // 𫉀
+ 0x2b241: "\x8c\n\U0002b241", // 𫉁
+ 0x2b242: "\x8c\n\U0002b242", // 𫉂
+ 0x2b243: "\x8c\n\U0002b243", // 𫉃
+ 0x2b244: "\x8c\n\U0002b244", // 𫉄
+ 0x2b245: "\x8c\n\U0002b245", // 𫉅
+ 0x2b246: "\x8c\n\U0002b246", // 𫉆
+ 0x2b247: "\x8c\n\U0002b247", // 𫉇
+ 0x2b248: "\x8c\v\U0002b248", // 𫉈
+ 0x2b249: "\x8c\v\U0002b249", // 𫉉
+ 0x2b24a: "\x8c\v\U0002b24a", // 𫉊
+ 0x2b24b: "\x8c\v\U0002b24b", // 𫉋
+ 0x2b24c: "\x8c\v\U0002b24c", // 𫉌
+ 0x2b24d: "\x8c\v\U0002b24d", // 𫉍
+ 0x2b24e: "\x8c\v\U0002b24e", // 𫉎
+ 0x2b24f: "\x8c\v\U0002b24f", // 𫉏
+ 0x2b250: "\x8c\v\U0002b250", // 𫉐
+ 0x2b251: "\x8c\v\U0002b251", // 𫉑
+ 0x2b252: "\x8c\v\U0002b252", // 𫉒
+ 0x2b253: "\x8c\v\U0002b253", // 𫉓
+ 0x2b254: "\x8c\v\U0002b254", // 𫉔
+ 0x2b255: "\x8c\v\U0002b255", // 𫉕
+ 0x2b256: "\x8c\v\U0002b256", // 𫉖
+ 0x2b257: "\x8c\v\U0002b257", // 𫉗
+ 0x2b258: "\x8c\v\U0002b258", // 𫉘
+ 0x2b259: "\x8c\v\U0002b259", // 𫉙
+ 0x2b25a: "\x8c\v\U0002b25a", // 𫉚
+ 0x2b25b: "\x8c\v\U0002b25b", // 𫉛
+ 0x2b25c: "\x8c\v\U0002b25c", // 𫉜
+ 0x2b25d: "\x8c\f\U0002b25d", // 𫉝
+ 0x2b25e: "\x8c\f\U0002b25e", // 𫉞
+ 0x2b25f: "\x8c\f\U0002b25f", // 𫉟
+ 0x2b260: "\x8c\f\U0002b260", // 𫉠
+ 0x2b261: "\x8c\f\U0002b261", // 𫉡
+ 0x2b262: "\x8c\f\U0002b262", // 𫉢
+ 0x2b263: "\x8c\f\U0002b263", // 𫉣
+ 0x2b264: "\x8c\f\U0002b264", // 𫉤
+ 0x2b265: "\x8c\r\U0002b265", // 𫉥
+ 0x2b266: "\x8c\r\U0002b266", // 𫉦
+ 0x2b267: "\x8c\r\U0002b267", // 𫉧
+ 0x2b268: "\x8c\r\U0002b268", // 𫉨
+ 0x2b269: "\x8c\r\U0002b269", // 𫉩
+ 0x2b26a: "\x8c\r\U0002b26a", // 𫉪
+ 0x2b26b: "\x8c\r\U0002b26b", // 𫉫
+ 0x2b26c: "\x8c\r\U0002b26c", // 𫉬
+ 0x2b26d: "\x8c\r\U0002b26d", // 𫉭
+ 0x2b26e: "\x8c\r\U0002b26e", // 𫉮
+ 0x2b26f: "\x8c\r\U0002b26f", // 𫉯
+ 0x2b270: "\x8c\r\U0002b270", // 𫉰
+ 0x2b271: "\x8c\r\U0002b271", // 𫉱
+ 0x2b272: "\x8c\r\U0002b272", // 𫉲
+ 0x2b273: "\x8c\r\U0002b273", // 𫉳
+ 0x2b274: "\x8c\r\U0002b274", // 𫉴
+ 0x2b275: "\x8c\x0e\U0002b275", // 𫉵
+ 0x2b276: "\x8c\x0e\U0002b276", // 𫉶
+ 0x2b277: "\x8c\x0e\U0002b277", // 𫉷
+ 0x2b278: "\x8c\x0e\U0002b278", // 𫉸
+ 0x2b279: "\x8c\x0e\U0002b279", // 𫉹
+ 0x2b27a: "\x8c\x0e\U0002b27a", // 𫉺
+ 0x2b27b: "\x8c\x0e\U0002b27b", // 𫉻
+ 0x2b27c: "\x8c\x0e\U0002b27c", // 𫉼
+ 0x2b27d: "\x8c\x0e\U0002b27d", // 𫉽
+ 0x2b27e: "\x8c\x0e\U0002b27e", // 𫉾
+ 0x2b27f: "\x8c\x0e\U0002b27f", // 𫉿
+ 0x2b280: "\x8c\x0e\U0002b280", // 𫊀
+ 0x2b281: "\x8c\x0e\U0002b281", // 𫊁
+ 0x2b282: "\x8c\x0e\U0002b282", // 𫊂
+ 0x2b283: "\x8c\x0e\U0002b283", // 𫊃
+ 0x2b284: "\x8c\x0e\U0002b284", // 𫊄
+ 0x2b285: "\x8c\x0f\U0002b285", // 𫊅
+ 0x2b286: "\x8c\x0f\U0002b286", // 𫊆
+ 0x2b287: "\x8c\x0f\U0002b287", // 𫊇
+ 0x2b288: "\x8c\x0f\U0002b288", // 𫊈
+ 0x2b289: "\x8c\x0f\U0002b289", // 𫊉
+ 0x2b28a: "\x8c\x0f\U0002b28a", // 𫊊
+ 0x2b28b: "\x8c\x0f\U0002b28b", // 𫊋
+ 0x2b28c: "\x8c\x10\U0002b28c", // 𫊌
+ 0x2b28d: "\x8c\x10\U0002b28d", // 𫊍
+ 0x2b28e: "\x8c\x10\U0002b28e", // 𫊎
+ 0x2b28f: "\x8c\x10\U0002b28f", // 𫊏
+ 0x2b290: "\x8c\x11\U0002b290", // 𫊐
+ 0x2b291: "\x8c\x11\U0002b291", // 𫊑
+ 0x2b292: "\x8c\x11\U0002b292", // 𫊒
+ 0x2b293: "\x8c\x11\U0002b293", // 𫊓
+ 0x2b294: "\x8c\x12\U0002b294", // 𫊔
+ 0x2b295: "\x8c\x12\U0002b295", // 𫊕
+ 0x2b296: "\x8c\x12\U0002b296", // 𫊖
+ 0x2b297: "\x8c\x13\U0002b297", // 𫊗
+ 0x2b298: "\x8c\x14\U0002b298", // 𫊘
+ 0x2b299: "\x8c\x14\U0002b299", // 𫊙
+ 0x2b29a: "\x8c\x14\U0002b29a", // 𫊚
+ 0x2b29b: "\x8c\x16\U0002b29b", // 𫊛
+ 0x2b29c: "\x8c\x16\U0002b29c", // 𫊜
+ 0x2b29d: "\x8d\x03\U0002b29d", // 𫊝
+ 0x2b29e: "\x8d\x03\U0002b29e", // 𫊞
+ 0x2b29f: "\x8d\x04\U0002b29f", // 𫊟
+ 0x2b2a0: "\x8d\x06\U0002b2a0", // 𫊠
+ 0x2b2a1: "\x8d\x06\U0002b2a1", // 𫊡
+ 0x2b2a2: "\x8d\b\U0002b2a2", // 𫊢
+ 0x2b2a3: "\x8d\v\U0002b2a3", // 𫊣
+ 0x2b2a4: "\x8e\x02\U0002b2a4", // 𫊤
+ 0x2b2a5: "\x8e\x03\U0002b2a5", // 𫊥
+ 0x2b2a6: "\x8e\x03\U0002b2a6", // 𫊦
+ 0x2b2a7: "\x8e\x04\U0002b2a7", // 𫊧
+ 0x2b2a8: "\x8e\x04\U0002b2a8", // 𫊨
+ 0x2b2a9: "\x8e\x04\U0002b2a9", // 𫊩
+ 0x2b2aa: "\x8e\x04\U0002b2aa", // 𫊪
+ 0x2b2ab: "\x8e\x04\U0002b2ab", // 𫊫
+ 0x2b2ac: "\x8e\x05\U0002b2ac", // 𫊬
+ 0x2b2ad: "\x8e\x05\U0002b2ad", // 𫊭
+ 0x2b2ae: "\x8e\x05\U0002b2ae", // 𫊮
+ 0x2b2af: "\x8e\x05\U0002b2af", // 𫊯
+ 0x2b2b0: "\x8e\x05\U0002b2b0", // 𫊰
+ 0x2b2b1: "\x8e\x05\U0002b2b1", // 𫊱
+ 0x2b2b2: "\x8e\x05\U0002b2b2", // 𫊲
+ 0x2b2b3: "\x8e\x06\U0002b2b3", // 𫊳
+ 0x2b2b4: "\x8e\x06\U0002b2b4", // 𫊴
+ 0x2b2b5: "\x8e\x06\U0002b2b5", // 𫊵
+ 0x2b2b6: "\x8e\x06\U0002b2b6", // 𫊶
+ 0x2b2b7: "\x8e\x06\U0002b2b7", // 𫊷
+ 0x2b2b8: "\x8e\x06\U0002b2b8", // 𫊸
+ 0x2b2b9: "\x8e\x06\U0002b2b9", // 𫊹
+ 0x2b2ba: "\x8e\x06\U0002b2ba", // 𫊺
+ 0x2b2bb: "\x8e\x06\U0002b2bb", // 𫊻
+ 0x2b2bc: "\x8e\x06\U0002b2bc", // 𫊼
+ 0x2b2bd: "\x8e\a\U0002b2bd", // 𫊽
+ 0x2b2be: "\x8e\a\U0002b2be", // 𫊾
+ 0x2b2bf: "\x8e\a\U0002b2bf", // 𫊿
+ 0x2b2c0: "\x8e\a\U0002b2c0", // 𫋀
+ 0x2b2c1: "\x8e\a\U0002b2c1", // 𫋁
+ 0x2b2c2: "\x8e\b\U0002b2c2", // 𫋂
+ 0x2b2c3: "\x8e\b\U0002b2c3", // 𫋃
+ 0x2b2c4: "\x8e\b\U0002b2c4", // 𫋄
+ 0x2b2c5: "\x8e\b\U0002b2c5", // 𫋅
+ 0x2b2c6: "\x8e\b\U0002b2c6", // 𫋆
+ 0x2b2c7: "\x8e\b\U0002b2c7", // 𫋇
+ 0x2b2c8: "\x8e\b\U0002b2c8", // 𫋈
+ 0x2b2c9: "\x8e\b\U0002b2c9", // 𫋉
+ 0x2b2ca: "\x8e\t\U0002b2ca", // 𫋊
+ 0x2b2cb: "\x8e\t\U0002b2cb", // 𫋋
+ 0x2b2cc: "\x8e\t\U0002b2cc", // 𫋌
+ 0x2b2cd: "\x8e\t\U0002b2cd", // 𫋍
+ 0x2b2ce: "\x8e\t\U0002b2ce", // 𫋎
+ 0x2b2cf: "\x8e\n\U0002b2cf", // 𫋏
+ 0x2b2d0: "\x8e\n\U0002b2d0", // 𫋐
+ 0x2b2d1: "\x8e\n\U0002b2d1", // 𫋑
+ 0x2b2d2: "\x8e\n\U0002b2d2", // 𫋒
+ 0x2b2d3: "\x8e\n\U0002b2d3", // 𫋓
+ 0x2b2d4: "\x8e\n\U0002b2d4", // 𫋔
+ 0x2b2d5: "\x8e\n\U0002b2d5", // 𫋕
+ 0x2b2d6: "\x8e\v\U0002b2d6", // 𫋖
+ 0x2b2d7: "\x8e\v\U0002b2d7", // 𫋗
+ 0x2b2d8: "\x8e\v\U0002b2d8", // 𫋘
+ 0x2b2d9: "\x8e\v\U0002b2d9", // 𫋙
+ 0x2b2da: "\x8e\f\U0002b2da", // 𫋚
+ 0x2b2db: "\x8e\f\U0002b2db", // 𫋛
+ 0x2b2dc: "\x8e\f\U0002b2dc", // 𫋜
+ 0x2b2dd: "\x8e\f\U0002b2dd", // 𫋝
+ 0x2b2de: "\x8e\f\U0002b2de", // 𫋞
+ 0x2b2df: "\x8e\r\U0002b2df", // 𫋟
+ 0x2b2e0: "\x8e\r\U0002b2e0", // 𫋠
+ 0x2b2e1: "\x8e\r\U0002b2e1", // 𫋡
+ 0x2b2e2: "\x8e\r\U0002b2e2", // 𫋢
+ 0x2b2e3: "\x8e\x0e\U0002b2e3", // 𫋣
+ 0x2b2e4: "\x8e\x0e\U0002b2e4", // 𫋤
+ 0x2b2e5: "\x8e\x0e\U0002b2e5", // 𫋥
+ 0x2b2e6: "\x8e\x0f\U0002b2e6", // 𫋦
+ 0x2b2e7: "\x8e\x0f\U0002b2e7", // 𫋧
+ 0x2b2e8: "\x8e\x10\U0002b2e8", // 𫋨
+ 0x2b2e9: "\x8e\x17\U0002b2e9", // 𫋩
+ 0x2b2ea: "\x8f\x04\U0002b2ea", // 𫋪
+ 0x2b2eb: "\x8f\x05\U0002b2eb", // 𫋫
+ 0x2b2ec: "\x8f\v\U0002b2ec", // 𫋬
+ 0x2b2ed: "\x90\x05\U0002b2ed", // 𫋭
+ 0x2b2ee: "\x90\x06\U0002b2ee", // 𫋮
+ 0x2b2ef: "\x90\t\U0002b2ef", // 𫋯
+ 0x2b2f0: "\x90\f\U0002b2f0", // 𫋰
+ 0x2b2f1: "\x90\x11\U0002b2f1", // 𫋱
+ 0x2b2f2: "\x91\x04\U0002b2f2", // 𫋲
+ 0x2b2f3: "\x91\x04\U0002b2f3", // 𫋳
+ 0x2b2f4: "\x91\x04\U0002b2f4", // 𫋴
+ 0x2b2f5: "\x91\x05\U0002b2f5", // 𫋵
+ 0x2b2f6: "\x91\x05\U0002b2f6", // 𫋶
+ 0x2b2f7: "\x91\x05\U0002b2f7", // 𫋷
+ 0x2b2f8: "\x91\x06\U0002b2f8", // 𫋸
+ 0x2b2f9: "\x91\x06\U0002b2f9", // 𫋹
+ 0x2b2fa: "\x91\x06\U0002b2fa", // 𫋺
+ 0x2b2fb: "\x91\x06\U0002b2fb", // 𫋻
+ 0x2b2fc: "\x91\x06\U0002b2fc", // 𫋼
+ 0x2b2fd: "\x91\a\U0002b2fd", // 𫋽
+ 0x2b2fe: "\x91\b\U0002b2fe", // 𫋾
+ 0x2b2ff: "\x91\b\U0002b2ff", // 𫋿
+ 0x2b300: "\x91\b\U0002b300", // 𫌀
+ 0x2b301: "\x91\b\U0002b301", // 𫌁
+ 0x2b302: "\x91\b\U0002b302", // 𫌂
+ 0x2b303: "\x91\b\U0002b303", // 𫌃
+ 0x2b304: "\x91\b\U0002b304", // 𫌄
+ 0x2b305: "\x91\t\U0002b305", // 𫌅
+ 0x2b306: "\x91\t\U0002b306", // 𫌆
+ 0x2b307: "\x91\n\U0002b307", // 𫌇
+ 0x2b308: "\x91\n\U0002b308", // 𫌈
+ 0x2b309: "\x91\n\U0002b309", // 𫌉
+ 0x2b30a: "\x91\v\U0002b30a", // 𫌊
+ 0x2b30b: "\x91\v\U0002b30b", // 𫌋
+ 0x2b30c: "\x91\v\U0002b30c", // 𫌌
+ 0x2b30d: "\x91\v\U0002b30d", // 𫌍
+ 0x2b30e: "\x91\v\U0002b30e", // 𫌎
+ 0x2b30f: "\x91\v\U0002b30f", // 𫌏
+ 0x2b310: "\x91\f\U0002b310", // 𫌐
+ 0x2b311: "\x91\f\U0002b311", // 𫌑
+ 0x2b312: "\x91\f\U0002b312", // 𫌒
+ 0x2b313: "\x91\r\U0002b313", // 𫌓
+ 0x2b314: "\x91\r\U0002b314", // 𫌔
+ 0x2b315: "\x91\x0e\U0002b315", // 𫌕
+ 0x2b316: "\x91\x0f\U0002b316", // 𫌖
+ 0x2b317: "\x91\x11\U0002b317", // 𫌗
+ 0x2b318: "\x91\x12\U0002b318", // 𫌘
+ 0x2b319: "\x91\x12\U0002b319", // 𫌙
+ 0x2b31a: "\x92\x05\U0002b31a", // 𫌚
+ 0x2b31b: "\x92\n\U0002b31b", // 𫌛
+ 0x2b31c: "\x93\x03\U0002b31c", // 𫌜
+ 0x2b31d: "\x93\x05\U0002b31d", // 𫌝
+ 0x2b31e: "\x93\x06\U0002b31e", // 𫌞
+ 0x2b31f: "\x93\a\U0002b31f", // 𫌟
+ 0x2b320: "\x93\a\U0002b320", // 𫌠
+ 0x2b321: "\x93\b\U0002b321", // 𫌡
+ 0x2b322: "\x93\t\U0002b322", // 𫌢
+ 0x2b323: "\x93\t\U0002b323", // 𫌣
+ 0x2b324: "\x93\v\U0002b324", // 𫌤
+ 0x2b325: "\x93\r\U0002b325", // 𫌥
+ 0x2b326: "\x93\x12\U0002b326", // 𫌦
+ 0x2b327: "\x93\x12\U0002b327", // 𫌧
+ 0x2b328: "\x93\x05\U0002b328", // 𫌨
+ 0x2b329: "\x93\x05\U0002b329", // 𫌩
+ 0x2b32a: "\x93\x06\U0002b32a", // 𫌪
+ 0x2b32b: "\x93\t\U0002b32b", // 𫌫
+ 0x2b32c: "\x93\v\U0002b32c", // 𫌬
+ 0x2b32d: "\x93\r\U0002b32d", // 𫌭
+ 0x2b32e: "\x94\x06\U0002b32e", // 𫌮
+ 0x2b32f: "\x94\x06\U0002b32f", // 𫌯
+ 0x2b330: "\x94\t\U0002b330", // 𫌰
+ 0x2b331: "\x94\t\U0002b331", // 𫌱
+ 0x2b332: "\x95\x03\U0002b332", // 𫌲
+ 0x2b333: "\x95\x03\U0002b333", // 𫌳
+ 0x2b334: "\x95\x04\U0002b334", // 𫌴
+ 0x2b335: "\x95\x04\U0002b335", // 𫌵
+ 0x2b336: "\x95\x05\U0002b336", // 𫌶
+ 0x2b337: "\x95\x05\U0002b337", // 𫌷
+ 0x2b338: "\x95\x05\U0002b338", // 𫌸
+ 0x2b339: "\x95\x05\U0002b339", // 𫌹
+ 0x2b33a: "\x95\x06\U0002b33a", // 𫌺
+ 0x2b33b: "\x95\x06\U0002b33b", // 𫌻
+ 0x2b33c: "\x95\a\U0002b33c", // 𫌼
+ 0x2b33d: "\x95\a\U0002b33d", // 𫌽
+ 0x2b33e: "\x95\a\U0002b33e", // 𫌾
+ 0x2b33f: "\x95\b\U0002b33f", // 𫌿
+ 0x2b340: "\x95\b\U0002b340", // 𫍀
+ 0x2b341: "\x95\t\U0002b341", // 𫍁
+ 0x2b342: "\x95\t\U0002b342", // 𫍂
+ 0x2b343: "\x95\t\U0002b343", // 𫍃
+ 0x2b344: "\x95\t\U0002b344", // 𫍄
+ 0x2b345: "\x95\t\U0002b345", // 𫍅
+ 0x2b346: "\x95\n\U0002b346", // 𫍆
+ 0x2b347: "\x95\n\U0002b347", // 𫍇
+ 0x2b348: "\x95\n\U0002b348", // 𫍈
+ 0x2b349: "\x95\v\U0002b349", // 𫍉
+ 0x2b34a: "\x95\v\U0002b34a", // 𫍊
+ 0x2b34b: "\x95\v\U0002b34b", // 𫍋
+ 0x2b34c: "\x95\v\U0002b34c", // 𫍌
+ 0x2b34d: "\x95\f\U0002b34d", // 𫍍
+ 0x2b34e: "\x95\f\U0002b34e", // 𫍎
+ 0x2b34f: "\x95\f\U0002b34f", // 𫍏
+ 0x2b350: "\x95\r\U0002b350", // 𫍐
+ 0x2b351: "\x95\r\U0002b351", // 𫍑
+ 0x2b352: "\x95\x0e\U0002b352", // 𫍒
+ 0x2b353: "\x95\x10\U0002b353", // 𫍓
+ 0x2b354: "\x95\x11\U0002b354", // 𫍔
+ 0x2b355: "\x95\x11\U0002b355", // 𫍕
+ 0x2b356: "\x95\x11\U0002b356", // 𫍖
+ 0x2b357: "\x95\x13\U0002b357", // 𫍗
+ 0x2b358: "\x95\x15\U0002b358", // 𫍘
+ 0x2b359: "\x95\x03\U0002b359", // 𫍙
+ 0x2b35a: "\x95\x04\U0002b35a", // 𫍚
+ 0x2b35b: "\x95\x04\U0002b35b", // 𫍛
+ 0x2b35c: "\x95\x05\U0002b35c", // 𫍜
+ 0x2b35d: "\x95\x05\U0002b35d", // 𫍝
+ 0x2b35e: "\x95\x05\U0002b35e", // 𫍞
+ 0x2b35f: "\x95\x05\U0002b35f", // 𫍟
+ 0x2b360: "\x95\x05\U0002b360", // 𫍠
+ 0x2b361: "\x95\x05\U0002b361", // 𫍡
+ 0x2b362: "\x95\x06\U0002b362", // 𫍢
+ 0x2b363: "\x95\x06\U0002b363", // 𫍣
+ 0x2b364: "\x95\x06\U0002b364", // 𫍤
+ 0x2b365: "\x95\x06\U0002b365", // 𫍥
+ 0x2b366: "\x95\x06\U0002b366", // 𫍦
+ 0x2b367: "\x95\a\U0002b367", // 𫍧
+ 0x2b368: "\x95\a\U0002b368", // 𫍨
+ 0x2b369: "\x95\a\U0002b369", // 𫍩
+ 0x2b36a: "\x95\a\U0002b36a", // 𫍪
+ 0x2b36b: "\x95\b\U0002b36b", // 𫍫
+ 0x2b36c: "\x95\b\U0002b36c", // 𫍬
+ 0x2b36d: "\x95\b\U0002b36d", // 𫍭
+ 0x2b36e: "\x95\b\U0002b36e", // 𫍮
+ 0x2b36f: "\x95\t\U0002b36f", // 𫍯
+ 0x2b370: "\x95\t\U0002b370", // 𫍰
+ 0x2b371: "\x95\t\U0002b371", // 𫍱
+ 0x2b372: "\x95\t\U0002b372", // 𫍲
+ 0x2b373: "\x95\t\U0002b373", // 𫍳
+ 0x2b374: "\x95\t\U0002b374", // 𫍴
+ 0x2b375: "\x95\n\U0002b375", // 𫍵
+ 0x2b376: "\x95\n\U0002b376", // 𫍶
+ 0x2b377: "\x95\n\U0002b377", // 𫍷
+ 0x2b378: "\x95\n\U0002b378", // 𫍸
+ 0x2b379: "\x95\v\U0002b379", // 𫍹
+ 0x2b37a: "\x95\v\U0002b37a", // 𫍺
+ 0x2b37b: "\x95\f\U0002b37b", // 𫍻
+ 0x2b37c: "\x95\f\U0002b37c", // 𫍼
+ 0x2b37d: "\x95\r\U0002b37d", // 𫍽
+ 0x2b37e: "\x95\x0e\U0002b37e", // 𫍾
+ 0x2b37f: "\x95\x0f\U0002b37f", // 𫍿
+ 0x2b380: "\x96\x02\U0002b380", // 𫎀
+ 0x2b381: "\x96\x04\U0002b381", // 𫎁
+ 0x2b382: "\x96\b\U0002b382", // 𫎂
+ 0x2b383: "\x97\b\U0002b383", // 𫎃
+ 0x2b384: "\x97\v\U0002b384", // 𫎄
+ 0x2b385: "\x98\x01\U0002b385", // 𫎅
+ 0x2b386: "\x98\x04\U0002b386", // 𫎆
+ 0x2b387: "\x98\a\U0002b387", // 𫎇
+ 0x2b388: "\x98\a\U0002b388", // 𫎈
+ 0x2b389: "\x98\t\U0002b389", // 𫎉
+ 0x2b38a: "\x99\x03\U0002b38a", // 𫎊
+ 0x2b38b: "\x99\x06\U0002b38b", // 𫎋
+ 0x2b38c: "\x99\t\U0002b38c", // 𫎌
+ 0x2b38d: "\x99\n\U0002b38d", // 𫎍
+ 0x2b38e: "\x9a\x02\U0002b38e", // 𫎎
+ 0x2b38f: "\x9a\x03\U0002b38f", // 𫎏
+ 0x2b390: "\x9a\x03\U0002b390", // 𫎐
+ 0x2b391: "\x9a\x03\U0002b391", // 𫎑
+ 0x2b392: "\x9a\x04\U0002b392", // 𫎒
+ 0x2b393: "\x9a\x04\U0002b393", // 𫎓
+ 0x2b394: "\x9a\x05\U0002b394", // 𫎔
+ 0x2b395: "\x9a\x05\U0002b395", // 𫎕
+ 0x2b396: "\x9a\x06\U0002b396", // 𫎖
+ 0x2b397: "\x9a\a\U0002b397", // 𫎗
+ 0x2b398: "\x9a\a\U0002b398", // 𫎘
+ 0x2b399: "\x9a\a\U0002b399", // 𫎙
+ 0x2b39a: "\x9a\b\U0002b39a", // 𫎚
+ 0x2b39b: "\x9a\b\U0002b39b", // 𫎛
+ 0x2b39c: "\x9a\t\U0002b39c", // 𫎜
+ 0x2b39d: "\x9a\t\U0002b39d", // 𫎝
+ 0x2b39e: "\x9a\t\U0002b39e", // 𫎞
+ 0x2b39f: "\x9a\n\U0002b39f", // 𫎟
+ 0x2b3a0: "\x9a\n\U0002b3a0", // 𫎠
+ 0x2b3a1: "\x9a\v\U0002b3a1", // 𫎡
+ 0x2b3a2: "\x9a\f\U0002b3a2", // 𫎢
+ 0x2b3a3: "\x9a\x0f\U0002b3a3", // 𫎣
+ 0x2b3a4: "\x9a\x0f\U0002b3a4", // 𫎤
+ 0x2b3a5: "\x9a\x10\U0002b3a5", // 𫎥
+ 0x2b3a6: "\x9a\x05\U0002b3a6", // 𫎦
+ 0x2b3a7: "\x9a\x05\U0002b3a7", // 𫎧
+ 0x2b3a8: "\x9a\a\U0002b3a8", // 𫎨
+ 0x2b3a9: "\x9a\b\U0002b3a9", // 𫎩
+ 0x2b3aa: "\x9a\t\U0002b3aa", // 𫎪
+ 0x2b3ab: "\x9a\f\U0002b3ab", // 𫎫
+ 0x2b3ac: "\x9a\x0e\U0002b3ac", // 𫎬
+ 0x2b3ad: "\x9b\x05\U0002b3ad", // 𫎭
+ 0x2b3ae: "\x9b\x06\U0002b3ae", // 𫎮
+ 0x2b3af: "\x9b\b\U0002b3af", // 𫎯
+ 0x2b3b0: "\x9b\v\U0002b3b0", // 𫎰
+ 0x2b3b1: "\x9c\x04\U0002b3b1", // 𫎱
+ 0x2b3b2: "\x9c\x05\U0002b3b2", // 𫎲
+ 0x2b3b3: "\x9c\x06\U0002b3b3", // 𫎳
+ 0x2b3b4: "\x9c\x06\U0002b3b4", // 𫎴
+ 0x2b3b5: "\x9c\a\U0002b3b5", // 𫎵
+ 0x2b3b6: "\x9c\a\U0002b3b6", // 𫎶
+ 0x2b3b7: "\x9c\a\U0002b3b7", // 𫎷
+ 0x2b3b8: "\x9c\b\U0002b3b8", // 𫎸
+ 0x2b3b9: "\x9c\b\U0002b3b9", // 𫎹
+ 0x2b3ba: "\x9c\b\U0002b3ba", // 𫎺
+ 0x2b3bb: "\x9c\t\U0002b3bb", // 𫎻
+ 0x2b3bc: "\x9c\t\U0002b3bc", // 𫎼
+ 0x2b3bd: "\x9c\n\U0002b3bd", // 𫎽
+ 0x2b3be: "\x9c\v\U0002b3be", // 𫎾
+ 0x2b3bf: "\x9c\v\U0002b3bf", // 𫎿
+ 0x2b3c0: "\x9d\x03\U0002b3c0", // 𫏀
+ 0x2b3c1: "\x9d\x04\U0002b3c1", // 𫏁
+ 0x2b3c2: "\x9d\x04\U0002b3c2", // 𫏂
+ 0x2b3c3: "\x9d\x04\U0002b3c3", // 𫏃
+ 0x2b3c4: "\x9d\x05\U0002b3c4", // 𫏄
+ 0x2b3c5: "\x9d\x05\U0002b3c5", // 𫏅
+ 0x2b3c6: "\x9d\x05\U0002b3c6", // 𫏆
+ 0x2b3c7: "\x9d\x06\U0002b3c7", // 𫏇
+ 0x2b3c8: "\x9d\x06\U0002b3c8", // 𫏈
+ 0x2b3c9: "\x9d\x06\U0002b3c9", // 𫏉
+ 0x2b3ca: "\x9d\x06\U0002b3ca", // 𫏊
+ 0x2b3cb: "\x9d\x06\U0002b3cb", // 𫏋
+ 0x2b3cc: "\x9d\a\U0002b3cc", // 𫏌
+ 0x2b3cd: "\x9d\a\U0002b3cd", // 𫏍
+ 0x2b3ce: "\x9d\a\U0002b3ce", // 𫏎
+ 0x2b3cf: "\x9d\b\U0002b3cf", // 𫏏
+ 0x2b3d0: "\x9d\b\U0002b3d0", // 𫏐
+ 0x2b3d1: "\x9d\b\U0002b3d1", // 𫏑
+ 0x2b3d2: "\x9d\b\U0002b3d2", // 𫏒
+ 0x2b3d3: "\x9d\b\U0002b3d3", // 𫏓
+ 0x2b3d4: "\x9d\t\U0002b3d4", // 𫏔
+ 0x2b3d5: "\x9d\t\U0002b3d5", // 𫏕
+ 0x2b3d6: "\x9d\t\U0002b3d6", // 𫏖
+ 0x2b3d7: "\x9d\t\U0002b3d7", // 𫏗
+ 0x2b3d8: "\x9d\t\U0002b3d8", // 𫏘
+ 0x2b3d9: "\x9d\n\U0002b3d9", // 𫏙
+ 0x2b3da: "\x9d\n\U0002b3da", // 𫏚
+ 0x2b3db: "\x9d\n\U0002b3db", // 𫏛
+ 0x2b3dc: "\x9d\v\U0002b3dc", // 𫏜
+ 0x2b3dd: "\x9d\v\U0002b3dd", // 𫏝
+ 0x2b3de: "\x9d\v\U0002b3de", // 𫏞
+ 0x2b3df: "\x9d\v\U0002b3df", // 𫏟
+ 0x2b3e0: "\x9d\f\U0002b3e0", // 𫏠
+ 0x2b3e1: "\x9d\f\U0002b3e1", // 𫏡
+ 0x2b3e2: "\x9d\f\U0002b3e2", // 𫏢
+ 0x2b3e3: "\x9d\r\U0002b3e3", // 𫏣
+ 0x2b3e4: "\x9d\r\U0002b3e4", // 𫏤
+ 0x2b3e5: "\x9d\r\U0002b3e5", // 𫏥
+ 0x2b3e6: "\x9d\r\U0002b3e6", // 𫏦
+ 0x2b3e7: "\x9d\x0e\U0002b3e7", // 𫏧
+ 0x2b3e8: "\x9d\x0e\U0002b3e8", // 𫏨
+ 0x2b3e9: "\x9d\x10\U0002b3e9", // 𫏩
+ 0x2b3ea: "\x9e\x06\U0002b3ea", // 𫏪
+ 0x2b3eb: "\x9e\x06\U0002b3eb", // 𫏫
+ 0x2b3ec: "\x9e\a\U0002b3ec", // 𫏬
+ 0x2b3ed: "\x9e\n\U0002b3ed", // 𫏭
+ 0x2b3ee: "\x9e\n\U0002b3ee", // 𫏮
+ 0x2b3ef: "\x9e\v\U0002b3ef", // 𫏯
+ 0x2b3f0: "\x9e\f\U0002b3f0", // 𫏰
+ 0x2b3f1: "\x9e\r\U0002b3f1", // 𫏱
+ 0x2b3f2: "\x9f\x03\U0002b3f2", // 𫏲
+ 0x2b3f3: "\x9f\x04\U0002b3f3", // 𫏳
+ 0x2b3f4: "\x9f\x05\U0002b3f4", // 𫏴
+ 0x2b3f5: "\x9f\x05\U0002b3f5", // 𫏵
+ 0x2b3f6: "\x9f\a\U0002b3f6", // 𫏶
+ 0x2b3f7: "\x9f\a\U0002b3f7", // 𫏷
+ 0x2b3f8: "\x9f\a\U0002b3f8", // 𫏸
+ 0x2b3f9: "\x9f\b\U0002b3f9", // 𫏹
+ 0x2b3fa: "\x9f\t\U0002b3fa", // 𫏺
+ 0x2b3fb: "\x9f\t\U0002b3fb", // 𫏻
+ 0x2b3fc: "\x9f\n\U0002b3fc", // 𫏼
+ 0x2b3fd: "\x9f\n\U0002b3fd", // 𫏽
+ 0x2b3fe: "\x9f\v\U0002b3fe", // 𫏾
+ 0x2b3ff: "\x9f\v\U0002b3ff", // 𫏿
+ 0x2b400: "\x9f\f\U0002b400", // 𫐀
+ 0x2b401: "\x9f\r\U0002b401", // 𫐁
+ 0x2b402: "\x9f\x0e\U0002b402", // 𫐂
+ 0x2b403: "\x9f\x1a\U0002b403", // 𫐃
+ 0x2b404: "\x9f\x03\U0002b404", // 𫐄
+ 0x2b405: "\x9f\x03\U0002b405", // 𫐅
+ 0x2b406: "\x9f\x04\U0002b406", // 𫐆
+ 0x2b407: "\x9f\x04\U0002b407", // 𫐇
+ 0x2b408: "\x9f\x05\U0002b408", // 𫐈
+ 0x2b409: "\x9f\x05\U0002b409", // 𫐉
+ 0x2b40a: "\x9f\x05\U0002b40a", // 𫐊
+ 0x2b40b: "\x9f\x06\U0002b40b", // 𫐋
+ 0x2b40c: "\x9f\x06\U0002b40c", // 𫐌
+ 0x2b40d: "\x9f\a\U0002b40d", // 𫐍
+ 0x2b40e: "\x9f\b\U0002b40e", // 𫐎
+ 0x2b40f: "\x9f\b\U0002b40f", // 𫐏
+ 0x2b410: "\x9f\b\U0002b410", // 𫐐
+ 0x2b411: "\x9f\b\U0002b411", // 𫐑
+ 0x2b412: "\x9f\t\U0002b412", // 𫐒
+ 0x2b413: "\x9f\t\U0002b413", // 𫐓
+ 0x2b414: "\x9f\n\U0002b414", // 𫐔
+ 0x2b415: "\x9f\v\U0002b415", // 𫐕
+ 0x2b416: "\x9f\v\U0002b416", // 𫐖
+ 0x2b417: "\x9f\f\U0002b417", // 𫐗
+ 0x2b418: "\x9f\r\U0002b418", // 𫐘
+ 0x2b419: "\x9f\x0f\U0002b419", // 𫐙
+ 0x2b41a: "\xa0\x05\U0002b41a", // 𫐚
+ 0x2b41b: "\xa0\x06\U0002b41b", // 𫐛
+ 0x2b41c: "\xa0\x06\U0002b41c", // 𫐜
+ 0x2b41d: "\xa0\r\U0002b41d", // 𫐝
+ 0x2b41e: "\xa2\x01\U0002b41e", // 𫐞
+ 0x2b41f: "\xa2\x03\U0002b41f", // 𫐟
+ 0x2b420: "\xa2\x04\U0002b420", // 𫐠
+ 0x2b421: "\xa2\x04\U0002b421", // 𫐡
+ 0x2b422: "\xa2\x05\U0002b422", // 𫐢
+ 0x2b423: "\xa2\x05\U0002b423", // 𫐣
+ 0x2b424: "\xa2\x05\U0002b424", // 𫐤
+ 0x2b425: "\xa2\x06\U0002b425", // 𫐥
+ 0x2b426: "\xa2\a\U0002b426", // 𫐦
+ 0x2b427: "\xa2\a\U0002b427", // 𫐧
+ 0x2b428: "\xa2\a\U0002b428", // 𫐨
+ 0x2b429: "\xa2\a\U0002b429", // 𫐩
+ 0x2b42a: "\xa2\a\U0002b42a", // 𫐪
+ 0x2b42b: "\xa2\b\U0002b42b", // 𫐫
+ 0x2b42c: "\xa2\b\U0002b42c", // 𫐬
+ 0x2b42d: "\xa2\b\U0002b42d", // 𫐭
+ 0x2b42e: "\xa2\b\U0002b42e", // 𫐮
+ 0x2b42f: "\xa2\b\U0002b42f", // 𫐯
+ 0x2b430: "\xa2\b\U0002b430", // 𫐰
+ 0x2b431: "\xa2\b\U0002b431", // 𫐱
+ 0x2b432: "\xa2\b\U0002b432", // 𫐲
+ 0x2b433: "\xa2\t\U0002b433", // 𫐳
+ 0x2b434: "\xa2\t\U0002b434", // 𫐴
+ 0x2b435: "\xa2\t\U0002b435", // 𫐵
+ 0x2b436: "\xa2\t\U0002b436", // 𫐶
+ 0x2b437: "\xa2\t\U0002b437", // 𫐷
+ 0x2b438: "\xa2\t\U0002b438", // 𫐸
+ 0x2b439: "\xa2\t\U0002b439", // 𫐹
+ 0x2b43a: "\xa2\n\U0002b43a", // 𫐺
+ 0x2b43b: "\xa2\n\U0002b43b", // 𫐻
+ 0x2b43c: "\xa2\n\U0002b43c", // 𫐼
+ 0x2b43d: "\xa2\n\U0002b43d", // 𫐽
+ 0x2b43e: "\xa2\v\U0002b43e", // 𫐾
+ 0x2b43f: "\xa2\v\U0002b43f", // 𫐿
+ 0x2b440: "\xa2\v\U0002b440", // 𫑀
+ 0x2b441: "\xa2\v\U0002b441", // 𫑁
+ 0x2b442: "\xa2\v\U0002b442", // 𫑂
+ 0x2b443: "\xa2\v\U0002b443", // 𫑃
+ 0x2b444: "\xa2\f\U0002b444", // 𫑄
+ 0x2b445: "\xa2\f\U0002b445", // 𫑅
+ 0x2b446: "\xa2\f\U0002b446", // 𫑆
+ 0x2b447: "\xa2\f\U0002b447", // 𫑇
+ 0x2b448: "\xa2\f\U0002b448", // 𫑈
+ 0x2b449: "\xa2\f\U0002b449", // 𫑉
+ 0x2b44a: "\xa2\f\U0002b44a", // 𫑊
+ 0x2b44b: "\xa2\r\U0002b44b", // 𫑋
+ 0x2b44c: "\xa2\x0e\U0002b44c", // 𫑌
+ 0x2b44d: "\xa2\x0e\U0002b44d", // 𫑍
+ 0x2b44e: "\xa2\x0e\U0002b44e", // 𫑎
+ 0x2b44f: "\xa2\x0e\U0002b44f", // 𫑏
+ 0x2b450: "\xa2\x0f\U0002b450", // 𫑐
+ 0x2b451: "\xa2\x0f\U0002b451", // 𫑑
+ 0x2b452: "\xa2\x11\U0002b452", // 𫑒
+ 0x2b453: "\xa2\x11\U0002b453", // 𫑓
+ 0x2b454: "\xa2\x11\U0002b454", // 𫑔
+ 0x2b455: "\xa2\x11\U0002b455", // 𫑕
+ 0x2b456: "\xa2\x12\U0002b456", // 𫑖
+ 0x2b457: "\xa3\x03\U0002b457", // 𫑗
+ 0x2b458: "\xa3\x04\U0002b458", // 𫑘
+ 0x2b459: "\xa3\x04\U0002b459", // 𫑙
+ 0x2b45a: "\xa3\x05\U0002b45a", // 𫑚
+ 0x2b45b: "\xa3\x05\U0002b45b", // 𫑛
+ 0x2b45c: "\xa3\x06\U0002b45c", // 𫑜
+ 0x2b45d: "\xa3\a\U0002b45d", // 𫑝
+ 0x2b45e: "\xa3\a\U0002b45e", // 𫑞
+ 0x2b45f: "\xa3\a\U0002b45f", // 𫑟
+ 0x2b460: "\xa3\b\U0002b460", // 𫑠
+ 0x2b461: "\xa3\b\U0002b461", // 𫑡
+ 0x2b462: "\xa3\b\U0002b462", // 𫑢
+ 0x2b463: "\xa3\t\U0002b463", // 𫑣
+ 0x2b464: "\xa3\t\U0002b464", // 𫑤
+ 0x2b465: "\xa3\n\U0002b465", // 𫑥
+ 0x2b466: "\xa3\n\U0002b466", // 𫑦
+ 0x2b467: "\xa3\v\U0002b467", // 𫑧
+ 0x2b468: "\xa3\v\U0002b468", // 𫑨
+ 0x2b469: "\xa3\v\U0002b469", // 𫑩
+ 0x2b46a: "\xa3\r\U0002b46a", // 𫑪
+ 0x2b46b: "\xa3\r\U0002b46b", // 𫑫
+ 0x2b46c: "\xa3\x0e\U0002b46c", // 𫑬
+ 0x2b46d: "\xa3\x0f\U0002b46d", // 𫑭
+ 0x2b46e: "\xa3\x10\U0002b46e", // 𫑮
+ 0x2b46f: "\xa3\x10\U0002b46f", // 𫑯
+ 0x2b470: "\xa3\x10\U0002b470", // 𫑰
+ 0x2b471: "\xa3\x12\U0002b471", // 𫑱
+ 0x2b472: "\xa3\x1a\U0002b472", // 𫑲
+ 0x2b473: "\xa4\x03\U0002b473", // 𫑳
+ 0x2b474: "\xa4\x06\U0002b474", // 𫑴
+ 0x2b475: "\xa4\x06\U0002b475", // 𫑵
+ 0x2b476: "\xa4\a\U0002b476", // 𫑶
+ 0x2b477: "\xa4\a\U0002b477", // 𫑷
+ 0x2b478: "\xa4\a\U0002b478", // 𫑸
+ 0x2b479: "\xa4\b\U0002b479", // 𫑹
+ 0x2b47a: "\xa4\n\U0002b47a", // 𫑺
+ 0x2b47b: "\xa4\v\U0002b47b", // 𫑻
+ 0x2b47c: "\xa4\f\U0002b47c", // 𫑼
+ 0x2b47d: "\xa4\f\U0002b47d", // 𫑽
+ 0x2b47e: "\xa4\x0e\U0002b47e", // 𫑾
+ 0x2b47f: "\xa4\x10\U0002b47f", // 𫑿
+ 0x2b480: "\xa5\x05\U0002b480", // 𫒀
+ 0x2b481: "\xa6\x04\U0002b481", // 𫒁
+ 0x2b482: "\xa6\x05\U0002b482", // 𫒂
+ 0x2b483: "\xa6\a\U0002b483", // 𫒃
+ 0x2b484: "\xa6\n\U0002b484", // 𫒄
+ 0x2b485: "\xa6\f\U0002b485", // 𫒅
+ 0x2b486: "\xa7\x03\U0002b486", // 𫒆
+ 0x2b487: "\xa7\x03\U0002b487", // 𫒇
+ 0x2b488: "\xa7\x03\U0002b488", // 𫒈
+ 0x2b489: "\xa7\x03\U0002b489", // 𫒉
+ 0x2b48a: "\xa7\x04\U0002b48a", // 𫒊
+ 0x2b48b: "\xa7\x04\U0002b48b", // 𫒋
+ 0x2b48c: "\xa7\x04\U0002b48c", // 𫒌
+ 0x2b48d: "\xa7\x04\U0002b48d", // 𫒍
+ 0x2b48e: "\xa7\x04\U0002b48e", // 𫒎
+ 0x2b48f: "\xa7\x05\U0002b48f", // 𫒏
+ 0x2b490: "\xa7\x05\U0002b490", // 𫒐
+ 0x2b491: "\xa7\x05\U0002b491", // 𫒑
+ 0x2b492: "\xa7\x05\U0002b492", // 𫒒
+ 0x2b493: "\xa7\x05\U0002b493", // 𫒓
+ 0x2b494: "\xa7\x05\U0002b494", // 𫒔
+ 0x2b495: "\xa7\x06\U0002b495", // 𫒕
+ 0x2b496: "\xa7\x06\U0002b496", // 𫒖
+ 0x2b497: "\xa7\x06\U0002b497", // 𫒗
+ 0x2b498: "\xa7\x06\U0002b498", // 𫒘
+ 0x2b499: "\xa7\x06\U0002b499", // 𫒙
+ 0x2b49a: "\xa7\x06\U0002b49a", // 𫒚
+ 0x2b49b: "\xa7\x06\U0002b49b", // 𫒛
+ 0x2b49c: "\xa7\x06\U0002b49c", // 𫒜
+ 0x2b49d: "\xa7\a\U0002b49d", // 𫒝
+ 0x2b49e: "\xa7\a\U0002b49e", // 𫒞
+ 0x2b49f: "\xa7\a\U0002b49f", // 𫒟
+ 0x2b4a0: "\xa7\a\U0002b4a0", // 𫒠
+ 0x2b4a1: "\xa7\a\U0002b4a1", // 𫒡
+ 0x2b4a2: "\xa7\a\U0002b4a2", // 𫒢
+ 0x2b4a3: "\xa7\a\U0002b4a3", // 𫒣
+ 0x2b4a4: "\xa7\a\U0002b4a4", // 𫒤
+ 0x2b4a5: "\xa7\a\U0002b4a5", // 𫒥
+ 0x2b4a6: "\xa7\b\U0002b4a6", // 𫒦
+ 0x2b4a7: "\xa7\b\U0002b4a7", // 𫒧
+ 0x2b4a8: "\xa7\b\U0002b4a8", // 𫒨
+ 0x2b4a9: "\xa7\b\U0002b4a9", // 𫒩
+ 0x2b4aa: "\xa7\b\U0002b4aa", // 𫒪
+ 0x2b4ab: "\xa7\b\U0002b4ab", // 𫒫
+ 0x2b4ac: "\xa7\b\U0002b4ac", // 𫒬
+ 0x2b4ad: "\xa7\b\U0002b4ad", // 𫒭
+ 0x2b4ae: "\xa7\b\U0002b4ae", // 𫒮
+ 0x2b4af: "\xa7\b\U0002b4af", // 𫒯
+ 0x2b4b0: "\xa7\t\U0002b4b0", // 𫒰
+ 0x2b4b1: "\xa7\t\U0002b4b1", // 𫒱
+ 0x2b4b2: "\xa7\t\U0002b4b2", // 𫒲
+ 0x2b4b3: "\xa7\t\U0002b4b3", // 𫒳
+ 0x2b4b4: "\xa7\t\U0002b4b4", // 𫒴
+ 0x2b4b5: "\xa7\t\U0002b4b5", // 𫒵
+ 0x2b4b6: "\xa7\t\U0002b4b6", // 𫒶
+ 0x2b4b7: "\xa7\t\U0002b4b7", // 𫒷
+ 0x2b4b8: "\xa7\n\U0002b4b8", // 𫒸
+ 0x2b4b9: "\xa7\n\U0002b4b9", // 𫒹
+ 0x2b4ba: "\xa7\n\U0002b4ba", // 𫒺
+ 0x2b4bb: "\xa7\n\U0002b4bb", // 𫒻
+ 0x2b4bc: "\xa7\n\U0002b4bc", // 𫒼
+ 0x2b4bd: "\xa7\n\U0002b4bd", // 𫒽
+ 0x2b4be: "\xa7\n\U0002b4be", // 𫒾
+ 0x2b4bf: "\xa7\v\U0002b4bf", // 𫒿
+ 0x2b4c0: "\xa7\v\U0002b4c0", // 𫓀
+ 0x2b4c1: "\xa7\v\U0002b4c1", // 𫓁
+ 0x2b4c2: "\xa7\v\U0002b4c2", // 𫓂
+ 0x2b4c3: "\xa7\v\U0002b4c3", // 𫓃
+ 0x2b4c4: "\xa7\f\U0002b4c4", // 𫓄
+ 0x2b4c5: "\xa7\f\U0002b4c5", // 𫓅
+ 0x2b4c6: "\xa7\f\U0002b4c6", // 𫓆
+ 0x2b4c7: "\xa7\f\U0002b4c7", // 𫓇
+ 0x2b4c8: "\xa7\f\U0002b4c8", // 𫓈
+ 0x2b4c9: "\xa7\f\U0002b4c9", // 𫓉
+ 0x2b4ca: "\xa7\f\U0002b4ca", // 𫓊
+ 0x2b4cb: "\xa7\f\U0002b4cb", // 𫓋
+ 0x2b4cc: "\xa7\f\U0002b4cc", // 𫓌
+ 0x2b4cd: "\xa7\f\U0002b4cd", // 𫓍
+ 0x2b4ce: "\xa7\f\U0002b4ce", // 𫓎
+ 0x2b4cf: "\xa7\r\U0002b4cf", // 𫓏
+ 0x2b4d0: "\xa7\r\U0002b4d0", // 𫓐
+ 0x2b4d1: "\xa7\r\U0002b4d1", // 𫓑
+ 0x2b4d2: "\xa7\r\U0002b4d2", // 𫓒
+ 0x2b4d3: "\xa7\r\U0002b4d3", // 𫓓
+ 0x2b4d4: "\xa7\r\U0002b4d4", // 𫓔
+ 0x2b4d5: "\xa7\r\U0002b4d5", // 𫓕
+ 0x2b4d6: "\xa7\x0e\U0002b4d6", // 𫓖
+ 0x2b4d7: "\xa7\x0e\U0002b4d7", // 𫓗
+ 0x2b4d8: "\xa7\x0e\U0002b4d8", // 𫓘
+ 0x2b4d9: "\xa7\x0e\U0002b4d9", // 𫓙
+ 0x2b4da: "\xa7\x0e\U0002b4da", // 𫓚
+ 0x2b4db: "\xa7\x0f\U0002b4db", // 𫓛
+ 0x2b4dc: "\xa7\x0f\U0002b4dc", // 𫓜
+ 0x2b4dd: "\xa7\x10\U0002b4dd", // 𫓝
+ 0x2b4de: "\xa7\x10\U0002b4de", // 𫓞
+ 0x2b4df: "\xa7\x10\U0002b4df", // 𫓟
+ 0x2b4e0: "\xa7\x11\U0002b4e0", // 𫓠
+ 0x2b4e1: "\xa7\x11\U0002b4e1", // 𫓡
+ 0x2b4e2: "\xa7\x11\U0002b4e2", // 𫓢
+ 0x2b4e3: "\xa7\x12\U0002b4e3", // 𫓣
+ 0x2b4e4: "\xa7\x13\U0002b4e4", // 𫓤
+ 0x2b4e5: "\xa7\x02\U0002b4e5", // 𫓥
+ 0x2b4e6: "\xa7\x03\U0002b4e6", // 𫓦
+ 0x2b4e7: "\xa7\x04\U0002b4e7", // 𫓧
+ 0x2b4e8: "\xa7\x04\U0002b4e8", // 𫓨
+ 0x2b4e9: "\xa7\x04\U0002b4e9", // 𫓩
+ 0x2b4ea: "\xa7\x04\U0002b4ea", // 𫓪
+ 0x2b4eb: "\xa7\x04\U0002b4eb", // 𫓫
+ 0x2b4ec: "\xa7\x05\U0002b4ec", // 𫓬
+ 0x2b4ed: "\xa7\x05\U0002b4ed", // 𫓭
+ 0x2b4ee: "\xa7\x05\U0002b4ee", // 𫓮
+ 0x2b4ef: "\xa7\x06\U0002b4ef", // 𫓯
+ 0x2b4f0: "\xa7\x06\U0002b4f0", // 𫓰
+ 0x2b4f1: "\xa7\x06\U0002b4f1", // 𫓱
+ 0x2b4f2: "\xa7\x06\U0002b4f2", // 𫓲
+ 0x2b4f3: "\xa7\x06\U0002b4f3", // 𫓳
+ 0x2b4f4: "\xa7\x06\U0002b4f4", // 𫓴
+ 0x2b4f5: "\xa7\a\U0002b4f5", // 𫓵
+ 0x2b4f6: "\xa7\a\U0002b4f6", // 𫓶
+ 0x2b4f7: "\xa7\a\U0002b4f7", // 𫓷
+ 0x2b4f8: "\xa7\b\U0002b4f8", // 𫓸
+ 0x2b4f9: "\xa7\b\U0002b4f9", // 𫓹
+ 0x2b4fa: "\xa7\b\U0002b4fa", // 𫓺
+ 0x2b4fb: "\xa7\b\U0002b4fb", // 𫓻
+ 0x2b4fc: "\xa7\b\U0002b4fc", // 𫓼
+ 0x2b4fd: "\xa7\b\U0002b4fd", // 𫓽
+ 0x2b4fe: "\xa7\b\U0002b4fe", // 𫓾
+ 0x2b4ff: "\xa7\b\U0002b4ff", // 𫓿
+ 0x2b500: "\xa7\t\U0002b500", // 𫔀
+ 0x2b501: "\xa7\t\U0002b501", // 𫔁
+ 0x2b502: "\xa7\t\U0002b502", // 𫔂
+ 0x2b503: "\xa7\t\U0002b503", // 𫔃
+ 0x2b504: "\xa7\t\U0002b504", // 𫔄
+ 0x2b505: "\xa7\n\U0002b505", // 𫔅
+ 0x2b506: "\xa7\n\U0002b506", // 𫔆
+ 0x2b507: "\xa7\n\U0002b507", // 𫔇
+ 0x2b508: "\xa7\n\U0002b508", // 𫔈
+ 0x2b509: "\xa7\v\U0002b509", // 𫔉
+ 0x2b50a: "\xa7\v\U0002b50a", // 𫔊
+ 0x2b50b: "\xa7\f\U0002b50b", // 𫔋
+ 0x2b50c: "\xa7\f\U0002b50c", // 𫔌
+ 0x2b50d: "\xa7\f\U0002b50d", // 𫔍
+ 0x2b50e: "\xa7\f\U0002b50e", // 𫔎
+ 0x2b50f: "\xa7\f\U0002b50f", // 𫔏
+ 0x2b510: "\xa7\r\U0002b510", // 𫔐
+ 0x2b511: "\xa7\r\U0002b511", // 𫔑
+ 0x2b512: "\xa7\x0e\U0002b512", // 𫔒
+ 0x2b513: "\xa7\x10\U0002b513", // 𫔓
+ 0x2b514: "\xa7\x12\U0002b514", // 𫔔
+ 0x2b515: "\xa7\x13\U0002b515", // 𫔕
+ 0x2b516: "\xa8\x06\U0002b516", // 𫔖
+ 0x2b517: "\xa8\b\U0002b517", // 𫔗
+ 0x2b518: "\xa9\x01\U0002b518", // 𫔘
+ 0x2b519: "\xa9\x03\U0002b519", // 𫔙
+ 0x2b51a: "\xa9\x04\U0002b51a", // 𫔚
+ 0x2b51b: "\xa9\x04\U0002b51b", // 𫔛
+ 0x2b51c: "\xa9\x05\U0002b51c", // 𫔜
+ 0x2b51d: "\xa9\x05\U0002b51d", // 𫔝
+ 0x2b51e: "\xa9\x05\U0002b51e", // 𫔞
+ 0x2b51f: "\xa9\x05\U0002b51f", // 𫔟
+ 0x2b520: "\xa9\x05\U0002b520", // 𫔠
+ 0x2b521: "\xa9\a\U0002b521", // 𫔡
+ 0x2b522: "\xa9\a\U0002b522", // 𫔢
+ 0x2b523: "\xa9\a\U0002b523", // 𫔣
+ 0x2b524: "\xa9\a\U0002b524", // 𫔤
+ 0x2b525: "\xa9\b\U0002b525", // 𫔥
+ 0x2b526: "\xa9\b\U0002b526", // 𫔦
+ 0x2b527: "\xa9\b\U0002b527", // 𫔧
+ 0x2b528: "\xa9\t\U0002b528", // 𫔨
+ 0x2b529: "\xa9\v\U0002b529", // 𫔩
+ 0x2b52a: "\xa9\r\U0002b52a", // 𫔪
+ 0x2b52b: "\xa9\x11\U0002b52b", // 𫔫
+ 0x2b52c: "\xa9\x03\U0002b52c", // 𫔬
+ 0x2b52d: "\xa9\x04\U0002b52d", // 𫔭
+ 0x2b52e: "\xa9\x04\U0002b52e", // 𫔮
+ 0x2b52f: "\xa9\x04\U0002b52f", // 𫔯
+ 0x2b530: "\xa9\x05\U0002b530", // 𫔰
+ 0x2b531: "\xa9\x06\U0002b531", // 𫔱
+ 0x2b532: "\xa9\a\U0002b532", // 𫔲
+ 0x2b533: "\xa9\a\U0002b533", // 𫔳
+ 0x2b534: "\xa9\b\U0002b534", // 𫔴
+ 0x2b535: "\xa9\n\U0002b535", // 𫔵
+ 0x2b536: "\xa9\n\U0002b536", // 𫔶
+ 0x2b537: "\xa9\v\U0002b537", // 𫔷
+ 0x2b538: "\xa9\v\U0002b538", // 𫔸
+ 0x2b539: "\xa9\x0e\U0002b539", // 𫔹
+ 0x2b53a: "\xaa\x03\U0002b53a", // 𫔺
+ 0x2b53b: "\xaa\x04\U0002b53b", // 𫔻
+ 0x2b53c: "\xaa\x05\U0002b53c", // 𫔼
+ 0x2b53d: "\xaa\x05\U0002b53d", // 𫔽
+ 0x2b53e: "\xaa\x06\U0002b53e", // 𫔾
+ 0x2b53f: "\xaa\x06\U0002b53f", // 𫔿
+ 0x2b540: "\xaa\x06\U0002b540", // 𫕀
+ 0x2b541: "\xaa\a\U0002b541", // 𫕁
+ 0x2b542: "\xaa\a\U0002b542", // 𫕂
+ 0x2b543: "\xaa\a\U0002b543", // 𫕃
+ 0x2b544: "\xaa\b\U0002b544", // 𫕄
+ 0x2b545: "\xaa\b\U0002b545", // 𫕅
+ 0x2b546: "\xaa\t\U0002b546", // 𫕆
+ 0x2b547: "\xaa\t\U0002b547", // 𫕇
+ 0x2b548: "\xaa\t\U0002b548", // 𫕈
+ 0x2b549: "\xaa\t\U0002b549", // 𫕉
+ 0x2b54a: "\xaa\t\U0002b54a", // 𫕊
+ 0x2b54b: "\xaa\t\U0002b54b", // 𫕋
+ 0x2b54c: "\xaa\t\U0002b54c", // 𫕌
+ 0x2b54d: "\xaa\t\U0002b54d", // 𫕍
+ 0x2b54e: "\xaa\n\U0002b54e", // 𫕎
+ 0x2b54f: "\xaa\n\U0002b54f", // 𫕏
+ 0x2b550: "\xaa\v\U0002b550", // 𫕐
+ 0x2b551: "\xaa\v\U0002b551", // 𫕑
+ 0x2b552: "\xaa\v\U0002b552", // 𫕒
+ 0x2b553: "\xaa\v\U0002b553", // 𫕓
+ 0x2b554: "\xaa\f\U0002b554", // 𫕔
+ 0x2b555: "\xaa\f\U0002b555", // 𫕕
+ 0x2b556: "\xaa\f\U0002b556", // 𫕖
+ 0x2b557: "\xaa\f\U0002b557", // 𫕗
+ 0x2b558: "\xaa\x10\U0002b558", // 𫕘
+ 0x2b559: "\xab\a\U0002b559", // 𫕙
+ 0x2b55a: "\xac\x04\U0002b55a", // 𫕚
+ 0x2b55b: "\xac\x06\U0002b55b", // 𫕛
+ 0x2b55c: "\xac\n\U0002b55c", // 𫕜
+ 0x2b55d: "\xad\x02\U0002b55d", // 𫕝
+ 0x2b55e: "\xad\x03\U0002b55e", // 𫕞
+ 0x2b55f: "\xad\x04\U0002b55f", // 𫕟
+ 0x2b560: "\xad\x04\U0002b560", // 𫕠
+ 0x2b561: "\xad\x05\U0002b561", // 𫕡
+ 0x2b562: "\xad\x05\U0002b562", // 𫕢
+ 0x2b563: "\xad\x06\U0002b563", // 𫕣
+ 0x2b564: "\xad\x06\U0002b564", // 𫕤
+ 0x2b565: "\xad\a\U0002b565", // 𫕥
+ 0x2b566: "\xad\a\U0002b566", // 𫕦
+ 0x2b567: "\xad\b\U0002b567", // 𫕧
+ 0x2b568: "\xad\b\U0002b568", // 𫕨
+ 0x2b569: "\xad\t\U0002b569", // 𫕩
+ 0x2b56a: "\xad\t\U0002b56a", // 𫕪
+ 0x2b56b: "\xad\n\U0002b56b", // 𫕫
+ 0x2b56c: "\xad\v\U0002b56c", // 𫕬
+ 0x2b56d: "\xad\v\U0002b56d", // 𫕭
+ 0x2b56e: "\xad\f\U0002b56e", // 𫕮
+ 0x2b56f: "\xad\f\U0002b56f", // 𫕯
+ 0x2b570: "\xad\f\U0002b570", // 𫕰
+ 0x2b571: "\xad\f\U0002b571", // 𫕱
+ 0x2b572: "\xad\r\U0002b572", // 𫕲
+ 0x2b573: "\xad\x0e\U0002b573", // 𫕳
+ 0x2b574: "\xad\x0e\U0002b574", // 𫕴
+ 0x2b575: "\xad\x10\U0002b575", // 𫕵
+ 0x2b576: "\xad\x10\U0002b576", // 𫕶
+ 0x2b577: "\xad\x15\U0002b577", // 𫕷
+ 0x2b578: "\xae\x03\U0002b578", // 𫕸
+ 0x2b579: "\xae\x05\U0002b579", // 𫕹
+ 0x2b57a: "\xae\x05\U0002b57a", // 𫕺
+ 0x2b57b: "\xae\b\U0002b57b", // 𫕻
+ 0x2b57c: "\xae\v\U0002b57c", // 𫕼
+ 0x2b57d: "\xaf\x06\U0002b57d", // 𫕽
+ 0x2b57e: "\xaf\r\U0002b57e", // 𫕾
+ 0x2b57f: "\xaf\x11\U0002b57f", // 𫕿
+ 0x2b580: "\xb0\x05\U0002b580", // 𫖀
+ 0x2b581: "\xb0\x06\U0002b581", // 𫖁
+ 0x2b582: "\xb0\a\U0002b582", // 𫖂
+ 0x2b583: "\xb0\t\U0002b583", // 𫖃
+ 0x2b584: "\xb0\f\U0002b584", // 𫖄
+ 0x2b585: "\xb1\x05\U0002b585", // 𫖅
+ 0x2b586: "\xb1\x05\U0002b586", // 𫖆
+ 0x2b587: "\xb1\x06\U0002b587", // 𫖇
+ 0x2b588: "\xb1\x06\U0002b588", // 𫖈
+ 0x2b589: "\xb1\v\U0002b589", // 𫖉
+ 0x2b58a: "\xb1\f\U0002b58a", // 𫖊
+ 0x2b58b: "\xb1\r\U0002b58b", // 𫖋
+ 0x2b58c: "\xb2\x01\U0002b58c", // 𫖌
+ 0x2b58d: "\xb2\x04\U0002b58d", // 𫖍
+ 0x2b58e: "\xb2\b\U0002b58e", // 𫖎
+ 0x2b58f: "\xb2\v\U0002b58f", // 𫖏
+ 0x2b590: "\xb2\x0f\U0002b590", // 𫖐
+ 0x2b591: "\xb2\x04\U0002b591", // 𫖑
+ 0x2b592: "\xb2\x06\U0002b592", // 𫖒
+ 0x2b593: "\xb2\b\U0002b593", // 𫖓
+ 0x2b594: "\xb2\n\U0002b594", // 𫖔
+ 0x2b595: "\xb2\n\U0002b595", // 𫖕
+ 0x2b596: "\xb2\f\U0002b596", // 𫖖
+ 0x2b597: "\xb4\x04\U0002b597", // 𫖗
+ 0x2b598: "\xb4\x05\U0002b598", // 𫖘
+ 0x2b599: "\xb4\t\U0002b599", // 𫖙
+ 0x2b59a: "\xb4\v\U0002b59a", // 𫖚
+ 0x2b59b: "\xb4\f\U0002b59b", // 𫖛
+ 0x2b59c: "\xb4\x10\U0002b59c", // 𫖜
+ 0x2b59d: "\xb5\x04\U0002b59d", // 𫖝
+ 0x2b59e: "\xb5\x05\U0002b59e", // 𫖞
+ 0x2b59f: "\xb5\a\U0002b59f", // 𫖟
+ 0x2b5a0: "\xb5\a\U0002b5a0", // 𫖠
+ 0x2b5a1: "\xb5\b\U0002b5a1", // 𫖡
+ 0x2b5a2: "\xb5\t\U0002b5a2", // 𫖢
+ 0x2b5a3: "\xb5\t\U0002b5a3", // 𫖣
+ 0x2b5a4: "\xb5\n\U0002b5a4", // 𫖤
+ 0x2b5a5: "\xb5\v\U0002b5a5", // 𫖥
+ 0x2b5a6: "\xb5\v\U0002b5a6", // 𫖦
+ 0x2b5a7: "\xb5\f\U0002b5a7", // 𫖧
+ 0x2b5a8: "\xb5\r\U0002b5a8", // 𫖨
+ 0x2b5a9: "\xb5\x0f\U0002b5a9", // 𫖩
+ 0x2b5aa: "\xb5\x03\U0002b5aa", // 𫖪
+ 0x2b5ab: "\xb5\x04\U0002b5ab", // 𫖫
+ 0x2b5ac: "\xb5\x05\U0002b5ac", // 𫖬
+ 0x2b5ad: "\xb5\x05\U0002b5ad", // 𫖭
+ 0x2b5ae: "\xb5\x06\U0002b5ae", // 𫖮
+ 0x2b5af: "\xb5\x06\U0002b5af", // 𫖯
+ 0x2b5b0: "\xb5\x06\U0002b5b0", // 𫖰
+ 0x2b5b1: "\xb5\x06\U0002b5b1", // 𫖱
+ 0x2b5b2: "\xb5\a\U0002b5b2", // 𫖲
+ 0x2b5b3: "\xb5\a\U0002b5b3", // 𫖳
+ 0x2b5b4: "\xb5\b\U0002b5b4", // 𫖴
+ 0x2b5b5: "\xb5\b\U0002b5b5", // 𫖵
+ 0x2b5b6: "\xb5\b\U0002b5b6", // 𫖶
+ 0x2b5b7: "\xb5\t\U0002b5b7", // 𫖷
+ 0x2b5b8: "\xb5\n\U0002b5b8", // 𫖸
+ 0x2b5b9: "\xb5\v\U0002b5b9", // 𫖹
+ 0x2b5ba: "\xb5\x0f\U0002b5ba", // 𫖺
+ 0x2b5bb: "\xb6\x04\U0002b5bb", // 𫖻
+ 0x2b5bc: "\xb6\x05\U0002b5bc", // 𫖼
+ 0x2b5bd: "\xb6\b\U0002b5bd", // 𫖽
+ 0x2b5be: "\xb6\t\U0002b5be", // 𫖾
+ 0x2b5bf: "\xb6\t\U0002b5bf", // 𫖿
+ 0x2b5c0: "\xb6\n\U0002b5c0", // 𫗀
+ 0x2b5c1: "\xb6\n\U0002b5c1", // 𫗁
+ 0x2b5c2: "\xb6\n\U0002b5c2", // 𫗂
+ 0x2b5c3: "\xb6\r\U0002b5c3", // 𫗃
+ 0x2b5c4: "\xb6\r\U0002b5c4", // 𫗄
+ 0x2b5c5: "\xb6\x0e\U0002b5c5", // 𫗅
+ 0x2b5c6: "\xb6\x0f\U0002b5c6", // 𫗆
+ 0x2b5c7: "\xb6\x04\U0002b5c7", // 𫗇
+ 0x2b5c8: "\xb6\a\U0002b5c8", // 𫗈
+ 0x2b5c9: "\xb6\b\U0002b5c9", // 𫗉
+ 0x2b5ca: "\xb6\t\U0002b5ca", // 𫗊
+ 0x2b5cb: "\xb6\r\U0002b5cb", // 𫗋
+ 0x2b5cc: "\xb7\b\U0002b5cc", // 𫗌
+ 0x2b5cd: "\xb8\x04\U0002b5cd", // 𫗍
+ 0x2b5ce: "\xb8\x05\U0002b5ce", // 𫗎
+ 0x2b5cf: "\xb8\x06\U0002b5cf", // 𫗏
+ 0x2b5d0: "\xb8\x06\U0002b5d0", // 𫗐
+ 0x2b5d1: "\xb8\x06\U0002b5d1", // 𫗑
+ 0x2b5d2: "\xb8\x06\U0002b5d2", // 𫗒
+ 0x2b5d3: "\xb8\a\U0002b5d3", // 𫗓
+ 0x2b5d4: "\xb8\t\U0002b5d4", // 𫗔
+ 0x2b5d5: "\xb8\t\U0002b5d5", // 𫗕
+ 0x2b5d6: "\xb8\t\U0002b5d6", // 𫗖
+ 0x2b5d7: "\xb8\t\U0002b5d7", // 𫗗
+ 0x2b5d8: "\xb8\n\U0002b5d8", // 𫗘
+ 0x2b5d9: "\xb8\v\U0002b5d9", // 𫗙
+ 0x2b5da: "\xb8\v\U0002b5da", // 𫗚
+ 0x2b5db: "\xb8\f\U0002b5db", // 𫗛
+ 0x2b5dc: "\xb8\x0e\U0002b5dc", // 𫗜
+ 0x2b5dd: "\xb8\x0e\U0002b5dd", // 𫗝
+ 0x2b5de: "\xb8\x03\U0002b5de", // 𫗞
+ 0x2b5df: "\xb8\x04\U0002b5df", // 𫗟
+ 0x2b5e0: "\xb8\x04\U0002b5e0", // 𫗠
+ 0x2b5e1: "\xb8\x05\U0002b5e1", // 𫗡
+ 0x2b5e2: "\xb8\x05\U0002b5e2", // 𫗢
+ 0x2b5e3: "\xb8\x05\U0002b5e3", // 𫗣
+ 0x2b5e4: "\xb8\x06\U0002b5e4", // 𫗤
+ 0x2b5e5: "\xb8\x06\U0002b5e5", // 𫗥
+ 0x2b5e6: "\xb8\a\U0002b5e6", // 𫗦
+ 0x2b5e7: "\xb8\a\U0002b5e7", // 𫗧
+ 0x2b5e8: "\xb8\a\U0002b5e8", // 𫗨
+ 0x2b5e9: "\xb8\b\U0002b5e9", // 𫗩
+ 0x2b5ea: "\xb8\b\U0002b5ea", // 𫗪
+ 0x2b5eb: "\xb8\t\U0002b5eb", // 𫗫
+ 0x2b5ec: "\xb8\t\U0002b5ec", // 𫗬
+ 0x2b5ed: "\xb8\t\U0002b5ed", // 𫗭
+ 0x2b5ee: "\xb8\t\U0002b5ee", // 𫗮
+ 0x2b5ef: "\xb8\t\U0002b5ef", // 𫗯
+ 0x2b5f0: "\xb8\n\U0002b5f0", // 𫗰
+ 0x2b5f1: "\xb8\n\U0002b5f1", // 𫗱
+ 0x2b5f2: "\xb8\f\U0002b5f2", // 𫗲
+ 0x2b5f3: "\xb8\f\U0002b5f3", // 𫗳
+ 0x2b5f4: "\xb8\r\U0002b5f4", // 𫗴
+ 0x2b5f5: "\xb8\x11\U0002b5f5", // 𫗵
+ 0x2b5f6: "\xb9\x05\U0002b5f6", // 𫗶
+ 0x2b5f7: "\xb9\a\U0002b5f7", // 𫗷
+ 0x2b5f8: "\xb9\b\U0002b5f8", // 𫗸
+ 0x2b5f9: "\xb9\n\U0002b5f9", // 𫗹
+ 0x2b5fa: "\xb9\v\U0002b5fa", // 𫗺
+ 0x2b5fb: "\xb9\x0f\U0002b5fb", // 𫗻
+ 0x2b5fc: "\xba\x06\U0002b5fc", // 𫗼
+ 0x2b5fd: "\xba\x06\U0002b5fd", // 𫗽
+ 0x2b5fe: "\xba\b\U0002b5fe", // 𫗾
+ 0x2b5ff: "\xba\t\U0002b5ff", // 𫗿
+ 0x2b600: "\xba\v\U0002b600", // 𫘀
+ 0x2b601: "\xba\v\U0002b601", // 𫘁
+ 0x2b602: "\xba\f\U0002b602", // 𫘂
+ 0x2b603: "\xba\r\U0002b603", // 𫘃
+ 0x2b604: "\xba\x14\U0002b604", // 𫘄
+ 0x2b605: "\xbb\x03\U0002b605", // 𫘅
+ 0x2b606: "\xbb\x04\U0002b606", // 𫘆
+ 0x2b607: "\xbb\x04\U0002b607", // 𫘇
+ 0x2b608: "\xbb\x04\U0002b608", // 𫘈
+ 0x2b609: "\xbb\x04\U0002b609", // 𫘉
+ 0x2b60a: "\xbb\x06\U0002b60a", // 𫘊
+ 0x2b60b: "\xbb\b\U0002b60b", // 𫘋
+ 0x2b60c: "\xbb\b\U0002b60c", // 𫘌
+ 0x2b60d: "\xbb\b\U0002b60d", // 𫘍
+ 0x2b60e: "\xbb\b\U0002b60e", // 𫘎
+ 0x2b60f: "\xbb\t\U0002b60f", // 𫘏
+ 0x2b610: "\xbb\t\U0002b610", // 𫘐
+ 0x2b611: "\xbb\t\U0002b611", // 𫘑
+ 0x2b612: "\xbb\n\U0002b612", // 𫘒
+ 0x2b613: "\xbb\n\U0002b613", // 𫘓
+ 0x2b614: "\xbb\n\U0002b614", // 𫘔
+ 0x2b615: "\xbb\n\U0002b615", // 𫘕
+ 0x2b616: "\xbb\n\U0002b616", // 𫘖
+ 0x2b617: "\xbb\f\U0002b617", // 𫘗
+ 0x2b618: "\xbb\r\U0002b618", // 𫘘
+ 0x2b619: "\xbb\x0e\U0002b619", // 𫘙
+ 0x2b61a: "\xbb\x11\U0002b61a", // 𫘚
+ 0x2b61b: "\xbb\x03\U0002b61b", // 𫘛
+ 0x2b61c: "\xbb\x04\U0002b61c", // 𫘜
+ 0x2b61d: "\xbb\x04\U0002b61d", // 𫘝
+ 0x2b61e: "\xbb\x05\U0002b61e", // 𫘞
+ 0x2b61f: "\xbb\x05\U0002b61f", // 𫘟
+ 0x2b620: "\xbb\x06\U0002b620", // 𫘠
+ 0x2b621: "\xbb\x06\U0002b621", // 𫘡
+ 0x2b622: "\xbb\a\U0002b622", // 𫘢
+ 0x2b623: "\xbb\a\U0002b623", // 𫘣
+ 0x2b624: "\xbb\a\U0002b624", // 𫘤
+ 0x2b625: "\xbb\b\U0002b625", // 𫘥
+ 0x2b626: "\xbb\b\U0002b626", // 𫘦
+ 0x2b627: "\xbb\b\U0002b627", // 𫘧
+ 0x2b628: "\xbb\t\U0002b628", // 𫘨
+ 0x2b629: "\xbb\t\U0002b629", // 𫘩
+ 0x2b62a: "\xbb\n\U0002b62a", // 𫘪
+ 0x2b62b: "\xbb\n\U0002b62b", // 𫘫
+ 0x2b62c: "\xbb\n\U0002b62c", // 𫘬
+ 0x2b62d: "\xbb\v\U0002b62d", // 𫘭
+ 0x2b62e: "\xbb\v\U0002b62e", // 𫘮
+ 0x2b62f: "\xbb\f\U0002b62f", // 𫘯
+ 0x2b630: "\xbb\r\U0002b630", // 𫘰
+ 0x2b631: "\xbb\x12\U0002b631", // 𫘱
+ 0x2b632: "\xbc\x06\U0002b632", // 𫘲
+ 0x2b633: "\xbc\t\U0002b633", // 𫘳
+ 0x2b634: "\xbc\t\U0002b634", // 𫘴
+ 0x2b635: "\xbd\x02\U0002b635", // 𫘵
+ 0x2b636: "\xbd\x05\U0002b636", // 𫘶
+ 0x2b637: "\xbd\x06\U0002b637", // 𫘷
+ 0x2b638: "\xbe\x01\U0002b638", // 𫘸
+ 0x2b639: "\xbe\x03\U0002b639", // 𫘹
+ 0x2b63a: "\xbe\x03\U0002b63a", // 𫘺
+ 0x2b63b: "\xbe\x04\U0002b63b", // 𫘻
+ 0x2b63c: "\xbe\x05\U0002b63c", // 𫘼
+ 0x2b63d: "\xbe\x06\U0002b63d", // 𫘽
+ 0x2b63e: "\xbe\a\U0002b63e", // 𫘾
+ 0x2b63f: "\xbe\a\U0002b63f", // 𫘿
+ 0x2b640: "\xbe\b\U0002b640", // 𫙀
+ 0x2b641: "\xbe\b\U0002b641", // 𫙁
+ 0x2b642: "\xbe\t\U0002b642", // 𫙂
+ 0x2b643: "\xbe\v\U0002b643", // 𫙃
+ 0x2b644: "\xc1\x04\U0002b644", // 𫙄
+ 0x2b645: "\xc1\x05\U0002b645", // 𫙅
+ 0x2b646: "\xc1\v\U0002b646", // 𫙆
+ 0x2b647: "\xc1\x12\U0002b647", // 𫙇
+ 0x2b648: "\xc2\x02\U0002b648", // 𫙈
+ 0x2b649: "\xc2\x04\U0002b649", // 𫙉
+ 0x2b64a: "\xc2\x06\U0002b64a", // 𫙊
+ 0x2b64b: "\xc2\a\U0002b64b", // 𫙋
+ 0x2b64c: "\xc2\b\U0002b64c", // 𫙌
+ 0x2b64d: "\xc2\b\U0002b64d", // 𫙍
+ 0x2b64e: "\xc2\f\U0002b64e", // 𫙎
+ 0x2b64f: "\xc3\x02\U0002b64f", // 𫙏
+ 0x2b650: "\xc3\x03\U0002b650", // 𫙐
+ 0x2b651: "\xc3\x04\U0002b651", // 𫙑
+ 0x2b652: "\xc3\x04\U0002b652", // 𫙒
+ 0x2b653: "\xc3\x05\U0002b653", // 𫙓
+ 0x2b654: "\xc3\x05\U0002b654", // 𫙔
+ 0x2b655: "\xc3\x05\U0002b655", // 𫙕
+ 0x2b656: "\xc3\x05\U0002b656", // 𫙖
+ 0x2b657: "\xc3\x05\U0002b657", // 𫙗
+ 0x2b658: "\xc3\x06\U0002b658", // 𫙘
+ 0x2b659: "\xc3\x06\U0002b659", // 𫙙
+ 0x2b65a: "\xc3\x06\U0002b65a", // 𫙚
+ 0x2b65b: "\xc3\x06\U0002b65b", // 𫙛
+ 0x2b65c: "\xc3\x06\U0002b65c", // 𫙜
+ 0x2b65d: "\xc3\x06\U0002b65d", // 𫙝
+ 0x2b65e: "\xc3\x06\U0002b65e", // 𫙞
+ 0x2b65f: "\xc3\x06\U0002b65f", // 𫙟
+ 0x2b660: "\xc3\a\U0002b660", // 𫙠
+ 0x2b661: "\xc3\a\U0002b661", // 𫙡
+ 0x2b662: "\xc3\a\U0002b662", // 𫙢
+ 0x2b663: "\xc3\a\U0002b663", // 𫙣
+ 0x2b664: "\xc3\b\U0002b664", // 𫙤
+ 0x2b665: "\xc3\b\U0002b665", // 𫙥
+ 0x2b666: "\xc3\b\U0002b666", // 𫙦
+ 0x2b667: "\xc3\b\U0002b667", // 𫙧
+ 0x2b668: "\xc3\t\U0002b668", // 𫙨
+ 0x2b669: "\xc3\t\U0002b669", // 𫙩
+ 0x2b66a: "\xc3\t\U0002b66a", // 𫙪
+ 0x2b66b: "\xc3\n\U0002b66b", // 𫙫
+ 0x2b66c: "\xc3\n\U0002b66c", // 𫙬
+ 0x2b66d: "\xc3\n\U0002b66d", // 𫙭
+ 0x2b66e: "\xc3\n\U0002b66e", // 𫙮
+ 0x2b66f: "\xc3\n\U0002b66f", // 𫙯
+ 0x2b670: "\xc3\v\U0002b670", // 𫙰
+ 0x2b671: "\xc3\v\U0002b671", // 𫙱
+ 0x2b672: "\xc3\v\U0002b672", // 𫙲
+ 0x2b673: "\xc3\v\U0002b673", // 𫙳
+ 0x2b674: "\xc3\v\U0002b674", // 𫙴
+ 0x2b675: "\xc3\v\U0002b675", // 𫙵
+ 0x2b676: "\xc3\v\U0002b676", // 𫙶
+ 0x2b677: "\xc3\f\U0002b677", // 𫙷
+ 0x2b678: "\xc3\f\U0002b678", // 𫙸
+ 0x2b679: "\xc3\f\U0002b679", // 𫙹
+ 0x2b67a: "\xc3\f\U0002b67a", // 𫙺
+ 0x2b67b: "\xc3\f\U0002b67b", // 𫙻
+ 0x2b67c: "\xc3\f\U0002b67c", // 𫙼
+ 0x2b67d: "\xc3\r\U0002b67d", // 𫙽
+ 0x2b67e: "\xc3\r\U0002b67e", // 𫙾
+ 0x2b67f: "\xc3\r\U0002b67f", // 𫙿
+ 0x2b680: "\xc3\r\U0002b680", // 𫚀
+ 0x2b681: "\xc3\r\U0002b681", // 𫚁
+ 0x2b682: "\xc3\x0e\U0002b682", // 𫚂
+ 0x2b683: "\xc3\x0e\U0002b683", // 𫚃
+ 0x2b684: "\xc3\x0f\U0002b684", // 𫚄
+ 0x2b685: "\xc3\x11\U0002b685", // 𫚅
+ 0x2b686: "\xc3\x13\U0002b686", // 𫚆
+ 0x2b687: "\xc3\x15\U0002b687", // 𫚇
+ 0x2b688: "\xc3\x03\U0002b688", // 𫚈
+ 0x2b689: "\xc3\x03\U0002b689", // 𫚉
+ 0x2b68a: "\xc3\x03\U0002b68a", // 𫚊
+ 0x2b68b: "\xc3\x04\U0002b68b", // 𫚋
+ 0x2b68c: "\xc3\x04\U0002b68c", // 𫚌
+ 0x2b68d: "\xc3\x04\U0002b68d", // 𫚍
+ 0x2b68e: "\xc3\x05\U0002b68e", // 𫚎
+ 0x2b68f: "\xc3\x05\U0002b68f", // 𫚏
+ 0x2b690: "\xc3\x05\U0002b690", // 𫚐
+ 0x2b691: "\xc3\x05\U0002b691", // 𫚑
+ 0x2b692: "\xc3\x05\U0002b692", // 𫚒
+ 0x2b693: "\xc3\x06\U0002b693", // 𫚓
+ 0x2b694: "\xc3\x06\U0002b694", // 𫚔
+ 0x2b695: "\xc3\x06\U0002b695", // 𫚕
+ 0x2b696: "\xc3\x06\U0002b696", // 𫚖
+ 0x2b697: "\xc3\x06\U0002b697", // 𫚗
+ 0x2b698: "\xc3\x06\U0002b698", // 𫚘
+ 0x2b699: "\xc3\a\U0002b699", // 𫚙
+ 0x2b69a: "\xc3\a\U0002b69a", // 𫚚
+ 0x2b69b: "\xc3\a\U0002b69b", // 𫚛
+ 0x2b69c: "\xc3\b\U0002b69c", // 𫚜
+ 0x2b69d: "\xc3\b\U0002b69d", // 𫚝
+ 0x2b69e: "\xc3\b\U0002b69e", // 𫚞
+ 0x2b69f: "\xc3\b\U0002b69f", // 𫚟
+ 0x2b6a0: "\xc3\b\U0002b6a0", // 𫚠
+ 0x2b6a1: "\xc3\b\U0002b6a1", // 𫚡
+ 0x2b6a2: "\xc3\t\U0002b6a2", // 𫚢
+ 0x2b6a3: "\xc3\t\U0002b6a3", // 𫚣
+ 0x2b6a4: "\xc3\t\U0002b6a4", // 𫚤
+ 0x2b6a5: "\xc3\t\U0002b6a5", // 𫚥
+ 0x2b6a6: "\xc3\n\U0002b6a6", // 𫚦
+ 0x2b6a7: "\xc3\v\U0002b6a7", // 𫚧
+ 0x2b6a8: "\xc3\v\U0002b6a8", // 𫚨
+ 0x2b6a9: "\xc3\f\U0002b6a9", // 𫚩
+ 0x2b6aa: "\xc3\f\U0002b6aa", // 𫚪
+ 0x2b6ab: "\xc3\r\U0002b6ab", // 𫚫
+ 0x2b6ac: "\xc3\x0e\U0002b6ac", // 𫚬
+ 0x2b6ad: "\xc3\x0f\U0002b6ad", // 𫚭
+ 0x2b6ae: "\xc4\x01\U0002b6ae", // 𫚮
+ 0x2b6af: "\xc4\x04\U0002b6af", // 𫚯
+ 0x2b6b0: "\xc4\x04\U0002b6b0", // 𫚰
+ 0x2b6b1: "\xc4\x04\U0002b6b1", // 𫚱
+ 0x2b6b2: "\xc4\x04\U0002b6b2", // 𫚲
+ 0x2b6b3: "\xc4\x05\U0002b6b3", // 𫚳
+ 0x2b6b4: "\xc4\x05\U0002b6b4", // 𫚴
+ 0x2b6b5: "\xc4\x05\U0002b6b5", // 𫚵
+ 0x2b6b6: "\xc4\x05\U0002b6b6", // 𫚶
+ 0x2b6b7: "\xc4\x05\U0002b6b7", // 𫚷
+ 0x2b6b8: "\xc4\x06\U0002b6b8", // 𫚸
+ 0x2b6b9: "\xc4\x06\U0002b6b9", // 𫚹
+ 0x2b6ba: "\xc4\x06\U0002b6ba", // 𫚺
+ 0x2b6bb: "\xc4\x06\U0002b6bb", // 𫚻
+ 0x2b6bc: "\xc4\a\U0002b6bc", // 𫚼
+ 0x2b6bd: "\xc4\a\U0002b6bd", // 𫚽
+ 0x2b6be: "\xc4\a\U0002b6be", // 𫚾
+ 0x2b6bf: "\xc4\a\U0002b6bf", // 𫚿
+ 0x2b6c0: "\xc4\a\U0002b6c0", // 𫛀
+ 0x2b6c1: "\xc4\b\U0002b6c1", // 𫛁
+ 0x2b6c2: "\xc4\b\U0002b6c2", // 𫛂
+ 0x2b6c3: "\xc4\b\U0002b6c3", // 𫛃
+ 0x2b6c4: "\xc4\b\U0002b6c4", // 𫛄
+ 0x2b6c5: "\xc4\b\U0002b6c5", // 𫛅
+ 0x2b6c6: "\xc4\b\U0002b6c6", // 𫛆
+ 0x2b6c7: "\xc4\b\U0002b6c7", // 𫛇
+ 0x2b6c8: "\xc4\b\U0002b6c8", // 𫛈
+ 0x2b6c9: "\xc4\t\U0002b6c9", // 𫛉
+ 0x2b6ca: "\xc4\t\U0002b6ca", // 𫛊
+ 0x2b6cb: "\xc4\t\U0002b6cb", // 𫛋
+ 0x2b6cc: "\xc4\n\U0002b6cc", // 𫛌
+ 0x2b6cd: "\xc4\n\U0002b6cd", // 𫛍
+ 0x2b6ce: "\xc4\n\U0002b6ce", // 𫛎
+ 0x2b6cf: "\xc4\n\U0002b6cf", // 𫛏
+ 0x2b6d0: "\xc4\v\U0002b6d0", // 𫛐
+ 0x2b6d1: "\xc4\f\U0002b6d1", // 𫛑
+ 0x2b6d2: "\xc4\f\U0002b6d2", // 𫛒
+ 0x2b6d3: "\xc4\f\U0002b6d3", // 𫛓
+ 0x2b6d4: "\xc4\f\U0002b6d4", // 𫛔
+ 0x2b6d5: "\xc4\f\U0002b6d5", // 𫛕
+ 0x2b6d6: "\xc4\r\U0002b6d6", // 𫛖
+ 0x2b6d7: "\xc4\x0e\U0002b6d7", // 𫛗
+ 0x2b6d8: "\xc4\x0f\U0002b6d8", // 𫛘
+ 0x2b6d9: "\xc4\x13\U0002b6d9", // 𫛙
+ 0x2b6da: "\xc4\x04\U0002b6da", // 𫛚
+ 0x2b6db: "\xc4\x04\U0002b6db", // 𫛛
+ 0x2b6dc: "\xc4\x04\U0002b6dc", // 𫛜
+ 0x2b6dd: "\xc4\x04\U0002b6dd", // 𫛝
+ 0x2b6de: "\xc4\x04\U0002b6de", // 𫛞
+ 0x2b6df: "\xc4\x05\U0002b6df", // 𫛟
+ 0x2b6e0: "\xc4\x05\U0002b6e0", // 𫛠
+ 0x2b6e1: "\xc4\x05\U0002b6e1", // 𫛡
+ 0x2b6e2: "\xc4\x05\U0002b6e2", // 𫛢
+ 0x2b6e3: "\xc4\x05\U0002b6e3", // 𫛣
+ 0x2b6e4: "\xc4\x05\U0002b6e4", // 𫛤
+ 0x2b6e5: "\xc4\x06\U0002b6e5", // 𫛥
+ 0x2b6e6: "\xc4\x06\U0002b6e6", // 𫛦
+ 0x2b6e7: "\xc4\x06\U0002b6e7", // 𫛧
+ 0x2b6e8: "\xc4\x06\U0002b6e8", // 𫛨
+ 0x2b6e9: "\xc4\x06\U0002b6e9", // 𫛩
+ 0x2b6ea: "\xc4\x06\U0002b6ea", // 𫛪
+ 0x2b6eb: "\xc4\a\U0002b6eb", // 𫛫
+ 0x2b6ec: "\xc4\a\U0002b6ec", // 𫛬
+ 0x2b6ed: "\xc4\a\U0002b6ed", // 𫛭
+ 0x2b6ee: "\xc4\a\U0002b6ee", // 𫛮
+ 0x2b6ef: "\xc4\a\U0002b6ef", // 𫛯
+ 0x2b6f0: "\xc4\b\U0002b6f0", // 𫛰
+ 0x2b6f1: "\xc4\b\U0002b6f1", // 𫛱
+ 0x2b6f2: "\xc4\b\U0002b6f2", // 𫛲
+ 0x2b6f3: "\xc4\b\U0002b6f3", // 𫛳
+ 0x2b6f4: "\xc4\b\U0002b6f4", // 𫛴
+ 0x2b6f5: "\xc4\b\U0002b6f5", // 𫛵
+ 0x2b6f6: "\xc4\t\U0002b6f6", // 𫛶
+ 0x2b6f7: "\xc4\t\U0002b6f7", // 𫛷
+ 0x2b6f8: "\xc4\t\U0002b6f8", // 𫛸
+ 0x2b6f9: "\xc4\t\U0002b6f9", // 𫛹
+ 0x2b6fa: "\xc4\t\U0002b6fa", // 𫛺
+ 0x2b6fb: "\xc4\t\U0002b6fb", // 𫛻
+ 0x2b6fc: "\xc4\t\U0002b6fc", // 𫛼
+ 0x2b6fd: "\xc4\n\U0002b6fd", // 𫛽
+ 0x2b6fe: "\xc4\n\U0002b6fe", // 𫛾
+ 0x2b6ff: "\xc4\v\U0002b6ff", // 𫛿
+ 0x2b700: "\xc4\v\U0002b700", // 𫜀
+ 0x2b701: "\xc4\v\U0002b701", // 𫜁
+ 0x2b702: "\xc4\v\U0002b702", // 𫜂
+ 0x2b703: "\xc4\f\U0002b703", // 𫜃
+ 0x2b704: "\xc4\f\U0002b704", // 𫜄
+ 0x2b705: "\xc4\r\U0002b705", // 𫜅
+ 0x2b706: "\xc4\x0e\U0002b706", // 𫜆
+ 0x2b707: "\xc5\x06\U0002b707", // 𫜇
+ 0x2b708: "\xc5\a\U0002b708", // 𫜈
+ 0x2b709: "\xc5\t\U0002b709", // 𫜉
+ 0x2b70a: "\xc5\t\U0002b70a", // 𫜊
+ 0x2b70b: "\xc6\x02\U0002b70b", // 𫜋
+ 0x2b70c: "\xc6\x04\U0002b70c", // 𫜌
+ 0x2b70d: "\xc6\x06\U0002b70d", // 𫜍
+ 0x2b70e: "\xc6\a\U0002b70e", // 𫜎
+ 0x2b70f: "\xc6\f\U0002b70f", // 𫜏
+ 0x2b710: "\xc7\b\U0002b710", // 𫜐
+ 0x2b711: "\xc7\x04\U0002b711", // 𫜑
+ 0x2b712: "\xc7\x05\U0002b712", // 𫜒
+ 0x2b713: "\xc7\a\U0002b713", // 𫜓
+ 0x2b714: "\xc7\b\U0002b714", // 𫜔
+ 0x2b715: "\xc7\n\U0002b715", // 𫜕
+ 0x2b716: "\xc8\x06\U0002b716", // 𫜖
+ 0x2b717: "\xc8\b\U0002b717", // 𫜗
+ 0x2b718: "\xc9\x04\U0002b718", // 𫜘
+ 0x2b719: "\xcb\b\U0002b719", // 𫜙
+ 0x2b71a: "\xcb\b\U0002b71a", // 𫜚
+ 0x2b71b: "\xcb\t\U0002b71b", // 𫜛
+ 0x2b71c: "\xcc\x04\U0002b71c", // 𫜜
+ 0x2b71d: "\xcd\x06\U0002b71d", // 𫜝
+ 0x2b71e: "\xcd\f\U0002b71e", // 𫜞
+ 0x2b71f: "\xcd\t\U0002b71f", // 𫜟
+ 0x2b720: "\xce\x03\U0002b720", // 𫜠
+ 0x2b721: "\xce\n\U0002b721", // 𫜡
+ 0x2b722: "\xd0\x01\U0002b722", // 𫜢
+ 0x2b723: "\xd0\f\U0002b723", // 𫜣
+ 0x2b724: "\xd1\x04\U0002b724", // 𫜤
+ 0x2b725: "\xd3\x06\U0002b725", // 𫜥
+ 0x2b726: "\xd3\a\U0002b726", // 𫜦
+ 0x2b727: "\xd3\f\U0002b727", // 𫜧
+ 0x2b728: "\xd3\x04\U0002b728", // 𫜨
+ 0x2b729: "\xd3\x06\U0002b729", // 𫜩
+ 0x2b72a: "\xd3\x06\U0002b72a", // 𫜪
+ 0x2b72b: "\xd3\a\U0002b72b", // 𫜫
+ 0x2b72c: "\xd3\b\U0002b72c", // 𫜬
+ 0x2b72d: "\xd3\b\U0002b72d", // 𫜭
+ 0x2b72e: "\xd3\t\U0002b72e", // 𫜮
+ 0x2b72f: "\xd3\n\U0002b72f", // 𫜯
+ 0x2b730: "\xd3\r\U0002b730", // 𫜰
+ 0x2b731: "\xd4\a\U0002b731", // 𫜱
+ 0x2b732: "\xd4\x06\U0002b732", // 𫜲
+ 0x2b733: "\xd5\x05\U0002b733", // 𫜳
+ 0x2b734: "\xd6\f\U0002b734", // 𫜴
+ 0x2b740: "\x01\x02\U0002b740", // 𫝀
+ 0x2b741: "\x01\x05\U0002b741", // 𫝁
+ 0x2b742: "\x01\x06\U0002b742", // 𫝂
+ 0x2b743: "\x01\r\U0002b743", // 𫝃
+ 0x2b744: "\x04\x02\U0002b744", // 𫝄
+ 0x2b745: "\b\x04\U0002b745", // 𫝅
+ 0x2b746: "\t\x03\U0002b746", // 𫝆
+ 0x2b747: "\t\x06\U0002b747", // 𫝇
+ 0x2b748: "\t\x06\U0002b748", // 𫝈
+ 0x2b749: "\t\b\U0002b749", // 𫝉
+ 0x2b74a: "\t\t\U0002b74a", // 𫝊
+ 0x2b74b: "\t\v\U0002b74b", // 𫝋
+ 0x2b74c: "\n\a\U0002b74c", // 𫝌
+ 0x2b74d: "\r\a\U0002b74d", // 𫝍
+ 0x2b74e: "\x0f\a\U0002b74e", // 𫝎
+ 0x2b74f: "\x0f\t\U0002b74f", // 𫝏
+ 0x2b750: "\x12\a\U0002b750", // 𫝐
+ 0x2b751: "\x13\v\U0002b751", // 𫝑
+ 0x2b752: "\x18\x05\U0002b752", // 𫝒
+ 0x2b753: "\x18\x06\U0002b753", // 𫝓
+ 0x2b754: "\x18\a\U0002b754", // 𫝔
+ 0x2b755: "\x1b\x05\U0002b755", // 𫝕
+ 0x2b756: "\x1b\b\U0002b756", // 𫝖
+ 0x2b757: "\x1b\b\U0002b757", // 𫝗
+ 0x2b758: "\x1e\x03\U0002b758", // 𫝘
+ 0x2b759: "\x1e\x06\U0002b759", // 𫝙
+ 0x2b75a: "\x1e\v\U0002b75a", // 𫝚
+ 0x2b75b: "\x1e\f\U0002b75b", // 𫝛
+ 0x2b75c: "\x1e\x0e\U0002b75c", // 𫝜
+ 0x2b75d: "\x1e\x0f\U0002b75d", // 𫝝
+ 0x2b75e: "\x1e\x13\U0002b75e", // 𫝞
+ 0x2b75f: " \t\U0002b75f", // 𫝟
+ 0x2b760: " \v\U0002b760", // 𫝠
+ 0x2b761: " \r\U0002b761", // 𫝡
+ 0x2b762: "$\x03\U0002b762", // 𫝢
+ 0x2b763: "$\x04\U0002b763", // 𫝣
+ 0x2b764: "%\a\U0002b764", // 𫝤
+ 0x2b765: "%\r\U0002b765", // 𫝥
+ 0x2b766: "&\x04\U0002b766", // 𫝦
+ 0x2b767: "&\x06\U0002b767", // 𫝧
+ 0x2b768: "&\x06\U0002b768", // 𫝨
+ 0x2b769: "&\a\U0002b769", // 𫝩
+ 0x2b76a: "&\a\U0002b76a", // 𫝪
+ 0x2b76b: "&\a\U0002b76b", // 𫝫
+ 0x2b76c: "&\t\U0002b76c", // 𫝬
+ 0x2b76d: "&\v\U0002b76d", // 𫝭
+ 0x2b76e: "&\f\U0002b76e", // 𫝮
+ 0x2b76f: "'\f\U0002b76f", // 𫝯
+ 0x2b770: "(\v\U0002b770", // 𫝰
+ 0x2b771: "(\f\U0002b771", // 𫝱
+ 0x2b772: ",\x03\U0002b772", // 𫝲
+ 0x2b773: ".\x03\U0002b773", // 𫝳
+ 0x2b774: ".\x06\U0002b774", // 𫝴
+ 0x2b775: ".\a\U0002b775", // 𫝵
+ 0x2b776: "5\b\U0002b776", // 𫝶
+ 0x2b777: "5\b\U0002b777", // 𫝷
+ 0x2b778: ";\x06\U0002b778", // 𫝸
+ 0x2b779: "=\x04\U0002b779", // 𫝹
+ 0x2b77a: "@\x05\U0002b77a", // 𫝺
+ 0x2b77b: "@\x06\U0002b77b", // 𫝻
+ 0x2b77c: "@\t\U0002b77c", // 𫝼
+ 0x2b77d: "@\n\U0002b77d", // 𫝽
+ 0x2b77e: "@\v\U0002b77e", // 𫝾
+ 0x2b77f: "@\x0f\U0002b77f", // 𫝿
+ 0x2b780: "F\a\U0002b780", // 𫞀
+ 0x2b781: "F\t\U0002b781", // 𫞁
+ 0x2b782: "H\x05\U0002b782", // 𫞂
+ 0x2b783: "H\x05\U0002b783", // 𫞃
+ 0x2b784: "H\x06\U0002b784", // 𫞄
+ 0x2b785: "J\x06\U0002b785", // 𫞅
+ 0x2b786: "J\b\U0002b786", // 𫞆
+ 0x2b787: "J\b\U0002b787", // 𫞇
+ 0x2b788: "K\x04\U0002b788", // 𫞈
+ 0x2b789: "K\x06\U0002b789", // 𫞉
+ 0x2b78a: "K\x06\U0002b78a", // 𫞊
+ 0x2b78b: "K\n\U0002b78b", // 𫞋
+ 0x2b78c: "K\n\U0002b78c", // 𫞌
+ 0x2b78d: "K\v\U0002b78d", // 𫞍
+ 0x2b78e: "K\v\U0002b78e", // 𫞎
+ 0x2b78f: "K\v\U0002b78f", // 𫞏
+ 0x2b790: "K\f\U0002b790", // 𫞐
+ 0x2b791: "K\r\U0002b791", // 𫞑
+ 0x2b792: "K\x0e\U0002b792", // 𫞒
+ 0x2b793: "M\t\U0002b793", // 𫞓
+ 0x2b794: "N\v\U0002b794", // 𫞔
+ 0x2b795: "S\x01\U0002b795", // 𫞕
+ 0x2b796: "S\x02\U0002b796", // 𫞖
+ 0x2b797: "U\a\U0002b797", // 𫞗
+ 0x2b798: "U\b\U0002b798", // 𫞘
+ 0x2b799: "U\n\U0002b799", // 𫞙
+ 0x2b79a: "U\n\U0002b79a", // 𫞚
+ 0x2b79b: "U\n\U0002b79b", // 𫞛
+ 0x2b79c: "U\f\U0002b79c", // 𫞜
+ 0x2b79d: "U\r\U0002b79d", // 𫞝
+ 0x2b79e: "U\x10\U0002b79e", // 𫞞
+ 0x2b79f: "V\x06\U0002b79f", // 𫞟
+ 0x2b7a0: "V\a\U0002b7a0", // 𫞠
+ 0x2b7a1: "V\n\U0002b7a1", // 𫞡
+ 0x2b7a2: "]\x05\U0002b7a2", // 𫞢
+ 0x2b7a3: "^\x05\U0002b7a3", // 𫞣
+ 0x2b7a4: "^\b\U0002b7a4", // 𫞤
+ 0x2b7a5: "`\x04\U0002b7a5", // 𫞥
+ 0x2b7a6: "`\x06\U0002b7a6", // 𫞦
+ 0x2b7a7: "`\b\U0002b7a7", // 𫞧
+ 0x2b7a8: "`\n\U0002b7a8", // 𫞨
+ 0x2b7a9: "`\v\U0002b7a9", // 𫞩
+ 0x2b7aa: "c\x04\U0002b7aa", // 𫞪
+ 0x2b7ab: "f\x06\U0002b7ab", // 𫞫
+ 0x2b7ac: "h\x05\U0002b7ac", // 𫞬
+ 0x2b7ad: "h\n\U0002b7ad", // 𫞭
+ 0x2b7ae: "j\x05\U0002b7ae", // 𫞮
+ 0x2b7af: "l\x03\U0002b7af", // 𫞯
+ 0x2b7b0: "l\x04\U0002b7b0", // 𫞰
+ 0x2b7b1: "l\b\U0002b7b1", // 𫞱
+ 0x2b7b2: "m\x05\U0002b7b2", // 𫞲
+ 0x2b7b3: "m\x06\U0002b7b3", // 𫞳
+ 0x2b7b4: "q\x06\U0002b7b4", // 𫞴
+ 0x2b7b5: "q\a\U0002b7b5", // 𫞵
+ 0x2b7b6: "q\f\U0002b7b6", // 𫞶
+ 0x2b7b7: "s\x06\U0002b7b7", // 𫞷
+ 0x2b7b8: "s\b\U0002b7b8", // 𫞸
+ 0x2b7b9: "t\x02\U0002b7b9", // 𫞹
+ 0x2b7ba: "t\x11\U0002b7ba", // 𫞺
+ 0x2b7bb: "u\x02\U0002b7bb", // 𫞻
+ 0x2b7bc: "u\x06\U0002b7bc", // 𫞼
+ 0x2b7bd: "v\t\U0002b7bd", // 𫞽
+ 0x2b7be: "v\t\U0002b7be", // 𫞾
+ 0x2b7bf: "v\t\U0002b7bf", // 𫞿
+ 0x2b7c0: "w\v\U0002b7c0", // 𫟀
+ 0x2b7c1: "x\t\U0002b7c1", // 𫟁
+ 0x2b7c2: "x\f\U0002b7c2", // 𫟂
+ 0x2b7c3: "x\x06\U0002b7c3", // 𫟃
+ 0x2b7c4: "x\a\U0002b7c4", // 𫟄
+ 0x2b7c5: "x\b\U0002b7c5", // 𫟅
+ 0x2b7c6: "x\t\U0002b7c6", // 𫟆
+ 0x2b7c7: "x\x0e\U0002b7c7", // 𫟇
+ 0x2b7c8: "{\x03\U0002b7c8", // 𫟈
+ 0x2b7c9: "\x80\x02\U0002b7c9", // 𫟉
+ 0x2b7ca: "\x82\n\U0002b7ca", // 𫟊
+ 0x2b7cb: "\x86\x06\U0002b7cb", // 𫟋
+ 0x2b7cc: "\x8c\x05\U0002b7cc", // 𫟌
+ 0x2b7cd: "\x8c\x05\U0002b7cd", // 𫟍
+ 0x2b7ce: "\x8c\x06\U0002b7ce", // 𫟎
+ 0x2b7cf: "\x8c\a\U0002b7cf", // 𫟏
+ 0x2b7d0: "\x8c\a\U0002b7d0", // 𫟐
+ 0x2b7d1: "\x8c\a\U0002b7d1", // 𫟑
+ 0x2b7d2: "\x8c\t\U0002b7d2", // 𫟒
+ 0x2b7d3: "\x8c\t\U0002b7d3", // 𫟓
+ 0x2b7d4: "\x8c\n\U0002b7d4", // 𫟔
+ 0x2b7d5: "\x8c\v\U0002b7d5", // 𫟕
+ 0x2b7d6: "\x8c\f\U0002b7d6", // 𫟖
+ 0x2b7d7: "\x8e\x0e\U0002b7d7", // 𫟗
+ 0x2b7d8: "\x90\t\U0002b7d8", // 𫟘
+ 0x2b7d9: "\x90\v\U0002b7d9", // 𫟙
+ 0x2b7da: "\x91\a\U0002b7da", // 𫟚
+ 0x2b7db: "\x92\x06\U0002b7db", // 𫟛
+ 0x2b7dc: "\x93\x10\U0002b7dc", // 𫟜
+ 0x2b7dd: "\x95\x0f\U0002b7dd", // 𫟝
+ 0x2b7de: "\x95\x04\U0002b7de", // 𫟞
+ 0x2b7df: "\x95\x05\U0002b7df", // 𫟟
+ 0x2b7e0: "\x95\b\U0002b7e0", // 𫟠
+ 0x2b7e1: "\x95\b\U0002b7e1", // 𫟡
+ 0x2b7e2: "\x95\n\U0002b7e2", // 𫟢
+ 0x2b7e3: "\x9d\f\U0002b7e3", // 𫟣
+ 0x2b7e4: "\x9f\x05\U0002b7e4", // 𫟤
+ 0x2b7e5: "\x9f\n\U0002b7e5", // 𫟥
+ 0x2b7e6: "\x9f\r\U0002b7e6", // 𫟦
+ 0x2b7e7: "\xa2\x02\U0002b7e7", // 𫟧
+ 0x2b7e8: "\xa2\t\U0002b7e8", // 𫟨
+ 0x2b7e9: "\xa2\t\U0002b7e9", // 𫟩
+ 0x2b7ea: "\xa2\r\U0002b7ea", // 𫟪
+ 0x2b7eb: "\xa3\x05\U0002b7eb", // 𫟫
+ 0x2b7ec: "\xa3\b\U0002b7ec", // 𫟬
+ 0x2b7ed: "\xa3\t\U0002b7ed", // 𫟭
+ 0x2b7ee: "\xa4\x06\U0002b7ee", // 𫟮
+ 0x2b7ef: "\xa6\x02\U0002b7ef", // 𫟯
+ 0x2b7f0: "\xa7\x06\U0002b7f0", // 𫟰
+ 0x2b7f1: "\xa7\n\U0002b7f1", // 𫟱
+ 0x2b7f2: "\xa7\x02\U0002b7f2", // 𫟲
+ 0x2b7f3: "\xa7\x03\U0002b7f3", // 𫟳
+ 0x2b7f4: "\xa7\x04\U0002b7f4", // 𫟴
+ 0x2b7f5: "\xa7\x04\U0002b7f5", // 𫟵
+ 0x2b7f6: "\xa7\x05\U0002b7f6", // 𫟶
+ 0x2b7f7: "\xa7\x05\U0002b7f7", // 𫟷
+ 0x2b7f8: "\xa7\x06\U0002b7f8", // 𫟸
+ 0x2b7f9: "\xa7\x06\U0002b7f9", // 𫟹
+ 0x2b7fa: "\xa7\x06\U0002b7fa", // 𫟺
+ 0x2b7fb: "\xa7\x06\U0002b7fb", // 𫟻
+ 0x2b7fc: "\xa7\a\U0002b7fc", // 𫟼
+ 0x2b7fd: "\xa7\b\U0002b7fd", // 𫟽
+ 0x2b7fe: "\xa7\t\U0002b7fe", // 𫟾
+ 0x2b7ff: "\xa7\t\U0002b7ff", // 𫟿
+ 0x2b800: "\xa7\n\U0002b800", // 𫠀
+ 0x2b801: "\xa7\x0e\U0002b801", // 𫠁
+ 0x2b802: "\xa9\x05\U0002b802", // 𫠂
+ 0x2b803: "\xaa\t\U0002b803", // 𫠃
+ 0x2b804: "\xb2\x06\U0002b804", // 𫠄
+ 0x2b805: "\xb2\t\U0002b805", // 𫠅
+ 0x2b806: "\xb5\x04\U0002b806", // 𫠆
+ 0x2b807: "\xb6\x04\U0002b807", // 𫠇
+ 0x2b808: "\xb6\x05\U0002b808", // 𫠈
+ 0x2b809: "\xbb\x00\U0002b809", // 𫠉
+ 0x2b80a: "\xbb\x05\U0002b80a", // 𫠊
+ 0x2b80b: "\xbb\v\U0002b80b", // 𫠋
+ 0x2b80c: "\xbb\r\U0002b80c", // 𫠌
+ 0x2b80d: "\xc3\n\U0002b80d", // 𫠍
+ 0x2b80e: "\xc3\r\U0002b80e", // 𫠎
+ 0x2b80f: "\xc3\x04\U0002b80f", // 𫠏
+ 0x2b810: "\xc3\x05\U0002b810", // 𫠐
+ 0x2b811: "\xc3\t\U0002b811", // 𫠑
+ 0x2b812: "\xc3\v\U0002b812", // 𫠒
+ 0x2b813: "\xc4\x00\U0002b813", // 𫠓
+ 0x2b814: "\xc4\x05\U0002b814", // 𫠔
+ 0x2b815: "\xc4\v\U0002b815", // 𫠕
+ 0x2b816: "\xc4\x04\U0002b816", // 𫠖
+ 0x2b817: "\xc5\b\U0002b817", // 𫠗
+ 0x2b818: "\xd0\x05\U0002b818", // 𫠘
+ 0x2b819: "\xd3\x04\U0002b819", // 𫠙
+ 0x2b81a: "\xd3\x05\U0002b81a", // 𫠚
+ 0x2b81b: "\xd3\t\U0002b81b", // 𫠛
+ 0x2b81c: "\xd3\b\U0002b81c", // 𫠜
+ 0x2b81d: "\xd5\f\U0002b81d", // 𫠝
+ 0x2b820: "\x01\x01\U0002b820", // 𫠠
+ 0x2b821: "\x01\x03\U0002b821", // 𫠡
+ 0x2b822: "\x01\x04\U0002b822", // 𫠢
+ 0x2b823: "\x01\x04\U0002b823", // 𫠣
+ 0x2b824: "\x01\x05\U0002b824", // 𫠤
+ 0x2b825: "\x01\x05\U0002b825", // 𫠥
+ 0x2b826: "\x01\x06\U0002b826", // 𫠦
+ 0x2b827: "\x01\x06\U0002b827", // 𫠧
+ 0x2b828: "\x01\x06\U0002b828", // 𫠨
+ 0x2b829: "\x01\x06\U0002b829", // 𫠩
+ 0x2b82a: "\x01\a\U0002b82a", // 𫠪
+ 0x2b82b: "\x01\a\U0002b82b", // 𫠫
+ 0x2b82c: "\x01\a\U0002b82c", // 𫠬
+ 0x2b82d: "\x01\a\U0002b82d", // 𫠭
+ 0x2b82e: "\x01\b\U0002b82e", // 𫠮
+ 0x2b82f: "\x01\t\U0002b82f", // 𫠯
+ 0x2b830: "\x01\t\U0002b830", // 𫠰
+ 0x2b831: "\x01\t\U0002b831", // 𫠱
+ 0x2b832: "\x01\t\U0002b832", // 𫠲
+ 0x2b833: "\x01\n\U0002b833", // 𫠳
+ 0x2b834: "\x01\n\U0002b834", // 𫠴
+ 0x2b835: "\x01\n\U0002b835", // 𫠵
+ 0x2b836: "\x01\v\U0002b836", // 𫠶
+ 0x2b837: "\x01\f\U0002b837", // 𫠷
+ 0x2b838: "\x01\f\U0002b838", // 𫠸
+ 0x2b839: "\x01\f\U0002b839", // 𫠹
+ 0x2b83a: "\x01\f\U0002b83a", // 𫠺
+ 0x2b83b: "\x01\f\U0002b83b", // 𫠻
+ 0x2b83c: "\x01\r\U0002b83c", // 𫠼
+ 0x2b83d: "\x01\r\U0002b83d", // 𫠽
+ 0x2b83e: "\x01\x0e\U0002b83e", // 𫠾
+ 0x2b83f: "\x01\x0e\U0002b83f", // 𫠿
+ 0x2b840: "\x01\x0f\U0002b840", // 𫡀
+ 0x2b841: "\x01\x11\U0002b841", // 𫡁
+ 0x2b842: "\x01\x11\U0002b842", // 𫡂
+ 0x2b843: "\x02\x02\U0002b843", // 𫡃
+ 0x2b844: "\x02\x02\U0002b844", // 𫡄
+ 0x2b845: "\x02\x03\U0002b845", // 𫡅
+ 0x2b846: "\x02\x06\U0002b846", // 𫡆
+ 0x2b847: "\x02\a\U0002b847", // 𫡇
+ 0x2b848: "\x02\t\U0002b848", // 𫡈
+ 0x2b849: "\x02\t\U0002b849", // 𫡉
+ 0x2b84a: "\x02\r\U0002b84a", // 𫡊
+ 0x2b84b: "\x02\x0e\U0002b84b", // 𫡋
+ 0x2b84c: "\x02\x0e\U0002b84c", // 𫡌
+ 0x2b84d: "\x02\x13\U0002b84d", // 𫡍
+ 0x2b84e: "\x02\x15\U0002b84e", // 𫡎
+ 0x2b84f: "\x04\x02\U0002b84f", // 𫡏
+ 0x2b850: "\x04\x04\U0002b850", // 𫡐
+ 0x2b851: "\x04\x05\U0002b851", // 𫡑
+ 0x2b852: "\x04\x05\U0002b852", // 𫡒
+ 0x2b853: "\x04\x05\U0002b853", // 𫡓
+ 0x2b854: "\x04\x06\U0002b854", // 𫡔
+ 0x2b855: "\x04\a\U0002b855", // 𫡕
+ 0x2b856: "\x04\a\U0002b856", // 𫡖
+ 0x2b857: "\x04\a\U0002b857", // 𫡗
+ 0x2b858: "\x04\a\U0002b858", // 𫡘
+ 0x2b859: "\x04\b\U0002b859", // 𫡙
+ 0x2b85a: "\x04\b\U0002b85a", // 𫡚
+ 0x2b85b: "\x04\t\U0002b85b", // 𫡛
+ 0x2b85c: "\x04\t\U0002b85c", // 𫡜
+ 0x2b85d: "\x04\n\U0002b85d", // 𫡝
+ 0x2b85e: "\x04\v\U0002b85e", // 𫡞
+ 0x2b85f: "\x04\x0e\U0002b85f", // 𫡟
+ 0x2b860: "\x04\x0e\U0002b860", // 𫡠
+ 0x2b861: "\x04\x1b\U0002b861", // 𫡡
+ 0x2b862: "\x05\x03\U0002b862", // 𫡢
+ 0x2b863: "\x05\x04\U0002b863", // 𫡣
+ 0x2b864: "\x05\x05\U0002b864", // 𫡤
+ 0x2b865: "\x05\x06\U0002b865", // 𫡥
+ 0x2b866: "\x05\x06\U0002b866", // 𫡦
+ 0x2b867: "\x05\x06\U0002b867", // 𫡧
+ 0x2b868: "\x05\a\U0002b868", // 𫡨
+ 0x2b869: "\x05\b\U0002b869", // 𫡩
+ 0x2b86a: "\x05\t\U0002b86a", // 𫡪
+ 0x2b86b: "\x05\t\U0002b86b", // 𫡫
+ 0x2b86c: "\x05\t\U0002b86c", // 𫡬
+ 0x2b86d: "\x05\n\U0002b86d", // 𫡭
+ 0x2b86e: "\x05\n\U0002b86e", // 𫡮
+ 0x2b86f: "\x05\f\U0002b86f", // 𫡯
+ 0x2b870: "\x05\f\U0002b870", // 𫡰
+ 0x2b871: "\a\x04\U0002b871", // 𫡱
+ 0x2b872: "\a\x05\U0002b872", // 𫡲
+ 0x2b873: "\a\x06\U0002b873", // 𫡳
+ 0x2b874: "\a\t\U0002b874", // 𫡴
+ 0x2b875: "\a\v\U0002b875", // 𫡵
+ 0x2b876: "\a\v\U0002b876", // 𫡶
+ 0x2b877: "\a\f\U0002b877", // 𫡷
+ 0x2b878: "\a\x0e\U0002b878", // 𫡸
+ 0x2b879: "\a\x0e\U0002b879", // 𫡹
+ 0x2b87a: "\b\x05\U0002b87a", // 𫡺
+ 0x2b87b: "\b\b\U0002b87b", // 𫡻
+ 0x2b87c: "\b\n\U0002b87c", // 𫡼
+ 0x2b87d: "\b\v\U0002b87d", // 𫡽
+ 0x2b87e: "\b\v\U0002b87e", // 𫡾
+ 0x2b87f: "\b\f\U0002b87f", // 𫡿
+ 0x2b880: "\b\f\U0002b880", // 𫢀
+ 0x2b881: "\b\x0f\U0002b881", // 𫢁
+ 0x2b882: "\b\x0f\U0002b882", // 𫢂
+ 0x2b883: "\b\x12\U0002b883", // 𫢃
+ 0x2b884: "\b\x14\U0002b884", // 𫢄
+ 0x2b885: "\t\x01\U0002b885", // 𫢅
+ 0x2b886: "\t\x02\U0002b886", // 𫢆
+ 0x2b887: "\t\x02\U0002b887", // 𫢇
+ 0x2b888: "\t\x02\U0002b888", // 𫢈
+ 0x2b889: "\t\x03\U0002b889", // 𫢉
+ 0x2b88a: "\t\x03\U0002b88a", // 𫢊
+ 0x2b88b: "\t\x04\U0002b88b", // 𫢋
+ 0x2b88c: "\t\x04\U0002b88c", // 𫢌
+ 0x2b88d: "\t\x04\U0002b88d", // 𫢍
+ 0x2b88e: "\t\x04\U0002b88e", // 𫢎
+ 0x2b88f: "\t\x04\U0002b88f", // 𫢏
+ 0x2b890: "\t\x04\U0002b890", // 𫢐
+ 0x2b891: "\t\x05\U0002b891", // 𫢑
+ 0x2b892: "\t\x05\U0002b892", // 𫢒
+ 0x2b893: "\t\x05\U0002b893", // 𫢓
+ 0x2b894: "\t\x05\U0002b894", // 𫢔
+ 0x2b895: "\t\x05\U0002b895", // 𫢕
+ 0x2b896: "\t\x05\U0002b896", // 𫢖
+ 0x2b897: "\t\x05\U0002b897", // 𫢗
+ 0x2b898: "\t\x05\U0002b898", // 𫢘
+ 0x2b899: "\t\x06\U0002b899", // 𫢙
+ 0x2b89a: "\t\x06\U0002b89a", // 𫢚
+ 0x2b89b: "\t\x06\U0002b89b", // 𫢛
+ 0x2b89c: "\t\x06\U0002b89c", // 𫢜
+ 0x2b89d: "\t\x06\U0002b89d", // 𫢝
+ 0x2b89e: "\t\a\U0002b89e", // 𫢞
+ 0x2b89f: "\t\a\U0002b89f", // 𫢟
+ 0x2b8a0: "\t\a\U0002b8a0", // 𫢠
+ 0x2b8a1: "\t\a\U0002b8a1", // 𫢡
+ 0x2b8a2: "\t\a\U0002b8a2", // 𫢢
+ 0x2b8a3: "\t\a\U0002b8a3", // 𫢣
+ 0x2b8a4: "\t\a\U0002b8a4", // 𫢤
+ 0x2b8a5: "\t\a\U0002b8a5", // 𫢥
+ 0x2b8a6: "\t\a\U0002b8a6", // 𫢦
+ 0x2b8a7: "\t\a\U0002b8a7", // 𫢧
+ 0x2b8a8: "\t\a\U0002b8a8", // 𫢨
+ 0x2b8a9: "\t\a\U0002b8a9", // 𫢩
+ 0x2b8aa: "\t\b\U0002b8aa", // 𫢪
+ 0x2b8ab: "\t\b\U0002b8ab", // 𫢫
+ 0x2b8ac: "\t\b\U0002b8ac", // 𫢬
+ 0x2b8ad: "\t\b\U0002b8ad", // 𫢭
+ 0x2b8ae: "\t\b\U0002b8ae", // 𫢮
+ 0x2b8af: "\t\b\U0002b8af", // 𫢯
+ 0x2b8b0: "\t\b\U0002b8b0", // 𫢰
+ 0x2b8b1: "\t\b\U0002b8b1", // 𫢱
+ 0x2b8b2: "\t\b\U0002b8b2", // 𫢲
+ 0x2b8b3: "\t\b\U0002b8b3", // 𫢳
+ 0x2b8b4: "\t\b\U0002b8b4", // 𫢴
+ 0x2b8b5: "\t\b\U0002b8b5", // 𫢵
+ 0x2b8b6: "\t\b\U0002b8b6", // 𫢶
+ 0x2b8b7: "\t\b\U0002b8b7", // 𫢷
+ 0x2b8b8: "\t\b\U0002b8b8", // 𫢸
+ 0x2b8b9: "\t\b\U0002b8b9", // 𫢹
+ 0x2b8ba: "\t\b\U0002b8ba", // 𫢺
+ 0x2b8bb: "\t\b\U0002b8bb", // 𫢻
+ 0x2b8bc: "\t\b\U0002b8bc", // 𫢼
+ 0x2b8bd: "\t\t\U0002b8bd", // 𫢽
+ 0x2b8be: "\t\t\U0002b8be", // 𫢾
+ 0x2b8bf: "\t\t\U0002b8bf", // 𫢿
+ 0x2b8c0: "\t\t\U0002b8c0", // 𫣀
+ 0x2b8c1: "\t\t\U0002b8c1", // 𫣁
+ 0x2b8c2: "\t\t\U0002b8c2", // 𫣂
+ 0x2b8c3: "\t\t\U0002b8c3", // 𫣃
+ 0x2b8c4: "\t\n\U0002b8c4", // 𫣄
+ 0x2b8c5: "\t\n\U0002b8c5", // 𫣅
+ 0x2b8c6: "\t\n\U0002b8c6", // 𫣆
+ 0x2b8c7: "\t\n\U0002b8c7", // 𫣇
+ 0x2b8c8: "\t\n\U0002b8c8", // 𫣈
+ 0x2b8c9: "\t\n\U0002b8c9", // 𫣉
+ 0x2b8ca: "\t\n\U0002b8ca", // 𫣊
+ 0x2b8cb: "\t\n\U0002b8cb", // 𫣋
+ 0x2b8cc: "\t\n\U0002b8cc", // 𫣌
+ 0x2b8cd: "\t\n\U0002b8cd", // 𫣍
+ 0x2b8ce: "\t\n\U0002b8ce", // 𫣎
+ 0x2b8cf: "\t\n\U0002b8cf", // 𫣏
+ 0x2b8d0: "\t\n\U0002b8d0", // 𫣐
+ 0x2b8d1: "\t\v\U0002b8d1", // 𫣑
+ 0x2b8d2: "\t\v\U0002b8d2", // 𫣒
+ 0x2b8d3: "\t\v\U0002b8d3", // 𫣓
+ 0x2b8d4: "\t\v\U0002b8d4", // 𫣔
+ 0x2b8d5: "\t\v\U0002b8d5", // 𫣕
+ 0x2b8d6: "\t\v\U0002b8d6", // 𫣖
+ 0x2b8d7: "\t\f\U0002b8d7", // 𫣗
+ 0x2b8d8: "\t\f\U0002b8d8", // 𫣘
+ 0x2b8d9: "\t\f\U0002b8d9", // 𫣙
+ 0x2b8da: "\t\f\U0002b8da", // 𫣚
+ 0x2b8db: "\t\f\U0002b8db", // 𫣛
+ 0x2b8dc: "\t\f\U0002b8dc", // 𫣜
+ 0x2b8dd: "\t\f\U0002b8dd", // 𫣝
+ 0x2b8de: "\t\f\U0002b8de", // 𫣞
+ 0x2b8df: "\t\f\U0002b8df", // 𫣟
+ 0x2b8e0: "\t\f\U0002b8e0", // 𫣠
+ 0x2b8e1: "\t\f\U0002b8e1", // 𫣡
+ 0x2b8e2: "\t\f\U0002b8e2", // 𫣢
+ 0x2b8e3: "\t\r\U0002b8e3", // 𫣣
+ 0x2b8e4: "\t\r\U0002b8e4", // 𫣤
+ 0x2b8e5: "\t\r\U0002b8e5", // 𫣥
+ 0x2b8e6: "\t\r\U0002b8e6", // 𫣦
+ 0x2b8e7: "\t\r\U0002b8e7", // 𫣧
+ 0x2b8e8: "\t\r\U0002b8e8", // 𫣨
+ 0x2b8e9: "\t\r\U0002b8e9", // 𫣩
+ 0x2b8ea: "\t\r\U0002b8ea", // 𫣪
+ 0x2b8eb: "\t\r\U0002b8eb", // 𫣫
+ 0x2b8ec: "\t\r\U0002b8ec", // 𫣬
+ 0x2b8ed: "\t\x0e\U0002b8ed", // 𫣭
+ 0x2b8ee: "\t\x0e\U0002b8ee", // 𫣮
+ 0x2b8ef: "\t\x0e\U0002b8ef", // 𫣯
+ 0x2b8f0: "\t\x0e\U0002b8f0", // 𫣰
+ 0x2b8f1: "\t\x0e\U0002b8f1", // 𫣱
+ 0x2b8f2: "\t\x0f\U0002b8f2", // 𫣲
+ 0x2b8f3: "\t\x0f\U0002b8f3", // 𫣳
+ 0x2b8f4: "\t\x0f\U0002b8f4", // 𫣴
+ 0x2b8f5: "\t\x0f\U0002b8f5", // 𫣵
+ 0x2b8f6: "\t\x0f\U0002b8f6", // 𫣶
+ 0x2b8f7: "\t\x0f\U0002b8f7", // 𫣷
+ 0x2b8f8: "\t\x0f\U0002b8f8", // 𫣸
+ 0x2b8f9: "\t\x10\U0002b8f9", // 𫣹
+ 0x2b8fa: "\t\x10\U0002b8fa", // 𫣺
+ 0x2b8fb: "\t\x10\U0002b8fb", // 𫣻
+ 0x2b8fc: "\t\x10\U0002b8fc", // 𫣼
+ 0x2b8fd: "\t\x10\U0002b8fd", // 𫣽
+ 0x2b8fe: "\t\x10\U0002b8fe", // 𫣾
+ 0x2b8ff: "\t\x10\U0002b8ff", // 𫣿
+ 0x2b900: "\t\x10\U0002b900", // 𫤀
+ 0x2b901: "\t\x10\U0002b901", // 𫤁
+ 0x2b902: "\t\x10\U0002b902", // 𫤂
+ 0x2b903: "\t\x10\U0002b903", // 𫤃
+ 0x2b904: "\t\x11\U0002b904", // 𫤄
+ 0x2b905: "\t\x11\U0002b905", // 𫤅
+ 0x2b906: "\t\x11\U0002b906", // 𫤆
+ 0x2b907: "\t\x11\U0002b907", // 𫤇
+ 0x2b908: "\t\x11\U0002b908", // 𫤈
+ 0x2b909: "\t\x12\U0002b909", // 𫤉
+ 0x2b90a: "\t\x12\U0002b90a", // 𫤊
+ 0x2b90b: "\t\x12\U0002b90b", // 𫤋
+ 0x2b90c: "\t\x13\U0002b90c", // 𫤌
+ 0x2b90d: "\t\x13\U0002b90d", // 𫤍
+ 0x2b90e: "\t\x13\U0002b90e", // 𫤎
+ 0x2b90f: "\t\x13\U0002b90f", // 𫤏
+ 0x2b910: "\t\x13\U0002b910", // 𫤐
+ 0x2b911: "\t\x13\U0002b911", // 𫤑
+ 0x2b912: "\t\x15\U0002b912", // 𫤒
+ 0x2b913: "\t\x15\U0002b913", // 𫤓
+ 0x2b914: "\t\x15\U0002b914", // 𫤔
+ 0x2b915: "\t\x16\U0002b915", // 𫤕
+ 0x2b916: "\t\x17\U0002b916", // 𫤖
+ 0x2b917: "\n\x04\U0002b917", // 𫤗
+ 0x2b918: "\n\x06\U0002b918", // 𫤘
+ 0x2b919: "\n\a\U0002b919", // 𫤙
+ 0x2b91a: "\n\t\U0002b91a", // 𫤚
+ 0x2b91b: "\n\t\U0002b91b", // 𫤛
+ 0x2b91c: "\n\n\U0002b91c", // 𫤜
+ 0x2b91d: "\n\n\U0002b91d", // 𫤝
+ 0x2b91e: "\n\v\U0002b91e", // 𫤞
+ 0x2b91f: "\n\f\U0002b91f", // 𫤟
+ 0x2b920: "\n\f\U0002b920", // 𫤠
+ 0x2b921: "\n\x0f\U0002b921", // 𫤡
+ 0x2b922: "\n\x0f\U0002b922", // 𫤢
+ 0x2b923: "\n\x10\U0002b923", // 𫤣
+ 0x2b924: "\n\x10\U0002b924", // 𫤤
+ 0x2b925: "\n\x10\U0002b925", // 𫤥
+ 0x2b926: "\n\x10\U0002b926", // 𫤦
+ 0x2b927: "\n\x11\U0002b927", // 𫤧
+ 0x2b928: "\n\x14\U0002b928", // 𫤨
+ 0x2b929: "\v\b\U0002b929", // 𫤩
+ 0x2b92a: "\v\n\U0002b92a", // 𫤪
+ 0x2b92b: "\f\x04\U0002b92b", // 𫤫
+ 0x2b92c: "\f\x04\U0002b92c", // 𫤬
+ 0x2b92d: "\f\x06\U0002b92d", // 𫤭
+ 0x2b92e: "\f\b\U0002b92e", // 𫤮
+ 0x2b92f: "\f\b\U0002b92f", // 𫤯
+ 0x2b930: "\f\t\U0002b930", // 𫤰
+ 0x2b931: "\f\n\U0002b931", // 𫤱
+ 0x2b932: "\f\v\U0002b932", // 𫤲
+ 0x2b933: "\f\x10\U0002b933", // 𫤳
+ 0x2b934: "\f\x11\U0002b934", // 𫤴
+ 0x2b935: "\f\x11\U0002b935", // 𫤵
+ 0x2b936: "\f\x17\U0002b936", // 𫤶
+ 0x2b937: "\r\v\U0002b937", // 𫤷
+ 0x2b938: "\x0e\x05\U0002b938", // 𫤸
+ 0x2b939: "\x0e\a\U0002b939", // 𫤹
+ 0x2b93a: "\x0e\a\U0002b93a", // 𫤺
+ 0x2b93b: "\x0e\r\U0002b93b", // 𫤻
+ 0x2b93c: "\x0e\x11\U0002b93c", // 𫤼
+ 0x2b93d: "\x0e\x12\U0002b93d", // 𫤽
+ 0x2b93e: "\x0f\x01\U0002b93e", // 𫤾
+ 0x2b93f: "\x0f\x03\U0002b93f", // 𫤿
+ 0x2b940: "\x0f\x04\U0002b940", // 𫥀
+ 0x2b941: "\x0f\x04\U0002b941", // 𫥁
+ 0x2b942: "\x0f\x04\U0002b942", // 𫥂
+ 0x2b943: "\x0f\x04\U0002b943", // 𫥃
+ 0x2b944: "\x0f\x05\U0002b944", // 𫥄
+ 0x2b945: "\x0f\x05\U0002b945", // 𫥅
+ 0x2b946: "\x0f\x05\U0002b946", // 𫥆
+ 0x2b947: "\x0f\x05\U0002b947", // 𫥇
+ 0x2b948: "\x0f\x05\U0002b948", // 𫥈
+ 0x2b949: "\x0f\x06\U0002b949", // 𫥉
+ 0x2b94a: "\x0f\x06\U0002b94a", // 𫥊
+ 0x2b94b: "\x0f\x06\U0002b94b", // 𫥋
+ 0x2b94c: "\x0f\a\U0002b94c", // 𫥌
+ 0x2b94d: "\x0f\a\U0002b94d", // 𫥍
+ 0x2b94e: "\x0f\a\U0002b94e", // 𫥎
+ 0x2b94f: "\x0f\b\U0002b94f", // 𫥏
+ 0x2b950: "\x0f\b\U0002b950", // 𫥐
+ 0x2b951: "\x0f\t\U0002b951", // 𫥑
+ 0x2b952: "\x0f\t\U0002b952", // 𫥒
+ 0x2b953: "\x0f\t\U0002b953", // 𫥓
+ 0x2b954: "\x0f\t\U0002b954", // 𫥔
+ 0x2b955: "\x0f\n\U0002b955", // 𫥕
+ 0x2b956: "\x0f\n\U0002b956", // 𫥖
+ 0x2b957: "\x0f\v\U0002b957", // 𫥗
+ 0x2b958: "\x0f\v\U0002b958", // 𫥘
+ 0x2b959: "\x0f\f\U0002b959", // 𫥙
+ 0x2b95a: "\x0f\r\U0002b95a", // 𫥚
+ 0x2b95b: "\x0f\r\U0002b95b", // 𫥛
+ 0x2b95c: "\x0f\r\U0002b95c", // 𫥜
+ 0x2b95d: "\x0f\x10\U0002b95d", // 𫥝
+ 0x2b95e: "\x10\x04\U0002b95e", // 𫥞
+ 0x2b95f: "\x10\x04\U0002b95f", // 𫥟
+ 0x2b960: "\x10\b\U0002b960", // 𫥠
+ 0x2b961: "\x10\t\U0002b961", // 𫥡
+ 0x2b962: "\x10\n\U0002b962", // 𫥢
+ 0x2b963: "\x10\v\U0002b963", // 𫥣
+ 0x2b964: "\x11\b\U0002b964", // 𫥤
+ 0x2b965: "\x11\n\U0002b965", // 𫥥
+ 0x2b966: "\x11\n\U0002b966", // 𫥦
+ 0x2b967: "\x11\v\U0002b967", // 𫥧
+ 0x2b968: "\x11\v\U0002b968", // 𫥨
+ 0x2b969: "\x11\v\U0002b969", // 𫥩
+ 0x2b96a: "\x11\f\U0002b96a", // 𫥪
+ 0x2b96b: "\x11\f\U0002b96b", // 𫥫
+ 0x2b96c: "\x11\r\U0002b96c", // 𫥬
+ 0x2b96d: "\x11\x11\U0002b96d", // 𫥭
+ 0x2b96e: "\x11\x11\U0002b96e", // 𫥮
+ 0x2b96f: "\x11\x11\U0002b96f", // 𫥯
+ 0x2b970: "\x12\x03\U0002b970", // 𫥰
+ 0x2b971: "\x12\x03\U0002b971", // 𫥱
+ 0x2b972: "\x12\x04\U0002b972", // 𫥲
+ 0x2b973: "\x12\x04\U0002b973", // 𫥳
+ 0x2b974: "\x12\x04\U0002b974", // 𫥴
+ 0x2b975: "\x12\x05\U0002b975", // 𫥵
+ 0x2b976: "\x12\x05\U0002b976", // 𫥶
+ 0x2b977: "\x12\x05\U0002b977", // 𫥷
+ 0x2b978: "\x12\x05\U0002b978", // 𫥸
+ 0x2b979: "\x12\x05\U0002b979", // 𫥹
+ 0x2b97a: "\x12\x05\U0002b97a", // 𫥺
+ 0x2b97b: "\x12\x05\U0002b97b", // 𫥻
+ 0x2b97c: "\x12\x06\U0002b97c", // 𫥼
+ 0x2b97d: "\x12\x06\U0002b97d", // 𫥽
+ 0x2b97e: "\x12\x06\U0002b97e", // 𫥾
+ 0x2b97f: "\x12\x06\U0002b97f", // 𫥿
+ 0x2b980: "\x12\a\U0002b980", // 𫦀
+ 0x2b981: "\x12\a\U0002b981", // 𫦁
+ 0x2b982: "\x12\b\U0002b982", // 𫦂
+ 0x2b983: "\x12\b\U0002b983", // 𫦃
+ 0x2b984: "\x12\b\U0002b984", // 𫦄
+ 0x2b985: "\x12\b\U0002b985", // 𫦅
+ 0x2b986: "\x12\t\U0002b986", // 𫦆
+ 0x2b987: "\x12\t\U0002b987", // 𫦇
+ 0x2b988: "\x12\t\U0002b988", // 𫦈
+ 0x2b989: "\x12\t\U0002b989", // 𫦉
+ 0x2b98a: "\x12\t\U0002b98a", // 𫦊
+ 0x2b98b: "\x12\t\U0002b98b", // 𫦋
+ 0x2b98c: "\x12\t\U0002b98c", // 𫦌
+ 0x2b98d: "\x12\n\U0002b98d", // 𫦍
+ 0x2b98e: "\x12\n\U0002b98e", // 𫦎
+ 0x2b98f: "\x12\n\U0002b98f", // 𫦏
+ 0x2b990: "\x12\n\U0002b990", // 𫦐
+ 0x2b991: "\x12\n\U0002b991", // 𫦑
+ 0x2b992: "\x12\v\U0002b992", // 𫦒
+ 0x2b993: "\x12\v\U0002b993", // 𫦓
+ 0x2b994: "\x12\v\U0002b994", // 𫦔
+ 0x2b995: "\x12\f\U0002b995", // 𫦕
+ 0x2b996: "\x12\f\U0002b996", // 𫦖
+ 0x2b997: "\x12\f\U0002b997", // 𫦗
+ 0x2b998: "\x12\f\U0002b998", // 𫦘
+ 0x2b999: "\x12\f\U0002b999", // 𫦙
+ 0x2b99a: "\x12\r\U0002b99a", // 𫦚
+ 0x2b99b: "\x12\x0f\U0002b99b", // 𫦛
+ 0x2b99c: "\x12\x10\U0002b99c", // 𫦜
+ 0x2b99d: "\x12\x10\U0002b99d", // 𫦝
+ 0x2b99e: "\x12\x10\U0002b99e", // 𫦞
+ 0x2b99f: "\x12\x11\U0002b99f", // 𫦟
+ 0x2b9a0: "\x12\x11\U0002b9a0", // 𫦠
+ 0x2b9a1: "\x12\x15\U0002b9a1", // 𫦡
+ 0x2b9a2: "\x12\x17\U0002b9a2", // 𫦢
+ 0x2b9a3: "\x12\x18\U0002b9a3", // 𫦣
+ 0x2b9a4: "\x13\x01\U0002b9a4", // 𫦤
+ 0x2b9a5: "\x13\x04\U0002b9a5", // 𫦥
+ 0x2b9a6: "\x13\x05\U0002b9a6", // 𫦦
+ 0x2b9a7: "\x13\x05\U0002b9a7", // 𫦧
+ 0x2b9a8: "\x13\x06\U0002b9a8", // 𫦨
+ 0x2b9a9: "\x13\a\U0002b9a9", // 𫦩
+ 0x2b9aa: "\x13\a\U0002b9aa", // 𫦪
+ 0x2b9ab: "\x13\a\U0002b9ab", // 𫦫
+ 0x2b9ac: "\x13\a\U0002b9ac", // 𫦬
+ 0x2b9ad: "\x13\a\U0002b9ad", // 𫦭
+ 0x2b9ae: "\x13\b\U0002b9ae", // 𫦮
+ 0x2b9af: "\x13\b\U0002b9af", // 𫦯
+ 0x2b9b0: "\x13\b\U0002b9b0", // 𫦰
+ 0x2b9b1: "\x13\b\U0002b9b1", // 𫦱
+ 0x2b9b2: "\x13\b\U0002b9b2", // 𫦲
+ 0x2b9b3: "\x13\t\U0002b9b3", // 𫦳
+ 0x2b9b4: "\x13\n\U0002b9b4", // 𫦴
+ 0x2b9b5: "\x13\n\U0002b9b5", // 𫦵
+ 0x2b9b6: "\x13\v\U0002b9b6", // 𫦶
+ 0x2b9b7: "\x13\v\U0002b9b7", // 𫦷
+ 0x2b9b8: "\x13\f\U0002b9b8", // 𫦸
+ 0x2b9b9: "\x13\r\U0002b9b9", // 𫦹
+ 0x2b9ba: "\x13\r\U0002b9ba", // 𫦺
+ 0x2b9bb: "\x13\x0e\U0002b9bb", // 𫦻
+ 0x2b9bc: "\x13\x0e\U0002b9bc", // 𫦼
+ 0x2b9bd: "\x13\x10\U0002b9bd", // 𫦽
+ 0x2b9be: "\x13\x10\U0002b9be", // 𫦾
+ 0x2b9bf: "\x13\x1f\U0002b9bf", // 𫦿
+ 0x2b9c0: "\x14\x03\U0002b9c0", // 𫧀
+ 0x2b9c1: "\x14\x03\U0002b9c1", // 𫧁
+ 0x2b9c2: "\x14\b\U0002b9c2", // 𫧂
+ 0x2b9c3: "\x14\b\U0002b9c3", // 𫧃
+ 0x2b9c4: "\x14\n\U0002b9c4", // 𫧄
+ 0x2b9c5: "\x14\r\U0002b9c5", // 𫧅
+ 0x2b9c6: "\x14\x0e\U0002b9c6", // 𫧆
+ 0x2b9c7: "\x15\x02\U0002b9c7", // 𫧇
+ 0x2b9c8: "\x15\t\U0002b9c8", // 𫧈
+ 0x2b9c9: "\x15\t\U0002b9c9", // 𫧉
+ 0x2b9ca: "\x15\x11\U0002b9ca", // 𫧊
+ 0x2b9cb: "\x16\x02\U0002b9cb", // 𫧋
+ 0x2b9cc: "\x16\x03\U0002b9cc", // 𫧌
+ 0x2b9cd: "\x16\x04\U0002b9cd", // 𫧍
+ 0x2b9ce: "\x16\x04\U0002b9ce", // 𫧎
+ 0x2b9cf: "\x16\x04\U0002b9cf", // 𫧏
+ 0x2b9d0: "\x16\x05\U0002b9d0", // 𫧐
+ 0x2b9d1: "\x16\x06\U0002b9d1", // 𫧑
+ 0x2b9d2: "\x16\x05\U0002b9d2", // 𫧒
+ 0x2b9d3: "\x16\a\U0002b9d3", // 𫧓
+ 0x2b9d4: "\x16\b\U0002b9d4", // 𫧔
+ 0x2b9d5: "\x16\n\U0002b9d5", // 𫧕
+ 0x2b9d6: "\x16\v\U0002b9d6", // 𫧖
+ 0x2b9d7: "\x16\f\U0002b9d7", // 𫧗
+ 0x2b9d8: "\x16\r\U0002b9d8", // 𫧘
+ 0x2b9d9: "\x16\r\U0002b9d9", // 𫧙
+ 0x2b9da: "\x16\x0e\U0002b9da", // 𫧚
+ 0x2b9db: "\x16\x0f\U0002b9db", // 𫧛
+ 0x2b9dc: "\x16\x0f\U0002b9dc", // 𫧜
+ 0x2b9dd: "\x16\x15\U0002b9dd", // 𫧝
+ 0x2b9de: "\x18\x05\U0002b9de", // 𫧞
+ 0x2b9df: "\x18\x06\U0002b9df", // 𫧟
+ 0x2b9e0: "\x18\x06\U0002b9e0", // 𫧠
+ 0x2b9e1: "\x18\a\U0002b9e1", // 𫧡
+ 0x2b9e2: "\x18\a\U0002b9e2", // 𫧢
+ 0x2b9e3: "\x18\n\U0002b9e3", // 𫧣
+ 0x2b9e4: "\x18\v\U0002b9e4", // 𫧤
+ 0x2b9e5: "\x18\v\U0002b9e5", // 𫧥
+ 0x2b9e6: "\x18\f\U0002b9e6", // 𫧦
+ 0x2b9e7: "\x18\r\U0002b9e7", // 𫧧
+ 0x2b9e8: "\x18\r\U0002b9e8", // 𫧨
+ 0x2b9e9: "\x18\x0f\U0002b9e9", // 𫧩
+ 0x2b9ea: "\x18\x0f\U0002b9ea", // 𫧪
+ 0x2b9eb: "\x18\x0f\U0002b9eb", // 𫧫
+ 0x2b9ec: "\x18\x11\U0002b9ec", // 𫧬
+ 0x2b9ed: "\x18\x13\U0002b9ed", // 𫧭
+ 0x2b9ee: "\x19\x06\U0002b9ee", // 𫧮
+ 0x2b9ef: "\x19\a\U0002b9ef", // 𫧯
+ 0x2b9f0: "\x19\b\U0002b9f0", // 𫧰
+ 0x2b9f1: "\x19\n\U0002b9f1", // 𫧱
+ 0x2b9f2: "\x19\n\U0002b9f2", // 𫧲
+ 0x2b9f3: "\x19\v\U0002b9f3", // 𫧳
+ 0x2b9f4: "\x19\v\U0002b9f4", // 𫧴
+ 0x2b9f5: "\x19\f\U0002b9f5", // 𫧵
+ 0x2b9f6: "\x19\x0e\U0002b9f6", // 𫧶
+ 0x2b9f7: "\x19\x13\U0002b9f7", // 𫧷
+ 0x2b9f8: "\x19\x13\U0002b9f8", // 𫧸
+ 0x2b9f9: "\x1a\x02\U0002b9f9", // 𫧹
+ 0x2b9fa: "\x1a\x04\U0002b9fa", // 𫧺
+ 0x2b9fb: "\x1a\t\U0002b9fb", // 𫧻
+ 0x2b9fc: "\x1a\n\U0002b9fc", // 𫧼
+ 0x2b9fd: "\x1a\v\U0002b9fd", // 𫧽
+ 0x2b9fe: "\x1a\f\U0002b9fe", // 𫧾
+ 0x2b9ff: "\x1a\r\U0002b9ff", // 𫧿
+ 0x2ba00: "\x1a\x0e\U0002ba00", // 𫨀
+ 0x2ba01: "\x1a\x13\U0002ba01", // 𫨁
+ 0x2ba02: "\x1b\x03\U0002ba02", // 𫨂
+ 0x2ba03: "\x1b\x05\U0002ba03", // 𫨃
+ 0x2ba04: "\x1b\x05\U0002ba04", // 𫨄
+ 0x2ba05: "\x1b\x06\U0002ba05", // 𫨅
+ 0x2ba06: "\x1b\x06\U0002ba06", // 𫨆
+ 0x2ba07: "\x1b\x06\U0002ba07", // 𫨇
+ 0x2ba08: "\x1b\x06\U0002ba08", // 𫨈
+ 0x2ba09: "\x1b\a\U0002ba09", // 𫨉
+ 0x2ba0a: "\x1b\a\U0002ba0a", // 𫨊
+ 0x2ba0b: "\x1b\b\U0002ba0b", // 𫨋
+ 0x2ba0c: "\x1b\t\U0002ba0c", // 𫨌
+ 0x2ba0d: "\x1b\t\U0002ba0d", // 𫨍
+ 0x2ba0e: "\x1b\t\U0002ba0e", // 𫨎
+ 0x2ba0f: "\x1b\t\U0002ba0f", // 𫨏
+ 0x2ba10: "\x1b\t\U0002ba10", // 𫨐
+ 0x2ba11: "\x1b\n\U0002ba11", // 𫨑
+ 0x2ba12: "\x1b\n\U0002ba12", // 𫨒
+ 0x2ba13: "\x1b\n\U0002ba13", // 𫨓
+ 0x2ba14: "\x1b\n\U0002ba14", // 𫨔
+ 0x2ba15: "\x1b\n\U0002ba15", // 𫨕
+ 0x2ba16: "\x1b\n\U0002ba16", // 𫨖
+ 0x2ba17: "\x1b\n\U0002ba17", // 𫨗
+ 0x2ba18: "\x1b\v\U0002ba18", // 𫨘
+ 0x2ba19: "\x1b\v\U0002ba19", // 𫨙
+ 0x2ba1a: "\x1b\v\U0002ba1a", // 𫨚
+ 0x2ba1b: "\x1b\v\U0002ba1b", // 𫨛
+ 0x2ba1c: "\x1b\f\U0002ba1c", // 𫨜
+ 0x2ba1d: "\x1b\f\U0002ba1d", // 𫨝
+ 0x2ba1e: "\x1b\r\U0002ba1e", // 𫨞
+ 0x2ba1f: "\x1b\r\U0002ba1f", // 𫨟
+ 0x2ba20: "\x1b\x0e\U0002ba20", // 𫨠
+ 0x2ba21: "\x1b\x0e\U0002ba21", // 𫨡
+ 0x2ba22: "\x1b\x0e\U0002ba22", // 𫨢
+ 0x2ba23: "\x1b\x0f\U0002ba23", // 𫨣
+ 0x2ba24: "\x1b\x12\U0002ba24", // 𫨤
+ 0x2ba25: "\x1b\x16\U0002ba25", // 𫨥
+ 0x2ba26: "\x1c\x02\U0002ba26", // 𫨦
+ 0x2ba27: "\x1c\x05\U0002ba27", // 𫨧
+ 0x2ba28: "\x1c\a\U0002ba28", // 𫨨
+ 0x2ba29: "\x1c\a\U0002ba29", // 𫨩
+ 0x2ba2a: "\x1c\b\U0002ba2a", // 𫨪
+ 0x2ba2b: "\x1c\t\U0002ba2b", // 𫨫
+ 0x2ba2c: "\x1c\v\U0002ba2c", // 𫨬
+ 0x2ba2d: "\x1c\v\U0002ba2d", // 𫨭
+ 0x2ba2e: "\x1c\v\U0002ba2e", // 𫨮
+ 0x2ba2f: "\x1c\x0f\U0002ba2f", // 𫨯
+ 0x2ba30: "\x1c\x0f\U0002ba30", // 𫨰
+ 0x2ba31: "\x1c\x1b\U0002ba31", // 𫨱
+ 0x2ba32: "\x1d\x02\U0002ba32", // 𫨲
+ 0x2ba33: "\x1d\x04\U0002ba33", // 𫨳
+ 0x2ba34: "\x1d\x05\U0002ba34", // 𫨴
+ 0x2ba35: "\x1d\x05\U0002ba35", // 𫨵
+ 0x2ba36: "\x1d\x05\U0002ba36", // 𫨶
+ 0x2ba37: "\x1d\x05\U0002ba37", // 𫨷
+ 0x2ba38: "\x1d\x05\U0002ba38", // 𫨸
+ 0x2ba39: "\x1d\x06\U0002ba39", // 𫨹
+ 0x2ba3a: "\x1d\a\U0002ba3a", // 𫨺
+ 0x2ba3b: "\x1d\a\U0002ba3b", // 𫨻
+ 0x2ba3c: "\x1d\b\U0002ba3c", // 𫨼
+ 0x2ba3d: "\x1d\b\U0002ba3d", // 𫨽
+ 0x2ba3e: "\x1d\b\U0002ba3e", // 𫨾
+ 0x2ba3f: "\x1d\b\U0002ba3f", // 𫨿
+ 0x2ba40: "\x1d\t\U0002ba40", // 𫩀
+ 0x2ba41: "\x1d\t\U0002ba41", // 𫩁
+ 0x2ba42: "\x1d\t\U0002ba42", // 𫩂
+ 0x2ba43: "\x1d\t\U0002ba43", // 𫩃
+ 0x2ba44: "\x1d\n\U0002ba44", // 𫩄
+ 0x2ba45: "\x1d\n\U0002ba45", // 𫩅
+ 0x2ba46: "\x1d\v\U0002ba46", // 𫩆
+ 0x2ba47: "\x1d\v\U0002ba47", // 𫩇
+ 0x2ba48: "\x1d\f\U0002ba48", // 𫩈
+ 0x2ba49: "\x1d\f\U0002ba49", // 𫩉
+ 0x2ba4a: "\x1d\r\U0002ba4a", // 𫩊
+ 0x2ba4b: "\x1d\x0e\U0002ba4b", // 𫩋
+ 0x2ba4c: "\x1d\x0e\U0002ba4c", // 𫩌
+ 0x2ba4d: "\x1d\x0f\U0002ba4d", // 𫩍
+ 0x2ba4e: "\x1d\x0f\U0002ba4e", // 𫩎
+ 0x2ba4f: "\x1e\x01\U0002ba4f", // 𫩏
+ 0x2ba50: "\x1e\x02\U0002ba50", // 𫩐
+ 0x2ba51: "\x1e\x02\U0002ba51", // 𫩑
+ 0x2ba52: "\x1e\x03\U0002ba52", // 𫩒
+ 0x2ba53: "\x1e\x03\U0002ba53", // 𫩓
+ 0x2ba54: "\x1e\x03\U0002ba54", // 𫩔
+ 0x2ba55: "\x1e\x03\U0002ba55", // 𫩕
+ 0x2ba56: "\x1e\x03\U0002ba56", // 𫩖
+ 0x2ba57: "\x1e\x03\U0002ba57", // 𫩗
+ 0x2ba58: "\x1e\x04\U0002ba58", // 𫩘
+ 0x2ba59: "\x1e\x04\U0002ba59", // 𫩙
+ 0x2ba5a: "\x1e\x04\U0002ba5a", // 𫩚
+ 0x2ba5b: "\x1e\x04\U0002ba5b", // 𫩛
+ 0x2ba5c: "\x1e\x04\U0002ba5c", // 𫩜
+ 0x2ba5d: "\x1e\x04\U0002ba5d", // 𫩝
+ 0x2ba5e: "\x1e\x04\U0002ba5e", // 𫩞
+ 0x2ba5f: "\x1e\x05\U0002ba5f", // 𫩟
+ 0x2ba60: "\x1e\x05\U0002ba60", // 𫩠
+ 0x2ba61: "\x1e\x05\U0002ba61", // 𫩡
+ 0x2ba62: "\x1e\x05\U0002ba62", // 𫩢
+ 0x2ba63: "\x1e\x05\U0002ba63", // 𫩣
+ 0x2ba64: "\x1e\x05\U0002ba64", // 𫩤
+ 0x2ba65: "\x1e\x05\U0002ba65", // 𫩥
+ 0x2ba66: "\x1e\x05\U0002ba66", // 𫩦
+ 0x2ba67: "\x1e\x05\U0002ba67", // 𫩧
+ 0x2ba68: "\x1e\x05\U0002ba68", // 𫩨
+ 0x2ba69: "\x1e\x05\U0002ba69", // 𫩩
+ 0x2ba6a: "\x1e\x05\U0002ba6a", // 𫩪
+ 0x2ba6b: "\x1e\x06\U0002ba6b", // 𫩫
+ 0x2ba6c: "\x1e\x06\U0002ba6c", // 𫩬
+ 0x2ba6d: "\x1e\x06\U0002ba6d", // 𫩭
+ 0x2ba6e: "\x1e\x06\U0002ba6e", // 𫩮
+ 0x2ba6f: "\x1e\x06\U0002ba6f", // 𫩯
+ 0x2ba70: "\x1e\x06\U0002ba70", // 𫩰
+ 0x2ba71: "\x1e\x06\U0002ba71", // 𫩱
+ 0x2ba72: "\x1e\x06\U0002ba72", // 𫩲
+ 0x2ba73: "\x1e\x06\U0002ba73", // 𫩳
+ 0x2ba74: "\x1e\x06\U0002ba74", // 𫩴
+ 0x2ba75: "\x1e\x06\U0002ba75", // 𫩵
+ 0x2ba76: "\x1e\x06\U0002ba76", // 𫩶
+ 0x2ba77: "\x1e\x06\U0002ba77", // 𫩷
+ 0x2ba78: "\x1e\x06\U0002ba78", // 𫩸
+ 0x2ba79: "\x1e\x06\U0002ba79", // 𫩹
+ 0x2ba7a: "\x1e\x06\U0002ba7a", // 𫩺
+ 0x2ba7b: "\x1e\x06\U0002ba7b", // 𫩻
+ 0x2ba7c: "\x1e\x06\U0002ba7c", // 𫩼
+ 0x2ba7d: "\x1e\a\U0002ba7d", // 𫩽
+ 0x2ba7e: "\x1e\a\U0002ba7e", // 𫩾
+ 0x2ba7f: "\x1e\a\U0002ba7f", // 𫩿
+ 0x2ba80: "\x1e\a\U0002ba80", // 𫪀
+ 0x2ba81: "\x1e\a\U0002ba81", // 𫪁
+ 0x2ba82: "\x1e\a\U0002ba82", // 𫪂
+ 0x2ba83: "\x1e\a\U0002ba83", // 𫪃
+ 0x2ba84: "\x1e\a\U0002ba84", // 𫪄
+ 0x2ba85: "\x1e\a\U0002ba85", // 𫪅
+ 0x2ba86: "\x1e\a\U0002ba86", // 𫪆
+ 0x2ba87: "\x1e\a\U0002ba87", // 𫪇
+ 0x2ba88: "\x1e\a\U0002ba88", // 𫪈
+ 0x2ba89: "\x1e\a\U0002ba89", // 𫪉
+ 0x2ba8a: "\x1e\a\U0002ba8a", // 𫪊
+ 0x2ba8b: "\x1e\a\U0002ba8b", // 𫪋
+ 0x2ba8c: "\x1e\a\U0002ba8c", // 𫪌
+ 0x2ba8d: "\x1e\a\U0002ba8d", // 𫪍
+ 0x2ba8e: "\x1e\a\U0002ba8e", // 𫪎
+ 0x2ba8f: "\x1e\a\U0002ba8f", // 𫪏
+ 0x2ba90: "\x1e\a\U0002ba90", // 𫪐
+ 0x2ba91: "\x1e\a\U0002ba91", // 𫪑
+ 0x2ba92: "\x1e\b\U0002ba92", // 𫪒
+ 0x2ba93: "\x1e\b\U0002ba93", // 𫪓
+ 0x2ba94: "\x1e\b\U0002ba94", // 𫪔
+ 0x2ba95: "\x1e\b\U0002ba95", // 𫪕
+ 0x2ba96: "\x1e\b\U0002ba96", // 𫪖
+ 0x2ba97: "\x1e\b\U0002ba97", // 𫪗
+ 0x2ba98: "\x1e\b\U0002ba98", // 𫪘
+ 0x2ba99: "\x1e\b\U0002ba99", // 𫪙
+ 0x2ba9a: "\x1e\b\U0002ba9a", // 𫪚
+ 0x2ba9b: "\x1e\b\U0002ba9b", // 𫪛
+ 0x2ba9c: "\x1e\b\U0002ba9c", // 𫪜
+ 0x2ba9d: "\x1e\b\U0002ba9d", // 𫪝
+ 0x2ba9e: "\x1e\b\U0002ba9e", // 𫪞
+ 0x2ba9f: "\x1e\b\U0002ba9f", // 𫪟
+ 0x2baa0: "\x1e\b\U0002baa0", // 𫪠
+ 0x2baa1: "\x1e\b\U0002baa1", // 𫪡
+ 0x2baa2: "\x1e\b\U0002baa2", // 𫪢
+ 0x2baa3: "\x1e\b\U0002baa3", // 𫪣
+ 0x2baa4: "\x1e\b\U0002baa4", // 𫪤
+ 0x2baa5: "\x1e\b\U0002baa5", // 𫪥
+ 0x2baa6: "\x1e\b\U0002baa6", // 𫪦
+ 0x2baa7: "\x1e\b\U0002baa7", // 𫪧
+ 0x2baa8: "\x1e\b\U0002baa8", // 𫪨
+ 0x2baa9: "\x1e\b\U0002baa9", // 𫪩
+ 0x2baaa: "\x1e\b\U0002baaa", // 𫪪
+ 0x2baab: "\x1e\b\U0002baab", // 𫪫
+ 0x2baac: "\x1e\b\U0002baac", // 𫪬
+ 0x2baad: "\x1e\b\U0002baad", // 𫪭
+ 0x2baae: "\x1e\b\U0002baae", // 𫪮
+ 0x2baaf: "\x1e\b\U0002baaf", // 𫪯
+ 0x2bab0: "\x1e\b\U0002bab0", // 𫪰
+ 0x2bab1: "\x1e\t\U0002bab1", // 𫪱
+ 0x2bab2: "\x1e\t\U0002bab2", // 𫪲
+ 0x2bab3: "\x1e\t\U0002bab3", // 𫪳
+ 0x2bab4: "\x1e\t\U0002bab4", // 𫪴
+ 0x2bab5: "\x1e\t\U0002bab5", // 𫪵
+ 0x2bab6: "\x1e\t\U0002bab6", // 𫪶
+ 0x2bab7: "\x1e\t\U0002bab7", // 𫪷
+ 0x2bab8: "\x1e\t\U0002bab8", // 𫪸
+ 0x2bab9: "\x1e\t\U0002bab9", // 𫪹
+ 0x2baba: "\x1e\t\U0002baba", // 𫪺
+ 0x2babb: "\x1e\t\U0002babb", // 𫪻
+ 0x2babc: "\x1e\t\U0002babc", // 𫪼
+ 0x2babd: "\x1e\t\U0002babd", // 𫪽
+ 0x2babe: "\x1e\t\U0002babe", // 𫪾
+ 0x2babf: "\x1e\t\U0002babf", // 𫪿
+ 0x2bac0: "\x1e\t\U0002bac0", // 𫫀
+ 0x2bac1: "\x1e\t\U0002bac1", // 𫫁
+ 0x2bac2: "\x1e\t\U0002bac2", // 𫫂
+ 0x2bac3: "\x1e\n\U0002bac3", // 𫫃
+ 0x2bac4: "\x1e\n\U0002bac4", // 𫫄
+ 0x2bac5: "\x1e\n\U0002bac5", // 𫫅
+ 0x2bac6: "\x1e\n\U0002bac6", // 𫫆
+ 0x2bac7: "\x1e\n\U0002bac7", // 𫫇
+ 0x2bac8: "\x1e\n\U0002bac8", // 𫫈
+ 0x2bac9: "\x1e\n\U0002bac9", // 𫫉
+ 0x2baca: "\x1e\n\U0002baca", // 𫫊
+ 0x2bacb: "\x1e\n\U0002bacb", // 𫫋
+ 0x2bacc: "\x1e\n\U0002bacc", // 𫫌
+ 0x2bacd: "\x1e\n\U0002bacd", // 𫫍
+ 0x2bace: "\x1e\n\U0002bace", // 𫫎
+ 0x2bacf: "\x1e\n\U0002bacf", // 𫫏
+ 0x2bad0: "\x1e\n\U0002bad0", // 𫫐
+ 0x2bad1: "\x1e\n\U0002bad1", // 𫫑
+ 0x2bad2: "\x1e\n\U0002bad2", // 𫫒
+ 0x2bad3: "\x1e\v\U0002bad3", // 𫫓
+ 0x2bad4: "\x1e\v\U0002bad4", // 𫫔
+ 0x2bad5: "\x1e\v\U0002bad5", // 𫫕
+ 0x2bad6: "\x1e\v\U0002bad6", // 𫫖
+ 0x2bad7: "\x1e\v\U0002bad7", // 𫫗
+ 0x2bad8: "\x1e\v\U0002bad8", // 𫫘
+ 0x2bad9: "\x1e\v\U0002bad9", // 𫫙
+ 0x2bada: "\x1e\v\U0002bada", // 𫫚
+ 0x2badb: "\x1e\v\U0002badb", // 𫫛
+ 0x2badc: "\x1e\v\U0002badc", // 𫫜
+ 0x2badd: "\x1e\v\U0002badd", // 𫫝
+ 0x2bade: "\x1e\v\U0002bade", // 𫫞
+ 0x2badf: "\x1e\v\U0002badf", // 𫫟
+ 0x2bae0: "\x1e\v\U0002bae0", // 𫫠
+ 0x2bae1: "\x1e\v\U0002bae1", // 𫫡
+ 0x2bae2: "\x1e\v\U0002bae2", // 𫫢
+ 0x2bae3: "\x1e\v\U0002bae3", // 𫫣
+ 0x2bae4: "\x1e\v\U0002bae4", // 𫫤
+ 0x2bae5: "\x1e\v\U0002bae5", // 𫫥
+ 0x2bae6: "\x1e\v\U0002bae6", // 𫫦
+ 0x2bae7: "\x1e\v\U0002bae7", // 𫫧
+ 0x2bae8: "\x1e\f\U0002bae8", // 𫫨
+ 0x2bae9: "\x1e\f\U0002bae9", // 𫫩
+ 0x2baea: "\x1e\f\U0002baea", // 𫫪
+ 0x2baeb: "\x1e\f\U0002baeb", // 𫫫
+ 0x2baec: "\x1e\f\U0002baec", // 𫫬
+ 0x2baed: "\x1e\f\U0002baed", // 𫫭
+ 0x2baee: "\x1e\f\U0002baee", // 𫫮
+ 0x2baef: "\x1e\f\U0002baef", // 𫫯
+ 0x2baf0: "\x1e\f\U0002baf0", // 𫫰
+ 0x2baf1: "\x1e\f\U0002baf1", // 𫫱
+ 0x2baf2: "\x1e\f\U0002baf2", // 𫫲
+ 0x2baf3: "\x1e\f\U0002baf3", // 𫫳
+ 0x2baf4: "\x1e\f\U0002baf4", // 𫫴
+ 0x2baf5: "\x1e\f\U0002baf5", // 𫫵
+ 0x2baf6: "\x1e\r\U0002baf6", // 𫫶
+ 0x2baf7: "\x1e\r\U0002baf7", // 𫫷
+ 0x2baf8: "\x1e\r\U0002baf8", // 𫫸
+ 0x2baf9: "\x1e\r\U0002baf9", // 𫫹
+ 0x2bafa: "\x1e\r\U0002bafa", // 𫫺
+ 0x2bafb: "\x1e\r\U0002bafb", // 𫫻
+ 0x2bafc: "\x1e\r\U0002bafc", // 𫫼
+ 0x2bafd: "\x1e\r\U0002bafd", // 𫫽
+ 0x2bafe: "\x1e\r\U0002bafe", // 𫫾
+ 0x2baff: "\x1e\r\U0002baff", // 𫫿
+ 0x2bb00: "\x1e\r\U0002bb00", // 𫬀
+ 0x2bb01: "\x1e\r\U0002bb01", // 𫬁
+ 0x2bb02: "\x1e\r\U0002bb02", // 𫬂
+ 0x2bb03: "\x1e\r\U0002bb03", // 𫬃
+ 0x2bb04: "\x1e\r\U0002bb04", // 𫬄
+ 0x2bb05: "\x1e\r\U0002bb05", // 𫬅
+ 0x2bb06: "\x1e\r\U0002bb06", // 𫬆
+ 0x2bb07: "\x1e\x0e\U0002bb07", // 𫬇
+ 0x2bb08: "\x1e\x0e\U0002bb08", // 𫬈
+ 0x2bb09: "\x1e\x0e\U0002bb09", // 𫬉
+ 0x2bb0a: "\x1e\x0e\U0002bb0a", // 𫬊
+ 0x2bb0b: "\x1e\x0e\U0002bb0b", // 𫬋
+ 0x2bb0c: "\x1e\x0e\U0002bb0c", // 𫬌
+ 0x2bb0d: "\x1e\x0e\U0002bb0d", // 𫬍
+ 0x2bb0e: "\x1e\x0e\U0002bb0e", // 𫬎
+ 0x2bb0f: "\x1e\x0e\U0002bb0f", // 𫬏
+ 0x2bb10: "\x1e\x0e\U0002bb10", // 𫬐
+ 0x2bb11: "\x1e\x0e\U0002bb11", // 𫬑
+ 0x2bb12: "\x1e\x0f\U0002bb12", // 𫬒
+ 0x2bb13: "\x1e\x0f\U0002bb13", // 𫬓
+ 0x2bb14: "\x1e\x0f\U0002bb14", // 𫬔
+ 0x2bb15: "\x1e\x0f\U0002bb15", // 𫬕
+ 0x2bb16: "\x1e\x0f\U0002bb16", // 𫬖
+ 0x2bb17: "\x1e\x0f\U0002bb17", // 𫬗
+ 0x2bb18: "\x1e\x0f\U0002bb18", // 𫬘
+ 0x2bb19: "\x1e\x0f\U0002bb19", // 𫬙
+ 0x2bb1a: "\x1e\x0f\U0002bb1a", // 𫬚
+ 0x2bb1b: "\x1e\x0f\U0002bb1b", // 𫬛
+ 0x2bb1c: "\x1e\x10\U0002bb1c", // 𫬜
+ 0x2bb1d: "\x1e\x10\U0002bb1d", // 𫬝
+ 0x2bb1e: "\x1e\x10\U0002bb1e", // 𫬞
+ 0x2bb1f: "\x1e\x10\U0002bb1f", // 𫬟
+ 0x2bb20: "\x1e\x10\U0002bb20", // 𫬠
+ 0x2bb21: "\x1e\x10\U0002bb21", // 𫬡
+ 0x2bb22: "\x1e\x10\U0002bb22", // 𫬢
+ 0x2bb23: "\x1e\x10\U0002bb23", // 𫬣
+ 0x2bb24: "\x1e\x10\U0002bb24", // 𫬤
+ 0x2bb25: "\x1e\x10\U0002bb25", // 𫬥
+ 0x2bb26: "\x1e\x10\U0002bb26", // 𫬦
+ 0x2bb27: "\x1e\x10\U0002bb27", // 𫬧
+ 0x2bb28: "\x1e\x10\U0002bb28", // 𫬨
+ 0x2bb29: "\x1e\x10\U0002bb29", // 𫬩
+ 0x2bb2a: "\x1e\x10\U0002bb2a", // 𫬪
+ 0x2bb2b: "\x1e\x10\U0002bb2b", // 𫬫
+ 0x2bb2c: "\x1e\x11\U0002bb2c", // 𫬬
+ 0x2bb2d: "\x1e\x11\U0002bb2d", // 𫬭
+ 0x2bb2e: "\x1e\x11\U0002bb2e", // 𫬮
+ 0x2bb2f: "\x1e\x11\U0002bb2f", // 𫬯
+ 0x2bb30: "\x1e\x11\U0002bb30", // 𫬰
+ 0x2bb31: "\x1e\x11\U0002bb31", // 𫬱
+ 0x2bb32: "\x1e\x11\U0002bb32", // 𫬲
+ 0x2bb33: "\x1e\x11\U0002bb33", // 𫬳
+ 0x2bb34: "\x1e\x11\U0002bb34", // 𫬴
+ 0x2bb35: "\x1e\x11\U0002bb35", // 𫬵
+ 0x2bb36: "\x1e\x12\U0002bb36", // 𫬶
+ 0x2bb37: "\x1e\x12\U0002bb37", // 𫬷
+ 0x2bb38: "\x1e\x12\U0002bb38", // 𫬸
+ 0x2bb39: "\x1e\x13\U0002bb39", // 𫬹
+ 0x2bb3a: "\x1e\x14\U0002bb3a", // 𫬺
+ 0x2bb3b: "\x1e\x14\U0002bb3b", // 𫬻
+ 0x2bb3c: "\x1e\x14\U0002bb3c", // 𫬼
+ 0x2bb3d: "\x1e\x15\U0002bb3d", // 𫬽
+ 0x2bb3e: "\x1e\x15\U0002bb3e", // 𫬾
+ 0x2bb3f: "\x1e\x15\U0002bb3f", // 𫬿
+ 0x2bb40: "\x1e\x16\U0002bb40", // 𫭀
+ 0x2bb41: "\x1e\x18\U0002bb41", // 𫭁
+ 0x2bb42: "\x1f\x02\U0002bb42", // 𫭂
+ 0x2bb43: "\x1f\x04\U0002bb43", // 𫭃
+ 0x2bb44: "\x1f\x04\U0002bb44", // 𫭄
+ 0x2bb45: "\x1f\x05\U0002bb45", // 𫭅
+ 0x2bb46: "\x1f\x05\U0002bb46", // 𫭆
+ 0x2bb47: "\x1f\x06\U0002bb47", // 𫭇
+ 0x2bb48: "\x1f\x06\U0002bb48", // 𫭈
+ 0x2bb49: "\x1f\a\U0002bb49", // 𫭉
+ 0x2bb4a: "\x1f\a\U0002bb4a", // 𫭊
+ 0x2bb4b: "\x1f\b\U0002bb4b", // 𫭋
+ 0x2bb4c: "\x1f\b\U0002bb4c", // 𫭌
+ 0x2bb4d: "\x1f\t\U0002bb4d", // 𫭍
+ 0x2bb4e: "\x1f\t\U0002bb4e", // 𫭎
+ 0x2bb4f: "\x1f\t\U0002bb4f", // 𫭏
+ 0x2bb50: "\x1f\n\U0002bb50", // 𫭐
+ 0x2bb51: "\x1f\v\U0002bb51", // 𫭑
+ 0x2bb52: "\x1f\f\U0002bb52", // 𫭒
+ 0x2bb53: "\x1f\r\U0002bb53", // 𫭓
+ 0x2bb54: "\x1f\x0e\U0002bb54", // 𫭔
+ 0x2bb55: "\x1f\x12\U0002bb55", // 𫭕
+ 0x2bb56: " \x01\U0002bb56", // 𫭖
+ 0x2bb57: " \x02\U0002bb57", // 𫭗
+ 0x2bb58: " \x02\U0002bb58", // 𫭘
+ 0x2bb59: " \x03\U0002bb59", // 𫭙
+ 0x2bb5a: " \x03\U0002bb5a", // 𫭚
+ 0x2bb5b: " \x04\U0002bb5b", // 𫭛
+ 0x2bb5c: " \x04\U0002bb5c", // 𫭜
+ 0x2bb5d: " \x04\U0002bb5d", // 𫭝
+ 0x2bb5e: " \x04\U0002bb5e", // 𫭞
+ 0x2bb5f: " \x04\U0002bb5f", // 𫭟
+ 0x2bb60: " \x04\U0002bb60", // 𫭠
+ 0x2bb61: " \x04\U0002bb61", // 𫭡
+ 0x2bb62: " \x04\U0002bb62", // 𫭢
+ 0x2bb63: " \x04\U0002bb63", // 𫭣
+ 0x2bb64: " \x04\U0002bb64", // 𫭤
+ 0x2bb65: " \x05\U0002bb65", // 𫭥
+ 0x2bb66: " \x05\U0002bb66", // 𫭦
+ 0x2bb67: " \x05\U0002bb67", // 𫭧
+ 0x2bb68: " \x05\U0002bb68", // 𫭨
+ 0x2bb69: " \x06\U0002bb69", // 𫭩
+ 0x2bb6a: " \x06\U0002bb6a", // 𫭪
+ 0x2bb6b: " \x06\U0002bb6b", // 𫭫
+ 0x2bb6c: " \x06\U0002bb6c", // 𫭬
+ 0x2bb6d: " \x06\U0002bb6d", // 𫭭
+ 0x2bb6e: " \x06\U0002bb6e", // 𫭮
+ 0x2bb6f: " \x06\U0002bb6f", // 𫭯
+ 0x2bb70: " \a\U0002bb70", // 𫭰
+ 0x2bb71: " \a\U0002bb71", // 𫭱
+ 0x2bb72: " \a\U0002bb72", // 𫭲
+ 0x2bb73: " \a\U0002bb73", // 𫭳
+ 0x2bb74: " \a\U0002bb74", // 𫭴
+ 0x2bb75: " \a\U0002bb75", // 𫭵
+ 0x2bb76: " \a\U0002bb76", // 𫭶
+ 0x2bb77: " \a\U0002bb77", // 𫭷
+ 0x2bb78: " \a\U0002bb78", // 𫭸
+ 0x2bb79: " \a\U0002bb79", // 𫭹
+ 0x2bb7a: " \a\U0002bb7a", // 𫭺
+ 0x2bb7b: " \a\U0002bb7b", // 𫭻
+ 0x2bb7c: " \b\U0002bb7c", // 𫭼
+ 0x2bb7d: " \b\U0002bb7d", // 𫭽
+ 0x2bb7e: " \b\U0002bb7e", // 𫭾
+ 0x2bb7f: " \b\U0002bb7f", // 𫭿
+ 0x2bb80: " \b\U0002bb80", // 𫮀
+ 0x2bb81: " \b\U0002bb81", // 𫮁
+ 0x2bb82: " \b\U0002bb82", // 𫮂
+ 0x2bb83: " \b\U0002bb83", // 𫮃
+ 0x2bb84: " \b\U0002bb84", // 𫮄
+ 0x2bb85: " \b\U0002bb85", // 𫮅
+ 0x2bb86: " \t\U0002bb86", // 𫮆
+ 0x2bb87: " \t\U0002bb87", // 𫮇
+ 0x2bb88: " \t\U0002bb88", // 𫮈
+ 0x2bb89: " \t\U0002bb89", // 𫮉
+ 0x2bb8a: " \t\U0002bb8a", // 𫮊
+ 0x2bb8b: " \t\U0002bb8b", // 𫮋
+ 0x2bb8c: " \t\U0002bb8c", // 𫮌
+ 0x2bb8d: " \t\U0002bb8d", // 𫮍
+ 0x2bb8e: " \t\U0002bb8e", // 𫮎
+ 0x2bb8f: " \t\U0002bb8f", // 𫮏
+ 0x2bb90: " \t\U0002bb90", // 𫮐
+ 0x2bb91: " \t\U0002bb91", // 𫮑
+ 0x2bb92: " \n\U0002bb92", // 𫮒
+ 0x2bb93: " \n\U0002bb93", // 𫮓
+ 0x2bb94: " \n\U0002bb94", // 𫮔
+ 0x2bb95: " \n\U0002bb95", // 𫮕
+ 0x2bb96: " \n\U0002bb96", // 𫮖
+ 0x2bb97: " \n\U0002bb97", // 𫮗
+ 0x2bb98: " \n\U0002bb98", // 𫮘
+ 0x2bb99: " \n\U0002bb99", // 𫮙
+ 0x2bb9a: " \n\U0002bb9a", // 𫮚
+ 0x2bb9b: " \v\U0002bb9b", // 𫮛
+ 0x2bb9c: " \v\U0002bb9c", // 𫮜
+ 0x2bb9d: " \v\U0002bb9d", // 𫮝
+ 0x2bb9e: " \v\U0002bb9e", // 𫮞
+ 0x2bb9f: " \v\U0002bb9f", // 𫮟
+ 0x2bba0: " \v\U0002bba0", // 𫮠
+ 0x2bba1: " \v\U0002bba1", // 𫮡
+ 0x2bba2: " \v\U0002bba2", // 𫮢
+ 0x2bba3: " \f\U0002bba3", // 𫮣
+ 0x2bba4: " \f\U0002bba4", // 𫮤
+ 0x2bba5: " \f\U0002bba5", // 𫮥
+ 0x2bba6: " \f\U0002bba6", // 𫮦
+ 0x2bba7: " \f\U0002bba7", // 𫮧
+ 0x2bba8: " \f\U0002bba8", // 𫮨
+ 0x2bba9: " \f\U0002bba9", // 𫮩
+ 0x2bbaa: " \f\U0002bbaa", // 𫮪
+ 0x2bbab: " \f\U0002bbab", // 𫮫
+ 0x2bbac: " \f\U0002bbac", // 𫮬
+ 0x2bbad: " \r\U0002bbad", // 𫮭
+ 0x2bbae: " \r\U0002bbae", // 𫮮
+ 0x2bbaf: " \r\U0002bbaf", // 𫮯
+ 0x2bbb0: " \x0e\U0002bbb0", // 𫮰
+ 0x2bbb1: " \x0e\U0002bbb1", // 𫮱
+ 0x2bbb2: " \x0e\U0002bbb2", // 𫮲
+ 0x2bbb3: " \x0e\U0002bbb3", // 𫮳
+ 0x2bbb4: " \x0e\U0002bbb4", // 𫮴
+ 0x2bbb5: " \x0e\U0002bbb5", // 𫮵
+ 0x2bbb6: " \x0f\U0002bbb6", // 𫮶
+ 0x2bbb7: " \x0f\U0002bbb7", // 𫮷
+ 0x2bbb8: " \x0f\U0002bbb8", // 𫮸
+ 0x2bbb9: " \x10\U0002bbb9", // 𫮹
+ 0x2bbba: " \x10\U0002bbba", // 𫮺
+ 0x2bbbb: " \x10\U0002bbbb", // 𫮻
+ 0x2bbbc: " \x10\U0002bbbc", // 𫮼
+ 0x2bbbd: " \x11\U0002bbbd", // 𫮽
+ 0x2bbbe: " \x11\U0002bbbe", // 𫮾
+ 0x2bbbf: " \x11\U0002bbbf", // 𫮿
+ 0x2bbc0: " \x12\U0002bbc0", // 𫯀
+ 0x2bbc1: "!\x06\U0002bbc1", // 𫯁
+ 0x2bbc2: "!\x06\U0002bbc2", // 𫯂
+ 0x2bbc3: "!\v\U0002bbc3", // 𫯃
+ 0x2bbc4: "!\v\U0002bbc4", // 𫯄
+ 0x2bbc5: "!\f\U0002bbc5", // 𫯅
+ 0x2bbc6: "!\x11\U0002bbc6", // 𫯆
+ 0x2bbc7: "!\x11\U0002bbc7", // 𫯇
+ 0x2bbc8: "!\x13\U0002bbc8", // 𫯈
+ 0x2bbc9: "!\x14\U0002bbc9", // 𫯉
+ 0x2bbca: "\"\v\U0002bbca", // 𫯊
+ 0x2bbcb: "#\a\U0002bbcb", // 𫯋
+ 0x2bbcc: "#\a\U0002bbcc", // 𫯌
+ 0x2bbcd: "$\x05\U0002bbcd", // 𫯍
+ 0x2bbce: "$\a\U0002bbce", // 𫯎
+ 0x2bbcf: "$\b\U0002bbcf", // 𫯏
+ 0x2bbd0: "$\b\U0002bbd0", // 𫯐
+ 0x2bbd1: "$\t\U0002bbd1", // 𫯑
+ 0x2bbd2: "$\t\U0002bbd2", // 𫯒
+ 0x2bbd3: "$\v\U0002bbd3", // 𫯓
+ 0x2bbd4: "$\v\U0002bbd4", // 𫯔
+ 0x2bbd5: "$\f\U0002bbd5", // 𫯕
+ 0x2bbd6: "$\r\U0002bbd6", // 𫯖
+ 0x2bbd7: "$\r\U0002bbd7", // 𫯗
+ 0x2bbd8: "$\x0e\U0002bbd8", // 𫯘
+ 0x2bbd9: "$\x13\U0002bbd9", // 𫯙
+ 0x2bbda: "$\x19\U0002bbda", // 𫯚
+ 0x2bbdb: "%\x01\U0002bbdb", // 𫯛
+ 0x2bbdc: "%\x03\U0002bbdc", // 𫯜
+ 0x2bbdd: "%\x04\U0002bbdd", // 𫯝
+ 0x2bbde: "%\x04\U0002bbde", // 𫯞
+ 0x2bbdf: "%\x04\U0002bbdf", // 𫯟
+ 0x2bbe0: "%\x05\U0002bbe0", // 𫯠
+ 0x2bbe1: "%\x05\U0002bbe1", // 𫯡
+ 0x2bbe2: "%\x05\U0002bbe2", // 𫯢
+ 0x2bbe3: "%\x06\U0002bbe3", // 𫯣
+ 0x2bbe4: "%\x06\U0002bbe4", // 𫯤
+ 0x2bbe5: "%\x06\U0002bbe5", // 𫯥
+ 0x2bbe6: "%\a\U0002bbe6", // 𫯦
+ 0x2bbe7: "%\a\U0002bbe7", // 𫯧
+ 0x2bbe8: "%\b\U0002bbe8", // 𫯨
+ 0x2bbe9: "%\t\U0002bbe9", // 𫯩
+ 0x2bbea: "%\t\U0002bbea", // 𫯪
+ 0x2bbeb: "%\t\U0002bbeb", // 𫯫
+ 0x2bbec: "%\t\U0002bbec", // 𫯬
+ 0x2bbed: "%\t\U0002bbed", // 𫯭
+ 0x2bbee: "%\t\U0002bbee", // 𫯮
+ 0x2bbef: "%\t\U0002bbef", // 𫯯
+ 0x2bbf0: "%\n\U0002bbf0", // 𫯰
+ 0x2bbf1: "%\n\U0002bbf1", // 𫯱
+ 0x2bbf2: "%\n\U0002bbf2", // 𫯲
+ 0x2bbf3: "%\n\U0002bbf3", // 𫯳
+ 0x2bbf4: "%\n\U0002bbf4", // 𫯴
+ 0x2bbf5: "%\v\U0002bbf5", // 𫯵
+ 0x2bbf6: "%\v\U0002bbf6", // 𫯶
+ 0x2bbf7: "%\v\U0002bbf7", // 𫯷
+ 0x2bbf8: "%\f\U0002bbf8", // 𫯸
+ 0x2bbf9: "%\f\U0002bbf9", // 𫯹
+ 0x2bbfa: "%\f\U0002bbfa", // 𫯺
+ 0x2bbfb: "%\f\U0002bbfb", // 𫯻
+ 0x2bbfc: "%\f\U0002bbfc", // 𫯼
+ 0x2bbfd: "%\r\U0002bbfd", // 𫯽
+ 0x2bbfe: "%\r\U0002bbfe", // 𫯾
+ 0x2bbff: "%\r\U0002bbff", // 𫯿
+ 0x2bc00: "%\r\U0002bc00", // 𫰀
+ 0x2bc01: "%\x0e\U0002bc01", // 𫰁
+ 0x2bc02: "%\x10\U0002bc02", // 𫰂
+ 0x2bc03: "%\x11\U0002bc03", // 𫰃
+ 0x2bc04: "%\x11\U0002bc04", // 𫰄
+ 0x2bc05: "%\x14\U0002bc05", // 𫰅
+ 0x2bc06: "&\x01\U0002bc06", // 𫰆
+ 0x2bc07: "&\x02\U0002bc07", // 𫰇
+ 0x2bc08: "&\x03\U0002bc08", // 𫰈
+ 0x2bc09: "&\x03\U0002bc09", // 𫰉
+ 0x2bc0a: "&\x03\U0002bc0a", // 𫰊
+ 0x2bc0b: "&\x04\U0002bc0b", // 𫰋
+ 0x2bc0c: "&\x04\U0002bc0c", // 𫰌
+ 0x2bc0d: "&\x04\U0002bc0d", // 𫰍
+ 0x2bc0e: "&\x04\U0002bc0e", // 𫰎
+ 0x2bc0f: "&\x04\U0002bc0f", // 𫰏
+ 0x2bc10: "&\x04\U0002bc10", // 𫰐
+ 0x2bc11: "&\x04\U0002bc11", // 𫰑
+ 0x2bc12: "&\x04\U0002bc12", // 𫰒
+ 0x2bc13: "&\x04\U0002bc13", // 𫰓
+ 0x2bc14: "&\x04\U0002bc14", // 𫰔
+ 0x2bc15: "&\x04\U0002bc15", // 𫰕
+ 0x2bc16: "&\x04\U0002bc16", // 𫰖
+ 0x2bc17: "&\x05\U0002bc17", // 𫰗
+ 0x2bc18: "&\x05\U0002bc18", // 𫰘
+ 0x2bc19: "&\x05\U0002bc19", // 𫰙
+ 0x2bc1a: "&\x05\U0002bc1a", // 𫰚
+ 0x2bc1b: "&\x05\U0002bc1b", // 𫰛
+ 0x2bc1c: "&\x06\U0002bc1c", // 𫰜
+ 0x2bc1d: "&\x06\U0002bc1d", // 𫰝
+ 0x2bc1e: "&\x06\U0002bc1e", // 𫰞
+ 0x2bc1f: "&\x06\U0002bc1f", // 𫰟
+ 0x2bc20: "&\x06\U0002bc20", // 𫰠
+ 0x2bc21: "&\x06\U0002bc21", // 𫰡
+ 0x2bc22: "&\x06\U0002bc22", // 𫰢
+ 0x2bc23: "&\x06\U0002bc23", // 𫰣
+ 0x2bc24: "&\x06\U0002bc24", // 𫰤
+ 0x2bc25: "&\x06\U0002bc25", // 𫰥
+ 0x2bc26: "&\x06\U0002bc26", // 𫰦
+ 0x2bc27: "&\x06\U0002bc27", // 𫰧
+ 0x2bc28: "&\x06\U0002bc28", // 𫰨
+ 0x2bc29: "&\x06\U0002bc29", // 𫰩
+ 0x2bc2a: "&\a\U0002bc2a", // 𫰪
+ 0x2bc2b: "&\a\U0002bc2b", // 𫰫
+ 0x2bc2c: "&\a\U0002bc2c", // 𫰬
+ 0x2bc2d: "&\a\U0002bc2d", // 𫰭
+ 0x2bc2e: "&\a\U0002bc2e", // 𫰮
+ 0x2bc2f: "&\a\U0002bc2f", // 𫰯
+ 0x2bc30: "&\a\U0002bc30", // 𫰰
+ 0x2bc31: "&\a\U0002bc31", // 𫰱
+ 0x2bc32: "&\a\U0002bc32", // 𫰲
+ 0x2bc33: "&\a\U0002bc33", // 𫰳
+ 0x2bc34: "&\a\U0002bc34", // 𫰴
+ 0x2bc35: "&\a\U0002bc35", // 𫰵
+ 0x2bc36: "&\a\U0002bc36", // 𫰶
+ 0x2bc37: "&\b\U0002bc37", // 𫰷
+ 0x2bc38: "&\b\U0002bc38", // 𫰸
+ 0x2bc39: "&\b\U0002bc39", // 𫰹
+ 0x2bc3a: "&\b\U0002bc3a", // 𫰺
+ 0x2bc3b: "&\b\U0002bc3b", // 𫰻
+ 0x2bc3c: "&\b\U0002bc3c", // 𫰼
+ 0x2bc3d: "&\b\U0002bc3d", // 𫰽
+ 0x2bc3e: "&\b\U0002bc3e", // 𫰾
+ 0x2bc3f: "&\b\U0002bc3f", // 𫰿
+ 0x2bc40: "&\b\U0002bc40", // 𫱀
+ 0x2bc41: "&\b\U0002bc41", // 𫱁
+ 0x2bc42: "&\b\U0002bc42", // 𫱂
+ 0x2bc43: "&\t\U0002bc43", // 𫱃
+ 0x2bc44: "&\t\U0002bc44", // 𫱄
+ 0x2bc45: "&\t\U0002bc45", // 𫱅
+ 0x2bc46: "&\t\U0002bc46", // 𫱆
+ 0x2bc47: "&\t\U0002bc47", // 𫱇
+ 0x2bc48: "&\t\U0002bc48", // 𫱈
+ 0x2bc49: "&\t\U0002bc49", // 𫱉
+ 0x2bc4a: "&\t\U0002bc4a", // 𫱊
+ 0x2bc4b: "&\t\U0002bc4b", // 𫱋
+ 0x2bc4c: "&\t\U0002bc4c", // 𫱌
+ 0x2bc4d: "&\t\U0002bc4d", // 𫱍
+ 0x2bc4e: "&\t\U0002bc4e", // 𫱎
+ 0x2bc4f: "&\t\U0002bc4f", // 𫱏
+ 0x2bc50: "&\t\U0002bc50", // 𫱐
+ 0x2bc51: "&\n\U0002bc51", // 𫱑
+ 0x2bc52: "&\n\U0002bc52", // 𫱒
+ 0x2bc53: "&\n\U0002bc53", // 𫱓
+ 0x2bc54: "&\n\U0002bc54", // 𫱔
+ 0x2bc55: "&\n\U0002bc55", // 𫱕
+ 0x2bc56: "&\n\U0002bc56", // 𫱖
+ 0x2bc57: "&\n\U0002bc57", // 𫱗
+ 0x2bc58: "&\n\U0002bc58", // 𫱘
+ 0x2bc59: "&\n\U0002bc59", // 𫱙
+ 0x2bc5a: "&\n\U0002bc5a", // 𫱚
+ 0x2bc5b: "&\n\U0002bc5b", // 𫱛
+ 0x2bc5c: "&\n\U0002bc5c", // 𫱜
+ 0x2bc5d: "&\n\U0002bc5d", // 𫱝
+ 0x2bc5e: "&\n\U0002bc5e", // 𫱞
+ 0x2bc5f: "&\v\U0002bc5f", // 𫱟
+ 0x2bc60: "&\v\U0002bc60", // 𫱠
+ 0x2bc61: "&\v\U0002bc61", // 𫱡
+ 0x2bc62: "&\v\U0002bc62", // 𫱢
+ 0x2bc63: "&\v\U0002bc63", // 𫱣
+ 0x2bc64: "&\v\U0002bc64", // 𫱤
+ 0x2bc65: "&\v\U0002bc65", // 𫱥
+ 0x2bc66: "&\v\U0002bc66", // 𫱦
+ 0x2bc67: "&\v\U0002bc67", // 𫱧
+ 0x2bc68: "&\v\U0002bc68", // 𫱨
+ 0x2bc69: "&\v\U0002bc69", // 𫱩
+ 0x2bc6a: "&\v\U0002bc6a", // 𫱪
+ 0x2bc6b: "&\v\U0002bc6b", // 𫱫
+ 0x2bc6c: "&\f\U0002bc6c", // 𫱬
+ 0x2bc6d: "&\f\U0002bc6d", // 𫱭
+ 0x2bc6e: "&\f\U0002bc6e", // 𫱮
+ 0x2bc6f: "&\f\U0002bc6f", // 𫱯
+ 0x2bc70: "&\f\U0002bc70", // 𫱰
+ 0x2bc71: "&\f\U0002bc71", // 𫱱
+ 0x2bc72: "&\f\U0002bc72", // 𫱲
+ 0x2bc73: "&\f\U0002bc73", // 𫱳
+ 0x2bc74: "&\f\U0002bc74", // 𫱴
+ 0x2bc75: "&\f\U0002bc75", // 𫱵
+ 0x2bc76: "&\f\U0002bc76", // 𫱶
+ 0x2bc77: "&\f\U0002bc77", // 𫱷
+ 0x2bc78: "&\r\U0002bc78", // 𫱸
+ 0x2bc79: "&\r\U0002bc79", // 𫱹
+ 0x2bc7a: "&\r\U0002bc7a", // 𫱺
+ 0x2bc7b: "&\r\U0002bc7b", // 𫱻
+ 0x2bc7c: "&\r\U0002bc7c", // 𫱼
+ 0x2bc7d: "&\r\U0002bc7d", // 𫱽
+ 0x2bc7e: "&\r\U0002bc7e", // 𫱾
+ 0x2bc7f: "&\r\U0002bc7f", // 𫱿
+ 0x2bc80: "&\r\U0002bc80", // 𫲀
+ 0x2bc81: "&\r\U0002bc81", // 𫲁
+ 0x2bc82: "&\r\U0002bc82", // 𫲂
+ 0x2bc83: "&\r\U0002bc83", // 𫲃
+ 0x2bc84: "&\r\U0002bc84", // 𫲄
+ 0x2bc85: "&\x0e\U0002bc85", // 𫲅
+ 0x2bc86: "&\x0e\U0002bc86", // 𫲆
+ 0x2bc87: "&\x0e\U0002bc87", // 𫲇
+ 0x2bc88: "&\x0e\U0002bc88", // 𫲈
+ 0x2bc89: "&\x0e\U0002bc89", // 𫲉
+ 0x2bc8a: "&\x0e\U0002bc8a", // 𫲊
+ 0x2bc8b: "&\x0e\U0002bc8b", // 𫲋
+ 0x2bc8c: "&\x0e\U0002bc8c", // 𫲌
+ 0x2bc8d: "&\x0f\U0002bc8d", // 𫲍
+ 0x2bc8e: "&\x0f\U0002bc8e", // 𫲎
+ 0x2bc8f: "&\x0f\U0002bc8f", // 𫲏
+ 0x2bc90: "&\x0f\U0002bc90", // 𫲐
+ 0x2bc91: "&\x0f\U0002bc91", // 𫲑
+ 0x2bc92: "&\x0f\U0002bc92", // 𫲒
+ 0x2bc93: "&\x0f\U0002bc93", // 𫲓
+ 0x2bc94: "&\x10\U0002bc94", // 𫲔
+ 0x2bc95: "&\x10\U0002bc95", // 𫲕
+ 0x2bc96: "&\x10\U0002bc96", // 𫲖
+ 0x2bc97: "&\x10\U0002bc97", // 𫲗
+ 0x2bc98: "&\x10\U0002bc98", // 𫲘
+ 0x2bc99: "&\x10\U0002bc99", // 𫲙
+ 0x2bc9a: "&\x11\U0002bc9a", // 𫲚
+ 0x2bc9b: "&\x11\U0002bc9b", // 𫲛
+ 0x2bc9c: "&\x12\U0002bc9c", // 𫲜
+ 0x2bc9d: "&\x12\U0002bc9d", // 𫲝
+ 0x2bc9e: "&\x13\U0002bc9e", // 𫲞
+ 0x2bc9f: "&\x13\U0002bc9f", // 𫲟
+ 0x2bca0: "&\x14\U0002bca0", // 𫲠
+ 0x2bca1: "'\x02\U0002bca1", // 𫲡
+ 0x2bca2: "'\x05\U0002bca2", // 𫲢
+ 0x2bca3: "'\x05\U0002bca3", // 𫲣
+ 0x2bca4: "'\x05\U0002bca4", // 𫲤
+ 0x2bca5: "'\x06\U0002bca5", // 𫲥
+ 0x2bca6: "'\a\U0002bca6", // 𫲦
+ 0x2bca7: "'\b\U0002bca7", // 𫲧
+ 0x2bca8: "'\b\U0002bca8", // 𫲨
+ 0x2bca9: "'\t\U0002bca9", // 𫲩
+ 0x2bcaa: "'\t\U0002bcaa", // 𫲪
+ 0x2bcab: "'\n\U0002bcab", // 𫲫
+ 0x2bcac: "'\n\U0002bcac", // 𫲬
+ 0x2bcad: "'\v\U0002bcad", // 𫲭
+ 0x2bcae: "'\v\U0002bcae", // 𫲮
+ 0x2bcaf: "'\f\U0002bcaf", // 𫲯
+ 0x2bcb0: "'\f\U0002bcb0", // 𫲰
+ 0x2bcb1: "'\r\U0002bcb1", // 𫲱
+ 0x2bcb2: "'\r\U0002bcb2", // 𫲲
+ 0x2bcb3: "'\x10\U0002bcb3", // 𫲳
+ 0x2bcb4: "'\x15\U0002bcb4", // 𫲴
+ 0x2bcb5: "(\x03\U0002bcb5", // 𫲵
+ 0x2bcb6: "(\x03\U0002bcb6", // 𫲶
+ 0x2bcb7: "(\x04\U0002bcb7", // 𫲷
+ 0x2bcb8: "(\x04\U0002bcb8", // 𫲸
+ 0x2bcb9: "(\x04\U0002bcb9", // 𫲹
+ 0x2bcba: "(\x04\U0002bcba", // 𫲺
+ 0x2bcbb: "(\x04\U0002bcbb", // 𫲻
+ 0x2bcbc: "(\x04\U0002bcbc", // 𫲼
+ 0x2bcbd: "(\x04\U0002bcbd", // 𫲽
+ 0x2bcbe: "(\x05\U0002bcbe", // 𫲾
+ 0x2bcbf: "(\x05\U0002bcbf", // 𫲿
+ 0x2bcc0: "(\x05\U0002bcc0", // 𫳀
+ 0x2bcc1: "(\x06\U0002bcc1", // 𫳁
+ 0x2bcc2: "(\x06\U0002bcc2", // 𫳂
+ 0x2bcc3: "(\x06\U0002bcc3", // 𫳃
+ 0x2bcc4: "(\x06\U0002bcc4", // 𫳄
+ 0x2bcc5: "(\x06\U0002bcc5", // 𫳅
+ 0x2bcc6: "(\x06\U0002bcc6", // 𫳆
+ 0x2bcc7: "(\a\U0002bcc7", // 𫳇
+ 0x2bcc8: "(\a\U0002bcc8", // 𫳈
+ 0x2bcc9: "(\a\U0002bcc9", // 𫳉
+ 0x2bcca: "(\a\U0002bcca", // 𫳊
+ 0x2bccb: "(\a\U0002bccb", // 𫳋
+ 0x2bccc: "(\a\U0002bccc", // 𫳌
+ 0x2bccd: "(\a\U0002bccd", // 𫳍
+ 0x2bcce: "(\a\U0002bcce", // 𫳎
+ 0x2bccf: "(\a\U0002bccf", // 𫳏
+ 0x2bcd0: "(\b\U0002bcd0", // 𫳐
+ 0x2bcd1: "(\b\U0002bcd1", // 𫳑
+ 0x2bcd2: "(\b\U0002bcd2", // 𫳒
+ 0x2bcd3: "(\b\U0002bcd3", // 𫳓
+ 0x2bcd4: "(\b\U0002bcd4", // 𫳔
+ 0x2bcd5: "(\b\U0002bcd5", // 𫳕
+ 0x2bcd6: "(\b\U0002bcd6", // 𫳖
+ 0x2bcd7: "(\b\U0002bcd7", // 𫳗
+ 0x2bcd8: "(\b\U0002bcd8", // 𫳘
+ 0x2bcd9: "(\b\U0002bcd9", // 𫳙
+ 0x2bcda: "(\t\U0002bcda", // 𫳚
+ 0x2bcdb: "(\t\U0002bcdb", // 𫳛
+ 0x2bcdc: "(\t\U0002bcdc", // 𫳜
+ 0x2bcdd: "(\t\U0002bcdd", // 𫳝
+ 0x2bcde: "(\t\U0002bcde", // 𫳞
+ 0x2bcdf: "(\t\U0002bcdf", // 𫳟
+ 0x2bce0: "(\t\U0002bce0", // 𫳠
+ 0x2bce1: "(\t\U0002bce1", // 𫳡
+ 0x2bce2: "(\t\U0002bce2", // 𫳢
+ 0x2bce3: "(\t\U0002bce3", // 𫳣
+ 0x2bce4: "(\n\U0002bce4", // 𫳤
+ 0x2bce5: "(\n\U0002bce5", // 𫳥
+ 0x2bce6: "(\n\U0002bce6", // 𫳦
+ 0x2bce7: "(\n\U0002bce7", // 𫳧
+ 0x2bce8: "(\n\U0002bce8", // 𫳨
+ 0x2bce9: "(\n\U0002bce9", // 𫳩
+ 0x2bcea: "(\n\U0002bcea", // 𫳪
+ 0x2bceb: "(\n\U0002bceb", // 𫳫
+ 0x2bcec: "(\n\U0002bcec", // 𫳬
+ 0x2bced: "(\n\U0002bced", // 𫳭
+ 0x2bcee: "(\n\U0002bcee", // 𫳮
+ 0x2bcef: "(\v\U0002bcef", // 𫳯
+ 0x2bcf0: "(\v\U0002bcf0", // 𫳰
+ 0x2bcf1: "(\v\U0002bcf1", // 𫳱
+ 0x2bcf2: "(\v\U0002bcf2", // 𫳲
+ 0x2bcf3: "(\v\U0002bcf3", // 𫳳
+ 0x2bcf4: "(\v\U0002bcf4", // 𫳴
+ 0x2bcf5: "(\v\U0002bcf5", // 𫳵
+ 0x2bcf6: "(\v\U0002bcf6", // 𫳶
+ 0x2bcf7: "(\v\U0002bcf7", // 𫳷
+ 0x2bcf8: "(\v\U0002bcf8", // 𫳸
+ 0x2bcf9: "(\v\U0002bcf9", // 𫳹
+ 0x2bcfa: "(\v\U0002bcfa", // 𫳺
+ 0x2bcfb: "(\v\U0002bcfb", // 𫳻
+ 0x2bcfc: "(\v\U0002bcfc", // 𫳼
+ 0x2bcfd: "(\f\U0002bcfd", // 𫳽
+ 0x2bcfe: "(\f\U0002bcfe", // 𫳾
+ 0x2bcff: "(\f\U0002bcff", // 𫳿
+ 0x2bd00: "(\f\U0002bd00", // 𫴀
+ 0x2bd01: "(\f\U0002bd01", // 𫴁
+ 0x2bd02: "(\r\U0002bd02", // 𫴂
+ 0x2bd03: "(\r\U0002bd03", // 𫴃
+ 0x2bd04: "(\r\U0002bd04", // 𫴄
+ 0x2bd05: "(\r\U0002bd05", // 𫴅
+ 0x2bd06: "(\r\U0002bd06", // 𫴆
+ 0x2bd07: "(\r\U0002bd07", // 𫴇
+ 0x2bd08: "(\r\U0002bd08", // 𫴈
+ 0x2bd09: "(\r\U0002bd09", // 𫴉
+ 0x2bd0a: "(\r\U0002bd0a", // 𫴊
+ 0x2bd0b: "(\r\U0002bd0b", // 𫴋
+ 0x2bd0c: "(\r\U0002bd0c", // 𫴌
+ 0x2bd0d: "(\r\U0002bd0d", // 𫴍
+ 0x2bd0e: "(\r\U0002bd0e", // 𫴎
+ 0x2bd0f: "(\r\U0002bd0f", // 𫴏
+ 0x2bd10: "(\x0e\U0002bd10", // 𫴐
+ 0x2bd11: "(\x0e\U0002bd11", // 𫴑
+ 0x2bd12: "(\x0e\U0002bd12", // 𫴒
+ 0x2bd13: "(\x0e\U0002bd13", // 𫴓
+ 0x2bd14: "(\x0e\U0002bd14", // 𫴔
+ 0x2bd15: "(\x0e\U0002bd15", // 𫴕
+ 0x2bd16: "(\x0e\U0002bd16", // 𫴖
+ 0x2bd17: "(\x0e\U0002bd17", // 𫴗
+ 0x2bd18: "(\x0f\U0002bd18", // 𫴘
+ 0x2bd19: "(\x0f\U0002bd19", // 𫴙
+ 0x2bd1a: "(\x0f\U0002bd1a", // 𫴚
+ 0x2bd1b: "(\x0f\U0002bd1b", // 𫴛
+ 0x2bd1c: "(\x10\U0002bd1c", // 𫴜
+ 0x2bd1d: "(\x10\U0002bd1d", // 𫴝
+ 0x2bd1e: "(\x10\U0002bd1e", // 𫴞
+ 0x2bd1f: "(\x10\U0002bd1f", // 𫴟
+ 0x2bd20: "(\x11\U0002bd20", // 𫴠
+ 0x2bd21: "(\x12\U0002bd21", // 𫴡
+ 0x2bd22: "(\x12\U0002bd22", // 𫴢
+ 0x2bd23: "(\x12\U0002bd23", // 𫴣
+ 0x2bd24: "(\x13\U0002bd24", // 𫴤
+ 0x2bd25: "(\x13\U0002bd25", // 𫴥
+ 0x2bd26: "(\x14\U0002bd26", // 𫴦
+ 0x2bd27: "(\x14\U0002bd27", // 𫴧
+ 0x2bd28: "(\x15\U0002bd28", // 𫴨
+ 0x2bd29: "(\x15\U0002bd29", // 𫴩
+ 0x2bd2a: "(\x15\U0002bd2a", // 𫴪
+ 0x2bd2b: "(\x1a\U0002bd2b", // 𫴫
+ 0x2bd2c: ")\x06\U0002bd2c", // 𫴬
+ 0x2bd2d: ")\a\U0002bd2d", // 𫴭
+ 0x2bd2e: ")\t\U0002bd2e", // 𫴮
+ 0x2bd2f: ")\t\U0002bd2f", // 𫴯
+ 0x2bd30: ")\n\U0002bd30", // 𫴰
+ 0x2bd31: ")\n\U0002bd31", // 𫴱
+ 0x2bd32: ")\n\U0002bd32", // 𫴲
+ 0x2bd33: ")\n\U0002bd33", // 𫴳
+ 0x2bd34: ")\f\U0002bd34", // 𫴴
+ 0x2bd35: ")\f\U0002bd35", // 𫴵
+ 0x2bd36: ")\x12\U0002bd36", // 𫴶
+ 0x2bd37: ")\x12\U0002bd37", // 𫴷
+ 0x2bd38: "*\x04\U0002bd38", // 𫴸
+ 0x2bd39: "*\x04\U0002bd39", // 𫴹
+ 0x2bd3a: "*\x05\U0002bd3a", // 𫴺
+ 0x2bd3b: "*\x05\U0002bd3b", // 𫴻
+ 0x2bd3c: "*\x06\U0002bd3c", // 𫴼
+ 0x2bd3d: "*\x06\U0002bd3d", // 𫴽
+ 0x2bd3e: "*\b\U0002bd3e", // 𫴾
+ 0x2bd3f: "*\b\U0002bd3f", // 𫴿
+ 0x2bd40: "*\b\U0002bd40", // 𫵀
+ 0x2bd41: "*\b\U0002bd41", // 𫵁
+ 0x2bd42: "*\b\U0002bd42", // 𫵂
+ 0x2bd43: "*\b\U0002bd43", // 𫵃
+ 0x2bd44: "*\t\U0002bd44", // 𫵄
+ 0x2bd45: "*\t\U0002bd45", // 𫵅
+ 0x2bd46: "*\v\U0002bd46", // 𫵆
+ 0x2bd47: "*\v\U0002bd47", // 𫵇
+ 0x2bd48: "*\f\U0002bd48", // 𫵈
+ 0x2bd49: "*\f\U0002bd49", // 𫵉
+ 0x2bd4a: "*\r\U0002bd4a", // 𫵊
+ 0x2bd4b: "*\r\U0002bd4b", // 𫵋
+ 0x2bd4c: "*\r\U0002bd4c", // 𫵌
+ 0x2bd4d: "*\x10\U0002bd4d", // 𫵍
+ 0x2bd4e: "+\x02\U0002bd4e", // 𫵎
+ 0x2bd4f: "+\x04\U0002bd4f", // 𫵏
+ 0x2bd50: "+\x05\U0002bd50", // 𫵐
+ 0x2bd51: "+\b\U0002bd51", // 𫵑
+ 0x2bd52: "+\f\U0002bd52", // 𫵒
+ 0x2bd53: ",\x04\U0002bd53", // 𫵓
+ 0x2bd54: ",\x04\U0002bd54", // 𫵔
+ 0x2bd55: ",\x04\U0002bd55", // 𫵕
+ 0x2bd56: ",\x05\U0002bd56", // 𫵖
+ 0x2bd57: ",\x05\U0002bd57", // 𫵗
+ 0x2bd58: ",\x05\U0002bd58", // 𫵘
+ 0x2bd59: ",\x06\U0002bd59", // 𫵙
+ 0x2bd5a: ",\x06\U0002bd5a", // 𫵚
+ 0x2bd5b: ",\x06\U0002bd5b", // 𫵛
+ 0x2bd5c: ",\x06\U0002bd5c", // 𫵜
+ 0x2bd5d: ",\x06\U0002bd5d", // 𫵝
+ 0x2bd5e: ",\a\U0002bd5e", // 𫵞
+ 0x2bd5f: ",\a\U0002bd5f", // 𫵟
+ 0x2bd60: ",\b\U0002bd60", // 𫵠
+ 0x2bd61: ",\n\U0002bd61", // 𫵡
+ 0x2bd62: ",\v\U0002bd62", // 𫵢
+ 0x2bd63: ",\v\U0002bd63", // 𫵣
+ 0x2bd64: ",\v\U0002bd64", // 𫵤
+ 0x2bd65: ",\v\U0002bd65", // 𫵥
+ 0x2bd66: ",\r\U0002bd66", // 𫵦
+ 0x2bd67: ",\r\U0002bd67", // 𫵧
+ 0x2bd68: ",\x0e\U0002bd68", // 𫵨
+ 0x2bd69: ",\x0f\U0002bd69", // 𫵩
+ 0x2bd6a: ",\x10\U0002bd6a", // 𫵪
+ 0x2bd6b: ",\x10\U0002bd6b", // 𫵫
+ 0x2bd6c: ",\x12\U0002bd6c", // 𫵬
+ 0x2bd6d: ",\x12\U0002bd6d", // 𫵭
+ 0x2bd6e: "-\a\U0002bd6e", // 𫵮
+ 0x2bd6f: "-\v\U0002bd6f", // 𫵯
+ 0x2bd70: "-\v\U0002bd70", // 𫵰
+ 0x2bd71: ".\x02\U0002bd71", // 𫵱
+ 0x2bd72: ".\x02\U0002bd72", // 𫵲
+ 0x2bd73: ".\x02\U0002bd73", // 𫵳
+ 0x2bd74: ".\x02\U0002bd74", // 𫵴
+ 0x2bd75: ".\x03\U0002bd75", // 𫵵
+ 0x2bd76: ".\x04\U0002bd76", // 𫵶
+ 0x2bd77: ".\x04\U0002bd77", // 𫵷
+ 0x2bd78: ".\x05\U0002bd78", // 𫵸
+ 0x2bd79: ".\x05\U0002bd79", // 𫵹
+ 0x2bd7a: ".\x06\U0002bd7a", // 𫵺
+ 0x2bd7b: ".\x06\U0002bd7b", // 𫵻
+ 0x2bd7c: ".\a\U0002bd7c", // 𫵼
+ 0x2bd7d: ".\a\U0002bd7d", // 𫵽
+ 0x2bd7e: ".\a\U0002bd7e", // 𫵾
+ 0x2bd7f: ".\a\U0002bd7f", // 𫵿
+ 0x2bd80: ".\a\U0002bd80", // 𫶀
+ 0x2bd81: ".\b\U0002bd81", // 𫶁
+ 0x2bd82: ".\b\U0002bd82", // 𫶂
+ 0x2bd83: ".\b\U0002bd83", // 𫶃
+ 0x2bd84: ".\b\U0002bd84", // 𫶄
+ 0x2bd85: ".\b\U0002bd85", // 𫶅
+ 0x2bd86: ".\t\U0002bd86", // 𫶆
+ 0x2bd87: ".\t\U0002bd87", // 𫶇
+ 0x2bd88: ".\t\U0002bd88", // 𫶈
+ 0x2bd89: ".\t\U0002bd89", // 𫶉
+ 0x2bd8a: ".\n\U0002bd8a", // 𫶊
+ 0x2bd8b: ".\n\U0002bd8b", // 𫶋
+ 0x2bd8c: ".\n\U0002bd8c", // 𫶌
+ 0x2bd8d: ".\n\U0002bd8d", // 𫶍
+ 0x2bd8e: ".\n\U0002bd8e", // 𫶎
+ 0x2bd8f: ".\n\U0002bd8f", // 𫶏
+ 0x2bd90: ".\n\U0002bd90", // 𫶐
+ 0x2bd91: ".\v\U0002bd91", // 𫶑
+ 0x2bd92: ".\v\U0002bd92", // 𫶒
+ 0x2bd93: ".\v\U0002bd93", // 𫶓
+ 0x2bd94: ".\v\U0002bd94", // 𫶔
+ 0x2bd95: ".\f\U0002bd95", // 𫶕
+ 0x2bd96: ".\f\U0002bd96", // 𫶖
+ 0x2bd97: ".\r\U0002bd97", // 𫶗
+ 0x2bd98: ".\r\U0002bd98", // 𫶘
+ 0x2bd99: ".\r\U0002bd99", // 𫶙
+ 0x2bd9a: ".\r\U0002bd9a", // 𫶚
+ 0x2bd9b: ".\r\U0002bd9b", // 𫶛
+ 0x2bd9c: ".\r\U0002bd9c", // 𫶜
+ 0x2bd9d: ".\x0e\U0002bd9d", // 𫶝
+ 0x2bd9e: ".\x0f\U0002bd9e", // 𫶞
+ 0x2bd9f: ".\x10\U0002bd9f", // 𫶟
+ 0x2bda0: ".\x10\U0002bda0", // 𫶠
+ 0x2bda1: ".\x10\U0002bda1", // 𫶡
+ 0x2bda2: ".\x10\U0002bda2", // 𫶢
+ 0x2bda3: ".\x10\U0002bda3", // 𫶣
+ 0x2bda4: ".\x12\U0002bda4", // 𫶤
+ 0x2bda5: ".\x15\U0002bda5", // 𫶥
+ 0x2bda6: ".\x17\U0002bda6", // 𫶦
+ 0x2bda7: "/\x00\U0002bda7", // 𫶧
+ 0x2bda8: "/\a\U0002bda8", // 𫶨
+ 0x2bda9: "/\b\U0002bda9", // 𫶩
+ 0x2bdaa: "/\x12\U0002bdaa", // 𫶪
+ 0x2bdab: "0\x04\U0002bdab", // 𫶫
+ 0x2bdac: "0\x05\U0002bdac", // 𫶬
+ 0x2bdad: "0\x06\U0002bdad", // 𫶭
+ 0x2bdae: "0\b\U0002bdae", // 𫶮
+ 0x2bdaf: "0\n\U0002bdaf", // 𫶯
+ 0x2bdb0: "0\v\U0002bdb0", // 𫶰
+ 0x2bdb1: "0\f\U0002bdb1", // 𫶱
+ 0x2bdb2: "0\r\U0002bdb2", // 𫶲
+ 0x2bdb3: "0\r\U0002bdb3", // 𫶳
+ 0x2bdb4: "0\x0e\U0002bdb4", // 𫶴
+ 0x2bdb5: "1\x03\U0002bdb5", // 𫶵
+ 0x2bdb6: "1\a\U0002bdb6", // 𫶶
+ 0x2bdb7: "1\b\U0002bdb7", // 𫶷
+ 0x2bdb8: "1\t\U0002bdb8", // 𫶸
+ 0x2bdb9: "1\t\U0002bdb9", // 𫶹
+ 0x2bdba: "1\r\U0002bdba", // 𫶺
+ 0x2bdbb: "1\x0f\U0002bdbb", // 𫶻
+ 0x2bdbc: "1\x0f\U0002bdbc", // 𫶼
+ 0x2bdbd: "2\x02\U0002bdbd", // 𫶽
+ 0x2bdbe: "2\x02\U0002bdbe", // 𫶾
+ 0x2bdbf: "2\x04\U0002bdbf", // 𫶿
+ 0x2bdc0: "2\x04\U0002bdc0", // 𫷀
+ 0x2bdc1: "2\x04\U0002bdc1", // 𫷁
+ 0x2bdc2: "2\x04\U0002bdc2", // 𫷂
+ 0x2bdc3: "2\x05\U0002bdc3", // 𫷃
+ 0x2bdc4: "2\x05\U0002bdc4", // 𫷄
+ 0x2bdc5: "2\x06\U0002bdc5", // 𫷅
+ 0x2bdc6: "2\b\U0002bdc6", // 𫷆
+ 0x2bdc7: "2\b\U0002bdc7", // 𫷇
+ 0x2bdc8: "2\t\U0002bdc8", // 𫷈
+ 0x2bdc9: "2\t\U0002bdc9", // 𫷉
+ 0x2bdca: "2\n\U0002bdca", // 𫷊
+ 0x2bdcb: "2\n\U0002bdcb", // 𫷋
+ 0x2bdcc: "2\n\U0002bdcc", // 𫷌
+ 0x2bdcd: "2\n\U0002bdcd", // 𫷍
+ 0x2bdce: "2\n\U0002bdce", // 𫷎
+ 0x2bdcf: "2\n\U0002bdcf", // 𫷏
+ 0x2bdd0: "2\r\U0002bdd0", // 𫷐
+ 0x2bdd1: "2\r\U0002bdd1", // 𫷑
+ 0x2bdd2: "2\x10\U0002bdd2", // 𫷒
+ 0x2bdd3: "2\x10\U0002bdd3", // 𫷓
+ 0x2bdd4: "3\x03\U0002bdd4", // 𫷔
+ 0x2bdd5: "3\x04\U0002bdd5", // 𫷕
+ 0x2bdd6: "3\x04\U0002bdd6", // 𫷖
+ 0x2bdd7: "3\b\U0002bdd7", // 𫷗
+ 0x2bdd8: "3\n\U0002bdd8", // 𫷘
+ 0x2bdd9: "3\n\U0002bdd9", // 𫷙
+ 0x2bdda: "3\n\U0002bdda", // 𫷚
+ 0x2bddb: "3\v\U0002bddb", // 𫷛
+ 0x2bddc: "3\f\U0002bddc", // 𫷜
+ 0x2bddd: "3\f\U0002bddd", // 𫷝
+ 0x2bdde: "3\x0f\U0002bdde", // 𫷞
+ 0x2bddf: "4\x06\U0002bddf", // 𫷟
+ 0x2bde0: "4\t\U0002bde0", // 𫷠
+ 0x2bde1: "4\t\U0002bde1", // 𫷡
+ 0x2bde2: "4\n\U0002bde2", // 𫷢
+ 0x2bde3: "4\n\U0002bde3", // 𫷣
+ 0x2bde4: "4\f\U0002bde4", // 𫷤
+ 0x2bde5: "5\x02\U0002bde5", // 𫷥
+ 0x2bde6: "5\x03\U0002bde6", // 𫷦
+ 0x2bde7: "5\x04\U0002bde7", // 𫷧
+ 0x2bde8: "5\x06\U0002bde8", // 𫷨
+ 0x2bde9: "5\x06\U0002bde9", // 𫷩
+ 0x2bdea: "5\a\U0002bdea", // 𫷪
+ 0x2bdeb: "5\a\U0002bdeb", // 𫷫
+ 0x2bdec: "5\a\U0002bdec", // 𫷬
+ 0x2bded: "5\a\U0002bded", // 𫷭
+ 0x2bdee: "5\a\U0002bdee", // 𫷮
+ 0x2bdef: "5\a\U0002bdef", // 𫷯
+ 0x2bdf0: "5\b\U0002bdf0", // 𫷰
+ 0x2bdf1: "5\b\U0002bdf1", // 𫷱
+ 0x2bdf2: "5\b\U0002bdf2", // 𫷲
+ 0x2bdf3: "5\b\U0002bdf3", // 𫷳
+ 0x2bdf4: "5\b\U0002bdf4", // 𫷴
+ 0x2bdf5: "5\b\U0002bdf5", // 𫷵
+ 0x2bdf6: "5\t\U0002bdf6", // 𫷶
+ 0x2bdf7: "5\t\U0002bdf7", // 𫷷
+ 0x2bdf8: "5\t\U0002bdf8", // 𫷸
+ 0x2bdf9: "5\t\U0002bdf9", // 𫷹
+ 0x2bdfa: "5\n\U0002bdfa", // 𫷺
+ 0x2bdfb: "5\n\U0002bdfb", // 𫷻
+ 0x2bdfc: "5\v\U0002bdfc", // 𫷼
+ 0x2bdfd: "5\v\U0002bdfd", // 𫷽
+ 0x2bdfe: "5\v\U0002bdfe", // 𫷾
+ 0x2bdff: "5\v\U0002bdff", // 𫷿
+ 0x2be00: "5\f\U0002be00", // 𫸀
+ 0x2be01: "5\r\U0002be01", // 𫸁
+ 0x2be02: "5\r\U0002be02", // 𫸂
+ 0x2be03: "5\x0e\U0002be03", // 𫸃
+ 0x2be04: "5\x0e\U0002be04", // 𫸄
+ 0x2be05: "5\x0e\U0002be05", // 𫸅
+ 0x2be06: "5\x0e\U0002be06", // 𫸆
+ 0x2be07: "5\x0f\U0002be07", // 𫸇
+ 0x2be08: "5\x10\U0002be08", // 𫸈
+ 0x2be09: "5\x11\U0002be09", // 𫸉
+ 0x2be0a: "5\x12\U0002be0a", // 𫸊
+ 0x2be0b: "5\x13\U0002be0b", // 𫸋
+ 0x2be0c: "5\x13\U0002be0c", // 𫸌
+ 0x2be0d: "5\x14\U0002be0d", // 𫸍
+ 0x2be0e: "5\x14\U0002be0e", // 𫸎
+ 0x2be0f: "5\x16\U0002be0f", // 𫸏
+ 0x2be10: "5\x17\U0002be10", // 𫸐
+ 0x2be11: "6\x03\U0002be11", // 𫸑
+ 0x2be12: "6\b\U0002be12", // 𫸒
+ 0x2be13: "6\b\U0002be13", // 𫸓
+ 0x2be14: "6\r\U0002be14", // 𫸔
+ 0x2be15: "6\x10\U0002be15", // 𫸕
+ 0x2be16: "7\x03\U0002be16", // 𫸖
+ 0x2be17: "7\x05\U0002be17", // 𫸗
+ 0x2be18: "7\x05\U0002be18", // 𫸘
+ 0x2be19: "7\x05\U0002be19", // 𫸙
+ 0x2be1a: "7\a\U0002be1a", // 𫸚
+ 0x2be1b: "7\a\U0002be1b", // 𫸛
+ 0x2be1c: "7\b\U0002be1c", // 𫸜
+ 0x2be1d: "7\b\U0002be1d", // 𫸝
+ 0x2be1e: "7\t\U0002be1e", // 𫸞
+ 0x2be1f: "7\n\U0002be1f", // 𫸟
+ 0x2be20: "7\r\U0002be20", // 𫸠
+ 0x2be21: "7\r\U0002be21", // 𫸡
+ 0x2be22: "7\x0e\U0002be22", // 𫸢
+ 0x2be23: "7\x0f\U0002be23", // 𫸣
+ 0x2be24: "7\x11\U0002be24", // 𫸤
+ 0x2be25: "9\x03\U0002be25", // 𫸥
+ 0x2be26: "9\x03\U0002be26", // 𫸦
+ 0x2be27: "9\x03\U0002be27", // 𫸧
+ 0x2be28: "9\x04\U0002be28", // 𫸨
+ 0x2be29: "9\x04\U0002be29", // 𫸩
+ 0x2be2a: "9\x04\U0002be2a", // 𫸪
+ 0x2be2b: "9\x05\U0002be2b", // 𫸫
+ 0x2be2c: "9\x05\U0002be2c", // 𫸬
+ 0x2be2d: "9\x05\U0002be2d", // 𫸭
+ 0x2be2e: "9\x06\U0002be2e", // 𫸮
+ 0x2be2f: "9\x06\U0002be2f", // 𫸯
+ 0x2be30: "9\x06\U0002be30", // 𫸰
+ 0x2be31: "9\x06\U0002be31", // 𫸱
+ 0x2be32: "9\x06\U0002be32", // 𫸲
+ 0x2be33: "9\a\U0002be33", // 𫸳
+ 0x2be34: "9\a\U0002be34", // 𫸴
+ 0x2be35: "9\a\U0002be35", // 𫸵
+ 0x2be36: "9\a\U0002be36", // 𫸶
+ 0x2be37: "9\b\U0002be37", // 𫸷
+ 0x2be38: "9\b\U0002be38", // 𫸸
+ 0x2be39: "9\t\U0002be39", // 𫸹
+ 0x2be3a: "9\t\U0002be3a", // 𫸺
+ 0x2be3b: "9\v\U0002be3b", // 𫸻
+ 0x2be3c: "9\f\U0002be3c", // 𫸼
+ 0x2be3d: "9\f\U0002be3d", // 𫸽
+ 0x2be3e: "9\r\U0002be3e", // 𫸾
+ 0x2be3f: "9\r\U0002be3f", // 𫸿
+ 0x2be40: "9\x0e\U0002be40", // 𫹀
+ 0x2be41: "9\x0f\U0002be41", // 𫹁
+ 0x2be42: "9\x11\U0002be42", // 𫹂
+ 0x2be43: "9\x12\U0002be43", // 𫹃
+ 0x2be44: ":\x05\U0002be44", // 𫹄
+ 0x2be45: ":\t\U0002be45", // 𫹅
+ 0x2be46: ":\t\U0002be46", // 𫹆
+ 0x2be47: ":\f\U0002be47", // 𫹇
+ 0x2be48: ":\f\U0002be48", // 𫹈
+ 0x2be49: ";\a\U0002be49", // 𫹉
+ 0x2be4a: ";\x0e\U0002be4a", // 𫹊
+ 0x2be4b: "<\x02\U0002be4b", // 𫹋
+ 0x2be4c: "<\x03\U0002be4c", // 𫹌
+ 0x2be4d: "<\x04\U0002be4d", // 𫹍
+ 0x2be4e: "<\x04\U0002be4e", // 𫹎
+ 0x2be4f: "<\x04\U0002be4f", // 𫹏
+ 0x2be50: "<\x04\U0002be50", // 𫹐
+ 0x2be51: "<\x05\U0002be51", // 𫹑
+ 0x2be52: "<\x06\U0002be52", // 𫹒
+ 0x2be53: "<\x06\U0002be53", // 𫹓
+ 0x2be54: "<\a\U0002be54", // 𫹔
+ 0x2be55: "<\a\U0002be55", // 𫹕
+ 0x2be56: "<\b\U0002be56", // 𫹖
+ 0x2be57: "<\b\U0002be57", // 𫹗
+ 0x2be58: "<\b\U0002be58", // 𫹘
+ 0x2be59: "<\t\U0002be59", // 𫹙
+ 0x2be5a: "<\t\U0002be5a", // 𫹚
+ 0x2be5b: "<\t\U0002be5b", // 𫹛
+ 0x2be5c: "<\t\U0002be5c", // 𫹜
+ 0x2be5d: "<\t\U0002be5d", // 𫹝
+ 0x2be5e: "<\n\U0002be5e", // 𫹞
+ 0x2be5f: "<\n\U0002be5f", // 𫹟
+ 0x2be60: "<\n\U0002be60", // 𫹠
+ 0x2be61: "<\v\U0002be61", // 𫹡
+ 0x2be62: "<\v\U0002be62", // 𫹢
+ 0x2be63: "<\f\U0002be63", // 𫹣
+ 0x2be64: "<\f\U0002be64", // 𫹤
+ 0x2be65: "<\f\U0002be65", // 𫹥
+ 0x2be66: "<\x0e\U0002be66", // 𫹦
+ 0x2be67: "<\x0f\U0002be67", // 𫹧
+ 0x2be68: "<\x0f\U0002be68", // 𫹨
+ 0x2be69: "<\x12\U0002be69", // 𫹩
+ 0x2be6a: "<\x14\U0002be6a", // 𫹪
+ 0x2be6b: "=\x02\U0002be6b", // 𫹫
+ 0x2be6c: "=\x02\U0002be6c", // 𫹬
+ 0x2be6d: "=\x02\U0002be6d", // 𫹭
+ 0x2be6e: "=\x03\U0002be6e", // 𫹮
+ 0x2be6f: "=\x03\U0002be6f", // 𫹯
+ 0x2be70: "=\x03\U0002be70", // 𫹰
+ 0x2be71: "=\x03\U0002be71", // 𫹱
+ 0x2be72: "=\x04\U0002be72", // 𫹲
+ 0x2be73: "=\x04\U0002be73", // 𫹳
+ 0x2be74: "=\x04\U0002be74", // 𫹴
+ 0x2be75: "=\x04\U0002be75", // 𫹵
+ 0x2be76: "=\x04\U0002be76", // 𫹶
+ 0x2be77: "=\x04\U0002be77", // 𫹷
+ 0x2be78: "=\x04\U0002be78", // 𫹸
+ 0x2be79: "=\x04\U0002be79", // 𫹹
+ 0x2be7a: "=\x05\U0002be7a", // 𫹺
+ 0x2be7b: "=\x05\U0002be7b", // 𫹻
+ 0x2be7c: "=\x05\U0002be7c", // 𫹼
+ 0x2be7d: "=\x05\U0002be7d", // 𫹽
+ 0x2be7e: "=\x05\U0002be7e", // 𫹾
+ 0x2be7f: "=\x05\U0002be7f", // 𫹿
+ 0x2be80: "=\x06\U0002be80", // 𫺀
+ 0x2be81: "=\x06\U0002be81", // 𫺁
+ 0x2be82: "=\x06\U0002be82", // 𫺂
+ 0x2be83: "=\x06\U0002be83", // 𫺃
+ 0x2be84: "=\x06\U0002be84", // 𫺄
+ 0x2be85: "=\x06\U0002be85", // 𫺅
+ 0x2be86: "=\x06\U0002be86", // 𫺆
+ 0x2be87: "=\x06\U0002be87", // 𫺇
+ 0x2be88: "=\x06\U0002be88", // 𫺈
+ 0x2be89: "=\x06\U0002be89", // 𫺉
+ 0x2be8a: "=\x06\U0002be8a", // 𫺊
+ 0x2be8b: "=\x06\U0002be8b", // 𫺋
+ 0x2be8c: "=\a\U0002be8c", // 𫺌
+ 0x2be8d: "=\a\U0002be8d", // 𫺍
+ 0x2be8e: "=\a\U0002be8e", // 𫺎
+ 0x2be8f: "=\a\U0002be8f", // 𫺏
+ 0x2be90: "=\a\U0002be90", // 𫺐
+ 0x2be91: "=\a\U0002be91", // 𫺑
+ 0x2be92: "=\a\U0002be92", // 𫺒
+ 0x2be93: "=\a\U0002be93", // 𫺓
+ 0x2be94: "=\a\U0002be94", // 𫺔
+ 0x2be95: "=\a\U0002be95", // 𫺕
+ 0x2be96: "=\b\U0002be96", // 𫺖
+ 0x2be97: "=\b\U0002be97", // 𫺗
+ 0x2be98: "=\b\U0002be98", // 𫺘
+ 0x2be99: "=\b\U0002be99", // 𫺙
+ 0x2be9a: "=\b\U0002be9a", // 𫺚
+ 0x2be9b: "=\b\U0002be9b", // 𫺛
+ 0x2be9c: "=\b\U0002be9c", // 𫺜
+ 0x2be9d: "=\b\U0002be9d", // 𫺝
+ 0x2be9e: "=\b\U0002be9e", // 𫺞
+ 0x2be9f: "=\b\U0002be9f", // 𫺟
+ 0x2bea0: "=\t\U0002bea0", // 𫺠
+ 0x2bea1: "=\t\U0002bea1", // 𫺡
+ 0x2bea2: "=\t\U0002bea2", // 𫺢
+ 0x2bea3: "=\t\U0002bea3", // 𫺣
+ 0x2bea4: "=\t\U0002bea4", // 𫺤
+ 0x2bea5: "=\t\U0002bea5", // 𫺥
+ 0x2bea6: "=\t\U0002bea6", // 𫺦
+ 0x2bea7: "=\t\U0002bea7", // 𫺧
+ 0x2bea8: "=\t\U0002bea8", // 𫺨
+ 0x2bea9: "=\t\U0002bea9", // 𫺩
+ 0x2beaa: "=\t\U0002beaa", // 𫺪
+ 0x2beab: "=\t\U0002beab", // 𫺫
+ 0x2beac: "=\t\U0002beac", // 𫺬
+ 0x2bead: "=\t\U0002bead", // 𫺭
+ 0x2beae: "=\n\U0002beae", // 𫺮
+ 0x2beaf: "=\n\U0002beaf", // 𫺯
+ 0x2beb0: "=\n\U0002beb0", // 𫺰
+ 0x2beb1: "=\n\U0002beb1", // 𫺱
+ 0x2beb2: "=\n\U0002beb2", // 𫺲
+ 0x2beb3: "=\n\U0002beb3", // 𫺳
+ 0x2beb4: "=\n\U0002beb4", // 𫺴
+ 0x2beb5: "=\n\U0002beb5", // 𫺵
+ 0x2beb6: "=\n\U0002beb6", // 𫺶
+ 0x2beb7: "=\n\U0002beb7", // 𫺷
+ 0x2beb8: "=\v\U0002beb8", // 𫺸
+ 0x2beb9: "=\v\U0002beb9", // 𫺹
+ 0x2beba: "=\v\U0002beba", // 𫺺
+ 0x2bebb: "=\v\U0002bebb", // 𫺻
+ 0x2bebc: "=\v\U0002bebc", // 𫺼
+ 0x2bebd: "=\v\U0002bebd", // 𫺽
+ 0x2bebe: "=\v\U0002bebe", // 𫺾
+ 0x2bebf: "=\v\U0002bebf", // 𫺿
+ 0x2bec0: "=\v\U0002bec0", // 𫻀
+ 0x2bec1: "=\v\U0002bec1", // 𫻁
+ 0x2bec2: "=\v\U0002bec2", // 𫻂
+ 0x2bec3: "=\f\U0002bec3", // 𫻃
+ 0x2bec4: "=\f\U0002bec4", // 𫻄
+ 0x2bec5: "=\f\U0002bec5", // 𫻅
+ 0x2bec6: "=\f\U0002bec6", // 𫻆
+ 0x2bec7: "=\f\U0002bec7", // 𫻇
+ 0x2bec8: "=\f\U0002bec8", // 𫻈
+ 0x2bec9: "=\f\U0002bec9", // 𫻉
+ 0x2beca: "=\r\U0002beca", // 𫻊
+ 0x2becb: "=\r\U0002becb", // 𫻋
+ 0x2becc: "=\r\U0002becc", // 𫻌
+ 0x2becd: "=\r\U0002becd", // 𫻍
+ 0x2bece: "=\r\U0002bece", // 𫻎
+ 0x2becf: "=\r\U0002becf", // 𫻏
+ 0x2bed0: "=\x0e\U0002bed0", // 𫻐
+ 0x2bed1: "=\x0e\U0002bed1", // 𫻑
+ 0x2bed2: "=\x0e\U0002bed2", // 𫻒
+ 0x2bed3: "=\x0f\U0002bed3", // 𫻓
+ 0x2bed4: "=\x0f\U0002bed4", // 𫻔
+ 0x2bed5: "=\x0f\U0002bed5", // 𫻕
+ 0x2bed6: "=\x0f\U0002bed6", // 𫻖
+ 0x2bed7: "=\x0f\U0002bed7", // 𫻗
+ 0x2bed8: "=\x0f\U0002bed8", // 𫻘
+ 0x2bed9: "=\x0f\U0002bed9", // 𫻙
+ 0x2beda: "=\x10\U0002beda", // 𫻚
+ 0x2bedb: "=\x10\U0002bedb", // 𫻛
+ 0x2bedc: "=\x10\U0002bedc", // 𫻜
+ 0x2bedd: "=\x11\U0002bedd", // 𫻝
+ 0x2bede: "=\x11\U0002bede", // 𫻞
+ 0x2bedf: "=\x11\U0002bedf", // 𫻟
+ 0x2bee0: "=\x11\U0002bee0", // 𫻠
+ 0x2bee1: "=\x11\U0002bee1", // 𫻡
+ 0x2bee2: "=\x12\U0002bee2", // 𫻢
+ 0x2bee3: "=\x12\U0002bee3", // 𫻣
+ 0x2bee4: "=\x12\U0002bee4", // 𫻤
+ 0x2bee5: "=\x18\U0002bee5", // 𫻥
+ 0x2bee6: ">\x02\U0002bee6", // 𫻦
+ 0x2bee7: ">\x02\U0002bee7", // 𫻧
+ 0x2bee8: ">\x03\U0002bee8", // 𫻨
+ 0x2bee9: ">\x04\U0002bee9", // 𫻩
+ 0x2beea: ">\x04\U0002beea", // 𫻪
+ 0x2beeb: ">\x05\U0002beeb", // 𫻫
+ 0x2beec: ">\x05\U0002beec", // 𫻬
+ 0x2beed: ">\x06\U0002beed", // 𫻭
+ 0x2beee: ">\x06\U0002beee", // 𫻮
+ 0x2beef: ">\x06\U0002beef", // 𫻯
+ 0x2bef0: ">\x06\U0002bef0", // 𫻰
+ 0x2bef1: ">\x06\U0002bef1", // 𫻱
+ 0x2bef2: ">\a\U0002bef2", // 𫻲
+ 0x2bef3: ">\a\U0002bef3", // 𫻳
+ 0x2bef4: ">\a\U0002bef4", // 𫻴
+ 0x2bef5: ">\a\U0002bef5", // 𫻵
+ 0x2bef6: ">\a\U0002bef6", // 𫻶
+ 0x2bef7: ">\b\U0002bef7", // 𫻷
+ 0x2bef8: ">\b\U0002bef8", // 𫻸
+ 0x2bef9: ">\b\U0002bef9", // 𫻹
+ 0x2befa: ">\b\U0002befa", // 𫻺
+ 0x2befb: ">\b\U0002befb", // 𫻻
+ 0x2befc: ">\b\U0002befc", // 𫻼
+ 0x2befd: ">\b\U0002befd", // 𫻽
+ 0x2befe: ">\b\U0002befe", // 𫻾
+ 0x2beff: ">\t\U0002beff", // 𫻿
+ 0x2bf00: ">\t\U0002bf00", // 𫼀
+ 0x2bf01: ">\n\U0002bf01", // 𫼁
+ 0x2bf02: ">\v\U0002bf02", // 𫼂
+ 0x2bf03: ">\v\U0002bf03", // 𫼃
+ 0x2bf04: ">\f\U0002bf04", // 𫼄
+ 0x2bf05: ">\f\U0002bf05", // 𫼅
+ 0x2bf06: ">\f\U0002bf06", // 𫼆
+ 0x2bf07: ">\f\U0002bf07", // 𫼇
+ 0x2bf08: ">\f\U0002bf08", // 𫼈
+ 0x2bf09: "?\x04\U0002bf09", // 𫼉
+ 0x2bf0a: "?\x05\U0002bf0a", // 𫼊
+ 0x2bf0b: "?\x06\U0002bf0b", // 𫼋
+ 0x2bf0c: "?\x06\U0002bf0c", // 𫼌
+ 0x2bf0d: "?\a\U0002bf0d", // 𫼍
+ 0x2bf0e: "?\a\U0002bf0e", // 𫼎
+ 0x2bf0f: "?\b\U0002bf0f", // 𫼏
+ 0x2bf10: "?\b\U0002bf10", // 𫼐
+ 0x2bf11: "?\t\U0002bf11", // 𫼑
+ 0x2bf12: "?\x15\U0002bf12", // 𫼒
+ 0x2bf13: "@\x01\U0002bf13", // 𫼓
+ 0x2bf14: "@\x02\U0002bf14", // 𫼔
+ 0x2bf15: "@\x03\U0002bf15", // 𫼕
+ 0x2bf16: "@\x03\U0002bf16", // 𫼖
+ 0x2bf17: "@\x03\U0002bf17", // 𫼗
+ 0x2bf18: "@\x04\U0002bf18", // 𫼘
+ 0x2bf19: "@\x04\U0002bf19", // 𫼙
+ 0x2bf1a: "@\x04\U0002bf1a", // 𫼚
+ 0x2bf1b: "@\x04\U0002bf1b", // 𫼛
+ 0x2bf1c: "@\x05\U0002bf1c", // 𫼜
+ 0x2bf1d: "@\x05\U0002bf1d", // 𫼝
+ 0x2bf1e: "@\x05\U0002bf1e", // 𫼞
+ 0x2bf1f: "@\x05\U0002bf1f", // 𫼟
+ 0x2bf20: "@\x05\U0002bf20", // 𫼠
+ 0x2bf21: "@\x05\U0002bf21", // 𫼡
+ 0x2bf22: "@\x06\U0002bf22", // 𫼢
+ 0x2bf23: "@\x06\U0002bf23", // 𫼣
+ 0x2bf24: "@\x06\U0002bf24", // 𫼤
+ 0x2bf25: "@\x06\U0002bf25", // 𫼥
+ 0x2bf26: "@\x06\U0002bf26", // 𫼦
+ 0x2bf27: "@\x06\U0002bf27", // 𫼧
+ 0x2bf28: "@\x06\U0002bf28", // 𫼨
+ 0x2bf29: "@\x06\U0002bf29", // 𫼩
+ 0x2bf2a: "@\x06\U0002bf2a", // 𫼪
+ 0x2bf2b: "@\x06\U0002bf2b", // 𫼫
+ 0x2bf2c: "@\x06\U0002bf2c", // 𫼬
+ 0x2bf2d: "@\x06\U0002bf2d", // 𫼭
+ 0x2bf2e: "@\x06\U0002bf2e", // 𫼮
+ 0x2bf2f: "@\x06\U0002bf2f", // 𫼯
+ 0x2bf30: "@\x06\U0002bf30", // 𫼰
+ 0x2bf31: "@\a\U0002bf31", // 𫼱
+ 0x2bf32: "@\a\U0002bf32", // 𫼲
+ 0x2bf33: "@\a\U0002bf33", // 𫼳
+ 0x2bf34: "@\a\U0002bf34", // 𫼴
+ 0x2bf35: "@\a\U0002bf35", // 𫼵
+ 0x2bf36: "@\a\U0002bf36", // 𫼶
+ 0x2bf37: "@\a\U0002bf37", // 𫼷
+ 0x2bf38: "@\a\U0002bf38", // 𫼸
+ 0x2bf39: "@\a\U0002bf39", // 𫼹
+ 0x2bf3a: "@\a\U0002bf3a", // 𫼺
+ 0x2bf3b: "@\a\U0002bf3b", // 𫼻
+ 0x2bf3c: "@\a\U0002bf3c", // 𫼼
+ 0x2bf3d: "@\a\U0002bf3d", // 𫼽
+ 0x2bf3e: "@\a\U0002bf3e", // 𫼾
+ 0x2bf3f: "@\a\U0002bf3f", // 𫼿
+ 0x2bf40: "@\a\U0002bf40", // 𫽀
+ 0x2bf41: "@\b\U0002bf41", // 𫽁
+ 0x2bf42: "@\b\U0002bf42", // 𫽂
+ 0x2bf43: "@\b\U0002bf43", // 𫽃
+ 0x2bf44: "@\b\U0002bf44", // 𫽄
+ 0x2bf45: "@\b\U0002bf45", // 𫽅
+ 0x2bf46: "@\b\U0002bf46", // 𫽆
+ 0x2bf47: "@\b\U0002bf47", // 𫽇
+ 0x2bf48: "@\b\U0002bf48", // 𫽈
+ 0x2bf49: "@\b\U0002bf49", // 𫽉
+ 0x2bf4a: "@\b\U0002bf4a", // 𫽊
+ 0x2bf4b: "@\b\U0002bf4b", // 𫽋
+ 0x2bf4c: "@\b\U0002bf4c", // 𫽌
+ 0x2bf4d: "@\b\U0002bf4d", // 𫽍
+ 0x2bf4e: "@\b\U0002bf4e", // 𫽎
+ 0x2bf4f: "@\b\U0002bf4f", // 𫽏
+ 0x2bf50: "@\b\U0002bf50", // 𫽐
+ 0x2bf51: "@\b\U0002bf51", // 𫽑
+ 0x2bf52: "@\b\U0002bf52", // 𫽒
+ 0x2bf53: "@\b\U0002bf53", // 𫽓
+ 0x2bf54: "@\b\U0002bf54", // 𫽔
+ 0x2bf55: "@\b\U0002bf55", // 𫽕
+ 0x2bf56: "@\b\U0002bf56", // 𫽖
+ 0x2bf57: "@\t\U0002bf57", // 𫽗
+ 0x2bf58: "@\t\U0002bf58", // 𫽘
+ 0x2bf59: "@\t\U0002bf59", // 𫽙
+ 0x2bf5a: "@\t\U0002bf5a", // 𫽚
+ 0x2bf5b: "@\t\U0002bf5b", // 𫽛
+ 0x2bf5c: "@\t\U0002bf5c", // 𫽜
+ 0x2bf5d: "@\t\U0002bf5d", // 𫽝
+ 0x2bf5e: "@\t\U0002bf5e", // 𫽞
+ 0x2bf5f: "@\t\U0002bf5f", // 𫽟
+ 0x2bf60: "@\t\U0002bf60", // 𫽠
+ 0x2bf61: "@\t\U0002bf61", // 𫽡
+ 0x2bf62: "@\t\U0002bf62", // 𫽢
+ 0x2bf63: "@\t\U0002bf63", // 𫽣
+ 0x2bf64: "@\t\U0002bf64", // 𫽤
+ 0x2bf65: "@\t\U0002bf65", // 𫽥
+ 0x2bf66: "@\t\U0002bf66", // 𫽦
+ 0x2bf67: "@\t\U0002bf67", // 𫽧
+ 0x2bf68: "@\t\U0002bf68", // 𫽨
+ 0x2bf69: "@\n\U0002bf69", // 𫽩
+ 0x2bf6a: "@\n\U0002bf6a", // 𫽪
+ 0x2bf6b: "@\n\U0002bf6b", // 𫽫
+ 0x2bf6c: "@\n\U0002bf6c", // 𫽬
+ 0x2bf6d: "@\n\U0002bf6d", // 𫽭
+ 0x2bf6e: "@\n\U0002bf6e", // 𫽮
+ 0x2bf6f: "@\n\U0002bf6f", // 𫽯
+ 0x2bf70: "@\n\U0002bf70", // 𫽰
+ 0x2bf71: "@\n\U0002bf71", // 𫽱
+ 0x2bf72: "@\n\U0002bf72", // 𫽲
+ 0x2bf73: "@\n\U0002bf73", // 𫽳
+ 0x2bf74: "@\n\U0002bf74", // 𫽴
+ 0x2bf75: "@\n\U0002bf75", // 𫽵
+ 0x2bf76: "@\n\U0002bf76", // 𫽶
+ 0x2bf77: "@\v\U0002bf77", // 𫽷
+ 0x2bf78: "@\v\U0002bf78", // 𫽸
+ 0x2bf79: "@\v\U0002bf79", // 𫽹
+ 0x2bf7a: "@\v\U0002bf7a", // 𫽺
+ 0x2bf7b: "@\v\U0002bf7b", // 𫽻
+ 0x2bf7c: "@\v\U0002bf7c", // 𫽼
+ 0x2bf7d: "@\v\U0002bf7d", // 𫽽
+ 0x2bf7e: "@\v\U0002bf7e", // 𫽾
+ 0x2bf7f: "@\v\U0002bf7f", // 𫽿
+ 0x2bf80: "@\v\U0002bf80", // 𫾀
+ 0x2bf81: "@\v\U0002bf81", // 𫾁
+ 0x2bf82: "@\f\U0002bf82", // 𫾂
+ 0x2bf83: "@\f\U0002bf83", // 𫾃
+ 0x2bf84: "@\f\U0002bf84", // 𫾄
+ 0x2bf85: "@\f\U0002bf85", // 𫾅
+ 0x2bf86: "@\f\U0002bf86", // 𫾆
+ 0x2bf87: "@\f\U0002bf87", // 𫾇
+ 0x2bf88: "@\f\U0002bf88", // 𫾈
+ 0x2bf89: "@\f\U0002bf89", // 𫾉
+ 0x2bf8a: "@\r\U0002bf8a", // 𫾊
+ 0x2bf8b: "@\r\U0002bf8b", // 𫾋
+ 0x2bf8c: "@\r\U0002bf8c", // 𫾌
+ 0x2bf8d: "@\r\U0002bf8d", // 𫾍
+ 0x2bf8e: "@\r\U0002bf8e", // 𫾎
+ 0x2bf8f: "@\r\U0002bf8f", // 𫾏
+ 0x2bf90: "@\x0e\U0002bf90", // 𫾐
+ 0x2bf91: "@\x0e\U0002bf91", // 𫾑
+ 0x2bf92: "@\x0e\U0002bf92", // 𫾒
+ 0x2bf93: "@\x0f\U0002bf93", // 𫾓
+ 0x2bf94: "@\x0f\U0002bf94", // 𫾔
+ 0x2bf95: "@\x0f\U0002bf95", // 𫾕
+ 0x2bf96: "@\x0f\U0002bf96", // 𫾖
+ 0x2bf97: "@\x0f\U0002bf97", // 𫾗
+ 0x2bf98: "@\x0f\U0002bf98", // 𫾘
+ 0x2bf99: "@\x10\U0002bf99", // 𫾙
+ 0x2bf9a: "@\x10\U0002bf9a", // 𫾚
+ 0x2bf9b: "@\x11\U0002bf9b", // 𫾛
+ 0x2bf9c: "@\x12\U0002bf9c", // 𫾜
+ 0x2bf9d: "@\x12\U0002bf9d", // 𫾝
+ 0x2bf9e: "@\x12\U0002bf9e", // 𫾞
+ 0x2bf9f: "@\x13\U0002bf9f", // 𫾟
+ 0x2bfa0: "@\x13\U0002bfa0", // 𫾠
+ 0x2bfa1: "@\x14\U0002bfa1", // 𫾡
+ 0x2bfa2: "@\x15\U0002bfa2", // 𫾢
+ 0x2bfa3: "A\n\U0002bfa3", // 𫾣
+ 0x2bfa4: "A\f\U0002bfa4", // 𫾤
+ 0x2bfa5: "A\x0e\U0002bfa5", // 𫾥
+ 0x2bfa6: "B\x02\U0002bfa6", // 𫾦
+ 0x2bfa7: "B\x03\U0002bfa7", // 𫾧
+ 0x2bfa8: "B\x04\U0002bfa8", // 𫾨
+ 0x2bfa9: "B\x05\U0002bfa9", // 𫾩
+ 0x2bfaa: "B\x06\U0002bfaa", // 𫾪
+ 0x2bfab: "B\x06\U0002bfab", // 𫾫
+ 0x2bfac: "B\x06\U0002bfac", // 𫾬
+ 0x2bfad: "B\x06\U0002bfad", // 𫾭
+ 0x2bfae: "B\x06\U0002bfae", // 𫾮
+ 0x2bfaf: "B\x06\U0002bfaf", // 𫾯
+ 0x2bfb0: "B\x06\U0002bfb0", // 𫾰
+ 0x2bfb1: "B\a\U0002bfb1", // 𫾱
+ 0x2bfb2: "B\a\U0002bfb2", // 𫾲
+ 0x2bfb3: "B\a\U0002bfb3", // 𫾳
+ 0x2bfb4: "B\a\U0002bfb4", // 𫾴
+ 0x2bfb5: "B\a\U0002bfb5", // 𫾵
+ 0x2bfb6: "B\a\U0002bfb6", // 𫾶
+ 0x2bfb7: "B\a\U0002bfb7", // 𫾷
+ 0x2bfb8: "B\a\U0002bfb8", // 𫾸
+ 0x2bfb9: "B\b\U0002bfb9", // 𫾹
+ 0x2bfba: "B\b\U0002bfba", // 𫾺
+ 0x2bfbb: "B\b\U0002bfbb", // 𫾻
+ 0x2bfbc: "B\b\U0002bfbc", // 𫾼
+ 0x2bfbd: "B\b\U0002bfbd", // 𫾽
+ 0x2bfbe: "B\b\U0002bfbe", // 𫾾
+ 0x2bfbf: "B\b\U0002bfbf", // 𫾿
+ 0x2bfc0: "B\b\U0002bfc0", // 𫿀
+ 0x2bfc1: "B\t\U0002bfc1", // 𫿁
+ 0x2bfc2: "B\t\U0002bfc2", // 𫿂
+ 0x2bfc3: "B\t\U0002bfc3", // 𫿃
+ 0x2bfc4: "B\t\U0002bfc4", // 𫿄
+ 0x2bfc5: "B\t\U0002bfc5", // 𫿅
+ 0x2bfc6: "B\t\U0002bfc6", // 𫿆
+ 0x2bfc7: "B\t\U0002bfc7", // 𫿇
+ 0x2bfc8: "B\n\U0002bfc8", // 𫿈
+ 0x2bfc9: "B\n\U0002bfc9", // 𫿉
+ 0x2bfca: "B\n\U0002bfca", // 𫿊
+ 0x2bfcb: "B\n\U0002bfcb", // 𫿋
+ 0x2bfcc: "B\n\U0002bfcc", // 𫿌
+ 0x2bfcd: "B\v\U0002bfcd", // 𫿍
+ 0x2bfce: "B\v\U0002bfce", // 𫿎
+ 0x2bfcf: "B\v\U0002bfcf", // 𫿏
+ 0x2bfd0: "B\v\U0002bfd0", // 𫿐
+ 0x2bfd1: "B\f\U0002bfd1", // 𫿑
+ 0x2bfd2: "B\f\U0002bfd2", // 𫿒
+ 0x2bfd3: "B\f\U0002bfd3", // 𫿓
+ 0x2bfd4: "B\f\U0002bfd4", // 𫿔
+ 0x2bfd5: "B\f\U0002bfd5", // 𫿕
+ 0x2bfd6: "B\f\U0002bfd6", // 𫿖
+ 0x2bfd7: "B\f\U0002bfd7", // 𫿗
+ 0x2bfd8: "B\r\U0002bfd8", // 𫿘
+ 0x2bfd9: "B\r\U0002bfd9", // 𫿙
+ 0x2bfda: "B\r\U0002bfda", // 𫿚
+ 0x2bfdb: "B\x0e\U0002bfdb", // 𫿛
+ 0x2bfdc: "B\x0e\U0002bfdc", // 𫿜
+ 0x2bfdd: "B\x0e\U0002bfdd", // 𫿝
+ 0x2bfde: "B\x0f\U0002bfde", // 𫿞
+ 0x2bfdf: "B\x0f\U0002bfdf", // 𫿟
+ 0x2bfe0: "B\x0f\U0002bfe0", // 𫿠
+ 0x2bfe1: "B\x0f\U0002bfe1", // 𫿡
+ 0x2bfe2: "B\x0f\U0002bfe2", // 𫿢
+ 0x2bfe3: "B\x10\U0002bfe3", // 𫿣
+ 0x2bfe4: "B\x10\U0002bfe4", // 𫿤
+ 0x2bfe5: "B\x10\U0002bfe5", // 𫿥
+ 0x2bfe6: "B\x10\U0002bfe6", // 𫿦
+ 0x2bfe7: "B\x11\U0002bfe7", // 𫿧
+ 0x2bfe8: "B\x11\U0002bfe8", // 𫿨
+ 0x2bfe9: "B\x12\U0002bfe9", // 𫿩
+ 0x2bfea: "B\x14\U0002bfea", // 𫿪
+ 0x2bfeb: "B\x14\U0002bfeb", // 𫿫
+ 0x2bfec: "B\x14\U0002bfec", // 𫿬
+ 0x2bfed: "C\x02\U0002bfed", // 𫿭
+ 0x2bfee: "C\x05\U0002bfee", // 𫿮
+ 0x2bfef: "C\x05\U0002bfef", // 𫿯
+ 0x2bff0: "C\x06\U0002bff0", // 𫿰
+ 0x2bff1: "C\b\U0002bff1", // 𫿱
+ 0x2bff2: "C\x10\U0002bff2", // 𫿲
+ 0x2bff3: "D\x06\U0002bff3", // 𫿳
+ 0x2bff4: "D\a\U0002bff4", // 𫿴
+ 0x2bff5: "D\b\U0002bff5", // 𫿵
+ 0x2bff6: "D\v\U0002bff6", // 𫿶
+ 0x2bff7: "D\f\U0002bff7", // 𫿷
+ 0x2bff8: "D\r\U0002bff8", // 𫿸
+ 0x2bff9: "E\a\U0002bff9", // 𫿹
+ 0x2bffa: "E\a\U0002bffa", // 𫿺
+ 0x2bffb: "E\b\U0002bffb", // 𫿻
+ 0x2bffc: "E\b\U0002bffc", // 𫿼
+ 0x2bffd: "E\f\U0002bffd", // 𫿽
+ 0x2bffe: "E\x0f\U0002bffe", // 𫿾
+ 0x2bfff: "E\x10\U0002bfff", // 𫿿
+ 0x2c000: "F\x04\U0002c000", // 𬀀
+ 0x2c001: "F\x06\U0002c001", // 𬀁
+ 0x2c002: "F\x06\U0002c002", // 𬀂
+ 0x2c003: "F\x06\U0002c003", // 𬀃
+ 0x2c004: "F\x06\U0002c004", // 𬀄
+ 0x2c005: "F\x06\U0002c005", // 𬀅
+ 0x2c006: "F\x06\U0002c006", // 𬀆
+ 0x2c007: "F\a\U0002c007", // 𬀇
+ 0x2c008: "F\a\U0002c008", // 𬀈
+ 0x2c009: "F\b\U0002c009", // 𬀉
+ 0x2c00a: "F\b\U0002c00a", // 𬀊
+ 0x2c00b: "F\t\U0002c00b", // 𬀋
+ 0x2c00c: "F\t\U0002c00c", // 𬀌
+ 0x2c00d: "F\t\U0002c00d", // 𬀍
+ 0x2c00e: "F\n\U0002c00e", // 𬀎
+ 0x2c00f: "F\n\U0002c00f", // 𬀏
+ 0x2c010: "F\n\U0002c010", // 𬀐
+ 0x2c011: "F\v\U0002c011", // 𬀑
+ 0x2c012: "F\v\U0002c012", // 𬀒
+ 0x2c013: "F\f\U0002c013", // 𬀓
+ 0x2c014: "F\f\U0002c014", // 𬀔
+ 0x2c015: "F\f\U0002c015", // 𬀕
+ 0x2c016: "F\f\U0002c016", // 𬀖
+ 0x2c017: "F\r\U0002c017", // 𬀗
+ 0x2c018: "F\x0e\U0002c018", // 𬀘
+ 0x2c019: "F\x0e\U0002c019", // 𬀙
+ 0x2c01a: "F\x0e\U0002c01a", // 𬀚
+ 0x2c01b: "F\x0e\U0002c01b", // 𬀛
+ 0x2c01c: "F\x0f\U0002c01c", // 𬀜
+ 0x2c01d: "F\x0f\U0002c01d", // 𬀝
+ 0x2c01e: "F\x10\U0002c01e", // 𬀞
+ 0x2c01f: "F\x10\U0002c01f", // 𬀟
+ 0x2c020: "F\x10\U0002c020", // 𬀠
+ 0x2c021: "F\x11\U0002c021", // 𬀡
+ 0x2c022: "F\x12\U0002c022", // 𬀢
+ 0x2c023: "F\x13\U0002c023", // 𬀣
+ 0x2c024: "F\x18\U0002c024", // 𬀤
+ 0x2c025: "G\a\U0002c025", // 𬀥
+ 0x2c026: "H\x02\U0002c026", // 𬀦
+ 0x2c027: "H\x03\U0002c027", // 𬀧
+ 0x2c028: "H\x03\U0002c028", // 𬀨
+ 0x2c029: "H\x04\U0002c029", // 𬀩
+ 0x2c02a: "H\x04\U0002c02a", // 𬀪
+ 0x2c02b: "H\x04\U0002c02b", // 𬀫
+ 0x2c02c: "H\x05\U0002c02c", // 𬀬
+ 0x2c02d: "H\x05\U0002c02d", // 𬀭
+ 0x2c02e: "H\x05\U0002c02e", // 𬀮
+ 0x2c02f: "H\x06\U0002c02f", // 𬀯
+ 0x2c030: "H\x06\U0002c030", // 𬀰
+ 0x2c031: "H\x06\U0002c031", // 𬀱
+ 0x2c032: "H\x06\U0002c032", // 𬀲
+ 0x2c033: "H\x06\U0002c033", // 𬀳
+ 0x2c034: "H\x06\U0002c034", // 𬀴
+ 0x2c035: "H\a\U0002c035", // 𬀵
+ 0x2c036: "H\a\U0002c036", // 𬀶
+ 0x2c037: "H\a\U0002c037", // 𬀷
+ 0x2c038: "H\a\U0002c038", // 𬀸
+ 0x2c039: "H\a\U0002c039", // 𬀹
+ 0x2c03a: "H\a\U0002c03a", // 𬀺
+ 0x2c03b: "H\b\U0002c03b", // 𬀻
+ 0x2c03c: "H\b\U0002c03c", // 𬀼
+ 0x2c03d: "H\b\U0002c03d", // 𬀽
+ 0x2c03e: "H\b\U0002c03e", // 𬀾
+ 0x2c03f: "H\b\U0002c03f", // 𬀿
+ 0x2c040: "H\b\U0002c040", // 𬁀
+ 0x2c041: "H\b\U0002c041", // 𬁁
+ 0x2c042: "H\t\U0002c042", // 𬁂
+ 0x2c043: "H\t\U0002c043", // 𬁃
+ 0x2c044: "H\t\U0002c044", // 𬁄
+ 0x2c045: "H\t\U0002c045", // 𬁅
+ 0x2c046: "H\t\U0002c046", // 𬁆
+ 0x2c047: "H\t\U0002c047", // 𬁇
+ 0x2c048: "H\t\U0002c048", // 𬁈
+ 0x2c049: "H\t\U0002c049", // 𬁉
+ 0x2c04a: "H\n\U0002c04a", // 𬁊
+ 0x2c04b: "H\n\U0002c04b", // 𬁋
+ 0x2c04c: "H\n\U0002c04c", // 𬁌
+ 0x2c04d: "H\n\U0002c04d", // 𬁍
+ 0x2c04e: "H\n\U0002c04e", // 𬁎
+ 0x2c04f: "H\n\U0002c04f", // 𬁏
+ 0x2c050: "H\v\U0002c050", // 𬁐
+ 0x2c051: "H\v\U0002c051", // 𬁑
+ 0x2c052: "H\v\U0002c052", // 𬁒
+ 0x2c053: "H\f\U0002c053", // 𬁓
+ 0x2c054: "H\f\U0002c054", // 𬁔
+ 0x2c055: "H\f\U0002c055", // 𬁕
+ 0x2c056: "H\f\U0002c056", // 𬁖
+ 0x2c057: "H\f\U0002c057", // 𬁗
+ 0x2c058: "H\f\U0002c058", // 𬁘
+ 0x2c059: "H\r\U0002c059", // 𬁙
+ 0x2c05a: "H\r\U0002c05a", // 𬁚
+ 0x2c05b: "H\r\U0002c05b", // 𬁛
+ 0x2c05c: "H\x0e\U0002c05c", // 𬁜
+ 0x2c05d: "H\x10\U0002c05d", // 𬁝
+ 0x2c05e: "H\x10\U0002c05e", // 𬁞
+ 0x2c05f: "I\x03\U0002c05f", // 𬁟
+ 0x2c060: "I\x03\U0002c060", // 𬁠
+ 0x2c061: "I\x04\U0002c061", // 𬁡
+ 0x2c062: "I\x06\U0002c062", // 𬁢
+ 0x2c063: "I\a\U0002c063", // 𬁣
+ 0x2c064: "I\a\U0002c064", // 𬁤
+ 0x2c065: "I\b\U0002c065", // 𬁥
+ 0x2c066: "I\b\U0002c066", // 𬁦
+ 0x2c067: "I\b\U0002c067", // 𬁧
+ 0x2c068: "I\n\U0002c068", // 𬁨
+ 0x2c069: "I\n\U0002c069", // 𬁩
+ 0x2c06a: "I\n\U0002c06a", // 𬁪
+ 0x2c06b: "I\v\U0002c06b", // 𬁫
+ 0x2c06c: "I\r\U0002c06c", // 𬁬
+ 0x2c06d: "I\x10\U0002c06d", // 𬁭
+ 0x2c06e: "I\x10\U0002c06e", // 𬁮
+ 0x2c06f: "I\x10\U0002c06f", // 𬁯
+ 0x2c070: "J\x02\U0002c070", // 𬁰
+ 0x2c071: "J\x03\U0002c071", // 𬁱
+ 0x2c072: "J\x03\U0002c072", // 𬁲
+ 0x2c073: "J\x03\U0002c073", // 𬁳
+ 0x2c074: "J\x04\U0002c074", // 𬁴
+ 0x2c075: "J\x04\U0002c075", // 𬁵
+ 0x2c076: "J\x04\U0002c076", // 𬁶
+ 0x2c077: "J\x04\U0002c077", // 𬁷
+ 0x2c078: "J\x04\U0002c078", // 𬁸
+ 0x2c079: "J\x05\U0002c079", // 𬁹
+ 0x2c07a: "J\x06\U0002c07a", // 𬁺
+ 0x2c07b: "J\x06\U0002c07b", // 𬁻
+ 0x2c07c: "J\x06\U0002c07c", // 𬁼
+ 0x2c07d: "J\a\U0002c07d", // 𬁽
+ 0x2c07e: "J\a\U0002c07e", // 𬁾
+ 0x2c07f: "J\a\U0002c07f", // 𬁿
+ 0x2c080: "J\a\U0002c080", // 𬂀
+ 0x2c081: "J\a\U0002c081", // 𬂁
+ 0x2c082: "J\b\U0002c082", // 𬂂
+ 0x2c083: "J\b\U0002c083", // 𬂃
+ 0x2c084: "J\b\U0002c084", // 𬂄
+ 0x2c085: "J\b\U0002c085", // 𬂅
+ 0x2c086: "J\t\U0002c086", // 𬂆
+ 0x2c087: "J\n\U0002c087", // 𬂇
+ 0x2c088: "J\n\U0002c088", // 𬂈
+ 0x2c089: "J\n\U0002c089", // 𬂉
+ 0x2c08a: "J\n\U0002c08a", // 𬂊
+ 0x2c08b: "J\n\U0002c08b", // 𬂋
+ 0x2c08c: "J\n\U0002c08c", // 𬂌
+ 0x2c08d: "J\v\U0002c08d", // 𬂍
+ 0x2c08e: "J\v\U0002c08e", // 𬂎
+ 0x2c08f: "J\f\U0002c08f", // 𬂏
+ 0x2c090: "J\f\U0002c090", // 𬂐
+ 0x2c091: "J\r\U0002c091", // 𬂑
+ 0x2c092: "J\r\U0002c092", // 𬂒
+ 0x2c093: "J\r\U0002c093", // 𬂓
+ 0x2c094: "J\r\U0002c094", // 𬂔
+ 0x2c095: "J\x0e\U0002c095", // 𬂕
+ 0x2c096: "J\x0e\U0002c096", // 𬂖
+ 0x2c097: "J\x0f\U0002c097", // 𬂗
+ 0x2c098: "J\x0f\U0002c098", // 𬂘
+ 0x2c099: "J\x11\U0002c099", // 𬂙
+ 0x2c09a: "J\x1a\U0002c09a", // 𬂚
+ 0x2c09b: "K\x00\U0002c09b", // 𬂛
+ 0x2c09c: "K\x01\U0002c09c", // 𬂜
+ 0x2c09d: "K\x03\U0002c09d", // 𬂝
+ 0x2c09e: "K\x03\U0002c09e", // 𬂞
+ 0x2c09f: "K\x03\U0002c09f", // 𬂟
+ 0x2c0a0: "K\x04\U0002c0a0", // 𬂠
+ 0x2c0a1: "K\x04\U0002c0a1", // 𬂡
+ 0x2c0a2: "K\x04\U0002c0a2", // 𬂢
+ 0x2c0a3: "K\x04\U0002c0a3", // 𬂣
+ 0x2c0a4: "K\x04\U0002c0a4", // 𬂤
+ 0x2c0a5: "K\x05\U0002c0a5", // 𬂥
+ 0x2c0a6: "K\x05\U0002c0a6", // 𬂦
+ 0x2c0a7: "K\x06\U0002c0a7", // 𬂧
+ 0x2c0a8: "K\x06\U0002c0a8", // 𬂨
+ 0x2c0a9: "K\x06\U0002c0a9", // 𬂩
+ 0x2c0aa: "K\x06\U0002c0aa", // 𬂪
+ 0x2c0ab: "K\x06\U0002c0ab", // 𬂫
+ 0x2c0ac: "K\x06\U0002c0ac", // 𬂬
+ 0x2c0ad: "K\x06\U0002c0ad", // 𬂭
+ 0x2c0ae: "K\x06\U0002c0ae", // 𬂮
+ 0x2c0af: "K\x06\U0002c0af", // 𬂯
+ 0x2c0b0: "K\x06\U0002c0b0", // 𬂰
+ 0x2c0b1: "K\x06\U0002c0b1", // 𬂱
+ 0x2c0b2: "K\a\U0002c0b2", // 𬂲
+ 0x2c0b3: "K\a\U0002c0b3", // 𬂳
+ 0x2c0b4: "K\a\U0002c0b4", // 𬂴
+ 0x2c0b5: "K\a\U0002c0b5", // 𬂵
+ 0x2c0b6: "K\a\U0002c0b6", // 𬂶
+ 0x2c0b7: "K\a\U0002c0b7", // 𬂷
+ 0x2c0b8: "K\a\U0002c0b8", // 𬂸
+ 0x2c0b9: "K\a\U0002c0b9", // 𬂹
+ 0x2c0ba: "K\a\U0002c0ba", // 𬂺
+ 0x2c0bb: "K\a\U0002c0bb", // 𬂻
+ 0x2c0bc: "K\a\U0002c0bc", // 𬂼
+ 0x2c0bd: "K\b\U0002c0bd", // 𬂽
+ 0x2c0be: "K\b\U0002c0be", // 𬂾
+ 0x2c0bf: "K\b\U0002c0bf", // 𬂿
+ 0x2c0c0: "K\b\U0002c0c0", // 𬃀
+ 0x2c0c1: "K\b\U0002c0c1", // 𬃁
+ 0x2c0c2: "K\b\U0002c0c2", // 𬃂
+ 0x2c0c3: "K\b\U0002c0c3", // 𬃃
+ 0x2c0c4: "K\b\U0002c0c4", // 𬃄
+ 0x2c0c5: "K\b\U0002c0c5", // 𬃅
+ 0x2c0c6: "K\b\U0002c0c6", // 𬃆
+ 0x2c0c7: "K\b\U0002c0c7", // 𬃇
+ 0x2c0c8: "K\b\U0002c0c8", // 𬃈
+ 0x2c0c9: "K\b\U0002c0c9", // 𬃉
+ 0x2c0ca: "K\b\U0002c0ca", // 𬃊
+ 0x2c0cb: "K\b\U0002c0cb", // 𬃋
+ 0x2c0cc: "K\b\U0002c0cc", // 𬃌
+ 0x2c0cd: "K\b\U0002c0cd", // 𬃍
+ 0x2c0ce: "K\b\U0002c0ce", // 𬃎
+ 0x2c0cf: "K\b\U0002c0cf", // 𬃏
+ 0x2c0d0: "K\b\U0002c0d0", // 𬃐
+ 0x2c0d1: "K\b\U0002c0d1", // 𬃑
+ 0x2c0d2: "K\b\U0002c0d2", // 𬃒
+ 0x2c0d3: "K\b\U0002c0d3", // 𬃓
+ 0x2c0d4: "K\t\U0002c0d4", // 𬃔
+ 0x2c0d5: "K\t\U0002c0d5", // 𬃕
+ 0x2c0d6: "K\t\U0002c0d6", // 𬃖
+ 0x2c0d7: "K\t\U0002c0d7", // 𬃗
+ 0x2c0d8: "K\t\U0002c0d8", // 𬃘
+ 0x2c0d9: "K\t\U0002c0d9", // 𬃙
+ 0x2c0da: "K\t\U0002c0da", // 𬃚
+ 0x2c0db: "K\t\U0002c0db", // 𬃛
+ 0x2c0dc: "K\t\U0002c0dc", // 𬃜
+ 0x2c0dd: "K\t\U0002c0dd", // 𬃝
+ 0x2c0de: "K\t\U0002c0de", // 𬃞
+ 0x2c0df: "K\t\U0002c0df", // 𬃟
+ 0x2c0e0: "K\t\U0002c0e0", // 𬃠
+ 0x2c0e1: "K\t\U0002c0e1", // 𬃡
+ 0x2c0e2: "K\t\U0002c0e2", // 𬃢
+ 0x2c0e3: "K\t\U0002c0e3", // 𬃣
+ 0x2c0e4: "K\t\U0002c0e4", // 𬃤
+ 0x2c0e5: "K\t\U0002c0e5", // 𬃥
+ 0x2c0e6: "K\t\U0002c0e6", // 𬃦
+ 0x2c0e7: "K\t\U0002c0e7", // 𬃧
+ 0x2c0e8: "K\t\U0002c0e8", // 𬃨
+ 0x2c0e9: "K\t\U0002c0e9", // 𬃩
+ 0x2c0ea: "K\t\U0002c0ea", // 𬃪
+ 0x2c0eb: "K\t\U0002c0eb", // 𬃫
+ 0x2c0ec: "K\t\U0002c0ec", // 𬃬
+ 0x2c0ed: "K\t\U0002c0ed", // 𬃭
+ 0x2c0ee: "K\t\U0002c0ee", // 𬃮
+ 0x2c0ef: "K\n\U0002c0ef", // 𬃯
+ 0x2c0f0: "K\n\U0002c0f0", // 𬃰
+ 0x2c0f1: "K\n\U0002c0f1", // 𬃱
+ 0x2c0f2: "K\n\U0002c0f2", // 𬃲
+ 0x2c0f3: "K\n\U0002c0f3", // 𬃳
+ 0x2c0f4: "K\n\U0002c0f4", // 𬃴
+ 0x2c0f5: "K\n\U0002c0f5", // 𬃵
+ 0x2c0f6: "K\n\U0002c0f6", // 𬃶
+ 0x2c0f7: "K\n\U0002c0f7", // 𬃷
+ 0x2c0f8: "K\n\U0002c0f8", // 𬃸
+ 0x2c0f9: "K\n\U0002c0f9", // 𬃹
+ 0x2c0fa: "K\n\U0002c0fa", // 𬃺
+ 0x2c0fb: "K\n\U0002c0fb", // 𬃻
+ 0x2c0fc: "K\n\U0002c0fc", // 𬃼
+ 0x2c0fd: "K\n\U0002c0fd", // 𬃽
+ 0x2c0fe: "K\n\U0002c0fe", // 𬃾
+ 0x2c0ff: "K\n\U0002c0ff", // 𬃿
+ 0x2c100: "K\n\U0002c100", // 𬄀
+ 0x2c101: "K\n\U0002c101", // 𬄁
+ 0x2c102: "K\n\U0002c102", // 𬄂
+ 0x2c103: "K\n\U0002c103", // 𬄃
+ 0x2c104: "K\n\U0002c104", // 𬄄
+ 0x2c105: "K\n\U0002c105", // 𬄅
+ 0x2c106: "K\n\U0002c106", // 𬄆
+ 0x2c107: "K\v\U0002c107", // 𬄇
+ 0x2c108: "K\v\U0002c108", // 𬄈
+ 0x2c109: "K\v\U0002c109", // 𬄉
+ 0x2c10a: "K\v\U0002c10a", // 𬄊
+ 0x2c10b: "K\v\U0002c10b", // 𬄋
+ 0x2c10c: "K\v\U0002c10c", // 𬄌
+ 0x2c10d: "K\v\U0002c10d", // 𬄍
+ 0x2c10e: "K\v\U0002c10e", // 𬄎
+ 0x2c10f: "K\v\U0002c10f", // 𬄏
+ 0x2c110: "K\v\U0002c110", // 𬄐
+ 0x2c111: "K\v\U0002c111", // 𬄑
+ 0x2c112: "K\v\U0002c112", // 𬄒
+ 0x2c113: "K\v\U0002c113", // 𬄓
+ 0x2c114: "K\v\U0002c114", // 𬄔
+ 0x2c115: "K\v\U0002c115", // 𬄕
+ 0x2c116: "K\v\U0002c116", // 𬄖
+ 0x2c117: "K\v\U0002c117", // 𬄗
+ 0x2c118: "K\v\U0002c118", // 𬄘
+ 0x2c119: "K\f\U0002c119", // 𬄙
+ 0x2c11a: "K\f\U0002c11a", // 𬄚
+ 0x2c11b: "K\f\U0002c11b", // 𬄛
+ 0x2c11c: "K\f\U0002c11c", // 𬄜
+ 0x2c11d: "K\f\U0002c11d", // 𬄝
+ 0x2c11e: "K\f\U0002c11e", // 𬄞
+ 0x2c11f: "K\f\U0002c11f", // 𬄟
+ 0x2c120: "K\f\U0002c120", // 𬄠
+ 0x2c121: "K\f\U0002c121", // 𬄡
+ 0x2c122: "K\f\U0002c122", // 𬄢
+ 0x2c123: "K\f\U0002c123", // 𬄣
+ 0x2c124: "K\f\U0002c124", // 𬄤
+ 0x2c125: "K\f\U0002c125", // 𬄥
+ 0x2c126: "K\f\U0002c126", // 𬄦
+ 0x2c127: "K\f\U0002c127", // 𬄧
+ 0x2c128: "K\f\U0002c128", // 𬄨
+ 0x2c129: "K\f\U0002c129", // 𬄩
+ 0x2c12a: "K\f\U0002c12a", // 𬄪
+ 0x2c12b: "K\f\U0002c12b", // 𬄫
+ 0x2c12c: "K\r\U0002c12c", // 𬄬
+ 0x2c12d: "K\r\U0002c12d", // 𬄭
+ 0x2c12e: "K\r\U0002c12e", // 𬄮
+ 0x2c12f: "K\r\U0002c12f", // 𬄯
+ 0x2c130: "K\r\U0002c130", // 𬄰
+ 0x2c131: "K\r\U0002c131", // 𬄱
+ 0x2c132: "K\r\U0002c132", // 𬄲
+ 0x2c133: "K\r\U0002c133", // 𬄳
+ 0x2c134: "K\r\U0002c134", // 𬄴
+ 0x2c135: "K\r\U0002c135", // 𬄵
+ 0x2c136: "K\r\U0002c136", // 𬄶
+ 0x2c137: "K\x0e\U0002c137", // 𬄷
+ 0x2c138: "K\x0e\U0002c138", // 𬄸
+ 0x2c139: "K\x0e\U0002c139", // 𬄹
+ 0x2c13a: "K\x0e\U0002c13a", // 𬄺
+ 0x2c13b: "K\x0e\U0002c13b", // 𬄻
+ 0x2c13c: "K\x0e\U0002c13c", // 𬄼
+ 0x2c13d: "K\x0e\U0002c13d", // 𬄽
+ 0x2c13e: "K\x0e\U0002c13e", // 𬄾
+ 0x2c13f: "K\x0e\U0002c13f", // 𬄿
+ 0x2c140: "K\x0e\U0002c140", // 𬅀
+ 0x2c141: "K\x0f\U0002c141", // 𬅁
+ 0x2c142: "K\x0f\U0002c142", // 𬅂
+ 0x2c143: "K\x0f\U0002c143", // 𬅃
+ 0x2c144: "K\x0f\U0002c144", // 𬅄
+ 0x2c145: "K\x0f\U0002c145", // 𬅅
+ 0x2c146: "K\x0f\U0002c146", // 𬅆
+ 0x2c147: "K\x0f\U0002c147", // 𬅇
+ 0x2c148: "K\x0f\U0002c148", // 𬅈
+ 0x2c149: "K\x10\U0002c149", // 𬅉
+ 0x2c14a: "K\x10\U0002c14a", // 𬅊
+ 0x2c14b: "K\x11\U0002c14b", // 𬅋
+ 0x2c14c: "K\x11\U0002c14c", // 𬅌
+ 0x2c14d: "K\x11\U0002c14d", // 𬅍
+ 0x2c14e: "K\x11\U0002c14e", // 𬅎
+ 0x2c14f: "K\x11\U0002c14f", // 𬅏
+ 0x2c150: "K\x12\U0002c150", // 𬅐
+ 0x2c151: "K\x12\U0002c151", // 𬅑
+ 0x2c152: "K\x12\U0002c152", // 𬅒
+ 0x2c153: "K\x12\U0002c153", // 𬅓
+ 0x2c154: "K\x13\U0002c154", // 𬅔
+ 0x2c155: "K\x14\U0002c155", // 𬅕
+ 0x2c156: "K\x14\U0002c156", // 𬅖
+ 0x2c157: "K\x14\U0002c157", // 𬅗
+ 0x2c158: "K\x14\U0002c158", // 𬅘
+ 0x2c159: "K\x16\U0002c159", // 𬅙
+ 0x2c15a: "K\x16\U0002c15a", // 𬅚
+ 0x2c15b: "K\x17\U0002c15b", // 𬅛
+ 0x2c15c: "K\x1b\U0002c15c", // 𬅜
+ 0x2c15d: "L\x03\U0002c15d", // 𬅝
+ 0x2c15e: "L\x03\U0002c15e", // 𬅞
+ 0x2c15f: "L\x04\U0002c15f", // 𬅟
+ 0x2c160: "L\x05\U0002c160", // 𬅠
+ 0x2c161: "L\x05\U0002c161", // 𬅡
+ 0x2c162: "L\x06\U0002c162", // 𬅢
+ 0x2c163: "L\x06\U0002c163", // 𬅣
+ 0x2c164: "L\a\U0002c164", // 𬅤
+ 0x2c165: "L\a\U0002c165", // 𬅥
+ 0x2c166: "L\a\U0002c166", // 𬅦
+ 0x2c167: "L\a\U0002c167", // 𬅧
+ 0x2c168: "L\a\U0002c168", // 𬅨
+ 0x2c169: "L\b\U0002c169", // 𬅩
+ 0x2c16a: "L\b\U0002c16a", // 𬅪
+ 0x2c16b: "L\t\U0002c16b", // 𬅫
+ 0x2c16c: "L\t\U0002c16c", // 𬅬
+ 0x2c16d: "L\n\U0002c16d", // 𬅭
+ 0x2c16e: "L\n\U0002c16e", // 𬅮
+ 0x2c16f: "L\n\U0002c16f", // 𬅯
+ 0x2c170: "L\f\U0002c170", // 𬅰
+ 0x2c171: "L\f\U0002c171", // 𬅱
+ 0x2c172: "L\r\U0002c172", // 𬅲
+ 0x2c173: "L\x0e\U0002c173", // 𬅳
+ 0x2c174: "L\x11\U0002c174", // 𬅴
+ 0x2c175: "L\x13\U0002c175", // 𬅵
+ 0x2c176: "M\x02\U0002c176", // 𬅶
+ 0x2c177: "M\x02\U0002c177", // 𬅷
+ 0x2c178: "M\x03\U0002c178", // 𬅸
+ 0x2c179: "M\x04\U0002c179", // 𬅹
+ 0x2c17a: "M\x05\U0002c17a", // 𬅺
+ 0x2c17b: "M\x05\U0002c17b", // 𬅻
+ 0x2c17c: "M\x06\U0002c17c", // 𬅼
+ 0x2c17d: "M\x06\U0002c17d", // 𬅽
+ 0x2c17e: "M\a\U0002c17e", // 𬅾
+ 0x2c17f: "M\a\U0002c17f", // 𬅿
+ 0x2c180: "M\a\U0002c180", // 𬆀
+ 0x2c181: "M\b\U0002c181", // 𬆁
+ 0x2c182: "M\b\U0002c182", // 𬆂
+ 0x2c183: "M\b\U0002c183", // 𬆃
+ 0x2c184: "M\t\U0002c184", // 𬆄
+ 0x2c185: "M\t\U0002c185", // 𬆅
+ 0x2c186: "M\n\U0002c186", // 𬆆
+ 0x2c187: "M\n\U0002c187", // 𬆇
+ 0x2c188: "M\v\U0002c188", // 𬆈
+ 0x2c189: "M\v\U0002c189", // 𬆉
+ 0x2c18a: "M\f\U0002c18a", // 𬆊
+ 0x2c18b: "M\f\U0002c18b", // 𬆋
+ 0x2c18c: "M\r\U0002c18c", // 𬆌
+ 0x2c18d: "M\r\U0002c18d", // 𬆍
+ 0x2c18e: "M\x0e\U0002c18e", // 𬆎
+ 0x2c18f: "M\x0f\U0002c18f", // 𬆏
+ 0x2c190: "M\x0f\U0002c190", // 𬆐
+ 0x2c191: "N\x05\U0002c191", // 𬆑
+ 0x2c192: "N\x05\U0002c192", // 𬆒
+ 0x2c193: "N\x06\U0002c193", // 𬆓
+ 0x2c194: "N\x06\U0002c194", // 𬆔
+ 0x2c195: "N\x06\U0002c195", // 𬆕
+ 0x2c196: "N\a\U0002c196", // 𬆖
+ 0x2c197: "N\a\U0002c197", // 𬆗
+ 0x2c198: "N\b\U0002c198", // 𬆘
+ 0x2c199: "N\b\U0002c199", // 𬆙
+ 0x2c19a: "N\b\U0002c19a", // 𬆚
+ 0x2c19b: "N\t\U0002c19b", // 𬆛
+ 0x2c19c: "N\x0f\U0002c19c", // 𬆜
+ 0x2c19d: "N\x10\U0002c19d", // 𬆝
+ 0x2c19e: "O\x03\U0002c19e", // 𬆞
+ 0x2c19f: "O\x04\U0002c19f", // 𬆟
+ 0x2c1a0: "O\x04\U0002c1a0", // 𬆠
+ 0x2c1a1: "O\x05\U0002c1a1", // 𬆡
+ 0x2c1a2: "O\x05\U0002c1a2", // 𬆢
+ 0x2c1a3: "O\x06\U0002c1a3", // 𬆣
+ 0x2c1a4: "O\x06\U0002c1a4", // 𬆤
+ 0x2c1a5: "O\a\U0002c1a5", // 𬆥
+ 0x2c1a6: "O\a\U0002c1a6", // 𬆦
+ 0x2c1a7: "O\a\U0002c1a7", // 𬆧
+ 0x2c1a8: "O\b\U0002c1a8", // 𬆨
+ 0x2c1a9: "O\t\U0002c1a9", // 𬆩
+ 0x2c1aa: "O\t\U0002c1aa", // 𬆪
+ 0x2c1ab: "O\t\U0002c1ab", // 𬆫
+ 0x2c1ac: "O\t\U0002c1ac", // 𬆬
+ 0x2c1ad: "O\n\U0002c1ad", // 𬆭
+ 0x2c1ae: "O\v\U0002c1ae", // 𬆮
+ 0x2c1af: "O\v\U0002c1af", // 𬆯
+ 0x2c1b0: "O\v\U0002c1b0", // 𬆰
+ 0x2c1b1: "O\f\U0002c1b1", // 𬆱
+ 0x2c1b2: "O\r\U0002c1b2", // 𬆲
+ 0x2c1b3: "O\r\U0002c1b3", // 𬆳
+ 0x2c1b4: "O\x12\U0002c1b4", // 𬆴
+ 0x2c1b5: "O\x19\U0002c1b5", // 𬆵
+ 0x2c1b6: "P\x04\U0002c1b6", // 𬆶
+ 0x2c1b7: "P\b\U0002c1b7", // 𬆷
+ 0x2c1b8: "P\r\U0002c1b8", // 𬆸
+ 0x2c1b9: "Q\b\U0002c1b9", // 𬆹
+ 0x2c1ba: "Q\t\U0002c1ba", // 𬆺
+ 0x2c1bb: "Q\x0f\U0002c1bb", // 𬆻
+ 0x2c1bc: "R\x03\U0002c1bc", // 𬆼
+ 0x2c1bd: "R\x04\U0002c1bd", // 𬆽
+ 0x2c1be: "R\x04\U0002c1be", // 𬆾
+ 0x2c1bf: "R\x04\U0002c1bf", // 𬆿
+ 0x2c1c0: "R\x05\U0002c1c0", // 𬇀
+ 0x2c1c1: "R\a\U0002c1c1", // 𬇁
+ 0x2c1c2: "R\t\U0002c1c2", // 𬇂
+ 0x2c1c3: "R\n\U0002c1c3", // 𬇃
+ 0x2c1c4: "R\n\U0002c1c4", // 𬇄
+ 0x2c1c5: "R\v\U0002c1c5", // 𬇅
+ 0x2c1c6: "R\f\U0002c1c6", // 𬇆
+ 0x2c1c7: "R\r\U0002c1c7", // 𬇇
+ 0x2c1c8: "R\x0e\U0002c1c8", // 𬇈
+ 0x2c1c9: "S\x03\U0002c1c9", // 𬇉
+ 0x2c1ca: "S\x04\U0002c1ca", // 𬇊
+ 0x2c1cb: "S\x04\U0002c1cb", // 𬇋
+ 0x2c1cc: "S\x05\U0002c1cc", // 𬇌
+ 0x2c1cd: "S\x06\U0002c1cd", // 𬇍
+ 0x2c1ce: "S\n\U0002c1ce", // 𬇎
+ 0x2c1cf: "T\x04\U0002c1cf", // 𬇏
+ 0x2c1d0: "T\x05\U0002c1d0", // 𬇐
+ 0x2c1d1: "T\x06\U0002c1d1", // 𬇑
+ 0x2c1d2: "T\n\U0002c1d2", // 𬇒
+ 0x2c1d3: "T\r\U0002c1d3", // 𬇓
+ 0x2c1d4: "U\x03\U0002c1d4", // 𬇔
+ 0x2c1d5: "U\x03\U0002c1d5", // 𬇕
+ 0x2c1d6: "U\x03\U0002c1d6", // 𬇖
+ 0x2c1d7: "U\x03\U0002c1d7", // 𬇗
+ 0x2c1d8: "U\x04\U0002c1d8", // 𬇘
+ 0x2c1d9: "U\x04\U0002c1d9", // 𬇙
+ 0x2c1da: "U\x04\U0002c1da", // 𬇚
+ 0x2c1db: "U\x05\U0002c1db", // 𬇛
+ 0x2c1dc: "U\x05\U0002c1dc", // 𬇜
+ 0x2c1dd: "U\x05\U0002c1dd", // 𬇝
+ 0x2c1de: "U\x05\U0002c1de", // 𬇞
+ 0x2c1df: "U\x05\U0002c1df", // 𬇟
+ 0x2c1e0: "U\x06\U0002c1e0", // 𬇠
+ 0x2c1e1: "U\x06\U0002c1e1", // 𬇡
+ 0x2c1e2: "U\x06\U0002c1e2", // 𬇢
+ 0x2c1e3: "U\x06\U0002c1e3", // 𬇣
+ 0x2c1e4: "U\x06\U0002c1e4", // 𬇤
+ 0x2c1e5: "U\x06\U0002c1e5", // 𬇥
+ 0x2c1e6: "U\x06\U0002c1e6", // 𬇦
+ 0x2c1e7: "U\a\U0002c1e7", // 𬇧
+ 0x2c1e8: "U\a\U0002c1e8", // 𬇨
+ 0x2c1e9: "U\a\U0002c1e9", // 𬇩
+ 0x2c1ea: "U\a\U0002c1ea", // 𬇪
+ 0x2c1eb: "U\a\U0002c1eb", // 𬇫
+ 0x2c1ec: "U\a\U0002c1ec", // 𬇬
+ 0x2c1ed: "U\a\U0002c1ed", // 𬇭
+ 0x2c1ee: "U\a\U0002c1ee", // 𬇮
+ 0x2c1ef: "U\a\U0002c1ef", // 𬇯
+ 0x2c1f0: "U\a\U0002c1f0", // 𬇰
+ 0x2c1f1: "U\a\U0002c1f1", // 𬇱
+ 0x2c1f2: "U\a\U0002c1f2", // 𬇲
+ 0x2c1f3: "U\a\U0002c1f3", // 𬇳
+ 0x2c1f4: "U\a\U0002c1f4", // 𬇴
+ 0x2c1f5: "U\b\U0002c1f5", // 𬇵
+ 0x2c1f6: "U\b\U0002c1f6", // 𬇶
+ 0x2c1f7: "U\b\U0002c1f7", // 𬇷
+ 0x2c1f8: "U\b\U0002c1f8", // 𬇸
+ 0x2c1f9: "U\b\U0002c1f9", // 𬇹
+ 0x2c1fa: "U\b\U0002c1fa", // 𬇺
+ 0x2c1fb: "U\b\U0002c1fb", // 𬇻
+ 0x2c1fc: "U\b\U0002c1fc", // 𬇼
+ 0x2c1fd: "U\b\U0002c1fd", // 𬇽
+ 0x2c1fe: "U\b\U0002c1fe", // 𬇾
+ 0x2c1ff: "U\b\U0002c1ff", // 𬇿
+ 0x2c200: "U\b\U0002c200", // 𬈀
+ 0x2c201: "U\b\U0002c201", // 𬈁
+ 0x2c202: "U\b\U0002c202", // 𬈂
+ 0x2c203: "U\b\U0002c203", // 𬈃
+ 0x2c204: "U\b\U0002c204", // 𬈄
+ 0x2c205: "U\t\U0002c205", // 𬈅
+ 0x2c206: "U\t\U0002c206", // 𬈆
+ 0x2c207: "U\t\U0002c207", // 𬈇
+ 0x2c208: "U\t\U0002c208", // 𬈈
+ 0x2c209: "U\t\U0002c209", // 𬈉
+ 0x2c20a: "U\t\U0002c20a", // 𬈊
+ 0x2c20b: "U\t\U0002c20b", // 𬈋
+ 0x2c20c: "U\t\U0002c20c", // 𬈌
+ 0x2c20d: "U\t\U0002c20d", // 𬈍
+ 0x2c20e: "U\t\U0002c20e", // 𬈎
+ 0x2c20f: "U\t\U0002c20f", // 𬈏
+ 0x2c210: "U\t\U0002c210", // 𬈐
+ 0x2c211: "U\t\U0002c211", // 𬈑
+ 0x2c212: "U\t\U0002c212", // 𬈒
+ 0x2c213: "U\t\U0002c213", // 𬈓
+ 0x2c214: "U\t\U0002c214", // 𬈔
+ 0x2c215: "U\t\U0002c215", // 𬈕
+ 0x2c216: "U\n\U0002c216", // 𬈖
+ 0x2c217: "U\n\U0002c217", // 𬈗
+ 0x2c218: "U\n\U0002c218", // 𬈘
+ 0x2c219: "U\n\U0002c219", // 𬈙
+ 0x2c21a: "U\n\U0002c21a", // 𬈚
+ 0x2c21b: "U\n\U0002c21b", // 𬈛
+ 0x2c21c: "U\n\U0002c21c", // 𬈜
+ 0x2c21d: "U\n\U0002c21d", // 𬈝
+ 0x2c21e: "U\n\U0002c21e", // 𬈞
+ 0x2c21f: "U\n\U0002c21f", // 𬈟
+ 0x2c220: "U\n\U0002c220", // 𬈠
+ 0x2c221: "U\n\U0002c221", // 𬈡
+ 0x2c222: "U\n\U0002c222", // 𬈢
+ 0x2c223: "U\n\U0002c223", // 𬈣
+ 0x2c224: "U\n\U0002c224", // 𬈤
+ 0x2c225: "U\v\U0002c225", // 𬈥
+ 0x2c226: "U\v\U0002c226", // 𬈦
+ 0x2c227: "U\v\U0002c227", // 𬈧
+ 0x2c228: "U\v\U0002c228", // 𬈨
+ 0x2c229: "U\v\U0002c229", // 𬈩
+ 0x2c22a: "U\v\U0002c22a", // 𬈪
+ 0x2c22b: "U\v\U0002c22b", // 𬈫
+ 0x2c22c: "U\v\U0002c22c", // 𬈬
+ 0x2c22d: "U\v\U0002c22d", // 𬈭
+ 0x2c22e: "U\v\U0002c22e", // 𬈮
+ 0x2c22f: "U\v\U0002c22f", // 𬈯
+ 0x2c230: "U\v\U0002c230", // 𬈰
+ 0x2c231: "U\v\U0002c231", // 𬈱
+ 0x2c232: "U\f\U0002c232", // 𬈲
+ 0x2c233: "U\f\U0002c233", // 𬈳
+ 0x2c234: "U\f\U0002c234", // 𬈴
+ 0x2c235: "U\f\U0002c235", // 𬈵
+ 0x2c236: "U\f\U0002c236", // 𬈶
+ 0x2c237: "U\f\U0002c237", // 𬈷
+ 0x2c238: "U\f\U0002c238", // 𬈸
+ 0x2c239: "U\f\U0002c239", // 𬈹
+ 0x2c23a: "U\f\U0002c23a", // 𬈺
+ 0x2c23b: "U\f\U0002c23b", // 𬈻
+ 0x2c23c: "U\f\U0002c23c", // 𬈼
+ 0x2c23d: "U\f\U0002c23d", // 𬈽
+ 0x2c23e: "U\f\U0002c23e", // 𬈾
+ 0x2c23f: "U\f\U0002c23f", // 𬈿
+ 0x2c240: "U\f\U0002c240", // 𬉀
+ 0x2c241: "U\f\U0002c241", // 𬉁
+ 0x2c242: "U\f\U0002c242", // 𬉂
+ 0x2c243: "U\f\U0002c243", // 𬉃
+ 0x2c244: "U\f\U0002c244", // 𬉄
+ 0x2c245: "U\f\U0002c245", // 𬉅
+ 0x2c246: "U\f\U0002c246", // 𬉆
+ 0x2c247: "U\f\U0002c247", // 𬉇
+ 0x2c248: "U\r\U0002c248", // 𬉈
+ 0x2c249: "U\r\U0002c249", // 𬉉
+ 0x2c24a: "U\r\U0002c24a", // 𬉊
+ 0x2c24b: "U\r\U0002c24b", // 𬉋
+ 0x2c24c: "U\r\U0002c24c", // 𬉌
+ 0x2c24d: "U\r\U0002c24d", // 𬉍
+ 0x2c24e: "U\r\U0002c24e", // 𬉎
+ 0x2c24f: "U\r\U0002c24f", // 𬉏
+ 0x2c250: "U\r\U0002c250", // 𬉐
+ 0x2c251: "U\r\U0002c251", // 𬉑
+ 0x2c252: "U\r\U0002c252", // 𬉒
+ 0x2c253: "U\x0e\U0002c253", // 𬉓
+ 0x2c254: "U\x0e\U0002c254", // 𬉔
+ 0x2c255: "U\x0e\U0002c255", // 𬉕
+ 0x2c256: "U\x0e\U0002c256", // 𬉖
+ 0x2c257: "U\x0e\U0002c257", // 𬉗
+ 0x2c258: "U\x0e\U0002c258", // 𬉘
+ 0x2c259: "U\x0e\U0002c259", // 𬉙
+ 0x2c25a: "U\x0e\U0002c25a", // 𬉚
+ 0x2c25b: "U\x0f\U0002c25b", // 𬉛
+ 0x2c25c: "U\x0f\U0002c25c", // 𬉜
+ 0x2c25d: "U\x0f\U0002c25d", // 𬉝
+ 0x2c25e: "U\x0f\U0002c25e", // 𬉞
+ 0x2c25f: "U\x10\U0002c25f", // 𬉟
+ 0x2c260: "U\x10\U0002c260", // 𬉠
+ 0x2c261: "U\x10\U0002c261", // 𬉡
+ 0x2c262: "U\x10\U0002c262", // 𬉢
+ 0x2c263: "U\x10\U0002c263", // 𬉣
+ 0x2c264: "U\x10\U0002c264", // 𬉤
+ 0x2c265: "U\x11\U0002c265", // 𬉥
+ 0x2c266: "U\x11\U0002c266", // 𬉦
+ 0x2c267: "U\x11\U0002c267", // 𬉧
+ 0x2c268: "U\x11\U0002c268", // 𬉨
+ 0x2c269: "U\x11\U0002c269", // 𬉩
+ 0x2c26a: "U\x11\U0002c26a", // 𬉪
+ 0x2c26b: "U\x12\U0002c26b", // 𬉫
+ 0x2c26c: "U\x12\U0002c26c", // 𬉬
+ 0x2c26d: "U\x12\U0002c26d", // 𬉭
+ 0x2c26e: "U\x13\U0002c26e", // 𬉮
+ 0x2c26f: "U\x13\U0002c26f", // 𬉯
+ 0x2c270: "U\x15\U0002c270", // 𬉰
+ 0x2c271: "U\x15\U0002c271", // 𬉱
+ 0x2c272: "U\x1b\U0002c272", // 𬉲
+ 0x2c273: "U\x1e\U0002c273", // 𬉳
+ 0x2c274: "V\x03\U0002c274", // 𬉴
+ 0x2c275: "V\x03\U0002c275", // 𬉵
+ 0x2c276: "V\x03\U0002c276", // 𬉶
+ 0x2c277: "V\x03\U0002c277", // 𬉷
+ 0x2c278: "V\x03\U0002c278", // 𬉸
+ 0x2c279: "V\x03\U0002c279", // 𬉹
+ 0x2c27a: "V\x03\U0002c27a", // 𬉺
+ 0x2c27b: "V\x04\U0002c27b", // 𬉻
+ 0x2c27c: "V\x04\U0002c27c", // 𬉼
+ 0x2c27d: "V\x04\U0002c27d", // 𬉽
+ 0x2c27e: "V\x04\U0002c27e", // 𬉾
+ 0x2c27f: "V\x04\U0002c27f", // 𬉿
+ 0x2c280: "V\x04\U0002c280", // 𬊀
+ 0x2c281: "V\x05\U0002c281", // 𬊁
+ 0x2c282: "V\x05\U0002c282", // 𬊂
+ 0x2c283: "V\x06\U0002c283", // 𬊃
+ 0x2c284: "V\x06\U0002c284", // 𬊄
+ 0x2c285: "V\x06\U0002c285", // 𬊅
+ 0x2c286: "V\x06\U0002c286", // 𬊆
+ 0x2c287: "V\x06\U0002c287", // 𬊇
+ 0x2c288: "V\x06\U0002c288", // 𬊈
+ 0x2c289: "V\a\U0002c289", // 𬊉
+ 0x2c28a: "V\a\U0002c28a", // 𬊊
+ 0x2c28b: "V\a\U0002c28b", // 𬊋
+ 0x2c28c: "V\a\U0002c28c", // 𬊌
+ 0x2c28d: "V\a\U0002c28d", // 𬊍
+ 0x2c28e: "V\a\U0002c28e", // 𬊎
+ 0x2c28f: "V\a\U0002c28f", // 𬊏
+ 0x2c290: "V\a\U0002c290", // 𬊐
+ 0x2c291: "V\a\U0002c291", // 𬊑
+ 0x2c292: "V\a\U0002c292", // 𬊒
+ 0x2c293: "V\a\U0002c293", // 𬊓
+ 0x2c294: "V\a\U0002c294", // 𬊔
+ 0x2c295: "V\a\U0002c295", // 𬊕
+ 0x2c296: "V\a\U0002c296", // 𬊖
+ 0x2c297: "V\b\U0002c297", // 𬊗
+ 0x2c298: "V\b\U0002c298", // 𬊘
+ 0x2c299: "V\b\U0002c299", // 𬊙
+ 0x2c29a: "V\b\U0002c29a", // 𬊚
+ 0x2c29b: "V\b\U0002c29b", // 𬊛
+ 0x2c29c: "V\b\U0002c29c", // 𬊜
+ 0x2c29d: "V\b\U0002c29d", // 𬊝
+ 0x2c29e: "V\b\U0002c29e", // 𬊞
+ 0x2c29f: "V\b\U0002c29f", // 𬊟
+ 0x2c2a0: "V\b\U0002c2a0", // 𬊠
+ 0x2c2a1: "V\b\U0002c2a1", // 𬊡
+ 0x2c2a2: "V\b\U0002c2a2", // 𬊢
+ 0x2c2a3: "V\b\U0002c2a3", // 𬊣
+ 0x2c2a4: "V\b\U0002c2a4", // 𬊤
+ 0x2c2a5: "V\b\U0002c2a5", // 𬊥
+ 0x2c2a6: "V\b\U0002c2a6", // 𬊦
+ 0x2c2a7: "V\b\U0002c2a7", // 𬊧
+ 0x2c2a8: "V\b\U0002c2a8", // 𬊨
+ 0x2c2a9: "V\t\U0002c2a9", // 𬊩
+ 0x2c2aa: "V\t\U0002c2aa", // 𬊪
+ 0x2c2ab: "V\t\U0002c2ab", // 𬊫
+ 0x2c2ac: "V\t\U0002c2ac", // 𬊬
+ 0x2c2ad: "V\t\U0002c2ad", // 𬊭
+ 0x2c2ae: "V\t\U0002c2ae", // 𬊮
+ 0x2c2af: "V\t\U0002c2af", // 𬊯
+ 0x2c2b0: "V\t\U0002c2b0", // 𬊰
+ 0x2c2b1: "V\t\U0002c2b1", // 𬊱
+ 0x2c2b2: "V\n\U0002c2b2", // 𬊲
+ 0x2c2b3: "V\n\U0002c2b3", // 𬊳
+ 0x2c2b4: "V\n\U0002c2b4", // 𬊴
+ 0x2c2b5: "V\n\U0002c2b5", // 𬊵
+ 0x2c2b6: "V\n\U0002c2b6", // 𬊶
+ 0x2c2b7: "V\n\U0002c2b7", // 𬊷
+ 0x2c2b8: "V\n\U0002c2b8", // 𬊸
+ 0x2c2b9: "V\n\U0002c2b9", // 𬊹
+ 0x2c2ba: "V\n\U0002c2ba", // 𬊺
+ 0x2c2bb: "V\n\U0002c2bb", // 𬊻
+ 0x2c2bc: "V\n\U0002c2bc", // 𬊼
+ 0x2c2bd: "V\n\U0002c2bd", // 𬊽
+ 0x2c2be: "V\n\U0002c2be", // 𬊾
+ 0x2c2bf: "V\v\U0002c2bf", // 𬊿
+ 0x2c2c0: "V\v\U0002c2c0", // 𬋀
+ 0x2c2c1: "V\v\U0002c2c1", // 𬋁
+ 0x2c2c2: "V\v\U0002c2c2", // 𬋂
+ 0x2c2c3: "V\v\U0002c2c3", // 𬋃
+ 0x2c2c4: "V\v\U0002c2c4", // 𬋄
+ 0x2c2c5: "V\f\U0002c2c5", // 𬋅
+ 0x2c2c6: "V\f\U0002c2c6", // 𬋆
+ 0x2c2c7: "V\f\U0002c2c7", // 𬋇
+ 0x2c2c8: "V\f\U0002c2c8", // 𬋈
+ 0x2c2c9: "V\f\U0002c2c9", // 𬋉
+ 0x2c2ca: "V\f\U0002c2ca", // 𬋊
+ 0x2c2cb: "V\f\U0002c2cb", // 𬋋
+ 0x2c2cc: "V\f\U0002c2cc", // 𬋌
+ 0x2c2cd: "V\r\U0002c2cd", // 𬋍
+ 0x2c2ce: "V\r\U0002c2ce", // 𬋎
+ 0x2c2cf: "V\r\U0002c2cf", // 𬋏
+ 0x2c2d0: "V\r\U0002c2d0", // 𬋐
+ 0x2c2d1: "V\x0e\U0002c2d1", // 𬋑
+ 0x2c2d2: "V\x0e\U0002c2d2", // 𬋒
+ 0x2c2d3: "V\x0e\U0002c2d3", // 𬋓
+ 0x2c2d4: "V\x0f\U0002c2d4", // 𬋔
+ 0x2c2d5: "V\x0f\U0002c2d5", // 𬋕
+ 0x2c2d6: "V\x0f\U0002c2d6", // 𬋖
+ 0x2c2d7: "V\x0f\U0002c2d7", // 𬋗
+ 0x2c2d8: "V\x0f\U0002c2d8", // 𬋘
+ 0x2c2d9: "V\x10\U0002c2d9", // 𬋙
+ 0x2c2da: "V\x10\U0002c2da", // 𬋚
+ 0x2c2db: "V\x10\U0002c2db", // 𬋛
+ 0x2c2dc: "V\x10\U0002c2dc", // 𬋜
+ 0x2c2dd: "V\x10\U0002c2dd", // 𬋝
+ 0x2c2de: "V\x13\U0002c2de", // 𬋞
+ 0x2c2df: "V\x15\U0002c2df", // 𬋟
+ 0x2c2e0: "V\x15\U0002c2e0", // 𬋠
+ 0x2c2e1: "V\x18\U0002c2e1", // 𬋡
+ 0x2c2e2: "V\x18\U0002c2e2", // 𬋢
+ 0x2c2e3: "V!\U0002c2e3", // 𬋣
+ 0x2c2e4: "W\x04\U0002c2e4", // 𬋤
+ 0x2c2e5: "W\x04\U0002c2e5", // 𬋥
+ 0x2c2e6: "W\x05\U0002c2e6", // 𬋦
+ 0x2c2e7: "W\x06\U0002c2e7", // 𬋧
+ 0x2c2e8: "W\x06\U0002c2e8", // 𬋨
+ 0x2c2e9: "W\a\U0002c2e9", // 𬋩
+ 0x2c2ea: "W\a\U0002c2ea", // 𬋪
+ 0x2c2eb: "W\b\U0002c2eb", // 𬋫
+ 0x2c2ec: "W\b\U0002c2ec", // 𬋬
+ 0x2c2ed: "W\t\U0002c2ed", // 𬋭
+ 0x2c2ee: "W\t\U0002c2ee", // 𬋮
+ 0x2c2ef: "W\n\U0002c2ef", // 𬋯
+ 0x2c2f0: "W\n\U0002c2f0", // 𬋰
+ 0x2c2f1: "W\v\U0002c2f1", // 𬋱
+ 0x2c2f2: "W\v\U0002c2f2", // 𬋲
+ 0x2c2f3: "W\f\U0002c2f3", // 𬋳
+ 0x2c2f4: "W\f\U0002c2f4", // 𬋴
+ 0x2c2f5: "W\r\U0002c2f5", // 𬋵
+ 0x2c2f6: "W\r\U0002c2f6", // 𬋶
+ 0x2c2f7: "W\x0f\U0002c2f7", // 𬋷
+ 0x2c2f8: "W\x11\U0002c2f8", // 𬋸
+ 0x2c2f9: "W\x12\U0002c2f9", // 𬋹
+ 0x2c2fa: "W\x16\U0002c2fa", // 𬋺
+ 0x2c2fb: "X\x03\U0002c2fb", // 𬋻
+ 0x2c2fc: "X\v\U0002c2fc", // 𬋼
+ 0x2c2fd: "Y\r\U0002c2fd", // 𬋽
+ 0x2c2fe: "Y\x13\U0002c2fe", // 𬋾
+ 0x2c2ff: "Z\x05\U0002c2ff", // 𬋿
+ 0x2c300: "Z\x05\U0002c300", // 𬌀
+ 0x2c301: "Z\x05\U0002c301", // 𬌁
+ 0x2c302: "Z\a\U0002c302", // 𬌂
+ 0x2c303: "Z\b\U0002c303", // 𬌃
+ 0x2c304: "Z\b\U0002c304", // 𬌄
+ 0x2c305: "Z\b\U0002c305", // 𬌅
+ 0x2c306: "Z\b\U0002c306", // 𬌆
+ 0x2c307: "Z\b\U0002c307", // 𬌇
+ 0x2c308: "Z\b\U0002c308", // 𬌈
+ 0x2c309: "Z\n\U0002c309", // 𬌉
+ 0x2c30a: "Z\v\U0002c30a", // 𬌊
+ 0x2c30b: "Z\f\U0002c30b", // 𬌋
+ 0x2c30c: "Z\f\U0002c30c", // 𬌌
+ 0x2c30d: "Z\f\U0002c30d", // 𬌍
+ 0x2c30e: "Z\x0e\U0002c30e", // 𬌎
+ 0x2c30f: "Z\x0f\U0002c30f", // 𬌏
+ 0x2c310: "Z\x10\U0002c310", // 𬌐
+ 0x2c311: "Z\x11\U0002c311", // 𬌑
+ 0x2c312: "Z\v\U0002c312", // 𬌒
+ 0x2c313: "[\x04\U0002c313", // 𬌓
+ 0x2c314: "[\x04\U0002c314", // 𬌔
+ 0x2c315: "[\a\U0002c315", // 𬌕
+ 0x2c316: "[\x11\U0002c316", // 𬌖
+ 0x2c317: "\\\x06\U0002c317", // 𬌗
+ 0x2c318: "\\\n\U0002c318", // 𬌘
+ 0x2c319: "]\x02\U0002c319", // 𬌙
+ 0x2c31a: "]\x03\U0002c31a", // 𬌚
+ 0x2c31b: "]\x04\U0002c31b", // 𬌛
+ 0x2c31c: "]\x04\U0002c31c", // 𬌜
+ 0x2c31d: "]\x05\U0002c31d", // 𬌝
+ 0x2c31e: "]\x06\U0002c31e", // 𬌞
+ 0x2c31f: "]\x06\U0002c31f", // 𬌟
+ 0x2c320: "]\a\U0002c320", // 𬌠
+ 0x2c321: "]\b\U0002c321", // 𬌡
+ 0x2c322: "]\b\U0002c322", // 𬌢
+ 0x2c323: "]\t\U0002c323", // 𬌣
+ 0x2c324: "]\t\U0002c324", // 𬌤
+ 0x2c325: "]\t\U0002c325", // 𬌥
+ 0x2c326: "]\n\U0002c326", // 𬌦
+ 0x2c327: "]\n\U0002c327", // 𬌧
+ 0x2c328: "]\v\U0002c328", // 𬌨
+ 0x2c329: "^\x01\U0002c329", // 𬌩
+ 0x2c32a: "^\x03\U0002c32a", // 𬌪
+ 0x2c32b: "^\x03\U0002c32b", // 𬌫
+ 0x2c32c: "^\x05\U0002c32c", // 𬌬
+ 0x2c32d: "^\x05\U0002c32d", // 𬌭
+ 0x2c32e: "^\x06\U0002c32e", // 𬌮
+ 0x2c32f: "^\x06\U0002c32f", // 𬌯
+ 0x2c330: "^\x06\U0002c330", // 𬌰
+ 0x2c331: "^\x06\U0002c331", // 𬌱
+ 0x2c332: "^\a\U0002c332", // 𬌲
+ 0x2c333: "^\a\U0002c333", // 𬌳
+ 0x2c334: "^\a\U0002c334", // 𬌴
+ 0x2c335: "^\b\U0002c335", // 𬌵
+ 0x2c336: "^\b\U0002c336", // 𬌶
+ 0x2c337: "^\b\U0002c337", // 𬌷
+ 0x2c338: "^\t\U0002c338", // 𬌸
+ 0x2c339: "^\t\U0002c339", // 𬌹
+ 0x2c33a: "^\t\U0002c33a", // 𬌺
+ 0x2c33b: "^\t\U0002c33b", // 𬌻
+ 0x2c33c: "^\t\U0002c33c", // 𬌼
+ 0x2c33d: "^\n\U0002c33d", // 𬌽
+ 0x2c33e: "^\n\U0002c33e", // 𬌾
+ 0x2c33f: "^\n\U0002c33f", // 𬌿
+ 0x2c340: "^\n\U0002c340", // 𬍀
+ 0x2c341: "^\v\U0002c341", // 𬍁
+ 0x2c342: "^\v\U0002c342", // 𬍂
+ 0x2c343: "^\v\U0002c343", // 𬍃
+ 0x2c344: "^\v\U0002c344", // 𬍄
+ 0x2c345: "^\v\U0002c345", // 𬍅
+ 0x2c346: "^\f\U0002c346", // 𬍆
+ 0x2c347: "^\f\U0002c347", // 𬍇
+ 0x2c348: "^\r\U0002c348", // 𬍈
+ 0x2c349: "^\r\U0002c349", // 𬍉
+ 0x2c34a: "^\r\U0002c34a", // 𬍊
+ 0x2c34b: "^\x0e\U0002c34b", // 𬍋
+ 0x2c34c: "^\x0f\U0002c34c", // 𬍌
+ 0x2c34d: "^\x11\U0002c34d", // 𬍍
+ 0x2c34e: "^\x15\U0002c34e", // 𬍎
+ 0x2c34f: "_\t\U0002c34f", // 𬍏
+ 0x2c350: "`\x03\U0002c350", // 𬍐
+ 0x2c351: "`\x03\U0002c351", // 𬍑
+ 0x2c352: "`\x04\U0002c352", // 𬍒
+ 0x2c353: "`\x04\U0002c353", // 𬍓
+ 0x2c354: "`\x04\U0002c354", // 𬍔
+ 0x2c355: "`\x04\U0002c355", // 𬍕
+ 0x2c356: "`\x04\U0002c356", // 𬍖
+ 0x2c357: "`\x05\U0002c357", // 𬍗
+ 0x2c358: "`\x05\U0002c358", // 𬍘
+ 0x2c359: "`\x05\U0002c359", // 𬍙
+ 0x2c35a: "`\x05\U0002c35a", // 𬍚
+ 0x2c35b: "`\x05\U0002c35b", // 𬍛
+ 0x2c35c: "`\x05\U0002c35c", // 𬍜
+ 0x2c35d: "`\x05\U0002c35d", // 𬍝
+ 0x2c35e: "`\x06\U0002c35e", // 𬍞
+ 0x2c35f: "`\x06\U0002c35f", // 𬍟
+ 0x2c360: "`\x06\U0002c360", // 𬍠
+ 0x2c361: "`\x06\U0002c361", // 𬍡
+ 0x2c362: "`\x06\U0002c362", // 𬍢
+ 0x2c363: "`\x06\U0002c363", // 𬍣
+ 0x2c364: "`\x06\U0002c364", // 𬍤
+ 0x2c365: "`\a\U0002c365", // 𬍥
+ 0x2c366: "`\a\U0002c366", // 𬍦
+ 0x2c367: "`\a\U0002c367", // 𬍧
+ 0x2c368: "`\a\U0002c368", // 𬍨
+ 0x2c369: "`\a\U0002c369", // 𬍩
+ 0x2c36a: "`\b\U0002c36a", // 𬍪
+ 0x2c36b: "`\b\U0002c36b", // 𬍫
+ 0x2c36c: "`\b\U0002c36c", // 𬍬
+ 0x2c36d: "`\b\U0002c36d", // 𬍭
+ 0x2c36e: "`\b\U0002c36e", // 𬍮
+ 0x2c36f: "`\b\U0002c36f", // 𬍯
+ 0x2c370: "`\b\U0002c370", // 𬍰
+ 0x2c371: "`\b\U0002c371", // 𬍱
+ 0x2c372: "`\b\U0002c372", // 𬍲
+ 0x2c373: "`\b\U0002c373", // 𬍳
+ 0x2c374: "`\t\U0002c374", // 𬍴
+ 0x2c375: "`\t\U0002c375", // 𬍵
+ 0x2c376: "`\t\U0002c376", // 𬍶
+ 0x2c377: "`\t\U0002c377", // 𬍷
+ 0x2c378: "`\t\U0002c378", // 𬍸
+ 0x2c379: "`\t\U0002c379", // 𬍹
+ 0x2c37a: "`\t\U0002c37a", // 𬍺
+ 0x2c37b: "`\n\U0002c37b", // 𬍻
+ 0x2c37c: "`\n\U0002c37c", // 𬍼
+ 0x2c37d: "`\n\U0002c37d", // 𬍽
+ 0x2c37e: "`\n\U0002c37e", // 𬍾
+ 0x2c37f: "`\n\U0002c37f", // 𬍿
+ 0x2c380: "`\n\U0002c380", // 𬎀
+ 0x2c381: "`\n\U0002c381", // 𬎁
+ 0x2c382: "`\n\U0002c382", // 𬎂
+ 0x2c383: "`\n\U0002c383", // 𬎃
+ 0x2c384: "`\n\U0002c384", // 𬎄
+ 0x2c385: "`\v\U0002c385", // 𬎅
+ 0x2c386: "`\v\U0002c386", // 𬎆
+ 0x2c387: "`\v\U0002c387", // 𬎇
+ 0x2c388: "`\v\U0002c388", // 𬎈
+ 0x2c389: "`\v\U0002c389", // 𬎉
+ 0x2c38a: "`\v\U0002c38a", // 𬎊
+ 0x2c38b: "`\f\U0002c38b", // 𬎋
+ 0x2c38c: "`\f\U0002c38c", // 𬎌
+ 0x2c38d: "`\f\U0002c38d", // 𬎍
+ 0x2c38e: "`\f\U0002c38e", // 𬎎
+ 0x2c38f: "`\f\U0002c38f", // 𬎏
+ 0x2c390: "`\f\U0002c390", // 𬎐
+ 0x2c391: "`\f\U0002c391", // 𬎑
+ 0x2c392: "`\f\U0002c392", // 𬎒
+ 0x2c393: "`\r\U0002c393", // 𬎓
+ 0x2c394: "`\r\U0002c394", // 𬎔
+ 0x2c395: "`\r\U0002c395", // 𬎕
+ 0x2c396: "`\r\U0002c396", // 𬎖
+ 0x2c397: "`\x0e\U0002c397", // 𬎗
+ 0x2c398: "`\x0e\U0002c398", // 𬎘
+ 0x2c399: "`\x0e\U0002c399", // 𬎙
+ 0x2c39a: "`\x0f\U0002c39a", // 𬎚
+ 0x2c39b: "`\x10\U0002c39b", // 𬎛
+ 0x2c39c: "`\x10\U0002c39c", // 𬎜
+ 0x2c39d: "`\x10\U0002c39d", // 𬎝
+ 0x2c39e: "`\x14\U0002c39e", // 𬎞
+ 0x2c39f: "`\x15\U0002c39f", // 𬎟
+ 0x2c3a0: "`\x15\U0002c3a0", // 𬎠
+ 0x2c3a1: "`\x16\U0002c3a1", // 𬎡
+ 0x2c3a2: "a\x05\U0002c3a2", // 𬎢
+ 0x2c3a3: "a\x05\U0002c3a3", // 𬎣
+ 0x2c3a4: "b\x02\U0002c3a4", // 𬎤
+ 0x2c3a5: "b\x03\U0002c3a5", // 𬎥
+ 0x2c3a6: "b\x04\U0002c3a6", // 𬎦
+ 0x2c3a7: "b\x04\U0002c3a7", // 𬎧
+ 0x2c3a8: "b\x06\U0002c3a8", // 𬎨
+ 0x2c3a9: "b\x06\U0002c3a9", // 𬎩
+ 0x2c3aa: "b\x06\U0002c3aa", // 𬎪
+ 0x2c3ab: "b\x06\U0002c3ab", // 𬎫
+ 0x2c3ac: "b\b\U0002c3ac", // 𬎬
+ 0x2c3ad: "b\b\U0002c3ad", // 𬎭
+ 0x2c3ae: "b\t\U0002c3ae", // 𬎮
+ 0x2c3af: "b\n\U0002c3af", // 𬎯
+ 0x2c3b0: "b\x0e\U0002c3b0", // 𬎰
+ 0x2c3b1: "c\b\U0002c3b1", // 𬎱
+ 0x2c3b2: "c\t\U0002c3b2", // 𬎲
+ 0x2c3b3: "d\x04\U0002c3b3", // 𬎳
+ 0x2c3b4: "d\x06\U0002c3b4", // 𬎴
+ 0x2c3b5: "d\x06\U0002c3b5", // 𬎵
+ 0x2c3b6: "d\a\U0002c3b6", // 𬎶
+ 0x2c3b7: "d\b\U0002c3b7", // 𬎷
+ 0x2c3b8: "d\b\U0002c3b8", // 𬎸
+ 0x2c3b9: "d\b\U0002c3b9", // 𬎹
+ 0x2c3ba: "d\t\U0002c3ba", // 𬎺
+ 0x2c3bb: "d\t\U0002c3bb", // 𬎻
+ 0x2c3bc: "d\t\U0002c3bc", // 𬎼
+ 0x2c3bd: "e\x03\U0002c3bd", // 𬎽
+ 0x2c3be: "e\x03\U0002c3be", // 𬎾
+ 0x2c3bf: "f\x02\U0002c3bf", // 𬎿
+ 0x2c3c0: "f\x03\U0002c3c0", // 𬏀
+ 0x2c3c1: "f\x04\U0002c3c1", // 𬏁
+ 0x2c3c2: "f\x05\U0002c3c2", // 𬏂
+ 0x2c3c3: "f\x05\U0002c3c3", // 𬏃
+ 0x2c3c4: "f\x06\U0002c3c4", // 𬏄
+ 0x2c3c5: "f\x06\U0002c3c5", // 𬏅
+ 0x2c3c6: "f\x06\U0002c3c6", // 𬏆
+ 0x2c3c7: "f\a\U0002c3c7", // 𬏇
+ 0x2c3c8: "f\a\U0002c3c8", // 𬏈
+ 0x2c3c9: "f\a\U0002c3c9", // 𬏉
+ 0x2c3ca: "f\a\U0002c3ca", // 𬏊
+ 0x2c3cb: "f\b\U0002c3cb", // 𬏋
+ 0x2c3cc: "f\n\U0002c3cc", // 𬏌
+ 0x2c3cd: "f\n\U0002c3cd", // 𬏍
+ 0x2c3ce: "f\n\U0002c3ce", // 𬏎
+ 0x2c3cf: "f\n\U0002c3cf", // 𬏏
+ 0x2c3d0: "f\n\U0002c3d0", // 𬏐
+ 0x2c3d1: "f\n\U0002c3d1", // 𬏑
+ 0x2c3d2: "f\n\U0002c3d2", // 𬏒
+ 0x2c3d3: "f\v\U0002c3d3", // 𬏓
+ 0x2c3d4: "f\v\U0002c3d4", // 𬏔
+ 0x2c3d5: "f\f\U0002c3d5", // 𬏕
+ 0x2c3d6: "f\r\U0002c3d6", // 𬏖
+ 0x2c3d7: "f\r\U0002c3d7", // 𬏗
+ 0x2c3d8: "f\x12\U0002c3d8", // 𬏘
+ 0x2c3d9: "g\b\U0002c3d9", // 𬏙
+ 0x2c3da: "h\x01\U0002c3da", // 𬏚
+ 0x2c3db: "h\x03\U0002c3db", // 𬏛
+ 0x2c3dc: "h\x03\U0002c3dc", // 𬏜
+ 0x2c3dd: "h\x04\U0002c3dd", // 𬏝
+ 0x2c3de: "h\x04\U0002c3de", // 𬏞
+ 0x2c3df: "h\x04\U0002c3df", // 𬏟
+ 0x2c3e0: "h\x04\U0002c3e0", // 𬏠
+ 0x2c3e1: "h\x05\U0002c3e1", // 𬏡
+ 0x2c3e2: "h\x05\U0002c3e2", // 𬏢
+ 0x2c3e3: "h\x05\U0002c3e3", // 𬏣
+ 0x2c3e4: "h\x05\U0002c3e4", // 𬏤
+ 0x2c3e5: "h\x05\U0002c3e5", // 𬏥
+ 0x2c3e6: "h\x05\U0002c3e6", // 𬏦
+ 0x2c3e7: "h\x06\U0002c3e7", // 𬏧
+ 0x2c3e8: "h\x06\U0002c3e8", // 𬏨
+ 0x2c3e9: "h\x06\U0002c3e9", // 𬏩
+ 0x2c3ea: "h\x06\U0002c3ea", // 𬏪
+ 0x2c3eb: "h\x06\U0002c3eb", // 𬏫
+ 0x2c3ec: "h\x06\U0002c3ec", // 𬏬
+ 0x2c3ed: "h\a\U0002c3ed", // 𬏭
+ 0x2c3ee: "h\a\U0002c3ee", // 𬏮
+ 0x2c3ef: "h\a\U0002c3ef", // 𬏯
+ 0x2c3f0: "h\a\U0002c3f0", // 𬏰
+ 0x2c3f1: "h\a\U0002c3f1", // 𬏱
+ 0x2c3f2: "h\b\U0002c3f2", // 𬏲
+ 0x2c3f3: "h\b\U0002c3f3", // 𬏳
+ 0x2c3f4: "h\b\U0002c3f4", // 𬏴
+ 0x2c3f5: "h\b\U0002c3f5", // 𬏵
+ 0x2c3f6: "h\t\U0002c3f6", // 𬏶
+ 0x2c3f7: "h\t\U0002c3f7", // 𬏷
+ 0x2c3f8: "h\t\U0002c3f8", // 𬏸
+ 0x2c3f9: "h\n\U0002c3f9", // 𬏹
+ 0x2c3fa: "h\v\U0002c3fa", // 𬏺
+ 0x2c3fb: "h\v\U0002c3fb", // 𬏻
+ 0x2c3fc: "h\f\U0002c3fc", // 𬏼
+ 0x2c3fd: "h\f\U0002c3fd", // 𬏽
+ 0x2c3fe: "h\r\U0002c3fe", // 𬏾
+ 0x2c3ff: "h\x10\U0002c3ff", // 𬏿
+ 0x2c400: "h\x10\U0002c400", // 𬐀
+ 0x2c401: "h\x11\U0002c401", // 𬐁
+ 0x2c402: "i\a\U0002c402", // 𬐂
+ 0x2c403: "j\x01\U0002c403", // 𬐃
+ 0x2c404: "j\x04\U0002c404", // 𬐄
+ 0x2c405: "j\x04\U0002c405", // 𬐅
+ 0x2c406: "j\x05\U0002c406", // 𬐆
+ 0x2c407: "j\x05\U0002c407", // 𬐇
+ 0x2c408: "j\x06\U0002c408", // 𬐈
+ 0x2c409: "j\x06\U0002c409", // 𬐉
+ 0x2c40a: "j\a\U0002c40a", // 𬐊
+ 0x2c40b: "j\b\U0002c40b", // 𬐋
+ 0x2c40c: "j\b\U0002c40c", // 𬐌
+ 0x2c40d: "j\b\U0002c40d", // 𬐍
+ 0x2c40e: "j\b\U0002c40e", // 𬐎
+ 0x2c40f: "j\t\U0002c40f", // 𬐏
+ 0x2c410: "j\t\U0002c410", // 𬐐
+ 0x2c411: "j\x12\U0002c411", // 𬐑
+ 0x2c412: "k\x04\U0002c412", // 𬐒
+ 0x2c413: "k\x05\U0002c413", // 𬐓
+ 0x2c414: "k\x05\U0002c414", // 𬐔
+ 0x2c415: "k\a\U0002c415", // 𬐕
+ 0x2c416: "k\t\U0002c416", // 𬐖
+ 0x2c417: "l\x03\U0002c417", // 𬐗
+ 0x2c418: "l\x04\U0002c418", // 𬐘
+ 0x2c419: "l\x04\U0002c419", // 𬐙
+ 0x2c41a: "l\x05\U0002c41a", // 𬐚
+ 0x2c41b: "l\x05\U0002c41b", // 𬐛
+ 0x2c41c: "l\x06\U0002c41c", // 𬐜
+ 0x2c41d: "l\x06\U0002c41d", // 𬐝
+ 0x2c41e: "l\x06\U0002c41e", // 𬐞
+ 0x2c41f: "l\a\U0002c41f", // 𬐟
+ 0x2c420: "l\a\U0002c420", // 𬐠
+ 0x2c421: "l\a\U0002c421", // 𬐡
+ 0x2c422: "l\b\U0002c422", // 𬐢
+ 0x2c423: "l\b\U0002c423", // 𬐣
+ 0x2c424: "l\b\U0002c424", // 𬐤
+ 0x2c425: "l\b\U0002c425", // 𬐥
+ 0x2c426: "l\b\U0002c426", // 𬐦
+ 0x2c427: "l\b\U0002c427", // 𬐧
+ 0x2c428: "l\t\U0002c428", // 𬐨
+ 0x2c429: "l\t\U0002c429", // 𬐩
+ 0x2c42a: "l\t\U0002c42a", // 𬐪
+ 0x2c42b: "l\t\U0002c42b", // 𬐫
+ 0x2c42c: "l\t\U0002c42c", // 𬐬
+ 0x2c42d: "l\t\U0002c42d", // 𬐭
+ 0x2c42e: "l\t\U0002c42e", // 𬐮
+ 0x2c42f: "l\t\U0002c42f", // 𬐯
+ 0x2c430: "l\n\U0002c430", // 𬐰
+ 0x2c431: "l\v\U0002c431", // 𬐱
+ 0x2c432: "l\f\U0002c432", // 𬐲
+ 0x2c433: "l\f\U0002c433", // 𬐳
+ 0x2c434: "l\f\U0002c434", // 𬐴
+ 0x2c435: "l\f\U0002c435", // 𬐵
+ 0x2c436: "l\r\U0002c436", // 𬐶
+ 0x2c437: "l\r\U0002c437", // 𬐷
+ 0x2c438: "l\x0e\U0002c438", // 𬐸
+ 0x2c439: "l\x0e\U0002c439", // 𬐹
+ 0x2c43a: "l\x0e\U0002c43a", // 𬐺
+ 0x2c43b: "l\x0e\U0002c43b", // 𬐻
+ 0x2c43c: "l\x0e\U0002c43c", // 𬐼
+ 0x2c43d: "l\x0f\U0002c43d", // 𬐽
+ 0x2c43e: "l\x10\U0002c43e", // 𬐾
+ 0x2c43f: "l\x10\U0002c43f", // 𬐿
+ 0x2c440: "l\x10\U0002c440", // 𬑀
+ 0x2c441: "l\x11\U0002c441", // 𬑁
+ 0x2c442: "l\x11\U0002c442", // 𬑂
+ 0x2c443: "l\x14\U0002c443", // 𬑃
+ 0x2c444: "l\x14\U0002c444", // 𬑄
+ 0x2c445: "m\x03\U0002c445", // 𬑅
+ 0x2c446: "m\x04\U0002c446", // 𬑆
+ 0x2c447: "m\x04\U0002c447", // 𬑇
+ 0x2c448: "m\x05\U0002c448", // 𬑈
+ 0x2c449: "m\x05\U0002c449", // 𬑉
+ 0x2c44a: "m\x05\U0002c44a", // 𬑊
+ 0x2c44b: "m\x05\U0002c44b", // 𬑋
+ 0x2c44c: "m\x05\U0002c44c", // 𬑌
+ 0x2c44d: "m\x05\U0002c44d", // 𬑍
+ 0x2c44e: "m\x05\U0002c44e", // 𬑎
+ 0x2c44f: "m\x05\U0002c44f", // 𬑏
+ 0x2c450: "m\x06\U0002c450", // 𬑐
+ 0x2c451: "m\x06\U0002c451", // 𬑑
+ 0x2c452: "m\x06\U0002c452", // 𬑒
+ 0x2c453: "m\x06\U0002c453", // 𬑓
+ 0x2c454: "m\x06\U0002c454", // 𬑔
+ 0x2c455: "m\x06\U0002c455", // 𬑕
+ 0x2c456: "m\a\U0002c456", // 𬑖
+ 0x2c457: "m\a\U0002c457", // 𬑗
+ 0x2c458: "m\b\U0002c458", // 𬑘
+ 0x2c459: "m\b\U0002c459", // 𬑙
+ 0x2c45a: "m\b\U0002c45a", // 𬑚
+ 0x2c45b: "m\b\U0002c45b", // 𬑛
+ 0x2c45c: "m\t\U0002c45c", // 𬑜
+ 0x2c45d: "m\t\U0002c45d", // 𬑝
+ 0x2c45e: "m\n\U0002c45e", // 𬑞
+ 0x2c45f: "m\n\U0002c45f", // 𬑟
+ 0x2c460: "m\n\U0002c460", // 𬑠
+ 0x2c461: "m\n\U0002c461", // 𬑡
+ 0x2c462: "m\n\U0002c462", // 𬑢
+ 0x2c463: "m\n\U0002c463", // 𬑣
+ 0x2c464: "m\v\U0002c464", // 𬑤
+ 0x2c465: "m\v\U0002c465", // 𬑥
+ 0x2c466: "m\v\U0002c466", // 𬑦
+ 0x2c467: "m\v\U0002c467", // 𬑧
+ 0x2c468: "m\f\U0002c468", // 𬑨
+ 0x2c469: "m\f\U0002c469", // 𬑩
+ 0x2c46a: "m\x0e\U0002c46a", // 𬑪
+ 0x2c46b: "m\x10\U0002c46b", // 𬑫
+ 0x2c46c: "m\x14\U0002c46c", // 𬑬
+ 0x2c46d: "n\x03\U0002c46d", // 𬑭
+ 0x2c46e: "n\b\U0002c46e", // 𬑮
+ 0x2c46f: "n\t\U0002c46f", // 𬑯
+ 0x2c470: "o\x05\U0002c470", // 𬑰
+ 0x2c471: "o\x05\U0002c471", // 𬑱
+ 0x2c472: "o\a\U0002c472", // 𬑲
+ 0x2c473: "o\a\U0002c473", // 𬑳
+ 0x2c474: "o\b\U0002c474", // 𬑴
+ 0x2c475: "o\f\U0002c475", // 𬑵
+ 0x2c476: "o\r\U0002c476", // 𬑶
+ 0x2c477: "o\x0e\U0002c477", // 𬑷
+ 0x2c478: "o\x10\U0002c478", // 𬑸
+ 0x2c479: "p\x02\U0002c479", // 𬑹
+ 0x2c47a: "p\x03\U0002c47a", // 𬑺
+ 0x2c47b: "p\x03\U0002c47b", // 𬑻
+ 0x2c47c: "p\x03\U0002c47c", // 𬑼
+ 0x2c47d: "p\x04\U0002c47d", // 𬑽
+ 0x2c47e: "p\x04\U0002c47e", // 𬑾
+ 0x2c47f: "p\x04\U0002c47f", // 𬑿
+ 0x2c480: "p\x04\U0002c480", // 𬒀
+ 0x2c481: "p\x04\U0002c481", // 𬒁
+ 0x2c482: "p\x04\U0002c482", // 𬒂
+ 0x2c483: "p\x05\U0002c483", // 𬒃
+ 0x2c484: "p\x05\U0002c484", // 𬒄
+ 0x2c485: "p\x05\U0002c485", // 𬒅
+ 0x2c486: "p\x05\U0002c486", // 𬒆
+ 0x2c487: "p\x05\U0002c487", // 𬒇
+ 0x2c488: "p\x05\U0002c488", // 𬒈
+ 0x2c489: "p\x06\U0002c489", // 𬒉
+ 0x2c48a: "p\x06\U0002c48a", // 𬒊
+ 0x2c48b: "p\x06\U0002c48b", // 𬒋
+ 0x2c48c: "p\x06\U0002c48c", // 𬒌
+ 0x2c48d: "p\a\U0002c48d", // 𬒍
+ 0x2c48e: "p\a\U0002c48e", // 𬒎
+ 0x2c48f: "p\a\U0002c48f", // 𬒏
+ 0x2c490: "p\a\U0002c490", // 𬒐
+ 0x2c491: "p\a\U0002c491", // 𬒑
+ 0x2c492: "p\b\U0002c492", // 𬒒
+ 0x2c493: "p\b\U0002c493", // 𬒓
+ 0x2c494: "p\b\U0002c494", // 𬒔
+ 0x2c495: "p\b\U0002c495", // 𬒕
+ 0x2c496: "p\t\U0002c496", // 𬒖
+ 0x2c497: "p\t\U0002c497", // 𬒗
+ 0x2c498: "p\t\U0002c498", // 𬒘
+ 0x2c499: "p\t\U0002c499", // 𬒙
+ 0x2c49a: "p\t\U0002c49a", // 𬒚
+ 0x2c49b: "p\n\U0002c49b", // 𬒛
+ 0x2c49c: "p\v\U0002c49c", // 𬒜
+ 0x2c49d: "p\v\U0002c49d", // 𬒝
+ 0x2c49e: "p\v\U0002c49e", // 𬒞
+ 0x2c49f: "p\f\U0002c49f", // 𬒟
+ 0x2c4a0: "p\f\U0002c4a0", // 𬒠
+ 0x2c4a1: "p\f\U0002c4a1", // 𬒡
+ 0x2c4a2: "p\f\U0002c4a2", // 𬒢
+ 0x2c4a3: "p\f\U0002c4a3", // 𬒣
+ 0x2c4a4: "p\r\U0002c4a4", // 𬒤
+ 0x2c4a5: "p\r\U0002c4a5", // 𬒥
+ 0x2c4a6: "p\x0e\U0002c4a6", // 𬒦
+ 0x2c4a7: "p\x0e\U0002c4a7", // 𬒧
+ 0x2c4a8: "p\x0f\U0002c4a8", // 𬒨
+ 0x2c4a9: "p\x11\U0002c4a9", // 𬒩
+ 0x2c4aa: "p\x11\U0002c4aa", // 𬒪
+ 0x2c4ab: "p\x13\U0002c4ab", // 𬒫
+ 0x2c4ac: "q\x03\U0002c4ac", // 𬒬
+ 0x2c4ad: "q\x04\U0002c4ad", // 𬒭
+ 0x2c4ae: "q\x04\U0002c4ae", // 𬒮
+ 0x2c4af: "q\x04\U0002c4af", // 𬒯
+ 0x2c4b0: "q\x04\U0002c4b0", // 𬒰
+ 0x2c4b1: "q\x05\U0002c4b1", // 𬒱
+ 0x2c4b2: "q\x05\U0002c4b2", // 𬒲
+ 0x2c4b3: "q\x05\U0002c4b3", // 𬒳
+ 0x2c4b4: "q\x06\U0002c4b4", // 𬒴
+ 0x2c4b5: "q\x06\U0002c4b5", // 𬒵
+ 0x2c4b6: "q\a\U0002c4b6", // 𬒶
+ 0x2c4b7: "q\a\U0002c4b7", // 𬒷
+ 0x2c4b8: "q\a\U0002c4b8", // 𬒸
+ 0x2c4b9: "q\a\U0002c4b9", // 𬒹
+ 0x2c4ba: "q\a\U0002c4ba", // 𬒺
+ 0x2c4bb: "q\a\U0002c4bb", // 𬒻
+ 0x2c4bc: "q\a\U0002c4bc", // 𬒼
+ 0x2c4bd: "q\a\U0002c4bd", // 𬒽
+ 0x2c4be: "q\b\U0002c4be", // 𬒾
+ 0x2c4bf: "q\b\U0002c4bf", // 𬒿
+ 0x2c4c0: "q\b\U0002c4c0", // 𬓀
+ 0x2c4c1: "q\b\U0002c4c1", // 𬓁
+ 0x2c4c2: "q\b\U0002c4c2", // 𬓂
+ 0x2c4c3: "q\b\U0002c4c3", // 𬓃
+ 0x2c4c4: "q\b\U0002c4c4", // 𬓄
+ 0x2c4c5: "q\b\U0002c4c5", // 𬓅
+ 0x2c4c6: "q\b\U0002c4c6", // 𬓆
+ 0x2c4c7: "q\b\U0002c4c7", // 𬓇
+ 0x2c4c8: "q\b\U0002c4c8", // 𬓈
+ 0x2c4c9: "q\t\U0002c4c9", // 𬓉
+ 0x2c4ca: "q\t\U0002c4ca", // 𬓊
+ 0x2c4cb: "q\t\U0002c4cb", // 𬓋
+ 0x2c4cc: "q\t\U0002c4cc", // 𬓌
+ 0x2c4cd: "q\t\U0002c4cd", // 𬓍
+ 0x2c4ce: "q\n\U0002c4ce", // 𬓎
+ 0x2c4cf: "q\n\U0002c4cf", // 𬓏
+ 0x2c4d0: "q\n\U0002c4d0", // 𬓐
+ 0x2c4d1: "q\v\U0002c4d1", // 𬓑
+ 0x2c4d2: "q\v\U0002c4d2", // 𬓒
+ 0x2c4d3: "q\v\U0002c4d3", // 𬓓
+ 0x2c4d4: "q\v\U0002c4d4", // 𬓔
+ 0x2c4d5: "q\v\U0002c4d5", // 𬓕
+ 0x2c4d6: "q\v\U0002c4d6", // 𬓖
+ 0x2c4d7: "q\v\U0002c4d7", // 𬓗
+ 0x2c4d8: "q\f\U0002c4d8", // 𬓘
+ 0x2c4d9: "q\f\U0002c4d9", // 𬓙
+ 0x2c4da: "q\f\U0002c4da", // 𬓚
+ 0x2c4db: "q\r\U0002c4db", // 𬓛
+ 0x2c4dc: "q\x0e\U0002c4dc", // 𬓜
+ 0x2c4dd: "q\x11\U0002c4dd", // 𬓝
+ 0x2c4de: "r\v\U0002c4de", // 𬓞
+ 0x2c4df: "r\x11\U0002c4df", // 𬓟
+ 0x2c4e0: "s\x02\U0002c4e0", // 𬓠
+ 0x2c4e1: "s\x04\U0002c4e1", // 𬓡
+ 0x2c4e2: "s\x04\U0002c4e2", // 𬓢
+ 0x2c4e3: "s\x04\U0002c4e3", // 𬓣
+ 0x2c4e4: "s\x04\U0002c4e4", // 𬓤
+ 0x2c4e5: "s\x05\U0002c4e5", // 𬓥
+ 0x2c4e6: "s\x05\U0002c4e6", // 𬓦
+ 0x2c4e7: "s\x06\U0002c4e7", // 𬓧
+ 0x2c4e8: "s\x06\U0002c4e8", // 𬓨
+ 0x2c4e9: "s\x06\U0002c4e9", // 𬓩
+ 0x2c4ea: "s\a\U0002c4ea", // 𬓪
+ 0x2c4eb: "s\a\U0002c4eb", // 𬓫
+ 0x2c4ec: "s\a\U0002c4ec", // 𬓬
+ 0x2c4ed: "s\b\U0002c4ed", // 𬓭
+ 0x2c4ee: "s\b\U0002c4ee", // 𬓮
+ 0x2c4ef: "s\b\U0002c4ef", // 𬓯
+ 0x2c4f0: "s\b\U0002c4f0", // 𬓰
+ 0x2c4f1: "s\t\U0002c4f1", // 𬓱
+ 0x2c4f2: "s\t\U0002c4f2", // 𬓲
+ 0x2c4f3: "s\t\U0002c4f3", // 𬓳
+ 0x2c4f4: "s\t\U0002c4f4", // 𬓴
+ 0x2c4f5: "s\n\U0002c4f5", // 𬓵
+ 0x2c4f6: "s\n\U0002c4f6", // 𬓶
+ 0x2c4f7: "s\n\U0002c4f7", // 𬓷
+ 0x2c4f8: "s\n\U0002c4f8", // 𬓸
+ 0x2c4f9: "s\n\U0002c4f9", // 𬓹
+ 0x2c4fa: "s\v\U0002c4fa", // 𬓺
+ 0x2c4fb: "s\v\U0002c4fb", // 𬓻
+ 0x2c4fc: "s\v\U0002c4fc", // 𬓼
+ 0x2c4fd: "s\v\U0002c4fd", // 𬓽
+ 0x2c4fe: "s\f\U0002c4fe", // 𬓾
+ 0x2c4ff: "s\f\U0002c4ff", // 𬓿
+ 0x2c500: "s\f\U0002c500", // 𬔀
+ 0x2c501: "s\r\U0002c501", // 𬔁
+ 0x2c502: "s\x0e\U0002c502", // 𬔂
+ 0x2c503: "s\x0f\U0002c503", // 𬔃
+ 0x2c504: "s\x10\U0002c504", // 𬔄
+ 0x2c505: "t\x02\U0002c505", // 𬔅
+ 0x2c506: "t\x04\U0002c506", // 𬔆
+ 0x2c507: "t\x04\U0002c507", // 𬔇
+ 0x2c508: "t\x05\U0002c508", // 𬔈
+ 0x2c509: "t\x06\U0002c509", // 𬔉
+ 0x2c50a: "t\x06\U0002c50a", // 𬔊
+ 0x2c50b: "t\a\U0002c50b", // 𬔋
+ 0x2c50c: "t\a\U0002c50c", // 𬔌
+ 0x2c50d: "t\b\U0002c50d", // 𬔍
+ 0x2c50e: "t\n\U0002c50e", // 𬔎
+ 0x2c50f: "t\n\U0002c50f", // 𬔏
+ 0x2c510: "t\v\U0002c510", // 𬔐
+ 0x2c511: "t\v\U0002c511", // 𬔑
+ 0x2c512: "t\v\U0002c512", // 𬔒
+ 0x2c513: "t\v\U0002c513", // 𬔓
+ 0x2c514: "t\r\U0002c514", // 𬔔
+ 0x2c515: "t\x10\U0002c515", // 𬔕
+ 0x2c516: "u\x01\U0002c516", // 𬔖
+ 0x2c517: "u\x03\U0002c517", // 𬔗
+ 0x2c518: "u\x04\U0002c518", // 𬔘
+ 0x2c519: "u\x04\U0002c519", // 𬔙
+ 0x2c51a: "u\x04\U0002c51a", // 𬔚
+ 0x2c51b: "u\x05\U0002c51b", // 𬔛
+ 0x2c51c: "u\x05\U0002c51c", // 𬔜
+ 0x2c51d: "u\x06\U0002c51d", // 𬔝
+ 0x2c51e: "u\a\U0002c51e", // 𬔞
+ 0x2c51f: "u\a\U0002c51f", // 𬔟
+ 0x2c520: "u\a\U0002c520", // 𬔠
+ 0x2c521: "u\b\U0002c521", // 𬔡
+ 0x2c522: "u\b\U0002c522", // 𬔢
+ 0x2c523: "u\b\U0002c523", // 𬔣
+ 0x2c524: "u\t\U0002c524", // 𬔤
+ 0x2c525: "u\t\U0002c525", // 𬔥
+ 0x2c526: "u\t\U0002c526", // 𬔦
+ 0x2c527: "u\n\U0002c527", // 𬔧
+ 0x2c528: "u\v\U0002c528", // 𬔨
+ 0x2c529: "u\v\U0002c529", // 𬔩
+ 0x2c52a: "u\f\U0002c52a", // 𬔪
+ 0x2c52b: "u\x10\U0002c52b", // 𬔫
+ 0x2c52c: "v\x02\U0002c52c", // 𬔬
+ 0x2c52d: "v\x03\U0002c52d", // 𬔭
+ 0x2c52e: "v\x04\U0002c52e", // 𬔮
+ 0x2c52f: "v\x04\U0002c52f", // 𬔯
+ 0x2c530: "v\x04\U0002c530", // 𬔰
+ 0x2c531: "v\x04\U0002c531", // 𬔱
+ 0x2c532: "v\x04\U0002c532", // 𬔲
+ 0x2c533: "v\x05\U0002c533", // 𬔳
+ 0x2c534: "v\x05\U0002c534", // 𬔴
+ 0x2c535: "v\x05\U0002c535", // 𬔵
+ 0x2c536: "v\x05\U0002c536", // 𬔶
+ 0x2c537: "v\x05\U0002c537", // 𬔷
+ 0x2c538: "v\x05\U0002c538", // 𬔸
+ 0x2c539: "v\x05\U0002c539", // 𬔹
+ 0x2c53a: "v\x06\U0002c53a", // 𬔺
+ 0x2c53b: "v\x06\U0002c53b", // 𬔻
+ 0x2c53c: "v\x06\U0002c53c", // 𬔼
+ 0x2c53d: "v\x06\U0002c53d", // 𬔽
+ 0x2c53e: "v\x06\U0002c53e", // 𬔾
+ 0x2c53f: "v\x06\U0002c53f", // 𬔿
+ 0x2c540: "v\x06\U0002c540", // 𬕀
+ 0x2c541: "v\x06\U0002c541", // 𬕁
+ 0x2c542: "v\a\U0002c542", // 𬕂
+ 0x2c543: "v\a\U0002c543", // 𬕃
+ 0x2c544: "v\a\U0002c544", // 𬕄
+ 0x2c545: "v\a\U0002c545", // 𬕅
+ 0x2c546: "v\a\U0002c546", // 𬕆
+ 0x2c547: "v\a\U0002c547", // 𬕇
+ 0x2c548: "v\a\U0002c548", // 𬕈
+ 0x2c549: "v\a\U0002c549", // 𬕉
+ 0x2c54a: "v\a\U0002c54a", // 𬕊
+ 0x2c54b: "v\a\U0002c54b", // 𬕋
+ 0x2c54c: "v\a\U0002c54c", // 𬕌
+ 0x2c54d: "v\a\U0002c54d", // 𬕍
+ 0x2c54e: "v\b\U0002c54e", // 𬕎
+ 0x2c54f: "v\b\U0002c54f", // 𬕏
+ 0x2c550: "v\b\U0002c550", // 𬕐
+ 0x2c551: "v\b\U0002c551", // 𬕑
+ 0x2c552: "v\b\U0002c552", // 𬕒
+ 0x2c553: "v\b\U0002c553", // 𬕓
+ 0x2c554: "v\b\U0002c554", // 𬕔
+ 0x2c555: "v\b\U0002c555", // 𬕕
+ 0x2c556: "v\b\U0002c556", // 𬕖
+ 0x2c557: "v\b\U0002c557", // 𬕗
+ 0x2c558: "v\b\U0002c558", // 𬕘
+ 0x2c559: "v\b\U0002c559", // 𬕙
+ 0x2c55a: "v\t\U0002c55a", // 𬕚
+ 0x2c55b: "v\t\U0002c55b", // 𬕛
+ 0x2c55c: "v\t\U0002c55c", // 𬕜
+ 0x2c55d: "v\t\U0002c55d", // 𬕝
+ 0x2c55e: "v\t\U0002c55e", // 𬕞
+ 0x2c55f: "v\t\U0002c55f", // 𬕟
+ 0x2c560: "v\t\U0002c560", // 𬕠
+ 0x2c561: "v\t\U0002c561", // 𬕡
+ 0x2c562: "v\n\U0002c562", // 𬕢
+ 0x2c563: "v\n\U0002c563", // 𬕣
+ 0x2c564: "v\n\U0002c564", // 𬕤
+ 0x2c565: "v\n\U0002c565", // 𬕥
+ 0x2c566: "v\n\U0002c566", // 𬕦
+ 0x2c567: "v\n\U0002c567", // 𬕧
+ 0x2c568: "v\n\U0002c568", // 𬕨
+ 0x2c569: "v\v\U0002c569", // 𬕩
+ 0x2c56a: "v\v\U0002c56a", // 𬕪
+ 0x2c56b: "v\v\U0002c56b", // 𬕫
+ 0x2c56c: "v\v\U0002c56c", // 𬕬
+ 0x2c56d: "v\f\U0002c56d", // 𬕭
+ 0x2c56e: "v\f\U0002c56e", // 𬕮
+ 0x2c56f: "v\f\U0002c56f", // 𬕯
+ 0x2c570: "v\f\U0002c570", // 𬕰
+ 0x2c571: "v\f\U0002c571", // 𬕱
+ 0x2c572: "v\f\U0002c572", // 𬕲
+ 0x2c573: "v\r\U0002c573", // 𬕳
+ 0x2c574: "v\r\U0002c574", // 𬕴
+ 0x2c575: "v\r\U0002c575", // 𬕵
+ 0x2c576: "v\r\U0002c576", // 𬕶
+ 0x2c577: "v\r\U0002c577", // 𬕷
+ 0x2c578: "v\r\U0002c578", // 𬕸
+ 0x2c579: "v\r\U0002c579", // 𬕹
+ 0x2c57a: "v\r\U0002c57a", // 𬕺
+ 0x2c57b: "v\x0f\U0002c57b", // 𬕻
+ 0x2c57c: "v\x0f\U0002c57c", // 𬕼
+ 0x2c57d: "v\x0f\U0002c57d", // 𬕽
+ 0x2c57e: "v\x0f\U0002c57e", // 𬕾
+ 0x2c57f: "v\x0f\U0002c57f", // 𬕿
+ 0x2c580: "v\x10\U0002c580", // 𬖀
+ 0x2c581: "v\x10\U0002c581", // 𬖁
+ 0x2c582: "v\x10\U0002c582", // 𬖂
+ 0x2c583: "v\x10\U0002c583", // 𬖃
+ 0x2c584: "v\x10\U0002c584", // 𬖄
+ 0x2c585: "v\x10\U0002c585", // 𬖅
+ 0x2c586: "v\x11\U0002c586", // 𬖆
+ 0x2c587: "v\x12\U0002c587", // 𬖇
+ 0x2c588: "v\x15\U0002c588", // 𬖈
+ 0x2c589: "v\x15\U0002c589", // 𬖉
+ 0x2c58a: "v\x15\U0002c58a", // 𬖊
+ 0x2c58b: "w\x01\U0002c58b", // 𬖋
+ 0x2c58c: "w\x02\U0002c58c", // 𬖌
+ 0x2c58d: "w\x02\U0002c58d", // 𬖍
+ 0x2c58e: "w\x02\U0002c58e", // 𬖎
+ 0x2c58f: "w\x03\U0002c58f", // 𬖏
+ 0x2c590: "w\x04\U0002c590", // 𬖐
+ 0x2c591: "w\x04\U0002c591", // 𬖑
+ 0x2c592: "w\x04\U0002c592", // 𬖒
+ 0x2c593: "w\x05\U0002c593", // 𬖓
+ 0x2c594: "w\x05\U0002c594", // 𬖔
+ 0x2c595: "w\x05\U0002c595", // 𬖕
+ 0x2c596: "w\x05\U0002c596", // 𬖖
+ 0x2c597: "w\x05\U0002c597", // 𬖗
+ 0x2c598: "w\x05\U0002c598", // 𬖘
+ 0x2c599: "w\x06\U0002c599", // 𬖙
+ 0x2c59a: "w\x06\U0002c59a", // 𬖚
+ 0x2c59b: "w\x06\U0002c59b", // 𬖛
+ 0x2c59c: "w\x06\U0002c59c", // 𬖜
+ 0x2c59d: "w\a\U0002c59d", // 𬖝
+ 0x2c59e: "w\a\U0002c59e", // 𬖞
+ 0x2c59f: "w\a\U0002c59f", // 𬖟
+ 0x2c5a0: "w\a\U0002c5a0", // 𬖠
+ 0x2c5a1: "w\b\U0002c5a1", // 𬖡
+ 0x2c5a2: "w\b\U0002c5a2", // 𬖢
+ 0x2c5a3: "w\b\U0002c5a3", // 𬖣
+ 0x2c5a4: "w\b\U0002c5a4", // 𬖤
+ 0x2c5a5: "w\b\U0002c5a5", // 𬖥
+ 0x2c5a6: "w\t\U0002c5a6", // 𬖦
+ 0x2c5a7: "w\t\U0002c5a7", // 𬖧
+ 0x2c5a8: "w\t\U0002c5a8", // 𬖨
+ 0x2c5a9: "w\t\U0002c5a9", // 𬖩
+ 0x2c5aa: "w\t\U0002c5aa", // 𬖪
+ 0x2c5ab: "w\n\U0002c5ab", // 𬖫
+ 0x2c5ac: "w\n\U0002c5ac", // 𬖬
+ 0x2c5ad: "w\n\U0002c5ad", // 𬖭
+ 0x2c5ae: "w\n\U0002c5ae", // 𬖮
+ 0x2c5af: "w\n\U0002c5af", // 𬖯
+ 0x2c5b0: "w\n\U0002c5b0", // 𬖰
+ 0x2c5b1: "w\n\U0002c5b1", // 𬖱
+ 0x2c5b2: "w\n\U0002c5b2", // 𬖲
+ 0x2c5b3: "w\v\U0002c5b3", // 𬖳
+ 0x2c5b4: "w\v\U0002c5b4", // 𬖴
+ 0x2c5b5: "w\v\U0002c5b5", // 𬖵
+ 0x2c5b6: "w\f\U0002c5b6", // 𬖶
+ 0x2c5b7: "w\f\U0002c5b7", // 𬖷
+ 0x2c5b8: "w\f\U0002c5b8", // 𬖸
+ 0x2c5b9: "w\f\U0002c5b9", // 𬖹
+ 0x2c5ba: "w\f\U0002c5ba", // 𬖺
+ 0x2c5bb: "w\r\U0002c5bb", // 𬖻
+ 0x2c5bc: "w\x0e\U0002c5bc", // 𬖼
+ 0x2c5bd: "w\x0e\U0002c5bd", // 𬖽
+ 0x2c5be: "w\x0e\U0002c5be", // 𬖾
+ 0x2c5bf: "w\x0f\U0002c5bf", // 𬖿
+ 0x2c5c0: "w\x10\U0002c5c0", // 𬗀
+ 0x2c5c1: "w\x10\U0002c5c1", // 𬗁
+ 0x2c5c2: "w\x12\U0002c5c2", // 𬗂
+ 0x2c5c3: "x\x03\U0002c5c3", // 𬗃
+ 0x2c5c4: "x\x03\U0002c5c4", // 𬗄
+ 0x2c5c5: "x\x04\U0002c5c5", // 𬗅
+ 0x2c5c6: "x\x04\U0002c5c6", // 𬗆
+ 0x2c5c7: "x\x05\U0002c5c7", // 𬗇
+ 0x2c5c8: "x\x05\U0002c5c8", // 𬗈
+ 0x2c5c9: "x\x05\U0002c5c9", // 𬗉
+ 0x2c5ca: "x\x05\U0002c5ca", // 𬗊
+ 0x2c5cb: "x\x06\U0002c5cb", // 𬗋
+ 0x2c5cc: "x\x06\U0002c5cc", // 𬗌
+ 0x2c5cd: "x\x06\U0002c5cd", // 𬗍
+ 0x2c5ce: "x\x06\U0002c5ce", // 𬗎
+ 0x2c5cf: "x\x06\U0002c5cf", // 𬗏
+ 0x2c5d0: "x\x06\U0002c5d0", // 𬗐
+ 0x2c5d1: "x\x06\U0002c5d1", // 𬗑
+ 0x2c5d2: "x\x06\U0002c5d2", // 𬗒
+ 0x2c5d3: "x\x06\U0002c5d3", // 𬗓
+ 0x2c5d4: "x\x06\U0002c5d4", // 𬗔
+ 0x2c5d5: "x\a\U0002c5d5", // 𬗕
+ 0x2c5d6: "x\a\U0002c5d6", // 𬗖
+ 0x2c5d7: "x\a\U0002c5d7", // 𬗗
+ 0x2c5d8: "x\a\U0002c5d8", // 𬗘
+ 0x2c5d9: "x\a\U0002c5d9", // 𬗙
+ 0x2c5da: "x\a\U0002c5da", // 𬗚
+ 0x2c5db: "x\a\U0002c5db", // 𬗛
+ 0x2c5dc: "x\a\U0002c5dc", // 𬗜
+ 0x2c5dd: "x\a\U0002c5dd", // 𬗝
+ 0x2c5de: "x\a\U0002c5de", // 𬗞
+ 0x2c5df: "x\b\U0002c5df", // 𬗟
+ 0x2c5e0: "x\b\U0002c5e0", // 𬗠
+ 0x2c5e1: "x\b\U0002c5e1", // 𬗡
+ 0x2c5e2: "x\b\U0002c5e2", // 𬗢
+ 0x2c5e3: "x\b\U0002c5e3", // 𬗣
+ 0x2c5e4: "x\b\U0002c5e4", // 𬗤
+ 0x2c5e5: "x\b\U0002c5e5", // 𬗥
+ 0x2c5e6: "x\b\U0002c5e6", // 𬗦
+ 0x2c5e7: "x\b\U0002c5e7", // 𬗧
+ 0x2c5e8: "x\t\U0002c5e8", // 𬗨
+ 0x2c5e9: "x\t\U0002c5e9", // 𬗩
+ 0x2c5ea: "x\t\U0002c5ea", // 𬗪
+ 0x2c5eb: "x\t\U0002c5eb", // 𬗫
+ 0x2c5ec: "x\t\U0002c5ec", // 𬗬
+ 0x2c5ed: "x\t\U0002c5ed", // 𬗭
+ 0x2c5ee: "x\t\U0002c5ee", // 𬗮
+ 0x2c5ef: "x\n\U0002c5ef", // 𬗯
+ 0x2c5f0: "x\n\U0002c5f0", // 𬗰
+ 0x2c5f1: "x\n\U0002c5f1", // 𬗱
+ 0x2c5f2: "x\n\U0002c5f2", // 𬗲
+ 0x2c5f3: "x\v\U0002c5f3", // 𬗳
+ 0x2c5f4: "x\v\U0002c5f4", // 𬗴
+ 0x2c5f5: "x\v\U0002c5f5", // 𬗵
+ 0x2c5f6: "x\v\U0002c5f6", // 𬗶
+ 0x2c5f7: "x\v\U0002c5f7", // 𬗷
+ 0x2c5f8: "x\v\U0002c5f8", // 𬗸
+ 0x2c5f9: "x\v\U0002c5f9", // 𬗹
+ 0x2c5fa: "x\v\U0002c5fa", // 𬗺
+ 0x2c5fb: "x\f\U0002c5fb", // 𬗻
+ 0x2c5fc: "x\f\U0002c5fc", // 𬗼
+ 0x2c5fd: "x\f\U0002c5fd", // 𬗽
+ 0x2c5fe: "x\f\U0002c5fe", // 𬗾
+ 0x2c5ff: "x\f\U0002c5ff", // 𬗿
+ 0x2c600: "x\f\U0002c600", // 𬘀
+ 0x2c601: "x\f\U0002c601", // 𬘁
+ 0x2c602: "x\r\U0002c602", // 𬘂
+ 0x2c603: "x\x0e\U0002c603", // 𬘃
+ 0x2c604: "x\x0e\U0002c604", // 𬘄
+ 0x2c605: "x\x0e\U0002c605", // 𬘅
+ 0x2c606: "x\x0e\U0002c606", // 𬘆
+ 0x2c607: "x\x0e\U0002c607", // 𬘇
+ 0x2c608: "x\x0e\U0002c608", // 𬘈
+ 0x2c609: "x\x0f\U0002c609", // 𬘉
+ 0x2c60a: "x\x0f\U0002c60a", // 𬘊
+ 0x2c60b: "x\x0f\U0002c60b", // 𬘋
+ 0x2c60c: "x\x0f\U0002c60c", // 𬘌
+ 0x2c60d: "x\x10\U0002c60d", // 𬘍
+ 0x2c60e: "x\x10\U0002c60e", // 𬘎
+ 0x2c60f: "x\x10\U0002c60f", // 𬘏
+ 0x2c610: "x\x11\U0002c610", // 𬘐
+ 0x2c611: "x\x11\U0002c611", // 𬘑
+ 0x2c612: "x\x12\U0002c612", // 𬘒
+ 0x2c613: "x\x03\U0002c613", // 𬘓
+ 0x2c614: "x\x04\U0002c614", // 𬘔
+ 0x2c615: "x\x04\U0002c615", // 𬘕
+ 0x2c616: "x\x04\U0002c616", // 𬘖
+ 0x2c617: "x\x04\U0002c617", // 𬘗
+ 0x2c618: "x\x04\U0002c618", // 𬘘
+ 0x2c619: "x\x05\U0002c619", // 𬘙
+ 0x2c61a: "x\x05\U0002c61a", // 𬘚
+ 0x2c61b: "x\x05\U0002c61b", // 𬘛
+ 0x2c61c: "x\x05\U0002c61c", // 𬘜
+ 0x2c61d: "x\x05\U0002c61d", // 𬘝
+ 0x2c61e: "x\x05\U0002c61e", // 𬘞
+ 0x2c61f: "x\x06\U0002c61f", // 𬘟
+ 0x2c620: "x\x06\U0002c620", // 𬘠
+ 0x2c621: "x\x06\U0002c621", // 𬘡
+ 0x2c622: "x\x06\U0002c622", // 𬘢
+ 0x2c623: "x\x06\U0002c623", // 𬘣
+ 0x2c624: "x\x06\U0002c624", // 𬘤
+ 0x2c625: "x\x06\U0002c625", // 𬘥
+ 0x2c626: "x\x06\U0002c626", // 𬘦
+ 0x2c627: "x\x06\U0002c627", // 𬘧
+ 0x2c628: "x\a\U0002c628", // 𬘨
+ 0x2c629: "x\a\U0002c629", // 𬘩
+ 0x2c62a: "x\a\U0002c62a", // 𬘪
+ 0x2c62b: "x\a\U0002c62b", // 𬘫
+ 0x2c62c: "x\b\U0002c62c", // 𬘬
+ 0x2c62d: "x\b\U0002c62d", // 𬘭
+ 0x2c62e: "x\b\U0002c62e", // 𬘮
+ 0x2c62f: "x\b\U0002c62f", // 𬘯
+ 0x2c630: "x\t\U0002c630", // 𬘰
+ 0x2c631: "x\t\U0002c631", // 𬘱
+ 0x2c632: "x\t\U0002c632", // 𬘲
+ 0x2c633: "x\t\U0002c633", // 𬘳
+ 0x2c634: "x\t\U0002c634", // 𬘴
+ 0x2c635: "x\t\U0002c635", // 𬘵
+ 0x2c636: "x\t\U0002c636", // 𬘶
+ 0x2c637: "x\t\U0002c637", // 𬘷
+ 0x2c638: "x\t\U0002c638", // 𬘸
+ 0x2c639: "x\n\U0002c639", // 𬘹
+ 0x2c63a: "x\n\U0002c63a", // 𬘺
+ 0x2c63b: "x\n\U0002c63b", // 𬘻
+ 0x2c63c: "x\n\U0002c63c", // 𬘼
+ 0x2c63d: "x\n\U0002c63d", // 𬘽
+ 0x2c63e: "x\v\U0002c63e", // 𬘾
+ 0x2c63f: "x\v\U0002c63f", // 𬘿
+ 0x2c640: "x\v\U0002c640", // 𬙀
+ 0x2c641: "x\v\U0002c641", // 𬙁
+ 0x2c642: "x\v\U0002c642", // 𬙂
+ 0x2c643: "x\f\U0002c643", // 𬙃
+ 0x2c644: "x\f\U0002c644", // 𬙄
+ 0x2c645: "x\f\U0002c645", // 𬙅
+ 0x2c646: "x\f\U0002c646", // 𬙆
+ 0x2c647: "x\f\U0002c647", // 𬙇
+ 0x2c648: "x\f\U0002c648", // 𬙈
+ 0x2c649: "x\r\U0002c649", // 𬙉
+ 0x2c64a: "x\x0f\U0002c64a", // 𬙊
+ 0x2c64b: "x\x11\U0002c64b", // 𬙋
+ 0x2c64c: "y\x04\U0002c64c", // 𬙌
+ 0x2c64d: "y\x04\U0002c64d", // 𬙍
+ 0x2c64e: "y\x05\U0002c64e", // 𬙎
+ 0x2c64f: "y\x06\U0002c64f", // 𬙏
+ 0x2c650: "y\b\U0002c650", // 𬙐
+ 0x2c651: "y\t\U0002c651", // 𬙑
+ 0x2c652: "y\t\U0002c652", // 𬙒
+ 0x2c653: "y\n\U0002c653", // 𬙓
+ 0x2c654: "y\r\U0002c654", // 𬙔
+ 0x2c655: "z\x02\U0002c655", // 𬙕
+ 0x2c656: "z\x03\U0002c656", // 𬙖
+ 0x2c657: "z\x03\U0002c657", // 𬙗
+ 0x2c658: "z\x03\U0002c658", // 𬙘
+ 0x2c659: "z\x04\U0002c659", // 𬙙
+ 0x2c65a: "z\x05\U0002c65a", // 𬙚
+ 0x2c65b: "z\x05\U0002c65b", // 𬙛
+ 0x2c65c: "z\x05\U0002c65c", // 𬙜
+ 0x2c65d: "z\x06\U0002c65d", // 𬙝
+ 0x2c65e: "z\a\U0002c65e", // 𬙞
+ 0x2c65f: "z\a\U0002c65f", // 𬙟
+ 0x2c660: "z\b\U0002c660", // 𬙠
+ 0x2c661: "z\b\U0002c661", // 𬙡
+ 0x2c662: "z\b\U0002c662", // 𬙢
+ 0x2c663: "z\b\U0002c663", // 𬙣
+ 0x2c664: "z\n\U0002c664", // 𬙤
+ 0x2c665: "z\n\U0002c665", // 𬙥
+ 0x2c666: "z\n\U0002c666", // 𬙦
+ 0x2c667: "z\f\U0002c667", // 𬙧
+ 0x2c668: "z\f\U0002c668", // 𬙨
+ 0x2c669: "z\r\U0002c669", // 𬙩
+ 0x2c66a: "z\x10\U0002c66a", // 𬙪
+ 0x2c66b: "z\x12\U0002c66b", // 𬙫
+ 0x2c66c: "{\x03\U0002c66c", // 𬙬
+ 0x2c66d: "{\x04\U0002c66d", // 𬙭
+ 0x2c66e: "{\x04\U0002c66e", // 𬙮
+ 0x2c66f: "{\x04\U0002c66f", // 𬙯
+ 0x2c670: "{\x05\U0002c670", // 𬙰
+ 0x2c671: "{\x06\U0002c671", // 𬙱
+ 0x2c672: "{\x06\U0002c672", // 𬙲
+ 0x2c673: "{\x06\U0002c673", // 𬙳
+ 0x2c674: "{\a\U0002c674", // 𬙴
+ 0x2c675: "{\b\U0002c675", // 𬙵
+ 0x2c676: "{\b\U0002c676", // 𬙶
+ 0x2c677: "{\t\U0002c677", // 𬙷
+ 0x2c678: "{\t\U0002c678", // 𬙸
+ 0x2c679: "{\n\U0002c679", // 𬙹
+ 0x2c67a: "{\n\U0002c67a", // 𬙺
+ 0x2c67b: "{\n\U0002c67b", // 𬙻
+ 0x2c67c: "{\v\U0002c67c", // 𬙼
+ 0x2c67d: "{\v\U0002c67d", // 𬙽
+ 0x2c67e: "{\f\U0002c67e", // 𬙾
+ 0x2c67f: "{\r\U0002c67f", // 𬙿
+ 0x2c680: "{\x0f\U0002c680", // 𬚀
+ 0x2c681: "{\x10\U0002c681", // 𬚁
+ 0x2c682: "{\x14\U0002c682", // 𬚂
+ 0x2c683: "|\a\U0002c683", // 𬚃
+ 0x2c684: "|\b\U0002c684", // 𬚄
+ 0x2c685: "|\n\U0002c685", // 𬚅
+ 0x2c686: "|\n\U0002c686", // 𬚆
+ 0x2c687: "|\v\U0002c687", // 𬚇
+ 0x2c688: "|\v\U0002c688", // 𬚈
+ 0x2c689: "}\x02\U0002c689", // 𬚉
+ 0x2c68a: "}\x02\U0002c68a", // 𬚊
+ 0x2c68b: "}\x05\U0002c68b", // 𬚋
+ 0x2c68c: "}\b\U0002c68c", // 𬚌
+ 0x2c68d: "}\f\U0002c68d", // 𬚍
+ 0x2c68e: "}\x0f\U0002c68e", // 𬚎
+ 0x2c68f: "~\t\U0002c68f", // 𬚏
+ 0x2c690: "\u007f\x06\U0002c690", // 𬚐
+ 0x2c691: "\u007f\r\U0002c691", // 𬚑
+ 0x2c692: "\x80\x03\U0002c692", // 𬚒
+ 0x2c693: "\x80\x03\U0002c693", // 𬚓
+ 0x2c694: "\x80\x05\U0002c694", // 𬚔
+ 0x2c695: "\x80\x05\U0002c695", // 𬚕
+ 0x2c696: "\x80\x05\U0002c696", // 𬚖
+ 0x2c697: "\x80\x06\U0002c697", // 𬚗
+ 0x2c698: "\x80\x06\U0002c698", // 𬚘
+ 0x2c699: "\x80\x06\U0002c699", // 𬚙
+ 0x2c69a: "\x80\a\U0002c69a", // 𬚚
+ 0x2c69b: "\x80\a\U0002c69b", // 𬚛
+ 0x2c69c: "\x80\a\U0002c69c", // 𬚜
+ 0x2c69d: "\x80\a\U0002c69d", // 𬚝
+ 0x2c69e: "\x80\b\U0002c69e", // 𬚞
+ 0x2c69f: "\x80\b\U0002c69f", // 𬚟
+ 0x2c6a0: "\x80\b\U0002c6a0", // 𬚠
+ 0x2c6a1: "\x80\t\U0002c6a1", // 𬚡
+ 0x2c6a2: "\x80\t\U0002c6a2", // 𬚢
+ 0x2c6a3: "\x80\n\U0002c6a3", // 𬚣
+ 0x2c6a4: "\x80\n\U0002c6a4", // 𬚤
+ 0x2c6a5: "\x80\n\U0002c6a5", // 𬚥
+ 0x2c6a6: "\x80\f\U0002c6a6", // 𬚦
+ 0x2c6a7: "\x80\f\U0002c6a7", // 𬚧
+ 0x2c6a8: "\x80\x0e\U0002c6a8", // 𬚨
+ 0x2c6a9: "\x80/\U0002c6a9", // 𬚩
+ 0x2c6aa: "\x81\x02\U0002c6aa", // 𬚪
+ 0x2c6ab: "\x81\a\U0002c6ab", // 𬚫
+ 0x2c6ac: "\x81\t\U0002c6ac", // 𬚬
+ 0x2c6ad: "\x81\n\U0002c6ad", // 𬚭
+ 0x2c6ae: "\x81\n\U0002c6ae", // 𬚮
+ 0x2c6af: "\x82\x03\U0002c6af", // 𬚯
+ 0x2c6b0: "\x82\x04\U0002c6b0", // 𬚰
+ 0x2c6b1: "\x82\x04\U0002c6b1", // 𬚱
+ 0x2c6b2: "\x82\x04\U0002c6b2", // 𬚲
+ 0x2c6b3: "\x82\x04\U0002c6b3", // 𬚳
+ 0x2c6b4: "\x82\x05\U0002c6b4", // 𬚴
+ 0x2c6b5: "\x82\x05\U0002c6b5", // 𬚵
+ 0x2c6b6: "\x82\x05\U0002c6b6", // 𬚶
+ 0x2c6b7: "\x82\x06\U0002c6b7", // 𬚷
+ 0x2c6b8: "\x82\x06\U0002c6b8", // 𬚸
+ 0x2c6b9: "\x82\x06\U0002c6b9", // 𬚹
+ 0x2c6ba: "\x82\x06\U0002c6ba", // 𬚺
+ 0x2c6bb: "\x82\a\U0002c6bb", // 𬚻
+ 0x2c6bc: "\x82\a\U0002c6bc", // 𬚼
+ 0x2c6bd: "\x82\a\U0002c6bd", // 𬚽
+ 0x2c6be: "\x82\a\U0002c6be", // 𬚾
+ 0x2c6bf: "\x82\a\U0002c6bf", // 𬚿
+ 0x2c6c0: "\x82\a\U0002c6c0", // 𬛀
+ 0x2c6c1: "\x82\a\U0002c6c1", // 𬛁
+ 0x2c6c2: "\x82\b\U0002c6c2", // 𬛂
+ 0x2c6c3: "\x82\b\U0002c6c3", // 𬛃
+ 0x2c6c4: "\x82\b\U0002c6c4", // 𬛄
+ 0x2c6c5: "\x82\b\U0002c6c5", // 𬛅
+ 0x2c6c6: "\x82\b\U0002c6c6", // 𬛆
+ 0x2c6c7: "\x82\b\U0002c6c7", // 𬛇
+ 0x2c6c8: "\x82\t\U0002c6c8", // 𬛈
+ 0x2c6c9: "\x82\t\U0002c6c9", // 𬛉
+ 0x2c6ca: "\x82\t\U0002c6ca", // 𬛊
+ 0x2c6cb: "\x82\t\U0002c6cb", // 𬛋
+ 0x2c6cc: "\x82\n\U0002c6cc", // 𬛌
+ 0x2c6cd: "\x82\n\U0002c6cd", // 𬛍
+ 0x2c6ce: "\x82\n\U0002c6ce", // 𬛎
+ 0x2c6cf: "\x82\v\U0002c6cf", // 𬛏
+ 0x2c6d0: "\x82\v\U0002c6d0", // 𬛐
+ 0x2c6d1: "\x82\v\U0002c6d1", // 𬛑
+ 0x2c6d2: "\x82\v\U0002c6d2", // 𬛒
+ 0x2c6d3: "\x82\v\U0002c6d3", // 𬛓
+ 0x2c6d4: "\x82\f\U0002c6d4", // 𬛔
+ 0x2c6d5: "\x82\f\U0002c6d5", // 𬛕
+ 0x2c6d6: "\x82\f\U0002c6d6", // 𬛖
+ 0x2c6d7: "\x82\f\U0002c6d7", // 𬛗
+ 0x2c6d8: "\x82\f\U0002c6d8", // 𬛘
+ 0x2c6d9: "\x82\r\U0002c6d9", // 𬛙
+ 0x2c6da: "\x82\r\U0002c6da", // 𬛚
+ 0x2c6db: "\x82\r\U0002c6db", // 𬛛
+ 0x2c6dc: "\x82\x0e\U0002c6dc", // 𬛜
+ 0x2c6dd: "\x82\x0e\U0002c6dd", // 𬛝
+ 0x2c6de: "\x82\x10\U0002c6de", // 𬛞
+ 0x2c6df: "\x82\x11\U0002c6df", // 𬛟
+ 0x2c6e0: "\x82\x13\U0002c6e0", // 𬛠
+ 0x2c6e1: "\x82\x14\U0002c6e1", // 𬛡
+ 0x2c6e2: "\x83\x04\U0002c6e2", // 𬛢
+ 0x2c6e3: "\x83\x04\U0002c6e3", // 𬛣
+ 0x2c6e4: "\x83\x05\U0002c6e4", // 𬛤
+ 0x2c6e5: "\x83\x06\U0002c6e5", // 𬛥
+ 0x2c6e6: "\x83\a\U0002c6e6", // 𬛦
+ 0x2c6e7: "\x83\t\U0002c6e7", // 𬛧
+ 0x2c6e8: "\x83\t\U0002c6e8", // 𬛨
+ 0x2c6e9: "\x83\v\U0002c6e9", // 𬛩
+ 0x2c6ea: "\x83\x0f\U0002c6ea", // 𬛪
+ 0x2c6eb: "\x83\x12\U0002c6eb", // 𬛫
+ 0x2c6ec: "\x84\x05\U0002c6ec", // 𬛬
+ 0x2c6ed: "\x84\b\U0002c6ed", // 𬛭
+ 0x2c6ee: "\x84\v\U0002c6ee", // 𬛮
+ 0x2c6ef: "\x84\r\U0002c6ef", // 𬛯
+ 0x2c6f0: "\x84\x0e\U0002c6f0", // 𬛰
+ 0x2c6f1: "\x85\x02\U0002c6f1", // 𬛱
+ 0x2c6f2: "\x85\x04\U0002c6f2", // 𬛲
+ 0x2c6f3: "\x85\x06\U0002c6f3", // 𬛳
+ 0x2c6f4: "\x85\n\U0002c6f4", // 𬛴
+ 0x2c6f5: "\x85\n\U0002c6f5", // 𬛵
+ 0x2c6f6: "\x85\x0e\U0002c6f6", // 𬛶
+ 0x2c6f7: "\x85\x16\U0002c6f7", // 𬛷
+ 0x2c6f8: "\x86\x03\U0002c6f8", // 𬛸
+ 0x2c6f9: "\x86\x03\U0002c6f9", // 𬛹
+ 0x2c6fa: "\x86\a\U0002c6fa", // 𬛺
+ 0x2c6fb: "\x86\t\U0002c6fb", // 𬛻
+ 0x2c6fc: "\x86\n\U0002c6fc", // 𬛼
+ 0x2c6fd: "\x86\v\U0002c6fd", // 𬛽
+ 0x2c6fe: "\x86\f\U0002c6fe", // 𬛾
+ 0x2c6ff: "\x86\r\U0002c6ff", // 𬛿
+ 0x2c700: "\x86\r\U0002c700", // 𬜀
+ 0x2c701: "\x86\x11\U0002c701", // 𬜁
+ 0x2c702: "\x86\x12\U0002c702", // 𬜂
+ 0x2c703: "\x86\x14\U0002c703", // 𬜃
+ 0x2c704: "\x86\x16\U0002c704", // 𬜄
+ 0x2c705: "\x87\x05\U0002c705", // 𬜅
+ 0x2c706: "\x87\x05\U0002c706", // 𬜆
+ 0x2c707: "\x87\a\U0002c707", // 𬜇
+ 0x2c708: "\x87\b\U0002c708", // 𬜈
+ 0x2c709: "\x87\t\U0002c709", // 𬜉
+ 0x2c70a: "\x87\t\U0002c70a", // 𬜊
+ 0x2c70b: "\x87\t\U0002c70b", // 𬜋
+ 0x2c70c: "\x87\t\U0002c70c", // 𬜌
+ 0x2c70d: "\x87\v\U0002c70d", // 𬜍
+ 0x2c70e: "\x87\f\U0002c70e", // 𬜎
+ 0x2c70f: "\x87\r\U0002c70f", // 𬜏
+ 0x2c710: "\x87\r\U0002c710", // 𬜐
+ 0x2c711: "\x89\x02\U0002c711", // 𬜑
+ 0x2c712: "\x89\x03\U0002c712", // 𬜒
+ 0x2c713: "\x89\x06\U0002c713", // 𬜓
+ 0x2c714: "\x89\a\U0002c714", // 𬜔
+ 0x2c715: "\x89\b\U0002c715", // 𬜕
+ 0x2c716: "\x89\b\U0002c716", // 𬜖
+ 0x2c717: "\x89\t\U0002c717", // 𬜗
+ 0x2c718: "\x89\n\U0002c718", // 𬜘
+ 0x2c719: "\x89\n\U0002c719", // 𬜙
+ 0x2c71a: "\x89\n\U0002c71a", // 𬜚
+ 0x2c71b: "\x89\v\U0002c71b", // 𬜛
+ 0x2c71c: "\x89\x0f\U0002c71c", // 𬜜
+ 0x2c71d: "\x8b\x06\U0002c71d", // 𬜝
+ 0x2c71e: "\x8b\b\U0002c71e", // 𬜞
+ 0x2c71f: "\x8b\x13\U0002c71f", // 𬜟
+ 0x2c720: "\x8c\x02\U0002c720", // 𬜠
+ 0x2c721: "\x8c\x03\U0002c721", // 𬜡
+ 0x2c722: "\x8c\x03\U0002c722", // 𬜢
+ 0x2c723: "\x8c\x04\U0002c723", // 𬜣
+ 0x2c724: "\x8c\x04\U0002c724", // 𬜤
+ 0x2c725: "\x8c\x04\U0002c725", // 𬜥
+ 0x2c726: "\x8c\x05\U0002c726", // 𬜦
+ 0x2c727: "\x8c\x05\U0002c727", // 𬜧
+ 0x2c728: "\x8c\x06\U0002c728", // 𬜨
+ 0x2c729: "\x8c\x06\U0002c729", // 𬜩
+ 0x2c72a: "\x8c\x06\U0002c72a", // 𬜪
+ 0x2c72b: "\x8c\x06\U0002c72b", // 𬜫
+ 0x2c72c: "\x8c\x06\U0002c72c", // 𬜬
+ 0x2c72d: "\x8c\x06\U0002c72d", // 𬜭
+ 0x2c72e: "\x8c\x06\U0002c72e", // 𬜮
+ 0x2c72f: "\x8c\a\U0002c72f", // 𬜯
+ 0x2c730: "\x8c\a\U0002c730", // 𬜰
+ 0x2c731: "\x8c\a\U0002c731", // 𬜱
+ 0x2c732: "\x8c\a\U0002c732", // 𬜲
+ 0x2c733: "\x8c\a\U0002c733", // 𬜳
+ 0x2c734: "\x8c\a\U0002c734", // 𬜴
+ 0x2c735: "\x8c\a\U0002c735", // 𬜵
+ 0x2c736: "\x8c\a\U0002c736", // 𬜶
+ 0x2c737: "\x8c\a\U0002c737", // 𬜷
+ 0x2c738: "\x8c\a\U0002c738", // 𬜸
+ 0x2c739: "\x8c\a\U0002c739", // 𬜹
+ 0x2c73a: "\x8c\a\U0002c73a", // 𬜺
+ 0x2c73b: "\x8c\b\U0002c73b", // 𬜻
+ 0x2c73c: "\x8c\b\U0002c73c", // 𬜼
+ 0x2c73d: "\x8c\b\U0002c73d", // 𬜽
+ 0x2c73e: "\x8c\b\U0002c73e", // 𬜾
+ 0x2c73f: "\x8c\b\U0002c73f", // 𬜿
+ 0x2c740: "\x8c\b\U0002c740", // 𬝀
+ 0x2c741: "\x8c\b\U0002c741", // 𬝁
+ 0x2c742: "\x8c\b\U0002c742", // 𬝂
+ 0x2c743: "\x8c\b\U0002c743", // 𬝃
+ 0x2c744: "\x8c\b\U0002c744", // 𬝄
+ 0x2c745: "\x8c\b\U0002c745", // 𬝅
+ 0x2c746: "\x8c\b\U0002c746", // 𬝆
+ 0x2c747: "\x8c\b\U0002c747", // 𬝇
+ 0x2c748: "\x8c\b\U0002c748", // 𬝈
+ 0x2c749: "\x8c\b\U0002c749", // 𬝉
+ 0x2c74a: "\x8c\b\U0002c74a", // 𬝊
+ 0x2c74b: "\x8c\b\U0002c74b", // 𬝋
+ 0x2c74c: "\x8c\t\U0002c74c", // 𬝌
+ 0x2c74d: "\x8c\t\U0002c74d", // 𬝍
+ 0x2c74e: "\x8c\t\U0002c74e", // 𬝎
+ 0x2c74f: "\x8c\t\U0002c74f", // 𬝏
+ 0x2c750: "\x8c\t\U0002c750", // 𬝐
+ 0x2c751: "\x8c\t\U0002c751", // 𬝑
+ 0x2c752: "\x8c\t\U0002c752", // 𬝒
+ 0x2c753: "\x8c\t\U0002c753", // 𬝓
+ 0x2c754: "\x8c\t\U0002c754", // 𬝔
+ 0x2c755: "\x8c\t\U0002c755", // 𬝕
+ 0x2c756: "\x8c\t\U0002c756", // 𬝖
+ 0x2c757: "\x8c\t\U0002c757", // 𬝗
+ 0x2c758: "\x8c\t\U0002c758", // 𬝘
+ 0x2c759: "\x8c\t\U0002c759", // 𬝙
+ 0x2c75a: "\x8c\n\U0002c75a", // 𬝚
+ 0x2c75b: "\x8c\n\U0002c75b", // 𬝛
+ 0x2c75c: "\x8c\n\U0002c75c", // 𬝜
+ 0x2c75d: "\x8c\n\U0002c75d", // 𬝝
+ 0x2c75e: "\x8c\n\U0002c75e", // 𬝞
+ 0x2c75f: "\x8c\n\U0002c75f", // 𬝟
+ 0x2c760: "\x8c\n\U0002c760", // 𬝠
+ 0x2c761: "\x8c\n\U0002c761", // 𬝡
+ 0x2c762: "\x8c\n\U0002c762", // 𬝢
+ 0x2c763: "\x8c\n\U0002c763", // 𬝣
+ 0x2c764: "\x8c\n\U0002c764", // 𬝤
+ 0x2c765: "\x8c\n\U0002c765", // 𬝥
+ 0x2c766: "\x8c\n\U0002c766", // 𬝦
+ 0x2c767: "\x8c\n\U0002c767", // 𬝧
+ 0x2c768: "\x8c\n\U0002c768", // 𬝨
+ 0x2c769: "\x8c\n\U0002c769", // 𬝩
+ 0x2c76a: "\x8c\n\U0002c76a", // 𬝪
+ 0x2c76b: "\x8c\n\U0002c76b", // 𬝫
+ 0x2c76c: "\x8c\n\U0002c76c", // 𬝬
+ 0x2c76d: "\x8c\n\U0002c76d", // 𬝭
+ 0x2c76e: "\x8c\n\U0002c76e", // 𬝮
+ 0x2c76f: "\x8c\n\U0002c76f", // 𬝯
+ 0x2c770: "\x8c\n\U0002c770", // 𬝰
+ 0x2c771: "\x8c\n\U0002c771", // 𬝱
+ 0x2c772: "\x8c\n\U0002c772", // 𬝲
+ 0x2c773: "\x8c\n\U0002c773", // 𬝳
+ 0x2c774: "\x8c\n\U0002c774", // 𬝴
+ 0x2c775: "\x8c\v\U0002c775", // 𬝵
+ 0x2c776: "\x8c\v\U0002c776", // 𬝶
+ 0x2c777: "\x8c\v\U0002c777", // 𬝷
+ 0x2c778: "\x8c\v\U0002c778", // 𬝸
+ 0x2c779: "\x8c\v\U0002c779", // 𬝹
+ 0x2c77a: "\x8c\v\U0002c77a", // 𬝺
+ 0x2c77b: "\x8c\v\U0002c77b", // 𬝻
+ 0x2c77c: "\x8c\v\U0002c77c", // 𬝼
+ 0x2c77d: "\x8c\v\U0002c77d", // 𬝽
+ 0x2c77e: "\x8c\v\U0002c77e", // 𬝾
+ 0x2c77f: "\x8c\v\U0002c77f", // 𬝿
+ 0x2c780: "\x8c\v\U0002c780", // 𬞀
+ 0x2c781: "\x8c\v\U0002c781", // 𬞁
+ 0x2c782: "\x8c\v\U0002c782", // 𬞂
+ 0x2c783: "\x8c\v\U0002c783", // 𬞃
+ 0x2c784: "\x8c\v\U0002c784", // 𬞄
+ 0x2c785: "\x8c\v\U0002c785", // 𬞅
+ 0x2c786: "\x8c\v\U0002c786", // 𬞆
+ 0x2c787: "\x8c\v\U0002c787", // 𬞇
+ 0x2c788: "\x8c\v\U0002c788", // 𬞈
+ 0x2c789: "\x8c\v\U0002c789", // 𬞉
+ 0x2c78a: "\x8c\v\U0002c78a", // 𬞊
+ 0x2c78b: "\x8c\v\U0002c78b", // 𬞋
+ 0x2c78c: "\x8c\v\U0002c78c", // 𬞌
+ 0x2c78d: "\x8c\v\U0002c78d", // 𬞍
+ 0x2c78e: "\x8c\f\U0002c78e", // 𬞎
+ 0x2c78f: "\x8c\f\U0002c78f", // 𬞏
+ 0x2c790: "\x8c\f\U0002c790", // 𬞐
+ 0x2c791: "\x8c\f\U0002c791", // 𬞑
+ 0x2c792: "\x8c\f\U0002c792", // 𬞒
+ 0x2c793: "\x8c\f\U0002c793", // 𬞓
+ 0x2c794: "\x8c\f\U0002c794", // 𬞔
+ 0x2c795: "\x8c\f\U0002c795", // 𬞕
+ 0x2c796: "\x8c\f\U0002c796", // 𬞖
+ 0x2c797: "\x8c\f\U0002c797", // 𬞗
+ 0x2c798: "\x8c\f\U0002c798", // 𬞘
+ 0x2c799: "\x8c\f\U0002c799", // 𬞙
+ 0x2c79a: "\x8c\r\U0002c79a", // 𬞚
+ 0x2c79b: "\x8c\r\U0002c79b", // 𬞛
+ 0x2c79c: "\x8c\r\U0002c79c", // 𬞜
+ 0x2c79d: "\x8c\r\U0002c79d", // 𬞝
+ 0x2c79e: "\x8c\r\U0002c79e", // 𬞞
+ 0x2c79f: "\x8c\r\U0002c79f", // 𬞟
+ 0x2c7a0: "\x8c\r\U0002c7a0", // 𬞠
+ 0x2c7a1: "\x8c\r\U0002c7a1", // 𬞡
+ 0x2c7a2: "\x8c\r\U0002c7a2", // 𬞢
+ 0x2c7a3: "\x8c\r\U0002c7a3", // 𬞣
+ 0x2c7a4: "\x8c\r\U0002c7a4", // 𬞤
+ 0x2c7a5: "\x8c\r\U0002c7a5", // 𬞥
+ 0x2c7a6: "\x8c\r\U0002c7a6", // 𬞦
+ 0x2c7a7: "\x8c\r\U0002c7a7", // 𬞧
+ 0x2c7a8: "\x8c\r\U0002c7a8", // 𬞨
+ 0x2c7a9: "\x8c\r\U0002c7a9", // 𬞩
+ 0x2c7aa: "\x8c\r\U0002c7aa", // 𬞪
+ 0x2c7ab: "\x8c\r\U0002c7ab", // 𬞫
+ 0x2c7ac: "\x8c\r\U0002c7ac", // 𬞬
+ 0x2c7ad: "\x8c\x0e\U0002c7ad", // 𬞭
+ 0x2c7ae: "\x8c\x0e\U0002c7ae", // 𬞮
+ 0x2c7af: "\x8c\x0e\U0002c7af", // 𬞯
+ 0x2c7b0: "\x8c\x0e\U0002c7b0", // 𬞰
+ 0x2c7b1: "\x8c\x0e\U0002c7b1", // 𬞱
+ 0x2c7b2: "\x8c\x0e\U0002c7b2", // 𬞲
+ 0x2c7b3: "\x8c\x0e\U0002c7b3", // 𬞳
+ 0x2c7b4: "\x8c\x0e\U0002c7b4", // 𬞴
+ 0x2c7b5: "\x8c\x0e\U0002c7b5", // 𬞵
+ 0x2c7b6: "\x8c\x0e\U0002c7b6", // 𬞶
+ 0x2c7b7: "\x8c\x0e\U0002c7b7", // 𬞷
+ 0x2c7b8: "\x8c\x0e\U0002c7b8", // 𬞸
+ 0x2c7b9: "\x8c\x0e\U0002c7b9", // 𬞹
+ 0x2c7ba: "\x8c\x0e\U0002c7ba", // 𬞺
+ 0x2c7bb: "\x8c\x0e\U0002c7bb", // 𬞻
+ 0x2c7bc: "\x8c\x0e\U0002c7bc", // 𬞼
+ 0x2c7bd: "\x8c\x0e\U0002c7bd", // 𬞽
+ 0x2c7be: "\x8c\x0e\U0002c7be", // 𬞾
+ 0x2c7bf: "\x8c\x0f\U0002c7bf", // 𬞿
+ 0x2c7c0: "\x8c\x0f\U0002c7c0", // 𬟀
+ 0x2c7c1: "\x8c\x0f\U0002c7c1", // 𬟁
+ 0x2c7c2: "\x8c\x0f\U0002c7c2", // 𬟂
+ 0x2c7c3: "\x8c\x0f\U0002c7c3", // 𬟃
+ 0x2c7c4: "\x8c\x0f\U0002c7c4", // 𬟄
+ 0x2c7c5: "\x8c\x0f\U0002c7c5", // 𬟅
+ 0x2c7c6: "\x8c\x0f\U0002c7c6", // 𬟆
+ 0x2c7c7: "\x8c\x0f\U0002c7c7", // 𬟇
+ 0x2c7c8: "\x8c\x0f\U0002c7c8", // 𬟈
+ 0x2c7c9: "\x8c\x0f\U0002c7c9", // 𬟉
+ 0x2c7ca: "\x8c\x0f\U0002c7ca", // 𬟊
+ 0x2c7cb: "\x8c\x0f\U0002c7cb", // 𬟋
+ 0x2c7cc: "\x8c\x0f\U0002c7cc", // 𬟌
+ 0x2c7cd: "\x8c\x0f\U0002c7cd", // 𬟍
+ 0x2c7ce: "\x8c\x10\U0002c7ce", // 𬟎
+ 0x2c7cf: "\x8c\x10\U0002c7cf", // 𬟏
+ 0x2c7d0: "\x8c\x10\U0002c7d0", // 𬟐
+ 0x2c7d1: "\x8c\x10\U0002c7d1", // 𬟑
+ 0x2c7d2: "\x8c\x10\U0002c7d2", // 𬟒
+ 0x2c7d3: "\x8c\x10\U0002c7d3", // 𬟓
+ 0x2c7d4: "\x8c\x10\U0002c7d4", // 𬟔
+ 0x2c7d5: "\x8c\x10\U0002c7d5", // 𬟕
+ 0x2c7d6: "\x8c\x11\U0002c7d6", // 𬟖
+ 0x2c7d7: "\x8c\x11\U0002c7d7", // 𬟗
+ 0x2c7d8: "\x8c\x11\U0002c7d8", // 𬟘
+ 0x2c7d9: "\x8c\x11\U0002c7d9", // 𬟙
+ 0x2c7da: "\x8c\x11\U0002c7da", // 𬟚
+ 0x2c7db: "\x8c\x11\U0002c7db", // 𬟛
+ 0x2c7dc: "\x8c\x12\U0002c7dc", // 𬟜
+ 0x2c7dd: "\x8c\x12\U0002c7dd", // 𬟝
+ 0x2c7de: "\x8c\x12\U0002c7de", // 𬟞
+ 0x2c7df: "\x8c\x12\U0002c7df", // 𬟟
+ 0x2c7e0: "\x8c\x13\U0002c7e0", // 𬟠
+ 0x2c7e1: "\x8c\x13\U0002c7e1", // 𬟡
+ 0x2c7e2: "\x8c\x13\U0002c7e2", // 𬟢
+ 0x2c7e3: "\x8c\x13\U0002c7e3", // 𬟣
+ 0x2c7e4: "\x8c\x13\U0002c7e4", // 𬟤
+ 0x2c7e5: "\x8c\x14\U0002c7e5", // 𬟥
+ 0x2c7e6: "\x8c\x15\U0002c7e6", // 𬟦
+ 0x2c7e7: "\x8d\x03\U0002c7e7", // 𬟧
+ 0x2c7e8: "\x8d\x04\U0002c7e8", // 𬟨
+ 0x2c7e9: "\x8d\x04\U0002c7e9", // 𬟩
+ 0x2c7ea: "\x8d\x06\U0002c7ea", // 𬟪
+ 0x2c7eb: "\x8d\a\U0002c7eb", // 𬟫
+ 0x2c7ec: "\x8d\a\U0002c7ec", // 𬟬
+ 0x2c7ed: "\x8d\a\U0002c7ed", // 𬟭
+ 0x2c7ee: "\x8d\n\U0002c7ee", // 𬟮
+ 0x2c7ef: "\x8d\n\U0002c7ef", // 𬟯
+ 0x2c7f0: "\x8d\n\U0002c7f0", // 𬟰
+ 0x2c7f1: "\x8d\f\U0002c7f1", // 𬟱
+ 0x2c7f2: "\x8d\r\U0002c7f2", // 𬟲
+ 0x2c7f3: "\x8d\x11\U0002c7f3", // 𬟳
+ 0x2c7f4: "\x8e\x03\U0002c7f4", // 𬟴
+ 0x2c7f5: "\x8e\x03\U0002c7f5", // 𬟵
+ 0x2c7f6: "\x8e\x04\U0002c7f6", // 𬟶
+ 0x2c7f7: "\x8e\x04\U0002c7f7", // 𬟷
+ 0x2c7f8: "\x8e\x04\U0002c7f8", // 𬟸
+ 0x2c7f9: "\x8e\x04\U0002c7f9", // 𬟹
+ 0x2c7fa: "\x8e\x04\U0002c7fa", // 𬟺
+ 0x2c7fb: "\x8e\x04\U0002c7fb", // 𬟻
+ 0x2c7fc: "\x8e\x05\U0002c7fc", // 𬟼
+ 0x2c7fd: "\x8e\x05\U0002c7fd", // 𬟽
+ 0x2c7fe: "\x8e\x05\U0002c7fe", // 𬟾
+ 0x2c7ff: "\x8e\x05\U0002c7ff", // 𬟿
+ 0x2c800: "\x8e\x05\U0002c800", // 𬠀
+ 0x2c801: "\x8e\x05\U0002c801", // 𬠁
+ 0x2c802: "\x8e\x06\U0002c802", // 𬠂
+ 0x2c803: "\x8e\x06\U0002c803", // 𬠃
+ 0x2c804: "\x8e\x06\U0002c804", // 𬠄
+ 0x2c805: "\x8e\x06\U0002c805", // 𬠅
+ 0x2c806: "\x8e\x06\U0002c806", // 𬠆
+ 0x2c807: "\x8e\x06\U0002c807", // 𬠇
+ 0x2c808: "\x8e\a\U0002c808", // 𬠈
+ 0x2c809: "\x8e\a\U0002c809", // 𬠉
+ 0x2c80a: "\x8e\a\U0002c80a", // 𬠊
+ 0x2c80b: "\x8e\a\U0002c80b", // 𬠋
+ 0x2c80c: "\x8e\a\U0002c80c", // 𬠌
+ 0x2c80d: "\x8e\a\U0002c80d", // 𬠍
+ 0x2c80e: "\x8e\b\U0002c80e", // 𬠎
+ 0x2c80f: "\x8e\b\U0002c80f", // 𬠏
+ 0x2c810: "\x8e\b\U0002c810", // 𬠐
+ 0x2c811: "\x8e\b\U0002c811", // 𬠑
+ 0x2c812: "\x8e\b\U0002c812", // 𬠒
+ 0x2c813: "\x8e\b\U0002c813", // 𬠓
+ 0x2c814: "\x8e\b\U0002c814", // 𬠔
+ 0x2c815: "\x8e\b\U0002c815", // 𬠕
+ 0x2c816: "\x8e\b\U0002c816", // 𬠖
+ 0x2c817: "\x8e\b\U0002c817", // 𬠗
+ 0x2c818: "\x8e\b\U0002c818", // 𬠘
+ 0x2c819: "\x8e\b\U0002c819", // 𬠙
+ 0x2c81a: "\x8e\b\U0002c81a", // 𬠚
+ 0x2c81b: "\x8e\t\U0002c81b", // 𬠛
+ 0x2c81c: "\x8e\t\U0002c81c", // 𬠜
+ 0x2c81d: "\x8e\t\U0002c81d", // 𬠝
+ 0x2c81e: "\x8e\t\U0002c81e", // 𬠞
+ 0x2c81f: "\x8e\n\U0002c81f", // 𬠟
+ 0x2c820: "\x8e\n\U0002c820", // 𬠠
+ 0x2c821: "\x8e\n\U0002c821", // 𬠡
+ 0x2c822: "\x8e\n\U0002c822", // 𬠢
+ 0x2c823: "\x8e\n\U0002c823", // 𬠣
+ 0x2c824: "\x8e\n\U0002c824", // 𬠤
+ 0x2c825: "\x8e\v\U0002c825", // 𬠥
+ 0x2c826: "\x8e\v\U0002c826", // 𬠦
+ 0x2c827: "\x8e\v\U0002c827", // 𬠧
+ 0x2c828: "\x8e\v\U0002c828", // 𬠨
+ 0x2c829: "\x8e\f\U0002c829", // 𬠩
+ 0x2c82a: "\x8e\f\U0002c82a", // 𬠪
+ 0x2c82b: "\x8e\f\U0002c82b", // 𬠫
+ 0x2c82c: "\x8e\f\U0002c82c", // 𬠬
+ 0x2c82d: "\x8e\f\U0002c82d", // 𬠭
+ 0x2c82e: "\x8e\f\U0002c82e", // 𬠮
+ 0x2c82f: "\x8e\r\U0002c82f", // 𬠯
+ 0x2c830: "\x8e\r\U0002c830", // 𬠰
+ 0x2c831: "\x8e\r\U0002c831", // 𬠱
+ 0x2c832: "\x8e\x0e\U0002c832", // 𬠲
+ 0x2c833: "\x8e\x0e\U0002c833", // 𬠳
+ 0x2c834: "\x8e\x0e\U0002c834", // 𬠴
+ 0x2c835: "\x8e\x0e\U0002c835", // 𬠵
+ 0x2c836: "\x8e\x0e\U0002c836", // 𬠶
+ 0x2c837: "\x8e\x0e\U0002c837", // 𬠷
+ 0x2c838: "\x8e\x0f\U0002c838", // 𬠸
+ 0x2c839: "\x8e\x10\U0002c839", // 𬠹
+ 0x2c83a: "\x8e\x11\U0002c83a", // 𬠺
+ 0x2c83b: "\x8e\x13\U0002c83b", // 𬠻
+ 0x2c83c: "\x8f\x06\U0002c83c", // 𬠼
+ 0x2c83d: "\x90\x01\U0002c83d", // 𬠽
+ 0x2c83e: "\x90\x04\U0002c83e", // 𬠾
+ 0x2c83f: "\x90\x04\U0002c83f", // 𬠿
+ 0x2c840: "\x90\t\U0002c840", // 𬡀
+ 0x2c841: "\x90\x0f\U0002c841", // 𬡁
+ 0x2c842: "\x91\x02\U0002c842", // 𬡂
+ 0x2c843: "\x91\x03\U0002c843", // 𬡃
+ 0x2c844: "\x91\x03\U0002c844", // 𬡄
+ 0x2c845: "\x91\x03\U0002c845", // 𬡅
+ 0x2c846: "\x91\x03\U0002c846", // 𬡆
+ 0x2c847: "\x91\x03\U0002c847", // 𬡇
+ 0x2c848: "\x91\x04\U0002c848", // 𬡈
+ 0x2c849: "\x91\x04\U0002c849", // 𬡉
+ 0x2c84a: "\x91\x04\U0002c84a", // 𬡊
+ 0x2c84b: "\x91\x05\U0002c84b", // 𬡋
+ 0x2c84c: "\x91\x05\U0002c84c", // 𬡌
+ 0x2c84d: "\x91\x05\U0002c84d", // 𬡍
+ 0x2c84e: "\x91\x05\U0002c84e", // 𬡎
+ 0x2c84f: "\x91\x05\U0002c84f", // 𬡏
+ 0x2c850: "\x91\x05\U0002c850", // 𬡐
+ 0x2c851: "\x91\x06\U0002c851", // 𬡑
+ 0x2c852: "\x91\x06\U0002c852", // 𬡒
+ 0x2c853: "\x91\x06\U0002c853", // 𬡓
+ 0x2c854: "\x91\x06\U0002c854", // 𬡔
+ 0x2c855: "\x91\x06\U0002c855", // 𬡕
+ 0x2c856: "\x91\x06\U0002c856", // 𬡖
+ 0x2c857: "\x91\x06\U0002c857", // 𬡗
+ 0x2c858: "\x91\x06\U0002c858", // 𬡘
+ 0x2c859: "\x91\a\U0002c859", // 𬡙
+ 0x2c85a: "\x91\a\U0002c85a", // 𬡚
+ 0x2c85b: "\x91\a\U0002c85b", // 𬡛
+ 0x2c85c: "\x91\a\U0002c85c", // 𬡜
+ 0x2c85d: "\x91\a\U0002c85d", // 𬡝
+ 0x2c85e: "\x91\b\U0002c85e", // 𬡞
+ 0x2c85f: "\x91\b\U0002c85f", // 𬡟
+ 0x2c860: "\x91\b\U0002c860", // 𬡠
+ 0x2c861: "\x91\b\U0002c861", // 𬡡
+ 0x2c862: "\x91\b\U0002c862", // 𬡢
+ 0x2c863: "\x91\b\U0002c863", // 𬡣
+ 0x2c864: "\x91\b\U0002c864", // 𬡤
+ 0x2c865: "\x91\t\U0002c865", // 𬡥
+ 0x2c866: "\x91\t\U0002c866", // 𬡦
+ 0x2c867: "\x91\n\U0002c867", // 𬡧
+ 0x2c868: "\x91\n\U0002c868", // 𬡨
+ 0x2c869: "\x91\n\U0002c869", // 𬡩
+ 0x2c86a: "\x91\v\U0002c86a", // 𬡪
+ 0x2c86b: "\x91\v\U0002c86b", // 𬡫
+ 0x2c86c: "\x91\v\U0002c86c", // 𬡬
+ 0x2c86d: "\x91\v\U0002c86d", // 𬡭
+ 0x2c86e: "\x91\f\U0002c86e", // 𬡮
+ 0x2c86f: "\x91\f\U0002c86f", // 𬡯
+ 0x2c870: "\x91\r\U0002c870", // 𬡰
+ 0x2c871: "\x91\r\U0002c871", // 𬡱
+ 0x2c872: "\x91\x0e\U0002c872", // 𬡲
+ 0x2c873: "\x91\x0e\U0002c873", // 𬡳
+ 0x2c874: "\x91\x0e\U0002c874", // 𬡴
+ 0x2c875: "\x91\x0f\U0002c875", // 𬡵
+ 0x2c876: "\x91\x0f\U0002c876", // 𬡶
+ 0x2c877: "\x91\x10\U0002c877", // 𬡷
+ 0x2c878: "\x92\x04\U0002c878", // 𬡸
+ 0x2c879: "\x92\a\U0002c879", // 𬡹
+ 0x2c87a: "\x92\b\U0002c87a", // 𬡺
+ 0x2c87b: "\x92\f\U0002c87b", // 𬡻
+ 0x2c87c: "\x93\x04\U0002c87c", // 𬡼
+ 0x2c87d: "\x93\x05\U0002c87d", // 𬡽
+ 0x2c87e: "\x93\b\U0002c87e", // 𬡾
+ 0x2c87f: "\x93\b\U0002c87f", // 𬡿
+ 0x2c880: "\x93\b\U0002c880", // 𬢀
+ 0x2c881: "\x93\n\U0002c881", // 𬢁
+ 0x2c882: "\x93\v\U0002c882", // 𬢂
+ 0x2c883: "\x93\f\U0002c883", // 𬢃
+ 0x2c884: "\x93\f\U0002c884", // 𬢄
+ 0x2c885: "\x93\x0e\U0002c885", // 𬢅
+ 0x2c886: "\x93\x10\U0002c886", // 𬢆
+ 0x2c887: "\x93\x02\U0002c887", // 𬢇
+ 0x2c888: "\x93\x05\U0002c888", // 𬢈
+ 0x2c889: "\x93\x05\U0002c889", // 𬢉
+ 0x2c88a: "\x93\x05\U0002c88a", // 𬢊
+ 0x2c88b: "\x93\x06\U0002c88b", // 𬢋
+ 0x2c88c: "\x93\a\U0002c88c", // 𬢌
+ 0x2c88d: "\x93\x06\U0002c88d", // 𬢍
+ 0x2c88e: "\x93\b\U0002c88e", // 𬢎
+ 0x2c88f: "\x93\t\U0002c88f", // 𬢏
+ 0x2c890: "\x93\t\U0002c890", // 𬢐
+ 0x2c891: "\x93\t\U0002c891", // 𬢑
+ 0x2c892: "\x93\n\U0002c892", // 𬢒
+ 0x2c893: "\x93\v\U0002c893", // 𬢓
+ 0x2c894: "\x93\f\U0002c894", // 𬢔
+ 0x2c895: "\x94\x05\U0002c895", // 𬢕
+ 0x2c896: "\x94\x06\U0002c896", // 𬢖
+ 0x2c897: "\x94\a\U0002c897", // 𬢗
+ 0x2c898: "\x94\b\U0002c898", // 𬢘
+ 0x2c899: "\x94\r\U0002c899", // 𬢙
+ 0x2c89a: "\x95\x02\U0002c89a", // 𬢚
+ 0x2c89b: "\x95\x02\U0002c89b", // 𬢛
+ 0x2c89c: "\x95\x03\U0002c89c", // 𬢜
+ 0x2c89d: "\x95\x03\U0002c89d", // 𬢝
+ 0x2c89e: "\x95\x03\U0002c89e", // 𬢞
+ 0x2c89f: "\x95\x04\U0002c89f", // 𬢟
+ 0x2c8a0: "\x95\x04\U0002c8a0", // 𬢠
+ 0x2c8a1: "\x95\x05\U0002c8a1", // 𬢡
+ 0x2c8a2: "\x95\x05\U0002c8a2", // 𬢢
+ 0x2c8a3: "\x95\x06\U0002c8a3", // 𬢣
+ 0x2c8a4: "\x95\x06\U0002c8a4", // 𬢤
+ 0x2c8a5: "\x95\x06\U0002c8a5", // 𬢥
+ 0x2c8a6: "\x95\x06\U0002c8a6", // 𬢦
+ 0x2c8a7: "\x95\x06\U0002c8a7", // 𬢧
+ 0x2c8a8: "\x95\x06\U0002c8a8", // 𬢨
+ 0x2c8a9: "\x95\x06\U0002c8a9", // 𬢩
+ 0x2c8aa: "\x95\a\U0002c8aa", // 𬢪
+ 0x2c8ab: "\x95\a\U0002c8ab", // 𬢫
+ 0x2c8ac: "\x95\a\U0002c8ac", // 𬢬
+ 0x2c8ad: "\x95\a\U0002c8ad", // 𬢭
+ 0x2c8ae: "\x95\b\U0002c8ae", // 𬢮
+ 0x2c8af: "\x95\b\U0002c8af", // 𬢯
+ 0x2c8b0: "\x95\b\U0002c8b0", // 𬢰
+ 0x2c8b1: "\x95\b\U0002c8b1", // 𬢱
+ 0x2c8b2: "\x95\b\U0002c8b2", // 𬢲
+ 0x2c8b3: "\x95\b\U0002c8b3", // 𬢳
+ 0x2c8b4: "\x95\t\U0002c8b4", // 𬢴
+ 0x2c8b5: "\x95\t\U0002c8b5", // 𬢵
+ 0x2c8b6: "\x95\t\U0002c8b6", // 𬢶
+ 0x2c8b7: "\x95\t\U0002c8b7", // 𬢷
+ 0x2c8b8: "\x95\t\U0002c8b8", // 𬢸
+ 0x2c8b9: "\x95\t\U0002c8b9", // 𬢹
+ 0x2c8ba: "\x95\n\U0002c8ba", // 𬢺
+ 0x2c8bb: "\x95\n\U0002c8bb", // 𬢻
+ 0x2c8bc: "\x95\n\U0002c8bc", // 𬢼
+ 0x2c8bd: "\x95\n\U0002c8bd", // 𬢽
+ 0x2c8be: "\x95\n\U0002c8be", // 𬢾
+ 0x2c8bf: "\x95\n\U0002c8bf", // 𬢿
+ 0x2c8c0: "\x95\n\U0002c8c0", // 𬣀
+ 0x2c8c1: "\x95\n\U0002c8c1", // 𬣁
+ 0x2c8c2: "\x95\n\U0002c8c2", // 𬣂
+ 0x2c8c3: "\x95\n\U0002c8c3", // 𬣃
+ 0x2c8c4: "\x95\n\U0002c8c4", // 𬣄
+ 0x2c8c5: "\x95\v\U0002c8c5", // 𬣅
+ 0x2c8c6: "\x95\f\U0002c8c6", // 𬣆
+ 0x2c8c7: "\x95\f\U0002c8c7", // 𬣇
+ 0x2c8c8: "\x95\f\U0002c8c8", // 𬣈
+ 0x2c8c9: "\x95\f\U0002c8c9", // 𬣉
+ 0x2c8ca: "\x95\r\U0002c8ca", // 𬣊
+ 0x2c8cb: "\x95\r\U0002c8cb", // 𬣋
+ 0x2c8cc: "\x95\x0e\U0002c8cc", // 𬣌
+ 0x2c8cd: "\x95\x0e\U0002c8cd", // 𬣍
+ 0x2c8ce: "\x95\x0e\U0002c8ce", // 𬣎
+ 0x2c8cf: "\x95\x0e\U0002c8cf", // 𬣏
+ 0x2c8d0: "\x95\x0e\U0002c8d0", // 𬣐
+ 0x2c8d1: "\x95\x0e\U0002c8d1", // 𬣑
+ 0x2c8d2: "\x95\x0f\U0002c8d2", // 𬣒
+ 0x2c8d3: "\x95\x0f\U0002c8d3", // 𬣓
+ 0x2c8d4: "\x95\x0f\U0002c8d4", // 𬣔
+ 0x2c8d5: "\x95\x10\U0002c8d5", // 𬣕
+ 0x2c8d6: "\x95\x11\U0002c8d6", // 𬣖
+ 0x2c8d7: "\x95\x16\U0002c8d7", // 𬣗
+ 0x2c8d8: "\x95\x17\U0002c8d8", // 𬣘
+ 0x2c8d9: "\x95\x03\U0002c8d9", // 𬣙
+ 0x2c8da: "\x95\x03\U0002c8da", // 𬣚
+ 0x2c8db: "\x95\x04\U0002c8db", // 𬣛
+ 0x2c8dc: "\x95\x04\U0002c8dc", // 𬣜
+ 0x2c8dd: "\x95\x04\U0002c8dd", // 𬣝
+ 0x2c8de: "\x95\x04\U0002c8de", // 𬣞
+ 0x2c8df: "\x95\x04\U0002c8df", // 𬣟
+ 0x2c8e0: "\x95\x05\U0002c8e0", // 𬣠
+ 0x2c8e1: "\x95\x05\U0002c8e1", // 𬣡
+ 0x2c8e2: "\x95\x05\U0002c8e2", // 𬣢
+ 0x2c8e3: "\x95\x05\U0002c8e3", // 𬣣
+ 0x2c8e4: "\x95\x05\U0002c8e4", // 𬣤
+ 0x2c8e5: "\x95\x05\U0002c8e5", // 𬣥
+ 0x2c8e6: "\x95\x05\U0002c8e6", // 𬣦
+ 0x2c8e7: "\x95\x05\U0002c8e7", // 𬣧
+ 0x2c8e8: "\x95\x06\U0002c8e8", // 𬣨
+ 0x2c8e9: "\x95\x06\U0002c8e9", // 𬣩
+ 0x2c8ea: "\x95\x06\U0002c8ea", // 𬣪
+ 0x2c8eb: "\x95\x06\U0002c8eb", // 𬣫
+ 0x2c8ec: "\x95\x06\U0002c8ec", // 𬣬
+ 0x2c8ed: "\x95\x06\U0002c8ed", // 𬣭
+ 0x2c8ee: "\x95\x06\U0002c8ee", // 𬣮
+ 0x2c8ef: "\x95\x06\U0002c8ef", // 𬣯
+ 0x2c8f0: "\x95\x06\U0002c8f0", // 𬣰
+ 0x2c8f1: "\x95\x06\U0002c8f1", // 𬣱
+ 0x2c8f2: "\x95\x06\U0002c8f2", // 𬣲
+ 0x2c8f3: "\x95\x06\U0002c8f3", // 𬣳
+ 0x2c8f4: "\x95\a\U0002c8f4", // 𬣴
+ 0x2c8f5: "\x95\a\U0002c8f5", // 𬣵
+ 0x2c8f6: "\x95\a\U0002c8f6", // 𬣶
+ 0x2c8f7: "\x95\a\U0002c8f7", // 𬣷
+ 0x2c8f8: "\x95\a\U0002c8f8", // 𬣸
+ 0x2c8f9: "\x95\a\U0002c8f9", // 𬣹
+ 0x2c8fa: "\x95\a\U0002c8fa", // 𬣺
+ 0x2c8fb: "\x95\a\U0002c8fb", // 𬣻
+ 0x2c8fc: "\x95\a\U0002c8fc", // 𬣼
+ 0x2c8fd: "\x95\b\U0002c8fd", // 𬣽
+ 0x2c8fe: "\x95\b\U0002c8fe", // 𬣾
+ 0x2c8ff: "\x95\b\U0002c8ff", // 𬣿
+ 0x2c900: "\x95\b\U0002c900", // 𬤀
+ 0x2c901: "\x95\b\U0002c901", // 𬤁
+ 0x2c902: "\x95\b\U0002c902", // 𬤂
+ 0x2c903: "\x95\b\U0002c903", // 𬤃
+ 0x2c904: "\x95\b\U0002c904", // 𬤄
+ 0x2c905: "\x95\b\U0002c905", // 𬤅
+ 0x2c906: "\x95\b\U0002c906", // 𬤆
+ 0x2c907: "\x95\t\U0002c907", // 𬤇
+ 0x2c908: "\x95\t\U0002c908", // 𬤈
+ 0x2c909: "\x95\t\U0002c909", // 𬤉
+ 0x2c90a: "\x95\t\U0002c90a", // 𬤊
+ 0x2c90b: "\x95\t\U0002c90b", // 𬤋
+ 0x2c90c: "\x95\t\U0002c90c", // 𬤌
+ 0x2c90d: "\x95\t\U0002c90d", // 𬤍
+ 0x2c90e: "\x95\t\U0002c90e", // 𬤎
+ 0x2c90f: "\x95\t\U0002c90f", // 𬤏
+ 0x2c910: "\x95\n\U0002c910", // 𬤐
+ 0x2c911: "\x95\n\U0002c911", // 𬤑
+ 0x2c912: "\x95\n\U0002c912", // 𬤒
+ 0x2c913: "\x95\n\U0002c913", // 𬤓
+ 0x2c914: "\x95\n\U0002c914", // 𬤔
+ 0x2c915: "\x95\n\U0002c915", // 𬤕
+ 0x2c916: "\x95\n\U0002c916", // 𬤖
+ 0x2c917: "\x95\n\U0002c917", // 𬤗
+ 0x2c918: "\x95\v\U0002c918", // 𬤘
+ 0x2c919: "\x95\v\U0002c919", // 𬤙
+ 0x2c91a: "\x95\v\U0002c91a", // 𬤚
+ 0x2c91b: "\x95\v\U0002c91b", // 𬤛
+ 0x2c91c: "\x95\v\U0002c91c", // 𬤜
+ 0x2c91d: "\x95\f\U0002c91d", // 𬤝
+ 0x2c91e: "\x95\f\U0002c91e", // 𬤞
+ 0x2c91f: "\x95\f\U0002c91f", // 𬤟
+ 0x2c920: "\x95\f\U0002c920", // 𬤠
+ 0x2c921: "\x95\f\U0002c921", // 𬤡
+ 0x2c922: "\x95\f\U0002c922", // 𬤢
+ 0x2c923: "\x95\f\U0002c923", // 𬤣
+ 0x2c924: "\x95\f\U0002c924", // 𬤤
+ 0x2c925: "\x95\f\U0002c925", // 𬤥
+ 0x2c926: "\x95\r\U0002c926", // 𬤦
+ 0x2c927: "\x95\r\U0002c927", // 𬤧
+ 0x2c928: "\x95\r\U0002c928", // 𬤨
+ 0x2c929: "\x95\x0e\U0002c929", // 𬤩
+ 0x2c92a: "\x95\x0e\U0002c92a", // 𬤪
+ 0x2c92b: "\x95\x0e\U0002c92b", // 𬤫
+ 0x2c92c: "\x95\x0e\U0002c92c", // 𬤬
+ 0x2c92d: "\x95\x0f\U0002c92d", // 𬤭
+ 0x2c92e: "\x95\x10\U0002c92e", // 𬤮
+ 0x2c92f: "\x95\x11\U0002c92f", // 𬤯
+ 0x2c930: "\x95\x12\U0002c930", // 𬤰
+ 0x2c931: "\x95\x12\U0002c931", // 𬤱
+ 0x2c932: "\x96\x05\U0002c932", // 𬤲
+ 0x2c933: "\x96\b\U0002c933", // 𬤳
+ 0x2c934: "\x96\t\U0002c934", // 𬤴
+ 0x2c935: "\x96\n\U0002c935", // 𬤵
+ 0x2c936: "\x97\x04\U0002c936", // 𬤶
+ 0x2c937: "\x97\x06\U0002c937", // 𬤷
+ 0x2c938: "\x97\f\U0002c938", // 𬤸
+ 0x2c939: "\x97\r\U0002c939", // 𬤹
+ 0x2c93a: "\x97\x10\U0002c93a", // 𬤺
+ 0x2c93b: "\x98\x02\U0002c93b", // 𬤻
+ 0x2c93c: "\x98\x04\U0002c93c", // 𬤼
+ 0x2c93d: "\x98\x04\U0002c93d", // 𬤽
+ 0x2c93e: "\x98\a\U0002c93e", // 𬤾
+ 0x2c93f: "\x98\a\U0002c93f", // 𬤿
+ 0x2c940: "\x98\a\U0002c940", // 𬥀
+ 0x2c941: "\x98\b\U0002c941", // 𬥁
+ 0x2c942: "\x98\b\U0002c942", // 𬥂
+ 0x2c943: "\x98\b\U0002c943", // 𬥃
+ 0x2c944: "\x98\n\U0002c944", // 𬥄
+ 0x2c945: "\x98\n\U0002c945", // 𬥅
+ 0x2c946: "\x98\r\U0002c946", // 𬥆
+ 0x2c947: "\x98\x0e\U0002c947", // 𬥇
+ 0x2c948: "\x99\x06\U0002c948", // 𬥈
+ 0x2c949: "\x99\b\U0002c949", // 𬥉
+ 0x2c94a: "\x99\v\U0002c94a", // 𬥊
+ 0x2c94b: "\x99\v\U0002c94b", // 𬥋
+ 0x2c94c: "\x99\f\U0002c94c", // 𬥌
+ 0x2c94d: "\x99\x0f\U0002c94d", // 𬥍
+ 0x2c94e: "\x9a\x02\U0002c94e", // 𬥎
+ 0x2c94f: "\x9a\x04\U0002c94f", // 𬥏
+ 0x2c950: "\x9a\x04\U0002c950", // 𬥐
+ 0x2c951: "\x9a\x04\U0002c951", // 𬥑
+ 0x2c952: "\x9a\x04\U0002c952", // 𬥒
+ 0x2c953: "\x9a\x05\U0002c953", // 𬥓
+ 0x2c954: "\x9a\x06\U0002c954", // 𬥔
+ 0x2c955: "\x9a\x06\U0002c955", // 𬥕
+ 0x2c956: "\x9a\a\U0002c956", // 𬥖
+ 0x2c957: "\x9a\a\U0002c957", // 𬥗
+ 0x2c958: "\x9a\a\U0002c958", // 𬥘
+ 0x2c959: "\x9a\a\U0002c959", // 𬥙
+ 0x2c95a: "\x9a\a\U0002c95a", // 𬥚
+ 0x2c95b: "\x9a\b\U0002c95b", // 𬥛
+ 0x2c95c: "\x9a\b\U0002c95c", // 𬥜
+ 0x2c95d: "\x9a\b\U0002c95d", // 𬥝
+ 0x2c95e: "\x9a\b\U0002c95e", // 𬥞
+ 0x2c95f: "\x9a\b\U0002c95f", // 𬥟
+ 0x2c960: "\x9a\t\U0002c960", // 𬥠
+ 0x2c961: "\x9a\t\U0002c961", // 𬥡
+ 0x2c962: "\x9a\t\U0002c962", // 𬥢
+ 0x2c963: "\x9a\n\U0002c963", // 𬥣
+ 0x2c964: "\x9a\n\U0002c964", // 𬥤
+ 0x2c965: "\x9a\n\U0002c965", // 𬥥
+ 0x2c966: "\x9a\v\U0002c966", // 𬥦
+ 0x2c967: "\x9a\v\U0002c967", // 𬥧
+ 0x2c968: "\x9a\f\U0002c968", // 𬥨
+ 0x2c969: "\x9a\r\U0002c969", // 𬥩
+ 0x2c96a: "\x9a\x0e\U0002c96a", // 𬥪
+ 0x2c96b: "\x9a\x0e\U0002c96b", // 𬥫
+ 0x2c96c: "\x9a\x0e\U0002c96c", // 𬥬
+ 0x2c96d: "\x9a\x0e\U0002c96d", // 𬥭
+ 0x2c96e: "\x9a\x0f\U0002c96e", // 𬥮
+ 0x2c96f: "\x9a\x0f\U0002c96f", // 𬥯
+ 0x2c970: "\x9a\x0f\U0002c970", // 𬥰
+ 0x2c971: "\x9a\x10\U0002c971", // 𬥱
+ 0x2c972: "\x9a\x16\U0002c972", // 𬥲
+ 0x2c973: "\x9a\x04\U0002c973", // 𬥳
+ 0x2c974: "\x9a\x05\U0002c974", // 𬥴
+ 0x2c975: "\x9a\x05\U0002c975", // 𬥵
+ 0x2c976: "\x9a\x05\U0002c976", // 𬥶
+ 0x2c977: "\x9a\x06\U0002c977", // 𬥷
+ 0x2c978: "\x9a\a\U0002c978", // 𬥸
+ 0x2c979: "\x9a\b\U0002c979", // 𬥹
+ 0x2c97a: "\x9a\t\U0002c97a", // 𬥺
+ 0x2c97b: "\x9a\t\U0002c97b", // 𬥻
+ 0x2c97c: "\x9a\t\U0002c97c", // 𬥼
+ 0x2c97d: "\x9a\t\U0002c97d", // 𬥽
+ 0x2c97e: "\x9a\n\U0002c97e", // 𬥾
+ 0x2c97f: "\x9a\x0e\U0002c97f", // 𬥿
+ 0x2c980: "\x9a\x16\U0002c980", // 𬦀
+ 0x2c981: "\x9b\x04\U0002c981", // 𬦁
+ 0x2c982: "\x9b\x06\U0002c982", // 𬦂
+ 0x2c983: "\x9b\t\U0002c983", // 𬦃
+ 0x2c984: "\x9b\x0f\U0002c984", // 𬦄
+ 0x2c985: "\x9c\x03\U0002c985", // 𬦅
+ 0x2c986: "\x9c\x04\U0002c986", // 𬦆
+ 0x2c987: "\x9c\x04\U0002c987", // 𬦇
+ 0x2c988: "\x9c\x04\U0002c988", // 𬦈
+ 0x2c989: "\x9c\x05\U0002c989", // 𬦉
+ 0x2c98a: "\x9c\x05\U0002c98a", // 𬦊
+ 0x2c98b: "\x9c\x05\U0002c98b", // 𬦋
+ 0x2c98c: "\x9c\x06\U0002c98c", // 𬦌
+ 0x2c98d: "\x9c\x06\U0002c98d", // 𬦍
+ 0x2c98e: "\x9c\a\U0002c98e", // 𬦎
+ 0x2c98f: "\x9c\a\U0002c98f", // 𬦏
+ 0x2c990: "\x9c\a\U0002c990", // 𬦐
+ 0x2c991: "\x9c\a\U0002c991", // 𬦑
+ 0x2c992: "\x9c\b\U0002c992", // 𬦒
+ 0x2c993: "\x9c\b\U0002c993", // 𬦓
+ 0x2c994: "\x9c\t\U0002c994", // 𬦔
+ 0x2c995: "\x9c\t\U0002c995", // 𬦕
+ 0x2c996: "\x9c\t\U0002c996", // 𬦖
+ 0x2c997: "\x9c\t\U0002c997", // 𬦗
+ 0x2c998: "\x9c\n\U0002c998", // 𬦘
+ 0x2c999: "\x9c\n\U0002c999", // 𬦙
+ 0x2c99a: "\x9c\n\U0002c99a", // 𬦚
+ 0x2c99b: "\x9c\n\U0002c99b", // 𬦛
+ 0x2c99c: "\x9c\n\U0002c99c", // 𬦜
+ 0x2c99d: "\x9c\v\U0002c99d", // 𬦝
+ 0x2c99e: "\x9c\v\U0002c99e", // 𬦞
+ 0x2c99f: "\x9c\f\U0002c99f", // 𬦟
+ 0x2c9a0: "\x9d\x02\U0002c9a0", // 𬦠
+ 0x2c9a1: "\x9d\x03\U0002c9a1", // 𬦡
+ 0x2c9a2: "\x9d\x03\U0002c9a2", // 𬦢
+ 0x2c9a3: "\x9d\x04\U0002c9a3", // 𬦣
+ 0x2c9a4: "\x9d\x04\U0002c9a4", // 𬦤
+ 0x2c9a5: "\x9d\x04\U0002c9a5", // 𬦥
+ 0x2c9a6: "\x9d\x04\U0002c9a6", // 𬦦
+ 0x2c9a7: "\x9d\x04\U0002c9a7", // 𬦧
+ 0x2c9a8: "\x9d\x05\U0002c9a8", // 𬦨
+ 0x2c9a9: "\x9d\x05\U0002c9a9", // 𬦩
+ 0x2c9aa: "\x9d\x05\U0002c9aa", // 𬦪
+ 0x2c9ab: "\x9d\x05\U0002c9ab", // 𬦫
+ 0x2c9ac: "\x9d\x06\U0002c9ac", // 𬦬
+ 0x2c9ad: "\x9d\x06\U0002c9ad", // 𬦭
+ 0x2c9ae: "\x9d\x06\U0002c9ae", // 𬦮
+ 0x2c9af: "\x9d\x06\U0002c9af", // 𬦯
+ 0x2c9b0: "\x9d\x06\U0002c9b0", // 𬦰
+ 0x2c9b1: "\x9d\x06\U0002c9b1", // 𬦱
+ 0x2c9b2: "\x9d\a\U0002c9b2", // 𬦲
+ 0x2c9b3: "\x9d\a\U0002c9b3", // 𬦳
+ 0x2c9b4: "\x9d\a\U0002c9b4", // 𬦴
+ 0x2c9b5: "\x9d\a\U0002c9b5", // 𬦵
+ 0x2c9b6: "\x9d\b\U0002c9b6", // 𬦶
+ 0x2c9b7: "\x9d\b\U0002c9b7", // 𬦷
+ 0x2c9b8: "\x9d\b\U0002c9b8", // 𬦸
+ 0x2c9b9: "\x9d\b\U0002c9b9", // 𬦹
+ 0x2c9ba: "\x9d\b\U0002c9ba", // 𬦺
+ 0x2c9bb: "\x9d\b\U0002c9bb", // 𬦻
+ 0x2c9bc: "\x9d\t\U0002c9bc", // 𬦼
+ 0x2c9bd: "\x9d\t\U0002c9bd", // 𬦽
+ 0x2c9be: "\x9d\t\U0002c9be", // 𬦾
+ 0x2c9bf: "\x9d\t\U0002c9bf", // 𬦿
+ 0x2c9c0: "\x9d\t\U0002c9c0", // 𬧀
+ 0x2c9c1: "\x9d\t\U0002c9c1", // 𬧁
+ 0x2c9c2: "\x9d\t\U0002c9c2", // 𬧂
+ 0x2c9c3: "\x9d\t\U0002c9c3", // 𬧃
+ 0x2c9c4: "\x9d\n\U0002c9c4", // 𬧄
+ 0x2c9c5: "\x9d\n\U0002c9c5", // 𬧅
+ 0x2c9c6: "\x9d\n\U0002c9c6", // 𬧆
+ 0x2c9c7: "\x9d\n\U0002c9c7", // 𬧇
+ 0x2c9c8: "\x9d\n\U0002c9c8", // 𬧈
+ 0x2c9c9: "\x9d\n\U0002c9c9", // 𬧉
+ 0x2c9ca: "\x9d\v\U0002c9ca", // 𬧊
+ 0x2c9cb: "\x9d\v\U0002c9cb", // 𬧋
+ 0x2c9cc: "\x9d\v\U0002c9cc", // 𬧌
+ 0x2c9cd: "\x9d\v\U0002c9cd", // 𬧍
+ 0x2c9ce: "\x9d\v\U0002c9ce", // 𬧎
+ 0x2c9cf: "\x9d\v\U0002c9cf", // 𬧏
+ 0x2c9d0: "\x9d\v\U0002c9d0", // 𬧐
+ 0x2c9d1: "\x9d\f\U0002c9d1", // 𬧑
+ 0x2c9d2: "\x9d\f\U0002c9d2", // 𬧒
+ 0x2c9d3: "\x9d\f\U0002c9d3", // 𬧓
+ 0x2c9d4: "\x9d\f\U0002c9d4", // 𬧔
+ 0x2c9d5: "\x9d\r\U0002c9d5", // 𬧕
+ 0x2c9d6: "\x9d\r\U0002c9d6", // 𬧖
+ 0x2c9d7: "\x9d\r\U0002c9d7", // 𬧗
+ 0x2c9d8: "\x9d\x0e\U0002c9d8", // 𬧘
+ 0x2c9d9: "\x9d\x0f\U0002c9d9", // 𬧙
+ 0x2c9da: "\x9d\x10\U0002c9da", // 𬧚
+ 0x2c9db: "\x9d\x10\U0002c9db", // 𬧛
+ 0x2c9dc: "\x9d\x11\U0002c9dc", // 𬧜
+ 0x2c9dd: "\x9d\x14\U0002c9dd", // 𬧝
+ 0x2c9de: "\x9d\x15\U0002c9de", // 𬧞
+ 0x2c9df: "\x9d\x16\U0002c9df", // 𬧟
+ 0x2c9e0: "\x9e\x01\U0002c9e0", // 𬧠
+ 0x2c9e1: "\x9e\x04\U0002c9e1", // 𬧡
+ 0x2c9e2: "\x9e\x05\U0002c9e2", // 𬧢
+ 0x2c9e3: "\x9e\x06\U0002c9e3", // 𬧣
+ 0x2c9e4: "\x9e\b\U0002c9e4", // 𬧤
+ 0x2c9e5: "\x9e\b\U0002c9e5", // 𬧥
+ 0x2c9e6: "\x9e\b\U0002c9e6", // 𬧦
+ 0x2c9e7: "\x9e\b\U0002c9e7", // 𬧧
+ 0x2c9e8: "\x9e\b\U0002c9e8", // 𬧨
+ 0x2c9e9: "\x9e\b\U0002c9e9", // 𬧩
+ 0x2c9ea: "\x9e\b\U0002c9ea", // 𬧪
+ 0x2c9eb: "\x9e\t\U0002c9eb", // 𬧫
+ 0x2c9ec: "\x9e\n\U0002c9ec", // 𬧬
+ 0x2c9ed: "\x9e\n\U0002c9ed", // 𬧭
+ 0x2c9ee: "\x9e\n\U0002c9ee", // 𬧮
+ 0x2c9ef: "\x9e\v\U0002c9ef", // 𬧯
+ 0x2c9f0: "\x9e\f\U0002c9f0", // 𬧰
+ 0x2c9f1: "\x9f\x04\U0002c9f1", // 𬧱
+ 0x2c9f2: "\x9f\x05\U0002c9f2", // 𬧲
+ 0x2c9f3: "\x9f\x05\U0002c9f3", // 𬧳
+ 0x2c9f4: "\x9f\x05\U0002c9f4", // 𬧴
+ 0x2c9f5: "\x9f\x06\U0002c9f5", // 𬧵
+ 0x2c9f6: "\x9f\b\U0002c9f6", // 𬧶
+ 0x2c9f7: "\x9f\b\U0002c9f7", // 𬧷
+ 0x2c9f8: "\x9f\t\U0002c9f8", // 𬧸
+ 0x2c9f9: "\x9f\t\U0002c9f9", // 𬧹
+ 0x2c9fa: "\x9f\n\U0002c9fa", // 𬧺
+ 0x2c9fb: "\x9f\v\U0002c9fb", // 𬧻
+ 0x2c9fc: "\x9f\v\U0002c9fc", // 𬧼
+ 0x2c9fd: "\x9f\v\U0002c9fd", // 𬧽
+ 0x2c9fe: "\x9f\r\U0002c9fe", // 𬧾
+ 0x2c9ff: "\x9f\x0f\U0002c9ff", // 𬧿
+ 0x2ca00: "\x9f\x0f\U0002ca00", // 𬨀
+ 0x2ca01: "\x9f\x04\U0002ca01", // 𬨁
+ 0x2ca02: "\x9f\x04\U0002ca02", // 𬨂
+ 0x2ca03: "\x9f\x04\U0002ca03", // 𬨃
+ 0x2ca04: "\x9f\x05\U0002ca04", // 𬨄
+ 0x2ca05: "\x9f\x05\U0002ca05", // 𬨅
+ 0x2ca06: "\x9f\x06\U0002ca06", // 𬨆
+ 0x2ca07: "\x9f\x06\U0002ca07", // 𬨇
+ 0x2ca08: "\x9f\a\U0002ca08", // 𬨈
+ 0x2ca09: "\x9f\a\U0002ca09", // 𬨉
+ 0x2ca0a: "\x9f\a\U0002ca0a", // 𬨊
+ 0x2ca0b: "\x9f\a\U0002ca0b", // 𬨋
+ 0x2ca0c: "\x9f\b\U0002ca0c", // 𬨌
+ 0x2ca0d: "\x9f\t\U0002ca0d", // 𬨍
+ 0x2ca0e: "\x9f\t\U0002ca0e", // 𬨎
+ 0x2ca0f: "\x9f\t\U0002ca0f", // 𬨏
+ 0x2ca10: "\x9f\n\U0002ca10", // 𬨐
+ 0x2ca11: "\x9f\n\U0002ca11", // 𬨑
+ 0x2ca12: "\x9f\v\U0002ca12", // 𬨒
+ 0x2ca13: "\x9f\v\U0002ca13", // 𬨓
+ 0x2ca14: "\x9f\r\U0002ca14", // 𬨔
+ 0x2ca15: "\x9f\x0e\U0002ca15", // 𬨕
+ 0x2ca16: "\xa0\x01\U0002ca16", // 𬨖
+ 0x2ca17: "\xa0\x05\U0002ca17", // 𬨗
+ 0x2ca18: "\xa0\x05\U0002ca18", // 𬨘
+ 0x2ca19: "\xa0\x05\U0002ca19", // 𬨙
+ 0x2ca1a: "\xa0\a\U0002ca1a", // 𬨚
+ 0x2ca1b: "\xa0\x10\U0002ca1b", // 𬨛
+ 0x2ca1c: "\xa2\x02\U0002ca1c", // 𬨜
+ 0x2ca1d: "\xa2\x04\U0002ca1d", // 𬨝
+ 0x2ca1e: "\xa2\x04\U0002ca1e", // 𬨞
+ 0x2ca1f: "\xa2\x04\U0002ca1f", // 𬨟
+ 0x2ca20: "\xa2\x04\U0002ca20", // 𬨠
+ 0x2ca21: "\xa2\x05\U0002ca21", // 𬨡
+ 0x2ca22: "\xa2\x05\U0002ca22", // 𬨢
+ 0x2ca23: "\xa2\x05\U0002ca23", // 𬨣
+ 0x2ca24: "\xa2\x06\U0002ca24", // 𬨤
+ 0x2ca25: "\xa2\x06\U0002ca25", // 𬨥
+ 0x2ca26: "\xa2\a\U0002ca26", // 𬨦
+ 0x2ca27: "\xa2\a\U0002ca27", // 𬨧
+ 0x2ca28: "\xa2\a\U0002ca28", // 𬨨
+ 0x2ca29: "\xa2\a\U0002ca29", // 𬨩
+ 0x2ca2a: "\xa2\a\U0002ca2a", // 𬨪
+ 0x2ca2b: "\xa2\a\U0002ca2b", // 𬨫
+ 0x2ca2c: "\xa2\a\U0002ca2c", // 𬨬
+ 0x2ca2d: "\xa2\b\U0002ca2d", // 𬨭
+ 0x2ca2e: "\xa2\b\U0002ca2e", // 𬨮
+ 0x2ca2f: "\xa2\b\U0002ca2f", // 𬨯
+ 0x2ca30: "\xa2\b\U0002ca30", // 𬨰
+ 0x2ca31: "\xa2\b\U0002ca31", // 𬨱
+ 0x2ca32: "\xa2\b\U0002ca32", // 𬨲
+ 0x2ca33: "\xa2\t\U0002ca33", // 𬨳
+ 0x2ca34: "\xa2\t\U0002ca34", // 𬨴
+ 0x2ca35: "\xa2\t\U0002ca35", // 𬨵
+ 0x2ca36: "\xa2\t\U0002ca36", // 𬨶
+ 0x2ca37: "\xa2\t\U0002ca37", // 𬨷
+ 0x2ca38: "\xa2\t\U0002ca38", // 𬨸
+ 0x2ca39: "\xa2\t\U0002ca39", // 𬨹
+ 0x2ca3a: "\xa2\n\U0002ca3a", // 𬨺
+ 0x2ca3b: "\xa2\n\U0002ca3b", // 𬨻
+ 0x2ca3c: "\xa2\n\U0002ca3c", // 𬨼
+ 0x2ca3d: "\xa2\n\U0002ca3d", // 𬨽
+ 0x2ca3e: "\xa2\n\U0002ca3e", // 𬨾
+ 0x2ca3f: "\xa2\n\U0002ca3f", // 𬨿
+ 0x2ca40: "\xa2\v\U0002ca40", // 𬩀
+ 0x2ca41: "\xa2\v\U0002ca41", // 𬩁
+ 0x2ca42: "\xa2\v\U0002ca42", // 𬩂
+ 0x2ca43: "\xa2\v\U0002ca43", // 𬩃
+ 0x2ca44: "\xa2\v\U0002ca44", // 𬩄
+ 0x2ca45: "\xa2\v\U0002ca45", // 𬩅
+ 0x2ca46: "\xa2\v\U0002ca46", // 𬩆
+ 0x2ca47: "\xa2\v\U0002ca47", // 𬩇
+ 0x2ca48: "\xa2\v\U0002ca48", // 𬩈
+ 0x2ca49: "\xa2\f\U0002ca49", // 𬩉
+ 0x2ca4a: "\xa2\f\U0002ca4a", // 𬩊
+ 0x2ca4b: "\xa2\f\U0002ca4b", // 𬩋
+ 0x2ca4c: "\xa2\f\U0002ca4c", // 𬩌
+ 0x2ca4d: "\xa2\f\U0002ca4d", // 𬩍
+ 0x2ca4e: "\xa2\f\U0002ca4e", // 𬩎
+ 0x2ca4f: "\xa2\f\U0002ca4f", // 𬩏
+ 0x2ca50: "\xa2\f\U0002ca50", // 𬩐
+ 0x2ca51: "\xa2\r\U0002ca51", // 𬩑
+ 0x2ca52: "\xa2\r\U0002ca52", // 𬩒
+ 0x2ca53: "\xa2\r\U0002ca53", // 𬩓
+ 0x2ca54: "\xa2\r\U0002ca54", // 𬩔
+ 0x2ca55: "\xa2\r\U0002ca55", // 𬩕
+ 0x2ca56: "\xa2\r\U0002ca56", // 𬩖
+ 0x2ca57: "\xa2\r\U0002ca57", // 𬩗
+ 0x2ca58: "\xa2\r\U0002ca58", // 𬩘
+ 0x2ca59: "\xa2\r\U0002ca59", // 𬩙
+ 0x2ca5a: "\xa2\r\U0002ca5a", // 𬩚
+ 0x2ca5b: "\xa2\r\U0002ca5b", // 𬩛
+ 0x2ca5c: "\xa2\x0e\U0002ca5c", // 𬩜
+ 0x2ca5d: "\xa2\x0e\U0002ca5d", // 𬩝
+ 0x2ca5e: "\xa2\x0e\U0002ca5e", // 𬩞
+ 0x2ca5f: "\xa2\x0e\U0002ca5f", // 𬩟
+ 0x2ca60: "\xa2\x0e\U0002ca60", // 𬩠
+ 0x2ca61: "\xa2\x0e\U0002ca61", // 𬩡
+ 0x2ca62: "\xa2\x0e\U0002ca62", // 𬩢
+ 0x2ca63: "\xa2\x0e\U0002ca63", // 𬩣
+ 0x2ca64: "\xa2\x0f\U0002ca64", // 𬩤
+ 0x2ca65: "\xa2\x0f\U0002ca65", // 𬩥
+ 0x2ca66: "\xa2\x0f\U0002ca66", // 𬩦
+ 0x2ca67: "\xa2\x0f\U0002ca67", // 𬩧
+ 0x2ca68: "\xa2\x0f\U0002ca68", // 𬩨
+ 0x2ca69: "\xa2\x0f\U0002ca69", // 𬩩
+ 0x2ca6a: "\xa2\x0f\U0002ca6a", // 𬩪
+ 0x2ca6b: "\xa2\x10\U0002ca6b", // 𬩫
+ 0x2ca6c: "\xa2\x10\U0002ca6c", // 𬩬
+ 0x2ca6d: "\xa2\x10\U0002ca6d", // 𬩭
+ 0x2ca6e: "\xa2\x10\U0002ca6e", // 𬩮
+ 0x2ca6f: "\xa2\x12\U0002ca6f", // 𬩯
+ 0x2ca70: "\xa2\x12\U0002ca70", // 𬩰
+ 0x2ca71: "\xa2\x12\U0002ca71", // 𬩱
+ 0x2ca72: "\xa2\x12\U0002ca72", // 𬩲
+ 0x2ca73: "\xa3\x02\U0002ca73", // 𬩳
+ 0x2ca74: "\xa3\x02\U0002ca74", // 𬩴
+ 0x2ca75: "\xa3\x04\U0002ca75", // 𬩵
+ 0x2ca76: "\xa3\x04\U0002ca76", // 𬩶
+ 0x2ca77: "\xa3\x05\U0002ca77", // 𬩷
+ 0x2ca78: "\xa3\x05\U0002ca78", // 𬩸
+ 0x2ca79: "\xa3\x05\U0002ca79", // 𬩹
+ 0x2ca7a: "\xa3\x06\U0002ca7a", // 𬩺
+ 0x2ca7b: "\xa3\x06\U0002ca7b", // 𬩻
+ 0x2ca7c: "\xa3\x06\U0002ca7c", // 𬩼
+ 0x2ca7d: "\xa3\x06\U0002ca7d", // 𬩽
+ 0x2ca7e: "\xa3\a\U0002ca7e", // 𬩾
+ 0x2ca7f: "\xa3\a\U0002ca7f", // 𬩿
+ 0x2ca80: "\xa3\a\U0002ca80", // 𬪀
+ 0x2ca81: "\xa3\a\U0002ca81", // 𬪁
+ 0x2ca82: "\xa3\a\U0002ca82", // 𬪂
+ 0x2ca83: "\xa3\a\U0002ca83", // 𬪃
+ 0x2ca84: "\xa3\a\U0002ca84", // 𬪄
+ 0x2ca85: "\xa3\b\U0002ca85", // 𬪅
+ 0x2ca86: "\xa3\b\U0002ca86", // 𬪆
+ 0x2ca87: "\xa3\b\U0002ca87", // 𬪇
+ 0x2ca88: "\xa3\b\U0002ca88", // 𬪈
+ 0x2ca89: "\xa3\b\U0002ca89", // 𬪉
+ 0x2ca8a: "\xa3\b\U0002ca8a", // 𬪊
+ 0x2ca8b: "\xa3\t\U0002ca8b", // 𬪋
+ 0x2ca8c: "\xa3\t\U0002ca8c", // 𬪌
+ 0x2ca8d: "\xa3\t\U0002ca8d", // 𬪍
+ 0x2ca8e: "\xa3\t\U0002ca8e", // 𬪎
+ 0x2ca8f: "\xa3\t\U0002ca8f", // 𬪏
+ 0x2ca90: "\xa3\t\U0002ca90", // 𬪐
+ 0x2ca91: "\xa3\v\U0002ca91", // 𬪑
+ 0x2ca92: "\xa3\v\U0002ca92", // 𬪒
+ 0x2ca93: "\xa3\v\U0002ca93", // 𬪓
+ 0x2ca94: "\xa3\v\U0002ca94", // 𬪔
+ 0x2ca95: "\xa3\f\U0002ca95", // 𬪕
+ 0x2ca96: "\xa3\f\U0002ca96", // 𬪖
+ 0x2ca97: "\xa3\r\U0002ca97", // 𬪗
+ 0x2ca98: "\xa3\r\U0002ca98", // 𬪘
+ 0x2ca99: "\xa3\r\U0002ca99", // 𬪙
+ 0x2ca9a: "\xa3\r\U0002ca9a", // 𬪚
+ 0x2ca9b: "\xa3\r\U0002ca9b", // 𬪛
+ 0x2ca9c: "\xa3\x0e\U0002ca9c", // 𬪜
+ 0x2ca9d: "\xa3\x0f\U0002ca9d", // 𬪝
+ 0x2ca9e: "\xa3\x0f\U0002ca9e", // 𬪞
+ 0x2ca9f: "\xa3\x0f\U0002ca9f", // 𬪟
+ 0x2caa0: "\xa3\x10\U0002caa0", // 𬪠
+ 0x2caa1: "\xa3\x10\U0002caa1", // 𬪡
+ 0x2caa2: "\xa3\x10\U0002caa2", // 𬪢
+ 0x2caa3: "\xa3\x11\U0002caa3", // 𬪣
+ 0x2caa4: "\xa3\x11\U0002caa4", // 𬪤
+ 0x2caa5: "\xa3\x15\U0002caa5", // 𬪥
+ 0x2caa6: "\xa4\x04\U0002caa6", // 𬪦
+ 0x2caa7: "\xa4\x04\U0002caa7", // 𬪧
+ 0x2caa8: "\xa4\x05\U0002caa8", // 𬪨
+ 0x2caa9: "\xa4\x06\U0002caa9", // 𬪩
+ 0x2caaa: "\xa4\a\U0002caaa", // 𬪪
+ 0x2caab: "\xa4\a\U0002caab", // 𬪫
+ 0x2caac: "\xa4\a\U0002caac", // 𬪬
+ 0x2caad: "\xa4\t\U0002caad", // 𬪭
+ 0x2caae: "\xa4\t\U0002caae", // 𬪮
+ 0x2caaf: "\xa4\t\U0002caaf", // 𬪯
+ 0x2cab0: "\xa4\t\U0002cab0", // 𬪰
+ 0x2cab1: "\xa4\t\U0002cab1", // 𬪱
+ 0x2cab2: "\xa4\n\U0002cab2", // 𬪲
+ 0x2cab3: "\xa4\n\U0002cab3", // 𬪳
+ 0x2cab4: "\xa4\n\U0002cab4", // 𬪴
+ 0x2cab5: "\xa4\n\U0002cab5", // 𬪵
+ 0x2cab6: "\xa4\v\U0002cab6", // 𬪶
+ 0x2cab7: "\xa4\r\U0002cab7", // 𬪷
+ 0x2cab8: "\xa4\r\U0002cab8", // 𬪸
+ 0x2cab9: "\xa4\r\U0002cab9", // 𬪹
+ 0x2caba: "\xa5\x03\U0002caba", // 𬪺
+ 0x2cabb: "\xa5\x05\U0002cabb", // 𬪻
+ 0x2cabc: "\xa6\x05\U0002cabc", // 𬪼
+ 0x2cabd: "\xa6\x05\U0002cabd", // 𬪽
+ 0x2cabe: "\xa6\x06\U0002cabe", // 𬪾
+ 0x2cabf: "\xa6\n\U0002cabf", // 𬪿
+ 0x2cac0: "\xa6\n\U0002cac0", // 𬫀
+ 0x2cac1: "\xa6\r\U0002cac1", // 𬫁
+ 0x2cac2: "\xa7\x04\U0002cac2", // 𬫂
+ 0x2cac3: "\xa7\x04\U0002cac3", // 𬫃
+ 0x2cac4: "\xa7\x04\U0002cac4", // 𬫄
+ 0x2cac5: "\xa7\x04\U0002cac5", // 𬫅
+ 0x2cac6: "\xa7\x05\U0002cac6", // 𬫆
+ 0x2cac7: "\xa7\x05\U0002cac7", // 𬫇
+ 0x2cac8: "\xa7\x05\U0002cac8", // 𬫈
+ 0x2cac9: "\xa7\x05\U0002cac9", // 𬫉
+ 0x2caca: "\xa7\x05\U0002caca", // 𬫊
+ 0x2cacb: "\xa7\x05\U0002cacb", // 𬫋
+ 0x2cacc: "\xa7\x05\U0002cacc", // 𬫌
+ 0x2cacd: "\xa7\x06\U0002cacd", // 𬫍
+ 0x2cace: "\xa7\x06\U0002cace", // 𬫎
+ 0x2cacf: "\xa7\x06\U0002cacf", // 𬫏
+ 0x2cad0: "\xa7\x06\U0002cad0", // 𬫐
+ 0x2cad1: "\xa7\x06\U0002cad1", // 𬫑
+ 0x2cad2: "\xa7\x06\U0002cad2", // 𬫒
+ 0x2cad3: "\xa7\x06\U0002cad3", // 𬫓
+ 0x2cad4: "\xa7\a\U0002cad4", // 𬫔
+ 0x2cad5: "\xa7\a\U0002cad5", // 𬫕
+ 0x2cad6: "\xa7\a\U0002cad6", // 𬫖
+ 0x2cad7: "\xa7\a\U0002cad7", // 𬫗
+ 0x2cad8: "\xa7\a\U0002cad8", // 𬫘
+ 0x2cad9: "\xa7\a\U0002cad9", // 𬫙
+ 0x2cada: "\xa7\a\U0002cada", // 𬫚
+ 0x2cadb: "\xa7\a\U0002cadb", // 𬫛
+ 0x2cadc: "\xa7\a\U0002cadc", // 𬫜
+ 0x2cadd: "\xa7\a\U0002cadd", // 𬫝
+ 0x2cade: "\xa7\a\U0002cade", // 𬫞
+ 0x2cadf: "\xa7\a\U0002cadf", // 𬫟
+ 0x2cae0: "\xa7\a\U0002cae0", // 𬫠
+ 0x2cae1: "\xa7\b\U0002cae1", // 𬫡
+ 0x2cae2: "\xa7\b\U0002cae2", // 𬫢
+ 0x2cae3: "\xa7\b\U0002cae3", // 𬫣
+ 0x2cae4: "\xa7\b\U0002cae4", // 𬫤
+ 0x2cae5: "\xa7\b\U0002cae5", // 𬫥
+ 0x2cae6: "\xa7\b\U0002cae6", // 𬫦
+ 0x2cae7: "\xa7\b\U0002cae7", // 𬫧
+ 0x2cae8: "\xa7\b\U0002cae8", // 𬫨
+ 0x2cae9: "\xa7\b\U0002cae9", // 𬫩
+ 0x2caea: "\xa7\b\U0002caea", // 𬫪
+ 0x2caeb: "\xa7\b\U0002caeb", // 𬫫
+ 0x2caec: "\xa7\b\U0002caec", // 𬫬
+ 0x2caed: "\xa7\t\U0002caed", // 𬫭
+ 0x2caee: "\xa7\t\U0002caee", // 𬫮
+ 0x2caef: "\xa7\t\U0002caef", // 𬫯
+ 0x2caf0: "\xa7\t\U0002caf0", // 𬫰
+ 0x2caf1: "\xa7\t\U0002caf1", // 𬫱
+ 0x2caf2: "\xa7\t\U0002caf2", // 𬫲
+ 0x2caf3: "\xa7\n\U0002caf3", // 𬫳
+ 0x2caf4: "\xa7\n\U0002caf4", // 𬫴
+ 0x2caf5: "\xa7\n\U0002caf5", // 𬫵
+ 0x2caf6: "\xa7\n\U0002caf6", // 𬫶
+ 0x2caf7: "\xa7\n\U0002caf7", // 𬫷
+ 0x2caf8: "\xa7\n\U0002caf8", // 𬫸
+ 0x2caf9: "\xa7\n\U0002caf9", // 𬫹
+ 0x2cafa: "\xa7\n\U0002cafa", // 𬫺
+ 0x2cafb: "\xa7\n\U0002cafb", // 𬫻
+ 0x2cafc: "\xa7\n\U0002cafc", // 𬫼
+ 0x2cafd: "\xa7\n\U0002cafd", // 𬫽
+ 0x2cafe: "\xa7\n\U0002cafe", // 𬫾
+ 0x2caff: "\xa7\v\U0002caff", // 𬫿
+ 0x2cb00: "\xa7\v\U0002cb00", // 𬬀
+ 0x2cb01: "\xa7\v\U0002cb01", // 𬬁
+ 0x2cb02: "\xa7\v\U0002cb02", // 𬬂
+ 0x2cb03: "\xa7\v\U0002cb03", // 𬬃
+ 0x2cb04: "\xa7\v\U0002cb04", // 𬬄
+ 0x2cb05: "\xa7\f\U0002cb05", // 𬬅
+ 0x2cb06: "\xa7\f\U0002cb06", // 𬬆
+ 0x2cb07: "\xa7\f\U0002cb07", // 𬬇
+ 0x2cb08: "\xa7\f\U0002cb08", // 𬬈
+ 0x2cb09: "\xa7\f\U0002cb09", // 𬬉
+ 0x2cb0a: "\xa7\f\U0002cb0a", // 𬬊
+ 0x2cb0b: "\xa7\r\U0002cb0b", // 𬬋
+ 0x2cb0c: "\xa7\r\U0002cb0c", // 𬬌
+ 0x2cb0d: "\xa7\r\U0002cb0d", // 𬬍
+ 0x2cb0e: "\xa7\r\U0002cb0e", // 𬬎
+ 0x2cb0f: "\xa7\r\U0002cb0f", // 𬬏
+ 0x2cb10: "\xa7\r\U0002cb10", // 𬬐
+ 0x2cb11: "\xa7\r\U0002cb11", // 𬬑
+ 0x2cb12: "\xa7\x0e\U0002cb12", // 𬬒
+ 0x2cb13: "\xa7\x0e\U0002cb13", // 𬬓
+ 0x2cb14: "\xa7\x0e\U0002cb14", // 𬬔
+ 0x2cb15: "\xa7\x0e\U0002cb15", // 𬬕
+ 0x2cb16: "\xa7\x0e\U0002cb16", // 𬬖
+ 0x2cb17: "\xa7\x0e\U0002cb17", // 𬬗
+ 0x2cb18: "\xa7\x0f\U0002cb18", // 𬬘
+ 0x2cb19: "\xa7\x0f\U0002cb19", // 𬬙
+ 0x2cb1a: "\xa7\x0f\U0002cb1a", // 𬬚
+ 0x2cb1b: "\xa7\x0f\U0002cb1b", // 𬬛
+ 0x2cb1c: "\xa7\x10\U0002cb1c", // 𬬜
+ 0x2cb1d: "\xa7\x10\U0002cb1d", // 𬬝
+ 0x2cb1e: "\xa7\x10\U0002cb1e", // 𬬞
+ 0x2cb1f: "\xa7\x11\U0002cb1f", // 𬬟
+ 0x2cb20: "\xa7\x11\U0002cb20", // 𬬠
+ 0x2cb21: "\xa7\x12\U0002cb21", // 𬬡
+ 0x2cb22: "\xa7\x12\U0002cb22", // 𬬢
+ 0x2cb23: "\xa7\x14\U0002cb23", // 𬬣
+ 0x2cb24: "\xa7\x15\U0002cb24", // 𬬤
+ 0x2cb25: "\xa7\x16\U0002cb25", // 𬬥
+ 0x2cb26: "\xa7\x17\U0002cb26", // 𬬦
+ 0x2cb27: "\xa7\x03\U0002cb27", // 𬬧
+ 0x2cb28: "\xa7\x03\U0002cb28", // 𬬨
+ 0x2cb29: "\xa7\x03\U0002cb29", // 𬬩
+ 0x2cb2a: "\xa7\x03\U0002cb2a", // 𬬪
+ 0x2cb2b: "\xa7\x04\U0002cb2b", // 𬬫
+ 0x2cb2c: "\xa7\x04\U0002cb2c", // 𬬬
+ 0x2cb2d: "\xa7\x04\U0002cb2d", // 𬬭
+ 0x2cb2e: "\xa7\x04\U0002cb2e", // 𬬮
+ 0x2cb2f: "\xa7\x04\U0002cb2f", // 𬬯
+ 0x2cb30: "\xa7\x04\U0002cb30", // 𬬰
+ 0x2cb31: "\xa7\x04\U0002cb31", // 𬬱
+ 0x2cb32: "\xa7\x04\U0002cb32", // 𬬲
+ 0x2cb33: "\xa7\x04\U0002cb33", // 𬬳
+ 0x2cb34: "\xa7\x04\U0002cb34", // 𬬴
+ 0x2cb35: "\xa7\x04\U0002cb35", // 𬬵
+ 0x2cb36: "\xa7\x04\U0002cb36", // 𬬶
+ 0x2cb37: "\xa7\x05\U0002cb37", // 𬬷
+ 0x2cb38: "\xa7\x05\U0002cb38", // 𬬸
+ 0x2cb39: "\xa7\x05\U0002cb39", // 𬬹
+ 0x2cb3a: "\xa7\x05\U0002cb3a", // 𬬺
+ 0x2cb3b: "\xa7\x05\U0002cb3b", // 𬬻
+ 0x2cb3c: "\xa7\x05\U0002cb3c", // 𬬼
+ 0x2cb3d: "\xa7\x05\U0002cb3d", // 𬬽
+ 0x2cb3e: "\xa7\x05\U0002cb3e", // 𬬾
+ 0x2cb3f: "\xa7\x05\U0002cb3f", // 𬬿
+ 0x2cb40: "\xa7\x05\U0002cb40", // 𬭀
+ 0x2cb41: "\xa7\x05\U0002cb41", // 𬭁
+ 0x2cb42: "\xa7\x05\U0002cb42", // 𬭂
+ 0x2cb43: "\xa7\x06\U0002cb43", // 𬭃
+ 0x2cb44: "\xa7\x06\U0002cb44", // 𬭄
+ 0x2cb45: "\xa7\x06\U0002cb45", // 𬭅
+ 0x2cb46: "\xa7\x06\U0002cb46", // 𬭆
+ 0x2cb47: "\xa7\x06\U0002cb47", // 𬭇
+ 0x2cb48: "\xa7\x06\U0002cb48", // 𬭈
+ 0x2cb49: "\xa7\x06\U0002cb49", // 𬭉
+ 0x2cb4a: "\xa7\a\U0002cb4a", // 𬭊
+ 0x2cb4b: "\xa7\a\U0002cb4b", // 𬭋
+ 0x2cb4c: "\xa7\a\U0002cb4c", // 𬭌
+ 0x2cb4d: "\xa7\a\U0002cb4d", // 𬭍
+ 0x2cb4e: "\xa7\a\U0002cb4e", // 𬭎
+ 0x2cb4f: "\xa7\a\U0002cb4f", // 𬭏
+ 0x2cb50: "\xa7\a\U0002cb50", // 𬭐
+ 0x2cb51: "\xa7\b\U0002cb51", // 𬭑
+ 0x2cb52: "\xa7\b\U0002cb52", // 𬭒
+ 0x2cb53: "\xa7\b\U0002cb53", // 𬭓
+ 0x2cb54: "\xa7\b\U0002cb54", // 𬭔
+ 0x2cb55: "\xa7\b\U0002cb55", // 𬭕
+ 0x2cb56: "\xa7\b\U0002cb56", // 𬭖
+ 0x2cb57: "\xa7\b\U0002cb57", // 𬭗
+ 0x2cb58: "\xa7\b\U0002cb58", // 𬭘
+ 0x2cb59: "\xa7\b\U0002cb59", // 𬭙
+ 0x2cb5a: "\xa7\b\U0002cb5a", // 𬭚
+ 0x2cb5b: "\xa7\b\U0002cb5b", // 𬭛
+ 0x2cb5c: "\xa7\b\U0002cb5c", // 𬭜
+ 0x2cb5d: "\xa7\b\U0002cb5d", // 𬭝
+ 0x2cb5e: "\xa7\t\U0002cb5e", // 𬭞
+ 0x2cb5f: "\xa7\t\U0002cb5f", // 𬭟
+ 0x2cb60: "\xa7\t\U0002cb60", // 𬭠
+ 0x2cb61: "\xa7\t\U0002cb61", // 𬭡
+ 0x2cb62: "\xa7\t\U0002cb62", // 𬭢
+ 0x2cb63: "\xa7\t\U0002cb63", // 𬭣
+ 0x2cb64: "\xa7\t\U0002cb64", // 𬭤
+ 0x2cb65: "\xa7\t\U0002cb65", // 𬭥
+ 0x2cb66: "\xa7\n\U0002cb66", // 𬭦
+ 0x2cb67: "\xa7\n\U0002cb67", // 𬭧
+ 0x2cb68: "\xa7\n\U0002cb68", // 𬭨
+ 0x2cb69: "\xa7\n\U0002cb69", // 𬭩
+ 0x2cb6a: "\xa7\n\U0002cb6a", // 𬭪
+ 0x2cb6b: "\xa7\n\U0002cb6b", // 𬭫
+ 0x2cb6c: "\xa7\v\U0002cb6c", // 𬭬
+ 0x2cb6d: "\xa7\v\U0002cb6d", // 𬭭
+ 0x2cb6e: "\xa7\v\U0002cb6e", // 𬭮
+ 0x2cb6f: "\xa7\v\U0002cb6f", // 𬭯
+ 0x2cb70: "\xa7\v\U0002cb70", // 𬭰
+ 0x2cb71: "\xa7\v\U0002cb71", // 𬭱
+ 0x2cb72: "\xa7\v\U0002cb72", // 𬭲
+ 0x2cb73: "\xa7\f\U0002cb73", // 𬭳
+ 0x2cb74: "\xa7\f\U0002cb74", // 𬭴
+ 0x2cb75: "\xa7\f\U0002cb75", // 𬭵
+ 0x2cb76: "\xa7\f\U0002cb76", // 𬭶
+ 0x2cb77: "\xa7\f\U0002cb77", // 𬭷
+ 0x2cb78: "\xa7\f\U0002cb78", // 𬭸
+ 0x2cb79: "\xa7\f\U0002cb79", // 𬭹
+ 0x2cb7a: "\xa7\r\U0002cb7a", // 𬭺
+ 0x2cb7b: "\xa7\r\U0002cb7b", // 𬭻
+ 0x2cb7c: "\xa7\r\U0002cb7c", // 𬭼
+ 0x2cb7d: "\xa7\r\U0002cb7d", // 𬭽
+ 0x2cb7e: "\xa7\x0e\U0002cb7e", // 𬭾
+ 0x2cb7f: "\xa7\x0f\U0002cb7f", // 𬭿
+ 0x2cb80: "\xa7\x10\U0002cb80", // 𬮀
+ 0x2cb81: "\xa7\x11\U0002cb81", // 𬮁
+ 0x2cb82: "\xa7\x13\U0002cb82", // 𬮂
+ 0x2cb83: "\xa7\x14\U0002cb83", // 𬮃
+ 0x2cb84: "\xa8\x06\U0002cb84", // 𬮄
+ 0x2cb85: "\xa9\x02\U0002cb85", // 𬮅
+ 0x2cb86: "\xa9\x03\U0002cb86", // 𬮆
+ 0x2cb87: "\xa9\x04\U0002cb87", // 𬮇
+ 0x2cb88: "\xa9\x04\U0002cb88", // 𬮈
+ 0x2cb89: "\xa9\x05\U0002cb89", // 𬮉
+ 0x2cb8a: "\xa9\a\U0002cb8a", // 𬮊
+ 0x2cb8b: "\xa9\a\U0002cb8b", // 𬮋
+ 0x2cb8c: "\xa9\a\U0002cb8c", // 𬮌
+ 0x2cb8d: "\xa9\t\U0002cb8d", // 𬮍
+ 0x2cb8e: "\xa9\t\U0002cb8e", // 𬮎
+ 0x2cb8f: "\xa9\n\U0002cb8f", // 𬮏
+ 0x2cb90: "\xa9\n\U0002cb90", // 𬮐
+ 0x2cb91: "\xa9\n\U0002cb91", // 𬮑
+ 0x2cb92: "\xa9\v\U0002cb92", // 𬮒
+ 0x2cb93: "\xa9\f\U0002cb93", // 𬮓
+ 0x2cb94: "\xa9\r\U0002cb94", // 𬮔
+ 0x2cb95: "\xa9\r\U0002cb95", // 𬮕
+ 0x2cb96: "\xa9\x0e\U0002cb96", // 𬮖
+ 0x2cb97: "\xa9\x0f\U0002cb97", // 𬮗
+ 0x2cb98: "\xa9\x02\U0002cb98", // 𬮘
+ 0x2cb99: "\xa9\x03\U0002cb99", // 𬮙
+ 0x2cb9a: "\xa9\x03\U0002cb9a", // 𬮚
+ 0x2cb9b: "\xa9\x03\U0002cb9b", // 𬮛
+ 0x2cb9c: "\xa9\x04\U0002cb9c", // 𬮜
+ 0x2cb9d: "\xa9\x04\U0002cb9d", // 𬮝
+ 0x2cb9e: "\xa9\x04\U0002cb9e", // 𬮞
+ 0x2cb9f: "\xa9\x04\U0002cb9f", // 𬮟
+ 0x2cba0: "\xa9\x05\U0002cba0", // 𬮠
+ 0x2cba1: "\xa9\x05\U0002cba1", // 𬮡
+ 0x2cba2: "\xa9\x06\U0002cba2", // 𬮢
+ 0x2cba3: "\xa9\x06\U0002cba3", // 𬮣
+ 0x2cba4: "\xa9\x06\U0002cba4", // 𬮤
+ 0x2cba5: "\xa9\x06\U0002cba5", // 𬮥
+ 0x2cba6: "\xa9\x06\U0002cba6", // 𬮦
+ 0x2cba7: "\xa9\x06\U0002cba7", // 𬮧
+ 0x2cba8: "\xa9\a\U0002cba8", // 𬮨
+ 0x2cba9: "\xa9\a\U0002cba9", // 𬮩
+ 0x2cbaa: "\xa9\a\U0002cbaa", // 𬮪
+ 0x2cbab: "\xa9\b\U0002cbab", // 𬮫
+ 0x2cbac: "\xa9\b\U0002cbac", // 𬮬
+ 0x2cbad: "\xa9\b\U0002cbad", // 𬮭
+ 0x2cbae: "\xa9\b\U0002cbae", // 𬮮
+ 0x2cbaf: "\xa9\b\U0002cbaf", // 𬮯
+ 0x2cbb0: "\xa9\b\U0002cbb0", // 𬮰
+ 0x2cbb1: "\xa9\t\U0002cbb1", // 𬮱
+ 0x2cbb2: "\xa9\t\U0002cbb2", // 𬮲
+ 0x2cbb3: "\xa9\t\U0002cbb3", // 𬮳
+ 0x2cbb4: "\xa9\t\U0002cbb4", // 𬮴
+ 0x2cbb5: "\xa9\t\U0002cbb5", // 𬮵
+ 0x2cbb6: "\xa9\v\U0002cbb6", // 𬮶
+ 0x2cbb7: "\xa9\v\U0002cbb7", // 𬮷
+ 0x2cbb8: "\xa9\f\U0002cbb8", // 𬮸
+ 0x2cbb9: "\xa9\f\U0002cbb9", // 𬮹
+ 0x2cbba: "\xaa\x03\U0002cbba", // 𬮺
+ 0x2cbbb: "\xaa\x04\U0002cbbb", // 𬮻
+ 0x2cbbc: "\xaa\x04\U0002cbbc", // 𬮼
+ 0x2cbbd: "\xaa\x04\U0002cbbd", // 𬮽
+ 0x2cbbe: "\xaa\x05\U0002cbbe", // 𬮾
+ 0x2cbbf: "\xaa\x06\U0002cbbf", // 𬮿
+ 0x2cbc0: "\xaa\x06\U0002cbc0", // 𬯀
+ 0x2cbc1: "\xaa\a\U0002cbc1", // 𬯁
+ 0x2cbc2: "\xaa\a\U0002cbc2", // 𬯂
+ 0x2cbc3: "\xaa\a\U0002cbc3", // 𬯃
+ 0x2cbc4: "\xaa\b\U0002cbc4", // 𬯄
+ 0x2cbc5: "\xaa\b\U0002cbc5", // 𬯅
+ 0x2cbc6: "\xaa\b\U0002cbc6", // 𬯆
+ 0x2cbc7: "\xaa\b\U0002cbc7", // 𬯇
+ 0x2cbc8: "\xaa\b\U0002cbc8", // 𬯈
+ 0x2cbc9: "\xaa\b\U0002cbc9", // 𬯉
+ 0x2cbca: "\xaa\b\U0002cbca", // 𬯊
+ 0x2cbcb: "\xaa\t\U0002cbcb", // 𬯋
+ 0x2cbcc: "\xaa\t\U0002cbcc", // 𬯌
+ 0x2cbcd: "\xaa\t\U0002cbcd", // 𬯍
+ 0x2cbce: "\xaa\t\U0002cbce", // 𬯎
+ 0x2cbcf: "\xaa\t\U0002cbcf", // 𬯏
+ 0x2cbd0: "\xaa\n\U0002cbd0", // 𬯐
+ 0x2cbd1: "\xaa\n\U0002cbd1", // 𬯑
+ 0x2cbd2: "\xaa\n\U0002cbd2", // 𬯒
+ 0x2cbd3: "\xaa\n\U0002cbd3", // 𬯓
+ 0x2cbd4: "\xaa\v\U0002cbd4", // 𬯔
+ 0x2cbd5: "\xaa\v\U0002cbd5", // 𬯕
+ 0x2cbd6: "\xaa\v\U0002cbd6", // 𬯖
+ 0x2cbd7: "\xaa\v\U0002cbd7", // 𬯗
+ 0x2cbd8: "\xaa\v\U0002cbd8", // 𬯘
+ 0x2cbd9: "\xaa\f\U0002cbd9", // 𬯙
+ 0x2cbda: "\xaa\f\U0002cbda", // 𬯚
+ 0x2cbdb: "\xaa\f\U0002cbdb", // 𬯛
+ 0x2cbdc: "\xaa\r\U0002cbdc", // 𬯜
+ 0x2cbdd: "\xaa\r\U0002cbdd", // 𬯝
+ 0x2cbde: "\xaa\r\U0002cbde", // 𬯞
+ 0x2cbdf: "\xaa\r\U0002cbdf", // 𬯟
+ 0x2cbe0: "\xaa\x0e\U0002cbe0", // 𬯠
+ 0x2cbe1: "\xaa\x0f\U0002cbe1", // 𬯡
+ 0x2cbe2: "\xaa\x11\U0002cbe2", // 𬯢
+ 0x2cbe3: "\xaa\x11\U0002cbe3", // 𬯣
+ 0x2cbe4: "\xaa\x11\U0002cbe4", // 𬯤
+ 0x2cbe5: "\xaa\x12\U0002cbe5", // 𬯥
+ 0x2cbe6: "\xaa\x12\U0002cbe6", // 𬯦
+ 0x2cbe7: "\xaa\x12\U0002cbe7", // 𬯧
+ 0x2cbe8: "\xaa\x13\U0002cbe8", // 𬯨
+ 0x2cbe9: "\xaa\x15\U0002cbe9", // 𬯩
+ 0x2cbea: "\xac\x04\U0002cbea", // 𬯪
+ 0x2cbeb: "\xac\x05\U0002cbeb", // 𬯫
+ 0x2cbec: "\xac\x06\U0002cbec", // 𬯬
+ 0x2cbed: "\xac\x06\U0002cbed", // 𬯭
+ 0x2cbee: "\xac\a\U0002cbee", // 𬯮
+ 0x2cbef: "\xac\b\U0002cbef", // 𬯯
+ 0x2cbf0: "\xac\b\U0002cbf0", // 𬯰
+ 0x2cbf1: "\xac\t\U0002cbf1", // 𬯱
+ 0x2cbf2: "\xac\f\U0002cbf2", // 𬯲
+ 0x2cbf3: "\xac\f\U0002cbf3", // 𬯳
+ 0x2cbf4: "\xac\f\U0002cbf4", // 𬯴
+ 0x2cbf5: "\xac\x0e\U0002cbf5", // 𬯵
+ 0x2cbf6: "\xac\x0e\U0002cbf6", // 𬯶
+ 0x2cbf7: "\xac\x0f\U0002cbf7", // 𬯷
+ 0x2cbf8: "\xad\x03\U0002cbf8", // 𬯸
+ 0x2cbf9: "\xad\x04\U0002cbf9", // 𬯹
+ 0x2cbfa: "\xad\x04\U0002cbfa", // 𬯺
+ 0x2cbfb: "\xad\x05\U0002cbfb", // 𬯻
+ 0x2cbfc: "\xad\a\U0002cbfc", // 𬯼
+ 0x2cbfd: "\xad\a\U0002cbfd", // 𬯽
+ 0x2cbfe: "\xad\b\U0002cbfe", // 𬯾
+ 0x2cbff: "\xad\b\U0002cbff", // 𬯿
+ 0x2cc00: "\xad\b\U0002cc00", // 𬰀
+ 0x2cc01: "\xad\b\U0002cc01", // 𬰁
+ 0x2cc02: "\xad\b\U0002cc02", // 𬰂
+ 0x2cc03: "\xad\b\U0002cc03", // 𬰃
+ 0x2cc04: "\xad\t\U0002cc04", // 𬰄
+ 0x2cc05: "\xad\t\U0002cc05", // 𬰅
+ 0x2cc06: "\xad\t\U0002cc06", // 𬰆
+ 0x2cc07: "\xad\t\U0002cc07", // 𬰇
+ 0x2cc08: "\xad\n\U0002cc08", // 𬰈
+ 0x2cc09: "\xad\v\U0002cc09", // 𬰉
+ 0x2cc0a: "\xad\v\U0002cc0a", // 𬰊
+ 0x2cc0b: "\xad\f\U0002cc0b", // 𬰋
+ 0x2cc0c: "\xad\f\U0002cc0c", // 𬰌
+ 0x2cc0d: "\xad\f\U0002cc0d", // 𬰍
+ 0x2cc0e: "\xad\r\U0002cc0e", // 𬰎
+ 0x2cc0f: "\xad\r\U0002cc0f", // 𬰏
+ 0x2cc10: "\xad\r\U0002cc10", // 𬰐
+ 0x2cc11: "\xad\x0e\U0002cc11", // 𬰑
+ 0x2cc12: "\xad\x0e\U0002cc12", // 𬰒
+ 0x2cc13: "\xad\x0e\U0002cc13", // 𬰓
+ 0x2cc14: "\xad\x0e\U0002cc14", // 𬰔
+ 0x2cc15: "\xad\x13\U0002cc15", // 𬰕
+ 0x2cc16: "\xad\x16\U0002cc16", // 𬰖
+ 0x2cc17: "\xae\x05\U0002cc17", // 𬰗
+ 0x2cc18: "\xae\x05\U0002cc18", // 𬰘
+ 0x2cc19: "\xaf\x03\U0002cc19", // 𬰙
+ 0x2cc1a: "\xaf\x05\U0002cc1a", // 𬰚
+ 0x2cc1b: "\xaf\x05\U0002cc1b", // 𬰛
+ 0x2cc1c: "\xaf\a\U0002cc1c", // 𬰜
+ 0x2cc1d: "\xaf\n\U0002cc1d", // 𬰝
+ 0x2cc1e: "\xaf\v\U0002cc1e", // 𬰞
+ 0x2cc1f: "\xaf\x0e\U0002cc1f", // 𬰟
+ 0x2cc20: "\xb0\x05\U0002cc20", // 𬰠
+ 0x2cc21: "\xb0\b\U0002cc21", // 𬰡
+ 0x2cc22: "\xb0\v\U0002cc22", // 𬰢
+ 0x2cc23: "\xb0\v\U0002cc23", // 𬰣
+ 0x2cc24: "\xb1\x06\U0002cc24", // 𬰤
+ 0x2cc25: "\xb1\a\U0002cc25", // 𬰥
+ 0x2cc26: "\xb1\b\U0002cc26", // 𬰦
+ 0x2cc27: "\xb1\t\U0002cc27", // 𬰧
+ 0x2cc28: "\xb1\f\U0002cc28", // 𬰨
+ 0x2cc29: "\xb1\f\U0002cc29", // 𬰩
+ 0x2cc2a: "\xb2\x04\U0002cc2a", // 𬰪
+ 0x2cc2b: "\xb2\x06\U0002cc2b", // 𬰫
+ 0x2cc2c: "\xb2\x06\U0002cc2c", // 𬰬
+ 0x2cc2d: "\xb2\x06\U0002cc2d", // 𬰭
+ 0x2cc2e: "\xb2\t\U0002cc2e", // 𬰮
+ 0x2cc2f: "\xb2\x0e\U0002cc2f", // 𬰯
+ 0x2cc30: "\xb2\x11\U0002cc30", // 𬰰
+ 0x2cc31: "\xb2\x03\U0002cc31", // 𬰱
+ 0x2cc32: "\xb2\x04\U0002cc32", // 𬰲
+ 0x2cc33: "\xb2\x05\U0002cc33", // 𬰳
+ 0x2cc34: "\xb2\x05\U0002cc34", // 𬰴
+ 0x2cc35: "\xb2\t\U0002cc35", // 𬰵
+ 0x2cc36: "\xb2\f\U0002cc36", // 𬰶
+ 0x2cc37: "\xb2\r\U0002cc37", // 𬰷
+ 0x2cc38: "\xb2\x10\U0002cc38", // 𬰸
+ 0x2cc39: "\xb4\x05\U0002cc39", // 𬰹
+ 0x2cc3a: "\xb4\x05\U0002cc3a", // 𬰺
+ 0x2cc3b: "\xb4\x05\U0002cc3b", // 𬰻
+ 0x2cc3c: "\xb4\x06\U0002cc3c", // 𬰼
+ 0x2cc3d: "\xb4\a\U0002cc3d", // 𬰽
+ 0x2cc3e: "\xb4\x11\U0002cc3e", // 𬰾
+ 0x2cc3f: "\xb5\x02\U0002cc3f", // 𬰿
+ 0x2cc40: "\xb5\x03\U0002cc40", // 𬱀
+ 0x2cc41: "\xb5\x05\U0002cc41", // 𬱁
+ 0x2cc42: "\xb5\x05\U0002cc42", // 𬱂
+ 0x2cc43: "\xb5\x06\U0002cc43", // 𬱃
+ 0x2cc44: "\xb5\a\U0002cc44", // 𬱄
+ 0x2cc45: "\xb5\a\U0002cc45", // 𬱅
+ 0x2cc46: "\xb5\a\U0002cc46", // 𬱆
+ 0x2cc47: "\xb5\a\U0002cc47", // 𬱇
+ 0x2cc48: "\xb5\b\U0002cc48", // 𬱈
+ 0x2cc49: "\xb5\b\U0002cc49", // 𬱉
+ 0x2cc4a: "\xb5\t\U0002cc4a", // 𬱊
+ 0x2cc4b: "\xb5\t\U0002cc4b", // 𬱋
+ 0x2cc4c: "\xb5\v\U0002cc4c", // 𬱌
+ 0x2cc4d: "\xb5\v\U0002cc4d", // 𬱍
+ 0x2cc4e: "\xb5\f\U0002cc4e", // 𬱎
+ 0x2cc4f: "\xb5\r\U0002cc4f", // 𬱏
+ 0x2cc50: "\xb5\x0f\U0002cc50", // 𬱐
+ 0x2cc51: "\xb5\x11\U0002cc51", // 𬱑
+ 0x2cc52: "\xb5\x18\U0002cc52", // 𬱒
+ 0x2cc53: "\xb5\x02\U0002cc53", // 𬱓
+ 0x2cc54: "\xb5\x04\U0002cc54", // 𬱔
+ 0x2cc55: "\xb5\x04\U0002cc55", // 𬱕
+ 0x2cc56: "\xb5\x05\U0002cc56", // 𬱖
+ 0x2cc57: "\xb5\x05\U0002cc57", // 𬱗
+ 0x2cc58: "\xb5\x05\U0002cc58", // 𬱘
+ 0x2cc59: "\xb5\x05\U0002cc59", // 𬱙
+ 0x2cc5a: "\xb5\x05\U0002cc5a", // 𬱚
+ 0x2cc5b: "\xb5\x06\U0002cc5b", // 𬱛
+ 0x2cc5c: "\xb5\x06\U0002cc5c", // 𬱜
+ 0x2cc5d: "\xb5\x06\U0002cc5d", // 𬱝
+ 0x2cc5e: "\xb5\x06\U0002cc5e", // 𬱞
+ 0x2cc5f: "\xb5\x06\U0002cc5f", // 𬱟
+ 0x2cc60: "\xb5\x06\U0002cc60", // 𬱠
+ 0x2cc61: "\xb5\x06\U0002cc61", // 𬱡
+ 0x2cc62: "\xb5\x06\U0002cc62", // 𬱢
+ 0x2cc63: "\xb5\a\U0002cc63", // 𬱣
+ 0x2cc64: "\xb5\a\U0002cc64", // 𬱤
+ 0x2cc65: "\xb5\a\U0002cc65", // 𬱥
+ 0x2cc66: "\xb5\b\U0002cc66", // 𬱦
+ 0x2cc67: "\xb5\b\U0002cc67", // 𬱧
+ 0x2cc68: "\xb5\b\U0002cc68", // 𬱨
+ 0x2cc69: "\xb5\b\U0002cc69", // 𬱩
+ 0x2cc6a: "\xb5\b\U0002cc6a", // 𬱪
+ 0x2cc6b: "\xb5\b\U0002cc6b", // 𬱫
+ 0x2cc6c: "\xb5\b\U0002cc6c", // 𬱬
+ 0x2cc6d: "\xb5\t\U0002cc6d", // 𬱭
+ 0x2cc6e: "\xb5\t\U0002cc6e", // 𬱮
+ 0x2cc6f: "\xb5\t\U0002cc6f", // 𬱯
+ 0x2cc70: "\xb5\n\U0002cc70", // 𬱰
+ 0x2cc71: "\xb5\f\U0002cc71", // 𬱱
+ 0x2cc72: "\xb5\x0e\U0002cc72", // 𬱲
+ 0x2cc73: "\xb5\x11\U0002cc73", // 𬱳
+ 0x2cc74: "\xb6\t\U0002cc74", // 𬱴
+ 0x2cc75: "\xb6\x04\U0002cc75", // 𬱵
+ 0x2cc76: "\xb6\x04\U0002cc76", // 𬱶
+ 0x2cc77: "\xb6\x04\U0002cc77", // 𬱷
+ 0x2cc78: "\xb6\x05\U0002cc78", // 𬱸
+ 0x2cc79: "\xb6\x05\U0002cc79", // 𬱹
+ 0x2cc7a: "\xb6\x05\U0002cc7a", // 𬱺
+ 0x2cc7b: "\xb6\x05\U0002cc7b", // 𬱻
+ 0x2cc7c: "\xb6\x06\U0002cc7c", // 𬱼
+ 0x2cc7d: "\xb6\a\U0002cc7d", // 𬱽
+ 0x2cc7e: "\xb6\b\U0002cc7e", // 𬱾
+ 0x2cc7f: "\xb6\b\U0002cc7f", // 𬱿
+ 0x2cc80: "\xb6\b\U0002cc80", // 𬲀
+ 0x2cc81: "\xb6\t\U0002cc81", // 𬲁
+ 0x2cc82: "\xb6\t\U0002cc82", // 𬲂
+ 0x2cc83: "\xb6\n\U0002cc83", // 𬲃
+ 0x2cc84: "\xb6\n\U0002cc84", // 𬲄
+ 0x2cc85: "\xb6\f\U0002cc85", // 𬲅
+ 0x2cc86: "\xb6\f\U0002cc86", // 𬲆
+ 0x2cc87: "\xb6\r\U0002cc87", // 𬲇
+ 0x2cc88: "\xb6\r\U0002cc88", // 𬲈
+ 0x2cc89: "\xb7\x05\U0002cc89", // 𬲉
+ 0x2cc8a: "\xb7\x0f\U0002cc8a", // 𬲊
+ 0x2cc8b: "\xb8\x04\U0002cc8b", // 𬲋
+ 0x2cc8c: "\xb8\x04\U0002cc8c", // 𬲌
+ 0x2cc8d: "\xb8\x04\U0002cc8d", // 𬲍
+ 0x2cc8e: "\xb8\x04\U0002cc8e", // 𬲎
+ 0x2cc8f: "\xb8\x06\U0002cc8f", // 𬲏
+ 0x2cc90: "\xb8\x06\U0002cc90", // 𬲐
+ 0x2cc91: "\xb8\x06\U0002cc91", // 𬲑
+ 0x2cc92: "\xb8\a\U0002cc92", // 𬲒
+ 0x2cc93: "\xb8\a\U0002cc93", // 𬲓
+ 0x2cc94: "\xb8\a\U0002cc94", // 𬲔
+ 0x2cc95: "\xb8\b\U0002cc95", // 𬲕
+ 0x2cc96: "\xb8\b\U0002cc96", // 𬲖
+ 0x2cc97: "\xb8\t\U0002cc97", // 𬲗
+ 0x2cc98: "\xb8\t\U0002cc98", // 𬲘
+ 0x2cc99: "\xb8\t\U0002cc99", // 𬲙
+ 0x2cc9a: "\xb8\v\U0002cc9a", // 𬲚
+ 0x2cc9b: "\xb8\f\U0002cc9b", // 𬲛
+ 0x2cc9c: "\xb8\f\U0002cc9c", // 𬲜
+ 0x2cc9d: "\xb8\f\U0002cc9d", // 𬲝
+ 0x2cc9e: "\xb8\f\U0002cc9e", // 𬲞
+ 0x2cc9f: "\xb8\r\U0002cc9f", // 𬲟
+ 0x2cca0: "\xb8\r\U0002cca0", // 𬲠
+ 0x2cca1: "\xb8\x0f\U0002cca1", // 𬲡
+ 0x2cca2: "\xb8\x12\U0002cca2", // 𬲢
+ 0x2cca3: "\xb8\x12\U0002cca3", // 𬲣
+ 0x2cca4: "\xb8\x13\U0002cca4", // 𬲤
+ 0x2cca5: "\xb8\x02\U0002cca5", // 𬲥
+ 0x2cca6: "\xb8\x02\U0002cca6", // 𬲦
+ 0x2cca7: "\xb8\x03\U0002cca7", // 𬲧
+ 0x2cca8: "\xb8\x03\U0002cca8", // 𬲨
+ 0x2cca9: "\xb8\x04\U0002cca9", // 𬲩
+ 0x2ccaa: "\xb8\x04\U0002ccaa", // 𬲪
+ 0x2ccab: "\xb8\x05\U0002ccab", // 𬲫
+ 0x2ccac: "\xb8\x05\U0002ccac", // 𬲬
+ 0x2ccad: "\xb8\x05\U0002ccad", // 𬲭
+ 0x2ccae: "\xb8\x05\U0002ccae", // 𬲮
+ 0x2ccaf: "\xb8\x05\U0002ccaf", // 𬲯
+ 0x2ccb0: "\xb8\x05\U0002ccb0", // 𬲰
+ 0x2ccb1: "\xb8\x05\U0002ccb1", // 𬲱
+ 0x2ccb2: "\xb8\x05\U0002ccb2", // 𬲲
+ 0x2ccb3: "\xb8\x05\U0002ccb3", // 𬲳
+ 0x2ccb4: "\xb8\x06\U0002ccb4", // 𬲴
+ 0x2ccb5: "\xb8\x06\U0002ccb5", // 𬲵
+ 0x2ccb6: "\xb8\x06\U0002ccb6", // 𬲶
+ 0x2ccb7: "\xb8\x06\U0002ccb7", // 𬲷
+ 0x2ccb8: "\xb8\a\U0002ccb8", // 𬲸
+ 0x2ccb9: "\xb8\a\U0002ccb9", // 𬲹
+ 0x2ccba: "\xb8\a\U0002ccba", // 𬲺
+ 0x2ccbb: "\xb8\a\U0002ccbb", // 𬲻
+ 0x2ccbc: "\xb8\b\U0002ccbc", // 𬲼
+ 0x2ccbd: "\xb8\b\U0002ccbd", // 𬲽
+ 0x2ccbe: "\xb8\b\U0002ccbe", // 𬲾
+ 0x2ccbf: "\xb8\b\U0002ccbf", // 𬲿
+ 0x2ccc0: "\xb8\b\U0002ccc0", // 𬳀
+ 0x2ccc1: "\xb8\b\U0002ccc1", // 𬳁
+ 0x2ccc2: "\xb8\b\U0002ccc2", // 𬳂
+ 0x2ccc3: "\xb8\t\U0002ccc3", // 𬳃
+ 0x2ccc4: "\xb8\t\U0002ccc4", // 𬳄
+ 0x2ccc5: "\xb8\t\U0002ccc5", // 𬳅
+ 0x2ccc6: "\xb8\t\U0002ccc6", // 𬳆
+ 0x2ccc7: "\xb8\t\U0002ccc7", // 𬳇
+ 0x2ccc8: "\xb8\n\U0002ccc8", // 𬳈
+ 0x2ccc9: "\xb8\n\U0002ccc9", // 𬳉
+ 0x2ccca: "\xb8\n\U0002ccca", // 𬳊
+ 0x2cccb: "\xb8\n\U0002cccb", // 𬳋
+ 0x2cccc: "\xb8\n\U0002cccc", // 𬳌
+ 0x2cccd: "\xb8\n\U0002cccd", // 𬳍
+ 0x2ccce: "\xb8\v\U0002ccce", // 𬳎
+ 0x2cccf: "\xb8\v\U0002cccf", // 𬳏
+ 0x2ccd0: "\xb8\v\U0002ccd0", // 𬳐
+ 0x2ccd1: "\xb8\f\U0002ccd1", // 𬳑
+ 0x2ccd2: "\xb8\f\U0002ccd2", // 𬳒
+ 0x2ccd3: "\xb8\r\U0002ccd3", // 𬳓
+ 0x2ccd4: "\xb8\x0e\U0002ccd4", // 𬳔
+ 0x2ccd5: "\xb9\x06\U0002ccd5", // 𬳕
+ 0x2ccd6: "\xb9\x06\U0002ccd6", // 𬳖
+ 0x2ccd7: "\xb9\a\U0002ccd7", // 𬳗
+ 0x2ccd8: "\xb9\a\U0002ccd8", // 𬳘
+ 0x2ccd9: "\xb9\b\U0002ccd9", // 𬳙
+ 0x2ccda: "\xb9\n\U0002ccda", // 𬳚
+ 0x2ccdb: "\xb9\r\U0002ccdb", // 𬳛
+ 0x2ccdc: "\xba\x04\U0002ccdc", // 𬳜
+ 0x2ccdd: "\xba\b\U0002ccdd", // 𬳝
+ 0x2ccde: "\xba\b\U0002ccde", // 𬳞
+ 0x2ccdf: "\xba\t\U0002ccdf", // 𬳟
+ 0x2cce0: "\xba\t\U0002cce0", // 𬳠
+ 0x2cce1: "\xba\n\U0002cce1", // 𬳡
+ 0x2cce2: "\xba\n\U0002cce2", // 𬳢
+ 0x2cce3: "\xba\n\U0002cce3", // 𬳣
+ 0x2cce4: "\xba\v\U0002cce4", // 𬳤
+ 0x2cce5: "\xba\v\U0002cce5", // 𬳥
+ 0x2cce6: "\xba\v\U0002cce6", // 𬳦
+ 0x2cce7: "\xba\f\U0002cce7", // 𬳧
+ 0x2cce8: "\xbb\x03\U0002cce8", // 𬳨
+ 0x2cce9: "\xbb\x04\U0002cce9", // 𬳩
+ 0x2ccea: "\xbb\x04\U0002ccea", // 𬳪
+ 0x2cceb: "\xbb\x06\U0002cceb", // 𬳫
+ 0x2ccec: "\xbb\a\U0002ccec", // 𬳬
+ 0x2cced: "\xbb\b\U0002cced", // 𬳭
+ 0x2ccee: "\xbb\b\U0002ccee", // 𬳮
+ 0x2ccef: "\xbb\b\U0002ccef", // 𬳯
+ 0x2ccf0: "\xbb\v\U0002ccf0", // 𬳰
+ 0x2ccf1: "\xbb\f\U0002ccf1", // 𬳱
+ 0x2ccf2: "\xbb\x15\U0002ccf2", // 𬳲
+ 0x2ccf3: "\xbb\x04\U0002ccf3", // 𬳳
+ 0x2ccf4: "\xbb\x05\U0002ccf4", // 𬳴
+ 0x2ccf5: "\xbb\x05\U0002ccf5", // 𬳵
+ 0x2ccf6: "\xbb\x05\U0002ccf6", // 𬳶
+ 0x2ccf7: "\xbb\x05\U0002ccf7", // 𬳷
+ 0x2ccf8: "\xbb\x05\U0002ccf8", // 𬳸
+ 0x2ccf9: "\xbb\x06\U0002ccf9", // 𬳹
+ 0x2ccfa: "\xbb\x06\U0002ccfa", // 𬳺
+ 0x2ccfb: "\xbb\x06\U0002ccfb", // 𬳻
+ 0x2ccfc: "\xbb\x06\U0002ccfc", // 𬳼
+ 0x2ccfd: "\xbb\x06\U0002ccfd", // 𬳽
+ 0x2ccfe: "\xbb\x06\U0002ccfe", // 𬳾
+ 0x2ccff: "\xbb\a\U0002ccff", // 𬳿
+ 0x2cd00: "\xbb\a\U0002cd00", // 𬴀
+ 0x2cd01: "\xbb\b\U0002cd01", // 𬴁
+ 0x2cd02: "\xbb\b\U0002cd02", // 𬴂
+ 0x2cd03: "\xbb\t\U0002cd03", // 𬴃
+ 0x2cd04: "\xbb\t\U0002cd04", // 𬴄
+ 0x2cd05: "\xbb\n\U0002cd05", // 𬴅
+ 0x2cd06: "\xbb\v\U0002cd06", // 𬴆
+ 0x2cd07: "\xbb\v\U0002cd07", // 𬴇
+ 0x2cd08: "\xbb\v\U0002cd08", // 𬴈
+ 0x2cd09: "\xbb\f\U0002cd09", // 𬴉
+ 0x2cd0a: "\xbb\f\U0002cd0a", // 𬴊
+ 0x2cd0b: "\xbb\r\U0002cd0b", // 𬴋
+ 0x2cd0c: "\xbb\x0e\U0002cd0c", // 𬴌
+ 0x2cd0d: "\xbb\x0f\U0002cd0d", // 𬴍
+ 0x2cd0e: "\xbb\x10\U0002cd0e", // 𬴎
+ 0x2cd0f: "\xbb\x11\U0002cd0f", // 𬴏
+ 0x2cd10: "\xbb\x12\U0002cd10", // 𬴐
+ 0x2cd11: "\xbc\a\U0002cd11", // 𬴑
+ 0x2cd12: "\xbc\a\U0002cd12", // 𬴒
+ 0x2cd13: "\xbc\x10\U0002cd13", // 𬴓
+ 0x2cd14: "\xbd\x02\U0002cd14", // 𬴔
+ 0x2cd15: "\xbd\x04\U0002cd15", // 𬴕
+ 0x2cd16: "\xbd\x06\U0002cd16", // 𬴖
+ 0x2cd17: "\xbd\x06\U0002cd17", // 𬴗
+ 0x2cd18: "\xbd\a\U0002cd18", // 𬴘
+ 0x2cd19: "\xbd\b\U0002cd19", // 𬴙
+ 0x2cd1a: "\xbd\b\U0002cd1a", // 𬴚
+ 0x2cd1b: "\xbd\n\U0002cd1b", // 𬴛
+ 0x2cd1c: "\xbd\v\U0002cd1c", // 𬴜
+ 0x2cd1d: "\xbd\f\U0002cd1d", // 𬴝
+ 0x2cd1e: "\xbd\f\U0002cd1e", // 𬴞
+ 0x2cd1f: "\xbd\f\U0002cd1f", // 𬴟
+ 0x2cd20: "\xbd\r\U0002cd20", // 𬴠
+ 0x2cd21: "\xbd\x0e\U0002cd21", // 𬴡
+ 0x2cd22: "\xbd\x0f\U0002cd22", // 𬴢
+ 0x2cd23: "\xbd\x10\U0002cd23", // 𬴣
+ 0x2cd24: "\xbd\x13\U0002cd24", // 𬴤
+ 0x2cd25: "\xbd\x13\U0002cd25", // 𬴥
+ 0x2cd26: "\xbd\x14\U0002cd26", // 𬴦
+ 0x2cd27: "\xbe\x04\U0002cd27", // 𬴧
+ 0x2cd28: "\xbe\x06\U0002cd28", // 𬴨
+ 0x2cd29: "\xbe\x06\U0002cd29", // 𬴩
+ 0x2cd2a: "\xbe\a\U0002cd2a", // 𬴪
+ 0x2cd2b: "\xbe\b\U0002cd2b", // 𬴫
+ 0x2cd2c: "\xbe\b\U0002cd2c", // 𬴬
+ 0x2cd2d: "\xbe\t\U0002cd2d", // 𬴭
+ 0x2cd2e: "\xbe\t\U0002cd2e", // 𬴮
+ 0x2cd2f: "\xbe\r\U0002cd2f", // 𬴯
+ 0x2cd30: "\xbf\b\U0002cd30", // 𬴰
+ 0x2cd31: "\xbf\x0f\U0002cd31", // 𬴱
+ 0x2cd32: "\xc1\x02\U0002cd32", // 𬴲
+ 0x2cd33: "\xc1\x03\U0002cd33", // 𬴳
+ 0x2cd34: "\xc1\x05\U0002cd34", // 𬴴
+ 0x2cd35: "\xc1\x06\U0002cd35", // 𬴵
+ 0x2cd36: "\xc1\a\U0002cd36", // 𬴶
+ 0x2cd37: "\xc1\t\U0002cd37", // 𬴷
+ 0x2cd38: "\xc1\f\U0002cd38", // 𬴸
+ 0x2cd39: "\xc1\x0e\U0002cd39", // 𬴹
+ 0x2cd3a: "\xc1\x0f\U0002cd3a", // 𬴺
+ 0x2cd3b: "\xc1\x14\U0002cd3b", // 𬴻
+ 0x2cd3c: "\xc1\x14\U0002cd3c", // 𬴼
+ 0x2cd3d: "\xc2\x02\U0002cd3d", // 𬴽
+ 0x2cd3e: "\xc2\x03\U0002cd3e", // 𬴾
+ 0x2cd3f: "\xc2\x06\U0002cd3f", // 𬴿
+ 0x2cd40: "\xc2\a\U0002cd40", // 𬵀
+ 0x2cd41: "\xc3\x02\U0002cd41", // 𬵁
+ 0x2cd42: "\xc3\x02\U0002cd42", // 𬵂
+ 0x2cd43: "\xc3\x03\U0002cd43", // 𬵃
+ 0x2cd44: "\xc3\x03\U0002cd44", // 𬵄
+ 0x2cd45: "\xc3\x04\U0002cd45", // 𬵅
+ 0x2cd46: "\xc3\x04\U0002cd46", // 𬵆
+ 0x2cd47: "\xc3\x05\U0002cd47", // 𬵇
+ 0x2cd48: "\xc3\x05\U0002cd48", // 𬵈
+ 0x2cd49: "\xc3\x05\U0002cd49", // 𬵉
+ 0x2cd4a: "\xc3\x05\U0002cd4a", // 𬵊
+ 0x2cd4b: "\xc3\x05\U0002cd4b", // 𬵋
+ 0x2cd4c: "\xc3\x05\U0002cd4c", // 𬵌
+ 0x2cd4d: "\xc3\x06\U0002cd4d", // 𬵍
+ 0x2cd4e: "\xc3\x06\U0002cd4e", // 𬵎
+ 0x2cd4f: "\xc3\x06\U0002cd4f", // 𬵏
+ 0x2cd50: "\xc3\x06\U0002cd50", // 𬵐
+ 0x2cd51: "\xc3\x06\U0002cd51", // 𬵑
+ 0x2cd52: "\xc3\a\U0002cd52", // 𬵒
+ 0x2cd53: "\xc3\a\U0002cd53", // 𬵓
+ 0x2cd54: "\xc3\a\U0002cd54", // 𬵔
+ 0x2cd55: "\xc3\a\U0002cd55", // 𬵕
+ 0x2cd56: "\xc3\a\U0002cd56", // 𬵖
+ 0x2cd57: "\xc3\b\U0002cd57", // 𬵗
+ 0x2cd58: "\xc3\b\U0002cd58", // 𬵘
+ 0x2cd59: "\xc3\b\U0002cd59", // 𬵙
+ 0x2cd5a: "\xc3\b\U0002cd5a", // 𬵚
+ 0x2cd5b: "\xc3\b\U0002cd5b", // 𬵛
+ 0x2cd5c: "\xc3\t\U0002cd5c", // 𬵜
+ 0x2cd5d: "\xc3\t\U0002cd5d", // 𬵝
+ 0x2cd5e: "\xc3\t\U0002cd5e", // 𬵞
+ 0x2cd5f: "\xc3\t\U0002cd5f", // 𬵟
+ 0x2cd60: "\xc3\n\U0002cd60", // 𬵠
+ 0x2cd61: "\xc3\n\U0002cd61", // 𬵡
+ 0x2cd62: "\xc3\n\U0002cd62", // 𬵢
+ 0x2cd63: "\xc3\n\U0002cd63", // 𬵣
+ 0x2cd64: "\xc3\v\U0002cd64", // 𬵤
+ 0x2cd65: "\xc3\v\U0002cd65", // 𬵥
+ 0x2cd66: "\xc3\v\U0002cd66", // 𬵦
+ 0x2cd67: "\xc3\v\U0002cd67", // 𬵧
+ 0x2cd68: "\xc3\v\U0002cd68", // 𬵨
+ 0x2cd69: "\xc3\v\U0002cd69", // 𬵩
+ 0x2cd6a: "\xc3\f\U0002cd6a", // 𬵪
+ 0x2cd6b: "\xc3\f\U0002cd6b", // 𬵫
+ 0x2cd6c: "\xc3\f\U0002cd6c", // 𬵬
+ 0x2cd6d: "\xc3\f\U0002cd6d", // 𬵭
+ 0x2cd6e: "\xc3\r\U0002cd6e", // 𬵮
+ 0x2cd6f: "\xc3\r\U0002cd6f", // 𬵯
+ 0x2cd70: "\xc3\r\U0002cd70", // 𬵰
+ 0x2cd71: "\xc3\r\U0002cd71", // 𬵱
+ 0x2cd72: "\xc3\x0e\U0002cd72", // 𬵲
+ 0x2cd73: "\xc3\x0e\U0002cd73", // 𬵳
+ 0x2cd74: "\xc3\x0e\U0002cd74", // 𬵴
+ 0x2cd75: "\xc3\x0e\U0002cd75", // 𬵵
+ 0x2cd76: "\xc3\x0f\U0002cd76", // 𬵶
+ 0x2cd77: "\xc3\x10\U0002cd77", // 𬵷
+ 0x2cd78: "\xc3\x10\U0002cd78", // 𬵸
+ 0x2cd79: "\xc3\x10\U0002cd79", // 𬵹
+ 0x2cd7a: "\xc3\x11\U0002cd7a", // 𬵺
+ 0x2cd7b: "\xc3\x12\U0002cd7b", // 𬵻
+ 0x2cd7c: "\xc3\x12\U0002cd7c", // 𬵼
+ 0x2cd7d: "\xc3\x13\U0002cd7d", // 𬵽
+ 0x2cd7e: "\xc3\x13\U0002cd7e", // 𬵾
+ 0x2cd7f: "\xc3\x15\U0002cd7f", // 𬵿
+ 0x2cd80: "\xc3\x02\U0002cd80", // 𬶀
+ 0x2cd81: "\xc3\x02\U0002cd81", // 𬶁
+ 0x2cd82: "\xc3\x03\U0002cd82", // 𬶂
+ 0x2cd83: "\xc3\x03\U0002cd83", // 𬶃
+ 0x2cd84: "\xc3\x03\U0002cd84", // 𬶄
+ 0x2cd85: "\xc3\x04\U0002cd85", // 𬶅
+ 0x2cd86: "\xc3\x04\U0002cd86", // 𬶆
+ 0x2cd87: "\xc3\x04\U0002cd87", // 𬶇
+ 0x2cd88: "\xc3\x04\U0002cd88", // 𬶈
+ 0x2cd89: "\xc3\x04\U0002cd89", // 𬶉
+ 0x2cd8a: "\xc3\x05\U0002cd8a", // 𬶊
+ 0x2cd8b: "\xc3\x05\U0002cd8b", // 𬶋
+ 0x2cd8c: "\xc3\x05\U0002cd8c", // 𬶌
+ 0x2cd8d: "\xc3\x05\U0002cd8d", // 𬶍
+ 0x2cd8e: "\xc3\x06\U0002cd8e", // 𬶎
+ 0x2cd8f: "\xc3\x06\U0002cd8f", // 𬶏
+ 0x2cd90: "\xc3\x06\U0002cd90", // 𬶐
+ 0x2cd91: "\xc3\a\U0002cd91", // 𬶑
+ 0x2cd92: "\xc3\a\U0002cd92", // 𬶒
+ 0x2cd93: "\xc3\a\U0002cd93", // 𬶓
+ 0x2cd94: "\xc3\a\U0002cd94", // 𬶔
+ 0x2cd95: "\xc3\a\U0002cd95", // 𬶕
+ 0x2cd96: "\xc3\b\U0002cd96", // 𬶖
+ 0x2cd97: "\xc3\b\U0002cd97", // 𬶗
+ 0x2cd98: "\xc3\t\U0002cd98", // 𬶘
+ 0x2cd99: "\xc3\b\U0002cd99", // 𬶙
+ 0x2cd9a: "\xc3\b\U0002cd9a", // 𬶚
+ 0x2cd9b: "\xc3\b\U0002cd9b", // 𬶛
+ 0x2cd9c: "\xc3\b\U0002cd9c", // 𬶜
+ 0x2cd9d: "\xc3\b\U0002cd9d", // 𬶝
+ 0x2cd9e: "\xc3\t\U0002cd9e", // 𬶞
+ 0x2cd9f: "\xc3\t\U0002cd9f", // 𬶟
+ 0x2cda0: "\xc3\t\U0002cda0", // 𬶠
+ 0x2cda1: "\xc3\t\U0002cda1", // 𬶡
+ 0x2cda2: "\xc3\t\U0002cda2", // 𬶢
+ 0x2cda3: "\xc3\t\U0002cda3", // 𬶣
+ 0x2cda4: "\xc3\t\U0002cda4", // 𬶤
+ 0x2cda5: "\xc3\t\U0002cda5", // 𬶥
+ 0x2cda6: "\xc3\t\U0002cda6", // 𬶦
+ 0x2cda7: "\xc3\t\U0002cda7", // 𬶧
+ 0x2cda8: "\xc3\t\U0002cda8", // 𬶨
+ 0x2cda9: "\xc3\n\U0002cda9", // 𬶩
+ 0x2cdaa: "\xc3\n\U0002cdaa", // 𬶪
+ 0x2cdab: "\xc3\v\U0002cdab", // 𬶫
+ 0x2cdac: "\xc3\v\U0002cdac", // 𬶬
+ 0x2cdad: "\xc3\v\U0002cdad", // 𬶭
+ 0x2cdae: "\xc3\f\U0002cdae", // 𬶮
+ 0x2cdaf: "\xc3\f\U0002cdaf", // 𬶯
+ 0x2cdb0: "\xc3\f\U0002cdb0", // 𬶰
+ 0x2cdb1: "\xc3\f\U0002cdb1", // 𬶱
+ 0x2cdb2: "\xc3\f\U0002cdb2", // 𬶲
+ 0x2cdb3: "\xc3\f\U0002cdb3", // 𬶳
+ 0x2cdb4: "\xc3\f\U0002cdb4", // 𬶴
+ 0x2cdb5: "\xc3\r\U0002cdb5", // 𬶵
+ 0x2cdb6: "\xc3\r\U0002cdb6", // 𬶶
+ 0x2cdb7: "\xc3\x0e\U0002cdb7", // 𬶷
+ 0x2cdb8: "\xc3\x0f\U0002cdb8", // 𬶸
+ 0x2cdb9: "\xc3\x10\U0002cdb9", // 𬶹
+ 0x2cdba: "\xc3\x12\U0002cdba", // 𬶺
+ 0x2cdbb: "\xc3\x15\U0002cdbb", // 𬶻
+ 0x2cdbc: "\xc4\x02\U0002cdbc", // 𬶼
+ 0x2cdbd: "\xc4\x03\U0002cdbd", // 𬶽
+ 0x2cdbe: "\xc4\x03\U0002cdbe", // 𬶾
+ 0x2cdbf: "\xc4\x03\U0002cdbf", // 𬶿
+ 0x2cdc0: "\xc4\x04\U0002cdc0", // 𬷀
+ 0x2cdc1: "\xc4\x04\U0002cdc1", // 𬷁
+ 0x2cdc2: "\xc4\x04\U0002cdc2", // 𬷂
+ 0x2cdc3: "\xc4\x04\U0002cdc3", // 𬷃
+ 0x2cdc4: "\xc4\x04\U0002cdc4", // 𬷄
+ 0x2cdc5: "\xc4\x05\U0002cdc5", // 𬷅
+ 0x2cdc6: "\xc4\x05\U0002cdc6", // 𬷆
+ 0x2cdc7: "\xc4\x05\U0002cdc7", // 𬷇
+ 0x2cdc8: "\xc4\x05\U0002cdc8", // 𬷈
+ 0x2cdc9: "\xc4\x05\U0002cdc9", // 𬷉
+ 0x2cdca: "\xc4\x05\U0002cdca", // 𬷊
+ 0x2cdcb: "\xc4\x05\U0002cdcb", // 𬷋
+ 0x2cdcc: "\xc4\x05\U0002cdcc", // 𬷌
+ 0x2cdcd: "\xc4\x06\U0002cdcd", // 𬷍
+ 0x2cdce: "\xc4\x06\U0002cdce", // 𬷎
+ 0x2cdcf: "\xc4\x06\U0002cdcf", // 𬷏
+ 0x2cdd0: "\xc4\x06\U0002cdd0", // 𬷐
+ 0x2cdd1: "\xc4\x06\U0002cdd1", // 𬷑
+ 0x2cdd2: "\xc4\x06\U0002cdd2", // 𬷒
+ 0x2cdd3: "\xc4\a\U0002cdd3", // 𬷓
+ 0x2cdd4: "\xc4\a\U0002cdd4", // 𬷔
+ 0x2cdd5: "\xc4\a\U0002cdd5", // 𬷕
+ 0x2cdd6: "\xc4\a\U0002cdd6", // 𬷖
+ 0x2cdd7: "\xc4\a\U0002cdd7", // 𬷗
+ 0x2cdd8: "\xc4\a\U0002cdd8", // 𬷘
+ 0x2cdd9: "\xc4\a\U0002cdd9", // 𬷙
+ 0x2cdda: "\xc4\a\U0002cdda", // 𬷚
+ 0x2cddb: "\xc4\a\U0002cddb", // 𬷛
+ 0x2cddc: "\xc4\b\U0002cddc", // 𬷜
+ 0x2cddd: "\xc4\b\U0002cddd", // 𬷝
+ 0x2cdde: "\xc4\b\U0002cdde", // 𬷞
+ 0x2cddf: "\xc4\b\U0002cddf", // 𬷟
+ 0x2cde0: "\xc4\b\U0002cde0", // 𬷠
+ 0x2cde1: "\xc4\b\U0002cde1", // 𬷡
+ 0x2cde2: "\xc4\t\U0002cde2", // 𬷢
+ 0x2cde3: "\xc4\t\U0002cde3", // 𬷣
+ 0x2cde4: "\xc4\t\U0002cde4", // 𬷤
+ 0x2cde5: "\xc4\t\U0002cde5", // 𬷥
+ 0x2cde6: "\xc4\t\U0002cde6", // 𬷦
+ 0x2cde7: "\xc4\t\U0002cde7", // 𬷧
+ 0x2cde8: "\xc4\n\U0002cde8", // 𬷨
+ 0x2cde9: "\xc4\n\U0002cde9", // 𬷩
+ 0x2cdea: "\xc4\n\U0002cdea", // 𬷪
+ 0x2cdeb: "\xc4\n\U0002cdeb", // 𬷫
+ 0x2cdec: "\xc4\n\U0002cdec", // 𬷬
+ 0x2cded: "\xc4\n\U0002cded", // 𬷭
+ 0x2cdee: "\xc4\v\U0002cdee", // 𬷮
+ 0x2cdef: "\xc4\v\U0002cdef", // 𬷯
+ 0x2cdf0: "\xc4\v\U0002cdf0", // 𬷰
+ 0x2cdf1: "\xc4\f\U0002cdf1", // 𬷱
+ 0x2cdf2: "\xc4\f\U0002cdf2", // 𬷲
+ 0x2cdf3: "\xc4\f\U0002cdf3", // 𬷳
+ 0x2cdf4: "\xc4\r\U0002cdf4", // 𬷴
+ 0x2cdf5: "\xc4\r\U0002cdf5", // 𬷵
+ 0x2cdf6: "\xc4\r\U0002cdf6", // 𬷶
+ 0x2cdf7: "\xc4\x0e\U0002cdf7", // 𬷷
+ 0x2cdf8: "\xc4\x0f\U0002cdf8", // 𬷸
+ 0x2cdf9: "\xc4\x10\U0002cdf9", // 𬷹
+ 0x2cdfa: "\xc4\x14\U0002cdfa", // 𬷺
+ 0x2cdfb: "\xc4\x01\U0002cdfb", // 𬷻
+ 0x2cdfc: "\xc4\x02\U0002cdfc", // 𬷼
+ 0x2cdfd: "\xc4\x02\U0002cdfd", // 𬷽
+ 0x2cdfe: "\xc4\x03\U0002cdfe", // 𬷾
+ 0x2cdff: "\xc4\x04\U0002cdff", // 𬷿
+ 0x2ce00: "\xc4\x04\U0002ce00", // 𬸀
+ 0x2ce01: "\xc4\x05\U0002ce01", // 𬸁
+ 0x2ce02: "\xc4\x05\U0002ce02", // 𬸂
+ 0x2ce03: "\xc4\x05\U0002ce03", // 𬸃
+ 0x2ce04: "\xc4\x05\U0002ce04", // 𬸄
+ 0x2ce05: "\xc4\x05\U0002ce05", // 𬸅
+ 0x2ce06: "\xc4\x05\U0002ce06", // 𬸆
+ 0x2ce07: "\xc4\x05\U0002ce07", // 𬸇
+ 0x2ce08: "\xc4\x06\U0002ce08", // 𬸈
+ 0x2ce09: "\xc4\x06\U0002ce09", // 𬸉
+ 0x2ce0a: "\xc4\x06\U0002ce0a", // 𬸊
+ 0x2ce0b: "\xc4\x06\U0002ce0b", // 𬸋
+ 0x2ce0c: "\xc4\x06\U0002ce0c", // 𬸌
+ 0x2ce0d: "\xc4\a\U0002ce0d", // 𬸍
+ 0x2ce0e: "\xc4\a\U0002ce0e", // 𬸎
+ 0x2ce0f: "\xc4\a\U0002ce0f", // 𬸏
+ 0x2ce10: "\xc4\a\U0002ce10", // 𬸐
+ 0x2ce11: "\xc4\a\U0002ce11", // 𬸑
+ 0x2ce12: "\xc4\b\U0002ce12", // 𬸒
+ 0x2ce13: "\xc4\b\U0002ce13", // 𬸓
+ 0x2ce14: "\xc4\b\U0002ce14", // 𬸔
+ 0x2ce15: "\xc4\b\U0002ce15", // 𬸕
+ 0x2ce16: "\xc4\b\U0002ce16", // 𬸖
+ 0x2ce17: "\xc4\b\U0002ce17", // 𬸗
+ 0x2ce18: "\xc4\t\U0002ce18", // 𬸘
+ 0x2ce19: "\xc4\t\U0002ce19", // 𬸙
+ 0x2ce1a: "\xc4\t\U0002ce1a", // 𬸚
+ 0x2ce1b: "\xc4\t\U0002ce1b", // 𬸛
+ 0x2ce1c: "\xc4\t\U0002ce1c", // 𬸜
+ 0x2ce1d: "\xc4\t\U0002ce1d", // 𬸝
+ 0x2ce1e: "\xc4\t\U0002ce1e", // 𬸞
+ 0x2ce1f: "\xc4\t\U0002ce1f", // 𬸟
+ 0x2ce20: "\xc4\n\U0002ce20", // 𬸠
+ 0x2ce21: "\xc4\n\U0002ce21", // 𬸡
+ 0x2ce22: "\xc4\n\U0002ce22", // 𬸢
+ 0x2ce23: "\xc4\n\U0002ce23", // 𬸣
+ 0x2ce24: "\xc4\v\U0002ce24", // 𬸤
+ 0x2ce25: "\xc4\v\U0002ce25", // 𬸥
+ 0x2ce26: "\xc4\v\U0002ce26", // 𬸦
+ 0x2ce27: "\xc4\f\U0002ce27", // 𬸧
+ 0x2ce28: "\xc4\f\U0002ce28", // 𬸨
+ 0x2ce29: "\xc4\f\U0002ce29", // 𬸩
+ 0x2ce2a: "\xc4\f\U0002ce2a", // 𬸪
+ 0x2ce2b: "\xc4\f\U0002ce2b", // 𬸫
+ 0x2ce2c: "\xc4\r\U0002ce2c", // 𬸬
+ 0x2ce2d: "\xc4\r\U0002ce2d", // 𬸭
+ 0x2ce2e: "\xc4\r\U0002ce2e", // 𬸮
+ 0x2ce2f: "\xc4\r\U0002ce2f", // 𬸯
+ 0x2ce30: "\xc4\x10\U0002ce30", // 𬸰
+ 0x2ce31: "\xc4\x12\U0002ce31", // 𬸱
+ 0x2ce32: "\xc5\x04\U0002ce32", // 𬸲
+ 0x2ce33: "\xc5\a\U0002ce33", // 𬸳
+ 0x2ce34: "\xc5\r\U0002ce34", // 𬸴
+ 0x2ce35: "\xc5\x05\U0002ce35", // 𬸵
+ 0x2ce36: "\xc5\b\U0002ce36", // 𬸶
+ 0x2ce37: "\xc5\t\U0002ce37", // 𬸷
+ 0x2ce38: "\xc5\t\U0002ce38", // 𬸸
+ 0x2ce39: "\xc5\v\U0002ce39", // 𬸹
+ 0x2ce3a: "\xc6\x01\U0002ce3a", // 𬸺
+ 0x2ce3b: "\xc6\x04\U0002ce3b", // 𬸻
+ 0x2ce3c: "\xc6\x05\U0002ce3c", // 𬸼
+ 0x2ce3d: "\xc6\x06\U0002ce3d", // 𬸽
+ 0x2ce3e: "\xc6\x06\U0002ce3e", // 𬸾
+ 0x2ce3f: "\xc6\b\U0002ce3f", // 𬸿
+ 0x2ce40: "\xc6\n\U0002ce40", // 𬹀
+ 0x2ce41: "\xc6\v\U0002ce41", // 𬹁
+ 0x2ce42: "\xc7\x06\U0002ce42", // 𬹂
+ 0x2ce43: "\xc7\b\U0002ce43", // 𬹃
+ 0x2ce44: "\xc7\f\U0002ce44", // 𬹄
+ 0x2ce45: "\xc7\x03\U0002ce45", // 𬹅
+ 0x2ce46: "\xc7\x06\U0002ce46", // 𬹆
+ 0x2ce47: "\xc7\a\U0002ce47", // 𬹇
+ 0x2ce48: "\xc7\a\U0002ce48", // 𬹈
+ 0x2ce49: "\xc7\a\U0002ce49", // 𬹉
+ 0x2ce4a: "\xc7\b\U0002ce4a", // 𬹊
+ 0x2ce4b: "\xc7\b\U0002ce4b", // 𬹋
+ 0x2ce4c: "\xc7\b\U0002ce4c", // 𬹌
+ 0x2ce4d: "\xc7\v\U0002ce4d", // 𬹍
+ 0x2ce4e: "\xc7\f\U0002ce4e", // 𬹎
+ 0x2ce4f: "\xc8\a\U0002ce4f", // 𬹏
+ 0x2ce50: "\xc9\x03\U0002ce50", // 𬹐
+ 0x2ce51: "\xc9\a\U0002ce51", // 𬹑
+ 0x2ce52: "\xc9\n\U0002ce52", // 𬹒
+ 0x2ce53: "\xc9\v\U0002ce53", // 𬹓
+ 0x2ce54: "\xca\x04\U0002ce54", // 𬹔
+ 0x2ce55: "\xcb\x06\U0002ce55", // 𬹕
+ 0x2ce56: "\xcb\x06\U0002ce56", // 𬹖
+ 0x2ce57: "\xcb\a\U0002ce57", // 𬹗
+ 0x2ce58: "\xcb\t\U0002ce58", // 𬹘
+ 0x2ce59: "\xcb\n\U0002ce59", // 𬹙
+ 0x2ce5a: "\xcb\n\U0002ce5a", // 𬹚
+ 0x2ce5b: "\xcb\x0f\U0002ce5b", // 𬹛
+ 0x2ce5c: "\xcc\v\U0002ce5c", // 𬹜
+ 0x2ce5d: "\xcd\x02\U0002ce5d", // 𬹝
+ 0x2ce5e: "\xcd\x03\U0002ce5e", // 𬹞
+ 0x2ce5f: "\xcd\x05\U0002ce5f", // 𬹟
+ 0x2ce60: "\xcd\a\U0002ce60", // 𬹠
+ 0x2ce61: "\xcd\a\U0002ce61", // 𬹡
+ 0x2ce62: "\xcd\b\U0002ce62", // 𬹢
+ 0x2ce63: "\xcd\x06\U0002ce63", // 𬹣
+ 0x2ce64: "\xcd\b\U0002ce64", // 𬹤
+ 0x2ce65: "\xce\x03\U0002ce65", // 𬹥
+ 0x2ce66: "\xce\x04\U0002ce66", // 𬹦
+ 0x2ce67: "\xce\x04\U0002ce67", // 𬹧
+ 0x2ce68: "\xce\x05\U0002ce68", // 𬹨
+ 0x2ce69: "\xce\t\U0002ce69", // 𬹩
+ 0x2ce6a: "\xce\n\U0002ce6a", // 𬹪
+ 0x2ce6b: "\xce\v\U0002ce6b", // 𬹫
+ 0x2ce6c: "\xce\x11\U0002ce6c", // 𬹬
+ 0x2ce6d: "\xd0\x05\U0002ce6d", // 𬹭
+ 0x2ce6e: "\xd0\b\U0002ce6e", // 𬹮
+ 0x2ce6f: "\xd1\x06\U0002ce6f", // 𬹯
+ 0x2ce70: "\xd1\b\U0002ce70", // 𬹰
+ 0x2ce71: "\xd2\x00\U0002ce71", // 𬹱
+ 0x2ce72: "\xd2\x05\U0002ce72", // 𬹲
+ 0x2ce73: "\xd2\x04\U0002ce73", // 𬹳
+ 0x2ce74: "\xd3\x05\U0002ce74", // 𬹴
+ 0x2ce75: "\xd3\x06\U0002ce75", // 𬹵
+ 0x2ce76: "\xd3\x06\U0002ce76", // 𬹶
+ 0x2ce77: "\xd3\x06\U0002ce77", // 𬹷
+ 0x2ce78: "\xd3\f\U0002ce78", // 𬹸
+ 0x2ce79: "\xd3\x10\U0002ce79", // 𬹹
+ 0x2ce7a: "\xd3\x04\U0002ce7a", // 𬹺
+ 0x2ce7b: "\xd3\x04\U0002ce7b", // 𬹻
+ 0x2ce7c: "\xd3\x04\U0002ce7c", // 𬹼
+ 0x2ce7d: "\xd3\x04\U0002ce7d", // 𬹽
+ 0x2ce7e: "\xd3\x05\U0002ce7e", // 𬹾
+ 0x2ce7f: "\xd3\x05\U0002ce7f", // 𬹿
+ 0x2ce80: "\xd3\x05\U0002ce80", // 𬺀
+ 0x2ce81: "\xd3\x06\U0002ce81", // 𬺁
+ 0x2ce82: "\xd3\x06\U0002ce82", // 𬺂
+ 0x2ce83: "\xd3\x06\U0002ce83", // 𬺃
+ 0x2ce84: "\xd3\x06\U0002ce84", // 𬺄
+ 0x2ce85: "\xd3\x06\U0002ce85", // 𬺅
+ 0x2ce86: "\xd3\a\U0002ce86", // 𬺆
+ 0x2ce87: "\xd3\a\U0002ce87", // 𬺇
+ 0x2ce88: "\xd3\b\U0002ce88", // 𬺈
+ 0x2ce89: "\xd3\b\U0002ce89", // 𬺉
+ 0x2ce8a: "\xd3\b\U0002ce8a", // 𬺊
+ 0x2ce8b: "\xd3\b\U0002ce8b", // 𬺋
+ 0x2ce8c: "\xd3\b\U0002ce8c", // 𬺌
+ 0x2ce8d: "\xd3\t\U0002ce8d", // 𬺍
+ 0x2ce8e: "\xd3\t\U0002ce8e", // 𬺎
+ 0x2ce8f: "\xd3\n\U0002ce8f", // 𬺏
+ 0x2ce90: "\xd3\n\U0002ce90", // 𬺐
+ 0x2ce91: "\xd3\n\U0002ce91", // 𬺑
+ 0x2ce92: "\xd3\v\U0002ce92", // 𬺒
+ 0x2ce93: "\xd3\r\U0002ce93", // 𬺓
+ 0x2ce94: "\xd3\r\U0002ce94", // 𬺔
+ 0x2ce95: "\xd3\x0e\U0002ce95", // 𬺕
+ 0x2ce96: "\xd3\x11\U0002ce96", // 𬺖
+ 0x2ce97: "\xd4\x03\U0002ce97", // 𬺗
+ 0x2ce98: "\xd4\x03\U0002ce98", // 𬺘
+ 0x2ce99: "\xd4\a\U0002ce99", // 𬺙
+ 0x2ce9a: "\xd4\b\U0002ce9a", // 𬺚
+ 0x2ce9b: "\xd4\x03\U0002ce9b", // 𬺛
+ 0x2ce9c: "\xd4\x04\U0002ce9c", // 𬺜
+ 0x2ce9d: "\xd4\v\U0002ce9d", // 𬺝
+ 0x2ce9e: "\xd5\x00\U0002ce9e", // 𬺞
+ 0x2ce9f: "\xd6\x04\U0002ce9f", // 𬺟
+ 0x2cea0: "\xd6\b\U0002cea0", // 𬺠
+ 0x2cea1: "\xd6\f\U0002cea1", // 𬺡
+ 0x2ceb0: "\x01\x01\U0002ceb0", // 𬺰
+ 0x2ceb1: "\x01\x02\U0002ceb1", // 𬺱
+ 0x2ceb2: "\x01\x02\U0002ceb2", // 𬺲
+ 0x2ceb3: "\x01\x02\U0002ceb3", // 𬺳
+ 0x2ceb4: "\x01\x02\U0002ceb4", // 𬺴
+ 0x2ceb5: "\x01\x03\U0002ceb5", // 𬺵
+ 0x2ceb6: "\x01\x03\U0002ceb6", // 𬺶
+ 0x2ceb7: "\x01\x03\U0002ceb7", // 𬺷
+ 0x2ceb8: "\x01\x03\U0002ceb8", // 𬺸
+ 0x2ceb9: "\x01\x03\U0002ceb9", // 𬺹
+ 0x2ceba: "\x01\x04\U0002ceba", // 𬺺
+ 0x2cebb: "\x01\x04\U0002cebb", // 𬺻
+ 0x2cebc: "\x01\x04\U0002cebc", // 𬺼
+ 0x2cebd: "\x01\x04\U0002cebd", // 𬺽
+ 0x2cebe: "\x01\x04\U0002cebe", // 𬺾
+ 0x2cebf: "\x01\x05\U0002cebf", // 𬺿
+ 0x2cec0: "\x01\x05\U0002cec0", // 𬻀
+ 0x2cec1: "\x01\x05\U0002cec1", // 𬻁
+ 0x2cec2: "\x01\x05\U0002cec2", // 𬻂
+ 0x2cec3: "\x01\x05\U0002cec3", // 𬻃
+ 0x2cec4: "\x01\x05\U0002cec4", // 𬻄
+ 0x2cec5: "\x01\x05\U0002cec5", // 𬻅
+ 0x2cec6: "\x01\x05\U0002cec6", // 𬻆
+ 0x2cec7: "\x01\x05\U0002cec7", // 𬻇
+ 0x2cec8: "\x01\x05\U0002cec8", // 𬻈
+ 0x2cec9: "\x01\x05\U0002cec9", // 𬻉
+ 0x2ceca: "\x01\x06\U0002ceca", // 𬻊
+ 0x2cecb: "\x01\x06\U0002cecb", // 𬻋
+ 0x2cecc: "\x01\x06\U0002cecc", // 𬻌
+ 0x2cecd: "\x01\x06\U0002cecd", // 𬻍
+ 0x2cece: "\x01\x06\U0002cece", // 𬻎
+ 0x2cecf: "\x01\x06\U0002cecf", // 𬻏
+ 0x2ced0: "\x01\x06\U0002ced0", // 𬻐
+ 0x2ced1: "\x01\x06\U0002ced1", // 𬻑
+ 0x2ced2: "\x01\x06\U0002ced2", // 𬻒
+ 0x2ced3: "\x01\a\U0002ced3", // 𬻓
+ 0x2ced4: "\x01\a\U0002ced4", // 𬻔
+ 0x2ced5: "\x01\a\U0002ced5", // 𬻕
+ 0x2ced6: "\x01\a\U0002ced6", // 𬻖
+ 0x2ced7: "\x01\a\U0002ced7", // 𬻗
+ 0x2ced8: "\x01\a\U0002ced8", // 𬻘
+ 0x2ced9: "\x01\b\U0002ced9", // 𬻙
+ 0x2ceda: "\x01\b\U0002ceda", // 𬻚
+ 0x2cedb: "\x01\b\U0002cedb", // 𬻛
+ 0x2cedc: "\x01\b\U0002cedc", // 𬻜
+ 0x2cedd: "\x01\b\U0002cedd", // 𬻝
+ 0x2cede: "\x01\t\U0002cede", // 𬻞
+ 0x2cedf: "\x01\t\U0002cedf", // 𬻟
+ 0x2cee0: "\x01\t\U0002cee0", // 𬻠
+ 0x2cee1: "\x01\n\U0002cee1", // 𬻡
+ 0x2cee2: "\x01\n\U0002cee2", // 𬻢
+ 0x2cee3: "\x01\n\U0002cee3", // 𬻣
+ 0x2cee4: "\x01\n\U0002cee4", // 𬻤
+ 0x2cee5: "\x01\n\U0002cee5", // 𬻥
+ 0x2cee6: "\x01\v\U0002cee6", // 𬻦
+ 0x2cee7: "\x01\v\U0002cee7", // 𬻧
+ 0x2cee8: "\x01\v\U0002cee8", // 𬻨
+ 0x2cee9: "\x01\f\U0002cee9", // 𬻩
+ 0x2ceea: "\x01\f\U0002ceea", // 𬻪
+ 0x2ceeb: "\x01\f\U0002ceeb", // 𬻫
+ 0x2ceec: "\x01\f\U0002ceec", // 𬻬
+ 0x2ceed: "\x01\f\U0002ceed", // 𬻭
+ 0x2ceee: "\x01\f\U0002ceee", // 𬻮
+ 0x2ceef: "\x01\r\U0002ceef", // 𬻯
+ 0x2cef0: "\x01\x0e\U0002cef0", // 𬻰
+ 0x2cef1: "\x01\x15\U0002cef1", // 𬻱
+ 0x2cef2: "\x02\x05\U0002cef2", // 𬻲
+ 0x2cef3: "\x02\x05\U0002cef3", // 𬻳
+ 0x2cef4: "\x02\b\U0002cef4", // 𬻴
+ 0x2cef5: "\x02\t\U0002cef5", // 𬻵
+ 0x2cef6: "\x02\t\U0002cef6", // 𬻶
+ 0x2cef7: "\x02\t\U0002cef7", // 𬻷
+ 0x2cef8: "\x02\f\U0002cef8", // 𬻸
+ 0x2cef9: "\x02\f\U0002cef9", // 𬻹
+ 0x2cefa: "\x03\x02\U0002cefa", // 𬻺
+ 0x2cefb: "\x03\x05\U0002cefb", // 𬻻
+ 0x2cefc: "\x03\b\U0002cefc", // 𬻼
+ 0x2cefd: "\x03\n\U0002cefd", // 𬻽
+ 0x2cefe: "\x03\x0e\U0002cefe", // 𬻾
+ 0x2ceff: "\x04\x01\U0002ceff", // 𬻿
+ 0x2cf00: "\x04\x01\U0002cf00", // 𬼀
+ 0x2cf01: "\x04\x01\U0002cf01", // 𬼁
+ 0x2cf02: "\x04\x01\U0002cf02", // 𬼂
+ 0x2cf03: "\x04\x02\U0002cf03", // 𬼃
+ 0x2cf04: "\x04\x03\U0002cf04", // 𬼄
+ 0x2cf05: "\x04\x03\U0002cf05", // 𬼅
+ 0x2cf06: "\x04\x03\U0002cf06", // 𬼆
+ 0x2cf07: "\x04\x04\U0002cf07", // 𬼇
+ 0x2cf08: "\x04\x04\U0002cf08", // 𬼈
+ 0x2cf09: "\x04\x05\U0002cf09", // 𬼉
+ 0x2cf0a: "\x04\x06\U0002cf0a", // 𬼊
+ 0x2cf0b: "\x04\a\U0002cf0b", // 𬼋
+ 0x2cf0c: "\x04\t\U0002cf0c", // 𬼌
+ 0x2cf0d: "\x04\t\U0002cf0d", // 𬼍
+ 0x2cf0e: "\x04\t\U0002cf0e", // 𬼎
+ 0x2cf0f: "\x04\t\U0002cf0f", // 𬼏
+ 0x2cf10: "\x04\n\U0002cf10", // 𬼐
+ 0x2cf11: "\x04\r\U0002cf11", // 𬼑
+ 0x2cf12: "\x04\x0e\U0002cf12", // 𬼒
+ 0x2cf13: "\x04\x0f\U0002cf13", // 𬼓
+ 0x2cf14: "\x04\x0f\U0002cf14", // 𬼔
+ 0x2cf15: "\x04\x15\U0002cf15", // 𬼕
+ 0x2cf16: "\x05\x02\U0002cf16", // 𬼖
+ 0x2cf17: "\x05\x03\U0002cf17", // 𬼗
+ 0x2cf18: "\x05\x03\U0002cf18", // 𬼘
+ 0x2cf19: "\x05\x04\U0002cf19", // 𬼙
+ 0x2cf1a: "\x05\x04\U0002cf1a", // 𬼚
+ 0x2cf1b: "\x05\x04\U0002cf1b", // 𬼛
+ 0x2cf1c: "\x05\x04\U0002cf1c", // 𬼜
+ 0x2cf1d: "\x05\x05\U0002cf1d", // 𬼝
+ 0x2cf1e: "\x05\x05\U0002cf1e", // 𬼞
+ 0x2cf1f: "\x05\x05\U0002cf1f", // 𬼟
+ 0x2cf20: "\x05\x05\U0002cf20", // 𬼠
+ 0x2cf21: "\x05\x05\U0002cf21", // 𬼡
+ 0x2cf22: "\x05\x05\U0002cf22", // 𬼢
+ 0x2cf23: "\x05\x06\U0002cf23", // 𬼣
+ 0x2cf24: "\x05\x06\U0002cf24", // 𬼤
+ 0x2cf25: "\x05\a\U0002cf25", // 𬼥
+ 0x2cf26: "\x05\a\U0002cf26", // 𬼦
+ 0x2cf27: "\x05\a\U0002cf27", // 𬼧
+ 0x2cf28: "\x05\b\U0002cf28", // 𬼨
+ 0x2cf29: "\x05\b\U0002cf29", // 𬼩
+ 0x2cf2a: "\x05\b\U0002cf2a", // 𬼪
+ 0x2cf2b: "\x05\b\U0002cf2b", // 𬼫
+ 0x2cf2c: "\x05\t\U0002cf2c", // 𬼬
+ 0x2cf2d: "\x05\t\U0002cf2d", // 𬼭
+ 0x2cf2e: "\x05\n\U0002cf2e", // 𬼮
+ 0x2cf2f: "\x05\n\U0002cf2f", // 𬼯
+ 0x2cf30: "\x05\n\U0002cf30", // 𬼰
+ 0x2cf31: "\x05\n\U0002cf31", // 𬼱
+ 0x2cf32: "\x05\v\U0002cf32", // 𬼲
+ 0x2cf33: "\x05\v\U0002cf33", // 𬼳
+ 0x2cf34: "\x05\v\U0002cf34", // 𬼴
+ 0x2cf35: "\x05\f\U0002cf35", // 𬼵
+ 0x2cf36: "\x06\x02\U0002cf36", // 𬼶
+ 0x2cf37: "\x06\x02\U0002cf37", // 𬼷
+ 0x2cf38: "\x06\x02\U0002cf38", // 𬼸
+ 0x2cf39: "\x06\x05\U0002cf39", // 𬼹
+ 0x2cf3a: "\x06\a\U0002cf3a", // 𬼺
+ 0x2cf3b: "\x06\f\U0002cf3b", // 𬼻
+ 0x2cf3c: "\x06\x12\U0002cf3c", // 𬼼
+ 0x2cf3d: "\a\x01\U0002cf3d", // 𬼽
+ 0x2cf3e: "\a\x06\U0002cf3e", // 𬼾
+ 0x2cf3f: "\a\a\U0002cf3f", // 𬼿
+ 0x2cf40: "\a\a\U0002cf40", // 𬽀
+ 0x2cf41: "\a\b\U0002cf41", // 𬽁
+ 0x2cf42: "\a\n\U0002cf42", // 𬽂
+ 0x2cf43: "\b\x03\U0002cf43", // 𬽃
+ 0x2cf44: "\b\x04\U0002cf44", // 𬽄
+ 0x2cf45: "\b\x05\U0002cf45", // 𬽅
+ 0x2cf46: "\b\x05\U0002cf46", // 𬽆
+ 0x2cf47: "\b\x05\U0002cf47", // 𬽇
+ 0x2cf48: "\b\x06\U0002cf48", // 𬽈
+ 0x2cf49: "\b\x06\U0002cf49", // 𬽉
+ 0x2cf4a: "\b\a\U0002cf4a", // 𬽊
+ 0x2cf4b: "\b\a\U0002cf4b", // 𬽋
+ 0x2cf4c: "\b\a\U0002cf4c", // 𬽌
+ 0x2cf4d: "\b\b\U0002cf4d", // 𬽍
+ 0x2cf4e: "\b\t\U0002cf4e", // 𬽎
+ 0x2cf4f: "\b\t\U0002cf4f", // 𬽏
+ 0x2cf50: "\b\t\U0002cf50", // 𬽐
+ 0x2cf51: "\b\t\U0002cf51", // 𬽑
+ 0x2cf52: "\b\t\U0002cf52", // 𬽒
+ 0x2cf53: "\b\n\U0002cf53", // 𬽓
+ 0x2cf54: "\b\n\U0002cf54", // 𬽔
+ 0x2cf55: "\b\v\U0002cf55", // 𬽕
+ 0x2cf56: "\b\v\U0002cf56", // 𬽖
+ 0x2cf57: "\b\v\U0002cf57", // 𬽗
+ 0x2cf58: "\b\v\U0002cf58", // 𬽘
+ 0x2cf59: "\b\r\U0002cf59", // 𬽙
+ 0x2cf5a: "\b\r\U0002cf5a", // 𬽚
+ 0x2cf5b: "\b\x0e\U0002cf5b", // 𬽛
+ 0x2cf5c: "\b\x0e\U0002cf5c", // 𬽜
+ 0x2cf5d: "\b\x0f\U0002cf5d", // 𬽝
+ 0x2cf5e: "\b\x0f\U0002cf5e", // 𬽞
+ 0x2cf5f: "\b\x13\U0002cf5f", // 𬽟
+ 0x2cf60: "\b\x15\U0002cf60", // 𬽠
+ 0x2cf61: "\t\x02\U0002cf61", // 𬽡
+ 0x2cf62: "\t\x02\U0002cf62", // 𬽢
+ 0x2cf63: "\t\x03\U0002cf63", // 𬽣
+ 0x2cf64: "\t\x03\U0002cf64", // 𬽤
+ 0x2cf65: "\t\x03\U0002cf65", // 𬽥
+ 0x2cf66: "\t\x03\U0002cf66", // 𬽦
+ 0x2cf67: "\t\x03\U0002cf67", // 𬽧
+ 0x2cf68: "\t\x03\U0002cf68", // 𬽨
+ 0x2cf69: "\t\x04\U0002cf69", // 𬽩
+ 0x2cf6a: "\t\x04\U0002cf6a", // 𬽪
+ 0x2cf6b: "\t\x04\U0002cf6b", // 𬽫
+ 0x2cf6c: "\t\x04\U0002cf6c", // 𬽬
+ 0x2cf6d: "\t\x04\U0002cf6d", // 𬽭
+ 0x2cf6e: "\t\x05\U0002cf6e", // 𬽮
+ 0x2cf6f: "\t\x05\U0002cf6f", // 𬽯
+ 0x2cf70: "\t\x05\U0002cf70", // 𬽰
+ 0x2cf71: "\t\x05\U0002cf71", // 𬽱
+ 0x2cf72: "\t\x05\U0002cf72", // 𬽲
+ 0x2cf73: "\t\x05\U0002cf73", // 𬽳
+ 0x2cf74: "\t\x05\U0002cf74", // 𬽴
+ 0x2cf75: "\t\x05\U0002cf75", // 𬽵
+ 0x2cf76: "\t\x05\U0002cf76", // 𬽶
+ 0x2cf77: "\t\x05\U0002cf77", // 𬽷
+ 0x2cf78: "\t\x05\U0002cf78", // 𬽸
+ 0x2cf79: "\t\x05\U0002cf79", // 𬽹
+ 0x2cf7a: "\t\x05\U0002cf7a", // 𬽺
+ 0x2cf7b: "\t\x06\U0002cf7b", // 𬽻
+ 0x2cf7c: "\t\x06\U0002cf7c", // 𬽼
+ 0x2cf7d: "\t\x06\U0002cf7d", // 𬽽
+ 0x2cf7e: "\t\x06\U0002cf7e", // 𬽾
+ 0x2cf7f: "\t\x06\U0002cf7f", // 𬽿
+ 0x2cf80: "\t\x06\U0002cf80", // 𬾀
+ 0x2cf81: "\t\x06\U0002cf81", // 𬾁
+ 0x2cf82: "\t\x06\U0002cf82", // 𬾂
+ 0x2cf83: "\t\x06\U0002cf83", // 𬾃
+ 0x2cf84: "\t\x06\U0002cf84", // 𬾄
+ 0x2cf85: "\t\a\U0002cf85", // 𬾅
+ 0x2cf86: "\t\a\U0002cf86", // 𬾆
+ 0x2cf87: "\t\a\U0002cf87", // 𬾇
+ 0x2cf88: "\t\a\U0002cf88", // 𬾈
+ 0x2cf89: "\t\a\U0002cf89", // 𬾉
+ 0x2cf8a: "\t\a\U0002cf8a", // 𬾊
+ 0x2cf8b: "\t\a\U0002cf8b", // 𬾋
+ 0x2cf8c: "\t\a\U0002cf8c", // 𬾌
+ 0x2cf8d: "\t\a\U0002cf8d", // 𬾍
+ 0x2cf8e: "\t\a\U0002cf8e", // 𬾎
+ 0x2cf8f: "\t\a\U0002cf8f", // 𬾏
+ 0x2cf90: "\t\a\U0002cf90", // 𬾐
+ 0x2cf91: "\t\a\U0002cf91", // 𬾑
+ 0x2cf92: "\t\a\U0002cf92", // 𬾒
+ 0x2cf93: "\t\a\U0002cf93", // 𬾓
+ 0x2cf94: "\t\a\U0002cf94", // 𬾔
+ 0x2cf95: "\t\a\U0002cf95", // 𬾕
+ 0x2cf96: "\t\a\U0002cf96", // 𬾖
+ 0x2cf97: "\t\a\U0002cf97", // 𬾗
+ 0x2cf98: "\t\a\U0002cf98", // 𬾘
+ 0x2cf99: "\t\a\U0002cf99", // 𬾙
+ 0x2cf9a: "\t\b\U0002cf9a", // 𬾚
+ 0x2cf9b: "\t\b\U0002cf9b", // 𬾛
+ 0x2cf9c: "\t\b\U0002cf9c", // 𬾜
+ 0x2cf9d: "\t\b\U0002cf9d", // 𬾝
+ 0x2cf9e: "\t\b\U0002cf9e", // 𬾞
+ 0x2cf9f: "\t\b\U0002cf9f", // 𬾟
+ 0x2cfa0: "\t\b\U0002cfa0", // 𬾠
+ 0x2cfa1: "\t\b\U0002cfa1", // 𬾡
+ 0x2cfa2: "\t\b\U0002cfa2", // 𬾢
+ 0x2cfa3: "\t\b\U0002cfa3", // 𬾣
+ 0x2cfa4: "\t\b\U0002cfa4", // 𬾤
+ 0x2cfa5: "\t\b\U0002cfa5", // 𬾥
+ 0x2cfa6: "\t\b\U0002cfa6", // 𬾦
+ 0x2cfa7: "\t\b\U0002cfa7", // 𬾧
+ 0x2cfa8: "\t\b\U0002cfa8", // 𬾨
+ 0x2cfa9: "\t\b\U0002cfa9", // 𬾩
+ 0x2cfaa: "\t\t\U0002cfaa", // 𬾪
+ 0x2cfab: "\t\t\U0002cfab", // 𬾫
+ 0x2cfac: "\t\t\U0002cfac", // 𬾬
+ 0x2cfad: "\t\t\U0002cfad", // 𬾭
+ 0x2cfae: "\t\t\U0002cfae", // 𬾮
+ 0x2cfaf: "\t\t\U0002cfaf", // 𬾯
+ 0x2cfb0: "\t\t\U0002cfb0", // 𬾰
+ 0x2cfb1: "\t\t\U0002cfb1", // 𬾱
+ 0x2cfb2: "\t\t\U0002cfb2", // 𬾲
+ 0x2cfb3: "\t\t\U0002cfb3", // 𬾳
+ 0x2cfb4: "\t\t\U0002cfb4", // 𬾴
+ 0x2cfb5: "\t\t\U0002cfb5", // 𬾵
+ 0x2cfb6: "\t\t\U0002cfb6", // 𬾶
+ 0x2cfb7: "\t\t\U0002cfb7", // 𬾷
+ 0x2cfb8: "\t\t\U0002cfb8", // 𬾸
+ 0x2cfb9: "\t\t\U0002cfb9", // 𬾹
+ 0x2cfba: "\t\t\U0002cfba", // 𬾺
+ 0x2cfbb: "\t\t\U0002cfbb", // 𬾻
+ 0x2cfbc: "\t\t\U0002cfbc", // 𬾼
+ 0x2cfbd: "\t\n\U0002cfbd", // 𬾽
+ 0x2cfbe: "\t\n\U0002cfbe", // 𬾾
+ 0x2cfbf: "\t\n\U0002cfbf", // 𬾿
+ 0x2cfc0: "\t\n\U0002cfc0", // 𬿀
+ 0x2cfc1: "\t\n\U0002cfc1", // 𬿁
+ 0x2cfc2: "\t\n\U0002cfc2", // 𬿂
+ 0x2cfc3: "\t\n\U0002cfc3", // 𬿃
+ 0x2cfc4: "\t\n\U0002cfc4", // 𬿄
+ 0x2cfc5: "\t\n\U0002cfc5", // 𬿅
+ 0x2cfc6: "\t\n\U0002cfc6", // 𬿆
+ 0x2cfc7: "\t\n\U0002cfc7", // 𬿇
+ 0x2cfc8: "\t\n\U0002cfc8", // 𬿈
+ 0x2cfc9: "\t\n\U0002cfc9", // 𬿉
+ 0x2cfca: "\t\n\U0002cfca", // 𬿊
+ 0x2cfcb: "\t\n\U0002cfcb", // 𬿋
+ 0x2cfcc: "\t\n\U0002cfcc", // 𬿌
+ 0x2cfcd: "\t\n\U0002cfcd", // 𬿍
+ 0x2cfce: "\t\n\U0002cfce", // 𬿎
+ 0x2cfcf: "\t\n\U0002cfcf", // 𬿏
+ 0x2cfd0: "\t\v\U0002cfd0", // 𬿐
+ 0x2cfd1: "\t\v\U0002cfd1", // 𬿑
+ 0x2cfd2: "\t\v\U0002cfd2", // 𬿒
+ 0x2cfd3: "\t\v\U0002cfd3", // 𬿓
+ 0x2cfd4: "\t\v\U0002cfd4", // 𬿔
+ 0x2cfd5: "\t\v\U0002cfd5", // 𬿕
+ 0x2cfd6: "\t\v\U0002cfd6", // 𬿖
+ 0x2cfd7: "\t\v\U0002cfd7", // 𬿗
+ 0x2cfd8: "\t\v\U0002cfd8", // 𬿘
+ 0x2cfd9: "\t\v\U0002cfd9", // 𬿙
+ 0x2cfda: "\t\v\U0002cfda", // 𬿚
+ 0x2cfdb: "\t\v\U0002cfdb", // 𬿛
+ 0x2cfdc: "\t\v\U0002cfdc", // 𬿜
+ 0x2cfdd: "\t\v\U0002cfdd", // 𬿝
+ 0x2cfde: "\t\v\U0002cfde", // 𬿞
+ 0x2cfdf: "\t\v\U0002cfdf", // 𬿟
+ 0x2cfe0: "\t\v\U0002cfe0", // 𬿠
+ 0x2cfe1: "\t\f\U0002cfe1", // 𬿡
+ 0x2cfe2: "\t\f\U0002cfe2", // 𬿢
+ 0x2cfe3: "\t\f\U0002cfe3", // 𬿣
+ 0x2cfe4: "\t\f\U0002cfe4", // 𬿤
+ 0x2cfe5: "\t\f\U0002cfe5", // 𬿥
+ 0x2cfe6: "\t\f\U0002cfe6", // 𬿦
+ 0x2cfe7: "\t\f\U0002cfe7", // 𬿧
+ 0x2cfe8: "\t\f\U0002cfe8", // 𬿨
+ 0x2cfe9: "\t\f\U0002cfe9", // 𬿩
+ 0x2cfea: "\t\f\U0002cfea", // 𬿪
+ 0x2cfeb: "\t\f\U0002cfeb", // 𬿫
+ 0x2cfec: "\t\f\U0002cfec", // 𬿬
+ 0x2cfed: "\t\f\U0002cfed", // 𬿭
+ 0x2cfee: "\t\f\U0002cfee", // 𬿮
+ 0x2cfef: "\t\r\U0002cfef", // 𬿯
+ 0x2cff0: "\t\r\U0002cff0", // 𬿰
+ 0x2cff1: "\t\r\U0002cff1", // 𬿱
+ 0x2cff2: "\t\r\U0002cff2", // 𬿲
+ 0x2cff3: "\t\r\U0002cff3", // 𬿳
+ 0x2cff4: "\t\r\U0002cff4", // 𬿴
+ 0x2cff5: "\t\r\U0002cff5", // 𬿵
+ 0x2cff6: "\t\r\U0002cff6", // 𬿶
+ 0x2cff7: "\t\r\U0002cff7", // 𬿷
+ 0x2cff8: "\t\r\U0002cff8", // 𬿸
+ 0x2cff9: "\t\r\U0002cff9", // 𬿹
+ 0x2cffa: "\t\r\U0002cffa", // 𬿺
+ 0x2cffb: "\t\x0e\U0002cffb", // 𬿻
+ 0x2cffc: "\t\x0e\U0002cffc", // 𬿼
+ 0x2cffd: "\t\x0e\U0002cffd", // 𬿽
+ 0x2cffe: "\t\x0e\U0002cffe", // 𬿾
+ 0x2cfff: "\t\x0e\U0002cfff", // 𬿿
+ 0x2d000: "\t\x0e\U0002d000", // 𭀀
+ 0x2d001: "\t\x0f\U0002d001", // 𭀁
+ 0x2d002: "\t\x0f\U0002d002", // 𭀂
+ 0x2d003: "\t\x0f\U0002d003", // 𭀃
+ 0x2d004: "\t\x0f\U0002d004", // 𭀄
+ 0x2d005: "\t\x0f\U0002d005", // 𭀅
+ 0x2d006: "\t\x10\U0002d006", // 𭀆
+ 0x2d007: "\t\x10\U0002d007", // 𭀇
+ 0x2d008: "\t\x10\U0002d008", // 𭀈
+ 0x2d009: "\t\x10\U0002d009", // 𭀉
+ 0x2d00a: "\t\x10\U0002d00a", // 𭀊
+ 0x2d00b: "\t\x10\U0002d00b", // 𭀋
+ 0x2d00c: "\t\x10\U0002d00c", // 𭀌
+ 0x2d00d: "\t\x11\U0002d00d", // 𭀍
+ 0x2d00e: "\t\x11\U0002d00e", // 𭀎
+ 0x2d00f: "\t\x11\U0002d00f", // 𭀏
+ 0x2d010: "\t\x12\U0002d010", // 𭀐
+ 0x2d011: "\t\x12\U0002d011", // 𭀑
+ 0x2d012: "\t\x14\U0002d012", // 𭀒
+ 0x2d013: "\t\x15\U0002d013", // 𭀓
+ 0x2d014: "\t\x15\U0002d014", // 𭀔
+ 0x2d015: "\t\x16\U0002d015", // 𭀕
+ 0x2d016: "\n\x02\U0002d016", // 𭀖
+ 0x2d017: "\n\x02\U0002d017", // 𭀗
+ 0x2d018: "\n\x02\U0002d018", // 𭀘
+ 0x2d019: "\n\x03\U0002d019", // 𭀙
+ 0x2d01a: "\n\x03\U0002d01a", // 𭀚
+ 0x2d01b: "\n\x03\U0002d01b", // 𭀛
+ 0x2d01c: "\n\x03\U0002d01c", // 𭀜
+ 0x2d01d: "\n\x03\U0002d01d", // 𭀝
+ 0x2d01e: "\n\x05\U0002d01e", // 𭀞
+ 0x2d01f: "\n\x05\U0002d01f", // 𭀟
+ 0x2d020: "\n\x05\U0002d020", // 𭀠
+ 0x2d021: "\n\x06\U0002d021", // 𭀡
+ 0x2d022: "\n\x06\U0002d022", // 𭀢
+ 0x2d023: "\n\x06\U0002d023", // 𭀣
+ 0x2d024: "\n\x06\U0002d024", // 𭀤
+ 0x2d025: "\n\a\U0002d025", // 𭀥
+ 0x2d026: "\n\b\U0002d026", // 𭀦
+ 0x2d027: "\n\b\U0002d027", // 𭀧
+ 0x2d028: "\n\t\U0002d028", // 𭀨
+ 0x2d029: "\n\n\U0002d029", // 𭀩
+ 0x2d02a: "\n\n\U0002d02a", // 𭀪
+ 0x2d02b: "\n\n\U0002d02b", // 𭀫
+ 0x2d02c: "\n\n\U0002d02c", // 𭀬
+ 0x2d02d: "\n\n\U0002d02d", // 𭀭
+ 0x2d02e: "\n\v\U0002d02e", // 𭀮
+ 0x2d02f: "\n\v\U0002d02f", // 𭀯
+ 0x2d030: "\n\f\U0002d030", // 𭀰
+ 0x2d031: "\n\f\U0002d031", // 𭀱
+ 0x2d032: "\n\f\U0002d032", // 𭀲
+ 0x2d033: "\n\f\U0002d033", // 𭀳
+ 0x2d034: "\n\r\U0002d034", // 𭀴
+ 0x2d035: "\n\x0e\U0002d035", // 𭀵
+ 0x2d036: "\n\x0f\U0002d036", // 𭀶
+ 0x2d037: "\n\x0f\U0002d037", // 𭀷
+ 0x2d038: "\n\x0f\U0002d038", // 𭀸
+ 0x2d039: "\n\x10\U0002d039", // 𭀹
+ 0x2d03a: "\n\x10\U0002d03a", // 𭀺
+ 0x2d03b: "\v\x03\U0002d03b", // 𭀻
+ 0x2d03c: "\v\x05\U0002d03c", // 𭀼
+ 0x2d03d: "\v\x05\U0002d03d", // 𭀽
+ 0x2d03e: "\v\x05\U0002d03e", // 𭀾
+ 0x2d03f: "\v\x06\U0002d03f", // 𭀿
+ 0x2d040: "\v\a\U0002d040", // 𭁀
+ 0x2d041: "\v\x0e\U0002d041", // 𭁁
+ 0x2d042: "\v\x0f\U0002d042", // 𭁂
+ 0x2d043: "\v\x1a\U0002d043", // 𭁃
+ 0x2d044: "\f\x03\U0002d044", // 𭁄
+ 0x2d045: "\f\x04\U0002d045", // 𭁅
+ 0x2d046: "\f\x04\U0002d046", // 𭁆
+ 0x2d047: "\f\x05\U0002d047", // 𭁇
+ 0x2d048: "\f\x06\U0002d048", // 𭁈
+ 0x2d049: "\f\x06\U0002d049", // 𭁉
+ 0x2d04a: "\f\x06\U0002d04a", // 𭁊
+ 0x2d04b: "\f\x06\U0002d04b", // 𭁋
+ 0x2d04c: "\f\a\U0002d04c", // 𭁌
+ 0x2d04d: "\f\a\U0002d04d", // 𭁍
+ 0x2d04e: "\f\a\U0002d04e", // 𭁎
+ 0x2d04f: "\f\b\U0002d04f", // 𭁏
+ 0x2d050: "\f\b\U0002d050", // 𭁐
+ 0x2d051: "\f\t\U0002d051", // 𭁑
+ 0x2d052: "\f\t\U0002d052", // 𭁒
+ 0x2d053: "\f\t\U0002d053", // 𭁓
+ 0x2d054: "\f\n\U0002d054", // 𭁔
+ 0x2d055: "\f\n\U0002d055", // 𭁕
+ 0x2d056: "\f\n\U0002d056", // 𭁖
+ 0x2d057: "\f\v\U0002d057", // 𭁗
+ 0x2d058: "\f\v\U0002d058", // 𭁘
+ 0x2d059: "\f\f\U0002d059", // 𭁙
+ 0x2d05a: "\f\r\U0002d05a", // 𭁚
+ 0x2d05b: "\f\r\U0002d05b", // 𭁛
+ 0x2d05c: "\f\r\U0002d05c", // 𭁜
+ 0x2d05d: "\f\x11\U0002d05d", // 𭁝
+ 0x2d05e: "\f\x13\U0002d05e", // 𭁞
+ 0x2d05f: "\r\x02\U0002d05f", // 𭁟
+ 0x2d060: "\r\x03\U0002d060", // 𭁠
+ 0x2d061: "\r\x04\U0002d061", // 𭁡
+ 0x2d062: "\r\x04\U0002d062", // 𭁢
+ 0x2d063: "\r\x06\U0002d063", // 𭁣
+ 0x2d064: "\r\x06\U0002d064", // 𭁤
+ 0x2d065: "\r\x06\U0002d065", // 𭁥
+ 0x2d066: "\r\x06\U0002d066", // 𭁦
+ 0x2d067: "\r\x06\U0002d067", // 𭁧
+ 0x2d068: "\r\x06\U0002d068", // 𭁨
+ 0x2d069: "\r\x06\U0002d069", // 𭁩
+ 0x2d06a: "\r\a\U0002d06a", // 𭁪
+ 0x2d06b: "\r\a\U0002d06b", // 𭁫
+ 0x2d06c: "\r\b\U0002d06c", // 𭁬
+ 0x2d06d: "\r\b\U0002d06d", // 𭁭
+ 0x2d06e: "\r\b\U0002d06e", // 𭁮
+ 0x2d06f: "\r\b\U0002d06f", // 𭁯
+ 0x2d070: "\r\n\U0002d070", // 𭁰
+ 0x2d071: "\r\n\U0002d071", // 𭁱
+ 0x2d072: "\r\x11\U0002d072", // 𭁲
+ 0x2d073: "\x0e\x03\U0002d073", // 𭁳
+ 0x2d074: "\x0e\x06\U0002d074", // 𭁴
+ 0x2d075: "\x0e\b\U0002d075", // 𭁵
+ 0x2d076: "\x0e\b\U0002d076", // 𭁶
+ 0x2d077: "\x0e\b\U0002d077", // 𭁷
+ 0x2d078: "\x0e\b\U0002d078", // 𭁸
+ 0x2d079: "\x0e\b\U0002d079", // 𭁹
+ 0x2d07a: "\x0e\b\U0002d07a", // 𭁺
+ 0x2d07b: "\x0e\b\U0002d07b", // 𭁻
+ 0x2d07c: "\x0e\t\U0002d07c", // 𭁼
+ 0x2d07d: "\x0e\t\U0002d07d", // 𭁽
+ 0x2d07e: "\x0e\t\U0002d07e", // 𭁾
+ 0x2d07f: "\x0e\t\U0002d07f", // 𭁿
+ 0x2d080: "\x0e\n\U0002d080", // 𭂀
+ 0x2d081: "\x0e\v\U0002d081", // 𭂁
+ 0x2d082: "\x0e\v\U0002d082", // 𭂂
+ 0x2d083: "\x0e\r\U0002d083", // 𭂃
+ 0x2d084: "\x0e\r\U0002d084", // 𭂄
+ 0x2d085: "\x0e\r\U0002d085", // 𭂅
+ 0x2d086: "\x0f\x02\U0002d086", // 𭂆
+ 0x2d087: "\x0f\x02\U0002d087", // 𭂇
+ 0x2d088: "\x0f\x03\U0002d088", // 𭂈
+ 0x2d089: "\x0f\x05\U0002d089", // 𭂉
+ 0x2d08a: "\x0f\x05\U0002d08a", // 𭂊
+ 0x2d08b: "\x0f\x06\U0002d08b", // 𭂋
+ 0x2d08c: "\x0f\x06\U0002d08c", // 𭂌
+ 0x2d08d: "\x0f\x06\U0002d08d", // 𭂍
+ 0x2d08e: "\x0f\x06\U0002d08e", // 𭂎
+ 0x2d08f: "\x0f\a\U0002d08f", // 𭂏
+ 0x2d090: "\x0f\a\U0002d090", // 𭂐
+ 0x2d091: "\x0f\b\U0002d091", // 𭂑
+ 0x2d092: "\x0f\b\U0002d092", // 𭂒
+ 0x2d093: "\x0f\b\U0002d093", // 𭂓
+ 0x2d094: "\x0f\b\U0002d094", // 𭂔
+ 0x2d095: "\x0f\b\U0002d095", // 𭂕
+ 0x2d096: "\x0f\t\U0002d096", // 𭂖
+ 0x2d097: "\x0f\t\U0002d097", // 𭂗
+ 0x2d098: "\x0f\t\U0002d098", // 𭂘
+ 0x2d099: "\x0f\n\U0002d099", // 𭂙
+ 0x2d09a: "\x0f\n\U0002d09a", // 𭂚
+ 0x2d09b: "\x0f\n\U0002d09b", // 𭂛
+ 0x2d09c: "\x0f\v\U0002d09c", // 𭂜
+ 0x2d09d: "\x0f\v\U0002d09d", // 𭂝
+ 0x2d09e: "\x0f\v\U0002d09e", // 𭂞
+ 0x2d09f: "\x0f\f\U0002d09f", // 𭂟
+ 0x2d0a0: "\x0f\f\U0002d0a0", // 𭂠
+ 0x2d0a1: "\x0f\f\U0002d0a1", // 𭂡
+ 0x2d0a2: "\x0f\r\U0002d0a2", // 𭂢
+ 0x2d0a3: "\x0f\r\U0002d0a3", // 𭂣
+ 0x2d0a4: "\x0f\r\U0002d0a4", // 𭂤
+ 0x2d0a5: "\x0f\x0e\U0002d0a5", // 𭂥
+ 0x2d0a6: "\x0f\x0f\U0002d0a6", // 𭂦
+ 0x2d0a7: "\x0f\x10\U0002d0a7", // 𭂧
+ 0x2d0a8: "\x0f\x12\U0002d0a8", // 𭂨
+ 0x2d0a9: "\x10\x02\U0002d0a9", // 𭂩
+ 0x2d0aa: "\x10\x02\U0002d0aa", // 𭂪
+ 0x2d0ab: "\x10\x02\U0002d0ab", // 𭂫
+ 0x2d0ac: "\x10\x02\U0002d0ac", // 𭂬
+ 0x2d0ad: "\x10\x04\U0002d0ad", // 𭂭
+ 0x2d0ae: "\x10\x04\U0002d0ae", // 𭂮
+ 0x2d0af: "\x10\x04\U0002d0af", // 𭂯
+ 0x2d0b0: "\x10\x05\U0002d0b0", // 𭂰
+ 0x2d0b1: "\x10\x06\U0002d0b1", // 𭂱
+ 0x2d0b2: "\x10\x06\U0002d0b2", // 𭂲
+ 0x2d0b3: "\x10\a\U0002d0b3", // 𭂳
+ 0x2d0b4: "\x10\a\U0002d0b4", // 𭂴
+ 0x2d0b5: "\x10\t\U0002d0b5", // 𭂵
+ 0x2d0b6: "\x10\t\U0002d0b6", // 𭂶
+ 0x2d0b7: "\x10\n\U0002d0b7", // 𭂷
+ 0x2d0b8: "\x10\v\U0002d0b8", // 𭂸
+ 0x2d0b9: "\x10\v\U0002d0b9", // 𭂹
+ 0x2d0ba: "\x10\x0e\U0002d0ba", // 𭂺
+ 0x2d0bb: "\x11\x05\U0002d0bb", // 𭂻
+ 0x2d0bc: "\x11\b\U0002d0bc", // 𭂼
+ 0x2d0bd: "\x11\t\U0002d0bd", // 𭂽
+ 0x2d0be: "\x11\n\U0002d0be", // 𭂾
+ 0x2d0bf: "\x11\f\U0002d0bf", // 𭂿
+ 0x2d0c0: "\x11\r\U0002d0c0", // 𭃀
+ 0x2d0c1: "\x11\x0f\U0002d0c1", // 𭃁
+ 0x2d0c2: "\x12\x02\U0002d0c2", // 𭃂
+ 0x2d0c3: "\x12\x02\U0002d0c3", // 𭃃
+ 0x2d0c4: "\x12\x02\U0002d0c4", // 𭃄
+ 0x2d0c5: "\x12\x03\U0002d0c5", // 𭃅
+ 0x2d0c6: "\x12\x03\U0002d0c6", // 𭃆
+ 0x2d0c7: "\x12\x03\U0002d0c7", // 𭃇
+ 0x2d0c8: "\x12\x04\U0002d0c8", // 𭃈
+ 0x2d0c9: "\x12\x04\U0002d0c9", // 𭃉
+ 0x2d0ca: "\x12\x04\U0002d0ca", // 𭃊
+ 0x2d0cb: "\x12\x04\U0002d0cb", // 𭃋
+ 0x2d0cc: "\x12\x04\U0002d0cc", // 𭃌
+ 0x2d0cd: "\x12\x05\U0002d0cd", // 𭃍
+ 0x2d0ce: "\x12\x05\U0002d0ce", // 𭃎
+ 0x2d0cf: "\x12\x05\U0002d0cf", // 𭃏
+ 0x2d0d0: "\x12\x05\U0002d0d0", // 𭃐
+ 0x2d0d1: "\x12\x05\U0002d0d1", // 𭃑
+ 0x2d0d2: "\x12\x05\U0002d0d2", // 𭃒
+ 0x2d0d3: "\x12\x05\U0002d0d3", // 𭃓
+ 0x2d0d4: "\x12\x05\U0002d0d4", // 𭃔
+ 0x2d0d5: "\x12\x06\U0002d0d5", // 𭃕
+ 0x2d0d6: "\x12\x06\U0002d0d6", // 𭃖
+ 0x2d0d7: "\x12\x06\U0002d0d7", // 𭃗
+ 0x2d0d8: "\x12\x06\U0002d0d8", // 𭃘
+ 0x2d0d9: "\x12\x06\U0002d0d9", // 𭃙
+ 0x2d0da: "\x12\x06\U0002d0da", // 𭃚
+ 0x2d0db: "\x12\x06\U0002d0db", // 𭃛
+ 0x2d0dc: "\x12\x06\U0002d0dc", // 𭃜
+ 0x2d0dd: "\x12\x06\U0002d0dd", // 𭃝
+ 0x2d0de: "\x12\x06\U0002d0de", // 𭃞
+ 0x2d0df: "\x12\x06\U0002d0df", // 𭃟
+ 0x2d0e0: "\x12\x06\U0002d0e0", // 𭃠
+ 0x2d0e1: "\x12\x06\U0002d0e1", // 𭃡
+ 0x2d0e2: "\x12\a\U0002d0e2", // 𭃢
+ 0x2d0e3: "\x12\a\U0002d0e3", // 𭃣
+ 0x2d0e4: "\x12\a\U0002d0e4", // 𭃤
+ 0x2d0e5: "\x12\a\U0002d0e5", // 𭃥
+ 0x2d0e6: "\x12\a\U0002d0e6", // 𭃦
+ 0x2d0e7: "\x12\a\U0002d0e7", // 𭃧
+ 0x2d0e8: "\x12\a\U0002d0e8", // 𭃨
+ 0x2d0e9: "\x12\b\U0002d0e9", // 𭃩
+ 0x2d0ea: "\x12\b\U0002d0ea", // 𭃪
+ 0x2d0eb: "\x12\b\U0002d0eb", // 𭃫
+ 0x2d0ec: "\x12\b\U0002d0ec", // 𭃬
+ 0x2d0ed: "\x12\b\U0002d0ed", // 𭃭
+ 0x2d0ee: "\x12\b\U0002d0ee", // 𭃮
+ 0x2d0ef: "\x12\b\U0002d0ef", // 𭃯
+ 0x2d0f0: "\x12\b\U0002d0f0", // 𭃰
+ 0x2d0f1: "\x12\b\U0002d0f1", // 𭃱
+ 0x2d0f2: "\x12\b\U0002d0f2", // 𭃲
+ 0x2d0f3: "\x12\b\U0002d0f3", // 𭃳
+ 0x2d0f4: "\x12\t\U0002d0f4", // 𭃴
+ 0x2d0f5: "\x12\t\U0002d0f5", // 𭃵
+ 0x2d0f6: "\x12\t\U0002d0f6", // 𭃶
+ 0x2d0f7: "\x12\t\U0002d0f7", // 𭃷
+ 0x2d0f8: "\x12\t\U0002d0f8", // 𭃸
+ 0x2d0f9: "\x12\t\U0002d0f9", // 𭃹
+ 0x2d0fa: "\x12\t\U0002d0fa", // 𭃺
+ 0x2d0fb: "\x12\t\U0002d0fb", // 𭃻
+ 0x2d0fc: "\x12\t\U0002d0fc", // 𭃼
+ 0x2d0fd: "\x12\t\U0002d0fd", // 𭃽
+ 0x2d0fe: "\x12\t\U0002d0fe", // 𭃾
+ 0x2d0ff: "\x12\n\U0002d0ff", // 𭃿
+ 0x2d100: "\x12\n\U0002d100", // 𭄀
+ 0x2d101: "\x12\n\U0002d101", // 𭄁
+ 0x2d102: "\x12\n\U0002d102", // 𭄂
+ 0x2d103: "\x12\n\U0002d103", // 𭄃
+ 0x2d104: "\x12\n\U0002d104", // 𭄄
+ 0x2d105: "\x12\n\U0002d105", // 𭄅
+ 0x2d106: "\x12\v\U0002d106", // 𭄆
+ 0x2d107: "\x12\v\U0002d107", // 𭄇
+ 0x2d108: "\x12\v\U0002d108", // 𭄈
+ 0x2d109: "\x12\v\U0002d109", // 𭄉
+ 0x2d10a: "\x12\v\U0002d10a", // 𭄊
+ 0x2d10b: "\x12\v\U0002d10b", // 𭄋
+ 0x2d10c: "\x12\v\U0002d10c", // 𭄌
+ 0x2d10d: "\x12\v\U0002d10d", // 𭄍
+ 0x2d10e: "\x12\v\U0002d10e", // 𭄎
+ 0x2d10f: "\x12\v\U0002d10f", // 𭄏
+ 0x2d110: "\x12\f\U0002d110", // 𭄐
+ 0x2d111: "\x12\f\U0002d111", // 𭄑
+ 0x2d112: "\x12\r\U0002d112", // 𭄒
+ 0x2d113: "\x12\x0e\U0002d113", // 𭄓
+ 0x2d114: "\x12\x0e\U0002d114", // 𭄔
+ 0x2d115: "\x12\x0e\U0002d115", // 𭄕
+ 0x2d116: "\x12\x0e\U0002d116", // 𭄖
+ 0x2d117: "\x12\x0e\U0002d117", // 𭄗
+ 0x2d118: "\x12\x0f\U0002d118", // 𭄘
+ 0x2d119: "\x12\x0f\U0002d119", // 𭄙
+ 0x2d11a: "\x12\x10\U0002d11a", // 𭄚
+ 0x2d11b: "\x12\x10\U0002d11b", // 𭄛
+ 0x2d11c: "\x12\x11\U0002d11c", // 𭄜
+ 0x2d11d: "\x12\x16\U0002d11d", // 𭄝
+ 0x2d11e: "\x13\x02\U0002d11e", // 𭄞
+ 0x2d11f: "\x13\x03\U0002d11f", // 𭄟
+ 0x2d120: "\x13\x03\U0002d120", // 𭄠
+ 0x2d121: "\x13\x06\U0002d121", // 𭄡
+ 0x2d122: "\x13\x06\U0002d122", // 𭄢
+ 0x2d123: "\x13\x06\U0002d123", // 𭄣
+ 0x2d124: "\x13\x06\U0002d124", // 𭄤
+ 0x2d125: "\x13\x06\U0002d125", // 𭄥
+ 0x2d126: "\x13\a\U0002d126", // 𭄦
+ 0x2d127: "\x13\a\U0002d127", // 𭄧
+ 0x2d128: "\x13\a\U0002d128", // 𭄨
+ 0x2d129: "\x13\a\U0002d129", // 𭄩
+ 0x2d12a: "\x13\a\U0002d12a", // 𭄪
+ 0x2d12b: "\x13\a\U0002d12b", // 𭄫
+ 0x2d12c: "\x13\b\U0002d12c", // 𭄬
+ 0x2d12d: "\x13\b\U0002d12d", // 𭄭
+ 0x2d12e: "\x13\b\U0002d12e", // 𭄮
+ 0x2d12f: "\x13\b\U0002d12f", // 𭄯
+ 0x2d130: "\x13\b\U0002d130", // 𭄰
+ 0x2d131: "\x13\b\U0002d131", // 𭄱
+ 0x2d132: "\x13\b\U0002d132", // 𭄲
+ 0x2d133: "\x13\t\U0002d133", // 𭄳
+ 0x2d134: "\x13\t\U0002d134", // 𭄴
+ 0x2d135: "\x13\t\U0002d135", // 𭄵
+ 0x2d136: "\x13\t\U0002d136", // 𭄶
+ 0x2d137: "\x13\n\U0002d137", // 𭄷
+ 0x2d138: "\x13\n\U0002d138", // 𭄸
+ 0x2d139: "\x13\n\U0002d139", // 𭄹
+ 0x2d13a: "\x13\v\U0002d13a", // 𭄺
+ 0x2d13b: "\x13\v\U0002d13b", // 𭄻
+ 0x2d13c: "\x13\v\U0002d13c", // 𭄼
+ 0x2d13d: "\x13\v\U0002d13d", // 𭄽
+ 0x2d13e: "\x13\v\U0002d13e", // 𭄾
+ 0x2d13f: "\x13\f\U0002d13f", // 𭄿
+ 0x2d140: "\x13\f\U0002d140", // 𭅀
+ 0x2d141: "\x13\f\U0002d141", // 𭅁
+ 0x2d142: "\x13\f\U0002d142", // 𭅂
+ 0x2d143: "\x13\f\U0002d143", // 𭅃
+ 0x2d144: "\x14\x02\U0002d144", // 𭅄
+ 0x2d145: "\x14\x03\U0002d145", // 𭅅
+ 0x2d146: "\x14\x04\U0002d146", // 𭅆
+ 0x2d147: "\x14\x05\U0002d147", // 𭅇
+ 0x2d148: "\x14\x05\U0002d148", // 𭅈
+ 0x2d149: "\x14\x06\U0002d149", // 𭅉
+ 0x2d14a: "\x14\x06\U0002d14a", // 𭅊
+ 0x2d14b: "\x14\a\U0002d14b", // 𭅋
+ 0x2d14c: "\x14\t\U0002d14c", // 𭅌
+ 0x2d14d: "\x14\n\U0002d14d", // 𭅍
+ 0x2d14e: "\x14\v\U0002d14e", // 𭅎
+ 0x2d14f: "\x14\v\U0002d14f", // 𭅏
+ 0x2d150: "\x15\x04\U0002d150", // 𭅐
+ 0x2d151: "\x15\x06\U0002d151", // 𭅑
+ 0x2d152: "\x15\a\U0002d152", // 𭅒
+ 0x2d153: "\x15\b\U0002d153", // 𭅓
+ 0x2d154: "\x16\x02\U0002d154", // 𭅔
+ 0x2d155: "\x16\x03\U0002d155", // 𭅕
+ 0x2d156: "\x16\x03\U0002d156", // 𭅖
+ 0x2d157: "\x16\x05\U0002d157", // 𭅗
+ 0x2d158: "\x16\x05\U0002d158", // 𭅘
+ 0x2d159: "\x16\x06\U0002d159", // 𭅙
+ 0x2d15a: "\x16\x06\U0002d15a", // 𭅚
+ 0x2d15b: "\x16\b\U0002d15b", // 𭅛
+ 0x2d15c: "\x16\t\U0002d15c", // 𭅜
+ 0x2d15d: "\x16\t\U0002d15d", // 𭅝
+ 0x2d15e: "\x16\f\U0002d15e", // 𭅞
+ 0x2d15f: "\x17\a\U0002d15f", // 𭅟
+ 0x2d160: "\x18\x02\U0002d160", // 𭅠
+ 0x2d161: "\x18\a\U0002d161", // 𭅡
+ 0x2d162: "\x18\a\U0002d162", // 𭅢
+ 0x2d163: "\x18\b\U0002d163", // 𭅣
+ 0x2d164: "\x18\t\U0002d164", // 𭅤
+ 0x2d165: "\x18\n\U0002d165", // 𭅥
+ 0x2d166: "\x18\n\U0002d166", // 𭅦
+ 0x2d167: "\x18\v\U0002d167", // 𭅧
+ 0x2d168: "\x18\r\U0002d168", // 𭅨
+ 0x2d169: "\x18\r\U0002d169", // 𭅩
+ 0x2d16a: "\x18\x0e\U0002d16a", // 𭅪
+ 0x2d16b: "\x18\x10\U0002d16b", // 𭅫
+ 0x2d16c: "\x18\x10\U0002d16c", // 𭅬
+ 0x2d16d: "\x18\x12\U0002d16d", // 𭅭
+ 0x2d16e: "\x18\x17\U0002d16e", // 𭅮
+ 0x2d16f: "\x19\x04\U0002d16f", // 𭅯
+ 0x2d170: "\x19\x05\U0002d170", // 𭅰
+ 0x2d171: "\x19\t\U0002d171", // 𭅱
+ 0x2d172: "\x1a\x01\U0002d172", // 𭅲
+ 0x2d173: "\x1a\x02\U0002d173", // 𭅳
+ 0x2d174: "\x1a\x03\U0002d174", // 𭅴
+ 0x2d175: "\x1a\x04\U0002d175", // 𭅵
+ 0x2d176: "\x1a\x06\U0002d176", // 𭅶
+ 0x2d177: "\x1a\x06\U0002d177", // 𭅷
+ 0x2d178: "\x1a\x06\U0002d178", // 𭅸
+ 0x2d179: "\x1a\x06\U0002d179", // 𭅹
+ 0x2d17a: "\x1a\x06\U0002d17a", // 𭅺
+ 0x2d17b: "\x1a\b\U0002d17b", // 𭅻
+ 0x2d17c: "\x1a\b\U0002d17c", // 𭅼
+ 0x2d17d: "\x1a\v\U0002d17d", // 𭅽
+ 0x2d17e: "\x1a\v\U0002d17e", // 𭅾
+ 0x2d17f: "\x1a\r\U0002d17f", // 𭅿
+ 0x2d180: "\x1b\x03\U0002d180", // 𭆀
+ 0x2d181: "\x1b\x04\U0002d181", // 𭆁
+ 0x2d182: "\x1b\x05\U0002d182", // 𭆂
+ 0x2d183: "\x1b\x05\U0002d183", // 𭆃
+ 0x2d184: "\x1b\x06\U0002d184", // 𭆄
+ 0x2d185: "\x1b\a\U0002d185", // 𭆅
+ 0x2d186: "\x1b\b\U0002d186", // 𭆆
+ 0x2d187: "\x1b\b\U0002d187", // 𭆇
+ 0x2d188: "\x1b\b\U0002d188", // 𭆈
+ 0x2d189: "\x1b\t\U0002d189", // 𭆉
+ 0x2d18a: "\x1b\t\U0002d18a", // 𭆊
+ 0x2d18b: "\x1b\t\U0002d18b", // 𭆋
+ 0x2d18c: "\x1b\n\U0002d18c", // 𭆌
+ 0x2d18d: "\x1b\n\U0002d18d", // 𭆍
+ 0x2d18e: "\x1b\n\U0002d18e", // 𭆎
+ 0x2d18f: "\x1b\n\U0002d18f", // 𭆏
+ 0x2d190: "\x1b\n\U0002d190", // 𭆐
+ 0x2d191: "\x1b\v\U0002d191", // 𭆑
+ 0x2d192: "\x1b\v\U0002d192", // 𭆒
+ 0x2d193: "\x1b\f\U0002d193", // 𭆓
+ 0x2d194: "\x1b\f\U0002d194", // 𭆔
+ 0x2d195: "\x1b\f\U0002d195", // 𭆕
+ 0x2d196: "\x1b\r\U0002d196", // 𭆖
+ 0x2d197: "\x1b\x0e\U0002d197", // 𭆗
+ 0x2d198: "\x1b\x17\U0002d198", // 𭆘
+ 0x2d199: "\x1c\x04\U0002d199", // 𭆙
+ 0x2d19a: "\x1c\x04\U0002d19a", // 𭆚
+ 0x2d19b: "\x1c\a\U0002d19b", // 𭆛
+ 0x2d19c: "\x1c\a\U0002d19c", // 𭆜
+ 0x2d19d: "\x1c\a\U0002d19d", // 𭆝
+ 0x2d19e: "\x1c\b\U0002d19e", // 𭆞
+ 0x2d19f: "\x1c\b\U0002d19f", // 𭆟
+ 0x2d1a0: "\x1c\b\U0002d1a0", // 𭆠
+ 0x2d1a1: "\x1c\b\U0002d1a1", // 𭆡
+ 0x2d1a2: "\x1c\b\U0002d1a2", // 𭆢
+ 0x2d1a3: "\x1c\t\U0002d1a3", // 𭆣
+ 0x2d1a4: "\x1c\v\U0002d1a4", // 𭆤
+ 0x2d1a5: "\x1d\x01\U0002d1a5", // 𭆥
+ 0x2d1a6: "\x1d\x03\U0002d1a6", // 𭆦
+ 0x2d1a7: "\x1d\x04\U0002d1a7", // 𭆧
+ 0x2d1a8: "\x1d\x04\U0002d1a8", // 𭆨
+ 0x2d1a9: "\x1d\x06\U0002d1a9", // 𭆩
+ 0x2d1aa: "\x1d\x06\U0002d1aa", // 𭆪
+ 0x2d1ab: "\x1d\x06\U0002d1ab", // 𭆫
+ 0x2d1ac: "\x1d\a\U0002d1ac", // 𭆬
+ 0x2d1ad: "\x1d\a\U0002d1ad", // 𭆭
+ 0x2d1ae: "\x1d\a\U0002d1ae", // 𭆮
+ 0x2d1af: "\x1d\b\U0002d1af", // 𭆯
+ 0x2d1b0: "\x1d\b\U0002d1b0", // 𭆰
+ 0x2d1b1: "\x1d\t\U0002d1b1", // 𭆱
+ 0x2d1b2: "\x1d\t\U0002d1b2", // 𭆲
+ 0x2d1b3: "\x1d\n\U0002d1b3", // 𭆳
+ 0x2d1b4: "\x1d\n\U0002d1b4", // 𭆴
+ 0x2d1b5: "\x1d\f\U0002d1b5", // 𭆵
+ 0x2d1b6: "\x1d\f\U0002d1b6", // 𭆶
+ 0x2d1b7: "\x1d\r\U0002d1b7", // 𭆷
+ 0x2d1b8: "\x1e\x02\U0002d1b8", // 𭆸
+ 0x2d1b9: "\x1e\x02\U0002d1b9", // 𭆹
+ 0x2d1ba: "\x1e\x03\U0002d1ba", // 𭆺
+ 0x2d1bb: "\x1e\x03\U0002d1bb", // 𭆻
+ 0x2d1bc: "\x1e\x03\U0002d1bc", // 𭆼
+ 0x2d1bd: "\x1e\x03\U0002d1bd", // 𭆽
+ 0x2d1be: "\x1e\x03\U0002d1be", // 𭆾
+ 0x2d1bf: "\x1e\x03\U0002d1bf", // 𭆿
+ 0x2d1c0: "\x1e\x03\U0002d1c0", // 𭇀
+ 0x2d1c1: "\x1e\x03\U0002d1c1", // 𭇁
+ 0x2d1c2: "\x1e\x03\U0002d1c2", // 𭇂
+ 0x2d1c3: "\x1e\x04\U0002d1c3", // 𭇃
+ 0x2d1c4: "\x1e\x04\U0002d1c4", // 𭇄
+ 0x2d1c5: "\x1e\x04\U0002d1c5", // 𭇅
+ 0x2d1c6: "\x1e\x04\U0002d1c6", // 𭇆
+ 0x2d1c7: "\x1e\x04\U0002d1c7", // 𭇇
+ 0x2d1c8: "\x1e\x04\U0002d1c8", // 𭇈
+ 0x2d1c9: "\x1e\x04\U0002d1c9", // 𭇉
+ 0x2d1ca: "\x1e\x04\U0002d1ca", // 𭇊
+ 0x2d1cb: "\x1e\x04\U0002d1cb", // 𭇋
+ 0x2d1cc: "\x1e\x04\U0002d1cc", // 𭇌
+ 0x2d1cd: "\x1e\x04\U0002d1cd", // 𭇍
+ 0x2d1ce: "\x1e\x05\U0002d1ce", // 𭇎
+ 0x2d1cf: "\x1e\x05\U0002d1cf", // 𭇏
+ 0x2d1d0: "\x1e\x05\U0002d1d0", // 𭇐
+ 0x2d1d1: "\x1e\x05\U0002d1d1", // 𭇑
+ 0x2d1d2: "\x1e\x05\U0002d1d2", // 𭇒
+ 0x2d1d3: "\x1e\x05\U0002d1d3", // 𭇓
+ 0x2d1d4: "\x1e\x05\U0002d1d4", // 𭇔
+ 0x2d1d5: "\x1e\x05\U0002d1d5", // 𭇕
+ 0x2d1d6: "\x1e\x05\U0002d1d6", // 𭇖
+ 0x2d1d7: "\x1e\x05\U0002d1d7", // 𭇗
+ 0x2d1d8: "\x1e\x05\U0002d1d8", // 𭇘
+ 0x2d1d9: "\x1e\x05\U0002d1d9", // 𭇙
+ 0x2d1da: "\x1e\x05\U0002d1da", // 𭇚
+ 0x2d1db: "\x1e\x05\U0002d1db", // 𭇛
+ 0x2d1dc: "\x1e\x05\U0002d1dc", // 𭇜
+ 0x2d1dd: "\x1e\x05\U0002d1dd", // 𭇝
+ 0x2d1de: "\x1e\x06\U0002d1de", // 𭇞
+ 0x2d1df: "\x1e\x06\U0002d1df", // 𭇟
+ 0x2d1e0: "\x1e\x06\U0002d1e0", // 𭇠
+ 0x2d1e1: "\x1e\x06\U0002d1e1", // 𭇡
+ 0x2d1e2: "\x1e\x06\U0002d1e2", // 𭇢
+ 0x2d1e3: "\x1e\x06\U0002d1e3", // 𭇣
+ 0x2d1e4: "\x1e\x06\U0002d1e4", // 𭇤
+ 0x2d1e5: "\x1e\x06\U0002d1e5", // 𭇥
+ 0x2d1e6: "\x1e\x06\U0002d1e6", // 𭇦
+ 0x2d1e7: "\x1e\x06\U0002d1e7", // 𭇧
+ 0x2d1e8: "\x1e\x06\U0002d1e8", // 𭇨
+ 0x2d1e9: "\x1e\x06\U0002d1e9", // 𭇩
+ 0x2d1ea: "\x1e\x06\U0002d1ea", // 𭇪
+ 0x2d1eb: "\x1e\x06\U0002d1eb", // 𭇫
+ 0x2d1ec: "\x1e\x06\U0002d1ec", // 𭇬
+ 0x2d1ed: "\x1e\x06\U0002d1ed", // 𭇭
+ 0x2d1ee: "\x1e\x06\U0002d1ee", // 𭇮
+ 0x2d1ef: "\x1e\x06\U0002d1ef", // 𭇯
+ 0x2d1f0: "\x1e\x06\U0002d1f0", // 𭇰
+ 0x2d1f1: "\x1e\x06\U0002d1f1", // 𭇱
+ 0x2d1f2: "\x1e\x06\U0002d1f2", // 𭇲
+ 0x2d1f3: "\x1e\x06\U0002d1f3", // 𭇳
+ 0x2d1f4: "\x1e\x06\U0002d1f4", // 𭇴
+ 0x2d1f5: "\x1e\a\U0002d1f5", // 𭇵
+ 0x2d1f6: "\x1e\a\U0002d1f6", // 𭇶
+ 0x2d1f7: "\x1e\a\U0002d1f7", // 𭇷
+ 0x2d1f8: "\x1e\a\U0002d1f8", // 𭇸
+ 0x2d1f9: "\x1e\a\U0002d1f9", // 𭇹
+ 0x2d1fa: "\x1e\a\U0002d1fa", // 𭇺
+ 0x2d1fb: "\x1e\a\U0002d1fb", // 𭇻
+ 0x2d1fc: "\x1e\a\U0002d1fc", // 𭇼
+ 0x2d1fd: "\x1e\a\U0002d1fd", // 𭇽
+ 0x2d1fe: "\x1e\a\U0002d1fe", // 𭇾
+ 0x2d1ff: "\x1e\a\U0002d1ff", // 𭇿
+ 0x2d200: "\x1e\a\U0002d200", // 𭈀
+ 0x2d201: "\x1e\a\U0002d201", // 𭈁
+ 0x2d202: "\x1e\a\U0002d202", // 𭈂
+ 0x2d203: "\x1e\a\U0002d203", // 𭈃
+ 0x2d204: "\x1e\a\U0002d204", // 𭈄
+ 0x2d205: "\x1e\a\U0002d205", // 𭈅
+ 0x2d206: "\x1e\a\U0002d206", // 𭈆
+ 0x2d207: "\x1e\a\U0002d207", // 𭈇
+ 0x2d208: "\x1e\a\U0002d208", // 𭈈
+ 0x2d209: "\x1e\a\U0002d209", // 𭈉
+ 0x2d20a: "\x1e\a\U0002d20a", // 𭈊
+ 0x2d20b: "\x1e\a\U0002d20b", // 𭈋
+ 0x2d20c: "\x1e\b\U0002d20c", // 𭈌
+ 0x2d20d: "\x1e\b\U0002d20d", // 𭈍
+ 0x2d20e: "\x1e\b\U0002d20e", // 𭈎
+ 0x2d20f: "\x1e\b\U0002d20f", // 𭈏
+ 0x2d210: "\x1e\b\U0002d210", // 𭈐
+ 0x2d211: "\x1e\b\U0002d211", // 𭈑
+ 0x2d212: "\x1e\b\U0002d212", // 𭈒
+ 0x2d213: "\x1e\b\U0002d213", // 𭈓
+ 0x2d214: "\x1e\b\U0002d214", // 𭈔
+ 0x2d215: "\x1e\b\U0002d215", // 𭈕
+ 0x2d216: "\x1e\b\U0002d216", // 𭈖
+ 0x2d217: "\x1e\b\U0002d217", // 𭈗
+ 0x2d218: "\x1e\b\U0002d218", // 𭈘
+ 0x2d219: "\x1e\b\U0002d219", // 𭈙
+ 0x2d21a: "\x1e\b\U0002d21a", // 𭈚
+ 0x2d21b: "\x1e\b\U0002d21b", // 𭈛
+ 0x2d21c: "\x1e\b\U0002d21c", // 𭈜
+ 0x2d21d: "\x1e\b\U0002d21d", // 𭈝
+ 0x2d21e: "\x1e\b\U0002d21e", // 𭈞
+ 0x2d21f: "\x1e\b\U0002d21f", // 𭈟
+ 0x2d220: "\x1e\b\U0002d220", // 𭈠
+ 0x2d221: "\x1e\b\U0002d221", // 𭈡
+ 0x2d222: "\x1e\b\U0002d222", // 𭈢
+ 0x2d223: "\x1e\b\U0002d223", // 𭈣
+ 0x2d224: "\x1e\b\U0002d224", // 𭈤
+ 0x2d225: "\x1e\b\U0002d225", // 𭈥
+ 0x2d226: "\x1e\b\U0002d226", // 𭈦
+ 0x2d227: "\x1e\b\U0002d227", // 𭈧
+ 0x2d228: "\x1e\b\U0002d228", // 𭈨
+ 0x2d229: "\x1e\b\U0002d229", // 𭈩
+ 0x2d22a: "\x1e\b\U0002d22a", // 𭈪
+ 0x2d22b: "\x1e\b\U0002d22b", // 𭈫
+ 0x2d22c: "\x1e\b\U0002d22c", // 𭈬
+ 0x2d22d: "\x1e\b\U0002d22d", // 𭈭
+ 0x2d22e: "\x1e\b\U0002d22e", // 𭈮
+ 0x2d22f: "\x1e\t\U0002d22f", // 𭈯
+ 0x2d230: "\x1e\t\U0002d230", // 𭈰
+ 0x2d231: "\x1e\t\U0002d231", // 𭈱
+ 0x2d232: "\x1e\t\U0002d232", // 𭈲
+ 0x2d233: "\x1e\t\U0002d233", // 𭈳
+ 0x2d234: "\x1e\t\U0002d234", // 𭈴
+ 0x2d235: "\x1e\t\U0002d235", // 𭈵
+ 0x2d236: "\x1e\t\U0002d236", // 𭈶
+ 0x2d237: "\x1e\t\U0002d237", // 𭈷
+ 0x2d238: "\x1e\t\U0002d238", // 𭈸
+ 0x2d239: "\x1e\t\U0002d239", // 𭈹
+ 0x2d23a: "\x1e\t\U0002d23a", // 𭈺
+ 0x2d23b: "\x1e\t\U0002d23b", // 𭈻
+ 0x2d23c: "\x1e\t\U0002d23c", // 𭈼
+ 0x2d23d: "\x1e\t\U0002d23d", // 𭈽
+ 0x2d23e: "\x1e\t\U0002d23e", // 𭈾
+ 0x2d23f: "\x1e\t\U0002d23f", // 𭈿
+ 0x2d240: "\x1e\t\U0002d240", // 𭉀
+ 0x2d241: "\x1e\t\U0002d241", // 𭉁
+ 0x2d242: "\x1e\t\U0002d242", // 𭉂
+ 0x2d243: "\x1e\t\U0002d243", // 𭉃
+ 0x2d244: "\x1e\t\U0002d244", // 𭉄
+ 0x2d245: "\x1e\t\U0002d245", // 𭉅
+ 0x2d246: "\x1e\t\U0002d246", // 𭉆
+ 0x2d247: "\x1e\t\U0002d247", // 𭉇
+ 0x2d248: "\x1e\t\U0002d248", // 𭉈
+ 0x2d249: "\x1e\t\U0002d249", // 𭉉
+ 0x2d24a: "\x1e\t\U0002d24a", // 𭉊
+ 0x2d24b: "\x1e\t\U0002d24b", // 𭉋
+ 0x2d24c: "\x1e\t\U0002d24c", // 𭉌
+ 0x2d24d: "\x1e\t\U0002d24d", // 𭉍
+ 0x2d24e: "\x1e\t\U0002d24e", // 𭉎
+ 0x2d24f: "\x1e\t\U0002d24f", // 𭉏
+ 0x2d250: "\x1e\t\U0002d250", // 𭉐
+ 0x2d251: "\x1e\t\U0002d251", // 𭉑
+ 0x2d252: "\x1e\t\U0002d252", // 𭉒
+ 0x2d253: "\x1e\t\U0002d253", // 𭉓
+ 0x2d254: "\x1e\t\U0002d254", // 𭉔
+ 0x2d255: "\x1e\t\U0002d255", // 𭉕
+ 0x2d256: "\x1e\t\U0002d256", // 𭉖
+ 0x2d257: "\x1e\t\U0002d257", // 𭉗
+ 0x2d258: "\x1e\t\U0002d258", // 𭉘
+ 0x2d259: "\x1e\t\U0002d259", // 𭉙
+ 0x2d25a: "\x1e\n\U0002d25a", // 𭉚
+ 0x2d25b: "\x1e\n\U0002d25b", // 𭉛
+ 0x2d25c: "\x1e\n\U0002d25c", // 𭉜
+ 0x2d25d: "\x1e\n\U0002d25d", // 𭉝
+ 0x2d25e: "\x1e\n\U0002d25e", // 𭉞
+ 0x2d25f: "\x1e\n\U0002d25f", // 𭉟
+ 0x2d260: "\x1e\n\U0002d260", // 𭉠
+ 0x2d261: "\x1e\n\U0002d261", // 𭉡
+ 0x2d262: "\x1e\n\U0002d262", // 𭉢
+ 0x2d263: "\x1e\n\U0002d263", // 𭉣
+ 0x2d264: "\x1e\n\U0002d264", // 𭉤
+ 0x2d265: "\x1e\n\U0002d265", // 𭉥
+ 0x2d266: "\x1e\n\U0002d266", // 𭉦
+ 0x2d267: "\x1e\n\U0002d267", // 𭉧
+ 0x2d268: "\x1e\n\U0002d268", // 𭉨
+ 0x2d269: "\x1e\n\U0002d269", // 𭉩
+ 0x2d26a: "\x1e\n\U0002d26a", // 𭉪
+ 0x2d26b: "\x1e\n\U0002d26b", // 𭉫
+ 0x2d26c: "\x1e\n\U0002d26c", // 𭉬
+ 0x2d26d: "\x1e\n\U0002d26d", // 𭉭
+ 0x2d26e: "\x1e\n\U0002d26e", // 𭉮
+ 0x2d26f: "\x1e\n\U0002d26f", // 𭉯
+ 0x2d270: "\x1e\n\U0002d270", // 𭉰
+ 0x2d271: "\x1e\n\U0002d271", // 𭉱
+ 0x2d272: "\x1e\n\U0002d272", // 𭉲
+ 0x2d273: "\x1e\n\U0002d273", // 𭉳
+ 0x2d274: "\x1e\n\U0002d274", // 𭉴
+ 0x2d275: "\x1e\n\U0002d275", // 𭉵
+ 0x2d276: "\x1e\n\U0002d276", // 𭉶
+ 0x2d277: "\x1e\n\U0002d277", // 𭉷
+ 0x2d278: "\x1e\n\U0002d278", // 𭉸
+ 0x2d279: "\x1e\n\U0002d279", // 𭉹
+ 0x2d27a: "\x1e\n\U0002d27a", // 𭉺
+ 0x2d27b: "\x1e\n\U0002d27b", // 𭉻
+ 0x2d27c: "\x1e\n\U0002d27c", // 𭉼
+ 0x2d27d: "\x1e\n\U0002d27d", // 𭉽
+ 0x2d27e: "\x1e\v\U0002d27e", // 𭉾
+ 0x2d27f: "\x1e\v\U0002d27f", // 𭉿
+ 0x2d280: "\x1e\v\U0002d280", // 𭊀
+ 0x2d281: "\x1e\v\U0002d281", // 𭊁
+ 0x2d282: "\x1e\v\U0002d282", // 𭊂
+ 0x2d283: "\x1e\v\U0002d283", // 𭊃
+ 0x2d284: "\x1e\v\U0002d284", // 𭊄
+ 0x2d285: "\x1e\v\U0002d285", // 𭊅
+ 0x2d286: "\x1e\v\U0002d286", // 𭊆
+ 0x2d287: "\x1e\v\U0002d287", // 𭊇
+ 0x2d288: "\x1e\v\U0002d288", // 𭊈
+ 0x2d289: "\x1e\v\U0002d289", // 𭊉
+ 0x2d28a: "\x1e\v\U0002d28a", // 𭊊
+ 0x2d28b: "\x1e\v\U0002d28b", // 𭊋
+ 0x2d28c: "\x1e\v\U0002d28c", // 𭊌
+ 0x2d28d: "\x1e\v\U0002d28d", // 𭊍
+ 0x2d28e: "\x1e\v\U0002d28e", // 𭊎
+ 0x2d28f: "\x1e\v\U0002d28f", // 𭊏
+ 0x2d290: "\x1e\v\U0002d290", // 𭊐
+ 0x2d291: "\x1e\v\U0002d291", // 𭊑
+ 0x2d292: "\x1e\v\U0002d292", // 𭊒
+ 0x2d293: "\x1e\v\U0002d293", // 𭊓
+ 0x2d294: "\x1e\v\U0002d294", // 𭊔
+ 0x2d295: "\x1e\v\U0002d295", // 𭊕
+ 0x2d296: "\x1e\v\U0002d296", // 𭊖
+ 0x2d297: "\x1e\v\U0002d297", // 𭊗
+ 0x2d298: "\x1e\v\U0002d298", // 𭊘
+ 0x2d299: "\x1e\v\U0002d299", // 𭊙
+ 0x2d29a: "\x1e\v\U0002d29a", // 𭊚
+ 0x2d29b: "\x1e\v\U0002d29b", // 𭊛
+ 0x2d29c: "\x1e\v\U0002d29c", // 𭊜
+ 0x2d29d: "\x1e\v\U0002d29d", // 𭊝
+ 0x2d29e: "\x1e\v\U0002d29e", // 𭊞
+ 0x2d29f: "\x1e\v\U0002d29f", // 𭊟
+ 0x2d2a0: "\x1e\v\U0002d2a0", // 𭊠
+ 0x2d2a1: "\x1e\f\U0002d2a1", // 𭊡
+ 0x2d2a2: "\x1e\f\U0002d2a2", // 𭊢
+ 0x2d2a3: "\x1e\f\U0002d2a3", // 𭊣
+ 0x2d2a4: "\x1e\f\U0002d2a4", // 𭊤
+ 0x2d2a5: "\x1e\f\U0002d2a5", // 𭊥
+ 0x2d2a6: "\x1e\f\U0002d2a6", // 𭊦
+ 0x2d2a7: "\x1e\f\U0002d2a7", // 𭊧
+ 0x2d2a8: "\x1e\f\U0002d2a8", // 𭊨
+ 0x2d2a9: "\x1e\f\U0002d2a9", // 𭊩
+ 0x2d2aa: "\x1e\f\U0002d2aa", // 𭊪
+ 0x2d2ab: "\x1e\f\U0002d2ab", // 𭊫
+ 0x2d2ac: "\x1e\f\U0002d2ac", // 𭊬
+ 0x2d2ad: "\x1e\f\U0002d2ad", // 𭊭
+ 0x2d2ae: "\x1e\f\U0002d2ae", // 𭊮
+ 0x2d2af: "\x1e\f\U0002d2af", // 𭊯
+ 0x2d2b0: "\x1e\f\U0002d2b0", // 𭊰
+ 0x2d2b1: "\x1e\f\U0002d2b1", // 𭊱
+ 0x2d2b2: "\x1e\f\U0002d2b2", // 𭊲
+ 0x2d2b3: "\x1e\f\U0002d2b3", // 𭊳
+ 0x2d2b4: "\x1e\f\U0002d2b4", // 𭊴
+ 0x2d2b5: "\x1e\f\U0002d2b5", // 𭊵
+ 0x2d2b6: "\x1e\f\U0002d2b6", // 𭊶
+ 0x2d2b7: "\x1e\f\U0002d2b7", // 𭊷
+ 0x2d2b8: "\x1e\f\U0002d2b8", // 𭊸
+ 0x2d2b9: "\x1e\f\U0002d2b9", // 𭊹
+ 0x2d2ba: "\x1e\f\U0002d2ba", // 𭊺
+ 0x2d2bb: "\x1e\f\U0002d2bb", // 𭊻
+ 0x2d2bc: "\x1e\f\U0002d2bc", // 𭊼
+ 0x2d2bd: "\x1e\f\U0002d2bd", // 𭊽
+ 0x2d2be: "\x1e\f\U0002d2be", // 𭊾
+ 0x2d2bf: "\x1e\f\U0002d2bf", // 𭊿
+ 0x2d2c0: "\x1e\f\U0002d2c0", // 𭋀
+ 0x2d2c1: "\x1e\f\U0002d2c1", // 𭋁
+ 0x2d2c2: "\x1e\r\U0002d2c2", // 𭋂
+ 0x2d2c3: "\x1e\r\U0002d2c3", // 𭋃
+ 0x2d2c4: "\x1e\r\U0002d2c4", // 𭋄
+ 0x2d2c5: "\x1e\r\U0002d2c5", // 𭋅
+ 0x2d2c6: "\x1e\r\U0002d2c6", // 𭋆
+ 0x2d2c7: "\x1e\r\U0002d2c7", // 𭋇
+ 0x2d2c8: "\x1e\r\U0002d2c8", // 𭋈
+ 0x2d2c9: "\x1e\r\U0002d2c9", // 𭋉
+ 0x2d2ca: "\x1e\r\U0002d2ca", // 𭋊
+ 0x2d2cb: "\x1e\r\U0002d2cb", // 𭋋
+ 0x2d2cc: "\x1e\r\U0002d2cc", // 𭋌
+ 0x2d2cd: "\x1e\r\U0002d2cd", // 𭋍
+ 0x2d2ce: "\x1e\r\U0002d2ce", // 𭋎
+ 0x2d2cf: "\x1e\r\U0002d2cf", // 𭋏
+ 0x2d2d0: "\x1e\r\U0002d2d0", // 𭋐
+ 0x2d2d1: "\x1e\r\U0002d2d1", // 𭋑
+ 0x2d2d2: "\x1e\r\U0002d2d2", // 𭋒
+ 0x2d2d3: "\x1e\r\U0002d2d3", // 𭋓
+ 0x2d2d4: "\x1e\r\U0002d2d4", // 𭋔
+ 0x2d2d5: "\x1e\r\U0002d2d5", // 𭋕
+ 0x2d2d6: "\x1e\r\U0002d2d6", // 𭋖
+ 0x2d2d7: "\x1e\r\U0002d2d7", // 𭋗
+ 0x2d2d8: "\x1e\r\U0002d2d8", // 𭋘
+ 0x2d2d9: "\x1e\r\U0002d2d9", // 𭋙
+ 0x2d2da: "\x1e\r\U0002d2da", // 𭋚
+ 0x2d2db: "\x1e\r\U0002d2db", // 𭋛
+ 0x2d2dc: "\x1e\x0e\U0002d2dc", // 𭋜
+ 0x2d2dd: "\x1e\x0e\U0002d2dd", // 𭋝
+ 0x2d2de: "\x1e\x0e\U0002d2de", // 𭋞
+ 0x2d2df: "\x1e\x0e\U0002d2df", // 𭋟
+ 0x2d2e0: "\x1e\x0e\U0002d2e0", // 𭋠
+ 0x2d2e1: "\x1e\x0e\U0002d2e1", // 𭋡
+ 0x2d2e2: "\x1e\x0e\U0002d2e2", // 𭋢
+ 0x2d2e3: "\x1e\x0e\U0002d2e3", // 𭋣
+ 0x2d2e4: "\x1e\x0e\U0002d2e4", // 𭋤
+ 0x2d2e5: "\x1e\x0e\U0002d2e5", // 𭋥
+ 0x2d2e6: "\x1e\x0e\U0002d2e6", // 𭋦
+ 0x2d2e7: "\x1e\x0e\U0002d2e7", // 𭋧
+ 0x2d2e8: "\x1e\x0e\U0002d2e8", // 𭋨
+ 0x2d2e9: "\x1e\x0e\U0002d2e9", // 𭋩
+ 0x2d2ea: "\x1e\x0e\U0002d2ea", // 𭋪
+ 0x2d2eb: "\x1e\x0e\U0002d2eb", // 𭋫
+ 0x2d2ec: "\x1e\x0e\U0002d2ec", // 𭋬
+ 0x2d2ed: "\x1e\x0e\U0002d2ed", // 𭋭
+ 0x2d2ee: "\x1e\x0e\U0002d2ee", // 𭋮
+ 0x2d2ef: "\x1e\x0e\U0002d2ef", // 𭋯
+ 0x2d2f0: "\x1e\x0f\U0002d2f0", // 𭋰
+ 0x2d2f1: "\x1e\x0f\U0002d2f1", // 𭋱
+ 0x2d2f2: "\x1e\x0f\U0002d2f2", // 𭋲
+ 0x2d2f3: "\x1e\x0f\U0002d2f3", // 𭋳
+ 0x2d2f4: "\x1e\x0f\U0002d2f4", // 𭋴
+ 0x2d2f5: "\x1e\x0f\U0002d2f5", // 𭋵
+ 0x2d2f6: "\x1e\x0f\U0002d2f6", // 𭋶
+ 0x2d2f7: "\x1e\x0f\U0002d2f7", // 𭋷
+ 0x2d2f8: "\x1e\x0f\U0002d2f8", // 𭋸
+ 0x2d2f9: "\x1e\x0f\U0002d2f9", // 𭋹
+ 0x2d2fa: "\x1e\x0f\U0002d2fa", // 𭋺
+ 0x2d2fb: "\x1e\x0f\U0002d2fb", // 𭋻
+ 0x2d2fc: "\x1e\x0f\U0002d2fc", // 𭋼
+ 0x2d2fd: "\x1e\x0f\U0002d2fd", // 𭋽
+ 0x2d2fe: "\x1e\x0f\U0002d2fe", // 𭋾
+ 0x2d2ff: "\x1e\x0f\U0002d2ff", // 𭋿
+ 0x2d300: "\x1e\x0f\U0002d300", // 𭌀
+ 0x2d301: "\x1e\x0f\U0002d301", // 𭌁
+ 0x2d302: "\x1e\x0f\U0002d302", // 𭌂
+ 0x2d303: "\x1e\x0f\U0002d303", // 𭌃
+ 0x2d304: "\x1e\x0f\U0002d304", // 𭌄
+ 0x2d305: "\x1e\x0f\U0002d305", // 𭌅
+ 0x2d306: "\x1e\x0f\U0002d306", // 𭌆
+ 0x2d307: "\x1e\x0f\U0002d307", // 𭌇
+ 0x2d308: "\x1e\x0f\U0002d308", // 𭌈
+ 0x2d309: "\x1e\x0f\U0002d309", // 𭌉
+ 0x2d30a: "\x1e\x10\U0002d30a", // 𭌊
+ 0x2d30b: "\x1e\x10\U0002d30b", // 𭌋
+ 0x2d30c: "\x1e\x10\U0002d30c", // 𭌌
+ 0x2d30d: "\x1e\x10\U0002d30d", // 𭌍
+ 0x2d30e: "\x1e\x10\U0002d30e", // 𭌎
+ 0x2d30f: "\x1e\x10\U0002d30f", // 𭌏
+ 0x2d310: "\x1e\x10\U0002d310", // 𭌐
+ 0x2d311: "\x1e\x10\U0002d311", // 𭌑
+ 0x2d312: "\x1e\x10\U0002d312", // 𭌒
+ 0x2d313: "\x1e\x10\U0002d313", // 𭌓
+ 0x2d314: "\x1e\x10\U0002d314", // 𭌔
+ 0x2d315: "\x1e\x10\U0002d315", // 𭌕
+ 0x2d316: "\x1e\x10\U0002d316", // 𭌖
+ 0x2d317: "\x1e\x10\U0002d317", // 𭌗
+ 0x2d318: "\x1e\x10\U0002d318", // 𭌘
+ 0x2d319: "\x1e\x10\U0002d319", // 𭌙
+ 0x2d31a: "\x1e\x10\U0002d31a", // 𭌚
+ 0x2d31b: "\x1e\x10\U0002d31b", // 𭌛
+ 0x2d31c: "\x1e\x10\U0002d31c", // 𭌜
+ 0x2d31d: "\x1e\x10\U0002d31d", // 𭌝
+ 0x2d31e: "\x1e\x10\U0002d31e", // 𭌞
+ 0x2d31f: "\x1e\x10\U0002d31f", // 𭌟
+ 0x2d320: "\x1e\x10\U0002d320", // 𭌠
+ 0x2d321: "\x1e\x10\U0002d321", // 𭌡
+ 0x2d322: "\x1e\x11\U0002d322", // 𭌢
+ 0x2d323: "\x1e\x11\U0002d323", // 𭌣
+ 0x2d324: "\x1e\x11\U0002d324", // 𭌤
+ 0x2d325: "\x1e\x11\U0002d325", // 𭌥
+ 0x2d326: "\x1e\x11\U0002d326", // 𭌦
+ 0x2d327: "\x1e\x11\U0002d327", // 𭌧
+ 0x2d328: "\x1e\x11\U0002d328", // 𭌨
+ 0x2d329: "\x1e\x11\U0002d329", // 𭌩
+ 0x2d32a: "\x1e\x11\U0002d32a", // 𭌪
+ 0x2d32b: "\x1e\x11\U0002d32b", // 𭌫
+ 0x2d32c: "\x1e\x11\U0002d32c", // 𭌬
+ 0x2d32d: "\x1e\x11\U0002d32d", // 𭌭
+ 0x2d32e: "\x1e\x11\U0002d32e", // 𭌮
+ 0x2d32f: "\x1e\x11\U0002d32f", // 𭌯
+ 0x2d330: "\x1e\x12\U0002d330", // 𭌰
+ 0x2d331: "\x1e\x12\U0002d331", // 𭌱
+ 0x2d332: "\x1e\x12\U0002d332", // 𭌲
+ 0x2d333: "\x1e\x12\U0002d333", // 𭌳
+ 0x2d334: "\x1e\x13\U0002d334", // 𭌴
+ 0x2d335: "\x1e\x13\U0002d335", // 𭌵
+ 0x2d336: "\x1e\x13\U0002d336", // 𭌶
+ 0x2d337: "\x1e\x13\U0002d337", // 𭌷
+ 0x2d338: "\x1e\x13\U0002d338", // 𭌸
+ 0x2d339: "\x1e\x13\U0002d339", // 𭌹
+ 0x2d33a: "\x1e\x13\U0002d33a", // 𭌺
+ 0x2d33b: "\x1e\x13\U0002d33b", // 𭌻
+ 0x2d33c: "\x1e\x13\U0002d33c", // 𭌼
+ 0x2d33d: "\x1e\x13\U0002d33d", // 𭌽
+ 0x2d33e: "\x1e\x14\U0002d33e", // 𭌾
+ 0x2d33f: "\x1e\x14\U0002d33f", // 𭌿
+ 0x2d340: "\x1e\x14\U0002d340", // 𭍀
+ 0x2d341: "\x1e\x14\U0002d341", // 𭍁
+ 0x2d342: "\x1e\x14\U0002d342", // 𭍂
+ 0x2d343: "\x1e\x14\U0002d343", // 𭍃
+ 0x2d344: "\x1e\x14\U0002d344", // 𭍄
+ 0x2d345: "\x1e\x14\U0002d345", // 𭍅
+ 0x2d346: "\x1e\x15\U0002d346", // 𭍆
+ 0x2d347: "\x1e\x15\U0002d347", // 𭍇
+ 0x2d348: "\x1e\x15\U0002d348", // 𭍈
+ 0x2d349: "\x1e\x15\U0002d349", // 𭍉
+ 0x2d34a: "\x1e\x15\U0002d34a", // 𭍊
+ 0x2d34b: "\x1e\x15\U0002d34b", // 𭍋
+ 0x2d34c: "\x1e\x16\U0002d34c", // 𭍌
+ 0x2d34d: "\x1e\x16\U0002d34d", // 𭍍
+ 0x2d34e: "\x1e\x16\U0002d34e", // 𭍎
+ 0x2d34f: "\x1e\x16\U0002d34f", // 𭍏
+ 0x2d350: "\x1e\x17\U0002d350", // 𭍐
+ 0x2d351: "\x1e\x17\U0002d351", // 𭍑
+ 0x2d352: "\x1e\x17\U0002d352", // 𭍒
+ 0x2d353: "\x1e\x18\U0002d353", // 𭍓
+ 0x2d354: "\x1e\x18\U0002d354", // 𭍔
+ 0x2d355: "\x1e\x19\U0002d355", // 𭍕
+ 0x2d356: "\x1e\x19\U0002d356", // 𭍖
+ 0x2d357: "\x1e\x19\U0002d357", // 𭍗
+ 0x2d358: "\x1e\x1b\U0002d358", // 𭍘
+ 0x2d359: "\x1e \U0002d359", // 𭍙
+ 0x2d35a: "\x1f\x02\U0002d35a", // 𭍚
+ 0x2d35b: "\x1f\x04\U0002d35b", // 𭍛
+ 0x2d35c: "\x1f\x04\U0002d35c", // 𭍜
+ 0x2d35d: "\x1f\x05\U0002d35d", // 𭍝
+ 0x2d35e: "\x1f\x06\U0002d35e", // 𭍞
+ 0x2d35f: "\x1f\x06\U0002d35f", // 𭍟
+ 0x2d360: "\x1f\a\U0002d360", // 𭍠
+ 0x2d361: "\x1f\a\U0002d361", // 𭍡
+ 0x2d362: "\x1f\a\U0002d362", // 𭍢
+ 0x2d363: "\x1f\a\U0002d363", // 𭍣
+ 0x2d364: "\x1f\a\U0002d364", // 𭍤
+ 0x2d365: "\x1f\b\U0002d365", // 𭍥
+ 0x2d366: "\x1f\b\U0002d366", // 𭍦
+ 0x2d367: "\x1f\b\U0002d367", // 𭍧
+ 0x2d368: "\x1f\b\U0002d368", // 𭍨
+ 0x2d369: "\x1f\t\U0002d369", // 𭍩
+ 0x2d36a: "\x1f\t\U0002d36a", // 𭍪
+ 0x2d36b: "\x1f\n\U0002d36b", // 𭍫
+ 0x2d36c: "\x1f\v\U0002d36c", // 𭍬
+ 0x2d36d: "\x1f\v\U0002d36d", // 𭍭
+ 0x2d36e: "\x1f\v\U0002d36e", // 𭍮
+ 0x2d36f: "\x1f\v\U0002d36f", // 𭍯
+ 0x2d370: "\x1f\v\U0002d370", // 𭍰
+ 0x2d371: "\x1f\f\U0002d371", // 𭍱
+ 0x2d372: "\x1f\f\U0002d372", // 𭍲
+ 0x2d373: "\x1f\f\U0002d373", // 𭍳
+ 0x2d374: "\x1f\r\U0002d374", // 𭍴
+ 0x2d375: "\x1f\x0e\U0002d375", // 𭍵
+ 0x2d376: "\x1f\x0f\U0002d376", // 𭍶
+ 0x2d377: "\x1f\x10\U0002d377", // 𭍷
+ 0x2d378: "\x1f\x12\U0002d378", // 𭍸
+ 0x2d379: "\x1f\x18\U0002d379", // 𭍹
+ 0x2d37a: " \x02\U0002d37a", // 𭍺
+ 0x2d37b: " \x03\U0002d37b", // 𭍻
+ 0x2d37c: " \x03\U0002d37c", // 𭍼
+ 0x2d37d: " \x03\U0002d37d", // 𭍽
+ 0x2d37e: " \x04\U0002d37e", // 𭍾
+ 0x2d37f: " \x04\U0002d37f", // 𭍿
+ 0x2d380: " \x04\U0002d380", // 𭎀
+ 0x2d381: " \x04\U0002d381", // 𭎁
+ 0x2d382: " \x04\U0002d382", // 𭎂
+ 0x2d383: " \x04\U0002d383", // 𭎃
+ 0x2d384: " \x04\U0002d384", // 𭎄
+ 0x2d385: " \x05\U0002d385", // 𭎅
+ 0x2d386: " \x05\U0002d386", // 𭎆
+ 0x2d387: " \x05\U0002d387", // 𭎇
+ 0x2d388: " \x05\U0002d388", // 𭎈
+ 0x2d389: " \x05\U0002d389", // 𭎉
+ 0x2d38a: " \x05\U0002d38a", // 𭎊
+ 0x2d38b: " \x05\U0002d38b", // 𭎋
+ 0x2d38c: " \x05\U0002d38c", // 𭎌
+ 0x2d38d: " \x05\U0002d38d", // 𭎍
+ 0x2d38e: " \x05\U0002d38e", // 𭎎
+ 0x2d38f: " \x06\U0002d38f", // 𭎏
+ 0x2d390: " \x06\U0002d390", // 𭎐
+ 0x2d391: " \x06\U0002d391", // 𭎑
+ 0x2d392: " \x06\U0002d392", // 𭎒
+ 0x2d393: " \x06\U0002d393", // 𭎓
+ 0x2d394: " \x06\U0002d394", // 𭎔
+ 0x2d395: " \x06\U0002d395", // 𭎕
+ 0x2d396: " \x06\U0002d396", // 𭎖
+ 0x2d397: " \x06\U0002d397", // 𭎗
+ 0x2d398: " \x06\U0002d398", // 𭎘
+ 0x2d399: " \x06\U0002d399", // 𭎙
+ 0x2d39a: " \x06\U0002d39a", // 𭎚
+ 0x2d39b: " \x06\U0002d39b", // 𭎛
+ 0x2d39c: " \a\U0002d39c", // 𭎜
+ 0x2d39d: " \a\U0002d39d", // 𭎝
+ 0x2d39e: " \a\U0002d39e", // 𭎞
+ 0x2d39f: " \a\U0002d39f", // 𭎟
+ 0x2d3a0: " \a\U0002d3a0", // 𭎠
+ 0x2d3a1: " \a\U0002d3a1", // 𭎡
+ 0x2d3a2: " \a\U0002d3a2", // 𭎢
+ 0x2d3a3: " \a\U0002d3a3", // 𭎣
+ 0x2d3a4: " \a\U0002d3a4", // 𭎤
+ 0x2d3a5: " \a\U0002d3a5", // 𭎥
+ 0x2d3a6: " \a\U0002d3a6", // 𭎦
+ 0x2d3a7: " \a\U0002d3a7", // 𭎧
+ 0x2d3a8: " \a\U0002d3a8", // 𭎨
+ 0x2d3a9: " \b\U0002d3a9", // 𭎩
+ 0x2d3aa: " \b\U0002d3aa", // 𭎪
+ 0x2d3ab: " \b\U0002d3ab", // 𭎫
+ 0x2d3ac: " \b\U0002d3ac", // 𭎬
+ 0x2d3ad: " \b\U0002d3ad", // 𭎭
+ 0x2d3ae: " \b\U0002d3ae", // 𭎮
+ 0x2d3af: " \b\U0002d3af", // 𭎯
+ 0x2d3b0: " \b\U0002d3b0", // 𭎰
+ 0x2d3b1: " \b\U0002d3b1", // 𭎱
+ 0x2d3b2: " \b\U0002d3b2", // 𭎲
+ 0x2d3b3: " \b\U0002d3b3", // 𭎳
+ 0x2d3b4: " \b\U0002d3b4", // 𭎴
+ 0x2d3b5: " \b\U0002d3b5", // 𭎵
+ 0x2d3b6: " \t\U0002d3b6", // 𭎶
+ 0x2d3b7: " \t\U0002d3b7", // 𭎷
+ 0x2d3b8: " \t\U0002d3b8", // 𭎸
+ 0x2d3b9: " \t\U0002d3b9", // 𭎹
+ 0x2d3ba: " \t\U0002d3ba", // 𭎺
+ 0x2d3bb: " \t\U0002d3bb", // 𭎻
+ 0x2d3bc: " \t\U0002d3bc", // 𭎼
+ 0x2d3bd: " \t\U0002d3bd", // 𭎽
+ 0x2d3be: " \t\U0002d3be", // 𭎾
+ 0x2d3bf: " \t\U0002d3bf", // 𭎿
+ 0x2d3c0: " \t\U0002d3c0", // 𭏀
+ 0x2d3c1: " \t\U0002d3c1", // 𭏁
+ 0x2d3c2: " \t\U0002d3c2", // 𭏂
+ 0x2d3c3: " \t\U0002d3c3", // 𭏃
+ 0x2d3c4: " \t\U0002d3c4", // 𭏄
+ 0x2d3c5: " \t\U0002d3c5", // 𭏅
+ 0x2d3c6: " \t\U0002d3c6", // 𭏆
+ 0x2d3c7: " \t\U0002d3c7", // 𭏇
+ 0x2d3c8: " \t\U0002d3c8", // 𭏈
+ 0x2d3c9: " \t\U0002d3c9", // 𭏉
+ 0x2d3ca: " \t\U0002d3ca", // 𭏊
+ 0x2d3cb: " \t\U0002d3cb", // 𭏋
+ 0x2d3cc: " \n\U0002d3cc", // 𭏌
+ 0x2d3cd: " \n\U0002d3cd", // 𭏍
+ 0x2d3ce: " \n\U0002d3ce", // 𭏎
+ 0x2d3cf: " \n\U0002d3cf", // 𭏏
+ 0x2d3d0: " \n\U0002d3d0", // 𭏐
+ 0x2d3d1: " \n\U0002d3d1", // 𭏑
+ 0x2d3d2: " \n\U0002d3d2", // 𭏒
+ 0x2d3d3: " \n\U0002d3d3", // 𭏓
+ 0x2d3d4: " \n\U0002d3d4", // 𭏔
+ 0x2d3d5: " \n\U0002d3d5", // 𭏕
+ 0x2d3d6: " \n\U0002d3d6", // 𭏖
+ 0x2d3d7: " \n\U0002d3d7", // 𭏗
+ 0x2d3d8: " \n\U0002d3d8", // 𭏘
+ 0x2d3d9: " \n\U0002d3d9", // 𭏙
+ 0x2d3da: " \n\U0002d3da", // 𭏚
+ 0x2d3db: " \n\U0002d3db", // 𭏛
+ 0x2d3dc: " \n\U0002d3dc", // 𭏜
+ 0x2d3dd: " \v\U0002d3dd", // 𭏝
+ 0x2d3de: " \v\U0002d3de", // 𭏞
+ 0x2d3df: " \v\U0002d3df", // 𭏟
+ 0x2d3e0: " \v\U0002d3e0", // 𭏠
+ 0x2d3e1: " \v\U0002d3e1", // 𭏡
+ 0x2d3e2: " \v\U0002d3e2", // 𭏢
+ 0x2d3e3: " \v\U0002d3e3", // 𭏣
+ 0x2d3e4: " \v\U0002d3e4", // 𭏤
+ 0x2d3e5: " \v\U0002d3e5", // 𭏥
+ 0x2d3e6: " \v\U0002d3e6", // 𭏦
+ 0x2d3e7: " \v\U0002d3e7", // 𭏧
+ 0x2d3e8: " \v\U0002d3e8", // 𭏨
+ 0x2d3e9: " \v\U0002d3e9", // 𭏩
+ 0x2d3ea: " \f\U0002d3ea", // 𭏪
+ 0x2d3eb: " \f\U0002d3eb", // 𭏫
+ 0x2d3ec: " \f\U0002d3ec", // 𭏬
+ 0x2d3ed: " \f\U0002d3ed", // 𭏭
+ 0x2d3ee: " \f\U0002d3ee", // 𭏮
+ 0x2d3ef: " \f\U0002d3ef", // 𭏯
+ 0x2d3f0: " \f\U0002d3f0", // 𭏰
+ 0x2d3f1: " \f\U0002d3f1", // 𭏱
+ 0x2d3f2: " \f\U0002d3f2", // 𭏲
+ 0x2d3f3: " \f\U0002d3f3", // 𭏳
+ 0x2d3f4: " \f\U0002d3f4", // 𭏴
+ 0x2d3f5: " \f\U0002d3f5", // 𭏵
+ 0x2d3f6: " \r\U0002d3f6", // 𭏶
+ 0x2d3f7: " \r\U0002d3f7", // 𭏷
+ 0x2d3f8: " \r\U0002d3f8", // 𭏸
+ 0x2d3f9: " \r\U0002d3f9", // 𭏹
+ 0x2d3fa: " \r\U0002d3fa", // 𭏺
+ 0x2d3fb: " \r\U0002d3fb", // 𭏻
+ 0x2d3fc: " \r\U0002d3fc", // 𭏼
+ 0x2d3fd: " \r\U0002d3fd", // 𭏽
+ 0x2d3fe: " \x0e\U0002d3fe", // 𭏾
+ 0x2d3ff: " \x0e\U0002d3ff", // 𭏿
+ 0x2d400: " \x0e\U0002d400", // 𭐀
+ 0x2d401: " \x0f\U0002d401", // 𭐁
+ 0x2d402: " \x0f\U0002d402", // 𭐂
+ 0x2d403: " \x0f\U0002d403", // 𭐃
+ 0x2d404: " \x0f\U0002d404", // 𭐄
+ 0x2d405: " \x10\U0002d405", // 𭐅
+ 0x2d406: " \x10\U0002d406", // 𭐆
+ 0x2d407: " \x10\U0002d407", // 𭐇
+ 0x2d408: " \x10\U0002d408", // 𭐈
+ 0x2d409: " \x10\U0002d409", // 𭐉
+ 0x2d40a: " \x11\U0002d40a", // 𭐊
+ 0x2d40b: " \x11\U0002d40b", // 𭐋
+ 0x2d40c: " \x12\U0002d40c", // 𭐌
+ 0x2d40d: " \x12\U0002d40d", // 𭐍
+ 0x2d40e: " \x12\U0002d40e", // 𭐎
+ 0x2d40f: " \x13\U0002d40f", // 𭐏
+ 0x2d410: " \x15\U0002d410", // 𭐐
+ 0x2d411: " \x17\U0002d411", // 𭐑
+ 0x2d412: "!\x05\U0002d412", // 𭐒
+ 0x2d413: "!\t\U0002d413", // 𭐓
+ 0x2d414: "!\t\U0002d414", // 𭐔
+ 0x2d415: "!\t\U0002d415", // 𭐕
+ 0x2d416: "!\n\U0002d416", // 𭐖
+ 0x2d417: "!\v\U0002d417", // 𭐗
+ 0x2d418: "!\f\U0002d418", // 𭐘
+ 0x2d419: "!\x0e\U0002d419", // 𭐙
+ 0x2d41a: "!\x10\U0002d41a", // 𭐚
+ 0x2d41b: "!\x13\U0002d41b", // 𭐛
+ 0x2d41c: "!\x15\U0002d41c", // 𭐜
+ 0x2d41d: "\"\x02\U0002d41d", // 𭐝
+ 0x2d41e: "\"\a\U0002d41e", // 𭐞
+ 0x2d41f: "#\x02\U0002d41f", // 𭐟
+ 0x2d420: "#\x05\U0002d420", // 𭐠
+ 0x2d421: "#\x05\U0002d421", // 𭐡
+ 0x2d422: "#\x06\U0002d422", // 𭐢
+ 0x2d423: "#\x06\U0002d423", // 𭐣
+ 0x2d424: "#\x06\U0002d424", // 𭐤
+ 0x2d425: "#\a\U0002d425", // 𭐥
+ 0x2d426: "#\a\U0002d426", // 𭐦
+ 0x2d427: "#\b\U0002d427", // 𭐧
+ 0x2d428: "#\n\U0002d428", // 𭐨
+ 0x2d429: "#\n\U0002d429", // 𭐩
+ 0x2d42a: "#\v\U0002d42a", // 𭐪
+ 0x2d42b: "#\v\U0002d42b", // 𭐫
+ 0x2d42c: "#\f\U0002d42c", // 𭐬
+ 0x2d42d: "#\r\U0002d42d", // 𭐭
+ 0x2d42e: "#\r\U0002d42e", // 𭐮
+ 0x2d42f: "#\x0e\U0002d42f", // 𭐯
+ 0x2d430: "#\x0f\U0002d430", // 𭐰
+ 0x2d431: "#\x10\U0002d431", // 𭐱
+ 0x2d432: "#\x13\U0002d432", // 𭐲
+ 0x2d433: "$\x03\U0002d433", // 𭐳
+ 0x2d434: "$\x03\U0002d434", // 𭐴
+ 0x2d435: "$\x04\U0002d435", // 𭐵
+ 0x2d436: "$\x05\U0002d436", // 𭐶
+ 0x2d437: "$\b\U0002d437", // 𭐷
+ 0x2d438: "$\b\U0002d438", // 𭐸
+ 0x2d439: "$\t\U0002d439", // 𭐹
+ 0x2d43a: "$\t\U0002d43a", // 𭐺
+ 0x2d43b: "$\t\U0002d43b", // 𭐻
+ 0x2d43c: "$\v\U0002d43c", // 𭐼
+ 0x2d43d: "$\v\U0002d43d", // 𭐽
+ 0x2d43e: "$\f\U0002d43e", // 𭐾
+ 0x2d43f: "$\f\U0002d43f", // 𭐿
+ 0x2d440: "$\x0e\U0002d440", // 𭑀
+ 0x2d441: "$\x0f\U0002d441", // 𭑁
+ 0x2d442: "%\x02\U0002d442", // 𭑂
+ 0x2d443: "%\x03\U0002d443", // 𭑃
+ 0x2d444: "%\x04\U0002d444", // 𭑄
+ 0x2d445: "%\x04\U0002d445", // 𭑅
+ 0x2d446: "%\x05\U0002d446", // 𭑆
+ 0x2d447: "%\x05\U0002d447", // 𭑇
+ 0x2d448: "%\x05\U0002d448", // 𭑈
+ 0x2d449: "%\x05\U0002d449", // 𭑉
+ 0x2d44a: "%\x05\U0002d44a", // 𭑊
+ 0x2d44b: "%\x05\U0002d44b", // 𭑋
+ 0x2d44c: "%\x06\U0002d44c", // 𭑌
+ 0x2d44d: "%\x06\U0002d44d", // 𭑍
+ 0x2d44e: "%\x06\U0002d44e", // 𭑎
+ 0x2d44f: "%\a\U0002d44f", // 𭑏
+ 0x2d450: "%\a\U0002d450", // 𭑐
+ 0x2d451: "%\a\U0002d451", // 𭑑
+ 0x2d452: "%\a\U0002d452", // 𭑒
+ 0x2d453: "%\b\U0002d453", // 𭑓
+ 0x2d454: "%\b\U0002d454", // 𭑔
+ 0x2d455: "%\b\U0002d455", // 𭑕
+ 0x2d456: "%\b\U0002d456", // 𭑖
+ 0x2d457: "%\t\U0002d457", // 𭑗
+ 0x2d458: "%\t\U0002d458", // 𭑘
+ 0x2d459: "%\t\U0002d459", // 𭑙
+ 0x2d45a: "%\t\U0002d45a", // 𭑚
+ 0x2d45b: "%\t\U0002d45b", // 𭑛
+ 0x2d45c: "%\n\U0002d45c", // 𭑜
+ 0x2d45d: "%\n\U0002d45d", // 𭑝
+ 0x2d45e: "%\n\U0002d45e", // 𭑞
+ 0x2d45f: "%\n\U0002d45f", // 𭑟
+ 0x2d460: "%\v\U0002d460", // 𭑠
+ 0x2d461: "%\r\U0002d461", // 𭑡
+ 0x2d462: "%\r\U0002d462", // 𭑢
+ 0x2d463: "%\r\U0002d463", // 𭑣
+ 0x2d464: "%\x0e\U0002d464", // 𭑤
+ 0x2d465: "%\x0f\U0002d465", // 𭑥
+ 0x2d466: "%\x10\U0002d466", // 𭑦
+ 0x2d467: "&\x02\U0002d467", // 𭑧
+ 0x2d468: "&\x02\U0002d468", // 𭑨
+ 0x2d469: "&\x02\U0002d469", // 𭑩
+ 0x2d46a: "&\x02\U0002d46a", // 𭑪
+ 0x2d46b: "&\x02\U0002d46b", // 𭑫
+ 0x2d46c: "&\x03\U0002d46c", // 𭑬
+ 0x2d46d: "&\x03\U0002d46d", // 𭑭
+ 0x2d46e: "&\x04\U0002d46e", // 𭑮
+ 0x2d46f: "&\x04\U0002d46f", // 𭑯
+ 0x2d470: "&\x05\U0002d470", // 𭑰
+ 0x2d471: "&\x05\U0002d471", // 𭑱
+ 0x2d472: "&\x05\U0002d472", // 𭑲
+ 0x2d473: "&\x05\U0002d473", // 𭑳
+ 0x2d474: "&\x05\U0002d474", // 𭑴
+ 0x2d475: "&\x05\U0002d475", // 𭑵
+ 0x2d476: "&\x06\U0002d476", // 𭑶
+ 0x2d477: "&\x06\U0002d477", // 𭑷
+ 0x2d478: "&\x06\U0002d478", // 𭑸
+ 0x2d479: "&\x06\U0002d479", // 𭑹
+ 0x2d47a: "&\a\U0002d47a", // 𭑺
+ 0x2d47b: "&\a\U0002d47b", // 𭑻
+ 0x2d47c: "&\a\U0002d47c", // 𭑼
+ 0x2d47d: "&\a\U0002d47d", // 𭑽
+ 0x2d47e: "&\a\U0002d47e", // 𭑾
+ 0x2d47f: "&\a\U0002d47f", // 𭑿
+ 0x2d480: "&\b\U0002d480", // 𭒀
+ 0x2d481: "&\b\U0002d481", // 𭒁
+ 0x2d482: "&\b\U0002d482", // 𭒂
+ 0x2d483: "&\b\U0002d483", // 𭒃
+ 0x2d484: "&\b\U0002d484", // 𭒄
+ 0x2d485: "&\t\U0002d485", // 𭒅
+ 0x2d486: "&\t\U0002d486", // 𭒆
+ 0x2d487: "&\t\U0002d487", // 𭒇
+ 0x2d488: "&\t\U0002d488", // 𭒈
+ 0x2d489: "&\t\U0002d489", // 𭒉
+ 0x2d48a: "&\t\U0002d48a", // 𭒊
+ 0x2d48b: "&\t\U0002d48b", // 𭒋
+ 0x2d48c: "&\t\U0002d48c", // 𭒌
+ 0x2d48d: "&\n\U0002d48d", // 𭒍
+ 0x2d48e: "&\n\U0002d48e", // 𭒎
+ 0x2d48f: "&\n\U0002d48f", // 𭒏
+ 0x2d490: "&\n\U0002d490", // 𭒐
+ 0x2d491: "&\n\U0002d491", // 𭒑
+ 0x2d492: "&\v\U0002d492", // 𭒒
+ 0x2d493: "&\v\U0002d493", // 𭒓
+ 0x2d494: "&\v\U0002d494", // 𭒔
+ 0x2d495: "&\v\U0002d495", // 𭒕
+ 0x2d496: "&\v\U0002d496", // 𭒖
+ 0x2d497: "&\v\U0002d497", // 𭒗
+ 0x2d498: "&\v\U0002d498", // 𭒘
+ 0x2d499: "&\v\U0002d499", // 𭒙
+ 0x2d49a: "&\v\U0002d49a", // 𭒚
+ 0x2d49b: "&\v\U0002d49b", // 𭒛
+ 0x2d49c: "&\v\U0002d49c", // 𭒜
+ 0x2d49d: "&\v\U0002d49d", // 𭒝
+ 0x2d49e: "&\f\U0002d49e", // 𭒞
+ 0x2d49f: "&\f\U0002d49f", // 𭒟
+ 0x2d4a0: "&\f\U0002d4a0", // 𭒠
+ 0x2d4a1: "&\f\U0002d4a1", // 𭒡
+ 0x2d4a2: "&\r\U0002d4a2", // 𭒢
+ 0x2d4a3: "&\r\U0002d4a3", // 𭒣
+ 0x2d4a4: "&\r\U0002d4a4", // 𭒤
+ 0x2d4a5: "&\r\U0002d4a5", // 𭒥
+ 0x2d4a6: "&\x0e\U0002d4a6", // 𭒦
+ 0x2d4a7: "&\x0e\U0002d4a7", // 𭒧
+ 0x2d4a8: "&\x0e\U0002d4a8", // 𭒨
+ 0x2d4a9: "&\x0f\U0002d4a9", // 𭒩
+ 0x2d4aa: "&\x0f\U0002d4aa", // 𭒪
+ 0x2d4ab: "&\x0f\U0002d4ab", // 𭒫
+ 0x2d4ac: "&\x0f\U0002d4ac", // 𭒬
+ 0x2d4ad: "&\x0f\U0002d4ad", // 𭒭
+ 0x2d4ae: "&\x10\U0002d4ae", // 𭒮
+ 0x2d4af: "&\x11\U0002d4af", // 𭒯
+ 0x2d4b0: "&\x11\U0002d4b0", // 𭒰
+ 0x2d4b1: "&\x11\U0002d4b1", // 𭒱
+ 0x2d4b2: "&\x11\U0002d4b2", // 𭒲
+ 0x2d4b3: "&\x11\U0002d4b3", // 𭒳
+ 0x2d4b4: "&\x15\U0002d4b4", // 𭒴
+ 0x2d4b5: "&\x16\U0002d4b5", // 𭒵
+ 0x2d4b6: "'\x02\U0002d4b6", // 𭒶
+ 0x2d4b7: "'\x02\U0002d4b7", // 𭒷
+ 0x2d4b8: "'\x02\U0002d4b8", // 𭒸
+ 0x2d4b9: "'\x02\U0002d4b9", // 𭒹
+ 0x2d4ba: "'\x03\U0002d4ba", // 𭒺
+ 0x2d4bb: "'\x03\U0002d4bb", // 𭒻
+ 0x2d4bc: "'\x03\U0002d4bc", // 𭒼
+ 0x2d4bd: "'\x05\U0002d4bd", // 𭒽
+ 0x2d4be: "'\x05\U0002d4be", // 𭒾
+ 0x2d4bf: "'\x05\U0002d4bf", // 𭒿
+ 0x2d4c0: "'\x05\U0002d4c0", // 𭓀
+ 0x2d4c1: "'\x06\U0002d4c1", // 𭓁
+ 0x2d4c2: "'\x06\U0002d4c2", // 𭓂
+ 0x2d4c3: "'\a\U0002d4c3", // 𭓃
+ 0x2d4c4: "'\a\U0002d4c4", // 𭓄
+ 0x2d4c5: "'\a\U0002d4c5", // 𭓅
+ 0x2d4c6: "'\a\U0002d4c6", // 𭓆
+ 0x2d4c7: "'\a\U0002d4c7", // 𭓇
+ 0x2d4c8: "'\b\U0002d4c8", // 𭓈
+ 0x2d4c9: "'\b\U0002d4c9", // 𭓉
+ 0x2d4ca: "'\b\U0002d4ca", // 𭓊
+ 0x2d4cb: "'\b\U0002d4cb", // 𭓋
+ 0x2d4cc: "'\b\U0002d4cc", // 𭓌
+ 0x2d4cd: "'\b\U0002d4cd", // 𭓍
+ 0x2d4ce: "'\b\U0002d4ce", // 𭓎
+ 0x2d4cf: "'\t\U0002d4cf", // 𭓏
+ 0x2d4d0: "'\t\U0002d4d0", // 𭓐
+ 0x2d4d1: "'\t\U0002d4d1", // 𭓑
+ 0x2d4d2: "'\t\U0002d4d2", // 𭓒
+ 0x2d4d3: "'\t\U0002d4d3", // 𭓓
+ 0x2d4d4: "'\t\U0002d4d4", // 𭓔
+ 0x2d4d5: "'\n\U0002d4d5", // 𭓕
+ 0x2d4d6: "'\n\U0002d4d6", // 𭓖
+ 0x2d4d7: "'\v\U0002d4d7", // 𭓗
+ 0x2d4d8: "'\v\U0002d4d8", // 𭓘
+ 0x2d4d9: "'\r\U0002d4d9", // 𭓙
+ 0x2d4da: "'\r\U0002d4da", // 𭓚
+ 0x2d4db: "'\x0e\U0002d4db", // 𭓛
+ 0x2d4dc: "'\x10\U0002d4dc", // 𭓜
+ 0x2d4dd: "'\x19\U0002d4dd", // 𭓝
+ 0x2d4de: "(\x03\U0002d4de", // 𭓞
+ 0x2d4df: "(\x04\U0002d4df", // 𭓟
+ 0x2d4e0: "(\x04\U0002d4e0", // 𭓠
+ 0x2d4e1: "(\x04\U0002d4e1", // 𭓡
+ 0x2d4e2: "(\x05\U0002d4e2", // 𭓢
+ 0x2d4e3: "(\x05\U0002d4e3", // 𭓣
+ 0x2d4e4: "(\x05\U0002d4e4", // 𭓤
+ 0x2d4e5: "(\x05\U0002d4e5", // 𭓥
+ 0x2d4e6: "(\x05\U0002d4e6", // 𭓦
+ 0x2d4e7: "(\x05\U0002d4e7", // 𭓧
+ 0x2d4e8: "(\x05\U0002d4e8", // 𭓨
+ 0x2d4e9: "(\x05\U0002d4e9", // 𭓩
+ 0x2d4ea: "(\x06\U0002d4ea", // 𭓪
+ 0x2d4eb: "(\x06\U0002d4eb", // 𭓫
+ 0x2d4ec: "(\x06\U0002d4ec", // 𭓬
+ 0x2d4ed: "(\x06\U0002d4ed", // 𭓭
+ 0x2d4ee: "(\x06\U0002d4ee", // 𭓮
+ 0x2d4ef: "(\x06\U0002d4ef", // 𭓯
+ 0x2d4f0: "(\a\U0002d4f0", // 𭓰
+ 0x2d4f1: "(\a\U0002d4f1", // 𭓱
+ 0x2d4f2: "(\a\U0002d4f2", // 𭓲
+ 0x2d4f3: "(\a\U0002d4f3", // 𭓳
+ 0x2d4f4: "(\b\U0002d4f4", // 𭓴
+ 0x2d4f5: "(\b\U0002d4f5", // 𭓵
+ 0x2d4f6: "(\b\U0002d4f6", // 𭓶
+ 0x2d4f7: "(\b\U0002d4f7", // 𭓷
+ 0x2d4f8: "(\b\U0002d4f8", // 𭓸
+ 0x2d4f9: "(\b\U0002d4f9", // 𭓹
+ 0x2d4fa: "(\b\U0002d4fa", // 𭓺
+ 0x2d4fb: "(\b\U0002d4fb", // 𭓻
+ 0x2d4fc: "(\b\U0002d4fc", // 𭓼
+ 0x2d4fd: "(\b\U0002d4fd", // 𭓽
+ 0x2d4fe: "(\b\U0002d4fe", // 𭓾
+ 0x2d4ff: "(\b\U0002d4ff", // 𭓿
+ 0x2d500: "(\t\U0002d500", // 𭔀
+ 0x2d501: "(\t\U0002d501", // 𭔁
+ 0x2d502: "(\t\U0002d502", // 𭔂
+ 0x2d503: "(\t\U0002d503", // 𭔃
+ 0x2d504: "(\t\U0002d504", // 𭔄
+ 0x2d505: "(\t\U0002d505", // 𭔅
+ 0x2d506: "(\n\U0002d506", // 𭔆
+ 0x2d507: "(\n\U0002d507", // 𭔇
+ 0x2d508: "(\n\U0002d508", // 𭔈
+ 0x2d509: "(\n\U0002d509", // 𭔉
+ 0x2d50a: "(\n\U0002d50a", // 𭔊
+ 0x2d50b: "(\n\U0002d50b", // 𭔋
+ 0x2d50c: "(\n\U0002d50c", // 𭔌
+ 0x2d50d: "(\v\U0002d50d", // 𭔍
+ 0x2d50e: "(\v\U0002d50e", // 𭔎
+ 0x2d50f: "(\v\U0002d50f", // 𭔏
+ 0x2d510: "(\v\U0002d510", // 𭔐
+ 0x2d511: "(\f\U0002d511", // 𭔑
+ 0x2d512: "(\f\U0002d512", // 𭔒
+ 0x2d513: "(\f\U0002d513", // 𭔓
+ 0x2d514: "(\f\U0002d514", // 𭔔
+ 0x2d515: "(\f\U0002d515", // 𭔕
+ 0x2d516: "(\f\U0002d516", // 𭔖
+ 0x2d517: "(\r\U0002d517", // 𭔗
+ 0x2d518: "(\r\U0002d518", // 𭔘
+ 0x2d519: "(\r\U0002d519", // 𭔙
+ 0x2d51a: "(\x0e\U0002d51a", // 𭔚
+ 0x2d51b: "(\x0e\U0002d51b", // 𭔛
+ 0x2d51c: "(\x0e\U0002d51c", // 𭔜
+ 0x2d51d: "(\x0e\U0002d51d", // 𭔝
+ 0x2d51e: "(\x0e\U0002d51e", // 𭔞
+ 0x2d51f: "(\x0f\U0002d51f", // 𭔟
+ 0x2d520: "(\x0f\U0002d520", // 𭔠
+ 0x2d521: "(\x0f\U0002d521", // 𭔡
+ 0x2d522: "(\x10\U0002d522", // 𭔢
+ 0x2d523: "(\x10\U0002d523", // 𭔣
+ 0x2d524: "(\x10\U0002d524", // 𭔤
+ 0x2d525: "(\x11\U0002d525", // 𭔥
+ 0x2d526: "(\x11\U0002d526", // 𭔦
+ 0x2d527: "(\x12\U0002d527", // 𭔧
+ 0x2d528: "(\x13\U0002d528", // 𭔨
+ 0x2d529: ")\x03\U0002d529", // 𭔩
+ 0x2d52a: ")\x04\U0002d52a", // 𭔪
+ 0x2d52b: ")\x05\U0002d52b", // 𭔫
+ 0x2d52c: ")\x05\U0002d52c", // 𭔬
+ 0x2d52d: ")\x06\U0002d52d", // 𭔭
+ 0x2d52e: ")\x06\U0002d52e", // 𭔮
+ 0x2d52f: ")\x06\U0002d52f", // 𭔯
+ 0x2d530: ")\a\U0002d530", // 𭔰
+ 0x2d531: ")\a\U0002d531", // 𭔱
+ 0x2d532: ")\a\U0002d532", // 𭔲
+ 0x2d533: ")\b\U0002d533", // 𭔳
+ 0x2d534: ")\b\U0002d534", // 𭔴
+ 0x2d535: ")\b\U0002d535", // 𭔵
+ 0x2d536: ")\t\U0002d536", // 𭔶
+ 0x2d537: ")\t\U0002d537", // 𭔷
+ 0x2d538: ")\t\U0002d538", // 𭔸
+ 0x2d539: ")\n\U0002d539", // 𭔹
+ 0x2d53a: ")\n\U0002d53a", // 𭔺
+ 0x2d53b: ")\n\U0002d53b", // 𭔻
+ 0x2d53c: ")\n\U0002d53c", // 𭔼
+ 0x2d53d: ")\v\U0002d53d", // 𭔽
+ 0x2d53e: ")\v\U0002d53e", // 𭔾
+ 0x2d53f: ")\v\U0002d53f", // 𭔿
+ 0x2d540: ")\f\U0002d540", // 𭕀
+ 0x2d541: ")\f\U0002d541", // 𭕁
+ 0x2d542: ")\r\U0002d542", // 𭕂
+ 0x2d543: ")\x10\U0002d543", // 𭕃
+ 0x2d544: "*\x00\U0002d544", // 𭕄
+ 0x2d545: "*\x03\U0002d545", // 𭕅
+ 0x2d546: "*\x04\U0002d546", // 𭕆
+ 0x2d547: "*\x04\U0002d547", // 𭕇
+ 0x2d548: "*\x05\U0002d548", // 𭕈
+ 0x2d549: "*\x05\U0002d549", // 𭕉
+ 0x2d54a: "*\x06\U0002d54a", // 𭕊
+ 0x2d54b: "*\n\U0002d54b", // 𭕋
+ 0x2d54c: "*\r\U0002d54c", // 𭕌
+ 0x2d54d: "+\x03\U0002d54d", // 𭕍
+ 0x2d54e: "+\x05\U0002d54e", // 𭕎
+ 0x2d54f: "+\b\U0002d54f", // 𭕏
+ 0x2d550: "+\b\U0002d550", // 𭕐
+ 0x2d551: "+\n\U0002d551", // 𭕑
+ 0x2d552: "+\n\U0002d552", // 𭕒
+ 0x2d553: "+\v\U0002d553", // 𭕓
+ 0x2d554: ",\x02\U0002d554", // 𭕔
+ 0x2d555: ",\x05\U0002d555", // 𭕕
+ 0x2d556: ",\x05\U0002d556", // 𭕖
+ 0x2d557: ",\x05\U0002d557", // 𭕗
+ 0x2d558: ",\x05\U0002d558", // 𭕘
+ 0x2d559: ",\x06\U0002d559", // 𭕙
+ 0x2d55a: ",\x06\U0002d55a", // 𭕚
+ 0x2d55b: ",\x06\U0002d55b", // 𭕛
+ 0x2d55c: ",\x06\U0002d55c", // 𭕜
+ 0x2d55d: ",\x06\U0002d55d", // 𭕝
+ 0x2d55e: ",\a\U0002d55e", // 𭕞
+ 0x2d55f: ",\a\U0002d55f", // 𭕟
+ 0x2d560: ",\b\U0002d560", // 𭕠
+ 0x2d561: ",\b\U0002d561", // 𭕡
+ 0x2d562: ",\b\U0002d562", // 𭕢
+ 0x2d563: ",\b\U0002d563", // 𭕣
+ 0x2d564: ",\t\U0002d564", // 𭕤
+ 0x2d565: ",\n\U0002d565", // 𭕥
+ 0x2d566: ",\n\U0002d566", // 𭕦
+ 0x2d567: ",\n\U0002d567", // 𭕧
+ 0x2d568: ",\n\U0002d568", // 𭕨
+ 0x2d569: ",\n\U0002d569", // 𭕩
+ 0x2d56a: ",\n\U0002d56a", // 𭕪
+ 0x2d56b: ",\n\U0002d56b", // 𭕫
+ 0x2d56c: ",\n\U0002d56c", // 𭕬
+ 0x2d56d: ",\n\U0002d56d", // 𭕭
+ 0x2d56e: ",\v\U0002d56e", // 𭕮
+ 0x2d56f: ",\v\U0002d56f", // 𭕯
+ 0x2d570: ",\f\U0002d570", // 𭕰
+ 0x2d571: ",\f\U0002d571", // 𭕱
+ 0x2d572: ",\f\U0002d572", // 𭕲
+ 0x2d573: ",\f\U0002d573", // 𭕳
+ 0x2d574: ",\f\U0002d574", // 𭕴
+ 0x2d575: ",\f\U0002d575", // 𭕵
+ 0x2d576: ",\x0e\U0002d576", // 𭕶
+ 0x2d577: ",\x0f\U0002d577", // 𭕷
+ 0x2d578: ",\x0f\U0002d578", // 𭕸
+ 0x2d579: ",\x10\U0002d579", // 𭕹
+ 0x2d57a: ",\x10\U0002d57a", // 𭕺
+ 0x2d57b: ",\x12\U0002d57b", // 𭕻
+ 0x2d57c: ",\x14\U0002d57c", // 𭕼
+ 0x2d57d: ",\x15\U0002d57d", // 𭕽
+ 0x2d57e: "-\x02\U0002d57e", // 𭕾
+ 0x2d57f: "-\x03\U0002d57f", // 𭕿
+ 0x2d580: ".\x02\U0002d580", // 𭖀
+ 0x2d581: ".\x03\U0002d581", // 𭖁
+ 0x2d582: ".\x03\U0002d582", // 𭖂
+ 0x2d583: ".\x03\U0002d583", // 𭖃
+ 0x2d584: ".\x03\U0002d584", // 𭖄
+ 0x2d585: ".\x04\U0002d585", // 𭖅
+ 0x2d586: ".\x04\U0002d586", // 𭖆
+ 0x2d587: ".\x04\U0002d587", // 𭖇
+ 0x2d588: ".\x04\U0002d588", // 𭖈
+ 0x2d589: ".\x04\U0002d589", // 𭖉
+ 0x2d58a: ".\x04\U0002d58a", // 𭖊
+ 0x2d58b: ".\x05\U0002d58b", // 𭖋
+ 0x2d58c: ".\x05\U0002d58c", // 𭖌
+ 0x2d58d: ".\x05\U0002d58d", // 𭖍
+ 0x2d58e: ".\x05\U0002d58e", // 𭖎
+ 0x2d58f: ".\x05\U0002d58f", // 𭖏
+ 0x2d590: ".\x05\U0002d590", // 𭖐
+ 0x2d591: ".\x05\U0002d591", // 𭖑
+ 0x2d592: ".\x05\U0002d592", // 𭖒
+ 0x2d593: ".\x05\U0002d593", // 𭖓
+ 0x2d594: ".\x05\U0002d594", // 𭖔
+ 0x2d595: ".\x06\U0002d595", // 𭖕
+ 0x2d596: ".\x06\U0002d596", // 𭖖
+ 0x2d597: ".\x06\U0002d597", // 𭖗
+ 0x2d598: ".\x06\U0002d598", // 𭖘
+ 0x2d599: ".\x06\U0002d599", // 𭖙
+ 0x2d59a: ".\x06\U0002d59a", // 𭖚
+ 0x2d59b: ".\x06\U0002d59b", // 𭖛
+ 0x2d59c: ".\x06\U0002d59c", // 𭖜
+ 0x2d59d: ".\x06\U0002d59d", // 𭖝
+ 0x2d59e: ".\x06\U0002d59e", // 𭖞
+ 0x2d59f: ".\a\U0002d59f", // 𭖟
+ 0x2d5a0: ".\a\U0002d5a0", // 𭖠
+ 0x2d5a1: ".\a\U0002d5a1", // 𭖡
+ 0x2d5a2: ".\a\U0002d5a2", // 𭖢
+ 0x2d5a3: ".\a\U0002d5a3", // 𭖣
+ 0x2d5a4: ".\a\U0002d5a4", // 𭖤
+ 0x2d5a5: ".\a\U0002d5a5", // 𭖥
+ 0x2d5a6: ".\a\U0002d5a6", // 𭖦
+ 0x2d5a7: ".\a\U0002d5a7", // 𭖧
+ 0x2d5a8: ".\a\U0002d5a8", // 𭖨
+ 0x2d5a9: ".\b\U0002d5a9", // 𭖩
+ 0x2d5aa: ".\b\U0002d5aa", // 𭖪
+ 0x2d5ab: ".\b\U0002d5ab", // 𭖫
+ 0x2d5ac: ".\b\U0002d5ac", // 𭖬
+ 0x2d5ad: ".\b\U0002d5ad", // 𭖭
+ 0x2d5ae: ".\b\U0002d5ae", // 𭖮
+ 0x2d5af: ".\b\U0002d5af", // 𭖯
+ 0x2d5b0: ".\b\U0002d5b0", // 𭖰
+ 0x2d5b1: ".\b\U0002d5b1", // 𭖱
+ 0x2d5b2: ".\t\U0002d5b2", // 𭖲
+ 0x2d5b3: ".\t\U0002d5b3", // 𭖳
+ 0x2d5b4: ".\t\U0002d5b4", // 𭖴
+ 0x2d5b5: ".\t\U0002d5b5", // 𭖵
+ 0x2d5b6: ".\t\U0002d5b6", // 𭖶
+ 0x2d5b7: ".\t\U0002d5b7", // 𭖷
+ 0x2d5b8: ".\t\U0002d5b8", // 𭖸
+ 0x2d5b9: ".\t\U0002d5b9", // 𭖹
+ 0x2d5ba: ".\t\U0002d5ba", // 𭖺
+ 0x2d5bb: ".\t\U0002d5bb", // 𭖻
+ 0x2d5bc: ".\t\U0002d5bc", // 𭖼
+ 0x2d5bd: ".\t\U0002d5bd", // 𭖽
+ 0x2d5be: ".\t\U0002d5be", // 𭖾
+ 0x2d5bf: ".\t\U0002d5bf", // 𭖿
+ 0x2d5c0: ".\n\U0002d5c0", // 𭗀
+ 0x2d5c1: ".\n\U0002d5c1", // 𭗁
+ 0x2d5c2: ".\n\U0002d5c2", // 𭗂
+ 0x2d5c3: ".\n\U0002d5c3", // 𭗃
+ 0x2d5c4: ".\n\U0002d5c4", // 𭗄
+ 0x2d5c5: ".\n\U0002d5c5", // 𭗅
+ 0x2d5c6: ".\n\U0002d5c6", // 𭗆
+ 0x2d5c7: ".\v\U0002d5c7", // 𭗇
+ 0x2d5c8: ".\v\U0002d5c8", // 𭗈
+ 0x2d5c9: ".\v\U0002d5c9", // 𭗉
+ 0x2d5ca: ".\v\U0002d5ca", // 𭗊
+ 0x2d5cb: ".\v\U0002d5cb", // 𭗋
+ 0x2d5cc: ".\v\U0002d5cc", // 𭗌
+ 0x2d5cd: ".\v\U0002d5cd", // 𭗍
+ 0x2d5ce: ".\v\U0002d5ce", // 𭗎
+ 0x2d5cf: ".\v\U0002d5cf", // 𭗏
+ 0x2d5d0: ".\v\U0002d5d0", // 𭗐
+ 0x2d5d1: ".\v\U0002d5d1", // 𭗑
+ 0x2d5d2: ".\v\U0002d5d2", // 𭗒
+ 0x2d5d3: ".\v\U0002d5d3", // 𭗓
+ 0x2d5d4: ".\f\U0002d5d4", // 𭗔
+ 0x2d5d5: ".\f\U0002d5d5", // 𭗕
+ 0x2d5d6: ".\f\U0002d5d6", // 𭗖
+ 0x2d5d7: ".\f\U0002d5d7", // 𭗗
+ 0x2d5d8: ".\f\U0002d5d8", // 𭗘
+ 0x2d5d9: ".\f\U0002d5d9", // 𭗙
+ 0x2d5da: ".\f\U0002d5da", // 𭗚
+ 0x2d5db: ".\f\U0002d5db", // 𭗛
+ 0x2d5dc: ".\f\U0002d5dc", // 𭗜
+ 0x2d5dd: ".\f\U0002d5dd", // 𭗝
+ 0x2d5de: ".\f\U0002d5de", // 𭗞
+ 0x2d5df: ".\r\U0002d5df", // 𭗟
+ 0x2d5e0: ".\r\U0002d5e0", // 𭗠
+ 0x2d5e1: ".\x0e\U0002d5e1", // 𭗡
+ 0x2d5e2: ".\x0e\U0002d5e2", // 𭗢
+ 0x2d5e3: ".\x0e\U0002d5e3", // 𭗣
+ 0x2d5e4: ".\x0e\U0002d5e4", // 𭗤
+ 0x2d5e5: ".\x0f\U0002d5e5", // 𭗥
+ 0x2d5e6: ".\x0f\U0002d5e6", // 𭗦
+ 0x2d5e7: ".\x0f\U0002d5e7", // 𭗧
+ 0x2d5e8: ".\x0f\U0002d5e8", // 𭗨
+ 0x2d5e9: ".\x0f\U0002d5e9", // 𭗩
+ 0x2d5ea: ".\x0f\U0002d5ea", // 𭗪
+ 0x2d5eb: ".\x0f\U0002d5eb", // 𭗫
+ 0x2d5ec: ".\x10\U0002d5ec", // 𭗬
+ 0x2d5ed: ".\x10\U0002d5ed", // 𭗭
+ 0x2d5ee: ".\x10\U0002d5ee", // 𭗮
+ 0x2d5ef: ".\x10\U0002d5ef", // 𭗯
+ 0x2d5f0: ".\x10\U0002d5f0", // 𭗰
+ 0x2d5f1: ".\x10\U0002d5f1", // 𭗱
+ 0x2d5f2: ".\x11\U0002d5f2", // 𭗲
+ 0x2d5f3: ".\x11\U0002d5f3", // 𭗳
+ 0x2d5f4: ".\x11\U0002d5f4", // 𭗴
+ 0x2d5f5: ".\x12\U0002d5f5", // 𭗵
+ 0x2d5f6: ".\x12\U0002d5f6", // 𭗶
+ 0x2d5f7: ".\x13\U0002d5f7", // 𭗷
+ 0x2d5f8: ".\x14\U0002d5f8", // 𭗸
+ 0x2d5f9: ".\x15\U0002d5f9", // 𭗹
+ 0x2d5fa: "/\x02\U0002d5fa", // 𭗺
+ 0x2d5fb: "/\x03\U0002d5fb", // 𭗻
+ 0x2d5fc: "/\x03\U0002d5fc", // 𭗼
+ 0x2d5fd: "/\x04\U0002d5fd", // 𭗽
+ 0x2d5fe: "/\x04\U0002d5fe", // 𭗾
+ 0x2d5ff: "/\x05\U0002d5ff", // 𭗿
+ 0x2d600: "/\x06\U0002d600", // 𭘀
+ 0x2d601: "/\a\U0002d601", // 𭘁
+ 0x2d602: "0\x01\U0002d602", // 𭘂
+ 0x2d603: "0\x03\U0002d603", // 𭘃
+ 0x2d604: "0\x03\U0002d604", // 𭘄
+ 0x2d605: "0\x03\U0002d605", // 𭘅
+ 0x2d606: "0\x05\U0002d606", // 𭘆
+ 0x2d607: "0\x06\U0002d607", // 𭘇
+ 0x2d608: "0\x06\U0002d608", // 𭘈
+ 0x2d609: "0\n\U0002d609", // 𭘉
+ 0x2d60a: "1\x04\U0002d60a", // 𭘊
+ 0x2d60b: "1\x05\U0002d60b", // 𭘋
+ 0x2d60c: "1\x05\U0002d60c", // 𭘌
+ 0x2d60d: "1\x06\U0002d60d", // 𭘍
+ 0x2d60e: "1\t\U0002d60e", // 𭘎
+ 0x2d60f: "1\t\U0002d60f", // 𭘏
+ 0x2d610: "1\x0f\U0002d610", // 𭘐
+ 0x2d611: "2\x03\U0002d611", // 𭘑
+ 0x2d612: "2\x03\U0002d612", // 𭘒
+ 0x2d613: "2\x04\U0002d613", // 𭘓
+ 0x2d614: "2\x04\U0002d614", // 𭘔
+ 0x2d615: "2\x05\U0002d615", // 𭘕
+ 0x2d616: "2\x05\U0002d616", // 𭘖
+ 0x2d617: "2\x05\U0002d617", // 𭘗
+ 0x2d618: "2\x05\U0002d618", // 𭘘
+ 0x2d619: "2\x05\U0002d619", // 𭘙
+ 0x2d61a: "2\x05\U0002d61a", // 𭘚
+ 0x2d61b: "2\x06\U0002d61b", // 𭘛
+ 0x2d61c: "2\x06\U0002d61c", // 𭘜
+ 0x2d61d: "2\x06\U0002d61d", // 𭘝
+ 0x2d61e: "2\x06\U0002d61e", // 𭘞
+ 0x2d61f: "2\a\U0002d61f", // 𭘟
+ 0x2d620: "2\a\U0002d620", // 𭘠
+ 0x2d621: "2\a\U0002d621", // 𭘡
+ 0x2d622: "2\a\U0002d622", // 𭘢
+ 0x2d623: "2\a\U0002d623", // 𭘣
+ 0x2d624: "2\b\U0002d624", // 𭘤
+ 0x2d625: "2\b\U0002d625", // 𭘥
+ 0x2d626: "2\b\U0002d626", // 𭘦
+ 0x2d627: "2\t\U0002d627", // 𭘧
+ 0x2d628: "2\t\U0002d628", // 𭘨
+ 0x2d629: "2\t\U0002d629", // 𭘩
+ 0x2d62a: "2\t\U0002d62a", // 𭘪
+ 0x2d62b: "2\t\U0002d62b", // 𭘫
+ 0x2d62c: "2\t\U0002d62c", // 𭘬
+ 0x2d62d: "2\t\U0002d62d", // 𭘭
+ 0x2d62e: "2\t\U0002d62e", // 𭘮
+ 0x2d62f: "2\n\U0002d62f", // 𭘯
+ 0x2d630: "2\n\U0002d630", // 𭘰
+ 0x2d631: "2\n\U0002d631", // 𭘱
+ 0x2d632: "2\v\U0002d632", // 𭘲
+ 0x2d633: "2\v\U0002d633", // 𭘳
+ 0x2d634: "2\v\U0002d634", // 𭘴
+ 0x2d635: "2\f\U0002d635", // 𭘵
+ 0x2d636: "2\r\U0002d636", // 𭘶
+ 0x2d637: "2\r\U0002d637", // 𭘷
+ 0x2d638: "2\r\U0002d638", // 𭘸
+ 0x2d639: "2\x0f\U0002d639", // 𭘹
+ 0x2d63a: "2\x0f\U0002d63a", // 𭘺
+ 0x2d63b: "2\x0f\U0002d63b", // 𭘻
+ 0x2d63c: "2\x10\U0002d63c", // 𭘼
+ 0x2d63d: "2\x14\U0002d63d", // 𭘽
+ 0x2d63e: "3\x03\U0002d63e", // 𭘾
+ 0x2d63f: "3\x05\U0002d63f", // 𭘿
+ 0x2d640: "3\x05\U0002d640", // 𭙀
+ 0x2d641: "3\x06\U0002d641", // 𭙁
+ 0x2d642: "3\a\U0002d642", // 𭙂
+ 0x2d643: "3\a\U0002d643", // 𭙃
+ 0x2d644: "3\v\U0002d644", // 𭙄
+ 0x2d645: "3\v\U0002d645", // 𭙅
+ 0x2d646: "3\v\U0002d646", // 𭙆
+ 0x2d647: "3\x0f\U0002d647", // 𭙇
+ 0x2d648: "4\x01\U0002d648", // 𭙈
+ 0x2d649: "4\x01\U0002d649", // 𭙉
+ 0x2d64a: "4\x02\U0002d64a", // 𭙊
+ 0x2d64b: "4\x04\U0002d64b", // 𭙋
+ 0x2d64c: "4\x06\U0002d64c", // 𭙌
+ 0x2d64d: "5\x02\U0002d64d", // 𭙍
+ 0x2d64e: "5\x02\U0002d64e", // 𭙎
+ 0x2d64f: "5\x02\U0002d64f", // 𭙏
+ 0x2d650: "5\x03\U0002d650", // 𭙐
+ 0x2d651: "5\x03\U0002d651", // 𭙑
+ 0x2d652: "5\x03\U0002d652", // 𭙒
+ 0x2d653: "5\x04\U0002d653", // 𭙓
+ 0x2d654: "5\x04\U0002d654", // 𭙔
+ 0x2d655: "5\x04\U0002d655", // 𭙕
+ 0x2d656: "5\x04\U0002d656", // 𭙖
+ 0x2d657: "5\x04\U0002d657", // 𭙗
+ 0x2d658: "5\x05\U0002d658", // 𭙘
+ 0x2d659: "5\x05\U0002d659", // 𭙙
+ 0x2d65a: "5\x06\U0002d65a", // 𭙚
+ 0x2d65b: "5\x06\U0002d65b", // 𭙛
+ 0x2d65c: "5\a\U0002d65c", // 𭙜
+ 0x2d65d: "5\a\U0002d65d", // 𭙝
+ 0x2d65e: "5\a\U0002d65e", // 𭙞
+ 0x2d65f: "5\a\U0002d65f", // 𭙟
+ 0x2d660: "5\a\U0002d660", // 𭙠
+ 0x2d661: "5\a\U0002d661", // 𭙡
+ 0x2d662: "5\b\U0002d662", // 𭙢
+ 0x2d663: "5\b\U0002d663", // 𭙣
+ 0x2d664: "5\t\U0002d664", // 𭙤
+ 0x2d665: "5\t\U0002d665", // 𭙥
+ 0x2d666: "5\t\U0002d666", // 𭙦
+ 0x2d667: "5\t\U0002d667", // 𭙧
+ 0x2d668: "5\n\U0002d668", // 𭙨
+ 0x2d669: "5\n\U0002d669", // 𭙩
+ 0x2d66a: "5\n\U0002d66a", // 𭙪
+ 0x2d66b: "5\n\U0002d66b", // 𭙫
+ 0x2d66c: "5\n\U0002d66c", // 𭙬
+ 0x2d66d: "5\n\U0002d66d", // 𭙭
+ 0x2d66e: "5\v\U0002d66e", // 𭙮
+ 0x2d66f: "5\v\U0002d66f", // 𭙯
+ 0x2d670: "5\v\U0002d670", // 𭙰
+ 0x2d671: "5\v\U0002d671", // 𭙱
+ 0x2d672: "5\v\U0002d672", // 𭙲
+ 0x2d673: "5\v\U0002d673", // 𭙳
+ 0x2d674: "5\f\U0002d674", // 𭙴
+ 0x2d675: "5\f\U0002d675", // 𭙵
+ 0x2d676: "5\f\U0002d676", // 𭙶
+ 0x2d677: "5\f\U0002d677", // 𭙷
+ 0x2d678: "5\f\U0002d678", // 𭙸
+ 0x2d679: "5\f\U0002d679", // 𭙹
+ 0x2d67a: "5\f\U0002d67a", // 𭙺
+ 0x2d67b: "5\f\U0002d67b", // 𭙻
+ 0x2d67c: "5\r\U0002d67c", // 𭙼
+ 0x2d67d: "5\r\U0002d67d", // 𭙽
+ 0x2d67e: "5\r\U0002d67e", // 𭙾
+ 0x2d67f: "5\r\U0002d67f", // 𭙿
+ 0x2d680: "5\r\U0002d680", // 𭚀
+ 0x2d681: "5\r\U0002d681", // 𭚁
+ 0x2d682: "5\r\U0002d682", // 𭚂
+ 0x2d683: "5\r\U0002d683", // 𭚃
+ 0x2d684: "5\x0e\U0002d684", // 𭚄
+ 0x2d685: "5\x0f\U0002d685", // 𭚅
+ 0x2d686: "5\x0f\U0002d686", // 𭚆
+ 0x2d687: "5\x0f\U0002d687", // 𭚇
+ 0x2d688: "5\x0f\U0002d688", // 𭚈
+ 0x2d689: "5\x10\U0002d689", // 𭚉
+ 0x2d68a: "5\x10\U0002d68a", // 𭚊
+ 0x2d68b: "5\x10\U0002d68b", // 𭚋
+ 0x2d68c: "5\x11\U0002d68c", // 𭚌
+ 0x2d68d: "5\x12\U0002d68d", // 𭚍
+ 0x2d68e: "5\x12\U0002d68e", // 𭚎
+ 0x2d68f: "5\x13\U0002d68f", // 𭚏
+ 0x2d690: "5\x13\U0002d690", // 𭚐
+ 0x2d691: "5\x15\U0002d691", // 𭚑
+ 0x2d692: "6\x04\U0002d692", // 𭚒
+ 0x2d693: "6\x04\U0002d693", // 𭚓
+ 0x2d694: "6\x04\U0002d694", // 𭚔
+ 0x2d695: "6\x05\U0002d695", // 𭚕
+ 0x2d696: "7\x06\U0002d696", // 𭚖
+ 0x2d697: "7\a\U0002d697", // 𭚗
+ 0x2d698: "7\a\U0002d698", // 𭚘
+ 0x2d699: "7\n\U0002d699", // 𭚙
+ 0x2d69a: "7\v\U0002d69a", // 𭚚
+ 0x2d69b: "7\r\U0002d69b", // 𭚛
+ 0x2d69c: "7\r\U0002d69c", // 𭚜
+ 0x2d69d: "7\r\U0002d69d", // 𭚝
+ 0x2d69e: "7\x14\U0002d69e", // 𭚞
+ 0x2d69f: "8\x02\U0002d69f", // 𭚟
+ 0x2d6a0: "8\x02\U0002d6a0", // 𭚠
+ 0x2d6a1: "8\x02\U0002d6a1", // 𭚡
+ 0x2d6a2: "8\b\U0002d6a2", // 𭚢
+ 0x2d6a3: "8\n\U0002d6a3", // 𭚣
+ 0x2d6a4: "8\n\U0002d6a4", // 𭚤
+ 0x2d6a5: "9\x01\U0002d6a5", // 𭚥
+ 0x2d6a6: "9\x03\U0002d6a6", // 𭚦
+ 0x2d6a7: "9\x04\U0002d6a7", // 𭚧
+ 0x2d6a8: "9\x04\U0002d6a8", // 𭚨
+ 0x2d6a9: "9\x05\U0002d6a9", // 𭚩
+ 0x2d6aa: "9\x05\U0002d6aa", // 𭚪
+ 0x2d6ab: "9\x05\U0002d6ab", // 𭚫
+ 0x2d6ac: "9\x06\U0002d6ac", // 𭚬
+ 0x2d6ad: "9\x06\U0002d6ad", // 𭚭
+ 0x2d6ae: "9\x06\U0002d6ae", // 𭚮
+ 0x2d6af: "9\x06\U0002d6af", // 𭚯
+ 0x2d6b0: "9\x06\U0002d6b0", // 𭚰
+ 0x2d6b1: "9\a\U0002d6b1", // 𭚱
+ 0x2d6b2: "9\a\U0002d6b2", // 𭚲
+ 0x2d6b3: "9\a\U0002d6b3", // 𭚳
+ 0x2d6b4: "9\a\U0002d6b4", // 𭚴
+ 0x2d6b5: "9\a\U0002d6b5", // 𭚵
+ 0x2d6b6: "9\b\U0002d6b6", // 𭚶
+ 0x2d6b7: "9\b\U0002d6b7", // 𭚷
+ 0x2d6b8: "9\b\U0002d6b8", // 𭚸
+ 0x2d6b9: "9\b\U0002d6b9", // 𭚹
+ 0x2d6ba: "9\t\U0002d6ba", // 𭚺
+ 0x2d6bb: "9\t\U0002d6bb", // 𭚻
+ 0x2d6bc: "9\t\U0002d6bc", // 𭚼
+ 0x2d6bd: "9\t\U0002d6bd", // 𭚽
+ 0x2d6be: "9\t\U0002d6be", // 𭚾
+ 0x2d6bf: "9\t\U0002d6bf", // 𭚿
+ 0x2d6c0: "9\t\U0002d6c0", // 𭛀
+ 0x2d6c1: "9\t\U0002d6c1", // 𭛁
+ 0x2d6c2: "9\n\U0002d6c2", // 𭛂
+ 0x2d6c3: "9\n\U0002d6c3", // 𭛃
+ 0x2d6c4: "9\v\U0002d6c4", // 𭛄
+ 0x2d6c5: "9\f\U0002d6c5", // 𭛅
+ 0x2d6c6: "9\f\U0002d6c6", // 𭛆
+ 0x2d6c7: "9\f\U0002d6c7", // 𭛇
+ 0x2d6c8: "9\r\U0002d6c8", // 𭛈
+ 0x2d6c9: "9\r\U0002d6c9", // 𭛉
+ 0x2d6ca: "9\x0e\U0002d6ca", // 𭛊
+ 0x2d6cb: "9\x0e\U0002d6cb", // 𭛋
+ 0x2d6cc: "9\x0f\U0002d6cc", // 𭛌
+ 0x2d6cd: ":\x05\U0002d6cd", // 𭛍
+ 0x2d6ce: ":\x05\U0002d6ce", // 𭛎
+ 0x2d6cf: ":\x06\U0002d6cf", // 𭛏
+ 0x2d6d0: ":\b\U0002d6d0", // 𭛐
+ 0x2d6d1: ":\t\U0002d6d1", // 𭛑
+ 0x2d6d2: ":\t\U0002d6d2", // 𭛒
+ 0x2d6d3: ";\x05\U0002d6d3", // 𭛓
+ 0x2d6d4: ";\n\U0002d6d4", // 𭛔
+ 0x2d6d5: ";\n\U0002d6d5", // 𭛕
+ 0x2d6d6: ";\v\U0002d6d6", // 𭛖
+ 0x2d6d7: ";\v\U0002d6d7", // 𭛗
+ 0x2d6d8: ";\v\U0002d6d8", // 𭛘
+ 0x2d6d9: ";\f\U0002d6d9", // 𭛙
+ 0x2d6da: ";\f\U0002d6da", // 𭛚
+ 0x2d6db: ";\f\U0002d6db", // 𭛛
+ 0x2d6dc: "<\x03\U0002d6dc", // 𭛜
+ 0x2d6dd: "<\x03\U0002d6dd", // 𭛝
+ 0x2d6de: "<\x04\U0002d6de", // 𭛞
+ 0x2d6df: "<\x05\U0002d6df", // 𭛟
+ 0x2d6e0: "<\x05\U0002d6e0", // 𭛠
+ 0x2d6e1: "<\x05\U0002d6e1", // 𭛡
+ 0x2d6e2: "<\x05\U0002d6e2", // 𭛢
+ 0x2d6e3: "<\x05\U0002d6e3", // 𭛣
+ 0x2d6e4: "<\x05\U0002d6e4", // 𭛤
+ 0x2d6e5: "<\x05\U0002d6e5", // 𭛥
+ 0x2d6e6: "<\x05\U0002d6e6", // 𭛦
+ 0x2d6e7: "<\x06\U0002d6e7", // 𭛧
+ 0x2d6e8: "<\x06\U0002d6e8", // 𭛨
+ 0x2d6e9: "<\x06\U0002d6e9", // 𭛩
+ 0x2d6ea: "<\a\U0002d6ea", // 𭛪
+ 0x2d6eb: "<\a\U0002d6eb", // 𭛫
+ 0x2d6ec: "<\a\U0002d6ec", // 𭛬
+ 0x2d6ed: "<\a\U0002d6ed", // 𭛭
+ 0x2d6ee: "<\a\U0002d6ee", // 𭛮
+ 0x2d6ef: "<\b\U0002d6ef", // 𭛯
+ 0x2d6f0: "<\b\U0002d6f0", // 𭛰
+ 0x2d6f1: "<\b\U0002d6f1", // 𭛱
+ 0x2d6f2: "<\b\U0002d6f2", // 𭛲
+ 0x2d6f3: "<\b\U0002d6f3", // 𭛳
+ 0x2d6f4: "<\b\U0002d6f4", // 𭛴
+ 0x2d6f5: "<\b\U0002d6f5", // 𭛵
+ 0x2d6f6: "<\b\U0002d6f6", // 𭛶
+ 0x2d6f7: "<\t\U0002d6f7", // 𭛷
+ 0x2d6f8: "<\t\U0002d6f8", // 𭛸
+ 0x2d6f9: "<\t\U0002d6f9", // 𭛹
+ 0x2d6fa: "<\t\U0002d6fa", // 𭛺
+ 0x2d6fb: "<\t\U0002d6fb", // 𭛻
+ 0x2d6fc: "<\t\U0002d6fc", // 𭛼
+ 0x2d6fd: "<\n\U0002d6fd", // 𭛽
+ 0x2d6fe: "<\v\U0002d6fe", // 𭛾
+ 0x2d6ff: "<\v\U0002d6ff", // 𭛿
+ 0x2d700: "<\v\U0002d700", // 𭜀
+ 0x2d701: "<\f\U0002d701", // 𭜁
+ 0x2d702: "<\f\U0002d702", // 𭜂
+ 0x2d703: "<\f\U0002d703", // 𭜃
+ 0x2d704: "<\f\U0002d704", // 𭜄
+ 0x2d705: "<\f\U0002d705", // 𭜅
+ 0x2d706: "<\r\U0002d706", // 𭜆
+ 0x2d707: "<\r\U0002d707", // 𭜇
+ 0x2d708: "<\r\U0002d708", // 𭜈
+ 0x2d709: "<\x0f\U0002d709", // 𭜉
+ 0x2d70a: "<\x10\U0002d70a", // 𭜊
+ 0x2d70b: "=\x03\U0002d70b", // 𭜋
+ 0x2d70c: "=\x03\U0002d70c", // 𭜌
+ 0x2d70d: "=\x03\U0002d70d", // 𭜍
+ 0x2d70e: "=\x03\U0002d70e", // 𭜎
+ 0x2d70f: "=\x04\U0002d70f", // 𭜏
+ 0x2d710: "=\x04\U0002d710", // 𭜐
+ 0x2d711: "=\x04\U0002d711", // 𭜑
+ 0x2d712: "=\x04\U0002d712", // 𭜒
+ 0x2d713: "=\x04\U0002d713", // 𭜓
+ 0x2d714: "=\x04\U0002d714", // 𭜔
+ 0x2d715: "=\x04\U0002d715", // 𭜕
+ 0x2d716: "=\x04\U0002d716", // 𭜖
+ 0x2d717: "=\x04\U0002d717", // 𭜗
+ 0x2d718: "=\x04\U0002d718", // 𭜘
+ 0x2d719: "=\x05\U0002d719", // 𭜙
+ 0x2d71a: "=\x05\U0002d71a", // 𭜚
+ 0x2d71b: "=\x05\U0002d71b", // 𭜛
+ 0x2d71c: "=\x05\U0002d71c", // 𭜜
+ 0x2d71d: "=\x05\U0002d71d", // 𭜝
+ 0x2d71e: "=\x05\U0002d71e", // 𭜞
+ 0x2d71f: "=\x05\U0002d71f", // 𭜟
+ 0x2d720: "=\x05\U0002d720", // 𭜠
+ 0x2d721: "=\x05\U0002d721", // 𭜡
+ 0x2d722: "=\x05\U0002d722", // 𭜢
+ 0x2d723: "=\x05\U0002d723", // 𭜣
+ 0x2d724: "=\x05\U0002d724", // 𭜤
+ 0x2d725: "=\x05\U0002d725", // 𭜥
+ 0x2d726: "=\x05\U0002d726", // 𭜦
+ 0x2d727: "=\x05\U0002d727", // 𭜧
+ 0x2d728: "=\x06\U0002d728", // 𭜨
+ 0x2d729: "=\x06\U0002d729", // 𭜩
+ 0x2d72a: "=\x06\U0002d72a", // 𭜪
+ 0x2d72b: "=\x06\U0002d72b", // 𭜫
+ 0x2d72c: "=\x06\U0002d72c", // 𭜬
+ 0x2d72d: "=\x06\U0002d72d", // 𭜭
+ 0x2d72e: "=\x06\U0002d72e", // 𭜮
+ 0x2d72f: "=\x06\U0002d72f", // 𭜯
+ 0x2d730: "=\x06\U0002d730", // 𭜰
+ 0x2d731: "=\x06\U0002d731", // 𭜱
+ 0x2d732: "=\x06\U0002d732", // 𭜲
+ 0x2d733: "=\x06\U0002d733", // 𭜳
+ 0x2d734: "=\x06\U0002d734", // 𭜴
+ 0x2d735: "=\x06\U0002d735", // 𭜵
+ 0x2d736: "=\a\U0002d736", // 𭜶
+ 0x2d737: "=\a\U0002d737", // 𭜷
+ 0x2d738: "=\a\U0002d738", // 𭜸
+ 0x2d739: "=\a\U0002d739", // 𭜹
+ 0x2d73a: "=\a\U0002d73a", // 𭜺
+ 0x2d73b: "=\a\U0002d73b", // 𭜻
+ 0x2d73c: "=\a\U0002d73c", // 𭜼
+ 0x2d73d: "=\a\U0002d73d", // 𭜽
+ 0x2d73e: "=\a\U0002d73e", // 𭜾
+ 0x2d73f: "=\a\U0002d73f", // 𭜿
+ 0x2d740: "=\a\U0002d740", // 𭝀
+ 0x2d741: "=\a\U0002d741", // 𭝁
+ 0x2d742: "=\a\U0002d742", // 𭝂
+ 0x2d743: "=\a\U0002d743", // 𭝃
+ 0x2d744: "=\a\U0002d744", // 𭝄
+ 0x2d745: "=\a\U0002d745", // 𭝅
+ 0x2d746: "=\a\U0002d746", // 𭝆
+ 0x2d747: "=\a\U0002d747", // 𭝇
+ 0x2d748: "=\a\U0002d748", // 𭝈
+ 0x2d749: "=\a\U0002d749", // 𭝉
+ 0x2d74a: "=\a\U0002d74a", // 𭝊
+ 0x2d74b: "=\a\U0002d74b", // 𭝋
+ 0x2d74c: "=\b\U0002d74c", // 𭝌
+ 0x2d74d: "=\b\U0002d74d", // 𭝍
+ 0x2d74e: "=\b\U0002d74e", // 𭝎
+ 0x2d74f: "=\b\U0002d74f", // 𭝏
+ 0x2d750: "=\b\U0002d750", // 𭝐
+ 0x2d751: "=\b\U0002d751", // 𭝑
+ 0x2d752: "=\b\U0002d752", // 𭝒
+ 0x2d753: "=\b\U0002d753", // 𭝓
+ 0x2d754: "=\b\U0002d754", // 𭝔
+ 0x2d755: "=\b\U0002d755", // 𭝕
+ 0x2d756: "=\b\U0002d756", // 𭝖
+ 0x2d757: "=\b\U0002d757", // 𭝗
+ 0x2d758: "=\b\U0002d758", // 𭝘
+ 0x2d759: "=\b\U0002d759", // 𭝙
+ 0x2d75a: "=\b\U0002d75a", // 𭝚
+ 0x2d75b: "=\b\U0002d75b", // 𭝛
+ 0x2d75c: "=\b\U0002d75c", // 𭝜
+ 0x2d75d: "=\b\U0002d75d", // 𭝝
+ 0x2d75e: "=\b\U0002d75e", // 𭝞
+ 0x2d75f: "=\b\U0002d75f", // 𭝟
+ 0x2d760: "=\b\U0002d760", // 𭝠
+ 0x2d761: "=\t\U0002d761", // 𭝡
+ 0x2d762: "=\t\U0002d762", // 𭝢
+ 0x2d763: "=\t\U0002d763", // 𭝣
+ 0x2d764: "=\t\U0002d764", // 𭝤
+ 0x2d765: "=\t\U0002d765", // 𭝥
+ 0x2d766: "=\t\U0002d766", // 𭝦
+ 0x2d767: "=\t\U0002d767", // 𭝧
+ 0x2d768: "=\t\U0002d768", // 𭝨
+ 0x2d769: "=\t\U0002d769", // 𭝩
+ 0x2d76a: "=\t\U0002d76a", // 𭝪
+ 0x2d76b: "=\t\U0002d76b", // 𭝫
+ 0x2d76c: "=\t\U0002d76c", // 𭝬
+ 0x2d76d: "=\t\U0002d76d", // 𭝭
+ 0x2d76e: "=\t\U0002d76e", // 𭝮
+ 0x2d76f: "=\t\U0002d76f", // 𭝯
+ 0x2d770: "=\t\U0002d770", // 𭝰
+ 0x2d771: "=\t\U0002d771", // 𭝱
+ 0x2d772: "=\t\U0002d772", // 𭝲
+ 0x2d773: "=\t\U0002d773", // 𭝳
+ 0x2d774: "=\t\U0002d774", // 𭝴
+ 0x2d775: "=\t\U0002d775", // 𭝵
+ 0x2d776: "=\t\U0002d776", // 𭝶
+ 0x2d777: "=\n\U0002d777", // 𭝷
+ 0x2d778: "=\n\U0002d778", // 𭝸
+ 0x2d779: "=\n\U0002d779", // 𭝹
+ 0x2d77a: "=\n\U0002d77a", // 𭝺
+ 0x2d77b: "=\n\U0002d77b", // 𭝻
+ 0x2d77c: "=\n\U0002d77c", // 𭝼
+ 0x2d77d: "=\n\U0002d77d", // 𭝽
+ 0x2d77e: "=\n\U0002d77e", // 𭝾
+ 0x2d77f: "=\n\U0002d77f", // 𭝿
+ 0x2d780: "=\n\U0002d780", // 𭞀
+ 0x2d781: "=\n\U0002d781", // 𭞁
+ 0x2d782: "=\n\U0002d782", // 𭞂
+ 0x2d783: "=\n\U0002d783", // 𭞃
+ 0x2d784: "=\n\U0002d784", // 𭞄
+ 0x2d785: "=\n\U0002d785", // 𭞅
+ 0x2d786: "=\n\U0002d786", // 𭞆
+ 0x2d787: "=\n\U0002d787", // 𭞇
+ 0x2d788: "=\n\U0002d788", // 𭞈
+ 0x2d789: "=\n\U0002d789", // 𭞉
+ 0x2d78a: "=\n\U0002d78a", // 𭞊
+ 0x2d78b: "=\n\U0002d78b", // 𭞋
+ 0x2d78c: "=\n\U0002d78c", // 𭞌
+ 0x2d78d: "=\v\U0002d78d", // 𭞍
+ 0x2d78e: "=\v\U0002d78e", // 𭞎
+ 0x2d78f: "=\v\U0002d78f", // 𭞏
+ 0x2d790: "=\v\U0002d790", // 𭞐
+ 0x2d791: "=\v\U0002d791", // 𭞑
+ 0x2d792: "=\v\U0002d792", // 𭞒
+ 0x2d793: "=\v\U0002d793", // 𭞓
+ 0x2d794: "=\v\U0002d794", // 𭞔
+ 0x2d795: "=\v\U0002d795", // 𭞕
+ 0x2d796: "=\v\U0002d796", // 𭞖
+ 0x2d797: "=\v\U0002d797", // 𭞗
+ 0x2d798: "=\v\U0002d798", // 𭞘
+ 0x2d799: "=\v\U0002d799", // 𭞙
+ 0x2d79a: "=\v\U0002d79a", // 𭞚
+ 0x2d79b: "=\v\U0002d79b", // 𭞛
+ 0x2d79c: "=\v\U0002d79c", // 𭞜
+ 0x2d79d: "=\v\U0002d79d", // 𭞝
+ 0x2d79e: "=\v\U0002d79e", // 𭞞
+ 0x2d79f: "=\v\U0002d79f", // 𭞟
+ 0x2d7a0: "=\v\U0002d7a0", // 𭞠
+ 0x2d7a1: "=\v\U0002d7a1", // 𭞡
+ 0x2d7a2: "=\v\U0002d7a2", // 𭞢
+ 0x2d7a3: "=\v\U0002d7a3", // 𭞣
+ 0x2d7a4: "=\v\U0002d7a4", // 𭞤
+ 0x2d7a5: "=\v\U0002d7a5", // 𭞥
+ 0x2d7a6: "=\f\U0002d7a6", // 𭞦
+ 0x2d7a7: "=\f\U0002d7a7", // 𭞧
+ 0x2d7a8: "=\f\U0002d7a8", // 𭞨
+ 0x2d7a9: "=\f\U0002d7a9", // 𭞩
+ 0x2d7aa: "=\f\U0002d7aa", // 𭞪
+ 0x2d7ab: "=\f\U0002d7ab", // 𭞫
+ 0x2d7ac: "=\f\U0002d7ac", // 𭞬
+ 0x2d7ad: "=\f\U0002d7ad", // 𭞭
+ 0x2d7ae: "=\f\U0002d7ae", // 𭞮
+ 0x2d7af: "=\f\U0002d7af", // 𭞯
+ 0x2d7b0: "=\f\U0002d7b0", // 𭞰
+ 0x2d7b1: "=\f\U0002d7b1", // 𭞱
+ 0x2d7b2: "=\f\U0002d7b2", // 𭞲
+ 0x2d7b3: "=\f\U0002d7b3", // 𭞳
+ 0x2d7b4: "=\f\U0002d7b4", // 𭞴
+ 0x2d7b5: "=\f\U0002d7b5", // 𭞵
+ 0x2d7b6: "=\f\U0002d7b6", // 𭞶
+ 0x2d7b7: "=\f\U0002d7b7", // 𭞷
+ 0x2d7b8: "=\f\U0002d7b8", // 𭞸
+ 0x2d7b9: "=\f\U0002d7b9", // 𭞹
+ 0x2d7ba: "=\r\U0002d7ba", // 𭞺
+ 0x2d7bb: "=\r\U0002d7bb", // 𭞻
+ 0x2d7bc: "=\r\U0002d7bc", // 𭞼
+ 0x2d7bd: "=\r\U0002d7bd", // 𭞽
+ 0x2d7be: "=\r\U0002d7be", // 𭞾
+ 0x2d7bf: "=\r\U0002d7bf", // 𭞿
+ 0x2d7c0: "=\r\U0002d7c0", // 𭟀
+ 0x2d7c1: "=\r\U0002d7c1", // 𭟁
+ 0x2d7c2: "=\r\U0002d7c2", // 𭟂
+ 0x2d7c3: "=\r\U0002d7c3", // 𭟃
+ 0x2d7c4: "=\r\U0002d7c4", // 𭟄
+ 0x2d7c5: "=\x0e\U0002d7c5", // 𭟅
+ 0x2d7c6: "=\x0e\U0002d7c6", // 𭟆
+ 0x2d7c7: "=\x0e\U0002d7c7", // 𭟇
+ 0x2d7c8: "=\x0e\U0002d7c8", // 𭟈
+ 0x2d7c9: "=\x0e\U0002d7c9", // 𭟉
+ 0x2d7ca: "=\x0e\U0002d7ca", // 𭟊
+ 0x2d7cb: "=\x0e\U0002d7cb", // 𭟋
+ 0x2d7cc: "=\x0e\U0002d7cc", // 𭟌
+ 0x2d7cd: "=\x0f\U0002d7cd", // 𭟍
+ 0x2d7ce: "=\x0f\U0002d7ce", // 𭟎
+ 0x2d7cf: "=\x0f\U0002d7cf", // 𭟏
+ 0x2d7d0: "=\x0f\U0002d7d0", // 𭟐
+ 0x2d7d1: "=\x0f\U0002d7d1", // 𭟑
+ 0x2d7d2: "=\x0f\U0002d7d2", // 𭟒
+ 0x2d7d3: "=\x0f\U0002d7d3", // 𭟓
+ 0x2d7d4: "=\x0f\U0002d7d4", // 𭟔
+ 0x2d7d5: "=\x0f\U0002d7d5", // 𭟕
+ 0x2d7d6: "=\x0f\U0002d7d6", // 𭟖
+ 0x2d7d7: "=\x0f\U0002d7d7", // 𭟗
+ 0x2d7d8: "=\x10\U0002d7d8", // 𭟘
+ 0x2d7d9: "=\x10\U0002d7d9", // 𭟙
+ 0x2d7da: "=\x10\U0002d7da", // 𭟚
+ 0x2d7db: "=\x10\U0002d7db", // 𭟛
+ 0x2d7dc: "=\x10\U0002d7dc", // 𭟜
+ 0x2d7dd: "=\x10\U0002d7dd", // 𭟝
+ 0x2d7de: "=\x10\U0002d7de", // 𭟞
+ 0x2d7df: "=\x11\U0002d7df", // 𭟟
+ 0x2d7e0: "=\x11\U0002d7e0", // 𭟠
+ 0x2d7e1: "=\x11\U0002d7e1", // 𭟡
+ 0x2d7e2: "=\x11\U0002d7e2", // 𭟢
+ 0x2d7e3: "=\x12\U0002d7e3", // 𭟣
+ 0x2d7e4: "=\x12\U0002d7e4", // 𭟤
+ 0x2d7e5: "=\x12\U0002d7e5", // 𭟥
+ 0x2d7e6: "=\x12\U0002d7e6", // 𭟦
+ 0x2d7e7: "=\x13\U0002d7e7", // 𭟧
+ 0x2d7e8: "=\x15\U0002d7e8", // 𭟨
+ 0x2d7e9: "=\x15\U0002d7e9", // 𭟩
+ 0x2d7ea: "=\x15\U0002d7ea", // 𭟪
+ 0x2d7eb: "=\x16\U0002d7eb", // 𭟫
+ 0x2d7ec: "=\x16\U0002d7ec", // 𭟬
+ 0x2d7ed: "=\x17\U0002d7ed", // 𭟭
+ 0x2d7ee: ">\x01\U0002d7ee", // 𭟮
+ 0x2d7ef: ">\x03\U0002d7ef", // 𭟯
+ 0x2d7f0: ">\x04\U0002d7f0", // 𭟰
+ 0x2d7f1: ">\x04\U0002d7f1", // 𭟱
+ 0x2d7f2: ">\x04\U0002d7f2", // 𭟲
+ 0x2d7f3: ">\x05\U0002d7f3", // 𭟳
+ 0x2d7f4: ">\a\U0002d7f4", // 𭟴
+ 0x2d7f5: ">\a\U0002d7f5", // 𭟵
+ 0x2d7f6: ">\b\U0002d7f6", // 𭟶
+ 0x2d7f7: ">\t\U0002d7f7", // 𭟷
+ 0x2d7f8: ">\n\U0002d7f8", // 𭟸
+ 0x2d7f9: ">\n\U0002d7f9", // 𭟹
+ 0x2d7fa: ">\v\U0002d7fa", // 𭟺
+ 0x2d7fb: ">\v\U0002d7fb", // 𭟻
+ 0x2d7fc: ">\v\U0002d7fc", // 𭟼
+ 0x2d7fd: ">\f\U0002d7fd", // 𭟽
+ 0x2d7fe: ">\r\U0002d7fe", // 𭟾
+ 0x2d7ff: "?\x01\U0002d7ff", // 𭟿
+ 0x2d800: "?\x03\U0002d800", // 𭠀
+ 0x2d801: "?\x04\U0002d801", // 𭠁
+ 0x2d802: "?\x04\U0002d802", // 𭠂
+ 0x2d803: "?\x05\U0002d803", // 𭠃
+ 0x2d804: "?\x05\U0002d804", // 𭠄
+ 0x2d805: "?\x05\U0002d805", // 𭠅
+ 0x2d806: "?\x05\U0002d806", // 𭠆
+ 0x2d807: "?\b\U0002d807", // 𭠇
+ 0x2d808: "?\b\U0002d808", // 𭠈
+ 0x2d809: "?\b\U0002d809", // 𭠉
+ 0x2d80a: "?\v\U0002d80a", // 𭠊
+ 0x2d80b: "?\f\U0002d80b", // 𭠋
+ 0x2d80c: "?\x14\U0002d80c", // 𭠌
+ 0x2d80d: "@\x00\U0002d80d", // 𭠍
+ 0x2d80e: "@\x02\U0002d80e", // 𭠎
+ 0x2d80f: "@\x03\U0002d80f", // 𭠏
+ 0x2d810: "@\x03\U0002d810", // 𭠐
+ 0x2d811: "@\x04\U0002d811", // 𭠑
+ 0x2d812: "@\x04\U0002d812", // 𭠒
+ 0x2d813: "@\x04\U0002d813", // 𭠓
+ 0x2d814: "@\x04\U0002d814", // 𭠔
+ 0x2d815: "@\x04\U0002d815", // 𭠕
+ 0x2d816: "@\x04\U0002d816", // 𭠖
+ 0x2d817: "@\x05\U0002d817", // 𭠗
+ 0x2d818: "@\x05\U0002d818", // 𭠘
+ 0x2d819: "@\x05\U0002d819", // 𭠙
+ 0x2d81a: "@\x05\U0002d81a", // 𭠚
+ 0x2d81b: "@\x05\U0002d81b", // 𭠛
+ 0x2d81c: "@\x05\U0002d81c", // 𭠜
+ 0x2d81d: "@\x05\U0002d81d", // 𭠝
+ 0x2d81e: "@\x05\U0002d81e", // 𭠞
+ 0x2d81f: "@\x05\U0002d81f", // 𭠟
+ 0x2d820: "@\x05\U0002d820", // 𭠠
+ 0x2d821: "@\x05\U0002d821", // 𭠡
+ 0x2d822: "@\x06\U0002d822", // 𭠢
+ 0x2d823: "@\x06\U0002d823", // 𭠣
+ 0x2d824: "@\x06\U0002d824", // 𭠤
+ 0x2d825: "@\x06\U0002d825", // 𭠥
+ 0x2d826: "@\x06\U0002d826", // 𭠦
+ 0x2d827: "@\x06\U0002d827", // 𭠧
+ 0x2d828: "@\x06\U0002d828", // 𭠨
+ 0x2d829: "@\x06\U0002d829", // 𭠩
+ 0x2d82a: "@\x06\U0002d82a", // 𭠪
+ 0x2d82b: "@\x06\U0002d82b", // 𭠫
+ 0x2d82c: "@\x06\U0002d82c", // 𭠬
+ 0x2d82d: "@\x06\U0002d82d", // 𭠭
+ 0x2d82e: "@\x06\U0002d82e", // 𭠮
+ 0x2d82f: "@\x06\U0002d82f", // 𭠯
+ 0x2d830: "@\x06\U0002d830", // 𭠰
+ 0x2d831: "@\x06\U0002d831", // 𭠱
+ 0x2d832: "@\x06\U0002d832", // 𭠲
+ 0x2d833: "@\a\U0002d833", // 𭠳
+ 0x2d834: "@\a\U0002d834", // 𭠴
+ 0x2d835: "@\a\U0002d835", // 𭠵
+ 0x2d836: "@\a\U0002d836", // 𭠶
+ 0x2d837: "@\a\U0002d837", // 𭠷
+ 0x2d838: "@\a\U0002d838", // 𭠸
+ 0x2d839: "@\a\U0002d839", // 𭠹
+ 0x2d83a: "@\a\U0002d83a", // 𭠺
+ 0x2d83b: "@\a\U0002d83b", // 𭠻
+ 0x2d83c: "@\a\U0002d83c", // 𭠼
+ 0x2d83d: "@\a\U0002d83d", // 𭠽
+ 0x2d83e: "@\a\U0002d83e", // 𭠾
+ 0x2d83f: "@\a\U0002d83f", // 𭠿
+ 0x2d840: "@\a\U0002d840", // 𭡀
+ 0x2d841: "@\a\U0002d841", // 𭡁
+ 0x2d842: "@\a\U0002d842", // 𭡂
+ 0x2d843: "@\a\U0002d843", // 𭡃
+ 0x2d844: "@\a\U0002d844", // 𭡄
+ 0x2d845: "@\a\U0002d845", // 𭡅
+ 0x2d846: "@\a\U0002d846", // 𭡆
+ 0x2d847: "@\a\U0002d847", // 𭡇
+ 0x2d848: "@\a\U0002d848", // 𭡈
+ 0x2d849: "@\b\U0002d849", // 𭡉
+ 0x2d84a: "@\b\U0002d84a", // 𭡊
+ 0x2d84b: "@\b\U0002d84b", // 𭡋
+ 0x2d84c: "@\b\U0002d84c", // 𭡌
+ 0x2d84d: "@\b\U0002d84d", // 𭡍
+ 0x2d84e: "@\b\U0002d84e", // 𭡎
+ 0x2d84f: "@\b\U0002d84f", // 𭡏
+ 0x2d850: "@\b\U0002d850", // 𭡐
+ 0x2d851: "@\b\U0002d851", // 𭡑
+ 0x2d852: "@\b\U0002d852", // 𭡒
+ 0x2d853: "@\b\U0002d853", // 𭡓
+ 0x2d854: "@\b\U0002d854", // 𭡔
+ 0x2d855: "@\b\U0002d855", // 𭡕
+ 0x2d856: "@\b\U0002d856", // 𭡖
+ 0x2d857: "@\b\U0002d857", // 𭡗
+ 0x2d858: "@\b\U0002d858", // 𭡘
+ 0x2d859: "@\b\U0002d859", // 𭡙
+ 0x2d85a: "@\b\U0002d85a", // 𭡚
+ 0x2d85b: "@\b\U0002d85b", // 𭡛
+ 0x2d85c: "@\b\U0002d85c", // 𭡜
+ 0x2d85d: "@\b\U0002d85d", // 𭡝
+ 0x2d85e: "@\t\U0002d85e", // 𭡞
+ 0x2d85f: "@\t\U0002d85f", // 𭡟
+ 0x2d860: "@\t\U0002d860", // 𭡠
+ 0x2d861: "@\t\U0002d861", // 𭡡
+ 0x2d862: "@\t\U0002d862", // 𭡢
+ 0x2d863: "@\t\U0002d863", // 𭡣
+ 0x2d864: "@\t\U0002d864", // 𭡤
+ 0x2d865: "@\t\U0002d865", // 𭡥
+ 0x2d866: "@\t\U0002d866", // 𭡦
+ 0x2d867: "@\t\U0002d867", // 𭡧
+ 0x2d868: "@\t\U0002d868", // 𭡨
+ 0x2d869: "@\t\U0002d869", // 𭡩
+ 0x2d86a: "@\t\U0002d86a", // 𭡪
+ 0x2d86b: "@\t\U0002d86b", // 𭡫
+ 0x2d86c: "@\t\U0002d86c", // 𭡬
+ 0x2d86d: "@\t\U0002d86d", // 𭡭
+ 0x2d86e: "@\t\U0002d86e", // 𭡮
+ 0x2d86f: "@\t\U0002d86f", // 𭡯
+ 0x2d870: "@\t\U0002d870", // 𭡰
+ 0x2d871: "@\t\U0002d871", // 𭡱
+ 0x2d872: "@\n\U0002d872", // 𭡲
+ 0x2d873: "@\n\U0002d873", // 𭡳
+ 0x2d874: "@\n\U0002d874", // 𭡴
+ 0x2d875: "@\n\U0002d875", // 𭡵
+ 0x2d876: "@\n\U0002d876", // 𭡶
+ 0x2d877: "@\n\U0002d877", // 𭡷
+ 0x2d878: "@\n\U0002d878", // 𭡸
+ 0x2d879: "@\n\U0002d879", // 𭡹
+ 0x2d87a: "@\n\U0002d87a", // 𭡺
+ 0x2d87b: "@\n\U0002d87b", // 𭡻
+ 0x2d87c: "@\n\U0002d87c", // 𭡼
+ 0x2d87d: "@\n\U0002d87d", // 𭡽
+ 0x2d87e: "@\n\U0002d87e", // 𭡾
+ 0x2d87f: "@\n\U0002d87f", // 𭡿
+ 0x2d880: "@\n\U0002d880", // 𭢀
+ 0x2d881: "@\n\U0002d881", // 𭢁
+ 0x2d882: "@\n\U0002d882", // 𭢂
+ 0x2d883: "@\n\U0002d883", // 𭢃
+ 0x2d884: "@\n\U0002d884", // 𭢄
+ 0x2d885: "@\n\U0002d885", // 𭢅
+ 0x2d886: "@\n\U0002d886", // 𭢆
+ 0x2d887: "@\v\U0002d887", // 𭢇
+ 0x2d888: "@\v\U0002d888", // 𭢈
+ 0x2d889: "@\v\U0002d889", // 𭢉
+ 0x2d88a: "@\v\U0002d88a", // 𭢊
+ 0x2d88b: "@\v\U0002d88b", // 𭢋
+ 0x2d88c: "@\v\U0002d88c", // 𭢌
+ 0x2d88d: "@\v\U0002d88d", // 𭢍
+ 0x2d88e: "@\v\U0002d88e", // 𭢎
+ 0x2d88f: "@\v\U0002d88f", // 𭢏
+ 0x2d890: "@\v\U0002d890", // 𭢐
+ 0x2d891: "@\v\U0002d891", // 𭢑
+ 0x2d892: "@\v\U0002d892", // 𭢒
+ 0x2d893: "@\v\U0002d893", // 𭢓
+ 0x2d894: "@\v\U0002d894", // 𭢔
+ 0x2d895: "@\v\U0002d895", // 𭢕
+ 0x2d896: "@\v\U0002d896", // 𭢖
+ 0x2d897: "@\f\U0002d897", // 𭢗
+ 0x2d898: "@\f\U0002d898", // 𭢘
+ 0x2d899: "@\f\U0002d899", // 𭢙
+ 0x2d89a: "@\f\U0002d89a", // 𭢚
+ 0x2d89b: "@\f\U0002d89b", // 𭢛
+ 0x2d89c: "@\f\U0002d89c", // 𭢜
+ 0x2d89d: "@\f\U0002d89d", // 𭢝
+ 0x2d89e: "@\f\U0002d89e", // 𭢞
+ 0x2d89f: "@\f\U0002d89f", // 𭢟
+ 0x2d8a0: "@\f\U0002d8a0", // 𭢠
+ 0x2d8a1: "@\f\U0002d8a1", // 𭢡
+ 0x2d8a2: "@\f\U0002d8a2", // 𭢢
+ 0x2d8a3: "@\r\U0002d8a3", // 𭢣
+ 0x2d8a4: "@\r\U0002d8a4", // 𭢤
+ 0x2d8a5: "@\r\U0002d8a5", // 𭢥
+ 0x2d8a6: "@\r\U0002d8a6", // 𭢦
+ 0x2d8a7: "@\r\U0002d8a7", // 𭢧
+ 0x2d8a8: "@\r\U0002d8a8", // 𭢨
+ 0x2d8a9: "@\r\U0002d8a9", // 𭢩
+ 0x2d8aa: "@\r\U0002d8aa", // 𭢪
+ 0x2d8ab: "@\r\U0002d8ab", // 𭢫
+ 0x2d8ac: "@\r\U0002d8ac", // 𭢬
+ 0x2d8ad: "@\r\U0002d8ad", // 𭢭
+ 0x2d8ae: "@\r\U0002d8ae", // 𭢮
+ 0x2d8af: "@\r\U0002d8af", // 𭢯
+ 0x2d8b0: "@\r\U0002d8b0", // 𭢰
+ 0x2d8b1: "@\r\U0002d8b1", // 𭢱
+ 0x2d8b2: "@\x0e\U0002d8b2", // 𭢲
+ 0x2d8b3: "@\x0e\U0002d8b3", // 𭢳
+ 0x2d8b4: "@\x0e\U0002d8b4", // 𭢴
+ 0x2d8b5: "@\x0e\U0002d8b5", // 𭢵
+ 0x2d8b6: "@\x0e\U0002d8b6", // 𭢶
+ 0x2d8b7: "@\x0e\U0002d8b7", // 𭢷
+ 0x2d8b8: "@\x0e\U0002d8b8", // 𭢸
+ 0x2d8b9: "@\x0e\U0002d8b9", // 𭢹
+ 0x2d8ba: "@\x0e\U0002d8ba", // 𭢺
+ 0x2d8bb: "@\x0e\U0002d8bb", // 𭢻
+ 0x2d8bc: "@\x0e\U0002d8bc", // 𭢼
+ 0x2d8bd: "@\x0e\U0002d8bd", // 𭢽
+ 0x2d8be: "@\x0f\U0002d8be", // 𭢾
+ 0x2d8bf: "@\x0f\U0002d8bf", // 𭢿
+ 0x2d8c0: "@\x0f\U0002d8c0", // 𭣀
+ 0x2d8c1: "@\x0f\U0002d8c1", // 𭣁
+ 0x2d8c2: "@\x0f\U0002d8c2", // 𭣂
+ 0x2d8c3: "@\x0f\U0002d8c3", // 𭣃
+ 0x2d8c4: "@\x10\U0002d8c4", // 𭣄
+ 0x2d8c5: "@\x10\U0002d8c5", // 𭣅
+ 0x2d8c6: "@\x10\U0002d8c6", // 𭣆
+ 0x2d8c7: "@\x10\U0002d8c7", // 𭣇
+ 0x2d8c8: "@\x10\U0002d8c8", // 𭣈
+ 0x2d8c9: "@\x10\U0002d8c9", // 𭣉
+ 0x2d8ca: "@\x10\U0002d8ca", // 𭣊
+ 0x2d8cb: "@\x10\U0002d8cb", // 𭣋
+ 0x2d8cc: "@\x11\U0002d8cc", // 𭣌
+ 0x2d8cd: "@\x11\U0002d8cd", // 𭣍
+ 0x2d8ce: "@\x11\U0002d8ce", // 𭣎
+ 0x2d8cf: "@\x11\U0002d8cf", // 𭣏
+ 0x2d8d0: "@\x11\U0002d8d0", // 𭣐
+ 0x2d8d1: "@\x12\U0002d8d1", // 𭣑
+ 0x2d8d2: "@\x12\U0002d8d2", // 𭣒
+ 0x2d8d3: "@\x1a\U0002d8d3", // 𭣓
+ 0x2d8d4: "A\x01\U0002d8d4", // 𭣔
+ 0x2d8d5: "A\x02\U0002d8d5", // 𭣕
+ 0x2d8d6: "A\x03\U0002d8d6", // 𭣖
+ 0x2d8d7: "A\x05\U0002d8d7", // 𭣗
+ 0x2d8d8: "A\x05\U0002d8d8", // 𭣘
+ 0x2d8d9: "A\t\U0002d8d9", // 𭣙
+ 0x2d8da: "A\t\U0002d8da", // 𭣚
+ 0x2d8db: "A\v\U0002d8db", // 𭣛
+ 0x2d8dc: "A\f\U0002d8dc", // 𭣜
+ 0x2d8dd: "A\f\U0002d8dd", // 𭣝
+ 0x2d8de: "A\r\U0002d8de", // 𭣞
+ 0x2d8df: "A\x0e\U0002d8df", // 𭣟
+ 0x2d8e0: "A\x13\U0002d8e0", // 𭣠
+ 0x2d8e1: "B\x02\U0002d8e1", // 𭣡
+ 0x2d8e2: "B\x03\U0002d8e2", // 𭣢
+ 0x2d8e3: "B\x03\U0002d8e3", // 𭣣
+ 0x2d8e4: "B\x04\U0002d8e4", // 𭣤
+ 0x2d8e5: "B\x05\U0002d8e5", // 𭣥
+ 0x2d8e6: "B\x05\U0002d8e6", // 𭣦
+ 0x2d8e7: "B\x05\U0002d8e7", // 𭣧
+ 0x2d8e8: "B\x05\U0002d8e8", // 𭣨
+ 0x2d8e9: "B\x05\U0002d8e9", // 𭣩
+ 0x2d8ea: "B\x06\U0002d8ea", // 𭣪
+ 0x2d8eb: "B\x06\U0002d8eb", // 𭣫
+ 0x2d8ec: "B\x06\U0002d8ec", // 𭣬
+ 0x2d8ed: "B\x06\U0002d8ed", // 𭣭
+ 0x2d8ee: "B\x06\U0002d8ee", // 𭣮
+ 0x2d8ef: "B\x06\U0002d8ef", // 𭣯
+ 0x2d8f0: "B\x06\U0002d8f0", // 𭣰
+ 0x2d8f1: "B\x06\U0002d8f1", // 𭣱
+ 0x2d8f2: "B\a\U0002d8f2", // 𭣲
+ 0x2d8f3: "B\a\U0002d8f3", // 𭣳
+ 0x2d8f4: "B\a\U0002d8f4", // 𭣴
+ 0x2d8f5: "B\a\U0002d8f5", // 𭣵
+ 0x2d8f6: "B\b\U0002d8f6", // 𭣶
+ 0x2d8f7: "B\b\U0002d8f7", // 𭣷
+ 0x2d8f8: "B\b\U0002d8f8", // 𭣸
+ 0x2d8f9: "B\b\U0002d8f9", // 𭣹
+ 0x2d8fa: "B\b\U0002d8fa", // 𭣺
+ 0x2d8fb: "B\b\U0002d8fb", // 𭣻
+ 0x2d8fc: "B\t\U0002d8fc", // 𭣼
+ 0x2d8fd: "B\t\U0002d8fd", // 𭣽
+ 0x2d8fe: "B\t\U0002d8fe", // 𭣾
+ 0x2d8ff: "B\t\U0002d8ff", // 𭣿
+ 0x2d900: "B\t\U0002d900", // 𭤀
+ 0x2d901: "B\t\U0002d901", // 𭤁
+ 0x2d902: "B\t\U0002d902", // 𭤂
+ 0x2d903: "B\n\U0002d903", // 𭤃
+ 0x2d904: "B\n\U0002d904", // 𭤄
+ 0x2d905: "B\n\U0002d905", // 𭤅
+ 0x2d906: "B\n\U0002d906", // 𭤆
+ 0x2d907: "B\n\U0002d907", // 𭤇
+ 0x2d908: "B\v\U0002d908", // 𭤈
+ 0x2d909: "B\v\U0002d909", // 𭤉
+ 0x2d90a: "B\v\U0002d90a", // 𭤊
+ 0x2d90b: "B\v\U0002d90b", // 𭤋
+ 0x2d90c: "B\r\U0002d90c", // 𭤌
+ 0x2d90d: "B\r\U0002d90d", // 𭤍
+ 0x2d90e: "B\x0e\U0002d90e", // 𭤎
+ 0x2d90f: "B\x0e\U0002d90f", // 𭤏
+ 0x2d910: "B\x11\U0002d910", // 𭤐
+ 0x2d911: "B\x11\U0002d911", // 𭤑
+ 0x2d912: "B\x12\U0002d912", // 𭤒
+ 0x2d913: "B\x15\U0002d913", // 𭤓
+ 0x2d914: "C\x03\U0002d914", // 𭤔
+ 0x2d915: "C\x05\U0002d915", // 𭤕
+ 0x2d916: "C\x05\U0002d916", // 𭤖
+ 0x2d917: "C\x05\U0002d917", // 𭤗
+ 0x2d918: "C\x05\U0002d918", // 𭤘
+ 0x2d919: "C\x05\U0002d919", // 𭤙
+ 0x2d91a: "C\r\U0002d91a", // 𭤚
+ 0x2d91b: "C\r\U0002d91b", // 𭤛
+ 0x2d91c: "D\v\U0002d91c", // 𭤜
+ 0x2d91d: "D\f\U0002d91d", // 𭤝
+ 0x2d91e: "D\x15\U0002d91e", // 𭤞
+ 0x2d91f: "E\x01\U0002d91f", // 𭤟
+ 0x2d920: "E\x04\U0002d920", // 𭤠
+ 0x2d921: "E\x05\U0002d921", // 𭤡
+ 0x2d922: "E\x05\U0002d922", // 𭤢
+ 0x2d923: "E\t\U0002d923", // 𭤣
+ 0x2d924: "E\t\U0002d924", // 𭤤
+ 0x2d925: "E\n\U0002d925", // 𭤥
+ 0x2d926: "E\r\U0002d926", // 𭤦
+ 0x2d927: "F\x00\U0002d927", // 𭤧
+ 0x2d928: "F\x02\U0002d928", // 𭤨
+ 0x2d929: "F\x02\U0002d929", // 𭤩
+ 0x2d92a: "F\x02\U0002d92a", // 𭤪
+ 0x2d92b: "F\x04\U0002d92b", // 𭤫
+ 0x2d92c: "F\x04\U0002d92c", // 𭤬
+ 0x2d92d: "F\x05\U0002d92d", // 𭤭
+ 0x2d92e: "F\x05\U0002d92e", // 𭤮
+ 0x2d92f: "F\x05\U0002d92f", // 𭤯
+ 0x2d930: "F\x05\U0002d930", // 𭤰
+ 0x2d931: "F\x05\U0002d931", // 𭤱
+ 0x2d932: "F\x05\U0002d932", // 𭤲
+ 0x2d933: "F\x05\U0002d933", // 𭤳
+ 0x2d934: "F\x05\U0002d934", // 𭤴
+ 0x2d935: "F\x06\U0002d935", // 𭤵
+ 0x2d936: "F\x06\U0002d936", // 𭤶
+ 0x2d937: "F\x06\U0002d937", // 𭤷
+ 0x2d938: "F\x06\U0002d938", // 𭤸
+ 0x2d939: "F\x06\U0002d939", // 𭤹
+ 0x2d93a: "F\a\U0002d93a", // 𭤺
+ 0x2d93b: "F\b\U0002d93b", // 𭤻
+ 0x2d93c: "F\b\U0002d93c", // 𭤼
+ 0x2d93d: "F\b\U0002d93d", // 𭤽
+ 0x2d93e: "F\b\U0002d93e", // 𭤾
+ 0x2d93f: "F\t\U0002d93f", // 𭤿
+ 0x2d940: "F\t\U0002d940", // 𭥀
+ 0x2d941: "F\n\U0002d941", // 𭥁
+ 0x2d942: "F\v\U0002d942", // 𭥂
+ 0x2d943: "F\v\U0002d943", // 𭥃
+ 0x2d944: "F\v\U0002d944", // 𭥄
+ 0x2d945: "F\f\U0002d945", // 𭥅
+ 0x2d946: "F\r\U0002d946", // 𭥆
+ 0x2d947: "F\x0e\U0002d947", // 𭥇
+ 0x2d948: "F\x0e\U0002d948", // 𭥈
+ 0x2d949: "F\x0f\U0002d949", // 𭥉
+ 0x2d94a: "G\x10\U0002d94a", // 𭥊
+ 0x2d94b: "H\x01\U0002d94b", // 𭥋
+ 0x2d94c: "H\x02\U0002d94c", // 𭥌
+ 0x2d94d: "H\x02\U0002d94d", // 𭥍
+ 0x2d94e: "H\x02\U0002d94e", // 𭥎
+ 0x2d94f: "H\x03\U0002d94f", // 𭥏
+ 0x2d950: "H\x03\U0002d950", // 𭥐
+ 0x2d951: "H\x03\U0002d951", // 𭥑
+ 0x2d952: "H\x04\U0002d952", // 𭥒
+ 0x2d953: "H\x04\U0002d953", // 𭥓
+ 0x2d954: "H\x04\U0002d954", // 𭥔
+ 0x2d955: "H\x04\U0002d955", // 𭥕
+ 0x2d956: "H\x04\U0002d956", // 𭥖
+ 0x2d957: "H\x04\U0002d957", // 𭥗
+ 0x2d958: "H\x04\U0002d958", // 𭥘
+ 0x2d959: "H\x04\U0002d959", // 𭥙
+ 0x2d95a: "H\x04\U0002d95a", // 𭥚
+ 0x2d95b: "H\x04\U0002d95b", // 𭥛
+ 0x2d95c: "H\x04\U0002d95c", // 𭥜
+ 0x2d95d: "H\x04\U0002d95d", // 𭥝
+ 0x2d95e: "H\x04\U0002d95e", // 𭥞
+ 0x2d95f: "H\x04\U0002d95f", // 𭥟
+ 0x2d960: "H\x04\U0002d960", // 𭥠
+ 0x2d961: "H\x05\U0002d961", // 𭥡
+ 0x2d962: "H\x05\U0002d962", // 𭥢
+ 0x2d963: "H\x05\U0002d963", // 𭥣
+ 0x2d964: "H\x05\U0002d964", // 𭥤
+ 0x2d965: "H\x05\U0002d965", // 𭥥
+ 0x2d966: "H\x05\U0002d966", // 𭥦
+ 0x2d967: "H\x05\U0002d967", // 𭥧
+ 0x2d968: "H\x05\U0002d968", // 𭥨
+ 0x2d969: "H\x05\U0002d969", // 𭥩
+ 0x2d96a: "H\x05\U0002d96a", // 𭥪
+ 0x2d96b: "H\x05\U0002d96b", // 𭥫
+ 0x2d96c: "H\x05\U0002d96c", // 𭥬
+ 0x2d96d: "H\x05\U0002d96d", // 𭥭
+ 0x2d96e: "H\x06\U0002d96e", // 𭥮
+ 0x2d96f: "H\x06\U0002d96f", // 𭥯
+ 0x2d970: "H\x06\U0002d970", // 𭥰
+ 0x2d971: "H\x06\U0002d971", // 𭥱
+ 0x2d972: "H\x06\U0002d972", // 𭥲
+ 0x2d973: "H\x06\U0002d973", // 𭥳
+ 0x2d974: "H\x06\U0002d974", // 𭥴
+ 0x2d975: "H\x06\U0002d975", // 𭥵
+ 0x2d976: "H\x06\U0002d976", // 𭥶
+ 0x2d977: "H\x06\U0002d977", // 𭥷
+ 0x2d978: "H\x06\U0002d978", // 𭥸
+ 0x2d979: "H\x06\U0002d979", // 𭥹
+ 0x2d97a: "H\x06\U0002d97a", // 𭥺
+ 0x2d97b: "H\x06\U0002d97b", // 𭥻
+ 0x2d97c: "H\x06\U0002d97c", // 𭥼
+ 0x2d97d: "H\x06\U0002d97d", // 𭥽
+ 0x2d97e: "H\x06\U0002d97e", // 𭥾
+ 0x2d97f: "H\x06\U0002d97f", // 𭥿
+ 0x2d980: "H\x06\U0002d980", // 𭦀
+ 0x2d981: "H\x06\U0002d981", // 𭦁
+ 0x2d982: "H\x06\U0002d982", // 𭦂
+ 0x2d983: "H\x06\U0002d983", // 𭦃
+ 0x2d984: "H\a\U0002d984", // 𭦄
+ 0x2d985: "H\a\U0002d985", // 𭦅
+ 0x2d986: "H\a\U0002d986", // 𭦆
+ 0x2d987: "H\a\U0002d987", // 𭦇
+ 0x2d988: "H\a\U0002d988", // 𭦈
+ 0x2d989: "H\a\U0002d989", // 𭦉
+ 0x2d98a: "H\a\U0002d98a", // 𭦊
+ 0x2d98b: "H\a\U0002d98b", // 𭦋
+ 0x2d98c: "H\a\U0002d98c", // 𭦌
+ 0x2d98d: "H\a\U0002d98d", // 𭦍
+ 0x2d98e: "H\a\U0002d98e", // 𭦎
+ 0x2d98f: "H\a\U0002d98f", // 𭦏
+ 0x2d990: "H\a\U0002d990", // 𭦐
+ 0x2d991: "H\a\U0002d991", // 𭦑
+ 0x2d992: "H\a\U0002d992", // 𭦒
+ 0x2d993: "H\a\U0002d993", // 𭦓
+ 0x2d994: "H\a\U0002d994", // 𭦔
+ 0x2d995: "H\a\U0002d995", // 𭦕
+ 0x2d996: "H\a\U0002d996", // 𭦖
+ 0x2d997: "H\a\U0002d997", // 𭦗
+ 0x2d998: "H\a\U0002d998", // 𭦘
+ 0x2d999: "H\b\U0002d999", // 𭦙
+ 0x2d99a: "H\b\U0002d99a", // 𭦚
+ 0x2d99b: "H\b\U0002d99b", // 𭦛
+ 0x2d99c: "H\b\U0002d99c", // 𭦜
+ 0x2d99d: "H\b\U0002d99d", // 𭦝
+ 0x2d99e: "H\b\U0002d99e", // 𭦞
+ 0x2d99f: "H\b\U0002d99f", // 𭦟
+ 0x2d9a0: "H\b\U0002d9a0", // 𭦠
+ 0x2d9a1: "H\b\U0002d9a1", // 𭦡
+ 0x2d9a2: "H\b\U0002d9a2", // 𭦢
+ 0x2d9a3: "H\b\U0002d9a3", // 𭦣
+ 0x2d9a4: "H\b\U0002d9a4", // 𭦤
+ 0x2d9a5: "H\b\U0002d9a5", // 𭦥
+ 0x2d9a6: "H\b\U0002d9a6", // 𭦦
+ 0x2d9a7: "H\b\U0002d9a7", // 𭦧
+ 0x2d9a8: "H\t\U0002d9a8", // 𭦨
+ 0x2d9a9: "H\t\U0002d9a9", // 𭦩
+ 0x2d9aa: "H\t\U0002d9aa", // 𭦪
+ 0x2d9ab: "H\t\U0002d9ab", // 𭦫
+ 0x2d9ac: "H\t\U0002d9ac", // 𭦬
+ 0x2d9ad: "H\t\U0002d9ad", // 𭦭
+ 0x2d9ae: "H\t\U0002d9ae", // 𭦮
+ 0x2d9af: "H\t\U0002d9af", // 𭦯
+ 0x2d9b0: "H\t\U0002d9b0", // 𭦰
+ 0x2d9b1: "H\t\U0002d9b1", // 𭦱
+ 0x2d9b2: "H\t\U0002d9b2", // 𭦲
+ 0x2d9b3: "H\t\U0002d9b3", // 𭦳
+ 0x2d9b4: "H\t\U0002d9b4", // 𭦴
+ 0x2d9b5: "H\t\U0002d9b5", // 𭦵
+ 0x2d9b6: "H\t\U0002d9b6", // 𭦶
+ 0x2d9b7: "H\t\U0002d9b7", // 𭦷
+ 0x2d9b8: "H\t\U0002d9b8", // 𭦸
+ 0x2d9b9: "H\t\U0002d9b9", // 𭦹
+ 0x2d9ba: "H\t\U0002d9ba", // 𭦺
+ 0x2d9bb: "H\t\U0002d9bb", // 𭦻
+ 0x2d9bc: "H\t\U0002d9bc", // 𭦼
+ 0x2d9bd: "H\t\U0002d9bd", // 𭦽
+ 0x2d9be: "H\t\U0002d9be", // 𭦾
+ 0x2d9bf: "H\t\U0002d9bf", // 𭦿
+ 0x2d9c0: "H\t\U0002d9c0", // 𭧀
+ 0x2d9c1: "H\t\U0002d9c1", // 𭧁
+ 0x2d9c2: "H\n\U0002d9c2", // 𭧂
+ 0x2d9c3: "H\n\U0002d9c3", // 𭧃
+ 0x2d9c4: "H\n\U0002d9c4", // 𭧄
+ 0x2d9c5: "H\n\U0002d9c5", // 𭧅
+ 0x2d9c6: "H\n\U0002d9c6", // 𭧆
+ 0x2d9c7: "H\n\U0002d9c7", // 𭧇
+ 0x2d9c8: "H\n\U0002d9c8", // 𭧈
+ 0x2d9c9: "H\n\U0002d9c9", // 𭧉
+ 0x2d9ca: "H\n\U0002d9ca", // 𭧊
+ 0x2d9cb: "H\n\U0002d9cb", // 𭧋
+ 0x2d9cc: "H\n\U0002d9cc", // 𭧌
+ 0x2d9cd: "H\n\U0002d9cd", // 𭧍
+ 0x2d9ce: "H\n\U0002d9ce", // 𭧎
+ 0x2d9cf: "H\n\U0002d9cf", // 𭧏
+ 0x2d9d0: "H\n\U0002d9d0", // 𭧐
+ 0x2d9d1: "H\n\U0002d9d1", // 𭧑
+ 0x2d9d2: "H\v\U0002d9d2", // 𭧒
+ 0x2d9d3: "H\v\U0002d9d3", // 𭧓
+ 0x2d9d4: "H\v\U0002d9d4", // 𭧔
+ 0x2d9d5: "H\v\U0002d9d5", // 𭧕
+ 0x2d9d6: "H\v\U0002d9d6", // 𭧖
+ 0x2d9d7: "H\v\U0002d9d7", // 𭧗
+ 0x2d9d8: "H\v\U0002d9d8", // 𭧘
+ 0x2d9d9: "H\v\U0002d9d9", // 𭧙
+ 0x2d9da: "H\v\U0002d9da", // 𭧚
+ 0x2d9db: "H\v\U0002d9db", // 𭧛
+ 0x2d9dc: "H\v\U0002d9dc", // 𭧜
+ 0x2d9dd: "H\v\U0002d9dd", // 𭧝
+ 0x2d9de: "H\v\U0002d9de", // 𭧞
+ 0x2d9df: "H\v\U0002d9df", // 𭧟
+ 0x2d9e0: "H\v\U0002d9e0", // 𭧠
+ 0x2d9e1: "H\v\U0002d9e1", // 𭧡
+ 0x2d9e2: "H\f\U0002d9e2", // 𭧢
+ 0x2d9e3: "H\f\U0002d9e3", // 𭧣
+ 0x2d9e4: "H\f\U0002d9e4", // 𭧤
+ 0x2d9e5: "H\f\U0002d9e5", // 𭧥
+ 0x2d9e6: "H\f\U0002d9e6", // 𭧦
+ 0x2d9e7: "H\f\U0002d9e7", // 𭧧
+ 0x2d9e8: "H\f\U0002d9e8", // 𭧨
+ 0x2d9e9: "H\f\U0002d9e9", // 𭧩
+ 0x2d9ea: "H\f\U0002d9ea", // 𭧪
+ 0x2d9eb: "H\f\U0002d9eb", // 𭧫
+ 0x2d9ec: "H\f\U0002d9ec", // 𭧬
+ 0x2d9ed: "H\f\U0002d9ed", // 𭧭
+ 0x2d9ee: "H\f\U0002d9ee", // 𭧮
+ 0x2d9ef: "H\f\U0002d9ef", // 𭧯
+ 0x2d9f0: "H\f\U0002d9f0", // 𭧰
+ 0x2d9f1: "H\f\U0002d9f1", // 𭧱
+ 0x2d9f2: "H\f\U0002d9f2", // 𭧲
+ 0x2d9f3: "H\f\U0002d9f3", // 𭧳
+ 0x2d9f4: "H\f\U0002d9f4", // 𭧴
+ 0x2d9f5: "H\r\U0002d9f5", // 𭧵
+ 0x2d9f6: "H\r\U0002d9f6", // 𭧶
+ 0x2d9f7: "H\r\U0002d9f7", // 𭧷
+ 0x2d9f8: "H\r\U0002d9f8", // 𭧸
+ 0x2d9f9: "H\r\U0002d9f9", // 𭧹
+ 0x2d9fa: "H\r\U0002d9fa", // 𭧺
+ 0x2d9fb: "H\r\U0002d9fb", // 𭧻
+ 0x2d9fc: "H\r\U0002d9fc", // 𭧼
+ 0x2d9fd: "H\r\U0002d9fd", // 𭧽
+ 0x2d9fe: "H\r\U0002d9fe", // 𭧾
+ 0x2d9ff: "H\x0e\U0002d9ff", // 𭧿
+ 0x2da00: "H\x0e\U0002da00", // 𭨀
+ 0x2da01: "H\x0e\U0002da01", // 𭨁
+ 0x2da02: "H\x0e\U0002da02", // 𭨂
+ 0x2da03: "H\x0e\U0002da03", // 𭨃
+ 0x2da04: "H\x0e\U0002da04", // 𭨄
+ 0x2da05: "H\x0e\U0002da05", // 𭨅
+ 0x2da06: "H\x0e\U0002da06", // 𭨆
+ 0x2da07: "H\x0e\U0002da07", // 𭨇
+ 0x2da08: "H\x0e\U0002da08", // 𭨈
+ 0x2da09: "H\x0e\U0002da09", // 𭨉
+ 0x2da0a: "H\x0f\U0002da0a", // 𭨊
+ 0x2da0b: "H\x0f\U0002da0b", // 𭨋
+ 0x2da0c: "H\x0f\U0002da0c", // 𭨌
+ 0x2da0d: "H\x10\U0002da0d", // 𭨍
+ 0x2da0e: "H\x10\U0002da0e", // 𭨎
+ 0x2da0f: "H\x10\U0002da0f", // 𭨏
+ 0x2da10: "H\x10\U0002da10", // 𭨐
+ 0x2da11: "H\x11\U0002da11", // 𭨑
+ 0x2da12: "H\x13\U0002da12", // 𭨒
+ 0x2da13: "H\x14\U0002da13", // 𭨓
+ 0x2da14: "H\x14\U0002da14", // 𭨔
+ 0x2da15: "H\x15\U0002da15", // 𭨕
+ 0x2da16: "H\x15\U0002da16", // 𭨖
+ 0x2da17: "H\x17\U0002da17", // 𭨗
+ 0x2da18: "I\x02\U0002da18", // 𭨘
+ 0x2da19: "I\x05\U0002da19", // 𭨙
+ 0x2da1a: "I\x05\U0002da1a", // 𭨚
+ 0x2da1b: "I\x06\U0002da1b", // 𭨛
+ 0x2da1c: "I\x06\U0002da1c", // 𭨜
+ 0x2da1d: "I\b\U0002da1d", // 𭨝
+ 0x2da1e: "I\n\U0002da1e", // 𭨞
+ 0x2da1f: "I\v\U0002da1f", // 𭨟
+ 0x2da20: "I\v\U0002da20", // 𭨠
+ 0x2da21: "I\v\U0002da21", // 𭨡
+ 0x2da22: "I\v\U0002da22", // 𭨢
+ 0x2da23: "I\x11\U0002da23", // 𭨣
+ 0x2da24: "J\x02\U0002da24", // 𭨤
+ 0x2da25: "J\x02\U0002da25", // 𭨥
+ 0x2da26: "J\x03\U0002da26", // 𭨦
+ 0x2da27: "J\x03\U0002da27", // 𭨧
+ 0x2da28: "J\x04\U0002da28", // 𭨨
+ 0x2da29: "J\x04\U0002da29", // 𭨩
+ 0x2da2a: "J\x04\U0002da2a", // 𭨪
+ 0x2da2b: "J\x04\U0002da2b", // 𭨫
+ 0x2da2c: "J\x04\U0002da2c", // 𭨬
+ 0x2da2d: "J\x04\U0002da2d", // 𭨭
+ 0x2da2e: "J\x05\U0002da2e", // 𭨮
+ 0x2da2f: "J\x05\U0002da2f", // 𭨯
+ 0x2da30: "J\x05\U0002da30", // 𭨰
+ 0x2da31: "J\x05\U0002da31", // 𭨱
+ 0x2da32: "J\x06\U0002da32", // 𭨲
+ 0x2da33: "J\x06\U0002da33", // 𭨳
+ 0x2da34: "J\a\U0002da34", // 𭨴
+ 0x2da35: "J\a\U0002da35", // 𭨵
+ 0x2da36: "J\a\U0002da36", // 𭨶
+ 0x2da37: "J\a\U0002da37", // 𭨷
+ 0x2da38: "J\a\U0002da38", // 𭨸
+ 0x2da39: "J\b\U0002da39", // 𭨹
+ 0x2da3a: "J\b\U0002da3a", // 𭨺
+ 0x2da3b: "J\b\U0002da3b", // 𭨻
+ 0x2da3c: "J\b\U0002da3c", // 𭨼
+ 0x2da3d: "J\b\U0002da3d", // 𭨽
+ 0x2da3e: "J\t\U0002da3e", // 𭨾
+ 0x2da3f: "J\t\U0002da3f", // 𭨿
+ 0x2da40: "J\t\U0002da40", // 𭩀
+ 0x2da41: "J\n\U0002da41", // 𭩁
+ 0x2da42: "J\n\U0002da42", // 𭩂
+ 0x2da43: "J\n\U0002da43", // 𭩃
+ 0x2da44: "J\v\U0002da44", // 𭩄
+ 0x2da45: "J\v\U0002da45", // 𭩅
+ 0x2da46: "J\f\U0002da46", // 𭩆
+ 0x2da47: "J\f\U0002da47", // 𭩇
+ 0x2da48: "J\f\U0002da48", // 𭩈
+ 0x2da49: "J\f\U0002da49", // 𭩉
+ 0x2da4a: "J\r\U0002da4a", // 𭩊
+ 0x2da4b: "J\r\U0002da4b", // 𭩋
+ 0x2da4c: "J\r\U0002da4c", // 𭩌
+ 0x2da4d: "J\r\U0002da4d", // 𭩍
+ 0x2da4e: "J\r\U0002da4e", // 𭩎
+ 0x2da4f: "J\x0e\U0002da4f", // 𭩏
+ 0x2da50: "J\x0e\U0002da50", // 𭩐
+ 0x2da51: "J\x0e\U0002da51", // 𭩑
+ 0x2da52: "J\x0f\U0002da52", // 𭩒
+ 0x2da53: "J\x0f\U0002da53", // 𭩓
+ 0x2da54: "J\x0f\U0002da54", // 𭩔
+ 0x2da55: "J\x0f\U0002da55", // 𭩕
+ 0x2da56: "J\x13\U0002da56", // 𭩖
+ 0x2da57: "J\x14\U0002da57", // 𭩗
+ 0x2da58: "K\x01\U0002da58", // 𭩘
+ 0x2da59: "K\x03\U0002da59", // 𭩙
+ 0x2da5a: "K\x03\U0002da5a", // 𭩚
+ 0x2da5b: "K\x03\U0002da5b", // 𭩛
+ 0x2da5c: "K\x04\U0002da5c", // 𭩜
+ 0x2da5d: "K\x04\U0002da5d", // 𭩝
+ 0x2da5e: "K\x04\U0002da5e", // 𭩞
+ 0x2da5f: "K\x04\U0002da5f", // 𭩟
+ 0x2da60: "K\x04\U0002da60", // 𭩠
+ 0x2da61: "K\x04\U0002da61", // 𭩡
+ 0x2da62: "K\x05\U0002da62", // 𭩢
+ 0x2da63: "K\x05\U0002da63", // 𭩣
+ 0x2da64: "K\x05\U0002da64", // 𭩤
+ 0x2da65: "K\x05\U0002da65", // 𭩥
+ 0x2da66: "K\x05\U0002da66", // 𭩦
+ 0x2da67: "K\x05\U0002da67", // 𭩧
+ 0x2da68: "K\x05\U0002da68", // 𭩨
+ 0x2da69: "K\x05\U0002da69", // 𭩩
+ 0x2da6a: "K\x05\U0002da6a", // 𭩪
+ 0x2da6b: "K\x05\U0002da6b", // 𭩫
+ 0x2da6c: "K\x05\U0002da6c", // 𭩬
+ 0x2da6d: "K\x05\U0002da6d", // 𭩭
+ 0x2da6e: "K\x05\U0002da6e", // 𭩮
+ 0x2da6f: "K\x05\U0002da6f", // 𭩯
+ 0x2da70: "K\x05\U0002da70", // 𭩰
+ 0x2da71: "K\x05\U0002da71", // 𭩱
+ 0x2da72: "K\x05\U0002da72", // 𭩲
+ 0x2da73: "K\x06\U0002da73", // 𭩳
+ 0x2da74: "K\x06\U0002da74", // 𭩴
+ 0x2da75: "K\x06\U0002da75", // 𭩵
+ 0x2da76: "K\x06\U0002da76", // 𭩶
+ 0x2da77: "K\x06\U0002da77", // 𭩷
+ 0x2da78: "K\x06\U0002da78", // 𭩸
+ 0x2da79: "K\x06\U0002da79", // 𭩹
+ 0x2da7a: "K\x06\U0002da7a", // 𭩺
+ 0x2da7b: "K\x06\U0002da7b", // 𭩻
+ 0x2da7c: "K\x06\U0002da7c", // 𭩼
+ 0x2da7d: "K\x06\U0002da7d", // 𭩽
+ 0x2da7e: "K\x06\U0002da7e", // 𭩾
+ 0x2da7f: "K\x06\U0002da7f", // 𭩿
+ 0x2da80: "K\x06\U0002da80", // 𭪀
+ 0x2da81: "K\x06\U0002da81", // 𭪁
+ 0x2da82: "K\x06\U0002da82", // 𭪂
+ 0x2da83: "K\a\U0002da83", // 𭪃
+ 0x2da84: "K\a\U0002da84", // 𭪄
+ 0x2da85: "K\a\U0002da85", // 𭪅
+ 0x2da86: "K\a\U0002da86", // 𭪆
+ 0x2da87: "K\a\U0002da87", // 𭪇
+ 0x2da88: "K\a\U0002da88", // 𭪈
+ 0x2da89: "K\a\U0002da89", // 𭪉
+ 0x2da8a: "K\a\U0002da8a", // 𭪊
+ 0x2da8b: "K\a\U0002da8b", // 𭪋
+ 0x2da8c: "K\a\U0002da8c", // 𭪌
+ 0x2da8d: "K\a\U0002da8d", // 𭪍
+ 0x2da8e: "K\a\U0002da8e", // 𭪎
+ 0x2da8f: "K\a\U0002da8f", // 𭪏
+ 0x2da90: "K\a\U0002da90", // 𭪐
+ 0x2da91: "K\a\U0002da91", // 𭪑
+ 0x2da92: "K\a\U0002da92", // 𭪒
+ 0x2da93: "K\a\U0002da93", // 𭪓
+ 0x2da94: "K\a\U0002da94", // 𭪔
+ 0x2da95: "K\a\U0002da95", // 𭪕
+ 0x2da96: "K\a\U0002da96", // 𭪖
+ 0x2da97: "K\a\U0002da97", // 𭪗
+ 0x2da98: "K\b\U0002da98", // 𭪘
+ 0x2da99: "K\b\U0002da99", // 𭪙
+ 0x2da9a: "K\b\U0002da9a", // 𭪚
+ 0x2da9b: "K\b\U0002da9b", // 𭪛
+ 0x2da9c: "K\b\U0002da9c", // 𭪜
+ 0x2da9d: "K\b\U0002da9d", // 𭪝
+ 0x2da9e: "K\b\U0002da9e", // 𭪞
+ 0x2da9f: "K\b\U0002da9f", // 𭪟
+ 0x2daa0: "K\b\U0002daa0", // 𭪠
+ 0x2daa1: "K\b\U0002daa1", // 𭪡
+ 0x2daa2: "K\b\U0002daa2", // 𭪢
+ 0x2daa3: "K\b\U0002daa3", // 𭪣
+ 0x2daa4: "K\b\U0002daa4", // 𭪤
+ 0x2daa5: "K\b\U0002daa5", // 𭪥
+ 0x2daa6: "K\b\U0002daa6", // 𭪦
+ 0x2daa7: "K\b\U0002daa7", // 𭪧
+ 0x2daa8: "K\b\U0002daa8", // 𭪨
+ 0x2daa9: "K\b\U0002daa9", // 𭪩
+ 0x2daaa: "K\b\U0002daaa", // 𭪪
+ 0x2daab: "K\b\U0002daab", // 𭪫
+ 0x2daac: "K\b\U0002daac", // 𭪬
+ 0x2daad: "K\b\U0002daad", // 𭪭
+ 0x2daae: "K\b\U0002daae", // 𭪮
+ 0x2daaf: "K\b\U0002daaf", // 𭪯
+ 0x2dab0: "K\b\U0002dab0", // 𭪰
+ 0x2dab1: "K\b\U0002dab1", // 𭪱
+ 0x2dab2: "K\b\U0002dab2", // 𭪲
+ 0x2dab3: "K\b\U0002dab3", // 𭪳
+ 0x2dab4: "K\b\U0002dab4", // 𭪴
+ 0x2dab5: "K\b\U0002dab5", // 𭪵
+ 0x2dab6: "K\t\U0002dab6", // 𭪶
+ 0x2dab7: "K\t\U0002dab7", // 𭪷
+ 0x2dab8: "K\t\U0002dab8", // 𭪸
+ 0x2dab9: "K\t\U0002dab9", // 𭪹
+ 0x2daba: "K\t\U0002daba", // 𭪺
+ 0x2dabb: "K\t\U0002dabb", // 𭪻
+ 0x2dabc: "K\t\U0002dabc", // 𭪼
+ 0x2dabd: "K\t\U0002dabd", // 𭪽
+ 0x2dabe: "K\t\U0002dabe", // 𭪾
+ 0x2dabf: "K\t\U0002dabf", // 𭪿
+ 0x2dac0: "K\t\U0002dac0", // 𭫀
+ 0x2dac1: "K\t\U0002dac1", // 𭫁
+ 0x2dac2: "K\t\U0002dac2", // 𭫂
+ 0x2dac3: "K\t\U0002dac3", // 𭫃
+ 0x2dac4: "K\t\U0002dac4", // 𭫄
+ 0x2dac5: "K\t\U0002dac5", // 𭫅
+ 0x2dac6: "K\t\U0002dac6", // 𭫆
+ 0x2dac7: "K\t\U0002dac7", // 𭫇
+ 0x2dac8: "K\t\U0002dac8", // 𭫈
+ 0x2dac9: "K\t\U0002dac9", // 𭫉
+ 0x2daca: "K\t\U0002daca", // 𭫊
+ 0x2dacb: "K\t\U0002dacb", // 𭫋
+ 0x2dacc: "K\t\U0002dacc", // 𭫌
+ 0x2dacd: "K\t\U0002dacd", // 𭫍
+ 0x2dace: "K\t\U0002dace", // 𭫎
+ 0x2dacf: "K\n\U0002dacf", // 𭫏
+ 0x2dad0: "K\n\U0002dad0", // 𭫐
+ 0x2dad1: "K\n\U0002dad1", // 𭫑
+ 0x2dad2: "K\n\U0002dad2", // 𭫒
+ 0x2dad3: "K\n\U0002dad3", // 𭫓
+ 0x2dad4: "K\n\U0002dad4", // 𭫔
+ 0x2dad5: "K\n\U0002dad5", // 𭫕
+ 0x2dad6: "K\n\U0002dad6", // 𭫖
+ 0x2dad7: "K\n\U0002dad7", // 𭫗
+ 0x2dad8: "K\n\U0002dad8", // 𭫘
+ 0x2dad9: "K\n\U0002dad9", // 𭫙
+ 0x2dada: "K\n\U0002dada", // 𭫚
+ 0x2dadb: "K\n\U0002dadb", // 𭫛
+ 0x2dadc: "K\n\U0002dadc", // 𭫜
+ 0x2dadd: "K\n\U0002dadd", // 𭫝
+ 0x2dade: "K\n\U0002dade", // 𭫞
+ 0x2dadf: "K\n\U0002dadf", // 𭫟
+ 0x2dae0: "K\v\U0002dae0", // 𭫠
+ 0x2dae1: "K\v\U0002dae1", // 𭫡
+ 0x2dae2: "K\v\U0002dae2", // 𭫢
+ 0x2dae3: "K\v\U0002dae3", // 𭫣
+ 0x2dae4: "K\v\U0002dae4", // 𭫤
+ 0x2dae5: "K\v\U0002dae5", // 𭫥
+ 0x2dae6: "K\v\U0002dae6", // 𭫦
+ 0x2dae7: "K\v\U0002dae7", // 𭫧
+ 0x2dae8: "K\v\U0002dae8", // 𭫨
+ 0x2dae9: "K\v\U0002dae9", // 𭫩
+ 0x2daea: "K\v\U0002daea", // 𭫪
+ 0x2daeb: "K\v\U0002daeb", // 𭫫
+ 0x2daec: "K\v\U0002daec", // 𭫬
+ 0x2daed: "K\v\U0002daed", // 𭫭
+ 0x2daee: "K\v\U0002daee", // 𭫮
+ 0x2daef: "K\v\U0002daef", // 𭫯
+ 0x2daf0: "K\v\U0002daf0", // 𭫰
+ 0x2daf1: "K\v\U0002daf1", // 𭫱
+ 0x2daf2: "K\v\U0002daf2", // 𭫲
+ 0x2daf3: "K\v\U0002daf3", // 𭫳
+ 0x2daf4: "K\v\U0002daf4", // 𭫴
+ 0x2daf5: "K\v\U0002daf5", // 𭫵
+ 0x2daf6: "K\v\U0002daf6", // 𭫶
+ 0x2daf7: "K\v\U0002daf7", // 𭫷
+ 0x2daf8: "K\v\U0002daf8", // 𭫸
+ 0x2daf9: "K\v\U0002daf9", // 𭫹
+ 0x2dafa: "K\v\U0002dafa", // 𭫺
+ 0x2dafb: "K\f\U0002dafb", // 𭫻
+ 0x2dafc: "K\f\U0002dafc", // 𭫼
+ 0x2dafd: "K\f\U0002dafd", // 𭫽
+ 0x2dafe: "K\f\U0002dafe", // 𭫾
+ 0x2daff: "K\f\U0002daff", // 𭫿
+ 0x2db00: "K\f\U0002db00", // 𭬀
+ 0x2db01: "K\f\U0002db01", // 𭬁
+ 0x2db02: "K\f\U0002db02", // 𭬂
+ 0x2db03: "K\f\U0002db03", // 𭬃
+ 0x2db04: "K\f\U0002db04", // 𭬄
+ 0x2db05: "K\f\U0002db05", // 𭬅
+ 0x2db06: "K\f\U0002db06", // 𭬆
+ 0x2db07: "K\f\U0002db07", // 𭬇
+ 0x2db08: "K\f\U0002db08", // 𭬈
+ 0x2db09: "K\f\U0002db09", // 𭬉
+ 0x2db0a: "K\r\U0002db0a", // 𭬊
+ 0x2db0b: "K\r\U0002db0b", // 𭬋
+ 0x2db0c: "K\r\U0002db0c", // 𭬌
+ 0x2db0d: "K\r\U0002db0d", // 𭬍
+ 0x2db0e: "K\r\U0002db0e", // 𭬎
+ 0x2db0f: "K\r\U0002db0f", // 𭬏
+ 0x2db10: "K\r\U0002db10", // 𭬐
+ 0x2db11: "K\r\U0002db11", // 𭬑
+ 0x2db12: "K\x0e\U0002db12", // 𭬒
+ 0x2db13: "K\x0e\U0002db13", // 𭬓
+ 0x2db14: "K\x0e\U0002db14", // 𭬔
+ 0x2db15: "K\x0e\U0002db15", // 𭬕
+ 0x2db16: "K\x0e\U0002db16", // 𭬖
+ 0x2db17: "K\x0e\U0002db17", // 𭬗
+ 0x2db18: "K\x0e\U0002db18", // 𭬘
+ 0x2db19: "K\x0e\U0002db19", // 𭬙
+ 0x2db1a: "K\x0e\U0002db1a", // 𭬚
+ 0x2db1b: "K\x0e\U0002db1b", // 𭬛
+ 0x2db1c: "K\x0e\U0002db1c", // 𭬜
+ 0x2db1d: "K\x0e\U0002db1d", // 𭬝
+ 0x2db1e: "K\x0f\U0002db1e", // 𭬞
+ 0x2db1f: "K\x0f\U0002db1f", // 𭬟
+ 0x2db20: "K\x0f\U0002db20", // 𭬠
+ 0x2db21: "K\x0f\U0002db21", // 𭬡
+ 0x2db22: "K\x0f\U0002db22", // 𭬢
+ 0x2db23: "K\x0f\U0002db23", // 𭬣
+ 0x2db24: "K\x0f\U0002db24", // 𭬤
+ 0x2db25: "K\x0f\U0002db25", // 𭬥
+ 0x2db26: "K\x0f\U0002db26", // 𭬦
+ 0x2db27: "K\x0f\U0002db27", // 𭬧
+ 0x2db28: "K\x0f\U0002db28", // 𭬨
+ 0x2db29: "K\x10\U0002db29", // 𭬩
+ 0x2db2a: "K\x10\U0002db2a", // 𭬪
+ 0x2db2b: "K\x10\U0002db2b", // 𭬫
+ 0x2db2c: "K\x10\U0002db2c", // 𭬬
+ 0x2db2d: "K\x10\U0002db2d", // 𭬭
+ 0x2db2e: "K\x10\U0002db2e", // 𭬮
+ 0x2db2f: "K\x10\U0002db2f", // 𭬯
+ 0x2db30: "K\x10\U0002db30", // 𭬰
+ 0x2db31: "K\x10\U0002db31", // 𭬱
+ 0x2db32: "K\x10\U0002db32", // 𭬲
+ 0x2db33: "K\x10\U0002db33", // 𭬳
+ 0x2db34: "K\x11\U0002db34", // 𭬴
+ 0x2db35: "K\x11\U0002db35", // 𭬵
+ 0x2db36: "K\x11\U0002db36", // 𭬶
+ 0x2db37: "K\x11\U0002db37", // 𭬷
+ 0x2db38: "K\x12\U0002db38", // 𭬸
+ 0x2db39: "K\x12\U0002db39", // 𭬹
+ 0x2db3a: "K\x12\U0002db3a", // 𭬺
+ 0x2db3b: "K\x13\U0002db3b", // 𭬻
+ 0x2db3c: "K\x13\U0002db3c", // 𭬼
+ 0x2db3d: "K\x13\U0002db3d", // 𭬽
+ 0x2db3e: "K\x13\U0002db3e", // 𭬾
+ 0x2db3f: "K\x13\U0002db3f", // 𭬿
+ 0x2db40: "K\x13\U0002db40", // 𭭀
+ 0x2db41: "K\x16\U0002db41", // 𭭁
+ 0x2db42: "K\x19\U0002db42", // 𭭂
+ 0x2db43: "K\x1b\U0002db43", // 𭭃
+ 0x2db44: "L\x02\U0002db44", // 𭭄
+ 0x2db45: "L\x04\U0002db45", // 𭭅
+ 0x2db46: "L\x04\U0002db46", // 𭭆
+ 0x2db47: "L\x06\U0002db47", // 𭭇
+ 0x2db48: "L\x06\U0002db48", // 𭭈
+ 0x2db49: "L\x06\U0002db49", // 𭭉
+ 0x2db4a: "L\x06\U0002db4a", // 𭭊
+ 0x2db4b: "L\x06\U0002db4b", // 𭭋
+ 0x2db4c: "L\a\U0002db4c", // 𭭌
+ 0x2db4d: "L\b\U0002db4d", // 𭭍
+ 0x2db4e: "L\b\U0002db4e", // 𭭎
+ 0x2db4f: "L\b\U0002db4f", // 𭭏
+ 0x2db50: "L\t\U0002db50", // 𭭐
+ 0x2db51: "L\t\U0002db51", // 𭭑
+ 0x2db52: "L\n\U0002db52", // 𭭒
+ 0x2db53: "L\v\U0002db53", // 𭭓
+ 0x2db54: "L\v\U0002db54", // 𭭔
+ 0x2db55: "L\f\U0002db55", // 𭭕
+ 0x2db56: "L\f\U0002db56", // 𭭖
+ 0x2db57: "L\x10\U0002db57", // 𭭗
+ 0x2db58: "M\x02\U0002db58", // 𭭘
+ 0x2db59: "M\x02\U0002db59", // 𭭙
+ 0x2db5a: "M\x02\U0002db5a", // 𭭚
+ 0x2db5b: "M\x04\U0002db5b", // 𭭛
+ 0x2db5c: "M\x04\U0002db5c", // 𭭜
+ 0x2db5d: "M\x04\U0002db5d", // 𭭝
+ 0x2db5e: "M\x05\U0002db5e", // 𭭞
+ 0x2db5f: "M\x05\U0002db5f", // 𭭟
+ 0x2db60: "M\x05\U0002db60", // 𭭠
+ 0x2db61: "M\x06\U0002db61", // 𭭡
+ 0x2db62: "M\a\U0002db62", // 𭭢
+ 0x2db63: "M\a\U0002db63", // 𭭣
+ 0x2db64: "M\a\U0002db64", // 𭭤
+ 0x2db65: "M\a\U0002db65", // 𭭥
+ 0x2db66: "M\b\U0002db66", // 𭭦
+ 0x2db67: "M\b\U0002db67", // 𭭧
+ 0x2db68: "M\b\U0002db68", // 𭭨
+ 0x2db69: "M\b\U0002db69", // 𭭩
+ 0x2db6a: "M\t\U0002db6a", // 𭭪
+ 0x2db6b: "M\t\U0002db6b", // 𭭫
+ 0x2db6c: "M\n\U0002db6c", // 𭭬
+ 0x2db6d: "M\n\U0002db6d", // 𭭭
+ 0x2db6e: "M\v\U0002db6e", // 𭭮
+ 0x2db6f: "M\v\U0002db6f", // 𭭯
+ 0x2db70: "M\v\U0002db70", // 𭭰
+ 0x2db71: "M\v\U0002db71", // 𭭱
+ 0x2db72: "M\f\U0002db72", // 𭭲
+ 0x2db73: "M\f\U0002db73", // 𭭳
+ 0x2db74: "M\f\U0002db74", // 𭭴
+ 0x2db75: "M\r\U0002db75", // 𭭵
+ 0x2db76: "M\r\U0002db76", // 𭭶
+ 0x2db77: "M\x0e\U0002db77", // 𭭷
+ 0x2db78: "M\x11\U0002db78", // 𭭸
+ 0x2db79: "M\x11\U0002db79", // 𭭹
+ 0x2db7a: "M\x11\U0002db7a", // 𭭺
+ 0x2db7b: "M\x11\U0002db7b", // 𭭻
+ 0x2db7c: "M\x17\U0002db7c", // 𭭼
+ 0x2db7d: "N\x02\U0002db7d", // 𭭽
+ 0x2db7e: "N\x02\U0002db7e", // 𭭾
+ 0x2db7f: "N\x02\U0002db7f", // 𭭿
+ 0x2db80: "N\x03\U0002db80", // 𭮀
+ 0x2db81: "N\x03\U0002db81", // 𭮁
+ 0x2db82: "N\x04\U0002db82", // 𭮂
+ 0x2db83: "N\x04\U0002db83", // 𭮃
+ 0x2db84: "N\x04\U0002db84", // 𭮄
+ 0x2db85: "N\x04\U0002db85", // 𭮅
+ 0x2db86: "N\x05\U0002db86", // 𭮆
+ 0x2db87: "N\x05\U0002db87", // 𭮇
+ 0x2db88: "N\x05\U0002db88", // 𭮈
+ 0x2db89: "N\x06\U0002db89", // 𭮉
+ 0x2db8a: "N\x06\U0002db8a", // 𭮊
+ 0x2db8b: "N\x06\U0002db8b", // 𭮋
+ 0x2db8c: "N\x06\U0002db8c", // 𭮌
+ 0x2db8d: "N\x06\U0002db8d", // 𭮍
+ 0x2db8e: "N\x06\U0002db8e", // 𭮎
+ 0x2db8f: "N\x06\U0002db8f", // 𭮏
+ 0x2db90: "N\x06\U0002db90", // 𭮐
+ 0x2db91: "N\x06\U0002db91", // 𭮑
+ 0x2db92: "N\a\U0002db92", // 𭮒
+ 0x2db93: "N\a\U0002db93", // 𭮓
+ 0x2db94: "N\a\U0002db94", // 𭮔
+ 0x2db95: "N\a\U0002db95", // 𭮕
+ 0x2db96: "N\a\U0002db96", // 𭮖
+ 0x2db97: "N\b\U0002db97", // 𭮗
+ 0x2db98: "N\b\U0002db98", // 𭮘
+ 0x2db99: "N\t\U0002db99", // 𭮙
+ 0x2db9a: "N\t\U0002db9a", // 𭮚
+ 0x2db9b: "N\t\U0002db9b", // 𭮛
+ 0x2db9c: "N\n\U0002db9c", // 𭮜
+ 0x2db9d: "N\v\U0002db9d", // 𭮝
+ 0x2db9e: "N\v\U0002db9e", // 𭮞
+ 0x2db9f: "N\f\U0002db9f", // 𭮟
+ 0x2dba0: "N\f\U0002dba0", // 𭮠
+ 0x2dba1: "N\f\U0002dba1", // 𭮡
+ 0x2dba2: "N\f\U0002dba2", // 𭮢
+ 0x2dba3: "N\f\U0002dba3", // 𭮣
+ 0x2dba4: "N\x0e\U0002dba4", // 𭮤
+ 0x2dba5: "N\x0e\U0002dba5", // 𭮥
+ 0x2dba6: "N\x0e\U0002dba6", // 𭮦
+ 0x2dba7: "N\x0e\U0002dba7", // 𭮧
+ 0x2dba8: "O\x04\U0002dba8", // 𭮨
+ 0x2dba9: "O\x06\U0002dba9", // 𭮩
+ 0x2dbaa: "O\x06\U0002dbaa", // 𭮪
+ 0x2dbab: "O\x06\U0002dbab", // 𭮫
+ 0x2dbac: "O\x06\U0002dbac", // 𭮬
+ 0x2dbad: "O\x06\U0002dbad", // 𭮭
+ 0x2dbae: "O\a\U0002dbae", // 𭮮
+ 0x2dbaf: "O\a\U0002dbaf", // 𭮯
+ 0x2dbb0: "O\a\U0002dbb0", // 𭮰
+ 0x2dbb1: "O\a\U0002dbb1", // 𭮱
+ 0x2dbb2: "O\b\U0002dbb2", // 𭮲
+ 0x2dbb3: "O\b\U0002dbb3", // 𭮳
+ 0x2dbb4: "O\b\U0002dbb4", // 𭮴
+ 0x2dbb5: "O\b\U0002dbb5", // 𭮵
+ 0x2dbb6: "O\b\U0002dbb6", // 𭮶
+ 0x2dbb7: "O\t\U0002dbb7", // 𭮷
+ 0x2dbb8: "O\t\U0002dbb8", // 𭮸
+ 0x2dbb9: "O\n\U0002dbb9", // 𭮹
+ 0x2dbba: "O\n\U0002dbba", // 𭮺
+ 0x2dbbb: "O\n\U0002dbbb", // 𭮻
+ 0x2dbbc: "O\v\U0002dbbc", // 𭮼
+ 0x2dbbd: "O\v\U0002dbbd", // 𭮽
+ 0x2dbbe: "O\f\U0002dbbe", // 𭮾
+ 0x2dbbf: "O\f\U0002dbbf", // 𭮿
+ 0x2dbc0: "O\f\U0002dbc0", // 𭯀
+ 0x2dbc1: "O\f\U0002dbc1", // 𭯁
+ 0x2dbc2: "O\x0e\U0002dbc2", // 𭯂
+ 0x2dbc3: "O\x0f\U0002dbc3", // 𭯃
+ 0x2dbc4: "O\x10\U0002dbc4", // 𭯄
+ 0x2dbc5: "O\x14\U0002dbc5", // 𭯅
+ 0x2dbc6: "O\x15\U0002dbc6", // 𭯆
+ 0x2dbc7: "P\x02\U0002dbc7", // 𭯇
+ 0x2dbc8: "P\x04\U0002dbc8", // 𭯈
+ 0x2dbc9: "P\v\U0002dbc9", // 𭯉
+ 0x2dbca: "Q\x05\U0002dbca", // 𭯊
+ 0x2dbcb: "Q\x06\U0002dbcb", // 𭯋
+ 0x2dbcc: "Q\x06\U0002dbcc", // 𭯌
+ 0x2dbcd: "Q\x06\U0002dbcd", // 𭯍
+ 0x2dbce: "Q\x06\U0002dbce", // 𭯎
+ 0x2dbcf: "Q\a\U0002dbcf", // 𭯏
+ 0x2dbd0: "Q\b\U0002dbd0", // 𭯐
+ 0x2dbd1: "Q\b\U0002dbd1", // 𭯑
+ 0x2dbd2: "R\x04\U0002dbd2", // 𭯒
+ 0x2dbd3: "R\x05\U0002dbd3", // 𭯓
+ 0x2dbd4: "R\x05\U0002dbd4", // 𭯔
+ 0x2dbd5: "R\x05\U0002dbd5", // 𭯕
+ 0x2dbd6: "R\x05\U0002dbd6", // 𭯖
+ 0x2dbd7: "R\x05\U0002dbd7", // 𭯗
+ 0x2dbd8: "R\x06\U0002dbd8", // 𭯘
+ 0x2dbd9: "R\a\U0002dbd9", // 𭯙
+ 0x2dbda: "R\a\U0002dbda", // 𭯚
+ 0x2dbdb: "R\b\U0002dbdb", // 𭯛
+ 0x2dbdc: "R\b\U0002dbdc", // 𭯜
+ 0x2dbdd: "R\b\U0002dbdd", // 𭯝
+ 0x2dbde: "R\t\U0002dbde", // 𭯞
+ 0x2dbdf: "R\t\U0002dbdf", // 𭯟
+ 0x2dbe0: "R\n\U0002dbe0", // 𭯠
+ 0x2dbe1: "R\n\U0002dbe1", // 𭯡
+ 0x2dbe2: "R\n\U0002dbe2", // 𭯢
+ 0x2dbe3: "R\f\U0002dbe3", // 𭯣
+ 0x2dbe4: "R\f\U0002dbe4", // 𭯤
+ 0x2dbe5: "R\f\U0002dbe5", // 𭯥
+ 0x2dbe6: "R\r\U0002dbe6", // 𭯦
+ 0x2dbe7: "R\r\U0002dbe7", // 𭯧
+ 0x2dbe8: "R\r\U0002dbe8", // 𭯨
+ 0x2dbe9: "R\r\U0002dbe9", // 𭯩
+ 0x2dbea: "R\x0e\U0002dbea", // 𭯪
+ 0x2dbeb: "R\x0f\U0002dbeb", // 𭯫
+ 0x2dbec: "R\x10\U0002dbec", // 𭯬
+ 0x2dbed: "R\x12\U0002dbed", // 𭯭
+ 0x2dbee: "R\x13\U0002dbee", // 𭯮
+ 0x2dbef: "R\x16\U0002dbef", // 𭯯
+ 0x2dbf0: "S\x04\U0002dbf0", // 𭯰
+ 0x2dbf1: "S\a\U0002dbf1", // 𭯱
+ 0x2dbf2: "T\x04\U0002dbf2", // 𭯲
+ 0x2dbf3: "T\v\U0002dbf3", // 𭯳
+ 0x2dbf4: "T\f\U0002dbf4", // 𭯴
+ 0x2dbf5: "T\x0e\U0002dbf5", // 𭯵
+ 0x2dbf6: "U\x03\U0002dbf6", // 𭯶
+ 0x2dbf7: "U\x03\U0002dbf7", // 𭯷
+ 0x2dbf8: "U\x04\U0002dbf8", // 𭯸
+ 0x2dbf9: "U\x04\U0002dbf9", // 𭯹
+ 0x2dbfa: "U\x04\U0002dbfa", // 𭯺
+ 0x2dbfb: "U\x04\U0002dbfb", // 𭯻
+ 0x2dbfc: "U\x04\U0002dbfc", // 𭯼
+ 0x2dbfd: "U\x05\U0002dbfd", // 𭯽
+ 0x2dbfe: "U\x05\U0002dbfe", // 𭯾
+ 0x2dbff: "U\x05\U0002dbff", // 𭯿
+ 0x2dc00: "U\x05\U0002dc00", // 𭰀
+ 0x2dc01: "U\x05\U0002dc01", // 𭰁
+ 0x2dc02: "U\x05\U0002dc02", // 𭰂
+ 0x2dc03: "U\x05\U0002dc03", // 𭰃
+ 0x2dc04: "U\x05\U0002dc04", // 𭰄
+ 0x2dc05: "U\x05\U0002dc05", // 𭰅
+ 0x2dc06: "U\x05\U0002dc06", // 𭰆
+ 0x2dc07: "U\x05\U0002dc07", // 𭰇
+ 0x2dc08: "U\x05\U0002dc08", // 𭰈
+ 0x2dc09: "U\x05\U0002dc09", // 𭰉
+ 0x2dc0a: "U\x05\U0002dc0a", // 𭰊
+ 0x2dc0b: "U\x05\U0002dc0b", // 𭰋
+ 0x2dc0c: "U\x06\U0002dc0c", // 𭰌
+ 0x2dc0d: "U\x06\U0002dc0d", // 𭰍
+ 0x2dc0e: "U\x06\U0002dc0e", // 𭰎
+ 0x2dc0f: "U\x06\U0002dc0f", // 𭰏
+ 0x2dc10: "U\x06\U0002dc10", // 𭰐
+ 0x2dc11: "U\x06\U0002dc11", // 𭰑
+ 0x2dc12: "U\x06\U0002dc12", // 𭰒
+ 0x2dc13: "U\x06\U0002dc13", // 𭰓
+ 0x2dc14: "U\x06\U0002dc14", // 𭰔
+ 0x2dc15: "U\x06\U0002dc15", // 𭰕
+ 0x2dc16: "U\x06\U0002dc16", // 𭰖
+ 0x2dc17: "U\a\U0002dc17", // 𭰗
+ 0x2dc18: "U\a\U0002dc18", // 𭰘
+ 0x2dc19: "U\a\U0002dc19", // 𭰙
+ 0x2dc1a: "U\a\U0002dc1a", // 𭰚
+ 0x2dc1b: "U\a\U0002dc1b", // 𭰛
+ 0x2dc1c: "U\a\U0002dc1c", // 𭰜
+ 0x2dc1d: "U\a\U0002dc1d", // 𭰝
+ 0x2dc1e: "U\a\U0002dc1e", // 𭰞
+ 0x2dc1f: "U\a\U0002dc1f", // 𭰟
+ 0x2dc20: "U\a\U0002dc20", // 𭰠
+ 0x2dc21: "U\a\U0002dc21", // 𭰡
+ 0x2dc22: "U\a\U0002dc22", // 𭰢
+ 0x2dc23: "U\a\U0002dc23", // 𭰣
+ 0x2dc24: "U\a\U0002dc24", // 𭰤
+ 0x2dc25: "U\a\U0002dc25", // 𭰥
+ 0x2dc26: "U\a\U0002dc26", // 𭰦
+ 0x2dc27: "U\a\U0002dc27", // 𭰧
+ 0x2dc28: "U\b\U0002dc28", // 𭰨
+ 0x2dc29: "U\b\U0002dc29", // 𭰩
+ 0x2dc2a: "U\b\U0002dc2a", // 𭰪
+ 0x2dc2b: "U\b\U0002dc2b", // 𭰫
+ 0x2dc2c: "U\b\U0002dc2c", // 𭰬
+ 0x2dc2d: "U\b\U0002dc2d", // 𭰭
+ 0x2dc2e: "U\b\U0002dc2e", // 𭰮
+ 0x2dc2f: "U\b\U0002dc2f", // 𭰯
+ 0x2dc30: "U\b\U0002dc30", // 𭰰
+ 0x2dc31: "U\b\U0002dc31", // 𭰱
+ 0x2dc32: "U\b\U0002dc32", // 𭰲
+ 0x2dc33: "U\b\U0002dc33", // 𭰳
+ 0x2dc34: "U\b\U0002dc34", // 𭰴
+ 0x2dc35: "U\b\U0002dc35", // 𭰵
+ 0x2dc36: "U\b\U0002dc36", // 𭰶
+ 0x2dc37: "U\b\U0002dc37", // 𭰷
+ 0x2dc38: "U\b\U0002dc38", // 𭰸
+ 0x2dc39: "U\b\U0002dc39", // 𭰹
+ 0x2dc3a: "U\b\U0002dc3a", // 𭰺
+ 0x2dc3b: "U\b\U0002dc3b", // 𭰻
+ 0x2dc3c: "U\b\U0002dc3c", // 𭰼
+ 0x2dc3d: "U\b\U0002dc3d", // 𭰽
+ 0x2dc3e: "U\b\U0002dc3e", // 𭰾
+ 0x2dc3f: "U\b\U0002dc3f", // 𭰿
+ 0x2dc40: "U\b\U0002dc40", // 𭱀
+ 0x2dc41: "U\b\U0002dc41", // 𭱁
+ 0x2dc42: "U\b\U0002dc42", // 𭱂
+ 0x2dc43: "U\t\U0002dc43", // 𭱃
+ 0x2dc44: "U\t\U0002dc44", // 𭱄
+ 0x2dc45: "U\t\U0002dc45", // 𭱅
+ 0x2dc46: "U\t\U0002dc46", // 𭱆
+ 0x2dc47: "U\t\U0002dc47", // 𭱇
+ 0x2dc48: "U\t\U0002dc48", // 𭱈
+ 0x2dc49: "U\t\U0002dc49", // 𭱉
+ 0x2dc4a: "U\t\U0002dc4a", // 𭱊
+ 0x2dc4b: "U\t\U0002dc4b", // 𭱋
+ 0x2dc4c: "U\t\U0002dc4c", // 𭱌
+ 0x2dc4d: "U\t\U0002dc4d", // 𭱍
+ 0x2dc4e: "U\t\U0002dc4e", // 𭱎
+ 0x2dc4f: "U\t\U0002dc4f", // 𭱏
+ 0x2dc50: "U\t\U0002dc50", // 𭱐
+ 0x2dc51: "U\t\U0002dc51", // 𭱑
+ 0x2dc52: "U\t\U0002dc52", // 𭱒
+ 0x2dc53: "U\t\U0002dc53", // 𭱓
+ 0x2dc54: "U\t\U0002dc54", // 𭱔
+ 0x2dc55: "U\t\U0002dc55", // 𭱕
+ 0x2dc56: "U\t\U0002dc56", // 𭱖
+ 0x2dc57: "U\t\U0002dc57", // 𭱗
+ 0x2dc58: "U\t\U0002dc58", // 𭱘
+ 0x2dc59: "U\t\U0002dc59", // 𭱙
+ 0x2dc5a: "U\t\U0002dc5a", // 𭱚
+ 0x2dc5b: "U\t\U0002dc5b", // 𭱛
+ 0x2dc5c: "U\t\U0002dc5c", // 𭱜
+ 0x2dc5d: "U\t\U0002dc5d", // 𭱝
+ 0x2dc5e: "U\t\U0002dc5e", // 𭱞
+ 0x2dc5f: "U\t\U0002dc5f", // 𭱟
+ 0x2dc60: "U\t\U0002dc60", // 𭱠
+ 0x2dc61: "U\t\U0002dc61", // 𭱡
+ 0x2dc62: "U\n\U0002dc62", // 𭱢
+ 0x2dc63: "U\n\U0002dc63", // 𭱣
+ 0x2dc64: "U\n\U0002dc64", // 𭱤
+ 0x2dc65: "U\n\U0002dc65", // 𭱥
+ 0x2dc66: "U\n\U0002dc66", // 𭱦
+ 0x2dc67: "U\n\U0002dc67", // 𭱧
+ 0x2dc68: "U\n\U0002dc68", // 𭱨
+ 0x2dc69: "U\n\U0002dc69", // 𭱩
+ 0x2dc6a: "U\n\U0002dc6a", // 𭱪
+ 0x2dc6b: "U\n\U0002dc6b", // 𭱫
+ 0x2dc6c: "U\n\U0002dc6c", // 𭱬
+ 0x2dc6d: "U\n\U0002dc6d", // 𭱭
+ 0x2dc6e: "U\n\U0002dc6e", // 𭱮
+ 0x2dc6f: "U\n\U0002dc6f", // 𭱯
+ 0x2dc70: "U\n\U0002dc70", // 𭱰
+ 0x2dc71: "U\n\U0002dc71", // 𭱱
+ 0x2dc72: "U\n\U0002dc72", // 𭱲
+ 0x2dc73: "U\n\U0002dc73", // 𭱳
+ 0x2dc74: "U\n\U0002dc74", // 𭱴
+ 0x2dc75: "U\n\U0002dc75", // 𭱵
+ 0x2dc76: "U\v\U0002dc76", // 𭱶
+ 0x2dc77: "U\v\U0002dc77", // 𭱷
+ 0x2dc78: "U\v\U0002dc78", // 𭱸
+ 0x2dc79: "U\v\U0002dc79", // 𭱹
+ 0x2dc7a: "U\v\U0002dc7a", // 𭱺
+ 0x2dc7b: "U\v\U0002dc7b", // 𭱻
+ 0x2dc7c: "U\v\U0002dc7c", // 𭱼
+ 0x2dc7d: "U\v\U0002dc7d", // 𭱽
+ 0x2dc7e: "U\v\U0002dc7e", // 𭱾
+ 0x2dc7f: "U\v\U0002dc7f", // 𭱿
+ 0x2dc80: "U\v\U0002dc80", // 𭲀
+ 0x2dc81: "U\v\U0002dc81", // 𭲁
+ 0x2dc82: "U\v\U0002dc82", // 𭲂
+ 0x2dc83: "U\v\U0002dc83", // 𭲃
+ 0x2dc84: "U\v\U0002dc84", // 𭲄
+ 0x2dc85: "U\v\U0002dc85", // 𭲅
+ 0x2dc86: "U\v\U0002dc86", // 𭲆
+ 0x2dc87: "U\v\U0002dc87", // 𭲇
+ 0x2dc88: "U\v\U0002dc88", // 𭲈
+ 0x2dc89: "U\v\U0002dc89", // 𭲉
+ 0x2dc8a: "U\v\U0002dc8a", // 𭲊
+ 0x2dc8b: "U\v\U0002dc8b", // 𭲋
+ 0x2dc8c: "U\v\U0002dc8c", // 𭲌
+ 0x2dc8d: "U\v\U0002dc8d", // 𭲍
+ 0x2dc8e: "U\v\U0002dc8e", // 𭲎
+ 0x2dc8f: "U\v\U0002dc8f", // 𭲏
+ 0x2dc90: "U\v\U0002dc90", // 𭲐
+ 0x2dc91: "U\v\U0002dc91", // 𭲑
+ 0x2dc92: "U\f\U0002dc92", // 𭲒
+ 0x2dc93: "U\f\U0002dc93", // 𭲓
+ 0x2dc94: "U\f\U0002dc94", // 𭲔
+ 0x2dc95: "U\f\U0002dc95", // 𭲕
+ 0x2dc96: "U\f\U0002dc96", // 𭲖
+ 0x2dc97: "U\f\U0002dc97", // 𭲗
+ 0x2dc98: "U\f\U0002dc98", // 𭲘
+ 0x2dc99: "U\f\U0002dc99", // 𭲙
+ 0x2dc9a: "U\f\U0002dc9a", // 𭲚
+ 0x2dc9b: "U\f\U0002dc9b", // 𭲛
+ 0x2dc9c: "U\f\U0002dc9c", // 𭲜
+ 0x2dc9d: "U\f\U0002dc9d", // 𭲝
+ 0x2dc9e: "U\f\U0002dc9e", // 𭲞
+ 0x2dc9f: "U\f\U0002dc9f", // 𭲟
+ 0x2dca0: "U\f\U0002dca0", // 𭲠
+ 0x2dca1: "U\f\U0002dca1", // 𭲡
+ 0x2dca2: "U\f\U0002dca2", // 𭲢
+ 0x2dca3: "U\f\U0002dca3", // 𭲣
+ 0x2dca4: "U\f\U0002dca4", // 𭲤
+ 0x2dca5: "U\f\U0002dca5", // 𭲥
+ 0x2dca6: "U\f\U0002dca6", // 𭲦
+ 0x2dca7: "U\f\U0002dca7", // 𭲧
+ 0x2dca8: "U\f\U0002dca8", // 𭲨
+ 0x2dca9: "U\f\U0002dca9", // 𭲩
+ 0x2dcaa: "U\f\U0002dcaa", // 𭲪
+ 0x2dcab: "U\f\U0002dcab", // 𭲫
+ 0x2dcac: "U\r\U0002dcac", // 𭲬
+ 0x2dcad: "U\r\U0002dcad", // 𭲭
+ 0x2dcae: "U\r\U0002dcae", // 𭲮
+ 0x2dcaf: "U\r\U0002dcaf", // 𭲯
+ 0x2dcb0: "U\r\U0002dcb0", // 𭲰
+ 0x2dcb1: "U\r\U0002dcb1", // 𭲱
+ 0x2dcb2: "U\r\U0002dcb2", // 𭲲
+ 0x2dcb3: "U\r\U0002dcb3", // 𭲳
+ 0x2dcb4: "U\r\U0002dcb4", // 𭲴
+ 0x2dcb5: "U\r\U0002dcb5", // 𭲵
+ 0x2dcb6: "U\r\U0002dcb6", // 𭲶
+ 0x2dcb7: "U\r\U0002dcb7", // 𭲷
+ 0x2dcb8: "U\r\U0002dcb8", // 𭲸
+ 0x2dcb9: "U\r\U0002dcb9", // 𭲹
+ 0x2dcba: "U\r\U0002dcba", // 𭲺
+ 0x2dcbb: "U\r\U0002dcbb", // 𭲻
+ 0x2dcbc: "U\x0e\U0002dcbc", // 𭲼
+ 0x2dcbd: "U\x0e\U0002dcbd", // 𭲽
+ 0x2dcbe: "U\x0e\U0002dcbe", // 𭲾
+ 0x2dcbf: "U\x0e\U0002dcbf", // 𭲿
+ 0x2dcc0: "U\x0e\U0002dcc0", // 𭳀
+ 0x2dcc1: "U\x0e\U0002dcc1", // 𭳁
+ 0x2dcc2: "U\x0e\U0002dcc2", // 𭳂
+ 0x2dcc3: "U\x0e\U0002dcc3", // 𭳃
+ 0x2dcc4: "U\x0e\U0002dcc4", // 𭳄
+ 0x2dcc5: "U\x0e\U0002dcc5", // 𭳅
+ 0x2dcc6: "U\x0e\U0002dcc6", // 𭳆
+ 0x2dcc7: "U\x0e\U0002dcc7", // 𭳇
+ 0x2dcc8: "U\x0e\U0002dcc8", // 𭳈
+ 0x2dcc9: "U\x0e\U0002dcc9", // 𭳉
+ 0x2dcca: "U\x0e\U0002dcca", // 𭳊
+ 0x2dccb: "U\x0e\U0002dccb", // 𭳋
+ 0x2dccc: "U\x0e\U0002dccc", // 𭳌
+ 0x2dccd: "U\x0e\U0002dccd", // 𭳍
+ 0x2dcce: "U\x0e\U0002dcce", // 𭳎
+ 0x2dccf: "U\x0e\U0002dccf", // 𭳏
+ 0x2dcd0: "U\x0f\U0002dcd0", // 𭳐
+ 0x2dcd1: "U\x0f\U0002dcd1", // 𭳑
+ 0x2dcd2: "U\x0f\U0002dcd2", // 𭳒
+ 0x2dcd3: "U\x0f\U0002dcd3", // 𭳓
+ 0x2dcd4: "U\x0f\U0002dcd4", // 𭳔
+ 0x2dcd5: "U\x0f\U0002dcd5", // 𭳕
+ 0x2dcd6: "U\x0f\U0002dcd6", // 𭳖
+ 0x2dcd7: "U\x0f\U0002dcd7", // 𭳗
+ 0x2dcd8: "U\x0f\U0002dcd8", // 𭳘
+ 0x2dcd9: "U\x0f\U0002dcd9", // 𭳙
+ 0x2dcda: "U\x0f\U0002dcda", // 𭳚
+ 0x2dcdb: "U\x0f\U0002dcdb", // 𭳛
+ 0x2dcdc: "U\x10\U0002dcdc", // 𭳜
+ 0x2dcdd: "U\x10\U0002dcdd", // 𭳝
+ 0x2dcde: "U\x10\U0002dcde", // 𭳞
+ 0x2dcdf: "U\x10\U0002dcdf", // 𭳟
+ 0x2dce0: "U\x10\U0002dce0", // 𭳠
+ 0x2dce1: "U\x10\U0002dce1", // 𭳡
+ 0x2dce2: "U\x10\U0002dce2", // 𭳢
+ 0x2dce3: "U\x10\U0002dce3", // 𭳣
+ 0x2dce4: "U\x10\U0002dce4", // 𭳤
+ 0x2dce5: "U\x10\U0002dce5", // 𭳥
+ 0x2dce6: "U\x10\U0002dce6", // 𭳦
+ 0x2dce7: "U\x10\U0002dce7", // 𭳧
+ 0x2dce8: "U\x10\U0002dce8", // 𭳨
+ 0x2dce9: "U\x10\U0002dce9", // 𭳩
+ 0x2dcea: "U\x10\U0002dcea", // 𭳪
+ 0x2dceb: "U\x10\U0002dceb", // 𭳫
+ 0x2dcec: "U\x11\U0002dcec", // 𭳬
+ 0x2dced: "U\x11\U0002dced", // 𭳭
+ 0x2dcee: "U\x11\U0002dcee", // 𭳮
+ 0x2dcef: "U\x11\U0002dcef", // 𭳯
+ 0x2dcf0: "U\x12\U0002dcf0", // 𭳰
+ 0x2dcf1: "U\x12\U0002dcf1", // 𭳱
+ 0x2dcf2: "U\x12\U0002dcf2", // 𭳲
+ 0x2dcf3: "U\x12\U0002dcf3", // 𭳳
+ 0x2dcf4: "U\x12\U0002dcf4", // 𭳴
+ 0x2dcf5: "U\x12\U0002dcf5", // 𭳵
+ 0x2dcf6: "U\x12\U0002dcf6", // 𭳶
+ 0x2dcf7: "U\x13\U0002dcf7", // 𭳷
+ 0x2dcf8: "U\x13\U0002dcf8", // 𭳸
+ 0x2dcf9: "U\x13\U0002dcf9", // 𭳹
+ 0x2dcfa: "U\x15\U0002dcfa", // 𭳺
+ 0x2dcfb: "U\x15\U0002dcfb", // 𭳻
+ 0x2dcfc: "U\x15\U0002dcfc", // 𭳼
+ 0x2dcfd: "U\x15\U0002dcfd", // 𭳽
+ 0x2dcfe: "U\x1d\U0002dcfe", // 𭳾
+ 0x2dcff: "V\x01\U0002dcff", // 𭳿
+ 0x2dd00: "V\x02\U0002dd00", // 𭴀
+ 0x2dd01: "V\x02\U0002dd01", // 𭴁
+ 0x2dd02: "V\x02\U0002dd02", // 𭴂
+ 0x2dd03: "V\x03\U0002dd03", // 𭴃
+ 0x2dd04: "V\x03\U0002dd04", // 𭴄
+ 0x2dd05: "V\x03\U0002dd05", // 𭴅
+ 0x2dd06: "V\x03\U0002dd06", // 𭴆
+ 0x2dd07: "V\x03\U0002dd07", // 𭴇
+ 0x2dd08: "V\x04\U0002dd08", // 𭴈
+ 0x2dd09: "V\x04\U0002dd09", // 𭴉
+ 0x2dd0a: "V\x04\U0002dd0a", // 𭴊
+ 0x2dd0b: "V\x04\U0002dd0b", // 𭴋
+ 0x2dd0c: "V\x04\U0002dd0c", // 𭴌
+ 0x2dd0d: "V\x04\U0002dd0d", // 𭴍
+ 0x2dd0e: "V\x04\U0002dd0e", // 𭴎
+ 0x2dd0f: "V\x04\U0002dd0f", // 𭴏
+ 0x2dd10: "V\x04\U0002dd10", // 𭴐
+ 0x2dd11: "V\x04\U0002dd11", // 𭴑
+ 0x2dd12: "V\x05\U0002dd12", // 𭴒
+ 0x2dd13: "V\x05\U0002dd13", // 𭴓
+ 0x2dd14: "V\x05\U0002dd14", // 𭴔
+ 0x2dd15: "V\x05\U0002dd15", // 𭴕
+ 0x2dd16: "V\x05\U0002dd16", // 𭴖
+ 0x2dd17: "V\x05\U0002dd17", // 𭴗
+ 0x2dd18: "V\x05\U0002dd18", // 𭴘
+ 0x2dd19: "V\x05\U0002dd19", // 𭴙
+ 0x2dd1a: "V\x05\U0002dd1a", // 𭴚
+ 0x2dd1b: "V\x06\U0002dd1b", // 𭴛
+ 0x2dd1c: "V\x06\U0002dd1c", // 𭴜
+ 0x2dd1d: "V\x06\U0002dd1d", // 𭴝
+ 0x2dd1e: "V\x06\U0002dd1e", // 𭴞
+ 0x2dd1f: "V\x06\U0002dd1f", // 𭴟
+ 0x2dd20: "V\x06\U0002dd20", // 𭴠
+ 0x2dd21: "V\x06\U0002dd21", // 𭴡
+ 0x2dd22: "V\x06\U0002dd22", // 𭴢
+ 0x2dd23: "V\x06\U0002dd23", // 𭴣
+ 0x2dd24: "V\x06\U0002dd24", // 𭴤
+ 0x2dd25: "V\x06\U0002dd25", // 𭴥
+ 0x2dd26: "V\a\U0002dd26", // 𭴦
+ 0x2dd27: "V\a\U0002dd27", // 𭴧
+ 0x2dd28: "V\a\U0002dd28", // 𭴨
+ 0x2dd29: "V\a\U0002dd29", // 𭴩
+ 0x2dd2a: "V\a\U0002dd2a", // 𭴪
+ 0x2dd2b: "V\a\U0002dd2b", // 𭴫
+ 0x2dd2c: "V\a\U0002dd2c", // 𭴬
+ 0x2dd2d: "V\a\U0002dd2d", // 𭴭
+ 0x2dd2e: "V\a\U0002dd2e", // 𭴮
+ 0x2dd2f: "V\a\U0002dd2f", // 𭴯
+ 0x2dd30: "V\a\U0002dd30", // 𭴰
+ 0x2dd31: "V\a\U0002dd31", // 𭴱
+ 0x2dd32: "V\a\U0002dd32", // 𭴲
+ 0x2dd33: "V\a\U0002dd33", // 𭴳
+ 0x2dd34: "V\a\U0002dd34", // 𭴴
+ 0x2dd35: "V\a\U0002dd35", // 𭴵
+ 0x2dd36: "V\a\U0002dd36", // 𭴶
+ 0x2dd37: "V\a\U0002dd37", // 𭴷
+ 0x2dd38: "V\b\U0002dd38", // 𭴸
+ 0x2dd39: "V\b\U0002dd39", // 𭴹
+ 0x2dd3a: "V\b\U0002dd3a", // 𭴺
+ 0x2dd3b: "V\b\U0002dd3b", // 𭴻
+ 0x2dd3c: "V\b\U0002dd3c", // 𭴼
+ 0x2dd3d: "V\b\U0002dd3d", // 𭴽
+ 0x2dd3e: "V\b\U0002dd3e", // 𭴾
+ 0x2dd3f: "V\b\U0002dd3f", // 𭴿
+ 0x2dd40: "V\b\U0002dd40", // 𭵀
+ 0x2dd41: "V\b\U0002dd41", // 𭵁
+ 0x2dd42: "V\b\U0002dd42", // 𭵂
+ 0x2dd43: "V\b\U0002dd43", // 𭵃
+ 0x2dd44: "V\b\U0002dd44", // 𭵄
+ 0x2dd45: "V\b\U0002dd45", // 𭵅
+ 0x2dd46: "V\b\U0002dd46", // 𭵆
+ 0x2dd47: "V\b\U0002dd47", // 𭵇
+ 0x2dd48: "V\b\U0002dd48", // 𭵈
+ 0x2dd49: "V\t\U0002dd49", // 𭵉
+ 0x2dd4a: "V\t\U0002dd4a", // 𭵊
+ 0x2dd4b: "V\t\U0002dd4b", // 𭵋
+ 0x2dd4c: "V\t\U0002dd4c", // 𭵌
+ 0x2dd4d: "V\t\U0002dd4d", // 𭵍
+ 0x2dd4e: "V\t\U0002dd4e", // 𭵎
+ 0x2dd4f: "V\t\U0002dd4f", // 𭵏
+ 0x2dd50: "V\t\U0002dd50", // 𭵐
+ 0x2dd51: "V\t\U0002dd51", // 𭵑
+ 0x2dd52: "V\t\U0002dd52", // 𭵒
+ 0x2dd53: "V\t\U0002dd53", // 𭵓
+ 0x2dd54: "V\t\U0002dd54", // 𭵔
+ 0x2dd55: "V\t\U0002dd55", // 𭵕
+ 0x2dd56: "V\t\U0002dd56", // 𭵖
+ 0x2dd57: "V\t\U0002dd57", // 𭵗
+ 0x2dd58: "V\t\U0002dd58", // 𭵘
+ 0x2dd59: "V\t\U0002dd59", // 𭵙
+ 0x2dd5a: "V\t\U0002dd5a", // 𭵚
+ 0x2dd5b: "V\t\U0002dd5b", // 𭵛
+ 0x2dd5c: "V\t\U0002dd5c", // 𭵜
+ 0x2dd5d: "V\t\U0002dd5d", // 𭵝
+ 0x2dd5e: "V\t\U0002dd5e", // 𭵞
+ 0x2dd5f: "V\t\U0002dd5f", // 𭵟
+ 0x2dd60: "V\t\U0002dd60", // 𭵠
+ 0x2dd61: "V\t\U0002dd61", // 𭵡
+ 0x2dd62: "V\n\U0002dd62", // 𭵢
+ 0x2dd63: "V\n\U0002dd63", // 𭵣
+ 0x2dd64: "V\n\U0002dd64", // 𭵤
+ 0x2dd65: "V\n\U0002dd65", // 𭵥
+ 0x2dd66: "V\n\U0002dd66", // 𭵦
+ 0x2dd67: "V\n\U0002dd67", // 𭵧
+ 0x2dd68: "V\n\U0002dd68", // 𭵨
+ 0x2dd69: "V\n\U0002dd69", // 𭵩
+ 0x2dd6a: "V\n\U0002dd6a", // 𭵪
+ 0x2dd6b: "V\n\U0002dd6b", // 𭵫
+ 0x2dd6c: "V\n\U0002dd6c", // 𭵬
+ 0x2dd6d: "V\n\U0002dd6d", // 𭵭
+ 0x2dd6e: "V\n\U0002dd6e", // 𭵮
+ 0x2dd6f: "V\n\U0002dd6f", // 𭵯
+ 0x2dd70: "V\n\U0002dd70", // 𭵰
+ 0x2dd71: "V\n\U0002dd71", // 𭵱
+ 0x2dd72: "V\n\U0002dd72", // 𭵲
+ 0x2dd73: "V\v\U0002dd73", // 𭵳
+ 0x2dd74: "V\v\U0002dd74", // 𭵴
+ 0x2dd75: "V\v\U0002dd75", // 𭵵
+ 0x2dd76: "V\v\U0002dd76", // 𭵶
+ 0x2dd77: "V\v\U0002dd77", // 𭵷
+ 0x2dd78: "V\v\U0002dd78", // 𭵸
+ 0x2dd79: "V\v\U0002dd79", // 𭵹
+ 0x2dd7a: "V\v\U0002dd7a", // 𭵺
+ 0x2dd7b: "V\v\U0002dd7b", // 𭵻
+ 0x2dd7c: "V\v\U0002dd7c", // 𭵼
+ 0x2dd7d: "V\f\U0002dd7d", // 𭵽
+ 0x2dd7e: "V\f\U0002dd7e", // 𭵾
+ 0x2dd7f: "V\f\U0002dd7f", // 𭵿
+ 0x2dd80: "V\f\U0002dd80", // 𭶀
+ 0x2dd81: "V\f\U0002dd81", // 𭶁
+ 0x2dd82: "V\f\U0002dd82", // 𭶂
+ 0x2dd83: "V\f\U0002dd83", // 𭶃
+ 0x2dd84: "V\f\U0002dd84", // 𭶄
+ 0x2dd85: "V\f\U0002dd85", // 𭶅
+ 0x2dd86: "V\f\U0002dd86", // 𭶆
+ 0x2dd87: "V\f\U0002dd87", // 𭶇
+ 0x2dd88: "V\f\U0002dd88", // 𭶈
+ 0x2dd89: "V\f\U0002dd89", // 𭶉
+ 0x2dd8a: "V\f\U0002dd8a", // 𭶊
+ 0x2dd8b: "V\f\U0002dd8b", // 𭶋
+ 0x2dd8c: "V\r\U0002dd8c", // 𭶌
+ 0x2dd8d: "V\r\U0002dd8d", // 𭶍
+ 0x2dd8e: "V\r\U0002dd8e", // 𭶎
+ 0x2dd8f: "V\r\U0002dd8f", // 𭶏
+ 0x2dd90: "V\r\U0002dd90", // 𭶐
+ 0x2dd91: "V\r\U0002dd91", // 𭶑
+ 0x2dd92: "V\r\U0002dd92", // 𭶒
+ 0x2dd93: "V\r\U0002dd93", // 𭶓
+ 0x2dd94: "V\r\U0002dd94", // 𭶔
+ 0x2dd95: "V\r\U0002dd95", // 𭶕
+ 0x2dd96: "V\r\U0002dd96", // 𭶖
+ 0x2dd97: "V\r\U0002dd97", // 𭶗
+ 0x2dd98: "V\r\U0002dd98", // 𭶘
+ 0x2dd99: "V\r\U0002dd99", // 𭶙
+ 0x2dd9a: "V\x0e\U0002dd9a", // 𭶚
+ 0x2dd9b: "V\x0e\U0002dd9b", // 𭶛
+ 0x2dd9c: "V\x0e\U0002dd9c", // 𭶜
+ 0x2dd9d: "V\x0e\U0002dd9d", // 𭶝
+ 0x2dd9e: "V\x0e\U0002dd9e", // 𭶞
+ 0x2dd9f: "V\x0e\U0002dd9f", // 𭶟
+ 0x2dda0: "V\x0e\U0002dda0", // 𭶠
+ 0x2dda1: "V\x0e\U0002dda1", // 𭶡
+ 0x2dda2: "V\x0f\U0002dda2", // 𭶢
+ 0x2dda3: "V\x0f\U0002dda3", // 𭶣
+ 0x2dda4: "V\x10\U0002dda4", // 𭶤
+ 0x2dda5: "V\x10\U0002dda5", // 𭶥
+ 0x2dda6: "V\x10\U0002dda6", // 𭶦
+ 0x2dda7: "V\x12\U0002dda7", // 𭶧
+ 0x2dda8: "V\x14\U0002dda8", // 𭶨
+ 0x2dda9: "V\x14\U0002dda9", // 𭶩
+ 0x2ddaa: "W\x04\U0002ddaa", // 𭶪
+ 0x2ddab: "W\x05\U0002ddab", // 𭶫
+ 0x2ddac: "W\x06\U0002ddac", // 𭶬
+ 0x2ddad: "W\x06\U0002ddad", // 𭶭
+ 0x2ddae: "W\x06\U0002ddae", // 𭶮
+ 0x2ddaf: "W\x06\U0002ddaf", // 𭶯
+ 0x2ddb0: "W\a\U0002ddb0", // 𭶰
+ 0x2ddb1: "W\b\U0002ddb1", // 𭶱
+ 0x2ddb2: "W\t\U0002ddb2", // 𭶲
+ 0x2ddb3: "W\t\U0002ddb3", // 𭶳
+ 0x2ddb4: "W\n\U0002ddb4", // 𭶴
+ 0x2ddb5: "W\n\U0002ddb5", // 𭶵
+ 0x2ddb6: "W\v\U0002ddb6", // 𭶶
+ 0x2ddb7: "W\f\U0002ddb7", // 𭶷
+ 0x2ddb8: "W\f\U0002ddb8", // 𭶸
+ 0x2ddb9: "W\x0e\U0002ddb9", // 𭶹
+ 0x2ddba: "X\x02\U0002ddba", // 𭶺
+ 0x2ddbb: "X\x03\U0002ddbb", // 𭶻
+ 0x2ddbc: "X\a\U0002ddbc", // 𭶼
+ 0x2ddbd: "X\x11\U0002ddbd", // 𭶽
+ 0x2ddbe: "Z\x03\U0002ddbe", // 𭶾
+ 0x2ddbf: "Z\x03\U0002ddbf", // 𭶿
+ 0x2ddc0: "Z\x04\U0002ddc0", // 𭷀
+ 0x2ddc1: "Z\x04\U0002ddc1", // 𭷁
+ 0x2ddc2: "Z\x05\U0002ddc2", // 𭷂
+ 0x2ddc3: "Z\x05\U0002ddc3", // 𭷃
+ 0x2ddc4: "Z\x06\U0002ddc4", // 𭷄
+ 0x2ddc5: "Z\x06\U0002ddc5", // 𭷅
+ 0x2ddc6: "Z\a\U0002ddc6", // 𭷆
+ 0x2ddc7: "Z\r\U0002ddc7", // 𭷇
+ 0x2ddc8: "Z\x0e\U0002ddc8", // 𭷈
+ 0x2ddc9: "[\x04\U0002ddc9", // 𭷉
+ 0x2ddca: "[\x05\U0002ddca", // 𭷊
+ 0x2ddcb: "[\x05\U0002ddcb", // 𭷋
+ 0x2ddcc: "[\a\U0002ddcc", // 𭷌
+ 0x2ddcd: "[\r\U0002ddcd", // 𭷍
+ 0x2ddce: "[\x0e\U0002ddce", // 𭷎
+ 0x2ddcf: "\\\x04\U0002ddcf", // 𭷏
+ 0x2ddd0: "\\\x05\U0002ddd0", // 𭷐
+ 0x2ddd1: "\\\x06\U0002ddd1", // 𭷑
+ 0x2ddd2: "\\\b\U0002ddd2", // 𭷒
+ 0x2ddd3: "]\x01\U0002ddd3", // 𭷓
+ 0x2ddd4: "]\x02\U0002ddd4", // 𭷔
+ 0x2ddd5: "]\x04\U0002ddd5", // 𭷕
+ 0x2ddd6: "]\x04\U0002ddd6", // 𭷖
+ 0x2ddd7: "]\x04\U0002ddd7", // 𭷗
+ 0x2ddd8: "]\x04\U0002ddd8", // 𭷘
+ 0x2ddd9: "]\x04\U0002ddd9", // 𭷙
+ 0x2ddda: "]\x05\U0002ddda", // 𭷚
+ 0x2dddb: "]\x05\U0002dddb", // 𭷛
+ 0x2dddc: "]\x05\U0002dddc", // 𭷜
+ 0x2dddd: "]\x05\U0002dddd", // 𭷝
+ 0x2ddde: "]\x06\U0002ddde", // 𭷞
+ 0x2dddf: "]\x06\U0002dddf", // 𭷟
+ 0x2dde0: "]\a\U0002dde0", // 𭷠
+ 0x2dde1: "]\a\U0002dde1", // 𭷡
+ 0x2dde2: "]\a\U0002dde2", // 𭷢
+ 0x2dde3: "]\a\U0002dde3", // 𭷣
+ 0x2dde4: "]\b\U0002dde4", // 𭷤
+ 0x2dde5: "]\b\U0002dde5", // 𭷥
+ 0x2dde6: "]\b\U0002dde6", // 𭷦
+ 0x2dde7: "]\b\U0002dde7", // 𭷧
+ 0x2dde8: "]\b\U0002dde8", // 𭷨
+ 0x2dde9: "]\b\U0002dde9", // 𭷩
+ 0x2ddea: "]\b\U0002ddea", // 𭷪
+ 0x2ddeb: "]\b\U0002ddeb", // 𭷫
+ 0x2ddec: "]\b\U0002ddec", // 𭷬
+ 0x2dded: "]\t\U0002dded", // 𭷭
+ 0x2ddee: "]\n\U0002ddee", // 𭷮
+ 0x2ddef: "]\n\U0002ddef", // 𭷯
+ 0x2ddf0: "]\v\U0002ddf0", // 𭷰
+ 0x2ddf1: "]\v\U0002ddf1", // 𭷱
+ 0x2ddf2: "]\v\U0002ddf2", // 𭷲
+ 0x2ddf3: "]\v\U0002ddf3", // 𭷳
+ 0x2ddf4: "]\f\U0002ddf4", // 𭷴
+ 0x2ddf5: "]\f\U0002ddf5", // 𭷵
+ 0x2ddf6: "]\x0f\U0002ddf6", // 𭷶
+ 0x2ddf7: "]\x13\U0002ddf7", // 𭷷
+ 0x2ddf8: "^\x02\U0002ddf8", // 𭷸
+ 0x2ddf9: "^\x03\U0002ddf9", // 𭷹
+ 0x2ddfa: "^\x04\U0002ddfa", // 𭷺
+ 0x2ddfb: "^\x04\U0002ddfb", // 𭷻
+ 0x2ddfc: "^\x04\U0002ddfc", // 𭷼
+ 0x2ddfd: "^\x04\U0002ddfd", // 𭷽
+ 0x2ddfe: "^\x04\U0002ddfe", // 𭷾
+ 0x2ddff: "^\x05\U0002ddff", // 𭷿
+ 0x2de00: "^\x05\U0002de00", // 𭸀
+ 0x2de01: "^\x05\U0002de01", // 𭸁
+ 0x2de02: "^\x05\U0002de02", // 𭸂
+ 0x2de03: "^\x05\U0002de03", // 𭸃
+ 0x2de04: "^\x06\U0002de04", // 𭸄
+ 0x2de05: "^\x06\U0002de05", // 𭸅
+ 0x2de06: "^\x06\U0002de06", // 𭸆
+ 0x2de07: "^\x06\U0002de07", // 𭸇
+ 0x2de08: "^\x06\U0002de08", // 𭸈
+ 0x2de09: "^\x06\U0002de09", // 𭸉
+ 0x2de0a: "^\a\U0002de0a", // 𭸊
+ 0x2de0b: "^\a\U0002de0b", // 𭸋
+ 0x2de0c: "^\a\U0002de0c", // 𭸌
+ 0x2de0d: "^\a\U0002de0d", // 𭸍
+ 0x2de0e: "^\a\U0002de0e", // 𭸎
+ 0x2de0f: "^\a\U0002de0f", // 𭸏
+ 0x2de10: "^\a\U0002de10", // 𭸐
+ 0x2de11: "^\a\U0002de11", // 𭸑
+ 0x2de12: "^\b\U0002de12", // 𭸒
+ 0x2de13: "^\b\U0002de13", // 𭸓
+ 0x2de14: "^\b\U0002de14", // 𭸔
+ 0x2de15: "^\b\U0002de15", // 𭸕
+ 0x2de16: "^\b\U0002de16", // 𭸖
+ 0x2de17: "^\t\U0002de17", // 𭸗
+ 0x2de18: "^\t\U0002de18", // 𭸘
+ 0x2de19: "^\t\U0002de19", // 𭸙
+ 0x2de1a: "^\t\U0002de1a", // 𭸚
+ 0x2de1b: "^\t\U0002de1b", // 𭸛
+ 0x2de1c: "^\t\U0002de1c", // 𭸜
+ 0x2de1d: "^\t\U0002de1d", // 𭸝
+ 0x2de1e: "^\t\U0002de1e", // 𭸞
+ 0x2de1f: "^\t\U0002de1f", // 𭸟
+ 0x2de20: "^\t\U0002de20", // 𭸠
+ 0x2de21: "^\n\U0002de21", // 𭸡
+ 0x2de22: "^\v\U0002de22", // 𭸢
+ 0x2de23: "^\v\U0002de23", // 𭸣
+ 0x2de24: "^\v\U0002de24", // 𭸤
+ 0x2de25: "^\v\U0002de25", // 𭸥
+ 0x2de26: "^\v\U0002de26", // 𭸦
+ 0x2de27: "^\v\U0002de27", // 𭸧
+ 0x2de28: "^\f\U0002de28", // 𭸨
+ 0x2de29: "^\f\U0002de29", // 𭸩
+ 0x2de2a: "^\f\U0002de2a", // 𭸪
+ 0x2de2b: "^\f\U0002de2b", // 𭸫
+ 0x2de2c: "^\f\U0002de2c", // 𭸬
+ 0x2de2d: "^\r\U0002de2d", // 𭸭
+ 0x2de2e: "^\x0e\U0002de2e", // 𭸮
+ 0x2de2f: "^\x0e\U0002de2f", // 𭸯
+ 0x2de30: "^\x0f\U0002de30", // 𭸰
+ 0x2de31: "^\x0f\U0002de31", // 𭸱
+ 0x2de32: "^\x11\U0002de32", // 𭸲
+ 0x2de33: "^\x12\U0002de33", // 𭸳
+ 0x2de34: "^\x18\U0002de34", // 𭸴
+ 0x2de35: "`\x02\U0002de35", // 𭸵
+ 0x2de36: "`\x04\U0002de36", // 𭸶
+ 0x2de37: "`\x04\U0002de37", // 𭸷
+ 0x2de38: "`\x04\U0002de38", // 𭸸
+ 0x2de39: "`\x04\U0002de39", // 𭸹
+ 0x2de3a: "`\x04\U0002de3a", // 𭸺
+ 0x2de3b: "`\x04\U0002de3b", // 𭸻
+ 0x2de3c: "`\x05\U0002de3c", // 𭸼
+ 0x2de3d: "`\x05\U0002de3d", // 𭸽
+ 0x2de3e: "`\x05\U0002de3e", // 𭸾
+ 0x2de3f: "`\x05\U0002de3f", // 𭸿
+ 0x2de40: "`\x05\U0002de40", // 𭹀
+ 0x2de41: "`\x05\U0002de41", // 𭹁
+ 0x2de42: "`\x05\U0002de42", // 𭹂
+ 0x2de43: "`\x05\U0002de43", // 𭹃
+ 0x2de44: "`\x06\U0002de44", // 𭹄
+ 0x2de45: "`\x06\U0002de45", // 𭹅
+ 0x2de46: "`\x06\U0002de46", // 𭹆
+ 0x2de47: "`\x06\U0002de47", // 𭹇
+ 0x2de48: "`\x06\U0002de48", // 𭹈
+ 0x2de49: "`\x06\U0002de49", // 𭹉
+ 0x2de4a: "`\x06\U0002de4a", // 𭹊
+ 0x2de4b: "`\x06\U0002de4b", // 𭹋
+ 0x2de4c: "`\a\U0002de4c", // 𭹌
+ 0x2de4d: "`\a\U0002de4d", // 𭹍
+ 0x2de4e: "`\a\U0002de4e", // 𭹎
+ 0x2de4f: "`\a\U0002de4f", // 𭹏
+ 0x2de50: "`\a\U0002de50", // 𭹐
+ 0x2de51: "`\a\U0002de51", // 𭹑
+ 0x2de52: "`\a\U0002de52", // 𭹒
+ 0x2de53: "`\a\U0002de53", // 𭹓
+ 0x2de54: "`\a\U0002de54", // 𭹔
+ 0x2de55: "`\b\U0002de55", // 𭹕
+ 0x2de56: "`\b\U0002de56", // 𭹖
+ 0x2de57: "`\b\U0002de57", // 𭹗
+ 0x2de58: "`\b\U0002de58", // 𭹘
+ 0x2de59: "`\b\U0002de59", // 𭹙
+ 0x2de5a: "`\b\U0002de5a", // 𭹚
+ 0x2de5b: "`\b\U0002de5b", // 𭹛
+ 0x2de5c: "`\b\U0002de5c", // 𭹜
+ 0x2de5d: "`\b\U0002de5d", // 𭹝
+ 0x2de5e: "`\b\U0002de5e", // 𭹞
+ 0x2de5f: "`\b\U0002de5f", // 𭹟
+ 0x2de60: "`\b\U0002de60", // 𭹠
+ 0x2de61: "`\b\U0002de61", // 𭹡
+ 0x2de62: "`\b\U0002de62", // 𭹢
+ 0x2de63: "`\t\U0002de63", // 𭹣
+ 0x2de64: "`\t\U0002de64", // 𭹤
+ 0x2de65: "`\t\U0002de65", // 𭹥
+ 0x2de66: "`\t\U0002de66", // 𭹦
+ 0x2de67: "`\t\U0002de67", // 𭹧
+ 0x2de68: "`\t\U0002de68", // 𭹨
+ 0x2de69: "`\t\U0002de69", // 𭹩
+ 0x2de6a: "`\t\U0002de6a", // 𭹪
+ 0x2de6b: "`\n\U0002de6b", // 𭹫
+ 0x2de6c: "`\n\U0002de6c", // 𭹬
+ 0x2de6d: "`\n\U0002de6d", // 𭹭
+ 0x2de6e: "`\n\U0002de6e", // 𭹮
+ 0x2de6f: "`\v\U0002de6f", // 𭹯
+ 0x2de70: "`\v\U0002de70", // 𭹰
+ 0x2de71: "`\v\U0002de71", // 𭹱
+ 0x2de72: "`\v\U0002de72", // 𭹲
+ 0x2de73: "`\v\U0002de73", // 𭹳
+ 0x2de74: "`\v\U0002de74", // 𭹴
+ 0x2de75: "`\v\U0002de75", // 𭹵
+ 0x2de76: "`\f\U0002de76", // 𭹶
+ 0x2de77: "`\f\U0002de77", // 𭹷
+ 0x2de78: "`\f\U0002de78", // 𭹸
+ 0x2de79: "`\f\U0002de79", // 𭹹
+ 0x2de7a: "`\f\U0002de7a", // 𭹺
+ 0x2de7b: "`\f\U0002de7b", // 𭹻
+ 0x2de7c: "`\f\U0002de7c", // 𭹼
+ 0x2de7d: "`\f\U0002de7d", // 𭹽
+ 0x2de7e: "`\f\U0002de7e", // 𭹾
+ 0x2de7f: "`\f\U0002de7f", // 𭹿
+ 0x2de80: "`\r\U0002de80", // 𭺀
+ 0x2de81: "`\r\U0002de81", // 𭺁
+ 0x2de82: "`\r\U0002de82", // 𭺂
+ 0x2de83: "`\r\U0002de83", // 𭺃
+ 0x2de84: "`\r\U0002de84", // 𭺄
+ 0x2de85: "`\r\U0002de85", // 𭺅
+ 0x2de86: "`\r\U0002de86", // 𭺆
+ 0x2de87: "`\r\U0002de87", // 𭺇
+ 0x2de88: "`\r\U0002de88", // 𭺈
+ 0x2de89: "`\x0e\U0002de89", // 𭺉
+ 0x2de8a: "`\x0e\U0002de8a", // 𭺊
+ 0x2de8b: "`\x0e\U0002de8b", // 𭺋
+ 0x2de8c: "`\x0e\U0002de8c", // 𭺌
+ 0x2de8d: "`\x0f\U0002de8d", // 𭺍
+ 0x2de8e: "`\x0f\U0002de8e", // 𭺎
+ 0x2de8f: "`\x0f\U0002de8f", // 𭺏
+ 0x2de90: "`\x0f\U0002de90", // 𭺐
+ 0x2de91: "`\x10\U0002de91", // 𭺑
+ 0x2de92: "`\x11\U0002de92", // 𭺒
+ 0x2de93: "`\x11\U0002de93", // 𭺓
+ 0x2de94: "`\x12\U0002de94", // 𭺔
+ 0x2de95: "`\x12\U0002de95", // 𭺕
+ 0x2de96: "`\x12\U0002de96", // 𭺖
+ 0x2de97: "a\x04\U0002de97", // 𭺗
+ 0x2de98: "a\x05\U0002de98", // 𭺘
+ 0x2de99: "a\v\U0002de99", // 𭺙
+ 0x2de9a: "a\r\U0002de9a", // 𭺚
+ 0x2de9b: "b\x00\U0002de9b", // 𭺛
+ 0x2de9c: "b\x00\U0002de9c", // 𭺜
+ 0x2de9d: "b\x04\U0002de9d", // 𭺝
+ 0x2de9e: "b\x06\U0002de9e", // 𭺞
+ 0x2de9f: "b\x06\U0002de9f", // 𭺟
+ 0x2dea0: "b\x06\U0002dea0", // 𭺠
+ 0x2dea1: "b\x06\U0002dea1", // 𭺡
+ 0x2dea2: "b\a\U0002dea2", // 𭺢
+ 0x2dea3: "b\b\U0002dea3", // 𭺣
+ 0x2dea4: "b\n\U0002dea4", // 𭺤
+ 0x2dea5: "b\r\U0002dea5", // 𭺥
+ 0x2dea6: "b\r\U0002dea6", // 𭺦
+ 0x2dea7: "b\x0f\U0002dea7", // 𭺧
+ 0x2dea8: "b\x0f\U0002dea8", // 𭺨
+ 0x2dea9: "b\x11\U0002dea9", // 𭺩
+ 0x2deaa: "c\x00\U0002deaa", // 𭺪
+ 0x2deab: "c\x00\U0002deab", // 𭺫
+ 0x2deac: "c\x06\U0002deac", // 𭺬
+ 0x2dead: "c\b\U0002dead", // 𭺭
+ 0x2deae: "c\t\U0002deae", // 𭺮
+ 0x2deaf: "c\t\U0002deaf", // 𭺯
+ 0x2deb0: "c\n\U0002deb0", // 𭺰
+ 0x2deb1: "d\x03\U0002deb1", // 𭺱
+ 0x2deb2: "d\x03\U0002deb2", // 𭺲
+ 0x2deb3: "d\x03\U0002deb3", // 𭺳
+ 0x2deb4: "d\x05\U0002deb4", // 𭺴
+ 0x2deb5: "d\a\U0002deb5", // 𭺵
+ 0x2deb6: "d\r\U0002deb6", // 𭺶
+ 0x2deb7: "d\r\U0002deb7", // 𭺷
+ 0x2deb8: "e\x03\U0002deb8", // 𭺸
+ 0x2deb9: "e\x04\U0002deb9", // 𭺹
+ 0x2deba: "e\x06\U0002deba", // 𭺺
+ 0x2debb: "e\a\U0002debb", // 𭺻
+ 0x2debc: "e\f\U0002debc", // 𭺼
+ 0x2debd: "f\x01\U0002debd", // 𭺽
+ 0x2debe: "f\x04\U0002debe", // 𭺾
+ 0x2debf: "f\x04\U0002debf", // 𭺿
+ 0x2dec0: "f\x04\U0002dec0", // 𭻀
+ 0x2dec1: "f\x04\U0002dec1", // 𭻁
+ 0x2dec2: "f\x04\U0002dec2", // 𭻂
+ 0x2dec3: "f\x04\U0002dec3", // 𭻃
+ 0x2dec4: "f\x04\U0002dec4", // 𭻄
+ 0x2dec5: "f\x04\U0002dec5", // 𭻅
+ 0x2dec6: "f\x04\U0002dec6", // 𭻆
+ 0x2dec7: "f\x05\U0002dec7", // 𭻇
+ 0x2dec8: "f\x05\U0002dec8", // 𭻈
+ 0x2dec9: "f\x05\U0002dec9", // 𭻉
+ 0x2deca: "f\x05\U0002deca", // 𭻊
+ 0x2decb: "f\x05\U0002decb", // 𭻋
+ 0x2decc: "f\x06\U0002decc", // 𭻌
+ 0x2decd: "f\x06\U0002decd", // 𭻍
+ 0x2dece: "f\x06\U0002dece", // 𭻎
+ 0x2decf: "f\x06\U0002decf", // 𭻏
+ 0x2ded0: "f\x06\U0002ded0", // 𭻐
+ 0x2ded1: "f\x06\U0002ded1", // 𭻑
+ 0x2ded2: "f\x06\U0002ded2", // 𭻒
+ 0x2ded3: "f\x06\U0002ded3", // 𭻓
+ 0x2ded4: "f\a\U0002ded4", // 𭻔
+ 0x2ded5: "f\a\U0002ded5", // 𭻕
+ 0x2ded6: "f\a\U0002ded6", // 𭻖
+ 0x2ded7: "f\a\U0002ded7", // 𭻗
+ 0x2ded8: "f\a\U0002ded8", // 𭻘
+ 0x2ded9: "f\a\U0002ded9", // 𭻙
+ 0x2deda: "f\a\U0002deda", // 𭻚
+ 0x2dedb: "f\b\U0002dedb", // 𭻛
+ 0x2dedc: "f\b\U0002dedc", // 𭻜
+ 0x2dedd: "f\b\U0002dedd", // 𭻝
+ 0x2dede: "f\b\U0002dede", // 𭻞
+ 0x2dedf: "f\b\U0002dedf", // 𭻟
+ 0x2dee0: "f\t\U0002dee0", // 𭻠
+ 0x2dee1: "f\t\U0002dee1", // 𭻡
+ 0x2dee2: "f\t\U0002dee2", // 𭻢
+ 0x2dee3: "f\t\U0002dee3", // 𭻣
+ 0x2dee4: "f\t\U0002dee4", // 𭻤
+ 0x2dee5: "f\n\U0002dee5", // 𭻥
+ 0x2dee6: "f\n\U0002dee6", // 𭻦
+ 0x2dee7: "f\v\U0002dee7", // 𭻧
+ 0x2dee8: "f\v\U0002dee8", // 𭻨
+ 0x2dee9: "f\v\U0002dee9", // 𭻩
+ 0x2deea: "f\v\U0002deea", // 𭻪
+ 0x2deeb: "f\v\U0002deeb", // 𭻫
+ 0x2deec: "f\v\U0002deec", // 𭻬
+ 0x2deed: "f\v\U0002deed", // 𭻭
+ 0x2deee: "f\v\U0002deee", // 𭻮
+ 0x2deef: "f\f\U0002deef", // 𭻯
+ 0x2def0: "f\f\U0002def0", // 𭻰
+ 0x2def1: "f\f\U0002def1", // 𭻱
+ 0x2def2: "f\r\U0002def2", // 𭻲
+ 0x2def3: "f\r\U0002def3", // 𭻳
+ 0x2def4: "f\x0e\U0002def4", // 𭻴
+ 0x2def5: "f\x0e\U0002def5", // 𭻵
+ 0x2def6: "f\x0f\U0002def6", // 𭻶
+ 0x2def7: "f\x0f\U0002def7", // 𭻷
+ 0x2def8: "f\x10\U0002def8", // 𭻸
+ 0x2def9: "f\x11\U0002def9", // 𭻹
+ 0x2defa: "f\x12\U0002defa", // 𭻺
+ 0x2defb: "f\x14\U0002defb", // 𭻻
+ 0x2defc: "f\x16\U0002defc", // 𭻼
+ 0x2defd: "f\x17\U0002defd", // 𭻽
+ 0x2defe: "g\x02\U0002defe", // 𭻾
+ 0x2deff: "g\x04\U0002deff", // 𭻿
+ 0x2df00: "g\x05\U0002df00", // 𭼀
+ 0x2df01: "g\x06\U0002df01", // 𭼁
+ 0x2df02: "g\b\U0002df02", // 𭼂
+ 0x2df03: "g\t\U0002df03", // 𭼃
+ 0x2df04: "g\t\U0002df04", // 𭼄
+ 0x2df05: "g\n\U0002df05", // 𭼅
+ 0x2df06: "h\x04\U0002df06", // 𭼆
+ 0x2df07: "h\x04\U0002df07", // 𭼇
+ 0x2df08: "h\x05\U0002df08", // 𭼈
+ 0x2df09: "h\x05\U0002df09", // 𭼉
+ 0x2df0a: "h\x06\U0002df0a", // 𭼊
+ 0x2df0b: "h\x06\U0002df0b", // 𭼋
+ 0x2df0c: "h\x06\U0002df0c", // 𭼌
+ 0x2df0d: "h\x06\U0002df0d", // 𭼍
+ 0x2df0e: "h\a\U0002df0e", // 𭼎
+ 0x2df0f: "h\a\U0002df0f", // 𭼏
+ 0x2df10: "h\a\U0002df10", // 𭼐
+ 0x2df11: "h\a\U0002df11", // 𭼑
+ 0x2df12: "h\a\U0002df12", // 𭼒
+ 0x2df13: "h\b\U0002df13", // 𭼓
+ 0x2df14: "h\b\U0002df14", // 𭼔
+ 0x2df15: "h\b\U0002df15", // 𭼕
+ 0x2df16: "h\b\U0002df16", // 𭼖
+ 0x2df17: "h\t\U0002df17", // 𭼗
+ 0x2df18: "h\t\U0002df18", // 𭼘
+ 0x2df19: "h\t\U0002df19", // 𭼙
+ 0x2df1a: "h\t\U0002df1a", // 𭼚
+ 0x2df1b: "h\t\U0002df1b", // 𭼛
+ 0x2df1c: "h\t\U0002df1c", // 𭼜
+ 0x2df1d: "h\t\U0002df1d", // 𭼝
+ 0x2df1e: "h\n\U0002df1e", // 𭼞
+ 0x2df1f: "h\v\U0002df1f", // 𭼟
+ 0x2df20: "h\v\U0002df20", // 𭼠
+ 0x2df21: "h\v\U0002df21", // 𭼡
+ 0x2df22: "h\v\U0002df22", // 𭼢
+ 0x2df23: "h\v\U0002df23", // 𭼣
+ 0x2df24: "h\v\U0002df24", // 𭼤
+ 0x2df25: "h\v\U0002df25", // 𭼥
+ 0x2df26: "h\v\U0002df26", // 𭼦
+ 0x2df27: "h\v\U0002df27", // 𭼧
+ 0x2df28: "h\f\U0002df28", // 𭼨
+ 0x2df29: "h\f\U0002df29", // 𭼩
+ 0x2df2a: "h\f\U0002df2a", // 𭼪
+ 0x2df2b: "h\f\U0002df2b", // 𭼫
+ 0x2df2c: "h\f\U0002df2c", // 𭼬
+ 0x2df2d: "h\f\U0002df2d", // 𭼭
+ 0x2df2e: "h\r\U0002df2e", // 𭼮
+ 0x2df2f: "h\r\U0002df2f", // 𭼯
+ 0x2df30: "h\x0e\U0002df30", // 𭼰
+ 0x2df31: "h\x0e\U0002df31", // 𭼱
+ 0x2df32: "h\x0e\U0002df32", // 𭼲
+ 0x2df33: "h\x0e\U0002df33", // 𭼳
+ 0x2df34: "h\x0e\U0002df34", // 𭼴
+ 0x2df35: "h\x0f\U0002df35", // 𭼵
+ 0x2df36: "h\x0f\U0002df36", // 𭼶
+ 0x2df37: "h\x0f\U0002df37", // 𭼷
+ 0x2df38: "h\x10\U0002df38", // 𭼸
+ 0x2df39: "h\x13\U0002df39", // 𭼹
+ 0x2df3a: "h\x13\U0002df3a", // 𭼺
+ 0x2df3b: "h\x16\U0002df3b", // 𭼻
+ 0x2df3c: "h\x17\U0002df3c", // 𭼼
+ 0x2df3d: "i\x00\U0002df3d", // 𭼽
+ 0x2df3e: "i\x04\U0002df3e", // 𭼾
+ 0x2df3f: "i\x04\U0002df3f", // 𭼿
+ 0x2df40: "i\x06\U0002df40", // 𭽀
+ 0x2df41: "i\a\U0002df41", // 𭽁
+ 0x2df42: "i\b\U0002df42", // 𭽂
+ 0x2df43: "i\t\U0002df43", // 𭽃
+ 0x2df44: "i\n\U0002df44", // 𭽄
+ 0x2df45: "i\v\U0002df45", // 𭽅
+ 0x2df46: "j\x02\U0002df46", // 𭽆
+ 0x2df47: "j\x03\U0002df47", // 𭽇
+ 0x2df48: "j\x03\U0002df48", // 𭽈
+ 0x2df49: "j\x03\U0002df49", // 𭽉
+ 0x2df4a: "j\x03\U0002df4a", // 𭽊
+ 0x2df4b: "j\x04\U0002df4b", // 𭽋
+ 0x2df4c: "j\x04\U0002df4c", // 𭽌
+ 0x2df4d: "j\x04\U0002df4d", // 𭽍
+ 0x2df4e: "j\x05\U0002df4e", // 𭽎
+ 0x2df4f: "j\x05\U0002df4f", // 𭽏
+ 0x2df50: "j\x05\U0002df50", // 𭽐
+ 0x2df51: "j\x05\U0002df51", // 𭽑
+ 0x2df52: "j\x05\U0002df52", // 𭽒
+ 0x2df53: "j\x05\U0002df53", // 𭽓
+ 0x2df54: "j\x06\U0002df54", // 𭽔
+ 0x2df55: "j\x06\U0002df55", // 𭽕
+ 0x2df56: "j\x06\U0002df56", // 𭽖
+ 0x2df57: "j\x06\U0002df57", // 𭽗
+ 0x2df58: "j\a\U0002df58", // 𭽘
+ 0x2df59: "j\b\U0002df59", // 𭽙
+ 0x2df5a: "j\b\U0002df5a", // 𭽚
+ 0x2df5b: "j\b\U0002df5b", // 𭽛
+ 0x2df5c: "j\b\U0002df5c", // 𭽜
+ 0x2df5d: "j\t\U0002df5d", // 𭽝
+ 0x2df5e: "j\t\U0002df5e", // 𭽞
+ 0x2df5f: "j\n\U0002df5f", // 𭽟
+ 0x2df60: "j\v\U0002df60", // 𭽠
+ 0x2df61: "j\r\U0002df61", // 𭽡
+ 0x2df62: "j\r\U0002df62", // 𭽢
+ 0x2df63: "k\x05\U0002df63", // 𭽣
+ 0x2df64: "k\x05\U0002df64", // 𭽤
+ 0x2df65: "k\x06\U0002df65", // 𭽥
+ 0x2df66: "k\x06\U0002df66", // 𭽦
+ 0x2df67: "k\x06\U0002df67", // 𭽧
+ 0x2df68: "k\x06\U0002df68", // 𭽨
+ 0x2df69: "k\x06\U0002df69", // 𭽩
+ 0x2df6a: "k\x06\U0002df6a", // 𭽪
+ 0x2df6b: "k\a\U0002df6b", // 𭽫
+ 0x2df6c: "k\b\U0002df6c", // 𭽬
+ 0x2df6d: "k\b\U0002df6d", // 𭽭
+ 0x2df6e: "k\b\U0002df6e", // 𭽮
+ 0x2df6f: "k\t\U0002df6f", // 𭽯
+ 0x2df70: "k\t\U0002df70", // 𭽰
+ 0x2df71: "k\n\U0002df71", // 𭽱
+ 0x2df72: "k\n\U0002df72", // 𭽲
+ 0x2df73: "k\n\U0002df73", // 𭽳
+ 0x2df74: "k\v\U0002df74", // 𭽴
+ 0x2df75: "k\v\U0002df75", // 𭽵
+ 0x2df76: "k\f\U0002df76", // 𭽶
+ 0x2df77: "k\r\U0002df77", // 𭽷
+ 0x2df78: "k\x0e\U0002df78", // 𭽸
+ 0x2df79: "k\x0e\U0002df79", // 𭽹
+ 0x2df7a: "k\x12\U0002df7a", // 𭽺
+ 0x2df7b: "k\x14\U0002df7b", // 𭽻
+ 0x2df7c: "l\x04\U0002df7c", // 𭽼
+ 0x2df7d: "l\x05\U0002df7d", // 𭽽
+ 0x2df7e: "l\x05\U0002df7e", // 𭽾
+ 0x2df7f: "l\x05\U0002df7f", // 𭽿
+ 0x2df80: "l\x06\U0002df80", // 𭾀
+ 0x2df81: "l\x06\U0002df81", // 𭾁
+ 0x2df82: "l\a\U0002df82", // 𭾂
+ 0x2df83: "l\b\U0002df83", // 𭾃
+ 0x2df84: "l\b\U0002df84", // 𭾄
+ 0x2df85: "l\b\U0002df85", // 𭾅
+ 0x2df86: "l\b\U0002df86", // 𭾆
+ 0x2df87: "l\t\U0002df87", // 𭾇
+ 0x2df88: "l\t\U0002df88", // 𭾈
+ 0x2df89: "l\t\U0002df89", // 𭾉
+ 0x2df8a: "l\t\U0002df8a", // 𭾊
+ 0x2df8b: "l\t\U0002df8b", // 𭾋
+ 0x2df8c: "l\n\U0002df8c", // 𭾌
+ 0x2df8d: "l\n\U0002df8d", // 𭾍
+ 0x2df8e: "l\n\U0002df8e", // 𭾎
+ 0x2df8f: "l\n\U0002df8f", // 𭾏
+ 0x2df90: "l\v\U0002df90", // 𭾐
+ 0x2df91: "l\f\U0002df91", // 𭾑
+ 0x2df92: "l\r\U0002df92", // 𭾒
+ 0x2df93: "l\x0e\U0002df93", // 𭾓
+ 0x2df94: "l\x0e\U0002df94", // 𭾔
+ 0x2df95: "l\x10\U0002df95", // 𭾕
+ 0x2df96: "l\x12\U0002df96", // 𭾖
+ 0x2df97: "m\x02\U0002df97", // 𭾗
+ 0x2df98: "m\x02\U0002df98", // 𭾘
+ 0x2df99: "m\x02\U0002df99", // 𭾙
+ 0x2df9a: "m\x03\U0002df9a", // 𭾚
+ 0x2df9b: "m\x03\U0002df9b", // 𭾛
+ 0x2df9c: "m\x03\U0002df9c", // 𭾜
+ 0x2df9d: "m\x03\U0002df9d", // 𭾝
+ 0x2df9e: "m\x04\U0002df9e", // 𭾞
+ 0x2df9f: "m\x04\U0002df9f", // 𭾟
+ 0x2dfa0: "m\x04\U0002dfa0", // 𭾠
+ 0x2dfa1: "m\x04\U0002dfa1", // 𭾡
+ 0x2dfa2: "m\x04\U0002dfa2", // 𭾢
+ 0x2dfa3: "m\x04\U0002dfa3", // 𭾣
+ 0x2dfa4: "m\x04\U0002dfa4", // 𭾤
+ 0x2dfa5: "m\x04\U0002dfa5", // 𭾥
+ 0x2dfa6: "m\x05\U0002dfa6", // 𭾦
+ 0x2dfa7: "m\x05\U0002dfa7", // 𭾧
+ 0x2dfa8: "m\x05\U0002dfa8", // 𭾨
+ 0x2dfa9: "m\x05\U0002dfa9", // 𭾩
+ 0x2dfaa: "m\x05\U0002dfaa", // 𭾪
+ 0x2dfab: "m\x06\U0002dfab", // 𭾫
+ 0x2dfac: "m\x06\U0002dfac", // 𭾬
+ 0x2dfad: "m\x06\U0002dfad", // 𭾭
+ 0x2dfae: "m\x06\U0002dfae", // 𭾮
+ 0x2dfaf: "m\x06\U0002dfaf", // 𭾯
+ 0x2dfb0: "m\x06\U0002dfb0", // 𭾰
+ 0x2dfb1: "m\x06\U0002dfb1", // 𭾱
+ 0x2dfb2: "m\x06\U0002dfb2", // 𭾲
+ 0x2dfb3: "m\a\U0002dfb3", // 𭾳
+ 0x2dfb4: "m\a\U0002dfb4", // 𭾴
+ 0x2dfb5: "m\a\U0002dfb5", // 𭾵
+ 0x2dfb6: "m\a\U0002dfb6", // 𭾶
+ 0x2dfb7: "m\a\U0002dfb7", // 𭾷
+ 0x2dfb8: "m\a\U0002dfb8", // 𭾸
+ 0x2dfb9: "m\b\U0002dfb9", // 𭾹
+ 0x2dfba: "m\b\U0002dfba", // 𭾺
+ 0x2dfbb: "m\b\U0002dfbb", // 𭾻
+ 0x2dfbc: "m\b\U0002dfbc", // 𭾼
+ 0x2dfbd: "m\b\U0002dfbd", // 𭾽
+ 0x2dfbe: "m\b\U0002dfbe", // 𭾾
+ 0x2dfbf: "m\b\U0002dfbf", // 𭾿
+ 0x2dfc0: "m\b\U0002dfc0", // 𭿀
+ 0x2dfc1: "m\b\U0002dfc1", // 𭿁
+ 0x2dfc2: "m\b\U0002dfc2", // 𭿂
+ 0x2dfc3: "m\t\U0002dfc3", // 𭿃
+ 0x2dfc4: "m\t\U0002dfc4", // 𭿄
+ 0x2dfc5: "m\t\U0002dfc5", // 𭿅
+ 0x2dfc6: "m\t\U0002dfc6", // 𭿆
+ 0x2dfc7: "m\t\U0002dfc7", // 𭿇
+ 0x2dfc8: "m\t\U0002dfc8", // 𭿈
+ 0x2dfc9: "m\t\U0002dfc9", // 𭿉
+ 0x2dfca: "m\t\U0002dfca", // 𭿊
+ 0x2dfcb: "m\t\U0002dfcb", // 𭿋
+ 0x2dfcc: "m\t\U0002dfcc", // 𭿌
+ 0x2dfcd: "m\t\U0002dfcd", // 𭿍
+ 0x2dfce: "m\t\U0002dfce", // 𭿎
+ 0x2dfcf: "m\t\U0002dfcf", // 𭿏
+ 0x2dfd0: "m\n\U0002dfd0", // 𭿐
+ 0x2dfd1: "m\n\U0002dfd1", // 𭿑
+ 0x2dfd2: "m\n\U0002dfd2", // 𭿒
+ 0x2dfd3: "m\n\U0002dfd3", // 𭿓
+ 0x2dfd4: "m\n\U0002dfd4", // 𭿔
+ 0x2dfd5: "m\v\U0002dfd5", // 𭿕
+ 0x2dfd6: "m\v\U0002dfd6", // 𭿖
+ 0x2dfd7: "m\v\U0002dfd7", // 𭿗
+ 0x2dfd8: "m\v\U0002dfd8", // 𭿘
+ 0x2dfd9: "m\v\U0002dfd9", // 𭿙
+ 0x2dfda: "m\v\U0002dfda", // 𭿚
+ 0x2dfdb: "m\v\U0002dfdb", // 𭿛
+ 0x2dfdc: "m\v\U0002dfdc", // 𭿜
+ 0x2dfdd: "m\f\U0002dfdd", // 𭿝
+ 0x2dfde: "m\f\U0002dfde", // 𭿞
+ 0x2dfdf: "m\f\U0002dfdf", // 𭿟
+ 0x2dfe0: "m\f\U0002dfe0", // 𭿠
+ 0x2dfe1: "m\f\U0002dfe1", // 𭿡
+ 0x2dfe2: "m\r\U0002dfe2", // 𭿢
+ 0x2dfe3: "m\r\U0002dfe3", // 𭿣
+ 0x2dfe4: "m\r\U0002dfe4", // 𭿤
+ 0x2dfe5: "m\r\U0002dfe5", // 𭿥
+ 0x2dfe6: "m\r\U0002dfe6", // 𭿦
+ 0x2dfe7: "m\r\U0002dfe7", // 𭿧
+ 0x2dfe8: "m\r\U0002dfe8", // 𭿨
+ 0x2dfe9: "m\x0e\U0002dfe9", // 𭿩
+ 0x2dfea: "m\x0e\U0002dfea", // 𭿪
+ 0x2dfeb: "m\x0e\U0002dfeb", // 𭿫
+ 0x2dfec: "m\x0e\U0002dfec", // 𭿬
+ 0x2dfed: "m\x0e\U0002dfed", // 𭿭
+ 0x2dfee: "m\x10\U0002dfee", // 𭿮
+ 0x2dfef: "m\x10\U0002dfef", // 𭿯
+ 0x2dff0: "m\x10\U0002dff0", // 𭿰
+ 0x2dff1: "m\x10\U0002dff1", // 𭿱
+ 0x2dff2: "m\x11\U0002dff2", // 𭿲
+ 0x2dff3: "m\x13\U0002dff3", // 𭿳
+ 0x2dff4: "m\x13\U0002dff4", // 𭿴
+ 0x2dff5: "n\x00\U0002dff5", // 𭿵
+ 0x2dff6: "n\x01\U0002dff6", // 𭿶
+ 0x2dff7: "n\x05\U0002dff7", // 𭿷
+ 0x2dff8: "n\x05\U0002dff8", // 𭿸
+ 0x2dff9: "n\x06\U0002dff9", // 𭿹
+ 0x2dffa: "n\x06\U0002dffa", // 𭿺
+ 0x2dffb: "n\n\U0002dffb", // 𭿻
+ 0x2dffc: "n\v\U0002dffc", // 𭿼
+ 0x2dffd: "o\x02\U0002dffd", // 𭿽
+ 0x2dffe: "o\x04\U0002dffe", // 𭿾
+ 0x2dfff: "o\x04\U0002dfff", // 𭿿
+ 0x2e000: "o\x05\U0002e000", // 𮀀
+ 0x2e001: "o\x06\U0002e001", // 𮀁
+ 0x2e002: "o\x06\U0002e002", // 𮀂
+ 0x2e003: "o\b\U0002e003", // 𮀃
+ 0x2e004: "o\b\U0002e004", // 𮀄
+ 0x2e005: "o\t\U0002e005", // 𮀅
+ 0x2e006: "o\n\U0002e006", // 𮀆
+ 0x2e007: "o\n\U0002e007", // 𮀇
+ 0x2e008: "o\n\U0002e008", // 𮀈
+ 0x2e009: "o\v\U0002e009", // 𮀉
+ 0x2e00a: "o\x0f\U0002e00a", // 𮀊
+ 0x2e00b: "p\x03\U0002e00b", // 𮀋
+ 0x2e00c: "p\x03\U0002e00c", // 𮀌
+ 0x2e00d: "p\x04\U0002e00d", // 𮀍
+ 0x2e00e: "p\x04\U0002e00e", // 𮀎
+ 0x2e00f: "p\x05\U0002e00f", // 𮀏
+ 0x2e010: "p\x05\U0002e010", // 𮀐
+ 0x2e011: "p\x05\U0002e011", // 𮀑
+ 0x2e012: "p\x05\U0002e012", // 𮀒
+ 0x2e013: "p\x05\U0002e013", // 𮀓
+ 0x2e014: "p\x05\U0002e014", // 𮀔
+ 0x2e015: "p\x06\U0002e015", // 𮀕
+ 0x2e016: "p\x06\U0002e016", // 𮀖
+ 0x2e017: "p\x06\U0002e017", // 𮀗
+ 0x2e018: "p\x06\U0002e018", // 𮀘
+ 0x2e019: "p\a\U0002e019", // 𮀙
+ 0x2e01a: "p\a\U0002e01a", // 𮀚
+ 0x2e01b: "p\a\U0002e01b", // 𮀛
+ 0x2e01c: "p\a\U0002e01c", // 𮀜
+ 0x2e01d: "p\a\U0002e01d", // 𮀝
+ 0x2e01e: "p\a\U0002e01e", // 𮀞
+ 0x2e01f: "p\a\U0002e01f", // 𮀟
+ 0x2e020: "p\a\U0002e020", // 𮀠
+ 0x2e021: "p\a\U0002e021", // 𮀡
+ 0x2e022: "p\b\U0002e022", // 𮀢
+ 0x2e023: "p\b\U0002e023", // 𮀣
+ 0x2e024: "p\b\U0002e024", // 𮀤
+ 0x2e025: "p\b\U0002e025", // 𮀥
+ 0x2e026: "p\b\U0002e026", // 𮀦
+ 0x2e027: "p\b\U0002e027", // 𮀧
+ 0x2e028: "p\b\U0002e028", // 𮀨
+ 0x2e029: "p\b\U0002e029", // 𮀩
+ 0x2e02a: "p\b\U0002e02a", // 𮀪
+ 0x2e02b: "p\b\U0002e02b", // 𮀫
+ 0x2e02c: "p\t\U0002e02c", // 𮀬
+ 0x2e02d: "p\t\U0002e02d", // 𮀭
+ 0x2e02e: "p\t\U0002e02e", // 𮀮
+ 0x2e02f: "p\t\U0002e02f", // 𮀯
+ 0x2e030: "p\t\U0002e030", // 𮀰
+ 0x2e031: "p\t\U0002e031", // 𮀱
+ 0x2e032: "p\t\U0002e032", // 𮀲
+ 0x2e033: "p\t\U0002e033", // 𮀳
+ 0x2e034: "p\t\U0002e034", // 𮀴
+ 0x2e035: "p\t\U0002e035", // 𮀵
+ 0x2e036: "p\n\U0002e036", // 𮀶
+ 0x2e037: "p\n\U0002e037", // 𮀷
+ 0x2e038: "p\n\U0002e038", // 𮀸
+ 0x2e039: "p\n\U0002e039", // 𮀹
+ 0x2e03a: "p\n\U0002e03a", // 𮀺
+ 0x2e03b: "p\v\U0002e03b", // 𮀻
+ 0x2e03c: "p\v\U0002e03c", // 𮀼
+ 0x2e03d: "p\v\U0002e03d", // 𮀽
+ 0x2e03e: "p\v\U0002e03e", // 𮀾
+ 0x2e03f: "p\v\U0002e03f", // 𮀿
+ 0x2e040: "p\v\U0002e040", // 𮁀
+ 0x2e041: "p\v\U0002e041", // 𮁁
+ 0x2e042: "p\v\U0002e042", // 𮁂
+ 0x2e043: "p\v\U0002e043", // 𮁃
+ 0x2e044: "p\f\U0002e044", // 𮁄
+ 0x2e045: "p\f\U0002e045", // 𮁅
+ 0x2e046: "p\f\U0002e046", // 𮁆
+ 0x2e047: "p\f\U0002e047", // 𮁇
+ 0x2e048: "p\f\U0002e048", // 𮁈
+ 0x2e049: "p\f\U0002e049", // 𮁉
+ 0x2e04a: "p\r\U0002e04a", // 𮁊
+ 0x2e04b: "p\r\U0002e04b", // 𮁋
+ 0x2e04c: "p\r\U0002e04c", // 𮁌
+ 0x2e04d: "p\r\U0002e04d", // 𮁍
+ 0x2e04e: "p\r\U0002e04e", // 𮁎
+ 0x2e04f: "p\r\U0002e04f", // 𮁏
+ 0x2e050: "p\x0e\U0002e050", // 𮁐
+ 0x2e051: "p\x0e\U0002e051", // 𮁑
+ 0x2e052: "p\x0e\U0002e052", // 𮁒
+ 0x2e053: "p\x0e\U0002e053", // 𮁓
+ 0x2e054: "p\x0f\U0002e054", // 𮁔
+ 0x2e055: "p\x10\U0002e055", // 𮁕
+ 0x2e056: "p\x12\U0002e056", // 𮁖
+ 0x2e057: "p\x12\U0002e057", // 𮁗
+ 0x2e058: "p\x12\U0002e058", // 𮁘
+ 0x2e059: "p\x13\U0002e059", // 𮁙
+ 0x2e05a: "p\x13\U0002e05a", // 𮁚
+ 0x2e05b: "p\x15\U0002e05b", // 𮁛
+ 0x2e05c: "q\x02\U0002e05c", // 𮁜
+ 0x2e05d: "q\x02\U0002e05d", // 𮁝
+ 0x2e05e: "q\x03\U0002e05e", // 𮁞
+ 0x2e05f: "q\x04\U0002e05f", // 𮁟
+ 0x2e060: "q\x04\U0002e060", // 𮁠
+ 0x2e061: "q\x04\U0002e061", // 𮁡
+ 0x2e062: "q\x05\U0002e062", // 𮁢
+ 0x2e063: "q\x05\U0002e063", // 𮁣
+ 0x2e064: "q\x05\U0002e064", // 𮁤
+ 0x2e065: "q\x05\U0002e065", // 𮁥
+ 0x2e066: "q\x05\U0002e066", // 𮁦
+ 0x2e067: "q\x05\U0002e067", // 𮁧
+ 0x2e068: "q\x05\U0002e068", // 𮁨
+ 0x2e069: "q\x05\U0002e069", // 𮁩
+ 0x2e06a: "q\x05\U0002e06a", // 𮁪
+ 0x2e06b: "q\x05\U0002e06b", // 𮁫
+ 0x2e06c: "q\x05\U0002e06c", // 𮁬
+ 0x2e06d: "q\x06\U0002e06d", // 𮁭
+ 0x2e06e: "q\x06\U0002e06e", // 𮁮
+ 0x2e06f: "q\x06\U0002e06f", // 𮁯
+ 0x2e070: "q\x06\U0002e070", // 𮁰
+ 0x2e071: "q\x06\U0002e071", // 𮁱
+ 0x2e072: "q\x06\U0002e072", // 𮁲
+ 0x2e073: "q\x06\U0002e073", // 𮁳
+ 0x2e074: "q\x06\U0002e074", // 𮁴
+ 0x2e075: "q\x06\U0002e075", // 𮁵
+ 0x2e076: "q\x06\U0002e076", // 𮁶
+ 0x2e077: "q\x06\U0002e077", // 𮁷
+ 0x2e078: "q\a\U0002e078", // 𮁸
+ 0x2e079: "q\a\U0002e079", // 𮁹
+ 0x2e07a: "q\a\U0002e07a", // 𮁺
+ 0x2e07b: "q\a\U0002e07b", // 𮁻
+ 0x2e07c: "q\a\U0002e07c", // 𮁼
+ 0x2e07d: "q\a\U0002e07d", // 𮁽
+ 0x2e07e: "q\a\U0002e07e", // 𮁾
+ 0x2e07f: "q\b\U0002e07f", // 𮁿
+ 0x2e080: "q\b\U0002e080", // 𮂀
+ 0x2e081: "q\b\U0002e081", // 𮂁
+ 0x2e082: "q\b\U0002e082", // 𮂂
+ 0x2e083: "q\b\U0002e083", // 𮂃
+ 0x2e084: "q\t\U0002e084", // 𮂄
+ 0x2e085: "q\t\U0002e085", // 𮂅
+ 0x2e086: "q\t\U0002e086", // 𮂆
+ 0x2e087: "q\t\U0002e087", // 𮂇
+ 0x2e088: "q\t\U0002e088", // 𮂈
+ 0x2e089: "q\t\U0002e089", // 𮂉
+ 0x2e08a: "q\n\U0002e08a", // 𮂊
+ 0x2e08b: "q\n\U0002e08b", // 𮂋
+ 0x2e08c: "q\n\U0002e08c", // 𮂌
+ 0x2e08d: "q\n\U0002e08d", // 𮂍
+ 0x2e08e: "q\n\U0002e08e", // 𮂎
+ 0x2e08f: "q\v\U0002e08f", // 𮂏
+ 0x2e090: "q\v\U0002e090", // 𮂐
+ 0x2e091: "q\v\U0002e091", // 𮂑
+ 0x2e092: "q\v\U0002e092", // 𮂒
+ 0x2e093: "q\v\U0002e093", // 𮂓
+ 0x2e094: "q\v\U0002e094", // 𮂔
+ 0x2e095: "q\v\U0002e095", // 𮂕
+ 0x2e096: "q\v\U0002e096", // 𮂖
+ 0x2e097: "q\f\U0002e097", // 𮂗
+ 0x2e098: "q\f\U0002e098", // 𮂘
+ 0x2e099: "q\f\U0002e099", // 𮂙
+ 0x2e09a: "q\f\U0002e09a", // 𮂚
+ 0x2e09b: "q\f\U0002e09b", // 𮂛
+ 0x2e09c: "q\r\U0002e09c", // 𮂜
+ 0x2e09d: "q\r\U0002e09d", // 𮂝
+ 0x2e09e: "q\x0e\U0002e09e", // 𮂞
+ 0x2e09f: "q\x0e\U0002e09f", // 𮂟
+ 0x2e0a0: "q\x0f\U0002e0a0", // 𮂠
+ 0x2e0a1: "q\x0f\U0002e0a1", // 𮂡
+ 0x2e0a2: "q\x0f\U0002e0a2", // 𮂢
+ 0x2e0a3: "q\x11\U0002e0a3", // 𮂣
+ 0x2e0a4: "q\x11\U0002e0a4", // 𮂤
+ 0x2e0a5: "q\x11\U0002e0a5", // 𮂥
+ 0x2e0a6: "q\x11\U0002e0a6", // 𮂦
+ 0x2e0a7: "q\x11\U0002e0a7", // 𮂧
+ 0x2e0a8: "q\x12\U0002e0a8", // 𮂨
+ 0x2e0a9: "q\x13\U0002e0a9", // 𮂩
+ 0x2e0aa: "q\x13\U0002e0aa", // 𮂪
+ 0x2e0ab: "q\x13\U0002e0ab", // 𮂫
+ 0x2e0ac: "r\a\U0002e0ac", // 𮂬
+ 0x2e0ad: "r\x10\U0002e0ad", // 𮂭
+ 0x2e0ae: "r\x11\U0002e0ae", // 𮂮
+ 0x2e0af: "s\x02\U0002e0af", // 𮂯
+ 0x2e0b0: "s\x03\U0002e0b0", // 𮂰
+ 0x2e0b1: "s\x04\U0002e0b1", // 𮂱
+ 0x2e0b2: "s\x04\U0002e0b2", // 𮂲
+ 0x2e0b3: "s\x04\U0002e0b3", // 𮂳
+ 0x2e0b4: "s\x04\U0002e0b4", // 𮂴
+ 0x2e0b5: "s\x04\U0002e0b5", // 𮂵
+ 0x2e0b6: "s\x04\U0002e0b6", // 𮂶
+ 0x2e0b7: "s\x04\U0002e0b7", // 𮂷
+ 0x2e0b8: "s\x04\U0002e0b8", // 𮂸
+ 0x2e0b9: "s\x04\U0002e0b9", // 𮂹
+ 0x2e0ba: "s\x05\U0002e0ba", // 𮂺
+ 0x2e0bb: "s\x05\U0002e0bb", // 𮂻
+ 0x2e0bc: "s\x05\U0002e0bc", // 𮂼
+ 0x2e0bd: "s\x05\U0002e0bd", // 𮂽
+ 0x2e0be: "s\x05\U0002e0be", // 𮂾
+ 0x2e0bf: "s\x05\U0002e0bf", // 𮂿
+ 0x2e0c0: "s\x05\U0002e0c0", // 𮃀
+ 0x2e0c1: "s\x06\U0002e0c1", // 𮃁
+ 0x2e0c2: "s\x06\U0002e0c2", // 𮃂
+ 0x2e0c3: "s\x06\U0002e0c3", // 𮃃
+ 0x2e0c4: "s\x06\U0002e0c4", // 𮃄
+ 0x2e0c5: "s\a\U0002e0c5", // 𮃅
+ 0x2e0c6: "s\a\U0002e0c6", // 𮃆
+ 0x2e0c7: "s\b\U0002e0c7", // 𮃇
+ 0x2e0c8: "s\b\U0002e0c8", // 𮃈
+ 0x2e0c9: "s\b\U0002e0c9", // 𮃉
+ 0x2e0ca: "s\b\U0002e0ca", // 𮃊
+ 0x2e0cb: "s\b\U0002e0cb", // 𮃋
+ 0x2e0cc: "s\b\U0002e0cc", // 𮃌
+ 0x2e0cd: "s\b\U0002e0cd", // 𮃍
+ 0x2e0ce: "s\b\U0002e0ce", // 𮃎
+ 0x2e0cf: "s\b\U0002e0cf", // 𮃏
+ 0x2e0d0: "s\b\U0002e0d0", // 𮃐
+ 0x2e0d1: "s\b\U0002e0d1", // 𮃑
+ 0x2e0d2: "s\b\U0002e0d2", // 𮃒
+ 0x2e0d3: "s\t\U0002e0d3", // 𮃓
+ 0x2e0d4: "s\t\U0002e0d4", // 𮃔
+ 0x2e0d5: "s\t\U0002e0d5", // 𮃕
+ 0x2e0d6: "s\t\U0002e0d6", // 𮃖
+ 0x2e0d7: "s\t\U0002e0d7", // 𮃗
+ 0x2e0d8: "s\t\U0002e0d8", // 𮃘
+ 0x2e0d9: "s\t\U0002e0d9", // 𮃙
+ 0x2e0da: "s\t\U0002e0da", // 𮃚
+ 0x2e0db: "s\n\U0002e0db", // 𮃛
+ 0x2e0dc: "s\n\U0002e0dc", // 𮃜
+ 0x2e0dd: "s\n\U0002e0dd", // 𮃝
+ 0x2e0de: "s\n\U0002e0de", // 𮃞
+ 0x2e0df: "s\n\U0002e0df", // 𮃟
+ 0x2e0e0: "s\n\U0002e0e0", // 𮃠
+ 0x2e0e1: "s\n\U0002e0e1", // 𮃡
+ 0x2e0e2: "s\n\U0002e0e2", // 𮃢
+ 0x2e0e3: "s\v\U0002e0e3", // 𮃣
+ 0x2e0e4: "s\v\U0002e0e4", // 𮃤
+ 0x2e0e5: "s\v\U0002e0e5", // 𮃥
+ 0x2e0e6: "s\v\U0002e0e6", // 𮃦
+ 0x2e0e7: "s\v\U0002e0e7", // 𮃧
+ 0x2e0e8: "s\v\U0002e0e8", // 𮃨
+ 0x2e0e9: "s\v\U0002e0e9", // 𮃩
+ 0x2e0ea: "s\v\U0002e0ea", // 𮃪
+ 0x2e0eb: "s\v\U0002e0eb", // 𮃫
+ 0x2e0ec: "s\f\U0002e0ec", // 𮃬
+ 0x2e0ed: "s\f\U0002e0ed", // 𮃭
+ 0x2e0ee: "s\f\U0002e0ee", // 𮃮
+ 0x2e0ef: "s\f\U0002e0ef", // 𮃯
+ 0x2e0f0: "s\f\U0002e0f0", // 𮃰
+ 0x2e0f1: "s\f\U0002e0f1", // 𮃱
+ 0x2e0f2: "s\r\U0002e0f2", // 𮃲
+ 0x2e0f3: "s\x0e\U0002e0f3", // 𮃳
+ 0x2e0f4: "s\x10\U0002e0f4", // 𮃴
+ 0x2e0f5: "s\x10\U0002e0f5", // 𮃵
+ 0x2e0f6: "s\x13\U0002e0f6", // 𮃶
+ 0x2e0f7: "s\x13\U0002e0f7", // 𮃷
+ 0x2e0f8: "t\x03\U0002e0f8", // 𮃸
+ 0x2e0f9: "t\x04\U0002e0f9", // 𮃹
+ 0x2e0fa: "t\x05\U0002e0fa", // 𮃺
+ 0x2e0fb: "t\x05\U0002e0fb", // 𮃻
+ 0x2e0fc: "t\x06\U0002e0fc", // 𮃼
+ 0x2e0fd: "t\a\U0002e0fd", // 𮃽
+ 0x2e0fe: "t\a\U0002e0fe", // 𮃾
+ 0x2e0ff: "t\a\U0002e0ff", // 𮃿
+ 0x2e100: "t\a\U0002e100", // 𮄀
+ 0x2e101: "t\b\U0002e101", // 𮄁
+ 0x2e102: "t\b\U0002e102", // 𮄂
+ 0x2e103: "t\b\U0002e103", // 𮄃
+ 0x2e104: "t\b\U0002e104", // 𮄄
+ 0x2e105: "t\b\U0002e105", // 𮄅
+ 0x2e106: "t\b\U0002e106", // 𮄆
+ 0x2e107: "t\b\U0002e107", // 𮄇
+ 0x2e108: "t\t\U0002e108", // 𮄈
+ 0x2e109: "t\t\U0002e109", // 𮄉
+ 0x2e10a: "t\t\U0002e10a", // 𮄊
+ 0x2e10b: "t\t\U0002e10b", // 𮄋
+ 0x2e10c: "t\n\U0002e10c", // 𮄌
+ 0x2e10d: "t\n\U0002e10d", // 𮄍
+ 0x2e10e: "t\n\U0002e10e", // 𮄎
+ 0x2e10f: "t\v\U0002e10f", // 𮄏
+ 0x2e110: "t\v\U0002e110", // 𮄐
+ 0x2e111: "t\v\U0002e111", // 𮄑
+ 0x2e112: "t\v\U0002e112", // 𮄒
+ 0x2e113: "t\v\U0002e113", // 𮄓
+ 0x2e114: "t\v\U0002e114", // 𮄔
+ 0x2e115: "t\v\U0002e115", // 𮄕
+ 0x2e116: "t\f\U0002e116", // 𮄖
+ 0x2e117: "t\f\U0002e117", // 𮄗
+ 0x2e118: "t\f\U0002e118", // 𮄘
+ 0x2e119: "t\f\U0002e119", // 𮄙
+ 0x2e11a: "t\f\U0002e11a", // 𮄚
+ 0x2e11b: "t\r\U0002e11b", // 𮄛
+ 0x2e11c: "t\r\U0002e11c", // 𮄜
+ 0x2e11d: "t\r\U0002e11d", // 𮄝
+ 0x2e11e: "t\x0e\U0002e11e", // 𮄞
+ 0x2e11f: "t\x0e\U0002e11f", // 𮄟
+ 0x2e120: "t\x0e\U0002e120", // 𮄠
+ 0x2e121: "t\x0e\U0002e121", // 𮄡
+ 0x2e122: "t\x10\U0002e122", // 𮄢
+ 0x2e123: "t\x11\U0002e123", // 𮄣
+ 0x2e124: "t\x12\U0002e124", // 𮄤
+ 0x2e125: "t\x12\U0002e125", // 𮄥
+ 0x2e126: "t\x13\U0002e126", // 𮄦
+ 0x2e127: "u\x03\U0002e127", // 𮄧
+ 0x2e128: "u\x04\U0002e128", // 𮄨
+ 0x2e129: "u\x05\U0002e129", // 𮄩
+ 0x2e12a: "u\x05\U0002e12a", // 𮄪
+ 0x2e12b: "u\x05\U0002e12b", // 𮄫
+ 0x2e12c: "u\x05\U0002e12c", // 𮄬
+ 0x2e12d: "u\x06\U0002e12d", // 𮄭
+ 0x2e12e: "u\x06\U0002e12e", // 𮄮
+ 0x2e12f: "u\a\U0002e12f", // 𮄯
+ 0x2e130: "u\a\U0002e130", // 𮄰
+ 0x2e131: "u\b\U0002e131", // 𮄱
+ 0x2e132: "u\b\U0002e132", // 𮄲
+ 0x2e133: "u\b\U0002e133", // 𮄳
+ 0x2e134: "u\t\U0002e134", // 𮄴
+ 0x2e135: "u\t\U0002e135", // 𮄵
+ 0x2e136: "u\t\U0002e136", // 𮄶
+ 0x2e137: "u\n\U0002e137", // 𮄷
+ 0x2e138: "u\v\U0002e138", // 𮄸
+ 0x2e139: "u\v\U0002e139", // 𮄹
+ 0x2e13a: "u\v\U0002e13a", // 𮄺
+ 0x2e13b: "u\f\U0002e13b", // 𮄻
+ 0x2e13c: "u\f\U0002e13c", // 𮄼
+ 0x2e13d: "u\x0e\U0002e13d", // 𮄽
+ 0x2e13e: "u\x0f\U0002e13e", // 𮄾
+ 0x2e13f: "u\x19\U0002e13f", // 𮄿
+ 0x2e140: "v\x04\U0002e140", // 𮅀
+ 0x2e141: "v\x04\U0002e141", // 𮅁
+ 0x2e142: "v\x04\U0002e142", // 𮅂
+ 0x2e143: "v\x04\U0002e143", // 𮅃
+ 0x2e144: "v\x05\U0002e144", // 𮅄
+ 0x2e145: "v\x05\U0002e145", // 𮅅
+ 0x2e146: "v\x05\U0002e146", // 𮅆
+ 0x2e147: "v\x06\U0002e147", // 𮅇
+ 0x2e148: "v\x06\U0002e148", // 𮅈
+ 0x2e149: "v\x06\U0002e149", // 𮅉
+ 0x2e14a: "v\x06\U0002e14a", // 𮅊
+ 0x2e14b: "v\x06\U0002e14b", // 𮅋
+ 0x2e14c: "v\x06\U0002e14c", // 𮅌
+ 0x2e14d: "v\x06\U0002e14d", // 𮅍
+ 0x2e14e: "v\x06\U0002e14e", // 𮅎
+ 0x2e14f: "v\x06\U0002e14f", // 𮅏
+ 0x2e150: "v\x06\U0002e150", // 𮅐
+ 0x2e151: "v\a\U0002e151", // 𮅑
+ 0x2e152: "v\a\U0002e152", // 𮅒
+ 0x2e153: "v\a\U0002e153", // 𮅓
+ 0x2e154: "v\a\U0002e154", // 𮅔
+ 0x2e155: "v\b\U0002e155", // 𮅕
+ 0x2e156: "v\b\U0002e156", // 𮅖
+ 0x2e157: "v\b\U0002e157", // 𮅗
+ 0x2e158: "v\b\U0002e158", // 𮅘
+ 0x2e159: "v\b\U0002e159", // 𮅙
+ 0x2e15a: "v\b\U0002e15a", // 𮅚
+ 0x2e15b: "v\b\U0002e15b", // 𮅛
+ 0x2e15c: "v\b\U0002e15c", // 𮅜
+ 0x2e15d: "v\b\U0002e15d", // 𮅝
+ 0x2e15e: "v\b\U0002e15e", // 𮅞
+ 0x2e15f: "v\b\U0002e15f", // 𮅟
+ 0x2e160: "v\b\U0002e160", // 𮅠
+ 0x2e161: "v\t\U0002e161", // 𮅡
+ 0x2e162: "v\t\U0002e162", // 𮅢
+ 0x2e163: "v\t\U0002e163", // 𮅣
+ 0x2e164: "v\t\U0002e164", // 𮅤
+ 0x2e165: "v\t\U0002e165", // 𮅥
+ 0x2e166: "v\t\U0002e166", // 𮅦
+ 0x2e167: "v\t\U0002e167", // 𮅧
+ 0x2e168: "v\t\U0002e168", // 𮅨
+ 0x2e169: "v\t\U0002e169", // 𮅩
+ 0x2e16a: "v\t\U0002e16a", // 𮅪
+ 0x2e16b: "v\t\U0002e16b", // 𮅫
+ 0x2e16c: "v\t\U0002e16c", // 𮅬
+ 0x2e16d: "v\t\U0002e16d", // 𮅭
+ 0x2e16e: "v\t\U0002e16e", // 𮅮
+ 0x2e16f: "v\n\U0002e16f", // 𮅯
+ 0x2e170: "v\n\U0002e170", // 𮅰
+ 0x2e171: "v\n\U0002e171", // 𮅱
+ 0x2e172: "v\n\U0002e172", // 𮅲
+ 0x2e173: "v\n\U0002e173", // 𮅳
+ 0x2e174: "v\n\U0002e174", // 𮅴
+ 0x2e175: "v\n\U0002e175", // 𮅵
+ 0x2e176: "v\v\U0002e176", // 𮅶
+ 0x2e177: "v\v\U0002e177", // 𮅷
+ 0x2e178: "v\v\U0002e178", // 𮅸
+ 0x2e179: "v\v\U0002e179", // 𮅹
+ 0x2e17a: "v\v\U0002e17a", // 𮅺
+ 0x2e17b: "v\v\U0002e17b", // 𮅻
+ 0x2e17c: "v\v\U0002e17c", // 𮅼
+ 0x2e17d: "v\v\U0002e17d", // 𮅽
+ 0x2e17e: "v\v\U0002e17e", // 𮅾
+ 0x2e17f: "v\v\U0002e17f", // 𮅿
+ 0x2e180: "v\v\U0002e180", // 𮆀
+ 0x2e181: "v\v\U0002e181", // 𮆁
+ 0x2e182: "v\v\U0002e182", // 𮆂
+ 0x2e183: "v\v\U0002e183", // 𮆃
+ 0x2e184: "v\v\U0002e184", // 𮆄
+ 0x2e185: "v\v\U0002e185", // 𮆅
+ 0x2e186: "v\v\U0002e186", // 𮆆
+ 0x2e187: "v\f\U0002e187", // 𮆇
+ 0x2e188: "v\f\U0002e188", // 𮆈
+ 0x2e189: "v\f\U0002e189", // 𮆉
+ 0x2e18a: "v\f\U0002e18a", // 𮆊
+ 0x2e18b: "v\f\U0002e18b", // 𮆋
+ 0x2e18c: "v\f\U0002e18c", // 𮆌
+ 0x2e18d: "v\f\U0002e18d", // 𮆍
+ 0x2e18e: "v\f\U0002e18e", // 𮆎
+ 0x2e18f: "v\f\U0002e18f", // 𮆏
+ 0x2e190: "v\f\U0002e190", // 𮆐
+ 0x2e191: "v\f\U0002e191", // 𮆑
+ 0x2e192: "v\f\U0002e192", // 𮆒
+ 0x2e193: "v\f\U0002e193", // 𮆓
+ 0x2e194: "v\r\U0002e194", // 𮆔
+ 0x2e195: "v\r\U0002e195", // 𮆕
+ 0x2e196: "v\r\U0002e196", // 𮆖
+ 0x2e197: "v\r\U0002e197", // 𮆗
+ 0x2e198: "v\r\U0002e198", // 𮆘
+ 0x2e199: "v\r\U0002e199", // 𮆙
+ 0x2e19a: "v\r\U0002e19a", // 𮆚
+ 0x2e19b: "v\r\U0002e19b", // 𮆛
+ 0x2e19c: "v\r\U0002e19c", // 𮆜
+ 0x2e19d: "v\r\U0002e19d", // 𮆝
+ 0x2e19e: "v\r\U0002e19e", // 𮆞
+ 0x2e19f: "v\x0e\U0002e19f", // 𮆟
+ 0x2e1a0: "v\x0e\U0002e1a0", // 𮆠
+ 0x2e1a1: "v\x0e\U0002e1a1", // 𮆡
+ 0x2e1a2: "v\x0e\U0002e1a2", // 𮆢
+ 0x2e1a3: "v\x0e\U0002e1a3", // 𮆣
+ 0x2e1a4: "v\x0e\U0002e1a4", // 𮆤
+ 0x2e1a5: "v\x0e\U0002e1a5", // 𮆥
+ 0x2e1a6: "v\x0e\U0002e1a6", // 𮆦
+ 0x2e1a7: "v\x0e\U0002e1a7", // 𮆧
+ 0x2e1a8: "v\x0f\U0002e1a8", // 𮆨
+ 0x2e1a9: "v\x0f\U0002e1a9", // 𮆩
+ 0x2e1aa: "v\x0f\U0002e1aa", // 𮆪
+ 0x2e1ab: "v\x0f\U0002e1ab", // 𮆫
+ 0x2e1ac: "v\x0f\U0002e1ac", // 𮆬
+ 0x2e1ad: "v\x0f\U0002e1ad", // 𮆭
+ 0x2e1ae: "v\x0f\U0002e1ae", // 𮆮
+ 0x2e1af: "v\x0f\U0002e1af", // 𮆯
+ 0x2e1b0: "v\x0f\U0002e1b0", // 𮆰
+ 0x2e1b1: "v\x0f\U0002e1b1", // 𮆱
+ 0x2e1b2: "v\x0f\U0002e1b2", // 𮆲
+ 0x2e1b3: "v\x0f\U0002e1b3", // 𮆳
+ 0x2e1b4: "v\x0f\U0002e1b4", // 𮆴
+ 0x2e1b5: "v\x0f\U0002e1b5", // 𮆵
+ 0x2e1b6: "v\x10\U0002e1b6", // 𮆶
+ 0x2e1b7: "v\x10\U0002e1b7", // 𮆷
+ 0x2e1b8: "v\x10\U0002e1b8", // 𮆸
+ 0x2e1b9: "v\x10\U0002e1b9", // 𮆹
+ 0x2e1ba: "v\x10\U0002e1ba", // 𮆺
+ 0x2e1bb: "v\x10\U0002e1bb", // 𮆻
+ 0x2e1bc: "v\x10\U0002e1bc", // 𮆼
+ 0x2e1bd: "v\x10\U0002e1bd", // 𮆽
+ 0x2e1be: "v\x13\U0002e1be", // 𮆾
+ 0x2e1bf: "v\x13\U0002e1bf", // 𮆿
+ 0x2e1c0: "v\x14\U0002e1c0", // 𮇀
+ 0x2e1c1: "v\x15\U0002e1c1", // 𮇁
+ 0x2e1c2: "v\x17\U0002e1c2", // 𮇂
+ 0x2e1c3: "w\x02\U0002e1c3", // 𮇃
+ 0x2e1c4: "w\x02\U0002e1c4", // 𮇄
+ 0x2e1c5: "w\x03\U0002e1c5", // 𮇅
+ 0x2e1c6: "w\x04\U0002e1c6", // 𮇆
+ 0x2e1c7: "w\x04\U0002e1c7", // 𮇇
+ 0x2e1c8: "w\x04\U0002e1c8", // 𮇈
+ 0x2e1c9: "w\x04\U0002e1c9", // 𮇉
+ 0x2e1ca: "w\x04\U0002e1ca", // 𮇊
+ 0x2e1cb: "w\x05\U0002e1cb", // 𮇋
+ 0x2e1cc: "w\x05\U0002e1cc", // 𮇌
+ 0x2e1cd: "w\x05\U0002e1cd", // 𮇍
+ 0x2e1ce: "w\x05\U0002e1ce", // 𮇎
+ 0x2e1cf: "w\x05\U0002e1cf", // 𮇏
+ 0x2e1d0: "w\x05\U0002e1d0", // 𮇐
+ 0x2e1d1: "w\x05\U0002e1d1", // 𮇑
+ 0x2e1d2: "w\x05\U0002e1d2", // 𮇒
+ 0x2e1d3: "w\x06\U0002e1d3", // 𮇓
+ 0x2e1d4: "w\x06\U0002e1d4", // 𮇔
+ 0x2e1d5: "w\x06\U0002e1d5", // 𮇕
+ 0x2e1d6: "w\x06\U0002e1d6", // 𮇖
+ 0x2e1d7: "w\x06\U0002e1d7", // 𮇗
+ 0x2e1d8: "w\x06\U0002e1d8", // 𮇘
+ 0x2e1d9: "w\x06\U0002e1d9", // 𮇙
+ 0x2e1da: "w\x06\U0002e1da", // 𮇚
+ 0x2e1db: "w\x06\U0002e1db", // 𮇛
+ 0x2e1dc: "w\x06\U0002e1dc", // 𮇜
+ 0x2e1dd: "w\x06\U0002e1dd", // 𮇝
+ 0x2e1de: "w\a\U0002e1de", // 𮇞
+ 0x2e1df: "w\a\U0002e1df", // 𮇟
+ 0x2e1e0: "w\a\U0002e1e0", // 𮇠
+ 0x2e1e1: "w\a\U0002e1e1", // 𮇡
+ 0x2e1e2: "w\a\U0002e1e2", // 𮇢
+ 0x2e1e3: "w\a\U0002e1e3", // 𮇣
+ 0x2e1e4: "w\a\U0002e1e4", // 𮇤
+ 0x2e1e5: "w\b\U0002e1e5", // 𮇥
+ 0x2e1e6: "w\b\U0002e1e6", // 𮇦
+ 0x2e1e7: "w\b\U0002e1e7", // 𮇧
+ 0x2e1e8: "w\b\U0002e1e8", // 𮇨
+ 0x2e1e9: "w\b\U0002e1e9", // 𮇩
+ 0x2e1ea: "w\b\U0002e1ea", // 𮇪
+ 0x2e1eb: "w\b\U0002e1eb", // 𮇫
+ 0x2e1ec: "w\t\U0002e1ec", // 𮇬
+ 0x2e1ed: "w\t\U0002e1ed", // 𮇭
+ 0x2e1ee: "w\t\U0002e1ee", // 𮇮
+ 0x2e1ef: "w\t\U0002e1ef", // 𮇯
+ 0x2e1f0: "w\t\U0002e1f0", // 𮇰
+ 0x2e1f1: "w\t\U0002e1f1", // 𮇱
+ 0x2e1f2: "w\t\U0002e1f2", // 𮇲
+ 0x2e1f3: "w\n\U0002e1f3", // 𮇳
+ 0x2e1f4: "w\n\U0002e1f4", // 𮇴
+ 0x2e1f5: "w\n\U0002e1f5", // 𮇵
+ 0x2e1f6: "w\n\U0002e1f6", // 𮇶
+ 0x2e1f7: "w\n\U0002e1f7", // 𮇷
+ 0x2e1f8: "w\n\U0002e1f8", // 𮇸
+ 0x2e1f9: "w\n\U0002e1f9", // 𮇹
+ 0x2e1fa: "w\v\U0002e1fa", // 𮇺
+ 0x2e1fb: "w\f\U0002e1fb", // 𮇻
+ 0x2e1fc: "w\f\U0002e1fc", // 𮇼
+ 0x2e1fd: "w\r\U0002e1fd", // 𮇽
+ 0x2e1fe: "w\r\U0002e1fe", // 𮇾
+ 0x2e1ff: "w\x0f\U0002e1ff", // 𮇿
+ 0x2e200: "w\x13\U0002e200", // 𮈀
+ 0x2e201: "x\x03\U0002e201", // 𮈁
+ 0x2e202: "x\x03\U0002e202", // 𮈂
+ 0x2e203: "x\x04\U0002e203", // 𮈃
+ 0x2e204: "x\x04\U0002e204", // 𮈄
+ 0x2e205: "x\x04\U0002e205", // 𮈅
+ 0x2e206: "x\x05\U0002e206", // 𮈆
+ 0x2e207: "x\x05\U0002e207", // 𮈇
+ 0x2e208: "x\x05\U0002e208", // 𮈈
+ 0x2e209: "x\x05\U0002e209", // 𮈉
+ 0x2e20a: "x\x05\U0002e20a", // 𮈊
+ 0x2e20b: "x\x06\U0002e20b", // 𮈋
+ 0x2e20c: "x\x06\U0002e20c", // 𮈌
+ 0x2e20d: "x\x06\U0002e20d", // 𮈍
+ 0x2e20e: "x\x06\U0002e20e", // 𮈎
+ 0x2e20f: "x\x06\U0002e20f", // 𮈏
+ 0x2e210: "x\x06\U0002e210", // 𮈐
+ 0x2e211: "x\a\U0002e211", // 𮈑
+ 0x2e212: "x\a\U0002e212", // 𮈒
+ 0x2e213: "x\a\U0002e213", // 𮈓
+ 0x2e214: "x\a\U0002e214", // 𮈔
+ 0x2e215: "x\a\U0002e215", // 𮈕
+ 0x2e216: "x\b\U0002e216", // 𮈖
+ 0x2e217: "x\b\U0002e217", // 𮈗
+ 0x2e218: "x\b\U0002e218", // 𮈘
+ 0x2e219: "x\b\U0002e219", // 𮈙
+ 0x2e21a: "x\b\U0002e21a", // 𮈚
+ 0x2e21b: "x\b\U0002e21b", // 𮈛
+ 0x2e21c: "x\b\U0002e21c", // 𮈜
+ 0x2e21d: "x\b\U0002e21d", // 𮈝
+ 0x2e21e: "x\b\U0002e21e", // 𮈞
+ 0x2e21f: "x\b\U0002e21f", // 𮈟
+ 0x2e220: "x\b\U0002e220", // 𮈠
+ 0x2e221: "x\b\U0002e221", // 𮈡
+ 0x2e222: "x\b\U0002e222", // 𮈢
+ 0x2e223: "x\t\U0002e223", // 𮈣
+ 0x2e224: "x\t\U0002e224", // 𮈤
+ 0x2e225: "x\t\U0002e225", // 𮈥
+ 0x2e226: "x\t\U0002e226", // 𮈦
+ 0x2e227: "x\t\U0002e227", // 𮈧
+ 0x2e228: "x\t\U0002e228", // 𮈨
+ 0x2e229: "x\t\U0002e229", // 𮈩
+ 0x2e22a: "x\t\U0002e22a", // 𮈪
+ 0x2e22b: "x\t\U0002e22b", // 𮈫
+ 0x2e22c: "x\t\U0002e22c", // 𮈬
+ 0x2e22d: "x\t\U0002e22d", // 𮈭
+ 0x2e22e: "x\t\U0002e22e", // 𮈮
+ 0x2e22f: "x\t\U0002e22f", // 𮈯
+ 0x2e230: "x\t\U0002e230", // 𮈰
+ 0x2e231: "x\n\U0002e231", // 𮈱
+ 0x2e232: "x\n\U0002e232", // 𮈲
+ 0x2e233: "x\n\U0002e233", // 𮈳
+ 0x2e234: "x\n\U0002e234", // 𮈴
+ 0x2e235: "x\n\U0002e235", // 𮈵
+ 0x2e236: "x\n\U0002e236", // 𮈶
+ 0x2e237: "x\n\U0002e237", // 𮈷
+ 0x2e238: "x\n\U0002e238", // 𮈸
+ 0x2e239: "x\v\U0002e239", // 𮈹
+ 0x2e23a: "x\v\U0002e23a", // 𮈺
+ 0x2e23b: "x\v\U0002e23b", // 𮈻
+ 0x2e23c: "x\v\U0002e23c", // 𮈼
+ 0x2e23d: "x\v\U0002e23d", // 𮈽
+ 0x2e23e: "x\v\U0002e23e", // 𮈾
+ 0x2e23f: "x\v\U0002e23f", // 𮈿
+ 0x2e240: "x\v\U0002e240", // 𮉀
+ 0x2e241: "x\v\U0002e241", // 𮉁
+ 0x2e242: "x\v\U0002e242", // 𮉂
+ 0x2e243: "x\v\U0002e243", // 𮉃
+ 0x2e244: "x\f\U0002e244", // 𮉄
+ 0x2e245: "x\f\U0002e245", // 𮉅
+ 0x2e246: "x\f\U0002e246", // 𮉆
+ 0x2e247: "x\f\U0002e247", // 𮉇
+ 0x2e248: "x\f\U0002e248", // 𮉈
+ 0x2e249: "x\f\U0002e249", // 𮉉
+ 0x2e24a: "x\r\U0002e24a", // 𮉊
+ 0x2e24b: "x\r\U0002e24b", // 𮉋
+ 0x2e24c: "x\r\U0002e24c", // 𮉌
+ 0x2e24d: "x\r\U0002e24d", // 𮉍
+ 0x2e24e: "x\r\U0002e24e", // 𮉎
+ 0x2e24f: "x\r\U0002e24f", // 𮉏
+ 0x2e250: "x\x0e\U0002e250", // 𮉐
+ 0x2e251: "x\x0e\U0002e251", // 𮉑
+ 0x2e252: "x\x0e\U0002e252", // 𮉒
+ 0x2e253: "x\x0f\U0002e253", // 𮉓
+ 0x2e254: "x\x0f\U0002e254", // 𮉔
+ 0x2e255: "x\x0f\U0002e255", // 𮉕
+ 0x2e256: "x\x0f\U0002e256", // 𮉖
+ 0x2e257: "x\x10\U0002e257", // 𮉗
+ 0x2e258: "x\x10\U0002e258", // 𮉘
+ 0x2e259: "x\x10\U0002e259", // 𮉙
+ 0x2e25a: "x\x11\U0002e25a", // 𮉚
+ 0x2e25b: "x\x12\U0002e25b", // 𮉛
+ 0x2e25c: "x\x12\U0002e25c", // 𮉜
+ 0x2e25d: "x\x13\U0002e25d", // 𮉝
+ 0x2e25e: "x\x13\U0002e25e", // 𮉞
+ 0x2e25f: "x\x15\U0002e25f", // 𮉟
+ 0x2e260: "x\x02\U0002e260", // 𮉠
+ 0x2e261: "x\x05\U0002e261", // 𮉡
+ 0x2e262: "x\x05\U0002e262", // 𮉢
+ 0x2e263: "x\x05\U0002e263", // 𮉣
+ 0x2e264: "x\x06\U0002e264", // 𮉤
+ 0x2e265: "x\x06\U0002e265", // 𮉥
+ 0x2e266: "x\x06\U0002e266", // 𮉦
+ 0x2e267: "x\a\U0002e267", // 𮉧
+ 0x2e268: "x\a\U0002e268", // 𮉨
+ 0x2e269: "x\a\U0002e269", // 𮉩
+ 0x2e26a: "x\b\U0002e26a", // 𮉪
+ 0x2e26b: "x\b\U0002e26b", // 𮉫
+ 0x2e26c: "x\b\U0002e26c", // 𮉬
+ 0x2e26d: "x\t\U0002e26d", // 𮉭
+ 0x2e26e: "x\v\U0002e26e", // 𮉮
+ 0x2e26f: "x\v\U0002e26f", // 𮉯
+ 0x2e270: "y\x03\U0002e270", // 𮉰
+ 0x2e271: "y\x04\U0002e271", // 𮉱
+ 0x2e272: "y\x05\U0002e272", // 𮉲
+ 0x2e273: "y\a\U0002e273", // 𮉳
+ 0x2e274: "y\a\U0002e274", // 𮉴
+ 0x2e275: "y\b\U0002e275", // 𮉵
+ 0x2e276: "y\t\U0002e276", // 𮉶
+ 0x2e277: "y\n\U0002e277", // 𮉷
+ 0x2e278: "y\v\U0002e278", // 𮉸
+ 0x2e279: "y\f\U0002e279", // 𮉹
+ 0x2e27a: "y\f\U0002e27a", // 𮉺
+ 0x2e27b: "y\f\U0002e27b", // 𮉻
+ 0x2e27c: "z\x01\U0002e27c", // 𮉼
+ 0x2e27d: "z\x03\U0002e27d", // 𮉽
+ 0x2e27e: "z\x04\U0002e27e", // 𮉾
+ 0x2e27f: "z\x04\U0002e27f", // 𮉿
+ 0x2e280: "z\x04\U0002e280", // 𮊀
+ 0x2e281: "z\x05\U0002e281", // 𮊁
+ 0x2e282: "z\x05\U0002e282", // 𮊂
+ 0x2e283: "z\x05\U0002e283", // 𮊃
+ 0x2e284: "z\x05\U0002e284", // 𮊄
+ 0x2e285: "z\x06\U0002e285", // 𮊅
+ 0x2e286: "z\a\U0002e286", // 𮊆
+ 0x2e287: "z\b\U0002e287", // 𮊇
+ 0x2e288: "z\b\U0002e288", // 𮊈
+ 0x2e289: "z\b\U0002e289", // 𮊉
+ 0x2e28a: "z\t\U0002e28a", // 𮊊
+ 0x2e28b: "z\t\U0002e28b", // 𮊋
+ 0x2e28c: "z\t\U0002e28c", // 𮊌
+ 0x2e28d: "z\n\U0002e28d", // 𮊍
+ 0x2e28e: "z\n\U0002e28e", // 𮊎
+ 0x2e28f: "z\n\U0002e28f", // 𮊏
+ 0x2e290: "z\n\U0002e290", // 𮊐
+ 0x2e291: "z\n\U0002e291", // 𮊑
+ 0x2e292: "z\n\U0002e292", // 𮊒
+ 0x2e293: "z\n\U0002e293", // 𮊓
+ 0x2e294: "z\v\U0002e294", // 𮊔
+ 0x2e295: "z\v\U0002e295", // 𮊕
+ 0x2e296: "z\v\U0002e296", // 𮊖
+ 0x2e297: "z\v\U0002e297", // 𮊗
+ 0x2e298: "z\v\U0002e298", // 𮊘
+ 0x2e299: "z\v\U0002e299", // 𮊙
+ 0x2e29a: "z\f\U0002e29a", // 𮊚
+ 0x2e29b: "z\f\U0002e29b", // 𮊛
+ 0x2e29c: "z\r\U0002e29c", // 𮊜
+ 0x2e29d: "z\x0e\U0002e29d", // 𮊝
+ 0x2e29e: "z\x0e\U0002e29e", // 𮊞
+ 0x2e29f: "z\x10\U0002e29f", // 𮊟
+ 0x2e2a0: "z\x12\U0002e2a0", // 𮊠
+ 0x2e2a1: "z\x14\U0002e2a1", // 𮊡
+ 0x2e2a2: "{\x03\U0002e2a2", // 𮊢
+ 0x2e2a3: "{\x03\U0002e2a3", // 𮊣
+ 0x2e2a4: "{\x03\U0002e2a4", // 𮊤
+ 0x2e2a5: "{\x05\U0002e2a5", // 𮊥
+ 0x2e2a6: "{\x05\U0002e2a6", // 𮊦
+ 0x2e2a7: "{\x06\U0002e2a7", // 𮊧
+ 0x2e2a8: "{\x06\U0002e2a8", // 𮊨
+ 0x2e2a9: "{\a\U0002e2a9", // 𮊩
+ 0x2e2aa: "{\b\U0002e2aa", // 𮊪
+ 0x2e2ab: "{\b\U0002e2ab", // 𮊫
+ 0x2e2ac: "{\b\U0002e2ac", // 𮊬
+ 0x2e2ad: "{\b\U0002e2ad", // 𮊭
+ 0x2e2ae: "{\t\U0002e2ae", // 𮊮
+ 0x2e2af: "{\t\U0002e2af", // 𮊯
+ 0x2e2b0: "{\n\U0002e2b0", // 𮊰
+ 0x2e2b1: "{\n\U0002e2b1", // 𮊱
+ 0x2e2b2: "{\n\U0002e2b2", // 𮊲
+ 0x2e2b3: "{\f\U0002e2b3", // 𮊳
+ 0x2e2b4: "{\r\U0002e2b4", // 𮊴
+ 0x2e2b5: "{\x0f\U0002e2b5", // 𮊵
+ 0x2e2b6: "{\x0f\U0002e2b6", // 𮊶
+ 0x2e2b7: "{\x10\U0002e2b7", // 𮊷
+ 0x2e2b8: "|\x04\U0002e2b8", // 𮊸
+ 0x2e2b9: "|\x04\U0002e2b9", // 𮊹
+ 0x2e2ba: "|\x04\U0002e2ba", // 𮊺
+ 0x2e2bb: "|\x04\U0002e2bb", // 𮊻
+ 0x2e2bc: "|\x05\U0002e2bc", // 𮊼
+ 0x2e2bd: "|\x06\U0002e2bd", // 𮊽
+ 0x2e2be: "|\x06\U0002e2be", // 𮊾
+ 0x2e2bf: "|\x06\U0002e2bf", // 𮊿
+ 0x2e2c0: "|\x06\U0002e2c0", // 𮋀
+ 0x2e2c1: "|\x06\U0002e2c1", // 𮋁
+ 0x2e2c2: "|\x06\U0002e2c2", // 𮋂
+ 0x2e2c3: "|\a\U0002e2c3", // 𮋃
+ 0x2e2c4: "|\a\U0002e2c4", // 𮋄
+ 0x2e2c5: "|\b\U0002e2c5", // 𮋅
+ 0x2e2c6: "|\b\U0002e2c6", // 𮋆
+ 0x2e2c7: "|\b\U0002e2c7", // 𮋇
+ 0x2e2c8: "|\b\U0002e2c8", // 𮋈
+ 0x2e2c9: "|\t\U0002e2c9", // 𮋉
+ 0x2e2ca: "|\t\U0002e2ca", // 𮋊
+ 0x2e2cb: "|\t\U0002e2cb", // 𮋋
+ 0x2e2cc: "|\t\U0002e2cc", // 𮋌
+ 0x2e2cd: "|\n\U0002e2cd", // 𮋍
+ 0x2e2ce: "|\n\U0002e2ce", // 𮋎
+ 0x2e2cf: "|\n\U0002e2cf", // 𮋏
+ 0x2e2d0: "|\n\U0002e2d0", // 𮋐
+ 0x2e2d1: "|\n\U0002e2d1", // 𮋑
+ 0x2e2d2: "|\v\U0002e2d2", // 𮋒
+ 0x2e2d3: "|\v\U0002e2d3", // 𮋓
+ 0x2e2d4: "|\r\U0002e2d4", // 𮋔
+ 0x2e2d5: "|\r\U0002e2d5", // 𮋕
+ 0x2e2d6: "|\x0e\U0002e2d6", // 𮋖
+ 0x2e2d7: "|\x0e\U0002e2d7", // 𮋗
+ 0x2e2d8: "|\x0f\U0002e2d8", // 𮋘
+ 0x2e2d9: "|\x0f\U0002e2d9", // 𮋙
+ 0x2e2da: "|\x13\U0002e2da", // 𮋚
+ 0x2e2db: "}\x05\U0002e2db", // 𮋛
+ 0x2e2dc: "}\x06\U0002e2dc", // 𮋜
+ 0x2e2dd: "}\a\U0002e2dd", // 𮋝
+ 0x2e2de: "}\b\U0002e2de", // 𮋞
+ 0x2e2df: "~\b\U0002e2df", // 𮋟
+ 0x2e2e0: "~\n\U0002e2e0", // 𮋠
+ 0x2e2e1: "~\n\U0002e2e1", // 𮋡
+ 0x2e2e2: "~\x11\U0002e2e2", // 𮋢
+ 0x2e2e3: "\u007f\x02\U0002e2e3", // 𮋣
+ 0x2e2e4: "\u007f\x04\U0002e2e4", // 𮋤
+ 0x2e2e5: "\u007f\x05\U0002e2e5", // 𮋥
+ 0x2e2e6: "\u007f\x05\U0002e2e6", // 𮋦
+ 0x2e2e7: "\u007f\x05\U0002e2e7", // 𮋧
+ 0x2e2e8: "\u007f\x06\U0002e2e8", // 𮋨
+ 0x2e2e9: "\u007f\x06\U0002e2e9", // 𮋩
+ 0x2e2ea: "\u007f\a\U0002e2ea", // 𮋪
+ 0x2e2eb: "\u007f\f\U0002e2eb", // 𮋫
+ 0x2e2ec: "\x80\x03\U0002e2ec", // 𮋬
+ 0x2e2ed: "\x80\x03\U0002e2ed", // 𮋭
+ 0x2e2ee: "\x80\x04\U0002e2ee", // 𮋮
+ 0x2e2ef: "\x80\x05\U0002e2ef", // 𮋯
+ 0x2e2f0: "\x80\a\U0002e2f0", // 𮋰
+ 0x2e2f1: "\x80\a\U0002e2f1", // 𮋱
+ 0x2e2f2: "\x80\a\U0002e2f2", // 𮋲
+ 0x2e2f3: "\x80\b\U0002e2f3", // 𮋳
+ 0x2e2f4: "\x80\b\U0002e2f4", // 𮋴
+ 0x2e2f5: "\x80\b\U0002e2f5", // 𮋵
+ 0x2e2f6: "\x80\t\U0002e2f6", // 𮋶
+ 0x2e2f7: "\x80\t\U0002e2f7", // 𮋷
+ 0x2e2f8: "\x80\t\U0002e2f8", // 𮋸
+ 0x2e2f9: "\x80\n\U0002e2f9", // 𮋹
+ 0x2e2fa: "\x80\v\U0002e2fa", // 𮋺
+ 0x2e2fb: "\x80\f\U0002e2fb", // 𮋻
+ 0x2e2fc: "\x80\x0e\U0002e2fc", // 𮋼
+ 0x2e2fd: "\x80\x0e\U0002e2fd", // 𮋽
+ 0x2e2fe: "\x80\x0f\U0002e2fe", // 𮋾
+ 0x2e2ff: "\x80\x0f\U0002e2ff", // 𮋿
+ 0x2e300: "\x80\x12\U0002e300", // 𮌀
+ 0x2e301: "\x81\x01\U0002e301", // 𮌁
+ 0x2e302: "\x81\x02\U0002e302", // 𮌂
+ 0x2e303: "\x81\x03\U0002e303", // 𮌃
+ 0x2e304: "\x81\a\U0002e304", // 𮌄
+ 0x2e305: "\x81\t\U0002e305", // 𮌅
+ 0x2e306: "\x81\t\U0002e306", // 𮌆
+ 0x2e307: "\x82\x00\U0002e307", // 𮌇
+ 0x2e308: "\x82\x03\U0002e308", // 𮌈
+ 0x2e309: "\x82\x03\U0002e309", // 𮌉
+ 0x2e30a: "\x82\x03\U0002e30a", // 𮌊
+ 0x2e30b: "\x82\x04\U0002e30b", // 𮌋
+ 0x2e30c: "\x82\x05\U0002e30c", // 𮌌
+ 0x2e30d: "\x82\x05\U0002e30d", // 𮌍
+ 0x2e30e: "\x82\x05\U0002e30e", // 𮌎
+ 0x2e30f: "\x82\x05\U0002e30f", // 𮌏
+ 0x2e310: "\x82\x06\U0002e310", // 𮌐
+ 0x2e311: "\x82\x06\U0002e311", // 𮌑
+ 0x2e312: "\x82\x06\U0002e312", // 𮌒
+ 0x2e313: "\x82\x06\U0002e313", // 𮌓
+ 0x2e314: "\x82\a\U0002e314", // 𮌔
+ 0x2e315: "\x82\a\U0002e315", // 𮌕
+ 0x2e316: "\x82\a\U0002e316", // 𮌖
+ 0x2e317: "\x82\a\U0002e317", // 𮌗
+ 0x2e318: "\x82\a\U0002e318", // 𮌘
+ 0x2e319: "\x82\a\U0002e319", // 𮌙
+ 0x2e31a: "\x82\b\U0002e31a", // 𮌚
+ 0x2e31b: "\x82\b\U0002e31b", // 𮌛
+ 0x2e31c: "\x82\b\U0002e31c", // 𮌜
+ 0x2e31d: "\x82\b\U0002e31d", // 𮌝
+ 0x2e31e: "\x82\b\U0002e31e", // 𮌞
+ 0x2e31f: "\x82\b\U0002e31f", // 𮌟
+ 0x2e320: "\x82\b\U0002e320", // 𮌠
+ 0x2e321: "\x82\t\U0002e321", // 𮌡
+ 0x2e322: "\x82\t\U0002e322", // 𮌢
+ 0x2e323: "\x82\t\U0002e323", // 𮌣
+ 0x2e324: "\x82\t\U0002e324", // 𮌤
+ 0x2e325: "\x82\t\U0002e325", // 𮌥
+ 0x2e326: "\x82\n\U0002e326", // 𮌦
+ 0x2e327: "\x82\n\U0002e327", // 𮌧
+ 0x2e328: "\x82\n\U0002e328", // 𮌨
+ 0x2e329: "\x82\n\U0002e329", // 𮌩
+ 0x2e32a: "\x82\n\U0002e32a", // 𮌪
+ 0x2e32b: "\x82\n\U0002e32b", // 𮌫
+ 0x2e32c: "\x82\n\U0002e32c", // 𮌬
+ 0x2e32d: "\x82\n\U0002e32d", // 𮌭
+ 0x2e32e: "\x82\n\U0002e32e", // 𮌮
+ 0x2e32f: "\x82\n\U0002e32f", // 𮌯
+ 0x2e330: "\x82\n\U0002e330", // 𮌰
+ 0x2e331: "\x82\v\U0002e331", // 𮌱
+ 0x2e332: "\x82\v\U0002e332", // 𮌲
+ 0x2e333: "\x82\v\U0002e333", // 𮌳
+ 0x2e334: "\x82\v\U0002e334", // 𮌴
+ 0x2e335: "\x82\v\U0002e335", // 𮌵
+ 0x2e336: "\x82\v\U0002e336", // 𮌶
+ 0x2e337: "\x82\v\U0002e337", // 𮌷
+ 0x2e338: "\x82\v\U0002e338", // 𮌸
+ 0x2e339: "\x82\v\U0002e339", // 𮌹
+ 0x2e33a: "\x82\f\U0002e33a", // 𮌺
+ 0x2e33b: "\x82\f\U0002e33b", // 𮌻
+ 0x2e33c: "\x82\f\U0002e33c", // 𮌼
+ 0x2e33d: "\x82\f\U0002e33d", // 𮌽
+ 0x2e33e: "\x82\f\U0002e33e", // 𮌾
+ 0x2e33f: "\x82\f\U0002e33f", // 𮌿
+ 0x2e340: "\x82\r\U0002e340", // 𮍀
+ 0x2e341: "\x82\r\U0002e341", // 𮍁
+ 0x2e342: "\x82\x0e\U0002e342", // 𮍂
+ 0x2e343: "\x82\x0e\U0002e343", // 𮍃
+ 0x2e344: "\x82\x0e\U0002e344", // 𮍄
+ 0x2e345: "\x82\x0e\U0002e345", // 𮍅
+ 0x2e346: "\x82\x0e\U0002e346", // 𮍆
+ 0x2e347: "\x82\x0f\U0002e347", // 𮍇
+ 0x2e348: "\x82\x0f\U0002e348", // 𮍈
+ 0x2e349: "\x82\x0f\U0002e349", // 𮍉
+ 0x2e34a: "\x82\x10\U0002e34a", // 𮍊
+ 0x2e34b: "\x82\x14\U0002e34b", // 𮍋
+ 0x2e34c: "\x83\x00\U0002e34c", // 𮍌
+ 0x2e34d: "\x83\x02\U0002e34d", // 𮍍
+ 0x2e34e: "\x83\x05\U0002e34e", // 𮍎
+ 0x2e34f: "\x83\x05\U0002e34f", // 𮍏
+ 0x2e350: "\x83\b\U0002e350", // 𮍐
+ 0x2e351: "\x83\b\U0002e351", // 𮍑
+ 0x2e352: "\x83\b\U0002e352", // 𮍒
+ 0x2e353: "\x83\n\U0002e353", // 𮍓
+ 0x2e354: "\x84\x04\U0002e354", // 𮍔
+ 0x2e355: "\x84\x04\U0002e355", // 𮍕
+ 0x2e356: "\x84\x05\U0002e356", // 𮍖
+ 0x2e357: "\x84\x05\U0002e357", // 𮍗
+ 0x2e358: "\x84\x05\U0002e358", // 𮍘
+ 0x2e359: "\x84\x06\U0002e359", // 𮍙
+ 0x2e35a: "\x84\a\U0002e35a", // 𮍚
+ 0x2e35b: "\x84\a\U0002e35b", // 𮍛
+ 0x2e35c: "\x84\b\U0002e35c", // 𮍜
+ 0x2e35d: "\x84\x0e\U0002e35d", // 𮍝
+ 0x2e35e: "\x84\x0e\U0002e35e", // 𮍞
+ 0x2e35f: "\x84\x12\U0002e35f", // 𮍟
+ 0x2e360: "\x85\x04\U0002e360", // 𮍠
+ 0x2e361: "\x85\x04\U0002e361", // 𮍡
+ 0x2e362: "\x85\x06\U0002e362", // 𮍢
+ 0x2e363: "\x85\b\U0002e363", // 𮍣
+ 0x2e364: "\x85\x0f\U0002e364", // 𮍤
+ 0x2e365: "\x86\x02\U0002e365", // 𮍥
+ 0x2e366: "\x86\x04\U0002e366", // 𮍦
+ 0x2e367: "\x86\x04\U0002e367", // 𮍧
+ 0x2e368: "\x86\x06\U0002e368", // 𮍨
+ 0x2e369: "\x86\x06\U0002e369", // 𮍩
+ 0x2e36a: "\x86\x06\U0002e36a", // 𮍪
+ 0x2e36b: "\x86\x06\U0002e36b", // 𮍫
+ 0x2e36c: "\x86\x06\U0002e36c", // 𮍬
+ 0x2e36d: "\x86\a\U0002e36d", // 𮍭
+ 0x2e36e: "\x86\a\U0002e36e", // 𮍮
+ 0x2e36f: "\x86\b\U0002e36f", // 𮍯
+ 0x2e370: "\x86\t\U0002e370", // 𮍰
+ 0x2e371: "\x86\t\U0002e371", // 𮍱
+ 0x2e372: "\x86\x13\U0002e372", // 𮍲
+ 0x2e373: "\x86\x15\U0002e373", // 𮍳
+ 0x2e374: "\x87\x03\U0002e374", // 𮍴
+ 0x2e375: "\x87\x03\U0002e375", // 𮍵
+ 0x2e376: "\x87\x05\U0002e376", // 𮍶
+ 0x2e377: "\x87\x05\U0002e377", // 𮍷
+ 0x2e378: "\x87\a\U0002e378", // 𮍸
+ 0x2e379: "\x87\b\U0002e379", // 𮍹
+ 0x2e37a: "\x87\t\U0002e37a", // 𮍺
+ 0x2e37b: "\x87\t\U0002e37b", // 𮍻
+ 0x2e37c: "\x87\t\U0002e37c", // 𮍼
+ 0x2e37d: "\x87\t\U0002e37d", // 𮍽
+ 0x2e37e: "\x87\t\U0002e37e", // 𮍾
+ 0x2e37f: "\x87\n\U0002e37f", // 𮍿
+ 0x2e380: "\x87\x12\U0002e380", // 𮎀
+ 0x2e381: "\x88\x04\U0002e381", // 𮎁
+ 0x2e382: "\x88\x13\U0002e382", // 𮎂
+ 0x2e383: "\x89\x04\U0002e383", // 𮎃
+ 0x2e384: "\x89\x04\U0002e384", // 𮎄
+ 0x2e385: "\x89\x05\U0002e385", // 𮎅
+ 0x2e386: "\x89\x05\U0002e386", // 𮎆
+ 0x2e387: "\x89\x05\U0002e387", // 𮎇
+ 0x2e388: "\x89\x05\U0002e388", // 𮎈
+ 0x2e389: "\x89\x05\U0002e389", // 𮎉
+ 0x2e38a: "\x89\x05\U0002e38a", // 𮎊
+ 0x2e38b: "\x89\x06\U0002e38b", // 𮎋
+ 0x2e38c: "\x89\x06\U0002e38c", // 𮎌
+ 0x2e38d: "\x89\a\U0002e38d", // 𮎍
+ 0x2e38e: "\x89\a\U0002e38e", // 𮎎
+ 0x2e38f: "\x89\a\U0002e38f", // 𮎏
+ 0x2e390: "\x89\a\U0002e390", // 𮎐
+ 0x2e391: "\x89\a\U0002e391", // 𮎑
+ 0x2e392: "\x89\b\U0002e392", // 𮎒
+ 0x2e393: "\x89\b\U0002e393", // 𮎓
+ 0x2e394: "\x89\v\U0002e394", // 𮎔
+ 0x2e395: "\x89\x0f\U0002e395", // 𮎕
+ 0x2e396: "\x89\x10\U0002e396", // 𮎖
+ 0x2e397: "\x89\x10\U0002e397", // 𮎗
+ 0x2e398: "\x8a\a\U0002e398", // 𮎘
+ 0x2e399: "\x8a\b\U0002e399", // 𮎙
+ 0x2e39a: "\x8a\v\U0002e39a", // 𮎚
+ 0x2e39b: "\x8b\x00\U0002e39b", // 𮎛
+ 0x2e39c: "\x8b\x00\U0002e39c", // 𮎜
+ 0x2e39d: "\x8b\t\U0002e39d", // 𮎝
+ 0x2e39e: "\x8b\x0f\U0002e39e", // 𮎞
+ 0x2e39f: "\x8c\x04\U0002e39f", // 𮎟
+ 0x2e3a0: "\x8c\x04\U0002e3a0", // 𮎠
+ 0x2e3a1: "\x8c\x04\U0002e3a1", // 𮎡
+ 0x2e3a2: "\x8c\x04\U0002e3a2", // 𮎢
+ 0x2e3a3: "\x8c\x04\U0002e3a3", // 𮎣
+ 0x2e3a4: "\x8c\x05\U0002e3a4", // 𮎤
+ 0x2e3a5: "\x8c\x05\U0002e3a5", // 𮎥
+ 0x2e3a6: "\x8c\x05\U0002e3a6", // 𮎦
+ 0x2e3a7: "\x8c\x06\U0002e3a7", // 𮎧
+ 0x2e3a8: "\x8c\x06\U0002e3a8", // 𮎨
+ 0x2e3a9: "\x8c\x06\U0002e3a9", // 𮎩
+ 0x2e3aa: "\x8c\x06\U0002e3aa", // 𮎪
+ 0x2e3ab: "\x8c\x06\U0002e3ab", // 𮎫
+ 0x2e3ac: "\x8c\x06\U0002e3ac", // 𮎬
+ 0x2e3ad: "\x8c\x06\U0002e3ad", // 𮎭
+ 0x2e3ae: "\x8c\x06\U0002e3ae", // 𮎮
+ 0x2e3af: "\x8c\x06\U0002e3af", // 𮎯
+ 0x2e3b0: "\x8c\x06\U0002e3b0", // 𮎰
+ 0x2e3b1: "\x8c\x06\U0002e3b1", // 𮎱
+ 0x2e3b2: "\x8c\x06\U0002e3b2", // 𮎲
+ 0x2e3b3: "\x8c\x06\U0002e3b3", // 𮎳
+ 0x2e3b4: "\x8c\x06\U0002e3b4", // 𮎴
+ 0x2e3b5: "\x8c\x06\U0002e3b5", // 𮎵
+ 0x2e3b6: "\x8c\x06\U0002e3b6", // 𮎶
+ 0x2e3b7: "\x8c\x06\U0002e3b7", // 𮎷
+ 0x2e3b8: "\x8c\x06\U0002e3b8", // 𮎸
+ 0x2e3b9: "\x8c\a\U0002e3b9", // 𮎹
+ 0x2e3ba: "\x8c\a\U0002e3ba", // 𮎺
+ 0x2e3bb: "\x8c\a\U0002e3bb", // 𮎻
+ 0x2e3bc: "\x8c\a\U0002e3bc", // 𮎼
+ 0x2e3bd: "\x8c\a\U0002e3bd", // 𮎽
+ 0x2e3be: "\x8c\a\U0002e3be", // 𮎾
+ 0x2e3bf: "\x8c\a\U0002e3bf", // 𮎿
+ 0x2e3c0: "\x8c\a\U0002e3c0", // 𮏀
+ 0x2e3c1: "\x8c\a\U0002e3c1", // 𮏁
+ 0x2e3c2: "\x8c\a\U0002e3c2", // 𮏂
+ 0x2e3c3: "\x8c\a\U0002e3c3", // 𮏃
+ 0x2e3c4: "\x8c\a\U0002e3c4", // 𮏄
+ 0x2e3c5: "\x8c\a\U0002e3c5", // 𮏅
+ 0x2e3c6: "\x8c\a\U0002e3c6", // 𮏆
+ 0x2e3c7: "\x8c\a\U0002e3c7", // 𮏇
+ 0x2e3c8: "\x8c\a\U0002e3c8", // 𮏈
+ 0x2e3c9: "\x8c\a\U0002e3c9", // 𮏉
+ 0x2e3ca: "\x8c\a\U0002e3ca", // 𮏊
+ 0x2e3cb: "\x8c\a\U0002e3cb", // 𮏋
+ 0x2e3cc: "\x8c\a\U0002e3cc", // 𮏌
+ 0x2e3cd: "\x8c\a\U0002e3cd", // 𮏍
+ 0x2e3ce: "\x8c\a\U0002e3ce", // 𮏎
+ 0x2e3cf: "\x8c\a\U0002e3cf", // 𮏏
+ 0x2e3d0: "\x8c\b\U0002e3d0", // 𮏐
+ 0x2e3d1: "\x8c\b\U0002e3d1", // 𮏑
+ 0x2e3d2: "\x8c\b\U0002e3d2", // 𮏒
+ 0x2e3d3: "\x8c\b\U0002e3d3", // 𮏓
+ 0x2e3d4: "\x8c\b\U0002e3d4", // 𮏔
+ 0x2e3d5: "\x8c\b\U0002e3d5", // 𮏕
+ 0x2e3d6: "\x8c\b\U0002e3d6", // 𮏖
+ 0x2e3d7: "\x8c\b\U0002e3d7", // 𮏗
+ 0x2e3d8: "\x8c\b\U0002e3d8", // 𮏘
+ 0x2e3d9: "\x8c\b\U0002e3d9", // 𮏙
+ 0x2e3da: "\x8c\b\U0002e3da", // 𮏚
+ 0x2e3db: "\x8c\b\U0002e3db", // 𮏛
+ 0x2e3dc: "\x8c\b\U0002e3dc", // 𮏜
+ 0x2e3dd: "\x8c\b\U0002e3dd", // 𮏝
+ 0x2e3de: "\x8c\b\U0002e3de", // 𮏞
+ 0x2e3df: "\x8c\b\U0002e3df", // 𮏟
+ 0x2e3e0: "\x8c\b\U0002e3e0", // 𮏠
+ 0x2e3e1: "\x8c\b\U0002e3e1", // 𮏡
+ 0x2e3e2: "\x8c\b\U0002e3e2", // 𮏢
+ 0x2e3e3: "\x8c\t\U0002e3e3", // 𮏣
+ 0x2e3e4: "\x8c\t\U0002e3e4", // 𮏤
+ 0x2e3e5: "\x8c\t\U0002e3e5", // 𮏥
+ 0x2e3e6: "\x8c\t\U0002e3e6", // 𮏦
+ 0x2e3e7: "\x8c\t\U0002e3e7", // 𮏧
+ 0x2e3e8: "\x8c\t\U0002e3e8", // 𮏨
+ 0x2e3e9: "\x8c\t\U0002e3e9", // 𮏩
+ 0x2e3ea: "\x8c\t\U0002e3ea", // 𮏪
+ 0x2e3eb: "\x8c\t\U0002e3eb", // 𮏫
+ 0x2e3ec: "\x8c\t\U0002e3ec", // 𮏬
+ 0x2e3ed: "\x8c\t\U0002e3ed", // 𮏭
+ 0x2e3ee: "\x8c\t\U0002e3ee", // 𮏮
+ 0x2e3ef: "\x8c\t\U0002e3ef", // 𮏯
+ 0x2e3f0: "\x8c\t\U0002e3f0", // 𮏰
+ 0x2e3f1: "\x8c\t\U0002e3f1", // 𮏱
+ 0x2e3f2: "\x8c\t\U0002e3f2", // 𮏲
+ 0x2e3f3: "\x8c\t\U0002e3f3", // 𮏳
+ 0x2e3f4: "\x8c\t\U0002e3f4", // 𮏴
+ 0x2e3f5: "\x8c\t\U0002e3f5", // 𮏵
+ 0x2e3f6: "\x8c\t\U0002e3f6", // 𮏶
+ 0x2e3f7: "\x8c\t\U0002e3f7", // 𮏷
+ 0x2e3f8: "\x8c\t\U0002e3f8", // 𮏸
+ 0x2e3f9: "\x8c\t\U0002e3f9", // 𮏹
+ 0x2e3fa: "\x8c\t\U0002e3fa", // 𮏺
+ 0x2e3fb: "\x8c\t\U0002e3fb", // 𮏻
+ 0x2e3fc: "\x8c\t\U0002e3fc", // 𮏼
+ 0x2e3fd: "\x8c\t\U0002e3fd", // 𮏽
+ 0x2e3fe: "\x8c\t\U0002e3fe", // 𮏾
+ 0x2e3ff: "\x8c\t\U0002e3ff", // 𮏿
+ 0x2e400: "\x8c\t\U0002e400", // 𮐀
+ 0x2e401: "\x8c\t\U0002e401", // 𮐁
+ 0x2e402: "\x8c\t\U0002e402", // 𮐂
+ 0x2e403: "\x8c\n\U0002e403", // 𮐃
+ 0x2e404: "\x8c\n\U0002e404", // 𮐄
+ 0x2e405: "\x8c\n\U0002e405", // 𮐅
+ 0x2e406: "\x8c\n\U0002e406", // 𮐆
+ 0x2e407: "\x8c\n\U0002e407", // 𮐇
+ 0x2e408: "\x8c\n\U0002e408", // 𮐈
+ 0x2e409: "\x8c\n\U0002e409", // 𮐉
+ 0x2e40a: "\x8c\n\U0002e40a", // 𮐊
+ 0x2e40b: "\x8c\n\U0002e40b", // 𮐋
+ 0x2e40c: "\x8c\n\U0002e40c", // 𮐌
+ 0x2e40d: "\x8c\n\U0002e40d", // 𮐍
+ 0x2e40e: "\x8c\n\U0002e40e", // 𮐎
+ 0x2e40f: "\x8c\n\U0002e40f", // 𮐏
+ 0x2e410: "\x8c\n\U0002e410", // 𮐐
+ 0x2e411: "\x8c\n\U0002e411", // 𮐑
+ 0x2e412: "\x8c\n\U0002e412", // 𮐒
+ 0x2e413: "\x8c\n\U0002e413", // 𮐓
+ 0x2e414: "\x8c\n\U0002e414", // 𮐔
+ 0x2e415: "\x8c\n\U0002e415", // 𮐕
+ 0x2e416: "\x8c\n\U0002e416", // 𮐖
+ 0x2e417: "\x8c\n\U0002e417", // 𮐗
+ 0x2e418: "\x8c\n\U0002e418", // 𮐘
+ 0x2e419: "\x8c\n\U0002e419", // 𮐙
+ 0x2e41a: "\x8c\n\U0002e41a", // 𮐚
+ 0x2e41b: "\x8c\n\U0002e41b", // 𮐛
+ 0x2e41c: "\x8c\n\U0002e41c", // 𮐜
+ 0x2e41d: "\x8c\n\U0002e41d", // 𮐝
+ 0x2e41e: "\x8c\n\U0002e41e", // 𮐞
+ 0x2e41f: "\x8c\n\U0002e41f", // 𮐟
+ 0x2e420: "\x8c\n\U0002e420", // 𮐠
+ 0x2e421: "\x8c\v\U0002e421", // 𮐡
+ 0x2e422: "\x8c\v\U0002e422", // 𮐢
+ 0x2e423: "\x8c\v\U0002e423", // 𮐣
+ 0x2e424: "\x8c\v\U0002e424", // 𮐤
+ 0x2e425: "\x8c\v\U0002e425", // 𮐥
+ 0x2e426: "\x8c\v\U0002e426", // 𮐦
+ 0x2e427: "\x8c\v\U0002e427", // 𮐧
+ 0x2e428: "\x8c\v\U0002e428", // 𮐨
+ 0x2e429: "\x8c\v\U0002e429", // 𮐩
+ 0x2e42a: "\x8c\v\U0002e42a", // 𮐪
+ 0x2e42b: "\x8c\v\U0002e42b", // 𮐫
+ 0x2e42c: "\x8c\v\U0002e42c", // 𮐬
+ 0x2e42d: "\x8c\v\U0002e42d", // 𮐭
+ 0x2e42e: "\x8c\v\U0002e42e", // 𮐮
+ 0x2e42f: "\x8c\v\U0002e42f", // 𮐯
+ 0x2e430: "\x8c\v\U0002e430", // 𮐰
+ 0x2e431: "\x8c\v\U0002e431", // 𮐱
+ 0x2e432: "\x8c\v\U0002e432", // 𮐲
+ 0x2e433: "\x8c\v\U0002e433", // 𮐳
+ 0x2e434: "\x8c\v\U0002e434", // 𮐴
+ 0x2e435: "\x8c\v\U0002e435", // 𮐵
+ 0x2e436: "\x8c\v\U0002e436", // 𮐶
+ 0x2e437: "\x8c\v\U0002e437", // 𮐷
+ 0x2e438: "\x8c\v\U0002e438", // 𮐸
+ 0x2e439: "\x8c\f\U0002e439", // 𮐹
+ 0x2e43a: "\x8c\f\U0002e43a", // 𮐺
+ 0x2e43b: "\x8c\f\U0002e43b", // 𮐻
+ 0x2e43c: "\x8c\f\U0002e43c", // 𮐼
+ 0x2e43d: "\x8c\f\U0002e43d", // 𮐽
+ 0x2e43e: "\x8c\f\U0002e43e", // 𮐾
+ 0x2e43f: "\x8c\f\U0002e43f", // 𮐿
+ 0x2e440: "\x8c\f\U0002e440", // 𮑀
+ 0x2e441: "\x8c\f\U0002e441", // 𮑁
+ 0x2e442: "\x8c\f\U0002e442", // 𮑂
+ 0x2e443: "\x8c\f\U0002e443", // 𮑃
+ 0x2e444: "\x8c\f\U0002e444", // 𮑄
+ 0x2e445: "\x8c\f\U0002e445", // 𮑅
+ 0x2e446: "\x8c\f\U0002e446", // 𮑆
+ 0x2e447: "\x8c\f\U0002e447", // 𮑇
+ 0x2e448: "\x8c\f\U0002e448", // 𮑈
+ 0x2e449: "\x8c\f\U0002e449", // 𮑉
+ 0x2e44a: "\x8c\f\U0002e44a", // 𮑊
+ 0x2e44b: "\x8c\f\U0002e44b", // 𮑋
+ 0x2e44c: "\x8c\f\U0002e44c", // 𮑌
+ 0x2e44d: "\x8c\f\U0002e44d", // 𮑍
+ 0x2e44e: "\x8c\f\U0002e44e", // 𮑎
+ 0x2e44f: "\x8c\f\U0002e44f", // 𮑏
+ 0x2e450: "\x8c\f\U0002e450", // 𮑐
+ 0x2e451: "\x8c\f\U0002e451", // 𮑑
+ 0x2e452: "\x8c\f\U0002e452", // 𮑒
+ 0x2e453: "\x8c\f\U0002e453", // 𮑓
+ 0x2e454: "\x8c\f\U0002e454", // 𮑔
+ 0x2e455: "\x8c\f\U0002e455", // 𮑕
+ 0x2e456: "\x8c\f\U0002e456", // 𮑖
+ 0x2e457: "\x8c\f\U0002e457", // 𮑗
+ 0x2e458: "\x8c\f\U0002e458", // 𮑘
+ 0x2e459: "\x8c\f\U0002e459", // 𮑙
+ 0x2e45a: "\x8c\r\U0002e45a", // 𮑚
+ 0x2e45b: "\x8c\r\U0002e45b", // 𮑛
+ 0x2e45c: "\x8c\r\U0002e45c", // 𮑜
+ 0x2e45d: "\x8c\r\U0002e45d", // 𮑝
+ 0x2e45e: "\x8c\r\U0002e45e", // 𮑞
+ 0x2e45f: "\x8c\r\U0002e45f", // 𮑟
+ 0x2e460: "\x8c\r\U0002e460", // 𮑠
+ 0x2e461: "\x8c\r\U0002e461", // 𮑡
+ 0x2e462: "\x8c\r\U0002e462", // 𮑢
+ 0x2e463: "\x8c\r\U0002e463", // 𮑣
+ 0x2e464: "\x8c\r\U0002e464", // 𮑤
+ 0x2e465: "\x8c\r\U0002e465", // 𮑥
+ 0x2e466: "\x8c\r\U0002e466", // 𮑦
+ 0x2e467: "\x8c\r\U0002e467", // 𮑧
+ 0x2e468: "\x8c\r\U0002e468", // 𮑨
+ 0x2e469: "\x8c\r\U0002e469", // 𮑩
+ 0x2e46a: "\x8c\r\U0002e46a", // 𮑪
+ 0x2e46b: "\x8c\r\U0002e46b", // 𮑫
+ 0x2e46c: "\x8c\r\U0002e46c", // 𮑬
+ 0x2e46d: "\x8c\r\U0002e46d", // 𮑭
+ 0x2e46e: "\x8c\r\U0002e46e", // 𮑮
+ 0x2e46f: "\x8c\r\U0002e46f", // 𮑯
+ 0x2e470: "\x8c\r\U0002e470", // 𮑰
+ 0x2e471: "\x8c\r\U0002e471", // 𮑱
+ 0x2e472: "\x8c\r\U0002e472", // 𮑲
+ 0x2e473: "\x8c\r\U0002e473", // 𮑳
+ 0x2e474: "\x8c\r\U0002e474", // 𮑴
+ 0x2e475: "\x8c\r\U0002e475", // 𮑵
+ 0x2e476: "\x8c\r\U0002e476", // 𮑶
+ 0x2e477: "\x8c\r\U0002e477", // 𮑷
+ 0x2e478: "\x8c\r\U0002e478", // 𮑸
+ 0x2e479: "\x8c\r\U0002e479", // 𮑹
+ 0x2e47a: "\x8c\r\U0002e47a", // 𮑺
+ 0x2e47b: "\x8c\r\U0002e47b", // 𮑻
+ 0x2e47c: "\x8c\x0e\U0002e47c", // 𮑼
+ 0x2e47d: "\x8c\x0e\U0002e47d", // 𮑽
+ 0x2e47e: "\x8c\x0e\U0002e47e", // 𮑾
+ 0x2e47f: "\x8c\x0e\U0002e47f", // 𮑿
+ 0x2e480: "\x8c\x0e\U0002e480", // 𮒀
+ 0x2e481: "\x8c\x0e\U0002e481", // 𮒁
+ 0x2e482: "\x8c\x0e\U0002e482", // 𮒂
+ 0x2e483: "\x8c\x0e\U0002e483", // 𮒃
+ 0x2e484: "\x8c\x0e\U0002e484", // 𮒄
+ 0x2e485: "\x8c\x0e\U0002e485", // 𮒅
+ 0x2e486: "\x8c\x0e\U0002e486", // 𮒆
+ 0x2e487: "\x8c\x0e\U0002e487", // 𮒇
+ 0x2e488: "\x8c\x0e\U0002e488", // 𮒈
+ 0x2e489: "\x8c\x0e\U0002e489", // 𮒉
+ 0x2e48a: "\x8c\x0e\U0002e48a", // 𮒊
+ 0x2e48b: "\x8c\x0e\U0002e48b", // 𮒋
+ 0x2e48c: "\x8c\x0e\U0002e48c", // 𮒌
+ 0x2e48d: "\x8c\x0e\U0002e48d", // 𮒍
+ 0x2e48e: "\x8c\x0e\U0002e48e", // 𮒎
+ 0x2e48f: "\x8c\x0e\U0002e48f", // 𮒏
+ 0x2e490: "\x8c\x0e\U0002e490", // 𮒐
+ 0x2e491: "\x8c\x0e\U0002e491", // 𮒑
+ 0x2e492: "\x8c\x0e\U0002e492", // 𮒒
+ 0x2e493: "\x8c\x0e\U0002e493", // 𮒓
+ 0x2e494: "\x8c\x0e\U0002e494", // 𮒔
+ 0x2e495: "\x8c\x0e\U0002e495", // 𮒕
+ 0x2e496: "\x8c\x0e\U0002e496", // 𮒖
+ 0x2e497: "\x8c\x0f\U0002e497", // 𮒗
+ 0x2e498: "\x8c\x0f\U0002e498", // 𮒘
+ 0x2e499: "\x8c\x0f\U0002e499", // 𮒙
+ 0x2e49a: "\x8c\x0f\U0002e49a", // 𮒚
+ 0x2e49b: "\x8c\x0f\U0002e49b", // 𮒛
+ 0x2e49c: "\x8c\x0f\U0002e49c", // 𮒜
+ 0x2e49d: "\x8c\x0f\U0002e49d", // 𮒝
+ 0x2e49e: "\x8c\x0f\U0002e49e", // 𮒞
+ 0x2e49f: "\x8c\x0f\U0002e49f", // 𮒟
+ 0x2e4a0: "\x8c\x0f\U0002e4a0", // 𮒠
+ 0x2e4a1: "\x8c\x0f\U0002e4a1", // 𮒡
+ 0x2e4a2: "\x8c\x0f\U0002e4a2", // 𮒢
+ 0x2e4a3: "\x8c\x0f\U0002e4a3", // 𮒣
+ 0x2e4a4: "\x8c\x0f\U0002e4a4", // 𮒤
+ 0x2e4a5: "\x8c\x0f\U0002e4a5", // 𮒥
+ 0x2e4a6: "\x8c\x0f\U0002e4a6", // 𮒦
+ 0x2e4a7: "\x8c\x0f\U0002e4a7", // 𮒧
+ 0x2e4a8: "\x8c\x0f\U0002e4a8", // 𮒨
+ 0x2e4a9: "\x8c\x10\U0002e4a9", // 𮒩
+ 0x2e4aa: "\x8c\x10\U0002e4aa", // 𮒪
+ 0x2e4ab: "\x8c\x10\U0002e4ab", // 𮒫
+ 0x2e4ac: "\x8c\x10\U0002e4ac", // 𮒬
+ 0x2e4ad: "\x8c\x10\U0002e4ad", // 𮒭
+ 0x2e4ae: "\x8c\x10\U0002e4ae", // 𮒮
+ 0x2e4af: "\x8c\x10\U0002e4af", // 𮒯
+ 0x2e4b0: "\x8c\x10\U0002e4b0", // 𮒰
+ 0x2e4b1: "\x8c\x10\U0002e4b1", // 𮒱
+ 0x2e4b2: "\x8c\x10\U0002e4b2", // 𮒲
+ 0x2e4b3: "\x8c\x10\U0002e4b3", // 𮒳
+ 0x2e4b4: "\x8c\x10\U0002e4b4", // 𮒴
+ 0x2e4b5: "\x8c\x10\U0002e4b5", // 𮒵
+ 0x2e4b6: "\x8c\x10\U0002e4b6", // 𮒶
+ 0x2e4b7: "\x8c\x10\U0002e4b7", // 𮒷
+ 0x2e4b8: "\x8c\x11\U0002e4b8", // 𮒸
+ 0x2e4b9: "\x8c\x11\U0002e4b9", // 𮒹
+ 0x2e4ba: "\x8c\x11\U0002e4ba", // 𮒺
+ 0x2e4bb: "\x8c\x11\U0002e4bb", // 𮒻
+ 0x2e4bc: "\x8c\x11\U0002e4bc", // 𮒼
+ 0x2e4bd: "\x8c\x11\U0002e4bd", // 𮒽
+ 0x2e4be: "\x8c\x11\U0002e4be", // 𮒾
+ 0x2e4bf: "\x8c\x11\U0002e4bf", // 𮒿
+ 0x2e4c0: "\x8c\x11\U0002e4c0", // 𮓀
+ 0x2e4c1: "\x8c\x11\U0002e4c1", // 𮓁
+ 0x2e4c2: "\x8c\x11\U0002e4c2", // 𮓂
+ 0x2e4c3: "\x8c\x11\U0002e4c3", // 𮓃
+ 0x2e4c4: "\x8c\x12\U0002e4c4", // 𮓄
+ 0x2e4c5: "\x8c\x12\U0002e4c5", // 𮓅
+ 0x2e4c6: "\x8c\x12\U0002e4c6", // 𮓆
+ 0x2e4c7: "\x8c\x12\U0002e4c7", // 𮓇
+ 0x2e4c8: "\x8c\x12\U0002e4c8", // 𮓈
+ 0x2e4c9: "\x8c\x12\U0002e4c9", // 𮓉
+ 0x2e4ca: "\x8c\x12\U0002e4ca", // 𮓊
+ 0x2e4cb: "\x8c\x12\U0002e4cb", // 𮓋
+ 0x2e4cc: "\x8c\x12\U0002e4cc", // 𮓌
+ 0x2e4cd: "\x8c\x12\U0002e4cd", // 𮓍
+ 0x2e4ce: "\x8c\x13\U0002e4ce", // 𮓎
+ 0x2e4cf: "\x8c\x13\U0002e4cf", // 𮓏
+ 0x2e4d0: "\x8c\x13\U0002e4d0", // 𮓐
+ 0x2e4d1: "\x8c\x13\U0002e4d1", // 𮓑
+ 0x2e4d2: "\x8c\x13\U0002e4d2", // 𮓒
+ 0x2e4d3: "\x8c\x14\U0002e4d3", // 𮓓
+ 0x2e4d4: "\x8c\x15\U0002e4d4", // 𮓔
+ 0x2e4d5: "\x8c\x15\U0002e4d5", // 𮓕
+ 0x2e4d6: "\x8c\x16\U0002e4d6", // 𮓖
+ 0x2e4d7: "\x8d\x00\U0002e4d7", // 𮓗
+ 0x2e4d8: "\x8d\x02\U0002e4d8", // 𮓘
+ 0x2e4d9: "\x8d\x02\U0002e4d9", // 𮓙
+ 0x2e4da: "\x8d\x02\U0002e4da", // 𮓚
+ 0x2e4db: "\x8d\x03\U0002e4db", // 𮓛
+ 0x2e4dc: "\x8d\x03\U0002e4dc", // 𮓜
+ 0x2e4dd: "\x8d\x04\U0002e4dd", // 𮓝
+ 0x2e4de: "\x8d\x04\U0002e4de", // 𮓞
+ 0x2e4df: "\x8d\x04\U0002e4df", // 𮓟
+ 0x2e4e0: "\x8d\x04\U0002e4e0", // 𮓠
+ 0x2e4e1: "\x8d\x05\U0002e4e1", // 𮓡
+ 0x2e4e2: "\x8d\x06\U0002e4e2", // 𮓢
+ 0x2e4e3: "\x8d\x06\U0002e4e3", // 𮓣
+ 0x2e4e4: "\x8d\x06\U0002e4e4", // 𮓤
+ 0x2e4e5: "\x8d\a\U0002e4e5", // 𮓥
+ 0x2e4e6: "\x8d\a\U0002e4e6", // 𮓦
+ 0x2e4e7: "\x8d\t\U0002e4e7", // 𮓧
+ 0x2e4e8: "\x8d\t\U0002e4e8", // 𮓨
+ 0x2e4e9: "\x8d\n\U0002e4e9", // 𮓩
+ 0x2e4ea: "\x8d\n\U0002e4ea", // 𮓪
+ 0x2e4eb: "\x8d\v\U0002e4eb", // 𮓫
+ 0x2e4ec: "\x8d\v\U0002e4ec", // 𮓬
+ 0x2e4ed: "\x8d\f\U0002e4ed", // 𮓭
+ 0x2e4ee: "\x8d\r\U0002e4ee", // 𮓮
+ 0x2e4ef: "\x8d\x0e\U0002e4ef", // 𮓯
+ 0x2e4f0: "\x8e\x00\U0002e4f0", // 𮓰
+ 0x2e4f1: "\x8e\x01\U0002e4f1", // 𮓱
+ 0x2e4f2: "\x8e\x02\U0002e4f2", // 𮓲
+ 0x2e4f3: "\x8e\x03\U0002e4f3", // 𮓳
+ 0x2e4f4: "\x8e\x03\U0002e4f4", // 𮓴
+ 0x2e4f5: "\x8e\x03\U0002e4f5", // 𮓵
+ 0x2e4f6: "\x8e\x03\U0002e4f6", // 𮓶
+ 0x2e4f7: "\x8e\x03\U0002e4f7", // 𮓷
+ 0x2e4f8: "\x8e\x04\U0002e4f8", // 𮓸
+ 0x2e4f9: "\x8e\x04\U0002e4f9", // 𮓹
+ 0x2e4fa: "\x8e\x04\U0002e4fa", // 𮓺
+ 0x2e4fb: "\x8e\x04\U0002e4fb", // 𮓻
+ 0x2e4fc: "\x8e\x04\U0002e4fc", // 𮓼
+ 0x2e4fd: "\x8e\x05\U0002e4fd", // 𮓽
+ 0x2e4fe: "\x8e\x05\U0002e4fe", // 𮓾
+ 0x2e4ff: "\x8e\x05\U0002e4ff", // 𮓿
+ 0x2e500: "\x8e\x05\U0002e500", // 𮔀
+ 0x2e501: "\x8e\x06\U0002e501", // 𮔁
+ 0x2e502: "\x8e\x06\U0002e502", // 𮔂
+ 0x2e503: "\x8e\x06\U0002e503", // 𮔃
+ 0x2e504: "\x8e\x06\U0002e504", // 𮔄
+ 0x2e505: "\x8e\x06\U0002e505", // 𮔅
+ 0x2e506: "\x8e\x06\U0002e506", // 𮔆
+ 0x2e507: "\x8e\x06\U0002e507", // 𮔇
+ 0x2e508: "\x8e\x06\U0002e508", // 𮔈
+ 0x2e509: "\x8e\a\U0002e509", // 𮔉
+ 0x2e50a: "\x8e\a\U0002e50a", // 𮔊
+ 0x2e50b: "\x8e\a\U0002e50b", // 𮔋
+ 0x2e50c: "\x8e\a\U0002e50c", // 𮔌
+ 0x2e50d: "\x8e\a\U0002e50d", // 𮔍
+ 0x2e50e: "\x8e\a\U0002e50e", // 𮔎
+ 0x2e50f: "\x8e\a\U0002e50f", // 𮔏
+ 0x2e510: "\x8e\a\U0002e510", // 𮔐
+ 0x2e511: "\x8e\a\U0002e511", // 𮔑
+ 0x2e512: "\x8e\a\U0002e512", // 𮔒
+ 0x2e513: "\x8e\a\U0002e513", // 𮔓
+ 0x2e514: "\x8e\a\U0002e514", // 𮔔
+ 0x2e515: "\x8e\a\U0002e515", // 𮔕
+ 0x2e516: "\x8e\a\U0002e516", // 𮔖
+ 0x2e517: "\x8e\b\U0002e517", // 𮔗
+ 0x2e518: "\x8e\b\U0002e518", // 𮔘
+ 0x2e519: "\x8e\b\U0002e519", // 𮔙
+ 0x2e51a: "\x8e\b\U0002e51a", // 𮔚
+ 0x2e51b: "\x8e\b\U0002e51b", // 𮔛
+ 0x2e51c: "\x8e\b\U0002e51c", // 𮔜
+ 0x2e51d: "\x8e\b\U0002e51d", // 𮔝
+ 0x2e51e: "\x8e\t\U0002e51e", // 𮔞
+ 0x2e51f: "\x8e\t\U0002e51f", // 𮔟
+ 0x2e520: "\x8e\t\U0002e520", // 𮔠
+ 0x2e521: "\x8e\t\U0002e521", // 𮔡
+ 0x2e522: "\x8e\t\U0002e522", // 𮔢
+ 0x2e523: "\x8e\t\U0002e523", // 𮔣
+ 0x2e524: "\x8e\t\U0002e524", // 𮔤
+ 0x2e525: "\x8e\t\U0002e525", // 𮔥
+ 0x2e526: "\x8e\t\U0002e526", // 𮔦
+ 0x2e527: "\x8e\t\U0002e527", // 𮔧
+ 0x2e528: "\x8e\n\U0002e528", // 𮔨
+ 0x2e529: "\x8e\n\U0002e529", // 𮔩
+ 0x2e52a: "\x8e\n\U0002e52a", // 𮔪
+ 0x2e52b: "\x8e\n\U0002e52b", // 𮔫
+ 0x2e52c: "\x8e\n\U0002e52c", // 𮔬
+ 0x2e52d: "\x8e\n\U0002e52d", // 𮔭
+ 0x2e52e: "\x8e\n\U0002e52e", // 𮔮
+ 0x2e52f: "\x8e\n\U0002e52f", // 𮔯
+ 0x2e530: "\x8e\n\U0002e530", // 𮔰
+ 0x2e531: "\x8e\n\U0002e531", // 𮔱
+ 0x2e532: "\x8e\n\U0002e532", // 𮔲
+ 0x2e533: "\x8e\v\U0002e533", // 𮔳
+ 0x2e534: "\x8e\v\U0002e534", // 𮔴
+ 0x2e535: "\x8e\v\U0002e535", // 𮔵
+ 0x2e536: "\x8e\v\U0002e536", // 𮔶
+ 0x2e537: "\x8e\v\U0002e537", // 𮔷
+ 0x2e538: "\x8e\v\U0002e538", // 𮔸
+ 0x2e539: "\x8e\v\U0002e539", // 𮔹
+ 0x2e53a: "\x8e\v\U0002e53a", // 𮔺
+ 0x2e53b: "\x8e\f\U0002e53b", // 𮔻
+ 0x2e53c: "\x8e\f\U0002e53c", // 𮔼
+ 0x2e53d: "\x8e\f\U0002e53d", // 𮔽
+ 0x2e53e: "\x8e\f\U0002e53e", // 𮔾
+ 0x2e53f: "\x8e\f\U0002e53f", // 𮔿
+ 0x2e540: "\x8e\f\U0002e540", // 𮕀
+ 0x2e541: "\x8e\f\U0002e541", // 𮕁
+ 0x2e542: "\x8e\r\U0002e542", // 𮕂
+ 0x2e543: "\x8e\r\U0002e543", // 𮕃
+ 0x2e544: "\x8e\r\U0002e544", // 𮕄
+ 0x2e545: "\x8e\r\U0002e545", // 𮕅
+ 0x2e546: "\x8e\r\U0002e546", // 𮕆
+ 0x2e547: "\x8e\r\U0002e547", // 𮕇
+ 0x2e548: "\x8e\x0e\U0002e548", // 𮕈
+ 0x2e549: "\x8e\x0e\U0002e549", // 𮕉
+ 0x2e54a: "\x8e\x0e\U0002e54a", // 𮕊
+ 0x2e54b: "\x8e\x0e\U0002e54b", // 𮕋
+ 0x2e54c: "\x8e\x0f\U0002e54c", // 𮕌
+ 0x2e54d: "\x8e\x0f\U0002e54d", // 𮕍
+ 0x2e54e: "\x8e\x0f\U0002e54e", // 𮕎
+ 0x2e54f: "\x8e\x0f\U0002e54f", // 𮕏
+ 0x2e550: "\x8e\x0f\U0002e550", // 𮕐
+ 0x2e551: "\x8e\x0f\U0002e551", // 𮕑
+ 0x2e552: "\x8e\x10\U0002e552", // 𮕒
+ 0x2e553: "\x8e\x11\U0002e553", // 𮕓
+ 0x2e554: "\x8e\x11\U0002e554", // 𮕔
+ 0x2e555: "\x8e\x11\U0002e555", // 𮕕
+ 0x2e556: "\x8e\x11\U0002e556", // 𮕖
+ 0x2e557: "\x8e\x12\U0002e557", // 𮕗
+ 0x2e558: "\x8e\x13\U0002e558", // 𮕘
+ 0x2e559: "\x8e\x13\U0002e559", // 𮕙
+ 0x2e55a: "\x8e\x14\U0002e55a", // 𮕚
+ 0x2e55b: "\x8e\x16\U0002e55b", // 𮕛
+ 0x2e55c: "\x8f\x01\U0002e55c", // 𮕜
+ 0x2e55d: "\x8f\x02\U0002e55d", // 𮕝
+ 0x2e55e: "\x8f\x05\U0002e55e", // 𮕞
+ 0x2e55f: "\x8f\x05\U0002e55f", // 𮕟
+ 0x2e560: "\x8f\x06\U0002e560", // 𮕠
+ 0x2e561: "\x8f\x0f\U0002e561", // 𮕡
+ 0x2e562: "\x90\x03\U0002e562", // 𮕢
+ 0x2e563: "\x90\a\U0002e563", // 𮕣
+ 0x2e564: "\x91\x01\U0002e564", // 𮕤
+ 0x2e565: "\x91\x02\U0002e565", // 𮕥
+ 0x2e566: "\x91\x02\U0002e566", // 𮕦
+ 0x2e567: "\x91\x02\U0002e567", // 𮕧
+ 0x2e568: "\x91\x03\U0002e568", // 𮕨
+ 0x2e569: "\x91\x04\U0002e569", // 𮕩
+ 0x2e56a: "\x91\x04\U0002e56a", // 𮕪
+ 0x2e56b: "\x91\x04\U0002e56b", // 𮕫
+ 0x2e56c: "\x91\x04\U0002e56c", // 𮕬
+ 0x2e56d: "\x91\x04\U0002e56d", // 𮕭
+ 0x2e56e: "\x91\x04\U0002e56e", // 𮕮
+ 0x2e56f: "\x91\x04\U0002e56f", // 𮕯
+ 0x2e570: "\x91\x05\U0002e570", // 𮕰
+ 0x2e571: "\x91\x05\U0002e571", // 𮕱
+ 0x2e572: "\x91\x05\U0002e572", // 𮕲
+ 0x2e573: "\x91\x05\U0002e573", // 𮕳
+ 0x2e574: "\x91\x05\U0002e574", // 𮕴
+ 0x2e575: "\x91\x05\U0002e575", // 𮕵
+ 0x2e576: "\x91\x05\U0002e576", // 𮕶
+ 0x2e577: "\x91\x05\U0002e577", // 𮕷
+ 0x2e578: "\x91\x05\U0002e578", // 𮕸
+ 0x2e579: "\x91\x06\U0002e579", // 𮕹
+ 0x2e57a: "\x91\x06\U0002e57a", // 𮕺
+ 0x2e57b: "\x91\x06\U0002e57b", // 𮕻
+ 0x2e57c: "\x91\x06\U0002e57c", // 𮕼
+ 0x2e57d: "\x91\x06\U0002e57d", // 𮕽
+ 0x2e57e: "\x91\x06\U0002e57e", // 𮕾
+ 0x2e57f: "\x91\x06\U0002e57f", // 𮕿
+ 0x2e580: "\x91\x06\U0002e580", // 𮖀
+ 0x2e581: "\x91\a\U0002e581", // 𮖁
+ 0x2e582: "\x91\a\U0002e582", // 𮖂
+ 0x2e583: "\x91\a\U0002e583", // 𮖃
+ 0x2e584: "\x91\a\U0002e584", // 𮖄
+ 0x2e585: "\x91\a\U0002e585", // 𮖅
+ 0x2e586: "\x91\a\U0002e586", // 𮖆
+ 0x2e587: "\x91\a\U0002e587", // 𮖇
+ 0x2e588: "\x91\a\U0002e588", // 𮖈
+ 0x2e589: "\x91\a\U0002e589", // 𮖉
+ 0x2e58a: "\x91\a\U0002e58a", // 𮖊
+ 0x2e58b: "\x91\a\U0002e58b", // 𮖋
+ 0x2e58c: "\x91\a\U0002e58c", // 𮖌
+ 0x2e58d: "\x91\a\U0002e58d", // 𮖍
+ 0x2e58e: "\x91\a\U0002e58e", // 𮖎
+ 0x2e58f: "\x91\b\U0002e58f", // 𮖏
+ 0x2e590: "\x91\b\U0002e590", // 𮖐
+ 0x2e591: "\x91\b\U0002e591", // 𮖑
+ 0x2e592: "\x91\b\U0002e592", // 𮖒
+ 0x2e593: "\x91\b\U0002e593", // 𮖓
+ 0x2e594: "\x91\t\U0002e594", // 𮖔
+ 0x2e595: "\x91\t\U0002e595", // 𮖕
+ 0x2e596: "\x91\t\U0002e596", // 𮖖
+ 0x2e597: "\x91\t\U0002e597", // 𮖗
+ 0x2e598: "\x91\t\U0002e598", // 𮖘
+ 0x2e599: "\x91\t\U0002e599", // 𮖙
+ 0x2e59a: "\x91\t\U0002e59a", // 𮖚
+ 0x2e59b: "\x91\t\U0002e59b", // 𮖛
+ 0x2e59c: "\x91\t\U0002e59c", // 𮖜
+ 0x2e59d: "\x91\t\U0002e59d", // 𮖝
+ 0x2e59e: "\x91\t\U0002e59e", // 𮖞
+ 0x2e59f: "\x91\t\U0002e59f", // 𮖟
+ 0x2e5a0: "\x91\t\U0002e5a0", // 𮖠
+ 0x2e5a1: "\x91\n\U0002e5a1", // 𮖡
+ 0x2e5a2: "\x91\n\U0002e5a2", // 𮖢
+ 0x2e5a3: "\x91\n\U0002e5a3", // 𮖣
+ 0x2e5a4: "\x91\n\U0002e5a4", // 𮖤
+ 0x2e5a5: "\x91\n\U0002e5a5", // 𮖥
+ 0x2e5a6: "\x91\n\U0002e5a6", // 𮖦
+ 0x2e5a7: "\x91\n\U0002e5a7", // 𮖧
+ 0x2e5a8: "\x91\n\U0002e5a8", // 𮖨
+ 0x2e5a9: "\x91\n\U0002e5a9", // 𮖩
+ 0x2e5aa: "\x91\v\U0002e5aa", // 𮖪
+ 0x2e5ab: "\x91\v\U0002e5ab", // 𮖫
+ 0x2e5ac: "\x91\v\U0002e5ac", // 𮖬
+ 0x2e5ad: "\x91\v\U0002e5ad", // 𮖭
+ 0x2e5ae: "\x91\v\U0002e5ae", // 𮖮
+ 0x2e5af: "\x91\f\U0002e5af", // 𮖯
+ 0x2e5b0: "\x91\f\U0002e5b0", // 𮖰
+ 0x2e5b1: "\x91\f\U0002e5b1", // 𮖱
+ 0x2e5b2: "\x91\f\U0002e5b2", // 𮖲
+ 0x2e5b3: "\x91\f\U0002e5b3", // 𮖳
+ 0x2e5b4: "\x91\f\U0002e5b4", // 𮖴
+ 0x2e5b5: "\x91\f\U0002e5b5", // 𮖵
+ 0x2e5b6: "\x91\f\U0002e5b6", // 𮖶
+ 0x2e5b7: "\x91\r\U0002e5b7", // 𮖷
+ 0x2e5b8: "\x91\r\U0002e5b8", // 𮖸
+ 0x2e5b9: "\x91\r\U0002e5b9", // 𮖹
+ 0x2e5ba: "\x91\r\U0002e5ba", // 𮖺
+ 0x2e5bb: "\x91\x0e\U0002e5bb", // 𮖻
+ 0x2e5bc: "\x91\x0e\U0002e5bc", // 𮖼
+ 0x2e5bd: "\x91\x0f\U0002e5bd", // 𮖽
+ 0x2e5be: "\x91\x0f\U0002e5be", // 𮖾
+ 0x2e5bf: "\x92\x05\U0002e5bf", // 𮖿
+ 0x2e5c0: "\x92\x05\U0002e5c0", // 𮗀
+ 0x2e5c1: "\x92\x06\U0002e5c1", // 𮗁
+ 0x2e5c2: "\x92\x06\U0002e5c2", // 𮗂
+ 0x2e5c3: "\x92\x06\U0002e5c3", // 𮗃
+ 0x2e5c4: "\x92\b\U0002e5c4", // 𮗄
+ 0x2e5c5: "\x92\t\U0002e5c5", // 𮗅
+ 0x2e5c6: "\x92\t\U0002e5c6", // 𮗆
+ 0x2e5c7: "\x92\r\U0002e5c7", // 𮗇
+ 0x2e5c8: "\x92\x0e\U0002e5c8", // 𮗈
+ 0x2e5c9: "\x92\x0f\U0002e5c9", // 𮗉
+ 0x2e5ca: "\x92\x10\U0002e5ca", // 𮗊
+ 0x2e5cb: "\x92\x12\U0002e5cb", // 𮗋
+ 0x2e5cc: "\x92\x13\U0002e5cc", // 𮗌
+ 0x2e5cd: "\x93\x04\U0002e5cd", // 𮗍
+ 0x2e5ce: "\x93\x05\U0002e5ce", // 𮗎
+ 0x2e5cf: "\x93\x06\U0002e5cf", // 𮗏
+ 0x2e5d0: "\x93\x06\U0002e5d0", // 𮗐
+ 0x2e5d1: "\x93\x06\U0002e5d1", // 𮗑
+ 0x2e5d2: "\x93\a\U0002e5d2", // 𮗒
+ 0x2e5d3: "\x93\a\U0002e5d3", // 𮗓
+ 0x2e5d4: "\x93\a\U0002e5d4", // 𮗔
+ 0x2e5d5: "\x93\b\U0002e5d5", // 𮗕
+ 0x2e5d6: "\x93\b\U0002e5d6", // 𮗖
+ 0x2e5d7: "\x93\b\U0002e5d7", // 𮗗
+ 0x2e5d8: "\x93\t\U0002e5d8", // 𮗘
+ 0x2e5d9: "\x93\n\U0002e5d9", // 𮗙
+ 0x2e5da: "\x93\f\U0002e5da", // 𮗚
+ 0x2e5db: "\x93\f\U0002e5db", // 𮗛
+ 0x2e5dc: "\x93\f\U0002e5dc", // 𮗜
+ 0x2e5dd: "\x93\f\U0002e5dd", // 𮗝
+ 0x2e5de: "\x93\r\U0002e5de", // 𮗞
+ 0x2e5df: "\x94\x01\U0002e5df", // 𮗟
+ 0x2e5e0: "\x94\x01\U0002e5e0", // 𮗠
+ 0x2e5e1: "\x94\x03\U0002e5e1", // 𮗡
+ 0x2e5e2: "\x94\x03\U0002e5e2", // 𮗢
+ 0x2e5e3: "\x94\x04\U0002e5e3", // 𮗣
+ 0x2e5e4: "\x94\x04\U0002e5e4", // 𮗤
+ 0x2e5e5: "\x94\x04\U0002e5e5", // 𮗥
+ 0x2e5e6: "\x94\x04\U0002e5e6", // 𮗦
+ 0x2e5e7: "\x94\x04\U0002e5e7", // 𮗧
+ 0x2e5e8: "\x94\x04\U0002e5e8", // 𮗨
+ 0x2e5e9: "\x94\x05\U0002e5e9", // 𮗩
+ 0x2e5ea: "\x94\x05\U0002e5ea", // 𮗪
+ 0x2e5eb: "\x94\x06\U0002e5eb", // 𮗫
+ 0x2e5ec: "\x94\x06\U0002e5ec", // 𮗬
+ 0x2e5ed: "\x94\x06\U0002e5ed", // 𮗭
+ 0x2e5ee: "\x94\x06\U0002e5ee", // 𮗮
+ 0x2e5ef: "\x94\x06\U0002e5ef", // 𮗯
+ 0x2e5f0: "\x94\a\U0002e5f0", // 𮗰
+ 0x2e5f1: "\x94\a\U0002e5f1", // 𮗱
+ 0x2e5f2: "\x94\a\U0002e5f2", // 𮗲
+ 0x2e5f3: "\x94\b\U0002e5f3", // 𮗳
+ 0x2e5f4: "\x94\n\U0002e5f4", // 𮗴
+ 0x2e5f5: "\x94\n\U0002e5f5", // 𮗵
+ 0x2e5f6: "\x94\f\U0002e5f6", // 𮗶
+ 0x2e5f7: "\x95\x02\U0002e5f7", // 𮗷
+ 0x2e5f8: "\x95\x02\U0002e5f8", // 𮗸
+ 0x2e5f9: "\x95\x03\U0002e5f9", // 𮗹
+ 0x2e5fa: "\x95\x03\U0002e5fa", // 𮗺
+ 0x2e5fb: "\x95\x04\U0002e5fb", // 𮗻
+ 0x2e5fc: "\x95\x04\U0002e5fc", // 𮗼
+ 0x2e5fd: "\x95\x04\U0002e5fd", // 𮗽
+ 0x2e5fe: "\x95\x04\U0002e5fe", // 𮗾
+ 0x2e5ff: "\x95\x05\U0002e5ff", // 𮗿
+ 0x2e600: "\x95\x05\U0002e600", // 𮘀
+ 0x2e601: "\x95\x05\U0002e601", // 𮘁
+ 0x2e602: "\x95\x05\U0002e602", // 𮘂
+ 0x2e603: "\x95\x05\U0002e603", // 𮘃
+ 0x2e604: "\x95\x05\U0002e604", // 𮘄
+ 0x2e605: "\x95\x05\U0002e605", // 𮘅
+ 0x2e606: "\x95\x05\U0002e606", // 𮘆
+ 0x2e607: "\x95\x05\U0002e607", // 𮘇
+ 0x2e608: "\x95\x06\U0002e608", // 𮘈
+ 0x2e609: "\x95\x06\U0002e609", // 𮘉
+ 0x2e60a: "\x95\x06\U0002e60a", // 𮘊
+ 0x2e60b: "\x95\x06\U0002e60b", // 𮘋
+ 0x2e60c: "\x95\x06\U0002e60c", // 𮘌
+ 0x2e60d: "\x95\x06\U0002e60d", // 𮘍
+ 0x2e60e: "\x95\x06\U0002e60e", // 𮘎
+ 0x2e60f: "\x95\a\U0002e60f", // 𮘏
+ 0x2e610: "\x95\a\U0002e610", // 𮘐
+ 0x2e611: "\x95\a\U0002e611", // 𮘑
+ 0x2e612: "\x95\a\U0002e612", // 𮘒
+ 0x2e613: "\x95\a\U0002e613", // 𮘓
+ 0x2e614: "\x95\a\U0002e614", // 𮘔
+ 0x2e615: "\x95\a\U0002e615", // 𮘕
+ 0x2e616: "\x95\a\U0002e616", // 𮘖
+ 0x2e617: "\x95\b\U0002e617", // 𮘗
+ 0x2e618: "\x95\b\U0002e618", // 𮘘
+ 0x2e619: "\x95\b\U0002e619", // 𮘙
+ 0x2e61a: "\x95\b\U0002e61a", // 𮘚
+ 0x2e61b: "\x95\b\U0002e61b", // 𮘛
+ 0x2e61c: "\x95\b\U0002e61c", // 𮘜
+ 0x2e61d: "\x95\b\U0002e61d", // 𮘝
+ 0x2e61e: "\x95\b\U0002e61e", // 𮘞
+ 0x2e61f: "\x95\b\U0002e61f", // 𮘟
+ 0x2e620: "\x95\b\U0002e620", // 𮘠
+ 0x2e621: "\x95\t\U0002e621", // 𮘡
+ 0x2e622: "\x95\t\U0002e622", // 𮘢
+ 0x2e623: "\x95\t\U0002e623", // 𮘣
+ 0x2e624: "\x95\t\U0002e624", // 𮘤
+ 0x2e625: "\x95\t\U0002e625", // 𮘥
+ 0x2e626: "\x95\t\U0002e626", // 𮘦
+ 0x2e627: "\x95\t\U0002e627", // 𮘧
+ 0x2e628: "\x95\t\U0002e628", // 𮘨
+ 0x2e629: "\x95\t\U0002e629", // 𮘩
+ 0x2e62a: "\x95\t\U0002e62a", // 𮘪
+ 0x2e62b: "\x95\n\U0002e62b", // 𮘫
+ 0x2e62c: "\x95\n\U0002e62c", // 𮘬
+ 0x2e62d: "\x95\n\U0002e62d", // 𮘭
+ 0x2e62e: "\x95\n\U0002e62e", // 𮘮
+ 0x2e62f: "\x95\n\U0002e62f", // 𮘯
+ 0x2e630: "\x95\v\U0002e630", // 𮘰
+ 0x2e631: "\x95\v\U0002e631", // 𮘱
+ 0x2e632: "\x95\v\U0002e632", // 𮘲
+ 0x2e633: "\x95\v\U0002e633", // 𮘳
+ 0x2e634: "\x95\v\U0002e634", // 𮘴
+ 0x2e635: "\x95\v\U0002e635", // 𮘵
+ 0x2e636: "\x95\v\U0002e636", // 𮘶
+ 0x2e637: "\x95\v\U0002e637", // 𮘷
+ 0x2e638: "\x95\v\U0002e638", // 𮘸
+ 0x2e639: "\x95\f\U0002e639", // 𮘹
+ 0x2e63a: "\x95\f\U0002e63a", // 𮘺
+ 0x2e63b: "\x95\f\U0002e63b", // 𮘻
+ 0x2e63c: "\x95\f\U0002e63c", // 𮘼
+ 0x2e63d: "\x95\f\U0002e63d", // 𮘽
+ 0x2e63e: "\x95\r\U0002e63e", // 𮘾
+ 0x2e63f: "\x95\r\U0002e63f", // 𮘿
+ 0x2e640: "\x95\r\U0002e640", // 𮙀
+ 0x2e641: "\x95\r\U0002e641", // 𮙁
+ 0x2e642: "\x95\r\U0002e642", // 𮙂
+ 0x2e643: "\x95\x0e\U0002e643", // 𮙃
+ 0x2e644: "\x95\x0e\U0002e644", // 𮙄
+ 0x2e645: "\x95\x0f\U0002e645", // 𮙅
+ 0x2e646: "\x95\x0f\U0002e646", // 𮙆
+ 0x2e647: "\x95\x10\U0002e647", // 𮙇
+ 0x2e648: "\x95\x12\U0002e648", // 𮙈
+ 0x2e649: "\x95\a\U0002e649", // 𮙉
+ 0x2e64a: "\x95\f\U0002e64a", // 𮙊
+ 0x2e64b: "\x95\x0f\U0002e64b", // 𮙋
+ 0x2e64c: "\x96\x04\U0002e64c", // 𮙌
+ 0x2e64d: "\x96\x06\U0002e64d", // 𮙍
+ 0x2e64e: "\x96\a\U0002e64e", // 𮙎
+ 0x2e64f: "\x96\b\U0002e64f", // 𮙏
+ 0x2e650: "\x96\t\U0002e650", // 𮙐
+ 0x2e651: "\x96\f\U0002e651", // 𮙑
+ 0x2e652: "\x97\x05\U0002e652", // 𮙒
+ 0x2e653: "\x97\a\U0002e653", // 𮙓
+ 0x2e654: "\x97\a\U0002e654", // 𮙔
+ 0x2e655: "\x97\t\U0002e655", // 𮙕
+ 0x2e656: "\x97\v\U0002e656", // 𮙖
+ 0x2e657: "\x97\f\U0002e657", // 𮙗
+ 0x2e658: "\x97\x0e\U0002e658", // 𮙘
+ 0x2e659: "\x97\x0f\U0002e659", // 𮙙
+ 0x2e65a: "\x98\x02\U0002e65a", // 𮙚
+ 0x2e65b: "\x98\x04\U0002e65b", // 𮙛
+ 0x2e65c: "\x98\x05\U0002e65c", // 𮙜
+ 0x2e65d: "\x98\x05\U0002e65d", // 𮙝
+ 0x2e65e: "\x98\x05\U0002e65e", // 𮙞
+ 0x2e65f: "\x98\x06\U0002e65f", // 𮙟
+ 0x2e660: "\x98\x06\U0002e660", // 𮙠
+ 0x2e661: "\x98\t\U0002e661", // 𮙡
+ 0x2e662: "\x98\t\U0002e662", // 𮙢
+ 0x2e663: "\x98\t\U0002e663", // 𮙣
+ 0x2e664: "\x98\v\U0002e664", // 𮙤
+ 0x2e665: "\x99\x02\U0002e665", // 𮙥
+ 0x2e666: "\x99\x04\U0002e666", // 𮙦
+ 0x2e667: "\x99\x04\U0002e667", // 𮙧
+ 0x2e668: "\x99\x05\U0002e668", // 𮙨
+ 0x2e669: "\x99\x05\U0002e669", // 𮙩
+ 0x2e66a: "\x99\a\U0002e66a", // 𮙪
+ 0x2e66b: "\x99\t\U0002e66b", // 𮙫
+ 0x2e66c: "\x99\f\U0002e66c", // 𮙬
+ 0x2e66d: "\x9a\x02\U0002e66d", // 𮙭
+ 0x2e66e: "\x9a\x03\U0002e66e", // 𮙮
+ 0x2e66f: "\x9a\x03\U0002e66f", // 𮙯
+ 0x2e670: "\x9a\x03\U0002e670", // 𮙰
+ 0x2e671: "\x9a\x03\U0002e671", // 𮙱
+ 0x2e672: "\x9a\x04\U0002e672", // 𮙲
+ 0x2e673: "\x9a\x04\U0002e673", // 𮙳
+ 0x2e674: "\x9a\x04\U0002e674", // 𮙴
+ 0x2e675: "\x9a\x04\U0002e675", // 𮙵
+ 0x2e676: "\x9a\x04\U0002e676", // 𮙶
+ 0x2e677: "\x9a\x04\U0002e677", // 𮙷
+ 0x2e678: "\x9a\x04\U0002e678", // 𮙸
+ 0x2e679: "\x9a\x05\U0002e679", // 𮙹
+ 0x2e67a: "\x9a\x05\U0002e67a", // 𮙺
+ 0x2e67b: "\x9a\x05\U0002e67b", // 𮙻
+ 0x2e67c: "\x9a\x05\U0002e67c", // 𮙼
+ 0x2e67d: "\x9a\x05\U0002e67d", // 𮙽
+ 0x2e67e: "\x9a\x05\U0002e67e", // 𮙾
+ 0x2e67f: "\x9a\x05\U0002e67f", // 𮙿
+ 0x2e680: "\x9a\x05\U0002e680", // 𮚀
+ 0x2e681: "\x9a\x06\U0002e681", // 𮚁
+ 0x2e682: "\x9a\x06\U0002e682", // 𮚂
+ 0x2e683: "\x9a\x06\U0002e683", // 𮚃
+ 0x2e684: "\x9a\x06\U0002e684", // 𮚄
+ 0x2e685: "\x9a\a\U0002e685", // 𮚅
+ 0x2e686: "\x9a\a\U0002e686", // 𮚆
+ 0x2e687: "\x9a\a\U0002e687", // 𮚇
+ 0x2e688: "\x9a\a\U0002e688", // 𮚈
+ 0x2e689: "\x9a\a\U0002e689", // 𮚉
+ 0x2e68a: "\x9a\a\U0002e68a", // 𮚊
+ 0x2e68b: "\x9a\b\U0002e68b", // 𮚋
+ 0x2e68c: "\x9a\b\U0002e68c", // 𮚌
+ 0x2e68d: "\x9a\b\U0002e68d", // 𮚍
+ 0x2e68e: "\x9a\b\U0002e68e", // 𮚎
+ 0x2e68f: "\x9a\b\U0002e68f", // 𮚏
+ 0x2e690: "\x9a\b\U0002e690", // 𮚐
+ 0x2e691: "\x9a\b\U0002e691", // 𮚑
+ 0x2e692: "\x9a\b\U0002e692", // 𮚒
+ 0x2e693: "\x9a\b\U0002e693", // 𮚓
+ 0x2e694: "\x9a\b\U0002e694", // 𮚔
+ 0x2e695: "\x9a\t\U0002e695", // 𮚕
+ 0x2e696: "\x9a\t\U0002e696", // 𮚖
+ 0x2e697: "\x9a\t\U0002e697", // 𮚗
+ 0x2e698: "\x9a\t\U0002e698", // 𮚘
+ 0x2e699: "\x9a\t\U0002e699", // 𮚙
+ 0x2e69a: "\x9a\n\U0002e69a", // 𮚚
+ 0x2e69b: "\x9a\n\U0002e69b", // 𮚛
+ 0x2e69c: "\x9a\n\U0002e69c", // 𮚜
+ 0x2e69d: "\x9a\n\U0002e69d", // 𮚝
+ 0x2e69e: "\x9a\v\U0002e69e", // 𮚞
+ 0x2e69f: "\x9a\v\U0002e69f", // 𮚟
+ 0x2e6a0: "\x9a\v\U0002e6a0", // 𮚠
+ 0x2e6a1: "\x9a\f\U0002e6a1", // 𮚡
+ 0x2e6a2: "\x9a\f\U0002e6a2", // 𮚢
+ 0x2e6a3: "\x9a\f\U0002e6a3", // 𮚣
+ 0x2e6a4: "\x9a\f\U0002e6a4", // 𮚤
+ 0x2e6a5: "\x9a\f\U0002e6a5", // 𮚥
+ 0x2e6a6: "\x9a\f\U0002e6a6", // 𮚦
+ 0x2e6a7: "\x9a\r\U0002e6a7", // 𮚧
+ 0x2e6a8: "\x9a\r\U0002e6a8", // 𮚨
+ 0x2e6a9: "\x9a\x0e\U0002e6a9", // 𮚩
+ 0x2e6aa: "\x9a\x0e\U0002e6aa", // 𮚪
+ 0x2e6ab: "\x9a\x0e\U0002e6ab", // 𮚫
+ 0x2e6ac: "\x9a\x0f\U0002e6ac", // 𮚬
+ 0x2e6ad: "\x9a\x10\U0002e6ad", // 𮚭
+ 0x2e6ae: "\x9a\x13\U0002e6ae", // 𮚮
+ 0x2e6af: "\x9a\x14\U0002e6af", // 𮚯
+ 0x2e6b0: "\x9a\x14\U0002e6b0", // 𮚰
+ 0x2e6b1: "\x9b\t\U0002e6b1", // 𮚱
+ 0x2e6b2: "\x9c\x01\U0002e6b2", // 𮚲
+ 0x2e6b3: "\x9c\x03\U0002e6b3", // 𮚳
+ 0x2e6b4: "\x9c\x04\U0002e6b4", // 𮚴
+ 0x2e6b5: "\x9c\x04\U0002e6b5", // 𮚵
+ 0x2e6b6: "\x9c\x05\U0002e6b6", // 𮚶
+ 0x2e6b7: "\x9c\x05\U0002e6b7", // 𮚷
+ 0x2e6b8: "\x9c\x06\U0002e6b8", // 𮚸
+ 0x2e6b9: "\x9c\x06\U0002e6b9", // 𮚹
+ 0x2e6ba: "\x9c\a\U0002e6ba", // 𮚺
+ 0x2e6bb: "\x9c\a\U0002e6bb", // 𮚻
+ 0x2e6bc: "\x9c\t\U0002e6bc", // 𮚼
+ 0x2e6bd: "\x9c\n\U0002e6bd", // 𮚽
+ 0x2e6be: "\x9c\n\U0002e6be", // 𮚾
+ 0x2e6bf: "\x9c\f\U0002e6bf", // 𮚿
+ 0x2e6c0: "\x9c\x0f\U0002e6c0", // 𮛀
+ 0x2e6c1: "\x9d\x01\U0002e6c1", // 𮛁
+ 0x2e6c2: "\x9d\x02\U0002e6c2", // 𮛂
+ 0x2e6c3: "\x9d\x03\U0002e6c3", // 𮛃
+ 0x2e6c4: "\x9d\x03\U0002e6c4", // 𮛄
+ 0x2e6c5: "\x9d\x03\U0002e6c5", // 𮛅
+ 0x2e6c6: "\x9d\x03\U0002e6c6", // 𮛆
+ 0x2e6c7: "\x9d\x03\U0002e6c7", // 𮛇
+ 0x2e6c8: "\x9d\x03\U0002e6c8", // 𮛈
+ 0x2e6c9: "\x9d\x04\U0002e6c9", // 𮛉
+ 0x2e6ca: "\x9d\x04\U0002e6ca", // 𮛊
+ 0x2e6cb: "\x9d\x04\U0002e6cb", // 𮛋
+ 0x2e6cc: "\x9d\x04\U0002e6cc", // 𮛌
+ 0x2e6cd: "\x9d\x04\U0002e6cd", // 𮛍
+ 0x2e6ce: "\x9d\x04\U0002e6ce", // 𮛎
+ 0x2e6cf: "\x9d\x05\U0002e6cf", // 𮛏
+ 0x2e6d0: "\x9d\x05\U0002e6d0", // 𮛐
+ 0x2e6d1: "\x9d\x05\U0002e6d1", // 𮛑
+ 0x2e6d2: "\x9d\x05\U0002e6d2", // 𮛒
+ 0x2e6d3: "\x9d\x05\U0002e6d3", // 𮛓
+ 0x2e6d4: "\x9d\x05\U0002e6d4", // 𮛔
+ 0x2e6d5: "\x9d\x05\U0002e6d5", // 𮛕
+ 0x2e6d6: "\x9d\x05\U0002e6d6", // 𮛖
+ 0x2e6d7: "\x9d\x06\U0002e6d7", // 𮛗
+ 0x2e6d8: "\x9d\x06\U0002e6d8", // 𮛘
+ 0x2e6d9: "\x9d\a\U0002e6d9", // 𮛙
+ 0x2e6da: "\x9d\a\U0002e6da", // 𮛚
+ 0x2e6db: "\x9d\a\U0002e6db", // 𮛛
+ 0x2e6dc: "\x9d\a\U0002e6dc", // 𮛜
+ 0x2e6dd: "\x9d\a\U0002e6dd", // 𮛝
+ 0x2e6de: "\x9d\a\U0002e6de", // 𮛞
+ 0x2e6df: "\x9d\a\U0002e6df", // 𮛟
+ 0x2e6e0: "\x9d\b\U0002e6e0", // 𮛠
+ 0x2e6e1: "\x9d\b\U0002e6e1", // 𮛡
+ 0x2e6e2: "\x9d\b\U0002e6e2", // 𮛢
+ 0x2e6e3: "\x9d\b\U0002e6e3", // 𮛣
+ 0x2e6e4: "\x9d\b\U0002e6e4", // 𮛤
+ 0x2e6e5: "\x9d\b\U0002e6e5", // 𮛥
+ 0x2e6e6: "\x9d\b\U0002e6e6", // 𮛦
+ 0x2e6e7: "\x9d\b\U0002e6e7", // 𮛧
+ 0x2e6e8: "\x9d\b\U0002e6e8", // 𮛨
+ 0x2e6e9: "\x9d\b\U0002e6e9", // 𮛩
+ 0x2e6ea: "\x9d\b\U0002e6ea", // 𮛪
+ 0x2e6eb: "\x9d\b\U0002e6eb", // 𮛫
+ 0x2e6ec: "\x9d\b\U0002e6ec", // 𮛬
+ 0x2e6ed: "\x9d\b\U0002e6ed", // 𮛭
+ 0x2e6ee: "\x9d\b\U0002e6ee", // 𮛮
+ 0x2e6ef: "\x9d\t\U0002e6ef", // 𮛯
+ 0x2e6f0: "\x9d\t\U0002e6f0", // 𮛰
+ 0x2e6f1: "\x9d\t\U0002e6f1", // 𮛱
+ 0x2e6f2: "\x9d\t\U0002e6f2", // 𮛲
+ 0x2e6f3: "\x9d\t\U0002e6f3", // 𮛳
+ 0x2e6f4: "\x9d\t\U0002e6f4", // 𮛴
+ 0x2e6f5: "\x9d\t\U0002e6f5", // 𮛵
+ 0x2e6f6: "\x9d\t\U0002e6f6", // 𮛶
+ 0x2e6f7: "\x9d\t\U0002e6f7", // 𮛷
+ 0x2e6f8: "\x9d\t\U0002e6f8", // 𮛸
+ 0x2e6f9: "\x9d\t\U0002e6f9", // 𮛹
+ 0x2e6fa: "\x9d\t\U0002e6fa", // 𮛺
+ 0x2e6fb: "\x9d\t\U0002e6fb", // 𮛻
+ 0x2e6fc: "\x9d\t\U0002e6fc", // 𮛼
+ 0x2e6fd: "\x9d\t\U0002e6fd", // 𮛽
+ 0x2e6fe: "\x9d\t\U0002e6fe", // 𮛾
+ 0x2e6ff: "\x9d\t\U0002e6ff", // 𮛿
+ 0x2e700: "\x9d\n\U0002e700", // 𮜀
+ 0x2e701: "\x9d\n\U0002e701", // 𮜁
+ 0x2e702: "\x9d\n\U0002e702", // 𮜂
+ 0x2e703: "\x9d\n\U0002e703", // 𮜃
+ 0x2e704: "\x9d\n\U0002e704", // 𮜄
+ 0x2e705: "\x9d\n\U0002e705", // 𮜅
+ 0x2e706: "\x9d\n\U0002e706", // 𮜆
+ 0x2e707: "\x9d\n\U0002e707", // 𮜇
+ 0x2e708: "\x9d\n\U0002e708", // 𮜈
+ 0x2e709: "\x9d\v\U0002e709", // 𮜉
+ 0x2e70a: "\x9d\v\U0002e70a", // 𮜊
+ 0x2e70b: "\x9d\v\U0002e70b", // 𮜋
+ 0x2e70c: "\x9d\v\U0002e70c", // 𮜌
+ 0x2e70d: "\x9d\v\U0002e70d", // 𮜍
+ 0x2e70e: "\x9d\v\U0002e70e", // 𮜎
+ 0x2e70f: "\x9d\v\U0002e70f", // 𮜏
+ 0x2e710: "\x9d\v\U0002e710", // 𮜐
+ 0x2e711: "\x9d\v\U0002e711", // 𮜑
+ 0x2e712: "\x9d\v\U0002e712", // 𮜒
+ 0x2e713: "\x9d\v\U0002e713", // 𮜓
+ 0x2e714: "\x9d\f\U0002e714", // 𮜔
+ 0x2e715: "\x9d\f\U0002e715", // 𮜕
+ 0x2e716: "\x9d\f\U0002e716", // 𮜖
+ 0x2e717: "\x9d\f\U0002e717", // 𮜗
+ 0x2e718: "\x9d\f\U0002e718", // 𮜘
+ 0x2e719: "\x9d\r\U0002e719", // 𮜙
+ 0x2e71a: "\x9d\r\U0002e71a", // 𮜚
+ 0x2e71b: "\x9d\r\U0002e71b", // 𮜛
+ 0x2e71c: "\x9d\x0e\U0002e71c", // 𮜜
+ 0x2e71d: "\x9d\x0e\U0002e71d", // 𮜝
+ 0x2e71e: "\x9d\x0e\U0002e71e", // 𮜞
+ 0x2e71f: "\x9d\x0e\U0002e71f", // 𮜟
+ 0x2e720: "\x9d\x0e\U0002e720", // 𮜠
+ 0x2e721: "\x9d\x0f\U0002e721", // 𮜡
+ 0x2e722: "\x9d\x0f\U0002e722", // 𮜢
+ 0x2e723: "\x9d\x0f\U0002e723", // 𮜣
+ 0x2e724: "\x9d\x0f\U0002e724", // 𮜤
+ 0x2e725: "\x9d\x0f\U0002e725", // 𮜥
+ 0x2e726: "\x9d\x10\U0002e726", // 𮜦
+ 0x2e727: "\x9d\x10\U0002e727", // 𮜧
+ 0x2e728: "\x9d\x10\U0002e728", // 𮜨
+ 0x2e729: "\x9d\x10\U0002e729", // 𮜩
+ 0x2e72a: "\x9d\x10\U0002e72a", // 𮜪
+ 0x2e72b: "\x9d\x11\U0002e72b", // 𮜫
+ 0x2e72c: "\x9d\x11\U0002e72c", // 𮜬
+ 0x2e72d: "\x9d\x13\U0002e72d", // 𮜭
+ 0x2e72e: "\x9e\x03\U0002e72e", // 𮜮
+ 0x2e72f: "\x9e\x04\U0002e72f", // 𮜯
+ 0x2e730: "\x9e\x05\U0002e730", // 𮜰
+ 0x2e731: "\x9e\x06\U0002e731", // 𮜱
+ 0x2e732: "\x9e\x06\U0002e732", // 𮜲
+ 0x2e733: "\x9e\x06\U0002e733", // 𮜳
+ 0x2e734: "\x9e\x06\U0002e734", // 𮜴
+ 0x2e735: "\x9e\x06\U0002e735", // 𮜵
+ 0x2e736: "\x9e\a\U0002e736", // 𮜶
+ 0x2e737: "\x9e\a\U0002e737", // 𮜷
+ 0x2e738: "\x9e\a\U0002e738", // 𮜸
+ 0x2e739: "\x9e\a\U0002e739", // 𮜹
+ 0x2e73a: "\x9e\r\U0002e73a", // 𮜺
+ 0x2e73b: "\x9e\r\U0002e73b", // 𮜻
+ 0x2e73c: "\x9e\r\U0002e73c", // 𮜼
+ 0x2e73d: "\x9e\x10\U0002e73d", // 𮜽
+ 0x2e73e: "\x9e\x12\U0002e73e", // 𮜾
+ 0x2e73f: "\x9f\x03\U0002e73f", // 𮜿
+ 0x2e740: "\x9f\x04\U0002e740", // 𮝀
+ 0x2e741: "\x9f\x04\U0002e741", // 𮝁
+ 0x2e742: "\x9f\x04\U0002e742", // 𮝂
+ 0x2e743: "\x9f\x04\U0002e743", // 𮝃
+ 0x2e744: "\x9f\x04\U0002e744", // 𮝄
+ 0x2e745: "\x9f\x04\U0002e745", // 𮝅
+ 0x2e746: "\x9f\x05\U0002e746", // 𮝆
+ 0x2e747: "\x9f\x05\U0002e747", // 𮝇
+ 0x2e748: "\x9f\x05\U0002e748", // 𮝈
+ 0x2e749: "\x9f\x05\U0002e749", // 𮝉
+ 0x2e74a: "\x9f\x05\U0002e74a", // 𮝊
+ 0x2e74b: "\x9f\x05\U0002e74b", // 𮝋
+ 0x2e74c: "\x9f\x05\U0002e74c", // 𮝌
+ 0x2e74d: "\x9f\x06\U0002e74d", // 𮝍
+ 0x2e74e: "\x9f\x06\U0002e74e", // 𮝎
+ 0x2e74f: "\x9f\x06\U0002e74f", // 𮝏
+ 0x2e750: "\x9f\x06\U0002e750", // 𮝐
+ 0x2e751: "\x9f\x06\U0002e751", // 𮝑
+ 0x2e752: "\x9f\a\U0002e752", // 𮝒
+ 0x2e753: "\x9f\a\U0002e753", // 𮝓
+ 0x2e754: "\x9f\b\U0002e754", // 𮝔
+ 0x2e755: "\x9f\b\U0002e755", // 𮝕
+ 0x2e756: "\x9f\b\U0002e756", // 𮝖
+ 0x2e757: "\x9f\b\U0002e757", // 𮝗
+ 0x2e758: "\x9f\b\U0002e758", // 𮝘
+ 0x2e759: "\x9f\b\U0002e759", // 𮝙
+ 0x2e75a: "\x9f\b\U0002e75a", // 𮝚
+ 0x2e75b: "\x9f\b\U0002e75b", // 𮝛
+ 0x2e75c: "\x9f\b\U0002e75c", // 𮝜
+ 0x2e75d: "\x9f\t\U0002e75d", // 𮝝
+ 0x2e75e: "\x9f\t\U0002e75e", // 𮝞
+ 0x2e75f: "\x9f\t\U0002e75f", // 𮝟
+ 0x2e760: "\x9f\n\U0002e760", // 𮝠
+ 0x2e761: "\x9f\n\U0002e761", // 𮝡
+ 0x2e762: "\x9f\n\U0002e762", // 𮝢
+ 0x2e763: "\x9f\v\U0002e763", // 𮝣
+ 0x2e764: "\x9f\v\U0002e764", // 𮝤
+ 0x2e765: "\x9f\v\U0002e765", // 𮝥
+ 0x2e766: "\x9f\f\U0002e766", // 𮝦
+ 0x2e767: "\x9f\f\U0002e767", // 𮝧
+ 0x2e768: "\x9f\f\U0002e768", // 𮝨
+ 0x2e769: "\x9f\r\U0002e769", // 𮝩
+ 0x2e76a: "\x9f\r\U0002e76a", // 𮝪
+ 0x2e76b: "\x9f\r\U0002e76b", // 𮝫
+ 0x2e76c: "\x9f\x0e\U0002e76c", // 𮝬
+ 0x2e76d: "\x9f\x0e\U0002e76d", // 𮝭
+ 0x2e76e: "\x9f\x0e\U0002e76e", // 𮝮
+ 0x2e76f: "\x9f\x0e\U0002e76f", // 𮝯
+ 0x2e770: "\x9f\x0f\U0002e770", // 𮝰
+ 0x2e771: "\x9f\x0f\U0002e771", // 𮝱
+ 0x2e772: "\x9f\x0f\U0002e772", // 𮝲
+ 0x2e773: "\x9f\x04\U0002e773", // 𮝳
+ 0x2e774: "\x9f\x05\U0002e774", // 𮝴
+ 0x2e775: "\x9f\x06\U0002e775", // 𮝵
+ 0x2e776: "\x9f\a\U0002e776", // 𮝶
+ 0x2e777: "\x9f\t\U0002e777", // 𮝷
+ 0x2e778: "\x9f\t\U0002e778", // 𮝸
+ 0x2e779: "\x9f\r\U0002e779", // 𮝹
+ 0x2e77a: "\x9f\r\U0002e77a", // 𮝺
+ 0x2e77b: "\xa0\a\U0002e77b", // 𮝻
+ 0x2e77c: "\xa0\b\U0002e77c", // 𮝼
+ 0x2e77d: "\xa0\v\U0002e77d", // 𮝽
+ 0x2e77e: "\xa1\x01\U0002e77e", // 𮝾
+ 0x2e77f: "\xa1\t\U0002e77f", // 𮝿
+ 0x2e780: "\xa1\t\U0002e780", // 𮞀
+ 0x2e781: "\xa2\x03\U0002e781", // 𮞁
+ 0x2e782: "\xa2\x03\U0002e782", // 𮞂
+ 0x2e783: "\xa2\x03\U0002e783", // 𮞃
+ 0x2e784: "\xa2\x04\U0002e784", // 𮞄
+ 0x2e785: "\xa2\x04\U0002e785", // 𮞅
+ 0x2e786: "\xa2\x05\U0002e786", // 𮞆
+ 0x2e787: "\xa2\x05\U0002e787", // 𮞇
+ 0x2e788: "\xa2\x05\U0002e788", // 𮞈
+ 0x2e789: "\xa2\x05\U0002e789", // 𮞉
+ 0x2e78a: "\xa2\x05\U0002e78a", // 𮞊
+ 0x2e78b: "\xa2\x05\U0002e78b", // 𮞋
+ 0x2e78c: "\xa2\x05\U0002e78c", // 𮞌
+ 0x2e78d: "\xa2\x05\U0002e78d", // 𮞍
+ 0x2e78e: "\xa2\x05\U0002e78e", // 𮞎
+ 0x2e78f: "\xa2\x06\U0002e78f", // 𮞏
+ 0x2e790: "\xa2\x06\U0002e790", // 𮞐
+ 0x2e791: "\xa2\x06\U0002e791", // 𮞑
+ 0x2e792: "\xa2\a\U0002e792", // 𮞒
+ 0x2e793: "\xa2\a\U0002e793", // 𮞓
+ 0x2e794: "\xa2\a\U0002e794", // 𮞔
+ 0x2e795: "\xa2\a\U0002e795", // 𮞕
+ 0x2e796: "\xa2\b\U0002e796", // 𮞖
+ 0x2e797: "\xa2\b\U0002e797", // 𮞗
+ 0x2e798: "\xa2\b\U0002e798", // 𮞘
+ 0x2e799: "\xa2\b\U0002e799", // 𮞙
+ 0x2e79a: "\xa2\b\U0002e79a", // 𮞚
+ 0x2e79b: "\xa2\b\U0002e79b", // 𮞛
+ 0x2e79c: "\xa2\b\U0002e79c", // 𮞜
+ 0x2e79d: "\xa2\b\U0002e79d", // 𮞝
+ 0x2e79e: "\xa2\b\U0002e79e", // 𮞞
+ 0x2e79f: "\xa2\b\U0002e79f", // 𮞟
+ 0x2e7a0: "\xa2\b\U0002e7a0", // 𮞠
+ 0x2e7a1: "\xa2\b\U0002e7a1", // 𮞡
+ 0x2e7a2: "\xa2\b\U0002e7a2", // 𮞢
+ 0x2e7a3: "\xa2\b\U0002e7a3", // 𮞣
+ 0x2e7a4: "\xa2\b\U0002e7a4", // 𮞤
+ 0x2e7a5: "\xa2\b\U0002e7a5", // 𮞥
+ 0x2e7a6: "\xa2\b\U0002e7a6", // 𮞦
+ 0x2e7a7: "\xa2\b\U0002e7a7", // 𮞧
+ 0x2e7a8: "\xa2\b\U0002e7a8", // 𮞨
+ 0x2e7a9: "\xa2\t\U0002e7a9", // 𮞩
+ 0x2e7aa: "\xa2\t\U0002e7aa", // 𮞪
+ 0x2e7ab: "\xa2\t\U0002e7ab", // 𮞫
+ 0x2e7ac: "\xa2\t\U0002e7ac", // 𮞬
+ 0x2e7ad: "\xa2\t\U0002e7ad", // 𮞭
+ 0x2e7ae: "\xa2\t\U0002e7ae", // 𮞮
+ 0x2e7af: "\xa2\t\U0002e7af", // 𮞯
+ 0x2e7b0: "\xa2\t\U0002e7b0", // 𮞰
+ 0x2e7b1: "\xa2\t\U0002e7b1", // 𮞱
+ 0x2e7b2: "\xa2\t\U0002e7b2", // 𮞲
+ 0x2e7b3: "\xa2\t\U0002e7b3", // 𮞳
+ 0x2e7b4: "\xa2\t\U0002e7b4", // 𮞴
+ 0x2e7b5: "\xa2\t\U0002e7b5", // 𮞵
+ 0x2e7b6: "\xa2\n\U0002e7b6", // 𮞶
+ 0x2e7b7: "\xa2\n\U0002e7b7", // 𮞷
+ 0x2e7b8: "\xa2\n\U0002e7b8", // 𮞸
+ 0x2e7b9: "\xa2\n\U0002e7b9", // 𮞹
+ 0x2e7ba: "\xa2\n\U0002e7ba", // 𮞺
+ 0x2e7bb: "\xa2\n\U0002e7bb", // 𮞻
+ 0x2e7bc: "\xa2\n\U0002e7bc", // 𮞼
+ 0x2e7bd: "\xa2\v\U0002e7bd", // 𮞽
+ 0x2e7be: "\xa2\v\U0002e7be", // 𮞾
+ 0x2e7bf: "\xa2\v\U0002e7bf", // 𮞿
+ 0x2e7c0: "\xa2\v\U0002e7c0", // 𮟀
+ 0x2e7c1: "\xa2\v\U0002e7c1", // 𮟁
+ 0x2e7c2: "\xa2\v\U0002e7c2", // 𮟂
+ 0x2e7c3: "\xa2\v\U0002e7c3", // 𮟃
+ 0x2e7c4: "\xa2\v\U0002e7c4", // 𮟄
+ 0x2e7c5: "\xa2\v\U0002e7c5", // 𮟅
+ 0x2e7c6: "\xa2\v\U0002e7c6", // 𮟆
+ 0x2e7c7: "\xa2\v\U0002e7c7", // 𮟇
+ 0x2e7c8: "\xa2\v\U0002e7c8", // 𮟈
+ 0x2e7c9: "\xa2\f\U0002e7c9", // 𮟉
+ 0x2e7ca: "\xa2\f\U0002e7ca", // 𮟊
+ 0x2e7cb: "\xa2\f\U0002e7cb", // 𮟋
+ 0x2e7cc: "\xa2\f\U0002e7cc", // 𮟌
+ 0x2e7cd: "\xa2\f\U0002e7cd", // 𮟍
+ 0x2e7ce: "\xa2\f\U0002e7ce", // 𮟎
+ 0x2e7cf: "\xa2\f\U0002e7cf", // 𮟏
+ 0x2e7d0: "\xa2\r\U0002e7d0", // 𮟐
+ 0x2e7d1: "\xa2\r\U0002e7d1", // 𮟑
+ 0x2e7d2: "\xa2\r\U0002e7d2", // 𮟒
+ 0x2e7d3: "\xa2\r\U0002e7d3", // 𮟓
+ 0x2e7d4: "\xa2\r\U0002e7d4", // 𮟔
+ 0x2e7d5: "\xa2\r\U0002e7d5", // 𮟕
+ 0x2e7d6: "\xa2\r\U0002e7d6", // 𮟖
+ 0x2e7d7: "\xa2\r\U0002e7d7", // 𮟗
+ 0x2e7d8: "\xa2\x0e\U0002e7d8", // 𮟘
+ 0x2e7d9: "\xa2\x0e\U0002e7d9", // 𮟙
+ 0x2e7da: "\xa2\x0e\U0002e7da", // 𮟚
+ 0x2e7db: "\xa2\x0e\U0002e7db", // 𮟛
+ 0x2e7dc: "\xa2\x0e\U0002e7dc", // 𮟜
+ 0x2e7dd: "\xa2\x0f\U0002e7dd", // 𮟝
+ 0x2e7de: "\xa2\x0f\U0002e7de", // 𮟞
+ 0x2e7df: "\xa2\x0f\U0002e7df", // 𮟟
+ 0x2e7e0: "\xa2\x0f\U0002e7e0", // 𮟠
+ 0x2e7e1: "\xa2\x0f\U0002e7e1", // 𮟡
+ 0x2e7e2: "\xa2\x10\U0002e7e2", // 𮟢
+ 0x2e7e3: "\xa2\x10\U0002e7e3", // 𮟣
+ 0x2e7e4: "\xa2\x11\U0002e7e4", // 𮟤
+ 0x2e7e5: "\xa2\x11\U0002e7e5", // 𮟥
+ 0x2e7e6: "\xa2\x11\U0002e7e6", // 𮟦
+ 0x2e7e7: "\xa2\x12\U0002e7e7", // 𮟧
+ 0x2e7e8: "\xa2\x15\U0002e7e8", // 𮟨
+ 0x2e7e9: "\xa2\x16\U0002e7e9", // 𮟩
+ 0x2e7ea: "\xa3\x03\U0002e7ea", // 𮟪
+ 0x2e7eb: "\xa3\x03\U0002e7eb", // 𮟫
+ 0x2e7ec: "\xa3\x04\U0002e7ec", // 𮟬
+ 0x2e7ed: "\xa3\x04\U0002e7ed", // 𮟭
+ 0x2e7ee: "\xa3\x04\U0002e7ee", // 𮟮
+ 0x2e7ef: "\xa3\x05\U0002e7ef", // 𮟯
+ 0x2e7f0: "\xa3\x05\U0002e7f0", // 𮟰
+ 0x2e7f1: "\xa3\x05\U0002e7f1", // 𮟱
+ 0x2e7f2: "\xa3\x05\U0002e7f2", // 𮟲
+ 0x2e7f3: "\xa3\x05\U0002e7f3", // 𮟳
+ 0x2e7f4: "\xa3\x05\U0002e7f4", // 𮟴
+ 0x2e7f5: "\xa3\x05\U0002e7f5", // 𮟵
+ 0x2e7f6: "\xa3\x05\U0002e7f6", // 𮟶
+ 0x2e7f7: "\xa3\x06\U0002e7f7", // 𮟷
+ 0x2e7f8: "\xa3\x06\U0002e7f8", // 𮟸
+ 0x2e7f9: "\xa3\x06\U0002e7f9", // 𮟹
+ 0x2e7fa: "\xa3\x06\U0002e7fa", // 𮟺
+ 0x2e7fb: "\xa3\a\U0002e7fb", // 𮟻
+ 0x2e7fc: "\xa3\a\U0002e7fc", // 𮟼
+ 0x2e7fd: "\xa3\b\U0002e7fd", // 𮟽
+ 0x2e7fe: "\xa3\b\U0002e7fe", // 𮟾
+ 0x2e7ff: "\xa3\b\U0002e7ff", // 𮟿
+ 0x2e800: "\xa3\t\U0002e800", // 𮠀
+ 0x2e801: "\xa3\t\U0002e801", // 𮠁
+ 0x2e802: "\xa3\t\U0002e802", // 𮠂
+ 0x2e803: "\xa3\n\U0002e803", // 𮠃
+ 0x2e804: "\xa3\n\U0002e804", // 𮠄
+ 0x2e805: "\xa3\n\U0002e805", // 𮠅
+ 0x2e806: "\xa3\v\U0002e806", // 𮠆
+ 0x2e807: "\xa3\f\U0002e807", // 𮠇
+ 0x2e808: "\xa3\f\U0002e808", // 𮠈
+ 0x2e809: "\xa3\f\U0002e809", // 𮠉
+ 0x2e80a: "\xa3\r\U0002e80a", // 𮠊
+ 0x2e80b: "\xa3\r\U0002e80b", // 𮠋
+ 0x2e80c: "\xa3\r\U0002e80c", // 𮠌
+ 0x2e80d: "\xa3\r\U0002e80d", // 𮠍
+ 0x2e80e: "\xa3\r\U0002e80e", // 𮠎
+ 0x2e80f: "\xa3\x0e\U0002e80f", // 𮠏
+ 0x2e810: "\xa3\x0e\U0002e810", // 𮠐
+ 0x2e811: "\xa3\x0f\U0002e811", // 𮠑
+ 0x2e812: "\xa3\x0f\U0002e812", // 𮠒
+ 0x2e813: "\xa3\x11\U0002e813", // 𮠓
+ 0x2e814: "\xa3\x12\U0002e814", // 𮠔
+ 0x2e815: "\xa4\x01\U0002e815", // 𮠕
+ 0x2e816: "\xa4\x02\U0002e816", // 𮠖
+ 0x2e817: "\xa4\x02\U0002e817", // 𮠗
+ 0x2e818: "\xa4\x03\U0002e818", // 𮠘
+ 0x2e819: "\xa4\x03\U0002e819", // 𮠙
+ 0x2e81a: "\xa4\x03\U0002e81a", // 𮠚
+ 0x2e81b: "\xa4\x04\U0002e81b", // 𮠛
+ 0x2e81c: "\xa4\x04\U0002e81c", // 𮠜
+ 0x2e81d: "\xa4\x04\U0002e81d", // 𮠝
+ 0x2e81e: "\xa4\x04\U0002e81e", // 𮠞
+ 0x2e81f: "\xa4\x04\U0002e81f", // 𮠟
+ 0x2e820: "\xa4\x04\U0002e820", // 𮠠
+ 0x2e821: "\xa4\x05\U0002e821", // 𮠡
+ 0x2e822: "\xa4\x05\U0002e822", // 𮠢
+ 0x2e823: "\xa4\x05\U0002e823", // 𮠣
+ 0x2e824: "\xa4\x05\U0002e824", // 𮠤
+ 0x2e825: "\xa4\x06\U0002e825", // 𮠥
+ 0x2e826: "\xa4\x06\U0002e826", // 𮠦
+ 0x2e827: "\xa4\x06\U0002e827", // 𮠧
+ 0x2e828: "\xa4\x06\U0002e828", // 𮠨
+ 0x2e829: "\xa4\x06\U0002e829", // 𮠩
+ 0x2e82a: "\xa4\x06\U0002e82a", // 𮠪
+ 0x2e82b: "\xa4\a\U0002e82b", // 𮠫
+ 0x2e82c: "\xa4\a\U0002e82c", // 𮠬
+ 0x2e82d: "\xa4\a\U0002e82d", // 𮠭
+ 0x2e82e: "\xa4\b\U0002e82e", // 𮠮
+ 0x2e82f: "\xa4\b\U0002e82f", // 𮠯
+ 0x2e830: "\xa4\b\U0002e830", // 𮠰
+ 0x2e831: "\xa4\b\U0002e831", // 𮠱
+ 0x2e832: "\xa4\b\U0002e832", // 𮠲
+ 0x2e833: "\xa4\b\U0002e833", // 𮠳
+ 0x2e834: "\xa4\b\U0002e834", // 𮠴
+ 0x2e835: "\xa4\t\U0002e835", // 𮠵
+ 0x2e836: "\xa4\t\U0002e836", // 𮠶
+ 0x2e837: "\xa4\t\U0002e837", // 𮠷
+ 0x2e838: "\xa4\t\U0002e838", // 𮠸
+ 0x2e839: "\xa4\t\U0002e839", // 𮠹
+ 0x2e83a: "\xa4\t\U0002e83a", // 𮠺
+ 0x2e83b: "\xa4\t\U0002e83b", // 𮠻
+ 0x2e83c: "\xa4\n\U0002e83c", // 𮠼
+ 0x2e83d: "\xa4\v\U0002e83d", // 𮠽
+ 0x2e83e: "\xa4\v\U0002e83e", // 𮠾
+ 0x2e83f: "\xa4\v\U0002e83f", // 𮠿
+ 0x2e840: "\xa4\v\U0002e840", // 𮡀
+ 0x2e841: "\xa4\f\U0002e841", // 𮡁
+ 0x2e842: "\xa4\f\U0002e842", // 𮡂
+ 0x2e843: "\xa4\f\U0002e843", // 𮡃
+ 0x2e844: "\xa4\f\U0002e844", // 𮡄
+ 0x2e845: "\xa4\r\U0002e845", // 𮡅
+ 0x2e846: "\xa4\r\U0002e846", // 𮡆
+ 0x2e847: "\xa4\x0e\U0002e847", // 𮡇
+ 0x2e848: "\xa4\x0e\U0002e848", // 𮡈
+ 0x2e849: "\xa4\x0e\U0002e849", // 𮡉
+ 0x2e84a: "\xa4\x0e\U0002e84a", // 𮡊
+ 0x2e84b: "\xa4\x0f\U0002e84b", // 𮡋
+ 0x2e84c: "\xa4\x0f\U0002e84c", // 𮡌
+ 0x2e84d: "\xa4\x11\U0002e84d", // 𮡍
+ 0x2e84e: "\xa5\x03\U0002e84e", // 𮡎
+ 0x2e84f: "\xa5\x04\U0002e84f", // 𮡏
+ 0x2e850: "\xa5\t\U0002e850", // 𮡐
+ 0x2e851: "\xa5\v\U0002e851", // 𮡑
+ 0x2e852: "\xa6\x04\U0002e852", // 𮡒
+ 0x2e853: "\xa6\x05\U0002e853", // 𮡓
+ 0x2e854: "\xa6\x06\U0002e854", // 𮡔
+ 0x2e855: "\xa6\x06\U0002e855", // 𮡕
+ 0x2e856: "\xa6\x06\U0002e856", // 𮡖
+ 0x2e857: "\xa6\a\U0002e857", // 𮡗
+ 0x2e858: "\xa6\a\U0002e858", // 𮡘
+ 0x2e859: "\xa6\b\U0002e859", // 𮡙
+ 0x2e85a: "\xa6\t\U0002e85a", // 𮡚
+ 0x2e85b: "\xa6\v\U0002e85b", // 𮡛
+ 0x2e85c: "\xa6\f\U0002e85c", // 𮡜
+ 0x2e85d: "\xa6\f\U0002e85d", // 𮡝
+ 0x2e85e: "\xa6\r\U0002e85e", // 𮡞
+ 0x2e85f: "\xa6\r\U0002e85f", // 𮡟
+ 0x2e860: "\xa6\r\U0002e860", // 𮡠
+ 0x2e861: "\xa6\r\U0002e861", // 𮡡
+ 0x2e862: "\xa6\r\U0002e862", // 𮡢
+ 0x2e863: "\xa6\x11\U0002e863", // 𮡣
+ 0x2e864: "\xa7\x03\U0002e864", // 𮡤
+ 0x2e865: "\xa7\x03\U0002e865", // 𮡥
+ 0x2e866: "\xa7\x03\U0002e866", // 𮡦
+ 0x2e867: "\xa7\x04\U0002e867", // 𮡧
+ 0x2e868: "\xa7\x04\U0002e868", // 𮡨
+ 0x2e869: "\xa7\x04\U0002e869", // 𮡩
+ 0x2e86a: "\xa7\x04\U0002e86a", // 𮡪
+ 0x2e86b: "\xa7\x04\U0002e86b", // 𮡫
+ 0x2e86c: "\xa7\x04\U0002e86c", // 𮡬
+ 0x2e86d: "\xa7\x04\U0002e86d", // 𮡭
+ 0x2e86e: "\xa7\x05\U0002e86e", // 𮡮
+ 0x2e86f: "\xa7\x05\U0002e86f", // 𮡯
+ 0x2e870: "\xa7\x05\U0002e870", // 𮡰
+ 0x2e871: "\xa7\x06\U0002e871", // 𮡱
+ 0x2e872: "\xa7\x06\U0002e872", // 𮡲
+ 0x2e873: "\xa7\x06\U0002e873", // 𮡳
+ 0x2e874: "\xa7\x06\U0002e874", // 𮡴
+ 0x2e875: "\xa7\x06\U0002e875", // 𮡵
+ 0x2e876: "\xa7\x06\U0002e876", // 𮡶
+ 0x2e877: "\xa7\x06\U0002e877", // 𮡷
+ 0x2e878: "\xa7\a\U0002e878", // 𮡸
+ 0x2e879: "\xa7\a\U0002e879", // 𮡹
+ 0x2e87a: "\xa7\a\U0002e87a", // 𮡺
+ 0x2e87b: "\xa7\a\U0002e87b", // 𮡻
+ 0x2e87c: "\xa7\a\U0002e87c", // 𮡼
+ 0x2e87d: "\xa7\a\U0002e87d", // 𮡽
+ 0x2e87e: "\xa7\a\U0002e87e", // 𮡾
+ 0x2e87f: "\xa7\a\U0002e87f", // 𮡿
+ 0x2e880: "\xa7\a\U0002e880", // 𮢀
+ 0x2e881: "\xa7\a\U0002e881", // 𮢁
+ 0x2e882: "\xa7\b\U0002e882", // 𮢂
+ 0x2e883: "\xa7\b\U0002e883", // 𮢃
+ 0x2e884: "\xa7\b\U0002e884", // 𮢄
+ 0x2e885: "\xa7\b\U0002e885", // 𮢅
+ 0x2e886: "\xa7\b\U0002e886", // 𮢆
+ 0x2e887: "\xa7\b\U0002e887", // 𮢇
+ 0x2e888: "\xa7\b\U0002e888", // 𮢈
+ 0x2e889: "\xa7\b\U0002e889", // 𮢉
+ 0x2e88a: "\xa7\b\U0002e88a", // 𮢊
+ 0x2e88b: "\xa7\b\U0002e88b", // 𮢋
+ 0x2e88c: "\xa7\b\U0002e88c", // 𮢌
+ 0x2e88d: "\xa7\b\U0002e88d", // 𮢍
+ 0x2e88e: "\xa7\b\U0002e88e", // 𮢎
+ 0x2e88f: "\xa7\b\U0002e88f", // 𮢏
+ 0x2e890: "\xa7\b\U0002e890", // 𮢐
+ 0x2e891: "\xa7\b\U0002e891", // 𮢑
+ 0x2e892: "\xa7\b\U0002e892", // 𮢒
+ 0x2e893: "\xa7\b\U0002e893", // 𮢓
+ 0x2e894: "\xa7\b\U0002e894", // 𮢔
+ 0x2e895: "\xa7\b\U0002e895", // 𮢕
+ 0x2e896: "\xa7\b\U0002e896", // 𮢖
+ 0x2e897: "\xa7\b\U0002e897", // 𮢗
+ 0x2e898: "\xa7\b\U0002e898", // 𮢘
+ 0x2e899: "\xa7\t\U0002e899", // 𮢙
+ 0x2e89a: "\xa7\t\U0002e89a", // 𮢚
+ 0x2e89b: "\xa7\t\U0002e89b", // 𮢛
+ 0x2e89c: "\xa7\t\U0002e89c", // 𮢜
+ 0x2e89d: "\xa7\t\U0002e89d", // 𮢝
+ 0x2e89e: "\xa7\t\U0002e89e", // 𮢞
+ 0x2e89f: "\xa7\t\U0002e89f", // 𮢟
+ 0x2e8a0: "\xa7\t\U0002e8a0", // 𮢠
+ 0x2e8a1: "\xa7\t\U0002e8a1", // 𮢡
+ 0x2e8a2: "\xa7\t\U0002e8a2", // 𮢢
+ 0x2e8a3: "\xa7\t\U0002e8a3", // 𮢣
+ 0x2e8a4: "\xa7\t\U0002e8a4", // 𮢤
+ 0x2e8a5: "\xa7\t\U0002e8a5", // 𮢥
+ 0x2e8a6: "\xa7\t\U0002e8a6", // 𮢦
+ 0x2e8a7: "\xa7\t\U0002e8a7", // 𮢧
+ 0x2e8a8: "\xa7\n\U0002e8a8", // 𮢨
+ 0x2e8a9: "\xa7\n\U0002e8a9", // 𮢩
+ 0x2e8aa: "\xa7\n\U0002e8aa", // 𮢪
+ 0x2e8ab: "\xa7\n\U0002e8ab", // 𮢫
+ 0x2e8ac: "\xa7\n\U0002e8ac", // 𮢬
+ 0x2e8ad: "\xa7\n\U0002e8ad", // 𮢭
+ 0x2e8ae: "\xa7\n\U0002e8ae", // 𮢮
+ 0x2e8af: "\xa7\n\U0002e8af", // 𮢯
+ 0x2e8b0: "\xa7\n\U0002e8b0", // 𮢰
+ 0x2e8b1: "\xa7\n\U0002e8b1", // 𮢱
+ 0x2e8b2: "\xa7\n\U0002e8b2", // 𮢲
+ 0x2e8b3: "\xa7\n\U0002e8b3", // 𮢳
+ 0x2e8b4: "\xa7\v\U0002e8b4", // 𮢴
+ 0x2e8b5: "\xa7\v\U0002e8b5", // 𮢵
+ 0x2e8b6: "\xa7\v\U0002e8b6", // 𮢶
+ 0x2e8b7: "\xa7\v\U0002e8b7", // 𮢷
+ 0x2e8b8: "\xa7\v\U0002e8b8", // 𮢸
+ 0x2e8b9: "\xa7\v\U0002e8b9", // 𮢹
+ 0x2e8ba: "\xa7\v\U0002e8ba", // 𮢺
+ 0x2e8bb: "\xa7\v\U0002e8bb", // 𮢻
+ 0x2e8bc: "\xa7\v\U0002e8bc", // 𮢼
+ 0x2e8bd: "\xa7\v\U0002e8bd", // 𮢽
+ 0x2e8be: "\xa7\f\U0002e8be", // 𮢾
+ 0x2e8bf: "\xa7\f\U0002e8bf", // 𮢿
+ 0x2e8c0: "\xa7\f\U0002e8c0", // 𮣀
+ 0x2e8c1: "\xa7\f\U0002e8c1", // 𮣁
+ 0x2e8c2: "\xa7\f\U0002e8c2", // 𮣂
+ 0x2e8c3: "\xa7\f\U0002e8c3", // 𮣃
+ 0x2e8c4: "\xa7\f\U0002e8c4", // 𮣄
+ 0x2e8c5: "\xa7\f\U0002e8c5", // 𮣅
+ 0x2e8c6: "\xa7\f\U0002e8c6", // 𮣆
+ 0x2e8c7: "\xa7\f\U0002e8c7", // 𮣇
+ 0x2e8c8: "\xa7\f\U0002e8c8", // 𮣈
+ 0x2e8c9: "\xa7\f\U0002e8c9", // 𮣉
+ 0x2e8ca: "\xa7\f\U0002e8ca", // 𮣊
+ 0x2e8cb: "\xa7\f\U0002e8cb", // 𮣋
+ 0x2e8cc: "\xa7\f\U0002e8cc", // 𮣌
+ 0x2e8cd: "\xa7\f\U0002e8cd", // 𮣍
+ 0x2e8ce: "\xa7\f\U0002e8ce", // 𮣎
+ 0x2e8cf: "\xa7\r\U0002e8cf", // 𮣏
+ 0x2e8d0: "\xa7\r\U0002e8d0", // 𮣐
+ 0x2e8d1: "\xa7\r\U0002e8d1", // 𮣑
+ 0x2e8d2: "\xa7\r\U0002e8d2", // 𮣒
+ 0x2e8d3: "\xa7\r\U0002e8d3", // 𮣓
+ 0x2e8d4: "\xa7\r\U0002e8d4", // 𮣔
+ 0x2e8d5: "\xa7\r\U0002e8d5", // 𮣕
+ 0x2e8d6: "\xa7\r\U0002e8d6", // 𮣖
+ 0x2e8d7: "\xa7\r\U0002e8d7", // 𮣗
+ 0x2e8d8: "\xa7\r\U0002e8d8", // 𮣘
+ 0x2e8d9: "\xa7\x0e\U0002e8d9", // 𮣙
+ 0x2e8da: "\xa7\x0e\U0002e8da", // 𮣚
+ 0x2e8db: "\xa7\x0e\U0002e8db", // 𮣛
+ 0x2e8dc: "\xa7\x0e\U0002e8dc", // 𮣜
+ 0x2e8dd: "\xa7\x0e\U0002e8dd", // 𮣝
+ 0x2e8de: "\xa7\x0f\U0002e8de", // 𮣞
+ 0x2e8df: "\xa7\x0f\U0002e8df", // 𮣟
+ 0x2e8e0: "\xa7\x0f\U0002e8e0", // 𮣠
+ 0x2e8e1: "\xa7\x0f\U0002e8e1", // 𮣡
+ 0x2e8e2: "\xa7\x0f\U0002e8e2", // 𮣢
+ 0x2e8e3: "\xa7\x0f\U0002e8e3", // 𮣣
+ 0x2e8e4: "\xa7\x0f\U0002e8e4", // 𮣤
+ 0x2e8e5: "\xa7\x10\U0002e8e5", // 𮣥
+ 0x2e8e6: "\xa7\x10\U0002e8e6", // 𮣦
+ 0x2e8e7: "\xa7\x10\U0002e8e7", // 𮣧
+ 0x2e8e8: "\xa7\x10\U0002e8e8", // 𮣨
+ 0x2e8e9: "\xa7\x10\U0002e8e9", // 𮣩
+ 0x2e8ea: "\xa7\x11\U0002e8ea", // 𮣪
+ 0x2e8eb: "\xa7\x11\U0002e8eb", // 𮣫
+ 0x2e8ec: "\xa7\x12\U0002e8ec", // 𮣬
+ 0x2e8ed: "\xa7\x12\U0002e8ed", // 𮣭
+ 0x2e8ee: "\xa7\x13\U0002e8ee", // 𮣮
+ 0x2e8ef: "\xa7\x14\U0002e8ef", // 𮣯
+ 0x2e8f0: "\xa7\x18\U0002e8f0", // 𮣰
+ 0x2e8f1: "\xa7!\U0002e8f1", // 𮣱
+ 0x2e8f2: "\xa7\x03\U0002e8f2", // 𮣲
+ 0x2e8f3: "\xa7\x04\U0002e8f3", // 𮣳
+ 0x2e8f4: "\xa7\a\U0002e8f4", // 𮣴
+ 0x2e8f5: "\xa7\b\U0002e8f5", // 𮣵
+ 0x2e8f6: "\xa7\n\U0002e8f6", // 𮣶
+ 0x2e8f7: "\xa7\r\U0002e8f7", // 𮣷
+ 0x2e8f8: "\xa8\x03\U0002e8f8", // 𮣸
+ 0x2e8f9: "\xa8\x04\U0002e8f9", // 𮣹
+ 0x2e8fa: "\xa8\x04\U0002e8fa", // 𮣺
+ 0x2e8fb: "\xa8\x05\U0002e8fb", // 𮣻
+ 0x2e8fc: "\xa8\x06\U0002e8fc", // 𮣼
+ 0x2e8fd: "\xa8\x06\U0002e8fd", // 𮣽
+ 0x2e8fe: "\xa8\a\U0002e8fe", // 𮣾
+ 0x2e8ff: "\xa8\a\U0002e8ff", // 𮣿
+ 0x2e900: "\xa8\b\U0002e900", // 𮤀
+ 0x2e901: "\xa8\b\U0002e901", // 𮤁
+ 0x2e902: "\xa8\n\U0002e902", // 𮤂
+ 0x2e903: "\xa8\v\U0002e903", // 𮤃
+ 0x2e904: "\xa8\v\U0002e904", // 𮤄
+ 0x2e905: "\xa8\r\U0002e905", // 𮤅
+ 0x2e906: "\xa8\r\U0002e906", // 𮤆
+ 0x2e907: "\xa9\x03\U0002e907", // 𮤇
+ 0x2e908: "\xa9\x04\U0002e908", // 𮤈
+ 0x2e909: "\xa9\x04\U0002e909", // 𮤉
+ 0x2e90a: "\xa9\x05\U0002e90a", // 𮤊
+ 0x2e90b: "\xa9\x05\U0002e90b", // 𮤋
+ 0x2e90c: "\xa9\x05\U0002e90c", // 𮤌
+ 0x2e90d: "\xa9\x05\U0002e90d", // 𮤍
+ 0x2e90e: "\xa9\x06\U0002e90e", // 𮤎
+ 0x2e90f: "\xa9\x06\U0002e90f", // 𮤏
+ 0x2e910: "\xa9\b\U0002e910", // 𮤐
+ 0x2e911: "\xa9\b\U0002e911", // 𮤑
+ 0x2e912: "\xa9\b\U0002e912", // 𮤒
+ 0x2e913: "\xa9\b\U0002e913", // 𮤓
+ 0x2e914: "\xa9\b\U0002e914", // 𮤔
+ 0x2e915: "\xa9\b\U0002e915", // 𮤕
+ 0x2e916: "\xa9\b\U0002e916", // 𮤖
+ 0x2e917: "\xa9\t\U0002e917", // 𮤗
+ 0x2e918: "\xa9\t\U0002e918", // 𮤘
+ 0x2e919: "\xa9\t\U0002e919", // 𮤙
+ 0x2e91a: "\xa9\t\U0002e91a", // 𮤚
+ 0x2e91b: "\xa9\t\U0002e91b", // 𮤛
+ 0x2e91c: "\xa9\n\U0002e91c", // 𮤜
+ 0x2e91d: "\xa9\n\U0002e91d", // 𮤝
+ 0x2e91e: "\xa9\n\U0002e91e", // 𮤞
+ 0x2e91f: "\xa9\v\U0002e91f", // 𮤟
+ 0x2e920: "\xa9\v\U0002e920", // 𮤠
+ 0x2e921: "\xa9\v\U0002e921", // 𮤡
+ 0x2e922: "\xa9\f\U0002e922", // 𮤢
+ 0x2e923: "\xa9\f\U0002e923", // 𮤣
+ 0x2e924: "\xa9\f\U0002e924", // 𮤤
+ 0x2e925: "\xa9\f\U0002e925", // 𮤥
+ 0x2e926: "\xa9\r\U0002e926", // 𮤦
+ 0x2e927: "\xa9\r\U0002e927", // 𮤧
+ 0x2e928: "\xa9\x0e\U0002e928", // 𮤨
+ 0x2e929: "\xa9\x10\U0002e929", // 𮤩
+ 0x2e92a: "\xa9\x11\U0002e92a", // 𮤪
+ 0x2e92b: "\xa9\x02\U0002e92b", // 𮤫
+ 0x2e92c: "\xa9\x03\U0002e92c", // 𮤬
+ 0x2e92d: "\xa9\x03\U0002e92d", // 𮤭
+ 0x2e92e: "\xa9\x04\U0002e92e", // 𮤮
+ 0x2e92f: "\xa9\x04\U0002e92f", // 𮤯
+ 0x2e930: "\xa9\x04\U0002e930", // 𮤰
+ 0x2e931: "\xa9\x05\U0002e931", // 𮤱
+ 0x2e932: "\xa9\x05\U0002e932", // 𮤲
+ 0x2e933: "\xa9\x06\U0002e933", // 𮤳
+ 0x2e934: "\xa9\b\U0002e934", // 𮤴
+ 0x2e935: "\xa9\b\U0002e935", // 𮤵
+ 0x2e936: "\xa9\b\U0002e936", // 𮤶
+ 0x2e937: "\xa9\t\U0002e937", // 𮤷
+ 0x2e938: "\xa9\f\U0002e938", // 𮤸
+ 0x2e939: "\xaa\x03\U0002e939", // 𮤹
+ 0x2e93a: "\xaa\x04\U0002e93a", // 𮤺
+ 0x2e93b: "\xaa\x04\U0002e93b", // 𮤻
+ 0x2e93c: "\xaa\x05\U0002e93c", // 𮤼
+ 0x2e93d: "\xaa\x05\U0002e93d", // 𮤽
+ 0x2e93e: "\xaa\x05\U0002e93e", // 𮤾
+ 0x2e93f: "\xaa\x05\U0002e93f", // 𮤿
+ 0x2e940: "\xaa\x06\U0002e940", // 𮥀
+ 0x2e941: "\xaa\x06\U0002e941", // 𮥁
+ 0x2e942: "\xaa\x06\U0002e942", // 𮥂
+ 0x2e943: "\xaa\x06\U0002e943", // 𮥃
+ 0x2e944: "\xaa\x06\U0002e944", // 𮥄
+ 0x2e945: "\xaa\x06\U0002e945", // 𮥅
+ 0x2e946: "\xaa\a\U0002e946", // 𮥆
+ 0x2e947: "\xaa\a\U0002e947", // 𮥇
+ 0x2e948: "\xaa\a\U0002e948", // 𮥈
+ 0x2e949: "\xaa\a\U0002e949", // 𮥉
+ 0x2e94a: "\xaa\a\U0002e94a", // 𮥊
+ 0x2e94b: "\xaa\a\U0002e94b", // 𮥋
+ 0x2e94c: "\xaa\b\U0002e94c", // 𮥌
+ 0x2e94d: "\xaa\b\U0002e94d", // 𮥍
+ 0x2e94e: "\xaa\b\U0002e94e", // 𮥎
+ 0x2e94f: "\xaa\b\U0002e94f", // 𮥏
+ 0x2e950: "\xaa\b\U0002e950", // 𮥐
+ 0x2e951: "\xaa\b\U0002e951", // 𮥑
+ 0x2e952: "\xaa\t\U0002e952", // 𮥒
+ 0x2e953: "\xaa\n\U0002e953", // 𮥓
+ 0x2e954: "\xaa\n\U0002e954", // 𮥔
+ 0x2e955: "\xaa\n\U0002e955", // 𮥕
+ 0x2e956: "\xaa\n\U0002e956", // 𮥖
+ 0x2e957: "\xaa\n\U0002e957", // 𮥗
+ 0x2e958: "\xaa\n\U0002e958", // 𮥘
+ 0x2e959: "\xaa\n\U0002e959", // 𮥙
+ 0x2e95a: "\xaa\n\U0002e95a", // 𮥚
+ 0x2e95b: "\xaa\v\U0002e95b", // 𮥛
+ 0x2e95c: "\xaa\v\U0002e95c", // 𮥜
+ 0x2e95d: "\xaa\v\U0002e95d", // 𮥝
+ 0x2e95e: "\xaa\v\U0002e95e", // 𮥞
+ 0x2e95f: "\xaa\v\U0002e95f", // 𮥟
+ 0x2e960: "\xaa\f\U0002e960", // 𮥠
+ 0x2e961: "\xaa\f\U0002e961", // 𮥡
+ 0x2e962: "\xaa\f\U0002e962", // 𮥢
+ 0x2e963: "\xaa\f\U0002e963", // 𮥣
+ 0x2e964: "\xaa\f\U0002e964", // 𮥤
+ 0x2e965: "\xaa\r\U0002e965", // 𮥥
+ 0x2e966: "\xaa\r\U0002e966", // 𮥦
+ 0x2e967: "\xaa\r\U0002e967", // 𮥧
+ 0x2e968: "\xaa\r\U0002e968", // 𮥨
+ 0x2e969: "\xaa\r\U0002e969", // 𮥩
+ 0x2e96a: "\xaa\x0e\U0002e96a", // 𮥪
+ 0x2e96b: "\xaa\x0e\U0002e96b", // 𮥫
+ 0x2e96c: "\xaa\x0e\U0002e96c", // 𮥬
+ 0x2e96d: "\xaa\x0e\U0002e96d", // 𮥭
+ 0x2e96e: "\xaa\x0e\U0002e96e", // 𮥮
+ 0x2e96f: "\xaa\x0f\U0002e96f", // 𮥯
+ 0x2e970: "\xaa\x10\U0002e970", // 𮥰
+ 0x2e971: "\xaa\x11\U0002e971", // 𮥱
+ 0x2e972: "\xaa\x14\U0002e972", // 𮥲
+ 0x2e973: "\xaa\x15\U0002e973", // 𮥳
+ 0x2e974: "\xab\x01\U0002e974", // 𮥴
+ 0x2e975: "\xab\t\U0002e975", // 𮥵
+ 0x2e976: "\xac\x03\U0002e976", // 𮥶
+ 0x2e977: "\xac\x04\U0002e977", // 𮥷
+ 0x2e978: "\xac\x04\U0002e978", // 𮥸
+ 0x2e979: "\xac\x04\U0002e979", // 𮥹
+ 0x2e97a: "\xac\x04\U0002e97a", // 𮥺
+ 0x2e97b: "\xac\x05\U0002e97b", // 𮥻
+ 0x2e97c: "\xac\a\U0002e97c", // 𮥼
+ 0x2e97d: "\xac\b\U0002e97d", // 𮥽
+ 0x2e97e: "\xac\b\U0002e97e", // 𮥾
+ 0x2e97f: "\xac\b\U0002e97f", // 𮥿
+ 0x2e980: "\xac\t\U0002e980", // 𮦀
+ 0x2e981: "\xac\n\U0002e981", // 𮦁
+ 0x2e982: "\xac\x10\U0002e982", // 𮦂
+ 0x2e983: "\xac\x12\U0002e983", // 𮦃
+ 0x2e984: "\xad\x00\U0002e984", // 𮦄
+ 0x2e985: "\xad\x03\U0002e985", // 𮦅
+ 0x2e986: "\xad\x04\U0002e986", // 𮦆
+ 0x2e987: "\xad\x04\U0002e987", // 𮦇
+ 0x2e988: "\xad\x04\U0002e988", // 𮦈
+ 0x2e989: "\xad\x04\U0002e989", // 𮦉
+ 0x2e98a: "\xad\x05\U0002e98a", // 𮦊
+ 0x2e98b: "\xad\x05\U0002e98b", // 𮦋
+ 0x2e98c: "\xad\x05\U0002e98c", // 𮦌
+ 0x2e98d: "\xad\x05\U0002e98d", // 𮦍
+ 0x2e98e: "\xad\x06\U0002e98e", // 𮦎
+ 0x2e98f: "\xad\x06\U0002e98f", // 𮦏
+ 0x2e990: "\xad\a\U0002e990", // 𮦐
+ 0x2e991: "\xad\a\U0002e991", // 𮦑
+ 0x2e992: "\xad\a\U0002e992", // 𮦒
+ 0x2e993: "\xad\a\U0002e993", // 𮦓
+ 0x2e994: "\xad\b\U0002e994", // 𮦔
+ 0x2e995: "\xad\b\U0002e995", // 𮦕
+ 0x2e996: "\xad\b\U0002e996", // 𮦖
+ 0x2e997: "\xad\b\U0002e997", // 𮦗
+ 0x2e998: "\xad\b\U0002e998", // 𮦘
+ 0x2e999: "\xad\b\U0002e999", // 𮦙
+ 0x2e99a: "\xad\b\U0002e99a", // 𮦚
+ 0x2e99b: "\xad\b\U0002e99b", // 𮦛
+ 0x2e99c: "\xad\t\U0002e99c", // 𮦜
+ 0x2e99d: "\xad\t\U0002e99d", // 𮦝
+ 0x2e99e: "\xad\t\U0002e99e", // 𮦞
+ 0x2e99f: "\xad\t\U0002e99f", // 𮦟
+ 0x2e9a0: "\xad\t\U0002e9a0", // 𮦠
+ 0x2e9a1: "\xad\t\U0002e9a1", // 𮦡
+ 0x2e9a2: "\xad\t\U0002e9a2", // 𮦢
+ 0x2e9a3: "\xad\t\U0002e9a3", // 𮦣
+ 0x2e9a4: "\xad\n\U0002e9a4", // 𮦤
+ 0x2e9a5: "\xad\n\U0002e9a5", // 𮦥
+ 0x2e9a6: "\xad\n\U0002e9a6", // 𮦦
+ 0x2e9a7: "\xad\n\U0002e9a7", // 𮦧
+ 0x2e9a8: "\xad\n\U0002e9a8", // 𮦨
+ 0x2e9a9: "\xad\n\U0002e9a9", // 𮦩
+ 0x2e9aa: "\xad\n\U0002e9aa", // 𮦪
+ 0x2e9ab: "\xad\n\U0002e9ab", // 𮦫
+ 0x2e9ac: "\xad\v\U0002e9ac", // 𮦬
+ 0x2e9ad: "\xad\f\U0002e9ad", // 𮦭
+ 0x2e9ae: "\xad\f\U0002e9ae", // 𮦮
+ 0x2e9af: "\xad\f\U0002e9af", // 𮦯
+ 0x2e9b0: "\xad\f\U0002e9b0", // 𮦰
+ 0x2e9b1: "\xad\f\U0002e9b1", // 𮦱
+ 0x2e9b2: "\xad\f\U0002e9b2", // 𮦲
+ 0x2e9b3: "\xad\r\U0002e9b3", // 𮦳
+ 0x2e9b4: "\xad\r\U0002e9b4", // 𮦴
+ 0x2e9b5: "\xad\r\U0002e9b5", // 𮦵
+ 0x2e9b6: "\xad\r\U0002e9b6", // 𮦶
+ 0x2e9b7: "\xad\x0e\U0002e9b7", // 𮦷
+ 0x2e9b8: "\xad\x0e\U0002e9b8", // 𮦸
+ 0x2e9b9: "\xad\x0e\U0002e9b9", // 𮦹
+ 0x2e9ba: "\xad\x0e\U0002e9ba", // 𮦺
+ 0x2e9bb: "\xad\x0e\U0002e9bb", // 𮦻
+ 0x2e9bc: "\xad\x0f\U0002e9bc", // 𮦼
+ 0x2e9bd: "\xad\x10\U0002e9bd", // 𮦽
+ 0x2e9be: "\xad\x11\U0002e9be", // 𮦾
+ 0x2e9bf: "\xad\x12\U0002e9bf", // 𮦿
+ 0x2e9c0: "\xad\x13\U0002e9c0", // 𮧀
+ 0x2e9c1: "\xad\x13\U0002e9c1", // 𮧁
+ 0x2e9c2: "\xad\x16\U0002e9c2", // 𮧂
+ 0x2e9c3: "\xae\x05\U0002e9c3", // 𮧃
+ 0x2e9c4: "\xaf\x04\U0002e9c4", // 𮧄
+ 0x2e9c5: "\xaf\x05\U0002e9c5", // 𮧅
+ 0x2e9c6: "\xaf\x05\U0002e9c6", // 𮧆
+ 0x2e9c7: "\xaf\x06\U0002e9c7", // 𮧇
+ 0x2e9c8: "\xaf\x10\U0002e9c8", // 𮧈
+ 0x2e9c9: "\xb0\x03\U0002e9c9", // 𮧉
+ 0x2e9ca: "\xb0\x05\U0002e9ca", // 𮧊
+ 0x2e9cb: "\xb0\x05\U0002e9cb", // 𮧋
+ 0x2e9cc: "\xb0\x06\U0002e9cc", // 𮧌
+ 0x2e9cd: "\xb0\a\U0002e9cd", // 𮧍
+ 0x2e9ce: "\xb0\b\U0002e9ce", // 𮧎
+ 0x2e9cf: "\xb0\t\U0002e9cf", // 𮧏
+ 0x2e9d0: "\xb0\v\U0002e9d0", // 𮧐
+ 0x2e9d1: "\xb0\f\U0002e9d1", // 𮧑
+ 0x2e9d2: "\xb0\f\U0002e9d2", // 𮧒
+ 0x2e9d3: "\xb1\x00\U0002e9d3", // 𮧓
+ 0x2e9d4: "\xb1\x04\U0002e9d4", // 𮧔
+ 0x2e9d5: "\xb1\x05\U0002e9d5", // 𮧕
+ 0x2e9d6: "\xb1\x05\U0002e9d6", // 𮧖
+ 0x2e9d7: "\xb1\x05\U0002e9d7", // 𮧗
+ 0x2e9d8: "\xb1\x06\U0002e9d8", // 𮧘
+ 0x2e9d9: "\xb1\x06\U0002e9d9", // 𮧙
+ 0x2e9da: "\xb1\a\U0002e9da", // 𮧚
+ 0x2e9db: "\xb1\a\U0002e9db", // 𮧛
+ 0x2e9dc: "\xb1\a\U0002e9dc", // 𮧜
+ 0x2e9dd: "\xb1\a\U0002e9dd", // 𮧝
+ 0x2e9de: "\xb1\b\U0002e9de", // 𮧞
+ 0x2e9df: "\xb1\t\U0002e9df", // 𮧟
+ 0x2e9e0: "\xb1\t\U0002e9e0", // 𮧠
+ 0x2e9e1: "\xb1\t\U0002e9e1", // 𮧡
+ 0x2e9e2: "\xb1\t\U0002e9e2", // 𮧢
+ 0x2e9e3: "\xb1\n\U0002e9e3", // 𮧣
+ 0x2e9e4: "\xb1\n\U0002e9e4", // 𮧤
+ 0x2e9e5: "\xb1\n\U0002e9e5", // 𮧥
+ 0x2e9e6: "\xb1\v\U0002e9e6", // 𮧦
+ 0x2e9e7: "\xb1\v\U0002e9e7", // 𮧧
+ 0x2e9e8: "\xb1\v\U0002e9e8", // 𮧨
+ 0x2e9e9: "\xb1\v\U0002e9e9", // 𮧩
+ 0x2e9ea: "\xb1\f\U0002e9ea", // 𮧪
+ 0x2e9eb: "\xb1\f\U0002e9eb", // 𮧫
+ 0x2e9ec: "\xb1\r\U0002e9ec", // 𮧬
+ 0x2e9ed: "\xb1\r\U0002e9ed", // 𮧭
+ 0x2e9ee: "\xb2\x00\U0002e9ee", // 𮧮
+ 0x2e9ef: "\xb2\x00\U0002e9ef", // 𮧯
+ 0x2e9f0: "\xb2\x00\U0002e9f0", // 𮧰
+ 0x2e9f1: "\xb2\x06\U0002e9f1", // 𮧱
+ 0x2e9f2: "\xb2\t\U0002e9f2", // 𮧲
+ 0x2e9f3: "\xb2\f\U0002e9f3", // 𮧳
+ 0x2e9f4: "\xb2\x04\U0002e9f4", // 𮧴
+ 0x2e9f5: "\xb2\x06\U0002e9f5", // 𮧵
+ 0x2e9f6: "\xb4\x03\U0002e9f6", // 𮧶
+ 0x2e9f7: "\xb4\x03\U0002e9f7", // 𮧷
+ 0x2e9f8: "\xb4\x05\U0002e9f8", // 𮧸
+ 0x2e9f9: "\xb4\x06\U0002e9f9", // 𮧹
+ 0x2e9fa: "\xb4\x06\U0002e9fa", // 𮧺
+ 0x2e9fb: "\xb4\a\U0002e9fb", // 𮧻
+ 0x2e9fc: "\xb4\t\U0002e9fc", // 𮧼
+ 0x2e9fd: "\xb4\n\U0002e9fd", // 𮧽
+ 0x2e9fe: "\xb4\f\U0002e9fe", // 𮧾
+ 0x2e9ff: "\xb4\r\U0002e9ff", // 𮧿
+ 0x2ea00: "\xb5\x04\U0002ea00", // 𮨀
+ 0x2ea01: "\xb5\x04\U0002ea01", // 𮨁
+ 0x2ea02: "\xb5\x04\U0002ea02", // 𮨂
+ 0x2ea03: "\xb5\x05\U0002ea03", // 𮨃
+ 0x2ea04: "\xb5\x05\U0002ea04", // 𮨄
+ 0x2ea05: "\xb5\x05\U0002ea05", // 𮨅
+ 0x2ea06: "\xb5\x05\U0002ea06", // 𮨆
+ 0x2ea07: "\xb5\x06\U0002ea07", // 𮨇
+ 0x2ea08: "\xb5\x06\U0002ea08", // 𮨈
+ 0x2ea09: "\xb5\x06\U0002ea09", // 𮨉
+ 0x2ea0a: "\xb5\x06\U0002ea0a", // 𮨊
+ 0x2ea0b: "\xb5\a\U0002ea0b", // 𮨋
+ 0x2ea0c: "\xb5\a\U0002ea0c", // 𮨌
+ 0x2ea0d: "\xb5\b\U0002ea0d", // 𮨍
+ 0x2ea0e: "\xb5\b\U0002ea0e", // 𮨎
+ 0x2ea0f: "\xb5\b\U0002ea0f", // 𮨏
+ 0x2ea10: "\xb5\b\U0002ea10", // 𮨐
+ 0x2ea11: "\xb5\b\U0002ea11", // 𮨑
+ 0x2ea12: "\xb5\b\U0002ea12", // 𮨒
+ 0x2ea13: "\xb5\b\U0002ea13", // 𮨓
+ 0x2ea14: "\xb5\b\U0002ea14", // 𮨔
+ 0x2ea15: "\xb5\t\U0002ea15", // 𮨕
+ 0x2ea16: "\xb5\t\U0002ea16", // 𮨖
+ 0x2ea17: "\xb5\n\U0002ea17", // 𮨗
+ 0x2ea18: "\xb5\n\U0002ea18", // 𮨘
+ 0x2ea19: "\xb5\n\U0002ea19", // 𮨙
+ 0x2ea1a: "\xb5\n\U0002ea1a", // 𮨚
+ 0x2ea1b: "\xb5\n\U0002ea1b", // 𮨛
+ 0x2ea1c: "\xb5\v\U0002ea1c", // 𮨜
+ 0x2ea1d: "\xb5\v\U0002ea1d", // 𮨝
+ 0x2ea1e: "\xb5\f\U0002ea1e", // 𮨞
+ 0x2ea1f: "\xb5\f\U0002ea1f", // 𮨟
+ 0x2ea20: "\xb5\r\U0002ea20", // 𮨠
+ 0x2ea21: "\xb5\r\U0002ea21", // 𮨡
+ 0x2ea22: "\xb5\x0f\U0002ea22", // 𮨢
+ 0x2ea23: "\xb5\x0f\U0002ea23", // 𮨣
+ 0x2ea24: "\xb5\x10\U0002ea24", // 𮨤
+ 0x2ea25: "\xb5\x10\U0002ea25", // 𮨥
+ 0x2ea26: "\xb6\x02\U0002ea26", // 𮨦
+ 0x2ea27: "\xb6\x04\U0002ea27", // 𮨧
+ 0x2ea28: "\xb6\x05\U0002ea28", // 𮨨
+ 0x2ea29: "\xb6\x06\U0002ea29", // 𮨩
+ 0x2ea2a: "\xb6\x06\U0002ea2a", // 𮨪
+ 0x2ea2b: "\xb6\x06\U0002ea2b", // 𮨫
+ 0x2ea2c: "\xb6\a\U0002ea2c", // 𮨬
+ 0x2ea2d: "\xb6\b\U0002ea2d", // 𮨭
+ 0x2ea2e: "\xb6\b\U0002ea2e", // 𮨮
+ 0x2ea2f: "\xb6\b\U0002ea2f", // 𮨯
+ 0x2ea30: "\xb6\n\U0002ea30", // 𮨰
+ 0x2ea31: "\xb6\v\U0002ea31", // 𮨱
+ 0x2ea32: "\xb6\r\U0002ea32", // 𮨲
+ 0x2ea33: "\xb6\x13\U0002ea33", // 𮨳
+ 0x2ea34: "\xb6\b\U0002ea34", // 𮨴
+ 0x2ea35: "\xb6\v\U0002ea35", // 𮨵
+ 0x2ea36: "\xb7\x05\U0002ea36", // 𮨶
+ 0x2ea37: "\xb8\x03\U0002ea37", // 𮨷
+ 0x2ea38: "\xb8\x03\U0002ea38", // 𮨸
+ 0x2ea39: "\xb8\x05\U0002ea39", // 𮨹
+ 0x2ea3a: "\xb8\x05\U0002ea3a", // 𮨺
+ 0x2ea3b: "\xb8\x05\U0002ea3b", // 𮨻
+ 0x2ea3c: "\xb8\x06\U0002ea3c", // 𮨼
+ 0x2ea3d: "\xb8\b\U0002ea3d", // 𮨽
+ 0x2ea3e: "\xb8\b\U0002ea3e", // 𮨾
+ 0x2ea3f: "\xb8\b\U0002ea3f", // 𮨿
+ 0x2ea40: "\xb8\b\U0002ea40", // 𮩀
+ 0x2ea41: "\xb8\t\U0002ea41", // 𮩁
+ 0x2ea42: "\xb8\t\U0002ea42", // 𮩂
+ 0x2ea43: "\xb8\t\U0002ea43", // 𮩃
+ 0x2ea44: "\xb8\t\U0002ea44", // 𮩄
+ 0x2ea45: "\xb8\t\U0002ea45", // 𮩅
+ 0x2ea46: "\xb8\t\U0002ea46", // 𮩆
+ 0x2ea47: "\xb8\t\U0002ea47", // 𮩇
+ 0x2ea48: "\xb8\n\U0002ea48", // 𮩈
+ 0x2ea49: "\xb8\n\U0002ea49", // 𮩉
+ 0x2ea4a: "\xb8\n\U0002ea4a", // 𮩊
+ 0x2ea4b: "\xb8\n\U0002ea4b", // 𮩋
+ 0x2ea4c: "\xb8\v\U0002ea4c", // 𮩌
+ 0x2ea4d: "\xb8\v\U0002ea4d", // 𮩍
+ 0x2ea4e: "\xb8\v\U0002ea4e", // 𮩎
+ 0x2ea4f: "\xb8\v\U0002ea4f", // 𮩏
+ 0x2ea50: "\xb8\f\U0002ea50", // 𮩐
+ 0x2ea51: "\xb8\r\U0002ea51", // 𮩑
+ 0x2ea52: "\xb8\r\U0002ea52", // 𮩒
+ 0x2ea53: "\xb8\r\U0002ea53", // 𮩓
+ 0x2ea54: "\xb8\r\U0002ea54", // 𮩔
+ 0x2ea55: "\xb8\r\U0002ea55", // 𮩕
+ 0x2ea56: "\xb8\x0f\U0002ea56", // 𮩖
+ 0x2ea57: "\xb8\x0f\U0002ea57", // 𮩗
+ 0x2ea58: "\xb8\x10\U0002ea58", // 𮩘
+ 0x2ea59: "\xb8\x11\U0002ea59", // 𮩙
+ 0x2ea5a: "\xb8\x11\U0002ea5a", // 𮩚
+ 0x2ea5b: "\xb8\x06\U0002ea5b", // 𮩛
+ 0x2ea5c: "\xb8\x06\U0002ea5c", // 𮩜
+ 0x2ea5d: "\xb8\t\U0002ea5d", // 𮩝
+ 0x2ea5e: "\xb8\f\U0002ea5e", // 𮩞
+ 0x2ea5f: "\xb9\x03\U0002ea5f", // 𮩟
+ 0x2ea60: "\xb9\x05\U0002ea60", // 𮩠
+ 0x2ea61: "\xb9\x06\U0002ea61", // 𮩡
+ 0x2ea62: "\xb9\a\U0002ea62", // 𮩢
+ 0x2ea63: "\xb9\a\U0002ea63", // 𮩣
+ 0x2ea64: "\xb9\b\U0002ea64", // 𮩤
+ 0x2ea65: "\xb9\t\U0002ea65", // 𮩥
+ 0x2ea66: "\xb9\t\U0002ea66", // 𮩦
+ 0x2ea67: "\xba\x06\U0002ea67", // 𮩧
+ 0x2ea68: "\xba\x06\U0002ea68", // 𮩨
+ 0x2ea69: "\xba\b\U0002ea69", // 𮩩
+ 0x2ea6a: "\xba\b\U0002ea6a", // 𮩪
+ 0x2ea6b: "\xba\n\U0002ea6b", // 𮩫
+ 0x2ea6c: "\xba\n\U0002ea6c", // 𮩬
+ 0x2ea6d: "\xba\v\U0002ea6d", // 𮩭
+ 0x2ea6e: "\xba\f\U0002ea6e", // 𮩮
+ 0x2ea6f: "\xba\r\U0002ea6f", // 𮩯
+ 0x2ea70: "\xba\r\U0002ea70", // 𮩰
+ 0x2ea71: "\xba\x0e\U0002ea71", // 𮩱
+ 0x2ea72: "\xbb\x02\U0002ea72", // 𮩲
+ 0x2ea73: "\xbb\x03\U0002ea73", // 𮩳
+ 0x2ea74: "\xbb\x03\U0002ea74", // 𮩴
+ 0x2ea75: "\xbb\x03\U0002ea75", // 𮩵
+ 0x2ea76: "\xbb\x03\U0002ea76", // 𮩶
+ 0x2ea77: "\xbb\x04\U0002ea77", // 𮩷
+ 0x2ea78: "\xbb\x04\U0002ea78", // 𮩸
+ 0x2ea79: "\xbb\x04\U0002ea79", // 𮩹
+ 0x2ea7a: "\xbb\x05\U0002ea7a", // 𮩺
+ 0x2ea7b: "\xbb\x05\U0002ea7b", // 𮩻
+ 0x2ea7c: "\xbb\x05\U0002ea7c", // 𮩼
+ 0x2ea7d: "\xbb\x05\U0002ea7d", // 𮩽
+ 0x2ea7e: "\xbb\x06\U0002ea7e", // 𮩾
+ 0x2ea7f: "\xbb\x06\U0002ea7f", // 𮩿
+ 0x2ea80: "\xbb\x06\U0002ea80", // 𮪀
+ 0x2ea81: "\xbb\x06\U0002ea81", // 𮪁
+ 0x2ea82: "\xbb\x06\U0002ea82", // 𮪂
+ 0x2ea83: "\xbb\x06\U0002ea83", // 𮪃
+ 0x2ea84: "\xbb\x06\U0002ea84", // 𮪄
+ 0x2ea85: "\xbb\a\U0002ea85", // 𮪅
+ 0x2ea86: "\xbb\a\U0002ea86", // 𮪆
+ 0x2ea87: "\xbb\a\U0002ea87", // 𮪇
+ 0x2ea88: "\xbb\b\U0002ea88", // 𮪈
+ 0x2ea89: "\xbb\b\U0002ea89", // 𮪉
+ 0x2ea8a: "\xbb\b\U0002ea8a", // 𮪊
+ 0x2ea8b: "\xbb\b\U0002ea8b", // 𮪋
+ 0x2ea8c: "\xbb\b\U0002ea8c", // 𮪌
+ 0x2ea8d: "\xbb\t\U0002ea8d", // 𮪍
+ 0x2ea8e: "\xbb\t\U0002ea8e", // 𮪎
+ 0x2ea8f: "\xbb\t\U0002ea8f", // 𮪏
+ 0x2ea90: "\xbb\t\U0002ea90", // 𮪐
+ 0x2ea91: "\xbb\t\U0002ea91", // 𮪑
+ 0x2ea92: "\xbb\t\U0002ea92", // 𮪒
+ 0x2ea93: "\xbb\t\U0002ea93", // 𮪓
+ 0x2ea94: "\xbb\t\U0002ea94", // 𮪔
+ 0x2ea95: "\xbb\n\U0002ea95", // 𮪕
+ 0x2ea96: "\xbb\v\U0002ea96", // 𮪖
+ 0x2ea97: "\xbb\v\U0002ea97", // 𮪗
+ 0x2ea98: "\xbb\v\U0002ea98", // 𮪘
+ 0x2ea99: "\xbb\v\U0002ea99", // 𮪙
+ 0x2ea9a: "\xbb\r\U0002ea9a", // 𮪚
+ 0x2ea9b: "\xbb\x0e\U0002ea9b", // 𮪛
+ 0x2ea9c: "\xbb\x0f\U0002ea9c", // 𮪜
+ 0x2ea9d: "\xbb\x10\U0002ea9d", // 𮪝
+ 0x2ea9e: "\xbb\x10\U0002ea9e", // 𮪞
+ 0x2ea9f: "\xbb\x11\U0002ea9f", // 𮪟
+ 0x2eaa0: "\xbb\x12\U0002eaa0", // 𮪠
+ 0x2eaa1: "\xbb\a\U0002eaa1", // 𮪡
+ 0x2eaa2: "\xbb\a\U0002eaa2", // 𮪢
+ 0x2eaa3: "\xbb\t\U0002eaa3", // 𮪣
+ 0x2eaa4: "\xbb\n\U0002eaa4", // 𮪤
+ 0x2eaa5: "\xbb\f\U0002eaa5", // 𮪥
+ 0x2eaa6: "\xbc\x02\U0002eaa6", // 𮪦
+ 0x2eaa7: "\xbc\x05\U0002eaa7", // 𮪧
+ 0x2eaa8: "\xbc\x05\U0002eaa8", // 𮪨
+ 0x2eaa9: "\xbc\x06\U0002eaa9", // 𮪩
+ 0x2eaaa: "\xbc\a\U0002eaaa", // 𮪪
+ 0x2eaab: "\xbc\a\U0002eaab", // 𮪫
+ 0x2eaac: "\xbc\a\U0002eaac", // 𮪬
+ 0x2eaad: "\xbc\b\U0002eaad", // 𮪭
+ 0x2eaae: "\xbc\b\U0002eaae", // 𮪮
+ 0x2eaaf: "\xbc\b\U0002eaaf", // 𮪯
+ 0x2eab0: "\xbc\t\U0002eab0", // 𮪰
+ 0x2eab1: "\xbc\t\U0002eab1", // 𮪱
+ 0x2eab2: "\xbc\n\U0002eab2", // 𮪲
+ 0x2eab3: "\xbc\v\U0002eab3", // 𮪳
+ 0x2eab4: "\xbc\v\U0002eab4", // 𮪴
+ 0x2eab5: "\xbc\r\U0002eab5", // 𮪵
+ 0x2eab6: "\xbc\x0f\U0002eab6", // 𮪶
+ 0x2eab7: "\xbc\x10\U0002eab7", // 𮪷
+ 0x2eab8: "\xbd\x04\U0002eab8", // 𮪸
+ 0x2eab9: "\xbd\x05\U0002eab9", // 𮪹
+ 0x2eaba: "\xbd\b\U0002eaba", // 𮪺
+ 0x2eabb: "\xbd\n\U0002eabb", // 𮪻
+ 0x2eabc: "\xbd\n\U0002eabc", // 𮪼
+ 0x2eabd: "\xbe\x04\U0002eabd", // 𮪽
+ 0x2eabe: "\xbe\x04\U0002eabe", // 𮪾
+ 0x2eabf: "\xbe\x04\U0002eabf", // 𮪿
+ 0x2eac0: "\xbe\x05\U0002eac0", // 𮫀
+ 0x2eac1: "\xbe\x05\U0002eac1", // 𮫁
+ 0x2eac2: "\xbe\x05\U0002eac2", // 𮫂
+ 0x2eac3: "\xbe\x06\U0002eac3", // 𮫃
+ 0x2eac4: "\xbe\x06\U0002eac4", // 𮫄
+ 0x2eac5: "\xbe\x06\U0002eac5", // 𮫅
+ 0x2eac6: "\xbe\a\U0002eac6", // 𮫆
+ 0x2eac7: "\xbe\a\U0002eac7", // 𮫇
+ 0x2eac8: "\xbe\a\U0002eac8", // 𮫈
+ 0x2eac9: "\xbe\b\U0002eac9", // 𮫉
+ 0x2eaca: "\xbe\b\U0002eaca", // 𮫊
+ 0x2eacb: "\xbe\b\U0002eacb", // 𮫋
+ 0x2eacc: "\xbe\b\U0002eacc", // 𮫌
+ 0x2eacd: "\xbe\t\U0002eacd", // 𮫍
+ 0x2eace: "\xbe\t\U0002eace", // 𮫎
+ 0x2eacf: "\xbe\n\U0002eacf", // 𮫏
+ 0x2ead0: "\xbe\f\U0002ead0", // 𮫐
+ 0x2ead1: "\xbe\f\U0002ead1", // 𮫑
+ 0x2ead2: "\xbe\r\U0002ead2", // 𮫒
+ 0x2ead3: "\xbe\x10\U0002ead3", // 𮫓
+ 0x2ead4: "\xbf\b\U0002ead4", // 𮫔
+ 0x2ead5: "\xbf\n\U0002ead5", // 𮫕
+ 0x2ead6: "\xc0\x00\U0002ead6", // 𮫖
+ 0x2ead7: "\xc0\v\U0002ead7", // 𮫗
+ 0x2ead8: "\xc0\x0f\U0002ead8", // 𮫘
+ 0x2ead9: "\xc1\x01\U0002ead9", // 𮫙
+ 0x2eada: "\xc1\x0f\U0002eada", // 𮫚
+ 0x2eadb: "\xc1\x11\U0002eadb", // 𮫛
+ 0x2eadc: "\xc2\x04\U0002eadc", // 𮫜
+ 0x2eadd: "\xc2\x04\U0002eadd", // 𮫝
+ 0x2eade: "\xc2\x06\U0002eade", // 𮫞
+ 0x2eadf: "\xc2\x06\U0002eadf", // 𮫟
+ 0x2eae0: "\xc2\a\U0002eae0", // 𮫠
+ 0x2eae1: "\xc2\b\U0002eae1", // 𮫡
+ 0x2eae2: "\xc2\b\U0002eae2", // 𮫢
+ 0x2eae3: "\xc2\b\U0002eae3", // 𮫣
+ 0x2eae4: "\xc2\t\U0002eae4", // 𮫤
+ 0x2eae5: "\xc2\n\U0002eae5", // 𮫥
+ 0x2eae6: "\xc2\n\U0002eae6", // 𮫦
+ 0x2eae7: "\xc2\v\U0002eae7", // 𮫧
+ 0x2eae8: "\xc2\r\U0002eae8", // 𮫨
+ 0x2eae9: "\xc2\x10\U0002eae9", // 𮫩
+ 0x2eaea: "\xc2\x11\U0002eaea", // 𮫪
+ 0x2eaeb: "\xc2\x15\U0002eaeb", // 𮫫
+ 0x2eaec: "\xc3\x00\U0002eaec", // 𮫬
+ 0x2eaed: "\xc3\x00\U0002eaed", // 𮫭
+ 0x2eaee: "\xc3\x00\U0002eaee", // 𮫮
+ 0x2eaef: "\xc3\x00\U0002eaef", // 𮫯
+ 0x2eaf0: "\xc3\x03\U0002eaf0", // 𮫰
+ 0x2eaf1: "\xc3\x04\U0002eaf1", // 𮫱
+ 0x2eaf2: "\xc3\x04\U0002eaf2", // 𮫲
+ 0x2eaf3: "\xc3\x05\U0002eaf3", // 𮫳
+ 0x2eaf4: "\xc3\x05\U0002eaf4", // 𮫴
+ 0x2eaf5: "\xc3\x06\U0002eaf5", // 𮫵
+ 0x2eaf6: "\xc3\x06\U0002eaf6", // 𮫶
+ 0x2eaf7: "\xc3\x06\U0002eaf7", // 𮫷
+ 0x2eaf8: "\xc3\x06\U0002eaf8", // 𮫸
+ 0x2eaf9: "\xc3\a\U0002eaf9", // 𮫹
+ 0x2eafa: "\xc3\a\U0002eafa", // 𮫺
+ 0x2eafb: "\xc3\a\U0002eafb", // 𮫻
+ 0x2eafc: "\xc3\a\U0002eafc", // 𮫼
+ 0x2eafd: "\xc3\a\U0002eafd", // 𮫽
+ 0x2eafe: "\xc3\b\U0002eafe", // 𮫾
+ 0x2eaff: "\xc3\b\U0002eaff", // 𮫿
+ 0x2eb00: "\xc3\t\U0002eb00", // 𮬀
+ 0x2eb01: "\xc3\t\U0002eb01", // 𮬁
+ 0x2eb02: "\xc3\t\U0002eb02", // 𮬂
+ 0x2eb03: "\xc3\t\U0002eb03", // 𮬃
+ 0x2eb04: "\xc3\t\U0002eb04", // 𮬄
+ 0x2eb05: "\xc3\t\U0002eb05", // 𮬅
+ 0x2eb06: "\xc3\n\U0002eb06", // 𮬆
+ 0x2eb07: "\xc3\n\U0002eb07", // 𮬇
+ 0x2eb08: "\xc3\n\U0002eb08", // 𮬈
+ 0x2eb09: "\xc3\n\U0002eb09", // 𮬉
+ 0x2eb0a: "\xc3\n\U0002eb0a", // 𮬊
+ 0x2eb0b: "\xc3\v\U0002eb0b", // 𮬋
+ 0x2eb0c: "\xc3\v\U0002eb0c", // 𮬌
+ 0x2eb0d: "\xc3\v\U0002eb0d", // 𮬍
+ 0x2eb0e: "\xc3\f\U0002eb0e", // 𮬎
+ 0x2eb0f: "\xc3\f\U0002eb0f", // 𮬏
+ 0x2eb10: "\xc3\f\U0002eb10", // 𮬐
+ 0x2eb11: "\xc3\f\U0002eb11", // 𮬑
+ 0x2eb12: "\xc3\f\U0002eb12", // 𮬒
+ 0x2eb13: "\xc3\r\U0002eb13", // 𮬓
+ 0x2eb14: "\xc3\r\U0002eb14", // 𮬔
+ 0x2eb15: "\xc3\x0e\U0002eb15", // 𮬕
+ 0x2eb16: "\xc3\x0f\U0002eb16", // 𮬖
+ 0x2eb17: "\xc3\x10\U0002eb17", // 𮬗
+ 0x2eb18: "\xc3\x10\U0002eb18", // 𮬘
+ 0x2eb19: "\xc3\x11\U0002eb19", // 𮬙
+ 0x2eb1a: "\xc3\x11\U0002eb1a", // 𮬚
+ 0x2eb1b: "\xc3\x04\U0002eb1b", // 𮬛
+ 0x2eb1c: "\xc3\x06\U0002eb1c", // 𮬜
+ 0x2eb1d: "\xc3\x06\U0002eb1d", // 𮬝
+ 0x2eb1e: "\xc3\a\U0002eb1e", // 𮬞
+ 0x2eb1f: "\xc3\b\U0002eb1f", // 𮬟
+ 0x2eb20: "\xc3\b\U0002eb20", // 𮬠
+ 0x2eb21: "\xc3\n\U0002eb21", // 𮬡
+ 0x2eb22: "\xc3\n\U0002eb22", // 𮬢
+ 0x2eb23: "\xc3\v\U0002eb23", // 𮬣
+ 0x2eb24: "\xc3\x0f\U0002eb24", // 𮬤
+ 0x2eb25: "\xc4\x02\U0002eb25", // 𮬥
+ 0x2eb26: "\xc4\x03\U0002eb26", // 𮬦
+ 0x2eb27: "\xc4\x03\U0002eb27", // 𮬧
+ 0x2eb28: "\xc4\x03\U0002eb28", // 𮬨
+ 0x2eb29: "\xc4\x03\U0002eb29", // 𮬩
+ 0x2eb2a: "\xc4\x03\U0002eb2a", // 𮬪
+ 0x2eb2b: "\xc4\x04\U0002eb2b", // 𮬫
+ 0x2eb2c: "\xc4\x04\U0002eb2c", // 𮬬
+ 0x2eb2d: "\xc4\x04\U0002eb2d", // 𮬭
+ 0x2eb2e: "\xc4\x04\U0002eb2e", // 𮬮
+ 0x2eb2f: "\xc4\x04\U0002eb2f", // 𮬯
+ 0x2eb30: "\xc4\x05\U0002eb30", // 𮬰
+ 0x2eb31: "\xc4\x05\U0002eb31", // 𮬱
+ 0x2eb32: "\xc4\x05\U0002eb32", // 𮬲
+ 0x2eb33: "\xc4\x06\U0002eb33", // 𮬳
+ 0x2eb34: "\xc4\x06\U0002eb34", // 𮬴
+ 0x2eb35: "\xc4\x06\U0002eb35", // 𮬵
+ 0x2eb36: "\xc4\x06\U0002eb36", // 𮬶
+ 0x2eb37: "\xc4\x06\U0002eb37", // 𮬷
+ 0x2eb38: "\xc4\x06\U0002eb38", // 𮬸
+ 0x2eb39: "\xc4\a\U0002eb39", // 𮬹
+ 0x2eb3a: "\xc4\a\U0002eb3a", // 𮬺
+ 0x2eb3b: "\xc4\a\U0002eb3b", // 𮬻
+ 0x2eb3c: "\xc4\b\U0002eb3c", // 𮬼
+ 0x2eb3d: "\xc4\b\U0002eb3d", // 𮬽
+ 0x2eb3e: "\xc4\b\U0002eb3e", // 𮬾
+ 0x2eb3f: "\xc4\b\U0002eb3f", // 𮬿
+ 0x2eb40: "\xc4\b\U0002eb40", // 𮭀
+ 0x2eb41: "\xc4\b\U0002eb41", // 𮭁
+ 0x2eb42: "\xc4\b\U0002eb42", // 𮭂
+ 0x2eb43: "\xc4\b\U0002eb43", // 𮭃
+ 0x2eb44: "\xc4\t\U0002eb44", // 𮭄
+ 0x2eb45: "\xc4\t\U0002eb45", // 𮭅
+ 0x2eb46: "\xc4\t\U0002eb46", // 𮭆
+ 0x2eb47: "\xc4\t\U0002eb47", // 𮭇
+ 0x2eb48: "\xc4\n\U0002eb48", // 𮭈
+ 0x2eb49: "\xc4\n\U0002eb49", // 𮭉
+ 0x2eb4a: "\xc4\n\U0002eb4a", // 𮭊
+ 0x2eb4b: "\xc4\n\U0002eb4b", // 𮭋
+ 0x2eb4c: "\xc4\n\U0002eb4c", // 𮭌
+ 0x2eb4d: "\xc4\n\U0002eb4d", // 𮭍
+ 0x2eb4e: "\xc4\n\U0002eb4e", // 𮭎
+ 0x2eb4f: "\xc4\n\U0002eb4f", // 𮭏
+ 0x2eb50: "\xc4\v\U0002eb50", // 𮭐
+ 0x2eb51: "\xc4\v\U0002eb51", // 𮭑
+ 0x2eb52: "\xc4\v\U0002eb52", // 𮭒
+ 0x2eb53: "\xc4\v\U0002eb53", // 𮭓
+ 0x2eb54: "\xc4\v\U0002eb54", // 𮭔
+ 0x2eb55: "\xc4\v\U0002eb55", // 𮭕
+ 0x2eb56: "\xc4\f\U0002eb56", // 𮭖
+ 0x2eb57: "\xc4\r\U0002eb57", // 𮭗
+ 0x2eb58: "\xc4\r\U0002eb58", // 𮭘
+ 0x2eb59: "\xc4\x0e\U0002eb59", // 𮭙
+ 0x2eb5a: "\xc4\x0e\U0002eb5a", // 𮭚
+ 0x2eb5b: "\xc4\x0f\U0002eb5b", // 𮭛
+ 0x2eb5c: "\xc4\x0f\U0002eb5c", // 𮭜
+ 0x2eb5d: "\xc4\x10\U0002eb5d", // 𮭝
+ 0x2eb5e: "\xc4\x10\U0002eb5e", // 𮭞
+ 0x2eb5f: "\xc4\x12\U0002eb5f", // 𮭟
+ 0x2eb60: "\xc4\x16\U0002eb60", // 𮭠
+ 0x2eb61: "\xc4\x04\U0002eb61", // 𮭡
+ 0x2eb62: "\xc4\x04\U0002eb62", // 𮭢
+ 0x2eb63: "\xc4\x04\U0002eb63", // 𮭣
+ 0x2eb64: "\xc4\x05\U0002eb64", // 𮭤
+ 0x2eb65: "\xc4\x06\U0002eb65", // 𮭥
+ 0x2eb66: "\xc4\a\U0002eb66", // 𮭦
+ 0x2eb67: "\xc4\a\U0002eb67", // 𮭧
+ 0x2eb68: "\xc4\n\U0002eb68", // 𮭨
+ 0x2eb69: "\xc4\n\U0002eb69", // 𮭩
+ 0x2eb6a: "\xc4\v\U0002eb6a", // 𮭪
+ 0x2eb6b: "\xc5\x05\U0002eb6b", // 𮭫
+ 0x2eb6c: "\xc5\a\U0002eb6c", // 𮭬
+ 0x2eb6d: "\xc5\b\U0002eb6d", // 𮭭
+ 0x2eb6e: "\xc5\b\U0002eb6e", // 𮭮
+ 0x2eb6f: "\xc5\t\U0002eb6f", // 𮭯
+ 0x2eb70: "\xc5\x04\U0002eb70", // 𮭰
+ 0x2eb71: "\xc6\x00\U0002eb71", // 𮭱
+ 0x2eb72: "\xc6\x03\U0002eb72", // 𮭲
+ 0x2eb73: "\xc6\x05\U0002eb73", // 𮭳
+ 0x2eb74: "\xc6\x06\U0002eb74", // 𮭴
+ 0x2eb75: "\xc6\a\U0002eb75", // 𮭵
+ 0x2eb76: "\xc6\b\U0002eb76", // 𮭶
+ 0x2eb77: "\xc6\b\U0002eb77", // 𮭷
+ 0x2eb78: "\xc6\t\U0002eb78", // 𮭸
+ 0x2eb79: "\xc6\n\U0002eb79", // 𮭹
+ 0x2eb7a: "\xc6\n\U0002eb7a", // 𮭺
+ 0x2eb7b: "\xc7\x05\U0002eb7b", // 𮭻
+ 0x2eb7c: "\xc7\b\U0002eb7c", // 𮭼
+ 0x2eb7d: "\xc7\b\U0002eb7d", // 𮭽
+ 0x2eb7e: "\xc7\t\U0002eb7e", // 𮭾
+ 0x2eb7f: "\xc7\n\U0002eb7f", // 𮭿
+ 0x2eb80: "\xc7\n\U0002eb80", // 𮮀
+ 0x2eb81: "\xc7\v\U0002eb81", // 𮮁
+ 0x2eb82: "\xc7\x11\U0002eb82", // 𮮂
+ 0x2eb83: "\xc7\x02\U0002eb83", // 𮮃
+ 0x2eb84: "\xc7\x04\U0002eb84", // 𮮄
+ 0x2eb85: "\xc7\x04\U0002eb85", // 𮮅
+ 0x2eb86: "\xc7\x05\U0002eb86", // 𮮆
+ 0x2eb87: "\xc7\x06\U0002eb87", // 𮮇
+ 0x2eb88: "\xc8\x04\U0002eb88", // 𮮈
+ 0x2eb89: "\xc8\x04\U0002eb89", // 𮮉
+ 0x2eb8a: "\xc8\x04\U0002eb8a", // 𮮊
+ 0x2eb8b: "\xc8\a\U0002eb8b", // 𮮋
+ 0x2eb8c: "\xc8\f\U0002eb8c", // 𮮌
+ 0x2eb8d: "\xc8\x13\U0002eb8d", // 𮮍
+ 0x2eb8e: "\xc8\x16\U0002eb8e", // 𮮎
+ 0x2eb8f: "\xc9\x05\U0002eb8f", // 𮮏
+ 0x2eb90: "\xca\x00\U0002eb90", // 𮮐
+ 0x2eb91: "\xca\x00\U0002eb91", // 𮮑
+ 0x2eb92: "\xca\x06\U0002eb92", // 𮮒
+ 0x2eb93: "\xca\r\U0002eb93", // 𮮓
+ 0x2eb94: "\xcb\x04\U0002eb94", // 𮮔
+ 0x2eb95: "\xcb\x04\U0002eb95", // 𮮕
+ 0x2eb96: "\xcb\x05\U0002eb96", // 𮮖
+ 0x2eb97: "\xcb\x06\U0002eb97", // 𮮗
+ 0x2eb98: "\xcb\x06\U0002eb98", // 𮮘
+ 0x2eb99: "\xcb\b\U0002eb99", // 𮮙
+ 0x2eb9a: "\xcb\b\U0002eb9a", // 𮮚
+ 0x2eb9b: "\xcb\b\U0002eb9b", // 𮮛
+ 0x2eb9c: "\xcb\t\U0002eb9c", // 𮮜
+ 0x2eb9d: "\xcb\v\U0002eb9d", // 𮮝
+ 0x2eb9e: "\xcb\x0e\U0002eb9e", // 𮮞
+ 0x2eb9f: "\xcb\x0f\U0002eb9f", // 𮮟
+ 0x2eba0: "\xcc\x00\U0002eba0", // 𮮠
+ 0x2eba1: "\xcd\x02\U0002eba1", // 𮮡
+ 0x2eba2: "\xcd\x04\U0002eba2", // 𮮢
+ 0x2eba3: "\xcd\x06\U0002eba3", // 𮮣
+ 0x2eba4: "\xcd\a\U0002eba4", // 𮮤
+ 0x2eba5: "\xce\x03\U0002eba5", // 𮮥
+ 0x2eba6: "\xcf\x00\U0002eba6", // 𮮦
+ 0x2eba7: "\xcf\x05\U0002eba7", // 𮮧
+ 0x2eba8: "\xcf\x06\U0002eba8", // 𮮨
+ 0x2eba9: "\xcf\a\U0002eba9", // 𮮩
+ 0x2ebaa: "\xcf\f\U0002ebaa", // 𮮪
+ 0x2ebab: "\xcf\f\U0002ebab", // 𮮫
+ 0x2ebac: "\xd0\x04\U0002ebac", // 𮮬
+ 0x2ebad: "\xd0\x05\U0002ebad", // 𮮭
+ 0x2ebae: "\xd0\b\U0002ebae", // 𮮮
+ 0x2ebaf: "\xd0\f\U0002ebaf", // 𮮯
+ 0x2ebb0: "\xd1\x00\U0002ebb0", // 𮮰
+ 0x2ebb1: "\xd1\x00\U0002ebb1", // 𮮱
+ 0x2ebb2: "\xd1\x00\U0002ebb2", // 𮮲
+ 0x2ebb3: "\xd1\x00\U0002ebb3", // 𮮳
+ 0x2ebb4: "\xd1\x00\U0002ebb4", // 𮮴
+ 0x2ebb5: "\xd1\x00\U0002ebb5", // 𮮵
+ 0x2ebb6: "\xd1\x03\U0002ebb6", // 𮮶
+ 0x2ebb7: "\xd1\x06\U0002ebb7", // 𮮷
+ 0x2ebb8: "\xd1\f\U0002ebb8", // 𮮸
+ 0x2ebb9: "\xd1\x11\U0002ebb9", // 𮮹
+ 0x2ebba: "\xd2\x00\U0002ebba", // 𮮺
+ 0x2ebbb: "\xd2\x00\U0002ebbb", // 𮮻
+ 0x2ebbc: "\xd2\x00\U0002ebbc", // 𮮼
+ 0x2ebbd: "\xd3\x00\U0002ebbd", // 𮮽
+ 0x2ebbe: "\xd3\x02\U0002ebbe", // 𮮾
+ 0x2ebbf: "\xd3\x03\U0002ebbf", // 𮮿
+ 0x2ebc0: "\xd3\x04\U0002ebc0", // 𮯀
+ 0x2ebc1: "\xd3\x04\U0002ebc1", // 𮯁
+ 0x2ebc2: "\xd3\x05\U0002ebc2", // 𮯂
+ 0x2ebc3: "\xd3\x05\U0002ebc3", // 𮯃
+ 0x2ebc4: "\xd3\x06\U0002ebc4", // 𮯄
+ 0x2ebc5: "\xd3\x06\U0002ebc5", // 𮯅
+ 0x2ebc6: "\xd3\x06\U0002ebc6", // 𮯆
+ 0x2ebc7: "\xd3\a\U0002ebc7", // 𮯇
+ 0x2ebc8: "\xd3\b\U0002ebc8", // 𮯈
+ 0x2ebc9: "\xd3\b\U0002ebc9", // 𮯉
+ 0x2ebca: "\xd3\b\U0002ebca", // 𮯊
+ 0x2ebcb: "\xd3\t\U0002ebcb", // 𮯋
+ 0x2ebcc: "\xd3\t\U0002ebcc", // 𮯌
+ 0x2ebcd: "\xd3\t\U0002ebcd", // 𮯍
+ 0x2ebce: "\xd3\t\U0002ebce", // 𮯎
+ 0x2ebcf: "\xd3\n\U0002ebcf", // 𮯏
+ 0x2ebd0: "\xd3\n\U0002ebd0", // 𮯐
+ 0x2ebd1: "\xd3\v\U0002ebd1", // 𮯑
+ 0x2ebd2: "\xd3\v\U0002ebd2", // 𮯒
+ 0x2ebd3: "\xd3\v\U0002ebd3", // 𮯓
+ 0x2ebd4: "\xd3\f\U0002ebd4", // 𮯔
+ 0x2ebd5: "\xd3\f\U0002ebd5", // 𮯕
+ 0x2ebd6: "\xd3\f\U0002ebd6", // 𮯖
+ 0x2ebd7: "\xd3\r\U0002ebd7", // 𮯗
+ 0x2ebd8: "\xd3\x11\U0002ebd8", // 𮯘
+ 0x2ebd9: "\xd3\x05\U0002ebd9", // 𮯙
+ 0x2ebda: "\xd4\x06\U0002ebda", // 𮯚
+ 0x2ebdb: "\xd5\x00\U0002ebdb", // 𮯛
+ 0x2ebdc: "\xd5\x00\U0002ebdc", // 𮯜
+ 0x2ebdd: "\xd5\x00\U0002ebdd", // 𮯝
+ 0x2ebde: "\xd5\x00\U0002ebde", // 𮯞
+ 0x2ebdf: "\xd5\x00\U0002ebdf", // 𮯟
+ 0x2ebe0: "\xd6\b\U0002ebe0", // 𮯠
+ 0x2f800: "\x01\x06\U0002f800", // 丽
+ 0x2f801: "\x03\x02\U0002f801", // 丸
+ 0x2f802: "\x04\x00\U0002f802", // 乁
+ 0x2f803: "\a\x04\U0002f803", // 𠄢
+ 0x2f804: "\t\x05\U0002f804", // 你
+ 0x2f805: "\t\a\U0002f805", // 侮
+ 0x2f806: "\t\a\U0002f806", // 侻
+ 0x2f807: "\t\b\U0002f807", // 倂
+ 0x2f808: "\t\t\U0002f808", // 偺
+ 0x2f809: "\t\n\U0002f809", // 備
+ 0x2f80a: "\t\f\U0002f80a", // 僧
+ 0x2f80b: "\t\f\U0002f80b", // 像
+ 0x2f80c: "\t\x0f\U0002f80c", // 㒞
+ 0x2f80d: "\x10\x04\U0002f80d", // 𠘺
+ 0x2f80e: "\n\x06\U0002f80e", // 免
+ 0x2f80f: "\n\x06\U0002f80f", // 兔
+ 0x2f810: "\n\x13\U0002f810", // 兤
+ 0x2f811: "\f\x06\U0002f811", // 具
+ 0x2f812: "\f\t\U0002f812", // 𠔜
+ 0x2f813: "\f\x12\U0002f813", // 㒹
+ 0x2f814: "\v\x02\U0002f814", // 內
+ 0x2f815: "\r\x04\U0002f815", // 再
+ 0x2f816: "\r\x04\U0002f816", // 𠕋
+ 0x2f817: "\x0e\x02\U0002f817", // 冗
+ 0x2f818: "\x0e\b\U0002f818", // 冤
+ 0x2f819: "\t\x02\U0002f819", // 仌
+ 0x2f81a: "\x0f\x03\U0002f81a", // 冬
+ 0x2f81b: "\x0f\x05\U0002f81b", // 况
+ 0x2f81c: "\xae\t\U0002f81c", // 𩇟
+ 0x2f81d: "\x11\x00\U0002f81d", // 凵
+ 0x2f81e: "\x12\x01\U0002f81e", // 刃
+ 0x2f81f: "\x12\x05\U0002f81f", // 㓟
+ 0x2f820: "\x12\x06\U0002f820", // 刻
+ 0x2f821: "\x12\a\U0002f821", // 剆
+ 0x2f822: "\x12\n\U0002f822", // 割
+ 0x2f823: "\x12\v\U0002f823", // 剷
+ 0x2f824: "\x13\x04\U0002f824", // 㔕
+ 0x2f825: "\x13\a\U0002f825", // 勇
+ 0x2f826: "\x13\a\U0002f826", // 勉
+ 0x2f827: "\x13\v\U0002f827", // 勤
+ 0x2f828: "\x14\x01\U0002f828", // 勺
+ 0x2f829: "\x14\x03\U0002f829", // 包
+ 0x2f82a: "\x14\x03\U0002f82a", // 匆
+ 0x2f82b: "\x15\x03\U0002f82b", // 北
+ 0x2f82c: "\x18\x03\U0002f82c", // 卉
+ 0x2f82d: "\x18\x06\U0002f82d", // 卑
+ 0x2f82e: "\x18\n\U0002f82e", // 博
+ 0x2f82f: "\x1a\x05\U0002f82f", // 即
+ 0x2f830: "\x1a\a\U0002f830", // 卽
+ 0x2f831: "\x1a\t\U0002f831", // 卿
+ 0x2f832: "\x1a\t\U0002f832", // 卿
+ 0x2f833: "\x1a\t\U0002f833", // 卿
+ 0x2f834: "\x1b\x02\U0002f834", // 𠨬
+ 0x2f835: "\x1b\x04\U0002f835", // 灰
+ 0x2f836: "\x1d\x02\U0002f836", // 及
+ 0x2f837: "\x1d\b\U0002f837", // 叟
+ 0x2f838: "\x1d\t\U0002f838", // 𠭣
+ 0x2f839: "\x1e\x02\U0002f839", // 叫
+ 0x2f83a: "\x1e\x02\U0002f83a", // 叱
+ 0x2f83b: "\x1e\x03\U0002f83b", // 吆
+ 0x2f83c: "\x1e\x06\U0002f83c", // 咞
+ 0x2f83d: "\x1e\x04\U0002f83d", // 吸
+ 0x2f83e: "\x1e\x04\U0002f83e", // 呈
+ 0x2f83f: "\x1e\x05\U0002f83f", // 周
+ 0x2f840: "\x1e\x06\U0002f840", // 咢
+ 0x2f841: "\x1e\a\U0002f841", // 哶
+ 0x2f842: "\x1e\a\U0002f842", // 唐
+ 0x2f843: "\x1e\b\U0002f843", // 啓
+ 0x2f844: "\x1e\b\U0002f844", // 啣
+ 0x2f845: "\x1e\t\U0002f845", // 善
+ 0x2f846: "\x1e\t\U0002f846", // 善
+ 0x2f847: "\x1e\t\U0002f847", // 喙
+ 0x2f848: "\x1e\t\U0002f848", // 喫
+ 0x2f849: "\x1e\t\U0002f849", // 喳
+ 0x2f84a: "\x1e\n\U0002f84a", // 嗂
+ 0x2f84b: "\x1f\v\U0002f84b", // 圖
+ 0x2f84c: "\x1e\v\U0002f84c", // 嘆
+ 0x2f84d: "\x1f\v\U0002f84d", // 圗
+ 0x2f84e: "\x1e\v\U0002f84e", // 噑
+ 0x2f84f: "\x1e\f\U0002f84f", // 噴
+ 0x2f850: "\x12\x02\U0002f850", // 切
+ 0x2f851: "!\x03\U0002f851", // 壮
+ 0x2f852: " \x06\U0002f852", // 城
+ 0x2f853: " \b\U0002f853", // 埴
+ 0x2f854: " \b\U0002f854", // 堍
+ 0x2f855: " \x06\U0002f855", // 型
+ 0x2f856: " \t\U0002f856", // 堲
+ 0x2f857: " \t\U0002f857", // 報
+ 0x2f858: " \f\U0002f858", // 墬
+ 0x2f859: " \x10\U0002f859", // 𡓤
+ 0x2f85a: "!\x04\U0002f85a", // 売
+ 0x2f85b: "!\b\U0002f85b", // 壷
+ 0x2f85c: "\"\x04\U0002f85c", // 夆
+ 0x2f85d: "$\x03\U0002f85d", // 多
+ 0x2f85e: "$\v\U0002f85e", // 夢
+ 0x2f85f: "%\t\U0002f85f", // 奢
+ 0x2f860: "&\x02\U0002f860", // 𡚨
+ 0x2f861: "&\x05\U0002f861", // 𡛪
+ 0x2f862: "&\a\U0002f862", // 姬
+ 0x2f863: "&\a\U0002f863", // 娛
+ 0x2f864: "&\a\U0002f864", // 娧
+ 0x2f865: "&\x06\U0002f865", // 姘
+ 0x2f866: "&\b\U0002f866", // 婦
+ 0x2f867: "&\t\U0002f867", // 㛮
+ 0x2f868: "&\t\U0002f868", // 㛼
+ 0x2f869: "&\f\U0002f869", // 嬈
+ 0x2f86a: "&\x10\U0002f86a", // 嬾
+ 0x2f86b: "(\x03\U0002f86b", // 嬾
+ 0x2f86c: "(\x03\U0002f86c", // 𡧈
+ 0x2f86d: "(\b\U0002f86d", // 寃
+ 0x2f86e: "(\n\U0002f86e", // 寘
+ 0x2f86f: "(\v\U0002f86f", // 寧
+ 0x2f870: "(\x10\U0002f870", // 寳
+ 0x2f871: "(\x17\U0002f871", // 𡬘
+ 0x2f872: ")\x04\U0002f872", // 寿
+ 0x2f873: ")\x06\U0002f873", // 将
+ 0x2f874: "*\x03\U0002f874", // 当
+ 0x2f875: "+\x00\U0002f875", // 尢
+ 0x2f876: "+\x06\U0002f876", // 㞁
+ 0x2f877: ",\t\U0002f877", // 屠
+ 0x2f878: "-\x00\U0002f878", // 屮
+ 0x2f879: ".\x05\U0002f879", // 峀
+ 0x2f87a: ".\x06\U0002f87a", // 岍
+ 0x2f87b: ".\a\U0002f87b", // 𡷤
+ 0x2f87c: ".\t\U0002f87c", // 嵃
+ 0x2f87d: ".\a\U0002f87d", // 𡷦
+ 0x2f87e: ".\n\U0002f87e", // 嵮
+ 0x2f87f: ".\n\U0002f87f", // 嵫
+ 0x2f880: ".\v\U0002f880", // 嵼
+ 0x2f881: "/\x04\U0002f881", // 巡
+ 0x2f882: "/\b\U0002f882", // 巢
+ 0x2f883: "1\x02\U0002f883", // 㠯
+ 0x2f884: "1\t\U0002f884", // 巽
+ 0x2f885: "2\a\U0002f885", // 帨
+ 0x2f886: "2\t\U0002f886", // 帽
+ 0x2f887: "2\r\U0002f887", // 幩
+ 0x2f888: "2\r\U0002f888", // 㡢
+ 0x2f889: "2\x15\U0002f889", // 𢆃
+ 0x2f88a: "5\x06\U0002f88a", // 㡼
+ 0x2f88b: "5\b\U0002f88b", // 庰
+ 0x2f88c: "5\b\U0002f88c", // 庳
+ 0x2f88d: "5\b\U0002f88d", // 庶
+ 0x2f88e: "5\t\U0002f88e", // 廊
+ 0x2f88f: "\xc8\x03\U0002f88f", // 𪎒
+ 0x2f890: "7\x00\U0002f890", // 廾
+ 0x2f891: "7\x03\U0002f891", // 𢌱
+ 0x2f892: "7\x03\U0002f892", // 𢌱
+ 0x2f893: "\x86\x04\U0002f893", // 舁
+ 0x2f894: "9\x05\U0002f894", // 弢
+ 0x2f895: "9\x05\U0002f895", // 弢
+ 0x2f896: ":\x05\U0002f896", // 㣇
+ 0x2f897: "H\f\U0002f897", // 𣊸
+ 0x2f898: "x\x10\U0002f898", // 𦇚
+ 0x2f899: ";\x04\U0002f899", // 形
+ 0x2f89a: ";\b\U0002f89a", // 彫
+ 0x2f89b: "<\a\U0002f89b", // 㣣
+ 0x2f89c: "<\t\U0002f89c", // 徚
+ 0x2f89d: "=\x03\U0002f89d", // 忍
+ 0x2f89e: "=\x03\U0002f89e", // 志
+ 0x2f89f: "=\x04\U0002f89f", // 忹
+ 0x2f8a0: "=\a\U0002f8a0", // 悁
+ 0x2f8a1: "=\x06\U0002f8a1", // 㤺
+ 0x2f8a2: "=\x06\U0002f8a2", // 㤜
+ 0x2f8a3: "=\a\U0002f8a3", // 悔
+ 0x2f8a4: "=\b\U0002f8a4", // 𢛔
+ 0x2f8a5: "=\b\U0002f8a5", // 惇
+ 0x2f8a6: "=\n\U0002f8a6", // 慈
+ 0x2f8a7: "=\n\U0002f8a7", // 慌
+ 0x2f8a8: "=\n\U0002f8a8", // 慎
+ 0x2f8a9: "=\n\U0002f8a9", // 慌
+ 0x2f8aa: "=\v\U0002f8aa", // 慺
+ 0x2f8ab: "=\f\U0002f8ab", // 憎
+ 0x2f8ac: "=\f\U0002f8ac", // 憲
+ 0x2f8ad: "=\f\U0002f8ad", // 憤
+ 0x2f8ae: "=\f\U0002f8ae", // 憯
+ 0x2f8af: "=\x0e\U0002f8af", // 懞
+ 0x2f8b0: "=\x0f\U0002f8b0", // 懲
+ 0x2f8b1: "=\x10\U0002f8b1", // 懶
+ 0x2f8b2: ">\x03\U0002f8b2", // 成
+ 0x2f8b3: ">\a\U0002f8b3", // 戛
+ 0x2f8b4: "@\x03\U0002f8b4", // 扝
+ 0x2f8b5: "@\x05\U0002f8b5", // 抱
+ 0x2f8b6: "@\x05\U0002f8b6", // 拔
+ 0x2f8b7: "@\a\U0002f8b7", // 捐
+ 0x2f8b8: "@\x06\U0002f8b8", // 𢬌
+ 0x2f8b9: "@\a\U0002f8b9", // 挽
+ 0x2f8ba: "@\x06\U0002f8ba", // 拼
+ 0x2f8bb: "@\b\U0002f8bb", // 捨
+ 0x2f8bc: "@\b\U0002f8bc", // 掃
+ 0x2f8bd: "@\t\U0002f8bd", // 揤
+ 0x2f8be: "@\t\U0002f8be", // 𢯱
+ 0x2f8bf: "@\n\U0002f8bf", // 搢
+ 0x2f8c0: "@\v\U0002f8c0", // 揅
+ 0x2f8c1: "@\b\U0002f8c1", // 掩
+ 0x2f8c2: "@\v\U0002f8c2", // 㨮
+ 0x2f8c3: "@\v\U0002f8c3", // 摩
+ 0x2f8c4: "@\v\U0002f8c4", // 摾
+ 0x2f8c5: "@\f\U0002f8c5", // 撝
+ 0x2f8c6: "@\v\U0002f8c6", // 摷
+ 0x2f8c7: "@\x10\U0002f8c7", // 㩬
+ 0x2f8c8: "B\a\U0002f8c8", // 敏
+ 0x2f8c9: "B\t\U0002f8c9", // 敬
+ 0x2f8ca: "B\r\U0002f8ca", // 𣀊
+ 0x2f8cb: "G\a\U0002f8cb", // 旣
+ 0x2f8cc: "I\x06\U0002f8cc", // 書
+ 0x2f8cd: "H\x06\U0002f8cd", // 晉
+ 0x2f8ce: "H\f\U0002f8ce", // 㬙
+ 0x2f8cf: "H\b\U0002f8cf", // 暑
+ 0x2f8d0: "H\t\U0002f8d0", // 㬈
+ 0x2f8d1: "H\x05\U0002f8d1", // 㫤
+ 0x2f8d2: "\r\a\U0002f8d2", // 冒
+ 0x2f8d3: "\r\t\U0002f8d3", // 冕
+ 0x2f8d4: "I\b\U0002f8d4", // 最
+ 0x2f8d5: "H\n\U0002f8d5", // 暜
+ 0x2f8d6: "\x82\x04\U0002f8d6", // 肭
+ 0x2f8d7: "\x82\x04\U0002f8d7", // 䏙
+ 0x2f8d8: "J\a\U0002f8d8", // 朗
+ 0x2f8d9: "J\a\U0002f8d9", // 望
+ 0x2f8da: "J\t\U0002f8da", // 朡
+ 0x2f8db: "K\x03\U0002f8db", // 杞
+ 0x2f8dc: "K\x03\U0002f8dc", // 杓
+ 0x2f8dd: "K\x03\U0002f8dd", // 𣏃
+ 0x2f8de: "K\x04\U0002f8de", // 㭉
+ 0x2f8df: "K\x05\U0002f8df", // 柺
+ 0x2f8e0: "K\x04\U0002f8e0", // 枅
+ 0x2f8e1: "K\x06\U0002f8e1", // 桒
+ 0x2f8e2: "K\a\U0002f8e2", // 梅
+ 0x2f8e3: "K\x06\U0002f8e3", // 𣑭
+ 0x2f8e4: "K\a\U0002f8e4", // 梎
+ 0x2f8e5: "K\x06\U0002f8e5", // 栟
+ 0x2f8e6: "K\b\U0002f8e6", // 椔
+ 0x2f8e7: "K\t\U0002f8e7", // 㮝
+ 0x2f8e8: "K\t\U0002f8e8", // 楂
+ 0x2f8e9: "K\n\U0002f8e9", // 榣
+ 0x2f8ea: "K\v\U0002f8ea", // 槪
+ 0x2f8eb: "K\r\U0002f8eb", // 檨
+ 0x2f8ec: "K\f\U0002f8ec", // 𣚣
+ 0x2f8ed: "K\x0f\U0002f8ed", // 櫛
+ 0x2f8ee: "K\x12\U0002f8ee", // 㰘
+ 0x2f8ef: "L\x02\U0002f8ef", // 次
+ 0x2f8f0: "L\x06\U0002f8f0", // 𣢧
+ 0x2f8f1: "L\f\U0002f8f1", // 歔
+ 0x2f8f2: "L\x15\U0002f8f2", // 㱎
+ 0x2f8f3: "M\t\U0002f8f3", // 歲
+ 0x2f8f4: "N\n\U0002f8f4", // 殟
+ 0x2f8f5: "O\a\U0002f8f5", // 殺
+ 0x2f8f6: "O\a\U0002f8f6", // 殻
+ 0x2f8f7: "O\a\U0002f8f7", // 𣪍
+ 0x2f8f8: "-\x05\U0002f8f8", // 𡴋
+ 0x2f8f9: "P\n\U0002f8f9", // 𣫺
+ 0x2f8fa: "U\x03\U0002f8fa", // 汎
+ 0x2f8fb: "U\x05\U0002f8fb", // 𣲼
+ 0x2f8fc: "U\x05\U0002f8fc", // 沿
+ 0x2f8fd: "U\x05\U0002f8fd", // 泍
+ 0x2f8fe: "U\x04\U0002f8fe", // 汧
+ 0x2f8ff: "U\a\U0002f8ff", // 洖
+ 0x2f900: "U\x06\U0002f900", // 派
+ 0x2f901: "U\a\U0002f901", // 海
+ 0x2f902: "U\x06\U0002f902", // 流
+ 0x2f903: "U\a\U0002f903", // 浩
+ 0x2f904: "U\a\U0002f904", // 浸
+ 0x2f905: "U\a\U0002f905", // 涅
+ 0x2f906: "U\a\U0002f906", // 𣴞
+ 0x2f907: "U\b\U0002f907", // 洴
+ 0x2f908: "U\t\U0002f908", // 港
+ 0x2f909: "U\t\U0002f909", // 湮
+ 0x2f90a: "U\n\U0002f90a", // 㴳
+ 0x2f90b: "U\t\U0002f90b", // 滋
+ 0x2f90c: "U\n\U0002f90c", // 滇
+ 0x2f90d: "U\v\U0002f90d", // 𣻑
+ 0x2f90e: "U\b\U0002f90e", // 淹
+ 0x2f90f: "U\f\U0002f90f", // 潮
+ 0x2f910: "U\f\U0002f910", // 𣽞
+ 0x2f911: "U\f\U0002f911", // 𣾎
+ 0x2f912: "U\r\U0002f912", // 濆
+ 0x2f913: "U\x11\U0002f913", // 瀹
+ 0x2f914: "U\x10\U0002f914", // 瀞
+ 0x2f915: "U\x10\U0002f915", // 瀛
+ 0x2f916: "U\x12\U0002f916", // 㶖
+ 0x2f917: "U\x12\U0002f917", // 灊
+ 0x2f918: "V\x03\U0002f918", // 災
+ 0x2f919: "V\x03\U0002f919", // 灷
+ 0x2f91a: "V\x05\U0002f91a", // 炭
+ 0x2f91b: "\f\n\U0002f91b", // 𠔥
+ 0x2f91c: "V\t\U0002f91c", // 煅
+ 0x2f91d: "V\b\U0002f91d", // 𤉣
+ 0x2f91e: "V\v\U0002f91e", // 熜
+ 0x2f91f: "V\f\U0002f91f", // 𤎫
+ 0x2f920: "V\x19\U0002f920", // 爨
+ 0x2f921: "W\x0e\U0002f921", // 爵
+ 0x2f922: "[\t\U0002f922", // 牐
+ 0x2f923: "\\\x06\U0002f923", // 𤘈
+ 0x2f924: "]\b\U0002f924", // 犀
+ 0x2f925: "]\n\U0002f925", // 犕
+ 0x2f926: "^\x04\U0002f926", // 𤜵
+ 0x2f927: "^\n\U0002f927", // 𤠔
+ 0x2f928: "^\x10\U0002f928", // 獺
+ 0x2f929: "`\x00\U0002f929", // 王
+ 0x2f92a: "`\x03\U0002f92a", // 㺬
+ 0x2f92b: "`\x04\U0002f92b", // 玥
+ 0x2f92c: "`\x05\U0002f92c", // 㺸
+ 0x2f92d: "`\x05\U0002f92d", // 㺸
+ 0x2f92e: "`\t\U0002f92e", // 瑇
+ 0x2f92f: "`\t\U0002f92f", // 瑜
+ 0x2f930: "`\n\U0002f930", // 瑱
+ 0x2f931: "`\v\U0002f931", // 璅
+ 0x2f932: "`\x0f\U0002f932", // 瓊
+ 0x2f933: "b\x04\U0002f933", // 㼛
+ 0x2f934: "d\a\U0002f934", // 甤
+ 0x2f935: "f\x04\U0002f935", // 𤰶
+ 0x2f936: "f\x03\U0002f936", // 甾
+ 0x2f937: "f\b\U0002f937", // 𤲒
+ 0x2f938: "f\a\U0002f938", // 異
+ 0x2f939: "3\n\U0002f939", // 𢆟
+ 0x2f93a: "h\t\U0002f93a", // 瘐
+ 0x2f93b: "j\f\U0002f93b", // 𤾡
+ 0x2f93c: "j\x10\U0002f93c", // 𤾸
+ 0x2f93d: "l\x03\U0002f93d", // 𥁄
+ 0x2f93e: "l\x04\U0002f93e", // 㿼
+ 0x2f93f: "l\v\U0002f93f", // 䀈
+ 0x2f940: "m\x03\U0002f940", // 直
+ 0x2f941: "m\x03\U0002f941", // 𥃳
+ 0x2f942: "m\x03\U0002f942", // 𥃲
+ 0x2f943: "m\x04\U0002f943", // 𥄙
+ 0x2f944: "m\x05\U0002f944", // 𥄳
+ 0x2f945: "m\x05\U0002f945", // 眞
+ 0x2f946: "m\x05\U0002f946", // 真
+ 0x2f947: "m\x05\U0002f947", // 真
+ 0x2f948: "m\a\U0002f948", // 睊
+ 0x2f949: "m\a\U0002f949", // 䀹
+ 0x2f94a: "m\n\U0002f94a", // 瞋
+ 0x2f94b: "m\b\U0002f94b", // 䁆
+ 0x2f94c: "p\x01\U0002f94c", // 䂖
+ 0x2f94d: "p\x03\U0002f94d", // 𥐝
+ 0x2f94e: "p\x06\U0002f94e", // 硎
+ 0x2f94f: "p\b\U0002f94f", // 碌
+ 0x2f950: "p\n\U0002f950", // 磌
+ 0x2f951: "p\f\U0002f951", // 䃣
+ 0x2f952: "q\x04\U0002f952", // 𥘦
+ 0x2f953: "q\x05\U0002f953", // 祖
+ 0x2f954: "q\b\U0002f954", // 𥚚
+ 0x2f955: "q\n\U0002f955", // 𥛅
+ 0x2f956: "q\t\U0002f956", // 福
+ 0x2f957: "s\x05\U0002f957", // 秫
+ 0x2f958: "s\x04\U0002f958", // 䄯
+ 0x2f959: "s\n\U0002f959", // 穀
+ 0x2f95a: "s\v\U0002f95a", // 穊
+ 0x2f95b: "s\v\U0002f95b", // 穏
+ 0x2f95c: "t\a\U0002f95c", // 𥥼
+ 0x2f95d: "u\n\U0002f95d", // 𥪧
+ 0x2f95e: "u\n\U0002f95e", // 𥪧
+ 0x2f95f: "u\v\U0002f95f", // 竮
+ 0x2f960: "v\b\U0002f960", // 䈂
+ 0x2f961: "v\b\U0002f961", // 𥮫
+ 0x2f962: "v\t\U0002f962", // 篆
+ 0x2f963: "v\n\U0002f963", // 築
+ 0x2f964: "v\t\U0002f964", // 䈧
+ 0x2f965: "v\v\U0002f965", // 𥲀
+ 0x2f966: "w\n\U0002f966", // 糒
+ 0x2f967: "w\v\U0002f967", // 䊠
+ 0x2f968: "w\v\U0002f968", // 糨
+ 0x2f969: "w\f\U0002f969", // 糣
+ 0x2f96a: "x\x03\U0002f96a", // 紀
+ 0x2f96b: "x\x02\U0002f96b", // 𥾆
+ 0x2f96c: "x\x06\U0002f96c", // 絣
+ 0x2f96d: "x\t\U0002f96d", // 䌁
+ 0x2f96e: "x\b\U0002f96e", // 緇
+ 0x2f96f: "x\t\U0002f96f", // 縂
+ 0x2f970: "x\v\U0002f970", // 繅
+ 0x2f971: "x\x13\U0002f971", // 䌴
+ 0x2f972: "y\x04\U0002f972", // 𦈨
+ 0x2f973: "y\t\U0002f973", // 𦉇
+ 0x2f974: "z\a\U0002f974", // 䍙
+ 0x2f975: "z\b\U0002f975", // 𦋙
+ 0x2f976: "z\v\U0002f976", // 罺
+ 0x2f977: "z\x13\U0002f977", // 𦌾
+ 0x2f978: "{\x05\U0002f978", // 羕
+ 0x2f979: "|\f\U0002f979", // 翺
+ 0x2f97a: "}\x04\U0002f97a", // 者
+ 0x2f97b: "~\t\U0002f97b", // 𦓚
+ 0x2f97c: "\u007f\f\U0002f97c", // 𦔣
+ 0x2f97d: "\x80\x06\U0002f97d", // 聠
+ 0x2f97e: "\x80\t\U0002f97e", // 𦖨
+ 0x2f97f: "\x80\v\U0002f97f", // 聰
+ 0x2f980: "J\x03\U0002f980", // 𣍟
+ 0x2f981: "\x82\x04\U0002f981", // 䏕
+ 0x2f982: "\x82\x04\U0002f982", // 育
+ 0x2f983: "\x82\x06\U0002f983", // 脃
+ 0x2f984: "\x82\b\U0002f984", // 䐋
+ 0x2f985: "\x82\b\U0002f985", // 脾
+ 0x2f986: "&\n\U0002f986", // 媵
+ 0x2f987: "\x82\n\U0002f987", // 𦞧
+ 0x2f988: "\x82\n\U0002f988", // 𦞵
+ 0x2f989: "J\v\U0002f989", // 𣎓
+ 0x2f98a: "J\r\U0002f98a", // 𣎜
+ 0x2f98b: "\x86\x04\U0002f98b", // 舁
+ 0x2f98c: "\x86\x06\U0002f98c", // 舄
+ 0x2f98d: "\xa0\x06\U0002f98d", // 辞
+ 0x2f98e: "\x89\x06\U0002f98e", // 䑫
+ 0x2f98f: "\x8c\x03\U0002f98f", // 芑
+ 0x2f990: "\x8c\x03\U0002f990", // 芋
+ 0x2f991: "\x8c\x04\U0002f991", // 芝
+ 0x2f992: "\x13\x05\U0002f992", // 劳
+ 0x2f993: "\x8c\x04\U0002f993", // 花
+ 0x2f994: "\x8c\x04\U0002f994", // 芳
+ 0x2f995: "\x8c\x04\U0002f995", // 芽
+ 0x2f996: "\x8c\x05\U0002f996", // 苦
+ 0x2f997: "\x8c\x05\U0002f997", // 𦬼
+ 0x2f998: "\x8c\x05\U0002f998", // 若
+ 0x2f999: "\x8c\a\U0002f999", // 茝
+ 0x2f99a: "\x8c\x06\U0002f99a", // 荣
+ 0x2f99b: "\x8c\t\U0002f99b", // 莭
+ 0x2f99c: "\x8c\a\U0002f99c", // 茣
+ 0x2f99d: "\x8c\x06\U0002f99d", // 莽
+ 0x2f99e: "\x8c\b\U0002f99e", // 菧
+ 0x2f99f: "\x8c\b\U0002f99f", // 著
+ 0x2f9a0: "\x8c\b\U0002f9a0", // 荓
+ 0x2f9a1: "\x8c\b\U0002f9a1", // 菊
+ 0x2f9a2: "\x8c\b\U0002f9a2", // 菌
+ 0x2f9a3: "\x8c\b\U0002f9a3", // 菜
+ 0x2f9a4: "\x8c\b\U0002f9a4", // 𦰶
+ 0x2f9a5: "\x8c\n\U0002f9a5", // 𦵫
+ 0x2f9a6: "\x8c\t\U0002f9a6", // 𦳕
+ 0x2f9a7: "\x8c\v\U0002f9a7", // 䔫
+ 0x2f9a8: "\x8c\v\U0002f9a8", // 蓱
+ 0x2f9a9: "\x8c\v\U0002f9a9", // 蓳
+ 0x2f9aa: "\x8c\v\U0002f9aa", // 蔖
+ 0x2f9ab: "\x8e\n\U0002f9ab", // 𧏊
+ 0x2f9ac: "\x8c\f\U0002f9ac", // 蕤
+ 0x2f9ad: "\x8c\r\U0002f9ad", // 𦼬
+ 0x2f9ae: "\x8c\x0e\U0002f9ae", // 䕝
+ 0x2f9af: "\x8c\x0f\U0002f9af", // 䕡
+ 0x2f9b0: "\x8c\x0e\U0002f9b0", // 𦾱
+ 0x2f9b1: "\x8c\x11\U0002f9b1", // 𧃒
+ 0x2f9b2: "\x8c\x10\U0002f9b2", // 䕫
+ 0x2f9b3: "\x8d\x03\U0002f9b3", // 虐
+ 0x2f9b4: "\x8d\x06\U0002f9b4", // 虜
+ 0x2f9b5: "\x8d\v\U0002f9b5", // 虧
+ 0x2f9b6: "\x8d\f\U0002f9b6", // 虩
+ 0x2f9b7: "\x8e\x04\U0002f9b7", // 蚩
+ 0x2f9b8: "\x8e\x06\U0002f9b8", // 蚈
+ 0x2f9b9: "\x8e\a\U0002f9b9", // 蜎
+ 0x2f9ba: "\x8e\x06\U0002f9ba", // 蛢
+ 0x2f9bb: "\x8e\n\U0002f9bb", // 蝹
+ 0x2f9bc: "\x8e\b\U0002f9bc", // 蜨
+ 0x2f9bd: "\x8e\t\U0002f9bd", // 蝫
+ 0x2f9be: "\x8e\n\U0002f9be", // 螆
+ 0x2f9bf: "\x8e\f\U0002f9bf", // 䗗
+ 0x2f9c0: "\x8e\t\U0002f9c0", // 蟡
+ 0x2f9c1: "\x8e\r\U0002f9c1", // 蠁
+ 0x2f9c2: "\x8e\r\U0002f9c2", // 䗹
+ 0x2f9c3: "\x90\n\U0002f9c3", // 衠
+ 0x2f9c4: "\x91\x00\U0002f9c4", // 衣
+ 0x2f9c5: "\x91\x06\U0002f9c5", // 𧙧
+ 0x2f9c6: "\x91\a\U0002f9c6", // 裗
+ 0x2f9c7: "\x91\a\U0002f9c7", // 裞
+ 0x2f9c8: "\x91\b\U0002f9c8", // 䘵
+ 0x2f9c9: "\x91\b\U0002f9c9", // 裺
+ 0x2f9ca: "\r\t\U0002f9ca", // 㒻
+ 0x2f9cb: "\x93\x15\U0002f9cb", // 𧢮
+ 0x2f9cc: "\x95\x03\U0002f9cc", // 𧥦
+ 0x2f9cd: "\x95\x04\U0002f9cd", // 䚾
+ 0x2f9ce: "\x95\x05\U0002f9ce", // 䛇
+ 0x2f9cf: "\x95\a\U0002f9cf", // 誠
+ 0x2f9d0: "\x95\t\U0002f9d0", // 諭
+ 0x2f9d1: "\x95\x10\U0002f9d1", // 變
+ 0x2f9d2: "\x98\x00\U0002f9d2", // 豕
+ 0x2f9d3: "\x99\x04\U0002f9d3", // 𧲨
+ 0x2f9d4: "\x9a\x04\U0002f9d4", // 貫
+ 0x2f9d5: "\x9a\x05\U0002f9d5", // 賁
+ 0x2f9d6: "\x9a\x11\U0002f9d6", // 贛
+ 0x2f9d7: "\x9c\x03\U0002f9d7", // 起
+ 0x2f9d8: "\x9c\t\U0002f9d8", // 𧼯
+ 0x2f9d9: "\x12\x0e\U0002f9d9", // 𠠄
+ 0x2f9da: "\x9d\x05\U0002f9da", // 跋
+ 0x2f9db: "\x9d\x06\U0002f9db", // 趼
+ 0x2f9dc: "\x9d\x06\U0002f9dc", // 跰
+ 0x2f9dd: "\x14\a\U0002f9dd", // 𠣞
+ 0x2f9de: "\x9f\x03\U0002f9de", // 軔
+ 0x2f9df: "\x9f\t\U0002f9df", // 輸
+ 0x2f9e0: "\xa2\f\U0002f9e0", // 𨗒
+ 0x2f9e1: "\xa2\r\U0002f9e1", // 𨗭
+ 0x2f9e2: "\xa3\x03\U0002f9e2", // 邔
+ 0x2f9e3: "\xa3\b\U0002f9e3", // 郱
+ 0x2f9e4: "\xa3\n\U0002f9e4", // 鄑
+ 0x2f9e5: "\xa3\t\U0002f9e5", // 𨜮
+ 0x2f9e6: "\xa3\v\U0002f9e6", // 鄛
+ 0x2f9e7: "\xa7\x05\U0002f9e7", // 鈸
+ 0x2f9e8: "\xa7\a\U0002f9e8", // 鋗
+ 0x2f9e9: "\xa7\a\U0002f9e9", // 鋘
+ 0x2f9ea: "\xa7\b\U0002f9ea", // 鉼
+ 0x2f9eb: "\xa7\v\U0002f9eb", // 鏹
+ 0x2f9ec: "\xa7\f\U0002f9ec", // 鐕
+ 0x2f9ed: "\xa7\x11\U0002f9ed", // 𨯺
+ 0x2f9ee: "\xa9\x04\U0002f9ee", // 開
+ 0x2f9ef: "\xa9\x06\U0002f9ef", // 䦕
+ 0x2f9f0: "\xa9\t\U0002f9f0", // 閷
+ 0x2f9f1: "\xa9\t\U0002f9f1", // 𨵷
+ 0x2f9f2: "\xaa\f\U0002f9f2", // 䧦
+ 0x2f9f3: "\xac\x04\U0002f9f3", // 雃
+ 0x2f9f4: ".\r\U0002f9f4", // 嶲
+ 0x2f9f5: "\xad\n\U0002f9f5", // 霣
+ 0x2f9f6: "\xad\v\U0002f9f6", // 𩅅
+ 0x2f9f7: "\xb0\x06\U0002f9f7", // 𩈚
+ 0x2f9f8: "\xb1\b\U0002f9f8", // 䩮
+ 0x2f9f9: "\xb1\n\U0002f9f9", // 䩶
+ 0x2f9fa: "\xb2\v\U0002f9fa", // 韠
+ 0x2f9fb: "\xb3\n\U0002f9fb", // 𩐊
+ 0x2f9fc: "\xb5\x03\U0002f9fc", // 䪲
+ 0x2f9fd: "\xb5\x06\U0002f9fd", // 𩒖
+ 0x2f9fe: "\xb5\x04\U0002f9fe", // 頋
+ 0x2f9ff: "\xb5\x04\U0002f9ff", // 頋
+ 0x2fa00: "\xb5\x06\U0002fa00", // 頩
+ 0x2fa01: "\xb6\x05\U0002fa01", // 𩖶
+ 0x2fa02: "\xb8\x02\U0002fa02", // 飢
+ 0x2fa03: "\xb8\x05\U0002fa03", // 䬳
+ 0x2fa04: "\xb8\b\U0002fa04", // 餩
+ 0x2fa05: "\xba\n\U0002fa05", // 馧
+ 0x2fa06: "\xbb\x04\U0002fa06", // 駂
+ 0x2fa07: "\xbb\a\U0002fa07", // 駾
+ 0x2fa08: "\xbc\x05\U0002fa08", // 䯎
+ 0x2fa09: "\xbe\x06\U0002fa09", // 𩬰
+ 0x2fa0a: "\xbe\n\U0002fa0a", // 鬒
+ 0x2fa0b: "\xc3\v\U0002fa0b", // 鱀
+ 0x2fa0c: "\xc4\x04\U0002fa0c", // 鳽
+ 0x2fa0d: "\xc4\x06\U0002fa0d", // 䳎
+ 0x2fa0e: "\xc4\t\U0002fa0e", // 䳭
+ 0x2fa0f: "\xc4\b\U0002fa0f", // 鵧
+ 0x2fa10: "\xc4\t\U0002fa10", // 𪃎
+ 0x2fa11: "\xc4\v\U0002fa11", // 䳸
+ 0x2fa12: "\xc4\n\U0002fa12", // 𪄅
+ 0x2fa13: "\xc4\x10\U0002fa13", // 𪈎
+ 0x2fa14: "\xc6\x04\U0002fa14", // 𪊑
+ 0x2fa15: "\xc8\x00\U0002fa15", // 麻
+ 0x2fa16: "\xca\b\U0002fa16", // 䵖
+ 0x2fa17: "\xcc\x00\U0002fa17", // 黹
+ 0x2fa18: "\xcd\x00\U0002fa18", // 黾
+ 0x2fa19: "\xcd\b\U0002fa19", // 鼅
+ 0x2fa1a: "\xce\x02\U0002fa1a", // 鼏
+ 0x2fa1b: "\xcf\x05\U0002fa1b", // 鼖
+ 0x2fa1c: "\xd1\x00\U0002fa1c", // 鼻
+ 0x2fa1d: "\xd3\x06\U0002fa1d", // 𪘀
+}
diff --git a/indexing/zhmakeindex/CJK/readings.go b/indexing/zhmakeindex/CJK/readings.go
new file mode 100644
index 0000000000..12af1f75a1
--- /dev/null
+++ b/indexing/zhmakeindex/CJK/readings.go
@@ -0,0 +1,41236 @@
+// 这是由程序自动生成的文件,请不要直接编辑此文件
+// 来源:Unihan_Readings.txt
+// Unicode version: 10.0.0
+
+package CJK
+
+// Readings 从字符取得常用读音。
+var Readings map[rune]string = readings
+
+var readings = map[rune]string{
+ 0x3007: "ling2", // 〇
+ 0x3400: "qiu1", // 㐀
+ 0x3401: "tian4", // 㐁
+ 0x3404: "kua4", // 㐄
+ 0x3405: "wu3", // 㐅
+ 0x3406: "yin3", // 㐆
+ 0x340c: "yi2", // 㐌
+ 0x3416: "xie2", // 㐖
+ 0x341c: "chou2", // 㐜
+ 0x3421: "nuo4", // 㐡
+ 0x3424: "dan1", // 㐤
+ 0x3428: "xu4", // 㐨
+ 0x3429: "xing2", // 㐩
+ 0x342b: "xiong1", // 㐫
+ 0x342c: "liu2", // 㐬
+ 0x342d: "lin3", // 㐭
+ 0x342e: "xiang1", // 㐮
+ 0x342f: "yong1", // 㐯
+ 0x3430: "xin4", // 㐰
+ 0x3431: "zhen3", // 㐱
+ 0x3432: "dai4", // 㐲
+ 0x3433: "wu4", // 㐳
+ 0x3434: "pan1", // 㐴
+ 0x3435: "ru2", // 㐵
+ 0x3437: "ma3", // 㐷
+ 0x3438: "qian4", // 㐸
+ 0x3439: "yi4", // 㐹
+ 0x343a: "yin2", // 㐺
+ 0x343b: "nei4", // 㐻
+ 0x343c: "cheng4", // 㐼
+ 0x343d: "feng1", // 㐽
+ 0x3441: "zhuo1", // 㑁
+ 0x3442: "fang3", // 㑂
+ 0x3443: "ao3", // 㑃
+ 0x3444: "wu3", // 㑄
+ 0x3445: "zuo4", // 㑅
+ 0x3447: "zhou4", // 㑇
+ 0x3448: "dong4", // 㑈
+ 0x3449: "su4", // 㑉
+ 0x344a: "yi4", // 㑊
+ 0x344b: "qiong2", // 㑋
+ 0x344c: "kuang1", // 㑌
+ 0x344d: "lei4", // 㑍
+ 0x344e: "nao3", // 㑎
+ 0x344f: "zhu4", // 㑏
+ 0x3450: "shu1", // 㑐
+ 0x3454: "xu3", // 㑔
+ 0x3457: "shen1", // 㑗
+ 0x3458: "jie4", // 㑘
+ 0x3459: "die2", // 㑙
+ 0x345a: "nuo2", // 㑚
+ 0x345b: "su4", // 㑛
+ 0x345c: "yi4", // 㑜
+ 0x345d: "long4", // 㑝
+ 0x345e: "ying4", // 㑞
+ 0x345f: "beng3", // 㑟
+ 0x3463: "lan2", // 㑣
+ 0x3464: "miao2", // 㑤
+ 0x3465: "yi4", // 㑥
+ 0x3466: "li4", // 㑦
+ 0x3467: "ji4", // 㑧
+ 0x3468: "yu3", // 㑨
+ 0x3469: "luo2", // 㑩
+ 0x346a: "chai2", // 㑪
+ 0x346e: "hun2", // 㑮
+ 0x346f: "xu3", // 㑯
+ 0x3470: "hui4", // 㑰
+ 0x3471: "rao3", // 㑱
+ 0x3473: "zhou4", // 㑳
+ 0x3475: "han4", // 㑵
+ 0x3476: "xi4", // 㑶
+ 0x3477: "tai4", // 㑷
+ 0x3478: "yao2", // 㑸
+ 0x3479: "hui4", // 㑹
+ 0x347a: "jun4", // 㑺
+ 0x347b: "ma4", // 㑻
+ 0x347c: "lve4", // 㑼
+ 0x347d: "tang2", // 㑽
+ 0x347e: "yao2", // 㑾
+ 0x347f: "zhao4", // 㑿
+ 0x3480: "zhai1", // 㒀
+ 0x3481: "yu3", // 㒁
+ 0x3482: "zhuo2", // 㒂
+ 0x3483: "er4", // 㒃
+ 0x3484: "ran3", // 㒄
+ 0x3485: "qi3", // 㒅
+ 0x3486: "chi4", // 㒆
+ 0x3487: "wu3", // 㒇
+ 0x3488: "han4", // 㒈
+ 0x3489: "tang3", // 㒉
+ 0x348a: "se4", // 㒊
+ 0x348c: "qiong2", // 㒌
+ 0x348d: "lei2", // 㒍
+ 0x348e: "sa4", // 㒎
+ 0x3491: "kui3", // 㒑
+ 0x3492: "pu2", // 㒒
+ 0x3493: "ta4", // 㒓
+ 0x3494: "shu2", // 㒔
+ 0x3495: "yang1", // 㒕
+ 0x3496: "ou3", // 㒖
+ 0x3497: "tai2", // 㒗
+ 0x3499: "mian2", // 㒙
+ 0x349a: "yin4", // 㒚
+ 0x349b: "diao4", // 㒛
+ 0x349c: "yu3", // 㒜
+ 0x349d: "mie4", // 㒝
+ 0x349e: "jun4", // 㒞
+ 0x349f: "niao3", // 㒟
+ 0x34a0: "xie4", // 㒠
+ 0x34a1: "you2", // 㒡
+ 0x34a4: "che4", // 㒤
+ 0x34a5: "feng1", // 㒥
+ 0x34a6: "lei3", // 㒦
+ 0x34a7: "li4", // 㒧
+ 0x34a9: "luo3", // 㒩
+ 0x34ab: "ji4", // 㒫
+ 0x34b0: "quan2", // 㒰
+ 0x34b2: "cai2", // 㒲
+ 0x34b3: "liang3", // 㒳
+ 0x34b4: "gu3", // 㒴
+ 0x34b5: "mao4", // 㒵
+ 0x34b7: "gua3", // 㒷
+ 0x34b8: "sui4", // 㒸
+ 0x34bb: "mao4", // 㒻
+ 0x34bc: "man2", // 㒼
+ 0x34bd: "quan1", // 㒽
+ 0x34be: "shi4", // 㒾
+ 0x34bf: "li2", // 㒿
+ 0x34c1: "wang3", // 㓁
+ 0x34c2: "kou4", // 㓂
+ 0x34c3: "du4", // 㓃
+ 0x34c4: "zhen4", // 㓄
+ 0x34c5: "ting1", // 㓅
+ 0x34c8: "bing4", // 㓈
+ 0x34c9: "huo4", // 㓉
+ 0x34ca: "dong4", // 㓊
+ 0x34cb: "gong4", // 㓋
+ 0x34cc: "cheng1", // 㓌
+ 0x34ce: "qin1", // 㓎
+ 0x34cf: "jiong3", // 㓏
+ 0x34d0: "lu4", // 㓐
+ 0x34d1: "xing4", // 㓑
+ 0x34d3: "nan2", // 㓓
+ 0x34d4: "xie4", // 㓔
+ 0x34d6: "bi4", // 㓖
+ 0x34d7: "jie2", // 㓗
+ 0x34d8: "su4", // 㓘
+ 0x34da: "gong1", // 㓚
+ 0x34dc: "you4", // 㓜
+ 0x34dd: "xing2", // 㓝
+ 0x34de: "qia4", // 㓞
+ 0x34df: "pi2", // 㓟
+ 0x34e0: "dian4", // 㓠
+ 0x34e1: "fu3", // 㓡
+ 0x34e2: "luo4", // 㓢
+ 0x34e3: "qia4", // 㓣
+ 0x34e4: "qia4", // 㓤
+ 0x34e5: "tang1", // 㓥
+ 0x34e6: "bai1", // 㓦
+ 0x34e7: "gan1", // 㓧
+ 0x34e8: "ci2", // 㓨
+ 0x34e9: "xuan1", // 㓩
+ 0x34ea: "lang3", // 㓪
+ 0x34ed: "she2", // 㓭
+ 0x34ef: "li2", // 㓯
+ 0x34f0: "hua4", // 㓰
+ 0x34f1: "tou2", // 㓱
+ 0x34f2: "pian1", // 㓲
+ 0x34f3: "di1", // 㓳
+ 0x34f4: "ruan3", // 㓴
+ 0x34f5: "e4", // 㓵
+ 0x34f6: "qie4", // 㓶
+ 0x34f7: "yi4", // 㓷
+ 0x34f8: "zhuo1", // 㓸
+ 0x34f9: "rui4", // 㓹
+ 0x34fa: "jian1", // 㓺
+ 0x34fc: "chi4", // 㓼
+ 0x34fd: "chong2", // 㓽
+ 0x34fe: "xi1", // 㓾
+ 0x3500: "lve4", // 㔀
+ 0x3501: "deng1", // 㔁
+ 0x3502: "lin2", // 㔂
+ 0x3503: "jue2", // 㔃
+ 0x3504: "su4", // 㔄
+ 0x3505: "xiao4", // 㔅
+ 0x3506: "zan4", // 㔆
+ 0x3509: "zhu3", // 㔉
+ 0x350a: "zhan3", // 㔊
+ 0x350b: "jian1", // 㔋
+ 0x350c: "zou4", // 㔌
+ 0x350d: "chua1", // 㔍
+ 0x350e: "xie4", // 㔎
+ 0x350f: "li4", // 㔏
+ 0x3511: "chi4", // 㔑
+ 0x3512: "xi2", // 㔒
+ 0x3513: "jian3", // 㔓
+ 0x3515: "ji2", // 㔕
+ 0x3517: "fei4", // 㔗
+ 0x3518: "chu4", // 㔘
+ 0x3519: "beng1", // 㔙
+ 0x351a: "jie2", // 㔚
+ 0x351c: "ba2", // 㔜
+ 0x351d: "liang3", // 㔝
+ 0x351e: "kuai4", // 㔞
+ 0x3520: "xia1", // 㔠
+ 0x3521: "bie1", // 㔡
+ 0x3522: "jue2", // 㔢
+ 0x3523: "lei2", // 㔣
+ 0x3524: "xin4", // 㔤
+ 0x3525: "bai4", // 㔥
+ 0x3526: "yang3", // 㔦
+ 0x3527: "lv4", // 㔧
+ 0x3528: "bei4", // 㔨
+ 0x3529: "e4", // 㔩
+ 0x352a: "lu3", // 㔪
+ 0x352d: "che4", // 㔭
+ 0x352e: "nuo2", // 㔮
+ 0x352f: "xuan2", // 㔯
+ 0x3530: "heng2", // 㔰
+ 0x3531: "yu3", // 㔱
+ 0x3533: "gui3", // 㔳
+ 0x3534: "yi4", // 㔴
+ 0x3535: "xuan3", // 㔵
+ 0x3536: "gong4", // 㔶
+ 0x3537: "lou4", // 㔷
+ 0x3538: "ti1", // 㔸
+ 0x3539: "le4", // 㔹
+ 0x353a: "shi4", // 㔺
+ 0x353c: "sun3", // 㔼
+ 0x353d: "yao4", // 㔽
+ 0x353e: "xian1", // 㔾
+ 0x353f: "zou4", // 㔿
+ 0x3541: "que4", // 㕁
+ 0x3542: "yin2", // 㕂
+ 0x3543: "xi1", // 㕃
+ 0x3544: "zhi3", // 㕄
+ 0x3545: "jia2", // 㕅
+ 0x3546: "hu4", // 㕆
+ 0x3547: "la1", // 㕇
+ 0x3548: "yi3", // 㕈
+ 0x3549: "ke4", // 㕉
+ 0x354a: "fu1", // 㕊
+ 0x354b: "qin2", // 㕋
+ 0x354c: "ai4", // 㕌
+ 0x354e: "ke4", // 㕎
+ 0x354f: "chu2", // 㕏
+ 0x3550: "xie3", // 㕐
+ 0x3551: "chu2", // 㕑
+ 0x3552: "wei1", // 㕒
+ 0x3555: "huan4", // 㕕
+ 0x3556: "su4", // 㕖
+ 0x3557: "you4", // 㕗
+ 0x3559: "jun4", // 㕙
+ 0x355a: "zhao3", // 㕚
+ 0x355b: "xu4", // 㕛
+ 0x355c: "shi3", // 㕜
+ 0x355e: "shua1", // 㕞
+ 0x355f: "kui4", // 㕟
+ 0x3560: "shuang1", // 㕠
+ 0x3561: "he2", // 㕡
+ 0x3562: "gai4", // 㕢
+ 0x3563: "yan3", // 㕣
+ 0x3564: "qiu2", // 㕤
+ 0x3565: "shen1", // 㕥
+ 0x3566: "hua4", // 㕦
+ 0x3567: "xi1", // 㕧
+ 0x3568: "fan4", // 㕨
+ 0x3569: "pang4", // 㕩
+ 0x356a: "dan3", // 㕪
+ 0x356b: "fang3", // 㕫
+ 0x356c: "gong1", // 㕬
+ 0x356d: "ao1", // 㕭
+ 0x356e: "fu3", // 㕮
+ 0x356f: "ne4", // 㕯
+ 0x3570: "xue4", // 㕰
+ 0x3571: "you2", // 㕱
+ 0x3572: "hua2", // 㕲
+ 0x3574: "chen2", // 㕴
+ 0x3575: "guo2", // 㕵
+ 0x3576: "n3", // 㕶
+ 0x3577: "hua4", // 㕷
+ 0x3578: "li4", // 㕸
+ 0x3579: "fa2", // 㕹
+ 0x357a: "xiao1", // 㕺
+ 0x357b: "pou3", // 㕻
+ 0x357d: "si4", // 㕽
+ 0x3580: "le4", // 㖀
+ 0x3581: "lin4", // 㖁
+ 0x3582: "yi4", // 㖂
+ 0x3583: "hou3", // 㖃
+ 0x3585: "xu4", // 㖅
+ 0x3586: "qu2", // 㖆
+ 0x3587: "er2", // 㖇
+ 0x358a: "xun2", // 㖊
+ 0x358f: "nie4", // 㖏
+ 0x3590: "wei3", // 㖐
+ 0x3591: "xie4", // 㖑
+ 0x3592: "ti2", // 㖒
+ 0x3593: "hong2", // 㖓
+ 0x3594: "tun3", // 㖔
+ 0x3595: "nie4", // 㖕
+ 0x3596: "nie4", // 㖖
+ 0x3597: "yin2", // 㖗
+ 0x3598: "zhen1", // 㖘
+ 0x359e: "wai1", // 㖞
+ 0x359f: "shou4", // 㖟
+ 0x35a0: "nuo4", // 㖠
+ 0x35a1: "ye4", // 㖡
+ 0x35a2: "qi2", // 㖢
+ 0x35a3: "tou4", // 㖣
+ 0x35a4: "han2", // 㖤
+ 0x35a5: "jun4", // 㖥
+ 0x35a6: "dong3", // 㖦
+ 0x35a7: "hun1", // 㖧
+ 0x35a8: "lu4", // 㖨
+ 0x35a9: "ju1", // 㖩
+ 0x35aa: "huo4", // 㖪
+ 0x35ab: "ling2", // 㖫
+ 0x35ad: "tian3", // 㖭
+ 0x35ae: "lun2", // 㖮
+ 0x35b5: "ge2", // 㖵
+ 0x35b6: "yan1", // 㖶
+ 0x35b7: "shi2", // 㖷
+ 0x35b8: "xue2", // 㖸
+ 0x35b9: "pen1", // 㖹
+ 0x35ba: "chun3", // 㖺
+ 0x35bb: "niu2", // 㖻
+ 0x35bc: "duo3", // 㖼
+ 0x35bd: "ze2", // 㖽
+ 0x35be: "e4", // 㖾
+ 0x35bf: "xie2", // 㖿
+ 0x35c0: "you1", // 㗀
+ 0x35c1: "e4", // 㗁
+ 0x35c2: "sheng3", // 㗂
+ 0x35c3: "wen3", // 㗃
+ 0x35c4: "ku1", // 㗄
+ 0x35c5: "hu2", // 㗅
+ 0x35c6: "ge2", // 㗆
+ 0x35c7: "xia2", // 㗇
+ 0x35c8: "man4", // 㗈
+ 0x35c9: "lve4", // 㗉
+ 0x35ca: "ji2", // 㗊
+ 0x35cb: "hou2", // 㗋
+ 0x35cc: "zhi4", // 㗌
+ 0x35cf: "wai1", // 㗏
+ 0x35d1: "bai5", // 㗑
+ 0x35d2: "ai4", // 㗒
+ 0x35d3: "zhui1", // 㗓
+ 0x35d4: "qian1", // 㗔
+ 0x35d5: "gou4", // 㗕
+ 0x35d6: "dan4", // 㗖
+ 0x35d7: "bei1", // 㗗
+ 0x35d8: "bo2", // 㗘
+ 0x35d9: "chu1", // 㗙
+ 0x35da: "li4", // 㗚
+ 0x35db: "xiao4", // 㗛
+ 0x35dc: "xiu4", // 㗜
+ 0x35e2: "hong2", // 㗢
+ 0x35e3: "ti4", // 㗣
+ 0x35e4: "cu4", // 㗤
+ 0x35e5: "kuo4", // 㗥
+ 0x35e6: "lao2", // 㗦
+ 0x35e7: "zhi4", // 㗧
+ 0x35e8: "xie1", // 㗨
+ 0x35e9: "xi1", // 㗩
+ 0x35eb: "qie4", // 㗫
+ 0x35ec: "zha1", // 㗬
+ 0x35ed: "xi1", // 㗭
+ 0x35f0: "cong2", // 㗰
+ 0x35f1: "ji2", // 㗱
+ 0x35f2: "huo4", // 㗲
+ 0x35f3: "ta3", // 㗳
+ 0x35f4: "yan2", // 㗴
+ 0x35f5: "xu4", // 㗵
+ 0x35f6: "po1", // 㗶
+ 0x35f7: "sai3", // 㗷
+ 0x35fb: "guo1", // 㗻
+ 0x35fc: "ye4", // 㗼
+ 0x35fd: "xiang3", // 㗽
+ 0x35fe: "xue1", // 㗾
+ 0x35ff: "he2", // 㗿
+ 0x3600: "zuo4", // 㘀
+ 0x3601: "yi4", // 㘁
+ 0x3602: "ci2", // 㘂
+ 0x3604: "leng1", // 㘄
+ 0x3605: "xian2", // 㘅
+ 0x3606: "tai3", // 㘆
+ 0x3607: "rong2", // 㘇
+ 0x3608: "yi4", // 㘈
+ 0x3609: "zhi4", // 㘉
+ 0x360a: "xi1", // 㘊
+ 0x360b: "xian2", // 㘋
+ 0x360c: "ju4", // 㘌
+ 0x360d: "ji2", // 㘍
+ 0x360e: "han3", // 㘎
+ 0x3610: "pao4", // 㘐
+ 0x3611: "li4", // 㘑
+ 0x3613: "lan2", // 㘓
+ 0x3614: "sai3", // 㘔
+ 0x3615: "han3", // 㘕
+ 0x3616: "yan2", // 㘖
+ 0x3617: "qu1", // 㘗
+ 0x3619: "yan2", // 㘙
+ 0x361a: "han3", // 㘚
+ 0x361b: "kan1", // 㘛
+ 0x361c: "chi3", // 㘜
+ 0x361d: "nie4", // 㘝
+ 0x361e: "huo4", // 㘞
+ 0x3620: "bi4", // 㘠
+ 0x3621: "xia2", // 㘡
+ 0x3622: "weng3", // 㘢
+ 0x3623: "xuan2", // 㘣
+ 0x3624: "wan1", // 㘤
+ 0x3625: "you2", // 㘥
+ 0x3626: "qin2", // 㘦
+ 0x3627: "xu4", // 㘧
+ 0x3628: "nie4", // 㘨
+ 0x3629: "bi4", // 㘩
+ 0x362a: "hao4", // 㘪
+ 0x362b: "jing3", // 㘫
+ 0x362c: "ao4", // 㘬
+ 0x362d: "ao4", // 㘭
+ 0x3630: "zhen1", // 㘰
+ 0x3631: "tan1", // 㘱
+ 0x3632: "ju2", // 㘲
+ 0x3634: "zuo4", // 㘴
+ 0x3635: "bu4", // 㘵
+ 0x3636: "jie2", // 㘶
+ 0x3637: "ai4", // 㘷
+ 0x3638: "zang4", // 㘸
+ 0x3639: "ci2", // 㘹
+ 0x363a: "fa2", // 㘺
+ 0x363f: "nie4", // 㘿
+ 0x3640: "liu4", // 㙀
+ 0x3641: "mei2", // 㙁
+ 0x3642: "dui4", // 㙂
+ 0x3643: "bang1", // 㙃
+ 0x3644: "bi4", // 㙄
+ 0x3645: "bao3", // 㙅
+ 0x3647: "chu4", // 㙇
+ 0x3648: "xia4", // 㙈
+ 0x3649: "tian3", // 㙉
+ 0x364a: "chang2", // 㙊
+ 0x364d: "duo1", // 㙍
+ 0x364e: "wei1", // 㙎
+ 0x364f: "fu4", // 㙏
+ 0x3650: "duo3", // 㙐
+ 0x3651: "yu3", // 㙑
+ 0x3652: "ye3", // 㙒
+ 0x3653: "kui2", // 㙓
+ 0x3654: "wei3", // 㙔
+ 0x3655: "kuai4", // 㙕
+ 0x3657: "wei1", // 㙗
+ 0x3658: "yao1", // 㙘
+ 0x3659: "long3", // 㙙
+ 0x365a: "xing1", // 㙚
+ 0x365b: "bu3", // 㙛
+ 0x365c: "chi2", // 㙜
+ 0x365d: "xie2", // 㙝
+ 0x365e: "nie4", // 㙞
+ 0x365f: "lang3", // 㙟
+ 0x3660: "yi1", // 㙠
+ 0x3661: "zong1", // 㙡
+ 0x3662: "man2", // 㙢
+ 0x3663: "zhang4", // 㙣
+ 0x3664: "xia4", // 㙤
+ 0x3665: "gun4", // 㙥
+ 0x3666: "xie2", // 㙦
+ 0x3668: "ji4", // 㙨
+ 0x3669: "liao2", // 㙩
+ 0x366a: "yi4", // 㙪
+ 0x366b: "ji2", // 㙫
+ 0x366c: "yin2", // 㙬
+ 0x366e: "da1", // 㙮
+ 0x366f: "yi4", // 㙯
+ 0x3670: "xie4", // 㙰
+ 0x3671: "hao4", // 㙱
+ 0x3672: "yong3", // 㙲
+ 0x3673: "kan3", // 㙳
+ 0x3674: "chan4", // 㙴
+ 0x3675: "tai2", // 㙵
+ 0x3676: "tang2", // 㙶
+ 0x3677: "zhi2", // 㙷
+ 0x3678: "bao4", // 㙸
+ 0x3679: "meng2", // 㙹
+ 0x367a: "kui2", // 㙺
+ 0x367b: "chan2", // 㙻
+ 0x367c: "lei3", // 㙼
+ 0x367e: "xi4", // 㙾
+ 0x3680: "xi1", // 㚀
+ 0x3681: "qiao4", // 㚁
+ 0x3682: "nang4", // 㚂
+ 0x3683: "yun1", // 㚃
+ 0x3685: "long2", // 㚅
+ 0x3686: "fu4", // 㚆
+ 0x3687: "zong1", // 㚇
+ 0x3689: "gu3", // 㚉
+ 0x368a: "kai1", // 㚊
+ 0x368b: "diao1", // 㚋
+ 0x368c: "hua4", // 㚌
+ 0x368d: "kui3", // 㚍
+ 0x368f: "gao3", // 㚏
+ 0x3690: "tao4", // 㚐
+ 0x3692: "shan3", // 㚒
+ 0x3693: "lai3", // 㚓
+ 0x3694: "nie4", // 㚔
+ 0x3695: "fu2", // 㚕
+ 0x3696: "gao3", // 㚖
+ 0x3697: "qie2", // 㚗
+ 0x3698: "ban4", // 㚘
+ 0x3699: "jia1", // 㚙
+ 0x369a: "kong1", // 㚚
+ 0x369b: "xi4", // 㚛
+ 0x369c: "yu4", // 㚜
+ 0x369d: "zhui1", // 㚝
+ 0x369e: "shen3", // 㚞
+ 0x369f: "chuo4", // 㚟
+ 0x36a0: "xiao1", // 㚠
+ 0x36a1: "ji3", // 㚡
+ 0x36a2: "nu2", // 㚢
+ 0x36a3: "xiao2", // 㚣
+ 0x36a4: "yi4", // 㚤
+ 0x36a5: "yu2", // 㚥
+ 0x36a6: "yi2", // 㚦
+ 0x36a7: "yan3", // 㚧
+ 0x36a8: "shen3", // 㚨
+ 0x36a9: "ran3", // 㚩
+ 0x36aa: "hao4", // 㚪
+ 0x36ab: "sa4", // 㚫
+ 0x36ac: "jun1", // 㚬
+ 0x36ad: "you2", // 㚭
+ 0x36af: "xin2", // 㚯
+ 0x36b0: "pei1", // 㚰
+ 0x36b1: "qiu1", // 㚱
+ 0x36b2: "chan1", // 㚲
+ 0x36b4: "bu4", // 㚴
+ 0x36b5: "dong1", // 㚵
+ 0x36b6: "si4", // 㚶
+ 0x36b7: "er3", // 㚷
+ 0x36b9: "mao3", // 㚹
+ 0x36ba: "yun4", // 㚺
+ 0x36bb: "ji1", // 㚻
+ 0x36bd: "qiao3", // 㚽
+ 0x36be: "xiong1", // 㚾
+ 0x36bf: "pao2", // 㚿
+ 0x36c0: "chu2", // 㛀
+ 0x36c1: "peng1", // 㛁
+ 0x36c2: "nuo3", // 㛂
+ 0x36c3: "jie2", // 㛃
+ 0x36c4: "yi1", // 㛄
+ 0x36c5: "er4", // 㛅
+ 0x36c6: "duo4", // 㛆
+ 0x36ca: "duo3", // 㛊
+ 0x36cd: "qie4", // 㛍
+ 0x36ce: "lv3", // 㛎
+ 0x36cf: "qiu2", // 㛏
+ 0x36d0: "sou3", // 㛐
+ 0x36d1: "can4", // 㛑
+ 0x36d2: "dou4", // 㛒
+ 0x36d3: "xi1", // 㛓
+ 0x36d4: "feng1", // 㛔
+ 0x36d5: "yi4", // 㛕
+ 0x36d6: "suo1", // 㛖
+ 0x36d7: "qie1", // 㛗
+ 0x36d8: "po4", // 㛘
+ 0x36d9: "xin1", // 㛙
+ 0x36da: "tong3", // 㛚
+ 0x36db: "xin4", // 㛛
+ 0x36dc: "you2", // 㛜
+ 0x36dd: "bei4", // 㛝
+ 0x36de: "long4", // 㛞
+ 0x36e3: "yun2", // 㛣
+ 0x36e4: "li2", // 㛤
+ 0x36e5: "ta4", // 㛥
+ 0x36e6: "lan3", // 㛦
+ 0x36e7: "man3", // 㛧
+ 0x36e8: "qiang3", // 㛨
+ 0x36e9: "zhou2", // 㛩
+ 0x36ea: "yan4", // 㛪
+ 0x36eb: "xi1", // 㛫
+ 0x36ec: "lu4", // 㛬
+ 0x36ed: "xi1", // 㛭
+ 0x36ee: "sao3", // 㛮
+ 0x36ef: "fan4", // 㛯
+ 0x36f1: "wei3", // 㛱
+ 0x36f2: "fa4", // 㛲
+ 0x36f3: "yi4", // 㛳
+ 0x36f4: "nao3", // 㛴
+ 0x36f5: "cheng1", // 㛵
+ 0x36f6: "tan4", // 㛶
+ 0x36f7: "ji1", // 㛷
+ 0x36f8: "shu4", // 㛸
+ 0x36f9: "pian2", // 㛹
+ 0x36fa: "an1", // 㛺
+ 0x36fb: "kua1", // 㛻
+ 0x36fc: "cha1", // 㛼
+ 0x36fe: "xian2", // 㛾
+ 0x36ff: "zhi4", // 㛿
+ 0x3702: "feng1", // 㜂
+ 0x3703: "lian4", // 㜃
+ 0x3704: "xun2", // 㜄
+ 0x3705: "xu4", // 㜅
+ 0x3706: "mi4", // 㜆
+ 0x3707: "hui4", // 㜇
+ 0x3708: "mu4", // 㜈
+ 0x3709: "yong1", // 㜉
+ 0x370a: "zhan3", // 㜊
+ 0x370b: "yi4", // 㜋
+ 0x370c: "nou3", // 㜌
+ 0x370d: "tang2", // 㜍
+ 0x370e: "xi1", // 㜎
+ 0x370f: "yun2", // 㜏
+ 0x3710: "shu4", // 㜐
+ 0x3711: "fu2", // 㜑
+ 0x3712: "yi4", // 㜒
+ 0x3713: "da2", // 㜓
+ 0x3715: "lian2", // 㜕
+ 0x3716: "cao2", // 㜖
+ 0x3717: "can1", // 㜗
+ 0x3718: "ju4", // 㜘
+ 0x3719: "lu4", // 㜙
+ 0x371a: "su4", // 㜚
+ 0x371b: "nen4", // 㜛
+ 0x371c: "ao4", // 㜜
+ 0x371d: "an3", // 㜝
+ 0x371e: "qian4", // 㜞
+ 0x3720: "cui1", // 㜠
+ 0x3721: "cong1", // 㜡
+ 0x3723: "ran2", // 㜣
+ 0x3724: "nian3", // 㜤
+ 0x3725: "mai2", // 㜥
+ 0x3726: "xin2", // 㜦
+ 0x3727: "yue4", // 㜧
+ 0x3728: "nai2", // 㜨
+ 0x3729: "ao4", // 㜩
+ 0x372a: "shen1", // 㜪
+ 0x372b: "ma4", // 㜫
+ 0x372e: "lan4", // 㜮
+ 0x372f: "xi1", // 㜯
+ 0x3730: "yue4", // 㜰
+ 0x3731: "zhi4", // 㜱
+ 0x3732: "weng3", // 㜲
+ 0x3733: "huai2", // 㜳
+ 0x3734: "meng4", // 㜴
+ 0x3735: "niao3", // 㜵
+ 0x3736: "wan3", // 㜶
+ 0x3737: "mi2", // 㜷
+ 0x3738: "nie4", // 㜸
+ 0x3739: "qu2", // 㜹
+ 0x373a: "zan4", // 㜺
+ 0x373b: "lian4", // 㜻
+ 0x373c: "zhi2", // 㜼
+ 0x373d: "zi3", // 㜽
+ 0x373e: "hai2", // 㜾
+ 0x373f: "xu4", // 㜿
+ 0x3740: "hao4", // 㝀
+ 0x3741: "xuan1", // 㝁
+ 0x3742: "zhi4", // 㝂
+ 0x3743: "mian3", // 㝃
+ 0x3744: "chun2", // 㝄
+ 0x3745: "gou4", // 㝅
+ 0x3747: "chun2", // 㝇
+ 0x3748: "luan2", // 㝈
+ 0x3749: "zhu4", // 㝉
+ 0x374a: "shou3", // 㝊
+ 0x374b: "liao3", // 㝋
+ 0x374c: "jiu4", // 㝌
+ 0x374d: "xie3", // 㝍
+ 0x374e: "ding4", // 㝎
+ 0x374f: "jie4", // 㝏
+ 0x3750: "rong2", // 㝐
+ 0x3751: "mang2", // 㝑
+ 0x3753: "ke4", // 㝓
+ 0x3754: "yao3", // 㝔
+ 0x3755: "ning2", // 㝕
+ 0x3756: "yi2", // 㝖
+ 0x3757: "lang2", // 㝗
+ 0x3758: "yong2", // 㝘
+ 0x3759: "yin2", // 㝙
+ 0x375a: "yan2", // 㝚
+ 0x375b: "su4", // 㝛
+ 0x375d: "lin2", // 㝝
+ 0x375e: "ya1", // 㝞
+ 0x375f: "mao2", // 㝟
+ 0x3760: "ming2", // 㝠
+ 0x3761: "zui4", // 㝡
+ 0x3762: "yu3", // 㝢
+ 0x3763: "yi4", // 㝣
+ 0x3764: "gou4", // 㝤
+ 0x3765: "mi3", // 㝥
+ 0x3766: "jun4", // 㝦
+ 0x3767: "wen3", // 㝧
+ 0x3769: "kang1", // 㝩
+ 0x376a: "dian4", // 㝪
+ 0x376b: "long2", // 㝫
+ 0x376d: "xing3", // 㝭
+ 0x376e: "cui4", // 㝮
+ 0x376f: "qiao2", // 㝯
+ 0x3770: "mian2", // 㝰
+ 0x3771: "meng4", // 㝱
+ 0x3772: "qin3", // 㝲
+ 0x3774: "wan2", // 㝴
+ 0x3775: "de2", // 㝵
+ 0x3776: "ai4", // 㝶
+ 0x3778: "bian4", // 㝸
+ 0x3779: "nou2", // 㝹
+ 0x377a: "lian2", // 㝺
+ 0x377b: "jin3", // 㝻
+ 0x377c: "yu1", // 㝼
+ 0x377d: "chui2", // 㝽
+ 0x377e: "zuo3", // 㝾
+ 0x377f: "bo3", // 㝿
+ 0x3780: "hui1", // 㞀
+ 0x3781: "yao4", // 㞁
+ 0x3782: "tui3", // 㞂
+ 0x3783: "ji4", // 㞃
+ 0x3784: "an1", // 㞄
+ 0x3785: "luo4", // 㞅
+ 0x3786: "ji3", // 㞆
+ 0x3787: "wei3", // 㞇
+ 0x3788: "bo1", // 㞈
+ 0x3789: "za1", // 㞉
+ 0x378a: "xu4", // 㞊
+ 0x378b: "nian3", // 㞋
+ 0x378c: "yun4", // 㞌
+ 0x378e: "ba3", // 㞎
+ 0x378f: "zhe2", // 㞏
+ 0x3790: "ju1", // 㞐
+ 0x3791: "wei3", // 㞑
+ 0x3792: "xie4", // 㞒
+ 0x3793: "qi4", // 㞓
+ 0x3794: "yi2", // 㞔
+ 0x3795: "xie4", // 㞕
+ 0x3796: "ci2", // 㞖
+ 0x3797: "qiu2", // 㞗
+ 0x3798: "du1", // 㞘
+ 0x3799: "niao4", // 㞙
+ 0x379a: "qi4", // 㞚
+ 0x379b: "ji3", // 㞛
+ 0x379c: "tui1", // 㞜
+ 0x379e: "song2", // 㞞
+ 0x379f: "dian4", // 㞟
+ 0x37a0: "lao2", // 㞠
+ 0x37a1: "zhan3", // 㞡
+ 0x37a4: "yin2", // 㞤
+ 0x37a5: "cen2", // 㞥
+ 0x37a6: "ji3", // 㞦
+ 0x37a7: "hui4", // 㞧
+ 0x37a8: "zi3", // 㞨
+ 0x37a9: "lan2", // 㞩
+ 0x37aa: "nao2", // 㞪
+ 0x37ab: "ju4", // 㞫
+ 0x37ac: "qin4", // 㞬
+ 0x37ad: "dai4", // 㞭
+ 0x37af: "jie2", // 㞯
+ 0x37b0: "xu3", // 㞰
+ 0x37b1: "cong1", // 㞱
+ 0x37b2: "yong4", // 㞲
+ 0x37b3: "dou3", // 㞳
+ 0x37b4: "chi2", // 㞴
+ 0x37b6: "min3", // 㞶
+ 0x37b7: "huang2", // 㞷
+ 0x37b8: "sui4", // 㞸
+ 0x37b9: "ke3", // 㞹
+ 0x37ba: "zu2", // 㞺
+ 0x37bb: "hao4", // 㞻
+ 0x37bc: "cheng2", // 㞼
+ 0x37bd: "xue4", // 㞽
+ 0x37be: "ni2", // 㞾
+ 0x37bf: "chi4", // 㞿
+ 0x37c0: "lian2", // 㟀
+ 0x37c1: "an4", // 㟁
+ 0x37c2: "mu3", // 㟂
+ 0x37c3: "si1", // 㟃
+ 0x37c4: "xiang2", // 㟄
+ 0x37c5: "yang2", // 㟅
+ 0x37c6: "hua2", // 㟆
+ 0x37c7: "cuo4", // 㟇
+ 0x37c8: "qiu2", // 㟈
+ 0x37c9: "lao2", // 㟉
+ 0x37ca: "fu2", // 㟊
+ 0x37cb: "dui4", // 㟋
+ 0x37cc: "mang2", // 㟌
+ 0x37cd: "lang2", // 㟍
+ 0x37ce: "tuo3", // 㟎
+ 0x37cf: "han2", // 㟏
+ 0x37d0: "mang3", // 㟐
+ 0x37d1: "bo2", // 㟑
+ 0x37d2: "qun1", // 㟒
+ 0x37d3: "qi2", // 㟓
+ 0x37d4: "han2", // 㟔
+ 0x37d6: "long4", // 㟖
+ 0x37d8: "tiao2", // 㟘
+ 0x37d9: "ze2", // 㟙
+ 0x37da: "qi2", // 㟚
+ 0x37db: "zan4", // 㟛
+ 0x37dc: "mi2", // 㟜
+ 0x37dd: "pei2", // 㟝
+ 0x37de: "zhan4", // 㟞
+ 0x37df: "xiang4", // 㟟
+ 0x37e0: "gang3", // 㟠
+ 0x37e2: "qi2", // 㟢
+ 0x37e4: "lu4", // 㟤
+ 0x37e6: "yun4", // 㟦
+ 0x37e7: "e4", // 㟧
+ 0x37e8: "duan1", // 㟨
+ 0x37e9: "min2", // 㟩
+ 0x37ea: "wei1", // 㟪
+ 0x37eb: "quan2", // 㟫
+ 0x37ec: "sou3", // 㟬
+ 0x37ed: "min2", // 㟭
+ 0x37ee: "tu1", // 㟮
+ 0x37f0: "ming3", // 㟰
+ 0x37f1: "yao3", // 㟱
+ 0x37f2: "jue2", // 㟲
+ 0x37f3: "li4", // 㟳
+ 0x37f4: "kuai4", // 㟴
+ 0x37f5: "gang3", // 㟵
+ 0x37f6: "yuan2", // 㟶
+ 0x37f7: "da5", // 㟷
+ 0x37f9: "lao2", // 㟹
+ 0x37fa: "lou2", // 㟺
+ 0x37fb: "qian4", // 㟻
+ 0x37fc: "ao2", // 㟼
+ 0x37fd: "biao3", // 㟽
+ 0x37fe: "yong1", // 㟾
+ 0x37ff: "mang3", // 㟿
+ 0x3800: "dao3", // 㠀
+ 0x3802: "ao2", // 㠂
+ 0x3804: "xi2", // 㠄
+ 0x3805: "fu2", // 㠅
+ 0x3806: "dan1", // 㠆
+ 0x3807: "jiu4", // 㠇
+ 0x3808: "run4", // 㠈
+ 0x3809: "tong2", // 㠉
+ 0x380a: "qu1", // 㠊
+ 0x380b: "e4", // 㠋
+ 0x380c: "qi1", // 㠌
+ 0x380d: "ji2", // 㠍
+ 0x380e: "ji2", // 㠎
+ 0x380f: "hua2", // 㠏
+ 0x3810: "jiao4", // 㠐
+ 0x3811: "zui4", // 㠑
+ 0x3812: "biao3", // 㠒
+ 0x3813: "meng2", // 㠓
+ 0x3814: "bai4", // 㠔
+ 0x3815: "wei3", // 㠕
+ 0x3816: "yi3", // 㠖
+ 0x3817: "ao4", // 㠗
+ 0x3818: "yu3", // 㠘
+ 0x3819: "hao2", // 㠙
+ 0x381a: "dui4", // 㠚
+ 0x381b: "wo4", // 㠛
+ 0x381c: "ni4", // 㠜
+ 0x381d: "cuan2", // 㠝
+ 0x381f: "li2", // 㠟
+ 0x3820: "lu2", // 㠠
+ 0x3821: "niao3", // 㠡
+ 0x3822: "huai2", // 㠢
+ 0x3823: "li4", // 㠣
+ 0x3825: "lv4", // 㠥
+ 0x3826: "feng1", // 㠦
+ 0x3827: "mi3", // 㠧
+ 0x3828: "yu4", // 㠨
+ 0x382a: "ju4", // 㠪
+ 0x382d: "zhan3", // 㠭
+ 0x382e: "peng1", // 㠮
+ 0x382f: "yi3", // 㠯
+ 0x3831: "ji4", // 㠱
+ 0x3832: "bi3", // 㠲
+ 0x3834: "ren4", // 㠴
+ 0x3835: "huang1", // 㠵
+ 0x3836: "fan2", // 㠶
+ 0x3837: "ge2", // 㠷
+ 0x3838: "ku4", // 㠸
+ 0x3839: "jie4", // 㠹
+ 0x383a: "sha1", // 㠺
+ 0x383c: "si1", // 㠼
+ 0x383d: "tong2", // 㠽
+ 0x383e: "yuan1", // 㠾
+ 0x383f: "zi1", // 㠿
+ 0x3840: "bi4", // 㡀
+ 0x3841: "kua3", // 㡁
+ 0x3842: "li4", // 㡂
+ 0x3843: "huang1", // 㡃
+ 0x3844: "xun2", // 㡄
+ 0x3845: "nuo3", // 㡅
+ 0x3847: "zhe2", // 㡇
+ 0x3848: "wen4", // 㡈
+ 0x3849: "xian2", // 㡉
+ 0x384a: "qia4", // 㡊
+ 0x384b: "ye2", // 㡋
+ 0x384c: "mao4", // 㡌
+ 0x384f: "shu4", // 㡏
+ 0x3851: "qiao1", // 㡑
+ 0x3852: "zhun1", // 㡒
+ 0x3853: "kun1", // 㡓
+ 0x3854: "wu4", // 㡔
+ 0x3855: "ying1", // 㡕
+ 0x3856: "chuang2", // 㡖
+ 0x3857: "ti2", // 㡗
+ 0x3858: "lian2", // 㡘
+ 0x3859: "bi1", // 㡙
+ 0x385a: "gou1", // 㡚
+ 0x385b: "mang2", // 㡛
+ 0x385c: "xie4", // 㡜
+ 0x385d: "feng4", // 㡝
+ 0x385e: "lou2", // 㡞
+ 0x385f: "zao1", // 㡟
+ 0x3860: "zheng4", // 㡠
+ 0x3861: "chu2", // 㡡
+ 0x3862: "man4", // 㡢
+ 0x3863: "long2", // 㡣
+ 0x3865: "yin4", // 㡥
+ 0x3866: "pin1", // 㡦
+ 0x3867: "zheng4", // 㡧
+ 0x3868: "jian1", // 㡨
+ 0x3869: "luan2", // 㡩
+ 0x386a: "nie2", // 㡪
+ 0x386b: "yi4", // 㡫
+ 0x386d: "ji4", // 㡭
+ 0x386e: "ji2", // 㡮
+ 0x386f: "zhai2", // 㡯
+ 0x3870: "yu3", // 㡰
+ 0x3871: "jiu3", // 㡱
+ 0x3872: "huan2", // 㡲
+ 0x3873: "zhi3", // 㡳
+ 0x3874: "la1", // 㡴
+ 0x3875: "ling2", // 㡵
+ 0x3876: "zhi3", // 㡶
+ 0x3877: "ben3", // 㡷
+ 0x3878: "zha4", // 㡸
+ 0x3879: "ju1", // 㡹
+ 0x387a: "dan4", // 㡺
+ 0x387b: "liao4", // 㡻
+ 0x387c: "yi4", // 㡼
+ 0x387d: "zhao4", // 㡽
+ 0x387e: "xian4", // 㡾
+ 0x387f: "chi4", // 㡿
+ 0x3880: "ci4", // 㢀
+ 0x3881: "chi3", // 㢁
+ 0x3882: "yan3", // 㢂
+ 0x3883: "lang2", // 㢃
+ 0x3884: "dou4", // 㢄
+ 0x3885: "long4", // 㢅
+ 0x3886: "chan2", // 㢆
+ 0x3888: "tui2", // 㢈
+ 0x3889: "cha2", // 㢉
+ 0x388a: "ai3", // 㢊
+ 0x388b: "chi3", // 㢋
+ 0x388d: "ying3", // 㢍
+ 0x388e: "zhe2", // 㢎
+ 0x388f: "tou2", // 㢏
+ 0x3891: "tui2", // 㢑
+ 0x3892: "cha2", // 㢒
+ 0x3893: "yao3", // 㢓
+ 0x3894: "zong3", // 㢔
+ 0x3896: "pan1", // 㢖
+ 0x3897: "qiao4", // 㢗
+ 0x3898: "lian2", // 㢘
+ 0x3899: "qin2", // 㢙
+ 0x389a: "lu3", // 㢚
+ 0x389b: "yan4", // 㢛
+ 0x389c: "kang4", // 㢜
+ 0x389d: "su1", // 㢝
+ 0x389e: "yi4", // 㢞
+ 0x389f: "chan1", // 㢟
+ 0x38a0: "jiong3", // 㢠
+ 0x38a1: "jiang3", // 㢡
+ 0x38a3: "jing4", // 㢣
+ 0x38a5: "dong4", // 㢥
+ 0x38a7: "juan4", // 㢧
+ 0x38a8: "han4", // 㢨
+ 0x38a9: "di4", // 㢩
+ 0x38ac: "hong2", // 㢬
+ 0x38ae: "chi2", // 㢮
+ 0x38af: "diao1", // 㢯
+ 0x38b0: "bi4", // 㢰
+ 0x38b2: "xun4", // 㢲
+ 0x38b3: "lu2", // 㢳
+ 0x38b5: "xie2", // 㢵
+ 0x38b6: "bi4", // 㢶
+ 0x38b8: "bi4", // 㢸
+ 0x38ba: "xian2", // 㢺
+ 0x38bb: "rui4", // 㢻
+ 0x38bc: "bie4", // 㢼
+ 0x38bd: "er3", // 㢽
+ 0x38be: "juan4", // 㢾
+ 0x38c0: "zhen4", // 㣀
+ 0x38c1: "bei4", // 㣁
+ 0x38c2: "e4", // 㣂
+ 0x38c3: "yu3", // 㣃
+ 0x38c4: "qu2", // 㣄
+ 0x38c5: "zan4", // 㣅
+ 0x38c6: "mi2", // 㣆
+ 0x38c7: "yi4", // 㣇
+ 0x38c8: "si4", // 㣈
+ 0x38cc: "shan4", // 㣌
+ 0x38cd: "tai2", // 㣍
+ 0x38ce: "mu4", // 㣎
+ 0x38cf: "jing4", // 㣏
+ 0x38d0: "bian4", // 㣐
+ 0x38d1: "rong2", // 㣑
+ 0x38d2: "ceng4", // 㣒
+ 0x38d3: "can4", // 㣓
+ 0x38d4: "ding1", // 㣔
+ 0x38d9: "di2", // 㣙
+ 0x38da: "tong3", // 㣚
+ 0x38db: "ta4", // 㣛
+ 0x38dc: "xing2", // 㣜
+ 0x38dd: "song1", // 㣝
+ 0x38de: "duo2", // 㣞
+ 0x38df: "xi4", // 㣟
+ 0x38e0: "tao1", // 㣠
+ 0x38e2: "ti2", // 㣢
+ 0x38e3: "shan4", // 㣣
+ 0x38e4: "jian4", // 㣤
+ 0x38e5: "zhi4", // 㣥
+ 0x38e6: "wei1", // 㣦
+ 0x38e7: "yin4", // 㣧
+ 0x38ea: "huan3", // 㣪
+ 0x38eb: "zhong3", // 㣫
+ 0x38ec: "qi4", // 㣬
+ 0x38ed: "zong1", // 㣭
+ 0x38ef: "xie4", // 㣯
+ 0x38f0: "xie4", // 㣰
+ 0x38f1: "ze2", // 㣱
+ 0x38f2: "wei2", // 㣲
+ 0x38f5: "ta4", // 㣵
+ 0x38f6: "zhan1", // 㣶
+ 0x38f7: "ning4", // 㣷
+ 0x38fb: "yi4", // 㣻
+ 0x38fc: "ren3", // 㣼
+ 0x38fd: "shu4", // 㣽
+ 0x38fe: "cha4", // 㣾
+ 0x38ff: "zhuo2", // 㣿
+ 0x3901: "mian3", // 㤁
+ 0x3902: "ji2", // 㤂
+ 0x3903: "fang2", // 㤃
+ 0x3904: "pei4", // 㤄
+ 0x3905: "ai4", // 㤅
+ 0x3906: "fan4", // 㤆
+ 0x3907: "ao3", // 㤇
+ 0x3908: "qin4", // 㤈
+ 0x3909: "qia1", // 㤉
+ 0x390a: "xiao4", // 㤊
+ 0x390b: "fen1", // 㤋
+ 0x390c: "gan1", // 㤌
+ 0x390d: "qiao1", // 㤍
+ 0x390e: "ge1", // 㤎
+ 0x390f: "tong2", // 㤏
+ 0x3910: "chan1", // 㤐
+ 0x3911: "you4", // 㤑
+ 0x3912: "gao1", // 㤒
+ 0x3913: "ben4", // 㤓
+ 0x3914: "fu4", // 㤔
+ 0x3915: "chu4", // 㤕
+ 0x3916: "zhu4", // 㤖
+ 0x3918: "zhou4", // 㤘
+ 0x391a: "hang2", // 㤚
+ 0x391b: "nin2", // 㤛
+ 0x391c: "jue2", // 㤜
+ 0x391d: "chong1", // 㤝
+ 0x391e: "cha4", // 㤞
+ 0x391f: "kong3", // 㤟
+ 0x3920: "lie4", // 㤠
+ 0x3921: "li4", // 㤡
+ 0x3922: "yu4", // 㤢
+ 0x3924: "yu2", // 㤤
+ 0x3925: "hai4", // 㤥
+ 0x3926: "li4", // 㤦
+ 0x3927: "hou2", // 㤧
+ 0x3928: "gong3", // 㤨
+ 0x3929: "ke4", // 㤩
+ 0x392a: "yuan4", // 㤪
+ 0x392b: "de2", // 㤫
+ 0x392c: "hui4", // 㤬
+ 0x392e: "guang4", // 㤮
+ 0x392f: "jiong3", // 㤯
+ 0x3930: "zuo4", // 㤰
+ 0x3931: "fu4", // 㤱
+ 0x3932: "qie4", // 㤲
+ 0x3933: "bei3", // 㤳
+ 0x3934: "che4", // 㤴
+ 0x3935: "ci2", // 㤵
+ 0x3936: "mang2", // 㤶
+ 0x3937: "han1", // 㤷
+ 0x3938: "xi4", // 㤸
+ 0x3939: "qiu2", // 㤹
+ 0x393a: "huang3", // 㤺
+ 0x393d: "chou2", // 㤽
+ 0x393e: "san4", // 㤾
+ 0x393f: "yan1", // 㤿
+ 0x3940: "zhi2", // 㥀
+ 0x3941: "de2", // 㥁
+ 0x3942: "te4", // 㥂
+ 0x3943: "men4", // 㥃
+ 0x3944: "ling2", // 㥄
+ 0x3945: "shou4", // 㥅
+ 0x3946: "tui4", // 㥆
+ 0x3947: "can2", // 㥇
+ 0x3948: "die2", // 㥈
+ 0x3949: "che4", // 㥉
+ 0x394a: "peng2", // 㥊
+ 0x394b: "yi1", // 㥋
+ 0x394c: "ju2", // 㥌
+ 0x394d: "ji4", // 㥍
+ 0x394e: "lai2", // 㥎
+ 0x394f: "tian3", // 㥏
+ 0x3950: "yuan4", // 㥐
+ 0x3952: "cai3", // 㥒
+ 0x3953: "qi1", // 㥓
+ 0x3954: "yu4", // 㥔
+ 0x3955: "lian2", // 㥕
+ 0x3956: "cong1", // 㥖
+ 0x395a: "yu2", // 㥚
+ 0x395b: "ji2", // 㥛
+ 0x395c: "wei4", // 㥜
+ 0x395d: "mi3", // 㥝
+ 0x395e: "sui4", // 㥞
+ 0x395f: "xie2", // 㥟
+ 0x3960: "xu1", // 㥠
+ 0x3961: "chi4", // 㥡
+ 0x3962: "qiu2", // 㥢
+ 0x3963: "hui4", // 㥣
+ 0x3965: "yu2", // 㥥
+ 0x3966: "qie4", // 㥦
+ 0x3967: "shun4", // 㥧
+ 0x3968: "shui4", // 㥨
+ 0x3969: "duo3", // 㥩
+ 0x396a: "lou2", // 㥪
+ 0x396c: "pang2", // 㥬
+ 0x396d: "tai4", // 㥭
+ 0x396e: "zhou4", // 㥮
+ 0x396f: "yin3", // 㥯
+ 0x3970: "sao1", // 㥰
+ 0x3971: "fei3", // 㥱
+ 0x3972: "chen1", // 㥲
+ 0x3973: "yuan2", // 㥳
+ 0x3974: "yi2", // 㥴
+ 0x3975: "hun4", // 㥵
+ 0x3976: "se4", // 㥶
+ 0x3977: "ye4", // 㥷
+ 0x3978: "min3", // 㥸
+ 0x3979: "fen3", // 㥹
+ 0x397a: "he2", // 㥺
+ 0x397c: "yin4", // 㥼
+ 0x397d: "ce4", // 㥽
+ 0x397e: "ni4", // 㥾
+ 0x397f: "ao4", // 㥿
+ 0x3980: "feng2", // 㦀
+ 0x3981: "lian2", // 㦁
+ 0x3982: "chang2", // 㦂
+ 0x3983: "chan3", // 㦃
+ 0x3984: "ma2", // 㦄
+ 0x3985: "die1", // 㦅
+ 0x3986: "hu1", // 㦆
+ 0x3987: "lu4", // 㦇
+ 0x3989: "yi4", // 㦉
+ 0x398a: "hua2", // 㦊
+ 0x398b: "zha1", // 㦋
+ 0x398c: "hu1", // 㦌
+ 0x398d: "e4", // 㦍
+ 0x398e: "huo4", // 㦎
+ 0x398f: "sun3", // 㦏
+ 0x3990: "ni4", // 㦐
+ 0x3991: "xian4", // 㦑
+ 0x3992: "li2", // 㦒
+ 0x3993: "xian4", // 㦓
+ 0x3994: "yan4", // 㦔
+ 0x3995: "long2", // 㦕
+ 0x3996: "men4", // 㦖
+ 0x3997: "jin1", // 㦗
+ 0x3998: "ji1", // 㦘
+ 0x399a: "bian3", // 㦚
+ 0x399b: "yu3", // 㦛
+ 0x399c: "huo4", // 㦜
+ 0x399d: "miao3", // 㦝
+ 0x399e: "chou2", // 㦞
+ 0x399f: "mai2", // 㦟
+ 0x39a1: "le4", // 㦡
+ 0x39a2: "jie2", // 㦢
+ 0x39a3: "wei4", // 㦣
+ 0x39a4: "yi4", // 㦤
+ 0x39a5: "xuan1", // 㦥
+ 0x39a6: "xi4", // 㦦
+ 0x39a7: "can3", // 㦧
+ 0x39a8: "lan2", // 㦨
+ 0x39a9: "yin3", // 㦩
+ 0x39aa: "xie4", // 㦪
+ 0x39ab: "za1", // 㦫
+ 0x39ac: "luo3", // 㦬
+ 0x39ad: "ling2", // 㦭
+ 0x39ae: "qian2", // 㦮
+ 0x39af: "huo4", // 㦯
+ 0x39b0: "jian1", // 㦰
+ 0x39b1: "wo3", // 㦱
+ 0x39b4: "ge2", // 㦴
+ 0x39b5: "zhu1", // 㦵
+ 0x39b6: "die2", // 㦶
+ 0x39b7: "yong3", // 㦷
+ 0x39b8: "ji3", // 㦸
+ 0x39b9: "yang2", // 㦹
+ 0x39ba: "ru4", // 㦺
+ 0x39bb: "xi2", // 㦻
+ 0x39bc: "shuang4", // 㦼
+ 0x39bd: "yu4", // 㦽
+ 0x39be: "yi2", // 㦾
+ 0x39bf: "qian3", // 㦿
+ 0x39c0: "ji2", // 㧀
+ 0x39c1: "qu4", // 㧁
+ 0x39c2: "tian2", // 㧂
+ 0x39c3: "shou1", // 㧃
+ 0x39c4: "qian3", // 㧄
+ 0x39c5: "mu4", // 㧅
+ 0x39c6: "jin1", // 㧆
+ 0x39c7: "mao3", // 㧇
+ 0x39c8: "yin3", // 㧈
+ 0x39c9: "gai4", // 㧉
+ 0x39ca: "po1", // 㧊
+ 0x39cb: "xuan3", // 㧋
+ 0x39cc: "mao4", // 㧌
+ 0x39cd: "fang3", // 㧍
+ 0x39ce: "ya2", // 㧎
+ 0x39cf: "gang1", // 㧏
+ 0x39d0: "song3", // 㧐
+ 0x39d1: "hui1", // 㧑
+ 0x39d2: "yu4", // 㧒
+ 0x39d3: "gua1", // 㧓
+ 0x39d4: "guai4", // 㧔
+ 0x39d5: "liu3", // 㧕
+ 0x39d6: "e4", // 㧖
+ 0x39d7: "zi3", // 㧗
+ 0x39d8: "zi4", // 㧘
+ 0x39d9: "bi4", // 㧙
+ 0x39da: "wa3", // 㧚
+ 0x39dc: "lie4", // 㧜
+ 0x39df: "kuai3", // 㧟
+ 0x39e1: "hai4", // 㧡
+ 0x39e2: "yin1", // 㧢
+ 0x39e3: "zhu1", // 㧣
+ 0x39e4: "chong4", // 㧤
+ 0x39e5: "xian3", // 㧥
+ 0x39e6: "xuan4", // 㧦
+ 0x39e8: "qiu2", // 㧨
+ 0x39e9: "pei4", // 㧩
+ 0x39ea: "gui3", // 㧪
+ 0x39eb: "er2", // 㧫
+ 0x39ec: "gong3", // 㧬
+ 0x39ed: "qiong2", // 㧭
+ 0x39ee: "hu1", // 㧮
+ 0x39ef: "lao3", // 㧯
+ 0x39f0: "li4", // 㧰
+ 0x39f1: "chen4", // 㧱
+ 0x39f2: "san3", // 㧲
+ 0x39f3: "zhuo4", // 㧳
+ 0x39f4: "wo3", // 㧴
+ 0x39f5: "pou2", // 㧵
+ 0x39f6: "keng1", // 㧶
+ 0x39f7: "tun4", // 㧷
+ 0x39f8: "peng1", // 㧸
+ 0x39f9: "te4", // 㧹
+ 0x39fa: "ta4", // 㧺
+ 0x39fb: "zhuo2", // 㧻
+ 0x39fc: "biao4", // 㧼
+ 0x39fd: "gu4", // 㧽
+ 0x39fe: "hu1", // 㧾
+ 0x3a00: "bing3", // 㨀
+ 0x3a01: "zhi4", // 㨁
+ 0x3a02: "dong3", // 㨂
+ 0x3a03: "dui3", // 㨃
+ 0x3a04: "zhou1", // 㨄
+ 0x3a05: "nei4", // 㨅
+ 0x3a06: "lin3", // 㨆
+ 0x3a07: "po2", // 㨇
+ 0x3a08: "ji3", // 㨈
+ 0x3a09: "min2", // 㨉
+ 0x3a0a: "wei3", // 㨊
+ 0x3a0b: "che3", // 㨋
+ 0x3a0c: "gou4", // 㨌
+ 0x3a0d: "bang1", // 㨍
+ 0x3a0e: "ru2", // 㨎
+ 0x3a0f: "tan1", // 㨏
+ 0x3a10: "bu3", // 㨐
+ 0x3a11: "zong1", // 㨑
+ 0x3a12: "kui1", // 㨒
+ 0x3a13: "lao2", // 㨓
+ 0x3a14: "han4", // 㨔
+ 0x3a15: "ying2", // 㨕
+ 0x3a16: "zhi4", // 㨖
+ 0x3a17: "jie2", // 㨗
+ 0x3a18: "xing3", // 㨘
+ 0x3a19: "xie2", // 㨙
+ 0x3a1a: "xun2", // 㨚
+ 0x3a1b: "shan3", // 㨛
+ 0x3a1c: "qian2", // 㨜
+ 0x3a1d: "xie1", // 㨝
+ 0x3a1e: "su4", // 㨞
+ 0x3a1f: "hai1", // 㨟
+ 0x3a20: "mi4", // 㨠
+ 0x3a21: "hun2", // 㨡
+ 0x3a22: "pi1", // 㨢
+ 0x3a24: "hui4", // 㨤
+ 0x3a25: "na4", // 㨥
+ 0x3a26: "song3", // 㨦
+ 0x3a27: "ben4", // 㨧
+ 0x3a28: "chou1", // 㨨
+ 0x3a29: "jie2", // 㨩
+ 0x3a2a: "huang4", // 㨪
+ 0x3a2b: "lan3", // 㨫
+ 0x3a2d: "hu4", // 㨭
+ 0x3a2e: "dou1", // 㨮
+ 0x3a2f: "huo4", // 㨯
+ 0x3a30: "gun3", // 㨰
+ 0x3a31: "yao2", // 㨱
+ 0x3a32: "ce4", // 㨲
+ 0x3a33: "gui3", // 㨳
+ 0x3a34: "jian4", // 㨴
+ 0x3a35: "jian3", // 㨵
+ 0x3a36: "dao3", // 㨶
+ 0x3a37: "jin4", // 㨷
+ 0x3a38: "ma4", // 㨸
+ 0x3a39: "hui4", // 㨹
+ 0x3a3a: "mian3", // 㨺
+ 0x3a3b: "can2", // 㨻
+ 0x3a3c: "lve4", // 㨼
+ 0x3a3d: "pi4", // 㨽
+ 0x3a3e: "yang4", // 㨾
+ 0x3a3f: "ju4", // 㨿
+ 0x3a40: "ju4", // 㩀
+ 0x3a41: "que4", // 㩁
+ 0x3a43: "qian1", // 㩃
+ 0x3a44: "shai1", // 㩄
+ 0x3a46: "jiu4", // 㩆
+ 0x3a47: "huo4", // 㩇
+ 0x3a48: "yun3", // 㩈
+ 0x3a49: "da2", // 㩉
+ 0x3a4a: "xuan1", // 㩊
+ 0x3a4b: "xiao1", // 㩋
+ 0x3a4c: "fei4", // 㩌
+ 0x3a4d: "ce4", // 㩍
+ 0x3a4e: "ye4", // 㩎
+ 0x3a50: "den4", // 㩐
+ 0x3a52: "qin2", // 㩒
+ 0x3a53: "hui3", // 㩓
+ 0x3a54: "tun2", // 㩔
+ 0x3a56: "qiang2", // 㩖
+ 0x3a57: "xi2", // 㩗
+ 0x3a58: "ni3", // 㩘
+ 0x3a59: "sai1", // 㩙
+ 0x3a5a: "meng2", // 㩚
+ 0x3a5b: "tuan2", // 㩛
+ 0x3a5c: "lan3", // 㩜
+ 0x3a5d: "hao2", // 㩝
+ 0x3a5e: "ci4", // 㩞
+ 0x3a5f: "zhai4", // 㩟
+ 0x3a60: "ao1", // 㩠
+ 0x3a61: "luo3", // 㩡
+ 0x3a62: "mie4", // 㩢
+ 0x3a64: "fu1", // 㩤
+ 0x3a66: "xie2", // 㩦
+ 0x3a67: "bo2", // 㩧
+ 0x3a68: "hui4", // 㩨
+ 0x3a69: "qing3", // 㩩
+ 0x3a6a: "xie2", // 㩪
+ 0x3a6d: "bo2", // 㩭
+ 0x3a6e: "qian2", // 㩮
+ 0x3a6f: "po2", // 㩯
+ 0x3a70: "jiao3", // 㩰
+ 0x3a71: "jue2", // 㩱
+ 0x3a72: "kun3", // 㩲
+ 0x3a73: "song3", // 㩳
+ 0x3a74: "ju2", // 㩴
+ 0x3a75: "e4", // 㩵
+ 0x3a76: "nie4", // 㩶
+ 0x3a77: "qian1", // 㩷
+ 0x3a78: "die2", // 㩸
+ 0x3a79: "die2", // 㩹
+ 0x3a7b: "qi1", // 㩻
+ 0x3a7c: "zhi1", // 㩼
+ 0x3a7d: "qi2", // 㩽
+ 0x3a7e: "zhui4", // 㩾
+ 0x3a7f: "ku1", // 㩿
+ 0x3a80: "yu2", // 㪀
+ 0x3a81: "qin2", // 㪁
+ 0x3a82: "ku1", // 㪂
+ 0x3a83: "he2", // 㪃
+ 0x3a84: "fu2", // 㪄
+ 0x3a86: "di3", // 㪆
+ 0x3a87: "xian4", // 㪇
+ 0x3a88: "gui4", // 㪈
+ 0x3a89: "he2", // 㪉
+ 0x3a8a: "qun2", // 㪊
+ 0x3a8b: "han4", // 㪋
+ 0x3a8c: "tong3", // 㪌
+ 0x3a8d: "bo2", // 㪍
+ 0x3a8e: "shan3", // 㪎
+ 0x3a8f: "bi3", // 㪏
+ 0x3a90: "lu4", // 㪐
+ 0x3a91: "ye4", // 㪑
+ 0x3a92: "ni2", // 㪒
+ 0x3a93: "chuai2", // 㪓
+ 0x3a94: "san4", // 㪔
+ 0x3a95: "diao4", // 㪕
+ 0x3a96: "lu4", // 㪖
+ 0x3a97: "tou3", // 㪗
+ 0x3a98: "lian3", // 㪘
+ 0x3a99: "ke3", // 㪙
+ 0x3a9a: "san4", // 㪚
+ 0x3a9b: "zhen3", // 㪛
+ 0x3a9c: "chuai3", // 㪜
+ 0x3a9d: "lian4", // 㪝
+ 0x3a9e: "mao4", // 㪞
+ 0x3aa0: "qian1", // 㪠
+ 0x3aa1: "kai4", // 㪡
+ 0x3aa2: "shao3", // 㪢
+ 0x3aa3: "xiao1", // 㪣
+ 0x3aa4: "bi4", // 㪤
+ 0x3aa5: "zha1", // 㪥
+ 0x3aa6: "yin4", // 㪦
+ 0x3aa7: "xi1", // 㪧
+ 0x3aa8: "shan4", // 㪨
+ 0x3aa9: "su4", // 㪩
+ 0x3aaa: "sa4", // 㪪
+ 0x3aab: "rui4", // 㪫
+ 0x3aac: "chuo1", // 㪬
+ 0x3aad: "lu2", // 㪭
+ 0x3aae: "ling2", // 㪮
+ 0x3aaf: "cha2", // 㪯
+ 0x3ab1: "huan4", // 㪱
+ 0x3ab4: "jia2", // 㪴
+ 0x3ab5: "ban4", // 㪵
+ 0x3ab6: "hu2", // 㪶
+ 0x3ab7: "dou3", // 㪷
+ 0x3ab9: "lou3", // 㪹
+ 0x3aba: "ju1", // 㪺
+ 0x3abb: "juan4", // 㪻
+ 0x3abc: "ke3", // 㪼
+ 0x3abd: "suo3", // 㪽
+ 0x3abe: "luo4", // 㪾
+ 0x3abf: "zhe2", // 㪿
+ 0x3ac0: "ding3", // 㫀
+ 0x3ac1: "duan4", // 㫁
+ 0x3ac2: "zhu4", // 㫂
+ 0x3ac3: "yan3", // 㫃
+ 0x3ac4: "pang2", // 㫄
+ 0x3ac5: "cha2", // 㫅
+ 0x3aca: "yi3", // 㫊
+ 0x3acd: "you2", // 㫍
+ 0x3ace: "hui1", // 㫎
+ 0x3acf: "yao3", // 㫏
+ 0x3ad0: "yao3", // 㫐
+ 0x3ad1: "zhi3", // 㫑
+ 0x3ad2: "gong3", // 㫒
+ 0x3ad3: "qi3", // 㫓
+ 0x3ad4: "gen4", // 㫔
+ 0x3ad7: "hou4", // 㫗
+ 0x3ad8: "mi4", // 㫘
+ 0x3ad9: "fu2", // 㫙
+ 0x3ada: "hu1", // 㫚
+ 0x3adb: "guang4", // 㫛
+ 0x3adc: "tan3", // 㫜
+ 0x3add: "di1", // 㫝
+ 0x3adf: "yan2", // 㫟
+ 0x3ae2: "qu4", // 㫢
+ 0x3ae4: "chang3", // 㫤
+ 0x3ae5: "ming3", // 㫥
+ 0x3ae6: "tao1", // 㫦
+ 0x3ae7: "bao4", // 㫧
+ 0x3ae8: "an1", // 㫨
+ 0x3aeb: "xian3", // 㫫
+ 0x3aef: "mao4", // 㫯
+ 0x3af0: "lang4", // 㫰
+ 0x3af1: "nan3", // 㫱
+ 0x3af2: "bei4", // 㫲
+ 0x3af3: "chen2", // 㫳
+ 0x3af5: "fei1", // 㫵
+ 0x3af6: "zhou3", // 㫶
+ 0x3af7: "ji1", // 㫷
+ 0x3af8: "jie1", // 㫸
+ 0x3af9: "shu4", // 㫹
+ 0x3afb: "kun4", // 㫻
+ 0x3afc: "die2", // 㫼
+ 0x3afd: "lu4", // 㫽
+ 0x3b02: "yu2", // 㬂
+ 0x3b03: "tai2", // 㬃
+ 0x3b04: "chan4", // 㬄
+ 0x3b05: "man4", // 㬅
+ 0x3b06: "min3", // 㬆
+ 0x3b07: "huan4", // 㬇
+ 0x3b08: "wen1", // 㬈
+ 0x3b09: "nuan3", // 㬉
+ 0x3b0a: "huan4", // 㬊
+ 0x3b0b: "hou2", // 㬋
+ 0x3b0c: "jing4", // 㬌
+ 0x3b0d: "bo2", // 㬍
+ 0x3b0e: "xian3", // 㬎
+ 0x3b0f: "li4", // 㬏
+ 0x3b10: "jin4", // 㬐
+ 0x3b12: "mang3", // 㬒
+ 0x3b13: "piao4", // 㬓
+ 0x3b14: "hao2", // 㬔
+ 0x3b15: "yang2", // 㬕
+ 0x3b17: "xian4", // 㬗
+ 0x3b18: "su4", // 㬘
+ 0x3b19: "wei3", // 㬙
+ 0x3b1a: "che4", // 㬚
+ 0x3b1b: "xi1", // 㬛
+ 0x3b1c: "jin4", // 㬜
+ 0x3b1d: "ceng2", // 㬝
+ 0x3b1e: "he4", // 㬞
+ 0x3b1f: "fen1", // 㬟
+ 0x3b20: "shai4", // 㬠
+ 0x3b21: "ling2", // 㬡
+ 0x3b23: "dui4", // 㬣
+ 0x3b24: "qi1", // 㬤
+ 0x3b25: "pu4", // 㬥
+ 0x3b26: "yue4", // 㬦
+ 0x3b27: "bo2", // 㬧
+ 0x3b29: "hui4", // 㬩
+ 0x3b2a: "die2", // 㬪
+ 0x3b2b: "yan4", // 㬫
+ 0x3b2c: "ju4", // 㬬
+ 0x3b2d: "jiao4", // 㬭
+ 0x3b2e: "nan4", // 㬮
+ 0x3b2f: "lie4", // 㬯
+ 0x3b30: "yu2", // 㬰
+ 0x3b31: "ti4", // 㬱
+ 0x3b32: "tian1", // 㬲
+ 0x3b33: "wu3", // 㬳
+ 0x3b34: "hong3", // 㬴
+ 0x3b35: "xiao2", // 㬵
+ 0x3b36: "hao4", // 㬶
+ 0x3b38: "tiao1", // 㬸
+ 0x3b39: "zheng1", // 㬹
+ 0x3b3b: "huang1", // 㬻
+ 0x3b3c: "fu4", // 㬼
+ 0x3b3f: "tun1", // 㬿
+ 0x3b41: "reng2", // 㭁
+ 0x3b42: "jiao3", // 㭂
+ 0x3b44: "xin4", // 㭄
+ 0x3b47: "yuan4", // 㭇
+ 0x3b48: "jue2", // 㭈
+ 0x3b49: "hua2", // 㭉
+ 0x3b4b: "bang4", // 㭋
+ 0x3b4c: "mou2", // 㭌
+ 0x3b4e: "gang1", // 㭎
+ 0x3b4f: "wei3", // 㭏
+ 0x3b51: "mei4", // 㭑
+ 0x3b52: "si4", // 㭒
+ 0x3b53: "bian4", // 㭓
+ 0x3b54: "lu2", // 㭔
+ 0x3b55: "qu1", // 㭕
+ 0x3b58: "ge2", // 㭘
+ 0x3b59: "zhe2", // 㭙
+ 0x3b5a: "lv3", // 㭚
+ 0x3b5b: "pai4", // 㭛
+ 0x3b5c: "rong2", // 㭜
+ 0x3b5d: "qiu2", // 㭝
+ 0x3b5e: "lie4", // 㭞
+ 0x3b5f: "gong3", // 㭟
+ 0x3b60: "xian3", // 㭠
+ 0x3b61: "xi4", // 㭡
+ 0x3b62: "xin1", // 㭢
+ 0x3b64: "niao3", // 㭤
+ 0x3b68: "xie2", // 㭨
+ 0x3b69: "lie4", // 㭩
+ 0x3b6a: "fu1", // 㭪
+ 0x3b6b: "cuo2", // 㭫
+ 0x3b6c: "zhuo2", // 㭬
+ 0x3b6d: "ba1", // 㭭
+ 0x3b6e: "zuo4", // 㭮
+ 0x3b6f: "zhe2", // 㭯
+ 0x3b70: "zui1", // 㭰
+ 0x3b71: "he2", // 㭱
+ 0x3b72: "ji2", // 㭲
+ 0x3b74: "jian1", // 㭴
+ 0x3b78: "tu2", // 㭸
+ 0x3b79: "xian2", // 㭹
+ 0x3b7a: "yan3", // 㭺
+ 0x3b7b: "tang2", // 㭻
+ 0x3b7c: "ta4", // 㭼
+ 0x3b7d: "di3", // 㭽
+ 0x3b7e: "jue2", // 㭾
+ 0x3b7f: "ang2", // 㭿
+ 0x3b80: "han2", // 㮀
+ 0x3b81: "xiao2", // 㮁
+ 0x3b82: "ju2", // 㮂
+ 0x3b83: "wei1", // 㮃
+ 0x3b84: "bang3", // 㮄
+ 0x3b85: "zhui1", // 㮅
+ 0x3b86: "nie4", // 㮆
+ 0x3b87: "tian4", // 㮇
+ 0x3b88: "nai4", // 㮈
+ 0x3b8b: "you3", // 㮋
+ 0x3b8c: "mian2", // 㮌
+ 0x3b8f: "nai4", // 㮏
+ 0x3b90: "sheng3", // 㮐
+ 0x3b91: "cha1", // 㮑
+ 0x3b92: "yan1", // 㮒
+ 0x3b93: "gen4", // 㮓
+ 0x3b94: "chong4", // 㮔
+ 0x3b95: "ruan3", // 㮕
+ 0x3b96: "jia2", // 㮖
+ 0x3b97: "qin2", // 㮗
+ 0x3b98: "mao2", // 㮘
+ 0x3b99: "e4", // 㮙
+ 0x3b9a: "li4", // 㮚
+ 0x3b9b: "chi2", // 㮛
+ 0x3b9c: "zang1", // 㮜
+ 0x3b9d: "he2", // 㮝
+ 0x3b9e: "jie2", // 㮞
+ 0x3b9f: "nian3", // 㮟
+ 0x3ba1: "guan4", // 㮡
+ 0x3ba2: "hou2", // 㮢
+ 0x3ba3: "gai4", // 㮣
+ 0x3ba5: "ben4", // 㮥
+ 0x3ba6: "suo3", // 㮦
+ 0x3ba7: "wu1", // 㮧
+ 0x3ba8: "ji4", // 㮨
+ 0x3ba9: "xi1", // 㮩
+ 0x3baa: "qiong2", // 㮪
+ 0x3bab: "he2", // 㮫
+ 0x3bac: "weng1", // 㮬
+ 0x3bad: "xian2", // 㮭
+ 0x3bae: "jie2", // 㮮
+ 0x3baf: "hun2", // 㮯
+ 0x3bb0: "pi2", // 㮰
+ 0x3bb1: "shen1", // 㮱
+ 0x3bb2: "chou1", // 㮲
+ 0x3bb3: "zhen4", // 㮳
+ 0x3bb5: "zhan1", // 㮵
+ 0x3bb6: "shuo4", // 㮶
+ 0x3bb7: "ji1", // 㮷
+ 0x3bb8: "song4", // 㮸
+ 0x3bb9: "zhi3", // 㮹
+ 0x3bba: "ben3", // 㮺
+ 0x3bbe: "lang3", // 㮾
+ 0x3bbf: "bi4", // 㮿
+ 0x3bc0: "xuan4", // 㯀
+ 0x3bc1: "pei2", // 㯁
+ 0x3bc2: "dai4", // 㯂
+ 0x3bc4: "zhi1", // 㯄
+ 0x3bc5: "pi2", // 㯅
+ 0x3bc6: "chan3", // 㯆
+ 0x3bc7: "bi4", // 㯇
+ 0x3bc8: "su4", // 㯈
+ 0x3bc9: "huo4", // 㯉
+ 0x3bca: "hen2", // 㯊
+ 0x3bcb: "jiong3", // 㯋
+ 0x3bcc: "chuan2", // 㯌
+ 0x3bcd: "jiang3", // 㯍
+ 0x3bce: "nen4", // 㯎
+ 0x3bcf: "gu3", // 㯏
+ 0x3bd0: "fang3", // 㯐
+ 0x3bd3: "ta4", // 㯓
+ 0x3bd4: "cui4", // 㯔
+ 0x3bd5: "xi1", // 㯕
+ 0x3bd6: "de2", // 㯖
+ 0x3bd7: "xian2", // 㯗
+ 0x3bd8: "kuan3", // 㯘
+ 0x3bd9: "zhe2", // 㯙
+ 0x3bda: "ta1", // 㯚
+ 0x3bdb: "hu2", // 㯛
+ 0x3bdc: "cui4", // 㯜
+ 0x3bdd: "lu4", // 㯝
+ 0x3bde: "juan4", // 㯞
+ 0x3bdf: "lu4", // 㯟
+ 0x3be0: "qian4", // 㯠
+ 0x3be1: "pao4", // 㯡
+ 0x3be2: "zhen4", // 㯢
+ 0x3be4: "li4", // 㯤
+ 0x3be5: "cao2", // 㯥
+ 0x3be6: "qi2", // 㯦
+ 0x3be9: "ti4", // 㯩
+ 0x3bea: "ling2", // 㯪
+ 0x3beb: "qu2", // 㯫
+ 0x3bec: "lian3", // 㯬
+ 0x3bed: "lu3", // 㯭
+ 0x3bee: "shu2", // 㯮
+ 0x3bef: "gong4", // 㯯
+ 0x3bf0: "zhe2", // 㯰
+ 0x3bf1: "pao1", // 㯱
+ 0x3bf2: "jin4", // 㯲
+ 0x3bf3: "qing2", // 㯳
+ 0x3bf6: "zong1", // 㯶
+ 0x3bf7: "pu2", // 㯷
+ 0x3bf8: "jin3", // 㯸
+ 0x3bf9: "biao3", // 㯹
+ 0x3bfa: "jian4", // 㯺
+ 0x3bfb: "gun3", // 㯻
+ 0x3bfe: "zao1", // 㯾
+ 0x3bff: "lie4", // 㯿
+ 0x3c00: "li2", // 㰀
+ 0x3c01: "luo3", // 㰁
+ 0x3c02: "shen3", // 㰂
+ 0x3c03: "mian2", // 㰃
+ 0x3c04: "jian4", // 㰄
+ 0x3c05: "di2", // 㰅
+ 0x3c06: "bei4", // 㰆
+ 0x3c08: "lian3", // 㰈
+ 0x3c0a: "xian2", // 㰊
+ 0x3c0b: "pin2", // 㰋
+ 0x3c0c: "que4", // 㰌
+ 0x3c0d: "long2", // 㰍
+ 0x3c0e: "zui4", // 㰎
+ 0x3c10: "jue2", // 㰐
+ 0x3c11: "shan1", // 㰑
+ 0x3c12: "xue2", // 㰒
+ 0x3c14: "xie4", // 㰔
+ 0x3c16: "lan3", // 㰖
+ 0x3c17: "qi2", // 㰗
+ 0x3c18: "yi2", // 㰘
+ 0x3c19: "nuo2", // 㰙
+ 0x3c1a: "li2", // 㰚
+ 0x3c1b: "yue4", // 㰛
+ 0x3c1d: "yi3", // 㰝
+ 0x3c1e: "chi1", // 㰞
+ 0x3c1f: "ji4", // 㰟
+ 0x3c20: "hang1", // 㰠
+ 0x3c21: "xie4", // 㰡
+ 0x3c22: "keng1", // 㰢
+ 0x3c23: "zi1", // 㰣
+ 0x3c24: "he1", // 㰤
+ 0x3c25: "xi4", // 㰥
+ 0x3c26: "qu4", // 㰦
+ 0x3c27: "hai1", // 㰧
+ 0x3c28: "xia1", // 㰨
+ 0x3c29: "hai1", // 㰩
+ 0x3c2a: "gui1", // 㰪
+ 0x3c2b: "chan1", // 㰫
+ 0x3c2c: "xun2", // 㰬
+ 0x3c2d: "xu1", // 㰭
+ 0x3c2e: "shen4", // 㰮
+ 0x3c2f: "kou4", // 㰯
+ 0x3c30: "xia1", // 㰰
+ 0x3c31: "sha4", // 㰱
+ 0x3c32: "yu1", // 㰲
+ 0x3c33: "ya4", // 㰳
+ 0x3c34: "pou3", // 㰴
+ 0x3c35: "zu2", // 㰵
+ 0x3c36: "you3", // 㰶
+ 0x3c37: "zi4", // 㰷
+ 0x3c38: "lian3", // 㰸
+ 0x3c39: "xian1", // 㰹
+ 0x3c3a: "xia4", // 㰺
+ 0x3c3b: "yi3", // 㰻
+ 0x3c3c: "sha4", // 㰼
+ 0x3c3d: "yan4", // 㰽
+ 0x3c3e: "jiao4", // 㰾
+ 0x3c3f: "xi1", // 㰿
+ 0x3c40: "chi3", // 㱀
+ 0x3c41: "shi4", // 㱁
+ 0x3c42: "kang1", // 㱂
+ 0x3c43: "yin3", // 㱃
+ 0x3c44: "hei1", // 㱄
+ 0x3c45: "yi4", // 㱅
+ 0x3c46: "xi1", // 㱆
+ 0x3c47: "se4", // 㱇
+ 0x3c48: "jin4", // 㱈
+ 0x3c49: "ye4", // 㱉
+ 0x3c4a: "you1", // 㱊
+ 0x3c4b: "que4", // 㱋
+ 0x3c4c: "ye2", // 㱌
+ 0x3c4d: "luan2", // 㱍
+ 0x3c4e: "kun1", // 㱎
+ 0x3c4f: "zheng4", // 㱏
+ 0x3c54: "xie1", // 㱔
+ 0x3c56: "cui4", // 㱖
+ 0x3c57: "xiu1", // 㱗
+ 0x3c58: "an4", // 㱘
+ 0x3c59: "xiu3", // 㱙
+ 0x3c5a: "can2", // 㱚
+ 0x3c5b: "chuan3", // 㱛
+ 0x3c5c: "zha2", // 㱜
+ 0x3c5e: "yi4", // 㱞
+ 0x3c5f: "pi1", // 㱟
+ 0x3c60: "ku1", // 㱠
+ 0x3c61: "sheng1", // 㱡
+ 0x3c62: "lang2", // 㱢
+ 0x3c63: "tui3", // 㱣
+ 0x3c64: "xi1", // 㱤
+ 0x3c65: "ling2", // 㱥
+ 0x3c66: "qi1", // 㱦
+ 0x3c67: "wo4", // 㱧
+ 0x3c68: "lian4", // 㱨
+ 0x3c69: "du2", // 㱩
+ 0x3c6a: "men4", // 㱪
+ 0x3c6b: "lan4", // 㱫
+ 0x3c6c: "wei3", // 㱬
+ 0x3c6d: "duan4", // 㱭
+ 0x3c6e: "kuai4", // 㱮
+ 0x3c6f: "ai2", // 㱯
+ 0x3c70: "zai3", // 㱰
+ 0x3c71: "hui4", // 㱱
+ 0x3c72: "yi4", // 㱲
+ 0x3c73: "mo4", // 㱳
+ 0x3c74: "zi4", // 㱴
+ 0x3c75: "fen4", // 㱵
+ 0x3c76: "peng2", // 㱶
+ 0x3c78: "bi4", // 㱸
+ 0x3c79: "li4", // 㱹
+ 0x3c7a: "lu2", // 㱺
+ 0x3c7b: "luo4", // 㱻
+ 0x3c7c: "hai1", // 㱼
+ 0x3c7d: "zhen3", // 㱽
+ 0x3c7e: "gai1", // 㱾
+ 0x3c7f: "que4", // 㱿
+ 0x3c80: "zhen1", // 㲀
+ 0x3c81: "kong1", // 㲁
+ 0x3c82: "cheng2", // 㲂
+ 0x3c83: "jiu4", // 㲃
+ 0x3c84: "jue2", // 㲄
+ 0x3c85: "ji4", // 㲅
+ 0x3c86: "ling2", // 㲆
+ 0x3c88: "shao2", // 㲈
+ 0x3c89: "que4", // 㲉
+ 0x3c8a: "rui4", // 㲊
+ 0x3c8b: "chuo4", // 㲋
+ 0x3c8c: "neng4", // 㲌
+ 0x3c8d: "zhi1", // 㲍
+ 0x3c8e: "lou2", // 㲎
+ 0x3c8f: "pao1", // 㲏
+ 0x3c92: "bao4", // 㲒
+ 0x3c93: "rong2", // 㲓
+ 0x3c94: "xian1", // 㲔
+ 0x3c95: "lei4", // 㲕
+ 0x3c96: "xiao1", // 㲖
+ 0x3c97: "fu1", // 㲗
+ 0x3c98: "qu2", // 㲘
+ 0x3c9a: "sha1", // 㲚
+ 0x3c9b: "zhi3", // 㲛
+ 0x3c9c: "tan2", // 㲜
+ 0x3c9d: "rong3", // 㲝
+ 0x3c9e: "su1", // 㲞
+ 0x3c9f: "ying3", // 㲟
+ 0x3ca0: "mao2", // 㲠
+ 0x3ca1: "nai4", // 㲡
+ 0x3ca2: "bian4", // 㲢
+ 0x3ca4: "shuai1", // 㲤
+ 0x3ca5: "tang2", // 㲥
+ 0x3ca6: "han4", // 㲦
+ 0x3ca7: "sao4", // 㲧
+ 0x3ca8: "rong2", // 㲨
+ 0x3caa: "deng1", // 㲪
+ 0x3cab: "pu2", // 㲫
+ 0x3cac: "jiao1", // 㲬
+ 0x3cad: "tan3", // 㲭
+ 0x3caf: "ran2", // 㲯
+ 0x3cb0: "ning2", // 㲰
+ 0x3cb1: "lie4", // 㲱
+ 0x3cb2: "die2", // 㲲
+ 0x3cb3: "die2", // 㲳
+ 0x3cb4: "zhong4", // 㲴
+ 0x3cb6: "lv4", // 㲶
+ 0x3cb7: "dan4", // 㲷
+ 0x3cb8: "xi1", // 㲸
+ 0x3cb9: "gui3", // 㲹
+ 0x3cba: "ji2", // 㲺
+ 0x3cbb: "ni4", // 㲻
+ 0x3cbc: "yi4", // 㲼
+ 0x3cbd: "nian4", // 㲽
+ 0x3cbe: "yu3", // 㲾
+ 0x3cbf: "wang3", // 㲿
+ 0x3cc0: "guo4", // 㳀
+ 0x3cc1: "ze4", // 㳁
+ 0x3cc2: "yan2", // 㳂
+ 0x3cc3: "cui4", // 㳃
+ 0x3cc4: "xian2", // 㳄
+ 0x3cc5: "jiao3", // 㳅
+ 0x3cc6: "tou3", // 㳆
+ 0x3cc7: "fu4", // 㳇
+ 0x3cc8: "pei4", // 㳈
+ 0x3cca: "you1", // 㳊
+ 0x3ccb: "qiu1", // 㳋
+ 0x3ccc: "ya1", // 㳌
+ 0x3ccd: "bu4", // 㳍
+ 0x3cce: "bian4", // 㳎
+ 0x3ccf: "shi4", // 㳏
+ 0x3cd0: "zha2", // 㳐
+ 0x3cd1: "yi4", // 㳑
+ 0x3cd2: "bian4", // 㳒
+ 0x3cd4: "dui4", // 㳔
+ 0x3cd5: "lan2", // 㳕
+ 0x3cd6: "yi1", // 㳖
+ 0x3cd7: "chai4", // 㳗
+ 0x3cd8: "chong1", // 㳘
+ 0x3cd9: "xuan4", // 㳙
+ 0x3cda: "xu4", // 㳚
+ 0x3cdb: "yu2", // 㳛
+ 0x3cdc: "xiu1", // 㳜
+ 0x3ce0: "ta4", // 㳠
+ 0x3ce1: "guo1", // 㳡
+ 0x3ce5: "long4", // 㳥
+ 0x3ce6: "xie4", // 㳦
+ 0x3ce7: "che4", // 㳧
+ 0x3ce8: "jian3", // 㳨
+ 0x3ce9: "tan1", // 㳩
+ 0x3cea: "pi4", // 㳪
+ 0x3ceb: "zan3", // 㳫
+ 0x3cec: "xuan2", // 㳬
+ 0x3ced: "xian2", // 㳭
+ 0x3cee: "niao4", // 㳮
+ 0x3cf4: "mi4", // 㳴
+ 0x3cf5: "ji4", // 㳵
+ 0x3cf6: "nou3", // 㳶
+ 0x3cf7: "hu1", // 㳷
+ 0x3cf8: "hua1", // 㳸
+ 0x3cf9: "wang3", // 㳹
+ 0x3cfa: "you2", // 㳺
+ 0x3cfb: "ze2", // 㳻
+ 0x3cfc: "bi4", // 㳼
+ 0x3cfd: "mi3", // 㳽
+ 0x3cfe: "qiang1", // 㳾
+ 0x3cff: "xie4", // 㳿
+ 0x3d00: "fan4", // 㴀
+ 0x3d01: "yi4", // 㴁
+ 0x3d02: "tan1", // 㴂
+ 0x3d03: "lei4", // 㴃
+ 0x3d04: "yong3", // 㴄
+ 0x3d06: "jin4", // 㴆
+ 0x3d07: "she4", // 㴇
+ 0x3d08: "yin4", // 㴈
+ 0x3d09: "ji3", // 㴉
+ 0x3d0b: "su4", // 㴋
+ 0x3d0e: "nai4", // 㴎
+ 0x3d0f: "wang3", // 㴏
+ 0x3d10: "mian4", // 㴐
+ 0x3d11: "su4", // 㴑
+ 0x3d12: "yi4", // 㴒
+ 0x3d13: "shai1", // 㴓
+ 0x3d14: "xi1", // 㴔
+ 0x3d15: "ji2", // 㴕
+ 0x3d16: "luo4", // 㴖
+ 0x3d17: "you1", // 㴗
+ 0x3d18: "mao4", // 㴘
+ 0x3d19: "zha3", // 㴙
+ 0x3d1a: "sui4", // 㴚
+ 0x3d1b: "zhi4", // 㴛
+ 0x3d1c: "bian4", // 㴜
+ 0x3d1d: "li2", // 㴝
+ 0x3d25: "qiao4", // 㴥
+ 0x3d26: "guan4", // 㴦
+ 0x3d27: "xi1", // 㴧
+ 0x3d28: "zhen4", // 㴨
+ 0x3d29: "yong1", // 㴩
+ 0x3d2a: "nie4", // 㴪
+ 0x3d2b: "jun4", // 㴫
+ 0x3d2c: "xie4", // 㴬
+ 0x3d2d: "yao3", // 㴭
+ 0x3d2e: "xie4", // 㴮
+ 0x3d2f: "zhi1", // 㴯
+ 0x3d30: "neng2", // 㴰
+ 0x3d32: "si1", // 㴲
+ 0x3d33: "long3", // 㴳
+ 0x3d34: "chen2", // 㴴
+ 0x3d35: "mi4", // 㴵
+ 0x3d36: "que4", // 㴶
+ 0x3d37: "dan1", // 㴷
+ 0x3d38: "shan3", // 㴸
+ 0x3d3c: "su4", // 㴼
+ 0x3d3d: "xie4", // 㴽
+ 0x3d3e: "bo2", // 㴾
+ 0x3d3f: "ding3", // 㴿
+ 0x3d40: "zu2", // 㵀
+ 0x3d42: "shu4", // 㵂
+ 0x3d43: "she2", // 㵃
+ 0x3d44: "han4", // 㵄
+ 0x3d45: "tan1", // 㵅
+ 0x3d46: "gao3", // 㵆
+ 0x3d4a: "na4", // 㵊
+ 0x3d4b: "mi4", // 㵋
+ 0x3d4c: "xun2", // 㵌
+ 0x3d4d: "men4", // 㵍
+ 0x3d4e: "jian4", // 㵎
+ 0x3d4f: "cui3", // 㵏
+ 0x3d50: "jue2", // 㵐
+ 0x3d51: "he4", // 㵑
+ 0x3d52: "fei4", // 㵒
+ 0x3d53: "shi2", // 㵓
+ 0x3d54: "che3", // 㵔
+ 0x3d55: "shen4", // 㵕
+ 0x3d56: "nv4", // 㵖
+ 0x3d57: "ping2", // 㵗
+ 0x3d58: "man4", // 㵘
+ 0x3d5d: "yi4", // 㵝
+ 0x3d5e: "chou2", // 㵞
+ 0x3d60: "ku1", // 㵠
+ 0x3d61: "bao2", // 㵡
+ 0x3d62: "lei2", // 㵢
+ 0x3d63: "ke3", // 㵣
+ 0x3d64: "sha4", // 㵤
+ 0x3d65: "bi4", // 㵥
+ 0x3d66: "sui2", // 㵦
+ 0x3d67: "ge2", // 㵧
+ 0x3d68: "pi4", // 㵨
+ 0x3d69: "yi4", // 㵩
+ 0x3d6a: "xian2", // 㵪
+ 0x3d6b: "ni4", // 㵫
+ 0x3d6c: "ying2", // 㵬
+ 0x3d6d: "zhu3", // 㵭
+ 0x3d6e: "chun2", // 㵮
+ 0x3d6f: "feng2", // 㵯
+ 0x3d70: "xu4", // 㵰
+ 0x3d71: "piao3", // 㵱
+ 0x3d72: "wu3", // 㵲
+ 0x3d73: "liao2", // 㵳
+ 0x3d74: "cang2", // 㵴
+ 0x3d75: "zou4", // 㵵
+ 0x3d76: "zuo1", // 㵶
+ 0x3d77: "bian4", // 㵷
+ 0x3d78: "yao4", // 㵸
+ 0x3d79: "huan2", // 㵹
+ 0x3d7a: "pai4", // 㵺
+ 0x3d7b: "xiu1", // 㵻
+ 0x3d7d: "lei3", // 㵽
+ 0x3d7e: "qing4", // 㵾
+ 0x3d7f: "xiao4", // 㵿
+ 0x3d80: "jiao1", // 㶀
+ 0x3d81: "guo2", // 㶁
+ 0x3d84: "yan2", // 㶄
+ 0x3d85: "xue2", // 㶅
+ 0x3d86: "zhu1", // 㶆
+ 0x3d87: "heng2", // 㶇
+ 0x3d88: "ying2", // 㶈
+ 0x3d89: "xi1", // 㶉
+ 0x3d8c: "lian2", // 㶌
+ 0x3d8d: "xian3", // 㶍
+ 0x3d8e: "huan2", // 㶎
+ 0x3d8f: "yin1", // 㶏
+ 0x3d91: "lian4", // 㶑
+ 0x3d92: "shan3", // 㶒
+ 0x3d93: "cang2", // 㶓
+ 0x3d94: "bei4", // 㶔
+ 0x3d95: "jian3", // 㶕
+ 0x3d96: "shu4", // 㶖
+ 0x3d97: "fan4", // 㶗
+ 0x3d98: "dian4", // 㶘
+ 0x3d9a: "ba4", // 㶚
+ 0x3d9b: "yu2", // 㶛
+ 0x3d9e: "nang3", // 㶞
+ 0x3d9f: "lei3", // 㶟
+ 0x3da0: "yi4", // 㶠
+ 0x3da1: "dai4", // 㶡
+ 0x3da3: "chan2", // 㶣
+ 0x3da4: "chao3", // 㶤
+ 0x3da5: "gan1", // 㶥
+ 0x3da6: "jin4", // 㶦
+ 0x3da7: "nen4", // 㶧
+ 0x3dab: "liao3", // 㶫
+ 0x3dac: "mo4", // 㶬
+ 0x3dad: "you3", // 㶭
+ 0x3daf: "liu4", // 㶯
+ 0x3db0: "han2", // 㶰
+ 0x3db2: "yong4", // 㶲
+ 0x3db3: "jin4", // 㶳
+ 0x3db4: "chi3", // 㶴
+ 0x3db5: "ren4", // 㶵
+ 0x3db6: "nong2", // 㶶
+ 0x3db9: "hong4", // 㶹
+ 0x3dba: "tian4", // 㶺
+ 0x3dbc: "ai1", // 㶼
+ 0x3dbd: "gua1", // 㶽
+ 0x3dbe: "biao1", // 㶾
+ 0x3dbf: "bo2", // 㶿
+ 0x3dc0: "qiong2", // 㷀
+ 0x3dc2: "shu4", // 㷂
+ 0x3dc3: "chui3", // 㷃
+ 0x3dc4: "hui3", // 㷄
+ 0x3dc5: "chao3", // 㷅
+ 0x3dc6: "fu4", // 㷆
+ 0x3dc7: "hui1", // 㷇
+ 0x3dc8: "e4", // 㷈
+ 0x3dc9: "wei4", // 㷉
+ 0x3dca: "fen2", // 㷊
+ 0x3dcb: "tan2", // 㷋
+ 0x3dcd: "lun2", // 㷍
+ 0x3dce: "he4", // 㷎
+ 0x3dcf: "yong3", // 㷏
+ 0x3dd0: "hui3", // 㷐
+ 0x3dd2: "yu2", // 㷒
+ 0x3dd3: "zong3", // 㷓
+ 0x3dd4: "yan4", // 㷔
+ 0x3dd5: "qiu2", // 㷕
+ 0x3dd6: "zhao4", // 㷖
+ 0x3dd7: "jiong3", // 㷗
+ 0x3dd8: "tai2", // 㷘
+ 0x3ddf: "tui4", // 㷟
+ 0x3de0: "lin2", // 㷠
+ 0x3de1: "jiong3", // 㷡
+ 0x3de2: "zha3", // 㷢
+ 0x3de3: "xing1", // 㷣
+ 0x3de4: "hu4", // 㷤
+ 0x3de6: "xu4", // 㷦
+ 0x3dea: "cui4", // 㷪
+ 0x3deb: "qing3", // 㷫
+ 0x3dec: "mo4", // 㷬
+ 0x3dee: "zao1", // 㷮
+ 0x3def: "beng4", // 㷯
+ 0x3df0: "chi1", // 㷰
+ 0x3df3: "yan4", // 㷳
+ 0x3df4: "ge2", // 㷴
+ 0x3df5: "mo4", // 㷵
+ 0x3df6: "bei4", // 㷶
+ 0x3df7: "juan3", // 㷷
+ 0x3df8: "die2", // 㷸
+ 0x3df9: "zhao4", // 㷹
+ 0x3dfb: "wu2", // 㷻
+ 0x3dfc: "yan4", // 㷼
+ 0x3dfe: "jue2", // 㷾
+ 0x3dff: "xian1", // 㷿
+ 0x3e00: "tai2", // 㸀
+ 0x3e01: "han3", // 㸁
+ 0x3e03: "dian3", // 㸃
+ 0x3e04: "ji4", // 㸄
+ 0x3e05: "jie2", // 㸅
+ 0x3e07: "zuan3", // 㸇
+ 0x3e09: "xie4", // 㸉
+ 0x3e0a: "lai4", // 㸊
+ 0x3e0b: "fan2", // 㸋
+ 0x3e0c: "huo4", // 㸌
+ 0x3e0d: "xi4", // 㸍
+ 0x3e0e: "nie4", // 㸎
+ 0x3e0f: "mi2", // 㸏
+ 0x3e10: "ran2", // 㸐
+ 0x3e11: "cuan4", // 㸑
+ 0x3e12: "yin2", // 㸒
+ 0x3e13: "mi4", // 㸓
+ 0x3e15: "jue2", // 㸕
+ 0x3e16: "qu1", // 㸖
+ 0x3e17: "tong2", // 㸗
+ 0x3e18: "wan4", // 㸘
+ 0x3e19: "zhe1", // 㸙
+ 0x3e1a: "li3", // 㸚
+ 0x3e1b: "shao2", // 㸛
+ 0x3e1c: "kong4", // 㸜
+ 0x3e1d: "xian1", // 㸝
+ 0x3e1e: "zhe2", // 㸞
+ 0x3e1f: "zhi1", // 㸟
+ 0x3e20: "tiao3", // 㸠
+ 0x3e21: "shu1", // 㸡
+ 0x3e22: "bei4", // 㸢
+ 0x3e23: "ye4", // 㸣
+ 0x3e24: "pian4", // 㸤
+ 0x3e25: "chan4", // 㸥
+ 0x3e26: "hu4", // 㸦
+ 0x3e27: "ken4", // 㸧
+ 0x3e28: "jiu1", // 㸨
+ 0x3e29: "an1", // 㸩
+ 0x3e2a: "chun2", // 㸪
+ 0x3e2b: "qian2", // 㸫
+ 0x3e2c: "bei4", // 㸬
+ 0x3e2d: "ba1", // 㸭
+ 0x3e2e: "fen2", // 㸮
+ 0x3e2f: "ke1", // 㸯
+ 0x3e30: "tuo2", // 㸰
+ 0x3e31: "tuo2", // 㸱
+ 0x3e32: "zuo2", // 㸲
+ 0x3e33: "ling2", // 㸳
+ 0x3e35: "gui3", // 㸵
+ 0x3e36: "yan1", // 㸶
+ 0x3e37: "shi4", // 㸷
+ 0x3e38: "hou3", // 㸸
+ 0x3e39: "lie4", // 㸹
+ 0x3e3a: "sha1", // 㸺
+ 0x3e3b: "si4", // 㸻
+ 0x3e3d: "bei4", // 㸽
+ 0x3e3e: "ren4", // 㸾
+ 0x3e3f: "du2", // 㸿
+ 0x3e40: "bo2", // 㹀
+ 0x3e41: "liang2", // 㹁
+ 0x3e42: "qian3", // 㹂
+ 0x3e43: "fei4", // 㹃
+ 0x3e44: "ji4", // 㹄
+ 0x3e45: "zong3", // 㹅
+ 0x3e46: "hui1", // 㹆
+ 0x3e47: "he2", // 㹇
+ 0x3e48: "li2", // 㹈
+ 0x3e49: "yuan2", // 㹉
+ 0x3e4a: "yue4", // 㹊
+ 0x3e4b: "xiu1", // 㹋
+ 0x3e4c: "chan3", // 㹌
+ 0x3e4d: "di2", // 㹍
+ 0x3e4e: "lei2", // 㹎
+ 0x3e4f: "jin3", // 㹏
+ 0x3e50: "chong2", // 㹐
+ 0x3e51: "si4", // 㹑
+ 0x3e52: "pu3", // 㹒
+ 0x3e53: "yao3", // 㹓
+ 0x3e54: "jiang1", // 㹔
+ 0x3e55: "huan1", // 㹕
+ 0x3e56: "huan4", // 㹖
+ 0x3e57: "tao1", // 㹗
+ 0x3e58: "ru4", // 㹘
+ 0x3e59: "weng3", // 㹙
+ 0x3e5a: "ying2", // 㹚
+ 0x3e5b: "rao2", // 㹛
+ 0x3e5c: "yin2", // 㹜
+ 0x3e5d: "shi4", // 㹝
+ 0x3e5e: "yin2", // 㹞
+ 0x3e5f: "jue2", // 㹟
+ 0x3e60: "tun2", // 㹠
+ 0x3e61: "xuan2", // 㹡
+ 0x3e62: "jia1", // 㹢
+ 0x3e63: "zhong1", // 㹣
+ 0x3e64: "qie4", // 㹤
+ 0x3e65: "zhu4", // 㹥
+ 0x3e66: "diao1", // 㹦
+ 0x3e68: "you4", // 㹨
+ 0x3e6b: "yi2", // 㹫
+ 0x3e6c: "shi3", // 㹬
+ 0x3e6d: "yi4", // 㹭
+ 0x3e6e: "mo4", // 㹮
+ 0x3e71: "que4", // 㹱
+ 0x3e72: "xiao1", // 㹲
+ 0x3e73: "wu2", // 㹳
+ 0x3e74: "geng1", // 㹴
+ 0x3e75: "ying3", // 㹵
+ 0x3e76: "ting2", // 㹶
+ 0x3e77: "shi3", // 㹷
+ 0x3e78: "ni2", // 㹸
+ 0x3e79: "geng1", // 㹹
+ 0x3e7a: "ta4", // 㹺
+ 0x3e7b: "wo1", // 㹻
+ 0x3e7c: "ju2", // 㹼
+ 0x3e7d: "chan3", // 㹽
+ 0x3e7e: "piao3", // 㹾
+ 0x3e7f: "zhuo2", // 㹿
+ 0x3e80: "hu1", // 㺀
+ 0x3e81: "nao3", // 㺁
+ 0x3e82: "yan2", // 㺂
+ 0x3e83: "gou3", // 㺃
+ 0x3e84: "yu3", // 㺄
+ 0x3e85: "hou2", // 㺅
+ 0x3e87: "si1", // 㺇
+ 0x3e88: "chi1", // 㺈
+ 0x3e89: "hu4", // 㺉
+ 0x3e8a: "yang4", // 㺊
+ 0x3e8b: "weng1", // 㺋
+ 0x3e8c: "xian4", // 㺌
+ 0x3e8d: "pin2", // 㺍
+ 0x3e8e: "rong2", // 㺎
+ 0x3e8f: "lou2", // 㺏
+ 0x3e90: "lao3", // 㺐
+ 0x3e91: "shan1", // 㺑
+ 0x3e92: "xiao1", // 㺒
+ 0x3e93: "ze2", // 㺓
+ 0x3e94: "hai4", // 㺔
+ 0x3e95: "fan2", // 㺕
+ 0x3e96: "han3", // 㺖
+ 0x3e97: "chan1", // 㺗
+ 0x3e98: "zhan4", // 㺘
+ 0x3e9a: "ta3", // 㺚
+ 0x3e9b: "zhu4", // 㺛
+ 0x3e9c: "nong2", // 㺜
+ 0x3e9d: "han4", // 㺝
+ 0x3e9e: "yu2", // 㺞
+ 0x3e9f: "zhuo2", // 㺟
+ 0x3ea0: "you4", // 㺠
+ 0x3ea1: "li4", // 㺡
+ 0x3ea2: "huo4", // 㺢
+ 0x3ea3: "xi1", // 㺣
+ 0x3ea4: "xian1", // 㺤
+ 0x3ea5: "chan2", // 㺥
+ 0x3ea6: "lian2", // 㺦
+ 0x3ea8: "si1", // 㺨
+ 0x3ea9: "jiu4", // 㺩
+ 0x3eaa: "pu2", // 㺪
+ 0x3eab: "qiu2", // 㺫
+ 0x3eac: "gong3", // 㺬
+ 0x3ead: "zi3", // 㺭
+ 0x3eae: "yu2", // 㺮
+ 0x3eb1: "reng2", // 㺱
+ 0x3eb2: "niu3", // 㺲
+ 0x3eb3: "mei2", // 㺳
+ 0x3eb4: "ba1", // 㺴
+ 0x3eb5: "jiu2", // 㺵
+ 0x3eb7: "xu4", // 㺷
+ 0x3eb8: "ping2", // 㺸
+ 0x3eb9: "bian4", // 㺹
+ 0x3eba: "mao4", // 㺺
+ 0x3ebf: "yi2", // 㺿
+ 0x3ec0: "yu2", // 㻀
+ 0x3ec2: "ping2", // 㻂
+ 0x3ec3: "qu1", // 㻃
+ 0x3ec4: "bao3", // 㻄
+ 0x3ec5: "hui4", // 㻅
+ 0x3ec9: "bu4", // 㻉
+ 0x3eca: "mang2", // 㻊
+ 0x3ecb: "la4", // 㻋
+ 0x3ecc: "tu2", // 㻌
+ 0x3ecd: "wu2", // 㻍
+ 0x3ece: "li4", // 㻎
+ 0x3ecf: "ling2", // 㻏
+ 0x3ed1: "ji4", // 㻑
+ 0x3ed2: "jun4", // 㻒
+ 0x3ed3: "zou1", // 㻓
+ 0x3ed4: "duo3", // 㻔
+ 0x3ed5: "jue2", // 㻕
+ 0x3ed6: "dai4", // 㻖
+ 0x3ed7: "bei4", // 㻗
+ 0x3edd: "la4", // 㻝
+ 0x3ede: "bin1", // 㻞
+ 0x3edf: "sui2", // 㻟
+ 0x3ee0: "tu2", // 㻠
+ 0x3ee1: "xue1", // 㻡
+ 0x3ee7: "duo4", // 㻧
+ 0x3eea: "sui4", // 㻪
+ 0x3eeb: "bi4", // 㻫
+ 0x3eec: "tu1", // 㻬
+ 0x3eed: "se4", // 㻭
+ 0x3eee: "can4", // 㻮
+ 0x3eef: "tu2", // 㻯
+ 0x3ef0: "mian3", // 㻰
+ 0x3ef1: "jin1", // 㻱
+ 0x3ef2: "lv3", // 㻲
+ 0x3ef5: "zhan4", // 㻵
+ 0x3ef6: "bi3", // 㻶
+ 0x3ef7: "ji2", // 㻷
+ 0x3ef8: "zen1", // 㻸
+ 0x3ef9: "xuan1", // 㻹
+ 0x3efa: "li4", // 㻺
+ 0x3efd: "sui4", // 㻽
+ 0x3efe: "yong1", // 㻾
+ 0x3eff: "shu3", // 㻿
+ 0x3f02: "e2", // 㼂
+ 0x3f07: "qiong2", // 㼇
+ 0x3f08: "luo2", // 㼈
+ 0x3f09: "zhen4", // 㼉
+ 0x3f0a: "tun2", // 㼊
+ 0x3f0b: "gu1", // 㼋
+ 0x3f0c: "yu3", // 㼌
+ 0x3f0d: "lei3", // 㼍
+ 0x3f0e: "bo2", // 㼎
+ 0x3f0f: "nei3", // 㼏
+ 0x3f10: "pian2", // 㼐
+ 0x3f11: "lian4", // 㼑
+ 0x3f12: "tang3", // 㼒
+ 0x3f13: "lian2", // 㼓
+ 0x3f14: "wen1", // 㼔
+ 0x3f15: "dang1", // 㼕
+ 0x3f16: "li4", // 㼖
+ 0x3f17: "ting2", // 㼗
+ 0x3f18: "wa3", // 㼘
+ 0x3f19: "zhou4", // 㼙
+ 0x3f1a: "gang1", // 㼚
+ 0x3f1b: "xing2", // 㼛
+ 0x3f1c: "ang4", // 㼜
+ 0x3f1d: "fan4", // 㼝
+ 0x3f1e: "peng4", // 㼞
+ 0x3f1f: "bo2", // 㼟
+ 0x3f20: "tuo2", // 㼠
+ 0x3f21: "shu1", // 㼡
+ 0x3f22: "yi2", // 㼢
+ 0x3f23: "bo2", // 㼣
+ 0x3f24: "qie4", // 㼤
+ 0x3f25: "tou3", // 㼥
+ 0x3f26: "gong3", // 㼦
+ 0x3f27: "tong2", // 㼧
+ 0x3f28: "han2", // 㼨
+ 0x3f29: "cheng2", // 㼩
+ 0x3f2a: "jie2", // 㼪
+ 0x3f2b: "huan4", // 㼫
+ 0x3f2c: "xing4", // 㼬
+ 0x3f2d: "dian4", // 㼭
+ 0x3f2e: "chai1", // 㼮
+ 0x3f2f: "dong4", // 㼯
+ 0x3f30: "pi2", // 㼰
+ 0x3f31: "ruan3", // 㼱
+ 0x3f32: "lie4", // 㼲
+ 0x3f33: "sheng3", // 㼳
+ 0x3f34: "ou3", // 㼴
+ 0x3f35: "di4", // 㼵
+ 0x3f36: "yu2", // 㼶
+ 0x3f37: "chuan2", // 㼷
+ 0x3f38: "rong2", // 㼸
+ 0x3f39: "kang1", // 㼹
+ 0x3f3a: "tang2", // 㼺
+ 0x3f3b: "cong2", // 㼻
+ 0x3f3c: "piao2", // 㼼
+ 0x3f3d: "chuang3", // 㼽
+ 0x3f3e: "lu4", // 㼾
+ 0x3f3f: "tong2", // 㼿
+ 0x3f40: "zheng4", // 㽀
+ 0x3f41: "li4", // 㽁
+ 0x3f42: "sa4", // 㽂
+ 0x3f43: "pan1", // 㽃
+ 0x3f44: "si1", // 㽄
+ 0x3f46: "dang1", // 㽆
+ 0x3f47: "hu2", // 㽇
+ 0x3f48: "yi4", // 㽈
+ 0x3f49: "xian4", // 㽉
+ 0x3f4a: "xie4", // 㽊
+ 0x3f4b: "luo2", // 㽋
+ 0x3f4c: "liu4", // 㽌
+ 0x3f4e: "tan2", // 㽎
+ 0x3f4f: "gan4", // 㽏
+ 0x3f51: "tan2", // 㽑
+ 0x3f55: "you2", // 㽕
+ 0x3f56: "nan2", // 㽖
+ 0x3f58: "gang3", // 㽘
+ 0x3f59: "jun4", // 㽙
+ 0x3f5a: "chi4", // 㽚
+ 0x3f5b: "gou1", // 㽛
+ 0x3f5c: "wan3", // 㽜
+ 0x3f5d: "li4", // 㽝
+ 0x3f5e: "liu2", // 㽞
+ 0x3f5f: "lie4", // 㽟
+ 0x3f60: "xia2", // 㽠
+ 0x3f61: "bei1", // 㽡
+ 0x3f62: "an3", // 㽢
+ 0x3f63: "yu4", // 㽣
+ 0x3f64: "ju2", // 㽤
+ 0x3f65: "rou2", // 㽥
+ 0x3f66: "xun2", // 㽦
+ 0x3f67: "zi1", // 㽧
+ 0x3f68: "cuo2", // 㽨
+ 0x3f69: "can4", // 㽩
+ 0x3f6a: "zeng3", // 㽪
+ 0x3f6b: "yong1", // 㽫
+ 0x3f6c: "fu4", // 㽬
+ 0x3f6d: "ruan3", // 㽭
+ 0x3f6f: "xi2", // 㽯
+ 0x3f70: "shu4", // 㽰
+ 0x3f71: "jiao3", // 㽱
+ 0x3f72: "jiao3", // 㽲
+ 0x3f73: "xu1", // 㽳
+ 0x3f74: "zhang4", // 㽴
+ 0x3f77: "shui4", // 㽷
+ 0x3f78: "chen2", // 㽸
+ 0x3f79: "fan3", // 㽹
+ 0x3f7a: "ji2", // 㽺
+ 0x3f7b: "zhi1", // 㽻
+ 0x3f7d: "gu4", // 㽽
+ 0x3f7e: "wu4", // 㽾
+ 0x3f80: "qie4", // 㾀
+ 0x3f81: "shu4", // 㾁
+ 0x3f82: "hai1", // 㾂
+ 0x3f83: "tuo2", // 㾃
+ 0x3f84: "du2", // 㾄
+ 0x3f85: "zi3", // 㾅
+ 0x3f86: "ran2", // 㾆
+ 0x3f87: "mu4", // 㾇
+ 0x3f88: "fu4", // 㾈
+ 0x3f89: "ling2", // 㾉
+ 0x3f8a: "ji2", // 㾊
+ 0x3f8b: "xiu1", // 㾋
+ 0x3f8c: "xuan3", // 㾌
+ 0x3f8d: "nai2", // 㾍
+ 0x3f8e: "ya1", // 㾎
+ 0x3f8f: "jie4", // 㾏
+ 0x3f90: "li4", // 㾐
+ 0x3f91: "da2", // 㾑
+ 0x3f92: "ru2", // 㾒
+ 0x3f93: "yuan1", // 㾓
+ 0x3f94: "lv3", // 㾔
+ 0x3f95: "shen3", // 㾕
+ 0x3f96: "li3", // 㾖
+ 0x3f97: "liang4", // 㾗
+ 0x3f98: "geng3", // 㾘
+ 0x3f99: "xin4", // 㾙
+ 0x3f9a: "xie1", // 㾚
+ 0x3f9b: "qin3", // 㾛
+ 0x3f9c: "qie4", // 㾜
+ 0x3f9d: "che4", // 㾝
+ 0x3f9e: "you2", // 㾞
+ 0x3f9f: "bu4", // 㾟
+ 0x3fa0: "kuang2", // 㾠
+ 0x3fa1: "que4", // 㾡
+ 0x3fa2: "ai4", // 㾢
+ 0x3fa3: "qin1", // 㾣
+ 0x3fa4: "qiang1", // 㾤
+ 0x3fa5: "chu4", // 㾥
+ 0x3fa6: "pei4", // 㾦
+ 0x3fa7: "kuo4", // 㾧
+ 0x3fa8: "yi1", // 㾨
+ 0x3fa9: "guai1", // 㾩
+ 0x3faa: "sheng3", // 㾪
+ 0x3fab: "pian1", // 㾫
+ 0x3fad: "zhou4", // 㾭
+ 0x3fae: "huang2", // 㾮
+ 0x3faf: "hui1", // 㾯
+ 0x3fb0: "hu2", // 㾰
+ 0x3fb1: "bei4", // 㾱
+ 0x3fb4: "zha1", // 㾴
+ 0x3fb5: "ji4", // 㾵
+ 0x3fb6: "gu3", // 㾶
+ 0x3fb7: "xi1", // 㾷
+ 0x3fb8: "gao3", // 㾸
+ 0x3fb9: "chai2", // 㾹
+ 0x3fba: "ma4", // 㾺
+ 0x3fbb: "zhu4", // 㾻
+ 0x3fbc: "tui3", // 㾼
+ 0x3fbd: "zhui4", // 㾽
+ 0x3fbe: "xian1", // 㾾
+ 0x3fbf: "lang2", // 㾿
+ 0x3fc3: "zhi4", // 㿃
+ 0x3fc4: "ai4", // 㿄
+ 0x3fc5: "xian3", // 㿅
+ 0x3fc6: "guo1", // 㿆
+ 0x3fc7: "xi2", // 㿇
+ 0x3fc9: "tui3", // 㿉
+ 0x3fca: "can3", // 㿊
+ 0x3fcb: "sao4", // 㿋
+ 0x3fcc: "xian1", // 㿌
+ 0x3fcd: "jie4", // 㿍
+ 0x3fce: "fen4", // 㿎
+ 0x3fcf: "qun2", // 㿏
+ 0x3fd1: "yao4", // 㿑
+ 0x3fd2: "dao3", // 㿒
+ 0x3fd3: "jia2", // 㿓
+ 0x3fd4: "lei3", // 㿔
+ 0x3fd5: "yan2", // 㿕
+ 0x3fd6: "lu2", // 㿖
+ 0x3fd7: "tui2", // 㿗
+ 0x3fd8: "ying2", // 㿘
+ 0x3fd9: "pi4", // 㿙
+ 0x3fda: "luo4", // 㿚
+ 0x3fdb: "li4", // 㿛
+ 0x3fdc: "bie3", // 㿜
+ 0x3fde: "mao4", // 㿞
+ 0x3fdf: "bai2", // 㿟
+ 0x3fe0: "huang4", // 㿠
+ 0x3fe2: "yao4", // 㿢
+ 0x3fe3: "he1", // 㿣
+ 0x3fe4: "chun3", // 㿤
+ 0x3fe5: "he2", // 㿥
+ 0x3fe6: "ning4", // 㿦
+ 0x3fe7: "chou2", // 㿧
+ 0x3fe8: "li4", // 㿨
+ 0x3fe9: "tang3", // 㿩
+ 0x3fea: "huan2", // 㿪
+ 0x3feb: "bi4", // 㿫
+ 0x3fec: "ba1", // 㿬
+ 0x3fed: "che4", // 㿭
+ 0x3fee: "yang4", // 㿮
+ 0x3fef: "da2", // 㿯
+ 0x3ff0: "ao2", // 㿰
+ 0x3ff1: "xue2", // 㿱
+ 0x3ff3: "zi1", // 㿳
+ 0x3ff4: "da1", // 㿴
+ 0x3ff5: "ran3", // 㿵
+ 0x3ff6: "bang1", // 㿶
+ 0x3ff7: "cuo2", // 㿷
+ 0x3ff8: "wan3", // 㿸
+ 0x3ff9: "ta4", // 㿹
+ 0x3ffa: "bao2", // 㿺
+ 0x3ffb: "gan1", // 㿻
+ 0x3ffc: "yan2", // 㿼
+ 0x3ffd: "xi1", // 㿽
+ 0x3ffe: "zhu4", // 㿾
+ 0x3fff: "ya3", // 㿿
+ 0x4000: "fan4", // 䀀
+ 0x4001: "you4", // 䀁
+ 0x4002: "an1", // 䀂
+ 0x4003: "tui2", // 䀃
+ 0x4004: "meng2", // 䀄
+ 0x4005: "she4", // 䀅
+ 0x4006: "jin4", // 䀆
+ 0x4007: "gu3", // 䀇
+ 0x4008: "ji4", // 䀈
+ 0x4009: "qiao2", // 䀉
+ 0x400a: "jiao3", // 䀊
+ 0x400b: "yan2", // 䀋
+ 0x400c: "xi4", // 䀌
+ 0x400d: "kan4", // 䀍
+ 0x400e: "mian3", // 䀎
+ 0x400f: "xuan4", // 䀏
+ 0x4010: "shan1", // 䀐
+ 0x4011: "wo4", // 䀑
+ 0x4012: "qian1", // 䀒
+ 0x4013: "huan4", // 䀓
+ 0x4014: "ren4", // 䀔
+ 0x4015: "zhen4", // 䀕
+ 0x4016: "tian1", // 䀖
+ 0x4017: "jue2", // 䀗
+ 0x4018: "xie2", // 䀘
+ 0x4019: "qi4", // 䀙
+ 0x401a: "ang2", // 䀚
+ 0x401b: "mei4", // 䀛
+ 0x401c: "gu3", // 䀜
+ 0x401e: "tao1", // 䀞
+ 0x401f: "fan2", // 䀟
+ 0x4020: "ju4", // 䀠
+ 0x4021: "chan4", // 䀡
+ 0x4022: "shun4", // 䀢
+ 0x4023: "bi4", // 䀣
+ 0x4024: "mao4", // 䀤
+ 0x4025: "shuo4", // 䀥
+ 0x4026: "gu3", // 䀦
+ 0x4027: "hong3", // 䀧
+ 0x4028: "hua4", // 䀨
+ 0x4029: "luo4", // 䀩
+ 0x402a: "hang2", // 䀪
+ 0x402b: "jia2", // 䀫
+ 0x402c: "quan2", // 䀬
+ 0x402d: "gai1", // 䀭
+ 0x402e: "huang1", // 䀮
+ 0x402f: "bu3", // 䀯
+ 0x4030: "gu3", // 䀰
+ 0x4031: "feng1", // 䀱
+ 0x4032: "mu4", // 䀲
+ 0x4033: "ai4", // 䀳
+ 0x4034: "ying3", // 䀴
+ 0x4035: "shun4", // 䀵
+ 0x4036: "liang4", // 䀶
+ 0x4037: "jie2", // 䀷
+ 0x4038: "chi4", // 䀸
+ 0x4039: "jie2", // 䀹
+ 0x403a: "chou1", // 䀺
+ 0x403b: "ping4", // 䀻
+ 0x403c: "chen1", // 䀼
+ 0x403d: "yan2", // 䀽
+ 0x403e: "du3", // 䀾
+ 0x403f: "di4", // 䀿
+ 0x4041: "liang4", // 䁁
+ 0x4042: "xian4", // 䁂
+ 0x4043: "biao1", // 䁃
+ 0x4044: "xing4", // 䁄
+ 0x4045: "meng3", // 䁅
+ 0x4046: "ye4", // 䁆
+ 0x4047: "mi4", // 䁇
+ 0x4048: "qi4", // 䁈
+ 0x4049: "qi4", // 䁉
+ 0x404a: "wo4", // 䁊
+ 0x404b: "xie4", // 䁋
+ 0x404c: "yu4", // 䁌
+ 0x404d: "qia4", // 䁍
+ 0x404e: "cheng2", // 䁎
+ 0x404f: "yao3", // 䁏
+ 0x4050: "ying1", // 䁐
+ 0x4051: "yang2", // 䁑
+ 0x4052: "ji2", // 䁒
+ 0x4053: "zong1", // 䁓
+ 0x4054: "xuan1", // 䁔
+ 0x4055: "min2", // 䁕
+ 0x4056: "lou1", // 䁖
+ 0x4057: "kai3", // 䁗
+ 0x4058: "yao3", // 䁘
+ 0x4059: "yan3", // 䁙
+ 0x405a: "sun3", // 䁚
+ 0x405b: "gui4", // 䁛
+ 0x405c: "huang4", // 䁜
+ 0x405d: "ying2", // 䁝
+ 0x405e: "sheng3", // 䁞
+ 0x405f: "cha2", // 䁟
+ 0x4060: "lian2", // 䁠
+ 0x4062: "xuan2", // 䁢
+ 0x4063: "chuan2", // 䁣
+ 0x4064: "che4", // 䁤
+ 0x4065: "ni4", // 䁥
+ 0x4066: "qu4", // 䁦
+ 0x4067: "miao2", // 䁧
+ 0x4068: "huo4", // 䁨
+ 0x4069: "yu2", // 䁩
+ 0x406a: "zhan3", // 䁪
+ 0x406b: "hu2", // 䁫
+ 0x406c: "ceng2", // 䁬
+ 0x406d: "biao1", // 䁭
+ 0x406e: "qian2", // 䁮
+ 0x406f: "xi1", // 䁯
+ 0x4070: "jiang3", // 䁰
+ 0x4071: "kou1", // 䁱
+ 0x4072: "mai2", // 䁲
+ 0x4073: "mang3", // 䁳
+ 0x4074: "zhan3", // 䁴
+ 0x4075: "bian3", // 䁵
+ 0x4076: "ji1", // 䁶
+ 0x4077: "jue2", // 䁷
+ 0x4078: "nang2", // 䁸
+ 0x4079: "bi4", // 䁹
+ 0x407a: "shi4", // 䁺
+ 0x407b: "shuo4", // 䁻
+ 0x407c: "mo4", // 䁼
+ 0x407d: "lie4", // 䁽
+ 0x407e: "mie4", // 䁾
+ 0x407f: "mo4", // 䁿
+ 0x4080: "xi1", // 䂀
+ 0x4081: "chan2", // 䂁
+ 0x4082: "qu2", // 䂂
+ 0x4083: "jiao4", // 䂃
+ 0x4084: "huo4", // 䂄
+ 0x4085: "xian1", // 䂅
+ 0x4086: "xu4", // 䂆
+ 0x4087: "niu3", // 䂇
+ 0x4088: "tong2", // 䂈
+ 0x4089: "hou2", // 䂉
+ 0x408a: "yu4", // 䂊
+ 0x408c: "chong1", // 䂌
+ 0x408d: "bo2", // 䂍
+ 0x408e: "zuan3", // 䂎
+ 0x408f: "diao1", // 䂏
+ 0x4090: "zhuo1", // 䂐
+ 0x4091: "ji1", // 䂑
+ 0x4092: "qia4", // 䂒
+ 0x4094: "xing4", // 䂔
+ 0x4095: "hui4", // 䂕
+ 0x4096: "shi2", // 䂖
+ 0x4097: "ku1", // 䂗
+ 0x4099: "dui1", // 䂙
+ 0x409a: "yao2", // 䂚
+ 0x409b: "yu2", // 䂛
+ 0x409c: "bang4", // 䂜
+ 0x409d: "jie2", // 䂝
+ 0x409e: "zhe4", // 䂞
+ 0x409f: "jia1", // 䂟
+ 0x40a0: "shi3", // 䂠
+ 0x40a1: "di3", // 䂡
+ 0x40a2: "dong3", // 䂢
+ 0x40a3: "ci2", // 䂣
+ 0x40a4: "fu4", // 䂤
+ 0x40a5: "min2", // 䂥
+ 0x40a6: "zhen1", // 䂦
+ 0x40a7: "zhen3", // 䂧
+ 0x40a9: "yan4", // 䂩
+ 0x40aa: "qiao3", // 䂪
+ 0x40ab: "hang1", // 䂫
+ 0x40ac: "gong3", // 䂬
+ 0x40ad: "qiao1", // 䂭
+ 0x40ae: "lve4", // 䂮
+ 0x40af: "guai4", // 䂯
+ 0x40b0: "la4", // 䂰
+ 0x40b1: "rui4", // 䂱
+ 0x40b2: "fa3", // 䂲
+ 0x40b3: "cuo3", // 䂳
+ 0x40b4: "yan2", // 䂴
+ 0x40b5: "gong1", // 䂵
+ 0x40b6: "jie2", // 䂶
+ 0x40b7: "guai1", // 䂷
+ 0x40b8: "guo2", // 䂸
+ 0x40b9: "suo3", // 䂹
+ 0x40ba: "wo3", // 䂺
+ 0x40bb: "zheng4", // 䂻
+ 0x40bc: "nie4", // 䂼
+ 0x40bd: "diao4", // 䂽
+ 0x40be: "lai3", // 䂾
+ 0x40bf: "ta4", // 䂿
+ 0x40c0: "cui4", // 䃀
+ 0x40c1: "ya1", // 䃁
+ 0x40c2: "gun3", // 䃂
+ 0x40c5: "di1", // 䃅
+ 0x40c7: "mian2", // 䃇
+ 0x40c8: "jie1", // 䃈
+ 0x40c9: "min2", // 䃉
+ 0x40ca: "ju3", // 䃊
+ 0x40cb: "yu2", // 䃋
+ 0x40cc: "zhen1", // 䃌
+ 0x40cd: "zhao4", // 䃍
+ 0x40ce: "zha4", // 䃎
+ 0x40cf: "xing1", // 䃏
+ 0x40d1: "ban1", // 䃑
+ 0x40d2: "he2", // 䃒
+ 0x40d3: "gou4", // 䃓
+ 0x40d4: "hong2", // 䃔
+ 0x40d5: "lao2", // 䃕
+ 0x40d6: "wu4", // 䃖
+ 0x40d7: "bo1", // 䃗
+ 0x40d8: "keng1", // 䃘
+ 0x40d9: "lu4", // 䃙
+ 0x40da: "cu4", // 䃚
+ 0x40db: "lian2", // 䃛
+ 0x40dc: "yi1", // 䃜
+ 0x40dd: "qiao4", // 䃝
+ 0x40de: "shu2", // 䃞
+ 0x40e0: "xuan4", // 䃠
+ 0x40e1: "jin1", // 䃡
+ 0x40e2: "qin1", // 䃢
+ 0x40e3: "hui3", // 䃣
+ 0x40e4: "su4", // 䃤
+ 0x40e5: "chuang2", // 䃥
+ 0x40e6: "dun1", // 䃦
+ 0x40e7: "long2", // 䃧
+ 0x40e9: "nao2", // 䃩
+ 0x40ea: "tan2", // 䃪
+ 0x40eb: "dan3", // 䃫
+ 0x40ec: "wei3", // 䃬
+ 0x40ed: "gan3", // 䃭
+ 0x40ee: "da2", // 䃮
+ 0x40ef: "li4", // 䃯
+ 0x40f0: "ca1", // 䃰
+ 0x40f1: "xian4", // 䃱
+ 0x40f2: "pan2", // 䃲
+ 0x40f3: "la4", // 䃳
+ 0x40f4: "zhu1", // 䃴
+ 0x40f5: "niao3", // 䃵
+ 0x40f6: "huai2", // 䃶
+ 0x40f7: "ying2", // 䃷
+ 0x40f8: "xian4", // 䃸
+ 0x40f9: "lan4", // 䃹
+ 0x40fa: "mo2", // 䃺
+ 0x40fb: "ba4", // 䃻
+ 0x40fd: "gui3", // 䃽
+ 0x40fe: "bi3", // 䃾
+ 0x40ff: "fu1", // 䃿
+ 0x4100: "huo4", // 䄀
+ 0x4101: "yi4", // 䄁
+ 0x4102: "liu4", // 䄂
+ 0x4104: "yin1", // 䄄
+ 0x4105: "juan4", // 䄅
+ 0x4106: "huo2", // 䄆
+ 0x4107: "cheng2", // 䄇
+ 0x4108: "dou4", // 䄈
+ 0x4109: "e2", // 䄉
+ 0x410b: "yan3", // 䄋
+ 0x410c: "zhui4", // 䄌
+ 0x410d: "zha4", // 䄍
+ 0x410e: "qi3", // 䄎
+ 0x410f: "yu2", // 䄏
+ 0x4110: "quan4", // 䄐
+ 0x4111: "huo2", // 䄑
+ 0x4112: "nie4", // 䄒
+ 0x4113: "huang2", // 䄓
+ 0x4114: "ju3", // 䄔
+ 0x4115: "she4", // 䄕
+ 0x4118: "peng2", // 䄘
+ 0x4119: "ming2", // 䄙
+ 0x411a: "cao2", // 䄚
+ 0x411b: "lou2", // 䄛
+ 0x411c: "li2", // 䄜
+ 0x411d: "chuang1", // 䄝
+ 0x411f: "cui1", // 䄟
+ 0x4120: "shan4", // 䄠
+ 0x4121: "dan1", // 䄡
+ 0x4122: "qi2", // 䄢
+ 0x4124: "lai4", // 䄤
+ 0x4125: "ling2", // 䄥
+ 0x4126: "liao3", // 䄦
+ 0x4127: "reng2", // 䄧
+ 0x4128: "yu2", // 䄨
+ 0x4129: "yi4", // 䄩
+ 0x412a: "diao3", // 䄪
+ 0x412b: "qi3", // 䄫
+ 0x412c: "yi2", // 䄬
+ 0x412d: "nian2", // 䄭
+ 0x412e: "fu1", // 䄮
+ 0x412f: "jian3", // 䄯
+ 0x4130: "ya2", // 䄰
+ 0x4131: "fang1", // 䄱
+ 0x4132: "rui4", // 䄲
+ 0x4133: "xian1", // 䄳
+ 0x4136: "bi4", // 䄶
+ 0x4137: "shi2", // 䄷
+ 0x4138: "po4", // 䄸
+ 0x4139: "nian2", // 䄹
+ 0x413a: "zhi4", // 䄺
+ 0x413b: "tao2", // 䄻
+ 0x413c: "tian3", // 䄼
+ 0x413d: "tian3", // 䄽
+ 0x413e: "ru4", // 䄾
+ 0x413f: "yi4", // 䄿
+ 0x4140: "lie4", // 䅀
+ 0x4141: "an4", // 䅁
+ 0x4142: "he2", // 䅂
+ 0x4143: "qiong2", // 䅃
+ 0x4144: "li4", // 䅄
+ 0x4145: "gui1", // 䅅
+ 0x4146: "zi4", // 䅆
+ 0x4147: "su4", // 䅇
+ 0x4148: "yuan4", // 䅈
+ 0x4149: "ya4", // 䅉
+ 0x414a: "cha2", // 䅊
+ 0x414b: "wan3", // 䅋
+ 0x414c: "juan1", // 䅌
+ 0x414d: "ting3", // 䅍
+ 0x414e: "you3", // 䅎
+ 0x414f: "hui4", // 䅏
+ 0x4150: "jian3", // 䅐
+ 0x4151: "rui2", // 䅑
+ 0x4152: "mang2", // 䅒
+ 0x4153: "ju3", // 䅓
+ 0x4154: "zi1", // 䅔
+ 0x4155: "ju1", // 䅕
+ 0x4156: "an1", // 䅖
+ 0x4157: "sui4", // 䅗
+ 0x4158: "lai2", // 䅘
+ 0x4159: "hun4", // 䅙
+ 0x415a: "quan3", // 䅚
+ 0x415b: "chang1", // 䅛
+ 0x415c: "duo4", // 䅜
+ 0x415d: "kong1", // 䅝
+ 0x415e: "ne4", // 䅞
+ 0x415f: "can3", // 䅟
+ 0x4160: "ti2", // 䅠
+ 0x4161: "xu3", // 䅡
+ 0x4162: "jiu4", // 䅢
+ 0x4163: "huang2", // 䅣
+ 0x4164: "qi4", // 䅤
+ 0x4165: "jie2", // 䅥
+ 0x4166: "mao2", // 䅦
+ 0x4167: "yan1", // 䅧
+ 0x4169: "zhi3", // 䅩
+ 0x416a: "tui2", // 䅪
+ 0x416c: "ai4", // 䅬
+ 0x416d: "pang2", // 䅭
+ 0x416e: "cang4", // 䅮
+ 0x416f: "tang2", // 䅯
+ 0x4170: "en3", // 䅰
+ 0x4171: "hun4", // 䅱
+ 0x4172: "qi2", // 䅲
+ 0x4173: "chu2", // 䅳
+ 0x4174: "suo3", // 䅴
+ 0x4175: "zhuo2", // 䅵
+ 0x4176: "nou4", // 䅶
+ 0x4177: "tu2", // 䅷
+ 0x4178: "shen1", // 䅸
+ 0x4179: "lou3", // 䅹
+ 0x417a: "biao1", // 䅺
+ 0x417b: "li2", // 䅻
+ 0x417c: "man2", // 䅼
+ 0x417d: "xin1", // 䅽
+ 0x417e: "cen2", // 䅾
+ 0x417f: "huang2", // 䅿
+ 0x4180: "mei3", // 䆀
+ 0x4181: "gao1", // 䆁
+ 0x4182: "lian2", // 䆂
+ 0x4183: "dao4", // 䆃
+ 0x4184: "zhan3", // 䆄
+ 0x4185: "zi1", // 䆅
+ 0x4188: "zhi4", // 䆈
+ 0x4189: "ba4", // 䆉
+ 0x418a: "cui4", // 䆊
+ 0x418b: "qiu1", // 䆋
+ 0x418d: "long2", // 䆍
+ 0x418e: "xian1", // 䆎
+ 0x418f: "fei4", // 䆏
+ 0x4190: "guo2", // 䆐
+ 0x4191: "cheng2", // 䆑
+ 0x4192: "jiu4", // 䆒
+ 0x4193: "e4", // 䆓
+ 0x4194: "chong1", // 䆔
+ 0x4195: "yue4", // 䆕
+ 0x4196: "hong2", // 䆖
+ 0x4197: "yao3", // 䆗
+ 0x4198: "ya1", // 䆘
+ 0x4199: "yao2", // 䆙
+ 0x419a: "tong2", // 䆚
+ 0x419b: "zha4", // 䆛
+ 0x419c: "you4", // 䆜
+ 0x419d: "xue4", // 䆝
+ 0x419e: "yao3", // 䆞
+ 0x419f: "ke4", // 䆟
+ 0x41a0: "huan4", // 䆠
+ 0x41a1: "lang2", // 䆡
+ 0x41a2: "yue4", // 䆢
+ 0x41a3: "chen2", // 䆣
+ 0x41a6: "shen4", // 䆦
+ 0x41a8: "ning2", // 䆨
+ 0x41a9: "ming2", // 䆩
+ 0x41aa: "hong1", // 䆪
+ 0x41ab: "chuang1", // 䆫
+ 0x41ac: "yun3", // 䆬
+ 0x41ad: "xuan1", // 䆭
+ 0x41ae: "jin4", // 䆮
+ 0x41af: "zhuo2", // 䆯
+ 0x41b0: "yu1", // 䆰
+ 0x41b1: "tan1", // 䆱
+ 0x41b2: "kang1", // 䆲
+ 0x41b3: "qiong2", // 䆳
+ 0x41b5: "cheng2", // 䆵
+ 0x41b6: "jiu1", // 䆶
+ 0x41b7: "xue4", // 䆷
+ 0x41b8: "zheng1", // 䆸
+ 0x41b9: "chong1", // 䆹
+ 0x41ba: "pan1", // 䆺
+ 0x41bb: "qiao4", // 䆻
+ 0x41bd: "qu2", // 䆽
+ 0x41be: "lan2", // 䆾
+ 0x41bf: "yi4", // 䆿
+ 0x41c0: "rong2", // 䇀
+ 0x41c1: "si1", // 䇁
+ 0x41c2: "qian1", // 䇂
+ 0x41c3: "si4", // 䇃
+ 0x41c5: "fa2", // 䇅
+ 0x41c7: "meng2", // 䇇
+ 0x41c8: "hua4", // 䇈
+ 0x41cb: "hai4", // 䇋
+ 0x41cc: "qiao4", // 䇌
+ 0x41cd: "chu4", // 䇍
+ 0x41ce: "que4", // 䇎
+ 0x41cf: "dui4", // 䇏
+ 0x41d0: "li4", // 䇐
+ 0x41d1: "ba4", // 䇑
+ 0x41d2: "jie4", // 䇒
+ 0x41d3: "xu1", // 䇓
+ 0x41d4: "luo4", // 䇔
+ 0x41d6: "yun3", // 䇖
+ 0x41d7: "zhong1", // 䇗
+ 0x41d8: "hu4", // 䇘
+ 0x41d9: "yin3", // 䇙
+ 0x41db: "zhi3", // 䇛
+ 0x41dc: "qian3", // 䇜
+ 0x41de: "gan1", // 䇞
+ 0x41df: "jian4", // 䇟
+ 0x41e0: "zhu4", // 䇠
+ 0x41e1: "zhu4", // 䇡
+ 0x41e2: "ku3", // 䇢
+ 0x41e3: "nie4", // 䇣
+ 0x41e4: "rui4", // 䇤
+ 0x41e5: "ze2", // 䇥
+ 0x41e6: "ang3", // 䇦
+ 0x41e7: "zhi4", // 䇧
+ 0x41e8: "gong4", // 䇨
+ 0x41e9: "yi4", // 䇩
+ 0x41ea: "chi1", // 䇪
+ 0x41eb: "ji1", // 䇫
+ 0x41ec: "zhu1", // 䇬
+ 0x41ed: "lao3", // 䇭
+ 0x41ee: "ren4", // 䇮
+ 0x41ef: "rong2", // 䇯
+ 0x41f0: "zheng1", // 䇰
+ 0x41f1: "na4", // 䇱
+ 0x41f2: "ce4", // 䇲
+ 0x41f5: "yi2", // 䇵
+ 0x41f6: "jue2", // 䇶
+ 0x41f7: "bie2", // 䇷
+ 0x41f8: "cheng2", // 䇸
+ 0x41f9: "jun4", // 䇹
+ 0x41fa: "dou4", // 䇺
+ 0x41fb: "wei3", // 䇻
+ 0x41fc: "yi4", // 䇼
+ 0x41fd: "zhe2", // 䇽
+ 0x41fe: "yan2", // 䇾
+ 0x4200: "san1", // 䈀
+ 0x4201: "lun2", // 䈁
+ 0x4202: "ping2", // 䈂
+ 0x4203: "zhao3", // 䈃
+ 0x4204: "han2", // 䈄
+ 0x4205: "yu4", // 䈅
+ 0x4206: "dai4", // 䈆
+ 0x4207: "zhao4", // 䈇
+ 0x4208: "fei2", // 䈈
+ 0x4209: "sha4", // 䈉
+ 0x420a: "ling2", // 䈊
+ 0x420b: "ta4", // 䈋
+ 0x420c: "qu1", // 䈌
+ 0x420d: "mang2", // 䈍
+ 0x420e: "ye4", // 䈎
+ 0x420f: "bao2", // 䈏
+ 0x4210: "gui4", // 䈐
+ 0x4211: "gua3", // 䈑
+ 0x4212: "nan3", // 䈒
+ 0x4213: "ge2", // 䈓
+ 0x4215: "shi2", // 䈕
+ 0x4216: "ke1", // 䈖
+ 0x4217: "suo3", // 䈗
+ 0x4218: "ci2", // 䈘
+ 0x4219: "zhou4", // 䈙
+ 0x421a: "tai2", // 䈚
+ 0x421b: "kuai4", // 䈛
+ 0x421c: "qin4", // 䈜
+ 0x421d: "xu1", // 䈝
+ 0x421e: "du3", // 䈞
+ 0x421f: "ce4", // 䈟
+ 0x4220: "huan3", // 䈠
+ 0x4221: "cong1", // 䈡
+ 0x4222: "sai3", // 䈢
+ 0x4223: "zheng4", // 䈣
+ 0x4224: "qian2", // 䈤
+ 0x4225: "jin1", // 䈥
+ 0x4226: "zong1", // 䈦
+ 0x4227: "wei3", // 䈧
+ 0x422a: "xi4", // 䈪
+ 0x422b: "na4", // 䈫
+ 0x422c: "pu2", // 䈬
+ 0x422d: "sou1", // 䈭
+ 0x422e: "ju4", // 䈮
+ 0x422f: "zhen1", // 䈯
+ 0x4230: "shao1", // 䈰
+ 0x4231: "tao1", // 䈱
+ 0x4232: "ban1", // 䈲
+ 0x4233: "ta4", // 䈳
+ 0x4234: "qian4", // 䈴
+ 0x4235: "weng1", // 䈵
+ 0x4236: "rong2", // 䈶
+ 0x4237: "luo4", // 䈷
+ 0x4238: "hu2", // 䈸
+ 0x4239: "sou3", // 䈹
+ 0x423a: "zhong1", // 䈺
+ 0x423b: "pu2", // 䈻
+ 0x423c: "mie4", // 䈼
+ 0x423d: "jin1", // 䈽
+ 0x423e: "shao1", // 䈾
+ 0x423f: "mi4", // 䈿
+ 0x4240: "shu4", // 䉀
+ 0x4241: "ling2", // 䉁
+ 0x4242: "lei3", // 䉂
+ 0x4243: "jiang3", // 䉃
+ 0x4244: "leng2", // 䉄
+ 0x4245: "zhi4", // 䉅
+ 0x4246: "diao3", // 䉆
+ 0x4248: "san3", // 䉈
+ 0x4249: "gu1", // 䉉
+ 0x424a: "fan4", // 䉊
+ 0x424b: "mei4", // 䉋
+ 0x424c: "sui4", // 䉌
+ 0x424d: "jian3", // 䉍
+ 0x424e: "tang2", // 䉎
+ 0x424f: "xie4", // 䉏
+ 0x4250: "ku1", // 䉐
+ 0x4251: "wu2", // 䉑
+ 0x4252: "fan2", // 䉒
+ 0x4253: "luo4", // 䉓
+ 0x4254: "can1", // 䉔
+ 0x4255: "ceng2", // 䉕
+ 0x4256: "ling2", // 䉖
+ 0x4257: "yi1", // 䉗
+ 0x4258: "cong2", // 䉘
+ 0x4259: "yun2", // 䉙
+ 0x425a: "meng2", // 䉚
+ 0x425b: "yu4", // 䉛
+ 0x425c: "zhi4", // 䉜
+ 0x425d: "yi3", // 䉝
+ 0x425e: "dan3", // 䉞
+ 0x425f: "huo4", // 䉟
+ 0x4260: "wei2", // 䉠
+ 0x4261: "tan2", // 䉡
+ 0x4262: "se4", // 䉢
+ 0x4263: "xie4", // 䉣
+ 0x4264: "sou3", // 䉤
+ 0x4265: "song3", // 䉥
+ 0x4266: "qian1", // 䉦
+ 0x4267: "liu2", // 䉧
+ 0x4268: "yi4", // 䉨
+ 0x426a: "lei4", // 䉪
+ 0x426b: "li2", // 䉫
+ 0x426c: "fei4", // 䉬
+ 0x426d: "lie4", // 䉭
+ 0x426e: "lin4", // 䉮
+ 0x426f: "xian4", // 䉯
+ 0x4270: "xiao4", // 䉰
+ 0x4271: "ou1", // 䉱
+ 0x4272: "mi2", // 䉲
+ 0x4273: "xian1", // 䉳
+ 0x4274: "rang2", // 䉴
+ 0x4275: "zhuan4", // 䉵
+ 0x4276: "shuang1", // 䉶
+ 0x4277: "yan2", // 䉷
+ 0x4278: "bian4", // 䉸
+ 0x4279: "ling2", // 䉹
+ 0x427a: "hong2", // 䉺
+ 0x427b: "qi2", // 䉻
+ 0x427c: "liao4", // 䉼
+ 0x427d: "ban3", // 䉽
+ 0x427e: "bi4", // 䉾
+ 0x427f: "hu2", // 䉿
+ 0x4280: "hu2", // 䊀
+ 0x4282: "ce4", // 䊂
+ 0x4283: "pei4", // 䊃
+ 0x4284: "qiong2", // 䊄
+ 0x4285: "ming2", // 䊅
+ 0x4286: "jiu4", // 䊆
+ 0x4287: "bu4", // 䊇
+ 0x4288: "mei2", // 䊈
+ 0x4289: "san3", // 䊉
+ 0x428a: "wei4", // 䊊
+ 0x428d: "li2", // 䊍
+ 0x428e: "quan3", // 䊎
+ 0x4290: "hun2", // 䊐
+ 0x4291: "xiang3", // 䊑
+ 0x4293: "shi4", // 䊓
+ 0x4294: "ying2", // 䊔
+ 0x4296: "nan3", // 䊖
+ 0x4297: "huang2", // 䊗
+ 0x4298: "jiu4", // 䊘
+ 0x4299: "yan1", // 䊙
+ 0x429b: "sa4", // 䊛
+ 0x429c: "tuan2", // 䊜
+ 0x429d: "xie4", // 䊝
+ 0x429e: "zhe2", // 䊞
+ 0x429f: "men2", // 䊟
+ 0x42a0: "xi4", // 䊠
+ 0x42a1: "man2", // 䊡
+ 0x42a3: "huang2", // 䊣
+ 0x42a4: "tan2", // 䊤
+ 0x42a5: "xiao4", // 䊥
+ 0x42a6: "ye4", // 䊦
+ 0x42a7: "bi4", // 䊧
+ 0x42a8: "luo2", // 䊨
+ 0x42a9: "fan2", // 䊩
+ 0x42aa: "li4", // 䊪
+ 0x42ab: "cui3", // 䊫
+ 0x42ac: "chua1", // 䊬
+ 0x42ad: "dao4", // 䊭
+ 0x42ae: "di2", // 䊮
+ 0x42af: "kuang4", // 䊯
+ 0x42b0: "chu2", // 䊰
+ 0x42b1: "xian1", // 䊱
+ 0x42b2: "chan4", // 䊲
+ 0x42b3: "mi2", // 䊳
+ 0x42b4: "qian4", // 䊴
+ 0x42b5: "qiu2", // 䊵
+ 0x42b6: "zhen4", // 䊶
+ 0x42ba: "hu4", // 䊺
+ 0x42bb: "gan1", // 䊻
+ 0x42bc: "chi3", // 䊼
+ 0x42bd: "guai4", // 䊽
+ 0x42be: "mu4", // 䊾
+ 0x42bf: "bo2", // 䊿
+ 0x42c0: "hua4", // 䋀
+ 0x42c1: "geng3", // 䋁
+ 0x42c2: "yao2", // 䋂
+ 0x42c3: "mao4", // 䋃
+ 0x42c4: "wang3", // 䋄
+ 0x42c8: "ru2", // 䋈
+ 0x42c9: "xue2", // 䋉
+ 0x42ca: "zheng1", // 䋊
+ 0x42cb: "min2", // 䋋
+ 0x42cc: "jiang3", // 䋌
+ 0x42ce: "zhan4", // 䋎
+ 0x42cf: "zuo2", // 䋏
+ 0x42d0: "yue4", // 䋐
+ 0x42d1: "lie4", // 䋑
+ 0x42d3: "zhou4", // 䋓
+ 0x42d4: "bi4", // 䋔
+ 0x42d5: "ren4", // 䋕
+ 0x42d6: "yu4", // 䋖
+ 0x42d8: "chuo4", // 䋘
+ 0x42d9: "er3", // 䋙
+ 0x42da: "yi4", // 䋚
+ 0x42db: "mi3", // 䋛
+ 0x42dc: "qing4", // 䋜
+ 0x42de: "wang3", // 䋞
+ 0x42df: "ji4", // 䋟
+ 0x42e0: "bu3", // 䋠
+ 0x42e2: "bie1", // 䋢
+ 0x42e3: "fan2", // 䋣
+ 0x42e4: "yue4", // 䋤
+ 0x42e5: "li2", // 䋥
+ 0x42e6: "fan2", // 䋦
+ 0x42e7: "qu2", // 䋧
+ 0x42e8: "fu3", // 䋨
+ 0x42e9: "er2", // 䋩
+ 0x42ea: "e1", // 䋪
+ 0x42eb: "zheng1", // 䋫
+ 0x42ec: "tian1", // 䋬
+ 0x42ed: "yu4", // 䋭
+ 0x42ee: "jin4", // 䋮
+ 0x42ef: "qi3", // 䋯
+ 0x42f0: "ju2", // 䋰
+ 0x42f1: "lai2", // 䋱
+ 0x42f2: "che3", // 䋲
+ 0x42f3: "bei3", // 䋳
+ 0x42f4: "niu4", // 䋴
+ 0x42f5: "yi4", // 䋵
+ 0x42f6: "xu3", // 䋶
+ 0x42f7: "mou2", // 䋷
+ 0x42f8: "xun2", // 䋸
+ 0x42f9: "fu2", // 䋹
+ 0x42fb: "nin2", // 䋻
+ 0x42fc: "ting1", // 䋼
+ 0x42fd: "beng3", // 䋽
+ 0x42fe: "zha3", // 䋾
+ 0x42ff: "wei1", // 䋿
+ 0x4300: "ke1", // 䌀
+ 0x4301: "yao1", // 䌁
+ 0x4302: "ou4", // 䌂
+ 0x4303: "xiao1", // 䌃
+ 0x4304: "geng3", // 䌄
+ 0x4305: "tang2", // 䌅
+ 0x4306: "gui4", // 䌆
+ 0x4307: "hui4", // 䌇
+ 0x4308: "ta1", // 䌈
+ 0x430a: "yao2", // 䌊
+ 0x430b: "da1", // 䌋
+ 0x430c: "qi4", // 䌌
+ 0x430d: "jin3", // 䌍
+ 0x430e: "lve4", // 䌎
+ 0x430f: "mi4", // 䌏
+ 0x4310: "mi4", // 䌐
+ 0x4311: "jian1", // 䌑
+ 0x4312: "lu4", // 䌒
+ 0x4313: "fan2", // 䌓
+ 0x4314: "ou1", // 䌔
+ 0x4315: "mi2", // 䌕
+ 0x4316: "jie2", // 䌖
+ 0x4317: "fu3", // 䌗
+ 0x4318: "bie4", // 䌘
+ 0x4319: "huang4", // 䌙
+ 0x431a: "su1", // 䌚
+ 0x431b: "yao2", // 䌛
+ 0x431c: "nie4", // 䌜
+ 0x431d: "jin1", // 䌝
+ 0x431e: "lian3", // 䌞
+ 0x431f: "bo2", // 䌟
+ 0x4320: "jian1", // 䌠
+ 0x4321: "ti3", // 䌡
+ 0x4322: "ling2", // 䌢
+ 0x4323: "zuan3", // 䌣
+ 0x4324: "shi1", // 䌤
+ 0x4325: "yin3", // 䌥
+ 0x4326: "dao4", // 䌦
+ 0x4327: "chou2", // 䌧
+ 0x4328: "ca1", // 䌨
+ 0x4329: "mie4", // 䌩
+ 0x432a: "yan3", // 䌪
+ 0x432b: "lan3", // 䌫
+ 0x432c: "chong2", // 䌬
+ 0x432d: "jiao1", // 䌭
+ 0x432e: "shuang1", // 䌮
+ 0x432f: "quan1", // 䌯
+ 0x4330: "nie4", // 䌰
+ 0x4331: "luo4", // 䌱
+ 0x4333: "shi1", // 䌳
+ 0x4334: "luo4", // 䌴
+ 0x4335: "zhu2", // 䌵
+ 0x4337: "chou1", // 䌷
+ 0x4338: "juan4", // 䌸
+ 0x4339: "jiong3", // 䌹
+ 0x433a: "er3", // 䌺
+ 0x433b: "yi4", // 䌻
+ 0x433c: "rui4", // 䌼
+ 0x433d: "cai3", // 䌽
+ 0x433e: "ren2", // 䌾
+ 0x433f: "fu2", // 䌿
+ 0x4340: "lan2", // 䍀
+ 0x4341: "sui4", // 䍁
+ 0x4342: "yu2", // 䍂
+ 0x4343: "you2", // 䍃
+ 0x4344: "dian3", // 䍄
+ 0x4345: "ling2", // 䍅
+ 0x4346: "zhu4", // 䍆
+ 0x4347: "ta4", // 䍇
+ 0x4348: "ping2", // 䍈
+ 0x4349: "zhai3", // 䍉
+ 0x434a: "jiao1", // 䍊
+ 0x434b: "chui2", // 䍋
+ 0x434c: "bu4", // 䍌
+ 0x434d: "kou4", // 䍍
+ 0x434e: "cun4", // 䍎
+ 0x4350: "han3", // 䍐
+ 0x4351: "han3", // 䍑
+ 0x4352: "mou3", // 䍒
+ 0x4353: "hu4", // 䍓
+ 0x4354: "gong1", // 䍔
+ 0x4355: "di1", // 䍕
+ 0x4356: "fu2", // 䍖
+ 0x4357: "xuan4", // 䍗
+ 0x4358: "mi2", // 䍘
+ 0x4359: "mei2", // 䍙
+ 0x435a: "lang4", // 䍚
+ 0x435b: "gu4", // 䍛
+ 0x435c: "zhao4", // 䍜
+ 0x435d: "ta4", // 䍝
+ 0x435e: "yu4", // 䍞
+ 0x435f: "zong4", // 䍟
+ 0x4360: "li2", // 䍠
+ 0x4361: "lu4", // 䍡
+ 0x4362: "wu2", // 䍢
+ 0x4363: "lei2", // 䍣
+ 0x4364: "ji3", // 䍤
+ 0x4365: "li4", // 䍥
+ 0x4366: "li2", // 䍦
+ 0x4368: "po1", // 䍨
+ 0x4369: "yang3", // 䍩
+ 0x436a: "wa4", // 䍪
+ 0x436b: "tuo2", // 䍫
+ 0x436c: "peng1", // 䍬
+ 0x436e: "zhao4", // 䍮
+ 0x436f: "gui3", // 䍯
+ 0x4371: "xu2", // 䍱
+ 0x4372: "nai2", // 䍲
+ 0x4373: "que4", // 䍳
+ 0x4374: "wei3", // 䍴
+ 0x4375: "zheng1", // 䍵
+ 0x4376: "dong1", // 䍶
+ 0x4377: "wei3", // 䍷
+ 0x4378: "bo2", // 䍸
+ 0x437a: "huan4", // 䍺
+ 0x437b: "xuan4", // 䍻
+ 0x437c: "zan1", // 䍼
+ 0x437d: "li4", // 䍽
+ 0x437e: "yan3", // 䍾
+ 0x437f: "huang2", // 䍿
+ 0x4380: "xue4", // 䎀
+ 0x4381: "hu2", // 䎁
+ 0x4382: "bao3", // 䎂
+ 0x4383: "ran3", // 䎃
+ 0x4384: "xiao1", // 䎄
+ 0x4385: "po4", // 䎅
+ 0x4386: "liao4", // 䎆
+ 0x4387: "zhou1", // 䎇
+ 0x4388: "yi4", // 䎈
+ 0x4389: "xu4", // 䎉
+ 0x438a: "luo4", // 䎊
+ 0x438b: "kao4", // 䎋
+ 0x438c: "chu4", // 䎌
+ 0x438e: "na4", // 䎎
+ 0x438f: "han2", // 䎏
+ 0x4390: "chao3", // 䎐
+ 0x4391: "lu4", // 䎑
+ 0x4392: "zhan3", // 䎒
+ 0x4393: "ta4", // 䎓
+ 0x4394: "fu1", // 䎔
+ 0x4395: "hong1", // 䎕
+ 0x4396: "zeng1", // 䎖
+ 0x4397: "qiao2", // 䎗
+ 0x4398: "su4", // 䎘
+ 0x4399: "pin1", // 䎙
+ 0x439a: "guan4", // 䎚
+ 0x439c: "hun1", // 䎜
+ 0x439d: "chu2", // 䎝
+ 0x439f: "er2", // 䎟
+ 0x43a0: "er2", // 䎠
+ 0x43a1: "ruan3", // 䎡
+ 0x43a2: "qi3", // 䎢
+ 0x43a3: "si4", // 䎣
+ 0x43a4: "ju2", // 䎤
+ 0x43a6: "yan3", // 䎦
+ 0x43a7: "bang4", // 䎧
+ 0x43a8: "ye4", // 䎨
+ 0x43a9: "zi1", // 䎩
+ 0x43aa: "ne4", // 䎪
+ 0x43ab: "chuang4", // 䎫
+ 0x43ac: "ba4", // 䎬
+ 0x43ad: "cao1", // 䎭
+ 0x43ae: "ti4", // 䎮
+ 0x43af: "han4", // 䎯
+ 0x43b0: "zuo2", // 䎰
+ 0x43b1: "ba4", // 䎱
+ 0x43b2: "zhe2", // 䎲
+ 0x43b3: "wa4", // 䎳
+ 0x43b4: "geng1", // 䎴
+ 0x43b5: "bi4", // 䎵
+ 0x43b6: "er4", // 䎶
+ 0x43b7: "zhu4", // 䎷
+ 0x43b8: "wu4", // 䎸
+ 0x43b9: "wen2", // 䎹
+ 0x43ba: "zhi4", // 䎺
+ 0x43bb: "zhou4", // 䎻
+ 0x43bc: "lu4", // 䎼
+ 0x43bd: "wen2", // 䎽
+ 0x43be: "gun3", // 䎾
+ 0x43bf: "qiu2", // 䎿
+ 0x43c0: "la4", // 䏀
+ 0x43c1: "zai3", // 䏁
+ 0x43c2: "sou3", // 䏂
+ 0x43c3: "mian2", // 䏃
+ 0x43c4: "di3", // 䏄
+ 0x43c5: "qi4", // 䏅
+ 0x43c6: "cao2", // 䏆
+ 0x43c7: "piao4", // 䏇
+ 0x43c8: "lian2", // 䏈
+ 0x43c9: "shi1", // 䏉
+ 0x43ca: "long2", // 䏊
+ 0x43cb: "su4", // 䏋
+ 0x43cc: "qi4", // 䏌
+ 0x43cd: "yuan4", // 䏍
+ 0x43ce: "feng2", // 䏎
+ 0x43cf: "xu1", // 䏏
+ 0x43d0: "jue2", // 䏐
+ 0x43d1: "di4", // 䏑
+ 0x43d2: "pian4", // 䏒
+ 0x43d3: "guan3", // 䏓
+ 0x43d4: "niu3", // 䏔
+ 0x43d5: "ren4", // 䏕
+ 0x43d6: "zhen4", // 䏖
+ 0x43d7: "gai4", // 䏗
+ 0x43d8: "pi4", // 䏘
+ 0x43d9: "tan3", // 䏙
+ 0x43da: "chao3", // 䏚
+ 0x43db: "chun3", // 䏛
+ 0x43dc: "he1", // 䏜
+ 0x43dd: "zhuan1", // 䏝
+ 0x43de: "mo4", // 䏞
+ 0x43df: "bie2", // 䏟
+ 0x43e0: "qi4", // 䏠
+ 0x43e1: "shi4", // 䏡
+ 0x43e2: "bi3", // 䏢
+ 0x43e3: "jue2", // 䏣
+ 0x43e4: "si4", // 䏤
+ 0x43e6: "gua1", // 䏦
+ 0x43e7: "na4", // 䏧
+ 0x43e8: "hui3", // 䏨
+ 0x43e9: "xi1", // 䏩
+ 0x43ea: "er4", // 䏪
+ 0x43eb: "xiu1", // 䏫
+ 0x43ec: "mou2", // 䏬
+ 0x43ee: "xi2", // 䏮
+ 0x43ef: "zhi4", // 䏯
+ 0x43f0: "run4", // 䏰
+ 0x43f1: "ju2", // 䏱
+ 0x43f2: "die2", // 䏲
+ 0x43f3: "zhe4", // 䏳
+ 0x43f4: "shao4", // 䏴
+ 0x43f5: "meng3", // 䏵
+ 0x43f6: "bi4", // 䏶
+ 0x43f7: "han4", // 䏷
+ 0x43f8: "yu2", // 䏸
+ 0x43f9: "xian4", // 䏹
+ 0x43fa: "pang1", // 䏺
+ 0x43fb: "neng2", // 䏻
+ 0x43fc: "can2", // 䏼
+ 0x43fd: "bu4", // 䏽
+ 0x43ff: "qi3", // 䏿
+ 0x4400: "ji4", // 䐀
+ 0x4401: "zhuo2", // 䐁
+ 0x4402: "lu4", // 䐂
+ 0x4403: "jun4", // 䐃
+ 0x4404: "xian4", // 䐄
+ 0x4405: "xi1", // 䐅
+ 0x4406: "cai3", // 䐆
+ 0x4407: "wen3", // 䐇
+ 0x4408: "zhi2", // 䐈
+ 0x4409: "zi4", // 䐉
+ 0x440a: "kun1", // 䐊
+ 0x440b: "cong1", // 䐋
+ 0x440c: "tian3", // 䐌
+ 0x440d: "chu4", // 䐍
+ 0x440e: "di1", // 䐎
+ 0x440f: "chun3", // 䐏
+ 0x4410: "qiu1", // 䐐
+ 0x4411: "zhe2", // 䐑
+ 0x4412: "zha1", // 䐒
+ 0x4413: "rou2", // 䐓
+ 0x4414: "bin3", // 䐔
+ 0x4415: "ji2", // 䐕
+ 0x4416: "xi1", // 䐖
+ 0x4417: "zhu1", // 䐗
+ 0x4418: "jue2", // 䐘
+ 0x4419: "ge2", // 䐙
+ 0x441a: "ji1", // 䐚
+ 0x441b: "da1", // 䐛
+ 0x441c: "chen1", // 䐜
+ 0x441d: "suo4", // 䐝
+ 0x441e: "ruo4", // 䐞
+ 0x441f: "xiang3", // 䐟
+ 0x4420: "huang3", // 䐠
+ 0x4421: "qi2", // 䐡
+ 0x4422: "zhu4", // 䐢
+ 0x4423: "sun3", // 䐣
+ 0x4424: "chai1", // 䐤
+ 0x4425: "weng3", // 䐥
+ 0x4426: "ke1", // 䐦
+ 0x4427: "kao4", // 䐧
+ 0x4428: "gu3", // 䐨
+ 0x4429: "gai1", // 䐩
+ 0x442a: "fan4", // 䐪
+ 0x442b: "cong1", // 䐫
+ 0x442c: "cao2", // 䐬
+ 0x442d: "zhi4", // 䐭
+ 0x442e: "chan3", // 䐮
+ 0x442f: "lei2", // 䐯
+ 0x4430: "xiu1", // 䐰
+ 0x4431: "zhai4", // 䐱
+ 0x4432: "zhe2", // 䐲
+ 0x4433: "yu2", // 䐳
+ 0x4434: "gui4", // 䐴
+ 0x4435: "gong1", // 䐵
+ 0x4436: "zan1", // 䐶
+ 0x4437: "dan1", // 䐷
+ 0x4438: "huo4", // 䐸
+ 0x4439: "sou1", // 䐹
+ 0x443a: "tan4", // 䐺
+ 0x443b: "gu1", // 䐻
+ 0x443c: "xi4", // 䐼
+ 0x443d: "man2", // 䐽
+ 0x443e: "duo2", // 䐾
+ 0x443f: "ao4", // 䐿
+ 0x4440: "pi4", // 䑀
+ 0x4441: "wu4", // 䑁
+ 0x4442: "ai3", // 䑂
+ 0x4443: "meng2", // 䑃
+ 0x4444: "pi4", // 䑄
+ 0x4445: "meng2", // 䑅
+ 0x4446: "yang3", // 䑆
+ 0x4447: "zhi4", // 䑇
+ 0x4448: "bo2", // 䑈
+ 0x4449: "ying2", // 䑉
+ 0x444a: "wei2", // 䑊
+ 0x444b: "rang3", // 䑋
+ 0x444c: "lan2", // 䑌
+ 0x444d: "yan1", // 䑍
+ 0x444e: "chan3", // 䑎
+ 0x444f: "quan2", // 䑏
+ 0x4450: "zhen3", // 䑐
+ 0x4451: "pu2", // 䑑
+ 0x4453: "tai2", // 䑓
+ 0x4454: "fei4", // 䑔
+ 0x4455: "shu3", // 䑕
+ 0x4457: "dang4", // 䑗
+ 0x4458: "cuo2", // 䑘
+ 0x4459: "tan1", // 䑙
+ 0x445a: "tian2", // 䑚
+ 0x445b: "chi3", // 䑛
+ 0x445c: "ta4", // 䑜
+ 0x445d: "jia3", // 䑝
+ 0x445e: "shun4", // 䑞
+ 0x445f: "huang2", // 䑟
+ 0x4460: "liao3", // 䑠
+ 0x4463: "chen1", // 䑣
+ 0x4464: "jin4", // 䑤
+ 0x4465: "e4", // 䑥
+ 0x4466: "gou1", // 䑦
+ 0x4467: "fu2", // 䑧
+ 0x4468: "duo4", // 䑨
+ 0x446a: "e4", // 䑪
+ 0x446b: "beng1", // 䑫
+ 0x446c: "tao1", // 䑬
+ 0x446d: "di4", // 䑭
+ 0x446f: "di4", // 䑯
+ 0x4470: "bu4", // 䑰
+ 0x4471: "wan3", // 䑱
+ 0x4472: "zhao4", // 䑲
+ 0x4473: "lun2", // 䑳
+ 0x4474: "qi2", // 䑴
+ 0x4475: "mu4", // 䑵
+ 0x4476: "qian4", // 䑶
+ 0x4478: "zong1", // 䑸
+ 0x4479: "sou1", // 䑹
+ 0x447b: "you2", // 䑻
+ 0x447c: "zhou1", // 䑼
+ 0x447d: "ta4", // 䑽
+ 0x447f: "su4", // 䑿
+ 0x4480: "bu4", // 䒀
+ 0x4481: "xi2", // 䒁
+ 0x4482: "jiang3", // 䒂
+ 0x4483: "cao4", // 䒃
+ 0x4484: "fu4", // 䒄
+ 0x4485: "teng2", // 䒅
+ 0x4486: "che4", // 䒆
+ 0x4487: "fu4", // 䒇
+ 0x4488: "fei4", // 䒈
+ 0x4489: "wu3", // 䒉
+ 0x448a: "xi1", // 䒊
+ 0x448b: "yang3", // 䒋
+ 0x448c: "ming4", // 䒌
+ 0x448d: "pang3", // 䒍
+ 0x448e: "mang3", // 䒎
+ 0x448f: "seng1", // 䒏
+ 0x4490: "meng2", // 䒐
+ 0x4491: "cao3", // 䒑
+ 0x4492: "tiao2", // 䒒
+ 0x4493: "kai3", // 䒓
+ 0x4494: "bai4", // 䒔
+ 0x4495: "xiao3", // 䒕
+ 0x4496: "xin4", // 䒖
+ 0x4497: "qi4", // 䒗
+ 0x449a: "shao3", // 䒚
+ 0x449b: "huan4", // 䒛
+ 0x449c: "niu2", // 䒜
+ 0x449d: "xiao2", // 䒝
+ 0x449e: "chen2", // 䒞
+ 0x449f: "dan1", // 䒟
+ 0x44a0: "feng1", // 䒠
+ 0x44a1: "yin3", // 䒡
+ 0x44a2: "ang2", // 䒢
+ 0x44a3: "ran3", // 䒣
+ 0x44a4: "ri4", // 䒤
+ 0x44a5: "man2", // 䒥
+ 0x44a6: "fan4", // 䒦
+ 0x44a7: "qu1", // 䒧
+ 0x44a8: "shi3", // 䒨
+ 0x44a9: "he2", // 䒩
+ 0x44aa: "bian4", // 䒪
+ 0x44ab: "dai4", // 䒫
+ 0x44ac: "mo4", // 䒬
+ 0x44ad: "deng3", // 䒭
+ 0x44b0: "kuang1", // 䒰
+ 0x44b2: "cha4", // 䒲
+ 0x44b3: "duo3", // 䒳
+ 0x44b4: "you3", // 䒴
+ 0x44b5: "hao4", // 䒵
+ 0x44b7: "gua1", // 䒷
+ 0x44b8: "xue4", // 䒸
+ 0x44b9: "lei4", // 䒹
+ 0x44ba: "jin3", // 䒺
+ 0x44bb: "qi3", // 䒻
+ 0x44bc: "qu1", // 䒼
+ 0x44bd: "wang3", // 䒽
+ 0x44be: "yi1", // 䒾
+ 0x44bf: "liao2", // 䒿
+ 0x44c2: "yan2", // 䓂
+ 0x44c3: "yi4", // 䓃
+ 0x44c4: "yin2", // 䓄
+ 0x44c5: "qi2", // 䓅
+ 0x44c6: "zhe2", // 䓆
+ 0x44c7: "xi4", // 䓇
+ 0x44c8: "yi4", // 䓈
+ 0x44c9: "ye2", // 䓉
+ 0x44ca: "wu2", // 䓊
+ 0x44cb: "zhi1", // 䓋
+ 0x44cc: "zhi4", // 䓌
+ 0x44cd: "han3", // 䓍
+ 0x44ce: "chuo4", // 䓎
+ 0x44cf: "fu1", // 䓏
+ 0x44d0: "chun2", // 䓐
+ 0x44d1: "ping2", // 䓑
+ 0x44d2: "kuai3", // 䓒
+ 0x44d3: "chou2", // 䓓
+ 0x44d5: "tuo3", // 䓕
+ 0x44d6: "qiong2", // 䓖
+ 0x44d7: "cong1", // 䓗
+ 0x44d8: "gao1", // 䓘
+ 0x44d9: "kua1", // 䓙
+ 0x44da: "qu1", // 䓚
+ 0x44db: "qu1", // 䓛
+ 0x44dc: "zhi1", // 䓜
+ 0x44dd: "meng4", // 䓝
+ 0x44de: "li4", // 䓞
+ 0x44df: "zhou1", // 䓟
+ 0x44e0: "ta4", // 䓠
+ 0x44e1: "zhi1", // 䓡
+ 0x44e2: "gu4", // 䓢
+ 0x44e3: "liang3", // 䓣
+ 0x44e4: "hu1", // 䓤
+ 0x44e5: "la4", // 䓥
+ 0x44e6: "dian3", // 䓦
+ 0x44e7: "ci4", // 䓧
+ 0x44e8: "ying1", // 䓨
+ 0x44eb: "qi2", // 䓫
+ 0x44ed: "cha4", // 䓭
+ 0x44ee: "mao4", // 䓮
+ 0x44ef: "du2", // 䓯
+ 0x44f0: "yin1", // 䓰
+ 0x44f1: "chai2", // 䓱
+ 0x44f2: "rui4", // 䓲
+ 0x44f3: "hen3", // 䓳
+ 0x44f4: "ruan3", // 䓴
+ 0x44f5: "fu1", // 䓵
+ 0x44f6: "lai4", // 䓶
+ 0x44f7: "xing4", // 䓷
+ 0x44f8: "jian1", // 䓸
+ 0x44f9: "yi4", // 䓹
+ 0x44fa: "mei3", // 䓺
+ 0x44fc: "mang2", // 䓼
+ 0x44fd: "ji4", // 䓽
+ 0x44fe: "suo1", // 䓾
+ 0x44ff: "han4", // 䓿
+ 0x4501: "li4", // 䔁
+ 0x4502: "zi3", // 䔂
+ 0x4503: "zu3", // 䔃
+ 0x4504: "yao2", // 䔄
+ 0x4505: "ge1", // 䔅
+ 0x4506: "li2", // 䔆
+ 0x4507: "qi3", // 䔇
+ 0x4508: "gong4", // 䔈
+ 0x4509: "li4", // 䔉
+ 0x450a: "bing1", // 䔊
+ 0x450b: "suo1", // 䔋
+ 0x450e: "su4", // 䔎
+ 0x450f: "chou4", // 䔏
+ 0x4510: "jian1", // 䔐
+ 0x4511: "xie2", // 䔑
+ 0x4512: "bei4", // 䔒
+ 0x4513: "xu3", // 䔓
+ 0x4514: "jing4", // 䔔
+ 0x4515: "pu2", // 䔕
+ 0x4516: "ling2", // 䔖
+ 0x4517: "xiang2", // 䔗
+ 0x4518: "zuo4", // 䔘
+ 0x4519: "diao4", // 䔙
+ 0x451a: "chun2", // 䔚
+ 0x451b: "qing3", // 䔛
+ 0x451c: "nan2", // 䔜
+ 0x451d: "zhai1", // 䔝
+ 0x451e: "lv4", // 䔞
+ 0x451f: "yi2", // 䔟
+ 0x4520: "shao3", // 䔠
+ 0x4521: "yu2", // 䔡
+ 0x4522: "hua2", // 䔢
+ 0x4523: "li2", // 䔣
+ 0x4524: "pa1", // 䔤
+ 0x4527: "li2", // 䔧
+ 0x452a: "shuang3", // 䔪
+ 0x452c: "yi4", // 䔬
+ 0x452d: "ning4", // 䔭
+ 0x452e: "si1", // 䔮
+ 0x452f: "ku4", // 䔯
+ 0x4530: "fu4", // 䔰
+ 0x4531: "yi1", // 䔱
+ 0x4532: "deng1", // 䔲
+ 0x4533: "ran2", // 䔳
+ 0x4534: "ce4", // 䔴
+ 0x4536: "ti2", // 䔶
+ 0x4537: "qin2", // 䔷
+ 0x4538: "biao3", // 䔸
+ 0x4539: "sui4", // 䔹
+ 0x453a: "wei2", // 䔺
+ 0x453b: "dun1", // 䔻
+ 0x453c: "se4", // 䔼
+ 0x453d: "ai4", // 䔽
+ 0x453e: "qi4", // 䔾
+ 0x453f: "zun3", // 䔿
+ 0x4540: "kuan3", // 䕀
+ 0x4541: "fei3", // 䕁
+ 0x4543: "yin4", // 䕃
+ 0x4545: "sao3", // 䕅
+ 0x4546: "dou4", // 䕆
+ 0x4547: "hui4", // 䕇
+ 0x4548: "xie4", // 䕈
+ 0x4549: "ze2", // 䕉
+ 0x454a: "tan2", // 䕊
+ 0x454b: "tang2", // 䕋
+ 0x454c: "zhi4", // 䕌
+ 0x454d: "yi4", // 䕍
+ 0x454e: "fu2", // 䕎
+ 0x454f: "e2", // 䕏
+ 0x4551: "jun4", // 䕑
+ 0x4552: "jia1", // 䕒
+ 0x4553: "cha2", // 䕓
+ 0x4554: "xian2", // 䕔
+ 0x4555: "man4", // 䕕
+ 0x4557: "bi4", // 䕗
+ 0x4558: "ling2", // 䕘
+ 0x4559: "jie2", // 䕙
+ 0x455a: "kui4", // 䕚
+ 0x455b: "jia2", // 䕛
+ 0x455d: "cheng1", // 䕝
+ 0x455e: "lang4", // 䕞
+ 0x455f: "xing1", // 䕟
+ 0x4560: "fei4", // 䕠
+ 0x4561: "lv2", // 䕡
+ 0x4562: "zha3", // 䕢
+ 0x4563: "he2", // 䕣
+ 0x4564: "ji1", // 䕤
+ 0x4565: "ni3", // 䕥
+ 0x4566: "ying2", // 䕦
+ 0x4567: "xiao4", // 䕧
+ 0x4568: "teng2", // 䕨
+ 0x4569: "lao3", // 䕩
+ 0x456a: "ze2", // 䕪
+ 0x456b: "kui2", // 䕫
+ 0x456d: "qian2", // 䕭
+ 0x456e: "ju2", // 䕮
+ 0x456f: "piao2", // 䕯
+ 0x4570: "fan2", // 䕰
+ 0x4571: "tou2", // 䕱
+ 0x4572: "lin3", // 䕲
+ 0x4573: "mi2", // 䕳
+ 0x4574: "zhuo2", // 䕴
+ 0x4575: "xie2", // 䕵
+ 0x4576: "hu4", // 䕶
+ 0x4577: "mi2", // 䕷
+ 0x4578: "jie1", // 䕸
+ 0x4579: "za2", // 䕹
+ 0x457a: "cong2", // 䕺
+ 0x457b: "li4", // 䕻
+ 0x457c: "ran2", // 䕼
+ 0x457d: "zhu2", // 䕽
+ 0x457e: "yin2", // 䕾
+ 0x457f: "han4", // 䕿
+ 0x4581: "yi4", // 䖁
+ 0x4582: "luan2", // 䖂
+ 0x4583: "yue4", // 䖃
+ 0x4584: "ran2", // 䖄
+ 0x4585: "ling2", // 䖅
+ 0x4586: "niang4", // 䖆
+ 0x4587: "yu4", // 䖇
+ 0x4588: "nve4", // 䖈
+ 0x458a: "yi4", // 䖊
+ 0x458b: "nve4", // 䖋
+ 0x458c: "yi4", // 䖌
+ 0x458d: "qian2", // 䖍
+ 0x458e: "xia2", // 䖎
+ 0x458f: "chu3", // 䖏
+ 0x4590: "yin2", // 䖐
+ 0x4591: "mi4", // 䖑
+ 0x4592: "xi1", // 䖒
+ 0x4593: "na4", // 䖓
+ 0x4594: "kan3", // 䖔
+ 0x4595: "zu3", // 䖕
+ 0x4596: "xia2", // 䖖
+ 0x4597: "yan2", // 䖗
+ 0x4598: "tu2", // 䖘
+ 0x4599: "ti1", // 䖙
+ 0x459a: "wu1", // 䖚
+ 0x459b: "suo3", // 䖛
+ 0x459c: "yin2", // 䖜
+ 0x459d: "chong2", // 䖝
+ 0x459e: "zhou3", // 䖞
+ 0x459f: "mang3", // 䖟
+ 0x45a0: "yuan2", // 䖠
+ 0x45a1: "nv4", // 䖡
+ 0x45a2: "miao2", // 䖢
+ 0x45a3: "zao3", // 䖣
+ 0x45a4: "wan3", // 䖤
+ 0x45a5: "li2", // 䖥
+ 0x45a6: "qu1", // 䖦
+ 0x45a7: "na4", // 䖧
+ 0x45a8: "shi2", // 䖨
+ 0x45a9: "bi4", // 䖩
+ 0x45aa: "zi1", // 䖪
+ 0x45ab: "bang4", // 䖫
+ 0x45ad: "juan4", // 䖭
+ 0x45ae: "xiang3", // 䖮
+ 0x45af: "kui2", // 䖯
+ 0x45b0: "pai4", // 䖰
+ 0x45b1: "kuang1", // 䖱
+ 0x45b2: "xun2", // 䖲
+ 0x45b3: "zha4", // 䖳
+ 0x45b4: "yao2", // 䖴
+ 0x45b5: "kun1", // 䖵
+ 0x45b6: "hui1", // 䖶
+ 0x45b7: "xi1", // 䖷
+ 0x45b8: "e2", // 䖸
+ 0x45b9: "yang2", // 䖹
+ 0x45ba: "tiao2", // 䖺
+ 0x45bb: "you2", // 䖻
+ 0x45bc: "jue2", // 䖼
+ 0x45bd: "li2", // 䖽
+ 0x45bf: "li2", // 䖿
+ 0x45c0: "cheng1", // 䗀
+ 0x45c1: "ji4", // 䗁
+ 0x45c2: "hu3", // 䗂
+ 0x45c3: "zhan4", // 䗃
+ 0x45c4: "fu3", // 䗄
+ 0x45c5: "chang2", // 䗅
+ 0x45c6: "guan3", // 䗆
+ 0x45c7: "ju2", // 䗇
+ 0x45c8: "meng2", // 䗈
+ 0x45c9: "chang1", // 䗉
+ 0x45ca: "tan4", // 䗊
+ 0x45cb: "mou2", // 䗋
+ 0x45cc: "xing1", // 䗌
+ 0x45cd: "li3", // 䗍
+ 0x45ce: "yan1", // 䗎
+ 0x45cf: "sou1", // 䗏
+ 0x45d0: "shi1", // 䗐
+ 0x45d1: "yi4", // 䗑
+ 0x45d2: "bing4", // 䗒
+ 0x45d3: "cong1", // 䗓
+ 0x45d4: "hou2", // 䗔
+ 0x45d5: "wan3", // 䗕
+ 0x45d6: "di4", // 䗖
+ 0x45d7: "ji1", // 䗗
+ 0x45d8: "ge2", // 䗘
+ 0x45d9: "han2", // 䗙
+ 0x45da: "bo2", // 䗚
+ 0x45db: "xiu1", // 䗛
+ 0x45dc: "liu2", // 䗜
+ 0x45dd: "can2", // 䗝
+ 0x45de: "can2", // 䗞
+ 0x45df: "yi4", // 䗟
+ 0x45e0: "xuan2", // 䗠
+ 0x45e1: "yan2", // 䗡
+ 0x45e2: "zao3", // 䗢
+ 0x45e3: "han4", // 䗣
+ 0x45e4: "yong2", // 䗤
+ 0x45e5: "zong1", // 䗥
+ 0x45e7: "kang1", // 䗧
+ 0x45e8: "yu2", // 䗨
+ 0x45e9: "qi1", // 䗩
+ 0x45ea: "zhe4", // 䗪
+ 0x45eb: "ma2", // 䗫
+ 0x45ee: "shuang3", // 䗮
+ 0x45ef: "jin4", // 䗯
+ 0x45f0: "guan4", // 䗰
+ 0x45f1: "pu2", // 䗱
+ 0x45f2: "lin4", // 䗲
+ 0x45f4: "ting2", // 䗴
+ 0x45f5: "jiang1", // 䗵
+ 0x45f6: "la4", // 䗶
+ 0x45f7: "yi4", // 䗷
+ 0x45f8: "yong1", // 䗸
+ 0x45f9: "ci4", // 䗹
+ 0x45fa: "yan3", // 䗺
+ 0x45fb: "jie2", // 䗻
+ 0x45fc: "xun1", // 䗼
+ 0x45fd: "wei4", // 䗽
+ 0x45fe: "xian3", // 䗾
+ 0x45ff: "ning2", // 䗿
+ 0x4600: "fu4", // 䘀
+ 0x4601: "ge2", // 䘁
+ 0x4603: "mo4", // 䘃
+ 0x4604: "zhu4", // 䘄
+ 0x4605: "nai2", // 䘅
+ 0x4606: "xian3", // 䘆
+ 0x4607: "wen2", // 䘇
+ 0x4608: "li4", // 䘈
+ 0x4609: "can2", // 䘉
+ 0x460a: "mie4", // 䘊
+ 0x460b: "jian1", // 䘋
+ 0x460c: "ni4", // 䘌
+ 0x460d: "chai4", // 䘍
+ 0x460e: "wan1", // 䘎
+ 0x460f: "xu4", // 䘏
+ 0x4610: "nv4", // 䘐
+ 0x4611: "mai4", // 䘑
+ 0x4612: "zui1", // 䘒
+ 0x4613: "kan4", // 䘓
+ 0x4614: "ka1", // 䘔
+ 0x4615: "hang2", // 䘕
+ 0x4618: "yu4", // 䘘
+ 0x4619: "wei4", // 䘙
+ 0x461a: "zhu2", // 䘚
+ 0x461d: "yi4", // 䘝
+ 0x461f: "diao1", // 䘟
+ 0x4620: "fu2", // 䘠
+ 0x4621: "bi3", // 䘡
+ 0x4622: "zhu3", // 䘢
+ 0x4623: "zi3", // 䘣
+ 0x4624: "shu4", // 䘤
+ 0x4625: "xia2", // 䘥
+ 0x4626: "ni2", // 䘦
+ 0x4628: "jiao3", // 䘨
+ 0x4629: "xun2", // 䘩
+ 0x462a: "chong1", // 䘪
+ 0x462b: "nou4", // 䘫
+ 0x462c: "rong2", // 䘬
+ 0x462d: "zhi4", // 䘭
+ 0x462e: "sang1", // 䘮
+ 0x4630: "shan1", // 䘰
+ 0x4631: "yu4", // 䘱
+ 0x4633: "jin1", // 䘳
+ 0x4635: "lu4", // 䘵
+ 0x4636: "han1", // 䘶
+ 0x4637: "bie1", // 䘷
+ 0x4638: "yi4", // 䘸
+ 0x4639: "zui4", // 䘹
+ 0x463a: "zhan4", // 䘺
+ 0x463b: "yu4", // 䘻
+ 0x463c: "wan3", // 䘼
+ 0x463d: "ni2", // 䘽
+ 0x463e: "guan3", // 䘾
+ 0x463f: "jue2", // 䘿
+ 0x4640: "beng3", // 䙀
+ 0x4641: "can2", // 䙁
+ 0x4643: "duo4", // 䙃
+ 0x4644: "qi4", // 䙄
+ 0x4645: "yao1", // 䙅
+ 0x4646: "kui4", // 䙆
+ 0x4647: "ruan2", // 䙇
+ 0x4648: "hou2", // 䙈
+ 0x4649: "xun2", // 䙉
+ 0x464a: "xie4", // 䙊
+ 0x464c: "kui4", // 䙌
+ 0x464e: "xie2", // 䙎
+ 0x464f: "bo2", // 䙏
+ 0x4650: "ke4", // 䙐
+ 0x4651: "cui1", // 䙑
+ 0x4652: "xu4", // 䙒
+ 0x4653: "bai3", // 䙓
+ 0x4654: "ou1", // 䙔
+ 0x4655: "zong3", // 䙕
+ 0x4657: "ti4", // 䙗
+ 0x4658: "chu3", // 䙘
+ 0x4659: "chi2", // 䙙
+ 0x465a: "niao3", // 䙚
+ 0x465b: "guan4", // 䙛
+ 0x465c: "feng2", // 䙜
+ 0x465d: "xie4", // 䙝
+ 0x465e: "deng1", // 䙞
+ 0x465f: "wei2", // 䙟
+ 0x4660: "jue2", // 䙠
+ 0x4661: "kui4", // 䙡
+ 0x4662: "zeng4", // 䙢
+ 0x4663: "sa4", // 䙣
+ 0x4664: "duo3", // 䙤
+ 0x4665: "ling2", // 䙥
+ 0x4666: "meng2", // 䙦
+ 0x4668: "guo3", // 䙨
+ 0x4669: "meng2", // 䙩
+ 0x466a: "long2", // 䙪
+ 0x466c: "ying4", // 䙬
+ 0x466e: "guan4", // 䙮
+ 0x466f: "cu4", // 䙯
+ 0x4670: "li2", // 䙰
+ 0x4671: "du2", // 䙱
+ 0x4673: "biao1", // 䙳
+ 0x4675: "xi1", // 䙵
+ 0x4677: "de2", // 䙷
+ 0x4678: "de2", // 䙸
+ 0x4679: "xian4", // 䙹
+ 0x467a: "lian2", // 䙺
+ 0x467c: "shao4", // 䙼
+ 0x467d: "xie2", // 䙽
+ 0x467e: "shi1", // 䙾
+ 0x467f: "wei4", // 䙿
+ 0x4682: "he4", // 䚂
+ 0x4683: "you2", // 䚃
+ 0x4684: "lu4", // 䚄
+ 0x4685: "lai4", // 䚅
+ 0x4686: "ying3", // 䚆
+ 0x4687: "sheng3", // 䚇
+ 0x4688: "juan4", // 䚈
+ 0x4689: "qi4", // 䚉
+ 0x468a: "jian3", // 䚊
+ 0x468b: "yun4", // 䚋
+ 0x468d: "qi4", // 䚍
+ 0x468f: "lin4", // 䚏
+ 0x4690: "ji2", // 䚐
+ 0x4691: "mai2", // 䚑
+ 0x4692: "chuang2", // 䚒
+ 0x4693: "nian3", // 䚓
+ 0x4694: "bin1", // 䚔
+ 0x4695: "li4", // 䚕
+ 0x4696: "ling2", // 䚖
+ 0x4697: "gang1", // 䚗
+ 0x4698: "cheng2", // 䚘
+ 0x4699: "xuan1", // 䚙
+ 0x469a: "xian3", // 䚚
+ 0x469b: "hu2", // 䚛
+ 0x469c: "bi1", // 䚜
+ 0x469d: "zu2", // 䚝
+ 0x469e: "dai3", // 䚞
+ 0x469f: "dai3", // 䚟
+ 0x46a0: "hun4", // 䚠
+ 0x46a1: "sai1", // 䚡
+ 0x46a2: "che4", // 䚢
+ 0x46a3: "ti2", // 䚣
+ 0x46a5: "nuo4", // 䚥
+ 0x46a6: "zhi4", // 䚦
+ 0x46a7: "liu2", // 䚧
+ 0x46a8: "fei4", // 䚨
+ 0x46a9: "jiao3", // 䚩
+ 0x46aa: "guan1", // 䚪
+ 0x46ab: "xi2", // 䚫
+ 0x46ac: "lin2", // 䚬
+ 0x46ad: "xuan1", // 䚭
+ 0x46ae: "reng2", // 䚮
+ 0x46af: "tao3", // 䚯
+ 0x46b0: "pi3", // 䚰
+ 0x46b1: "xin4", // 䚱
+ 0x46b2: "shan4", // 䚲
+ 0x46b3: "zhi4", // 䚳
+ 0x46b4: "wa4", // 䚴
+ 0x46b5: "tou3", // 䚵
+ 0x46b6: "tian1", // 䚶
+ 0x46b7: "yi1", // 䚷
+ 0x46b8: "xie4", // 䚸
+ 0x46b9: "pi3", // 䚹
+ 0x46ba: "yao2", // 䚺
+ 0x46bb: "yao2", // 䚻
+ 0x46bc: "nv4", // 䚼
+ 0x46bd: "hao4", // 䚽
+ 0x46be: "nin2", // 䚾
+ 0x46bf: "yin4", // 䚿
+ 0x46c0: "fan3", // 䛀
+ 0x46c1: "nan2", // 䛁
+ 0x46c2: "yao1", // 䛂
+ 0x46c3: "wan4", // 䛃
+ 0x46c4: "yuan3", // 䛄
+ 0x46c5: "xia2", // 䛅
+ 0x46c6: "zhou4", // 䛆
+ 0x46c7: "yuan3", // 䛇
+ 0x46c8: "shi4", // 䛈
+ 0x46c9: "mian4", // 䛉
+ 0x46ca: "xi1", // 䛊
+ 0x46cb: "ji4", // 䛋
+ 0x46cc: "tao2", // 䛌
+ 0x46cd: "fei4", // 䛍
+ 0x46ce: "xue4", // 䛎
+ 0x46cf: "ni2", // 䛏
+ 0x46d0: "ci2", // 䛐
+ 0x46d1: "mi4", // 䛑
+ 0x46d2: "bian4", // 䛒
+ 0x46d4: "na2", // 䛔
+ 0x46d5: "yu4", // 䛕
+ 0x46d6: "e4", // 䛖
+ 0x46d7: "zhi3", // 䛗
+ 0x46d8: "ren2", // 䛘
+ 0x46d9: "xu4", // 䛙
+ 0x46da: "lve4", // 䛚
+ 0x46db: "hui4", // 䛛
+ 0x46dc: "xun4", // 䛜
+ 0x46dd: "nao2", // 䛝
+ 0x46de: "han4", // 䛞
+ 0x46df: "jia2", // 䛟
+ 0x46e0: "dou4", // 䛠
+ 0x46e1: "hua4", // 䛡
+ 0x46e2: "tu1", // 䛢
+ 0x46e3: "ping1", // 䛣
+ 0x46e4: "cu4", // 䛤
+ 0x46e5: "xi1", // 䛥
+ 0x46e6: "song4", // 䛦
+ 0x46e7: "mi2", // 䛧
+ 0x46e8: "xin4", // 䛨
+ 0x46e9: "wu4", // 䛩
+ 0x46ea: "qiong2", // 䛪
+ 0x46eb: "zhang1", // 䛫
+ 0x46ec: "tao2", // 䛬
+ 0x46ed: "xing4", // 䛭
+ 0x46ee: "jiu4", // 䛮
+ 0x46ef: "ju4", // 䛯
+ 0x46f0: "hun4", // 䛰
+ 0x46f1: "ti2", // 䛱
+ 0x46f2: "man2", // 䛲
+ 0x46f3: "yan4", // 䛳
+ 0x46f4: "ji1", // 䛴
+ 0x46f5: "shou4", // 䛵
+ 0x46f6: "lei3", // 䛶
+ 0x46f7: "wan3", // 䛷
+ 0x46f8: "che4", // 䛸
+ 0x46f9: "can4", // 䛹
+ 0x46fa: "jie4", // 䛺
+ 0x46fb: "you4", // 䛻
+ 0x46fc: "hui3", // 䛼
+ 0x46fd: "zha3", // 䛽
+ 0x46fe: "su4", // 䛾
+ 0x46ff: "ge2", // 䛿
+ 0x4700: "nao3", // 䜀
+ 0x4701: "xi4", // 䜁
+ 0x4703: "dui1", // 䜃
+ 0x4704: "chi2", // 䜄
+ 0x4705: "wei2", // 䜅
+ 0x4706: "zhe2", // 䜆
+ 0x4707: "gun3", // 䜇
+ 0x4708: "chao1", // 䜈
+ 0x4709: "chi1", // 䜉
+ 0x470a: "zao1", // 䜊
+ 0x470b: "hui4", // 䜋
+ 0x470c: "luan2", // 䜌
+ 0x470d: "liao2", // 䜍
+ 0x470e: "lao2", // 䜎
+ 0x470f: "tuo1", // 䜏
+ 0x4710: "hui1", // 䜐
+ 0x4711: "wu4", // 䜑
+ 0x4712: "ao4", // 䜒
+ 0x4713: "she4", // 䜓
+ 0x4714: "sui2", // 䜔
+ 0x4715: "mai4", // 䜕
+ 0x4716: "tan4", // 䜖
+ 0x4717: "xin4", // 䜗
+ 0x4718: "jing3", // 䜘
+ 0x4719: "an2", // 䜙
+ 0x471a: "ta4", // 䜚
+ 0x471b: "chan2", // 䜛
+ 0x471c: "wei4", // 䜜
+ 0x471d: "tuan3", // 䜝
+ 0x471e: "ji4", // 䜞
+ 0x471f: "chen2", // 䜟
+ 0x4720: "che4", // 䜠
+ 0x4721: "yu4", // 䜡
+ 0x4722: "xian3", // 䜢
+ 0x4723: "xin1", // 䜣
+ 0x4727: "nao3", // 䜧
+ 0x4729: "yan4", // 䜩
+ 0x472a: "qiu2", // 䜪
+ 0x472b: "jiang1", // 䜫
+ 0x472c: "song3", // 䜬
+ 0x472d: "jun4", // 䜭
+ 0x472e: "liao2", // 䜮
+ 0x472f: "ju2", // 䜯
+ 0x4731: "man3", // 䜱
+ 0x4732: "lie4", // 䜲
+ 0x4734: "chu4", // 䜴
+ 0x4735: "chi3", // 䜵
+ 0x4736: "xiang2", // 䜶
+ 0x4737: "qin1", // 䜷
+ 0x4738: "mei3", // 䜸
+ 0x4739: "shu4", // 䜹
+ 0x473a: "chai3", // 䜺
+ 0x473b: "chi3", // 䜻
+ 0x473c: "gu2", // 䜼
+ 0x473d: "yu2", // 䜽
+ 0x473e: "yin1", // 䜾
+ 0x4740: "liu2", // 䝀
+ 0x4741: "lao2", // 䝁
+ 0x4742: "shu4", // 䝂
+ 0x4743: "zhe2", // 䝃
+ 0x4744: "shuang1", // 䝄
+ 0x4745: "hui1", // 䝅
+ 0x4748: "e4", // 䝈
+ 0x474a: "sha4", // 䝊
+ 0x474b: "zong4", // 䝋
+ 0x474c: "jue2", // 䝌
+ 0x474d: "jun4", // 䝍
+ 0x474e: "tuan1", // 䝎
+ 0x474f: "lou2", // 䝏
+ 0x4750: "wei2", // 䝐
+ 0x4751: "chong1", // 䝑
+ 0x4752: "zhu4", // 䝒
+ 0x4753: "lie4", // 䝓
+ 0x4755: "zhe2", // 䝕
+ 0x4756: "zhao3", // 䝖
+ 0x4758: "yi4", // 䝘
+ 0x4759: "chu1", // 䝙
+ 0x475a: "ni2", // 䝚
+ 0x475b: "bo1", // 䝛
+ 0x475c: "suan1", // 䝜
+ 0x475d: "yi3", // 䝝
+ 0x475e: "hao4", // 䝞
+ 0x475f: "ya4", // 䝟
+ 0x4760: "huan2", // 䝠
+ 0x4761: "man4", // 䝡
+ 0x4762: "man4", // 䝢
+ 0x4763: "qu2", // 䝣
+ 0x4764: "lao3", // 䝤
+ 0x4765: "hao2", // 䝥
+ 0x4766: "zhong1", // 䝦
+ 0x4767: "min2", // 䝧
+ 0x4768: "xian2", // 䝨
+ 0x4769: "zhen4", // 䝩
+ 0x476a: "shu3", // 䝪
+ 0x476b: "zuo2", // 䝫
+ 0x476c: "zhu4", // 䝬
+ 0x476d: "gou4", // 䝭
+ 0x476e: "xuan4", // 䝮
+ 0x476f: "yi4", // 䝯
+ 0x4770: "zhi4", // 䝰
+ 0x4771: "xie2", // 䝱
+ 0x4772: "jin4", // 䝲
+ 0x4773: "can2", // 䝳
+ 0x4775: "bu4", // 䝵
+ 0x4776: "liang2", // 䝶
+ 0x4777: "zhi1", // 䝷
+ 0x4778: "ji4", // 䝸
+ 0x4779: "wan3", // 䝹
+ 0x477a: "guan4", // 䝺
+ 0x477b: "ju1", // 䝻
+ 0x477c: "jing4", // 䝼
+ 0x477d: "ai4", // 䝽
+ 0x477e: "fu4", // 䝾
+ 0x477f: "gui4", // 䝿
+ 0x4780: "hou4", // 䞀
+ 0x4781: "yan4", // 䞁
+ 0x4782: "ruan3", // 䞂
+ 0x4783: "zhi4", // 䞃
+ 0x4784: "biao4", // 䞄
+ 0x4785: "yi2", // 䞅
+ 0x4786: "suo3", // 䞆
+ 0x4787: "die2", // 䞇
+ 0x4788: "gui4", // 䞈
+ 0x4789: "sheng4", // 䞉
+ 0x478a: "xun4", // 䞊
+ 0x478b: "chen4", // 䞋
+ 0x478c: "she2", // 䞌
+ 0x478d: "qing2", // 䞍
+ 0x4790: "chun3", // 䞐
+ 0x4791: "hong2", // 䞑
+ 0x4792: "dong4", // 䞒
+ 0x4793: "cheng1", // 䞓
+ 0x4794: "wei3", // 䞔
+ 0x4795: "ru2", // 䞕
+ 0x4796: "shu3", // 䞖
+ 0x4797: "cai1", // 䞗
+ 0x4798: "ji2", // 䞘
+ 0x4799: "za2", // 䞙
+ 0x479a: "qi2", // 䞚
+ 0x479b: "yan1", // 䞛
+ 0x479c: "fu4", // 䞜
+ 0x479d: "yu4", // 䞝
+ 0x479e: "fu2", // 䞞
+ 0x479f: "po4", // 䞟
+ 0x47a0: "zhi1", // 䞠
+ 0x47a1: "tan3", // 䞡
+ 0x47a2: "zuo2", // 䞢
+ 0x47a3: "che3", // 䞣
+ 0x47a4: "qu2", // 䞤
+ 0x47a5: "you4", // 䞥
+ 0x47a6: "he2", // 䞦
+ 0x47a7: "hou4", // 䞧
+ 0x47a8: "gui3", // 䞨
+ 0x47a9: "e4", // 䞩
+ 0x47aa: "jiang4", // 䞪
+ 0x47ab: "yun3", // 䞫
+ 0x47ac: "tou4", // 䞬
+ 0x47ad: "cun1", // 䞭
+ 0x47ae: "tu1", // 䞮
+ 0x47af: "fu4", // 䞯
+ 0x47b0: "zuo2", // 䞰
+ 0x47b1: "hu2", // 䞱
+ 0x47b3: "bo2", // 䞳
+ 0x47b4: "zhao1", // 䞴
+ 0x47b5: "jue3", // 䞵
+ 0x47b6: "tang1", // 䞶
+ 0x47b7: "jue2", // 䞷
+ 0x47b8: "fu4", // 䞸
+ 0x47b9: "huang2", // 䞹
+ 0x47ba: "chun1", // 䞺
+ 0x47bb: "yong3", // 䞻
+ 0x47bc: "chui3", // 䞼
+ 0x47bd: "suo3", // 䞽
+ 0x47be: "chi2", // 䞾
+ 0x47bf: "qian1", // 䞿
+ 0x47c0: "cai1", // 䟀
+ 0x47c1: "xiao2", // 䟁
+ 0x47c2: "man2", // 䟂
+ 0x47c3: "can1", // 䟃
+ 0x47c4: "qi4", // 䟄
+ 0x47c5: "jian4", // 䟅
+ 0x47c6: "bi4", // 䟆
+ 0x47c7: "ji1", // 䟇
+ 0x47c8: "zhi2", // 䟈
+ 0x47c9: "zhu2", // 䟉
+ 0x47ca: "qu2", // 䟊
+ 0x47cb: "zhan3", // 䟋
+ 0x47cc: "ji2", // 䟌
+ 0x47cd: "bian1", // 䟍
+ 0x47cf: "li4", // 䟏
+ 0x47d0: "li4", // 䟐
+ 0x47d1: "yue4", // 䟑
+ 0x47d2: "quan2", // 䟒
+ 0x47d3: "cheng1", // 䟓
+ 0x47d4: "fu4", // 䟔
+ 0x47d5: "cha4", // 䟕
+ 0x47d6: "tang4", // 䟖
+ 0x47d7: "shi4", // 䟗
+ 0x47d8: "hang4", // 䟘
+ 0x47d9: "qie4", // 䟙
+ 0x47da: "qi2", // 䟚
+ 0x47db: "bo2", // 䟛
+ 0x47dc: "na4", // 䟜
+ 0x47dd: "tou4", // 䟝
+ 0x47de: "chu2", // 䟞
+ 0x47df: "cu4", // 䟟
+ 0x47e0: "yue4", // 䟠
+ 0x47e1: "zhi1", // 䟡
+ 0x47e2: "chen2", // 䟢
+ 0x47e3: "chu4", // 䟣
+ 0x47e4: "bi4", // 䟤
+ 0x47e5: "meng2", // 䟥
+ 0x47e6: "ba2", // 䟦
+ 0x47e7: "tian2", // 䟧
+ 0x47e8: "min2", // 䟨
+ 0x47e9: "lie3", // 䟩
+ 0x47ea: "feng3", // 䟪
+ 0x47eb: "cheng1", // 䟫
+ 0x47ec: "qiu4", // 䟬
+ 0x47ed: "tiao2", // 䟭
+ 0x47ee: "fu2", // 䟮
+ 0x47ef: "kuo4", // 䟯
+ 0x47f0: "jian3", // 䟰
+ 0x47f4: "zhen4", // 䟴
+ 0x47f5: "qiu2", // 䟵
+ 0x47f6: "zuo4", // 䟶
+ 0x47f7: "chi4", // 䟷
+ 0x47f8: "kui2", // 䟸
+ 0x47f9: "lie4", // 䟹
+ 0x47fa: "bei4", // 䟺
+ 0x47fb: "du4", // 䟻
+ 0x47fc: "wu3", // 䟼
+ 0x47fe: "zhuo2", // 䟾
+ 0x47ff: "lu4", // 䟿
+ 0x4800: "tang1", // 䠀
+ 0x4802: "chu2", // 䠂
+ 0x4803: "liang3", // 䠃
+ 0x4804: "tian3", // 䠄
+ 0x4805: "kun3", // 䠅
+ 0x4806: "chang2", // 䠆
+ 0x4807: "jue2", // 䠇
+ 0x4808: "tu2", // 䠈
+ 0x4809: "huan4", // 䠉
+ 0x480a: "fei4", // 䠊
+ 0x480b: "bi4", // 䠋
+ 0x480d: "xia1", // 䠍
+ 0x480e: "wo4", // 䠎
+ 0x480f: "ji4", // 䠏
+ 0x4810: "qu4", // 䠐
+ 0x4811: "kui3", // 䠑
+ 0x4812: "hu2", // 䠒
+ 0x4813: "qiu1", // 䠓
+ 0x4814: "sui4", // 䠔
+ 0x4815: "cai1", // 䠕
+ 0x4817: "qiu4", // 䠗
+ 0x4818: "pi4", // 䠘
+ 0x4819: "pang2", // 䠙
+ 0x481a: "wa4", // 䠚
+ 0x481b: "yao2", // 䠛
+ 0x481c: "rong2", // 䠜
+ 0x481d: "xun1", // 䠝
+ 0x481e: "cu4", // 䠞
+ 0x481f: "die2", // 䠟
+ 0x4820: "chi4", // 䠠
+ 0x4821: "cuo2", // 䠡
+ 0x4822: "meng4", // 䠢
+ 0x4823: "xuan3", // 䠣
+ 0x4824: "duo3", // 䠤
+ 0x4825: "bie2", // 䠥
+ 0x4826: "zhe4", // 䠦
+ 0x4827: "chu2", // 䠧
+ 0x4828: "chan4", // 䠨
+ 0x4829: "gui4", // 䠩
+ 0x482a: "duan4", // 䠪
+ 0x482b: "zou4", // 䠫
+ 0x482c: "deng4", // 䠬
+ 0x482d: "lai2", // 䠭
+ 0x482e: "teng2", // 䠮
+ 0x482f: "yue4", // 䠯
+ 0x4830: "quan2", // 䠰
+ 0x4831: "zhu2", // 䠱
+ 0x4832: "ling2", // 䠲
+ 0x4833: "chen1", // 䠳
+ 0x4834: "zhen3", // 䠴
+ 0x4835: "fu4", // 䠵
+ 0x4836: "she4", // 䠶
+ 0x4837: "tiao3", // 䠷
+ 0x4838: "kua1", // 䠸
+ 0x4839: "ai2", // 䠹
+ 0x483b: "qiong2", // 䠻
+ 0x483c: "shu4", // 䠼
+ 0x483d: "hai2", // 䠽
+ 0x483e: "shan3", // 䠾
+ 0x483f: "wai4", // 䠿
+ 0x4840: "zhan3", // 䡀
+ 0x4841: "long3", // 䡁
+ 0x4842: "jiu1", // 䡂
+ 0x4843: "li4", // 䡃
+ 0x4845: "chun1", // 䡅
+ 0x4846: "rong2", // 䡆
+ 0x4847: "yue4", // 䡇
+ 0x4848: "jue2", // 䡈
+ 0x4849: "kang3", // 䡉
+ 0x484a: "fan3", // 䡊
+ 0x484b: "qi2", // 䡋
+ 0x484c: "hong2", // 䡌
+ 0x484d: "fu2", // 䡍
+ 0x484e: "lu2", // 䡎
+ 0x484f: "hong2", // 䡏
+ 0x4850: "tuo2", // 䡐
+ 0x4851: "min2", // 䡑
+ 0x4852: "tian2", // 䡒
+ 0x4853: "juan4", // 䡓
+ 0x4854: "qi3", // 䡔
+ 0x4855: "zheng3", // 䡕
+ 0x4856: "qing4", // 䡖
+ 0x4857: "gong3", // 䡗
+ 0x4858: "tian2", // 䡘
+ 0x4859: "lang2", // 䡙
+ 0x485a: "mao4", // 䡚
+ 0x485b: "yin4", // 䡛
+ 0x485c: "lu4", // 䡜
+ 0x485d: "yuan1", // 䡝
+ 0x485e: "ju2", // 䡞
+ 0x485f: "pi4", // 䡟
+ 0x4861: "xie2", // 䡡
+ 0x4862: "bian4", // 䡢
+ 0x4863: "hun1", // 䡣
+ 0x4864: "zhu1", // 䡤
+ 0x4865: "rong2", // 䡥
+ 0x4866: "sang3", // 䡦
+ 0x4867: "wu1", // 䡧
+ 0x4868: "cha4", // 䡨
+ 0x4869: "keng1", // 䡩
+ 0x486a: "shan4", // 䡪
+ 0x486b: "peng2", // 䡫
+ 0x486c: "man4", // 䡬
+ 0x486d: "xiu1", // 䡭
+ 0x486f: "cong1", // 䡯
+ 0x4870: "keng1", // 䡰
+ 0x4871: "zhuan3", // 䡱
+ 0x4872: "chan2", // 䡲
+ 0x4873: "si1", // 䡳
+ 0x4874: "chong1", // 䡴
+ 0x4875: "sui4", // 䡵
+ 0x4876: "bei4", // 䡶
+ 0x4877: "kai4", // 䡷
+ 0x4879: "zhi4", // 䡹
+ 0x487a: "wei4", // 䡺
+ 0x487b: "min2", // 䡻
+ 0x487c: "ling2", // 䡼
+ 0x487d: "zuan1", // 䡽
+ 0x487e: "nie4", // 䡾
+ 0x487f: "ling2", // 䡿
+ 0x4880: "qi4", // 䢀
+ 0x4881: "yue4", // 䢁
+ 0x4883: "yi4", // 䢃
+ 0x4884: "xi3", // 䢄
+ 0x4885: "chen2", // 䢅
+ 0x4887: "rong3", // 䢇
+ 0x4888: "chen2", // 䢈
+ 0x4889: "nong2", // 䢉
+ 0x488a: "you2", // 䢊
+ 0x488b: "ji4", // 䢋
+ 0x488c: "bo2", // 䢌
+ 0x488d: "fang3", // 䢍
+ 0x4890: "cu2", // 䢐
+ 0x4891: "di3", // 䢑
+ 0x4892: "jiao1", // 䢒
+ 0x4893: "yu2", // 䢓
+ 0x4894: "he2", // 䢔
+ 0x4895: "xu4", // 䢕
+ 0x4896: "yu4", // 䢖
+ 0x4897: "qu1", // 䢗
+ 0x4899: "bai4", // 䢙
+ 0x489a: "geng1", // 䢚
+ 0x489b: "jiong3", // 䢛
+ 0x489d: "ya4", // 䢝
+ 0x489e: "shu4", // 䢞
+ 0x489f: "you2", // 䢟
+ 0x48a0: "song4", // 䢠
+ 0x48a1: "ye4", // 䢡
+ 0x48a2: "cang4", // 䢢
+ 0x48a3: "yao2", // 䢣
+ 0x48a4: "shu4", // 䢤
+ 0x48a5: "yan2", // 䢥
+ 0x48a6: "shuai4", // 䢦
+ 0x48a7: "liao4", // 䢧
+ 0x48a8: "cong1", // 䢨
+ 0x48a9: "yu4", // 䢩
+ 0x48aa: "bo2", // 䢪
+ 0x48ab: "sui2", // 䢫
+ 0x48ad: "yan4", // 䢭
+ 0x48ae: "lei4", // 䢮
+ 0x48af: "lin2", // 䢯
+ 0x48b0: "ti1", // 䢰
+ 0x48b1: "du2", // 䢱
+ 0x48b2: "yue4", // 䢲
+ 0x48b3: "ji3", // 䢳
+ 0x48b5: "yun2", // 䢵
+ 0x48b8: "ju1", // 䢸
+ 0x48b9: "ju3", // 䢹
+ 0x48ba: "chu1", // 䢺
+ 0x48bb: "chen2", // 䢻
+ 0x48bc: "gong1", // 䢼
+ 0x48bd: "xiang4", // 䢽
+ 0x48be: "xian3", // 䢾
+ 0x48bf: "an1", // 䢿
+ 0x48c0: "gui3", // 䣀
+ 0x48c1: "yu3", // 䣁
+ 0x48c2: "lei3", // 䣂
+ 0x48c4: "tu2", // 䣄
+ 0x48c5: "chen2", // 䣅
+ 0x48c6: "xing2", // 䣆
+ 0x48c7: "qiu2", // 䣇
+ 0x48c8: "hang4", // 䣈
+ 0x48ca: "dang3", // 䣊
+ 0x48cb: "cai3", // 䣋
+ 0x48cc: "di3", // 䣌
+ 0x48cd: "yan3", // 䣍
+ 0x48ce: "zi1", // 䣎
+ 0x48d0: "ying1", // 䣐
+ 0x48d1: "chan2", // 䣑
+ 0x48d3: "li2", // 䣓
+ 0x48d4: "suo3", // 䣔
+ 0x48d5: "ma3", // 䣕
+ 0x48d6: "ma3", // 䣖
+ 0x48d8: "tang2", // 䣘
+ 0x48d9: "pei2", // 䣙
+ 0x48da: "lou2", // 䣚
+ 0x48db: "qi1", // 䣛
+ 0x48dc: "cuo2", // 䣜
+ 0x48dd: "tu2", // 䣝
+ 0x48de: "e4", // 䣞
+ 0x48df: "can2", // 䣟
+ 0x48e0: "jie2", // 䣠
+ 0x48e1: "yi2", // 䣡
+ 0x48e2: "ji2", // 䣢
+ 0x48e3: "dang3", // 䣣
+ 0x48e4: "jue2", // 䣤
+ 0x48e5: "bi3", // 䣥
+ 0x48e6: "lei4", // 䣦
+ 0x48e7: "yi4", // 䣧
+ 0x48e8: "chun2", // 䣨
+ 0x48e9: "chun2", // 䣩
+ 0x48ea: "po4", // 䣪
+ 0x48eb: "li2", // 䣫
+ 0x48ec: "zai3", // 䣬
+ 0x48ed: "tai4", // 䣭
+ 0x48ee: "po4", // 䣮
+ 0x48ef: "cu2", // 䣯
+ 0x48f0: "ju4", // 䣰
+ 0x48f1: "xu4", // 䣱
+ 0x48f2: "fan4", // 䣲
+ 0x48f4: "xu4", // 䣴
+ 0x48f5: "er4", // 䣵
+ 0x48f6: "huo2", // 䣶
+ 0x48f7: "zhu1", // 䣷
+ 0x48f8: "ran3", // 䣸
+ 0x48f9: "fa2", // 䣹
+ 0x48fa: "juan1", // 䣺
+ 0x48fb: "han1", // 䣻
+ 0x48fc: "liang2", // 䣼
+ 0x48fd: "zhi1", // 䣽
+ 0x48fe: "mi4", // 䣾
+ 0x48ff: "yu1", // 䣿
+ 0x4901: "cen2", // 䤁
+ 0x4902: "mei2", // 䤂
+ 0x4903: "yin1", // 䤃
+ 0x4904: "mian3", // 䤄
+ 0x4905: "tu2", // 䤅
+ 0x4906: "kui2", // 䤆
+ 0x4909: "mi4", // 䤉
+ 0x490a: "rong2", // 䤊
+ 0x490b: "yu4", // 䤋
+ 0x490c: "qiang1", // 䤌
+ 0x490d: "mi2", // 䤍
+ 0x490e: "ju2", // 䤎
+ 0x490f: "pi3", // 䤏
+ 0x4910: "jin3", // 䤐
+ 0x4911: "wang4", // 䤑
+ 0x4912: "ji4", // 䤒
+ 0x4913: "meng2", // 䤓
+ 0x4914: "jian4", // 䤔
+ 0x4915: "xue4", // 䤕
+ 0x4916: "bao4", // 䤖
+ 0x4917: "gan3", // 䤗
+ 0x4918: "chan3", // 䤘
+ 0x4919: "li4", // 䤙
+ 0x491a: "li3", // 䤚
+ 0x491b: "qiu2", // 䤛
+ 0x491c: "dun4", // 䤜
+ 0x491d: "ying4", // 䤝
+ 0x491e: "yun3", // 䤞
+ 0x491f: "chen2", // 䤟
+ 0x4920: "zhi3", // 䤠
+ 0x4921: "ran3", // 䤡
+ 0x4923: "lve4", // 䤣
+ 0x4924: "kai1", // 䤤
+ 0x4925: "gui3", // 䤥
+ 0x4926: "yue4", // 䤦
+ 0x4927: "hui4", // 䤧
+ 0x4928: "pi4", // 䤨
+ 0x4929: "cha2", // 䤩
+ 0x492a: "duo3", // 䤪
+ 0x492b: "chan2", // 䤫
+ 0x492c: "sha1", // 䤬
+ 0x492d: "shi4", // 䤭
+ 0x492e: "she4", // 䤮
+ 0x492f: "xing2", // 䤯
+ 0x4930: "ying2", // 䤰
+ 0x4931: "shi4", // 䤱
+ 0x4932: "chi4", // 䤲
+ 0x4933: "ye4", // 䤳
+ 0x4934: "han2", // 䤴
+ 0x4935: "fei4", // 䤵
+ 0x4936: "ye4", // 䤶
+ 0x4937: "yan3", // 䤷
+ 0x4938: "zuan4", // 䤸
+ 0x4939: "sou1", // 䤹
+ 0x493a: "jin1", // 䤺
+ 0x493b: "duo4", // 䤻
+ 0x493c: "xian4", // 䤼
+ 0x493d: "guan1", // 䤽
+ 0x493e: "tao1", // 䤾
+ 0x493f: "qie4", // 䤿
+ 0x4940: "chan3", // 䥀
+ 0x4941: "han2", // 䥁
+ 0x4942: "meng4", // 䥂
+ 0x4943: "yue4", // 䥃
+ 0x4944: "cu4", // 䥄
+ 0x4945: "qian4", // 䥅
+ 0x4946: "jin3", // 䥆
+ 0x4947: "shan4", // 䥇
+ 0x4948: "mu3", // 䥈
+ 0x4949: "yuan1", // 䥉
+ 0x494b: "peng1", // 䥋
+ 0x494c: "zheng4", // 䥌
+ 0x494d: "zhi4", // 䥍
+ 0x494e: "chun2", // 䥎
+ 0x494f: "yu3", // 䥏
+ 0x4950: "mou2", // 䥐
+ 0x4951: "wan4", // 䥑
+ 0x4952: "jiang4", // 䥒
+ 0x4953: "qi1", // 䥓
+ 0x4954: "su4", // 䥔
+ 0x4955: "pie3", // 䥕
+ 0x4956: "tian2", // 䥖
+ 0x4957: "kuan3", // 䥗
+ 0x4958: "cu4", // 䥘
+ 0x4959: "sui4", // 䥙
+ 0x495b: "jie1", // 䥛
+ 0x495c: "jian4", // 䥜
+ 0x495d: "ao2", // 䥝
+ 0x495e: "jiao3", // 䥞
+ 0x495f: "ye4", // 䥟
+ 0x4961: "ye4", // 䥡
+ 0x4962: "long2", // 䥢
+ 0x4963: "zao2", // 䥣
+ 0x4964: "bao2", // 䥤
+ 0x4965: "lian2", // 䥥
+ 0x4967: "huan2", // 䥧
+ 0x4968: "lv4", // 䥨
+ 0x4969: "wei2", // 䥩
+ 0x496a: "xian3", // 䥪
+ 0x496b: "tie3", // 䥫
+ 0x496c: "bo2", // 䥬
+ 0x496d: "zheng4", // 䥭
+ 0x496e: "zhu2", // 䥮
+ 0x496f: "bei1", // 䥯
+ 0x4970: "meng2", // 䥰
+ 0x4971: "xie3", // 䥱
+ 0x4972: "ou1", // 䥲
+ 0x4973: "you1", // 䥳
+ 0x4975: "xiao3", // 䥵
+ 0x4976: "li4", // 䥶
+ 0x4977: "zha2", // 䥷
+ 0x4978: "mi2", // 䥸
+ 0x497a: "ye2", // 䥺
+ 0x497d: "po1", // 䥽
+ 0x497e: "xie3", // 䥾
+ 0x4982: "shan4", // 䦂
+ 0x4983: "zhuo1", // 䦃
+ 0x4985: "shan4", // 䦅
+ 0x4986: "jue2", // 䦆
+ 0x4987: "ji4", // 䦇
+ 0x4988: "jie1", // 䦈
+ 0x498a: "niao3", // 䦊
+ 0x498b: "ao2", // 䦋
+ 0x498c: "chu4", // 䦌
+ 0x498d: "wu4", // 䦍
+ 0x498e: "guan3", // 䦎
+ 0x498f: "xie4", // 䦏
+ 0x4990: "ting3", // 䦐
+ 0x4991: "xue4", // 䦑
+ 0x4992: "dang4", // 䦒
+ 0x4993: "zhan1", // 䦓
+ 0x4994: "tan3", // 䦔
+ 0x4995: "peng1", // 䦕
+ 0x4996: "xie2", // 䦖
+ 0x4997: "xu4", // 䦗
+ 0x4998: "xian4", // 䦘
+ 0x4999: "si4", // 䦙
+ 0x499a: "kua4", // 䦚
+ 0x499b: "zheng4", // 䦛
+ 0x499c: "wu2", // 䦜
+ 0x499d: "huo1", // 䦝
+ 0x499e: "run4", // 䦞
+ 0x499f: "wen3", // 䦟
+ 0x49a0: "du1", // 䦠
+ 0x49a1: "huan2", // 䦡
+ 0x49a2: "kuo4", // 䦢
+ 0x49a3: "fu4", // 䦣
+ 0x49a4: "chuai4", // 䦤
+ 0x49a5: "xian2", // 䦥
+ 0x49a6: "qin2", // 䦦
+ 0x49a7: "qie2", // 䦧
+ 0x49a8: "lan2", // 䦨
+ 0x49aa: "ya4", // 䦪
+ 0x49ab: "ying1", // 䦫
+ 0x49ac: "que4", // 䦬
+ 0x49ad: "hang1", // 䦭
+ 0x49ae: "chun3", // 䦮
+ 0x49af: "zhi4", // 䦯
+ 0x49b1: "wei3", // 䦱
+ 0x49b2: "yan2", // 䦲
+ 0x49b3: "xiang4", // 䦳
+ 0x49b4: "yi4", // 䦴
+ 0x49b5: "ni3", // 䦵
+ 0x49b6: "zheng4", // 䦶
+ 0x49b7: "chuai4", // 䦷
+ 0x49b9: "shi2", // 䦹
+ 0x49ba: "ding1", // 䦺
+ 0x49bb: "zi3", // 䦻
+ 0x49bc: "jue2", // 䦼
+ 0x49bd: "xu4", // 䦽
+ 0x49be: "yuan2", // 䦾
+ 0x49c1: "xu3", // 䧁
+ 0x49c2: "dao4", // 䧂
+ 0x49c3: "tian2", // 䧃
+ 0x49c4: "ge4", // 䧄
+ 0x49c5: "yi2", // 䧅
+ 0x49c6: "hong2", // 䧆
+ 0x49c7: "yi1", // 䧇
+ 0x49c9: "li3", // 䧉
+ 0x49ca: "ku1", // 䧊
+ 0x49cb: "xian3", // 䧋
+ 0x49cc: "sui1", // 䧌
+ 0x49cd: "xi4", // 䧍
+ 0x49ce: "xuan4", // 䧎
+ 0x49d1: "di1", // 䧑
+ 0x49d2: "lai2", // 䧒
+ 0x49d3: "zhou1", // 䧓
+ 0x49d4: "nian4", // 䧔
+ 0x49d5: "cheng2", // 䧕
+ 0x49d6: "jian4", // 䧖
+ 0x49d7: "bi4", // 䧗
+ 0x49d8: "zhuan4", // 䧘
+ 0x49d9: "ling2", // 䧙
+ 0x49da: "hao4", // 䧚
+ 0x49db: "bang4", // 䧛
+ 0x49dc: "tang2", // 䧜
+ 0x49dd: "chi1", // 䧝
+ 0x49de: "ma4", // 䧞
+ 0x49df: "xian4", // 䧟
+ 0x49e0: "shuan4", // 䧠
+ 0x49e1: "yong1", // 䧡
+ 0x49e2: "qu1", // 䧢
+ 0x49e4: "pu2", // 䧤
+ 0x49e5: "hui4", // 䧥
+ 0x49e6: "wei2", // 䧦
+ 0x49e7: "yi3", // 䧧
+ 0x49e8: "ye4", // 䧨
+ 0x49ea: "che4", // 䧪
+ 0x49eb: "hao2", // 䧫
+ 0x49ec: "bin1", // 䧬
+ 0x49ee: "xian4", // 䧮
+ 0x49ef: "chan2", // 䧯
+ 0x49f0: "hun4", // 䧰
+ 0x49f2: "han4", // 䧲
+ 0x49f3: "ci2", // 䧳
+ 0x49f4: "zhi1", // 䧴
+ 0x49f5: "qi2", // 䧵
+ 0x49f6: "kui2", // 䧶
+ 0x49f7: "rou2", // 䧷
+ 0x49f9: "ying1", // 䧹
+ 0x49fa: "xiong2", // 䧺
+ 0x49fc: "hu2", // 䧼
+ 0x49fd: "cui3", // 䧽
+ 0x49ff: "que4", // 䧿
+ 0x4a00: "di2", // 䨀
+ 0x4a01: "wu4", // 䨁
+ 0x4a02: "qiu1", // 䨂
+ 0x4a04: "yan4", // 䨄
+ 0x4a05: "liao2", // 䨅
+ 0x4a06: "bi2", // 䨆
+ 0x4a08: "bin1", // 䨈
+ 0x4a0a: "yuan1", // 䨊
+ 0x4a0b: "nve4", // 䨋
+ 0x4a0c: "bao2", // 䨌
+ 0x4a0d: "ying3", // 䨍
+ 0x4a0e: "hong2", // 䨎
+ 0x4a0f: "ci2", // 䨏
+ 0x4a10: "qia4", // 䨐
+ 0x4a11: "ti2", // 䨑
+ 0x4a12: "yu4", // 䨒
+ 0x4a13: "lei2", // 䨓
+ 0x4a14: "bao2", // 䨔
+ 0x4a16: "ji4", // 䨖
+ 0x4a17: "fu2", // 䨗
+ 0x4a18: "xian4", // 䨘
+ 0x4a19: "cen2", // 䨙
+ 0x4a1a: "hu1", // 䨚
+ 0x4a1b: "se4", // 䨛
+ 0x4a1c: "beng1", // 䨜
+ 0x4a1d: "qing1", // 䨝
+ 0x4a1e: "yu3", // 䨞
+ 0x4a1f: "wa1", // 䨟
+ 0x4a20: "ai3", // 䨠
+ 0x4a21: "han2", // 䨡
+ 0x4a22: "dan4", // 䨢
+ 0x4a23: "ge2", // 䨣
+ 0x4a24: "di2", // 䨤
+ 0x4a25: "huo4", // 䨥
+ 0x4a26: "pang1", // 䨦
+ 0x4a28: "zhui1", // 䨨
+ 0x4a29: "ling2", // 䨩
+ 0x4a2a: "mai2", // 䨪
+ 0x4a2b: "mai4", // 䨫
+ 0x4a2c: "lian2", // 䨬
+ 0x4a2d: "xiao1", // 䨭
+ 0x4a2e: "xue3", // 䨮
+ 0x4a2f: "zhen4", // 䨯
+ 0x4a30: "po4", // 䨰
+ 0x4a31: "fu4", // 䨱
+ 0x4a32: "nou2", // 䨲
+ 0x4a33: "xi4", // 䨳
+ 0x4a34: "dui4", // 䨴
+ 0x4a35: "dan4", // 䨵
+ 0x4a36: "yun3", // 䨶
+ 0x4a37: "xian4", // 䨷
+ 0x4a38: "yin3", // 䨸
+ 0x4a39: "shu1", // 䨹
+ 0x4a3a: "dui4", // 䨺
+ 0x4a3b: "beng4", // 䨻
+ 0x4a3c: "hu4", // 䨼
+ 0x4a3d: "fei3", // 䨽
+ 0x4a3e: "fei4", // 䨾
+ 0x4a3f: "za2", // 䨿
+ 0x4a40: "bei4", // 䩀
+ 0x4a41: "fei1", // 䩁
+ 0x4a42: "xian1", // 䩂
+ 0x4a43: "shi4", // 䩃
+ 0x4a44: "mian3", // 䩄
+ 0x4a45: "zhan3", // 䩅
+ 0x4a46: "zhan3", // 䩆
+ 0x4a47: "zhan1", // 䩇
+ 0x4a48: "hui4", // 䩈
+ 0x4a49: "fu3", // 䩉
+ 0x4a4a: "wan3", // 䩊
+ 0x4a4b: "mo3", // 䩋
+ 0x4a4c: "qiao2", // 䩌
+ 0x4a4d: "liao3", // 䩍
+ 0x4a4f: "mie4", // 䩏
+ 0x4a50: "hu1", // 䩐
+ 0x4a51: "hong2", // 䩑
+ 0x4a52: "yu2", // 䩒
+ 0x4a53: "qi2", // 䩓
+ 0x4a54: "duo4", // 䩔
+ 0x4a55: "ang2", // 䩕
+ 0x4a57: "ba4", // 䩗
+ 0x4a58: "di4", // 䩘
+ 0x4a59: "xuan4", // 䩙
+ 0x4a5a: "di4", // 䩚
+ 0x4a5b: "bi4", // 䩛
+ 0x4a5c: "zhou4", // 䩜
+ 0x4a5d: "pao2", // 䩝
+ 0x4a5e: "tie2", // 䩞
+ 0x4a5f: "yi2", // 䩟
+ 0x4a61: "jia2", // 䩡
+ 0x4a62: "zhi4", // 䩢
+ 0x4a63: "tu2", // 䩣
+ 0x4a64: "xie2", // 䩤
+ 0x4a65: "dan4", // 䩥
+ 0x4a66: "tiao2", // 䩦
+ 0x4a67: "xie4", // 䩧
+ 0x4a68: "chang4", // 䩨
+ 0x4a69: "yuan3", // 䩩
+ 0x4a6a: "guan3", // 䩪
+ 0x4a6b: "liang3", // 䩫
+ 0x4a6c: "beng3", // 䩬
+ 0x4a6e: "lu4", // 䩮
+ 0x4a6f: "ji2", // 䩯
+ 0x4a70: "xuan4", // 䩰
+ 0x4a71: "shu4", // 䩱
+ 0x4a72: "du1", // 䩲
+ 0x4a73: "sou1", // 䩳
+ 0x4a74: "hu2", // 䩴
+ 0x4a75: "yun4", // 䩵
+ 0x4a76: "chan3", // 䩶
+ 0x4a77: "bang1", // 䩷
+ 0x4a78: "rong2", // 䩸
+ 0x4a79: "e2", // 䩹
+ 0x4a7a: "weng1", // 䩺
+ 0x4a7b: "ba4", // 䩻
+ 0x4a7c: "feng2", // 䩼
+ 0x4a7d: "yu1", // 䩽
+ 0x4a7e: "zhe4", // 䩾
+ 0x4a7f: "fen2", // 䩿
+ 0x4a80: "guan3", // 䪀
+ 0x4a81: "bu3", // 䪁
+ 0x4a82: "ge2", // 䪂
+ 0x4a83: "dun1", // 䪃
+ 0x4a84: "huang2", // 䪄
+ 0x4a85: "du2", // 䪅
+ 0x4a86: "ti3", // 䪆
+ 0x4a87: "bo2", // 䪇
+ 0x4a88: "qian4", // 䪈
+ 0x4a89: "lie4", // 䪉
+ 0x4a8a: "long2", // 䪊
+ 0x4a8b: "wei4", // 䪋
+ 0x4a8c: "zhan4", // 䪌
+ 0x4a8d: "lan2", // 䪍
+ 0x4a8e: "sui1", // 䪎
+ 0x4a8f: "na4", // 䪏
+ 0x4a90: "bi4", // 䪐
+ 0x4a91: "tuo2", // 䪑
+ 0x4a92: "zhu4", // 䪒
+ 0x4a93: "die1", // 䪓
+ 0x4a94: "bu3", // 䪔
+ 0x4a95: "ju2", // 䪕
+ 0x4a96: "po4", // 䪖
+ 0x4a97: "xia2", // 䪗
+ 0x4a98: "wei3", // 䪘
+ 0x4a99: "po4", // 䪙
+ 0x4a9a: "da1", // 䪚
+ 0x4a9b: "fan1", // 䪛
+ 0x4a9c: "chan1", // 䪜
+ 0x4a9d: "hu4", // 䪝
+ 0x4a9e: "za2", // 䪞
+ 0x4aa4: "fan2", // 䪤
+ 0x4aa5: "xie4", // 䪥
+ 0x4aa6: "hong2", // 䪦
+ 0x4aa7: "chi2", // 䪧
+ 0x4aa8: "bao2", // 䪨
+ 0x4aa9: "yin2", // 䪩
+ 0x4aab: "jing1", // 䪫
+ 0x4aac: "bo2", // 䪬
+ 0x4aad: "ruan3", // 䪭
+ 0x4aae: "chou3", // 䪮
+ 0x4aaf: "ying1", // 䪯
+ 0x4ab0: "yi1", // 䪰
+ 0x4ab1: "gai3", // 䪱
+ 0x4ab2: "kun1", // 䪲
+ 0x4ab3: "yun3", // 䪳
+ 0x4ab4: "zhen3", // 䪴
+ 0x4ab5: "ya3", // 䪵
+ 0x4ab6: "ju1", // 䪶
+ 0x4ab7: "hou4", // 䪷
+ 0x4ab8: "min2", // 䪸
+ 0x4ab9: "bai1", // 䪹
+ 0x4aba: "ge2", // 䪺
+ 0x4abb: "bian4", // 䪻
+ 0x4abc: "zhuo1", // 䪼
+ 0x4abd: "hao4", // 䪽
+ 0x4abe: "zhen3", // 䪾
+ 0x4abf: "sheng3", // 䪿
+ 0x4ac0: "gen3", // 䫀
+ 0x4ac1: "bi4", // 䫁
+ 0x4ac2: "duo3", // 䫂
+ 0x4ac3: "chun2", // 䫃
+ 0x4ac4: "chua4", // 䫄
+ 0x4ac5: "san4", // 䫅
+ 0x4ac6: "cheng2", // 䫆
+ 0x4ac7: "ran2", // 䫇
+ 0x4ac8: "chen3", // 䫈
+ 0x4ac9: "mao4", // 䫉
+ 0x4aca: "pei2", // 䫊
+ 0x4acb: "wei1", // 䫋
+ 0x4acc: "pi3", // 䫌
+ 0x4acd: "fu3", // 䫍
+ 0x4ace: "zhuo1", // 䫎
+ 0x4acf: "qi1", // 䫏
+ 0x4ad0: "lin2", // 䫐
+ 0x4ad1: "yi1", // 䫑
+ 0x4ad2: "men2", // 䫒
+ 0x4ad3: "wu2", // 䫓
+ 0x4ad4: "qi4", // 䫔
+ 0x4ad5: "die2", // 䫕
+ 0x4ad6: "chen3", // 䫖
+ 0x4ad7: "xia2", // 䫗
+ 0x4ad8: "he2", // 䫘
+ 0x4ad9: "sang3", // 䫙
+ 0x4ada: "gua1", // 䫚
+ 0x4adb: "hou2", // 䫛
+ 0x4adc: "ao1", // 䫜
+ 0x4add: "fu3", // 䫝
+ 0x4ade: "qiao1", // 䫞
+ 0x4adf: "hun4", // 䫟
+ 0x4ae0: "pi1", // 䫠
+ 0x4ae1: "yan2", // 䫡
+ 0x4ae2: "si1", // 䫢
+ 0x4ae3: "xi2", // 䫣
+ 0x4ae4: "ming2", // 䫤
+ 0x4ae5: "kui3", // 䫥
+ 0x4ae6: "ge2", // 䫦
+ 0x4ae8: "ao4", // 䫨
+ 0x4ae9: "san3", // 䫩
+ 0x4aea: "shuang3", // 䫪
+ 0x4aeb: "lou2", // 䫫
+ 0x4aec: "zhen3", // 䫬
+ 0x4aed: "hui4", // 䫭
+ 0x4aee: "chan2", // 䫮
+ 0x4af0: "lin4", // 䫰
+ 0x4af1: "na2", // 䫱
+ 0x4af2: "han4", // 䫲
+ 0x4af3: "du2", // 䫳
+ 0x4af4: "jin4", // 䫴
+ 0x4af5: "mian2", // 䫵
+ 0x4af6: "fan2", // 䫶
+ 0x4af7: "e4", // 䫷
+ 0x4af8: "chao1", // 䫸
+ 0x4af9: "hong2", // 䫹
+ 0x4afa: "hong2", // 䫺
+ 0x4afb: "yu4", // 䫻
+ 0x4afc: "xue4", // 䫼
+ 0x4afd: "pao1", // 䫽
+ 0x4afe: "bi1", // 䫾
+ 0x4aff: "chao1", // 䫿
+ 0x4b00: "you3", // 䬀
+ 0x4b01: "yi2", // 䬁
+ 0x4b02: "xue4", // 䬂
+ 0x4b03: "sa4", // 䬃
+ 0x4b04: "xu4", // 䬄
+ 0x4b05: "li4", // 䬅
+ 0x4b06: "li4", // 䬆
+ 0x4b07: "yuan4", // 䬇
+ 0x4b08: "dui4", // 䬈
+ 0x4b09: "huo4", // 䬉
+ 0x4b0a: "sha4", // 䬊
+ 0x4b0b: "leng2", // 䬋
+ 0x4b0c: "pou1", // 䬌
+ 0x4b0d: "hu1", // 䬍
+ 0x4b0e: "guo2", // 䬎
+ 0x4b0f: "bu4", // 䬏
+ 0x4b10: "rui2", // 䬐
+ 0x4b11: "wei4", // 䬑
+ 0x4b12: "sou1", // 䬒
+ 0x4b13: "an4", // 䬓
+ 0x4b14: "yu2", // 䬔
+ 0x4b15: "xiang1", // 䬕
+ 0x4b16: "heng2", // 䬖
+ 0x4b17: "yang2", // 䬗
+ 0x4b18: "xiao1", // 䬘
+ 0x4b19: "yao2", // 䬙
+ 0x4b1b: "bi4", // 䬛
+ 0x4b1d: "heng2", // 䬝
+ 0x4b1e: "tao2", // 䬞
+ 0x4b1f: "liu2", // 䬟
+ 0x4b21: "zhu4", // 䬡
+ 0x4b23: "xi4", // 䬣
+ 0x4b24: "zan4", // 䬤
+ 0x4b25: "yi4", // 䬥
+ 0x4b26: "dou4", // 䬦
+ 0x4b27: "yuan2", // 䬧
+ 0x4b28: "jiu4", // 䬨
+ 0x4b2a: "bo2", // 䬪
+ 0x4b2b: "ti2", // 䬫
+ 0x4b2c: "ying3", // 䬬
+ 0x4b2e: "yi2", // 䬮
+ 0x4b2f: "nian2", // 䬯
+ 0x4b30: "shao4", // 䬰
+ 0x4b31: "ben4", // 䬱
+ 0x4b32: "gou1", // 䬲
+ 0x4b33: "ban3", // 䬳
+ 0x4b34: "mo4", // 䬴
+ 0x4b35: "gai1", // 䬵
+ 0x4b36: "en4", // 䬶
+ 0x4b37: "she3", // 䬷
+ 0x4b39: "zhi4", // 䬹
+ 0x4b3a: "yang4", // 䬺
+ 0x4b3b: "jian4", // 䬻
+ 0x4b3c: "yuan4", // 䬼
+ 0x4b3d: "shui4", // 䬽
+ 0x4b3e: "ti2", // 䬾
+ 0x4b3f: "wei3", // 䬿
+ 0x4b40: "xun4", // 䭀
+ 0x4b41: "zhi4", // 䭁
+ 0x4b42: "yi4", // 䭂
+ 0x4b43: "ren3", // 䭃
+ 0x4b44: "shi4", // 䭄
+ 0x4b45: "hu2", // 䭅
+ 0x4b46: "ne4", // 䭆
+ 0x4b47: "ye1", // 䭇
+ 0x4b48: "jian4", // 䭈
+ 0x4b49: "sui3", // 䭉
+ 0x4b4a: "ying3", // 䭊
+ 0x4b4b: "bao3", // 䭋
+ 0x4b4c: "hu2", // 䭌
+ 0x4b4d: "hu2", // 䭍
+ 0x4b4e: "ye4", // 䭎
+ 0x4b50: "yang4", // 䭐
+ 0x4b51: "lian2", // 䭑
+ 0x4b52: "xi1", // 䭒
+ 0x4b53: "en4", // 䭓
+ 0x4b54: "dui1", // 䭔
+ 0x4b55: "zan3", // 䭕
+ 0x4b56: "zhu4", // 䭖
+ 0x4b57: "ying3", // 䭗
+ 0x4b58: "ying3", // 䭘
+ 0x4b59: "jin3", // 䭙
+ 0x4b5a: "chuang2", // 䭚
+ 0x4b5b: "dan4", // 䭛
+ 0x4b5d: "kuai4", // 䭝
+ 0x4b5e: "yi4", // 䭞
+ 0x4b5f: "ye4", // 䭟
+ 0x4b60: "jian3", // 䭠
+ 0x4b61: "en4", // 䭡
+ 0x4b62: "ning2", // 䭢
+ 0x4b63: "ci2", // 䭣
+ 0x4b64: "qian3", // 䭤
+ 0x4b65: "xue4", // 䭥
+ 0x4b66: "bo1", // 䭦
+ 0x4b67: "mi3", // 䭧
+ 0x4b68: "shui4", // 䭨
+ 0x4b69: "mo2", // 䭩
+ 0x4b6a: "liang2", // 䭪
+ 0x4b6b: "qi3", // 䭫
+ 0x4b6c: "qi3", // 䭬
+ 0x4b6d: "shou3", // 䭭
+ 0x4b6e: "fu2", // 䭮
+ 0x4b6f: "bo2", // 䭯
+ 0x4b70: "beng4", // 䭰
+ 0x4b71: "bie2", // 䭱
+ 0x4b72: "yi3", // 䭲
+ 0x4b73: "wei4", // 䭳
+ 0x4b74: "huan2", // 䭴
+ 0x4b75: "fan2", // 䭵
+ 0x4b76: "qi2", // 䭶
+ 0x4b77: "mao2", // 䭷
+ 0x4b78: "bao3", // 䭸
+ 0x4b79: "ang2", // 䭹
+ 0x4b7a: "ang3", // 䭺
+ 0x4b7b: "fu4", // 䭻
+ 0x4b7c: "qi2", // 䭼
+ 0x4b7d: "qun2", // 䭽
+ 0x4b7e: "tuo2", // 䭾
+ 0x4b7f: "yi4", // 䭿
+ 0x4b80: "bo2", // 䮀
+ 0x4b81: "pian2", // 䮁
+ 0x4b82: "ba2", // 䮂
+ 0x4b84: "xuan2", // 䮄
+ 0x4b87: "yu4", // 䮇
+ 0x4b88: "chi2", // 䮈
+ 0x4b89: "lu2", // 䮉
+ 0x4b8a: "yi2", // 䮊
+ 0x4b8b: "li4", // 䮋
+ 0x4b8d: "niao3", // 䮍
+ 0x4b8e: "xi4", // 䮎
+ 0x4b8f: "wu2", // 䮏
+ 0x4b91: "lei4", // 䮑
+ 0x4b92: "pu1", // 䮒
+ 0x4b93: "zhuo1", // 䮓
+ 0x4b94: "zui1", // 䮔
+ 0x4b95: "zhuo2", // 䮕
+ 0x4b96: "chang1", // 䮖
+ 0x4b97: "an4", // 䮗
+ 0x4b98: "er2", // 䮘
+ 0x4b99: "yu4", // 䮙
+ 0x4b9a: "leng4", // 䮚
+ 0x4b9b: "fu4", // 䮛
+ 0x4b9c: "zha2", // 䮜
+ 0x4b9d: "hun2", // 䮝
+ 0x4b9e: "chun3", // 䮞
+ 0x4b9f: "sou1", // 䮟
+ 0x4ba0: "bi1", // 䮠
+ 0x4ba1: "bi4", // 䮡
+ 0x4ba2: "zha2", // 䮢
+ 0x4ba4: "he2", // 䮤
+ 0x4ba5: "li4", // 䮥
+ 0x4ba7: "han4", // 䮧
+ 0x4ba8: "zai3", // 䮨
+ 0x4ba9: "gu2", // 䮩
+ 0x4baa: "cheng2", // 䮪
+ 0x4bab: "lou2", // 䮫
+ 0x4bac: "mo4", // 䮬
+ 0x4bad: "mi4", // 䮭
+ 0x4bae: "mai4", // 䮮
+ 0x4baf: "ao4", // 䮯
+ 0x4bb0: "zhe2", // 䮰
+ 0x4bb1: "zhu2", // 䮱
+ 0x4bb2: "huang2", // 䮲
+ 0x4bb3: "fan2", // 䮳
+ 0x4bb4: "deng4", // 䮴
+ 0x4bb5: "tong2", // 䮵
+ 0x4bb7: "du2", // 䮷
+ 0x4bb8: "wo4", // 䮸
+ 0x4bb9: "wei4", // 䮹
+ 0x4bba: "ji4", // 䮺
+ 0x4bbb: "chi4", // 䮻
+ 0x4bbc: "lin2", // 䮼
+ 0x4bbd: "biao1", // 䮽
+ 0x4bbe: "long2", // 䮾
+ 0x4bbf: "jian3", // 䮿
+ 0x4bc0: "nie4", // 䯀
+ 0x4bc1: "luo2", // 䯁
+ 0x4bc2: "shen1", // 䯂
+ 0x4bc4: "gua1", // 䯄
+ 0x4bc5: "nie4", // 䯅
+ 0x4bc6: "yi4", // 䯆
+ 0x4bc7: "ku1", // 䯇
+ 0x4bc8: "wan2", // 䯈
+ 0x4bc9: "wa1", // 䯉
+ 0x4bca: "qia4", // 䯊
+ 0x4bcb: "bo2", // 䯋
+ 0x4bcc: "kao1", // 䯌
+ 0x4bcd: "ling2", // 䯍
+ 0x4bce: "gan4", // 䯎
+ 0x4bcf: "gua1", // 䯏
+ 0x4bd0: "hai2", // 䯐
+ 0x4bd1: "kuang1", // 䯑
+ 0x4bd2: "heng2", // 䯒
+ 0x4bd3: "kui1", // 䯓
+ 0x4bd4: "ze2", // 䯔
+ 0x4bd5: "ting1", // 䯕
+ 0x4bd6: "lang2", // 䯖
+ 0x4bd7: "bi4", // 䯗
+ 0x4bd8: "huan4", // 䯘
+ 0x4bd9: "po4", // 䯙
+ 0x4bda: "yao3", // 䯚
+ 0x4bdb: "wan4", // 䯛
+ 0x4bdc: "ti4", // 䯜
+ 0x4bdd: "sui3", // 䯝
+ 0x4bde: "kua1", // 䯞
+ 0x4bdf: "dui4", // 䯟
+ 0x4be0: "ao3", // 䯠
+ 0x4be1: "jian4", // 䯡
+ 0x4be2: "mo2", // 䯢
+ 0x4be3: "kui4", // 䯣
+ 0x4be4: "kuai4", // 䯤
+ 0x4be5: "an4", // 䯥
+ 0x4be6: "ma4", // 䯦
+ 0x4be7: "qing3", // 䯧
+ 0x4be8: "qiao1", // 䯨
+ 0x4bea: "kao3", // 䯪
+ 0x4beb: "hao4", // 䯫
+ 0x4bec: "duo3", // 䯬
+ 0x4bed: "xian1", // 䯭
+ 0x4bee: "nai2", // 䯮
+ 0x4bef: "suo1", // 䯯
+ 0x4bf0: "jie4", // 䯰
+ 0x4bf1: "pi1", // 䯱
+ 0x4bf2: "pa1", // 䯲
+ 0x4bf3: "song1", // 䯳
+ 0x4bf4: "chang2", // 䯴
+ 0x4bf5: "nie4", // 䯵
+ 0x4bf6: "man2", // 䯶
+ 0x4bf7: "song1", // 䯷
+ 0x4bf8: "ci4", // 䯸
+ 0x4bf9: "xian1", // 䯹
+ 0x4bfa: "kuo4", // 䯺
+ 0x4bfc: "di2", // 䯼
+ 0x4bfd: "pou2", // 䯽
+ 0x4bfe: "tiao2", // 䯾
+ 0x4bff: "zu2", // 䯿
+ 0x4c00: "wo3", // 䰀
+ 0x4c01: "fei4", // 䰁
+ 0x4c02: "cai4", // 䰂
+ 0x4c03: "peng2", // 䰃
+ 0x4c04: "sai1", // 䰄
+ 0x4c06: "rou2", // 䰆
+ 0x4c07: "qi2", // 䰇
+ 0x4c08: "cuo2", // 䰈
+ 0x4c09: "pan2", // 䰉
+ 0x4c0a: "bo2", // 䰊
+ 0x4c0b: "man2", // 䰋
+ 0x4c0c: "zong3", // 䰌
+ 0x4c0d: "ci4", // 䰍
+ 0x4c0e: "kui4", // 䰎
+ 0x4c0f: "ji4", // 䰏
+ 0x4c10: "lan2", // 䰐
+ 0x4c12: "meng2", // 䰒
+ 0x4c13: "mian2", // 䰓
+ 0x4c14: "pan2", // 䰔
+ 0x4c15: "lu2", // 䰕
+ 0x4c16: "zuan3", // 䰖
+ 0x4c18: "liu2", // 䰘
+ 0x4c19: "yi3", // 䰙
+ 0x4c1a: "wen2", // 䰚
+ 0x4c1b: "li4", // 䰛
+ 0x4c1c: "li4", // 䰜
+ 0x4c1d: "zeng4", // 䰝
+ 0x4c1e: "zhu3", // 䰞
+ 0x4c1f: "hun2", // 䰟
+ 0x4c20: "shen2", // 䰠
+ 0x4c21: "chi4", // 䰡
+ 0x4c22: "xing4", // 䰢
+ 0x4c23: "wang3", // 䰣
+ 0x4c24: "dong1", // 䰤
+ 0x4c25: "huo4", // 䰥
+ 0x4c26: "pi3", // 䰦
+ 0x4c27: "hu1", // 䰧
+ 0x4c28: "mei4", // 䰨
+ 0x4c29: "che3", // 䰩
+ 0x4c2a: "mei4", // 䰪
+ 0x4c2b: "chao1", // 䰫
+ 0x4c2c: "ju2", // 䰬
+ 0x4c2d: "nou4", // 䰭
+ 0x4c2f: "yi4", // 䰯
+ 0x4c30: "ru2", // 䰰
+ 0x4c31: "ling2", // 䰱
+ 0x4c32: "ya4", // 䰲
+ 0x4c34: "qi4", // 䰴
+ 0x4c35: "zi1", // 䰵
+ 0x4c37: "bang4", // 䰷
+ 0x4c38: "gong1", // 䰸
+ 0x4c39: "ze2", // 䰹
+ 0x4c3a: "jie4", // 䰺
+ 0x4c3b: "yu2", // 䰻
+ 0x4c3c: "qin2", // 䰼
+ 0x4c3d: "bei4", // 䰽
+ 0x4c3e: "ba1", // 䰾
+ 0x4c3f: "tuo2", // 䰿
+ 0x4c40: "yang1", // 䱀
+ 0x4c41: "qiao2", // 䱁
+ 0x4c42: "you3", // 䱂
+ 0x4c43: "zhi4", // 䱃
+ 0x4c44: "jie4", // 䱄
+ 0x4c45: "mo4", // 䱅
+ 0x4c46: "sheng2", // 䱆
+ 0x4c47: "shan4", // 䱇
+ 0x4c48: "qi2", // 䱈
+ 0x4c49: "shan4", // 䱉
+ 0x4c4a: "mi3", // 䱊
+ 0x4c4b: "gong3", // 䱋
+ 0x4c4c: "yi2", // 䱌
+ 0x4c4d: "geng4", // 䱍
+ 0x4c4e: "geng4", // 䱎
+ 0x4c4f: "tou3", // 䱏
+ 0x4c50: "fu1", // 䱐
+ 0x4c51: "xue2", // 䱑
+ 0x4c52: "ye4", // 䱒
+ 0x4c53: "ting2", // 䱓
+ 0x4c54: "tiao2", // 䱔
+ 0x4c55: "mou2", // 䱕
+ 0x4c56: "liu2", // 䱖
+ 0x4c57: "can1", // 䱗
+ 0x4c58: "li2", // 䱘
+ 0x4c59: "shu1", // 䱙
+ 0x4c5a: "lu4", // 䱚
+ 0x4c5b: "huo4", // 䱛
+ 0x4c5c: "cuo4", // 䱜
+ 0x4c5d: "pai2", // 䱝
+ 0x4c5e: "liu2", // 䱞
+ 0x4c5f: "ju4", // 䱟
+ 0x4c60: "zhan4", // 䱠
+ 0x4c61: "ju2", // 䱡
+ 0x4c62: "zheng1", // 䱢
+ 0x4c63: "zu2", // 䱣
+ 0x4c64: "xian4", // 䱤
+ 0x4c65: "zhi4", // 䱥
+ 0x4c68: "la4", // 䱨
+ 0x4c6b: "la4", // 䱫
+ 0x4c6c: "xu1", // 䱬
+ 0x4c6d: "geng4", // 䱭
+ 0x4c6e: "e2", // 䱮
+ 0x4c6f: "mu2", // 䱯
+ 0x4c70: "zhong4", // 䱰
+ 0x4c71: "ti2", // 䱱
+ 0x4c72: "yuan2", // 䱲
+ 0x4c73: "zhan1", // 䱳
+ 0x4c74: "geng4", // 䱴
+ 0x4c75: "weng1", // 䱵
+ 0x4c76: "lang2", // 䱶
+ 0x4c77: "yu2", // 䱷
+ 0x4c78: "sou1", // 䱸
+ 0x4c79: "zha3", // 䱹
+ 0x4c7a: "hai2", // 䱺
+ 0x4c7b: "hua2", // 䱻
+ 0x4c7c: "zhan3", // 䱼
+ 0x4c7e: "lou2", // 䱾
+ 0x4c7f: "chan4", // 䱿
+ 0x4c80: "zhi4", // 䲀
+ 0x4c81: "wei4", // 䲁
+ 0x4c82: "xuan2", // 䲂
+ 0x4c83: "zao3", // 䲃
+ 0x4c84: "min2", // 䲄
+ 0x4c85: "gui1", // 䲅
+ 0x4c86: "su1", // 䲆
+ 0x4c89: "si1", // 䲉
+ 0x4c8a: "duo4", // 䲊
+ 0x4c8b: "cen2", // 䲋
+ 0x4c8c: "kuan3", // 䲌
+ 0x4c8d: "teng2", // 䲍
+ 0x4c8e: "nei3", // 䲎
+ 0x4c8f: "lao2", // 䲏
+ 0x4c90: "lu3", // 䲐
+ 0x4c91: "yi2", // 䲑
+ 0x4c92: "xie4", // 䲒
+ 0x4c93: "yan3", // 䲓
+ 0x4c94: "qing2", // 䲔
+ 0x4c95: "pu1", // 䲕
+ 0x4c96: "chou2", // 䲖
+ 0x4c97: "xian2", // 䲗
+ 0x4c98: "guan3", // 䲘
+ 0x4c99: "jie2", // 䲙
+ 0x4c9a: "lai4", // 䲚
+ 0x4c9b: "meng2", // 䲛
+ 0x4c9c: "ye4", // 䲜
+ 0x4c9e: "li4", // 䲞
+ 0x4c9f: "yin4", // 䲟
+ 0x4ca0: "chun1", // 䲠
+ 0x4ca1: "qiu1", // 䲡
+ 0x4ca2: "teng2", // 䲢
+ 0x4ca3: "yu2", // 䲣
+ 0x4ca6: "dai4", // 䲦
+ 0x4ca7: "du4", // 䲧
+ 0x4ca8: "hong2", // 䲨
+ 0x4caa: "xi4", // 䲪
+ 0x4cac: "qi2", // 䲬
+ 0x4cae: "yuan2", // 䲮
+ 0x4caf: "ji2", // 䲯
+ 0x4cb0: "yun4", // 䲰
+ 0x4cb1: "fang3", // 䲱
+ 0x4cb2: "gong1", // 䲲
+ 0x4cb3: "hang2", // 䲳
+ 0x4cb4: "zhen4", // 䲴
+ 0x4cb5: "que4", // 䲵
+ 0x4cb8: "jie4", // 䲸
+ 0x4cb9: "pi2", // 䲹
+ 0x4cba: "gan4", // 䲺
+ 0x4cbb: "xuan2", // 䲻
+ 0x4cbc: "sheng1", // 䲼
+ 0x4cbd: "shi2", // 䲽
+ 0x4cbe: "qiao3", // 䲾
+ 0x4cbf: "ci2", // 䲿
+ 0x4cc0: "die2", // 䳀
+ 0x4cc1: "bo2", // 䳁
+ 0x4cc2: "diao1", // 䳂
+ 0x4cc3: "wan3", // 䳃
+ 0x4cc4: "ci2", // 䳄
+ 0x4cc5: "zhi3", // 䳅
+ 0x4cc6: "bai2", // 䳆
+ 0x4cc7: "wu3", // 䳇
+ 0x4cc8: "bao3", // 䳈
+ 0x4cc9: "dan4", // 䳉
+ 0x4cca: "ba2", // 䳊
+ 0x4ccb: "tong2", // 䳋
+ 0x4ccd: "gong1", // 䳍
+ 0x4cce: "jiu4", // 䳎
+ 0x4ccf: "gui4", // 䳏
+ 0x4cd0: "ci4", // 䳐
+ 0x4cd1: "you3", // 䳑
+ 0x4cd2: "yuan2", // 䳒
+ 0x4cd3: "lao3", // 䳓
+ 0x4cd4: "ju2", // 䳔
+ 0x4cd5: "fu2", // 䳕
+ 0x4cd6: "nie4", // 䳖
+ 0x4cd7: "e2", // 䳗
+ 0x4cd8: "e2", // 䳘
+ 0x4cd9: "xing3", // 䳙
+ 0x4cda: "kan4", // 䳚
+ 0x4cdb: "yan4", // 䳛
+ 0x4cdc: "tu2", // 䳜
+ 0x4cdd: "pou3", // 䳝
+ 0x4cde: "beng3", // 䳞
+ 0x4cdf: "ming2", // 䳟
+ 0x4ce0: "shui4", // 䳠
+ 0x4ce1: "yan4", // 䳡
+ 0x4ce2: "qi2", // 䳢
+ 0x4ce3: "yuan2", // 䳣
+ 0x4ce4: "bie1", // 䳤
+ 0x4ce6: "xuan1", // 䳦
+ 0x4ce7: "hou2", // 䳧
+ 0x4ce8: "huang2", // 䳨
+ 0x4ce9: "yao1", // 䳩
+ 0x4cea: "juan4", // 䳪
+ 0x4ceb: "kui2", // 䳫
+ 0x4cec: "e4", // 䳬
+ 0x4ced: "ji2", // 䳭
+ 0x4cee: "mo4", // 䳮
+ 0x4cef: "chong2", // 䳯
+ 0x4cf0: "bao3", // 䳰
+ 0x4cf1: "wu4", // 䳱
+ 0x4cf2: "zhen4", // 䳲
+ 0x4cf3: "xu4", // 䳳
+ 0x4cf4: "ta4", // 䳴
+ 0x4cf5: "chi4", // 䳵
+ 0x4cf6: "xi1", // 䳶
+ 0x4cf7: "cong2", // 䳷
+ 0x4cf8: "ma2", // 䳸
+ 0x4cf9: "kou4", // 䳹
+ 0x4cfa: "yan4", // 䳺
+ 0x4cfb: "can2", // 䳻
+ 0x4cfd: "he4", // 䳽
+ 0x4cfe: "deng1", // 䳾
+ 0x4cff: "ran2", // 䳿
+ 0x4d00: "tong2", // 䴀
+ 0x4d01: "yu4", // 䴁
+ 0x4d02: "xiang4", // 䴂
+ 0x4d03: "nao2", // 䴃
+ 0x4d04: "shun4", // 䴄
+ 0x4d05: "fen2", // 䴅
+ 0x4d06: "pu2", // 䴆
+ 0x4d07: "ling2", // 䴇
+ 0x4d08: "ao3", // 䴈
+ 0x4d09: "huan2", // 䴉
+ 0x4d0a: "yi2", // 䴊
+ 0x4d0b: "huan2", // 䴋
+ 0x4d0c: "meng2", // 䴌
+ 0x4d0d: "ying1", // 䴍
+ 0x4d0e: "lei3", // 䴎
+ 0x4d0f: "yan4", // 䴏
+ 0x4d10: "bao3", // 䴐
+ 0x4d11: "die2", // 䴑
+ 0x4d12: "ling2", // 䴒
+ 0x4d13: "shi1", // 䴓
+ 0x4d14: "jiao1", // 䴔
+ 0x4d15: "lie4", // 䴕
+ 0x4d16: "jing1", // 䴖
+ 0x4d17: "ju2", // 䴗
+ 0x4d18: "ti1", // 䴘
+ 0x4d19: "pi4", // 䴙
+ 0x4d1a: "gang3", // 䴚
+ 0x4d1b: "xiao1", // 䴛
+ 0x4d1c: "wai1", // 䴜
+ 0x4d1d: "chuai4", // 䴝
+ 0x4d1e: "di2", // 䴞
+ 0x4d1f: "huan2", // 䴟
+ 0x4d20: "yao3", // 䴠
+ 0x4d21: "li4", // 䴡
+ 0x4d22: "mi2", // 䴢
+ 0x4d23: "hu1", // 䴣
+ 0x4d24: "sheng1", // 䴤
+ 0x4d25: "jia1", // 䴥
+ 0x4d26: "yin2", // 䴦
+ 0x4d27: "wei1", // 䴧
+ 0x4d29: "piao2", // 䴩
+ 0x4d2a: "lu4", // 䴪
+ 0x4d2b: "ling2", // 䴫
+ 0x4d2c: "yi4", // 䴬
+ 0x4d2d: "cai2", // 䴭
+ 0x4d2e: "shan4", // 䴮
+ 0x4d2f: "hu1", // 䴯
+ 0x4d30: "shu2", // 䴰
+ 0x4d31: "tuo1", // 䴱
+ 0x4d32: "mo4", // 䴲
+ 0x4d33: "hua2", // 䴳
+ 0x4d34: "tie4", // 䴴
+ 0x4d35: "bing3", // 䴵
+ 0x4d36: "peng2", // 䴶
+ 0x4d37: "hun2", // 䴷
+ 0x4d38: "fu1", // 䴸
+ 0x4d39: "guo3", // 䴹
+ 0x4d3a: "bu4", // 䴺
+ 0x4d3b: "li2", // 䴻
+ 0x4d3c: "chan4", // 䴼
+ 0x4d3d: "pi2", // 䴽
+ 0x4d3e: "cuo2", // 䴾
+ 0x4d3f: "meng2", // 䴿
+ 0x4d40: "suo3", // 䵀
+ 0x4d41: "qiang4", // 䵁
+ 0x4d42: "zhi2", // 䵂
+ 0x4d43: "kuang4", // 䵃
+ 0x4d44: "bi2", // 䵄
+ 0x4d45: "ao2", // 䵅
+ 0x4d46: "meng2", // 䵆
+ 0x4d47: "xian4", // 䵇
+ 0x4d48: "ku4", // 䵈
+ 0x4d49: "tou2", // 䵉
+ 0x4d4a: "tuan1", // 䵊
+ 0x4d4b: "wei3", // 䵋
+ 0x4d4c: "xian1", // 䵌
+ 0x4d4e: "tuan1", // 䵎
+ 0x4d4f: "lao3", // 䵏
+ 0x4d50: "chan3", // 䵐
+ 0x4d51: "ni4", // 䵑
+ 0x4d52: "ni4", // 䵒
+ 0x4d53: "li2", // 䵓
+ 0x4d54: "dong3", // 䵔
+ 0x4d55: "ju4", // 䵕
+ 0x4d56: "qian4", // 䵖
+ 0x4d57: "bo2", // 䵗
+ 0x4d58: "shai4", // 䵘
+ 0x4d59: "zha1", // 䵙
+ 0x4d5a: "tao3", // 䵚
+ 0x4d5b: "qian4", // 䵛
+ 0x4d5c: "nong3", // 䵜
+ 0x4d5d: "yi4", // 䵝
+ 0x4d5e: "jing4", // 䵞
+ 0x4d5f: "gan3", // 䵟
+ 0x4d60: "di2", // 䵠
+ 0x4d61: "jian3", // 䵡
+ 0x4d62: "mei4", // 䵢
+ 0x4d63: "da2", // 䵣
+ 0x4d64: "jian3", // 䵤
+ 0x4d65: "yu4", // 䵥
+ 0x4d66: "xie4", // 䵦
+ 0x4d67: "zai4", // 䵧
+ 0x4d68: "mang2", // 䵨
+ 0x4d69: "li2", // 䵩
+ 0x4d6a: "gun4", // 䵪
+ 0x4d6b: "xun1", // 䵫
+ 0x4d6c: "ta4", // 䵬
+ 0x4d6d: "zhe4", // 䵭
+ 0x4d6e: "yang4", // 䵮
+ 0x4d6f: "tuan3", // 䵯
+ 0x4d70: "shang1", // 䵰
+ 0x4d71: "xi4", // 䵱
+ 0x4d72: "qiao1", // 䵲
+ 0x4d73: "wei4", // 䵳
+ 0x4d74: "ying4", // 䵴
+ 0x4d75: "chua1", // 䵵
+ 0x4d76: "qu2", // 䵶
+ 0x4d77: "wa1", // 䵷
+ 0x4d79: "zhi1", // 䵹
+ 0x4d7a: "ting3", // 䵺
+ 0x4d7b: "gu3", // 䵻
+ 0x4d7c: "shang1", // 䵼
+ 0x4d7d: "ca4", // 䵽
+ 0x4d7e: "fu2", // 䵾
+ 0x4d7f: "tie4", // 䵿
+ 0x4d80: "ta4", // 䶀
+ 0x4d81: "ta4", // 䶁
+ 0x4d82: "zhuo2", // 䶂
+ 0x4d83: "han2", // 䶃
+ 0x4d84: "ping2", // 䶄
+ 0x4d85: "he2", // 䶅
+ 0x4d86: "zhui1", // 䶆
+ 0x4d87: "zhou4", // 䶇
+ 0x4d88: "bo2", // 䶈
+ 0x4d89: "liu2", // 䶉
+ 0x4d8a: "nv4", // 䶊
+ 0x4d8b: "xi1", // 䶋
+ 0x4d8c: "pao4", // 䶌
+ 0x4d8d: "di4", // 䶍
+ 0x4d8e: "he1", // 䶎
+ 0x4d8f: "ti4", // 䶏
+ 0x4d90: "wai4", // 䶐
+ 0x4d91: "ti4", // 䶑
+ 0x4d92: "qi2", // 䶒
+ 0x4d93: "ji4", // 䶓
+ 0x4d94: "chi2", // 䶔
+ 0x4d95: "ba4", // 䶕
+ 0x4d96: "jin4", // 䶖
+ 0x4d97: "ke4", // 䶗
+ 0x4d98: "li4", // 䶘
+ 0x4d99: "ju4", // 䶙
+ 0x4d9a: "qu3", // 䶚
+ 0x4d9b: "la4", // 䶛
+ 0x4d9c: "gu3", // 䶜
+ 0x4d9d: "qia4", // 䶝
+ 0x4d9e: "qi2", // 䶞
+ 0x4d9f: "xian4", // 䶟
+ 0x4da0: "jian3", // 䶠
+ 0x4da1: "shi2", // 䶡
+ 0x4da2: "jian1", // 䶢
+ 0x4da3: "ai2", // 䶣
+ 0x4da4: "hua2", // 䶤
+ 0x4da5: "zha1", // 䶥
+ 0x4da6: "ze2", // 䶦
+ 0x4da7: "yao3", // 䶧
+ 0x4da8: "zhan1", // 䶨
+ 0x4da9: "ji4", // 䶩
+ 0x4daa: "cha4", // 䶪
+ 0x4dab: "yan4", // 䶫
+ 0x4dac: "jian1", // 䶬
+ 0x4dae: "yan3", // 䶮
+ 0x4db0: "jiao1", // 䶰
+ 0x4db1: "tong2", // 䶱
+ 0x4db2: "nan2", // 䶲
+ 0x4db3: "yue4", // 䶳
+ 0x4db5: "chi2", // 䶵
+ 0x4e00: "yi1", // 一
+ 0x4e01: "ding1", // 丁
+ 0x4e02: "kao3", // 丂
+ 0x4e03: "qi1", // 七
+ 0x4e04: "shang4", // 丄
+ 0x4e05: "xia4", // 丅
+ 0x4e06: "han3", // 丆
+ 0x4e07: "wan4", // 万
+ 0x4e08: "zhang4", // 丈
+ 0x4e09: "san1", // 三
+ 0x4e0a: "shang4", // 上
+ 0x4e0b: "xia4", // 下
+ 0x4e0c: "ji1", // 丌
+ 0x4e0d: "bu4", // 不
+ 0x4e0e: "yu3", // 与
+ 0x4e0f: "mian3", // 丏
+ 0x4e10: "gai4", // 丐
+ 0x4e11: "chou3", // 丑
+ 0x4e12: "chou3", // 丒
+ 0x4e13: "zhuan1", // 专
+ 0x4e14: "qie3", // 且
+ 0x4e15: "pi1", // 丕
+ 0x4e16: "shi4", // 世
+ 0x4e17: "shi4", // 丗
+ 0x4e18: "qiu1", // 丘
+ 0x4e19: "bing3", // 丙
+ 0x4e1a: "ye4", // 业
+ 0x4e1b: "cong2", // 丛
+ 0x4e1c: "dong1", // 东
+ 0x4e1d: "si1", // 丝
+ 0x4e1e: "cheng2", // 丞
+ 0x4e1f: "diu1", // 丟
+ 0x4e20: "qiu1", // 丠
+ 0x4e21: "liang3", // 両
+ 0x4e22: "diu1", // 丢
+ 0x4e23: "you3", // 丣
+ 0x4e24: "liang3", // 两
+ 0x4e25: "yan2", // 严
+ 0x4e26: "bing4", // 並
+ 0x4e27: "sang4", // 丧
+ 0x4e28: "gun3", // 丨
+ 0x4e29: "jiu1", // 丩
+ 0x4e2a: "ge4", // 个
+ 0x4e2b: "ya1", // 丫
+ 0x4e2c: "qiang2", // 丬
+ 0x4e2d: "zhong1", // 中
+ 0x4e2e: "ji3", // 丮
+ 0x4e2f: "jie4", // 丯
+ 0x4e30: "feng1", // 丰
+ 0x4e31: "guan4", // 丱
+ 0x4e32: "chuan4", // 串
+ 0x4e33: "chan3", // 丳
+ 0x4e34: "lin2", // 临
+ 0x4e35: "zhuo2", // 丵
+ 0x4e36: "zhu3", // 丶
+ 0x4e37: "ba1", // 丷
+ 0x4e38: "wan2", // 丸
+ 0x4e39: "dan1", // 丹
+ 0x4e3a: "wei4", // 为
+ 0x4e3b: "zhu3", // 主
+ 0x4e3c: "jing3", // 丼
+ 0x4e3d: "li4", // 丽
+ 0x4e3e: "ju3", // 举
+ 0x4e3f: "pie3", // 丿
+ 0x4e40: "fu2", // 乀
+ 0x4e41: "yi2", // 乁
+ 0x4e42: "yi4", // 乂
+ 0x4e43: "nai3", // 乃
+ 0x4e44: "wu3", // 乄
+ 0x4e45: "jiu3", // 久
+ 0x4e46: "jiu3", // 乆
+ 0x4e47: "tuo1", // 乇
+ 0x4e48: "me5", // 么
+ 0x4e49: "yi4", // 义
+ 0x4e4a: "yi1", // 乊
+ 0x4e4b: "zhi1", // 之
+ 0x4e4c: "wu1", // 乌
+ 0x4e4d: "zha4", // 乍
+ 0x4e4e: "hu1", // 乎
+ 0x4e4f: "fa2", // 乏
+ 0x4e50: "le4", // 乐
+ 0x4e51: "yin2", // 乑
+ 0x4e52: "ping1", // 乒
+ 0x4e53: "pang1", // 乓
+ 0x4e54: "qiao2", // 乔
+ 0x4e55: "hu3", // 乕
+ 0x4e56: "guai1", // 乖
+ 0x4e57: "cheng2", // 乗
+ 0x4e58: "cheng2", // 乘
+ 0x4e59: "yi3", // 乙
+ 0x4e5a: "yin3", // 乚
+ 0x4e5b: "ya5", // 乛
+ 0x4e5c: "mie1", // 乜
+ 0x4e5d: "jiu3", // 九
+ 0x4e5e: "qi3", // 乞
+ 0x4e5f: "ye3", // 也
+ 0x4e60: "xi2", // 习
+ 0x4e61: "xiang1", // 乡
+ 0x4e62: "gai4", // 乢
+ 0x4e63: "jiu3", // 乣
+ 0x4e64: "xia4", // 乤
+ 0x4e65: "hu4", // 乥
+ 0x4e66: "shu1", // 书
+ 0x4e67: "dou3", // 乧
+ 0x4e68: "shi3", // 乨
+ 0x4e69: "ji1", // 乩
+ 0x4e6a: "nang2", // 乪
+ 0x4e6b: "jia1", // 乫
+ 0x4e6c: "ju4", // 乬
+ 0x4e6d: "shi2", // 乭
+ 0x4e6e: "mao3", // 乮
+ 0x4e6f: "hu1", // 乯
+ 0x4e70: "mai3", // 买
+ 0x4e71: "luan4", // 乱
+ 0x4e72: "zi1", // 乲
+ 0x4e73: "ru3", // 乳
+ 0x4e74: "xue2", // 乴
+ 0x4e75: "yan3", // 乵
+ 0x4e76: "fu3", // 乶
+ 0x4e77: "sha1", // 乷
+ 0x4e78: "na3", // 乸
+ 0x4e79: "gan1", // 乹
+ 0x4e7a: "suo3", // 乺
+ 0x4e7b: "yu2", // 乻
+ 0x4e7c: "cui5", // 乼
+ 0x4e7d: "zhe3", // 乽
+ 0x4e7e: "gan1", // 乾
+ 0x4e7f: "zhi4", // 乿
+ 0x4e80: "gui1", // 亀
+ 0x4e81: "gan1", // 亁
+ 0x4e82: "luan4", // 亂
+ 0x4e83: "lin3", // 亃
+ 0x4e84: "yi4", // 亄
+ 0x4e85: "jue2", // 亅
+ 0x4e86: "le5", // 了
+ 0x4e87: "ma5", // 亇
+ 0x4e88: "yu3", // 予
+ 0x4e89: "zheng1", // 争
+ 0x4e8a: "shi4", // 亊
+ 0x4e8b: "shi4", // 事
+ 0x4e8c: "er4", // 二
+ 0x4e8d: "chu4", // 亍
+ 0x4e8e: "yu2", // 于
+ 0x4e8f: "kui1", // 亏
+ 0x4e90: "yu2", // 亐
+ 0x4e91: "yun2", // 云
+ 0x4e92: "hu4", // 互
+ 0x4e93: "qi2", // 亓
+ 0x4e94: "wu3", // 五
+ 0x4e95: "jing3", // 井
+ 0x4e96: "si4", // 亖
+ 0x4e97: "sui4", // 亗
+ 0x4e98: "gen4", // 亘
+ 0x4e99: "gen4", // 亙
+ 0x4e9a: "ya4", // 亚
+ 0x4e9b: "xie1", // 些
+ 0x4e9c: "ya4", // 亜
+ 0x4e9d: "qi2", // 亝
+ 0x4e9e: "ya4", // 亞
+ 0x4e9f: "ji2", // 亟
+ 0x4ea0: "tou2", // 亠
+ 0x4ea1: "wang2", // 亡
+ 0x4ea2: "kang4", // 亢
+ 0x4ea3: "da4", // 亣
+ 0x4ea4: "jiao1", // 交
+ 0x4ea5: "hai4", // 亥
+ 0x4ea6: "yi4", // 亦
+ 0x4ea7: "chan3", // 产
+ 0x4ea8: "heng1", // 亨
+ 0x4ea9: "mu3", // 亩
+ 0x4eaa: "ye5", // 亪
+ 0x4eab: "xiang3", // 享
+ 0x4eac: "jing1", // 京
+ 0x4ead: "ting2", // 亭
+ 0x4eae: "liang4", // 亮
+ 0x4eaf: "xiang3", // 亯
+ 0x4eb0: "jing1", // 亰
+ 0x4eb1: "ye4", // 亱
+ 0x4eb2: "qin1", // 亲
+ 0x4eb3: "bo2", // 亳
+ 0x4eb4: "you4", // 亴
+ 0x4eb5: "xie4", // 亵
+ 0x4eb6: "dan3", // 亶
+ 0x4eb7: "lian2", // 亷
+ 0x4eb8: "duo3", // 亸
+ 0x4eb9: "men2", // 亹
+ 0x4eba: "ren2", // 人
+ 0x4ebb: "ren2", // 亻
+ 0x4ebc: "ji2", // 亼
+ 0x4ebd: "ji2", // 亽
+ 0x4ebe: "wang2", // 亾
+ 0x4ebf: "yi4", // 亿
+ 0x4ec0: "shen2", // 什
+ 0x4ec1: "ren2", // 仁
+ 0x4ec2: "le4", // 仂
+ 0x4ec3: "ding1", // 仃
+ 0x4ec4: "ze4", // 仄
+ 0x4ec5: "jin3", // 仅
+ 0x4ec6: "pu1", // 仆
+ 0x4ec7: "chou2", // 仇
+ 0x4ec8: "ba1", // 仈
+ 0x4ec9: "zhang3", // 仉
+ 0x4eca: "jin1", // 今
+ 0x4ecb: "jie4", // 介
+ 0x4ecc: "bing1", // 仌
+ 0x4ecd: "reng2", // 仍
+ 0x4ece: "cong2", // 从
+ 0x4ecf: "fo2", // 仏
+ 0x4ed0: "san3", // 仐
+ 0x4ed1: "lun2", // 仑
+ 0x4ed2: "bing1", // 仒
+ 0x4ed3: "cang1", // 仓
+ 0x4ed4: "zi3", // 仔
+ 0x4ed5: "shi4", // 仕
+ 0x4ed6: "ta1", // 他
+ 0x4ed7: "zhang4", // 仗
+ 0x4ed8: "fu4", // 付
+ 0x4ed9: "xian1", // 仙
+ 0x4eda: "xian1", // 仚
+ 0x4edb: "tuo1", // 仛
+ 0x4edc: "hong2", // 仜
+ 0x4edd: "tong2", // 仝
+ 0x4ede: "ren4", // 仞
+ 0x4edf: "qian1", // 仟
+ 0x4ee0: "gan3", // 仠
+ 0x4ee1: "ge1", // 仡
+ 0x4ee2: "bo2", // 仢
+ 0x4ee3: "dai4", // 代
+ 0x4ee4: "ling4", // 令
+ 0x4ee5: "yi3", // 以
+ 0x4ee6: "chao4", // 仦
+ 0x4ee7: "chang2", // 仧
+ 0x4ee8: "sa1", // 仨
+ 0x4ee9: "chang2", // 仩
+ 0x4eea: "yi2", // 仪
+ 0x4eeb: "mu4", // 仫
+ 0x4eec: "men5", // 们
+ 0x4eed: "ren4", // 仭
+ 0x4eee: "fan3", // 仮
+ 0x4eef: "chao4", // 仯
+ 0x4ef0: "yang3", // 仰
+ 0x4ef1: "qian2", // 仱
+ 0x4ef2: "zhong4", // 仲
+ 0x4ef3: "pi3", // 仳
+ 0x4ef4: "wo4", // 仴
+ 0x4ef5: "wu3", // 仵
+ 0x4ef6: "jian4", // 件
+ 0x4ef7: "jia4", // 价
+ 0x4ef8: "yao3", // 仸
+ 0x4ef9: "feng1", // 仹
+ 0x4efa: "cang1", // 仺
+ 0x4efb: "ren4", // 任
+ 0x4efc: "wang2", // 仼
+ 0x4efd: "fen4", // 份
+ 0x4efe: "di1", // 仾
+ 0x4eff: "fang3", // 仿
+ 0x4f00: "zhong1", // 伀
+ 0x4f01: "qi3", // 企
+ 0x4f02: "pei4", // 伂
+ 0x4f03: "yu2", // 伃
+ 0x4f04: "diao4", // 伄
+ 0x4f05: "dun4", // 伅
+ 0x4f06: "wu4", // 伆
+ 0x4f07: "yi4", // 伇
+ 0x4f08: "xin3", // 伈
+ 0x4f09: "kang4", // 伉
+ 0x4f0a: "yi1", // 伊
+ 0x4f0b: "ji2", // 伋
+ 0x4f0c: "ai4", // 伌
+ 0x4f0d: "wu3", // 伍
+ 0x4f0e: "ji4", // 伎
+ 0x4f0f: "fu2", // 伏
+ 0x4f10: "fa2", // 伐
+ 0x4f11: "xiu1", // 休
+ 0x4f12: "jin4", // 伒
+ 0x4f13: "pi1", // 伓
+ 0x4f14: "dan3", // 伔
+ 0x4f15: "fu1", // 伕
+ 0x4f16: "tang3", // 伖
+ 0x4f17: "zhong4", // 众
+ 0x4f18: "you1", // 优
+ 0x4f19: "huo3", // 伙
+ 0x4f1a: "hui4", // 会
+ 0x4f1b: "yu3", // 伛
+ 0x4f1c: "cui4", // 伜
+ 0x4f1d: "yun2", // 伝
+ 0x4f1e: "san3", // 伞
+ 0x4f1f: "wei3", // 伟
+ 0x4f20: "chuan2", // 传
+ 0x4f21: "che1", // 伡
+ 0x4f22: "ya2", // 伢
+ 0x4f23: "xian4", // 伣
+ 0x4f24: "shang1", // 伤
+ 0x4f25: "chang1", // 伥
+ 0x4f26: "lun2", // 伦
+ 0x4f27: "cang1", // 伧
+ 0x4f28: "xun4", // 伨
+ 0x4f29: "xin4", // 伩
+ 0x4f2a: "wei3", // 伪
+ 0x4f2b: "zhu4", // 伫
+ 0x4f2c: "ze5", // 伬
+ 0x4f2d: "xian2", // 伭
+ 0x4f2e: "nu3", // 伮
+ 0x4f2f: "bo2", // 伯
+ 0x4f30: "gu1", // 估
+ 0x4f31: "ni3", // 伱
+ 0x4f32: "ni4", // 伲
+ 0x4f33: "xie4", // 伳
+ 0x4f34: "ban4", // 伴
+ 0x4f35: "xu4", // 伵
+ 0x4f36: "ling2", // 伶
+ 0x4f37: "zhou4", // 伷
+ 0x4f38: "shen1", // 伸
+ 0x4f39: "qu1", // 伹
+ 0x4f3a: "ci4", // 伺
+ 0x4f3b: "beng1", // 伻
+ 0x4f3c: "shi4", // 似
+ 0x4f3d: "jia1", // 伽
+ 0x4f3e: "pi1", // 伾
+ 0x4f3f: "yi4", // 伿
+ 0x4f40: "si4", // 佀
+ 0x4f41: "yi3", // 佁
+ 0x4f42: "zheng1", // 佂
+ 0x4f43: "dian4", // 佃
+ 0x4f44: "han1", // 佄
+ 0x4f45: "mai4", // 佅
+ 0x4f46: "dan4", // 但
+ 0x4f47: "zhu4", // 佇
+ 0x4f48: "bu4", // 佈
+ 0x4f49: "qu1", // 佉
+ 0x4f4a: "bi3", // 佊
+ 0x4f4b: "zhao1", // 佋
+ 0x4f4c: "ci3", // 佌
+ 0x4f4d: "wei4", // 位
+ 0x4f4e: "di1", // 低
+ 0x4f4f: "zhu4", // 住
+ 0x4f50: "zuo3", // 佐
+ 0x4f51: "you4", // 佑
+ 0x4f52: "yang3", // 佒
+ 0x4f53: "ti3", // 体
+ 0x4f54: "zhan4", // 佔
+ 0x4f55: "he2", // 何
+ 0x4f56: "bi4", // 佖
+ 0x4f57: "tuo2", // 佗
+ 0x4f58: "she2", // 佘
+ 0x4f59: "yu2", // 余
+ 0x4f5a: "yi4", // 佚
+ 0x4f5b: "fu2", // 佛
+ 0x4f5c: "zuo4", // 作
+ 0x4f5d: "gou1", // 佝
+ 0x4f5e: "ning4", // 佞
+ 0x4f5f: "tong2", // 佟
+ 0x4f60: "ni3", // 你
+ 0x4f61: "xian1", // 佡
+ 0x4f62: "qu2", // 佢
+ 0x4f63: "yong1", // 佣
+ 0x4f64: "wa3", // 佤
+ 0x4f65: "qian1", // 佥
+ 0x4f66: "shi5", // 佦
+ 0x4f67: "ka3", // 佧
+ 0x4f68: "bao1", // 佨
+ 0x4f69: "pei4", // 佩
+ 0x4f6a: "hui2", // 佪
+ 0x4f6b: "he4", // 佫
+ 0x4f6c: "lao3", // 佬
+ 0x4f6d: "xiang2", // 佭
+ 0x4f6e: "ge2", // 佮
+ 0x4f6f: "yang2", // 佯
+ 0x4f70: "bai3", // 佰
+ 0x4f71: "fa3", // 佱
+ 0x4f72: "ming3", // 佲
+ 0x4f73: "jia1", // 佳
+ 0x4f74: "er4", // 佴
+ 0x4f75: "bing4", // 併
+ 0x4f76: "ji2", // 佶
+ 0x4f77: "hen3", // 佷
+ 0x4f78: "huo2", // 佸
+ 0x4f79: "gui3", // 佹
+ 0x4f7a: "quan2", // 佺
+ 0x4f7b: "tiao1", // 佻
+ 0x4f7c: "jiao3", // 佼
+ 0x4f7d: "ci4", // 佽
+ 0x4f7e: "yi4", // 佾
+ 0x4f7f: "shi3", // 使
+ 0x4f80: "xing2", // 侀
+ 0x4f81: "shen1", // 侁
+ 0x4f82: "tuo1", // 侂
+ 0x4f83: "kan3", // 侃
+ 0x4f84: "zhi2", // 侄
+ 0x4f85: "gai1", // 侅
+ 0x4f86: "lai2", // 來
+ 0x4f87: "yi2", // 侇
+ 0x4f88: "chi3", // 侈
+ 0x4f89: "kua3", // 侉
+ 0x4f8a: "guang1", // 侊
+ 0x4f8b: "li4", // 例
+ 0x4f8c: "yin1", // 侌
+ 0x4f8d: "shi4", // 侍
+ 0x4f8e: "mi3", // 侎
+ 0x4f8f: "zhu1", // 侏
+ 0x4f90: "xu4", // 侐
+ 0x4f91: "you4", // 侑
+ 0x4f92: "an1", // 侒
+ 0x4f93: "lu4", // 侓
+ 0x4f94: "mou2", // 侔
+ 0x4f95: "er2", // 侕
+ 0x4f96: "lun2", // 侖
+ 0x4f97: "dong4", // 侗
+ 0x4f98: "cha4", // 侘
+ 0x4f99: "chi1", // 侙
+ 0x4f9a: "xun4", // 侚
+ 0x4f9b: "gong1", // 供
+ 0x4f9c: "zhou1", // 侜
+ 0x4f9d: "yi1", // 依
+ 0x4f9e: "ru2", // 侞
+ 0x4f9f: "cun2", // 侟
+ 0x4fa0: "xia2", // 侠
+ 0x4fa1: "si4", // 価
+ 0x4fa2: "dai4", // 侢
+ 0x4fa3: "lv3", // 侣
+ 0x4fa4: "ta5", // 侤
+ 0x4fa5: "jiao3", // 侥
+ 0x4fa6: "zhen1", // 侦
+ 0x4fa7: "ce4", // 侧
+ 0x4fa8: "qiao2", // 侨
+ 0x4fa9: "kuai4", // 侩
+ 0x4faa: "chai2", // 侪
+ 0x4fab: "ning4", // 侫
+ 0x4fac: "nong2", // 侬
+ 0x4fad: "jin3", // 侭
+ 0x4fae: "wu3", // 侮
+ 0x4faf: "hou2", // 侯
+ 0x4fb0: "jiong3", // 侰
+ 0x4fb1: "cheng3", // 侱
+ 0x4fb2: "zhen4", // 侲
+ 0x4fb3: "zuo4", // 侳
+ 0x4fb4: "chou3", // 侴
+ 0x4fb5: "qin1", // 侵
+ 0x4fb6: "lv3", // 侶
+ 0x4fb7: "ju2", // 侷
+ 0x4fb8: "shu4", // 侸
+ 0x4fb9: "ting3", // 侹
+ 0x4fba: "shen4", // 侺
+ 0x4fbb: "tui4", // 侻
+ 0x4fbc: "bo2", // 侼
+ 0x4fbd: "nan2", // 侽
+ 0x4fbe: "xiao1", // 侾
+ 0x4fbf: "bian4", // 便
+ 0x4fc0: "tui3", // 俀
+ 0x4fc1: "yu3", // 俁
+ 0x4fc2: "xi4", // 係
+ 0x4fc3: "cu4", // 促
+ 0x4fc4: "e2", // 俄
+ 0x4fc5: "qiu2", // 俅
+ 0x4fc6: "xu2", // 俆
+ 0x4fc7: "guang4", // 俇
+ 0x4fc8: "ku4", // 俈
+ 0x4fc9: "wu3", // 俉
+ 0x4fca: "jun4", // 俊
+ 0x4fcb: "yi4", // 俋
+ 0x4fcc: "fu3", // 俌
+ 0x4fcd: "liang2", // 俍
+ 0x4fce: "zu3", // 俎
+ 0x4fcf: "qiao4", // 俏
+ 0x4fd0: "li4", // 俐
+ 0x4fd1: "yong3", // 俑
+ 0x4fd2: "hun4", // 俒
+ 0x4fd3: "jing4", // 俓
+ 0x4fd4: "qian4", // 俔
+ 0x4fd5: "san4", // 俕
+ 0x4fd6: "pei3", // 俖
+ 0x4fd7: "su2", // 俗
+ 0x4fd8: "fu2", // 俘
+ 0x4fd9: "xi1", // 俙
+ 0x4fda: "li3", // 俚
+ 0x4fdb: "fu3", // 俛
+ 0x4fdc: "ping1", // 俜
+ 0x4fdd: "bao3", // 保
+ 0x4fde: "yu2", // 俞
+ 0x4fdf: "qi2", // 俟
+ 0x4fe0: "xia2", // 俠
+ 0x4fe1: "xin4", // 信
+ 0x4fe2: "xiu1", // 俢
+ 0x4fe3: "yu3", // 俣
+ 0x4fe4: "di4", // 俤
+ 0x4fe5: "che1", // 俥
+ 0x4fe6: "chou2", // 俦
+ 0x4fe7: "zhi4", // 俧
+ 0x4fe8: "yan3", // 俨
+ 0x4fe9: "lia3", // 俩
+ 0x4fea: "li4", // 俪
+ 0x4feb: "lai2", // 俫
+ 0x4fec: "si1", // 俬
+ 0x4fed: "jian3", // 俭
+ 0x4fee: "xiu1", // 修
+ 0x4fef: "fu3", // 俯
+ 0x4ff0: "huo4", // 俰
+ 0x4ff1: "ju4", // 俱
+ 0x4ff2: "xiao4", // 俲
+ 0x4ff3: "pai2", // 俳
+ 0x4ff4: "jian4", // 俴
+ 0x4ff5: "biao4", // 俵
+ 0x4ff6: "chu4", // 俶
+ 0x4ff7: "fei4", // 俷
+ 0x4ff8: "feng4", // 俸
+ 0x4ff9: "ya4", // 俹
+ 0x4ffa: "an3", // 俺
+ 0x4ffb: "bei4", // 俻
+ 0x4ffc: "yu4", // 俼
+ 0x4ffd: "xin1", // 俽
+ 0x4ffe: "bi3", // 俾
+ 0x4fff: "hu3", // 俿
+ 0x5000: "chang1", // 倀
+ 0x5001: "zhi1", // 倁
+ 0x5002: "bing4", // 倂
+ 0x5003: "jiu4", // 倃
+ 0x5004: "yao2", // 倄
+ 0x5005: "cui4", // 倅
+ 0x5006: "lia3", // 倆
+ 0x5007: "wan3", // 倇
+ 0x5008: "lai2", // 倈
+ 0x5009: "cang1", // 倉
+ 0x500a: "zong4", // 倊
+ 0x500b: "ge4", // 個
+ 0x500c: "guan1", // 倌
+ 0x500d: "bei4", // 倍
+ 0x500e: "tian3", // 倎
+ 0x500f: "shu1", // 倏
+ 0x5010: "shu1", // 倐
+ 0x5011: "men5", // 們
+ 0x5012: "dao4", // 倒
+ 0x5013: "tan2", // 倓
+ 0x5014: "jue2", // 倔
+ 0x5015: "chui2", // 倕
+ 0x5016: "xing4", // 倖
+ 0x5017: "peng2", // 倗
+ 0x5018: "tang3", // 倘
+ 0x5019: "hou4", // 候
+ 0x501a: "yi3", // 倚
+ 0x501b: "qi1", // 倛
+ 0x501c: "ti4", // 倜
+ 0x501d: "gan4", // 倝
+ 0x501e: "jing4", // 倞
+ 0x501f: "jie4", // 借
+ 0x5020: "sui1", // 倠
+ 0x5021: "chang4", // 倡
+ 0x5022: "jie2", // 倢
+ 0x5023: "fang3", // 倣
+ 0x5024: "zhi2", // 値
+ 0x5025: "kong1", // 倥
+ 0x5026: "juan4", // 倦
+ 0x5027: "zong1", // 倧
+ 0x5028: "ju4", // 倨
+ 0x5029: "qian4", // 倩
+ 0x502a: "ni2", // 倪
+ 0x502b: "lun2", // 倫
+ 0x502c: "zhuo1", // 倬
+ 0x502d: "wo1", // 倭
+ 0x502e: "luo3", // 倮
+ 0x502f: "song1", // 倯
+ 0x5030: "leng4", // 倰
+ 0x5031: "hun4", // 倱
+ 0x5032: "dong1", // 倲
+ 0x5033: "zi4", // 倳
+ 0x5034: "ben4", // 倴
+ 0x5035: "wu3", // 倵
+ 0x5036: "ju4", // 倶
+ 0x5037: "nai3", // 倷
+ 0x5038: "cai3", // 倸
+ 0x5039: "jian3", // 倹
+ 0x503a: "zhai4", // 债
+ 0x503b: "ye1", // 倻
+ 0x503c: "zhi2", // 值
+ 0x503d: "sha4", // 倽
+ 0x503e: "qing1", // 倾
+ 0x503f: "ning4", // 倿
+ 0x5040: "ying1", // 偀
+ 0x5041: "cheng1", // 偁
+ 0x5042: "qian2", // 偂
+ 0x5043: "yan3", // 偃
+ 0x5044: "ruan3", // 偄
+ 0x5045: "zhong4", // 偅
+ 0x5046: "chun3", // 偆
+ 0x5047: "jia3", // 假
+ 0x5048: "ji4", // 偈
+ 0x5049: "wei3", // 偉
+ 0x504a: "yu3", // 偊
+ 0x504b: "bing4", // 偋
+ 0x504c: "ruo4", // 偌
+ 0x504d: "ti2", // 偍
+ 0x504e: "wei1", // 偎
+ 0x504f: "pian1", // 偏
+ 0x5050: "yan4", // 偐
+ 0x5051: "feng1", // 偑
+ 0x5052: "tang3", // 偒
+ 0x5053: "wo4", // 偓
+ 0x5054: "e4", // 偔
+ 0x5055: "xie2", // 偕
+ 0x5056: "che3", // 偖
+ 0x5057: "sheng3", // 偗
+ 0x5058: "kan3", // 偘
+ 0x5059: "di4", // 偙
+ 0x505a: "zuo4", // 做
+ 0x505b: "cha1", // 偛
+ 0x505c: "ting2", // 停
+ 0x505d: "bei4", // 偝
+ 0x505e: "xie4", // 偞
+ 0x505f: "huang2", // 偟
+ 0x5060: "yao3", // 偠
+ 0x5061: "zhan4", // 偡
+ 0x5062: "chou3", // 偢
+ 0x5063: "yan1", // 偣
+ 0x5064: "you2", // 偤
+ 0x5065: "jian4", // 健
+ 0x5066: "xu3", // 偦
+ 0x5067: "zha1", // 偧
+ 0x5068: "ci1", // 偨
+ 0x5069: "fu4", // 偩
+ 0x506a: "bi1", // 偪
+ 0x506b: "zhi4", // 偫
+ 0x506c: "zong3", // 偬
+ 0x506d: "mian3", // 偭
+ 0x506e: "ji2", // 偮
+ 0x506f: "yi3", // 偯
+ 0x5070: "xie4", // 偰
+ 0x5071: "xun2", // 偱
+ 0x5072: "cai1", // 偲
+ 0x5073: "duan1", // 偳
+ 0x5074: "ce4", // 側
+ 0x5075: "zhen1", // 偵
+ 0x5076: "ou3", // 偶
+ 0x5077: "tou1", // 偷
+ 0x5078: "tou1", // 偸
+ 0x5079: "bei4", // 偹
+ 0x507a: "za2", // 偺
+ 0x507b: "lou2", // 偻
+ 0x507c: "jie2", // 偼
+ 0x507d: "wei3", // 偽
+ 0x507e: "fen4", // 偾
+ 0x507f: "chang2", // 偿
+ 0x5080: "gui1", // 傀
+ 0x5081: "sou3", // 傁
+ 0x5082: "zhi4", // 傂
+ 0x5083: "su4", // 傃
+ 0x5084: "xia1", // 傄
+ 0x5085: "fu4", // 傅
+ 0x5086: "yuan4", // 傆
+ 0x5087: "rong3", // 傇
+ 0x5088: "li4", // 傈
+ 0x5089: "nu4", // 傉
+ 0x508a: "yun4", // 傊
+ 0x508b: "jiang3", // 傋
+ 0x508c: "ma4", // 傌
+ 0x508d: "bang4", // 傍
+ 0x508e: "dian1", // 傎
+ 0x508f: "tang2", // 傏
+ 0x5090: "hao4", // 傐
+ 0x5091: "jie2", // 傑
+ 0x5092: "xi1", // 傒
+ 0x5093: "shan4", // 傓
+ 0x5094: "qian4", // 傔
+ 0x5095: "jue2", // 傕
+ 0x5096: "cang1", // 傖
+ 0x5097: "chu4", // 傗
+ 0x5098: "san3", // 傘
+ 0x5099: "bei4", // 備
+ 0x509a: "xiao4", // 傚
+ 0x509b: "yong3", // 傛
+ 0x509c: "yao2", // 傜
+ 0x509d: "tan4", // 傝
+ 0x509e: "suo1", // 傞
+ 0x509f: "yang3", // 傟
+ 0x50a0: "fa2", // 傠
+ 0x50a1: "bing4", // 傡
+ 0x50a2: "jia1", // 傢
+ 0x50a3: "dai3", // 傣
+ 0x50a4: "zai4", // 傤
+ 0x50a5: "tang3", // 傥
+ 0x50a6: "gu3", // 傦
+ 0x50a7: "bin1", // 傧
+ 0x50a8: "chu3", // 储
+ 0x50a9: "nuo2", // 傩
+ 0x50aa: "can1", // 傪
+ 0x50ab: "lei3", // 傫
+ 0x50ac: "cui1", // 催
+ 0x50ad: "yong1", // 傭
+ 0x50ae: "zao1", // 傮
+ 0x50af: "zong3", // 傯
+ 0x50b0: "beng1", // 傰
+ 0x50b1: "song3", // 傱
+ 0x50b2: "ao4", // 傲
+ 0x50b3: "chuan2", // 傳
+ 0x50b4: "yu3", // 傴
+ 0x50b5: "zhai4", // 債
+ 0x50b6: "zu2", // 傶
+ 0x50b7: "shang1", // 傷
+ 0x50b8: "chuang3", // 傸
+ 0x50b9: "jing4", // 傹
+ 0x50ba: "chi4", // 傺
+ 0x50bb: "sha3", // 傻
+ 0x50bc: "han4", // 傼
+ 0x50bd: "zhang1", // 傽
+ 0x50be: "qing1", // 傾
+ 0x50bf: "yan4", // 傿
+ 0x50c0: "di4", // 僀
+ 0x50c1: "xie4", // 僁
+ 0x50c2: "lou2", // 僂
+ 0x50c3: "bei4", // 僃
+ 0x50c4: "piao4", // 僄
+ 0x50c5: "jin3", // 僅
+ 0x50c6: "lian4", // 僆
+ 0x50c7: "lu4", // 僇
+ 0x50c8: "man2", // 僈
+ 0x50c9: "qian1", // 僉
+ 0x50ca: "xian1", // 僊
+ 0x50cb: "tan4", // 僋
+ 0x50cc: "ying2", // 僌
+ 0x50cd: "dong4", // 働
+ 0x50ce: "zhuan4", // 僎
+ 0x50cf: "xiang4", // 像
+ 0x50d0: "shan4", // 僐
+ 0x50d1: "qiao2", // 僑
+ 0x50d2: "jiong3", // 僒
+ 0x50d3: "tui3", // 僓
+ 0x50d4: "zun3", // 僔
+ 0x50d5: "pu2", // 僕
+ 0x50d6: "xi1", // 僖
+ 0x50d7: "lao2", // 僗
+ 0x50d8: "chang3", // 僘
+ 0x50d9: "guang1", // 僙
+ 0x50da: "liao2", // 僚
+ 0x50db: "qi1", // 僛
+ 0x50dc: "cheng1", // 僜
+ 0x50dd: "chan2", // 僝
+ 0x50de: "wei3", // 僞
+ 0x50df: "ji1", // 僟
+ 0x50e0: "bo1", // 僠
+ 0x50e1: "hui4", // 僡
+ 0x50e2: "chuan3", // 僢
+ 0x50e3: "tie3", // 僣
+ 0x50e4: "dan4", // 僤
+ 0x50e5: "jiao3", // 僥
+ 0x50e6: "jiu4", // 僦
+ 0x50e7: "seng1", // 僧
+ 0x50e8: "fen4", // 僨
+ 0x50e9: "xian4", // 僩
+ 0x50ea: "ju2", // 僪
+ 0x50eb: "e4", // 僫
+ 0x50ec: "jiao1", // 僬
+ 0x50ed: "jian4", // 僭
+ 0x50ee: "tong2", // 僮
+ 0x50ef: "lin4", // 僯
+ 0x50f0: "bo2", // 僰
+ 0x50f1: "gu4", // 僱
+ 0x50f2: "xian1", // 僲
+ 0x50f3: "su4", // 僳
+ 0x50f4: "xian4", // 僴
+ 0x50f5: "jiang1", // 僵
+ 0x50f6: "min3", // 僶
+ 0x50f7: "ye4", // 僷
+ 0x50f8: "jin4", // 僸
+ 0x50f9: "jia4", // 價
+ 0x50fa: "qiao4", // 僺
+ 0x50fb: "pi4", // 僻
+ 0x50fc: "feng1", // 僼
+ 0x50fd: "zhou4", // 僽
+ 0x50fe: "ai4", // 僾
+ 0x50ff: "sai4", // 僿
+ 0x5100: "yi2", // 儀
+ 0x5101: "jun4", // 儁
+ 0x5102: "nong2", // 儂
+ 0x5103: "chan2", // 儃
+ 0x5104: "yi4", // 億
+ 0x5105: "dang4", // 儅
+ 0x5106: "jing3", // 儆
+ 0x5107: "xuan1", // 儇
+ 0x5108: "kuai4", // 儈
+ 0x5109: "jian3", // 儉
+ 0x510a: "chu4", // 儊
+ 0x510b: "dan1", // 儋
+ 0x510c: "jiao3", // 儌
+ 0x510d: "sha3", // 儍
+ 0x510e: "zai4", // 儎
+ 0x510f: "can4", // 儏
+ 0x5110: "bin1", // 儐
+ 0x5111: "an2", // 儑
+ 0x5112: "ru2", // 儒
+ 0x5113: "tai2", // 儓
+ 0x5114: "chou2", // 儔
+ 0x5115: "chai2", // 儕
+ 0x5116: "lan2", // 儖
+ 0x5117: "ni3", // 儗
+ 0x5118: "jin3", // 儘
+ 0x5119: "qian4", // 儙
+ 0x511a: "meng2", // 儚
+ 0x511b: "wu3", // 儛
+ 0x511c: "ning2", // 儜
+ 0x511d: "qiong2", // 儝
+ 0x511e: "ni3", // 儞
+ 0x511f: "chang2", // 償
+ 0x5120: "lie4", // 儠
+ 0x5121: "lei3", // 儡
+ 0x5122: "lv3", // 儢
+ 0x5123: "kuang3", // 儣
+ 0x5124: "bao4", // 儤
+ 0x5125: "yu4", // 儥
+ 0x5126: "biao1", // 儦
+ 0x5127: "zan3", // 儧
+ 0x5128: "zhi4", // 儨
+ 0x5129: "si4", // 儩
+ 0x512a: "you1", // 優
+ 0x512b: "hao2", // 儫
+ 0x512c: "qing4", // 儬
+ 0x512d: "chen4", // 儭
+ 0x512e: "li4", // 儮
+ 0x512f: "teng2", // 儯
+ 0x5130: "wei3", // 儰
+ 0x5131: "long3", // 儱
+ 0x5132: "chu3", // 儲
+ 0x5133: "chan2", // 儳
+ 0x5134: "rang2", // 儴
+ 0x5135: "shu1", // 儵
+ 0x5136: "hui4", // 儶
+ 0x5137: "li4", // 儷
+ 0x5138: "luo2", // 儸
+ 0x5139: "zan3", // 儹
+ 0x513a: "nuo2", // 儺
+ 0x513b: "tang3", // 儻
+ 0x513c: "yan3", // 儼
+ 0x513d: "lei2", // 儽
+ 0x513e: "nang4", // 儾
+ 0x513f: "er2", // 儿
+ 0x5140: "wu4", // 兀
+ 0x5141: "yun3", // 允
+ 0x5142: "zan1", // 兂
+ 0x5143: "yuan2", // 元
+ 0x5144: "xiong1", // 兄
+ 0x5145: "chong1", // 充
+ 0x5146: "zhao4", // 兆
+ 0x5147: "xiong1", // 兇
+ 0x5148: "xian1", // 先
+ 0x5149: "guang1", // 光
+ 0x514a: "dui4", // 兊
+ 0x514b: "ke4", // 克
+ 0x514c: "dui4", // 兌
+ 0x514d: "mian3", // 免
+ 0x514e: "tu4", // 兎
+ 0x514f: "chang2", // 兏
+ 0x5150: "er2", // 児
+ 0x5151: "dui4", // 兑
+ 0x5152: "er2", // 兒
+ 0x5153: "jin1", // 兓
+ 0x5154: "tu4", // 兔
+ 0x5155: "si4", // 兕
+ 0x5156: "yan3", // 兖
+ 0x5157: "yan3", // 兗
+ 0x5158: "shi3", // 兘
+ 0x515a: "dang3", // 党
+ 0x515b: "qian1", // 兛
+ 0x515c: "dou1", // 兜
+ 0x515d: "fen1", // 兝
+ 0x515e: "mao2", // 兞
+ 0x515f: "shen1", // 兟
+ 0x5160: "dou1", // 兠
+ 0x5162: "jing1", // 兢
+ 0x5163: "li3", // 兣
+ 0x5164: "huang3", // 兤
+ 0x5165: "ru4", // 入
+ 0x5166: "wang2", // 兦
+ 0x5167: "nei4", // 內
+ 0x5168: "quan2", // 全
+ 0x5169: "liang3", // 兩
+ 0x516a: "yu2", // 兪
+ 0x516b: "ba1", // 八
+ 0x516c: "gong1", // 公
+ 0x516d: "liu4", // 六
+ 0x516e: "xi1", // 兮
+ 0x516f: "han5", // 兯
+ 0x5170: "lan2", // 兰
+ 0x5171: "gong4", // 共
+ 0x5172: "tian1", // 兲
+ 0x5173: "guan1", // 关
+ 0x5174: "xing4", // 兴
+ 0x5175: "bing1", // 兵
+ 0x5176: "qi2", // 其
+ 0x5177: "ju4", // 具
+ 0x5178: "dian3", // 典
+ 0x5179: "zi1", // 兹
+ 0x517a: "fen1", // 兺
+ 0x517b: "yang3", // 养
+ 0x517c: "jian1", // 兼
+ 0x517d: "shou4", // 兽
+ 0x517e: "ji4", // 兾
+ 0x517f: "yi4", // 兿
+ 0x5180: "ji4", // 冀
+ 0x5181: "chan3", // 冁
+ 0x5182: "jiong1", // 冂
+ 0x5183: "mao4", // 冃
+ 0x5184: "ran3", // 冄
+ 0x5185: "nei4", // 内
+ 0x5186: "yuan2", // 円
+ 0x5187: "mao3", // 冇
+ 0x5188: "gang1", // 冈
+ 0x5189: "ran3", // 冉
+ 0x518a: "ce4", // 冊
+ 0x518b: "jiong1", // 冋
+ 0x518c: "ce4", // 册
+ 0x518d: "zai4", // 再
+ 0x518e: "gua3", // 冎
+ 0x518f: "jiong3", // 冏
+ 0x5190: "mao4", // 冐
+ 0x5191: "zhou4", // 冑
+ 0x5192: "mao4", // 冒
+ 0x5193: "gou4", // 冓
+ 0x5194: "xu3", // 冔
+ 0x5195: "mian3", // 冕
+ 0x5196: "mi4", // 冖
+ 0x5197: "rong3", // 冗
+ 0x5198: "yin2", // 冘
+ 0x5199: "xie3", // 写
+ 0x519a: "kan3", // 冚
+ 0x519b: "jun1", // 军
+ 0x519c: "nong2", // 农
+ 0x519d: "yi2", // 冝
+ 0x519e: "mi2", // 冞
+ 0x519f: "shi4", // 冟
+ 0x51a0: "guan1", // 冠
+ 0x51a1: "meng2", // 冡
+ 0x51a2: "zhong3", // 冢
+ 0x51a3: "ju4", // 冣
+ 0x51a4: "yuan1", // 冤
+ 0x51a5: "ming2", // 冥
+ 0x51a6: "kou4", // 冦
+ 0x51a7: "lin2", // 冧
+ 0x51a8: "fu4", // 冨
+ 0x51a9: "xie3", // 冩
+ 0x51aa: "mi4", // 冪
+ 0x51ab: "bing1", // 冫
+ 0x51ac: "dong1", // 冬
+ 0x51ad: "tai4", // 冭
+ 0x51ae: "gang1", // 冮
+ 0x51af: "feng2", // 冯
+ 0x51b0: "bing1", // 冰
+ 0x51b1: "hu4", // 冱
+ 0x51b2: "chong1", // 冲
+ 0x51b3: "jue2", // 决
+ 0x51b4: "hu4", // 冴
+ 0x51b5: "kuang4", // 况
+ 0x51b6: "ye3", // 冶
+ 0x51b7: "leng3", // 冷
+ 0x51b8: "pan4", // 冸
+ 0x51b9: "fu2", // 冹
+ 0x51ba: "min3", // 冺
+ 0x51bb: "dong4", // 冻
+ 0x51bc: "xian3", // 冼
+ 0x51bd: "lie4", // 冽
+ 0x51be: "qia4", // 冾
+ 0x51bf: "jian1", // 冿
+ 0x51c0: "jing4", // 净
+ 0x51c1: "sou1", // 凁
+ 0x51c2: "mei3", // 凂
+ 0x51c3: "tu2", // 凃
+ 0x51c4: "qi1", // 凄
+ 0x51c5: "gu4", // 凅
+ 0x51c6: "zhun3", // 准
+ 0x51c7: "song1", // 凇
+ 0x51c8: "jing4", // 凈
+ 0x51c9: "liang2", // 凉
+ 0x51ca: "qing4", // 凊
+ 0x51cb: "diao1", // 凋
+ 0x51cc: "ling2", // 凌
+ 0x51cd: "dong4", // 凍
+ 0x51ce: "gan4", // 凎
+ 0x51cf: "jian3", // 减
+ 0x51d0: "yin1", // 凐
+ 0x51d1: "cou4", // 凑
+ 0x51d2: "ai2", // 凒
+ 0x51d3: "li4", // 凓
+ 0x51d4: "chuang4", // 凔
+ 0x51d5: "ming3", // 凕
+ 0x51d6: "zhun3", // 凖
+ 0x51d7: "cui1", // 凗
+ 0x51d8: "si1", // 凘
+ 0x51d9: "duo2", // 凙
+ 0x51da: "jin4", // 凚
+ 0x51db: "lin3", // 凛
+ 0x51dc: "lin3", // 凜
+ 0x51dd: "ning2", // 凝
+ 0x51de: "xi1", // 凞
+ 0x51df: "du2", // 凟
+ 0x51e0: "ji3", // 几
+ 0x51e1: "fan2", // 凡
+ 0x51e2: "fan2", // 凢
+ 0x51e3: "fan2", // 凣
+ 0x51e4: "feng4", // 凤
+ 0x51e5: "ju1", // 凥
+ 0x51e6: "chu3", // 処
+ 0x51e7: "zheng1", // 凧
+ 0x51e8: "feng1", // 凨
+ 0x51e9: "mu4", // 凩
+ 0x51ea: "zhi3", // 凪
+ 0x51eb: "fu2", // 凫
+ 0x51ec: "feng1", // 凬
+ 0x51ed: "ping2", // 凭
+ 0x51ee: "feng1", // 凮
+ 0x51ef: "kai3", // 凯
+ 0x51f0: "huang2", // 凰
+ 0x51f1: "kai3", // 凱
+ 0x51f2: "gan1", // 凲
+ 0x51f3: "deng4", // 凳
+ 0x51f4: "ping2", // 凴
+ 0x51f5: "qian3", // 凵
+ 0x51f6: "xiong1", // 凶
+ 0x51f7: "kuai4", // 凷
+ 0x51f8: "tu1", // 凸
+ 0x51f9: "ao1", // 凹
+ 0x51fa: "chu1", // 出
+ 0x51fb: "ji1", // 击
+ 0x51fc: "dang4", // 凼
+ 0x51fd: "han2", // 函
+ 0x51fe: "han2", // 凾
+ 0x51ff: "zao2", // 凿
+ 0x5200: "dao1", // 刀
+ 0x5201: "diao1", // 刁
+ 0x5202: "dao1", // 刂
+ 0x5203: "ren4", // 刃
+ 0x5204: "ren4", // 刄
+ 0x5205: "chuang1", // 刅
+ 0x5206: "fen1", // 分
+ 0x5207: "qie4", // 切
+ 0x5208: "yi4", // 刈
+ 0x5209: "ji1", // 刉
+ 0x520a: "kan1", // 刊
+ 0x520b: "qian4", // 刋
+ 0x520c: "cun3", // 刌
+ 0x520d: "chu2", // 刍
+ 0x520e: "wen3", // 刎
+ 0x520f: "ji1", // 刏
+ 0x5210: "dan3", // 刐
+ 0x5211: "xing2", // 刑
+ 0x5212: "hua4", // 划
+ 0x5213: "wan2", // 刓
+ 0x5214: "jue2", // 刔
+ 0x5215: "li2", // 刕
+ 0x5216: "yue4", // 刖
+ 0x5217: "lie4", // 列
+ 0x5218: "liu2", // 刘
+ 0x5219: "ze2", // 则
+ 0x521a: "gang1", // 刚
+ 0x521b: "chuang4", // 创
+ 0x521c: "fu2", // 刜
+ 0x521d: "chu1", // 初
+ 0x521e: "qu4", // 刞
+ 0x521f: "diao1", // 刟
+ 0x5220: "shan1", // 删
+ 0x5221: "min3", // 刡
+ 0x5222: "ling2", // 刢
+ 0x5223: "zhong1", // 刣
+ 0x5224: "pan4", // 判
+ 0x5225: "bie2", // 別
+ 0x5226: "jie2", // 刦
+ 0x5227: "jie2", // 刧
+ 0x5228: "pao2", // 刨
+ 0x5229: "li4", // 利
+ 0x522a: "shan1", // 刪
+ 0x522b: "bie2", // 别
+ 0x522c: "chan3", // 刬
+ 0x522d: "jing3", // 刭
+ 0x522e: "gua1", // 刮
+ 0x522f: "geng1", // 刯
+ 0x5230: "dao4", // 到
+ 0x5231: "chuang4", // 刱
+ 0x5232: "kui1", // 刲
+ 0x5233: "ku1", // 刳
+ 0x5234: "duo4", // 刴
+ 0x5235: "er4", // 刵
+ 0x5236: "zhi4", // 制
+ 0x5237: "shua1", // 刷
+ 0x5238: "quan4", // 券
+ 0x5239: "sha1", // 刹
+ 0x523a: "ci4", // 刺
+ 0x523b: "ke4", // 刻
+ 0x523c: "jie2", // 刼
+ 0x523d: "gui4", // 刽
+ 0x523e: "ci4", // 刾
+ 0x523f: "gui4", // 刿
+ 0x5240: "kai3", // 剀
+ 0x5241: "duo4", // 剁
+ 0x5242: "ji4", // 剂
+ 0x5243: "ti4", // 剃
+ 0x5244: "jing3", // 剄
+ 0x5245: "lou2", // 剅
+ 0x5246: "luo3", // 剆
+ 0x5247: "ze2", // 則
+ 0x5248: "yuan1", // 剈
+ 0x5249: "cuo4", // 剉
+ 0x524a: "xue1", // 削
+ 0x524b: "ke4", // 剋
+ 0x524c: "la2", // 剌
+ 0x524d: "qian2", // 前
+ 0x524e: "sha1", // 剎
+ 0x524f: "chuang4", // 剏
+ 0x5250: "gua3", // 剐
+ 0x5251: "jian4", // 剑
+ 0x5252: "cuo4", // 剒
+ 0x5253: "li2", // 剓
+ 0x5254: "ti1", // 剔
+ 0x5255: "fei4", // 剕
+ 0x5256: "pou1", // 剖
+ 0x5257: "chan3", // 剗
+ 0x5258: "qi2", // 剘
+ 0x5259: "chuang4", // 剙
+ 0x525a: "zi4", // 剚
+ 0x525b: "gang1", // 剛
+ 0x525c: "wan1", // 剜
+ 0x525d: "bo1", // 剝
+ 0x525e: "ji1", // 剞
+ 0x525f: "duo1", // 剟
+ 0x5260: "qing2", // 剠
+ 0x5261: "shan4", // 剡
+ 0x5262: "du1", // 剢
+ 0x5263: "jian4", // 剣
+ 0x5264: "ji4", // 剤
+ 0x5265: "bo1", // 剥
+ 0x5266: "yan1", // 剦
+ 0x5267: "ju4", // 剧
+ 0x5268: "huo1", // 剨
+ 0x5269: "sheng4", // 剩
+ 0x526a: "jian3", // 剪
+ 0x526b: "duo2", // 剫
+ 0x526c: "duan1", // 剬
+ 0x526d: "wu1", // 剭
+ 0x526e: "gua3", // 剮
+ 0x526f: "fu4", // 副
+ 0x5270: "sheng4", // 剰
+ 0x5271: "jian4", // 剱
+ 0x5272: "ge1", // 割
+ 0x5273: "da2", // 剳
+ 0x5274: "kai3", // 剴
+ 0x5275: "chuang4", // 創
+ 0x5276: "chuan1", // 剶
+ 0x5277: "chan3", // 剷
+ 0x5278: "tuan2", // 剸
+ 0x5279: "lu4", // 剹
+ 0x527a: "li2", // 剺
+ 0x527b: "peng3", // 剻
+ 0x527c: "shan1", // 剼
+ 0x527d: "piao1", // 剽
+ 0x527e: "kou1", // 剾
+ 0x527f: "jiao3", // 剿
+ 0x5280: "gua1", // 劀
+ 0x5281: "qiao1", // 劁
+ 0x5282: "jue2", // 劂
+ 0x5283: "hua4", // 劃
+ 0x5284: "zha1", // 劄
+ 0x5285: "zhuo2", // 劅
+ 0x5286: "lian2", // 劆
+ 0x5287: "ju4", // 劇
+ 0x5288: "pi1", // 劈
+ 0x5289: "liu2", // 劉
+ 0x528a: "gui4", // 劊
+ 0x528b: "jiao3", // 劋
+ 0x528c: "gui4", // 劌
+ 0x528d: "jian4", // 劍
+ 0x528e: "jian4", // 劎
+ 0x528f: "tang1", // 劏
+ 0x5290: "huo1", // 劐
+ 0x5291: "ji4", // 劑
+ 0x5292: "jian4", // 劒
+ 0x5293: "yi4", // 劓
+ 0x5294: "jian4", // 劔
+ 0x5295: "zhi4", // 劕
+ 0x5296: "chan2", // 劖
+ 0x5297: "jian3", // 劗
+ 0x5298: "mo2", // 劘
+ 0x5299: "li2", // 劙
+ 0x529a: "zhu3", // 劚
+ 0x529b: "li4", // 力
+ 0x529c: "ya4", // 劜
+ 0x529d: "quan4", // 劝
+ 0x529e: "ban4", // 办
+ 0x529f: "gong1", // 功
+ 0x52a0: "jia1", // 加
+ 0x52a1: "wu4", // 务
+ 0x52a2: "mai4", // 劢
+ 0x52a3: "lie4", // 劣
+ 0x52a4: "jin4", // 劤
+ 0x52a5: "keng1", // 劥
+ 0x52a6: "xie2", // 劦
+ 0x52a7: "zhi3", // 劧
+ 0x52a8: "dong4", // 动
+ 0x52a9: "zhu4", // 助
+ 0x52aa: "nu3", // 努
+ 0x52ab: "jie2", // 劫
+ 0x52ac: "qu2", // 劬
+ 0x52ad: "shao4", // 劭
+ 0x52ae: "yi4", // 劮
+ 0x52af: "zhu1", // 劯
+ 0x52b0: "mo4", // 劰
+ 0x52b1: "li4", // 励
+ 0x52b2: "jin4", // 劲
+ 0x52b3: "lao2", // 劳
+ 0x52b4: "lao2", // 労
+ 0x52b5: "juan4", // 劵
+ 0x52b6: "kou3", // 劶
+ 0x52b7: "yang2", // 劷
+ 0x52b8: "wa1", // 劸
+ 0x52b9: "xiao4", // 効
+ 0x52ba: "mou2", // 劺
+ 0x52bb: "kuang1", // 劻
+ 0x52bc: "jie2", // 劼
+ 0x52bd: "lie4", // 劽
+ 0x52be: "he2", // 劾
+ 0x52bf: "shi4", // 势
+ 0x52c0: "ke4", // 勀
+ 0x52c1: "jin4", // 勁
+ 0x52c2: "gao4", // 勂
+ 0x52c3: "bo2", // 勃
+ 0x52c4: "min3", // 勄
+ 0x52c5: "chi4", // 勅
+ 0x52c6: "lang2", // 勆
+ 0x52c7: "yong3", // 勇
+ 0x52c8: "yong3", // 勈
+ 0x52c9: "mian3", // 勉
+ 0x52ca: "ke4", // 勊
+ 0x52cb: "xun1", // 勋
+ 0x52cc: "juan4", // 勌
+ 0x52cd: "qing2", // 勍
+ 0x52ce: "lu4", // 勎
+ 0x52cf: "bu4", // 勏
+ 0x52d0: "meng3", // 勐
+ 0x52d1: "chi4", // 勑
+ 0x52d2: "lei1", // 勒
+ 0x52d3: "kai4", // 勓
+ 0x52d4: "mian3", // 勔
+ 0x52d5: "dong4", // 動
+ 0x52d6: "xu4", // 勖
+ 0x52d7: "xu4", // 勗
+ 0x52d8: "kan1", // 勘
+ 0x52d9: "wu4", // 務
+ 0x52da: "yi4", // 勚
+ 0x52db: "xun1", // 勛
+ 0x52dc: "weng3", // 勜
+ 0x52dd: "sheng4", // 勝
+ 0x52de: "lao2", // 勞
+ 0x52df: "mu4", // 募
+ 0x52e0: "lu4", // 勠
+ 0x52e1: "piao4", // 勡
+ 0x52e2: "shi4", // 勢
+ 0x52e3: "ji1", // 勣
+ 0x52e4: "qin2", // 勤
+ 0x52e5: "jiang4", // 勥
+ 0x52e6: "chao1", // 勦
+ 0x52e7: "quan4", // 勧
+ 0x52e8: "xiang4", // 勨
+ 0x52e9: "yi4", // 勩
+ 0x52ea: "jue2", // 勪
+ 0x52eb: "fan1", // 勫
+ 0x52ec: "juan1", // 勬
+ 0x52ed: "tong2", // 勭
+ 0x52ee: "ju4", // 勮
+ 0x52ef: "dan1", // 勯
+ 0x52f0: "xie2", // 勰
+ 0x52f1: "mai4", // 勱
+ 0x52f2: "xun1", // 勲
+ 0x52f3: "xun1", // 勳
+ 0x52f4: "lv4", // 勴
+ 0x52f5: "li4", // 勵
+ 0x52f6: "che4", // 勶
+ 0x52f7: "rang2", // 勷
+ 0x52f8: "quan4", // 勸
+ 0x52f9: "bao1", // 勹
+ 0x52fa: "shao2", // 勺
+ 0x52fb: "yun2", // 勻
+ 0x52fc: "jiu1", // 勼
+ 0x52fd: "bao4", // 勽
+ 0x52fe: "gou1", // 勾
+ 0x52ff: "wu4", // 勿
+ 0x5300: "yun2", // 匀
+ 0x5301: "wen2", // 匁
+ 0x5302: "xiong1", // 匂
+ 0x5303: "gai4", // 匃
+ 0x5304: "gai4", // 匄
+ 0x5305: "bao1", // 包
+ 0x5306: "cong1", // 匆
+ 0x5307: "yi4", // 匇
+ 0x5308: "xiong1", // 匈
+ 0x5309: "peng1", // 匉
+ 0x530a: "ju1", // 匊
+ 0x530b: "tao2", // 匋
+ 0x530c: "ge2", // 匌
+ 0x530d: "pu2", // 匍
+ 0x530e: "e4", // 匎
+ 0x530f: "pao2", // 匏
+ 0x5310: "fu2", // 匐
+ 0x5311: "gong1", // 匑
+ 0x5312: "da2", // 匒
+ 0x5313: "jiu4", // 匓
+ 0x5314: "gong1", // 匔
+ 0x5315: "bi3", // 匕
+ 0x5316: "hua4", // 化
+ 0x5317: "bei3", // 北
+ 0x5318: "nao3", // 匘
+ 0x5319: "shi5", // 匙
+ 0x531a: "fang1", // 匚
+ 0x531b: "jiu4", // 匛
+ 0x531c: "yi2", // 匜
+ 0x531d: "za1", // 匝
+ 0x531e: "jiang4", // 匞
+ 0x531f: "kang4", // 匟
+ 0x5320: "jiang4", // 匠
+ 0x5321: "kuang1", // 匡
+ 0x5322: "hu1", // 匢
+ 0x5323: "xia2", // 匣
+ 0x5324: "qu1", // 匤
+ 0x5325: "fan2", // 匥
+ 0x5326: "gui3", // 匦
+ 0x5327: "qie4", // 匧
+ 0x5328: "zang1", // 匨
+ 0x5329: "kuang1", // 匩
+ 0x532a: "fei3", // 匪
+ 0x532b: "hu1", // 匫
+ 0x532c: "yu3", // 匬
+ 0x532d: "gui3", // 匭
+ 0x532e: "kui4", // 匮
+ 0x532f: "hui4", // 匯
+ 0x5330: "dan1", // 匰
+ 0x5331: "gui4", // 匱
+ 0x5332: "lian2", // 匲
+ 0x5333: "lian2", // 匳
+ 0x5334: "suan3", // 匴
+ 0x5335: "du2", // 匵
+ 0x5336: "jiu4", // 匶
+ 0x5337: "jue2", // 匷
+ 0x5338: "xi4", // 匸
+ 0x5339: "pi3", // 匹
+ 0x533a: "qu1", // 区
+ 0x533b: "yi1", // 医
+ 0x533c: "ke1", // 匼
+ 0x533d: "yan3", // 匽
+ 0x533e: "bian3", // 匾
+ 0x533f: "ni4", // 匿
+ 0x5340: "qu1", // 區
+ 0x5341: "shi2", // 十
+ 0x5342: "xun4", // 卂
+ 0x5343: "qian1", // 千
+ 0x5344: "nian4", // 卄
+ 0x5345: "sa4", // 卅
+ 0x5346: "zu2", // 卆
+ 0x5347: "sheng1", // 升
+ 0x5348: "wu3", // 午
+ 0x5349: "hui4", // 卉
+ 0x534a: "ban4", // 半
+ 0x534b: "shi4", // 卋
+ 0x534c: "xi4", // 卌
+ 0x534d: "wan4", // 卍
+ 0x534e: "hua2", // 华
+ 0x534f: "xie2", // 协
+ 0x5350: "wan4", // 卐
+ 0x5351: "bei1", // 卑
+ 0x5352: "zu2", // 卒
+ 0x5353: "zhuo1", // 卓
+ 0x5354: "xie2", // 協
+ 0x5355: "dan1", // 单
+ 0x5356: "mai4", // 卖
+ 0x5357: "nan2", // 南
+ 0x5358: "dan1", // 単
+ 0x5359: "ji2", // 卙
+ 0x535a: "bo2", // 博
+ 0x535b: "shuai4", // 卛
+ 0x535c: "bo5", // 卜
+ 0x535d: "kuang4", // 卝
+ 0x535e: "bian4", // 卞
+ 0x535f: "bu3", // 卟
+ 0x5360: "zhan4", // 占
+ 0x5361: "ka3", // 卡
+ 0x5362: "lu2", // 卢
+ 0x5363: "you3", // 卣
+ 0x5364: "lu3", // 卤
+ 0x5365: "xi1", // 卥
+ 0x5366: "gua4", // 卦
+ 0x5367: "wo4", // 卧
+ 0x5368: "xie4", // 卨
+ 0x5369: "jie2", // 卩
+ 0x536a: "jie2", // 卪
+ 0x536b: "wei4", // 卫
+ 0x536c: "ang2", // 卬
+ 0x536d: "qiong2", // 卭
+ 0x536e: "zhi1", // 卮
+ 0x536f: "mao3", // 卯
+ 0x5370: "yin4", // 印
+ 0x5371: "wei1", // 危
+ 0x5372: "shao4", // 卲
+ 0x5373: "ji2", // 即
+ 0x5374: "que4", // 却
+ 0x5375: "luan3", // 卵
+ 0x5376: "chi3", // 卶
+ 0x5377: "juan3", // 卷
+ 0x5378: "xie4", // 卸
+ 0x5379: "xu4", // 卹
+ 0x537a: "jin3", // 卺
+ 0x537b: "que4", // 卻
+ 0x537c: "wu4", // 卼
+ 0x537d: "ji2", // 卽
+ 0x537e: "e4", // 卾
+ 0x537f: "qing1", // 卿
+ 0x5380: "xi1", // 厀
+ 0x5381: "san1", // 厁
+ 0x5382: "chang3", // 厂
+ 0x5383: "wei3", // 厃
+ 0x5384: "e4", // 厄
+ 0x5385: "ting1", // 厅
+ 0x5386: "li4", // 历
+ 0x5387: "zhe2", // 厇
+ 0x5388: "han3", // 厈
+ 0x5389: "li4", // 厉
+ 0x538a: "ya3", // 厊
+ 0x538b: "ya1", // 压
+ 0x538c: "yan4", // 厌
+ 0x538d: "she4", // 厍
+ 0x538e: "di3", // 厎
+ 0x538f: "zha3", // 厏
+ 0x5390: "pang2", // 厐
+ 0x5391: "ya2", // 厑
+ 0x5392: "qie4", // 厒
+ 0x5393: "ya2", // 厓
+ 0x5394: "zhi4", // 厔
+ 0x5395: "ce4", // 厕
+ 0x5396: "pang2", // 厖
+ 0x5397: "ti2", // 厗
+ 0x5398: "li2", // 厘
+ 0x5399: "she4", // 厙
+ 0x539a: "hou4", // 厚
+ 0x539b: "ting1", // 厛
+ 0x539c: "zui1", // 厜
+ 0x539d: "cuo4", // 厝
+ 0x539e: "fei4", // 厞
+ 0x539f: "yuan2", // 原
+ 0x53a0: "ce4", // 厠
+ 0x53a1: "yuan2", // 厡
+ 0x53a2: "xiang1", // 厢
+ 0x53a3: "yan3", // 厣
+ 0x53a4: "li4", // 厤
+ 0x53a5: "jue2", // 厥
+ 0x53a6: "sha4", // 厦
+ 0x53a7: "dian1", // 厧
+ 0x53a8: "chu2", // 厨
+ 0x53a9: "jiu4", // 厩
+ 0x53aa: "jin3", // 厪
+ 0x53ab: "ao2", // 厫
+ 0x53ac: "gui3", // 厬
+ 0x53ad: "yan4", // 厭
+ 0x53ae: "si1", // 厮
+ 0x53af: "li4", // 厯
+ 0x53b0: "chang3", // 厰
+ 0x53b1: "lan2", // 厱
+ 0x53b2: "li4", // 厲
+ 0x53b3: "yan2", // 厳
+ 0x53b4: "yan3", // 厴
+ 0x53b5: "yuan2", // 厵
+ 0x53b6: "si1", // 厶
+ 0x53b7: "gong1", // 厷
+ 0x53b8: "lin2", // 厸
+ 0x53b9: "rou2", // 厹
+ 0x53ba: "qu4", // 厺
+ 0x53bb: "qu4", // 去
+ 0x53bc: "er3", // 厼
+ 0x53bd: "lei3", // 厽
+ 0x53be: "du1", // 厾
+ 0x53bf: "xian4", // 县
+ 0x53c0: "zhuan1", // 叀
+ 0x53c1: "san1", // 叁
+ 0x53c2: "can1", // 参
+ 0x53c3: "can1", // 參
+ 0x53c4: "can1", // 叄
+ 0x53c5: "can1", // 叅
+ 0x53c6: "ai4", // 叆
+ 0x53c7: "dai4", // 叇
+ 0x53c8: "you4", // 又
+ 0x53c9: "cha1", // 叉
+ 0x53ca: "ji2", // 及
+ 0x53cb: "you3", // 友
+ 0x53cc: "shuang1", // 双
+ 0x53cd: "fan3", // 反
+ 0x53ce: "shou1", // 収
+ 0x53cf: "guai4", // 叏
+ 0x53d0: "ba2", // 叐
+ 0x53d1: "fa1", // 发
+ 0x53d2: "ruo4", // 叒
+ 0x53d3: "shi4", // 叓
+ 0x53d4: "shu1", // 叔
+ 0x53d5: "zhuo2", // 叕
+ 0x53d6: "qu3", // 取
+ 0x53d7: "shou4", // 受
+ 0x53d8: "bian4", // 变
+ 0x53d9: "xu4", // 叙
+ 0x53da: "jia3", // 叚
+ 0x53db: "pan4", // 叛
+ 0x53dc: "sou3", // 叜
+ 0x53dd: "ji2", // 叝
+ 0x53de: "wei4", // 叞
+ 0x53df: "sou3", // 叟
+ 0x53e0: "die2", // 叠
+ 0x53e1: "rui4", // 叡
+ 0x53e2: "cong2", // 叢
+ 0x53e3: "kou3", // 口
+ 0x53e4: "gu3", // 古
+ 0x53e5: "ju4", // 句
+ 0x53e6: "ling4", // 另
+ 0x53e7: "gua3", // 叧
+ 0x53e8: "dao1", // 叨
+ 0x53e9: "kou4", // 叩
+ 0x53ea: "zhi3", // 只
+ 0x53eb: "jiao4", // 叫
+ 0x53ec: "zhao4", // 召
+ 0x53ed: "ba1", // 叭
+ 0x53ee: "ding1", // 叮
+ 0x53ef: "ke3", // 可
+ 0x53f0: "tai2", // 台
+ 0x53f1: "chi4", // 叱
+ 0x53f2: "shi3", // 史
+ 0x53f3: "you4", // 右
+ 0x53f4: "qiu2", // 叴
+ 0x53f5: "po3", // 叵
+ 0x53f6: "ye4", // 叶
+ 0x53f7: "hao4", // 号
+ 0x53f8: "si1", // 司
+ 0x53f9: "tan4", // 叹
+ 0x53fa: "chi3", // 叺
+ 0x53fb: "le4", // 叻
+ 0x53fc: "diao1", // 叼
+ 0x53fd: "ji1", // 叽
+ 0x53fe: "liao3", // 叾
+ 0x53ff: "hong1", // 叿
+ 0x5400: "mie1", // 吀
+ 0x5401: "xu1", // 吁
+ 0x5402: "mang2", // 吂
+ 0x5403: "chi1", // 吃
+ 0x5404: "ge4", // 各
+ 0x5405: "xuan1", // 吅
+ 0x5406: "yao1", // 吆
+ 0x5407: "zi3", // 吇
+ 0x5408: "he2", // 合
+ 0x5409: "ji2", // 吉
+ 0x540a: "diao4", // 吊
+ 0x540b: "cun4", // 吋
+ 0x540c: "tong2", // 同
+ 0x540d: "ming2", // 名
+ 0x540e: "hou4", // 后
+ 0x540f: "li4", // 吏
+ 0x5410: "tu3", // 吐
+ 0x5411: "xiang4", // 向
+ 0x5412: "zha1", // 吒
+ 0x5413: "xia4", // 吓
+ 0x5414: "ye3", // 吔
+ 0x5415: "lv3", // 吕
+ 0x5416: "ya1", // 吖
+ 0x5417: "ma5", // 吗
+ 0x5418: "ou3", // 吘
+ 0x5419: "huo1", // 吙
+ 0x541a: "yi1", // 吚
+ 0x541b: "jun1", // 君
+ 0x541c: "chou3", // 吜
+ 0x541d: "lin4", // 吝
+ 0x541e: "tun1", // 吞
+ 0x541f: "yin2", // 吟
+ 0x5420: "fei4", // 吠
+ 0x5421: "bi3", // 吡
+ 0x5422: "qin4", // 吢
+ 0x5423: "qin4", // 吣
+ 0x5424: "jie4", // 吤
+ 0x5425: "bu4", // 吥
+ 0x5426: "fou3", // 否
+ 0x5427: "ba5", // 吧
+ 0x5428: "dun1", // 吨
+ 0x5429: "fen1", // 吩
+ 0x542a: "e2", // 吪
+ 0x542b: "han2", // 含
+ 0x542c: "ting1", // 听
+ 0x542d: "keng1", // 吭
+ 0x542e: "shun3", // 吮
+ 0x542f: "qi3", // 启
+ 0x5430: "hong2", // 吰
+ 0x5431: "zhi1", // 吱
+ 0x5432: "yin3", // 吲
+ 0x5433: "wu2", // 吳
+ 0x5434: "wu2", // 吴
+ 0x5435: "chao3", // 吵
+ 0x5436: "na4", // 吶
+ 0x5437: "xue4", // 吷
+ 0x5438: "xi1", // 吸
+ 0x5439: "chui1", // 吹
+ 0x543a: "dou1", // 吺
+ 0x543b: "wen3", // 吻
+ 0x543c: "hou3", // 吼
+ 0x543d: "hong1", // 吽
+ 0x543e: "wu2", // 吾
+ 0x543f: "gao4", // 吿
+ 0x5440: "ya5", // 呀
+ 0x5441: "jun4", // 呁
+ 0x5442: "lv3", // 呂
+ 0x5443: "e4", // 呃
+ 0x5444: "ge2", // 呄
+ 0x5445: "mei2", // 呅
+ 0x5446: "dai1", // 呆
+ 0x5447: "qi3", // 呇
+ 0x5448: "cheng2", // 呈
+ 0x5449: "wu2", // 呉
+ 0x544a: "gao4", // 告
+ 0x544b: "fu1", // 呋
+ 0x544c: "jiao4", // 呌
+ 0x544d: "hong1", // 呍
+ 0x544e: "chi3", // 呎
+ 0x544f: "sheng1", // 呏
+ 0x5450: "na4", // 呐
+ 0x5451: "tun1", // 呑
+ 0x5452: "wu3", // 呒
+ 0x5453: "yi4", // 呓
+ 0x5454: "dai1", // 呔
+ 0x5455: "ou3", // 呕
+ 0x5456: "li4", // 呖
+ 0x5457: "bei5", // 呗
+ 0x5458: "yuan2", // 员
+ 0x5459: "guo1", // 呙
+ 0x545a: "wen5", // 呚
+ 0x545b: "qiang1", // 呛
+ 0x545c: "wu1", // 呜
+ 0x545d: "e4", // 呝
+ 0x545e: "shi1", // 呞
+ 0x545f: "juan3", // 呟
+ 0x5460: "pen3", // 呠
+ 0x5461: "wen3", // 呡
+ 0x5462: "ne5", // 呢
+ 0x5463: "ḿ5", // 呣
+ 0x5464: "ling4", // 呤
+ 0x5465: "ran2", // 呥
+ 0x5466: "you1", // 呦
+ 0x5467: "di3", // 呧
+ 0x5468: "zhou1", // 周
+ 0x5469: "shi4", // 呩
+ 0x546a: "zhou4", // 呪
+ 0x546b: "tie4", // 呫
+ 0x546c: "xi4", // 呬
+ 0x546d: "yi4", // 呭
+ 0x546e: "qi4", // 呮
+ 0x546f: "ping2", // 呯
+ 0x5470: "zi3", // 呰
+ 0x5471: "gu1", // 呱
+ 0x5472: "ci1", // 呲
+ 0x5473: "wei4", // 味
+ 0x5474: "xu3", // 呴
+ 0x5475: "he1", // 呵
+ 0x5476: "nao2", // 呶
+ 0x5477: "ga1", // 呷
+ 0x5478: "pei1", // 呸
+ 0x5479: "yi4", // 呹
+ 0x547a: "xiao1", // 呺
+ 0x547b: "shen1", // 呻
+ 0x547c: "hu1", // 呼
+ 0x547d: "ming4", // 命
+ 0x547e: "da2", // 呾
+ 0x547f: "qu4", // 呿
+ 0x5480: "ju3", // 咀
+ 0x5481: "han2", // 咁
+ 0x5482: "za1", // 咂
+ 0x5483: "tuo1", // 咃
+ 0x5484: "duo1", // 咄
+ 0x5485: "pou3", // 咅
+ 0x5486: "pao2", // 咆
+ 0x5487: "bie2", // 咇
+ 0x5488: "fu2", // 咈
+ 0x5489: "yang1", // 咉
+ 0x548a: "he2", // 咊
+ 0x548b: "za3", // 咋
+ 0x548c: "he2", // 和
+ 0x548d: "hai1", // 咍
+ 0x548e: "jiu4", // 咎
+ 0x548f: "yong3", // 咏
+ 0x5490: "fu4", // 咐
+ 0x5491: "da1", // 咑
+ 0x5492: "zhou4", // 咒
+ 0x5493: "wa3", // 咓
+ 0x5494: "ka1", // 咔
+ 0x5495: "gu1", // 咕
+ 0x5496: "ka1", // 咖
+ 0x5497: "zuo5", // 咗
+ 0x5498: "bu4", // 咘
+ 0x5499: "long2", // 咙
+ 0x549a: "dong1", // 咚
+ 0x549b: "ning2", // 咛
+ 0x549c: "ta5", // 咜
+ 0x549d: "si1", // 咝
+ 0x549e: "xian4", // 咞
+ 0x549f: "huo4", // 咟
+ 0x54a0: "qi4", // 咠
+ 0x54a1: "er4", // 咡
+ 0x54a2: "e4", // 咢
+ 0x54a3: "guang1", // 咣
+ 0x54a4: "zha4", // 咤
+ 0x54a5: "xi4", // 咥
+ 0x54a6: "yi2", // 咦
+ 0x54a7: "lie3", // 咧
+ 0x54a8: "zi1", // 咨
+ 0x54a9: "mie1", // 咩
+ 0x54aa: "mi1", // 咪
+ 0x54ab: "zhi3", // 咫
+ 0x54ac: "yao3", // 咬
+ 0x54ad: "ji1", // 咭
+ 0x54ae: "zhou4", // 咮
+ 0x54af: "ge1", // 咯
+ 0x54b0: "shu4", // 咰
+ 0x54b1: "zan2", // 咱
+ 0x54b2: "xiao4", // 咲
+ 0x54b3: "hai1", // 咳
+ 0x54b4: "hui1", // 咴
+ 0x54b5: "kua3", // 咵
+ 0x54b6: "huai4", // 咶
+ 0x54b7: "tao2", // 咷
+ 0x54b8: "xian2", // 咸
+ 0x54b9: "e4", // 咹
+ 0x54ba: "xuan3", // 咺
+ 0x54bb: "xiu1", // 咻
+ 0x54bc: "guo1", // 咼
+ 0x54bd: "yan4", // 咽
+ 0x54be: "lao3", // 咾
+ 0x54bf: "yi1", // 咿
+ 0x54c0: "ai1", // 哀
+ 0x54c1: "pin3", // 品
+ 0x54c2: "shen3", // 哂
+ 0x54c3: "tong2", // 哃
+ 0x54c4: "hong1", // 哄
+ 0x54c5: "xiong1", // 哅
+ 0x54c6: "duo1", // 哆
+ 0x54c7: "wa5", // 哇
+ 0x54c8: "ha1", // 哈
+ 0x54c9: "zai1", // 哉
+ 0x54ca: "you4", // 哊
+ 0x54cb: "die4", // 哋
+ 0x54cc: "pai4", // 哌
+ 0x54cd: "xiang3", // 响
+ 0x54ce: "ai1", // 哎
+ 0x54cf: "gen2", // 哏
+ 0x54d0: "kuang1", // 哐
+ 0x54d1: "ya3", // 哑
+ 0x54d2: "da2", // 哒
+ 0x54d3: "xiao1", // 哓
+ 0x54d4: "bi4", // 哔
+ 0x54d5: "hui4", // 哕
+ 0x54d6: "nian2", // 哖
+ 0x54d7: "hua1", // 哗
+ 0x54d8: "xing5", // 哘
+ 0x54d9: "kuai4", // 哙
+ 0x54da: "duo3", // 哚
+ 0x54db: "fen1", // 哛
+ 0x54dc: "ji4", // 哜
+ 0x54dd: "nong2", // 哝
+ 0x54de: "mou1", // 哞
+ 0x54df: "yo1", // 哟
+ 0x54e0: "hao4", // 哠
+ 0x54e1: "yuan2", // 員
+ 0x54e2: "long4", // 哢
+ 0x54e3: "pou3", // 哣
+ 0x54e4: "mang2", // 哤
+ 0x54e5: "ge1", // 哥
+ 0x54e6: "o2", // 哦
+ 0x54e7: "chi1", // 哧
+ 0x54e8: "shao4", // 哨
+ 0x54e9: "li1", // 哩
+ 0x54ea: "na3", // 哪
+ 0x54eb: "zu2", // 哫
+ 0x54ec: "he2", // 哬
+ 0x54ed: "ku1", // 哭
+ 0x54ee: "xiao1", // 哮
+ 0x54ef: "xian4", // 哯
+ 0x54f0: "lao2", // 哰
+ 0x54f1: "bo1", // 哱
+ 0x54f2: "zhe2", // 哲
+ 0x54f3: "zha1", // 哳
+ 0x54f4: "liang4", // 哴
+ 0x54f5: "ba1", // 哵
+ 0x54f6: "mie1", // 哶
+ 0x54f7: "lie4", // 哷
+ 0x54f8: "sui1", // 哸
+ 0x54f9: "fu2", // 哹
+ 0x54fa: "bu3", // 哺
+ 0x54fb: "han1", // 哻
+ 0x54fc: "heng1", // 哼
+ 0x54fd: "geng3", // 哽
+ 0x54fe: "shuo1", // 哾
+ 0x54ff: "ge3", // 哿
+ 0x5500: "you4", // 唀
+ 0x5501: "yan4", // 唁
+ 0x5502: "gu1", // 唂
+ 0x5503: "gu3", // 唃
+ 0x5504: "bei5", // 唄
+ 0x5505: "han2", // 唅
+ 0x5506: "suo1", // 唆
+ 0x5507: "chun2", // 唇
+ 0x5508: "yi4", // 唈
+ 0x5509: "ai1", // 唉
+ 0x550a: "jia2", // 唊
+ 0x550b: "tu1", // 唋
+ 0x550c: "xian2", // 唌
+ 0x550d: "wan3", // 唍
+ 0x550e: "li4", // 唎
+ 0x550f: "xi1", // 唏
+ 0x5510: "tang2", // 唐
+ 0x5511: "zuo4", // 唑
+ 0x5512: "qiu2", // 唒
+ 0x5513: "che1", // 唓
+ 0x5514: "wu2", // 唔
+ 0x5515: "zao4", // 唕
+ 0x5516: "ya3", // 唖
+ 0x5517: "dou1", // 唗
+ 0x5518: "qi3", // 唘
+ 0x5519: "di2", // 唙
+ 0x551a: "qin4", // 唚
+ 0x551b: "ma4", // 唛
+ 0x551c: "mo4", // 唜
+ 0x551d: "gong4", // 唝
+ 0x551e: "dou3", // 唞
+ 0x551f: "qu4", // 唟
+ 0x5520: "lao2", // 唠
+ 0x5521: "liang3", // 唡
+ 0x5522: "suo3", // 唢
+ 0x5523: "zao4", // 唣
+ 0x5524: "huan4", // 唤
+ 0x5525: "lang5", // 唥
+ 0x5526: "sha1", // 唦
+ 0x5527: "ji1", // 唧
+ 0x5528: "zu3", // 唨
+ 0x5529: "wo1", // 唩
+ 0x552a: "feng3", // 唪
+ 0x552b: "jin4", // 唫
+ 0x552c: "hu3", // 唬
+ 0x552d: "qi4", // 唭
+ 0x552e: "shou4", // 售
+ 0x552f: "wei2", // 唯
+ 0x5530: "shua1", // 唰
+ 0x5531: "chang4", // 唱
+ 0x5532: "er2", // 唲
+ 0x5533: "li4", // 唳
+ 0x5534: "qiang4", // 唴
+ 0x5535: "an3", // 唵
+ 0x5536: "ze2", // 唶
+ 0x5537: "yo1", // 唷
+ 0x5538: "nian4", // 唸
+ 0x5539: "yu1", // 唹
+ 0x553a: "tian3", // 唺
+ 0x553b: "lai4", // 唻
+ 0x553c: "sha4", // 唼
+ 0x553d: "xi1", // 唽
+ 0x553e: "tuo4", // 唾
+ 0x553f: "hu1", // 唿
+ 0x5540: "ai2", // 啀
+ 0x5541: "zhao1", // 啁
+ 0x5542: "nou3", // 啂
+ 0x5543: "ken3", // 啃
+ 0x5544: "zhuo2", // 啄
+ 0x5545: "zhuo2", // 啅
+ 0x5546: "shang1", // 商
+ 0x5547: "di4", // 啇
+ 0x5548: "heng1", // 啈
+ 0x5549: "lin2", // 啉
+ 0x554a: "a5", // 啊
+ 0x554b: "cai3", // 啋
+ 0x554c: "xiang1", // 啌
+ 0x554d: "tun1", // 啍
+ 0x554e: "wu3", // 啎
+ 0x554f: "wen4", // 問
+ 0x5550: "cui4", // 啐
+ 0x5551: "sha4", // 啑
+ 0x5552: "gu3", // 啒
+ 0x5553: "qi3", // 啓
+ 0x5554: "qi3", // 啔
+ 0x5555: "tao2", // 啕
+ 0x5556: "dan4", // 啖
+ 0x5557: "dan4", // 啗
+ 0x5558: "ye4", // 啘
+ 0x5559: "zi3", // 啙
+ 0x555a: "bi3", // 啚
+ 0x555b: "cui4", // 啛
+ 0x555c: "chuai4", // 啜
+ 0x555d: "he2", // 啝
+ 0x555e: "ya3", // 啞
+ 0x555f: "qi3", // 啟
+ 0x5560: "zhe2", // 啠
+ 0x5561: "fei1", // 啡
+ 0x5562: "liang3", // 啢
+ 0x5563: "xian2", // 啣
+ 0x5564: "pi2", // 啤
+ 0x5565: "sha4", // 啥
+ 0x5566: "la5", // 啦
+ 0x5567: "ze2", // 啧
+ 0x5568: "ying1", // 啨
+ 0x5569: "gua4", // 啩
+ 0x556a: "pa1", // 啪
+ 0x556b: "zhe3", // 啫
+ 0x556c: "se4", // 啬
+ 0x556d: "zhuan4", // 啭
+ 0x556e: "nie4", // 啮
+ 0x556f: "guo1", // 啯
+ 0x5570: "luo1", // 啰
+ 0x5571: "yan2", // 啱
+ 0x5572: "di1", // 啲
+ 0x5573: "quan2", // 啳
+ 0x5574: "chan3", // 啴
+ 0x5575: "bo1", // 啵
+ 0x5576: "ding4", // 啶
+ 0x5577: "lang1", // 啷
+ 0x5578: "xiao4", // 啸
+ 0x5579: "ju2", // 啹
+ 0x557a: "tang2", // 啺
+ 0x557b: "chi4", // 啻
+ 0x557c: "ti2", // 啼
+ 0x557d: "an2", // 啽
+ 0x557e: "jiu1", // 啾
+ 0x557f: "dan4", // 啿
+ 0x5580: "ka1", // 喀
+ 0x5581: "yong2", // 喁
+ 0x5582: "wei4", // 喂
+ 0x5583: "nan2", // 喃
+ 0x5584: "shan4", // 善
+ 0x5585: "yu4", // 喅
+ 0x5586: "zhe2", // 喆
+ 0x5587: "la3", // 喇
+ 0x5588: "jie1", // 喈
+ 0x5589: "hou2", // 喉
+ 0x558a: "han3", // 喊
+ 0x558b: "die2", // 喋
+ 0x558c: "zhou1", // 喌
+ 0x558d: "chai2", // 喍
+ 0x558e: "wai1", // 喎
+ 0x558f: "nuo4", // 喏
+ 0x5590: "yu4", // 喐
+ 0x5591: "yin1", // 喑
+ 0x5592: "za2", // 喒
+ 0x5593: "yao1", // 喓
+ 0x5594: "o1", // 喔
+ 0x5595: "mian3", // 喕
+ 0x5596: "hu2", // 喖
+ 0x5597: "yun3", // 喗
+ 0x5598: "chuan3", // 喘
+ 0x5599: "hui4", // 喙
+ 0x559a: "huan4", // 喚
+ 0x559b: "huan4", // 喛
+ 0x559c: "xi3", // 喜
+ 0x559d: "he1", // 喝
+ 0x559e: "ji1", // 喞
+ 0x559f: "kui4", // 喟
+ 0x55a0: "zhong3", // 喠
+ 0x55a1: "wei2", // 喡
+ 0x55a2: "sha4", // 喢
+ 0x55a3: "xu4", // 喣
+ 0x55a4: "huang2", // 喤
+ 0x55a5: "duo2", // 喥
+ 0x55a6: "nie4", // 喦
+ 0x55a7: "xuan1", // 喧
+ 0x55a8: "liang4", // 喨
+ 0x55a9: "yu4", // 喩
+ 0x55aa: "sang4", // 喪
+ 0x55ab: "chi1", // 喫
+ 0x55ac: "qiao2", // 喬
+ 0x55ad: "yan4", // 喭
+ 0x55ae: "dan1", // 單
+ 0x55af: "pen4", // 喯
+ 0x55b0: "can1", // 喰
+ 0x55b1: "li2", // 喱
+ 0x55b2: "yo1", // 喲
+ 0x55b3: "zha1", // 喳
+ 0x55b4: "wei1", // 喴
+ 0x55b5: "miao1", // 喵
+ 0x55b6: "ying2", // 営
+ 0x55b7: "pen1", // 喷
+ 0x55b8: "bu3", // 喸
+ 0x55b9: "kui2", // 喹
+ 0x55ba: "xi2", // 喺
+ 0x55bb: "yu4", // 喻
+ 0x55bc: "jie1", // 喼
+ 0x55bd: "lou2", // 喽
+ 0x55be: "ku4", // 喾
+ 0x55bf: "zao4", // 喿
+ 0x55c0: "hu4", // 嗀
+ 0x55c1: "ti2", // 嗁
+ 0x55c2: "yao2", // 嗂
+ 0x55c3: "he4", // 嗃
+ 0x55c4: "a2", // 嗄
+ 0x55c5: "xiu4", // 嗅
+ 0x55c6: "qiang1", // 嗆
+ 0x55c7: "se4", // 嗇
+ 0x55c8: "yong1", // 嗈
+ 0x55c9: "su4", // 嗉
+ 0x55ca: "hong3", // 嗊
+ 0x55cb: "xie2", // 嗋
+ 0x55cc: "ai4", // 嗌
+ 0x55cd: "suo1", // 嗍
+ 0x55ce: "ma5", // 嗎
+ 0x55cf: "cha1", // 嗏
+ 0x55d0: "hai4", // 嗐
+ 0x55d1: "ke1", // 嗑
+ 0x55d2: "da1", // 嗒
+ 0x55d3: "sang3", // 嗓
+ 0x55d4: "chen1", // 嗔
+ 0x55d5: "ru4", // 嗕
+ 0x55d6: "sou1", // 嗖
+ 0x55d7: "wa1", // 嗗
+ 0x55d8: "ji1", // 嗘
+ 0x55d9: "pang3", // 嗙
+ 0x55da: "wu1", // 嗚
+ 0x55db: "qian3", // 嗛
+ 0x55dc: "shi4", // 嗜
+ 0x55dd: "ge2", // 嗝
+ 0x55de: "zi1", // 嗞
+ 0x55df: "jie1", // 嗟
+ 0x55e0: "lao4", // 嗠
+ 0x55e1: "weng1", // 嗡
+ 0x55e2: "wa4", // 嗢
+ 0x55e3: "si4", // 嗣
+ 0x55e4: "chi1", // 嗤
+ 0x55e5: "hao2", // 嗥
+ 0x55e6: "suo5", // 嗦
+ 0x55e8: "hai1", // 嗨
+ 0x55e9: "suo3", // 嗩
+ 0x55ea: "qin2", // 嗪
+ 0x55eb: "nie4", // 嗫
+ 0x55ec: "he1", // 嗬
+ 0x55ed: "zhi2", // 嗭
+ 0x55ee: "sai4", // 嗮
+ 0x55ef: "n2", // 嗯
+ 0x55f0: "ge3", // 嗰
+ 0x55f1: "na2", // 嗱
+ 0x55f2: "die1", // 嗲
+ 0x55f3: "ai1", // 嗳
+ 0x55f4: "qiang1", // 嗴
+ 0x55f5: "tong1", // 嗵
+ 0x55f6: "bi4", // 嗶
+ 0x55f7: "ao2", // 嗷
+ 0x55f8: "ao2", // 嗸
+ 0x55f9: "lian2", // 嗹
+ 0x55fa: "zui1", // 嗺
+ 0x55fb: "zhe1", // 嗻
+ 0x55fc: "mo4", // 嗼
+ 0x55fd: "sou4", // 嗽
+ 0x55fe: "sou3", // 嗾
+ 0x55ff: "tan3", // 嗿
+ 0x5600: "di2", // 嘀
+ 0x5601: "qi1", // 嘁
+ 0x5602: "jiao4", // 嘂
+ 0x5603: "chong1", // 嘃
+ 0x5604: "jiao1", // 嘄
+ 0x5605: "kai3", // 嘅
+ 0x5606: "tan4", // 嘆
+ 0x5607: "shan1", // 嘇
+ 0x5608: "cao2", // 嘈
+ 0x5609: "jia1", // 嘉
+ 0x560a: "ai2", // 嘊
+ 0x560b: "xiao4", // 嘋
+ 0x560c: "piao4", // 嘌
+ 0x560d: "lou2", // 嘍
+ 0x560e: "ga1", // 嘎
+ 0x560f: "gu3", // 嘏
+ 0x5610: "xiao1", // 嘐
+ 0x5611: "hu1", // 嘑
+ 0x5612: "hui4", // 嘒
+ 0x5613: "guo1", // 嘓
+ 0x5614: "ou3", // 嘔
+ 0x5615: "xian1", // 嘕
+ 0x5616: "ze2", // 嘖
+ 0x5617: "chang2", // 嘗
+ 0x5618: "xu1", // 嘘
+ 0x5619: "po2", // 嘙
+ 0x561a: "de1", // 嘚
+ 0x561b: "ma5", // 嘛
+ 0x561c: "ma4", // 嘜
+ 0x561d: "hu2", // 嘝
+ 0x561e: "lei5", // 嘞
+ 0x561f: "du1", // 嘟
+ 0x5620: "ga1", // 嘠
+ 0x5621: "tang1", // 嘡
+ 0x5622: "ye3", // 嘢
+ 0x5623: "beng1", // 嘣
+ 0x5624: "ying1", // 嘤
+ 0x5625: "sai1", // 嘥
+ 0x5626: "jiao4", // 嘦
+ 0x5627: "mi4", // 嘧
+ 0x5628: "xiao4", // 嘨
+ 0x5629: "hua1", // 嘩
+ 0x562a: "mai3", // 嘪
+ 0x562b: "ran2", // 嘫
+ 0x562c: "chuai4", // 嘬
+ 0x562d: "peng1", // 嘭
+ 0x562e: "lao2", // 嘮
+ 0x562f: "xiao4", // 嘯
+ 0x5630: "ji1", // 嘰
+ 0x5631: "zhu3", // 嘱
+ 0x5632: "chao2", // 嘲
+ 0x5633: "kui4", // 嘳
+ 0x5634: "zui3", // 嘴
+ 0x5635: "xiao1", // 嘵
+ 0x5636: "si1", // 嘶
+ 0x5637: "hao2", // 嘷
+ 0x5638: "fu3", // 嘸
+ 0x5639: "liao2", // 嘹
+ 0x563a: "qiao2", // 嘺
+ 0x563b: "xi1", // 嘻
+ 0x563c: "chu4", // 嘼
+ 0x563d: "chan3", // 嘽
+ 0x563e: "dan4", // 嘾
+ 0x563f: "hei1", // 嘿
+ 0x5640: "xun4", // 噀
+ 0x5641: "e3", // 噁
+ 0x5642: "zun3", // 噂
+ 0x5643: "fan1", // 噃
+ 0x5644: "chi1", // 噄
+ 0x5645: "hui1", // 噅
+ 0x5646: "zan3", // 噆
+ 0x5647: "chuang2", // 噇
+ 0x5648: "cu4", // 噈
+ 0x5649: "dan4", // 噉
+ 0x564a: "yu4", // 噊
+ 0x564b: "tun1", // 噋
+ 0x564c: "ceng1", // 噌
+ 0x564d: "jiao4", // 噍
+ 0x564e: "ye1", // 噎
+ 0x564f: "xi1", // 噏
+ 0x5650: "qi4", // 噐
+ 0x5651: "hao2", // 噑
+ 0x5652: "lian2", // 噒
+ 0x5653: "xu1", // 噓
+ 0x5654: "deng1", // 噔
+ 0x5655: "hui1", // 噕
+ 0x5656: "yin2", // 噖
+ 0x5657: "pu1", // 噗
+ 0x5658: "jue1", // 噘
+ 0x5659: "qin2", // 噙
+ 0x565a: "xun2", // 噚
+ 0x565b: "nie4", // 噛
+ 0x565c: "lu1", // 噜
+ 0x565d: "si1", // 噝
+ 0x565e: "yan3", // 噞
+ 0x565f: "ying4", // 噟
+ 0x5660: "da1", // 噠
+ 0x5661: "zhan1", // 噡
+ 0x5662: "o1", // 噢
+ 0x5663: "zhou4", // 噣
+ 0x5664: "jin4", // 噤
+ 0x5665: "nong2", // 噥
+ 0x5666: "hui4", // 噦
+ 0x5667: "xie4", // 噧
+ 0x5668: "qi4", // 器
+ 0x5669: "e4", // 噩
+ 0x566a: "zao4", // 噪
+ 0x566b: "yi1", // 噫
+ 0x566c: "shi4", // 噬
+ 0x566d: "jiao4", // 噭
+ 0x566e: "yuan4", // 噮
+ 0x566f: "ai1", // 噯
+ 0x5670: "yong1", // 噰
+ 0x5671: "jue2", // 噱
+ 0x5672: "kuai4", // 噲
+ 0x5673: "yu3", // 噳
+ 0x5674: "pen1", // 噴
+ 0x5675: "dao4", // 噵
+ 0x5676: "ga2", // 噶
+ 0x5677: "hm5", // 噷
+ 0x5678: "dun1", // 噸
+ 0x5679: "dang1", // 噹
+ 0x567a: "xin1", // 噺
+ 0x567b: "sai1", // 噻
+ 0x567c: "pi1", // 噼
+ 0x567d: "pi3", // 噽
+ 0x567e: "yin1", // 噾
+ 0x567f: "zui3", // 噿
+ 0x5680: "ning2", // 嚀
+ 0x5681: "di2", // 嚁
+ 0x5682: "lan4", // 嚂
+ 0x5683: "ta1", // 嚃
+ 0x5684: "huo1", // 嚄
+ 0x5685: "ru2", // 嚅
+ 0x5686: "hao1", // 嚆
+ 0x5687: "xia4", // 嚇
+ 0x5688: "ye4", // 嚈
+ 0x5689: "duo1", // 嚉
+ 0x568a: "pi4", // 嚊
+ 0x568b: "chou2", // 嚋
+ 0x568c: "ji4", // 嚌
+ 0x568d: "jin4", // 嚍
+ 0x568e: "hao2", // 嚎
+ 0x568f: "ti4", // 嚏
+ 0x5690: "chang2", // 嚐
+ 0x5691: "xun1", // 嚑
+ 0x5692: "me1", // 嚒
+ 0x5693: "ca1", // 嚓
+ 0x5694: "ti4", // 嚔
+ 0x5695: "lu3", // 嚕
+ 0x5696: "hui4", // 嚖
+ 0x5697: "bo2", // 嚗
+ 0x5698: "you1", // 嚘
+ 0x5699: "nie4", // 嚙
+ 0x569a: "yin2", // 嚚
+ 0x569b: "hu4", // 嚛
+ 0x569c: "me5", // 嚜
+ 0x569d: "hong1", // 嚝
+ 0x569e: "zhe2", // 嚞
+ 0x569f: "li2", // 嚟
+ 0x56a0: "liu2", // 嚠
+ 0x56a1: "hai5", // 嚡
+ 0x56a2: "nang2", // 嚢
+ 0x56a3: "xiao1", // 嚣
+ 0x56a4: "mo2", // 嚤
+ 0x56a5: "yan4", // 嚥
+ 0x56a6: "li4", // 嚦
+ 0x56a7: "lu2", // 嚧
+ 0x56a8: "long2", // 嚨
+ 0x56a9: "mo2", // 嚩
+ 0x56aa: "dan4", // 嚪
+ 0x56ab: "chen4", // 嚫
+ 0x56ac: "pin2", // 嚬
+ 0x56ad: "pi3", // 嚭
+ 0x56ae: "xiang4", // 嚮
+ 0x56af: "huo4", // 嚯
+ 0x56b0: "mo2", // 嚰
+ 0x56b1: "xi4", // 嚱
+ 0x56b2: "duo3", // 嚲
+ 0x56b3: "ku4", // 嚳
+ 0x56b4: "yan2", // 嚴
+ 0x56b5: "chan2", // 嚵
+ 0x56b6: "ying1", // 嚶
+ 0x56b7: "rang3", // 嚷
+ 0x56b8: "dian3", // 嚸
+ 0x56b9: "la2", // 嚹
+ 0x56ba: "ta4", // 嚺
+ 0x56bb: "xiao1", // 嚻
+ 0x56bc: "jue2", // 嚼
+ 0x56bd: "chuo4", // 嚽
+ 0x56be: "huan1", // 嚾
+ 0x56bf: "huo4", // 嚿
+ 0x56c0: "zhuan4", // 囀
+ 0x56c1: "nie4", // 囁
+ 0x56c2: "xiao1", // 囂
+ 0x56c3: "ca4", // 囃
+ 0x56c4: "li2", // 囄
+ 0x56c5: "chan3", // 囅
+ 0x56c6: "chai4", // 囆
+ 0x56c7: "li4", // 囇
+ 0x56c8: "yi4", // 囈
+ 0x56c9: "luo1", // 囉
+ 0x56ca: "nang2", // 囊
+ 0x56cb: "za2", // 囋
+ 0x56cc: "su1", // 囌
+ 0x56cd: "xi3", // 囍
+ 0x56ce: "zen5", // 囎
+ 0x56cf: "jian1", // 囏
+ 0x56d0: "za2", // 囐
+ 0x56d1: "zhu3", // 囑
+ 0x56d2: "lan2", // 囒
+ 0x56d3: "nie4", // 囓
+ 0x56d4: "nang1", // 囔
+ 0x56d5: "lan3", // 囕
+ 0x56d6: "lo5", // 囖
+ 0x56d7: "wei2", // 囗
+ 0x56d8: "hui2", // 囘
+ 0x56d9: "yin1", // 囙
+ 0x56da: "qiu2", // 囚
+ 0x56db: "si4", // 四
+ 0x56dc: "nin2", // 囜
+ 0x56dd: "jian3", // 囝
+ 0x56de: "hui2", // 回
+ 0x56df: "xin4", // 囟
+ 0x56e0: "yin1", // 因
+ 0x56e1: "nan1", // 囡
+ 0x56e2: "tuan2", // 团
+ 0x56e3: "tuan2", // 団
+ 0x56e4: "dun4", // 囤
+ 0x56e5: "kang4", // 囥
+ 0x56e6: "yuan1", // 囦
+ 0x56e7: "jiong3", // 囧
+ 0x56e8: "pian1", // 囨
+ 0x56e9: "yun2", // 囩
+ 0x56ea: "cong1", // 囪
+ 0x56eb: "hu2", // 囫
+ 0x56ec: "hui2", // 囬
+ 0x56ed: "yuan2", // 园
+ 0x56ee: "e2", // 囮
+ 0x56ef: "guo2", // 囯
+ 0x56f0: "kun4", // 困
+ 0x56f1: "cong1", // 囱
+ 0x56f2: "tong1", // 囲
+ 0x56f3: "tu2", // 図
+ 0x56f4: "wei2", // 围
+ 0x56f5: "lun2", // 囵
+ 0x56f6: "guo2", // 囶
+ 0x56f7: "qun1", // 囷
+ 0x56f8: "ri4", // 囸
+ 0x56f9: "ling2", // 囹
+ 0x56fa: "gu4", // 固
+ 0x56fb: "guo2", // 囻
+ 0x56fc: "tai1", // 囼
+ 0x56fd: "guo2", // 国
+ 0x56fe: "tu2", // 图
+ 0x56ff: "you4", // 囿
+ 0x5700: "guo2", // 圀
+ 0x5701: "yin2", // 圁
+ 0x5702: "hun4", // 圂
+ 0x5703: "pu3", // 圃
+ 0x5704: "yu3", // 圄
+ 0x5705: "han2", // 圅
+ 0x5706: "yuan2", // 圆
+ 0x5707: "lun2", // 圇
+ 0x5708: "quan1", // 圈
+ 0x5709: "yu3", // 圉
+ 0x570a: "qing1", // 圊
+ 0x570b: "guo2", // 國
+ 0x570c: "chuan2", // 圌
+ 0x570d: "wei2", // 圍
+ 0x570e: "yuan2", // 圎
+ 0x570f: "quan1", // 圏
+ 0x5710: "ku1", // 圐
+ 0x5711: "pu3", // 圑
+ 0x5712: "yuan2", // 園
+ 0x5713: "yuan2", // 圓
+ 0x5714: "ya4", // 圔
+ 0x5715: "tu2", // 圕
+ 0x5716: "tu2", // 圖
+ 0x5717: "tu2", // 圗
+ 0x5718: "tuan2", // 團
+ 0x5719: "lve4", // 圙
+ 0x571a: "hui4", // 圚
+ 0x571b: "yi4", // 圛
+ 0x571c: "huan2", // 圜
+ 0x571d: "luan2", // 圝
+ 0x571e: "luan2", // 圞
+ 0x571f: "tu3", // 土
+ 0x5720: "ya4", // 圠
+ 0x5721: "tu3", // 圡
+ 0x5722: "ting3", // 圢
+ 0x5723: "sheng4", // 圣
+ 0x5724: "pu2", // 圤
+ 0x5725: "lu4", // 圥
+ 0x5726: "kuai4", // 圦
+ 0x5727: "ya1", // 圧
+ 0x5728: "zai4", // 在
+ 0x5729: "wei2", // 圩
+ 0x572a: "ge1", // 圪
+ 0x572b: "yu4", // 圫
+ 0x572c: "wu1", // 圬
+ 0x572d: "gui1", // 圭
+ 0x572e: "pi3", // 圮
+ 0x572f: "yi2", // 圯
+ 0x5730: "de5", // 地
+ 0x5731: "qian1", // 圱
+ 0x5732: "qian1", // 圲
+ 0x5733: "zhen4", // 圳
+ 0x5734: "zhuo2", // 圴
+ 0x5735: "dang4", // 圵
+ 0x5736: "qia4", // 圶
+ 0x5737: "xia4", // 圷
+ 0x5738: "shan1", // 圸
+ 0x5739: "kuang4", // 圹
+ 0x573a: "chang3", // 场
+ 0x573b: "qi2", // 圻
+ 0x573c: "nie4", // 圼
+ 0x573d: "mo4", // 圽
+ 0x573e: "ji1", // 圾
+ 0x573f: "jia2", // 圿
+ 0x5740: "zhi3", // 址
+ 0x5741: "zhi3", // 坁
+ 0x5742: "ban3", // 坂
+ 0x5743: "xun1", // 坃
+ 0x5744: "yi4", // 坄
+ 0x5745: "qin3", // 坅
+ 0x5746: "mei2", // 坆
+ 0x5747: "jun1", // 均
+ 0x5748: "rong3", // 坈
+ 0x5749: "tun2", // 坉
+ 0x574a: "fang1", // 坊
+ 0x574b: "ben4", // 坋
+ 0x574c: "ben4", // 坌
+ 0x574d: "tan1", // 坍
+ 0x574e: "kan3", // 坎
+ 0x574f: "huai4", // 坏
+ 0x5750: "zuo4", // 坐
+ 0x5751: "keng1", // 坑
+ 0x5752: "bi4", // 坒
+ 0x5753: "jing3", // 坓
+ 0x5754: "di4", // 坔
+ 0x5755: "jing1", // 坕
+ 0x5756: "ji4", // 坖
+ 0x5757: "kuai4", // 块
+ 0x5758: "di3", // 坘
+ 0x5759: "jing1", // 坙
+ 0x575a: "jian1", // 坚
+ 0x575b: "tan2", // 坛
+ 0x575c: "li4", // 坜
+ 0x575d: "ba4", // 坝
+ 0x575e: "wu4", // 坞
+ 0x575f: "fen2", // 坟
+ 0x5760: "zhui4", // 坠
+ 0x5761: "po1", // 坡
+ 0x5762: "ban4", // 坢
+ 0x5763: "tang2", // 坣
+ 0x5764: "kun1", // 坤
+ 0x5765: "qu1", // 坥
+ 0x5766: "tan3", // 坦
+ 0x5767: "zhi1", // 坧
+ 0x5768: "tuo2", // 坨
+ 0x5769: "gan1", // 坩
+ 0x576a: "ping2", // 坪
+ 0x576b: "dian4", // 坫
+ 0x576c: "gua4", // 坬
+ 0x576d: "ni2", // 坭
+ 0x576e: "tai2", // 坮
+ 0x576f: "pi1", // 坯
+ 0x5770: "jiong1", // 坰
+ 0x5771: "yang3", // 坱
+ 0x5772: "fo2", // 坲
+ 0x5773: "ao4", // 坳
+ 0x5774: "lu4", // 坴
+ 0x5775: "qiu1", // 坵
+ 0x5776: "mu3", // 坶
+ 0x5777: "ke3", // 坷
+ 0x5778: "gou4", // 坸
+ 0x5779: "xue4", // 坹
+ 0x577a: "ba2", // 坺
+ 0x577b: "chi2", // 坻
+ 0x577c: "che4", // 坼
+ 0x577d: "ling2", // 坽
+ 0x577e: "zhu4", // 坾
+ 0x577f: "fu4", // 坿
+ 0x5780: "hu1", // 垀
+ 0x5781: "zhi4", // 垁
+ 0x5782: "chui2", // 垂
+ 0x5783: "la1", // 垃
+ 0x5784: "long3", // 垄
+ 0x5785: "long3", // 垅
+ 0x5786: "lu2", // 垆
+ 0x5787: "ao4", // 垇
+ 0x5788: "dai4", // 垈
+ 0x5789: "pao2", // 垉
+ 0x578a: "min5", // 垊
+ 0x578b: "xing2", // 型
+ 0x578c: "dong4", // 垌
+ 0x578d: "ji4", // 垍
+ 0x578e: "he4", // 垎
+ 0x578f: "lv4", // 垏
+ 0x5790: "ci2", // 垐
+ 0x5791: "chi3", // 垑
+ 0x5792: "lei3", // 垒
+ 0x5793: "gai1", // 垓
+ 0x5794: "yin1", // 垔
+ 0x5795: "hou4", // 垕
+ 0x5796: "dui1", // 垖
+ 0x5797: "zhao4", // 垗
+ 0x5798: "fu2", // 垘
+ 0x5799: "guang1", // 垙
+ 0x579a: "yao2", // 垚
+ 0x579b: "duo3", // 垛
+ 0x579c: "duo3", // 垜
+ 0x579d: "gui3", // 垝
+ 0x579e: "cha2", // 垞
+ 0x579f: "yang2", // 垟
+ 0x57a0: "yin2", // 垠
+ 0x57a1: "fa2", // 垡
+ 0x57a2: "gou4", // 垢
+ 0x57a3: "yuan2", // 垣
+ 0x57a4: "die2", // 垤
+ 0x57a5: "xie2", // 垥
+ 0x57a6: "ken3", // 垦
+ 0x57a7: "shang3", // 垧
+ 0x57a8: "shou3", // 垨
+ 0x57a9: "e4", // 垩
+ 0x57aa: "bing4", // 垪
+ 0x57ab: "dian4", // 垫
+ 0x57ac: "hong2", // 垬
+ 0x57ad: "ya1", // 垭
+ 0x57ae: "kua3", // 垮
+ 0x57af: "da5", // 垯
+ 0x57b0: "ka3", // 垰
+ 0x57b1: "dang4", // 垱
+ 0x57b2: "kai3", // 垲
+ 0x57b3: "hang2", // 垳
+ 0x57b4: "nao3", // 垴
+ 0x57b5: "an3", // 垵
+ 0x57b6: "xing1", // 垶
+ 0x57b7: "xian4", // 垷
+ 0x57b8: "yuan4", // 垸
+ 0x57b9: "bang1", // 垹
+ 0x57ba: "fu1", // 垺
+ 0x57bb: "ba4", // 垻
+ 0x57bc: "yi4", // 垼
+ 0x57bd: "yin4", // 垽
+ 0x57be: "han4", // 垾
+ 0x57bf: "xu4", // 垿
+ 0x57c0: "chui2", // 埀
+ 0x57c1: "qin2", // 埁
+ 0x57c2: "geng3", // 埂
+ 0x57c3: "ai1", // 埃
+ 0x57c4: "beng3", // 埄
+ 0x57c5: "fang2", // 埅
+ 0x57c6: "que4", // 埆
+ 0x57c7: "yong3", // 埇
+ 0x57c8: "jun4", // 埈
+ 0x57c9: "jia1", // 埉
+ 0x57ca: "di4", // 埊
+ 0x57cb: "mai2", // 埋
+ 0x57cc: "lang4", // 埌
+ 0x57cd: "juan3", // 埍
+ 0x57ce: "cheng2", // 城
+ 0x57cf: "shan1", // 埏
+ 0x57d0: "jin1", // 埐
+ 0x57d1: "zhe2", // 埑
+ 0x57d2: "lie4", // 埒
+ 0x57d3: "lie4", // 埓
+ 0x57d4: "bu4", // 埔
+ 0x57d5: "cheng2", // 埕
+ 0x57d6: "hua1", // 埖
+ 0x57d7: "bu4", // 埗
+ 0x57d8: "shi2", // 埘
+ 0x57d9: "xun1", // 埙
+ 0x57da: "guo1", // 埚
+ 0x57db: "jiong1", // 埛
+ 0x57dc: "ye3", // 埜
+ 0x57dd: "nian4", // 埝
+ 0x57de: "di1", // 埞
+ 0x57df: "yu4", // 域
+ 0x57e0: "bu4", // 埠
+ 0x57e1: "ya1", // 埡
+ 0x57e2: "quan2", // 埢
+ 0x57e3: "sui4", // 埣
+ 0x57e4: "pi2", // 埤
+ 0x57e5: "qing1", // 埥
+ 0x57e6: "wan3", // 埦
+ 0x57e7: "ju4", // 埧
+ 0x57e8: "lun3", // 埨
+ 0x57e9: "zheng1", // 埩
+ 0x57ea: "kong1", // 埪
+ 0x57eb: "chong3", // 埫
+ 0x57ec: "dong1", // 埬
+ 0x57ed: "dai4", // 埭
+ 0x57ee: "tan4", // 埮
+ 0x57ef: "an3", // 埯
+ 0x57f0: "cai4", // 埰
+ 0x57f1: "chu4", // 埱
+ 0x57f2: "beng3", // 埲
+ 0x57f3: "kan3", // 埳
+ 0x57f4: "zhi2", // 埴
+ 0x57f5: "duo3", // 埵
+ 0x57f6: "yi4", // 埶
+ 0x57f7: "zhi2", // 執
+ 0x57f8: "yi4", // 埸
+ 0x57f9: "pei2", // 培
+ 0x57fa: "ji1", // 基
+ 0x57fb: "zhun3", // 埻
+ 0x57fc: "qi2", // 埼
+ 0x57fd: "sao4", // 埽
+ 0x57fe: "ju4", // 埾
+ 0x57ff: "ni2", // 埿
+ 0x5800: "ku1", // 堀
+ 0x5801: "ke4", // 堁
+ 0x5802: "tang2", // 堂
+ 0x5803: "kun1", // 堃
+ 0x5804: "ni4", // 堄
+ 0x5805: "jian1", // 堅
+ 0x5806: "dui1", // 堆
+ 0x5807: "jin3", // 堇
+ 0x5808: "gang1", // 堈
+ 0x5809: "yu4", // 堉
+ 0x580a: "e4", // 堊
+ 0x580b: "peng2", // 堋
+ 0x580c: "gu4", // 堌
+ 0x580d: "tu4", // 堍
+ 0x580e: "leng4", // 堎
+ 0x580f: "fang5", // 堏
+ 0x5810: "ya2", // 堐
+ 0x5811: "qian4", // 堑
+ 0x5812: "kun1", // 堒
+ 0x5813: "an4", // 堓
+ 0x5814: "shen1", // 堔
+ 0x5815: "duo4", // 堕
+ 0x5816: "nao3", // 堖
+ 0x5817: "tu1", // 堗
+ 0x5818: "cheng2", // 堘
+ 0x5819: "yin1", // 堙
+ 0x581a: "hun2", // 堚
+ 0x581b: "bi4", // 堛
+ 0x581c: "lian4", // 堜
+ 0x581d: "guo1", // 堝
+ 0x581e: "die2", // 堞
+ 0x581f: "zhuan4", // 堟
+ 0x5820: "hou4", // 堠
+ 0x5821: "bao3", // 堡
+ 0x5822: "bao3", // 堢
+ 0x5823: "yu2", // 堣
+ 0x5824: "di1", // 堤
+ 0x5825: "mao2", // 堥
+ 0x5826: "jie1", // 堦
+ 0x5827: "ruan2", // 堧
+ 0x5828: "ye4", // 堨
+ 0x5829: "geng4", // 堩
+ 0x582a: "kan1", // 堪
+ 0x582b: "zong1", // 堫
+ 0x582c: "yu2", // 堬
+ 0x582d: "huang2", // 堭
+ 0x582e: "e4", // 堮
+ 0x582f: "yao2", // 堯
+ 0x5830: "yan4", // 堰
+ 0x5831: "bao4", // 報
+ 0x5832: "ci2", // 堲
+ 0x5833: "mei2", // 堳
+ 0x5834: "chang3", // 場
+ 0x5835: "du3", // 堵
+ 0x5836: "tuo2", // 堶
+ 0x5837: "yin4", // 堷
+ 0x5838: "feng2", // 堸
+ 0x5839: "zhong4", // 堹
+ 0x583a: "jie4", // 堺
+ 0x583b: "jin1", // 堻
+ 0x583c: "heng4", // 堼
+ 0x583d: "gang1", // 堽
+ 0x583e: "chun1", // 堾
+ 0x583f: "jian3", // 堿
+ 0x5840: "ping2", // 塀
+ 0x5841: "lei3", // 塁
+ 0x5842: "xiang4", // 塂
+ 0x5843: "huang1", // 塃
+ 0x5844: "leng2", // 塄
+ 0x5845: "duan4", // 塅
+ 0x5846: "wan1", // 塆
+ 0x5847: "xuan1", // 塇
+ 0x5848: "ji4", // 塈
+ 0x5849: "ji2", // 塉
+ 0x584a: "kuai4", // 塊
+ 0x584b: "ying2", // 塋
+ 0x584c: "ta1", // 塌
+ 0x584d: "cheng2", // 塍
+ 0x584e: "yong3", // 塎
+ 0x584f: "kai3", // 塏
+ 0x5850: "su4", // 塐
+ 0x5851: "su4", // 塑
+ 0x5852: "shi2", // 塒
+ 0x5853: "mi4", // 塓
+ 0x5854: "ta3", // 塔
+ 0x5855: "weng3", // 塕
+ 0x5856: "cheng2", // 塖
+ 0x5857: "tu2", // 塗
+ 0x5858: "tang2", // 塘
+ 0x5859: "que4", // 塙
+ 0x585a: "zhong3", // 塚
+ 0x585b: "li4", // 塛
+ 0x585c: "zhong3", // 塜
+ 0x585d: "bang4", // 塝
+ 0x585e: "sai1", // 塞
+ 0x585f: "zang4", // 塟
+ 0x5860: "dui1", // 塠
+ 0x5861: "tian2", // 塡
+ 0x5862: "wu4", // 塢
+ 0x5863: "zheng4", // 塣
+ 0x5864: "xun1", // 塤
+ 0x5865: "ge2", // 塥
+ 0x5866: "zhen4", // 塦
+ 0x5867: "ai4", // 塧
+ 0x5868: "gong1", // 塨
+ 0x5869: "yan2", // 塩
+ 0x586a: "kan3", // 塪
+ 0x586b: "tian2", // 填
+ 0x586c: "yuan2", // 塬
+ 0x586d: "wen1", // 塭
+ 0x586e: "xie4", // 塮
+ 0x586f: "liu4", // 塯
+ 0x5870: "hai3", // 塰
+ 0x5871: "lang3", // 塱
+ 0x5872: "chang2", // 塲
+ 0x5873: "peng2", // 塳
+ 0x5874: "beng4", // 塴
+ 0x5875: "chen2", // 塵
+ 0x5876: "lu4", // 塶
+ 0x5877: "lu3", // 塷
+ 0x5878: "ou1", // 塸
+ 0x5879: "qian4", // 塹
+ 0x587a: "mei2", // 塺
+ 0x587b: "mo4", // 塻
+ 0x587c: "zhuan1", // 塼
+ 0x587d: "shuang3", // 塽
+ 0x587e: "shu2", // 塾
+ 0x587f: "lou3", // 塿
+ 0x5880: "chi2", // 墀
+ 0x5881: "man4", // 墁
+ 0x5882: "biao1", // 墂
+ 0x5883: "jing4", // 境
+ 0x5884: "ce4", // 墄
+ 0x5885: "shu4", // 墅
+ 0x5886: "zhi4", // 墆
+ 0x5887: "zhang4", // 墇
+ 0x5888: "kan4", // 墈
+ 0x5889: "yong1", // 墉
+ 0x588a: "dian4", // 墊
+ 0x588b: "chen3", // 墋
+ 0x588c: "zhi2", // 墌
+ 0x588d: "xi4", // 墍
+ 0x588e: "guo1", // 墎
+ 0x588f: "qiang3", // 墏
+ 0x5890: "jin4", // 墐
+ 0x5891: "di4", // 墑
+ 0x5892: "shang1", // 墒
+ 0x5893: "mu4", // 墓
+ 0x5894: "cui1", // 墔
+ 0x5895: "yan4", // 墕
+ 0x5896: "ta3", // 墖
+ 0x5897: "zeng1", // 増
+ 0x5898: "qian2", // 墘
+ 0x5899: "qiang2", // 墙
+ 0x589a: "liang2", // 墚
+ 0x589b: "wei4", // 墛
+ 0x589c: "zhui4", // 墜
+ 0x589d: "qiao1", // 墝
+ 0x589e: "zeng1", // 增
+ 0x589f: "xu1", // 墟
+ 0x58a0: "shan4", // 墠
+ 0x58a1: "shan4", // 墡
+ 0x58a2: "ba2", // 墢
+ 0x58a3: "pu2", // 墣
+ 0x58a4: "kuai4", // 墤
+ 0x58a5: "dong3", // 墥
+ 0x58a6: "fan2", // 墦
+ 0x58a7: "que4", // 墧
+ 0x58a8: "mo4", // 墨
+ 0x58a9: "dun1", // 墩
+ 0x58aa: "dun1", // 墪
+ 0x58ab: "zun1", // 墫
+ 0x58ac: "di4", // 墬
+ 0x58ad: "sheng4", // 墭
+ 0x58ae: "duo4", // 墮
+ 0x58af: "duo4", // 墯
+ 0x58b0: "tan2", // 墰
+ 0x58b1: "deng4", // 墱
+ 0x58b2: "mu2", // 墲
+ 0x58b3: "fen2", // 墳
+ 0x58b4: "huang2", // 墴
+ 0x58b5: "tan2", // 墵
+ 0x58b6: "da5", // 墶
+ 0x58b7: "ye4", // 墷
+ 0x58b8: "zhu4", // 墸
+ 0x58b9: "jian4", // 墹
+ 0x58ba: "ao4", // 墺
+ 0x58bb: "qiang2", // 墻
+ 0x58bc: "ji1", // 墼
+ 0x58bd: "qiao1", // 墽
+ 0x58be: "ken3", // 墾
+ 0x58bf: "yi4", // 墿
+ 0x58c0: "pi2", // 壀
+ 0x58c1: "bi4", // 壁
+ 0x58c2: "dian4", // 壂
+ 0x58c3: "jiang1", // 壃
+ 0x58c4: "ye3", // 壄
+ 0x58c5: "yong1", // 壅
+ 0x58c6: "xue2", // 壆
+ 0x58c7: "tan2", // 壇
+ 0x58c8: "lan3", // 壈
+ 0x58c9: "ju4", // 壉
+ 0x58ca: "huai4", // 壊
+ 0x58cb: "dang4", // 壋
+ 0x58cc: "rang3", // 壌
+ 0x58cd: "qian4", // 壍
+ 0x58ce: "xun1", // 壎
+ 0x58cf: "xian4", // 壏
+ 0x58d0: "xi3", // 壐
+ 0x58d1: "he4", // 壑
+ 0x58d2: "ai4", // 壒
+ 0x58d3: "ya1", // 壓
+ 0x58d4: "dao3", // 壔
+ 0x58d5: "hao2", // 壕
+ 0x58d6: "ruan2", // 壖
+ 0x58d7: "jin4", // 壗
+ 0x58d8: "lei3", // 壘
+ 0x58d9: "kuang4", // 壙
+ 0x58da: "lu2", // 壚
+ 0x58db: "yan2", // 壛
+ 0x58dc: "tan2", // 壜
+ 0x58dd: "wei3", // 壝
+ 0x58de: "huai4", // 壞
+ 0x58df: "long3", // 壟
+ 0x58e0: "long3", // 壠
+ 0x58e1: "rui4", // 壡
+ 0x58e2: "li4", // 壢
+ 0x58e3: "lin2", // 壣
+ 0x58e4: "rang3", // 壤
+ 0x58e5: "chan2", // 壥
+ 0x58e6: "xun1", // 壦
+ 0x58e7: "yan2", // 壧
+ 0x58e8: "lei2", // 壨
+ 0x58e9: "ba4", // 壩
+ 0x58ea: "wan1", // 壪
+ 0x58eb: "shi4", // 士
+ 0x58ec: "ren2", // 壬
+ 0x58ed: "san5", // 壭
+ 0x58ee: "zhuang4", // 壮
+ 0x58ef: "zhuang4", // 壯
+ 0x58f0: "sheng1", // 声
+ 0x58f1: "yi1", // 壱
+ 0x58f2: "mai4", // 売
+ 0x58f3: "ke2", // 壳
+ 0x58f4: "zhu4", // 壴
+ 0x58f5: "zhuang4", // 壵
+ 0x58f6: "hu2", // 壶
+ 0x58f7: "hu2", // 壷
+ 0x58f8: "kun3", // 壸
+ 0x58f9: "yi1", // 壹
+ 0x58fa: "hu2", // 壺
+ 0x58fb: "xu4", // 壻
+ 0x58fc: "kun3", // 壼
+ 0x58fd: "shou4", // 壽
+ 0x58fe: "mang3", // 壾
+ 0x58ff: "zun1", // 壿
+ 0x5900: "shou4", // 夀
+ 0x5901: "yi1", // 夁
+ 0x5902: "zhi3", // 夂
+ 0x5903: "gu3", // 夃
+ 0x5904: "chu4", // 处
+ 0x5905: "jiang4", // 夅
+ 0x5906: "feng2", // 夆
+ 0x5907: "bei4", // 备
+ 0x5908: "zhai1", // 夈
+ 0x5909: "bian4", // 変
+ 0x590a: "sui1", // 夊
+ 0x590b: "qun1", // 夋
+ 0x590c: "ling2", // 夌
+ 0x590d: "fu4", // 复
+ 0x590e: "cuo4", // 夎
+ 0x590f: "xia4", // 夏
+ 0x5910: "xiong4", // 夐
+ 0x5911: "xie4", // 夑
+ 0x5912: "nao2", // 夒
+ 0x5913: "xia4", // 夓
+ 0x5914: "kui2", // 夔
+ 0x5915: "xi1", // 夕
+ 0x5916: "wai4", // 外
+ 0x5917: "yuan4", // 夗
+ 0x5918: "mao3", // 夘
+ 0x5919: "su4", // 夙
+ 0x591a: "duo1", // 多
+ 0x591b: "duo1", // 夛
+ 0x591c: "ye4", // 夜
+ 0x591d: "qing2", // 夝
+ 0x591e: "wai4", // 夞
+ 0x591f: "gou4", // 够
+ 0x5920: "gou4", // 夠
+ 0x5921: "qi4", // 夡
+ 0x5922: "meng4", // 夢
+ 0x5923: "meng4", // 夣
+ 0x5924: "yin2", // 夤
+ 0x5925: "huo3", // 夥
+ 0x5926: "chen3", // 夦
+ 0x5927: "da4", // 大
+ 0x5928: "ze4", // 夨
+ 0x5929: "tian1", // 天
+ 0x592a: "tai4", // 太
+ 0x592b: "fu1", // 夫
+ 0x592c: "guai4", // 夬
+ 0x592d: "yao1", // 夭
+ 0x592e: "yang1", // 央
+ 0x592f: "hang1", // 夯
+ 0x5930: "gao3", // 夰
+ 0x5931: "shi1", // 失
+ 0x5932: "tao1", // 夲
+ 0x5933: "tai4", // 夳
+ 0x5934: "tou2", // 头
+ 0x5935: "yan3", // 夵
+ 0x5936: "bi3", // 夶
+ 0x5937: "yi2", // 夷
+ 0x5938: "kua1", // 夸
+ 0x5939: "jia1", // 夹
+ 0x593a: "duo2", // 夺
+ 0x593b: "hua4", // 夻
+ 0x593c: "kuang3", // 夼
+ 0x593d: "yun3", // 夽
+ 0x593e: "jia1", // 夾
+ 0x593f: "ba1", // 夿
+ 0x5940: "en1", // 奀
+ 0x5941: "lian2", // 奁
+ 0x5942: "huan4", // 奂
+ 0x5943: "di1", // 奃
+ 0x5944: "yan3", // 奄
+ 0x5945: "pao4", // 奅
+ 0x5946: "juan4", // 奆
+ 0x5947: "qi2", // 奇
+ 0x5948: "nai4", // 奈
+ 0x5949: "feng4", // 奉
+ 0x594a: "xie2", // 奊
+ 0x594b: "fen4", // 奋
+ 0x594c: "dian3", // 奌
+ 0x594d: "quan1", // 奍
+ 0x594e: "kui2", // 奎
+ 0x594f: "zou4", // 奏
+ 0x5950: "huan4", // 奐
+ 0x5951: "qi4", // 契
+ 0x5952: "kai1", // 奒
+ 0x5953: "zha1", // 奓
+ 0x5954: "ben1", // 奔
+ 0x5955: "yi4", // 奕
+ 0x5956: "jiang3", // 奖
+ 0x5957: "tao4", // 套
+ 0x5958: "zang4", // 奘
+ 0x5959: "ben3", // 奙
+ 0x595a: "xi1", // 奚
+ 0x595b: "huang3", // 奛
+ 0x595c: "fei3", // 奜
+ 0x595d: "diao1", // 奝
+ 0x595e: "xun4", // 奞
+ 0x595f: "beng1", // 奟
+ 0x5960: "dian4", // 奠
+ 0x5961: "ao4", // 奡
+ 0x5962: "she1", // 奢
+ 0x5963: "weng3", // 奣
+ 0x5964: "ha3", // 奤
+ 0x5965: "ao4", // 奥
+ 0x5966: "wu4", // 奦
+ 0x5967: "ao4", // 奧
+ 0x5968: "jiang3", // 奨
+ 0x5969: "lian2", // 奩
+ 0x596a: "duo2", // 奪
+ 0x596b: "yun1", // 奫
+ 0x596c: "jiang3", // 奬
+ 0x596d: "shi4", // 奭
+ 0x596e: "fen4", // 奮
+ 0x596f: "huo4", // 奯
+ 0x5970: "bi4", // 奰
+ 0x5971: "luan2", // 奱
+ 0x5972: "duo3", // 奲
+ 0x5973: "nv3", // 女
+ 0x5974: "nu2", // 奴
+ 0x5975: "ding3", // 奵
+ 0x5976: "nai3", // 奶
+ 0x5977: "qian1", // 奷
+ 0x5978: "jian1", // 奸
+ 0x5979: "ta1", // 她
+ 0x597a: "jiu3", // 奺
+ 0x597b: "nuan2", // 奻
+ 0x597c: "cha4", // 奼
+ 0x597d: "hao3", // 好
+ 0x597e: "xian1", // 奾
+ 0x597f: "fan4", // 奿
+ 0x5980: "ji3", // 妀
+ 0x5981: "shuo4", // 妁
+ 0x5982: "ru2", // 如
+ 0x5983: "fei1", // 妃
+ 0x5984: "wang4", // 妄
+ 0x5985: "hong2", // 妅
+ 0x5986: "zhuang1", // 妆
+ 0x5987: "fu4", // 妇
+ 0x5988: "ma1", // 妈
+ 0x5989: "dan1", // 妉
+ 0x598a: "ren4", // 妊
+ 0x598b: "fu1", // 妋
+ 0x598c: "jing4", // 妌
+ 0x598d: "yan2", // 妍
+ 0x598e: "hai4", // 妎
+ 0x598f: "wen4", // 妏
+ 0x5990: "zhong1", // 妐
+ 0x5991: "pa1", // 妑
+ 0x5992: "du4", // 妒
+ 0x5993: "ji4", // 妓
+ 0x5994: "keng1", // 妔
+ 0x5995: "zhong4", // 妕
+ 0x5996: "yao1", // 妖
+ 0x5997: "jin4", // 妗
+ 0x5998: "yun2", // 妘
+ 0x5999: "miao4", // 妙
+ 0x599a: "fou3", // 妚
+ 0x599b: "chi1", // 妛
+ 0x599c: "yue4", // 妜
+ 0x599d: "zhuang1", // 妝
+ 0x599e: "niu1", // 妞
+ 0x599f: "yan4", // 妟
+ 0x59a0: "na4", // 妠
+ 0x59a1: "xin1", // 妡
+ 0x59a2: "fen2", // 妢
+ 0x59a3: "bi3", // 妣
+ 0x59a4: "yu2", // 妤
+ 0x59a5: "tuo3", // 妥
+ 0x59a6: "feng1", // 妦
+ 0x59a7: "wan4", // 妧
+ 0x59a8: "fang2", // 妨
+ 0x59a9: "wu3", // 妩
+ 0x59aa: "yu4", // 妪
+ 0x59ab: "gui1", // 妫
+ 0x59ac: "du4", // 妬
+ 0x59ad: "ba2", // 妭
+ 0x59ae: "ni1", // 妮
+ 0x59af: "zhou2", // 妯
+ 0x59b0: "zhuo2", // 妰
+ 0x59b1: "zhao1", // 妱
+ 0x59b2: "da2", // 妲
+ 0x59b3: "nai3", // 妳
+ 0x59b4: "yuan4", // 妴
+ 0x59b5: "tou3", // 妵
+ 0x59b6: "xian2", // 妶
+ 0x59b7: "zhi2", // 妷
+ 0x59b8: "e1", // 妸
+ 0x59b9: "mei4", // 妹
+ 0x59ba: "mo4", // 妺
+ 0x59bb: "qi1", // 妻
+ 0x59bc: "bi4", // 妼
+ 0x59bd: "shen1", // 妽
+ 0x59be: "qie4", // 妾
+ 0x59bf: "e1", // 妿
+ 0x59c0: "he2", // 姀
+ 0x59c1: "xu3", // 姁
+ 0x59c2: "fa2", // 姂
+ 0x59c3: "zheng1", // 姃
+ 0x59c4: "min2", // 姄
+ 0x59c5: "ban4", // 姅
+ 0x59c6: "mu3", // 姆
+ 0x59c7: "fu1", // 姇
+ 0x59c8: "ling2", // 姈
+ 0x59c9: "zi3", // 姉
+ 0x59ca: "zi3", // 姊
+ 0x59cb: "shi3", // 始
+ 0x59cc: "ran3", // 姌
+ 0x59cd: "shan1", // 姍
+ 0x59ce: "yang1", // 姎
+ 0x59cf: "man2", // 姏
+ 0x59d0: "jie3", // 姐
+ 0x59d1: "gu1", // 姑
+ 0x59d2: "si4", // 姒
+ 0x59d3: "xing4", // 姓
+ 0x59d4: "wei3", // 委
+ 0x59d5: "zi1", // 姕
+ 0x59d6: "ju4", // 姖
+ 0x59d7: "shan1", // 姗
+ 0x59d8: "pin1", // 姘
+ 0x59d9: "ren4", // 姙
+ 0x59da: "yao2", // 姚
+ 0x59db: "dong4", // 姛
+ 0x59dc: "jiang1", // 姜
+ 0x59dd: "shu1", // 姝
+ 0x59de: "ji2", // 姞
+ 0x59df: "gai1", // 姟
+ 0x59e0: "xiang4", // 姠
+ 0x59e1: "hua2", // 姡
+ 0x59e2: "juan1", // 姢
+ 0x59e3: "jiao1", // 姣
+ 0x59e4: "gou4", // 姤
+ 0x59e5: "lao3", // 姥
+ 0x59e6: "jian1", // 姦
+ 0x59e7: "jian1", // 姧
+ 0x59e8: "yi2", // 姨
+ 0x59e9: "nian4", // 姩
+ 0x59ea: "zhi2", // 姪
+ 0x59eb: "ji1", // 姫
+ 0x59ec: "ji1", // 姬
+ 0x59ed: "xian4", // 姭
+ 0x59ee: "heng2", // 姮
+ 0x59ef: "guang1", // 姯
+ 0x59f0: "jun1", // 姰
+ 0x59f1: "kua1", // 姱
+ 0x59f2: "yan4", // 姲
+ 0x59f3: "ming3", // 姳
+ 0x59f4: "lie4", // 姴
+ 0x59f5: "pei4", // 姵
+ 0x59f6: "e4", // 姶
+ 0x59f7: "you4", // 姷
+ 0x59f8: "yan2", // 姸
+ 0x59f9: "cha4", // 姹
+ 0x59fa: "shen1", // 姺
+ 0x59fb: "yin1", // 姻
+ 0x59fc: "shi2", // 姼
+ 0x59fd: "gui3", // 姽
+ 0x59fe: "quan2", // 姾
+ 0x59ff: "zi1", // 姿
+ 0x5a00: "song1", // 娀
+ 0x5a01: "wei1", // 威
+ 0x5a02: "hong2", // 娂
+ 0x5a03: "wa2", // 娃
+ 0x5a04: "lou2", // 娄
+ 0x5a05: "ya4", // 娅
+ 0x5a06: "rao2", // 娆
+ 0x5a07: "jiao1", // 娇
+ 0x5a08: "luan2", // 娈
+ 0x5a09: "ping1", // 娉
+ 0x5a0a: "xian4", // 娊
+ 0x5a0b: "shao4", // 娋
+ 0x5a0c: "li3", // 娌
+ 0x5a0d: "cheng2", // 娍
+ 0x5a0e: "xie4", // 娎
+ 0x5a0f: "mang2", // 娏
+ 0x5a10: "fu1", // 娐
+ 0x5a11: "suo1", // 娑
+ 0x5a12: "mei2", // 娒
+ 0x5a13: "wei3", // 娓
+ 0x5a14: "ke4", // 娔
+ 0x5a15: "chuo4", // 娕
+ 0x5a16: "chuo4", // 娖
+ 0x5a17: "ting3", // 娗
+ 0x5a18: "niang2", // 娘
+ 0x5a19: "xing2", // 娙
+ 0x5a1a: "nan2", // 娚
+ 0x5a1b: "yu2", // 娛
+ 0x5a1c: "na4", // 娜
+ 0x5a1d: "pou1", // 娝
+ 0x5a1e: "nei3", // 娞
+ 0x5a1f: "juan1", // 娟
+ 0x5a20: "shen1", // 娠
+ 0x5a21: "zhi4", // 娡
+ 0x5a22: "han2", // 娢
+ 0x5a23: "di4", // 娣
+ 0x5a24: "zhuang1", // 娤
+ 0x5a25: "e2", // 娥
+ 0x5a26: "pin2", // 娦
+ 0x5a27: "tui4", // 娧
+ 0x5a28: "xian4", // 娨
+ 0x5a29: "mian3", // 娩
+ 0x5a2a: "wu2", // 娪
+ 0x5a2b: "yan2", // 娫
+ 0x5a2c: "wu3", // 娬
+ 0x5a2d: "ai1", // 娭
+ 0x5a2e: "yan2", // 娮
+ 0x5a2f: "yu2", // 娯
+ 0x5a30: "si4", // 娰
+ 0x5a31: "yu2", // 娱
+ 0x5a32: "wa1", // 娲
+ 0x5a33: "li4", // 娳
+ 0x5a34: "xian2", // 娴
+ 0x5a35: "ju1", // 娵
+ 0x5a36: "qu3", // 娶
+ 0x5a37: "zhui4", // 娷
+ 0x5a38: "qi1", // 娸
+ 0x5a39: "xian2", // 娹
+ 0x5a3a: "zhuo2", // 娺
+ 0x5a3b: "dong1", // 娻
+ 0x5a3c: "chang1", // 娼
+ 0x5a3d: "lu4", // 娽
+ 0x5a3e: "ai3", // 娾
+ 0x5a3f: "e1", // 娿
+ 0x5a40: "e1", // 婀
+ 0x5a41: "lou2", // 婁
+ 0x5a42: "mian2", // 婂
+ 0x5a43: "cong2", // 婃
+ 0x5a44: "pou3", // 婄
+ 0x5a45: "ju2", // 婅
+ 0x5a46: "po2", // 婆
+ 0x5a47: "cai1", // 婇
+ 0x5a48: "ling2", // 婈
+ 0x5a49: "wan3", // 婉
+ 0x5a4a: "biao3", // 婊
+ 0x5a4b: "xiao1", // 婋
+ 0x5a4c: "shu2", // 婌
+ 0x5a4d: "qi3", // 婍
+ 0x5a4e: "hui1", // 婎
+ 0x5a4f: "fan4", // 婏
+ 0x5a50: "wo3", // 婐
+ 0x5a51: "rui2", // 婑
+ 0x5a52: "tan2", // 婒
+ 0x5a53: "fei1", // 婓
+ 0x5a54: "fei1", // 婔
+ 0x5a55: "jie2", // 婕
+ 0x5a56: "tian1", // 婖
+ 0x5a57: "ni2", // 婗
+ 0x5a58: "quan2", // 婘
+ 0x5a59: "jing4", // 婙
+ 0x5a5a: "hun1", // 婚
+ 0x5a5b: "jing1", // 婛
+ 0x5a5c: "qian1", // 婜
+ 0x5a5d: "dian4", // 婝
+ 0x5a5e: "xing4", // 婞
+ 0x5a5f: "hu4", // 婟
+ 0x5a60: "wan1", // 婠
+ 0x5a61: "lai2", // 婡
+ 0x5a62: "bi4", // 婢
+ 0x5a63: "yin1", // 婣
+ 0x5a64: "chou1", // 婤
+ 0x5a65: "nao4", // 婥
+ 0x5a66: "fu4", // 婦
+ 0x5a67: "jing4", // 婧
+ 0x5a68: "lun2", // 婨
+ 0x5a69: "an4", // 婩
+ 0x5a6a: "lan2", // 婪
+ 0x5a6b: "kun1", // 婫
+ 0x5a6c: "yin2", // 婬
+ 0x5a6d: "ya4", // 婭
+ 0x5a6e: "ju1", // 婮
+ 0x5a6f: "li4", // 婯
+ 0x5a70: "dian3", // 婰
+ 0x5a71: "xian2", // 婱
+ 0x5a72: "hua1", // 婲
+ 0x5a73: "hua4", // 婳
+ 0x5a74: "ying1", // 婴
+ 0x5a75: "chan2", // 婵
+ 0x5a76: "shen3", // 婶
+ 0x5a77: "ting2", // 婷
+ 0x5a78: "dang4", // 婸
+ 0x5a79: "yao3", // 婹
+ 0x5a7a: "wu4", // 婺
+ 0x5a7b: "nan4", // 婻
+ 0x5a7c: "chuo4", // 婼
+ 0x5a7d: "jia3", // 婽
+ 0x5a7e: "tou1", // 婾
+ 0x5a7f: "xu4", // 婿
+ 0x5a80: "yu4", // 媀
+ 0x5a81: "wei2", // 媁
+ 0x5a82: "di4", // 媂
+ 0x5a83: "rou2", // 媃
+ 0x5a84: "mei3", // 媄
+ 0x5a85: "dan1", // 媅
+ 0x5a86: "ruan3", // 媆
+ 0x5a87: "qin1", // 媇
+ 0x5a88: "hui1", // 媈
+ 0x5a89: "wo4", // 媉
+ 0x5a8a: "qian2", // 媊
+ 0x5a8b: "chun1", // 媋
+ 0x5a8c: "miao2", // 媌
+ 0x5a8d: "fu4", // 媍
+ 0x5a8e: "jie3", // 媎
+ 0x5a8f: "duan1", // 媏
+ 0x5a90: "yi2", // 媐
+ 0x5a91: "zhong4", // 媑
+ 0x5a92: "mei2", // 媒
+ 0x5a93: "huang2", // 媓
+ 0x5a94: "mian2", // 媔
+ 0x5a95: "an1", // 媕
+ 0x5a96: "ying1", // 媖
+ 0x5a97: "xuan1", // 媗
+ 0x5a98: "jie1", // 媘
+ 0x5a99: "wei1", // 媙
+ 0x5a9a: "mei4", // 媚
+ 0x5a9b: "yuan4", // 媛
+ 0x5a9c: "zheng1", // 媜
+ 0x5a9d: "qiu1", // 媝
+ 0x5a9e: "shi4", // 媞
+ 0x5a9f: "xie4", // 媟
+ 0x5aa0: "tuo3", // 媠
+ 0x5aa1: "lian4", // 媡
+ 0x5aa2: "mao4", // 媢
+ 0x5aa3: "ran3", // 媣
+ 0x5aa4: "si1", // 媤
+ 0x5aa5: "pian1", // 媥
+ 0x5aa6: "wei4", // 媦
+ 0x5aa7: "wa1", // 媧
+ 0x5aa8: "cu4", // 媨
+ 0x5aa9: "hu2", // 媩
+ 0x5aaa: "ao3", // 媪
+ 0x5aab: "jie2", // 媫
+ 0x5aac: "bao3", // 媬
+ 0x5aad: "xu1", // 媭
+ 0x5aae: "tou1", // 媮
+ 0x5aaf: "gui1", // 媯
+ 0x5ab0: "chu2", // 媰
+ 0x5ab1: "yao2", // 媱
+ 0x5ab2: "pi4", // 媲
+ 0x5ab3: "xi2", // 媳
+ 0x5ab4: "yuan2", // 媴
+ 0x5ab5: "ying4", // 媵
+ 0x5ab6: "rong2", // 媶
+ 0x5ab7: "ru4", // 媷
+ 0x5ab8: "chi1", // 媸
+ 0x5ab9: "liu2", // 媹
+ 0x5aba: "mei3", // 媺
+ 0x5abb: "pan2", // 媻
+ 0x5abc: "ao3", // 媼
+ 0x5abd: "ma1", // 媽
+ 0x5abe: "gou4", // 媾
+ 0x5abf: "kui4", // 媿
+ 0x5ac0: "qin2", // 嫀
+ 0x5ac1: "jia4", // 嫁
+ 0x5ac2: "sao3", // 嫂
+ 0x5ac3: "zhen1", // 嫃
+ 0x5ac4: "yuan2", // 嫄
+ 0x5ac5: "jie1", // 嫅
+ 0x5ac6: "rong2", // 嫆
+ 0x5ac7: "ming2", // 嫇
+ 0x5ac8: "ying1", // 嫈
+ 0x5ac9: "ji2", // 嫉
+ 0x5aca: "su4", // 嫊
+ 0x5acb: "niao3", // 嫋
+ 0x5acc: "xian2", // 嫌
+ 0x5acd: "tao1", // 嫍
+ 0x5ace: "pang2", // 嫎
+ 0x5acf: "lang2", // 嫏
+ 0x5ad0: "nao3", // 嫐
+ 0x5ad1: "bao2", // 嫑
+ 0x5ad2: "ai4", // 嫒
+ 0x5ad3: "pi4", // 嫓
+ 0x5ad4: "pin2", // 嫔
+ 0x5ad5: "yi4", // 嫕
+ 0x5ad6: "piao2", // 嫖
+ 0x5ad7: "yu4", // 嫗
+ 0x5ad8: "lei2", // 嫘
+ 0x5ad9: "xuan2", // 嫙
+ 0x5ada: "man1", // 嫚
+ 0x5adb: "yi1", // 嫛
+ 0x5adc: "zhang1", // 嫜
+ 0x5add: "kang1", // 嫝
+ 0x5ade: "yong1", // 嫞
+ 0x5adf: "ni4", // 嫟
+ 0x5ae0: "li2", // 嫠
+ 0x5ae1: "di2", // 嫡
+ 0x5ae2: "gui1", // 嫢
+ 0x5ae3: "yan1", // 嫣
+ 0x5ae4: "jin3", // 嫤
+ 0x5ae5: "zhuan1", // 嫥
+ 0x5ae6: "chang2", // 嫦
+ 0x5ae7: "ze2", // 嫧
+ 0x5ae8: "han1", // 嫨
+ 0x5ae9: "nen4", // 嫩
+ 0x5aea: "lao4", // 嫪
+ 0x5aeb: "mo2", // 嫫
+ 0x5aec: "zhe1", // 嫬
+ 0x5aed: "hu4", // 嫭
+ 0x5aee: "hu4", // 嫮
+ 0x5aef: "ao4", // 嫯
+ 0x5af0: "nen4", // 嫰
+ 0x5af1: "qiang2", // 嫱
+ 0x5af2: "ma5", // 嫲
+ 0x5af3: "pie4", // 嫳
+ 0x5af4: "gu1", // 嫴
+ 0x5af5: "wu3", // 嫵
+ 0x5af6: "qiao2", // 嫶
+ 0x5af7: "tuo3", // 嫷
+ 0x5af8: "zhan3", // 嫸
+ 0x5af9: "miao2", // 嫹
+ 0x5afa: "xian2", // 嫺
+ 0x5afb: "xian2", // 嫻
+ 0x5afc: "mo4", // 嫼
+ 0x5afd: "liao2", // 嫽
+ 0x5afe: "lian2", // 嫾
+ 0x5aff: "hua4", // 嫿
+ 0x5b00: "gui1", // 嬀
+ 0x5b01: "deng1", // 嬁
+ 0x5b02: "zhi2", // 嬂
+ 0x5b03: "xu1", // 嬃
+ 0x5b04: "yi1", // 嬄
+ 0x5b05: "hua4", // 嬅
+ 0x5b06: "xi1", // 嬆
+ 0x5b07: "kui4", // 嬇
+ 0x5b08: "rao2", // 嬈
+ 0x5b09: "xi1", // 嬉
+ 0x5b0a: "yan4", // 嬊
+ 0x5b0b: "chan2", // 嬋
+ 0x5b0c: "jiao1", // 嬌
+ 0x5b0d: "mei3", // 嬍
+ 0x5b0e: "fan4", // 嬎
+ 0x5b0f: "fan1", // 嬏
+ 0x5b10: "xian1", // 嬐
+ 0x5b11: "yi4", // 嬑
+ 0x5b12: "hui4", // 嬒
+ 0x5b13: "jiao4", // 嬓
+ 0x5b14: "fu4", // 嬔
+ 0x5b15: "shi4", // 嬕
+ 0x5b16: "bi4", // 嬖
+ 0x5b17: "shan4", // 嬗
+ 0x5b18: "sui4", // 嬘
+ 0x5b19: "qiang2", // 嬙
+ 0x5b1a: "lian3", // 嬚
+ 0x5b1b: "huan2", // 嬛
+ 0x5b1c: "xin1", // 嬜
+ 0x5b1d: "niao3", // 嬝
+ 0x5b1e: "dong3", // 嬞
+ 0x5b1f: "yi4", // 嬟
+ 0x5b20: "can1", // 嬠
+ 0x5b21: "ai4", // 嬡
+ 0x5b22: "niang2", // 嬢
+ 0x5b23: "ning2", // 嬣
+ 0x5b24: "ma1", // 嬤
+ 0x5b25: "tiao3", // 嬥
+ 0x5b26: "chou2", // 嬦
+ 0x5b27: "jin4", // 嬧
+ 0x5b28: "ci2", // 嬨
+ 0x5b29: "yu2", // 嬩
+ 0x5b2a: "pin2", // 嬪
+ 0x5b2b: "rong2", // 嬫
+ 0x5b2c: "ru2", // 嬬
+ 0x5b2d: "nai3", // 嬭
+ 0x5b2e: "yan1", // 嬮
+ 0x5b2f: "tai2", // 嬯
+ 0x5b30: "ying1", // 嬰
+ 0x5b31: "qian4", // 嬱
+ 0x5b32: "niao3", // 嬲
+ 0x5b33: "yue4", // 嬳
+ 0x5b34: "ying2", // 嬴
+ 0x5b35: "mian2", // 嬵
+ 0x5b36: "bi2", // 嬶
+ 0x5b37: "ma1", // 嬷
+ 0x5b38: "shen3", // 嬸
+ 0x5b39: "xing4", // 嬹
+ 0x5b3a: "ni4", // 嬺
+ 0x5b3b: "du2", // 嬻
+ 0x5b3c: "liu3", // 嬼
+ 0x5b3d: "yuan1", // 嬽
+ 0x5b3e: "lan3", // 嬾
+ 0x5b3f: "yan4", // 嬿
+ 0x5b40: "shuang1", // 孀
+ 0x5b41: "ling2", // 孁
+ 0x5b42: "jiao3", // 孂
+ 0x5b43: "niang2", // 孃
+ 0x5b44: "lan3", // 孄
+ 0x5b45: "qian1", // 孅
+ 0x5b46: "ying1", // 孆
+ 0x5b47: "shuang1", // 孇
+ 0x5b48: "hui4", // 孈
+ 0x5b49: "quan2", // 孉
+ 0x5b4a: "mi3", // 孊
+ 0x5b4b: "li2", // 孋
+ 0x5b4c: "luan2", // 孌
+ 0x5b4d: "yan2", // 孍
+ 0x5b4e: "zhu2", // 孎
+ 0x5b4f: "lan3", // 孏
+ 0x5b50: "zi5", // 子
+ 0x5b51: "jie2", // 孑
+ 0x5b52: "jue2", // 孒
+ 0x5b53: "jue2", // 孓
+ 0x5b54: "kong3", // 孔
+ 0x5b55: "yun4", // 孕
+ 0x5b56: "ma1", // 孖
+ 0x5b57: "zi4", // 字
+ 0x5b58: "cun2", // 存
+ 0x5b59: "sun1", // 孙
+ 0x5b5a: "fu2", // 孚
+ 0x5b5b: "bei4", // 孛
+ 0x5b5c: "zi1", // 孜
+ 0x5b5d: "xiao4", // 孝
+ 0x5b5e: "xin4", // 孞
+ 0x5b5f: "meng4", // 孟
+ 0x5b60: "si4", // 孠
+ 0x5b61: "tai1", // 孡
+ 0x5b62: "bao1", // 孢
+ 0x5b63: "ji4", // 季
+ 0x5b64: "gu1", // 孤
+ 0x5b65: "nu2", // 孥
+ 0x5b66: "xue2", // 学
+ 0x5b67: "you4", // 孧
+ 0x5b68: "zhuan3", // 孨
+ 0x5b69: "hai2", // 孩
+ 0x5b6a: "luan2", // 孪
+ 0x5b6b: "sun1", // 孫
+ 0x5b6c: "nao1", // 孬
+ 0x5b6d: "mie1", // 孭
+ 0x5b6e: "cong2", // 孮
+ 0x5b6f: "qian1", // 孯
+ 0x5b70: "shu2", // 孰
+ 0x5b71: "can4", // 孱
+ 0x5b72: "ya1", // 孲
+ 0x5b73: "zi1", // 孳
+ 0x5b74: "ni3", // 孴
+ 0x5b75: "fu1", // 孵
+ 0x5b76: "zi1", // 孶
+ 0x5b77: "li2", // 孷
+ 0x5b78: "xue2", // 學
+ 0x5b79: "bo4", // 孹
+ 0x5b7a: "ru2", // 孺
+ 0x5b7b: "nai2", // 孻
+ 0x5b7c: "nie4", // 孼
+ 0x5b7d: "nie4", // 孽
+ 0x5b7e: "ying1", // 孾
+ 0x5b7f: "luan2", // 孿
+ 0x5b80: "mian2", // 宀
+ 0x5b81: "ning2", // 宁
+ 0x5b82: "rong3", // 宂
+ 0x5b83: "ta1", // 它
+ 0x5b84: "gui3", // 宄
+ 0x5b85: "zhai2", // 宅
+ 0x5b86: "qiong2", // 宆
+ 0x5b87: "yu3", // 宇
+ 0x5b88: "shou3", // 守
+ 0x5b89: "an1", // 安
+ 0x5b8a: "tu1", // 宊
+ 0x5b8b: "song4", // 宋
+ 0x5b8c: "wan2", // 完
+ 0x5b8d: "rou4", // 宍
+ 0x5b8e: "yao3", // 宎
+ 0x5b8f: "hong2", // 宏
+ 0x5b90: "yi2", // 宐
+ 0x5b91: "jing3", // 宑
+ 0x5b92: "zhun1", // 宒
+ 0x5b93: "mi4", // 宓
+ 0x5b94: "zhu3", // 宔
+ 0x5b95: "dang4", // 宕
+ 0x5b96: "hong2", // 宖
+ 0x5b97: "zong1", // 宗
+ 0x5b98: "guan1", // 官
+ 0x5b99: "zhou4", // 宙
+ 0x5b9a: "ding4", // 定
+ 0x5b9b: "wan3", // 宛
+ 0x5b9c: "yi2", // 宜
+ 0x5b9d: "bao3", // 宝
+ 0x5b9e: "shi2", // 实
+ 0x5b9f: "shi2", // 実
+ 0x5ba0: "chong3", // 宠
+ 0x5ba1: "shen3", // 审
+ 0x5ba2: "ke4", // 客
+ 0x5ba3: "xuan1", // 宣
+ 0x5ba4: "shi4", // 室
+ 0x5ba5: "you4", // 宥
+ 0x5ba6: "huan4", // 宦
+ 0x5ba7: "yi2", // 宧
+ 0x5ba8: "tiao3", // 宨
+ 0x5ba9: "shi3", // 宩
+ 0x5baa: "xian4", // 宪
+ 0x5bab: "gong1", // 宫
+ 0x5bac: "cheng2", // 宬
+ 0x5bad: "qun2", // 宭
+ 0x5bae: "gong1", // 宮
+ 0x5baf: "xiao1", // 宯
+ 0x5bb0: "zai3", // 宰
+ 0x5bb1: "zha4", // 宱
+ 0x5bb2: "bao3", // 宲
+ 0x5bb3: "hai4", // 害
+ 0x5bb4: "yan4", // 宴
+ 0x5bb5: "xiao1", // 宵
+ 0x5bb6: "jia1", // 家
+ 0x5bb7: "shen3", // 宷
+ 0x5bb8: "chen2", // 宸
+ 0x5bb9: "rong2", // 容
+ 0x5bba: "huang3", // 宺
+ 0x5bbb: "mi4", // 宻
+ 0x5bbc: "kou4", // 宼
+ 0x5bbd: "kuan1", // 宽
+ 0x5bbe: "bin1", // 宾
+ 0x5bbf: "su4", // 宿
+ 0x5bc0: "cai3", // 寀
+ 0x5bc1: "zan3", // 寁
+ 0x5bc2: "ji4", // 寂
+ 0x5bc3: "yuan1", // 寃
+ 0x5bc4: "ji4", // 寄
+ 0x5bc5: "yin2", // 寅
+ 0x5bc6: "mi4", // 密
+ 0x5bc7: "kou4", // 寇
+ 0x5bc8: "qing1", // 寈
+ 0x5bc9: "he4", // 寉
+ 0x5bca: "zhen1", // 寊
+ 0x5bcb: "jian4", // 寋
+ 0x5bcc: "fu4", // 富
+ 0x5bcd: "ning2", // 寍
+ 0x5bce: "bing4", // 寎
+ 0x5bcf: "huan2", // 寏
+ 0x5bd0: "mei4", // 寐
+ 0x5bd1: "qin3", // 寑
+ 0x5bd2: "han2", // 寒
+ 0x5bd3: "yu4", // 寓
+ 0x5bd4: "shi2", // 寔
+ 0x5bd5: "ning2", // 寕
+ 0x5bd6: "jin4", // 寖
+ 0x5bd7: "ning2", // 寗
+ 0x5bd8: "zhi4", // 寘
+ 0x5bd9: "yu3", // 寙
+ 0x5bda: "bao3", // 寚
+ 0x5bdb: "kuan1", // 寛
+ 0x5bdc: "ning2", // 寜
+ 0x5bdd: "qin3", // 寝
+ 0x5bde: "mo4", // 寞
+ 0x5bdf: "cha2", // 察
+ 0x5be0: "ju4", // 寠
+ 0x5be1: "gua3", // 寡
+ 0x5be2: "qin3", // 寢
+ 0x5be3: "hu1", // 寣
+ 0x5be4: "wu4", // 寤
+ 0x5be5: "liao2", // 寥
+ 0x5be6: "shi2", // 實
+ 0x5be7: "ning2", // 寧
+ 0x5be8: "zhai4", // 寨
+ 0x5be9: "shen3", // 審
+ 0x5bea: "wei3", // 寪
+ 0x5beb: "xie3", // 寫
+ 0x5bec: "kuan1", // 寬
+ 0x5bed: "hui4", // 寭
+ 0x5bee: "liao2", // 寮
+ 0x5bef: "jun4", // 寯
+ 0x5bf0: "huan2", // 寰
+ 0x5bf1: "yi4", // 寱
+ 0x5bf2: "yi2", // 寲
+ 0x5bf3: "bao3", // 寳
+ 0x5bf4: "qin1", // 寴
+ 0x5bf5: "chong3", // 寵
+ 0x5bf6: "bao3", // 寶
+ 0x5bf7: "feng1", // 寷
+ 0x5bf8: "cun4", // 寸
+ 0x5bf9: "dui4", // 对
+ 0x5bfa: "si4", // 寺
+ 0x5bfb: "xun2", // 寻
+ 0x5bfc: "dao3", // 导
+ 0x5bfd: "lv4", // 寽
+ 0x5bfe: "dui4", // 対
+ 0x5bff: "shou4", // 寿
+ 0x5c00: "po3", // 尀
+ 0x5c01: "feng1", // 封
+ 0x5c02: "zhuan1", // 専
+ 0x5c03: "fu1", // 尃
+ 0x5c04: "she4", // 射
+ 0x5c05: "ke4", // 尅
+ 0x5c06: "jiang1", // 将
+ 0x5c07: "jiang1", // 將
+ 0x5c08: "zhuan1", // 專
+ 0x5c09: "wei4", // 尉
+ 0x5c0a: "zun1", // 尊
+ 0x5c0b: "xun2", // 尋
+ 0x5c0c: "shu4", // 尌
+ 0x5c0d: "dui4", // 對
+ 0x5c0e: "dao3", // 導
+ 0x5c0f: "xiao3", // 小
+ 0x5c10: "jie2", // 尐
+ 0x5c11: "shao3", // 少
+ 0x5c12: "er3", // 尒
+ 0x5c13: "er3", // 尓
+ 0x5c14: "er3", // 尔
+ 0x5c15: "ga3", // 尕
+ 0x5c16: "jian1", // 尖
+ 0x5c17: "shu1", // 尗
+ 0x5c18: "chen2", // 尘
+ 0x5c19: "shang4", // 尙
+ 0x5c1a: "shang4", // 尚
+ 0x5c1b: "mo2", // 尛
+ 0x5c1c: "ga2", // 尜
+ 0x5c1d: "chang2", // 尝
+ 0x5c1e: "liao4", // 尞
+ 0x5c1f: "xian3", // 尟
+ 0x5c20: "xian3", // 尠
+ 0x5c21: "kun5", // 尡
+ 0x5c22: "you2", // 尢
+ 0x5c23: "wang1", // 尣
+ 0x5c24: "you2", // 尤
+ 0x5c25: "liao4", // 尥
+ 0x5c26: "liao4", // 尦
+ 0x5c27: "yao2", // 尧
+ 0x5c28: "mang2", // 尨
+ 0x5c29: "wang1", // 尩
+ 0x5c2a: "wang1", // 尪
+ 0x5c2b: "wang1", // 尫
+ 0x5c2c: "ga4", // 尬
+ 0x5c2d: "yao2", // 尭
+ 0x5c2e: "duo4", // 尮
+ 0x5c2f: "kui4", // 尯
+ 0x5c30: "zhong3", // 尰
+ 0x5c31: "jiu4", // 就
+ 0x5c32: "gan1", // 尲
+ 0x5c33: "gu3", // 尳
+ 0x5c34: "gan1", // 尴
+ 0x5c35: "tui2", // 尵
+ 0x5c36: "gan1", // 尶
+ 0x5c37: "gan1", // 尷
+ 0x5c38: "shi1", // 尸
+ 0x5c39: "yin3", // 尹
+ 0x5c3a: "chi3", // 尺
+ 0x5c3b: "kao1", // 尻
+ 0x5c3c: "ni2", // 尼
+ 0x5c3d: "jin3", // 尽
+ 0x5c3e: "wei3", // 尾
+ 0x5c3f: "niao4", // 尿
+ 0x5c40: "ju2", // 局
+ 0x5c41: "pi4", // 屁
+ 0x5c42: "ceng2", // 层
+ 0x5c43: "xi4", // 屃
+ 0x5c44: "bi1", // 屄
+ 0x5c45: "ju1", // 居
+ 0x5c46: "jie4", // 屆
+ 0x5c47: "tian2", // 屇
+ 0x5c48: "qu1", // 屈
+ 0x5c49: "ti4", // 屉
+ 0x5c4a: "jie4", // 届
+ 0x5c4b: "wu1", // 屋
+ 0x5c4c: "diao3", // 屌
+ 0x5c4d: "shi1", // 屍
+ 0x5c4e: "shi3", // 屎
+ 0x5c4f: "ping2", // 屏
+ 0x5c50: "ji1", // 屐
+ 0x5c51: "xie4", // 屑
+ 0x5c52: "zhen3", // 屒
+ 0x5c53: "xie4", // 屓
+ 0x5c54: "ni2", // 屔
+ 0x5c55: "zhan3", // 展
+ 0x5c56: "xi1", // 屖
+ 0x5c57: "wei3", // 屗
+ 0x5c58: "man3", // 屘
+ 0x5c59: "e1", // 屙
+ 0x5c5a: "lou4", // 屚
+ 0x5c5b: "ping2", // 屛
+ 0x5c5c: "ti4", // 屜
+ 0x5c5d: "fei4", // 屝
+ 0x5c5e: "shu3", // 属
+ 0x5c5f: "xie4", // 屟
+ 0x5c60: "tu2", // 屠
+ 0x5c61: "lv3", // 屡
+ 0x5c62: "lv3", // 屢
+ 0x5c63: "xi3", // 屣
+ 0x5c64: "ceng2", // 層
+ 0x5c65: "lv3", // 履
+ 0x5c66: "ju4", // 屦
+ 0x5c67: "xie4", // 屧
+ 0x5c68: "ju4", // 屨
+ 0x5c69: "jue1", // 屩
+ 0x5c6a: "liao2", // 屪
+ 0x5c6b: "jue2", // 屫
+ 0x5c6c: "shu3", // 屬
+ 0x5c6d: "xi4", // 屭
+ 0x5c6e: "che4", // 屮
+ 0x5c6f: "tun2", // 屯
+ 0x5c70: "ni4", // 屰
+ 0x5c71: "shan1", // 山
+ 0x5c72: "wa1", // 屲
+ 0x5c73: "xian1", // 屳
+ 0x5c74: "li4", // 屴
+ 0x5c75: "e4", // 屵
+ 0x5c76: "hui4", // 屶
+ 0x5c77: "hui4", // 屷
+ 0x5c78: "long2", // 屸
+ 0x5c79: "yi4", // 屹
+ 0x5c7a: "qi3", // 屺
+ 0x5c7b: "ren4", // 屻
+ 0x5c7c: "wu4", // 屼
+ 0x5c7d: "han4", // 屽
+ 0x5c7e: "shen1", // 屾
+ 0x5c7f: "yu3", // 屿
+ 0x5c80: "chu1", // 岀
+ 0x5c81: "sui4", // 岁
+ 0x5c82: "qi3", // 岂
+ 0x5c83: "ren4", // 岃
+ 0x5c84: "yue4", // 岄
+ 0x5c85: "ban3", // 岅
+ 0x5c86: "yao3", // 岆
+ 0x5c87: "ang2", // 岇
+ 0x5c88: "ya2", // 岈
+ 0x5c89: "wu4", // 岉
+ 0x5c8a: "jie2", // 岊
+ 0x5c8b: "e4", // 岋
+ 0x5c8c: "ji2", // 岌
+ 0x5c8d: "qian1", // 岍
+ 0x5c8e: "fen2", // 岎
+ 0x5c8f: "wan2", // 岏
+ 0x5c90: "qi2", // 岐
+ 0x5c91: "cen2", // 岑
+ 0x5c92: "qian2", // 岒
+ 0x5c93: "qi2", // 岓
+ 0x5c94: "cha4", // 岔
+ 0x5c95: "jie4", // 岕
+ 0x5c96: "qu1", // 岖
+ 0x5c97: "gang3", // 岗
+ 0x5c98: "xian4", // 岘
+ 0x5c99: "ao4", // 岙
+ 0x5c9a: "lan2", // 岚
+ 0x5c9b: "dao3", // 岛
+ 0x5c9c: "ba1", // 岜
+ 0x5c9d: "zuo4", // 岝
+ 0x5c9e: "zuo4", // 岞
+ 0x5c9f: "yang3", // 岟
+ 0x5ca0: "ju4", // 岠
+ 0x5ca1: "gang1", // 岡
+ 0x5ca2: "ke3", // 岢
+ 0x5ca3: "gou3", // 岣
+ 0x5ca4: "xue2", // 岤
+ 0x5ca5: "po1", // 岥
+ 0x5ca6: "li4", // 岦
+ 0x5ca7: "tiao2", // 岧
+ 0x5ca8: "qu1", // 岨
+ 0x5ca9: "yan2", // 岩
+ 0x5caa: "fu2", // 岪
+ 0x5cab: "xiu4", // 岫
+ 0x5cac: "jia3", // 岬
+ 0x5cad: "ling3", // 岭
+ 0x5cae: "tuo2", // 岮
+ 0x5caf: "pi2", // 岯
+ 0x5cb0: "ao4", // 岰
+ 0x5cb1: "dai4", // 岱
+ 0x5cb2: "kuang4", // 岲
+ 0x5cb3: "yue4", // 岳
+ 0x5cb4: "qu1", // 岴
+ 0x5cb5: "hu4", // 岵
+ 0x5cb6: "po4", // 岶
+ 0x5cb7: "min2", // 岷
+ 0x5cb8: "an4", // 岸
+ 0x5cb9: "tiao2", // 岹
+ 0x5cba: "ling2", // 岺
+ 0x5cbb: "chi2", // 岻
+ 0x5cbc: "ping2", // 岼
+ 0x5cbd: "dong1", // 岽
+ 0x5cbe: "han4", // 岾
+ 0x5cbf: "kui1", // 岿
+ 0x5cc0: "xiu4", // 峀
+ 0x5cc1: "mao3", // 峁
+ 0x5cc2: "tong2", // 峂
+ 0x5cc3: "xue2", // 峃
+ 0x5cc4: "yi4", // 峄
+ 0x5cc5: "bian4", // 峅
+ 0x5cc6: "he2", // 峆
+ 0x5cc7: "ba1", // 峇
+ 0x5cc8: "luo4", // 峈
+ 0x5cc9: "e4", // 峉
+ 0x5cca: "fu4", // 峊
+ 0x5ccb: "xun2", // 峋
+ 0x5ccc: "die2", // 峌
+ 0x5ccd: "lu4", // 峍
+ 0x5cce: "en3", // 峎
+ 0x5ccf: "er2", // 峏
+ 0x5cd0: "gai1", // 峐
+ 0x5cd1: "quan1", // 峑
+ 0x5cd2: "dong4", // 峒
+ 0x5cd3: "yi2", // 峓
+ 0x5cd4: "mu3", // 峔
+ 0x5cd5: "shi2", // 峕
+ 0x5cd6: "an1", // 峖
+ 0x5cd7: "wei2", // 峗
+ 0x5cd8: "huan2", // 峘
+ 0x5cd9: "zhi4", // 峙
+ 0x5cda: "mi4", // 峚
+ 0x5cdb: "li3", // 峛
+ 0x5cdc: "ji4", // 峜
+ 0x5cdd: "tong2", // 峝
+ 0x5cde: "wei2", // 峞
+ 0x5cdf: "you4", // 峟
+ 0x5ce0: "qia3", // 峠
+ 0x5ce1: "xia2", // 峡
+ 0x5ce2: "li3", // 峢
+ 0x5ce3: "yao2", // 峣
+ 0x5ce4: "jiao4", // 峤
+ 0x5ce5: "zheng1", // 峥
+ 0x5ce6: "luan2", // 峦
+ 0x5ce7: "jiao1", // 峧
+ 0x5ce8: "e2", // 峨
+ 0x5ce9: "e2", // 峩
+ 0x5cea: "yu4", // 峪
+ 0x5ceb: "xie2", // 峫
+ 0x5cec: "bu1", // 峬
+ 0x5ced: "qiao4", // 峭
+ 0x5cee: "qun1", // 峮
+ 0x5cef: "feng1", // 峯
+ 0x5cf0: "feng1", // 峰
+ 0x5cf1: "nao2", // 峱
+ 0x5cf2: "li3", // 峲
+ 0x5cf3: "you2", // 峳
+ 0x5cf4: "xian4", // 峴
+ 0x5cf5: "rong2", // 峵
+ 0x5cf6: "dao3", // 島
+ 0x5cf7: "shen1", // 峷
+ 0x5cf8: "cheng2", // 峸
+ 0x5cf9: "tu2", // 峹
+ 0x5cfa: "geng3", // 峺
+ 0x5cfb: "jun4", // 峻
+ 0x5cfc: "gao4", // 峼
+ 0x5cfd: "xia2", // 峽
+ 0x5cfe: "yin2", // 峾
+ 0x5cff: "yu3", // 峿
+ 0x5d00: "lang4", // 崀
+ 0x5d01: "kan4", // 崁
+ 0x5d02: "lao2", // 崂
+ 0x5d03: "lai2", // 崃
+ 0x5d04: "xian3", // 崄
+ 0x5d05: "que4", // 崅
+ 0x5d06: "kong1", // 崆
+ 0x5d07: "chong2", // 崇
+ 0x5d08: "chong2", // 崈
+ 0x5d09: "ta4", // 崉
+ 0x5d0a: "lin2", // 崊
+ 0x5d0b: "hua4", // 崋
+ 0x5d0c: "ju1", // 崌
+ 0x5d0d: "lai2", // 崍
+ 0x5d0e: "qi2", // 崎
+ 0x5d0f: "min2", // 崏
+ 0x5d10: "kun1", // 崐
+ 0x5d11: "kun1", // 崑
+ 0x5d12: "zu2", // 崒
+ 0x5d13: "gu4", // 崓
+ 0x5d14: "cui1", // 崔
+ 0x5d15: "ya2", // 崕
+ 0x5d16: "ya2", // 崖
+ 0x5d17: "gang3", // 崗
+ 0x5d18: "lun2", // 崘
+ 0x5d19: "lun2", // 崙
+ 0x5d1a: "leng2", // 崚
+ 0x5d1b: "jue2", // 崛
+ 0x5d1c: "duo1", // 崜
+ 0x5d1d: "zheng1", // 崝
+ 0x5d1e: "guo1", // 崞
+ 0x5d1f: "yin2", // 崟
+ 0x5d20: "dong1", // 崠
+ 0x5d21: "han2", // 崡
+ 0x5d22: "zheng1", // 崢
+ 0x5d23: "wei3", // 崣
+ 0x5d24: "xiao2", // 崤
+ 0x5d25: "pi2", // 崥
+ 0x5d26: "yan1", // 崦
+ 0x5d27: "song1", // 崧
+ 0x5d28: "jie2", // 崨
+ 0x5d29: "beng1", // 崩
+ 0x5d2a: "zu2", // 崪
+ 0x5d2b: "ku1", // 崫
+ 0x5d2c: "dong1", // 崬
+ 0x5d2d: "zhan3", // 崭
+ 0x5d2e: "gu4", // 崮
+ 0x5d2f: "yin2", // 崯
+ 0x5d30: "zi1", // 崰
+ 0x5d31: "ze4", // 崱
+ 0x5d32: "huang2", // 崲
+ 0x5d33: "yu2", // 崳
+ 0x5d34: "wai3", // 崴
+ 0x5d35: "yang2", // 崵
+ 0x5d36: "feng1", // 崶
+ 0x5d37: "qiu2", // 崷
+ 0x5d38: "yang2", // 崸
+ 0x5d39: "ti2", // 崹
+ 0x5d3a: "yi3", // 崺
+ 0x5d3b: "zhi4", // 崻
+ 0x5d3c: "shi4", // 崼
+ 0x5d3d: "zai3", // 崽
+ 0x5d3e: "yao3", // 崾
+ 0x5d3f: "e4", // 崿
+ 0x5d40: "zhu4", // 嵀
+ 0x5d41: "kan1", // 嵁
+ 0x5d42: "lv4", // 嵂
+ 0x5d43: "yan3", // 嵃
+ 0x5d44: "mei3", // 嵄
+ 0x5d45: "han2", // 嵅
+ 0x5d46: "ji1", // 嵆
+ 0x5d47: "ji1", // 嵇
+ 0x5d48: "huan4", // 嵈
+ 0x5d49: "ting2", // 嵉
+ 0x5d4a: "sheng4", // 嵊
+ 0x5d4b: "mei2", // 嵋
+ 0x5d4c: "qian4", // 嵌
+ 0x5d4d: "wu4", // 嵍
+ 0x5d4e: "yu2", // 嵎
+ 0x5d4f: "zong1", // 嵏
+ 0x5d50: "lan2", // 嵐
+ 0x5d51: "ke3", // 嵑
+ 0x5d52: "yan2", // 嵒
+ 0x5d53: "yan2", // 嵓
+ 0x5d54: "wei3", // 嵔
+ 0x5d55: "zong1", // 嵕
+ 0x5d56: "cha2", // 嵖
+ 0x5d57: "sui4", // 嵗
+ 0x5d58: "rong2", // 嵘
+ 0x5d59: "ke1", // 嵙
+ 0x5d5a: "qin1", // 嵚
+ 0x5d5b: "yu2", // 嵛
+ 0x5d5c: "qi2", // 嵜
+ 0x5d5d: "lou3", // 嵝
+ 0x5d5e: "tu2", // 嵞
+ 0x5d5f: "dui1", // 嵟
+ 0x5d60: "xi1", // 嵠
+ 0x5d61: "weng3", // 嵡
+ 0x5d62: "cang1", // 嵢
+ 0x5d63: "dang4", // 嵣
+ 0x5d64: "rong2", // 嵤
+ 0x5d65: "jie2", // 嵥
+ 0x5d66: "kai3", // 嵦
+ 0x5d67: "liu2", // 嵧
+ 0x5d68: "wu4", // 嵨
+ 0x5d69: "song1", // 嵩
+ 0x5d6a: "qiao1", // 嵪
+ 0x5d6b: "zi1", // 嵫
+ 0x5d6c: "wei2", // 嵬
+ 0x5d6d: "beng1", // 嵭
+ 0x5d6e: "dian1", // 嵮
+ 0x5d6f: "cuo2", // 嵯
+ 0x5d70: "qian3", // 嵰
+ 0x5d71: "yong3", // 嵱
+ 0x5d72: "nie4", // 嵲
+ 0x5d73: "cuo2", // 嵳
+ 0x5d74: "ji3", // 嵴
+ 0x5d75: "shi2", // 嵵
+ 0x5d76: "ruo4", // 嵶
+ 0x5d77: "song3", // 嵷
+ 0x5d78: "zong1", // 嵸
+ 0x5d79: "jiang4", // 嵹
+ 0x5d7a: "liao2", // 嵺
+ 0x5d7b: "kang1", // 嵻
+ 0x5d7c: "chan3", // 嵼
+ 0x5d7d: "die2", // 嵽
+ 0x5d7e: "cen1", // 嵾
+ 0x5d7f: "ding3", // 嵿
+ 0x5d80: "tu1", // 嶀
+ 0x5d81: "lou3", // 嶁
+ 0x5d82: "zhang4", // 嶂
+ 0x5d83: "zhan3", // 嶃
+ 0x5d84: "zhan3", // 嶄
+ 0x5d85: "ao2", // 嶅
+ 0x5d86: "cao2", // 嶆
+ 0x5d87: "qu1", // 嶇
+ 0x5d88: "qiang1", // 嶈
+ 0x5d89: "cui1", // 嶉
+ 0x5d8a: "zui3", // 嶊
+ 0x5d8b: "dao3", // 嶋
+ 0x5d8c: "dao3", // 嶌
+ 0x5d8d: "xi2", // 嶍
+ 0x5d8e: "yu4", // 嶎
+ 0x5d8f: "pei4", // 嶏
+ 0x5d90: "long2", // 嶐
+ 0x5d91: "xiang4", // 嶑
+ 0x5d92: "ceng2", // 嶒
+ 0x5d93: "bo1", // 嶓
+ 0x5d94: "qin1", // 嶔
+ 0x5d95: "jiao1", // 嶕
+ 0x5d96: "yan1", // 嶖
+ 0x5d97: "lao2", // 嶗
+ 0x5d98: "zhan4", // 嶘
+ 0x5d99: "lin2", // 嶙
+ 0x5d9a: "liao2", // 嶚
+ 0x5d9b: "liao2", // 嶛
+ 0x5d9c: "jin1", // 嶜
+ 0x5d9d: "deng4", // 嶝
+ 0x5d9e: "duo4", // 嶞
+ 0x5d9f: "zun1", // 嶟
+ 0x5da0: "jiao4", // 嶠
+ 0x5da1: "gui4", // 嶡
+ 0x5da2: "yao2", // 嶢
+ 0x5da3: "jiao1", // 嶣
+ 0x5da4: "yao2", // 嶤
+ 0x5da5: "jue2", // 嶥
+ 0x5da6: "zhan1", // 嶦
+ 0x5da7: "yi4", // 嶧
+ 0x5da8: "xue2", // 嶨
+ 0x5da9: "nao2", // 嶩
+ 0x5daa: "ye4", // 嶪
+ 0x5dab: "ye4", // 嶫
+ 0x5dac: "yi2", // 嶬
+ 0x5dad: "nie4", // 嶭
+ 0x5dae: "xian3", // 嶮
+ 0x5daf: "ji2", // 嶯
+ 0x5db0: "xie4", // 嶰
+ 0x5db1: "ke3", // 嶱
+ 0x5db2: "xi1", // 嶲
+ 0x5db3: "di4", // 嶳
+ 0x5db4: "ao4", // 嶴
+ 0x5db5: "zui3", // 嶵
+ 0x5db6: "wei1", // 嶶
+ 0x5db7: "yi2", // 嶷
+ 0x5db8: "rong2", // 嶸
+ 0x5db9: "dao3", // 嶹
+ 0x5dba: "ling3", // 嶺
+ 0x5dbb: "jie2", // 嶻
+ 0x5dbc: "yu3", // 嶼
+ 0x5dbd: "yue4", // 嶽
+ 0x5dbe: "yin3", // 嶾
+ 0x5dbf: "ru5", // 嶿
+ 0x5dc0: "jie2", // 巀
+ 0x5dc1: "li4", // 巁
+ 0x5dc2: "gui1", // 巂
+ 0x5dc3: "long2", // 巃
+ 0x5dc4: "long2", // 巄
+ 0x5dc5: "dian1", // 巅
+ 0x5dc6: "rong2", // 巆
+ 0x5dc7: "xi1", // 巇
+ 0x5dc8: "ju2", // 巈
+ 0x5dc9: "chan2", // 巉
+ 0x5dca: "ying3", // 巊
+ 0x5dcb: "kui1", // 巋
+ 0x5dcc: "yan2", // 巌
+ 0x5dcd: "wei1", // 巍
+ 0x5dce: "nao2", // 巎
+ 0x5dcf: "quan2", // 巏
+ 0x5dd0: "chao3", // 巐
+ 0x5dd1: "cuan2", // 巑
+ 0x5dd2: "luan2", // 巒
+ 0x5dd3: "dian1", // 巓
+ 0x5dd4: "dian1", // 巔
+ 0x5dd5: "nie4", // 巕
+ 0x5dd6: "yan2", // 巖
+ 0x5dd7: "yan2", // 巗
+ 0x5dd8: "yan3", // 巘
+ 0x5dd9: "kui2", // 巙
+ 0x5dda: "yan3", // 巚
+ 0x5ddb: "chuan1", // 巛
+ 0x5ddc: "kuai4", // 巜
+ 0x5ddd: "chuan1", // 川
+ 0x5dde: "zhou1", // 州
+ 0x5ddf: "huang1", // 巟
+ 0x5de0: "jing1", // 巠
+ 0x5de1: "xun2", // 巡
+ 0x5de2: "chao2", // 巢
+ 0x5de3: "chao2", // 巣
+ 0x5de4: "lie4", // 巤
+ 0x5de5: "gong1", // 工
+ 0x5de6: "zuo3", // 左
+ 0x5de7: "qiao3", // 巧
+ 0x5de8: "ju4", // 巨
+ 0x5de9: "gong3", // 巩
+ 0x5dea: "ju4", // 巪
+ 0x5deb: "wu1", // 巫
+ 0x5dec: "pu5", // 巬
+ 0x5ded: "pu5", // 巭
+ 0x5dee: "cha4", // 差
+ 0x5def: "qiu2", // 巯
+ 0x5df0: "qiu2", // 巰
+ 0x5df1: "ji3", // 己
+ 0x5df2: "yi3", // 已
+ 0x5df3: "si4", // 巳
+ 0x5df4: "ba1", // 巴
+ 0x5df5: "zhi1", // 巵
+ 0x5df6: "zhao1", // 巶
+ 0x5df7: "xiang4", // 巷
+ 0x5df8: "yi2", // 巸
+ 0x5df9: "jin3", // 巹
+ 0x5dfa: "xun4", // 巺
+ 0x5dfb: "juan4", // 巻
+ 0x5dfc: "ba1", // 巼
+ 0x5dfd: "xun4", // 巽
+ 0x5dfe: "jin1", // 巾
+ 0x5dff: "fu2", // 巿
+ 0x5e00: "za1", // 帀
+ 0x5e01: "bi4", // 币
+ 0x5e02: "shi4", // 市
+ 0x5e03: "bu4", // 布
+ 0x5e04: "ding1", // 帄
+ 0x5e05: "shuai4", // 帅
+ 0x5e06: "fan1", // 帆
+ 0x5e07: "nie4", // 帇
+ 0x5e08: "shi1", // 师
+ 0x5e09: "fen1", // 帉
+ 0x5e0a: "pa4", // 帊
+ 0x5e0b: "zhi3", // 帋
+ 0x5e0c: "xi1", // 希
+ 0x5e0d: "hu4", // 帍
+ 0x5e0e: "dan4", // 帎
+ 0x5e0f: "wei2", // 帏
+ 0x5e10: "zhang4", // 帐
+ 0x5e11: "tang3", // 帑
+ 0x5e12: "dai4", // 帒
+ 0x5e13: "mo4", // 帓
+ 0x5e14: "pei4", // 帔
+ 0x5e15: "pa4", // 帕
+ 0x5e16: "tie1", // 帖
+ 0x5e17: "bo1", // 帗
+ 0x5e18: "lian2", // 帘
+ 0x5e19: "zhi4", // 帙
+ 0x5e1a: "zhou3", // 帚
+ 0x5e1b: "bo2", // 帛
+ 0x5e1c: "zhi4", // 帜
+ 0x5e1d: "di4", // 帝
+ 0x5e1e: "mo4", // 帞
+ 0x5e1f: "yi4", // 帟
+ 0x5e20: "yi4", // 帠
+ 0x5e21: "ping2", // 帡
+ 0x5e22: "qia4", // 帢
+ 0x5e23: "juan3", // 帣
+ 0x5e24: "ru2", // 帤
+ 0x5e25: "shuai4", // 帥
+ 0x5e26: "dai4", // 带
+ 0x5e27: "zheng4", // 帧
+ 0x5e28: "shui4", // 帨
+ 0x5e29: "qiao4", // 帩
+ 0x5e2a: "zhen1", // 帪
+ 0x5e2b: "shi1", // 師
+ 0x5e2c: "qun2", // 帬
+ 0x5e2d: "xi2", // 席
+ 0x5e2e: "bang1", // 帮
+ 0x5e2f: "dai4", // 帯
+ 0x5e30: "gui1", // 帰
+ 0x5e31: "chou2", // 帱
+ 0x5e32: "ping2", // 帲
+ 0x5e33: "zhang4", // 帳
+ 0x5e34: "san4", // 帴
+ 0x5e35: "wan1", // 帵
+ 0x5e36: "dai4", // 帶
+ 0x5e37: "wei2", // 帷
+ 0x5e38: "chang2", // 常
+ 0x5e39: "sha4", // 帹
+ 0x5e3a: "qi2", // 帺
+ 0x5e3b: "ze2", // 帻
+ 0x5e3c: "guo2", // 帼
+ 0x5e3d: "mao4", // 帽
+ 0x5e3e: "du3", // 帾
+ 0x5e3f: "hou2", // 帿
+ 0x5e40: "zheng4", // 幀
+ 0x5e41: "xu1", // 幁
+ 0x5e42: "mi4", // 幂
+ 0x5e43: "wei2", // 幃
+ 0x5e44: "wo4", // 幄
+ 0x5e45: "fu2", // 幅
+ 0x5e46: "yi4", // 幆
+ 0x5e47: "bang1", // 幇
+ 0x5e48: "ping2", // 幈
+ 0x5e49: "die2", // 幉
+ 0x5e4a: "gong1", // 幊
+ 0x5e4b: "pan2", // 幋
+ 0x5e4c: "huang3", // 幌
+ 0x5e4d: "tao1", // 幍
+ 0x5e4e: "mi4", // 幎
+ 0x5e4f: "jia4", // 幏
+ 0x5e50: "teng2", // 幐
+ 0x5e51: "hui1", // 幑
+ 0x5e52: "zhong1", // 幒
+ 0x5e53: "shan1", // 幓
+ 0x5e54: "man4", // 幔
+ 0x5e55: "mu4", // 幕
+ 0x5e56: "biao1", // 幖
+ 0x5e57: "guo2", // 幗
+ 0x5e58: "ze2", // 幘
+ 0x5e59: "mu4", // 幙
+ 0x5e5a: "bang1", // 幚
+ 0x5e5b: "zhang4", // 幛
+ 0x5e5c: "jing3", // 幜
+ 0x5e5d: "chan3", // 幝
+ 0x5e5e: "fu2", // 幞
+ 0x5e5f: "zhi4", // 幟
+ 0x5e60: "hu1", // 幠
+ 0x5e61: "fan1", // 幡
+ 0x5e62: "chuang2", // 幢
+ 0x5e63: "bi4", // 幣
+ 0x5e64: "bi4", // 幤
+ 0x5e65: "zhang3", // 幥
+ 0x5e66: "mi4", // 幦
+ 0x5e67: "qiao1", // 幧
+ 0x5e68: "chan1", // 幨
+ 0x5e69: "fen2", // 幩
+ 0x5e6a: "meng2", // 幪
+ 0x5e6b: "bang1", // 幫
+ 0x5e6c: "chou2", // 幬
+ 0x5e6d: "mie4", // 幭
+ 0x5e6e: "chu2", // 幮
+ 0x5e6f: "jie2", // 幯
+ 0x5e70: "xian3", // 幰
+ 0x5e71: "lan2", // 幱
+ 0x5e72: "gan4", // 干
+ 0x5e73: "ping2", // 平
+ 0x5e74: "nian2", // 年
+ 0x5e75: "jian1", // 幵
+ 0x5e76: "bing4", // 并
+ 0x5e77: "bing4", // 幷
+ 0x5e78: "xing4", // 幸
+ 0x5e79: "gan4", // 幹
+ 0x5e7a: "yao1", // 幺
+ 0x5e7b: "huan4", // 幻
+ 0x5e7c: "you4", // 幼
+ 0x5e7d: "you1", // 幽
+ 0x5e7e: "ji3", // 幾
+ 0x5e7f: "guang3", // 广
+ 0x5e80: "pi3", // 庀
+ 0x5e81: "ting1", // 庁
+ 0x5e82: "ze4", // 庂
+ 0x5e83: "guang3", // 広
+ 0x5e84: "zhuang1", // 庄
+ 0x5e85: "mo2", // 庅
+ 0x5e86: "qing4", // 庆
+ 0x5e87: "bi4", // 庇
+ 0x5e88: "qin2", // 庈
+ 0x5e89: "dun4", // 庉
+ 0x5e8a: "chuang2", // 床
+ 0x5e8b: "gui3", // 庋
+ 0x5e8c: "ya3", // 庌
+ 0x5e8d: "bai4", // 庍
+ 0x5e8e: "jie4", // 庎
+ 0x5e8f: "xu4", // 序
+ 0x5e90: "lu2", // 庐
+ 0x5e91: "wu3", // 庑
+ 0x5e92: "zhuang1", // 庒
+ 0x5e93: "ku4", // 库
+ 0x5e94: "ying1", // 应
+ 0x5e95: "di3", // 底
+ 0x5e96: "pao2", // 庖
+ 0x5e97: "dian4", // 店
+ 0x5e98: "ya1", // 庘
+ 0x5e99: "miao4", // 庙
+ 0x5e9a: "geng1", // 庚
+ 0x5e9b: "ci4", // 庛
+ 0x5e9c: "fu3", // 府
+ 0x5e9d: "tong2", // 庝
+ 0x5e9e: "pang2", // 庞
+ 0x5e9f: "fei4", // 废
+ 0x5ea0: "xiang2", // 庠
+ 0x5ea1: "yi3", // 庡
+ 0x5ea2: "zhi4", // 庢
+ 0x5ea3: "tiao1", // 庣
+ 0x5ea4: "zhi4", // 庤
+ 0x5ea5: "xiu1", // 庥
+ 0x5ea6: "du4", // 度
+ 0x5ea7: "zuo4", // 座
+ 0x5ea8: "xiao1", // 庨
+ 0x5ea9: "tu2", // 庩
+ 0x5eaa: "gui3", // 庪
+ 0x5eab: "ku4", // 庫
+ 0x5eac: "mang2", // 庬
+ 0x5ead: "ting2", // 庭
+ 0x5eae: "you3", // 庮
+ 0x5eaf: "bu1", // 庯
+ 0x5eb0: "bing4", // 庰
+ 0x5eb1: "cheng3", // 庱
+ 0x5eb2: "lai2", // 庲
+ 0x5eb3: "bi4", // 庳
+ 0x5eb4: "ji2", // 庴
+ 0x5eb5: "an1", // 庵
+ 0x5eb6: "shu4", // 庶
+ 0x5eb7: "kang1", // 康
+ 0x5eb8: "yong1", // 庸
+ 0x5eb9: "tuo3", // 庹
+ 0x5eba: "song1", // 庺
+ 0x5ebb: "shu4", // 庻
+ 0x5ebc: "qing3", // 庼
+ 0x5ebd: "yu4", // 庽
+ 0x5ebe: "yu3", // 庾
+ 0x5ebf: "miao4", // 庿
+ 0x5ec0: "sou1", // 廀
+ 0x5ec1: "ce4", // 廁
+ 0x5ec2: "xiang1", // 廂
+ 0x5ec3: "fei4", // 廃
+ 0x5ec4: "jiu4", // 廄
+ 0x5ec5: "e4", // 廅
+ 0x5ec6: "gui1", // 廆
+ 0x5ec7: "liu4", // 廇
+ 0x5ec8: "sha4", // 廈
+ 0x5ec9: "lian2", // 廉
+ 0x5eca: "lang2", // 廊
+ 0x5ecb: "sou1", // 廋
+ 0x5ecc: "zhi4", // 廌
+ 0x5ecd: "bu4", // 廍
+ 0x5ece: "qing3", // 廎
+ 0x5ecf: "jiu4", // 廏
+ 0x5ed0: "jiu4", // 廐
+ 0x5ed1: "jin3", // 廑
+ 0x5ed2: "ao2", // 廒
+ 0x5ed3: "kuo4", // 廓
+ 0x5ed4: "lou2", // 廔
+ 0x5ed5: "yin4", // 廕
+ 0x5ed6: "liao4", // 廖
+ 0x5ed7: "dai4", // 廗
+ 0x5ed8: "lu4", // 廘
+ 0x5ed9: "yi4", // 廙
+ 0x5eda: "chu2", // 廚
+ 0x5edb: "chan2", // 廛
+ 0x5edc: "tu2", // 廜
+ 0x5edd: "si1", // 廝
+ 0x5ede: "xin1", // 廞
+ 0x5edf: "miao4", // 廟
+ 0x5ee0: "chang3", // 廠
+ 0x5ee1: "wu3", // 廡
+ 0x5ee2: "fei4", // 廢
+ 0x5ee3: "guang3", // 廣
+ 0x5ee4: "ku4", // 廤
+ 0x5ee5: "kuai4", // 廥
+ 0x5ee6: "bi4", // 廦
+ 0x5ee7: "qiang2", // 廧
+ 0x5ee8: "xie4", // 廨
+ 0x5ee9: "lin3", // 廩
+ 0x5eea: "lin3", // 廪
+ 0x5eeb: "liao2", // 廫
+ 0x5eec: "lu2", // 廬
+ 0x5eed: "ji4", // 廭
+ 0x5eee: "ying3", // 廮
+ 0x5eef: "xian1", // 廯
+ 0x5ef0: "ting1", // 廰
+ 0x5ef1: "yong1", // 廱
+ 0x5ef2: "li2", // 廲
+ 0x5ef3: "ting1", // 廳
+ 0x5ef4: "yin3", // 廴
+ 0x5ef5: "xun2", // 廵
+ 0x5ef6: "yan2", // 延
+ 0x5ef7: "ting2", // 廷
+ 0x5ef8: "di2", // 廸
+ 0x5ef9: "pai3", // 廹
+ 0x5efa: "jian4", // 建
+ 0x5efb: "hui2", // 廻
+ 0x5efc: "nai3", // 廼
+ 0x5efd: "hui2", // 廽
+ 0x5efe: "gong3", // 廾
+ 0x5eff: "nian4", // 廿
+ 0x5f00: "kai1", // 开
+ 0x5f01: "bian4", // 弁
+ 0x5f02: "yi4", // 异
+ 0x5f03: "qi4", // 弃
+ 0x5f04: "nong4", // 弄
+ 0x5f05: "fen4", // 弅
+ 0x5f06: "ju3", // 弆
+ 0x5f07: "yan3", // 弇
+ 0x5f08: "yi4", // 弈
+ 0x5f09: "zang4", // 弉
+ 0x5f0a: "bi4", // 弊
+ 0x5f0b: "yi4", // 弋
+ 0x5f0c: "yi1", // 弌
+ 0x5f0d: "er4", // 弍
+ 0x5f0e: "san1", // 弎
+ 0x5f0f: "shi4", // 式
+ 0x5f10: "er4", // 弐
+ 0x5f11: "shi4", // 弑
+ 0x5f12: "shi4", // 弒
+ 0x5f13: "gong1", // 弓
+ 0x5f14: "diao4", // 弔
+ 0x5f15: "yin3", // 引
+ 0x5f16: "hu4", // 弖
+ 0x5f17: "fu2", // 弗
+ 0x5f18: "hong2", // 弘
+ 0x5f19: "wu1", // 弙
+ 0x5f1a: "tui2", // 弚
+ 0x5f1b: "chi2", // 弛
+ 0x5f1c: "jiang4", // 弜
+ 0x5f1d: "ba4", // 弝
+ 0x5f1e: "shen3", // 弞
+ 0x5f1f: "di4", // 弟
+ 0x5f20: "zhang1", // 张
+ 0x5f21: "jue2", // 弡
+ 0x5f22: "tao1", // 弢
+ 0x5f23: "fu3", // 弣
+ 0x5f24: "di3", // 弤
+ 0x5f25: "mi2", // 弥
+ 0x5f26: "xian2", // 弦
+ 0x5f27: "hu2", // 弧
+ 0x5f28: "chao1", // 弨
+ 0x5f29: "nu3", // 弩
+ 0x5f2a: "jing4", // 弪
+ 0x5f2b: "zhen3", // 弫
+ 0x5f2c: "yi2", // 弬
+ 0x5f2d: "mi3", // 弭
+ 0x5f2e: "quan1", // 弮
+ 0x5f2f: "wan1", // 弯
+ 0x5f30: "shao1", // 弰
+ 0x5f31: "ruo4", // 弱
+ 0x5f32: "xuan1", // 弲
+ 0x5f33: "jing4", // 弳
+ 0x5f34: "diao1", // 弴
+ 0x5f35: "zhang1", // 張
+ 0x5f36: "jiang4", // 弶
+ 0x5f37: "qiang2", // 強
+ 0x5f38: "peng2", // 弸
+ 0x5f39: "dan4", // 弹
+ 0x5f3a: "qiang2", // 强
+ 0x5f3b: "bi4", // 弻
+ 0x5f3c: "bi4", // 弼
+ 0x5f3d: "she4", // 弽
+ 0x5f3e: "dan4", // 弾
+ 0x5f3f: "jian3", // 弿
+ 0x5f40: "gou4", // 彀
+ 0x5f41: "ge1", // 彁
+ 0x5f42: "fa1", // 彂
+ 0x5f43: "bi4", // 彃
+ 0x5f44: "kou1", // 彄
+ 0x5f45: "jian3", // 彅
+ 0x5f46: "bie4", // 彆
+ 0x5f47: "xiao1", // 彇
+ 0x5f48: "dan4", // 彈
+ 0x5f49: "guo1", // 彉
+ 0x5f4a: "jiang4", // 彊
+ 0x5f4b: "hong2", // 彋
+ 0x5f4c: "mi2", // 彌
+ 0x5f4d: "guo1", // 彍
+ 0x5f4e: "wan1", // 彎
+ 0x5f4f: "jue2", // 彏
+ 0x5f50: "ji4", // 彐
+ 0x5f51: "ji4", // 彑
+ 0x5f52: "gui1", // 归
+ 0x5f53: "dang1", // 当
+ 0x5f54: "lu4", // 彔
+ 0x5f55: "lu4", // 录
+ 0x5f56: "tuan4", // 彖
+ 0x5f57: "hui4", // 彗
+ 0x5f58: "zhi4", // 彘
+ 0x5f59: "hui4", // 彙
+ 0x5f5a: "hui4", // 彚
+ 0x5f5b: "yi2", // 彛
+ 0x5f5c: "yi2", // 彜
+ 0x5f5d: "yi2", // 彝
+ 0x5f5e: "yi2", // 彞
+ 0x5f5f: "yue1", // 彟
+ 0x5f60: "yue1", // 彠
+ 0x5f61: "shan1", // 彡
+ 0x5f62: "xing2", // 形
+ 0x5f63: "wen2", // 彣
+ 0x5f64: "tong2", // 彤
+ 0x5f65: "yan4", // 彥
+ 0x5f66: "yan4", // 彦
+ 0x5f67: "yu4", // 彧
+ 0x5f68: "chi1", // 彨
+ 0x5f69: "cai3", // 彩
+ 0x5f6a: "biao1", // 彪
+ 0x5f6b: "diao1", // 彫
+ 0x5f6c: "bin1", // 彬
+ 0x5f6d: "peng2", // 彭
+ 0x5f6e: "yong3", // 彮
+ 0x5f6f: "piao3", // 彯
+ 0x5f70: "zhang1", // 彰
+ 0x5f71: "ying3", // 影
+ 0x5f72: "chi1", // 彲
+ 0x5f73: "chi4", // 彳
+ 0x5f74: "zhuo2", // 彴
+ 0x5f75: "tuo3", // 彵
+ 0x5f76: "ji2", // 彶
+ 0x5f77: "fang3", // 彷
+ 0x5f78: "zhong1", // 彸
+ 0x5f79: "yi4", // 役
+ 0x5f7a: "wang2", // 彺
+ 0x5f7b: "che4", // 彻
+ 0x5f7c: "bi3", // 彼
+ 0x5f7d: "di1", // 彽
+ 0x5f7e: "ling2", // 彾
+ 0x5f7f: "fu2", // 彿
+ 0x5f80: "wang3", // 往
+ 0x5f81: "zheng1", // 征
+ 0x5f82: "cu2", // 徂
+ 0x5f83: "wang3", // 徃
+ 0x5f84: "jing4", // 径
+ 0x5f85: "dai4", // 待
+ 0x5f86: "xi1", // 徆
+ 0x5f87: "xun4", // 徇
+ 0x5f88: "hen3", // 很
+ 0x5f89: "yang2", // 徉
+ 0x5f8a: "huai2", // 徊
+ 0x5f8b: "lv4", // 律
+ 0x5f8c: "hou4", // 後
+ 0x5f8d: "wang3", // 徍
+ 0x5f8e: "cheng3", // 徎
+ 0x5f8f: "zhi4", // 徏
+ 0x5f90: "xu2", // 徐
+ 0x5f91: "jing4", // 徑
+ 0x5f92: "tu2", // 徒
+ 0x5f93: "cong2", // 従
+ 0x5f94: "zhi5", // 徔
+ 0x5f95: "lai2", // 徕
+ 0x5f96: "cong2", // 徖
+ 0x5f97: "de2", // 得
+ 0x5f98: "pai2", // 徘
+ 0x5f99: "xi3", // 徙
+ 0x5f9a: "dong1", // 徚
+ 0x5f9b: "ji4", // 徛
+ 0x5f9c: "chang2", // 徜
+ 0x5f9d: "zhi4", // 徝
+ 0x5f9e: "cong2", // 從
+ 0x5f9f: "zhou1", // 徟
+ 0x5fa0: "lai2", // 徠
+ 0x5fa1: "yu4", // 御
+ 0x5fa2: "xie4", // 徢
+ 0x5fa3: "jie4", // 徣
+ 0x5fa4: "jian4", // 徤
+ 0x5fa5: "shi4", // 徥
+ 0x5fa6: "jia3", // 徦
+ 0x5fa7: "bian4", // 徧
+ 0x5fa8: "huang2", // 徨
+ 0x5fa9: "fu4", // 復
+ 0x5faa: "xun2", // 循
+ 0x5fab: "wei3", // 徫
+ 0x5fac: "pang2", // 徬
+ 0x5fad: "yao2", // 徭
+ 0x5fae: "wei1", // 微
+ 0x5faf: "xi1", // 徯
+ 0x5fb0: "zheng1", // 徰
+ 0x5fb1: "piao4", // 徱
+ 0x5fb2: "ti2", // 徲
+ 0x5fb3: "de2", // 徳
+ 0x5fb4: "zheng1", // 徴
+ 0x5fb5: "zheng1", // 徵
+ 0x5fb6: "bie2", // 徶
+ 0x5fb7: "de2", // 德
+ 0x5fb8: "chong1", // 徸
+ 0x5fb9: "che4", // 徹
+ 0x5fba: "jiao3", // 徺
+ 0x5fbb: "hui4", // 徻
+ 0x5fbc: "jiao3", // 徼
+ 0x5fbd: "hui1", // 徽
+ 0x5fbe: "mei2", // 徾
+ 0x5fbf: "long4", // 徿
+ 0x5fc0: "xiang1", // 忀
+ 0x5fc1: "bao4", // 忁
+ 0x5fc2: "qu2", // 忂
+ 0x5fc3: "xin1", // 心
+ 0x5fc4: "xin5", // 忄
+ 0x5fc5: "bi4", // 必
+ 0x5fc6: "yi4", // 忆
+ 0x5fc7: "le4", // 忇
+ 0x5fc8: "ren2", // 忈
+ 0x5fc9: "dao1", // 忉
+ 0x5fca: "ding4", // 忊
+ 0x5fcb: "gai3", // 忋
+ 0x5fcc: "ji4", // 忌
+ 0x5fcd: "ren3", // 忍
+ 0x5fce: "ren2", // 忎
+ 0x5fcf: "chan4", // 忏
+ 0x5fd0: "tan3", // 忐
+ 0x5fd1: "te4", // 忑
+ 0x5fd2: "te4", // 忒
+ 0x5fd3: "gan1", // 忓
+ 0x5fd4: "qi4", // 忔
+ 0x5fd5: "shi4", // 忕
+ 0x5fd6: "cun3", // 忖
+ 0x5fd7: "zhi4", // 志
+ 0x5fd8: "wang4", // 忘
+ 0x5fd9: "mang2", // 忙
+ 0x5fda: "xi1", // 忚
+ 0x5fdb: "fan1", // 忛
+ 0x5fdc: "ying1", // 応
+ 0x5fdd: "tian3", // 忝
+ 0x5fde: "min2", // 忞
+ 0x5fdf: "wen3", // 忟
+ 0x5fe0: "zhong1", // 忠
+ 0x5fe1: "chong1", // 忡
+ 0x5fe2: "wu4", // 忢
+ 0x5fe3: "ji2", // 忣
+ 0x5fe4: "wu3", // 忤
+ 0x5fe5: "xi4", // 忥
+ 0x5fe6: "jia2", // 忦
+ 0x5fe7: "you1", // 忧
+ 0x5fe8: "wan4", // 忨
+ 0x5fe9: "cong1", // 忩
+ 0x5fea: "song1", // 忪
+ 0x5feb: "kuai4", // 快
+ 0x5fec: "yu4", // 忬
+ 0x5fed: "bian4", // 忭
+ 0x5fee: "zhi4", // 忮
+ 0x5fef: "qi2", // 忯
+ 0x5ff0: "cui4", // 忰
+ 0x5ff1: "chen2", // 忱
+ 0x5ff2: "tai4", // 忲
+ 0x5ff3: "tun2", // 忳
+ 0x5ff4: "qian2", // 忴
+ 0x5ff5: "nian4", // 念
+ 0x5ff6: "hun2", // 忶
+ 0x5ff7: "xiong1", // 忷
+ 0x5ff8: "niu3", // 忸
+ 0x5ff9: "kuang2", // 忹
+ 0x5ffa: "xian1", // 忺
+ 0x5ffb: "xin1", // 忻
+ 0x5ffc: "kang1", // 忼
+ 0x5ffd: "hu1", // 忽
+ 0x5ffe: "kai4", // 忾
+ 0x5fff: "fen4", // 忿
+ 0x6000: "huai2", // 怀
+ 0x6001: "tai4", // 态
+ 0x6002: "song3", // 怂
+ 0x6003: "wu3", // 怃
+ 0x6004: "ou4", // 怄
+ 0x6005: "chang4", // 怅
+ 0x6006: "chuang4", // 怆
+ 0x6007: "ju4", // 怇
+ 0x6008: "yi4", // 怈
+ 0x6009: "bao3", // 怉
+ 0x600a: "chao1", // 怊
+ 0x600b: "min2", // 怋
+ 0x600c: "pei1", // 怌
+ 0x600d: "zuo4", // 怍
+ 0x600e: "zen3", // 怎
+ 0x600f: "yang4", // 怏
+ 0x6010: "ju4", // 怐
+ 0x6011: "ban4", // 怑
+ 0x6012: "nu4", // 怒
+ 0x6013: "nao2", // 怓
+ 0x6014: "zheng1", // 怔
+ 0x6015: "pa4", // 怕
+ 0x6016: "bu4", // 怖
+ 0x6017: "tie1", // 怗
+ 0x6018: "hu4", // 怘
+ 0x6019: "hu4", // 怙
+ 0x601a: "ju4", // 怚
+ 0x601b: "da2", // 怛
+ 0x601c: "lian2", // 怜
+ 0x601d: "si1", // 思
+ 0x601e: "chou2", // 怞
+ 0x601f: "di4", // 怟
+ 0x6020: "dai4", // 怠
+ 0x6021: "yi2", // 怡
+ 0x6022: "tu1", // 怢
+ 0x6023: "you2", // 怣
+ 0x6024: "fu1", // 怤
+ 0x6025: "ji2", // 急
+ 0x6026: "peng1", // 怦
+ 0x6027: "xing4", // 性
+ 0x6028: "yuan4", // 怨
+ 0x6029: "ni2", // 怩
+ 0x602a: "guai4", // 怪
+ 0x602b: "fu2", // 怫
+ 0x602c: "xi4", // 怬
+ 0x602d: "bi4", // 怭
+ 0x602e: "you1", // 怮
+ 0x602f: "qie4", // 怯
+ 0x6030: "xuan4", // 怰
+ 0x6031: "cong1", // 怱
+ 0x6032: "bing3", // 怲
+ 0x6033: "huang3", // 怳
+ 0x6034: "xu4", // 怴
+ 0x6035: "chu4", // 怵
+ 0x6036: "bi4", // 怶
+ 0x6037: "shu4", // 怷
+ 0x6038: "xi1", // 怸
+ 0x6039: "tan1", // 怹
+ 0x603a: "yong3", // 怺
+ 0x603b: "zong3", // 总
+ 0x603c: "dui4", // 怼
+ 0x603d: "mo5", // 怽
+ 0x603e: "zhi3", // 怾
+ 0x603f: "yi4", // 怿
+ 0x6040: "shi4", // 恀
+ 0x6041: "nen4", // 恁
+ 0x6042: "xun2", // 恂
+ 0x6043: "shi4", // 恃
+ 0x6044: "xi4", // 恄
+ 0x6045: "lao3", // 恅
+ 0x6046: "heng2", // 恆
+ 0x6047: "kuang1", // 恇
+ 0x6048: "mou2", // 恈
+ 0x6049: "zhi3", // 恉
+ 0x604a: "xie2", // 恊
+ 0x604b: "lian4", // 恋
+ 0x604c: "tiao1", // 恌
+ 0x604d: "huang3", // 恍
+ 0x604e: "die2", // 恎
+ 0x604f: "hao4", // 恏
+ 0x6050: "kong3", // 恐
+ 0x6051: "gui3", // 恑
+ 0x6052: "heng2", // 恒
+ 0x6053: "xi1", // 恓
+ 0x6054: "jiao3", // 恔
+ 0x6055: "shu4", // 恕
+ 0x6056: "si1", // 恖
+ 0x6057: "hu1", // 恗
+ 0x6058: "qiu1", // 恘
+ 0x6059: "yang4", // 恙
+ 0x605a: "hui4", // 恚
+ 0x605b: "hui2", // 恛
+ 0x605c: "chi4", // 恜
+ 0x605d: "jia2", // 恝
+ 0x605e: "yi2", // 恞
+ 0x605f: "xiong1", // 恟
+ 0x6060: "guai4", // 恠
+ 0x6061: "lin4", // 恡
+ 0x6062: "hui1", // 恢
+ 0x6063: "zi4", // 恣
+ 0x6064: "xu4", // 恤
+ 0x6065: "chi3", // 恥
+ 0x6066: "shang4", // 恦
+ 0x6067: "nv4", // 恧
+ 0x6068: "hen4", // 恨
+ 0x6069: "en1", // 恩
+ 0x606a: "ke4", // 恪
+ 0x606b: "dong4", // 恫
+ 0x606c: "tian2", // 恬
+ 0x606d: "gong1", // 恭
+ 0x606e: "quan1", // 恮
+ 0x606f: "xi1", // 息
+ 0x6070: "qia4", // 恰
+ 0x6071: "yue4", // 恱
+ 0x6072: "peng1", // 恲
+ 0x6073: "ken3", // 恳
+ 0x6074: "de2", // 恴
+ 0x6075: "hui4", // 恵
+ 0x6076: "e4", // 恶
+ 0x6077: "xiao5", // 恷
+ 0x6078: "tong4", // 恸
+ 0x6079: "yan1", // 恹
+ 0x607a: "kai3", // 恺
+ 0x607b: "ce4", // 恻
+ 0x607c: "nao3", // 恼
+ 0x607d: "yun4", // 恽
+ 0x607e: "mang2", // 恾
+ 0x607f: "yong3", // 恿
+ 0x6080: "yong3", // 悀
+ 0x6081: "yuan1", // 悁
+ 0x6082: "pi1", // 悂
+ 0x6083: "kun3", // 悃
+ 0x6084: "qiao1", // 悄
+ 0x6085: "yue4", // 悅
+ 0x6086: "yu4", // 悆
+ 0x6087: "tu2", // 悇
+ 0x6088: "jie4", // 悈
+ 0x6089: "xi1", // 悉
+ 0x608a: "zhe2", // 悊
+ 0x608b: "lin4", // 悋
+ 0x608c: "ti4", // 悌
+ 0x608d: "han4", // 悍
+ 0x608e: "hao4", // 悎
+ 0x608f: "qie4", // 悏
+ 0x6090: "ti4", // 悐
+ 0x6091: "bu4", // 悑
+ 0x6092: "yi4", // 悒
+ 0x6093: "qian4", // 悓
+ 0x6094: "hui3", // 悔
+ 0x6095: "xi1", // 悕
+ 0x6096: "bei4", // 悖
+ 0x6097: "man2", // 悗
+ 0x6098: "yi1", // 悘
+ 0x6099: "heng1", // 悙
+ 0x609a: "song3", // 悚
+ 0x609b: "quan1", // 悛
+ 0x609c: "cheng3", // 悜
+ 0x609d: "kui1", // 悝
+ 0x609e: "wu4", // 悞
+ 0x609f: "wu4", // 悟
+ 0x60a0: "you1", // 悠
+ 0x60a1: "li2", // 悡
+ 0x60a2: "liang4", // 悢
+ 0x60a3: "huan4", // 患
+ 0x60a4: "cong1", // 悤
+ 0x60a5: "yi4", // 悥
+ 0x60a6: "yue4", // 悦
+ 0x60a7: "li4", // 悧
+ 0x60a8: "nin2", // 您
+ 0x60a9: "nao3", // 悩
+ 0x60aa: "e4", // 悪
+ 0x60ab: "que4", // 悫
+ 0x60ac: "xuan2", // 悬
+ 0x60ad: "qian1", // 悭
+ 0x60ae: "wu4", // 悮
+ 0x60af: "min3", // 悯
+ 0x60b0: "cong2", // 悰
+ 0x60b1: "fei3", // 悱
+ 0x60b2: "bei1", // 悲
+ 0x60b3: "de2", // 悳
+ 0x60b4: "cui4", // 悴
+ 0x60b5: "chang4", // 悵
+ 0x60b6: "men4", // 悶
+ 0x60b7: "san4", // 悷
+ 0x60b8: "ji4", // 悸
+ 0x60b9: "guan4", // 悹
+ 0x60ba: "guan4", // 悺
+ 0x60bb: "xing4", // 悻
+ 0x60bc: "dao4", // 悼
+ 0x60bd: "qi1", // 悽
+ 0x60be: "kong1", // 悾
+ 0x60bf: "tian3", // 悿
+ 0x60c0: "lun2", // 惀
+ 0x60c1: "xi1", // 惁
+ 0x60c2: "kan3", // 惂
+ 0x60c3: "gun3", // 惃
+ 0x60c4: "ni4", // 惄
+ 0x60c5: "qing2", // 情
+ 0x60c6: "chou2", // 惆
+ 0x60c7: "dun1", // 惇
+ 0x60c8: "guo3", // 惈
+ 0x60c9: "zhan1", // 惉
+ 0x60ca: "jing1", // 惊
+ 0x60cb: "wan3", // 惋
+ 0x60cc: "yuan1", // 惌
+ 0x60cd: "jin1", // 惍
+ 0x60ce: "ji4", // 惎
+ 0x60cf: "lan2", // 惏
+ 0x60d0: "yu4", // 惐
+ 0x60d1: "huo4", // 惑
+ 0x60d2: "he2", // 惒
+ 0x60d3: "quan2", // 惓
+ 0x60d4: "tan2", // 惔
+ 0x60d5: "ti4", // 惕
+ 0x60d6: "ti4", // 惖
+ 0x60d7: "nie4", // 惗
+ 0x60d8: "wang3", // 惘
+ 0x60d9: "chuo4", // 惙
+ 0x60da: "hu1", // 惚
+ 0x60db: "hun1", // 惛
+ 0x60dc: "xi1", // 惜
+ 0x60dd: "chang3", // 惝
+ 0x60de: "xin1", // 惞
+ 0x60df: "wei2", // 惟
+ 0x60e0: "hui4", // 惠
+ 0x60e1: "e4", // 惡
+ 0x60e2: "suo3", // 惢
+ 0x60e3: "zong3", // 惣
+ 0x60e4: "jian1", // 惤
+ 0x60e5: "yong3", // 惥
+ 0x60e6: "dian4", // 惦
+ 0x60e7: "ju4", // 惧
+ 0x60e8: "can3", // 惨
+ 0x60e9: "cheng2", // 惩
+ 0x60ea: "de2", // 惪
+ 0x60eb: "bei4", // 惫
+ 0x60ec: "qie4", // 惬
+ 0x60ed: "can2", // 惭
+ 0x60ee: "dan4", // 惮
+ 0x60ef: "guan4", // 惯
+ 0x60f0: "duo4", // 惰
+ 0x60f1: "nao3", // 惱
+ 0x60f2: "yun4", // 惲
+ 0x60f3: "xiang3", // 想
+ 0x60f4: "zhui4", // 惴
+ 0x60f5: "die2", // 惵
+ 0x60f6: "huang2", // 惶
+ 0x60f7: "chun3", // 惷
+ 0x60f8: "qiong2", // 惸
+ 0x60f9: "re3", // 惹
+ 0x60fa: "xing1", // 惺
+ 0x60fb: "ce4", // 惻
+ 0x60fc: "bian3", // 惼
+ 0x60fd: "min3", // 惽
+ 0x60fe: "zong1", // 惾
+ 0x60ff: "ti2", // 惿
+ 0x6100: "qiao3", // 愀
+ 0x6101: "chou2", // 愁
+ 0x6102: "bei4", // 愂
+ 0x6103: "xuan1", // 愃
+ 0x6104: "wei1", // 愄
+ 0x6105: "ge2", // 愅
+ 0x6106: "qian1", // 愆
+ 0x6107: "wei3", // 愇
+ 0x6108: "yu4", // 愈
+ 0x6109: "yu2", // 愉
+ 0x610a: "bi4", // 愊
+ 0x610b: "xuan1", // 愋
+ 0x610c: "huan4", // 愌
+ 0x610d: "min3", // 愍
+ 0x610e: "bi4", // 愎
+ 0x610f: "yi4", // 意
+ 0x6110: "mian3", // 愐
+ 0x6111: "yong3", // 愑
+ 0x6112: "kai4", // 愒
+ 0x6113: "dang4", // 愓
+ 0x6114: "yin1", // 愔
+ 0x6115: "e4", // 愕
+ 0x6116: "chen2", // 愖
+ 0x6117: "mao4", // 愗
+ 0x6118: "qia4", // 愘
+ 0x6119: "ke4", // 愙
+ 0x611a: "yu2", // 愚
+ 0x611b: "ai4", // 愛
+ 0x611c: "qie4", // 愜
+ 0x611d: "yan3", // 愝
+ 0x611e: "nuo4", // 愞
+ 0x611f: "gan3", // 感
+ 0x6120: "yun4", // 愠
+ 0x6121: "zong3", // 愡
+ 0x6122: "sai1", // 愢
+ 0x6123: "leng4", // 愣
+ 0x6124: "fen4", // 愤
+ 0x6125: "ying1", // 愥
+ 0x6126: "kui4", // 愦
+ 0x6127: "kui4", // 愧
+ 0x6128: "que4", // 愨
+ 0x6129: "gong1", // 愩
+ 0x612a: "yun2", // 愪
+ 0x612b: "su4", // 愫
+ 0x612c: "su4", // 愬
+ 0x612d: "qi2", // 愭
+ 0x612e: "yao2", // 愮
+ 0x612f: "song3", // 愯
+ 0x6130: "huang4", // 愰
+ 0x6131: "ji2", // 愱
+ 0x6132: "gu3", // 愲
+ 0x6133: "ju4", // 愳
+ 0x6134: "chuang4", // 愴
+ 0x6135: "ni4", // 愵
+ 0x6136: "xie2", // 愶
+ 0x6137: "kai3", // 愷
+ 0x6138: "zheng3", // 愸
+ 0x6139: "yong3", // 愹
+ 0x613a: "cao3", // 愺
+ 0x613b: "xun4", // 愻
+ 0x613c: "shen4", // 愼
+ 0x613d: "bo2", // 愽
+ 0x613e: "kai4", // 愾
+ 0x613f: "yuan4", // 愿
+ 0x6140: "xi4", // 慀
+ 0x6141: "hun4", // 慁
+ 0x6142: "yong3", // 慂
+ 0x6143: "yang3", // 慃
+ 0x6144: "li4", // 慄
+ 0x6145: "sao1", // 慅
+ 0x6146: "tao1", // 慆
+ 0x6147: "yin1", // 慇
+ 0x6148: "ci2", // 慈
+ 0x6149: "xu4", // 慉
+ 0x614a: "qian4", // 慊
+ 0x614b: "tai4", // 態
+ 0x614c: "huang1", // 慌
+ 0x614d: "yun4", // 慍
+ 0x614e: "shen4", // 慎
+ 0x614f: "ming3", // 慏
+ 0x6150: "gong5", // 慐
+ 0x6151: "she4", // 慑
+ 0x6152: "cong2", // 慒
+ 0x6153: "piao1", // 慓
+ 0x6154: "mu4", // 慔
+ 0x6155: "mu4", // 慕
+ 0x6156: "guo2", // 慖
+ 0x6157: "chi4", // 慗
+ 0x6158: "can3", // 慘
+ 0x6159: "can2", // 慙
+ 0x615a: "can2", // 慚
+ 0x615b: "cui1", // 慛
+ 0x615c: "min3", // 慜
+ 0x615d: "te4", // 慝
+ 0x615e: "zhang1", // 慞
+ 0x615f: "tong4", // 慟
+ 0x6160: "ao4", // 慠
+ 0x6161: "shuang3", // 慡
+ 0x6162: "man4", // 慢
+ 0x6163: "guan4", // 慣
+ 0x6164: "que4", // 慤
+ 0x6165: "zao4", // 慥
+ 0x6166: "jiu4", // 慦
+ 0x6167: "hui4", // 慧
+ 0x6168: "kai3", // 慨
+ 0x6169: "lian2", // 慩
+ 0x616a: "ou4", // 慪
+ 0x616b: "song3", // 慫
+ 0x616c: "qin2", // 慬
+ 0x616d: "yin4", // 慭
+ 0x616e: "lv4", // 慮
+ 0x616f: "shang1", // 慯
+ 0x6170: "wei4", // 慰
+ 0x6171: "tuan2", // 慱
+ 0x6172: "man2", // 慲
+ 0x6173: "qian1", // 慳
+ 0x6174: "she4", // 慴
+ 0x6175: "yong1", // 慵
+ 0x6176: "qing4", // 慶
+ 0x6177: "kang1", // 慷
+ 0x6178: "di4", // 慸
+ 0x6179: "zhi2", // 慹
+ 0x617a: "lou2", // 慺
+ 0x617b: "juan4", // 慻
+ 0x617c: "qi1", // 慼
+ 0x617d: "qi1", // 慽
+ 0x617e: "yu4", // 慾
+ 0x617f: "ping2", // 慿
+ 0x6180: "liao2", // 憀
+ 0x6181: "cong4", // 憁
+ 0x6182: "you1", // 憂
+ 0x6183: "chong1", // 憃
+ 0x6184: "zhi4", // 憄
+ 0x6185: "tong4", // 憅
+ 0x6186: "cheng1", // 憆
+ 0x6187: "qi4", // 憇
+ 0x6188: "qu1", // 憈
+ 0x6189: "peng2", // 憉
+ 0x618a: "bei4", // 憊
+ 0x618b: "bie1", // 憋
+ 0x618c: "qiong2", // 憌
+ 0x618d: "jiao1", // 憍
+ 0x618e: "zeng1", // 憎
+ 0x618f: "chi4", // 憏
+ 0x6190: "lian2", // 憐
+ 0x6191: "ping2", // 憑
+ 0x6192: "kui4", // 憒
+ 0x6193: "hui4", // 憓
+ 0x6194: "qiao2", // 憔
+ 0x6195: "cheng2", // 憕
+ 0x6196: "yin4", // 憖
+ 0x6197: "yin4", // 憗
+ 0x6198: "xi3", // 憘
+ 0x6199: "xi1", // 憙
+ 0x619a: "dan4", // 憚
+ 0x619b: "tan2", // 憛
+ 0x619c: "duo4", // 憜
+ 0x619d: "dui4", // 憝
+ 0x619e: "dui4", // 憞
+ 0x619f: "su4", // 憟
+ 0x61a0: "jue2", // 憠
+ 0x61a1: "ce4", // 憡
+ 0x61a2: "xiao1", // 憢
+ 0x61a3: "fan1", // 憣
+ 0x61a4: "fen4", // 憤
+ 0x61a5: "lao2", // 憥
+ 0x61a6: "lao4", // 憦
+ 0x61a7: "chong1", // 憧
+ 0x61a8: "han1", // 憨
+ 0x61a9: "qi4", // 憩
+ 0x61aa: "xian2", // 憪
+ 0x61ab: "min3", // 憫
+ 0x61ac: "jing3", // 憬
+ 0x61ad: "liao3", // 憭
+ 0x61ae: "wu3", // 憮
+ 0x61af: "can3", // 憯
+ 0x61b0: "jue2", // 憰
+ 0x61b1: "cu4", // 憱
+ 0x61b2: "xian4", // 憲
+ 0x61b3: "tan3", // 憳
+ 0x61b4: "sheng2", // 憴
+ 0x61b5: "pi1", // 憵
+ 0x61b6: "yi4", // 憶
+ 0x61b7: "chu4", // 憷
+ 0x61b8: "xian1", // 憸
+ 0x61b9: "nao2", // 憹
+ 0x61ba: "dan4", // 憺
+ 0x61bb: "tan3", // 憻
+ 0x61bc: "jing3", // 憼
+ 0x61bd: "song1", // 憽
+ 0x61be: "han4", // 憾
+ 0x61bf: "jiao3", // 憿
+ 0x61c0: "wei4", // 懀
+ 0x61c1: "xuan1", // 懁
+ 0x61c2: "dong3", // 懂
+ 0x61c3: "qin2", // 懃
+ 0x61c4: "qin2", // 懄
+ 0x61c5: "ju4", // 懅
+ 0x61c6: "cao3", // 懆
+ 0x61c7: "ken3", // 懇
+ 0x61c8: "xie4", // 懈
+ 0x61c9: "ying1", // 應
+ 0x61ca: "ao4", // 懊
+ 0x61cb: "mao4", // 懋
+ 0x61cc: "yi4", // 懌
+ 0x61cd: "lin3", // 懍
+ 0x61ce: "se4", // 懎
+ 0x61cf: "jun4", // 懏
+ 0x61d0: "huai2", // 懐
+ 0x61d1: "men4", // 懑
+ 0x61d2: "lan3", // 懒
+ 0x61d3: "ai4", // 懓
+ 0x61d4: "lin3", // 懔
+ 0x61d5: "yan1", // 懕
+ 0x61d6: "kuo4", // 懖
+ 0x61d7: "xia4", // 懗
+ 0x61d8: "chi4", // 懘
+ 0x61d9: "yu3", // 懙
+ 0x61da: "yin4", // 懚
+ 0x61db: "dai1", // 懛
+ 0x61dc: "meng3", // 懜
+ 0x61dd: "ai4", // 懝
+ 0x61de: "meng2", // 懞
+ 0x61df: "dui4", // 懟
+ 0x61e0: "qi2", // 懠
+ 0x61e1: "mo3", // 懡
+ 0x61e2: "lan2", // 懢
+ 0x61e3: "men4", // 懣
+ 0x61e4: "chou2", // 懤
+ 0x61e5: "zhi4", // 懥
+ 0x61e6: "nuo4", // 懦
+ 0x61e7: "nuo4", // 懧
+ 0x61e8: "yan1", // 懨
+ 0x61e9: "yang3", // 懩
+ 0x61ea: "bo2", // 懪
+ 0x61eb: "zhi4", // 懫
+ 0x61ec: "kuang4", // 懬
+ 0x61ed: "kuang3", // 懭
+ 0x61ee: "you3", // 懮
+ 0x61ef: "fu1", // 懯
+ 0x61f0: "liu2", // 懰
+ 0x61f1: "mie4", // 懱
+ 0x61f2: "cheng2", // 懲
+ 0x61f3: "hui5", // 懳
+ 0x61f4: "chan4", // 懴
+ 0x61f5: "meng3", // 懵
+ 0x61f6: "lan3", // 懶
+ 0x61f7: "huai2", // 懷
+ 0x61f8: "xuan2", // 懸
+ 0x61f9: "rang4", // 懹
+ 0x61fa: "chan4", // 懺
+ 0x61fb: "ji4", // 懻
+ 0x61fc: "ju4", // 懼
+ 0x61fd: "huan1", // 懽
+ 0x61fe: "she4", // 懾
+ 0x61ff: "yi4", // 懿
+ 0x6200: "lian4", // 戀
+ 0x6201: "nan3", // 戁
+ 0x6202: "mi2", // 戂
+ 0x6203: "tang3", // 戃
+ 0x6204: "jue2", // 戄
+ 0x6205: "gang4", // 戅
+ 0x6206: "gang4", // 戆
+ 0x6207: "zhuang4", // 戇
+ 0x6208: "ge1", // 戈
+ 0x6209: "yue4", // 戉
+ 0x620a: "wu4", // 戊
+ 0x620b: "jian1", // 戋
+ 0x620c: "xu1", // 戌
+ 0x620d: "shu4", // 戍
+ 0x620e: "rong2", // 戎
+ 0x620f: "xi4", // 戏
+ 0x6210: "cheng2", // 成
+ 0x6211: "wo3", // 我
+ 0x6212: "jie4", // 戒
+ 0x6213: "ge1", // 戓
+ 0x6214: "jian1", // 戔
+ 0x6215: "qiang1", // 戕
+ 0x6216: "huo4", // 或
+ 0x6217: "qiang1", // 戗
+ 0x6218: "zhan4", // 战
+ 0x6219: "dong4", // 戙
+ 0x621a: "qi1", // 戚
+ 0x621b: "jia2", // 戛
+ 0x621c: "die2", // 戜
+ 0x621d: "zei2", // 戝
+ 0x621e: "jia2", // 戞
+ 0x621f: "ji3", // 戟
+ 0x6220: "zhi1", // 戠
+ 0x6221: "kan1", // 戡
+ 0x6222: "ji2", // 戢
+ 0x6223: "kui2", // 戣
+ 0x6224: "gai4", // 戤
+ 0x6225: "deng3", // 戥
+ 0x6226: "zhan4", // 戦
+ 0x6227: "qiang1", // 戧
+ 0x6228: "ge1", // 戨
+ 0x6229: "jian3", // 戩
+ 0x622a: "jie2", // 截
+ 0x622b: "yu4", // 戫
+ 0x622c: "jian3", // 戬
+ 0x622d: "yan3", // 戭
+ 0x622e: "lu4", // 戮
+ 0x622f: "hu1", // 戯
+ 0x6230: "zhan4", // 戰
+ 0x6231: "xi4", // 戱
+ 0x6232: "xi4", // 戲
+ 0x6233: "chuo1", // 戳
+ 0x6234: "dai4", // 戴
+ 0x6235: "qu2", // 戵
+ 0x6236: "hu4", // 戶
+ 0x6237: "hu4", // 户
+ 0x6238: "hu4", // 戸
+ 0x6239: "e4", // 戹
+ 0x623a: "shi4", // 戺
+ 0x623b: "ti4", // 戻
+ 0x623c: "mao3", // 戼
+ 0x623d: "hu4", // 戽
+ 0x623e: "li4", // 戾
+ 0x623f: "fang2", // 房
+ 0x6240: "suo3", // 所
+ 0x6241: "bian3", // 扁
+ 0x6242: "dian4", // 扂
+ 0x6243: "jiong1", // 扃
+ 0x6244: "shang3", // 扄
+ 0x6245: "yi2", // 扅
+ 0x6246: "yi3", // 扆
+ 0x6247: "shan4", // 扇
+ 0x6248: "hu4", // 扈
+ 0x6249: "fei1", // 扉
+ 0x624a: "yan3", // 扊
+ 0x624b: "shou3", // 手
+ 0x624c: "shou5", // 扌
+ 0x624d: "cai2", // 才
+ 0x624e: "zha1", // 扎
+ 0x624f: "qiu2", // 扏
+ 0x6250: "le4", // 扐
+ 0x6251: "pu1", // 扑
+ 0x6252: "ba1", // 扒
+ 0x6253: "da3", // 打
+ 0x6254: "reng1", // 扔
+ 0x6255: "fan3", // 払
+ 0x6256: "ru4", // 扖
+ 0x6257: "zai4", // 扗
+ 0x6258: "tuo1", // 托
+ 0x6259: "zhang4", // 扙
+ 0x625a: "diao3", // 扚
+ 0x625b: "kang2", // 扛
+ 0x625c: "yu1", // 扜
+ 0x625d: "ku1", // 扝
+ 0x625e: "gan3", // 扞
+ 0x625f: "shen1", // 扟
+ 0x6260: "cha1", // 扠
+ 0x6261: "tuo1", // 扡
+ 0x6262: "gu3", // 扢
+ 0x6263: "kou4", // 扣
+ 0x6264: "wu4", // 扤
+ 0x6265: "den4", // 扥
+ 0x6266: "qian1", // 扦
+ 0x6267: "zhi2", // 执
+ 0x6268: "ren4", // 扨
+ 0x6269: "kuo4", // 扩
+ 0x626a: "men2", // 扪
+ 0x626b: "sao3", // 扫
+ 0x626c: "yang2", // 扬
+ 0x626d: "niu3", // 扭
+ 0x626e: "ban4", // 扮
+ 0x626f: "che3", // 扯
+ 0x6270: "rao3", // 扰
+ 0x6271: "xi1", // 扱
+ 0x6272: "qian2", // 扲
+ 0x6273: "ban1", // 扳
+ 0x6274: "jia2", // 扴
+ 0x6275: "yu2", // 扵
+ 0x6276: "fu2", // 扶
+ 0x6277: "ao4", // 扷
+ 0x6278: "xi1", // 扸
+ 0x6279: "pi1", // 批
+ 0x627a: "zhi3", // 扺
+ 0x627b: "zhi4", // 扻
+ 0x627c: "e4", // 扼
+ 0x627d: "den4", // 扽
+ 0x627e: "zhao3", // 找
+ 0x627f: "cheng2", // 承
+ 0x6280: "ji4", // 技
+ 0x6281: "yan3", // 抁
+ 0x6282: "kuang2", // 抂
+ 0x6283: "bian4", // 抃
+ 0x6284: "chao1", // 抄
+ 0x6285: "ju1", // 抅
+ 0x6286: "wen3", // 抆
+ 0x6287: "hu2", // 抇
+ 0x6288: "yue4", // 抈
+ 0x6289: "jue2", // 抉
+ 0x628a: "ba3", // 把
+ 0x628b: "qin4", // 抋
+ 0x628c: "dan3", // 抌
+ 0x628d: "zheng3", // 抍
+ 0x628e: "yun3", // 抎
+ 0x628f: "wan2", // 抏
+ 0x6290: "ne4", // 抐
+ 0x6291: "yi4", // 抑
+ 0x6292: "shu1", // 抒
+ 0x6293: "zhua1", // 抓
+ 0x6294: "pou2", // 抔
+ 0x6295: "tou2", // 投
+ 0x6296: "dou3", // 抖
+ 0x6297: "kang4", // 抗
+ 0x6298: "zhe2", // 折
+ 0x6299: "pou2", // 抙
+ 0x629a: "fu3", // 抚
+ 0x629b: "pao1", // 抛
+ 0x629c: "ba2", // 抜
+ 0x629d: "ao3", // 抝
+ 0x629e: "ze2", // 択
+ 0x629f: "tuan2", // 抟
+ 0x62a0: "kou1", // 抠
+ 0x62a1: "lun1", // 抡
+ 0x62a2: "qiang3", // 抢
+ 0x62a3: "yun5", // 抣
+ 0x62a4: "hu4", // 护
+ 0x62a5: "bao4", // 报
+ 0x62a6: "bing3", // 抦
+ 0x62a7: "zhi3", // 抧
+ 0x62a8: "peng1", // 抨
+ 0x62a9: "nan2", // 抩
+ 0x62aa: "bu4", // 抪
+ 0x62ab: "pi1", // 披
+ 0x62ac: "tai2", // 抬
+ 0x62ad: "yao3", // 抭
+ 0x62ae: "zhen3", // 抮
+ 0x62af: "zha1", // 抯
+ 0x62b0: "yang1", // 抰
+ 0x62b1: "bao4", // 抱
+ 0x62b2: "he1", // 抲
+ 0x62b3: "ni3", // 抳
+ 0x62b4: "ye4", // 抴
+ 0x62b5: "di3", // 抵
+ 0x62b6: "chi4", // 抶
+ 0x62b7: "pi1", // 抷
+ 0x62b8: "jia1", // 抸
+ 0x62b9: "mo3", // 抹
+ 0x62ba: "mei4", // 抺
+ 0x62bb: "chen1", // 抻
+ 0x62bc: "ya1", // 押
+ 0x62bd: "chou1", // 抽
+ 0x62be: "qu1", // 抾
+ 0x62bf: "min3", // 抿
+ 0x62c0: "chu4", // 拀
+ 0x62c1: "jia1", // 拁
+ 0x62c2: "fu2", // 拂
+ 0x62c3: "zha3", // 拃
+ 0x62c4: "zhu3", // 拄
+ 0x62c5: "dan1", // 担
+ 0x62c6: "chai1", // 拆
+ 0x62c7: "mu3", // 拇
+ 0x62c8: "nian1", // 拈
+ 0x62c9: "la1", // 拉
+ 0x62ca: "fu3", // 拊
+ 0x62cb: "pao1", // 拋
+ 0x62cc: "ban4", // 拌
+ 0x62cd: "pai1", // 拍
+ 0x62ce: "lin1", // 拎
+ 0x62cf: "na2", // 拏
+ 0x62d0: "guai3", // 拐
+ 0x62d1: "qian2", // 拑
+ 0x62d2: "ju4", // 拒
+ 0x62d3: "ta4", // 拓
+ 0x62d4: "ba2", // 拔
+ 0x62d5: "tuo1", // 拕
+ 0x62d6: "tuo1", // 拖
+ 0x62d7: "ao3", // 拗
+ 0x62d8: "ju1", // 拘
+ 0x62d9: "zhuo1", // 拙
+ 0x62da: "pan4", // 拚
+ 0x62db: "zhao1", // 招
+ 0x62dc: "bai4", // 拜
+ 0x62dd: "bai4", // 拝
+ 0x62de: "di3", // 拞
+ 0x62df: "ni3", // 拟
+ 0x62e0: "ju4", // 拠
+ 0x62e1: "kuo4", // 拡
+ 0x62e2: "long3", // 拢
+ 0x62e3: "jian3", // 拣
+ 0x62e4: "qia2", // 拤
+ 0x62e5: "yong1", // 拥
+ 0x62e6: "lan2", // 拦
+ 0x62e7: "ning2", // 拧
+ 0x62e8: "bo1", // 拨
+ 0x62e9: "ze2", // 择
+ 0x62ea: "qian1", // 拪
+ 0x62eb: "hen2", // 拫
+ 0x62ec: "kuo4", // 括
+ 0x62ed: "shi4", // 拭
+ 0x62ee: "jie2", // 拮
+ 0x62ef: "zheng3", // 拯
+ 0x62f0: "nin3", // 拰
+ 0x62f1: "gong3", // 拱
+ 0x62f2: "gong3", // 拲
+ 0x62f3: "quan2", // 拳
+ 0x62f4: "shuan1", // 拴
+ 0x62f5: "cun2", // 拵
+ 0x62f6: "za1", // 拶
+ 0x62f7: "kao3", // 拷
+ 0x62f8: "yi2", // 拸
+ 0x62f9: "xie2", // 拹
+ 0x62fa: "ce4", // 拺
+ 0x62fb: "hui1", // 拻
+ 0x62fc: "pin1", // 拼
+ 0x62fd: "zhuai1", // 拽
+ 0x62fe: "shi2", // 拾
+ 0x62ff: "na2", // 拿
+ 0x6300: "bai1", // 挀
+ 0x6301: "chi2", // 持
+ 0x6302: "gua4", // 挂
+ 0x6303: "zhi4", // 挃
+ 0x6304: "kuo4", // 挄
+ 0x6305: "duo3", // 挅
+ 0x6306: "duo3", // 挆
+ 0x6307: "zhi3", // 指
+ 0x6308: "qie4", // 挈
+ 0x6309: "an4", // 按
+ 0x630a: "nong4", // 挊
+ 0x630b: "zhen4", // 挋
+ 0x630c: "ge2", // 挌
+ 0x630d: "jiao4", // 挍
+ 0x630e: "kua4", // 挎
+ 0x630f: "dong4", // 挏
+ 0x6310: "na2", // 挐
+ 0x6311: "tiao1", // 挑
+ 0x6312: "lie4", // 挒
+ 0x6313: "zha1", // 挓
+ 0x6314: "lv3", // 挔
+ 0x6315: "die2", // 挕
+ 0x6316: "wa1", // 挖
+ 0x6317: "jue2", // 挗
+ 0x6318: "lie3", // 挘
+ 0x6319: "ju3", // 挙
+ 0x631a: "zhi4", // 挚
+ 0x631b: "luan2", // 挛
+ 0x631c: "ya4", // 挜
+ 0x631d: "wo1", // 挝
+ 0x631e: "ta4", // 挞
+ 0x631f: "xie2", // 挟
+ 0x6320: "nao2", // 挠
+ 0x6321: "dang3", // 挡
+ 0x6322: "jiao3", // 挢
+ 0x6323: "zheng1", // 挣
+ 0x6324: "ji3", // 挤
+ 0x6325: "hui1", // 挥
+ 0x6326: "xian2", // 挦
+ 0x6327: "yu3", // 挧
+ 0x6328: "ai1", // 挨
+ 0x6329: "tuo1", // 挩
+ 0x632a: "nuo2", // 挪
+ 0x632b: "cuo4", // 挫
+ 0x632c: "bo2", // 挬
+ 0x632d: "geng3", // 挭
+ 0x632e: "ti3", // 挮
+ 0x632f: "zhen4", // 振
+ 0x6330: "cheng2", // 挰
+ 0x6331: "sa1", // 挱
+ 0x6332: "sa1", // 挲
+ 0x6333: "keng1", // 挳
+ 0x6334: "mei3", // 挴
+ 0x6335: "nong4", // 挵
+ 0x6336: "ju1", // 挶
+ 0x6337: "peng2", // 挷
+ 0x6338: "jian3", // 挸
+ 0x6339: "yi4", // 挹
+ 0x633a: "ting3", // 挺
+ 0x633b: "shan1", // 挻
+ 0x633c: "rua2", // 挼
+ 0x633d: "wan3", // 挽
+ 0x633e: "xie2", // 挾
+ 0x633f: "cha1", // 挿
+ 0x6340: "feng2", // 捀
+ 0x6341: "jiao3", // 捁
+ 0x6342: "wu3", // 捂
+ 0x6343: "jun4", // 捃
+ 0x6344: "jiu4", // 捄
+ 0x6345: "tong3", // 捅
+ 0x6346: "kun3", // 捆
+ 0x6347: "huo4", // 捇
+ 0x6348: "tu2", // 捈
+ 0x6349: "zhuo1", // 捉
+ 0x634a: "pou2", // 捊
+ 0x634b: "lv3", // 捋
+ 0x634c: "ba1", // 捌
+ 0x634d: "han4", // 捍
+ 0x634e: "shao1", // 捎
+ 0x634f: "nie1", // 捏
+ 0x6350: "juan1", // 捐
+ 0x6351: "ze4", // 捑
+ 0x6352: "shu4", // 捒
+ 0x6353: "ye2", // 捓
+ 0x6354: "jue2", // 捔
+ 0x6355: "bu3", // 捕
+ 0x6356: "wan2", // 捖
+ 0x6357: "bu4", // 捗
+ 0x6358: "zun4", // 捘
+ 0x6359: "ye4", // 捙
+ 0x635a: "zhai1", // 捚
+ 0x635b: "lv3", // 捛
+ 0x635c: "sou1", // 捜
+ 0x635d: "tuo1", // 捝
+ 0x635e: "lao1", // 捞
+ 0x635f: "sun3", // 损
+ 0x6360: "bang1", // 捠
+ 0x6361: "jian3", // 捡
+ 0x6362: "huan4", // 换
+ 0x6363: "dao3", // 捣
+ 0x6364: "wei3", // 捤
+ 0x6365: "wan4", // 捥
+ 0x6366: "qin2", // 捦
+ 0x6367: "peng3", // 捧
+ 0x6368: "she3", // 捨
+ 0x6369: "lie4", // 捩
+ 0x636a: "min2", // 捪
+ 0x636b: "men2", // 捫
+ 0x636c: "fu3", // 捬
+ 0x636d: "bai3", // 捭
+ 0x636e: "ju4", // 据
+ 0x636f: "dao2", // 捯
+ 0x6370: "wo3", // 捰
+ 0x6371: "ai2", // 捱
+ 0x6372: "juan3", // 捲
+ 0x6373: "yue4", // 捳
+ 0x6374: "zong3", // 捴
+ 0x6375: "chen1", // 捵
+ 0x6376: "chui2", // 捶
+ 0x6377: "jie2", // 捷
+ 0x6378: "tu1", // 捸
+ 0x6379: "ben4", // 捹
+ 0x637a: "na4", // 捺
+ 0x637b: "nian3", // 捻
+ 0x637c: "ruo2", // 捼
+ 0x637d: "zuo2", // 捽
+ 0x637e: "wo4", // 捾
+ 0x637f: "qi1", // 捿
+ 0x6380: "xian1", // 掀
+ 0x6381: "cheng2", // 掁
+ 0x6382: "dian1", // 掂
+ 0x6383: "sao3", // 掃
+ 0x6384: "lun1", // 掄
+ 0x6385: "qing4", // 掅
+ 0x6386: "gang1", // 掆
+ 0x6387: "duo1", // 掇
+ 0x6388: "shou4", // 授
+ 0x6389: "diao4", // 掉
+ 0x638a: "pou2", // 掊
+ 0x638b: "di3", // 掋
+ 0x638c: "zhang3", // 掌
+ 0x638d: "hun4", // 掍
+ 0x638e: "ji3", // 掎
+ 0x638f: "tao1", // 掏
+ 0x6390: "qia1", // 掐
+ 0x6391: "qi2", // 掑
+ 0x6392: "pai2", // 排
+ 0x6393: "shu1", // 掓
+ 0x6394: "qian1", // 掔
+ 0x6395: "ling2", // 掕
+ 0x6396: "ye1", // 掖
+ 0x6397: "ya4", // 掗
+ 0x6398: "jue2", // 掘
+ 0x6399: "zheng1", // 掙
+ 0x639a: "liang3", // 掚
+ 0x639b: "gua4", // 掛
+ 0x639c: "yi4", // 掜
+ 0x639d: "huo4", // 掝
+ 0x639e: "shan4", // 掞
+ 0x639f: "zheng3", // 掟
+ 0x63a0: "lve4", // 掠
+ 0x63a1: "cai3", // 採
+ 0x63a2: "tan4", // 探
+ 0x63a3: "che4", // 掣
+ 0x63a4: "bing1", // 掤
+ 0x63a5: "jie1", // 接
+ 0x63a6: "ti4", // 掦
+ 0x63a7: "kong4", // 控
+ 0x63a8: "tui1", // 推
+ 0x63a9: "yan3", // 掩
+ 0x63aa: "cuo4", // 措
+ 0x63ab: "zhou1", // 掫
+ 0x63ac: "ju1", // 掬
+ 0x63ad: "tian4", // 掭
+ 0x63ae: "qian2", // 掮
+ 0x63af: "ken4", // 掯
+ 0x63b0: "bai1", // 掰
+ 0x63b1: "pa2", // 掱
+ 0x63b2: "jie1", // 掲
+ 0x63b3: "lu3", // 掳
+ 0x63b4: "guai1", // 掴
+ 0x63b5: "ming5", // 掵
+ 0x63b6: "jie2", // 掶
+ 0x63b7: "zhi4", // 掷
+ 0x63b8: "dan3", // 掸
+ 0x63b9: "meng5", // 掹
+ 0x63ba: "can4", // 掺
+ 0x63bb: "sao1", // 掻
+ 0x63bc: "guan4", // 掼
+ 0x63bd: "peng4", // 掽
+ 0x63be: "yuan4", // 掾
+ 0x63bf: "nuo4", // 掿
+ 0x63c0: "jian3", // 揀
+ 0x63c1: "zheng1", // 揁
+ 0x63c2: "jiu1", // 揂
+ 0x63c3: "jian3", // 揃
+ 0x63c4: "yu2", // 揄
+ 0x63c5: "yan2", // 揅
+ 0x63c6: "kui2", // 揆
+ 0x63c7: "nan3", // 揇
+ 0x63c8: "hong1", // 揈
+ 0x63c9: "rou2", // 揉
+ 0x63ca: "pi4", // 揊
+ 0x63cb: "wei1", // 揋
+ 0x63cc: "sai1", // 揌
+ 0x63cd: "zou4", // 揍
+ 0x63ce: "xuan1", // 揎
+ 0x63cf: "miao2", // 描
+ 0x63d0: "ti2", // 提
+ 0x63d1: "nie1", // 揑
+ 0x63d2: "cha1", // 插
+ 0x63d3: "shi4", // 揓
+ 0x63d4: "zong3", // 揔
+ 0x63d5: "zhen4", // 揕
+ 0x63d6: "yi1", // 揖
+ 0x63d7: "xun2", // 揗
+ 0x63d8: "yong2", // 揘
+ 0x63d9: "bian1", // 揙
+ 0x63da: "yang2", // 揚
+ 0x63db: "huan4", // 換
+ 0x63dc: "yan3", // 揜
+ 0x63dd: "zan3", // 揝
+ 0x63de: "an3", // 揞
+ 0x63df: "xu1", // 揟
+ 0x63e0: "ya4", // 揠
+ 0x63e1: "wo4", // 握
+ 0x63e2: "ke2", // 揢
+ 0x63e3: "chuai1", // 揣
+ 0x63e4: "ji2", // 揤
+ 0x63e5: "ti4", // 揥
+ 0x63e6: "la2", // 揦
+ 0x63e7: "la4", // 揧
+ 0x63e8: "chen2", // 揨
+ 0x63e9: "kai1", // 揩
+ 0x63ea: "jiu1", // 揪
+ 0x63eb: "jiu1", // 揫
+ 0x63ec: "tu2", // 揬
+ 0x63ed: "jie1", // 揭
+ 0x63ee: "hui1", // 揮
+ 0x63ef: "gen4", // 揯
+ 0x63f0: "chong4", // 揰
+ 0x63f1: "xiao1", // 揱
+ 0x63f2: "die2", // 揲
+ 0x63f3: "xie1", // 揳
+ 0x63f4: "yuan2", // 援
+ 0x63f5: "qian2", // 揵
+ 0x63f6: "ye2", // 揶
+ 0x63f7: "cha1", // 揷
+ 0x63f8: "zha1", // 揸
+ 0x63f9: "bei1", // 揹
+ 0x63fa: "yao2", // 揺
+ 0x63fb: "wei1", // 揻
+ 0x63fc: "beng5", // 揼
+ 0x63fd: "lan3", // 揽
+ 0x63fe: "wen4", // 揾
+ 0x63ff: "qin4", // 揿
+ 0x6400: "chan1", // 搀
+ 0x6401: "ge1", // 搁
+ 0x6402: "lou3", // 搂
+ 0x6403: "zong3", // 搃
+ 0x6404: "gen4", // 搄
+ 0x6405: "jiao3", // 搅
+ 0x6406: "gou4", // 搆
+ 0x6407: "qin4", // 搇
+ 0x6408: "rong2", // 搈
+ 0x6409: "que4", // 搉
+ 0x640a: "chou1", // 搊
+ 0x640b: "chuai1", // 搋
+ 0x640c: "zhan3", // 搌
+ 0x640d: "sun3", // 損
+ 0x640e: "sun1", // 搎
+ 0x640f: "bo2", // 搏
+ 0x6410: "chu4", // 搐
+ 0x6411: "rong2", // 搑
+ 0x6412: "bang4", // 搒
+ 0x6413: "cuo1", // 搓
+ 0x6414: "sao1", // 搔
+ 0x6415: "ke1", // 搕
+ 0x6416: "yao2", // 搖
+ 0x6417: "dao3", // 搗
+ 0x6418: "zhi1", // 搘
+ 0x6419: "nu4", // 搙
+ 0x641a: "la1", // 搚
+ 0x641b: "jian1", // 搛
+ 0x641c: "sou1", // 搜
+ 0x641d: "qiu3", // 搝
+ 0x641e: "gao3", // 搞
+ 0x641f: "xian3", // 搟
+ 0x6420: "shuo4", // 搠
+ 0x6421: "sang3", // 搡
+ 0x6422: "jin4", // 搢
+ 0x6423: "mie4", // 搣
+ 0x6424: "e4", // 搤
+ 0x6425: "chui2", // 搥
+ 0x6426: "nuo4", // 搦
+ 0x6427: "shan1", // 搧
+ 0x6428: "ta4", // 搨
+ 0x6429: "zha3", // 搩
+ 0x642a: "tang2", // 搪
+ 0x642b: "pan2", // 搫
+ 0x642c: "ban1", // 搬
+ 0x642d: "da1", // 搭
+ 0x642e: "li4", // 搮
+ 0x642f: "tao1", // 搯
+ 0x6430: "hu2", // 搰
+ 0x6431: "zhi4", // 搱
+ 0x6432: "wa1", // 搲
+ 0x6433: "hua2", // 搳
+ 0x6434: "qian1", // 搴
+ 0x6435: "wen4", // 搵
+ 0x6436: "qiang3", // 搶
+ 0x6437: "tian2", // 搷
+ 0x6438: "zhen1", // 搸
+ 0x6439: "e4", // 搹
+ 0x643a: "xie2", // 携
+ 0x643b: "nuo4", // 搻
+ 0x643c: "quan2", // 搼
+ 0x643d: "cha2", // 搽
+ 0x643e: "zha4", // 搾
+ 0x643f: "ge2", // 搿
+ 0x6440: "wu3", // 摀
+ 0x6441: "en4", // 摁
+ 0x6442: "she4", // 摂
+ 0x6443: "kang2", // 摃
+ 0x6444: "she4", // 摄
+ 0x6445: "shu1", // 摅
+ 0x6446: "bai3", // 摆
+ 0x6447: "yao2", // 摇
+ 0x6448: "bin4", // 摈
+ 0x6449: "sou1", // 摉
+ 0x644a: "tan1", // 摊
+ 0x644b: "sa4", // 摋
+ 0x644c: "chan3", // 摌
+ 0x644d: "suo1", // 摍
+ 0x644e: "jiu1", // 摎
+ 0x644f: "chong1", // 摏
+ 0x6450: "chuang1", // 摐
+ 0x6451: "guai1", // 摑
+ 0x6452: "bing3", // 摒
+ 0x6453: "feng2", // 摓
+ 0x6454: "shuai1", // 摔
+ 0x6455: "di4", // 摕
+ 0x6456: "qi4", // 摖
+ 0x6457: "sou1", // 摗
+ 0x6458: "zhai1", // 摘
+ 0x6459: "lian3", // 摙
+ 0x645a: "cheng1", // 摚
+ 0x645b: "chi1", // 摛
+ 0x645c: "guan4", // 摜
+ 0x645d: "lu4", // 摝
+ 0x645e: "luo4", // 摞
+ 0x645f: "lou3", // 摟
+ 0x6460: "zong3", // 摠
+ 0x6461: "gai4", // 摡
+ 0x6462: "hu4", // 摢
+ 0x6463: "zha1", // 摣
+ 0x6464: "chuang3", // 摤
+ 0x6465: "tang4", // 摥
+ 0x6466: "hua4", // 摦
+ 0x6467: "cui1", // 摧
+ 0x6468: "nai2", // 摨
+ 0x6469: "mo2", // 摩
+ 0x646a: "jiang1", // 摪
+ 0x646b: "gui1", // 摫
+ 0x646c: "ying3", // 摬
+ 0x646d: "zhi2", // 摭
+ 0x646e: "ao2", // 摮
+ 0x646f: "zhi4", // 摯
+ 0x6470: "nie4", // 摰
+ 0x6471: "man4", // 摱
+ 0x6472: "chan4", // 摲
+ 0x6473: "kou1", // 摳
+ 0x6474: "chu1", // 摴
+ 0x6475: "she4", // 摵
+ 0x6476: "tuan2", // 摶
+ 0x6477: "jiao3", // 摷
+ 0x6478: "mo1", // 摸
+ 0x6479: "mo2", // 摹
+ 0x647a: "zhe2", // 摺
+ 0x647b: "can4", // 摻
+ 0x647c: "keng1", // 摼
+ 0x647d: "biao1", // 摽
+ 0x647e: "jiang4", // 摾
+ 0x647f: "yao2", // 摿
+ 0x6480: "gou4", // 撀
+ 0x6481: "qian1", // 撁
+ 0x6482: "liao4", // 撂
+ 0x6483: "ji1", // 撃
+ 0x6484: "ying1", // 撄
+ 0x6485: "jue1", // 撅
+ 0x6486: "pie1", // 撆
+ 0x6487: "pie1", // 撇
+ 0x6488: "lao1", // 撈
+ 0x6489: "dun1", // 撉
+ 0x648a: "xian4", // 撊
+ 0x648b: "ruan2", // 撋
+ 0x648c: "gui4", // 撌
+ 0x648d: "zan3", // 撍
+ 0x648e: "yi4", // 撎
+ 0x648f: "xian2", // 撏
+ 0x6490: "cheng1", // 撐
+ 0x6491: "cheng1", // 撑
+ 0x6492: "sa1", // 撒
+ 0x6493: "nao2", // 撓
+ 0x6494: "hong4", // 撔
+ 0x6495: "si1", // 撕
+ 0x6496: "han4", // 撖
+ 0x6497: "guang4", // 撗
+ 0x6498: "da1", // 撘
+ 0x6499: "zun3", // 撙
+ 0x649a: "nian3", // 撚
+ 0x649b: "lin3", // 撛
+ 0x649c: "zheng3", // 撜
+ 0x649d: "hui1", // 撝
+ 0x649e: "zhuang4", // 撞
+ 0x649f: "jiao3", // 撟
+ 0x64a0: "ji3", // 撠
+ 0x64a1: "cao1", // 撡
+ 0x64a2: "dan3", // 撢
+ 0x64a3: "dan3", // 撣
+ 0x64a4: "che4", // 撤
+ 0x64a5: "bo1", // 撥
+ 0x64a6: "che3", // 撦
+ 0x64a7: "jue1", // 撧
+ 0x64a8: "fu3", // 撨
+ 0x64a9: "liao1", // 撩
+ 0x64aa: "ben4", // 撪
+ 0x64ab: "fu3", // 撫
+ 0x64ac: "qiao4", // 撬
+ 0x64ad: "bo1", // 播
+ 0x64ae: "cuo1", // 撮
+ 0x64af: "zhuo2", // 撯
+ 0x64b0: "zhuan4", // 撰
+ 0x64b1: "wei3", // 撱
+ 0x64b2: "pu1", // 撲
+ 0x64b3: "qin4", // 撳
+ 0x64b4: "dun1", // 撴
+ 0x64b5: "nian3", // 撵
+ 0x64b6: "hua2", // 撶
+ 0x64b7: "xie2", // 撷
+ 0x64b8: "lu1", // 撸
+ 0x64b9: "jiao3", // 撹
+ 0x64ba: "cuan1", // 撺
+ 0x64bb: "ta4", // 撻
+ 0x64bc: "han4", // 撼
+ 0x64bd: "qiao4", // 撽
+ 0x64be: "wo1", // 撾
+ 0x64bf: "jian3", // 撿
+ 0x64c0: "gan3", // 擀
+ 0x64c1: "yong1", // 擁
+ 0x64c2: "lei2", // 擂
+ 0x64c3: "nang3", // 擃
+ 0x64c4: "lu3", // 擄
+ 0x64c5: "shan4", // 擅
+ 0x64c6: "zhuo2", // 擆
+ 0x64c7: "ze2", // 擇
+ 0x64c8: "pu1", // 擈
+ 0x64c9: "chuo4", // 擉
+ 0x64ca: "ji1", // 擊
+ 0x64cb: "dang3", // 擋
+ 0x64cc: "se4", // 擌
+ 0x64cd: "cao1", // 操
+ 0x64ce: "qing2", // 擎
+ 0x64cf: "qing2", // 擏
+ 0x64d0: "huan4", // 擐
+ 0x64d1: "jie1", // 擑
+ 0x64d2: "qin2", // 擒
+ 0x64d3: "kuai3", // 擓
+ 0x64d4: "dan1", // 擔
+ 0x64d5: "xie2", // 擕
+ 0x64d6: "ka1", // 擖
+ 0x64d7: "pi3", // 擗
+ 0x64d8: "bai1", // 擘
+ 0x64d9: "ao4", // 擙
+ 0x64da: "ju4", // 據
+ 0x64db: "ye4", // 擛
+ 0x64dc: "e4", // 擜
+ 0x64dd: "meng1", // 擝
+ 0x64de: "sou3", // 擞
+ 0x64df: "mi2", // 擟
+ 0x64e0: "ji3", // 擠
+ 0x64e1: "tai2", // 擡
+ 0x64e2: "zhuo2", // 擢
+ 0x64e3: "dao3", // 擣
+ 0x64e4: "xing3", // 擤
+ 0x64e5: "lan3", // 擥
+ 0x64e6: "ca1", // 擦
+ 0x64e7: "ju3", // 擧
+ 0x64e8: "ye2", // 擨
+ 0x64e9: "ru3", // 擩
+ 0x64ea: "ye4", // 擪
+ 0x64eb: "ye4", // 擫
+ 0x64ec: "ni3", // 擬
+ 0x64ed: "wo4", // 擭
+ 0x64ee: "jie2", // 擮
+ 0x64ef: "bin4", // 擯
+ 0x64f0: "ning2", // 擰
+ 0x64f1: "ge1", // 擱
+ 0x64f2: "zhi4", // 擲
+ 0x64f3: "zhi4", // 擳
+ 0x64f4: "kuo4", // 擴
+ 0x64f5: "mo2", // 擵
+ 0x64f6: "jian4", // 擶
+ 0x64f7: "xie2", // 擷
+ 0x64f8: "lie4", // 擸
+ 0x64f9: "tan1", // 擹
+ 0x64fa: "bai3", // 擺
+ 0x64fb: "sou3", // 擻
+ 0x64fc: "lu3", // 擼
+ 0x64fd: "lve4", // 擽
+ 0x64fe: "rao3", // 擾
+ 0x64ff: "ti1", // 擿
+ 0x6500: "pan1", // 攀
+ 0x6501: "yang3", // 攁
+ 0x6502: "lei4", // 攂
+ 0x6503: "ca1", // 攃
+ 0x6504: "shu1", // 攄
+ 0x6505: "zan3", // 攅
+ 0x6506: "nian3", // 攆
+ 0x6507: "xian3", // 攇
+ 0x6508: "jun4", // 攈
+ 0x6509: "huo1", // 攉
+ 0x650a: "li4", // 攊
+ 0x650b: "la4", // 攋
+ 0x650c: "huan3", // 攌
+ 0x650d: "ying2", // 攍
+ 0x650e: "lu2", // 攎
+ 0x650f: "long3", // 攏
+ 0x6510: "qian1", // 攐
+ 0x6511: "qian1", // 攑
+ 0x6512: "zan3", // 攒
+ 0x6513: "qian1", // 攓
+ 0x6514: "lan2", // 攔
+ 0x6515: "xian1", // 攕
+ 0x6516: "ying1", // 攖
+ 0x6517: "mei2", // 攗
+ 0x6518: "rang3", // 攘
+ 0x6519: "chan1", // 攙
+ 0x651a: "weng3", // 攚
+ 0x651b: "cuan1", // 攛
+ 0x651c: "xie2", // 攜
+ 0x651d: "she4", // 攝
+ 0x651e: "luo2", // 攞
+ 0x651f: "jun4", // 攟
+ 0x6520: "mi2", // 攠
+ 0x6521: "chi1", // 攡
+ 0x6522: "zan3", // 攢
+ 0x6523: "luan2", // 攣
+ 0x6524: "tan1", // 攤
+ 0x6525: "zuan4", // 攥
+ 0x6526: "li4", // 攦
+ 0x6527: "dian1", // 攧
+ 0x6528: "wa1", // 攨
+ 0x6529: "dang3", // 攩
+ 0x652a: "jiao3", // 攪
+ 0x652b: "jue2", // 攫
+ 0x652c: "lan3", // 攬
+ 0x652d: "li4", // 攭
+ 0x652e: "nang3", // 攮
+ 0x652f: "zhi1", // 支
+ 0x6530: "gui4", // 攰
+ 0x6531: "gui3", // 攱
+ 0x6532: "qi1", // 攲
+ 0x6533: "xun2", // 攳
+ 0x6534: "pu1", // 攴
+ 0x6535: "pu1", // 攵
+ 0x6536: "shou1", // 收
+ 0x6537: "kao3", // 攷
+ 0x6538: "you1", // 攸
+ 0x6539: "gai3", // 改
+ 0x653a: "yi3", // 攺
+ 0x653b: "gong1", // 攻
+ 0x653c: "gan1", // 攼
+ 0x653d: "ban1", // 攽
+ 0x653e: "fang4", // 放
+ 0x653f: "zheng4", // 政
+ 0x6540: "po4", // 敀
+ 0x6541: "dian1", // 敁
+ 0x6542: "kou4", // 敂
+ 0x6543: "min3", // 敃
+ 0x6544: "wu4", // 敄
+ 0x6545: "gu4", // 故
+ 0x6546: "he2", // 敆
+ 0x6547: "ce4", // 敇
+ 0x6548: "xiao4", // 效
+ 0x6549: "mi3", // 敉
+ 0x654a: "chu4", // 敊
+ 0x654b: "ge2", // 敋
+ 0x654c: "di2", // 敌
+ 0x654d: "xu4", // 敍
+ 0x654e: "jiao4", // 敎
+ 0x654f: "min3", // 敏
+ 0x6550: "chen2", // 敐
+ 0x6551: "jiu4", // 救
+ 0x6552: "shen1", // 敒
+ 0x6553: "duo2", // 敓
+ 0x6554: "yu3", // 敔
+ 0x6555: "chi4", // 敕
+ 0x6556: "ao2", // 敖
+ 0x6557: "bai4", // 敗
+ 0x6558: "xu4", // 敘
+ 0x6559: "jiao4", // 教
+ 0x655a: "duo2", // 敚
+ 0x655b: "lian3", // 敛
+ 0x655c: "nie4", // 敜
+ 0x655d: "bi4", // 敝
+ 0x655e: "chang3", // 敞
+ 0x655f: "dian3", // 敟
+ 0x6560: "duo1", // 敠
+ 0x6561: "yi4", // 敡
+ 0x6562: "gan3", // 敢
+ 0x6563: "san4", // 散
+ 0x6564: "ke3", // 敤
+ 0x6565: "yan4", // 敥
+ 0x6566: "dun1", // 敦
+ 0x6567: "ji1", // 敧
+ 0x6568: "tou3", // 敨
+ 0x6569: "xiao4", // 敩
+ 0x656a: "duo1", // 敪
+ 0x656b: "jiao3", // 敫
+ 0x656c: "jing4", // 敬
+ 0x656d: "yang2", // 敭
+ 0x656e: "xia2", // 敮
+ 0x656f: "min3", // 敯
+ 0x6570: "shu4", // 数
+ 0x6571: "ai2", // 敱
+ 0x6572: "qiao1", // 敲
+ 0x6573: "ai2", // 敳
+ 0x6574: "zheng3", // 整
+ 0x6575: "di2", // 敵
+ 0x6576: "zhen4", // 敶
+ 0x6577: "fu1", // 敷
+ 0x6578: "shu4", // 數
+ 0x6579: "liao2", // 敹
+ 0x657a: "qu1", // 敺
+ 0x657b: "xiong4", // 敻
+ 0x657c: "yi3", // 敼
+ 0x657d: "jiao3", // 敽
+ 0x657e: "shan4", // 敾
+ 0x657f: "jiao3", // 敿
+ 0x6580: "zhuo2", // 斀
+ 0x6581: "yi4", // 斁
+ 0x6582: "lian3", // 斂
+ 0x6583: "bi4", // 斃
+ 0x6584: "li2", // 斄
+ 0x6585: "xiao4", // 斅
+ 0x6586: "xiao4", // 斆
+ 0x6587: "wen2", // 文
+ 0x6588: "xue2", // 斈
+ 0x6589: "qi2", // 斉
+ 0x658a: "qi2", // 斊
+ 0x658b: "zhai1", // 斋
+ 0x658c: "bin1", // 斌
+ 0x658d: "jue2", // 斍
+ 0x658e: "zhai1", // 斎
+ 0x658f: "lang2", // 斏
+ 0x6590: "fei3", // 斐
+ 0x6591: "ban1", // 斑
+ 0x6592: "ban1", // 斒
+ 0x6593: "lan2", // 斓
+ 0x6594: "yu3", // 斔
+ 0x6595: "lan2", // 斕
+ 0x6596: "wei3", // 斖
+ 0x6597: "dou4", // 斗
+ 0x6598: "sheng1", // 斘
+ 0x6599: "liao4", // 料
+ 0x659a: "jia3", // 斚
+ 0x659b: "hu2", // 斛
+ 0x659c: "xie2", // 斜
+ 0x659d: "jia3", // 斝
+ 0x659e: "yu3", // 斞
+ 0x659f: "zhen1", // 斟
+ 0x65a0: "jiao4", // 斠
+ 0x65a1: "wo4", // 斡
+ 0x65a2: "tiao3", // 斢
+ 0x65a3: "dou4", // 斣
+ 0x65a4: "jin1", // 斤
+ 0x65a5: "chi4", // 斥
+ 0x65a6: "yin2", // 斦
+ 0x65a7: "fu3", // 斧
+ 0x65a8: "qiang1", // 斨
+ 0x65a9: "zhan3", // 斩
+ 0x65aa: "qu2", // 斪
+ 0x65ab: "zhuo2", // 斫
+ 0x65ac: "zhan3", // 斬
+ 0x65ad: "duan4", // 断
+ 0x65ae: "cuo4", // 斮
+ 0x65af: "si1", // 斯
+ 0x65b0: "xin1", // 新
+ 0x65b1: "zhuo2", // 斱
+ 0x65b2: "zhuo2", // 斲
+ 0x65b3: "qin2", // 斳
+ 0x65b4: "lin2", // 斴
+ 0x65b5: "zhuo2", // 斵
+ 0x65b6: "chu4", // 斶
+ 0x65b7: "duan4", // 斷
+ 0x65b8: "zhu3", // 斸
+ 0x65b9: "fang1", // 方
+ 0x65ba: "chan3", // 斺
+ 0x65bb: "hang2", // 斻
+ 0x65bc: "yu2", // 於
+ 0x65bd: "shi1", // 施
+ 0x65be: "pei4", // 斾
+ 0x65bf: "you2", // 斿
+ 0x65c0: "mei4", // 旀
+ 0x65c1: "pang2", // 旁
+ 0x65c2: "qi2", // 旂
+ 0x65c3: "zhan1", // 旃
+ 0x65c4: "mao2", // 旄
+ 0x65c5: "lv3", // 旅
+ 0x65c6: "pei4", // 旆
+ 0x65c7: "pi1", // 旇
+ 0x65c8: "liu2", // 旈
+ 0x65c9: "fu1", // 旉
+ 0x65ca: "fang3", // 旊
+ 0x65cb: "xuan2", // 旋
+ 0x65cc: "jing1", // 旌
+ 0x65cd: "jing1", // 旍
+ 0x65ce: "ni3", // 旎
+ 0x65cf: "zu2", // 族
+ 0x65d0: "zhao4", // 旐
+ 0x65d1: "yi3", // 旑
+ 0x65d2: "liu2", // 旒
+ 0x65d3: "shao1", // 旓
+ 0x65d4: "jian4", // 旔
+ 0x65d5: "yu2", // 旕
+ 0x65d6: "yi3", // 旖
+ 0x65d7: "qi2", // 旗
+ 0x65d8: "zhi4", // 旘
+ 0x65d9: "fan1", // 旙
+ 0x65da: "piao1", // 旚
+ 0x65db: "fan1", // 旛
+ 0x65dc: "zhan1", // 旜
+ 0x65dd: "kuai4", // 旝
+ 0x65de: "sui4", // 旞
+ 0x65df: "yu2", // 旟
+ 0x65e0: "wu2", // 无
+ 0x65e1: "ji4", // 旡
+ 0x65e2: "ji4", // 既
+ 0x65e3: "ji4", // 旣
+ 0x65e4: "huo4", // 旤
+ 0x65e5: "ri4", // 日
+ 0x65e6: "dan4", // 旦
+ 0x65e7: "jiu4", // 旧
+ 0x65e8: "zhi3", // 旨
+ 0x65e9: "zao3", // 早
+ 0x65ea: "xie2", // 旪
+ 0x65eb: "tiao1", // 旫
+ 0x65ec: "xun2", // 旬
+ 0x65ed: "xu4", // 旭
+ 0x65ee: "ga1", // 旮
+ 0x65ef: "la2", // 旯
+ 0x65f0: "gan4", // 旰
+ 0x65f1: "han4", // 旱
+ 0x65f2: "tai2", // 旲
+ 0x65f3: "di4", // 旳
+ 0x65f4: "xu1", // 旴
+ 0x65f5: "chan3", // 旵
+ 0x65f6: "shi2", // 时
+ 0x65f7: "kuang4", // 旷
+ 0x65f8: "yang2", // 旸
+ 0x65f9: "shi2", // 旹
+ 0x65fa: "wang4", // 旺
+ 0x65fb: "min2", // 旻
+ 0x65fc: "min2", // 旼
+ 0x65fd: "tun4", // 旽
+ 0x65fe: "chun1", // 旾
+ 0x65ff: "wu3", // 旿
+ 0x6600: "yun2", // 昀
+ 0x6601: "bei4", // 昁
+ 0x6602: "ang2", // 昂
+ 0x6603: "ze4", // 昃
+ 0x6604: "ban3", // 昄
+ 0x6605: "jie2", // 昅
+ 0x6606: "kun1", // 昆
+ 0x6607: "sheng1", // 昇
+ 0x6608: "hu4", // 昈
+ 0x6609: "fang3", // 昉
+ 0x660a: "hao4", // 昊
+ 0x660b: "gui4", // 昋
+ 0x660c: "chang1", // 昌
+ 0x660d: "xuan1", // 昍
+ 0x660e: "ming2", // 明
+ 0x660f: "hun1", // 昏
+ 0x6610: "fen1", // 昐
+ 0x6611: "qin3", // 昑
+ 0x6612: "hu1", // 昒
+ 0x6613: "yi4", // 易
+ 0x6614: "xi1", // 昔
+ 0x6615: "xin1", // 昕
+ 0x6616: "yan2", // 昖
+ 0x6617: "ze4", // 昗
+ 0x6618: "fang3", // 昘
+ 0x6619: "tan2", // 昙
+ 0x661a: "shen4", // 昚
+ 0x661b: "ju4", // 昛
+ 0x661c: "yang2", // 昜
+ 0x661d: "zan3", // 昝
+ 0x661e: "bing3", // 昞
+ 0x661f: "xing1", // 星
+ 0x6620: "ying4", // 映
+ 0x6621: "xuan4", // 昡
+ 0x6622: "po4", // 昢
+ 0x6623: "zhen3", // 昣
+ 0x6624: "ling2", // 昤
+ 0x6625: "chun1", // 春
+ 0x6626: "hao4", // 昦
+ 0x6627: "mei4", // 昧
+ 0x6628: "zuo2", // 昨
+ 0x6629: "mo4", // 昩
+ 0x662a: "bian4", // 昪
+ 0x662b: "xu4", // 昫
+ 0x662c: "hun1", // 昬
+ 0x662d: "zhao1", // 昭
+ 0x662e: "zong4", // 昮
+ 0x662f: "shi4", // 是
+ 0x6630: "shi4", // 昰
+ 0x6631: "yu4", // 昱
+ 0x6632: "fei4", // 昲
+ 0x6633: "die2", // 昳
+ 0x6634: "mao3", // 昴
+ 0x6635: "ni4", // 昵
+ 0x6636: "chang3", // 昶
+ 0x6637: "wen1", // 昷
+ 0x6638: "dong1", // 昸
+ 0x6639: "ai3", // 昹
+ 0x663a: "bing3", // 昺
+ 0x663b: "ang2", // 昻
+ 0x663c: "zhou4", // 昼
+ 0x663d: "long2", // 昽
+ 0x663e: "xian3", // 显
+ 0x663f: "kuang4", // 昿
+ 0x6640: "tiao3", // 晀
+ 0x6641: "chao2", // 晁
+ 0x6642: "shi2", // 時
+ 0x6643: "huang3", // 晃
+ 0x6644: "huang3", // 晄
+ 0x6645: "xuan3", // 晅
+ 0x6646: "kui2", // 晆
+ 0x6647: "xu1", // 晇
+ 0x6648: "jiao3", // 晈
+ 0x6649: "jin4", // 晉
+ 0x664a: "zhi4", // 晊
+ 0x664b: "jin4", // 晋
+ 0x664c: "shang3", // 晌
+ 0x664d: "tong2", // 晍
+ 0x664e: "hong3", // 晎
+ 0x664f: "yan4", // 晏
+ 0x6650: "gai1", // 晐
+ 0x6651: "xiang3", // 晑
+ 0x6652: "shai4", // 晒
+ 0x6653: "xiao3", // 晓
+ 0x6654: "ye4", // 晔
+ 0x6655: "yun1", // 晕
+ 0x6656: "hui1", // 晖
+ 0x6657: "han2", // 晗
+ 0x6658: "han4", // 晘
+ 0x6659: "jun4", // 晙
+ 0x665a: "wan3", // 晚
+ 0x665b: "xian4", // 晛
+ 0x665c: "kun1", // 晜
+ 0x665d: "zhou4", // 晝
+ 0x665e: "xi1", // 晞
+ 0x665f: "cheng2", // 晟
+ 0x6660: "sheng4", // 晠
+ 0x6661: "bu1", // 晡
+ 0x6662: "zhe2", // 晢
+ 0x6663: "zhe2", // 晣
+ 0x6664: "wu4", // 晤
+ 0x6665: "wan3", // 晥
+ 0x6666: "hui4", // 晦
+ 0x6667: "hao4", // 晧
+ 0x6668: "chen2", // 晨
+ 0x6669: "wan3", // 晩
+ 0x666a: "tian3", // 晪
+ 0x666b: "zhuo2", // 晫
+ 0x666c: "zui4", // 晬
+ 0x666d: "zhou3", // 晭
+ 0x666e: "pu3", // 普
+ 0x666f: "jing3", // 景
+ 0x6670: "xi1", // 晰
+ 0x6671: "shan3", // 晱
+ 0x6672: "ni3", // 晲
+ 0x6673: "xi1", // 晳
+ 0x6674: "qing2", // 晴
+ 0x6675: "qi3", // 晵
+ 0x6676: "jing1", // 晶
+ 0x6677: "gui3", // 晷
+ 0x6678: "zheng3", // 晸
+ 0x6679: "yi4", // 晹
+ 0x667a: "zhi4", // 智
+ 0x667b: "an4", // 晻
+ 0x667c: "wan3", // 晼
+ 0x667d: "lin2", // 晽
+ 0x667e: "liang4", // 晾
+ 0x667f: "chang1", // 晿
+ 0x6680: "wang3", // 暀
+ 0x6681: "xiao3", // 暁
+ 0x6682: "zan4", // 暂
+ 0x6683: "fei1", // 暃
+ 0x6684: "xuan1", // 暄
+ 0x6685: "geng4", // 暅
+ 0x6686: "yi2", // 暆
+ 0x6687: "xia2", // 暇
+ 0x6688: "yun1", // 暈
+ 0x6689: "hui1", // 暉
+ 0x668a: "xu3", // 暊
+ 0x668b: "min3", // 暋
+ 0x668c: "kui2", // 暌
+ 0x668d: "ye1", // 暍
+ 0x668e: "ying4", // 暎
+ 0x668f: "shu3", // 暏
+ 0x6690: "wei3", // 暐
+ 0x6691: "shu3", // 暑
+ 0x6692: "qing2", // 暒
+ 0x6693: "mao4", // 暓
+ 0x6694: "nan2", // 暔
+ 0x6695: "jian3", // 暕
+ 0x6696: "nuan3", // 暖
+ 0x6697: "an4", // 暗
+ 0x6698: "yang2", // 暘
+ 0x6699: "chun1", // 暙
+ 0x669a: "yao2", // 暚
+ 0x669b: "suo3", // 暛
+ 0x669c: "pu3", // 暜
+ 0x669d: "ming2", // 暝
+ 0x669e: "jiao3", // 暞
+ 0x669f: "kai3", // 暟
+ 0x66a0: "gao3", // 暠
+ 0x66a1: "weng3", // 暡
+ 0x66a2: "chang4", // 暢
+ 0x66a3: "qi4", // 暣
+ 0x66a4: "hao4", // 暤
+ 0x66a5: "yan4", // 暥
+ 0x66a6: "li4", // 暦
+ 0x66a7: "ai4", // 暧
+ 0x66a8: "ji4", // 暨
+ 0x66a9: "ji4", // 暩
+ 0x66aa: "men4", // 暪
+ 0x66ab: "zan4", // 暫
+ 0x66ac: "xie4", // 暬
+ 0x66ad: "hao4", // 暭
+ 0x66ae: "mu4", // 暮
+ 0x66af: "mo4", // 暯
+ 0x66b0: "cong1", // 暰
+ 0x66b1: "ni4", // 暱
+ 0x66b2: "zhang1", // 暲
+ 0x66b3: "hui4", // 暳
+ 0x66b4: "bao4", // 暴
+ 0x66b5: "han4", // 暵
+ 0x66b6: "xuan2", // 暶
+ 0x66b7: "chuan2", // 暷
+ 0x66b8: "liao2", // 暸
+ 0x66b9: "xian1", // 暹
+ 0x66ba: "tan3", // 暺
+ 0x66bb: "jing3", // 暻
+ 0x66bc: "pie1", // 暼
+ 0x66bd: "lin2", // 暽
+ 0x66be: "tun1", // 暾
+ 0x66bf: "xi3", // 暿
+ 0x66c0: "yi4", // 曀
+ 0x66c1: "ji4", // 曁
+ 0x66c2: "huang4", // 曂
+ 0x66c3: "dai4", // 曃
+ 0x66c4: "ye4", // 曄
+ 0x66c5: "ye4", // 曅
+ 0x66c6: "li4", // 曆
+ 0x66c7: "tan2", // 曇
+ 0x66c8: "tong2", // 曈
+ 0x66c9: "xiao3", // 曉
+ 0x66ca: "fei4", // 曊
+ 0x66cb: "shen3", // 曋
+ 0x66cc: "zhao4", // 曌
+ 0x66cd: "hao4", // 曍
+ 0x66ce: "yi4", // 曎
+ 0x66cf: "xiang3", // 曏
+ 0x66d0: "xing1", // 曐
+ 0x66d1: "shen1", // 曑
+ 0x66d2: "jiao3", // 曒
+ 0x66d3: "bao4", // 曓
+ 0x66d4: "jing4", // 曔
+ 0x66d5: "yan4", // 曕
+ 0x66d6: "ai4", // 曖
+ 0x66d7: "ye4", // 曗
+ 0x66d8: "ru2", // 曘
+ 0x66d9: "shu3", // 曙
+ 0x66da: "meng2", // 曚
+ 0x66db: "xun1", // 曛
+ 0x66dc: "yao4", // 曜
+ 0x66dd: "pu4", // 曝
+ 0x66de: "li4", // 曞
+ 0x66df: "chen2", // 曟
+ 0x66e0: "kuang4", // 曠
+ 0x66e1: "die2", // 曡
+ 0x66e2: "liao3", // 曢
+ 0x66e3: "yan4", // 曣
+ 0x66e4: "huo4", // 曤
+ 0x66e5: "lu2", // 曥
+ 0x66e6: "xi1", // 曦
+ 0x66e7: "rong2", // 曧
+ 0x66e8: "long2", // 曨
+ 0x66e9: "nang3", // 曩
+ 0x66ea: "luo3", // 曪
+ 0x66eb: "luan2", // 曫
+ 0x66ec: "shai4", // 曬
+ 0x66ed: "tang3", // 曭
+ 0x66ee: "yan3", // 曮
+ 0x66ef: "zhu2", // 曯
+ 0x66f0: "yue1", // 曰
+ 0x66f1: "yue1", // 曱
+ 0x66f2: "qu1", // 曲
+ 0x66f3: "ye4", // 曳
+ 0x66f4: "geng4", // 更
+ 0x66f5: "ye4", // 曵
+ 0x66f6: "hu1", // 曶
+ 0x66f7: "he2", // 曷
+ 0x66f8: "shu1", // 書
+ 0x66f9: "cao2", // 曹
+ 0x66fa: "cao2", // 曺
+ 0x66fb: "sheng1", // 曻
+ 0x66fc: "man4", // 曼
+ 0x66fd: "ceng1", // 曽
+ 0x66fe: "ceng2", // 曾
+ 0x66ff: "ti4", // 替
+ 0x6700: "zui4", // 最
+ 0x6701: "can3", // 朁
+ 0x6702: "xu4", // 朂
+ 0x6703: "hui4", // 會
+ 0x6704: "yin3", // 朄
+ 0x6705: "qie4", // 朅
+ 0x6706: "fen1", // 朆
+ 0x6707: "pi2", // 朇
+ 0x6708: "yue4", // 月
+ 0x6709: "you3", // 有
+ 0x670a: "ruan3", // 朊
+ 0x670b: "peng2", // 朋
+ 0x670c: "fen2", // 朌
+ 0x670d: "fu2", // 服
+ 0x670e: "ling2", // 朎
+ 0x670f: "fei3", // 朏
+ 0x6710: "qu2", // 朐
+ 0x6711: "ti4", // 朑
+ 0x6712: "nv4", // 朒
+ 0x6713: "tiao3", // 朓
+ 0x6714: "shuo4", // 朔
+ 0x6715: "zhen4", // 朕
+ 0x6716: "lang3", // 朖
+ 0x6717: "lang3", // 朗
+ 0x6718: "zui1", // 朘
+ 0x6719: "ming2", // 朙
+ 0x671a: "huang1", // 朚
+ 0x671b: "wang4", // 望
+ 0x671c: "tun1", // 朜
+ 0x671d: "chao2", // 朝
+ 0x671e: "ji1", // 朞
+ 0x671f: "qi1", // 期
+ 0x6720: "ying1", // 朠
+ 0x6721: "zong1", // 朡
+ 0x6722: "wang4", // 朢
+ 0x6723: "tong2", // 朣
+ 0x6724: "lang3", // 朤
+ 0x6725: "lao2", // 朥
+ 0x6726: "meng2", // 朦
+ 0x6727: "long2", // 朧
+ 0x6728: "mu4", // 木
+ 0x6729: "deng3", // 朩
+ 0x672a: "wei4", // 未
+ 0x672b: "mo4", // 末
+ 0x672c: "ben3", // 本
+ 0x672d: "zha2", // 札
+ 0x672e: "shu4", // 朮
+ 0x672f: "shu4", // 术
+ 0x6730: "mu4", // 朰
+ 0x6731: "zhu1", // 朱
+ 0x6732: "ren2", // 朲
+ 0x6733: "ba1", // 朳
+ 0x6734: "pu3", // 朴
+ 0x6735: "duo3", // 朵
+ 0x6736: "duo3", // 朶
+ 0x6737: "dao1", // 朷
+ 0x6738: "li4", // 朸
+ 0x6739: "gui3", // 朹
+ 0x673a: "ji1", // 机
+ 0x673b: "jiu1", // 朻
+ 0x673c: "bi3", // 朼
+ 0x673d: "xiu3", // 朽
+ 0x673e: "cheng2", // 朾
+ 0x673f: "ci4", // 朿
+ 0x6740: "sha1", // 杀
+ 0x6741: "ru4", // 杁
+ 0x6742: "za2", // 杂
+ 0x6743: "quan2", // 权
+ 0x6744: "qian1", // 杄
+ 0x6745: "yu2", // 杅
+ 0x6746: "gan1", // 杆
+ 0x6747: "wu1", // 杇
+ 0x6748: "cha1", // 杈
+ 0x6749: "shan1", // 杉
+ 0x674a: "xun2", // 杊
+ 0x674b: "fan2", // 杋
+ 0x674c: "wu4", // 杌
+ 0x674d: "zi3", // 杍
+ 0x674e: "li3", // 李
+ 0x674f: "xing4", // 杏
+ 0x6750: "cai2", // 材
+ 0x6751: "cun1", // 村
+ 0x6752: "ren4", // 杒
+ 0x6753: "biao1", // 杓
+ 0x6754: "tuo1", // 杔
+ 0x6755: "di4", // 杕
+ 0x6756: "zhang4", // 杖
+ 0x6757: "mang2", // 杗
+ 0x6758: "chi4", // 杘
+ 0x6759: "yi4", // 杙
+ 0x675a: "gai4", // 杚
+ 0x675b: "gong1", // 杛
+ 0x675c: "du4", // 杜
+ 0x675d: "li2", // 杝
+ 0x675e: "qi3", // 杞
+ 0x675f: "shu4", // 束
+ 0x6760: "gang1", // 杠
+ 0x6761: "tiao2", // 条
+ 0x6762: "jiang5", // 杢
+ 0x6763: "mian2", // 杣
+ 0x6764: "wan4", // 杤
+ 0x6765: "lai2", // 来
+ 0x6766: "jiu3", // 杦
+ 0x6767: "mang2", // 杧
+ 0x6768: "yang2", // 杨
+ 0x6769: "ma4", // 杩
+ 0x676a: "miao3", // 杪
+ 0x676b: "si4", // 杫
+ 0x676c: "yuan2", // 杬
+ 0x676d: "hang2", // 杭
+ 0x676e: "fei4", // 杮
+ 0x676f: "bei1", // 杯
+ 0x6770: "jie2", // 杰
+ 0x6771: "dong1", // 東
+ 0x6772: "gao3", // 杲
+ 0x6773: "yao3", // 杳
+ 0x6774: "xian1", // 杴
+ 0x6775: "chu3", // 杵
+ 0x6776: "chun1", // 杶
+ 0x6777: "pa2", // 杷
+ 0x6778: "shu1", // 杸
+ 0x6779: "hua4", // 杹
+ 0x677a: "xin1", // 杺
+ 0x677b: "chou3", // 杻
+ 0x677c: "zhu4", // 杼
+ 0x677d: "chou3", // 杽
+ 0x677e: "song1", // 松
+ 0x677f: "ban3", // 板
+ 0x6780: "song1", // 枀
+ 0x6781: "ji2", // 极
+ 0x6782: "wo4", // 枂
+ 0x6783: "jin4", // 枃
+ 0x6784: "gou4", // 构
+ 0x6785: "ji1", // 枅
+ 0x6786: "mao2", // 枆
+ 0x6787: "pi2", // 枇
+ 0x6788: "bi4", // 枈
+ 0x6789: "wang3", // 枉
+ 0x678a: "ang4", // 枊
+ 0x678b: "fang1", // 枋
+ 0x678c: "fen2", // 枌
+ 0x678d: "yi4", // 枍
+ 0x678e: "fu2", // 枎
+ 0x678f: "nan2", // 枏
+ 0x6790: "xi1", // 析
+ 0x6791: "hu4", // 枑
+ 0x6792: "ya1", // 枒
+ 0x6793: "dou3", // 枓
+ 0x6794: "xin2", // 枔
+ 0x6795: "zhen3", // 枕
+ 0x6796: "yao1", // 枖
+ 0x6797: "lin2", // 林
+ 0x6798: "rui4", // 枘
+ 0x6799: "e3", // 枙
+ 0x679a: "mei2", // 枚
+ 0x679b: "zhao4", // 枛
+ 0x679c: "guo3", // 果
+ 0x679d: "zhi1", // 枝
+ 0x679e: "cong1", // 枞
+ 0x679f: "yun4", // 枟
+ 0x67a0: "zui5", // 枠
+ 0x67a1: "sheng1", // 枡
+ 0x67a2: "shu1", // 枢
+ 0x67a3: "zao3", // 枣
+ 0x67a4: "di4", // 枤
+ 0x67a5: "li4", // 枥
+ 0x67a6: "lu2", // 枦
+ 0x67a7: "jian3", // 枧
+ 0x67a8: "cheng2", // 枨
+ 0x67a9: "song1", // 枩
+ 0x67aa: "qiang1", // 枪
+ 0x67ab: "feng1", // 枫
+ 0x67ac: "zhan1", // 枬
+ 0x67ad: "xiao1", // 枭
+ 0x67ae: "xian1", // 枮
+ 0x67af: "ku1", // 枯
+ 0x67b0: "ping2", // 枰
+ 0x67b1: "tai2", // 枱
+ 0x67b2: "xi3", // 枲
+ 0x67b3: "zhi3", // 枳
+ 0x67b4: "guai3", // 枴
+ 0x67b5: "xiao1", // 枵
+ 0x67b6: "jia4", // 架
+ 0x67b7: "jia1", // 枷
+ 0x67b8: "gou3", // 枸
+ 0x67b9: "bao1", // 枹
+ 0x67ba: "mo4", // 枺
+ 0x67bb: "yi4", // 枻
+ 0x67bc: "ye4", // 枼
+ 0x67bd: "ye4", // 枽
+ 0x67be: "shi4", // 枾
+ 0x67bf: "nie4", // 枿
+ 0x67c0: "bi3", // 柀
+ 0x67c1: "duo4", // 柁
+ 0x67c2: "yi2", // 柂
+ 0x67c3: "ling2", // 柃
+ 0x67c4: "bing3", // 柄
+ 0x67c5: "ni3", // 柅
+ 0x67c6: "la1", // 柆
+ 0x67c7: "he2", // 柇
+ 0x67c8: "ban4", // 柈
+ 0x67c9: "fan2", // 柉
+ 0x67ca: "zhong1", // 柊
+ 0x67cb: "dai4", // 柋
+ 0x67cc: "ci2", // 柌
+ 0x67cd: "yang3", // 柍
+ 0x67ce: "fu1", // 柎
+ 0x67cf: "bai3", // 柏
+ 0x67d0: "mou3", // 某
+ 0x67d1: "gan1", // 柑
+ 0x67d2: "qi1", // 柒
+ 0x67d3: "ran3", // 染
+ 0x67d4: "rou2", // 柔
+ 0x67d5: "mao4", // 柕
+ 0x67d6: "shao2", // 柖
+ 0x67d7: "song1", // 柗
+ 0x67d8: "zhe4", // 柘
+ 0x67d9: "xia2", // 柙
+ 0x67da: "you4", // 柚
+ 0x67db: "shen1", // 柛
+ 0x67dc: "gui4", // 柜
+ 0x67dd: "tuo4", // 柝
+ 0x67de: "zha4", // 柞
+ 0x67df: "nan2", // 柟
+ 0x67e0: "ning2", // 柠
+ 0x67e1: "yong3", // 柡
+ 0x67e2: "di3", // 柢
+ 0x67e3: "zhi4", // 柣
+ 0x67e4: "zha1", // 柤
+ 0x67e5: "cha2", // 查
+ 0x67e6: "dan4", // 柦
+ 0x67e7: "gu1", // 柧
+ 0x67e8: "bu4", // 柨
+ 0x67e9: "jiu4", // 柩
+ 0x67ea: "ao1", // 柪
+ 0x67eb: "fu2", // 柫
+ 0x67ec: "jian3", // 柬
+ 0x67ed: "ba1", // 柭
+ 0x67ee: "duo4", // 柮
+ 0x67ef: "ke1", // 柯
+ 0x67f0: "nai4", // 柰
+ 0x67f1: "zhu4", // 柱
+ 0x67f2: "bi4", // 柲
+ 0x67f3: "liu3", // 柳
+ 0x67f4: "chai2", // 柴
+ 0x67f5: "shan1", // 柵
+ 0x67f6: "si4", // 柶
+ 0x67f7: "chu4", // 柷
+ 0x67f8: "pei1", // 柸
+ 0x67f9: "shi4", // 柹
+ 0x67fa: "guai3", // 柺
+ 0x67fb: "zha1", // 査
+ 0x67fc: "yao3", // 柼
+ 0x67fd: "cheng1", // 柽
+ 0x67fe: "jiu4", // 柾
+ 0x67ff: "shi4", // 柿
+ 0x6800: "zhi1", // 栀
+ 0x6801: "liu3", // 栁
+ 0x6802: "mei2", // 栂
+ 0x6803: "li4", // 栃
+ 0x6804: "rong2", // 栄
+ 0x6805: "zha4", // 栅
+ 0x6806: "zao3", // 栆
+ 0x6807: "biao1", // 标
+ 0x6808: "zhan4", // 栈
+ 0x6809: "zhi4", // 栉
+ 0x680a: "long2", // 栊
+ 0x680b: "dong4", // 栋
+ 0x680c: "lu2", // 栌
+ 0x680d: "sheng1", // 栍
+ 0x680e: "li4", // 栎
+ 0x680f: "lan2", // 栏
+ 0x6810: "yong3", // 栐
+ 0x6811: "shu4", // 树
+ 0x6812: "xun2", // 栒
+ 0x6813: "shuan1", // 栓
+ 0x6814: "qi4", // 栔
+ 0x6815: "zhen1", // 栕
+ 0x6816: "qi1", // 栖
+ 0x6817: "li4", // 栗
+ 0x6818: "yi2", // 栘
+ 0x6819: "xiang2", // 栙
+ 0x681a: "zhen4", // 栚
+ 0x681b: "li4", // 栛
+ 0x681c: "se4", // 栜
+ 0x681d: "gua1", // 栝
+ 0x681e: "kan1", // 栞
+ 0x681f: "ben1", // 栟
+ 0x6820: "ren3", // 栠
+ 0x6821: "xiao4", // 校
+ 0x6822: "bai3", // 栢
+ 0x6823: "ren3", // 栣
+ 0x6824: "bing4", // 栤
+ 0x6825: "zi1", // 栥
+ 0x6826: "chou2", // 栦
+ 0x6827: "yi4", // 栧
+ 0x6828: "ci4", // 栨
+ 0x6829: "xu3", // 栩
+ 0x682a: "zhu1", // 株
+ 0x682b: "jian4", // 栫
+ 0x682c: "zui4", // 栬
+ 0x682d: "er2", // 栭
+ 0x682e: "er3", // 栮
+ 0x682f: "you3", // 栯
+ 0x6830: "fa2", // 栰
+ 0x6831: "gong3", // 栱
+ 0x6832: "kao3", // 栲
+ 0x6833: "lao3", // 栳
+ 0x6834: "zhan1", // 栴
+ 0x6835: "lie4", // 栵
+ 0x6836: "yin1", // 栶
+ 0x6837: "yang4", // 样
+ 0x6838: "he2", // 核
+ 0x6839: "gen1", // 根
+ 0x683a: "yi4", // 栺
+ 0x683b: "shi4", // 栻
+ 0x683c: "ge2", // 格
+ 0x683d: "zai1", // 栽
+ 0x683e: "luan2", // 栾
+ 0x683f: "fu2", // 栿
+ 0x6840: "jie2", // 桀
+ 0x6841: "heng2", // 桁
+ 0x6842: "gui4", // 桂
+ 0x6843: "tao2", // 桃
+ 0x6844: "guang1", // 桄
+ 0x6845: "wei2", // 桅
+ 0x6846: "kuang1", // 框
+ 0x6847: "ru2", // 桇
+ 0x6848: "an4", // 案
+ 0x6849: "an1", // 桉
+ 0x684a: "juan4", // 桊
+ 0x684b: "yi2", // 桋
+ 0x684c: "zhuo1", // 桌
+ 0x684d: "ku1", // 桍
+ 0x684e: "zhi4", // 桎
+ 0x684f: "qiong2", // 桏
+ 0x6850: "tong2", // 桐
+ 0x6851: "sang1", // 桑
+ 0x6852: "sang1", // 桒
+ 0x6853: "huan2", // 桓
+ 0x6854: "ju2", // 桔
+ 0x6855: "jiu4", // 桕
+ 0x6856: "xue4", // 桖
+ 0x6857: "duo4", // 桗
+ 0x6858: "zhui4", // 桘
+ 0x6859: "yu2", // 桙
+ 0x685a: "zan3", // 桚
+ 0x685c: "ying1", // 桜
+ 0x685d: "jie2", // 桝
+ 0x685e: "liu3", // 桞
+ 0x685f: "zhan4", // 桟
+ 0x6860: "ya1", // 桠
+ 0x6861: "rao2", // 桡
+ 0x6862: "zhen1", // 桢
+ 0x6863: "dang4", // 档
+ 0x6864: "qi1", // 桤
+ 0x6865: "qiao2", // 桥
+ 0x6866: "hua4", // 桦
+ 0x6867: "gui4", // 桧
+ 0x6868: "jiang3", // 桨
+ 0x6869: "zhuang1", // 桩
+ 0x686a: "xun2", // 桪
+ 0x686b: "suo1", // 桫
+ 0x686c: "sha1", // 桬
+ 0x686d: "zhen1", // 桭
+ 0x686e: "bei1", // 桮
+ 0x686f: "ting1", // 桯
+ 0x6870: "kuo4", // 桰
+ 0x6871: "jing4", // 桱
+ 0x6872: "po5", // 桲
+ 0x6873: "ben4", // 桳
+ 0x6874: "fu2", // 桴
+ 0x6875: "rui2", // 桵
+ 0x6876: "tong3", // 桶
+ 0x6877: "jue2", // 桷
+ 0x6878: "xi1", // 桸
+ 0x6879: "lang2", // 桹
+ 0x687a: "liu3", // 桺
+ 0x687b: "feng1", // 桻
+ 0x687c: "qi1", // 桼
+ 0x687d: "wen3", // 桽
+ 0x687e: "jun1", // 桾
+ 0x687f: "gan3", // 桿
+ 0x6880: "su4", // 梀
+ 0x6881: "liang2", // 梁
+ 0x6882: "qiu2", // 梂
+ 0x6883: "ting3", // 梃
+ 0x6884: "you3", // 梄
+ 0x6885: "mei2", // 梅
+ 0x6886: "bang1", // 梆
+ 0x6887: "long4", // 梇
+ 0x6888: "peng1", // 梈
+ 0x6889: "zhuang1", // 梉
+ 0x688a: "di4", // 梊
+ 0x688b: "xuan1", // 梋
+ 0x688c: "tu2", // 梌
+ 0x688d: "zao4", // 梍
+ 0x688e: "ao1", // 梎
+ 0x688f: "gu4", // 梏
+ 0x6890: "bi4", // 梐
+ 0x6891: "di2", // 梑
+ 0x6892: "han2", // 梒
+ 0x6893: "zi3", // 梓
+ 0x6894: "zhi1", // 梔
+ 0x6895: "ren4", // 梕
+ 0x6896: "bei4", // 梖
+ 0x6897: "geng3", // 梗
+ 0x6898: "jian3", // 梘
+ 0x6899: "huan4", // 梙
+ 0x689a: "wan3", // 梚
+ 0x689b: "nuo2", // 梛
+ 0x689c: "jia1", // 梜
+ 0x689d: "tiao2", // 條
+ 0x689e: "ji4", // 梞
+ 0x689f: "xiao1", // 梟
+ 0x68a0: "lv3", // 梠
+ 0x68a1: "hun2", // 梡
+ 0x68a2: "shao1", // 梢
+ 0x68a3: "cen2", // 梣
+ 0x68a4: "fen2", // 梤
+ 0x68a5: "song1", // 梥
+ 0x68a6: "meng4", // 梦
+ 0x68a7: "wu2", // 梧
+ 0x68a8: "li2", // 梨
+ 0x68a9: "li2", // 梩
+ 0x68aa: "dou4", // 梪
+ 0x68ab: "qin3", // 梫
+ 0x68ac: "ying3", // 梬
+ 0x68ad: "suo1", // 梭
+ 0x68ae: "ju1", // 梮
+ 0x68af: "ti1", // 梯
+ 0x68b0: "xie4", // 械
+ 0x68b1: "kun3", // 梱
+ 0x68b2: "zhuo2", // 梲
+ 0x68b3: "shu1", // 梳
+ 0x68b4: "chan1", // 梴
+ 0x68b5: "fan4", // 梵
+ 0x68b6: "wei3", // 梶
+ 0x68b7: "jing4", // 梷
+ 0x68b8: "li2", // 梸
+ 0x68b9: "bin1", // 梹
+ 0x68ba: "xia4", // 梺
+ 0x68bb: "fo2", // 梻
+ 0x68bc: "tao2", // 梼
+ 0x68bd: "zhi4", // 梽
+ 0x68be: "lai2", // 梾
+ 0x68bf: "lian2", // 梿
+ 0x68c0: "jian3", // 检
+ 0x68c1: "zhuo1", // 棁
+ 0x68c2: "ling2", // 棂
+ 0x68c3: "li2", // 棃
+ 0x68c4: "qi4", // 棄
+ 0x68c5: "bing3", // 棅
+ 0x68c6: "lun2", // 棆
+ 0x68c7: "cong1", // 棇
+ 0x68c8: "qian4", // 棈
+ 0x68c9: "mian2", // 棉
+ 0x68ca: "qi2", // 棊
+ 0x68cb: "qi2", // 棋
+ 0x68cc: "cai4", // 棌
+ 0x68cd: "gun4", // 棍
+ 0x68ce: "chan2", // 棎
+ 0x68cf: "de2", // 棏
+ 0x68d0: "fei3", // 棐
+ 0x68d1: "pai2", // 棑
+ 0x68d2: "bang4", // 棒
+ 0x68d3: "bang4", // 棓
+ 0x68d4: "hun1", // 棔
+ 0x68d5: "zong1", // 棕
+ 0x68d6: "cheng2", // 棖
+ 0x68d7: "zao3", // 棗
+ 0x68d8: "ji2", // 棘
+ 0x68d9: "li4", // 棙
+ 0x68da: "peng2", // 棚
+ 0x68db: "yu4", // 棛
+ 0x68dc: "yu4", // 棜
+ 0x68dd: "gu4", // 棝
+ 0x68de: "jun4", // 棞
+ 0x68df: "dong4", // 棟
+ 0x68e0: "tang2", // 棠
+ 0x68e1: "gang1", // 棡
+ 0x68e2: "wang3", // 棢
+ 0x68e3: "di4", // 棣
+ 0x68e4: "cuo4", // 棤
+ 0x68e5: "fan2", // 棥
+ 0x68e6: "cheng1", // 棦
+ 0x68e7: "zhan4", // 棧
+ 0x68e8: "qi3", // 棨
+ 0x68e9: "yuan1", // 棩
+ 0x68ea: "yan3", // 棪
+ 0x68eb: "yu4", // 棫
+ 0x68ec: "quan1", // 棬
+ 0x68ed: "yi4", // 棭
+ 0x68ee: "sen1", // 森
+ 0x68ef: "ren3", // 棯
+ 0x68f0: "chui2", // 棰
+ 0x68f1: "leng2", // 棱
+ 0x68f2: "qi1", // 棲
+ 0x68f3: "zhuo1", // 棳
+ 0x68f4: "fu2", // 棴
+ 0x68f5: "ke1", // 棵
+ 0x68f6: "lai2", // 棶
+ 0x68f7: "zou1", // 棷
+ 0x68f8: "zou1", // 棸
+ 0x68f9: "zhao4", // 棹
+ 0x68fa: "guan1", // 棺
+ 0x68fb: "fen1", // 棻
+ 0x68fc: "fen2", // 棼
+ 0x68fd: "shen1", // 棽
+ 0x68fe: "qing2", // 棾
+ 0x68ff: "ni2", // 棿
+ 0x6900: "wan3", // 椀
+ 0x6901: "guo3", // 椁
+ 0x6902: "lu4", // 椂
+ 0x6903: "hao2", // 椃
+ 0x6904: "jie1", // 椄
+ 0x6905: "yi3", // 椅
+ 0x6906: "chou2", // 椆
+ 0x6907: "ju3", // 椇
+ 0x6908: "ju2", // 椈
+ 0x6909: "cheng2", // 椉
+ 0x690a: "zuo2", // 椊
+ 0x690b: "liang2", // 椋
+ 0x690c: "qiang1", // 椌
+ 0x690d: "zhi2", // 植
+ 0x690e: "chui2", // 椎
+ 0x690f: "ya1", // 椏
+ 0x6910: "ju1", // 椐
+ 0x6911: "bei1", // 椑
+ 0x6912: "jiao1", // 椒
+ 0x6913: "zhuo2", // 椓
+ 0x6914: "zi1", // 椔
+ 0x6915: "bin1", // 椕
+ 0x6916: "peng2", // 椖
+ 0x6917: "ding4", // 椗
+ 0x6918: "chu3", // 椘
+ 0x6919: "chang1", // 椙
+ 0x691a: "men1", // 椚
+ 0x691b: "hua1", // 椛
+ 0x691c: "jian3", // 検
+ 0x691d: "gui1", // 椝
+ 0x691e: "xi4", // 椞
+ 0x691f: "du2", // 椟
+ 0x6920: "qian4", // 椠
+ 0x6921: "dao4", // 椡
+ 0x6922: "gui4", // 椢
+ 0x6923: "dian3", // 椣
+ 0x6924: "luo2", // 椤
+ 0x6925: "zhi1", // 椥
+ 0x6926: "quan5", // 椦
+ 0x6927: "ming4", // 椧
+ 0x6928: "fu3", // 椨
+ 0x6929: "geng1", // 椩
+ 0x692a: "peng4", // 椪
+ 0x692b: "shan4", // 椫
+ 0x692c: "yi2", // 椬
+ 0x692d: "tuo3", // 椭
+ 0x692e: "sen1", // 椮
+ 0x692f: "duo3", // 椯
+ 0x6930: "ye1", // 椰
+ 0x6931: "fu4", // 椱
+ 0x6932: "wei3", // 椲
+ 0x6933: "wei1", // 椳
+ 0x6934: "duan4", // 椴
+ 0x6935: "jia3", // 椵
+ 0x6936: "zong1", // 椶
+ 0x6937: "jian1", // 椷
+ 0x6938: "yi2", // 椸
+ 0x6939: "shen4", // 椹
+ 0x693a: "xi2", // 椺
+ 0x693b: "yan4", // 椻
+ 0x693c: "yan3", // 椼
+ 0x693d: "chuan2", // 椽
+ 0x693e: "jian1", // 椾
+ 0x693f: "chun1", // 椿
+ 0x6940: "yu3", // 楀
+ 0x6941: "he2", // 楁
+ 0x6942: "zha1", // 楂
+ 0x6943: "wo4", // 楃
+ 0x6944: "pian2", // 楄
+ 0x6945: "bi1", // 楅
+ 0x6946: "yao1", // 楆
+ 0x6947: "huo4", // 楇
+ 0x6948: "xu1", // 楈
+ 0x6949: "ruo4", // 楉
+ 0x694a: "yang2", // 楊
+ 0x694b: "la4", // 楋
+ 0x694c: "yan2", // 楌
+ 0x694d: "ben3", // 楍
+ 0x694e: "hui1", // 楎
+ 0x694f: "kui2", // 楏
+ 0x6950: "jie4", // 楐
+ 0x6951: "kui2", // 楑
+ 0x6952: "si1", // 楒
+ 0x6953: "feng1", // 楓
+ 0x6954: "xie1", // 楔
+ 0x6955: "tuo3", // 楕
+ 0x6956: "zhi4", // 楖
+ 0x6957: "jian4", // 楗
+ 0x6958: "mu4", // 楘
+ 0x6959: "mao4", // 楙
+ 0x695a: "chu3", // 楚
+ 0x695b: "hu4", // 楛
+ 0x695c: "hu2", // 楜
+ 0x695d: "lian4", // 楝
+ 0x695e: "leng2", // 楞
+ 0x695f: "ting2", // 楟
+ 0x6960: "nan2", // 楠
+ 0x6961: "yu2", // 楡
+ 0x6962: "you2", // 楢
+ 0x6963: "mei2", // 楣
+ 0x6964: "song3", // 楤
+ 0x6965: "xuan4", // 楥
+ 0x6966: "xuan4", // 楦
+ 0x6967: "yang3", // 楧
+ 0x6968: "zhen1", // 楨
+ 0x6969: "pian2", // 楩
+ 0x696a: "ye4", // 楪
+ 0x696b: "ji2", // 楫
+ 0x696c: "jie2", // 楬
+ 0x696d: "ye4", // 業
+ 0x696e: "chu3", // 楮
+ 0x696f: "dun4", // 楯
+ 0x6970: "yu2", // 楰
+ 0x6971: "zou4", // 楱
+ 0x6972: "wei1", // 楲
+ 0x6973: "mei2", // 楳
+ 0x6974: "ti4", // 楴
+ 0x6975: "ji2", // 極
+ 0x6976: "jie2", // 楶
+ 0x6977: "kai3", // 楷
+ 0x6978: "qiu1", // 楸
+ 0x6979: "ying2", // 楹
+ 0x697a: "rou3", // 楺
+ 0x697b: "huang2", // 楻
+ 0x697c: "lou2", // 楼
+ 0x697d: "le4", // 楽
+ 0x697e: "quan2", // 楾
+ 0x697f: "xiang1", // 楿
+ 0x6980: "pin3", // 榀
+ 0x6981: "shi3", // 榁
+ 0x6982: "gai4", // 概
+ 0x6983: "tan2", // 榃
+ 0x6984: "lan3", // 榄
+ 0x6985: "wen1", // 榅
+ 0x6986: "yu2", // 榆
+ 0x6987: "chen4", // 榇
+ 0x6988: "lv2", // 榈
+ 0x6989: "ju3", // 榉
+ 0x698a: "shen2", // 榊
+ 0x698b: "chu5", // 榋
+ 0x698c: "bi1", // 榌
+ 0x698d: "xie4", // 榍
+ 0x698e: "jia3", // 榎
+ 0x698f: "yi4", // 榏
+ 0x6990: "zhan3", // 榐
+ 0x6991: "fu2", // 榑
+ 0x6992: "nuo4", // 榒
+ 0x6993: "mi4", // 榓
+ 0x6994: "lang2", // 榔
+ 0x6995: "rong2", // 榕
+ 0x6996: "gu3", // 榖
+ 0x6997: "jian4", // 榗
+ 0x6998: "ju3", // 榘
+ 0x6999: "ta1", // 榙
+ 0x699a: "yao3", // 榚
+ 0x699b: "zhen1", // 榛
+ 0x699c: "bang3", // 榜
+ 0x699d: "sha1", // 榝
+ 0x699e: "yuan2", // 榞
+ 0x699f: "zi3", // 榟
+ 0x69a0: "ming2", // 榠
+ 0x69a1: "su4", // 榡
+ 0x69a2: "jia4", // 榢
+ 0x69a3: "yao2", // 榣
+ 0x69a4: "jie2", // 榤
+ 0x69a5: "huang4", // 榥
+ 0x69a6: "gan4", // 榦
+ 0x69a7: "fei3", // 榧
+ 0x69a8: "zha4", // 榨
+ 0x69a9: "qian2", // 榩
+ 0x69aa: "ma4", // 榪
+ 0x69ab: "sun3", // 榫
+ 0x69ac: "yuan2", // 榬
+ 0x69ad: "xie4", // 榭
+ 0x69ae: "rong2", // 榮
+ 0x69af: "shi2", // 榯
+ 0x69b0: "zhi1", // 榰
+ 0x69b1: "cui1", // 榱
+ 0x69b2: "wen1", // 榲
+ 0x69b3: "ting2", // 榳
+ 0x69b4: "liu2", // 榴
+ 0x69b5: "rong2", // 榵
+ 0x69b6: "tang2", // 榶
+ 0x69b7: "que4", // 榷
+ 0x69b8: "zhai1", // 榸
+ 0x69b9: "si1", // 榹
+ 0x69ba: "sheng4", // 榺
+ 0x69bb: "ta4", // 榻
+ 0x69bc: "ke1", // 榼
+ 0x69bd: "xi1", // 榽
+ 0x69be: "gu3", // 榾
+ 0x69bf: "qi1", // 榿
+ 0x69c0: "gao3", // 槀
+ 0x69c1: "gao3", // 槁
+ 0x69c2: "sun1", // 槂
+ 0x69c3: "pan2", // 槃
+ 0x69c4: "tao1", // 槄
+ 0x69c5: "ge2", // 槅
+ 0x69c6: "chun1", // 槆
+ 0x69c7: "dian1", // 槇
+ 0x69c8: "nou4", // 槈
+ 0x69c9: "ji2", // 槉
+ 0x69ca: "shuo4", // 槊
+ 0x69cb: "gou4", // 構
+ 0x69cc: "chui2", // 槌
+ 0x69cd: "qiang1", // 槍
+ 0x69ce: "cha2", // 槎
+ 0x69cf: "qian3", // 槏
+ 0x69d0: "huai2", // 槐
+ 0x69d1: "mei2", // 槑
+ 0x69d2: "xu4", // 槒
+ 0x69d3: "gang4", // 槓
+ 0x69d4: "gao1", // 槔
+ 0x69d5: "zhuo1", // 槕
+ 0x69d6: "tuo2", // 槖
+ 0x69d7: "qiao2", // 槗
+ 0x69d8: "yang4", // 様
+ 0x69d9: "dian1", // 槙
+ 0x69da: "jia3", // 槚
+ 0x69db: "kan3", // 槛
+ 0x69dc: "zui4", // 槜
+ 0x69dd: "dao3", // 槝
+ 0x69de: "long2", // 槞
+ 0x69df: "bin1", // 槟
+ 0x69e0: "zhu1", // 槠
+ 0x69e1: "sang1", // 槡
+ 0x69e2: "xi2", // 槢
+ 0x69e3: "ji1", // 槣
+ 0x69e4: "lian2", // 槤
+ 0x69e5: "hui4", // 槥
+ 0x69e6: "yong1", // 槦
+ 0x69e7: "qian4", // 槧
+ 0x69e8: "guo3", // 槨
+ 0x69e9: "gai4", // 槩
+ 0x69ea: "gai4", // 槪
+ 0x69eb: "tuan2", // 槫
+ 0x69ec: "hua4", // 槬
+ 0x69ed: "qi1", // 槭
+ 0x69ee: "sen1", // 槮
+ 0x69ef: "cui1", // 槯
+ 0x69f0: "peng2", // 槰
+ 0x69f1: "you3", // 槱
+ 0x69f2: "hu2", // 槲
+ 0x69f3: "jiang3", // 槳
+ 0x69f4: "hu4", // 槴
+ 0x69f5: "huan4", // 槵
+ 0x69f6: "gui4", // 槶
+ 0x69f7: "nie4", // 槷
+ 0x69f8: "yi4", // 槸
+ 0x69f9: "gao1", // 槹
+ 0x69fa: "kang1", // 槺
+ 0x69fb: "gui1", // 槻
+ 0x69fc: "gui1", // 槼
+ 0x69fd: "cao2", // 槽
+ 0x69fe: "man4", // 槾
+ 0x69ff: "jin3", // 槿
+ 0x6a00: "di2", // 樀
+ 0x6a01: "zhuang1", // 樁
+ 0x6a02: "le4", // 樂
+ 0x6a03: "lang3", // 樃
+ 0x6a04: "chen2", // 樄
+ 0x6a05: "cong1", // 樅
+ 0x6a06: "li2", // 樆
+ 0x6a07: "xiu1", // 樇
+ 0x6a08: "qing2", // 樈
+ 0x6a09: "shuang3", // 樉
+ 0x6a0a: "fan2", // 樊
+ 0x6a0b: "tong3", // 樋
+ 0x6a0c: "guan4", // 樌
+ 0x6a0d: "ze2", // 樍
+ 0x6a0e: "su4", // 樎
+ 0x6a0f: "lei3", // 樏
+ 0x6a10: "lu3", // 樐
+ 0x6a11: "liang2", // 樑
+ 0x6a12: "mi4", // 樒
+ 0x6a13: "lou2", // 樓
+ 0x6a14: "chao2", // 樔
+ 0x6a15: "su4", // 樕
+ 0x6a16: "ke1", // 樖
+ 0x6a17: "chu1", // 樗
+ 0x6a18: "tang2", // 樘
+ 0x6a19: "biao1", // 標
+ 0x6a1a: "lu4", // 樚
+ 0x6a1b: "jiu1", // 樛
+ 0x6a1c: "zhe4", // 樜
+ 0x6a1d: "zha1", // 樝
+ 0x6a1e: "shu1", // 樞
+ 0x6a1f: "zhang1", // 樟
+ 0x6a20: "man2", // 樠
+ 0x6a21: "mo2", // 模
+ 0x6a22: "niao3", // 樢
+ 0x6a23: "yang4", // 樣
+ 0x6a24: "tiao2", // 樤
+ 0x6a25: "peng2", // 樥
+ 0x6a26: "zhu4", // 樦
+ 0x6a27: "sha1", // 樧
+ 0x6a28: "xi1", // 樨
+ 0x6a29: "quan2", // 権
+ 0x6a2a: "heng2", // 横
+ 0x6a2b: "jian1", // 樫
+ 0x6a2c: "cong1", // 樬
+ 0x6a2d: "ji1", // 樭
+ 0x6a2e: "yan1", // 樮
+ 0x6a2f: "qiang2", // 樯
+ 0x6a30: "xue3", // 樰
+ 0x6a31: "ying1", // 樱
+ 0x6a32: "er4", // 樲
+ 0x6a33: "xun2", // 樳
+ 0x6a34: "zhi2", // 樴
+ 0x6a35: "qiao2", // 樵
+ 0x6a36: "zui1", // 樶
+ 0x6a37: "cong2", // 樷
+ 0x6a38: "pu3", // 樸
+ 0x6a39: "shu4", // 樹
+ 0x6a3a: "hua4", // 樺
+ 0x6a3b: "kui4", // 樻
+ 0x6a3c: "zhen1", // 樼
+ 0x6a3d: "zun1", // 樽
+ 0x6a3e: "yue4", // 樾
+ 0x6a3f: "shan4", // 樿
+ 0x6a40: "xi1", // 橀
+ 0x6a41: "chun1", // 橁
+ 0x6a42: "dian4", // 橂
+ 0x6a43: "fa2", // 橃
+ 0x6a44: "gan3", // 橄
+ 0x6a45: "mo2", // 橅
+ 0x6a46: "wu3", // 橆
+ 0x6a47: "qiao1", // 橇
+ 0x6a48: "rao2", // 橈
+ 0x6a49: "lin4", // 橉
+ 0x6a4a: "liu2", // 橊
+ 0x6a4b: "qiao2", // 橋
+ 0x6a4c: "xian4", // 橌
+ 0x6a4d: "run4", // 橍
+ 0x6a4e: "fan2", // 橎
+ 0x6a4f: "zhan3", // 橏
+ 0x6a50: "tuo2", // 橐
+ 0x6a51: "lao3", // 橑
+ 0x6a52: "yun2", // 橒
+ 0x6a53: "shun4", // 橓
+ 0x6a54: "dun1", // 橔
+ 0x6a55: "cheng1", // 橕
+ 0x6a56: "tang2", // 橖
+ 0x6a57: "meng2", // 橗
+ 0x6a58: "ju2", // 橘
+ 0x6a59: "cheng2", // 橙
+ 0x6a5a: "su4", // 橚
+ 0x6a5b: "jue2", // 橛
+ 0x6a5c: "jue2", // 橜
+ 0x6a5d: "dian4", // 橝
+ 0x6a5e: "hui4", // 橞
+ 0x6a5f: "ji1", // 機
+ 0x6a60: "nuo3", // 橠
+ 0x6a61: "xiang4", // 橡
+ 0x6a62: "tuo3", // 橢
+ 0x6a63: "ning3", // 橣
+ 0x6a64: "rui3", // 橤
+ 0x6a65: "zhu1", // 橥
+ 0x6a66: "tong2", // 橦
+ 0x6a67: "zeng1", // 橧
+ 0x6a68: "fen2", // 橨
+ 0x6a69: "qiong2", // 橩
+ 0x6a6a: "ran3", // 橪
+ 0x6a6b: "heng2", // 橫
+ 0x6a6c: "qian2", // 橬
+ 0x6a6d: "gu1", // 橭
+ 0x6a6e: "liu3", // 橮
+ 0x6a6f: "lao4", // 橯
+ 0x6a70: "gao1", // 橰
+ 0x6a71: "chu2", // 橱
+ 0x6a72: "xi3", // 橲
+ 0x6a73: "sheng4", // 橳
+ 0x6a74: "zi3", // 橴
+ 0x6a75: "san5", // 橵
+ 0x6a76: "ji2", // 橶
+ 0x6a77: "dou1", // 橷
+ 0x6a78: "jing1", // 橸
+ 0x6a79: "lu3", // 橹
+ 0x6a7a: "jian5", // 橺
+ 0x6a7b: "chu5", // 橻
+ 0x6a7c: "yuan2", // 橼
+ 0x6a7d: "ta4", // 橽
+ 0x6a7e: "shu1", // 橾
+ 0x6a7f: "jiang1", // 橿
+ 0x6a80: "tan2", // 檀
+ 0x6a81: "lin3", // 檁
+ 0x6a82: "nong2", // 檂
+ 0x6a83: "yin3", // 檃
+ 0x6a84: "xi2", // 檄
+ 0x6a85: "hui4", // 檅
+ 0x6a86: "shan1", // 檆
+ 0x6a87: "zui4", // 檇
+ 0x6a88: "xuan2", // 檈
+ 0x6a89: "cheng1", // 檉
+ 0x6a8a: "gan4", // 檊
+ 0x6a8b: "ju2", // 檋
+ 0x6a8c: "zui4", // 檌
+ 0x6a8d: "yi4", // 檍
+ 0x6a8e: "qin2", // 檎
+ 0x6a8f: "pu3", // 檏
+ 0x6a90: "yan2", // 檐
+ 0x6a91: "lei2", // 檑
+ 0x6a92: "feng1", // 檒
+ 0x6a93: "hui3", // 檓
+ 0x6a94: "dang4", // 檔
+ 0x6a95: "ji4", // 檕
+ 0x6a96: "sui4", // 檖
+ 0x6a97: "bo4", // 檗
+ 0x6a98: "ping2", // 檘
+ 0x6a99: "cheng2", // 檙
+ 0x6a9a: "chu3", // 檚
+ 0x6a9b: "zhua1", // 檛
+ 0x6a9c: "gui4", // 檜
+ 0x6a9d: "ji2", // 檝
+ 0x6a9e: "jie3", // 檞
+ 0x6a9f: "jia3", // 檟
+ 0x6aa0: "qing2", // 檠
+ 0x6aa1: "zhai2", // 檡
+ 0x6aa2: "jian3", // 檢
+ 0x6aa3: "qiang2", // 檣
+ 0x6aa4: "dao4", // 檤
+ 0x6aa5: "yi3", // 檥
+ 0x6aa6: "biao3", // 檦
+ 0x6aa7: "song1", // 檧
+ 0x6aa8: "she1", // 檨
+ 0x6aa9: "lin3", // 檩
+ 0x6aaa: "li4", // 檪
+ 0x6aab: "cha2", // 檫
+ 0x6aac: "meng2", // 檬
+ 0x6aad: "yin2", // 檭
+ 0x6aae: "tao2", // 檮
+ 0x6aaf: "tai2", // 檯
+ 0x6ab0: "mian2", // 檰
+ 0x6ab1: "qi2", // 檱
+ 0x6ab2: "tuan2", // 檲
+ 0x6ab3: "bin1", // 檳
+ 0x6ab4: "huo4", // 檴
+ 0x6ab5: "ji4", // 檵
+ 0x6ab6: "qian1", // 檶
+ 0x6ab7: "ni3", // 檷
+ 0x6ab8: "ning2", // 檸
+ 0x6ab9: "yi1", // 檹
+ 0x6aba: "gao3", // 檺
+ 0x6abb: "kan3", // 檻
+ 0x6abc: "yin4", // 檼
+ 0x6abd: "nou4", // 檽
+ 0x6abe: "qing3", // 檾
+ 0x6abf: "yan3", // 檿
+ 0x6ac0: "qi2", // 櫀
+ 0x6ac1: "mi4", // 櫁
+ 0x6ac2: "zhao4", // 櫂
+ 0x6ac3: "gui4", // 櫃
+ 0x6ac4: "chun1", // 櫄
+ 0x6ac5: "ji1", // 櫅
+ 0x6ac6: "kui2", // 櫆
+ 0x6ac7: "po2", // 櫇
+ 0x6ac8: "deng4", // 櫈
+ 0x6ac9: "chu2", // 櫉
+ 0x6aca: "ge2", // 櫊
+ 0x6acb: "mian2", // 櫋
+ 0x6acc: "you1", // 櫌
+ 0x6acd: "zhi4", // 櫍
+ 0x6ace: "huang3", // 櫎
+ 0x6acf: "qian1", // 櫏
+ 0x6ad0: "lei3", // 櫐
+ 0x6ad1: "lei2", // 櫑
+ 0x6ad2: "sa4", // 櫒
+ 0x6ad3: "lu3", // 櫓
+ 0x6ad4: "li4", // 櫔
+ 0x6ad5: "cuan2", // 櫕
+ 0x6ad6: "lv4", // 櫖
+ 0x6ad7: "mie4", // 櫗
+ 0x6ad8: "hui4", // 櫘
+ 0x6ad9: "ou1", // 櫙
+ 0x6ada: "lu2", // 櫚
+ 0x6adb: "zhi4", // 櫛
+ 0x6adc: "gao1", // 櫜
+ 0x6add: "du2", // 櫝
+ 0x6ade: "yuan2", // 櫞
+ 0x6adf: "li4", // 櫟
+ 0x6ae0: "fei4", // 櫠
+ 0x6ae1: "zhuo2", // 櫡
+ 0x6ae2: "sou3", // 櫢
+ 0x6ae3: "lian2", // 櫣
+ 0x6ae4: "jiang4", // 櫤
+ 0x6ae5: "chu2", // 櫥
+ 0x6ae6: "qing4", // 櫦
+ 0x6ae7: "zhu1", // 櫧
+ 0x6ae8: "lu2", // 櫨
+ 0x6ae9: "yan2", // 櫩
+ 0x6aea: "li4", // 櫪
+ 0x6aeb: "zhu1", // 櫫
+ 0x6aec: "chen4", // 櫬
+ 0x6aed: "jie2", // 櫭
+ 0x6aee: "e4", // 櫮
+ 0x6aef: "su1", // 櫯
+ 0x6af0: "huai2", // 櫰
+ 0x6af1: "nie4", // 櫱
+ 0x6af2: "yu4", // 櫲
+ 0x6af3: "long2", // 櫳
+ 0x6af4: "lai4", // 櫴
+ 0x6af5: "jiao5", // 櫵
+ 0x6af6: "xian3", // 櫶
+ 0x6af7: "gui1", // 櫷
+ 0x6af8: "ju3", // 櫸
+ 0x6af9: "xiao1", // 櫹
+ 0x6afa: "ling2", // 櫺
+ 0x6afb: "ying1", // 櫻
+ 0x6afc: "jian1", // 櫼
+ 0x6afd: "yin3", // 櫽
+ 0x6afe: "you2", // 櫾
+ 0x6aff: "ying2", // 櫿
+ 0x6b00: "xiang1", // 欀
+ 0x6b01: "nong2", // 欁
+ 0x6b02: "bo2", // 欂
+ 0x6b03: "chan2", // 欃
+ 0x6b04: "lan2", // 欄
+ 0x6b05: "ju3", // 欅
+ 0x6b06: "shuang1", // 欆
+ 0x6b07: "she4", // 欇
+ 0x6b08: "wei2", // 欈
+ 0x6b09: "cong2", // 欉
+ 0x6b0a: "quan2", // 權
+ 0x6b0b: "qu2", // 欋
+ 0x6b0c: "cang2", // 欌
+ 0x6b0d: "jiu4", // 欍
+ 0x6b0e: "yu4", // 欎
+ 0x6b0f: "luo2", // 欏
+ 0x6b10: "li4", // 欐
+ 0x6b11: "cuan2", // 欑
+ 0x6b12: "luan2", // 欒
+ 0x6b13: "dang3", // 欓
+ 0x6b14: "jue2", // 欔
+ 0x6b15: "yan2", // 欕
+ 0x6b16: "lan3", // 欖
+ 0x6b17: "lan2", // 欗
+ 0x6b18: "zhu2", // 欘
+ 0x6b19: "lei2", // 欙
+ 0x6b1a: "li3", // 欚
+ 0x6b1b: "ba4", // 欛
+ 0x6b1c: "nang2", // 欜
+ 0x6b1d: "yu4", // 欝
+ 0x6b1e: "ling2", // 欞
+ 0x6b1f: "guang5", // 欟
+ 0x6b20: "qian4", // 欠
+ 0x6b21: "ci4", // 次
+ 0x6b22: "huan1", // 欢
+ 0x6b23: "xin1", // 欣
+ 0x6b24: "yu2", // 欤
+ 0x6b25: "yi4", // 欥
+ 0x6b26: "qian1", // 欦
+ 0x6b27: "ou1", // 欧
+ 0x6b28: "xu1", // 欨
+ 0x6b29: "chao1", // 欩
+ 0x6b2a: "chu4", // 欪
+ 0x6b2b: "qi4", // 欫
+ 0x6b2c: "kai4", // 欬
+ 0x6b2d: "yi4", // 欭
+ 0x6b2e: "jue2", // 欮
+ 0x6b2f: "xi4", // 欯
+ 0x6b30: "xu4", // 欰
+ 0x6b31: "he1", // 欱
+ 0x6b32: "yu4", // 欲
+ 0x6b33: "kui4", // 欳
+ 0x6b34: "lang2", // 欴
+ 0x6b35: "kuan3", // 欵
+ 0x6b36: "shuo4", // 欶
+ 0x6b37: "xi1", // 欷
+ 0x6b38: "ai1", // 欸
+ 0x6b39: "yi1", // 欹
+ 0x6b3a: "qi1", // 欺
+ 0x6b3b: "chua1", // 欻
+ 0x6b3c: "chi3", // 欼
+ 0x6b3d: "qin1", // 欽
+ 0x6b3e: "kuan3", // 款
+ 0x6b3f: "kan3", // 欿
+ 0x6b40: "kuan3", // 歀
+ 0x6b41: "kan3", // 歁
+ 0x6b42: "chuan3", // 歂
+ 0x6b43: "sha4", // 歃
+ 0x6b44: "gua1", // 歄
+ 0x6b45: "yin1", // 歅
+ 0x6b46: "xin1", // 歆
+ 0x6b47: "xie1", // 歇
+ 0x6b48: "yu2", // 歈
+ 0x6b49: "qian4", // 歉
+ 0x6b4a: "xiao1", // 歊
+ 0x6b4b: "ye4", // 歋
+ 0x6b4c: "ge1", // 歌
+ 0x6b4d: "wu1", // 歍
+ 0x6b4e: "tan4", // 歎
+ 0x6b4f: "jin4", // 歏
+ 0x6b50: "ou1", // 歐
+ 0x6b51: "hu1", // 歑
+ 0x6b52: "ti4", // 歒
+ 0x6b53: "huan1", // 歓
+ 0x6b54: "xu1", // 歔
+ 0x6b55: "pen1", // 歕
+ 0x6b56: "xi3", // 歖
+ 0x6b57: "xiao4", // 歗
+ 0x6b58: "chua1", // 歘
+ 0x6b59: "she4", // 歙
+ 0x6b5a: "shan4", // 歚
+ 0x6b5b: "han1", // 歛
+ 0x6b5c: "chu4", // 歜
+ 0x6b5d: "yi4", // 歝
+ 0x6b5e: "e4", // 歞
+ 0x6b5f: "yu2", // 歟
+ 0x6b60: "chuo4", // 歠
+ 0x6b61: "huan1", // 歡
+ 0x6b62: "zhi3", // 止
+ 0x6b63: "zheng4", // 正
+ 0x6b64: "ci3", // 此
+ 0x6b65: "bu4", // 步
+ 0x6b66: "wu3", // 武
+ 0x6b67: "qi2", // 歧
+ 0x6b68: "bu4", // 歨
+ 0x6b69: "bu4", // 歩
+ 0x6b6a: "wai1", // 歪
+ 0x6b6b: "ju4", // 歫
+ 0x6b6c: "qian2", // 歬
+ 0x6b6d: "chi2", // 歭
+ 0x6b6e: "se4", // 歮
+ 0x6b6f: "chi3", // 歯
+ 0x6b70: "se4", // 歰
+ 0x6b71: "zhong3", // 歱
+ 0x6b72: "sui4", // 歲
+ 0x6b73: "sui4", // 歳
+ 0x6b74: "li4", // 歴
+ 0x6b75: "ze2", // 歵
+ 0x6b76: "yu2", // 歶
+ 0x6b77: "li4", // 歷
+ 0x6b78: "gui1", // 歸
+ 0x6b79: "dai3", // 歹
+ 0x6b7a: "e4", // 歺
+ 0x6b7b: "si3", // 死
+ 0x6b7c: "jian1", // 歼
+ 0x6b7d: "zhe2", // 歽
+ 0x6b7e: "mo4", // 歾
+ 0x6b7f: "mo4", // 歿
+ 0x6b80: "yao1", // 殀
+ 0x6b81: "mo4", // 殁
+ 0x6b82: "cu2", // 殂
+ 0x6b83: "yang1", // 殃
+ 0x6b84: "tian3", // 殄
+ 0x6b85: "sheng1", // 殅
+ 0x6b86: "dai4", // 殆
+ 0x6b87: "shang1", // 殇
+ 0x6b88: "xu4", // 殈
+ 0x6b89: "xun4", // 殉
+ 0x6b8a: "shu1", // 殊
+ 0x6b8b: "can2", // 残
+ 0x6b8c: "jue2", // 殌
+ 0x6b8d: "piao3", // 殍
+ 0x6b8e: "qia4", // 殎
+ 0x6b8f: "qiu2", // 殏
+ 0x6b90: "su4", // 殐
+ 0x6b91: "qing2", // 殑
+ 0x6b92: "yun3", // 殒
+ 0x6b93: "lian4", // 殓
+ 0x6b94: "yi4", // 殔
+ 0x6b95: "fou3", // 殕
+ 0x6b96: "zhi2", // 殖
+ 0x6b97: "ye4", // 殗
+ 0x6b98: "can2", // 殘
+ 0x6b99: "hun1", // 殙
+ 0x6b9a: "dan1", // 殚
+ 0x6b9b: "ji2", // 殛
+ 0x6b9c: "die2", // 殜
+ 0x6b9d: "zhen1", // 殝
+ 0x6b9e: "yun3", // 殞
+ 0x6b9f: "wen1", // 殟
+ 0x6ba0: "chou4", // 殠
+ 0x6ba1: "bin4", // 殡
+ 0x6ba2: "ti4", // 殢
+ 0x6ba3: "jin4", // 殣
+ 0x6ba4: "shang1", // 殤
+ 0x6ba5: "yin2", // 殥
+ 0x6ba6: "diao1", // 殦
+ 0x6ba7: "jiu4", // 殧
+ 0x6ba8: "hui4", // 殨
+ 0x6ba9: "cuan4", // 殩
+ 0x6baa: "yi4", // 殪
+ 0x6bab: "dan1", // 殫
+ 0x6bac: "du4", // 殬
+ 0x6bad: "jiang1", // 殭
+ 0x6bae: "lian4", // 殮
+ 0x6baf: "bin4", // 殯
+ 0x6bb0: "du2", // 殰
+ 0x6bb1: "jian1", // 殱
+ 0x6bb2: "jian1", // 殲
+ 0x6bb3: "shu1", // 殳
+ 0x6bb4: "ou1", // 殴
+ 0x6bb5: "duan4", // 段
+ 0x6bb6: "zhu4", // 殶
+ 0x6bb7: "yin1", // 殷
+ 0x6bb8: "qing4", // 殸
+ 0x6bb9: "yi4", // 殹
+ 0x6bba: "sha1", // 殺
+ 0x6bbb: "qiao4", // 殻
+ 0x6bbc: "ke2", // 殼
+ 0x6bbd: "xiao2", // 殽
+ 0x6bbe: "xun4", // 殾
+ 0x6bbf: "dian4", // 殿
+ 0x6bc0: "hui3", // 毀
+ 0x6bc1: "hui3", // 毁
+ 0x6bc2: "gu3", // 毂
+ 0x6bc3: "qiao1", // 毃
+ 0x6bc4: "ji1", // 毄
+ 0x6bc5: "yi4", // 毅
+ 0x6bc6: "ou1", // 毆
+ 0x6bc7: "hui3", // 毇
+ 0x6bc8: "duan4", // 毈
+ 0x6bc9: "yi1", // 毉
+ 0x6bca: "xiao1", // 毊
+ 0x6bcb: "wu2", // 毋
+ 0x6bcc: "guan4", // 毌
+ 0x6bcd: "mu3", // 母
+ 0x6bce: "mei3", // 毎
+ 0x6bcf: "mei3", // 每
+ 0x6bd0: "ai3", // 毐
+ 0x6bd1: "jie3", // 毑
+ 0x6bd2: "du2", // 毒
+ 0x6bd3: "yu4", // 毓
+ 0x6bd4: "bi3", // 比
+ 0x6bd5: "bi4", // 毕
+ 0x6bd6: "bi4", // 毖
+ 0x6bd7: "pi2", // 毗
+ 0x6bd8: "pi2", // 毘
+ 0x6bd9: "bi4", // 毙
+ 0x6bda: "chan2", // 毚
+ 0x6bdb: "mao2", // 毛
+ 0x6bdc: "hao2", // 毜
+ 0x6bdd: "cai3", // 毝
+ 0x6bde: "pi2", // 毞
+ 0x6bdf: "lie3", // 毟
+ 0x6be0: "jia1", // 毠
+ 0x6be1: "zhan1", // 毡
+ 0x6be2: "sai1", // 毢
+ 0x6be3: "mu4", // 毣
+ 0x6be4: "tuo4", // 毤
+ 0x6be5: "xun2", // 毥
+ 0x6be6: "er3", // 毦
+ 0x6be7: "rong2", // 毧
+ 0x6be8: "xian3", // 毨
+ 0x6be9: "ju2", // 毩
+ 0x6bea: "mu2", // 毪
+ 0x6beb: "hao2", // 毫
+ 0x6bec: "qiu2", // 毬
+ 0x6bed: "dou4", // 毭
+ 0x6bee: "sha1", // 毮
+ 0x6bef: "tan3", // 毯
+ 0x6bf0: "pei2", // 毰
+ 0x6bf1: "ju2", // 毱
+ 0x6bf2: "duo1", // 毲
+ 0x6bf3: "cui4", // 毳
+ 0x6bf4: "bi1", // 毴
+ 0x6bf5: "san1", // 毵
+ 0x6bf6: "san1", // 毶
+ 0x6bf7: "mao4", // 毷
+ 0x6bf8: "sai1", // 毸
+ 0x6bf9: "shu1", // 毹
+ 0x6bfa: "shu1", // 毺
+ 0x6bfb: "tuo4", // 毻
+ 0x6bfc: "he2", // 毼
+ 0x6bfd: "jian4", // 毽
+ 0x6bfe: "ta4", // 毾
+ 0x6bff: "san1", // 毿
+ 0x6c00: "lv2", // 氀
+ 0x6c01: "mu2", // 氁
+ 0x6c02: "mao2", // 氂
+ 0x6c03: "tong2", // 氃
+ 0x6c04: "rong3", // 氄
+ 0x6c05: "chang3", // 氅
+ 0x6c06: "pu3", // 氆
+ 0x6c07: "lu5", // 氇
+ 0x6c08: "zhan1", // 氈
+ 0x6c09: "sao4", // 氉
+ 0x6c0a: "zhan1", // 氊
+ 0x6c0b: "meng2", // 氋
+ 0x6c0c: "lu3", // 氌
+ 0x6c0d: "qu2", // 氍
+ 0x6c0e: "die2", // 氎
+ 0x6c0f: "shi4", // 氏
+ 0x6c10: "di1", // 氐
+ 0x6c11: "min2", // 民
+ 0x6c12: "jue2", // 氒
+ 0x6c13: "mang2", // 氓
+ 0x6c14: "qi4", // 气
+ 0x6c15: "pie1", // 氕
+ 0x6c16: "nai3", // 氖
+ 0x6c17: "qi4", // 気
+ 0x6c18: "dao1", // 氘
+ 0x6c19: "xian1", // 氙
+ 0x6c1a: "chuan1", // 氚
+ 0x6c1b: "fen1", // 氛
+ 0x6c1c: "yang2", // 氜
+ 0x6c1d: "nei4", // 氝
+ 0x6c1e: "bin5", // 氞
+ 0x6c1f: "fu2", // 氟
+ 0x6c20: "shen1", // 氠
+ 0x6c21: "dong1", // 氡
+ 0x6c22: "qing1", // 氢
+ 0x6c23: "qi4", // 氣
+ 0x6c24: "yin1", // 氤
+ 0x6c25: "xi1", // 氥
+ 0x6c26: "hai4", // 氦
+ 0x6c27: "yang3", // 氧
+ 0x6c28: "an1", // 氨
+ 0x6c29: "ya4", // 氩
+ 0x6c2a: "ke4", // 氪
+ 0x6c2b: "qing1", // 氫
+ 0x6c2c: "ya4", // 氬
+ 0x6c2d: "dong1", // 氭
+ 0x6c2e: "dan4", // 氮
+ 0x6c2f: "lv4", // 氯
+ 0x6c30: "qing2", // 氰
+ 0x6c31: "yang3", // 氱
+ 0x6c32: "yun1", // 氲
+ 0x6c33: "yun1", // 氳
+ 0x6c34: "shui3", // 水
+ 0x6c35: "shui5", // 氵
+ 0x6c36: "zheng3", // 氶
+ 0x6c37: "bing1", // 氷
+ 0x6c38: "yong3", // 永
+ 0x6c39: "dang4", // 氹
+ 0x6c3a: "shui3", // 氺
+ 0x6c3b: "le4", // 氻
+ 0x6c3c: "ni4", // 氼
+ 0x6c3d: "tun3", // 氽
+ 0x6c3e: "fan4", // 氾
+ 0x6c3f: "gui3", // 氿
+ 0x6c40: "ting1", // 汀
+ 0x6c41: "zhi1", // 汁
+ 0x6c42: "qiu2", // 求
+ 0x6c43: "bin1", // 汃
+ 0x6c44: "ze4", // 汄
+ 0x6c45: "mian3", // 汅
+ 0x6c46: "cuan1", // 汆
+ 0x6c47: "hui4", // 汇
+ 0x6c48: "diao1", // 汈
+ 0x6c49: "han4", // 汉
+ 0x6c4a: "cha4", // 汊
+ 0x6c4b: "zhuo2", // 汋
+ 0x6c4c: "chuan4", // 汌
+ 0x6c4d: "wan2", // 汍
+ 0x6c4e: "fan4", // 汎
+ 0x6c4f: "da4", // 汏
+ 0x6c50: "xi1", // 汐
+ 0x6c51: "tuo1", // 汑
+ 0x6c52: "mang2", // 汒
+ 0x6c53: "qiu2", // 汓
+ 0x6c54: "qi4", // 汔
+ 0x6c55: "shan4", // 汕
+ 0x6c56: "pin4", // 汖
+ 0x6c57: "han4", // 汗
+ 0x6c58: "qian1", // 汘
+ 0x6c59: "wu1", // 汙
+ 0x6c5a: "wu1", // 汚
+ 0x6c5b: "xun4", // 汛
+ 0x6c5c: "si4", // 汜
+ 0x6c5d: "ru3", // 汝
+ 0x6c5e: "gong3", // 汞
+ 0x6c5f: "jiang1", // 江
+ 0x6c60: "chi2", // 池
+ 0x6c61: "wu1", // 污
+ 0x6c62: "tu5", // 汢
+ 0x6c63: "jiu3", // 汣
+ 0x6c64: "tang1", // 汤
+ 0x6c65: "zhi1", // 汥
+ 0x6c66: "zhi3", // 汦
+ 0x6c67: "qian1", // 汧
+ 0x6c68: "mi4", // 汨
+ 0x6c69: "gu3", // 汩
+ 0x6c6a: "wang1", // 汪
+ 0x6c6b: "jing3", // 汫
+ 0x6c6c: "jing3", // 汬
+ 0x6c6d: "rui4", // 汭
+ 0x6c6e: "jun1", // 汮
+ 0x6c6f: "hong2", // 汯
+ 0x6c70: "tai4", // 汰
+ 0x6c71: "quan3", // 汱
+ 0x6c72: "ji2", // 汲
+ 0x6c73: "bian4", // 汳
+ 0x6c74: "bian4", // 汴
+ 0x6c75: "gan4", // 汵
+ 0x6c76: "wen4", // 汶
+ 0x6c77: "zhong1", // 汷
+ 0x6c78: "fang1", // 汸
+ 0x6c79: "xiong1", // 汹
+ 0x6c7a: "jue2", // 決
+ 0x6c7b: "hu3", // 汻
+ 0x6c7c: "niu2", // 汼
+ 0x6c7d: "qi4", // 汽
+ 0x6c7e: "fen2", // 汾
+ 0x6c7f: "xu4", // 汿
+ 0x6c80: "xu4", // 沀
+ 0x6c81: "qin4", // 沁
+ 0x6c82: "yi2", // 沂
+ 0x6c83: "wo4", // 沃
+ 0x6c84: "yun2", // 沄
+ 0x6c85: "yuan2", // 沅
+ 0x6c86: "hang4", // 沆
+ 0x6c87: "yan3", // 沇
+ 0x6c88: "chen2", // 沈
+ 0x6c89: "chen2", // 沉
+ 0x6c8a: "dan4", // 沊
+ 0x6c8b: "you2", // 沋
+ 0x6c8c: "dun4", // 沌
+ 0x6c8d: "hu4", // 沍
+ 0x6c8e: "huo4", // 沎
+ 0x6c8f: "qi1", // 沏
+ 0x6c90: "mu4", // 沐
+ 0x6c91: "nv4", // 沑
+ 0x6c92: "mei2", // 沒
+ 0x6c93: "da2", // 沓
+ 0x6c94: "mian3", // 沔
+ 0x6c95: "mi4", // 沕
+ 0x6c96: "chong1", // 沖
+ 0x6c97: "pang1", // 沗
+ 0x6c98: "bi3", // 沘
+ 0x6c99: "sha1", // 沙
+ 0x6c9a: "zhi3", // 沚
+ 0x6c9b: "pei4", // 沛
+ 0x6c9c: "pan4", // 沜
+ 0x6c9d: "zhui3", // 沝
+ 0x6c9e: "za1", // 沞
+ 0x6c9f: "gou1", // 沟
+ 0x6ca0: "liu2", // 沠
+ 0x6ca1: "mei2", // 没
+ 0x6ca2: "ze2", // 沢
+ 0x6ca3: "feng1", // 沣
+ 0x6ca4: "ou1", // 沤
+ 0x6ca5: "li4", // 沥
+ 0x6ca6: "lun2", // 沦
+ 0x6ca7: "cang1", // 沧
+ 0x6ca8: "feng1", // 沨
+ 0x6ca9: "wei2", // 沩
+ 0x6caa: "hu4", // 沪
+ 0x6cab: "mo4", // 沫
+ 0x6cac: "mei4", // 沬
+ 0x6cad: "shu4", // 沭
+ 0x6cae: "ju3", // 沮
+ 0x6caf: "za2", // 沯
+ 0x6cb0: "tuo1", // 沰
+ 0x6cb1: "tuo2", // 沱
+ 0x6cb2: "tuo2", // 沲
+ 0x6cb3: "he2", // 河
+ 0x6cb4: "li4", // 沴
+ 0x6cb5: "mi3", // 沵
+ 0x6cb6: "yi2", // 沶
+ 0x6cb7: "fa1", // 沷
+ 0x6cb8: "fei4", // 沸
+ 0x6cb9: "you2", // 油
+ 0x6cba: "tian2", // 沺
+ 0x6cbb: "zhi4", // 治
+ 0x6cbc: "zhao3", // 沼
+ 0x6cbd: "gu1", // 沽
+ 0x6cbe: "zhan1", // 沾
+ 0x6cbf: "yan2", // 沿
+ 0x6cc0: "si1", // 泀
+ 0x6cc1: "kuang4", // 況
+ 0x6cc2: "jiong3", // 泂
+ 0x6cc3: "ju1", // 泃
+ 0x6cc4: "xie4", // 泄
+ 0x6cc5: "qiu2", // 泅
+ 0x6cc6: "yi4", // 泆
+ 0x6cc7: "jia1", // 泇
+ 0x6cc8: "zhong1", // 泈
+ 0x6cc9: "quan2", // 泉
+ 0x6cca: "po1", // 泊
+ 0x6ccb: "hui4", // 泋
+ 0x6ccc: "mi4", // 泌
+ 0x6ccd: "ben1", // 泍
+ 0x6cce: "ze2", // 泎
+ 0x6ccf: "zhu2", // 泏
+ 0x6cd0: "le4", // 泐
+ 0x6cd1: "you1", // 泑
+ 0x6cd2: "gu1", // 泒
+ 0x6cd3: "hong2", // 泓
+ 0x6cd4: "gan1", // 泔
+ 0x6cd5: "fa3", // 法
+ 0x6cd6: "mao3", // 泖
+ 0x6cd7: "si4", // 泗
+ 0x6cd8: "hu1", // 泘
+ 0x6cd9: "ping2", // 泙
+ 0x6cda: "ci3", // 泚
+ 0x6cdb: "fan4", // 泛
+ 0x6cdc: "zhi1", // 泜
+ 0x6cdd: "su4", // 泝
+ 0x6cde: "ning4", // 泞
+ 0x6cdf: "cheng1", // 泟
+ 0x6ce0: "ling2", // 泠
+ 0x6ce1: "pao4", // 泡
+ 0x6ce2: "bo1", // 波
+ 0x6ce3: "qi4", // 泣
+ 0x6ce4: "si4", // 泤
+ 0x6ce5: "ni2", // 泥
+ 0x6ce6: "ju2", // 泦
+ 0x6ce7: "sa4", // 泧
+ 0x6ce8: "zhu4", // 注
+ 0x6ce9: "sheng1", // 泩
+ 0x6cea: "lei4", // 泪
+ 0x6ceb: "xuan4", // 泫
+ 0x6cec: "jue2", // 泬
+ 0x6ced: "fu2", // 泭
+ 0x6cee: "pan4", // 泮
+ 0x6cef: "min3", // 泯
+ 0x6cf0: "tai4", // 泰
+ 0x6cf1: "yang1", // 泱
+ 0x6cf2: "ji3", // 泲
+ 0x6cf3: "yong3", // 泳
+ 0x6cf4: "guan4", // 泴
+ 0x6cf5: "beng4", // 泵
+ 0x6cf6: "xue2", // 泶
+ 0x6cf7: "long2", // 泷
+ 0x6cf8: "lu2", // 泸
+ 0x6cf9: "dan4", // 泹
+ 0x6cfa: "luo4", // 泺
+ 0x6cfb: "xie4", // 泻
+ 0x6cfc: "po1", // 泼
+ 0x6cfd: "ze2", // 泽
+ 0x6cfe: "jing1", // 泾
+ 0x6cff: "yin2", // 泿
+ 0x6d00: "pan2", // 洀
+ 0x6d01: "jie2", // 洁
+ 0x6d02: "ye4", // 洂
+ 0x6d03: "hui1", // 洃
+ 0x6d04: "hui2", // 洄
+ 0x6d05: "zai4", // 洅
+ 0x6d06: "cheng2", // 洆
+ 0x6d07: "yin1", // 洇
+ 0x6d08: "wei2", // 洈
+ 0x6d09: "hou4", // 洉
+ 0x6d0a: "jian4", // 洊
+ 0x6d0b: "yang2", // 洋
+ 0x6d0c: "lie4", // 洌
+ 0x6d0d: "si4", // 洍
+ 0x6d0e: "ji4", // 洎
+ 0x6d0f: "er2", // 洏
+ 0x6d10: "xing2", // 洐
+ 0x6d11: "fu2", // 洑
+ 0x6d12: "sa3", // 洒
+ 0x6d13: "se4", // 洓
+ 0x6d14: "zhi3", // 洔
+ 0x6d15: "yin4", // 洕
+ 0x6d16: "wu2", // 洖
+ 0x6d17: "xi3", // 洗
+ 0x6d18: "kao3", // 洘
+ 0x6d19: "zhu1", // 洙
+ 0x6d1a: "jiang4", // 洚
+ 0x6d1b: "luo4", // 洛
+ 0x6d1c: "luo4", // 洜
+ 0x6d1d: "an4", // 洝
+ 0x6d1e: "dong4", // 洞
+ 0x6d1f: "ti4", // 洟
+ 0x6d20: "mou2", // 洠
+ 0x6d21: "lei4", // 洡
+ 0x6d22: "yi1", // 洢
+ 0x6d23: "mi3", // 洣
+ 0x6d24: "quan2", // 洤
+ 0x6d25: "jin1", // 津
+ 0x6d26: "po4", // 洦
+ 0x6d27: "wei3", // 洧
+ 0x6d28: "xiao2", // 洨
+ 0x6d29: "xie4", // 洩
+ 0x6d2a: "hong2", // 洪
+ 0x6d2b: "xu4", // 洫
+ 0x6d2c: "su4", // 洬
+ 0x6d2d: "kuang1", // 洭
+ 0x6d2e: "tao2", // 洮
+ 0x6d2f: "qie4", // 洯
+ 0x6d30: "ju4", // 洰
+ 0x6d31: "er3", // 洱
+ 0x6d32: "zhou1", // 洲
+ 0x6d33: "ru4", // 洳
+ 0x6d34: "ping2", // 洴
+ 0x6d35: "xun2", // 洵
+ 0x6d36: "xiong1", // 洶
+ 0x6d37: "zhi4", // 洷
+ 0x6d38: "guang1", // 洸
+ 0x6d39: "huan2", // 洹
+ 0x6d3a: "ming2", // 洺
+ 0x6d3b: "huo2", // 活
+ 0x6d3c: "wa1", // 洼
+ 0x6d3d: "qia4", // 洽
+ 0x6d3e: "pai4", // 派
+ 0x6d3f: "wu1", // 洿
+ 0x6d40: "qu1", // 浀
+ 0x6d41: "liu2", // 流
+ 0x6d42: "yi4", // 浂
+ 0x6d43: "jia1", // 浃
+ 0x6d44: "jing4", // 浄
+ 0x6d45: "qian3", // 浅
+ 0x6d46: "jiang1", // 浆
+ 0x6d47: "jiao1", // 浇
+ 0x6d48: "zhen1", // 浈
+ 0x6d49: "shi1", // 浉
+ 0x6d4a: "zhuo2", // 浊
+ 0x6d4b: "ce4", // 测
+ 0x6d4c: "fa2", // 浌
+ 0x6d4d: "hui4", // 浍
+ 0x6d4e: "ji4", // 济
+ 0x6d4f: "liu2", // 浏
+ 0x6d50: "chan3", // 浐
+ 0x6d51: "hun2", // 浑
+ 0x6d52: "hu3", // 浒
+ 0x6d53: "nong2", // 浓
+ 0x6d54: "xun2", // 浔
+ 0x6d55: "jin4", // 浕
+ 0x6d56: "lie4", // 浖
+ 0x6d57: "qiu2", // 浗
+ 0x6d58: "wei3", // 浘
+ 0x6d59: "zhe4", // 浙
+ 0x6d5a: "jun4", // 浚
+ 0x6d5b: "han2", // 浛
+ 0x6d5c: "bang1", // 浜
+ 0x6d5d: "mang2", // 浝
+ 0x6d5e: "zhuo2", // 浞
+ 0x6d5f: "you2", // 浟
+ 0x6d60: "xi1", // 浠
+ 0x6d61: "bo2", // 浡
+ 0x6d62: "dou4", // 浢
+ 0x6d63: "huan4", // 浣
+ 0x6d64: "hong2", // 浤
+ 0x6d65: "yi4", // 浥
+ 0x6d66: "pu3", // 浦
+ 0x6d67: "ying3", // 浧
+ 0x6d68: "lan3", // 浨
+ 0x6d69: "hao4", // 浩
+ 0x6d6a: "lang4", // 浪
+ 0x6d6b: "han3", // 浫
+ 0x6d6c: "li3", // 浬
+ 0x6d6d: "geng1", // 浭
+ 0x6d6e: "fu2", // 浮
+ 0x6d6f: "wu2", // 浯
+ 0x6d70: "lian4", // 浰
+ 0x6d71: "chun2", // 浱
+ 0x6d72: "feng2", // 浲
+ 0x6d73: "yi4", // 浳
+ 0x6d74: "yu4", // 浴
+ 0x6d75: "tong2", // 浵
+ 0x6d76: "lao2", // 浶
+ 0x6d77: "hai3", // 海
+ 0x6d78: "jin4", // 浸
+ 0x6d79: "jia1", // 浹
+ 0x6d7a: "chong1", // 浺
+ 0x6d7b: "jiong3", // 浻
+ 0x6d7c: "mei3", // 浼
+ 0x6d7d: "sui1", // 浽
+ 0x6d7e: "cheng1", // 浾
+ 0x6d7f: "pei4", // 浿
+ 0x6d80: "xian4", // 涀
+ 0x6d81: "shen4", // 涁
+ 0x6d82: "tu2", // 涂
+ 0x6d83: "kun4", // 涃
+ 0x6d84: "ping1", // 涄
+ 0x6d85: "nie4", // 涅
+ 0x6d86: "han4", // 涆
+ 0x6d87: "jing1", // 涇
+ 0x6d88: "xiao1", // 消
+ 0x6d89: "she4", // 涉
+ 0x6d8a: "nian3", // 涊
+ 0x6d8b: "tu1", // 涋
+ 0x6d8c: "yong3", // 涌
+ 0x6d8d: "xiao4", // 涍
+ 0x6d8e: "xian2", // 涎
+ 0x6d8f: "ting3", // 涏
+ 0x6d90: "e2", // 涐
+ 0x6d91: "su4", // 涑
+ 0x6d92: "tun1", // 涒
+ 0x6d93: "juan1", // 涓
+ 0x6d94: "cen2", // 涔
+ 0x6d95: "ti4", // 涕
+ 0x6d96: "li4", // 涖
+ 0x6d97: "shui4", // 涗
+ 0x6d98: "si4", // 涘
+ 0x6d99: "lei4", // 涙
+ 0x6d9a: "shui4", // 涚
+ 0x6d9b: "tao1", // 涛
+ 0x6d9c: "du2", // 涜
+ 0x6d9d: "lao4", // 涝
+ 0x6d9e: "lai2", // 涞
+ 0x6d9f: "lian2", // 涟
+ 0x6da0: "wei2", // 涠
+ 0x6da1: "wo1", // 涡
+ 0x6da2: "yun2", // 涢
+ 0x6da3: "huan4", // 涣
+ 0x6da4: "di2", // 涤
+ 0x6da5: "heng1", // 涥
+ 0x6da6: "run4", // 润
+ 0x6da7: "jian4", // 涧
+ 0x6da8: "zhang3", // 涨
+ 0x6da9: "se4", // 涩
+ 0x6daa: "fu2", // 涪
+ 0x6dab: "guan4", // 涫
+ 0x6dac: "xing4", // 涬
+ 0x6dad: "shou4", // 涭
+ 0x6dae: "shuan4", // 涮
+ 0x6daf: "ya2", // 涯
+ 0x6db0: "chuo4", // 涰
+ 0x6db1: "zhang4", // 涱
+ 0x6db2: "ye4", // 液
+ 0x6db3: "kong1", // 涳
+ 0x6db4: "wo4", // 涴
+ 0x6db5: "han2", // 涵
+ 0x6db6: "tuo1", // 涶
+ 0x6db7: "dong1", // 涷
+ 0x6db8: "he2", // 涸
+ 0x6db9: "wo1", // 涹
+ 0x6dba: "ju1", // 涺
+ 0x6dbb: "she4", // 涻
+ 0x6dbc: "liang2", // 涼
+ 0x6dbd: "hun1", // 涽
+ 0x6dbe: "ta4", // 涾
+ 0x6dbf: "zhuo1", // 涿
+ 0x6dc0: "dian4", // 淀
+ 0x6dc1: "qie4", // 淁
+ 0x6dc2: "de2", // 淂
+ 0x6dc3: "juan4", // 淃
+ 0x6dc4: "zi1", // 淄
+ 0x6dc5: "xi1", // 淅
+ 0x6dc6: "xiao2", // 淆
+ 0x6dc7: "qi2", // 淇
+ 0x6dc8: "gu3", // 淈
+ 0x6dc9: "guo3", // 淉
+ 0x6dca: "yan1", // 淊
+ 0x6dcb: "lin2", // 淋
+ 0x6dcc: "tang3", // 淌
+ 0x6dcd: "zhou1", // 淍
+ 0x6dce: "peng3", // 淎
+ 0x6dcf: "hao4", // 淏
+ 0x6dd0: "chang1", // 淐
+ 0x6dd1: "shu1", // 淑
+ 0x6dd2: "qi1", // 淒
+ 0x6dd3: "fang1", // 淓
+ 0x6dd4: "zhi2", // 淔
+ 0x6dd5: "lu4", // 淕
+ 0x6dd6: "nao4", // 淖
+ 0x6dd7: "ju2", // 淗
+ 0x6dd8: "tao2", // 淘
+ 0x6dd9: "cong2", // 淙
+ 0x6dda: "lei4", // 淚
+ 0x6ddb: "zhe4", // 淛
+ 0x6ddc: "ping2", // 淜
+ 0x6ddd: "fei2", // 淝
+ 0x6dde: "song1", // 淞
+ 0x6ddf: "tian3", // 淟
+ 0x6de0: "pi4", // 淠
+ 0x6de1: "dan4", // 淡
+ 0x6de2: "yu4", // 淢
+ 0x6de3: "ni2", // 淣
+ 0x6de4: "yu1", // 淤
+ 0x6de5: "lu4", // 淥
+ 0x6de6: "gan4", // 淦
+ 0x6de7: "mi4", // 淧
+ 0x6de8: "jing4", // 淨
+ 0x6de9: "ling2", // 淩
+ 0x6dea: "lun2", // 淪
+ 0x6deb: "yin2", // 淫
+ 0x6dec: "cui4", // 淬
+ 0x6ded: "qu2", // 淭
+ 0x6dee: "huai2", // 淮
+ 0x6def: "yu4", // 淯
+ 0x6df0: "nian3", // 淰
+ 0x6df1: "shen1", // 深
+ 0x6df2: "biao1", // 淲
+ 0x6df3: "chun2", // 淳
+ 0x6df4: "hu1", // 淴
+ 0x6df5: "yuan1", // 淵
+ 0x6df6: "lai2", // 淶
+ 0x6df7: "hun4", // 混
+ 0x6df8: "qing1", // 淸
+ 0x6df9: "yan1", // 淹
+ 0x6dfa: "qian3", // 淺
+ 0x6dfb: "tian1", // 添
+ 0x6dfc: "miao3", // 淼
+ 0x6dfd: "zhi3", // 淽
+ 0x6dfe: "yin3", // 淾
+ 0x6dff: "bo2", // 淿
+ 0x6e00: "ben4", // 渀
+ 0x6e01: "yuan1", // 渁
+ 0x6e02: "wen4", // 渂
+ 0x6e03: "ruo4", // 渃
+ 0x6e04: "fei1", // 渄
+ 0x6e05: "qing1", // 清
+ 0x6e06: "yuan1", // 渆
+ 0x6e07: "ke3", // 渇
+ 0x6e08: "ji4", // 済
+ 0x6e09: "she4", // 渉
+ 0x6e0a: "yuan1", // 渊
+ 0x6e0b: "se4", // 渋
+ 0x6e0c: "lu4", // 渌
+ 0x6e0d: "zi4", // 渍
+ 0x6e0e: "du2", // 渎
+ 0x6e0f: "yi1", // 渏
+ 0x6e10: "jian4", // 渐
+ 0x6e11: "mian3", // 渑
+ 0x6e12: "pai4", // 渒
+ 0x6e13: "xi1", // 渓
+ 0x6e14: "yu2", // 渔
+ 0x6e15: "yuan1", // 渕
+ 0x6e16: "shen3", // 渖
+ 0x6e17: "shen4", // 渗
+ 0x6e18: "rou2", // 渘
+ 0x6e19: "huan4", // 渙
+ 0x6e1a: "zhu3", // 渚
+ 0x6e1b: "jian3", // 減
+ 0x6e1c: "nuan3", // 渜
+ 0x6e1d: "yu2", // 渝
+ 0x6e1e: "qiu2", // 渞
+ 0x6e1f: "ting2", // 渟
+ 0x6e20: "qu2", // 渠
+ 0x6e21: "du4", // 渡
+ 0x6e22: "fan2", // 渢
+ 0x6e23: "zha1", // 渣
+ 0x6e24: "bo2", // 渤
+ 0x6e25: "wo4", // 渥
+ 0x6e26: "wo1", // 渦
+ 0x6e27: "di4", // 渧
+ 0x6e28: "wei1", // 渨
+ 0x6e29: "wen1", // 温
+ 0x6e2a: "ru2", // 渪
+ 0x6e2b: "xie4", // 渫
+ 0x6e2c: "ce4", // 測
+ 0x6e2d: "wei4", // 渭
+ 0x6e2e: "he2", // 渮
+ 0x6e2f: "gang3", // 港
+ 0x6e30: "yan3", // 渰
+ 0x6e31: "hong2", // 渱
+ 0x6e32: "xuan4", // 渲
+ 0x6e33: "mi3", // 渳
+ 0x6e34: "ke3", // 渴
+ 0x6e35: "mao2", // 渵
+ 0x6e36: "ying1", // 渶
+ 0x6e37: "yan3", // 渷
+ 0x6e38: "you2", // 游
+ 0x6e39: "hong1", // 渹
+ 0x6e3a: "miao3", // 渺
+ 0x6e3b: "sheng3", // 渻
+ 0x6e3c: "mei3", // 渼
+ 0x6e3d: "zai1", // 渽
+ 0x6e3e: "hun2", // 渾
+ 0x6e3f: "nai4", // 渿
+ 0x6e40: "gui3", // 湀
+ 0x6e41: "chi4", // 湁
+ 0x6e42: "e4", // 湂
+ 0x6e43: "pai4", // 湃
+ 0x6e44: "mei2", // 湄
+ 0x6e45: "lian4", // 湅
+ 0x6e46: "qi4", // 湆
+ 0x6e47: "qi4", // 湇
+ 0x6e48: "mei2", // 湈
+ 0x6e49: "tian2", // 湉
+ 0x6e4a: "cou4", // 湊
+ 0x6e4b: "wei2", // 湋
+ 0x6e4c: "can1", // 湌
+ 0x6e4d: "tuan1", // 湍
+ 0x6e4e: "mian3", // 湎
+ 0x6e4f: "hui4", // 湏
+ 0x6e50: "mo4", // 湐
+ 0x6e51: "xu1", // 湑
+ 0x6e52: "ji2", // 湒
+ 0x6e53: "pen2", // 湓
+ 0x6e54: "jian1", // 湔
+ 0x6e55: "jian3", // 湕
+ 0x6e56: "hu2", // 湖
+ 0x6e57: "feng4", // 湗
+ 0x6e58: "xiang1", // 湘
+ 0x6e59: "yi4", // 湙
+ 0x6e5a: "yin4", // 湚
+ 0x6e5b: "zhan4", // 湛
+ 0x6e5c: "shi2", // 湜
+ 0x6e5d: "jie1", // 湝
+ 0x6e5e: "cheng1", // 湞
+ 0x6e5f: "huang2", // 湟
+ 0x6e60: "tan4", // 湠
+ 0x6e61: "yu2", // 湡
+ 0x6e62: "bi4", // 湢
+ 0x6e63: "min3", // 湣
+ 0x6e64: "shi1", // 湤
+ 0x6e65: "tu1", // 湥
+ 0x6e66: "sheng1", // 湦
+ 0x6e67: "yong3", // 湧
+ 0x6e68: "ju2", // 湨
+ 0x6e69: "dong4", // 湩
+ 0x6e6a: "tuan4", // 湪
+ 0x6e6b: "jiao3", // 湫
+ 0x6e6c: "jiao3", // 湬
+ 0x6e6d: "qiu2", // 湭
+ 0x6e6e: "yan1", // 湮
+ 0x6e6f: "tang1", // 湯
+ 0x6e70: "long2", // 湰
+ 0x6e71: "huo4", // 湱
+ 0x6e72: "yuan2", // 湲
+ 0x6e73: "nan3", // 湳
+ 0x6e74: "ban4", // 湴
+ 0x6e75: "you3", // 湵
+ 0x6e76: "quan2", // 湶
+ 0x6e77: "zhuang1", // 湷
+ 0x6e78: "liang4", // 湸
+ 0x6e79: "chan2", // 湹
+ 0x6e7a: "xian2", // 湺
+ 0x6e7b: "chun2", // 湻
+ 0x6e7c: "nie4", // 湼
+ 0x6e7d: "zi1", // 湽
+ 0x6e7e: "wan1", // 湾
+ 0x6e7f: "shi1", // 湿
+ 0x6e80: "man3", // 満
+ 0x6e81: "ying2", // 溁
+ 0x6e82: "la4", // 溂
+ 0x6e83: "kui4", // 溃
+ 0x6e84: "feng2", // 溄
+ 0x6e85: "jian4", // 溅
+ 0x6e86: "xu4", // 溆
+ 0x6e87: "lou2", // 溇
+ 0x6e88: "wei2", // 溈
+ 0x6e89: "gai4", // 溉
+ 0x6e8a: "bo1", // 溊
+ 0x6e8b: "ying2", // 溋
+ 0x6e8c: "po1", // 溌
+ 0x6e8d: "jin4", // 溍
+ 0x6e8e: "yan4", // 溎
+ 0x6e8f: "tang2", // 溏
+ 0x6e90: "yuan2", // 源
+ 0x6e91: "suo3", // 溑
+ 0x6e92: "yuan2", // 溒
+ 0x6e93: "lian2", // 溓
+ 0x6e94: "yao3", // 溔
+ 0x6e95: "meng2", // 溕
+ 0x6e96: "zhun3", // 準
+ 0x6e97: "cheng2", // 溗
+ 0x6e98: "ke4", // 溘
+ 0x6e99: "tai4", // 溙
+ 0x6e9a: "ta3", // 溚
+ 0x6e9b: "wa1", // 溛
+ 0x6e9c: "liu1", // 溜
+ 0x6e9d: "gou1", // 溝
+ 0x6e9e: "sao1", // 溞
+ 0x6e9f: "ming2", // 溟
+ 0x6ea0: "zha4", // 溠
+ 0x6ea1: "shi2", // 溡
+ 0x6ea2: "yi4", // 溢
+ 0x6ea3: "lun4", // 溣
+ 0x6ea4: "ma3", // 溤
+ 0x6ea5: "pu3", // 溥
+ 0x6ea6: "wei1", // 溦
+ 0x6ea7: "li4", // 溧
+ 0x6ea8: "zai1", // 溨
+ 0x6ea9: "wu4", // 溩
+ 0x6eaa: "xi1", // 溪
+ 0x6eab: "wen1", // 溫
+ 0x6eac: "qiang1", // 溬
+ 0x6ead: "ze2", // 溭
+ 0x6eae: "shi1", // 溮
+ 0x6eaf: "su4", // 溯
+ 0x6eb0: "ai2", // 溰
+ 0x6eb1: "qin2", // 溱
+ 0x6eb2: "sou1", // 溲
+ 0x6eb3: "yun2", // 溳
+ 0x6eb4: "xiu4", // 溴
+ 0x6eb5: "yin1", // 溵
+ 0x6eb6: "rong2", // 溶
+ 0x6eb7: "hun4", // 溷
+ 0x6eb8: "su4", // 溸
+ 0x6eb9: "suo4", // 溹
+ 0x6eba: "ni4", // 溺
+ 0x6ebb: "ta1", // 溻
+ 0x6ebc: "shi1", // 溼
+ 0x6ebd: "ru4", // 溽
+ 0x6ebe: "ai1", // 溾
+ 0x6ebf: "pan4", // 溿
+ 0x6ec0: "chu4", // 滀
+ 0x6ec1: "chu2", // 滁
+ 0x6ec2: "pang1", // 滂
+ 0x6ec3: "weng1", // 滃
+ 0x6ec4: "cang1", // 滄
+ 0x6ec5: "mie4", // 滅
+ 0x6ec6: "ge2", // 滆
+ 0x6ec7: "dian1", // 滇
+ 0x6ec8: "hao4", // 滈
+ 0x6ec9: "huang4", // 滉
+ 0x6eca: "xi4", // 滊
+ 0x6ecb: "zi1", // 滋
+ 0x6ecc: "di2", // 滌
+ 0x6ecd: "zhi4", // 滍
+ 0x6ece: "xing2", // 滎
+ 0x6ecf: "fu3", // 滏
+ 0x6ed0: "jie2", // 滐
+ 0x6ed1: "hua2", // 滑
+ 0x6ed2: "ge1", // 滒
+ 0x6ed3: "zi3", // 滓
+ 0x6ed4: "tao1", // 滔
+ 0x6ed5: "teng2", // 滕
+ 0x6ed6: "sui1", // 滖
+ 0x6ed7: "bi4", // 滗
+ 0x6ed8: "jiao4", // 滘
+ 0x6ed9: "hui4", // 滙
+ 0x6eda: "gun3", // 滚
+ 0x6edb: "yin2", // 滛
+ 0x6edc: "gao1", // 滜
+ 0x6edd: "long2", // 滝
+ 0x6ede: "zhi4", // 滞
+ 0x6edf: "yan4", // 滟
+ 0x6ee0: "she4", // 滠
+ 0x6ee1: "man3", // 满
+ 0x6ee2: "ying2", // 滢
+ 0x6ee3: "chun2", // 滣
+ 0x6ee4: "lv4", // 滤
+ 0x6ee5: "lan4", // 滥
+ 0x6ee6: "luan2", // 滦
+ 0x6ee7: "yao2", // 滧
+ 0x6ee8: "bin1", // 滨
+ 0x6ee9: "tan1", // 滩
+ 0x6eea: "yu4", // 滪
+ 0x6eeb: "xiu3", // 滫
+ 0x6eec: "hu4", // 滬
+ 0x6eed: "bi4", // 滭
+ 0x6eee: "biao1", // 滮
+ 0x6eef: "zhi4", // 滯
+ 0x6ef0: "jiang4", // 滰
+ 0x6ef1: "kou4", // 滱
+ 0x6ef2: "shen4", // 滲
+ 0x6ef3: "shang1", // 滳
+ 0x6ef4: "di1", // 滴
+ 0x6ef5: "mi4", // 滵
+ 0x6ef6: "ao2", // 滶
+ 0x6ef7: "lu3", // 滷
+ 0x6ef8: "hu3", // 滸
+ 0x6ef9: "hu1", // 滹
+ 0x6efa: "you1", // 滺
+ 0x6efb: "chan3", // 滻
+ 0x6efc: "fan4", // 滼
+ 0x6efd: "yong1", // 滽
+ 0x6efe: "gun3", // 滾
+ 0x6eff: "man3", // 滿
+ 0x6f00: "qing3", // 漀
+ 0x6f01: "yu2", // 漁
+ 0x6f02: "piao4", // 漂
+ 0x6f03: "ji4", // 漃
+ 0x6f04: "ya2", // 漄
+ 0x6f05: "chao2", // 漅
+ 0x6f06: "qi1", // 漆
+ 0x6f07: "xi3", // 漇
+ 0x6f08: "ji4", // 漈
+ 0x6f09: "lu4", // 漉
+ 0x6f0a: "lou2", // 漊
+ 0x6f0b: "long2", // 漋
+ 0x6f0c: "jin3", // 漌
+ 0x6f0d: "guo2", // 漍
+ 0x6f0e: "cong2", // 漎
+ 0x6f0f: "lou4", // 漏
+ 0x6f10: "zhi2", // 漐
+ 0x6f11: "gai4", // 漑
+ 0x6f12: "qiang2", // 漒
+ 0x6f13: "li2", // 漓
+ 0x6f14: "yan3", // 演
+ 0x6f15: "cao2", // 漕
+ 0x6f16: "jiao4", // 漖
+ 0x6f17: "cong1", // 漗
+ 0x6f18: "chun2", // 漘
+ 0x6f19: "tuan2", // 漙
+ 0x6f1a: "ou1", // 漚
+ 0x6f1b: "teng2", // 漛
+ 0x6f1c: "ye3", // 漜
+ 0x6f1d: "xi2", // 漝
+ 0x6f1e: "mi4", // 漞
+ 0x6f1f: "tang2", // 漟
+ 0x6f20: "mo4", // 漠
+ 0x6f21: "shang1", // 漡
+ 0x6f22: "han4", // 漢
+ 0x6f23: "lian2", // 漣
+ 0x6f24: "lan3", // 漤
+ 0x6f25: "wa1", // 漥
+ 0x6f26: "chi2", // 漦
+ 0x6f27: "gan1", // 漧
+ 0x6f28: "feng2", // 漨
+ 0x6f29: "xuan2", // 漩
+ 0x6f2a: "yi1", // 漪
+ 0x6f2b: "man4", // 漫
+ 0x6f2c: "zi4", // 漬
+ 0x6f2d: "mang3", // 漭
+ 0x6f2e: "kang1", // 漮
+ 0x6f2f: "luo4", // 漯
+ 0x6f30: "peng1", // 漰
+ 0x6f31: "shu4", // 漱
+ 0x6f32: "zhang3", // 漲
+ 0x6f33: "zhang1", // 漳
+ 0x6f34: "zhuang4", // 漴
+ 0x6f35: "xu4", // 漵
+ 0x6f36: "huan4", // 漶
+ 0x6f37: "huo3", // 漷
+ 0x6f38: "jian4", // 漸
+ 0x6f39: "yan1", // 漹
+ 0x6f3a: "shuang3", // 漺
+ 0x6f3b: "liao2", // 漻
+ 0x6f3c: "cui3", // 漼
+ 0x6f3d: "ti2", // 漽
+ 0x6f3e: "yang4", // 漾
+ 0x6f3f: "jiang1", // 漿
+ 0x6f40: "cong2", // 潀
+ 0x6f41: "ying3", // 潁
+ 0x6f42: "hong2", // 潂
+ 0x6f43: "xiu3", // 潃
+ 0x6f44: "shu4", // 潄
+ 0x6f45: "guan4", // 潅
+ 0x6f46: "ying2", // 潆
+ 0x6f47: "xiao1", // 潇
+ 0x6f48: "zong5", // 潈
+ 0x6f49: "kun1", // 潉
+ 0x6f4a: "xu4", // 潊
+ 0x6f4b: "lian4", // 潋
+ 0x6f4c: "zhi4", // 潌
+ 0x6f4d: "wei2", // 潍
+ 0x6f4e: "pi4", // 潎
+ 0x6f4f: "yu4", // 潏
+ 0x6f50: "jiao4", // 潐
+ 0x6f51: "po1", // 潑
+ 0x6f52: "dang4", // 潒
+ 0x6f53: "hui4", // 潓
+ 0x6f54: "jie2", // 潔
+ 0x6f55: "wu3", // 潕
+ 0x6f56: "pa2", // 潖
+ 0x6f57: "ji2", // 潗
+ 0x6f58: "pan1", // 潘
+ 0x6f59: "wei2", // 潙
+ 0x6f5a: "su4", // 潚
+ 0x6f5b: "qian2", // 潛
+ 0x6f5c: "qian2", // 潜
+ 0x6f5d: "xi1", // 潝
+ 0x6f5e: "lu4", // 潞
+ 0x6f5f: "xi4", // 潟
+ 0x6f60: "xun4", // 潠
+ 0x6f61: "dun4", // 潡
+ 0x6f62: "huang2", // 潢
+ 0x6f63: "min3", // 潣
+ 0x6f64: "run4", // 潤
+ 0x6f65: "su4", // 潥
+ 0x6f66: "lao3", // 潦
+ 0x6f67: "zhen1", // 潧
+ 0x6f68: "cong2", // 潨
+ 0x6f69: "yi4", // 潩
+ 0x6f6a: "zhe4", // 潪
+ 0x6f6b: "wan1", // 潫
+ 0x6f6c: "shan4", // 潬
+ 0x6f6d: "tan2", // 潭
+ 0x6f6e: "chao2", // 潮
+ 0x6f6f: "xun2", // 潯
+ 0x6f70: "kui4", // 潰
+ 0x6f71: "ye1", // 潱
+ 0x6f72: "shao4", // 潲
+ 0x6f73: "tu2", // 潳
+ 0x6f74: "zhu1", // 潴
+ 0x6f75: "sa3", // 潵
+ 0x6f76: "hei1", // 潶
+ 0x6f77: "bi4", // 潷
+ 0x6f78: "shan1", // 潸
+ 0x6f79: "chan2", // 潹
+ 0x6f7a: "chan2", // 潺
+ 0x6f7b: "shu3", // 潻
+ 0x6f7c: "tong2", // 潼
+ 0x6f7d: "pu1", // 潽
+ 0x6f7e: "lin2", // 潾
+ 0x6f7f: "wei2", // 潿
+ 0x6f80: "se4", // 澀
+ 0x6f81: "se4", // 澁
+ 0x6f82: "cheng2", // 澂
+ 0x6f83: "jiong3", // 澃
+ 0x6f84: "cheng2", // 澄
+ 0x6f85: "hua4", // 澅
+ 0x6f86: "jiao1", // 澆
+ 0x6f87: "lao4", // 澇
+ 0x6f88: "che4", // 澈
+ 0x6f89: "gan3", // 澉
+ 0x6f8a: "cun1", // 澊
+ 0x6f8b: "hong4", // 澋
+ 0x6f8c: "si1", // 澌
+ 0x6f8d: "shu4", // 澍
+ 0x6f8e: "peng1", // 澎
+ 0x6f8f: "han2", // 澏
+ 0x6f90: "yun2", // 澐
+ 0x6f91: "liu4", // 澑
+ 0x6f92: "hong4", // 澒
+ 0x6f93: "fu2", // 澓
+ 0x6f94: "hao4", // 澔
+ 0x6f95: "he2", // 澕
+ 0x6f96: "xian2", // 澖
+ 0x6f97: "jian4", // 澗
+ 0x6f98: "shan1", // 澘
+ 0x6f99: "xi4", // 澙
+ 0x6f9a: "yu5", // 澚
+ 0x6f9b: "lu3", // 澛
+ 0x6f9c: "lan2", // 澜
+ 0x6f9d: "ning4", // 澝
+ 0x6f9e: "yu2", // 澞
+ 0x6f9f: "lin3", // 澟
+ 0x6fa0: "mian3", // 澠
+ 0x6fa1: "zao3", // 澡
+ 0x6fa2: "dang1", // 澢
+ 0x6fa3: "huan4", // 澣
+ 0x6fa4: "ze2", // 澤
+ 0x6fa5: "xie4", // 澥
+ 0x6fa6: "yu4", // 澦
+ 0x6fa7: "li3", // 澧
+ 0x6fa8: "shi4", // 澨
+ 0x6fa9: "xue2", // 澩
+ 0x6faa: "ling2", // 澪
+ 0x6fab: "wan4", // 澫
+ 0x6fac: "zi1", // 澬
+ 0x6fad: "yong1", // 澭
+ 0x6fae: "hui4", // 澮
+ 0x6faf: "can4", // 澯
+ 0x6fb0: "lian4", // 澰
+ 0x6fb1: "dian4", // 澱
+ 0x6fb2: "ye4", // 澲
+ 0x6fb3: "ao4", // 澳
+ 0x6fb4: "huan2", // 澴
+ 0x6fb5: "zhen1", // 澵
+ 0x6fb6: "chan2", // 澶
+ 0x6fb7: "man4", // 澷
+ 0x6fb8: "dan3", // 澸
+ 0x6fb9: "dan4", // 澹
+ 0x6fba: "yi4", // 澺
+ 0x6fbb: "sui4", // 澻
+ 0x6fbc: "pi4", // 澼
+ 0x6fbd: "ju4", // 澽
+ 0x6fbe: "ta4", // 澾
+ 0x6fbf: "qin2", // 澿
+ 0x6fc0: "ji1", // 激
+ 0x6fc1: "zhuo2", // 濁
+ 0x6fc2: "lian2", // 濂
+ 0x6fc3: "nong2", // 濃
+ 0x6fc4: "guo1", // 濄
+ 0x6fc5: "jin4", // 濅
+ 0x6fc6: "fen2", // 濆
+ 0x6fc7: "se4", // 濇
+ 0x6fc8: "ji2", // 濈
+ 0x6fc9: "sui1", // 濉
+ 0x6fca: "hui4", // 濊
+ 0x6fcb: "chu3", // 濋
+ 0x6fcc: "ta4", // 濌
+ 0x6fcd: "song1", // 濍
+ 0x6fce: "ding3", // 濎
+ 0x6fcf: "se4", // 濏
+ 0x6fd0: "zhu3", // 濐
+ 0x6fd1: "lai4", // 濑
+ 0x6fd2: "bin1", // 濒
+ 0x6fd3: "lian2", // 濓
+ 0x6fd4: "mi3", // 濔
+ 0x6fd5: "shi1", // 濕
+ 0x6fd6: "shu4", // 濖
+ 0x6fd7: "mi4", // 濗
+ 0x6fd8: "ning4", // 濘
+ 0x6fd9: "ying2", // 濙
+ 0x6fda: "ying2", // 濚
+ 0x6fdb: "meng2", // 濛
+ 0x6fdc: "jin4", // 濜
+ 0x6fdd: "qi2", // 濝
+ 0x6fde: "bi4", // 濞
+ 0x6fdf: "ji4", // 濟
+ 0x6fe0: "hao2", // 濠
+ 0x6fe1: "ru2", // 濡
+ 0x6fe2: "cui4", // 濢
+ 0x6fe3: "wo4", // 濣
+ 0x6fe4: "tao1", // 濤
+ 0x6fe5: "yin3", // 濥
+ 0x6fe6: "yin3", // 濦
+ 0x6fe7: "dui4", // 濧
+ 0x6fe8: "ci2", // 濨
+ 0x6fe9: "huo4", // 濩
+ 0x6fea: "qing4", // 濪
+ 0x6feb: "lan4", // 濫
+ 0x6fec: "jun4", // 濬
+ 0x6fed: "ai3", // 濭
+ 0x6fee: "pu2", // 濮
+ 0x6fef: "zhuo2", // 濯
+ 0x6ff0: "wei2", // 濰
+ 0x6ff1: "bin1", // 濱
+ 0x6ff2: "gu3", // 濲
+ 0x6ff3: "qian2", // 濳
+ 0x6ff4: "ying2", // 濴
+ 0x6ff5: "bin1", // 濵
+ 0x6ff6: "kuo4", // 濶
+ 0x6ff7: "fei4", // 濷
+ 0x6ff8: "cang1", // 濸
+ 0x6ff9: "me5", // 濹
+ 0x6ffa: "jian4", // 濺
+ 0x6ffb: "wei3", // 濻
+ 0x6ffc: "luo4", // 濼
+ 0x6ffd: "zan4", // 濽
+ 0x6ffe: "lv4", // 濾
+ 0x6fff: "li4", // 濿
+ 0x7000: "you1", // 瀀
+ 0x7001: "yang4", // 瀁
+ 0x7002: "lu3", // 瀂
+ 0x7003: "si4", // 瀃
+ 0x7004: "zhi4", // 瀄
+ 0x7005: "ying2", // 瀅
+ 0x7006: "du2", // 瀆
+ 0x7007: "wang3", // 瀇
+ 0x7008: "hui1", // 瀈
+ 0x7009: "xie4", // 瀉
+ 0x700a: "pan2", // 瀊
+ 0x700b: "shen3", // 瀋
+ 0x700c: "biao1", // 瀌
+ 0x700d: "chan2", // 瀍
+ 0x700e: "mo4", // 瀎
+ 0x700f: "liu2", // 瀏
+ 0x7010: "jian1", // 瀐
+ 0x7011: "pu4", // 瀑
+ 0x7012: "se4", // 瀒
+ 0x7013: "cheng2", // 瀓
+ 0x7014: "gu3", // 瀔
+ 0x7015: "bin1", // 瀕
+ 0x7016: "huo4", // 瀖
+ 0x7017: "xian4", // 瀗
+ 0x7018: "lu2", // 瀘
+ 0x7019: "qin4", // 瀙
+ 0x701a: "han4", // 瀚
+ 0x701b: "ying2", // 瀛
+ 0x701c: "rong2", // 瀜
+ 0x701d: "li4", // 瀝
+ 0x701e: "jing4", // 瀞
+ 0x701f: "xiao1", // 瀟
+ 0x7020: "ying2", // 瀠
+ 0x7021: "sui3", // 瀡
+ 0x7022: "wei3", // 瀢
+ 0x7023: "xie4", // 瀣
+ 0x7024: "huai2", // 瀤
+ 0x7025: "xue4", // 瀥
+ 0x7026: "zhu1", // 瀦
+ 0x7027: "long2", // 瀧
+ 0x7028: "lai4", // 瀨
+ 0x7029: "dui4", // 瀩
+ 0x702a: "fan2", // 瀪
+ 0x702b: "hu2", // 瀫
+ 0x702c: "lai4", // 瀬
+ 0x702d: "shu1", // 瀭
+ 0x702e: "ling5", // 瀮
+ 0x702f: "ying2", // 瀯
+ 0x7030: "mi2", // 瀰
+ 0x7031: "ji4", // 瀱
+ 0x7032: "lian4", // 瀲
+ 0x7033: "jian4", // 瀳
+ 0x7034: "ying2", // 瀴
+ 0x7035: "fen4", // 瀵
+ 0x7036: "lin2", // 瀶
+ 0x7037: "yi4", // 瀷
+ 0x7038: "jian1", // 瀸
+ 0x7039: "yue4", // 瀹
+ 0x703a: "chan2", // 瀺
+ 0x703b: "dai4", // 瀻
+ 0x703c: "rang2", // 瀼
+ 0x703d: "jian3", // 瀽
+ 0x703e: "lan2", // 瀾
+ 0x703f: "fan2", // 瀿
+ 0x7040: "shuang4", // 灀
+ 0x7041: "yuan1", // 灁
+ 0x7042: "zhuo2", // 灂
+ 0x7043: "feng1", // 灃
+ 0x7044: "she4", // 灄
+ 0x7045: "lei3", // 灅
+ 0x7046: "lan2", // 灆
+ 0x7047: "cong2", // 灇
+ 0x7048: "qu2", // 灈
+ 0x7049: "yong1", // 灉
+ 0x704a: "qian2", // 灊
+ 0x704b: "fa3", // 灋
+ 0x704c: "guan4", // 灌
+ 0x704d: "jue2", // 灍
+ 0x704e: "yan4", // 灎
+ 0x704f: "hao4", // 灏
+ 0x7050: "ying2", // 灐
+ 0x7051: "sa3", // 灑
+ 0x7052: "zan4", // 灒
+ 0x7053: "luan2", // 灓
+ 0x7054: "yan4", // 灔
+ 0x7055: "li2", // 灕
+ 0x7056: "mi3", // 灖
+ 0x7057: "shan4", // 灗
+ 0x7058: "tan1", // 灘
+ 0x7059: "dang3", // 灙
+ 0x705a: "jiao3", // 灚
+ 0x705b: "chan3", // 灛
+ 0x705c: "ying2", // 灜
+ 0x705d: "hao4", // 灝
+ 0x705e: "ba4", // 灞
+ 0x705f: "zhu2", // 灟
+ 0x7060: "lan3", // 灠
+ 0x7061: "lan2", // 灡
+ 0x7062: "nang3", // 灢
+ 0x7063: "wan1", // 灣
+ 0x7064: "luan2", // 灤
+ 0x7065: "xun2", // 灥
+ 0x7066: "xian3", // 灦
+ 0x7067: "yan4", // 灧
+ 0x7068: "gan4", // 灨
+ 0x7069: "yan4", // 灩
+ 0x706a: "yu4", // 灪
+ 0x706b: "huo3", // 火
+ 0x706c: "biao1", // 灬
+ 0x706d: "mie4", // 灭
+ 0x706e: "guang1", // 灮
+ 0x706f: "deng1", // 灯
+ 0x7070: "hui1", // 灰
+ 0x7071: "xiao1", // 灱
+ 0x7072: "xiao1", // 灲
+ 0x7073: "hui1", // 灳
+ 0x7074: "hong1", // 灴
+ 0x7075: "ling2", // 灵
+ 0x7076: "zao4", // 灶
+ 0x7077: "zhuan4", // 灷
+ 0x7078: "jiu3", // 灸
+ 0x7079: "zha4", // 灹
+ 0x707a: "xie4", // 灺
+ 0x707b: "chi4", // 灻
+ 0x707c: "zhuo2", // 灼
+ 0x707d: "zai1", // 災
+ 0x707e: "zai1", // 灾
+ 0x707f: "can4", // 灿
+ 0x7080: "yang2", // 炀
+ 0x7081: "qi4", // 炁
+ 0x7082: "zhong1", // 炂
+ 0x7083: "fen2", // 炃
+ 0x7084: "niu3", // 炄
+ 0x7085: "jiong3", // 炅
+ 0x7086: "wen2", // 炆
+ 0x7087: "pu1", // 炇
+ 0x7088: "yi4", // 炈
+ 0x7089: "lu2", // 炉
+ 0x708a: "chui1", // 炊
+ 0x708b: "pi1", // 炋
+ 0x708c: "kai4", // 炌
+ 0x708d: "pan4", // 炍
+ 0x708e: "yan2", // 炎
+ 0x708f: "kai4", // 炏
+ 0x7090: "pang4", // 炐
+ 0x7091: "mu4", // 炑
+ 0x7092: "chao3", // 炒
+ 0x7093: "liao4", // 炓
+ 0x7094: "gui4", // 炔
+ 0x7095: "kang4", // 炕
+ 0x7096: "dun4", // 炖
+ 0x7097: "guang1", // 炗
+ 0x7098: "xin1", // 炘
+ 0x7099: "zhi4", // 炙
+ 0x709a: "guang1", // 炚
+ 0x709b: "guang1", // 炛
+ 0x709c: "wei3", // 炜
+ 0x709d: "qiang4", // 炝
+ 0x709e: "bian5", // 炞
+ 0x709f: "da2", // 炟
+ 0x70a0: "xia2", // 炠
+ 0x70a1: "zheng1", // 炡
+ 0x70a2: "zhu2", // 炢
+ 0x70a3: "ke3", // 炣
+ 0x70a4: "zhao4", // 炤
+ 0x70a5: "fu2", // 炥
+ 0x70a6: "ba2", // 炦
+ 0x70a7: "xie4", // 炧
+ 0x70a8: "xie4", // 炨
+ 0x70a9: "ling4", // 炩
+ 0x70aa: "zhuo1", // 炪
+ 0x70ab: "xuan4", // 炫
+ 0x70ac: "ju4", // 炬
+ 0x70ad: "tan4", // 炭
+ 0x70ae: "pao4", // 炮
+ 0x70af: "jiong3", // 炯
+ 0x70b0: "pao2", // 炰
+ 0x70b1: "tai2", // 炱
+ 0x70b2: "tai2", // 炲
+ 0x70b3: "bing3", // 炳
+ 0x70b4: "yang3", // 炴
+ 0x70b5: "tong1", // 炵
+ 0x70b6: "shan3", // 炶
+ 0x70b7: "zhu4", // 炷
+ 0x70b8: "zha4", // 炸
+ 0x70b9: "dian3", // 点
+ 0x70ba: "wei4", // 為
+ 0x70bb: "shi2", // 炻
+ 0x70bc: "lian4", // 炼
+ 0x70bd: "chi4", // 炽
+ 0x70be: "huang3", // 炾
+ 0x70bf: "zhou1", // 炿
+ 0x70c0: "hu1", // 烀
+ 0x70c1: "shuo4", // 烁
+ 0x70c2: "lan4", // 烂
+ 0x70c3: "ting1", // 烃
+ 0x70c4: "jiao3", // 烄
+ 0x70c5: "xu4", // 烅
+ 0x70c6: "heng2", // 烆
+ 0x70c7: "quan3", // 烇
+ 0x70c8: "lie4", // 烈
+ 0x70c9: "huan4", // 烉
+ 0x70ca: "yang2", // 烊
+ 0x70cb: "xiu1", // 烋
+ 0x70cc: "xiu1", // 烌
+ 0x70cd: "xian3", // 烍
+ 0x70ce: "yin2", // 烎
+ 0x70cf: "wu1", // 烏
+ 0x70d0: "zhou1", // 烐
+ 0x70d1: "yao2", // 烑
+ 0x70d2: "shi4", // 烒
+ 0x70d3: "wei1", // 烓
+ 0x70d4: "tong2", // 烔
+ 0x70d5: "mie4", // 烕
+ 0x70d6: "zai1", // 烖
+ 0x70d7: "kai4", // 烗
+ 0x70d8: "hong1", // 烘
+ 0x70d9: "lao4", // 烙
+ 0x70da: "xia2", // 烚
+ 0x70db: "zhu2", // 烛
+ 0x70dc: "xuan3", // 烜
+ 0x70dd: "zheng1", // 烝
+ 0x70de: "po4", // 烞
+ 0x70df: "yan1", // 烟
+ 0x70e0: "hui2", // 烠
+ 0x70e1: "guang1", // 烡
+ 0x70e2: "che4", // 烢
+ 0x70e3: "hui1", // 烣
+ 0x70e4: "kao3", // 烤
+ 0x70e5: "ju4", // 烥
+ 0x70e6: "fan2", // 烦
+ 0x70e7: "shao1", // 烧
+ 0x70e8: "ye4", // 烨
+ 0x70e9: "hui4", // 烩
+ 0x70eb: "tang4", // 烫
+ 0x70ec: "jin4", // 烬
+ 0x70ed: "re4", // 热
+ 0x70ee: "lie4", // 烮
+ 0x70ef: "xi1", // 烯
+ 0x70f0: "fu2", // 烰
+ 0x70f1: "jiong3", // 烱
+ 0x70f2: "xie4", // 烲
+ 0x70f3: "pu3", // 烳
+ 0x70f4: "ting1", // 烴
+ 0x70f5: "zhuo2", // 烵
+ 0x70f6: "ting3", // 烶
+ 0x70f7: "wan2", // 烷
+ 0x70f8: "hai3", // 烸
+ 0x70f9: "peng1", // 烹
+ 0x70fa: "lang3", // 烺
+ 0x70fb: "yan4", // 烻
+ 0x70fc: "xu4", // 烼
+ 0x70fd: "feng1", // 烽
+ 0x70fe: "chi4", // 烾
+ 0x70ff: "rong2", // 烿
+ 0x7100: "hu2", // 焀
+ 0x7101: "xi1", // 焁
+ 0x7102: "shu1", // 焂
+ 0x7103: "he4", // 焃
+ 0x7104: "xun1", // 焄
+ 0x7105: "ku4", // 焅
+ 0x7106: "juan1", // 焆
+ 0x7107: "xiao1", // 焇
+ 0x7108: "xi1", // 焈
+ 0x7109: "yan1", // 焉
+ 0x710a: "han4", // 焊
+ 0x710b: "zhuang4", // 焋
+ 0x710c: "jun4", // 焌
+ 0x710d: "di4", // 焍
+ 0x710e: "xie4", // 焎
+ 0x710f: "ji2", // 焏
+ 0x7110: "wu4", // 焐
+ 0x7111: "yan1", // 焑
+ 0x7112: "lv3", // 焒
+ 0x7113: "han2", // 焓
+ 0x7114: "yan4", // 焔
+ 0x7115: "huan4", // 焕
+ 0x7116: "men4", // 焖
+ 0x7117: "ju2", // 焗
+ 0x7118: "dao4", // 焘
+ 0x7119: "bei4", // 焙
+ 0x711a: "fen2", // 焚
+ 0x711b: "lin4", // 焛
+ 0x711c: "kun1", // 焜
+ 0x711d: "hun4", // 焝
+ 0x711e: "tun1", // 焞
+ 0x711f: "xi1", // 焟
+ 0x7120: "cui4", // 焠
+ 0x7121: "wu2", // 無
+ 0x7122: "hong1", // 焢
+ 0x7123: "chao3", // 焣
+ 0x7124: "fu3", // 焤
+ 0x7125: "wo4", // 焥
+ 0x7126: "jiao1", // 焦
+ 0x7127: "cong1", // 焧
+ 0x7128: "feng4", // 焨
+ 0x7129: "ping2", // 焩
+ 0x712a: "qiong2", // 焪
+ 0x712b: "ruo4", // 焫
+ 0x712c: "xi1", // 焬
+ 0x712d: "qiong2", // 焭
+ 0x712e: "xin4", // 焮
+ 0x712f: "chao1", // 焯
+ 0x7130: "yan4", // 焰
+ 0x7131: "yan4", // 焱
+ 0x7132: "yi4", // 焲
+ 0x7133: "jue2", // 焳
+ 0x7134: "yu4", // 焴
+ 0x7135: "gang4", // 焵
+ 0x7136: "ran2", // 然
+ 0x7137: "pi2", // 焷
+ 0x7138: "xiong4", // 焸
+ 0x7139: "gang4", // 焹
+ 0x713a: "sheng1", // 焺
+ 0x713b: "chang4", // 焻
+ 0x713c: "shao1", // 焼
+ 0x713d: "xiong3", // 焽
+ 0x713e: "nian3", // 焾
+ 0x713f: "geng1", // 焿
+ 0x7140: "wei5", // 煀
+ 0x7141: "chen2", // 煁
+ 0x7142: "he4", // 煂
+ 0x7143: "kui3", // 煃
+ 0x7144: "zhong3", // 煄
+ 0x7145: "duan4", // 煅
+ 0x7146: "xia1", // 煆
+ 0x7147: "hui1", // 煇
+ 0x7148: "feng4", // 煈
+ 0x7149: "lian4", // 煉
+ 0x714a: "xuan1", // 煊
+ 0x714b: "xing1", // 煋
+ 0x714c: "huang2", // 煌
+ 0x714d: "jiao3", // 煍
+ 0x714e: "jian1", // 煎
+ 0x714f: "bi4", // 煏
+ 0x7150: "ying1", // 煐
+ 0x7151: "zhu3", // 煑
+ 0x7152: "wei3", // 煒
+ 0x7153: "tuan1", // 煓
+ 0x7154: "shan3", // 煔
+ 0x7155: "xi1", // 煕
+ 0x7156: "nuan3", // 煖
+ 0x7157: "nuan3", // 煗
+ 0x7158: "chan2", // 煘
+ 0x7159: "yan1", // 煙
+ 0x715a: "jiong3", // 煚
+ 0x715b: "jiong3", // 煛
+ 0x715c: "yu4", // 煜
+ 0x715d: "mei4", // 煝
+ 0x715e: "sha1", // 煞
+ 0x715f: "wei4", // 煟
+ 0x7160: "zha2", // 煠
+ 0x7161: "jin4", // 煡
+ 0x7162: "qiong2", // 煢
+ 0x7163: "rou2", // 煣
+ 0x7164: "mei2", // 煤
+ 0x7165: "huan4", // 煥
+ 0x7166: "xu4", // 煦
+ 0x7167: "zhao4", // 照
+ 0x7168: "wei1", // 煨
+ 0x7169: "fan2", // 煩
+ 0x716a: "qiu2", // 煪
+ 0x716b: "sui4", // 煫
+ 0x716c: "yang2", // 煬
+ 0x716d: "lie4", // 煭
+ 0x716e: "zhu3", // 煮
+ 0x716f: "jie1", // 煯
+ 0x7170: "zao4", // 煰
+ 0x7171: "gua1", // 煱
+ 0x7172: "bao1", // 煲
+ 0x7173: "hu2", // 煳
+ 0x7174: "yun1", // 煴
+ 0x7175: "nan3", // 煵
+ 0x7176: "shi4", // 煶
+ 0x7177: "liang5", // 煷
+ 0x7178: "bian1", // 煸
+ 0x7179: "gou4", // 煹
+ 0x717a: "tui4", // 煺
+ 0x717b: "tang2", // 煻
+ 0x717c: "chao3", // 煼
+ 0x717d: "shan1", // 煽
+ 0x717e: "en1", // 煾
+ 0x717f: "bo2", // 煿
+ 0x7180: "huang3", // 熀
+ 0x7181: "xie2", // 熁
+ 0x7182: "xi4", // 熂
+ 0x7183: "wu4", // 熃
+ 0x7184: "xi1", // 熄
+ 0x7185: "yun4", // 熅
+ 0x7186: "he2", // 熆
+ 0x7187: "he4", // 熇
+ 0x7188: "xi1", // 熈
+ 0x7189: "yun2", // 熉
+ 0x718a: "xiong2", // 熊
+ 0x718b: "nai2", // 熋
+ 0x718c: "shan3", // 熌
+ 0x718d: "qiong2", // 熍
+ 0x718e: "yao4", // 熎
+ 0x718f: "xun1", // 熏
+ 0x7190: "mi4", // 熐
+ 0x7191: "lian2", // 熑
+ 0x7192: "ying2", // 熒
+ 0x7193: "wu3", // 熓
+ 0x7194: "rong2", // 熔
+ 0x7195: "gong1", // 熕
+ 0x7196: "yan4", // 熖
+ 0x7197: "qiang4", // 熗
+ 0x7198: "liu1", // 熘
+ 0x7199: "xi1", // 熙
+ 0x719a: "bi4", // 熚
+ 0x719b: "biao1", // 熛
+ 0x719c: "cong1", // 熜
+ 0x719d: "lu4", // 熝
+ 0x719e: "jian1", // 熞
+ 0x719f: "shu2", // 熟
+ 0x71a0: "yi4", // 熠
+ 0x71a1: "lou2", // 熡
+ 0x71a2: "peng2", // 熢
+ 0x71a3: "sui1", // 熣
+ 0x71a4: "yi4", // 熤
+ 0x71a5: "teng1", // 熥
+ 0x71a6: "jue2", // 熦
+ 0x71a7: "zong1", // 熧
+ 0x71a8: "yun4", // 熨
+ 0x71a9: "hu4", // 熩
+ 0x71aa: "yi2", // 熪
+ 0x71ab: "zhi4", // 熫
+ 0x71ac: "ao2", // 熬
+ 0x71ad: "wei4", // 熭
+ 0x71ae: "liu3", // 熮
+ 0x71af: "han4", // 熯
+ 0x71b0: "ou1", // 熰
+ 0x71b1: "re4", // 熱
+ 0x71b2: "jiong3", // 熲
+ 0x71b3: "man4", // 熳
+ 0x71b4: "kun1", // 熴
+ 0x71b5: "shang1", // 熵
+ 0x71b6: "cuan4", // 熶
+ 0x71b7: "zeng1", // 熷
+ 0x71b8: "jian1", // 熸
+ 0x71b9: "xi1", // 熹
+ 0x71ba: "xi1", // 熺
+ 0x71bb: "xi1", // 熻
+ 0x71bc: "yi4", // 熼
+ 0x71bd: "xiao4", // 熽
+ 0x71be: "chi4", // 熾
+ 0x71bf: "huang2", // 熿
+ 0x71c0: "chan3", // 燀
+ 0x71c1: "ye4", // 燁
+ 0x71c2: "tan2", // 燂
+ 0x71c3: "ran2", // 燃
+ 0x71c4: "yan4", // 燄
+ 0x71c5: "xun2", // 燅
+ 0x71c6: "qiao1", // 燆
+ 0x71c7: "jun4", // 燇
+ 0x71c8: "deng1", // 燈
+ 0x71c9: "dun4", // 燉
+ 0x71ca: "shen1", // 燊
+ 0x71cb: "jiao1", // 燋
+ 0x71cc: "fen2", // 燌
+ 0x71cd: "si1", // 燍
+ 0x71ce: "liao2", // 燎
+ 0x71cf: "yu4", // 燏
+ 0x71d0: "lin2", // 燐
+ 0x71d1: "tong2", // 燑
+ 0x71d2: "shao1", // 燒
+ 0x71d3: "fen2", // 燓
+ 0x71d4: "fan2", // 燔
+ 0x71d5: "yan4", // 燕
+ 0x71d6: "xun2", // 燖
+ 0x71d7: "lan4", // 燗
+ 0x71d8: "mei3", // 燘
+ 0x71d9: "tang4", // 燙
+ 0x71da: "yi4", // 燚
+ 0x71db: "jiong3", // 燛
+ 0x71dc: "men4", // 燜
+ 0x71dd: "jing5", // 燝
+ 0x71de: "jiao3", // 燞
+ 0x71df: "ying2", // 營
+ 0x71e0: "yu4", // 燠
+ 0x71e1: "yi4", // 燡
+ 0x71e2: "xue2", // 燢
+ 0x71e3: "lan2", // 燣
+ 0x71e4: "tai4", // 燤
+ 0x71e5: "zao4", // 燥
+ 0x71e6: "can4", // 燦
+ 0x71e7: "sui4", // 燧
+ 0x71e8: "xi1", // 燨
+ 0x71e9: "que4", // 燩
+ 0x71ea: "zong3", // 燪
+ 0x71eb: "lian2", // 燫
+ 0x71ec: "hui3", // 燬
+ 0x71ed: "zhu2", // 燭
+ 0x71ee: "xie4", // 燮
+ 0x71ef: "ling2", // 燯
+ 0x71f0: "wei1", // 燰
+ 0x71f1: "yi4", // 燱
+ 0x71f2: "xie2", // 燲
+ 0x71f3: "zhao4", // 燳
+ 0x71f4: "hui4", // 燴
+ 0x71f5: "da2", // 燵
+ 0x71f6: "nong2", // 燶
+ 0x71f7: "lan2", // 燷
+ 0x71f8: "ru2", // 燸
+ 0x71f9: "xian3", // 燹
+ 0x71fa: "he4", // 燺
+ 0x71fb: "xun1", // 燻
+ 0x71fc: "jin4", // 燼
+ 0x71fd: "chou2", // 燽
+ 0x71fe: "dao4", // 燾
+ 0x71ff: "yao4", // 燿
+ 0x7200: "he4", // 爀
+ 0x7201: "lan4", // 爁
+ 0x7202: "biao1", // 爂
+ 0x7203: "rong2", // 爃
+ 0x7204: "li4", // 爄
+ 0x7205: "mo4", // 爅
+ 0x7206: "bao4", // 爆
+ 0x7207: "ruo4", // 爇
+ 0x7208: "lv4", // 爈
+ 0x7209: "la4", // 爉
+ 0x720a: "ao1", // 爊
+ 0x720b: "xun1", // 爋
+ 0x720c: "kuang4", // 爌
+ 0x720d: "shuo4", // 爍
+ 0x720e: "liao2", // 爎
+ 0x720f: "li4", // 爏
+ 0x7210: "lu2", // 爐
+ 0x7211: "jue2", // 爑
+ 0x7212: "liao3", // 爒
+ 0x7213: "yan4", // 爓
+ 0x7214: "xi1", // 爔
+ 0x7215: "xie4", // 爕
+ 0x7216: "long2", // 爖
+ 0x7217: "ye4", // 爗
+ 0x7218: "can1", // 爘
+ 0x7219: "rang3", // 爙
+ 0x721a: "yue4", // 爚
+ 0x721b: "lan4", // 爛
+ 0x721c: "cong2", // 爜
+ 0x721d: "jue2", // 爝
+ 0x721e: "chong2", // 爞
+ 0x721f: "guan4", // 爟
+ 0x7220: "ju5", // 爠
+ 0x7221: "che4", // 爡
+ 0x7222: "mi2", // 爢
+ 0x7223: "tang3", // 爣
+ 0x7224: "lan4", // 爤
+ 0x7225: "zhu2", // 爥
+ 0x7226: "lan3", // 爦
+ 0x7227: "ling2", // 爧
+ 0x7228: "cuan4", // 爨
+ 0x7229: "yu4", // 爩
+ 0x722a: "zhao3", // 爪
+ 0x722b: "zhao3", // 爫
+ 0x722c: "pa2", // 爬
+ 0x722d: "zheng1", // 爭
+ 0x722e: "pao2", // 爮
+ 0x722f: "cheng1", // 爯
+ 0x7230: "yuan2", // 爰
+ 0x7231: "ai4", // 爱
+ 0x7232: "wei4", // 爲
+ 0x7233: "han5", // 爳
+ 0x7234: "jue2", // 爴
+ 0x7235: "jue2", // 爵
+ 0x7236: "fu4", // 父
+ 0x7237: "ye2", // 爷
+ 0x7238: "ba4", // 爸
+ 0x7239: "die1", // 爹
+ 0x723a: "ye2", // 爺
+ 0x723b: "yao2", // 爻
+ 0x723c: "zu3", // 爼
+ 0x723d: "shuang3", // 爽
+ 0x723e: "er3", // 爾
+ 0x723f: "pan2", // 爿
+ 0x7240: "chuang2", // 牀
+ 0x7241: "ke1", // 牁
+ 0x7242: "zang1", // 牂
+ 0x7243: "die2", // 牃
+ 0x7244: "qiang1", // 牄
+ 0x7245: "yong1", // 牅
+ 0x7246: "qiang2", // 牆
+ 0x7247: "pian4", // 片
+ 0x7248: "ban3", // 版
+ 0x7249: "pan4", // 牉
+ 0x724a: "chao2", // 牊
+ 0x724b: "jian1", // 牋
+ 0x724c: "pai2", // 牌
+ 0x724d: "du2", // 牍
+ 0x724e: "chuang1", // 牎
+ 0x724f: "yu2", // 牏
+ 0x7250: "zha2", // 牐
+ 0x7251: "bian1", // 牑
+ 0x7252: "die2", // 牒
+ 0x7253: "bang3", // 牓
+ 0x7254: "bo2", // 牔
+ 0x7255: "chuang1", // 牕
+ 0x7256: "you3", // 牖
+ 0x7257: "you3", // 牗
+ 0x7258: "du2", // 牘
+ 0x7259: "ya2", // 牙
+ 0x725a: "cheng1", // 牚
+ 0x725b: "niu2", // 牛
+ 0x725c: "niu2", // 牜
+ 0x725d: "pin4", // 牝
+ 0x725e: "jiu1", // 牞
+ 0x725f: "mou2", // 牟
+ 0x7260: "ta1", // 牠
+ 0x7261: "mu3", // 牡
+ 0x7262: "lao2", // 牢
+ 0x7263: "ren4", // 牣
+ 0x7264: "mang1", // 牤
+ 0x7265: "fang1", // 牥
+ 0x7266: "mao2", // 牦
+ 0x7267: "mu4", // 牧
+ 0x7268: "gang1", // 牨
+ 0x7269: "wu4", // 物
+ 0x726a: "yan4", // 牪
+ 0x726b: "ge1", // 牫
+ 0x726c: "bei4", // 牬
+ 0x726d: "si4", // 牭
+ 0x726e: "jian4", // 牮
+ 0x726f: "gu3", // 牯
+ 0x7270: "you4", // 牰
+ 0x7271: "ge1", // 牱
+ 0x7272: "sheng1", // 牲
+ 0x7273: "mu3", // 牳
+ 0x7274: "di3", // 牴
+ 0x7275: "qian1", // 牵
+ 0x7276: "quan4", // 牶
+ 0x7277: "quan2", // 牷
+ 0x7278: "zi4", // 牸
+ 0x7279: "te4", // 特
+ 0x727a: "xi1", // 牺
+ 0x727b: "mang2", // 牻
+ 0x727c: "keng1", // 牼
+ 0x727d: "qian1", // 牽
+ 0x727e: "wu3", // 牾
+ 0x727f: "gu4", // 牿
+ 0x7280: "xi1", // 犀
+ 0x7281: "li2", // 犁
+ 0x7282: "li2", // 犂
+ 0x7283: "pou3", // 犃
+ 0x7284: "ji1", // 犄
+ 0x7285: "gang1", // 犅
+ 0x7286: "zhi2", // 犆
+ 0x7287: "ben1", // 犇
+ 0x7288: "quan2", // 犈
+ 0x7289: "chun2", // 犉
+ 0x728a: "du2", // 犊
+ 0x728b: "ju4", // 犋
+ 0x728c: "jia1", // 犌
+ 0x728d: "jian1", // 犍
+ 0x728e: "feng1", // 犎
+ 0x728f: "pian1", // 犏
+ 0x7290: "ke1", // 犐
+ 0x7291: "ju2", // 犑
+ 0x7292: "kao4", // 犒
+ 0x7293: "chu2", // 犓
+ 0x7294: "xi4", // 犔
+ 0x7295: "bei4", // 犕
+ 0x7296: "luo4", // 犖
+ 0x7297: "jie4", // 犗
+ 0x7298: "ma2", // 犘
+ 0x7299: "san1", // 犙
+ 0x729a: "wei4", // 犚
+ 0x729b: "mao2", // 犛
+ 0x729c: "dun1", // 犜
+ 0x729d: "tong2", // 犝
+ 0x729e: "qiao2", // 犞
+ 0x729f: "jiang4", // 犟
+ 0x72a0: "xi1", // 犠
+ 0x72a1: "li4", // 犡
+ 0x72a2: "du2", // 犢
+ 0x72a3: "lie4", // 犣
+ 0x72a4: "pai2", // 犤
+ 0x72a5: "piao1", // 犥
+ 0x72a6: "bo2", // 犦
+ 0x72a7: "xi1", // 犧
+ 0x72a8: "chou1", // 犨
+ 0x72a9: "wei2", // 犩
+ 0x72aa: "kui2", // 犪
+ 0x72ab: "chou1", // 犫
+ 0x72ac: "quan3", // 犬
+ 0x72ad: "quan3", // 犭
+ 0x72ae: "ba2", // 犮
+ 0x72af: "fan4", // 犯
+ 0x72b0: "qiu2", // 犰
+ 0x72b1: "ji3", // 犱
+ 0x72b2: "chai2", // 犲
+ 0x72b3: "zhuo2", // 犳
+ 0x72b4: "an4", // 犴
+ 0x72b5: "ge1", // 犵
+ 0x72b6: "zhuang4", // 状
+ 0x72b7: "guang3", // 犷
+ 0x72b8: "ma4", // 犸
+ 0x72b9: "you2", // 犹
+ 0x72ba: "kang4", // 犺
+ 0x72bb: "bo2", // 犻
+ 0x72bc: "hou3", // 犼
+ 0x72bd: "ya4", // 犽
+ 0x72be: "yin2", // 犾
+ 0x72bf: "huan1", // 犿
+ 0x72c0: "zhuang4", // 狀
+ 0x72c1: "yun3", // 狁
+ 0x72c2: "kuang2", // 狂
+ 0x72c3: "niu3", // 狃
+ 0x72c4: "di2", // 狄
+ 0x72c5: "kuang2", // 狅
+ 0x72c6: "zhong4", // 狆
+ 0x72c7: "mu4", // 狇
+ 0x72c8: "bei4", // 狈
+ 0x72c9: "pi1", // 狉
+ 0x72ca: "ju2", // 狊
+ 0x72cb: "yi2", // 狋
+ 0x72cc: "sheng1", // 狌
+ 0x72cd: "pao2", // 狍
+ 0x72ce: "xia2", // 狎
+ 0x72cf: "tuo2", // 狏
+ 0x72d0: "hu2", // 狐
+ 0x72d1: "ling2", // 狑
+ 0x72d2: "fei4", // 狒
+ 0x72d3: "pi2", // 狓
+ 0x72d4: "ni3", // 狔
+ 0x72d5: "yao3", // 狕
+ 0x72d6: "you4", // 狖
+ 0x72d7: "gou3", // 狗
+ 0x72d8: "xue4", // 狘
+ 0x72d9: "ju1", // 狙
+ 0x72da: "dan4", // 狚
+ 0x72db: "bo2", // 狛
+ 0x72dc: "ku3", // 狜
+ 0x72dd: "xian3", // 狝
+ 0x72de: "ning2", // 狞
+ 0x72df: "huan2", // 狟
+ 0x72e0: "hen3", // 狠
+ 0x72e1: "jiao3", // 狡
+ 0x72e2: "he2", // 狢
+ 0x72e3: "zhao4", // 狣
+ 0x72e4: "ji2", // 狤
+ 0x72e5: "xun4", // 狥
+ 0x72e6: "shan1", // 狦
+ 0x72e7: "ta4", // 狧
+ 0x72e8: "rong2", // 狨
+ 0x72e9: "shou4", // 狩
+ 0x72ea: "tong2", // 狪
+ 0x72eb: "lao3", // 狫
+ 0x72ec: "du2", // 独
+ 0x72ed: "xia2", // 狭
+ 0x72ee: "shi1", // 狮
+ 0x72ef: "kuai4", // 狯
+ 0x72f0: "zheng1", // 狰
+ 0x72f1: "yu4", // 狱
+ 0x72f2: "sun1", // 狲
+ 0x72f3: "yu2", // 狳
+ 0x72f4: "bi4", // 狴
+ 0x72f5: "mang2", // 狵
+ 0x72f6: "xi1", // 狶
+ 0x72f7: "juan4", // 狷
+ 0x72f8: "li2", // 狸
+ 0x72f9: "xia2", // 狹
+ 0x72fa: "yin2", // 狺
+ 0x72fb: "suan1", // 狻
+ 0x72fc: "lang2", // 狼
+ 0x72fd: "bei4", // 狽
+ 0x72fe: "zhi4", // 狾
+ 0x72ff: "yan2", // 狿
+ 0x7300: "sha1", // 猀
+ 0x7301: "li4", // 猁
+ 0x7302: "han4", // 猂
+ 0x7303: "xian3", // 猃
+ 0x7304: "jing1", // 猄
+ 0x7305: "pai2", // 猅
+ 0x7306: "fei1", // 猆
+ 0x7307: "xiao1", // 猇
+ 0x7308: "bai4", // 猈
+ 0x7309: "qi2", // 猉
+ 0x730a: "ni2", // 猊
+ 0x730b: "biao1", // 猋
+ 0x730c: "yin4", // 猌
+ 0x730d: "lai2", // 猍
+ 0x730e: "lie4", // 猎
+ 0x730f: "jian1", // 猏
+ 0x7310: "qiang1", // 猐
+ 0x7311: "kun1", // 猑
+ 0x7312: "yan4", // 猒
+ 0x7313: "guo3", // 猓
+ 0x7314: "zong4", // 猔
+ 0x7315: "mi2", // 猕
+ 0x7316: "chang1", // 猖
+ 0x7317: "yi1", // 猗
+ 0x7318: "zhi4", // 猘
+ 0x7319: "zheng1", // 猙
+ 0x731a: "ya2", // 猚
+ 0x731b: "meng3", // 猛
+ 0x731c: "cai1", // 猜
+ 0x731d: "cu4", // 猝
+ 0x731e: "she1", // 猞
+ 0x731f: "lie4", // 猟
+ 0x7320: "dian3", // 猠
+ 0x7321: "luo2", // 猡
+ 0x7322: "hu2", // 猢
+ 0x7323: "zong1", // 猣
+ 0x7324: "gui4", // 猤
+ 0x7325: "wei3", // 猥
+ 0x7326: "feng1", // 猦
+ 0x7327: "wo1", // 猧
+ 0x7328: "yuan2", // 猨
+ 0x7329: "xing1", // 猩
+ 0x732a: "zhu1", // 猪
+ 0x732b: "mao1", // 猫
+ 0x732c: "wei4", // 猬
+ 0x732d: "chuan1", // 猭
+ 0x732e: "xian4", // 献
+ 0x732f: "tuan1", // 猯
+ 0x7330: "ya4", // 猰
+ 0x7331: "nao2", // 猱
+ 0x7332: "xie1", // 猲
+ 0x7333: "jia1", // 猳
+ 0x7334: "hou2", // 猴
+ 0x7335: "bian1", // 猵
+ 0x7336: "you2", // 猶
+ 0x7337: "you2", // 猷
+ 0x7338: "mei2", // 猸
+ 0x7339: "cha2", // 猹
+ 0x733a: "yao2", // 猺
+ 0x733b: "sun1", // 猻
+ 0x733c: "bo2", // 猼
+ 0x733d: "ming2", // 猽
+ 0x733e: "hua2", // 猾
+ 0x733f: "yuan2", // 猿
+ 0x7340: "sou1", // 獀
+ 0x7341: "ma4", // 獁
+ 0x7342: "yuan2", // 獂
+ 0x7343: "dai1", // 獃
+ 0x7344: "yu4", // 獄
+ 0x7345: "shi1", // 獅
+ 0x7346: "hao2", // 獆
+ 0x7347: "qiang1", // 獇
+ 0x7348: "yi4", // 獈
+ 0x7349: "zhen1", // 獉
+ 0x734a: "cang1", // 獊
+ 0x734b: "hao2", // 獋
+ 0x734c: "man4", // 獌
+ 0x734d: "jing4", // 獍
+ 0x734e: "jiang3", // 獎
+ 0x734f: "mo4", // 獏
+ 0x7350: "zhang1", // 獐
+ 0x7351: "chan2", // 獑
+ 0x7352: "ao2", // 獒
+ 0x7353: "ao2", // 獓
+ 0x7354: "hao2", // 獔
+ 0x7355: "cui1", // 獕
+ 0x7356: "ben4", // 獖
+ 0x7357: "jue2", // 獗
+ 0x7358: "bi4", // 獘
+ 0x7359: "bi4", // 獙
+ 0x735a: "huang2", // 獚
+ 0x735b: "pu2", // 獛
+ 0x735c: "lin2", // 獜
+ 0x735d: "xu4", // 獝
+ 0x735e: "tong2", // 獞
+ 0x735f: "yao4", // 獟
+ 0x7360: "liao2", // 獠
+ 0x7361: "shuo4", // 獡
+ 0x7362: "xiao1", // 獢
+ 0x7363: "shou4", // 獣
+ 0x7364: "dun1", // 獤
+ 0x7365: "jiao4", // 獥
+ 0x7366: "ge2", // 獦
+ 0x7367: "juan4", // 獧
+ 0x7368: "du2", // 獨
+ 0x7369: "hui4", // 獩
+ 0x736a: "kuai4", // 獪
+ 0x736b: "xian3", // 獫
+ 0x736c: "xie4", // 獬
+ 0x736d: "ta3", // 獭
+ 0x736e: "xian3", // 獮
+ 0x736f: "xun1", // 獯
+ 0x7370: "ning2", // 獰
+ 0x7371: "bian1", // 獱
+ 0x7372: "huo4", // 獲
+ 0x7373: "nou4", // 獳
+ 0x7374: "meng3", // 獴
+ 0x7375: "lie4", // 獵
+ 0x7376: "nao3", // 獶
+ 0x7377: "guang3", // 獷
+ 0x7378: "shou4", // 獸
+ 0x7379: "lu2", // 獹
+ 0x737a: "ta3", // 獺
+ 0x737b: "xian4", // 獻
+ 0x737c: "mi2", // 獼
+ 0x737d: "rang2", // 獽
+ 0x737e: "huan1", // 獾
+ 0x737f: "nao3", // 獿
+ 0x7380: "luo2", // 玀
+ 0x7381: "xian3", // 玁
+ 0x7382: "qi2", // 玂
+ 0x7383: "jue2", // 玃
+ 0x7384: "xuan2", // 玄
+ 0x7385: "miao4", // 玅
+ 0x7386: "zi1", // 玆
+ 0x7387: "lv4", // 率
+ 0x7388: "lu2", // 玈
+ 0x7389: "yu4", // 玉
+ 0x738a: "su4", // 玊
+ 0x738b: "wang2", // 王
+ 0x738c: "qiu2", // 玌
+ 0x738d: "ga3", // 玍
+ 0x738e: "ding1", // 玎
+ 0x738f: "le4", // 玏
+ 0x7390: "ba1", // 玐
+ 0x7391: "ji1", // 玑
+ 0x7392: "hong2", // 玒
+ 0x7393: "di4", // 玓
+ 0x7394: "chuan4", // 玔
+ 0x7395: "gan1", // 玕
+ 0x7396: "jiu3", // 玖
+ 0x7397: "yu2", // 玗
+ 0x7398: "qi3", // 玘
+ 0x7399: "yu2", // 玙
+ 0x739a: "chang4", // 玚
+ 0x739b: "ma3", // 玛
+ 0x739c: "hong2", // 玜
+ 0x739d: "wu3", // 玝
+ 0x739e: "fu1", // 玞
+ 0x739f: "wen2", // 玟
+ 0x73a0: "jie4", // 玠
+ 0x73a1: "ya2", // 玡
+ 0x73a2: "bin1", // 玢
+ 0x73a3: "bian4", // 玣
+ 0x73a4: "bang4", // 玤
+ 0x73a5: "yue4", // 玥
+ 0x73a6: "jue2", // 玦
+ 0x73a7: "men2", // 玧
+ 0x73a8: "jue2", // 玨
+ 0x73a9: "wan2", // 玩
+ 0x73aa: "jian1", // 玪
+ 0x73ab: "mei2", // 玫
+ 0x73ac: "dan3", // 玬
+ 0x73ad: "pin2", // 玭
+ 0x73ae: "wei3", // 玮
+ 0x73af: "huan2", // 环
+ 0x73b0: "xian4", // 现
+ 0x73b1: "qiang1", // 玱
+ 0x73b2: "ling2", // 玲
+ 0x73b3: "dai4", // 玳
+ 0x73b4: "yi4", // 玴
+ 0x73b5: "an2", // 玵
+ 0x73b6: "ping2", // 玶
+ 0x73b7: "dian4", // 玷
+ 0x73b8: "fu2", // 玸
+ 0x73b9: "xuan2", // 玹
+ 0x73ba: "xi3", // 玺
+ 0x73bb: "bo1", // 玻
+ 0x73bc: "ci3", // 玼
+ 0x73bd: "gou3", // 玽
+ 0x73be: "jia3", // 玾
+ 0x73bf: "shao2", // 玿
+ 0x73c0: "po4", // 珀
+ 0x73c1: "ci2", // 珁
+ 0x73c2: "ke1", // 珂
+ 0x73c3: "ran3", // 珃
+ 0x73c4: "sheng1", // 珄
+ 0x73c5: "shen1", // 珅
+ 0x73c6: "yi2", // 珆
+ 0x73c7: "zu3", // 珇
+ 0x73c8: "jia1", // 珈
+ 0x73c9: "min2", // 珉
+ 0x73ca: "shan1", // 珊
+ 0x73cb: "liu3", // 珋
+ 0x73cc: "bi4", // 珌
+ 0x73cd: "zhen1", // 珍
+ 0x73ce: "zhen1", // 珎
+ 0x73cf: "jue2", // 珏
+ 0x73d0: "fa4", // 珐
+ 0x73d1: "long2", // 珑
+ 0x73d2: "jin1", // 珒
+ 0x73d3: "jiao4", // 珓
+ 0x73d4: "jian4", // 珔
+ 0x73d5: "li4", // 珕
+ 0x73d6: "guang4", // 珖
+ 0x73d7: "xian1", // 珗
+ 0x73d8: "zhou1", // 珘
+ 0x73d9: "gong3", // 珙
+ 0x73da: "yan1", // 珚
+ 0x73db: "xiu4", // 珛
+ 0x73dc: "yang2", // 珜
+ 0x73dd: "xu3", // 珝
+ 0x73de: "luo4", // 珞
+ 0x73df: "su4", // 珟
+ 0x73e0: "zhu1", // 珠
+ 0x73e1: "qin2", // 珡
+ 0x73e2: "yin2", // 珢
+ 0x73e3: "xun2", // 珣
+ 0x73e4: "bao3", // 珤
+ 0x73e5: "er3", // 珥
+ 0x73e6: "xiang4", // 珦
+ 0x73e7: "yao2", // 珧
+ 0x73e8: "xia2", // 珨
+ 0x73e9: "hang2", // 珩
+ 0x73ea: "gui1", // 珪
+ 0x73eb: "chong1", // 珫
+ 0x73ec: "xu4", // 珬
+ 0x73ed: "ban1", // 班
+ 0x73ee: "pei4", // 珮
+ 0x73ef: "lao3", // 珯
+ 0x73f0: "dang1", // 珰
+ 0x73f1: "ying1", // 珱
+ 0x73f2: "hui1", // 珲
+ 0x73f3: "wen2", // 珳
+ 0x73f4: "e2", // 珴
+ 0x73f5: "cheng2", // 珵
+ 0x73f6: "di4", // 珶
+ 0x73f7: "wu3", // 珷
+ 0x73f8: "wu2", // 珸
+ 0x73f9: "cheng2", // 珹
+ 0x73fa: "jun4", // 珺
+ 0x73fb: "mei2", // 珻
+ 0x73fc: "bei4", // 珼
+ 0x73fd: "ting3", // 珽
+ 0x73fe: "xian4", // 現
+ 0x73ff: "chu4", // 珿
+ 0x7400: "han2", // 琀
+ 0x7401: "xuan2", // 琁
+ 0x7402: "yan2", // 琂
+ 0x7403: "qiu2", // 球
+ 0x7404: "xuan4", // 琄
+ 0x7405: "lang2", // 琅
+ 0x7406: "li3", // 理
+ 0x7407: "xiu4", // 琇
+ 0x7408: "fu2", // 琈
+ 0x7409: "liu2", // 琉
+ 0x740a: "ya2", // 琊
+ 0x740b: "xi1", // 琋
+ 0x740c: "ling2", // 琌
+ 0x740d: "li2", // 琍
+ 0x740e: "jin4", // 琎
+ 0x740f: "lian3", // 琏
+ 0x7410: "suo3", // 琐
+ 0x7411: "suo3", // 琑
+ 0x7412: "feng1", // 琒
+ 0x7413: "wan2", // 琓
+ 0x7414: "dian4", // 琔
+ 0x7415: "pin2", // 琕
+ 0x7416: "zhan3", // 琖
+ 0x7417: "se4", // 琗
+ 0x7418: "min2", // 琘
+ 0x7419: "yu4", // 琙
+ 0x741a: "ju1", // 琚
+ 0x741b: "chen1", // 琛
+ 0x741c: "lai2", // 琜
+ 0x741d: "min2", // 琝
+ 0x741e: "sheng4", // 琞
+ 0x741f: "wei2", // 琟
+ 0x7420: "tian3", // 琠
+ 0x7421: "chu4", // 琡
+ 0x7422: "zuo2", // 琢
+ 0x7423: "beng3", // 琣
+ 0x7424: "cheng1", // 琤
+ 0x7425: "hu3", // 琥
+ 0x7426: "qi2", // 琦
+ 0x7427: "e4", // 琧
+ 0x7428: "kun1", // 琨
+ 0x7429: "chang1", // 琩
+ 0x742a: "qi2", // 琪
+ 0x742b: "beng3", // 琫
+ 0x742c: "wan3", // 琬
+ 0x742d: "lu4", // 琭
+ 0x742e: "cong2", // 琮
+ 0x742f: "guan3", // 琯
+ 0x7430: "yan3", // 琰
+ 0x7431: "diao1", // 琱
+ 0x7432: "bei4", // 琲
+ 0x7433: "lin2", // 琳
+ 0x7434: "qin2", // 琴
+ 0x7435: "pi2", // 琵
+ 0x7436: "pa2", // 琶
+ 0x7437: "que4", // 琷
+ 0x7438: "zhuo2", // 琸
+ 0x7439: "qin2", // 琹
+ 0x743a: "fa4", // 琺
+ 0x743b: "jin1", // 琻
+ 0x743c: "qiong2", // 琼
+ 0x743d: "du3", // 琽
+ 0x743e: "jie4", // 琾
+ 0x743f: "hun2", // 琿
+ 0x7440: "yu3", // 瑀
+ 0x7441: "mao4", // 瑁
+ 0x7442: "mei2", // 瑂
+ 0x7443: "chun1", // 瑃
+ 0x7444: "xuan1", // 瑄
+ 0x7445: "ti2", // 瑅
+ 0x7446: "xing1", // 瑆
+ 0x7447: "dai4", // 瑇
+ 0x7448: "rou2", // 瑈
+ 0x7449: "min2", // 瑉
+ 0x744a: "jian1", // 瑊
+ 0x744b: "wei3", // 瑋
+ 0x744c: "ruan3", // 瑌
+ 0x744d: "huan4", // 瑍
+ 0x744e: "xie2", // 瑎
+ 0x744f: "chuan1", // 瑏
+ 0x7450: "jian3", // 瑐
+ 0x7451: "zhuan4", // 瑑
+ 0x7452: "chang4", // 瑒
+ 0x7453: "lian4", // 瑓
+ 0x7454: "quan2", // 瑔
+ 0x7455: "xia2", // 瑕
+ 0x7456: "duan4", // 瑖
+ 0x7457: "yuan4", // 瑗
+ 0x7458: "ya2", // 瑘
+ 0x7459: "nao3", // 瑙
+ 0x745a: "hu2", // 瑚
+ 0x745b: "ying1", // 瑛
+ 0x745c: "yu2", // 瑜
+ 0x745d: "huang2", // 瑝
+ 0x745e: "rui4", // 瑞
+ 0x745f: "se4", // 瑟
+ 0x7460: "liu2", // 瑠
+ 0x7461: "shi1", // 瑡
+ 0x7462: "rong2", // 瑢
+ 0x7463: "suo3", // 瑣
+ 0x7464: "yao2", // 瑤
+ 0x7465: "wen1", // 瑥
+ 0x7466: "wu3", // 瑦
+ 0x7467: "zhen1", // 瑧
+ 0x7468: "jin4", // 瑨
+ 0x7469: "ying2", // 瑩
+ 0x746a: "ma3", // 瑪
+ 0x746b: "tao1", // 瑫
+ 0x746c: "liu2", // 瑬
+ 0x746d: "tang2", // 瑭
+ 0x746e: "li4", // 瑮
+ 0x746f: "lang2", // 瑯
+ 0x7470: "gui1", // 瑰
+ 0x7471: "zhen4", // 瑱
+ 0x7472: "qiang1", // 瑲
+ 0x7473: "cuo1", // 瑳
+ 0x7474: "jue2", // 瑴
+ 0x7475: "zhao3", // 瑵
+ 0x7476: "yao2", // 瑶
+ 0x7477: "ai4", // 瑷
+ 0x7478: "bin1", // 瑸
+ 0x7479: "shu1", // 瑹
+ 0x747a: "chang2", // 瑺
+ 0x747b: "kun1", // 瑻
+ 0x747c: "zhuan1", // 瑼
+ 0x747d: "cong1", // 瑽
+ 0x747e: "jin3", // 瑾
+ 0x747f: "yi1", // 瑿
+ 0x7480: "cui3", // 璀
+ 0x7481: "cong1", // 璁
+ 0x7482: "qi2", // 璂
+ 0x7483: "li2", // 璃
+ 0x7484: "jing3", // 璄
+ 0x7485: "suo3", // 璅
+ 0x7486: "qiu2", // 璆
+ 0x7487: "xuan2", // 璇
+ 0x7488: "ao2", // 璈
+ 0x7489: "lian3", // 璉
+ 0x748a: "men2", // 璊
+ 0x748b: "zhang1", // 璋
+ 0x748c: "yin2", // 璌
+ 0x748d: "ye4", // 璍
+ 0x748e: "ying1", // 璎
+ 0x748f: "wei4", // 璏
+ 0x7490: "lu4", // 璐
+ 0x7491: "wu2", // 璑
+ 0x7492: "deng1", // 璒
+ 0x7493: "xiu4", // 璓
+ 0x7494: "zeng1", // 璔
+ 0x7495: "xun2", // 璕
+ 0x7496: "qu2", // 璖
+ 0x7497: "dang4", // 璗
+ 0x7498: "lin2", // 璘
+ 0x7499: "liao2", // 璙
+ 0x749a: "qiong2", // 璚
+ 0x749b: "su4", // 璛
+ 0x749c: "huang2", // 璜
+ 0x749d: "gui1", // 璝
+ 0x749e: "pu2", // 璞
+ 0x749f: "jing3", // 璟
+ 0x74a0: "fan2", // 璠
+ 0x74a1: "jin4", // 璡
+ 0x74a2: "liu2", // 璢
+ 0x74a3: "ji1", // 璣
+ 0x74a4: "hui4", // 璤
+ 0x74a5: "jing3", // 璥
+ 0x74a6: "ai4", // 璦
+ 0x74a7: "bi4", // 璧
+ 0x74a8: "can4", // 璨
+ 0x74a9: "qu2", // 璩
+ 0x74aa: "zao3", // 璪
+ 0x74ab: "dang1", // 璫
+ 0x74ac: "jiao3", // 璬
+ 0x74ad: "gun4", // 璭
+ 0x74ae: "tan3", // 璮
+ 0x74af: "hui4", // 璯
+ 0x74b0: "huan2", // 環
+ 0x74b1: "se4", // 璱
+ 0x74b2: "sui4", // 璲
+ 0x74b3: "tian2", // 璳
+ 0x74b4: "chu3", // 璴
+ 0x74b5: "yu2", // 璵
+ 0x74b6: "jin4", // 璶
+ 0x74b7: "lu2", // 璷
+ 0x74b8: "bin1", // 璸
+ 0x74b9: "shu2", // 璹
+ 0x74ba: "wen4", // 璺
+ 0x74bb: "zui3", // 璻
+ 0x74bc: "lan2", // 璼
+ 0x74bd: "xi3", // 璽
+ 0x74be: "zi1", // 璾
+ 0x74bf: "xuan2", // 璿
+ 0x74c0: "ruan3", // 瓀
+ 0x74c1: "wo4", // 瓁
+ 0x74c2: "gai4", // 瓂
+ 0x74c3: "lei2", // 瓃
+ 0x74c4: "du2", // 瓄
+ 0x74c5: "li4", // 瓅
+ 0x74c6: "zhi4", // 瓆
+ 0x74c7: "rou2", // 瓇
+ 0x74c8: "li2", // 瓈
+ 0x74c9: "zan4", // 瓉
+ 0x74ca: "qiong2", // 瓊
+ 0x74cb: "ti4", // 瓋
+ 0x74cc: "gui1", // 瓌
+ 0x74cd: "sui2", // 瓍
+ 0x74ce: "la4", // 瓎
+ 0x74cf: "long2", // 瓏
+ 0x74d0: "lu2", // 瓐
+ 0x74d1: "li4", // 瓑
+ 0x74d2: "zan4", // 瓒
+ 0x74d3: "lan4", // 瓓
+ 0x74d4: "ying1", // 瓔
+ 0x74d5: "mi2", // 瓕
+ 0x74d6: "xiang1", // 瓖
+ 0x74d7: "qiong2", // 瓗
+ 0x74d8: "guan4", // 瓘
+ 0x74d9: "dao4", // 瓙
+ 0x74da: "zan4", // 瓚
+ 0x74db: "huan2", // 瓛
+ 0x74dc: "gua1", // 瓜
+ 0x74dd: "bo2", // 瓝
+ 0x74de: "die2", // 瓞
+ 0x74df: "bo2", // 瓟
+ 0x74e0: "hu4", // 瓠
+ 0x74e1: "zhi2", // 瓡
+ 0x74e2: "piao2", // 瓢
+ 0x74e3: "ban4", // 瓣
+ 0x74e4: "rang2", // 瓤
+ 0x74e5: "li4", // 瓥
+ 0x74e6: "wa3", // 瓦
+ 0x74e8: "xiang2", // 瓨
+ 0x74e9: "qian1", // 瓩
+ 0x74ea: "ban3", // 瓪
+ 0x74eb: "pen2", // 瓫
+ 0x74ec: "fang3", // 瓬
+ 0x74ed: "dan3", // 瓭
+ 0x74ee: "weng4", // 瓮
+ 0x74ef: "ou1", // 瓯
+ 0x74f2: "wa5", // 瓲
+ 0x74f3: "hu2", // 瓳
+ 0x74f4: "ling2", // 瓴
+ 0x74f5: "yi2", // 瓵
+ 0x74f6: "ping2", // 瓶
+ 0x74f7: "ci2", // 瓷
+ 0x74f8: "bai3", // 瓸
+ 0x74f9: "juan1", // 瓹
+ 0x74fa: "chang2", // 瓺
+ 0x74fb: "chi1", // 瓻
+ 0x74fd: "dang4", // 瓽
+ 0x74fe: "meng3", // 瓾
+ 0x74ff: "bu4", // 瓿
+ 0x7500: "zhui4", // 甀
+ 0x7501: "ping2", // 甁
+ 0x7502: "bian1", // 甂
+ 0x7503: "zhou4", // 甃
+ 0x7504: "zhen1", // 甄
+ 0x7506: "ci2", // 甆
+ 0x7507: "ying1", // 甇
+ 0x7508: "qi4", // 甈
+ 0x7509: "xian2", // 甉
+ 0x750a: "lou3", // 甊
+ 0x750b: "di4", // 甋
+ 0x750c: "ou1", // 甌
+ 0x750d: "meng2", // 甍
+ 0x750e: "zhuan1", // 甎
+ 0x750f: "beng4", // 甏
+ 0x7510: "lin4", // 甐
+ 0x7511: "zeng4", // 甑
+ 0x7512: "wu3", // 甒
+ 0x7513: "pi4", // 甓
+ 0x7514: "dan1", // 甔
+ 0x7515: "weng4", // 甕
+ 0x7516: "ying1", // 甖
+ 0x7517: "yan3", // 甗
+ 0x7518: "gan1", // 甘
+ 0x7519: "dai4", // 甙
+ 0x751a: "shen2", // 甚
+ 0x751b: "tian2", // 甛
+ 0x751c: "tian2", // 甜
+ 0x751d: "han2", // 甝
+ 0x751e: "chang2", // 甞
+ 0x751f: "sheng1", // 生
+ 0x7520: "qing2", // 甠
+ 0x7521: "shen1", // 甡
+ 0x7522: "chan3", // 產
+ 0x7523: "chan3", // 産
+ 0x7524: "rui2", // 甤
+ 0x7525: "sheng1", // 甥
+ 0x7526: "su1", // 甦
+ 0x7527: "shen1", // 甧
+ 0x7528: "yong4", // 用
+ 0x7529: "shuai3", // 甩
+ 0x752a: "lu4", // 甪
+ 0x752b: "fu3", // 甫
+ 0x752c: "yong3", // 甬
+ 0x752d: "beng2", // 甭
+ 0x752e: "feng4", // 甮
+ 0x752f: "ning2", // 甯
+ 0x7530: "tian2", // 田
+ 0x7531: "you2", // 由
+ 0x7532: "jia3", // 甲
+ 0x7533: "shen1", // 申
+ 0x7534: "zha2", // 甴
+ 0x7535: "dian4", // 电
+ 0x7536: "fu2", // 甶
+ 0x7537: "nan2", // 男
+ 0x7538: "dian1", // 甸
+ 0x7539: "ping1", // 甹
+ 0x753a: "ting1", // 町
+ 0x753b: "hua4", // 画
+ 0x753c: "ting3", // 甼
+ 0x753d: "zhen4", // 甽
+ 0x753e: "zai1", // 甾
+ 0x753f: "meng2", // 甿
+ 0x7540: "bi4", // 畀
+ 0x7541: "bi4", // 畁
+ 0x7542: "liu4", // 畂
+ 0x7543: "xun2", // 畃
+ 0x7544: "liu2", // 畄
+ 0x7545: "chang4", // 畅
+ 0x7546: "mu3", // 畆
+ 0x7547: "yun2", // 畇
+ 0x7548: "fan4", // 畈
+ 0x7549: "fu2", // 畉
+ 0x754a: "geng1", // 畊
+ 0x754b: "tian2", // 畋
+ 0x754c: "jie4", // 界
+ 0x754d: "jie4", // 畍
+ 0x754e: "quan3", // 畎
+ 0x754f: "wei4", // 畏
+ 0x7550: "fu2", // 畐
+ 0x7551: "tian2", // 畑
+ 0x7552: "mu3", // 畒
+ 0x7553: "duo1", // 畓
+ 0x7554: "pan4", // 畔
+ 0x7555: "jiang1", // 畕
+ 0x7556: "wa1", // 畖
+ 0x7557: "da2", // 畗
+ 0x7558: "nan2", // 畘
+ 0x7559: "liu2", // 留
+ 0x755a: "ben3", // 畚
+ 0x755b: "zhen3", // 畛
+ 0x755c: "chu4", // 畜
+ 0x755d: "mu3", // 畝
+ 0x755e: "mu3", // 畞
+ 0x755f: "ce4", // 畟
+ 0x7560: "tian2", // 畠
+ 0x7561: "gai1", // 畡
+ 0x7562: "bi4", // 畢
+ 0x7563: "da2", // 畣
+ 0x7564: "zhi4", // 畤
+ 0x7565: "lve4", // 略
+ 0x7566: "qi2", // 畦
+ 0x7567: "lve4", // 畧
+ 0x7568: "pan1", // 畨
+ 0x7569: "yi1", // 畩
+ 0x756a: "fan1", // 番
+ 0x756b: "hua4", // 畫
+ 0x756c: "she1", // 畬
+ 0x756d: "yu2", // 畭
+ 0x756e: "mu3", // 畮
+ 0x756f: "jun4", // 畯
+ 0x7570: "yi4", // 異
+ 0x7571: "liu2", // 畱
+ 0x7572: "she1", // 畲
+ 0x7573: "die2", // 畳
+ 0x7574: "chou2", // 畴
+ 0x7575: "hua4", // 畵
+ 0x7576: "dang1", // 當
+ 0x7577: "zhui4", // 畷
+ 0x7578: "ji1", // 畸
+ 0x7579: "wan3", // 畹
+ 0x757a: "jiang1", // 畺
+ 0x757b: "cheng2", // 畻
+ 0x757c: "chang4", // 畼
+ 0x757d: "tun3", // 畽
+ 0x757e: "lei2", // 畾
+ 0x757f: "ji1", // 畿
+ 0x7580: "cha1", // 疀
+ 0x7581: "liu2", // 疁
+ 0x7582: "die2", // 疂
+ 0x7583: "tuan3", // 疃
+ 0x7584: "lin4", // 疄
+ 0x7585: "jiang1", // 疅
+ 0x7586: "jiang1", // 疆
+ 0x7587: "chou2", // 疇
+ 0x7588: "pi4", // 疈
+ 0x7589: "die2", // 疉
+ 0x758a: "die2", // 疊
+ 0x758b: "pi3", // 疋
+ 0x758c: "jie2", // 疌
+ 0x758d: "dan4", // 疍
+ 0x758e: "shu1", // 疎
+ 0x758f: "shu1", // 疏
+ 0x7590: "zhi4", // 疐
+ 0x7591: "yi2", // 疑
+ 0x7592: "ne4", // 疒
+ 0x7593: "nai3", // 疓
+ 0x7594: "ding1", // 疔
+ 0x7595: "bi3", // 疕
+ 0x7596: "jie1", // 疖
+ 0x7597: "liao2", // 疗
+ 0x7598: "gang1", // 疘
+ 0x7599: "ge1", // 疙
+ 0x759a: "jiu4", // 疚
+ 0x759b: "zhou3", // 疛
+ 0x759c: "xia4", // 疜
+ 0x759d: "shan4", // 疝
+ 0x759e: "xu1", // 疞
+ 0x759f: "nve4", // 疟
+ 0x75a0: "li4", // 疠
+ 0x75a1: "yang2", // 疡
+ 0x75a2: "chen4", // 疢
+ 0x75a3: "you2", // 疣
+ 0x75a4: "ba1", // 疤
+ 0x75a5: "jie4", // 疥
+ 0x75a6: "jue2", // 疦
+ 0x75a7: "qi2", // 疧
+ 0x75a8: "xia1", // 疨
+ 0x75a9: "cui4", // 疩
+ 0x75aa: "bi4", // 疪
+ 0x75ab: "yi4", // 疫
+ 0x75ac: "li4", // 疬
+ 0x75ad: "zong4", // 疭
+ 0x75ae: "chuang1", // 疮
+ 0x75af: "feng1", // 疯
+ 0x75b0: "zhu4", // 疰
+ 0x75b1: "pao4", // 疱
+ 0x75b2: "pi2", // 疲
+ 0x75b3: "gan1", // 疳
+ 0x75b4: "ke1", // 疴
+ 0x75b5: "ci1", // 疵
+ 0x75b6: "xue1", // 疶
+ 0x75b7: "zhi1", // 疷
+ 0x75b8: "dan3", // 疸
+ 0x75b9: "zhen3", // 疹
+ 0x75ba: "fa2", // 疺
+ 0x75bb: "zhi3", // 疻
+ 0x75bc: "teng2", // 疼
+ 0x75bd: "ju1", // 疽
+ 0x75be: "ji2", // 疾
+ 0x75bf: "fei4", // 疿
+ 0x75c0: "ju1", // 痀
+ 0x75c1: "shan1", // 痁
+ 0x75c2: "jia1", // 痂
+ 0x75c3: "xuan2", // 痃
+ 0x75c4: "zha4", // 痄
+ 0x75c5: "bing4", // 病
+ 0x75c6: "nie4", // 痆
+ 0x75c7: "zheng4", // 症
+ 0x75c8: "yong1", // 痈
+ 0x75c9: "jing4", // 痉
+ 0x75ca: "quan2", // 痊
+ 0x75cb: "teng2", // 痋
+ 0x75cc: "tong1", // 痌
+ 0x75cd: "yi2", // 痍
+ 0x75ce: "jie1", // 痎
+ 0x75cf: "wei3", // 痏
+ 0x75d0: "hui2", // 痐
+ 0x75d1: "tan1", // 痑
+ 0x75d2: "yang3", // 痒
+ 0x75d3: "chi4", // 痓
+ 0x75d4: "zhi4", // 痔
+ 0x75d5: "hen2", // 痕
+ 0x75d6: "ya3", // 痖
+ 0x75d7: "mei4", // 痗
+ 0x75d8: "dou4", // 痘
+ 0x75d9: "jing4", // 痙
+ 0x75da: "xiao1", // 痚
+ 0x75db: "tong4", // 痛
+ 0x75dc: "tu1", // 痜
+ 0x75dd: "mang2", // 痝
+ 0x75de: "pi3", // 痞
+ 0x75df: "xiao1", // 痟
+ 0x75e0: "suan1", // 痠
+ 0x75e1: "fu1", // 痡
+ 0x75e2: "li4", // 痢
+ 0x75e3: "zhi4", // 痣
+ 0x75e4: "cuo2", // 痤
+ 0x75e5: "duo2", // 痥
+ 0x75e6: "wu4", // 痦
+ 0x75e7: "sha1", // 痧
+ 0x75e8: "lao2", // 痨
+ 0x75e9: "shou4", // 痩
+ 0x75ea: "huan4", // 痪
+ 0x75eb: "xian2", // 痫
+ 0x75ec: "yi4", // 痬
+ 0x75ed: "beng1", // 痭
+ 0x75ee: "zhang4", // 痮
+ 0x75ef: "guan3", // 痯
+ 0x75f0: "tan2", // 痰
+ 0x75f1: "fei4", // 痱
+ 0x75f2: "ma2", // 痲
+ 0x75f3: "lin2", // 痳
+ 0x75f4: "chi1", // 痴
+ 0x75f5: "ji4", // 痵
+ 0x75f6: "tian3", // 痶
+ 0x75f7: "an1", // 痷
+ 0x75f8: "chi4", // 痸
+ 0x75f9: "bi4", // 痹
+ 0x75fa: "bi4", // 痺
+ 0x75fb: "min2", // 痻
+ 0x75fc: "gu4", // 痼
+ 0x75fd: "dui1", // 痽
+ 0x75fe: "e1", // 痾
+ 0x75ff: "wei3", // 痿
+ 0x7600: "yu1", // 瘀
+ 0x7601: "cui4", // 瘁
+ 0x7602: "ya3", // 瘂
+ 0x7603: "zhu2", // 瘃
+ 0x7604: "cu4", // 瘄
+ 0x7605: "dan1", // 瘅
+ 0x7606: "shen4", // 瘆
+ 0x7607: "zhong3", // 瘇
+ 0x7608: "chi4", // 瘈
+ 0x7609: "yu4", // 瘉
+ 0x760a: "hou2", // 瘊
+ 0x760b: "feng1", // 瘋
+ 0x760c: "la4", // 瘌
+ 0x760d: "yang2", // 瘍
+ 0x760e: "chen2", // 瘎
+ 0x760f: "tu2", // 瘏
+ 0x7610: "yu3", // 瘐
+ 0x7611: "guo1", // 瘑
+ 0x7612: "wen2", // 瘒
+ 0x7613: "huan4", // 瘓
+ 0x7614: "ku4", // 瘔
+ 0x7615: "jia3", // 瘕
+ 0x7616: "yin1", // 瘖
+ 0x7617: "yi4", // 瘗
+ 0x7618: "lou4", // 瘘
+ 0x7619: "sao4", // 瘙
+ 0x761a: "jue2", // 瘚
+ 0x761b: "chi4", // 瘛
+ 0x761c: "xi1", // 瘜
+ 0x761d: "guan1", // 瘝
+ 0x761e: "yi4", // 瘞
+ 0x761f: "wen1", // 瘟
+ 0x7620: "ji2", // 瘠
+ 0x7621: "chuang1", // 瘡
+ 0x7622: "ban1", // 瘢
+ 0x7623: "hui4", // 瘣
+ 0x7624: "liu2", // 瘤
+ 0x7625: "chai4", // 瘥
+ 0x7626: "shou4", // 瘦
+ 0x7627: "nve4", // 瘧
+ 0x7628: "dian1", // 瘨
+ 0x7629: "da5", // 瘩
+ 0x762a: "bie3", // 瘪
+ 0x762b: "tan1", // 瘫
+ 0x762c: "zhang4", // 瘬
+ 0x762d: "biao1", // 瘭
+ 0x762e: "shen4", // 瘮
+ 0x762f: "cu4", // 瘯
+ 0x7630: "luo3", // 瘰
+ 0x7631: "yi4", // 瘱
+ 0x7632: "zong4", // 瘲
+ 0x7633: "chou1", // 瘳
+ 0x7634: "zhang4", // 瘴
+ 0x7635: "zhai4", // 瘵
+ 0x7636: "sou4", // 瘶
+ 0x7637: "se4", // 瘷
+ 0x7638: "que2", // 瘸
+ 0x7639: "diao4", // 瘹
+ 0x763a: "lou4", // 瘺
+ 0x763b: "lou4", // 瘻
+ 0x763c: "mo4", // 瘼
+ 0x763d: "qin2", // 瘽
+ 0x763e: "yin3", // 瘾
+ 0x763f: "ying3", // 瘿
+ 0x7640: "huang2", // 癀
+ 0x7641: "fu2", // 癁
+ 0x7642: "liao2", // 療
+ 0x7643: "long2", // 癃
+ 0x7644: "qiao2", // 癄
+ 0x7645: "liu2", // 癅
+ 0x7646: "lao2", // 癆
+ 0x7647: "xian2", // 癇
+ 0x7648: "fei4", // 癈
+ 0x7649: "dan1", // 癉
+ 0x764a: "yin4", // 癊
+ 0x764b: "he4", // 癋
+ 0x764c: "ai2", // 癌
+ 0x764d: "ban1", // 癍
+ 0x764e: "xian2", // 癎
+ 0x764f: "guan1", // 癏
+ 0x7650: "gui4", // 癐
+ 0x7651: "nong4", // 癑
+ 0x7652: "yu4", // 癒
+ 0x7653: "wei2", // 癓
+ 0x7654: "yi4", // 癔
+ 0x7655: "yong1", // 癕
+ 0x7656: "pi3", // 癖
+ 0x7657: "lei3", // 癗
+ 0x7658: "li4", // 癘
+ 0x7659: "shu3", // 癙
+ 0x765a: "dan4", // 癚
+ 0x765b: "lin3", // 癛
+ 0x765c: "dian4", // 癜
+ 0x765d: "lin3", // 癝
+ 0x765e: "lai4", // 癞
+ 0x765f: "bie3", // 癟
+ 0x7660: "ji4", // 癠
+ 0x7661: "chi1", // 癡
+ 0x7662: "yang3", // 癢
+ 0x7663: "xuan3", // 癣
+ 0x7664: "jie1", // 癤
+ 0x7665: "zheng1", // 癥
+ 0x7666: "me5", // 癦
+ 0x7667: "li4", // 癧
+ 0x7668: "huo4", // 癨
+ 0x7669: "lai4", // 癩
+ 0x766a: "ji1", // 癪
+ 0x766b: "dian1", // 癫
+ 0x766c: "xuan3", // 癬
+ 0x766d: "ying3", // 癭
+ 0x766e: "yin3", // 癮
+ 0x766f: "qu2", // 癯
+ 0x7670: "yong1", // 癰
+ 0x7671: "tan1", // 癱
+ 0x7672: "dian1", // 癲
+ 0x7673: "luo3", // 癳
+ 0x7674: "luan2", // 癴
+ 0x7675: "luan2", // 癵
+ 0x7676: "bo1", // 癶
+ 0x7677: "bo1", // 癷
+ 0x7678: "gui3", // 癸
+ 0x7679: "ba2", // 癹
+ 0x767a: "fa1", // 発
+ 0x767b: "deng1", // 登
+ 0x767c: "fa1", // 發
+ 0x767d: "bai2", // 白
+ 0x767e: "bai3", // 百
+ 0x767f: "qie2", // 癿
+ 0x7680: "ji2", // 皀
+ 0x7681: "zao4", // 皁
+ 0x7682: "zao4", // 皂
+ 0x7683: "mao4", // 皃
+ 0x7684: "de5", // 的
+ 0x7685: "pa1", // 皅
+ 0x7686: "jie1", // 皆
+ 0x7687: "huang2", // 皇
+ 0x7688: "gui1", // 皈
+ 0x7689: "ci3", // 皉
+ 0x768a: "ling2", // 皊
+ 0x768b: "gao1", // 皋
+ 0x768c: "mo4", // 皌
+ 0x768d: "ji2", // 皍
+ 0x768e: "jiao3", // 皎
+ 0x768f: "peng3", // 皏
+ 0x7690: "gao1", // 皐
+ 0x7691: "ai2", // 皑
+ 0x7692: "e2", // 皒
+ 0x7693: "hao4", // 皓
+ 0x7694: "han4", // 皔
+ 0x7695: "bi4", // 皕
+ 0x7696: "wan3", // 皖
+ 0x7697: "chou2", // 皗
+ 0x7698: "qian4", // 皘
+ 0x7699: "xi1", // 皙
+ 0x769a: "ai2", // 皚
+ 0x769b: "xiao3", // 皛
+ 0x769c: "hao4", // 皜
+ 0x769d: "huang4", // 皝
+ 0x769e: "hao4", // 皞
+ 0x769f: "ze2", // 皟
+ 0x76a0: "cui3", // 皠
+ 0x76a1: "hao4", // 皡
+ 0x76a2: "xiao3", // 皢
+ 0x76a3: "ye4", // 皣
+ 0x76a4: "po2", // 皤
+ 0x76a5: "hao4", // 皥
+ 0x76a6: "jiao3", // 皦
+ 0x76a7: "ai4", // 皧
+ 0x76a8: "xing1", // 皨
+ 0x76a9: "huang4", // 皩
+ 0x76aa: "li4", // 皪
+ 0x76ab: "piao3", // 皫
+ 0x76ac: "he2", // 皬
+ 0x76ad: "jiao4", // 皭
+ 0x76ae: "pi2", // 皮
+ 0x76af: "gan3", // 皯
+ 0x76b0: "pao4", // 皰
+ 0x76b1: "zhou4", // 皱
+ 0x76b2: "jun1", // 皲
+ 0x76b3: "qiu2", // 皳
+ 0x76b4: "cun1", // 皴
+ 0x76b5: "que4", // 皵
+ 0x76b6: "zha1", // 皶
+ 0x76b7: "gu3", // 皷
+ 0x76b8: "jun1", // 皸
+ 0x76b9: "jun1", // 皹
+ 0x76ba: "zhou4", // 皺
+ 0x76bb: "zha1", // 皻
+ 0x76bc: "gu3", // 皼
+ 0x76bd: "zhao1", // 皽
+ 0x76be: "du2", // 皾
+ 0x76bf: "min3", // 皿
+ 0x76c0: "qi3", // 盀
+ 0x76c1: "ying2", // 盁
+ 0x76c2: "yu2", // 盂
+ 0x76c3: "bei1", // 盃
+ 0x76c4: "zhao1", // 盄
+ 0x76c5: "zhong1", // 盅
+ 0x76c6: "pen2", // 盆
+ 0x76c7: "he2", // 盇
+ 0x76c8: "ying2", // 盈
+ 0x76c9: "he2", // 盉
+ 0x76ca: "yi4", // 益
+ 0x76cb: "bo1", // 盋
+ 0x76cc: "wan3", // 盌
+ 0x76cd: "he2", // 盍
+ 0x76ce: "ang4", // 盎
+ 0x76cf: "zhan3", // 盏
+ 0x76d0: "yan2", // 盐
+ 0x76d1: "jian1", // 监
+ 0x76d2: "he2", // 盒
+ 0x76d3: "yu1", // 盓
+ 0x76d4: "kui1", // 盔
+ 0x76d5: "fan4", // 盕
+ 0x76d6: "gai4", // 盖
+ 0x76d7: "dao4", // 盗
+ 0x76d8: "pan2", // 盘
+ 0x76d9: "fu3", // 盙
+ 0x76da: "qiu2", // 盚
+ 0x76db: "sheng4", // 盛
+ 0x76dc: "dao4", // 盜
+ 0x76dd: "lu4", // 盝
+ 0x76de: "zhan3", // 盞
+ 0x76df: "meng2", // 盟
+ 0x76e0: "li2", // 盠
+ 0x76e1: "jin3", // 盡
+ 0x76e2: "xu4", // 盢
+ 0x76e3: "jian1", // 監
+ 0x76e4: "pan2", // 盤
+ 0x76e5: "guan4", // 盥
+ 0x76e6: "an1", // 盦
+ 0x76e7: "lu2", // 盧
+ 0x76e8: "xu3", // 盨
+ 0x76e9: "zhou1", // 盩
+ 0x76ea: "dang4", // 盪
+ 0x76eb: "an1", // 盫
+ 0x76ec: "gu3", // 盬
+ 0x76ed: "li4", // 盭
+ 0x76ee: "mu4", // 目
+ 0x76ef: "ding1", // 盯
+ 0x76f0: "gan4", // 盰
+ 0x76f1: "xu1", // 盱
+ 0x76f2: "mang2", // 盲
+ 0x76f3: "wang4", // 盳
+ 0x76f4: "zhi2", // 直
+ 0x76f5: "qi4", // 盵
+ 0x76f6: "yuan3", // 盶
+ 0x76f7: "tian2", // 盷
+ 0x76f8: "xiang1", // 相
+ 0x76f9: "dun3", // 盹
+ 0x76fa: "xin1", // 盺
+ 0x76fb: "xi4", // 盻
+ 0x76fc: "pan4", // 盼
+ 0x76fd: "feng1", // 盽
+ 0x76fe: "dun4", // 盾
+ 0x76ff: "min2", // 盿
+ 0x7700: "ming2", // 眀
+ 0x7701: "sheng3", // 省
+ 0x7702: "shi4", // 眂
+ 0x7703: "yun2", // 眃
+ 0x7704: "mian3", // 眄
+ 0x7705: "pan1", // 眅
+ 0x7706: "fang3", // 眆
+ 0x7707: "miao3", // 眇
+ 0x7708: "dan1", // 眈
+ 0x7709: "mei2", // 眉
+ 0x770a: "mao4", // 眊
+ 0x770b: "kan4", // 看
+ 0x770c: "xian4", // 県
+ 0x770d: "kou1", // 眍
+ 0x770e: "shi4", // 眎
+ 0x770f: "yang1", // 眏
+ 0x7710: "zheng1", // 眐
+ 0x7711: "yao3", // 眑
+ 0x7712: "shen1", // 眒
+ 0x7713: "huo4", // 眓
+ 0x7714: "da4", // 眔
+ 0x7715: "zhen3", // 眕
+ 0x7716: "kuang4", // 眖
+ 0x7717: "ju1", // 眗
+ 0x7718: "shen4", // 眘
+ 0x7719: "yi2", // 眙
+ 0x771a: "sheng3", // 眚
+ 0x771b: "mei4", // 眛
+ 0x771c: "mo4", // 眜
+ 0x771d: "zhu4", // 眝
+ 0x771e: "zhen1", // 眞
+ 0x771f: "zhen1", // 真
+ 0x7720: "mian2", // 眠
+ 0x7721: "shi4", // 眡
+ 0x7722: "yuan1", // 眢
+ 0x7723: "die2", // 眣
+ 0x7724: "ni4", // 眤
+ 0x7725: "zi4", // 眥
+ 0x7726: "zi4", // 眦
+ 0x7727: "chao3", // 眧
+ 0x7728: "zha3", // 眨
+ 0x7729: "xuan4", // 眩
+ 0x772a: "bing3", // 眪
+ 0x772b: "mi3", // 眫
+ 0x772c: "long2", // 眬
+ 0x772d: "sui1", // 眭
+ 0x772e: "tong2", // 眮
+ 0x772f: "mi1", // 眯
+ 0x7730: "die4", // 眰
+ 0x7731: "di4", // 眱
+ 0x7732: "ne4", // 眲
+ 0x7733: "ming2", // 眳
+ 0x7734: "xuan4", // 眴
+ 0x7735: "chi1", // 眵
+ 0x7736: "kuang4", // 眶
+ 0x7737: "juan4", // 眷
+ 0x7738: "mou2", // 眸
+ 0x7739: "zhen4", // 眹
+ 0x773a: "tiao4", // 眺
+ 0x773b: "yang2", // 眻
+ 0x773c: "yan3", // 眼
+ 0x773d: "mo4", // 眽
+ 0x773e: "zhong4", // 眾
+ 0x773f: "mo4", // 眿
+ 0x7740: "zhe5", // 着
+ 0x7741: "zheng1", // 睁
+ 0x7742: "mei2", // 睂
+ 0x7743: "suo1", // 睃
+ 0x7744: "shao4", // 睄
+ 0x7745: "han4", // 睅
+ 0x7746: "huan4", // 睆
+ 0x7747: "di4", // 睇
+ 0x7748: "cheng3", // 睈
+ 0x7749: "cuo2", // 睉
+ 0x774a: "juan4", // 睊
+ 0x774b: "e2", // 睋
+ 0x774c: "man3", // 睌
+ 0x774d: "xian4", // 睍
+ 0x774e: "xi1", // 睎
+ 0x774f: "kun4", // 睏
+ 0x7750: "lai4", // 睐
+ 0x7751: "jian3", // 睑
+ 0x7752: "shan3", // 睒
+ 0x7753: "tian3", // 睓
+ 0x7754: "gun4", // 睔
+ 0x7755: "wan3", // 睕
+ 0x7756: "leng4", // 睖
+ 0x7757: "shi4", // 睗
+ 0x7758: "qiong2", // 睘
+ 0x7759: "lie4", // 睙
+ 0x775a: "ya2", // 睚
+ 0x775b: "jing1", // 睛
+ 0x775c: "zheng1", // 睜
+ 0x775d: "li2", // 睝
+ 0x775e: "lai4", // 睞
+ 0x775f: "sui4", // 睟
+ 0x7760: "juan4", // 睠
+ 0x7761: "shui4", // 睡
+ 0x7762: "sui1", // 睢
+ 0x7763: "du1", // 督
+ 0x7764: "bi4", // 睤
+ 0x7765: "pi4", // 睥
+ 0x7766: "mu4", // 睦
+ 0x7767: "hun1", // 睧
+ 0x7768: "ni4", // 睨
+ 0x7769: "lu4", // 睩
+ 0x776a: "yi4", // 睪
+ 0x776b: "jie2", // 睫
+ 0x776c: "cai3", // 睬
+ 0x776d: "zhou3", // 睭
+ 0x776e: "yu2", // 睮
+ 0x776f: "hun1", // 睯
+ 0x7770: "ma4", // 睰
+ 0x7771: "xia4", // 睱
+ 0x7772: "xing3", // 睲
+ 0x7773: "hui1", // 睳
+ 0x7774: "gun4", // 睴
+ 0x7775: "zai1", // 睵
+ 0x7776: "chun3", // 睶
+ 0x7777: "jian1", // 睷
+ 0x7778: "mei4", // 睸
+ 0x7779: "du3", // 睹
+ 0x777a: "hou2", // 睺
+ 0x777b: "xuan1", // 睻
+ 0x777c: "tian4", // 睼
+ 0x777d: "kui2", // 睽
+ 0x777e: "gao1", // 睾
+ 0x777f: "rui4", // 睿
+ 0x7780: "mao4", // 瞀
+ 0x7781: "xu4", // 瞁
+ 0x7782: "fa2", // 瞂
+ 0x7783: "wo4", // 瞃
+ 0x7784: "miao2", // 瞄
+ 0x7785: "chou3", // 瞅
+ 0x7786: "kui4", // 瞆
+ 0x7787: "mi1", // 瞇
+ 0x7788: "weng3", // 瞈
+ 0x7789: "kou4", // 瞉
+ 0x778a: "dang4", // 瞊
+ 0x778b: "chen1", // 瞋
+ 0x778c: "ke1", // 瞌
+ 0x778d: "sou3", // 瞍
+ 0x778e: "xia1", // 瞎
+ 0x778f: "qiong2", // 瞏
+ 0x7790: "mo4", // 瞐
+ 0x7791: "ming2", // 瞑
+ 0x7792: "man2", // 瞒
+ 0x7793: "shui4", // 瞓
+ 0x7794: "ze2", // 瞔
+ 0x7795: "zhang4", // 瞕
+ 0x7796: "yi4", // 瞖
+ 0x7797: "diao1", // 瞗
+ 0x7798: "kou1", // 瞘
+ 0x7799: "mo4", // 瞙
+ 0x779a: "shun4", // 瞚
+ 0x779b: "cong1", // 瞛
+ 0x779c: "lou1", // 瞜
+ 0x779d: "chi1", // 瞝
+ 0x779e: "man2", // 瞞
+ 0x779f: "piao3", // 瞟
+ 0x77a0: "cheng1", // 瞠
+ 0x77a1: "gui3", // 瞡
+ 0x77a2: "meng2", // 瞢
+ 0x77a3: "wan4", // 瞣
+ 0x77a4: "run2", // 瞤
+ 0x77a5: "pie1", // 瞥
+ 0x77a6: "xi1", // 瞦
+ 0x77a7: "qiao2", // 瞧
+ 0x77a8: "pu2", // 瞨
+ 0x77a9: "zhu3", // 瞩
+ 0x77aa: "deng4", // 瞪
+ 0x77ab: "shen3", // 瞫
+ 0x77ac: "shun4", // 瞬
+ 0x77ad: "liao3", // 瞭
+ 0x77ae: "che4", // 瞮
+ 0x77af: "xian2", // 瞯
+ 0x77b0: "kan4", // 瞰
+ 0x77b1: "ye4", // 瞱
+ 0x77b2: "xu4", // 瞲
+ 0x77b3: "tong2", // 瞳
+ 0x77b4: "mou2", // 瞴
+ 0x77b5: "lin2", // 瞵
+ 0x77b6: "gui4", // 瞶
+ 0x77b7: "jian4", // 瞷
+ 0x77b8: "ye4", // 瞸
+ 0x77b9: "ai4", // 瞹
+ 0x77ba: "hui4", // 瞺
+ 0x77bb: "zhan1", // 瞻
+ 0x77bc: "jian3", // 瞼
+ 0x77bd: "gu3", // 瞽
+ 0x77be: "zhao4", // 瞾
+ 0x77bf: "qu2", // 瞿
+ 0x77c0: "mei2", // 矀
+ 0x77c1: "chou3", // 矁
+ 0x77c2: "sao4", // 矂
+ 0x77c3: "ning3", // 矃
+ 0x77c4: "xun1", // 矄
+ 0x77c5: "yao4", // 矅
+ 0x77c6: "huo4", // 矆
+ 0x77c7: "meng2", // 矇
+ 0x77c8: "mian2", // 矈
+ 0x77c9: "pin2", // 矉
+ 0x77ca: "mian2", // 矊
+ 0x77cb: "lei3", // 矋
+ 0x77cc: "kuang4", // 矌
+ 0x77cd: "jue2", // 矍
+ 0x77ce: "xuan1", // 矎
+ 0x77cf: "mian2", // 矏
+ 0x77d0: "huo4", // 矐
+ 0x77d1: "lu2", // 矑
+ 0x77d2: "meng2", // 矒
+ 0x77d3: "long2", // 矓
+ 0x77d4: "guan4", // 矔
+ 0x77d5: "man3", // 矕
+ 0x77d6: "xi3", // 矖
+ 0x77d7: "chu4", // 矗
+ 0x77d8: "tang3", // 矘
+ 0x77d9: "kan4", // 矙
+ 0x77da: "zhu3", // 矚
+ 0x77db: "mao2", // 矛
+ 0x77dc: "jin1", // 矜
+ 0x77dd: "jin1", // 矝
+ 0x77de: "yu4", // 矞
+ 0x77df: "shuo4", // 矟
+ 0x77e0: "ze2", // 矠
+ 0x77e1: "jue2", // 矡
+ 0x77e2: "shi3", // 矢
+ 0x77e3: "yi3", // 矣
+ 0x77e4: "shen3", // 矤
+ 0x77e5: "zhi1", // 知
+ 0x77e6: "hou2", // 矦
+ 0x77e7: "shen3", // 矧
+ 0x77e8: "ying3", // 矨
+ 0x77e9: "ju3", // 矩
+ 0x77ea: "zhou1", // 矪
+ 0x77eb: "jiao3", // 矫
+ 0x77ec: "cuo2", // 矬
+ 0x77ed: "duan3", // 短
+ 0x77ee: "ai3", // 矮
+ 0x77ef: "jiao3", // 矯
+ 0x77f0: "zeng1", // 矰
+ 0x77f1: "yue1", // 矱
+ 0x77f2: "ba4", // 矲
+ 0x77f3: "shi2", // 石
+ 0x77f4: "ding4", // 矴
+ 0x77f5: "qi4", // 矵
+ 0x77f6: "ji1", // 矶
+ 0x77f7: "zi3", // 矷
+ 0x77f8: "gan1", // 矸
+ 0x77f9: "wu4", // 矹
+ 0x77fa: "zhe2", // 矺
+ 0x77fb: "ku1", // 矻
+ 0x77fc: "gang1", // 矼
+ 0x77fd: "xi4", // 矽
+ 0x77fe: "fan2", // 矾
+ 0x77ff: "kuang4", // 矿
+ 0x7800: "dang4", // 砀
+ 0x7801: "ma3", // 码
+ 0x7802: "sha1", // 砂
+ 0x7803: "dan1", // 砃
+ 0x7804: "jue2", // 砄
+ 0x7805: "li4", // 砅
+ 0x7806: "fu1", // 砆
+ 0x7807: "min2", // 砇
+ 0x7808: "e3", // 砈
+ 0x7809: "huo4", // 砉
+ 0x780a: "kang1", // 砊
+ 0x780b: "zhi3", // 砋
+ 0x780c: "qi4", // 砌
+ 0x780d: "kan3", // 砍
+ 0x780e: "jie4", // 砎
+ 0x780f: "bin1", // 砏
+ 0x7810: "e4", // 砐
+ 0x7811: "ya4", // 砑
+ 0x7812: "pi1", // 砒
+ 0x7813: "zhe2", // 砓
+ 0x7814: "yan2", // 研
+ 0x7815: "sui4", // 砕
+ 0x7816: "zhuan1", // 砖
+ 0x7817: "che1", // 砗
+ 0x7818: "dun4", // 砘
+ 0x7819: "wa3", // 砙
+ 0x781a: "yan4", // 砚
+ 0x781b: "jin1", // 砛
+ 0x781c: "feng1", // 砜
+ 0x781d: "fa2", // 砝
+ 0x781e: "mo4", // 砞
+ 0x781f: "zha3", // 砟
+ 0x7820: "ju1", // 砠
+ 0x7821: "yu4", // 砡
+ 0x7822: "ke1", // 砢
+ 0x7823: "tuo2", // 砣
+ 0x7824: "tuo2", // 砤
+ 0x7825: "di3", // 砥
+ 0x7826: "zhai4", // 砦
+ 0x7827: "zhen1", // 砧
+ 0x7828: "e4", // 砨
+ 0x7829: "fu2", // 砩
+ 0x782a: "mu3", // 砪
+ 0x782b: "zhu4", // 砫
+ 0x782c: "la2", // 砬
+ 0x782d: "bian1", // 砭
+ 0x782e: "nu3", // 砮
+ 0x782f: "ping1", // 砯
+ 0x7830: "peng1", // 砰
+ 0x7831: "ling2", // 砱
+ 0x7832: "pao4", // 砲
+ 0x7833: "le4", // 砳
+ 0x7834: "po4", // 破
+ 0x7835: "bo1", // 砵
+ 0x7836: "po4", // 砶
+ 0x7837: "shen1", // 砷
+ 0x7838: "za2", // 砸
+ 0x7839: "ai4", // 砹
+ 0x783a: "li4", // 砺
+ 0x783b: "long2", // 砻
+ 0x783c: "tong2", // 砼
+ 0x783d: "yong4", // 砽
+ 0x783e: "li4", // 砾
+ 0x783f: "kuang4", // 砿
+ 0x7840: "chu3", // 础
+ 0x7841: "keng1", // 硁
+ 0x7842: "quan2", // 硂
+ 0x7843: "zhu1", // 硃
+ 0x7844: "kuang1", // 硄
+ 0x7845: "gui1", // 硅
+ 0x7846: "e4", // 硆
+ 0x7847: "nao2", // 硇
+ 0x7848: "qia4", // 硈
+ 0x7849: "lu4", // 硉
+ 0x784a: "wei3", // 硊
+ 0x784b: "ai4", // 硋
+ 0x784c: "ge4", // 硌
+ 0x784d: "xian4", // 硍
+ 0x784e: "xing2", // 硎
+ 0x784f: "yan2", // 硏
+ 0x7850: "dong4", // 硐
+ 0x7851: "peng1", // 硑
+ 0x7852: "xi1", // 硒
+ 0x7853: "lao3", // 硓
+ 0x7854: "hong2", // 硔
+ 0x7855: "shuo4", // 硕
+ 0x7856: "xia2", // 硖
+ 0x7857: "qiao1", // 硗
+ 0x7858: "qing5", // 硘
+ 0x7859: "wei2", // 硙
+ 0x785a: "qiao2", // 硚
+ 0x785b: "yi4", // 硛
+ 0x785c: "keng1", // 硜
+ 0x785d: "xiao1", // 硝
+ 0x785e: "que4", // 硞
+ 0x785f: "chan4", // 硟
+ 0x7860: "lang2", // 硠
+ 0x7861: "hong1", // 硡
+ 0x7862: "yu2", // 硢
+ 0x7863: "xiao1", // 硣
+ 0x7864: "xia2", // 硤
+ 0x7865: "mang3", // 硥
+ 0x7866: "luo4", // 硦
+ 0x7867: "yong3", // 硧
+ 0x7868: "che1", // 硨
+ 0x7869: "che4", // 硩
+ 0x786a: "wo4", // 硪
+ 0x786b: "liu2", // 硫
+ 0x786c: "ying4", // 硬
+ 0x786d: "mang2", // 硭
+ 0x786e: "que4", // 确
+ 0x786f: "yan4", // 硯
+ 0x7870: "sha1", // 硰
+ 0x7871: "kun3", // 硱
+ 0x7872: "yu4", // 硲
+ 0x7873: "chi4", // 硳
+ 0x7874: "hua1", // 硴
+ 0x7875: "lu3", // 硵
+ 0x7876: "chen3", // 硶
+ 0x7877: "jian3", // 硷
+ 0x7878: "nve4", // 硸
+ 0x7879: "song1", // 硹
+ 0x787a: "zhuo2", // 硺
+ 0x787b: "keng1", // 硻
+ 0x787c: "peng2", // 硼
+ 0x787d: "yan1", // 硽
+ 0x787e: "zhui4", // 硾
+ 0x787f: "kong1", // 硿
+ 0x7880: "cheng2", // 碀
+ 0x7881: "qi2", // 碁
+ 0x7882: "zong4", // 碂
+ 0x7883: "qing4", // 碃
+ 0x7884: "lin2", // 碄
+ 0x7885: "jun1", // 碅
+ 0x7886: "bo1", // 碆
+ 0x7887: "ding4", // 碇
+ 0x7888: "min2", // 碈
+ 0x7889: "diao1", // 碉
+ 0x788a: "jian1", // 碊
+ 0x788b: "he4", // 碋
+ 0x788c: "lu4", // 碌
+ 0x788d: "ai4", // 碍
+ 0x788e: "sui4", // 碎
+ 0x788f: "que4", // 碏
+ 0x7890: "leng2", // 碐
+ 0x7891: "bei1", // 碑
+ 0x7892: "yin2", // 碒
+ 0x7893: "dui4", // 碓
+ 0x7894: "wu3", // 碔
+ 0x7895: "qi2", // 碕
+ 0x7896: "lun3", // 碖
+ 0x7897: "wan3", // 碗
+ 0x7898: "dian3", // 碘
+ 0x7899: "nao2", // 碙
+ 0x789a: "bei4", // 碚
+ 0x789b: "qi4", // 碛
+ 0x789c: "chen3", // 碜
+ 0x789d: "ruan3", // 碝
+ 0x789e: "yan2", // 碞
+ 0x789f: "die2", // 碟
+ 0x78a0: "ding4", // 碠
+ 0x78a1: "du2", // 碡
+ 0x78a2: "tuo2", // 碢
+ 0x78a3: "jie2", // 碣
+ 0x78a4: "ying1", // 碤
+ 0x78a5: "bian3", // 碥
+ 0x78a6: "ke4", // 碦
+ 0x78a7: "bi4", // 碧
+ 0x78a8: "wei4", // 碨
+ 0x78a9: "shuo4", // 碩
+ 0x78aa: "zhen1", // 碪
+ 0x78ab: "duan4", // 碫
+ 0x78ac: "xia2", // 碬
+ 0x78ad: "dang4", // 碭
+ 0x78ae: "ti2", // 碮
+ 0x78af: "nao3", // 碯
+ 0x78b0: "peng4", // 碰
+ 0x78b1: "jian3", // 碱
+ 0x78b2: "di4", // 碲
+ 0x78b3: "tan4", // 碳
+ 0x78b4: "cha2", // 碴
+ 0x78b5: "tian2", // 碵
+ 0x78b6: "qi4", // 碶
+ 0x78b7: "dun4", // 碷
+ 0x78b8: "feng1", // 碸
+ 0x78b9: "xuan4", // 碹
+ 0x78ba: "que4", // 確
+ 0x78bb: "que4", // 碻
+ 0x78bc: "ma3", // 碼
+ 0x78bd: "gong1", // 碽
+ 0x78be: "nian3", // 碾
+ 0x78bf: "su4", // 碿
+ 0x78c0: "e2", // 磀
+ 0x78c1: "ci2", // 磁
+ 0x78c2: "liu2", // 磂
+ 0x78c3: "si1", // 磃
+ 0x78c4: "tang2", // 磄
+ 0x78c5: "bang4", // 磅
+ 0x78c6: "hua2", // 磆
+ 0x78c7: "pi1", // 磇
+ 0x78c8: "wei3", // 磈
+ 0x78c9: "sang3", // 磉
+ 0x78ca: "lei3", // 磊
+ 0x78cb: "cuo1", // 磋
+ 0x78cc: "tian2", // 磌
+ 0x78cd: "xia2", // 磍
+ 0x78ce: "xi1", // 磎
+ 0x78cf: "lian2", // 磏
+ 0x78d0: "pan2", // 磐
+ 0x78d1: "wei2", // 磑
+ 0x78d2: "yun3", // 磒
+ 0x78d3: "dui1", // 磓
+ 0x78d4: "zhe2", // 磔
+ 0x78d5: "ke1", // 磕
+ 0x78d6: "la2", // 磖
+ 0x78d7: "zhuan1", // 磗
+ 0x78d8: "yao2", // 磘
+ 0x78d9: "gun3", // 磙
+ 0x78da: "zhuan1", // 磚
+ 0x78db: "chan2", // 磛
+ 0x78dc: "qi4", // 磜
+ 0x78dd: "ao2", // 磝
+ 0x78de: "peng1", // 磞
+ 0x78df: "liu4", // 磟
+ 0x78e0: "lu3", // 磠
+ 0x78e1: "kan4", // 磡
+ 0x78e2: "chuang3", // 磢
+ 0x78e3: "chen3", // 磣
+ 0x78e4: "yin3", // 磤
+ 0x78e5: "lei3", // 磥
+ 0x78e6: "biao1", // 磦
+ 0x78e7: "qi4", // 磧
+ 0x78e8: "mo2", // 磨
+ 0x78e9: "qi4", // 磩
+ 0x78ea: "cui1", // 磪
+ 0x78eb: "zong1", // 磫
+ 0x78ec: "qing4", // 磬
+ 0x78ed: "chuo4", // 磭
+ 0x78ee: "lun2", // 磮
+ 0x78ef: "ji1", // 磯
+ 0x78f0: "shan4", // 磰
+ 0x78f1: "lao2", // 磱
+ 0x78f2: "qu2", // 磲
+ 0x78f3: "zeng1", // 磳
+ 0x78f4: "deng4", // 磴
+ 0x78f5: "jian4", // 磵
+ 0x78f6: "xi4", // 磶
+ 0x78f7: "lin2", // 磷
+ 0x78f8: "ding4", // 磸
+ 0x78f9: "tan2", // 磹
+ 0x78fa: "huang2", // 磺
+ 0x78fb: "pan2", // 磻
+ 0x78fc: "za2", // 磼
+ 0x78fd: "qiao1", // 磽
+ 0x78fe: "di1", // 磾
+ 0x78ff: "li4", // 磿
+ 0x7900: "jian4", // 礀
+ 0x7901: "jiao1", // 礁
+ 0x7902: "xi1", // 礂
+ 0x7903: "zhang3", // 礃
+ 0x7904: "qiao2", // 礄
+ 0x7905: "dun1", // 礅
+ 0x7906: "jian3", // 礆
+ 0x7907: "yu4", // 礇
+ 0x7908: "zhui4", // 礈
+ 0x7909: "he2", // 礉
+ 0x790a: "ke4", // 礊
+ 0x790b: "ze2", // 礋
+ 0x790c: "lei2", // 礌
+ 0x790d: "jie2", // 礍
+ 0x790e: "chu3", // 礎
+ 0x790f: "ye4", // 礏
+ 0x7910: "que4", // 礐
+ 0x7911: "dang4", // 礑
+ 0x7912: "yi3", // 礒
+ 0x7913: "jiang1", // 礓
+ 0x7914: "pi1", // 礔
+ 0x7915: "pi1", // 礕
+ 0x7916: "yu4", // 礖
+ 0x7917: "pin1", // 礗
+ 0x7918: "e4", // 礘
+ 0x7919: "ai4", // 礙
+ 0x791a: "ke1", // 礚
+ 0x791b: "jian1", // 礛
+ 0x791c: "yu4", // 礜
+ 0x791d: "ruan3", // 礝
+ 0x791e: "meng2", // 礞
+ 0x791f: "pao4", // 礟
+ 0x7920: "ci2", // 礠
+ 0x7921: "bo2", // 礡
+ 0x7922: "yang3", // 礢
+ 0x7923: "ma4", // 礣
+ 0x7924: "ca3", // 礤
+ 0x7925: "xian2", // 礥
+ 0x7926: "kuang4", // 礦
+ 0x7927: "lei2", // 礧
+ 0x7928: "lei3", // 礨
+ 0x7929: "zhi4", // 礩
+ 0x792a: "li4", // 礪
+ 0x792b: "li4", // 礫
+ 0x792c: "fan2", // 礬
+ 0x792d: "que4", // 礭
+ 0x792e: "pao4", // 礮
+ 0x792f: "ying1", // 礯
+ 0x7930: "li4", // 礰
+ 0x7931: "long2", // 礱
+ 0x7932: "long2", // 礲
+ 0x7933: "mo4", // 礳
+ 0x7934: "bo2", // 礴
+ 0x7935: "shuang1", // 礵
+ 0x7936: "guan4", // 礶
+ 0x7937: "lan2", // 礷
+ 0x7938: "ca3", // 礸
+ 0x7939: "yan2", // 礹
+ 0x793a: "shi4", // 示
+ 0x793b: "shi4", // 礻
+ 0x793c: "li3", // 礼
+ 0x793d: "reng2", // 礽
+ 0x793e: "she4", // 社
+ 0x793f: "yue4", // 礿
+ 0x7940: "si4", // 祀
+ 0x7941: "qi2", // 祁
+ 0x7942: "ta1", // 祂
+ 0x7943: "ma4", // 祃
+ 0x7944: "xie4", // 祄
+ 0x7945: "yao1", // 祅
+ 0x7946: "xian1", // 祆
+ 0x7947: "qi2", // 祇
+ 0x7948: "qi2", // 祈
+ 0x7949: "zhi3", // 祉
+ 0x794a: "beng1", // 祊
+ 0x794b: "dui4", // 祋
+ 0x794c: "zhong4", // 祌
+ 0x794d: "ren4", // 祍
+ 0x794e: "yi1", // 祎
+ 0x794f: "shi2", // 祏
+ 0x7950: "you4", // 祐
+ 0x7951: "zhi4", // 祑
+ 0x7952: "tiao2", // 祒
+ 0x7953: "fu2", // 祓
+ 0x7954: "fu4", // 祔
+ 0x7955: "mi4", // 祕
+ 0x7956: "zu3", // 祖
+ 0x7957: "zhi1", // 祗
+ 0x7958: "suan4", // 祘
+ 0x7959: "mei4", // 祙
+ 0x795a: "zuo4", // 祚
+ 0x795b: "qu1", // 祛
+ 0x795c: "hu4", // 祜
+ 0x795d: "zhu4", // 祝
+ 0x795e: "shen2", // 神
+ 0x795f: "sui4", // 祟
+ 0x7960: "ci2", // 祠
+ 0x7961: "chai2", // 祡
+ 0x7962: "mi2", // 祢
+ 0x7963: "lv3", // 祣
+ 0x7964: "yu3", // 祤
+ 0x7965: "xiang2", // 祥
+ 0x7966: "wu2", // 祦
+ 0x7967: "tiao1", // 祧
+ 0x7968: "piao4", // 票
+ 0x7969: "zhu4", // 祩
+ 0x796a: "gui3", // 祪
+ 0x796b: "xia2", // 祫
+ 0x796c: "zhi1", // 祬
+ 0x796d: "ji4", // 祭
+ 0x796e: "gao4", // 祮
+ 0x796f: "zhen1", // 祯
+ 0x7970: "gao4", // 祰
+ 0x7971: "shui4", // 祱
+ 0x7972: "jin4", // 祲
+ 0x7973: "shen4", // 祳
+ 0x7974: "gai1", // 祴
+ 0x7975: "kun3", // 祵
+ 0x7976: "di4", // 祶
+ 0x7977: "dao3", // 祷
+ 0x7978: "huo4", // 祸
+ 0x7979: "tao2", // 祹
+ 0x797a: "qi2", // 祺
+ 0x797b: "gu4", // 祻
+ 0x797c: "guan4", // 祼
+ 0x797d: "zui4", // 祽
+ 0x797e: "ling2", // 祾
+ 0x797f: "lu4", // 祿
+ 0x7980: "bing3", // 禀
+ 0x7981: "jin4", // 禁
+ 0x7982: "dao3", // 禂
+ 0x7983: "zhi2", // 禃
+ 0x7984: "lu4", // 禄
+ 0x7985: "chan2", // 禅
+ 0x7986: "bi4", // 禆
+ 0x7987: "zhe3", // 禇
+ 0x7988: "hui1", // 禈
+ 0x7989: "you3", // 禉
+ 0x798a: "xi4", // 禊
+ 0x798b: "yin1", // 禋
+ 0x798c: "zi1", // 禌
+ 0x798d: "huo4", // 禍
+ 0x798e: "zhen1", // 禎
+ 0x798f: "fu2", // 福
+ 0x7990: "yuan4", // 禐
+ 0x7991: "wu2", // 禑
+ 0x7992: "xian3", // 禒
+ 0x7993: "yang2", // 禓
+ 0x7994: "zhi1", // 禔
+ 0x7995: "yi1", // 禕
+ 0x7996: "mei2", // 禖
+ 0x7997: "si1", // 禗
+ 0x7998: "di4", // 禘
+ 0x7999: "bei4", // 禙
+ 0x799a: "zhuo2", // 禚
+ 0x799b: "zhen1", // 禛
+ 0x799c: "yong3", // 禜
+ 0x799d: "ji4", // 禝
+ 0x799e: "gao4", // 禞
+ 0x799f: "tang2", // 禟
+ 0x79a0: "si1", // 禠
+ 0x79a1: "ma4", // 禡
+ 0x79a2: "ta4", // 禢
+ 0x79a3: "fu4", // 禣
+ 0x79a4: "xuan1", // 禤
+ 0x79a5: "qi2", // 禥
+ 0x79a6: "yu4", // 禦
+ 0x79a7: "xi3", // 禧
+ 0x79a8: "ji1", // 禨
+ 0x79a9: "si4", // 禩
+ 0x79aa: "chan2", // 禪
+ 0x79ab: "dan4", // 禫
+ 0x79ac: "gui4", // 禬
+ 0x79ad: "sui4", // 禭
+ 0x79ae: "li3", // 禮
+ 0x79af: "nong2", // 禯
+ 0x79b0: "mi2", // 禰
+ 0x79b1: "dao3", // 禱
+ 0x79b2: "li4", // 禲
+ 0x79b3: "rang2", // 禳
+ 0x79b4: "yue4", // 禴
+ 0x79b5: "ti2", // 禵
+ 0x79b6: "zan4", // 禶
+ 0x79b7: "lei4", // 禷
+ 0x79b8: "rou2", // 禸
+ 0x79b9: "yu3", // 禹
+ 0x79ba: "yu2", // 禺
+ 0x79bb: "li2", // 离
+ 0x79bc: "xie4", // 禼
+ 0x79bd: "qin2", // 禽
+ 0x79be: "he2", // 禾
+ 0x79bf: "tu1", // 禿
+ 0x79c0: "xiu4", // 秀
+ 0x79c1: "si1", // 私
+ 0x79c2: "ren2", // 秂
+ 0x79c3: "tu1", // 秃
+ 0x79c4: "zi3", // 秄
+ 0x79c5: "cha2", // 秅
+ 0x79c6: "gan3", // 秆
+ 0x79c7: "yi4", // 秇
+ 0x79c8: "xian1", // 秈
+ 0x79c9: "bing3", // 秉
+ 0x79ca: "nian2", // 秊
+ 0x79cb: "qiu1", // 秋
+ 0x79cc: "qiu1", // 秌
+ 0x79cd: "zhong3", // 种
+ 0x79ce: "fen4", // 秎
+ 0x79cf: "hao4", // 秏
+ 0x79d0: "yun2", // 秐
+ 0x79d1: "ke1", // 科
+ 0x79d2: "miao3", // 秒
+ 0x79d3: "zhi1", // 秓
+ 0x79d4: "jing1", // 秔
+ 0x79d5: "bi3", // 秕
+ 0x79d6: "zhi1", // 秖
+ 0x79d7: "yu4", // 秗
+ 0x79d8: "mi4", // 秘
+ 0x79d9: "ku4", // 秙
+ 0x79da: "ban4", // 秚
+ 0x79db: "pi1", // 秛
+ 0x79dc: "ni2", // 秜
+ 0x79dd: "li4", // 秝
+ 0x79de: "you2", // 秞
+ 0x79df: "zu1", // 租
+ 0x79e0: "pi1", // 秠
+ 0x79e1: "bo2", // 秡
+ 0x79e2: "ling2", // 秢
+ 0x79e3: "mo4", // 秣
+ 0x79e4: "cheng4", // 秤
+ 0x79e5: "nian2", // 秥
+ 0x79e6: "qin2", // 秦
+ 0x79e7: "yang1", // 秧
+ 0x79e8: "zuo2", // 秨
+ 0x79e9: "zhi4", // 秩
+ 0x79ea: "zhi1", // 秪
+ 0x79eb: "shu2", // 秫
+ 0x79ec: "ju4", // 秬
+ 0x79ed: "zi3", // 秭
+ 0x79ee: "huo2", // 秮
+ 0x79ef: "ji1", // 积
+ 0x79f0: "cheng1", // 称
+ 0x79f1: "tong2", // 秱
+ 0x79f2: "zhi4", // 秲
+ 0x79f3: "huo2", // 秳
+ 0x79f4: "he2", // 秴
+ 0x79f5: "yin1", // 秵
+ 0x79f6: "zi1", // 秶
+ 0x79f7: "zhi4", // 秷
+ 0x79f8: "jie1", // 秸
+ 0x79f9: "ren3", // 秹
+ 0x79fa: "du4", // 秺
+ 0x79fb: "yi2", // 移
+ 0x79fc: "zhu1", // 秼
+ 0x79fd: "hui4", // 秽
+ 0x79fe: "nong2", // 秾
+ 0x79ff: "fu4", // 秿
+ 0x7a00: "xi1", // 稀
+ 0x7a01: "gao3", // 稁
+ 0x7a02: "lang2", // 稂
+ 0x7a03: "fu1", // 稃
+ 0x7a04: "xun4", // 稄
+ 0x7a05: "shui4", // 稅
+ 0x7a06: "lv3", // 稆
+ 0x7a07: "kun3", // 稇
+ 0x7a08: "gan3", // 稈
+ 0x7a09: "jing1", // 稉
+ 0x7a0a: "ti2", // 稊
+ 0x7a0b: "cheng2", // 程
+ 0x7a0c: "tu2", // 稌
+ 0x7a0d: "shao1", // 稍
+ 0x7a0e: "shui4", // 税
+ 0x7a0f: "ya4", // 稏
+ 0x7a10: "lun3", // 稐
+ 0x7a11: "lu4", // 稑
+ 0x7a12: "gu4", // 稒
+ 0x7a13: "zuo2", // 稓
+ 0x7a14: "ren3", // 稔
+ 0x7a15: "zhun4", // 稕
+ 0x7a16: "bang4", // 稖
+ 0x7a17: "bai4", // 稗
+ 0x7a18: "ji1", // 稘
+ 0x7a19: "zhi1", // 稙
+ 0x7a1a: "zhi4", // 稚
+ 0x7a1b: "kun3", // 稛
+ 0x7a1c: "leng2", // 稜
+ 0x7a1d: "peng2", // 稝
+ 0x7a1e: "ke1", // 稞
+ 0x7a1f: "bing3", // 稟
+ 0x7a20: "chou2", // 稠
+ 0x7a21: "zui4", // 稡
+ 0x7a22: "yu4", // 稢
+ 0x7a23: "su1", // 稣
+ 0x7a24: "lve4", // 稤
+ 0x7a25: "xiang1", // 稥
+ 0x7a26: "yi1", // 稦
+ 0x7a27: "xi4", // 稧
+ 0x7a28: "bian3", // 稨
+ 0x7a29: "ji4", // 稩
+ 0x7a2a: "fu2", // 稪
+ 0x7a2b: "pi4", // 稫
+ 0x7a2c: "nuo4", // 稬
+ 0x7a2d: "jie1", // 稭
+ 0x7a2e: "zhong3", // 種
+ 0x7a2f: "zong1", // 稯
+ 0x7a30: "xu3", // 稰
+ 0x7a31: "cheng1", // 稱
+ 0x7a32: "dao4", // 稲
+ 0x7a33: "wen3", // 稳
+ 0x7a34: "xian2", // 稴
+ 0x7a35: "zi1", // 稵
+ 0x7a36: "yu4", // 稶
+ 0x7a37: "ji4", // 稷
+ 0x7a38: "xu4", // 稸
+ 0x7a39: "zhen3", // 稹
+ 0x7a3a: "zhi4", // 稺
+ 0x7a3b: "dao4", // 稻
+ 0x7a3c: "jia4", // 稼
+ 0x7a3d: "ji1", // 稽
+ 0x7a3e: "gao3", // 稾
+ 0x7a3f: "gao3", // 稿
+ 0x7a40: "gu3", // 穀
+ 0x7a41: "rong2", // 穁
+ 0x7a42: "sui4", // 穂
+ 0x7a43: "rong5", // 穃
+ 0x7a44: "ji4", // 穄
+ 0x7a45: "kang1", // 穅
+ 0x7a46: "mu4", // 穆
+ 0x7a47: "can3", // 穇
+ 0x7a48: "mei2", // 穈
+ 0x7a49: "zhi4", // 穉
+ 0x7a4a: "ji4", // 穊
+ 0x7a4b: "lu4", // 穋
+ 0x7a4c: "su1", // 穌
+ 0x7a4d: "ji1", // 積
+ 0x7a4e: "ying3", // 穎
+ 0x7a4f: "wen3", // 穏
+ 0x7a50: "qiu1", // 穐
+ 0x7a51: "se4", // 穑
+ 0x7a52: "he4", // 穒
+ 0x7a53: "yi4", // 穓
+ 0x7a54: "huang2", // 穔
+ 0x7a55: "qie4", // 穕
+ 0x7a56: "ji3", // 穖
+ 0x7a57: "sui4", // 穗
+ 0x7a58: "xiao1", // 穘
+ 0x7a59: "pu2", // 穙
+ 0x7a5a: "jiao1", // 穚
+ 0x7a5b: "zhuo1", // 穛
+ 0x7a5c: "zhong3", // 穜
+ 0x7a5d: "zui5", // 穝
+ 0x7a5e: "lv3", // 穞
+ 0x7a5f: "sui4", // 穟
+ 0x7a60: "nong2", // 穠
+ 0x7a61: "se4", // 穡
+ 0x7a62: "hui4", // 穢
+ 0x7a63: "rang2", // 穣
+ 0x7a64: "nuo4", // 穤
+ 0x7a65: "yu4", // 穥
+ 0x7a66: "pin1", // 穦
+ 0x7a67: "ji4", // 穧
+ 0x7a68: "tui2", // 穨
+ 0x7a69: "wen3", // 穩
+ 0x7a6a: "cheng1", // 穪
+ 0x7a6b: "huo4", // 穫
+ 0x7a6c: "kuang4", // 穬
+ 0x7a6d: "lv3", // 穭
+ 0x7a6e: "biao1", // 穮
+ 0x7a6f: "se4", // 穯
+ 0x7a70: "rang2", // 穰
+ 0x7a71: "zhuo1", // 穱
+ 0x7a72: "li2", // 穲
+ 0x7a73: "cuan2", // 穳
+ 0x7a74: "xue2", // 穴
+ 0x7a75: "wa1", // 穵
+ 0x7a76: "jiu1", // 究
+ 0x7a77: "qiong2", // 穷
+ 0x7a78: "xi1", // 穸
+ 0x7a79: "qiong2", // 穹
+ 0x7a7a: "kong1", // 空
+ 0x7a7b: "yu1", // 穻
+ 0x7a7c: "shen1", // 穼
+ 0x7a7d: "jing3", // 穽
+ 0x7a7e: "yao4", // 穾
+ 0x7a7f: "chuan1", // 穿
+ 0x7a80: "zhun1", // 窀
+ 0x7a81: "tu1", // 突
+ 0x7a82: "lao2", // 窂
+ 0x7a83: "qie4", // 窃
+ 0x7a84: "zhai3", // 窄
+ 0x7a85: "yao3", // 窅
+ 0x7a86: "bian3", // 窆
+ 0x7a87: "bao2", // 窇
+ 0x7a88: "yao3", // 窈
+ 0x7a89: "bing3", // 窉
+ 0x7a8a: "wa1", // 窊
+ 0x7a8b: "zhu2", // 窋
+ 0x7a8c: "jiao4", // 窌
+ 0x7a8d: "qiao4", // 窍
+ 0x7a8e: "diao4", // 窎
+ 0x7a8f: "wu1", // 窏
+ 0x7a90: "gui1", // 窐
+ 0x7a91: "yao2", // 窑
+ 0x7a92: "zhi4", // 窒
+ 0x7a93: "chuang1", // 窓
+ 0x7a94: "yao4", // 窔
+ 0x7a95: "tiao3", // 窕
+ 0x7a96: "jiao4", // 窖
+ 0x7a97: "chuang1", // 窗
+ 0x7a98: "jiong3", // 窘
+ 0x7a99: "xiao1", // 窙
+ 0x7a9a: "cheng2", // 窚
+ 0x7a9b: "kou4", // 窛
+ 0x7a9c: "cuan4", // 窜
+ 0x7a9d: "wo1", // 窝
+ 0x7a9e: "dan4", // 窞
+ 0x7a9f: "ku1", // 窟
+ 0x7aa0: "ke1", // 窠
+ 0x7aa1: "zhuo2", // 窡
+ 0x7aa2: "xu1", // 窢
+ 0x7aa3: "su1", // 窣
+ 0x7aa4: "guan1", // 窤
+ 0x7aa5: "kui1", // 窥
+ 0x7aa6: "dou4", // 窦
+ 0x7aa7: "zhuo5", // 窧
+ 0x7aa8: "xun1", // 窨
+ 0x7aa9: "wo1", // 窩
+ 0x7aaa: "wa1", // 窪
+ 0x7aab: "ya4", // 窫
+ 0x7aac: "yu2", // 窬
+ 0x7aad: "ju4", // 窭
+ 0x7aae: "qiong2", // 窮
+ 0x7aaf: "yao2", // 窯
+ 0x7ab0: "yao2", // 窰
+ 0x7ab1: "tiao3", // 窱
+ 0x7ab2: "chao2", // 窲
+ 0x7ab3: "yu3", // 窳
+ 0x7ab4: "tian2", // 窴
+ 0x7ab5: "diao4", // 窵
+ 0x7ab6: "ju4", // 窶
+ 0x7ab7: "liao4", // 窷
+ 0x7ab8: "xi1", // 窸
+ 0x7ab9: "wu4", // 窹
+ 0x7aba: "kui1", // 窺
+ 0x7abb: "chuang1", // 窻
+ 0x7abc: "zhao1", // 窼
+ 0x7abd: "kuan3", // 窽
+ 0x7abe: "kuan3", // 窾
+ 0x7abf: "long2", // 窿
+ 0x7ac0: "cheng1", // 竀
+ 0x7ac1: "cui4", // 竁
+ 0x7ac2: "liao2", // 竂
+ 0x7ac3: "zao4", // 竃
+ 0x7ac4: "cuan4", // 竄
+ 0x7ac5: "qiao4", // 竅
+ 0x7ac6: "qiong2", // 竆
+ 0x7ac7: "dou4", // 竇
+ 0x7ac8: "zao4", // 竈
+ 0x7ac9: "long3", // 竉
+ 0x7aca: "qie4", // 竊
+ 0x7acb: "li4", // 立
+ 0x7acc: "chu4", // 竌
+ 0x7acd: "shi2", // 竍
+ 0x7ace: "fu4", // 竎
+ 0x7acf: "qian1", // 竏
+ 0x7ad0: "chu4", // 竐
+ 0x7ad1: "hong2", // 竑
+ 0x7ad2: "qi2", // 竒
+ 0x7ad3: "hao2", // 竓
+ 0x7ad4: "sheng1", // 竔
+ 0x7ad5: "fen1", // 竕
+ 0x7ad6: "shu4", // 竖
+ 0x7ad7: "miao4", // 竗
+ 0x7ad8: "qu3", // 竘
+ 0x7ad9: "zhan4", // 站
+ 0x7ada: "zhu4", // 竚
+ 0x7adb: "ling2", // 竛
+ 0x7adc: "long2", // 竜
+ 0x7add: "bing4", // 竝
+ 0x7ade: "jing4", // 竞
+ 0x7adf: "jing4", // 竟
+ 0x7ae0: "zhang1", // 章
+ 0x7ae1: "bai3", // 竡
+ 0x7ae2: "si4", // 竢
+ 0x7ae3: "jun4", // 竣
+ 0x7ae4: "hong2", // 竤
+ 0x7ae5: "tong2", // 童
+ 0x7ae6: "song3", // 竦
+ 0x7ae7: "jing4", // 竧
+ 0x7ae8: "diao4", // 竨
+ 0x7ae9: "yi4", // 竩
+ 0x7aea: "shu4", // 竪
+ 0x7aeb: "jing4", // 竫
+ 0x7aec: "qu3", // 竬
+ 0x7aed: "jie2", // 竭
+ 0x7aee: "ping1", // 竮
+ 0x7aef: "duan1", // 端
+ 0x7af0: "li2", // 竰
+ 0x7af1: "zhuan3", // 竱
+ 0x7af2: "ceng2", // 竲
+ 0x7af3: "deng1", // 竳
+ 0x7af4: "cun1", // 竴
+ 0x7af5: "wai1", // 竵
+ 0x7af6: "jing4", // 競
+ 0x7af7: "kan3", // 竷
+ 0x7af8: "jing4", // 竸
+ 0x7af9: "zhu2", // 竹
+ 0x7afa: "zhu2", // 竺
+ 0x7afb: "le4", // 竻
+ 0x7afc: "peng2", // 竼
+ 0x7afd: "yu2", // 竽
+ 0x7afe: "chi2", // 竾
+ 0x7aff: "gan1", // 竿
+ 0x7b00: "mang2", // 笀
+ 0x7b01: "zhu2", // 笁
+ 0x7b02: "wan2", // 笂
+ 0x7b03: "du3", // 笃
+ 0x7b04: "ji1", // 笄
+ 0x7b05: "jiao3", // 笅
+ 0x7b06: "ba1", // 笆
+ 0x7b07: "suan4", // 笇
+ 0x7b08: "ji2", // 笈
+ 0x7b09: "qin3", // 笉
+ 0x7b0a: "zhao4", // 笊
+ 0x7b0b: "sun3", // 笋
+ 0x7b0c: "ya2", // 笌
+ 0x7b0d: "zhui4", // 笍
+ 0x7b0e: "yuan2", // 笎
+ 0x7b0f: "hu4", // 笏
+ 0x7b10: "hang2", // 笐
+ 0x7b11: "xiao4", // 笑
+ 0x7b12: "cen2", // 笒
+ 0x7b13: "bi4", // 笓
+ 0x7b14: "bi3", // 笔
+ 0x7b15: "jian3", // 笕
+ 0x7b16: "yi3", // 笖
+ 0x7b17: "dong1", // 笗
+ 0x7b18: "shan1", // 笘
+ 0x7b19: "sheng1", // 笙
+ 0x7b1a: "da1", // 笚
+ 0x7b1b: "di2", // 笛
+ 0x7b1c: "zhu2", // 笜
+ 0x7b1d: "na4", // 笝
+ 0x7b1e: "chi1", // 笞
+ 0x7b1f: "gu1", // 笟
+ 0x7b20: "li4", // 笠
+ 0x7b21: "qie4", // 笡
+ 0x7b22: "min3", // 笢
+ 0x7b23: "bao1", // 笣
+ 0x7b24: "tiao2", // 笤
+ 0x7b25: "si4", // 笥
+ 0x7b26: "fu2", // 符
+ 0x7b27: "ce4", // 笧
+ 0x7b28: "ben4", // 笨
+ 0x7b29: "fa2", // 笩
+ 0x7b2a: "da2", // 笪
+ 0x7b2b: "zi3", // 笫
+ 0x7b2c: "di4", // 第
+ 0x7b2d: "ling2", // 笭
+ 0x7b2e: "ze2", // 笮
+ 0x7b2f: "nu2", // 笯
+ 0x7b30: "fu2", // 笰
+ 0x7b31: "gou3", // 笱
+ 0x7b32: "fan2", // 笲
+ 0x7b33: "jia1", // 笳
+ 0x7b34: "gan3", // 笴
+ 0x7b35: "fan4", // 笵
+ 0x7b36: "shi3", // 笶
+ 0x7b37: "mao3", // 笷
+ 0x7b38: "po3", // 笸
+ 0x7b39: "ti5", // 笹
+ 0x7b3a: "jian1", // 笺
+ 0x7b3b: "qiong2", // 笻
+ 0x7b3c: "long2", // 笼
+ 0x7b3d: "min3", // 笽
+ 0x7b3e: "bian1", // 笾
+ 0x7b3f: "luo4", // 笿
+ 0x7b40: "gui4", // 筀
+ 0x7b41: "qu1", // 筁
+ 0x7b42: "chi2", // 筂
+ 0x7b43: "yin1", // 筃
+ 0x7b44: "yao4", // 筄
+ 0x7b45: "xian3", // 筅
+ 0x7b46: "bi3", // 筆
+ 0x7b47: "qiong2", // 筇
+ 0x7b48: "kuo4", // 筈
+ 0x7b49: "deng3", // 等
+ 0x7b4a: "xiao2", // 筊
+ 0x7b4b: "jin1", // 筋
+ 0x7b4c: "quan2", // 筌
+ 0x7b4d: "sun3", // 筍
+ 0x7b4e: "ru2", // 筎
+ 0x7b4f: "fa2", // 筏
+ 0x7b50: "kuang1", // 筐
+ 0x7b51: "zhu4", // 筑
+ 0x7b52: "tong3", // 筒
+ 0x7b53: "ji1", // 筓
+ 0x7b54: "da2", // 答
+ 0x7b55: "hang2", // 筕
+ 0x7b56: "ce4", // 策
+ 0x7b57: "zhong4", // 筗
+ 0x7b58: "kou4", // 筘
+ 0x7b59: "lai2", // 筙
+ 0x7b5a: "bi4", // 筚
+ 0x7b5b: "shai1", // 筛
+ 0x7b5c: "dang1", // 筜
+ 0x7b5d: "zheng1", // 筝
+ 0x7b5e: "ce4", // 筞
+ 0x7b5f: "fu1", // 筟
+ 0x7b60: "yun2", // 筠
+ 0x7b61: "tu2", // 筡
+ 0x7b62: "pa2", // 筢
+ 0x7b63: "li2", // 筣
+ 0x7b64: "lang2", // 筤
+ 0x7b65: "ju3", // 筥
+ 0x7b66: "guan3", // 筦
+ 0x7b67: "jian3", // 筧
+ 0x7b68: "han2", // 筨
+ 0x7b69: "tong2", // 筩
+ 0x7b6a: "xia2", // 筪
+ 0x7b6b: "zhi4", // 筫
+ 0x7b6c: "cheng2", // 筬
+ 0x7b6d: "suan4", // 筭
+ 0x7b6e: "shi4", // 筮
+ 0x7b6f: "zhu4", // 筯
+ 0x7b70: "zuo2", // 筰
+ 0x7b71: "xiao3", // 筱
+ 0x7b72: "shao1", // 筲
+ 0x7b73: "ting2", // 筳
+ 0x7b74: "ce4", // 筴
+ 0x7b75: "yan2", // 筵
+ 0x7b76: "gao4", // 筶
+ 0x7b77: "kuai4", // 筷
+ 0x7b78: "gan1", // 筸
+ 0x7b79: "chou2", // 筹
+ 0x7b7a: "kuang1", // 筺
+ 0x7b7b: "gang4", // 筻
+ 0x7b7c: "yun2", // 筼
+ 0x7b7d: "o5", // 筽
+ 0x7b7e: "qian1", // 签
+ 0x7b7f: "xiao3", // 筿
+ 0x7b80: "jian3", // 简
+ 0x7b81: "pou2", // 箁
+ 0x7b82: "lai2", // 箂
+ 0x7b83: "zou1", // 箃
+ 0x7b84: "bi3", // 箄
+ 0x7b85: "bi4", // 箅
+ 0x7b86: "bi4", // 箆
+ 0x7b87: "ge4", // 箇
+ 0x7b88: "tai2", // 箈
+ 0x7b89: "guai3", // 箉
+ 0x7b8a: "yu1", // 箊
+ 0x7b8b: "jian1", // 箋
+ 0x7b8c: "dao4", // 箌
+ 0x7b8d: "gu1", // 箍
+ 0x7b8e: "chi2", // 箎
+ 0x7b8f: "zheng1", // 箏
+ 0x7b90: "qing4", // 箐
+ 0x7b91: "sha4", // 箑
+ 0x7b92: "zhou3", // 箒
+ 0x7b93: "lu4", // 箓
+ 0x7b94: "bo2", // 箔
+ 0x7b95: "ji1", // 箕
+ 0x7b96: "lin2", // 箖
+ 0x7b97: "suan4", // 算
+ 0x7b98: "jun4", // 箘
+ 0x7b99: "fu2", // 箙
+ 0x7b9a: "zha2", // 箚
+ 0x7b9b: "gu1", // 箛
+ 0x7b9c: "kong1", // 箜
+ 0x7b9d: "qian2", // 箝
+ 0x7b9e: "qian1", // 箞
+ 0x7b9f: "jun4", // 箟
+ 0x7ba0: "chui2", // 箠
+ 0x7ba1: "guan3", // 管
+ 0x7ba2: "yuan1", // 箢
+ 0x7ba3: "ce4", // 箣
+ 0x7ba4: "zu2", // 箤
+ 0x7ba5: "bo3", // 箥
+ 0x7ba6: "ze2", // 箦
+ 0x7ba7: "qie4", // 箧
+ 0x7ba8: "tuo4", // 箨
+ 0x7ba9: "luo2", // 箩
+ 0x7baa: "dan1", // 箪
+ 0x7bab: "xiao1", // 箫
+ 0x7bac: "ruo4", // 箬
+ 0x7bad: "jian4", // 箭
+ 0x7bae: "xuan1", // 箮
+ 0x7baf: "bian1", // 箯
+ 0x7bb0: "sun3", // 箰
+ 0x7bb1: "xiang1", // 箱
+ 0x7bb2: "xian3", // 箲
+ 0x7bb3: "ping2", // 箳
+ 0x7bb4: "zhen1", // 箴
+ 0x7bb5: "xing1", // 箵
+ 0x7bb6: "hu2", // 箶
+ 0x7bb7: "yi2", // 箷
+ 0x7bb8: "zhu4", // 箸
+ 0x7bb9: "yue1", // 箹
+ 0x7bba: "chun1", // 箺
+ 0x7bbb: "lv4", // 箻
+ 0x7bbc: "wu1", // 箼
+ 0x7bbd: "dong3", // 箽
+ 0x7bbe: "shuo4", // 箾
+ 0x7bbf: "ji2", // 箿
+ 0x7bc0: "jie2", // 節
+ 0x7bc1: "huang2", // 篁
+ 0x7bc2: "xing1", // 篂
+ 0x7bc3: "mei4", // 篃
+ 0x7bc4: "fan4", // 範
+ 0x7bc5: "chuan2", // 篅
+ 0x7bc6: "zhuan4", // 篆
+ 0x7bc7: "pian1", // 篇
+ 0x7bc8: "feng1", // 篈
+ 0x7bc9: "zhu2", // 築
+ 0x7bca: "huang2", // 篊
+ 0x7bcb: "qie4", // 篋
+ 0x7bcc: "hou2", // 篌
+ 0x7bcd: "qiu1", // 篍
+ 0x7bce: "miao3", // 篎
+ 0x7bcf: "qian4", // 篏
+ 0x7bd0: "gu1", // 篐
+ 0x7bd1: "kui4", // 篑
+ 0x7bd2: "shi5", // 篒
+ 0x7bd3: "lou3", // 篓
+ 0x7bd4: "yun2", // 篔
+ 0x7bd5: "he2", // 篕
+ 0x7bd6: "tang2", // 篖
+ 0x7bd7: "yue4", // 篗
+ 0x7bd8: "chou1", // 篘
+ 0x7bd9: "gao1", // 篙
+ 0x7bda: "fei3", // 篚
+ 0x7bdb: "ruo4", // 篛
+ 0x7bdc: "zheng1", // 篜
+ 0x7bdd: "gou1", // 篝
+ 0x7bde: "nie4", // 篞
+ 0x7bdf: "qian4", // 篟
+ 0x7be0: "xiao3", // 篠
+ 0x7be1: "cuan4", // 篡
+ 0x7be2: "long3", // 篢
+ 0x7be3: "peng2", // 篣
+ 0x7be4: "du3", // 篤
+ 0x7be5: "li4", // 篥
+ 0x7be6: "bi4", // 篦
+ 0x7be7: "zhuo2", // 篧
+ 0x7be8: "chu2", // 篨
+ 0x7be9: "shai1", // 篩
+ 0x7bea: "chi2", // 篪
+ 0x7beb: "zhu4", // 篫
+ 0x7bec: "qiang1", // 篬
+ 0x7bed: "long2", // 篭
+ 0x7bee: "lan2", // 篮
+ 0x7bef: "jian1", // 篯
+ 0x7bf0: "bu4", // 篰
+ 0x7bf1: "li2", // 篱
+ 0x7bf2: "hui4", // 篲
+ 0x7bf3: "bi4", // 篳
+ 0x7bf4: "di2", // 篴
+ 0x7bf5: "cong1", // 篵
+ 0x7bf6: "yan1", // 篶
+ 0x7bf7: "peng2", // 篷
+ 0x7bf8: "can3", // 篸
+ 0x7bf9: "zhuan4", // 篹
+ 0x7bfa: "pi2", // 篺
+ 0x7bfb: "piao3", // 篻
+ 0x7bfc: "dou1", // 篼
+ 0x7bfd: "yu4", // 篽
+ 0x7bfe: "mie4", // 篾
+ 0x7bff: "tuan2", // 篿
+ 0x7c00: "ze2", // 簀
+ 0x7c01: "shai1", // 簁
+ 0x7c02: "gui4", // 簂
+ 0x7c03: "yi2", // 簃
+ 0x7c04: "hu4", // 簄
+ 0x7c05: "chan3", // 簅
+ 0x7c06: "kou4", // 簆
+ 0x7c07: "cu4", // 簇
+ 0x7c08: "ping2", // 簈
+ 0x7c09: "zao4", // 簉
+ 0x7c0a: "ji1", // 簊
+ 0x7c0b: "gui3", // 簋
+ 0x7c0c: "su4", // 簌
+ 0x7c0d: "lou3", // 簍
+ 0x7c0e: "ce4", // 簎
+ 0x7c0f: "lu4", // 簏
+ 0x7c10: "nian3", // 簐
+ 0x7c11: "suo1", // 簑
+ 0x7c12: "cuan4", // 簒
+ 0x7c13: "diao1", // 簓
+ 0x7c14: "suo1", // 簔
+ 0x7c15: "le4", // 簕
+ 0x7c16: "duan4", // 簖
+ 0x7c17: "liang5", // 簗
+ 0x7c18: "xiao1", // 簘
+ 0x7c19: "bo2", // 簙
+ 0x7c1a: "mi4", // 簚
+ 0x7c1b: "shai1", // 簛
+ 0x7c1c: "dang4", // 簜
+ 0x7c1d: "liao2", // 簝
+ 0x7c1e: "dan1", // 簞
+ 0x7c1f: "dian4", // 簟
+ 0x7c20: "fu3", // 簠
+ 0x7c21: "jian3", // 簡
+ 0x7c22: "min3", // 簢
+ 0x7c23: "kui4", // 簣
+ 0x7c24: "dai4", // 簤
+ 0x7c25: "jiao1", // 簥
+ 0x7c26: "deng1", // 簦
+ 0x7c27: "huang2", // 簧
+ 0x7c28: "sun3", // 簨
+ 0x7c29: "lao2", // 簩
+ 0x7c2a: "zan1", // 簪
+ 0x7c2b: "xiao1", // 簫
+ 0x7c2c: "lu4", // 簬
+ 0x7c2d: "shi4", // 簭
+ 0x7c2e: "zan1", // 簮
+ 0x7c2f: "qi5", // 簯
+ 0x7c30: "pai2", // 簰
+ 0x7c31: "qi2", // 簱
+ 0x7c32: "pai2", // 簲
+ 0x7c33: "gan3", // 簳
+ 0x7c34: "ju4", // 簴
+ 0x7c35: "lu4", // 簵
+ 0x7c36: "lu4", // 簶
+ 0x7c37: "yan2", // 簷
+ 0x7c38: "bo3", // 簸
+ 0x7c39: "dang1", // 簹
+ 0x7c3a: "sai4", // 簺
+ 0x7c3b: "zhua1", // 簻
+ 0x7c3c: "gou1", // 簼
+ 0x7c3d: "qian1", // 簽
+ 0x7c3e: "lian2", // 簾
+ 0x7c3f: "bu4", // 簿
+ 0x7c40: "zhou4", // 籀
+ 0x7c41: "lai4", // 籁
+ 0x7c42: "shi5", // 籂
+ 0x7c43: "lan2", // 籃
+ 0x7c44: "kui4", // 籄
+ 0x7c45: "yu2", // 籅
+ 0x7c46: "yue4", // 籆
+ 0x7c47: "hao2", // 籇
+ 0x7c48: "zhen1", // 籈
+ 0x7c49: "tai2", // 籉
+ 0x7c4a: "ti4", // 籊
+ 0x7c4b: "nie4", // 籋
+ 0x7c4c: "chou2", // 籌
+ 0x7c4d: "ji2", // 籍
+ 0x7c4e: "yi2", // 籎
+ 0x7c4f: "qi2", // 籏
+ 0x7c50: "teng2", // 籐
+ 0x7c51: "zhuan4", // 籑
+ 0x7c52: "zhou4", // 籒
+ 0x7c53: "fan1", // 籓
+ 0x7c54: "sou3", // 籔
+ 0x7c55: "zhou4", // 籕
+ 0x7c56: "qian5", // 籖
+ 0x7c57: "zhuo2", // 籗
+ 0x7c58: "teng2", // 籘
+ 0x7c59: "lu4", // 籙
+ 0x7c5a: "lu2", // 籚
+ 0x7c5b: "jian3", // 籛
+ 0x7c5c: "tuo4", // 籜
+ 0x7c5d: "ying2", // 籝
+ 0x7c5e: "yu4", // 籞
+ 0x7c5f: "lai4", // 籟
+ 0x7c60: "long2", // 籠
+ 0x7c61: "qie4", // 籡
+ 0x7c62: "lian2", // 籢
+ 0x7c63: "lan2", // 籣
+ 0x7c64: "qian1", // 籤
+ 0x7c65: "yue4", // 籥
+ 0x7c66: "zhong1", // 籦
+ 0x7c67: "qu2", // 籧
+ 0x7c68: "lian2", // 籨
+ 0x7c69: "bian1", // 籩
+ 0x7c6a: "duan4", // 籪
+ 0x7c6b: "zuan3", // 籫
+ 0x7c6c: "li2", // 籬
+ 0x7c6d: "si1", // 籭
+ 0x7c6e: "luo2", // 籮
+ 0x7c6f: "ying2", // 籯
+ 0x7c70: "yue4", // 籰
+ 0x7c71: "zhuo2", // 籱
+ 0x7c72: "yu4", // 籲
+ 0x7c73: "mi3", // 米
+ 0x7c74: "di2", // 籴
+ 0x7c75: "fan2", // 籵
+ 0x7c76: "shen1", // 籶
+ 0x7c77: "zhe2", // 籷
+ 0x7c78: "shen1", // 籸
+ 0x7c79: "nv3", // 籹
+ 0x7c7a: "he2", // 籺
+ 0x7c7b: "lei4", // 类
+ 0x7c7c: "xian1", // 籼
+ 0x7c7d: "zi3", // 籽
+ 0x7c7e: "ni2", // 籾
+ 0x7c7f: "cun4", // 籿
+ 0x7c80: "zhang4", // 粀
+ 0x7c81: "qian1", // 粁
+ 0x7c82: "zhai1", // 粂
+ 0x7c83: "bi3", // 粃
+ 0x7c84: "ban3", // 粄
+ 0x7c85: "wu4", // 粅
+ 0x7c86: "sha1", // 粆
+ 0x7c87: "kang1", // 粇
+ 0x7c88: "rou2", // 粈
+ 0x7c89: "fen3", // 粉
+ 0x7c8a: "bi4", // 粊
+ 0x7c8b: "cui4", // 粋
+ 0x7c8c: "yin5", // 粌
+ 0x7c8d: "zhe2", // 粍
+ 0x7c8e: "mi3", // 粎
+ 0x7c8f: "tai5", // 粏
+ 0x7c90: "hu4", // 粐
+ 0x7c91: "ba1", // 粑
+ 0x7c92: "li4", // 粒
+ 0x7c93: "gan1", // 粓
+ 0x7c94: "ju4", // 粔
+ 0x7c95: "po4", // 粕
+ 0x7c96: "mo4", // 粖
+ 0x7c97: "cu1", // 粗
+ 0x7c98: "zhan1", // 粘
+ 0x7c99: "zhou4", // 粙
+ 0x7c9a: "chi1", // 粚
+ 0x7c9b: "su4", // 粛
+ 0x7c9c: "tiao4", // 粜
+ 0x7c9d: "li4", // 粝
+ 0x7c9e: "xi1", // 粞
+ 0x7c9f: "su4", // 粟
+ 0x7ca0: "hong2", // 粠
+ 0x7ca1: "tong2", // 粡
+ 0x7ca2: "zi1", // 粢
+ 0x7ca3: "ce4", // 粣
+ 0x7ca4: "yue4", // 粤
+ 0x7ca5: "zhou1", // 粥
+ 0x7ca6: "lin2", // 粦
+ 0x7ca7: "zhuang1", // 粧
+ 0x7ca8: "bai3", // 粨
+ 0x7ca9: "lao1", // 粩
+ 0x7caa: "fen4", // 粪
+ 0x7cab: "er2", // 粫
+ 0x7cac: "qu1", // 粬
+ 0x7cad: "he2", // 粭
+ 0x7cae: "liang2", // 粮
+ 0x7caf: "xian4", // 粯
+ 0x7cb0: "fu2", // 粰
+ 0x7cb1: "liang2", // 粱
+ 0x7cb2: "can4", // 粲
+ 0x7cb3: "jing1", // 粳
+ 0x7cb4: "li3", // 粴
+ 0x7cb5: "yue4", // 粵
+ 0x7cb6: "lu4", // 粶
+ 0x7cb7: "ju2", // 粷
+ 0x7cb8: "qi2", // 粸
+ 0x7cb9: "cui4", // 粹
+ 0x7cba: "bai4", // 粺
+ 0x7cbb: "zhang1", // 粻
+ 0x7cbc: "lin2", // 粼
+ 0x7cbd: "zong4", // 粽
+ 0x7cbe: "jing1", // 精
+ 0x7cbf: "guo3", // 粿
+ 0x7cc0: "hua1", // 糀
+ 0x7cc1: "san3", // 糁
+ 0x7cc2: "san3", // 糂
+ 0x7cc3: "tang2", // 糃
+ 0x7cc4: "bian3", // 糄
+ 0x7cc5: "rou2", // 糅
+ 0x7cc6: "mian4", // 糆
+ 0x7cc7: "hou2", // 糇
+ 0x7cc8: "xu3", // 糈
+ 0x7cc9: "zong4", // 糉
+ 0x7cca: "hu2", // 糊
+ 0x7ccb: "jian4", // 糋
+ 0x7ccc: "zan1", // 糌
+ 0x7ccd: "ci2", // 糍
+ 0x7cce: "li2", // 糎
+ 0x7ccf: "xie4", // 糏
+ 0x7cd0: "fu1", // 糐
+ 0x7cd1: "nuo4", // 糑
+ 0x7cd2: "bei4", // 糒
+ 0x7cd3: "gu3", // 糓
+ 0x7cd4: "xiu3", // 糔
+ 0x7cd5: "gao1", // 糕
+ 0x7cd6: "tang2", // 糖
+ 0x7cd7: "qiu3", // 糗
+ 0x7cd8: "jia1", // 糘
+ 0x7cd9: "cao1", // 糙
+ 0x7cda: "zhuang1", // 糚
+ 0x7cdb: "tang2", // 糛
+ 0x7cdc: "mi2", // 糜
+ 0x7cdd: "san3", // 糝
+ 0x7cde: "fen4", // 糞
+ 0x7cdf: "zao1", // 糟
+ 0x7ce0: "kang1", // 糠
+ 0x7ce1: "jiang4", // 糡
+ 0x7ce2: "mo2", // 糢
+ 0x7ce3: "san3", // 糣
+ 0x7ce4: "san3", // 糤
+ 0x7ce5: "nuo4", // 糥
+ 0x7ce6: "xi1", // 糦
+ 0x7ce7: "liang2", // 糧
+ 0x7ce8: "jiang4", // 糨
+ 0x7ce9: "kuai4", // 糩
+ 0x7cea: "bo4", // 糪
+ 0x7ceb: "huan2", // 糫
+ 0x7cec: "shu3", // 糬
+ 0x7ced: "zong4", // 糭
+ 0x7cee: "xian4", // 糮
+ 0x7cef: "nuo4", // 糯
+ 0x7cf0: "tuan2", // 糰
+ 0x7cf1: "nie4", // 糱
+ 0x7cf2: "li4", // 糲
+ 0x7cf3: "zuo4", // 糳
+ 0x7cf4: "di2", // 糴
+ 0x7cf5: "nie4", // 糵
+ 0x7cf6: "tiao4", // 糶
+ 0x7cf7: "lan4", // 糷
+ 0x7cf8: "mi4", // 糸
+ 0x7cf9: "si1", // 糹
+ 0x7cfa: "jiu1", // 糺
+ 0x7cfb: "xi4", // 系
+ 0x7cfc: "gong1", // 糼
+ 0x7cfd: "zheng3", // 糽
+ 0x7cfe: "jiu1", // 糾
+ 0x7cff: "you4", // 糿
+ 0x7d00: "ji4", // 紀
+ 0x7d01: "cha4", // 紁
+ 0x7d02: "zhou4", // 紂
+ 0x7d03: "xun2", // 紃
+ 0x7d04: "yue1", // 約
+ 0x7d05: "hong2", // 紅
+ 0x7d06: "yu1", // 紆
+ 0x7d07: "he2", // 紇
+ 0x7d08: "wan2", // 紈
+ 0x7d09: "ren4", // 紉
+ 0x7d0a: "wen3", // 紊
+ 0x7d0b: "wen2", // 紋
+ 0x7d0c: "qiu2", // 紌
+ 0x7d0d: "na4", // 納
+ 0x7d0e: "zi1", // 紎
+ 0x7d0f: "tou3", // 紏
+ 0x7d10: "niu3", // 紐
+ 0x7d11: "fou2", // 紑
+ 0x7d12: "ji4", // 紒
+ 0x7d13: "shu1", // 紓
+ 0x7d14: "chun2", // 純
+ 0x7d15: "pi1", // 紕
+ 0x7d16: "zhen4", // 紖
+ 0x7d17: "sha1", // 紗
+ 0x7d18: "hong2", // 紘
+ 0x7d19: "zhi3", // 紙
+ 0x7d1a: "ji2", // 級
+ 0x7d1b: "fen1", // 紛
+ 0x7d1c: "yun2", // 紜
+ 0x7d1d: "ren4", // 紝
+ 0x7d1e: "dan3", // 紞
+ 0x7d1f: "jin1", // 紟
+ 0x7d20: "su4", // 素
+ 0x7d21: "fang3", // 紡
+ 0x7d22: "suo3", // 索
+ 0x7d23: "cui4", // 紣
+ 0x7d24: "jiu3", // 紤
+ 0x7d25: "za1", // 紥
+ 0x7d26: "ba5", // 紦
+ 0x7d27: "jin3", // 紧
+ 0x7d28: "fu1", // 紨
+ 0x7d29: "zhi4", // 紩
+ 0x7d2a: "qi1", // 紪
+ 0x7d2b: "zi3", // 紫
+ 0x7d2c: "chou2", // 紬
+ 0x7d2d: "hong2", // 紭
+ 0x7d2e: "za1", // 紮
+ 0x7d2f: "lei4", // 累
+ 0x7d30: "xi4", // 細
+ 0x7d31: "fu2", // 紱
+ 0x7d32: "xie4", // 紲
+ 0x7d33: "shen1", // 紳
+ 0x7d34: "bo1", // 紴
+ 0x7d35: "zhu4", // 紵
+ 0x7d36: "qu1", // 紶
+ 0x7d37: "ling2", // 紷
+ 0x7d38: "zhu4", // 紸
+ 0x7d39: "shao4", // 紹
+ 0x7d3a: "gan4", // 紺
+ 0x7d3b: "yang3", // 紻
+ 0x7d3c: "fu2", // 紼
+ 0x7d3d: "tuo2", // 紽
+ 0x7d3e: "zhen3", // 紾
+ 0x7d3f: "dai4", // 紿
+ 0x7d40: "chu4", // 絀
+ 0x7d41: "shi1", // 絁
+ 0x7d42: "zhong1", // 終
+ 0x7d43: "xian2", // 絃
+ 0x7d44: "zu3", // 組
+ 0x7d45: "jiong1", // 絅
+ 0x7d46: "ban4", // 絆
+ 0x7d47: "qu2", // 絇
+ 0x7d48: "mo4", // 絈
+ 0x7d49: "shu4", // 絉
+ 0x7d4a: "zui4", // 絊
+ 0x7d4b: "kuang4", // 絋
+ 0x7d4c: "jing1", // 経
+ 0x7d4d: "ren4", // 絍
+ 0x7d4e: "hang2", // 絎
+ 0x7d4f: "xie4", // 絏
+ 0x7d50: "jie2", // 結
+ 0x7d51: "zhu1", // 絑
+ 0x7d52: "chou2", // 絒
+ 0x7d53: "gua4", // 絓
+ 0x7d54: "bai3", // 絔
+ 0x7d55: "jue2", // 絕
+ 0x7d56: "kuang4", // 絖
+ 0x7d57: "hu2", // 絗
+ 0x7d58: "ci4", // 絘
+ 0x7d59: "huan2", // 絙
+ 0x7d5a: "geng1", // 絚
+ 0x7d5b: "tao1", // 絛
+ 0x7d5c: "jie2", // 絜
+ 0x7d5d: "ku4", // 絝
+ 0x7d5e: "jiao3", // 絞
+ 0x7d5f: "quan2", // 絟
+ 0x7d60: "gai3", // 絠
+ 0x7d61: "luo4", // 絡
+ 0x7d62: "xuan4", // 絢
+ 0x7d63: "beng1", // 絣
+ 0x7d64: "xian4", // 絤
+ 0x7d65: "fu2", // 絥
+ 0x7d66: "gei3", // 給
+ 0x7d67: "dong4", // 絧
+ 0x7d68: "rong2", // 絨
+ 0x7d69: "tiao4", // 絩
+ 0x7d6a: "yin1", // 絪
+ 0x7d6b: "lei3", // 絫
+ 0x7d6c: "xie4", // 絬
+ 0x7d6d: "juan4", // 絭
+ 0x7d6e: "xu4", // 絮
+ 0x7d6f: "gai1", // 絯
+ 0x7d70: "die2", // 絰
+ 0x7d71: "tong3", // 統
+ 0x7d72: "si1", // 絲
+ 0x7d73: "jiang4", // 絳
+ 0x7d74: "xiang2", // 絴
+ 0x7d75: "hui4", // 絵
+ 0x7d76: "jue2", // 絶
+ 0x7d77: "zhi2", // 絷
+ 0x7d78: "jian3", // 絸
+ 0x7d79: "juan4", // 絹
+ 0x7d7a: "chi1", // 絺
+ 0x7d7b: "mian3", // 絻
+ 0x7d7c: "zhen4", // 絼
+ 0x7d7d: "lv3", // 絽
+ 0x7d7e: "cheng2", // 絾
+ 0x7d7f: "qiu2", // 絿
+ 0x7d80: "shu1", // 綀
+ 0x7d81: "bang3", // 綁
+ 0x7d82: "tong3", // 綂
+ 0x7d83: "xiao1", // 綃
+ 0x7d84: "huan2", // 綄
+ 0x7d85: "qin1", // 綅
+ 0x7d86: "geng3", // 綆
+ 0x7d87: "xiu3", // 綇
+ 0x7d88: "ti2", // 綈
+ 0x7d89: "tou4", // 綉
+ 0x7d8a: "xie2", // 綊
+ 0x7d8b: "hong2", // 綋
+ 0x7d8c: "xi4", // 綌
+ 0x7d8d: "fu2", // 綍
+ 0x7d8e: "ting1", // 綎
+ 0x7d8f: "sui1", // 綏
+ 0x7d90: "dui4", // 綐
+ 0x7d91: "kun3", // 綑
+ 0x7d92: "fu1", // 綒
+ 0x7d93: "jing1", // 經
+ 0x7d94: "hu4", // 綔
+ 0x7d95: "zhi1", // 綕
+ 0x7d96: "yan2", // 綖
+ 0x7d97: "jiong3", // 綗
+ 0x7d98: "feng2", // 綘
+ 0x7d99: "ji4", // 継
+ 0x7d9a: "xu4", // 続
+ 0x7d9b: "ren3", // 綛
+ 0x7d9c: "zong1", // 綜
+ 0x7d9d: "chen1", // 綝
+ 0x7d9e: "duo3", // 綞
+ 0x7d9f: "li4", // 綟
+ 0x7da0: "lv4", // 綠
+ 0x7da1: "liang2", // 綡
+ 0x7da2: "chou2", // 綢
+ 0x7da3: "quan3", // 綣
+ 0x7da4: "shao4", // 綤
+ 0x7da5: "qi2", // 綥
+ 0x7da6: "qi2", // 綦
+ 0x7da7: "zhun3", // 綧
+ 0x7da8: "qi2", // 綨
+ 0x7da9: "wan3", // 綩
+ 0x7daa: "qian4", // 綪
+ 0x7dab: "xian4", // 綫
+ 0x7dac: "shou4", // 綬
+ 0x7dad: "wei2", // 維
+ 0x7dae: "qi3", // 綮
+ 0x7daf: "tao2", // 綯
+ 0x7db0: "wan3", // 綰
+ 0x7db1: "gang1", // 綱
+ 0x7db2: "wang3", // 網
+ 0x7db3: "beng1", // 綳
+ 0x7db4: "zhui4", // 綴
+ 0x7db5: "cai3", // 綵
+ 0x7db6: "guo3", // 綶
+ 0x7db7: "cui4", // 綷
+ 0x7db8: "lun2", // 綸
+ 0x7db9: "liu3", // 綹
+ 0x7dba: "qi3", // 綺
+ 0x7dbb: "zhan4", // 綻
+ 0x7dbc: "bi4", // 綼
+ 0x7dbd: "chuo4", // 綽
+ 0x7dbe: "ling2", // 綾
+ 0x7dbf: "mian2", // 綿
+ 0x7dc0: "qi1", // 緀
+ 0x7dc1: "qie4", // 緁
+ 0x7dc2: "tian2", // 緂
+ 0x7dc3: "zong1", // 緃
+ 0x7dc4: "gun3", // 緄
+ 0x7dc5: "zou1", // 緅
+ 0x7dc6: "xi1", // 緆
+ 0x7dc7: "zi1", // 緇
+ 0x7dc8: "xing4", // 緈
+ 0x7dc9: "liang3", // 緉
+ 0x7dca: "jin3", // 緊
+ 0x7dcb: "fei1", // 緋
+ 0x7dcc: "rui2", // 緌
+ 0x7dcd: "min2", // 緍
+ 0x7dce: "yu4", // 緎
+ 0x7dcf: "zong3", // 総
+ 0x7dd0: "fan2", // 緐
+ 0x7dd1: "lv4", // 緑
+ 0x7dd2: "xu4", // 緒
+ 0x7dd3: "ying1", // 緓
+ 0x7dd4: "shang4", // 緔
+ 0x7dd5: "qi5", // 緕
+ 0x7dd6: "xu4", // 緖
+ 0x7dd7: "xiang1", // 緗
+ 0x7dd8: "jian1", // 緘
+ 0x7dd9: "ke4", // 緙
+ 0x7dda: "xian4", // 線
+ 0x7ddb: "ruan3", // 緛
+ 0x7ddc: "mian2", // 緜
+ 0x7ddd: "ji1", // 緝
+ 0x7dde: "duan4", // 緞
+ 0x7ddf: "chong2", // 緟
+ 0x7de0: "di4", // 締
+ 0x7de1: "min2", // 緡
+ 0x7de2: "miao2", // 緢
+ 0x7de3: "yuan2", // 緣
+ 0x7de4: "xie4", // 緤
+ 0x7de5: "bao3", // 緥
+ 0x7de6: "si1", // 緦
+ 0x7de7: "qiu1", // 緧
+ 0x7de8: "bian1", // 編
+ 0x7de9: "huan3", // 緩
+ 0x7dea: "geng1", // 緪
+ 0x7deb: "cong1", // 緫
+ 0x7dec: "mian3", // 緬
+ 0x7ded: "wei4", // 緭
+ 0x7dee: "fu4", // 緮
+ 0x7def: "wei3", // 緯
+ 0x7df0: "tou2", // 緰
+ 0x7df1: "gou1", // 緱
+ 0x7df2: "miao3", // 緲
+ 0x7df3: "xie2", // 緳
+ 0x7df4: "lian4", // 練
+ 0x7df5: "zong1", // 緵
+ 0x7df6: "bian4", // 緶
+ 0x7df7: "yun4", // 緷
+ 0x7df8: "yin1", // 緸
+ 0x7df9: "ti2", // 緹
+ 0x7dfa: "gua1", // 緺
+ 0x7dfb: "zhi4", // 緻
+ 0x7dfc: "yun4", // 緼
+ 0x7dfd: "cheng1", // 緽
+ 0x7dfe: "chan2", // 緾
+ 0x7dff: "dai4", // 緿
+ 0x7e00: "xia2", // 縀
+ 0x7e01: "yuan2", // 縁
+ 0x7e02: "zong3", // 縂
+ 0x7e03: "xu1", // 縃
+ 0x7e04: "sheng2", // 縄
+ 0x7e05: "wei1", // 縅
+ 0x7e06: "geng1", // 縆
+ 0x7e07: "xuan1", // 縇
+ 0x7e08: "ying2", // 縈
+ 0x7e09: "jin4", // 縉
+ 0x7e0a: "yi4", // 縊
+ 0x7e0b: "zhui4", // 縋
+ 0x7e0c: "ni4", // 縌
+ 0x7e0d: "bang1", // 縍
+ 0x7e0e: "gu3", // 縎
+ 0x7e0f: "pan2", // 縏
+ 0x7e10: "zhou4", // 縐
+ 0x7e11: "jian1", // 縑
+ 0x7e12: "ci1", // 縒
+ 0x7e13: "quan2", // 縓
+ 0x7e14: "shuang3", // 縔
+ 0x7e15: "yun4", // 縕
+ 0x7e16: "xia2", // 縖
+ 0x7e17: "cui1", // 縗
+ 0x7e18: "xi1", // 縘
+ 0x7e19: "rong2", // 縙
+ 0x7e1a: "tao1", // 縚
+ 0x7e1b: "fu4", // 縛
+ 0x7e1c: "yun2", // 縜
+ 0x7e1d: "chen1", // 縝
+ 0x7e1e: "gao3", // 縞
+ 0x7e1f: "ru4", // 縟
+ 0x7e20: "hu2", // 縠
+ 0x7e21: "zai4", // 縡
+ 0x7e22: "teng2", // 縢
+ 0x7e23: "xian4", // 縣
+ 0x7e24: "su4", // 縤
+ 0x7e25: "zhen3", // 縥
+ 0x7e26: "zong4", // 縦
+ 0x7e27: "tao1", // 縧
+ 0x7e28: "huang3", // 縨
+ 0x7e29: "cai4", // 縩
+ 0x7e2a: "bi4", // 縪
+ 0x7e2b: "feng4", // 縫
+ 0x7e2c: "cu4", // 縬
+ 0x7e2d: "li2", // 縭
+ 0x7e2e: "suo1", // 縮
+ 0x7e2f: "yan3", // 縯
+ 0x7e30: "xi3", // 縰
+ 0x7e31: "zong4", // 縱
+ 0x7e32: "lei2", // 縲
+ 0x7e33: "juan4", // 縳
+ 0x7e34: "qian4", // 縴
+ 0x7e35: "man4", // 縵
+ 0x7e36: "zhi2", // 縶
+ 0x7e37: "lv3", // 縷
+ 0x7e38: "mu4", // 縸
+ 0x7e39: "piao3", // 縹
+ 0x7e3a: "lian2", // 縺
+ 0x7e3b: "mi2", // 縻
+ 0x7e3c: "xuan4", // 縼
+ 0x7e3d: "zong3", // 總
+ 0x7e3e: "ji1", // 績
+ 0x7e3f: "shan1", // 縿
+ 0x7e40: "sui4", // 繀
+ 0x7e41: "fan2", // 繁
+ 0x7e42: "lv4", // 繂
+ 0x7e43: "beng3", // 繃
+ 0x7e44: "yi1", // 繄
+ 0x7e45: "sao1", // 繅
+ 0x7e46: "mou2", // 繆
+ 0x7e47: "yao2", // 繇
+ 0x7e48: "qiang3", // 繈
+ 0x7e49: "hun2", // 繉
+ 0x7e4a: "xian1", // 繊
+ 0x7e4b: "ji4", // 繋
+ 0x7e4c: "sha5", // 繌
+ 0x7e4d: "xiu4", // 繍
+ 0x7e4e: "ran2", // 繎
+ 0x7e4f: "xuan4", // 繏
+ 0x7e50: "sui4", // 繐
+ 0x7e51: "qiao1", // 繑
+ 0x7e52: "zeng1", // 繒
+ 0x7e53: "zuo3", // 繓
+ 0x7e54: "zhi1", // 織
+ 0x7e55: "shan4", // 繕
+ 0x7e56: "san3", // 繖
+ 0x7e57: "lin2", // 繗
+ 0x7e58: "yu4", // 繘
+ 0x7e59: "fan1", // 繙
+ 0x7e5a: "liao2", // 繚
+ 0x7e5b: "chuo4", // 繛
+ 0x7e5c: "zun1", // 繜
+ 0x7e5d: "jian4", // 繝
+ 0x7e5e: "rao4", // 繞
+ 0x7e5f: "chan3", // 繟
+ 0x7e60: "rui3", // 繠
+ 0x7e61: "xiu4", // 繡
+ 0x7e62: "hui4", // 繢
+ 0x7e63: "hua4", // 繣
+ 0x7e64: "zuan3", // 繤
+ 0x7e65: "xi1", // 繥
+ 0x7e66: "qiang3", // 繦
+ 0x7e67: "yun5", // 繧
+ 0x7e68: "da5", // 繨
+ 0x7e69: "sheng2", // 繩
+ 0x7e6a: "hui4", // 繪
+ 0x7e6b: "xi4", // 繫
+ 0x7e6c: "se4", // 繬
+ 0x7e6d: "jian3", // 繭
+ 0x7e6e: "jiang1", // 繮
+ 0x7e6f: "huan2", // 繯
+ 0x7e70: "zao3", // 繰
+ 0x7e71: "cong1", // 繱
+ 0x7e72: "xie4", // 繲
+ 0x7e73: "jiao3", // 繳
+ 0x7e74: "bi4", // 繴
+ 0x7e75: "dan4", // 繵
+ 0x7e76: "yi4", // 繶
+ 0x7e77: "nong3", // 繷
+ 0x7e78: "sui4", // 繸
+ 0x7e79: "yi4", // 繹
+ 0x7e7a: "shai3", // 繺
+ 0x7e7b: "xu1", // 繻
+ 0x7e7c: "ji4", // 繼
+ 0x7e7d: "bin1", // 繽
+ 0x7e7e: "qian3", // 繾
+ 0x7e7f: "lan2", // 繿
+ 0x7e80: "pu2", // 纀
+ 0x7e81: "xun1", // 纁
+ 0x7e82: "zuan3", // 纂
+ 0x7e83: "qi2", // 纃
+ 0x7e84: "peng2", // 纄
+ 0x7e85: "yao4", // 纅
+ 0x7e86: "mo4", // 纆
+ 0x7e87: "lei4", // 纇
+ 0x7e88: "xie2", // 纈
+ 0x7e89: "zuan3", // 纉
+ 0x7e8a: "kuang4", // 纊
+ 0x7e8b: "you1", // 纋
+ 0x7e8c: "xu4", // 續
+ 0x7e8d: "lei2", // 纍
+ 0x7e8e: "xian1", // 纎
+ 0x7e8f: "chan2", // 纏
+ 0x7e90: "jiao3", // 纐
+ 0x7e91: "lu2", // 纑
+ 0x7e92: "chan2", // 纒
+ 0x7e93: "ying1", // 纓
+ 0x7e94: "cai2", // 纔
+ 0x7e95: "rang3", // 纕
+ 0x7e96: "xian1", // 纖
+ 0x7e97: "zui1", // 纗
+ 0x7e98: "zuan3", // 纘
+ 0x7e99: "luo4", // 纙
+ 0x7e9a: "li2", // 纚
+ 0x7e9b: "dao4", // 纛
+ 0x7e9c: "lan3", // 纜
+ 0x7e9d: "lei2", // 纝
+ 0x7e9e: "lian4", // 纞
+ 0x7e9f: "si1", // 纟
+ 0x7ea0: "jiu1", // 纠
+ 0x7ea1: "yu1", // 纡
+ 0x7ea2: "hong2", // 红
+ 0x7ea3: "zhou4", // 纣
+ 0x7ea4: "xian1", // 纤
+ 0x7ea5: "ge1", // 纥
+ 0x7ea6: "yue1", // 约
+ 0x7ea7: "ji2", // 级
+ 0x7ea8: "wan2", // 纨
+ 0x7ea9: "kuang4", // 纩
+ 0x7eaa: "ji4", // 纪
+ 0x7eab: "ren4", // 纫
+ 0x7eac: "wei3", // 纬
+ 0x7ead: "yun2", // 纭
+ 0x7eae: "hong2", // 纮
+ 0x7eaf: "chun2", // 纯
+ 0x7eb0: "pi1", // 纰
+ 0x7eb1: "sha1", // 纱
+ 0x7eb2: "gang1", // 纲
+ 0x7eb3: "na4", // 纳
+ 0x7eb4: "ren4", // 纴
+ 0x7eb5: "zong4", // 纵
+ 0x7eb6: "lun2", // 纶
+ 0x7eb7: "fen1", // 纷
+ 0x7eb8: "zhi3", // 纸
+ 0x7eb9: "wen2", // 纹
+ 0x7eba: "fang3", // 纺
+ 0x7ebb: "zhu4", // 纻
+ 0x7ebc: "zhen4", // 纼
+ 0x7ebd: "niu3", // 纽
+ 0x7ebe: "shu1", // 纾
+ 0x7ebf: "xian4", // 线
+ 0x7ec0: "gan4", // 绀
+ 0x7ec1: "xie4", // 绁
+ 0x7ec2: "fu2", // 绂
+ 0x7ec3: "lian4", // 练
+ 0x7ec4: "zu3", // 组
+ 0x7ec5: "shen1", // 绅
+ 0x7ec6: "xi4", // 细
+ 0x7ec7: "zhi1", // 织
+ 0x7ec8: "zhong1", // 终
+ 0x7ec9: "zhou4", // 绉
+ 0x7eca: "ban4", // 绊
+ 0x7ecb: "fu2", // 绋
+ 0x7ecc: "chu4", // 绌
+ 0x7ecd: "shao4", // 绍
+ 0x7ece: "yi4", // 绎
+ 0x7ecf: "jing1", // 经
+ 0x7ed0: "dai4", // 绐
+ 0x7ed1: "bang3", // 绑
+ 0x7ed2: "rong2", // 绒
+ 0x7ed3: "jie2", // 结
+ 0x7ed4: "ku4", // 绔
+ 0x7ed5: "rao4", // 绕
+ 0x7ed6: "die2", // 绖
+ 0x7ed7: "hang2", // 绗
+ 0x7ed8: "hui4", // 绘
+ 0x7ed9: "gei3", // 给
+ 0x7eda: "xuan4", // 绚
+ 0x7edb: "jiang4", // 绛
+ 0x7edc: "luo4", // 络
+ 0x7edd: "jue2", // 绝
+ 0x7ede: "jiao3", // 绞
+ 0x7edf: "tong3", // 统
+ 0x7ee0: "geng3", // 绠
+ 0x7ee1: "xiao1", // 绡
+ 0x7ee2: "juan4", // 绢
+ 0x7ee3: "xiu4", // 绣
+ 0x7ee4: "xi4", // 绤
+ 0x7ee5: "sui2", // 绥
+ 0x7ee6: "tao1", // 绦
+ 0x7ee7: "ji4", // 继
+ 0x7ee8: "ti2", // 绨
+ 0x7ee9: "ji1", // 绩
+ 0x7eea: "xu4", // 绪
+ 0x7eeb: "ling2", // 绫
+ 0x7eec: "ying1", // 绬
+ 0x7eed: "xu4", // 续
+ 0x7eee: "qi3", // 绮
+ 0x7eef: "fei1", // 绯
+ 0x7ef0: "chuo4", // 绰
+ 0x7ef1: "shang4", // 绱
+ 0x7ef2: "gun3", // 绲
+ 0x7ef3: "sheng2", // 绳
+ 0x7ef4: "wei2", // 维
+ 0x7ef5: "mian2", // 绵
+ 0x7ef6: "shou4", // 绶
+ 0x7ef7: "beng1", // 绷
+ 0x7ef8: "chou2", // 绸
+ 0x7ef9: "tao2", // 绹
+ 0x7efa: "liu3", // 绺
+ 0x7efb: "quan3", // 绻
+ 0x7efc: "zong1", // 综
+ 0x7efd: "zhan4", // 绽
+ 0x7efe: "wan3", // 绾
+ 0x7eff: "lv4", // 绿
+ 0x7f00: "zhui4", // 缀
+ 0x7f01: "zi1", // 缁
+ 0x7f02: "ke4", // 缂
+ 0x7f03: "xiang1", // 缃
+ 0x7f04: "jian1", // 缄
+ 0x7f05: "mian3", // 缅
+ 0x7f06: "lan3", // 缆
+ 0x7f07: "ti2", // 缇
+ 0x7f08: "miao3", // 缈
+ 0x7f09: "ji1", // 缉
+ 0x7f0a: "yun1", // 缊
+ 0x7f0b: "hui4", // 缋
+ 0x7f0c: "si1", // 缌
+ 0x7f0d: "duo3", // 缍
+ 0x7f0e: "duan4", // 缎
+ 0x7f0f: "bian4", // 缏
+ 0x7f10: "xian4", // 缐
+ 0x7f11: "gou1", // 缑
+ 0x7f12: "zhui4", // 缒
+ 0x7f13: "huan3", // 缓
+ 0x7f14: "di4", // 缔
+ 0x7f15: "lv3", // 缕
+ 0x7f16: "bian1", // 编
+ 0x7f17: "min2", // 缗
+ 0x7f18: "yuan2", // 缘
+ 0x7f19: "jin4", // 缙
+ 0x7f1a: "fu4", // 缚
+ 0x7f1b: "ru4", // 缛
+ 0x7f1c: "zhen3", // 缜
+ 0x7f1d: "feng4", // 缝
+ 0x7f1e: "cui1", // 缞
+ 0x7f1f: "gao3", // 缟
+ 0x7f20: "chan2", // 缠
+ 0x7f21: "li2", // 缡
+ 0x7f22: "yi4", // 缢
+ 0x7f23: "jian1", // 缣
+ 0x7f24: "bin1", // 缤
+ 0x7f25: "piao1", // 缥
+ 0x7f26: "man4", // 缦
+ 0x7f27: "lei2", // 缧
+ 0x7f28: "ying1", // 缨
+ 0x7f29: "suo1", // 缩
+ 0x7f2a: "mou2", // 缪
+ 0x7f2b: "sao1", // 缫
+ 0x7f2c: "xie2", // 缬
+ 0x7f2d: "liao2", // 缭
+ 0x7f2e: "shan4", // 缮
+ 0x7f2f: "zeng1", // 缯
+ 0x7f30: "jiang1", // 缰
+ 0x7f31: "qian3", // 缱
+ 0x7f32: "qiao1", // 缲
+ 0x7f33: "huan2", // 缳
+ 0x7f34: "jiao3", // 缴
+ 0x7f35: "zuan3", // 缵
+ 0x7f36: "fou3", // 缶
+ 0x7f37: "xie4", // 缷
+ 0x7f38: "gang1", // 缸
+ 0x7f39: "fou3", // 缹
+ 0x7f3a: "que1", // 缺
+ 0x7f3b: "fou3", // 缻
+ 0x7f3c: "qi5", // 缼
+ 0x7f3d: "bo1", // 缽
+ 0x7f3e: "ping2", // 缾
+ 0x7f3f: "xiang4", // 缿
+ 0x7f40: "zhao5", // 罀
+ 0x7f41: "gang1", // 罁
+ 0x7f42: "ying1", // 罂
+ 0x7f43: "ying1", // 罃
+ 0x7f44: "qing4", // 罄
+ 0x7f45: "xia4", // 罅
+ 0x7f46: "guan4", // 罆
+ 0x7f47: "zun1", // 罇
+ 0x7f48: "tan2", // 罈
+ 0x7f49: "cheng1", // 罉
+ 0x7f4a: "qi4", // 罊
+ 0x7f4b: "weng4", // 罋
+ 0x7f4c: "ying1", // 罌
+ 0x7f4d: "lei2", // 罍
+ 0x7f4e: "tan2", // 罎
+ 0x7f4f: "lu2", // 罏
+ 0x7f50: "guan4", // 罐
+ 0x7f51: "wang3", // 网
+ 0x7f52: "wang3", // 罒
+ 0x7f53: "gang1", // 罓
+ 0x7f54: "wang3", // 罔
+ 0x7f55: "han3", // 罕
+ 0x7f56: "luo2", // 罖
+ 0x7f57: "luo1", // 罗
+ 0x7f58: "fu2", // 罘
+ 0x7f59: "shen1", // 罙
+ 0x7f5a: "fa2", // 罚
+ 0x7f5b: "gu1", // 罛
+ 0x7f5c: "zhu3", // 罜
+ 0x7f5d: "ju1", // 罝
+ 0x7f5e: "mao2", // 罞
+ 0x7f5f: "gu3", // 罟
+ 0x7f60: "min2", // 罠
+ 0x7f61: "gang1", // 罡
+ 0x7f62: "ba4", // 罢
+ 0x7f63: "gua4", // 罣
+ 0x7f64: "ti2", // 罤
+ 0x7f65: "juan4", // 罥
+ 0x7f66: "fu2", // 罦
+ 0x7f67: "shen4", // 罧
+ 0x7f68: "yan3", // 罨
+ 0x7f69: "zhao4", // 罩
+ 0x7f6a: "zui4", // 罪
+ 0x7f6b: "gua4", // 罫
+ 0x7f6c: "zhuo2", // 罬
+ 0x7f6d: "yu4", // 罭
+ 0x7f6e: "zhi4", // 置
+ 0x7f6f: "an3", // 罯
+ 0x7f70: "fa2", // 罰
+ 0x7f71: "lan3", // 罱
+ 0x7f72: "shu3", // 署
+ 0x7f73: "si1", // 罳
+ 0x7f74: "pi2", // 罴
+ 0x7f75: "ma4", // 罵
+ 0x7f76: "liu3", // 罶
+ 0x7f77: "ba4", // 罷
+ 0x7f78: "fa2", // 罸
+ 0x7f79: "li2", // 罹
+ 0x7f7a: "chao2", // 罺
+ 0x7f7b: "wei4", // 罻
+ 0x7f7c: "bi4", // 罼
+ 0x7f7d: "ji4", // 罽
+ 0x7f7e: "zeng1", // 罾
+ 0x7f7f: "chong1", // 罿
+ 0x7f80: "liu3", // 羀
+ 0x7f81: "ji1", // 羁
+ 0x7f82: "juan4", // 羂
+ 0x7f83: "mi4", // 羃
+ 0x7f84: "zhao4", // 羄
+ 0x7f85: "luo2", // 羅
+ 0x7f86: "pi2", // 羆
+ 0x7f87: "ji1", // 羇
+ 0x7f88: "ji1", // 羈
+ 0x7f89: "luan2", // 羉
+ 0x7f8a: "yang2", // 羊
+ 0x7f8b: "mi3", // 羋
+ 0x7f8c: "qiang1", // 羌
+ 0x7f8d: "da2", // 羍
+ 0x7f8e: "mei3", // 美
+ 0x7f8f: "yang2", // 羏
+ 0x7f90: "you3", // 羐
+ 0x7f91: "you3", // 羑
+ 0x7f92: "fen2", // 羒
+ 0x7f93: "ba1", // 羓
+ 0x7f94: "gao1", // 羔
+ 0x7f95: "yang4", // 羕
+ 0x7f96: "gu3", // 羖
+ 0x7f97: "qiang1", // 羗
+ 0x7f98: "zang1", // 羘
+ 0x7f99: "gao1", // 羙
+ 0x7f9a: "ling2", // 羚
+ 0x7f9b: "yi4", // 羛
+ 0x7f9c: "zhu4", // 羜
+ 0x7f9d: "di1", // 羝
+ 0x7f9e: "xiu1", // 羞
+ 0x7f9f: "qiang3", // 羟
+ 0x7fa0: "yi2", // 羠
+ 0x7fa1: "xian4", // 羡
+ 0x7fa2: "rong2", // 羢
+ 0x7fa3: "qun2", // 羣
+ 0x7fa4: "qun2", // 群
+ 0x7fa5: "qiang3", // 羥
+ 0x7fa6: "huan2", // 羦
+ 0x7fa7: "suo1", // 羧
+ 0x7fa8: "xian4", // 羨
+ 0x7fa9: "yi4", // 義
+ 0x7faa: "yang5", // 羪
+ 0x7fab: "qiang1", // 羫
+ 0x7fac: "qian2", // 羬
+ 0x7fad: "yu2", // 羭
+ 0x7fae: "geng1", // 羮
+ 0x7faf: "jie2", // 羯
+ 0x7fb0: "tang1", // 羰
+ 0x7fb1: "yuan2", // 羱
+ 0x7fb2: "xi1", // 羲
+ 0x7fb3: "fan2", // 羳
+ 0x7fb4: "shan1", // 羴
+ 0x7fb5: "fen2", // 羵
+ 0x7fb6: "shan1", // 羶
+ 0x7fb7: "lian3", // 羷
+ 0x7fb8: "lei2", // 羸
+ 0x7fb9: "geng1", // 羹
+ 0x7fba: "nou2", // 羺
+ 0x7fbb: "qiang4", // 羻
+ 0x7fbc: "chan4", // 羼
+ 0x7fbd: "yu3", // 羽
+ 0x7fbe: "gong4", // 羾
+ 0x7fbf: "yi4", // 羿
+ 0x7fc0: "chong1", // 翀
+ 0x7fc1: "weng1", // 翁
+ 0x7fc2: "fen1", // 翂
+ 0x7fc3: "hong2", // 翃
+ 0x7fc4: "chi4", // 翄
+ 0x7fc5: "chi4", // 翅
+ 0x7fc6: "cui4", // 翆
+ 0x7fc7: "fu2", // 翇
+ 0x7fc8: "xia2", // 翈
+ 0x7fc9: "ben3", // 翉
+ 0x7fca: "yi4", // 翊
+ 0x7fcb: "la1", // 翋
+ 0x7fcc: "yi4", // 翌
+ 0x7fcd: "pi1", // 翍
+ 0x7fce: "ling2", // 翎
+ 0x7fcf: "liu4", // 翏
+ 0x7fd0: "zhi4", // 翐
+ 0x7fd1: "qu2", // 翑
+ 0x7fd2: "xi2", // 習
+ 0x7fd3: "xie2", // 翓
+ 0x7fd4: "xiang2", // 翔
+ 0x7fd5: "xi1", // 翕
+ 0x7fd6: "xi1", // 翖
+ 0x7fd7: "ke2", // 翗
+ 0x7fd8: "qiao4", // 翘
+ 0x7fd9: "hui4", // 翙
+ 0x7fda: "hui1", // 翚
+ 0x7fdb: "xiao1", // 翛
+ 0x7fdc: "sha4", // 翜
+ 0x7fdd: "hong2", // 翝
+ 0x7fde: "jiang1", // 翞
+ 0x7fdf: "di2", // 翟
+ 0x7fe0: "cui4", // 翠
+ 0x7fe1: "fei3", // 翡
+ 0x7fe2: "dao4", // 翢
+ 0x7fe3: "sha4", // 翣
+ 0x7fe4: "chi4", // 翤
+ 0x7fe5: "zhu4", // 翥
+ 0x7fe6: "jian3", // 翦
+ 0x7fe7: "xuan1", // 翧
+ 0x7fe8: "chi4", // 翨
+ 0x7fe9: "pian1", // 翩
+ 0x7fea: "zong1", // 翪
+ 0x7feb: "wan2", // 翫
+ 0x7fec: "hui1", // 翬
+ 0x7fed: "hou2", // 翭
+ 0x7fee: "he2", // 翮
+ 0x7fef: "he4", // 翯
+ 0x7ff0: "han4", // 翰
+ 0x7ff1: "ao2", // 翱
+ 0x7ff2: "piao1", // 翲
+ 0x7ff3: "yi4", // 翳
+ 0x7ff4: "lian2", // 翴
+ 0x7ff5: "hou2", // 翵
+ 0x7ff6: "ao2", // 翶
+ 0x7ff7: "lin2", // 翷
+ 0x7ff8: "pen3", // 翸
+ 0x7ff9: "qiao4", // 翹
+ 0x7ffa: "ao2", // 翺
+ 0x7ffb: "fan1", // 翻
+ 0x7ffc: "yi4", // 翼
+ 0x7ffd: "hui4", // 翽
+ 0x7ffe: "xuan1", // 翾
+ 0x7fff: "dao4", // 翿
+ 0x8000: "yao4", // 耀
+ 0x8001: "lao3", // 老
+ 0x8002: "lao3", // 耂
+ 0x8003: "kao3", // 考
+ 0x8004: "mao4", // 耄
+ 0x8005: "zhe3", // 者
+ 0x8006: "qi2", // 耆
+ 0x8007: "gou3", // 耇
+ 0x8008: "gou3", // 耈
+ 0x8009: "gou3", // 耉
+ 0x800a: "die2", // 耊
+ 0x800b: "die2", // 耋
+ 0x800c: "er2", // 而
+ 0x800d: "shua3", // 耍
+ 0x800e: "ruan3", // 耎
+ 0x800f: "nai4", // 耏
+ 0x8010: "nai4", // 耐
+ 0x8011: "duan1", // 耑
+ 0x8012: "lei3", // 耒
+ 0x8013: "ting1", // 耓
+ 0x8014: "zi3", // 耔
+ 0x8015: "geng1", // 耕
+ 0x8016: "chao4", // 耖
+ 0x8017: "hao4", // 耗
+ 0x8018: "yun2", // 耘
+ 0x8019: "ba4", // 耙
+ 0x801a: "pi1", // 耚
+ 0x801b: "yi2", // 耛
+ 0x801c: "si4", // 耜
+ 0x801d: "qu4", // 耝
+ 0x801e: "jia1", // 耞
+ 0x801f: "ju4", // 耟
+ 0x8020: "huo1", // 耠
+ 0x8021: "chu2", // 耡
+ 0x8022: "lao4", // 耢
+ 0x8023: "lun3", // 耣
+ 0x8024: "ji2", // 耤
+ 0x8025: "tang1", // 耥
+ 0x8026: "ou3", // 耦
+ 0x8027: "lou2", // 耧
+ 0x8028: "nou4", // 耨
+ 0x8029: "jiang3", // 耩
+ 0x802a: "pang3", // 耪
+ 0x802b: "zha2", // 耫
+ 0x802c: "lou2", // 耬
+ 0x802d: "ji1", // 耭
+ 0x802e: "lao4", // 耮
+ 0x802f: "huo4", // 耯
+ 0x8030: "you1", // 耰
+ 0x8031: "mo4", // 耱
+ 0x8032: "huai2", // 耲
+ 0x8033: "er3", // 耳
+ 0x8034: "yi4", // 耴
+ 0x8035: "ding1", // 耵
+ 0x8036: "ye2", // 耶
+ 0x8037: "da1", // 耷
+ 0x8038: "song3", // 耸
+ 0x8039: "qin2", // 耹
+ 0x803a: "yun2", // 耺
+ 0x803b: "chi3", // 耻
+ 0x803c: "dan1", // 耼
+ 0x803d: "dan1", // 耽
+ 0x803e: "hong2", // 耾
+ 0x803f: "geng3", // 耿
+ 0x8040: "zhi2", // 聀
+ 0x8041: "pan4", // 聁
+ 0x8042: "nie4", // 聂
+ 0x8043: "dan1", // 聃
+ 0x8044: "zhen3", // 聄
+ 0x8045: "che4", // 聅
+ 0x8046: "ling2", // 聆
+ 0x8047: "zheng1", // 聇
+ 0x8048: "you3", // 聈
+ 0x8049: "wa4", // 聉
+ 0x804a: "liao2", // 聊
+ 0x804b: "long2", // 聋
+ 0x804c: "zhi2", // 职
+ 0x804d: "ning2", // 聍
+ 0x804e: "tiao1", // 聎
+ 0x804f: "er2", // 聏
+ 0x8050: "ya4", // 聐
+ 0x8051: "tie1", // 聑
+ 0x8052: "gua1", // 聒
+ 0x8053: "xu4", // 聓
+ 0x8054: "lian2", // 联
+ 0x8055: "hao4", // 聕
+ 0x8056: "sheng4", // 聖
+ 0x8057: "lie4", // 聗
+ 0x8058: "pin4", // 聘
+ 0x8059: "jing1", // 聙
+ 0x805a: "ju4", // 聚
+ 0x805b: "bi3", // 聛
+ 0x805c: "di3", // 聜
+ 0x805d: "guo2", // 聝
+ 0x805e: "wen2", // 聞
+ 0x805f: "xu4", // 聟
+ 0x8060: "ping1", // 聠
+ 0x8061: "cong1", // 聡
+ 0x8062: "ding4", // 聢
+ 0x8063: "ni2", // 聣
+ 0x8064: "ting2", // 聤
+ 0x8065: "ju3", // 聥
+ 0x8066: "cong1", // 聦
+ 0x8067: "kui1", // 聧
+ 0x8068: "lian2", // 聨
+ 0x8069: "kui4", // 聩
+ 0x806a: "cong1", // 聪
+ 0x806b: "lian2", // 聫
+ 0x806c: "weng3", // 聬
+ 0x806d: "kui4", // 聭
+ 0x806e: "lian2", // 聮
+ 0x806f: "lian2", // 聯
+ 0x8070: "cong1", // 聰
+ 0x8071: "ao2", // 聱
+ 0x8072: "sheng1", // 聲
+ 0x8073: "song3", // 聳
+ 0x8074: "ting1", // 聴
+ 0x8075: "kui4", // 聵
+ 0x8076: "nie4", // 聶
+ 0x8077: "zhi2", // 職
+ 0x8078: "dan1", // 聸
+ 0x8079: "ning2", // 聹
+ 0x807a: "qie2", // 聺
+ 0x807b: "ni3", // 聻
+ 0x807c: "ting1", // 聼
+ 0x807d: "ting1", // 聽
+ 0x807e: "long2", // 聾
+ 0x807f: "yu4", // 聿
+ 0x8080: "yu4", // 肀
+ 0x8081: "zhao4", // 肁
+ 0x8082: "si4", // 肂
+ 0x8083: "su4", // 肃
+ 0x8084: "yi4", // 肄
+ 0x8085: "su4", // 肅
+ 0x8086: "si4", // 肆
+ 0x8087: "zhao4", // 肇
+ 0x8088: "zhao4", // 肈
+ 0x8089: "rou4", // 肉
+ 0x808a: "yi4", // 肊
+ 0x808b: "le1", // 肋
+ 0x808c: "ji1", // 肌
+ 0x808d: "qiu2", // 肍
+ 0x808e: "ken3", // 肎
+ 0x808f: "cao4", // 肏
+ 0x8090: "ge1", // 肐
+ 0x8091: "bo2", // 肑
+ 0x8092: "huan4", // 肒
+ 0x8093: "huang1", // 肓
+ 0x8094: "chi3", // 肔
+ 0x8095: "ren4", // 肕
+ 0x8096: "xiao4", // 肖
+ 0x8097: "ru3", // 肗
+ 0x8098: "zhou3", // 肘
+ 0x8099: "yuan4", // 肙
+ 0x809a: "du4", // 肚
+ 0x809b: "gang1", // 肛
+ 0x809c: "rong2", // 肜
+ 0x809d: "gan1", // 肝
+ 0x809e: "cha1", // 肞
+ 0x809f: "wo4", // 肟
+ 0x80a0: "chang2", // 肠
+ 0x80a1: "gu3", // 股
+ 0x80a2: "zhi1", // 肢
+ 0x80a3: "han2", // 肣
+ 0x80a4: "fu1", // 肤
+ 0x80a5: "fei2", // 肥
+ 0x80a6: "fen2", // 肦
+ 0x80a7: "pei1", // 肧
+ 0x80a8: "pang4", // 肨
+ 0x80a9: "jian1", // 肩
+ 0x80aa: "fang2", // 肪
+ 0x80ab: "zhun1", // 肫
+ 0x80ac: "you2", // 肬
+ 0x80ad: "na4", // 肭
+ 0x80ae: "ang1", // 肮
+ 0x80af: "ken3", // 肯
+ 0x80b0: "ran2", // 肰
+ 0x80b1: "gong1", // 肱
+ 0x80b2: "yu4", // 育
+ 0x80b3: "wen3", // 肳
+ 0x80b4: "yao2", // 肴
+ 0x80b5: "qi2", // 肵
+ 0x80b6: "pi2", // 肶
+ 0x80b7: "qian3", // 肷
+ 0x80b8: "xi1", // 肸
+ 0x80b9: "xi1", // 肹
+ 0x80ba: "fei4", // 肺
+ 0x80bb: "ken3", // 肻
+ 0x80bc: "jing3", // 肼
+ 0x80bd: "tai4", // 肽
+ 0x80be: "shen4", // 肾
+ 0x80bf: "zhong3", // 肿
+ 0x80c0: "zhang4", // 胀
+ 0x80c1: "xie2", // 胁
+ 0x80c2: "shen4", // 胂
+ 0x80c3: "wei4", // 胃
+ 0x80c4: "zhou4", // 胄
+ 0x80c5: "die2", // 胅
+ 0x80c6: "dan3", // 胆
+ 0x80c7: "fei4", // 胇
+ 0x80c8: "ba2", // 胈
+ 0x80c9: "bo2", // 胉
+ 0x80ca: "qu2", // 胊
+ 0x80cb: "tian2", // 胋
+ 0x80cc: "bei4", // 背
+ 0x80cd: "gua1", // 胍
+ 0x80ce: "tai1", // 胎
+ 0x80cf: "zi3", // 胏
+ 0x80d0: "fei3", // 胐
+ 0x80d1: "zhi1", // 胑
+ 0x80d2: "ni4", // 胒
+ 0x80d3: "ping2", // 胓
+ 0x80d4: "zi4", // 胔
+ 0x80d5: "fu3", // 胕
+ 0x80d6: "pang4", // 胖
+ 0x80d7: "zhen1", // 胗
+ 0x80d8: "xian2", // 胘
+ 0x80d9: "zuo4", // 胙
+ 0x80da: "pei1", // 胚
+ 0x80db: "jia3", // 胛
+ 0x80dc: "sheng4", // 胜
+ 0x80dd: "zhi1", // 胝
+ 0x80de: "bao1", // 胞
+ 0x80df: "mu3", // 胟
+ 0x80e0: "qu1", // 胠
+ 0x80e1: "hu2", // 胡
+ 0x80e2: "ke1", // 胢
+ 0x80e3: "chi3", // 胣
+ 0x80e4: "yin4", // 胤
+ 0x80e5: "xu1", // 胥
+ 0x80e6: "yang1", // 胦
+ 0x80e7: "long2", // 胧
+ 0x80e8: "dong4", // 胨
+ 0x80e9: "ka3", // 胩
+ 0x80ea: "lu2", // 胪
+ 0x80eb: "jing4", // 胫
+ 0x80ec: "nu3", // 胬
+ 0x80ed: "yan1", // 胭
+ 0x80ee: "pang1", // 胮
+ 0x80ef: "kua4", // 胯
+ 0x80f0: "yi2", // 胰
+ 0x80f1: "guang1", // 胱
+ 0x80f2: "hai3", // 胲
+ 0x80f3: "ge1", // 胳
+ 0x80f4: "dong4", // 胴
+ 0x80f5: "chi1", // 胵
+ 0x80f6: "jiao1", // 胶
+ 0x80f7: "xiong1", // 胷
+ 0x80f8: "xiong1", // 胸
+ 0x80f9: "er2", // 胹
+ 0x80fa: "an4", // 胺
+ 0x80fb: "heng2", // 胻
+ 0x80fc: "pian2", // 胼
+ 0x80fd: "neng2", // 能
+ 0x80fe: "zi4", // 胾
+ 0x80ff: "gui1", // 胿
+ 0x8100: "cheng2", // 脀
+ 0x8101: "tiao3", // 脁
+ 0x8102: "zhi1", // 脂
+ 0x8103: "cui4", // 脃
+ 0x8104: "mei2", // 脄
+ 0x8105: "xie2", // 脅
+ 0x8106: "cui4", // 脆
+ 0x8107: "xie2", // 脇
+ 0x8108: "mai4", // 脈
+ 0x8109: "mai4", // 脉
+ 0x810a: "ji2", // 脊
+ 0x810b: "xie2", // 脋
+ 0x810c: "nin5", // 脌
+ 0x810d: "kuai4", // 脍
+ 0x810e: "sa4", // 脎
+ 0x810f: "zang4", // 脏
+ 0x8110: "qi2", // 脐
+ 0x8111: "nao3", // 脑
+ 0x8112: "mi3", // 脒
+ 0x8113: "nong2", // 脓
+ 0x8114: "luan2", // 脔
+ 0x8115: "wan4", // 脕
+ 0x8116: "bo2", // 脖
+ 0x8117: "wen3", // 脗
+ 0x8118: "wan3", // 脘
+ 0x8119: "xiu1", // 脙
+ 0x811a: "jiao3", // 脚
+ 0x811b: "jing4", // 脛
+ 0x811c: "you3", // 脜
+ 0x811d: "heng1", // 脝
+ 0x811e: "cuo3", // 脞
+ 0x811f: "lie4", // 脟
+ 0x8120: "shan1", // 脠
+ 0x8121: "ting3", // 脡
+ 0x8122: "mei2", // 脢
+ 0x8123: "chun2", // 脣
+ 0x8124: "shen4", // 脤
+ 0x8125: "qian3", // 脥
+ 0x8126: "de5", // 脦
+ 0x8127: "juan1", // 脧
+ 0x8128: "cu4", // 脨
+ 0x8129: "xiu1", // 脩
+ 0x812a: "xin4", // 脪
+ 0x812b: "tuo1", // 脫
+ 0x812c: "pao1", // 脬
+ 0x812d: "cheng2", // 脭
+ 0x812e: "nei3", // 脮
+ 0x812f: "pu2", // 脯
+ 0x8130: "dou4", // 脰
+ 0x8131: "tuo1", // 脱
+ 0x8132: "niao4", // 脲
+ 0x8133: "nao3", // 脳
+ 0x8134: "pi3", // 脴
+ 0x8135: "gu3", // 脵
+ 0x8136: "luo2", // 脶
+ 0x8137: "li4", // 脷
+ 0x8138: "lian3", // 脸
+ 0x8139: "zhang4", // 脹
+ 0x813a: "cui4", // 脺
+ 0x813b: "jie1", // 脻
+ 0x813c: "liang3", // 脼
+ 0x813d: "shui2", // 脽
+ 0x813e: "pi2", // 脾
+ 0x813f: "biao1", // 脿
+ 0x8140: "lun2", // 腀
+ 0x8141: "pian2", // 腁
+ 0x8142: "lei3", // 腂
+ 0x8143: "kui4", // 腃
+ 0x8144: "chui2", // 腄
+ 0x8145: "dan4", // 腅
+ 0x8146: "tian3", // 腆
+ 0x8147: "nei3", // 腇
+ 0x8148: "jing1", // 腈
+ 0x8149: "nai2", // 腉
+ 0x814a: "la4", // 腊
+ 0x814b: "ye4", // 腋
+ 0x814c: "yan1", // 腌
+ 0x814d: "ren4", // 腍
+ 0x814e: "shen4", // 腎
+ 0x814f: "chuo4", // 腏
+ 0x8150: "fu3", // 腐
+ 0x8151: "fu3", // 腑
+ 0x8152: "ju1", // 腒
+ 0x8153: "fei2", // 腓
+ 0x8154: "qiang1", // 腔
+ 0x8155: "wan4", // 腕
+ 0x8156: "dong4", // 腖
+ 0x8157: "pi2", // 腗
+ 0x8158: "guo2", // 腘
+ 0x8159: "zong1", // 腙
+ 0x815a: "ding4", // 腚
+ 0x815b: "wo4", // 腛
+ 0x815c: "mei3", // 腜
+ 0x815d: "ni2", // 腝
+ 0x815e: "zhuan4", // 腞
+ 0x815f: "chi4", // 腟
+ 0x8160: "cou4", // 腠
+ 0x8161: "luo2", // 腡
+ 0x8162: "ou3", // 腢
+ 0x8163: "di4", // 腣
+ 0x8164: "an1", // 腤
+ 0x8165: "xing1", // 腥
+ 0x8166: "nao3", // 腦
+ 0x8167: "shu4", // 腧
+ 0x8168: "shuan4", // 腨
+ 0x8169: "nan3", // 腩
+ 0x816a: "yun4", // 腪
+ 0x816b: "zhong3", // 腫
+ 0x816c: "rou4", // 腬
+ 0x816d: "e4", // 腭
+ 0x816e: "sai1", // 腮
+ 0x816f: "tu2", // 腯
+ 0x8170: "yao1", // 腰
+ 0x8171: "jian4", // 腱
+ 0x8172: "wei3", // 腲
+ 0x8173: "jiao3", // 腳
+ 0x8174: "yu2", // 腴
+ 0x8175: "jia1", // 腵
+ 0x8176: "duan4", // 腶
+ 0x8177: "bi4", // 腷
+ 0x8178: "chang2", // 腸
+ 0x8179: "fu4", // 腹
+ 0x817a: "xian4", // 腺
+ 0x817b: "ni4", // 腻
+ 0x817c: "mian3", // 腼
+ 0x817d: "wa4", // 腽
+ 0x817e: "teng2", // 腾
+ 0x817f: "tui3", // 腿
+ 0x8180: "bang3", // 膀
+ 0x8181: "qian3", // 膁
+ 0x8182: "lv3", // 膂
+ 0x8183: "wa4", // 膃
+ 0x8184: "shou4", // 膄
+ 0x8185: "tang2", // 膅
+ 0x8186: "su4", // 膆
+ 0x8187: "zhui4", // 膇
+ 0x8188: "ge2", // 膈
+ 0x8189: "yi4", // 膉
+ 0x818a: "bo2", // 膊
+ 0x818b: "liao2", // 膋
+ 0x818c: "ji2", // 膌
+ 0x818d: "pi2", // 膍
+ 0x818e: "xie2", // 膎
+ 0x818f: "gao1", // 膏
+ 0x8190: "lv3", // 膐
+ 0x8191: "bin4", // 膑
+ 0x8192: "ou2", // 膒
+ 0x8193: "chang2", // 膓
+ 0x8194: "lu4", // 膔
+ 0x8195: "guo2", // 膕
+ 0x8196: "pang1", // 膖
+ 0x8197: "chuai2", // 膗
+ 0x8198: "biao1", // 膘
+ 0x8199: "jiang3", // 膙
+ 0x819a: "fu1", // 膚
+ 0x819b: "tang2", // 膛
+ 0x819c: "mo2", // 膜
+ 0x819d: "xi1", // 膝
+ 0x819e: "zhuan1", // 膞
+ 0x819f: "lv4", // 膟
+ 0x81a0: "jiao1", // 膠
+ 0x81a1: "ying4", // 膡
+ 0x81a2: "lv2", // 膢
+ 0x81a3: "zhi4", // 膣
+ 0x81a4: "xue3", // 膤
+ 0x81a5: "cun1", // 膥
+ 0x81a6: "lin4", // 膦
+ 0x81a7: "tong2", // 膧
+ 0x81a8: "peng2", // 膨
+ 0x81a9: "ni4", // 膩
+ 0x81aa: "chuai4", // 膪
+ 0x81ab: "liao2", // 膫
+ 0x81ac: "cui4", // 膬
+ 0x81ad: "gui1", // 膭
+ 0x81ae: "xiao1", // 膮
+ 0x81af: "teng1", // 膯
+ 0x81b0: "fan2", // 膰
+ 0x81b1: "zhi2", // 膱
+ 0x81b2: "jiao1", // 膲
+ 0x81b3: "shan4", // 膳
+ 0x81b4: "hu1", // 膴
+ 0x81b5: "cui4", // 膵
+ 0x81b6: "run4", // 膶
+ 0x81b7: "xiang1", // 膷
+ 0x81b8: "sui3", // 膸
+ 0x81b9: "fen4", // 膹
+ 0x81ba: "ying1", // 膺
+ 0x81bb: "shan1", // 膻
+ 0x81bc: "zhua1", // 膼
+ 0x81bd: "dan3", // 膽
+ 0x81be: "kuai4", // 膾
+ 0x81bf: "nong2", // 膿
+ 0x81c0: "tun2", // 臀
+ 0x81c1: "lian2", // 臁
+ 0x81c2: "bi4", // 臂
+ 0x81c3: "yong1", // 臃
+ 0x81c4: "jue2", // 臄
+ 0x81c5: "chu4", // 臅
+ 0x81c6: "yi4", // 臆
+ 0x81c7: "juan3", // 臇
+ 0x81c8: "la4", // 臈
+ 0x81c9: "lian3", // 臉
+ 0x81ca: "sao1", // 臊
+ 0x81cb: "tun2", // 臋
+ 0x81cc: "gu3", // 臌
+ 0x81cd: "qi2", // 臍
+ 0x81ce: "cui4", // 臎
+ 0x81cf: "bin4", // 臏
+ 0x81d0: "xun1", // 臐
+ 0x81d1: "nao4", // 臑
+ 0x81d2: "wo4", // 臒
+ 0x81d3: "zang4", // 臓
+ 0x81d4: "xian4", // 臔
+ 0x81d5: "biao1", // 臕
+ 0x81d6: "xing4", // 臖
+ 0x81d7: "kuan1", // 臗
+ 0x81d8: "la4", // 臘
+ 0x81d9: "yan1", // 臙
+ 0x81da: "lu2", // 臚
+ 0x81db: "huo4", // 臛
+ 0x81dc: "za1", // 臜
+ 0x81dd: "luo3", // 臝
+ 0x81de: "qu2", // 臞
+ 0x81df: "zang4", // 臟
+ 0x81e0: "luan2", // 臠
+ 0x81e1: "ni2", // 臡
+ 0x81e2: "za1", // 臢
+ 0x81e3: "chen2", // 臣
+ 0x81e4: "qian1", // 臤
+ 0x81e5: "wo4", // 臥
+ 0x81e6: "guang4", // 臦
+ 0x81e7: "zang1", // 臧
+ 0x81e8: "lin2", // 臨
+ 0x81e9: "guang3", // 臩
+ 0x81ea: "zi4", // 自
+ 0x81eb: "jiao3", // 臫
+ 0x81ec: "nie4", // 臬
+ 0x81ed: "chou4", // 臭
+ 0x81ee: "ji4", // 臮
+ 0x81ef: "gao1", // 臯
+ 0x81f0: "chou4", // 臰
+ 0x81f1: "mian2", // 臱
+ 0x81f2: "nie4", // 臲
+ 0x81f3: "zhi4", // 至
+ 0x81f4: "zhi4", // 致
+ 0x81f5: "ge2", // 臵
+ 0x81f6: "jian4", // 臶
+ 0x81f7: "die2", // 臷
+ 0x81f8: "zhi1", // 臸
+ 0x81f9: "xiu1", // 臹
+ 0x81fa: "tai2", // 臺
+ 0x81fb: "zhen1", // 臻
+ 0x81fc: "jiu4", // 臼
+ 0x81fd: "xian4", // 臽
+ 0x81fe: "yu2", // 臾
+ 0x81ff: "cha1", // 臿
+ 0x8200: "yao3", // 舀
+ 0x8201: "yu2", // 舁
+ 0x8202: "chong1", // 舂
+ 0x8203: "xi4", // 舃
+ 0x8204: "xi4", // 舄
+ 0x8205: "jiu4", // 舅
+ 0x8206: "yu2", // 舆
+ 0x8207: "yu3", // 與
+ 0x8208: "xing4", // 興
+ 0x8209: "ju3", // 舉
+ 0x820a: "jiu4", // 舊
+ 0x820b: "xin4", // 舋
+ 0x820c: "she2", // 舌
+ 0x820d: "she3", // 舍
+ 0x820e: "she4", // 舎
+ 0x820f: "jiu3", // 舏
+ 0x8210: "shi4", // 舐
+ 0x8211: "tan1", // 舑
+ 0x8212: "shu1", // 舒
+ 0x8213: "shi4", // 舓
+ 0x8214: "tian3", // 舔
+ 0x8215: "tan4", // 舕
+ 0x8216: "pu4", // 舖
+ 0x8217: "pu4", // 舗
+ 0x8218: "guan3", // 舘
+ 0x8219: "hua4", // 舙
+ 0x821a: "tian4", // 舚
+ 0x821b: "chuan3", // 舛
+ 0x821c: "shun4", // 舜
+ 0x821d: "xia2", // 舝
+ 0x821e: "wu3", // 舞
+ 0x821f: "zhou1", // 舟
+ 0x8220: "dao1", // 舠
+ 0x8221: "chuan2", // 舡
+ 0x8222: "shan1", // 舢
+ 0x8223: "yi3", // 舣
+ 0x8224: "fan2", // 舤
+ 0x8225: "pa1", // 舥
+ 0x8226: "tai4", // 舦
+ 0x8227: "fan2", // 舧
+ 0x8228: "ban3", // 舨
+ 0x8229: "chuan2", // 舩
+ 0x822a: "hang2", // 航
+ 0x822b: "fang3", // 舫
+ 0x822c: "ban1", // 般
+ 0x822d: "bi3", // 舭
+ 0x822e: "lu2", // 舮
+ 0x822f: "zhong1", // 舯
+ 0x8230: "jian4", // 舰
+ 0x8231: "cang1", // 舱
+ 0x8232: "ling2", // 舲
+ 0x8233: "zhu2", // 舳
+ 0x8234: "ze2", // 舴
+ 0x8235: "duo4", // 舵
+ 0x8236: "bo2", // 舶
+ 0x8237: "xian2", // 舷
+ 0x8238: "ge3", // 舸
+ 0x8239: "chuan2", // 船
+ 0x823a: "xia2", // 舺
+ 0x823b: "lu2", // 舻
+ 0x823c: "qiong2", // 舼
+ 0x823d: "pang2", // 舽
+ 0x823e: "xi1", // 舾
+ 0x823f: "kua1", // 舿
+ 0x8240: "fu2", // 艀
+ 0x8241: "zao4", // 艁
+ 0x8242: "feng2", // 艂
+ 0x8243: "li2", // 艃
+ 0x8244: "shao1", // 艄
+ 0x8245: "yu2", // 艅
+ 0x8246: "lang2", // 艆
+ 0x8247: "ting3", // 艇
+ 0x8248: "yu4", // 艈
+ 0x8249: "wei3", // 艉
+ 0x824a: "bo2", // 艊
+ 0x824b: "meng3", // 艋
+ 0x824c: "nian4", // 艌
+ 0x824d: "ju1", // 艍
+ 0x824e: "huang2", // 艎
+ 0x824f: "shou3", // 艏
+ 0x8250: "ke4", // 艐
+ 0x8251: "bian4", // 艑
+ 0x8252: "mu4", // 艒
+ 0x8253: "die2", // 艓
+ 0x8254: "dao4", // 艔
+ 0x8255: "bang4", // 艕
+ 0x8256: "cha1", // 艖
+ 0x8257: "yi4", // 艗
+ 0x8258: "sou1", // 艘
+ 0x8259: "cang1", // 艙
+ 0x825a: "cao2", // 艚
+ 0x825b: "lou2", // 艛
+ 0x825c: "dai4", // 艜
+ 0x825d: "xue3", // 艝
+ 0x825e: "yao4", // 艞
+ 0x825f: "chong1", // 艟
+ 0x8260: "deng1", // 艠
+ 0x8261: "dang1", // 艡
+ 0x8262: "qiang2", // 艢
+ 0x8263: "lu3", // 艣
+ 0x8264: "yi3", // 艤
+ 0x8265: "ji2", // 艥
+ 0x8266: "jian4", // 艦
+ 0x8267: "huo4", // 艧
+ 0x8268: "meng2", // 艨
+ 0x8269: "qi2", // 艩
+ 0x826a: "lu3", // 艪
+ 0x826b: "lu2", // 艫
+ 0x826c: "chan2", // 艬
+ 0x826d: "shuang1", // 艭
+ 0x826e: "gen3", // 艮
+ 0x826f: "liang2", // 良
+ 0x8270: "jian1", // 艰
+ 0x8271: "jian1", // 艱
+ 0x8272: "se4", // 色
+ 0x8273: "yan4", // 艳
+ 0x8274: "fu2", // 艴
+ 0x8275: "ping1", // 艵
+ 0x8276: "yan4", // 艶
+ 0x8277: "yan4", // 艷
+ 0x8278: "cao3", // 艸
+ 0x8279: "cao5", // 艹
+ 0x827a: "yi4", // 艺
+ 0x827b: "le4", // 艻
+ 0x827c: "ting1", // 艼
+ 0x827d: "jiao1", // 艽
+ 0x827e: "ai4", // 艾
+ 0x827f: "nai3", // 艿
+ 0x8280: "tiao2", // 芀
+ 0x8281: "jiao1", // 芁
+ 0x8282: "jie2", // 节
+ 0x8283: "peng2", // 芃
+ 0x8284: "wan2", // 芄
+ 0x8285: "yi4", // 芅
+ 0x8286: "chai1", // 芆
+ 0x8287: "mian2", // 芇
+ 0x8288: "mi3", // 芈
+ 0x8289: "gan1", // 芉
+ 0x828a: "qian1", // 芊
+ 0x828b: "yu4", // 芋
+ 0x828c: "yu4", // 芌
+ 0x828d: "shao2", // 芍
+ 0x828e: "qiong1", // 芎
+ 0x828f: "du4", // 芏
+ 0x8290: "hu4", // 芐
+ 0x8291: "qi3", // 芑
+ 0x8292: "mang2", // 芒
+ 0x8293: "zi4", // 芓
+ 0x8294: "hui4", // 芔
+ 0x8295: "sui1", // 芕
+ 0x8296: "zhi4", // 芖
+ 0x8297: "xiang1", // 芗
+ 0x8298: "pi2", // 芘
+ 0x8299: "fu2", // 芙
+ 0x829a: "tun2", // 芚
+ 0x829b: "wei3", // 芛
+ 0x829c: "wu2", // 芜
+ 0x829d: "zhi1", // 芝
+ 0x829e: "qi4", // 芞
+ 0x829f: "shan1", // 芟
+ 0x82a0: "wen2", // 芠
+ 0x82a1: "qian4", // 芡
+ 0x82a2: "ren2", // 芢
+ 0x82a3: "fu2", // 芣
+ 0x82a4: "kou1", // 芤
+ 0x82a5: "jie4", // 芥
+ 0x82a6: "lu2", // 芦
+ 0x82a7: "xu4", // 芧
+ 0x82a8: "ji1", // 芨
+ 0x82a9: "qin2", // 芩
+ 0x82aa: "qi2", // 芪
+ 0x82ab: "yan2", // 芫
+ 0x82ac: "fen1", // 芬
+ 0x82ad: "ba1", // 芭
+ 0x82ae: "rui4", // 芮
+ 0x82af: "xin1", // 芯
+ 0x82b0: "ji4", // 芰
+ 0x82b1: "hua1", // 花
+ 0x82b2: "hua1", // 芲
+ 0x82b3: "fang1", // 芳
+ 0x82b4: "wu4", // 芴
+ 0x82b5: "jue2", // 芵
+ 0x82b6: "gou3", // 芶
+ 0x82b7: "zhi3", // 芷
+ 0x82b8: "yun2", // 芸
+ 0x82b9: "qin2", // 芹
+ 0x82ba: "ao3", // 芺
+ 0x82bb: "chu2", // 芻
+ 0x82bc: "mao4", // 芼
+ 0x82bd: "ya2", // 芽
+ 0x82be: "fei4", // 芾
+ 0x82bf: "reng4", // 芿
+ 0x82c0: "hang2", // 苀
+ 0x82c1: "cong1", // 苁
+ 0x82c2: "yin2", // 苂
+ 0x82c3: "you3", // 苃
+ 0x82c4: "bian4", // 苄
+ 0x82c5: "yi4", // 苅
+ 0x82c6: "qie1", // 苆
+ 0x82c7: "wei3", // 苇
+ 0x82c8: "li4", // 苈
+ 0x82c9: "pi3", // 苉
+ 0x82ca: "e4", // 苊
+ 0x82cb: "xian4", // 苋
+ 0x82cc: "chang2", // 苌
+ 0x82cd: "cang1", // 苍
+ 0x82ce: "zhu4", // 苎
+ 0x82cf: "su1", // 苏
+ 0x82d0: "ti2", // 苐
+ 0x82d1: "yuan4", // 苑
+ 0x82d2: "ran3", // 苒
+ 0x82d3: "ling2", // 苓
+ 0x82d4: "tai2", // 苔
+ 0x82d5: "shao2", // 苕
+ 0x82d6: "di2", // 苖
+ 0x82d7: "miao2", // 苗
+ 0x82d8: "qing3", // 苘
+ 0x82d9: "li4", // 苙
+ 0x82da: "yong4", // 苚
+ 0x82db: "ke1", // 苛
+ 0x82dc: "mu4", // 苜
+ 0x82dd: "bei4", // 苝
+ 0x82de: "bao1", // 苞
+ 0x82df: "gou3", // 苟
+ 0x82e0: "min2", // 苠
+ 0x82e1: "yi3", // 苡
+ 0x82e2: "yi3", // 苢
+ 0x82e3: "ju4", // 苣
+ 0x82e4: "pie3", // 苤
+ 0x82e5: "ruo4", // 若
+ 0x82e6: "ku3", // 苦
+ 0x82e7: "ning2", // 苧
+ 0x82e8: "ni3", // 苨
+ 0x82e9: "bo2", // 苩
+ 0x82ea: "bing3", // 苪
+ 0x82eb: "shan1", // 苫
+ 0x82ec: "xiu2", // 苬
+ 0x82ed: "yao3", // 苭
+ 0x82ee: "xian1", // 苮
+ 0x82ef: "ben3", // 苯
+ 0x82f0: "hong2", // 苰
+ 0x82f1: "ying1", // 英
+ 0x82f2: "zha3", // 苲
+ 0x82f3: "dong1", // 苳
+ 0x82f4: "ju1", // 苴
+ 0x82f5: "die2", // 苵
+ 0x82f6: "nie2", // 苶
+ 0x82f7: "gan1", // 苷
+ 0x82f8: "hu1", // 苸
+ 0x82f9: "ping2", // 苹
+ 0x82fa: "mei2", // 苺
+ 0x82fb: "fu2", // 苻
+ 0x82fc: "sheng1", // 苼
+ 0x82fd: "gu1", // 苽
+ 0x82fe: "bi4", // 苾
+ 0x82ff: "wei4", // 苿
+ 0x8300: "fu2", // 茀
+ 0x8301: "zhuo2", // 茁
+ 0x8302: "mao4", // 茂
+ 0x8303: "fan4", // 范
+ 0x8304: "jia1", // 茄
+ 0x8305: "mao2", // 茅
+ 0x8306: "mao2", // 茆
+ 0x8307: "ba2", // 茇
+ 0x8308: "ci2", // 茈
+ 0x8309: "mo4", // 茉
+ 0x830a: "zi1", // 茊
+ 0x830b: "zhi3", // 茋
+ 0x830c: "chi2", // 茌
+ 0x830d: "ji4", // 茍
+ 0x830e: "jing1", // 茎
+ 0x830f: "long2", // 茏
+ 0x8310: "cong1", // 茐
+ 0x8311: "niao3", // 茑
+ 0x8312: "yuan2", // 茒
+ 0x8313: "xue2", // 茓
+ 0x8314: "ying2", // 茔
+ 0x8315: "qiong2", // 茕
+ 0x8316: "ge2", // 茖
+ 0x8317: "ming2", // 茗
+ 0x8318: "li4", // 茘
+ 0x8319: "rong2", // 茙
+ 0x831a: "yin4", // 茚
+ 0x831b: "gen4", // 茛
+ 0x831c: "qian4", // 茜
+ 0x831d: "chai3", // 茝
+ 0x831e: "chen2", // 茞
+ 0x831f: "yu4", // 茟
+ 0x8320: "hao1", // 茠
+ 0x8321: "zi4", // 茡
+ 0x8322: "lie4", // 茢
+ 0x8323: "wu2", // 茣
+ 0x8324: "ji4", // 茤
+ 0x8325: "gui1", // 茥
+ 0x8326: "ci4", // 茦
+ 0x8327: "jian3", // 茧
+ 0x8328: "ci2", // 茨
+ 0x8329: "gou4", // 茩
+ 0x832a: "guang1", // 茪
+ 0x832b: "mang2", // 茫
+ 0x832c: "cha2", // 茬
+ 0x832d: "jiao1", // 茭
+ 0x832e: "jiao1", // 茮
+ 0x832f: "fu2", // 茯
+ 0x8330: "yu2", // 茰
+ 0x8331: "zhu1", // 茱
+ 0x8332: "zi1", // 茲
+ 0x8333: "jiang1", // 茳
+ 0x8334: "hui2", // 茴
+ 0x8335: "yin1", // 茵
+ 0x8336: "cha2", // 茶
+ 0x8337: "fa2", // 茷
+ 0x8338: "rong1", // 茸
+ 0x8339: "ru2", // 茹
+ 0x833a: "chong1", // 茺
+ 0x833b: "mang3", // 茻
+ 0x833c: "tong2", // 茼
+ 0x833d: "zhong4", // 茽
+ 0x833e: "qian1", // 茾
+ 0x833f: "zhu2", // 茿
+ 0x8340: "xun2", // 荀
+ 0x8341: "huan2", // 荁
+ 0x8342: "fu1", // 荂
+ 0x8343: "quan2", // 荃
+ 0x8344: "gai1", // 荄
+ 0x8345: "da1", // 荅
+ 0x8346: "jing1", // 荆
+ 0x8347: "xing4", // 荇
+ 0x8348: "chuan3", // 荈
+ 0x8349: "cao3", // 草
+ 0x834a: "jing1", // 荊
+ 0x834b: "er2", // 荋
+ 0x834c: "an4", // 荌
+ 0x834d: "qiao2", // 荍
+ 0x834e: "chi2", // 荎
+ 0x834f: "ren3", // 荏
+ 0x8350: "jian4", // 荐
+ 0x8351: "ti2", // 荑
+ 0x8352: "huang1", // 荒
+ 0x8353: "ping2", // 荓
+ 0x8354: "li4", // 荔
+ 0x8355: "jin1", // 荕
+ 0x8356: "lao3", // 荖
+ 0x8357: "shu4", // 荗
+ 0x8358: "zhuang1", // 荘
+ 0x8359: "da2", // 荙
+ 0x835a: "jia2", // 荚
+ 0x835b: "rao2", // 荛
+ 0x835c: "bi4", // 荜
+ 0x835d: "ce4", // 荝
+ 0x835e: "qiao2", // 荞
+ 0x835f: "hui4", // 荟
+ 0x8360: "ji4", // 荠
+ 0x8361: "dang4", // 荡
+ 0x8362: "zi4", // 荢
+ 0x8363: "rong2", // 荣
+ 0x8364: "hun1", // 荤
+ 0x8365: "xing2", // 荥
+ 0x8366: "luo4", // 荦
+ 0x8367: "ying2", // 荧
+ 0x8368: "xun2", // 荨
+ 0x8369: "jin4", // 荩
+ 0x836a: "sun1", // 荪
+ 0x836b: "yin1", // 荫
+ 0x836c: "mai3", // 荬
+ 0x836d: "hong2", // 荭
+ 0x836e: "zhou4", // 荮
+ 0x836f: "yao4", // 药
+ 0x8370: "du4", // 荰
+ 0x8371: "wei3", // 荱
+ 0x8372: "li2", // 荲
+ 0x8373: "dou4", // 荳
+ 0x8374: "fu1", // 荴
+ 0x8375: "ren3", // 荵
+ 0x8376: "yin2", // 荶
+ 0x8377: "he2", // 荷
+ 0x8378: "bi2", // 荸
+ 0x8379: "bu4", // 荹
+ 0x837a: "yun3", // 荺
+ 0x837b: "di2", // 荻
+ 0x837c: "tu2", // 荼
+ 0x837d: "sui1", // 荽
+ 0x837e: "sui1", // 荾
+ 0x837f: "cheng2", // 荿
+ 0x8380: "chen2", // 莀
+ 0x8381: "wu2", // 莁
+ 0x8382: "bie2", // 莂
+ 0x8383: "xi1", // 莃
+ 0x8384: "geng3", // 莄
+ 0x8385: "li4", // 莅
+ 0x8386: "pu2", // 莆
+ 0x8387: "zhu4", // 莇
+ 0x8388: "mo4", // 莈
+ 0x8389: "li4", // 莉
+ 0x838a: "zhuang1", // 莊
+ 0x838b: "zuo2", // 莋
+ 0x838c: "tuo1", // 莌
+ 0x838d: "qiu2", // 莍
+ 0x838e: "sha1", // 莎
+ 0x838f: "suo1", // 莏
+ 0x8390: "chen2", // 莐
+ 0x8391: "peng2", // 莑
+ 0x8392: "ju3", // 莒
+ 0x8393: "mei2", // 莓
+ 0x8394: "meng2", // 莔
+ 0x8395: "xing4", // 莕
+ 0x8396: "jing1", // 莖
+ 0x8397: "che1", // 莗
+ 0x8398: "shen1", // 莘
+ 0x8399: "jun1", // 莙
+ 0x839a: "yan2", // 莚
+ 0x839b: "ting2", // 莛
+ 0x839c: "you2", // 莜
+ 0x839d: "cuo4", // 莝
+ 0x839e: "guan3", // 莞
+ 0x839f: "han4", // 莟
+ 0x83a0: "you3", // 莠
+ 0x83a1: "cuo4", // 莡
+ 0x83a2: "jia2", // 莢
+ 0x83a3: "wang2", // 莣
+ 0x83a4: "su4", // 莤
+ 0x83a5: "niu3", // 莥
+ 0x83a6: "shao1", // 莦
+ 0x83a7: "xian4", // 莧
+ 0x83a8: "lang4", // 莨
+ 0x83a9: "fu2", // 莩
+ 0x83aa: "e2", // 莪
+ 0x83ab: "mo4", // 莫
+ 0x83ac: "wen4", // 莬
+ 0x83ad: "jie2", // 莭
+ 0x83ae: "nan2", // 莮
+ 0x83af: "mu4", // 莯
+ 0x83b0: "kan3", // 莰
+ 0x83b1: "lai2", // 莱
+ 0x83b2: "lian2", // 莲
+ 0x83b3: "shi2", // 莳
+ 0x83b4: "wo1", // 莴
+ 0x83b5: "tu4", // 莵
+ 0x83b6: "xian1", // 莶
+ 0x83b7: "huo4", // 获
+ 0x83b8: "you2", // 莸
+ 0x83b9: "ying2", // 莹
+ 0x83ba: "ying1", // 莺
+ 0x83bb: "gong4", // 莻
+ 0x83bc: "chun2", // 莼
+ 0x83bd: "mang3", // 莽
+ 0x83be: "mang3", // 莾
+ 0x83bf: "ci4", // 莿
+ 0x83c0: "wan3", // 菀
+ 0x83c1: "jing1", // 菁
+ 0x83c2: "di4", // 菂
+ 0x83c3: "qu2", // 菃
+ 0x83c4: "dong1", // 菄
+ 0x83c5: "jian1", // 菅
+ 0x83c6: "zou1", // 菆
+ 0x83c7: "gu1", // 菇
+ 0x83c8: "la1", // 菈
+ 0x83c9: "lu4", // 菉
+ 0x83ca: "ju2", // 菊
+ 0x83cb: "wei4", // 菋
+ 0x83cc: "jun1", // 菌
+ 0x83cd: "nie4", // 菍
+ 0x83ce: "kun1", // 菎
+ 0x83cf: "he2", // 菏
+ 0x83d0: "pu2", // 菐
+ 0x83d1: "zai1", // 菑
+ 0x83d2: "gao3", // 菒
+ 0x83d3: "guo3", // 菓
+ 0x83d4: "fu2", // 菔
+ 0x83d5: "lun2", // 菕
+ 0x83d6: "chang1", // 菖
+ 0x83d7: "chou2", // 菗
+ 0x83d8: "song1", // 菘
+ 0x83d9: "chui2", // 菙
+ 0x83da: "zhan4", // 菚
+ 0x83db: "men2", // 菛
+ 0x83dc: "cai4", // 菜
+ 0x83dd: "ba2", // 菝
+ 0x83de: "li2", // 菞
+ 0x83df: "tu2", // 菟
+ 0x83e0: "bo1", // 菠
+ 0x83e1: "han4", // 菡
+ 0x83e2: "bao4", // 菢
+ 0x83e3: "qin4", // 菣
+ 0x83e4: "juan3", // 菤
+ 0x83e5: "xi1", // 菥
+ 0x83e6: "qin2", // 菦
+ 0x83e7: "di3", // 菧
+ 0x83e8: "jie1", // 菨
+ 0x83e9: "pu2", // 菩
+ 0x83ea: "dang4", // 菪
+ 0x83eb: "jin3", // 菫
+ 0x83ec: "qiao2", // 菬
+ 0x83ed: "tai2", // 菭
+ 0x83ee: "geng1", // 菮
+ 0x83ef: "hua2", // 華
+ 0x83f0: "gu1", // 菰
+ 0x83f1: "ling2", // 菱
+ 0x83f2: "fei1", // 菲
+ 0x83f3: "qin2", // 菳
+ 0x83f4: "an1", // 菴
+ 0x83f5: "wang3", // 菵
+ 0x83f6: "beng3", // 菶
+ 0x83f7: "zhou3", // 菷
+ 0x83f8: "yan1", // 菸
+ 0x83f9: "ju1", // 菹
+ 0x83fa: "jian1", // 菺
+ 0x83fb: "lin3", // 菻
+ 0x83fc: "tan3", // 菼
+ 0x83fd: "shu1", // 菽
+ 0x83fe: "tian2", // 菾
+ 0x83ff: "dao4", // 菿
+ 0x8400: "hu3", // 萀
+ 0x8401: "qi2", // 萁
+ 0x8402: "he2", // 萂
+ 0x8403: "cui4", // 萃
+ 0x8404: "tao2", // 萄
+ 0x8405: "chun1", // 萅
+ 0x8406: "bi4", // 萆
+ 0x8407: "chang2", // 萇
+ 0x8408: "huan2", // 萈
+ 0x8409: "fei4", // 萉
+ 0x840a: "lai2", // 萊
+ 0x840b: "qi1", // 萋
+ 0x840c: "meng2", // 萌
+ 0x840d: "ping2", // 萍
+ 0x840e: "wei1", // 萎
+ 0x840f: "dan4", // 萏
+ 0x8410: "sha4", // 萐
+ 0x8411: "huan2", // 萑
+ 0x8412: "yan3", // 萒
+ 0x8413: "yi2", // 萓
+ 0x8414: "tiao2", // 萔
+ 0x8415: "qi2", // 萕
+ 0x8416: "wan3", // 萖
+ 0x8417: "ce4", // 萗
+ 0x8418: "nai4", // 萘
+ 0x8419: "zhen3", // 萙
+ 0x841a: "tuo4", // 萚
+ 0x841b: "jiu1", // 萛
+ 0x841c: "tie1", // 萜
+ 0x841d: "luo2", // 萝
+ 0x841e: "bi4", // 萞
+ 0x841f: "yi4", // 萟
+ 0x8420: "pan1", // 萠
+ 0x8421: "bo5", // 萡
+ 0x8422: "pao1", // 萢
+ 0x8423: "ding4", // 萣
+ 0x8424: "ying2", // 萤
+ 0x8425: "ying2", // 营
+ 0x8426: "ying2", // 萦
+ 0x8427: "xiao1", // 萧
+ 0x8428: "sa4", // 萨
+ 0x8429: "qiu1", // 萩
+ 0x842a: "ke1", // 萪
+ 0x842b: "xiang4", // 萫
+ 0x842c: "wan4", // 萬
+ 0x842d: "yu3", // 萭
+ 0x842e: "yu2", // 萮
+ 0x842f: "fu4", // 萯
+ 0x8430: "lian4", // 萰
+ 0x8431: "xuan1", // 萱
+ 0x8432: "xuan1", // 萲
+ 0x8433: "nan3", // 萳
+ 0x8434: "ce4", // 萴
+ 0x8435: "wo1", // 萵
+ 0x8436: "chun3", // 萶
+ 0x8437: "xiao1", // 萷
+ 0x8438: "yu2", // 萸
+ 0x8439: "bian3", // 萹
+ 0x843a: "mao4", // 萺
+ 0x843b: "an1", // 萻
+ 0x843c: "e4", // 萼
+ 0x843d: "luo4", // 落
+ 0x843e: "ying2", // 萾
+ 0x843f: "kuo4", // 萿
+ 0x8440: "kuo4", // 葀
+ 0x8441: "jiang1", // 葁
+ 0x8442: "mian3", // 葂
+ 0x8443: "zuo4", // 葃
+ 0x8444: "zuo4", // 葄
+ 0x8445: "zu1", // 葅
+ 0x8446: "bao3", // 葆
+ 0x8447: "rou2", // 葇
+ 0x8448: "xi3", // 葈
+ 0x8449: "ye4", // 葉
+ 0x844a: "an1", // 葊
+ 0x844b: "qu2", // 葋
+ 0x844c: "jian1", // 葌
+ 0x844d: "fu2", // 葍
+ 0x844e: "lv4", // 葎
+ 0x844f: "jing1", // 葏
+ 0x8450: "pen2", // 葐
+ 0x8451: "feng1", // 葑
+ 0x8452: "hong2", // 葒
+ 0x8453: "hong2", // 葓
+ 0x8454: "hou2", // 葔
+ 0x8455: "yan4", // 葕
+ 0x8456: "tu1", // 葖
+ 0x8457: "zhe5", // 著
+ 0x8458: "zi1", // 葘
+ 0x8459: "xiang1", // 葙
+ 0x845a: "ren4", // 葚
+ 0x845b: "ge2", // 葛
+ 0x845c: "qia1", // 葜
+ 0x845d: "qing2", // 葝
+ 0x845e: "mi3", // 葞
+ 0x845f: "huang2", // 葟
+ 0x8460: "shen1", // 葠
+ 0x8461: "pu2", // 葡
+ 0x8462: "gai4", // 葢
+ 0x8463: "dong3", // 董
+ 0x8464: "zhou4", // 葤
+ 0x8465: "jian4", // 葥
+ 0x8466: "wei3", // 葦
+ 0x8467: "bo2", // 葧
+ 0x8468: "wei1", // 葨
+ 0x8469: "pa1", // 葩
+ 0x846a: "ji4", // 葪
+ 0x846b: "hu2", // 葫
+ 0x846c: "zang4", // 葬
+ 0x846d: "jia1", // 葭
+ 0x846e: "duan4", // 葮
+ 0x846f: "yao4", // 葯
+ 0x8470: "sui1", // 葰
+ 0x8471: "cong1", // 葱
+ 0x8472: "quan2", // 葲
+ 0x8473: "wei1", // 葳
+ 0x8474: "zhen1", // 葴
+ 0x8475: "kui2", // 葵
+ 0x8476: "ting2", // 葶
+ 0x8477: "hun1", // 葷
+ 0x8478: "xi3", // 葸
+ 0x8479: "shi1", // 葹
+ 0x847a: "qi4", // 葺
+ 0x847b: "lan2", // 葻
+ 0x847c: "zong1", // 葼
+ 0x847d: "yao1", // 葽
+ 0x847e: "yuan1", // 葾
+ 0x847f: "mei2", // 葿
+ 0x8480: "yun1", // 蒀
+ 0x8481: "shu4", // 蒁
+ 0x8482: "di4", // 蒂
+ 0x8483: "zhuan4", // 蒃
+ 0x8484: "guan1", // 蒄
+ 0x8485: "ran3", // 蒅
+ 0x8486: "xue1", // 蒆
+ 0x8487: "chan3", // 蒇
+ 0x8488: "kai3", // 蒈
+ 0x8489: "kui4", // 蒉
+ 0x848a: "hua1", // 蒊
+ 0x848b: "jiang3", // 蒋
+ 0x848c: "lou2", // 蒌
+ 0x848d: "wei3", // 蒍
+ 0x848e: "pai4", // 蒎
+ 0x848f: "you5", // 蒏
+ 0x8490: "sou1", // 蒐
+ 0x8491: "yin4", // 蒑
+ 0x8492: "shi1", // 蒒
+ 0x8493: "chun2", // 蒓
+ 0x8494: "shi2", // 蒔
+ 0x8495: "yun1", // 蒕
+ 0x8496: "zhen1", // 蒖
+ 0x8497: "lang4", // 蒗
+ 0x8498: "ru2", // 蒘
+ 0x8499: "meng2", // 蒙
+ 0x849a: "li4", // 蒚
+ 0x849b: "que1", // 蒛
+ 0x849c: "suan4", // 蒜
+ 0x849d: "yuan2", // 蒝
+ 0x849e: "li4", // 蒞
+ 0x849f: "ju3", // 蒟
+ 0x84a0: "xi1", // 蒠
+ 0x84a1: "bang4", // 蒡
+ 0x84a2: "chu2", // 蒢
+ 0x84a3: "xu2", // 蒣
+ 0x84a4: "tu2", // 蒤
+ 0x84a5: "liu2", // 蒥
+ 0x84a6: "huo4", // 蒦
+ 0x84a7: "dian3", // 蒧
+ 0x84a8: "qian4", // 蒨
+ 0x84a9: "zu1", // 蒩
+ 0x84aa: "po4", // 蒪
+ 0x84ab: "cuo2", // 蒫
+ 0x84ac: "yuan1", // 蒬
+ 0x84ad: "chu2", // 蒭
+ 0x84ae: "yu4", // 蒮
+ 0x84af: "kuai3", // 蒯
+ 0x84b0: "pan2", // 蒰
+ 0x84b1: "pu2", // 蒱
+ 0x84b2: "pu2", // 蒲
+ 0x84b3: "na4", // 蒳
+ 0x84b4: "shuo4", // 蒴
+ 0x84b5: "xi2", // 蒵
+ 0x84b6: "fen2", // 蒶
+ 0x84b7: "yun2", // 蒷
+ 0x84b8: "zheng1", // 蒸
+ 0x84b9: "jian1", // 蒹
+ 0x84ba: "ji2", // 蒺
+ 0x84bb: "ruo4", // 蒻
+ 0x84bc: "cang1", // 蒼
+ 0x84bd: "en1", // 蒽
+ 0x84be: "mi2", // 蒾
+ 0x84bf: "hao1", // 蒿
+ 0x84c0: "sun1", // 蓀
+ 0x84c1: "zhen1", // 蓁
+ 0x84c2: "ming2", // 蓂
+ 0x84c3: "sou1", // 蓃
+ 0x84c4: "xu4", // 蓄
+ 0x84c5: "liu2", // 蓅
+ 0x84c6: "xi2", // 蓆
+ 0x84c7: "gu3", // 蓇
+ 0x84c8: "lang2", // 蓈
+ 0x84c9: "rong2", // 蓉
+ 0x84ca: "weng3", // 蓊
+ 0x84cb: "gai4", // 蓋
+ 0x84cc: "cuo4", // 蓌
+ 0x84cd: "shi1", // 蓍
+ 0x84ce: "tang2", // 蓎
+ 0x84cf: "luo3", // 蓏
+ 0x84d0: "ru4", // 蓐
+ 0x84d1: "suo1", // 蓑
+ 0x84d2: "xuan1", // 蓒
+ 0x84d3: "bei4", // 蓓
+ 0x84d4: "yao3", // 蓔
+ 0x84d5: "gui4", // 蓕
+ 0x84d6: "bi4", // 蓖
+ 0x84d7: "zong3", // 蓗
+ 0x84d8: "gun3", // 蓘
+ 0x84d9: "zuo4", // 蓙
+ 0x84da: "tiao2", // 蓚
+ 0x84db: "ce4", // 蓛
+ 0x84dc: "pei4", // 蓜
+ 0x84dd: "lan2", // 蓝
+ 0x84de: "dan4", // 蓞
+ 0x84df: "ji4", // 蓟
+ 0x84e0: "li2", // 蓠
+ 0x84e1: "shen1", // 蓡
+ 0x84e2: "lang3", // 蓢
+ 0x84e3: "yu4", // 蓣
+ 0x84e4: "ling2", // 蓤
+ 0x84e5: "ying2", // 蓥
+ 0x84e6: "mo4", // 蓦
+ 0x84e7: "diao4", // 蓧
+ 0x84e8: "tiao2", // 蓨
+ 0x84e9: "mao3", // 蓩
+ 0x84ea: "tong1", // 蓪
+ 0x84eb: "chu4", // 蓫
+ 0x84ec: "peng2", // 蓬
+ 0x84ed: "an1", // 蓭
+ 0x84ee: "lian2", // 蓮
+ 0x84ef: "cong1", // 蓯
+ 0x84f0: "xi3", // 蓰
+ 0x84f1: "ping2", // 蓱
+ 0x84f2: "qiu1", // 蓲
+ 0x84f3: "jin3", // 蓳
+ 0x84f4: "chun2", // 蓴
+ 0x84f5: "jie2", // 蓵
+ 0x84f6: "wei2", // 蓶
+ 0x84f7: "tui1", // 蓷
+ 0x84f8: "cao2", // 蓸
+ 0x84f9: "yu4", // 蓹
+ 0x84fa: "yi4", // 蓺
+ 0x84fb: "zi2", // 蓻
+ 0x84fc: "liao3", // 蓼
+ 0x84fd: "bi4", // 蓽
+ 0x84fe: "lu3", // 蓾
+ 0x84ff: "xu5", // 蓿
+ 0x8500: "bu4", // 蔀
+ 0x8501: "zhang1", // 蔁
+ 0x8502: "lei2", // 蔂
+ 0x8503: "qiang2", // 蔃
+ 0x8504: "man4", // 蔄
+ 0x8505: "yan2", // 蔅
+ 0x8506: "ling2", // 蔆
+ 0x8507: "ji4", // 蔇
+ 0x8508: "biao1", // 蔈
+ 0x8509: "gun3", // 蔉
+ 0x850a: "han3", // 蔊
+ 0x850b: "di2", // 蔋
+ 0x850c: "su4", // 蔌
+ 0x850d: "lu4", // 蔍
+ 0x850e: "she4", // 蔎
+ 0x850f: "shang1", // 蔏
+ 0x8510: "di2", // 蔐
+ 0x8511: "mie4", // 蔑
+ 0x8512: "xun1", // 蔒
+ 0x8513: "man4", // 蔓
+ 0x8514: "bo2", // 蔔
+ 0x8515: "di4", // 蔕
+ 0x8516: "cuo2", // 蔖
+ 0x8517: "zhe4", // 蔗
+ 0x8518: "shen1", // 蔘
+ 0x8519: "xuan4", // 蔙
+ 0x851a: "wei4", // 蔚
+ 0x851b: "hu2", // 蔛
+ 0x851c: "ao2", // 蔜
+ 0x851d: "mi3", // 蔝
+ 0x851e: "lou2", // 蔞
+ 0x851f: "cu4", // 蔟
+ 0x8520: "zhong1", // 蔠
+ 0x8521: "cai4", // 蔡
+ 0x8522: "po2", // 蔢
+ 0x8523: "jiang3", // 蔣
+ 0x8524: "mi4", // 蔤
+ 0x8525: "cong1", // 蔥
+ 0x8526: "niao3", // 蔦
+ 0x8527: "hui4", // 蔧
+ 0x8528: "juan4", // 蔨
+ 0x8529: "yin2", // 蔩
+ 0x852a: "jian4", // 蔪
+ 0x852b: "nian1", // 蔫
+ 0x852c: "shu1", // 蔬
+ 0x852d: "yin1", // 蔭
+ 0x852e: "guo2", // 蔮
+ 0x852f: "chen2", // 蔯
+ 0x8530: "hu4", // 蔰
+ 0x8531: "sha1", // 蔱
+ 0x8532: "kou4", // 蔲
+ 0x8533: "qian4", // 蔳
+ 0x8534: "ma2", // 蔴
+ 0x8535: "zang1", // 蔵
+ 0x8536: "ze2", // 蔶
+ 0x8537: "qiang2", // 蔷
+ 0x8538: "dou1", // 蔸
+ 0x8539: "lian3", // 蔹
+ 0x853a: "lin4", // 蔺
+ 0x853b: "kou4", // 蔻
+ 0x853c: "ai3", // 蔼
+ 0x853d: "bi4", // 蔽
+ 0x853e: "li2", // 蔾
+ 0x853f: "wei3", // 蔿
+ 0x8540: "ji2", // 蕀
+ 0x8541: "qian2", // 蕁
+ 0x8542: "sheng4", // 蕂
+ 0x8543: "fan1", // 蕃
+ 0x8544: "meng2", // 蕄
+ 0x8545: "ou3", // 蕅
+ 0x8546: "chan3", // 蕆
+ 0x8547: "dian3", // 蕇
+ 0x8548: "xun4", // 蕈
+ 0x8549: "jiao1", // 蕉
+ 0x854a: "rui3", // 蕊
+ 0x854b: "rui3", // 蕋
+ 0x854c: "lei3", // 蕌
+ 0x854d: "yu2", // 蕍
+ 0x854e: "qiao2", // 蕎
+ 0x854f: "chu2", // 蕏
+ 0x8550: "hua2", // 蕐
+ 0x8551: "jian1", // 蕑
+ 0x8552: "mai3", // 蕒
+ 0x8553: "yun2", // 蕓
+ 0x8554: "bao1", // 蕔
+ 0x8555: "you2", // 蕕
+ 0x8556: "qu2", // 蕖
+ 0x8557: "lu4", // 蕗
+ 0x8558: "rao2", // 蕘
+ 0x8559: "hui4", // 蕙
+ 0x855a: "e4", // 蕚
+ 0x855b: "ti2", // 蕛
+ 0x855c: "fei3", // 蕜
+ 0x855d: "jue2", // 蕝
+ 0x855e: "zui4", // 蕞
+ 0x855f: "fa4", // 蕟
+ 0x8560: "ru2", // 蕠
+ 0x8561: "fen2", // 蕡
+ 0x8562: "kui4", // 蕢
+ 0x8563: "shun4", // 蕣
+ 0x8564: "rui2", // 蕤
+ 0x8565: "ya3", // 蕥
+ 0x8566: "xu1", // 蕦
+ 0x8567: "fu4", // 蕧
+ 0x8568: "jue2", // 蕨
+ 0x8569: "dang4", // 蕩
+ 0x856a: "wu2", // 蕪
+ 0x856b: "dong3", // 蕫
+ 0x856c: "si1", // 蕬
+ 0x856d: "xiao1", // 蕭
+ 0x856e: "xi4", // 蕮
+ 0x856f: "long2", // 蕯
+ 0x8570: "wen1", // 蕰
+ 0x8571: "shao1", // 蕱
+ 0x8572: "qi2", // 蕲
+ 0x8573: "jian1", // 蕳
+ 0x8574: "yun4", // 蕴
+ 0x8575: "sun1", // 蕵
+ 0x8576: "ling2", // 蕶
+ 0x8577: "yu4", // 蕷
+ 0x8578: "xia2", // 蕸
+ 0x8579: "weng4", // 蕹
+ 0x857a: "ji2", // 蕺
+ 0x857b: "hong2", // 蕻
+ 0x857c: "si4", // 蕼
+ 0x857d: "nong2", // 蕽
+ 0x857e: "lei3", // 蕾
+ 0x857f: "xuan1", // 蕿
+ 0x8580: "yun4", // 薀
+ 0x8581: "yu4", // 薁
+ 0x8582: "xi2", // 薂
+ 0x8583: "hao4", // 薃
+ 0x8584: "bao2", // 薄
+ 0x8585: "hao1", // 薅
+ 0x8586: "ai4", // 薆
+ 0x8587: "wei1", // 薇
+ 0x8588: "hui4", // 薈
+ 0x8589: "hui4", // 薉
+ 0x858a: "ji4", // 薊
+ 0x858b: "ci2", // 薋
+ 0x858c: "xiang1", // 薌
+ 0x858d: "wan4", // 薍
+ 0x858e: "mie4", // 薎
+ 0x858f: "yi4", // 薏
+ 0x8590: "leng2", // 薐
+ 0x8591: "jiang1", // 薑
+ 0x8592: "can4", // 薒
+ 0x8593: "shen1", // 薓
+ 0x8594: "qiang2", // 薔
+ 0x8595: "lian2", // 薕
+ 0x8596: "ke1", // 薖
+ 0x8597: "yuan2", // 薗
+ 0x8598: "da2", // 薘
+ 0x8599: "ti4", // 薙
+ 0x859a: "tang1", // 薚
+ 0x859b: "xue1", // 薛
+ 0x859c: "bi4", // 薜
+ 0x859d: "zhan1", // 薝
+ 0x859e: "sun1", // 薞
+ 0x859f: "xian1", // 薟
+ 0x85a0: "fan2", // 薠
+ 0x85a1: "ding3", // 薡
+ 0x85a2: "xie4", // 薢
+ 0x85a3: "gu3", // 薣
+ 0x85a4: "xie4", // 薤
+ 0x85a5: "shu3", // 薥
+ 0x85a6: "jian4", // 薦
+ 0x85a7: "hao1", // 薧
+ 0x85a8: "hong1", // 薨
+ 0x85a9: "sa4", // 薩
+ 0x85aa: "xin1", // 薪
+ 0x85ab: "xun1", // 薫
+ 0x85ac: "yao4", // 薬
+ 0x85ad: "bai4", // 薭
+ 0x85ae: "sou3", // 薮
+ 0x85af: "shu3", // 薯
+ 0x85b0: "xun1", // 薰
+ 0x85b1: "dui4", // 薱
+ 0x85b2: "pin2", // 薲
+ 0x85b3: "wei3", // 薳
+ 0x85b4: "ning2", // 薴
+ 0x85b5: "chou2", // 薵
+ 0x85b6: "mai2", // 薶
+ 0x85b7: "ru2", // 薷
+ 0x85b8: "piao2", // 薸
+ 0x85b9: "tai2", // 薹
+ 0x85ba: "ji4", // 薺
+ 0x85bb: "zao3", // 薻
+ 0x85bc: "chen2", // 薼
+ 0x85bd: "zhen1", // 薽
+ 0x85be: "er3", // 薾
+ 0x85bf: "ni3", // 薿
+ 0x85c0: "ying2", // 藀
+ 0x85c1: "gao3", // 藁
+ 0x85c2: "cong2", // 藂
+ 0x85c3: "xiao1", // 藃
+ 0x85c4: "qi2", // 藄
+ 0x85c5: "fa2", // 藅
+ 0x85c6: "jian3", // 藆
+ 0x85c7: "xu4", // 藇
+ 0x85c8: "kui2", // 藈
+ 0x85c9: "ji2", // 藉
+ 0x85ca: "bian3", // 藊
+ 0x85cb: "diao4", // 藋
+ 0x85cc: "mi4", // 藌
+ 0x85cd: "lan2", // 藍
+ 0x85ce: "jin4", // 藎
+ 0x85cf: "cang2", // 藏
+ 0x85d0: "miao3", // 藐
+ 0x85d1: "qiong2", // 藑
+ 0x85d2: "qie4", // 藒
+ 0x85d3: "xian3", // 藓
+ 0x85d4: "liao2", // 藔
+ 0x85d5: "ou3", // 藕
+ 0x85d6: "xian2", // 藖
+ 0x85d7: "su4", // 藗
+ 0x85d8: "lv2", // 藘
+ 0x85d9: "yi4", // 藙
+ 0x85da: "xu4", // 藚
+ 0x85db: "xie3", // 藛
+ 0x85dc: "li2", // 藜
+ 0x85dd: "yi4", // 藝
+ 0x85de: "la3", // 藞
+ 0x85df: "lei3", // 藟
+ 0x85e0: "jiao4", // 藠
+ 0x85e1: "di2", // 藡
+ 0x85e2: "zhi3", // 藢
+ 0x85e3: "bei1", // 藣
+ 0x85e4: "teng2", // 藤
+ 0x85e5: "yao4", // 藥
+ 0x85e6: "mo4", // 藦
+ 0x85e7: "huan4", // 藧
+ 0x85e8: "biao1", // 藨
+ 0x85e9: "fan1", // 藩
+ 0x85ea: "sou3", // 藪
+ 0x85eb: "tan2", // 藫
+ 0x85ec: "tui1", // 藬
+ 0x85ed: "qiong2", // 藭
+ 0x85ee: "qiao2", // 藮
+ 0x85ef: "wei4", // 藯
+ 0x85f0: "liu2", // 藰
+ 0x85f1: "hui4", // 藱
+ 0x85f2: "ou1", // 藲
+ 0x85f3: "gao3", // 藳
+ 0x85f4: "yun4", // 藴
+ 0x85f5: "bao3", // 藵
+ 0x85f6: "li4", // 藶
+ 0x85f7: "shu3", // 藷
+ 0x85f8: "chu2", // 藸
+ 0x85f9: "ai3", // 藹
+ 0x85fa: "lin4", // 藺
+ 0x85fb: "zao3", // 藻
+ 0x85fc: "xuan1", // 藼
+ 0x85fd: "qin4", // 藽
+ 0x85fe: "lai4", // 藾
+ 0x85ff: "huo4", // 藿
+ 0x8600: "tuo4", // 蘀
+ 0x8601: "wu4", // 蘁
+ 0x8602: "rui3", // 蘂
+ 0x8603: "rui3", // 蘃
+ 0x8604: "qi2", // 蘄
+ 0x8605: "heng2", // 蘅
+ 0x8606: "lu2", // 蘆
+ 0x8607: "su1", // 蘇
+ 0x8608: "tui2", // 蘈
+ 0x8609: "meng2", // 蘉
+ 0x860a: "yun4", // 蘊
+ 0x860b: "ping2", // 蘋
+ 0x860c: "yu3", // 蘌
+ 0x860d: "xun1", // 蘍
+ 0x860e: "ji4", // 蘎
+ 0x860f: "jiong1", // 蘏
+ 0x8610: "xuan1", // 蘐
+ 0x8611: "mo2", // 蘑
+ 0x8612: "qiu1", // 蘒
+ 0x8613: "su1", // 蘓
+ 0x8614: "jiong1", // 蘔
+ 0x8615: "peng2", // 蘕
+ 0x8616: "nie4", // 蘖
+ 0x8617: "bo4", // 蘗
+ 0x8618: "rang2", // 蘘
+ 0x8619: "yi4", // 蘙
+ 0x861a: "xian3", // 蘚
+ 0x861b: "yu2", // 蘛
+ 0x861c: "ju2", // 蘜
+ 0x861d: "lian3", // 蘝
+ 0x861e: "lian3", // 蘞
+ 0x861f: "yin3", // 蘟
+ 0x8620: "qiang2", // 蘠
+ 0x8621: "ying1", // 蘡
+ 0x8622: "long2", // 蘢
+ 0x8623: "tou3", // 蘣
+ 0x8624: "hua1", // 蘤
+ 0x8625: "yue4", // 蘥
+ 0x8626: "ling2", // 蘦
+ 0x8627: "qu2", // 蘧
+ 0x8628: "yao2", // 蘨
+ 0x8629: "fan2", // 蘩
+ 0x862a: "mei2", // 蘪
+ 0x862b: "han4", // 蘫
+ 0x862c: "kui1", // 蘬
+ 0x862d: "lan2", // 蘭
+ 0x862e: "ji4", // 蘮
+ 0x862f: "dang4", // 蘯
+ 0x8630: "man4", // 蘰
+ 0x8631: "lei4", // 蘱
+ 0x8632: "lei2", // 蘲
+ 0x8633: "hui1", // 蘳
+ 0x8634: "feng1", // 蘴
+ 0x8635: "zhi1", // 蘵
+ 0x8636: "wei4", // 蘶
+ 0x8637: "kui2", // 蘷
+ 0x8638: "zhan4", // 蘸
+ 0x8639: "huai2", // 蘹
+ 0x863a: "li2", // 蘺
+ 0x863b: "ji4", // 蘻
+ 0x863c: "mi2", // 蘼
+ 0x863d: "lei3", // 蘽
+ 0x863e: "huai4", // 蘾
+ 0x863f: "luo2", // 蘿
+ 0x8640: "ji1", // 虀
+ 0x8641: "kui2", // 虁
+ 0x8642: "lu4", // 虂
+ 0x8643: "jian1", // 虃
+ 0x8644: "sa4", // 虄
+ 0x8645: "teng2", // 虅
+ 0x8646: "lei2", // 虆
+ 0x8647: "quan3", // 虇
+ 0x8648: "xiao1", // 虈
+ 0x8649: "yi4", // 虉
+ 0x864a: "luan2", // 虊
+ 0x864b: "men2", // 虋
+ 0x864c: "bie1", // 虌
+ 0x864d: "hu1", // 虍
+ 0x864e: "hu3", // 虎
+ 0x864f: "lu3", // 虏
+ 0x8650: "nve4", // 虐
+ 0x8651: "lv4", // 虑
+ 0x8652: "si1", // 虒
+ 0x8653: "xiao1", // 虓
+ 0x8654: "qian2", // 虔
+ 0x8655: "chu4", // 處
+ 0x8656: "hu1", // 虖
+ 0x8657: "xu1", // 虗
+ 0x8658: "cuo2", // 虘
+ 0x8659: "fu2", // 虙
+ 0x865a: "xu1", // 虚
+ 0x865b: "xu1", // 虛
+ 0x865c: "lu3", // 虜
+ 0x865d: "hu3", // 虝
+ 0x865e: "yu2", // 虞
+ 0x865f: "hao4", // 號
+ 0x8660: "jiao1", // 虠
+ 0x8661: "ju4", // 虡
+ 0x8662: "guo2", // 虢
+ 0x8663: "bao4", // 虣
+ 0x8664: "yan2", // 虤
+ 0x8665: "zhan4", // 虥
+ 0x8666: "zhan4", // 虦
+ 0x8667: "kui1", // 虧
+ 0x8668: "bin1", // 虨
+ 0x8669: "xi4", // 虩
+ 0x866a: "shu4", // 虪
+ 0x866b: "chong2", // 虫
+ 0x866c: "qiu2", // 虬
+ 0x866d: "diao1", // 虭
+ 0x866e: "ji3", // 虮
+ 0x866f: "qiu2", // 虯
+ 0x8670: "ding1", // 虰
+ 0x8671: "shi1", // 虱
+ 0x8672: "xia1", // 虲
+ 0x8673: "jue2", // 虳
+ 0x8674: "zhe2", // 虴
+ 0x8675: "she2", // 虵
+ 0x8676: "yu1", // 虶
+ 0x8677: "han2", // 虷
+ 0x8678: "zi3", // 虸
+ 0x8679: "hong2", // 虹
+ 0x867a: "hui1", // 虺
+ 0x867b: "meng2", // 虻
+ 0x867c: "ge4", // 虼
+ 0x867d: "sui1", // 虽
+ 0x867e: "xia1", // 虾
+ 0x867f: "chai4", // 虿
+ 0x8680: "shi2", // 蚀
+ 0x8681: "yi3", // 蚁
+ 0x8682: "ma3", // 蚂
+ 0x8683: "xiang3", // 蚃
+ 0x8684: "fang1", // 蚄
+ 0x8685: "e4", // 蚅
+ 0x8686: "ba1", // 蚆
+ 0x8687: "chi3", // 蚇
+ 0x8688: "qian1", // 蚈
+ 0x8689: "wen2", // 蚉
+ 0x868a: "wen2", // 蚊
+ 0x868b: "rui4", // 蚋
+ 0x868c: "bang4", // 蚌
+ 0x868d: "pi2", // 蚍
+ 0x868e: "yue4", // 蚎
+ 0x868f: "yue4", // 蚏
+ 0x8690: "jun1", // 蚐
+ 0x8691: "qi2", // 蚑
+ 0x8692: "tong2", // 蚒
+ 0x8693: "yin3", // 蚓
+ 0x8694: "qi2", // 蚔
+ 0x8695: "can2", // 蚕
+ 0x8696: "yuan2", // 蚖
+ 0x8697: "jue2", // 蚗
+ 0x8698: "hui2", // 蚘
+ 0x8699: "qin2", // 蚙
+ 0x869a: "qi2", // 蚚
+ 0x869b: "zhong4", // 蚛
+ 0x869c: "ya2", // 蚜
+ 0x869d: "hao2", // 蚝
+ 0x869e: "mu4", // 蚞
+ 0x869f: "wang2", // 蚟
+ 0x86a0: "fen2", // 蚠
+ 0x86a1: "fen2", // 蚡
+ 0x86a2: "hang2", // 蚢
+ 0x86a3: "gong1", // 蚣
+ 0x86a4: "zao3", // 蚤
+ 0x86a5: "fu4", // 蚥
+ 0x86a6: "ran2", // 蚦
+ 0x86a7: "jie4", // 蚧
+ 0x86a8: "fu2", // 蚨
+ 0x86a9: "chi1", // 蚩
+ 0x86aa: "dou3", // 蚪
+ 0x86ab: "bao4", // 蚫
+ 0x86ac: "xian3", // 蚬
+ 0x86ad: "ni2", // 蚭
+ 0x86ae: "dai4", // 蚮
+ 0x86af: "qiu1", // 蚯
+ 0x86b0: "you2", // 蚰
+ 0x86b1: "zha4", // 蚱
+ 0x86b2: "ping2", // 蚲
+ 0x86b3: "chi2", // 蚳
+ 0x86b4: "you4", // 蚴
+ 0x86b5: "he2", // 蚵
+ 0x86b6: "han1", // 蚶
+ 0x86b7: "ju4", // 蚷
+ 0x86b8: "li4", // 蚸
+ 0x86b9: "fu4", // 蚹
+ 0x86ba: "ran2", // 蚺
+ 0x86bb: "zha2", // 蚻
+ 0x86bc: "gou3", // 蚼
+ 0x86bd: "pi2", // 蚽
+ 0x86be: "pi2", // 蚾
+ 0x86bf: "xian2", // 蚿
+ 0x86c0: "zhu4", // 蛀
+ 0x86c1: "diao1", // 蛁
+ 0x86c2: "bie2", // 蛂
+ 0x86c3: "bing3", // 蛃
+ 0x86c4: "gu1", // 蛄
+ 0x86c5: "zhan1", // 蛅
+ 0x86c6: "qu1", // 蛆
+ 0x86c7: "she2", // 蛇
+ 0x86c8: "tie3", // 蛈
+ 0x86c9: "ling2", // 蛉
+ 0x86ca: "gu3", // 蛊
+ 0x86cb: "dan4", // 蛋
+ 0x86cc: "gu3", // 蛌
+ 0x86cd: "ying2", // 蛍
+ 0x86ce: "li4", // 蛎
+ 0x86cf: "cheng1", // 蛏
+ 0x86d0: "qu1", // 蛐
+ 0x86d1: "mou2", // 蛑
+ 0x86d2: "ge2", // 蛒
+ 0x86d3: "ci4", // 蛓
+ 0x86d4: "hui2", // 蛔
+ 0x86d5: "hui2", // 蛕
+ 0x86d6: "mang2", // 蛖
+ 0x86d7: "fu4", // 蛗
+ 0x86d8: "yang2", // 蛘
+ 0x86d9: "wa1", // 蛙
+ 0x86da: "lie4", // 蛚
+ 0x86db: "zhu1", // 蛛
+ 0x86dc: "yi1", // 蛜
+ 0x86dd: "xian2", // 蛝
+ 0x86de: "kuo4", // 蛞
+ 0x86df: "jiao1", // 蛟
+ 0x86e0: "li4", // 蛠
+ 0x86e1: "yi4", // 蛡
+ 0x86e2: "ping2", // 蛢
+ 0x86e3: "qi1", // 蛣
+ 0x86e4: "ha2", // 蛤
+ 0x86e5: "she2", // 蛥
+ 0x86e6: "yi2", // 蛦
+ 0x86e7: "wang3", // 蛧
+ 0x86e8: "mo4", // 蛨
+ 0x86e9: "qiong2", // 蛩
+ 0x86ea: "qie4", // 蛪
+ 0x86eb: "gui3", // 蛫
+ 0x86ec: "qiong2", // 蛬
+ 0x86ed: "zhi4", // 蛭
+ 0x86ee: "man2", // 蛮
+ 0x86ef: "lao3", // 蛯
+ 0x86f0: "zhe2", // 蛰
+ 0x86f1: "jia2", // 蛱
+ 0x86f2: "nao2", // 蛲
+ 0x86f3: "si1", // 蛳
+ 0x86f4: "qi2", // 蛴
+ 0x86f5: "xing1", // 蛵
+ 0x86f6: "jie4", // 蛶
+ 0x86f7: "qiu2", // 蛷
+ 0x86f8: "shao1", // 蛸
+ 0x86f9: "yong3", // 蛹
+ 0x86fa: "jia2", // 蛺
+ 0x86fb: "tui4", // 蛻
+ 0x86fc: "che1", // 蛼
+ 0x86fd: "bei4", // 蛽
+ 0x86fe: "e2", // 蛾
+ 0x86ff: "han4", // 蛿
+ 0x8700: "shu3", // 蜀
+ 0x8701: "xuan2", // 蜁
+ 0x8702: "feng1", // 蜂
+ 0x8703: "shen4", // 蜃
+ 0x8704: "shen4", // 蜄
+ 0x8705: "fu3", // 蜅
+ 0x8706: "xian4", // 蜆
+ 0x8707: "zhe1", // 蜇
+ 0x8708: "wu2", // 蜈
+ 0x8709: "fu2", // 蜉
+ 0x870a: "li2", // 蜊
+ 0x870b: "lang2", // 蜋
+ 0x870c: "bi4", // 蜌
+ 0x870d: "chu2", // 蜍
+ 0x870e: "yuan1", // 蜎
+ 0x870f: "you3", // 蜏
+ 0x8710: "jie2", // 蜐
+ 0x8711: "dan4", // 蜑
+ 0x8712: "yan2", // 蜒
+ 0x8713: "ting2", // 蜓
+ 0x8714: "dian4", // 蜔
+ 0x8715: "tui4", // 蜕
+ 0x8716: "hui2", // 蜖
+ 0x8717: "wo1", // 蜗
+ 0x8718: "zhi1", // 蜘
+ 0x8719: "song1", // 蜙
+ 0x871a: "fei1", // 蜚
+ 0x871b: "ju1", // 蜛
+ 0x871c: "mi4", // 蜜
+ 0x871d: "qi2", // 蜝
+ 0x871e: "qi2", // 蜞
+ 0x871f: "yu4", // 蜟
+ 0x8720: "jun4", // 蜠
+ 0x8721: "la4", // 蜡
+ 0x8722: "meng3", // 蜢
+ 0x8723: "qiang1", // 蜣
+ 0x8724: "si1", // 蜤
+ 0x8725: "xi1", // 蜥
+ 0x8726: "lun2", // 蜦
+ 0x8727: "li4", // 蜧
+ 0x8728: "die2", // 蜨
+ 0x8729: "tiao2", // 蜩
+ 0x872a: "tao2", // 蜪
+ 0x872b: "kun1", // 蜫
+ 0x872c: "han2", // 蜬
+ 0x872d: "han4", // 蜭
+ 0x872e: "yu4", // 蜮
+ 0x872f: "bang4", // 蜯
+ 0x8730: "fei2", // 蜰
+ 0x8731: "pi2", // 蜱
+ 0x8732: "wei1", // 蜲
+ 0x8733: "dun1", // 蜳
+ 0x8734: "yi4", // 蜴
+ 0x8735: "yuan1", // 蜵
+ 0x8736: "suo4", // 蜶
+ 0x8737: "quan2", // 蜷
+ 0x8738: "qian3", // 蜸
+ 0x8739: "rui4", // 蜹
+ 0x873a: "ni2", // 蜺
+ 0x873b: "qing1", // 蜻
+ 0x873c: "wei4", // 蜼
+ 0x873d: "liang3", // 蜽
+ 0x873e: "guo3", // 蜾
+ 0x873f: "wan1", // 蜿
+ 0x8740: "dong1", // 蝀
+ 0x8741: "e4", // 蝁
+ 0x8742: "ban3", // 蝂
+ 0x8743: "di4", // 蝃
+ 0x8744: "wang3", // 蝄
+ 0x8745: "can2", // 蝅
+ 0x8746: "yang3", // 蝆
+ 0x8747: "ying2", // 蝇
+ 0x8748: "guo1", // 蝈
+ 0x8749: "chan2", // 蝉
+ 0x874a: "ding4", // 蝊
+ 0x874b: "la4", // 蝋
+ 0x874c: "ke1", // 蝌
+ 0x874d: "jie2", // 蝍
+ 0x874e: "xie1", // 蝎
+ 0x874f: "ting2", // 蝏
+ 0x8750: "mao4", // 蝐
+ 0x8751: "xu1", // 蝑
+ 0x8752: "mian2", // 蝒
+ 0x8753: "yu2", // 蝓
+ 0x8754: "jie1", // 蝔
+ 0x8755: "shi2", // 蝕
+ 0x8756: "xuan1", // 蝖
+ 0x8757: "huang2", // 蝗
+ 0x8758: "yan3", // 蝘
+ 0x8759: "bian1", // 蝙
+ 0x875a: "rou2", // 蝚
+ 0x875b: "wei1", // 蝛
+ 0x875c: "fu4", // 蝜
+ 0x875d: "yuan2", // 蝝
+ 0x875e: "mei4", // 蝞
+ 0x875f: "wei4", // 蝟
+ 0x8760: "fu2", // 蝠
+ 0x8761: "ru2", // 蝡
+ 0x8762: "xie2", // 蝢
+ 0x8763: "you2", // 蝣
+ 0x8764: "qiu2", // 蝤
+ 0x8765: "mao2", // 蝥
+ 0x8766: "xia1", // 蝦
+ 0x8767: "ying1", // 蝧
+ 0x8768: "shi1", // 蝨
+ 0x8769: "chong2", // 蝩
+ 0x876a: "tang1", // 蝪
+ 0x876b: "zhu1", // 蝫
+ 0x876c: "zong1", // 蝬
+ 0x876d: "ti2", // 蝭
+ 0x876e: "fu4", // 蝮
+ 0x876f: "yuan2", // 蝯
+ 0x8770: "kui2", // 蝰
+ 0x8771: "meng2", // 蝱
+ 0x8772: "la4", // 蝲
+ 0x8773: "du2", // 蝳
+ 0x8774: "hu2", // 蝴
+ 0x8775: "qiu1", // 蝵
+ 0x8776: "die2", // 蝶
+ 0x8777: "li4", // 蝷
+ 0x8778: "wo1", // 蝸
+ 0x8779: "yun1", // 蝹
+ 0x877a: "qu3", // 蝺
+ 0x877b: "nan3", // 蝻
+ 0x877c: "lou2", // 蝼
+ 0x877d: "chun1", // 蝽
+ 0x877e: "rong2", // 蝾
+ 0x877f: "ying2", // 蝿
+ 0x8780: "jiang1", // 螀
+ 0x8781: "ban5", // 螁
+ 0x8782: "lang2", // 螂
+ 0x8783: "pang2", // 螃
+ 0x8784: "si1", // 螄
+ 0x8785: "xi1", // 螅
+ 0x8786: "ci4", // 螆
+ 0x8787: "xi1", // 螇
+ 0x8788: "yuan2", // 螈
+ 0x8789: "weng1", // 螉
+ 0x878a: "lian2", // 螊
+ 0x878b: "sou1", // 螋
+ 0x878c: "ban1", // 螌
+ 0x878d: "rong2", // 融
+ 0x878e: "rong2", // 螎
+ 0x878f: "ji2", // 螏
+ 0x8790: "wu1", // 螐
+ 0x8791: "xiu4", // 螑
+ 0x8792: "han4", // 螒
+ 0x8793: "qin2", // 螓
+ 0x8794: "yi2", // 螔
+ 0x8795: "bi1", // 螕
+ 0x8796: "hua2", // 螖
+ 0x8797: "tang2", // 螗
+ 0x8798: "yi3", // 螘
+ 0x8799: "du4", // 螙
+ 0x879a: "nai4", // 螚
+ 0x879b: "he2", // 螛
+ 0x879c: "hu2", // 螜
+ 0x879d: "gui1", // 螝
+ 0x879e: "ma3", // 螞
+ 0x879f: "ming2", // 螟
+ 0x87a0: "yi4", // 螠
+ 0x87a1: "wen2", // 螡
+ 0x87a2: "ying2", // 螢
+ 0x87a3: "te4", // 螣
+ 0x87a4: "zhong1", // 螤
+ 0x87a5: "cang1", // 螥
+ 0x87a6: "sao1", // 螦
+ 0x87a7: "qi2", // 螧
+ 0x87a8: "man3", // 螨
+ 0x87a9: "tiao5", // 螩
+ 0x87aa: "shang1", // 螪
+ 0x87ab: "shi4", // 螫
+ 0x87ac: "cao2", // 螬
+ 0x87ad: "chi1", // 螭
+ 0x87ae: "di4", // 螮
+ 0x87af: "ao2", // 螯
+ 0x87b0: "lu4", // 螰
+ 0x87b1: "wei4", // 螱
+ 0x87b2: "zhi4", // 螲
+ 0x87b3: "tang2", // 螳
+ 0x87b4: "chen2", // 螴
+ 0x87b5: "piao1", // 螵
+ 0x87b6: "qu2", // 螶
+ 0x87b7: "pi2", // 螷
+ 0x87b8: "yu2", // 螸
+ 0x87b9: "jian4", // 螹
+ 0x87ba: "luo2", // 螺
+ 0x87bb: "lou2", // 螻
+ 0x87bc: "qin3", // 螼
+ 0x87bd: "zhong1", // 螽
+ 0x87be: "yin3", // 螾
+ 0x87bf: "jiang1", // 螿
+ 0x87c0: "shuai4", // 蟀
+ 0x87c1: "wen2", // 蟁
+ 0x87c2: "xiao1", // 蟂
+ 0x87c3: "wan4", // 蟃
+ 0x87c4: "zhe2", // 蟄
+ 0x87c5: "zhe4", // 蟅
+ 0x87c6: "ma2", // 蟆
+ 0x87c7: "ma2", // 蟇
+ 0x87c8: "guo1", // 蟈
+ 0x87c9: "liu2", // 蟉
+ 0x87ca: "mao2", // 蟊
+ 0x87cb: "xi1", // 蟋
+ 0x87cc: "cong1", // 蟌
+ 0x87cd: "li2", // 蟍
+ 0x87ce: "man3", // 蟎
+ 0x87cf: "xiao1", // 蟏
+ 0x87d0: "chang5", // 蟐
+ 0x87d1: "zhang1", // 蟑
+ 0x87d2: "mang3", // 蟒
+ 0x87d3: "xiang4", // 蟓
+ 0x87d4: "mo4", // 蟔
+ 0x87d5: "zui1", // 蟕
+ 0x87d6: "si1", // 蟖
+ 0x87d7: "qiu1", // 蟗
+ 0x87d8: "te4", // 蟘
+ 0x87d9: "zhi2", // 蟙
+ 0x87da: "peng2", // 蟚
+ 0x87db: "peng2", // 蟛
+ 0x87dc: "jiao3", // 蟜
+ 0x87dd: "qu2", // 蟝
+ 0x87de: "bie1", // 蟞
+ 0x87df: "liao2", // 蟟
+ 0x87e0: "pan2", // 蟠
+ 0x87e1: "gui3", // 蟡
+ 0x87e2: "xi3", // 蟢
+ 0x87e3: "ji3", // 蟣
+ 0x87e4: "zhuan1", // 蟤
+ 0x87e5: "huang2", // 蟥
+ 0x87e6: "fei2", // 蟦
+ 0x87e7: "lao2", // 蟧
+ 0x87e8: "jue2", // 蟨
+ 0x87e9: "jue2", // 蟩
+ 0x87ea: "hui4", // 蟪
+ 0x87eb: "yin2", // 蟫
+ 0x87ec: "chan2", // 蟬
+ 0x87ed: "jiao1", // 蟭
+ 0x87ee: "shan4", // 蟮
+ 0x87ef: "nao2", // 蟯
+ 0x87f0: "xiao1", // 蟰
+ 0x87f1: "wu2", // 蟱
+ 0x87f2: "chong2", // 蟲
+ 0x87f3: "xun2", // 蟳
+ 0x87f4: "si1", // 蟴
+ 0x87f5: "chu2", // 蟵
+ 0x87f6: "cheng1", // 蟶
+ 0x87f7: "dang1", // 蟷
+ 0x87f8: "li3", // 蟸
+ 0x87f9: "xie4", // 蟹
+ 0x87fa: "shan4", // 蟺
+ 0x87fb: "yi3", // 蟻
+ 0x87fc: "jing3", // 蟼
+ 0x87fd: "da2", // 蟽
+ 0x87fe: "chan2", // 蟾
+ 0x87ff: "qi4", // 蟿
+ 0x8800: "ci1", // 蠀
+ 0x8801: "xiang3", // 蠁
+ 0x8802: "she4", // 蠂
+ 0x8803: "luo3", // 蠃
+ 0x8804: "qin2", // 蠄
+ 0x8805: "ying2", // 蠅
+ 0x8806: "chai4", // 蠆
+ 0x8807: "li4", // 蠇
+ 0x8808: "zei2", // 蠈
+ 0x8809: "xuan1", // 蠉
+ 0x880a: "lian2", // 蠊
+ 0x880b: "zhu2", // 蠋
+ 0x880c: "ze2", // 蠌
+ 0x880d: "xie1", // 蠍
+ 0x880e: "mang3", // 蠎
+ 0x880f: "xie4", // 蠏
+ 0x8810: "qi2", // 蠐
+ 0x8811: "rong2", // 蠑
+ 0x8812: "jian3", // 蠒
+ 0x8813: "meng3", // 蠓
+ 0x8814: "hao2", // 蠔
+ 0x8815: "ru2", // 蠕
+ 0x8816: "huo4", // 蠖
+ 0x8817: "zhuo2", // 蠗
+ 0x8818: "jie2", // 蠘
+ 0x8819: "pin2", // 蠙
+ 0x881a: "he1", // 蠚
+ 0x881b: "mie4", // 蠛
+ 0x881c: "fan2", // 蠜
+ 0x881d: "lei3", // 蠝
+ 0x881e: "jie2", // 蠞
+ 0x881f: "la4", // 蠟
+ 0x8820: "min3", // 蠠
+ 0x8821: "li2", // 蠡
+ 0x8822: "chun3", // 蠢
+ 0x8823: "li4", // 蠣
+ 0x8824: "qiu1", // 蠤
+ 0x8825: "nie4", // 蠥
+ 0x8826: "lu2", // 蠦
+ 0x8827: "du4", // 蠧
+ 0x8828: "xiao1", // 蠨
+ 0x8829: "zhu1", // 蠩
+ 0x882a: "long2", // 蠪
+ 0x882b: "li2", // 蠫
+ 0x882c: "long2", // 蠬
+ 0x882d: "feng1", // 蠭
+ 0x882e: "ye1", // 蠮
+ 0x882f: "pi2", // 蠯
+ 0x8830: "nang2", // 蠰
+ 0x8831: "gu3", // 蠱
+ 0x8832: "juan1", // 蠲
+ 0x8833: "ying1", // 蠳
+ 0x8834: "shu3", // 蠴
+ 0x8835: "xi1", // 蠵
+ 0x8836: "can2", // 蠶
+ 0x8837: "qu2", // 蠷
+ 0x8838: "quan2", // 蠸
+ 0x8839: "du4", // 蠹
+ 0x883a: "can2", // 蠺
+ 0x883b: "man2", // 蠻
+ 0x883c: "qu2", // 蠼
+ 0x883d: "jie2", // 蠽
+ 0x883e: "zhu2", // 蠾
+ 0x883f: "zhuo1", // 蠿
+ 0x8840: "xue4", // 血
+ 0x8841: "huang1", // 衁
+ 0x8842: "nv4", // 衂
+ 0x8843: "pei1", // 衃
+ 0x8844: "nv4", // 衄
+ 0x8845: "xin4", // 衅
+ 0x8846: "zhong4", // 衆
+ 0x8847: "mai4", // 衇
+ 0x8848: "er4", // 衈
+ 0x8849: "ka1", // 衉
+ 0x884a: "mie4", // 衊
+ 0x884b: "xi4", // 衋
+ 0x884c: "xing2", // 行
+ 0x884d: "yan3", // 衍
+ 0x884e: "kan4", // 衎
+ 0x884f: "yuan4", // 衏
+ 0x8850: "qu2", // 衐
+ 0x8851: "ling2", // 衑
+ 0x8852: "xuan4", // 衒
+ 0x8853: "shu4", // 術
+ 0x8854: "xian2", // 衔
+ 0x8855: "tong4", // 衕
+ 0x8856: "xiang4", // 衖
+ 0x8857: "jie1", // 街
+ 0x8858: "xian2", // 衘
+ 0x8859: "ya2", // 衙
+ 0x885a: "hu2", // 衚
+ 0x885b: "wei4", // 衛
+ 0x885c: "dao4", // 衜
+ 0x885d: "chong1", // 衝
+ 0x885e: "wei4", // 衞
+ 0x885f: "dao4", // 衟
+ 0x8860: "zhun1", // 衠
+ 0x8861: "heng2", // 衡
+ 0x8862: "qu2", // 衢
+ 0x8863: "yi1", // 衣
+ 0x8864: "yi1", // 衤
+ 0x8865: "bu3", // 补
+ 0x8866: "gan3", // 衦
+ 0x8867: "yu2", // 衧
+ 0x8868: "biao3", // 表
+ 0x8869: "cha3", // 衩
+ 0x886a: "yi2", // 衪
+ 0x886b: "shan1", // 衫
+ 0x886c: "chen4", // 衬
+ 0x886d: "fu1", // 衭
+ 0x886e: "gun3", // 衮
+ 0x886f: "fen1", // 衯
+ 0x8870: "shuai1", // 衰
+ 0x8871: "jie2", // 衱
+ 0x8872: "na4", // 衲
+ 0x8873: "zhong1", // 衳
+ 0x8874: "dan3", // 衴
+ 0x8875: "yi4", // 衵
+ 0x8876: "zhong4", // 衶
+ 0x8877: "zhong1", // 衷
+ 0x8878: "jie4", // 衸
+ 0x8879: "zhi3", // 衹
+ 0x887a: "xie2", // 衺
+ 0x887b: "ran2", // 衻
+ 0x887c: "zhi1", // 衼
+ 0x887d: "ren4", // 衽
+ 0x887e: "qin1", // 衾
+ 0x887f: "jin1", // 衿
+ 0x8880: "jun1", // 袀
+ 0x8881: "yuan2", // 袁
+ 0x8882: "mei4", // 袂
+ 0x8883: "chai4", // 袃
+ 0x8884: "ao3", // 袄
+ 0x8885: "niao3", // 袅
+ 0x8886: "hui1", // 袆
+ 0x8887: "ran2", // 袇
+ 0x8888: "jia1", // 袈
+ 0x8889: "tuo2", // 袉
+ 0x888a: "ling3", // 袊
+ 0x888b: "dai4", // 袋
+ 0x888c: "bao4", // 袌
+ 0x888d: "pao2", // 袍
+ 0x888e: "yao4", // 袎
+ 0x888f: "zuo4", // 袏
+ 0x8890: "bi4", // 袐
+ 0x8891: "shao4", // 袑
+ 0x8892: "tan3", // 袒
+ 0x8893: "ju4", // 袓
+ 0x8894: "he4", // 袔
+ 0x8895: "xue2", // 袕
+ 0x8896: "xiu4", // 袖
+ 0x8897: "zhen3", // 袗
+ 0x8898: "yi2", // 袘
+ 0x8899: "pa4", // 袙
+ 0x889a: "bo1", // 袚
+ 0x889b: "di1", // 袛
+ 0x889c: "wa4", // 袜
+ 0x889d: "fu4", // 袝
+ 0x889e: "gun3", // 袞
+ 0x889f: "zhi4", // 袟
+ 0x88a0: "zhi4", // 袠
+ 0x88a1: "ran2", // 袡
+ 0x88a2: "pan4", // 袢
+ 0x88a3: "yi4", // 袣
+ 0x88a4: "mao4", // 袤
+ 0x88a5: "tuo1", // 袥
+ 0x88a6: "na4", // 袦
+ 0x88a7: "gou1", // 袧
+ 0x88a8: "xuan4", // 袨
+ 0x88a9: "zhe2", // 袩
+ 0x88aa: "qu1", // 袪
+ 0x88ab: "bei4", // 被
+ 0x88ac: "yu4", // 袬
+ 0x88ad: "xi2", // 袭
+ 0x88ae: "mi2", // 袮
+ 0x88af: "bo2", // 袯
+ 0x88b0: "bo1", // 袰
+ 0x88b1: "fu2", // 袱
+ 0x88b2: "chi3", // 袲
+ 0x88b3: "chi3", // 袳
+ 0x88b4: "ku4", // 袴
+ 0x88b5: "ren4", // 袵
+ 0x88b6: "jiang4", // 袶
+ 0x88b7: "jia2", // 袷
+ 0x88b8: "jian4", // 袸
+ 0x88b9: "bo2", // 袹
+ 0x88ba: "jie2", // 袺
+ 0x88bb: "er2", // 袻
+ 0x88bc: "ge1", // 袼
+ 0x88bd: "ru2", // 袽
+ 0x88be: "zhu1", // 袾
+ 0x88bf: "gui1", // 袿
+ 0x88c0: "yin1", // 裀
+ 0x88c1: "cai2", // 裁
+ 0x88c2: "lie4", // 裂
+ 0x88c3: "ka3", // 裃
+ 0x88c4: "xing5", // 裄
+ 0x88c5: "zhuang1", // 装
+ 0x88c6: "dang1", // 裆
+ 0x88c7: "xu1", // 裇
+ 0x88c8: "kun1", // 裈
+ 0x88c9: "ken4", // 裉
+ 0x88ca: "niao3", // 裊
+ 0x88cb: "shu4", // 裋
+ 0x88cc: "jia2", // 裌
+ 0x88cd: "kun3", // 裍
+ 0x88ce: "cheng2", // 裎
+ 0x88cf: "li3", // 裏
+ 0x88d0: "juan1", // 裐
+ 0x88d1: "shen1", // 裑
+ 0x88d2: "pou2", // 裒
+ 0x88d3: "ge2", // 裓
+ 0x88d4: "yi4", // 裔
+ 0x88d5: "yu4", // 裕
+ 0x88d6: "zhen3", // 裖
+ 0x88d7: "liu2", // 裗
+ 0x88d8: "qiu2", // 裘
+ 0x88d9: "qun2", // 裙
+ 0x88da: "ji4", // 裚
+ 0x88db: "yi4", // 裛
+ 0x88dc: "bu3", // 補
+ 0x88dd: "zhuang1", // 裝
+ 0x88de: "shui4", // 裞
+ 0x88df: "sha1", // 裟
+ 0x88e0: "qun2", // 裠
+ 0x88e1: "li3", // 裡
+ 0x88e2: "lian2", // 裢
+ 0x88e3: "lian3", // 裣
+ 0x88e4: "ku4", // 裤
+ 0x88e5: "jian3", // 裥
+ 0x88e6: "fou2", // 裦
+ 0x88e7: "chan1", // 裧
+ 0x88e8: "bi4", // 裨
+ 0x88e9: "kun1", // 裩
+ 0x88ea: "tao2", // 裪
+ 0x88eb: "yuan4", // 裫
+ 0x88ec: "ling2", // 裬
+ 0x88ed: "chi3", // 裭
+ 0x88ee: "chang1", // 裮
+ 0x88ef: "chou2", // 裯
+ 0x88f0: "duo1", // 裰
+ 0x88f1: "biao3", // 裱
+ 0x88f2: "liang3", // 裲
+ 0x88f3: "shang5", // 裳
+ 0x88f4: "pei2", // 裴
+ 0x88f5: "pei2", // 裵
+ 0x88f6: "fei1", // 裶
+ 0x88f7: "yuan1", // 裷
+ 0x88f8: "luo3", // 裸
+ 0x88f9: "guo3", // 裹
+ 0x88fa: "yan3", // 裺
+ 0x88fb: "du2", // 裻
+ 0x88fc: "ti4", // 裼
+ 0x88fd: "zhi4", // 製
+ 0x88fe: "ju1", // 裾
+ 0x88ff: "yi3", // 裿
+ 0x8900: "qi2", // 褀
+ 0x8901: "guo3", // 褁
+ 0x8902: "gua4", // 褂
+ 0x8903: "ken4", // 褃
+ 0x8904: "qi1", // 褄
+ 0x8905: "ti4", // 褅
+ 0x8906: "ti2", // 褆
+ 0x8907: "fu4", // 複
+ 0x8908: "chong2", // 褈
+ 0x8909: "xie4", // 褉
+ 0x890a: "bian3", // 褊
+ 0x890b: "die2", // 褋
+ 0x890c: "kun1", // 褌
+ 0x890d: "duan1", // 褍
+ 0x890e: "xiu4", // 褎
+ 0x890f: "xiu4", // 褏
+ 0x8910: "he4", // 褐
+ 0x8911: "yuan4", // 褑
+ 0x8912: "bao1", // 褒
+ 0x8913: "bao3", // 褓
+ 0x8914: "fu4", // 褔
+ 0x8915: "yu2", // 褕
+ 0x8916: "tuan4", // 褖
+ 0x8917: "yan3", // 褗
+ 0x8918: "hui1", // 褘
+ 0x8919: "bei4", // 褙
+ 0x891a: "chu3", // 褚
+ 0x891b: "lv3", // 褛
+ 0x891c: "pao2", // 褜
+ 0x891d: "dan1", // 褝
+ 0x891e: "yun3", // 褞
+ 0x891f: "ta1", // 褟
+ 0x8920: "gou1", // 褠
+ 0x8921: "da1", // 褡
+ 0x8922: "huai2", // 褢
+ 0x8923: "rong2", // 褣
+ 0x8924: "yuan4", // 褤
+ 0x8925: "ru4", // 褥
+ 0x8926: "nai4", // 褦
+ 0x8927: "jiong3", // 褧
+ 0x8928: "suo3", // 褨
+ 0x8929: "ban1", // 褩
+ 0x892a: "tui4", // 褪
+ 0x892b: "chi3", // 褫
+ 0x892c: "sang3", // 褬
+ 0x892d: "niao3", // 褭
+ 0x892e: "ying1", // 褮
+ 0x892f: "jie4", // 褯
+ 0x8930: "qian1", // 褰
+ 0x8931: "huai2", // 褱
+ 0x8932: "ku4", // 褲
+ 0x8933: "lian2", // 褳
+ 0x8934: "lan2", // 褴
+ 0x8935: "li2", // 褵
+ 0x8936: "zhe3", // 褶
+ 0x8937: "shi1", // 褷
+ 0x8938: "lv3", // 褸
+ 0x8939: "yi4", // 褹
+ 0x893a: "die1", // 褺
+ 0x893b: "xie4", // 褻
+ 0x893c: "xian1", // 褼
+ 0x893d: "wei4", // 褽
+ 0x893e: "biao3", // 褾
+ 0x893f: "cao2", // 褿
+ 0x8940: "ji1", // 襀
+ 0x8941: "qiang3", // 襁
+ 0x8942: "sen1", // 襂
+ 0x8943: "bao1", // 襃
+ 0x8944: "xiang1", // 襄
+ 0x8945: "bi4", // 襅
+ 0x8946: "fu2", // 襆
+ 0x8947: "jian3", // 襇
+ 0x8948: "zhuan4", // 襈
+ 0x8949: "jian3", // 襉
+ 0x894a: "cui4", // 襊
+ 0x894b: "ji2", // 襋
+ 0x894c: "dan1", // 襌
+ 0x894d: "za2", // 襍
+ 0x894e: "fan2", // 襎
+ 0x894f: "bo2", // 襏
+ 0x8950: "xiang4", // 襐
+ 0x8951: "xin2", // 襑
+ 0x8952: "bie2", // 襒
+ 0x8953: "rao2", // 襓
+ 0x8954: "man3", // 襔
+ 0x8955: "lan2", // 襕
+ 0x8956: "ao3", // 襖
+ 0x8957: "ze2", // 襗
+ 0x8958: "gui4", // 襘
+ 0x8959: "cao4", // 襙
+ 0x895a: "sui4", // 襚
+ 0x895b: "nong2", // 襛
+ 0x895c: "chan1", // 襜
+ 0x895d: "lian3", // 襝
+ 0x895e: "bi4", // 襞
+ 0x895f: "jin1", // 襟
+ 0x8960: "dang1", // 襠
+ 0x8961: "shu3", // 襡
+ 0x8962: "tan3", // 襢
+ 0x8963: "bi4", // 襣
+ 0x8964: "lan2", // 襤
+ 0x8965: "fu2", // 襥
+ 0x8966: "ru2", // 襦
+ 0x8967: "zhi3", // 襧
+ 0x8968: "dui4", // 襨
+ 0x8969: "shu3", // 襩
+ 0x896a: "wa4", // 襪
+ 0x896b: "shi4", // 襫
+ 0x896c: "bai3", // 襬
+ 0x896d: "xie2", // 襭
+ 0x896e: "bo2", // 襮
+ 0x896f: "chen4", // 襯
+ 0x8970: "lai4", // 襰
+ 0x8971: "long2", // 襱
+ 0x8972: "xi2", // 襲
+ 0x8973: "xian1", // 襳
+ 0x8974: "lan2", // 襴
+ 0x8975: "zhe3", // 襵
+ 0x8976: "dai4", // 襶
+ 0x8977: "ju3", // 襷
+ 0x8978: "zan4", // 襸
+ 0x8979: "shi1", // 襹
+ 0x897a: "jian3", // 襺
+ 0x897b: "pan4", // 襻
+ 0x897c: "yi4", // 襼
+ 0x897d: "lan2", // 襽
+ 0x897e: "ya4", // 襾
+ 0x897f: "xi1", // 西
+ 0x8980: "xi1", // 覀
+ 0x8981: "yao4", // 要
+ 0x8982: "feng3", // 覂
+ 0x8983: "tan2", // 覃
+ 0x8984: "fu4", // 覄
+ 0x8985: "fiao4", // 覅
+ 0x8986: "fu4", // 覆
+ 0x8987: "ba4", // 覇
+ 0x8988: "he2", // 覈
+ 0x8989: "ji1", // 覉
+ 0x898a: "ji1", // 覊
+ 0x898b: "jian4", // 見
+ 0x898c: "guan1", // 覌
+ 0x898d: "bian4", // 覍
+ 0x898e: "yan4", // 覎
+ 0x898f: "gui1", // 規
+ 0x8990: "jue2", // 覐
+ 0x8991: "pian3", // 覑
+ 0x8992: "mao4", // 覒
+ 0x8993: "mi4", // 覓
+ 0x8994: "mi4", // 覔
+ 0x8995: "mie4", // 覕
+ 0x8996: "shi4", // 視
+ 0x8997: "si4", // 覗
+ 0x8998: "chan1", // 覘
+ 0x8999: "luo2", // 覙
+ 0x899a: "jue2", // 覚
+ 0x899b: "mi4", // 覛
+ 0x899c: "tiao4", // 覜
+ 0x899d: "lian2", // 覝
+ 0x899e: "yao4", // 覞
+ 0x899f: "zhi4", // 覟
+ 0x89a0: "jun1", // 覠
+ 0x89a1: "xi2", // 覡
+ 0x89a2: "shan3", // 覢
+ 0x89a3: "wei1", // 覣
+ 0x89a4: "xi4", // 覤
+ 0x89a5: "tian3", // 覥
+ 0x89a6: "yu2", // 覦
+ 0x89a7: "lan3", // 覧
+ 0x89a8: "e4", // 覨
+ 0x89a9: "du3", // 覩
+ 0x89aa: "qin1", // 親
+ 0x89ab: "pang3", // 覫
+ 0x89ac: "ji4", // 覬
+ 0x89ad: "ming2", // 覭
+ 0x89ae: "ying2", // 覮
+ 0x89af: "gou4", // 覯
+ 0x89b0: "qu1", // 覰
+ 0x89b1: "zhan4", // 覱
+ 0x89b2: "jin4", // 覲
+ 0x89b3: "guan1", // 観
+ 0x89b4: "deng1", // 覴
+ 0x89b5: "jian4", // 覵
+ 0x89b6: "luo2", // 覶
+ 0x89b7: "qu4", // 覷
+ 0x89b8: "jian1", // 覸
+ 0x89b9: "wei2", // 覹
+ 0x89ba: "jue2", // 覺
+ 0x89bb: "qu1", // 覻
+ 0x89bc: "luo2", // 覼
+ 0x89bd: "lan3", // 覽
+ 0x89be: "shen3", // 覾
+ 0x89bf: "di2", // 覿
+ 0x89c0: "guan1", // 觀
+ 0x89c1: "jian4", // 见
+ 0x89c2: "guan1", // 观
+ 0x89c3: "yan4", // 觃
+ 0x89c4: "gui1", // 规
+ 0x89c5: "mi4", // 觅
+ 0x89c6: "shi4", // 视
+ 0x89c7: "chan1", // 觇
+ 0x89c8: "lan3", // 览
+ 0x89c9: "jue2", // 觉
+ 0x89ca: "ji4", // 觊
+ 0x89cb: "xi2", // 觋
+ 0x89cc: "di2", // 觌
+ 0x89cd: "tian3", // 觍
+ 0x89ce: "yu2", // 觎
+ 0x89cf: "gou4", // 觏
+ 0x89d0: "jin4", // 觐
+ 0x89d1: "qu4", // 觑
+ 0x89d2: "jiao3", // 角
+ 0x89d3: "qiu2", // 觓
+ 0x89d4: "jin1", // 觔
+ 0x89d5: "cu1", // 觕
+ 0x89d6: "jue2", // 觖
+ 0x89d7: "zhi4", // 觗
+ 0x89d8: "chao4", // 觘
+ 0x89d9: "ji2", // 觙
+ 0x89da: "gu1", // 觚
+ 0x89db: "dan4", // 觛
+ 0x89dc: "zi1", // 觜
+ 0x89dd: "di3", // 觝
+ 0x89de: "shang1", // 觞
+ 0x89df: "hua4", // 觟
+ 0x89e0: "quan2", // 觠
+ 0x89e1: "ge2", // 觡
+ 0x89e2: "shi4", // 觢
+ 0x89e3: "jie3", // 解
+ 0x89e4: "gui3", // 觤
+ 0x89e5: "gong1", // 觥
+ 0x89e6: "chu4", // 触
+ 0x89e7: "jie3", // 觧
+ 0x89e8: "hun4", // 觨
+ 0x89e9: "qiu2", // 觩
+ 0x89ea: "xing1", // 觪
+ 0x89eb: "su4", // 觫
+ 0x89ec: "ni2", // 觬
+ 0x89ed: "ji1", // 觭
+ 0x89ee: "lu4", // 觮
+ 0x89ef: "zhi4", // 觯
+ 0x89f0: "zha1", // 觰
+ 0x89f1: "bi4", // 觱
+ 0x89f2: "xing1", // 觲
+ 0x89f3: "hu2", // 觳
+ 0x89f4: "shang1", // 觴
+ 0x89f5: "gong1", // 觵
+ 0x89f6: "zhi4", // 觶
+ 0x89f7: "xue2", // 觷
+ 0x89f8: "chu4", // 觸
+ 0x89f9: "xi1", // 觹
+ 0x89fa: "yi2", // 觺
+ 0x89fb: "li4", // 觻
+ 0x89fc: "jue2", // 觼
+ 0x89fd: "xi1", // 觽
+ 0x89fe: "yan4", // 觾
+ 0x89ff: "xi1", // 觿
+ 0x8a00: "yan2", // 言
+ 0x8a01: "yan2", // 訁
+ 0x8a02: "ding4", // 訂
+ 0x8a03: "fu4", // 訃
+ 0x8a04: "qiu2", // 訄
+ 0x8a05: "qiu2", // 訅
+ 0x8a06: "jiao4", // 訆
+ 0x8a07: "hong1", // 訇
+ 0x8a08: "ji4", // 計
+ 0x8a09: "fan1", // 訉
+ 0x8a0a: "xun4", // 訊
+ 0x8a0b: "diao4", // 訋
+ 0x8a0c: "hong4", // 訌
+ 0x8a0d: "chai4", // 訍
+ 0x8a0e: "tao3", // 討
+ 0x8a0f: "xu1", // 訏
+ 0x8a10: "jie2", // 訐
+ 0x8a11: "yi2", // 訑
+ 0x8a12: "ren4", // 訒
+ 0x8a13: "xun4", // 訓
+ 0x8a14: "yin2", // 訔
+ 0x8a15: "shan4", // 訕
+ 0x8a16: "qi4", // 訖
+ 0x8a17: "tuo1", // 託
+ 0x8a18: "ji4", // 記
+ 0x8a19: "xun4", // 訙
+ 0x8a1a: "yin2", // 訚
+ 0x8a1b: "e2", // 訛
+ 0x8a1c: "fen1", // 訜
+ 0x8a1d: "ya4", // 訝
+ 0x8a1e: "yao1", // 訞
+ 0x8a1f: "song4", // 訟
+ 0x8a20: "shen3", // 訠
+ 0x8a21: "yin2", // 訡
+ 0x8a22: "xin1", // 訢
+ 0x8a23: "jue2", // 訣
+ 0x8a24: "xiao2", // 訤
+ 0x8a25: "ne4", // 訥
+ 0x8a26: "chen2", // 訦
+ 0x8a27: "you2", // 訧
+ 0x8a28: "zhi3", // 訨
+ 0x8a29: "xiong1", // 訩
+ 0x8a2a: "fang3", // 訪
+ 0x8a2b: "xin4", // 訫
+ 0x8a2c: "chao1", // 訬
+ 0x8a2d: "she4", // 設
+ 0x8a2e: "yan2", // 訮
+ 0x8a2f: "sa3", // 訯
+ 0x8a30: "zhun4", // 訰
+ 0x8a31: "xu3", // 許
+ 0x8a32: "yi4", // 訲
+ 0x8a33: "yi4", // 訳
+ 0x8a34: "su4", // 訴
+ 0x8a35: "chi1", // 訵
+ 0x8a36: "he1", // 訶
+ 0x8a37: "shen1", // 訷
+ 0x8a38: "he2", // 訸
+ 0x8a39: "xu4", // 訹
+ 0x8a3a: "zhen3", // 診
+ 0x8a3b: "zhu4", // 註
+ 0x8a3c: "zheng4", // 証
+ 0x8a3d: "gou4", // 訽
+ 0x8a3e: "zi1", // 訾
+ 0x8a3f: "zi3", // 訿
+ 0x8a40: "zhan1", // 詀
+ 0x8a41: "gu3", // 詁
+ 0x8a42: "fu4", // 詂
+ 0x8a43: "jian3", // 詃
+ 0x8a44: "die2", // 詄
+ 0x8a45: "ling2", // 詅
+ 0x8a46: "di3", // 詆
+ 0x8a47: "yang4", // 詇
+ 0x8a48: "li4", // 詈
+ 0x8a49: "nao2", // 詉
+ 0x8a4a: "pan4", // 詊
+ 0x8a4b: "zhou4", // 詋
+ 0x8a4c: "gan4", // 詌
+ 0x8a4d: "yi4", // 詍
+ 0x8a4e: "ju4", // 詎
+ 0x8a4f: "yao4", // 詏
+ 0x8a50: "zha4", // 詐
+ 0x8a51: "yi2", // 詑
+ 0x8a52: "yi2", // 詒
+ 0x8a53: "qu3", // 詓
+ 0x8a54: "zhao4", // 詔
+ 0x8a55: "ping2", // 評
+ 0x8a56: "bi4", // 詖
+ 0x8a57: "xiong4", // 詗
+ 0x8a58: "qu1", // 詘
+ 0x8a59: "ba2", // 詙
+ 0x8a5a: "da2", // 詚
+ 0x8a5b: "zu3", // 詛
+ 0x8a5c: "tao1", // 詜
+ 0x8a5d: "zhu3", // 詝
+ 0x8a5e: "ci2", // 詞
+ 0x8a5f: "zhe2", // 詟
+ 0x8a60: "yong3", // 詠
+ 0x8a61: "xu3", // 詡
+ 0x8a62: "xun2", // 詢
+ 0x8a63: "yi4", // 詣
+ 0x8a64: "huang3", // 詤
+ 0x8a65: "he2", // 詥
+ 0x8a66: "shi4", // 試
+ 0x8a67: "cha2", // 詧
+ 0x8a68: "xiao4", // 詨
+ 0x8a69: "shi1", // 詩
+ 0x8a6a: "hen3", // 詪
+ 0x8a6b: "cha4", // 詫
+ 0x8a6c: "gou4", // 詬
+ 0x8a6d: "gui3", // 詭
+ 0x8a6e: "quan2", // 詮
+ 0x8a6f: "hui4", // 詯
+ 0x8a70: "jie2", // 詰
+ 0x8a71: "hua4", // 話
+ 0x8a72: "gai1", // 該
+ 0x8a73: "xiang2", // 詳
+ 0x8a74: "wei1", // 詴
+ 0x8a75: "shen1", // 詵
+ 0x8a76: "zhou4", // 詶
+ 0x8a77: "tong2", // 詷
+ 0x8a78: "mi2", // 詸
+ 0x8a79: "zhan1", // 詹
+ 0x8a7a: "ming4", // 詺
+ 0x8a7b: "e4", // 詻
+ 0x8a7c: "hui1", // 詼
+ 0x8a7d: "yan2", // 詽
+ 0x8a7e: "xiong1", // 詾
+ 0x8a7f: "gua4", // 詿
+ 0x8a80: "er4", // 誀
+ 0x8a81: "bing4", // 誁
+ 0x8a82: "tiao3", // 誂
+ 0x8a83: "yi2", // 誃
+ 0x8a84: "lei3", // 誄
+ 0x8a85: "zhu1", // 誅
+ 0x8a86: "kuang1", // 誆
+ 0x8a87: "kua1", // 誇
+ 0x8a88: "wu1", // 誈
+ 0x8a89: "yu4", // 誉
+ 0x8a8a: "teng2", // 誊
+ 0x8a8b: "ji4", // 誋
+ 0x8a8c: "zhi4", // 誌
+ 0x8a8d: "ren4", // 認
+ 0x8a8e: "cu4", // 誎
+ 0x8a8f: "lang3", // 誏
+ 0x8a90: "e2", // 誐
+ 0x8a91: "kuang2", // 誑
+ 0x8a92: "ei2", // 誒
+ 0x8a93: "shi4", // 誓
+ 0x8a94: "ting3", // 誔
+ 0x8a95: "dan4", // 誕
+ 0x8a96: "bei4", // 誖
+ 0x8a97: "chan2", // 誗
+ 0x8a98: "you4", // 誘
+ 0x8a99: "keng1", // 誙
+ 0x8a9a: "qiao4", // 誚
+ 0x8a9b: "qin1", // 誛
+ 0x8a9c: "shua4", // 誜
+ 0x8a9d: "an1", // 誝
+ 0x8a9e: "yu3", // 語
+ 0x8a9f: "xiao4", // 誟
+ 0x8aa0: "cheng2", // 誠
+ 0x8aa1: "jie4", // 誡
+ 0x8aa2: "xian4", // 誢
+ 0x8aa3: "wu1", // 誣
+ 0x8aa4: "wu4", // 誤
+ 0x8aa5: "gao4", // 誥
+ 0x8aa6: "song4", // 誦
+ 0x8aa7: "bu1", // 誧
+ 0x8aa8: "hui4", // 誨
+ 0x8aa9: "jing4", // 誩
+ 0x8aaa: "shuo1", // 說
+ 0x8aab: "zhen4", // 誫
+ 0x8aac: "shuo1", // 説
+ 0x8aad: "du2", // 読
+ 0x8aae: "hua1", // 誮
+ 0x8aaf: "chang4", // 誯
+ 0x8ab0: "shui2", // 誰
+ 0x8ab1: "jie2", // 誱
+ 0x8ab2: "ke4", // 課
+ 0x8ab3: "qu1", // 誳
+ 0x8ab4: "cong2", // 誴
+ 0x8ab5: "xiao2", // 誵
+ 0x8ab6: "sui4", // 誶
+ 0x8ab7: "wang3", // 誷
+ 0x8ab8: "xian2", // 誸
+ 0x8ab9: "fei3", // 誹
+ 0x8aba: "chi1", // 誺
+ 0x8abb: "ta4", // 誻
+ 0x8abc: "yi4", // 誼
+ 0x8abd: "ni4", // 誽
+ 0x8abe: "yin2", // 誾
+ 0x8abf: "diao4", // 調
+ 0x8ac0: "pi3", // 諀
+ 0x8ac1: "zhuo2", // 諁
+ 0x8ac2: "chan3", // 諂
+ 0x8ac3: "chen1", // 諃
+ 0x8ac4: "zhun1", // 諄
+ 0x8ac5: "ji4", // 諅
+ 0x8ac6: "qi1", // 諆
+ 0x8ac7: "tan2", // 談
+ 0x8ac8: "zhui4", // 諈
+ 0x8ac9: "wei3", // 諉
+ 0x8aca: "ju1", // 諊
+ 0x8acb: "qing3", // 請
+ 0x8acc: "dong3", // 諌
+ 0x8acd: "zheng4", // 諍
+ 0x8ace: "ze2", // 諎
+ 0x8acf: "zou1", // 諏
+ 0x8ad0: "qian1", // 諐
+ 0x8ad1: "zhuo2", // 諑
+ 0x8ad2: "liang4", // 諒
+ 0x8ad3: "jian4", // 諓
+ 0x8ad4: "chu4", // 諔
+ 0x8ad5: "hao2", // 諕
+ 0x8ad6: "lun4", // 論
+ 0x8ad7: "shen3", // 諗
+ 0x8ad8: "biao3", // 諘
+ 0x8ad9: "hua4", // 諙
+ 0x8ada: "pian2", // 諚
+ 0x8adb: "yu2", // 諛
+ 0x8adc: "die2", // 諜
+ 0x8add: "xu1", // 諝
+ 0x8ade: "pian3", // 諞
+ 0x8adf: "shi4", // 諟
+ 0x8ae0: "xuan1", // 諠
+ 0x8ae1: "shi4", // 諡
+ 0x8ae2: "hun4", // 諢
+ 0x8ae3: "hua4", // 諣
+ 0x8ae4: "e4", // 諤
+ 0x8ae5: "zhong4", // 諥
+ 0x8ae6: "di4", // 諦
+ 0x8ae7: "xie2", // 諧
+ 0x8ae8: "fu2", // 諨
+ 0x8ae9: "pu3", // 諩
+ 0x8aea: "ting2", // 諪
+ 0x8aeb: "jian4", // 諫
+ 0x8aec: "qi3", // 諬
+ 0x8aed: "yu4", // 諭
+ 0x8aee: "zi1", // 諮
+ 0x8aef: "zhuan1", // 諯
+ 0x8af0: "xi3", // 諰
+ 0x8af1: "hui4", // 諱
+ 0x8af2: "yin1", // 諲
+ 0x8af3: "an1", // 諳
+ 0x8af4: "xian2", // 諴
+ 0x8af5: "nan2", // 諵
+ 0x8af6: "chen2", // 諶
+ 0x8af7: "feng3", // 諷
+ 0x8af8: "zhu1", // 諸
+ 0x8af9: "yang2", // 諹
+ 0x8afa: "yan4", // 諺
+ 0x8afb: "huang2", // 諻
+ 0x8afc: "xuan1", // 諼
+ 0x8afd: "ge2", // 諽
+ 0x8afe: "nuo4", // 諾
+ 0x8aff: "qi1", // 諿
+ 0x8b00: "mou2", // 謀
+ 0x8b01: "ye4", // 謁
+ 0x8b02: "wei4", // 謂
+ 0x8b03: "xing1", // 謃
+ 0x8b04: "teng2", // 謄
+ 0x8b05: "zhou1", // 謅
+ 0x8b06: "shan4", // 謆
+ 0x8b07: "jian3", // 謇
+ 0x8b08: "po2", // 謈
+ 0x8b09: "kui4", // 謉
+ 0x8b0a: "huang3", // 謊
+ 0x8b0b: "huo4", // 謋
+ 0x8b0c: "ge1", // 謌
+ 0x8b0d: "ying2", // 謍
+ 0x8b0e: "mi2", // 謎
+ 0x8b0f: "xiao3", // 謏
+ 0x8b10: "mi4", // 謐
+ 0x8b11: "xi3", // 謑
+ 0x8b12: "qiang1", // 謒
+ 0x8b13: "chen1", // 謓
+ 0x8b14: "xue4", // 謔
+ 0x8b15: "ti2", // 謕
+ 0x8b16: "su4", // 謖
+ 0x8b17: "bang4", // 謗
+ 0x8b18: "chi2", // 謘
+ 0x8b19: "qian1", // 謙
+ 0x8b1a: "shi4", // 謚
+ 0x8b1b: "jiang3", // 講
+ 0x8b1c: "yuan2", // 謜
+ 0x8b1d: "xie4", // 謝
+ 0x8b1e: "he4", // 謞
+ 0x8b1f: "tao1", // 謟
+ 0x8b20: "yao2", // 謠
+ 0x8b21: "yao2", // 謡
+ 0x8b22: "lu1", // 謢
+ 0x8b23: "yu2", // 謣
+ 0x8b24: "biao1", // 謤
+ 0x8b25: "cong4", // 謥
+ 0x8b26: "qing4", // 謦
+ 0x8b27: "li2", // 謧
+ 0x8b28: "mo2", // 謨
+ 0x8b29: "mo2", // 謩
+ 0x8b2a: "shang1", // 謪
+ 0x8b2b: "zhe2", // 謫
+ 0x8b2c: "miu4", // 謬
+ 0x8b2d: "jian3", // 謭
+ 0x8b2e: "ze2", // 謮
+ 0x8b2f: "jie1", // 謯
+ 0x8b30: "lian2", // 謰
+ 0x8b31: "lou2", // 謱
+ 0x8b32: "can4", // 謲
+ 0x8b33: "ou1", // 謳
+ 0x8b34: "gun4", // 謴
+ 0x8b35: "xi2", // 謵
+ 0x8b36: "zhuo2", // 謶
+ 0x8b37: "ao2", // 謷
+ 0x8b38: "ao2", // 謸
+ 0x8b39: "jin3", // 謹
+ 0x8b3a: "zhe2", // 謺
+ 0x8b3b: "yi2", // 謻
+ 0x8b3c: "hu1", // 謼
+ 0x8b3d: "jiang4", // 謽
+ 0x8b3e: "man2", // 謾
+ 0x8b3f: "chao2", // 謿
+ 0x8b40: "han4", // 譀
+ 0x8b41: "hua2", // 譁
+ 0x8b42: "chan3", // 譂
+ 0x8b43: "xu1", // 譃
+ 0x8b44: "zeng1", // 譄
+ 0x8b45: "se4", // 譅
+ 0x8b46: "xi1", // 譆
+ 0x8b47: "zha1", // 譇
+ 0x8b48: "dui4", // 譈
+ 0x8b49: "zheng4", // 證
+ 0x8b4a: "nao2", // 譊
+ 0x8b4b: "lan2", // 譋
+ 0x8b4c: "e2", // 譌
+ 0x8b4d: "ying1", // 譍
+ 0x8b4e: "jue2", // 譎
+ 0x8b4f: "ji1", // 譏
+ 0x8b50: "zun3", // 譐
+ 0x8b51: "jiao3", // 譑
+ 0x8b52: "bo4", // 譒
+ 0x8b53: "hui4", // 譓
+ 0x8b54: "zhuan4", // 譔
+ 0x8b55: "wu2", // 譕
+ 0x8b56: "zen4", // 譖
+ 0x8b57: "zha2", // 譗
+ 0x8b58: "shi2", // 識
+ 0x8b59: "qiao4", // 譙
+ 0x8b5a: "tan2", // 譚
+ 0x8b5b: "zen4", // 譛
+ 0x8b5c: "pu3", // 譜
+ 0x8b5d: "sheng2", // 譝
+ 0x8b5e: "xuan1", // 譞
+ 0x8b5f: "zao4", // 譟
+ 0x8b60: "tan2", // 譠
+ 0x8b61: "dang3", // 譡
+ 0x8b62: "sui4", // 譢
+ 0x8b63: "xian3", // 譣
+ 0x8b64: "ji1", // 譤
+ 0x8b65: "jiao4", // 譥
+ 0x8b66: "jing3", // 警
+ 0x8b67: "zhan4", // 譧
+ 0x8b68: "nang2", // 譨
+ 0x8b69: "yi1", // 譩
+ 0x8b6a: "ai3", // 譪
+ 0x8b6b: "zhan1", // 譫
+ 0x8b6c: "pi4", // 譬
+ 0x8b6d: "hui3", // 譭
+ 0x8b6e: "hua4", // 譮
+ 0x8b6f: "yi4", // 譯
+ 0x8b70: "yi4", // 議
+ 0x8b71: "shan4", // 譱
+ 0x8b72: "rang4", // 譲
+ 0x8b73: "nou4", // 譳
+ 0x8b74: "qian3", // 譴
+ 0x8b75: "dui4", // 譵
+ 0x8b76: "ta4", // 譶
+ 0x8b77: "hu4", // 護
+ 0x8b78: "zhou1", // 譸
+ 0x8b79: "hao2", // 譹
+ 0x8b7a: "ai4", // 譺
+ 0x8b7b: "ying1", // 譻
+ 0x8b7c: "jian4", // 譼
+ 0x8b7d: "yu4", // 譽
+ 0x8b7e: "jian3", // 譾
+ 0x8b7f: "hui4", // 譿
+ 0x8b80: "du2", // 讀
+ 0x8b81: "zhe2", // 讁
+ 0x8b82: "xuan4", // 讂
+ 0x8b83: "zan4", // 讃
+ 0x8b84: "lei3", // 讄
+ 0x8b85: "shen3", // 讅
+ 0x8b86: "wei4", // 讆
+ 0x8b87: "chan3", // 讇
+ 0x8b88: "li4", // 讈
+ 0x8b89: "yi2", // 讉
+ 0x8b8a: "bian4", // 變
+ 0x8b8b: "zhe2", // 讋
+ 0x8b8c: "yan4", // 讌
+ 0x8b8d: "e4", // 讍
+ 0x8b8e: "chou2", // 讎
+ 0x8b8f: "wei4", // 讏
+ 0x8b90: "chou2", // 讐
+ 0x8b91: "yao4", // 讑
+ 0x8b92: "chan2", // 讒
+ 0x8b93: "rang4", // 讓
+ 0x8b94: "yin3", // 讔
+ 0x8b95: "lan2", // 讕
+ 0x8b96: "chen4", // 讖
+ 0x8b97: "xie2", // 讗
+ 0x8b98: "nie4", // 讘
+ 0x8b99: "huan1", // 讙
+ 0x8b9a: "zan4", // 讚
+ 0x8b9b: "yi4", // 讛
+ 0x8b9c: "dang3", // 讜
+ 0x8b9d: "zhan2", // 讝
+ 0x8b9e: "yan4", // 讞
+ 0x8b9f: "du2", // 讟
+ 0x8ba0: "yan2", // 讠
+ 0x8ba1: "ji4", // 计
+ 0x8ba2: "ding4", // 订
+ 0x8ba3: "fu4", // 讣
+ 0x8ba4: "ren4", // 认
+ 0x8ba5: "ji1", // 讥
+ 0x8ba6: "jie2", // 讦
+ 0x8ba7: "hong4", // 讧
+ 0x8ba8: "tao3", // 讨
+ 0x8ba9: "rang4", // 让
+ 0x8baa: "shan4", // 讪
+ 0x8bab: "qi4", // 讫
+ 0x8bac: "tuo1", // 讬
+ 0x8bad: "xun4", // 训
+ 0x8bae: "yi4", // 议
+ 0x8baf: "xun4", // 讯
+ 0x8bb0: "ji4", // 记
+ 0x8bb1: "ren4", // 讱
+ 0x8bb2: "jiang3", // 讲
+ 0x8bb3: "hui4", // 讳
+ 0x8bb4: "ou1", // 讴
+ 0x8bb5: "ju4", // 讵
+ 0x8bb6: "ya4", // 讶
+ 0x8bb7: "ne4", // 讷
+ 0x8bb8: "xu3", // 许
+ 0x8bb9: "e2", // 讹
+ 0x8bba: "lun4", // 论
+ 0x8bbb: "xiong1", // 讻
+ 0x8bbc: "song4", // 讼
+ 0x8bbd: "feng4", // 讽
+ 0x8bbe: "she4", // 设
+ 0x8bbf: "fang3", // 访
+ 0x8bc0: "jue2", // 诀
+ 0x8bc1: "zheng4", // 证
+ 0x8bc2: "gu3", // 诂
+ 0x8bc3: "he1", // 诃
+ 0x8bc4: "ping2", // 评
+ 0x8bc5: "zu3", // 诅
+ 0x8bc6: "shi4", // 识
+ 0x8bc7: "xiong4", // 诇
+ 0x8bc8: "zha4", // 诈
+ 0x8bc9: "su4", // 诉
+ 0x8bca: "zhen3", // 诊
+ 0x8bcb: "di3", // 诋
+ 0x8bcc: "zhou1", // 诌
+ 0x8bcd: "ci2", // 词
+ 0x8bce: "qu1", // 诎
+ 0x8bcf: "zhao4", // 诏
+ 0x8bd0: "bi4", // 诐
+ 0x8bd1: "yi4", // 译
+ 0x8bd2: "yi2", // 诒
+ 0x8bd3: "kuang1", // 诓
+ 0x8bd4: "lei3", // 诔
+ 0x8bd5: "shi4", // 试
+ 0x8bd6: "gua4", // 诖
+ 0x8bd7: "shi1", // 诗
+ 0x8bd8: "ji2", // 诘
+ 0x8bd9: "hui1", // 诙
+ 0x8bda: "cheng2", // 诚
+ 0x8bdb: "zhu1", // 诛
+ 0x8bdc: "shen1", // 诜
+ 0x8bdd: "hua4", // 话
+ 0x8bde: "dan4", // 诞
+ 0x8bdf: "gou4", // 诟
+ 0x8be0: "quan2", // 诠
+ 0x8be1: "gui3", // 诡
+ 0x8be2: "xun2", // 询
+ 0x8be3: "yi4", // 诣
+ 0x8be4: "zheng1", // 诤
+ 0x8be5: "gai1", // 该
+ 0x8be6: "xiang2", // 详
+ 0x8be7: "cha4", // 诧
+ 0x8be8: "hun4", // 诨
+ 0x8be9: "xu3", // 诩
+ 0x8bea: "zhou1", // 诪
+ 0x8beb: "jie4", // 诫
+ 0x8bec: "wu1", // 诬
+ 0x8bed: "yu3", // 语
+ 0x8bee: "qiao4", // 诮
+ 0x8bef: "wu4", // 误
+ 0x8bf0: "gao4", // 诰
+ 0x8bf1: "you4", // 诱
+ 0x8bf2: "hui4", // 诲
+ 0x8bf3: "kuang2", // 诳
+ 0x8bf4: "shuo1", // 说
+ 0x8bf5: "song4", // 诵
+ 0x8bf6: "ei2", // 诶
+ 0x8bf7: "qing3", // 请
+ 0x8bf8: "zhu1", // 诸
+ 0x8bf9: "zou1", // 诹
+ 0x8bfa: "nuo4", // 诺
+ 0x8bfb: "du2", // 读
+ 0x8bfc: "zhuo2", // 诼
+ 0x8bfd: "fei3", // 诽
+ 0x8bfe: "ke4", // 课
+ 0x8bff: "wei3", // 诿
+ 0x8c00: "yu2", // 谀
+ 0x8c01: "shei2", // 谁
+ 0x8c02: "shen3", // 谂
+ 0x8c03: "diao4", // 调
+ 0x8c04: "chan3", // 谄
+ 0x8c05: "liang4", // 谅
+ 0x8c06: "zhun1", // 谆
+ 0x8c07: "sui4", // 谇
+ 0x8c08: "tan2", // 谈
+ 0x8c09: "shen3", // 谉
+ 0x8c0a: "yi4", // 谊
+ 0x8c0b: "mou2", // 谋
+ 0x8c0c: "chen2", // 谌
+ 0x8c0d: "die2", // 谍
+ 0x8c0e: "huang3", // 谎
+ 0x8c0f: "jian4", // 谏
+ 0x8c10: "xie2", // 谐
+ 0x8c11: "xue4", // 谑
+ 0x8c12: "ye4", // 谒
+ 0x8c13: "wei4", // 谓
+ 0x8c14: "e4", // 谔
+ 0x8c15: "yu4", // 谕
+ 0x8c16: "xuan1", // 谖
+ 0x8c17: "chan2", // 谗
+ 0x8c18: "zi1", // 谘
+ 0x8c19: "an1", // 谙
+ 0x8c1a: "yan4", // 谚
+ 0x8c1b: "di4", // 谛
+ 0x8c1c: "mi2", // 谜
+ 0x8c1d: "pian2", // 谝
+ 0x8c1e: "xu1", // 谞
+ 0x8c1f: "mo2", // 谟
+ 0x8c20: "dang3", // 谠
+ 0x8c21: "su4", // 谡
+ 0x8c22: "xie4", // 谢
+ 0x8c23: "yao2", // 谣
+ 0x8c24: "bang4", // 谤
+ 0x8c25: "shi4", // 谥
+ 0x8c26: "qian1", // 谦
+ 0x8c27: "mi4", // 谧
+ 0x8c28: "jin3", // 谨
+ 0x8c29: "man2", // 谩
+ 0x8c2a: "zhe2", // 谪
+ 0x8c2b: "jian3", // 谫
+ 0x8c2c: "miu4", // 谬
+ 0x8c2d: "tan2", // 谭
+ 0x8c2e: "zen4", // 谮
+ 0x8c2f: "qiao2", // 谯
+ 0x8c30: "lan2", // 谰
+ 0x8c31: "pu3", // 谱
+ 0x8c32: "jue2", // 谲
+ 0x8c33: "yan4", // 谳
+ 0x8c34: "qian3", // 谴
+ 0x8c35: "zhan1", // 谵
+ 0x8c36: "chen4", // 谶
+ 0x8c37: "gu3", // 谷
+ 0x8c38: "qian1", // 谸
+ 0x8c39: "hong2", // 谹
+ 0x8c3a: "xia1", // 谺
+ 0x8c3b: "ji2", // 谻
+ 0x8c3c: "hong2", // 谼
+ 0x8c3d: "han1", // 谽
+ 0x8c3e: "hong1", // 谾
+ 0x8c3f: "xi1", // 谿
+ 0x8c40: "xi1", // 豀
+ 0x8c41: "huo1", // 豁
+ 0x8c42: "liao2", // 豂
+ 0x8c43: "han3", // 豃
+ 0x8c44: "du2", // 豄
+ 0x8c45: "long2", // 豅
+ 0x8c46: "dou4", // 豆
+ 0x8c47: "jiang1", // 豇
+ 0x8c48: "qi3", // 豈
+ 0x8c49: "shi4", // 豉
+ 0x8c4a: "li3", // 豊
+ 0x8c4b: "deng1", // 豋
+ 0x8c4c: "wan1", // 豌
+ 0x8c4d: "bi1", // 豍
+ 0x8c4e: "shu4", // 豎
+ 0x8c4f: "xian4", // 豏
+ 0x8c50: "feng1", // 豐
+ 0x8c51: "zhi4", // 豑
+ 0x8c52: "zhi4", // 豒
+ 0x8c53: "yan4", // 豓
+ 0x8c54: "yan4", // 豔
+ 0x8c55: "shi3", // 豕
+ 0x8c56: "chu4", // 豖
+ 0x8c57: "hui1", // 豗
+ 0x8c58: "tun2", // 豘
+ 0x8c59: "yi4", // 豙
+ 0x8c5a: "tun2", // 豚
+ 0x8c5b: "yi4", // 豛
+ 0x8c5c: "jian1", // 豜
+ 0x8c5d: "ba1", // 豝
+ 0x8c5e: "hou4", // 豞
+ 0x8c5f: "e4", // 豟
+ 0x8c60: "chu2", // 豠
+ 0x8c61: "xiang4", // 象
+ 0x8c62: "huan4", // 豢
+ 0x8c63: "jian1", // 豣
+ 0x8c64: "ken3", // 豤
+ 0x8c65: "gai1", // 豥
+ 0x8c66: "ju4", // 豦
+ 0x8c67: "fu1", // 豧
+ 0x8c68: "xi1", // 豨
+ 0x8c69: "bin1", // 豩
+ 0x8c6a: "hao2", // 豪
+ 0x8c6b: "yu4", // 豫
+ 0x8c6c: "zhu1", // 豬
+ 0x8c6d: "jia1", // 豭
+ 0x8c6e: "fen2", // 豮
+ 0x8c6f: "xi1", // 豯
+ 0x8c70: "bo2", // 豰
+ 0x8c71: "wen1", // 豱
+ 0x8c72: "huan2", // 豲
+ 0x8c73: "bin1", // 豳
+ 0x8c74: "di2", // 豴
+ 0x8c75: "zong1", // 豵
+ 0x8c76: "fen2", // 豶
+ 0x8c77: "yi4", // 豷
+ 0x8c78: "zhi4", // 豸
+ 0x8c79: "bao4", // 豹
+ 0x8c7a: "chai2", // 豺
+ 0x8c7b: "an4", // 豻
+ 0x8c7c: "pi2", // 豼
+ 0x8c7d: "na4", // 豽
+ 0x8c7e: "pi1", // 豾
+ 0x8c7f: "gou3", // 豿
+ 0x8c80: "na4", // 貀
+ 0x8c81: "you4", // 貁
+ 0x8c82: "diao1", // 貂
+ 0x8c83: "mo4", // 貃
+ 0x8c84: "si4", // 貄
+ 0x8c85: "xiu1", // 貅
+ 0x8c86: "huan2", // 貆
+ 0x8c87: "kun1", // 貇
+ 0x8c88: "he2", // 貈
+ 0x8c89: "hao2", // 貉
+ 0x8c8a: "mo4", // 貊
+ 0x8c8b: "an4", // 貋
+ 0x8c8c: "mao4", // 貌
+ 0x8c8d: "li2", // 貍
+ 0x8c8e: "ni2", // 貎
+ 0x8c8f: "bi3", // 貏
+ 0x8c90: "yu3", // 貐
+ 0x8c91: "jia1", // 貑
+ 0x8c92: "tuan1", // 貒
+ 0x8c93: "mao1", // 貓
+ 0x8c94: "pi2", // 貔
+ 0x8c95: "xi1", // 貕
+ 0x8c96: "yi4", // 貖
+ 0x8c97: "ju4", // 貗
+ 0x8c98: "mo4", // 貘
+ 0x8c99: "chu1", // 貙
+ 0x8c9a: "tan2", // 貚
+ 0x8c9b: "huan1", // 貛
+ 0x8c9c: "jue2", // 貜
+ 0x8c9d: "bei4", // 貝
+ 0x8c9e: "zhen1", // 貞
+ 0x8c9f: "yuan2", // 貟
+ 0x8ca0: "fu4", // 負
+ 0x8ca1: "cai2", // 財
+ 0x8ca2: "gong4", // 貢
+ 0x8ca3: "te4", // 貣
+ 0x8ca4: "yi2", // 貤
+ 0x8ca5: "hang2", // 貥
+ 0x8ca6: "wan2", // 貦
+ 0x8ca7: "pin2", // 貧
+ 0x8ca8: "huo4", // 貨
+ 0x8ca9: "fan4", // 販
+ 0x8caa: "tan1", // 貪
+ 0x8cab: "guan4", // 貫
+ 0x8cac: "ze2", // 責
+ 0x8cad: "zhi4", // 貭
+ 0x8cae: "er4", // 貮
+ 0x8caf: "zhu4", // 貯
+ 0x8cb0: "shi4", // 貰
+ 0x8cb1: "bi4", // 貱
+ 0x8cb2: "zi1", // 貲
+ 0x8cb3: "er4", // 貳
+ 0x8cb4: "gui4", // 貴
+ 0x8cb5: "pian3", // 貵
+ 0x8cb6: "bian3", // 貶
+ 0x8cb7: "mai3", // 買
+ 0x8cb8: "dai4", // 貸
+ 0x8cb9: "sheng4", // 貹
+ 0x8cba: "kuang4", // 貺
+ 0x8cbb: "fei4", // 費
+ 0x8cbc: "tie1", // 貼
+ 0x8cbd: "yi2", // 貽
+ 0x8cbe: "chi2", // 貾
+ 0x8cbf: "mao4", // 貿
+ 0x8cc0: "he4", // 賀
+ 0x8cc1: "bi4", // 賁
+ 0x8cc2: "lu4", // 賂
+ 0x8cc3: "lin4", // 賃
+ 0x8cc4: "hui4", // 賄
+ 0x8cc5: "gai1", // 賅
+ 0x8cc6: "pian2", // 賆
+ 0x8cc7: "zi1", // 資
+ 0x8cc8: "jia3", // 賈
+ 0x8cc9: "xu4", // 賉
+ 0x8cca: "zei2", // 賊
+ 0x8ccb: "jiao3", // 賋
+ 0x8ccc: "gai1", // 賌
+ 0x8ccd: "zang1", // 賍
+ 0x8cce: "jian4", // 賎
+ 0x8ccf: "ying1", // 賏
+ 0x8cd0: "xun4", // 賐
+ 0x8cd1: "zhen4", // 賑
+ 0x8cd2: "she1", // 賒
+ 0x8cd3: "bin1", // 賓
+ 0x8cd4: "bin1", // 賔
+ 0x8cd5: "qiu2", // 賕
+ 0x8cd6: "she1", // 賖
+ 0x8cd7: "chuan4", // 賗
+ 0x8cd8: "zang1", // 賘
+ 0x8cd9: "zhou1", // 賙
+ 0x8cda: "lai4", // 賚
+ 0x8cdb: "zan4", // 賛
+ 0x8cdc: "ci4", // 賜
+ 0x8cdd: "chen1", // 賝
+ 0x8cde: "shang3", // 賞
+ 0x8cdf: "tian3", // 賟
+ 0x8ce0: "pei2", // 賠
+ 0x8ce1: "geng1", // 賡
+ 0x8ce2: "xian2", // 賢
+ 0x8ce3: "mai4", // 賣
+ 0x8ce4: "jian4", // 賤
+ 0x8ce5: "sui4", // 賥
+ 0x8ce6: "fu4", // 賦
+ 0x8ce7: "tan4", // 賧
+ 0x8ce8: "cong2", // 賨
+ 0x8ce9: "cong2", // 賩
+ 0x8cea: "zhi4", // 質
+ 0x8ceb: "ji1", // 賫
+ 0x8cec: "zhang4", // 賬
+ 0x8ced: "du3", // 賭
+ 0x8cee: "jin4", // 賮
+ 0x8cef: "xiong1", // 賯
+ 0x8cf0: "chun3", // 賰
+ 0x8cf1: "yun3", // 賱
+ 0x8cf2: "bao3", // 賲
+ 0x8cf3: "zai1", // 賳
+ 0x8cf4: "lai4", // 賴
+ 0x8cf5: "feng4", // 賵
+ 0x8cf6: "cang4", // 賶
+ 0x8cf7: "ji1", // 賷
+ 0x8cf8: "sheng4", // 賸
+ 0x8cf9: "yi4", // 賹
+ 0x8cfa: "zhuan4", // 賺
+ 0x8cfb: "fu4", // 賻
+ 0x8cfc: "gou4", // 購
+ 0x8cfd: "sai4", // 賽
+ 0x8cfe: "ze2", // 賾
+ 0x8cff: "liao2", // 賿
+ 0x8d00: "yi4", // 贀
+ 0x8d01: "bai4", // 贁
+ 0x8d02: "chen3", // 贂
+ 0x8d03: "wan4", // 贃
+ 0x8d04: "zhi4", // 贄
+ 0x8d05: "zhui4", // 贅
+ 0x8d06: "biao1", // 贆
+ 0x8d07: "yun1", // 贇
+ 0x8d08: "zeng4", // 贈
+ 0x8d09: "dan4", // 贉
+ 0x8d0a: "zan4", // 贊
+ 0x8d0b: "yan4", // 贋
+ 0x8d0c: "pu2", // 贌
+ 0x8d0d: "shan4", // 贍
+ 0x8d0e: "wan4", // 贎
+ 0x8d0f: "ying2", // 贏
+ 0x8d10: "jin4", // 贐
+ 0x8d11: "gan4", // 贑
+ 0x8d12: "xian2", // 贒
+ 0x8d13: "zang1", // 贓
+ 0x8d14: "bi4", // 贔
+ 0x8d15: "du2", // 贕
+ 0x8d16: "shu2", // 贖
+ 0x8d17: "yan4", // 贗
+ 0x8d18: "shang3", // 贘
+ 0x8d19: "xuan4", // 贙
+ 0x8d1a: "long4", // 贚
+ 0x8d1b: "gan4", // 贛
+ 0x8d1c: "zang1", // 贜
+ 0x8d1d: "bei4", // 贝
+ 0x8d1e: "zhen1", // 贞
+ 0x8d1f: "fu4", // 负
+ 0x8d20: "yuan2", // 贠
+ 0x8d21: "gong4", // 贡
+ 0x8d22: "cai2", // 财
+ 0x8d23: "ze2", // 责
+ 0x8d24: "xian2", // 贤
+ 0x8d25: "bai4", // 败
+ 0x8d26: "zhang4", // 账
+ 0x8d27: "huo4", // 货
+ 0x8d28: "zhi4", // 质
+ 0x8d29: "fan4", // 贩
+ 0x8d2a: "tan1", // 贪
+ 0x8d2b: "pin2", // 贫
+ 0x8d2c: "bian3", // 贬
+ 0x8d2d: "gou4", // 购
+ 0x8d2e: "zhu4", // 贮
+ 0x8d2f: "guan4", // 贯
+ 0x8d30: "er4", // 贰
+ 0x8d31: "jian4", // 贱
+ 0x8d32: "ben1", // 贲
+ 0x8d33: "shi4", // 贳
+ 0x8d34: "tie1", // 贴
+ 0x8d35: "gui4", // 贵
+ 0x8d36: "kuang4", // 贶
+ 0x8d37: "dai4", // 贷
+ 0x8d38: "mao4", // 贸
+ 0x8d39: "fei4", // 费
+ 0x8d3a: "he4", // 贺
+ 0x8d3b: "yi2", // 贻
+ 0x8d3c: "zei2", // 贼
+ 0x8d3d: "zhi4", // 贽
+ 0x8d3e: "jia3", // 贾
+ 0x8d3f: "hui4", // 贿
+ 0x8d40: "zi1", // 赀
+ 0x8d41: "lin4", // 赁
+ 0x8d42: "lu4", // 赂
+ 0x8d43: "zang1", // 赃
+ 0x8d44: "zi1", // 资
+ 0x8d45: "gai1", // 赅
+ 0x8d46: "jin4", // 赆
+ 0x8d47: "qiu2", // 赇
+ 0x8d48: "zhen4", // 赈
+ 0x8d49: "lai4", // 赉
+ 0x8d4a: "she1", // 赊
+ 0x8d4b: "fu4", // 赋
+ 0x8d4c: "du3", // 赌
+ 0x8d4d: "ji1", // 赍
+ 0x8d4e: "shu2", // 赎
+ 0x8d4f: "shang3", // 赏
+ 0x8d50: "ci4", // 赐
+ 0x8d51: "bi4", // 赑
+ 0x8d52: "zhou1", // 赒
+ 0x8d53: "geng1", // 赓
+ 0x8d54: "pei2", // 赔
+ 0x8d55: "dan3", // 赕
+ 0x8d56: "lai4", // 赖
+ 0x8d57: "feng4", // 赗
+ 0x8d58: "zhui4", // 赘
+ 0x8d59: "fu4", // 赙
+ 0x8d5a: "zhuan4", // 赚
+ 0x8d5b: "sai4", // 赛
+ 0x8d5c: "ze2", // 赜
+ 0x8d5d: "yan4", // 赝
+ 0x8d5e: "zan4", // 赞
+ 0x8d5f: "yun1", // 赟
+ 0x8d60: "zeng4", // 赠
+ 0x8d61: "shan4", // 赡
+ 0x8d62: "ying2", // 赢
+ 0x8d63: "gan4", // 赣
+ 0x8d64: "chi4", // 赤
+ 0x8d65: "xi1", // 赥
+ 0x8d66: "she4", // 赦
+ 0x8d67: "nan3", // 赧
+ 0x8d68: "tong2", // 赨
+ 0x8d69: "xi4", // 赩
+ 0x8d6a: "cheng1", // 赪
+ 0x8d6b: "he4", // 赫
+ 0x8d6c: "cheng1", // 赬
+ 0x8d6d: "zhe3", // 赭
+ 0x8d6e: "xia2", // 赮
+ 0x8d6f: "tang2", // 赯
+ 0x8d70: "zou3", // 走
+ 0x8d71: "zou3", // 赱
+ 0x8d72: "li4", // 赲
+ 0x8d73: "jiu1", // 赳
+ 0x8d74: "fu4", // 赴
+ 0x8d75: "zhao4", // 赵
+ 0x8d76: "gan3", // 赶
+ 0x8d77: "qi3", // 起
+ 0x8d78: "shan4", // 赸
+ 0x8d79: "qiong2", // 赹
+ 0x8d7a: "yin3", // 赺
+ 0x8d7b: "xian3", // 赻
+ 0x8d7c: "zi1", // 赼
+ 0x8d7d: "jue2", // 赽
+ 0x8d7e: "qin3", // 赾
+ 0x8d7f: "chi2", // 赿
+ 0x8d80: "ci1", // 趀
+ 0x8d81: "chen4", // 趁
+ 0x8d82: "chen4", // 趂
+ 0x8d83: "die2", // 趃
+ 0x8d84: "ju1", // 趄
+ 0x8d85: "chao1", // 超
+ 0x8d86: "di1", // 趆
+ 0x8d87: "xi4", // 趇
+ 0x8d88: "zhan1", // 趈
+ 0x8d89: "jue2", // 趉
+ 0x8d8a: "yue4", // 越
+ 0x8d8b: "qu1", // 趋
+ 0x8d8c: "ji2", // 趌
+ 0x8d8d: "chi2", // 趍
+ 0x8d8e: "chu2", // 趎
+ 0x8d8f: "gua1", // 趏
+ 0x8d90: "xue4", // 趐
+ 0x8d91: "zi1", // 趑
+ 0x8d92: "tiao2", // 趒
+ 0x8d93: "duo3", // 趓
+ 0x8d94: "lie4", // 趔
+ 0x8d95: "gan3", // 趕
+ 0x8d96: "suo1", // 趖
+ 0x8d97: "cu4", // 趗
+ 0x8d98: "xi2", // 趘
+ 0x8d99: "zhao4", // 趙
+ 0x8d9a: "su4", // 趚
+ 0x8d9b: "yin3", // 趛
+ 0x8d9c: "ju2", // 趜
+ 0x8d9d: "jian4", // 趝
+ 0x8d9e: "que4", // 趞
+ 0x8d9f: "tang4", // 趟
+ 0x8da0: "chuo4", // 趠
+ 0x8da1: "cui3", // 趡
+ 0x8da2: "lu4", // 趢
+ 0x8da3: "qu4", // 趣
+ 0x8da4: "dang4", // 趤
+ 0x8da5: "qiu1", // 趥
+ 0x8da6: "zi1", // 趦
+ 0x8da7: "ti2", // 趧
+ 0x8da8: "qu1", // 趨
+ 0x8da9: "chi4", // 趩
+ 0x8daa: "huang2", // 趪
+ 0x8dab: "qiao2", // 趫
+ 0x8dac: "qiao1", // 趬
+ 0x8dad: "jiao4", // 趭
+ 0x8dae: "zao4", // 趮
+ 0x8daf: "ti4", // 趯
+ 0x8db0: "er3", // 趰
+ 0x8db1: "zan3", // 趱
+ 0x8db2: "zan3", // 趲
+ 0x8db3: "zu2", // 足
+ 0x8db4: "pa1", // 趴
+ 0x8db5: "bao4", // 趵
+ 0x8db6: "ku4", // 趶
+ 0x8db7: "ke1", // 趷
+ 0x8db8: "dun3", // 趸
+ 0x8db9: "jue2", // 趹
+ 0x8dba: "fu1", // 趺
+ 0x8dbb: "chen3", // 趻
+ 0x8dbc: "jian3", // 趼
+ 0x8dbd: "fang4", // 趽
+ 0x8dbe: "zhi3", // 趾
+ 0x8dbf: "ta1", // 趿
+ 0x8dc0: "yue4", // 跀
+ 0x8dc1: "ba4", // 跁
+ 0x8dc2: "qi2", // 跂
+ 0x8dc3: "yue4", // 跃
+ 0x8dc4: "qiang1", // 跄
+ 0x8dc5: "tuo4", // 跅
+ 0x8dc6: "tai2", // 跆
+ 0x8dc7: "yi4", // 跇
+ 0x8dc8: "nian3", // 跈
+ 0x8dc9: "ling2", // 跉
+ 0x8dca: "mei4", // 跊
+ 0x8dcb: "ba2", // 跋
+ 0x8dcc: "die1", // 跌
+ 0x8dcd: "ku1", // 跍
+ 0x8dce: "tuo2", // 跎
+ 0x8dcf: "jia1", // 跏
+ 0x8dd0: "ci1", // 跐
+ 0x8dd1: "pao3", // 跑
+ 0x8dd2: "qia3", // 跒
+ 0x8dd3: "zhu4", // 跓
+ 0x8dd4: "ju1", // 跔
+ 0x8dd5: "dian3", // 跕
+ 0x8dd6: "zhi2", // 跖
+ 0x8dd7: "fu1", // 跗
+ 0x8dd8: "pan2", // 跘
+ 0x8dd9: "ju4", // 跙
+ 0x8dda: "shan1", // 跚
+ 0x8ddb: "bo3", // 跛
+ 0x8ddc: "ni2", // 跜
+ 0x8ddd: "ju4", // 距
+ 0x8dde: "li4", // 跞
+ 0x8ddf: "gen1", // 跟
+ 0x8de0: "yi2", // 跠
+ 0x8de1: "ji1", // 跡
+ 0x8de2: "duo4", // 跢
+ 0x8de3: "xian3", // 跣
+ 0x8de4: "jiao1", // 跤
+ 0x8de5: "duo4", // 跥
+ 0x8de6: "zhu1", // 跦
+ 0x8de7: "quan2", // 跧
+ 0x8de8: "kua4", // 跨
+ 0x8de9: "zhuai3", // 跩
+ 0x8dea: "gui4", // 跪
+ 0x8deb: "qiong2", // 跫
+ 0x8dec: "kui3", // 跬
+ 0x8ded: "xiang2", // 跭
+ 0x8dee: "chi4", // 跮
+ 0x8def: "lu4", // 路
+ 0x8df0: "pian2", // 跰
+ 0x8df1: "zhi4", // 跱
+ 0x8df2: "jia2", // 跲
+ 0x8df3: "tiao4", // 跳
+ 0x8df4: "cai3", // 跴
+ 0x8df5: "jian4", // 践
+ 0x8df6: "da2", // 跶
+ 0x8df7: "qiao1", // 跷
+ 0x8df8: "bi4", // 跸
+ 0x8df9: "xian1", // 跹
+ 0x8dfa: "duo4", // 跺
+ 0x8dfb: "ji1", // 跻
+ 0x8dfc: "ju2", // 跼
+ 0x8dfd: "ji4", // 跽
+ 0x8dfe: "shu1", // 跾
+ 0x8dff: "tu2", // 跿
+ 0x8e00: "chu4", // 踀
+ 0x8e01: "jing4", // 踁
+ 0x8e02: "nie4", // 踂
+ 0x8e03: "xiao1", // 踃
+ 0x8e04: "bu4", // 踄
+ 0x8e05: "xue2", // 踅
+ 0x8e06: "cun1", // 踆
+ 0x8e07: "mu3", // 踇
+ 0x8e08: "shu1", // 踈
+ 0x8e09: "liang2", // 踉
+ 0x8e0a: "yong3", // 踊
+ 0x8e0b: "jiao3", // 踋
+ 0x8e0c: "chou2", // 踌
+ 0x8e0d: "qiao1", // 踍
+ 0x8e0e: "mou2", // 踎
+ 0x8e0f: "ta4", // 踏
+ 0x8e10: "jian4", // 踐
+ 0x8e11: "qi2", // 踑
+ 0x8e12: "wo1", // 踒
+ 0x8e13: "wei3", // 踓
+ 0x8e14: "chuo1", // 踔
+ 0x8e15: "jie2", // 踕
+ 0x8e16: "ji2", // 踖
+ 0x8e17: "nie4", // 踗
+ 0x8e18: "ju1", // 踘
+ 0x8e19: "nie4", // 踙
+ 0x8e1a: "lun2", // 踚
+ 0x8e1b: "lu4", // 踛
+ 0x8e1c: "leng4", // 踜
+ 0x8e1d: "huai2", // 踝
+ 0x8e1e: "ju4", // 踞
+ 0x8e1f: "chi2", // 踟
+ 0x8e20: "wan3", // 踠
+ 0x8e21: "quan2", // 踡
+ 0x8e22: "ti1", // 踢
+ 0x8e23: "bo2", // 踣
+ 0x8e24: "zu2", // 踤
+ 0x8e25: "qie4", // 踥
+ 0x8e26: "yi3", // 踦
+ 0x8e27: "cu4", // 踧
+ 0x8e28: "zong1", // 踨
+ 0x8e29: "cai3", // 踩
+ 0x8e2a: "zong1", // 踪
+ 0x8e2b: "peng4", // 踫
+ 0x8e2c: "zhi4", // 踬
+ 0x8e2d: "zheng1", // 踭
+ 0x8e2e: "dian3", // 踮
+ 0x8e2f: "zhi2", // 踯
+ 0x8e30: "yu2", // 踰
+ 0x8e31: "duo2", // 踱
+ 0x8e32: "dun4", // 踲
+ 0x8e33: "chuan3", // 踳
+ 0x8e34: "yong3", // 踴
+ 0x8e35: "zhong3", // 踵
+ 0x8e36: "di4", // 踶
+ 0x8e37: "zha3", // 踷
+ 0x8e38: "chen3", // 踸
+ 0x8e39: "chuai4", // 踹
+ 0x8e3a: "jian4", // 踺
+ 0x8e3b: "gua1", // 踻
+ 0x8e3c: "tang2", // 踼
+ 0x8e3d: "ju3", // 踽
+ 0x8e3e: "fu2", // 踾
+ 0x8e3f: "zu2", // 踿
+ 0x8e40: "die2", // 蹀
+ 0x8e41: "pian2", // 蹁
+ 0x8e42: "rou2", // 蹂
+ 0x8e43: "nuo4", // 蹃
+ 0x8e44: "ti2", // 蹄
+ 0x8e45: "cha3", // 蹅
+ 0x8e46: "tui3", // 蹆
+ 0x8e47: "jian3", // 蹇
+ 0x8e48: "dao3", // 蹈
+ 0x8e49: "cuo1", // 蹉
+ 0x8e4a: "qi1", // 蹊
+ 0x8e4b: "ta4", // 蹋
+ 0x8e4c: "qiang1", // 蹌
+ 0x8e4d: "nian3", // 蹍
+ 0x8e4e: "dian1", // 蹎
+ 0x8e4f: "ti2", // 蹏
+ 0x8e50: "ji2", // 蹐
+ 0x8e51: "nie4", // 蹑
+ 0x8e52: "man2", // 蹒
+ 0x8e53: "liu1", // 蹓
+ 0x8e54: "zan4", // 蹔
+ 0x8e55: "bi4", // 蹕
+ 0x8e56: "chong1", // 蹖
+ 0x8e57: "lu4", // 蹗
+ 0x8e58: "liao2", // 蹘
+ 0x8e59: "cu4", // 蹙
+ 0x8e5a: "tang1", // 蹚
+ 0x8e5b: "dai4", // 蹛
+ 0x8e5c: "su4", // 蹜
+ 0x8e5d: "xi3", // 蹝
+ 0x8e5e: "kui3", // 蹞
+ 0x8e5f: "ji1", // 蹟
+ 0x8e60: "zhi2", // 蹠
+ 0x8e61: "qiang1", // 蹡
+ 0x8e62: "di2", // 蹢
+ 0x8e63: "pan2", // 蹣
+ 0x8e64: "zong1", // 蹤
+ 0x8e65: "lian2", // 蹥
+ 0x8e66: "beng4", // 蹦
+ 0x8e67: "zao1", // 蹧
+ 0x8e68: "nian3", // 蹨
+ 0x8e69: "bie2", // 蹩
+ 0x8e6a: "tui2", // 蹪
+ 0x8e6b: "ju2", // 蹫
+ 0x8e6c: "deng1", // 蹬
+ 0x8e6d: "ceng4", // 蹭
+ 0x8e6e: "xian1", // 蹮
+ 0x8e6f: "fan2", // 蹯
+ 0x8e70: "chu2", // 蹰
+ 0x8e71: "zhong1", // 蹱
+ 0x8e72: "dun1", // 蹲
+ 0x8e73: "bo1", // 蹳
+ 0x8e74: "cu4", // 蹴
+ 0x8e75: "cu4", // 蹵
+ 0x8e76: "jue2", // 蹶
+ 0x8e77: "jue2", // 蹷
+ 0x8e78: "lin4", // 蹸
+ 0x8e79: "ta2", // 蹹
+ 0x8e7a: "qiao1", // 蹺
+ 0x8e7b: "jue1", // 蹻
+ 0x8e7c: "pu3", // 蹼
+ 0x8e7d: "liao1", // 蹽
+ 0x8e7e: "dun1", // 蹾
+ 0x8e7f: "cuan1", // 蹿
+ 0x8e80: "guan4", // 躀
+ 0x8e81: "zao4", // 躁
+ 0x8e82: "da2", // 躂
+ 0x8e83: "bi4", // 躃
+ 0x8e84: "bi4", // 躄
+ 0x8e85: "zhu2", // 躅
+ 0x8e86: "ju4", // 躆
+ 0x8e87: "chu2", // 躇
+ 0x8e88: "qiao4", // 躈
+ 0x8e89: "dun3", // 躉
+ 0x8e8a: "chou2", // 躊
+ 0x8e8b: "ji1", // 躋
+ 0x8e8c: "wu3", // 躌
+ 0x8e8d: "yue4", // 躍
+ 0x8e8e: "nian3", // 躎
+ 0x8e8f: "lin4", // 躏
+ 0x8e90: "lie4", // 躐
+ 0x8e91: "zhi2", // 躑
+ 0x8e92: "li4", // 躒
+ 0x8e93: "zhi4", // 躓
+ 0x8e94: "chan2", // 躔
+ 0x8e95: "chu2", // 躕
+ 0x8e96: "duan4", // 躖
+ 0x8e97: "wei4", // 躗
+ 0x8e98: "long2", // 躘
+ 0x8e99: "lin4", // 躙
+ 0x8e9a: "xian1", // 躚
+ 0x8e9b: "wei4", // 躛
+ 0x8e9c: "zuan1", // 躜
+ 0x8e9d: "lan2", // 躝
+ 0x8e9e: "xie4", // 躞
+ 0x8e9f: "rang2", // 躟
+ 0x8ea0: "sa3", // 躠
+ 0x8ea1: "nie4", // 躡
+ 0x8ea2: "ta4", // 躢
+ 0x8ea3: "qu2", // 躣
+ 0x8ea4: "ji2", // 躤
+ 0x8ea5: "cuan1", // 躥
+ 0x8ea6: "cuo2", // 躦
+ 0x8ea7: "xi3", // 躧
+ 0x8ea8: "kui2", // 躨
+ 0x8ea9: "jue2", // 躩
+ 0x8eaa: "lin4", // 躪
+ 0x8eab: "shen1", // 身
+ 0x8eac: "gong1", // 躬
+ 0x8ead: "dan1", // 躭
+ 0x8eae: "fen1", // 躮
+ 0x8eaf: "qu1", // 躯
+ 0x8eb0: "ti3", // 躰
+ 0x8eb1: "duo3", // 躱
+ 0x8eb2: "duo3", // 躲
+ 0x8eb3: "gong1", // 躳
+ 0x8eb4: "lang2", // 躴
+ 0x8eb5: "ren3", // 躵
+ 0x8eb6: "luo3", // 躶
+ 0x8eb7: "ai3", // 躷
+ 0x8eb8: "ji1", // 躸
+ 0x8eb9: "ju2", // 躹
+ 0x8eba: "tang3", // 躺
+ 0x8ebb: "kong1", // 躻
+ 0x8ebc: "lao4", // 躼
+ 0x8ebd: "yan3", // 躽
+ 0x8ebe: "mei3", // 躾
+ 0x8ebf: "kang1", // 躿
+ 0x8ec0: "qu1", // 軀
+ 0x8ec1: "lou2", // 軁
+ 0x8ec2: "lao4", // 軂
+ 0x8ec3: "duo3", // 軃
+ 0x8ec4: "zhi2", // 軄
+ 0x8ec5: "yan4", // 軅
+ 0x8ec6: "ti3", // 軆
+ 0x8ec7: "dao4", // 軇
+ 0x8ec8: "ying1", // 軈
+ 0x8ec9: "yu4", // 軉
+ 0x8eca: "che1", // 車
+ 0x8ecb: "ya4", // 軋
+ 0x8ecc: "gui3", // 軌
+ 0x8ecd: "jun1", // 軍
+ 0x8ece: "wei4", // 軎
+ 0x8ecf: "yue4", // 軏
+ 0x8ed0: "xin4", // 軐
+ 0x8ed1: "dai4", // 軑
+ 0x8ed2: "xuan1", // 軒
+ 0x8ed3: "fan4", // 軓
+ 0x8ed4: "ren4", // 軔
+ 0x8ed5: "shan1", // 軕
+ 0x8ed6: "kuang2", // 軖
+ 0x8ed7: "shu1", // 軗
+ 0x8ed8: "tun2", // 軘
+ 0x8ed9: "chen2", // 軙
+ 0x8eda: "dai4", // 軚
+ 0x8edb: "e4", // 軛
+ 0x8edc: "na4", // 軜
+ 0x8edd: "qi2", // 軝
+ 0x8ede: "mao2", // 軞
+ 0x8edf: "ruan3", // 軟
+ 0x8ee0: "kuang2", // 軠
+ 0x8ee1: "qian2", // 軡
+ 0x8ee2: "zhuan3", // 転
+ 0x8ee3: "hong1", // 軣
+ 0x8ee4: "hu1", // 軤
+ 0x8ee5: "qu2", // 軥
+ 0x8ee6: "kuang4", // 軦
+ 0x8ee7: "di3", // 軧
+ 0x8ee8: "ling2", // 軨
+ 0x8ee9: "dai4", // 軩
+ 0x8eea: "ao1", // 軪
+ 0x8eeb: "zhen3", // 軫
+ 0x8eec: "fan4", // 軬
+ 0x8eed: "kuang1", // 軭
+ 0x8eee: "yang3", // 軮
+ 0x8eef: "peng1", // 軯
+ 0x8ef0: "bei4", // 軰
+ 0x8ef1: "gu1", // 軱
+ 0x8ef2: "gu1", // 軲
+ 0x8ef3: "pao2", // 軳
+ 0x8ef4: "zhu4", // 軴
+ 0x8ef5: "rong3", // 軵
+ 0x8ef6: "e4", // 軶
+ 0x8ef7: "ba2", // 軷
+ 0x8ef8: "zhou2", // 軸
+ 0x8ef9: "zhi3", // 軹
+ 0x8efa: "yao2", // 軺
+ 0x8efb: "ke1", // 軻
+ 0x8efc: "yi4", // 軼
+ 0x8efd: "zhi4", // 軽
+ 0x8efe: "shi4", // 軾
+ 0x8eff: "ping2", // 軿
+ 0x8f00: "er2", // 輀
+ 0x8f01: "gong3", // 輁
+ 0x8f02: "ju2", // 輂
+ 0x8f03: "jiao4", // 較
+ 0x8f04: "guang1", // 輄
+ 0x8f05: "he2", // 輅
+ 0x8f06: "kai3", // 輆
+ 0x8f07: "quan2", // 輇
+ 0x8f08: "zhou1", // 輈
+ 0x8f09: "zai4", // 載
+ 0x8f0a: "zhi4", // 輊
+ 0x8f0b: "she1", // 輋
+ 0x8f0c: "liang4", // 輌
+ 0x8f0d: "yu4", // 輍
+ 0x8f0e: "shao1", // 輎
+ 0x8f0f: "you2", // 輏
+ 0x8f10: "wan4", // 輐
+ 0x8f11: "yin3", // 輑
+ 0x8f12: "zhe2", // 輒
+ 0x8f13: "wan3", // 輓
+ 0x8f14: "fu3", // 輔
+ 0x8f15: "qing1", // 輕
+ 0x8f16: "zhou1", // 輖
+ 0x8f17: "ni2", // 輗
+ 0x8f18: "leng2", // 輘
+ 0x8f19: "zhe2", // 輙
+ 0x8f1a: "zhan4", // 輚
+ 0x8f1b: "liang4", // 輛
+ 0x8f1c: "zi1", // 輜
+ 0x8f1d: "hui1", // 輝
+ 0x8f1e: "wang3", // 輞
+ 0x8f1f: "chuo4", // 輟
+ 0x8f20: "guo3", // 輠
+ 0x8f21: "kan3", // 輡
+ 0x8f22: "yi3", // 輢
+ 0x8f23: "peng2", // 輣
+ 0x8f24: "qian4", // 輤
+ 0x8f25: "gun3", // 輥
+ 0x8f26: "nian3", // 輦
+ 0x8f27: "ping2", // 輧
+ 0x8f28: "guan3", // 輨
+ 0x8f29: "bei4", // 輩
+ 0x8f2a: "lun2", // 輪
+ 0x8f2b: "pai2", // 輫
+ 0x8f2c: "liang2", // 輬
+ 0x8f2d: "ruan3", // 輭
+ 0x8f2e: "rou2", // 輮
+ 0x8f2f: "ji2", // 輯
+ 0x8f30: "yang2", // 輰
+ 0x8f31: "xian2", // 輱
+ 0x8f32: "chuan2", // 輲
+ 0x8f33: "cou4", // 輳
+ 0x8f34: "chun1", // 輴
+ 0x8f35: "ge2", // 輵
+ 0x8f36: "you2", // 輶
+ 0x8f37: "hong1", // 輷
+ 0x8f38: "shu1", // 輸
+ 0x8f39: "fu4", // 輹
+ 0x8f3a: "zi1", // 輺
+ 0x8f3b: "fu2", // 輻
+ 0x8f3c: "wen1", // 輼
+ 0x8f3d: "ben4", // 輽
+ 0x8f3e: "zhan3", // 輾
+ 0x8f3f: "yu2", // 輿
+ 0x8f40: "wen1", // 轀
+ 0x8f41: "tao1", // 轁
+ 0x8f42: "gu3", // 轂
+ 0x8f43: "zhen1", // 轃
+ 0x8f44: "xia2", // 轄
+ 0x8f45: "yuan2", // 轅
+ 0x8f46: "lu4", // 轆
+ 0x8f47: "jiao1", // 轇
+ 0x8f48: "chao2", // 轈
+ 0x8f49: "zhuan3", // 轉
+ 0x8f4a: "wei4", // 轊
+ 0x8f4b: "hun2", // 轋
+ 0x8f4c: "xue3", // 轌
+ 0x8f4d: "zhe2", // 轍
+ 0x8f4e: "jiao4", // 轎
+ 0x8f4f: "zhan4", // 轏
+ 0x8f50: "bu2", // 轐
+ 0x8f51: "lao3", // 轑
+ 0x8f52: "fen2", // 轒
+ 0x8f53: "fan1", // 轓
+ 0x8f54: "lin2", // 轔
+ 0x8f55: "ge2", // 轕
+ 0x8f56: "se4", // 轖
+ 0x8f57: "kan3", // 轗
+ 0x8f58: "huan2", // 轘
+ 0x8f59: "yi3", // 轙
+ 0x8f5a: "ji2", // 轚
+ 0x8f5b: "zhui4", // 轛
+ 0x8f5c: "er2", // 轜
+ 0x8f5d: "yu4", // 轝
+ 0x8f5e: "jian4", // 轞
+ 0x8f5f: "hong1", // 轟
+ 0x8f60: "lei2", // 轠
+ 0x8f61: "pei4", // 轡
+ 0x8f62: "li4", // 轢
+ 0x8f63: "li4", // 轣
+ 0x8f64: "lu2", // 轤
+ 0x8f65: "lin4", // 轥
+ 0x8f66: "che1", // 车
+ 0x8f67: "ya4", // 轧
+ 0x8f68: "gui3", // 轨
+ 0x8f69: "xuan1", // 轩
+ 0x8f6a: "dai4", // 轪
+ 0x8f6b: "ren4", // 轫
+ 0x8f6c: "zhuan3", // 转
+ 0x8f6d: "e4", // 轭
+ 0x8f6e: "lun2", // 轮
+ 0x8f6f: "ruan3", // 软
+ 0x8f70: "hong1", // 轰
+ 0x8f71: "gu1", // 轱
+ 0x8f72: "ke1", // 轲
+ 0x8f73: "lu2", // 轳
+ 0x8f74: "zhou2", // 轴
+ 0x8f75: "zhi3", // 轵
+ 0x8f76: "yi4", // 轶
+ 0x8f77: "hu1", // 轷
+ 0x8f78: "zhen3", // 轸
+ 0x8f79: "li4", // 轹
+ 0x8f7a: "yao2", // 轺
+ 0x8f7b: "qing1", // 轻
+ 0x8f7c: "shi4", // 轼
+ 0x8f7d: "zai4", // 载
+ 0x8f7e: "zhi4", // 轾
+ 0x8f7f: "jiao4", // 轿
+ 0x8f80: "zhou1", // 辀
+ 0x8f81: "quan2", // 辁
+ 0x8f82: "lu4", // 辂
+ 0x8f83: "jiao4", // 较
+ 0x8f84: "zhe2", // 辄
+ 0x8f85: "fu3", // 辅
+ 0x8f86: "liang4", // 辆
+ 0x8f87: "nian3", // 辇
+ 0x8f88: "bei4", // 辈
+ 0x8f89: "hui1", // 辉
+ 0x8f8a: "gun3", // 辊
+ 0x8f8b: "wang3", // 辋
+ 0x8f8c: "liang2", // 辌
+ 0x8f8d: "chuo4", // 辍
+ 0x8f8e: "zi1", // 辎
+ 0x8f8f: "cou4", // 辏
+ 0x8f90: "fu2", // 辐
+ 0x8f91: "ji2", // 辑
+ 0x8f92: "wen1", // 辒
+ 0x8f93: "shu1", // 输
+ 0x8f94: "pei4", // 辔
+ 0x8f95: "yuan2", // 辕
+ 0x8f96: "xia2", // 辖
+ 0x8f97: "nian3", // 辗
+ 0x8f98: "lu4", // 辘
+ 0x8f99: "zhe2", // 辙
+ 0x8f9a: "lin2", // 辚
+ 0x8f9b: "xin1", // 辛
+ 0x8f9c: "gu1", // 辜
+ 0x8f9d: "ci2", // 辝
+ 0x8f9e: "ci2", // 辞
+ 0x8f9f: "pi4", // 辟
+ 0x8fa0: "zui4", // 辠
+ 0x8fa1: "bian4", // 辡
+ 0x8fa2: "la4", // 辢
+ 0x8fa3: "la4", // 辣
+ 0x8fa4: "ci2", // 辤
+ 0x8fa5: "xue1", // 辥
+ 0x8fa6: "ban4", // 辦
+ 0x8fa7: "bian4", // 辧
+ 0x8fa8: "bian4", // 辨
+ 0x8fa9: "bian4", // 辩
+ 0x8faa: "xue1", // 辪
+ 0x8fab: "bian4", // 辫
+ 0x8fac: "ban1", // 辬
+ 0x8fad: "ci2", // 辭
+ 0x8fae: "bian4", // 辮
+ 0x8faf: "bian4", // 辯
+ 0x8fb0: "chen2", // 辰
+ 0x8fb1: "ru3", // 辱
+ 0x8fb2: "nong2", // 農
+ 0x8fb3: "nong2", // 辳
+ 0x8fb4: "chan3", // 辴
+ 0x8fb5: "chuo4", // 辵
+ 0x8fb6: "chuo4", // 辶
+ 0x8fb7: "yi1", // 辷
+ 0x8fb8: "reng2", // 辸
+ 0x8fb9: "bian1", // 边
+ 0x8fba: "bian1", // 辺
+ 0x8fbb: "shi2", // 辻
+ 0x8fbc: "yu1", // 込
+ 0x8fbd: "liao2", // 辽
+ 0x8fbe: "da2", // 达
+ 0x8fbf: "chan1", // 辿
+ 0x8fc0: "gan1", // 迀
+ 0x8fc1: "qian1", // 迁
+ 0x8fc2: "yu1", // 迂
+ 0x8fc3: "yu1", // 迃
+ 0x8fc4: "qi4", // 迄
+ 0x8fc5: "xun4", // 迅
+ 0x8fc6: "yi2", // 迆
+ 0x8fc7: "guo4", // 过
+ 0x8fc8: "mai4", // 迈
+ 0x8fc9: "qi1", // 迉
+ 0x8fca: "za1", // 迊
+ 0x8fcb: "wang4", // 迋
+ 0x8fcc: "tu4", // 迌
+ 0x8fcd: "zhun1", // 迍
+ 0x8fce: "ying2", // 迎
+ 0x8fcf: "da2", // 迏
+ 0x8fd0: "yun4", // 运
+ 0x8fd1: "jin4", // 近
+ 0x8fd2: "hang2", // 迒
+ 0x8fd3: "ya4", // 迓
+ 0x8fd4: "fan3", // 返
+ 0x8fd5: "wu4", // 迕
+ 0x8fd6: "da2", // 迖
+ 0x8fd7: "e2", // 迗
+ 0x8fd8: "hai2", // 还
+ 0x8fd9: "zhe4", // 这
+ 0x8fda: "da2", // 迚
+ 0x8fdb: "jin4", // 进
+ 0x8fdc: "yuan3", // 远
+ 0x8fdd: "wei2", // 违
+ 0x8fde: "lian2", // 连
+ 0x8fdf: "chi2", // 迟
+ 0x8fe0: "che4", // 迠
+ 0x8fe1: "ni4", // 迡
+ 0x8fe2: "tiao2", // 迢
+ 0x8fe3: "zhi4", // 迣
+ 0x8fe4: "yi2", // 迤
+ 0x8fe5: "jiong3", // 迥
+ 0x8fe6: "jia1", // 迦
+ 0x8fe7: "chen2", // 迧
+ 0x8fe8: "dai4", // 迨
+ 0x8fe9: "er3", // 迩
+ 0x8fea: "di2", // 迪
+ 0x8feb: "po4", // 迫
+ 0x8fec: "zhu4", // 迬
+ 0x8fed: "die2", // 迭
+ 0x8fee: "ze2", // 迮
+ 0x8fef: "tao2", // 迯
+ 0x8ff0: "shu4", // 述
+ 0x8ff1: "tuo2", // 迱
+ 0x8ff2: "qu5", // 迲
+ 0x8ff3: "jing4", // 迳
+ 0x8ff4: "hui2", // 迴
+ 0x8ff5: "dong4", // 迵
+ 0x8ff6: "you4", // 迶
+ 0x8ff7: "mi2", // 迷
+ 0x8ff8: "beng4", // 迸
+ 0x8ff9: "ji1", // 迹
+ 0x8ffa: "nai3", // 迺
+ 0x8ffb: "yi2", // 迻
+ 0x8ffc: "jie2", // 迼
+ 0x8ffd: "zhui1", // 追
+ 0x8ffe: "lie4", // 迾
+ 0x8fff: "xun4", // 迿
+ 0x9000: "tui4", // 退
+ 0x9001: "song4", // 送
+ 0x9002: "shi4", // 适
+ 0x9003: "tao2", // 逃
+ 0x9004: "pang2", // 逄
+ 0x9005: "hou4", // 逅
+ 0x9006: "ni4", // 逆
+ 0x9007: "dun4", // 逇
+ 0x9008: "jiong3", // 逈
+ 0x9009: "xuan3", // 选
+ 0x900a: "xun4", // 逊
+ 0x900b: "bu1", // 逋
+ 0x900c: "you1", // 逌
+ 0x900d: "xiao1", // 逍
+ 0x900e: "qiu2", // 逎
+ 0x900f: "tou4", // 透
+ 0x9010: "zhu2", // 逐
+ 0x9011: "qiu2", // 逑
+ 0x9012: "di4", // 递
+ 0x9013: "di4", // 逓
+ 0x9014: "tu2", // 途
+ 0x9015: "jing4", // 逕
+ 0x9016: "ti4", // 逖
+ 0x9017: "dou4", // 逗
+ 0x9018: "yi3", // 逘
+ 0x9019: "zhe4", // 這
+ 0x901a: "tong1", // 通
+ 0x901b: "guang4", // 逛
+ 0x901c: "wu4", // 逜
+ 0x901d: "shi4", // 逝
+ 0x901e: "cheng3", // 逞
+ 0x901f: "su4", // 速
+ 0x9020: "zao4", // 造
+ 0x9021: "qun1", // 逡
+ 0x9022: "feng2", // 逢
+ 0x9023: "lian2", // 連
+ 0x9024: "suo4", // 逤
+ 0x9025: "hui2", // 逥
+ 0x9026: "li3", // 逦
+ 0x9027: "gu3", // 逧
+ 0x9028: "lai2", // 逨
+ 0x9029: "ben4", // 逩
+ 0x902a: "cuo4", // 逪
+ 0x902b: "jue2", // 逫
+ 0x902c: "beng4", // 逬
+ 0x902d: "huan4", // 逭
+ 0x902e: "dai3", // 逮
+ 0x902f: "lu4", // 逯
+ 0x9030: "you2", // 逰
+ 0x9031: "zhou1", // 週
+ 0x9032: "jin4", // 進
+ 0x9033: "yu4", // 逳
+ 0x9034: "chuo1", // 逴
+ 0x9035: "kui2", // 逵
+ 0x9036: "wei1", // 逶
+ 0x9037: "ti4", // 逷
+ 0x9038: "yi4", // 逸
+ 0x9039: "da2", // 逹
+ 0x903a: "yuan3", // 逺
+ 0x903b: "luo2", // 逻
+ 0x903c: "bi1", // 逼
+ 0x903d: "nuo4", // 逽
+ 0x903e: "yu2", // 逾
+ 0x903f: "dang4", // 逿
+ 0x9040: "sui2", // 遀
+ 0x9041: "dun4", // 遁
+ 0x9042: "sui4", // 遂
+ 0x9043: "yan3", // 遃
+ 0x9044: "chuan2", // 遄
+ 0x9045: "chi2", // 遅
+ 0x9046: "ti2", // 遆
+ 0x9047: "yu4", // 遇
+ 0x9048: "shi2", // 遈
+ 0x9049: "zhen1", // 遉
+ 0x904a: "you2", // 遊
+ 0x904b: "yun4", // 運
+ 0x904c: "e4", // 遌
+ 0x904d: "bian4", // 遍
+ 0x904e: "guo4", // 過
+ 0x904f: "e4", // 遏
+ 0x9050: "xia2", // 遐
+ 0x9051: "huang2", // 遑
+ 0x9052: "qiu2", // 遒
+ 0x9053: "dao4", // 道
+ 0x9054: "da2", // 達
+ 0x9055: "wei2", // 違
+ 0x9056: "nan2", // 遖
+ 0x9057: "yi2", // 遗
+ 0x9058: "gou4", // 遘
+ 0x9059: "yao2", // 遙
+ 0x905a: "chou4", // 遚
+ 0x905b: "liu2", // 遛
+ 0x905c: "xun4", // 遜
+ 0x905d: "ta4", // 遝
+ 0x905e: "di4", // 遞
+ 0x905f: "chi2", // 遟
+ 0x9060: "yuan3", // 遠
+ 0x9061: "su4", // 遡
+ 0x9062: "ta4", // 遢
+ 0x9063: "qian3", // 遣
+ 0x9064: "ma3", // 遤
+ 0x9065: "yao2", // 遥
+ 0x9066: "guan4", // 遦
+ 0x9067: "zhang1", // 遧
+ 0x9068: "ao2", // 遨
+ 0x9069: "shi4", // 適
+ 0x906a: "ca4", // 遪
+ 0x906b: "chi4", // 遫
+ 0x906c: "su4", // 遬
+ 0x906d: "zao1", // 遭
+ 0x906e: "zhe1", // 遮
+ 0x906f: "dun4", // 遯
+ 0x9070: "di4", // 遰
+ 0x9071: "lou2", // 遱
+ 0x9072: "chi2", // 遲
+ 0x9073: "cuo1", // 遳
+ 0x9074: "lin2", // 遴
+ 0x9075: "zun1", // 遵
+ 0x9076: "rao4", // 遶
+ 0x9077: "qian1", // 遷
+ 0x9078: "xuan3", // 選
+ 0x9079: "yu4", // 遹
+ 0x907a: "yi2", // 遺
+ 0x907b: "e4", // 遻
+ 0x907c: "liao2", // 遼
+ 0x907d: "ju4", // 遽
+ 0x907e: "shi4", // 遾
+ 0x907f: "bi4", // 避
+ 0x9080: "yao1", // 邀
+ 0x9081: "mai4", // 邁
+ 0x9082: "xie4", // 邂
+ 0x9083: "sui4", // 邃
+ 0x9084: "hai2", // 還
+ 0x9085: "zhan1", // 邅
+ 0x9086: "teng2", // 邆
+ 0x9087: "er3", // 邇
+ 0x9088: "miao3", // 邈
+ 0x9089: "bian1", // 邉
+ 0x908a: "bian1", // 邊
+ 0x908b: "la1", // 邋
+ 0x908c: "li2", // 邌
+ 0x908d: "yuan2", // 邍
+ 0x908e: "yao2", // 邎
+ 0x908f: "luo2", // 邏
+ 0x9090: "li3", // 邐
+ 0x9091: "yi4", // 邑
+ 0x9092: "ting2", // 邒
+ 0x9093: "deng4", // 邓
+ 0x9094: "qi3", // 邔
+ 0x9095: "yong1", // 邕
+ 0x9096: "shan1", // 邖
+ 0x9097: "han2", // 邗
+ 0x9098: "yu2", // 邘
+ 0x9099: "mang2", // 邙
+ 0x909a: "ru2", // 邚
+ 0x909b: "qiong2", // 邛
+ 0x909c: "xi1", // 邜
+ 0x909d: "kuang4", // 邝
+ 0x909e: "fu1", // 邞
+ 0x909f: "kang4", // 邟
+ 0x90a0: "bin1", // 邠
+ 0x90a1: "fang1", // 邡
+ 0x90a2: "xing2", // 邢
+ 0x90a3: "na4", // 那
+ 0x90a4: "xin1", // 邤
+ 0x90a5: "shen3", // 邥
+ 0x90a6: "bang1", // 邦
+ 0x90a7: "yuan2", // 邧
+ 0x90a8: "cun1", // 邨
+ 0x90a9: "huo3", // 邩
+ 0x90aa: "xie2", // 邪
+ 0x90ab: "bang1", // 邫
+ 0x90ac: "wu1", // 邬
+ 0x90ad: "ju4", // 邭
+ 0x90ae: "you2", // 邮
+ 0x90af: "han2", // 邯
+ 0x90b0: "tai2", // 邰
+ 0x90b1: "qiu1", // 邱
+ 0x90b2: "bi4", // 邲
+ 0x90b3: "pi1", // 邳
+ 0x90b4: "bing3", // 邴
+ 0x90b5: "shao4", // 邵
+ 0x90b6: "bei4", // 邶
+ 0x90b7: "wa3", // 邷
+ 0x90b8: "di3", // 邸
+ 0x90b9: "zou1", // 邹
+ 0x90ba: "ye4", // 邺
+ 0x90bb: "lin2", // 邻
+ 0x90bc: "kuang1", // 邼
+ 0x90bd: "gui1", // 邽
+ 0x90be: "zhu1", // 邾
+ 0x90bf: "shi1", // 邿
+ 0x90c0: "ku1", // 郀
+ 0x90c1: "yu4", // 郁
+ 0x90c2: "gai1", // 郂
+ 0x90c3: "he2", // 郃
+ 0x90c4: "qie4", // 郄
+ 0x90c5: "zhi4", // 郅
+ 0x90c6: "ji2", // 郆
+ 0x90c7: "huan2", // 郇
+ 0x90c8: "hou4", // 郈
+ 0x90c9: "xing2", // 郉
+ 0x90ca: "jiao1", // 郊
+ 0x90cb: "xi2", // 郋
+ 0x90cc: "gui1", // 郌
+ 0x90cd: "nuo2", // 郍
+ 0x90ce: "lang2", // 郎
+ 0x90cf: "jia2", // 郏
+ 0x90d0: "kuai4", // 郐
+ 0x90d1: "zheng4", // 郑
+ 0x90d2: "lang2", // 郒
+ 0x90d3: "yun4", // 郓
+ 0x90d4: "yan2", // 郔
+ 0x90d5: "cheng2", // 郕
+ 0x90d6: "dou4", // 郖
+ 0x90d7: "xi1", // 郗
+ 0x90d8: "lv2", // 郘
+ 0x90d9: "fu3", // 郙
+ 0x90da: "wu2", // 郚
+ 0x90db: "fu2", // 郛
+ 0x90dc: "gao4", // 郜
+ 0x90dd: "hao3", // 郝
+ 0x90de: "lang2", // 郞
+ 0x90df: "jia2", // 郟
+ 0x90e0: "geng3", // 郠
+ 0x90e1: "jun4", // 郡
+ 0x90e2: "ying3", // 郢
+ 0x90e3: "bo2", // 郣
+ 0x90e4: "xi4", // 郤
+ 0x90e5: "bei4", // 郥
+ 0x90e6: "li4", // 郦
+ 0x90e7: "yun2", // 郧
+ 0x90e8: "bu4", // 部
+ 0x90e9: "xiao2", // 郩
+ 0x90ea: "qi1", // 郪
+ 0x90eb: "pi2", // 郫
+ 0x90ec: "qing1", // 郬
+ 0x90ed: "guo1", // 郭
+ 0x90ee: "zhou1", // 郮
+ 0x90ef: "tan2", // 郯
+ 0x90f0: "zou1", // 郰
+ 0x90f1: "ping2", // 郱
+ 0x90f2: "lai2", // 郲
+ 0x90f3: "ni2", // 郳
+ 0x90f4: "chen1", // 郴
+ 0x90f5: "you2", // 郵
+ 0x90f6: "bu4", // 郶
+ 0x90f7: "xiang1", // 郷
+ 0x90f8: "dan1", // 郸
+ 0x90f9: "ju2", // 郹
+ 0x90fa: "yong1", // 郺
+ 0x90fb: "qiao1", // 郻
+ 0x90fc: "yi1", // 郼
+ 0x90fd: "dou1", // 都
+ 0x90fe: "yan3", // 郾
+ 0x90ff: "mei2", // 郿
+ 0x9100: "ruo4", // 鄀
+ 0x9101: "bei4", // 鄁
+ 0x9102: "e4", // 鄂
+ 0x9103: "shu1", // 鄃
+ 0x9104: "juan4", // 鄄
+ 0x9105: "yu3", // 鄅
+ 0x9106: "yun4", // 鄆
+ 0x9107: "hou2", // 鄇
+ 0x9108: "kui2", // 鄈
+ 0x9109: "xiang1", // 鄉
+ 0x910a: "xiang1", // 鄊
+ 0x910b: "sou1", // 鄋
+ 0x910c: "tang2", // 鄌
+ 0x910d: "ming2", // 鄍
+ 0x910e: "xi1", // 鄎
+ 0x910f: "ru3", // 鄏
+ 0x9110: "chu4", // 鄐
+ 0x9111: "zi1", // 鄑
+ 0x9112: "zou1", // 鄒
+ 0x9113: "ye4", // 鄓
+ 0x9114: "wu1", // 鄔
+ 0x9115: "xiang1", // 鄕
+ 0x9116: "yun2", // 鄖
+ 0x9117: "hao4", // 鄗
+ 0x9118: "yong1", // 鄘
+ 0x9119: "bi3", // 鄙
+ 0x911a: "mao4", // 鄚
+ 0x911b: "chao2", // 鄛
+ 0x911c: "fu1", // 鄜
+ 0x911d: "liao3", // 鄝
+ 0x911e: "yin2", // 鄞
+ 0x911f: "zhuan1", // 鄟
+ 0x9120: "hu4", // 鄠
+ 0x9121: "qiao1", // 鄡
+ 0x9122: "yan1", // 鄢
+ 0x9123: "zhang1", // 鄣
+ 0x9124: "man4", // 鄤
+ 0x9125: "qiao1", // 鄥
+ 0x9126: "xu3", // 鄦
+ 0x9127: "deng4", // 鄧
+ 0x9128: "bi4", // 鄨
+ 0x9129: "xun2", // 鄩
+ 0x912a: "bi4", // 鄪
+ 0x912b: "zeng1", // 鄫
+ 0x912c: "wei2", // 鄬
+ 0x912d: "zheng4", // 鄭
+ 0x912e: "mao4", // 鄮
+ 0x912f: "shan4", // 鄯
+ 0x9130: "lin2", // 鄰
+ 0x9131: "po2", // 鄱
+ 0x9132: "dan1", // 鄲
+ 0x9133: "meng2", // 鄳
+ 0x9134: "ye4", // 鄴
+ 0x9135: "cao4", // 鄵
+ 0x9136: "kuai4", // 鄶
+ 0x9137: "feng1", // 鄷
+ 0x9138: "meng2", // 鄸
+ 0x9139: "zou1", // 鄹
+ 0x913a: "kuang4", // 鄺
+ 0x913b: "lian3", // 鄻
+ 0x913c: "zan4", // 鄼
+ 0x913d: "chan2", // 鄽
+ 0x913e: "you1", // 鄾
+ 0x913f: "ji1", // 鄿
+ 0x9140: "yan4", // 酀
+ 0x9141: "chan2", // 酁
+ 0x9142: "cuo2", // 酂
+ 0x9143: "ling2", // 酃
+ 0x9144: "huan1", // 酄
+ 0x9145: "xi1", // 酅
+ 0x9146: "feng1", // 酆
+ 0x9147: "zan4", // 酇
+ 0x9148: "li4", // 酈
+ 0x9149: "you3", // 酉
+ 0x914a: "ding1", // 酊
+ 0x914b: "qiu2", // 酋
+ 0x914c: "zhuo2", // 酌
+ 0x914d: "pei4", // 配
+ 0x914e: "zhou4", // 酎
+ 0x914f: "yi3", // 酏
+ 0x9150: "gan1", // 酐
+ 0x9151: "yu2", // 酑
+ 0x9152: "jiu3", // 酒
+ 0x9153: "yan3", // 酓
+ 0x9154: "zui4", // 酔
+ 0x9155: "mao2", // 酕
+ 0x9156: "zhen4", // 酖
+ 0x9157: "xu4", // 酗
+ 0x9158: "dou4", // 酘
+ 0x9159: "zhen1", // 酙
+ 0x915a: "fen1", // 酚
+ 0x915b: "yuan2", // 酛
+ 0x915c: "fu5", // 酜
+ 0x915d: "yun4", // 酝
+ 0x915e: "tai4", // 酞
+ 0x915f: "tian1", // 酟
+ 0x9160: "qia3", // 酠
+ 0x9161: "tuo2", // 酡
+ 0x9162: "cu4", // 酢
+ 0x9163: "han1", // 酣
+ 0x9164: "gu1", // 酤
+ 0x9165: "su1", // 酥
+ 0x9166: "po4", // 酦
+ 0x9167: "chou2", // 酧
+ 0x9168: "zai4", // 酨
+ 0x9169: "ming3", // 酩
+ 0x916a: "lao4", // 酪
+ 0x916b: "chuo4", // 酫
+ 0x916c: "chou2", // 酬
+ 0x916d: "you4", // 酭
+ 0x916e: "tong2", // 酮
+ 0x916f: "zhi3", // 酯
+ 0x9170: "xian1", // 酰
+ 0x9171: "jiang4", // 酱
+ 0x9172: "cheng2", // 酲
+ 0x9173: "yin4", // 酳
+ 0x9174: "tu2", // 酴
+ 0x9175: "jiao4", // 酵
+ 0x9176: "mei2", // 酶
+ 0x9177: "ku4", // 酷
+ 0x9178: "suan1", // 酸
+ 0x9179: "lei4", // 酹
+ 0x917a: "pu2", // 酺
+ 0x917b: "zui4", // 酻
+ 0x917c: "hai3", // 酼
+ 0x917d: "yan4", // 酽
+ 0x917e: "shai1", // 酾
+ 0x917f: "niang4", // 酿
+ 0x9180: "wei2", // 醀
+ 0x9181: "lu4", // 醁
+ 0x9182: "lan3", // 醂
+ 0x9183: "yan1", // 醃
+ 0x9184: "tao2", // 醄
+ 0x9185: "pei1", // 醅
+ 0x9186: "zhan3", // 醆
+ 0x9187: "chun2", // 醇
+ 0x9188: "tan2", // 醈
+ 0x9189: "zui4", // 醉
+ 0x918a: "zhui4", // 醊
+ 0x918b: "cu4", // 醋
+ 0x918c: "kun1", // 醌
+ 0x918d: "ti2", // 醍
+ 0x918e: "xian2", // 醎
+ 0x918f: "du1", // 醏
+ 0x9190: "hu2", // 醐
+ 0x9191: "xu3", // 醑
+ 0x9192: "xing3", // 醒
+ 0x9193: "tan3", // 醓
+ 0x9194: "qiu2", // 醔
+ 0x9195: "chun2", // 醕
+ 0x9196: "yun4", // 醖
+ 0x9197: "po4", // 醗
+ 0x9198: "ke1", // 醘
+ 0x9199: "sou1", // 醙
+ 0x919a: "mi2", // 醚
+ 0x919b: "quan2", // 醛
+ 0x919c: "chou3", // 醜
+ 0x919d: "cuo1", // 醝
+ 0x919e: "yun4", // 醞
+ 0x919f: "yong4", // 醟
+ 0x91a0: "ang4", // 醠
+ 0x91a1: "zha4", // 醡
+ 0x91a2: "hai3", // 醢
+ 0x91a3: "tang2", // 醣
+ 0x91a4: "jiang4", // 醤
+ 0x91a5: "piao3", // 醥
+ 0x91a6: "chen3", // 醦
+ 0x91a7: "yu4", // 醧
+ 0x91a8: "li2", // 醨
+ 0x91a9: "zao1", // 醩
+ 0x91aa: "lao2", // 醪
+ 0x91ab: "yi1", // 醫
+ 0x91ac: "jiang4", // 醬
+ 0x91ad: "bu2", // 醭
+ 0x91ae: "jiao4", // 醮
+ 0x91af: "xi1", // 醯
+ 0x91b0: "tan2", // 醰
+ 0x91b1: "fa1", // 醱
+ 0x91b2: "nong2", // 醲
+ 0x91b3: "yi4", // 醳
+ 0x91b4: "li3", // 醴
+ 0x91b5: "ju4", // 醵
+ 0x91b6: "yan4", // 醶
+ 0x91b7: "yi4", // 醷
+ 0x91b8: "niang4", // 醸
+ 0x91b9: "ru2", // 醹
+ 0x91ba: "xun1", // 醺
+ 0x91bb: "chou2", // 醻
+ 0x91bc: "yan4", // 醼
+ 0x91bd: "ling2", // 醽
+ 0x91be: "mi2", // 醾
+ 0x91bf: "mi2", // 醿
+ 0x91c0: "niang4", // 釀
+ 0x91c1: "xin4", // 釁
+ 0x91c2: "jiao4", // 釂
+ 0x91c3: "shai1", // 釃
+ 0x91c4: "mi2", // 釄
+ 0x91c5: "yan4", // 釅
+ 0x91c6: "bian4", // 釆
+ 0x91c7: "cai3", // 采
+ 0x91c8: "shi4", // 釈
+ 0x91c9: "you4", // 釉
+ 0x91ca: "shi4", // 释
+ 0x91cb: "shi4", // 釋
+ 0x91cc: "li3", // 里
+ 0x91cd: "zhong4", // 重
+ 0x91ce: "ye3", // 野
+ 0x91cf: "liang4", // 量
+ 0x91d0: "li2", // 釐
+ 0x91d1: "jin1", // 金
+ 0x91d2: "jin1", // 釒
+ 0x91d3: "qiu2", // 釓
+ 0x91d4: "yi3", // 釔
+ 0x91d5: "liao3", // 釕
+ 0x91d6: "dao1", // 釖
+ 0x91d7: "zhao1", // 釗
+ 0x91d8: "ding1", // 釘
+ 0x91d9: "po4", // 釙
+ 0x91da: "qiu2", // 釚
+ 0x91db: "ba1", // 釛
+ 0x91dc: "fu3", // 釜
+ 0x91dd: "zhen1", // 針
+ 0x91de: "zhi2", // 釞
+ 0x91df: "ba1", // 釟
+ 0x91e0: "luan4", // 釠
+ 0x91e1: "fu3", // 釡
+ 0x91e2: "nai3", // 釢
+ 0x91e3: "diao4", // 釣
+ 0x91e4: "shan4", // 釤
+ 0x91e5: "qiao3", // 釥
+ 0x91e6: "kou4", // 釦
+ 0x91e7: "chuan4", // 釧
+ 0x91e8: "zi3", // 釨
+ 0x91e9: "fan3", // 釩
+ 0x91ea: "hua2", // 釪
+ 0x91eb: "hua2", // 釫
+ 0x91ec: "han4", // 釬
+ 0x91ed: "gang1", // 釭
+ 0x91ee: "qi2", // 釮
+ 0x91ef: "mang2", // 釯
+ 0x91f0: "ri4", // 釰
+ 0x91f1: "di4", // 釱
+ 0x91f2: "si4", // 釲
+ 0x91f3: "xi4", // 釳
+ 0x91f4: "yi4", // 釴
+ 0x91f5: "chai1", // 釵
+ 0x91f6: "shi1", // 釶
+ 0x91f7: "tu3", // 釷
+ 0x91f8: "xi1", // 釸
+ 0x91f9: "nv3", // 釹
+ 0x91fa: "qian1", // 釺
+ 0x91fb: "qiu2", // 釻
+ 0x91fc: "jian4", // 釼
+ 0x91fd: "pi4", // 釽
+ 0x91fe: "ye2", // 釾
+ 0x91ff: "jin1", // 釿
+ 0x9200: "ba3", // 鈀
+ 0x9201: "fang1", // 鈁
+ 0x9202: "chen2", // 鈂
+ 0x9203: "xing2", // 鈃
+ 0x9204: "dou3", // 鈄
+ 0x9205: "yue4", // 鈅
+ 0x9206: "qian1", // 鈆
+ 0x9207: "fu1", // 鈇
+ 0x9208: "pi1", // 鈈
+ 0x9209: "na4", // 鈉
+ 0x920a: "xin1", // 鈊
+ 0x920b: "e2", // 鈋
+ 0x920c: "jue2", // 鈌
+ 0x920d: "dun4", // 鈍
+ 0x920e: "gou1", // 鈎
+ 0x920f: "yin3", // 鈏
+ 0x9210: "qian2", // 鈐
+ 0x9211: "ban3", // 鈑
+ 0x9212: "sa4", // 鈒
+ 0x9213: "ren2", // 鈓
+ 0x9214: "chao1", // 鈔
+ 0x9215: "niu3", // 鈕
+ 0x9216: "fen1", // 鈖
+ 0x9217: "yun3", // 鈗
+ 0x9218: "yi3", // 鈘
+ 0x9219: "qin2", // 鈙
+ 0x921a: "pi1", // 鈚
+ 0x921b: "guo1", // 鈛
+ 0x921c: "hong2", // 鈜
+ 0x921d: "yin2", // 鈝
+ 0x921e: "jun1", // 鈞
+ 0x921f: "diao4", // 鈟
+ 0x9220: "yi4", // 鈠
+ 0x9221: "zhong1", // 鈡
+ 0x9222: "xi3", // 鈢
+ 0x9223: "gai4", // 鈣
+ 0x9224: "ri4", // 鈤
+ 0x9225: "huo3", // 鈥
+ 0x9226: "tai4", // 鈦
+ 0x9227: "kang4", // 鈧
+ 0x9228: "yuan2", // 鈨
+ 0x9229: "lu2", // 鈩
+ 0x922a: "e4", // 鈪
+ 0x922b: "qin2", // 鈫
+ 0x922c: "duo2", // 鈬
+ 0x922d: "zi1", // 鈭
+ 0x922e: "ni3", // 鈮
+ 0x922f: "tu2", // 鈯
+ 0x9230: "shi4", // 鈰
+ 0x9231: "min2", // 鈱
+ 0x9232: "gu1", // 鈲
+ 0x9233: "ke1", // 鈳
+ 0x9234: "ling2", // 鈴
+ 0x9235: "bing3", // 鈵
+ 0x9236: "si4", // 鈶
+ 0x9237: "gu3", // 鈷
+ 0x9238: "bo2", // 鈸
+ 0x9239: "pi1", // 鈹
+ 0x923a: "yu4", // 鈺
+ 0x923b: "si4", // 鈻
+ 0x923c: "zuo2", // 鈼
+ 0x923d: "bu1", // 鈽
+ 0x923e: "you2", // 鈾
+ 0x923f: "tian2", // 鈿
+ 0x9240: "jia3", // 鉀
+ 0x9241: "zhen1", // 鉁
+ 0x9242: "shi3", // 鉂
+ 0x9243: "shi4", // 鉃
+ 0x9244: "zhi2", // 鉄
+ 0x9245: "ju4", // 鉅
+ 0x9246: "chan1", // 鉆
+ 0x9247: "shi1", // 鉇
+ 0x9248: "shi1", // 鉈
+ 0x9249: "xuan4", // 鉉
+ 0x924a: "zhao1", // 鉊
+ 0x924b: "bao4", // 鉋
+ 0x924c: "he2", // 鉌
+ 0x924d: "bi4", // 鉍
+ 0x924e: "sheng1", // 鉎
+ 0x924f: "chu2", // 鉏
+ 0x9250: "shi2", // 鉐
+ 0x9251: "bo2", // 鉑
+ 0x9252: "zhu4", // 鉒
+ 0x9253: "chi4", // 鉓
+ 0x9254: "za1", // 鉔
+ 0x9255: "po1", // 鉕
+ 0x9256: "tong2", // 鉖
+ 0x9257: "qian2", // 鉗
+ 0x9258: "fu2", // 鉘
+ 0x9259: "zhai3", // 鉙
+ 0x925a: "liu3", // 鉚
+ 0x925b: "qian1", // 鉛
+ 0x925c: "fu2", // 鉜
+ 0x925d: "li4", // 鉝
+ 0x925e: "yue4", // 鉞
+ 0x925f: "pi1", // 鉟
+ 0x9260: "yang1", // 鉠
+ 0x9261: "ban4", // 鉡
+ 0x9262: "bo1", // 鉢
+ 0x9263: "jie2", // 鉣
+ 0x9264: "gou1", // 鉤
+ 0x9265: "shu4", // 鉥
+ 0x9266: "zheng1", // 鉦
+ 0x9267: "mu3", // 鉧
+ 0x9268: "xi3", // 鉨
+ 0x9269: "xi3", // 鉩
+ 0x926a: "di4", // 鉪
+ 0x926b: "jia1", // 鉫
+ 0x926c: "mu4", // 鉬
+ 0x926d: "tan3", // 鉭
+ 0x926e: "huan2", // 鉮
+ 0x926f: "yi3", // 鉯
+ 0x9270: "si1", // 鉰
+ 0x9271: "kuang4", // 鉱
+ 0x9272: "ka3", // 鉲
+ 0x9273: "bei3", // 鉳
+ 0x9274: "jian4", // 鉴
+ 0x9275: "tong2", // 鉵
+ 0x9276: "xing2", // 鉶
+ 0x9277: "hong2", // 鉷
+ 0x9278: "jiao3", // 鉸
+ 0x9279: "chi3", // 鉹
+ 0x927a: "er4", // 鉺
+ 0x927b: "luo4", // 鉻
+ 0x927c: "bing3", // 鉼
+ 0x927d: "shi4", // 鉽
+ 0x927e: "mou2", // 鉾
+ 0x927f: "jia1", // 鉿
+ 0x9280: "yin2", // 銀
+ 0x9281: "jun1", // 銁
+ 0x9282: "zhou1", // 銂
+ 0x9283: "chong4", // 銃
+ 0x9284: "xiang3", // 銄
+ 0x9285: "tong2", // 銅
+ 0x9286: "mo4", // 銆
+ 0x9287: "lei4", // 銇
+ 0x9288: "ji1", // 銈
+ 0x9289: "yu4", // 銉
+ 0x928a: "xu4", // 銊
+ 0x928b: "ren2", // 銋
+ 0x928c: "zun4", // 銌
+ 0x928d: "zhi4", // 銍
+ 0x928e: "qiong2", // 銎
+ 0x928f: "shan4", // 銏
+ 0x9290: "chi4", // 銐
+ 0x9291: "xian3", // 銑
+ 0x9292: "xing2", // 銒
+ 0x9293: "quan2", // 銓
+ 0x9294: "pi1", // 銔
+ 0x9295: "tie3", // 銕
+ 0x9296: "zhu1", // 銖
+ 0x9297: "xiang4", // 銗
+ 0x9298: "ming2", // 銘
+ 0x9299: "kua3", // 銙
+ 0x929a: "yao2", // 銚
+ 0x929b: "xian1", // 銛
+ 0x929c: "xian2", // 銜
+ 0x929d: "xiu1", // 銝
+ 0x929e: "jun1", // 銞
+ 0x929f: "cha1", // 銟
+ 0x92a0: "lao3", // 銠
+ 0x92a1: "ji2", // 銡
+ 0x92a2: "pi3", // 銢
+ 0x92a3: "ru2", // 銣
+ 0x92a4: "mi3", // 銤
+ 0x92a5: "yi1", // 銥
+ 0x92a6: "yin1", // 銦
+ 0x92a7: "guang1", // 銧
+ 0x92a8: "an3", // 銨
+ 0x92a9: "diu1", // 銩
+ 0x92aa: "you3", // 銪
+ 0x92ab: "se4", // 銫
+ 0x92ac: "kao4", // 銬
+ 0x92ad: "qian2", // 銭
+ 0x92ae: "luan2", // 銮
+ 0x92af: "si1", // 銯
+ 0x92b0: "ai1", // 銰
+ 0x92b1: "diao4", // 銱
+ 0x92b2: "han4", // 銲
+ 0x92b3: "rui4", // 銳
+ 0x92b4: "shi4", // 銴
+ 0x92b5: "keng1", // 銵
+ 0x92b6: "qiu2", // 銶
+ 0x92b7: "xiao1", // 銷
+ 0x92b8: "zhe2", // 銸
+ 0x92b9: "xiu4", // 銹
+ 0x92ba: "zang4", // 銺
+ 0x92bb: "ti2", // 銻
+ 0x92bc: "cuo4", // 銼
+ 0x92bd: "gua1", // 銽
+ 0x92be: "hong4", // 銾
+ 0x92bf: "zhong1", // 銿
+ 0x92c0: "tou1", // 鋀
+ 0x92c1: "lv3", // 鋁
+ 0x92c2: "mei2", // 鋂
+ 0x92c3: "lang2", // 鋃
+ 0x92c4: "wan4", // 鋄
+ 0x92c5: "xin1", // 鋅
+ 0x92c6: "yun2", // 鋆
+ 0x92c7: "bei4", // 鋇
+ 0x92c8: "wu4", // 鋈
+ 0x92c9: "su4", // 鋉
+ 0x92ca: "yu4", // 鋊
+ 0x92cb: "chan2", // 鋋
+ 0x92cc: "ding4", // 鋌
+ 0x92cd: "bo2", // 鋍
+ 0x92ce: "han4", // 鋎
+ 0x92cf: "jia2", // 鋏
+ 0x92d0: "hong2", // 鋐
+ 0x92d1: "cuan1", // 鋑
+ 0x92d2: "feng1", // 鋒
+ 0x92d3: "chan1", // 鋓
+ 0x92d4: "wan3", // 鋔
+ 0x92d5: "zhi4", // 鋕
+ 0x92d6: "si1", // 鋖
+ 0x92d7: "xuan1", // 鋗
+ 0x92d8: "hua2", // 鋘
+ 0x92d9: "yu3", // 鋙
+ 0x92da: "tiao2", // 鋚
+ 0x92db: "kuang4", // 鋛
+ 0x92dc: "zhuo2", // 鋜
+ 0x92dd: "lve4", // 鋝
+ 0x92de: "xing2", // 鋞
+ 0x92df: "qin3", // 鋟
+ 0x92e0: "shen4", // 鋠
+ 0x92e1: "han2", // 鋡
+ 0x92e2: "lve4", // 鋢
+ 0x92e3: "ye2", // 鋣
+ 0x92e4: "chu2", // 鋤
+ 0x92e5: "zeng4", // 鋥
+ 0x92e6: "ju1", // 鋦
+ 0x92e7: "xian4", // 鋧
+ 0x92e8: "tie3", // 鋨
+ 0x92e9: "mang2", // 鋩
+ 0x92ea: "pu4", // 鋪
+ 0x92eb: "li2", // 鋫
+ 0x92ec: "pan4", // 鋬
+ 0x92ed: "rui4", // 鋭
+ 0x92ee: "cheng2", // 鋮
+ 0x92ef: "gao4", // 鋯
+ 0x92f0: "li3", // 鋰
+ 0x92f1: "te4", // 鋱
+ 0x92f2: "bing1", // 鋲
+ 0x92f3: "zhu4", // 鋳
+ 0x92f4: "zhen4", // 鋴
+ 0x92f5: "tu1", // 鋵
+ 0x92f6: "liu3", // 鋶
+ 0x92f7: "zui4", // 鋷
+ 0x92f8: "ju4", // 鋸
+ 0x92f9: "chang3", // 鋹
+ 0x92fa: "yuan3", // 鋺
+ 0x92fb: "jian4", // 鋻
+ 0x92fc: "gang1", // 鋼
+ 0x92fd: "diao4", // 鋽
+ 0x92fe: "tao2", // 鋾
+ 0x92ff: "chang2", // 鋿
+ 0x9300: "lun2", // 錀
+ 0x9301: "guo3", // 錁
+ 0x9302: "ling2", // 錂
+ 0x9303: "pi1", // 錃
+ 0x9304: "lu4", // 錄
+ 0x9305: "li2", // 錅
+ 0x9306: "qiang1", // 錆
+ 0x9307: "pou2", // 錇
+ 0x9308: "juan3", // 錈
+ 0x9309: "min2", // 錉
+ 0x930a: "zui4", // 錊
+ 0x930b: "peng2", // 錋
+ 0x930c: "an4", // 錌
+ 0x930d: "pi1", // 錍
+ 0x930e: "xian4", // 錎
+ 0x930f: "ya1", // 錏
+ 0x9310: "zhui1", // 錐
+ 0x9311: "lei4", // 錑
+ 0x9312: "ke1", // 錒
+ 0x9313: "kong1", // 錓
+ 0x9314: "ta4", // 錔
+ 0x9315: "kun1", // 錕
+ 0x9316: "du2", // 錖
+ 0x9317: "nei4", // 錗
+ 0x9318: "chui2", // 錘
+ 0x9319: "zi1", // 錙
+ 0x931a: "zheng1", // 錚
+ 0x931b: "ben1", // 錛
+ 0x931c: "nie4", // 錜
+ 0x931d: "zong4", // 錝
+ 0x931e: "chun2", // 錞
+ 0x931f: "tan2", // 錟
+ 0x9320: "ding4", // 錠
+ 0x9321: "qi2", // 錡
+ 0x9322: "qian2", // 錢
+ 0x9323: "zhui4", // 錣
+ 0x9324: "ji1", // 錤
+ 0x9325: "yu4", // 錥
+ 0x9326: "jin3", // 錦
+ 0x9327: "guan3", // 錧
+ 0x9328: "mao2", // 錨
+ 0x9329: "chang1", // 錩
+ 0x932a: "tian3", // 錪
+ 0x932b: "xi1", // 錫
+ 0x932c: "lian4", // 錬
+ 0x932d: "tao2", // 錭
+ 0x932e: "gu4", // 錮
+ 0x932f: "cuo4", // 錯
+ 0x9330: "shu4", // 錰
+ 0x9331: "zhen1", // 錱
+ 0x9332: "lu4", // 録
+ 0x9333: "meng3", // 錳
+ 0x9334: "lu4", // 錴
+ 0x9335: "hua1", // 錵
+ 0x9336: "biao3", // 錶
+ 0x9337: "ga2", // 錷
+ 0x9338: "lai2", // 錸
+ 0x9339: "ken3", // 錹
+ 0x933a: "fang1", // 錺
+ 0x933b: "wu5", // 錻
+ 0x933c: "nai4", // 錼
+ 0x933d: "wan4", // 錽
+ 0x933e: "zan4", // 錾
+ 0x933f: "hu3", // 錿
+ 0x9340: "de2", // 鍀
+ 0x9341: "xian1", // 鍁
+ 0x9342: "pian1", // 鍂
+ 0x9343: "huo1", // 鍃
+ 0x9344: "liang4", // 鍄
+ 0x9345: "fa3", // 鍅
+ 0x9346: "men2", // 鍆
+ 0x9347: "kai3", // 鍇
+ 0x9348: "ying1", // 鍈
+ 0x9349: "di1", // 鍉
+ 0x934a: "lian4", // 鍊
+ 0x934b: "guo1", // 鍋
+ 0x934c: "xian3", // 鍌
+ 0x934d: "du4", // 鍍
+ 0x934e: "tu2", // 鍎
+ 0x934f: "wei2", // 鍏
+ 0x9350: "zong1", // 鍐
+ 0x9351: "fu4", // 鍑
+ 0x9352: "rou2", // 鍒
+ 0x9353: "ji2", // 鍓
+ 0x9354: "e4", // 鍔
+ 0x9355: "jun1", // 鍕
+ 0x9356: "chen3", // 鍖
+ 0x9357: "ti2", // 鍗
+ 0x9358: "zha2", // 鍘
+ 0x9359: "hu4", // 鍙
+ 0x935a: "yang2", // 鍚
+ 0x935b: "duan4", // 鍛
+ 0x935c: "xia2", // 鍜
+ 0x935d: "yu2", // 鍝
+ 0x935e: "keng1", // 鍞
+ 0x935f: "sheng1", // 鍟
+ 0x9360: "huang2", // 鍠
+ 0x9361: "wei3", // 鍡
+ 0x9362: "fu4", // 鍢
+ 0x9363: "zhao1", // 鍣
+ 0x9364: "cha1", // 鍤
+ 0x9365: "qie4", // 鍥
+ 0x9366: "shi1", // 鍦
+ 0x9367: "hong1", // 鍧
+ 0x9368: "kui2", // 鍨
+ 0x9369: "tian3", // 鍩
+ 0x936a: "mou2", // 鍪
+ 0x936b: "qiao1", // 鍫
+ 0x936c: "qiao1", // 鍬
+ 0x936d: "hou2", // 鍭
+ 0x936e: "tou1", // 鍮
+ 0x936f: "cong1", // 鍯
+ 0x9370: "huan2", // 鍰
+ 0x9371: "ye4", // 鍱
+ 0x9372: "min2", // 鍲
+ 0x9373: "jian4", // 鍳
+ 0x9374: "duan1", // 鍴
+ 0x9375: "jian4", // 鍵
+ 0x9376: "song1", // 鍶
+ 0x9377: "kui2", // 鍷
+ 0x9378: "hu2", // 鍸
+ 0x9379: "xuan1", // 鍹
+ 0x937a: "duo3", // 鍺
+ 0x937b: "jie2", // 鍻
+ 0x937c: "zhen1", // 鍼
+ 0x937d: "bian1", // 鍽
+ 0x937e: "zhong1", // 鍾
+ 0x937f: "zi1", // 鍿
+ 0x9380: "xiu1", // 鎀
+ 0x9381: "ye2", // 鎁
+ 0x9382: "mei3", // 鎂
+ 0x9383: "pai4", // 鎃
+ 0x9384: "ai1", // 鎄
+ 0x9385: "jie4", // 鎅
+ 0x9386: "qian5", // 鎆
+ 0x9387: "mei2", // 鎇
+ 0x9388: "suo3", // 鎈
+ 0x9389: "da2", // 鎉
+ 0x938a: "bang4", // 鎊
+ 0x938b: "xia2", // 鎋
+ 0x938c: "lian2", // 鎌
+ 0x938d: "suo3", // 鎍
+ 0x938e: "kai4", // 鎎
+ 0x938f: "liu2", // 鎏
+ 0x9390: "yao2", // 鎐
+ 0x9391: "ye4", // 鎑
+ 0x9392: "nou4", // 鎒
+ 0x9393: "weng1", // 鎓
+ 0x9394: "rong2", // 鎔
+ 0x9395: "tang2", // 鎕
+ 0x9396: "suo3", // 鎖
+ 0x9397: "qiang1", // 鎗
+ 0x9398: "li4", // 鎘
+ 0x9399: "shuo4", // 鎙
+ 0x939a: "chui2", // 鎚
+ 0x939b: "bo2", // 鎛
+ 0x939c: "pan2", // 鎜
+ 0x939d: "da1", // 鎝
+ 0x939e: "bi1", // 鎞
+ 0x939f: "sang3", // 鎟
+ 0x93a0: "gang1", // 鎠
+ 0x93a1: "zi1", // 鎡
+ 0x93a2: "wu1", // 鎢
+ 0x93a3: "ying2", // 鎣
+ 0x93a4: "huang4", // 鎤
+ 0x93a5: "tiao2", // 鎥
+ 0x93a6: "liu2", // 鎦
+ 0x93a7: "kai3", // 鎧
+ 0x93a8: "sun3", // 鎨
+ 0x93a9: "sha1", // 鎩
+ 0x93aa: "sou1", // 鎪
+ 0x93ab: "wan4", // 鎫
+ 0x93ac: "hao4", // 鎬
+ 0x93ad: "zhen4", // 鎭
+ 0x93ae: "zhen4", // 鎮
+ 0x93af: "lang2", // 鎯
+ 0x93b0: "yi4", // 鎰
+ 0x93b1: "yuan2", // 鎱
+ 0x93b2: "tang3", // 鎲
+ 0x93b3: "nie4", // 鎳
+ 0x93b4: "xi2", // 鎴
+ 0x93b5: "jia1", // 鎵
+ 0x93b6: "ge1", // 鎶
+ 0x93b7: "ma3", // 鎷
+ 0x93b8: "juan1", // 鎸
+ 0x93b9: "song4", // 鎹
+ 0x93ba: "zu3", // 鎺
+ 0x93bb: "suo3", // 鎻
+ 0x93bc: "xia4", // 鎼
+ 0x93bd: "feng1", // 鎽
+ 0x93be: "wen1", // 鎾
+ 0x93bf: "na2", // 鎿
+ 0x93c0: "lu3", // 鏀
+ 0x93c1: "suo3", // 鏁
+ 0x93c2: "ou1", // 鏂
+ 0x93c3: "zu2", // 鏃
+ 0x93c4: "tuan2", // 鏄
+ 0x93c5: "xiu1", // 鏅
+ 0x93c6: "guan4", // 鏆
+ 0x93c7: "xuan4", // 鏇
+ 0x93c8: "lian4", // 鏈
+ 0x93c9: "shou4", // 鏉
+ 0x93ca: "ao4", // 鏊
+ 0x93cb: "man3", // 鏋
+ 0x93cc: "mo4", // 鏌
+ 0x93cd: "luo2", // 鏍
+ 0x93ce: "bi4", // 鏎
+ 0x93cf: "wei4", // 鏏
+ 0x93d0: "liu2", // 鏐
+ 0x93d1: "di2", // 鏑
+ 0x93d2: "san3", // 鏒
+ 0x93d3: "zong3", // 鏓
+ 0x93d4: "yi2", // 鏔
+ 0x93d5: "lu4", // 鏕
+ 0x93d6: "ao2", // 鏖
+ 0x93d7: "keng1", // 鏗
+ 0x93d8: "qiang1", // 鏘
+ 0x93d9: "cui1", // 鏙
+ 0x93da: "qi1", // 鏚
+ 0x93db: "chang2", // 鏛
+ 0x93dc: "tang1", // 鏜
+ 0x93dd: "man4", // 鏝
+ 0x93de: "yong1", // 鏞
+ 0x93df: "chan3", // 鏟
+ 0x93e0: "feng1", // 鏠
+ 0x93e1: "jing4", // 鏡
+ 0x93e2: "biao1", // 鏢
+ 0x93e3: "shu4", // 鏣
+ 0x93e4: "lou4", // 鏤
+ 0x93e5: "xiu4", // 鏥
+ 0x93e6: "cong1", // 鏦
+ 0x93e7: "long2", // 鏧
+ 0x93e8: "zan4", // 鏨
+ 0x93e9: "jian4", // 鏩
+ 0x93ea: "cao2", // 鏪
+ 0x93eb: "li2", // 鏫
+ 0x93ec: "xia4", // 鏬
+ 0x93ed: "xi1", // 鏭
+ 0x93ee: "kang1", // 鏮
+ 0x93ef: "shuang3", // 鏯
+ 0x93f0: "beng4", // 鏰
+ 0x93f1: "zhang5", // 鏱
+ 0x93f2: "qian5", // 鏲
+ 0x93f3: "cheng1", // 鏳
+ 0x93f4: "lu4", // 鏴
+ 0x93f5: "hua2", // 鏵
+ 0x93f6: "ji2", // 鏶
+ 0x93f7: "pu2", // 鏷
+ 0x93f8: "hui4", // 鏸
+ 0x93f9: "qiang3", // 鏹
+ 0x93fa: "po1", // 鏺
+ 0x93fb: "lin2", // 鏻
+ 0x93fc: "se4", // 鏼
+ 0x93fd: "xiu4", // 鏽
+ 0x93fe: "san3", // 鏾
+ 0x93ff: "cheng1", // 鏿
+ 0x9400: "kui4", // 鐀
+ 0x9401: "si1", // 鐁
+ 0x9402: "liu2", // 鐂
+ 0x9403: "nao2", // 鐃
+ 0x9404: "huang2", // 鐄
+ 0x9405: "pie3", // 鐅
+ 0x9406: "sui4", // 鐆
+ 0x9407: "fan2", // 鐇
+ 0x9408: "qiao2", // 鐈
+ 0x9409: "quan1", // 鐉
+ 0x940a: "yang2", // 鐊
+ 0x940b: "tang1", // 鐋
+ 0x940c: "xiang4", // 鐌
+ 0x940d: "jue2", // 鐍
+ 0x940e: "jiao1", // 鐎
+ 0x940f: "zun1", // 鐏
+ 0x9410: "liao2", // 鐐
+ 0x9411: "qie4", // 鐑
+ 0x9412: "lao2", // 鐒
+ 0x9413: "dui4", // 鐓
+ 0x9414: "xin2", // 鐔
+ 0x9415: "zan1", // 鐕
+ 0x9416: "ji1", // 鐖
+ 0x9417: "jian3", // 鐗
+ 0x9418: "zhong1", // 鐘
+ 0x9419: "deng4", // 鐙
+ 0x941a: "ya1", // 鐚
+ 0x941b: "ying3", // 鐛
+ 0x941c: "dui1", // 鐜
+ 0x941d: "jue2", // 鐝
+ 0x941e: "nou4", // 鐞
+ 0x941f: "zan1", // 鐟
+ 0x9420: "pu3", // 鐠
+ 0x9421: "tie3", // 鐡
+ 0x9422: "fan2", // 鐢
+ 0x9423: "cheng1", // 鐣
+ 0x9424: "ding3", // 鐤
+ 0x9425: "shan4", // 鐥
+ 0x9426: "kai1", // 鐦
+ 0x9427: "jian1", // 鐧
+ 0x9428: "fei4", // 鐨
+ 0x9429: "sui4", // 鐩
+ 0x942a: "lu3", // 鐪
+ 0x942b: "juan1", // 鐫
+ 0x942c: "hui4", // 鐬
+ 0x942d: "yu4", // 鐭
+ 0x942e: "lian2", // 鐮
+ 0x942f: "zhuo2", // 鐯
+ 0x9430: "qiao1", // 鐰
+ 0x9431: "jian4", // 鐱
+ 0x9432: "zhuo2", // 鐲
+ 0x9433: "lei2", // 鐳
+ 0x9434: "bi4", // 鐴
+ 0x9435: "tie3", // 鐵
+ 0x9436: "huan2", // 鐶
+ 0x9437: "ye4", // 鐷
+ 0x9438: "duo2", // 鐸
+ 0x9439: "guo3", // 鐹
+ 0x943a: "dang1", // 鐺
+ 0x943b: "ju4", // 鐻
+ 0x943c: "fen2", // 鐼
+ 0x943d: "da2", // 鐽
+ 0x943e: "bei4", // 鐾
+ 0x943f: "yi4", // 鐿
+ 0x9440: "ai4", // 鑀
+ 0x9441: "zong1", // 鑁
+ 0x9442: "xun4", // 鑂
+ 0x9443: "diao4", // 鑃
+ 0x9444: "zhu4", // 鑄
+ 0x9445: "heng2", // 鑅
+ 0x9446: "zhui4", // 鑆
+ 0x9447: "ji1", // 鑇
+ 0x9448: "nie4", // 鑈
+ 0x9449: "he2", // 鑉
+ 0x944a: "huo4", // 鑊
+ 0x944b: "qing1", // 鑋
+ 0x944c: "bin1", // 鑌
+ 0x944d: "ying1", // 鑍
+ 0x944e: "kui4", // 鑎
+ 0x944f: "ning2", // 鑏
+ 0x9450: "xu1", // 鑐
+ 0x9451: "jian4", // 鑑
+ 0x9452: "jian4", // 鑒
+ 0x9453: "qian3", // 鑓
+ 0x9454: "cha3", // 鑔
+ 0x9455: "zhi4", // 鑕
+ 0x9456: "mie4", // 鑖
+ 0x9457: "li2", // 鑗
+ 0x9458: "lei2", // 鑘
+ 0x9459: "ji1", // 鑙
+ 0x945a: "zuan4", // 鑚
+ 0x945b: "kuang4", // 鑛
+ 0x945c: "shang3", // 鑜
+ 0x945d: "peng2", // 鑝
+ 0x945e: "la4", // 鑞
+ 0x945f: "du2", // 鑟
+ 0x9460: "shuo4", // 鑠
+ 0x9461: "chuo4", // 鑡
+ 0x9462: "lv4", // 鑢
+ 0x9463: "biao1", // 鑣
+ 0x9464: "bao4", // 鑤
+ 0x9465: "lu3", // 鑥
+ 0x9466: "xian5", // 鑦
+ 0x9467: "kuan1", // 鑧
+ 0x9468: "long2", // 鑨
+ 0x9469: "e4", // 鑩
+ 0x946a: "lu2", // 鑪
+ 0x946b: "xin1", // 鑫
+ 0x946c: "jian4", // 鑬
+ 0x946d: "lan4", // 鑭
+ 0x946e: "bo2", // 鑮
+ 0x946f: "jian1", // 鑯
+ 0x9470: "yao4", // 鑰
+ 0x9471: "chan2", // 鑱
+ 0x9472: "xiang1", // 鑲
+ 0x9473: "jian4", // 鑳
+ 0x9474: "xi1", // 鑴
+ 0x9475: "guan4", // 鑵
+ 0x9476: "cang2", // 鑶
+ 0x9477: "nie4", // 鑷
+ 0x9478: "lei3", // 鑸
+ 0x9479: "cuan1", // 鑹
+ 0x947a: "qu2", // 鑺
+ 0x947b: "pan4", // 鑻
+ 0x947c: "luo2", // 鑼
+ 0x947d: "zuan1", // 鑽
+ 0x947e: "luan2", // 鑾
+ 0x947f: "zao2", // 鑿
+ 0x9480: "nie4", // 钀
+ 0x9481: "jue2", // 钁
+ 0x9482: "tang3", // 钂
+ 0x9483: "zhu2", // 钃
+ 0x9484: "lan2", // 钄
+ 0x9485: "jin1", // 钅
+ 0x9486: "ga2", // 钆
+ 0x9487: "yi3", // 钇
+ 0x9488: "zhen1", // 针
+ 0x9489: "ding1", // 钉
+ 0x948a: "zhao1", // 钊
+ 0x948b: "po1", // 钋
+ 0x948c: "liao3", // 钌
+ 0x948d: "tu3", // 钍
+ 0x948e: "qian1", // 钎
+ 0x948f: "chuan4", // 钏
+ 0x9490: "shan1", // 钐
+ 0x9491: "sa4", // 钑
+ 0x9492: "fan2", // 钒
+ 0x9493: "diao4", // 钓
+ 0x9494: "men2", // 钔
+ 0x9495: "nv3", // 钕
+ 0x9496: "yang2", // 钖
+ 0x9497: "chai1", // 钗
+ 0x9498: "xing2", // 钘
+ 0x9499: "gai4", // 钙
+ 0x949a: "bu4", // 钚
+ 0x949b: "tai4", // 钛
+ 0x949c: "ju4", // 钜
+ 0x949d: "dun4", // 钝
+ 0x949e: "chao1", // 钞
+ 0x949f: "zhong1", // 钟
+ 0x94a0: "na4", // 钠
+ 0x94a1: "bei4", // 钡
+ 0x94a2: "gang1", // 钢
+ 0x94a3: "ban3", // 钣
+ 0x94a4: "qian2", // 钤
+ 0x94a5: "yao4", // 钥
+ 0x94a6: "qin1", // 钦
+ 0x94a7: "jun1", // 钧
+ 0x94a8: "wu1", // 钨
+ 0x94a9: "gou1", // 钩
+ 0x94aa: "kang4", // 钪
+ 0x94ab: "fang1", // 钫
+ 0x94ac: "huo3", // 钬
+ 0x94ad: "tou3", // 钭
+ 0x94ae: "niu3", // 钮
+ 0x94af: "ba3", // 钯
+ 0x94b0: "yu4", // 钰
+ 0x94b1: "qian2", // 钱
+ 0x94b2: "zheng1", // 钲
+ 0x94b3: "qian2", // 钳
+ 0x94b4: "gu3", // 钴
+ 0x94b5: "bo1", // 钵
+ 0x94b6: "ke1", // 钶
+ 0x94b7: "po3", // 钷
+ 0x94b8: "bu1", // 钸
+ 0x94b9: "bo2", // 钹
+ 0x94ba: "yue4", // 钺
+ 0x94bb: "zuan1", // 钻
+ 0x94bc: "mu4", // 钼
+ 0x94bd: "tan3", // 钽
+ 0x94be: "jia3", // 钾
+ 0x94bf: "dian4", // 钿
+ 0x94c0: "you2", // 铀
+ 0x94c1: "tie3", // 铁
+ 0x94c2: "bo2", // 铂
+ 0x94c3: "ling2", // 铃
+ 0x94c4: "shuo4", // 铄
+ 0x94c5: "qian1", // 铅
+ 0x94c6: "mao3", // 铆
+ 0x94c7: "bao4", // 铇
+ 0x94c8: "shi4", // 铈
+ 0x94c9: "xuan4", // 铉
+ 0x94ca: "ta1", // 铊
+ 0x94cb: "bi4", // 铋
+ 0x94cc: "ni2", // 铌
+ 0x94cd: "pi1", // 铍
+ 0x94ce: "duo2", // 铎
+ 0x94cf: "xing2", // 铏
+ 0x94d0: "kao4", // 铐
+ 0x94d1: "lao3", // 铑
+ 0x94d2: "er3", // 铒
+ 0x94d3: "mang2", // 铓
+ 0x94d4: "ya1", // 铔
+ 0x94d5: "you3", // 铕
+ 0x94d6: "cheng2", // 铖
+ 0x94d7: "jia2", // 铗
+ 0x94d8: "ye2", // 铘
+ 0x94d9: "nao2", // 铙
+ 0x94da: "zhi4", // 铚
+ 0x94db: "dang1", // 铛
+ 0x94dc: "tong2", // 铜
+ 0x94dd: "lv3", // 铝
+ 0x94de: "diao4", // 铞
+ 0x94df: "yin1", // 铟
+ 0x94e0: "kai3", // 铠
+ 0x94e1: "zha2", // 铡
+ 0x94e2: "zhu1", // 铢
+ 0x94e3: "xi3", // 铣
+ 0x94e4: "ding4", // 铤
+ 0x94e5: "diu1", // 铥
+ 0x94e6: "xian1", // 铦
+ 0x94e7: "hua2", // 铧
+ 0x94e8: "quan2", // 铨
+ 0x94e9: "sha1", // 铩
+ 0x94ea: "ha1", // 铪
+ 0x94eb: "diao4", // 铫
+ 0x94ec: "ge4", // 铬
+ 0x94ed: "ming2", // 铭
+ 0x94ee: "zheng1", // 铮
+ 0x94ef: "se4", // 铯
+ 0x94f0: "jiao3", // 铰
+ 0x94f1: "yi1", // 铱
+ 0x94f2: "chan3", // 铲
+ 0x94f3: "chong4", // 铳
+ 0x94f4: "tang1", // 铴
+ 0x94f5: "an3", // 铵
+ 0x94f6: "yin2", // 银
+ 0x94f7: "ru2", // 铷
+ 0x94f8: "zhu4", // 铸
+ 0x94f9: "lao2", // 铹
+ 0x94fa: "pu4", // 铺
+ 0x94fb: "wu2", // 铻
+ 0x94fc: "lai2", // 铼
+ 0x94fd: "te4", // 铽
+ 0x94fe: "lian4", // 链
+ 0x94ff: "keng1", // 铿
+ 0x9500: "xiao1", // 销
+ 0x9501: "suo3", // 锁
+ 0x9502: "li3", // 锂
+ 0x9503: "zeng4", // 锃
+ 0x9504: "chu2", // 锄
+ 0x9505: "guo1", // 锅
+ 0x9506: "gao4", // 锆
+ 0x9507: "e2", // 锇
+ 0x9508: "xiu4", // 锈
+ 0x9509: "cuo4", // 锉
+ 0x950a: "lve4", // 锊
+ 0x950b: "feng1", // 锋
+ 0x950c: "xin1", // 锌
+ 0x950d: "liu3", // 锍
+ 0x950e: "kai1", // 锎
+ 0x950f: "jian3", // 锏
+ 0x9510: "rui4", // 锐
+ 0x9511: "ti1", // 锑
+ 0x9512: "lang2", // 锒
+ 0x9513: "qin3", // 锓
+ 0x9514: "ju1", // 锔
+ 0x9515: "a1", // 锕
+ 0x9516: "qiang1", // 锖
+ 0x9517: "zhe3", // 锗
+ 0x9518: "nuo4", // 锘
+ 0x9519: "cuo4", // 错
+ 0x951a: "mao2", // 锚
+ 0x951b: "ben1", // 锛
+ 0x951c: "qi2", // 锜
+ 0x951d: "de2", // 锝
+ 0x951e: "ke4", // 锞
+ 0x951f: "kun1", // 锟
+ 0x9520: "chang1", // 锠
+ 0x9521: "xi1", // 锡
+ 0x9522: "gu4", // 锢
+ 0x9523: "luo2", // 锣
+ 0x9524: "chui2", // 锤
+ 0x9525: "zhui1", // 锥
+ 0x9526: "jin3", // 锦
+ 0x9527: "zhi4", // 锧
+ 0x9528: "xian1", // 锨
+ 0x9529: "juan3", // 锩
+ 0x952a: "huo1", // 锪
+ 0x952b: "pei2", // 锫
+ 0x952c: "tan2", // 锬
+ 0x952d: "ding4", // 锭
+ 0x952e: "jian4", // 键
+ 0x952f: "ju4", // 锯
+ 0x9530: "meng3", // 锰
+ 0x9531: "zi1", // 锱
+ 0x9532: "qie4", // 锲
+ 0x9533: "ying1", // 锳
+ 0x9534: "kai3", // 锴
+ 0x9535: "qiang1", // 锵
+ 0x9536: "si1", // 锶
+ 0x9537: "e4", // 锷
+ 0x9538: "cha1", // 锸
+ 0x9539: "qiao1", // 锹
+ 0x953a: "zhong1", // 锺
+ 0x953b: "duan4", // 锻
+ 0x953c: "sou1", // 锼
+ 0x953d: "huang2", // 锽
+ 0x953e: "huan2", // 锾
+ 0x953f: "ai1", // 锿
+ 0x9540: "du4", // 镀
+ 0x9541: "mei3", // 镁
+ 0x9542: "lou4", // 镂
+ 0x9543: "zi1", // 镃
+ 0x9544: "fei4", // 镄
+ 0x9545: "mei2", // 镅
+ 0x9546: "mo4", // 镆
+ 0x9547: "zhen4", // 镇
+ 0x9548: "bo2", // 镈
+ 0x9549: "ge2", // 镉
+ 0x954a: "nie4", // 镊
+ 0x954b: "tang3", // 镋
+ 0x954c: "juan1", // 镌
+ 0x954d: "nie4", // 镍
+ 0x954e: "na2", // 镎
+ 0x954f: "liu2", // 镏
+ 0x9550: "gao3", // 镐
+ 0x9551: "bang4", // 镑
+ 0x9552: "yi4", // 镒
+ 0x9553: "jia1", // 镓
+ 0x9554: "bin1", // 镔
+ 0x9555: "rong2", // 镕
+ 0x9556: "biao1", // 镖
+ 0x9557: "tang1", // 镗
+ 0x9558: "man4", // 镘
+ 0x9559: "luo2", // 镙
+ 0x955a: "beng4", // 镚
+ 0x955b: "yong1", // 镛
+ 0x955c: "jing4", // 镜
+ 0x955d: "di1", // 镝
+ 0x955e: "zu2", // 镞
+ 0x955f: "xuan4", // 镟
+ 0x9560: "liu2", // 镠
+ 0x9561: "chan2", // 镡
+ 0x9562: "jue2", // 镢
+ 0x9563: "liao4", // 镣
+ 0x9564: "pu2", // 镤
+ 0x9565: "lu3", // 镥
+ 0x9566: "dui4", // 镦
+ 0x9567: "lan2", // 镧
+ 0x9568: "pu3", // 镨
+ 0x9569: "cuan1", // 镩
+ 0x956a: "qiang1", // 镪
+ 0x956b: "deng4", // 镫
+ 0x956c: "huo4", // 镬
+ 0x956d: "lei2", // 镭
+ 0x956e: "huan2", // 镮
+ 0x956f: "zhuo2", // 镯
+ 0x9570: "lian2", // 镰
+ 0x9571: "yi4", // 镱
+ 0x9572: "cha3", // 镲
+ 0x9573: "biao1", // 镳
+ 0x9574: "la4", // 镴
+ 0x9575: "chan2", // 镵
+ 0x9576: "xiang1", // 镶
+ 0x9577: "zhang3", // 長
+ 0x9578: "chang2", // 镸
+ 0x9579: "jiu3", // 镹
+ 0x957a: "ao3", // 镺
+ 0x957b: "die2", // 镻
+ 0x957c: "qu1", // 镼
+ 0x957d: "liao3", // 镽
+ 0x957e: "mi2", // 镾
+ 0x957f: "zhang3", // 长
+ 0x9580: "men2", // 門
+ 0x9581: "ma4", // 閁
+ 0x9582: "shuan1", // 閂
+ 0x9583: "shan3", // 閃
+ 0x9584: "huo4", // 閄
+ 0x9585: "men2", // 閅
+ 0x9586: "yan2", // 閆
+ 0x9587: "bi4", // 閇
+ 0x9588: "han4", // 閈
+ 0x9589: "bi4", // 閉
+ 0x958a: "shan1", // 閊
+ 0x958b: "kai1", // 開
+ 0x958c: "kang4", // 閌
+ 0x958d: "beng1", // 閍
+ 0x958e: "hong2", // 閎
+ 0x958f: "run4", // 閏
+ 0x9590: "san4", // 閐
+ 0x9591: "xian2", // 閑
+ 0x9592: "xian2", // 閒
+ 0x9593: "jian1", // 間
+ 0x9594: "min3", // 閔
+ 0x9595: "xia1", // 閕
+ 0x9596: "shui5", // 閖
+ 0x9597: "dou4", // 閗
+ 0x9598: "zha2", // 閘
+ 0x9599: "nao4", // 閙
+ 0x959a: "zhan1", // 閚
+ 0x959b: "peng1", // 閛
+ 0x959c: "xia3", // 閜
+ 0x959d: "ling2", // 閝
+ 0x959e: "bian4", // 閞
+ 0x959f: "bi4", // 閟
+ 0x95a0: "run4", // 閠
+ 0x95a1: "ai4", // 閡
+ 0x95a2: "guan1", // 関
+ 0x95a3: "ge2", // 閣
+ 0x95a4: "ge2", // 閤
+ 0x95a5: "fa2", // 閥
+ 0x95a6: "chu4", // 閦
+ 0x95a7: "hong4", // 閧
+ 0x95a8: "gui1", // 閨
+ 0x95a9: "min3", // 閩
+ 0x95aa: "se1", // 閪
+ 0x95ab: "kun3", // 閫
+ 0x95ac: "lang4", // 閬
+ 0x95ad: "lv2", // 閭
+ 0x95ae: "ting2", // 閮
+ 0x95af: "sha4", // 閯
+ 0x95b0: "ju2", // 閰
+ 0x95b1: "yue4", // 閱
+ 0x95b2: "yue4", // 閲
+ 0x95b3: "chan3", // 閳
+ 0x95b4: "qu4", // 閴
+ 0x95b5: "lin4", // 閵
+ 0x95b6: "chang1", // 閶
+ 0x95b7: "shai4", // 閷
+ 0x95b8: "kun3", // 閸
+ 0x95b9: "yan1", // 閹
+ 0x95ba: "wen2", // 閺
+ 0x95bb: "yan2", // 閻
+ 0x95bc: "e4", // 閼
+ 0x95bd: "hun1", // 閽
+ 0x95be: "yu4", // 閾
+ 0x95bf: "wen2", // 閿
+ 0x95c0: "hong4", // 闀
+ 0x95c1: "bao1", // 闁
+ 0x95c2: "hong4", // 闂
+ 0x95c3: "qu4", // 闃
+ 0x95c4: "yao3", // 闄
+ 0x95c5: "wen2", // 闅
+ 0x95c6: "ban3", // 闆
+ 0x95c7: "an4", // 闇
+ 0x95c8: "wei2", // 闈
+ 0x95c9: "yin1", // 闉
+ 0x95ca: "kuo4", // 闊
+ 0x95cb: "que4", // 闋
+ 0x95cc: "lan2", // 闌
+ 0x95cd: "du1", // 闍
+ 0x95ce: "quan2", // 闎
+ 0x95cf: "feng1", // 闏
+ 0x95d0: "tian2", // 闐
+ 0x95d1: "nie4", // 闑
+ 0x95d2: "ta4", // 闒
+ 0x95d3: "kai3", // 闓
+ 0x95d4: "he2", // 闔
+ 0x95d5: "que4", // 闕
+ 0x95d6: "chuang3", // 闖
+ 0x95d7: "guan1", // 闗
+ 0x95d8: "dou4", // 闘
+ 0x95d9: "qi3", // 闙
+ 0x95da: "kui1", // 闚
+ 0x95db: "tang2", // 闛
+ 0x95dc: "guan1", // 關
+ 0x95dd: "piao2", // 闝
+ 0x95de: "kan4", // 闞
+ 0x95df: "xi4", // 闟
+ 0x95e0: "hui4", // 闠
+ 0x95e1: "chan3", // 闡
+ 0x95e2: "pi4", // 闢
+ 0x95e3: "dang4", // 闣
+ 0x95e4: "huan2", // 闤
+ 0x95e5: "ta4", // 闥
+ 0x95e6: "wen2", // 闦
+ 0x95e7: "ta1", // 闧
+ 0x95e8: "men2", // 门
+ 0x95e9: "shuan1", // 闩
+ 0x95ea: "shan3", // 闪
+ 0x95eb: "yan2", // 闫
+ 0x95ec: "han4", // 闬
+ 0x95ed: "bi4", // 闭
+ 0x95ee: "wen4", // 问
+ 0x95ef: "chuang3", // 闯
+ 0x95f0: "run4", // 闰
+ 0x95f1: "wei2", // 闱
+ 0x95f2: "xian2", // 闲
+ 0x95f3: "hong2", // 闳
+ 0x95f4: "jian1", // 间
+ 0x95f5: "min3", // 闵
+ 0x95f6: "kang1", // 闶
+ 0x95f7: "men4", // 闷
+ 0x95f8: "zha2", // 闸
+ 0x95f9: "nao4", // 闹
+ 0x95fa: "gui1", // 闺
+ 0x95fb: "wen2", // 闻
+ 0x95fc: "ta4", // 闼
+ 0x95fd: "min3", // 闽
+ 0x95fe: "lv2", // 闾
+ 0x95ff: "kai3", // 闿
+ 0x9600: "fa2", // 阀
+ 0x9601: "ge2", // 阁
+ 0x9602: "he2", // 阂
+ 0x9603: "kun3", // 阃
+ 0x9604: "jiu1", // 阄
+ 0x9605: "yue4", // 阅
+ 0x9606: "lang2", // 阆
+ 0x9607: "du1", // 阇
+ 0x9608: "yu4", // 阈
+ 0x9609: "yan1", // 阉
+ 0x960a: "chang1", // 阊
+ 0x960b: "xi4", // 阋
+ 0x960c: "wen2", // 阌
+ 0x960d: "hun1", // 阍
+ 0x960e: "yan2", // 阎
+ 0x960f: "e4", // 阏
+ 0x9610: "chan3", // 阐
+ 0x9611: "lan2", // 阑
+ 0x9612: "qu4", // 阒
+ 0x9613: "hui4", // 阓
+ 0x9614: "kuo4", // 阔
+ 0x9615: "que4", // 阕
+ 0x9616: "he2", // 阖
+ 0x9617: "tian2", // 阗
+ 0x9618: "da2", // 阘
+ 0x9619: "que1", // 阙
+ 0x961a: "han3", // 阚
+ 0x961b: "huan2", // 阛
+ 0x961c: "fu4", // 阜
+ 0x961d: "fu4", // 阝
+ 0x961e: "le4", // 阞
+ 0x961f: "dui4", // 队
+ 0x9620: "xin4", // 阠
+ 0x9621: "qian1", // 阡
+ 0x9622: "wu4", // 阢
+ 0x9623: "gai4", // 阣
+ 0x9624: "zhi4", // 阤
+ 0x9625: "yin1", // 阥
+ 0x9626: "yang2", // 阦
+ 0x9627: "dou3", // 阧
+ 0x9628: "e4", // 阨
+ 0x9629: "sheng1", // 阩
+ 0x962a: "ban3", // 阪
+ 0x962b: "pei2", // 阫
+ 0x962c: "keng1", // 阬
+ 0x962d: "yun3", // 阭
+ 0x962e: "ruan3", // 阮
+ 0x962f: "zhi3", // 阯
+ 0x9630: "pi2", // 阰
+ 0x9631: "jing3", // 阱
+ 0x9632: "fang2", // 防
+ 0x9633: "yang2", // 阳
+ 0x9634: "yin1", // 阴
+ 0x9635: "zhen4", // 阵
+ 0x9636: "jie1", // 阶
+ 0x9637: "cheng1", // 阷
+ 0x9638: "e4", // 阸
+ 0x9639: "qu1", // 阹
+ 0x963a: "di3", // 阺
+ 0x963b: "zu3", // 阻
+ 0x963c: "zuo4", // 阼
+ 0x963d: "dian4", // 阽
+ 0x963e: "ling3", // 阾
+ 0x963f: "a1", // 阿
+ 0x9640: "tuo2", // 陀
+ 0x9641: "tuo2", // 陁
+ 0x9642: "bei1", // 陂
+ 0x9643: "bing3", // 陃
+ 0x9644: "fu4", // 附
+ 0x9645: "ji4", // 际
+ 0x9646: "lu4", // 陆
+ 0x9647: "long3", // 陇
+ 0x9648: "chen2", // 陈
+ 0x9649: "xing2", // 陉
+ 0x964a: "duo4", // 陊
+ 0x964b: "lou4", // 陋
+ 0x964c: "mo4", // 陌
+ 0x964d: "jiang4", // 降
+ 0x964e: "shu1", // 陎
+ 0x964f: "duo4", // 陏
+ 0x9650: "xian4", // 限
+ 0x9651: "er2", // 陑
+ 0x9652: "gui3", // 陒
+ 0x9653: "yu1", // 陓
+ 0x9654: "gai1", // 陔
+ 0x9655: "shan3", // 陕
+ 0x9656: "jun4", // 陖
+ 0x9657: "qiao4", // 陗
+ 0x9658: "xing2", // 陘
+ 0x9659: "chun2", // 陙
+ 0x965a: "fu4", // 陚
+ 0x965b: "bi4", // 陛
+ 0x965c: "xia2", // 陜
+ 0x965d: "shan3", // 陝
+ 0x965e: "sheng1", // 陞
+ 0x965f: "zhi4", // 陟
+ 0x9660: "pu1", // 陠
+ 0x9661: "dou3", // 陡
+ 0x9662: "yuan4", // 院
+ 0x9663: "zhen4", // 陣
+ 0x9664: "chu2", // 除
+ 0x9665: "xian4", // 陥
+ 0x9666: "dao3", // 陦
+ 0x9667: "nie4", // 陧
+ 0x9668: "yun3", // 陨
+ 0x9669: "xian3", // 险
+ 0x966a: "pei2", // 陪
+ 0x966b: "fei4", // 陫
+ 0x966c: "zou1", // 陬
+ 0x966d: "yi4", // 陭
+ 0x966e: "dui4", // 陮
+ 0x966f: "lun2", // 陯
+ 0x9670: "yin1", // 陰
+ 0x9671: "ju1", // 陱
+ 0x9672: "chui2", // 陲
+ 0x9673: "chen2", // 陳
+ 0x9674: "pi2", // 陴
+ 0x9675: "ling2", // 陵
+ 0x9676: "tao2", // 陶
+ 0x9677: "xian4", // 陷
+ 0x9678: "lu4", // 陸
+ 0x9679: "sheng1", // 陹
+ 0x967a: "xian3", // 険
+ 0x967b: "yin1", // 陻
+ 0x967c: "zhu3", // 陼
+ 0x967d: "yang2", // 陽
+ 0x967e: "reng2", // 陾
+ 0x967f: "xia2", // 陿
+ 0x9680: "chong2", // 隀
+ 0x9681: "yan4", // 隁
+ 0x9682: "yin1", // 隂
+ 0x9683: "shu4", // 隃
+ 0x9684: "di1", // 隄
+ 0x9685: "yu2", // 隅
+ 0x9686: "long2", // 隆
+ 0x9687: "wei1", // 隇
+ 0x9688: "wei1", // 隈
+ 0x9689: "nie4", // 隉
+ 0x968a: "dui4", // 隊
+ 0x968b: "sui2", // 隋
+ 0x968c: "an3", // 隌
+ 0x968d: "huang2", // 隍
+ 0x968e: "jie1", // 階
+ 0x968f: "sui2", // 随
+ 0x9690: "yin3", // 隐
+ 0x9691: "gai4", // 隑
+ 0x9692: "yan3", // 隒
+ 0x9693: "hui1", // 隓
+ 0x9694: "ge2", // 隔
+ 0x9695: "yun3", // 隕
+ 0x9696: "wu4", // 隖
+ 0x9697: "kui2", // 隗
+ 0x9698: "ai4", // 隘
+ 0x9699: "xi4", // 隙
+ 0x969a: "tang2", // 隚
+ 0x969b: "ji4", // 際
+ 0x969c: "zhang4", // 障
+ 0x969d: "dao3", // 隝
+ 0x969e: "ao2", // 隞
+ 0x969f: "xi4", // 隟
+ 0x96a0: "yin3", // 隠
+ 0x96a1: "sa4", // 隡
+ 0x96a2: "rao3", // 隢
+ 0x96a3: "lin2", // 隣
+ 0x96a4: "tui2", // 隤
+ 0x96a5: "deng4", // 隥
+ 0x96a6: "jiao3", // 隦
+ 0x96a7: "sui4", // 隧
+ 0x96a8: "sui2", // 隨
+ 0x96a9: "ao4", // 隩
+ 0x96aa: "xian3", // 險
+ 0x96ab: "fen2", // 隫
+ 0x96ac: "ni3", // 隬
+ 0x96ad: "er2", // 隭
+ 0x96ae: "ji1", // 隮
+ 0x96af: "dao3", // 隯
+ 0x96b0: "xi2", // 隰
+ 0x96b1: "yin3", // 隱
+ 0x96b2: "zhi4", // 隲
+ 0x96b3: "hui1", // 隳
+ 0x96b4: "long3", // 隴
+ 0x96b5: "xi1", // 隵
+ 0x96b6: "li4", // 隶
+ 0x96b7: "li4", // 隷
+ 0x96b8: "li4", // 隸
+ 0x96b9: "zhui1", // 隹
+ 0x96ba: "hu2", // 隺
+ 0x96bb: "zhi1", // 隻
+ 0x96bc: "sun3", // 隼
+ 0x96bd: "juan4", // 隽
+ 0x96be: "nan2", // 难
+ 0x96bf: "yi4", // 隿
+ 0x96c0: "que4", // 雀
+ 0x96c1: "yan4", // 雁
+ 0x96c2: "qin2", // 雂
+ 0x96c3: "qian1", // 雃
+ 0x96c4: "xiong2", // 雄
+ 0x96c5: "ya3", // 雅
+ 0x96c6: "ji2", // 集
+ 0x96c7: "gu4", // 雇
+ 0x96c8: "huan2", // 雈
+ 0x96c9: "zhi4", // 雉
+ 0x96ca: "gou4", // 雊
+ 0x96cb: "juan4", // 雋
+ 0x96cc: "ci2", // 雌
+ 0x96cd: "yong1", // 雍
+ 0x96ce: "ju1", // 雎
+ 0x96cf: "chu2", // 雏
+ 0x96d0: "hu1", // 雐
+ 0x96d1: "za2", // 雑
+ 0x96d2: "luo4", // 雒
+ 0x96d3: "yu2", // 雓
+ 0x96d4: "chou2", // 雔
+ 0x96d5: "diao1", // 雕
+ 0x96d6: "sui1", // 雖
+ 0x96d7: "han4", // 雗
+ 0x96d8: "wo4", // 雘
+ 0x96d9: "shuang1", // 雙
+ 0x96da: "guan4", // 雚
+ 0x96db: "chu2", // 雛
+ 0x96dc: "za2", // 雜
+ 0x96dd: "yong1", // 雝
+ 0x96de: "ji1", // 雞
+ 0x96df: "xi1", // 雟
+ 0x96e0: "chou2", // 雠
+ 0x96e1: "liu4", // 雡
+ 0x96e2: "li2", // 離
+ 0x96e3: "nan2", // 難
+ 0x96e4: "xue2", // 雤
+ 0x96e5: "za2", // 雥
+ 0x96e6: "ji2", // 雦
+ 0x96e7: "ji2", // 雧
+ 0x96e8: "yu3", // 雨
+ 0x96e9: "yu2", // 雩
+ 0x96ea: "xue3", // 雪
+ 0x96eb: "na3", // 雫
+ 0x96ec: "fou3", // 雬
+ 0x96ed: "se4", // 雭
+ 0x96ee: "mu4", // 雮
+ 0x96ef: "wen2", // 雯
+ 0x96f0: "fen1", // 雰
+ 0x96f1: "pang1", // 雱
+ 0x96f2: "yun2", // 雲
+ 0x96f3: "li4", // 雳
+ 0x96f4: "chi4", // 雴
+ 0x96f5: "yang1", // 雵
+ 0x96f6: "ling2", // 零
+ 0x96f7: "lei2", // 雷
+ 0x96f8: "an2", // 雸
+ 0x96f9: "bao2", // 雹
+ 0x96fa: "wu4", // 雺
+ 0x96fb: "dian4", // 電
+ 0x96fc: "dang4", // 雼
+ 0x96fd: "hu4", // 雽
+ 0x96fe: "wu4", // 雾
+ 0x96ff: "diao4", // 雿
+ 0x9700: "xu1", // 需
+ 0x9701: "ji4", // 霁
+ 0x9702: "mu4", // 霂
+ 0x9703: "chen2", // 霃
+ 0x9704: "xiao1", // 霄
+ 0x9705: "zha4", // 霅
+ 0x9706: "ting2", // 霆
+ 0x9707: "zhen4", // 震
+ 0x9708: "pei4", // 霈
+ 0x9709: "mei2", // 霉
+ 0x970a: "ling2", // 霊
+ 0x970b: "qi1", // 霋
+ 0x970c: "zhou1", // 霌
+ 0x970d: "huo4", // 霍
+ 0x970e: "sha4", // 霎
+ 0x970f: "fei1", // 霏
+ 0x9710: "hong2", // 霐
+ 0x9711: "zhan1", // 霑
+ 0x9712: "yin1", // 霒
+ 0x9713: "ni2", // 霓
+ 0x9714: "zhu4", // 霔
+ 0x9715: "tun2", // 霕
+ 0x9716: "lin2", // 霖
+ 0x9717: "ling2", // 霗
+ 0x9718: "dong4", // 霘
+ 0x9719: "ying1", // 霙
+ 0x971a: "wu4", // 霚
+ 0x971b: "ling2", // 霛
+ 0x971c: "shuang1", // 霜
+ 0x971d: "ling2", // 霝
+ 0x971e: "xia2", // 霞
+ 0x971f: "hong2", // 霟
+ 0x9720: "yin1", // 霠
+ 0x9721: "mai4", // 霡
+ 0x9722: "mai4", // 霢
+ 0x9723: "yun3", // 霣
+ 0x9724: "liu4", // 霤
+ 0x9725: "meng4", // 霥
+ 0x9726: "bin1", // 霦
+ 0x9727: "wu4", // 霧
+ 0x9728: "wei4", // 霨
+ 0x9729: "kuo4", // 霩
+ 0x972a: "yin2", // 霪
+ 0x972b: "xi2", // 霫
+ 0x972c: "yi4", // 霬
+ 0x972d: "ai3", // 霭
+ 0x972e: "dan4", // 霮
+ 0x972f: "teng4", // 霯
+ 0x9730: "san3", // 霰
+ 0x9731: "yu4", // 霱
+ 0x9732: "lu4", // 露
+ 0x9733: "long2", // 霳
+ 0x9734: "dai4", // 霴
+ 0x9735: "ji2", // 霵
+ 0x9736: "pang1", // 霶
+ 0x9737: "yang2", // 霷
+ 0x9738: "ba4", // 霸
+ 0x9739: "pi1", // 霹
+ 0x973a: "wei2", // 霺
+ 0x973b: "feng1", // 霻
+ 0x973c: "xi4", // 霼
+ 0x973d: "ji4", // 霽
+ 0x973e: "mai2", // 霾
+ 0x973f: "meng2", // 霿
+ 0x9740: "meng2", // 靀
+ 0x9741: "lei2", // 靁
+ 0x9742: "li4", // 靂
+ 0x9743: "huo4", // 靃
+ 0x9744: "ai3", // 靄
+ 0x9745: "fei4", // 靅
+ 0x9746: "dai4", // 靆
+ 0x9747: "long2", // 靇
+ 0x9748: "ling2", // 靈
+ 0x9749: "ai4", // 靉
+ 0x974a: "feng1", // 靊
+ 0x974b: "li4", // 靋
+ 0x974c: "bao3", // 靌
+ 0x974d: "he4", // 靍
+ 0x974e: "he4", // 靎
+ 0x974f: "he4", // 靏
+ 0x9750: "bing4", // 靐
+ 0x9751: "qing1", // 靑
+ 0x9752: "qing1", // 青
+ 0x9753: "jing4", // 靓
+ 0x9754: "tian1", // 靔
+ 0x9755: "zhen1", // 靕
+ 0x9756: "jing4", // 靖
+ 0x9757: "cheng1", // 靗
+ 0x9758: "qing4", // 靘
+ 0x9759: "jing4", // 静
+ 0x975a: "jing4", // 靚
+ 0x975b: "dian4", // 靛
+ 0x975c: "jing4", // 靜
+ 0x975d: "tian1", // 靝
+ 0x975e: "fei1", // 非
+ 0x975f: "fei1", // 靟
+ 0x9760: "kao4", // 靠
+ 0x9761: "mi2", // 靡
+ 0x9762: "mian4", // 面
+ 0x9763: "mian4", // 靣
+ 0x9764: "bao4", // 靤
+ 0x9765: "ye4", // 靥
+ 0x9766: "tian3", // 靦
+ 0x9767: "hui4", // 靧
+ 0x9768: "ye4", // 靨
+ 0x9769: "ge2", // 革
+ 0x976a: "ding1", // 靪
+ 0x976b: "cha2", // 靫
+ 0x976c: "qian2", // 靬
+ 0x976d: "ren4", // 靭
+ 0x976e: "di2", // 靮
+ 0x976f: "du4", // 靯
+ 0x9770: "wu4", // 靰
+ 0x9771: "ren4", // 靱
+ 0x9772: "qin2", // 靲
+ 0x9773: "jin4", // 靳
+ 0x9774: "xue1", // 靴
+ 0x9775: "niu3", // 靵
+ 0x9776: "ba3", // 靶
+ 0x9777: "yin3", // 靷
+ 0x9778: "sa3", // 靸
+ 0x9779: "na4", // 靹
+ 0x977a: "mo4", // 靺
+ 0x977b: "zu3", // 靻
+ 0x977c: "da2", // 靼
+ 0x977d: "ban4", // 靽
+ 0x977e: "yi4", // 靾
+ 0x977f: "yao4", // 靿
+ 0x9780: "tao2", // 鞀
+ 0x9781: "bei4", // 鞁
+ 0x9782: "jie1", // 鞂
+ 0x9783: "hong2", // 鞃
+ 0x9784: "pao2", // 鞄
+ 0x9785: "yang1", // 鞅
+ 0x9786: "bing3", // 鞆
+ 0x9787: "yin1", // 鞇
+ 0x9788: "ge2", // 鞈
+ 0x9789: "tao2", // 鞉
+ 0x978a: "jie2", // 鞊
+ 0x978b: "xie2", // 鞋
+ 0x978c: "an1", // 鞌
+ 0x978d: "an1", // 鞍
+ 0x978e: "hen2", // 鞎
+ 0x978f: "gong3", // 鞏
+ 0x9790: "qia3", // 鞐
+ 0x9791: "da2", // 鞑
+ 0x9792: "qiao2", // 鞒
+ 0x9793: "ting1", // 鞓
+ 0x9794: "man2", // 鞔
+ 0x9795: "ying4", // 鞕
+ 0x9796: "sui1", // 鞖
+ 0x9797: "tiao2", // 鞗
+ 0x9798: "qiao4", // 鞘
+ 0x9799: "xuan4", // 鞙
+ 0x979a: "kong4", // 鞚
+ 0x979b: "beng3", // 鞛
+ 0x979c: "ta4", // 鞜
+ 0x979d: "shang4", // 鞝
+ 0x979e: "bing3", // 鞞
+ 0x979f: "kuo4", // 鞟
+ 0x97a0: "ju1", // 鞠
+ 0x97a1: "la5", // 鞡
+ 0x97a2: "xie4", // 鞢
+ 0x97a3: "rou2", // 鞣
+ 0x97a4: "bang1", // 鞤
+ 0x97a5: "eng1", // 鞥
+ 0x97a6: "qiu1", // 鞦
+ 0x97a7: "qiu1", // 鞧
+ 0x97a8: "he2", // 鞨
+ 0x97a9: "qiao4", // 鞩
+ 0x97aa: "mu4", // 鞪
+ 0x97ab: "ju1", // 鞫
+ 0x97ac: "jian1", // 鞬
+ 0x97ad: "bian1", // 鞭
+ 0x97ae: "di1", // 鞮
+ 0x97af: "jian1", // 鞯
+ 0x97b0: "wen1", // 鞰
+ 0x97b1: "tao1", // 鞱
+ 0x97b2: "gou1", // 鞲
+ 0x97b3: "ta4", // 鞳
+ 0x97b4: "bei4", // 鞴
+ 0x97b5: "xie2", // 鞵
+ 0x97b6: "pan2", // 鞶
+ 0x97b7: "ge2", // 鞷
+ 0x97b8: "bi4", // 鞸
+ 0x97b9: "kuo4", // 鞹
+ 0x97ba: "tang1", // 鞺
+ 0x97bb: "lou2", // 鞻
+ 0x97bc: "gui4", // 鞼
+ 0x97bd: "qiao2", // 鞽
+ 0x97be: "xue1", // 鞾
+ 0x97bf: "ji1", // 鞿
+ 0x97c0: "jian1", // 韀
+ 0x97c1: "jiang1", // 韁
+ 0x97c2: "chan4", // 韂
+ 0x97c3: "da2", // 韃
+ 0x97c4: "hu4", // 韄
+ 0x97c5: "xian3", // 韅
+ 0x97c6: "qian1", // 韆
+ 0x97c7: "du2", // 韇
+ 0x97c8: "wa4", // 韈
+ 0x97c9: "jian1", // 韉
+ 0x97ca: "lan2", // 韊
+ 0x97cb: "wei2", // 韋
+ 0x97cc: "ren4", // 韌
+ 0x97cd: "fu2", // 韍
+ 0x97ce: "mei4", // 韎
+ 0x97cf: "quan4", // 韏
+ 0x97d0: "ge2", // 韐
+ 0x97d1: "wei3", // 韑
+ 0x97d2: "qiao4", // 韒
+ 0x97d3: "han2", // 韓
+ 0x97d4: "chang4", // 韔
+ 0x97d5: "kuo4", // 韕
+ 0x97d6: "rou3", // 韖
+ 0x97d7: "yun4", // 韗
+ 0x97d8: "she4", // 韘
+ 0x97d9: "wei3", // 韙
+ 0x97da: "ge2", // 韚
+ 0x97db: "bai4", // 韛
+ 0x97dc: "tao1", // 韜
+ 0x97dd: "gou1", // 韝
+ 0x97de: "yun4", // 韞
+ 0x97df: "gao1", // 韟
+ 0x97e0: "bi4", // 韠
+ 0x97e1: "wei3", // 韡
+ 0x97e2: "sui4", // 韢
+ 0x97e3: "du2", // 韣
+ 0x97e4: "wa4", // 韤
+ 0x97e5: "du2", // 韥
+ 0x97e6: "wei2", // 韦
+ 0x97e7: "ren4", // 韧
+ 0x97e8: "fu2", // 韨
+ 0x97e9: "han2", // 韩
+ 0x97ea: "wei3", // 韪
+ 0x97eb: "yun4", // 韫
+ 0x97ec: "tao1", // 韬
+ 0x97ed: "jiu3", // 韭
+ 0x97ee: "jiu3", // 韮
+ 0x97ef: "xian1", // 韯
+ 0x97f0: "xie4", // 韰
+ 0x97f1: "xian1", // 韱
+ 0x97f2: "ji1", // 韲
+ 0x97f3: "yin1", // 音
+ 0x97f4: "za2", // 韴
+ 0x97f5: "yun4", // 韵
+ 0x97f6: "shao2", // 韶
+ 0x97f7: "le4", // 韷
+ 0x97f8: "peng2", // 韸
+ 0x97f9: "huang2", // 韹
+ 0x97fa: "ying1", // 韺
+ 0x97fb: "yun4", // 韻
+ 0x97fc: "peng2", // 韼
+ 0x97fd: "an1", // 韽
+ 0x97fe: "yin1", // 韾
+ 0x97ff: "xiang3", // 響
+ 0x9800: "hu4", // 頀
+ 0x9801: "ye4", // 頁
+ 0x9802: "ding3", // 頂
+ 0x9803: "qing3", // 頃
+ 0x9804: "kui2", // 頄
+ 0x9805: "xiang4", // 項
+ 0x9806: "shun4", // 順
+ 0x9807: "han1", // 頇
+ 0x9808: "xu1", // 須
+ 0x9809: "yi2", // 頉
+ 0x980a: "xu1", // 頊
+ 0x980b: "e3", // 頋
+ 0x980c: "song4", // 頌
+ 0x980d: "kui3", // 頍
+ 0x980e: "qi2", // 頎
+ 0x980f: "hang2", // 頏
+ 0x9810: "yu4", // 預
+ 0x9811: "wan2", // 頑
+ 0x9812: "ban1", // 頒
+ 0x9813: "dun4", // 頓
+ 0x9814: "di2", // 頔
+ 0x9815: "dan1", // 頕
+ 0x9816: "pan4", // 頖
+ 0x9817: "po1", // 頗
+ 0x9818: "ling3", // 領
+ 0x9819: "che4", // 頙
+ 0x981a: "jing3", // 頚
+ 0x981b: "lei4", // 頛
+ 0x981c: "he2", // 頜
+ 0x981d: "qiao1", // 頝
+ 0x981e: "e4", // 頞
+ 0x981f: "e2", // 頟
+ 0x9820: "wei3", // 頠
+ 0x9821: "xie2", // 頡
+ 0x9822: "kuo4", // 頢
+ 0x9823: "shen3", // 頣
+ 0x9824: "yi2", // 頤
+ 0x9825: "yi2", // 頥
+ 0x9826: "hai2", // 頦
+ 0x9827: "dui3", // 頧
+ 0x9828: "yu3", // 頨
+ 0x9829: "ping1", // 頩
+ 0x982a: "lei4", // 頪
+ 0x982b: "fu3", // 頫
+ 0x982c: "jia2", // 頬
+ 0x982d: "tou2", // 頭
+ 0x982e: "hui4", // 頮
+ 0x982f: "kui2", // 頯
+ 0x9830: "jia2", // 頰
+ 0x9831: "luo1", // 頱
+ 0x9832: "ting3", // 頲
+ 0x9833: "cheng1", // 頳
+ 0x9834: "ying3", // 頴
+ 0x9835: "yun1", // 頵
+ 0x9836: "hu2", // 頶
+ 0x9837: "han4", // 頷
+ 0x9838: "jing3", // 頸
+ 0x9839: "tui2", // 頹
+ 0x983a: "tui2", // 頺
+ 0x983b: "pin2", // 頻
+ 0x983c: "lai4", // 頼
+ 0x983d: "tui2", // 頽
+ 0x983e: "zi1", // 頾
+ 0x983f: "zi1", // 頿
+ 0x9840: "chui2", // 顀
+ 0x9841: "ding4", // 顁
+ 0x9842: "lai4", // 顂
+ 0x9843: "tan2", // 顃
+ 0x9844: "han4", // 顄
+ 0x9845: "qian1", // 顅
+ 0x9846: "ke1", // 顆
+ 0x9847: "cui4", // 顇
+ 0x9848: "xuan3", // 顈
+ 0x9849: "qin1", // 顉
+ 0x984a: "yi2", // 顊
+ 0x984b: "sai1", // 顋
+ 0x984c: "ti2", // 題
+ 0x984d: "e2", // 額
+ 0x984e: "e4", // 顎
+ 0x984f: "yan2", // 顏
+ 0x9850: "wen4", // 顐
+ 0x9851: "kan3", // 顑
+ 0x9852: "yong2", // 顒
+ 0x9853: "zhuan1", // 顓
+ 0x9854: "yan2", // 顔
+ 0x9855: "xian3", // 顕
+ 0x9856: "xin4", // 顖
+ 0x9857: "yi3", // 顗
+ 0x9858: "yuan4", // 願
+ 0x9859: "sang3", // 顙
+ 0x985a: "dian1", // 顚
+ 0x985b: "dian1", // 顛
+ 0x985c: "jiang3", // 顜
+ 0x985d: "kui1", // 顝
+ 0x985e: "lei4", // 類
+ 0x985f: "lao2", // 顟
+ 0x9860: "piao3", // 顠
+ 0x9861: "wai4", // 顡
+ 0x9862: "man2", // 顢
+ 0x9863: "cu4", // 顣
+ 0x9864: "yao2", // 顤
+ 0x9865: "hao4", // 顥
+ 0x9866: "qiao2", // 顦
+ 0x9867: "gu4", // 顧
+ 0x9868: "xun4", // 顨
+ 0x9869: "yan3", // 顩
+ 0x986a: "hui4", // 顪
+ 0x986b: "chan4", // 顫
+ 0x986c: "ru2", // 顬
+ 0x986d: "meng2", // 顭
+ 0x986e: "bin1", // 顮
+ 0x986f: "xian3", // 顯
+ 0x9870: "pin2", // 顰
+ 0x9871: "lu2", // 顱
+ 0x9872: "lan3", // 顲
+ 0x9873: "nie4", // 顳
+ 0x9874: "quan2", // 顴
+ 0x9875: "ye4", // 页
+ 0x9876: "ding3", // 顶
+ 0x9877: "qing3", // 顷
+ 0x9878: "han1", // 顸
+ 0x9879: "xiang4", // 项
+ 0x987a: "shun4", // 顺
+ 0x987b: "xu1", // 须
+ 0x987c: "xu1", // 顼
+ 0x987d: "wan2", // 顽
+ 0x987e: "gu4", // 顾
+ 0x987f: "dun4", // 顿
+ 0x9880: "qi2", // 颀
+ 0x9881: "ban1", // 颁
+ 0x9882: "song4", // 颂
+ 0x9883: "hang2", // 颃
+ 0x9884: "yu4", // 预
+ 0x9885: "lu2", // 颅
+ 0x9886: "ling3", // 领
+ 0x9887: "po3", // 颇
+ 0x9888: "jing3", // 颈
+ 0x9889: "jie2", // 颉
+ 0x988a: "jia2", // 颊
+ 0x988b: "ting3", // 颋
+ 0x988c: "he2", // 颌
+ 0x988d: "ying3", // 颍
+ 0x988e: "jiong3", // 颎
+ 0x988f: "ke1", // 颏
+ 0x9890: "yi2", // 颐
+ 0x9891: "pin2", // 频
+ 0x9892: "hui4", // 颒
+ 0x9893: "tui2", // 颓
+ 0x9894: "han4", // 颔
+ 0x9895: "ying3", // 颕
+ 0x9896: "ying3", // 颖
+ 0x9897: "ke1", // 颗
+ 0x9898: "ti2", // 题
+ 0x9899: "yong2", // 颙
+ 0x989a: "e4", // 颚
+ 0x989b: "zhuan1", // 颛
+ 0x989c: "yan2", // 颜
+ 0x989d: "e2", // 额
+ 0x989e: "nie4", // 颞
+ 0x989f: "man1", // 颟
+ 0x98a0: "dian1", // 颠
+ 0x98a1: "sang3", // 颡
+ 0x98a2: "hao4", // 颢
+ 0x98a3: "lei4", // 颣
+ 0x98a4: "chan4", // 颤
+ 0x98a5: "ru2", // 颥
+ 0x98a6: "pin2", // 颦
+ 0x98a7: "quan2", // 颧
+ 0x98a8: "feng1", // 風
+ 0x98a9: "biao1", // 颩
+ 0x98aa: "gua1", // 颪
+ 0x98ab: "fu2", // 颫
+ 0x98ac: "xia1", // 颬
+ 0x98ad: "zhan3", // 颭
+ 0x98ae: "biao1", // 颮
+ 0x98af: "sa4", // 颯
+ 0x98b0: "ba2", // 颰
+ 0x98b1: "tai2", // 颱
+ 0x98b2: "lie4", // 颲
+ 0x98b3: "gua1", // 颳
+ 0x98b4: "xuan4", // 颴
+ 0x98b5: "shao1", // 颵
+ 0x98b6: "ju4", // 颶
+ 0x98b7: "biao1", // 颷
+ 0x98b8: "si1", // 颸
+ 0x98b9: "wei3", // 颹
+ 0x98ba: "yang2", // 颺
+ 0x98bb: "yao2", // 颻
+ 0x98bc: "sou1", // 颼
+ 0x98bd: "kai3", // 颽
+ 0x98be: "sou1", // 颾
+ 0x98bf: "fan1", // 颿
+ 0x98c0: "liu2", // 飀
+ 0x98c1: "xi2", // 飁
+ 0x98c2: "liu4", // 飂
+ 0x98c3: "piao1", // 飃
+ 0x98c4: "piao1", // 飄
+ 0x98c5: "liu2", // 飅
+ 0x98c6: "biao1", // 飆
+ 0x98c7: "biao1", // 飇
+ 0x98c8: "biao1", // 飈
+ 0x98c9: "liao2", // 飉
+ 0x98ca: "biao1", // 飊
+ 0x98cb: "se4", // 飋
+ 0x98cc: "feng1", // 飌
+ 0x98cd: "xiu1", // 飍
+ 0x98ce: "feng1", // 风
+ 0x98cf: "yang2", // 飏
+ 0x98d0: "zhan3", // 飐
+ 0x98d1: "biao1", // 飑
+ 0x98d2: "sa4", // 飒
+ 0x98d3: "ju4", // 飓
+ 0x98d4: "si1", // 飔
+ 0x98d5: "sou1", // 飕
+ 0x98d6: "yao2", // 飖
+ 0x98d7: "liu2", // 飗
+ 0x98d8: "piao1", // 飘
+ 0x98d9: "biao1", // 飙
+ 0x98da: "biao1", // 飚
+ 0x98db: "fei1", // 飛
+ 0x98dc: "fan1", // 飜
+ 0x98dd: "fei1", // 飝
+ 0x98de: "fei1", // 飞
+ 0x98df: "shi2", // 食
+ 0x98e0: "shi2", // 飠
+ 0x98e1: "can1", // 飡
+ 0x98e2: "ji1", // 飢
+ 0x98e3: "ding4", // 飣
+ 0x98e4: "si4", // 飤
+ 0x98e5: "tuo1", // 飥
+ 0x98e6: "zhan1", // 飦
+ 0x98e7: "sun1", // 飧
+ 0x98e8: "xiang3", // 飨
+ 0x98e9: "tun2", // 飩
+ 0x98ea: "ren4", // 飪
+ 0x98eb: "yu4", // 飫
+ 0x98ec: "juan4", // 飬
+ 0x98ed: "chi4", // 飭
+ 0x98ee: "yin3", // 飮
+ 0x98ef: "fan4", // 飯
+ 0x98f0: "fan4", // 飰
+ 0x98f1: "sun1", // 飱
+ 0x98f2: "yin3", // 飲
+ 0x98f3: "tou3", // 飳
+ 0x98f4: "yi2", // 飴
+ 0x98f5: "zuo4", // 飵
+ 0x98f6: "bi4", // 飶
+ 0x98f7: "jie3", // 飷
+ 0x98f8: "tao1", // 飸
+ 0x98f9: "bao3", // 飹
+ 0x98fa: "ci2", // 飺
+ 0x98fb: "tie4", // 飻
+ 0x98fc: "si4", // 飼
+ 0x98fd: "bao3", // 飽
+ 0x98fe: "shi4", // 飾
+ 0x98ff: "duo4", // 飿
+ 0x9900: "hai4", // 餀
+ 0x9901: "ren4", // 餁
+ 0x9902: "tian3", // 餂
+ 0x9903: "jiao3", // 餃
+ 0x9904: "jia2", // 餄
+ 0x9905: "bing3", // 餅
+ 0x9906: "yao2", // 餆
+ 0x9907: "tong2", // 餇
+ 0x9908: "ci2", // 餈
+ 0x9909: "xiang3", // 餉
+ 0x990a: "yang3", // 養
+ 0x990b: "juan4", // 餋
+ 0x990c: "er3", // 餌
+ 0x990d: "yan4", // 餍
+ 0x990e: "le5", // 餎
+ 0x990f: "xi1", // 餏
+ 0x9910: "can1", // 餐
+ 0x9911: "bo1", // 餑
+ 0x9912: "nei3", // 餒
+ 0x9913: "e4", // 餓
+ 0x9914: "bu4", // 餔
+ 0x9915: "jun4", // 餕
+ 0x9916: "dou4", // 餖
+ 0x9917: "su4", // 餗
+ 0x9918: "yu2", // 餘
+ 0x9919: "shi4", // 餙
+ 0x991a: "yao2", // 餚
+ 0x991b: "hun2", // 餛
+ 0x991c: "guo3", // 餜
+ 0x991d: "shi4", // 餝
+ 0x991e: "jian4", // 餞
+ 0x991f: "zhui4", // 餟
+ 0x9920: "bing3", // 餠
+ 0x9921: "xian4", // 餡
+ 0x9922: "bu4", // 餢
+ 0x9923: "ye4", // 餣
+ 0x9924: "tan2", // 餤
+ 0x9925: "fei1", // 餥
+ 0x9926: "zhang1", // 餦
+ 0x9927: "wei4", // 餧
+ 0x9928: "guan3", // 館
+ 0x9929: "e4", // 餩
+ 0x992a: "nuan3", // 餪
+ 0x992b: "yun4", // 餫
+ 0x992c: "hu2", // 餬
+ 0x992d: "huang2", // 餭
+ 0x992e: "tie4", // 餮
+ 0x992f: "hui4", // 餯
+ 0x9930: "jian1", // 餰
+ 0x9931: "hou2", // 餱
+ 0x9932: "ai4", // 餲
+ 0x9933: "tang2", // 餳
+ 0x9934: "fen1", // 餴
+ 0x9935: "wei4", // 餵
+ 0x9936: "gu3", // 餶
+ 0x9937: "cha1", // 餷
+ 0x9938: "song4", // 餸
+ 0x9939: "tang2", // 餹
+ 0x993a: "bo2", // 餺
+ 0x993b: "gao1", // 餻
+ 0x993c: "xi4", // 餼
+ 0x993d: "kui4", // 餽
+ 0x993e: "liu4", // 餾
+ 0x993f: "sou1", // 餿
+ 0x9940: "tao2", // 饀
+ 0x9941: "ye4", // 饁
+ 0x9942: "wen1", // 饂
+ 0x9943: "mo2", // 饃
+ 0x9944: "tang2", // 饄
+ 0x9945: "man2", // 饅
+ 0x9946: "bi4", // 饆
+ 0x9947: "yu4", // 饇
+ 0x9948: "xiu1", // 饈
+ 0x9949: "jin3", // 饉
+ 0x994a: "san3", // 饊
+ 0x994b: "kui4", // 饋
+ 0x994c: "zhuan4", // 饌
+ 0x994d: "shan4", // 饍
+ 0x994e: "chi4", // 饎
+ 0x994f: "dan4", // 饏
+ 0x9950: "yi4", // 饐
+ 0x9951: "ji1", // 饑
+ 0x9952: "rao2", // 饒
+ 0x9953: "cheng1", // 饓
+ 0x9954: "yong1", // 饔
+ 0x9955: "tao1", // 饕
+ 0x9956: "wei4", // 饖
+ 0x9957: "xiang3", // 饗
+ 0x9958: "zhan1", // 饘
+ 0x9959: "fen1", // 饙
+ 0x995a: "hai4", // 饚
+ 0x995b: "meng2", // 饛
+ 0x995c: "yan4", // 饜
+ 0x995d: "mo2", // 饝
+ 0x995e: "chan2", // 饞
+ 0x995f: "xiang3", // 饟
+ 0x9960: "luo2", // 饠
+ 0x9961: "zan4", // 饡
+ 0x9962: "nang2", // 饢
+ 0x9963: "shi2", // 饣
+ 0x9964: "ding4", // 饤
+ 0x9965: "ji1", // 饥
+ 0x9966: "tuo1", // 饦
+ 0x9967: "tang2", // 饧
+ 0x9968: "tun2", // 饨
+ 0x9969: "xi4", // 饩
+ 0x996a: "ren4", // 饪
+ 0x996b: "yu4", // 饫
+ 0x996c: "chi4", // 饬
+ 0x996d: "fan4", // 饭
+ 0x996e: "yin3", // 饮
+ 0x996f: "jian4", // 饯
+ 0x9970: "shi4", // 饰
+ 0x9971: "bao3", // 饱
+ 0x9972: "si4", // 饲
+ 0x9973: "duo4", // 饳
+ 0x9974: "yi2", // 饴
+ 0x9975: "er3", // 饵
+ 0x9976: "rao2", // 饶
+ 0x9977: "xiang3", // 饷
+ 0x9978: "he2", // 饸
+ 0x9979: "le5", // 饹
+ 0x997a: "jiao3", // 饺
+ 0x997b: "xi1", // 饻
+ 0x997c: "bing3", // 饼
+ 0x997d: "bo1", // 饽
+ 0x997e: "dou4", // 饾
+ 0x997f: "e4", // 饿
+ 0x9980: "yu2", // 馀
+ 0x9981: "nei3", // 馁
+ 0x9982: "jun4", // 馂
+ 0x9983: "guo3", // 馃
+ 0x9984: "hun2", // 馄
+ 0x9985: "xian4", // 馅
+ 0x9986: "guan3", // 馆
+ 0x9987: "cha1", // 馇
+ 0x9988: "kui4", // 馈
+ 0x9989: "gu3", // 馉
+ 0x998a: "sou1", // 馊
+ 0x998b: "chan2", // 馋
+ 0x998c: "ye4", // 馌
+ 0x998d: "mo2", // 馍
+ 0x998e: "bo2", // 馎
+ 0x998f: "liu2", // 馏
+ 0x9990: "xiu1", // 馐
+ 0x9991: "jin3", // 馑
+ 0x9992: "man2", // 馒
+ 0x9993: "san3", // 馓
+ 0x9994: "zhuan4", // 馔
+ 0x9995: "nang2", // 馕
+ 0x9996: "shou3", // 首
+ 0x9997: "kui2", // 馗
+ 0x9998: "guo2", // 馘
+ 0x9999: "xiang1", // 香
+ 0x999a: "fen2", // 馚
+ 0x999b: "bo2", // 馛
+ 0x999c: "ni3", // 馜
+ 0x999d: "bi4", // 馝
+ 0x999e: "bo2", // 馞
+ 0x999f: "tu2", // 馟
+ 0x99a0: "han1", // 馠
+ 0x99a1: "fei1", // 馡
+ 0x99a2: "jian1", // 馢
+ 0x99a3: "an1", // 馣
+ 0x99a4: "ai4", // 馤
+ 0x99a5: "fu4", // 馥
+ 0x99a6: "xian1", // 馦
+ 0x99a7: "yun1", // 馧
+ 0x99a8: "xin1", // 馨
+ 0x99a9: "fen2", // 馩
+ 0x99aa: "pin1", // 馪
+ 0x99ab: "xin1", // 馫
+ 0x99ac: "ma3", // 馬
+ 0x99ad: "yu4", // 馭
+ 0x99ae: "feng2", // 馮
+ 0x99af: "han4", // 馯
+ 0x99b0: "di2", // 馰
+ 0x99b1: "tuo2", // 馱
+ 0x99b2: "zhe2", // 馲
+ 0x99b3: "chi2", // 馳
+ 0x99b4: "xun2", // 馴
+ 0x99b5: "zhu4", // 馵
+ 0x99b6: "zhi1", // 馶
+ 0x99b7: "pei4", // 馷
+ 0x99b8: "xin4", // 馸
+ 0x99b9: "ri4", // 馹
+ 0x99ba: "sa4", // 馺
+ 0x99bb: "yun3", // 馻
+ 0x99bc: "wen2", // 馼
+ 0x99bd: "zhi2", // 馽
+ 0x99be: "dan4", // 馾
+ 0x99bf: "lv2", // 馿
+ 0x99c0: "you2", // 駀
+ 0x99c1: "bo2", // 駁
+ 0x99c2: "bao3", // 駂
+ 0x99c3: "jue2", // 駃
+ 0x99c4: "tuo2", // 駄
+ 0x99c5: "yi4", // 駅
+ 0x99c6: "qu1", // 駆
+ 0x99c7: "wen2", // 駇
+ 0x99c8: "qu1", // 駈
+ 0x99c9: "jiong1", // 駉
+ 0x99ca: "po3", // 駊
+ 0x99cb: "zhao1", // 駋
+ 0x99cc: "yuan1", // 駌
+ 0x99cd: "pei2", // 駍
+ 0x99ce: "zhou4", // 駎
+ 0x99cf: "ju4", // 駏
+ 0x99d0: "zhu4", // 駐
+ 0x99d1: "nu2", // 駑
+ 0x99d2: "ju1", // 駒
+ 0x99d3: "pi1", // 駓
+ 0x99d4: "zang3", // 駔
+ 0x99d5: "jia4", // 駕
+ 0x99d6: "ling2", // 駖
+ 0x99d7: "zhen3", // 駗
+ 0x99d8: "tai2", // 駘
+ 0x99d9: "fu4", // 駙
+ 0x99da: "yang3", // 駚
+ 0x99db: "shi3", // 駛
+ 0x99dc: "bi4", // 駜
+ 0x99dd: "tuo2", // 駝
+ 0x99de: "tuo2", // 駞
+ 0x99df: "si4", // 駟
+ 0x99e0: "liu2", // 駠
+ 0x99e1: "ma4", // 駡
+ 0x99e2: "pian2", // 駢
+ 0x99e3: "tao2", // 駣
+ 0x99e4: "zhi4", // 駤
+ 0x99e5: "rong2", // 駥
+ 0x99e6: "teng2", // 駦
+ 0x99e7: "dong4", // 駧
+ 0x99e8: "xun1", // 駨
+ 0x99e9: "quan1", // 駩
+ 0x99ea: "shen1", // 駪
+ 0x99eb: "jiong1", // 駫
+ 0x99ec: "er3", // 駬
+ 0x99ed: "hai4", // 駭
+ 0x99ee: "bo2", // 駮
+ 0x99ef: "zhu1", // 駯
+ 0x99f0: "yin1", // 駰
+ 0x99f1: "luo4", // 駱
+ 0x99f2: "zhou1", // 駲
+ 0x99f3: "dan4", // 駳
+ 0x99f4: "hai4", // 駴
+ 0x99f5: "liu2", // 駵
+ 0x99f6: "ju2", // 駶
+ 0x99f7: "song3", // 駷
+ 0x99f8: "qin1", // 駸
+ 0x99f9: "mang2", // 駹
+ 0x99fa: "lang2", // 駺
+ 0x99fb: "han4", // 駻
+ 0x99fc: "tu2", // 駼
+ 0x99fd: "xuan1", // 駽
+ 0x99fe: "tui4", // 駾
+ 0x99ff: "jun4", // 駿
+ 0x9a00: "e3", // 騀
+ 0x9a01: "cheng3", // 騁
+ 0x9a02: "xing1", // 騂
+ 0x9a03: "ai2", // 騃
+ 0x9a04: "lu4", // 騄
+ 0x9a05: "zhui1", // 騅
+ 0x9a06: "zhou1", // 騆
+ 0x9a07: "she4", // 騇
+ 0x9a08: "pian2", // 騈
+ 0x9a09: "kun1", // 騉
+ 0x9a0a: "tao2", // 騊
+ 0x9a0b: "lai2", // 騋
+ 0x9a0c: "zong1", // 騌
+ 0x9a0d: "ke4", // 騍
+ 0x9a0e: "qi2", // 騎
+ 0x9a0f: "qi2", // 騏
+ 0x9a10: "yan4", // 騐
+ 0x9a11: "fei1", // 騑
+ 0x9a12: "sao1", // 騒
+ 0x9a13: "yan4", // 験
+ 0x9a14: "ge2", // 騔
+ 0x9a15: "yao3", // 騕
+ 0x9a16: "wu4", // 騖
+ 0x9a17: "pian4", // 騗
+ 0x9a18: "cong1", // 騘
+ 0x9a19: "pian4", // 騙
+ 0x9a1a: "qian2", // 騚
+ 0x9a1b: "fei1", // 騛
+ 0x9a1c: "huang2", // 騜
+ 0x9a1d: "qian2", // 騝
+ 0x9a1e: "huo1", // 騞
+ 0x9a1f: "yu2", // 騟
+ 0x9a20: "ti2", // 騠
+ 0x9a21: "quan2", // 騡
+ 0x9a22: "xia2", // 騢
+ 0x9a23: "zong1", // 騣
+ 0x9a24: "kui2", // 騤
+ 0x9a25: "rou2", // 騥
+ 0x9a26: "si1", // 騦
+ 0x9a27: "gua1", // 騧
+ 0x9a28: "tuo2", // 騨
+ 0x9a29: "gui1", // 騩
+ 0x9a2a: "sou1", // 騪
+ 0x9a2b: "qian1", // 騫
+ 0x9a2c: "cheng2", // 騬
+ 0x9a2d: "zhi4", // 騭
+ 0x9a2e: "liu2", // 騮
+ 0x9a2f: "peng2", // 騯
+ 0x9a30: "teng2", // 騰
+ 0x9a31: "xi2", // 騱
+ 0x9a32: "cao3", // 騲
+ 0x9a33: "du2", // 騳
+ 0x9a34: "yan4", // 騴
+ 0x9a35: "yuan2", // 騵
+ 0x9a36: "zou1", // 騶
+ 0x9a37: "sao1", // 騷
+ 0x9a38: "shan4", // 騸
+ 0x9a39: "qi2", // 騹
+ 0x9a3a: "zhi4", // 騺
+ 0x9a3b: "shuang1", // 騻
+ 0x9a3c: "lu4", // 騼
+ 0x9a3d: "xi2", // 騽
+ 0x9a3e: "luo2", // 騾
+ 0x9a3f: "zhang1", // 騿
+ 0x9a40: "mo4", // 驀
+ 0x9a41: "ao4", // 驁
+ 0x9a42: "can1", // 驂
+ 0x9a43: "biao1", // 驃
+ 0x9a44: "cong1", // 驄
+ 0x9a45: "qu1", // 驅
+ 0x9a46: "bi4", // 驆
+ 0x9a47: "zhi4", // 驇
+ 0x9a48: "yu4", // 驈
+ 0x9a49: "xu1", // 驉
+ 0x9a4a: "hua2", // 驊
+ 0x9a4b: "bo1", // 驋
+ 0x9a4c: "su4", // 驌
+ 0x9a4d: "xiao1", // 驍
+ 0x9a4e: "lin2", // 驎
+ 0x9a4f: "zhan4", // 驏
+ 0x9a50: "dun1", // 驐
+ 0x9a51: "liu2", // 驑
+ 0x9a52: "tuo2", // 驒
+ 0x9a53: "ceng2", // 驓
+ 0x9a54: "dian4", // 驔
+ 0x9a55: "jiao1", // 驕
+ 0x9a56: "tie3", // 驖
+ 0x9a57: "yan4", // 驗
+ 0x9a58: "luo2", // 驘
+ 0x9a59: "zhan1", // 驙
+ 0x9a5a: "jing1", // 驚
+ 0x9a5b: "yi4", // 驛
+ 0x9a5c: "ye4", // 驜
+ 0x9a5d: "tuo1", // 驝
+ 0x9a5e: "pin1", // 驞
+ 0x9a5f: "zhou4", // 驟
+ 0x9a60: "yan4", // 驠
+ 0x9a61: "long2", // 驡
+ 0x9a62: "lv2", // 驢
+ 0x9a63: "teng2", // 驣
+ 0x9a64: "xiang1", // 驤
+ 0x9a65: "ji4", // 驥
+ 0x9a66: "shuang1", // 驦
+ 0x9a67: "ju2", // 驧
+ 0x9a68: "xi2", // 驨
+ 0x9a69: "huan1", // 驩
+ 0x9a6a: "li2", // 驪
+ 0x9a6b: "biao1", // 驫
+ 0x9a6c: "ma3", // 马
+ 0x9a6d: "yu4", // 驭
+ 0x9a6e: "tuo2", // 驮
+ 0x9a6f: "xun2", // 驯
+ 0x9a70: "chi2", // 驰
+ 0x9a71: "qu1", // 驱
+ 0x9a72: "ri4", // 驲
+ 0x9a73: "bo2", // 驳
+ 0x9a74: "lv2", // 驴
+ 0x9a75: "zang3", // 驵
+ 0x9a76: "shi3", // 驶
+ 0x9a77: "si4", // 驷
+ 0x9a78: "fu4", // 驸
+ 0x9a79: "ju1", // 驹
+ 0x9a7a: "zou1", // 驺
+ 0x9a7b: "zhu4", // 驻
+ 0x9a7c: "tuo2", // 驼
+ 0x9a7d: "nu2", // 驽
+ 0x9a7e: "jia4", // 驾
+ 0x9a7f: "yi4", // 驿
+ 0x9a80: "dai4", // 骀
+ 0x9a81: "xiao1", // 骁
+ 0x9a82: "ma4", // 骂
+ 0x9a83: "yin1", // 骃
+ 0x9a84: "jiao1", // 骄
+ 0x9a85: "hua2", // 骅
+ 0x9a86: "luo4", // 骆
+ 0x9a87: "hai4", // 骇
+ 0x9a88: "pian2", // 骈
+ 0x9a89: "biao1", // 骉
+ 0x9a8a: "li2", // 骊
+ 0x9a8b: "cheng3", // 骋
+ 0x9a8c: "yan4", // 验
+ 0x9a8d: "xing1", // 骍
+ 0x9a8e: "qin1", // 骎
+ 0x9a8f: "jun4", // 骏
+ 0x9a90: "qi2", // 骐
+ 0x9a91: "qi2", // 骑
+ 0x9a92: "ke4", // 骒
+ 0x9a93: "zhui1", // 骓
+ 0x9a94: "zong1", // 骔
+ 0x9a95: "su4", // 骕
+ 0x9a96: "can1", // 骖
+ 0x9a97: "pian4", // 骗
+ 0x9a98: "zhi4", // 骘
+ 0x9a99: "kui2", // 骙
+ 0x9a9a: "sao1", // 骚
+ 0x9a9b: "wu4", // 骛
+ 0x9a9c: "ao4", // 骜
+ 0x9a9d: "liu2", // 骝
+ 0x9a9e: "qian1", // 骞
+ 0x9a9f: "shan4", // 骟
+ 0x9aa0: "biao1", // 骠
+ 0x9aa1: "luo2", // 骡
+ 0x9aa2: "cong1", // 骢
+ 0x9aa3: "chan3", // 骣
+ 0x9aa4: "zhou4", // 骤
+ 0x9aa5: "ji4", // 骥
+ 0x9aa6: "shuang1", // 骦
+ 0x9aa7: "xiang1", // 骧
+ 0x9aa8: "gu3", // 骨
+ 0x9aa9: "wei3", // 骩
+ 0x9aaa: "wei3", // 骪
+ 0x9aab: "wei3", // 骫
+ 0x9aac: "yu2", // 骬
+ 0x9aad: "gan4", // 骭
+ 0x9aae: "yi4", // 骮
+ 0x9aaf: "ang1", // 骯
+ 0x9ab0: "tou2", // 骰
+ 0x9ab1: "jie4", // 骱
+ 0x9ab2: "bao4", // 骲
+ 0x9ab3: "bei4", // 骳
+ 0x9ab4: "ci1", // 骴
+ 0x9ab5: "ti3", // 骵
+ 0x9ab6: "di3", // 骶
+ 0x9ab7: "ku1", // 骷
+ 0x9ab8: "hai2", // 骸
+ 0x9ab9: "qiao1", // 骹
+ 0x9aba: "hou2", // 骺
+ 0x9abb: "kua4", // 骻
+ 0x9abc: "ge2", // 骼
+ 0x9abd: "tui3", // 骽
+ 0x9abe: "geng3", // 骾
+ 0x9abf: "pian2", // 骿
+ 0x9ac0: "bi4", // 髀
+ 0x9ac1: "ke1", // 髁
+ 0x9ac2: "qia4", // 髂
+ 0x9ac3: "yu2", // 髃
+ 0x9ac4: "sui3", // 髄
+ 0x9ac5: "lou2", // 髅
+ 0x9ac6: "bo2", // 髆
+ 0x9ac7: "xiao1", // 髇
+ 0x9ac8: "bang3", // 髈
+ 0x9ac9: "bo2", // 髉
+ 0x9aca: "ci1", // 髊
+ 0x9acb: "kuan1", // 髋
+ 0x9acc: "bin4", // 髌
+ 0x9acd: "mo2", // 髍
+ 0x9ace: "liao2", // 髎
+ 0x9acf: "lou2", // 髏
+ 0x9ad0: "xiao1", // 髐
+ 0x9ad1: "du2", // 髑
+ 0x9ad2: "zang1", // 髒
+ 0x9ad3: "sui3", // 髓
+ 0x9ad4: "ti3", // 體
+ 0x9ad5: "bin4", // 髕
+ 0x9ad6: "kuan1", // 髖
+ 0x9ad7: "lu2", // 髗
+ 0x9ad8: "gao1", // 高
+ 0x9ad9: "gao1", // 髙
+ 0x9ada: "qiao4", // 髚
+ 0x9adb: "kao1", // 髛
+ 0x9adc: "qiao3", // 髜
+ 0x9add: "lao2", // 髝
+ 0x9ade: "sao4", // 髞
+ 0x9adf: "biao1", // 髟
+ 0x9ae0: "kun1", // 髠
+ 0x9ae1: "kun1", // 髡
+ 0x9ae2: "di2", // 髢
+ 0x9ae3: "fang3", // 髣
+ 0x9ae4: "xiu1", // 髤
+ 0x9ae5: "ran2", // 髥
+ 0x9ae6: "mao2", // 髦
+ 0x9ae7: "dan4", // 髧
+ 0x9ae8: "kun1", // 髨
+ 0x9ae9: "bin4", // 髩
+ 0x9aea: "fa4", // 髪
+ 0x9aeb: "tiao2", // 髫
+ 0x9aec: "pi1", // 髬
+ 0x9aed: "zi1", // 髭
+ 0x9aee: "fa4", // 髮
+ 0x9aef: "ran2", // 髯
+ 0x9af0: "ti4", // 髰
+ 0x9af1: "bao4", // 髱
+ 0x9af2: "bi4", // 髲
+ 0x9af3: "mao2", // 髳
+ 0x9af4: "fu2", // 髴
+ 0x9af5: "er2", // 髵
+ 0x9af6: "rong2", // 髶
+ 0x9af7: "qu1", // 髷
+ 0x9af8: "gong1", // 髸
+ 0x9af9: "xiu1", // 髹
+ 0x9afa: "kuo4", // 髺
+ 0x9afb: "ji4", // 髻
+ 0x9afc: "peng2", // 髼
+ 0x9afd: "zhua1", // 髽
+ 0x9afe: "shao1", // 髾
+ 0x9aff: "suo1", // 髿
+ 0x9b00: "ti4", // 鬀
+ 0x9b01: "li4", // 鬁
+ 0x9b02: "bin4", // 鬂
+ 0x9b03: "zong1", // 鬃
+ 0x9b04: "di2", // 鬄
+ 0x9b05: "peng2", // 鬅
+ 0x9b06: "song1", // 鬆
+ 0x9b07: "zheng1", // 鬇
+ 0x9b08: "quan2", // 鬈
+ 0x9b09: "zong1", // 鬉
+ 0x9b0a: "shun4", // 鬊
+ 0x9b0b: "jian3", // 鬋
+ 0x9b0c: "tuo3", // 鬌
+ 0x9b0d: "hu2", // 鬍
+ 0x9b0e: "la4", // 鬎
+ 0x9b0f: "jiu1", // 鬏
+ 0x9b10: "qi2", // 鬐
+ 0x9b11: "lian2", // 鬑
+ 0x9b12: "zhen3", // 鬒
+ 0x9b13: "bin4", // 鬓
+ 0x9b14: "peng2", // 鬔
+ 0x9b15: "ma4", // 鬕
+ 0x9b16: "san1", // 鬖
+ 0x9b17: "man2", // 鬗
+ 0x9b18: "man2", // 鬘
+ 0x9b19: "seng1", // 鬙
+ 0x9b1a: "xu1", // 鬚
+ 0x9b1b: "lie4", // 鬛
+ 0x9b1c: "qian1", // 鬜
+ 0x9b1d: "qian1", // 鬝
+ 0x9b1e: "nang2", // 鬞
+ 0x9b1f: "huan2", // 鬟
+ 0x9b20: "kuo4", // 鬠
+ 0x9b21: "ning2", // 鬡
+ 0x9b22: "bin4", // 鬢
+ 0x9b23: "lie4", // 鬣
+ 0x9b24: "rang2", // 鬤
+ 0x9b25: "dou4", // 鬥
+ 0x9b26: "dou4", // 鬦
+ 0x9b27: "nao4", // 鬧
+ 0x9b28: "hong4", // 鬨
+ 0x9b29: "xi4", // 鬩
+ 0x9b2a: "dou4", // 鬪
+ 0x9b2b: "han3", // 鬫
+ 0x9b2c: "dou4", // 鬬
+ 0x9b2d: "dou4", // 鬭
+ 0x9b2e: "jiu1", // 鬮
+ 0x9b2f: "chang4", // 鬯
+ 0x9b30: "yu4", // 鬰
+ 0x9b31: "yu4", // 鬱
+ 0x9b32: "ge2", // 鬲
+ 0x9b33: "yan4", // 鬳
+ 0x9b34: "fu3", // 鬴
+ 0x9b35: "qin2", // 鬵
+ 0x9b36: "gui1", // 鬶
+ 0x9b37: "zong1", // 鬷
+ 0x9b38: "liu4", // 鬸
+ 0x9b39: "gui1", // 鬹
+ 0x9b3a: "shang1", // 鬺
+ 0x9b3b: "yu4", // 鬻
+ 0x9b3c: "gui3", // 鬼
+ 0x9b3d: "mei4", // 鬽
+ 0x9b3e: "ji4", // 鬾
+ 0x9b3f: "qi2", // 鬿
+ 0x9b40: "ga4", // 魀
+ 0x9b41: "kui2", // 魁
+ 0x9b42: "hun2", // 魂
+ 0x9b43: "ba2", // 魃
+ 0x9b44: "po4", // 魄
+ 0x9b45: "mei4", // 魅
+ 0x9b46: "xu1", // 魆
+ 0x9b47: "yan3", // 魇
+ 0x9b48: "xiao1", // 魈
+ 0x9b49: "liang3", // 魉
+ 0x9b4a: "yu4", // 魊
+ 0x9b4b: "tui2", // 魋
+ 0x9b4c: "qi1", // 魌
+ 0x9b4d: "wang3", // 魍
+ 0x9b4e: "liang3", // 魎
+ 0x9b4f: "wei4", // 魏
+ 0x9b50: "gan1", // 魐
+ 0x9b51: "chi1", // 魑
+ 0x9b52: "piao1", // 魒
+ 0x9b53: "bi4", // 魓
+ 0x9b54: "mo2", // 魔
+ 0x9b55: "ji3", // 魕
+ 0x9b56: "xu1", // 魖
+ 0x9b57: "chou3", // 魗
+ 0x9b58: "yan3", // 魘
+ 0x9b59: "zhan1", // 魙
+ 0x9b5a: "yu2", // 魚
+ 0x9b5b: "dao1", // 魛
+ 0x9b5c: "ren2", // 魜
+ 0x9b5d: "jie2", // 魝
+ 0x9b5e: "ba1", // 魞
+ 0x9b5f: "hong2", // 魟
+ 0x9b60: "tuo1", // 魠
+ 0x9b61: "diao4", // 魡
+ 0x9b62: "ji3", // 魢
+ 0x9b63: "xu4", // 魣
+ 0x9b64: "e2", // 魤
+ 0x9b65: "e4", // 魥
+ 0x9b66: "sha1", // 魦
+ 0x9b67: "hang2", // 魧
+ 0x9b68: "tun2", // 魨
+ 0x9b69: "mo4", // 魩
+ 0x9b6a: "jie4", // 魪
+ 0x9b6b: "shen3", // 魫
+ 0x9b6c: "ban3", // 魬
+ 0x9b6d: "yuan2", // 魭
+ 0x9b6e: "pi2", // 魮
+ 0x9b6f: "lu3", // 魯
+ 0x9b70: "wen2", // 魰
+ 0x9b71: "hu2", // 魱
+ 0x9b72: "lu2", // 魲
+ 0x9b73: "za1", // 魳
+ 0x9b74: "fang2", // 魴
+ 0x9b75: "fen2", // 魵
+ 0x9b76: "na4", // 魶
+ 0x9b77: "you2", // 魷
+ 0x9b78: "pian4", // 魸
+ 0x9b79: "mo2", // 魹
+ 0x9b7a: "he2", // 魺
+ 0x9b7b: "xia2", // 魻
+ 0x9b7c: "qu1", // 魼
+ 0x9b7d: "han2", // 魽
+ 0x9b7e: "pi1", // 魾
+ 0x9b7f: "ling2", // 魿
+ 0x9b80: "tuo2", // 鮀
+ 0x9b81: "bo1", // 鮁
+ 0x9b82: "qiu2", // 鮂
+ 0x9b83: "ping2", // 鮃
+ 0x9b84: "fu2", // 鮄
+ 0x9b85: "bi4", // 鮅
+ 0x9b86: "ci3", // 鮆
+ 0x9b87: "wei4", // 鮇
+ 0x9b88: "ju1", // 鮈
+ 0x9b89: "diao1", // 鮉
+ 0x9b8a: "ba4", // 鮊
+ 0x9b8b: "you2", // 鮋
+ 0x9b8c: "gun3", // 鮌
+ 0x9b8d: "pi1", // 鮍
+ 0x9b8e: "nian2", // 鮎
+ 0x9b8f: "xing1", // 鮏
+ 0x9b90: "tai2", // 鮐
+ 0x9b91: "bao4", // 鮑
+ 0x9b92: "fu4", // 鮒
+ 0x9b93: "zha3", // 鮓
+ 0x9b94: "ju4", // 鮔
+ 0x9b95: "gu1", // 鮕
+ 0x9b96: "shi2", // 鮖
+ 0x9b97: "dong1", // 鮗
+ 0x9b98: "dai5", // 鮘
+ 0x9b99: "ta4", // 鮙
+ 0x9b9a: "jie2", // 鮚
+ 0x9b9b: "shu1", // 鮛
+ 0x9b9c: "hou4", // 鮜
+ 0x9b9d: "xiang3", // 鮝
+ 0x9b9e: "er2", // 鮞
+ 0x9b9f: "an4", // 鮟
+ 0x9ba0: "wei2", // 鮠
+ 0x9ba1: "zhao4", // 鮡
+ 0x9ba2: "zhu1", // 鮢
+ 0x9ba3: "yin4", // 鮣
+ 0x9ba4: "lie4", // 鮤
+ 0x9ba5: "luo4", // 鮥
+ 0x9ba6: "tong2", // 鮦
+ 0x9ba7: "ti3", // 鮧
+ 0x9ba8: "yi4", // 鮨
+ 0x9ba9: "bing4", // 鮩
+ 0x9baa: "wei3", // 鮪
+ 0x9bab: "jiao1", // 鮫
+ 0x9bac: "ku1", // 鮬
+ 0x9bad: "gui1", // 鮭
+ 0x9bae: "xian1", // 鮮
+ 0x9baf: "ge2", // 鮯
+ 0x9bb0: "hui2", // 鮰
+ 0x9bb1: "lao3", // 鮱
+ 0x9bb2: "fu2", // 鮲
+ 0x9bb3: "kao4", // 鮳
+ 0x9bb4: "xiu1", // 鮴
+ 0x9bb5: "duo2", // 鮵
+ 0x9bb6: "jun1", // 鮶
+ 0x9bb7: "ti2", // 鮷
+ 0x9bb8: "mian3", // 鮸
+ 0x9bb9: "shao1", // 鮹
+ 0x9bba: "zha3", // 鮺
+ 0x9bbb: "suo1", // 鮻
+ 0x9bbc: "qin1", // 鮼
+ 0x9bbd: "yu2", // 鮽
+ 0x9bbe: "nei3", // 鮾
+ 0x9bbf: "zhe2", // 鮿
+ 0x9bc0: "gun3", // 鯀
+ 0x9bc1: "geng3", // 鯁
+ 0x9bc2: "su1", // 鯂
+ 0x9bc3: "wu2", // 鯃
+ 0x9bc4: "qiu2", // 鯄
+ 0x9bc5: "shan1", // 鯅
+ 0x9bc6: "pu1", // 鯆
+ 0x9bc7: "huan4", // 鯇
+ 0x9bc8: "tiao2", // 鯈
+ 0x9bc9: "li3", // 鯉
+ 0x9bca: "sha1", // 鯊
+ 0x9bcb: "sha1", // 鯋
+ 0x9bcc: "kao4", // 鯌
+ 0x9bcd: "meng2", // 鯍
+ 0x9bce: "cheng2", // 鯎
+ 0x9bcf: "li2", // 鯏
+ 0x9bd0: "zou3", // 鯐
+ 0x9bd1: "xi1", // 鯑
+ 0x9bd2: "yong3", // 鯒
+ 0x9bd3: "shen1", // 鯓
+ 0x9bd4: "zi1", // 鯔
+ 0x9bd5: "qi2", // 鯕
+ 0x9bd6: "zheng1", // 鯖
+ 0x9bd7: "xiang3", // 鯗
+ 0x9bd8: "nei3", // 鯘
+ 0x9bd9: "chun2", // 鯙
+ 0x9bda: "ji4", // 鯚
+ 0x9bdb: "diao1", // 鯛
+ 0x9bdc: "qie4", // 鯜
+ 0x9bdd: "gu4", // 鯝
+ 0x9bde: "zhou3", // 鯞
+ 0x9bdf: "dong1", // 鯟
+ 0x9be0: "lai2", // 鯠
+ 0x9be1: "fei4", // 鯡
+ 0x9be2: "ni2", // 鯢
+ 0x9be3: "yi4", // 鯣
+ 0x9be4: "kun1", // 鯤
+ 0x9be5: "lu4", // 鯥
+ 0x9be6: "jiu4", // 鯦
+ 0x9be7: "chang1", // 鯧
+ 0x9be8: "jing1", // 鯨
+ 0x9be9: "lun2", // 鯩
+ 0x9bea: "ling2", // 鯪
+ 0x9beb: "zou1", // 鯫
+ 0x9bec: "li2", // 鯬
+ 0x9bed: "meng3", // 鯭
+ 0x9bee: "zong1", // 鯮
+ 0x9bef: "zhi4", // 鯯
+ 0x9bf0: "nian2", // 鯰
+ 0x9bf1: "hu3", // 鯱
+ 0x9bf2: "yu2", // 鯲
+ 0x9bf3: "di3", // 鯳
+ 0x9bf4: "shi1", // 鯴
+ 0x9bf5: "shen1", // 鯵
+ 0x9bf6: "huan4", // 鯶
+ 0x9bf7: "ti2", // 鯷
+ 0x9bf8: "hou2", // 鯸
+ 0x9bf9: "xing1", // 鯹
+ 0x9bfa: "zhu1", // 鯺
+ 0x9bfb: "la4", // 鯻
+ 0x9bfc: "zong1", // 鯼
+ 0x9bfd: "zei2", // 鯽
+ 0x9bfe: "bian1", // 鯾
+ 0x9bff: "bian1", // 鯿
+ 0x9c00: "huan4", // 鰀
+ 0x9c01: "quan2", // 鰁
+ 0x9c02: "zei2", // 鰂
+ 0x9c03: "wei1", // 鰃
+ 0x9c04: "wei1", // 鰄
+ 0x9c05: "yu2", // 鰅
+ 0x9c06: "chun1", // 鰆
+ 0x9c07: "rou2", // 鰇
+ 0x9c08: "die2", // 鰈
+ 0x9c09: "huang2", // 鰉
+ 0x9c0a: "lian4", // 鰊
+ 0x9c0b: "yan3", // 鰋
+ 0x9c0c: "qiu1", // 鰌
+ 0x9c0d: "qiu1", // 鰍
+ 0x9c0e: "jian3", // 鰎
+ 0x9c0f: "bi1", // 鰏
+ 0x9c10: "e4", // 鰐
+ 0x9c11: "yang2", // 鰑
+ 0x9c12: "fu4", // 鰒
+ 0x9c13: "sai1", // 鰓
+ 0x9c14: "gan3", // 鰔
+ 0x9c15: "xia1", // 鰕
+ 0x9c16: "tuo3", // 鰖
+ 0x9c17: "hu2", // 鰗
+ 0x9c18: "shi4", // 鰘
+ 0x9c19: "ruo4", // 鰙
+ 0x9c1a: "xuan1", // 鰚
+ 0x9c1b: "wen1", // 鰛
+ 0x9c1c: "qian4", // 鰜
+ 0x9c1d: "hao4", // 鰝
+ 0x9c1e: "wu1", // 鰞
+ 0x9c1f: "fang2", // 鰟
+ 0x9c20: "sao1", // 鰠
+ 0x9c21: "liu2", // 鰡
+ 0x9c22: "ma3", // 鰢
+ 0x9c23: "shi2", // 鰣
+ 0x9c24: "shi1", // 鰤
+ 0x9c25: "guan1", // 鰥
+ 0x9c26: "zi1", // 鰦
+ 0x9c27: "teng2", // 鰧
+ 0x9c28: "ta3", // 鰨
+ 0x9c29: "yao2", // 鰩
+ 0x9c2a: "e2", // 鰪
+ 0x9c2b: "yong2", // 鰫
+ 0x9c2c: "qian2", // 鰬
+ 0x9c2d: "qi2", // 鰭
+ 0x9c2e: "wen1", // 鰮
+ 0x9c2f: "ruo4", // 鰯
+ 0x9c30: "shen2", // 鰰
+ 0x9c31: "lian2", // 鰱
+ 0x9c32: "ao2", // 鰲
+ 0x9c33: "le4", // 鰳
+ 0x9c34: "hui1", // 鰴
+ 0x9c35: "min3", // 鰵
+ 0x9c36: "ji4", // 鰶
+ 0x9c37: "tiao2", // 鰷
+ 0x9c38: "qu1", // 鰸
+ 0x9c39: "jian1", // 鰹
+ 0x9c3a: "shen1", // 鰺
+ 0x9c3b: "man2", // 鰻
+ 0x9c3c: "xi2", // 鰼
+ 0x9c3d: "qiu2", // 鰽
+ 0x9c3e: "biao4", // 鰾
+ 0x9c3f: "ji4", // 鰿
+ 0x9c40: "ji4", // 鱀
+ 0x9c41: "zhu2", // 鱁
+ 0x9c42: "jiang1", // 鱂
+ 0x9c43: "xiu1", // 鱃
+ 0x9c44: "zhuan1", // 鱄
+ 0x9c45: "yong1", // 鱅
+ 0x9c46: "zhang1", // 鱆
+ 0x9c47: "kang1", // 鱇
+ 0x9c48: "xue3", // 鱈
+ 0x9c49: "bie1", // 鱉
+ 0x9c4a: "yu4", // 鱊
+ 0x9c4b: "qu1", // 鱋
+ 0x9c4c: "xiang4", // 鱌
+ 0x9c4d: "bo1", // 鱍
+ 0x9c4e: "jiao3", // 鱎
+ 0x9c4f: "xun2", // 鱏
+ 0x9c50: "su4", // 鱐
+ 0x9c51: "huang2", // 鱑
+ 0x9c52: "zun1", // 鱒
+ 0x9c53: "shan4", // 鱓
+ 0x9c54: "shan4", // 鱔
+ 0x9c55: "fan1", // 鱕
+ 0x9c56: "gui4", // 鱖
+ 0x9c57: "lin2", // 鱗
+ 0x9c58: "xun2", // 鱘
+ 0x9c59: "miao2", // 鱙
+ 0x9c5a: "xi3", // 鱚
+ 0x9c5b: "zeng1", // 鱛
+ 0x9c5c: "xiang1", // 鱜
+ 0x9c5d: "fen4", // 鱝
+ 0x9c5e: "guan1", // 鱞
+ 0x9c5f: "hou4", // 鱟
+ 0x9c60: "kuai4", // 鱠
+ 0x9c61: "zei2", // 鱡
+ 0x9c62: "sao1", // 鱢
+ 0x9c63: "zhan1", // 鱣
+ 0x9c64: "gan3", // 鱤
+ 0x9c65: "gui4", // 鱥
+ 0x9c66: "ying4", // 鱦
+ 0x9c67: "li3", // 鱧
+ 0x9c68: "chang2", // 鱨
+ 0x9c69: "lei2", // 鱩
+ 0x9c6a: "shu3", // 鱪
+ 0x9c6b: "ai4", // 鱫
+ 0x9c6c: "ru2", // 鱬
+ 0x9c6d: "ji4", // 鱭
+ 0x9c6e: "xu4", // 鱮
+ 0x9c6f: "hu4", // 鱯
+ 0x9c70: "shu3", // 鱰
+ 0x9c71: "li4", // 鱱
+ 0x9c72: "lie4", // 鱲
+ 0x9c73: "li4", // 鱳
+ 0x9c74: "mie4", // 鱴
+ 0x9c75: "zhen1", // 鱵
+ 0x9c76: "xiang3", // 鱶
+ 0x9c77: "e4", // 鱷
+ 0x9c78: "lu2", // 鱸
+ 0x9c79: "guan4", // 鱹
+ 0x9c7a: "li2", // 鱺
+ 0x9c7b: "xian1", // 鱻
+ 0x9c7c: "yu2", // 鱼
+ 0x9c7d: "dao1", // 鱽
+ 0x9c7e: "ji3", // 鱾
+ 0x9c7f: "you2", // 鱿
+ 0x9c80: "tun2", // 鲀
+ 0x9c81: "lu3", // 鲁
+ 0x9c82: "fang2", // 鲂
+ 0x9c83: "ba1", // 鲃
+ 0x9c84: "he2", // 鲄
+ 0x9c85: "ba4", // 鲅
+ 0x9c86: "ping2", // 鲆
+ 0x9c87: "nian2", // 鲇
+ 0x9c88: "lu2", // 鲈
+ 0x9c89: "you2", // 鲉
+ 0x9c8a: "zha3", // 鲊
+ 0x9c8b: "fu4", // 鲋
+ 0x9c8c: "ba4", // 鲌
+ 0x9c8d: "bao4", // 鲍
+ 0x9c8e: "hou4", // 鲎
+ 0x9c8f: "pi2", // 鲏
+ 0x9c90: "tai2", // 鲐
+ 0x9c91: "gui1", // 鲑
+ 0x9c92: "jie2", // 鲒
+ 0x9c93: "kao4", // 鲓
+ 0x9c94: "wei3", // 鲔
+ 0x9c95: "er2", // 鲕
+ 0x9c96: "tong2", // 鲖
+ 0x9c97: "zei2", // 鲗
+ 0x9c98: "hou4", // 鲘
+ 0x9c99: "kuai4", // 鲙
+ 0x9c9a: "ji4", // 鲚
+ 0x9c9b: "jiao1", // 鲛
+ 0x9c9c: "xian1", // 鲜
+ 0x9c9d: "zha3", // 鲝
+ 0x9c9e: "xiang3", // 鲞
+ 0x9c9f: "xun2", // 鲟
+ 0x9ca0: "geng3", // 鲠
+ 0x9ca1: "li2", // 鲡
+ 0x9ca2: "lian2", // 鲢
+ 0x9ca3: "jian1", // 鲣
+ 0x9ca4: "li3", // 鲤
+ 0x9ca5: "shi2", // 鲥
+ 0x9ca6: "tiao2", // 鲦
+ 0x9ca7: "gun3", // 鲧
+ 0x9ca8: "sha1", // 鲨
+ 0x9ca9: "huan4", // 鲩
+ 0x9caa: "jun1", // 鲪
+ 0x9cab: "ji4", // 鲫
+ 0x9cac: "yong3", // 鲬
+ 0x9cad: "qing1", // 鲭
+ 0x9cae: "ling2", // 鲮
+ 0x9caf: "qi2", // 鲯
+ 0x9cb0: "zou1", // 鲰
+ 0x9cb1: "fei1", // 鲱
+ 0x9cb2: "kun1", // 鲲
+ 0x9cb3: "chang1", // 鲳
+ 0x9cb4: "gu4", // 鲴
+ 0x9cb5: "ni2", // 鲵
+ 0x9cb6: "nian2", // 鲶
+ 0x9cb7: "diao1", // 鲷
+ 0x9cb8: "jing1", // 鲸
+ 0x9cb9: "shen1", // 鲹
+ 0x9cba: "shi1", // 鲺
+ 0x9cbb: "zi1", // 鲻
+ 0x9cbc: "fen4", // 鲼
+ 0x9cbd: "die2", // 鲽
+ 0x9cbe: "bi1", // 鲾
+ 0x9cbf: "chang2", // 鲿
+ 0x9cc0: "ti2", // 鳀
+ 0x9cc1: "wen1", // 鳁
+ 0x9cc2: "wei1", // 鳂
+ 0x9cc3: "sai1", // 鳃
+ 0x9cc4: "e4", // 鳄
+ 0x9cc5: "qiu1", // 鳅
+ 0x9cc6: "fu4", // 鳆
+ 0x9cc7: "huang2", // 鳇
+ 0x9cc8: "quan2", // 鳈
+ 0x9cc9: "jiang1", // 鳉
+ 0x9cca: "bian1", // 鳊
+ 0x9ccb: "sao1", // 鳋
+ 0x9ccc: "ao2", // 鳌
+ 0x9ccd: "qi2", // 鳍
+ 0x9cce: "ta3", // 鳎
+ 0x9ccf: "guan1", // 鳏
+ 0x9cd0: "yao2", // 鳐
+ 0x9cd1: "pang2", // 鳑
+ 0x9cd2: "jian1", // 鳒
+ 0x9cd3: "le4", // 鳓
+ 0x9cd4: "biao4", // 鳔
+ 0x9cd5: "xue3", // 鳕
+ 0x9cd6: "bie1", // 鳖
+ 0x9cd7: "man2", // 鳗
+ 0x9cd8: "min3", // 鳘
+ 0x9cd9: "yong1", // 鳙
+ 0x9cda: "wei4", // 鳚
+ 0x9cdb: "xi2", // 鳛
+ 0x9cdc: "gui4", // 鳜
+ 0x9cdd: "shan4", // 鳝
+ 0x9cde: "lin2", // 鳞
+ 0x9cdf: "zun1", // 鳟
+ 0x9ce0: "hu4", // 鳠
+ 0x9ce1: "gan3", // 鳡
+ 0x9ce2: "li3", // 鳢
+ 0x9ce3: "zhan1", // 鳣
+ 0x9ce4: "guan3", // 鳤
+ 0x9ce5: "niao3", // 鳥
+ 0x9ce6: "yi3", // 鳦
+ 0x9ce7: "fu2", // 鳧
+ 0x9ce8: "li4", // 鳨
+ 0x9ce9: "jiu1", // 鳩
+ 0x9cea: "bu2", // 鳪
+ 0x9ceb: "yan4", // 鳫
+ 0x9cec: "fu3", // 鳬
+ 0x9ced: "diao1", // 鳭
+ 0x9cee: "ji1", // 鳮
+ 0x9cef: "feng4", // 鳯
+ 0x9cf0: "ru4", // 鳰
+ 0x9cf1: "gan1", // 鳱
+ 0x9cf2: "shi1", // 鳲
+ 0x9cf3: "feng4", // 鳳
+ 0x9cf4: "ming2", // 鳴
+ 0x9cf5: "bao3", // 鳵
+ 0x9cf6: "yuan1", // 鳶
+ 0x9cf7: "zhi1", // 鳷
+ 0x9cf8: "hu4", // 鳸
+ 0x9cf9: "qin2", // 鳹
+ 0x9cfa: "fu1", // 鳺
+ 0x9cfb: "ban1", // 鳻
+ 0x9cfc: "wen2", // 鳼
+ 0x9cfd: "jian1", // 鳽
+ 0x9cfe: "shi1", // 鳾
+ 0x9cff: "yu4", // 鳿
+ 0x9d00: "fou3", // 鴀
+ 0x9d01: "yao1", // 鴁
+ 0x9d02: "jue2", // 鴂
+ 0x9d03: "jue2", // 鴃
+ 0x9d04: "pi3", // 鴄
+ 0x9d05: "huan1", // 鴅
+ 0x9d06: "zhen4", // 鴆
+ 0x9d07: "bao3", // 鴇
+ 0x9d08: "yan4", // 鴈
+ 0x9d09: "ya1", // 鴉
+ 0x9d0a: "zheng4", // 鴊
+ 0x9d0b: "fang1", // 鴋
+ 0x9d0c: "feng4", // 鴌
+ 0x9d0d: "wen2", // 鴍
+ 0x9d0e: "ou1", // 鴎
+ 0x9d0f: "dai4", // 鴏
+ 0x9d10: "ge1", // 鴐
+ 0x9d11: "ru2", // 鴑
+ 0x9d12: "ling2", // 鴒
+ 0x9d13: "mie4", // 鴓
+ 0x9d14: "fu2", // 鴔
+ 0x9d15: "tuo2", // 鴕
+ 0x9d16: "min2", // 鴖
+ 0x9d17: "li4", // 鴗
+ 0x9d18: "bian3", // 鴘
+ 0x9d19: "zhi4", // 鴙
+ 0x9d1a: "ge1", // 鴚
+ 0x9d1b: "yuan1", // 鴛
+ 0x9d1c: "ci2", // 鴜
+ 0x9d1d: "qu2", // 鴝
+ 0x9d1e: "xiao1", // 鴞
+ 0x9d1f: "chi1", // 鴟
+ 0x9d20: "dan4", // 鴠
+ 0x9d21: "ju1", // 鴡
+ 0x9d22: "yao3", // 鴢
+ 0x9d23: "gu1", // 鴣
+ 0x9d24: "dong1", // 鴤
+ 0x9d25: "yu4", // 鴥
+ 0x9d26: "yang1", // 鴦
+ 0x9d27: "yu4", // 鴧
+ 0x9d28: "ya1", // 鴨
+ 0x9d29: "tie3", // 鴩
+ 0x9d2a: "yu4", // 鴪
+ 0x9d2b: "tian2", // 鴫
+ 0x9d2c: "ying1", // 鴬
+ 0x9d2d: "dui1", // 鴭
+ 0x9d2e: "wu1", // 鴮
+ 0x9d2f: "er2", // 鴯
+ 0x9d30: "gua1", // 鴰
+ 0x9d31: "ai4", // 鴱
+ 0x9d32: "zhi1", // 鴲
+ 0x9d33: "yan4", // 鴳
+ 0x9d34: "heng2", // 鴴
+ 0x9d35: "xiao1", // 鴵
+ 0x9d36: "jia2", // 鴶
+ 0x9d37: "lie4", // 鴷
+ 0x9d38: "zhu1", // 鴸
+ 0x9d39: "yang2", // 鴹
+ 0x9d3a: "ti2", // 鴺
+ 0x9d3b: "hong2", // 鴻
+ 0x9d3c: "luo4", // 鴼
+ 0x9d3d: "ru2", // 鴽
+ 0x9d3e: "mou2", // 鴾
+ 0x9d3f: "ge1", // 鴿
+ 0x9d40: "ren2", // 鵀
+ 0x9d41: "jiao1", // 鵁
+ 0x9d42: "xiu1", // 鵂
+ 0x9d43: "zhou1", // 鵃
+ 0x9d44: "chi1", // 鵄
+ 0x9d45: "luo4", // 鵅
+ 0x9d46: "heng2", // 鵆
+ 0x9d47: "nian2", // 鵇
+ 0x9d48: "e3", // 鵈
+ 0x9d49: "luan2", // 鵉
+ 0x9d4a: "jia2", // 鵊
+ 0x9d4b: "ji4", // 鵋
+ 0x9d4c: "tu2", // 鵌
+ 0x9d4d: "huan1", // 鵍
+ 0x9d4e: "tuo3", // 鵎
+ 0x9d4f: "bu3", // 鵏
+ 0x9d50: "wu2", // 鵐
+ 0x9d51: "juan1", // 鵑
+ 0x9d52: "yu4", // 鵒
+ 0x9d53: "bo2", // 鵓
+ 0x9d54: "jun4", // 鵔
+ 0x9d55: "jun4", // 鵕
+ 0x9d56: "bi1", // 鵖
+ 0x9d57: "xi1", // 鵗
+ 0x9d58: "jun4", // 鵘
+ 0x9d59: "ju2", // 鵙
+ 0x9d5a: "tu1", // 鵚
+ 0x9d5b: "jing1", // 鵛
+ 0x9d5c: "ti2", // 鵜
+ 0x9d5d: "e2", // 鵝
+ 0x9d5e: "e2", // 鵞
+ 0x9d5f: "kuang2", // 鵟
+ 0x9d60: "hu2", // 鵠
+ 0x9d61: "wu3", // 鵡
+ 0x9d62: "shen1", // 鵢
+ 0x9d63: "lai4", // 鵣
+ 0x9d64: "jiao5", // 鵤
+ 0x9d65: "pan4", // 鵥
+ 0x9d66: "lu4", // 鵦
+ 0x9d67: "pi2", // 鵧
+ 0x9d68: "shu1", // 鵨
+ 0x9d69: "fu2", // 鵩
+ 0x9d6a: "an1", // 鵪
+ 0x9d6b: "zhuo2", // 鵫
+ 0x9d6c: "peng2", // 鵬
+ 0x9d6d: "qin2", // 鵭
+ 0x9d6e: "qian1", // 鵮
+ 0x9d6f: "bei1", // 鵯
+ 0x9d70: "diao1", // 鵰
+ 0x9d71: "lu4", // 鵱
+ 0x9d72: "que4", // 鵲
+ 0x9d73: "jian1", // 鵳
+ 0x9d74: "ju2", // 鵴
+ 0x9d75: "tu4", // 鵵
+ 0x9d76: "ya1", // 鵶
+ 0x9d77: "yuan1", // 鵷
+ 0x9d78: "qi2", // 鵸
+ 0x9d79: "li2", // 鵹
+ 0x9d7a: "ye4", // 鵺
+ 0x9d7b: "zhui1", // 鵻
+ 0x9d7c: "kong1", // 鵼
+ 0x9d7d: "duo4", // 鵽
+ 0x9d7e: "kun1", // 鵾
+ 0x9d7f: "sheng1", // 鵿
+ 0x9d80: "qi2", // 鶀
+ 0x9d81: "jing1", // 鶁
+ 0x9d82: "yi4", // 鶂
+ 0x9d83: "yi4", // 鶃
+ 0x9d84: "jing1", // 鶄
+ 0x9d85: "zi1", // 鶅
+ 0x9d86: "lai2", // 鶆
+ 0x9d87: "dong1", // 鶇
+ 0x9d88: "qi1", // 鶈
+ 0x9d89: "chun2", // 鶉
+ 0x9d8a: "geng1", // 鶊
+ 0x9d8b: "ju1", // 鶋
+ 0x9d8c: "jue2", // 鶌
+ 0x9d8d: "yi4", // 鶍
+ 0x9d8e: "zun1", // 鶎
+ 0x9d8f: "ji1", // 鶏
+ 0x9d90: "shu4", // 鶐
+ 0x9d91: "ying1", // 鶑
+ 0x9d92: "chi4", // 鶒
+ 0x9d93: "miao2", // 鶓
+ 0x9d94: "rou2", // 鶔
+ 0x9d95: "an1", // 鶕
+ 0x9d96: "qiu1", // 鶖
+ 0x9d97: "ti2", // 鶗
+ 0x9d98: "hu2", // 鶘
+ 0x9d99: "ti2", // 鶙
+ 0x9d9a: "e4", // 鶚
+ 0x9d9b: "jie1", // 鶛
+ 0x9d9c: "mao2", // 鶜
+ 0x9d9d: "fu2", // 鶝
+ 0x9d9e: "chun1", // 鶞
+ 0x9d9f: "tu2", // 鶟
+ 0x9da0: "yan3", // 鶠
+ 0x9da1: "he2", // 鶡
+ 0x9da2: "yuan2", // 鶢
+ 0x9da3: "pian1", // 鶣
+ 0x9da4: "kun1", // 鶤
+ 0x9da5: "mei2", // 鶥
+ 0x9da6: "hu2", // 鶦
+ 0x9da7: "ying1", // 鶧
+ 0x9da8: "chuan4", // 鶨
+ 0x9da9: "wu4", // 鶩
+ 0x9daa: "ju2", // 鶪
+ 0x9dab: "dong1", // 鶫
+ 0x9dac: "cang1", // 鶬
+ 0x9dad: "fang3", // 鶭
+ 0x9dae: "he4", // 鶮
+ 0x9daf: "ying1", // 鶯
+ 0x9db0: "yuan2", // 鶰
+ 0x9db1: "xian1", // 鶱
+ 0x9db2: "weng1", // 鶲
+ 0x9db3: "shi1", // 鶳
+ 0x9db4: "he4", // 鶴
+ 0x9db5: "chu2", // 鶵
+ 0x9db6: "tang2", // 鶶
+ 0x9db7: "xia2", // 鶷
+ 0x9db8: "ruo4", // 鶸
+ 0x9db9: "liu2", // 鶹
+ 0x9dba: "ji2", // 鶺
+ 0x9dbb: "gu2", // 鶻
+ 0x9dbc: "jian1", // 鶼
+ 0x9dbd: "sun3", // 鶽
+ 0x9dbe: "han4", // 鶾
+ 0x9dbf: "ci2", // 鶿
+ 0x9dc0: "ci2", // 鷀
+ 0x9dc1: "yi4", // 鷁
+ 0x9dc2: "yao4", // 鷂
+ 0x9dc3: "yan4", // 鷃
+ 0x9dc4: "ji1", // 鷄
+ 0x9dc5: "li4", // 鷅
+ 0x9dc6: "tian2", // 鷆
+ 0x9dc7: "kou4", // 鷇
+ 0x9dc8: "ti1", // 鷈
+ 0x9dc9: "ti1", // 鷉
+ 0x9dca: "yi4", // 鷊
+ 0x9dcb: "tu2", // 鷋
+ 0x9dcc: "ma3", // 鷌
+ 0x9dcd: "xiao1", // 鷍
+ 0x9dce: "gao1", // 鷎
+ 0x9dcf: "tian2", // 鷏
+ 0x9dd0: "chen2", // 鷐
+ 0x9dd1: "ji2", // 鷑
+ 0x9dd2: "tuan2", // 鷒
+ 0x9dd3: "zhe4", // 鷓
+ 0x9dd4: "ao2", // 鷔
+ 0x9dd5: "yao3", // 鷕
+ 0x9dd6: "yi1", // 鷖
+ 0x9dd7: "ou1", // 鷗
+ 0x9dd8: "chi4", // 鷘
+ 0x9dd9: "zhi4", // 鷙
+ 0x9dda: "liu4", // 鷚
+ 0x9ddb: "yong1", // 鷛
+ 0x9ddc: "lv2", // 鷜
+ 0x9ddd: "bi4", // 鷝
+ 0x9dde: "shuang1", // 鷞
+ 0x9ddf: "zhuo2", // 鷟
+ 0x9de0: "yu2", // 鷠
+ 0x9de1: "wu2", // 鷡
+ 0x9de2: "jue2", // 鷢
+ 0x9de3: "yin2", // 鷣
+ 0x9de4: "ti2", // 鷤
+ 0x9de5: "si1", // 鷥
+ 0x9de6: "jiao1", // 鷦
+ 0x9de7: "yi4", // 鷧
+ 0x9de8: "hua2", // 鷨
+ 0x9de9: "bi4", // 鷩
+ 0x9dea: "ying1", // 鷪
+ 0x9deb: "su4", // 鷫
+ 0x9dec: "huang2", // 鷬
+ 0x9ded: "fan2", // 鷭
+ 0x9dee: "jiao1", // 鷮
+ 0x9def: "liao2", // 鷯
+ 0x9df0: "yan4", // 鷰
+ 0x9df1: "gao1", // 鷱
+ 0x9df2: "jiu4", // 鷲
+ 0x9df3: "xian2", // 鷳
+ 0x9df4: "xian2", // 鷴
+ 0x9df5: "tu2", // 鷵
+ 0x9df6: "mai3", // 鷶
+ 0x9df7: "zun1", // 鷷
+ 0x9df8: "yu4", // 鷸
+ 0x9df9: "ying1", // 鷹
+ 0x9dfa: "lu4", // 鷺
+ 0x9dfb: "tuan2", // 鷻
+ 0x9dfc: "xian2", // 鷼
+ 0x9dfd: "xue2", // 鷽
+ 0x9dfe: "yi4", // 鷾
+ 0x9dff: "pi4", // 鷿
+ 0x9e00: "chu3", // 鸀
+ 0x9e01: "luo2", // 鸁
+ 0x9e02: "xi1", // 鸂
+ 0x9e03: "yi2", // 鸃
+ 0x9e04: "ji1", // 鸄
+ 0x9e05: "ze2", // 鸅
+ 0x9e06: "yu2", // 鸆
+ 0x9e07: "zhan1", // 鸇
+ 0x9e08: "ye4", // 鸈
+ 0x9e09: "yang2", // 鸉
+ 0x9e0a: "pi4", // 鸊
+ 0x9e0b: "ning2", // 鸋
+ 0x9e0c: "hu4", // 鸌
+ 0x9e0d: "mi2", // 鸍
+ 0x9e0e: "ying1", // 鸎
+ 0x9e0f: "meng2", // 鸏
+ 0x9e10: "di2", // 鸐
+ 0x9e11: "yue4", // 鸑
+ 0x9e12: "yu4", // 鸒
+ 0x9e13: "lei3", // 鸓
+ 0x9e14: "bu3", // 鸔
+ 0x9e15: "lu2", // 鸕
+ 0x9e16: "he4", // 鸖
+ 0x9e17: "long2", // 鸗
+ 0x9e18: "shuang1", // 鸘
+ 0x9e19: "yue4", // 鸙
+ 0x9e1a: "ying1", // 鸚
+ 0x9e1b: "guan4", // 鸛
+ 0x9e1c: "qu2", // 鸜
+ 0x9e1d: "li2", // 鸝
+ 0x9e1e: "luan2", // 鸞
+ 0x9e1f: "niao3", // 鸟
+ 0x9e20: "jiu1", // 鸠
+ 0x9e21: "ji1", // 鸡
+ 0x9e22: "yuan1", // 鸢
+ 0x9e23: "ming2", // 鸣
+ 0x9e24: "shi1", // 鸤
+ 0x9e25: "ou1", // 鸥
+ 0x9e26: "ya1", // 鸦
+ 0x9e27: "cang1", // 鸧
+ 0x9e28: "bao3", // 鸨
+ 0x9e29: "zhen4", // 鸩
+ 0x9e2a: "gu1", // 鸪
+ 0x9e2b: "dong1", // 鸫
+ 0x9e2c: "lu2", // 鸬
+ 0x9e2d: "ya1", // 鸭
+ 0x9e2e: "xiao1", // 鸮
+ 0x9e2f: "yang1", // 鸯
+ 0x9e30: "ling2", // 鸰
+ 0x9e31: "chi1", // 鸱
+ 0x9e32: "qu2", // 鸲
+ 0x9e33: "yuan1", // 鸳
+ 0x9e34: "xue2", // 鸴
+ 0x9e35: "tuo2", // 鸵
+ 0x9e36: "si1", // 鸶
+ 0x9e37: "zhi4", // 鸷
+ 0x9e38: "er2", // 鸸
+ 0x9e39: "gua1", // 鸹
+ 0x9e3a: "xiu1", // 鸺
+ 0x9e3b: "heng2", // 鸻
+ 0x9e3c: "zhou1", // 鸼
+ 0x9e3d: "ge1", // 鸽
+ 0x9e3e: "luan2", // 鸾
+ 0x9e3f: "hong2", // 鸿
+ 0x9e40: "wu2", // 鹀
+ 0x9e41: "bo2", // 鹁
+ 0x9e42: "li2", // 鹂
+ 0x9e43: "juan1", // 鹃
+ 0x9e44: "gu3", // 鹄
+ 0x9e45: "e2", // 鹅
+ 0x9e46: "yu4", // 鹆
+ 0x9e47: "xian2", // 鹇
+ 0x9e48: "ti2", // 鹈
+ 0x9e49: "wu3", // 鹉
+ 0x9e4a: "que4", // 鹊
+ 0x9e4b: "miao2", // 鹋
+ 0x9e4c: "an1", // 鹌
+ 0x9e4d: "kun1", // 鹍
+ 0x9e4e: "bei1", // 鹎
+ 0x9e4f: "peng2", // 鹏
+ 0x9e50: "qian1", // 鹐
+ 0x9e51: "chun2", // 鹑
+ 0x9e52: "geng1", // 鹒
+ 0x9e53: "yuan1", // 鹓
+ 0x9e54: "su4", // 鹔
+ 0x9e55: "hu2", // 鹕
+ 0x9e56: "he2", // 鹖
+ 0x9e57: "e4", // 鹗
+ 0x9e58: "gu3", // 鹘
+ 0x9e59: "qiu1", // 鹙
+ 0x9e5a: "ci2", // 鹚
+ 0x9e5b: "mei2", // 鹛
+ 0x9e5c: "wu4", // 鹜
+ 0x9e5d: "yi4", // 鹝
+ 0x9e5e: "yao4", // 鹞
+ 0x9e5f: "weng1", // 鹟
+ 0x9e60: "liu2", // 鹠
+ 0x9e61: "ji2", // 鹡
+ 0x9e62: "yi4", // 鹢
+ 0x9e63: "jian1", // 鹣
+ 0x9e64: "he4", // 鹤
+ 0x9e65: "yi1", // 鹥
+ 0x9e66: "ying1", // 鹦
+ 0x9e67: "zhe4", // 鹧
+ 0x9e68: "liu4", // 鹨
+ 0x9e69: "liao2", // 鹩
+ 0x9e6a: "jiao1", // 鹪
+ 0x9e6b: "jiu4", // 鹫
+ 0x9e6c: "yu4", // 鹬
+ 0x9e6d: "lu4", // 鹭
+ 0x9e6e: "huan2", // 鹮
+ 0x9e6f: "zhan1", // 鹯
+ 0x9e70: "ying1", // 鹰
+ 0x9e71: "hu4", // 鹱
+ 0x9e72: "meng2", // 鹲
+ 0x9e73: "guan4", // 鹳
+ 0x9e74: "shuang1", // 鹴
+ 0x9e75: "lu3", // 鹵
+ 0x9e76: "jin1", // 鹶
+ 0x9e77: "ling2", // 鹷
+ 0x9e78: "jian3", // 鹸
+ 0x9e79: "xian2", // 鹹
+ 0x9e7a: "cuo2", // 鹺
+ 0x9e7b: "jian3", // 鹻
+ 0x9e7c: "jian3", // 鹼
+ 0x9e7d: "yan2", // 鹽
+ 0x9e7e: "cuo2", // 鹾
+ 0x9e7f: "lu4", // 鹿
+ 0x9e80: "you1", // 麀
+ 0x9e81: "cu1", // 麁
+ 0x9e82: "ji3", // 麂
+ 0x9e83: "pao2", // 麃
+ 0x9e84: "cu1", // 麄
+ 0x9e85: "pao2", // 麅
+ 0x9e86: "zhu4", // 麆
+ 0x9e87: "jun1", // 麇
+ 0x9e88: "zhu3", // 麈
+ 0x9e89: "jian1", // 麉
+ 0x9e8a: "mi2", // 麊
+ 0x9e8b: "mi2", // 麋
+ 0x9e8c: "yu3", // 麌
+ 0x9e8d: "liu2", // 麍
+ 0x9e8e: "chen2", // 麎
+ 0x9e8f: "jun1", // 麏
+ 0x9e90: "lin2", // 麐
+ 0x9e91: "ni2", // 麑
+ 0x9e92: "qi2", // 麒
+ 0x9e93: "lu4", // 麓
+ 0x9e94: "jiu4", // 麔
+ 0x9e95: "jun1", // 麕
+ 0x9e96: "jing1", // 麖
+ 0x9e97: "li4", // 麗
+ 0x9e98: "xiang1", // 麘
+ 0x9e99: "xian2", // 麙
+ 0x9e9a: "jia1", // 麚
+ 0x9e9b: "mi2", // 麛
+ 0x9e9c: "li4", // 麜
+ 0x9e9d: "she4", // 麝
+ 0x9e9e: "zhang1", // 麞
+ 0x9e9f: "lin2", // 麟
+ 0x9ea0: "jing1", // 麠
+ 0x9ea1: "qi2", // 麡
+ 0x9ea2: "ling2", // 麢
+ 0x9ea3: "yan2", // 麣
+ 0x9ea4: "cu1", // 麤
+ 0x9ea5: "mai4", // 麥
+ 0x9ea6: "mai4", // 麦
+ 0x9ea7: "he2", // 麧
+ 0x9ea8: "chao3", // 麨
+ 0x9ea9: "fu1", // 麩
+ 0x9eaa: "mian4", // 麪
+ 0x9eab: "mian4", // 麫
+ 0x9eac: "fu1", // 麬
+ 0x9ead: "pao4", // 麭
+ 0x9eae: "qu4", // 麮
+ 0x9eaf: "qu1", // 麯
+ 0x9eb0: "mou2", // 麰
+ 0x9eb1: "fu1", // 麱
+ 0x9eb2: "xian4", // 麲
+ 0x9eb3: "lai2", // 麳
+ 0x9eb4: "qu1", // 麴
+ 0x9eb5: "mian4", // 麵
+ 0x9eb6: "chi5", // 麶
+ 0x9eb7: "feng1", // 麷
+ 0x9eb8: "fu1", // 麸
+ 0x9eb9: "qu1", // 麹
+ 0x9eba: "mian4", // 麺
+ 0x9ebb: "ma2", // 麻
+ 0x9ebc: "me5", // 麼
+ 0x9ebd: "mo2", // 麽
+ 0x9ebe: "hui1", // 麾
+ 0x9ebf: "mo5", // 麿
+ 0x9ec0: "zou1", // 黀
+ 0x9ec1: "nun2", // 黁
+ 0x9ec2: "fen2", // 黂
+ 0x9ec3: "huang2", // 黃
+ 0x9ec4: "huang2", // 黄
+ 0x9ec5: "jin1", // 黅
+ 0x9ec6: "guang1", // 黆
+ 0x9ec7: "tian1", // 黇
+ 0x9ec8: "tou3", // 黈
+ 0x9ec9: "hong2", // 黉
+ 0x9eca: "hua4", // 黊
+ 0x9ecb: "kuang4", // 黋
+ 0x9ecc: "hong2", // 黌
+ 0x9ecd: "shu3", // 黍
+ 0x9ece: "li2", // 黎
+ 0x9ecf: "nian2", // 黏
+ 0x9ed0: "chi1", // 黐
+ 0x9ed1: "hei1", // 黑
+ 0x9ed2: "hei1", // 黒
+ 0x9ed3: "yi4", // 黓
+ 0x9ed4: "qian2", // 黔
+ 0x9ed5: "dan3", // 黕
+ 0x9ed6: "xi4", // 黖
+ 0x9ed7: "tun1", // 黗
+ 0x9ed8: "mo4", // 默
+ 0x9ed9: "mo4", // 黙
+ 0x9eda: "qian2", // 黚
+ 0x9edb: "dai4", // 黛
+ 0x9edc: "chu4", // 黜
+ 0x9edd: "you3", // 黝
+ 0x9ede: "dian3", // 點
+ 0x9edf: "yi1", // 黟
+ 0x9ee0: "xia2", // 黠
+ 0x9ee1: "yan3", // 黡
+ 0x9ee2: "qu1", // 黢
+ 0x9ee3: "mei3", // 黣
+ 0x9ee4: "yan3", // 黤
+ 0x9ee5: "qing2", // 黥
+ 0x9ee6: "yue4", // 黦
+ 0x9ee7: "li2", // 黧
+ 0x9ee8: "dang3", // 黨
+ 0x9ee9: "du2", // 黩
+ 0x9eea: "can3", // 黪
+ 0x9eeb: "yan1", // 黫
+ 0x9eec: "yan2", // 黬
+ 0x9eed: "yan3", // 黭
+ 0x9eee: "dan3", // 黮
+ 0x9eef: "an4", // 黯
+ 0x9ef0: "zhen3", // 黰
+ 0x9ef1: "dai4", // 黱
+ 0x9ef2: "can3", // 黲
+ 0x9ef3: "yi1", // 黳
+ 0x9ef4: "mei2", // 黴
+ 0x9ef5: "zhan3", // 黵
+ 0x9ef6: "yan3", // 黶
+ 0x9ef7: "du2", // 黷
+ 0x9ef8: "lu2", // 黸
+ 0x9ef9: "zhi3", // 黹
+ 0x9efa: "fen3", // 黺
+ 0x9efb: "fu2", // 黻
+ 0x9efc: "fu3", // 黼
+ 0x9efd: "mian3", // 黽
+ 0x9efe: "mian3", // 黾
+ 0x9eff: "yuan2", // 黿
+ 0x9f00: "cu4", // 鼀
+ 0x9f01: "qu4", // 鼁
+ 0x9f02: "chao2", // 鼂
+ 0x9f03: "wa1", // 鼃
+ 0x9f04: "zhu1", // 鼄
+ 0x9f05: "zhi1", // 鼅
+ 0x9f06: "meng2", // 鼆
+ 0x9f07: "ao2", // 鼇
+ 0x9f08: "bie1", // 鼈
+ 0x9f09: "tuo2", // 鼉
+ 0x9f0a: "bi4", // 鼊
+ 0x9f0b: "yuan2", // 鼋
+ 0x9f0c: "chao2", // 鼌
+ 0x9f0d: "tuo2", // 鼍
+ 0x9f0e: "ding3", // 鼎
+ 0x9f0f: "mi4", // 鼏
+ 0x9f10: "nai4", // 鼐
+ 0x9f11: "ding3", // 鼑
+ 0x9f12: "zi1", // 鼒
+ 0x9f13: "gu3", // 鼓
+ 0x9f14: "gu3", // 鼔
+ 0x9f15: "dong1", // 鼕
+ 0x9f16: "fen2", // 鼖
+ 0x9f17: "tao2", // 鼗
+ 0x9f18: "yuan1", // 鼘
+ 0x9f19: "pi2", // 鼙
+ 0x9f1a: "chang1", // 鼚
+ 0x9f1b: "gao1", // 鼛
+ 0x9f1c: "qi4", // 鼜
+ 0x9f1d: "yuan1", // 鼝
+ 0x9f1e: "tang1", // 鼞
+ 0x9f1f: "teng1", // 鼟
+ 0x9f20: "shu3", // 鼠
+ 0x9f21: "shu3", // 鼡
+ 0x9f22: "fen2", // 鼢
+ 0x9f23: "fei4", // 鼣
+ 0x9f24: "wen2", // 鼤
+ 0x9f25: "ba2", // 鼥
+ 0x9f26: "diao1", // 鼦
+ 0x9f27: "tuo2", // 鼧
+ 0x9f28: "zhong1", // 鼨
+ 0x9f29: "qu2", // 鼩
+ 0x9f2a: "sheng1", // 鼪
+ 0x9f2b: "shi2", // 鼫
+ 0x9f2c: "you4", // 鼬
+ 0x9f2d: "shi2", // 鼭
+ 0x9f2e: "ting2", // 鼮
+ 0x9f2f: "wu2", // 鼯
+ 0x9f30: "ju2", // 鼰
+ 0x9f31: "jing1", // 鼱
+ 0x9f32: "hun2", // 鼲
+ 0x9f33: "ju2", // 鼳
+ 0x9f34: "yan3", // 鼴
+ 0x9f35: "tu1", // 鼵
+ 0x9f36: "si1", // 鼶
+ 0x9f37: "xi1", // 鼷
+ 0x9f38: "xian4", // 鼸
+ 0x9f39: "yan3", // 鼹
+ 0x9f3a: "lei2", // 鼺
+ 0x9f3b: "bi2", // 鼻
+ 0x9f3c: "yao4", // 鼼
+ 0x9f3d: "qiu2", // 鼽
+ 0x9f3e: "han1", // 鼾
+ 0x9f3f: "wu4", // 鼿
+ 0x9f40: "wu4", // 齀
+ 0x9f41: "hou1", // 齁
+ 0x9f42: "xie4", // 齂
+ 0x9f43: "e4", // 齃
+ 0x9f44: "zha1", // 齄
+ 0x9f45: "xiu4", // 齅
+ 0x9f46: "weng4", // 齆
+ 0x9f47: "zha1", // 齇
+ 0x9f48: "nong4", // 齈
+ 0x9f49: "nang4", // 齉
+ 0x9f4a: "qi2", // 齊
+ 0x9f4b: "zhai1", // 齋
+ 0x9f4c: "ji4", // 齌
+ 0x9f4d: "zi1", // 齍
+ 0x9f4e: "ji1", // 齎
+ 0x9f4f: "ji1", // 齏
+ 0x9f50: "qi2", // 齐
+ 0x9f51: "ji1", // 齑
+ 0x9f52: "chi3", // 齒
+ 0x9f53: "chen4", // 齓
+ 0x9f54: "chen4", // 齔
+ 0x9f55: "he2", // 齕
+ 0x9f56: "ya2", // 齖
+ 0x9f57: "yin2", // 齗
+ 0x9f58: "xie4", // 齘
+ 0x9f59: "bao1", // 齙
+ 0x9f5a: "ze2", // 齚
+ 0x9f5b: "xie4", // 齛
+ 0x9f5c: "chai2", // 齜
+ 0x9f5d: "chi1", // 齝
+ 0x9f5e: "yan3", // 齞
+ 0x9f5f: "ju3", // 齟
+ 0x9f60: "tiao2", // 齠
+ 0x9f61: "ling2", // 齡
+ 0x9f62: "ling2", // 齢
+ 0x9f63: "chu1", // 齣
+ 0x9f64: "quan2", // 齤
+ 0x9f65: "xie4", // 齥
+ 0x9f66: "ken3", // 齦
+ 0x9f67: "nie4", // 齧
+ 0x9f68: "jiu4", // 齨
+ 0x9f69: "yao3", // 齩
+ 0x9f6a: "chuo4", // 齪
+ 0x9f6b: "yun3", // 齫
+ 0x9f6c: "yu3", // 齬
+ 0x9f6d: "chu3", // 齭
+ 0x9f6e: "yi3", // 齮
+ 0x9f6f: "ni2", // 齯
+ 0x9f70: "ze2", // 齰
+ 0x9f71: "zou1", // 齱
+ 0x9f72: "qu3", // 齲
+ 0x9f73: "yun3", // 齳
+ 0x9f74: "yan3", // 齴
+ 0x9f75: "ou2", // 齵
+ 0x9f76: "e4", // 齶
+ 0x9f77: "wo4", // 齷
+ 0x9f78: "yi4", // 齸
+ 0x9f79: "ci1", // 齹
+ 0x9f7a: "zou1", // 齺
+ 0x9f7b: "dian1", // 齻
+ 0x9f7c: "chu3", // 齼
+ 0x9f7d: "jin4", // 齽
+ 0x9f7e: "ya4", // 齾
+ 0x9f7f: "chi3", // 齿
+ 0x9f80: "chen4", // 龀
+ 0x9f81: "he2", // 龁
+ 0x9f82: "yin2", // 龂
+ 0x9f83: "ju3", // 龃
+ 0x9f84: "ling2", // 龄
+ 0x9f85: "bao1", // 龅
+ 0x9f86: "tiao2", // 龆
+ 0x9f87: "zi1", // 龇
+ 0x9f88: "ken3", // 龈
+ 0x9f89: "yu3", // 龉
+ 0x9f8a: "chuo4", // 龊
+ 0x9f8b: "qu3", // 龋
+ 0x9f8c: "wo4", // 龌
+ 0x9f8d: "long2", // 龍
+ 0x9f8e: "pang2", // 龎
+ 0x9f8f: "gong1", // 龏
+ 0x9f90: "pang2", // 龐
+ 0x9f91: "yan3", // 龑
+ 0x9f92: "long2", // 龒
+ 0x9f93: "long3", // 龓
+ 0x9f94: "gong1", // 龔
+ 0x9f95: "kan1", // 龕
+ 0x9f96: "da2", // 龖
+ 0x9f97: "ling2", // 龗
+ 0x9f98: "da2", // 龘
+ 0x9f99: "long2", // 龙
+ 0x9f9a: "gong1", // 龚
+ 0x9f9b: "kan1", // 龛
+ 0x9f9c: "gui1", // 龜
+ 0x9f9d: "qiu1", // 龝
+ 0x9f9e: "bie1", // 龞
+ 0x9f9f: "gui1", // 龟
+ 0x9fa0: "yue4", // 龠
+ 0x9fa1: "chui1", // 龡
+ 0x9fa2: "he2", // 龢
+ 0x9fa3: "jue2", // 龣
+ 0x9fa4: "xie2", // 龤
+ 0x9fa5: "yu4", // 龥
+ 0x9fc3: "shan3", // 鿃
+ 0x9fcd: "gang4", // 鿍
+ 0x9fce: "ta3", // 鿎
+ 0x9fcf: "mai4", // 鿏
+ 0x9fd4: "ge1", // 鿔
+ 0x9fd5: "dan1", // 鿕
+ 0x20000: "he1", // 𠀀
+ 0x20001: "qi1", // 𠀁
+ 0x20003: "qie3", // 𠀃
+ 0x20005: "hai4", // 𠀅
+ 0x20009: "qiu1", // 𠀉
+ 0x2000a: "cao1", // 𠀊
+ 0x2000d: "shi4", // 𠀍
+ 0x20013: "si1", // 𠀓
+ 0x20014: "jue2", // 𠀔
+ 0x2001b: "yu4", // 𠀛
+ 0x2001d: "kong1", // 𠀝
+ 0x20022: "zi1", // 𠀢
+ 0x20026: "xing2", // 𠀦
+ 0x20031: "mou3", // 𠀱
+ 0x20037: "ji1", // 𠀷
+ 0x20038: "ye4", // 𠀸
+ 0x20039: "jun1", // 𠀹
+ 0x2003c: "qian2", // 𠀼
+ 0x2003d: "lu4", // 𠀽
+ 0x20049: "chu1", // 𠁉
+ 0x20057: "shi4", // 𠁗
+ 0x20060: "qie4", // 𠁠
+ 0x20065: "ga3", // 𠁥
+ 0x2006d: "qi2", // 𠁭
+ 0x20077: "chan3", // 𠁷
+ 0x20084: "huan1", // 𠂄
+ 0x20086: "yi4", // 𠂆
+ 0x20087: "zuo3", // 𠂇
+ 0x20088: "jie2", // 𠂈
+ 0x20091: "zou1", // 𠂑
+ 0x20094: "zi3", // 𠂔
+ 0x2009f: "jin1", // 𠂟
+ 0x200a2: "pai4", // 𠂢
+ 0x200a4: "dui1", // 𠂤
+ 0x200a5: "cong2", // 𠂥
+ 0x200a7: "shen4", // 𠂧
+ 0x200b8: "huang2", // 𠂸
+ 0x200ca: "yin3", // 𠃊
+ 0x200cc: "gun3", // 𠃌
+ 0x200d6: "jiu1", // 𠃖
+ 0x200eb: "shen1", // 𠃫
+ 0x200fa: "jiu4", // 𠃺
+ 0x20105: "ye4", // 𠄅
+ 0x20109: "dong4", // 𠄉
+ 0x2010c: "jue2", // 𠄌
+ 0x2010d: "jie2", // 𠄍
+ 0x2010f: "diao3", // 𠄏
+ 0x20111: "jue2", // 𠄑
+ 0x20112: "chui2", // 𠄒
+ 0x20116: "ling2", // 𠄖
+ 0x2011a: "ting1", // 𠄚
+ 0x20123: "gen4", // 𠄣
+ 0x2012e: "ya4", // 𠄮
+ 0x20131: "yi2", // 𠄱
+ 0x2013f: "wei2", // 𠄿
+ 0x20142: "jie2", // 𠅂
+ 0x2014c: "yi2", // 𠅌
+ 0x20157: "die4", // 𠅗
+ 0x2015a: "qi2", // 𠅚
+ 0x2016c: "bao1", // 𠅬
+ 0x20171: "xie4", // 𠅱
+ 0x20179: "zhang4", // 𠅹
+ 0x2018c: "yong1", // 𠆌
+ 0x20190: "xu4", // 𠆐
+ 0x20199: "die4", // 𠆙
+ 0x2019b: "dan1", // 𠆛
+ 0x2019f: "wei3", // 𠆟
+ 0x201a3: "gua3", // 𠆣
+ 0x201a9: "fan4", // 𠆩
+ 0x201ae: "mo4", // 𠆮
+ 0x201b1: "xi1", // 𠆱
+ 0x201b2: "yan3", // 𠆲
+ 0x201b5: "ni2", // 𠆵
+ 0x201b6: "dan4", // 𠆶
+ 0x201cb: "dan3", // 𠇋
+ 0x201cf: "tao1", // 𠇏
+ 0x201d2: "gong1", // 𠇒
+ 0x201d7: "kua1", // 𠇗
+ 0x201d8: "chu4", // 𠇘
+ 0x201ef: "qu4", // 𠇯
+ 0x201f1: "mo4", // 𠇱
+ 0x201f3: "shi1", // 𠇳
+ 0x201f5: "gan3", // 𠇵
+ 0x201f7: "sheng1", // 𠇷
+ 0x20201: "tuo1", // 𠈁
+ 0x20205: "shou1", // 𠈅
+ 0x2020a: "nie3", // 𠈊
+ 0x20224: "yun4", // 𠈤
+ 0x20225: "gua3", // 𠈥
+ 0x2022c: "xiao1", // 𠈬
+ 0x2022d: "lao2", // 𠈭
+ 0x20230: "dan4", // 𠈰
+ 0x20231: "suo1", // 𠈱
+ 0x20235: "mang3", // 𠈵
+ 0x20236: "yi2", // 𠈶
+ 0x20238: "te4", // 𠈸
+ 0x2023a: "bi4", // 𠈺
+ 0x20242: "ta4", // 𠉂
+ 0x20257: "luo4", // 𠉗
+ 0x20262: "xi3", // 𠉢
+ 0x20263: "hun1", // 𠉣
+ 0x20264: "da2", // 𠉤
+ 0x20267: "ju4", // 𠉧
+ 0x20269: "du2", // 𠉩
+ 0x2026c: "an3", // 𠉬
+ 0x20289: "mei4", // 𠊉
+ 0x2028c: "ran2", // 𠊌
+ 0x2028e: "ai2", // 𠊎
+ 0x2028f: "yu4", // 𠊏
+ 0x20292: "jian4", // 𠊒
+ 0x20294: "qi4", // 𠊔
+ 0x2029f: "min3", // 𠊟
+ 0x202a3: "zhou4", // 𠊣
+ 0x202a4: "zhi4", // 𠊤
+ 0x202a5: "zhong3", // 𠊥
+ 0x202a6: "nao3", // 𠊦
+ 0x202a7: "bing4", // 𠊧
+ 0x202a9: "zhuan4", // 𠊩
+ 0x202aa: "shu4", // 𠊪
+ 0x202ab: "xun4", // 𠊫
+ 0x202ac: "jue2", // 𠊬
+ 0x202ad: "qian3", // 𠊭
+ 0x202b0: "gua3", // 𠊰
+ 0x202b2: "tu1", // 𠊲
+ 0x202b6: "ying4", // 𠊶
+ 0x202b7: "zhi4", // 𠊷
+ 0x202be: "kui2", // 𠊾
+ 0x202c6: "chen4", // 𠋆
+ 0x202d6: "lian4", // 𠋖
+ 0x202d7: "ya1", // 𠋗
+ 0x202dc: "guo4", // 𠋜
+ 0x202dd: "miao3", // 𠋝
+ 0x202de: "she2", // 𠋞
+ 0x202df: "yu3", // 𠋟
+ 0x202e1: "si4", // 𠋡
+ 0x202e2: "sou3", // 𠋢
+ 0x202e4: "zhi4", // 𠋤
+ 0x202e7: "qie1", // 𠋧
+ 0x202e9: "fu4", // 𠋩
+ 0x202ec: "ju2", // 𠋬
+ 0x202ed: "bei4", // 𠋭
+ 0x202ef: "bi4", // 𠋯
+ 0x202f2: "suo3", // 𠋲
+ 0x202f5: "qian3", // 𠋵
+ 0x202f6: "ming3", // 𠋶
+ 0x202f7: "chan3", // 𠋷
+ 0x202fa: "sao1", // 𠋺
+ 0x202fb: "ji1", // 𠋻
+ 0x20315: "gong4", // 𠌕
+ 0x20316: "qiong2", // 𠌖
+ 0x2031a: "rong4", // 𠌚
+ 0x2031e: "sou3", // 𠌞
+ 0x2031f: "sou3", // 𠌟
+ 0x20320: "yao2", // 𠌠
+ 0x2032a: "chou1", // 𠌪
+ 0x2032d: "shuai4", // 𠌭
+ 0x2032e: "zhe1", // 𠌮
+ 0x2032f: "li4", // 𠌯
+ 0x20330: "gai4", // 𠌰
+ 0x20331: "sui1", // 𠌱
+ 0x20332: "zhan1", // 𠌲
+ 0x20334: "zhuang4", // 𠌴
+ 0x2033d: "fu4", // 𠌽
+ 0x20343: "ji1", // 𠍃
+ 0x20344: "dou1", // 𠍄
+ 0x20357: "hui4", // 𠍗
+ 0x2035a: "jian3", // 𠍚
+ 0x2035b: "yan3", // 𠍛
+ 0x2035c: "zhi4", // 𠍜
+ 0x20368: "mei3", // 𠍨
+ 0x20369: "yao4", // 𠍩
+ 0x2036a: "di1", // 𠍪
+ 0x2036b: "yi2", // 𠍫
+ 0x2036f: "bie2", // 𠍯
+ 0x20372: "qu2", // 𠍲
+ 0x20373: "yi4", // 𠍳
+ 0x20375: "yang4", // 𠍵
+ 0x20379: "zha2", // 𠍹
+ 0x2037d: "sha4", // 𠍽
+ 0x20399: "lai2", // 𠎙
+ 0x203ae: "jue2", // 𠎮
+ 0x203b0: "qi1", // 𠎰
+ 0x203b3: "yu2", // 𠎳
+ 0x203b6: "zai3", // 𠎶
+ 0x203b7: "sa4", // 𠎷
+ 0x203b8: "se4", // 𠎸
+ 0x203bb: "dun4", // 𠎻
+ 0x203bf: "jie3", // 𠎿
+ 0x203c0: "ke1", // 𠏀
+ 0x203c3: "yue1", // 𠏃
+ 0x203c7: "jian3", // 𠏇
+ 0x203c8: "yao2", // 𠏈
+ 0x203d3: "xian1", // 𠏓
+ 0x203d5: "xiao4", // 𠏕
+ 0x203d6: "qiao1", // 𠏖
+ 0x203da: "yu4", // 𠏚
+ 0x203db: "qu2", // 𠏛
+ 0x203e1: "xian1", // 𠏡
+ 0x203e2: "luo4", // 𠏢
+ 0x203e4: "guang3", // 𠏤
+ 0x203e7: "cheng1", // 𠏧
+ 0x203e8: "chuang3", // 𠏨
+ 0x203e9: "yi2", // 𠏩
+ 0x203eb: "zheng3", // 𠏫
+ 0x203ed: "zong4", // 𠏭
+ 0x203ee: "dui4", // 𠏮
+ 0x203f0: "zhai3", // 𠏰
+ 0x203ff: "fei3", // 𠏿
+ 0x20400: "yi2", // 𠐀
+ 0x20401: "meng2", // 𠐁
+ 0x20408: "bian1", // 𠐈
+ 0x20409: "jie2", // 𠐉
+ 0x2040a: "shu4", // 𠐊
+ 0x2040b: "liao2", // 𠐋
+ 0x2040c: "bi3", // 𠐌
+ 0x2040d: "su2", // 𠐍
+ 0x20411: "di4", // 𠐑
+ 0x20421: "bei4", // 𠐡
+ 0x20422: "wen4", // 𠐢
+ 0x20427: "meng2", // 𠐧
+ 0x20429: "chan3", // 𠐩
+ 0x20435: "dao3", // 𠐵
+ 0x2043a: "pin2", // 𠐺
+ 0x2043b: "jian3", // 𠐻
+ 0x2043c: "lin4", // 𠐼
+ 0x2043d: "gui4", // 𠐽
+ 0x2043e: "qi1", // 𠐾
+ 0x2043f: "hong1", // 𠐿
+ 0x20443: "ji2", // 𠑃
+ 0x20444: "xie4", // 𠑄
+ 0x20445: "zheng1", // 𠑅
+ 0x20446: "chan3", // 𠑆
+ 0x20450: "yao2", // 𠑐
+ 0x20451: "chan3", // 𠑑
+ 0x20458: "dian1", // 𠑘
+ 0x20459: "chong4", // 𠑙
+ 0x2045a: "nei2", // 𠑚
+ 0x2045b: "nei2", // 𠑛
+ 0x2045e: "zhai4", // 𠑞
+ 0x2045f: "bian1", // 𠑟
+ 0x20461: "chan3", // 𠑡
+ 0x2046a: "xiao1", // 𠑪
+ 0x2046f: "cu4", // 𠑯
+ 0x20470: "xin1", // 𠑰
+ 0x20471: "jing3", // 𠑱
+ 0x20472: "qian1", // 𠑲
+ 0x20474: "qing1", // 𠑴
+ 0x20479: "gu3", // 𠑹
+ 0x20484: "wu4", // 𠒄
+ 0x2049c: "yuan3", // 𠒜
+ 0x2049d: "bing3", // 𠒝
+ 0x204a2: "wan2", // 𠒢
+ 0x204b0: "niao3", // 𠒰
+ 0x204b5: "lian4", // 𠒵
+ 0x204b8: "rao3", // 𠒸
+ 0x204be: "fan4", // 𠒾
+ 0x204bf: "di2", // 𠒿
+ 0x204ca: "hui1", // 𠓊
+ 0x204cb: "yi4", // 𠓋
+ 0x204cc: "xian2", // 𠓌
+ 0x204d6: "lan2", // 𠓖
+ 0x204d7: "fu4", // 𠓗
+ 0x204d9: "xiong4", // 𠓙
+ 0x204dc: "liang3", // 𠓜
+ 0x204dd: "tao1", // 𠓝
+ 0x204de: "ji2", // 𠓞
+ 0x204e2: "jie4", // 𠓢
+ 0x204e3: "zha2", // 𠓣
+ 0x204e4: "shi1", // 𠓤
+ 0x204ea: "qi2", // 𠓪
+ 0x204eb: "bian3", // 𠓫
+ 0x204ed: "lan3", // 𠓭
+ 0x204ee: "lin3", // 𠓮
+ 0x204f6: "zhi4", // 𠓶
+ 0x204f7: "bi4", // 𠓷
+ 0x204f8: "sheng4", // 𠓸
+ 0x204fd: "sheng4", // 𠓽
+ 0x204ff: "qin2", // 𠓿
+ 0x20502: "biao1", // 𠔂
+ 0x20503: "xi1", // 𠔃
+ 0x20509: "juan4", // 𠔉
+ 0x2050b: "ji1", // 𠔋
+ 0x2050d: "xi1", // 𠔍
+ 0x2050e: "qin3", // 𠔎
+ 0x20511: "hai4", // 𠔑
+ 0x20515: "lun2", // 𠔕
+ 0x20520: "yue4", // 𠔠
+ 0x20528: "lian2", // 𠔨
+ 0x2052f: "ban1", // 𠔯
+ 0x20532: "heng2", // 𠔲
+ 0x20536: "qi1", // 𠔶
+ 0x2053a: "qian1", // 𠔺
+ 0x2053b: "zheng4", // 𠔻
+ 0x2053c: "mao3", // 𠔼
+ 0x20541: "cong2", // 𠕁
+ 0x20544: "na4", // 𠕄
+ 0x2054a: "ting3", // 𠕊
+ 0x2054c: "zong1", // 𠕌
+ 0x20555: "jiong1", // 𠕕
+ 0x20556: "zhao3", // 𠕖
+ 0x2055f: "nian3", // 𠕟
+ 0x20560: "cheng2", // 𠕠
+ 0x20563: "qia4", // 𠕣
+ 0x20566: "yu4", // 𠕦
+ 0x20567: "jiao3", // 𠕧
+ 0x2056d: "zhao4", // 𠕭
+ 0x20573: "di2", // 𠕳
+ 0x20574: "jiu1", // 𠕴
+ 0x20578: "sui3", // 𠕸
+ 0x2057b: "yao1", // 𠕻
+ 0x2057f: "wang1", // 𠕿
+ 0x20582: "liao2", // 𠖂
+ 0x20584: "tong2", // 𠖄
+ 0x20586: "meng4", // 𠖆
+ 0x2058b: "you3", // 𠖋
+ 0x20593: "si1", // 𠖓
+ 0x2059b: "lou4", // 𠖛
+ 0x2059f: "yin1", // 𠖟
+ 0x205a5: "chong3", // 𠖥
+ 0x205ab: "gan3", // 𠖫
+ 0x205ac: "jiu1", // 𠖬
+ 0x205b6: "qin4", // 𠖶
+ 0x205b7: "jiong3", // 𠖷
+ 0x205b9: "xie2", // 𠖹
+ 0x205c2: "he4", // 𠗂
+ 0x205c6: "tao1", // 𠗆
+ 0x205c8: "qiu2", // 𠗈
+ 0x205c9: "xie2", // 𠗉
+ 0x205ca: "jing4", // 𠗊
+ 0x205cb: "nian3", // 𠗋
+ 0x205cc: "jing4", // 𠗌
+ 0x205cf: "ji2", // 𠗏
+ 0x205d8: "tian3", // 𠗘
+ 0x205da: "cui4", // 𠗚
+ 0x205db: "die2", // 𠗛
+ 0x205dd: "qing3", // 𠗝
+ 0x205e5: "ping4", // 𠗥
+ 0x205e6: "ping2", // 𠗦
+ 0x205e8: "die2", // 𠗨
+ 0x205e9: "lou4", // 𠗩
+ 0x205f3: "lian3", // 𠗳
+ 0x205f4: "han2", // 𠗴
+ 0x205f5: "pang1", // 𠗵
+ 0x205f6: "tang2", // 𠗶
+ 0x205fa: "yi2", // 𠗺
+ 0x205fb: "xuan2", // 𠗻
+ 0x205fc: "suo4", // 𠗼
+ 0x205fd: "liu2", // 𠗽
+ 0x205fe: "shuang3", // 𠗾
+ 0x205ff: "shen4", // 𠗿
+ 0x20601: "bu4", // 𠘁
+ 0x20602: "sou1", // 𠘂
+ 0x20605: "qin2", // 𠘅
+ 0x20606: "shen3", // 𠘆
+ 0x2060a: "nong4", // 𠘊
+ 0x2060b: "ting3", // 𠘋
+ 0x2060c: "jiang1", // 𠘌
+ 0x20615: "xi1", // 𠘕
+ 0x20616: "zhi4", // 𠘖
+ 0x2061d: "lai4", // 𠘝
+ 0x2061e: "li4", // 𠘞
+ 0x2061f: "li4", // 𠘟
+ 0x20622: "he2", // 𠘢
+ 0x20623: "jiao4", // 𠘣
+ 0x20625: "yan2", // 𠘥
+ 0x20627: "shu1", // 𠘧
+ 0x2062a: "shi3", // 𠘪
+ 0x20631: "zhen3", // 𠘱
+ 0x20633: "you1", // 𠘳
+ 0x2063a: "suo4", // 𠘺
+ 0x2063b: "wu2", // 𠘻
+ 0x20641: "chang2", // 𠙁
+ 0x20642: "cong2", // 𠙂
+ 0x20646: "ju4", // 𠙆
+ 0x2064e: "shu1", // 𠙎
+ 0x20654: "jiu4", // 𠙔
+ 0x20655: "wei2", // 𠙕
+ 0x2065e: "huo4", // 𠙞
+ 0x20664: "jie1", // 𠙤
+ 0x2066c: "zao3", // 𠙬
+ 0x20676: "ou3", // 𠙶
+ 0x2067c: "gua3", // 𠙼
+ 0x20683: "hao2", // 𠚃
+ 0x20684: "li3", // 𠚄
+ 0x20685: "zhi4", // 𠚅
+ 0x20686: "xian4", // 𠚆
+ 0x20689: "bu1", // 𠚉
+ 0x2068a: "chang4", // 𠚊
+ 0x20693: "yun1", // 𠚓
+ 0x20694: "he2", // 𠚔
+ 0x2069c: "tao1", // 𠚜
+ 0x206a0: "biao1", // 𠚠
+ 0x206a5: "diao1", // 𠚥
+ 0x206a7: "er4", // 𠚧
+ 0x206a8: "jiu1", // 𠚨
+ 0x206ad: "di4", // 𠚭
+ 0x206ae: "yi4", // 𠚮
+ 0x206af: "kun1", // 𠚯
+ 0x206b1: "zhe2", // 𠚱
+ 0x206b3: "kuo4", // 𠚳
+ 0x206b4: "zhou1", // 𠚴
+ 0x206b5: "ju4", // 𠚵
+ 0x206b9: "shan4", // 𠚹
+ 0x206ba: "sha4", // 𠚺
+ 0x206bb: "diao1", // 𠚻
+ 0x206bc: "ban1", // 𠚼
+ 0x206bd: "ji1", // 𠚽
+ 0x206c0: "zhong1", // 𠛀
+ 0x206c3: "yi2", // 𠛃
+ 0x206c5: "kou1", // 𠛅
+ 0x206c6: "wu1", // 𠛆
+ 0x206ca: "ge1", // 𠛊
+ 0x206cb: "ba1", // 𠛋
+ 0x206ce: "gou1", // 𠛎
+ 0x206d1: "xian2", // 𠛑
+ 0x206d2: "gua1", // 𠛒
+ 0x206d3: "liu3", // 𠛓
+ 0x206d4: "chi3", // 𠛔
+ 0x206d5: "guai1", // 𠛕
+ 0x206d6: "chuan1", // 𠛖
+ 0x206d8: "li2", // 𠛘
+ 0x206d9: "cu4", // 𠛙
+ 0x206da: "shua1", // 𠛚
+ 0x206e1: "bi3", // 𠛡
+ 0x206e5: "bing3", // 𠛥
+ 0x206e6: "li4", // 𠛦
+ 0x206e9: "jiu3", // 𠛩
+ 0x206ea: "tiao1", // 𠛪
+ 0x206eb: "duo3", // 𠛫
+ 0x206ed: "yan1", // 𠛭
+ 0x206ee: "quan1", // 𠛮
+ 0x206f1: "lie4", // 𠛱
+ 0x206f3: "ke4", // 𠛳
+ 0x206f5: "gen1", // 𠛵
+ 0x206f6: "zhen1", // 𠛶
+ 0x206f8: "fen2", // 𠛸
+ 0x20701: "yi2", // 𠜁
+ 0x20703: "jiu4", // 𠜃
+ 0x20704: "xu4", // 𠜄
+ 0x20705: "jiao3", // 𠜅
+ 0x20708: "lv4", // 𠜈
+ 0x20709: "jiu3", // 𠜉
+ 0x2070b: "chou3", // 𠜋
+ 0x2070e: "xian4", // 𠜎
+ 0x20710: "kuai4", // 𠜐
+ 0x20711: "dui4", // 𠜑
+ 0x20716: "luo1", // 𠜖
+ 0x20717: "xi1", // 𠜗
+ 0x20718: "qin4", // 𠜘
+ 0x20719: "bu4", // 𠜙
+ 0x20724: "qia4", // 𠜤
+ 0x20731: "pi1", // 𠜱
+ 0x20732: "ya1", // 𠜲
+ 0x20733: "beng1", // 𠜳
+ 0x20734: "guo3", // 𠜴
+ 0x20735: "gua1", // 𠜵
+ 0x20739: "ju2", // 𠜹
+ 0x2073c: "qia1", // 𠜼
+ 0x2073e: "jue2", // 𠜾
+ 0x20744: "li4", // 𠝄
+ 0x20750: "hua1", // 𠝐
+ 0x20751: "jiao1", // 𠝑
+ 0x20758: "qia4", // 𠝘
+ 0x2075a: "zha2", // 𠝚
+ 0x2075b: "qia1", // 𠝛
+ 0x2075d: "zhe2", // 𠝝
+ 0x2075e: "cha1", // 𠝞
+ 0x2075f: "ying3", // 𠝟
+ 0x20762: "yan1", // 𠝢
+ 0x20764: "chong1", // 𠝤
+ 0x20768: "chi3", // 𠝨
+ 0x2076a: "wan1", // 𠝪
+ 0x2076c: "sou1", // 𠝬
+ 0x20772: "kan3", // 𠝲
+ 0x20773: "yuan2", // 𠝳
+ 0x2077d: "chou2", // 𠝽
+ 0x2077f: "suo3", // 𠝿
+ 0x20780: "tu1", // 𠞀
+ 0x20783: "zhe2", // 𠞃
+ 0x20784: "ti1", // 𠞄
+ 0x20786: "wu1", // 𠞆
+ 0x20788: "da1", // 𠞈
+ 0x20789: "li4", // 𠞉
+ 0x2078a: "cha1", // 𠞊
+ 0x20795: "rong2", // 𠞕
+ 0x20796: "gong4", // 𠞖
+ 0x20797: "que4", // 𠞗
+ 0x20799: "li2", // 𠞙
+ 0x2079e: "tao1", // 𠞞
+ 0x207a4: "li4", // 𠞤
+ 0x207a7: "mi2", // 𠞧
+ 0x207a9: "chi4", // 𠞩
+ 0x207ac: "gun4", // 𠞬
+ 0x207ad: "lou2", // 𠞭
+ 0x207ae: "chuang3", // 𠞮
+ 0x207af: "suo3", // 𠞯
+ 0x207b0: "jiao3", // 𠞰
+ 0x207b1: "jin4", // 𠞱
+ 0x207b5: "fa2", // 𠞵
+ 0x207b6: "zhai1", // 𠞶
+ 0x207be: "jin4", // 𠞾
+ 0x207bf: "cui4", // 𠞿
+ 0x207c2: "ceng4", // 𠟂
+ 0x207c3: "zun3", // 𠟃
+ 0x207c5: "zhao4", // 𠟅
+ 0x207c8: "pie1", // 𠟈
+ 0x207c9: "zhan3", // 𠟉
+ 0x207ca: "xi1", // 𠟊
+ 0x207cb: "yao4", // 𠟋
+ 0x207cc: "fu3", // 𠟌
+ 0x207cd: "chong1", // 𠟍
+ 0x207d3: "cui4", // 𠟓
+ 0x207d7: "gua1", // 𠟗
+ 0x207e3: "ji1", // 𠟣
+ 0x207e6: "se4", // 𠟦
+ 0x207e7: "zhan1", // 𠟧
+ 0x207e8: "ling4", // 𠟨
+ 0x207e9: "se4", // 𠟩
+ 0x207ea: "ye4", // 𠟪
+ 0x207f0: "ju1", // 𠟰
+ 0x207f6: "tu1", // 𠟶
+ 0x207fa: "ru2", // 𠟺
+ 0x207fb: "ze2", // 𠟻
+ 0x207fc: "huan2", // 𠟼
+ 0x20801: "xian3", // 𠠁
+ 0x20803: "qian1", // 𠠃
+ 0x20804: "zhao4", // 𠠄
+ 0x2080b: "can2", // 𠠋
+ 0x2080e: "kuo4", // 𠠎
+ 0x2080f: "li4", // 𠠏
+ 0x20810: "rou2", // 𠠐
+ 0x20814: "du2", // 𠠔
+ 0x20817: "lie4", // 𠠗
+ 0x2081c: "ying1", // 𠠜
+ 0x2081d: "li4", // 𠠝
+ 0x20820: "du2", // 𠠠
+ 0x20822: "ling2", // 𠠢
+ 0x2082a: "wan1", // 𠠪
+ 0x2082f: "die2", // 𠠯
+ 0x20833: "jiu1", // 𠠳
+ 0x20835: "li4", // 𠠵
+ 0x20836: "ku1", // 𠠶
+ 0x20837: "keng1", // 𠠷
+ 0x20839: "zhen3", // 𠠹
+ 0x20840: "he4", // 𠡀
+ 0x20842: "bi4", // 𠡂
+ 0x20844: "pi1", // 𠡄
+ 0x2084a: "hang1", // 𠡊
+ 0x20851: "zhuo2", // 𠡑
+ 0x20852: "dui3", // 𠡒
+ 0x20854: "yi4", // 𠡔
+ 0x2085c: "ke4", // 𠡜
+ 0x2085d: "yi4", // 𠡝
+ 0x2085e: "mo4", // 𠡞
+ 0x20861: "can2", // 𠡡
+ 0x20863: "geng3", // 𠡣
+ 0x20864: "ke4", // 𠡤
+ 0x20865: "shi4", // 𠡥
+ 0x2086d: "ling2", // 𠡭
+ 0x2086e: "beng1", // 𠡮
+ 0x20871: "duan4", // 𠡱
+ 0x20876: "juan1", // 𠡶
+ 0x20877: "nao3", // 𠡷
+ 0x20878: "zi3", // 𠡸
+ 0x2087b: "zong4", // 𠡻
+ 0x20883: "tang2", // 𠢃
+ 0x20886: "xia2", // 𠢆
+ 0x20887: "han4", // 𠢇
+ 0x2088c: "lve4", // 𠢌
+ 0x2088d: "qian2", // 𠢍
+ 0x20893: "mo4", // 𠢓
+ 0x20894: "ou1", // 𠢔
+ 0x20895: "hao2", // 𠢕
+ 0x20899: "zha2", // 𠢙
+ 0x2089a: "juan4", // 𠢚
+ 0x2089b: "cong2", // 𠢛
+ 0x208a0: "li4", // 𠢠
+ 0x208a1: "zha2", // 𠢡
+ 0x208a2: "you3", // 𠢢
+ 0x208a3: "dian4", // 𠢣
+ 0x208a4: "jue2", // 𠢤
+ 0x208a5: "bei4", // 𠢥
+ 0x208a9: "yao3", // 𠢩
+ 0x208aa: "pie1", // 𠢪
+ 0x208b1: "jin4", // 𠢱
+ 0x208b2: "kai3", // 𠢲
+ 0x208b3: "se4", // 𠢳
+ 0x208b4: "yang3", // 𠢴
+ 0x208b5: "jin4", // 𠢵
+ 0x208b9: "ke4", // 𠢹
+ 0x208c4: "chan1", // 𠣄
+ 0x208c7: "nian3", // 𠣇
+ 0x208c9: "wan4", // 𠣉
+ 0x208ca: "lv4", // 𠣊
+ 0x208d0: "yun2", // 𠣐
+ 0x208d1: "yao1", // 𠣑
+ 0x208d2: "bao1", // 𠣒
+ 0x208d5: "jun1", // 𠣕
+ 0x208d6: "xuan2", // 𠣖
+ 0x208d8: "zhou1", // 𠣘
+ 0x208e0: "kui4", // 𠣠
+ 0x208e1: "feng4", // 𠣡
+ 0x208ea: "qu2", // 𠣪
+ 0x208eb: "shao4", // 𠣫
+ 0x208ec: "sun3", // 𠣬
+ 0x208f0: "du1", // 𠣰
+ 0x208f2: "kuai3", // 𠣲
+ 0x208f3: "pao4", // 𠣳
+ 0x208fa: "bao4", // 𠣺
+ 0x208fe: "fu4", // 𠣾
+ 0x208ff: "jiu4", // 𠣿
+ 0x20900: "ran2", // 𠤀
+ 0x20904: "ju1", // 𠤄
+ 0x2090a: "qiong2", // 𠤊
+ 0x2090d: "zhou1", // 𠤍
+ 0x2090e: "hua4", // 𠤎
+ 0x2090f: "bao3", // 𠤏
+ 0x20915: "yi2", // 𠤕
+ 0x20917: "yi2", // 𠤗
+ 0x20918: "yi2", // 𠤘
+ 0x2091d: "mao4", // 𠤝
+ 0x20926: "ruan3", // 𠤦
+ 0x2092b: "ci2", // 𠤫
+ 0x2092e: "han2", // 𠤮
+ 0x20930: "cong2", // 𠤰
+ 0x20934: "xi4", // 𠤴
+ 0x20939: "quan2", // 𠤹
+ 0x2093a: "tiao2", // 𠤺
+ 0x2093c: "diao4", // 𠤼
+ 0x2093e: "han2", // 𠤾
+ 0x20947: "ye3", // 𠥇
+ 0x2094d: "e1", // 𠥍
+ 0x2094e: "wei2", // 𠥎
+ 0x20950: "cang1", // 𠥐
+ 0x20951: "diao4", // 𠥑
+ 0x20955: "e4", // 𠥕
+ 0x20956: "di4", // 𠥖
+ 0x20958: "suan3", // 𠥘
+ 0x20959: "quan2", // 𠥙
+ 0x2095c: "e4", // 𠥜
+ 0x2095d: "ou1", // 𠥝
+ 0x2095e: "xuan2", // 𠥞
+ 0x20962: "wu3", // 𠥢
+ 0x20966: "yi4", // 𠥦
+ 0x20968: "mou2", // 𠥨
+ 0x20970: "hu1", // 𠥰
+ 0x20974: "han2", // 𠥴
+ 0x2097f: "shi2", // 𠥿
+ 0x20983: "sa4", // 𠦃
+ 0x20988: "bi4", // 𠦈
+ 0x2098a: "han2", // 𠦊
+ 0x2098b: "jing4", // 𠦋
+ 0x2098c: "xi4", // 𠦌
+ 0x2098e: "qin4", // 𠦎
+ 0x2098f: "cuo2", // 𠦏
+ 0x20990: "ci4", // 𠦐
+ 0x20992: "ban1", // 𠦒
+ 0x20997: "dui1", // 𠦗
+ 0x2099c: "xi4", // 𠦜
+ 0x209a7: "zhi1", // 𠦧
+ 0x209a8: "luan4", // 𠦨
+ 0x209aa: "hu1", // 𠦪
+ 0x209ab: "ji2", // 𠦫
+ 0x209ac: "guai1", // 𠦬
+ 0x209b2: "pang1", // 𠦲
+ 0x209c0: "zhu1", // 𠧀
+ 0x209c5: "bi3", // 𠧅
+ 0x209c7: "yu2", // 𠧇
+ 0x209d2: "qi3", // 𠧒
+ 0x209d5: "he2", // 𠧕
+ 0x209d6: "chu3", // 𠧖
+ 0x209d9: "shao4", // 𠧙
+ 0x209da: "chi4", // 𠧚
+ 0x209db: "bo2", // 𠧛
+ 0x209df: "reng2", // 𠧟
+ 0x209e0: "you2", // 𠧠
+ 0x209e4: "nai3", // 𠧤
+ 0x209e9: "hui4", // 𠧩
+ 0x209ea: "tiao2", // 𠧪
+ 0x209eb: "ban3", // 𠧫
+ 0x209f0: "xu1", // 𠧰
+ 0x209f4: "you2", // 𠧴
+ 0x209f5: "chi4", // 𠧵
+ 0x209ff: "heng2", // 𠧿
+ 0x20a03: "wai4", // 𠨃
+ 0x20a06: "xie4", // 𠨆
+ 0x20a0a: "jue2", // 𠨊
+ 0x20a0c: "sui1", // 𠨌
+ 0x20a0d: "qing1", // 𠨍
+ 0x20a0e: "zhuan4", // 𠨎
+ 0x20a15: "ji4", // 𠨕
+ 0x20a18: "bi4", // 𠨘
+ 0x20a1a: "xi1", // 𠨚
+ 0x20a20: "ji2", // 𠨠
+ 0x20a22: "jun4", // 𠨢
+ 0x20a25: "liao2", // 𠨥
+ 0x20a26: "you1", // 𠨦
+ 0x20a2d: "ju2", // 𠨭
+ 0x20a32: "yue4", // 𠨲
+ 0x20a35: "bang4", // 𠨵
+ 0x20a38: "pi2", // 𠨸
+ 0x20a3b: "ze4", // 𠨻
+ 0x20a3e: "yi4", // 𠨾
+ 0x20a3f: "di3", // 𠨿
+ 0x20a42: "qie4", // 𠩂
+ 0x20a44: "suo3", // 𠩄
+ 0x20a46: "ci4", // 𠩆
+ 0x20a48: "zhu4", // 𠩈
+ 0x20a49: "yue4", // 𠩉
+ 0x20a4f: "jiao1", // 𠩏
+ 0x20a54: "shi2", // 𠩔
+ 0x20a57: "yi2", // 𠩗
+ 0x20a58: "xia2", // 𠩘
+ 0x20a60: "yuan2", // 𠩠
+ 0x20a65: "guo2", // 𠩥
+ 0x20a67: "ke4", // 𠩧
+ 0x20a6a: "cui4", // 𠩪
+ 0x20a6b: "yi4", // 𠩫
+ 0x20a75: "li4", // 𠩵
+ 0x20a77: "dian3", // 𠩷
+ 0x20a7a: "xi1", // 𠩺
+ 0x20a7f: "bi4", // 𠩿
+ 0x20a82: "bian3", // 𠪂
+ 0x20a83: "mei2", // 𠪃
+ 0x20a84: "li4", // 𠪄
+ 0x20a87: "sou3", // 𠪇
+ 0x20a90: "liu2", // 𠪐
+ 0x20a91: "gui4", // 𠪑
+ 0x20a92: "ke4", // 𠪒
+ 0x20a97: "yi2", // 𠪗
+ 0x20a99: "xi3", // 𠪙
+ 0x20a9a: "yin2", // 𠪚
+ 0x20a9f: "ke4", // 𠪟
+ 0x20aa3: "she4", // 𠪣
+ 0x20aa7: "wo3", // 𠪧
+ 0x20aae: "pi4", // 𠪮
+ 0x20ab6: "yue4", // 𠪶
+ 0x20ab7: "hong2", // 𠪷
+ 0x20aba: "li4", // 𠪺
+ 0x20abb: "fu4", // 𠪻
+ 0x20ac3: "jue2", // 𠫃
+ 0x20ac4: "xian1", // 𠫄
+ 0x20ac9: "dian1", // 𠫉
+ 0x20acc: "li4", // 𠫌
+ 0x20ad3: "tu1", // 𠫓
+ 0x20ad8: "jian1", // 𠫘
+ 0x20adb: "bai3", // 𠫛
+ 0x20adc: "di4", // 𠫜
+ 0x20add: "zhang3", // 𠫝
+ 0x20ae3: "yu4", // 𠫣
+ 0x20ae8: "dui4", // 𠫨
+ 0x20aed: "can1", // 𠫭
+ 0x20aee: "tu2", // 𠫮
+ 0x20af6: "tan1", // 𠫶
+ 0x20af7: "ji2", // 𠫷
+ 0x20af8: "qi2", // 𠫸
+ 0x20af9: "shan4", // 𠫹
+ 0x20afa: "nian2", // 𠫺
+ 0x20b06: "guan4", // 𠬆
+ 0x20b08: "bi3", // 𠬈
+ 0x20b0b: "xing1", // 𠬋
+ 0x20b13: "zhen3", // 𠬓
+ 0x20b19: "sa1", // 𠬙
+ 0x20b1b: "mo4", // 𠬛
+ 0x20b1d: "fu2", // 𠬝
+ 0x20b22: "tao1", // 𠬢
+ 0x20b23: "bang4", // 𠬣
+ 0x20b2a: "biao4", // 𠬪
+ 0x20b2c: "xi1", // 𠬬
+ 0x20b2e: "jie2", // 𠬮
+ 0x20b36: "jin4", // 𠬶
+ 0x20b3e: "qian1", // 𠬾
+ 0x20b48: "si4", // 𠭈
+ 0x20b49: "jing3", // 𠭉
+ 0x20b4b: "chi3", // 𠭋
+ 0x20b57: "jing3", // 𠭗
+ 0x20b65: "sui4", // 𠭥
+ 0x20b6f: "zha1", // 𠭯
+ 0x20b70: "li2", // 𠭰
+ 0x20b74: "zhuo1", // 𠭴
+ 0x20b79: "bian4", // 𠭹
+ 0x20b7f: "tun2", // 𠭿
+ 0x20b83: "bi4", // 𠮃
+ 0x20b86: "fei4", // 𠮆
+ 0x20b8a: "de2", // 𠮊
+ 0x20b8c: "zhu2", // 𠮌
+ 0x20b91: "ju1", // 𠮑
+ 0x20b99: "yi3", // 𠮙
+ 0x20b9c: "ya4", // 𠮜
+ 0x20b9f: "chi4", // 𠮟
+ 0x20ba0: "gua3", // 𠮠
+ 0x20ba1: "zhi3", // 𠮡
+ 0x20ba8: "reng2", // 𠮨
+ 0x20bab: "you1", // 𠮫
+ 0x20bad: "bo2", // 𠮭
+ 0x20baf: "ji3", // 𠮯
+ 0x20bb0: "pin3", // 𠮰
+ 0x20bb3: "ying1", // 𠮳
+ 0x20bb4: "yang1", // 𠮴
+ 0x20bb5: "mang4", // 𠮵
+ 0x20bbd: "long4", // 𠮽
+ 0x20bbe: "n4", // 𠮾
+ 0x20bbf: "sa5", // 𠮿
+ 0x20bc0: "chuan1", // 𠯀
+ 0x20bc2: "ci2", // 𠯂
+ 0x20bc3: "wu3", // 𠯃
+ 0x20bc4: "ren4", // 𠯄
+ 0x20bc8: "dai4", // 𠯈
+ 0x20bc9: "ji2", // 𠯉
+ 0x20bcb: "yi3", // 𠯋
+ 0x20bcd: "ran2", // 𠯍
+ 0x20bd0: "huo4", // 𠯐
+ 0x20bd1: "gua1", // 𠯑
+ 0x20bd3: "zhe2", // 𠯓
+ 0x20bd4: "pi4", // 𠯔
+ 0x20bd7: "za1", // 𠯗
+ 0x20bd8: "ban4", // 𠯘
+ 0x20bd9: "jie2", // 𠯙
+ 0x20bdc: "hou1", // 𠯜
+ 0x20bdf: "xian4", // 𠯟
+ 0x20be0: "hui1", // 𠯠
+ 0x20be9: "zha1", // 𠯩
+ 0x20bea: "dai1", // 𠯪
+ 0x20beb: "ge1", // 𠯫
+ 0x20bed: "pi4", // 𠯭
+ 0x20bef: "pian4", // 𠯯
+ 0x20bf0: "shi2", // 𠯰
+ 0x20bf1: "liang3", // 𠯱
+ 0x20bf2: "yue4", // 𠯲
+ 0x20bf3: "hu4", // 𠯳
+ 0x20bf4: "bian4", // 𠯴
+ 0x20bf7: "reng2", // 𠯷
+ 0x20bf9: "reng2", // 𠯹
+ 0x20c04: "yi1", // 𠰄
+ 0x20c05: "zhi1", // 𠰅
+ 0x20c07: "jin1", // 𠰇
+ 0x20c08: "weng1", // 𠰈
+ 0x20c09: "chao1", // 𠰉
+ 0x20c0b: "qiu1", // 𠰋
+ 0x20c0d: "zhu3", // 𠰍
+ 0x20c0f: "zha2", // 𠰏
+ 0x20c10: "po3", // 𠰐
+ 0x20c11: "an4", // 𠰑
+ 0x20c13: "he2", // 𠰓
+ 0x20c15: "chu1", // 𠰕
+ 0x20c16: "yan2", // 𠰖
+ 0x20c1a: "shi4", // 𠰚
+ 0x20c1b: "hu4", // 𠰛
+ 0x20c1c: "e4", // 𠰜
+ 0x20c34: "shi2", // 𠰴
+ 0x20c39: "tuo1", // 𠰹
+ 0x20c3a: "dai4", // 𠰺
+ 0x20c3b: "wai4", // 𠰻
+ 0x20c3c: "po1", // 𠰼
+ 0x20c3d: "rong3", // 𠰽
+ 0x20c3e: "ju1", // 𠰾
+ 0x20c40: "bo1", // 𠱀
+ 0x20c50: "yu3", // 𠱐
+ 0x20c51: "dou1", // 𠱑
+ 0x20c53: "gui3", // 𠱓
+ 0x20c54: "shou4", // 𠱔
+ 0x20c57: "suo1", // 𠱗
+ 0x20c58: "ni4", // 𠱘
+ 0x20c59: "zhou1", // 𠱙
+ 0x20c5a: "long4", // 𠱚
+ 0x20c5b: "bing3", // 𠱛
+ 0x20c5c: "zun4", // 𠱜
+ 0x20c5d: "ye4", // 𠱝
+ 0x20c5e: "ran3", // 𠱞
+ 0x20c60: "ling2", // 𠱠
+ 0x20c61: "sa4", // 𠱡
+ 0x20c64: "lei3", // 𠱤
+ 0x20c65: "e4", // 𠱥
+ 0x20c67: "zhong4", // 𠱧
+ 0x20c68: "ji3", // 𠱨
+ 0x20c6b: "e4", // 𠱫
+ 0x20c6f: "zuo4", // 𠱯
+ 0x20c72: "na4", // 𠱲
+ 0x20c73: "yun3", // 𠱳
+ 0x20c8a: "xie4", // 𠲊
+ 0x20c8b: "zui3", // 𠲋
+ 0x20c8c: "shu4", // 𠲌
+ 0x20c8d: "diu1", // 𠲍
+ 0x20c8e: "fa5", // 𠲎
+ 0x20c8f: "ren3", // 𠲏
+ 0x20c91: "bang1", // 𠲑
+ 0x20c92: "han2", // 𠲒
+ 0x20c93: "hong2", // 𠲓
+ 0x20c94: "yi1", // 𠲔
+ 0x20c96: "yi1", // 𠲖
+ 0x20c99: "ke1", // 𠲙
+ 0x20c9a: "yi4", // 𠲚
+ 0x20c9b: "hui2", // 𠲛
+ 0x20c9c: "zheng1", // 𠲜
+ 0x20cae: "jing4", // 𠲮
+ 0x20cb1: "ge2", // 𠲱
+ 0x20cb4: "nou2", // 𠲴
+ 0x20cb5: "qie4", // 𠲵
+ 0x20cb7: "die2", // 𠲷
+ 0x20cb9: "ji4", // 𠲹
+ 0x20cba: "yi4", // 𠲺
+ 0x20cbb: "yi2", // 𠲻
+ 0x20cbd: "fu2", // 𠲽
+ 0x20cbe: "shuo4", // 𠲾
+ 0x20cbf: "shuo4", // 𠲿
+ 0x20cc0: "yong3", // 𠳀
+ 0x20cc1: "ken3", // 𠳁
+ 0x20cc2: "hua2", // 𠳂
+ 0x20cc3: "hong4", // 𠳃
+ 0x20cc7: "he2", // 𠳇
+ 0x20cca: "he1", // 𠳊
+ 0x20ccb: "qian3", // 𠳋
+ 0x20ccc: "qia4", // 𠳌
+ 0x20cce: "si4", // 𠳎
+ 0x20cd0: "bang1", // 𠳐
+ 0x20cec: "jing1", // 𠳬
+ 0x20ced: "ke4", // 𠳭
+ 0x20cf3: "ai1", // 𠳳
+ 0x20cf4: "lou2", // 𠳴
+ 0x20cf6: "tu1", // 𠳶
+ 0x20cf9: "chuang2", // 𠳹
+ 0x20cfc: "song4", // 𠳼
+ 0x20cfd: "cheng2", // 𠳽
+ 0x20cff: "wei1", // 𠳿
+ 0x20d02: "nu3", // 𠴂
+ 0x20d04: "jiu3", // 𠴄
+ 0x20d07: "bin1", // 𠴇
+ 0x20d21: "xiao4", // 𠴡
+ 0x20d22: "sheng1", // 𠴢
+ 0x20d23: "hou3", // 𠴣
+ 0x20d26: "zhu4", // 𠴦
+ 0x20d28: "guan1", // 𠴨
+ 0x20d29: "ji1", // 𠴩
+ 0x20d2b: "ji4", // 𠴫
+ 0x20d2d: "xi1", // 𠴭
+ 0x20d2f: "she4", // 𠴯
+ 0x20d30: "ou3", // 𠴰
+ 0x20d31: "hu2", // 𠴱
+ 0x20d32: "ta4", // 𠴲
+ 0x20d33: "xiao2", // 𠴳
+ 0x20d35: "zao4", // 𠴵
+ 0x20d38: "bo4", // 𠴸
+ 0x20d39: "qi4", // 𠴹
+ 0x20d3a: "wa1", // 𠴺
+ 0x20d3b: "tuo1", // 𠴻
+ 0x20d3c: "dao4", // 𠴼
+ 0x20d3e: "na4", // 𠴾
+ 0x20d60: "zhai1", // 𠵠
+ 0x20d63: "ya4", // 𠵣
+ 0x20d66: "wu3", // 𠵦
+ 0x20d67: "zhen2", // 𠵧
+ 0x20d68: "de5", // 𠵨
+ 0x20d69: "he1", // 𠵩
+ 0x20d6b: "ang1", // 𠵫
+ 0x20d6c: "pi2", // 𠵬
+ 0x20d6d: "se4", // 𠵭
+ 0x20d6e: "fen3", // 𠵮
+ 0x20d6f: "gua1", // 𠵯
+ 0x20d73: "po3", // 𠵳
+ 0x20d77: "xuan4", // 𠵷
+ 0x20d78: "han1", // 𠵸
+ 0x20d79: "gang1", // 𠵹
+ 0x20d7a: "ba1", // 𠵺
+ 0x20d7b: "zong1", // 𠵻
+ 0x20d7c: "meng4", // 𠵼
+ 0x20d7e: "huo4", // 𠵾
+ 0x20da7: "dian1", // 𠶧
+ 0x20da8: "xi1", // 𠶨
+ 0x20dab: "da4", // 𠶫
+ 0x20dac: "nang4", // 𠶬
+ 0x20db0: "diao1", // 𠶰
+ 0x20db1: "luo4", // 𠶱
+ 0x20db2: "ke4", // 𠶲
+ 0x20db7: "yi4", // 𠶷
+ 0x20db8: "jue2", // 𠶸
+ 0x20db9: "he2", // 𠶹
+ 0x20dbb: "ji2", // 𠶻
+ 0x20dbe: "he4", // 𠶾
+ 0x20dbf: "nie4", // 𠶿
+ 0x20dc0: "run3", // 𠷀
+ 0x20dc1: "qian2", // 𠷁
+ 0x20dc2: "dai4", // 𠷂
+ 0x20dc3: "shao1", // 𠷃
+ 0x20dc4: "ke4", // 𠷄
+ 0x20dc5: "zhu2", // 𠷅
+ 0x20dc7: "shi1", // 𠷇
+ 0x20dc8: "lv4", // 𠷈
+ 0x20dc9: "jia1", // 𠷉
+ 0x20dca: "pian2", // 𠷊
+ 0x20dcb: "hou4", // 𠷋
+ 0x20dcc: "ji1", // 𠷌
+ 0x20dcd: "ta4", // 𠷍
+ 0x20dce: "chou2", // 𠷎
+ 0x20dcf: "wo1", // 𠷏
+ 0x20dd0: "jing4", // 𠷐
+ 0x20dd1: "po1", // 𠷑
+ 0x20dd2: "zhai1", // 𠷒
+ 0x20dd3: "xin1", // 𠷓
+ 0x20dd6: "bian4", // 𠷖
+ 0x20dd9: "xu4", // 𠷙
+ 0x20dde: "gu1", // 𠷞
+ 0x20ddf: "jie4", // 𠷟
+ 0x20de2: "xian2", // 𠷢
+ 0x20df8: "e2", // 𠷸
+ 0x20dfa: "bo2", // 𠷺
+ 0x20dfb: "piao1", // 𠷻
+ 0x20dff: "za3", // 𠷿
+ 0x20e01: "pai4", // 𠸁
+ 0x20e02: "tu1", // 𠸂
+ 0x20e04: "ying1", // 𠸄
+ 0x20e2e: "xiang3", // 𠸮
+ 0x20e31: "nuo4", // 𠸱
+ 0x20e32: "ge1", // 𠸲
+ 0x20e33: "bo2", // 𠸳
+ 0x20e34: "xie4", // 𠸴
+ 0x20e38: "zhen1", // 𠸸
+ 0x20e39: "yu2", // 𠸹
+ 0x20e3a: "ni4", // 𠸺
+ 0x20e40: "xun4", // 𠹀
+ 0x20e41: "wa4", // 𠹁
+ 0x20e43: "ang4", // 𠹃
+ 0x20e44: "han4", // 𠹄
+ 0x20e45: "hong1", // 𠹅
+ 0x20e46: "dan1", // 𠹆
+ 0x20e48: "nuo2", // 𠹈
+ 0x20e4a: "cao3", // 𠹊
+ 0x20e4b: "ji2", // 𠹋
+ 0x20e4c: "neng3", // 𠹌
+ 0x20e4d: "yong3", // 𠹍
+ 0x20e4e: "xiao1", // 𠹎
+ 0x20e50: "chua3", // 𠹐
+ 0x20e51: "yao4", // 𠹑
+ 0x20e53: "ge2", // 𠹓
+ 0x20e54: "tang2", // 𠹔
+ 0x20e55: "bao4", // 𠹕
+ 0x20e56: "chan3", // 𠹖
+ 0x20e58: "xu4", // 𠹘
+ 0x20e5b: "hai2", // 𠹛
+ 0x20e5d: "chou2", // 𠹝
+ 0x20e5f: "jian3", // 𠹟
+ 0x20e60: "zuo1", // 𠹠
+ 0x20e64: "wei4", // 𠹤
+ 0x20e65: "da1", // 𠹥
+ 0x20e66: "pi1", // 𠹦
+ 0x20e90: "huan4", // 𠺐
+ 0x20e92: "xi1", // 𠺒
+ 0x20e94: "pen4", // 𠺔
+ 0x20e95: "liu1", // 𠺕
+ 0x20e96: "mu3", // 𠺖
+ 0x20e97: "mie1", // 𠺗
+ 0x20e98: "lang4", // 𠺘
+ 0x20e99: "tui4", // 𠺙
+ 0x20e9a: "ban1", // 𠺚
+ 0x20e9d: "ge1", // 𠺝
+ 0x20e9f: "ku4", // 𠺟
+ 0x20ea2: "jia1", // 𠺢
+ 0x20ea3: "bo1", // 𠺣
+ 0x20ecd: "huan4", // 𠻍
+ 0x20ecf: "zu2", // 𠻏
+ 0x20ed0: "luo4", // 𠻐
+ 0x20ed7: "li2", // 𠻗
+ 0x20ed9: "he2", // 𠻙
+ 0x20eda: "mo2", // 𠻚
+ 0x20edc: "shui4", // 𠻜
+ 0x20edd: "shen1", // 𠻝
+ 0x20ede: "kang3", // 𠻞
+ 0x20edf: "chi4", // 𠻟
+ 0x20ee0: "ling2", // 𠻠
+ 0x20ee1: "luo3", // 𠻡
+ 0x20ee4: "yan3", // 𠻤
+ 0x20ee5: "zhao4", // 𠻥
+ 0x20ee6: "chua3", // 𠻦
+ 0x20ee7: "gu3", // 𠻧
+ 0x20ee8: "qin3", // 𠻨
+ 0x20eea: "tan2", // 𠻪
+ 0x20eeb: "fen4", // 𠻫
+ 0x20eec: "tu2", // 𠻬
+ 0x20ef1: "ling2", // 𠻱
+ 0x20ef4: "lang3", // 𠻴
+ 0x20f16: "lan2", // 𠼖
+ 0x20f17: "zan4", // 𠼗
+ 0x20f18: "wu4", // 𠼘
+ 0x20f1d: "li2", // 𠼝
+ 0x20f1e: "a1", // 𠼞
+ 0x20f1f: "lve4", // 𠼟
+ 0x20f20: "zhi3", // 𠼠
+ 0x20f21: "chou2", // 𠼡
+ 0x20f22: "jiang4", // 𠼢
+ 0x20f24: "jian1", // 𠼤
+ 0x20f29: "lun2", // 𠼩
+ 0x20f2a: "yi2", // 𠼪
+ 0x20f2c: "shang1", // 𠼬
+ 0x20f3b: "ji1", // 𠼻
+ 0x20f5c: "yi4", // 𠽜
+ 0x20f5d: "nin2", // 𠽝
+ 0x20f61: "hui4", // 𠽡
+ 0x20f63: "zha1", // 𠽣
+ 0x20f66: "han3", // 𠽦
+ 0x20f68: "yin3", // 𠽨
+ 0x20f69: "bi4", // 𠽩
+ 0x20f6a: "an1", // 𠽪
+ 0x20f6b: "xia1", // 𠽫
+ 0x20f6c: "ni2", // 𠽬
+ 0x20f70: "di1", // 𠽰
+ 0x20f71: "jian3", // 𠽱
+ 0x20f72: "pan2", // 𠽲
+ 0x20f75: "yu4", // 𠽵
+ 0x20f76: "chuai4", // 𠽶
+ 0x20f77: "za1", // 𠽷
+ 0x20f79: "cha2", // 𠽹
+ 0x20f7b: "zhe2", // 𠽻
+ 0x20f7c: "se4", // 𠽼
+ 0x20f7e: "pen1", // 𠽾
+ 0x20f7f: "gu1", // 𠽿
+ 0x20f80: "zhe2", // 𠾀
+ 0x20f86: "li2", // 𠾆
+ 0x20f87: "dou1", // 𠾇
+ 0x20f89: "chou2", // 𠾉
+ 0x20f8b: "zui3", // 𠾋
+ 0x20f8c: "po4", // 𠾌
+ 0x20f8f: "she1", // 𠾏
+ 0x20f90: "long2", // 𠾐
+ 0x20fa2: "shu4", // 𠾢
+ 0x20fa4: "jin4", // 𠾤
+ 0x20fa5: "ling2", // 𠾥
+ 0x20fa8: "kang1", // 𠾨
+ 0x20fa9: "la4", // 𠾩
+ 0x20fab: "xu1", // 𠾫
+ 0x20fac: "jin4", // 𠾬
+ 0x20fae: "chuan1", // 𠾮
+ 0x20fb2: "yue4", // 𠾲
+ 0x20fc6: "mai3", // 𠿆
+ 0x20fc7: "xie4", // 𠿇
+ 0x20fc8: "jiu1", // 𠿈
+ 0x20fc9: "ji4", // 𠿉
+ 0x20fcb: "yue4", // 𠿋
+ 0x20fcf: "jian1", // 𠿏
+ 0x20fd1: "han2", // 𠿑
+ 0x20fd3: "sa4", // 𠿓
+ 0x20fd4: "hui4", // 𠿔
+ 0x20fd5: "qiao4", // 𠿕
+ 0x20fd7: "se4", // 𠿗
+ 0x20fd8: "zui3", // 𠿘
+ 0x20fdb: "lu3", // 𠿛
+ 0x20fdc: "hua4", // 𠿜
+ 0x20fdd: "chu1", // 𠿝
+ 0x20fde: "shan3", // 𠿞
+ 0x20fdf: "wo4", // 𠿟
+ 0x20fe0: "ji2", // 𠿠
+ 0x20fe1: "zhuo2", // 𠿡
+ 0x20fe2: "xian2", // 𠿢
+ 0x20fe3: "yi1", // 𠿣
+ 0x20fe4: "guo2", // 𠿤
+ 0x20fe5: "kui4", // 𠿥
+ 0x21011: "zhou1", // 𡀑
+ 0x21014: "lu4", // 𡀔
+ 0x21016: "bo1", // 𡀖
+ 0x21017: "shi2", // 𡀗
+ 0x21018: "ying4", // 𡀘
+ 0x21019: "ku1", // 𡀙
+ 0x21039: "zhi4", // 𡀹
+ 0x2103a: "xie2", // 𡀺
+ 0x2103d: "ye4", // 𡀽
+ 0x2103e: "e4", // 𡀾
+ 0x2103f: "lv4", // 𡀿
+ 0x21040: "han4", // 𡁀
+ 0x21041: "ye4", // 𡁁
+ 0x21046: "luo4", // 𡁆
+ 0x21047: "chuo4", // 𡁇
+ 0x21048: "fan4", // 𡁈
+ 0x21049: "zhi2", // 𡁉
+ 0x2104a: "ying4", // 𡁊
+ 0x2104b: "wen3", // 𡁋
+ 0x2104c: "wa1", // 𡁌
+ 0x2104d: "ai4", // 𡁍
+ 0x2104e: "yu2", // 𡁎
+ 0x21051: "hua1", // 𡁑
+ 0x21053: "lie4", // 𡁓
+ 0x21054: "jing1", // 𡁔
+ 0x21055: "za2", // 𡁕
+ 0x21067: "zang1", // 𡁧
+ 0x21068: "dui4", // 𡁨
+ 0x2106a: "ji4", // 𡁪
+ 0x2106e: "wo1", // 𡁮
+ 0x21070: "ji2", // 𡁰
+ 0x21071: "xi1", // 𡁱
+ 0x21073: "zhan4", // 𡁳
+ 0x21074: "tuan2", // 𡁴
+ 0x2108a: "yu2", // 𡂊
+ 0x2108f: "lie4", // 𡂏
+ 0x21092: "zhi4", // 𡂒
+ 0x21093: "shi1", // 𡂓
+ 0x21095: "lao3", // 𡂕
+ 0x21096: "lai4", // 𡂖
+ 0x21097: "wei3", // 𡂗
+ 0x21098: "pao2", // 𡂘
+ 0x21099: "chi2", // 𡂙
+ 0x2109a: "ying3", // 𡂚
+ 0x2109b: "dou4", // 𡂛
+ 0x2109d: "dou4", // 𡂝
+ 0x2109f: "bao4", // 𡂟
+ 0x210a0: "qie4", // 𡂠
+ 0x210a1: "shu4", // 𡂡
+ 0x210a3: "zhi2", // 𡂣
+ 0x210a9: "lie4", // 𡂩
+ 0x210ab: "peng2", // 𡂫
+ 0x210ad: "zhe1", // 𡂭
+ 0x210bf: "ou1", // 𡂿
+ 0x210c2: "xie4", // 𡃂
+ 0x210c3: "ji2", // 𡃃
+ 0x210c4: "lai4", // 𡃄
+ 0x210c5: "ying2", // 𡃅
+ 0x210c6: "ceng1", // 𡃆
+ 0x210d6: "le1", // 𡃖
+ 0x210dd: "lun4", // 𡃝
+ 0x210e1: "long2", // 𡃡
+ 0x210e2: "xi4", // 𡃢
+ 0x210e6: "lin4", // 𡃦
+ 0x210e9: "gui1", // 𡃩
+ 0x210f3: "xing1", // 𡃳
+ 0x210f7: "li2", // 𡃷
+ 0x210f8: "ci1", // 𡃸
+ 0x21107: "qing3", // 𡄇
+ 0x21111: "jian1", // 𡄑
+ 0x21112: "dao4", // 𡄒
+ 0x21113: "jian3", // 𡄓
+ 0x21114: "qing4", // 𡄔
+ 0x21115: "xie4", // 𡄕
+ 0x21116: "ying4", // 𡄖
+ 0x2111f: "ha2", // 𡄟
+ 0x21121: "zhe5", // 𡄡
+ 0x21122: "she1", // 𡄢
+ 0x21123: "mi2", // 𡄣
+ 0x21124: "huan2", // 𡄤
+ 0x21131: "cu4", // 𡄱
+ 0x21132: "ru2", // 𡄲
+ 0x21133: "sa3", // 𡄳
+ 0x21134: "huo4", // 𡄴
+ 0x21135: "yi1", // 𡄵
+ 0x21137: "di1", // 𡄷
+ 0x21139: "luan4", // 𡄹
+ 0x2113b: "yi4", // 𡄻
+ 0x21142: "bo4", // 𡅂
+ 0x21143: "pang2", // 𡅃
+ 0x21144: "tan2", // 𡅄
+ 0x21145: "e2", // 𡅅
+ 0x21146: "zang1", // 𡅆
+ 0x21147: "cong2", // 𡅇
+ 0x21153: "zhai1", // 𡅓
+ 0x21155: "xi3", // 𡅕
+ 0x21156: "mang3", // 𡅖
+ 0x21158: "la4", // 𡅘
+ 0x21159: "yun4", // 𡅙
+ 0x21161: "e4", // 𡅡
+ 0x21165: "die2", // 𡅥
+ 0x2116d: "guan1", // 𡅭
+ 0x21171: "huan4", // 𡅱
+ 0x21175: "shi4", // 𡅵
+ 0x21176: "jian3", // 𡅶
+ 0x21179: "zhan1", // 𡅹
+ 0x2117a: "ji2", // 𡅺
+ 0x2117b: "huan4", // 𡅻
+ 0x21185: "wan4", // 𡆅
+ 0x21186: "luo3", // 𡆆
+ 0x2118f: "dou4", // 𡆏
+ 0x21195: "lian4", // 𡆕
+ 0x211a3: "nie4", // 𡆣
+ 0x211a4: "nan3", // 𡆤
+ 0x211a5: "jiu4", // 𡆥
+ 0x211a6: "yue4", // 𡆦
+ 0x211a9: "yao1", // 𡆩
+ 0x211aa: "chuang1", // 𡆪
+ 0x211ae: "can3", // 𡆮
+ 0x211af: "li3", // 𡆯
+ 0x211b0: "dun4", // 𡆰
+ 0x211b1: "nan3", // 𡆱
+ 0x211b2: "nan3", // 𡆲
+ 0x211b8: "ri4", // 𡆸
+ 0x211bd: "yue4", // 𡆽
+ 0x211c0: "you2", // 𡇀
+ 0x211c2: "yin1", // 𡇂
+ 0x211c4: "guo2", // 𡇄
+ 0x211c8: "dang4", // 𡇈
+ 0x211d1: "zhen1", // 𡇑
+ 0x211d2: "mi2", // 𡇒
+ 0x211d3: "die2", // 𡇓
+ 0x211d6: "zhen1", // 𡇖
+ 0x211da: "kua1", // 𡇚
+ 0x211dc: "han2", // 𡇜
+ 0x211dd: "song4", // 𡇝
+ 0x211de: "he2", // 𡇞
+ 0x211df: "ji1", // 𡇟
+ 0x211e0: "zhe2", // 𡇠
+ 0x211e4: "bing3", // 𡇤
+ 0x211e6: "wei2", // 𡇦
+ 0x211e7: "tou1", // 𡇧
+ 0x211e9: "tu2", // 𡇩
+ 0x211ec: "gang1", // 𡇬
+ 0x211ed: "lou2", // 𡇭
+ 0x211ee: "quan2", // 𡇮
+ 0x211ef: "hun4", // 𡇯
+ 0x211f0: "zhuan3", // 𡇰
+ 0x211f1: "que4", // 𡇱
+ 0x211f3: "hong2", // 𡇳
+ 0x211f5: "dang4", // 𡇵
+ 0x211f6: "he2", // 𡇶
+ 0x211f7: "tai4", // 𡇷
+ 0x211f8: "guai1", // 𡇸
+ 0x211fa: "yu4", // 𡇺
+ 0x211fc: "ya4", // 𡇼
+ 0x211ff: "wan1", // 𡇿
+ 0x21200: "qun1", // 𡈀
+ 0x21205: "jue2", // 𡈅
+ 0x21206: "ou1", // 𡈆
+ 0x21209: "quan1", // 𡈉
+ 0x2120a: "zhi2", // 𡈊
+ 0x2120d: "ling2", // 𡈍
+ 0x2120e: "wu1", // 𡈎
+ 0x2120f: "xin4", // 𡈏
+ 0x21210: "da2", // 𡈐
+ 0x21212: "yuan1", // 𡈒
+ 0x21213: "yuan4", // 𡈓
+ 0x21217: "mo4", // 𡈗
+ 0x21219: "you2", // 𡈙
+ 0x2121e: "wu3", // 𡈞
+ 0x21220: "zhang1", // 𡈠
+ 0x21223: "xuan1", // 𡈣
+ 0x21226: "rao3", // 𡈦
+ 0x21227: "gun3", // 𡈧
+ 0x21228: "yu4", // 𡈨
+ 0x2122e: "xia2", // 𡈮
+ 0x2122f: "bian3", // 𡈯
+ 0x21230: "you2", // 𡈰
+ 0x21232: "yin1", // 𡈲
+ 0x21234: "xuan2", // 𡈴
+ 0x21235: "you2", // 𡈵
+ 0x21236: "lei2", // 𡈶
+ 0x2123c: "ting3", // 𡈼
+ 0x2123f: "zhen1", // 𡈿
+ 0x21244: "zai4", // 𡉄
+ 0x21245: "ga1", // 𡉅
+ 0x21246: "la2", // 𡉆
+ 0x21249: "que4", // 𡉉
+ 0x2124e: "ju2", // 𡉎
+ 0x21250: "chun1", // 𡉐
+ 0x21251: "da1", // 𡉑
+ 0x21252: "tun2", // 𡉒
+ 0x21253: "ai1", // 𡉓
+ 0x21257: "zi3", // 𡉗
+ 0x2125a: "huang2", // 𡉚
+ 0x2125b: "yi4", // 𡉛
+ 0x21269: "bao4", // 𡉩
+ 0x2126a: "chi2", // 𡉪
+ 0x2126d: "ri4", // 𡉭
+ 0x21274: "lu2", // 𡉴
+ 0x21277: "jie2", // 𡉷
+ 0x21278: "shi4", // 𡉸
+ 0x2127a: "zuan1", // 𡉺
+ 0x21281: "yi4", // 𡊁
+ 0x21284: "fen4", // 𡊄
+ 0x21285: "fen4", // 𡊅
+ 0x21289: "mo4", // 𡊉
+ 0x2128d: "shu4", // 𡊍
+ 0x2129b: "ao2", // 𡊛
+ 0x2129d: "pi3", // 𡊝
+ 0x2129e: "ping2", // 𡊞
+ 0x2129f: "po1", // 𡊟
+ 0x212a0: "jia2", // 𡊠
+ 0x212a1: "zhou2", // 𡊡
+ 0x212a3: "qiu1", // 𡊣
+ 0x212a7: "you3", // 𡊧
+ 0x212a8: "tan2", // 𡊨
+ 0x212ab: "rong3", // 𡊫
+ 0x212ad: "mi4", // 𡊭
+ 0x212b6: "yi4", // 𡊶
+ 0x212b8: "rong3", // 𡊸
+ 0x212bb: "lie4", // 𡊻
+ 0x212bc: "qiong2", // 𡊼
+ 0x212d9: "hui2", // 𡋙
+ 0x212da: "ji4", // 𡋚
+ 0x212df: "gao4", // 𡋟
+ 0x212e7: "you2", // 𡋧
+ 0x212e8: "cha1", // 𡋨
+ 0x212e9: "de2", // 𡋩
+ 0x212ea: "yin1", // 𡋪
+ 0x212ec: "yu4", // 𡋬
+ 0x212ed: "bei4", // 𡋭
+ 0x212ef: "bo2", // 𡋯
+ 0x21314: "qiao1", // 𡌔
+ 0x2131a: "cha3", // 𡌚
+ 0x2131c: "xin1", // 𡌜
+ 0x2131e: "chi2", // 𡌞
+ 0x21323: "zao4", // 𡌣
+ 0x21324: "kui2", // 𡌤
+ 0x21326: "fei4", // 𡌦
+ 0x21329: "ta1", // 𡌩
+ 0x2132a: "guai4", // 𡌪
+ 0x2132d: "duo1", // 𡌭
+ 0x21332: "gui1", // 𡌲
+ 0x21334: "zhi2", // 𡌴
+ 0x2134c: "chan3", // 𡍌
+ 0x2134d: "nao3", // 𡍍
+ 0x21350: "hu2", // 𡍐
+ 0x21352: "tao2", // 𡍒
+ 0x21361: "yi4", // 𡍡
+ 0x21364: "nie4", // 𡍤
+ 0x21365: "zhai4", // 𡍥
+ 0x21366: "huan2", // 𡍦
+ 0x21368: "du4", // 𡍨
+ 0x2136a: "qi4", // 𡍪
+ 0x2136b: "ce4", // 𡍫
+ 0x2136e: "chui2", // 𡍮
+ 0x21372: "da1", // 𡍲
+ 0x21376: "zhi4", // 𡍶
+ 0x21377: "geng4", // 𡍷
+ 0x2137b: "weng4", // 𡍻
+ 0x21389: "du4", // 𡎉
+ 0x2138d: "chi2", // 𡎍
+ 0x21391: "an4", // 𡎑
+ 0x21392: "kuo4", // 𡎒
+ 0x21394: "wo4", // 𡎔
+ 0x21398: "ying1", // 𡎘
+ 0x2139a: "pian3", // 𡎚
+ 0x213ab: "zha2", // 𡎫
+ 0x213ac: "zhua3", // 𡎬
+ 0x213ae: "su4", // 𡎮
+ 0x213b3: "ni4", // 𡎳
+ 0x213ba: "zhu2", // 𡎺
+ 0x213bb: "chan2", // 𡎻
+ 0x213be: "beng4", // 𡎾
+ 0x213bf: "ni2", // 𡎿
+ 0x213c0: "zhi2", // 𡏀
+ 0x213c1: "hui4", // 𡏁
+ 0x213d8: "xia4", // 𡏘
+ 0x213da: "zhi4", // 𡏚
+ 0x213db: "xi1", // 𡏛
+ 0x213de: "jiang3", // 𡏞
+ 0x213e9: "dui1", // 𡏩
+ 0x213ea: "fu1", // 𡏪
+ 0x213ed: "jiao1", // 𡏭
+ 0x213ee: "chao2", // 𡏮
+ 0x213ef: "bai4", // 𡏯
+ 0x213f5: "lie4", // 𡏵
+ 0x213fc: "ao2", // 𡏼
+ 0x2140b: "zao1", // 𡐋
+ 0x2140c: "chu4", // 𡐌
+ 0x2140f: "tuo3", // 𡐏
+ 0x21412: "hao2", // 𡐒
+ 0x21413: "kang1", // 𡐓
+ 0x21414: "yin2", // 𡐔
+ 0x21416: "xian4", // 𡐖
+ 0x2141d: "fu4", // 𡐝
+ 0x2141e: "bie1", // 𡐞
+ 0x21420: "kui1", // 𡐠
+ 0x21424: "qie4", // 𡐤
+ 0x21425: "sa4", // 𡐥
+ 0x2143f: "da1", // 𡐿
+ 0x21440: "ye3", // 𡑀
+ 0x21444: "zhang3", // 𡑄
+ 0x21446: "liang2", // 𡑆
+ 0x21448: "dui3", // 𡑈
+ 0x2144d: "lao2", // 𡑍
+ 0x2144e: "xun1", // 𡑎
+ 0x21458: "zhi4", // 𡑘
+ 0x2145a: "ku1", // 𡑚
+ 0x2145e: "sui4", // 𡑞
+ 0x2145f: "wo1", // 𡑟
+ 0x21463: "ku1", // 𡑣
+ 0x2146f: "jian3", // 𡑯
+ 0x21476: "jiang3", // 𡑶
+ 0x2147b: "zhui4", // 𡑻
+ 0x2147d: "shuang3", // 𡑽
+ 0x2147e: "yu2", // 𡑾
+ 0x21481: "sa4", // 𡒁
+ 0x21483: "yu4", // 𡒃
+ 0x21484: "lan3", // 𡒄
+ 0x2148a: "yu4", // 𡒊
+ 0x2148c: "qian3", // 𡒌
+ 0x2148d: "ju4", // 𡒍
+ 0x2148f: "lie4", // 𡒏
+ 0x21492: "shu2", // 𡒒
+ 0x21493: "xian4", // 𡒓
+ 0x21496: "gai4", // 𡒖
+ 0x214a2: "tai2", // 𡒢
+ 0x214a7: "tian3", // 𡒧
+ 0x214af: "meng4", // 𡒯
+ 0x214b1: "di2", // 𡒱
+ 0x214b3: "mian2", // 𡒳
+ 0x214be: "hui1", // 𡒾
+ 0x214c9: "duo4", // 𡓉
+ 0x214cd: "lie4", // 𡓍
+ 0x214d2: "lai4", // 𡓒
+ 0x214d3: "yin2", // 𡓓
+ 0x214d4: "lan3", // 𡓔
+ 0x214d6: "jiao1", // 𡓖
+ 0x214d8: "huo4", // 𡓘
+ 0x214e3: "guo1", // 𡓣
+ 0x214e6: "zhan4", // 𡓦
+ 0x214ed: "mi3", // 𡓭
+ 0x214f0: "kui1", // 𡓰
+ 0x214f7: "duo4", // 𡓷
+ 0x214ff: "yin2", // 𡓿
+ 0x21507: "lei4", // 𡔇
+ 0x21515: "gong4", // 𡔕
+ 0x2151b: "ting3", // 𡔛
+ 0x2151c: "yao2", // 𡔜
+ 0x2151e: "wang3", // 𡔞
+ 0x21523: "jie2", // 𡔣
+ 0x21528: "xiu1", // 𡔨
+ 0x2152a: "shu4", // 𡔪
+ 0x21531: "wei4", // 𡔱
+ 0x21534: "yu4", // 𡔴
+ 0x21541: "zhan1", // 𡕁
+ 0x21549: "ang1", // 𡕉
+ 0x2154f: "sang3", // 𡕏
+ 0x21550: "chou2", // 𡕐
+ 0x21552: "kua4", // 𡕒
+ 0x21556: "ju3", // 𡕖
+ 0x21557: "hai4", // 𡕗
+ 0x21562: "mian3", // 𡕢
+ 0x21567: "hang4", // 𡕧
+ 0x2156a: "chou2", // 𡕪
+ 0x2156e: "ling2", // 𡕮
+ 0x21570: "zong1", // 𡕰
+ 0x21589: "kun1", // 𡖉
+ 0x2158c: "zhong1", // 𡖌
+ 0x2158e: "zhao1", // 𡖎
+ 0x21590: "die3", // 𡖐
+ 0x21591: "gou3", // 𡖑
+ 0x21592: "yun2", // 𡖒
+ 0x21593: "dan1", // 𡖓
+ 0x21594: "nuo3", // 𡖔
+ 0x2159b: "bing3", // 𡖛
+ 0x2159d: "ran2", // 𡖝
+ 0x2159e: "chan1", // 𡖞
+ 0x215a2: "rong3", // 𡖢
+ 0x215a3: "yin1", // 𡖣
+ 0x215a4: "chan1", // 𡖤
+ 0x215a7: "zhi4", // 𡖧
+ 0x215aa: "guai4", // 𡖪
+ 0x215ab: "nuo2", // 𡖫
+ 0x215ac: "shen1", // 𡖬
+ 0x215af: "su4", // 𡖯
+ 0x215b2: "wo3", // 𡖲
+ 0x215b3: "chi3", // 𡖳
+ 0x215ba: "mie4", // 𡖺
+ 0x215bb: "zhi2", // 𡖻
+ 0x215be: "qi1", // 𡖾
+ 0x215c1: "gou1", // 𡗁
+ 0x215c6: "lou3", // 𡗆
+ 0x215c8: "zi1", // 𡗈
+ 0x215cd: "dang3", // 𡗍
+ 0x215cf: "xian3", // 𡗏
+ 0x215d1: "rou3", // 𡗑
+ 0x215d7: "peng3", // 𡗗
+ 0x215de: "xi1", // 𡗞
+ 0x215e2: "kua1", // 𡗢
+ 0x215e4: "gui4", // 𡗤
+ 0x215e5: "chun2", // 𡗥
+ 0x215e6: "jie4", // 𡗦
+ 0x215f2: "jie4", // 𡗲
+ 0x215f3: "xi1", // 𡗳
+ 0x215f5: "ku1", // 𡗵
+ 0x215f7: "gu1", // 𡗷
+ 0x215f8: "zha4", // 𡗸
+ 0x215f9: "fan4", // 𡗹
+ 0x215fc: "xie4", // 𡗼
+ 0x2160d: "huan2", // 𡘍
+ 0x2160f: "niao3", // 𡘏
+ 0x21610: "xi4", // 𡘐
+ 0x2161b: "cu1", // 𡘛
+ 0x2161d: "gun3", // 𡘝
+ 0x21621: "xi1", // 𡘡
+ 0x21627: "qia2", // 𡘧
+ 0x2162a: "mang1", // 𡘪
+ 0x2162d: "zhe2", // 𡘭
+ 0x21630: "juan4", // 𡘰
+ 0x21634: "bie1", // 𡘴
+ 0x21640: "bie1", // 𡙀
+ 0x21645: "quan2", // 𡙅
+ 0x2164b: "xi4", // 𡙋
+ 0x2164e: "jiao3", // 𡙎
+ 0x21650: "quan2", // 𡙐
+ 0x21651: "zhi3", // 𡙑
+ 0x21652: "tian1", // 𡙒
+ 0x21653: "kai1", // 𡙓
+ 0x21658: "san3", // 𡙘
+ 0x2165b: "zi1", // 𡙛
+ 0x21663: "jie2", // 𡙣
+ 0x2166a: "bie2", // 𡙪
+ 0x2166c: "dou4", // 𡙬
+ 0x2166d: "zui1", // 𡙭
+ 0x21676: "yan3", // 𡙶
+ 0x21681: "bi4", // 𡚁
+ 0x21685: "kuai3", // 𡚅
+ 0x21687: "yan4", // 𡚇
+ 0x21688: "wei2", // 𡚈
+ 0x2168a: "huan1", // 𡚊
+ 0x2168c: "hao4", // 𡚌
+ 0x21691: "gong1", // 𡚑
+ 0x21694: "meng2", // 𡚔
+ 0x21697: "lei3", // 𡚗
+ 0x21699: "di4", // 𡚙
+ 0x2169b: "bing3", // 𡚛
+ 0x2169c: "huan1", // 𡚜
+ 0x2169f: "wa1", // 𡚟
+ 0x216a0: "jue2", // 𡚠
+ 0x216a8: "chi4", // 𡚨
+ 0x216ad: "ba1", // 𡚭
+ 0x216ae: "jiu3", // 𡚮
+ 0x216b7: "di4", // 𡚷
+ 0x216b9: "zhang4", // 𡚹
+ 0x216bb: "da4", // 𡚻
+ 0x216bc: "shi2", // 𡚼
+ 0x216bd: "hao4", // 𡚽
+ 0x216cc: "ye4", // 𡛌
+ 0x216d7: "bi4", // 𡛗
+ 0x216d8: "pi3", // 𡛘
+ 0x216d9: "yao3", // 𡛙
+ 0x216dc: "di1", // 𡛜
+ 0x216dd: "can4", // 𡛝
+ 0x216de: "pin2", // 𡛞
+ 0x216df: "yue4", // 𡛟
+ 0x216e0: "qie1", // 𡛠
+ 0x216e1: "pi1", // 𡛡
+ 0x216f5: "tuo3", // 𡛵
+ 0x216f6: "xie4", // 𡛶
+ 0x216fd: "ye4", // 𡛽
+ 0x21700: "fan4", // 𡜀
+ 0x21701: "gua1", // 𡜁
+ 0x21702: "hu4", // 𡜂
+ 0x21703: "ru3", // 𡜃
+ 0x21709: "ran3", // 𡜉
+ 0x2170a: "fou3", // 𡜊
+ 0x2170b: "huang1", // 𡜋
+ 0x2171a: "ru2", // 𡜚
+ 0x21722: "mao3", // 𡜢
+ 0x21725: "dui1", // 𡜥
+ 0x21726: "hui4", // 𡜦
+ 0x21727: "xi4", // 𡜧
+ 0x21728: "xiu1", // 𡜨
+ 0x2172b: "ran3", // 𡜫
+ 0x2172c: "yi1", // 𡜬
+ 0x2172f: "zhe2", // 𡜯
+ 0x21731: "ji4", // 𡜱
+ 0x21732: "gao4", // 𡜲
+ 0x21733: "you4", // 𡜳
+ 0x21735: "pu1", // 𡜵
+ 0x21748: "chu4", // 𡝈
+ 0x21749: "cu1", // 𡝉
+ 0x2174a: "zhe2", // 𡝊
+ 0x2174b: "niao3", // 𡝋
+ 0x2174d: "qie4", // 𡝍
+ 0x21750: "cha2", // 𡝐
+ 0x21752: "niao3", // 𡝒
+ 0x21753: "sui1", // 𡝓
+ 0x21759: "cha2", // 𡝙
+ 0x2175a: "cheng2", // 𡝚
+ 0x2175b: "yao2", // 𡝛
+ 0x2175c: "du4", // 𡝜
+ 0x2175d: "wang1", // 𡝝
+ 0x2175f: "nian4", // 𡝟
+ 0x21760: "mi2", // 𡝠
+ 0x21766: "nou3", // 𡝦
+ 0x21767: "xi4", // 𡝧
+ 0x21769: "yao1", // 𡝩
+ 0x2176b: "chan1", // 𡝫
+ 0x21798: "xie4", // 𡞘
+ 0x21799: "mie4", // 𡞙
+ 0x2179a: "keng3", // 𡞚
+ 0x2179c: "cu4", // 𡞜
+ 0x2179e: "sheng3", // 𡞞
+ 0x2179f: "pan4", // 𡞟
+ 0x217a0: "hu4", // 𡞠
+ 0x217a2: "ke4", // 𡞢
+ 0x217a3: "xian4", // 𡞣
+ 0x217a5: "hou2", // 𡞥
+ 0x217a6: "qiong2", // 𡞦
+ 0x217a7: "zong1", // 𡞧
+ 0x217aa: "fu2", // 𡞪
+ 0x217ab: "nai4", // 𡞫
+ 0x217ad: "ni4", // 𡞭
+ 0x217af: "ku3", // 𡞯
+ 0x217be: "nen4", // 𡞾
+ 0x217cd: "ge1", // 𡟍
+ 0x217d1: "hou2", // 𡟑
+ 0x217d3: "ai1", // 𡟓
+ 0x217d5: "shi1", // 𡟕
+ 0x217de: "xiu1", // 𡟞
+ 0x217df: "cong1", // 𡟟
+ 0x217e0: "jiao1", // 𡟠
+ 0x217e2: "zha2", // 𡟢
+ 0x217e3: "xiao1", // 𡟣
+ 0x217e4: "lian4", // 𡟤
+ 0x217e5: "qu3", // 𡟥
+ 0x217e8: "shan3", // 𡟨
+ 0x217e9: "xie4", // 𡟩
+ 0x217eb: "gong4", // 𡟫
+ 0x217ec: "mie4", // 𡟬
+ 0x217ed: "chai2", // 𡟭
+ 0x217ef: "en1", // 𡟯
+ 0x217f3: "dou4", // 𡟳
+ 0x21806: "kou4", // 𡠆
+ 0x2180a: "tiao2", // 𡠊
+ 0x2180b: "shi1", // 𡠋
+ 0x2180f: "sang1", // 𡠏
+ 0x21812: "guan1", // 𡠒
+ 0x21816: "hao4", // 𡠖
+ 0x21817: "zhi4", // 𡠗
+ 0x21818: "yang4", // 𡠘
+ 0x21819: "tong1", // 𡠙
+ 0x2181a: "bi4", // 𡠚
+ 0x2181c: "mo2", // 𡠜
+ 0x2181e: "fu2", // 𡠞
+ 0x21825: "qiang2", // 𡠥
+ 0x21839: "zhi4", // 𡠹
+ 0x2183c: "sou1", // 𡠼
+ 0x2183f: "niao3", // 𡠿
+ 0x21840: "juan4", // 𡡀
+ 0x21842: "yang4", // 𡡂
+ 0x21844: "huang1", // 𡡄
+ 0x21848: "beng1", // 𡡈
+ 0x21849: "mo2", // 𡡉
+ 0x2184a: "chao2", // 𡡊
+ 0x2184e: "lv3", // 𡡎
+ 0x2184f: "shao1", // 𡡏
+ 0x21850: "bu3", // 𡡐
+ 0x21851: "zeng1", // 𡡑
+ 0x21852: "si1", // 𡡒
+ 0x21854: "zui4", // 𡡔
+ 0x21855: "yue1", // 𡡕
+ 0x21856: "zan1", // 𡡖
+ 0x21857: "luan3", // 𡡗
+ 0x21865: "qu2", // 𡡥
+ 0x2187a: "miao3", // 𡡺
+ 0x21880: "zhuan4", // 𡢀
+ 0x21888: "dang4", // 𡢈
+ 0x2188a: "yuan1", // 𡢊
+ 0x21892: "ju3", // 𡢒
+ 0x21895: "hui3", // 𡢕
+ 0x21896: "qi4", // 𡢖
+ 0x21898: "yun4", // 𡢘
+ 0x2189a: "man4", // 𡢚
+ 0x2189c: "mo3", // 𡢜
+ 0x218b1: "piao1", // 𡢱
+ 0x218b3: "jin4", // 𡢳
+ 0x218b9: "yao1", // 𡢹
+ 0x218c0: "chi4", // 𡣀
+ 0x218c1: "ni4", // 𡣁
+ 0x218c2: "sou1", // 𡣂
+ 0x218c8: "shu4", // 𡣈
+ 0x218cb: "piao1", // 𡣋
+ 0x218d4: "han4", // 𡣔
+ 0x218e0: "yao1", // 𡣠
+ 0x218e2: "nei2", // 𡣢
+ 0x218ea: "shi4", // 𡣪
+ 0x218ec: "yuan1", // 𡣬
+ 0x218ee: "cai4", // 𡣮
+ 0x218ef: "jie2", // 𡣯
+ 0x218f9: "xie4", // 𡣹
+ 0x218fd: "yan2", // 𡣽
+ 0x218fe: "xiao1", // 𡣾
+ 0x2190b: "xie4", // 𡤋
+ 0x2190c: "li4", // 𡤌
+ 0x2190e: "fan4", // 𡤎
+ 0x21917: "zhu4", // 𡤗
+ 0x21919: "na4", // 𡤙
+ 0x2191b: "zhuan3", // 𡤛
+ 0x2191e: "kui1", // 𡤞
+ 0x21922: "luo2", // 𡤢
+ 0x2192b: "qia1", // 𡤫
+ 0x21936: "wan1", // 𡤶
+ 0x2193d: "shu3", // 𡤽
+ 0x2193f: "cheng4", // 𡤿
+ 0x21941: "yi4", // 𡥁
+ 0x21946: "hao3", // 𡥆
+ 0x21948: "jiao4", // 𡥈
+ 0x2194b: "hui4", // 𡥋
+ 0x2194d: "xiao4", // 𡥍
+ 0x2194e: "ci2", // 𡥎
+ 0x2195e: "ji4", // 𡥞
+ 0x21966: "ni3", // 𡥦
+ 0x21968: "ni3", // 𡥨
+ 0x21969: "ti3", // 𡥩
+ 0x21976: "ju4", // 𡥶
+ 0x21978: "ming4", // 𡥸
+ 0x2197d: "li2", // 𡥽
+ 0x2197f: "zhong4", // 𡥿
+ 0x21981: "xu4", // 𡦁
+ 0x21983: "qiong2", // 𡦃
+ 0x21984: "fu2", // 𡦄
+ 0x21986: "bin4", // 𡦆
+ 0x2198a: "ji4", // 𡦊
+ 0x2198d: "qi2", // 𡦍
+ 0x2198e: "xi4", // 𡦎
+ 0x21994: "deng4", // 𡦔
+ 0x21995: "er2", // 𡦕
+ 0x2199b: "shu2", // 𡦛
+ 0x2199c: "tong2", // 𡦜
+ 0x2199d: "xiao2", // 𡦝
+ 0x2199f: "pi2", // 𡦟
+ 0x219a8: "dan3", // 𡦨
+ 0x219aa: "ji2", // 𡦪
+ 0x219b3: "xiao4", // 𡦳
+ 0x219b7: "cong2", // 𡦷
+ 0x219bb: "bin1", // 𡦻
+ 0x219bc: "rong3", // 𡦼
+ 0x219cd: "mian4", // 𡧍
+ 0x219d2: "mian4", // 𡧒
+ 0x219d4: "shu1", // 𡧔
+ 0x219d5: "xiao2", // 𡧕
+ 0x219d6: "bao3", // 𡧖
+ 0x219d7: "wa4", // 𡧗
+ 0x219d9: "pao4", // 𡧙
+ 0x219e3: "gai3", // 𡧣
+ 0x219e5: "hu1", // 𡧥
+ 0x219e6: "heng2", // 𡧦
+ 0x219e8: "zhu2", // 𡧨
+ 0x219e9: "guai1", // 𡧩
+ 0x219ed: "gui4", // 𡧭
+ 0x219f9: "dai4", // 𡧹
+ 0x219fc: "bin1", // 𡧼
+ 0x219fd: "huang3", // 𡧽
+ 0x21a00: "cha2", // 𡨀
+ 0x21a04: "xia4", // 𡨄
+ 0x21a05: "ju2", // 𡨅
+ 0x21a07: "yao3", // 𡨇
+ 0x21a16: "fen3", // 𡨖
+ 0x21a17: "zao4", // 𡨗
+ 0x21a1b: "feng1", // 𡨛
+ 0x21a22: "ju1", // 𡨢
+ 0x21a23: "yu4", // 𡨣
+ 0x21a29: "hun1", // 𡨩
+ 0x21a32: "jie2", // 𡨲
+ 0x21a33: "xiong4", // 𡨳
+ 0x21a35: "nai4", // 𡨵
+ 0x21a3b: "nou3", // 𡨻
+ 0x21a3d: "sheng3", // 𡨽
+ 0x21a3f: "yu4", // 𡨿
+ 0x21a42: "huan2", // 𡩂
+ 0x21a43: "geng3", // 𡩃
+ 0x21a44: "wan3", // 𡩄
+ 0x21a46: "tuo2", // 𡩆
+ 0x21a47: "qiao1", // 𡩇
+ 0x21a58: "yin4", // 𡩘
+ 0x21a5a: "jia1", // 𡩚
+ 0x21a61: "suo3", // 𡩡
+ 0x21a63: "jie2", // 𡩣
+ 0x21a64: "xi1", // 𡩤
+ 0x21a65: "weng3", // 𡩥
+ 0x21a69: "mang2", // 𡩩
+ 0x21a76: "yang2", // 𡩶
+ 0x21a78: "yao2", // 𡩸
+ 0x21a7d: "mang2", // 𡩽
+ 0x21a7e: "ou1", // 𡩾
+ 0x21a81: "an2", // 𡪁
+ 0x21a85: "lou4", // 𡪅
+ 0x21a91: "e4", // 𡪑
+ 0x21a92: "zi3", // 𡪒
+ 0x21a97: "e4", // 𡪗
+ 0x21a99: "an4", // 𡪙
+ 0x21a9e: "huo4", // 𡪞
+ 0x21aa0: "ceng2", // 𡪠
+ 0x21ab0: "xiong4", // 𡪰
+ 0x21ab1: "ji4", // 𡪱
+ 0x21ab3: "zuo2", // 𡪳
+ 0x21ab5: "qi2", // 𡪵
+ 0x21aba: "zheng1", // 𡪺
+ 0x21ac0: "ji1", // 𡫀
+ 0x21ac1: "qi1", // 𡫁
+ 0x21ac2: "juan3", // 𡫂
+ 0x21ac3: "ning2", // 𡫃
+ 0x21adf: "se4", // 𡫟
+ 0x21ae5: "he4", // 𡫥
+ 0x21ae6: "rong3", // 𡫦
+ 0x21ae7: "qin3", // 𡫧
+ 0x21aec: "ju1", // 𡫬
+ 0x21aef: "li4", // 𡫯
+ 0x21af5: "shi2", // 𡫵
+ 0x21af8: "ni4", // 𡫸
+ 0x21af9: "xian2", // 𡫹
+ 0x21afa: "fu1", // 𡫺
+ 0x21afd: "ru3", // 𡫽
+ 0x21b01: "xiong4", // 𡬁
+ 0x21b02: "gui4", // 𡬂
+ 0x21b04: "ji4", // 𡬄
+ 0x21b06: "meng3", // 𡬆
+ 0x21b07: "fu1", // 𡬇
+ 0x21b09: "sai4", // 𡬉
+ 0x21b0a: "yu4", // 𡬊
+ 0x21b0b: "jiao4", // 𡬋
+ 0x21b0c: "meng4", // 𡬌
+ 0x21b0d: "long2", // 𡬍
+ 0x21b0e: "qiang1", // 𡬎
+ 0x21b10: "mi2", // 𡬐
+ 0x21b13: "yi2", // 𡬓
+ 0x21b15: "long2", // 𡬕
+ 0x21b16: "han1", // 𡬖
+ 0x21b17: "ni4", // 𡬗
+ 0x21b18: "lao4", // 𡬘
+ 0x21b19: "seng4", // 𡬙
+ 0x21b1c: "lin3", // 𡬜
+ 0x21b1e: "yu4", // 𡬞
+ 0x21b25: "nuo2", // 𡬥
+ 0x21b2b: "wu4", // 𡬫
+ 0x21b2f: "bian3", // 𡬯
+ 0x21b32: "bian3", // 𡬲
+ 0x21b33: "xuan1", // 𡬳
+ 0x21b35: "jian1", // 𡬵
+ 0x21b38: "bian3", // 𡬸
+ 0x21b42: "de2", // 𡭂
+ 0x21b47: "zhuan1", // 𡭇
+ 0x21b4b: "rong3", // 𡭋
+ 0x21b50: "shuan4", // 𡭐
+ 0x21b58: "jia1", // 𡭘
+ 0x21b5b: "hui3", // 𡭛
+ 0x21b5e: "zhan1", // 𡭞
+ 0x21b62: "bai4", // 𡭢
+ 0x21b63: "lie4", // 𡭣
+ 0x21b65: "xie1", // 𡭥
+ 0x21b6d: "jian3", // 𡭭
+ 0x21b6e: "shou3", // 𡭮
+ 0x21b73: "kao4", // 𡭳
+ 0x21b77: "guan1", // 𡭷
+ 0x21b78: "luan4", // 𡭸
+ 0x21b7e: "nou3", // 𡭾
+ 0x21b7f: "chang3", // 𡭿
+ 0x21b8e: "liang2", // 𡮎
+ 0x21b99: "nai4", // 𡮙
+ 0x21b9a: "ru3", // 𡮚
+ 0x21b9e: "zhi4", // 𡮞
+ 0x21ba6: "cao2", // 𡮦
+ 0x21bb0: "li4", // 𡮰
+ 0x21bbb: "lan2", // 𡮻
+ 0x21bbf: "chan1", // 𡮿
+ 0x21bc1: "wang1", // 𡯁
+ 0x21bc4: "li4", // 𡯄
+ 0x21bc7: "wu4", // 𡯇
+ 0x21bc8: "pao2", // 𡯈
+ 0x21bc9: "you4", // 𡯉
+ 0x21bcb: "gan1", // 𡯋
+ 0x21bcf: "an1", // 𡯏
+ 0x21bd0: "xiu1", // 𡯐
+ 0x21bd1: "shui3", // 𡯑
+ 0x21bd2: "rui3", // 𡯒
+ 0x21bd8: "ban3", // 𡯘
+ 0x21bd9: "you2", // 𡯙
+ 0x21be2: "huo2", // 𡯢
+ 0x21be5: "hui1", // 𡯥
+ 0x21be8: "zuo4", // 𡯨
+ 0x21be9: "xiao1", // 𡯩
+ 0x21beb: "mian2", // 𡯫
+ 0x21bf0: "ga4", // 𡯰
+ 0x21bf1: "yuan3", // 𡯱
+ 0x21bf3: "bo4", // 𡯳
+ 0x21bf4: "chao4", // 𡯴
+ 0x21bf5: "tui3", // 𡯵
+ 0x21bf7: "bo4", // 𡯷
+ 0x21bfd: "ga4", // 𡯽
+ 0x21bff: "tiao1", // 𡯿
+ 0x21c00: "na2", // 𡰀
+ 0x21c05: "hu2", // 𡰅
+ 0x21c06: "nie4", // 𡰆
+ 0x21c0b: "hui2", // 𡰋
+ 0x21c0c: "lou3", // 𡰌
+ 0x21c0e: "ti2", // 𡰎
+ 0x21c10: "qiao4", // 𡰐
+ 0x21c11: "qiao2", // 𡰑
+ 0x21c12: "zhong3", // 𡰒
+ 0x21c16: "di1", // 𡰖
+ 0x21c1a: "lin2", // 𡰚
+ 0x21c1d: "quan2", // 𡰝
+ 0x21c1e: "zhuan1", // 𡰞
+ 0x21c20: "lei2", // 𡰠
+ 0x21c22: "xie2", // 𡰢
+ 0x21c25: "ren2", // 𡰥
+ 0x21c28: "dang1", // 𡰨
+ 0x21c2a: "du1", // 𡰪
+ 0x21c2b: "nian3", // 𡰫
+ 0x21c2f: "shi3", // 𡰯
+ 0x21c32: "xian2", // 𡰲
+ 0x21c39: "zhi2", // 𡰹
+ 0x21c3d: "ai4", // 𡰽
+ 0x21c3e: "ci1", // 𡰾
+ 0x21c3f: "pu2", // 𡰿
+ 0x21c41: "shi3", // 𡱁
+ 0x21c45: "qu1", // 𡱅
+ 0x21c46: "shu3", // 𡱆
+ 0x21c47: "dian1", // 𡱇
+ 0x21c49: "xiao3", // 𡱉
+ 0x21c4a: "shui3", // 𡱊
+ 0x21c4c: "huan2", // 𡱌
+ 0x21c50: "yi2", // 𡱐
+ 0x21c51: "juan1", // 𡱑
+ 0x21c54: "zhi3", // 𡱔
+ 0x21c5c: "zhao4", // 𡱜
+ 0x21c63: "xu4", // 𡱣
+ 0x21c6f: "long4", // 𡱯
+ 0x21c71: "zhu4", // 𡱱
+ 0x21c73: "suo3", // 𡱳
+ 0x21c77: "die2", // 𡱷
+ 0x21c7a: "qu2", // 𡱺
+ 0x21c7c: "ke4", // 𡱼
+ 0x21c7d: "hu1", // 𡱽
+ 0x21c7e: "ju1", // 𡱾
+ 0x21c80: "qing3", // 𡲀
+ 0x21c8d: "bing1", // 𡲍
+ 0x21c95: "ti4", // 𡲕
+ 0x21c97: "jue2", // 𡲗
+ 0x21c9a: "qiu2", // 𡲚
+ 0x21ca3: "jiang4", // 𡲣
+ 0x21caa: "yun4", // 𡲪
+ 0x21cad: "mei4", // 𡲭
+ 0x21cae: "pi1", // 𡲮
+ 0x21cb0: "qu2", // 𡲰
+ 0x21cbc: "mi4", // 𡲼
+ 0x21cbf: "ti4", // 𡲿
+ 0x21cc2: "kai4", // 𡳂
+ 0x21cc4: "bi3", // 𡳄
+ 0x21cc6: "qu1", // 𡳆
+ 0x21ccf: "tiao1", // 𡳏
+ 0x21cd1: "chu4", // 𡳑
+ 0x21cd8: "ju2", // 𡳘
+ 0x21cda: "xi1", // 𡳚
+ 0x21cde: "lin4", // 𡳞
+ 0x21ced: "chi3", // 𡳭
+ 0x21cee: "ji1", // 𡳮
+ 0x21cf4: "lu2", // 𡳴
+ 0x21cf8: "li4", // 𡳸
+ 0x21cfe: "jue2", // 𡳾
+ 0x21d05: "zhu1", // 𡴅
+ 0x21d06: "lu4", // 𡴆
+ 0x21d0e: "nie4", // 𡴎
+ 0x21d14: "quan2", // 𡴔
+ 0x21d2d: "ya4", // 𡴭
+ 0x21d2f: "e4", // 𡴯
+ 0x21d31: "hu4", // 𡴱
+ 0x21d40: "mang2", // 𡵀
+ 0x21d49: "wu4", // 𡵉
+ 0x21d4c: "cha1", // 𡵌
+ 0x21d51: "qin1", // 𡵑
+ 0x21d52: "jie2", // 𡵒
+ 0x21d53: "hong2", // 𡵓
+ 0x21d55: "dan1", // 𡵕
+ 0x21d56: "en3", // 𡵖
+ 0x21d57: "ze4", // 𡵗
+ 0x21d58: "hu4", // 𡵘
+ 0x21d59: "ang4", // 𡵙
+ 0x21d5a: "jie4", // 𡵚
+ 0x21d5b: "fu4", // 𡵛
+ 0x21d5c: "yong4", // 𡵜
+ 0x21d5e: "feng1", // 𡵞
+ 0x21d6c: "mu4", // 𡵬
+ 0x21d76: "se4", // 𡵶
+ 0x21d77: "cong2", // 𡵷
+ 0x21d7b: "kang1", // 𡵻
+ 0x21d82: "yao4", // 𡶂
+ 0x21d83: "ai4", // 𡶃
+ 0x21d84: "bao1", // 𡶄
+ 0x21d86: "po3", // 𡶆
+ 0x21d88: "shi3", // 𡶈
+ 0x21d89: "fan4", // 𡶉
+ 0x21d8b: "ju2", // 𡶋
+ 0x21d8c: "pi2", // 𡶌
+ 0x21d8e: "wei4", // 𡶎
+ 0x21d8f: "ku1", // 𡶏
+ 0x21d90: "qie2", // 𡶐
+ 0x21d91: "gan1", // 𡶑
+ 0x21da2: "kuang4", // 𡶢
+ 0x21da3: "sui4", // 𡶣
+ 0x21da4: "beng1", // 𡶤
+ 0x21da5: "jia1", // 𡶥
+ 0x21da6: "ya4", // 𡶦
+ 0x21daa: "kan4", // 𡶪
+ 0x21dab: "nie4", // 𡶫
+ 0x21dad: "xing2", // 𡶭
+ 0x21daf: "xi4", // 𡶯
+ 0x21db1: "lin4", // 𡶱
+ 0x21db2: "duo3", // 𡶲
+ 0x21db4: "chan3", // 𡶴
+ 0x21dc8: "shi4", // 𡷈
+ 0x21dcb: "dui4", // 𡷋
+ 0x21dcd: "jiang1", // 𡷍
+ 0x21dce: "yu3", // 𡷎
+ 0x21dcf: "lu4", // 𡷏
+ 0x21dd0: "en3", // 𡷐
+ 0x21dd3: "gu3", // 𡷓
+ 0x21dd5: "wei3", // 𡷕
+ 0x21dd6: "che1", // 𡷖
+ 0x21dd7: "huan4", // 𡷗
+ 0x21dd8: "bie2", // 𡷘
+ 0x21ddb: "han4", // 𡷛
+ 0x21ddc: "tui2", // 𡷜
+ 0x21ddd: "na4", // 𡷝
+ 0x21dde: "qi3", // 𡷞
+ 0x21de0: "tou2", // 𡷠
+ 0x21de1: "yuan1", // 𡷡
+ 0x21de2: "wang2", // 𡷢
+ 0x21de4: "wu2", // 𡷤
+ 0x21de5: "gao4", // 𡷥
+ 0x21de8: "keng1", // 𡷨
+ 0x21dea: "yi2", // 𡷪
+ 0x21df8: "xiao1", // 𡷸
+ 0x21dfa: "gui3", // 𡷺
+ 0x21dfb: "ya4", // 𡷻
+ 0x21dfc: "sui4", // 𡷼
+ 0x21dfd: "song3", // 𡷽
+ 0x21dff: "zhuo2", // 𡷿
+ 0x21e02: "tu1", // 𡸂
+ 0x21e03: "xian3", // 𡸃
+ 0x21e08: "ze4", // 𡸈
+ 0x21e09: "li4", // 𡸉
+ 0x21e0c: "zhu4", // 𡸌
+ 0x21e0e: "jie2", // 𡸎
+ 0x21e11: "ti4", // 𡸑
+ 0x21e14: "xie2", // 𡸔
+ 0x21e15: "qiong2", // 𡸕
+ 0x21e17: "ya4", // 𡸗
+ 0x21e18: "ju1", // 𡸘
+ 0x21e1b: "yin2", // 𡸛
+ 0x21e1c: "zhi2", // 𡸜
+ 0x21e1e: "kan3", // 𡸞
+ 0x21e1f: "zi1", // 𡸟
+ 0x21e21: "ke1", // 𡸡
+ 0x21e23: "nie4", // 𡸣
+ 0x21e24: "qiang2", // 𡸤
+ 0x21e25: "wan3", // 𡸥
+ 0x21e26: "ze2", // 𡸦
+ 0x21e28: "ju1", // 𡸨
+ 0x21e2a: "zi4", // 𡸪
+ 0x21e44: "ya4", // 𡹄
+ 0x21e47: "lin2", // 𡹇
+ 0x21e49: "qi2", // 𡹉
+ 0x21e4e: "hui2", // 𡹎
+ 0x21e53: "qi4", // 𡹓
+ 0x21e55: "yang2", // 𡹕
+ 0x21e56: "sui4", // 𡹖
+ 0x21e58: "qi3", // 𡹘
+ 0x21e59: "gui1", // 𡹙
+ 0x21e62: "qin4", // 𡹢
+ 0x21e63: "e1", // 𡹣
+ 0x21e65: "zuo4", // 𡹥
+ 0x21e68: "ze4", // 𡹨
+ 0x21e69: "qi4", // 𡹩
+ 0x21e6a: "ji2", // 𡹪
+ 0x21e6c: "tuo2", // 𡹬
+ 0x21e6d: "die2", // 𡹭
+ 0x21e6f: "hui4", // 𡹯
+ 0x21e70: "mao2", // 𡹰
+ 0x21e72: "xu3", // 𡹲
+ 0x21e75: "hou2", // 𡹵
+ 0x21e76: "yan3", // 𡹶
+ 0x21e77: "xiang2", // 𡹷
+ 0x21e78: "cong1", // 𡹸
+ 0x21e79: "hu2", // 𡹹
+ 0x21e7c: "an4", // 𡹼
+ 0x21e7e: "bing3", // 𡹾
+ 0x21e87: "duo3", // 𡺇
+ 0x21e90: "zhu3", // 𡺐
+ 0x21e91: "die2", // 𡺑
+ 0x21e92: "you1", // 𡺒
+ 0x21e93: "qi3", // 𡺓
+ 0x21e94: "shi2", // 𡺔
+ 0x21e95: "xun1", // 𡺕
+ 0x21e96: "you1", // 𡺖
+ 0x21e97: "kan1", // 𡺗
+ 0x21e98: "qiao3", // 𡺘
+ 0x21e9b: "qiang1", // 𡺛
+ 0x21e9c: "pen2", // 𡺜
+ 0x21e9f: "quan2", // 𡺟
+ 0x21ea1: "ying2", // 𡺡
+ 0x21ea7: "sha1", // 𡺧
+ 0x21eab: "tao1", // 𡺫
+ 0x21ead: "hong4", // 𡺭
+ 0x21eae: "pi3", // 𡺮
+ 0x21eaf: "yao2", // 𡺯
+ 0x21eb4: "tu2", // 𡺴
+ 0x21eb5: "chai2", // 𡺵
+ 0x21eb7: "xia4", // 𡺷
+ 0x21eb8: "qi2", // 𡺸
+ 0x21eba: "qiong2", // 𡺺
+ 0x21ebd: "jin4", // 𡺽
+ 0x21ec8: "zhen1", // 𡻈
+ 0x21ecc: "zhu1", // 𡻌
+ 0x21ece: "xi1", // 𡻎
+ 0x21ed0: "weng1", // 𡻐
+ 0x21ed1: "zhong3", // 𡻑
+ 0x21ed5: "sui4", // 𡻕
+ 0x21ed8: "ke1", // 𡻘
+ 0x21ed9: "kuo4", // 𡻙
+ 0x21eda: "kang3", // 𡻚
+ 0x21edd: "chao2", // 𡻝
+ 0x21ede: "bi4", // 𡻞
+ 0x21edf: "mo4", // 𡻟
+ 0x21ee0: "zhu4", // 𡻠
+ 0x21ee1: "han4", // 𡻡
+ 0x21ee2: "yu3", // 𡻢
+ 0x21ee3: "yi2", // 𡻣
+ 0x21ee4: "ma2", // 𡻤
+ 0x21ee7: "qi4", // 𡻧
+ 0x21ee8: "gun4", // 𡻨
+ 0x21ee9: "man4", // 𡻩
+ 0x21eea: "liao2", // 𡻪
+ 0x21eeb: "lin2", // 𡻫
+ 0x21eec: "zu2", // 𡻬
+ 0x21eed: "lei3", // 𡻭
+ 0x21eee: "hu4", // 𡻮
+ 0x21eef: "chuang3", // 𡻯
+ 0x21ef0: "qi4", // 𡻰
+ 0x21ef1: "lei2", // 𡻱
+ 0x21f01: "chi1", // 𡼁
+ 0x21f03: "po2", // 𡼃
+ 0x21f04: "die2", // 𡼄
+ 0x21f0a: "lei3", // 𡼊
+ 0x21f0e: "yi3", // 𡼎
+ 0x21f13: "dian4", // 𡼓
+ 0x21f16: "dun1", // 𡼖
+ 0x21f17: "gao1", // 𡼗
+ 0x21f18: "hu1", // 𡼘
+ 0x21f1a: "xiao1", // 𡼚
+ 0x21f1b: "ga2", // 𡼛
+ 0x21f1c: "peng1", // 𡼜
+ 0x21f2c: "shen3", // 𡼬
+ 0x21f31: "wei2", // 𡼱
+ 0x21f3b: "dui4", // 𡼻
+ 0x21f3c: "chao2", // 𡼼
+ 0x21f3d: "yin3", // 𡼽
+ 0x21f3e: "kuai4", // 𡼾
+ 0x21f3f: "ku1", // 𡼿
+ 0x21f41: "zui4", // 𡽁
+ 0x21f42: "gu3", // 𡽂
+ 0x21f45: "yun4", // 𡽅
+ 0x21f46: "zhi4", // 𡽆
+ 0x21f49: "ji4", // 𡽉
+ 0x21f4a: "cheng1", // 𡽊
+ 0x21f56: "xie4", // 𡽖
+ 0x21f5b: "zui3", // 𡽛
+ 0x21f5c: "an2", // 𡽜
+ 0x21f5d: "hao1", // 𡽝
+ 0x21f60: "po3", // 𡽠
+ 0x21f62: "di2", // 𡽢
+ 0x21f63: "ye4", // 𡽣
+ 0x21f67: "nao2", // 𡽧
+ 0x21f71: "jie2", // 𡽱
+ 0x21f72: "bang4", // 𡽲
+ 0x21f73: "lan3", // 𡽳
+ 0x21f74: "cang2", // 𡽴
+ 0x21f76: "bi4", // 𡽶
+ 0x21f7b: "zhan3", // 𡽻
+ 0x21f7c: "qi4", // 𡽼
+ 0x21f82: "nao2", // 𡾂
+ 0x21f85: "lv4", // 𡾅
+ 0x21f87: "kuang4", // 𡾇
+ 0x21f89: "mo2", // 𡾉
+ 0x21f8b: "lei3", // 𡾋
+ 0x21f8c: "pao2", // 𡾌
+ 0x21f92: "li4", // 𡾒
+ 0x21f93: "ceng2", // 𡾓
+ 0x21f95: "dang4", // 𡾕
+ 0x21f96: "lei3", // 𡾖
+ 0x21f99: "e4", // 𡾙
+ 0x21f9b: "beng4", // 𡾛
+ 0x21f9c: "jue2", // 𡾜
+ 0x21fa5: "xuan2", // 𡾥
+ 0x21fa6: "nie4", // 𡾦
+ 0x21fa8: "hai4", // 𡾨
+ 0x21fae: "xian3", // 𡾮
+ 0x21fb0: "jian3", // 𡾰
+ 0x21fb1: "mi2", // 𡾱
+ 0x21fb2: "nie4", // 𡾲
+ 0x21fbb: "cang2", // 𡾻
+ 0x21fbc: "song3", // 𡾼
+ 0x21fbd: "zeng1", // 𡾽
+ 0x21fbe: "yi4", // 𡾾
+ 0x21fc2: "chong2", // 𡿂
+ 0x21fc4: "cang2", // 𡿄
+ 0x21fc9: "lei3", // 𡿉
+ 0x21fca: "nuo2", // 𡿊
+ 0x21fcb: "li4", // 𡿋
+ 0x21fce: "li2", // 𡿎
+ 0x21fcf: "luo2", // 𡿏
+ 0x21fd3: "tang3", // 𡿓
+ 0x21fd6: "nie4", // 𡿖
+ 0x21fd7: "nie4", // 𡿗
+ 0x21fd9: "ji1", // 𡿙
+ 0x21fdb: "lei3", // 𡿛
+ 0x21fdd: "nang4", // 𡿝
+ 0x21fe0: "lin2", // 𡿠
+ 0x21fe1: "ling2", // 𡿡
+ 0x21fe4: "xian2", // 𡿤
+ 0x21fe5: "yu4", // 𡿥
+ 0x21fe7: "zai1", // 𡿧
+ 0x21fe8: "quan3", // 𡿨
+ 0x21fe9: "lie4", // 𡿩
+ 0x21fef: "yu4", // 𡿯
+ 0x21ff0: "huang1", // 𡿰
+ 0x21ffa: "nao3", // 𡿺
+ 0x21ffc: "xun4", // 𡿼
+ 0x21ffe: "ju2", // 𡿾
+ 0x21fff: "huo4", // 𡿿
+ 0x22001: "yi4", // 𢀁
+ 0x2200a: "xi1", // 𢀊
+ 0x2200b: "se4", // 𢀋
+ 0x2200c: "jiao3", // 𢀌
+ 0x2200d: "yong1", // 𢀍
+ 0x22015: "shi1", // 𢀕
+ 0x22016: "jing1", // 𢀖
+ 0x22017: "wan4", // 𢀗
+ 0x22018: "ye3", // 𢀘
+ 0x22019: "jiu1", // 𢀙
+ 0x2201c: "gong3", // 𢀜
+ 0x22021: "hui1", // 𢀡
+ 0x2202a: "er3", // 𢀪
+ 0x22035: "han4", // 𢀵
+ 0x2203c: "fu2", // 𢀼
+ 0x22040: "fu2", // 𢁀
+ 0x22041: "zhuo2", // 𢁁
+ 0x22042: "ji1", // 𢁂
+ 0x2204f: "bang1", // 𢁏
+ 0x22052: "qi2", // 𢁒
+ 0x22053: "shi3", // 𢁓
+ 0x22055: "diao3", // 𢁕
+ 0x22056: "pei4", // 𢁖
+ 0x22057: "xian3", // 𢁗
+ 0x22058: "san1", // 𢁘
+ 0x2205d: "chang2", // 𢁝
+ 0x2205e: "yue1", // 𢁞
+ 0x22060: "gong1", // 𢁠
+ 0x22062: "wu1", // 𢁢
+ 0x22064: "fen1", // 𢁤
+ 0x22067: "chan3", // 𢁧
+ 0x22069: "nei4", // 𢁩
+ 0x2206a: "jue2", // 𢁪
+ 0x2206c: "zhao3", // 𢁬
+ 0x2206e: "qian2", // 𢁮
+ 0x22071: "ao3", // 𢁱
+ 0x22076: "wang3", // 𢁶
+ 0x22077: "zhong1", // 𢁷
+ 0x22079: "huang1", // 𢁹
+ 0x2207b: "bu4", // 𢁻
+ 0x2207c: "zhu3", // 𢁼
+ 0x2207d: "bi4", // 𢁽
+ 0x2207e: "chao1", // 𢁾
+ 0x2207f: "zheng1", // 𢁿
+ 0x22080: "fu2", // 𢂀
+ 0x22081: "kou1", // 𢂁
+ 0x22083: "zuo2", // 𢂃
+ 0x22084: "xuan4", // 𢂄
+ 0x22086: "fu4", // 𢂆
+ 0x2208a: "yao3", // 𢂊
+ 0x2208d: "bo1", // 𢂍
+ 0x2208f: "bei4", // 𢂏
+ 0x22090: "xie2", // 𢂐
+ 0x22091: "shi4", // 𢂑
+ 0x22092: "yi2", // 𢂒
+ 0x22094: "hong2", // 𢂔
+ 0x22095: "cui4", // 𢂕
+ 0x22097: "yi4", // 𢂗
+ 0x22098: "zhuan1", // 𢂘
+ 0x2209d: "chi4", // 𢂝
+ 0x220a4: "po1", // 𢂤
+ 0x220a8: "yin2", // 𢂨
+ 0x220b1: "yuan4", // 𢂱
+ 0x220b6: "jiong1", // 𢂶
+ 0x220b9: "mao4", // 𢂹
+ 0x220ba: "qian4", // 𢂺
+ 0x220bc: "yi4", // 𢂼
+ 0x220c0: "wu2", // 𢃀
+ 0x220cd: "bei1", // 𢃍
+ 0x220ce: "huo4", // 𢃎
+ 0x220cf: "cong2", // 𢃏
+ 0x220d0: "kong1", // 𢃐
+ 0x220d5: "ta4", // 𢃕
+ 0x220d7: "han4", // 𢃗
+ 0x220d8: "qian4", // 𢃘
+ 0x220dc: "zhi2", // 𢃜
+ 0x220e2: "se4", // 𢃢
+ 0x220e5: "qian1", // 𢃥
+ 0x220e6: "guo3", // 𢃦
+ 0x220e9: "gun3", // 𢃩
+ 0x220ec: "jian1", // 𢃬
+ 0x220ed: "zhong1", // 𢃭
+ 0x220ee: "mian3", // 𢃮
+ 0x220ef: "gui3", // 𢃯
+ 0x220f0: "shi4", // 𢃰
+ 0x220f1: "mou2", // 𢃱
+ 0x220f2: "e4", // 𢃲
+ 0x220f3: "ba3", // 𢃳
+ 0x220f4: "la4", // 𢃴
+ 0x220f8: "zhou4", // 𢃸
+ 0x220fa: "ji2", // 𢃺
+ 0x22100: "zao3", // 𢄀
+ 0x22104: "zha1", // 𢄄
+ 0x22105: "yi4", // 𢄅
+ 0x22107: "gou3", // 𢄇
+ 0x2210a: "gui1", // 𢄊
+ 0x2210b: "ying1", // 𢄋
+ 0x2210c: "shai3", // 𢄌
+ 0x2210d: "he2", // 𢄍
+ 0x2210e: "bang4", // 𢄎
+ 0x2210f: "mo4", // 𢄏
+ 0x22110: "meng2", // 𢄐
+ 0x22113: "wu4", // 𢄓
+ 0x22114: "dai4", // 𢄔
+ 0x22117: "jiong3", // 𢄗
+ 0x2211c: "han4", // 𢄜
+ 0x2211f: "tong1", // 𢄟
+ 0x22120: "kou1", // 𢄠
+ 0x22121: "li2", // 𢄡
+ 0x22122: "zhi4", // 𢄢
+ 0x22123: "hui4", // 𢄣
+ 0x22124: "zan3", // 𢄤
+ 0x22126: "diao3", // 𢄦
+ 0x22127: "cu4", // 𢄧
+ 0x22131: "zhi4", // 𢄱
+ 0x22133: "kua3", // 𢄳
+ 0x22135: "xiang4", // 𢄵
+ 0x22136: "hua4", // 𢄶
+ 0x22137: "liao2", // 𢄷
+ 0x22138: "cui4", // 𢄸
+ 0x22139: "qiao1", // 𢄹
+ 0x2213a: "jiao3", // 𢄺
+ 0x2213c: "xu1", // 𢄼
+ 0x2213d: "er4", // 𢄽
+ 0x2213f: "tuo1", // 𢄿
+ 0x22140: "tan2", // 𢅀
+ 0x22141: "zhi4", // 𢅁
+ 0x22148: "nao3", // 𢅈
+ 0x22149: "mao4", // 𢅉
+ 0x2214a: "di4", // 𢅊
+ 0x2214b: "ceng2", // 𢅋
+ 0x2214e: "jiao3", // 𢅎
+ 0x2214f: "lian2", // 𢅏
+ 0x22151: "sha1", // 𢅑
+ 0x22152: "dan4", // 𢅒
+ 0x22155: "sui4", // 𢅕
+ 0x22156: "lian2", // 𢅖
+ 0x22157: "guo4", // 𢅗
+ 0x2215a: "biao3", // 𢅚
+ 0x2215c: "ci4", // 𢅜
+ 0x2215d: "dian4", // 𢅝
+ 0x2215e: "lv4", // 𢅞
+ 0x2215f: "ni3", // 𢅟
+ 0x22160: "yan3", // 𢅠
+ 0x22161: "lan2", // 𢅡
+ 0x22164: "gai4", // 𢅤
+ 0x22165: "chu2", // 𢅥
+ 0x22169: "bi4", // 𢅩
+ 0x2216a: "zu2", // 𢅪
+ 0x2216b: "hui4", // 𢅫
+ 0x2216d: "lai3", // 𢅭
+ 0x2216e: "xian2", // 𢅮
+ 0x2216f: "fen4", // 𢅯
+ 0x22170: "he4", // 𢅰
+ 0x22179: "yao4", // 𢅹
+ 0x2217a: "zhan3", // 𢅺
+ 0x2217c: "nei2", // 𢅼
+ 0x2217e: "luo3", // 𢅾
+ 0x22180: "yuan2", // 𢆀
+ 0x22182: "neng2", // 𢆂
+ 0x22189: "ren3", // 𢆉
+ 0x2219c: "ge2", // 𢆜
+ 0x2219e: "jian3", // 𢆞
+ 0x2219f: "ping2", // 𢆟
+ 0x221a3: "bie4", // 𢆣
+ 0x221a6: "jian4", // 𢆦
+ 0x221a9: "bing4", // 𢆩
+ 0x221af: "mi4", // 𢆯
+ 0x221b0: "hu4", // 𢆰
+ 0x221b4: "diao3", // 𢆴
+ 0x221b6: "you1", // 𢆶
+ 0x221b7: "yao1", // 𢆷
+ 0x221b8: "beng1", // 𢆸
+ 0x221ba: "chen2", // 𢆺
+ 0x221bb: "ji1", // 𢆻
+ 0x221bd: "yao1", // 𢆽
+ 0x221c7: "guan1", // 𢇇
+ 0x221c8: "yan4", // 𢇈
+ 0x221d5: "chi3", // 𢇕
+ 0x221d7: "sha4", // 𢇗
+ 0x221d8: "yan3", // 𢇘
+ 0x221d9: "yi4", // 𢇙
+ 0x221da: "yi4", // 𢇚
+ 0x221db: "che4", // 𢇛
+ 0x221de: "han4", // 𢇞
+ 0x221df: "huang1", // 𢇟
+ 0x221e4: "shui4", // 𢇤
+ 0x221e5: "sui4", // 𢇥
+ 0x221e6: "ren2", // 𢇦
+ 0x221e7: "tan2", // 𢇧
+ 0x221e8: "zhi3", // 𢇨
+ 0x221ea: "fan4", // 𢇪
+ 0x221eb: "feng3", // 𢇫
+ 0x221f0: "tan2", // 𢇰
+ 0x221f2: "mi2", // 𢇲
+ 0x221f3: "pi2", // 𢇳
+ 0x221f4: "bu4", // 𢇴
+ 0x221f5: "na4", // 𢇵
+ 0x221f6: "tian2", // 𢇶
+ 0x221f7: "ba2", // 𢇷
+ 0x221f8: "yi4", // 𢇸
+ 0x22202: "yan3", // 𢈂
+ 0x22204: "tiao1", // 𢈄
+ 0x22206: "yao2", // 𢈆
+ 0x22207: "shen3", // 𢈇
+ 0x22208: "ke1", // 𢈈
+ 0x22209: "tong2", // 𢈉
+ 0x2220b: "xuan3", // 𢈋
+ 0x22213: "you4", // 𢈓
+ 0x22215: "bai4", // 𢈕
+ 0x22219: "xia2", // 𢈙
+ 0x2221a: "lv3", // 𢈚
+ 0x2221b: "kun4", // 𢈛
+ 0x2221c: "zang1", // 𢈜
+ 0x2221d: "qiu2", // 𢈝
+ 0x22220: "cu4", // 𢈠
+ 0x22221: "zui1", // 𢈡
+ 0x22222: "lou3", // 𢈢
+ 0x22224: "xia2", // 𢈤
+ 0x2222f: "shen1", // 𢈯
+ 0x22232: "pu2", // 𢈲
+ 0x22234: "jing1", // 𢈴
+ 0x22235: "qiang1", // 𢈵
+ 0x22236: "yi4", // 𢈶
+ 0x22238: "nie4", // 𢈸
+ 0x22239: "dui1", // 𢈹
+ 0x2223b: "jie2", // 𢈻
+ 0x2223c: "sui4", // 𢈼
+ 0x2223d: "zhan4", // 𢈽
+ 0x2223e: "cou1", // 𢈾
+ 0x22241: "beng1", // 𢉁
+ 0x22242: "guan1", // 𢉂
+ 0x22243: "she3", // 𢉃
+ 0x22245: "jin4", // 𢉅
+ 0x22246: "di4", // 𢉆
+ 0x22251: "dan1", // 𢉑
+ 0x22253: "nai3", // 𢉓
+ 0x22255: "nou2", // 𢉕
+ 0x22257: "ji2", // 𢉗
+ 0x22258: "yan2", // 𢉘
+ 0x2225a: "nou4", // 𢉚
+ 0x2225c: "du4", // 𢉜
+ 0x2225d: "wei4", // 𢉝
+ 0x2225e: "pian1", // 𢉞
+ 0x22262: "hu2", // 𢉢
+ 0x22264: "jia4", // 𢉤
+ 0x22265: "ye4", // 𢉥
+ 0x22266: "jun3", // 𢉦
+ 0x22267: "lan2", // 𢉧
+ 0x22268: "la4", // 𢉨
+ 0x22269: "yin1", // 𢉩
+ 0x2226d: "tui2", // 𢉭
+ 0x22275: "nao3", // 𢉵
+ 0x2227a: "zu3", // 𢉺
+ 0x2227f: "ma4", // 𢉿
+ 0x22280: "si1", // 𢊀
+ 0x22281: "zhi4", // 𢊁
+ 0x22284: "hui1", // 𢊄
+ 0x22285: "zhui4", // 𢊅
+ 0x22287: "hui4", // 𢊇
+ 0x2228d: "chu2", // 𢊍
+ 0x2228f: "che4", // 𢊏
+ 0x22292: "xiu1", // 𢊒
+ 0x22293: "lan2", // 𢊓
+ 0x22295: "cong1", // 𢊕
+ 0x22296: "shen4", // 𢊖
+ 0x22297: "mo4", // 𢊗
+ 0x22298: "yi1", // 𢊘
+ 0x22299: "yao2", // 𢊙
+ 0x2229a: "xi3", // 𢊚
+ 0x2229b: "zui3", // 𢊛
+ 0x2229c: "bing4", // 𢊜
+ 0x222a7: "yu2", // 𢊧
+ 0x222a9: "lu4", // 𢊩
+ 0x222ae: "tui2", // 𢊮
+ 0x222af: "wei3", // 𢊯
+ 0x222b1: "fen2", // 𢊱
+ 0x222b2: "shen3", // 𢊲
+ 0x222bb: "liao2", // 𢊻
+ 0x222c2: "shu3", // 𢋂
+ 0x222c3: "dan3", // 𢋃
+ 0x222c4: "juan3", // 𢋄
+ 0x222c5: "yu2", // 𢋅
+ 0x222c6: "xin4", // 𢋆
+ 0x222c7: "yao2", // 𢋇
+ 0x222c8: "su1", // 𢋈
+ 0x222d2: "huo2", // 𢋒
+ 0x222d4: "qian1", // 𢋔
+ 0x222da: "ma2", // 𢋚
+ 0x222dd: "kai3", // 𢋝
+ 0x222e1: "lu3", // 𢋡
+ 0x222e3: "you1", // 𢋣
+ 0x222ee: "xian4", // 𢋮
+ 0x222f9: "wu2", // 𢋹
+ 0x222fb: "yin3", // 𢋻
+ 0x222fc: "xi1", // 𢋼
+ 0x222ff: "zhai1", // 𢋿
+ 0x22300: "xie4", // 𢌀
+ 0x22304: "qu2", // 𢌄
+ 0x22308: "li2", // 𢌈
+ 0x2230d: "qian1", // 𢌍
+ 0x22314: "ling2", // 𢌔
+ 0x22315: "luan2", // 𢌕
+ 0x2231a: "chan1", // 𢌚
+ 0x22326: "zheng4", // 𢌦
+ 0x22328: "yan2", // 𢌨
+ 0x22332: "yin4", // 𢌲
+ 0x22333: "kui2", // 𢌳
+ 0x22337: "qu1", // 𢌷
+ 0x22339: "fu2", // 𢌹
+ 0x2233b: "yu4", // 𢌻
+ 0x22341: "qi2", // 𢍁
+ 0x22346: "qi4", // 𢍆
+ 0x22347: "ji4", // 𢍇
+ 0x22348: "yuan1", // 𢍈
+ 0x2234e: "gao4", // 𢍎
+ 0x2234f: "juan4", // 𢍏
+ 0x22351: "qi2", // 𢍑
+ 0x22353: "gai3", // 𢍓
+ 0x22355: "quan4", // 𢍕
+ 0x2235a: "wei4", // 𢍚
+ 0x22367: "zhi4", // 𢍧
+ 0x2236b: "jian3", // 𢍫
+ 0x2236d: "si4", // 𢍭
+ 0x22370: "yi4", // 𢍰
+ 0x22371: "qian1", // 𢍱
+ 0x2237c: "li4", // 𢍼
+ 0x2237f: "zang1", // 𢍿
+ 0x22380: "yi4", // 𢎀
+ 0x22382: "cai2", // 𢎂
+ 0x22383: "yi4", // 𢎃
+ 0x22384: "ge1", // 𢎄
+ 0x22386: "die2", // 𢎆
+ 0x22388: "zhi1", // 𢎈
+ 0x22389: "yi4", // 𢎉
+ 0x2238b: "zai1", // 𢎋
+ 0x2238c: "dai4", // 𢎌
+ 0x2238e: "su4", // 𢎎
+ 0x22394: "jie2", // 𢎔
+ 0x22395: "chen4", // 𢎕
+ 0x22396: "qu2", // 𢎖
+ 0x22398: "han4", // 𢎘
+ 0x22399: "xian2", // 𢎙
+ 0x223a0: "quan2", // 𢎠
+ 0x223a1: "jie2", // 𢎡
+ 0x223a5: "juan4", // 𢎥
+ 0x223aa: "dan4", // 𢎪
+ 0x223ad: "jin1", // 𢎭
+ 0x223b4: "bing1", // 𢎴
+ 0x223b5: "hu2", // 𢎵
+ 0x223b9: "jue2", // 𢎹
+ 0x223bb: "yu2", // 𢎻
+ 0x223c3: "li3", // 𢏃
+ 0x223c4: "qiang2", // 𢏄
+ 0x223c5: "shui3", // 𢏅
+ 0x223c6: "ku1", // 𢏆
+ 0x223c8: "zhen3", // 𢏈
+ 0x223cd: "fu2", // 𢏍
+ 0x223ce: "shen1", // 𢏎
+ 0x223d2: "chui2", // 𢏒
+ 0x223d5: "tong2", // 𢏕
+ 0x223d7: "yi4", // 𢏗
+ 0x223d9: "yang2", // 𢏙
+ 0x223dc: "tuo2", // 𢏜
+ 0x223dd: "zhou1", // 𢏝
+ 0x223de: "ji2", // 𢏞
+ 0x223e4: "xun4", // 𢏤
+ 0x223e6: "shen3", // 𢏦
+ 0x223e7: "xuan1", // 𢏧
+ 0x223ed: "liu2", // 𢏭
+ 0x223ee: "yuan1", // 𢏮
+ 0x223ef: "hu2", // 𢏯
+ 0x223f0: "zheng4", // 𢏰
+ 0x223f3: "peng1", // 𢏳
+ 0x223f7: "jue2", // 𢏷
+ 0x22402: "zhi4", // 𢐂
+ 0x22403: "pian1", // 𢐃
+ 0x22404: "yuan4", // 𢐄
+ 0x22406: "jian1", // 𢐆
+ 0x2240a: "pang2", // 𢐊
+ 0x2240e: "zhuan4", // 𢐎
+ 0x22410: "xian2", // 𢐐
+ 0x22412: "beng1", // 𢐒
+ 0x22414: "cong1", // 𢐔
+ 0x22416: "mo4", // 𢐖
+ 0x2241a: "guo2", // 𢐚
+ 0x2241e: "cheng2", // 𢐞
+ 0x2241f: "qiao1", // 𢐟
+ 0x22426: "bi4", // 𢐦
+ 0x22429: "qiang3", // 𢐩
+ 0x2242b: "zhou1", // 𢐫
+ 0x22432: "fan2", // 𢐲
+ 0x22433: "bie1", // 𢐳
+ 0x2243e: "bo2", // 𢐾
+ 0x2243f: "rong3", // 𢐿
+ 0x22445: "ding3", // 𢑅
+ 0x22446: "quan2", // 𢑆
+ 0x22447: "jiu4", // 𢑇
+ 0x22448: "yao2", // 𢑈
+ 0x22453: "xia2", // 𢑓
+ 0x22456: "zao3", // 𢑖
+ 0x2245d: "dan1", // 𢑝
+ 0x2245f: "wu3", // 𢑟
+ 0x22460: "tuo2", // 𢑠
+ 0x22462: "hu1", // 𢑢
+ 0x22467: "xi1", // 𢑧
+ 0x2246c: "lai2", // 𢑬
+ 0x2246e: "fei1", // 𢑮
+ 0x22479: "hu2", // 𢑹
+ 0x22486: "xian1", // 𢒆
+ 0x22489: "shan3", // 𢒉
+ 0x2248d: "fei4", // 𢒍
+ 0x22490: "cuo4", // 𢒐
+ 0x22492: "fu2", // 𢒒
+ 0x22494: "chu4", // 𢒔
+ 0x2249d: "diu1", // 𢒝
+ 0x2249e: "lan4", // 𢒞
+ 0x224a9: "xi3", // 𢒩
+ 0x224af: "biao1", // 𢒯
+ 0x224b0: "yu4", // 𢒰
+ 0x224b1: "sui4", // 𢒱
+ 0x224b2: "xi3", // 𢒲
+ 0x224b7: "pou2", // 𢒷
+ 0x224b9: "shan3", // 𢒹
+ 0x224be: "jiao4", // 𢒾
+ 0x224c0: "yi4", // 𢓀
+ 0x224c3: "wan2", // 𢓃
+ 0x224c4: "ji3", // 𢓄
+ 0x224c6: "wan2", // 𢓆
+ 0x224c7: "tui4", // 𢓇
+ 0x224cb: "ang4", // 𢓋
+ 0x224cd: "tian1", // 𢓍
+ 0x224ce: "chi2", // 𢓎
+ 0x224d2: "ran2", // 𢓒
+ 0x224d4: "sa4", // 𢓔
+ 0x224d5: "yin2", // 𢓕
+ 0x224d6: "pi1", // 𢓖
+ 0x224d7: "ci3", // 𢓗
+ 0x224d8: "tong2", // 𢓘
+ 0x224d9: "yin3", // 𢓙
+ 0x224dc: "ge2", // 𢓜
+ 0x224dd: "tiao1", // 𢓝
+ 0x224de: "zheng1", // 𢓞
+ 0x224df: "zhou4", // 𢓟
+ 0x224e1: "yi2", // 𢓡
+ 0x224e2: "kua4", // 𢓢
+ 0x224e3: "song1", // 𢓣
+ 0x224e7: "di4", // 𢓧
+ 0x224ec: "xie2", // 𢓬
+ 0x224ee: "xiao1", // 𢓮
+ 0x224ef: "guang4", // 𢓯
+ 0x224f0: "tuo3", // 𢓰
+ 0x224f1: "feng1", // 𢓱
+ 0x224f2: "wu2", // 𢓲
+ 0x224f5: "xiu4", // 𢓵
+ 0x224ff: "you2", // 𢓿
+ 0x22501: "ling2", // 𢔁
+ 0x22502: "yan4", // 𢔂
+ 0x22505: "dong1", // 𢔅
+ 0x22506: "qi4", // 𢔆
+ 0x22507: "tao2", // 𢔇
+ 0x22508: "han2", // 𢔈
+ 0x2250a: "chi2", // 𢔊
+ 0x2250b: "song1", // 𢔋
+ 0x22511: "quan3", // 𢔑
+ 0x22514: "han4", // 𢔔
+ 0x2251f: "rou3", // 𢔟
+ 0x22520: "qi4", // 𢔠
+ 0x22521: "kai1", // 𢔡
+ 0x22522: "yu2", // 𢔢
+ 0x22523: "cha1", // 𢔣
+ 0x22524: "cheng4", // 𢔤
+ 0x22525: "yu4", // 𢔥
+ 0x22527: "bing4", // 𢔧
+ 0x22529: "cong1", // 𢔩
+ 0x2252a: "zhu1", // 𢔪
+ 0x2252c: "yu4", // 𢔬
+ 0x22531: "jue2", // 𢔱
+ 0x22532: "liu4", // 𢔲
+ 0x22533: "sao1", // 𢔳
+ 0x22534: "yu4", // 𢔴
+ 0x22545: "shuai4", // 𢕅
+ 0x2254b: "yuan4", // 𢕋
+ 0x2254e: "zhang1", // 𢕎
+ 0x22551: "shuai4", // 𢕑
+ 0x22553: "chu3", // 𢕓
+ 0x22554: "zhang1", // 𢕔
+ 0x22555: "san3", // 𢕕
+ 0x22556: "xian1", // 𢕖
+ 0x22558: "cui1", // 𢕘
+ 0x22559: "meng3", // 𢕙
+ 0x2255a: "di2", // 𢕚
+ 0x2255e: "zhi4", // 𢕞
+ 0x2255f: "ao4", // 𢕟
+ 0x22566: "xiu1", // 𢕦
+ 0x22568: "pian2", // 𢕨
+ 0x2256a: "jiao4", // 𢕪
+ 0x2256b: "kuan3", // 𢕫
+ 0x2256c: "sa4", // 𢕬
+ 0x2256d: "xian4", // 𢕭
+ 0x2256e: "zha4", // 𢕮
+ 0x2256f: "dian4", // 𢕯
+ 0x22577: "yi2", // 𢕷
+ 0x2257a: "hui4", // 𢕺
+ 0x2257b: "shan4", // 𢕻
+ 0x22584: "chong2", // 𢖄
+ 0x22585: "yi2", // 𢖅
+ 0x22586: "xie4", // 𢖆
+ 0x22587: "zhi4", // 𢖇
+ 0x22588: "tiao4", // 𢖈
+ 0x2258a: "ping1", // 𢖊
+ 0x2258b: "xian2", // 𢖋
+ 0x2258e: "xian1", // 𢖎
+ 0x2258f: "su4", // 𢖏
+ 0x22591: "cuan2", // 𢖑
+ 0x22597: "song3", // 𢖗
+ 0x2259b: "hei1", // 𢖛
+ 0x2259d: "xian4", // 𢖝
+ 0x2259f: "you2", // 𢖟
+ 0x225a1: "yu4", // 𢖡
+ 0x225a4: "tai2", // 𢖤
+ 0x225a6: "jue2", // 𢖦
+ 0x225a7: "nang4", // 𢖧
+ 0x225a9: "dian1", // 𢖩
+ 0x225ab: "yi4", // 𢖫
+ 0x225ac: "bi4", // 𢖬
+ 0x225b3: "xu1", // 𢖳
+ 0x225b4: "yi4", // 𢖴
+ 0x225b5: "ru4", // 𢖵
+ 0x225b7: "gong1", // 𢖷
+ 0x225ba: "yi4", // 𢖺
+ 0x225bf: "zhi4", // 𢖿
+ 0x225c0: "xin1", // 𢗀
+ 0x225c2: "ji4", // 𢗂
+ 0x225c4: "xia4", // 𢗄
+ 0x225c8: "zhao1", // 𢗈
+ 0x225c9: "ne4", // 𢗉
+ 0x225ca: "xie4", // 𢗊
+ 0x225ce: "yi4", // 𢗎
+ 0x225eb: "fu3", // 𢗫
+ 0x225ed: "she4", // 𢗭
+ 0x225ef: "yuan2", // 𢗯
+ 0x225f0: "fan3", // 𢗰
+ 0x225f2: "fu1", // 𢗲
+ 0x225f3: "wu4", // 𢗳
+ 0x225f4: "xi1", // 𢗴
+ 0x225f5: "hong3", // 𢗵
+ 0x225f9: "ji4", // 𢗹
+ 0x225fa: "chang4", // 𢗺
+ 0x225ff: "mo4", // 𢗿
+ 0x22600: "pei4", // 𢘀
+ 0x22603: "mu2", // 𢘃
+ 0x22604: "qiu2", // 𢘄
+ 0x22605: "mao4", // 𢘅
+ 0x22607: "da2", // 𢘇
+ 0x22609: "xia2", // 𢘉
+ 0x2260a: "shen1", // 𢘊
+ 0x2260b: "te4", // 𢘋
+ 0x2260c: "hong2", // 𢘌
+ 0x2260d: "bi4", // 𢘍
+ 0x2261d: "ni3", // 𢘝
+ 0x2261f: "qiao2", // 𢘟
+ 0x22627: "ruan3", // 𢘧
+ 0x22638: "jiang4", // 𢘸
+ 0x22639: "cha1", // 𢘹
+ 0x2263a: "mi3", // 𢘺
+ 0x2263d: "yi4", // 𢘽
+ 0x2263f: "suo1", // 𢘿
+ 0x22641: "wu4", // 𢙁
+ 0x22642: "xuan1", // 𢙂
+ 0x22645: "xi2", // 𢙅
+ 0x22647: "yi3", // 𢙇
+ 0x22650: "nao2", // 𢙐
+ 0x22653: "wei4", // 𢙓
+ 0x2266e: "kan4", // 𢙮
+ 0x22671: "long4", // 𢙱
+ 0x22672: "lv3", // 𢙲
+ 0x22673: "zhuang3", // 𢙳
+ 0x2267a: "zhi4", // 𢙺
+ 0x2267c: "xing4", // 𢙼
+ 0x2267e: "geng3", // 𢙾
+ 0x2267f: "jin4", // 𢙿
+ 0x22680: "xian4", // 𢚀
+ 0x22681: "ji4", // 𢚁
+ 0x22682: "cuo4", // 𢚂
+ 0x22684: "lao2", // 𢚄
+ 0x22685: "fen3", // 𢚅
+ 0x22686: "ju4", // 𢚆
+ 0x2268b: "miao4", // 𢚋
+ 0x2268c: "xia2", // 𢚌
+ 0x22691: "su4", // 𢚑
+ 0x226a8: "zhi4", // 𢚨
+ 0x226aa: "hu4", // 𢚪
+ 0x226ab: "kou4", // 𢚫
+ 0x226ad: "suo3", // 𢚭
+ 0x226ae: "ni4", // 𢚮
+ 0x226ba: "teng1", // 𢚺
+ 0x226bb: "zhu4", // 𢚻
+ 0x226c1: "da2", // 𢛁
+ 0x226c3: "qiu2", // 𢛃
+ 0x226c4: "ya4", // 𢛄
+ 0x226c6: "xian2", // 𢛆
+ 0x226c9: "nei4", // 𢛉
+ 0x226cd: "zhi3", // 𢛍
+ 0x226ce: "bie2", // 𢛎
+ 0x226d2: "chong3", // 𢛒
+ 0x226d3: "lan2", // 𢛓
+ 0x226d4: "dong1", // 𢛔
+ 0x226d5: "qun1", // 𢛕
+ 0x226d6: "xiang4", // 𢛖
+ 0x226d8: "xiao2", // 𢛘
+ 0x226d9: "wan3", // 𢛙
+ 0x226da: "ru4", // 𢛚
+ 0x226db: "wang4", // 𢛛
+ 0x226dc: "ni4", // 𢛜
+ 0x226de: "bai1", // 𢛞
+ 0x226df: "ya4", // 𢛟
+ 0x226e5: "si1", // 𢛥
+ 0x226e6: "yin3", // 𢛦
+ 0x226e8: "yu4", // 𢛨
+ 0x226ee: "li2", // 𢛮
+ 0x226ef: "huo4", // 𢛯
+ 0x22717: "bang4", // 𢜗
+ 0x22723: "xi1", // 𢜣
+ 0x22725: "jiu1", // 𢜥
+ 0x22728: "xie4", // 𢜨
+ 0x22729: "qian1", // 𢜩
+ 0x2272a: "nuo4", // 𢜪
+ 0x2272b: "xing3", // 𢜫
+ 0x2272c: "duo2", // 𢜬
+ 0x2272d: "ji3", // 𢜭
+ 0x2272e: "wu3", // 𢜮
+ 0x2272f: "mu2", // 𢜯
+ 0x22730: "yan4", // 𢜰
+ 0x22731: "qi4", // 𢜱
+ 0x22732: "na2", // 𢜲
+ 0x22733: "chi4", // 𢜳
+ 0x22734: "hou2", // 𢜴
+ 0x22736: "sao4", // 𢜶
+ 0x22738: "nao2", // 𢜸
+ 0x2273b: "cheng3", // 𢜻
+ 0x2273c: "cheng3", // 𢜼
+ 0x2273d: "kui3", // 𢜽
+ 0x2273f: "jia4", // 𢜿
+ 0x22740: "tu2", // 𢝀
+ 0x22741: "hong1", // 𢝁
+ 0x22742: "du2", // 𢝂
+ 0x22745: "xia2", // 𢝅
+ 0x22746: "zhong4", // 𢝆
+ 0x22747: "huo4", // 𢝇
+ 0x22748: "chong2", // 𢝈
+ 0x22749: "da2", // 𢝉
+ 0x2274c: "mao4", // 𢝌
+ 0x2274d: "yao4", // 𢝍
+ 0x22753: "juan1", // 𢝓
+ 0x2276c: "shi4", // 𢝬
+ 0x2276f: "yin2", // 𢝯
+ 0x22773: "gu3", // 𢝳
+ 0x22774: "wu4", // 𢝴
+ 0x22778: "guo4", // 𢝸
+ 0x22779: "ti4", // 𢝹
+ 0x2277b: "hong1", // 𢝻
+ 0x22787: "re3", // 𢞇
+ 0x22789: "yi2", // 𢞉
+ 0x2278b: "tun3", // 𢞋
+ 0x2278f: "qiong2", // 𢞏
+ 0x22790: "hai4", // 𢞐
+ 0x22792: "qi4", // 𢞒
+ 0x22795: "huo4", // 𢞕
+ 0x22796: "ti4", // 𢞖
+ 0x22797: "pi1", // 𢞗
+ 0x2279a: "geng3", // 𢞚
+ 0x2279c: "xie4", // 𢞜
+ 0x2279e: "mi4", // 𢞞
+ 0x2279f: "gao4", // 𢞟
+ 0x227a0: "ta1", // 𢞠
+ 0x227a1: "xiang3", // 𢞡
+ 0x227a3: "shu1", // 𢞣
+ 0x227a6: "fu2", // 𢞦
+ 0x227ac: "zhuan1", // 𢞬
+ 0x227ad: "liu4", // 𢞭
+ 0x227c5: "you2", // 𢟅
+ 0x227ca: "cheng3", // 𢟊
+ 0x227cb: "dui1", // 𢟋
+ 0x227e2: "li2", // 𢟢
+ 0x227e3: "yang4", // 𢟣
+ 0x227e4: "li2", // 𢟤
+ 0x227e7: "lu3", // 𢟧
+ 0x227e8: "mu3", // 𢟨
+ 0x227e9: "sui4", // 𢟩
+ 0x227ea: "ai4", // 𢟪
+ 0x227ed: "kou4", // 𢟭
+ 0x227ef: "zhe2", // 𢟯
+ 0x227f0: "ai4", // 𢟰
+ 0x227f1: "teng2", // 𢟱
+ 0x227f3: "lv4", // 𢟳
+ 0x227f4: "tui2", // 𢟴
+ 0x227f5: "bi1", // 𢟵
+ 0x227fe: "hui4", // 𢟾
+ 0x227ff: "huan2", // 𢟿
+ 0x2281b: "kuo4", // 𢠛
+ 0x2281d: "xin1", // 𢠝
+ 0x22821: "sao4", // 𢠡
+ 0x2282b: "shu4", // 𢠫
+ 0x2282c: "que4", // 𢠬
+ 0x2282d: "ba1", // 𢠭
+ 0x2282e: "tui4", // 𢠮
+ 0x22832: "fu4", // 𢠲
+ 0x22833: "bie1", // 𢠳
+ 0x22835: "tang3", // 𢠵
+ 0x22837: "xiang4", // 𢠷
+ 0x22839: "si1", // 𢠹
+ 0x2283a: "bo2", // 𢠺
+ 0x2283c: "mai2", // 𢠼
+ 0x2283d: "dang4", // 𢠽
+ 0x2283f: "gui4", // 𢠿
+ 0x22840: "hei1", // 𢡀
+ 0x22841: "xi1", // 𢡁
+ 0x22842: "dang4", // 𢡂
+ 0x22843: "yi4", // 𢡃
+ 0x22845: "bi1", // 𢡅
+ 0x22847: "gu1", // 𢡇
+ 0x22848: "cui4", // 𢡈
+ 0x22849: "se4", // 𢡉
+ 0x2284d: "ge2", // 𢡍
+ 0x2284e: "yu4", // 𢡎
+ 0x2284f: "na3", // 𢡏
+ 0x22851: "li4", // 𢡑
+ 0x22852: "zhi4", // 𢡒
+ 0x22870: "zhao4", // 𢡰
+ 0x22874: "ji1", // 𢡴
+ 0x22875: "ruan3", // 𢡵
+ 0x22879: "chong4", // 𢡹
+ 0x22882: "jie2", // 𢢂
+ 0x2288c: "chang4", // 𢢌
+ 0x2288d: "zhe2", // 𢢍
+ 0x22892: "su4", // 𢢒
+ 0x22893: "yong1", // 𢢓
+ 0x22896: "qi4", // 𢢖
+ 0x22897: "zhuo2", // 𢢗
+ 0x2289a: "kai4", // 𢢚
+ 0x2289c: "ye4", // 𢢜
+ 0x2289e: "qi4", // 𢢞
+ 0x228b9: "xiong4", // 𢢹
+ 0x228c9: "yi1", // 𢣉
+ 0x228ca: "chou3", // 𢣊
+ 0x228ce: "tuan3", // 𢣎
+ 0x228cf: "ai4", // 𢣏
+ 0x228d0: "pin1", // 𢣐
+ 0x228d3: "lie4", // 𢣓
+ 0x228d4: "mian2", // 𢣔
+ 0x228d5: "ai4", // 𢣕
+ 0x228d7: "mo3", // 𢣗
+ 0x228d8: "wei4", // 𢣘
+ 0x228d9: "ying4", // 𢣙
+ 0x228da: "ni3", // 𢣚
+ 0x228de: "bo2", // 𢣞
+ 0x228e0: "liu4", // 𢣠
+ 0x228f3: "rui4", // 𢣳
+ 0x228fb: "lv2", // 𢣻
+ 0x228fc: "cha2", // 𢣼
+ 0x228ff: "chu4", // 𢣿
+ 0x22901: "sao4", // 𢤁
+ 0x22902: "li2", // 𢤂
+ 0x22904: "song1", // 𢤄
+ 0x22906: "li4", // 𢤆
+ 0x2290b: "xi4", // 𢤋
+ 0x2290d: "yan1", // 𢤍
+ 0x2290e: "cuo1", // 𢤎
+ 0x22910: "liu2", // 𢤐
+ 0x22918: "meng2", // 𢤘
+ 0x2291a: "zhan4", // 𢤚
+ 0x22924: "zhuang4", // 𢤤
+ 0x22927: "miao3", // 𢤧
+ 0x22929: "li4", // 𢤩
+ 0x2292b: "ju3", // 𢤫
+ 0x2292f: "xie4", // 𢤯
+ 0x22930: "xie4", // 𢤰
+ 0x22931: "long3", // 𢤱
+ 0x22932: "long2", // 𢤲
+ 0x22942: "teng2", // 𢥂
+ 0x22943: "zhu4", // 𢥃
+ 0x2294b: "chan2", // 𢥋
+ 0x2294c: "xian3", // 𢥌
+ 0x2294f: "ying2", // 𢥏
+ 0x22950: "pei4", // 𢥐
+ 0x22958: "xie2", // 𢥘
+ 0x2295a: "jiao4", // 𢥚
+ 0x2295e: "chong1", // 𢥞
+ 0x22973: "he1", // 𢥳
+ 0x2297d: "tun3", // 𢥽
+ 0x22985: "hong3", // 𢦅
+ 0x22988: "man2", // 𢦈
+ 0x2298a: "jin1", // 𢦊
+ 0x2298c: "qu2", // 𢦌
+ 0x2298d: "dou3", // 𢦍
+ 0x2298e: "qiu2", // 𢦎
+ 0x2298f: "zai1", // 𢦏
+ 0x22991: "sheng1", // 𢦑
+ 0x22992: "zai1", // 𢦒
+ 0x22995: "yi3", // 𢦕
+ 0x2299a: "hua4", // 𢦚
+ 0x2299f: "kan1", // 𢦟
+ 0x229b0: "yue4", // 𢦰
+ 0x229b1: "ni4", // 𢦱
+ 0x229b2: "si1", // 𢦲
+ 0x229b4: "wo3", // 𢦴
+ 0x229b8: "can2", // 𢦸
+ 0x229ba: "jian1", // 𢦺
+ 0x229bc: "mie4", // 𢦼
+ 0x229bd: "shao2", // 𢦽
+ 0x229bf: "rong3", // 𢦿
+ 0x229c0: "gan1", // 𢧀
+ 0x229c5: "qiang2", // 𢧅
+ 0x229c7: "shu2", // 𢧇
+ 0x229c8: "zhuo2", // 𢧈
+ 0x229cf: "shi1", // 𢧏
+ 0x229d1: "ti4", // 𢧑
+ 0x229d6: "zha2", // 𢧖
+ 0x229d7: "zhan1", // 𢧗
+ 0x229dd: "fen4", // 𢧝
+ 0x229de: "mie4", // 𢧞
+ 0x229e0: "ze4", // 𢧠
+ 0x229e4: "zhi4", // 𢧤
+ 0x229e5: "qian1", // 𢧥
+ 0x229e6: "han4", // 𢧦
+ 0x229e7: "ge2", // 𢧧
+ 0x229ee: "can2", // 𢧮
+ 0x229f0: "guo2", // 𢧰
+ 0x229f1: "jiao1", // 𢧱
+ 0x229f3: "yong1", // 𢧳
+ 0x229f4: "ao2", // 𢧴
+ 0x229fb: "zha2", // 𢧻
+ 0x229fd: "xi4", // 𢧽
+ 0x22a01: "xu1", // 𢨁
+ 0x22a02: "wu3", // 𢨂
+ 0x22a0f: "jue2", // 𢨏
+ 0x22a10: "ji1", // 𢨐
+ 0x22a12: "chi4", // 𢨒
+ 0x22a14: "wan3", // 𢨔
+ 0x22a16: "mie4", // 𢨖
+ 0x22a17: "zei2", // 𢨗
+ 0x22a1c: "jie2", // 𢨜
+ 0x22a1d: "shi2", // 𢨝
+ 0x22a1f: "xi1", // 𢨟
+ 0x22a21: "e4", // 𢨡
+ 0x22a25: "hu4", // 𢨥
+ 0x22a26: "hu4", // 𢨦
+ 0x22a28: "li4", // 𢨨
+ 0x22a2b: "chu4", // 𢨫
+ 0x22a2e: "yi1", // 𢨮
+ 0x22a2f: "mao3", // 𢨯
+ 0x22a30: "xu1", // 𢨰
+ 0x22a31: "zhong1", // 𢨱
+ 0x22a33: "yi4", // 𢨳
+ 0x22a3a: "liao2", // 𢨺
+ 0x22a3f: "jian1", // 𢨿
+ 0x22a40: "jian3", // 𢩀
+ 0x22a41: "ju2", // 𢩁
+ 0x22a44: "zhu4", // 𢩄
+ 0x22a48: "wu3", // 𢩈
+ 0x22a4f: "ke4", // 𢩏
+ 0x22a50: "ke3", // 𢩐
+ 0x22a51: "li4", // 𢩑
+ 0x22a52: "bi3", // 𢩒
+ 0x22a53: "ge2", // 𢩓
+ 0x22a55: "xu1", // 𢩕
+ 0x22a56: "sha1", // 𢩖
+ 0x22a57: "ling2", // 𢩗
+ 0x22a58: "ke1", // 𢩘
+ 0x22a5e: "bo2", // 𢩞
+ 0x22a5f: "bian1", // 𢩟
+ 0x22a60: "shuan1", // 𢩠
+ 0x22a61: "qi2", // 𢩡
+ 0x22a62: "shan4", // 𢩢
+ 0x22a66: "ji1", // 𢩦
+ 0x22a68: "qiao3", // 𢩨
+ 0x22a6e: "yi4", // 𢩮
+ 0x22a6f: "jue2", // 𢩯
+ 0x22a70: "zhang3", // 𢩰
+ 0x22a72: "xin4", // 𢩲
+ 0x22a77: "tuo1", // 𢩷
+ 0x22a78: "hai4", // 𢩸
+ 0x22a79: "xia4", // 𢩹
+ 0x22a7b: "tuo2", // 𢩻
+ 0x22a7c: "yi2", // 𢩼
+ 0x22a83: "cu4", // 𢪃
+ 0x22a87: "jiang1", // 𢪇
+ 0x22a88: "nan2", // 𢪈
+ 0x22a8b: "peng3", // 𢪋
+ 0x22a8d: "jie2", // 𢪍
+ 0x22a8e: "xue1", // 𢪎
+ 0x22a8f: "hu2", // 𢪏
+ 0x22aa5: "you3", // 𢪥
+ 0x22aa6: "nu3", // 𢪦
+ 0x22aa7: "ye4", // 𢪧
+ 0x22aaa: "yin4", // 𢪪
+ 0x22aac: "kong3", // 𢪬
+ 0x22ab6: "xiao1", // 𢪶
+ 0x22ab7: "xiang1", // 𢪷
+ 0x22abc: "nao2", // 𢪼
+ 0x22abe: "zhang4", // 𢪾
+ 0x22ad0: "jie2", // 𢫐
+ 0x22ad3: "nu3", // 𢫓
+ 0x22ad4: "shan4", // 𢫔
+ 0x22ae2: "jia2", // 𢫢
+ 0x22ae7: "zhou3", // 𢫧
+ 0x22ae8: "rong3", // 𢫨
+ 0x22aeb: "lu4", // 𢫫
+ 0x22aec: "sa4", // 𢫬
+ 0x22aed: "nu4", // 𢫭
+ 0x22aef: "bo2", // 𢫯
+ 0x22af0: "zhe2", // 𢫰
+ 0x22af2: "qin3", // 𢫲
+ 0x22af4: "ci1", // 𢫴
+ 0x22af5: "zu2", // 𢫵
+ 0x22af7: "wo3", // 𢫷
+ 0x22af8: "wu3", // 𢫸
+ 0x22afb: "nie2", // 𢫻
+ 0x22aff: "xian1", // 𢫿
+ 0x22b00: "hong2", // 𢬀
+ 0x22b2b: "ting4", // 𢬫
+ 0x22b2c: "jin3", // 𢬬
+ 0x22b31: "jie2", // 𢬱
+ 0x22b32: "he4", // 𢬲
+ 0x22b33: "tu1", // 𢬳
+ 0x22b34: "zhe2", // 𢬴
+ 0x22b35: "pin1", // 𢬵
+ 0x22b36: "jin4", // 𢬶
+ 0x22b37: "nan4", // 𢬷
+ 0x22b3c: "dun4", // 𢬼
+ 0x22b3e: "xi1", // 𢬾
+ 0x22b3f: "xie4", // 𢬿
+ 0x22b41: "xi4", // 𢭁
+ 0x22b42: "lao2", // 𢭂
+ 0x22b43: "duan3", // 𢭃
+ 0x22b44: "ji4", // 𢭄
+ 0x22b45: "cha1", // 𢭅
+ 0x22b46: "chou1", // 𢭆
+ 0x22b48: "gang1", // 𢭈
+ 0x22b4e: "xiang2", // 𢭎
+ 0x22b4f: "dao3", // 𢭏
+ 0x22b65: "bian4", // 𢭥
+ 0x22b66: "xiao1", // 𢭦
+ 0x22b67: "xin1", // 𢭧
+ 0x22b81: "yu3", // 𢮁
+ 0x22b82: "xian2", // 𢮂
+ 0x22b83: "li2", // 𢮃
+ 0x22b84: "qian3", // 𢮄
+ 0x22b87: "mei3", // 𢮇
+ 0x22b89: "qiao1", // 𢮉
+ 0x22b8a: "ya4", // 𢮊
+ 0x22b8c: "qia1", // 𢮌
+ 0x22b8d: "qiong4", // 𢮍
+ 0x22b8f: "bang4", // 𢮏
+ 0x22b90: "zheng1", // 𢮐
+ 0x22b9a: "ze4", // 𢮚
+ 0x22b9b: "shuan4", // 𢮛
+ 0x22b9e: "sao4", // 𢮞
+ 0x22bc5: "lu4", // 𢯅
+ 0x22bc9: "xie2", // 𢯉
+ 0x22bcb: "fu3", // 𢯋
+ 0x22bcc: "zhai4", // 𢯌
+ 0x22be9: "ze4", // 𢯩
+ 0x22beb: "duan4", // 𢯫
+ 0x22bed: "deng4", // 𢯭
+ 0x22bee: "yu4", // 𢯮
+ 0x22bf0: "lv4", // 𢯰
+ 0x22bf2: "wan4", // 𢯲
+ 0x22bf3: "xue2", // 𢯳
+ 0x22bf4: "jiao3", // 𢯴
+ 0x22bf5: "yue3", // 𢯵
+ 0x22bf6: "zhi4", // 𢯶
+ 0x22bf7: "wei3", // 𢯷
+ 0x22bf9: "ge2", // 𢯹
+ 0x22bfa: "ju3", // 𢯺
+ 0x22bfc: "yan3", // 𢯼
+ 0x22bfd: "cuo4", // 𢯽
+ 0x22bfe: "mao4", // 𢯾
+ 0x22c06: "fu2", // 𢰆
+ 0x22c07: "ai1", // 𢰇
+ 0x22c0a: "xuan1", // 𢰊
+ 0x22c0c: "gang1", // 𢰌
+ 0x22c0d: "an1", // 𢰍
+ 0x22c12: "ji2", // 𢰒
+ 0x22c18: "pi2", // 𢰘
+ 0x22c19: "zhi3", // 𢰙
+ 0x22c1c: "nuo2", // 𢰜
+ 0x22c3f: "pan4", // 𢰿
+ 0x22c41: "yi2", // 𢱁
+ 0x22c44: "jie2", // 𢱄
+ 0x22c46: "zi1", // 𢱆
+ 0x22c48: "jia4", // 𢱈
+ 0x22c49: "wai3", // 𢱉
+ 0x22c4c: "jia4", // 𢱌
+ 0x22c5f: "chan3", // 𢱟
+ 0x22c61: "suo3", // 𢱡
+ 0x22c62: "suo3", // 𢱢
+ 0x22c63: "ji2", // 𢱣
+ 0x22c64: "song3", // 𢱤
+ 0x22c66: "ti1", // 𢱦
+ 0x22c67: "pi1", // 𢱧
+ 0x22c68: "po2", // 𢱨
+ 0x22c6e: "mi4", // 𢱮
+ 0x22c74: "ye4", // 𢱴
+ 0x22c76: "qin4", // 𢱶
+ 0x22c77: "jin4", // 𢱷
+ 0x22c7a: "jue1", // 𢱺
+ 0x22c7d: "yuan1", // 𢱽
+ 0x22c7e: "ruan2", // 𢱾
+ 0x22c94: "ban4", // 𢲔
+ 0x22cb0: "bin1", // 𢲰
+ 0x22cb4: "wei4", // 𢲴
+ 0x22cb5: "zao4", // 𢲵
+ 0x22cb6: "qie4", // 𢲶
+ 0x22cb7: "sou1", // 𢲷
+ 0x22cb8: "lu3", // 𢲸
+ 0x22cbc: "die2", // 𢲼
+ 0x22cbd: "chuai1", // 𢲽
+ 0x22cbe: "bi4", // 𢲾
+ 0x22cbf: "zhu2", // 𢲿
+ 0x22cc0: "ma1", // 𢳀
+ 0x22cc1: "fei4", // 𢳁
+ 0x22cc2: "pie1", // 𢳂
+ 0x22cc3: "yin4", // 𢳃
+ 0x22cc4: "xuan4", // 𢳄
+ 0x22cc6: "ao4", // 𢳆
+ 0x22cc7: "zhuo2", // 𢳇
+ 0x22cc8: "zu2", // 𢳈
+ 0x22ccb: "bi3", // 𢳋
+ 0x22cd1: "lang4", // 𢳑
+ 0x22cd3: "ti4", // 𢳓
+ 0x22cd9: "tiao3", // 𢳙
+ 0x22cda: "jian1", // 𢳚
+ 0x22cdf: "tong3", // 𢳟
+ 0x22cfd: "duo1", // 𢳽
+ 0x22cfe: "dong4", // 𢳾
+ 0x22d02: "bian3", // 𢴂
+ 0x22d20: "zhi4", // 𢴠
+ 0x22d22: "fen2", // 𢴢
+ 0x22d26: "kang2", // 𢴦
+ 0x22d27: "zhi4", // 𢴧
+ 0x22d28: "zhai1", // 𢴨
+ 0x22d29: "bi4", // 𢴩
+ 0x22d2a: "kuan3", // 𢴪
+ 0x22d2c: "ban4", // 𢴬
+ 0x22d2d: "jue1", // 𢴭
+ 0x22d2e: "qu1", // 𢴮
+ 0x22d30: "qi1", // 𢴰
+ 0x22d31: "lei2", // 𢴱
+ 0x22d32: "xie2", // 𢴲
+ 0x22d33: "tang1", // 𢴳
+ 0x22d3c: "sou1", // 𢴼
+ 0x22d3e: "bei4", // 𢴾
+ 0x22d47: "yang4", // 𢵇
+ 0x22d48: "jian3", // 𢵈
+ 0x22d65: "zao4", // 𢵥
+ 0x22d80: "zhuai4", // 𢶀
+ 0x22d83: "fan2", // 𢶃
+ 0x22d85: "she2", // 𢶅
+ 0x22d87: "qiong2", // 𢶇
+ 0x22d89: "po4", // 𢶉
+ 0x22d8b: "tie3", // 𢶋
+ 0x22d8c: "sha1", // 𢶌
+ 0x22d8d: "za2", // 𢶍
+ 0x22d91: "niao3", // 𢶑
+ 0x22d92: "guai4", // 𢶒
+ 0x22d93: "cui3", // 𢶓
+ 0x22da1: "qiao4", // 𢶡
+ 0x22da3: "die2", // 𢶣
+ 0x22db3: "pin1", // 𢶳
+ 0x22db4: "ci2", // 𢶴
+ 0x22db6: "bang4", // 𢶶
+ 0x22dcd: "yin4", // 𢷍
+ 0x22dd1: "xian3", // 𢷑
+ 0x22dd4: "yi3", // 𢷔
+ 0x22dd5: "miao3", // 𢷕
+ 0x22dd6: "duan3", // 𢷖
+ 0x22dd7: "zhou4", // 𢷗
+ 0x22dd9: "kong1", // 𢷙
+ 0x22de2: "zhang1", // 𢷢
+ 0x22df6: "liu2", // 𢷶
+ 0x22df8: "zhi3", // 𢷸
+ 0x22df9: "chan3", // 𢷹
+ 0x22dfa: "du2", // 𢷺
+ 0x22dfb: "yuan2", // 𢷻
+ 0x22dfe: "suo4", // 𢷾
+ 0x22dff: "jie2", // 𢷿
+ 0x22e00: "li4", // 𢸀
+ 0x22e01: "gong3", // 𢸁
+ 0x22e0c: "bang1", // 𢸌
+ 0x22e17: "guo2", // 𢸗
+ 0x22e18: "liao2", // 𢸘
+ 0x22e19: "shen3", // 𢸙
+ 0x22e23: "niao3", // 𢸣
+ 0x22e25: "cuan4", // 𢸥
+ 0x22e26: "wei3", // 𢸦
+ 0x22e28: "tuo1", // 𢸨
+ 0x22e2b: "su1", // 𢸫
+ 0x22e2d: "long2", // 𢸭
+ 0x22e33: "xiao1", // 𢸳
+ 0x22e34: "yan3", // 𢸴
+ 0x22e43: "qing3", // 𢹃
+ 0x22e4d: "xi1", // 𢹍
+ 0x22e4f: "yu2", // 𢹏
+ 0x22e51: "zheng4", // 𢹑
+ 0x22e52: "xie4", // 𢹒
+ 0x22e53: "chai1", // 𢹓
+ 0x22e54: "fen4", // 𢹔
+ 0x22e56: "guo2", // 𢹖
+ 0x22e58: "jing3", // 𢹘
+ 0x22e59: "lan4", // 𢹙
+ 0x22e5a: "xian1", // 𢹚
+ 0x22e5d: "ling2", // 𢹝
+ 0x22e6e: "lei3", // 𢹮
+ 0x22e72: "jun4", // 𢹲
+ 0x22e73: "xiao4", // 𢹳
+ 0x22e7c: "za2", // 𢹼
+ 0x22e84: "guan1", // 𢺄
+ 0x22e85: "qie4", // 𢺅
+ 0x22e86: "luo4", // 𢺆
+ 0x22e87: "yao4", // 𢺇
+ 0x22e88: "luan2", // 𢺈
+ 0x22e89: "ta4", // 𢺉
+ 0x22e91: "luo4", // 𢺑
+ 0x22e9e: "ba3", // 𢺞
+ 0x22e9f: "chan4", // 𢺟
+ 0x22ea1: "zhuo2", // 𢺡
+ 0x22eab: "tiao3", // 𢺫
+ 0x22eaf: "wan1", // 𢺯
+ 0x22eb0: "ling2", // 𢺰
+ 0x22eb4: "yu4", // 𢺴
+ 0x22eb5: "qi4", // 𢺵
+ 0x22eb7: "qi2", // 𢺷
+ 0x22ebc: "ji4", // 𢺼
+ 0x22ebd: "bo2", // 𢺽
+ 0x22ebf: "shi1", // 𢺿
+ 0x22ec0: "fu3", // 𢻀
+ 0x22ec2: "gui1", // 𢻂
+ 0x22ec5: "dian3", // 𢻅
+ 0x22ec7: "hao1", // 𢻇
+ 0x22ec9: "gai3", // 𢻉
+ 0x22ecb: "qi2", // 𢻋
+ 0x22ed3: "cheng2", // 𢻓
+ 0x22ed4: "hui4", // 𢻔
+ 0x22ed7: "xia2", // 𢻗
+ 0x22ed8: "shi2", // 𢻘
+ 0x22ed9: "zhi4", // 𢻙
+ 0x22eda: "qi2", // 𢻚
+ 0x22edc: "hai4", // 𢻜
+ 0x22edf: "jiao3", // 𢻟
+ 0x22ee0: "li4", // 𢻠
+ 0x22ee2: "liao3", // 𢻢
+ 0x22ee4: "qiao1", // 𢻤
+ 0x22ee8: "sa4", // 𢻨
+ 0x22eea: "qi1", // 𢻪
+ 0x22eeb: "shi1", // 𢻫
+ 0x22eee: "jie2", // 𢻮
+ 0x22ef5: "bei4", // 𢻵
+ 0x22ef6: "bian1", // 𢻶
+ 0x22ef7: "ba1", // 𢻷
+ 0x22ef8: "jun1", // 𢻸
+ 0x22ef9: "pi1", // 𢻹
+ 0x22efc: "dan3", // 𢻼
+ 0x22eff: "tang2", // 𢻿
+ 0x22f00: "kui3", // 𢼀
+ 0x22f01: "ku1", // 𢼁
+ 0x22f03: "kou3", // 𢼃
+ 0x22f09: "shi1", // 𢼉
+ 0x22f0a: "shi1", // 𢼊
+ 0x22f0b: "ji1", // 𢼋
+ 0x22f0c: "bao4", // 𢼌
+ 0x22f10: "ke3", // 𢼐
+ 0x22f11: "kuang1", // 𢼑
+ 0x22f16: "min3", // 𢼖
+ 0x22f19: "liao2", // 𢼙
+ 0x22f1a: "e4", // 𢼚
+ 0x22f1b: "ge2", // 𢼛
+ 0x22f1f: "wang3", // 𢼟
+ 0x22f20: "duo2", // 𢼠
+ 0x22f23: "qia4", // 𢼣
+ 0x22f24: "hua2", // 𢼤
+ 0x22f26: "hong3", // 𢼦
+ 0x22f29: "peng1", // 𢼩
+ 0x22f2b: "jiao4", // 𢼫
+ 0x22f30: "qu1", // 𢼰
+ 0x22f31: "zi4", // 𢼱
+ 0x22f32: "zhou4", // 𢼲
+ 0x22f33: "kuang1", // 𢼳
+ 0x22f35: "sha1", // 𢼵
+ 0x22f37: "ji4", // 𢼷
+ 0x22f38: "wei1", // 𢼸
+ 0x22f39: "pu1", // 𢼹
+ 0x22f3a: "xue2", // 𢼺
+ 0x22f3c: "shao1", // 𢼼
+ 0x22f42: "lang2", // 𢽂
+ 0x22f43: "zhi3", // 𢽃
+ 0x22f44: "ting3", // 𢽄
+ 0x22f47: "da4", // 𢽇
+ 0x22f55: "yang2", // 𢽕
+ 0x22f56: "jin4", // 𢽖
+ 0x22f57: "zhi3", // 𢽗
+ 0x22f5a: "zhuo2", // 𢽚
+ 0x22f5c: "za2", // 𢽜
+ 0x22f5d: "chan2", // 𢽝
+ 0x22f62: "mao4", // 𢽢
+ 0x22f66: "kong1", // 𢽦
+ 0x22f67: "zhou1", // 𢽧
+ 0x22f68: "hu1", // 𢽨
+ 0x22f69: "peng1", // 𢽩
+ 0x22f6d: "jiu4", // 𢽭
+ 0x22f78: "chuo4", // 𢽸
+ 0x22f79: "min3", // 𢽹
+ 0x22f7e: "xiao4", // 𢽾
+ 0x22f80: "du3", // 𢾀
+ 0x22f81: "wei2", // 𢾁
+ 0x22f83: "can2", // 𢾃
+ 0x22f84: "yu2", // 𢾄
+ 0x22f85: "du4", // 𢾅
+ 0x22f86: "kai1", // 𢾆
+ 0x22f87: "pi4", // 𢾇
+ 0x22f8a: "cheng2", // 𢾊
+ 0x22f8e: "chun3", // 𢾎
+ 0x22f90: "shao3", // 𢾐
+ 0x22f91: "yan3", // 𢾑
+ 0x22f92: "kuai4", // 𢾒
+ 0x22f94: "yue1", // 𢾔
+ 0x22fa6: "qi2", // 𢾦
+ 0x22fa7: "zheng1", // 𢾧
+ 0x22fa9: "ke4", // 𢾩
+ 0x22faa: "qi2", // 𢾪
+ 0x22fab: "zhi3", // 𢾫
+ 0x22fac: "lu4", // 𢾬
+ 0x22fb1: "pi1", // 𢾱
+ 0x22fb2: "nuo4", // 𢾲
+ 0x22fb3: "pao3", // 𢾳
+ 0x22fba: "fei3", // 𢾺
+ 0x22fbf: "wen2", // 𢾿
+ 0x22fc2: "meng2", // 𢿂
+ 0x22fc8: "shan3", // 𢿈
+ 0x22fcc: "xiong4", // 𢿌
+ 0x22fce: "duo4", // 𢿎
+ 0x22fcf: "biao4", // 𢿏
+ 0x22fda: "you1", // 𢿚
+ 0x22fdc: "man4", // 𢿜
+ 0x22fde: "liao3", // 𢿞
+ 0x22fe1: "xie2", // 𢿡
+ 0x22fe2: "luan4", // 𢿢
+ 0x22fe3: "qiao1", // 𢿣
+ 0x22fe4: "deng4", // 𢿤
+ 0x22fe6: "cheng2", // 𢿦
+ 0x22fe7: "cheng2", // 𢿧
+ 0x22fed: "chuo4", // 𢿭
+ 0x22ff8: "ce4", // 𢿸
+ 0x23000: "lei2", // 𣀀
+ 0x23001: "zhan3", // 𣀁
+ 0x23002: "li3", // 𣀂
+ 0x23003: "lian2", // 𣀃
+ 0x23004: "qun2", // 𣀄
+ 0x2300d: "chen2", // 𣀍
+ 0x2300f: "cheng2", // 𣀏
+ 0x23010: "gu1", // 𣀐
+ 0x23012: "zong4", // 𣀒
+ 0x23013: "chou2", // 𣀓
+ 0x23014: "chuan4", // 𣀔
+ 0x2301c: "lei4", // 𣀜
+ 0x2301d: "shuo4", // 𣀝
+ 0x2301e: "lv4", // 𣀞
+ 0x23023: "fu2", // 𣀣
+ 0x23025: "li4", // 𣀥
+ 0x23027: "san4", // 𣀧
+ 0x2302b: "san1", // 𣀫
+ 0x2302f: "sa4", // 𣀯
+ 0x23033: "nie4", // 𣀳
+ 0x23036: "zuan1", // 𣀶
+ 0x23037: "li3", // 𣀷
+ 0x2303b: "shu3", // 𣀻
+ 0x2303e: "fu2", // 𣀾
+ 0x23049: "bi4", // 𣁉
+ 0x2304d: "dao4", // 𣁍
+ 0x23052: "shi1", // 𣁒
+ 0x23056: "gan4", // 𣁖
+ 0x23057: "tan4", // 𣁗
+ 0x2305c: "man4", // 𣁜
+ 0x2305f: "li2", // 𣁟
+ 0x23062: "bi4", // 𣁢
+ 0x23066: "pan2", // 𣁦
+ 0x23068: "you1", // 𣁨
+ 0x2306d: "jiu1", // 𣁭
+ 0x2306f: "guo1", // 𣁯
+ 0x23070: "liao2", // 𣁰
+ 0x23073: "wo4", // 𣁳
+ 0x23074: "qia4", // 𣁴
+ 0x23075: "dou3", // 𣁵
+ 0x23077: "lie4", // 𣁷
+ 0x23079: "jiao3", // 𣁹
+ 0x2307b: "lie4", // 𣁻
+ 0x23081: "tiao1", // 𣂁
+ 0x23084: "guo1", // 𣂄
+ 0x23086: "pang1", // 𣂆
+ 0x23087: "qiao1", // 𣂇
+ 0x23089: "di2", // 𣂉
+ 0x2308a: "yun4", // 𣂊
+ 0x23092: "le4", // 𣂒
+ 0x23096: "si1", // 𣂖
+ 0x23097: "xin1", // 𣂗
+ 0x2309c: "xin1", // 𣂜
+ 0x2309d: "xiang4", // 𣂝
+ 0x2309e: "luo3", // 𣂞
+ 0x230a4: "beng1", // 𣂤
+ 0x230a5: "tiao1", // 𣂥
+ 0x230ac: "xiao4", // 𣂬
+ 0x230ae: "dou1", // 𣂮
+ 0x230b3: "dang4", // 𣂳
+ 0x230b4: "ting2", // 𣂴
+ 0x230b5: "zhuan4", // 𣂵
+ 0x230bb: "ou1", // 𣂻
+ 0x230bd: "wo4", // 𣂽
+ 0x230c4: "xin1", // 𣃄
+ 0x230c5: "ruan3", // 𣃅
+ 0x230c8: "zhuo2", // 𣃈
+ 0x230c9: "dang4", // 𣃉
+ 0x230cd: "cui4", // 𣃍
+ 0x230d1: "zhuo2", // 𣃑
+ 0x230d7: "cong2", // 𣃗
+ 0x230d8: "chan3", // 𣃘
+ 0x230dd: "yang3", // 𣃝
+ 0x230e7: "yan3", // 𣃧
+ 0x230f3: "yan3", // 𣃳
+ 0x230f5: "zhen4", // 𣃵
+ 0x230fd: "nuo3", // 𣃽
+ 0x230fe: "yan4", // 𣃾
+ 0x23105: "fang3", // 𣄅
+ 0x23109: "yan3", // 𣄉
+ 0x2310a: "yu2", // 𣄊
+ 0x2310d: "ti2", // 𣄍
+ 0x2310e: "fu4", // 𣄎
+ 0x2310f: "ben3", // 𣄏
+ 0x23111: "yan3", // 𣄑
+ 0x23113: "hui1", // 𣄓
+ 0x23119: "huang3", // 𣄙
+ 0x2311c: "gui4", // 𣄜
+ 0x2311d: "yan4", // 𣄝
+ 0x2311f: "hu2", // 𣄟
+ 0x23120: "biao1", // 𣄠
+ 0x23127: "sui4", // 𣄧
+ 0x2312e: "zi4", // 𣄮
+ 0x2312f: "ji4", // 𣄯
+ 0x23130: "e3", // 𣄰
+ 0x23131: "ji4", // 𣄱
+ 0x23132: "kui3", // 𣄲
+ 0x23134: "liang4", // 𣄴
+ 0x23138: "huo4", // 𣄸
+ 0x2313a: "wei2", // 𣄺
+ 0x2313b: "zhuo1", // 𣄻
+ 0x2313f: "ting3", // 𣄿
+ 0x23143: "zai3", // 𣅃
+ 0x23144: "you4", // 𣅄
+ 0x23149: "ren4", // 𣅉
+ 0x2314d: "mian4", // 𣅍
+ 0x2315a: "na4", // 𣅚
+ 0x2315d: "tu1", // 𣅝
+ 0x2315f: "dan1", // 𣅟
+ 0x23161: "jue2", // 𣅡
+ 0x23164: "xu1", // 𣅤
+ 0x23165: "di1", // 𣅥
+ 0x23170: "xiang4", // 𣅰
+ 0x23177: "xiong4", // 𣅷
+ 0x2317a: "you3", // 𣅺
+ 0x2317b: "gua3", // 𣅻
+ 0x2317e: "xi1", // 𣅾
+ 0x23188: "he4", // 𣆈
+ 0x2318d: "ding3", // 𣆍
+ 0x23190: "lu2", // 𣆐
+ 0x23192: "xu2", // 𣆒
+ 0x23194: "zhou4", // 𣆔
+ 0x23195: "xian4", // 𣆕
+ 0x23196: "huang1", // 𣆖
+ 0x23197: "cha1", // 𣆗
+ 0x23198: "shi3", // 𣆘
+ 0x23199: "gan4", // 𣆙
+ 0x2319a: "nuo3", // 𣆚
+ 0x2319b: "an4", // 𣆛
+ 0x2319f: "xie1", // 𣆟
+ 0x231a7: "hao4", // 𣆧
+ 0x231b2: "qin1", // 𣆲
+ 0x231b3: "geng3", // 𣆳
+ 0x231b4: "shan1", // 𣆴
+ 0x231b5: "fu2", // 𣆵
+ 0x231bd: "ze4", // 𣆽
+ 0x231c7: "dan4", // 𣇇
+ 0x231d6: "dian3", // 𣇖
+ 0x231d7: "shen1", // 𣇗
+ 0x231d9: "zu3", // 𣇙
+ 0x231e2: "bie1", // 𣇢
+ 0x231e6: "chui2", // 𣇦
+ 0x231e7: "zhe4", // 𣇧
+ 0x231e8: "dai4", // 𣇨
+ 0x231eb: "wo3", // 𣇫
+ 0x231ec: "qiong2", // 𣇬
+ 0x231f0: "lin2", // 𣇰
+ 0x231f2: "hun1", // 𣇲
+ 0x231f3: "ji1", // 𣇳
+ 0x23205: "cao2", // 𣈅
+ 0x2320a: "mu4", // 𣈊
+ 0x2320d: "die2", // 𣈍
+ 0x2320e: "wei4", // 𣈎
+ 0x23220: "bian4", // 𣈠
+ 0x23221: "ti3", // 𣈡
+ 0x23225: "tu2", // 𣈥
+ 0x23236: "geng4", // 𣈶
+ 0x23244: "chi2", // 𣉄
+ 0x23245: "cou4", // 𣉅
+ 0x23246: "ti3", // 𣉆
+ 0x23252: "huo4", // 𣉒
+ 0x23253: "qi1", // 𣉓
+ 0x23254: "sao1", // 𣉔
+ 0x23255: "sang4", // 𣉕
+ 0x23256: "xuan3", // 𣉖
+ 0x23257: "ang4", // 𣉗
+ 0x23258: "nai4", // 𣉘
+ 0x2325a: "yang2", // 𣉚
+ 0x2325b: "shu1", // 𣉛
+ 0x2325c: "sha1", // 𣉜
+ 0x23261: "ting3", // 𣉡
+ 0x23269: "ya4", // 𣉩
+ 0x2326a: "huang3", // 𣉪
+ 0x2326e: "bin1", // 𣉮
+ 0x2327e: "ou4", // 𣉾
+ 0x2327f: "cao2", // 𣉿
+ 0x23281: "ao2", // 𣊁
+ 0x23283: "mao4", // 𣊃
+ 0x23294: "meng2", // 𣊔
+ 0x23296: "tian1", // 𣊖
+ 0x2329d: "sang4", // 𣊝
+ 0x2329e: "xu4", // 𣊞
+ 0x2329f: "kan4", // 𣊟
+ 0x232a7: "lang3", // 𣊧
+ 0x232b6: "bie1", // 𣊶
+ 0x232b7: "cong2", // 𣊷
+ 0x232ba: "xian2", // 𣊺
+ 0x232c4: "tun1", // 𣋄
+ 0x232c9: "yu4", // 𣋉
+ 0x232ca: "dan4", // 𣋊
+ 0x232cb: "ying4", // 𣋋
+ 0x232cd: "zhao1", // 𣋍
+ 0x232cf: "pu4", // 𣋏
+ 0x232d8: "hui4", // 𣋘
+ 0x232de: "ai4", // 𣋞
+ 0x232df: "mo3", // 𣋟
+ 0x232e2: "jing1", // 𣋢
+ 0x232e3: "lan2", // 𣋣
+ 0x232f2: "lie4", // 𣋲
+ 0x232f3: "piao3", // 𣋳
+ 0x232f5: "bo2", // 𣋵
+ 0x232f6: "qiong2", // 𣋶
+ 0x232f9: "bi4", // 𣋹
+ 0x232ff: "yong1", // 𣋿
+ 0x23305: "li4", // 𣌅
+ 0x2330d: "nie4", // 𣌍
+ 0x2330f: "de2", // 𣌏
+ 0x23313: "huan1", // 𣌓
+ 0x23317: "yue4", // 𣌗
+ 0x2331a: "chun1", // 𣌚
+ 0x2331c: "li4", // 𣌜
+ 0x2331e: "zhang1", // 𣌞
+ 0x2331f: "ling2", // 𣌟
+ 0x23320: "chun2", // 𣌠
+ 0x23327: "ce4", // 𣌧
+ 0x23328: "xun2", // 𣌨
+ 0x2332c: "ju3", // 𣌬
+ 0x2332d: "hui5", // 𣌭
+ 0x2333e: "tong1", // 𣌾
+ 0x23346: "ning2", // 𣍆
+ 0x23347: "ju4", // 𣍇
+ 0x2334f: "cha4", // 𣍏
+ 0x23356: "zao1", // 𣍖
+ 0x2335b: "yu4", // 𣍛
+ 0x2335f: "ken3", // 𣍟
+ 0x23366: "kuang4", // 𣍦
+ 0x23367: "fei3", // 𣍧
+ 0x2336f: "yun4", // 𣍯
+ 0x23370: "qian3", // 𣍰
+ 0x23374: "quan2", // 𣍴
+ 0x23378: "po4", // 𣍸
+ 0x2337a: "pei3", // 𣍺
+ 0x23384: "geng4", // 𣎄
+ 0x23385: "yi4", // 𣎅
+ 0x23386: "luo4", // 𣎆
+ 0x23391: "kuan1", // 𣎑
+ 0x23393: "xuan3", // 𣎓
+ 0x23394: "nian4", // 𣎔
+ 0x2339a: "hu2", // 𣎚
+ 0x2339b: "ju2", // 𣎛
+ 0x233a9: "ye4", // 𣎩
+ 0x233ae: "xi1", // 𣎮
+ 0x233b1: "yue4", // 𣎱
+ 0x233b2: "tang3", // 𣎲
+ 0x233b3: "pin4", // 𣎳
+ 0x233b4: "dun3", // 𣎴
+ 0x233b5: "bei4", // 𣎵
+ 0x233b8: "liao3", // 𣎸
+ 0x233c0: "yong3", // 𣏀
+ 0x233ce: "ya1", // 𣏎
+ 0x233d1: "jiao3", // 𣏑
+ 0x233d4: "kun4", // 𣏔
+ 0x233d6: "zhen4", // 𣏖
+ 0x233d7: "shu4", // 𣏗
+ 0x233da: "shi2", // 𣏚
+ 0x233de: "you2", // 𣏞
+ 0x233df: "pai4", // 𣏟
+ 0x233e0: "xiao2", // 𣏠
+ 0x233e1: "ji2", // 𣏡
+ 0x233f6: "qi1", // 𣏶
+ 0x233f7: "he2", // 𣏷
+ 0x233fa: "kong3", // 𣏺
+ 0x23402: "ye4", // 𣐂
+ 0x23403: "chi4", // 𣐃
+ 0x2340a: "kao3", // 𣐊
+ 0x2340b: "yue4", // 𣐋
+ 0x2340e: "wa3", // 𣐎
+ 0x2340f: "nian3", // 𣐏
+ 0x23411: "ci2", // 𣐑
+ 0x23413: "yi2", // 𣐓
+ 0x23424: "jiu5", // 𣐤
+ 0x2342b: "yang1", // 𣐫
+ 0x2342c: "li2", // 𣐬
+ 0x2342e: "dai1", // 𣐮
+ 0x2342f: "chong2", // 𣐯
+ 0x23435: "yi2", // 𣐵
+ 0x2343a: "han4", // 𣐺
+ 0x2343f: "yi1", // 𣐿
+ 0x23441: "chong4", // 𣑁
+ 0x23442: "hu4", // 𣑂
+ 0x23443: "zhua3", // 𣑃
+ 0x23466: "qiong2", // 𣑦
+ 0x23467: "duo4", // 𣑧
+ 0x23478: "tong2", // 𣑸
+ 0x23479: "xian1", // 𣑹
+ 0x2347f: "fu2", // 𣑿
+ 0x23482: "dian4", // 𣒂
+ 0x23483: "xi2", // 𣒃
+ 0x23484: "xie1", // 𣒄
+ 0x23485: "zhen4", // 𣒅
+ 0x23486: "qiao4", // 𣒆
+ 0x23487: "tu1", // 𣒇
+ 0x234b7: "han4", // 𣒷
+ 0x234b8: "kuang4", // 𣒸
+ 0x234b9: "suo1", // 𣒹
+ 0x234bb: "shou4", // 𣒻
+ 0x234bc: "tiao2", // 𣒼
+ 0x234c0: "zhen1", // 𣓀
+ 0x234c3: "nei4", // 𣓃
+ 0x234c5: "qian3", // 𣓅
+ 0x234c6: "yin2", // 𣓆
+ 0x234c8: "liang3", // 𣓈
+ 0x234c9: "sha4", // 𣓉
+ 0x234ca: "zi4", // 𣓊
+ 0x234cb: "pi2", // 𣓋
+ 0x234cc: "gao1", // 𣓌
+ 0x234cf: "jin4", // 𣓏
+ 0x234d0: "you2", // 𣓐
+ 0x234d2: "shan4", // 𣓒
+ 0x234d4: "mi4", // 𣓔
+ 0x234d5: "ou4", // 𣓕
+ 0x234d7: "hu1", // 𣓗
+ 0x234db: "you4", // 𣓛
+ 0x234dd: "meng3", // 𣓝
+ 0x23510: "zhi3", // 𣔐
+ 0x23513: "bi3", // 𣔓
+ 0x23517: "shen1", // 𣔗
+ 0x23518: "qi4", // 𣔘
+ 0x23519: "xian1", // 𣔙
+ 0x2351a: "pan2", // 𣔚
+ 0x2351b: "kang3", // 𣔛
+ 0x2352b: "shuan1", // 𣔫
+ 0x2352c: "pi2", // 𣔬
+ 0x2352e: "zai1", // 𣔮
+ 0x2352f: "zhu3", // 𣔯
+ 0x23531: "sou1", // 𣔱
+ 0x23532: "jiong3", // 𣔲
+ 0x23535: "chan2", // 𣔵
+ 0x23536: "fan2", // 𣔶
+ 0x23537: "xiao2", // 𣔷
+ 0x23538: "yin3", // 𣔸
+ 0x23539: "hou2", // 𣔹
+ 0x2353a: "mao4", // 𣔺
+ 0x2353b: "tu2", // 𣔻
+ 0x2353d: "ji4", // 𣔽
+ 0x23541: "yi2", // 𣕁
+ 0x23543: "yu4", // 𣕃
+ 0x23544: "jiong1", // 𣕄
+ 0x23545: "pao4", // 𣕅
+ 0x23547: "xiao1", // 𣕇
+ 0x23549: "gou3", // 𣕉
+ 0x2354c: "gou1", // 𣕌
+ 0x2354d: "sun3", // 𣕍
+ 0x2354e: "xian3", // 𣕎
+ 0x2354f: "zhuan3", // 𣕏
+ 0x2357e: "chou2", // 𣕾
+ 0x23584: "qiao1", // 𣖄
+ 0x23585: "ti2", // 𣖅
+ 0x23586: "yun2", // 𣖆
+ 0x23589: "shan1", // 𣖉
+ 0x2358a: "lie4", // 𣖊
+ 0x2358c: "zhi3", // 𣖌
+ 0x23590: "pai1", // 𣖐
+ 0x235a3: "ju2", // 𣖣
+ 0x235a4: "lai2", // 𣖤
+ 0x235a8: "zi3", // 𣖨
+ 0x235aa: "qu2", // 𣖪
+ 0x235ab: "gu3", // 𣖫
+ 0x235ac: "jue2", // 𣖬
+ 0x235ad: "zhi2", // 𣖭
+ 0x235ae: "ang4", // 𣖮
+ 0x235af: "qin4", // 𣖯
+ 0x235b0: "pi2", // 𣖰
+ 0x235b1: "zui1", // 𣖱
+ 0x235b3: "qian2", // 𣖳
+ 0x235b5: "cuo2", // 𣖵
+ 0x235b7: "ji2", // 𣖷
+ 0x235b8: "ti2", // 𣖸
+ 0x235b9: "ru2", // 𣖹
+ 0x235bb: "hai3", // 𣖻
+ 0x235bc: "xun2", // 𣖼
+ 0x235be: "bei4", // 𣖾
+ 0x235bf: "zhi2", // 𣖿
+ 0x235c1: "dun4", // 𣗁
+ 0x235cb: "dang3", // 𣗋
+ 0x235d0: "reng2", // 𣗐
+ 0x235f2: "gan1", // 𣗲
+ 0x235f5: "gang4", // 𣗵
+ 0x235f6: "ta4", // 𣗶
+ 0x235f8: "tuo4", // 𣗸
+ 0x235f9: "yang4", // 𣗹
+ 0x235fa: "ku1", // 𣗺
+ 0x235fb: "zhi4", // 𣗻
+ 0x23616: "jian1", // 𣘖
+ 0x23617: "ni4", // 𣘗
+ 0x23618: "shen1", // 𣘘
+ 0x23619: "bang4", // 𣘙
+ 0x2361a: "shuai4", // 𣘚
+ 0x2361b: "dou1", // 𣘛
+ 0x2361d: "qian1", // 𣘝
+ 0x2361e: "han2", // 𣘞
+ 0x2361f: "qia1", // 𣘟
+ 0x23620: "gan3", // 𣘠
+ 0x23623: "chun2", // 𣘣
+ 0x23624: "cha2", // 𣘤
+ 0x23625: "bi4", // 𣘥
+ 0x23626: "yi1", // 𣘦
+ 0x23627: "fu1", // 𣘧
+ 0x23628: "e3", // 𣘨
+ 0x2362a: "lao2", // 𣘪
+ 0x2362b: "hao2", // 𣘫
+ 0x2362c: "li2", // 𣘬
+ 0x23631: "te4", // 𣘱
+ 0x23632: "shen1", // 𣘲
+ 0x23634: "yin2", // 𣘴
+ 0x23637: "jian1", // 𣘷
+ 0x2363b: "cha2", // 𣘻
+ 0x23657: "nie4", // 𣙗
+ 0x23658: "cou4", // 𣙘
+ 0x2365b: "yi2", // 𣙛
+ 0x2365f: "tang2", // 𣙟
+ 0x23662: "juan4", // 𣙢
+ 0x23670: "chi4", // 𣙰
+ 0x23671: "gou3", // 𣙱
+ 0x23674: "jie2", // 𣙴
+ 0x23675: "zhe2", // 𣙵
+ 0x23676: "hu2", // 𣙶
+ 0x23677: "mang2", // 𣙷
+ 0x2367b: "zou1", // 𣙻
+ 0x2367c: "si4", // 𣙼
+ 0x2367f: "fei4", // 𣙿
+ 0x23680: "zi1", // 𣚀
+ 0x23681: "zi1", // 𣚁
+ 0x23683: "jie2", // 𣚃
+ 0x23684: "si1", // 𣚄
+ 0x23686: "chun1", // 𣚆
+ 0x23687: "pao4", // 𣚇
+ 0x2368b: "ye2", // 𣚋
+ 0x2368c: "di1", // 𣚌
+ 0x2368e: "lei2", // 𣚎
+ 0x2368f: "xu1", // 𣚏
+ 0x23690: "ru2", // 𣚐
+ 0x23692: "pa2", // 𣚒
+ 0x23693: "juan4", // 𣚓
+ 0x23694: "xi4", // 𣚔
+ 0x23695: "ye4", // 𣚕
+ 0x23696: "an1", // 𣚖
+ 0x23698: "yi4", // 𣚘
+ 0x23699: "jian1", // 𣚙
+ 0x2369c: "song1", // 𣚜
+ 0x2369d: "wo3", // 𣚝
+ 0x2369f: "se4", // 𣚟
+ 0x236a0: "zhi3", // 𣚠
+ 0x236a1: "bi1", // 𣚡
+ 0x236a2: "zhuan4", // 𣚢
+ 0x236a6: "jiang4", // 𣚦
+ 0x236a7: "hao4", // 𣚧
+ 0x236a9: "chi4", // 𣚩
+ 0x236aa: "dun4", // 𣚪
+ 0x236d3: "bo2", // 𣛓
+ 0x236d4: "ji2", // 𣛔
+ 0x236d5: "chua3", // 𣛕
+ 0x236d7: "luo4", // 𣛗
+ 0x236da: "rui3", // 𣛚
+ 0x236eb: "hu2", // 𣛫
+ 0x236f1: "dan4", // 𣛱
+ 0x236f4: "han3", // 𣛴
+ 0x236f5: "que4", // 𣛵
+ 0x236f6: "sha1", // 𣛶
+ 0x236f7: "zhan3", // 𣛷
+ 0x236f8: "ze2", // 𣛸
+ 0x236f9: "chuan2", // 𣛹
+ 0x236fa: "qi1", // 𣛺
+ 0x236fb: "die2", // 𣛻
+ 0x236fd: "zha4", // 𣛽
+ 0x236fe: "tou4", // 𣛾
+ 0x23701: "ci1", // 𣜁
+ 0x23702: "sa4", // 𣜂
+ 0x23704: "luo2", // 𣜄
+ 0x23707: "ji2", // 𣜇
+ 0x23722: "luo3", // 𣜢
+ 0x23723: "qin2", // 𣜣
+ 0x23727: "qiong2", // 𣜧
+ 0x23728: "juan4", // 𣜨
+ 0x2372c: "ai4", // 𣜬
+ 0x2372d: "jian3", // 𣜭
+ 0x23739: "ti4", // 𣜹
+ 0x2373a: "wen2", // 𣜺
+ 0x2373d: "qiao1", // 𣜽
+ 0x23741: "pai2", // 𣝁
+ 0x23742: "hun2", // 𣝂
+ 0x23745: "ai4", // 𣝅
+ 0x23747: "shuo4", // 𣝇
+ 0x23748: "lian2", // 𣝈
+ 0x23749: "dui4", // 𣝉
+ 0x2374b: "ta4", // 𣝋
+ 0x2374c: "jin3", // 𣝌
+ 0x2374d: "bi4", // 𣝍
+ 0x2374e: "yan3", // 𣝎
+ 0x2374f: "gao4", // 𣝏
+ 0x23750: "piao2", // 𣝐
+ 0x23751: "yu4", // 𣝑
+ 0x23752: "she4", // 𣝒
+ 0x23755: "jian1", // 𣝕
+ 0x23757: "hu2", // 𣝗
+ 0x2375a: "lie4", // 𣝚
+ 0x2375c: "bian4", // 𣝜
+ 0x2375d: "su4", // 𣝝
+ 0x2375e: "jiao1", // 𣝞
+ 0x23778: "zhui4", // 𣝸
+ 0x2377d: "han1", // 𣝽
+ 0x23787: "dun4", // 𣞇
+ 0x23790: "xie3", // 𣞐
+ 0x23791: "meng2", // 𣞑
+ 0x23792: "fu1", // 𣞒
+ 0x23793: "lu4", // 𣞓
+ 0x23794: "tan4", // 𣞔
+ 0x23797: "liu2", // 𣞗
+ 0x23798: "xian1", // 𣞘
+ 0x23799: "sang3", // 𣞙
+ 0x2379c: "cou4", // 𣞜
+ 0x2379d: "zhuang1", // 𣞝
+ 0x2379f: "chen1", // 𣞟
+ 0x237b0: "lian4", // 𣞰
+ 0x237b4: "li2", // 𣞴
+ 0x237c0: "peng4", // 𣟀
+ 0x237c1: "tuo3", // 𣟁
+ 0x237c4: "tuo4", // 𣟄
+ 0x237c6: "liao2", // 𣟆
+ 0x237c7: "xiao4", // 𣟇
+ 0x237c8: "chui4", // 𣟈
+ 0x237c9: "huai4", // 𣟉
+ 0x237ca: "niao3", // 𣟊
+ 0x237cb: "qian1", // 𣟋
+ 0x237cc: "li4", // 𣟌
+ 0x237cf: "pao1", // 𣟏
+ 0x237d0: "tiao2", // 𣟐
+ 0x237d1: "liu2", // 𣟑
+ 0x237d2: "wu2", // 𣟒
+ 0x237e4: "ying3", // 𣟤
+ 0x237e6: "zha2", // 𣟦
+ 0x237f0: "yu2", // 𣟰
+ 0x237f2: "xian3", // 𣟲
+ 0x237f3: "xuan2", // 𣟳
+ 0x237f4: "shuan1", // 𣟴
+ 0x237f5: "xi1", // 𣟵
+ 0x237f8: "mei2", // 𣟸
+ 0x237f9: "sen1", // 𣟹
+ 0x237fa: "lian4", // 𣟺
+ 0x237fc: "jiu1", // 𣟼
+ 0x237fd: "lao4", // 𣟽
+ 0x2380e: "xiao1", // 𣠎
+ 0x2380f: "zou1", // 𣠏
+ 0x2381a: "liu2", // 𣠚
+ 0x2381c: "zhao4", // 𣠜
+ 0x2381e: "zhe2", // 𣠞
+ 0x23820: "lei3", // 𣠠
+ 0x2382d: "duan3", // 𣠭
+ 0x23837: "jian3", // 𣠷
+ 0x23838: "shuan1", // 𣠸
+ 0x23839: "zuo2", // 𣠹
+ 0x2383a: "qie4", // 𣠺
+ 0x2383c: "lao3", // 𣠼
+ 0x23849: "yu4", // 𣡉
+ 0x2384a: "yi4", // 𣡊
+ 0x2384b: "ni3", // 𣡋
+ 0x2384e: "cen2", // 𣡎
+ 0x23855: "yan4", // 𣡕
+ 0x23857: "ruan3", // 𣡗
+ 0x2385e: "yan2", // 𣡞
+ 0x2385f: "die2", // 𣡟
+ 0x23860: "mian2", // 𣡠
+ 0x23867: "lei2", // 𣡧
+ 0x23869: "wan1", // 𣡩
+ 0x23870: "na3", // 𣡰
+ 0x23876: "yan2", // 𣡶
+ 0x2387a: "lei3", // 𣡺
+ 0x2387d: "sha1", // 𣡽
+ 0x2387e: "hu1", // 𣡾
+ 0x23881: "xi1", // 𣢁
+ 0x23882: "xi1", // 𣢂
+ 0x23884: "you3", // 𣢄
+ 0x23885: "han1", // 𣢅
+ 0x23887: "hai1", // 𣢇
+ 0x23889: "wa1", // 𣢉
+ 0x2388a: "xu4", // 𣢊
+ 0x2388b: "pi1", // 𣢋
+ 0x2388c: "tan1", // 𣢌
+ 0x2388d: "xi1", // 𣢍
+ 0x2388e: "xi1", // 𣢎
+ 0x2388f: "bin1", // 𣢏
+ 0x23890: "qin1", // 𣢐
+ 0x23891: "xi1", // 𣢑
+ 0x23892: "yu2", // 𣢒
+ 0x23893: "xi4", // 𣢓
+ 0x23895: "ci4", // 𣢕
+ 0x23896: "qian4", // 𣢖
+ 0x23897: "xia1", // 𣢗
+ 0x2389a: "wa2", // 𣢚
+ 0x2389b: "e4", // 𣢛
+ 0x2389c: "you3", // 𣢜
+ 0x2389d: "xing4", // 𣢝
+ 0x2389e: "ni2", // 𣢞
+ 0x2389f: "han2", // 𣢟
+ 0x238a0: "bi4", // 𣢠
+ 0x238a1: "sheng1", // 𣢡
+ 0x238a4: "zhan1", // 𣢤
+ 0x238a5: "dian4", // 𣢥
+ 0x238a6: "yu3", // 𣢦
+ 0x238a8: "ou3", // 𣢨
+ 0x238aa: "gui3", // 𣢪
+ 0x238ab: "wang3", // 𣢫
+ 0x238ac: "qian1", // 𣢬
+ 0x238ad: "yi2", // 𣢭
+ 0x238b0: "zu2", // 𣢰
+ 0x238b2: "qian1", // 𣢲
+ 0x238b3: "ding4", // 𣢳
+ 0x238b4: "keng1", // 𣢴
+ 0x238b6: "chu4", // 𣢶
+ 0x238b7: "yi1", // 𣢷
+ 0x238ba: "han1", // 𣢺
+ 0x238bb: "kuan3", // 𣢻
+ 0x238c8: "dian4", // 𣣈
+ 0x238c9: "xi4", // 𣣉
+ 0x238ca: "zi1", // 𣣊
+ 0x238cb: "ling2", // 𣣋
+ 0x238cc: "zi4", // 𣣌
+ 0x238ce: "yu4", // 𣣎
+ 0x238cf: "hun1", // 𣣏
+ 0x238d1: "si3", // 𣣑
+ 0x238d2: "kan3", // 𣣒
+ 0x238da: "an4", // 𣣚
+ 0x238dc: "you3", // 𣣜
+ 0x238dd: "ji2", // 𣣝
+ 0x238de: "hun4", // 𣣞
+ 0x238df: "qia1", // 𣣟
+ 0x238e0: "hou2", // 𣣠
+ 0x238e1: "hou2", // 𣣡
+ 0x238e3: "dian4", // 𣣣
+ 0x238e9: "xie1", // 𣣩
+ 0x238ed: "she4", // 𣣭
+ 0x238ee: "sha4", // 𣣮
+ 0x238f2: "xie2", // 𣣲
+ 0x238f3: "yao2", // 𣣳
+ 0x238f4: "da4", // 𣣴
+ 0x238f6: "xie4", // 𣣶
+ 0x238f7: "chi1", // 𣣷
+ 0x238f8: "you3", // 𣣸
+ 0x238f9: "he1", // 𣣹
+ 0x238fa: "sha4", // 𣣺
+ 0x238ff: "tai2", // 𣣿
+ 0x23901: "zhu2", // 𣤁
+ 0x23903: "ai3", // 𣤃
+ 0x23907: "que4", // 𣤇
+ 0x23908: "ze2", // 𣤈
+ 0x2390a: "la1", // 𣤊
+ 0x2390b: "lou4", // 𣤋
+ 0x2390c: "chuai4", // 𣤌
+ 0x2390e: "you3", // 𣤎
+ 0x23916: "ti4", // 𣤖
+ 0x23918: "shi1", // 𣤘
+ 0x23921: "xiao4", // 𣤡
+ 0x23922: "xi4", // 𣤢
+ 0x23928: "huo4", // 𣤨
+ 0x23929: "chi4", // 𣤩
+ 0x2392a: "yi4", // 𣤪
+ 0x2392f: "shu2", // 𣤯
+ 0x23930: "yue4", // 𣤰
+ 0x23931: "chan2", // 𣤱
+ 0x23932: "e4", // 𣤲
+ 0x23933: "xi1", // 𣤳
+ 0x23934: "xi1", // 𣤴
+ 0x23935: "ying3", // 𣤵
+ 0x23936: "zu2", // 𣤶
+ 0x23937: "za1", // 𣤷
+ 0x2393a: "za1", // 𣤺
+ 0x23942: "ta4", // 𣥂
+ 0x23943: "wan4", // 𣥃
+ 0x23947: "xin4", // 𣥇
+ 0x2394a: "wang4", // 𣥊
+ 0x2394b: "fu3", // 𣥋
+ 0x23950: "lu3", // 𣥐
+ 0x2395e: "jian3", // 𣥞
+ 0x23961: "yan2", // 𣥡
+ 0x23963: "bi4", // 𣥣
+ 0x23964: "ken3", // 𣥤
+ 0x23965: "guan4", // 𣥥
+ 0x23968: "zi1", // 𣥨
+ 0x2396e: "kui3", // 𣥮
+ 0x2396f: "zhou3", // 𣥯
+ 0x23970: "zhi4", // 𣥰
+ 0x23973: "tu2", // 𣥳
+ 0x23977: "ta4", // 𣥷
+ 0x23979: "chu4", // 𣥹
+ 0x2397a: "cheng1", // 𣥺
+ 0x2397b: "cheng3", // 𣥻
+ 0x2397c: "zhu4", // 𣥼
+ 0x2397e: "da4", // 𣥾
+ 0x23987: "bi4", // 𣦇
+ 0x23989: "jia3", // 𣦉
+ 0x2398c: "yi4", // 𣦌
+ 0x2398f: "yue4", // 𣦏
+ 0x23990: "gang1", // 𣦐
+ 0x23996: "gan1", // 𣦖
+ 0x2399c: "qiao1", // 𣦜
+ 0x239a0: "chu2", // 𣦠
+ 0x239a1: "chu2", // 𣦡
+ 0x239a2: "bi4", // 𣦢
+ 0x239a6: "gui4", // 𣦦
+ 0x239a9: "gu3", // 𣦩
+ 0x239aa: "bing3", // 𣦪
+ 0x239ab: "yin4", // 𣦫
+ 0x239ac: "zhui4", // 𣦬
+ 0x239ad: "gu3", // 𣦭
+ 0x239af: "li4", // 𣦯
+ 0x239b5: "e4", // 𣦵
+ 0x239b6: "dai3", // 𣦶
+ 0x239bc: "can2", // 𣦼
+ 0x239c2: "ti4", // 𣧂
+ 0x239c3: "du4", // 𣧃
+ 0x239c4: "yi4", // 𣧄
+ 0x239c8: "die2", // 𣧈
+ 0x239ca: "niu3", // 𣧊
+ 0x239cc: "xue4", // 𣧌
+ 0x239cd: "ne4", // 𣧍
+ 0x239ce: "gui4", // 𣧎
+ 0x239cf: "kao3", // 𣧏
+ 0x239d2: "chuan3", // 𣧒
+ 0x239d6: "zha2", // 𣧖
+ 0x239d7: "you2", // 𣧗
+ 0x239d9: "bai4", // 𣧙
+ 0x239da: "shi2", // 𣧚
+ 0x239db: "dian4", // 𣧛
+ 0x239dc: "pa1", // 𣧜
+ 0x239dd: "qiu2", // 𣧝
+ 0x239e1: "xue4", // 𣧡
+ 0x239e3: "mo4", // 𣧣
+ 0x239e4: "ke1", // 𣧤
+ 0x239e5: "you3", // 𣧥
+ 0x239e6: "jiao3", // 𣧦
+ 0x239e7: "bo2", // 𣧧
+ 0x239ec: "xiu3", // 𣧬
+ 0x239f2: "mi3", // 𣧲
+ 0x239f3: "luo4", // 𣧳
+ 0x239f5: "xue4", // 𣧵
+ 0x239f7: "duo4", // 𣧷
+ 0x239f9: "er4", // 𣧹
+ 0x239fa: "shan1", // 𣧺
+ 0x239fc: "kui4", // 𣧼
+ 0x239fd: "nao4", // 𣧽
+ 0x239fe: "mian3", // 𣧾
+ 0x239ff: "li4", // 𣧿
+ 0x23a00: "luan4", // 𣨀
+ 0x23a02: "die2", // 𣨂
+ 0x23a04: "qia4", // 𣨄
+ 0x23a05: "lei4", // 𣨅
+ 0x23a07: "mao4", // 𣨇
+ 0x23a09: "heng1", // 𣨉
+ 0x23a0a: "che4", // 𣨊
+ 0x23a0b: "zhi4", // 𣨋
+ 0x23a0d: "gu3", // 𣨍
+ 0x23a0e: "cuo1", // 𣨎
+ 0x23a13: "wu4", // 𣨓
+ 0x23a14: "tao4", // 𣨔
+ 0x23a17: "xi1", // 𣨗
+ 0x23a18: "yao1", // 𣨘
+ 0x23a19: "wei3", // 𣨙
+ 0x23a1b: "zu2", // 𣨛
+ 0x23a1c: "ma4", // 𣨜
+ 0x23a1d: "yu3", // 𣨝
+ 0x23a1e: "peng3", // 𣨞
+ 0x23a1f: "yi4", // 𣨟
+ 0x23a20: "qin4", // 𣨠
+ 0x23a21: "yue4", // 𣨡
+ 0x23a22: "jue4", // 𣨢
+ 0x23a23: "jiang4", // 𣨣
+ 0x23a24: "xu4", // 𣨤
+ 0x23a25: "beng1", // 𣨥
+ 0x23a2a: "luo3", // 𣨪
+ 0x23a2b: "zhui1", // 𣨫
+ 0x23a32: "du4", // 𣨲
+ 0x23a33: "xiang4", // 𣨳
+ 0x23a36: "hui4", // 𣨶
+ 0x23a3a: "gu3", // 𣨺
+ 0x23a3b: "kao3", // 𣨻
+ 0x23a3e: "xing1", // 𣨾
+ 0x23a3f: "hun2", // 𣨿
+ 0x23a40: "bian1", // 𣩀
+ 0x23a44: "ke4", // 𣩄
+ 0x23a45: "kao3", // 𣩅
+ 0x23a48: "cuo2", // 𣩈
+ 0x23a4f: "lu4", // 𣩏
+ 0x23a51: "zui4", // 𣩑
+ 0x23a52: "zao1", // 𣩒
+ 0x23a53: "jiao3", // 𣩓
+ 0x23a54: "guan4", // 𣩔
+ 0x23a59: "yan1", // 𣩙
+ 0x23a5a: "er2", // 𣩚
+ 0x23a5c: "qing2", // 𣩜
+ 0x23a5f: "deng4", // 𣩟
+ 0x23a60: "si4", // 𣩠
+ 0x23a61: "sui4", // 𣩡
+ 0x23a62: "liao4", // 𣩢
+ 0x23a67: "shan4", // 𣩧
+ 0x23a69: "bi4", // 𣩩
+ 0x23a6a: "wei4", // 𣩪
+ 0x23a6b: "ye4", // 𣩫
+ 0x23a6d: "zhai4", // 𣩭
+ 0x23a6f: "ye2", // 𣩯
+ 0x23a70: "diao4", // 𣩰
+ 0x23a71: "ai4", // 𣩱
+ 0x23a74: "jiang4", // 𣩴
+ 0x23a77: "su1", // 𣩷
+ 0x23a79: "huai4", // 𣩹
+ 0x23a7a: "yu4", // 𣩺
+ 0x23a7d: "rang3", // 𣩽
+ 0x23a80: "dian1", // 𣪀
+ 0x23a81: "zuan1", // 𣪁
+ 0x23a82: "ban1", // 𣪂
+ 0x23a84: "qin2", // 𣪄
+ 0x23a87: "jia1", // 𣪇
+ 0x23a89: "pi2", // 𣪉
+ 0x23a8c: "tou2", // 𣪌
+ 0x23a90: "chou2", // 𣪐
+ 0x23a95: "gui3", // 𣪕
+ 0x23aa0: "ji1", // 𣪠
+ 0x23aa8: "xue4", // 𣪨
+ 0x23aaa: "dian4", // 𣪪
+ 0x23aad: "bian4", // 𣪭
+ 0x23aae: "zai3", // 𣪮
+ 0x23aaf: "tong2", // 𣪯
+ 0x23ab6: "shan3", // 𣪶
+ 0x23ab8: "gu4", // 𣪸
+ 0x23ab9: "que4", // 𣪹
+ 0x23ac0: "gu3", // 𣫀
+ 0x23ac8: "hu2", // 𣫈
+ 0x23ac9: "kuai3", // 𣫉
+ 0x23acc: "gou4", // 𣫌
+ 0x23ace: "su4", // 𣫎
+ 0x23ad0: "chou2", // 𣫐
+ 0x23ad2: "keng1", // 𣫒
+ 0x23ad4: "du1", // 𣫔
+ 0x23ad9: "yi4", // 𣫙
+ 0x23adc: "dao4", // 𣫜
+ 0x23add: "qiang1", // 𣫝
+ 0x23ae3: "long2", // 𣫣
+ 0x23ae5: "li2", // 𣫥
+ 0x23ae7: "li4", // 𣫧
+ 0x23ae8: "qing1", // 𣫨
+ 0x23aea: "wei1", // 𣫪
+ 0x23aec: "mou2", // 𣫬
+ 0x23af1: "qi4", // 𣫱
+ 0x23af3: "jiang3", // 𣫳
+ 0x23af4: "xie2", // 𣫴
+ 0x23af9: "dai4", // 𣫹
+ 0x23afb: "lou2", // 𣫻
+ 0x23b02: "guan4", // 𣬂
+ 0x23b06: "pei2", // 𣬆
+ 0x23b09: "pi2", // 𣬉
+ 0x23b0b: "juan4", // 𣬋
+ 0x23b0d: "bei1", // 𣬍
+ 0x23b0e: "jue2", // 𣬎
+ 0x23b0f: "juan4", // 𣬏
+ 0x23b10: "shi4", // 𣬐
+ 0x23b15: "xie3", // 𣬕
+ 0x23b18: "rui2", // 𣬘
+ 0x23b19: "jing4", // 𣬙
+ 0x23b1a: "po4", // 𣬚
+ 0x23b1b: "san1", // 𣬛
+ 0x23b20: "ji1", // 𣬠
+ 0x23b29: "fen1", // 𣬩
+ 0x23b2a: "bei4", // 𣬪
+ 0x23b2b: "jie4", // 𣬫
+ 0x23b2c: "sa1", // 𣬬
+ 0x23b2e: "pi1", // 𣬮
+ 0x23b34: "di4", // 𣬴
+ 0x23b35: "mao2", // 𣬵
+ 0x23b36: "ba5", // 𣬶
+ 0x23b37: "ba5", // 𣬷
+ 0x23b38: "tiao2", // 𣬸
+ 0x23b39: "ling2", // 𣬹
+ 0x23b3a: "sheng1", // 𣬺
+ 0x23b3b: "zhen3", // 𣬻
+ 0x23b3c: "pi1", // 𣬼
+ 0x23b3d: "wu4", // 𣬽
+ 0x23b3f: "ze4", // 𣬿
+ 0x23b40: "bao4", // 𣭀
+ 0x23b47: "lv3", // 𣭇
+ 0x23b56: "hao1", // 𣭖
+ 0x23b57: "dou3", // 𣭗
+ 0x23b58: "fu2", // 𣭘
+ 0x23b59: "ni2", // 𣭙
+ 0x23b5d: "ge2", // 𣭝
+ 0x23b60: "ru2", // 𣭠
+ 0x23b61: "xian3", // 𣭡
+ 0x23b64: "bi4", // 𣭤
+ 0x23b6e: "mao2", // 𣭮
+ 0x23b72: "rong3", // 𣭲
+ 0x23b73: "qiu2", // 𣭳
+ 0x23b77: "bo2", // 𣭷
+ 0x23b79: "hao1", // 𣭹
+ 0x23b7a: "nao3", // 𣭺
+ 0x23b7b: "yan2", // 𣭻
+ 0x23b83: "pao2", // 𣮃
+ 0x23b84: "sui1", // 𣮄
+ 0x23b86: "tuo4", // 𣮆
+ 0x23b88: "qu1", // 𣮈
+ 0x23b89: "li2", // 𣮉
+ 0x23b8a: "de2", // 𣮊
+ 0x23b8c: "jie2", // 𣮌
+ 0x23b8d: "jie2", // 𣮍
+ 0x23b8e: "gun3", // 𣮎
+ 0x23b8f: "jian1", // 𣮏
+ 0x23b90: "bi4", // 𣮐
+ 0x23ba0: "san4", // 𣮠
+ 0x23ba1: "bang1", // 𣮡
+ 0x23ba2: "chun2", // 𣮢
+ 0x23ba6: "nai4", // 𣮦
+ 0x23ba7: "bang3", // 𣮧
+ 0x23baa: "rong2", // 𣮪
+ 0x23bab: "jia1", // 𣮫
+ 0x23bac: "sou1", // 𣮬
+ 0x23bb0: "de2", // 𣮰
+ 0x23bbe: "xian1", // 𣮾
+ 0x23bbf: "zhan1", // 𣮿
+ 0x23bc0: "mao4", // 𣯀
+ 0x23bc3: "zi1", // 𣯃
+ 0x23bc5: "ji4", // 𣯅
+ 0x23bc6: "qi2", // 𣯆
+ 0x23bcb: "ru4", // 𣯋
+ 0x23bcc: "suo1", // 𣯌
+ 0x23bcd: "rong3", // 𣯍
+ 0x23bce: "wu4", // 𣯎
+ 0x23bcf: "rong2", // 𣯏
+ 0x23bd0: "rong2", // 𣯐
+ 0x23bda: "ta4", // 𣯚
+ 0x23bdc: "sou1", // 𣯜
+ 0x23be4: "li2", // 𣯤
+ 0x23be7: "cui3", // 𣯧
+ 0x23be8: "zong1", // 𣯨
+ 0x23be9: "men2", // 𣯩
+ 0x23bea: "xi3", // 𣯪
+ 0x23bec: "mang3", // 𣯬
+ 0x23bed: "nie4", // 𣯭
+ 0x23bef: "sui1", // 𣯯
+ 0x23bf1: "pei2", // 𣯱
+ 0x23bf4: "bi4", // 𣯴
+ 0x23bf5: "di4", // 𣯵
+ 0x23bf8: "qu2", // 𣯸
+ 0x23bf9: "qiao2", // 𣯹
+ 0x23bfb: "fen1", // 𣯻
+ 0x23bfc: "su4", // 𣯼
+ 0x23c03: "xu1", // 𣰃
+ 0x23c07: "rong3", // 𣰇
+ 0x23c08: "ji1", // 𣰈
+ 0x23c0b: "qu2", // 𣰋
+ 0x23c0c: "lie4", // 𣰌
+ 0x23c15: "sao4", // 𣰕
+ 0x23c18: "kun4", // 𣰘
+ 0x23c1a: "cui4", // 𣰚
+ 0x23c1b: "ye4", // 𣰛
+ 0x23c1c: "bing4", // 𣰜
+ 0x23c1e: "jie2", // 𣰞
+ 0x23c20: "qu2", // 𣰠
+ 0x23c21: "qu2", // 𣰡
+ 0x23c25: "meng2", // 𣰥
+ 0x23c26: "ran2", // 𣰦
+ 0x23c28: "bin1", // 𣰨
+ 0x23c29: "chao2", // 𣰩
+ 0x23c2c: "du2", // 𣰬
+ 0x23c36: "rang2", // 𣰶
+ 0x23c37: "xian1", // 𣰷
+ 0x23c3a: "tao2", // 𣰺
+ 0x23c3b: "qu2", // 𣰻
+ 0x23c3c: "nie4", // 𣰼
+ 0x23c3f: "shu1", // 𣰿
+ 0x23c40: "lu3", // 𣱀
+ 0x23c42: "kun4", // 𣱂
+ 0x23c48: "min2", // 𣱈
+ 0x23c49: "min3", // 𣱉
+ 0x23c4d: "dan4", // 𣱍
+ 0x23c50: "yin4", // 𣱐
+ 0x23c53: "xiao4", // 𣱓
+ 0x23c57: "ji4", // 𣱗
+ 0x23c5c: "yin1", // 𣱜
+ 0x23c66: "fen1", // 𣱦
+ 0x23c67: "zhong4", // 𣱧
+ 0x23c6b: "gu3", // 𣱫
+ 0x23c71: "cha2", // 𣱱
+ 0x23c73: "liu2", // 𣱳
+ 0x23c76: "bu3", // 𣱶
+ 0x23c7a: "pa1", // 𣱺
+ 0x23c7b: "si4", // 𣱻
+ 0x23c7c: "dao1", // 𣱼
+ 0x23c7d: "zhen3", // 𣱽
+ 0x23c80: "shan1", // 𣲀
+ 0x23c82: "chuai3", // 𣲂
+ 0x23c84: "jiu3", // 𣲄
+ 0x23c8a: "ke4", // 𣲊
+ 0x23c8b: "chi2", // 𣲋
+ 0x23c91: "hu4", // 𣲑
+ 0x23c92: "li4", // 𣲒
+ 0x23c93: "sha1", // 𣲓
+ 0x23c96: "pai4", // 𣲖
+ 0x23c97: "wei2", // 𣲗
+ 0x23c98: "wu3", // 𣲘
+ 0x23c9c: "ying2", // 𣲜
+ 0x23ca1: "sha1", // 𣲡
+ 0x23ca2: "di1", // 𣲢
+ 0x23ca5: "dan1", // 𣲥
+ 0x23cb1: "tu1", // 𣲱
+ 0x23cb2: "he2", // 𣲲
+ 0x23cb3: "po3", // 𣲳
+ 0x23cb5: "zhi3", // 𣲵
+ 0x23cb6: "niu3", // 𣲶
+ 0x23cb7: "ni4", // 𣲷
+ 0x23cbd: "rong3", // 𣲽
+ 0x23cbe: "guai4", // 𣲾
+ 0x23cc0: "zhi2", // 𣳀
+ 0x23cc3: "ji2", // 𣳃
+ 0x23cdc: "fan4", // 𣳜
+ 0x23cdf: "jie2", // 𣳟
+ 0x23ce0: "hai3", // 𣳠
+ 0x23ce4: "zhan4", // 𣳤
+ 0x23ce6: "xi4", // 𣳦
+ 0x23ce9: "zi1", // 𣳩
+ 0x23cec: "xi2", // 𣳬
+ 0x23ced: "piao4", // 𣳭
+ 0x23cf0: "ben1", // 𣳰
+ 0x23cf2: "jian3", // 𣳲
+ 0x23d13: "jian4", // 𣴓
+ 0x23d16: "za2", // 𣴖
+ 0x23d1e: "ben4", // 𣴞
+ 0x23d1f: "mao4", // 𣴟
+ 0x23d22: "zao4", // 𣴢
+ 0x23d23: "zhuang4", // 𣴣
+ 0x23d25: "kuang2", // 𣴥
+ 0x23d28: "bi2", // 𣴨
+ 0x23d2a: "pai4", // 𣴪
+ 0x23d3c: "mao4", // 𣴼
+ 0x23d3d: "tan4", // 𣴽
+ 0x23d5e: "tun3", // 𣵞
+ 0x23d5f: "luo3", // 𣵟
+ 0x23d62: "tan1", // 𣵢
+ 0x23d71: "an2", // 𣵱
+ 0x23d77: "han2", // 𣵷
+ 0x23d78: "zhu2", // 𣵸
+ 0x23d7a: "duo4", // 𣵺
+ 0x23d7b: "duo4", // 𣵻
+ 0x23d7c: "gan4", // 𣵼
+ 0x23d86: "qiong4", // 𣶆
+ 0x23d88: "wang3", // 𣶈
+ 0x23d8a: "mo4", // 𣶊
+ 0x23d8b: "zhe4", // 𣶋
+ 0x23d8c: "wen3", // 𣶌
+ 0x23d8d: "zhuang4", // 𣶍
+ 0x23d8f: "jie1", // 𣶏
+ 0x23d90: "pao4", // 𣶐
+ 0x23d98: "su4", // 𣶘
+ 0x23d9d: "ju4", // 𣶝
+ 0x23da0: "qi1", // 𣶠
+ 0x23da1: "can4", // 𣶡
+ 0x23da3: "tuan2", // 𣶣
+ 0x23da4: "sha1", // 𣶤
+ 0x23da6: "tuo2", // 𣶦
+ 0x23da9: "hua4", // 𣶩
+ 0x23dab: "yi4", // 𣶫
+ 0x23de0: "min2", // 𣷠
+ 0x23de1: "zhong1", // 𣷡
+ 0x23de5: "shuo4", // 𣷥
+ 0x23de9: "yi4", // 𣷩
+ 0x23dea: "wang3", // 𣷪
+ 0x23deb: "ao2", // 𣷫
+ 0x23df6: "su3", // 𣷶
+ 0x23dfe: "gui3", // 𣷾
+ 0x23dff: "tuo3", // 𣷿
+ 0x23e00: "hui3", // 𣸀
+ 0x23e03: "xu4", // 𣸃
+ 0x23e04: "zan3", // 𣸄
+ 0x23e06: "zi3", // 𣸆
+ 0x23e07: "bian4", // 𣸇
+ 0x23e09: "da2", // 𣸉
+ 0x23e0a: "yin1", // 𣸊
+ 0x23e0b: "quan3", // 𣸋
+ 0x23e0e: "huai4", // 𣸎
+ 0x23e0f: "na2", // 𣸏
+ 0x23e10: "za2", // 𣸐
+ 0x23e12: "ti2", // 𣸒
+ 0x23e18: "yi2", // 𣸘
+ 0x23e19: "tan1", // 𣸙
+ 0x23e1a: "she2", // 𣸚
+ 0x23e1b: "shuo4", // 𣸛
+ 0x23e1d: "xing2", // 𣸝
+ 0x23e20: "you3", // 𣸠
+ 0x23e23: "fen2", // 𣸣
+ 0x23e47: "ke4", // 𣹇
+ 0x23e4b: "fu2", // 𣹋
+ 0x23e52: "min3", // 𣹒
+ 0x23e5a: "pi4", // 𣹚
+ 0x23e5c: "ji2", // 𣹜
+ 0x23e5d: "qiao4", // 𣹝
+ 0x23e5e: "zhong3", // 𣹞
+ 0x23e5f: "gan4", // 𣹟
+ 0x23e60: "yuan1", // 𣹠
+ 0x23e61: "chi2", // 𣹡
+ 0x23e65: "qian4", // 𣹥
+ 0x23e67: "zuo2", // 𣹧
+ 0x23e69: "xie2", // 𣹩
+ 0x23e6a: "mao2", // 𣹪
+ 0x23e6c: "hu2", // 𣹬
+ 0x23e6e: "pi4", // 𣹮
+ 0x23e6f: "xun4", // 𣹯
+ 0x23e71: "xia2", // 𣹱
+ 0x23e72: "ti2", // 𣹲
+ 0x23e75: "na4", // 𣹵
+ 0x23e76: "chua3", // 𣹶
+ 0x23e80: "wu3", // 𣺀
+ 0x23eac: "huang1", // 𣺬
+ 0x23ead: "xue4", // 𣺭
+ 0x23eae: "tao4", // 𣺮
+ 0x23eb0: "qiao4", // 𣺰
+ 0x23eb3: "jiao1", // 𣺳
+ 0x23ebc: "dang3", // 𣺼
+ 0x23ebd: "bai4", // 𣺽
+ 0x23ecd: "dang4", // 𣻍
+ 0x23ece: "kou4", // 𣻎
+ 0x23ed0: "ju1", // 𣻐
+ 0x23ed1: "sha1", // 𣻑
+ 0x23ed2: "jing1", // 𣻒
+ 0x23ed5: "mo2", // 𣻕
+ 0x23ed6: "nou2", // 𣻖
+ 0x23ed8: "shuo4", // 𣻘
+ 0x23eda: "shu4", // 𣻚
+ 0x23edb: "zhuang1", // 𣻛
+ 0x23edc: "fu2", // 𣻜
+ 0x23edf: "zang1", // 𣻟
+ 0x23ee0: "xie2", // 𣻠
+ 0x23ee1: "lang4", // 𣻡
+ 0x23ee2: "tong1", // 𣻢
+ 0x23ee9: "zhe2", // 𣻩
+ 0x23eec: "can4", // 𣻬
+ 0x23eee: "yue4", // 𣻮
+ 0x23ef1: "zhou4", // 𣻱
+ 0x23f1a: "tan1", // 𣼚
+ 0x23f1e: "yan2", // 𣼞
+ 0x23f1f: "lu4", // 𣼟
+ 0x23f20: "yan3", // 𣼠
+ 0x23f26: "ze2", // 𣼦
+ 0x23f27: "shuai4", // 𣼧
+ 0x23f45: "guo1", // 𣽅
+ 0x23f46: "zhu2", // 𣽆
+ 0x23f48: "ru2", // 𣽈
+ 0x23f49: "ru2", // 𣽉
+ 0x23f4c: "kan3", // 𣽌
+ 0x23f4d: "ji4", // 𣽍
+ 0x23f4e: "gao1", // 𣽎
+ 0x23f52: "xie4", // 𣽒
+ 0x23f55: "ou4", // 𣽕
+ 0x23f56: "jian1", // 𣽖
+ 0x23f5a: "zhi2", // 𣽚
+ 0x23f5b: "zha2", // 𣽛
+ 0x23f5d: "hong3", // 𣽝
+ 0x23f5f: "kuan3", // 𣽟
+ 0x23f61: "bo2", // 𣽡
+ 0x23f64: "se4", // 𣽤
+ 0x23f65: "an4", // 𣽥
+ 0x23f66: "jian4", // 𣽦
+ 0x23f68: "teng2", // 𣽨
+ 0x23f6b: "song1", // 𣽫
+ 0x23f6d: "meng4", // 𣽭
+ 0x23f6e: "yin2", // 𣽮
+ 0x23f6f: "tan1", // 𣽯
+ 0x23f70: "guo1", // 𣽰
+ 0x23f73: "ruan2", // 𣽳
+ 0x23f74: "wei4", // 𣽴
+ 0x23f77: "si4", // 𣽷
+ 0x23fa4: "qi4", // 𣾤
+ 0x23fa6: "zhang3", // 𣾦
+ 0x23fc5: "dong3", // 𣿅
+ 0x23fc6: "fu2", // 𣿆
+ 0x23fc7: "shen3", // 𣿇
+ 0x23fc8: "su4", // 𣿈
+ 0x23fc9: "yi4", // 𣿉
+ 0x23fca: "lian4", // 𣿊
+ 0x23fcc: "he2", // 𣿌
+ 0x23fce: "zhen1", // 𣿎
+ 0x23fd0: "ze2", // 𣿐
+ 0x23fd2: "cui3", // 𣿒
+ 0x23fd3: "cui3", // 𣿓
+ 0x23fdd: "feng4", // 𣿝
+ 0x23fde: "li3", // 𣿞
+ 0x23fdf: "kou4", // 𣿟
+ 0x23fe3: "xiao4", // 𣿣
+ 0x23fe4: "you3", // 𣿤
+ 0x24003: "hao2", // 𤀃
+ 0x24009: "han4", // 𤀉
+ 0x2400a: "ken3", // 𤀊
+ 0x2401d: "yu4", // 𤀝
+ 0x24023: "huan3", // 𤀣
+ 0x24024: "suo1", // 𤀤
+ 0x24026: "la4", // 𤀦
+ 0x24028: "dou4", // 𤀨
+ 0x24029: "jian4", // 𤀩
+ 0x2402a: "po1", // 𤀪
+ 0x2402b: "bian3", // 𤀫
+ 0x24030: "xue4", // 𤀰
+ 0x24032: "bian4", // 𤀲
+ 0x24037: "wei4", // 𤀷
+ 0x24061: "dan4", // 𤁡
+ 0x24062: "jie2", // 𤁢
+ 0x24063: "bai4", // 𤁣
+ 0x24065: "nian3", // 𤁥
+ 0x24066: "xian4", // 𤁦
+ 0x24067: "se4", // 𤁧
+ 0x2406a: "hua2", // 𤁪
+ 0x2406b: "chua1", // 𤁫
+ 0x2406e: "ou4", // 𤁮
+ 0x2406f: "lie4", // 𤁯
+ 0x24070: "di2", // 𤁰
+ 0x24071: "cai4", // 𤁱
+ 0x24073: "zha2", // 𤁳
+ 0x24075: "lv2", // 𤁵
+ 0x24079: "huo4", // 𤁹
+ 0x2407c: "li4", // 𤁼
+ 0x2407d: "ying3", // 𤁽
+ 0x2407f: "wei3", // 𤁿
+ 0x24080: "bi4", // 𤂀
+ 0x24081: "guo2", // 𤂁
+ 0x24083: "pi4", // 𤂃
+ 0x24086: "biao1", // 𤂆
+ 0x240a0: "yan3", // 𤂠
+ 0x240a4: "zhuan4", // 𤂤
+ 0x240b2: "hong2", // 𤂲
+ 0x240b6: "lin4", // 𤂶
+ 0x240b7: "e4", // 𤂷
+ 0x240b9: "yin3", // 𤂹
+ 0x240ba: "lan4", // 𤂺
+ 0x240bc: "yao4", // 𤂼
+ 0x240bf: "xuan4", // 𤂿
+ 0x240c0: "li4", // 𤃀
+ 0x240e8: "lan4", // 𤃨
+ 0x240e9: "ling2", // 𤃩
+ 0x240ea: "xi1", // 𤃪
+ 0x240eb: "hong1", // 𤃫
+ 0x240ed: "jiao3", // 𤃭
+ 0x240ee: "zhuo2", // 𤃮
+ 0x240f2: "zhi2", // 𤃲
+ 0x240f5: "bo2", // 𤃵
+ 0x240f6: "teng1", // 𤃶
+ 0x240f7: "an3", // 𤃷
+ 0x240fa: "xun2", // 𤃺
+ 0x240fb: "lei3", // 𤃻
+ 0x240fc: "zang1", // 𤃼
+ 0x240fd: "hui3", // 𤃽
+ 0x2410e: "xi4", // 𤄎
+ 0x2410f: "hong2", // 𤄏
+ 0x24111: "fan4", // 𤄑
+ 0x24112: "jian3", // 𤄒
+ 0x24113: "cong2", // 𤄓
+ 0x24114: "za2", // 𤄔
+ 0x24116: "ca1", // 𤄖
+ 0x24118: "you1", // 𤄘
+ 0x2411b: "dui4", // 𤄛
+ 0x2411c: "pan1", // 𤄜
+ 0x24125: "ta4", // 𤄥
+ 0x24127: "pan4", // 𤄧
+ 0x2412b: "fan1", // 𤄫
+ 0x2412c: "xi1", // 𤄬
+ 0x24136: "yao4", // 𤄶
+ 0x24137: "luo2", // 𤄷
+ 0x2413a: "bian1", // 𤄺
+ 0x2413c: "jin4", // 𤄼
+ 0x2413d: "li4", // 𤄽
+ 0x2414a: "yan4", // 𤅊
+ 0x2414b: "dou4", // 𤅋
+ 0x2414e: "man4", // 𤅎
+ 0x24150: "gong1", // 𤅐
+ 0x24151: "rang3", // 𤅑
+ 0x24152: "can4", // 𤅒
+ 0x24163: "men2", // 𤅣
+ 0x24171: "gu3", // 𤅱
+ 0x24172: "shuan4", // 𤅲
+ 0x24178: "yan2", // 𤅸
+ 0x24179: "bi4", // 𤅹
+ 0x24180: "biao1", // 𤆀
+ 0x24181: "cheng2", // 𤆁
+ 0x24182: "kui4", // 𤆂
+ 0x24184: "huo3", // 𤆄
+ 0x2418d: "chi4", // 𤆍
+ 0x2418f: "wo4", // 𤆏
+ 0x24191: "cou4", // 𤆑
+ 0x24192: "zhi4", // 𤆒
+ 0x24199: "shui3", // 𤆙
+ 0x2419c: "gua4", // 𤆜
+ 0x2419d: "pu1", // 𤆝
+ 0x2419e: "xu4", // 𤆞
+ 0x2419f: "si1", // 𤆟
+ 0x241a1: "wu3", // 𤆡
+ 0x241ae: "fu1", // 𤆮
+ 0x241b0: "shi4", // 𤆰
+ 0x241b3: "hui4", // 𤆳
+ 0x241b4: "huang1", // 𤆴
+ 0x241b5: "pa1", // 𤆵
+ 0x241bc: "zhu3", // 𤆼
+ 0x241be: "yi2", // 𤆾
+ 0x241c3: "li4", // 𤇃
+ 0x241c4: "shan3", // 𤇄
+ 0x241dc: "min2", // 𤇜
+ 0x241de: "ge1", // 𤇞
+ 0x241e0: "hu1", // 𤇠
+ 0x241ef: "en1", // 𤇯
+ 0x241f0: "fa2", // 𤇰
+ 0x241f3: "xu4", // 𤇳
+ 0x241f4: "yi2", // 𤇴
+ 0x241fe: "ying4", // 𤇾
+ 0x24214: "chi2", // 𤈔
+ 0x24219: "yi2", // 𤈙
+ 0x24225: "di2", // 𤈥
+ 0x24226: "hui3", // 𤈦
+ 0x24227: "he2", // 𤈧
+ 0x24229: "zha3", // 𤈩
+ 0x24236: "yun2", // 𤈶
+ 0x24237: "xian1", // 𤈷
+ 0x2424c: "xian2", // 𤉌
+ 0x2424d: "lao4", // 𤉍
+ 0x2424e: "shao4", // 𤉎
+ 0x2424f: "shi4", // 𤉏
+ 0x24250: "zhuo2", // 𤉐
+ 0x24264: "bie1", // 𤉤
+ 0x24265: "jiu3", // 𤉥
+ 0x24266: "wo1", // 𤉦
+ 0x24267: "jiao3", // 𤉧
+ 0x24268: "fu2", // 𤉨
+ 0x2426a: "xiang1", // 𤉪
+ 0x2426b: "kai4", // 𤉫
+ 0x242b2: "nao3", // 𤊲
+ 0x242b4: "huo4", // 𤊴
+ 0x242b5: "ji2", // 𤊵
+ 0x242b6: "la4", // 𤊶
+ 0x242bb: "fou1", // 𤊻
+ 0x242bc: "shan3", // 𤊼
+ 0x242bd: "liao4", // 𤊽
+ 0x242be: "mie4", // 𤊾
+ 0x242bf: "che4", // 𤊿
+ 0x242c2: "mo2", // 𤋂
+ 0x242cf: "lou2", // 𤋏
+ 0x242e8: "duo4", // 𤋨
+ 0x242eb: "nao3", // 𤋫
+ 0x242ed: "ji1", // 𤋭
+ 0x242f0: "zhu4", // 𤋰
+ 0x24302: "su4", // 𤌂
+ 0x24303: "duo4", // 𤌃
+ 0x24307: "jiong3", // 𤌇
+ 0x2430a: "zai3", // 𤌊
+ 0x2430b: "hui3", // 𤌋
+ 0x2430c: "ying3", // 𤌌
+ 0x2430d: "hu2", // 𤌍
+ 0x2430e: "lin4", // 𤌎
+ 0x2430f: "weng3", // 𤌏
+ 0x24310: "han4", // 𤌐
+ 0x24314: "nan2", // 𤌔
+ 0x24337: "xi4", // 𤌷
+ 0x24339: "gan4", // 𤌹
+ 0x2433e: "he4", // 𤌾
+ 0x2433f: "ji1", // 𤌿
+ 0x24340: "xiang3", // 𤍀
+ 0x24341: "sha1", // 𤍁
+ 0x24350: "tui4", // 𤍐
+ 0x24352: "zhao1", // 𤍒
+ 0x24353: "shu4", // 𤍓
+ 0x24355: "you3", // 𤍕
+ 0x24356: "jian1", // 𤍖
+ 0x2435c: "zao4", // 𤍜
+ 0x24364: "zhang1", // 𤍤
+ 0x2437d: "ruo4", // 𤍽
+ 0x24384: "yan1", // 𤎄
+ 0x2438b: "cui4", // 𤎋
+ 0x24397: "ji2", // 𤎗
+ 0x24398: "shang1", // 𤎘
+ 0x243a3: "e4", // 𤎣
+ 0x243a4: "lao2", // 𤎤
+ 0x243a5: "tan3", // 𤎥
+ 0x243a7: "zhu4", // 𤎧
+ 0x243ad: "lin3", // 𤎭
+ 0x243af: "zeng1", // 𤎯
+ 0x243b1: "juan3", // 𤎱
+ 0x243b2: "hu1", // 𤎲
+ 0x243d7: "shen3", // 𤏗
+ 0x243d8: "huo4", // 𤏘
+ 0x243dc: "kui4", // 𤏜
+ 0x243f1: "chu4", // 𤏱
+ 0x243f2: "zhou4", // 𤏲
+ 0x243f6: "ao1", // 𤏶
+ 0x243f8: "zhuo2", // 𤏸
+ 0x243fd: "xing1", // 𤏽
+ 0x243ff: "mie4", // 𤏿
+ 0x24400: "hu1", // 𤐀
+ 0x24414: "tan2", // 𤐔
+ 0x24419: "bi4", // 𤐙
+ 0x24423: "ding3", // 𤐣
+ 0x24429: "kai4", // 𤐩
+ 0x2442b: "biao1", // 𤐫
+ 0x24430: "huo4", // 𤐰
+ 0x24431: "lie4", // 𤐱
+ 0x24432: "cuan4", // 𤐲
+ 0x24443: "xian4", // 𤑃
+ 0x24444: "re4", // 𤑄
+ 0x24453: "yue4", // 𤑓
+ 0x24455: "xun1", // 𤑕
+ 0x24457: "liao3", // 𤑗
+ 0x24463: "sha1", // 𤑣
+ 0x24466: "shi4", // 𤑦
+ 0x2446a: "xie4", // 𤑪
+ 0x24473: "xiao1", // 𤑳
+ 0x24477: "ye2", // 𤑷
+ 0x24478: "lan3", // 𤑸
+ 0x24479: "yi4", // 𤑹
+ 0x2447f: "lian3", // 𤑿
+ 0x24494: "bo2", // 𤒔
+ 0x24495: "cao1", // 𤒕
+ 0x2449d: "yao4", // 𤒝
+ 0x244a6: "lian4", // 𤒦
+ 0x244bb: "ta4", // 𤒻
+ 0x244d1: "ji4", // 𤓑
+ 0x244d4: "xi1", // 𤓔
+ 0x244d5: "zhi4", // 𤓕
+ 0x244da: "xi1", // 𤓚
+ 0x244dd: "yue4", // 𤓝
+ 0x244e4: "xian3", // 𤓤
+ 0x244e6: "zhuo4", // 𤓦
+ 0x244ef: "zhang3", // 𤓯
+ 0x244f5: "zu3", // 𤓵
+ 0x244f7: "na2", // 𤓷
+ 0x244fe: "dao4", // 𤓾
+ 0x244ff: "lie4", // 𤓿
+ 0x24500: "na2", // 𤔀
+ 0x24509: "pao2", // 𤔉
+ 0x2450b: "ju4", // 𤔋
+ 0x24516: "luo3", // 𤔖
+ 0x24519: "shua3", // 𤔙
+ 0x2451a: "shang4", // 𤔚
+ 0x2451d: "luo3", // 𤔝
+ 0x2451f: "fen1", // 𤔟
+ 0x24523: "bao4", // 𤔣
+ 0x24528: "li4", // 𤔨
+ 0x2452b: "xiong4", // 𤔫
+ 0x24536: "dang1", // 𤔶
+ 0x24540: "cheng4", // 𤕀
+ 0x24544: "zhang3", // 𤕄
+ 0x24547: "sou3", // 𤕇
+ 0x2454a: "shen2", // 𤕊
+ 0x24552: "ge3", // 𤕒
+ 0x24558: "yu1", // 𤕘
+ 0x2455a: "hui1", // 𤕚
+ 0x2455b: "che4", // 𤕛
+ 0x2455d: "jiao4", // 𤕝
+ 0x2455e: "zhu4", // 𤕞
+ 0x2455f: "shu1", // 𤕟
+ 0x24562: "xiao2", // 𤕢
+ 0x24566: "ning2", // 𤕦
+ 0x2456d: "jiang1", // 𤕭
+ 0x2456f: "jiang1", // 𤕯
+ 0x24577: "diao4", // 𤕷
+ 0x2457d: "qiang2", // 𤕽
+ 0x2457e: "qiu2", // 𤕾
+ 0x24580: "feng1", // 𤖀
+ 0x24586: "zhan4", // 𤖆
+ 0x24587: "ke1", // 𤖇
+ 0x24592: "die2", // 𤖒
+ 0x24593: "ze2", // 𤖓
+ 0x24596: "guang1", // 𤖖
+ 0x24597: "se4", // 𤖗
+ 0x24598: "fen4", // 𤖘
+ 0x2459b: "jiang3", // 𤖛
+ 0x2459d: "yan2", // 𤖝
+ 0x2459e: "zhi4", // 𤖞
+ 0x245a2: "li4", // 𤖢
+ 0x245a6: "ling2", // 𤖦
+ 0x245aa: "yi2", // 𤖪
+ 0x245ac: "qu3", // 𤖬
+ 0x245ad: "pan2", // 𤖭
+ 0x245ae: "gou1", // 𤖮
+ 0x245b0: "jia3", // 𤖰
+ 0x245b1: "he2", // 𤖱
+ 0x245b3: "peng4", // 𤖳
+ 0x245b5: "ju4", // 𤖵
+ 0x245b7: "che4", // 𤖷
+ 0x245ba: "lie4", // 𤖺
+ 0x245bb: "shi4", // 𤖻
+ 0x245bc: "po4", // 𤖼
+ 0x245bd: "xiang4", // 𤖽
+ 0x245bf: "pi4", // 𤖿
+ 0x245c0: "luo3", // 𤗀
+ 0x245c1: "cu4", // 𤗁
+ 0x245c3: "yu3", // 𤗃
+ 0x245c7: "kong4", // 𤗇
+ 0x245c8: "xie4", // 𤗈
+ 0x245cd: "wan3", // 𤗍
+ 0x245ce: "yan3", // 𤗎
+ 0x245cf: "pei2", // 𤗏
+ 0x245d3: "cheng2", // 𤗓
+ 0x245d8: "ti2", // 𤗘
+ 0x245d9: "che4", // 𤗙
+ 0x245da: "bi4", // 𤗚
+ 0x245db: "lian4", // 𤗛
+ 0x245dc: "jia3", // 𤗜
+ 0x245de: "ting2", // 𤗞
+ 0x245e2: "ti1", // 𤗢
+ 0x245e8: "die2", // 𤗨
+ 0x245ea: "shu4", // 𤗪
+ 0x245eb: "li2", // 𤗫
+ 0x245ec: "lv2", // 𤗬
+ 0x245ed: "xia1", // 𤗭
+ 0x245ef: "cui1", // 𤗯
+ 0x245f3: "bo1", // 𤗳
+ 0x245f4: "tui2", // 𤗴
+ 0x245f5: "pu2", // 𤗵
+ 0x245f7: "lin4", // 𤗷
+ 0x245f8: "fen4", // 𤗸
+ 0x245fa: "bo2", // 𤗺
+ 0x245fb: "chan4", // 𤗻
+ 0x245fe: "dang1", // 𤗾
+ 0x245ff: "tai3", // 𤗿
+ 0x24600: "dao4", // 𤘀
+ 0x24603: "li4", // 𤘃
+ 0x24605: "ya2", // 𤘅
+ 0x24606: "ya2", // 𤘆
+ 0x24607: "zhan1", // 𤘇
+ 0x2460a: "yi2", // 𤘊
+ 0x2460c: "qi1", // 𤘌
+ 0x24614: "hu4", // 𤘔
+ 0x24616: "ting1", // 𤘖
+ 0x24618: "kou3", // 𤘘
+ 0x2461b: "chun2", // 𤘛
+ 0x2461c: "you2", // 𤘜
+ 0x2461d: "fen4", // 𤘝
+ 0x2461f: "nuo2", // 𤘟
+ 0x24620: "tian4", // 𤘠
+ 0x24621: "jin4", // 𤘡
+ 0x24622: "pi2", // 𤘢
+ 0x24623: "chen2", // 𤘣
+ 0x24624: "pi4", // 𤘤
+ 0x24626: "jie4", // 𤘦
+ 0x24627: "gui3", // 𤘧
+ 0x24632: "zhuang4", // 𤘲
+ 0x24635: "hu2", // 𤘵
+ 0x24636: "chou3", // 𤘶
+ 0x24637: "shu4", // 𤘷
+ 0x24638: "tao1", // 𤘸
+ 0x24639: "pi2", // 𤘹
+ 0x2463a: "rong3", // 𤘺
+ 0x2463b: "rong3", // 𤘻
+ 0x2463d: "hou3", // 𤘽
+ 0x2463e: "peng1", // 𤘾
+ 0x24645: "bai4", // 𤙅
+ 0x24647: "xia2", // 𤙇
+ 0x2464b: "qin3", // 𤙋
+ 0x2464c: "ni3", // 𤙌
+ 0x2464e: "tao1", // 𤙎
+ 0x2464f: "qu4", // 𤙏
+ 0x24652: "xie2", // 𤙒
+ 0x24654: "zhao4", // 𤙔
+ 0x24655: "hua1", // 𤙕
+ 0x24656: "xin1", // 𤙖
+ 0x24658: "shou1", // 𤙘
+ 0x2465b: "tu2", // 𤙛
+ 0x2465d: "liang2", // 𤙝
+ 0x2465e: "bi4", // 𤙞
+ 0x2465f: "chu1", // 𤙟
+ 0x24661: "xing1", // 𤙡
+ 0x24663: "xin1", // 𤙣
+ 0x24664: "fu1", // 𤙤
+ 0x24669: "jie4", // 𤙩
+ 0x2466d: "fu3", // 𤙭
+ 0x24670: "te4", // 𤙰
+ 0x24671: "she4", // 𤙱
+ 0x24674: "chao1", // 𤙴
+ 0x24675: "chui1", // 𤙵
+ 0x2467c: "ran2", // 𤙼
+ 0x2467d: "hou3", // 𤙽
+ 0x2467e: "beng1", // 𤙾
+ 0x24680: "cai3", // 𤚀
+ 0x24685: "mu2", // 𤚅
+ 0x24689: "xu1", // 𤚉
+ 0x2468a: "die2", // 𤚊
+ 0x2468d: "chan3", // 𤚍
+ 0x2468e: "yu2", // 𤚎
+ 0x2468f: "zhong4", // 𤚏
+ 0x24693: "li2", // 𤚓
+ 0x24694: "shou1", // 𤚔
+ 0x2469a: "du2", // 𤚚
+ 0x2469c: "mao1", // 𤚜
+ 0x2469d: "huang2", // 𤚝
+ 0x2469f: "tao2", // 𤚟
+ 0x246a1: "du4", // 𤚡
+ 0x246a2: "ti2", // 𤚢
+ 0x246a3: "sheng1", // 𤚣
+ 0x246a4: "mei2", // 𤚤
+ 0x246a8: "zhen1", // 𤚨
+ 0x246a9: "qin2", // 𤚩
+ 0x246aa: "pi4", // 𤚪
+ 0x246ab: "tang2", // 𤚫
+ 0x246ac: "cang1", // 𤚬
+ 0x246ad: "yao2", // 𤚭
+ 0x246af: "xiu4", // 𤚯
+ 0x246b0: "bang1", // 𤚰
+ 0x246b1: "gu3", // 𤚱
+ 0x246b5: "bu4", // 𤚵
+ 0x246bc: "gou4", // 𤚼
+ 0x246bd: "bo2", // 𤚽
+ 0x246c1: "wen4", // 𤛁
+ 0x246c4: "ji4", // 𤛄
+ 0x246ca: "la1", // 𤛊
+ 0x246cd: "cui1", // 𤛍
+ 0x246ce: "min3", // 𤛎
+ 0x246cf: "cu3", // 𤛏
+ 0x246d0: "ou1", // 𤛐
+ 0x246d1: "yong1", // 𤛑
+ 0x246d6: "mao2", // 𤛖
+ 0x246d7: "ke4", // 𤛗
+ 0x246d8: "mang1", // 𤛘
+ 0x246d9: "ding3", // 𤛙
+ 0x246da: "huan1", // 𤛚
+ 0x246db: "duo3", // 𤛛
+ 0x246dc: "jiang1", // 𤛜
+ 0x246dd: "su4", // 𤛝
+ 0x246e2: "ceng2", // 𤛢
+ 0x246e3: "ta4", // 𤛣
+ 0x246e5: "huang2", // 𤛥
+ 0x246e6: "jue2", // 𤛦
+ 0x246e7: "xun2", // 𤛧
+ 0x246ea: "xiong4", // 𤛪
+ 0x246ec: "mi4", // 𤛬
+ 0x246ed: "qun2", // 𤛭
+ 0x246ee: "lao2", // 𤛮
+ 0x246f1: "zhi4", // 𤛱
+ 0x246f2: "wei3", // 𤛲
+ 0x246f7: "se4", // 𤛷
+ 0x246fb: "zang1", // 𤛻
+ 0x24701: "an3", // 𤜁
+ 0x24702: "wei4", // 𤜂
+ 0x24704: "huai4", // 𤜄
+ 0x24707: "zhan4", // 𤜇
+ 0x24709: "ying1", // 𤜉
+ 0x2470a: "ge1", // 𤜊
+ 0x2470b: "hui4", // 𤜋
+ 0x2470d: "quan2", // 𤜍
+ 0x24713: "lie4", // 𤜓
+ 0x24714: "ju2", // 𤜔
+ 0x24715: "ba4", // 𤜕
+ 0x24716: "lei2", // 𤜖
+ 0x24718: "man2", // 𤜘
+ 0x24719: "ling2", // 𤜙
+ 0x2471c: "li4", // 𤜜
+ 0x2471d: "ji3", // 𤜝
+ 0x24721: "hui2", // 𤜡
+ 0x24722: "xin4", // 𤜢
+ 0x24723: "shi4", // 𤜣
+ 0x24724: "zhe2", // 𤜤
+ 0x24727: "bo1", // 𤜧
+ 0x2472b: "cha1", // 𤜫
+ 0x2472f: "cha1", // 𤜯
+ 0x24730: "jing1", // 𤜰
+ 0x24731: "ba1", // 𤜱
+ 0x24732: "bei4", // 𤜲
+ 0x24735: "yan4", // 𤜵
+ 0x24737: "hu4", // 𤜷
+ 0x24739: "yu2", // 𤜹
+ 0x2473b: "bi4", // 𤜻
+ 0x2473c: "chuan2", // 𤜼
+ 0x2473e: "ji3", // 𤜾
+ 0x24742: "mu4", // 𤝂
+ 0x24744: "mao2", // 𤝄
+ 0x24745: "zhong1", // 𤝅
+ 0x24747: "ye4", // 𤝇
+ 0x24748: "dou1", // 𤝈
+ 0x24749: "ye3", // 𤝉
+ 0x2474d: "ri4", // 𤝍
+ 0x2474e: "yin1", // 𤝎
+ 0x24750: "hao4", // 𤝐
+ 0x24752: "na4", // 𤝒
+ 0x24753: "tie4", // 𤝓
+ 0x24754: "fu4", // 𤝔
+ 0x24755: "mu3", // 𤝕
+ 0x24756: "zai3", // 𤝖
+ 0x24758: "hu2", // 𤝘
+ 0x2475a: "chen1", // 𤝚
+ 0x2475b: "tuo2", // 𤝛
+ 0x2475e: "chu4", // 𤝞
+ 0x2475f: "fu2", // 𤝟
+ 0x24767: "bao4", // 𤝧
+ 0x2476c: "di3", // 𤝬
+ 0x2476d: "cai3", // 𤝭
+ 0x2476e: "lu4", // 𤝮
+ 0x2476f: "po3", // 𤝯
+ 0x24770: "da2", // 𤝰
+ 0x24771: "ye4", // 𤝱
+ 0x24773: "yi3", // 𤝳
+ 0x24777: "xiang2", // 𤝷
+ 0x24778: "bi1", // 𤝸
+ 0x24779: "zhu1", // 𤝹
+ 0x2477b: "yi2", // 𤝻
+ 0x2477d: "lv4", // 𤝽
+ 0x2477f: "kuang1", // 𤝿
+ 0x24782: "zhi4", // 𤞂
+ 0x24787: "wa2", // 𤞇
+ 0x24788: "di1", // 𤞈
+ 0x24789: "shu4", // 𤞉
+ 0x2478a: "lie4", // 𤞊
+ 0x2478b: "zao3", // 𤞋
+ 0x2478c: "zhi4", // 𤞌
+ 0x2478d: "nao2", // 𤞍
+ 0x24797: "chai2", // 𤞗
+ 0x2479a: "xiao1", // 𤞚
+ 0x2479b: "zang4", // 𤞛
+ 0x2479e: "yu4", // 𤞞
+ 0x2479f: "dou4", // 𤞟
+ 0x247a0: "cha4", // 𤞠
+ 0x247a1: "xie2", // 𤞡
+ 0x247a2: "yang2", // 𤞢
+ 0x247a4: "xian3", // 𤞤
+ 0x247a5: "bao3", // 𤞥
+ 0x247ae: "zhai1", // 𤞮
+ 0x247b0: "qiu2", // 𤞰
+ 0x247b2: "hu2", // 𤞲
+ 0x247b3: "zai4", // 𤞳
+ 0x247b4: "jue2", // 𤞴
+ 0x247b6: "han1", // 𤞶
+ 0x247bf: "an4", // 𤞿
+ 0x247c0: "zao4", // 𤟀
+ 0x247c3: "sha4", // 𤟃
+ 0x247c5: "xian4", // 𤟅
+ 0x247c6: "chi3", // 𤟆
+ 0x247c7: "yan3", // 𤟇
+ 0x247c9: "an4", // 𤟉
+ 0x247cd: "zhe2", // 𤟍
+ 0x247ce: "jue2", // 𤟎
+ 0x247d1: "li4", // 𤟑
+ 0x247d3: "le4", // 𤟓
+ 0x247d6: "cai3", // 𤟖
+ 0x247d8: "lu4", // 𤟘
+ 0x247da: "jia1", // 𤟚
+ 0x247dd: "xia4", // 𤟝
+ 0x247de: "xiao4", // 𤟞
+ 0x247df: "yan1", // 𤟟
+ 0x247e0: "xu1", // 𤟠
+ 0x247e2: "dun4", // 𤟢
+ 0x247e3: "ying2", // 𤟣
+ 0x247e4: "hui1", // 𤟤
+ 0x247e5: "ti2", // 𤟥
+ 0x247e6: "nou2", // 𤟦
+ 0x247e7: "xi3", // 𤟧
+ 0x247ea: "tu2", // 𤟪
+ 0x247f7: "wai1", // 𤟷
+ 0x247f8: "chen1", // 𤟸
+ 0x247fc: "hong1", // 𤟼
+ 0x247fe: "ti2", // 𤟾
+ 0x247ff: "xuan1", // 𤟿
+ 0x24800: "za2", // 𤠀
+ 0x24807: "ge2", // 𤠇
+ 0x2480b: "lou2", // 𤠋
+ 0x2480c: "chai2", // 𤠌
+ 0x2480d: "pan2", // 𤠍
+ 0x2480e: "ji2", // 𤠎
+ 0x24810: "ta4", // 𤠐
+ 0x24813: "xi1", // 𤠓
+ 0x24816: "xiao1", // 𤠖
+ 0x24818: "sao1", // 𤠘
+ 0x24819: "jia1", // 𤠙
+ 0x2481a: "su4", // 𤠚
+ 0x2481b: "huang1", // 𤠛
+ 0x2481d: "cuo1", // 𤠝
+ 0x2481f: "ta4", // 𤠟
+ 0x24820: "shuai1", // 𤠠
+ 0x2482a: "fu2", // 𤠪
+ 0x2482b: "li4", // 𤠫
+ 0x2482d: "she4", // 𤠭
+ 0x2482f: "tang2", // 𤠯
+ 0x24836: "dian1", // 𤠶
+ 0x2483a: "bi4", // 𤠺
+ 0x2483c: "gou4", // 𤠼
+ 0x2483d: "cu4", // 𤠽
+ 0x2483f: "qian1", // 𤠿
+ 0x24842: "lei2", // 𤡂
+ 0x24843: "su4", // 𤡃
+ 0x24846: "zong4", // 𤡆
+ 0x24847: "hao1", // 𤡇
+ 0x2484f: "chi4", // 𤡏
+ 0x24850: "cao2", // 𤡐
+ 0x24853: "wo4", // 𤡓
+ 0x24854: "xiao1", // 𤡔
+ 0x24855: "lie4", // 𤡕
+ 0x24856: "yan1", // 𤡖
+ 0x2485d: "bi4", // 𤡝
+ 0x2485f: "huan4", // 𤡟
+ 0x24861: "xi1", // 𤡡
+ 0x24862: "chi1", // 𤡢
+ 0x24863: "xu1", // 𤡣
+ 0x24864: "nao2", // 𤡤
+ 0x24865: "yan2", // 𤡥
+ 0x24867: "xie4", // 𤡧
+ 0x24868: "zha2", // 𤡨
+ 0x2486a: "sui4", // 𤡪
+ 0x2486c: "xi4", // 𤡬
+ 0x2486d: "beng1", // 𤡭
+ 0x2486e: "ran2", // 𤡮
+ 0x2486f: "shuo4", // 𤡯
+ 0x24870: "ban1", // 𤡰
+ 0x24871: "gui4", // 𤡱
+ 0x24872: "kai1", // 𤡲
+ 0x24873: "chen1", // 𤡳
+ 0x24876: "xu4", // 𤡶
+ 0x2487e: "e4", // 𤡾
+ 0x2487f: "li4", // 𤡿
+ 0x24880: "xi1", // 𤢀
+ 0x24881: "huan4", // 𤢁
+ 0x24882: "su4", // 𤢂
+ 0x24884: "chang3", // 𤢄
+ 0x2488a: "lu4", // 𤢊
+ 0x2488b: "yan2", // 𤢋
+ 0x2488e: "dang1", // 𤢎
+ 0x2488f: "dan3", // 𤢏
+ 0x24890: "yang1", // 𤢐
+ 0x24892: "zhai3", // 𤢒
+ 0x24893: "ju4", // 𤢓
+ 0x24895: "duo2", // 𤢕
+ 0x24896: "sao1", // 𤢖
+ 0x24897: "lai2", // 𤢗
+ 0x24898: "su4", // 𤢘
+ 0x2489f: "ze2", // 𤢟
+ 0x248a3: "bi4", // 𤢣
+ 0x248a6: "yin4", // 𤢦
+ 0x248a8: "hao1", // 𤢨
+ 0x248aa: "lie4", // 𤢪
+ 0x248ad: "hao2", // 𤢭
+ 0x248ae: "yang2", // 𤢮
+ 0x248b4: "shuo4", // 𤢴
+ 0x248b5: "ai4", // 𤢵
+ 0x248b6: "qiong2", // 𤢶
+ 0x248b9: "lei3", // 𤢹
+ 0x248ba: "xie2", // 𤢺
+ 0x248bc: "shi4", // 𤢼
+ 0x248c3: "lu3", // 𤣃
+ 0x248c5: "que4", // 𤣅
+ 0x248c6: "lian2", // 𤣆
+ 0x248cc: "xiao4", // 𤣌
+ 0x248ce: "ying1", // 𤣎
+ 0x248d1: "xie2", // 𤣑
+ 0x248d8: "ling2", // 𤣘
+ 0x248d9: "you1", // 𤣙
+ 0x248de: "dang3", // 𤣞
+ 0x248df: "lan3", // 𤣟
+ 0x248e0: "xiao1", // 𤣠
+ 0x248e8: "yi4", // 𤣨
+ 0x248ec: "wu1", // 𤣬
+ 0x248ee: "yi4", // 𤣮
+ 0x248ef: "tuo1", // 𤣯
+ 0x248f0: "bu3", // 𤣰
+ 0x248f2: "xin4", // 𤣲
+ 0x248f5: "si1", // 𤣵
+ 0x248f6: "jin1", // 𤣶
+ 0x248f8: "ba1", // 𤣸
+ 0x248f9: "fa3", // 𤣹
+ 0x248fb: "mo4", // 𤣻
+ 0x248fc: "ruo4", // 𤣼
+ 0x2490a: "da4", // 𤤊
+ 0x2490b: "ji4", // 𤤋
+ 0x24910: "su4", // 𤤐
+ 0x24911: "qiong2", // 𤤑
+ 0x24912: "ba1", // 𤤒
+ 0x24926: "tian2", // 𤤦
+ 0x24927: "you2", // 𤤧
+ 0x24929: "tuo2", // 𤤩
+ 0x2492b: "wai4", // 𤤫
+ 0x2492c: "you4", // 𤤬
+ 0x2492e: "dong1", // 𤤮
+ 0x24931: "xi3", // 𤤱
+ 0x24932: "kong3", // 𤤲
+ 0x24936: "qiong2", // 𤤶
+ 0x24937: "dui1", // 𤤷
+ 0x24938: "duo4", // 𤤸
+ 0x2493a: "yi4", // 𤤺
+ 0x24952: "xi1", // 𤥒
+ 0x24953: "qin1", // 𤥓
+ 0x24954: "su4", // 𤥔
+ 0x24957: "liu2", // 𤥗
+ 0x24959: "wan2", // 𤥙
+ 0x2496d: "che1", // 𤥭
+ 0x2496e: "zhu1", // 𤥮
+ 0x24970: "mao4", // 𤥰
+ 0x24977: "quan2", // 𤥷
+ 0x2497d: "yu1", // 𤥽
+ 0x2497f: "yi4", // 𤥿
+ 0x24980: "mi2", // 𤦀
+ 0x24983: "lai2", // 𤦃
+ 0x24984: "zhi4", // 𤦄
+ 0x249a4: "ni2", // 𤦤
+ 0x249a6: "ban1", // 𤦦
+ 0x249aa: "dong1", // 𤦪
+ 0x249ae: "zhi4", // 𤦮
+ 0x249d5: "yi4", // 𤧕
+ 0x249d8: "ling2", // 𤧘
+ 0x249d9: "yu2", // 𤧙
+ 0x249da: "cong1", // 𤧚
+ 0x249db: "di4", // 𤧛
+ 0x249dc: "zhi4", // 𤧜
+ 0x249e0: "ruan3", // 𤧠
+ 0x249e3: "jian4", // 𤧣
+ 0x249e9: "wan4", // 𤧩
+ 0x249eb: "jin4", // 𤧫
+ 0x249ed: "pang2", // 𤧭
+ 0x24a0d: "lu4", // 𤨍
+ 0x24a0e: "qu2", // 𤨎
+ 0x24a10: "xi3", // 𤨐
+ 0x24a11: "da2", // 𤨑
+ 0x24a16: "hu4", // 𤨖
+ 0x24a17: "luo3", // 𤨗
+ 0x24a19: "le4", // 𤨙
+ 0x24a36: "gong3", // 𤨶
+ 0x24a3b: "ling4", // 𤨻
+ 0x24a42: "lao2", // 𤩂
+ 0x24a44: "zhuan4", // 𤩄
+ 0x24a68: "zao3", // 𤩨
+ 0x24a69: "hao4", // 𤩩
+ 0x24a6a: "xiang4", // 𤩪
+ 0x24a6d: "hao4", // 𤩭
+ 0x24a6e: "li4", // 𤩮
+ 0x24a71: "dian4", // 𤩱
+ 0x24a72: "ge2", // 𤩲
+ 0x24a7d: "huan2", // 𤩽
+ 0x24a84: "e4", // 𤪄
+ 0x24a86: "xia2", // 𤪆
+ 0x24a8b: "jian1", // 𤪋
+ 0x24a8c: "qi2", // 𤪌
+ 0x24a8d: "xia2", // 𤪍
+ 0x24a8e: "you3", // 𤪎
+ 0x24aa1: "zheng1", // 𤪡
+ 0x24aaa: "zhuan4", // 𤪪
+ 0x24aae: "chan4", // 𤪮
+ 0x24ac9: "xie4", // 𤫉
+ 0x24ad5: "nao2", // 𤫕
+ 0x24add: "ji4", // 𤫝
+ 0x24ade: "tian2", // 𤫞
+ 0x24ae3: "yan3", // 𤫣
+ 0x24ae7: "hao3", // 𤫧
+ 0x24ae8: "xin2", // 𤫨
+ 0x24ae9: "ling2", // 𤫩
+ 0x24aeb: "ban1", // 𤫫
+ 0x24aec: "beng3", // 𤫬
+ 0x24af1: "gou1", // 𤫱
+ 0x24af2: "ling2", // 𤫲
+ 0x24af5: "kuo4", // 𤫵
+ 0x24af6: "qia4", // 𤫶
+ 0x24af7: "jiao4", // 𤫷
+ 0x24af9: "en1", // 𤫹
+ 0x24afa: "yao2", // 𤫺
+ 0x24afb: "du1", // 𤫻
+ 0x24b01: "huo3", // 𤬁
+ 0x24b02: "du3", // 𤬂
+ 0x24b03: "pei1", // 𤬃
+ 0x24b0c: "yuan2", // 𤬌
+ 0x24b0f: "lou2", // 𤬏
+ 0x24b10: "xing2", // 𤬐
+ 0x24b13: "lian2", // 𤬓
+ 0x24b14: "yao2", // 𤬔
+ 0x24b15: "xi1", // 𤬕
+ 0x24b16: "yao2", // 𤬖
+ 0x24b18: "xi1", // 𤬘
+ 0x24b1b: "lu2", // 𤬛
+ 0x24b1d: "yan4", // 𤬝
+ 0x24b20: "quan2", // 𤬠
+ 0x24b25: "rang2", // 𤬥
+ 0x24b26: "wa4", // 𤬦
+ 0x24b27: "zu2", // 𤬧
+ 0x24b28: "fan4", // 𤬨
+ 0x24b29: "yi4", // 𤬩
+ 0x24b2a: "du4", // 𤬪
+ 0x24b2b: "sui4", // 𤬫
+ 0x24b2d: "pi1", // 𤬭
+ 0x24b2f: "han2", // 𤬯
+ 0x24b31: "xu4", // 𤬱
+ 0x24b33: "gong3", // 𤬳
+ 0x24b35: "di4", // 𤬵
+ 0x24b37: "na4", // 𤬷
+ 0x24b3e: "duo4", // 𤬾
+ 0x24b3f: "wa1", // 𤬿
+ 0x24b42: "nie4", // 𤭂
+ 0x24b48: "diao4", // 𤭈
+ 0x24b49: "huang1", // 𤭉
+ 0x24b4c: "ti2", // 𤭌
+ 0x24b4d: "fan4", // 𤭍
+ 0x24b51: "wu2", // 𤭑
+ 0x24b52: "ang2", // 𤭒
+ 0x24b54: "ping2", // 𤭔
+ 0x24b59: "han2", // 𤭙
+ 0x24b5b: "gang1", // 𤭛
+ 0x24b5c: "li2", // 𤭜
+ 0x24b5e: "dun1", // 𤭞
+ 0x24b5f: "fu4", // 𤭟
+ 0x24b60: "na4", // 𤭠
+ 0x24b62: "cei4", // 𤭢
+ 0x24b67: "jie1", // 𤭧
+ 0x24b69: "qing4", // 𤭩
+ 0x24b6b: "ying1", // 𤭫
+ 0x24b6c: "xiang2", // 𤭬
+ 0x24b71: "hu2", // 𤭱
+ 0x24b74: "su4", // 𤭴
+ 0x24b7b: "ge1", // 𤭻
+ 0x24b7c: "e4", // 𤭼
+ 0x24b7d: "xu4", // 𤭽
+ 0x24b86: "xi1", // 𤮆
+ 0x24b8a: "kang1", // 𤮊
+ 0x24b8b: "guo2", // 𤮋
+ 0x24b8c: "jie1", // 𤮌
+ 0x24b8d: "chuan2", // 𤮍
+ 0x24b8e: "lei2", // 𤮎
+ 0x24b8f: "heng2", // 𤮏
+ 0x24b90: "zun1", // 𤮐
+ 0x24b95: "pie4", // 𤮕
+ 0x24b98: "deng1", // 𤮘
+ 0x24b99: "xi1", // 𤮙
+ 0x24b9a: "lei2", // 𤮚
+ 0x24b9c: "shan4", // 𤮜
+ 0x24ba7: "lu2", // 𤮧
+ 0x24ba9: "dui4", // 𤮩
+ 0x24baa: "jun4", // 𤮪
+ 0x24bad: "chan4", // 𤮭
+ 0x24baf: "xie2", // 𤮯
+ 0x24bb0: "wa1", // 𤮰
+ 0x24bb1: "zhe2", // 𤮱
+ 0x24bb3: "zhuan1", // 𤮳
+ 0x24bb7: "liu4", // 𤮷
+ 0x24bb8: "lei2", // 𤮸
+ 0x24bbc: "dai4", // 𤮼
+ 0x24bbd: "gan1", // 𤮽
+ 0x24bc4: "shi4", // 𤯄
+ 0x24bc7: "yan3", // 𤯇
+ 0x24bcc: "gan1", // 𤯌
+ 0x24bd0: "yan2", // 𤯐
+ 0x24bd6: "sui1", // 𤯖
+ 0x24bda: "zhong1", // 𤯚
+ 0x24bdc: "shi4", // 𤯜
+ 0x24be1: "sheng4", // 𤯡
+ 0x24be5: "chan3", // 𤯥
+ 0x24bf7: "huang2", // 𤯷
+ 0x24bf8: "yin4", // 𤯸
+ 0x24bfb: "meng3", // 𤯻
+ 0x24c02: "rang2", // 𤰂
+ 0x24c05: "xiang2", // 𤰅
+ 0x24c08: "bei4", // 𤰈
+ 0x24c0c: "chuan2", // 𤰌
+ 0x24c11: "pu2", // 𤰑
+ 0x24c19: "ke1", // 𤰙
+ 0x24c1a: "la1", // 𤰚
+ 0x24c1d: "quan3", // 𤰝
+ 0x24c1f: "hang4", // 𤰟
+ 0x24c20: "chi4", // 𤰠
+ 0x24c21: "mang2", // 𤰡
+ 0x24c26: "zha4", // 𤰦
+ 0x24c2a: "fen4", // 𤰪
+ 0x24c2c: "chao4", // 𤰬
+ 0x24c33: "jing3", // 𤰳
+ 0x24c43: "lie4", // 𤱃
+ 0x24c45: "na4", // 𤱅
+ 0x24c46: "na4", // 𤱆
+ 0x24c47: "tong2", // 𤱇
+ 0x24c4b: "ran2", // 𤱋
+ 0x24c4c: "zu3", // 𤱌
+ 0x24c4d: "pi1", // 𤱍
+ 0x24c4e: "you3", // 𤱎
+ 0x24c50: "shu1", // 𤱐
+ 0x24c5b: "lie4", // 𤱛
+ 0x24c5c: "shou1", // 𤱜
+ 0x24c5d: "tuan3", // 𤱝
+ 0x24c5f: "gao3", // 𤱟
+ 0x24c60: "shao2", // 𤱠
+ 0x24c61: "tuo2", // 𤱡
+ 0x24c63: "nan2", // 𤱣
+ 0x24c67: "tuo3", // 𤱧
+ 0x24c68: "gong1", // 𤱨
+ 0x24c69: "diao4", // 𤱩
+ 0x24c74: "meng3", // 𤱴
+ 0x24c75: "bang1", // 𤱵
+ 0x24c77: "xie2", // 𤱷
+ 0x24c78: "si4", // 𤱸
+ 0x24c79: "ting3", // 𤱹
+ 0x24c7a: "gui4", // 𤱺
+ 0x24c7d: "fu2", // 𤱽
+ 0x24c7e: "gui4", // 𤱾
+ 0x24c89: "gui4", // 𤲉
+ 0x24c91: "zhu3", // 𤲑
+ 0x24c93: "lai2", // 𤲓
+ 0x24c95: "lun3", // 𤲕
+ 0x24c96: "tian3", // 𤲖
+ 0x24c97: "ran3", // 𤲗
+ 0x24c9a: "dong1", // 𤲚
+ 0x24ca8: "juan4", // 𤲨
+ 0x24ca9: "yan2", // 𤲩
+ 0x24cac: "ruan2", // 𤲬
+ 0x24cad: "dan3", // 𤲭
+ 0x24cb0: "mao4", // 𤲰
+ 0x24cb6: "luan2", // 𤲶
+ 0x24cb8: "xu4", // 𤲸
+ 0x24cba: "xi1", // 𤲺
+ 0x24cc2: "ma2", // 𤳂
+ 0x24cc3: "qi1", // 𤳃
+ 0x24cc5: "cha4", // 𤳅
+ 0x24cc8: "shang1", // 𤳈
+ 0x24cc9: "han4", // 𤳉
+ 0x24cca: "ping2", // 𤳊
+ 0x24cce: "ji1", // 𤳎
+ 0x24cd3: "li4", // 𤳓
+ 0x24cd5: "yu4", // 𤳕
+ 0x24cd6: "ban1", // 𤳖
+ 0x24cd8: "teng1", // 𤳘
+ 0x24cdd: "chou2", // 𤳝
+ 0x24ce0: "chou2", // 𤳠
+ 0x24ce4: "qi1", // 𤳤
+ 0x24ce5: "xi1", // 𤳥
+ 0x24ce6: "bei4", // 𤳦
+ 0x24cea: "ye4", // 𤳪
+ 0x24ced: "guang3", // 𤳭
+ 0x24cef: "zhu4", // 𤳯
+ 0x24cf3: "lei2", // 𤳳
+ 0x24cf4: "lei2", // 𤳴
+ 0x24cf5: "cha1", // 𤳵
+ 0x24d00: "guang3", // 𤴀
+ 0x24d0d: "die2", // 𤴍
+ 0x24d13: "ya3", // 𤴓
+ 0x24d18: "nie4", // 𤴘
+ 0x24d19: "shu1", // 𤴙
+ 0x24d1b: "zhi4", // 𤴛
+ 0x24d1f: "zhi4", // 𤴟
+ 0x24d22: "zhi4", // 𤴢
+ 0x24d23: "pi3", // 𤴣
+ 0x24d25: "jiu1", // 𤴥
+ 0x24d26: "jiu1", // 𤴦
+ 0x24d27: "yi4", // 𤴧
+ 0x24d28: "you4", // 𤴨
+ 0x24d2a: "jiu1", // 𤴪
+ 0x24d2f: "huan4", // 𤴯
+ 0x24d31: "du4", // 𤴱
+ 0x24d3b: "tao2", // 𤴻
+ 0x24d3c: "qie4", // 𤴼
+ 0x24d3d: "qin2", // 𤴽
+ 0x24d3e: "xin4", // 𤴾
+ 0x24d3f: "chan1", // 𤴿
+ 0x24d40: "ji4", // 𤵀
+ 0x24d42: "qin4", // 𤵂
+ 0x24d4a: "du4", // 𤵊
+ 0x24d4b: "zhi1", // 𤵋
+ 0x24d4e: "ou3", // 𤵎
+ 0x24d50: "wu4", // 𤵐
+ 0x24d52: "wen2", // 𤵒
+ 0x24d58: "bi4", // 𤵘
+ 0x24d5b: "bei1", // 𤵛
+ 0x24d5d: "mu3", // 𤵝
+ 0x24d5e: "jin4", // 𤵞
+ 0x24d5f: "tao2", // 𤵟
+ 0x24d60: "liao2", // 𤵠
+ 0x24d65: "cao2", // 𤵥
+ 0x24d66: "zha2", // 𤵦
+ 0x24d6c: "chi3", // 𤵬
+ 0x24d6d: "ya1", // 𤵭
+ 0x24d6e: "kui2", // 𤵮
+ 0x24d6f: "yin4", // 𤵯
+ 0x24d78: "long2", // 𤵸
+ 0x24d79: "qia4", // 𤵹
+ 0x24d7b: "hang1", // 𤵻
+ 0x24d7c: "shang4", // 𤵼
+ 0x24d7d: "hai4", // 𤵽
+ 0x24d7e: "cha1", // 𤵾
+ 0x24d80: "jiao3", // 𤶀
+ 0x24d81: "lao3", // 𤶁
+ 0x24d88: "xi1", // 𤶈
+ 0x24d8b: "bo2", // 𤶋
+ 0x24d93: "zhi3", // 𤶓
+ 0x24d95: "tun4", // 𤶕
+ 0x24d96: "fu2", // 𤶖
+ 0x24d98: "hu1", // 𤶘
+ 0x24d9a: "nie4", // 𤶚
+ 0x24d9b: "yi4", // 𤶛
+ 0x24d9c: "zhuang4", // 𤶜
+ 0x24da0: "cha2", // 𤶠
+ 0x24da4: "suan1", // 𤶤
+ 0x24da7: "yun4", // 𤶧
+ 0x24dae: "du4", // 𤶮
+ 0x24db0: "xi1", // 𤶰
+ 0x24db1: "chuan4", // 𤶱
+ 0x24db2: "xing2", // 𤶲
+ 0x24db3: "jiao3", // 𤶳
+ 0x24db4: "shen1", // 𤶴
+ 0x24dc0: "wang1", // 𤷀
+ 0x24dc1: "bei1", // 𤷁
+ 0x24dc2: "fei2", // 𤷂
+ 0x24dc3: "jian4", // 𤷃
+ 0x24dc4: "quan2", // 𤷄
+ 0x24dc5: "yi4", // 𤷅
+ 0x24dc6: "dong1", // 𤷆
+ 0x24dc7: "xu4", // 𤷇
+ 0x24dc8: "na4", // 𤷈
+ 0x24dc9: "ji2", // 𤷉
+ 0x24dcc: "zhen3", // 𤷌
+ 0x24dcd: "qi2", // 𤷍
+ 0x24dce: "dui1", // 𤷎
+ 0x24dcf: "yin2", // 𤷏
+ 0x24dd1: "jiu4", // 𤷑
+ 0x24dd2: "pi2", // 𤷒
+ 0x24dd3: "xin4", // 𤷓
+ 0x24dd4: "lun2", // 𤷔
+ 0x24dd5: "cai3", // 𤷕
+ 0x24dd6: "ling4", // 𤷖
+ 0x24dd7: "bie1", // 𤷗
+ 0x24dd8: "dao4", // 𤷘
+ 0x24dd9: "de2", // 𤷙
+ 0x24ddf: "la5", // 𤷟
+ 0x24de1: "xi1", // 𤷡
+ 0x24de2: "ju4", // 𤷢
+ 0x24de4: "xiao2", // 𤷤
+ 0x24de6: "jing1", // 𤷦
+ 0x24df9: "wai4", // 𤷹
+ 0x24dfb: "nao3", // 𤷻
+ 0x24dfc: "xiang1", // 𤷼
+ 0x24dfd: "que4", // 𤷽
+ 0x24dfe: "qie4", // 𤷾
+ 0x24dff: "tu1", // 𤷿
+ 0x24e00: "xu3", // 𤸀
+ 0x24e01: "hui4", // 𤸁
+ 0x24e05: "min2", // 𤸅
+ 0x24e06: "wei3", // 𤸆
+ 0x24e08: "you2", // 𤸈
+ 0x24e09: "tui2", // 𤸉
+ 0x24e0a: "dai4", // 𤸊
+ 0x24e0e: "ke3", // 𤸎
+ 0x24e0f: "na4", // 𤸏
+ 0x24e11: "fu4", // 𤸑
+ 0x24e12: "yu4", // 𤸒
+ 0x24e13: "zhi3", // 𤸓
+ 0x24e15: "han1", // 𤸕
+ 0x24e16: "ai1", // 𤸖
+ 0x24e17: "fu4", // 𤸗
+ 0x24e21: "yang1", // 𤸡
+ 0x24e24: "shi2", // 𤸤
+ 0x24e26: "chan2", // 𤸦
+ 0x24e2a: "chi4", // 𤸪
+ 0x24e2b: "yun4", // 𤸫
+ 0x24e2c: "shuai1", // 𤸬
+ 0x24e2e: "su4", // 𤸮
+ 0x24e2f: "sang3", // 𤸯
+ 0x24e31: "e4", // 𤸱
+ 0x24e32: "zheng3", // 𤸲
+ 0x24e33: "ai2", // 𤸳
+ 0x24e34: "suo3", // 𤸴
+ 0x24e35: "bu4", // 𤸵
+ 0x24e37: "qun2", // 𤸷
+ 0x24e38: "yi4", // 𤸸
+ 0x24e39: "yan3", // 𤸹
+ 0x24e3b: "na4", // 𤸻
+ 0x24e3c: "wu3", // 𤸼
+ 0x24e47: "li4", // 𤹇
+ 0x24e48: "li4", // 𤹈
+ 0x24e4a: "xi1", // 𤹊
+ 0x24e4b: "jue2", // 𤹋
+ 0x24e4c: "shi1", // 𤹌
+ 0x24e4e: "ya3", // 𤹎
+ 0x24e5b: "chen2", // 𤹛
+ 0x24e5c: "ying2", // 𤹜
+ 0x24e5d: "bi4", // 𤹝
+ 0x24e5e: "che4", // 𤹞
+ 0x24e61: "zha1", // 𤹡
+ 0x24e62: "tuo3", // 𤹢
+ 0x24e63: "hu4", // 𤹣
+ 0x24e64: "teng2", // 𤹤
+ 0x24e65: "ying4", // 𤹥
+ 0x24e66: "bi3", // 𤹦
+ 0x24e67: "ning2", // 𤹧
+ 0x24e68: "lian4", // 𤹨
+ 0x24e69: "xin4", // 𤹩
+ 0x24e6a: "yu3", // 𤹪
+ 0x24e72: "bei4", // 𤹲
+ 0x24e74: "mo2", // 𤹴
+ 0x24e75: "dui1", // 𤹵
+ 0x24e77: "dao3", // 𤹷
+ 0x24e78: "qi2", // 𤹸
+ 0x24e80: "shuai1", // 𤺀
+ 0x24e83: "xiao1", // 𤺃
+ 0x24e84: "zhong3", // 𤺄
+ 0x24e85: "zhui4", // 𤺅
+ 0x24e87: "bian4", // 𤺇
+ 0x24e89: "wei3", // 𤺉
+ 0x24e8a: "xi1", // 𤺊
+ 0x24e8c: "deng1", // 𤺌
+ 0x24e8e: "xie1", // 𤺎
+ 0x24e8f: "pan1", // 𤺏
+ 0x24e90: "nie4", // 𤺐
+ 0x24e93: "bie2", // 𤺓
+ 0x24e94: "she4", // 𤺔
+ 0x24e95: "fei4", // 𤺕
+ 0x24e96: "min3", // 𤺖
+ 0x24e97: "qi4", // 𤺗
+ 0x24eaa: "shan4", // 𤺪
+ 0x24eab: "suo3", // 𤺫
+ 0x24eb7: "ji2", // 𤺷
+ 0x24eba: "dan3", // 𤺺
+ 0x24ebb: "juan4", // 𤺻
+ 0x24ebc: "lu4", // 𤺼
+ 0x24ebe: "ao4", // 𤺾
+ 0x24ec2: "yi4", // 𤻂
+ 0x24ec3: "shu3", // 𤻃
+ 0x24ec4: "sui4", // 𤻄
+ 0x24ec5: "wei4", // 𤻅
+ 0x24ec6: "wan2", // 𤻆
+ 0x24ec7: "chu3", // 𤻇
+ 0x24ecc: "wo4", // 𤻌
+ 0x24ed6: "bi4", // 𤻖
+ 0x24ed8: "yin3", // 𤻘
+ 0x24ed9: "huo2", // 𤻙
+ 0x24edc: "kai4", // 𤻜
+ 0x24edd: "ning2", // 𤻝
+ 0x24ee2: "ai4", // 𤻢
+ 0x24ee4: "li4", // 𤻤
+ 0x24ee6: "zhai1", // 𤻦
+ 0x24ef1: "lu4", // 𤻱
+ 0x24ef6: "bian4", // 𤻶
+ 0x24ef7: "pan2", // 𤻷
+ 0x24eff: "gui4", // 𤻿
+ 0x24f00: "su1", // 𤼀
+ 0x24f01: "meng2", // 𤼁
+ 0x24f02: "xian3", // 𤼂
+ 0x24f03: "long4", // 𤼃
+ 0x24f05: "qi4", // 𤼅
+ 0x24f0b: "chan4", // 𤼋
+ 0x24f0c: "yi4", // 𤼌
+ 0x24f0d: "hang2", // 𤼍
+ 0x24f0f: "lian3", // 𤼏
+ 0x24f10: "guan4", // 𤼐
+ 0x24f12: "wei3", // 𤼒
+ 0x24f17: "jue2", // 𤼗
+ 0x24f18: "lei2", // 𤼘
+ 0x24f19: "luan2", // 𤼙
+ 0x24f1a: "li4", // 𤼚
+ 0x24f1c: "pi2", // 𤼜
+ 0x24f22: "huan3", // 𤼢
+ 0x24f2e: "gui1", // 𤼮
+ 0x24f33: "ju2", // 𤼳
+ 0x24f36: "deng1", // 𤼶
+ 0x24f3a: "fei4", // 𤼺
+ 0x24f41: "zhi1", // 𤽁
+ 0x24f43: "mei4", // 𤽃
+ 0x24f45: "huan4", // 𤽅
+ 0x24f49: "pa1", // 𤽉
+ 0x24f4a: "bi3", // 𤽊
+ 0x24f4c: "po1", // 𤽌
+ 0x24f53: "er2", // 𤽓
+ 0x24f55: "huan4", // 𤽕
+ 0x24f63: "chang4", // 𤽣
+ 0x24f65: "luo4", // 𤽥
+ 0x24f66: "fou3", // 𤽦
+ 0x24f6f: "chou2", // 𤽯
+ 0x24f71: "zu2", // 𤽱
+ 0x24f72: "nan2", // 𤽲
+ 0x24f73: "xiao3", // 𤽳
+ 0x24f79: "bai4", // 𤽹
+ 0x24f7a: "lu4", // 𤽺
+ 0x24f7c: "luo4", // 𤽼
+ 0x24f7f: "nian4", // 𤽿
+ 0x24f80: "ze2", // 𤾀
+ 0x24f84: "zhu4", // 𤾄
+ 0x24f85: "hu2", // 𤾅
+ 0x24f88: "hui1", // 𤾈
+ 0x24f89: "tang3", // 𤾉
+ 0x24f8a: "chou2", // 𤾊
+ 0x24f91: "huang2", // 𤾑
+ 0x24f92: "dou1", // 𤾒
+ 0x24f9b: "miao4", // 𤾛
+ 0x24f9d: "bo2", // 𤾝
+ 0x24fa0: "di4", // 𤾠
+ 0x24fa2: "deng3", // 𤾢
+ 0x24fa3: "pu1", // 𤾣
+ 0x24fa5: "song1", // 𤾥
+ 0x24fa6: "chou2", // 𤾦
+ 0x24fab: "yao4", // 𤾫
+ 0x24fac: "meng3", // 𤾬
+ 0x24fad: "long2", // 𤾭
+ 0x24fb2: "lian2", // 𤾲
+ 0x24fb5: "bie2", // 𤾵
+ 0x24fba: "lv3", // 𤾺
+ 0x24fbf: "se4", // 𤾿
+ 0x24fc0: "zuo2", // 𤿀
+ 0x24fc4: "cun2", // 𤿄
+ 0x24fc5: "ling2", // 𤿅
+ 0x24fc6: "zheng3", // 𤿆
+ 0x24fc7: "pi3", // 𤿇
+ 0x24fc8: "bao2", // 𤿈
+ 0x24fcb: "que4", // 𤿋
+ 0x24fce: "pi1", // 𤿎
+ 0x24fcf: "nan4", // 𤿏
+ 0x24fd0: "pi1", // 𤿐
+ 0x24fd1: "bo3", // 𤿑
+ 0x24fd2: "bei4", // 𤿒
+ 0x24fd3: "fa1", // 𤿓
+ 0x24fd5: "min3", // 𤿕
+ 0x24fd6: "mo4", // 𤿖
+ 0x24fd7: "wa4", // 𤿗
+ 0x24fd8: "zhao1", // 𤿘
+ 0x24fd9: "zhi4", // 𤿙
+ 0x24fda: "cu1", // 𤿚
+ 0x24fdf: "xun2", // 𤿟
+ 0x24fe0: "ji2", // 𤿠
+ 0x24fe1: "gui4", // 𤿡
+ 0x24fe3: "cheng2", // 𤿣
+ 0x24fe7: "han4", // 𤿧
+ 0x24fe8: "xiao4", // 𤿨
+ 0x24fe9: "que4", // 𤿩
+ 0x24feb: "chuo4", // 𤿫
+ 0x24fed: "fu3", // 𤿭
+ 0x24ff3: "qin3", // 𤿳
+ 0x24ff4: "lu4", // 𤿴
+ 0x24ff5: "que4", // 𤿵
+ 0x24ff6: "dian3", // 𤿶
+ 0x24ff7: "qian1", // 𤿷
+ 0x24ffc: "chang3", // 𤿼
+ 0x24ffd: "ta4", // 𤿽
+ 0x24ffe: "bei1", // 𤿾
+ 0x25001: "du4", // 𥀁
+ 0x25002: "beng3", // 𥀂
+ 0x25003: "hou4", // 𥀃
+ 0x25008: "zha3", // 𥀈
+ 0x25009: "zha3", // 𥀉
+ 0x2500e: "que4", // 𥀎
+ 0x2500f: "ma2", // 𥀏
+ 0x25010: "han2", // 𥀐
+ 0x25013: "liu2", // 𥀓
+ 0x25014: "lu4", // 𥀔
+ 0x25016: "zi1", // 𥀖
+ 0x25018: "pi3", // 𥀘
+ 0x25019: "zhou4", // 𥀙
+ 0x2501b: "zao1", // 𥀛
+ 0x2501d: "niu3", // 𥀝
+ 0x25020: "hui4", // 𥀠
+ 0x25023: "xue2", // 𥀣
+ 0x25025: "la4", // 𥀥
+ 0x2502b: "nou2", // 𥀫
+ 0x2502c: "yan3", // 𥀬
+ 0x2502d: "ran3", // 𥀭
+ 0x2502e: "nao3", // 𥀮
+ 0x25030: "la4", // 𥀰
+ 0x25031: "guang3", // 𥀱
+ 0x25032: "du2", // 𥀲
+ 0x25035: "lu2", // 𥀵
+ 0x25039: "jian3", // 𥀹
+ 0x2503a: "xie4", // 𥀺
+ 0x2503b: "qi4", // 𥀻
+ 0x2503e: "xiang4", // 𥀾
+ 0x25041: "guo3", // 𥁁
+ 0x25042: "jie2", // 𥁂
+ 0x25043: "mang4", // 𥁃
+ 0x25046: "xia1", // 𥁆
+ 0x25047: "kui1", // 𥁇
+ 0x2504e: "yong4", // 𥁎
+ 0x25050: "hai3", // 𥁐
+ 0x25051: "mi4", // 𥁑
+ 0x25052: "yao4", // 𥁒
+ 0x25055: "wen1", // 𥁕
+ 0x2505f: "li4", // 𥁟
+ 0x25060: "juan4", // 𥁠
+ 0x25061: "wu1", // 𥁡
+ 0x25062: "qiao2", // 𥁢
+ 0x2506e: "diao4", // 𥁮
+ 0x2506f: "chu4", // 𥁯
+ 0x25072: "suo1", // 𥁲
+ 0x25075: "chong1", // 𥁵
+ 0x25078: "quan1", // 𥁸
+ 0x25079: "she4", // 𥁹
+ 0x25082: "meng3", // 𥂂
+ 0x25083: "ju4", // 𥂃
+ 0x2508b: "tu2", // 𥂋
+ 0x25092: "nong2", // 𥂒
+ 0x25093: "mo2", // 𥂓
+ 0x25099: "fen4", // 𥂙
+ 0x250a2: "ao2", // 𥂢
+ 0x250a3: "guo1", // 𥂣
+ 0x250a4: "hu2", // 𥂤
+ 0x250a5: "can2", // 𥂥
+ 0x250a6: "dun1", // 𥂦
+ 0x250a7: "hai3", // 𥂧
+ 0x250a8: "jiao3", // 𥂨
+ 0x250b0: "gu1", // 𥂰
+ 0x250b5: "jin1", // 𥂵
+ 0x250b8: "yang2", // 𥂸
+ 0x250c0: "cha4", // 𥃀
+ 0x250cc: "hui1", // 𥃌
+ 0x250d4: "qu2", // 𥃔
+ 0x250d5: "ke1", // 𥃕
+ 0x250df: "qing1", // 𥃟
+ 0x250e0: "yi4", // 𥃠
+ 0x250e3: "kai3", // 𥃣
+ 0x250e4: "jiao3", // 𥃤
+ 0x250e7: "chou1", // 𥃧
+ 0x250e8: "bu3", // 𥃨
+ 0x250e9: "gen4", // 𥃩
+ 0x250ea: "jiao1", // 𥃪
+ 0x250eb: "zhi1", // 𥃫
+ 0x250ee: "wen4", // 𥃮
+ 0x250f0: "bin1", // 𥃰
+ 0x250f4: "xiong4", // 𥃴
+ 0x250f5: "fan4", // 𥃵
+ 0x250f8: "yi2", // 𥃸
+ 0x250f9: "chuan4", // 𥃹
+ 0x250fa: "yao4", // 𥃺
+ 0x250fd: "yang1", // 𥃽
+ 0x250fe: "du4", // 𥃾
+ 0x250ff: "yan3", // 𥃿
+ 0x25101: "meng2", // 𥄁
+ 0x25107: "chi1", // 𥄇
+ 0x25108: "mu4", // 𥄈
+ 0x25109: "jiao1", // 𥄉
+ 0x2510b: "nv4", // 𥄋
+ 0x2510d: "guo2", // 𥄍
+ 0x2510e: "xue4", // 𥄎
+ 0x25111: "fu2", // 𥄑
+ 0x25112: "xue1", // 𥄒
+ 0x25113: "fu1", // 𥄓
+ 0x25114: "pei4", // 𥄔
+ 0x25115: "mo4", // 𥄕
+ 0x25116: "xi1", // 𥄖
+ 0x25117: "wo4", // 𥄗
+ 0x25118: "shan3", // 𥄘
+ 0x2511b: "xi1", // 𥄛
+ 0x2511c: "qi4", // 𥄜
+ 0x2511d: "mian4", // 𥄝
+ 0x25126: "dan3", // 𥄦
+ 0x25128: "chou3", // 𥄨
+ 0x25131: "fei4", // 𥄱
+ 0x25132: "mie2", // 𥄲
+ 0x25134: "xue4", // 𥄴
+ 0x25135: "xu4", // 𥄵
+ 0x25136: "si1", // 𥄶
+ 0x25137: "ju3", // 𥄷
+ 0x25138: "mao3", // 𥄸
+ 0x25139: "bao4", // 𥄹
+ 0x2513b: "yi2", // 𥄻
+ 0x2513c: "gua1", // 𥄼
+ 0x2513d: "ni4", // 𥄽
+ 0x2513f: "yi2", // 𥄿
+ 0x25141: "zuo4", // 𥅁
+ 0x25144: "nu3", // 𥅄
+ 0x25151: "dian4", // 𥅑
+ 0x25152: "fan4", // 𥅒
+ 0x25153: "yi4", // 𥅓
+ 0x25154: "shi4", // 𥅔
+ 0x25157: "cu1", // 𥅗
+ 0x25158: "zhen3", // 𥅘
+ 0x2515e: "shi4", // 𥅞
+ 0x2515f: "jiao3", // 𥅟
+ 0x25160: "hou4", // 𥅠
+ 0x25161: "er2", // 𥅡
+ 0x25166: "lei4", // 𥅦
+ 0x25167: "xue4", // 𥅧
+ 0x25168: "geng4", // 𥅨
+ 0x2516a: "shou1", // 𥅪
+ 0x2516c: "juan1", // 𥅬
+ 0x25174: "jie2", // 𥅴
+ 0x25175: "wei2", // 𥅵
+ 0x25177: "shou3", // 𥅷
+ 0x25178: "jing4", // 𥅸
+ 0x2517a: "xu2", // 𥅺
+ 0x2517b: "chong4", // 𥅻
+ 0x25185: "jiang1", // 𥆅
+ 0x25186: "mou4", // 𥆆
+ 0x25189: "yu4", // 𥆉
+ 0x2518c: "jue2", // 𥆌
+ 0x25191: "ting4", // 𥆑
+ 0x25194: "xiao1", // 𥆔
+ 0x25196: "dou1", // 𥆖
+ 0x25198: "guo2", // 𥆘
+ 0x25199: "mang2", // 𥆙
+ 0x2519a: "wang1", // 𥆚
+ 0x2519b: "xu4", // 𥆛
+ 0x2519c: "wang4", // 𥆜
+ 0x2519d: "suo1", // 𥆝
+ 0x2519e: "juan4", // 𥆞
+ 0x2519f: "yue4", // 𥆟
+ 0x251a1: "han2", // 𥆡
+ 0x251a3: "shen1", // 𥆣
+ 0x251a5: "xie2", // 𥆥
+ 0x251a6: "liu2", // 𥆦
+ 0x251a7: "run2", // 𥆧
+ 0x251af: "bi4", // 𥆯
+ 0x251b2: "nao4", // 𥆲
+ 0x251b6: "wan4", // 𥆶
+ 0x251b7: "jiu4", // 𥆷
+ 0x251b8: "que1", // 𥆸
+ 0x251c4: "ni4", // 𥇄
+ 0x251c6: "mi2", // 𥇆
+ 0x251c7: "suo1", // 𥇇
+ 0x251c9: "qiang3", // 𥇉
+ 0x251cc: "han4", // 𥇌
+ 0x251cd: "zhuo2", // 𥇍
+ 0x251ce: "mi2", // 𥇎
+ 0x251cf: "xu4", // 𥇏
+ 0x251d1: "lang3", // 𥇑
+ 0x251d2: "jie2", // 𥇒
+ 0x251d3: "ding4", // 𥇓
+ 0x251d4: "chang4", // 𥇔
+ 0x251d5: "zhi4", // 𥇕
+ 0x251d6: "fei1", // 𥇖
+ 0x251d7: "jia2", // 𥇗
+ 0x251d8: "jun4", // 𥇘
+ 0x251d9: "huo4", // 𥇙
+ 0x251da: "qi1", // 𥇚
+ 0x251db: "ju1", // 𥇛
+ 0x251dc: "zhun1", // 𥇜
+ 0x251de: "dian4", // 𥇞
+ 0x251df: "jiao3", // 𥇟
+ 0x251e0: "ya1", // 𥇠
+ 0x251e2: "zhan3", // 𥇢
+ 0x251ed: "zhi1", // 𥇭
+ 0x251ef: "mai4", // 𥇯
+ 0x251f0: "hu1", // 𥇰
+ 0x251f1: "xie4", // 𥇱
+ 0x251f2: "shi2", // 𥇲
+ 0x251f3: "gui1", // 𥇳
+ 0x251ff: "xu4", // 𥇿
+ 0x25202: "ji2", // 𥈂
+ 0x25204: "chuang4", // 𥈄
+ 0x25206: "mao4", // 𥈆
+ 0x25207: "ruan2", // 𥈇
+ 0x25208: "xu1", // 𥈈
+ 0x25209: "huan4", // 𥈉
+ 0x2520a: "sha4", // 𥈊
+ 0x2520b: "ju3", // 𥈋
+ 0x2520f: "kuang4", // 𥈏
+ 0x25211: "hou2", // 𥈑
+ 0x25212: "guan1", // 𥈒
+ 0x25213: "gua1", // 𥈓
+ 0x25215: "mi2", // 𥈕
+ 0x25216: "die2", // 𥈖
+ 0x25217: "bi4", // 𥈗
+ 0x25218: "liang3", // 𥈘
+ 0x25219: "la4", // 𥈙
+ 0x2521a: "shan3", // 𥈚
+ 0x2521b: "lu4", // 𥈛
+ 0x2521c: "xi4", // 𥈜
+ 0x2521f: "sou3", // 𥈟
+ 0x2522c: "ou1", // 𥈬
+ 0x2522e: "leng2", // 𥈮
+ 0x25237: "ku1", // 𥈷
+ 0x25238: "gui1", // 𥈸
+ 0x2523b: "xi1", // 𥈻
+ 0x2523c: "pan2", // 𥈼
+ 0x2523d: "se4", // 𥈽
+ 0x2523e: "jue4", // 𥈾
+ 0x2523f: "hong4", // 𥈿
+ 0x25240: "guan4", // 𥉀
+ 0x25241: "ju4", // 𥉁
+ 0x25243: "nai4", // 𥉃
+ 0x25244: "hua2", // 𥉄
+ 0x25245: "ge2", // 𥉅
+ 0x25246: "li4", // 𥉆
+ 0x25247: "gou4", // 𥉇
+ 0x25248: "ti4", // 𥉈
+ 0x2524a: "ma4", // 𥉊
+ 0x2524b: "teng2", // 𥉋
+ 0x2524c: "da2", // 𥉌
+ 0x25250: "qi1", // 𥉐
+ 0x25251: "yu4", // 𥉑
+ 0x25252: "jiao3", // 𥉒
+ 0x25253: "mie4", // 𥉓
+ 0x25254: "geng3", // 𥉔
+ 0x25255: "meng4", // 𥉕
+ 0x25256: "wei4", // 𥉖
+ 0x25258: "ti2", // 𥉘
+ 0x25259: "qi2", // 𥉙
+ 0x2525c: "chen2", // 𥉜
+ 0x2525d: "dou1", // 𥉝
+ 0x2525f: "pan2", // 𥉟
+ 0x25270: "han4", // 𥉰
+ 0x25274: "mi4", // 𥉴
+ 0x25275: "ma2", // 𥉵
+ 0x25276: "lu4", // 𥉶
+ 0x25277: "qi1", // 𥉷
+ 0x25278: "keng1", // 𥉸
+ 0x2527a: "die2", // 𥉺
+ 0x2527b: "qi4", // 𥉻
+ 0x2527c: "jiao1", // 𥉼
+ 0x2527d: "kang1", // 𥉽
+ 0x2527e: "qiao1", // 𥉾
+ 0x2527f: "mi4", // 𥉿
+ 0x25280: "shan1", // 𥊀
+ 0x25287: "jian1", // 𥊇
+ 0x25288: "li2", // 𥊈
+ 0x25289: "ke4", // 𥊉
+ 0x2528a: "xu4", // 𥊊
+ 0x25291: "man2", // 𥊑
+ 0x25292: "feng4", // 𥊒
+ 0x25293: "chan4", // 𥊓
+ 0x25294: "hui3", // 𥊔
+ 0x252a7: "kou4", // 𥊧
+ 0x252aa: "wei3", // 𥊪
+ 0x252ab: "guan4", // 𥊫
+ 0x252ac: "ji2", // 𥊬
+ 0x252ad: "zun4", // 𥊭
+ 0x252ae: "huo4", // 𥊮
+ 0x252af: "xie2", // 𥊯
+ 0x252b4: "sui4", // 𥊴
+ 0x252b6: "ruan3", // 𥊶
+ 0x252b8: "te4", // 𥊸
+ 0x252bc: "zheng4", // 𥊼
+ 0x252bd: "kun1", // 𥊽
+ 0x252be: "xiang3", // 𥊾
+ 0x252bf: "mian2", // 𥊿
+ 0x252c1: "xi4", // 𥋁
+ 0x252cc: "sa1", // 𥋌
+ 0x252d9: "e4", // 𥋙
+ 0x252da: "mie4", // 𥋚
+ 0x252db: "zhu3", // 𥋛
+ 0x252dc: "zou1", // 𥋜
+ 0x252dd: "meng3", // 𥋝
+ 0x252df: "xi1", // 𥋟
+ 0x252e1: "tang2", // 𥋡
+ 0x252e3: "jia4", // 𥋣
+ 0x252e4: "chang2", // 𥋤
+ 0x252e5: "ji2", // 𥋥
+ 0x252ee: "zhuo2", // 𥋮
+ 0x252ff: "he4", // 𥋿
+ 0x25300: "cha2", // 𥌀
+ 0x25301: "qi4", // 𥌁
+ 0x25302: "mian2", // 𥌂
+ 0x25303: "zhen3", // 𥌃
+ 0x25304: "ku1", // 𥌄
+ 0x25305: "ye4", // 𥌅
+ 0x25306: "zhou1", // 𥌆
+ 0x25308: "jian1", // 𥌈
+ 0x2530a: "pan4", // 𥌊
+ 0x2530d: "hui1", // 𥌍
+ 0x2530f: "ming2", // 𥌏
+ 0x25310: "liu4", // 𥌐
+ 0x25318: "shui4", // 𥌘
+ 0x2531a: "mai4", // 𥌚
+ 0x2531b: "li2", // 𥌛
+ 0x2531e: "shuo4", // 𥌞
+ 0x2531f: "yi2", // 𥌟
+ 0x25324: "li4", // 𥌤
+ 0x25328: "xie1", // 𥌨
+ 0x25329: "te4", // 𥌩
+ 0x2532a: "xiu1", // 𥌪
+ 0x2532d: "xuan4", // 𥌭
+ 0x2532e: "li4", // 𥌮
+ 0x2532f: "meng2", // 𥌯
+ 0x25330: "wei2", // 𥌰
+ 0x25331: "meng2", // 𥌱
+ 0x2533a: "yao4", // 𥌺
+ 0x2533b: "lan2", // 𥌻
+ 0x2533c: "ling2", // 𥌼
+ 0x2533d: "ying1", // 𥌽
+ 0x2533e: "ying1", // 𥌾
+ 0x2533f: "li4", // 𥌿
+ 0x25340: "jian3", // 𥍀
+ 0x25341: "gui1", // 𥍁
+ 0x25345: "guan1", // 𥍅
+ 0x25346: "xie4", // 𥍆
+ 0x25349: "she4", // 𥍉
+ 0x2534b: "zui1", // 𥍋
+ 0x25353: "kan4", // 𥍓
+ 0x25354: "lei2", // 𥍔
+ 0x2535a: "bian4", // 𥍚
+ 0x2535d: "shu3", // 𥍝
+ 0x2535e: "nv4", // 𥍞
+ 0x2535f: "xu4", // 𥍟
+ 0x25363: "hao4", // 𥍣
+ 0x25368: "gui3", // 𥍨
+ 0x2536a: "zhai4", // 𥍪
+ 0x2536b: "lang2", // 𥍫
+ 0x2536c: "cuan1", // 𥍬
+ 0x2536d: "zhi4", // 𥍭
+ 0x2536e: "feng2", // 𥍮
+ 0x2536f: "qin1", // 𥍯
+ 0x25371: "ze2", // 𥍱
+ 0x25372: "na4", // 𥍲
+ 0x25373: "niu3", // 𥍳
+ 0x25374: "yi4", // 𥍴
+ 0x25377: "cong1", // 𥍷
+ 0x25378: "shi1", // 𥍸
+ 0x25379: "jian3", // 𥍹
+ 0x2537a: "zong1", // 𥍺
+ 0x2537b: "yan3", // 𥍻
+ 0x2537c: "ying1", // 𥍼
+ 0x25380: "ruan3", // 𥎀
+ 0x25382: "rong2", // 𥎂
+ 0x25383: "xi4", // 𥎃
+ 0x25385: "guan1", // 𥎅
+ 0x25386: "kai4", // 𥎆
+ 0x25388: "wu4", // 𥎈
+ 0x2538a: "qin2", // 𥎊
+ 0x2538b: "cong1", // 𥎋
+ 0x2538d: "ze2", // 𥎍
+ 0x2538e: "xie4", // 𥎎
+ 0x25390: "yu4", // 𥎐
+ 0x25391: "zan4", // 𥎑
+ 0x25392: "chuang1", // 𥎒
+ 0x25393: "li3", // 𥎓
+ 0x25394: "li3", // 𥎔
+ 0x25395: "xu4", // 𥎕
+ 0x25396: "mi2", // 𥎖
+ 0x25397: "xu4", // 𥎗
+ 0x25398: "ruan3", // 𥎘
+ 0x2539b: "gui4", // 𥎛
+ 0x2539c: "rong3", // 𥎜
+ 0x2539f: "mao2", // 𥎟
+ 0x253a1: "qin2", // 𥎡
+ 0x253a2: "cuan4", // 𥎢
+ 0x253a3: "cuan4", // 𥎣
+ 0x253a4: "cuan4", // 𥎤
+ 0x253ae: "wu1", // 𥎮
+ 0x253b0: "fa3", // 𥎰
+ 0x253b1: "ba2", // 𥎱
+ 0x253b8: "qia4", // 𥎸
+ 0x253b9: "zhi4", // 𥎹
+ 0x253ba: "tiao4", // 𥎺
+ 0x253c4: "zhi4", // 𥏄
+ 0x253c5: "zhi2", // 𥏅
+ 0x253c7: "huan4", // 𥏇
+ 0x253c8: "chou2", // 𥏈
+ 0x253ca: "zhi4", // 𥏊
+ 0x253ce: "ying3", // 𥏎
+ 0x253d2: "wu4", // 𥏒
+ 0x253d3: "bei1", // 𥏓
+ 0x253d5: "hong2", // 𥏕
+ 0x253d6: "shen3", // 𥏖
+ 0x253d8: "jue2", // 𥏘
+ 0x253d9: "kui4", // 𥏙
+ 0x253dc: "yi3", // 𥏜
+ 0x253dd: "ya4", // 𥏝
+ 0x253e0: "bi1", // 𥏠
+ 0x253e4: "kua4", // 𥏤
+ 0x253e5: "qian1", // 𥏥
+ 0x253e8: "zhao1", // 𥏨
+ 0x253ea: "kai3", // 𥏪
+ 0x253eb: "shang1", // 𥏫
+ 0x253ee: "an4", // 𥏮
+ 0x253ef: "zhe2", // 𥏯
+ 0x253f0: "zhi4", // 𥏰
+ 0x253f7: "zhi4", // 𥏷
+ 0x253f9: "jiao3", // 𥏹
+ 0x25400: "si1", // 𥐀
+ 0x25401: "pu2", // 𥐁
+ 0x25402: "ou3", // 𥐂
+ 0x2540a: "zhuo2", // 𥐊
+ 0x25411: "ying1", // 𥐑
+ 0x25413: "huan1", // 𥐓
+ 0x25415: "ya4", // 𥐕
+ 0x25418: "shi2", // 𥐘
+ 0x25419: "pa1", // 𥐙
+ 0x2541a: "pu3", // 𥐚
+ 0x2541e: "mang2", // 𥐞
+ 0x2541f: "chai1", // 𥐟
+ 0x25429: "yun2", // 𥐩
+ 0x2542c: "gu3", // 𥐬
+ 0x25439: "dan3", // 𥐹
+ 0x2543b: "nao2", // 𥐻
+ 0x2543d: "zhe2", // 𥐽
+ 0x2543f: "hu2", // 𥐿
+ 0x25445: "keng1", // 𥑅
+ 0x25447: "die2", // 𥑇
+ 0x25448: "ting1", // 𥑈
+ 0x2544b: "guai4", // 𥑋
+ 0x2544e: "qiong1", // 𥑎
+ 0x2544f: "shi3", // 𥑏
+ 0x25450: "jia3", // 𥑐
+ 0x25451: "ao4", // 𥑑
+ 0x25452: "na3", // 𥑒
+ 0x25453: "pin3", // 𥑓
+ 0x25454: "jia2", // 𥑔
+ 0x25461: "zhe4", // 𥑡
+ 0x25462: "bu4", // 𥑢
+ 0x25463: "wo3", // 𥑣
+ 0x25465: "cha3", // 𥑥
+ 0x2546a: "nao2", // 𥑪
+ 0x2546b: "kan3", // 𥑫
+ 0x2546f: "du2", // 𥑯
+ 0x25470: "guai4", // 𥑰
+ 0x25471: "qiong2", // 𥑱
+ 0x25473: "rong2", // 𥑳
+ 0x25474: "yi3", // 𥑴
+ 0x25475: "dui1", // 𥑵
+ 0x25476: "lei3", // 𥑶
+ 0x25478: "zhou1", // 𥑸
+ 0x25479: "kua1", // 𥑹
+ 0x2547a: "e1", // 𥑺
+ 0x2547b: "xian1", // 𥑻
+ 0x2547c: "dian4", // 𥑼
+ 0x2547d: "nuo4", // 𥑽
+ 0x2547e: "e4", // 𥑾
+ 0x2547f: "yong1", // 𥑿
+ 0x25480: "wu4", // 𥒀
+ 0x25481: "keng1", // 𥒁
+ 0x25493: "zhi4", // 𥒓
+ 0x25497: "zhi3", // 𥒗
+ 0x25498: "xun2", // 𥒘
+ 0x2549b: "zheng4", // 𥒛
+ 0x2549e: "yang2", // 𥒞
+ 0x254a0: "huo4", // 𥒠
+ 0x254a1: "ji2", // 𥒡
+ 0x254a2: "nao3", // 𥒢
+ 0x254a7: "ya4", // 𥒧
+ 0x254a8: "lu4", // 𥒨
+ 0x254ab: "fu1", // 𥒫
+ 0x254ac: "san3", // 𥒬
+ 0x254ad: "chu4", // 𥒭
+ 0x254ae: "wei3", // 𥒮
+ 0x254b0: "fu3", // 𥒰
+ 0x254b1: "keng1", // 𥒱
+ 0x254b2: "si4", // 𥒲
+ 0x254b3: "kang4", // 𥒳
+ 0x254b5: "yi4", // 𥒵
+ 0x254b6: "hua4", // 𥒶
+ 0x254be: "yu3", // 𥒾
+ 0x254c3: "li4", // 𥓃
+ 0x254c6: "lin3", // 𥓆
+ 0x254c7: "du3", // 𥓇
+ 0x254c8: "e4", // 𥓈
+ 0x254cc: "qiang3", // 𥓌
+ 0x254cd: "du2", // 𥓍
+ 0x254d0: "jie2", // 𥓐
+ 0x254d1: "chuo4", // 𥓑
+ 0x254d2: "xian4", // 𥓒
+ 0x254d6: "gao3", // 𥓖
+ 0x254ec: "dao4", // 𥓬
+ 0x254f0: "hong1", // 𥓰
+ 0x254fb: "zong1", // 𥓻
+ 0x254fe: "qi4", // 𥓾
+ 0x254ff: "tuo2", // 𥓿
+ 0x25500: "hong1", // 𥔀
+ 0x25501: "pi3", // 𥔁
+ 0x25502: "geng4", // 𥔂
+ 0x25504: "nie4", // 𥔄
+ 0x25507: "kong1", // 𥔇
+ 0x2550a: "zhi3", // 𥔊
+ 0x25511: "xiao3", // 𥔑
+ 0x25521: "she4", // 𥔡
+ 0x25522: "yu2", // 𥔢
+ 0x25523: "jiang1", // 𥔣
+ 0x25529: "qi3", // 𥔩
+ 0x2552a: "chen3", // 𥔪
+ 0x2552b: "sang3", // 𥔫
+ 0x2552d: "suo3", // 𥔭
+ 0x2552e: "qian2", // 𥔮
+ 0x2552f: "hui4", // 𥔯
+ 0x25531: "shan4", // 𥔱
+ 0x25532: "e4", // 𥔲
+ 0x2553b: "qiu1", // 𥔻
+ 0x2553d: "ke4", // 𥔽
+ 0x25540: "weng1", // 𥕀
+ 0x25541: "zi1", // 𥕁
+ 0x25542: "ji2", // 𥕂
+ 0x25547: "da3", // 𥕇
+ 0x25549: "cuo4", // 𥕉
+ 0x2554d: "lou3", // 𥕍
+ 0x2554e: "kang1", // 𥕎
+ 0x2554f: "kuo4", // 𥕏
+ 0x25550: "di2", // 𥕐
+ 0x25551: "qie1", // 𥕑
+ 0x25553: "mo4", // 𥕓
+ 0x25556: "guo3", // 𥕖
+ 0x25557: "hong1", // 𥕗
+ 0x25558: "chao2", // 𥕘
+ 0x25559: "hei1", // 𥕙
+ 0x25562: "cao2", // 𥕢
+ 0x25563: "zhe2", // 𥕣
+ 0x25566: "gun3", // 𥕦
+ 0x25570: "xu1", // 𥕰
+ 0x25571: "peng2", // 𥕱
+ 0x25572: "jue2", // 𥕲
+ 0x25575: "gan3", // 𥕵
+ 0x25576: "si1", // 𥕶
+ 0x25578: "sui4", // 𥕸
+ 0x25579: "que4", // 𥕹
+ 0x2557b: "wu2", // 𥕻
+ 0x2557c: "yan2", // 𥕼
+ 0x2557d: "peng4", // 𥕽
+ 0x2557e: "xiao3", // 𥕾
+ 0x2557f: "pan1", // 𥕿
+ 0x2558d: "la4", // 𥖍
+ 0x25597: "beng4", // 𥖗
+ 0x25598: "zhen3", // 𥖘
+ 0x25599: "ji2", // 𥖙
+ 0x2559c: "jin3", // 𥖜
+ 0x2559d: "lian2", // 𥖝
+ 0x2559e: "ken3", // 𥖞
+ 0x255a0: "zhou2", // 𥖠
+ 0x255a8: "zao4", // 𥖨
+ 0x255aa: "le4", // 𥖪
+ 0x255ab: "qi1", // 𥖫
+ 0x255ac: "bing4", // 𥖬
+ 0x255b5: "yin3", // 𥖵
+ 0x255b6: "pin1", // 𥖶
+ 0x255bb: "sou3", // 𥖻
+ 0x255bc: "lv4", // 𥖼
+ 0x255be: "di2", // 𥖾
+ 0x255bf: "du2", // 𥖿
+ 0x255c0: "liao3", // 𥗀
+ 0x255c1: "zhuo2", // 𥗁
+ 0x255ca: "chang3", // 𥗊
+ 0x255d2: "chen4", // 𥗒
+ 0x255d3: "ta4", // 𥗓
+ 0x255d9: "que4", // 𥗙
+ 0x255da: "dao4", // 𥗚
+ 0x255dd: "rang3", // 𥗝
+ 0x255df: "po4", // 𥗟
+ 0x255e6: "zhong1", // 𥗦
+ 0x255e7: "xie1", // 𥗧
+ 0x255ea: "jiang1", // 𥗪
+ 0x255eb: "qu2", // 𥗫
+ 0x255ec: "lei3", // 𥗬
+ 0x255ed: "ca4", // 𥗭
+ 0x255ee: "que1", // 𥗮
+ 0x255f5: "xiang4", // 𥗵
+ 0x255f6: "lei4", // 𥗶
+ 0x255fa: "lan4", // 𥗺
+ 0x255ff: "la3", // 𥗿
+ 0x25601: "la3", // 𥘁
+ 0x25604: "yu4", // 𥘄
+ 0x2560a: "jiao4", // 𥘊
+ 0x2560b: "qin2", // 𥘋
+ 0x2560c: "ji1", // 𥘌
+ 0x2560f: "gan3", // 𥘏
+ 0x25612: "yi4", // 𥘒
+ 0x25620: "yi4", // 𥘠
+ 0x25621: "zhi1", // 𥘡
+ 0x25624: "biao3", // 𥘤
+ 0x25625: "sheng1", // 𥘥
+ 0x25626: "jiu4", // 𥘦
+ 0x2562b: "he1", // 𥘫
+ 0x2562c: "fu2", // 𥘬
+ 0x2562e: "ju1", // 𥘮
+ 0x25640: "zuo3", // 𥙀
+ 0x25641: "yi2", // 𥙁
+ 0x25646: "xian4", // 𥙆
+ 0x25647: "yi2", // 𥙇
+ 0x25649: "si4", // 𥙉
+ 0x2564b: "chui4", // 𥙋
+ 0x2564e: "mo4", // 𥙎
+ 0x25661: "zhan1", // 𥙡
+ 0x25663: "xun2", // 𥙣
+ 0x25666: "ru2", // 𥙦
+ 0x25668: "huo4", // 𥙨
+ 0x2566c: "shao1", // 𥙬
+ 0x25670: "shou4", // 𥙰
+ 0x2567e: "you4", // 𥙾
+ 0x2567f: "yu4", // 𥙿
+ 0x25682: "jun4", // 𥚂
+ 0x25689: "zi1", // 𥚉
+ 0x2568a: "lu4", // 𥚊
+ 0x2569a: "chi3", // 𥚚
+ 0x2569b: "kun1", // 𥚛
+ 0x256a0: "zhun4", // 𥚠
+ 0x256a6: "hou2", // 𥚦
+ 0x256a9: "xu3", // 𥚩
+ 0x256be: "zong1", // 𥚾
+ 0x256bf: "ying4", // 𥚿
+ 0x256c2: "zhu1", // 𥛂
+ 0x256c5: "liu4", // 𥛅
+ 0x256d1: "nu4", // 𥛑
+ 0x256d8: "bi4", // 𥛘
+ 0x256da: "chi4", // 𥛚
+ 0x256dc: "zu3", // 𥛜
+ 0x256dd: "feng2", // 𥛝
+ 0x256de: "lu4", // 𥛞
+ 0x256df: "pu3", // 𥛟
+ 0x256e5: "zhuan4", // 𥛥
+ 0x256e7: "zhe2", // 𥛧
+ 0x256e8: "shi1", // 𥛨
+ 0x256e9: "yu3", // 𥛩
+ 0x256ea: "lu4", // 𥛪
+ 0x256eb: "liang2", // 𥛫
+ 0x256ef: "jue2", // 𥛯
+ 0x256f0: "liao4", // 𥛰
+ 0x256f1: "beng1", // 𥛱
+ 0x25703: "yi4", // 𥜃
+ 0x25704: "guan1", // 𥜄
+ 0x2570c: "ao3", // 𥜌
+ 0x2570f: "gui4", // 𥜏
+ 0x25710: "min3", // 𥜐
+ 0x25712: "yan3", // 𥜒
+ 0x25713: "lan2", // 𥜓
+ 0x25716: "bo2", // 𥜖
+ 0x25719: "zan4", // 𥜙
+ 0x2571a: "you3", // 𥜚
+ 0x25725: "yi4", // 𥜥
+ 0x25726: "ni3", // 𥜦
+ 0x2572c: "ni3", // 𥜬
+ 0x2572d: "guo3", // 𥜭
+ 0x2572e: "jun4", // 𥜮
+ 0x25730: "shi1", // 𥜰
+ 0x25732: "xian3", // 𥜲
+ 0x25734: "qian1", // 𥜴
+ 0x25735: "que4", // 𥜵
+ 0x25736: "kui2", // 𥜶
+ 0x25740: "she2", // 𥝀
+ 0x25742: "huo4", // 𥝂
+ 0x25744: "wan4", // 𥝄
+ 0x2574a: "fei4", // 𥝊
+ 0x2574b: "fei4", // 𥝋
+ 0x2574d: "yu4", // 𥝍
+ 0x25751: "zhi1", // 𥝑
+ 0x25752: "gua4", // 𥝒
+ 0x25754: "jie2", // 𥝔
+ 0x25755: "mang2", // 𥝕
+ 0x25756: "he2", // 𥝖
+ 0x25758: "you3", // 𥝘
+ 0x2575f: "du4", // 𥝟
+ 0x25760: "si1", // 𥝠
+ 0x25762: "li4", // 𥝢
+ 0x25765: "jie2", // 𥝥
+ 0x25766: "niu3", // 𥝦
+ 0x25767: "ba4", // 𥝧
+ 0x25768: "yu2", // 𥝨
+ 0x2576e: "zhi1", // 𥝮
+ 0x25778: "he2", // 𥝸
+ 0x25779: "ke1", // 𥝹
+ 0x2577e: "du4", // 𥝾
+ 0x2577f: "jia1", // 𥝿
+ 0x25781: "chen1", // 𥞁
+ 0x25783: "chui4", // 𥞃
+ 0x25784: "he2", // 𥞄
+ 0x25785: "zhai3", // 𥞅
+ 0x2578a: "mei4", // 𥞊
+ 0x2578d: "he2", // 𥞍
+ 0x2578e: "zi3", // 𥞎
+ 0x2578f: "zhu2", // 𥞏
+ 0x25792: "tuo2", // 𥞒
+ 0x25798: "zun4", // 𥞘
+ 0x2579a: "ru2", // 𥞚
+ 0x2579b: "duo4", // 𥞛
+ 0x2579c: "jiang4", // 𥞜
+ 0x257a7: "heng2", // 𥞧
+ 0x257a9: "beng1", // 𥞩
+ 0x257aa: "mo4", // 𥞪
+ 0x257af: "zu2", // 𥞯
+ 0x257b2: "bie1", // 𥞲
+ 0x257b4: "ku4", // 𥞴
+ 0x257b5: "jia2", // 𥞵
+ 0x257ba: "zhuo1", // 𥞺
+ 0x257bc: "xiu1", // 𥞼
+ 0x257c3: "he2", // 𥟃
+ 0x257c5: "qiao1", // 𥟅
+ 0x257cd: "fei3", // 𥟍
+ 0x257ce: "sheng1", // 𥟎
+ 0x257d2: "zhui4", // 𥟒
+ 0x257d3: "kuan3", // 𥟓
+ 0x257d4: "ze4", // 𥟔
+ 0x257d5: "xian1", // 𥟕
+ 0x257d7: "bi4", // 𥟗
+ 0x257d8: "yi4", // 𥟘
+ 0x257da: "chang4", // 𥟚
+ 0x257ea: "mao4", // 𥟪
+ 0x257f6: "wan3", // 𥟶
+ 0x257fd: "wu1", // 𥟽
+ 0x257fe: "ku1", // 𥟾
+ 0x257ff: "wo3", // 𥟿
+ 0x25800: "xing1", // 𥠀
+ 0x25801: "ke1", // 𥠁
+ 0x25803: "jiu1", // 𥠃
+ 0x25804: "duan1", // 𥠄
+ 0x25805: "huan4", // 𥠅
+ 0x25808: "zhi4", // 𥠈
+ 0x25809: "ce4", // 𥠉
+ 0x2580a: "rou2", // 𥠊
+ 0x2580b: "ji2", // 𥠋
+ 0x2580d: "ye4", // 𥠍
+ 0x2581b: "jing1", // 𥠛
+ 0x2581c: "yang4", // 𥠜
+ 0x25821: "zong3", // 𥠡
+ 0x25829: "can3", // 𥠩
+ 0x25831: "si1", // 𥠱
+ 0x25832: "li4", // 𥠲
+ 0x25833: "gu3", // 𥠳
+ 0x25834: "chang4", // 𥠴
+ 0x25836: "fei3", // 𥠶
+ 0x25837: "liu2", // 𥠷
+ 0x25839: "jie2", // 𥠹
+ 0x2583a: "yun1", // 𥠺
+ 0x2583d: "zhi4", // 𥠽
+ 0x25840: "chou2", // 𥡀
+ 0x25841: "bie1", // 𥡁
+ 0x25852: "ji1", // 𥡒
+ 0x2585c: "luo2", // 𥡜
+ 0x2585d: "jian1", // 𥡝
+ 0x2585f: "chuang1", // 𥡟
+ 0x25860: "shuang3", // 𥡠
+ 0x25862: "lv4", // 𥡢
+ 0x25863: "jun4", // 𥡣
+ 0x25864: "jiao4", // 𥡤
+ 0x25866: "ti4", // 𥡦
+ 0x25867: "zha1", // 𥡧
+ 0x2586a: "yi4", // 𥡪
+ 0x2586c: "cong1", // 𥡬
+ 0x2586d: "nei3", // 𥡭
+ 0x2586e: "jia1", // 𥡮
+ 0x25874: "ji4", // 𥡴
+ 0x2587d: "ai4", // 𥡽
+ 0x25887: "jian3", // 𥢇
+ 0x2588a: "ben4", // 𥢊
+ 0x2588c: "fan2", // 𥢌
+ 0x2588d: "sui4", // 𥢍
+ 0x2588e: "zun4", // 𥢎
+ 0x2588f: "dian4", // 𥢏
+ 0x25890: "gao1", // 𥢐
+ 0x25891: "gao3", // 𥢑
+ 0x25892: "lao2", // 𥢒
+ 0x25894: "zhuo2", // 𥢔
+ 0x2589f: "hu4", // 𥢟
+ 0x258a2: "tui2", // 𥢢
+ 0x258a6: "bi4", // 𥢦
+ 0x258a7: "ju2", // 𥢧
+ 0x258ae: "hua2", // 𥢮
+ 0x258b2: "cheng2", // 𥢲
+ 0x258b6: "kuai4", // 𥢶
+ 0x258b7: "dang1", // 𥢷
+ 0x258b8: "ge2", // 𥢸
+ 0x258b9: "xie2", // 𥢹
+ 0x258bb: "jie2", // 𥢻
+ 0x258bd: "can1", // 𥢽
+ 0x258c6: "zu2", // 𥣆
+ 0x258c8: "pu2", // 𥣈
+ 0x258cb: "shu3", // 𥣋
+ 0x258cc: "bu3", // 𥣌
+ 0x258d7: "ning2", // 𥣗
+ 0x258d8: "yan3", // 𥣘
+ 0x258d9: "zhou4", // 𥣙
+ 0x258db: "meng2", // 𥣛
+ 0x258dd: "bian3", // 𥣝
+ 0x258df: "xiang4", // 𥣟
+ 0x258e4: "lu4", // 𥣤
+ 0x258e5: "li2", // 𥣥
+ 0x258e9: "ji4", // 𥣩
+ 0x258eb: "mie4", // 𥣫
+ 0x258ec: "lei4", // 𥣬
+ 0x258ee: "zhi4", // 𥣮
+ 0x258ef: "you1", // 𥣯
+ 0x258f0: "bian3", // 𥣰
+ 0x258f8: "mu4", // 𥣸
+ 0x258f9: "ran4", // 𥣹
+ 0x258fa: "ran4", // 𥣺
+ 0x25902: "niao3", // 𥤂
+ 0x2590a: "quan2", // 𥤊
+ 0x2590b: "zhe2", // 𥤋
+ 0x25910: "lei4", // 𥤐
+ 0x25917: "dang3", // 𥤗
+ 0x25918: "jue2", // 𥤘
+ 0x2591c: "ling2", // 𥤜
+ 0x2591e: "ling2", // 𥤞
+ 0x2591f: "yan2", // 𥤟
+ 0x25923: "yao3", // 𥤣
+ 0x25924: "zhen4", // 𥤤
+ 0x25925: "qi1", // 𥤥
+ 0x25926: "ai4", // 𥤦
+ 0x25928: "nu2", // 𥤨
+ 0x25929: "mang3", // 𥤩
+ 0x25931: "kan3", // 𥤱
+ 0x25933: "jiu1", // 𥤳
+ 0x25934: "yan3", // 𥤴
+ 0x25935: "mian4", // 𥤵
+ 0x25937: "yin2", // 𥤷
+ 0x25938: "wan2", // 𥤸
+ 0x25939: "yao4", // 𥤹
+ 0x2593a: "wa1", // 𥤺
+ 0x2593b: "pi2", // 𥤻
+ 0x2593c: "sui4", // 𥤼
+ 0x25945: "kong3", // 𥥅
+ 0x25948: "hong2", // 𥥈
+ 0x2594a: "ming3", // 𥥊
+ 0x2594b: "ling2", // 𥥋
+ 0x2594c: "yi4", // 𥥌
+ 0x2594d: "shen1", // 𥥍
+ 0x2594f: "zuo4", // 𥥏
+ 0x2595b: "tu1", // 𥥛
+ 0x2595d: "yong4", // 𥥝
+ 0x2595f: "wa4", // 𥥟
+ 0x25960: "gui3", // 𥥠
+ 0x25961: "hong4", // 𥥡
+ 0x25965: "shi4", // 𥥥
+ 0x25967: "xiong4", // 𥥧
+ 0x25969: "a1", // 𥥩
+ 0x25971: "cheng2", // 𥥱
+ 0x25973: "keng1", // 𥥳
+ 0x25974: "yi4", // 𥥴
+ 0x25975: "yang4", // 𥥵
+ 0x25976: "ting2", // 𥥶
+ 0x25977: "dou4", // 𥥷
+ 0x25978: "cha2", // 𥥸
+ 0x25979: "liu4", // 𥥹
+ 0x2597d: "qiu2", // 𥥽
+ 0x2597e: "xuan3", // 𥥾
+ 0x2597f: "shen1", // 𥥿
+ 0x25980: "kuan1", // 𥦀
+ 0x25981: "tong4", // 𥦁
+ 0x25983: "qian3", // 𥦃
+ 0x25985: "chou4", // 𥦅
+ 0x2598a: "wen3", // 𥦊
+ 0x2598c: "long4", // 𥦌
+ 0x2598d: "an3", // 𥦍
+ 0x25994: "kan3", // 𥦔
+ 0x25996: "yao3", // 𥦖
+ 0x25998: "fu2", // 𥦘
+ 0x2599c: "beng4", // 𥦜
+ 0x2599d: "lan3", // 𥦝
+ 0x2599e: "qia4", // 𥦞
+ 0x2599f: "dian4", // 𥦟
+ 0x259a2: "jiao4", // 𥦢
+ 0x259a3: "gui1", // 𥦣
+ 0x259a5: "xiong4", // 𥦥
+ 0x259a8: "ke4", // 𥦨
+ 0x259b6: "xian4", // 𥦶
+ 0x259b7: "wong4", // 𥦷
+ 0x259c2: "gong3", // 𥧂
+ 0x259c6: "ou3", // 𥧆
+ 0x259c7: "ke1", // 𥧇
+ 0x259cb: "ku1", // 𥧋
+ 0x259d1: "tian2", // 𥧑
+ 0x259d2: "gou4", // 𥧒
+ 0x259d3: "ma3", // 𥧓
+ 0x259d5: "liu4", // 𥧕
+ 0x259d9: "wei4", // 𥧙
+ 0x259da: "wen3", // 𥧚
+ 0x259e1: "gong4", // 𥧡
+ 0x259e3: "tu2", // 𥧣
+ 0x259e4: "ning2", // 𥧤
+ 0x259e7: "mi4", // 𥧧
+ 0x259eb: "lang2", // 𥧫
+ 0x259ec: "qian3", // 𥧬
+ 0x259ed: "man2", // 𥧭
+ 0x259ee: "zhe2", // 𥧮
+ 0x259f0: "hua4", // 𥧰
+ 0x259f1: "yong1", // 𥧱
+ 0x259f2: "jin4", // 𥧲
+ 0x259f4: "mei4", // 𥧴
+ 0x259f7: "fu2", // 𥧷
+ 0x259fb: "qu2", // 𥧻
+ 0x25a0c: "liu4", // 𥨌
+ 0x25a0d: "fu4", // 𥨍
+ 0x25a0e: "dan4", // 𥨎
+ 0x25a10: "gong3", // 𥨐
+ 0x25a12: "cui4", // 𥨒
+ 0x25a15: "xing3", // 𥨕
+ 0x25a1c: "tu1", // 𥨜
+ 0x25a1d: "shou4", // 𥨝
+ 0x25a2a: "qiong2", // 𥨪
+ 0x25a33: "rong2", // 𥨳
+ 0x25a3b: "li4", // 𥨻
+ 0x25a3f: "ji1", // 𥨿
+ 0x25a40: "tuo4", // 𥩀
+ 0x25a4c: "tong2", // 𥩌
+ 0x25a52: "tan2", // 𥩒
+ 0x25a54: "ling2", // 𥩔
+ 0x25a56: "yi4", // 𥩖
+ 0x25a57: "ruan3", // 𥩗
+ 0x25a59: "pa3", // 𥩙
+ 0x25a5d: "ca4", // 𥩝
+ 0x25a61: "yue4", // 𥩡
+ 0x25a62: "que4", // 𥩢
+ 0x25a63: "zhu4", // 𥩣
+ 0x25a64: "hai4", // 𥩤
+ 0x25a71: "fa2", // 𥩱
+ 0x25a72: "hai4", // 𥩲
+ 0x25a80: "bu1", // 𥪀
+ 0x25a81: "ping1", // 𥪁
+ 0x25a82: "lie4", // 𥪂
+ 0x25a8a: "kui3", // 𥪊
+ 0x25a8b: "fu2", // 𥪋
+ 0x25a8c: "tian3", // 𥪌
+ 0x25a8d: "wo4", // 𥪍
+ 0x25a8f: "ju1", // 𥪏
+ 0x25a98: "zhen1", // 𥪘
+ 0x25a9a: "fu2", // 𥪚
+ 0x25aa2: "long2", // 𥪢
+ 0x25aa6: "xi4", // 𥪦
+ 0x25aa7: "tian2", // 𥪧
+ 0x25aab: "ji4", // 𥪫
+ 0x25aaf: "yao4", // 𥪯
+ 0x25ab1: "cu4", // 𥪱
+ 0x25ab4: "pang4", // 𥪴
+ 0x25ab5: "qie4", // 𥪵
+ 0x25abb: "long2", // 𥪻
+ 0x25abc: "ji3", // 𥪼
+ 0x25ac2: "tong2", // 𥫂
+ 0x25ac3: "yi2", // 𥫃
+ 0x25ac5: "chang1", // 𥫅
+ 0x25acb: "gong1", // 𥫋
+ 0x25ace: "dong4", // 𥫎
+ 0x25ad6: "xiang1", // 𥫖
+ 0x25ad9: "ting3", // 𥫙
+ 0x25adb: "zhuan1", // 𥫛
+ 0x25adc: "yi3", // 𥫜
+ 0x25add: "yi4", // 𥫝
+ 0x25ade: "zi3", // 𥫞
+ 0x25adf: "qi3", // 𥫟
+ 0x25ae2: "cha3", // 𥫢
+ 0x25aec: "dun4", // 𥫬
+ 0x25aef: "chong1", // 𥫯
+ 0x25af0: "lu4", // 𥫰
+ 0x25af1: "dun4", // 𥫱
+ 0x25af3: "fang1", // 𥫳
+ 0x25af4: "shi4", // 𥫴
+ 0x25af5: "ti4", // 𥫵
+ 0x25af6: "ji1", // 𥫶
+ 0x25af7: "qiu1", // 𥫷
+ 0x25af8: "shui3", // 𥫸
+ 0x25af9: "chen2", // 𥫹
+ 0x25afc: "huang4", // 𥫼
+ 0x25afd: "shi5", // 𥫽
+ 0x25b00: "yun2", // 𥬀
+ 0x25b06: "long2", // 𥬆
+ 0x25b08: "man3", // 𥬈
+ 0x25b09: "gou1", // 𥬉
+ 0x25b0d: "xian1", // 𥬍
+ 0x25b0e: "mo4", // 𥬎
+ 0x25b10: "shen3", // 𥬐
+ 0x25b12: "po1", // 𥬒
+ 0x25b13: "yao4", // 𥬓
+ 0x25b14: "qu1", // 𥬔
+ 0x25b15: "ran3", // 𥬕
+ 0x25b19: "ju4", // 𥬙
+ 0x25b1c: "yin3", // 𥬜
+ 0x25b1d: "bai2", // 𥬝
+ 0x25b1e: "nie4", // 𥬞
+ 0x25b20: "chou1", // 𥬠
+ 0x25b2a: "rong2", // 𥬪
+ 0x25b2b: "chuan3", // 𥬫
+ 0x25b2c: "nie4", // 𥬬
+ 0x25b2d: "li4", // 𥬭
+ 0x25b2e: "jiang1", // 𥬮
+ 0x25b2f: "kao3", // 𥬯
+ 0x25b30: "ce4", // 𥬰
+ 0x25b31: "chong4", // 𥬱
+ 0x25b32: "zhua1", // 𥬲
+ 0x25b33: "zi3", // 𥬳
+ 0x25b34: "yang2", // 𥬴
+ 0x25b3c: "wen3", // 𥬼
+ 0x25b4b: "ji4", // 𥭋
+ 0x25b4c: "ji4", // 𥭌
+ 0x25b50: "lv4", // 𥭐
+ 0x25b51: "qiu2", // 𥭑
+ 0x25b52: "dun4", // 𥭒
+ 0x25b53: "bao2", // 𥭓
+ 0x25b54: "chan1", // 𥭔
+ 0x25b56: "bo2", // 𥭖
+ 0x25b58: "chi1", // 𥭘
+ 0x25b59: "zhe4", // 𥭙
+ 0x25b5a: "mang4", // 𥭚
+ 0x25b5c: "ji4", // 𥭜
+ 0x25b5d: "miao4", // 𥭝
+ 0x25b5e: "yuan4", // 𥭞
+ 0x25b60: "wu2", // 𥭠
+ 0x25b61: "zhi4", // 𥭡
+ 0x25b62: "ping1", // 𥭢
+ 0x25b65: "chong1", // 𥭥
+ 0x25b6b: "mi2", // 𥭫
+ 0x25b6c: "fei2", // 𥭬
+ 0x25b6d: "cuo1", // 𥭭
+ 0x25b6e: "meng2", // 𥭮
+ 0x25b8d: "yin2", // 𥮍
+ 0x25b8e: "mang3", // 𥮎
+ 0x25b8f: "dian3", // 𥮏
+ 0x25b90: "diao1", // 𥮐
+ 0x25b92: "qian2", // 𥮒
+ 0x25b95: "hang4", // 𥮕
+ 0x25b96: "zhi2", // 𥮖
+ 0x25b97: "ju2", // 𥮗
+ 0x25b98: "nian4", // 𥮘
+ 0x25b9c: "mi2", // 𥮜
+ 0x25b9d: "gu3", // 𥮝
+ 0x25ba3: "zhua1", // 𥮣
+ 0x25ba4: "nie4", // 𥮤
+ 0x25ba5: "zhuo2", // 𥮥
+ 0x25ba7: "ye4", // 𥮧
+ 0x25ba8: "cong4", // 𥮨
+ 0x25baa: "xu1", // 𥮪
+ 0x25bac: "xi4", // 𥮬
+ 0x25baf: "bo1", // 𥮯
+ 0x25bbe: "can3", // 𥮾
+ 0x25bc3: "yan3", // 𥯃
+ 0x25bd1: "jin3", // 𥯑
+ 0x25bd4: "ju3", // 𥯔
+ 0x25bd5: "dang4", // 𥯕
+ 0x25bd6: "du4", // 𥯖
+ 0x25bd8: "ye2", // 𥯘
+ 0x25bd9: "jing4", // 𥯙
+ 0x25bda: "ke4", // 𥯚
+ 0x25bdb: "luo4", // 𥯛
+ 0x25bdc: "wei3", // 𥯜
+ 0x25bdd: "tu1", // 𥯝
+ 0x25bde: "you2", // 𥯞
+ 0x25bdf: "pai4", // 𥯟
+ 0x25be1: "pi2", // 𥯡
+ 0x25be2: "ding4", // 𥯢
+ 0x25be4: "wei3", // 𥯤
+ 0x25be5: "che4", // 𥯥
+ 0x25be6: "jian4", // 𥯦
+ 0x25be8: "si1", // 𥯨
+ 0x25be9: "zhuo2", // 𥯩
+ 0x25bea: "sou4", // 𥯪
+ 0x25bec: "ruan3", // 𥯬
+ 0x25bee: "yu2", // 𥯮
+ 0x25bf3: "e4", // 𥯳
+ 0x25bf6: "ku3", // 𥯶
+ 0x25bf8: "zhu4", // 𥯸
+ 0x25bfe: "xia2", // 𥯾
+ 0x25c1b: "fu2", // 𥰛
+ 0x25c1c: "tao2", // 𥰜
+ 0x25c1d: "xi1", // 𥰝
+ 0x25c1e: "chou1", // 𥰞
+ 0x25c1f: "gan3", // 𥰟
+ 0x25c20: "lv2", // 𥰠
+ 0x25c21: "ce4", // 𥰡
+ 0x25c22: "shan4", // 𥰢
+ 0x25c23: "liu2", // 𥰣
+ 0x25c25: "xi4", // 𥰥
+ 0x25c26: "ji1", // 𥰦
+ 0x25c27: "yi3", // 𥰧
+ 0x25c28: "tan2", // 𥰨
+ 0x25c2a: "hu2", // 𥰪
+ 0x25c2d: "cuo1", // 𥰭
+ 0x25c2e: "ge3", // 𥰮
+ 0x25c30: "shi4", // 𥰰
+ 0x25c31: "sao1", // 𥰱
+ 0x25c32: "hong4", // 𥰲
+ 0x25c33: "xian4", // 𥰳
+ 0x25c36: "xia2", // 𥰶
+ 0x25c3b: "mu4", // 𥰻
+ 0x25c3c: "suo3", // 𥰼
+ 0x25c3e: "zhai4", // 𥰾
+ 0x25c40: "fu1", // 𥱀
+ 0x25c41: "se4", // 𥱁
+ 0x25c42: "nu2", // 𥱂
+ 0x25c43: "yi4", // 𥱃
+ 0x25c67: "qin2", // 𥱧
+ 0x25c68: "qing4", // 𥱨
+ 0x25c75: "hui4", // 𥱵
+ 0x25c76: "shuang3", // 𥱶
+ 0x25c77: "dan3", // 𥱷
+ 0x25c78: "ou1", // 𥱸
+ 0x25c79: "mo4", // 𥱹
+ 0x25c7a: "qian1", // 𥱺
+ 0x25c7b: "chi4", // 𥱻
+ 0x25c7c: "pai2", // 𥱼
+ 0x25c7d: "juan4", // 𥱽
+ 0x25c80: "chao2", // 𥲀
+ 0x25c81: "lie4", // 𥲁
+ 0x25c82: "bing1", // 𥲂
+ 0x25c83: "kou4", // 𥲃
+ 0x25c84: "dan4", // 𥲄
+ 0x25c85: "chou2", // 𥲅
+ 0x25c86: "tong1", // 𥲆
+ 0x25c87: "dan4", // 𥲇
+ 0x25c88: "man3", // 𥲈
+ 0x25c89: "hu4", // 𥲉
+ 0x25c8a: "liao2", // 𥲊
+ 0x25c8b: "xian2", // 𥲋
+ 0x25c8d: "cao2", // 𥲍
+ 0x25c8e: "lu4", // 𥲎
+ 0x25c8f: "chuan4", // 𥲏
+ 0x25c90: "wu2", // 𥲐
+ 0x25c91: "man2", // 𥲑
+ 0x25c95: "zi3", // 𥲕
+ 0x25c97: "du4", // 𥲗
+ 0x25c9a: "shuang4", // 𥲚
+ 0x25c9b: "fu4", // 𥲛
+ 0x25c9c: "ju4", // 𥲜
+ 0x25c9d: "zhou4", // 𥲝
+ 0x25c9f: "diao4", // 𥲟
+ 0x25ca0: "wang4", // 𥲠
+ 0x25ca1: "chuang1", // 𥲡
+ 0x25ca2: "qian1", // 𥲢
+ 0x25ca3: "tui4", // 𥲣
+ 0x25ca5: "lian2", // 𥲥
+ 0x25ca6: "biao1", // 𥲦
+ 0x25ca7: "li2", // 𥲧
+ 0x25caa: "li2", // 𥲪
+ 0x25cc6: "bi4", // 𥳆
+ 0x25cc7: "fu4", // 𥳇
+ 0x25cc8: "cui4", // 𥳈
+ 0x25cc9: "du1", // 𥳉
+ 0x25ccb: "zan4", // 𥳋
+ 0x25ccc: "long2", // 𥳌
+ 0x25ccd: "xun2", // 𥳍
+ 0x25cce: "qiong2", // 𥳎
+ 0x25ccf: "ji1", // 𥳏
+ 0x25cd0: "qian3", // 𥳐
+ 0x25cd2: "jian3", // 𥳒
+ 0x25cd3: "shao1", // 𥳓
+ 0x25cd4: "duo4", // 𥳔
+ 0x25cd5: "shu1", // 𥳕
+ 0x25cd6: "bu4", // 𥳖
+ 0x25cd7: "xu1", // 𥳗
+ 0x25cd8: "dong3", // 𥳘
+ 0x25cda: "ran2", // 𥳚
+ 0x25cdc: "yang2", // 𥳜
+ 0x25cdd: "rui3", // 𥳝
+ 0x25cde: "lin4", // 𥳞
+ 0x25cdf: "jian3", // 𥳟
+ 0x25ce0: "di4", // 𥳠
+ 0x25ce1: "fen2", // 𥳡
+ 0x25ce2: "dian4", // 𥳢
+ 0x25ce3: "zui4", // 𥳣
+ 0x25ce5: "ning3", // 𥳥
+ 0x25cea: "suan4", // 𥳪
+ 0x25ceb: "tian3", // 𥳫
+ 0x25cec: "an4", // 𥳬
+ 0x25cef: "ce4", // 𥳯
+ 0x25cf0: "ding4", // 𥳰
+ 0x25cf1: "shen1", // 𥳱
+ 0x25cf2: "du4", // 𥳲
+ 0x25cf3: "ti2", // 𥳳
+ 0x25cf4: "jiao3", // 𥳴
+ 0x25cf5: "zui4", // 𥳵
+ 0x25cf6: "zhang3", // 𥳶
+ 0x25cf7: "jian3", // 𥳷
+ 0x25cf8: "dan4", // 𥳸
+ 0x25cf9: "dan3", // 𥳹
+ 0x25cfa: "song3", // 𥳺
+ 0x25d10: "zhan3", // 𥴐
+ 0x25d11: "ting2", // 𥴑
+ 0x25d12: "zhi4", // 𥴒
+ 0x25d15: "you2", // 𥴕
+ 0x25d16: "pai2", // 𥴖
+ 0x25d21: "li3", // 𥴡
+ 0x25d24: "qian2", // 𥴤
+ 0x25d26: "sui4", // 𥴦
+ 0x25d27: "ju3", // 𥴧
+ 0x25d28: "ai4", // 𥴨
+ 0x25d29: "ge2", // 𥴩
+ 0x25d2a: "ju4", // 𥴪
+ 0x25d2b: "tun2", // 𥴫
+ 0x25d2c: "bi4", // 𥴬
+ 0x25d2d: "qia4", // 𥴭
+ 0x25d2e: "bo2", // 𥴮
+ 0x25d2f: "hui4", // 𥴯
+ 0x25d31: "jian4", // 𥴱
+ 0x25d34: "gou1", // 𥴴
+ 0x25d35: "suan4", // 𥴵
+ 0x25d3a: "ci2", // 𥴺
+ 0x25d3b: "qiang4", // 𥴻
+ 0x25d3f: "yan2", // 𥴿
+ 0x25d4f: "dian4", // 𥵏
+ 0x25d52: "mie4", // 𥵒
+ 0x25d5c: "po4", // 𥵜
+ 0x25d5d: "ling3", // 𥵝
+ 0x25d5e: "jie2", // 𥵞
+ 0x25d5f: "zhu4", // 𥵟
+ 0x25d60: "gu3", // 𥵠
+ 0x25d63: "duan1", // 𥵣
+ 0x25d64: "zhao4", // 𥵤
+ 0x25d66: "shao3", // 𥵦
+ 0x25d67: "qin3", // 𥵧
+ 0x25d68: "mi2", // 𥵨
+ 0x25d6a: "ping2", // 𥵪
+ 0x25d6b: "cong2", // 𥵫
+ 0x25d6c: "chou1", // 𥵬
+ 0x25d6f: "sa4", // 𥵯
+ 0x25d76: "tian3", // 𥵶
+ 0x25d85: "liu2", // 𥶅
+ 0x25d86: "lv2", // 𥶆
+ 0x25d87: "lu3", // 𥶇
+ 0x25d88: "zou1", // 𥶈
+ 0x25d8c: "lv4", // 𥶌
+ 0x25d8d: "huan3", // 𥶍
+ 0x25d8f: "tiao2", // 𥶏
+ 0x25d90: "tui2", // 𥶐
+ 0x25d91: "qiang3", // 𥶑
+ 0x25d92: "lin4", // 𥶒
+ 0x25d93: "bei1", // 𥶓
+ 0x25d94: "pao2", // 𥶔
+ 0x25d95: "zhan1", // 𥶕
+ 0x25d97: "li4", // 𥶗
+ 0x25d9b: "ti2", // 𥶛
+ 0x25d9c: "hu2", // 𥶜
+ 0x25da2: "lie4", // 𥶢
+ 0x25db5: "hui3", // 𥶵
+ 0x25db6: "qu1", // 𥶶
+ 0x25db7: "xuan3", // 𥶷
+ 0x25db9: "jing4", // 𥶹
+ 0x25dba: "die2", // 𥶺
+ 0x25dbb: "sui2", // 𥶻
+ 0x25dbd: "wei4", // 𥶽
+ 0x25dbf: "yan2", // 𥶿
+ 0x25dc0: "yan1", // 𥷀
+ 0x25dc1: "ban4", // 𥷁
+ 0x25dc3: "jiang3", // 𥷃
+ 0x25dc4: "ni3", // 𥷄
+ 0x25dc5: "li4", // 𥷅
+ 0x25dc6: "hu2", // 𥷆
+ 0x25dc7: "qi4", // 𥷇
+ 0x25dc8: "zhong1", // 𥷈
+ 0x25dd1: "bi4", // 𥷑
+ 0x25dd4: "yu2", // 𥷔
+ 0x25dd5: "die2", // 𥷕
+ 0x25dd6: "lin4", // 𥷖
+ 0x25dd7: "li4", // 𥷗
+ 0x25dd8: "zhuo2", // 𥷘
+ 0x25dd9: "ji4", // 𥷙
+ 0x25dda: "ju1", // 𥷚
+ 0x25ddc: "feng1", // 𥷜
+ 0x25dde: "yu4", // 𥷞
+ 0x25de8: "lie4", // 𥷨
+ 0x25de9: "za2", // 𥷩
+ 0x25dea: "qian2", // 𥷪
+ 0x25deb: "jie1", // 𥷫
+ 0x25dec: "guan1", // 𥷬
+ 0x25dee: "zhuo2", // 𥷮
+ 0x25df1: "fu4", // 𥷱
+ 0x25df9: "se4", // 𥷹
+ 0x25dfc: "cu4", // 𥷼
+ 0x25e03: "hui3", // 𥸃
+ 0x25e08: "dang4", // 𥸈
+ 0x25e09: "long2", // 𥸉
+ 0x25e0a: "yi4", // 𥸊
+ 0x25e17: "sa3", // 𥸗
+ 0x25e18: "yue4", // 𥸘
+ 0x25e1a: "di2", // 𥸚
+ 0x25e21: "gan3", // 𥸡
+ 0x25e22: "zan1", // 𥸢
+ 0x25e23: "shan4", // 𥸣
+ 0x25e24: "yu4", // 𥸤
+ 0x25e25: "bo3", // 𥸥
+ 0x25e27: "ding4", // 𥸧
+ 0x25e28: "fan2", // 𥸨
+ 0x25e2a: "yu4", // 𥸪
+ 0x25e2c: "shen1", // 𥸬
+ 0x25e32: "gong1", // 𥸲
+ 0x25e34: "mie4", // 𥸴
+ 0x25e35: "tun2", // 𥸵
+ 0x25e38: "lie4", // 𥸸
+ 0x25e41: "zha1", // 𥹁
+ 0x25e42: "pei1", // 𥹂
+ 0x25e44: "mi2", // 𥹄
+ 0x25e46: "ming2", // 𥹆
+ 0x25e47: "fan4", // 𥹇
+ 0x25e49: "na4", // 𥹉
+ 0x25e4a: "si4", // 𥹊
+ 0x25e4b: "yi2", // 𥹋
+ 0x25e4c: "jia1", // 𥹌
+ 0x25e4d: "zhu4", // 𥹍
+ 0x25e53: "ban1", // 𥹓
+ 0x25e54: "yu4", // 𥹔
+ 0x25e56: "po3", // 𥹖
+ 0x25e5a: "huan1", // 𥹚
+ 0x25e5b: "can4", // 𥹛
+ 0x25e5c: "jiao1", // 𥹜
+ 0x25e60: "tan2", // 𥹠
+ 0x25e69: "zhi4", // 𥹩
+ 0x25e6b: "mi3", // 𥹫
+ 0x25e6c: "kao3", // 𥹬
+ 0x25e71: "yao1", // 𥹱
+ 0x25e72: "dui4", // 𥹲
+ 0x25e73: "quan3", // 𥹳
+ 0x25e74: "bu4", // 𥹴
+ 0x25e75: "chu4", // 𥹵
+ 0x25e76: "qiao3", // 𥹶
+ 0x25e77: "liu2", // 𥹷
+ 0x25e78: "bo2", // 𥹸
+ 0x25e7a: "kang1", // 𥹺
+ 0x25e7b: "fen4", // 𥹻
+ 0x25e85: "dao4", // 𥺅
+ 0x25e89: "dou4", // 𥺉
+ 0x25e8a: "ge2", // 𥺊
+ 0x25e99: "ling2", // 𥺙
+ 0x25e9a: "xi2", // 𥺚
+ 0x25e9c: "ni4", // 𥺜
+ 0x25e9d: "zhou1", // 𥺝
+ 0x25e9e: "zhou1", // 𥺞
+ 0x25ea3: "chou1", // 𥺣
+ 0x25eb4: "nian1", // 𥺴
+ 0x25eb5: "ji1", // 𥺵
+ 0x25eb7: "qu1", // 𥺷
+ 0x25ec4: "kai1", // 𥻄
+ 0x25ec7: "xian4", // 𥻇
+ 0x25ec9: "he2", // 𥻉
+ 0x25ecb: "lin2", // 𥻋
+ 0x25ecd: "zi1", // 𥻍
+ 0x25ed1: "ou3", // 𥻑
+ 0x25ed2: "cu4", // 𥻒
+ 0x25ed7: "cha2", // 𥻗
+ 0x25edd: "zhong4", // 𥻝
+ 0x25ede: "bu2", // 𥻞
+ 0x25ee4: "chou1", // 𥻤
+ 0x25ee5: "xi4", // 𥻥
+ 0x25ee6: "sa4", // 𥻦
+ 0x25ee7: "xian2", // 𥻧
+ 0x25ee8: "se4", // 𥻨
+ 0x25ee9: "mian4", // 𥻩
+ 0x25eeb: "fan2", // 𥻫
+ 0x25eec: "zhi1", // 𥻬
+ 0x25eee: "cui4", // 𥻮
+ 0x25ef4: "xia4", // 𥻴
+ 0x25efe: "nuo4", // 𥻾
+ 0x25eff: "li2", // 𥻿
+ 0x25f00: "zu2", // 𥼀
+ 0x25f02: "cui1", // 𥼂
+ 0x25f03: "ze2", // 𥼃
+ 0x25f05: "li2", // 𥼅
+ 0x25f18: "qi2", // 𥼘
+ 0x25f1a: "zhuo1", // 𥼚
+ 0x25f1b: "cui4", // 𥼛
+ 0x25f1c: "pu1", // 𥼜
+ 0x25f1e: "fan2", // 𥼞
+ 0x25f1f: "tan2", // 𥼟
+ 0x25f29: "zi1", // 𥼩
+ 0x25f2a: "zu3", // 𥼪
+ 0x25f2b: "zhou1", // 𥼫
+ 0x25f2c: "rong2", // 𥼬
+ 0x25f2d: "lin2", // 𥼭
+ 0x25f2e: "tan2", // 𥼮
+ 0x25f36: "shi4", // 𥼶
+ 0x25f3a: "cui3", // 𥼺
+ 0x25f3b: "zi1", // 𥼻
+ 0x25f3c: "fu1", // 𥼼
+ 0x25f41: "xiao4", // 𥽁
+ 0x25f48: "feng1", // 𥽈
+ 0x25f4f: "xian4", // 𥽏
+ 0x25f50: "jian4", // 𥽐
+ 0x25f52: "fen4", // 𥽒
+ 0x25f57: "li4", // 𥽗
+ 0x25f58: "mo4", // 𥽘
+ 0x25f5f: "you1", // 𥽟
+ 0x25f65: "huo4", // 𥽥
+ 0x25f67: "qu1", // 𥽧
+ 0x25f6c: "niang4", // 𥽬
+ 0x25f70: "mi2", // 𥽰
+ 0x25f73: "qi4", // 𥽳
+ 0x25f76: "he2", // 𥽶
+ 0x25f78: "lian4", // 𥽸
+ 0x25f7f: "zuo4", // 𥽿
+ 0x25f82: "ling2", // 𥾂
+ 0x25f85: "zhu2", // 𥾅
+ 0x25f87: "niao3", // 𥾇
+ 0x25f8a: "ji3", // 𥾊
+ 0x25f8b: "reng2", // 𥾋
+ 0x25f8c: "jie2", // 𥾌
+ 0x25f8d: "gan3", // 𥾍
+ 0x25f90: "yi4", // 𥾐
+ 0x25f93: "zhou2", // 𥾓
+ 0x25f95: "wu4", // 𥾕
+ 0x25f9a: "geng3", // 𥾚
+ 0x25f9b: "cu4", // 𥾛
+ 0x25f9d: "mie4", // 𥾝
+ 0x25fa1: "xun2", // 𥾡
+ 0x25fa3: "zhi1", // 𥾣
+ 0x25fa4: "xiao2", // 𥾤
+ 0x25fa7: "fu2", // 𥾧
+ 0x25fa8: "hu2", // 𥾨
+ 0x25fac: "di1", // 𥾬
+ 0x25fae: "jue2", // 𥾮
+ 0x25faf: "diao4", // 𥾯
+ 0x25fb9: "shou3", // 𥾹
+ 0x25fbc: "wang3", // 𥾼
+ 0x25fc3: "na4", // 𥿃
+ 0x25fc4: "di1", // 𥿄
+ 0x25fc5: "shi4", // 𥿅
+ 0x25fc6: "ci2", // 𥿆
+ 0x25fc7: "shu1", // 𥿇
+ 0x25fc9: "wa4", // 𥿉
+ 0x25fca: "che4", // 𥿊
+ 0x25fcb: "fan2", // 𥿋
+ 0x25fcd: "gu1", // 𥿍
+ 0x25fce: "yuan1", // 𥿎
+ 0x25fd1: "guan1", // 𥿑
+ 0x25fda: "qie4", // 𥿚
+ 0x25fdc: "zhan3", // 𥿜
+ 0x25fdd: "dai4", // 𥿝
+ 0x25fde: "she1", // 𥿞
+ 0x25fe6: "zhou1", // 𥿦
+ 0x25fe7: "xiang3", // 𥿧
+ 0x25fe8: "ming2", // 𥿨
+ 0x25fe9: "zi4", // 𥿩
+ 0x25fea: "huang1", // 𥿪
+ 0x25feb: "mi2", // 𥿫
+ 0x25fed: "xi4", // 𥿭
+ 0x25fee: "zhi4", // 𥿮
+ 0x25fef: "pai4", // 𥿯
+ 0x25ff0: "duo3", // 𥿰
+ 0x25ff4: "ci4", // 𥿴
+ 0x25ff5: "mou2", // 𥿵
+ 0x25ff7: "chao4", // 𥿷
+ 0x25ff9: "yi4", // 𥿹
+ 0x25ffa: "gou1", // 𥿺
+ 0x26007: "jing1", // 𦀇
+ 0x26013: "zeng1", // 𦀓
+ 0x26014: "ping1", // 𦀔
+ 0x26015: "ye4", // 𦀕
+ 0x26016: "jie2", // 𦀖
+ 0x26018: "pi1", // 𦀘
+ 0x2601b: "sha1", // 𦀛
+ 0x2601c: "zhuang4", // 𦀜
+ 0x2601d: "jiong3", // 𦀝
+ 0x26020: "liu2", // 𦀠
+ 0x26021: "yu3", // 𦀡
+ 0x26023: "ju1", // 𦀣
+ 0x26028: "nuo4", // 𦀨
+ 0x26038: "mao4", // 𦀸
+ 0x26044: "chen1", // 𦁄
+ 0x26046: "zhuan4", // 𦁆
+ 0x26047: "nian4", // 𦁇
+ 0x26048: "kong4", // 𦁈
+ 0x26049: "jie1", // 𦁉
+ 0x2604a: "hua4", // 𦁊
+ 0x2604d: "xin1", // 𦁍
+ 0x2604e: "zuo2", // 𦁎
+ 0x2604f: "yan4", // 𦁏
+ 0x26050: "jue2", // 𦁐
+ 0x26055: "hu1", // 𦁕
+ 0x26056: "zhou4", // 𦁖
+ 0x26057: "she4", // 𦁗
+ 0x26059: "yan3", // 𦁙
+ 0x2605b: "xie4", // 𦁛
+ 0x2605c: "die2", // 𦁜
+ 0x2605f: "chen1", // 𦁟
+ 0x26072: "jian3", // 𦁲
+ 0x26073: "ji4", // 𦁳
+ 0x26076: "chuo4", // 𦁶
+ 0x26077: "hong2", // 𦁷
+ 0x26080: "da2", // 𦂀
+ 0x26084: "kai1", // 𦂄
+ 0x26085: "xing1", // 𦂅
+ 0x26086: "hui4", // 𦂆
+ 0x26087: "jian3", // 𦂇
+ 0x26088: "zhou4", // 𦂈
+ 0x26089: "zha3", // 𦂉
+ 0x2608a: "fu4", // 𦂊
+ 0x2608b: "chi4", // 𦂋
+ 0x2608c: "beng3", // 𦂌
+ 0x2608d: "nuo4", // 𦂍
+ 0x26091: "ji4", // 𦂑
+ 0x26092: "qian2", // 𦂒
+ 0x26094: "wan4", // 𦂔
+ 0x26095: "ou2", // 𦂕
+ 0x26096: "bi4", // 𦂖
+ 0x26097: "shuo4", // 𦂗
+ 0x260a0: "jing1", // 𦂠
+ 0x260a1: "ye4", // 𦂡
+ 0x260c4: "fei3", // 𦃄
+ 0x260c7: "li2", // 𦃇
+ 0x260ca: "li4", // 𦃊
+ 0x260cb: "pi2", // 𦃋
+ 0x260d2: "sui4", // 𦃒
+ 0x260d3: "liu2", // 𦃓
+ 0x260d4: "he2", // 𦃔
+ 0x260d5: "hun3", // 𦃕
+ 0x260d6: "tan3", // 𦃖
+ 0x260d7: "shuo4", // 𦃗
+ 0x260d8: "zhi4", // 𦃘
+ 0x260d9: "bo2", // 𦃙
+ 0x260dd: "xi4", // 𦃝
+ 0x260e1: "po2", // 𦃡
+ 0x260e2: "qun3", // 𦃢
+ 0x260e4: "mu4", // 𦃤
+ 0x260fd: "yong1", // 𦃽
+ 0x26102: "dai4", // 𦄂
+ 0x2610a: "qi3", // 𦄊
+ 0x2610b: "diao3", // 𦄋
+ 0x2610c: "nie4", // 𦄌
+ 0x2610d: "shuang3", // 𦄍
+ 0x2610f: "shao1", // 𦄏
+ 0x26110: "kun3", // 𦄐
+ 0x26111: "sui4", // 𦄑
+ 0x26113: "dou1", // 𦄓
+ 0x26114: "die2", // 𦄔
+ 0x2611c: "gong1", // 𦄜
+ 0x2612f: "zhuan3", // 𦄯
+ 0x26130: "guo2", // 𦄰
+ 0x2613c: "xu1", // 𦄼
+ 0x2613d: "qu2", // 𦄽
+ 0x26140: "xun2", // 𦅀
+ 0x26143: "jiao1", // 𦅃
+ 0x26144: "zhe2", // 𦅄
+ 0x26146: "dian4", // 𦅆
+ 0x26147: "sang1", // 𦅇
+ 0x26148: "beng1", // 𦅈
+ 0x2614a: "suo3", // 𦅊
+ 0x2614b: "qian3", // 𦅋
+ 0x2614f: "xu1", // 𦅏
+ 0x26151: "xun2", // 𦅑
+ 0x26154: "mo4", // 𦅔
+ 0x26175: "sui4", // 𦅵
+ 0x26176: "la4", // 𦅶
+ 0x26177: "zhu3", // 𦅷
+ 0x26178: "zhou4", // 𦅸
+ 0x2617a: "li4", // 𦅺
+ 0x2617c: "dan1", // 𦅼
+ 0x2617d: "ju2", // 𦅽
+ 0x2617f: "yun4", // 𦅿
+ 0x26180: "chan3", // 𦆀
+ 0x26181: "luo2", // 𦆁
+ 0x26184: "se4", // 𦆄
+ 0x26186: "lian2", // 𦆆
+ 0x26188: "zuan3", // 𦆈
+ 0x2618b: "lai4", // 𦆋
+ 0x2618c: "shuang3", // 𦆌
+ 0x2618d: "qie4", // 𦆍
+ 0x26198: "dou1", // 𦆘
+ 0x2619e: "wu4", // 𦆞
+ 0x2619f: "meng2", // 𦆟
+ 0x261a1: "ji4", // 𦆡
+ 0x261a4: "chi1", // 𦆤
+ 0x261a6: "ni3", // 𦆦
+ 0x261b8: "yao2", // 𦆸
+ 0x261bb: "la4", // 𦆻
+ 0x261be: "lv4", // 𦆾
+ 0x261c0: "sui4", // 𦇀
+ 0x261c1: "fu1", // 𦇁
+ 0x261c4: "lei3", // 𦇄
+ 0x261c5: "wei3", // 𦇅
+ 0x261ce: "cong1", // 𦇎
+ 0x261d4: "li4", // 𦇔
+ 0x261d6: "pin2", // 𦇖
+ 0x261d8: "jun1", // 𦇘
+ 0x261d9: "ju3", // 𦇙
+ 0x261db: "la4", // 𦇛
+ 0x261e7: "ji4", // 𦇧
+ 0x261ea: "mie4", // 𦇪
+ 0x261ec: "yao4", // 𦇬
+ 0x261ed: "bian1", // 𦇭
+ 0x261f1: "cong2", // 𦇱
+ 0x261f2: "si1", // 𦇲
+ 0x261f5: "si1", // 𦇵
+ 0x261f8: "he2", // 𦇸
+ 0x26203: "nang4", // 𦈃
+ 0x26205: "die2", // 𦈅
+ 0x26208: "che4", // 𦈈
+ 0x26209: "yun4", // 𦈉
+ 0x2620b: "xiu3", // 𦈋
+ 0x2620c: "shu1", // 𦈌
+ 0x2620e: "chan3", // 𦈎
+ 0x2620f: "min2", // 𦈏
+ 0x26210: "lian2", // 𦈐
+ 0x26211: "yin1", // 𦈑
+ 0x26212: "xing1", // 𦈒
+ 0x26213: "wei1", // 𦈓
+ 0x26214: "gu3", // 𦈔
+ 0x26215: "tou2", // 𦈕
+ 0x26216: "ta1", // 𦈖
+ 0x26217: "fei3", // 𦈗
+ 0x26218: "da1", // 𦈘
+ 0x26219: "nie4", // 𦈙
+ 0x2621a: "cu4", // 𦈚
+ 0x2621b: "zuo3", // 𦈛
+ 0x2621c: "jie2", // 𦈜
+ 0x2621d: "xuan4", // 𦈝
+ 0x2621e: "bo2", // 𦈞
+ 0x2621f: "jin1", // 𦈟
+ 0x26220: "yin3", // 𦈠
+ 0x26221: "xu1", // 𦈡
+ 0x26223: "yu2", // 𦈣
+ 0x26224: "xiong4", // 𦈤
+ 0x26226: "qi4", // 𦈦
+ 0x26227: "bei1", // 𦈧
+ 0x26228: "xing2", // 𦈨
+ 0x26229: "gong3", // 𦈩
+ 0x2622c: "zui3", // 𦈬
+ 0x26230: "jie1", // 𦈰
+ 0x26232: "kai1", // 𦈲
+ 0x26235: "xing2", // 𦈵
+ 0x26236: "bei1", // 𦈶
+ 0x26237: "shu1", // 𦈷
+ 0x26238: "yu4", // 𦈸
+ 0x2623a: "zhou3", // 𦈺
+ 0x2623b: "zhan3", // 𦈻
+ 0x26242: "zhong1", // 𦉂
+ 0x26246: "cha2", // 𦉆
+ 0x26248: "chui2", // 𦉈
+ 0x26249: "liu4", // 𦉉
+ 0x2624e: "sui1", // 𦉎
+ 0x26250: "zhu3", // 𦉐
+ 0x26259: "bian4", // 𦉙
+ 0x2625d: "xin4", // 𦉝
+ 0x2625f: "ya4", // 𦉟
+ 0x26262: "ling2", // 𦉢
+ 0x26267: "ya4", // 𦉧
+ 0x2626c: "ting1", // 𦉬
+ 0x26279: "di2", // 𦉹
+ 0x26281: "pi2", // 𦊁
+ 0x26282: "hu4", // 𦊂
+ 0x26283: "cen2", // 𦊃
+ 0x2628a: "tian1", // 𦊊
+ 0x2628b: "mou3", // 𦊋
+ 0x2628c: "juan3", // 𦊌
+ 0x2628e: "mou3", // 𦊎
+ 0x26290: "ju4", // 𦊐
+ 0x26291: "liu3", // 𦊑
+ 0x26293: "ling3", // 𦊓
+ 0x26297: "liu3", // 𦊗
+ 0x26298: "hu4", // 𦊘
+ 0x262a6: "fu2", // 𦊦
+ 0x262a7: "hu2", // 𦊧
+ 0x262aa: "e4", // 𦊪
+ 0x262ab: "gong1", // 𦊫
+ 0x262ac: "gu1", // 𦊬
+ 0x262b1: "gua4", // 𦊱
+ 0x262b9: "lve4", // 𦊹
+ 0x262bb: "fan2", // 𦊻
+ 0x262bc: "lv4", // 𦊼
+ 0x262bd: "meng2", // 𦊽
+ 0x262be: "fu2", // 𦊾
+ 0x262bf: "liu2", // 𦊿
+ 0x262c5: "xie2", // 𦋅
+ 0x262c6: "gu1", // 𦋆
+ 0x262c8: "xian4", // 𦋈
+ 0x262c9: "bo2", // 𦋉
+ 0x262cb: "ji4", // 𦋋
+ 0x262d3: "quan1", // 𦋓
+ 0x262d4: "lu4", // 𦋔
+ 0x262de: "shuo4", // 𦋞
+ 0x262e1: "mou3", // 𦋡
+ 0x262e2: "yu4", // 𦋢
+ 0x262e3: "han4", // 𦋣
+ 0x262e9: "yue4", // 𦋩
+ 0x262ea: "dan4", // 𦋪
+ 0x262ef: "yu2", // 𦋯
+ 0x262f0: "jian1", // 𦋰
+ 0x262f3: "gang1", // 𦋳
+ 0x262ff: "cao2", // 𦋿
+ 0x26300: "shen4", // 𦌀
+ 0x26301: "liu3", // 𦌁
+ 0x26306: "jiao1", // 𦌆
+ 0x26309: "su4", // 𦌉
+ 0x2630a: "su4", // 𦌊
+ 0x2630b: "zhong4", // 𦌋
+ 0x26312: "liao4", // 𦌒
+ 0x26314: "xuan3", // 𦌔
+ 0x26315: "lu4", // 𦌕
+ 0x26317: "ji4", // 𦌗
+ 0x2631a: "yan2", // 𦌚
+ 0x2631f: "lu4", // 𦌟
+ 0x26321: "min3", // 𦌡
+ 0x26322: "ti2", // 𦌢
+ 0x26326: "huan4", // 𦌦
+ 0x26329: "yi4", // 𦌩
+ 0x2632a: "tan3", // 𦌪
+ 0x2632c: "wu3", // 𦌬
+ 0x26330: "ji1", // 𦌰
+ 0x26337: "du2", // 𦌷
+ 0x26338: "kun1", // 𦌸
+ 0x2633a: "jun1", // 𦌺
+ 0x2633f: "shi1", // 𦌿
+ 0x26340: "nan4", // 𦍀
+ 0x26341: "po4", // 𦍁
+ 0x26344: "shu1", // 𦍄
+ 0x26345: "quan4", // 𦍅
+ 0x2634c: "ren4", // 𦍌
+ 0x2634f: "fen2", // 𦍏
+ 0x26352: "ta4", // 𦍒
+ 0x26353: "tun2", // 𦍓
+ 0x26355: "yang2", // 𦍕
+ 0x26366: "duo1", // 𦍦
+ 0x26367: "ci1", // 𦍧
+ 0x26369: "gu3", // 𦍩
+ 0x2636a: "fen2", // 𦍪
+ 0x2636d: "rou2", // 𦍭
+ 0x26371: "gao1", // 𦍱
+ 0x26372: "xiang2", // 𦍲
+ 0x26374: "xiang2", // 𦍴
+ 0x26375: "hou3", // 𦍵
+ 0x26377: "tao1", // 𦍷
+ 0x26378: "shan4", // 𦍸
+ 0x26379: "yang2", // 𦍹
+ 0x2637a: "zi4", // 𦍺
+ 0x2637c: "yuan2", // 𦍼
+ 0x26384: "su2", // 𦎄
+ 0x26387: "chuan4", // 𦎇
+ 0x26388: "xiang2", // 𦎈
+ 0x2638a: "ban1", // 𦎊
+ 0x2638c: "man3", // 𦎌
+ 0x2638e: "fu3", // 𦎎
+ 0x2638f: "la3", // 𦎏
+ 0x26390: "li3", // 𦎐
+ 0x26392: "jie2", // 𦎒
+ 0x26393: "you1", // 𦎓
+ 0x26398: "yu4", // 𦎘
+ 0x2639a: "chi4", // 𦎚
+ 0x2639c: "chuan4", // 𦎜
+ 0x2639d: "yi4", // 𦎝
+ 0x2639e: "shan1", // 𦎞
+ 0x263a2: "ji2", // 𦎢
+ 0x263a3: "yan1", // 𦎣
+ 0x263a6: "wu4", // 𦎦
+ 0x263a7: "chun2", // 𦎧
+ 0x263a8: "mang2", // 𦎨
+ 0x263ad: "fu2", // 𦎭
+ 0x263ae: "jia1", // 𦎮
+ 0x263af: "gou4", // 𦎯
+ 0x263b0: "gu2", // 𦎰
+ 0x263b1: "jia2", // 𦎱
+ 0x263b5: "xian2", // 𦎵
+ 0x263b7: "jin4", // 𦎷
+ 0x263b8: "zi4", // 𦎸
+ 0x263b9: "lou2", // 𦎹
+ 0x263bc: "gou4", // 𦎼
+ 0x263c0: "ren2", // 𦏀
+ 0x263c2: "shan1", // 𦏂
+ 0x263c5: "jue2", // 𦏅
+ 0x263c6: "tong2", // 𦏆
+ 0x263c7: "you3", // 𦏇
+ 0x263d4: "jian1", // 𦏔
+ 0x263d5: "du2", // 𦏕
+ 0x263d7: "hu2", // 𦏗
+ 0x263db: "sao1", // 𦏛
+ 0x263dc: "yu4", // 𦏜
+ 0x263e2: "mai4", // 𦏢
+ 0x263e4: "zhi1", // 𦏤
+ 0x263e5: "yan1", // 𦏥
+ 0x263e6: "gao1", // 𦏦
+ 0x263e8: "huai4", // 𦏨
+ 0x263ee: "quan2", // 𦏮
+ 0x263f1: "yang3", // 𦏱
+ 0x263f3: "zui3", // 𦏳
+ 0x263f7: "xiao1", // 𦏷
+ 0x263f8: "yi4", // 𦏸
+ 0x263f9: "yan3", // 𦏹
+ 0x263fa: "hong2", // 𦏺
+ 0x263fb: "yu2", // 𦏻
+ 0x263ff: "chi4", // 𦏿
+ 0x26401: "chi2", // 𦐁
+ 0x26404: "hang2", // 𦐄
+ 0x26405: "se4", // 𦐅
+ 0x26406: "pa1", // 𦐆
+ 0x26407: "ta4", // 𦐇
+ 0x26408: "fen1", // 𦐈
+ 0x26409: "chi1", // 𦐉
+ 0x2640c: "hong2", // 𦐌
+ 0x2640d: "xue4", // 𦐍
+ 0x26416: "zhi3", // 𦐖
+ 0x2641b: "qu2", // 𦐛
+ 0x26420: "xi1", // 𦐠
+ 0x26421: "fu2", // 𦐡
+ 0x26423: "shu1", // 𦐣
+ 0x26424: "hai4", // 𦐤
+ 0x26426: "po4", // 𦐦
+ 0x26428: "ci3", // 𦐨
+ 0x26430: "chai4", // 𦐰
+ 0x26433: "hong1", // 𦐳
+ 0x26438: "pao3", // 𦐸
+ 0x26439: "shen1", // 𦐹
+ 0x2643a: "xiao1", // 𦐺
+ 0x2643d: "xuan1", // 𦐽
+ 0x2643e: "ci3", // 𦐾
+ 0x2643f: "ting2", // 𦐿
+ 0x26440: "po4", // 𦑀
+ 0x26447: "ta4", // 𦑇
+ 0x26448: "cha1", // 𦑈
+ 0x2644b: "zu2", // 𦑋
+ 0x2644c: "huo4", // 𦑌
+ 0x2644d: "xu4", // 𦑍
+ 0x2644e: "yan4", // 𦑎
+ 0x2644f: "chai4", // 𦑏
+ 0x26451: "tuo2", // 𦑑
+ 0x26458: "xian2", // 𦑘
+ 0x26459: "xuan1", // 𦑙
+ 0x2645a: "hou2", // 𦑚
+ 0x2645b: "huan3", // 𦑛
+ 0x2645c: "ge2", // 𦑜
+ 0x2645d: "chong3", // 𦑝
+ 0x2645e: "bi4", // 𦑞
+ 0x2645f: "hong1", // 𦑟
+ 0x26460: "hong1", // 𦑠
+ 0x26461: "chi2", // 𦑡
+ 0x26463: "cha2", // 𦑣
+ 0x2646f: "zha3", // 𦑯
+ 0x26471: "zhai2", // 𦑱
+ 0x26472: "ta4", // 𦑲
+ 0x26475: "po4", // 𦑵
+ 0x26476: "ta4", // 𦑶
+ 0x26478: "you2", // 𦑸
+ 0x26479: "fu2", // 𦑹
+ 0x2647a: "ci1", // 𦑺
+ 0x2647b: "da2", // 𦑻
+ 0x2647c: "ta3", // 𦑼
+ 0x2647e: "liu2", // 𦑾
+ 0x26481: "ci1", // 𦒁
+ 0x26483: "hong1", // 𦒃
+ 0x26485: "han4", // 𦒅
+ 0x26486: "la1", // 𦒆
+ 0x26488: "shi1", // 𦒈
+ 0x2648d: "tong2", // 𦒍
+ 0x2648e: "hui4", // 𦒎
+ 0x2648f: "he2", // 𦒏
+ 0x26490: "pie1", // 𦒐
+ 0x26491: "yu4", // 𦒑
+ 0x2649c: "xian1", // 𦒜
+ 0x2649d: "han3", // 𦒝
+ 0x2649f: "po4", // 𦒟
+ 0x264a6: "la4", // 𦒦
+ 0x264a7: "huo4", // 𦒧
+ 0x264b0: "tai4", // 𦒰
+ 0x264b4: "lao3", // 𦒴
+ 0x264b6: "shu4", // 𦒶
+ 0x264ba: "dao4", // 𦒺
+ 0x264bb: "dian3", // 𦒻
+ 0x264c8: "xiong4", // 𦓈
+ 0x264cb: "wang4", // 𦓋
+ 0x264cd: "che3", // 𦓍
+ 0x264ce: "nai4", // 𦓎
+ 0x264d0: "jue2", // 𦓐
+ 0x264d3: "er2", // 𦓓
+ 0x264d4: "er2", // 𦓔
+ 0x264d5: "nv2", // 𦓕
+ 0x264d6: "nv4", // 𦓖
+ 0x264dd: "zhuan3", // 𦓝
+ 0x264e2: "nuo4", // 𦓢
+ 0x264e4: "lie4", // 𦓤
+ 0x264e5: "lei3", // 𦓥
+ 0x264e7: "ba1", // 𦓧
+ 0x264ec: "cheng1", // 𦓬
+ 0x264ef: "gui1", // 𦓯
+ 0x264f0: "quan2", // 𦓰
+ 0x264f1: "ge4", // 𦓱
+ 0x264f3: "gong3", // 𦓳
+ 0x264f4: "shao4", // 𦓴
+ 0x264f9: "lai2", // 𦓹
+ 0x264fa: "zheng1", // 𦓺
+ 0x264fb: "yi4", // 𦓻
+ 0x264fc: "gun3", // 𦓼
+ 0x264fd: "wei1", // 𦓽
+ 0x264fe: "lun3", // 𦓾
+ 0x26502: "shi2", // 𦔂
+ 0x26503: "ying1", // 𦔃
+ 0x26504: "sheng3", // 𦔄
+ 0x26505: "tu2", // 𦔅
+ 0x26506: "bi4", // 𦔆
+ 0x26508: "ze2", // 𦔈
+ 0x26509: "zhong4", // 𦔉
+ 0x2650b: "rong3", // 𦔋
+ 0x2650c: "qi2", // 𦔌
+ 0x2650d: "fu4", // 𦔍
+ 0x2650e: "ce4", // 𦔎
+ 0x26513: "li2", // 𦔓
+ 0x26514: "man2", // 𦔔
+ 0x26516: "lian2", // 𦔖
+ 0x26517: "biao1", // 𦔗
+ 0x2651b: "chuang2", // 𦔛
+ 0x2651c: "yi4", // 𦔜
+ 0x26520: "pai4", // 𦔠
+ 0x26525: "yi4", // 𦔥
+ 0x26526: "kuai4", // 𦔦
+ 0x26529: "biao1", // 𦔩
+ 0x2652b: "chi4", // 𦔫
+ 0x2652c: "qu2", // 𦔬
+ 0x2652d: "mo4", // 𦔭
+ 0x2652e: "zhe2", // 𦔮
+ 0x2652f: "sha4", // 𦔯
+ 0x26530: "sha4", // 𦔰
+ 0x26537: "yao1", // 𦔷
+ 0x26538: "gong1", // 𦔸
+ 0x26539: "nai4", // 𦔹
+ 0x2653c: "xie4", // 𦔼
+ 0x2653f: "tian4", // 𦔿
+ 0x26546: "ye2", // 𦕆
+ 0x26549: "sha1", // 𦕉
+ 0x2654f: "sao4", // 𦕏
+ 0x26552: "dian1", // 𦕒
+ 0x26553: "xu4", // 𦕓
+ 0x26559: "qu2", // 𦕙
+ 0x26560: "hong1", // 𦕠
+ 0x26561: "sheng4", // 𦕡
+ 0x26562: "ting4", // 𦕢
+ 0x26570: "duo5", // 𦕰
+ 0x26575: "liao2", // 𦕵
+ 0x26577: "hong4", // 𦕷
+ 0x26578: "li3", // 𦕸
+ 0x2657a: "xiang3", // 𦕺
+ 0x2657d: "shen4", // 𦕽
+ 0x26580: "fu1", // 𦖀
+ 0x26588: "yan3", // 𦖈
+ 0x26589: "wang3", // 𦖉
+ 0x2658a: "qi1", // 𦖊
+ 0x2658b: "duo3", // 𦖋
+ 0x2658d: "hua4", // 𦖍
+ 0x2658e: "qian1", // 𦖎
+ 0x26590: "xie4", // 𦖐
+ 0x2659d: "ci4", // 𦖝
+ 0x2659e: "sheng1", // 𦖞
+ 0x265a2: "er4", // 𦖢
+ 0x265a4: "xing1", // 𦖤
+ 0x265a6: "tui4", // 𦖦
+ 0x265a7: "yan4", // 𦖧
+ 0x265a9: "lie4", // 𦖩
+ 0x265ac: "mi2", // 𦖬
+ 0x265b8: "zong4", // 𦖸
+ 0x265ba: "zi1", // 𦖺
+ 0x265bc: "hu2", // 𦖼
+ 0x265bd: "ying2", // 𦖽
+ 0x265be: "lian2", // 𦖾
+ 0x265bf: "da1", // 𦖿
+ 0x265c0: "tian2", // 𦗀
+ 0x265c1: "tian4", // 𦗁
+ 0x265cb: "rong2", // 𦗋
+ 0x265cd: "ai4", // 𦗍
+ 0x265d0: "ai4", // 𦗐
+ 0x265d1: "zhe2", // 𦗑
+ 0x265d2: "guo1", // 𦗒
+ 0x265d3: "lu4", // 𦗓
+ 0x265d4: "zhao1", // 𦗔
+ 0x265d5: "mi2", // 𦗕
+ 0x265d6: "liao2", // 𦗖
+ 0x265d7: "zhe2", // 𦗗
+ 0x265db: "qu3", // 𦗛
+ 0x265dc: "cong1", // 𦗜
+ 0x265df: "ting1", // 𦗟
+ 0x265e1: "tan2", // 𦗡
+ 0x265e2: "zhan3", // 𦗢
+ 0x265e3: "hu2", // 𦗣
+ 0x265e5: "pie1", // 𦗥
+ 0x265e7: "da1", // 𦗧
+ 0x265e8: "rong2", // 𦗨
+ 0x265ee: "nao3", // 𦗮
+ 0x265f3: "nang2", // 𦗳
+ 0x265f4: "dang1", // 𦗴
+ 0x265f5: "jiao3", // 𦗵
+ 0x265fb: "ju4", // 𦗻
+ 0x265fc: "er3", // 𦗼
+ 0x2660a: "li4", // 𦘊
+ 0x2660c: "guo1", // 𦘌
+ 0x2660d: "wai4", // 𦘍
+ 0x26612: "nie4", // 𦘒
+ 0x26614: "jin1", // 𦘔
+ 0x26629: "pi3", // 𦘩
+ 0x2662a: "chi4", // 𦘪
+ 0x26632: "pi3", // 𦘲
+ 0x26633: "yi4", // 𦘳
+ 0x26634: "du1", // 𦘴
+ 0x26635: "wa3", // 𦘵
+ 0x26636: "xun1", // 𦘶
+ 0x26638: "qi4", // 𦘸
+ 0x26639: "shan4", // 𦘹
+ 0x2663c: "xu1", // 𦘼
+ 0x2663f: "he1", // 𦘿
+ 0x26640: "pan4", // 𦙀
+ 0x26642: "pei1", // 𦙂
+ 0x26644: "xiong1", // 𦙄
+ 0x26646: "chi3", // 𦙆
+ 0x26647: "tan1", // 𦙇
+ 0x26648: "zui4", // 𦙈
+ 0x26649: "zuan3", // 𦙉
+ 0x2664a: "qi4", // 𦙊
+ 0x2664b: "du1", // 𦙋
+ 0x26659: "shui3", // 𦙙
+ 0x2665c: "na3", // 𦙜
+ 0x2665d: "xi1", // 𦙝
+ 0x26667: "chao3", // 𦙧
+ 0x26668: "yi4", // 𦙨
+ 0x2666b: "zheng1", // 𦙫
+ 0x2666e: "ju2", // 𦙮
+ 0x2666f: "dai4", // 𦙯
+ 0x26671: "san1", // 𦙱
+ 0x26674: "zhu4", // 𦙴
+ 0x26675: "wan4", // 𦙵
+ 0x26678: "san1", // 𦙸
+ 0x26679: "ban4", // 𦙹
+ 0x2667a: "jia4", // 𦙺
+ 0x2667b: "mai4", // 𦙻
+ 0x26688: "tuo4", // 𦚈
+ 0x2668a: "qi4", // 𦚊
+ 0x2668f: "zhuang1", // 𦚏
+ 0x26690: "tuo2", // 𦚐
+ 0x26693: "ping2", // 𦚓
+ 0x2669d: "peng1", // 𦚝
+ 0x2669e: "kuang1", // 𦚞
+ 0x2669f: "yi2", // 𦚟
+ 0x266a1: "xie4", // 𦚡
+ 0x266a2: "yue1", // 𦚢
+ 0x266a3: "hen2", // 𦚣
+ 0x266a5: "hou2", // 𦚥
+ 0x266a6: "zheng1", // 𦚦
+ 0x266a7: "chun3", // 𦚧
+ 0x266a8: "shi4", // 𦚨
+ 0x266a9: "wa3", // 𦚩
+ 0x266ab: "xie2", // 𦚫
+ 0x266b8: "geng4", // 𦚸
+ 0x266c5: "e4", // 𦛅
+ 0x266cf: "ku2", // 𦛏
+ 0x266d0: "na4", // 𦛐
+ 0x266d3: "ju1", // 𦛓
+ 0x266d4: "xuan4", // 𦛔
+ 0x266d5: "qu1", // 𦛕
+ 0x266d6: "che4", // 𦛖
+ 0x266d7: "lv3", // 𦛗
+ 0x266d8: "he2", // 𦛘
+ 0x266d9: "sheng4", // 𦛙
+ 0x266da: "nan4", // 𦛚
+ 0x266dc: "he2", // 𦛜
+ 0x266dd: "cha2", // 𦛝
+ 0x266de: "yan1", // 𦛞
+ 0x266df: "geng3", // 𦛟
+ 0x266e0: "nie4", // 𦛠
+ 0x266e2: "guo2", // 𦛢
+ 0x266e3: "yan2", // 𦛣
+ 0x266e4: "guan3", // 𦛤
+ 0x266e7: "zhi4", // 𦛧
+ 0x266e8: "lao5", // 𦛨
+ 0x266ef: "du3", // 𦛯
+ 0x266f0: "qi4", // 𦛰
+ 0x266f1: "qu1", // 𦛱
+ 0x266f2: "jue2", // 𦛲
+ 0x26701: "feng1", // 𦜁
+ 0x26703: "xu4", // 𦜃
+ 0x26704: "tui4", // 𦜄
+ 0x26706: "han2", // 𦜆
+ 0x26707: "ku1", // 𦜇
+ 0x2670a: "shen1", // 𦜊
+ 0x2670b: "zhi4", // 𦜋
+ 0x2670d: "pang4", // 𦜍
+ 0x2670e: "zheng1", // 𦜎
+ 0x2670f: "li4", // 𦜏
+ 0x26710: "wan3", // 𦜐
+ 0x26712: "fan3", // 𦜒
+ 0x26713: "xin4", // 𦜓
+ 0x26716: "ya4", // 𦜖
+ 0x2671b: "ju1", // 𦜛
+ 0x2671c: "shen4", // 𦜜
+ 0x2672d: "mang3", // 𦜭
+ 0x2672f: "tun3", // 𦜯
+ 0x26730: "zhuo2", // 𦜰
+ 0x26731: "xi1", // 𦜱
+ 0x26732: "yin4", // 𦜲
+ 0x26733: "jing1", // 𦜳
+ 0x26734: "tun2", // 𦜴
+ 0x26737: "geng4", // 𦜷
+ 0x26738: "ji4", // 𦜸
+ 0x2674f: "zhuan3", // 𦝏
+ 0x26752: "tie1", // 𦝒
+ 0x26754: "zhi1", // 𦝔
+ 0x26756: "ji2", // 𦝖
+ 0x2675a: "ying2", // 𦝚
+ 0x2675b: "wei4", // 𦝛
+ 0x2675d: "huan4", // 𦝝
+ 0x2675e: "ting2", // 𦝞
+ 0x2675f: "chan2", // 𦝟
+ 0x26762: "kui2", // 𦝢
+ 0x26763: "qia4", // 𦝣
+ 0x26764: "ban4", // 𦝤
+ 0x26765: "cha1", // 𦝥
+ 0x26766: "tuo3", // 𦝦
+ 0x26767: "nan3", // 𦝧
+ 0x26768: "jie1", // 𦝨
+ 0x2676a: "yan1", // 𦝪
+ 0x2676c: "tu2", // 𦝬
+ 0x2676e: "wen3", // 𦝮
+ 0x26770: "cong1", // 𦝰
+ 0x26773: "xu4", // 𦝳
+ 0x26774: "yin4", // 𦝴
+ 0x26777: "beng4", // 𦝷
+ 0x2677c: "lv2", // 𦝼
+ 0x26781: "zai1", // 𦞁
+ 0x26782: "da1", // 𦞂
+ 0x26786: "nie4", // 𦞆
+ 0x26787: "ju3", // 𦞇
+ 0x26788: "hou2", // 𦞈
+ 0x2678c: "geng4", // 𦞌
+ 0x26795: "hou2", // 𦞕
+ 0x26796: "kan1", // 𦞖
+ 0x26797: "gong1", // 𦞗
+ 0x26799: "hui3", // 𦞙
+ 0x2679a: "xie4", // 𦞚
+ 0x2679d: "xi4", // 𦞝
+ 0x2679e: "han2", // 𦞞
+ 0x2679f: "mi2", // 𦞟
+ 0x267a1: "weng3", // 𦞡
+ 0x267a2: "hun4", // 𦞢
+ 0x267a3: "sao1", // 𦞣
+ 0x267a4: "xin4", // 𦞤
+ 0x267a5: "zhe2", // 𦞥
+ 0x267a6: "huo4", // 𦞦
+ 0x267a8: "gong1", // 𦞨
+ 0x267ab: "sai4", // 𦞫
+ 0x267ac: "jin1", // 𦞬
+ 0x267ad: "wa1", // 𦞭
+ 0x267b1: "dui3", // 𦞱
+ 0x267b2: "chi1", // 𦞲
+ 0x267bd: "xi1", // 𦞽
+ 0x267c2: "mi2", // 𦟂
+ 0x267c3: "zang1", // 𦟃
+ 0x267c4: "sang3", // 𦟄
+ 0x267d3: "tun2", // 𦟓
+ 0x267d4: "zhi4", // 𦟔
+ 0x267d5: "wen3", // 𦟕
+ 0x267d8: "yin2", // 𦟘
+ 0x267d9: "tun3", // 𦟙
+ 0x267db: "chong1", // 𦟛
+ 0x267dc: "ze2", // 𦟜
+ 0x267de: "xiao1", // 𦟞
+ 0x267df: "mo2", // 𦟟
+ 0x267e0: "cu4", // 𦟠
+ 0x267e3: "bian3", // 𦟣
+ 0x267e4: "xiu1", // 𦟤
+ 0x267e7: "yi2", // 𦟧
+ 0x267ee: "huang3", // 𦟮
+ 0x267f0: "zha1", // 𦟰
+ 0x267f1: "suo1", // 𦟱
+ 0x267f2: "hun2", // 𦟲
+ 0x267f3: "ju4", // 𦟳
+ 0x26801: "cu4", // 𦠁
+ 0x26804: "ji1", // 𦠄
+ 0x26805: "xun2", // 𦠅
+ 0x26806: "sun3", // 𦠆
+ 0x26807: "ceng2", // 𦠇
+ 0x26809: "yi4", // 𦠉
+ 0x2680e: "biao1", // 𦠎
+ 0x26812: "jue2", // 𦠒
+ 0x26813: "li4", // 𦠓
+ 0x26816: "pao4", // 𦠖
+ 0x2681b: "za1", // 𦠛
+ 0x2681c: "ye4", // 𦠜
+ 0x2681e: "bi4", // 𦠞
+ 0x2681f: "zhe4", // 𦠟
+ 0x26820: "zhe4", // 𦠠
+ 0x26822: "jiu4", // 𦠢
+ 0x26823: "zhe2", // 𦠣
+ 0x26826: "shu4", // 𦠦
+ 0x2682a: "xi1", // 𦠪
+ 0x26837: "xu3", // 𦠷
+ 0x26838: "nai3", // 𦠸
+ 0x26839: "xian2", // 𦠹
+ 0x2683a: "gun3", // 𦠺
+ 0x2683b: "wei4", // 𦠻
+ 0x2683e: "ji2", // 𦠾
+ 0x2683f: "sa4", // 𦠿
+ 0x26842: "dong3", // 𦡂
+ 0x26843: "nuo2", // 𦡃
+ 0x26844: "du4", // 𦡄
+ 0x26845: "zheng1", // 𦡅
+ 0x26846: "ku1", // 𦡆
+ 0x26849: "ming2", // 𦡉
+ 0x26855: "bao2", // 𦡕
+ 0x26856: "hui4", // 𦡖
+ 0x26859: "zong1", // 𦡙
+ 0x26868: "san4", // 𦡨
+ 0x2686a: "teng1", // 𦡪
+ 0x2686b: "yi2", // 𦡫
+ 0x2686d: "yu4", // 𦡭
+ 0x26871: "yao4", // 𦡱
+ 0x26872: "ning3", // 𦡲
+ 0x26874: "chou2", // 𦡴
+ 0x26875: "hun4", // 𦡵
+ 0x26877: "dui4", // 𦡷
+ 0x26879: "qi4", // 𦡹
+ 0x2687a: "ying3", // 𦡺
+ 0x2687b: "bing4", // 𦡻
+ 0x2687c: "ning2", // 𦡼
+ 0x2687d: "huang2", // 𦡽
+ 0x26886: "ying3", // 𦢆
+ 0x2688a: "bao2", // 𦢊
+ 0x2688e: "guang4", // 𦢎
+ 0x2688f: "lei3", // 𦢏
+ 0x26890: "zun3", // 𦢐
+ 0x26899: "chan3", // 𦢙
+ 0x268a3: "jian3", // 𦢣
+ 0x268a7: "meng2", // 𦢧
+ 0x268a9: "xiao4", // 𦢩
+ 0x268af: "xin4", // 𦢯
+ 0x268b1: "li2", // 𦢱
+ 0x268ba: "qiao3", // 𦢺
+ 0x268bf: "wei3", // 𦢿
+ 0x268c0: "na4", // 𦣀
+ 0x268c2: "pang1", // 𦣂
+ 0x268c4: "lei2", // 𦣄
+ 0x268c7: "luo2", // 𦣇
+ 0x268cb: "luan2", // 𦣋
+ 0x268cd: "geng1", // 𦣍
+ 0x268cf: "luan2", // 𦣏
+ 0x268d2: "qu2", // 𦣒
+ 0x268d6: "luo2", // 𦣖
+ 0x268d8: "nang2", // 𦣘
+ 0x268db: "luo2", // 𦣛
+ 0x268dc: "yue4", // 𦣜
+ 0x268e2: "shui4", // 𦣢
+ 0x268e5: "mi4", // 𦣥
+ 0x268e6: "wang2", // 𦣦
+ 0x268e7: "ce4", // 𦣧
+ 0x268e8: "jian1", // 𦣨
+ 0x268e9: "wang3", // 𦣩
+ 0x268ef: "jia1", // 𦣯
+ 0x268f4: "huan2", // 𦣴
+ 0x268f8: "lian4", // 𦣸
+ 0x268f9: "zi4", // 𦣹
+ 0x268fa: "bai2", // 𦣺
+ 0x268fb: "shou3", // 𦣻
+ 0x268fe: "wan3", // 𦣾
+ 0x26902: "shu1", // 𦤂
+ 0x26907: "gui1", // 𦤇
+ 0x26908: "xi1", // 𦤈
+ 0x2690a: "ru2", // 𦤊
+ 0x2690b: "yao4", // 𦤋
+ 0x2690e: "gao1", // 𦤎
+ 0x26915: "yue4", // 𦤕
+ 0x26918: "yong1", // 𦤘
+ 0x26919: "wa4", // 𦤙
+ 0x2691a: "bo2", // 𦤚
+ 0x2691f: "xin4", // 𦤟
+ 0x26922: "pi4", // 𦤢
+ 0x26923: "bo2", // 𦤣
+ 0x26926: "hai4", // 𦤦
+ 0x26927: "zhai4", // 𦤧
+ 0x26928: "wo4", // 𦤨
+ 0x2692a: "ye4", // 𦤪
+ 0x2692b: "bi4", // 𦤫
+ 0x2692c: "hai4", // 𦤬
+ 0x26938: "chi4", // 𦤸
+ 0x2693b: "zhi4", // 𦤻
+ 0x2693d: "ni2", // 𦤽
+ 0x26941: "wu2", // 𦥁
+ 0x26942: "ai3", // 𦥂
+ 0x26948: "ai3", // 𦥈
+ 0x26949: "yu3", // 𦥉
+ 0x2694a: "chi4", // 𦥊
+ 0x2694d: "jing4", // 𦥍
+ 0x2694e: "zhi4", // 𦥎
+ 0x2694f: "zhi4", // 𦥏
+ 0x26950: "zhi4", // 𦥐
+ 0x26951: "ju2", // 𦥑
+ 0x26956: "han2", // 𦥖
+ 0x2695a: "ping1", // 𦥚
+ 0x2695d: "yao3", // 𦥝
+ 0x26963: "you2", // 𦥣
+ 0x26964: "ping1", // 𦥤
+ 0x26966: "mo4", // 𦥦
+ 0x2696c: "zuo4", // 𦥬
+ 0x2696d: "po4", // 𦥭
+ 0x2696f: "xue2", // 𦥯
+ 0x26970: "kuang2", // 𦥰
+ 0x26971: "yi4", // 𦥱
+ 0x26972: "po4", // 𦥲
+ 0x2697b: "zhui4", // 𦥻
+ 0x26983: "ni2", // 𦦃
+ 0x26984: "qiu3", // 𦦄
+ 0x26985: "cou4", // 𦦅
+ 0x2698c: "yao3", // 𦦌
+ 0x26991: "fen2", // 𦦑
+ 0x26995: "xia2", // 𦦕
+ 0x26997: "jiang1", // 𦦗
+ 0x26998: "cha1", // 𦦘
+ 0x2699b: "xiao4", // 𦦛
+ 0x2699c: "cha1", // 𦦜
+ 0x269a2: "cheng2", // 𦦢
+ 0x269a3: "cui4", // 𦦣
+ 0x269a7: "qiong2", // 𦦧
+ 0x269a9: "yu4", // 𦦩
+ 0x269ab: "yu2", // 𦦫
+ 0x269af: "wen4", // 𦦯
+ 0x269b1: "cha1", // 𦦱
+ 0x269b2: "yu3", // 𦦲
+ 0x269b9: "zuo2", // 𦦹
+ 0x269ba: "dao3", // 𦦺
+ 0x269bd: "juan4", // 𦦽
+ 0x269be: "dao3", // 𦦾
+ 0x269bf: "ying1", // 𦦿
+ 0x269c1: "feng3", // 𦧁
+ 0x269c5: "weng4", // 𦧅
+ 0x269c8: "jin4", // 𦧈
+ 0x269c9: "qi4", // 𦧉
+ 0x269cb: "qin4", // 𦧋
+ 0x269cd: "kuo4", // 𦧍
+ 0x269cf: "tan1", // 𦧏
+ 0x269d0: "xian1", // 𦧐
+ 0x269d2: "tian1", // 𦧒
+ 0x269d4: "kuo4", // 𦧔
+ 0x269d6: "tian4", // 𦧖
+ 0x269d8: "hu2", // 𦧘
+ 0x269d9: "zhu1", // 𦧙
+ 0x269da: "zhan1", // 𦧚
+ 0x269db: "ta4", // 𦧛
+ 0x269dd: "tian1", // 𦧝
+ 0x269de: "ta4", // 𦧞
+ 0x269df: "ta4", // 𦧟
+ 0x269e0: "hua2", // 𦧠
+ 0x269e1: "yan3", // 𦧡
+ 0x269e2: "tie4", // 𦧢
+ 0x269e4: "tie4", // 𦧤
+ 0x269e5: "ta4", // 𦧥
+ 0x269ec: "huai4", // 𦧬
+ 0x269ee: "jia2", // 𦧮
+ 0x269ef: "qi4", // 𦧯
+ 0x269f1: "ta4", // 𦧱
+ 0x269f4: "tan1", // 𦧴
+ 0x269f5: "hua4", // 𦧵
+ 0x269f8: "zhuan4", // 𦧸
+ 0x269f9: "hua1", // 𦧹
+ 0x269fc: "lan2", // 𦧼
+ 0x26a06: "zun1", // 𦨆
+ 0x26a07: "yi4", // 𦨇
+ 0x26a08: "fu2", // 𦨈
+ 0x26a09: "wu4", // 𦨉
+ 0x26a0b: "fu2", // 𦨋
+ 0x26a0d: "ding1", // 𦨍
+ 0x26a0e: "ta4", // 𦨎
+ 0x26a16: "chao4", // 𦨖
+ 0x26a19: "ri4", // 𦨙
+ 0x26a1a: "quan3", // 𦨚
+ 0x26a1c: "ge1", // 𦨜
+ 0x26a21: "fu2", // 𦨡
+ 0x26a22: "di4", // 𦨢
+ 0x26a23: "diao1", // 𦨣
+ 0x26a24: "yong3", // 𦨤
+ 0x26a26: "jia4", // 𦨦
+ 0x26a29: "long2", // 𦨩
+ 0x26a2c: "yong3", // 𦨬
+ 0x26a2d: "pi2", // 𦨭
+ 0x26a2f: "huo2", // 𦨯
+ 0x26a30: "qiong2", // 𦨰
+ 0x26a32: "fan2", // 𦨲
+ 0x26a33: "wu2", // 𦨳
+ 0x26a34: "tong2", // 𦨴
+ 0x26a35: "hang2", // 𦨵
+ 0x26a38: "tan1", // 𦨸
+ 0x26a3e: "heng1", // 𦨾
+ 0x26a44: "tiao1", // 𦩄
+ 0x26a48: "zhou1", // 𦩈
+ 0x26a4b: "bai4", // 𦩋
+ 0x26a4c: "xie4", // 𦩌
+ 0x26a4d: "dao1", // 𦩍
+ 0x26a4f: "jin1", // 𦩏
+ 0x26a55: "hu1", // 𦩕
+ 0x26a56: "bei1", // 𦩖
+ 0x26a58: "ding4", // 𦩘
+ 0x26a5c: "nuo2", // 𦩜
+ 0x26a5d: "wei4", // 𦩝
+ 0x26a5e: "yu2", // 𦩞
+ 0x26a60: "xing1", // 𦩠
+ 0x26a61: "fu2", // 𦩡
+ 0x26a62: "xian4", // 𦩢
+ 0x26a63: "qi4", // 𦩣
+ 0x26a64: "tu1", // 𦩤
+ 0x26a67: "ji2", // 𦩧
+ 0x26a69: "ying4", // 𦩩
+ 0x26a6b: "deng4", // 𦩫
+ 0x26a6c: "wei1", // 𦩬
+ 0x26a6d: "xi1", // 𦩭
+ 0x26a6f: "pai2", // 𦩯
+ 0x26a71: "sheng2", // 𦩱
+ 0x26a72: "you3", // 𦩲
+ 0x26a74: "ai2", // 𦩴
+ 0x26a75: "jian4", // 𦩵
+ 0x26a77: "gou1", // 𦩷
+ 0x26a78: "ruo4", // 𦩸
+ 0x26a7c: "gong4", // 𦩼
+ 0x26a7f: "sha4", // 𦩿
+ 0x26a80: "tang2", // 𦪀
+ 0x26a87: "lu4", // 𦪇
+ 0x26a88: "ao2", // 𦪈
+ 0x26a8a: "qi4", // 𦪊
+ 0x26a8b: "xiu1", // 𦪋
+ 0x26a8d: "dai1", // 𦪍
+ 0x26a91: "fa2", // 𦪑
+ 0x26a92: "wei4", // 𦪒
+ 0x26a94: "dun4", // 𦪔
+ 0x26a95: "liao2", // 𦪕
+ 0x26a96: "fan1", // 𦪖
+ 0x26a97: "huang2", // 𦪗
+ 0x26a98: "jue2", // 𦪘
+ 0x26a99: "ta4", // 𦪙
+ 0x26a9a: "zun4", // 𦪚
+ 0x26a9b: "rao2", // 𦪛
+ 0x26a9c: "can1", // 𦪜
+ 0x26a9d: "teng2", // 𦪝
+ 0x26aa0: "hua4", // 𦪠
+ 0x26aa1: "xu1", // 𦪡
+ 0x26aa3: "zhan1", // 𦪣
+ 0x26aa7: "gan3", // 𦪧
+ 0x26aaa: "peng2", // 𦪪
+ 0x26aab: "can1", // 𦪫
+ 0x26aac: "xie1", // 𦪬
+ 0x26aad: "da2", // 𦪭
+ 0x26ab1: "ji4", // 𦪱
+ 0x26ab6: "li3", // 𦪶
+ 0x26ab9: "pan2", // 𦪹
+ 0x26abd: "long2", // 𦪽
+ 0x26abe: "li4", // 𦪾
+ 0x26abf: "xi2", // 𦪿
+ 0x26ac0: "teng2", // 𦫀
+ 0x26ac3: "ling2", // 𦫃
+ 0x26ac8: "li3", // 𦫈
+ 0x26ac9: "ran2", // 𦫉
+ 0x26aca: "ling2", // 𦫊
+ 0x26ace: "gun3", // 𦫎
+ 0x26ad4: "po1", // 𦫔
+ 0x26ad5: "mo4", // 𦫕
+ 0x26ad6: "pai1", // 𦫖
+ 0x26ad9: "ba4", // 𦫙
+ 0x26ae1: "qi2", // 𦫡
+ 0x26ae4: "yan2", // 𦫤
+ 0x26aea: "wa4", // 𦫪
+ 0x26aeb: "ang3", // 𦫫
+ 0x26aed: "ming4", // 𦫭
+ 0x26aee: "min3", // 𦫮
+ 0x26aef: "xun4", // 𦫯
+ 0x26af0: "meng2", // 𦫰
+ 0x26af3: "guai3", // 𦫳
+ 0x26af6: "jiao1", // 𦫶
+ 0x26afb: "gai3", // 𦫻
+ 0x26b01: "cai2", // 𦬁
+ 0x26b02: "wu4", // 𦬂
+ 0x26b03: "zhe2", // 𦬃
+ 0x26b04: "ren3", // 𦬄
+ 0x26b05: "kou1", // 𦬅
+ 0x26b14: "zhao3", // 𦬔
+ 0x26b15: "zhong1", // 𦬕
+ 0x26b16: "qiu2", // 𦬖
+ 0x26b17: "guo1", // 𦬗
+ 0x26b18: "gong1", // 𦬘
+ 0x26b19: "pu1", // 𦬙
+ 0x26b1a: "hu4", // 𦬚
+ 0x26b1b: "mian3", // 𦬛
+ 0x26b1e: "tian1", // 𦬞
+ 0x26b23: "wang3", // 𦬣
+ 0x26b38: "zhu2", // 𦬸
+ 0x26b39: "da2", // 𦬹
+ 0x26b3a: "xiong4", // 𦬺
+ 0x26b3b: "na2", // 𦬻
+ 0x26b3e: "juan1", // 𦬾
+ 0x26b41: "nian3", // 𦭁
+ 0x26b48: "hu4", // 𦭈
+ 0x26b49: "sha1", // 𦭉
+ 0x26b5c: "zhi1", // 𦭜
+ 0x26b5f: "ta1", // 𦭟
+ 0x26b61: "si1", // 𦭡
+ 0x26b65: "yi4", // 𦭥
+ 0x26b6d: "qiong2", // 𦭭
+ 0x26b6e: "zhi4", // 𦭮
+ 0x26b6f: "lv3", // 𦭯
+ 0x26b70: "ru2", // 𦭰
+ 0x26b72: "qi2", // 𦭲
+ 0x26b73: "yu3", // 𦭳
+ 0x26b74: "zhou1", // 𦭴
+ 0x26b75: "yang2", // 𦭵
+ 0x26b76: "xian3", // 𦭶
+ 0x26b77: "mou2", // 𦭷
+ 0x26b78: "chou2", // 𦭸
+ 0x26b79: "hui1", // 𦭹
+ 0x26b7a: "jiu1", // 𦭺
+ 0x26b7b: "jiu4", // 𦭻
+ 0x26b7c: "piao3", // 𦭼
+ 0x26b81: "jiao4", // 𦮁
+ 0x26b83: "guai1", // 𦮃
+ 0x26b85: "mo4", // 𦮅
+ 0x26b90: "xi1", // 𦮐
+ 0x26b91: "pu2", // 𦮑
+ 0x26baf: "ji4", // 𦮯
+ 0x26bb6: "wen3", // 𦮶
+ 0x26bb7: "bei4", // 𦮷
+ 0x26bb8: "yi3", // 𦮸
+ 0x26bb9: "fu2", // 𦮹
+ 0x26bba: "si1", // 𦮺
+ 0x26bbb: "juan1", // 𦮻
+ 0x26bbc: "ji4", // 𦮼
+ 0x26bbe: "ni4", // 𦮾
+ 0x26bc0: "ben4", // 𦯀
+ 0x26bc5: "xu4", // 𦯅
+ 0x26bc8: "qin3", // 𦯈
+ 0x26bc9: "bo2", // 𦯉
+ 0x26bcc: "wang2", // 𦯌
+ 0x26bcd: "zhe4", // 𦯍
+ 0x26bcf: "wo4", // 𦯏
+ 0x26bd0: "shao2", // 𦯐
+ 0x26bd1: "zao4", // 𦯑
+ 0x26bd2: "yang3", // 𦯒
+ 0x26bd5: "song4", // 𦯕
+ 0x26bd6: "nie4", // 𦯖
+ 0x26bdb: "bi4", // 𦯛
+ 0x26be3: "cu2", // 𦯣
+ 0x26be4: "qiang1", // 𦯤
+ 0x26bea: "xiao4", // 𦯪
+ 0x26beb: "zhi1", // 𦯫
+ 0x26bec: "she2", // 𦯬
+ 0x26bef: "zhi4", // 𦯯
+ 0x26bf0: "peng1", // 𦯰
+ 0x26c0f: "diao4", // 𦰏
+ 0x26c16: "wo4", // 𦰖
+ 0x26c18: "zhi3", // 𦰘
+ 0x26c19: "bi4", // 𦰙
+ 0x26c1b: "fen2", // 𦰛
+ 0x26c25: "bang1", // 𦰥
+ 0x26c2a: "qiu2", // 𦰪
+ 0x26c2b: "ni3", // 𦰫
+ 0x26c2c: "bo2", // 𦰬
+ 0x26c2d: "dun4", // 𦰭
+ 0x26c2f: "shi3", // 𦰯
+ 0x26c30: "xu1", // 𦰰
+ 0x26c31: "chang2", // 𦰱
+ 0x26c32: "xu1", // 𦰲
+ 0x26c33: "ye2", // 𦰳
+ 0x26c34: "mi2", // 𦰴
+ 0x26c38: "xin1", // 𦰸
+ 0x26c39: "zhuo2", // 𦰹
+ 0x26c3a: "fu4", // 𦰺
+ 0x26c3d: "pi3", // 𦰽
+ 0x26c3e: "xue4", // 𦰾
+ 0x26c40: "yu4", // 𦱀
+ 0x26c41: "xian2", // 𦱁
+ 0x26c42: "yu4", // 𦱂
+ 0x26c43: "yu2", // 𦱃
+ 0x26c45: "ju1", // 𦱅
+ 0x26c46: "ta1", // 𦱆
+ 0x26c47: "kong1", // 𦱇
+ 0x26c4a: "zheng1", // 𦱊
+ 0x26c4b: "meng2", // 𦱋
+ 0x26c4c: "gang1", // 𦱌
+ 0x26c52: "mu4", // 𦱒
+ 0x26c53: "xi3", // 𦱓
+ 0x26c54: "bi4", // 𦱔
+ 0x26c56: "fu4", // 𦱖
+ 0x26c5c: "xiao4", // 𦱜
+ 0x26c60: "jiu1", // 𦱠
+ 0x26c63: "gou3", // 𦱣
+ 0x26c70: "chi2", // 𦱰
+ 0x26c71: "jiu1", // 𦱱
+ 0x26c72: "jiu1", // 𦱲
+ 0x26c75: "sha1", // 𦱵
+ 0x26c77: "fei1", // 𦱷
+ 0x26cab: "fu2", // 𦲫
+ 0x26caf: "wan4", // 𦲯
+ 0x26cb0: "xu1", // 𦲰
+ 0x26cb1: "bo1", // 𦲱
+ 0x26cc1: "hao4", // 𦳁
+ 0x26cc3: "xie2", // 𦳃
+ 0x26cc4: "pian2", // 𦳄
+ 0x26cc5: "yu3", // 𦳅
+ 0x26cc7: "tian2", // 𦳇
+ 0x26cc8: "pi2", // 𦳈
+ 0x26cca: "shi3", // 𦳊
+ 0x26ccb: "kuai3", // 𦳋
+ 0x26ccc: "ji1", // 𦳌
+ 0x26ccf: "zha1", // 𦳏
+ 0x26cd0: "nai4", // 𦳐
+ 0x26cd1: "mou3", // 𦳑
+ 0x26cd3: "fu2", // 𦳓
+ 0x26cd4: "du4", // 𦳔
+ 0x26cd7: "sheng3", // 𦳗
+ 0x26cd8: "cha2", // 𦳘
+ 0x26cda: "chi2", // 𦳚
+ 0x26cdb: "gui3", // 𦳛
+ 0x26cdc: "min2", // 𦳜
+ 0x26cdd: "tang1", // 𦳝
+ 0x26cde: "bai4", // 𦳞
+ 0x26cdf: "qiang1", // 𦳟
+ 0x26ce1: "zhuo2", // 𦳡
+ 0x26ce2: "wei4", // 𦳢
+ 0x26ce3: "xun2", // 𦳣
+ 0x26ce5: "miao3", // 𦳥
+ 0x26ce6: "zai1", // 𦳦
+ 0x26ce7: "you2", // 𦳧
+ 0x26ce9: "you4", // 𦳩
+ 0x26ceb: "shan1", // 𦳫
+ 0x26cec: "he2", // 𦳬
+ 0x26ced: "lv3", // 𦳭
+ 0x26cee: "zhi2", // 𦳮
+ 0x26cf2: "jing4", // 𦳲
+ 0x26cf3: "zhen1", // 𦳳
+ 0x26cf6: "meng2", // 𦳶
+ 0x26cf7: "you2", // 𦳷
+ 0x26cf9: "wo4", // 𦳹
+ 0x26cfa: "ba2", // 𦳺
+ 0x26cfd: "juan4", // 𦳽
+ 0x26cfe: "ru2", // 𦳾
+ 0x26cff: "cou4", // 𦳿
+ 0x26d00: "zhi1", // 𦴀
+ 0x26d09: "hu2", // 𦴉
+ 0x26d0a: "yang1", // 𦴊
+ 0x26d0c: "jun4", // 𦴌
+ 0x26d0d: "she2", // 𦴍
+ 0x26d0e: "kou4", // 𦴎
+ 0x26d11: "qian2", // 𦴑
+ 0x26d14: "meng2", // 𦴔
+ 0x26d1a: "tiao2", // 𦴚
+ 0x26d50: "nie4", // 𦵐
+ 0x26d5f: "chi2", // 𦵟
+ 0x26d61: "xiong1", // 𦵡
+ 0x26d63: "hun4", // 𦵣
+ 0x26d66: "di2", // 𦵦
+ 0x26d67: "lang2", // 𦵧
+ 0x26d69: "zao1", // 𦵩
+ 0x26d6a: "ce4", // 𦵪
+ 0x26d6b: "suo3", // 𦵫
+ 0x26d6c: "zu4", // 𦵬
+ 0x26d6d: "sui1", // 𦵭
+ 0x26d6f: "xia2", // 𦵯
+ 0x26d71: "xie4", // 𦵱
+ 0x26d74: "jie2", // 𦵴
+ 0x26d75: "you2", // 𦵵
+ 0x26d77: "gou4", // 𦵷
+ 0x26d78: "geng3", // 𦵸
+ 0x26d7c: "jun4", // 𦵼
+ 0x26d7d: "huang3", // 𦵽
+ 0x26d7e: "ji2", // 𦵾
+ 0x26d7f: "pou1", // 𦵿
+ 0x26d80: "wu1", // 𦶀
+ 0x26d82: "yi4", // 𦶂
+ 0x26d85: "nai3", // 𦶅
+ 0x26d87: "rong3", // 𦶇
+ 0x26d88: "nan2", // 𦶈
+ 0x26d8a: "ping2", // 𦶊
+ 0x26d8b: "shan4", // 𦶋
+ 0x26d8c: "diao1", // 𦶌
+ 0x26d8d: "ji2", // 𦶍
+ 0x26d8e: "hua1", // 𦶎
+ 0x26d8f: "dui4", // 𦶏
+ 0x26d90: "kong3", // 𦶐
+ 0x26d91: "ta4", // 𦶑
+ 0x26d93: "hong4", // 𦶓
+ 0x26d95: "shu1", // 𦶕
+ 0x26d99: "heng2", // 𦶙
+ 0x26d9a: "fen3", // 𦶚
+ 0x26db2: "kou4", // 𦶲
+ 0x26dd9: "nian2", // 𦷙
+ 0x26ddd: "chu2", // 𦷝
+ 0x26de6: "qiang4", // 𦷦
+ 0x26df2: "xi4", // 𦷲
+ 0x26df3: "hu2", // 𦷳
+ 0x26df4: "song4", // 𦷴
+ 0x26df5: "wo4", // 𦷵
+ 0x26df7: "hai4", // 𦷷
+ 0x26df8: "ru2", // 𦷸
+ 0x26df9: "meng2", // 𦷹
+ 0x26dfb: "san3", // 𦷻
+ 0x26dfd: "wu2", // 𦷽
+ 0x26dff: "you2", // 𦷿
+ 0x26e01: "tan1", // 𦸁
+ 0x26e02: "shen1", // 𦸂
+ 0x26e06: "qi3", // 𦸆
+ 0x26e08: "guo2", // 𦸈
+ 0x26e09: "qia4", // 𦸉
+ 0x26e0a: "xian1", // 𦸊
+ 0x26e0f: "sui1", // 𦸏
+ 0x26e10: "lu4", // 𦸐
+ 0x26e13: "qi1", // 𦸓
+ 0x26e14: "diao1", // 𦸔
+ 0x26e17: "qi2", // 𦸗
+ 0x26e18: "jia2", // 𦸘
+ 0x26e19: "you2", // 𦸙
+ 0x26e1a: "xi2", // 𦸚
+ 0x26e1b: "chao2", // 𦸛
+ 0x26e21: "mi4", // 𦸡
+ 0x26e22: "lou4", // 𦸢
+ 0x26e23: "bi3", // 𦸣
+ 0x26e2a: "pei2", // 𦸪
+ 0x26e2e: "zhen1", // 𦸮
+ 0x26e2f: "shen1", // 𦸯
+ 0x26e30: "chan3", // 𦸰
+ 0x26e31: "fu4", // 𦸱
+ 0x26e36: "qu1", // 𦸶
+ 0x26e37: "si1", // 𦸷
+ 0x26e3a: "zui1", // 𦸺
+ 0x26e6b: "zhao4", // 𦹫
+ 0x26e7d: "pi2", // 𦹽
+ 0x26e80: "cou4", // 𦺀
+ 0x26e86: "gao1", // 𦺆
+ 0x26e87: "du2", // 𦺇
+ 0x26e89: "fu1", // 𦺉
+ 0x26e8a: "guan1", // 𦺊
+ 0x26e8b: "sao3", // 𦺋
+ 0x26e8c: "sou3", // 𦺌
+ 0x26e8d: "jian3", // 𦺍
+ 0x26e8e: "pou2", // 𦺎
+ 0x26e90: "can2", // 𦺐
+ 0x26e91: "beng4", // 𦺑
+ 0x26e92: "mou4", // 𦺒
+ 0x26e93: "zhao1", // 𦺓
+ 0x26e94: "xiao2", // 𦺔
+ 0x26e96: "ju2", // 𦺖
+ 0x26e97: "shu1", // 𦺗
+ 0x26e98: "jian3", // 𦺘
+ 0x26e99: "li2", // 𦺙
+ 0x26e9b: "chuan4", // 𦺛
+ 0x26e9c: "lao4", // 𦺜
+ 0x26e9e: "he4", // 𦺞
+ 0x26e9f: "hu2", // 𦺟
+ 0x26ea0: "gu1", // 𦺠
+ 0x26ea1: "zhang3", // 𦺡
+ 0x26ea2: "jie2", // 𦺢
+ 0x26ea3: "xiang4", // 𦺣
+ 0x26ea5: "du1", // 𦺥
+ 0x26ea6: "han2", // 𦺦
+ 0x26ea7: "jia2", // 𦺧
+ 0x26ea8: "xiang4", // 𦺨
+ 0x26ea9: "ji2", // 𦺩
+ 0x26eaa: "shu3", // 𦺪
+ 0x26eab: "lang4", // 𦺫
+ 0x26eac: "ji1", // 𦺬
+ 0x26ead: "shan1", // 𦺭
+ 0x26eb0: "tao1", // 𦺰
+ 0x26eb1: "zi1", // 𦺱
+ 0x26eb2: "shuan4", // 𦺲
+ 0x26eb4: "ji2", // 𦺴
+ 0x26eb5: "chu4", // 𦺵
+ 0x26eb6: "ji4", // 𦺶
+ 0x26eb7: "shen1", // 𦺷
+ 0x26eb8: "lin4", // 𦺸
+ 0x26eb9: "liao2", // 𦺹
+ 0x26ebb: "san3", // 𦺻
+ 0x26ebd: "an3", // 𦺽
+ 0x26ebe: "ruan3", // 𦺾
+ 0x26ec0: "ti2", // 𦻀
+ 0x26ec1: "dan4", // 𦻁
+ 0x26ec3: "huan2", // 𦻃
+ 0x26ec5: "sa4", // 𦻅
+ 0x26f06: "rui2", // 𦼆
+ 0x26f07: "wu1", // 𦼇
+ 0x26f08: "ju4", // 𦼈
+ 0x26f09: "huan2", // 𦼉
+ 0x26f0a: "leng2", // 𦼊
+ 0x26f0b: "lu4", // 𦼋
+ 0x26f0e: "tan1", // 𦼎
+ 0x26f0f: "zeng1", // 𦼏
+ 0x26f13: "qian2", // 𦼓
+ 0x26f17: "xi1", // 𦼗
+ 0x26f21: "ci3", // 𦼡
+ 0x26f22: "she2", // 𦼢
+ 0x26f27: "sa4", // 𦼧
+ 0x26f2a: "mao4", // 𦼪
+ 0x26f2b: "qu2", // 𦼫
+ 0x26f2d: "bo2", // 𦼭
+ 0x26f2e: "gan3", // 𦼮
+ 0x26f30: "qie4", // 𦼰
+ 0x26f31: "juan4", // 𦼱
+ 0x26f32: "dang1", // 𦼲
+ 0x26f33: "chang2", // 𦼳
+ 0x26f34: "yang2", // 𦼴
+ 0x26f35: "he2", // 𦼵
+ 0x26f37: "ji1", // 𦼷
+ 0x26f39: "bing3", // 𦼹
+ 0x26f3b: "mei2", // 𦼻
+ 0x26f3f: "dun1", // 𦼿
+ 0x26f40: "ao3", // 𦽀
+ 0x26f41: "jing1", // 𦽁
+ 0x26f42: "lu4", // 𦽂
+ 0x26f43: "mian4", // 𦽃
+ 0x26f44: "dian4", // 𦽄
+ 0x26f45: "he4", // 𦽅
+ 0x26f47: "jian1", // 𦽇
+ 0x26f4a: "hua2", // 𦽊
+ 0x26f4b: "gou1", // 𦽋
+ 0x26f4e: "lu4", // 𦽎
+ 0x26f4f: "fu2", // 𦽏
+ 0x26f50: "hui3", // 𦽐
+ 0x26f52: "zei2", // 𦽒
+ 0x26f54: "jin4", // 𦽔
+ 0x26f55: "si1", // 𦽕
+ 0x26f56: "qun1", // 𦽖
+ 0x26f5c: "dan4", // 𦽜
+ 0x26f5e: "wan4", // 𦽞
+ 0x26f5f: "bian3", // 𦽟
+ 0x26f64: "jia2", // 𦽤
+ 0x26f6b: "dan3", // 𦽫
+ 0x26f6c: "jiu1", // 𦽬
+ 0x26f6d: "xian2", // 𦽭
+ 0x26f6e: "bo2", // 𦽮
+ 0x26f8f: "xia2", // 𦾏
+ 0x26f91: "biao1", // 𦾑
+ 0x26f95: "po4", // 𦾕
+ 0x26f98: "sao3", // 𦾘
+ 0x26f99: "bei4", // 𦾙
+ 0x26f9a: "sha4", // 𦾚
+ 0x26f9b: "wei3", // 𦾛
+ 0x26f9d: "cang1", // 𦾝
+ 0x26f9e: "lu4", // 𦾞
+ 0x26fa9: "dan4", // 𦾩
+ 0x26fab: "gu3", // 𦾫
+ 0x26fac: "za1", // 𦾬
+ 0x26fad: "bang3", // 𦾭
+ 0x26fae: "gan4", // 𦾮
+ 0x26fb1: "chao1", // 𦾱
+ 0x26fb2: "ji4", // 𦾲
+ 0x26fb3: "lie1", // 𦾳
+ 0x26fb5: "qiong2", // 𦾵
+ 0x26fb6: "jian4", // 𦾶
+ 0x26fb7: "lu4", // 𦾷
+ 0x26fb8: "duan1", // 𦾸
+ 0x26fb9: "suan1", // 𦾹
+ 0x26fba: "yao2", // 𦾺
+ 0x26fbb: "yin3", // 𦾻
+ 0x26fbd: "ta4", // 𦾽
+ 0x26fbe: "yao2", // 𦾾
+ 0x26fbf: "jing1", // 𦾿
+ 0x26fc0: "chu2", // 𦿀
+ 0x26fc1: "fu2", // 𦿁
+ 0x26fc2: "yuan2", // 𦿂
+ 0x26fc3: "shao3", // 𦿃
+ 0x26fc5: "bing4", // 𦿅
+ 0x26fc6: "dang4", // 𦿆
+ 0x26fc7: "shi4", // 𦿇
+ 0x26fca: "lu2", // 𦿊
+ 0x26fcb: "qie4", // 𦿋
+ 0x26fcc: "luo2", // 𦿌
+ 0x26fcd: "po4", // 𦿍
+ 0x26fcf: "meng2", // 𦿏
+ 0x26fd0: "jie2", // 𦿐
+ 0x26fd3: "ji1", // 𦿓
+ 0x26fd6: "lu4", // 𦿖
+ 0x27004: "chang4", // 𧀄
+ 0x27005: "mie4", // 𧀅
+ 0x27006: "meng2", // 𧀆
+ 0x27007: "jian3", // 𧀇
+ 0x2700a: "cai3", // 𧀊
+ 0x2700c: "su4", // 𧀌
+ 0x27014: "he4", // 𧀔
+ 0x27015: "sa4", // 𧀕
+ 0x27017: "zi1", // 𧀗
+ 0x27018: "keng1", // 𧀘
+ 0x27019: "geng3", // 𧀙
+ 0x2701a: "si1", // 𧀚
+ 0x27020: "ti2", // 𧀠
+ 0x27021: "zhan4", // 𧀡
+ 0x27022: "xie4", // 𧀢
+ 0x27023: "shui2", // 𧀣
+ 0x27024: "chi3", // 𧀤
+ 0x27025: "you1", // 𧀥
+ 0x27026: "lu3", // 𧀦
+ 0x27027: "meng4", // 𧀧
+ 0x27028: "lie4", // 𧀨
+ 0x27029: "si4", // 𧀩
+ 0x2702c: "xi1", // 𧀬
+ 0x2702d: "fan2", // 𧀭
+ 0x2702e: "fu1", // 𧀮
+ 0x2702f: "shen3", // 𧀯
+ 0x27030: "ti2", // 𧀰
+ 0x27031: "chai4", // 𧀱
+ 0x27032: "yue4", // 𧀲
+ 0x27034: "fu1", // 𧀴
+ 0x27035: "jian4", // 𧀵
+ 0x27036: "di4", // 𧀶
+ 0x2703a: "xie2", // 𧀺
+ 0x2703b: "dan1", // 𧀻
+ 0x2703f: "zhi2", // 𧀿
+ 0x27043: "xu4", // 𧁃
+ 0x27048: "nie4", // 𧁈
+ 0x27049: "fan4", // 𧁉
+ 0x2704a: "meng2", // 𧁊
+ 0x2704b: "min3", // 𧁋
+ 0x2707e: "lou2", // 𧁾
+ 0x2707f: "du2", // 𧁿
+ 0x27081: "zhan4", // 𧂁
+ 0x27082: "jian4", // 𧂂
+ 0x27083: "han4", // 𧂃
+ 0x27084: "dan4", // 𧂄
+ 0x27085: "sen1", // 𧂅
+ 0x27086: "jian4", // 𧂆
+ 0x27087: "tan2", // 𧂇
+ 0x27088: "jiao3", // 𧂈
+ 0x27089: "po2", // 𧂉
+ 0x2708b: "ping2", // 𧂋
+ 0x2708d: "zhuan4", // 𧂍
+ 0x2708f: "liao2", // 𧂏
+ 0x27090: "zi4", // 𧂐
+ 0x27092: "zhuo2", // 𧂒
+ 0x27094: "hu4", // 𧂔
+ 0x27099: "xi4", // 𧂙
+ 0x2709b: "meng2", // 𧂛
+ 0x2709c: "ju4", // 𧂜
+ 0x2709d: "mie4", // 𧂝
+ 0x2709e: "xian2", // 𧂞
+ 0x270a0: "kui4", // 𧂠
+ 0x270a1: "meng2", // 𧂡
+ 0x270a2: "jian1", // 𧂢
+ 0x270a6: "nou2", // 𧂦
+ 0x270a8: "di4", // 𧂨
+ 0x270a9: "sao1", // 𧂩
+ 0x270cf: "chu4", // 𧃏
+ 0x270d0: "zhi2", // 𧃐
+ 0x270d1: "qian2", // 𧃑
+ 0x270d2: "lv3", // 𧃒
+ 0x270d4: "zhuo2", // 𧃔
+ 0x270d8: "zuo4", // 𧃘
+ 0x270d9: "han2", // 𧃙
+ 0x270da: "sui3", // 𧃚
+ 0x270db: "gou4", // 𧃛
+ 0x270dd: "chou3", // 𧃝
+ 0x270de: "ji4", // 𧃞
+ 0x270df: "yi4", // 𧃟
+ 0x270e0: "yu2", // 𧃠
+ 0x270e8: "nou2", // 𧃨
+ 0x270e9: "ni3", // 𧃩
+ 0x270ea: "ruo4", // 𧃪
+ 0x270ee: "lin2", // 𧃮
+ 0x270f1: "ning2", // 𧃱
+ 0x2710d: "qiao2", // 𧄍
+ 0x2710e: "yao2", // 𧄎
+ 0x2710f: "fu4", // 𧄏
+ 0x27110: "shuang1", // 𧄐
+ 0x27111: "kui4", // 𧄑
+ 0x27112: "qu2", // 𧄒
+ 0x27113: "dong3", // 𧄓
+ 0x27114: "shu3", // 𧄔
+ 0x2711a: "li2", // 𧄚
+ 0x2711b: "ju2", // 𧄛
+ 0x2711c: "rui3", // 𧄜
+ 0x27120: "zha2", // 𧄠
+ 0x27124: "xiao1", // 𧄤
+ 0x27138: "men2", // 𧄸
+ 0x27139: "shi2", // 𧄹
+ 0x2713a: "dian1", // 𧄺
+ 0x2713b: "li4", // 𧄻
+ 0x2713c: "deng4", // 𧄼
+ 0x2713d: "zan4", // 𧄽
+ 0x2713f: "luo2", // 𧄿
+ 0x27140: "can2", // 𧅀
+ 0x27143: "ao1", // 𧅃
+ 0x27146: "jian3", // 𧅆
+ 0x27148: "diao4", // 𧅈
+ 0x2714b: "ying2", // 𧅋
+ 0x27156: "yi4", // 𧅖
+ 0x27157: "dang3", // 𧅗
+ 0x27158: "nou2", // 𧅘
+ 0x2715a: "yue4", // 𧅚
+ 0x2716e: "li3", // 𧅮
+ 0x2716f: "li2", // 𧅯
+ 0x27170: "hu4", // 𧅰
+ 0x27172: "you4", // 𧅲
+ 0x2717a: "nang4", // 𧅺
+ 0x27182: "chen4", // 𧆂
+ 0x27189: "feng1", // 𧆉
+ 0x2718a: "bie1", // 𧆊
+ 0x2718f: "man3", // 𧆏
+ 0x27190: "gan4", // 𧆐
+ 0x27191: "huo4", // 𧆑
+ 0x27193: "cu1", // 𧆓
+ 0x27195: "you3", // 𧆕
+ 0x27198: "you4", // 𧆘
+ 0x2719c: "xu1", // 𧆜
+ 0x271a1: "xu4", // 𧆡
+ 0x271a2: "hu3", // 𧆢
+ 0x271a3: "lu2", // 𧆣
+ 0x271a5: "xia2", // 𧆥
+ 0x271a6: "yi4", // 𧆦
+ 0x271ae: "hu3", // 𧆮
+ 0x271af: "hu4", // 𧆯
+ 0x271b0: "zi3", // 𧆰
+ 0x271b7: "gong1", // 𧆷
+ 0x271b8: "tui1", // 𧆸
+ 0x271b9: "wu1", // 𧆹
+ 0x271ba: "ling2", // 𧆺
+ 0x271bb: "gu1", // 𧆻
+ 0x271bc: "zhong1", // 𧆼
+ 0x271c4: "lu2", // 𧇄
+ 0x271c8: "zu4", // 𧇈
+ 0x271cc: "tong2", // 𧇌
+ 0x271cd: "xia1", // 𧇍
+ 0x271ce: "he2", // 𧇎
+ 0x271d3: "yue4", // 𧇓
+ 0x271d9: "nan2", // 𧇙
+ 0x271da: "bo2", // 𧇚
+ 0x271db: "hu1", // 𧇛
+ 0x271dc: "qi4", // 𧇜
+ 0x271dd: "shu2", // 𧇝
+ 0x271de: "qiang1", // 𧇞
+ 0x271df: "zhou1", // 𧇟
+ 0x271e0: "yao4", // 𧇠
+ 0x271e1: "gu1", // 𧇡
+ 0x271e5: "ban1", // 𧇥
+ 0x271e6: "kan3", // 𧇦
+ 0x271ee: "he2", // 𧇮
+ 0x271ef: "ji4", // 𧇯
+ 0x271f0: "hu2", // 𧇰
+ 0x271f1: "yan2", // 𧇱
+ 0x271f6: "chun1", // 𧇶
+ 0x271f7: "ding3", // 𧇷
+ 0x271f8: "qiu1", // 𧇸
+ 0x271f9: "hou2", // 𧇹
+ 0x271fc: "hao4", // 𧇼
+ 0x271ff: "zu4", // 𧇿
+ 0x27201: "xian2", // 𧈁
+ 0x27204: "xia4", // 𧈄
+ 0x27205: "xi4", // 𧈅
+ 0x27208: "se4", // 𧈈
+ 0x2720c: "ge2", // 𧈌
+ 0x2720d: "xi4", // 𧈍
+ 0x27211: "ge2", // 𧈑
+ 0x27214: "lv3", // 𧈔
+ 0x27216: "ge2", // 𧈖
+ 0x27217: "ke4", // 𧈗
+ 0x27219: "shou4", // 𧈙
+ 0x2721a: "zhu4", // 𧈚
+ 0x2721c: "teng2", // 𧈜
+ 0x2721d: "ya4", // 𧈝
+ 0x2721e: "ni4", // 𧈞
+ 0x27226: "luo4", // 𧈦
+ 0x27227: "sui1", // 𧈧
+ 0x2722a: "chan3", // 𧈪
+ 0x2722d: "wu4", // 𧈭
+ 0x2722f: "yu1", // 𧈯
+ 0x27239: "zao3", // 𧈹
+ 0x2723b: "yi4", // 𧈻
+ 0x2723c: "xi1", // 𧈼
+ 0x2723d: "hong2", // 𧈽
+ 0x2723e: "quan2", // 𧈾
+ 0x2723f: "wang3", // 𧈿
+ 0x27240: "chi3", // 𧉀
+ 0x27241: "xi4", // 𧉁
+ 0x27242: "tian3", // 𧉂
+ 0x27243: "yun3", // 𧉃
+ 0x27245: "yi1", // 𧉅
+ 0x27246: "ji2", // 𧉆
+ 0x27247: "hui1", // 𧉇
+ 0x27248: "fou2", // 𧉈
+ 0x2724a: "fu3", // 𧉊
+ 0x2724d: "ji2", // 𧉍
+ 0x2724e: "xuan2", // 𧉎
+ 0x27251: "tai4", // 𧉑
+ 0x27253: "du4", // 𧉓
+ 0x27257: "yuan2", // 𧉗
+ 0x2725b: "di4", // 𧉛
+ 0x2725e: "zhu3", // 𧉞
+ 0x2725f: "tai1", // 𧉟
+ 0x27261: "rong3", // 𧉡
+ 0x27262: "xue2", // 𧉢
+ 0x27263: "yu4", // 𧉣
+ 0x27264: "fan4", // 𧉤
+ 0x27265: "bei3", // 𧉥
+ 0x27267: "qu3", // 𧉧
+ 0x27269: "bu4", // 𧉩
+ 0x2726a: "jia1", // 𧉪
+ 0x2726b: "zha2", // 𧉫
+ 0x2726d: "nu3", // 𧉭
+ 0x2726e: "she2", // 𧉮
+ 0x27272: "li4", // 𧉲
+ 0x27284: "gui3", // 𧊄
+ 0x27285: "guai3", // 𧊅
+ 0x27287: "dai4", // 𧊇
+ 0x2728f: "gai1", // 𧊏
+ 0x27292: "ci4", // 𧊒
+ 0x27294: "yan3", // 𧊔
+ 0x27295: "song1", // 𧊕
+ 0x27296: "shi4", // 𧊖
+ 0x27298: "ku4", // 𧊘
+ 0x27299: "zhi3", // 𧊙
+ 0x2729a: "tong2", // 𧊚
+ 0x2729b: "qu2", // 𧊛
+ 0x2729c: "e4", // 𧊜
+ 0x2729e: "xing2", // 𧊞
+ 0x2729f: "ru2", // 𧊟
+ 0x272a0: "yu2", // 𧊠
+ 0x272a3: "yi4", // 𧊣
+ 0x272a4: "yi4", // 𧊤
+ 0x272a5: "xu4", // 𧊥
+ 0x272a6: "fou3", // 𧊦
+ 0x272a7: "ge2", // 𧊧
+ 0x272ac: "he2", // 𧊬
+ 0x272ad: "yin1", // 𧊭
+ 0x272af: "hong4", // 𧊯
+ 0x272b1: "duo3", // 𧊱
+ 0x272bd: "xing2", // 𧊽
+ 0x272be: "fan2", // 𧊾
+ 0x272c9: "qi1", // 𧋉
+ 0x272ca: "sha1", // 𧋊
+ 0x272cc: "du4", // 𧋌
+ 0x272cd: "di4", // 𧋍
+ 0x272ce: "li2", // 𧋎
+ 0x272cf: "yi4", // 𧋏
+ 0x272d0: "xi2", // 𧋐
+ 0x272d1: "geng3", // 𧋑
+ 0x272d2: "tong2", // 𧋒
+ 0x272d3: "kao4", // 𧋓
+ 0x272d4: "hong4", // 𧋔
+ 0x272d5: "kun3", // 𧋕
+ 0x272d6: "nie4", // 𧋖
+ 0x272d7: "chi2", // 𧋗
+ 0x272d8: "ti2", // 𧋘
+ 0x272da: "tong2", // 𧋚
+ 0x272e0: "li2", // 𧋠
+ 0x272e1: "na4", // 𧋡
+ 0x272f1: "zhan1", // 𧋱
+ 0x272f2: "bei3", // 𧋲
+ 0x27301: "tiao2", // 𧌁
+ 0x27303: "za1", // 𧌃
+ 0x27304: "e4", // 𧌄
+ 0x27305: "shou4", // 𧌅
+ 0x27306: "kong1", // 𧌆
+ 0x27307: "peng2", // 𧌇
+ 0x27308: "fu4", // 𧌈
+ 0x27309: "lu4", // 𧌉
+ 0x2730a: "xie4", // 𧌊
+ 0x2730b: "xie4", // 𧌋
+ 0x2730c: "xiu1", // 𧌌
+ 0x2730d: "lu4", // 𧌍
+ 0x2730e: "tian3", // 𧌎
+ 0x2730f: "ta4", // 𧌏
+ 0x27310: "ci4", // 𧌐
+ 0x27311: "qu1", // 𧌑
+ 0x27313: "fu4", // 𧌓
+ 0x27314: "zhi1", // 𧌔
+ 0x27316: "xie4", // 𧌖
+ 0x27317: "zou3", // 𧌗
+ 0x27318: "fei4", // 𧌘
+ 0x27319: "min2", // 𧌙
+ 0x2731a: "xing1", // 𧌚
+ 0x2731d: "tong2", // 𧌝
+ 0x2731e: "qi2", // 𧌞
+ 0x27320: "piao1", // 𧌠
+ 0x27322: "sui4", // 𧌢
+ 0x27323: "er3", // 𧌣
+ 0x27327: "hu3", // 𧌧
+ 0x2733b: "song1", // 𧌻
+ 0x2733d: "bie1", // 𧌽
+ 0x2733e: "ding1", // 𧌾
+ 0x2733f: "ban3", // 𧌿
+ 0x27340: "shi1", // 𧍀
+ 0x27341: "xie4", // 𧍁
+ 0x27342: "xiao2", // 𧍂
+ 0x27343: "fei3", // 𧍃
+ 0x27352: "chuan3", // 𧍒
+ 0x27353: "shuai4", // 𧍓
+ 0x27354: "yao1", // 𧍔
+ 0x27355: "jue2", // 𧍕
+ 0x27356: "sheng3", // 𧍖
+ 0x27358: "you1", // 𧍘
+ 0x27359: "fan4", // 𧍙
+ 0x2735c: "kui2", // 𧍜
+ 0x2735d: "di4", // 𧍝
+ 0x2735f: "mao2", // 𧍟
+ 0x27360: "jie2", // 𧍠
+ 0x27362: "yan2", // 𧍢
+ 0x27365: "wei1", // 𧍥
+ 0x27368: "sang1", // 𧍨
+ 0x27369: "jie2", // 𧍩
+ 0x2736a: "yu2", // 𧍪
+ 0x2736b: "wei4", // 𧍫
+ 0x2736c: "e4", // 𧍬
+ 0x2736d: "quan2", // 𧍭
+ 0x2736e: "jiong3", // 𧍮
+ 0x2736f: "feng2", // 𧍯
+ 0x27370: "long2", // 𧍰
+ 0x27371: "die2", // 𧍱
+ 0x27372: "pian2", // 𧍲
+ 0x27374: "lian4", // 𧍴
+ 0x27375: "hu2", // 𧍵
+ 0x27376: "lv4", // 𧍶
+ 0x2737f: "dian4", // 𧍿
+ 0x27383: "cui4", // 𧎃
+ 0x27384: "mou2", // 𧎄
+ 0x27395: "wang2", // 𧎕
+ 0x27396: "juan1", // 𧎖
+ 0x27397: "ke1", // 𧎗
+ 0x27398: "yan2", // 𧎘
+ 0x27399: "jiao3", // 𧎙
+ 0x273a1: "gong1", // 𧎡
+ 0x273a3: "rong2", // 𧎣
+ 0x273a4: "sun1", // 𧎤
+ 0x273a5: "shan4", // 𧎥
+ 0x273a8: "chi2", // 𧎨
+ 0x273aa: "qi2", // 𧎪
+ 0x273ab: "suo3", // 𧎫
+ 0x273ad: "ye4", // 𧎭
+ 0x273ae: "zao3", // 𧎮
+ 0x273af: "que1", // 𧎯
+ 0x273b0: "zhan3", // 𧎰
+ 0x273b1: "ba1", // 𧎱
+ 0x273b2: "zu2", // 𧎲
+ 0x273b3: "suo3", // 𧎳
+ 0x273b4: "zhe2", // 𧎴
+ 0x273b5: "xi4", // 𧎵
+ 0x273b7: "chu3", // 𧎷
+ 0x273b8: "jiao3", // 𧎸
+ 0x273b9: "zui4", // 𧎹
+ 0x273ba: "ge1", // 𧎺
+ 0x273bb: "wu4", // 𧎻
+ 0x273be: "lve4", // 𧎾
+ 0x273bf: "ji2", // 𧎿
+ 0x273c2: "xie2", // 𧏂
+ 0x273c3: "xie2", // 𧏃
+ 0x273c6: "dou3", // 𧏆
+ 0x273cb: "qiu1", // 𧏋
+ 0x273d1: "ping2", // 𧏑
+ 0x273d3: "liu2", // 𧏓
+ 0x273e5: "jie2", // 𧏥
+ 0x273e7: "hui4", // 𧏧
+ 0x273eb: "sha4", // 𧏫
+ 0x273f8: "zhi2", // 𧏸
+ 0x273f9: "ai4", // 𧏹
+ 0x273fa: "xu4", // 𧏺
+ 0x273fb: "bi4", // 𧏻
+ 0x273fd: "ye1", // 𧏽
+ 0x273fe: "ni4", // 𧏾
+ 0x273ff: "zhu2", // 𧏿
+ 0x27401: "su4", // 𧐁
+ 0x27403: "xie2", // 𧐃
+ 0x27404: "yu4", // 𧐄
+ 0x27405: "qu1", // 𧐅
+ 0x27408: "zu2", // 𧐈
+ 0x27409: "zhi1", // 𧐉
+ 0x2740a: "zhang1", // 𧐊
+ 0x2740b: "lve4", // 𧐋
+ 0x2740c: "wei3", // 𧐌
+ 0x2740d: "chong1", // 𧐍
+ 0x2740e: "mi4", // 𧐎
+ 0x27410: "ji1", // 𧐐
+ 0x27412: "su4", // 𧐒
+ 0x27413: "ye3", // 𧐓
+ 0x27414: "xi2", // 𧐔
+ 0x27415: "tuan2", // 𧐕
+ 0x27416: "lian2", // 𧐖
+ 0x27417: "xuan2", // 𧐗
+ 0x27419: "wu4", // 𧐙
+ 0x2741f: "mao2", // 𧐟
+ 0x2742c: "hong2", // 𧐬
+ 0x2742f: "lve4", // 𧐯
+ 0x27430: "du2", // 𧐰
+ 0x27431: "cong2", // 𧐱
+ 0x27432: "chan2", // 𧐲
+ 0x27433: "lu4", // 𧐳
+ 0x27434: "su4", // 𧐴
+ 0x27440: "lve4", // 𧑀
+ 0x27446: "zhong1", // 𧑆
+ 0x27447: "li2", // 𧑇
+ 0x27448: "fei4", // 𧑈
+ 0x2744a: "jing3", // 𧑊
+ 0x2744b: "kui4", // 𧑋
+ 0x2744c: "yi4", // 𧑌
+ 0x2744d: "hua2", // 𧑍
+ 0x2744e: "cui4", // 𧑎
+ 0x27450: "yu4", // 𧑐
+ 0x27451: "beng3", // 𧑑
+ 0x27452: "tun1", // 𧑒
+ 0x27453: "shu3", // 𧑓
+ 0x27454: "dai4", // 𧑔
+ 0x27455: "wu1", // 𧑕
+ 0x27456: "ci4", // 𧑖
+ 0x27457: "ning4", // 𧑗
+ 0x27458: "dang4", // 𧑘
+ 0x27459: "zu2", // 𧑙
+ 0x2745a: "han2", // 𧑚
+ 0x2745c: "pi2", // 𧑜
+ 0x2745d: "chuan4", // 𧑝
+ 0x27460: "du4", // 𧑠
+ 0x27461: "pa2", // 𧑡
+ 0x27464: "zhu1", // 𧑤
+ 0x27466: "xie2", // 𧑦
+ 0x27467: "zhe2", // 𧑧
+ 0x27468: "qie4", // 𧑨
+ 0x27469: "xuan1", // 𧑩
+ 0x2746b: "sao4", // 𧑫
+ 0x27480: "bi4", // 𧒀
+ 0x27482: "fu4", // 𧒂
+ 0x27488: "li4", // 𧒈
+ 0x2748e: "e2", // 𧒎
+ 0x27490: "ye1", // 𧒐
+ 0x27491: "shu3", // 𧒑
+ 0x27493: "se4", // 𧒓
+ 0x27495: "qi1", // 𧒕
+ 0x27496: "guo4", // 𧒖
+ 0x27497: "se4", // 𧒗
+ 0x27499: "fu4", // 𧒙
+ 0x2749a: "mao2", // 𧒚
+ 0x2749c: "lei2", // 𧒜
+ 0x2749d: "zhan1", // 𧒝
+ 0x274a8: "chai4", // 𧒨
+ 0x274ad: "wei4", // 𧒭
+ 0x274bd: "lei2", // 𧒽
+ 0x274bf: "zei2", // 𧒿
+ 0x274c0: "ying1", // 𧓀
+ 0x274c1: "ai4", // 𧓁
+ 0x274c2: "xie1", // 𧓂
+ 0x274c4: "bi4", // 𧓄
+ 0x274cb: "chan2", // 𧓋
+ 0x274ce: "pi2", // 𧓎
+ 0x274cf: "cong2", // 𧓏
+ 0x274d0: "lie4", // 𧓐
+ 0x274d1: "qi2", // 𧓑
+ 0x274d3: "ji4", // 𧓓
+ 0x274d4: "jing1", // 𧓔
+ 0x274d5: "dong1", // 𧓕
+ 0x274d6: "fei2", // 𧓖
+ 0x274d7: "yi2", // 𧓗
+ 0x274d8: "tuan2", // 𧓘
+ 0x274e8: "meng3", // 𧓨
+ 0x274e9: "can2", // 𧓩
+ 0x274ea: "ya2", // 𧓪
+ 0x274f2: "yang3", // 𧓲
+ 0x274f4: "ting2", // 𧓴
+ 0x274f8: "zhi2", // 𧓸
+ 0x274fa: "xie4", // 𧓺
+ 0x274fb: "lv4", // 𧓻
+ 0x274fd: "li4", // 𧓽
+ 0x274ff: "mao2", // 𧓿
+ 0x27502: "xia2", // 𧔂
+ 0x27505: "sou4", // 𧔅
+ 0x27516: "su1", // 𧔖
+ 0x27517: "xue4", // 𧔗
+ 0x2751d: "li4", // 𧔝
+ 0x2751e: "yuan2", // 𧔞
+ 0x27521: "zhan3", // 𧔡
+ 0x27523: "ta4", // 𧔣
+ 0x27524: "xuan2", // 𧔤
+ 0x27525: "wei4", // 𧔥
+ 0x27526: "ye4", // 𧔦
+ 0x27527: "pang2", // 𧔧
+ 0x27528: "mao2", // 𧔨
+ 0x27529: "ti2", // 𧔩
+ 0x2752a: "pin2", // 𧔪
+ 0x2752c: "du4", // 𧔬
+ 0x2752d: "qiu2", // 𧔭
+ 0x2752e: "yi3", // 𧔮
+ 0x27533: "tuo2", // 𧔳
+ 0x27534: "chai4", // 𧔴
+ 0x27537: "jin4", // 𧔷
+ 0x2753c: "e2", // 𧔼
+ 0x27543: "chan2", // 𧕃
+ 0x27544: "ying1", // 𧕄
+ 0x27545: "ling2", // 𧕅
+ 0x27547: "xian3", // 𧕇
+ 0x27549: "qi1", // 𧕉
+ 0x2754b: "yue4", // 𧕋
+ 0x2754c: "lve4", // 𧕌
+ 0x2754d: "ying2", // 𧕍
+ 0x2754e: "qu2", // 𧕎
+ 0x27552: "fei3", // 𧕒
+ 0x27553: "zi1", // 𧕓
+ 0x27559: "qing1", // 𧕙
+ 0x2755d: "ning2", // 𧕝
+ 0x2755e: "wei4", // 𧕞
+ 0x2755f: "shuang1", // 𧕟
+ 0x27561: "fu4", // 𧕡
+ 0x27564: "mo4", // 𧕤
+ 0x27565: "mo4", // 𧕥
+ 0x27566: "tuo2", // 𧕦
+ 0x27567: "chai4", // 𧕧
+ 0x27568: "zang4", // 𧕨
+ 0x2756e: "li2", // 𧕮
+ 0x2756f: "li2", // 𧕯
+ 0x27571: "xia2", // 𧕱
+ 0x27572: "juan3", // 𧕲
+ 0x27574: "nan2", // 𧕴
+ 0x27575: "mi4", // 𧕵
+ 0x27578: "huang2", // 𧕸
+ 0x2757a: "shuang4", // 𧕺
+ 0x2757c: "xu3", // 𧕼
+ 0x2757f: "fei3", // 𧕿
+ 0x27581: "xie4", // 𧖁
+ 0x27586: "ta4", // 𧖆
+ 0x27587: "yong3", // 𧖇
+ 0x27589: "zhan3", // 𧖉
+ 0x27591: "qiang2", // 𧖑
+ 0x27592: "nang2", // 𧖒
+ 0x27594: "lin4", // 𧖔
+ 0x27598: "luan2", // 𧖘
+ 0x27599: "xian3", // 𧖙
+ 0x2759a: "fu2", // 𧖚
+ 0x2759c: "ling2", // 𧖜
+ 0x275a0: "sao1", // 𧖠
+ 0x275a2: "hui4", // 𧖢
+ 0x275a8: "ting2", // 𧖨
+ 0x275aa: "qing2", // 𧖪
+ 0x275ac: "huang1", // 𧖬
+ 0x275ae: "an4", // 𧖮
+ 0x275b5: "man3", // 𧖵
+ 0x275b7: "ni4", // 𧖷
+ 0x275bb: "guo2", // 𧖻
+ 0x275bc: "ou3", // 𧖼
+ 0x275bf: "xiang4", // 𧖿
+ 0x275c1: "jin1", // 𧗁
+ 0x275c6: "zheng1", // 𧗆
+ 0x275c8: "n5", // 𧗈
+ 0x275cb: "san4", // 𧗋
+ 0x275cc: "hu4", // 𧗌
+ 0x275ce: "zu2", // 𧗎
+ 0x275cf: "hui3", // 𧗏
+ 0x275d2: "ji1", // 𧗒
+ 0x275d6: "ye4", // 𧗖
+ 0x275e6: "xing2", // 𧗦
+ 0x275e9: "la4", // 𧗩
+ 0x275ea: "yu4", // 𧗪
+ 0x275eb: "jue2", // 𧗫
+ 0x275f1: "shu4", // 𧗱
+ 0x275f2: "zheng1", // 𧗲
+ 0x275f4: "yong3", // 𧗴
+ 0x275f6: "ge1", // 𧗶
+ 0x275f8: "jian4", // 𧗸
+ 0x275f9: "xin4", // 𧗹
+ 0x275fc: "hui1", // 𧗼
+ 0x275ff: "shuai4", // 𧗿
+ 0x27602: "chong1", // 𧘂
+ 0x27603: "hang2", // 𧘃
+ 0x27608: "liao3", // 𧘈
+ 0x2760d: "jiang1", // 𧘍
+ 0x2760f: "gong1", // 𧘏
+ 0x27611: "zhuo2", // 𧘑
+ 0x27617: "qi3", // 𧘗
+ 0x2761c: "qian1", // 𧘜
+ 0x2761e: "dou3", // 𧘞
+ 0x2761f: "po1", // 𧘟
+ 0x27622: "hu4", // 𧘢
+ 0x27625: "niu3", // 𧘥
+ 0x27627: "qi4", // 𧘧
+ 0x27628: "diao1", // 𧘨
+ 0x27629: "diao1", // 𧘩
+ 0x2762b: "li4", // 𧘫
+ 0x2762e: "xiong1", // 𧘮
+ 0x2763d: "na2", // 𧘽
+ 0x2763f: "zheng1", // 𧘿
+ 0x27640: "la4", // 𧙀
+ 0x27641: "zhi4", // 𧙁
+ 0x27643: "e3", // 𧙃
+ 0x27644: "bo1", // 𧙄
+ 0x27645: "po1", // 𧙅
+ 0x27646: "xu1", // 𧙆
+ 0x27647: "yong4", // 𧙇
+ 0x27648: "ci2", // 𧙈
+ 0x27649: "li4", // 𧙉
+ 0x2764c: "pao2", // 𧙌
+ 0x2764f: "xiu4", // 𧙏
+ 0x2765b: "pu4", // 𧙛
+ 0x2765d: "che2", // 𧙝
+ 0x2765e: "qi4", // 𧙞
+ 0x27661: "yi4", // 𧙡
+ 0x27663: "ti2", // 𧙣
+ 0x27664: "duo3", // 𧙤
+ 0x27665: "long2", // 𧙥
+ 0x27667: "jian4", // 𧙧
+ 0x2766d: "zhan4", // 𧙭
+ 0x2766e: "yuan4", // 𧙮
+ 0x27676: "yu2", // 𧙶
+ 0x27678: "geng1", // 𧙸
+ 0x2767a: "hou4", // 𧙺
+ 0x2767e: "qi3", // 𧙾
+ 0x27680: "mu4", // 𧚀
+ 0x27681: "huan4", // 𧚁
+ 0x27682: "long4", // 𧚂
+ 0x27683: "xi4", // 𧚃
+ 0x27684: "e2", // 𧚄
+ 0x27685: "lang3", // 𧚅
+ 0x27686: "fei4", // 𧚆
+ 0x27687: "wan3", // 𧚇
+ 0x27689: "cun1", // 𧚉
+ 0x2768b: "peng2", // 𧚋
+ 0x2768f: "cuo4", // 𧚏
+ 0x27690: "weng1", // 𧚐
+ 0x276a1: "gao3", // 𧚡
+ 0x276a5: "cui4", // 𧚥
+ 0x276a8: "qi4", // 𧚨
+ 0x276a9: "li2", // 𧚩
+ 0x276aa: "qie4", // 𧚪
+ 0x276ab: "qian4", // 𧚫
+ 0x276ac: "kong1", // 𧚬
+ 0x276ad: "beng3", // 𧚭
+ 0x276af: "shou4", // 𧚯
+ 0x276b7: "wei1", // 𧚷
+ 0x276c4: "shan1", // 𧛄
+ 0x276cf: "zi1", // 𧛏
+ 0x276d2: "ti4", // 𧛒
+ 0x276d3: "qian1", // 𧛓
+ 0x276d4: "du2", // 𧛔
+ 0x276d7: "tu2", // 𧛗
+ 0x276da: "wei1", // 𧛚
+ 0x276de: "hu2", // 𧛞
+ 0x276df: "xing1", // 𧛟
+ 0x276e1: "shan1", // 𧛡
+ 0x276e2: "zhi3", // 𧛢
+ 0x276e7: "chi3", // 𧛧
+ 0x276f8: "zhou4", // 𧛸
+ 0x276f9: "weng1", // 𧛹
+ 0x276fa: "chi2", // 𧛺
+ 0x276fb: "suo3", // 𧛻
+ 0x276fc: "xie4", // 𧛼
+ 0x276fe: "ke4", // 𧛾
+ 0x27701: "shai4", // 𧜁
+ 0x27702: "shi1", // 𧜂
+ 0x27703: "shou4", // 𧜃
+ 0x27705: "jie4", // 𧜅
+ 0x27709: "gao3", // 𧜉
+ 0x2770a: "lv3", // 𧜊
+ 0x27714: "xie4", // 𧜔
+ 0x2771a: "zhi3", // 𧜚
+ 0x2771e: "man2", // 𧜞
+ 0x27720: "shuai4", // 𧜠
+ 0x27721: "ke4", // 𧜡
+ 0x27723: "diao3", // 𧜣
+ 0x27724: "yi1", // 𧜤
+ 0x27726: "su4", // 𧜦
+ 0x27727: "chuang1", // 𧜧
+ 0x27731: "cui4", // 𧜱
+ 0x27732: "tuo4", // 𧜲
+ 0x27735: "xie4", // 𧜵
+ 0x2773d: "xuan2", // 𧜽
+ 0x27742: "he4", // 𧝂
+ 0x27743: "jue2", // 𧝃
+ 0x27746: "ti4", // 𧝆
+ 0x27747: "fei4", // 𧝇
+ 0x27749: "zhi3", // 𧝉
+ 0x2774a: "shi4", // 𧝊
+ 0x2774b: "tui2", // 𧝋
+ 0x2774e: "chong1", // 𧝎
+ 0x27750: "ti4", // 𧝐
+ 0x27751: "zhan4", // 𧝑
+ 0x27752: "heng2", // 𧝒
+ 0x27754: "qu2", // 𧝔
+ 0x27755: "wei2", // 𧝕
+ 0x27757: "dun1", // 𧝗
+ 0x27758: "bao4", // 𧝘
+ 0x2775c: "liao2", // 𧝜
+ 0x27764: "si1", // 𧝤
+ 0x2776a: "biao3", // 𧝪
+ 0x2776b: "xie4", // 𧝫
+ 0x2776c: "bie2", // 𧝬
+ 0x2776e: "cong3", // 𧝮
+ 0x27772: "ju4", // 𧝲
+ 0x27773: "he2", // 𧝳
+ 0x27777: "kui4", // 𧝷
+ 0x27778: "yong1", // 𧝸
+ 0x27780: "shu4", // 𧞀
+ 0x2778d: "nie4", // 𧞍
+ 0x2778f: "yu2", // 𧞏
+ 0x27790: "zhuo2", // 𧞐
+ 0x27791: "meng2", // 𧞑
+ 0x27792: "hu2", // 𧞒
+ 0x27795: "lie4", // 𧞕
+ 0x2779d: "jie1", // 𧞝
+ 0x2779e: "xiong2", // 𧞞
+ 0x277a3: "yan3", // 𧞣
+ 0x277a9: "jie2", // 𧞩
+ 0x277aa: "la4", // 𧞪
+ 0x277ab: "shu4", // 𧞫
+ 0x277ac: "jie2", // 𧞬
+ 0x277ad: "lei2", // 𧞭
+ 0x277b0: "zu2", // 𧞰
+ 0x277b2: "shi4", // 𧞲
+ 0x277b8: "wei2", // 𧞸
+ 0x277b9: "du1", // 𧞹
+ 0x277ba: "su4", // 𧞺
+ 0x277c3: "xie2", // 𧟃
+ 0x277c4: "rang2", // 𧟄
+ 0x277cc: "luo4", // 𧟌
+ 0x277d1: "qian1", // 𧟑
+ 0x277d8: "nang4", // 𧟘
+ 0x277d9: "ling2", // 𧟙
+ 0x277dc: "ji4", // 𧟜
+ 0x277e0: "ming4", // 𧟠
+ 0x277e3: "gu3", // 𧟣
+ 0x277e8: "xuan2", // 𧟨
+ 0x277ec: "xu1", // 𧟬
+ 0x277f1: "bo2", // 𧟱
+ 0x277fc: "wei1", // 𧟼
+ 0x27802: "ku1", // 𧠂
+ 0x27806: "wan3", // 𧠆
+ 0x27808: "cha4", // 𧠈
+ 0x2780a: "mao4", // 𧠊
+ 0x2780b: "ke4", // 𧠋
+ 0x2780e: "ci4", // 𧠎
+ 0x27812: "xian4", // 𧠒
+ 0x27813: "mo4", // 𧠓
+ 0x2781a: "hun1", // 𧠚
+ 0x2781b: "chan4", // 𧠛
+ 0x2781c: "shi1", // 𧠜
+ 0x2781d: "zhen3", // 𧠝
+ 0x2781e: "e4", // 𧠞
+ 0x2781f: "mi2", // 𧠟
+ 0x27821: "shi1", // 𧠡
+ 0x27822: "qu1", // 𧠢
+ 0x27823: "shu1", // 𧠣
+ 0x27825: "ci1", // 𧠥
+ 0x27826: "yan3", // 𧠦
+ 0x27829: "hu1", // 𧠩
+ 0x2782a: "qi1", // 𧠪
+ 0x2782b: "zhi4", // 𧠫
+ 0x2782c: "huang1", // 𧠬
+ 0x27834: "zhi3", // 𧠴
+ 0x27836: "you3", // 𧠶
+ 0x2783c: "gao4", // 𧠼
+ 0x2783d: "yao3", // 𧠽
+ 0x2783e: "pou1", // 𧠾
+ 0x27847: "yi2", // 𧡇
+ 0x27848: "cheng4", // 𧡈
+ 0x27849: "ji4", // 𧡉
+ 0x2784b: "ai3", // 𧡋
+ 0x2784d: "dong4", // 𧡍
+ 0x2784f: "sui4", // 𧡏
+ 0x27851: "jiu4", // 𧡑
+ 0x27858: "qi4", // 𧡘
+ 0x27859: "lian2", // 𧡙
+ 0x2785a: "xuan3", // 𧡚
+ 0x2785c: "liao3", // 𧡜
+ 0x27861: "yun4", // 𧡡
+ 0x27862: "xuan3", // 𧡢
+ 0x27863: "cou2", // 𧡣
+ 0x27864: "pian1", // 𧡤
+ 0x27866: "kui2", // 𧡦
+ 0x27868: "ti2", // 𧡨
+ 0x27869: "huan3", // 𧡩
+ 0x2786a: "dan1", // 𧡪
+ 0x2786b: "gui4", // 𧡫
+ 0x2786c: "chen1", // 𧡬
+ 0x2786e: "shang3", // 𧡮
+ 0x2786f: "ji4", // 𧡯
+ 0x27874: "lian4", // 𧡴
+ 0x27875: "kan1", // 𧡵
+ 0x27876: "sheng4", // 𧡶
+ 0x27878: "dou1", // 𧡸
+ 0x27879: "you2", // 𧡹
+ 0x2787a: "qi2", // 𧡺
+ 0x2787c: "xiao3", // 𧡼
+ 0x27882: "yi4", // 𧢂
+ 0x27883: "lou2", // 𧢃
+ 0x27886: "chuang1", // 𧢆
+ 0x2788b: "lao4", // 𧢋
+ 0x2788c: "gao1", // 𧢌
+ 0x27890: "zeng1", // 𧢐
+ 0x27892: "wei2", // 𧢒
+ 0x27896: "jian1", // 𧢖
+ 0x2789b: "ying1", // 𧢛
+ 0x2789c: "fan2", // 𧢜
+ 0x2789d: "li4", // 𧢝
+ 0x2789e: "qian1", // 𧢞
+ 0x278a2: "yao4", // 𧢢
+ 0x278a6: "kui1", // 𧢦
+ 0x278a7: "wei2", // 𧢧
+ 0x278a9: "que4", // 𧢩
+ 0x278ac: "xiao3", // 𧢬
+ 0x278ad: "que4", // 𧢭
+ 0x278b0: "hu1", // 𧢰
+ 0x278b5: "duo1", // 𧢵
+ 0x278b6: "chu4", // 𧢶
+ 0x278b9: "shen1", // 𧢹
+ 0x278bc: "zhuo2", // 𧢼
+ 0x278bd: "e2", // 𧢽
+ 0x278be: "ji4", // 𧢾
+ 0x278c1: "tan2", // 𧣁
+ 0x278c3: "pa1", // 𧣃
+ 0x278cb: "jie4", // 𧣋
+ 0x278cc: "qiao4", // 𧣌
+ 0x278d1: "qian2", // 𧣑
+ 0x278d2: "ju4", // 𧣒
+ 0x278d5: "qiu2", // 𧣕
+ 0x278d6: "tuo2", // 𧣖
+ 0x278da: "nuo4", // 𧣚
+ 0x278db: "si4", // 𧣛
+ 0x278df: "yi2", // 𧣟
+ 0x278e1: "gu3", // 𧣡
+ 0x278e2: "hun4", // 𧣢
+ 0x278e3: "pa2", // 𧣣
+ 0x278e4: "zi1", // 𧣤
+ 0x278e6: "jiao1", // 𧣦
+ 0x278e9: "xi3", // 𧣩
+ 0x278ea: "shao3", // 𧣪
+ 0x278ec: "yi2", // 𧣬
+ 0x278ed: "zhi4", // 𧣭
+ 0x278f5: "lun4", // 𧣵
+ 0x278f7: "zhou1", // 𧣷
+ 0x278f8: "jue2", // 𧣸
+ 0x278f9: "tan2", // 𧣹
+ 0x278fa: "nuo4", // 𧣺
+ 0x278fb: "ju4", // 𧣻
+ 0x278fc: "hu2", // 𧣼
+ 0x278fe: "zhi4", // 𧣾
+ 0x27903: "bi1", // 𧤃
+ 0x2790d: "chi4", // 𧤍
+ 0x2790e: "xuan1", // 𧤎
+ 0x2790f: "ji2", // 𧤏
+ 0x27910: "gua3", // 𧤐
+ 0x27911: "ju2", // 𧤑
+ 0x27912: "wo4", // 𧤒
+ 0x27913: "tuo2", // 𧤓
+ 0x27915: "qiu2", // 𧤕
+ 0x27916: "wei1", // 𧤖
+ 0x27917: "duan1", // 𧤗
+ 0x27919: "shou4", // 𧤙
+ 0x2791b: "zhen3", // 𧤛
+ 0x2791c: "ne4", // 𧤜
+ 0x2791f: "xi4", // 𧤟
+ 0x27920: "zhe2", // 𧤠
+ 0x27921: "zhi4", // 𧤡
+ 0x27923: "na2", // 𧤣
+ 0x27928: "jian1", // 𧤨
+ 0x2792e: "yao2", // 𧤮
+ 0x2792f: "guo2", // 𧤯
+ 0x27932: "di3", // 𧤲
+ 0x27934: "huo4", // 𧤴
+ 0x27935: "jing1", // 𧤵
+ 0x2793c: "jue2", // 𧤼
+ 0x2793d: "yue4", // 𧤽
+ 0x27944: "ji2", // 𧥄
+ 0x27946: "su4", // 𧥆
+ 0x27948: "jian1", // 𧥈
+ 0x2794a: "kun1", // 𧥊
+ 0x2794b: "wo4", // 𧥋
+ 0x2794c: "kuang4", // 𧥌
+ 0x2794d: "biao1", // 𧥍
+ 0x2794e: "jue2", // 𧥎
+ 0x27951: "bi4", // 𧥑
+ 0x27953: "chan2", // 𧥓
+ 0x27955: "zi1", // 𧥕
+ 0x27956: "li4", // 𧥖
+ 0x2795a: "fo2", // 𧥚
+ 0x2795b: "qian3", // 𧥛
+ 0x2795c: "yan3", // 𧥜
+ 0x2795e: "tan4", // 𧥞
+ 0x2795f: "mo4", // 𧥟
+ 0x27963: "kou4", // 𧥣
+ 0x27964: "xi1", // 𧥤
+ 0x2796e: "hu4", // 𧥮
+ 0x2796f: "hu4", // 𧥯
+ 0x27971: "fu2", // 𧥱
+ 0x27974: "yang4", // 𧥴
+ 0x27975: "guo4", // 𧥵
+ 0x27977: "ren2", // 𧥷
+ 0x27978: "yin4", // 𧥸
+ 0x27979: "feng1", // 𧥹
+ 0x2797a: "jun4", // 𧥺
+ 0x2797c: "yun2", // 𧥼
+ 0x2797f: "xun4", // 𧥿
+ 0x27981: "xi4", // 𧦁
+ 0x2798e: "xia1", // 𧦎
+ 0x27991: "hang2", // 𧦑
+ 0x2799a: "hu4", // 𧦚
+ 0x2799d: "hu1", // 𧦝
+ 0x2799e: "pu4", // 𧦞
+ 0x2799f: "fan1", // 𧦟
+ 0x279a4: "jia1", // 𧦤
+ 0x279a7: "yi2", // 𧦧
+ 0x279ad: "tuo1", // 𧦭
+ 0x279ae: "na2", // 𧦮
+ 0x279b8: "yin2", // 𧦸
+ 0x279b9: "yin4", // 𧦹
+ 0x279c3: "ji4", // 𧧃
+ 0x279c4: "wang4", // 𧧄
+ 0x279c5: "shi4", // 𧧅
+ 0x279c6: "dui1", // 𧧆
+ 0x279c7: "duo4", // 𧧇
+ 0x279c9: "tuo2", // 𧧉
+ 0x279ca: "wa1", // 𧧊
+ 0x279cb: "li4", // 𧧋
+ 0x279cf: "re4", // 𧧏
+ 0x279d2: "ci4", // 𧧒
+ 0x279d3: "xu4", // 𧧓
+ 0x279d4: "zhou1", // 𧧔
+ 0x279d5: "zi4", // 𧧕
+ 0x279dc: "wang3", // 𧧜
+ 0x279dd: "ya3", // 𧧝
+ 0x279df: "ji4", // 𧧟
+ 0x279e0: "chao3", // 𧧠
+ 0x279e9: "ji2", // 𧧩
+ 0x279f5: "shan3", // 𧧵
+ 0x279f6: "tu2", // 𧧶
+ 0x279f8: "bie2", // 𧧸
+ 0x279f9: "xi4", // 𧧹
+ 0x279fa: "pi1", // 𧧺
+ 0x279fb: "zha4", // 𧧻
+ 0x279fe: "hui4", // 𧧾
+ 0x27a00: "suo1", // 𧨀
+ 0x27a02: "he4", // 𧨂
+ 0x27a04: "yue1", // 𧨄
+ 0x27a06: "wu1", // 𧨆
+ 0x27a08: "ling2", // 𧨈
+ 0x27a0a: "zha4", // 𧨊
+ 0x27a0b: "hua2", // 𧨋
+ 0x27a17: "chan2", // 𧨗
+ 0x27a1f: "e4", // 𧨟
+ 0x27a21: "chen2", // 𧨡
+ 0x27a27: "sui4", // 𧨧
+ 0x27a29: "tian3", // 𧨩
+ 0x27a30: "zhi4", // 𧨰
+ 0x27a31: "ti4", // 𧨱
+ 0x27a32: "ao1", // 𧨲
+ 0x27a33: "zhuo2", // 𧨳
+ 0x27a34: "zi4", // 𧨴
+ 0x27a35: "ke1", // 𧨵
+ 0x27a37: "se4", // 𧨷
+ 0x27a38: "tian2", // 𧨸
+ 0x27a39: "lu4", // 𧨹
+ 0x27a3e: "shan2", // 𧨾
+ 0x27a3f: "zha3", // 𧨿
+ 0x27a43: "chong1", // 𧩃
+ 0x27a45: "yan4", // 𧩅
+ 0x27a52: "mu3", // 𧩒
+ 0x27a53: "hu1", // 𧩓
+ 0x27a5a: "chi1", // 𧩚
+ 0x27a5d: "su4", // 𧩝
+ 0x27a63: "nao3", // 𧩣
+ 0x27a66: "ji2", // 𧩦
+ 0x27a67: "duo2", // 𧩧
+ 0x27a68: "hou4", // 𧩨
+ 0x27a6a: "cong4", // 𧩪
+ 0x27a6b: "zha1", // 𧩫
+ 0x27a6c: "yin2", // 𧩬
+ 0x27a6e: "xiao3", // 𧩮
+ 0x27a70: "bian4", // 𧩰
+ 0x27a71: "beng4", // 𧩱
+ 0x27a72: "la4", // 𧩲
+ 0x27a74: "chi1", // 𧩴
+ 0x27a76: "qia4", // 𧩶
+ 0x27a78: "an1", // 𧩸
+ 0x27a79: "shi1", // 𧩹
+ 0x27a7c: "chi4", // 𧩼
+ 0x27a85: "nu4", // 𧪅
+ 0x27a87: "ji4", // 𧪇
+ 0x27a93: "ou3", // 𧪓
+ 0x27a95: "xia1", // 𧪕
+ 0x27a98: "chai4", // 𧪘
+ 0x27a9a: "ai2", // 𧪚
+ 0x27a9d: "sheng4", // 𧪝
+ 0x27a9e: "he2", // 𧪞
+ 0x27aa0: "ji2", // 𧪠
+ 0x27aa1: "chi1", // 𧪡
+ 0x27aa2: "xi4", // 𧪢
+ 0x27aa3: "zheng1", // 𧪣
+ 0x27aa6: "ta1", // 𧪦
+ 0x27aa8: "ma4", // 𧪨
+ 0x27aab: "pi1", // 𧪫
+ 0x27aae: "xu1", // 𧪮
+ 0x27aaf: "qian3", // 𧪯
+ 0x27ab9: "xia4", // 𧪹
+ 0x27aca: "yu4", // 𧫊
+ 0x27ad1: "jie2", // 𧫑
+ 0x27ad2: "xia4", // 𧫒
+ 0x27ad3: "lu3", // 𧫓
+ 0x27ad5: "qie4", // 𧫕
+ 0x27ad7: "cha4", // 𧫗
+ 0x27adb: "yang4", // 𧫛
+ 0x27adc: "ji4", // 𧫜
+ 0x27add: "sha3", // 𧫝
+ 0x27ade: "lou4", // 𧫞
+ 0x27ae0: "ji1", // 𧫠
+ 0x27ae1: "zhi4", // 𧫡
+ 0x27ae2: "wang4", // 𧫢
+ 0x27ae4: "bi4", // 𧫤
+ 0x27ae5: "an1", // 𧫥
+ 0x27ae6: "yi1", // 𧫦
+ 0x27ae7: "an1", // 𧫧
+ 0x27aec: "li2", // 𧫬
+ 0x27af9: "xian1", // 𧫹
+ 0x27afe: "jiu4", // 𧫾
+ 0x27aff: "tan3", // 𧫿
+ 0x27b01: "hao4", // 𧬁
+ 0x27b02: "he4", // 𧬂
+ 0x27b05: "zha1", // 𧬅
+ 0x27b06: "zhan3", // 𧬆
+ 0x27b07: "yi4", // 𧬇
+ 0x27b08: "xi4", // 𧬈
+ 0x27b0a: "xi4", // 𧬊
+ 0x27b0b: "fa4", // 𧬋
+ 0x27b0c: "yan2", // 𧬌
+ 0x27b0f: "mu3", // 𧬏
+ 0x27b15: "gu1", // 𧬕
+ 0x27b1e: "yun2", // 𧬞
+ 0x27b24: "zhong4", // 𧬤
+ 0x27b26: "chan3", // 𧬦
+ 0x27b27: "chuang2", // 𧬧
+ 0x27b28: "hui4", // 𧬨
+ 0x27b29: "za2", // 𧬩
+ 0x27b2a: "gun4", // 𧬪
+ 0x27b2b: "jian3", // 𧬫
+ 0x27b2c: "ya2", // 𧬬
+ 0x27b30: "xiang4", // 𧬰
+ 0x27b31: "he4", // 𧬱
+ 0x27b43: "dan4", // 𧭃
+ 0x27b47: "mian2", // 𧭇
+ 0x27b48: "ning2", // 𧭈
+ 0x27b4a: "meng2", // 𧭊
+ 0x27b4c: "lie4", // 𧭌
+ 0x27b4d: "zhou4", // 𧭍
+ 0x27b4e: "pu1", // 𧭎
+ 0x27b4f: "tai1", // 𧭏
+ 0x27b53: "ying2", // 𧭓
+ 0x27b54: "teng2", // 𧭔
+ 0x27b55: "guo2", // 𧭕
+ 0x27b5a: "qiang2", // 𧭚
+ 0x27b5c: "lv4", // 𧭜
+ 0x27b5d: "sa4", // 𧭝
+ 0x27b5e: "lie4", // 𧭞
+ 0x27b5f: "chi2", // 𧭟
+ 0x27b60: "xie3", // 𧭠
+ 0x27b63: "guo2", // 𧭣
+ 0x27b64: "bao4", // 𧭤
+ 0x27b65: "luo4", // 𧭥
+ 0x27b66: "juan4", // 𧭦
+ 0x27b6a: "e4", // 𧭪
+ 0x27b73: "he2", // 𧭳
+ 0x27b75: "mei4", // 𧭵
+ 0x27b78: "xie4", // 𧭸
+ 0x27b79: "pin2", // 𧭹
+ 0x27b7b: "han1", // 𧭻
+ 0x27b7c: "chen4", // 𧭼
+ 0x27b7d: "shan4", // 𧭽
+ 0x27b7e: "hui4", // 𧭾
+ 0x27b86: "ying1", // 𧮆
+ 0x27b88: "jian3", // 𧮈
+ 0x27b8d: "an1", // 𧮍
+ 0x27b91: "ta4", // 𧮑
+ 0x27b92: "yi1", // 𧮒
+ 0x27b93: "tui2", // 𧮓
+ 0x27b97: "liu2", // 𧮗
+ 0x27b99: "zuo2", // 𧮙
+ 0x27b9b: "li2", // 𧮛
+ 0x27b9d: "pin2", // 𧮝
+ 0x27b9e: "xue4", // 𧮞
+ 0x27ba0: "nen4", // 𧮠
+ 0x27ba1: "dou4", // 𧮡
+ 0x27ba4: "lan3", // 𧮤
+ 0x27baa: "zhan1", // 𧮪
+ 0x27bab: "jue2", // 𧮫
+ 0x27bac: "zhen1", // 𧮬
+ 0x27bad: "ji2", // 𧮭
+ 0x27bae: "qian1", // 𧮮
+ 0x27bb0: "han1", // 𧮰
+ 0x27bb1: "fen2", // 𧮱
+ 0x27bb3: "han1", // 𧮳
+ 0x27bb4: "hong2", // 𧮴
+ 0x27bb5: "he2", // 𧮵
+ 0x27bb6: "hou2", // 𧮶
+ 0x27bba: "zhan4", // 𧮺
+ 0x27bbb: "chou2", // 𧮻
+ 0x27bbc: "tai4", // 𧮼
+ 0x27bbd: "qian4", // 𧮽
+ 0x27bbf: "she4", // 𧮿
+ 0x27bc0: "ying1", // 𧯀
+ 0x27bc3: "qin1", // 𧯃
+ 0x27bc6: "huo4", // 𧯆
+ 0x27bc8: "xi4", // 𧯈
+ 0x27bc9: "he4", // 𧯉
+ 0x27bca: "xi4", // 𧯊
+ 0x27bcb: "xia1", // 𧯋
+ 0x27bcc: "hao1", // 𧯌
+ 0x27bcd: "lao4", // 𧯍
+ 0x27bcf: "li4", // 𧯏
+ 0x27bd2: "cheng1", // 𧯒
+ 0x27bd6: "jun4", // 𧯖
+ 0x27bd7: "xi1", // 𧯗
+ 0x27bd8: "han3", // 𧯘
+ 0x27bde: "dou4", // 𧯞
+ 0x27be0: "dou1", // 𧯠
+ 0x27be1: "wan1", // 𧯡
+ 0x27be4: "dou1", // 𧯤
+ 0x27be5: "zai4", // 𧯥
+ 0x27be6: "juan4", // 𧯦
+ 0x27be8: "lou3", // 𧯨
+ 0x27be9: "chu4", // 𧯩
+ 0x27beb: "zheng1", // 𧯫
+ 0x27bef: "qi2", // 𧯯
+ 0x27bf0: "kan4", // 𧯰
+ 0x27bf1: "huo4", // 𧯱
+ 0x27bf2: "lai2", // 𧯲
+ 0x27bfa: "gai1", // 𧯺
+ 0x27bfc: "shou4", // 𧯼
+ 0x27bfe: "dong1", // 𧯾
+ 0x27c03: "lou2", // 𧰃
+ 0x27c04: "tuan1", // 𧰄
+ 0x27c07: "yu2", // 𧰇
+ 0x27c08: "wu4", // 𧰈
+ 0x27c0a: "tian2", // 𧰊
+ 0x27c12: "guo2", // 𧰒
+ 0x27c18: "tan2", // 𧰘
+ 0x27c19: "qi2", // 𧰙
+ 0x27c20: "lie4", // 𧰠
+ 0x27c21: "li4", // 𧰡
+ 0x27c23: "xun1", // 𧰣
+ 0x27c28: "geng4", // 𧰨
+ 0x27c29: "ting1", // 𧰩
+ 0x27c2a: "han4", // 𧰪
+ 0x27c2b: "chu4", // 𧰫
+ 0x27c2d: "tun2", // 𧰭
+ 0x27c2f: "xiong2", // 𧰯
+ 0x27c30: "you2", // 𧰰
+ 0x27c31: "mo4", // 𧰱
+ 0x27c32: "chi3", // 𧰲
+ 0x27c34: "hu3", // 𧰴
+ 0x27c35: "du1", // 𧰵
+ 0x27c37: "mu3", // 𧰷
+ 0x27c39: "na4", // 𧰹
+ 0x27c3b: "ling2", // 𧰻
+ 0x27c3f: "ai4", // 𧰿
+ 0x27c40: "xian1", // 𧱀
+ 0x27c44: "kan3", // 𧱄
+ 0x27c45: "si4", // 𧱅
+ 0x27c46: "san1", // 𧱆
+ 0x27c4a: "yi4", // 𧱊
+ 0x27c4f: "yi4", // 𧱏
+ 0x27c50: "xiao4", // 𧱐
+ 0x27c52: "zhi1", // 𧱒
+ 0x27c53: "dou4", // 𧱓
+ 0x27c58: "mai4", // 𧱘
+ 0x27c5c: "lun2", // 𧱜
+ 0x27c5d: "jue2", // 𧱝
+ 0x27c61: "qiang1", // 𧱡
+ 0x27c62: "ling2", // 𧱢
+ 0x27c69: "pian2", // 𧱩
+ 0x27c6a: "cou4", // 𧱪
+ 0x27c6b: "duo4", // 𧱫
+ 0x27c6c: "yu3", // 𧱬
+ 0x27c70: "zhuo1", // 𧱰
+ 0x27c72: "xi4", // 𧱲
+ 0x27c73: "huai4", // 𧱳
+ 0x27c74: "ming2", // 𧱴
+ 0x27c75: "tang2", // 𧱵
+ 0x27c79: "pu1", // 𧱹
+ 0x27c7b: "mi4", // 𧱻
+ 0x27c7c: "man2", // 𧱼
+ 0x27c7e: "guai1", // 𧱾
+ 0x27c80: "qian1", // 𧲀
+ 0x27c82: "lin2", // 𧲂
+ 0x27c83: "min3", // 𧲃
+ 0x27c84: "wei3", // 𧲄
+ 0x27c85: "ceng2", // 𧲅
+ 0x27c87: "hu4", // 𧲇
+ 0x27c88: "sui2", // 𧲈
+ 0x27c8b: "ju4", // 𧲋
+ 0x27c8c: "sha4", // 𧲌
+ 0x27c8d: "meng2", // 𧲍
+ 0x27c97: "wei2", // 𧲗
+ 0x27c98: "xi1", // 𧲘
+ 0x27c99: "ling4", // 𧲙
+ 0x27c9c: "bi4", // 𧲜
+ 0x27c9d: "wei4", // 𧲝
+ 0x27ca1: "li4", // 𧲡
+ 0x27ca2: "zhe2", // 𧲢
+ 0x27ca4: "yong2", // 𧲤
+ 0x27ca5: "hu2", // 𧲥
+ 0x27ca6: "wan2", // 𧲦
+ 0x27ca7: "ba1", // 𧲧
+ 0x27ca8: "jian1", // 𧲨
+ 0x27cad: "zuo3", // 𧲭
+ 0x27cae: "zhan3", // 𧲮
+ 0x27caf: "bo1", // 𧲯
+ 0x27cb0: "qiu1", // 𧲰
+ 0x27cb1: "yang1", // 𧲱
+ 0x27cb4: "dong1", // 𧲴
+ 0x27cb5: "qu2", // 𧲵
+ 0x27cba: "pi2", // 𧲺
+ 0x27cbb: "zhai3", // 𧲻
+ 0x27cbe: "shan1", // 𧲾
+ 0x27cbf: "gou4", // 𧲿
+ 0x27cc0: "biao4", // 𧳀
+ 0x27cc1: "yi2", // 𧳁
+ 0x27cc2: "fu2", // 𧳂
+ 0x27cc4: "xin4", // 𧳄
+ 0x27cc5: "shi4", // 𧳅
+ 0x27cc6: "tong1", // 𧳆
+ 0x27cc9: "ding1", // 𧳉
+ 0x27ccc: "tu1", // 𧳌
+ 0x27ccd: "xiao1", // 𧳍
+ 0x27cce: "wu2", // 𧳎
+ 0x27ccf: "pei2", // 𧳏
+ 0x27cd0: "hui1", // 𧳐
+ 0x27cd5: "lai2", // 𧳕
+ 0x27cd9: "si4", // 𧳙
+ 0x27cda: "cui3", // 𧳚
+ 0x27cdb: "sha4", // 𧳛
+ 0x27cdc: "zhou3", // 𧳜
+ 0x27cdd: "zhao4", // 𧳝
+ 0x27cde: "wei2", // 𧳞
+ 0x27cdf: "lai2", // 𧳟
+ 0x27ce0: "bi4", // 𧳠
+ 0x27ce3: "dong3", // 𧳣
+ 0x27ce6: "nao3", // 𧳦
+ 0x27ce7: "xie1", // 𧳧
+ 0x27ce8: "rao3", // 𧳨
+ 0x27ce9: "tuan4", // 𧳩
+ 0x27cea: "wei4", // 𧳪
+ 0x27ceb: "you2", // 𧳫
+ 0x27cec: "mei2", // 𧳬
+ 0x27ced: "yuan2", // 𧳭
+ 0x27cee: "zhong4", // 𧳮
+ 0x27cf6: "sou1", // 𧳶
+ 0x27cf8: "gu2", // 𧳸
+ 0x27cf9: "shao4", // 𧳹
+ 0x27cfb: "zhao3", // 𧳻
+ 0x27cfc: "pi2", // 𧳼
+ 0x27cff: "tong1", // 𧳿
+ 0x27d01: "chi1", // 𧴁
+ 0x27d02: "peng2", // 𧴂
+ 0x27d03: "chan2", // 𧴃
+ 0x27d04: "yong1", // 𧴄
+ 0x27d05: "shuang3", // 𧴅
+ 0x27d07: "wu3", // 𧴇
+ 0x27d09: "pi2", // 𧴉
+ 0x27d0a: "huan4", // 𧴊
+ 0x27d0c: "fu2", // 𧴌
+ 0x27d0e: "biao4", // 𧴎
+ 0x27d13: "nao2", // 𧴓
+ 0x27d15: "biao4", // 𧴕
+ 0x27d16: "wei4", // 𧴖
+ 0x27d17: "yong1", // 𧴗
+ 0x27d19: "nao3", // 𧴙
+ 0x27d1a: "guai4", // 𧴚
+ 0x27d20: "li4", // 𧴠
+ 0x27d22: "xin4", // 𧴢
+ 0x27d23: "yan2", // 𧴣
+ 0x27d24: "po4", // 𧴤
+ 0x27d25: "pei2", // 𧴥
+ 0x27d2a: "suo3", // 𧴪
+ 0x27d2c: "ren4", // 𧴬
+ 0x27d2d: "shan3", // 𧴭
+ 0x27d32: "suo3", // 𧴲
+ 0x27d38: "dan1", // 𧴸
+ 0x27d3a: "men4", // 𧴺
+ 0x27d43: "shou3", // 𧵃
+ 0x27d48: "gou4", // 𧵈
+ 0x27d4a: "han1", // 𧵊
+ 0x27d4b: "shi4", // 𧵋
+ 0x27d4c: "yang3", // 𧵌
+ 0x27d4e: "gu3", // 𧵎
+ 0x27d5b: "ke1", // 𧵛
+ 0x27d5e: "ju1", // 𧵞
+ 0x27d60: "pai4", // 𧵠
+ 0x27d61: "ce4", // 𧵡
+ 0x27d62: "bao1", // 𧵢
+ 0x27d63: "xiong1", // 𧵣
+ 0x27d64: "cai2", // 𧵤
+ 0x27d67: "lin3", // 𧵧
+ 0x27d68: "ai4", // 𧵨
+ 0x27d6c: "mi4", // 𧵬
+ 0x27d6d: "lai3", // 𧵭
+ 0x27d71: "xiao1", // 𧵱
+ 0x27d73: "she2", // 𧵳
+ 0x27d7b: "huo2", // 𧵻
+ 0x27d7c: "ni4", // 𧵼
+ 0x27d84: "zheng4", // 𧶄
+ 0x27d86: "lin4", // 𧶆
+ 0x27d87: "zha2", // 𧶇
+ 0x27d8a: "yun2", // 𧶊
+ 0x27d8d: "xu4", // 𧶍
+ 0x27d94: "cheng2", // 𧶔
+ 0x27d95: "wo3", // 𧶕
+ 0x27d96: "xi1", // 𧶖
+ 0x27d99: "bei4", // 𧶙
+ 0x27d9c: "shang1", // 𧶜
+ 0x27da0: "yu4", // 𧶠
+ 0x27da1: "mi4", // 𧶡
+ 0x27db2: "duan3", // 𧶲
+ 0x27db5: "cha4", // 𧶵
+ 0x27db7: "ze2", // 𧶷
+ 0x27db8: "cheng4", // 𧶸
+ 0x27dba: "ting2", // 𧶺
+ 0x27dc5: "yi2", // 𧷅
+ 0x27dcb: "yao1", // 𧷋
+ 0x27dce: "ku1", // 𧷎
+ 0x27dd0: "fen2", // 𧷐
+ 0x27dd1: "xie2", // 𧷑
+ 0x27dd2: "cheng4", // 𧷒
+ 0x27ddb: "kui4", // 𧷛
+ 0x27ddf: "bin1", // 𧷟
+ 0x27de1: "lou2", // 𧷡
+ 0x27de5: "yi4", // 𧷥
+ 0x27de6: "mi4", // 𧷦
+ 0x27de7: "xie4", // 𧷧
+ 0x27df1: "gui1", // 𧷱
+ 0x27df3: "luo2", // 𧷳
+ 0x27df6: "shan4", // 𧷶
+ 0x27dfe: "ju2", // 𧷾
+ 0x27dff: "du1", // 𧷿
+ 0x27e02: "xian1", // 𧸂
+ 0x27e05: "zhi3", // 𧸅
+ 0x27e08: "bin4", // 𧸈
+ 0x27e15: "zhi3", // 𧸕
+ 0x27e16: "zhuan4", // 𧸖
+ 0x27e17: "xue2", // 𧸗
+ 0x27e18: "lian4", // 𧸘
+ 0x27e19: "sui4", // 𧸙
+ 0x27e26: "lan4", // 𧸦
+ 0x27e27: "ju4", // 𧸧
+ 0x27e28: "mian2", // 𧸨
+ 0x27e29: "xun4", // 𧸩
+ 0x27e2a: "zhan4", // 𧸪
+ 0x27e2b: "gun4", // 𧸫
+ 0x27e32: "zhi4", // 𧸲
+ 0x27e3d: "wei4", // 𧸽
+ 0x27e3e: "quan3", // 𧸾
+ 0x27e3f: "chai4", // 𧸿
+ 0x27e48: "reng2", // 𧹈
+ 0x27e4a: "yue4", // 𧹊
+ 0x27e4c: "zi1", // 𧹌
+ 0x27e50: "luo4", // 𧹐
+ 0x27e51: "gui4", // 𧹑
+ 0x27e53: "cheng2", // 𧹓
+ 0x27e55: "ju1", // 𧹕
+ 0x27e56: "tian3", // 𧹖
+ 0x27e57: "wan4", // 𧹗
+ 0x27e5b: "zhi1", // 𧹛
+ 0x27e5e: "nan3", // 𧹞
+ 0x27e63: "han1", // 𧹣
+ 0x27e68: "xi1", // 𧹨
+ 0x27e69: "lin2", // 𧹩
+ 0x27e6c: "yan1", // 𧹬
+ 0x27e6d: "xu4", // 𧹭
+ 0x27e72: "hu4", // 𧹲
+ 0x27e73: "gan4", // 𧹳
+ 0x27e74: "xu4", // 𧹴
+ 0x27e76: "xi4", // 𧹶
+ 0x27e7a: "cui4", // 𧹺
+ 0x27e7d: "xi4", // 𧹽
+ 0x27e7e: "hu2", // 𧹾
+ 0x27e85: "yan1", // 𧺅
+ 0x27e8e: "yi4", // 𧺎
+ 0x27e8f: "chi2", // 𧺏
+ 0x27e90: "jue2", // 𧺐
+ 0x27e92: "zu2", // 𧺒
+ 0x27e9c: "jiao4", // 𧺜
+ 0x27e9d: "yi4", // 𧺝
+ 0x27e9f: "tan3", // 𧺟
+ 0x27ea0: "chi4", // 𧺠
+ 0x27ea1: "ba2", // 𧺡
+ 0x27ea2: "tou4", // 𧺢
+ 0x27ea3: "zong1", // 𧺣
+ 0x27ea4: "qiu2", // 𧺤
+ 0x27ea7: "chi4", // 𧺧
+ 0x27ea8: "xi3", // 𧺨
+ 0x27eb0: "ni4", // 𧺰
+ 0x27eb2: "cu1", // 𧺲
+ 0x27eb4: "wu3", // 𧺴
+ 0x27eb6: "chu4", // 𧺶
+ 0x27eb7: "su1", // 𧺷
+ 0x27eb8: "yong2", // 𧺸
+ 0x27eb9: "ju3", // 𧺹
+ 0x27eba: "ba2", // 𧺺
+ 0x27ebc: "ci3", // 𧺼
+ 0x27ebd: "di4", // 𧺽
+ 0x27ebe: "pan3", // 𧺾
+ 0x27ebf: "chi4", // 𧺿
+ 0x27ec1: "qiu3", // 𧻁
+ 0x27ec3: "yan2", // 𧻃
+ 0x27ecd: "zhai3", // 𧻍
+ 0x27ed2: "xian4", // 𧻒
+ 0x27ed3: "beng4", // 𧻓
+ 0x27ed4: "kuang1", // 𧻔
+ 0x27ed5: "qi4", // 𧻕
+ 0x27ed6: "zhou1", // 𧻖
+ 0x27ed7: "ju2", // 𧻗
+ 0x27ed8: "qie4", // 𧻘
+ 0x27ed9: "mo4", // 𧻙
+ 0x27eda: "yuan2", // 𧻚
+ 0x27edc: "gui4", // 𧻜
+ 0x27edd: "zui1", // 𧻝
+ 0x27ee7: "qie4", // 𧻧
+ 0x27ef0: "hu2", // 𧻰
+ 0x27ef1: "qiu2", // 𧻱
+ 0x27ef2: "hai2", // 𧻲
+ 0x27ef3: "fu4", // 𧻳
+ 0x27ef4: "lang4", // 𧻴
+ 0x27ef5: "sha4", // 𧻵
+ 0x27ef6: "xi1", // 𧻶
+ 0x27ef7: "bu1", // 𧻷
+ 0x27ef8: "shi4", // 𧻸
+ 0x27ef9: "yong3", // 𧻹
+ 0x27efa: "guang1", // 𧻺
+ 0x27efc: "nie4", // 𧻼
+ 0x27eff: "hou3", // 𧻿
+ 0x27f0a: "mi4", // 𧼊
+ 0x27f0e: "e4", // 𧼎
+ 0x27f0f: "xian2", // 𧼏
+ 0x27f10: "yun3", // 𧼐
+ 0x27f11: "xu4", // 𧼑
+ 0x27f12: "qin3", // 𧼒
+ 0x27f13: "dong1", // 𧼓
+ 0x27f14: "leng2", // 𧼔
+ 0x27f15: "qi4", // 𧼕
+ 0x27f16: "lan2", // 𧼖
+ 0x27f17: "fu2", // 𧼗
+ 0x27f18: "qi3", // 𧼘
+ 0x27f19: "chong3", // 𧼙
+ 0x27f1c: "cu4", // 𧼜
+ 0x27f1f: "mo4", // 𧼟
+ 0x27f20: "bei1", // 𧼠
+ 0x27f24: "dao4", // 𧼤
+ 0x27f28: "jie2", // 𧼨
+ 0x27f29: "chong4", // 𧼩
+ 0x27f2a: "chi4", // 𧼪
+ 0x27f2b: "yu4", // 𧼫
+ 0x27f2c: "cui1", // 𧼬
+ 0x27f2d: "su4", // 𧼭
+ 0x27f2e: "ti4", // 𧼮
+ 0x27f2f: "shu4", // 𧼯
+ 0x27f30: "zha2", // 𧼰
+ 0x27f31: "fu2", // 𧼱
+ 0x27f33: "che4", // 𧼳
+ 0x27f34: "fo2", // 𧼴
+ 0x27f35: "hou2", // 𧼵
+ 0x27f36: "zha2", // 𧼶
+ 0x27f44: "jie2", // 𧽄
+ 0x27f45: "zha2", // 𧽅
+ 0x27f46: "zhan1", // 𧽆
+ 0x27f49: "yan3", // 𧽉
+ 0x27f4a: "hai2", // 𧽊
+ 0x27f4b: "wu3", // 𧽋
+ 0x27f4c: "hua2", // 𧽌
+ 0x27f4d: "dian1", // 𧽍
+ 0x27f4e: "yao2", // 𧽎
+ 0x27f4f: "sou1", // 𧽏
+ 0x27f50: "qian1", // 𧽐
+ 0x27f51: "ji2", // 𧽑
+ 0x27f52: "xiong4", // 𧽒
+ 0x27f53: "qi4", // 𧽓
+ 0x27f54: "jun1", // 𧽔
+ 0x27f56: "hai2", // 𧽖
+ 0x27f5e: "yan3", // 𧽞
+ 0x27f5f: "jie2", // 𧽟
+ 0x27f60: "cui1", // 𧽠
+ 0x27f62: "tuan2", // 𧽢
+ 0x27f63: "zhang1", // 𧽣
+ 0x27f64: "piao1", // 𧽤
+ 0x27f65: "lu4", // 𧽥
+ 0x27f66: "zhi1", // 𧽦
+ 0x27f67: "chu4", // 𧽧
+ 0x27f68: "mi4", // 𧽨
+ 0x27f69: "qiang1", // 𧽩
+ 0x27f6b: "lian4", // 𧽫
+ 0x27f72: "li4", // 𧽲
+ 0x27f76: "e2", // 𧽶
+ 0x27f77: "su4", // 𧽷
+ 0x27f78: "jue2", // 𧽸
+ 0x27f7b: "ju2", // 𧽻
+ 0x27f7c: "tan2", // 𧽼
+ 0x27f7d: "liao2", // 𧽽
+ 0x27f7e: "san1", // 𧽾
+ 0x27f7f: "dong4", // 𧽿
+ 0x27f81: "za2", // 𧾁
+ 0x27f82: "zhi2", // 𧾂
+ 0x27f86: "xuan4", // 𧾆
+ 0x27f87: "ling2", // 𧾇
+ 0x27f8a: "deng1", // 𧾊
+ 0x27f8d: "zhan1", // 𧾍
+ 0x27f8e: "xuan1", // 𧾎
+ 0x27f8f: "qin3", // 𧾏
+ 0x27f90: "jiao4", // 𧾐
+ 0x27f91: "pi4", // 𧾑
+ 0x27f94: "han3", // 𧾔
+ 0x27f9a: "yu2", // 𧾚
+ 0x27f9b: "guo2", // 𧾛
+ 0x27f9d: "xun2", // 𧾝
+ 0x27fa0: "xun2", // 𧾠
+ 0x27fa1: "chan2", // 𧾡
+ 0x27fa2: "jie2", // 𧾢
+ 0x27fa3: "ju2", // 𧾣
+ 0x27fa4: "yan3", // 𧾤
+ 0x27fa5: "du2", // 𧾥
+ 0x27fa7: "hong4", // 𧾧
+ 0x27fa8: "xian4", // 𧾨
+ 0x27fa9: "xun2", // 𧾩
+ 0x27fae: "ling2", // 𧾮
+ 0x27faf: "jie2", // 𧾯
+ 0x27fb0: "yi4", // 𧾰
+ 0x27fb1: "qu2", // 𧾱
+ 0x27fb2: "gan1", // 𧾲
+ 0x27fb3: "feng1", // 𧾳
+ 0x27fb5: "jue2", // 𧾵
+ 0x27fb6: "qu1", // 𧾶
+ 0x27fbb: "jiu4", // 𧾻
+ 0x27fbd: "ji4", // 𧾽
+ 0x27fbe: "ji3", // 𧾾
+ 0x27fc5: "xi2", // 𧿅
+ 0x27fc6: "pang1", // 𧿆
+ 0x27fc8: "kuang4", // 𧿈
+ 0x27fc9: "ku4", // 𧿉
+ 0x27fcb: "ku4", // 𧿋
+ 0x27fcc: "zha4", // 𧿌
+ 0x27fcf: "ba4", // 𧿏
+ 0x27fd2: "chen3", // 𧿒
+ 0x27fd3: "hu4", // 𧿓
+ 0x27fd4: "nu4", // 𧿔
+ 0x27fd5: "e2", // 𧿕
+ 0x27fd6: "xiong1", // 𧿖
+ 0x27fd7: "dun3", // 𧿗
+ 0x27fd8: "sheng1", // 𧿘
+ 0x27fd9: "wan2", // 𧿙
+ 0x27fda: "fen1", // 𧿚
+ 0x27fdd: "xi1", // 𧿝
+ 0x27fde: "zi1", // 𧿞
+ 0x27fe0: "hu4", // 𧿠
+ 0x27fe5: "bie2", // 𧿥
+ 0x27fe7: "tuo4", // 𧿧
+ 0x27fe8: "ban3", // 𧿨
+ 0x27fe9: "ge2", // 𧿩
+ 0x27feb: "ke1", // 𧿫
+ 0x27ff2: "zhui4", // 𧿲
+ 0x27ff3: "fu2", // 𧿳
+ 0x27ff4: "mo4", // 𧿴
+ 0x27ff5: "jia2", // 𧿵
+ 0x27ff6: "tuo2", // 𧿶
+ 0x27ff7: "yu4", // 𧿷
+ 0x27ff9: "mu3", // 𧿹
+ 0x27ffa: "jue2", // 𧿺
+ 0x27ffb: "ju2", // 𧿻
+ 0x27ffc: "gua1", // 𧿼
+ 0x27ffd: "po3", // 𧿽
+ 0x28000: "ni3", // 𨀀
+ 0x28004: "wa3", // 𨀄
+ 0x28005: "yan3", // 𨀅
+ 0x28014: "chou3", // 𨀔
+ 0x28015: "kuang1", // 𨀕
+ 0x28016: "hai4", // 𨀖
+ 0x28018: "xiang2", // 𨀘
+ 0x28019: "xi1", // 𨀙
+ 0x2801b: "cun2", // 𨀛
+ 0x2801c: "tong1", // 𨀜
+ 0x2801d: "ruo4", // 𨀝
+ 0x2801f: "duo2", // 𨀟
+ 0x28020: "che4", // 𨀠
+ 0x28024: "lei4", // 𨀤
+ 0x28025: "zi1", // 𨀥
+ 0x28027: "zheng3", // 𨀧
+ 0x28028: "zuo3", // 𨀨
+ 0x2802b: "kang1", // 𨀫
+ 0x2802c: "zai4", // 𨀬
+ 0x2802e: "yuan1", // 𨀮
+ 0x2802f: "qiong2", // 𨀯
+ 0x28033: "fa2", // 𨀳
+ 0x28034: "xun2", // 𨀴
+ 0x28036: "ji4", // 𨀶
+ 0x28038: "cha1", // 𨀸
+ 0x28040: "shu1", // 𨁀
+ 0x28041: "xuan4", // 𨁁
+ 0x28042: "xie2", // 𨁂
+ 0x28043: "ti1", // 𨁃
+ 0x28044: "han4", // 𨁄
+ 0x28045: "xian1", // 𨁅
+ 0x28046: "shan1", // 𨁆
+ 0x28047: "tun4", // 𨁇
+ 0x28048: "hang2", // 𨁈
+ 0x28049: "kun3", // 𨁉
+ 0x2804a: "cen2", // 𨁊
+ 0x2804b: "dou1", // 𨁋
+ 0x2804c: "nuo2", // 𨁌
+ 0x2804d: "yan4", // 𨁍
+ 0x2804e: "cheng2", // 𨁎
+ 0x2804f: "pu1", // 𨁏
+ 0x28050: "qi4", // 𨁐
+ 0x28051: "yue4", // 𨁑
+ 0x28052: "fu1", // 𨁒
+ 0x28057: "ting3", // 𨁗
+ 0x2805f: "wo3", // 𨁟
+ 0x28060: "sheng1", // 𨁠
+ 0x28061: "tuo3", // 𨁡
+ 0x28074: "tan3", // 𨁴
+ 0x28076: "ya3", // 𨁶
+ 0x28077: "zhi4", // 𨁷
+ 0x28078: "lu4", // 𨁸
+ 0x28079: "yan3", // 𨁹
+ 0x2807a: "ju1", // 𨁺
+ 0x2807d: "de2", // 𨁽
+ 0x2807f: "chu4", // 𨁿
+ 0x28080: "zu3", // 𨂀
+ 0x28081: "e4", // 𨂁
+ 0x28082: "zhi2", // 𨂂
+ 0x28083: "peng2", // 𨂃
+ 0x28085: "bie1", // 𨂅
+ 0x28087: "di3", // 𨂇
+ 0x28090: "lai2", // 𨂐
+ 0x28092: "ye4", // 𨂒
+ 0x2809c: "hao2", // 𨂜
+ 0x2809d: "pan2", // 𨂝
+ 0x2809e: "tan4", // 𨂞
+ 0x2809f: "kang1", // 𨂟
+ 0x280a0: "xu1", // 𨂠
+ 0x280a1: "zou4", // 𨂡
+ 0x280a2: "ji4", // 𨂢
+ 0x280a3: "wu4", // 𨂣
+ 0x280a6: "chuan4", // 𨂦
+ 0x280a9: "po4", // 𨂩
+ 0x280aa: "yan3", // 𨂪
+ 0x280ab: "tuo4", // 𨂫
+ 0x280ad: "du2", // 𨂭
+ 0x280af: "pian2", // 𨂯
+ 0x280b0: "chi4", // 𨂰
+ 0x280b1: "hun4", // 𨂱
+ 0x280b2: "ping1", // 𨂲
+ 0x280b4: "cong1", // 𨂴
+ 0x280b5: "zha3", // 𨂵
+ 0x280ba: "wan1", // 𨂺
+ 0x280bf: "wai3", // 𨂿
+ 0x280c3: "e4", // 𨃃
+ 0x280c4: "wei4", // 𨃄
+ 0x280c5: "bai1", // 𨃅
+ 0x280c7: "jiang1", // 𨃇
+ 0x280d3: "cha2", // 𨃓
+ 0x280d5: "chu4", // 𨃕
+ 0x280d6: "kua4", // 𨃖
+ 0x280d7: "teng2", // 𨃗
+ 0x280d8: "zou1", // 𨃘
+ 0x280d9: "li4", // 𨃙
+ 0x280da: "ta4", // 𨃚
+ 0x280db: "sa4", // 𨃛
+ 0x280de: "pan2", // 𨃞
+ 0x280df: "pan2", // 𨃟
+ 0x280e3: "sao4", // 𨃣
+ 0x280e4: "qiao1", // 𨃤
+ 0x280ed: "zu2", // 𨃭
+ 0x280ef: "zhi4", // 𨃯
+ 0x280f0: "yan3", // 𨃰
+ 0x280f2: "jie2", // 𨃲
+ 0x280f3: "neng2", // 𨃳
+ 0x28104: "luan2", // 𨄄
+ 0x28105: "qu1", // 𨄅
+ 0x28107: "deng4", // 𨄇
+ 0x28108: "liang2", // 𨄈
+ 0x28109: "chan3", // 𨄉
+ 0x2810a: "qie4", // 𨄊
+ 0x2810b: "lou4", // 𨄋
+ 0x2810c: "die2", // 𨄌
+ 0x2810d: "cui1", // 𨄍
+ 0x28110: "ji3", // 𨄐
+ 0x28113: "chao2", // 𨄓
+ 0x28114: "shuan4", // 𨄔
+ 0x28115: "zu2", // 𨄕
+ 0x28117: "kang1", // 𨄗
+ 0x2811a: "qiang1", // 𨄚
+ 0x2811b: "li2", // 𨄛
+ 0x2812e: "shuai1", // 𨄮
+ 0x2812f: "yu4", // 𨄯
+ 0x28130: "zhang1", // 𨄰
+ 0x28131: "lei3", // 𨄱
+ 0x28145: "po2", // 𨅅
+ 0x2814a: "zhe2", // 𨅊
+ 0x2814b: "xiao4", // 𨅋
+ 0x2814d: "tan3", // 𨅍
+ 0x2814e: "cui4", // 𨅎
+ 0x2814f: "lan2", // 𨅏
+ 0x28151: "xu1", // 𨅑
+ 0x28152: "shu4", // 𨅒
+ 0x28153: "zha3", // 𨅓
+ 0x28154: "can2", // 𨅔
+ 0x28157: "bi3", // 𨅗
+ 0x28158: "peng4", // 𨅘
+ 0x2815d: "cheng2", // 𨅝
+ 0x28163: "qiao2", // 𨅣
+ 0x28164: "ji1", // 𨅤
+ 0x2816a: "zhai1", // 𨅪
+ 0x2816c: "lan2", // 𨅬
+ 0x28181: "tian3", // 𨆁
+ 0x28182: "sa4", // 𨆂
+ 0x28183: "jin1", // 𨆃
+ 0x28184: "zhu4", // 𨆄
+ 0x28185: "duo4", // 𨆅
+ 0x28187: "cha4", // 𨆇
+ 0x28188: "juan4", // 𨆈
+ 0x28189: "tang2", // 𨆉
+ 0x2818a: "beng4", // 𨆊
+ 0x2818c: "fan2", // 𨆌
+ 0x2818d: "lie4", // 𨆍
+ 0x2818e: "zei2", // 𨆎
+ 0x2818f: "sui4", // 𨆏
+ 0x28199: "se4", // 𨆙
+ 0x281a7: "zhi4", // 𨆧
+ 0x281a8: "tui2", // 𨆨
+ 0x281aa: "qing1", // 𨆪
+ 0x281ac: "chuo4", // 𨆬
+ 0x281b0: "ta4", // 𨆰
+ 0x281b1: "bing4", // 𨆱
+ 0x281b2: "wen3", // 𨆲
+ 0x281b5: "po3", // 𨆵
+ 0x281bd: "mo2", // 𨆽
+ 0x281be: "ca1", // 𨆾
+ 0x281c1: "kuang4", // 𨇁
+ 0x281c3: "cuo2", // 𨇃
+ 0x281c4: "rao3", // 𨇄
+ 0x281c5: "bao4", // 𨇅
+ 0x281c6: "lai4", // 𨇆
+ 0x281cd: "nian3", // 𨇍
+ 0x281ce: "li2", // 𨇎
+ 0x281d5: "jiao3", // 𨇕
+ 0x281d6: "lu2", // 𨇖
+ 0x281d7: "li4", // 𨇗
+ 0x281d8: "long2", // 𨇘
+ 0x281d9: "gui4", // 𨇙
+ 0x281dd: "chan3", // 𨇝
+ 0x281e4: "xian1", // 𨇤
+ 0x281e6: "chan4", // 𨇦
+ 0x281e8: "xie4", // 𨇨
+ 0x281e9: "zhan4", // 𨇩
+ 0x281ef: "shuang1", // 𨇯
+ 0x281fb: "mi3", // 𨇻
+ 0x281fc: "luan2", // 𨇼
+ 0x281fd: "luo4", // 𨇽
+ 0x28200: "dian1", // 𨈀
+ 0x28208: "die2", // 𨈈
+ 0x2820a: "wan1", // 𨈊
+ 0x2820b: "yue4", // 𨈋
+ 0x2820c: "luan2", // 𨈌
+ 0x2820e: "luan2", // 𨈎
+ 0x28213: "leng2", // 𨈓
+ 0x28215: "wai3", // 𨈕
+ 0x28216: "din4", // 𨈖
+ 0x28217: "nen4", // 𨈗
+ 0x28218: "shao3", // 𨈘
+ 0x28219: "xie4", // 𨈙
+ 0x2821a: "pi2", // 𨈚
+ 0x28225: "mao2", // 𨈥
+ 0x28227: "yin3", // 𨈧
+ 0x28229: "bo2", // 𨈩
+ 0x2822b: "zhu4", // 𨈫
+ 0x2822e: "chong1", // 𨈮
+ 0x28236: "mu3", // 𨈶
+ 0x28237: "tuo2", // 𨈷
+ 0x28239: "tong3", // 𨈹
+ 0x2823a: "ye2", // 𨈺
+ 0x28241: "huang4", // 𨉁
+ 0x28243: "ren4", // 𨉃
+ 0x28245: "ye4", // 𨉅
+ 0x2824b: "tuo2", // 𨉋
+ 0x28256: "zuan1", // 𨉖
+ 0x28257: "yu4", // 𨉗
+ 0x2825a: "a1", // 𨉚
+ 0x2825c: "zhou1", // 𨉜
+ 0x2825d: "wan1", // 𨉝
+ 0x28261: "duo3", // 𨉡
+ 0x28262: "zhong4", // 𨉢
+ 0x28263: "ha1", // 𨉣
+ 0x28264: "huang2", // 𨉤
+ 0x28265: "mian4", // 𨉥
+ 0x28269: "chun1", // 𨉩
+ 0x2826a: "qie4", // 𨉪
+ 0x2826b: "gong1", // 𨉫
+ 0x2826c: "ting2", // 𨉬
+ 0x2826d: "mei2", // 𨉭
+ 0x28271: "tang4", // 𨉱
+ 0x28274: "rong2", // 𨉴
+ 0x28277: "rong2", // 𨉷
+ 0x28278: "qi2", // 𨉸
+ 0x28279: "guo2", // 𨉹
+ 0x2827d: "xiang4", // 𨉽
+ 0x2827e: "tian2", // 𨉾
+ 0x28285: "xiao1", // 𨊅
+ 0x28288: "zhan1", // 𨊈
+ 0x28289: "cui4", // 𨊉
+ 0x28294: "lan2", // 𨊔
+ 0x28298: "shen1", // 𨊘
+ 0x2829a: "lei3", // 𨊚
+ 0x2829b: "li4", // 𨊛
+ 0x2829d: "chan1", // 𨊝
+ 0x2829e: "nie4", // 𨊞
+ 0x2829f: "luan2", // 𨊟
+ 0x282a1: "ting1", // 𨊡
+ 0x282a2: "hui4", // 𨊢
+ 0x282a7: "gong1", // 𨊧
+ 0x282b0: "qi4", // 𨊰
+ 0x282b1: "yu2", // 𨊱
+ 0x282b3: "xin1", // 𨊳
+ 0x282b8: "yue4", // 𨊸
+ 0x282b9: "ba1", // 𨊹
+ 0x282ba: "dai4", // 𨊺
+ 0x282bb: "ji1", // 𨊻
+ 0x282bc: "xuan4", // 𨊼
+ 0x282bf: "jue2", // 𨊿
+ 0x282c0: "niu3", // 𨋀
+ 0x282c8: "du4", // 𨋈
+ 0x282c9: "ji2", // 𨋉
+ 0x282d0: "pa1", // 𨋐
+ 0x282d1: "gong3", // 𨋑
+ 0x282d2: "ben4", // 𨋒
+ 0x282d4: "keng1", // 𨋔
+ 0x282d5: "yang4", // 𨋕
+ 0x282d6: "liu3", // 𨋖
+ 0x282d7: "ni2", // 𨋗
+ 0x282d8: "zha4", // 𨋘
+ 0x282d9: "yin4", // 𨋙
+ 0x282da: "nian3", // 𨋚
+ 0x282db: "pao4", // 𨋛
+ 0x282dd: "gong1", // 𨋝
+ 0x282de: "bu4", // 𨋞
+ 0x282df: "he2", // 𨋟
+ 0x282e0: "rong3", // 𨋠
+ 0x282e1: "gui4", // 𨋡
+ 0x282e5: "bi4", // 𨋥
+ 0x282e6: "xi1", // 𨋦
+ 0x282e7: "ju2", // 𨋧
+ 0x282e8: "hun2", // 𨋨
+ 0x282e9: "bi4", // 𨋩
+ 0x282eb: "tiao1", // 𨋫
+ 0x282ec: "zheng3", // 𨋬
+ 0x282ee: "hong1", // 𨋮
+ 0x282ef: "yi4", // 𨋯
+ 0x282f0: "ci4", // 𨋰
+ 0x282f2: "bing4", // 𨋲
+ 0x282f7: "gong1", // 𨋷
+ 0x282fa: "fa2", // 𨋺
+ 0x282fd: "yang2", // 𨋽
+ 0x282fe: "xu3", // 𨋾
+ 0x28301: "hong1", // 𨌁
+ 0x28304: "zang4", // 𨌄
+ 0x28305: "chai2", // 𨌅
+ 0x28306: "hong2", // 𨌆
+ 0x28308: "tian2", // 𨌈
+ 0x2830c: "zhi1", // 𨌌
+ 0x2830d: "xing1", // 𨌍
+ 0x2830e: "xu2", // 𨌎
+ 0x28311: "zhen4", // 𨌑
+ 0x28314: "wan3", // 𨌔
+ 0x28318: "jun4", // 𨌘
+ 0x2831d: "wo4", // 𨌝
+ 0x28320: "lu4", // 𨌠
+ 0x28322: "zheng1", // 𨌢
+ 0x28323: "rong3", // 𨌣
+ 0x28324: "cheng2", // 𨌤
+ 0x28325: "fu2", // 𨌥
+ 0x28327: "e4", // 𨌧
+ 0x28328: "tao1", // 𨌨
+ 0x28329: "tang2", // 𨌩
+ 0x2832b: "juan1", // 𨌫
+ 0x2832c: "chao4", // 𨌬
+ 0x2832d: "ta4", // 𨌭
+ 0x2832e: "di3", // 𨌮
+ 0x28330: "zong1", // 𨌰
+ 0x28333: "keng1", // 𨌳
+ 0x28334: "tui1", // 𨌴
+ 0x28336: "keng1", // 𨌶
+ 0x28345: "rong3", // 𨍅
+ 0x28346: "yun1", // 𨍆
+ 0x28347: "he2", // 𨍇
+ 0x28348: "zong3", // 𨍈
+ 0x28349: "cong1", // 𨍉
+ 0x2834a: "qiu1", // 𨍊
+ 0x2834e: "mu4", // 𨍎
+ 0x2834f: "duo2", // 𨍏
+ 0x28350: "xu3", // 𨍐
+ 0x28351: "keng1", // 𨍑
+ 0x28352: "xian4", // 𨍒
+ 0x2835b: "du2", // 𨍛
+ 0x2835c: "kan3", // 𨍜
+ 0x2835e: "ying1", // 𨍞
+ 0x28362: "zi1", // 𨍢
+ 0x28367: "huang2", // 𨍧
+ 0x28369: "peng2", // 𨍩
+ 0x2836b: "li4", // 𨍫
+ 0x2836d: "bo2", // 𨍭
+ 0x2836e: "ge2", // 𨍮
+ 0x2836f: "ju2", // 𨍯
+ 0x28370: "ke1", // 𨍰
+ 0x28372: "hu2", // 𨍲
+ 0x28373: "yao2", // 𨍳
+ 0x28374: "tang2", // 𨍴
+ 0x28376: "qiong2", // 𨍶
+ 0x28377: "rong3", // 𨍷
+ 0x28378: "liu3", // 𨍸
+ 0x28379: "hui4", // 𨍹
+ 0x2837a: "ji1", // 𨍺
+ 0x28389: "zhi4", // 𨎉
+ 0x2838b: "tang2", // 𨎋
+ 0x2838c: "zhi3", // 𨎌
+ 0x2838d: "kang1", // 𨎍
+ 0x28394: "yang4", // 𨎔
+ 0x28396: "tang3", // 𨎖
+ 0x28397: "hong1", // 𨎗
+ 0x2839b: "liang2", // 𨎛
+ 0x2839d: "cao2", // 𨎝
+ 0x283a1: "nai3", // 𨎡
+ 0x283a2: "zong3", // 𨎢
+ 0x283a4: "deng4", // 𨎤
+ 0x283a6: "jiao1", // 𨎦
+ 0x283a7: "peng2", // 𨎧
+ 0x283a9: "guang1", // 𨎩
+ 0x283aa: "er2", // 𨎪
+ 0x283ab: "jian4", // 𨎫
+ 0x283ac: "jiao4", // 𨎬
+ 0x283ad: "nuo2", // 𨎭
+ 0x283ae: "zao3", // 𨎮
+ 0x283b3: "peng2", // 𨎳
+ 0x283b4: "dang1", // 𨎴
+ 0x283b6: "qu2", // 𨎶
+ 0x283b7: "lian2", // 𨎷
+ 0x283b8: "mu4", // 𨎸
+ 0x283b9: "lan3", // 𨎹
+ 0x283be: "fen2", // 𨎾
+ 0x283c2: "hun2", // 𨏂
+ 0x283c6: "kuang1", // 𨏆
+ 0x283c8: "yin3", // 𨏈
+ 0x283c9: "shuan4", // 𨏉
+ 0x283ca: "jian4", // 𨏊
+ 0x283d2: "luo4", // 𨏒
+ 0x283d4: "lu4", // 𨏔
+ 0x283da: "ge2", // 𨏚
+ 0x283db: "rang3", // 𨏛
+ 0x283de: "pin2", // 𨏞
+ 0x283e0: "long2", // 𨏠
+ 0x283e4: "zhen3", // 𨏤
+ 0x283e5: "xian4", // 𨏥
+ 0x283e8: "lin4", // 𨏨
+ 0x283e9: "lian2", // 𨏩
+ 0x283ea: "shan1", // 𨏪
+ 0x283eb: "bo2", // 𨏫
+ 0x283ec: "li4", // 𨏬
+ 0x283f3: "xie2", // 𨏳
+ 0x283f4: "ge2", // 𨏴
+ 0x283f5: "min3", // 𨏵
+ 0x283f6: "lian2", // 𨏶
+ 0x283f9: "jue2", // 𨏹
+ 0x283fa: "zhou1", // 𨏺
+ 0x283ff: "ke1", // 𨏿
+ 0x28401: "die2", // 𨐁
+ 0x28403: "zhe2", // 𨐃
+ 0x28405: "shu1", // 𨐅
+ 0x28406: "ji1", // 𨐆
+ 0x28407: "long2", // 𨐇
+ 0x28408: "guang1", // 𨐈
+ 0x28409: "zao3", // 𨐉
+ 0x2840a: "xian4", // 𨐊
+ 0x2840b: "qian1", // 𨐋
+ 0x2840d: "shen1", // 𨐍
+ 0x28410: "yin3", // 𨐐
+ 0x28411: "jie4", // 𨐑
+ 0x28414: "shen1", // 𨐔
+ 0x28415: "shen1", // 𨐕
+ 0x28416: "sa3", // 𨐖
+ 0x2841b: "xi4", // 𨐛
+ 0x28421: "ku4", // 𨐡
+ 0x28423: "qu2", // 𨐣
+ 0x28425: "ge2", // 𨐥
+ 0x28426: "ban4", // 𨐦
+ 0x28428: "bi4", // 𨐨
+ 0x28429: "qian1", // 𨐩
+ 0x28430: "bin1", // 𨐰
+ 0x28431: "ban4", // 𨐱
+ 0x28433: "zuo4", // 𨐳
+ 0x28434: "pi4", // 𨐴
+ 0x28436: "huo4", // 𨐶
+ 0x2843e: "ban4", // 𨐾
+ 0x2844a: "nong2", // 𨑊
+ 0x2844c: "chen2", // 𨑌
+ 0x2844e: "peng1", // 𨑎
+ 0x28451: "fu3", // 𨑑
+ 0x28452: "tu2", // 𨑒
+ 0x2845c: "pi3", // 𨑜
+ 0x2845d: "po4", // 𨑝
+ 0x28460: "chi3", // 𨑠
+ 0x28463: "xue4", // 𨑣
+ 0x28464: "qi4", // 𨑤
+ 0x28465: "wu4", // 𨑥
+ 0x28468: "zhi4", // 𨑨
+ 0x28469: "di4", // 𨑩
+ 0x2846a: "cong1", // 𨑪
+ 0x2846b: "you2", // 𨑫
+ 0x28479: "cong1", // 𨑹
+ 0x2847c: "di4", // 𨑼
+ 0x2847d: "zhuo2", // 𨑽
+ 0x2847f: "zou3", // 𨑿
+ 0x28480: "cong2", // 𨒀
+ 0x28483: "pan4", // 𨒃
+ 0x28484: "yan3", // 𨒄
+ 0x28485: "qi4", // 𨒅
+ 0x28486: "rong3", // 𨒆
+ 0x28487: "jia2", // 𨒇
+ 0x28489: "zhi4", // 𨒉
+ 0x2848a: "qiu2", // 𨒊
+ 0x2848b: "yue4", // 𨒋
+ 0x2848d: "shi4", // 𨒍
+ 0x28491: "hao2", // 𨒑
+ 0x28499: "tuo1", // 𨒙
+ 0x2849c: "bie2", // 𨒜
+ 0x2849e: "kan4", // 𨒞
+ 0x284a2: "chuo4", // 𨒢
+ 0x284a4: "ci3", // 𨒤
+ 0x284a6: "yin3", // 𨒦
+ 0x284a7: "shi4", // 𨒧
+ 0x284a8: "nai4", // 𨒨
+ 0x284a9: "ruan3", // 𨒩
+ 0x284ab: "yang2", // 𨒫
+ 0x284ac: "chi1", // 𨒬
+ 0x284ae: "ci1", // 𨒮
+ 0x284b1: "gong1", // 𨒱
+ 0x284b2: "mi2", // 𨒲
+ 0x284b4: "ji3", // 𨒴
+ 0x284bc: "gen4", // 𨒼
+ 0x284bd: "zao4", // 𨒽
+ 0x284c1: "beng3", // 𨓁
+ 0x284c7: "xin3", // 𨓇
+ 0x284c8: "kuo4", // 𨓈
+ 0x284ca: "die2", // 𨓊
+ 0x284cd: "ting2", // 𨓍
+ 0x284da: "shui4", // 𨓚
+ 0x284de: "dai4", // 𨓞
+ 0x284e6: "li3", // 𨓦
+ 0x284e8: "yong3", // 𨓨
+ 0x284e9: "jiao1", // 𨓩
+ 0x284ec: "ta2", // 𨓬
+ 0x284ed: "qu3", // 𨓭
+ 0x284ee: "yin2", // 𨓮
+ 0x284ef: "yuan1", // 𨓯
+ 0x284f0: "jie2", // 𨓰
+ 0x284f2: "qian1", // 𨓲
+ 0x284f3: "yao1", // 𨓳
+ 0x284f4: "ya4", // 𨓴
+ 0x284f7: "qing1", // 𨓷
+ 0x284ff: "pei2", // 𨓿
+ 0x28517: "jia1", // 𨔗
+ 0x28519: "tou4", // 𨔙
+ 0x2851b: "ti1", // 𨔛
+ 0x28521: "dun4", // 𨔡
+ 0x28522: "chan3", // 𨔢
+ 0x28523: "jia1", // 𨔣
+ 0x28524: "chi4", // 𨔤
+ 0x28525: "jian1", // 𨔥
+ 0x28526: "shu4", // 𨔦
+ 0x2852f: "ta4", // 𨔯
+ 0x28555: "zhi1", // 𨕕
+ 0x28557: "yuan2", // 𨕗
+ 0x2855a: "hu1", // 𨕚
+ 0x2855c: "lie4", // 𨕜
+ 0x28560: "ze2", // 𨕠
+ 0x28562: "chu4", // 𨕢
+ 0x28566: "qiu4", // 𨕦
+ 0x28567: "beng1", // 𨕧
+ 0x28579: "huan2", // 𨕹
+ 0x2857a: "kua1", // 𨕺
+ 0x2857b: "sheng1", // 𨕻
+ 0x2857d: "jie2", // 𨕽
+ 0x2857f: "wang3", // 𨕿
+ 0x28583: "hu1", // 𨖃
+ 0x2858a: "ze2", // 𨖊
+ 0x2858b: "zan3", // 𨖋
+ 0x2858c: "yang4", // 𨖌
+ 0x2858e: "chi3", // 𨖎
+ 0x2858f: "jiu4", // 𨖏
+ 0x2859a: "liao2", // 𨖚
+ 0x2859b: "yu1", // 𨖛
+ 0x285a0: "bian3", // 𨖠
+ 0x285a2: "kuang2", // 𨖢
+ 0x285ac: "chou4", // 𨖬
+ 0x285ad: "ya2", // 𨖭
+ 0x285ae: "zhuo2", // 𨖮
+ 0x285b0: "qie4", // 𨖰
+ 0x285b1: "xian4", // 𨖱
+ 0x285b3: "yuan1", // 𨖳
+ 0x285b4: "wu3", // 𨖴
+ 0x285b5: "jiao3", // 𨖵
+ 0x285b6: "xiang4", // 𨖶
+ 0x285b7: "sha4", // 𨖷
+ 0x285b9: "zhi4", // 𨖹
+ 0x285bc: "chong4", // 𨖼
+ 0x285be: "bian1", // 𨖾
+ 0x285bf: "wei1", // 𨖿
+ 0x285d3: "dao4", // 𨗓
+ 0x285dd: "yu4", // 𨗝
+ 0x285de: "tui2", // 𨗞
+ 0x285e1: "chao4", // 𨗡
+ 0x285e5: "hui4", // 𨗥
+ 0x285e6: "qian3", // 𨗦
+ 0x285e8: "wei3", // 𨗨
+ 0x285f0: "you2", // 𨗰
+ 0x285fc: "di4", // 𨗼
+ 0x285fe: "da4", // 𨗾
+ 0x28601: "you2", // 𨘁
+ 0x28602: "jiu4", // 𨘂
+ 0x28603: "tui2", // 𨘃
+ 0x28604: "zan3", // 𨘄
+ 0x28607: "hui4", // 𨘇
+ 0x28609: "sha4", // 𨘉
+ 0x2860c: "huo4", // 𨘌
+ 0x28614: "yao2", // 𨘔
+ 0x28619: "xian4", // 𨘙
+ 0x2861e: "xian4", // 𨘞
+ 0x2862c: "di4", // 𨘬
+ 0x2862e: "jiu4", // 𨘮
+ 0x28632: "hui4", // 𨘲
+ 0x28634: "kao4", // 𨘴
+ 0x28635: "you2", // 𨘵
+ 0x28638: "li4", // 𨘸
+ 0x2863c: "chuan2", // 𨘼
+ 0x2863e: "chi2", // 𨘾
+ 0x28640: "huo4", // 𨙀
+ 0x28642: "you2", // 𨙂
+ 0x28644: "yue4", // 𨙄
+ 0x2864e: "ta4", // 𨙎
+ 0x2864f: "zan4", // 𨙏
+ 0x28653: "nie4", // 𨙓
+ 0x28654: "zhu4", // 𨙔
+ 0x28661: "xian3", // 𨙡
+ 0x28669: "shi2", // 𨙩
+ 0x2866b: "kou3", // 𨙫
+ 0x2866c: "qi3", // 𨙬
+ 0x2866d: "tu3", // 𨙭
+ 0x2866e: "fan2", // 𨙮
+ 0x2866f: "cun1", // 𨙯
+ 0x28672: "tun2", // 𨙲
+ 0x28673: "cha1", // 𨙳
+ 0x28674: "cai2", // 𨙴
+ 0x28675: "xiang4", // 𨙵
+ 0x28676: "pei4", // 𨙶
+ 0x28677: "jing3", // 𨙷
+ 0x28678: "qi2", // 𨙸
+ 0x28679: "shao3", // 𨙹
+ 0x2867a: "niu3", // 𨙺
+ 0x2867b: "na4", // 𨙻
+ 0x2867d: "qin2", // 𨙽
+ 0x2868d: "bi4", // 𨚍
+ 0x28693: "bi4", // 𨚓
+ 0x28694: "bao1", // 𨚔
+ 0x28695: "bian4", // 𨚕
+ 0x28696: "zi1", // 𨚖
+ 0x28697: "na4", // 𨚗
+ 0x28698: "wei4", // 𨚘
+ 0x28699: "hao2", // 𨚙
+ 0x286a1: "jin3", // 𨚡
+ 0x286a3: "zheng4", // 𨚣
+ 0x286a7: "qie2", // 𨚧
+ 0x286ae: "hao4", // 𨚮
+ 0x286af: "tong2", // 𨚯
+ 0x286b0: "zao3", // 𨚰
+ 0x286b1: "sheng4", // 𨚱
+ 0x286b2: "cun2", // 𨚲
+ 0x286b3: "huang1", // 𨚳
+ 0x286b4: "ru2", // 𨚴
+ 0x286b5: "zai4", // 𨚵
+ 0x286b6: "nian2", // 𨚶
+ 0x286be: "xian1", // 𨚾
+ 0x286c8: "quan2", // 𨛈
+ 0x286c9: "ji4", // 𨛉
+ 0x286ca: "yin2", // 𨛊
+ 0x286cb: "li3", // 𨛋
+ 0x286cc: "mang2", // 𨛌
+ 0x286cd: "shao4", // 𨛍
+ 0x286ce: "han4", // 𨛎
+ 0x286cf: "cuo4", // 𨛏
+ 0x286d0: "jun4", // 𨛐
+ 0x286d1: "ji4", // 𨛑
+ 0x286d2: "bu4", // 𨛒
+ 0x286d3: "long4", // 𨛓
+ 0x286d4: "fou3", // 𨛔
+ 0x286d5: "you2", // 𨛕
+ 0x286d6: "kuai4", // 𨛖
+ 0x286dc: "xiang4", // 𨛜
+ 0x286e1: "yun2", // 𨛡
+ 0x286e3: "qin2", // 𨛣
+ 0x286e4: "hui2", // 𨛤
+ 0x286e5: "pu2", // 𨛥
+ 0x286eb: "li2", // 𨛫
+ 0x286ec: "pei2", // 𨛬
+ 0x286ed: "shu1", // 𨛭
+ 0x286ee: "ju1", // 𨛮
+ 0x286ef: "yi2", // 𨛯
+ 0x286f0: "zheng1", // 𨛰
+ 0x286f1: "chong2", // 𨛱
+ 0x286f3: "xi2", // 𨛳
+ 0x286f5: "hu3", // 𨛵
+ 0x286f6: "rou2", // 𨛶
+ 0x2870c: "huan4", // 𨜌
+ 0x2870d: "qiao4", // 𨜍
+ 0x2870e: "zhi1", // 𨜎
+ 0x2870f: "ying2", // 𨜏
+ 0x28710: "xi3", // 𨜐
+ 0x28711: "qiao1", // 𨜑
+ 0x28712: "ji4", // 𨜒
+ 0x28713: "zheng1", // 𨜓
+ 0x28714: "huang2", // 𨜔
+ 0x28716: "yu2", // 𨜖
+ 0x28717: "zou1", // 𨜗
+ 0x28718: "mei2", // 𨜘
+ 0x2871c: "sheng3", // 𨜜
+ 0x28729: "quan2", // 𨜩
+ 0x28730: "jiang1", // 𨜰
+ 0x28731: "he2", // 𨜱
+ 0x28733: "tong2", // 𨜳
+ 0x28734: "he2", // 𨜴
+ 0x28735: "wen1", // 𨜵
+ 0x28736: "yi4", // 𨜶
+ 0x28737: "pang2", // 𨜷
+ 0x2873a: "weng1", // 𨜺
+ 0x2873b: "qian2", // 𨜻
+ 0x2873c: "li4", // 𨜼
+ 0x2873d: "yi2", // 𨜽
+ 0x2873e: "chuang4", // 𨜾
+ 0x2873f: "xu4", // 𨜿
+ 0x28740: "wei3", // 𨝀
+ 0x28746: "ge1", // 𨝆
+ 0x28748: "yu3", // 𨝈
+ 0x2874b: "zhai4", // 𨝋
+ 0x2874c: "gan1", // 𨝌
+ 0x2874d: "qian1", // 𨝍
+ 0x2874e: "kang1", // 𨝎
+ 0x2874f: "li2", // 𨝏
+ 0x28750: "shen1", // 𨝐
+ 0x28751: "guan4", // 𨝑
+ 0x28753: "piao2", // 𨝓
+ 0x28756: "li2", // 𨝖
+ 0x28758: "hu3", // 𨝘
+ 0x2875b: "tu2", // 𨝛
+ 0x2875c: "shun4", // 𨝜
+ 0x2875e: "hu4", // 𨝞
+ 0x2875f: "li2", // 𨝟
+ 0x28762: "lou4", // 𨝢
+ 0x28766: "dang4", // 𨝦
+ 0x28768: "zuo4", // 𨝨
+ 0x28769: "shan1", // 𨝩
+ 0x2876b: "she4", // 𨝫
+ 0x2876d: "feng2", // 𨝭
+ 0x2876e: "ju4", // 𨝮
+ 0x2876f: "tong2", // 𨝯
+ 0x28770: "jiao3", // 𨝰
+ 0x28771: "qiao2", // 𨝱
+ 0x28772: "gao1", // 𨝲
+ 0x28773: "zi1", // 𨝳
+ 0x28774: "huang2", // 𨝴
+ 0x28775: "shan1", // 𨝵
+ 0x28778: "tan2", // 𨝸
+ 0x2878c: "tuo1", // 𨞌
+ 0x2878e: "ling4", // 𨞎
+ 0x28790: "cheng2", // 𨞐
+ 0x28791: "weng4", // 𨞑
+ 0x28792: "zuo2", // 𨞒
+ 0x28793: "yu4", // 𨞓
+ 0x28795: "zhu2", // 𨞕
+ 0x28797: "qun2", // 𨞗
+ 0x28798: "xi3", // 𨞘
+ 0x28799: "qu2", // 𨞙
+ 0x2879b: "ge2", // 𨞛
+ 0x287a2: "qi1", // 𨞢
+ 0x287a3: "xu1", // 𨞣
+ 0x287a8: "gai4", // 𨞨
+ 0x287a9: "que4", // 𨞩
+ 0x287aa: "chou2", // 𨞪
+ 0x287ab: "meng2", // 𨞫
+ 0x287b2: "shen1", // 𨞲
+ 0x287b3: "qu2", // 𨞳
+ 0x287b6: "qiao1", // 𨞶
+ 0x287b7: "can2", // 𨞷
+ 0x287ba: "li4", // 𨞺
+ 0x287bc: "wan4", // 𨞼
+ 0x287bd: "lei2", // 𨞽
+ 0x287be: "xing1", // 𨞾
+ 0x287bf: "lang2", // 𨞿
+ 0x287c2: "shi4", // 𨟂
+ 0x287c3: "zheng1", // 𨟃
+ 0x287c4: "fan2", // 𨟄
+ 0x287ca: "zhi4", // 𨟊
+ 0x287cf: "yin2", // 𨟏
+ 0x287d1: "li4", // 𨟑
+ 0x287d6: "mo2", // 𨟖
+ 0x287d7: "wei3", // 𨟗
+ 0x287d9: "ying1", // 𨟙
+ 0x287da: "rang2", // 𨟚
+ 0x287e0: "quan1", // 𨟠
+ 0x287e5: "luo3", // 𨟥
+ 0x287f2: "dai4", // 𨟲
+ 0x287f4: "yin4", // 𨟴
+ 0x287f5: "bi3", // 𨟵
+ 0x287f6: "ge1", // 𨟶
+ 0x287f8: "wen4", // 𨟸
+ 0x287f9: "yan3", // 𨟹
+ 0x287fa: "mian3", // 𨟺
+ 0x287fc: "gang3", // 𨟼
+ 0x287fd: "qiu2", // 𨟽
+ 0x287fe: "zhi1", // 𨟾
+ 0x2880b: "gu1", // 𨠋
+ 0x2880c: "tong2", // 𨠌
+ 0x2880e: "ling2", // 𨠎
+ 0x2880f: "ti2", // 𨠏
+ 0x28810: "ci2", // 𨠐
+ 0x28811: "yi2", // 𨠑
+ 0x28812: "fan4", // 𨠒
+ 0x28813: "po1", // 𨠓
+ 0x28814: "bi4", // 𨠔
+ 0x28816: "bao4", // 𨠖
+ 0x2881f: "peng1", // 𨠟
+ 0x28821: "suan1", // 𨠡
+ 0x28824: "song1", // 𨠤
+ 0x28825: "wei2", // 𨠥
+ 0x28826: "xiao2", // 𨠦
+ 0x2882c: "hao4", // 𨠬
+ 0x2882d: "yan3", // 𨠭
+ 0x28836: "yi2", // 𨠶
+ 0x28837: "zao1", // 𨠷
+ 0x28838: "ying3", // 𨠸
+ 0x28839: "nan3", // 𨠹
+ 0x2883f: "za1", // 𨠿
+ 0x28841: "tian3", // 𨡁
+ 0x28842: "xi1", // 𨡂
+ 0x28843: "jiao4", // 𨡃
+ 0x28844: "yan2", // 𨡄
+ 0x2884c: "nei2", // 𨡌
+ 0x2884d: "tan3", // 𨡍
+ 0x2884e: "yan4", // 𨡎
+ 0x2884f: "tian3", // 𨡏
+ 0x28850: "zhi4", // 𨡐
+ 0x28851: "chou1", // 𨡑
+ 0x28852: "tao2", // 𨡒
+ 0x28857: "zha4", // 𨡗
+ 0x2885e: "mian3", // 𨡞
+ 0x28861: "wu3", // 𨡡
+ 0x28862: "yin3", // 𨡢
+ 0x28863: "yan4", // 𨡣
+ 0x28864: "lao3", // 𨡤
+ 0x28869: "po1", // 𨡩
+ 0x2886b: "hun4", // 𨡫
+ 0x2886c: "hai3", // 𨡬
+ 0x2886d: "mu2", // 𨡭
+ 0x2886e: "cong1", // 𨡮
+ 0x28871: "ku4", // 𨡱
+ 0x28872: "chou1", // 𨡲
+ 0x28874: "you3", // 𨡴
+ 0x28878: "zhuo2", // 𨡸
+ 0x2887b: "sou1", // 𨡻
+ 0x28882: "yin4", // 𨢂
+ 0x28885: "zui4", // 𨢅
+ 0x28886: "sang1", // 𨢆
+ 0x28887: "liu4", // 𨢇
+ 0x28888: "han4", // 𨢈
+ 0x28889: "wei4", // 𨢉
+ 0x2888a: "meng2", // 𨢊
+ 0x2888b: "hu2", // 𨢋
+ 0x2888c: "li4", // 𨢌
+ 0x2888e: "mi4", // 𨢎
+ 0x28890: "bang1", // 𨢐
+ 0x28891: "jian3", // 𨢑
+ 0x2889c: "que4", // 𨢜
+ 0x288a0: "meng2", // 𨢠
+ 0x288a2: "mu2", // 𨢢
+ 0x288a3: "hong3", // 𨢣
+ 0x288a4: "hu4", // 𨢤
+ 0x288a5: "mi2", // 𨢥
+ 0x288a6: "shai4", // 𨢦
+ 0x288a9: "shang1", // 𨢩
+ 0x288aa: "chao4", // 𨢪
+ 0x288ac: "zhuo2", // 𨢬
+ 0x288ae: "zhi1", // 𨢮
+ 0x288af: "nian4", // 𨢯
+ 0x288b5: "ji4", // 𨢵
+ 0x288b8: "ke1", // 𨢸
+ 0x288b9: "zheng1", // 𨢹
+ 0x288bf: "dan1", // 𨢿
+ 0x288c0: "liao3", // 𨣀
+ 0x288c1: "zhan3", // 𨣁
+ 0x288c2: "gong3", // 𨣂
+ 0x288c3: "lao2", // 𨣃
+ 0x288c4: "hua1", // 𨣄
+ 0x288c5: "chuai4", // 𨣅
+ 0x288c7: "jian3", // 𨣇
+ 0x288c8: "kui4", // 𨣈
+ 0x288cd: "she1", // 𨣍
+ 0x288d4: "chen3", // 𨣔
+ 0x288d5: "tan3", // 𨣕
+ 0x288d7: "hu2", // 𨣗
+ 0x288d8: "meng2", // 𨣘
+ 0x288d9: "pao4", // 𨣙
+ 0x288da: "zhan3", // 𨣚
+ 0x288db: "chang2", // 𨣛
+ 0x288dd: "gan3", // 𨣝
+ 0x288e0: "yi4", // 𨣠
+ 0x288e2: "sui4", // 𨣢
+ 0x288e6: "xu4", // 𨣦
+ 0x288e7: "ji4", // 𨣧
+ 0x288e8: "lan4", // 𨣨
+ 0x288ec: "yi2", // 𨣬
+ 0x288ef: "mi4", // 𨣯
+ 0x288f1: "mie4", // 𨣱
+ 0x288f5: "cuan2", // 𨣵
+ 0x288f8: "lan3", // 𨣸
+ 0x288fb: "yan1", // 𨣻
+ 0x288fe: "mi2", // 𨣾
+ 0x28902: "yong3", // 𨤂
+ 0x28903: "cang2", // 𨤃
+ 0x28904: "jian3", // 𨤄
+ 0x28907: "sou1", // 𨤇
+ 0x2890e: "yan2", // 𨤎
+ 0x28911: "juan4", // 𨤑
+ 0x28915: "e4", // 𨤕
+ 0x28918: "fen4", // 𨤘
+ 0x2891a: "fen4", // 𨤚
+ 0x28921: "guang4", // 𨤡
+ 0x28922: "mai2", // 𨤢
+ 0x28924: "lie3", // 𨤤
+ 0x28929: "chong1", // 𨤩
+ 0x2892b: "li2", // 𨤫
+ 0x28931: "zhi2", // 𨤱
+ 0x28934: "xie4", // 𨤴
+ 0x28937: "chou2", // 𨤷
+ 0x28939: "ji2", // 𨤹
+ 0x2893d: "pi1", // 𨤽
+ 0x28942: "jie2", // 𨥂
+ 0x28947: "zhou3", // 𨥇
+ 0x2894d: "xiong1", // 𨥍
+ 0x28951: "kuang4", // 𨥑
+ 0x28959: "jing3", // 𨥙
+ 0x2895b: "hu4", // 𨥛
+ 0x2895e: "qian2", // 𨥞
+ 0x28963: "cen2", // 𨥣
+ 0x28966: "qi2", // 𨥦
+ 0x28967: "wan3", // 𨥧
+ 0x28968: "mao2", // 𨥨
+ 0x2896a: "dou3", // 𨥪
+ 0x28974: "kou3", // 𨥴
+ 0x28976: "dai4", // 𨥶
+ 0x28978: "nao2", // 𨥸
+ 0x2897a: "hong2", // 𨥺
+ 0x28982: "lai3", // 𨦂
+ 0x28983: "duo3", // 𨦃
+ 0x28984: "qian1", // 𨦄
+ 0x28986: "yin2", // 𨦆
+ 0x28996: "lou4", // 𨦖
+ 0x28997: "hui1", // 𨦗
+ 0x2899b: "fu4", // 𨦛
+ 0x2899c: "mao2", // 𨦜
+ 0x2899e: "zhou1", // 𨦞
+ 0x289a1: "yong2", // 𨦡
+ 0x289ad: "lao2", // 𨦭
+ 0x289ae: "ji2", // 𨦮
+ 0x289af: "yi4", // 𨦯
+ 0x289b0: "liu2", // 𨦰
+ 0x289b1: "cong1", // 𨦱
+ 0x289b3: "nan3", // 𨦳
+ 0x289d0: "tun1", // 𨧐
+ 0x289d1: "xiang4", // 𨧑
+ 0x289d5: "bian4", // 𨧕
+ 0x289d6: "chuang2", // 𨧖
+ 0x289d7: "wu4", // 𨧗
+ 0x289d9: "ju1", // 𨧙
+ 0x289e5: "xie1", // 𨧥
+ 0x289e6: "pi1", // 𨧦
+ 0x289e7: "zhuo2", // 𨧧
+ 0x289e8: "rui4", // 𨧨
+ 0x289ea: "sao4", // 𨧪
+ 0x289eb: "zi4", // 𨧫
+ 0x289ed: "zheng4", // 𨧭
+ 0x289f0: "zu2", // 𨧰
+ 0x289f1: "qu1", // 𨧱
+ 0x289f3: "chi4", // 𨧳
+ 0x289f5: "zhi4", // 𨧵
+ 0x28a17: "quan4", // 𨨗
+ 0x28a18: "qian1", // 𨨘
+ 0x28a19: "ya1", // 𨨙
+ 0x28a1a: "chao4", // 𨨚
+ 0x28a1b: "he2", // 𨨛
+ 0x28a1c: "ru3", // 𨨜
+ 0x28a20: "ju1", // 𨨠
+ 0x28a21: "wu4", // 𨨡
+ 0x28a2c: "chi4", // 𨨬
+ 0x28a2d: "kuang4", // 𨨭
+ 0x28a2f: "cou4", // 𨨯
+ 0x28a30: "ruan4", // 𨨰
+ 0x28a31: "kuo4", // 𨨱
+ 0x28a32: "chi2", // 𨨲
+ 0x28a33: "zu2", // 𨨳
+ 0x28a34: "jiao1", // 𨨴
+ 0x28a36: "yu2", // 𨨶
+ 0x28a37: "tu2", // 𨨷
+ 0x28a38: "meng2", // 𨨸
+ 0x28a39: "da1", // 𨨹
+ 0x28a3a: "shuo4", // 𨨺
+ 0x28a65: "feng1", // 𨩥
+ 0x28a66: "gou3", // 𨩦
+ 0x28a67: "dong1", // 𨩧
+ 0x28a68: "cha3", // 𨩨
+ 0x28a69: "mao4", // 𨩩
+ 0x28a6a: "chan3", // 𨩪
+ 0x28a6b: "bian1", // 𨩫
+ 0x28a6c: "yu4", // 𨩬
+ 0x28a6f: "wan2", // 𨩯
+ 0x28a70: "zu2", // 𨩰
+ 0x28a72: "zi1", // 𨩲
+ 0x28a74: "chuan1", // 𨩴
+ 0x28a75: "wan3", // 𨩵
+ 0x28a76: "wa1", // 𨩶
+ 0x28a78: "quan1", // 𨩸
+ 0x28a7b: "wan3", // 𨩻
+ 0x28a7d: "xia4", // 𨩽
+ 0x28a84: "ying4", // 𨪄
+ 0x28a85: "jian4", // 𨪅
+ 0x28a88: "wei3", // 𨪈
+ 0x28a89: "ti2", // 𨪉
+ 0x28a8a: "sao1", // 𨪊
+ 0x28a8c: "qi2", // 𨪌
+ 0x28a8d: "sha1", // 𨪍
+ 0x28a8e: "yu4", // 𨪎
+ 0x28a8f: "ji2", // 𨪏
+ 0x28a90: "dou4", // 𨪐
+ 0x28a91: "chan3", // 𨪑
+ 0x28a92: "tuan2", // 𨪒
+ 0x28a95: "liu2", // 𨪕
+ 0x28a97: "zhui4", // 𨪗
+ 0x28ab3: "ruan4", // 𨪳
+ 0x28ab6: "yan4", // 𨪶
+ 0x28ab7: "gu3", // 𨪷
+ 0x28ab9: "li4", // 𨪹
+ 0x28aba: "cha1", // 𨪺
+ 0x28abe: "di4", // 𨪾
+ 0x28abf: "liu2", // 𨪿
+ 0x28ac0: "zhan3", // 𨫀
+ 0x28ac1: "po1", // 𨫁
+ 0x28ad2: "lou4", // 𨫒
+ 0x28ad4: "zhi4", // 𨫔
+ 0x28b01: "lian2", // 𨬁
+ 0x28b05: "luo3", // 𨬅
+ 0x28b0d: "duo4", // 𨬍
+ 0x28b10: "jue2", // 𨬐
+ 0x28b11: "li4", // 𨬑
+ 0x28b12: "lan2", // 𨬒
+ 0x28b14: "ruan4", // 𨬔
+ 0x28b15: "gu1", // 𨬕
+ 0x28b16: "chan2", // 𨬖
+ 0x28b17: "xu1", // 𨬗
+ 0x28b1a: "zhi3", // 𨬚
+ 0x28b41: "xue4", // 𨭁
+ 0x28b42: "bo1", // 𨭂
+ 0x28b43: "cheng1", // 𨭃
+ 0x28b45: "zhu4", // 𨭅
+ 0x28b46: "hei1", // 𨭆
+ 0x28b49: "ban1", // 𨭉
+ 0x28b53: "die2", // 𨭓
+ 0x28b56: "zhan3", // 𨭖
+ 0x28b57: "guo2", // 𨭗
+ 0x28b5a: "biao1", // 𨭚
+ 0x28b5b: "la4", // 𨭛
+ 0x28b7a: "jin1", // 𨭺
+ 0x28b82: "gai3", // 𨮂
+ 0x28b92: "meng4", // 𨮒
+ 0x28b94: "yu4", // 𨮔
+ 0x28baa: "xi3", // 𨮪
+ 0x28bac: "piao1", // 𨮬
+ 0x28bad: "si1", // 𨮭
+ 0x28bb4: "deng4", // 𨮴
+ 0x28bb8: "chuo1", // 𨮸
+ 0x28bb9: "di2", // 𨮹
+ 0x28bba: "ji1", // 𨮺
+ 0x28bbb: "chan2", // 𨮻
+ 0x28bbf: "zhuo2", // 𨮿
+ 0x28bd3: "cai4", // 𨯓
+ 0x28bde: "jiang4", // 𨯞
+ 0x28bf2: "tou2", // 𨯲
+ 0x28bfd: "li2", // 𨯽
+ 0x28c02: "qian4", // 𨰂
+ 0x28c06: "chuo1", // 𨰆
+ 0x28c0f: "ta4", // 𨰏
+ 0x28c11: "diao4", // 𨰑
+ 0x28c13: "jian3", // 𨰓
+ 0x28c1b: "zhi3", // 𨰛
+ 0x28c1c: "jue2", // 𨰜
+ 0x28c1e: "mo2", // 𨰞
+ 0x28c20: "luo2", // 𨰠
+ 0x28c26: "bao3", // 𨰦
+ 0x28c2d: "zuan3", // 𨰭
+ 0x28c35: "zhe1", // 𨰵
+ 0x28c38: "yu2", // 𨰸
+ 0x28c3b: "bao3", // 𨰻
+ 0x28c3e: "ma3", // 𨰾
+ 0x28c3f: "xi4", // 𨰿
+ 0x28c40: "hu4", // 𨱀
+ 0x28c41: "yi4", // 𨱁
+ 0x28c42: "e2", // 𨱂
+ 0x28c43: "gu1", // 𨱃
+ 0x28c44: "tu2", // 𨱄
+ 0x28c45: "zhen1", // 𨱅
+ 0x28c47: "qiu2", // 𨱇
+ 0x28c48: "su4", // 𨱈
+ 0x28c49: "liang4", // 𨱉
+ 0x28c4a: "qu1", // 𨱊
+ 0x28c4b: "ling2", // 𨱋
+ 0x28c4c: "guan4", // 𨱌
+ 0x28c4d: "lang2", // 𨱍
+ 0x28c4e: "tou1", // 𨱎
+ 0x28c4f: "da1", // 𨱏
+ 0x28c50: "lou4", // 𨱐
+ 0x28c51: "huang2", // 𨱑
+ 0x28c52: "shou4", // 𨱒
+ 0x28c53: "jiao1", // 𨱓
+ 0x28c54: "zun1", // 𨱔
+ 0x28c55: "gai3", // 𨱕
+ 0x28c56: "wei2", // 𨱖
+ 0x28c59: "kun1", // 𨱙
+ 0x28c5a: "duan4", // 𨱚
+ 0x28c5b: "song1", // 𨱛
+ 0x28c5c: "qi2", // 𨱜
+ 0x28c5d: "yang3", // 𨱝
+ 0x28c61: "shi4", // 𨱡
+ 0x28c63: "gai3", // 𨱣
+ 0x28c66: "dao4", // 𨱦
+ 0x28c67: "yao3", // 𨱧
+ 0x28c6b: "qian2", // 𨱫
+ 0x28c6d: "shao1", // 𨱭
+ 0x28c6e: "chang2", // 𨱮
+ 0x28c6f: "miu3", // 𨱯
+ 0x28c71: "mo2", // 𨱱
+ 0x28c75: "nao3", // 𨱵
+ 0x28c78: "cong1", // 𨱸
+ 0x28c7a: "nie4", // 𨱺
+ 0x28c7b: "zhao1", // 𨱻
+ 0x28c7c: "cen2", // 𨱼
+ 0x28c7f: "song1", // 𨱿
+ 0x28c80: "nie4", // 𨲀
+ 0x28c81: "ci4", // 𨲁
+ 0x28c84: "jun4", // 𨲄
+ 0x28c86: "shao1", // 𨲆
+ 0x28c88: "zhu2", // 𨲈
+ 0x28c89: "duo3", // 𨲉
+ 0x28c8a: "an4", // 𨲊
+ 0x28c8b: "bi1", // 𨲋
+ 0x28c8e: "ti4", // 𨲎
+ 0x28c90: "pi3", // 𨲐
+ 0x28c91: "xia2", // 𨲑
+ 0x28c92: "qiu2", // 𨲒
+ 0x28c93: "sheng3", // 𨲓
+ 0x28c97: "tang1", // 𨲗
+ 0x28c9b: "man2", // 𨲛
+ 0x28c9c: "pian1", // 𨲜
+ 0x28c9e: "ti4", // 𨲞
+ 0x28c9f: "rong2", // 𨲟
+ 0x28ca7: "cong1", // 𨲧
+ 0x28caa: "ji1", // 𨲪
+ 0x28cab: "feng2", // 𨲫
+ 0x28cac: "wu4", // 𨲬
+ 0x28cad: "jiao4", // 𨲭
+ 0x28cae: "lao2", // 𨲮
+ 0x28caf: "zeng1", // 𨲯
+ 0x28cb0: "peng2", // 𨲰
+ 0x28cb1: "can3", // 𨲱
+ 0x28cb3: "nong2", // 𨲳
+ 0x28cb5: "chan3", // 𨲵
+ 0x28cbe: "man2", // 𨲾
+ 0x28cbf: "gui4", // 𨲿
+ 0x28cc0: "niao4", // 𨳀
+ 0x28cc1: "chong1", // 𨳁
+ 0x28cc2: "chan4", // 𨳂
+ 0x28cc6: "nang4", // 𨳆
+ 0x28cc9: "xia1", // 𨳉
+ 0x28cca: "jiu1", // 𨳊
+ 0x28ccb: "ji3", // 𨳋
+ 0x28ccc: "zhen4", // 𨳌
+ 0x28cd1: "ting3", // 𨳑
+ 0x28cd4: "men2", // 𨳔
+ 0x28cd5: "yue4", // 𨳕
+ 0x28cd7: "zhong1", // 𨳗
+ 0x28cd8: "tun2", // 𨳘
+ 0x28cd9: "rui4", // 𨳙
+ 0x28cda: "xie4", // 𨳚
+ 0x28cdb: "xi1", // 𨳛
+ 0x28cdd: "ting3", // 𨳝
+ 0x28cde: "niu3", // 𨳞
+ 0x28ce0: "wang3", // 𨳠
+ 0x28ce1: "jian1", // 𨳡
+ 0x28ce3: "fen1", // 𨳣
+ 0x28cf2: "bian4", // 𨳲
+ 0x28cf7: "yi2", // 𨳷
+ 0x28cfa: "die2", // 𨳺
+ 0x28cfb: "ji1", // 𨳻
+ 0x28cfc: "gan3", // 𨳼
+ 0x28cff: "jian1", // 𨳿
+ 0x28d00: "jiong1", // 𨴀
+ 0x28d06: "kai1", // 𨴆
+ 0x28d0a: "que4", // 𨴊
+ 0x28d0c: "nan2", // 𨴌
+ 0x28d0d: "mou2", // 𨴍
+ 0x28d0e: "xu4", // 𨴎
+ 0x28d0f: "song3", // 𨴏
+ 0x28d10: "shen4", // 𨴐
+ 0x28d11: "kuang1", // 𨴑
+ 0x28d12: "que4", // 𨴒
+ 0x28d13: "wei2", // 𨴓
+ 0x28d17: "die2", // 𨴗
+ 0x28d18: "nan2", // 𨴘
+ 0x28d1a: "ruo4", // 𨴚
+ 0x28d1b: "gong1", // 𨴛
+ 0x28d1c: "dou4", // 𨴜
+ 0x28d1e: "nian3", // 𨴞
+ 0x28d21: "chao1", // 𨴡
+ 0x28d22: "he2", // 𨴢
+ 0x28d23: "yan4", // 𨴣
+ 0x28d29: "tu2", // 𨴩
+ 0x28d2a: "bu3", // 𨴪
+ 0x28d2c: "hu2", // 𨴬
+ 0x28d2d: "yong3", // 𨴭
+ 0x28d2f: "shi3", // 𨴯
+ 0x28d30: "chu4", // 𨴰
+ 0x28d39: "xiao1", // 𨴹
+ 0x28d3a: "men2", // 𨴺
+ 0x28d3b: "li3", // 𨴻
+ 0x28d3c: "ti2", // 𨴼
+ 0x28d3e: "jian1", // 𨴾
+ 0x28d42: "zhi3", // 𨵂
+ 0x28d43: "gua1", // 𨵃
+ 0x28d44: "guan3", // 𨵄
+ 0x28d46: "qi4", // 𨵆
+ 0x28d48: "fei1", // 𨵈
+ 0x28d49: "yu3", // 𨵉
+ 0x28d4a: "zhe2", // 𨵊
+ 0x28d4b: "wei3", // 𨵋
+ 0x28d4c: "e3", // 𨵌
+ 0x28d4d: "chan1", // 𨵍
+ 0x28d4e: "xi1", // 𨵎
+ 0x28d50: "gu3", // 𨵐
+ 0x28d57: "que4", // 𨵗
+ 0x28d58: "hui4", // 𨵘
+ 0x28d5a: "xie2", // 𨵚
+ 0x28d5b: "ying1", // 𨵛
+ 0x28d5d: "ta4", // 𨵝
+ 0x28d5e: "wai1", // 𨵞
+ 0x28d5f: "fu2", // 𨵟
+ 0x28d60: "jie4", // 𨵠
+ 0x28d61: "pi4", // 𨵡
+ 0x28d65: "sheng3", // 𨵥
+ 0x28d66: "yu2", // 𨵦
+ 0x28d67: "kua1", // 𨵧
+ 0x28d69: "pi4", // 𨵩
+ 0x28d6a: "xie2", // 𨵪
+ 0x28d6b: "nve4", // 𨵫
+ 0x28d6c: "xian4", // 𨵬
+ 0x28d6d: "jian4", // 𨵭
+ 0x28d6e: "xu4", // 𨵮
+ 0x28d70: "bi4", // 𨵰
+ 0x28d74: "nan2", // 𨵴
+ 0x28d76: "liang2", // 𨵶
+ 0x28d78: "pian2", // 𨵸
+ 0x28d7c: "jing4", // 𨵼
+ 0x28d80: "ta3", // 𨶀
+ 0x28d81: "yan4", // 𨶁
+ 0x28d82: "ai4", // 𨶂
+ 0x28d85: "xiao1", // 𨶅
+ 0x28d86: "qiang1", // 𨶆
+ 0x28d87: "wu3", // 𨶇
+ 0x28d88: "tang2", // 𨶈
+ 0x28d8a: "jun4", // 𨶊
+ 0x28d90: "kuo4", // 𨶐
+ 0x28d97: "lang4", // 𨶗
+ 0x28d99: "neng3", // 𨶙
+ 0x28d9c: "dou4", // 𨶜
+ 0x28d9d: "shu2", // 𨶝
+ 0x28d9f: "jiao3", // 𨶟
+ 0x28da0: "nie4", // 𨶠
+ 0x28da2: "yu2", // 𨶢
+ 0x28da8: "ce4", // 𨶨
+ 0x28daa: "jiao3", // 𨶪
+ 0x28dac: "hua4", // 𨶬
+ 0x28dad: "wen2", // 𨶭
+ 0x28dae: "ye1", // 𨶮
+ 0x28daf: "e2", // 𨶯
+ 0x28db0: "guang1", // 𨶰
+ 0x28db1: "hua1", // 𨶱
+ 0x28db2: "jiao1", // 𨶲
+ 0x28dba: "lei4", // 𨶺
+ 0x28dbc: "shang1", // 𨶼
+ 0x28dbd: "yong4", // 𨶽
+ 0x28dbf: "deng1", // 𨶿
+ 0x28dc0: "guan1", // 𨷀
+ 0x28dc1: "niu2", // 𨷁
+ 0x28dc3: "sui4", // 𨷃
+ 0x28dc4: "xiang4", // 𨷄
+ 0x28dc6: "sa4", // 𨷆
+ 0x28dc7: "chang1", // 𨷇
+ 0x28dce: "run4", // 𨷎
+ 0x28dd0: "yun1", // 𨷐
+ 0x28dd2: "fen1", // 𨷒
+ 0x28dd3: "jian4", // 𨷓
+ 0x28dd4: "xu4", // 𨷔
+ 0x28dd8: "xi4", // 𨷘
+ 0x28dd9: "shu2", // 𨷙
+ 0x28de5: "xie2", // 𨷥
+ 0x28de6: "li4", // 𨷦
+ 0x28de9: "tou2", // 𨷩
+ 0x28dec: "mi3", // 𨷬
+ 0x28ded: "chan3", // 𨷭
+ 0x28dee: "huo1", // 𨷮
+ 0x28df1: "zhuan3", // 𨷱
+ 0x28df2: "yue4", // 𨷲
+ 0x28dfb: "lan2", // 𨷻
+ 0x28dfd: "yan2", // 𨷽
+ 0x28dfe: "dang4", // 𨷾
+ 0x28dff: "xiang4", // 𨷿
+ 0x28e00: "yue4", // 𨸀
+ 0x28e01: "ting3", // 𨸁
+ 0x28e02: "beng1", // 𨸂
+ 0x28e03: "san4", // 𨸃
+ 0x28e04: "xian4", // 𨸄
+ 0x28e05: "die2", // 𨸅
+ 0x28e06: "pi4", // 𨸆
+ 0x28e07: "pian2", // 𨸇
+ 0x28e09: "ta3", // 𨸉
+ 0x28e0b: "jiao1", // 𨸋
+ 0x28e0c: "ye1", // 𨸌
+ 0x28e0e: "yue4", // 𨸎
+ 0x28e10: "reng2", // 𨸐
+ 0x28e11: "qiao3", // 𨸑
+ 0x28e12: "qi2", // 𨸒
+ 0x28e13: "diao1", // 𨸓
+ 0x28e14: "qi2", // 𨸔
+ 0x28e17: "han4", // 𨸗
+ 0x28e18: "yuan2", // 𨸘
+ 0x28e19: "you2", // 𨸙
+ 0x28e1a: "ji2", // 𨸚
+ 0x28e1b: "gai4", // 𨸛
+ 0x28e1c: "hai1", // 𨸜
+ 0x28e1d: "shi4", // 𨸝
+ 0x28e1f: "qu1", // 𨸟
+ 0x28e29: "wen4", // 𨸩
+ 0x28e2c: "zhen4", // 𨸬
+ 0x28e2d: "po1", // 𨸭
+ 0x28e2e: "yan2", // 𨸮
+ 0x28e2f: "gu1", // 𨸯
+ 0x28e30: "ju4", // 𨸰
+ 0x28e31: "tian4", // 𨸱
+ 0x28e37: "e4", // 𨸷
+ 0x28e3a: "ya1", // 𨸺
+ 0x28e3b: "lin4", // 𨸻
+ 0x28e3c: "bi4", // 𨸼
+ 0x28e40: "zi3", // 𨹀
+ 0x28e41: "hong2", // 𨹁
+ 0x28e43: "duo3", // 𨹃
+ 0x28e45: "dui4", // 𨹅
+ 0x28e46: "xuan4", // 𨹆
+ 0x28e48: "shan3", // 𨹈
+ 0x28e4a: "shan3", // 𨹊
+ 0x28e4b: "yao2", // 𨹋
+ 0x28e4c: "ran3", // 𨹌
+ 0x28e54: "tuo2", // 𨹔
+ 0x28e57: "bing1", // 𨹗
+ 0x28e58: "xu4", // 𨹘
+ 0x28e59: "tun1", // 𨹙
+ 0x28e5a: "cheng2", // 𨹚
+ 0x28e5c: "dou4", // 𨹜
+ 0x28e5d: "yi4", // 𨹝
+ 0x28e61: "che4", // 𨹡
+ 0x28e75: "juan3", // 𨹵
+ 0x28e76: "ji1", // 𨹶
+ 0x28e78: "zhao4", // 𨹸
+ 0x28e79: "beng1", // 𨹹
+ 0x28e7b: "tian3", // 𨹻
+ 0x28e80: "peng1", // 𨺀
+ 0x28e85: "fu4", // 𨺅
+ 0x28e96: "tuo3", // 𨺖
+ 0x28e98: "xian2", // 𨺘
+ 0x28e99: "ni4", // 𨺙
+ 0x28e9a: "long2", // 𨺚
+ 0x28e9d: "zhuo2", // 𨺝
+ 0x28e9f: "zheng1", // 𨺟
+ 0x28ea0: "shun3", // 𨺠
+ 0x28ea1: "zong1", // 𨺡
+ 0x28ea2: "feng1", // 𨺢
+ 0x28ea3: "duan4", // 𨺣
+ 0x28ea4: "pi4", // 𨺤
+ 0x28ea5: "yan3", // 𨺥
+ 0x28ea6: "sou3", // 𨺦
+ 0x28ea7: "qiu2", // 𨺧
+ 0x28ea8: "e4", // 𨺨
+ 0x28ea9: "qian2", // 𨺩
+ 0x28eab: "qian3", // 𨺫
+ 0x28ead: "ca1", // 𨺭
+ 0x28eae: "xun4", // 𨺮
+ 0x28eb5: "zhui4", // 𨺵
+ 0x28eb8: "mao3", // 𨺸
+ 0x28eb9: "jiao3", // 𨺹
+ 0x28ebf: "zhan3", // 𨺿
+ 0x28ec0: "pi2", // 𨻀
+ 0x28ec1: "xi1", // 𨻁
+ 0x28ec2: "yan4", // 𨻂
+ 0x28ec3: "fei4", // 𨻃
+ 0x28ec4: "nie4", // 𨻄
+ 0x28ec6: "zhi4", // 𨻆
+ 0x28ec8: "suo3", // 𨻈
+ 0x28eca: "yi4", // 𨻊
+ 0x28ecc: "lei3", // 𨻌
+ 0x28ecd: "xu4", // 𨻍
+ 0x28ecf: "yi4", // 𨻏
+ 0x28ed2: "wei1", // 𨻒
+ 0x28ed5: "ji1", // 𨻕
+ 0x28ed6: "chen1", // 𨻖
+ 0x28ed7: "die2", // 𨻗
+ 0x28ee3: "yuan2", // 𨻣
+ 0x28ee5: "xi2", // 𨻥
+ 0x28ee7: "liu2", // 𨻧
+ 0x28ee8: "suo3", // 𨻨
+ 0x28ef1: "beng1", // 𨻱
+ 0x28ef2: "xia4", // 𨻲
+ 0x28ef3: "yan4", // 𨻳
+ 0x28ef5: "cui1", // 𨻵
+ 0x28ef7: "kang1", // 𨻷
+ 0x28efa: "qing1", // 𨻺
+ 0x28efb: "lou2", // 𨻻
+ 0x28efc: "bi1", // 𨻼
+ 0x28f08: "zhan4", // 𨼈
+ 0x28f09: "cuan4", // 𨼉
+ 0x28f0a: "wu2", // 𨼊
+ 0x28f0b: "xu1", // 𨼋
+ 0x28f0c: "chen1", // 𨼌
+ 0x28f0d: "hao2", // 𨼍
+ 0x28f0e: "jue2", // 𨼎
+ 0x28f10: "chen4", // 𨼐
+ 0x28f11: "cha2", // 𨼑
+ 0x28f12: "chan3", // 𨼒
+ 0x28f13: "zhi2", // 𨼓
+ 0x28f14: "xun2", // 𨼔
+ 0x28f23: "ge2", // 𨼣
+ 0x28f24: "chen2", // 𨼤
+ 0x28f25: "ye4", // 𨼥
+ 0x28f2a: "chu3", // 𨼪
+ 0x28f2b: "qu2", // 𨼫
+ 0x28f2c: "xie4", // 𨼬
+ 0x28f2e: "zhan4", // 𨼮
+ 0x28f2f: "ken3", // 𨼯
+ 0x28f31: "jue2", // 𨼱
+ 0x28f3d: "qu2", // 𨼽
+ 0x28f3f: "meng2", // 𨼿
+ 0x28f40: "ye4", // 𨽀
+ 0x28f41: "zou1", // 𨽁
+ 0x28f42: "pu2", // 𨽂
+ 0x28f44: "shi4", // 𨽄
+ 0x28f49: "shu3", // 𨽉
+ 0x28f4a: "chan2", // 𨽊
+ 0x28f4d: "du2", // 𨽍
+ 0x28f4f: "guo1", // 𨽏
+ 0x28f50: "lu4", // 𨽐
+ 0x28f51: "yan1", // 𨽑
+ 0x28f56: "niao3", // 𨽖
+ 0x28f57: "bin1", // 𨽗
+ 0x28f5f: "tui2", // 𨽟
+ 0x28f66: "ni4", // 𨽦
+ 0x28f67: "huan1", // 𨽧
+ 0x28f68: "qian2", // 𨽨
+ 0x28f6f: "xia4", // 𨽯
+ 0x28f72: "ling2", // 𨽲
+ 0x28f77: "lian2", // 𨽷
+ 0x28f79: "yi4", // 𨽹
+ 0x28f7b: "li4", // 𨽻
+ 0x28f7c: "si4", // 𨽼
+ 0x28f7f: "dai4", // 𨽿
+ 0x28f82: "wei4", // 𨾂
+ 0x28f85: "ci4", // 𨾅
+ 0x28f89: "jiu3", // 𨾉
+ 0x28f8a: "hong2", // 𨾊
+ 0x28f8c: "yu2", // 𨾌
+ 0x28f8e: "kui2", // 𨾎
+ 0x28f92: "hang2", // 𨾒
+ 0x28f93: "ge1", // 𨾓
+ 0x28f94: "fang4", // 𨾔
+ 0x28f97: "kui2", // 𨾗
+ 0x28f9a: "gui1", // 𨾚
+ 0x28f9b: "chi3", // 𨾛
+ 0x28f9e: "jiu3", // 𨾞
+ 0x28fa1: "sui1", // 𨾡
+ 0x28fa4: "die2", // 𨾤
+ 0x28fac: "sui3", // 𨾬
+ 0x28fb0: "qin2", // 𨾰
+ 0x28fb4: "gui1", // 𨾴
+ 0x28fbb: "zhui1", // 𨾻
+ 0x28fbe: "tiao4", // 𨾾
+ 0x28fc1: "yue4", // 𨿁
+ 0x28fc7: "zui3", // 𨿇
+ 0x28fcf: "wu2", // 𨿏
+ 0x28fd0: "cui3", // 𨿐
+ 0x28fdb: "zhi4", // 𨿛
+ 0x28fe0: "shui4", // 𨿠
+ 0x28fe2: "dong1", // 𨿢
+ 0x28fed: "wei2", // 𨿭
+ 0x28fff: "chong3", // 𨿿
+ 0x2900b: "run2", // 𩀋
+ 0x29016: "ji2", // 𩀖
+ 0x2901c: "diao1", // 𩀜
+ 0x2901e: "cang1", // 𩀞
+ 0x29020: "kou4", // 𩀠
+ 0x29023: "wei2", // 𩀣
+ 0x29027: "can2", // 𩀧
+ 0x2902a: "ma2", // 𩀪
+ 0x2902b: "ou4", // 𩀫
+ 0x29032: "san3", // 𩀲
+ 0x29036: "wei2", // 𩀶
+ 0x2903c: "san3", // 𩀼
+ 0x2903f: "jin1", // 𩀿
+ 0x2904c: "wei2", // 𩁌
+ 0x2905e: "cai4", // 𩁞
+ 0x2905f: "li2", // 𩁟
+ 0x2906f: "yue4", // 𩁯
+ 0x29074: "yun1", // 𩁴
+ 0x29077: "cheng1", // 𩁷
+ 0x2907a: "shan1", // 𩁺
+ 0x29082: "hu1", // 𩂂
+ 0x29083: "shai4", // 𩂃
+ 0x29084: "tun2", // 𩂄
+ 0x29086: "fou3", // 𩂆
+ 0x29088: "qin4", // 𩂈
+ 0x29089: "xu1", // 𩂉
+ 0x2908d: "chuan1", // 𩂍
+ 0x2908e: "fu4", // 𩂎
+ 0x29092: "yi4", // 𩂒
+ 0x29093: "dong1", // 𩂓
+ 0x29094: "fu2", // 𩂔
+ 0x29095: "fu2", // 𩂕
+ 0x29096: "ze2", // 𩂖
+ 0x29097: "pu4", // 𩂗
+ 0x29099: "ling2", // 𩂙
+ 0x2909d: "shai4", // 𩂝
+ 0x2909e: "pao4", // 𩂞
+ 0x290a2: "yin2", // 𩂢
+ 0x290a3: "luo4", // 𩂣
+ 0x290a4: "hua4", // 𩂤
+ 0x290a5: "yin4", // 𩂥
+ 0x290a6: "beng4", // 𩂦
+ 0x290a7: "yu1", // 𩂧
+ 0x290a8: "she4", // 𩂨
+ 0x290aa: "xie4", // 𩂪
+ 0x290ab: "chu3", // 𩂫
+ 0x290b4: "she4", // 𩂴
+ 0x290b5: "dian4", // 𩂵
+ 0x290b9: "yi4", // 𩂹
+ 0x290bb: "che4", // 𩂻
+ 0x290bc: "geng3", // 𩂼
+ 0x290bd: "long2", // 𩂽
+ 0x290be: "ping2", // 𩂾
+ 0x290bf: "yun3", // 𩂿
+ 0x290c0: "yan4", // 𩃀
+ 0x290c1: "mo4", // 𩃁
+ 0x290c3: "sui1", // 𩃃
+ 0x290cb: "jing4", // 𩃋
+ 0x290cd: "song4", // 𩃍
+ 0x290ce: "pang2", // 𩃎
+ 0x290d0: "ya2", // 𩃐
+ 0x290d1: "se4", // 𩃑
+ 0x290d2: "duo3", // 𩃒
+ 0x290d5: "chuang2", // 𩃕
+ 0x290d6: "xie4", // 𩃖
+ 0x290d8: "tuan2", // 𩃘
+ 0x290d9: "gong1", // 𩃙
+ 0x290da: "xuan4", // 𩃚
+ 0x290dc: "la1", // 𩃜
+ 0x290de: "ling2", // 𩃞
+ 0x290e0: "dai4", // 𩃠
+ 0x290e1: "zha2", // 𩃡
+ 0x290ec: "yin1", // 𩃬
+ 0x290ed: "song1", // 𩃭
+ 0x290ef: "yu3", // 𩃯
+ 0x290f0: "tuo2", // 𩃰
+ 0x290f1: "tuo2", // 𩃱
+ 0x290f4: "ba4", // 𩃴
+ 0x290f5: "ran3", // 𩃵
+ 0x290f6: "bo2", // 𩃶
+ 0x290f7: "dai4", // 𩃷
+ 0x290f9: "zha2", // 𩃹
+ 0x290fa: "hou2", // 𩃺
+ 0x290fe: "hui3", // 𩃾
+ 0x29105: "lu2", // 𩄅
+ 0x2910a: "ling4", // 𩄊
+ 0x2910b: "ru2", // 𩄋
+ 0x29115: "dan4", // 𩄕
+ 0x29116: "meng2", // 𩄖
+ 0x29117: "xia4", // 𩄗
+ 0x29118: "weng3", // 𩄘
+ 0x29119: "han2", // 𩄙
+ 0x2911a: "zi1", // 𩄚
+ 0x2911b: "zhen4", // 𩄛
+ 0x2911c: "se4", // 𩄜
+ 0x2911d: "cuo2", // 𩄝
+ 0x2911e: "li4", // 𩄞
+ 0x29120: "dian1", // 𩄠
+ 0x29121: "lian2", // 𩄡
+ 0x29122: "gou4", // 𩄢
+ 0x29126: "peng2", // 𩄦
+ 0x2912a: "ying1", // 𩄪
+ 0x2912c: "hou4", // 𩄬
+ 0x2912e: "dui4", // 𩄮
+ 0x2912f: "wu4", // 𩄯
+ 0x29137: "piao4", // 𩄷
+ 0x29138: "he4", // 𩄸
+ 0x2913a: "long2", // 𩄺
+ 0x2913b: "mo4", // 𩄻
+ 0x2913c: "fei3", // 𩄼
+ 0x2913d: "lv3", // 𩄽
+ 0x2913e: "ze2", // 𩄾
+ 0x2913f: "bo2", // 𩄿
+ 0x29140: "dian4", // 𩅀
+ 0x29141: "mang3", // 𩅁
+ 0x29143: "zhuang4", // 𩅃
+ 0x29144: "lu4", // 𩅄
+ 0x29145: "pang1", // 𩅅
+ 0x29146: "dui4", // 𩅆
+ 0x29147: "bu4", // 𩅇
+ 0x2914c: "chen1", // 𩅌
+ 0x2914d: "man4", // 𩅍
+ 0x29156: "xi1", // 𩅖
+ 0x2915d: "an3", // 𩅝
+ 0x2915e: "zhong1", // 𩅞
+ 0x29160: "nan4", // 𩅠
+ 0x29161: "tuo4", // 𩅡
+ 0x29162: "he2", // 𩅢
+ 0x29165: "dui4", // 𩅥
+ 0x29166: "wan1", // 𩅦
+ 0x29167: "zhong1", // 𩅧
+ 0x29168: "cen2", // 𩅨
+ 0x29169: "li4", // 𩅩
+ 0x2916a: "shuang1", // 𩅪
+ 0x2916e: "cen2", // 𩅮
+ 0x29170: "si1", // 𩅰
+ 0x29172: "dui4", // 𩅲
+ 0x29174: "hun1", // 𩅴
+ 0x2917c: "jian1", // 𩅼
+ 0x2917d: "nong2", // 𩅽
+ 0x2917e: "dan4", // 𩅾
+ 0x2917f: "fu4", // 𩅿
+ 0x29180: "huo4", // 𩆀
+ 0x29181: "hui4", // 𩆁
+ 0x29182: "ci2", // 𩆂
+ 0x29184: "yong3", // 𩆄
+ 0x29185: "sa4", // 𩆅
+ 0x29186: "ting2", // 𩆆
+ 0x2918e: "liu4", // 𩆎
+ 0x29191: "suan1", // 𩆑
+ 0x29192: "ling2", // 𩆒
+ 0x29193: "man2", // 𩆓
+ 0x29194: "dian4", // 𩆔
+ 0x29198: "pao1", // 𩆘
+ 0x2919a: "ling2", // 𩆚
+ 0x2919d: "li4", // 𩆝
+ 0x2919f: "nou2", // 𩆟
+ 0x291a3: "lie4", // 𩆣
+ 0x291a4: "shan3", // 𩆤
+ 0x291a6: "fei4", // 𩆦
+ 0x291ab: "shan3", // 𩆫
+ 0x291ae: "ling2", // 𩆮
+ 0x291af: "zhan4", // 𩆯
+ 0x291b1: "bin1", // 𩆱
+ 0x291b2: "li2", // 𩆲
+ 0x291b5: "si1", // 𩆵
+ 0x291b6: "rang2", // 𩆶
+ 0x291b7: "jian1", // 𩆷
+ 0x291b8: "zhuo2", // 𩆸
+ 0x291bb: "ling2", // 𩆻
+ 0x291bc: "ling2", // 𩆼
+ 0x291bd: "meng4", // 𩆽
+ 0x291bf: "shuang1", // 𩆿
+ 0x291c4: "ling2", // 𩇄
+ 0x291c7: "hun4", // 𩇇
+ 0x291ce: "ling2", // 𩇎
+ 0x291cf: "jian1", // 𩇏
+ 0x291d0: "qu2", // 𩇐
+ 0x291d4: "nong2", // 𩇔
+ 0x291d5: "jing4", // 𩇕
+ 0x291d6: "chen1", // 𩇖
+ 0x291dc: "zhen1", // 𩇜
+ 0x291dd: "qing4", // 𩇝
+ 0x291df: "qing4", // 𩇟
+ 0x291e0: "e4", // 𩇠
+ 0x291e3: "se4", // 𩇣
+ 0x291e9: "bei4", // 𩇩
+ 0x291eb: "fei1", // 𩇫
+ 0x291ee: "fei4", // 𩇮
+ 0x291ef: "fei2", // 𩇯
+ 0x291f4: "fang1", // 𩇴
+ 0x291f5: "ku3", // 𩇵
+ 0x291fa: "za2", // 𩇺
+ 0x291fb: "hui4", // 𩇻
+ 0x291fd: "fei2", // 𩇽
+ 0x29201: "dui4", // 𩈁
+ 0x29206: "pa1", // 𩈆
+ 0x29207: "niu3", // 𩈇
+ 0x29208: "pang4", // 𩈈
+ 0x29209: "dan4", // 𩈉
+ 0x2920a: "dan1", // 𩈊
+ 0x2920b: "ai4", // 𩈋
+ 0x2920d: "tian3", // 𩈍
+ 0x2920e: "chao3", // 𩈎
+ 0x2920f: "ao3", // 𩈏
+ 0x29210: "mei4", // 𩈐
+ 0x29211: "nan3", // 𩈑
+ 0x29214: "bo4", // 𩈔
+ 0x29215: "yu4", // 𩈕
+ 0x29216: "xian1", // 𩈖
+ 0x29217: "mai4", // 𩈗
+ 0x2921a: "ping1", // 𩈚
+ 0x2921c: "dui1", // 𩈜
+ 0x2921e: "dao4", // 𩈞
+ 0x29221: "xing4", // 𩈡
+ 0x29222: "ni4", // 𩈢
+ 0x29223: "han1", // 𩈣
+ 0x29224: "chu4", // 𩈤
+ 0x29225: "shua3", // 𩈥
+ 0x29226: "man3", // 𩈦
+ 0x2922c: "wan4", // 𩈬
+ 0x2922d: "yi4", // 𩈭
+ 0x2922e: "diao4", // 𩈮
+ 0x2922f: "yan1", // 𩈯
+ 0x29231: "wo4", // 𩈱
+ 0x29232: "suan4", // 𩈲
+ 0x29234: "an3", // 𩈴
+ 0x29235: "lan2", // 𩈵
+ 0x29236: "nan3", // 𩈶
+ 0x29238: "qiu3", // 𩈸
+ 0x29239: "mian4", // 𩈹
+ 0x2923a: "nuo3", // 𩈺
+ 0x2923b: "can2", // 𩈻
+ 0x2923c: "can3", // 𩈼
+ 0x29240: "lan4", // 𩉀
+ 0x29241: "tian3", // 𩉁
+ 0x29242: "ye4", // 𩉂
+ 0x29244: "nian3", // 𩉄
+ 0x29246: "shua3", // 𩉆
+ 0x2924b: "ci2", // 𩉋
+ 0x2924d: "jian3", // 𩉍
+ 0x29250: "gan4", // 𩉐
+ 0x29254: "jian4", // 𩉔
+ 0x29255: "guo2", // 𩉕
+ 0x29257: "zhan1", // 𩉗
+ 0x29259: "luo3", // 𩉙
+ 0x2925c: "ji1", // 𩉜
+ 0x2925d: "gui4", // 𩉝
+ 0x29261: "jia2", // 𩉡
+ 0x29262: "ji3", // 𩉢
+ 0x29265: "xuan4", // 𩉥
+ 0x29267: "feng1", // 𩉧
+ 0x2926b: "bi4", // 𩉫
+ 0x2926c: "qi2", // 𩉬
+ 0x2926f: "yuan2", // 𩉯
+ 0x29270: "ang4", // 𩉰
+ 0x29271: "di1", // 𩉱
+ 0x29274: "e4", // 𩉴
+ 0x29275: "fen2", // 𩉵
+ 0x29278: "ju4", // 𩉸
+ 0x29279: "ni3", // 𩉹
+ 0x2927a: "tuo2", // 𩉺
+ 0x2927c: "shen1", // 𩉼
+ 0x2927d: "fu2", // 𩉽
+ 0x2927e: "xia2", // 𩉾
+ 0x2927f: "qu2", // 𩉿
+ 0x29280: "po4", // 𩊀
+ 0x29281: "wan3", // 𩊁
+ 0x29282: "ling2", // 𩊂
+ 0x29283: "ma4", // 𩊃
+ 0x29284: "zhou4", // 𩊄
+ 0x29285: "bao4", // 𩊅
+ 0x29287: "yu4", // 𩊇
+ 0x2928c: "beng3", // 𩊌
+ 0x2928d: "mai4", // 𩊍
+ 0x2928f: "jia1", // 𩊏
+ 0x29291: "yang3", // 𩊑
+ 0x29293: "kua3", // 𩊓
+ 0x29294: "jiao4", // 𩊔
+ 0x29296: "bing3", // 𩊖
+ 0x2929a: "luo4", // 𩊚
+ 0x2929b: "gui3", // 𩊛
+ 0x2929c: "duo4", // 𩊜
+ 0x2929d: "zhi4", // 𩊝
+ 0x292a1: "zhen4", // 𩊡
+ 0x292a2: "e4", // 𩊢
+ 0x292a3: "zhu1", // 𩊣
+ 0x292a4: "ba2", // 𩊤
+ 0x292a8: "zhen4", // 𩊨
+ 0x292a9: "feng1", // 𩊩
+ 0x292aa: "dou4", // 𩊪
+ 0x292ab: "nian3", // 𩊫
+ 0x292ac: "bu4", // 𩊬
+ 0x292ad: "dui4", // 𩊭
+ 0x292ae: "sha1", // 𩊮
+ 0x292af: "se4", // 𩊯
+ 0x292b0: "bi4", // 𩊰
+ 0x292b4: "zhi4", // 𩊴
+ 0x292b5: "zhe2", // 𩊵
+ 0x292b6: "bu4", // 𩊶
+ 0x292ba: "jue2", // 𩊺
+ 0x292bb: "xun4", // 𩊻
+ 0x292bf: "xi4", // 𩊿
+ 0x292c1: "zhuo2", // 𩋁
+ 0x292c2: "bai4", // 𩋂
+ 0x292c3: "yao2", // 𩋃
+ 0x292c4: "chou3", // 𩋄
+ 0x292c5: "ta4", // 𩋅
+ 0x292c6: "qian1", // 𩋆
+ 0x292c8: "nao4", // 𩋈
+ 0x292c9: "yu4", // 𩋉
+ 0x292ca: "e4", // 𩋊
+ 0x292cb: "jian1", // 𩋋
+ 0x292cc: "yi4", // 𩋌
+ 0x292cd: "xiao1", // 𩋍
+ 0x292cf: "nie4", // 𩋏
+ 0x292d2: "bing1", // 𩋒
+ 0x292d7: "guo3", // 𩋗
+ 0x292d8: "xie2", // 𩋘
+ 0x292d9: "diao4", // 𩋙
+ 0x292dc: "ju1", // 𩋜
+ 0x292dd: "suo3", // 𩋝
+ 0x292de: "die2", // 𩋞
+ 0x292df: "fu2", // 𩋟
+ 0x292e0: "mian3", // 𩋠
+ 0x292e1: "shi4", // 𩋡
+ 0x292e2: "xuan4", // 𩋢
+ 0x292e3: "ti2", // 𩋣
+ 0x292e4: "yu4", // 𩋤
+ 0x292e7: "xie2", // 𩋧
+ 0x292e8: "fu2", // 𩋨
+ 0x292e9: "zhi4", // 𩋩
+ 0x292ea: "ni3", // 𩋪
+ 0x292eb: "xuan4", // 𩋫
+ 0x292ec: "yang2", // 𩋬
+ 0x292ee: "feng3", // 𩋮
+ 0x292ef: "zong4", // 𩋯
+ 0x292f0: "zhou4", // 𩋰
+ 0x292f1: "xuan1", // 𩋱
+ 0x292f5: "zhu1", // 𩋵
+ 0x292f7: "la5", // 𩋷
+ 0x292f9: "ying4", // 𩋹
+ 0x292fa: "gao4", // 𩋺
+ 0x292fb: "kuo4", // 𩋻
+ 0x292fd: "e2", // 𩋽
+ 0x292fe: "wei2", // 𩋾
+ 0x292ff: "mei2", // 𩋿
+ 0x29303: "huai2", // 𩌃
+ 0x29304: "chou3", // 𩌄
+ 0x29306: "suo3", // 𩌆
+ 0x29307: "ta4", // 𩌇
+ 0x29308: "suo3", // 𩌈
+ 0x29309: "ta4", // 𩌉
+ 0x2930a: "xue4", // 𩌊
+ 0x2930c: "gong3", // 𩌌
+ 0x2930d: "jia3", // 𩌍
+ 0x2930f: "bo2", // 𩌏
+ 0x29310: "ta4", // 𩌐
+ 0x29311: "yuan3", // 𩌑
+ 0x29318: "ta4", // 𩌘
+ 0x2931d: "chui2", // 𩌝
+ 0x29320: "xiong1", // 𩌠
+ 0x29321: "he2", // 𩌡
+ 0x29322: "suo1", // 𩌢
+ 0x29327: "mo4", // 𩌧
+ 0x29328: "chong2", // 𩌨
+ 0x29329: "sui1", // 𩌩
+ 0x2932a: "ze2", // 𩌪
+ 0x2932b: "lu4", // 𩌫
+ 0x2932c: "zhang1", // 𩌬
+ 0x2932d: "luo4", // 𩌭
+ 0x2932e: "xu4", // 𩌮
+ 0x2932f: "jian1", // 𩌯
+ 0x29330: "shan1", // 𩌰
+ 0x29332: "xu4", // 𩌲
+ 0x2933e: "jiang3", // 𩌾
+ 0x29342: "bao4", // 𩍂
+ 0x29343: "mai2", // 𩍃
+ 0x29345: "tong2", // 𩍅
+ 0x29346: "xi4", // 𩍆
+ 0x29349: "rong2", // 𩍉
+ 0x2934b: "sheng2", // 𩍋
+ 0x2934c: "zhou4", // 𩍌
+ 0x2934e: "jian1", // 𩍎
+ 0x2934f: "fu4", // 𩍏
+ 0x29350: "deng4", // 𩍐
+ 0x29353: "yong1", // 𩍓
+ 0x29354: "ju1", // 𩍔
+ 0x29356: "yi4", // 𩍖
+ 0x29357: "bang1", // 𩍗
+ 0x29359: "se4", // 𩍙
+ 0x2935a: "sui4", // 𩍚
+ 0x2935c: "duo2", // 𩍜
+ 0x2935d: "xie4", // 𩍝
+ 0x29361: "huan2", // 𩍡
+ 0x29365: "ru3", // 𩍥
+ 0x29366: "ni3", // 𩍦
+ 0x29367: "zhou4", // 𩍧
+ 0x29368: "gui4", // 𩍨
+ 0x2936a: "luo4", // 𩍪
+ 0x29372: "zhi1", // 𩍲
+ 0x29373: "xu4", // 𩍳
+ 0x29375: "zhi1", // 𩍵
+ 0x29377: "jue2", // 𩍷
+ 0x29378: "ju1", // 𩍸
+ 0x2937b: "yuan2", // 𩍻
+ 0x2937c: "lu2", // 𩍼
+ 0x2937f: "bo2", // 𩍿
+ 0x29382: "rong2", // 𩎂
+ 0x29383: "xie4", // 𩎃
+ 0x29389: "xi3", // 𩎉
+ 0x2938a: "luo2", // 𩎊
+ 0x2938e: "ge2", // 𩎎
+ 0x29391: "zuan1", // 𩎑
+ 0x29392: "han4", // 𩎒
+ 0x29394: "jiao1", // 𩎔
+ 0x29395: "sa3", // 𩎕
+ 0x29396: "qin2", // 𩎖
+ 0x29397: "qun1", // 𩎗
+ 0x29398: "pao2", // 𩎘
+ 0x29399: "yue4", // 𩎙
+ 0x2939a: "che4", // 𩎚
+ 0x2939b: "fu2", // 𩎛
+ 0x2939c: "pei1", // 𩎜
+ 0x2939f: "mei4", // 𩎟
+ 0x293a2: "tao1", // 𩎢
+ 0x293a4: "ken1", // 𩎤
+ 0x293a5: "xi4", // 𩎥
+ 0x293ab: "duo4", // 𩎫
+ 0x293ad: "yi4", // 𩎭
+ 0x293b0: "sui4", // 𩎰
+ 0x293b2: "xia2", // 𩎲
+ 0x293b3: "juan1", // 𩎳
+ 0x293b5: "wei2", // 𩎵
+ 0x293b7: "yi4", // 𩎷
+ 0x293b9: "yu4", // 𩎹
+ 0x293bb: "bai4", // 𩎻
+ 0x293bc: "tuo2", // 𩎼
+ 0x293bd: "ta4", // 𩎽
+ 0x293be: "pao2", // 𩎾
+ 0x293c2: "bing3", // 𩏂
+ 0x293c5: "yun4", // 𩏅
+ 0x293c6: "yun4", // 𩏆
+ 0x293c7: "duan4", // 𩏇
+ 0x293c8: "ruan3", // 𩏈
+ 0x293c9: "wei2", // 𩏉
+ 0x293cf: "wei3", // 𩏏
+ 0x293d0: "gui4", // 𩏐
+ 0x293d2: "da2", // 𩏒
+ 0x293d3: "xia2", // 𩏓
+ 0x293d6: "hun4", // 𩏖
+ 0x293d7: "juan3", // 𩏗
+ 0x293d8: "sui1", // 𩏘
+ 0x293da: "sui4", // 𩏚
+ 0x293dd: "lou2", // 𩏝
+ 0x293de: "bai4", // 𩏞
+ 0x293df: "yu4", // 𩏟
+ 0x293e0: "zheng4", // 𩏠
+ 0x293e1: "gui4", // 𩏡
+ 0x293e3: "kui1", // 𩏣
+ 0x293e4: "gao1", // 𩏤
+ 0x293e5: "dan1", // 𩏥
+ 0x293e9: "xian3", // 𩏩
+ 0x293ea: "zhai2", // 𩏪
+ 0x293eb: "se4", // 𩏫
+ 0x293ed: "ke1", // 𩏭
+ 0x293ee: "bu3", // 𩏮
+ 0x293ef: "bo2", // 𩏯
+ 0x293f2: "sui4", // 𩏲
+ 0x293f4: "yu4", // 𩏴
+ 0x293f5: "bu3", // 𩏵
+ 0x293f6: "jiu1", // 𩏶
+ 0x293f7: "jiu1", // 𩏷
+ 0x293f9: "juan4", // 𩏹
+ 0x293fa: "jue2", // 𩏺
+ 0x293fc: "na4", // 𩏼
+ 0x293fd: "zhai2", // 𩏽
+ 0x293fe: "tao1", // 𩏾
+ 0x293ff: "wei3", // 𩏿
+ 0x29400: "xia2", // 𩐀
+ 0x29401: "xie4", // 𩐁
+ 0x29405: "sa4", // 𩐅
+ 0x29406: "ji1", // 𩐆
+ 0x29409: "xie4", // 𩐉
+ 0x2940c: "dui4", // 𩐌
+ 0x2940d: "zi3", // 𩐍
+ 0x29418: "yuan3", // 𩐘
+ 0x29419: "qin4", // 𩐙
+ 0x2941a: "fu2", // 𩐚
+ 0x2941b: "peng2", // 𩐛
+ 0x2941c: "pao2", // 𩐜
+ 0x2941e: "yin4", // 𩐞
+ 0x29420: "hong1", // 𩐠
+ 0x29421: "zu2", // 𩐡
+ 0x29423: "gong1", // 𩐣
+ 0x29424: "dong4", // 𩐤
+ 0x29425: "he1", // 𩐥
+ 0x29426: "wo4", // 𩐦
+ 0x29428: "pang1", // 𩐨
+ 0x2942b: "su4", // 𩐫
+ 0x2942c: "kan3", // 𩐬
+ 0x2942d: "nie4", // 𩐭
+ 0x2942e: "hao2", // 𩐮
+ 0x2942f: "feng4", // 𩐯
+ 0x29430: "e4", // 𩐰
+ 0x29431: "ye4", // 𩐱
+ 0x29434: "ting2", // 𩐴
+ 0x29435: "dong4", // 𩐵
+ 0x29436: "zhe2", // 𩐶
+ 0x29437: "sang1", // 𩐷
+ 0x2943b: "mo4", // 𩐻
+ 0x2943c: "su4", // 𩐼
+ 0x2943e: "le4", // 𩐾
+ 0x29440: "pu3", // 𩑀
+ 0x29441: "e2", // 𩑁
+ 0x29442: "zhuo2", // 𩑂
+ 0x29443: "ye4", // 𩑃
+ 0x29447: "xiang1", // 𩑇
+ 0x29448: "guang4", // 𩑈
+ 0x29449: "ren3", // 𩑉
+ 0x2944a: "ling2", // 𩑊
+ 0x2944d: "ao4", // 𩑍
+ 0x29450: "chai1", // 𩑐
+ 0x29452: "duo2", // 𩑒
+ 0x29453: "qiong2", // 𩑓
+ 0x29454: "ku1", // 𩑔
+ 0x29455: "xu1", // 𩑕
+ 0x29456: "huan2", // 𩑖
+ 0x29457: "yao1", // 𩑗
+ 0x29458: "zhen4", // 𩑘
+ 0x29459: "ting3", // 𩑙
+ 0x2945a: "beng3", // 𩑚
+ 0x2945d: "ang2", // 𩑝
+ 0x2945f: "kan1", // 𩑟
+ 0x29461: "ku1", // 𩑡
+ 0x29462: "pei2", // 𩑢
+ 0x29463: "you4", // 𩑣
+ 0x29464: "ao3", // 𩑤
+ 0x29465: "men2", // 𩑥
+ 0x29466: "mo4", // 𩑦
+ 0x2946c: "fu3", // 𩑬
+ 0x2946d: "qing1", // 𩑭
+ 0x2946e: "la4", // 𩑮
+ 0x2946f: "dou3", // 𩑯
+ 0x29470: "tan3", // 𩑰
+ 0x29473: "qian3", // 𩑳
+ 0x29474: "yao4", // 𩑴
+ 0x29475: "wei4", // 𩑵
+ 0x29476: "hu2", // 𩑶
+ 0x29477: "mo4", // 𩑷
+ 0x29478: "he1", // 𩑸
+ 0x29479: "xuan4", // 𩑹
+ 0x2947b: "bi4", // 𩑻
+ 0x2947c: "po1", // 𩑼
+ 0x2947e: "di1", // 𩑾
+ 0x29480: "zhen3", // 𩒀
+ 0x29482: "shi1", // 𩒂
+ 0x29483: "kan3", // 𩒃
+ 0x29484: "ce4", // 𩒄
+ 0x29487: "xu1", // 𩒇
+ 0x29488: "zhen3", // 𩒈
+ 0x2948a: "zhu3", // 𩒊
+ 0x2948f: "hui4", // 𩒏
+ 0x29490: "chi3", // 𩒐
+ 0x29493: "hong3", // 𩒓
+ 0x29494: "nou2", // 𩒔
+ 0x29495: "nie4", // 𩒕
+ 0x29496: "yan4", // 𩒖
+ 0x29498: "chong3", // 𩒘
+ 0x29499: "fu3", // 𩒙
+ 0x2949a: "guang1", // 𩒚
+ 0x2949b: "qi1", // 𩒛
+ 0x2949d: "gen3", // 𩒝
+ 0x2949e: "ting3", // 𩒞
+ 0x294a2: "tan3", // 𩒢
+ 0x294a3: "qian3", // 𩒣
+ 0x294a6: "jiu4", // 𩒦
+ 0x294a7: "xu1", // 𩒧
+ 0x294a8: "qi3", // 𩒨
+ 0x294aa: "zhen4", // 𩒪
+ 0x294ae: "qiu2", // 𩒮
+ 0x294b0: "e3", // 𩒰
+ 0x294b3: "hui4", // 𩒳
+ 0x294b4: "hong4", // 𩒴
+ 0x294b5: "qing3", // 𩒵
+ 0x294b7: "che1", // 𩒷
+ 0x294ba: "fu4", // 𩒺
+ 0x294bc: "hong1", // 𩒼
+ 0x294bd: "xi1", // 𩒽
+ 0x294be: "wu2", // 𩒾
+ 0x294bf: "mang2", // 𩒿
+ 0x294c2: "ti1", // 𩓂
+ 0x294c5: "hong1", // 𩓅
+ 0x294d0: "bo2", // 𩓐
+ 0x294d2: "qin3", // 𩓒
+ 0x294d3: "gen3", // 𩓓
+ 0x294d6: "fu2", // 𩓖
+ 0x294d7: "kui3", // 𩓗
+ 0x294dd: "bie2", // 𩓝
+ 0x294de: "jing4", // 𩓞
+ 0x294df: "kan3", // 𩓟
+ 0x294e0: "gui1", // 𩓠
+ 0x294e2: "gao3", // 𩓢
+ 0x294e3: "xu1", // 𩓣
+ 0x294e4: "an4", // 𩓤
+ 0x294e5: "yue4", // 𩓥
+ 0x294e6: "wu4", // 𩓦
+ 0x294e7: "yi2", // 𩓧
+ 0x294e8: "jing1", // 𩓨
+ 0x294ea: "lu4", // 𩓪
+ 0x294eb: "quan2", // 𩓫
+ 0x294ec: "tui2", // 𩓬
+ 0x294ee: "ji4", // 𩓮
+ 0x294fa: "jiong3", // 𩓺
+ 0x294fb: "jue2", // 𩓻
+ 0x294fc: "pie1", // 𩓼
+ 0x294fd: "kun1", // 𩓽
+ 0x29500: "wai4", // 𩔀
+ 0x29501: "hui4", // 𩔁
+ 0x29502: "dun4", // 𩔂
+ 0x29503: "yuan3", // 𩔃
+ 0x29504: "jie2", // 𩔄
+ 0x29506: "gui4", // 𩔆
+ 0x29507: "gao3", // 𩔇
+ 0x29508: "po4", // 𩔈
+ 0x29509: "men2", // 𩔉
+ 0x2950a: "zhuan4", // 𩔊
+ 0x2950b: "hang4", // 𩔋
+ 0x29514: "yong2", // 𩔔
+ 0x29515: "qiu2", // 𩔕
+ 0x29517: "lei4", // 𩔗
+ 0x29518: "ang2", // 𩔘
+ 0x29519: "pi3", // 𩔙
+ 0x2951a: "weng1", // 𩔚
+ 0x2951d: "qin4", // 𩔝
+ 0x2951f: "qin3", // 𩔟
+ 0x29520: "mie4", // 𩔠
+ 0x29521: "dou1", // 𩔡
+ 0x29522: "mi2", // 𩔢
+ 0x29523: "zhan1", // 𩔣
+ 0x29525: "qing3", // 𩔥
+ 0x29526: "yi2", // 𩔦
+ 0x2952e: "ban1", // 𩔮
+ 0x29531: "juan1", // 𩔱
+ 0x29533: "ze2", // 𩔳
+ 0x29534: "xu4", // 𩔴
+ 0x29535: "lan2", // 𩔵
+ 0x29536: "ma2", // 𩔶
+ 0x29537: "ma2", // 𩔷
+ 0x29538: "ou1", // 𩔸
+ 0x29539: "bei1", // 𩔹
+ 0x2953b: "pou2", // 𩔻
+ 0x2953c: "xu4", // 𩔼
+ 0x29540: "ao4", // 𩕀
+ 0x29546: "hong3", // 𩕆
+ 0x29549: "hong3", // 𩕉
+ 0x2954a: "zhan3", // 𩕊
+ 0x2954c: "sen3", // 𩕌
+ 0x2954d: "gao3", // 𩕍
+ 0x2954f: "po2", // 𩕏
+ 0x29550: "liao4", // 𩕐
+ 0x29555: "wai4", // 𩕕
+ 0x29556: "xuan1", // 𩕖
+ 0x2955c: "kui2", // 𩕜
+ 0x2955f: "e4", // 𩕟
+ 0x29560: "han4", // 𩕠
+ 0x29561: "se4", // 𩕡
+ 0x29564: "dan4", // 𩕤
+ 0x2956a: "xuan1", // 𩕪
+ 0x2956c: "e4", // 𩕬
+ 0x2956d: "gai4", // 𩕭
+ 0x2956f: "dao1", // 𩕯
+ 0x29571: "meng3", // 𩕱
+ 0x29572: "yi1", // 𩕲
+ 0x29573: "ning3", // 𩕳
+ 0x29575: "pin2", // 𩕵
+ 0x29579: "cang1", // 𩕹
+ 0x2957e: "yuan4", // 𩕾
+ 0x29580: "e4", // 𩖀
+ 0x29581: "nie4", // 𩖁
+ 0x29584: "yin3", // 𩖄
+ 0x29587: "qiao1", // 𩖇
+ 0x29589: "hong1", // 𩖉
+ 0x2958a: "ling2", // 𩖊
+ 0x2958c: "chan1", // 𩖌
+ 0x2958d: "ying3", // 𩖍
+ 0x29592: "guan1", // 𩖒
+ 0x29594: "niao3", // 𩖔
+ 0x29595: "xu1", // 𩖕
+ 0x29596: "tan2", // 𩖖
+ 0x29597: "jin4", // 𩖗
+ 0x2959b: "peng2", // 𩖛
+ 0x2959d: "liao2", // 𩖝
+ 0x295a0: "bei4", // 𩖠
+ 0x295a3: "xin2", // 𩖣
+ 0x295a4: "tun2", // 𩖤
+ 0x295a5: "chao1", // 𩖥
+ 0x295a6: "gan1", // 𩖦
+ 0x295a8: "hu1", // 𩖨
+ 0x295a9: "wang3", // 𩖩
+ 0x295ac: "fu2", // 𩖬
+ 0x295ad: "pei4", // 𩖭
+ 0x295af: "nao2", // 𩖯
+ 0x295b0: "xun2", // 𩖰
+ 0x295b1: "xue4", // 𩖱
+ 0x295b4: "liu3", // 𩖴
+ 0x295b5: "ling2", // 𩖵
+ 0x295b6: "xue4", // 𩖶
+ 0x295b7: "qu1", // 𩖷
+ 0x295b8: "hao2", // 𩖸
+ 0x295b9: "yi2", // 𩖹
+ 0x295ba: "han4", // 𩖺
+ 0x295bc: "fu2", // 𩖼
+ 0x295bd: "ba2", // 𩖽
+ 0x295be: "yi2", // 𩖾
+ 0x295c0: "bo2", // 𩗀
+ 0x295c4: "hong1", // 𩗄
+ 0x295c5: "li4", // 𩗅
+ 0x295c9: "sa4", // 𩗉
+ 0x295ca: "xi1", // 𩗊
+ 0x295ce: "shi4", // 𩗎
+ 0x295cf: "piao1", // 𩗏
+ 0x295d0: "hua4", // 𩗐
+ 0x295d1: "yi2", // 𩗑
+ 0x295d2: "bo2", // 𩗒
+ 0x295d3: "bo2", // 𩗓
+ 0x295d4: "nei3", // 𩗔
+ 0x295d5: "qiu2", // 𩗕
+ 0x295d8: "wei3", // 𩗘
+ 0x295d9: "che4", // 𩗙
+ 0x295da: "you2", // 𩗚
+ 0x295dc: "wei4", // 𩗜
+ 0x295dd: "hui3", // 𩗝
+ 0x295de: "sa4", // 𩗞
+ 0x295e2: "hong4", // 𩗢
+ 0x295e3: "sou1", // 𩗣
+ 0x295e4: "han4", // 𩗤
+ 0x295e5: "pao2", // 𩗥
+ 0x295e7: "fang2", // 𩗧
+ 0x295e9: "liu2", // 𩗩
+ 0x295ea: "zhou4", // 𩗪
+ 0x295eb: "pi2", // 𩗫
+ 0x295ed: "li4", // 𩗭
+ 0x295f0: "chui2", // 𩗰
+ 0x295f1: "xi1", // 𩗱
+ 0x295f2: "zheng1", // 𩗲
+ 0x295f4: "beng4", // 𩗴
+ 0x295f5: "zheng3", // 𩗵
+ 0x295f6: "sui4", // 𩗶
+ 0x295f7: "yan3", // 𩗷
+ 0x295fc: "qing1", // 𩗼
+ 0x295fd: "wu4", // 𩗽
+ 0x295fe: "liang3", // 𩗾
+ 0x29600: "zhao4", // 𩘀
+ 0x29601: "liang2", // 𩘁
+ 0x29605: "jie1", // 𩘅
+ 0x29607: "hong1", // 𩘇
+ 0x29608: "you1", // 𩘈
+ 0x2960a: "la4", // 𩘊
+ 0x2960b: "hou4", // 𩘋
+ 0x2960d: "yuan4", // 𩘍
+ 0x2960e: "hong2", // 𩘎
+ 0x2960f: "ye4", // 𩘏
+ 0x29611: "ying3", // 𩘑
+ 0x29612: "xuan3", // 𩘒
+ 0x29613: "you2", // 𩘓
+ 0x29618: "quan2", // 𩘘
+ 0x2961c: "tang2", // 𩘜
+ 0x2961d: "suo3", // 𩘝
+ 0x2961f: "li4", // 𩘟
+ 0x29620: "sou1", // 𩘠
+ 0x29621: "li4", // 𩘡
+ 0x29624: "yu4", // 𩘤
+ 0x29627: "yi4", // 𩘧
+ 0x2962d: "xiu1", // 𩘭
+ 0x2962e: "ao2", // 𩘮
+ 0x2962f: "tuan2", // 𩘯
+ 0x29630: "su4", // 𩘰
+ 0x29631: "shuai4", // 𩘱
+ 0x29633: "yu4", // 𩘳
+ 0x29635: "feng1", // 𩘵
+ 0x29639: "su4", // 𩘹
+ 0x2963a: "tui2", // 𩘺
+ 0x2963b: "yu4", // 𩘻
+ 0x2963c: "zheng1", // 𩘼
+ 0x2963d: "zheng1", // 𩘽
+ 0x2963f: "tao2", // 𩘿
+ 0x29644: "liu2", // 𩙄
+ 0x29646: "cheng2", // 𩙆
+ 0x29647: "sui2", // 𩙇
+ 0x29648: "sao1", // 𩙈
+ 0x2964f: "gu3", // 𩙏
+ 0x29650: "feng1", // 𩙐
+ 0x29651: "lie4", // 𩙑
+ 0x29652: "piao1", // 𩙒
+ 0x29656: "li4", // 𩙖
+ 0x29658: "long2", // 𩙘
+ 0x29659: "chu1", // 𩙙
+ 0x2965a: "xiao1", // 𩙚
+ 0x2965b: "hong1", // 𩙛
+ 0x2965c: "xie4", // 𩙜
+ 0x2965d: "she4", // 𩙝
+ 0x29660: "long2", // 𩙠
+ 0x29661: "hou1", // 𩙡
+ 0x29662: "xuan2", // 𩙢
+ 0x29663: "feng1", // 𩙣
+ 0x29665: "ba2", // 𩙥
+ 0x29666: "bo2", // 𩙦
+ 0x29667: "tao2", // 𩙧
+ 0x29668: "su4", // 𩙨
+ 0x29669: "zhao4", // 𩙩
+ 0x2966a: "biao1", // 𩙪
+ 0x2966b: "sou1", // 𩙫
+ 0x2966c: "tui2", // 𩙬
+ 0x2966d: "suo3", // 𩙭
+ 0x2966e: "xiao1", // 𩙮
+ 0x2966f: "heng2", // 𩙯
+ 0x29670: "sao1", // 𩙰
+ 0x29672: "fei1", // 𩙲
+ 0x29677: "niu4", // 𩙷
+ 0x29678: "mang3", // 𩙸
+ 0x2967d: "huan2", // 𩙽
+ 0x2967e: "zhi1", // 𩙾
+ 0x29682: "yi4", // 𩚂
+ 0x29684: "yu4", // 𩚄
+ 0x29687: "yi2", // 𩚇
+ 0x29688: "yue1", // 𩚈
+ 0x29689: "chi2", // 𩚉
+ 0x29695: "yin3", // 𩚕
+ 0x29696: "niu4", // 𩚖
+ 0x29697: "rong3", // 𩚗
+ 0x2969b: "na4", // 𩚛
+ 0x296a3: "tian2", // 𩚣
+ 0x296a5: "ba1", // 𩚥
+ 0x296aa: "er3", // 𩚪
+ 0x296ab: "zheng1", // 𩚫
+ 0x296ac: "e4", // 𩚬
+ 0x296ad: "pou2", // 𩚭
+ 0x296ae: "ji1", // 𩚮
+ 0x296af: "ni2", // 𩚯
+ 0x296b1: "jiong3", // 𩚱
+ 0x296b2: "jia2", // 𩚲
+ 0x296b5: "gan1", // 𩚵
+ 0x296b9: "ling2", // 𩚹
+ 0x296bb: "zui4", // 𩚻
+ 0x296be: "bei4", // 𩚾
+ 0x296c5: "shu1", // 𩛅
+ 0x296c6: "yi3", // 𩛆
+ 0x296c7: "pai1", // 𩛇
+ 0x296cb: "nao3", // 𩛋
+ 0x296cc: "shi4", // 𩛌
+ 0x296ce: "man3", // 𩛎
+ 0x296cf: "shi4", // 𩛏
+ 0x296d1: "ti2", // 𩛑
+ 0x296d8: "gong1", // 𩛘
+ 0x296dd: "lei4", // 𩛝
+ 0x296de: "bao3", // 𩛞
+ 0x296df: "yuan1", // 𩛟
+ 0x296e0: "zuo1", // 𩛠
+ 0x296e1: "lang2", // 𩛡
+ 0x296e2: "xiu1", // 𩛢
+ 0x296e5: "zai4", // 𩛥
+ 0x296e6: "cheng4", // 𩛦
+ 0x296e7: "jian1", // 𩛧
+ 0x296e8: "mao4", // 𩛨
+ 0x296e9: "jia2", // 𩛩
+ 0x296ea: "yu4", // 𩛪
+ 0x296ed: "yu4", // 𩛭
+ 0x296ee: "yi2", // 𩛮
+ 0x296f2: "mang1", // 𩛲
+ 0x296f3: "zai4", // 𩛳
+ 0x296f5: "zhui4", // 𩛵
+ 0x296f6: "ti2", // 𩛶
+ 0x296f9: "xi4", // 𩛹
+ 0x296fa: "ju2", // 𩛺
+ 0x296fb: "zan4", // 𩛻
+ 0x296fc: "lu4", // 𩛼
+ 0x296fd: "tao2", // 𩛽
+ 0x29700: "zhui4", // 𩜀
+ 0x29701: "ling2", // 𩜁
+ 0x29703: "ju4", // 𩜃
+ 0x29706: "ji1", // 𩜆
+ 0x29707: "juan3", // 𩜇
+ 0x2970a: "zi1", // 𩜊
+ 0x2970c: "yue1", // 𩜌
+ 0x2970d: "dong1", // 𩜍
+ 0x29712: "nang3", // 𩜒
+ 0x29716: "chong2", // 𩜖
+ 0x2971f: "ang4", // 𩜟
+ 0x29723: "geng1", // 𩜣
+ 0x29725: "bo1", // 𩜥
+ 0x29726: "ding4", // 𩜦
+ 0x29727: "wei3", // 𩜧
+ 0x2972c: "quan2", // 𩜬
+ 0x2972d: "ke1", // 𩜭
+ 0x29730: "pi4", // 𩜰
+ 0x29731: "kan3", // 𩜱
+ 0x29732: "fu2", // 𩜲
+ 0x29733: "yong3", // 𩜳
+ 0x29735: "tuan2", // 𩜵
+ 0x29736: "tou3", // 𩜶
+ 0x29737: "you4", // 𩜷
+ 0x29738: "yao1", // 𩜸
+ 0x2973a: "ye1", // 𩜺
+ 0x2973d: "yan4", // 𩜽
+ 0x29748: "xian2", // 𩝈
+ 0x2974a: "ti2", // 𩝊
+ 0x2974c: "sui4", // 𩝌
+ 0x29750: "ci2", // 𩝐
+ 0x29754: "xu3", // 𩝔
+ 0x29755: "wu4", // 𩝕
+ 0x29756: "can1", // 𩝖
+ 0x29757: "yu4", // 𩝗
+ 0x2975a: "chan3", // 𩝚
+ 0x2975b: "xia2", // 𩝛
+ 0x2975d: "kao4", // 𩝝
+ 0x2975e: "cang1", // 𩝞
+ 0x2975f: "cha1", // 𩝟
+ 0x29760: "qiu3", // 𩝠
+ 0x29763: "da1", // 𩝣
+ 0x29765: "su4", // 𩝥
+ 0x29768: "hua1", // 𩝨
+ 0x29777: "wu1", // 𩝷
+ 0x29778: "yuan1", // 𩝸
+ 0x2977d: "jiang4", // 𩝽
+ 0x2977e: "xiang3", // 𩝾
+ 0x2977f: "zhai1", // 𩝿
+ 0x29780: "san3", // 𩞀
+ 0x29781: "mo2", // 𩞁
+ 0x29783: "shang3", // 𩞃
+ 0x29784: "cao2", // 𩞄
+ 0x29785: "sui1", // 𩞅
+ 0x29786: "chuang2", // 𩞆
+ 0x29787: "mi2", // 𩞇
+ 0x29788: "zhu2", // 𩞈
+ 0x29789: "chong2", // 𩞉
+ 0x2978a: "ji4", // 𩞊
+ 0x2978b: "chong2", // 𩞋
+ 0x29799: "lian2", // 𩞙
+ 0x2979e: "hai4", // 𩞞
+ 0x297a4: "dun1", // 𩞤
+ 0x297a5: "xiang3", // 𩞥
+ 0x297a6: "cheng1", // 𩞦
+ 0x297a7: "shang3", // 𩞧
+ 0x297a8: "li4", // 𩞨
+ 0x297a9: "huang2", // 𩞩
+ 0x297ac: "deng4", // 𩞬
+ 0x297af: "liang2", // 𩞯
+ 0x297b6: "za1", // 𩞶
+ 0x297ba: "huo4", // 𩞺
+ 0x297bb: "lin2", // 𩞻
+ 0x297be: "du2", // 𩞾
+ 0x297bf: "han4", // 𩞿
+ 0x297c0: "yong1", // 𩟀
+ 0x297c1: "yuan4", // 𩟁
+ 0x297c2: "guo4", // 𩟂
+ 0x297c3: "ling2", // 𩟃
+ 0x297c5: "lian3", // 𩟅
+ 0x297c7: "ao4", // 𩟇
+ 0x297c8: "dang1", // 𩟈
+ 0x297c9: "yi4", // 𩟉
+ 0x297ca: "nong2", // 𩟊
+ 0x297cb: "shan4", // 𩟋
+ 0x297cd: "xin4", // 𩟍
+ 0x297d0: "da2", // 𩟐
+ 0x297d1: "yu4", // 𩟑
+ 0x297d2: "can1", // 𩟒
+ 0x297d3: "wo4", // 𩟓
+ 0x297d4: "cha2", // 𩟔
+ 0x297d5: "bo2", // 𩟕
+ 0x297d7: "jian3", // 𩟗
+ 0x297de: "meng2", // 𩟞
+ 0x297df: "wei3", // 𩟟
+ 0x297e0: "mo2", // 𩟠
+ 0x297e5: "shui4", // 𩟥
+ 0x297e6: "jie2", // 𩟦
+ 0x297e7: "shuo4", // 𩟧
+ 0x297e8: "huo4", // 𩟨
+ 0x297eb: "chuo4", // 𩟫
+ 0x297ed: "long2", // 𩟭
+ 0x297ee: "huai4", // 𩟮
+ 0x297f0: "tuo1", // 𩟰
+ 0x297f3: "yu2", // 𩟳
+ 0x297f6: "chan4", // 𩟶
+ 0x297f7: "yong1", // 𩟷
+ 0x297f8: "huo4", // 𩟸
+ 0x297fa: "lan3", // 𩟺
+ 0x297ff: "na4", // 𩟿
+ 0x29800: "ba1", // 𩠀
+ 0x29801: "gan1", // 𩠁
+ 0x29802: "yi3", // 𩠂
+ 0x29803: "jia2", // 𩠃
+ 0x29805: "da2", // 𩠅
+ 0x29806: "ding4", // 𩠆
+ 0x29807: "xun4", // 𩠇
+ 0x29808: "ren3", // 𩠈
+ 0x29809: "juan3", // 𩠉
+ 0x2980a: "tuan2", // 𩠊
+ 0x2980b: "xu3", // 𩠋
+ 0x2980c: "song4", // 𩠌
+ 0x2980e: "cao2", // 𩠎
+ 0x2980f: "cheng1", // 𩠏
+ 0x29811: "ding3", // 𩠑
+ 0x2981a: "hai2", // 𩠚
+ 0x2981f: "wu3", // 𩠟
+ 0x29826: "qi3", // 𩠦
+ 0x29828: "ji1", // 𩠨
+ 0x2982e: "kui2", // 𩠮
+ 0x2982f: "wei2", // 𩠯
+ 0x29836: "shou3", // 𩠶
+ 0x29837: "fu2", // 𩠷
+ 0x29839: "tuan2", // 𩠹
+ 0x2983b: "bie2", // 𩠻
+ 0x2983d: "tan2", // 𩠽
+ 0x2983e: "hang1", // 𩠾
+ 0x2983f: "pie1", // 𩠿
+ 0x29843: "yu2", // 𩡃
+ 0x29844: "tan2", // 𩡄
+ 0x2984c: "xiang1", // 𩡌
+ 0x2984e: "xiu1", // 𩡎
+ 0x29853: "weng3", // 𩡓
+ 0x29854: "hai4", // 𩡔
+ 0x29855: "peng2", // 𩡕
+ 0x2985d: "tan2", // 𩡝
+ 0x2985f: "bie2", // 𩡟
+ 0x29860: "xiang1", // 𩡠
+ 0x29863: "yi3", // 𩡣
+ 0x29866: "piao2", // 𩡦
+ 0x29867: "huan2", // 𩡧
+ 0x29868: "mu3", // 𩡨
+ 0x29869: "ba1", // 𩡩
+ 0x2986b: "fan4", // 𩡫
+ 0x2986f: "ding1", // 𩡯
+ 0x29877: "fen1", // 𩡷
+ 0x2987a: "jie4", // 𩡺
+ 0x2987e: "suo2", // 𩡾
+ 0x29884: "wan4", // 𩢄
+ 0x29885: "ge1", // 𩢅
+ 0x29888: "fen1", // 𩢈
+ 0x2988a: "tuo2", // 𩢊
+ 0x2988c: "wen2", // 𩢌
+ 0x2988d: "gua1", // 𩢍
+ 0x2988e: "duo1", // 𩢎
+ 0x29890: "zhe2", // 𩢐
+ 0x29891: "ci3", // 𩢑
+ 0x29892: "yao3", // 𩢒
+ 0x29894: "ban4", // 𩢔
+ 0x29895: "bu4", // 𩢕
+ 0x29896: "mo4", // 𩢖
+ 0x29898: "po3", // 𩢘
+ 0x2989b: "ge2", // 𩢛
+ 0x2989e: "liu2", // 𩢞
+ 0x298a1: "ran3", // 𩢡
+ 0x298a8: "gan1", // 𩢨
+ 0x298aa: "hu2", // 𩢪
+ 0x298ab: "mou2", // 𩢫
+ 0x298ae: "xiu1", // 𩢮
+ 0x298af: "huang1", // 𩢯
+ 0x298b0: "fu2", // 𩢰
+ 0x298b1: "hui2", // 𩢱
+ 0x298b3: "qu2", // 𩢳
+ 0x298b4: "jie2", // 𩢴
+ 0x298b5: "tuo1", // 𩢵
+ 0x298b6: "yu2", // 𩢶
+ 0x298b7: "mo4", // 𩢷
+ 0x298b8: "zhou1", // 𩢸
+ 0x298b9: "jiu4", // 𩢹
+ 0x298bb: "shu2", // 𩢻
+ 0x298bc: "kuang1", // 𩢼
+ 0x298bd: "qiong2", // 𩢽
+ 0x298be: "lie4", // 𩢾
+ 0x298bf: "fu4", // 𩢿
+ 0x298ca: "xu4", // 𩣊
+ 0x298d6: "lin4", // 𩣖
+ 0x298d8: "nie4", // 𩣘
+ 0x298da: "pi1", // 𩣚
+ 0x298dc: "fu4", // 𩣜
+ 0x298dd: "bu4", // 𩣝
+ 0x298de: "yi4", // 𩣞
+ 0x298e1: "bo2", // 𩣡
+ 0x298e3: "e2", // 𩣣
+ 0x298e9: "zhe2", // 𩣩
+ 0x298eb: "li4", // 𩣫
+ 0x298ee: "tu4", // 𩣮
+ 0x298ef: "da2", // 𩣯
+ 0x298f1: "lu4", // 𩣱
+ 0x298f2: "yan1", // 𩣲
+ 0x298f3: "dong1", // 𩣳
+ 0x298f4: "qie4", // 𩣴
+ 0x298f5: "wan3", // 𩣵
+ 0x298f6: "ming3", // 𩣶
+ 0x298f7: "zui1", // 𩣷
+ 0x298f8: "fu4", // 𩣸
+ 0x298f9: "qu1", // 𩣹
+ 0x298fa: "ben1", // 𩣺
+ 0x298fb: "ao3", // 𩣻
+ 0x298fc: "qiang1", // 𩣼
+ 0x29901: "qun1", // 𩤁
+ 0x29908: "que4", // 𩤈
+ 0x29909: "hua2", // 𩤉
+ 0x2990a: "xian4", // 𩤊
+ 0x2990b: "kun4", // 𩤋
+ 0x2990f: "cui4", // 𩤏
+ 0x29912: "yi2", // 𩤒
+ 0x29916: "chi1", // 𩤖
+ 0x29917: "zong4", // 𩤗
+ 0x29918: "nao3", // 𩤘
+ 0x29919: "cheng2", // 𩤙
+ 0x2991a: "duan1", // 𩤚
+ 0x2991b: "yong2", // 𩤛
+ 0x2991c: "zhe3", // 𩤜
+ 0x2991e: "tan4", // 𩤞
+ 0x2991f: "yang2", // 𩤟
+ 0x29920: "xie2", // 𩤠
+ 0x29921: "xuan1", // 𩤡
+ 0x29923: "duan4", // 𩤣
+ 0x29924: "shua3", // 𩤤
+ 0x29925: "xian2", // 𩤥
+ 0x29926: "xian2", // 𩤦
+ 0x29929: "e2", // 𩤩
+ 0x29932: "la1", // 𩤲
+ 0x29938: "wei4", // 𩤸
+ 0x29939: "you1", // 𩤹
+ 0x2993a: "yu2", // 𩤺
+ 0x2993d: "ti1", // 𩤽
+ 0x2993f: "jin1", // 𩤿
+ 0x29941: "tang2", // 𩥁
+ 0x29942: "qi2", // 𩥂
+ 0x29944: "dian1", // 𩥄
+ 0x29945: "tao1", // 𩥅
+ 0x29946: "lv4", // 𩥆
+ 0x29947: "zhan4", // 𩥇
+ 0x29948: "wen1", // 𩥈
+ 0x29949: "ji4", // 𩥉
+ 0x2994a: "ao1", // 𩥊
+ 0x2994b: "ou4", // 𩥋
+ 0x2994c: "qia4", // 𩥌
+ 0x29950: "shi1", // 𩥐
+ 0x29951: "ta3", // 𩥑
+ 0x29954: "mo4", // 𩥔
+ 0x29958: "you2", // 𩥘
+ 0x29960: "zha2", // 𩥠
+ 0x29963: "yao2", // 𩥣
+ 0x2996b: "chong1", // 𩥫
+ 0x2996c: "li2", // 𩥬
+ 0x2996d: "yu2", // 𩥭
+ 0x2996e: "chan3", // 𩥮
+ 0x2996f: "yi1", // 𩥯
+ 0x29972: "chi4", // 𩥲
+ 0x29974: "li2", // 𩥴
+ 0x2997d: "tu2", // 𩥽
+ 0x2997f: "zu2", // 𩥿
+ 0x29982: "xian2", // 𩦂
+ 0x29987: "xi4", // 𩦇
+ 0x29989: "bie2", // 𩦉
+ 0x2998a: "han2", // 𩦊
+ 0x2998b: "qi2", // 𩦋
+ 0x2998c: "sang1", // 𩦌
+ 0x2998e: "fei1", // 𩦎
+ 0x29990: "shan4", // 𩦐
+ 0x29998: "huan1", // 𩦘
+ 0x299a0: "bang4", // 𩦠
+ 0x299a1: "yu2", // 𩦡
+ 0x299a2: "yu2", // 𩦢
+ 0x299a4: "ji2", // 𩦤
+ 0x299b1: "kuai3", // 𩦱
+ 0x299b2: "zong1", // 𩦲
+ 0x299b9: "xian4", // 𩦹
+ 0x299ba: "meng2", // 𩦺
+ 0x299c3: "li4", // 𩧃
+ 0x299c4: "zhi4", // 𩧄
+ 0x299c5: "fan2", // 𩧅
+ 0x299c6: "lie4", // 𩧆
+ 0x299c7: "cai4", // 𩧇
+ 0x299c8: "du2", // 𩧈
+ 0x299c9: "guang1", // 𩧉
+ 0x299ca: "xiong4", // 𩧊
+ 0x299cb: "li2", // 𩧋
+ 0x299cc: "qi4", // 𩧌
+ 0x299cf: "jue2", // 𩧏
+ 0x299d0: "tuo1", // 𩧐
+ 0x299d2: "ju4", // 𩧒
+ 0x299d3: "xiao1", // 𩧓
+ 0x299d8: "qu2", // 𩧘
+ 0x299dc: "zhuan3", // 𩧜
+ 0x299e1: "jue2", // 𩧡
+ 0x299e6: "jie4", // 𩧦
+ 0x299e8: "zhou4", // 𩧨
+ 0x299e9: "xian4", // 𩧩
+ 0x299ea: "long2", // 𩧪
+ 0x299eb: "yang3", // 𩧫
+ 0x299ec: "ran3", // 𩧬
+ 0x299ed: "yi4", // 𩧭
+ 0x299ee: "lie4", // 𩧮
+ 0x299ef: "bo1", // 𩧯
+ 0x299f0: "hun2", // 𩧰
+ 0x299f1: "ji4", // 𩧱
+ 0x299f2: "dong4", // 𩧲
+ 0x299f3: "zhou1", // 𩧳
+ 0x299f4: "quan1", // 𩧴
+ 0x299f5: "jie2", // 𩧵
+ 0x299fa: "ju2", // 𩧺
+ 0x299fc: "ben1", // 𩧼
+ 0x299ff: "bi1", // 𩧿
+ 0x29a00: "ge2", // 𩨀
+ 0x29a01: "chun3", // 𩨁
+ 0x29a03: "qian2", // 𩨃
+ 0x29a04: "sou1", // 𩨄
+ 0x29a05: "wei4", // 𩨅
+ 0x29a06: "cheng2", // 𩨆
+ 0x29a07: "lou2", // 𩨇
+ 0x29a08: "yu2", // 𩨈
+ 0x29a09: "la1", // 𩨉
+ 0x29a0a: "qian2", // 𩨊
+ 0x29a0b: "dian1", // 𩨋
+ 0x29a0c: "ta3", // 𩨌
+ 0x29a0d: "zhan4", // 𩨍
+ 0x29a0f: "fan2", // 𩨏
+ 0x29a10: "lie4", // 𩨐
+ 0x29a11: "ting1", // 𩨑
+ 0x29a12: "ji1", // 𩨒
+ 0x29a13: "qian1", // 𩨓
+ 0x29a14: "hu2", // 𩨔
+ 0x29a17: "yu2", // 𩨗
+ 0x29a18: "qi4", // 𩨘
+ 0x29a19: "yu2", // 𩨙
+ 0x29a1a: "wa1", // 𩨚
+ 0x29a1c: "ba4", // 𩨜
+ 0x29a1d: "qi2", // 𩨝
+ 0x29a1e: "sa3", // 𩨞
+ 0x29a1f: "qiao1", // 𩨟
+ 0x29a20: "ya4", // 𩨠
+ 0x29a21: "xian3", // 𩨡
+ 0x29a28: "ci1", // 𩨨
+ 0x29a29: "fan4", // 𩨩
+ 0x29a2b: "kun3", // 𩨫
+ 0x29a2c: "gun3", // 𩨬
+ 0x29a2d: "que1", // 𩨭
+ 0x29a2e: "e4", // 𩨮
+ 0x29a2f: "qiong2", // 𩨯
+ 0x29a32: "ma4", // 𩨲
+ 0x29a33: "ku1", // 𩨳
+ 0x29a34: "yao3", // 𩨴
+ 0x29a37: "que1", // 𩨷
+ 0x29a38: "chu1", // 𩨸
+ 0x29a39: "jia3", // 𩨹
+ 0x29a3b: "zhu3", // 𩨻
+ 0x29a3d: "dui1", // 𩨽
+ 0x29a3e: "wa2", // 𩨾
+ 0x29a40: "nao3", // 𩩀
+ 0x29a44: "yan2", // 𩩄
+ 0x29a45: "tong2", // 𩩅
+ 0x29a4b: "xing2", // 𩩋
+ 0x29a4c: "gun3", // 𩩌
+ 0x29a4d: "ping1", // 𩩍
+ 0x29a51: "yu3", // 𩩑
+ 0x29a52: "he4", // 𩩒
+ 0x29a54: "zhuo2", // 𩩔
+ 0x29a57: "she1", // 𩩗
+ 0x29a58: "yu3", // 𩩘
+ 0x29a5b: "ji4", // 𩩛
+ 0x29a5d: "qiang1", // 𩩝
+ 0x29a5e: "shui4", // 𩩞
+ 0x29a5f: "chuo4", // 𩩟
+ 0x29a60: "zu2", // 𩩠
+ 0x29a61: "leng2", // 𩩡
+ 0x29a62: "ni2", // 𩩢
+ 0x29a64: "wa1", // 𩩤
+ 0x29a65: "zha2", // 𩩥
+ 0x29a67: "dan4", // 𩩧
+ 0x29a6e: "du4", // 𩩮
+ 0x29a6f: "bian4", // 𩩯
+ 0x29a70: "jie1", // 𩩰
+ 0x29a71: "qia4", // 𩩱
+ 0x29a72: "he2", // 𩩲
+ 0x29a73: "chong4", // 𩩳
+ 0x29a74: "yan2", // 𩩴
+ 0x29a76: "yan4", // 𩩶
+ 0x29a7a: "song2", // 𩩺
+ 0x29a7b: "teng2", // 𩩻
+ 0x29a7c: "yao3", // 𩩼
+ 0x29a7e: "kao1", // 𩩾
+ 0x29a80: "zhui1", // 𩪀
+ 0x29a81: "gui4", // 𩪁
+ 0x29a82: "ai2", // 𩪂
+ 0x29a83: "hai4", // 𩪃
+ 0x29a88: "suo3", // 𩪈
+ 0x29a89: "xu4", // 𩪉
+ 0x29a8a: "biao1", // 𩪊
+ 0x29a8c: "feng4", // 𩪌
+ 0x29a8d: "qu1", // 𩪍
+ 0x29a8e: "mang3", // 𩪎
+ 0x29a90: "guo2", // 𩪐
+ 0x29a96: "bi4", // 𩪖
+ 0x29a97: "jue2", // 𩪗
+ 0x29a98: "chuang2", // 𩪘
+ 0x29a9b: "pu2", // 𩪛
+ 0x29a9f: "yi4", // 𩪟
+ 0x29aa2: "qian1", // 𩪢
+ 0x29aa3: "yi4", // 𩪣
+ 0x29aa4: "e4", // 𩪤
+ 0x29aa5: "ling2", // 𩪥
+ 0x29aa7: "bi4", // 𩪧
+ 0x29aad: "huo4", // 𩪭
+ 0x29aae: "mo3", // 𩪮
+ 0x29ab1: "xun1", // 𩪱
+ 0x29ab4: "yan4", // 𩪴
+ 0x29ab8: "li4", // 𩪸
+ 0x29aba: "tan2", // 𩪺
+ 0x29abe: "luan2", // 𩪾
+ 0x29ac0: "kai4", // 𩫀
+ 0x29ac1: "mao4", // 𩫁
+ 0x29ac2: "xiao1", // 𩫂
+ 0x29ac7: "ai3", // 𩫇
+ 0x29aca: "ta3", // 𩫊
+ 0x29acd: "mei4", // 𩫍
+ 0x29acf: "guo1", // 𩫏
+ 0x29ad3: "gao3", // 𩫓
+ 0x29ad4: "nao2", // 𩫔
+ 0x29ad5: "hao2", // 𩫕
+ 0x29ae0: "que1", // 𩫠
+ 0x29ae5: "cao2", // 𩫥
+ 0x29ae6: "sao4", // 𩫦
+ 0x29aeb: "pi2", // 𩫫
+ 0x29af2: "xie1", // 𩫲
+ 0x29af3: "xiao1", // 𩫳
+ 0x29af4: "ju2", // 𩫴
+ 0x29af9: "cheng2", // 𩫹
+ 0x29afa: "nao3", // 𩫺
+ 0x29b00: "nei4", // 𩬀
+ 0x29b0d: "mu3", // 𩬍
+ 0x29b0f: "shao1", // 𩬏
+ 0x29b11: "dian1", // 𩬑
+ 0x29b14: "ling2", // 𩬔
+ 0x29b16: "zhen3", // 𩬖
+ 0x29b17: "yao3", // 𩬗
+ 0x29b19: "fu4", // 𩬙
+ 0x29b1a: "qian2", // 𩬚
+ 0x29b1b: "qiong2", // 𩬛
+ 0x29b1c: "ju2", // 𩬜
+ 0x29b1d: "bing4", // 𩬝
+ 0x29b1e: "mao2", // 𩬞
+ 0x29b1f: "zha4", // 𩬟
+ 0x29b20: "tai1", // 𩬠
+ 0x29b24: "chong1", // 𩬤
+ 0x29b2b: "zhai3", // 𩬫
+ 0x29b2d: "shi1", // 𩬭
+ 0x29b2e: "yong4", // 𩬮
+ 0x29b30: "qiong2", // 𩬰
+ 0x29b31: "dao4", // 𩬱
+ 0x29b32: "ti4", // 𩬲
+ 0x29b33: "zhui3", // 𩬳
+ 0x29b35: "yin4", // 𩬵
+ 0x29b37: "nao3", // 𩬷
+ 0x29b38: "bo1", // 𩬸
+ 0x29b39: "kuang1", // 𩬹
+ 0x29b3a: "zhi3", // 𩬺
+ 0x29b3b: "duo3", // 𩬻
+ 0x29b3c: "cong1", // 𩬼
+ 0x29b3d: "bao3", // 𩬽
+ 0x29b47: "li2", // 𩭇
+ 0x29b4a: "ju2", // 𩭊
+ 0x29b4b: "wen2", // 𩭋
+ 0x29b4c: "lie4", // 𩭌
+ 0x29b4f: "wo3", // 𩭏
+ 0x29b50: "shi3", // 𩭐
+ 0x29b51: "niao3", // 𩭑
+ 0x29b52: "mang2", // 𩭒
+ 0x29b53: "jiu1", // 𩭓
+ 0x29b58: "xiu1", // 𩭘
+ 0x29b5d: "wo1", // 𩭝
+ 0x29b5f: "dao4", // 𩭟
+ 0x29b61: "xi1", // 𩭡
+ 0x29b62: "an4", // 𩭢
+ 0x29b63: "da2", // 𩭣
+ 0x29b64: "zong3", // 𩭤
+ 0x29b65: "han4", // 𩭥
+ 0x29b66: "chui2", // 𩭦
+ 0x29b67: "bi1", // 𩭧
+ 0x29b69: "dong4", // 𩭩
+ 0x29b6b: "zhang3", // 𩭫
+ 0x29b6f: "ya1", // 𩭯
+ 0x29b72: "di2", // 𩭲
+ 0x29b73: "huo1", // 𩭳
+ 0x29b77: "min2", // 𩭷
+ 0x29b7a: "fu4", // 𩭺
+ 0x29b7c: "bao3", // 𩭼
+ 0x29b7d: "ke4", // 𩭽
+ 0x29b7e: "mao2", // 𩭾
+ 0x29b7f: "re4", // 𩭿
+ 0x29b80: "zong1", // 𩮀
+ 0x29b81: "qia4", // 𩮁
+ 0x29b82: "xia1", // 𩮂
+ 0x29b83: "sou1", // 𩮃
+ 0x29b84: "xiu1", // 𩮄
+ 0x29b85: "na4", // 𩮅
+ 0x29b89: "man2", // 𩮉
+ 0x29b8e: "zha1", // 𩮎
+ 0x29b8f: "chan2", // 𩮏
+ 0x29b90: "she4", // 𩮐
+ 0x29b91: "wo3", // 𩮑
+ 0x29b96: "ai2", // 𩮖
+ 0x29b97: "bang4", // 𩮗
+ 0x29b98: "hao1", // 𩮘
+ 0x29b9a: "sao1", // 𩮚
+ 0x29b9b: "suo3", // 𩮛
+ 0x29b9c: "ti4", // 𩮜
+ 0x29b9d: "ya4", // 𩮝
+ 0x29b9f: "bing4", // 𩮟
+ 0x29ba0: "rong2", // 𩮠
+ 0x29bab: "sha1", // 𩮫
+ 0x29bac: "weng3", // 𩮬
+ 0x29baf: "ao2", // 𩮯
+ 0x29bb1: "zhuang1", // 𩮱
+ 0x29bb3: "piao4", // 𩮳
+ 0x29bb4: "sui1", // 𩮴
+ 0x29bb5: "yi1", // 𩮵
+ 0x29bb6: "sou1", // 𩮶
+ 0x29bb7: "dou1", // 𩮷
+ 0x29bb8: "sou1", // 𩮸
+ 0x29bb9: "luo2", // 𩮹
+ 0x29bc3: "fei4", // 𩯃
+ 0x29bc4: "zun4", // 𩯄
+ 0x29bc6: "nao4", // 𩯆
+ 0x29bc7: "deng1", // 𩯇
+ 0x29bc8: "zhi2", // 𩯈
+ 0x29bc9: "cuo1", // 𩯉
+ 0x29bca: "liao2", // 𩯊
+ 0x29bcb: "ji3", // 𩯋
+ 0x29bcc: "bo1", // 𩯌
+ 0x29bcd: "cong2", // 𩯍
+ 0x29bce: "cheng2", // 𩯎
+ 0x29bcf: "bu3", // 𩯏
+ 0x29bd1: "san1", // 𩯑
+ 0x29bd2: "zan4", // 𩯒
+ 0x29bd8: "jiao4", // 𩯘
+ 0x29bdb: "yao4", // 𩯛
+ 0x29bdc: "lu3", // 𩯜
+ 0x29bde: "can4", // 𩯞
+ 0x29be8: "ni3", // 𩯨
+ 0x29bf0: "jie2", // 𩯰
+ 0x29bf1: "pu2", // 𩯱
+ 0x29bf2: "zhuang4", // 𩯲
+ 0x29bf3: "zan4", // 𩯳
+ 0x29bfa: "li4", // 𩯺
+ 0x29bfd: "la4", // 𩯽
+ 0x29c00: "chong1", // 𩰀
+ 0x29c03: "zhan4", // 𩰃
+ 0x29c0d: "bian4", // 𩰍
+ 0x29c0e: "weng1", // 𩰎
+ 0x29c13: "hong4", // 𩰓
+ 0x29c17: "pin1", // 𩰗
+ 0x29c19: "se4", // 𩰙
+ 0x29c1e: "ni3", // 𩰞
+ 0x29c1f: "fen1", // 𩰟
+ 0x29c20: "xu3", // 𩰠
+ 0x29c22: "shi3", // 𩰢
+ 0x29c24: "ju4", // 𩰤
+ 0x29c28: "jue2", // 𩰨
+ 0x29c2a: "yu4", // 𩰪
+ 0x29c2c: "guo1", // 𩰬
+ 0x29c2d: "guo1", // 𩰭
+ 0x29c2f: "hu2", // 𩰯
+ 0x29c32: "li4", // 𩰲
+ 0x29c33: "xie2", // 𩰳
+ 0x29c34: "er2", // 𩰴
+ 0x29c35: "yuan2", // 𩰵
+ 0x29c36: "hai2", // 𩰶
+ 0x29c39: "jing4", // 𩰹
+ 0x29c3b: "ke4", // 𩰻
+ 0x29c3d: "zong1", // 𩰽
+ 0x29c3e: "fei4", // 𩰾
+ 0x29c40: "peng1", // 𩱀
+ 0x29c41: "geng1", // 𩱁
+ 0x29c43: "jian1", // 𩱃
+ 0x29c44: "ni2", // 𩱄
+ 0x29c46: "xian2", // 𩱆
+ 0x29c47: "li4", // 𩱇
+ 0x29c48: "chao3", // 𩱈
+ 0x29c4a: "er2", // 𩱊
+ 0x29c4b: "geng1", // 𩱋
+ 0x29c4c: "yu4", // 𩱌
+ 0x29c4d: "hu2", // 𩱍
+ 0x29c4e: "fei4", // 𩱎
+ 0x29c4f: "ao2", // 𩱏
+ 0x29c53: "er3", // 𩱓
+ 0x29c58: "ke4", // 𩱘
+ 0x29c59: "ku4", // 𩱙
+ 0x29c5a: "bo2", // 𩱚
+ 0x29c5d: "ye4", // 𩱝
+ 0x29c5e: "jiao4", // 𩱞
+ 0x29c66: "chao3", // 𩱦
+ 0x29c67: "geng1", // 𩱧
+ 0x29c68: "ru4", // 𩱨
+ 0x29c6a: "yue4", // 𩱪
+ 0x29c6c: "lin2", // 𩱬
+ 0x29c71: "yu4", // 𩱱
+ 0x29c72: "yue4", // 𩱲
+ 0x29c73: "zhai1", // 𩱳
+ 0x29c74: "xiao1", // 𩱴
+ 0x29c77: "mie4", // 𩱷
+ 0x29c7b: "gui3", // 𩱻
+ 0x29c7c: "jiu1", // 𩱼
+ 0x29c7e: "tuo4", // 𩱾
+ 0x29c81: "xi2", // 𩲁
+ 0x29c82: "wei3", // 𩲂
+ 0x29c83: "zhuo2", // 𩲃
+ 0x29c84: "wei4", // 𩲄
+ 0x29c85: "kui2", // 𩲅
+ 0x29c88: "mei4", // 𩲈
+ 0x29c8a: "hao4", // 𩲊
+ 0x29c8b: "hang1", // 𩲋
+ 0x29c8c: "fang1", // 𩲌
+ 0x29c8d: "niu2", // 𩲍
+ 0x29c8e: "you4", // 𩲎
+ 0x29c8f: "hua4", // 𩲏
+ 0x29c92: "lang4", // 𩲒
+ 0x29ca0: "zhu2", // 𩲠
+ 0x29ca1: "gui3", // 𩲡
+ 0x29ca2: "bi4", // 𩲢
+ 0x29ca3: "jia3", // 𩲣
+ 0x29ca4: "tiao2", // 𩲤
+ 0x29ca6: "lv4", // 𩲦
+ 0x29ca7: "kong3", // 𩲧
+ 0x29ca8: "zui3", // 𩲨
+ 0x29ca9: "ling2", // 𩲩
+ 0x29caa: "qi2", // 𩲪
+ 0x29cac: "zhu2", // 𩲬
+ 0x29cb1: "gu3", // 𩲱
+ 0x29cb2: "zu4", // 𩲲
+ 0x29cb4: "yang1", // 𩲴
+ 0x29cb5: "su1", // 𩲵
+ 0x29cb7: "kui2", // 𩲷
+ 0x29cb9: "chang1", // 𩲹
+ 0x29cbb: "yao2", // 𩲻
+ 0x29cbe: "yu4", // 𩲾
+ 0x29cc5: "shu1", // 𩳅
+ 0x29cc6: "lai4", // 𩳆
+ 0x29cc7: "yi4", // 𩳇
+ 0x29cc8: "dou1", // 𩳈
+ 0x29ccc: "wu2", // 𩳌
+ 0x29ccd: "ying3", // 𩳍
+ 0x29cce: "fu2", // 𩳎
+ 0x29ccf: "zhuan4", // 𩳏
+ 0x29cd0: "fu3", // 𩳐
+ 0x29cd2: "su4", // 𩳒
+ 0x29cd3: "li3", // 𩳓
+ 0x29cd4: "yao4", // 𩳔
+ 0x29cd5: "tui4", // 𩳕
+ 0x29cdd: "gui4", // 𩳝
+ 0x29ce1: "lv4", // 𩳡
+ 0x29ce2: "yan4", // 𩳢
+ 0x29ce3: "qi2", // 𩳣
+ 0x29ce4: "lang4", // 𩳤
+ 0x29ce5: "zhu2", // 𩳥
+ 0x29ce7: "gui3", // 𩳧
+ 0x29ce8: "hu1", // 𩳨
+ 0x29cef: "jing1", // 𩳯
+ 0x29cf2: "chi3", // 𩳲
+ 0x29cf5: "ju2", // 𩳵
+ 0x29cf6: "zha2", // 𩳶
+ 0x29cf8: "miao2", // 𩳸
+ 0x29d00: "zhu1", // 𩴀
+ 0x29d01: "gan1", // 𩴁
+ 0x29d02: "xiong1", // 𩴂
+ 0x29d03: "ji2", // 𩴃
+ 0x29d07: "shai4", // 𩴇
+ 0x29d08: "mei4", // 𩴈
+ 0x29d09: "yun4", // 𩴉
+ 0x29d0d: "shou4", // 𩴍
+ 0x29d10: "lv4", // 𩴐
+ 0x29d11: "you4", // 𩴑
+ 0x29d12: "jiang4", // 𩴒
+ 0x29d13: "nuo2", // 𩴓
+ 0x29d18: "ju4", // 𩴘
+ 0x29d19: "you4", // 𩴙
+ 0x29d1c: "yi4", // 𩴜
+ 0x29d1d: "teng2", // 𩴝
+ 0x29d1e: "wei2", // 𩴞
+ 0x29d1f: "che3", // 𩴟
+ 0x29d20: "lin4", // 𩴠
+ 0x29d21: "gu4", // 𩴡
+ 0x29d23: "li4", // 𩴣
+ 0x29d24: "liao4", // 𩴤
+ 0x29d27: "jiao1", // 𩴧
+ 0x29d28: "yang2", // 𩴨
+ 0x29d29: "biao1", // 𩴩
+ 0x29d2a: "qi2", // 𩴪
+ 0x29d2e: "yi4", // 𩴮
+ 0x29d31: "bin1", // 𩴱
+ 0x29d32: "meng2", // 𩴲
+ 0x29d33: "cha4", // 𩴳
+ 0x29d35: "gan1", // 𩴵
+ 0x29d39: "qu2", // 𩴹
+ 0x29d3a: "di2", // 𩴺
+ 0x29d3b: "lei2", // 𩴻
+ 0x29d40: "ling2", // 𩵀
+ 0x29d44: "huan1", // 𩵄
+ 0x29d45: "qu2", // 𩵅
+ 0x29d47: "luo2", // 𩵇
+ 0x29d49: "kui2", // 𩵉
+ 0x29d4d: "qiu2", // 𩵍
+ 0x29d4e: "yu3", // 𩵎
+ 0x29d4f: "hua4", // 𩵏
+ 0x29d53: "lei4", // 𩵓
+ 0x29d55: "ren4", // 𩵕
+ 0x29d56: "xiao3", // 𩵖
+ 0x29d57: "si4", // 𩵗
+ 0x29d5a: "du4", // 𩵚
+ 0x29d5b: "bie1", // 𩵛
+ 0x29d60: "niu2", // 𩵠
+ 0x29d62: "he4", // 𩵢
+ 0x29d63: "pei1", // 𩵣
+ 0x29d65: "fei4", // 𩵥
+ 0x29d66: "mu4", // 𩵦
+ 0x29d69: "fu1", // 𩵩
+ 0x29d6c: "hu2", // 𩵬
+ 0x29d6d: "wang2", // 𩵭
+ 0x29d6e: "sha1", // 𩵮
+ 0x29d70: "jiao1", // 𩵰
+ 0x29d71: "wu3", // 𩵱
+ 0x29d79: "fu4", // 𩵹
+ 0x29d81: "bing3", // 𩶁
+ 0x29d82: "zhu4", // 𩶂
+ 0x29d84: "zhu2", // 𩶄
+ 0x29d85: "chi1", // 𩶅
+ 0x29d87: "shen3", // 𩶇
+ 0x29d88: "hu1", // 𩶈
+ 0x29d89: "bu1", // 𩶉
+ 0x29d8e: "ran3", // 𩶎
+ 0x29d96: "mu4", // 𩶖
+ 0x29d98: "li4", // 𩶘
+ 0x29d9b: "jia1", // 𩶛
+ 0x29d9e: "ma4", // 𩶞
+ 0x29da1: "meng2", // 𩶡
+ 0x29da2: "mou2", // 𩶢
+ 0x29da3: "zhou1", // 𩶣
+ 0x29da4: "xian3", // 𩶤
+ 0x29da5: "hui3", // 𩶥
+ 0x29da6: "guai4", // 𩶦
+ 0x29da7: "jiu4", // 𩶧
+ 0x29da9: "mu4", // 𩶩
+ 0x29dab: "ru4", // 𩶫
+ 0x29dad: "wu2", // 𩶭
+ 0x29daf: "ru2", // 𩶯
+ 0x29db1: "zha4", // 𩶱
+ 0x29dc1: "nuo3", // 𩷁
+ 0x29dc2: "xie2", // 𩷂
+ 0x29dc4: "jiang4", // 𩷄
+ 0x29dcb: "li3", // 𩷋
+ 0x29dcc: "shu1", // 𩷌
+ 0x29dcd: "yi4", // 𩷍
+ 0x29dce: "di2", // 𩷎
+ 0x29dcf: "qing2", // 𩷏
+ 0x29dd0: "ju2", // 𩷐
+ 0x29dd3: "zhi4", // 𩷓
+ 0x29dd5: "lang2", // 𩷕
+ 0x29dd6: "bu4", // 𩷖
+ 0x29dd7: "kuang2", // 𩷗
+ 0x29dd8: "yi4", // 𩷘
+ 0x29dda: "bo2", // 𩷚
+ 0x29de7: "chi4", // 𩷧
+ 0x29ded: "jiang4", // 𩷭
+ 0x29def: "wo4", // 𩷯
+ 0x29df0: "xun4", // 𩷰
+ 0x29df5: "tun1", // 𩷵
+ 0x29df6: "mang2", // 𩷶
+ 0x29df8: "fang2", // 𩷸
+ 0x29df9: "zhuo2", // 𩷹
+ 0x29dfb: "qia4", // 𩷻
+ 0x29dfd: "ta3", // 𩷽
+ 0x29dfe: "qi2", // 𩷾
+ 0x29e00: "peng4", // 𩸀
+ 0x29e01: "bie1", // 𩸁
+ 0x29e02: "fen4", // 𩸂
+ 0x29e03: "tu4", // 𩸃
+ 0x29e04: "hua4", // 𩸄
+ 0x29e07: "e4", // 𩸇
+ 0x29e0b: "e4", // 𩸋
+ 0x29e0e: "ding4", // 𩸎
+ 0x29e10: "ru2", // 𩸐
+ 0x29e16: "e4", // 𩸖
+ 0x29e1e: "yan4", // 𩸞
+ 0x29e1f: "si4", // 𩸟
+ 0x29e25: "ying2", // 𩸥
+ 0x29e26: "ni2", // 𩸦
+ 0x29e27: "ni2", // 𩸧
+ 0x29e28: "yi2", // 𩸨
+ 0x29e39: "mi2", // 𩸹
+ 0x29e3e: "ye2", // 𩸾
+ 0x29e3f: "po1", // 𩸿
+ 0x29e40: "cou4", // 𩹀
+ 0x29e42: "wei4", // 𩹂
+ 0x29e44: "hai4", // 𩹄
+ 0x29e45: "ying1", // 𩹅
+ 0x29e47: "ting2", // 𩹇
+ 0x29e48: "zhi4", // 𩹈
+ 0x29e49: "fei1", // 𩹉
+ 0x29e4a: "you2", // 𩹊
+ 0x29e4d: "kui2", // 𩹍
+ 0x29e4e: "an4", // 𩹎
+ 0x29e4f: "ba4", // 𩹏
+ 0x29e51: "han4", // 𩹑
+ 0x29e5e: "nan2", // 𩹞
+ 0x29e5f: "nai4", // 𩹟
+ 0x29e62: "jing1", // 𩹢
+ 0x29e65: "wei1", // 𩹥
+ 0x29e71: "chu4", // 𩹱
+ 0x29e73: "suo3", // 𩹳
+ 0x29e74: "tao1", // 𩹴
+ 0x29e75: "qi2", // 𩹵
+ 0x29e76: "tang2", // 𩹶
+ 0x29e77: "wei3", // 𩹷
+ 0x29e78: "gan3", // 𩹸
+ 0x29e7a: "ge2", // 𩹺
+ 0x29e7c: "han4", // 𩹼
+ 0x29e7e: "na4", // 𩹾
+ 0x29e7f: "ge2", // 𩹿
+ 0x29e84: "zheng1", // 𩺄
+ 0x29e97: "ta3", // 𩺗
+ 0x29e9b: "si1", // 𩺛
+ 0x29e9d: "ni4", // 𩺝
+ 0x29e9e: "sang3", // 𩺞
+ 0x29eab: "xie2", // 𩺫
+ 0x29eaf: "zu2", // 𩺯
+ 0x29eb0: "yu2", // 𩺰
+ 0x29eb1: "ni4", // 𩺱
+ 0x29eb2: "qi1", // 𩺲
+ 0x29eb5: "shen1", // 𩺵
+ 0x29ebc: "bu1", // 𩺼
+ 0x29ecb: "kun1", // 𩻋
+ 0x29ecc: "li2", // 𩻌
+ 0x29ece: "gua1", // 𩻎
+ 0x29ed6: "yan3", // 𩻖
+ 0x29ed7: "bu4", // 𩻗
+ 0x29ed8: "jian4", // 𩻘
+ 0x29eda: "wu2", // 𩻚
+ 0x29edb: "cen2", // 𩻛
+ 0x29edc: "lin2", // 𩻜
+ 0x29edd: "zhuan4", // 𩻝
+ 0x29edf: "hui1", // 𩻟
+ 0x29ee1: "tong2", // 𩻡
+ 0x29ee2: "zha3", // 𩻢
+ 0x29ee4: "hei1", // 𩻤
+ 0x29ee7: "guo3", // 𩻧
+ 0x29ef1: "jing3", // 𩻱
+ 0x29ef5: "die2", // 𩻵
+ 0x29ef7: "ying2", // 𩻷
+ 0x29efc: "zhi4", // 𩻼
+ 0x29f02: "wei3", // 𩼂
+ 0x29f04: "ji4", // 𩼄
+ 0x29f05: "rong3", // 𩼅
+ 0x29f08: "ao4", // 𩼈
+ 0x29f09: "dang1", // 𩼉
+ 0x29f0a: "luo2", // 𩼊
+ 0x29f0b: "ye4", // 𩼋
+ 0x29f0c: "wei1", // 𩼌
+ 0x29f12: "qiang2", // 𩼒
+ 0x29f19: "ge2", // 𩼙
+ 0x29f1a: "ji4", // 𩼚
+ 0x29f26: "zou4", // 𩼦
+ 0x29f28: "yi2", // 𩼨
+ 0x29f2b: "zha3", // 𩼫
+ 0x29f2d: "lie4", // 𩼭
+ 0x29f34: "ye4", // 𩼴
+ 0x29f3c: "zhan1", // 𩼼
+ 0x29f40: "chou2", // 𩽀
+ 0x29f41: "biao1", // 𩽁
+ 0x29f46: "xu4", // 𩽆
+ 0x29f47: "you1", // 𩽇
+ 0x29f4d: "xie4", // 𩽍
+ 0x29f4e: "wei2", // 𩽎
+ 0x29f4f: "li4", // 𩽏
+ 0x29f5b: "bo2", // 𩽛
+ 0x29f5c: "jian3", // 𩽜
+ 0x29f5d: "chan2", // 𩽝
+ 0x29f5e: "kun1", // 𩽞
+ 0x29f61: "qing2", // 𩽡
+ 0x29f67: "shuang1", // 𩽧
+ 0x29f68: "xi1", // 𩽨
+ 0x29f69: "qu2", // 𩽩
+ 0x29f70: "luo2", // 𩽰
+ 0x29f73: "dang3", // 𩽳
+ 0x29f74: "nian2", // 𩽴
+ 0x29f75: "li3", // 𩽵
+ 0x29f77: "ba4", // 𩽷
+ 0x29f79: "e4", // 𩽹
+ 0x29f7a: "fu1", // 𩽺
+ 0x29f7b: "fu4", // 𩽻
+ 0x29f7c: "hun3", // 𩽼
+ 0x29f7d: "zha4", // 𩽽
+ 0x29f7e: "an1", // 𩽾
+ 0x29f81: "qiu2", // 𩾁
+ 0x29f82: "chou2", // 𩾂
+ 0x29f83: "mian3", // 𩾃
+ 0x29f84: "xun4", // 𩾄
+ 0x29f85: "tu4", // 𩾅
+ 0x29f86: "ni2", // 𩾆
+ 0x29f87: "hu5", // 𩾇
+ 0x29f88: "shu1", // 𩾈
+ 0x29f8a: "xu1", // 𩾊
+ 0x29f8b: "zhong4", // 𩾋
+ 0x29f8c: "kang1", // 𩾌
+ 0x29f92: "xiao1", // 𩾒
+ 0x29f93: "xiao1", // 𩾓
+ 0x29f94: "ci4", // 𩾔
+ 0x29f95: "chi4", // 𩾕
+ 0x29f97: "diao1", // 𩾗
+ 0x29f98: "yi4", // 𩾘
+ 0x29f9a: "ding1", // 𩾚
+ 0x29f9d: "han4", // 𩾝
+ 0x29f9e: "wan2", // 𩾞
+ 0x29fa0: "yi3", // 𩾠
+ 0x29fa1: "bao4", // 𩾡
+ 0x29fa2: "yi4", // 𩾢
+ 0x29fa7: "xun4", // 𩾧
+ 0x29fac: "xiang2", // 𩾬
+ 0x29fb3: "bi2", // 𩾳
+ 0x29fb6: "jie2", // 𩾶
+ 0x29fb7: "ge1", // 𩾷
+ 0x29fb8: "ze4", // 𩾸
+ 0x29fba: "zhen4", // 𩾺
+ 0x29fbb: "hu2", // 𩾻
+ 0x29fbc: "xi1", // 𩾼
+ 0x29fbd: "xin1", // 𩾽
+ 0x29fbe: "xiao1", // 𩾾
+ 0x29fbf: "fu4", // 𩾿
+ 0x29fc0: "zhong4", // 𩿀
+ 0x29fc2: "mao4", // 𩿂
+ 0x29fc3: "xin1", // 𩿃
+ 0x29fc4: "qiang1", // 𩿄
+ 0x29fc8: "fen2", // 𩿈
+ 0x29fc9: "ban1", // 𩿉
+ 0x29fca: "huan1", // 𩿊
+ 0x29fd1: "jiao1", // 𩿑
+ 0x29fd3: "bao4", // 𩿓
+ 0x29fd4: "ya1", // 𩿔
+ 0x29fd5: "yao2", // 𩿕
+ 0x29fdb: "xi4", // 𩿛
+ 0x29fdd: "ju4", // 𩿝
+ 0x29fdf: "qu4", // 𩿟
+ 0x29fe0: "yue4", // 𩿠
+ 0x29fe1: "tai2", // 𩿡
+ 0x29fe2: "tou3", // 𩿢
+ 0x29fe3: "mo4", // 𩿣
+ 0x29fe4: "zha2", // 𩿤
+ 0x29fe5: "qu2", // 𩿥
+ 0x29fe7: "fu1", // 𩿧
+ 0x29fe9: "qu2", // 𩿩
+ 0x29fea: "chi4", // 𩿪
+ 0x29fec: "you2", // 𩿬
+ 0x29ff7: "ti2", // 𩿷
+ 0x29ffa: "wa1", // 𩿺
+ 0x29ffd: "tuo2", // 𩿽
+ 0x29fff: "chu2", // 𩿿
+ 0x2a001: "ge1", // 𪀁
+ 0x2a008: "yuan1", // 𪀈
+ 0x2a009: "ge1", // 𪀉
+ 0x2a00a: "qu2", // 𪀊
+ 0x2a00f: "ju4", // 𪀏
+ 0x2a012: "die2", // 𪀒
+ 0x2a013: "yi2", // 𪀓
+ 0x2a014: "shi1", // 𪀔
+ 0x2a015: "yi4", // 𪀕
+ 0x2a017: "gui3", // 𪀗
+ 0x2a018: "jiang4", // 𪀘
+ 0x2a01a: "song1", // 𪀚
+ 0x2a01b: "qiong2", // 𪀛
+ 0x2a01d: "e4", // 𪀝
+ 0x2a01e: "huang1", // 𪀞
+ 0x2a01f: "hui2", // 𪀟
+ 0x2a020: "xun2", // 𪀠
+ 0x2a023: "ju2", // 𪀣
+ 0x2a025: "zhai2", // 𪀥
+ 0x2a026: "chi4", // 𪀦
+ 0x2a027: "lao3", // 𪀧
+ 0x2a029: "qi2", // 𪀩
+ 0x2a02a: "xiu1", // 𪀪
+ 0x2a02c: "hui1", // 𪀬
+ 0x2a02d: "tong2", // 𪀭
+ 0x2a03a: "fu4", // 𪀺
+ 0x2a03d: "xun2", // 𪀽
+ 0x2a03e: "jie2", // 𪀾
+ 0x2a03f: "mi3", // 𪀿
+ 0x2a040: "yu4", // 𪁀
+ 0x2a048: "zhuang4", // 𪁈
+ 0x2a049: "jiao1", // 𪁉
+ 0x2a04a: "zhi4", // 𪁊
+ 0x2a04b: "cheng2", // 𪁋
+ 0x2a04d: "jie2", // 𪁍
+ 0x2a04e: "xiao1", // 𪁎
+ 0x2a04f: "chen2", // 𪁏
+ 0x2a050: "li2", // 𪁐
+ 0x2a051: "yue4", // 𪁑
+ 0x2a053: "zhi4", // 𪁓
+ 0x2a054: "lao2", // 𪁔
+ 0x2a055: "wo4", // 𪁕
+ 0x2a056: "qu2", // 𪁖
+ 0x2a058: "wang1", // 𪁘
+ 0x2a05a: "yi1", // 𪁚
+ 0x2a05b: "yi4", // 𪁛
+ 0x2a05c: "lang2", // 𪁜
+ 0x2a05e: "tou2", // 𪁞
+ 0x2a05f: "an1", // 𪁟
+ 0x2a060: "jue2", // 𪁠
+ 0x2a061: "yan4", // 𪁡
+ 0x2a065: "ju4", // 𪁥
+ 0x2a067: "zhen4", // 𪁧
+ 0x2a069: "zhi4", // 𪁩
+ 0x2a06a: "mang3", // 𪁪
+ 0x2a06e: "xiu4", // 𪁮
+ 0x2a071: "chuang2", // 𪁱
+ 0x2a072: "chu1", // 𪁲
+ 0x2a078: "qiang1", // 𪁸
+ 0x2a079: "fei1", // 𪁹
+ 0x2a07a: "chang2", // 𪁺
+ 0x2a07c: "mian2", // 𪁼
+ 0x2a07d: "su4", // 𪁽
+ 0x2a07e: "ao3", // 𪁾
+ 0x2a080: "fu3", // 𪂀
+ 0x2a084: "wei4", // 𪂄
+ 0x2a085: "zhi1", // 𪂅
+ 0x2a086: "min2", // 𪂆
+ 0x2a087: "chang1", // 𪂇
+ 0x2a088: "yan2", // 𪂈
+ 0x2a089: "yu4", // 𪂉
+ 0x2a08b: "fu4", // 𪂋
+ 0x2a08c: "ta4", // 𪂌
+ 0x2a08d: "ji3", // 𪂍
+ 0x2a08f: "fei4", // 𪂏
+ 0x2a092: "hu2", // 𪂒
+ 0x2a093: "ju1", // 𪂓
+ 0x2a095: "yu3", // 𪂕
+ 0x2a09b: "qi2", // 𪂛
+ 0x2a09c: "mei2", // 𪂜
+ 0x2a09f: "bie1", // 𪂟
+ 0x2a0a0: "guo3", // 𪂠
+ 0x2a0a4: "ming4", // 𪂤
+ 0x2a0a6: "wan3", // 𪂦
+ 0x2a0a7: "wan3", // 𪂧
+ 0x2a0b4: "jing1", // 𪂴
+ 0x2a0b5: "yu4", // 𪂵
+ 0x2a0b6: "xian2", // 𪂶
+ 0x2a0b9: "chun1", // 𪂹
+ 0x2a0ba: "ji2", // 𪂺
+ 0x2a0bc: "xiang1", // 𪂼
+ 0x2a0bd: "pen2", // 𪂽
+ 0x2a0be: "fu4", // 𪂾
+ 0x2a0c2: "liu2", // 𪃂
+ 0x2a0c4: "sai1", // 𪃄
+ 0x2a0c5: "xue1", // 𪃅
+ 0x2a0c6: "zou4", // 𪃆
+ 0x2a0c8: "jie2", // 𪃈
+ 0x2a0cb: "zhan1", // 𪃋
+ 0x2a0cd: "yu2", // 𪃍
+ 0x2a0ce: "yu2", // 𪃎
+ 0x2a0cf: "mei2", // 𪃏
+ 0x2a0d0: "miao3", // 𪃐
+ 0x2a0d1: "mao4", // 𪃑
+ 0x2a0d2: "duo2", // 𪃒
+ 0x2a0d3: "fu4", // 𪃓
+ 0x2a0db: "jian4", // 𪃛
+ 0x2a0e6: "miao2", // 𪃦
+ 0x2a0e8: "ao1", // 𪃨
+ 0x2a0ed: "ke4", // 𪃭
+ 0x2a0f6: "hou2", // 𪃶
+ 0x2a0fa: "gou4", // 𪃺
+ 0x2a0fc: "xi1", // 𪃼
+ 0x2a0fe: "rong2", // 𪃾
+ 0x2a0ff: "ge1", // 𪃿
+ 0x2a100: "pan2", // 𪄀
+ 0x2a101: "yuan2", // 𪄁
+ 0x2a102: "xia4", // 𪄂
+ 0x2a105: "sha1", // 𪄅
+ 0x2a106: "pi1", // 𪄆
+ 0x2a108: "qing2", // 𪄈
+ 0x2a109: "yong1", // 𪄉
+ 0x2a10a: "qu2", // 𪄊
+ 0x2a10c: "gong4", // 𪄌
+ 0x2a10e: "ge2", // 𪄎
+ 0x2a10f: "xian1", // 𪄏
+ 0x2a111: "su4", // 𪄑
+ 0x2a115: "ban1", // 𪄕
+ 0x2a116: "qi2", // 𪄖
+ 0x2a117: "hou4", // 𪄗
+ 0x2a11b: "xi1", // 𪄛
+ 0x2a11d: "wu1", // 𪄝
+ 0x2a12d: "qi1", // 𪄭
+ 0x2a12e: "hu4", // 𪄮
+ 0x2a12f: "gui1", // 𪄯
+ 0x2a131: "di2", // 𪄱
+ 0x2a132: "shang1", // 𪄲
+ 0x2a133: "mai4", // 𪄳
+ 0x2a134: "min3", // 𪄴
+ 0x2a135: "ji4", // 𪄵
+ 0x2a136: "xi2", // 𪄶
+ 0x2a137: "xian1", // 𪄷
+ 0x2a138: "ji2", // 𪄸
+ 0x2a139: "chang2", // 𪄹
+ 0x2a13a: "kou4", // 𪄺
+ 0x2a13b: "chong1", // 𪄻
+ 0x2a142: "zhang1", // 𪅂
+ 0x2a143: "piao3", // 𪅃
+ 0x2a144: "su4", // 𪅄
+ 0x2a145: "lve4", // 𪅅
+ 0x2a146: "li2", // 𪅆
+ 0x2a147: "meng4", // 𪅇
+ 0x2a148: "chong1", // 𪅈
+ 0x2a149: "tian1", // 𪅉
+ 0x2a14b: "ling2", // 𪅋
+ 0x2a14d: "chi4", // 𪅍
+ 0x2a156: "chong1", // 𪅖
+ 0x2a159: "chi4", // 𪅙
+ 0x2a15d: "niao3", // 𪅝
+ 0x2a15f: "yong2", // 𪅟
+ 0x2a16e: "mi4", // 𪅮
+ 0x2a170: "shu1", // 𪅰
+ 0x2a172: "xi4", // 𪅲
+ 0x2a174: "e4", // 𪅴
+ 0x2a175: "zi1", // 𪅵
+ 0x2a178: "jie2", // 𪅸
+ 0x2a179: "ji1", // 𪅹
+ 0x2a17a: "hou1", // 𪅺
+ 0x2a17b: "sheng4", // 𪅻
+ 0x2a17c: "li4", // 𪅼
+ 0x2a17e: "qi1", // 𪅾
+ 0x2a180: "zhou1", // 𪆀
+ 0x2a181: "si1", // 𪆁
+ 0x2a182: "qu2", // 𪆂
+ 0x2a18b: "xie2", // 𪆋
+ 0x2a197: "si1", // 𪆗
+ 0x2a19b: "xu1", // 𪆛
+ 0x2a1a0: "fu4", // 𪆠
+ 0x2a1af: "nong2", // 𪆯
+ 0x2a1b0: "ya4", // 𪆰
+ 0x2a1b1: "liu2", // 𪆱
+ 0x2a1b2: "jia3", // 𪆲
+ 0x2a1b3: "gui1", // 𪆳
+ 0x2a1b4: "kui2", // 𪆴
+ 0x2a1b5: "chi4", // 𪆵
+ 0x2a1b6: "can4", // 𪆶
+ 0x2a1b7: "chu2", // 𪆷
+ 0x2a1b9: "guo1", // 𪆹
+ 0x2a1bb: "dan3", // 𪆻
+ 0x2a1bf: "jian4", // 𪆿
+ 0x2a1c1: "dang1", // 𪇁
+ 0x2a1c2: "hou4", // 𪇂
+ 0x2a1c4: "kou4", // 𪇄
+ 0x2a1c6: "chu4", // 𪇆
+ 0x2a1c7: "qian1", // 𪇇
+ 0x2a1c8: "ai4", // 𪇈
+ 0x2a1ca: "pi4", // 𪇊
+ 0x2a1d1: "xun4", // 𪇑
+ 0x2a1d2: "jing1", // 𪇒
+ 0x2a1d3: "meng4", // 𪇓
+ 0x2a1d5: "bin1", // 𪇕
+ 0x2a1d6: "lan2", // 𪇖
+ 0x2a1d7: "gu3", // 𪇗
+ 0x2a1d8: "chou2", // 𪇘
+ 0x2a1db: "yong1", // 𪇛
+ 0x2a1dc: "gua2", // 𪇜
+ 0x2a1dd: "yu2", // 𪇝
+ 0x2a1de: "zhou4", // 𪇞
+ 0x2a1ed: "cai4", // 𪇭
+ 0x2a1ef: "liu2", // 𪇯
+ 0x2a1f0: "bu3", // 𪇰
+ 0x2a1f1: "luo4", // 𪇱
+ 0x2a1f2: "jie2", // 𪇲
+ 0x2a1f3: "zhen1", // 𪇳
+ 0x2a1f4: "mie4", // 𪇴
+ 0x2a1f5: "guang3", // 𪇵
+ 0x2a1f7: "jia2", // 𪇷
+ 0x2a1f9: "la4", // 𪇹
+ 0x2a200: "shou4", // 𪈀
+ 0x2a203: "guo1", // 𪈃
+ 0x2a206: "meng4", // 𪈆
+ 0x2a207: "qian2", // 𪈇
+ 0x2a208: "lai4", // 𪈈
+ 0x2a20a: "he2", // 𪈊
+ 0x2a20b: "tuan2", // 𪈋
+ 0x2a211: "hui1", // 𪈑
+ 0x2a218: "hong1", // 𪈘
+ 0x2a21c: "lv3", // 𪈜
+ 0x2a21f: "jia2", // 𪈟
+ 0x2a225: "gui1", // 𪈥
+ 0x2a228: "yi1", // 𪈨
+ 0x2a229: "huan1", // 𪈩
+ 0x2a230: "luo2", // 𪈰
+ 0x2a234: "jue2", // 𪈴
+ 0x2a238: "guan4", // 𪈸
+ 0x2a23b: "quan2", // 𪈻
+ 0x2a23c: "niao3", // 𪈼
+ 0x2a23f: "man2", // 𪈿
+ 0x2a242: "yun4", // 𪉂
+ 0x2a243: "wen2", // 𪉃
+ 0x2a244: "chi4", // 𪉄
+ 0x2a245: "chi4", // 𪉅
+ 0x2a246: "zhi1", // 𪉆
+ 0x2a248: "ci2", // 𪉈
+ 0x2a249: "zhuang4", // 𪉉
+ 0x2a24a: "hua2", // 𪉊
+ 0x2a24b: "jie2", // 𪉋
+ 0x2a24c: "qu2", // 𪉌
+ 0x2a24d: "tu1", // 𪉍
+ 0x2a24e: "min2", // 𪉎
+ 0x2a24f: "mei2", // 𪉏
+ 0x2a250: "yu2", // 𪉐
+ 0x2a251: "ao2", // 𪉑
+ 0x2a252: "ban1", // 𪉒
+ 0x2a254: "pi1", // 𪉔
+ 0x2a255: "zhen1", // 𪉕
+ 0x2a256: "lu3", // 𪉖
+ 0x2a257: "chi4", // 𪉗
+ 0x2a258: "tou2", // 𪉘
+ 0x2a25a: "jie1", // 𪉚
+ 0x2a25c: "zhan1", // 𪉜
+ 0x2a262: "jin1", // 𪉢
+ 0x2a263: "lu3", // 𪉣
+ 0x2a266: "jian4", // 𪉦
+ 0x2a267: "tan4", // 𪉧
+ 0x2a268: "chang1", // 𪉨
+ 0x2a26a: "ci4", // 𪉪
+ 0x2a26d: "wai1", // 𪉭
+ 0x2a26e: "cou4", // 𪉮
+ 0x2a26f: "kan4", // 𪉯
+ 0x2a271: "bian4", // 𪉱
+ 0x2a278: "wen1", // 𪉸
+ 0x2a27b: "qian1", // 𪉻
+ 0x2a27f: "gan4", // 𪉿
+ 0x2a282: "hui4", // 𪊂
+ 0x2a284: "gan3", // 𪊄
+ 0x2a286: "ji4", // 𪊆
+ 0x2a287: "gan4", // 𪊇
+ 0x2a289: "huai2", // 𪊉
+ 0x2a28d: "si4", // 𪊍
+ 0x2a290: "fu1", // 𪊐
+ 0x2a295: "pi2", // 𪊕
+ 0x2a297: "ca1", // 𪊗
+ 0x2a29c: "ben4", // 𪊜
+ 0x2a2a2: "shi3", // 𪊢
+ 0x2a2a5: "huan2", // 𪊥
+ 0x2a2a7: "gui1", // 𪊧
+ 0x2a2aa: "ou3", // 𪊪
+ 0x2a2b3: "pao2", // 𪊳
+ 0x2a2b5: "ying3", // 𪊵
+ 0x2a2b6: "ting3", // 𪊶
+ 0x2a2b7: "xiao4", // 𪊷
+ 0x2a2b9: "zhu4", // 𪊹
+ 0x2a2bb: "yu2", // 𪊻
+ 0x2a2c1: "jian4", // 𪋁
+ 0x2a2c4: "qu3", // 𪋄
+ 0x2a2c5: "wan3", // 𪋅
+ 0x2a2c6: "kun1", // 𪋆
+ 0x2a2c7: "zhui1", // 𪋇
+ 0x2a2c9: "yu4", // 𪋉
+ 0x2a2ca: "guo3", // 𪋊
+ 0x2a2cb: "ping2", // 𪋋
+ 0x2a2cc: "zui3", // 𪋌
+ 0x2a2cd: "zu2", // 𪋍
+ 0x2a2cf: "zhu1", // 𪋏
+ 0x2a2d0: "nuan4", // 𪋐
+ 0x2a2d1: "zhu1", // 𪋑
+ 0x2a2d6: "piao1", // 𪋖
+ 0x2a2d7: "mi2", // 𪋗
+ 0x2a2dc: "bi4", // 𪋜
+ 0x2a2dd: "su4", // 𪋝
+ 0x2a2e1: "pu2", // 𪋡
+ 0x2a2e2: "mi2", // 𪋢
+ 0x2a2eb: "ye4", // 𪋫
+ 0x2a2ec: "yu3", // 𪋬
+ 0x2a2ee: "yu4", // 𪋮
+ 0x2a2f0: "zhu3", // 𪋰
+ 0x2a2f3: "ling2", // 𪋳
+ 0x2a2fa: "nou4", // 𪋺
+ 0x2a2fe: "ling2", // 𪋾
+ 0x2a300: "liao3", // 𪌀
+ 0x2a302: "tuo1", // 𪌂
+ 0x2a304: "bi3", // 𪌄
+ 0x2a305: "na4", // 𪌅
+ 0x2a306: "qu2", // 𪌆
+ 0x2a308: "pi2", // 𪌈
+ 0x2a309: "dou3", // 𪌉
+ 0x2a30a: "nie4", // 𪌊
+ 0x2a30b: "tun2", // 𪌋
+ 0x2a30d: "ji1", // 𪌍
+ 0x2a30f: "ling2", // 𪌏
+ 0x2a313: "ku4", // 𪌓
+ 0x2a314: "su4", // 𪌔
+ 0x2a318: "tou3", // 𪌘
+ 0x2a31e: "nai2", // 𪌞
+ 0x2a31f: "ze2", // 𪌟
+ 0x2a322: "tong3", // 𪌢
+ 0x2a323: "ge2", // 𪌣
+ 0x2a324: "dui1", // 𪌤
+ 0x2a327: "jie2", // 𪌧
+ 0x2a329: "tian2", // 𪌩
+ 0x2a32a: "tiao4", // 𪌪
+ 0x2a32b: "chi2", // 𪌫
+ 0x2a32c: "qu1", // 𪌬
+ 0x2a32e: "sha1", // 𪌮
+ 0x2a330: "bo2", // 𪌰
+ 0x2a331: "li2", // 𪌱
+ 0x2a333: "luo4", // 𪌳
+ 0x2a335: "liao2", // 𪌵
+ 0x2a336: "shu4", // 𪌶
+ 0x2a337: "deng3", // 𪌷
+ 0x2a339: "chi1", // 𪌹
+ 0x2a33a: "mie4", // 𪌺
+ 0x2a33c: "tao2", // 𪌼
+ 0x2a33d: "hun2", // 𪌽
+ 0x2a33f: "nie2", // 𪌿
+ 0x2a341: "jun4", // 𪍁
+ 0x2a342: "hu4", // 𪍂
+ 0x2a344: "lu4", // 𪍄
+ 0x2a345: "ye4", // 𪍅
+ 0x2a347: "mo4", // 𪍇
+ 0x2a348: "chao4", // 𪍈
+ 0x2a34c: "suo4", // 𪍌
+ 0x2a34e: "ke1", // 𪍎
+ 0x2a34f: "fu4", // 𪍏
+ 0x2a351: "chao3", // 𪍑
+ 0x2a354: "suo3", // 𪍔
+ 0x2a357: "qiu1", // 𪍗
+ 0x2a35b: "su4", // 𪍛
+ 0x2a35d: "yun4", // 𪍝
+ 0x2a35f: "suo3", // 𪍟
+ 0x2a360: "ku1", // 𪍠
+ 0x2a361: "bo2", // 𪍡
+ 0x2a363: "lou3", // 𪍣
+ 0x2a364: "mo4", // 𪍤
+ 0x2a366: "lian3", // 𪍦
+ 0x2a367: "xuan4", // 𪍧
+ 0x2a368: "suo3", // 𪍨
+ 0x2a369: "man2", // 𪍩
+ 0x2a36a: "bi4", // 𪍪
+ 0x2a372: "ti4", // 𪍲
+ 0x2a374: "lian2", // 𪍴
+ 0x2a375: "tan2", // 𪍵
+ 0x2a376: "shan4", // 𪍶
+ 0x2a378: "qu2", // 𪍸
+ 0x2a379: "du2", // 𪍹
+ 0x2a37a: "huan2", // 𪍺
+ 0x2a37b: "sao4", // 𪍻
+ 0x2a37f: "kuang4", // 𪍿
+ 0x2a383: "nie4", // 𪎃
+ 0x2a385: "nie4", // 𪎅
+ 0x2a386: "luo2", // 𪎆
+ 0x2a387: "zuo2", // 𪎇
+ 0x2a388: "yi4", // 𪎈
+ 0x2a389: "xian4", // 𪎉
+ 0x2a38a: "chao3", // 𪎊
+ 0x2a38b: "tie4", // 𪎋
+ 0x2a392: "shuo4", // 𪎒
+ 0x2a394: "mi3", // 𪎔
+ 0x2a397: "mi2", // 𪎗
+ 0x2a39b: "wan3", // 𪎛
+ 0x2a39d: "ben4", // 𪎝
+ 0x2a39e: "qiang1", // 𪎞
+ 0x2a3a0: "mo3", // 𪎠
+ 0x2a3a3: "liu2", // 𪎣
+ 0x2a3a4: "wo4", // 𪎤
+ 0x2a3a6: "mei3", // 𪎦
+ 0x2a3a8: "tou2", // 𪎨
+ 0x2a3ab: "mu3", // 𪎫
+ 0x2a3ad: "mei2", // 𪎭
+ 0x2a3b2: "zuo4", // 𪎲
+ 0x2a3b4: "tun2", // 𪎴
+ 0x2a3b5: "kang4", // 𪎵
+ 0x2a3b6: "tun2", // 𪎶
+ 0x2a3ba: "che4", // 𪎺
+ 0x2a3bb: "zheng4", // 𪎻
+ 0x2a3bd: "chong1", // 𪎽
+ 0x2a3be: "tian1", // 𪎾
+ 0x2a3c0: "zhi4", // 𪏀
+ 0x2a3c1: "chan2", // 𪏁
+ 0x2a3c2: "chan2", // 𪏂
+ 0x2a3c5: "qing1", // 𪏅
+ 0x2a3c6: "tun1", // 𪏆
+ 0x2a3c7: "hui3", // 𪏇
+ 0x2a3c8: "que4", // 𪏈
+ 0x2a3c9: "zhan1", // 𪏉
+ 0x2a3ca: "jian1", // 𪏊
+ 0x2a3cb: "chan2", // 𪏋
+ 0x2a3cd: "huang2", // 𪏍
+ 0x2a3cf: "hui1", // 𪏏
+ 0x2a3d0: "chi2", // 𪏐
+ 0x2a3d2: "huang2", // 𪏒
+ 0x2a3d3: "heng2", // 𪏓
+ 0x2a3d4: "yun3", // 𪏔
+ 0x2a3d6: "tuan1", // 𪏖
+ 0x2a3d7: "bian1", // 𪏗
+ 0x2a3d9: "huang2", // 𪏙
+ 0x2a3da: "yun3", // 𪏚
+ 0x2a3df: "mo4", // 𪏟
+ 0x2a3e0: "gong1", // 𪏠
+ 0x2a3e2: "gong1", // 𪏢
+ 0x2a3e4: "gui4", // 𪏤
+ 0x2a3e6: "chan2", // 𪏦
+ 0x2a3e8: "que4", // 𪏨
+ 0x2a3e9: "rui4", // 𪏩
+ 0x2a3ea: "kuang4", // 𪏪
+ 0x2a3eb: "piao4", // 𪏫
+ 0x2a3ee: "ru3", // 𪏮
+ 0x2a3f2: "niu3", // 𪏲
+ 0x2a3f3: "hu4", // 𪏳
+ 0x2a3f4: "jin3", // 𪏴
+ 0x2a3f5: "ni4", // 𪏵
+ 0x2a3f6: "bao4", // 𪏶
+ 0x2a3f8: "ni3", // 𪏸
+ 0x2a3fa: "bi4", // 𪏺
+ 0x2a3fb: "hu2", // 𪏻
+ 0x2a3fc: "li2", // 𪏼
+ 0x2a3ff: "zhu1", // 𪏿
+ 0x2a400: "na3", // 𪐀
+ 0x2a402: "quan3", // 𪐂
+ 0x2a403: "feng3", // 𪐃
+ 0x2a404: "bi3", // 𪐄
+ 0x2a405: "li2", // 𪐅
+ 0x2a406: "bie2", // 𪐆
+ 0x2a407: "nian2", // 𪐇
+ 0x2a408: "dong3", // 𪐈
+ 0x2a40b: "lian2", // 𪐋
+ 0x2a40c: "ni4", // 𪐌
+ 0x2a40d: "lian2", // 𪐍
+ 0x2a40e: "ma2", // 𪐎
+ 0x2a40f: "zhe2", // 𪐏
+ 0x2a413: "jia1", // 𪐓
+ 0x2a414: "yi2", // 𪐔
+ 0x2a416: "long3", // 𪐖
+ 0x2a418: "yi4", // 𪐘
+ 0x2a41d: "dai4", // 𪐝
+ 0x2a41e: "du4", // 𪐞
+ 0x2a423: "yi3", // 𪐣
+ 0x2a425: "tai4", // 𪐥
+ 0x2a426: "hang1", // 𪐦
+ 0x2a427: "shu4", // 𪐧
+ 0x2a42c: "wan2", // 𪐬
+ 0x2a42e: "su4", // 𪐮
+ 0x2a42f: "yao3", // 𪐯
+ 0x2a430: "er4", // 𪐰
+ 0x2a432: "zhen4", // 𪐲
+ 0x2a43a: "dou4", // 𪐺
+ 0x2a43b: "jian1", // 𪐻
+ 0x2a43f: "pang1", // 𪐿
+ 0x2a440: "hui1", // 𪑀
+ 0x2a442: "cha4", // 𪑂
+ 0x2a443: "shan1", // 𪑃
+ 0x2a444: "lu2", // 𪑄
+ 0x2a446: "yu4", // 𪑆
+ 0x2a448: "yan4", // 𪑈
+ 0x2a449: "wan3", // 𪑉
+ 0x2a44a: "qiao4", // 𪑊
+ 0x2a44b: "luo1", // 𪑋
+ 0x2a44c: "yu4", // 𪑌
+ 0x2a44f: "tu2", // 𪑏
+ 0x2a450: "wei4", // 𪑐
+ 0x2a452: "tun4", // 𪑒
+ 0x2a455: "hun3", // 𪑕
+ 0x2a456: "ben1", // 𪑖
+ 0x2a457: "qie4", // 𪑗
+ 0x2a459: "jin1", // 𪑙
+ 0x2a45a: "lai2", // 𪑚
+ 0x2a45c: "zhi3", // 𪑜
+ 0x2a45d: "yu2", // 𪑝
+ 0x2a45f: "ci4", // 𪑟
+ 0x2a466: "ye4", // 𪑦
+ 0x2a467: "die2", // 𪑧
+ 0x2a468: "cha4", // 𪑨
+ 0x2a469: "dian4", // 𪑩
+ 0x2a46a: "man2", // 𪑪
+ 0x2a46c: "deng4", // 𪑬
+ 0x2a46d: "wei1", // 𪑭
+ 0x2a46e: "nian3", // 𪑮
+ 0x2a46f: "lei4", // 𪑯
+ 0x2a470: "bing1", // 𪑰
+ 0x2a471: "wu1", // 𪑱
+ 0x2a473: "zhen3", // 𪑳
+ 0x2a476: "rou2", // 𪑶
+ 0x2a477: "wai4", // 𪑷
+ 0x2a478: "mi4", // 𪑸
+ 0x2a479: "jie4", // 𪑹
+ 0x2a47b: "hou2", // 𪑻
+ 0x2a47d: "zhai4", // 𪑽
+ 0x2a47e: "ru3", // 𪑾
+ 0x2a47f: "zi1", // 𪑿
+ 0x2a480: "pan2", // 𪒀
+ 0x2a482: "mo4", // 𪒂
+ 0x2a484: "mi4", // 𪒄
+ 0x2a486: "qi1", // 𪒆
+ 0x2a487: "mo4", // 𪒇
+ 0x2a48a: "zhi1", // 𪒊
+ 0x2a48b: "ban1", // 𪒋
+ 0x2a48d: "mie4", // 𪒍
+ 0x2a48f: "lu4", // 𪒏
+ 0x2a491: "qi1", // 𪒑
+ 0x2a492: "chong1", // 𪒒
+ 0x2a494: "li2", // 𪒔
+ 0x2a495: "yi4", // 𪒕
+ 0x2a498: "deng4", // 𪒘
+ 0x2a499: "cuo1", // 𪒙
+ 0x2a49b: "dui4", // 𪒛
+ 0x2a49c: "ma4", // 𪒜
+ 0x2a49d: "yan3", // 𪒝
+ 0x2a49f: "zeng4", // 𪒟
+ 0x2a4a0: "yan3", // 𪒠
+ 0x2a4a1: "dui4", // 𪒡
+ 0x2a4a2: "pu1", // 𪒢
+ 0x2a4a5: "yue4", // 𪒥
+ 0x2a4a9: "huo4", // 𪒩
+ 0x2a4aa: "mai4", // 𪒪
+ 0x2a4ab: "jian3", // 𪒫
+ 0x2a4ac: "nong2", // 𪒬
+ 0x2a4ad: "qin2", // 𪒭
+ 0x2a4af: "qin2", // 𪒯
+ 0x2a4b2: "ye4", // 𪒲
+ 0x2a4b4: "tai2", // 𪒴
+ 0x2a4b9: "jian1", // 𪒹
+ 0x2a4bc: "cha2", // 𪒼
+ 0x2a4be: "dan4", // 𪒾
+ 0x2a4bf: "teng2", // 𪒿
+ 0x2a4c0: "li4", // 𪓀
+ 0x2a4c3: "niang3", // 𪓃
+ 0x2a4c4: "chan2", // 𪓄
+ 0x2a4c5: "zang1", // 𪓅
+ 0x2a4ca: "yu4", // 𪓊
+ 0x2a4cc: "zui4", // 𪓌
+ 0x2a4cd: "bian1", // 𪓍
+ 0x2a4d0: "chu3", // 𪓐
+ 0x2a4d8: "ran2", // 𪓘
+ 0x2a4da: "ran2", // 𪓚
+ 0x2a4db: "yang1", // 𪓛
+ 0x2a4dc: "bo3", // 𪓜
+ 0x2a4e1: "cu4", // 𪓡
+ 0x2a4ec: "mi2", // 𪓬
+ 0x2a4ee: "ke3", // 𪓮
+ 0x2a4f0: "cu4", // 𪓰
+ 0x2a4f7: "xi2", // 𪓷
+ 0x2a4f9: "ma2", // 𪓹
+ 0x2a4fb: "shi1", // 𪓻
+ 0x2a4fc: "dian1", // 𪓼
+ 0x2a4ff: "shi1", // 𪓿
+ 0x2a502: "ding3", // 𪔂
+ 0x2a503: "jiong1", // 𪔃
+ 0x2a505: "yuan2", // 𪔅
+ 0x2a506: "gan1", // 𪔆
+ 0x2a50a: "hui4", // 𪔊
+ 0x2a50b: "ji1", // 𪔋
+ 0x2a50d: "peng2", // 𪔍
+ 0x2a50f: "deng1", // 𪔏
+ 0x2a511: "beng4", // 𪔑
+ 0x2a514: "pang1", // 𪔔
+ 0x2a515: "ta4", // 𪔕
+ 0x2a517: "yuan1", // 𪔗
+ 0x2a518: "gao1", // 𪔘
+ 0x2a519: "yuan1", // 𪔙
+ 0x2a51f: "jia1", // 𪔟
+ 0x2a523: "kong1", // 𪔣
+ 0x2a526: "dong4", // 𪔦
+ 0x2a529: "xian2", // 𪔩
+ 0x2a52a: "qi4", // 𪔪
+ 0x2a52c: "sang1", // 𪔬
+ 0x2a530: "yin4", // 𪔰
+ 0x2a533: "long2", // 𪔳
+ 0x2a536: "teng1", // 𪔶
+ 0x2a537: "long2", // 𪔷
+ 0x2a53a: "ren4", // 𪔺
+ 0x2a53d: "yin4", // 𪔽
+ 0x2a53e: "ping2", // 𪔾
+ 0x2a53f: "pu1", // 𪔿
+ 0x2a540: "yuan2", // 𪕀
+ 0x2a541: "rong3", // 𪕁
+ 0x2a543: "fang1", // 𪕃
+ 0x2a547: "hang1", // 𪕇
+ 0x2a548: "mi2", // 𪕈
+ 0x2a549: "hu2", // 𪕉
+ 0x2a54a: "zi1", // 𪕊
+ 0x2a54c: "ling2", // 𪕌
+ 0x2a54d: "jiong1", // 𪕍
+ 0x2a54e: "rong3", // 𪕎
+ 0x2a552: "ping2", // 𪕒
+ 0x2a553: "guang1", // 𪕓
+ 0x2a554: "er3", // 𪕔
+ 0x2a55d: "cu4", // 𪕝
+ 0x2a55e: "jun4", // 𪕞
+ 0x2a566: "xiu3", // 𪕦
+ 0x2a568: "er2", // 𪕨
+ 0x2a569: "ti4", // 𪕩
+ 0x2a56b: "yang2", // 𪕫
+ 0x2a56d: "ai4", // 𪕭
+ 0x2a56e: "hu2", // 𪕮
+ 0x2a56f: "xi2", // 𪕯
+ 0x2a571: "hu2", // 𪕱
+ 0x2a573: "si1", // 𪕳
+ 0x2a574: "li3", // 𪕴
+ 0x2a576: "yi4", // 𪕶
+ 0x2a577: "gu3", // 𪕷
+ 0x2a579: "tang2", // 𪕹
+ 0x2a580: "que4", // 𪖀
+ 0x2a581: "zong1", // 𪖁
+ 0x2a582: "li2", // 𪖂
+ 0x2a584: "jiao4", // 𪖄
+ 0x2a587: "fan2", // 𪖇
+ 0x2a588: "pu2", // 𪖈
+ 0x2a589: "si1", // 𪖉
+ 0x2a58b: "jie2", // 𪖋
+ 0x2a58c: "lu2", // 𪖌
+ 0x2a58d: "li4", // 𪖍
+ 0x2a58e: "chan2", // 𪖎
+ 0x2a590: "yao4", // 𪖐
+ 0x2a595: "hui1", // 𪖕
+ 0x2a599: "hou1", // 𪖙
+ 0x2a59a: "dian1", // 𪖚
+ 0x2a59b: "qiu4", // 𪖛
+ 0x2a59c: "jue2", // 𪖜
+ 0x2a59e: "pi4", // 𪖞
+ 0x2a5a2: "kui1", // 𪖢
+ 0x2a5a5: "xi3", // 𪖥
+ 0x2a5a6: "ti1", // 𪖦
+ 0x2a5a9: "xu4", // 𪖩
+ 0x2a5af: "bian3", // 𪖯
+ 0x2a5b2: "he1", // 𪖲
+ 0x2a5b3: "lian2", // 𪖳
+ 0x2a5b6: "su4", // 𪖶
+ 0x2a5b7: "liao4", // 𪖷
+ 0x2a5bc: "jin1", // 𪖼
+ 0x2a5c1: "li4", // 𪗁
+ 0x2a5c2: "chan2", // 𪗂
+ 0x2a5c5: "qi2", // 𪗅
+ 0x2a5c6: "qi2", // 𪗆
+ 0x2a5c9: "zi1", // 𪗉
+ 0x2a5cb: "zi1", // 𪗋
+ 0x2a5cd: "qi2", // 𪗍
+ 0x2a5cf: "qi2", // 𪗏
+ 0x2a5d0: "zi1", // 𪗐
+ 0x2a5d2: "zhai1", // 𪗒
+ 0x2a5d3: "zhai1", // 𪗓
+ 0x2a5d4: "pa4", // 𪗔
+ 0x2a5d6: "ju1", // 𪗖
+ 0x2a5d9: "yan3", // 𪗙
+ 0x2a5dc: "hang2", // 𪗜
+ 0x2a5dd: "na4", // 𪗝
+ 0x2a5e4: "yan3", // 𪗤
+ 0x2a5e6: "zhan4", // 𪗦
+ 0x2a5e7: "shi3", // 𪗧
+ 0x2a5e8: "zhi2", // 𪗨
+ 0x2a5ed: "zha1", // 𪗭
+ 0x2a5f4: "rong3", // 𪗴
+ 0x2a5f5: "zha1", // 𪗵
+ 0x2a5f7: "yi4", // 𪗷
+ 0x2a5f8: "ming2", // 𪗸
+ 0x2a5f9: "ya2", // 𪗹
+ 0x2a5fb: "zhi4", // 𪗻
+ 0x2a5fd: "kuo4", // 𪗽
+ 0x2a5fe: "xia2", // 𪗾
+ 0x2a600: "pian2", // 𪘀
+ 0x2a601: "ta4", // 𪘁
+ 0x2a603: "yi3", // 𪘃
+ 0x2a606: "xiu1", // 𪘆
+ 0x2a607: "zhai1", // 𪘇
+ 0x2a609: "duo3", // 𪘉
+ 0x2a60a: "e4", // 𪘊
+ 0x2a60e: "yin2", // 𪘎
+ 0x2a610: "e4", // 𪘐
+ 0x2a611: "suan1", // 𪘑
+ 0x2a612: "an1", // 𪘒
+ 0x2a613: "cuo2", // 𪘓
+ 0x2a615: "tuo2", // 𪘕
+ 0x2a617: "tuo2", // 𪘗
+ 0x2a618: "xia2", // 𪘘
+ 0x2a61b: "chuo4", // 𪘛
+ 0x2a61d: "suan1", // 𪘝
+ 0x2a625: "ji4", // 𪘥
+ 0x2a626: "qian3", // 𪘦
+ 0x2a627: "zu2", // 𪘧
+ 0x2a628: "zhai1", // 𪘨
+ 0x2a629: "yun3", // 𪘩
+ 0x2a62a: "zhan4", // 𪘪
+ 0x2a62c: "yi2", // 𪘬
+ 0x2a632: "ya2", // 𪘲
+ 0x2a633: "yue1", // 𪘳
+ 0x2a639: "he2", // 𪘹
+ 0x2a63a: "qia4", // 𪘺
+ 0x2a63e: "cha1", // 𪘾
+ 0x2a643: "ou2", // 𪙃
+ 0x2a648: "hu2", // 𪙈
+ 0x2a64a: "yan4", // 𪙊
+ 0x2a64c: "qie4", // 𪙌
+ 0x2a64d: "bo2", // 𪙍
+ 0x2a64e: "qiang1", // 𪙎
+ 0x2a64f: "jie4", // 𪙏
+ 0x2a65b: "ni4", // 𪙛
+ 0x2a65e: "chan3", // 𪙞
+ 0x2a65f: "qin3", // 𪙟
+ 0x2a661: "zao1", // 𪙡
+ 0x2a664: "yin3", // 𪙤
+ 0x2a665: "xie4", // 𪙥
+ 0x2a667: "qi2", // 𪙧
+ 0x2a668: "jian4", // 𪙨
+ 0x2a66b: "xu1", // 𪙫
+ 0x2a66d: "zeng4", // 𪙭
+ 0x2a66f: "e4", // 𪙯
+ 0x2a673: "zu1", // 𪙳
+ 0x2a674: "yi3", // 𪙴
+ 0x2a679: "zhi2", // 𪙹
+ 0x2a67a: "li4", // 𪙺
+ 0x2a67d: "li4", // 𪙽
+ 0x2a67e: "yin2", // 𪙾
+ 0x2a681: "lian2", // 𪚁
+ 0x2a683: "chan2", // 𪚃
+ 0x2a685: "jue2", // 𪚅
+ 0x2a687: "za2", // 𪚇
+ 0x2a68e: "zhai1", // 𪚎
+ 0x2a68f: "pian2", // 𪚏
+ 0x2a691: "long2", // 𪚑
+ 0x2a693: "long2", // 𪚓
+ 0x2a698: "long2", // 𪚘
+ 0x2a69d: "long2", // 𪚝
+ 0x2a6a0: "long2", // 𪚠
+ 0x2a6a2: "mang3", // 𪚢
+ 0x2a6a5: "zhe2", // 𪚥
+ 0x2a6ac: "gan4", // 𪚬
+ 0x2a6ad: "gou1", // 𪚭
+ 0x2a6ae: "ran2", // 𪚮
+ 0x2a6af: "cu4", // 𪚯
+ 0x2a6b0: "jiao1", // 𪚰
+ 0x2a6b7: "bo3", // 𪚷
+ 0x2a6b9: "zhu4", // 𪚹
+ 0x2a6ba: "qiu1", // 𪚺
+ 0x2a6bb: "yang1", // 𪚻
+ 0x2a6c0: "xiao4", // 𪛀
+ 0x2a6c2: "hui2", // 𪛂
+ 0x2a6c3: "qu1", // 𪛃
+ 0x2a6c8: "ling2", // 𪛈
+ 0x2a6ca: "yin2", // 𪛊
+ 0x2a6ce: "pi4", // 𪛎
+ 0x2a6d2: "lian2", // 𪛒
+ 0x2a79d: "duo2", // 𪞝
+ 0x2a848: "bai2", // 𪡈
+ 0x2a84f: "zhan1", // 𪡏
+ 0x2a8ae: "luan2", // 𪢮
+ 0x2aa0a: "song2", // 𪨊
+ 0x2aa17: "jue1", // 𪨗
+ 0x2aa9d: "yong1", // 𪪝
+ 0x2aeb9: "nu3", // 𪺹
+ 0x2aed0: "cong1", // 𪻐
+ 0x2afa2: "xian4", // 𪾢
+ 0x2b061: "li4", // 𫁡
+ 0x2b088: "fei4", // 𫂈
+ 0x2b099: "su4", // 𫂙
+ 0x2b0dc: "kou4", // 𫃜
+ 0x2b128: "chi1", // 𫄨
+ 0x2b138: "xun1", // 𫄸
+ 0x2b230: "qia4", // 𫈰
+ 0x2b2d0: "gong3", // 𫋐
+ 0x2b300: "ji1", // 𫌀
+ 0x2b328: "luo2", // 𫌨
+ 0x2b359: "yi4", // 𫍙
+ 0x2b35f: "yi2", // 𫍟
+ 0x2b362: "nao2", // 𫍢
+ 0x2b370: "xi3", // 𫍰
+ 0x2b372: "xiao3", // 𫍲
+ 0x2b3cb: "jue1", // 𫏋
+ 0x2b404: "yue4", // 𫐄
+ 0x2b406: "kuai4", // 𫐆
+ 0x2b409: "ling2", // 𫐉
+ 0x2b410: "ni2", // 𫐐
+ 0x2b413: "bu4", // 𫐓
+ 0x2b4b6: "han2", // 𫒶
+ 0x2b4e7: "fu1", // 𫓧
+ 0x2b4e9: "cong1", // 𫓩
+ 0x2b50e: "jue2", // 𫔎
+ 0x2b5e0: "zhang1", // 𫗠
+ 0x2b5e6: "bu4", // 𫗦
+ 0x2b5e7: "su4", // 𫗧
+ 0x2b5ee: "huang2", // 𫗮
+ 0x2b5f4: "zhan1", // 𫗴
+ 0x2b61d: "jue2", // 𫘝
+ 0x2b623: "han4", // 𫘣
+ 0x2b624: "ai2", // 𫘤
+ 0x2b628: "ti2", // 𫘨
+ 0x2b688: "xu4", // 𫚈
+ 0x2b689: "hong2", // 𫚉
+ 0x2b692: "fu2", // 𫚒
+ 0x2b694: "hui2", // 𫚔
+ 0x2b695: "shi1", // 𫚕
+ 0x2b699: "pu1", // 𫚙
+ 0x2b6db: "zhi1", // 𫛛
+ 0x2b6de: "jue2", // 𫛞
+ 0x2b6e2: "ning2", // 𫛢
+ 0x2b6f6: "chi4", // 𫛶
+ 0x2b6f8: "ti2", // 𫛸
+ 0x2b851: "yin1", // 𫡑
+}
diff --git a/indexing/zhmakeindex/CJK/strokes.go b/indexing/zhmakeindex/CJK/strokes.go
new file mode 100644
index 0000000000..132c613572
--- /dev/null
+++ b/indexing/zhmakeindex/CJK/strokes.go
@@ -0,0 +1,80777 @@
+// 这是由程序自动生成的文件,请不要直接编辑此文件
+// 笔顺来源:sunwb_strokeorder.txt
+// 笔画数来源:Unihan_DictionaryLikeData.txt
+// Unicode 版本:Unicode version: 10.0.0
+
+package CJK
+
+// Strokes 从字符取得笔顺信息。
+var Strokes map[rune]string = strokes
+
+var strokes = map[rune]string{
+ 0x3007: "\x05", // 〇
+ 0x3400: "\x02\x01\x02\x01\x01", // 㐀
+ 0x3401: "\x01\x02\x05\x03\x04\x01", // 㐁
+ 0x3402: "\x01\x05\x01\x05\x01\x05", // 㐂
+ 0x3403: "\x05\x04\x02", // 㐃
+ 0x3404: "\x01\x05\x02", // 㐄
+ 0x3405: "\x03\x04", // 㐅
+ 0x3406: "\x03\x03\x05\x01\x01\x05", // 㐆
+ 0x3407: "\x03\x05\x05", // 㐇
+ 0x3408: "\x03\x04\x05", // 㐈
+ 0x3409: "\x01\x02\x05", // 㐉
+ 0x340a: "\x01\x02\x01\x05", // 㐊
+ 0x340b: "\x01\x02\x01\x05", // 㐋
+ 0x340c: "\x03\x01\x05\x02\x05", // 㐌
+ 0x340d: "\x03\x04\x04\x03\x05", // 㐍
+ 0x340e: "\x04\x01\x03\x04\x05", // 㐎
+ 0x340f: "\x01\x02\x05\x01\x05", // 㐏
+ 0x3410: "\x05\x03\x01\x05\x04\x05", // 㐐
+ 0x3411: "\x03\x05\x04\x04\x04\x05", // 㐑
+ 0x3412: "\x05\x03\x02\x05\x01\x05", // 㐒
+ 0x3413: "\x01\x02\x05\x01\x02\x05", // 㐓
+ 0x3414: "\x04\x01\x02\x05\x01\x05", // 㐔
+ 0x3415: "\x02\x05\x01\x02\x01\x05", // 㐕
+ 0x3416: "\x01\x02\x01\x02\x05\x01\x05", // 㐖
+ 0x3417: "\x01\x02\x01\x03\x03\x05\x05", // 㐗
+ 0x3418: "\x04\x03\x01\x02\x03\x04\x05", // 㐘
+ 0x3419: "\x01\x02\x05\x01\x04\x03\x01\x05", // 㐙
+ 0x341a: "\x01\x02\x05\x01\x02\x05\x01\x05", // 㐚
+ 0x341b: "\x03\x02\x01\x03\x02\x05\x01\x05", // 㐛
+ 0x341c: "\x01\x02\x04\x01\x03\x04\x04\x03\x05", // 㐜
+ 0x341d: "\x01\x02\x01\x03\x05\x02\x05\x01\x05", // 㐝
+ 0x341e: "\x01\x02\x02\x01\x01\x01\x03\x04\x05", // 㐞
+ 0x341f: "\x02\x01\x01\x01\x02\x01\x01\x01\x05", // 㐟
+ 0x3420: "\x03\x04\x04\x03\x05\x02\x01\x05\x05", // 㐠
+ 0x3421: "\x03\x05\x01\x03\x02\x05\x02\x02\x01\x03\x04", // 㐡
+ 0x3422: "\x04\x04\x01\x03\x04\x04\x03\x05\x02\x01\x05", // 㐢
+ 0x3423: "\x04\x01\x03\x01\x02\x05\x01\x01\x01\x02\x05", // 㐣
+ 0x3424: "\x03\x05\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 㐤
+ 0x3425: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x01\x05\x03\x05", // 㐥
+ 0x3426: "\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04\x03\x01\x01\x02\x05", // 㐦
+ 0x3427: "\x04\x05\x02\x03", // 㐧
+ 0x3428: "\x05\x04\x05\x02\x05\x04\x05\x02", // 㐨
+ 0x3429: "\x02\x02\x03\x02\x02\x02\x03\x02", // 㐩
+ 0x342a: "\x04\x01\x05\x02\x03\x04", // 㐪
+ 0x342b: "\x04\x01\x03\x04\x05\x02", // 㐫
+ 0x342c: "\x04\x01\x05\x04\x03\x02\x05", // 㐬
+ 0x342d: "\x04\x01\x02\x05\x02\x05\x01\x01", // 㐭
+ 0x342e: "\x04\x01\x03\x04\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 㐮
+ 0x342f: "\x04\x01\x02\x05\x01\x02\x05\x01\x03\x01\x02\x03\x04\x02\x05\x01\x01", // 㐯
+ 0x3430: "\x03\x02\x02\x05\x01", // 㐰
+ 0x3431: "\x03\x04\x03\x03\x03", // 㐱
+ 0x3432: "\x03\x02\x01\x03\x04", // 㐲
+ 0x3433: "\x03\x02\x01\x03\x05", // 㐳
+ 0x3434: "\x03\x02\x03\x05\x04", // 㐴
+ 0x3435: "\x03\x02\x01\x01\x02", // 㐵
+ 0x3436: "\x03\x02\x05\x01\x05", // 㐶
+ 0x3437: "\x03\x02\x05\x05\x01", // 㐷
+ 0x3438: "\x03\x02\x03\x05\x03\x04", // 㐸
+ 0x3439: "\x03\x02\x03\x01\x01\x05", // 㐹
+ 0x343a: "\x03\x02\x03\x02\x03\x04", // 㐺
+ 0x343b: "\x03\x02\x02\x05\x03\x04", // 㐻
+ 0x343c: "\x03\x02\x03\x01\x03\x02", // 㐼
+ 0x343d: "\x03\x02\x03\x05\x03\x04", // 㐽
+ 0x343e: "\x03\x02\x01\x01\x03\x05", // 㐾
+ 0x343f: "\x03\x02\x03\x01\x01\x02", // 㐿
+ 0x3440: "\x03\x02\x01\x03\x04\x04", // 㑀
+ 0x3441: "\x03\x02\x05\x02\x02\x05\x02", // 㑁
+ 0x3442: "\x03\x02\x01\x02\x05\x03\x04", // 㑂
+ 0x3443: "\x03\x02\x05\x05\x04\x05\x03", // 㑃
+ 0x3444: "\x03\x02\x05\x05\x04\x01\x04", // 㑄
+ 0x3445: "\x03\x02\x03\x01\x02\x01\x01", // 㑅
+ 0x3446: "\x03\x02\x02\x05\x01\x03\x05", // 㑆
+ 0x3447: "\x03\x02\x03\x05\x05\x01\x01", // 㑇
+ 0x3448: "\x03\x02\x01\x05\x02\x03\x04", // 㑈
+ 0x3449: "\x03\x02\x03\x05\x01\x03\x05\x04", // 㑉
+ 0x344a: "\x03\x02\x04\x01\x03\x02\x03\x04", // 㑊
+ 0x344b: "\x03\x02\x02\x05\x01\x02\x02\x01", // 㑋
+ 0x344c: "\x03\x02\x01\x01\x01\x02\x01\x05", // 㑌
+ 0x344d: "\x03\x02\x01\x01\x01\x02\x03\x04", // 㑍
+ 0x344e: "\x03\x02\x05\x05\x05\x02\x05\x02", // 㑎
+ 0x344f: "\x03\x02\x04\x04\x05\x01\x02\x04", // 㑏
+ 0x3450: "\x03\x02\x02\x01\x01\x02\x03\x04", // 㑐
+ 0x3451: "\x03\x02\x03\x02\x05\x01\x01\x01", // 㑑
+ 0x3452: "\x03\x04\x01\x02\x05\x01\x03\x04", // 㑒
+ 0x3453: "\x03\x02\x05\x04\x01\x03\x05\x04", // 㑓
+ 0x3454: "\x03\x02\x01\x03\x02\x05\x03\x04", // 㑔
+ 0x3455: "\x03\x02\x02\x05\x02\x03\x05\x04", // 㑕
+ 0x3456: "\x03\x02\x03\x02\x02\x05\x01\x02", // 㑖
+ 0x3457: "\x03\x02\x03\x02\x05\x01\x01\x01\x03", // 㑗
+ 0x3458: "\x03\x02\x01\x01\x03\x02\x05\x03\x04", // 㑘
+ 0x3459: "\x03\x02\x01\x02\x02\x01\x01\x01\x05", // 㑙
+ 0x345a: "\x03\x02\x05\x01\x01\x03\x05\x02", // 㑚
+ 0x345b: "\x03\x02\x01\x02\x05\x01\x02\x03\x04", // 㑛
+ 0x345c: "\x03\x02\x01\x02\x01\x03\x03\x01\x02", // 㑜
+ 0x345d: "\x03\x02\x01\x01\x02\x01\x01\x03\x02", // 㑝
+ 0x345e: "\x03\x02\x04\x03\x03\x04\x01\x03\x02", // 㑞
+ 0x345f: "\x03\x02\x03\x02\x01\x02\x01\x03\x04", // 㑟
+ 0x3460: "\x03\x02\x02\x02\x05\x04\x01\x02\x01", // 㑠
+ 0x3461: "\x03\x02\x05\x01\x01\x05\x04\x05\x02", // 㑡
+ 0x3462: "\x03\x02\x01\x02\x01\x05\x04\x05\x02", // 㑢
+ 0x3463: "\x03\x02\x01\x02\x03\x04\x01\x02\x03\x04", // 㑣
+ 0x3464: "\x03\x02\x01\x02\x02\x02\x05\x01\x02\x01", // 㑤
+ 0x3465: "\x03\x02\x02\x05\x01\x01\x03\x05\x03\x03", // 㑥
+ 0x3466: "\x03\x02\x04\x05\x01\x01\x03\x04\x04", // 㑦
+ 0x3467: "\x03\x02\x03\x01\x02\x03\x04\x05\x02\x01", // 㑧
+ 0x3468: "\x03\x02\x02\x05\x01\x03\x01\x01\x03\x04", // 㑨
+ 0x3469: "\x03\x02\x02\x05\x02\x02\x01\x03\x05\x04", // 㑩
+ 0x346a: "\x03\x02\x04\x01\x03\x04\x03\x02\x01\x01", // 㑪
+ 0x346b: "\x03\x02\x03\x04\x04\x05\x04\x05\x04\x04", // 㑫
+ 0x346c: "\x03\x02\x05\x03\x01\x01\x02\x02\x05\x01", // 㑬
+ 0x346d: "\x03\x02\x02\x05\x01\x02\x01\x01\x03\x02", // 㑭
+ 0x346e: "\x03\x02\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 㑮
+ 0x346f: "\x03\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 㑯
+ 0x3470: "\x03\x02\x05\x05\x01\x03\x05\x03\x03\x03\x04", // 㑰
+ 0x3471: "\x03\x02\x05\x04\x05\x02\x03\x01\x02\x03\x04", // 㑱
+ 0x3472: "\x03\x02\x01\x02\x02\x05\x04\x03\x01\x01\x02", // 㑲
+ 0x3473: "\x03\x02\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03", // 㑳
+ 0x3474: "\x03\x02\x05\x01\x01\x04\x05\x02\x05\x02\x05\x04", // 㑴
+ 0x3475: "\x03\x02\x04\x01\x03\x04\x01\x03\x01\x01\x03\x04", // 㑵
+ 0x3476: "\x03\x02\x03\x01\x01\x05\x04\x03\x01\x02\x03\x04", // 㑶
+ 0x3477: "\x03\x02\x05\x04\x02\x05\x01\x01\x03\x05\x03\x05", // 㑷
+ 0x3478: "\x03\x02\x01\x02\x02\x05\x01\x01\x02\x05\x01\x02", // 㑸
+ 0x3479: "\x03\x04\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01", // 㑹
+ 0x347a: "\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03", // 㑺
+ 0x347b: "\x03\x02\x04\x04\x05\x04\x05\x04\x03\x04\x02\x05\x02", // 㑻
+ 0x347c: "\x03\x02\x02\x05\x01\x02\x01\x03\x05\x04\x02\x05\x01", // 㑼
+ 0x347d: "\x03\x02\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x01", // 㑽
+ 0x347e: "\x03\x02\x03\x05\x04\x04\x04\x01\x01\x01\x02\x05\x01", // 㑾
+ 0x347f: "\x03\x02\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 㑿
+ 0x3480: "\x03\x02\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01", // 㒀
+ 0x3481: "\x03\x02\x02\x05\x01\x02\x01\x03\x04\x01\x01\x02", // 㒁
+ 0x3482: "\x03\x02\x01\x02\x02\x01\x02\x01\x03\x02\x05\x01\x01", // 㒂
+ 0x3483: "\x03\x02\x01\x01\x01\x02\x05\x01\x01\x01\x03\x04\x05\x04", // 㒃
+ 0x3484: "\x03\x02\x03\x05\x04\x04\x01\x03\x04\x04\x04\x04\x04\x04", // 㒄
+ 0x3485: "\x03\x02\x04\x01\x03\x05\x04\x03\x05\x04\x03\x05\x03\x04", // 㒅
+ 0x3486: "\x03\x02\x03\x04\x01\x02\x05\x01\x05\x04\x01\x05\x04\x01", // 㒆
+ 0x3487: "\x03\x02\x03\x01\x01\x02\x02\x02\x02\x01\x04\x04\x04\x04", // 㒇
+ 0x3488: "\x03\x02\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 㒈
+ 0x3489: "\x03\x02\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x03\x04", // 㒉
+ 0x348a: "\x03\x02\x05\x03\x04\x02\x01\x02\x01\x05\x03\x04\x02\x01\x02\x01", // 㒊
+ 0x348b: "\x03\x02\x01\x02\x02\x01\x01\x01\x03\x04\x03\x03\x01\x02", // 㒋
+ 0x348c: "\x03\x02\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x03\x05", // 㒌
+ 0x348d: "\x03\x02\x05\x04\x05\x04\x05\x04\x05\x05\x04\x02\x03\x04", // 㒍
+ 0x348e: "\x03\x02\x01\x01\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01", // 㒎
+ 0x348f: "\x03\x02\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x04\x04", // 㒏
+ 0x3490: "\x03\x02\x03\x01\x04\x03\x01\x04\x03\x05\x02\x05\x01\x01", // 㒐
+ 0x3491: "\x03\x02\x01\x04\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05", // 㒑
+ 0x3492: "\x03\x02\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x02\x03\x04", // 㒒
+ 0x3493: "\x03\x02\x01\x02\x01\x04\x03\x01\x01\x01\x02\x04\x05\x04", // 㒓
+ 0x3494: "\x03\x02\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 㒔
+ 0x3495: "\x03\x02\x04\x01\x05\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 㒕
+ 0x3496: "\x03\x02\x01\x02\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 㒖
+ 0x3497: "\x03\x02\x01\x02\x02\x01\x01\x04\x05\x01\x05\x04\x01\x02\x01", // 㒗
+ 0x3498: "\x03\x02\x01\x02\x05\x01\x02\x05\x05\x04\x04\x01\x04\x03\x01", // 㒘
+ 0x3499: "\x03\x02\x05\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x02\x05\x02", // 㒙
+ 0x349a: "\x03\x02\x03\x04\x04\x03\x01\x02\x01\x05\x01\x01\x04\x05\x04\x04", // 㒚
+ 0x349b: "\x03\x02\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 㒛
+ 0x349c: "\x03\x02\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 㒜
+ 0x349d: "\x03\x02\x01\x02\x02\x02\x05\x02\x02\x01\x01\x03\x04\x05\x03\x04", // 㒝
+ 0x349e: "\x03\x02\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x02\x05", // 㒞
+ 0x349f: "\x03\x02\x04\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05\x03\x04", // 㒟
+ 0x34a0: "\x03\x02\x02\x01\x03\x05\x04\x05\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 㒠
+ 0x34a1: "\x03\x02\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02\x03\x05\x05\x04\x02\x03\x04", // 㒡
+ 0x34a2: "\x03\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02", // 㒢
+ 0x34a3: "\x03\x02\x04\x01\x03\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01\x04\x05\x04\x04", // 㒣
+ 0x34a4: "\x03\x02\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01", // 㒤
+ 0x34a5: "\x03\x02\x01\x01\x01\x02\x02\x01\x01\x01\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 㒥
+ 0x34a6: "\x03\x02\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x01\x02\x01", // 㒦
+ 0x34a7: "\x03\x02\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 㒧
+ 0x34a8: "\x03\x02\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x01\x03\x04\x05\x01\x05", // 㒨
+ 0x34a9: "\x03\x02\x05\x05\x01\x03\x05\x03\x03\x03\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 㒩
+ 0x34aa: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x02\x01\x02\x01\x01\x03\x05\x03\x03\x03\x04", // 㒪
+ 0x34ab: "\x01\x02\x01\x01\x03\x05", // 㒫
+ 0x34ac: "\x01\x01\x03\x05\x01\x01\x02\x01", // 㒬
+ 0x34ad: "\x02\x05\x01\x03\x05\x02\x05\x01\x03\x05", // 㒭
+ 0x34ae: "\x01\x01\x03\x05\x01\x03\x05\x03\x03\x03\x04", // 㒮
+ 0x34af: "\x02\x04\x03\x01\x03\x05\x01\x02\x02\x01\x01\x02\x02\x01\x01\x02", // 㒯
+ 0x34b0: "\x03\x04\x01\x02\x01", // 㒰
+ 0x34b1: "\x03\x04\x03\x05\x04", // 㒱
+ 0x34b2: "\x03\x04\x02\x05\x01\x01", // 㒲
+ 0x34b3: "\x02\x05\x02\x03\x04\x03\x04", // 㒳
+ 0x34b4: "\x03\x04\x05\x02\x02\x05\x02", // 㒴
+ 0x34b5: "\x03\x02\x05\x01\x01\x03\x04", // 㒵
+ 0x34b6: "\x03\x04\x03\x02\x05\x01\x01", // 㒶
+ 0x34b7: "\x02\x05\x03\x04\x01\x03\x04", // 㒷
+ 0x34b8: "\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 㒸
+ 0x34b9: "\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 㒹
+ 0x34ba: "\x02\x05\x04\x03\x01\x03\x04\x05", // 㒺
+ 0x34bb: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 㒻
+ 0x34bc: "\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04", // 㒼
+ 0x34bd: "\x02\x05\x01\x01\x04\x03\x01\x01\x03\x04\x05\x05", // 㒽
+ 0x34be: "\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x05\x02\x05", // 㒾
+ 0x34bf: "\x02\x05\x01\x01\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 㒿
+ 0x34c0: "\x04\x05\x02\x04", // 㓀
+ 0x34c1: "\x04\x05\x03\x04", // 㓁
+ 0x34c2: "\x04\x05\x01\x01\x03\x05\x05\x03\x01", // 㓂
+ 0x34c3: "\x04\x05\x04\x01\x01\x01\x02\x05\x01\x03\x01\x05", // 㓃
+ 0x34c4: "\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03\x04\x05\x03\x05", // 㓄
+ 0x34c5: "\x04\x01\x01\x02", // 㓅
+ 0x34c6: "\x04\x01\x03\x04\x03\x05", // 㓆
+ 0x34c7: "\x04\x01\x03\x01\x03\x04", // 㓇
+ 0x34c8: "\x04\x01\x01\x03\x02\x05\x01", // 㓈
+ 0x34c9: "\x04\x01\x03\x01\x02\x02\x05\x01", // 㓉
+ 0x34ca: "\x04\x01\x02\x05\x01\x02\x05\x01", // 㓊
+ 0x34cb: "\x04\x01\x01\x02\x02\x01\x03\x04", // 㓋
+ 0x34cc: "\x04\x01\x03\x04\x01\x01\x02\x01", // 㓌
+ 0x34cd: "\x04\x01\x04\x01\x05\x04\x03\x05", // 㓍
+ 0x34ce: "\x04\x01\x05\x01\x01\x04\x05\x05\x04", // 㓎
+ 0x34cf: "\x04\x01\x02\x05\x03\x04\x02\x05\x01", // 㓏
+ 0x34d0: "\x04\x01\x01\x02\x01\x03\x04\x01\x02\x01", // 㓐
+ 0x34d1: "\x04\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 㓑
+ 0x34d2: "\x04\x01\x01\x05\x03\x04\x02\x04\x04\x04", // 㓒
+ 0x34d3: "\x04\x01\x01\x02\x02\x05\x04\x03\x01\x01\x02", // 㓓
+ 0x34d4: "\x04\x01\x03\x02\x05\x01\x01\x01\x03\x01\x02\x04", // 㓔
+ 0x34d5: "\x04\x01\x01\x03\x01\x04\x03\x03\x04\x05\x03\x04", // 㓕
+ 0x34d6: "\x04\x01\x02\x05\x01\x01\x01\x02\x02\x01\x01\x02", // 㓖
+ 0x34d7: "\x04\x01\x01\x01\x01\x02\x05\x03\x05\x05\x04\x02\x03\x04", // 㓗
+ 0x34d8: "\x03\x05\x01\x03\x05\x04\x01\x01\x02\x01\x04", // 㓘
+ 0x34d9: "\x04\x01\x03\x04\x05\x02", // 㓙
+ 0x34da: "\x01\x02\x01\x02\x02", // 㓚
+ 0x34db: "\x01\x02\x01\x05\x03", // 㓛
+ 0x34dc: "\x05\x05\x04\x05\x03", // 㓜
+ 0x34dd: "\x01\x01\x03\x02\x02\x02", // 㓝
+ 0x34de: "\x01\x01\x01\x02\x05\x03", // 㓞
+ 0x34df: "\x05\x03\x02\x05\x04\x02\x02", // 㓟
+ 0x34e0: "\x02\x01\x02\x05\x01\x02\x02", // 㓠
+ 0x34e1: "\x03\x01\x01\x02\x05\x02\x02\x02", // 㓡
+ 0x34e2: "\x03\x05\x04\x02\x05\x01\x02\x02", // 㓢
+ 0x34e3: "\x03\x04\x01\x02\x05\x01\x02\x02", // 㓣
+ 0x34e4: "\x01\x02\x01\x02\x05\x01\x02\x02", // 㓤
+ 0x34e5: "\x02\x04\x03\x05\x01\x01\x02\x02", // 㓥
+ 0x34e6: "\x01\x03\x02\x05\x01\x01\x02\x02", // 㓦
+ 0x34e7: "\x03\x04\x04\x05\x02\x05\x01\x02\x02", // 㓧
+ 0x34e8: "\x01\x03\x04\x03\x04\x03\x04\x02\x02", // 㓨
+ 0x34e9: "\x03\x05\x03\x05\x01\x01\x02\x02\x02", // 㓩
+ 0x34ea: "\x04\x05\x01\x01\x05\x04\x05\x03", // 㓪
+ 0x34eb: "\x01\x03\x04\x01\x01\x03\x02\x02\x02", // 㓫
+ 0x34ec: "\x04\x03\x01\x01\x03\x04\x05\x03\x02\x02", // 㓬
+ 0x34ed: "\x02\x05\x01\x01\x03\x05\x03\x04\x05\x02\x02", // 㓭
+ 0x34ee: "\x03\x05\x01\x02\x01\x02\x05\x01\x02\x02", // 㓮
+ 0x34ef: "\x05\x05\x05\x02\x05\x01\x02\x01\x02\x02", // 㓯
+ 0x34f0: "\x01\x02\x05\x01\x02\x01\x05\x02\x02\x02", // 㓰
+ 0x34f1: "\x03\x04\x01\x02\x05\x01\x01\x02\x02\x02\x02", // 㓱
+ 0x34f2: "\x04\x05\x01\x03\x02\x05\x01\x02\x02\x02\x02", // 㓲
+ 0x34f3: "\x02\x05\x01\x01\x01\x02\x01\x03\x04\x02\x02", // 㓳
+ 0x34f4: "\x01\x03\x02\x05\x02\x02\x01\x03\x04\x02\x02", // 㓴
+ 0x34f5: "\x02\x05\x01\x02\x05\x01\x01\x01\x05\x02\x02", // 㓵
+ 0x34f6: "\x01\x01\x01\x02\x05\x03\x01\x03\x04\x02\x02", // 㓶
+ 0x34f7: "\x03\x02\x05\x01\x01\x01\x01\x02\x03\x04\x02\x02", // 㓷
+ 0x34f8: "\x05\x05\x01\x05\x05\x01\x05\x01\x02\x01\x02\x02", // 㓸
+ 0x34f9: "\x01\x03\x04\x03\x03\x04\x04\x03\x03\x04\x02\x02", // 㓹
+ 0x34fa: "\x02\x01\x05\x03\x01\x05\x04\x01\x03\x04\x02\x02", // 㓺
+ 0x34fb: "\x02\x05\x02\x02\x01\x01\x02\x01\x02\x01\x02\x02", // 㓻
+ 0x34fc: "\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x02\x02", // 㓼
+ 0x34fd: "\x02\x05\x02\x04\x04\x05\x01\x01\x02\x03\x04\x02\x02", // 㓽
+ 0x34fe: "\x05\x01\x03\x02\x04\x01\x03\x04\x03\x01\x01\x02\x02\x02", // 㓾
+ 0x34ff: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x02\x02", // 㓿
+ 0x3500: "\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x03\x04\x02\x02", // 㔀
+ 0x3501: "\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01\x02\x02", // 㔁
+ 0x3502: "\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02\x01\x01", // 㔂
+ 0x3503: "\x05\x05\x04\x04\x04\x04\x03\x05\x05\x02\x01\x05\x05\x03", // 㔃
+ 0x3504: "\x01\x02\x05\x02\x02\x01\x04\x03\x01\x02\x03\x04\x02\x02", // 㔄
+ 0x3505: "\x05\x01\x01\x02\x03\x02\x01\x01\x05\x05\x02\x01\x02\x02\x02", // 㔅
+ 0x3506: "\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x01\x02\x02", // 㔆
+ 0x3507: "\x05\x04\x03\x03\x04\x05\x01\x05\x03\x04\x05\x04\x02\x02", // 㔇
+ 0x3508: "\x01\x02\x02\x02\x01\x01\x01\x02\x01\x01\x01\x02\x02", // 㔈
+ 0x3509: "\x05\x01\x03\x03\x02\x05\x01\x02\x05\x02\x01\x04\x02\x02", // 㔉
+ 0x350a: "\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x02", // 㔊
+ 0x350b: "\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01\x02\x02", // 㔋
+ 0x350c: "\x01\x02\x02\x01\x01\x01\x05\x04\x03\x02\x03\x03\x03\x04\x02\x02", // 㔌
+ 0x350d: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x01\x03\x02\x02\x02", // 㔍
+ 0x350e: "\x05\x02\x03\x03\x02\x05\x01\x05\x01\x04\x01\x04\x03\x01\x01\x02\x05\x03", // 㔎
+ 0x350f: "\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x02\x02", // 㔏
+ 0x3510: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x02\x02", // 㔐
+ 0x3511: "\x01\x02\x02\x03\x02\x05\x01\x05\x01\x04\x01\x04\x03\x01\x01\x02\x05\x03", // 㔑
+ 0x3512: "\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x03\x04\x02\x05\x01\x02\x02", // 㔒
+ 0x3513: "\x03\x01\x02\x05\x03", // 㔓
+ 0x3514: "\x05\x03\x02\x05\x01\x05", // 㔔
+ 0x3515: "\x03\x01\x01\x05\x05\x03", // 㔕
+ 0x3516: "\x05\x03\x02\x05\x01\x05", // 㔖
+ 0x3517: "\x05\x01\x05\x03\x02\x05\x03", // 㔗
+ 0x3518: "\x05\x02\x02\x05\x02\x05\x03", // 㔘
+ 0x3519: "\x04\x03\x01\x01\x03\x02\x05\x03", // 㔙
+ 0x351a: "\x03\x01\x02\x02\x05\x01\x05\x03", // 㔚
+ 0x351b: "\x01\x02\x01\x02\x05\x01\x05\x03", // 㔛
+ 0x351c: "\x03\x04\x04\x03\x05\x02\x01\x05\x03", // 㔜
+ 0x351d: "\x01\x02\x05\x02\x03\x04\x03\x04\x05\x03", // 㔝
+ 0x351e: "\x03\x01\x02\x02\x01\x01\x03\x05\x05\x03", // 㔞
+ 0x351f: "\x03\x01\x01\x02\x01\x03\x05\x04\x05\x03", // 㔟
+ 0x3520: "\x02\x05\x01\x01\x03\x05\x03\x04\x05\x05\x03", // 㔠
+ 0x3521: "\x03\x02\x05\x03\x04\x01\x01\x05\x03\x05\x05\x03", // 㔡
+ 0x3522: "\x05\x05\x04\x04\x04\x04\x03\x05\x05\x02\x01\x05\x05\x03", // 㔢
+ 0x3523: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x05\x03", // 㔣
+ 0x3524: "\x04\x04\x05\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x05\x03", // 㔤
+ 0x3525: "\x02\x05\x02\x02\x01\x05\x04\x02\x05\x01\x01\x03\x05\x03\x05\x05\x03", // 㔥
+ 0x3526: "\x04\x03\x01\x01\x01\x03\x04\x04\x05\x01\x01\x05\x03\x04\x05\x03", // 㔦
+ 0x3527: "\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01\x05\x03", // 㔧
+ 0x3528: "\x03\x05\x02\x01\x01\x03\x05\x02\x05\x01\x01", // 㔨
+ 0x3529: "\x03\x05\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 㔩
+ 0x352a: "\x03\x05\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01", // 㔪
+ 0x352b: "\x01\x03\x03\x05", // 㔫
+ 0x352c: "\x03\x05\x02\x05\x01\x01\x01\x02", // 㔬
+ 0x352d: "\x01\x05\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 㔭
+ 0x352e: "\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x05\x04\x02\x05\x01\x01\x03\x05\x03\x05", // 㔮
+ 0x352f: "\x01\x03\x05\x02\x05\x01\x05", // 㔯
+ 0x3530: "\x01\x03\x05\x04\x02\x04\x05", // 㔰
+ 0x3531: "\x01\x03\x02\x01\x05\x01\x01\x03\x04\x05", // 㔱
+ 0x3532: "\x01\x03\x04\x04\x05\x01\x01\x05\x04\x03\x05\x05", // 㔲
+ 0x3533: "\x01\x03\x04\x04\x05\x01\x01\x05\x04\x03\x05\x05", // 㔳
+ 0x3534: "\x01\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04\x05", // 㔴
+ 0x3535: "\x01\x05\x01\x05\x05\x01\x05\x01\x02\x02\x01\x03\x04\x05", // 㔵
+ 0x3536: "\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x03\x05\x04\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x05", // 㔶
+ 0x3537: "\x01\x01\x02\x05\x03\x04\x05", // 㔷
+ 0x3538: "\x01\x03\x03\x02\x01\x05\x03\x01\x05\x03\x05\x05", // 㔸
+ 0x3539: "\x01\x02\x05\x03", // 㔹
+ 0x353a: "\x01\x02\x01\x05\x01\x02", // 㔺
+ 0x353b: "\x01\x03\x02\x04\x01\x02", // 㔻
+ 0x353c: "\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02", // 㔼
+ 0x353d: "\x02\x01\x02\x05\x02\x05\x01\x01", // 㔽
+ 0x353e: "\x05\x05", // 㔾
+ 0x353f: "\x01\x05\x02", // 㔿
+ 0x3540: "\x02\x05\x01\x02\x01\x05\x05", // 㕀
+ 0x3541: "\x03\x04\x01\x03\x05\x04\x05\x02", // 㕁
+ 0x3542: "\x02\x03\x03\x04\x04\x05", // 㕂
+ 0x3543: "\x01\x03\x01\x01\x03\x02", // 㕃
+ 0x3544: "\x01\x03\x01\x05\x05\x04", // 㕄
+ 0x3545: "\x01\x03\x02\x05\x01\x01\x02", // 㕅
+ 0x3546: "\x01\x03\x01\x02\x02\x05\x01", // 㕆
+ 0x3547: "\x01\x03\x04\x01\x04\x03\x01", // 㕇
+ 0x3548: "\x01\x03\x04\x01\x03\x05\x03\x04", // 㕈
+ 0x3549: "\x01\x03\x03\x04\x01\x02\x05\x01", // 㕉
+ 0x354a: "\x01\x03\x01\x02\x05\x01\x01\x02\x04", // 㕊
+ 0x354b: "\x01\x03\x03\x04\x01\x01\x02\x04\x03\x01", // 㕋
+ 0x354c: "\x01\x03\x02\x05\x01\x01\x01\x01\x02\x04", // 㕌
+ 0x354d: "\x01\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 㕍
+ 0x354e: "\x01\x03\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 㕎
+ 0x354f: "\x01\x03\x01\x02\x05\x01\x04\x03\x01\x04\x04\x01\x02", // 㕏
+ 0x3550: "\x01\x03\x03\x02\x01\x05\x01\x01\x03\x05\x04\x04\x04\x04", // 㕐
+ 0x3551: "\x01\x03\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x04", // 㕑
+ 0x3552: "\x01\x03\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01\x05\x03\x04", // 㕒
+ 0x3553: "\x01\x03\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x01", // 㕓
+ 0x3554: "\x01\x03\x01\x02\x02\x01\x01\x01\x01\x01\x02\x01\x01\x03\x02\x05\x02\x02\x01\x01\x04\x05\x04\x04", // 㕔
+ 0x3555: "\x05\x04\x05\x04", // 㕕
+ 0x3556: "\x05\x04\x05\x04\x05\x04\x01\x02\x03\x04", // 㕖
+ 0x3557: "\x04\x03\x01\x01\x02\x01\x03\x05\x04\x05\x04", // 㕗
+ 0x3558: "\x05\x04\x05\x04\x05\x04\x03\x04\x02\x03\x04", // 㕘
+ 0x3559: "\x05\x04\x03\x04\x03\x05\x04\x03\x05\x02\x05\x01\x03\x05\x04", // 㕙
+ 0x355a: "\x05\x04\x04\x04", // 㕚
+ 0x355b: "\x05\x04\x05\x04", // 㕛
+ 0x355c: "\x02\x05\x01\x02\x05\x04", // 㕜
+ 0x355d: "\x01\x02\x02\x05\x01\x05\x04", // 㕝
+ 0x355e: "\x05\x01\x03\x02\x05\x02\x05\x04", // 㕞
+ 0x355f: "\x02\x01\x02\x05\x01\x02\x02\x05\x04", // 㕟
+ 0x3560: "\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 㕠
+ 0x3561: "\x02\x01\x04\x05\x01\x03\x04\x03\x04\x02\x05\x01\x05\x04", // 㕡
+ 0x3562: "\x02\x01\x04\x05\x01\x02\x05\x01\x01\x01\x03\x04\x05\x04", // 㕢
+ 0x3563: "\x03\x04\x02\x05\x01", // 㕣
+ 0x3564: "\x02\x05\x01\x03\x05", // 㕤
+ 0x3565: "\x02\x05\x01\x03\x04", // 㕥
+ 0x3566: "\x02\x05\x01\x01\x03\x04", // 㕦
+ 0x3567: "\x02\x05\x01\x05\x01\x03", // 㕧
+ 0x3568: "\x02\x05\x01\x03\x05\x04", // 㕨
+ 0x3569: "\x02\x05\x01\x01\x01\x01\x02", // 㕩
+ 0x356a: "\x02\x05\x01\x04\x05\x03\x05", // 㕪
+ 0x356b: "\x02\x05\x01\x04\x01\x05\x03", // 㕫
+ 0x356c: "\x02\x05\x01\x03\x04\x05\x04", // 㕬
+ 0x356d: "\x02\x05\x01\x03\x01\x03\x04", // 㕭
+ 0x356e: "\x02\x05\x01\x03\x04\x03\x04", // 㕮
+ 0x356f: "\x02\x05\x03\x04\x02\x05\x01", // 㕯
+ 0x3570: "\x02\x05\x01\x03\x01\x01\x05", // 㕰
+ 0x3571: "\x02\x05\x01\x01\x03\x05\x04", // 㕱
+ 0x3572: "\x02\x05\x01\x01\x02\x03\x04", // 㕲
+ 0x3573: "\x02\x05\x01\x03\x04\x05\x02", // 㕳
+ 0x3574: "\x02\x05\x01\x04\x05\x03\x05", // 㕴
+ 0x3575: "\x02\x05\x01\x01\x01\x02\x01", // 㕵
+ 0x3576: "\x02\x05\x01\x01\x02\x05\x01", // 㕶
+ 0x3577: "\x02\x05\x01\x03\x02\x05\x01\x01", // 㕷
+ 0x3578: "\x02\x05\x01\x04\x01\x04\x03\x01", // 㕸
+ 0x3579: "\x02\x05\x01\x01\x03\x05\x04\x04", // 㕹
+ 0x357a: "\x02\x05\x01\x02\x05\x01\x01\x05", // 㕺
+ 0x357b: "\x04\x01\x03\x02\x04\x02\x05\x01", // 㕻
+ 0x357c: "\x02\x05\x01\x03\x05\x03\x04\x05", // 㕼
+ 0x357d: "\x02\x05\x01\x05\x04\x03\x04", // 㕽
+ 0x357e: "\x02\x03\x04\x02\x05\x01\x03\x05", // 㕾
+ 0x357f: "\x03\x01\x02\x03\x04\x02\x05\x01", // 㕿
+ 0x3580: "\x02\x05\x01\x05\x01\x01\x01\x01\x02", // 㖀
+ 0x3581: "\x02\x05\x01\x03\x04\x01\x03\x05\x04", // 㖁
+ 0x3582: "\x02\x05\x01\x02\x05\x01\x01\x05\x03", // 㖂
+ 0x3583: "\x02\x05\x01\x03\x03\x01\x02\x05\x01", // 㖃
+ 0x3584: "\x02\x05\x01\x04\x03\x04\x02\x04\x02", // 㖄
+ 0x3585: "\x02\x05\x01\x01\x03\x01\x05\x03\x04", // 㖅
+ 0x3586: "\x02\x05\x01\x02\x05\x01\x02\x02\x01", // 㖆
+ 0x3587: "\x02\x05\x01\x01\x03\x02\x05\x02\x02", // 㖇
+ 0x3588: "\x01\x02\x01\x03\x03\x05\x02\x05\x01", // 㖈
+ 0x3589: "\x02\x05\x01\x03\x04\x02\x01\x02\x01", // 㖉
+ 0x358a: "\x02\x05\x01\x05\x01\x01\x01\x02\x04", // 㖊
+ 0x358b: "\x03\x04\x03\x02\x02\x05\x01\x03\x05", // 㖋
+ 0x358c: "\x03\x02\x03\x05\x02\x05\x01\x03\x05", // 㖌
+ 0x358d: "\x04\x04\x01\x02\x02\x05\x01\x03\x05", // 㖍
+ 0x358e: "\x02\x05\x01\x03\x05\x03\x04\x03\x02", // 㖎
+ 0x358f: "\x02\x05\x01\x02\x05\x01\x01\x01\x02\x01", // 㖏
+ 0x3590: "\x02\x05\x01\x02\x05\x01\x05\x01\x01\x03", // 㖐
+ 0x3591: "\x02\x05\x01\x01\x01\x03\x02\x05\x03\x04", // 㖑
+ 0x3592: "\x02\x05\x01\x04\x03\x05\x01\x05\x02\x03", // 㖒
+ 0x3593: "\x02\x05\x01\x03\x05\x04\x01\x01\x01\x02", // 㖓
+ 0x3594: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01", // 㖔
+ 0x3595: "\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 㖕
+ 0x3596: "\x04\x01\x04\x03\x01\x01\x02\x02\x05\x01", // 㖖
+ 0x3597: "\x02\x05\x01\x02\x05\x02\x03\x04\x04\x05", // 㖗
+ 0x3598: "\x02\x05\x01\x01\x03\x01\x01\x05\x03\x04", // 㖘
+ 0x3599: "\x05\x03\x02\x05\x01\x02\x05\x01\x03\x05", // 㖙
+ 0x359a: "\x03\x02\x01\x02\x04\x02\x05\x01\x03\x05", // 㖚
+ 0x359b: "\x01\x02\x02\x05\x01\x02\x05\x01\x03\x05", // 㖛
+ 0x359c: "\x04\x01\x02\x05\x01\x02\x05\x01\x03\x05", // 㖜
+ 0x359d: "\x01\x01\x02\x03\x04\x02\x05\x01\x03\x05", // 㖝
+ 0x359e: "\x02\x05\x01\x02\x05\x01\x02\x05\x03\x04", // 㖞
+ 0x359f: "\x02\x05\x01\x03\x04\x04\x03\x04\x05\x05\x04", // 㖟
+ 0x35a0: "\x02\x05\x01\x01\x03\x04\x01\x01\x02\x03\x04", // 㖠
+ 0x35a1: "\x02\x05\x01\x04\x01\x03\x02\x03\x05\x04\x04", // 㖡
+ 0x35a2: "\x02\x05\x01\x04\x01\x03\x02\x01\x02\x01\x03\x05", // 㖢
+ 0x35a3: "\x02\x05\x01\x04\x01\x04\x03\x01\x02\x05\x01", // 㖣
+ 0x35a4: "\x02\x05\x01\x05\x02\x04\x01\x03\x04\x05\x02", // 㖤
+ 0x35a5: "\x02\x05\x01\x02\x05\x03\x01\x02\x03\x04\x01", // 㖥
+ 0x35a6: "\x02\x05\x01\x01\x02\x05\x01\x01\x02\x03\x04", // 㖦
+ 0x35a7: "\x02\x05\x01\x03\x05\x01\x05\x02\x05\x01\x01", // 㖧
+ 0x35a8: "\x02\x05\x01\x05\x01\x01\x02\x04\x01\x03\x04", // 㖨
+ 0x35a9: "\x02\x05\x01\x01\x02\x02\x01\x01\x01\x05\x04", // 㖩
+ 0x35aa: "\x02\x05\x01\x01\x02\x05\x01\x01\x05\x03\x04", // 㖪
+ 0x35ab: "\x02\x05\x01\x01\x02\x01\x03\x04\x03\x05\x04", // 㖫
+ 0x35ac: "\x02\x05\x01\x03\x02\x01\x05\x01\x01\x05\x04", // 㖬
+ 0x35ad: "\x02\x05\x01\x01\x01\x03\x04\x02\x04\x04\x04", // 㖭
+ 0x35ae: "\x02\x05\x01\x03\x04\x01\x02\x05\x01\x02\x02", // 㖮
+ 0x35af: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x03\x05", // 㖯
+ 0x35b0: "\x02\x05\x01\x03\x05\x02\x05\x01\x02\x05\x01", // 㖰
+ 0x35b1: "\x04\x01\x03\x02\x03\x05\x04\x04\x02\x05\x01", // 㖱
+ 0x35b2: "\x05\x03\x01\x02\x05\x01\x02\x05\x01\x03\x05", // 㖲
+ 0x35b3: "\x04\x04\x01\x05\x03\x01\x02\x05\x01\x03\x05", // 㖳
+ 0x35b4: "\x02\x05\x01\x01\x02\x02\x03\x05\x03\x03", // 㖴
+ 0x35b5: "\x02\x05\x01\x02\x05\x01\x01\x01\x01\x03\x04", // 㖵
+ 0x35b6: "\x02\x05\x01\x01\x02\x05\x02\x02\x01\x01\x02\x01", // 㖶
+ 0x35b7: "\x02\x05\x01\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 㖷
+ 0x35b8: "\x02\x05\x01\x02\x01\x05\x03\x01\x05\x01\x05\x01", // 㖸
+ 0x35b9: "\x02\x05\x01\x03\x04\x05\x03\x02\x05\x02\x02\x01", // 㖹
+ 0x35ba: "\x02\x05\x01\x01\x01\x01\x03\x04\x02\x05\x01\x01", // 㖺
+ 0x35bb: "\x02\x05\x01\x05\x04\x05\x02\x03\x01\x02\x03\x04", // 㖻
+ 0x35bc: "\x02\x05\x01\x01\x02\x02\x01\x01\x01\x02\x03\x04", // 㖼
+ 0x35bd: "\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 㖽
+ 0x35be: "\x02\x05\x01\x02\x05\x01\x04\x03\x01\x05\x02\x03", // 㖾
+ 0x35bf: "\x02\x05\x01\x01\x02\x02\x01\x01\x01\x05\x02", // 㖿
+ 0x35c0: "\x02\x05\x01\x02\x05\x05\x04\x05\x05\x04\x05\x02", // 㗀
+ 0x35c1: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x05", // 㗁
+ 0x35c2: "\x02\x05\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01", // 㗂
+ 0x35c3: "\x02\x05\x01\x05\x01\x05\x01\x05\x02\x05\x01\x01", // 㗃
+ 0x35c4: "\x02\x05\x01\x02\x05\x02\x02\x01\x04\x01\x05\x03", // 㗄
+ 0x35c5: "\x02\x05\x01\x01\x02\x02\x05\x01\x03\x05\x01\x01", // 㗅
+ 0x35c6: "\x02\x05\x01\x01\x02\x02\x01\x02\x05\x01\x01\x02", // 㗆
+ 0x35c7: "\x02\x05\x01\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 㗇
+ 0x35c8: "\x02\x05\x01\x05\x04\x02\x05\x01\x01\x02\x05\x03", // 㗈
+ 0x35c9: "\x01\x01\x01\x02\x05\x03\x03\x05\x04\x02\x05\x01", // 㗉
+ 0x35ca: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 㗊
+ 0x35cb: "\x02\x05\x01\x03\x05\x01\x03\x03\x01\x01\x03\x04", // 㗋
+ 0x35cc: "\x02\x05\x01\x04\x04\x05\x01\x05\x04\x01\x02\x01", // 㗌
+ 0x35cd: "\x02\x05\x01\x03\x01\x02\x03\x04\x02\x05\x01\x01", // 㗍
+ 0x35ce: "\x02\x05\x01\x05\x03\x02\x05\x01\x01\x02\x03\x04", // 㗎
+ 0x35cf: "\x02\x05\x01\x01\x03\x02\x04\x01\x02\x01\x02\x01", // 㗏
+ 0x35d0: "\x02\x05\x01\x01\x03\x04\x04\x02\x05\x02\x02\x01", // 㗐
+ 0x35d1: "\x02\x05\x01\x03\x01\x01\x03\x01\x01\x01\x01\x02", // 㗑
+ 0x35d2: "\x02\x05\x01\x04\x01\x02\x05\x01\x03\x05\x03\x04", // 㗒
+ 0x35d3: "\x02\x05\x01\x03\x02\x05\x01\x05\x01\x04\x05\x04", // 㗓
+ 0x35d4: "\x02\x05\x01\x02\x01\x05\x03\x01\x05\x04\x01\x03\x04", // 㗔
+ 0x35d5: "\x02\x05\x01\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01", // 㗕
+ 0x35d6: "\x02\x05\x01\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01", // 㗖
+ 0x35d7: "\x02\x05\x01\x05\x03\x03\x02\x05\x01\x01\x03\x01\x02", // 㗗
+ 0x35d8: "\x02\x05\x01\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 㗘
+ 0x35d9: "\x02\x05\x01\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03", // 㗙
+ 0x35da: "\x02\x05\x01\x01\x02\x05\x02\x02\x01\x01\x02\x03\x04", // 㗚
+ 0x35db: "\x02\x05\x01\x03\x01\x04\x03\x01\x04\x03\x01\x03\x04", // 㗛
+ 0x35dc: "\x02\x05\x01\x04\x01\x05\x05\x04\x02\x05\x01\x02\x01", // 㗜
+ 0x35dd: "\x02\x05\x01\x04\x03\x01\x01\x02\x01\x04\x04\x04\x04", // 㗝
+ 0x35de: "\x02\x05\x01\x01\x03\x02\x05\x01\x05\x03\x02\x05\x04", // 㗞
+ 0x35df: "\x04\x04\x01\x04\x01\x01\x02\x01\x02\x05\x01\x03\x05", // 㗟
+ 0x35e0: "\x05\x03\x01\x05\x04\x02\x05\x01\x02\x05\x01\x03\x05", // 㗠
+ 0x35e1: "\x01\x02\x02\x03\x02\x05\x03\x02\x05\x01\x03\x05", // 㗡
+ 0x35e2: "\x02\x05\x01\x03\x01\x02\x05\x01\x01\x02\x01\x01\x05\x03", // 㗢
+ 0x35e3: "\x02\x05\x01\x01\x02\x02\x01\x03\x05\x04\x05\x02\x05\x02", // 㗣
+ 0x35e4: "\x01\x03\x02\x01\x01\x02\x03\x04\x05\x03\x04\x02\x05\x01", // 㗤
+ 0x35e5: "\x02\x05\x01\x04\x01\x02\x05\x01\x05\x02\x01\x05\x02", // 㗥
+ 0x35e6: "\x02\x05\x01\x01\x02\x02\x01\x01\x01\x03\x05\x03\x05\x02", // 㗦
+ 0x35e7: "\x02\x05\x01\x04\x04\x05\x03\x04\x01\x05\x04\x01\x02\x01", // 㗧
+ 0x35e8: "\x01\x03\x01\x01\x03\x04\x05\x03\x05\x05\x04\x02\x05\x01", // 㗨
+ 0x35e9: "\x02\x05\x01\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01", // 㗩
+ 0x35ea: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x05\x05\x04\x02\x03\x04", // 㗪
+ 0x35eb: "\x02\x05\x01\x03\x05\x04\x04\x05\x04\x01\x01\x02\x03\x04", // 㗫
+ 0x35ec: "\x02\x04\x03\x04\x05\x02\x05\x01\x03\x05\x04\x03\x05\x04", // 㗬
+ 0x35ed: "\x02\x05\x01\x03\x04\x03\x01\x02\x03\x04\x04\x05\x04\x04", // 㗭
+ 0x35ee: "\x03\x05\x04\x02\x05\x01\x04\x01\x03\x05\x01\x01\x03\x04", // 㗮
+ 0x35ef: "\x01\x02\x01\x03\x02\x05\x01\x01\x02\x05\x01\x03\x05", // 㗯
+ 0x35f0: "\x02\x05\x01\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04", // 㗰
+ 0x35f1: "\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02\x03\x04", // 㗱
+ 0x35f2: "\x02\x05\x01\x05\x01\x01\x01\x02\x01\x02\x05\x01\x02\x01\x01", // 㗲
+ 0x35f3: "\x02\x05\x01\x03\x01\x04\x03\x01\x04\x03\x04\x01\x02\x05\x01", // 㗳
+ 0x35f4: "\x02\x05\x01\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x01\x01", // 㗴
+ 0x35f5: "\x02\x05\x01\x04\x03\x03\x04\x04\x03\x03\x04\x03\x05\x03\x04", // 㗵
+ 0x35f6: "\x02\x05\x01\x05\x04\x03\x03\x04\x05\x01\x05\x03\x05\x05\x04", // 㗶
+ 0x35f7: "\x02\x05\x01\x04\x04\x05\x01\x01\x02\x02\x01\x02\x05\x03\x04", // 㗷
+ 0x35f8: "\x02\x05\x01\x03\x03\x02\x03\x01\x01\x02\x05\x02\x01\x01\x02", // 㗸
+ 0x35f9: "\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x04\x05\x04\x04", // 㗹
+ 0x35fa: "\x02\x05\x01\x01\x01\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01", // 㗺
+ 0x35fb: "\x02\x05\x01\x02\x05\x05\x02\x05\x02\x05\x01\x04\x05\x04", // 㗻
+ 0x35fc: "\x02\x05\x01\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x02\x03\x04", // 㗼
+ 0x35fd: "\x05\x05\x03\x04\x05\x01\x01\x05\x04\x05\x02\x02\x05\x01", // 㗽
+ 0x35fe: "\x02\x05\x01\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x02\x03\x05", // 㗾
+ 0x35ff: "\x02\x05\x01\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x05\x01\x02", // 㗿
+ 0x3600: "\x02\x05\x01\x03\x02\x01\x05\x01\x01\x04\x03\x01\x02\x03\x04", // 㘀
+ 0x3601: "\x02\x05\x01\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 㘁
+ 0x3602: "\x02\x05\x01\x04\x03\x01\x05\x05\x04\x05\x05\x04\x04\x05\x04\x04", // 㘂
+ 0x3603: "\x02\x05\x01\x01\x02\x02\x01\x03\x02\x05\x01\x04\x05\x04\x04", // 㘃
+ 0x3604: "\x02\x05\x01\x01\x02\x03\x04\x02\x05\x02\x02\x01\x04\x01\x05\x03", // 㘄
+ 0x3605: "\x02\x05\x01\x03\x03\x02\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02", // 㘅
+ 0x3606: "\x02\x05\x01\x01\x02\x01\x02\x05\x01\x04\x05\x01\x05\x04\x01\x02\x01", // 㘆
+ 0x3607: "\x02\x05\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x01\x02\x03\x04", // 㘇
+ 0x3608: "\x02\x05\x01\x03\x05\x03\x01\x01\x03\x04\x05\x04\x05\x02\x01\x03\x04", // 㘈
+ 0x3609: "\x02\x05\x01\x03\x01\x04\x03\x01\x04\x05\x01\x01\x05\x04\x05\x02", // 㘉
+ 0x360a: "\x02\x05\x01\x01\x04\x05\x02\x04\x04\x04\x04\x04\x01\x01\x01\x02\x05\x01", // 㘊
+ 0x360b: "\x02\x05\x01\x01\x02\x05\x01\x02\x05\x05\x04\x02\x05\x01\x01\x01\x03\x04", // 㘋
+ 0x360c: "\x02\x05\x01\x02\x01\x05\x03\x01\x05\x01\x03\x05\x03\x03\x03\x04\x02\x02", // 㘌
+ 0x360d: "\x02\x05\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x01\x05\x03\x04", // 㘍
+ 0x360e: "\x02\x05\x01\x04\x02\x05\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 㘎
+ 0x360f: "\x04\x03\x01\x03\x02\x05\x01\x01\x01\x04\x05\x04\x02\x05\x01\x03\x05", // 㘏
+ 0x3610: "\x02\x05\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x03\x04\x03\x04", // 㘐
+ 0x3611: "\x02\x05\x01\x01\x02\x01\x01\x01\x02\x03\x04\x05\x01\x01\x02\x04\x01\x03\x04", // 㘑
+ 0x3612: "\x03\x01\x02\x03\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01\x02\x05\x01\x03\x05", // 㘒
+ 0x3613: "\x02\x05\x01\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 㘓
+ 0x3614: "\x02\x05\x01\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 㘔
+ 0x3615: "\x02\x05\x01\x01\x02\x02\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01", // 㘕
+ 0x3616: "\x02\x05\x01\x04\x01\x04\x03\x01\x03\x03\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 㘖
+ 0x3617: "\x02\x05\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 㘗
+ 0x3618: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x02\x05\x01", // 㘘
+ 0x3619: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x03\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 㘙
+ 0x361a: "\x02\x05\x01\x05\x01\x01\x02\x02\x05\x01\x01\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 㘚
+ 0x361b: "\x02\x05\x01\x03\x04\x01\x02\x05\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01\x01\x01", // 㘛
+ 0x361c: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x01", // 㘜
+ 0x361d: "\x02\x05\x05\x04\x01", // 㘝
+ 0x361e: "\x02\x05\x05\x03\x01", // 㘞
+ 0x361f: "\x02\x05\x01\x03\x02\x01", // 㘟
+ 0x3620: "\x02\x05\x04\x05\x04\x03\x04\x01", // 㘠
+ 0x3621: "\x02\x05\x02\x05\x01\x01\x02\x01", // 㘡
+ 0x3622: "\x02\x05\x02\x04\x03\x01\x03\x05\x01", // 㘢
+ 0x3623: "\x02\x05\x02\x05\x01\x02\x05\x01\x01\x01", // 㘣
+ 0x3624: "\x02\x05\x04\x04\x01\x03\x01\x02\x01\x05\x05\x02\x01\x02\x01", // 㘤
+ 0x3625: "\x02\x05\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02\x03\x05\x05\x04\x02\x03\x04\x01", // 㘥
+ 0x3626: "\x01\x02\x01\x05\x03", // 㘦
+ 0x3627: "\x01\x02\x01\x05\x04\x05\x02", // 㘧
+ 0x3628: "\x01\x02\x01\x02\x05\x03\x04", // 㘨
+ 0x3629: "\x01\x02\x01\x01\x05\x03\x05", // 㘩
+ 0x362a: "\x01\x02\x01\x03\x01\x01\x05", // 㘪
+ 0x362b: "\x01\x02\x01\x01\x01\x03\x02", // 㘫
+ 0x362c: "\x01\x02\x01\x03\x05\x05\x04", // 㘬
+ 0x362d: "\x01\x02\x01\x05\x05\x04\x05", // 㘭
+ 0x362e: "\x01\x02\x01\x05\x01\x03\x04", // 㘮
+ 0x362f: "\x01\x02\x01\x03\x01\x05\x03", // 㘯
+ 0x3630: "\x01\x02\x01\x04\x04\x01\x02", // 㘰
+ 0x3631: "\x01\x02\x01\x02\x05\x02\x01\x01", // 㘱
+ 0x3632: "\x01\x02\x01\x05\x01\x03\x03\x05", // 㘲
+ 0x3633: "\x02\x01\x01\x03\x05\x01\x02\x01", // 㘳
+ 0x3634: "\x02\x05\x01\x03\x04\x01\x02\x01", // 㘴
+ 0x3635: "\x01\x02\x01\x01\x03\x02\x05\x02", // 㘵
+ 0x3636: "\x03\x05\x04\x01\x05\x02\x01\x02\x01", // 㘶
+ 0x3637: "\x01\x02\x01\x01\x02\x02\x03\x04", // 㘷
+ 0x3638: "\x01\x03\x05\x04\x03\x05\x01\x02\x01", // 㘸
+ 0x3639: "\x02\x01\x02\x01\x03\x05\x01\x02\x01", // 㘹
+ 0x363a: "\x01\x02\x01\x03\x02\x01\x05\x03\x04", // 㘺
+ 0x363b: "\x01\x02\x01\x02\x05\x01\x03\x04\x01", // 㘻
+ 0x363c: "\x01\x02\x01\x01\x02\x01\x03\x01\x05", // 㘼
+ 0x363d: "\x01\x02\x01\x01\x02\x01\x05\x03\x04", // 㘽
+ 0x363e: "\x01\x02\x01\x04\x04\x05\x01\x01\x02", // 㘾
+ 0x363f: "\x01\x02\x01\x02\x05\x01\x01\x01\x02\x01", // 㘿
+ 0x3640: "\x01\x02\x01\x04\x04\x05\x03\x04\x03\x05", // 㙀
+ 0x3641: "\x01\x02\x01\x03\x01\x05\x05\x04\x01\x04", // 㙁
+ 0x3642: "\x01\x02\x01\x04\x03\x02\x05\x01\x03\x05", // 㙂
+ 0x3643: "\x01\x02\x01\x03\x02\x01\x02\x01\x03\x04", // 㙃
+ 0x3644: "\x01\x02\x01\x01\x05\x03\x05\x01\x02\x01", // 㙄
+ 0x3645: "\x01\x02\x01\x02\x05\x01\x01\x02\x03\x04", // 㙅
+ 0x3646: "\x01\x02\x01\x04\x04\x05\x01\x03\x05\x04", // 㙆
+ 0x3647: "\x01\x02\x01\x01\x03\x05\x03\x03\x04\x03\x04", // 㙇
+ 0x3648: "\x01\x02\x01\x02\x01\x05\x03\x01\x05\x03\x05", // 㙈
+ 0x3649: "\x01\x02\x01\x02\x05\x01\x02\x02\x01\x03\x04", // 㙉
+ 0x364a: "\x01\x02\x01\x01\x02\x01\x01\x01\x05\x03\x04", // 㙊
+ 0x364b: "\x01\x02\x01\x01\x02\x02\x01\x01\x01\x03\x04", // 㙋
+ 0x364c: "\x01\x02\x01\x05\x01\x01\x02\x03\x02\x03\x04", // 㙌
+ 0x364d: "\x01\x02\x01\x05\x04\x05\x04\x05\x04\x05\x04", // 㙍
+ 0x364e: "\x01\x02\x01\x01\x03\x01\x05\x03\x01\x05\x03\x04", // 㙎
+ 0x364f: "\x01\x02\x01\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 㙏
+ 0x3650: "\x01\x02\x01\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 㙐
+ 0x3651: "\x03\x02\x05\x01\x02\x05\x02\x01\x04\x01\x02\x01", // 㙑
+ 0x3652: "\x02\x05\x01\x02\x01\x05\x04\x05\x02\x01\x02\x01", // 㙒
+ 0x3653: "\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01", // 㙓
+ 0x3654: "\x01\x02\x01\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 㙔
+ 0x3655: "\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01", // 㙕
+ 0x3656: "\x01\x02\x01\x03\x02\x05\x01\x02\x05\x02\x01\x04", // 㙖
+ 0x3657: "\x01\x02\x01\x02\x05\x01\x02\x01\x01\x05\x03\x04", // 㙗
+ 0x3658: "\x01\x02\x01\x01\x02\x05\x02\x02\x01\x05\x03\x01", // 㙘
+ 0x3659: "\x04\x04\x01\x01\x03\x05\x03\x03\x03\x04\x01\x02\x01", // 㙙
+ 0x365a: "\x01\x02\x01\x04\x03\x01\x01\x02\x01\x03\x01\x01\x02", // 㙚
+ 0x365b: "\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 㙛
+ 0x365c: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x01\x02\x01", // 㙜
+ 0x365d: "\x01\x02\x01\x05\x03\x05\x03\x05\x03\x02\x05\x01\x01", // 㙝
+ 0x365e: "\x01\x02\x01\x03\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 㙞
+ 0x365f: "\x01\x02\x01\x04\x05\x01\x01\x05\x04\x03\x05\x01\x01", // 㙟
+ 0x3660: "\x01\x03\x01\x01\x03\x04\x05\x03\x05\x05\x04\x01\x02\x01", // 㙠
+ 0x3661: "\x01\x02\x01\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04", // 㙡
+ 0x3662: "\x01\x02\x01\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04", // 㙢
+ 0x3663: "\x01\x02\x01\x05\x01\x05\x01\x02\x01\x01\x01\x05\x03\x04", // 㙣
+ 0x3664: "\x01\x02\x01\x02\x01\x05\x03\x01\x05\x03\x04\x03\x01\x02", // 㙤
+ 0x3665: "\x01\x02\x01\x04\x01\x03\x04\x02\x05\x01\x03\x05\x03\x04", // 㙥
+ 0x3666: "\x03\x04\x01\x01\x02\x03\x04\x04\x04\x01\x02\x01\x02\x01", // 㙦
+ 0x3667: "\x01\x02\x01\x01\x02\x01\x05\x02\x05\x01\x02\x05\x01\x02\x01", // 㙧
+ 0x3668: "\x01\x02\x01\x05\x05\x04\x05\x05\x04\x01\x03\x04\x05\x03\x04", // 㙨
+ 0x3669: "\x01\x02\x01\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 㙩
+ 0x366a: "\x01\x02\x01\x01\x02\x01\x04\x05\x01\x02\x05\x01\x04\x03\x01", // 㙪
+ 0x366b: "\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02\x03\x04", // 㙫
+ 0x366c: "\x01\x03\x04\x03\x04\x02\x03\x04\x01\x03\x04\x04\x01\x02\x01", // 㙬
+ 0x366d: "\x01\x02\x01\x01\x03\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04", // 㙭
+ 0x366e: "\x01\x02\x01\x03\x01\x04\x03\x01\x04\x03\x04\x01\x02\x05\x01", // 㙮
+ 0x366f: "\x01\x02\x01\x03\x04\x01\x02\x01\x03\x05\x04\x01\x01\x05\x04", // 㙯
+ 0x3670: "\x03\x05\x03\x05\x01\x01\x02\x05\x03\x03\x01\x01\x02\x01\x02\x01", // 㙰
+ 0x3671: "\x02\x05\x01\x01\x05\x02\x01\x05\x03\x01\x05\x03\x05\x01\x02\x01", // 㙱
+ 0x3672: "\x01\x02\x01\x04\x01\x05\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 㙲
+ 0x3673: "\x01\x02\x01\x01\x03\x01\x02\x05\x01\x05\x03\x04\x04\x05\x04\x04", // 㙳
+ 0x3674: "\x01\x02\x01\x03\x05\x01\x03\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 㙴
+ 0x3675: "\x01\x02\x01\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x01\x02\x01", // 㙵
+ 0x3676: "\x04\x01\x02\x05\x01\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x01", // 㙶
+ 0x3677: "\x01\x02\x01\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x04\x04\x04\x04", // 㙷
+ 0x3678: "\x01\x02\x01\x03\x02\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 㙸
+ 0x3679: "\x01\x02\x01\x01\x02\x02\x02\x05\x02\x02\x01\x04\x05\x03\x05\x04", // 㙹
+ 0x367a: "\x01\x02\x01\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x05", // 㙺
+ 0x367b: "\x01\x02\x01\x04\x01\x03\x02\x05\x01\x01\x02\x01\x01\x03\x04\x01\x02\x01", // 㙻
+ 0x367c: "\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01", // 㙼
+ 0x367d: "\x01\x02\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x03\x04", // 㙽
+ 0x367e: "\x01\x02\x01\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x05\x02\x01", // 㙾
+ 0x367f: "\x01\x02\x01\x04\x03\x01\x01\x02\x01\x03\x01\x02\x03\x04\x05\x03\x05\x03\x04", // 㙿
+ 0x3680: "\x01\x02\x01\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x04\x03\x01\x01\x05\x03\x04", // 㚀
+ 0x3681: "\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 㚁
+ 0x3682: "\x01\x02\x01\x01\x02\x05\x01\x02\x04\x05\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 㚂
+ 0x3683: "\x01\x02\x01\x04\x05\x03\x04\x05\x02\x04\x03\x01", // 㚃
+ 0x3684: "\x01\x02\x01\x04\x05\x02\x05\x01\x02\x01\x05\x02\x01\x03\x04", // 㚄
+ 0x3685: "\x03\x05\x04\x01\x03\x01\x01\x02\x01", // 㚅
+ 0x3686: "\x04\x01\x02\x05\x01\x01\x03\x05\x04", // 㚆
+ 0x3687: "\x03\x04\x05\x02\x03\x04\x03\x05\x04", // 㚇
+ 0x3688: "\x03\x05\x04\x01\x02", // 㚈
+ 0x3689: "\x05\x03\x03\x05\x04\x03\x05\x04", // 㚉
+ 0x368a: "\x03\x05\x04\x03\x05\x04\x04\x01\x05\x03\x03\x04", // 㚊
+ 0x368b: "\x03\x05\x04\x03\x05\x04\x03\x05\x01\x02\x01\x02\x05\x01", // 㚋
+ 0x368c: "\x03\x05\x04\x03\x05\x04\x02\x05\x01\x01\x01\x02\x03\x04", // 㚌
+ 0x368d: "\x03\x05\x04\x03\x05\x04\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 㚍
+ 0x368e: "\x01\x03\x04\x05\x02", // 㚎
+ 0x368f: "\x01\x03\x04\x01\x03\x02", // 㚏
+ 0x3690: "\x01\x03\x04\x01\x03\x04", // 㚐
+ 0x3691: "\x05\x01\x01\x01\x03\x04", // 㚑
+ 0x3692: "\x01\x03\x04\x03\x04\x03\x04", // 㚒
+ 0x3693: "\x01\x03\x04\x01\x02\x03\x04", // 㚓
+ 0x3694: "\x01\x03\x04\x04\x03\x01\x01\x02", // 㚔
+ 0x3695: "\x01\x03\x04\x05\x01\x05\x03\x02", // 㚕
+ 0x3696: "\x03\x02\x05\x01\x01\x01\x03\x04", // 㚖
+ 0x3697: "\x01\x03\x04\x02\x05\x01\x01\x01", // 㚗
+ 0x3698: "\x01\x01\x03\x04\x01\x01\x03\x04", // 㚘
+ 0x3699: "\x05\x03\x02\x05\x01\x01\x03\x04", // 㚙
+ 0x369a: "\x01\x03\x04\x03\x05\x04\x02\x05\x01", // 㚚
+ 0x369b: "\x01\x03\x04\x03\x05\x02\x05\x01\x01", // 㚛
+ 0x369c: "\x01\x03\x04\x01\x02\x05\x01\x01\x05\x03\x04", // 㚜
+ 0x369d: "\x01\x03\x04\x03\x02\x01\x02\x01\x01\x02\x01", // 㚝
+ 0x369e: "\x01\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04", // 㚞
+ 0x369f: "\x03\x05\x02\x05\x01\x01\x05\x03\x05\x01\x03\x04", // 㚟
+ 0x36a0: "\x01\x03\x04\x04\x03\x01\x01\x02\x01\x04\x04\x04\x04", // 㚠
+ 0x36a1: "\x01\x03\x04\x01\x02\x05\x01\x02\x01\x03\x04\x01\x02\x05\x01\x02", // 㚡
+ 0x36a2: "\x03\x04\x05\x03\x01", // 㚢
+ 0x36a3: "\x05\x03\x01\x05\x03\x01", // 㚣
+ 0x36a4: "\x05\x03\x01\x01\x05\x04", // 㚤
+ 0x36a5: "\x05\x03\x01\x01\x01\x02", // 㚥
+ 0x36a6: "\x05\x03\x01\x01\x03\x02", // 㚦
+ 0x36a7: "\x05\x03\x01\x04\x01\x03", // 㚧
+ 0x36a8: "\x05\x03\x01\x05\x01\x02", // 㚨
+ 0x36a9: "\x05\x03\x01\x02\x05\x01\x01", // 㚩
+ 0x36aa: "\x05\x03\x01\x03\x01\x01\x05", // 㚪
+ 0x36ab: "\x05\x03\x01\x03\x05\x04", // 㚫
+ 0x36ac: "\x05\x03\x01\x03\x05\x04\x01", // 㚬
+ 0x36ad: "\x05\x03\x01\x01\x03\x05\x04", // 㚭
+ 0x36ae: "\x05\x03\x01\x04\x05\x03\x05", // 㚮
+ 0x36af: "\x05\x03\x01\x03\x05\x03\x04", // 㚯
+ 0x36b0: "\x05\x03\x01\x01\x03\x02\x04\x01", // 㚰
+ 0x36b1: "\x05\x03\x01\x03\x02\x01\x02\x01", // 㚱
+ 0x36b2: "\x05\x03\x01\x02\x01\x02\x05\x01", // 㚲
+ 0x36b3: "\x05\x03\x01\x05\x03\x02\x05\x01", // 㚳
+ 0x36b4: "\x05\x03\x01\x01\x03\x02\x05\x02", // 㚴
+ 0x36b5: "\x05\x03\x01\x03\x05\x04\x04\x04", // 㚵
+ 0x36b6: "\x05\x03\x01\x02\x05\x01\x05\x01", // 㚶
+ 0x36b7: "\x05\x03\x01\x03\x04\x02\x03\x04", // 㚷
+ 0x36b8: "\x05\x03\x01\x05\x01\x02\x05\x01", // 㚸
+ 0x36b9: "\x05\x03\x01\x03\x05\x03\x05\x02", // 㚹
+ 0x36ba: "\x05\x03\x01\x05\x03\x05\x02\x01", // 㚺
+ 0x36bb: "\x02\x05\x01\x02\x01\x05\x03\x01", // 㚻
+ 0x36bc: "\x05\x03\x01\x02\x05\x01\x02\x01", // 㚼
+ 0x36bd: "\x01\x02\x01\x01\x05\x05\x03\x01", // 㚽
+ 0x36be: "\x05\x03\x01\x02\x05\x01\x03\x05", // 㚾
+ 0x36bf: "\x05\x03\x01\x03\x05\x05\x01\x05", // 㚿
+ 0x36c0: "\x05\x03\x01\x03\x05\x05\x01\x01", // 㛀
+ 0x36c1: "\x05\x03\x01\x01\x04\x03\x01\x02", // 㛁
+ 0x36c2: "\x05\x03\x01\x03\x03\x05\x02\x01\x05", // 㛂
+ 0x36c3: "\x01\x01\x02\x01\x05\x03\x05\x03\x01", // 㛃
+ 0x36c4: "\x05\x03\x01\x04\x01\x03\x05\x03\x04", // 㛄
+ 0x36c5: "\x05\x03\x01\x01\x02\x02\x01\x01\x01", // 㛅
+ 0x36c6: "\x05\x03\x01\x05\x03\x01\x02\x03\x04", // 㛆
+ 0x36c7: "\x05\x03\x01\x04\x01\x03\x01\x02\x01", // 㛇
+ 0x36c8: "\x05\x03\x01\x01\x02\x01\x03\x01\x05", // 㛈
+ 0x36c9: "\x05\x03\x01\x01\x02\x05\x03\x05\x01", // 㛉
+ 0x36ca: "\x05\x03\x01\x03\x05\x01\x02\x03\x04", // 㛊
+ 0x36cb: "\x05\x03\x01\x03\x04\x02\x04\x04\x04", // 㛋
+ 0x36cc: "\x05\x03\x01\x05\x04\x03\x01\x01\x02", // 㛌
+ 0x36cd: "\x05\x03\x01\x01\x03\x04\x03\x04\x03\x04", // 㛍
+ 0x36ce: "\x05\x03\x01\x02\x05\x01\x02\x05\x01", // 㛎
+ 0x36cf: "\x05\x03\x01\x01\x02\x04\x03\x03\x04\x04", // 㛏
+ 0x36d0: "\x05\x03\x01\x01\x02\x05\x01\x01\x03\x04", // 㛐
+ 0x36d1: "\x02\x01\x03\x05\x04\x05\x04\x05\x03\x01", // 㛑
+ 0x36d2: "\x05\x03\x01\x01\x02\x05\x01\x04\x03\x01", // 㛒
+ 0x36d3: "\x05\x03\x01\x03\x04\x01\x03\x02\x05\x02", // 㛓
+ 0x36d4: "\x05\x03\x01\x03\x05\x04\x01\x01\x01\x02", // 㛔
+ 0x36d5: "\x05\x03\x01\x02\x05\x01\x05\x02\x01\x05", // 㛕
+ 0x36d6: "\x05\x03\x01\x05\x04\x03\x04\x03\x05\x04", // 㛖
+ 0x36d7: "\x05\x03\x01\x03\x04\x03\x04\x01\x02\x01", // 㛗
+ 0x36d8: "\x05\x03\x01\x01\x02\x04\x05\x05\x02\x01", // 㛘
+ 0x36d9: "\x05\x03\x01\x04\x01\x04\x03\x01\x01\x02", // 㛙
+ 0x36da: "\x05\x03\x01\x05\x04\x02\x05\x01\x01\x02", // 㛚
+ 0x36db: "\x05\x03\x01\x03\x02\x05\x01\x01\x01\x03", // 㛛
+ 0x36dc: "\x03\x02\x02\x03\x01\x03\x04\x05\x03\x01", // 㛜
+ 0x36dd: "\x05\x03\x01\x02\x05\x01\x01\x01\x03\x04", // 㛝
+ 0x36de: "\x05\x03\x01\x01\x01\x02\x01\x01\x03\x02", // 㛞
+ 0x36df: "\x05\x03\x01\x03\x05\x02\x05\x01\x03\x04", // 㛟
+ 0x36e0: "\x05\x03\x01\x04\x02\x05\x02\x05\x01\x01", // 㛠
+ 0x36e1: "\x05\x03\x01\x04\x04\x05\x01\x01\x03\x05", // 㛡
+ 0x36e2: "\x05\x03\x01\x03\x01\x02\x03\x04\x05\x03", // 㛢
+ 0x36e3: "\x05\x03\x01\x02\x05\x01\x02\x05\x03\x04", // 㛣
+ 0x36e4: "\x05\x03\x01\x01\x02\x05\x04\x02\x05\x04", // 㛤
+ 0x36e5: "\x05\x03\x01\x02\x05\x03\x04\x02\x05\x01\x01", // 㛥
+ 0x36e6: "\x05\x03\x01\x01\x02\x03\x04\x01\x02\x03\x04", // 㛦
+ 0x36e7: "\x05\x03\x01\x02\x05\x02\x01\x03\x02\x05\x01", // 㛧
+ 0x36e8: "\x05\x03\x01\x04\x03\x01\x01\x01\x03\x05", // 㛨
+ 0x36e9: "\x05\x03\x01\x04\x01\x05\x04\x02\x05\x01\x01", // 㛩
+ 0x36ea: "\x05\x03\x01\x01\x03\x04\x02\x05\x01\x01\x05", // 㛪
+ 0x36eb: "\x05\x03\x01\x02\x05\x01\x01\x03\x05\x03\x03", // 㛫
+ 0x36ec: "\x05\x03\x01\x01\x02\x01\x03\x04\x01\x02\x01", // 㛬
+ 0x36ed: "\x05\x03\x01\x01\x02\x02\x01\x02\x05\x01\x01", // 㛭
+ 0x36ee: "\x05\x03\x01\x04\x04\x05\x04\x03\x03\x04\x05\x04", // 㛮
+ 0x36ef: "\x05\x03\x01\x03\x05\x02\x05\x01\x03\x05\x05\x03", // 㛯
+ 0x36f0: "\x05\x03\x01\x05\x01\x05\x01\x05\x02\x05\x01\x01", // 㛰
+ 0x36f1: "\x05\x03\x01\x02\x05\x01\x02\x01\x01\x05\x03\x04", // 㛱
+ 0x36f2: "\x05\x03\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 㛲
+ 0x36f3: "\x04\x01\x04\x03\x04\x05\x02\x05\x02\x05\x03\x01", // 㛳
+ 0x36f4: "\x05\x03\x01\x05\x05\x05\x03\x02\x05\x03\x04\x01", // 㛴
+ 0x36f5: "\x05\x03\x01\x03\x04\x04\x03\x02\x05\x02\x01\x01", // 㛵
+ 0x36f6: "\x05\x03\x01\x02\x05\x02\x01\x03\x04\x03\x03\x04", // 㛶
+ 0x36f7: "\x03\x01\x02\x03\x04\x01\x03\x05\x04\x05\x03\x01", // 㛷
+ 0x36f8: "\x05\x03\x01\x01\x02\x01\x02\x05\x01\x04\x03\x01", // 㛸
+ 0x36f9: "\x05\x03\x01\x03\x02\x01\x02\x05\x01\x01\x03\x04", // 㛹
+ 0x36fa: "\x05\x03\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 㛺
+ 0x36fb: "\x05\x03\x01\x01\x03\x04\x01\x02\x01\x01\x02\x01", // 㛻
+ 0x36fc: "\x05\x03\x01\x03\x01\x02\x03\x02\x01\x05\x01\x01", // 㛼
+ 0x36fd: "\x05\x03\x01\x04\x04\x05\x04\x03\x01\x02\x03\x04", // 㛽
+ 0x36fe: "\x05\x03\x01\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 㛾
+ 0x36ff: "\x05\x03\x01\x01\x02\x02\x02\x04\x05\x02\x05\x02", // 㛿
+ 0x3700: "\x05\x03\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 㜀
+ 0x3701: "\x05\x03\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 㜁
+ 0x3702: "\x01\x02\x01\x01\x02\x01\x01\x02\x04\x05\x03\x01", // 㜂
+ 0x3703: "\x05\x03\x01\x03\x02\x04\x01\x01\x01\x02\x05\x01", // 㜃
+ 0x3704: "\x05\x03\x01\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 㜄
+ 0x3705: "\x05\x03\x01\x04\x01\x05\x05\x04\x02\x05\x01\x02\x01", // 㜅
+ 0x3706: "\x05\x03\x01\x04\x03\x01\x02\x03\x04\x04\x05\x04", // 㜆
+ 0x3707: "\x05\x03\x01\x01\x02\x01\x01\x02\x01\x04\x05\x04\x04", // 㜇
+ 0x3708: "\x05\x04\x05\x02\x03\x03\x05\x04\x05\x03\x05\x03\x01", // 㜈
+ 0x3709: "\x05\x03\x01\x05\x05\x05\x02\x05\x01\x05\x02\x01\x05", // 㜉
+ 0x370a: "\x05\x03\x01\x05\x01\x03\x01\x02\x02\x01\x05\x03\x04", // 㜊
+ 0x370b: "\x05\x03\x01\x04\x03\x01\x03\x04\x02\x05\x02\x02\x01", // 㜋
+ 0x370c: "\x01\x02\x01\x04\x05\x01\x05\x03\x01\x03\x05\x05\x04", // 㜌
+ 0x370d: "\x05\x03\x01\x04\x01\x03\x05\x01\x01\x02\x02\x05\x01", // 㜍
+ 0x370e: "\x05\x03\x01\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04", // 㜎
+ 0x370f: "\x05\x03\x01\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 㜏
+ 0x3710: "\x05\x03\x01\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 㜐
+ 0x3711: "\x04\x04\x01\x01\x02\x05\x01\x01\x02\x04\x05\x03\x01", // 㜑
+ 0x3712: "\x05\x03\x01\x03\x02\x01\x05\x01\x01\x01\x03\x02", // 㜒
+ 0x3713: "\x05\x03\x01\x01\x02\x02\x03\x04\x01\x02\x05\x01", // 㜓
+ 0x3714: "\x05\x03\x01\x04\x01\x04\x03\x01\x02\x05\x01\x03\x05", // 㜔
+ 0x3715: "\x05\x03\x01\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 㜕
+ 0x3716: "\x05\x03\x01\x01\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01", // 㜖
+ 0x3717: "\x05\x03\x01\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 㜗
+ 0x3718: "\x05\x03\x01\x02\x01\x05\x03\x01\x05\x02\x05\x01\x01\x01", // 㜘
+ 0x3719: "\x05\x03\x01\x04\x01\x03\x05\x02\x02\x01\x05\x03\x05", // 㜙
+ 0x371a: "\x05\x03\x01\x04\x04\x05\x03\x02\x01\x03\x02\x05\x01\x01", // 㜚
+ 0x371b: "\x05\x03\x01\x01\x02\x05\x01\x01\x01\x02\x03\x05\x03\x04", // 㜛
+ 0x371c: "\x05\x03\x01\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04", // 㜜
+ 0x371d: "\x05\x03\x01\x03\x04\x04\x05\x01\x02\x05\x03\x05\x01\x01", // 㜝
+ 0x371e: "\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02\x05\x03\x01", // 㜞
+ 0x371f: "\x05\x03\x01\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 㜟
+ 0x3720: "\x05\x03\x01\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 㜠
+ 0x3721: "\x05\x03\x01\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04", // 㜡
+ 0x3722: "\x05\x03\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 㜢
+ 0x3723: "\x05\x03\x01\x03\x05\x04\x04\x01\x03\x04\x04\x04\x04\x04\x04", // 㜣
+ 0x3724: "\x05\x03\x01\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 㜤
+ 0x3725: "\x05\x03\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 㜥
+ 0x3726: "\x05\x03\x01\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04", // 㜦
+ 0x3727: "\x05\x03\x01\x01\x03\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04", // 㜧
+ 0x3728: "\x05\x03\x01\x05\x01\x03\x02\x04\x01\x03\x04\x03\x01\x01\x02", // 㜨
+ 0x3729: "\x05\x03\x01\x03\x02\x05\x04\x03\x01\x02\x03\x04\x01\x03\x04", // 㜩
+ 0x372a: "\x04\x01\x04\x03\x01\x01\x02\x03\x04\x03\x03\x01\x02\x05\x03\x01", // 㜪
+ 0x372b: "\x05\x03\x01\x03\x03\x02\x02\x05\x02\x01\x03\x05\x03\x01\x03\x04", // 㜫
+ 0x372c: "\x05\x03\x01\x03\x05\x01\x03\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 㜬
+ 0x372d: "\x05\x03\x01\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x01\x02\x01", // 㜭
+ 0x372e: "\x05\x03\x01\x01\x02\x05\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01", // 㜮
+ 0x372f: "\x05\x03\x01\x01\x02\x02\x05\x01\x02\x05\x05\x01\x05\x04\x04\x04\x04", // 㜯
+ 0x3730: "\x05\x03\x01\x03\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x03\x04", // 㜰
+ 0x3731: "\x05\x03\x01\x03\x03\x01\x02\x03\x03\x01\x02\x02\x05\x01\x01\x01\x03\x04", // 㜱
+ 0x3732: "\x05\x03\x01\x04\x01\x05\x02\x05\x01\x03\x05\x01\x01\x05\x03\x01\x03\x05\x04", // 㜲
+ 0x3733: "\x05\x03\x01\x04\x01\x02\x05\x02\x02\x01\x02\x04\x01\x03\x04\x03\x05\x03\x04", // 㜳
+ 0x3734: "\x05\x03\x01\x01\x02\x02\x02\x05\x02\x02\x01\x04\x05\x02\x05\x01\x01\x01", // 㜴
+ 0x3735: "\x05\x03\x01\x04\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05\x03\x04", // 㜵
+ 0x3736: "\x05\x03\x01\x03\x05\x02\x05\x01\x01\x05\x03\x05\x03\x05\x02\x05\x01\x03\x05\x04", // 㜶
+ 0x3737: "\x05\x01\x05\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04\x05\x03\x01", // 㜷
+ 0x3738: "\x01\x02\x02\x03\x02\x05\x01\x05\x01\x04\x01\x04\x03\x01\x01\x02\x05\x03\x01", // 㜸
+ 0x3739: "\x05\x03\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 㜹
+ 0x373a: "\x05\x03\x01\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 㜺
+ 0x373b: "\x05\x03\x01\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x04\x05\x04\x04", // 㜻
+ 0x373c: "\x05\x03\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x04\x05\x02\x05\x01\x01\x01", // 㜼
+ 0x373d: "\x05\x05\x05\x05\x02\x01", // 㜽
+ 0x373e: "\x05\x02\x01\x03\x04\x03\x02", // 㜾
+ 0x373f: "\x05\x02\x01\x05\x04\x05\x02", // 㜿
+ 0x3740: "\x05\x05\x04\x01\x04\x05\x02\x01", // 㝀
+ 0x3741: "\x03\x05\x02\x05\x01\x01\x05\x02\x01", // 㝁
+ 0x3742: "\x05\x02\x01\x01\x02\x01\x03\x03\x01\x02", // 㝂
+ 0x3743: "\x05\x02\x01\x03\x05\x02\x05\x01\x03\x05", // 㝃
+ 0x3744: "\x04\x01\x02\x05\x01\x05\x02\x01\x01\x05\x02\x05", // 㝄
+ 0x3745: "\x01\x02\x01\x04\x05\x01\x05\x02\x01\x03\x05\x05\x04", // 㝅
+ 0x3746: "\x05\x02\x01\x01\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01", // 㝆
+ 0x3747: "\x04\x01\x02\x05\x01\x05\x02\x01\x04\x01\x02\x05\x01\x05\x02\x01", // 㝇
+ 0x3748: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x05\x02\x01\x05\x02\x01", // 㝈
+ 0x3749: "\x04\x04\x05\x01", // 㝉
+ 0x374a: "\x04\x04\x05\x05\x04", // 㝊
+ 0x374b: "\x04\x04\x05\x05\x02", // 㝋
+ 0x374c: "\x04\x04\x05\x03\x05\x04", // 㝌
+ 0x374d: "\x04\x04\x05\x01\x05\x01", // 㝍
+ 0x374e: "\x04\x04\x05\x04\x05\x04", // 㝎
+ 0x374f: "\x04\x04\x05\x03\x04\x03\x02", // 㝏
+ 0x3750: "\x04\x04\x05\x03\x05\x05\x04", // 㝐
+ 0x3751: "\x04\x04\x05\x04\x01\x05\x03", // 㝑
+ 0x3752: "\x04\x04\x05\x01\x02\x02\x05\x01", // 㝒
+ 0x3753: "\x04\x04\x05\x03\x04\x01\x02\x05\x01", // 㝓
+ 0x3754: "\x04\x04\x05\x04\x01\x03\x04\x03\x04", // 㝔
+ 0x3755: "\x04\x04\x05\x04\x05\x04\x04\x05\x04", // 㝕
+ 0x3756: "\x04\x04\x05\x03\x05\x04\x03\x05\x04", // 㝖
+ 0x3757: "\x04\x04\x05\x04\x05\x01\x01\x05\x03\x04", // 㝗
+ 0x3758: "\x04\x04\x05\x04\x01\x01\x01\x02\x05\x01", // 㝘
+ 0x3759: "\x04\x04\x05\x01\x01\x02\x01\x01\x03\x04", // 㝙
+ 0x375a: "\x04\x04\x05\x03\x02\x01\x02\x01\x05\x04", // 㝚
+ 0x375b: "\x04\x04\x05\x03\x02\x01\x02\x05\x03\x04\x01", // 㝛
+ 0x375c: "\x04\x04\x05\x01\x02\x02\x01\x02\x05\x01\x01", // 㝜
+ 0x375d: "\x04\x04\x05\x01\x02\x03\x04\x01\x02\x03\x04", // 㝝
+ 0x375e: "\x04\x04\x05\x01\x02\x01\x05\x05\x01\x02\x01", // 㝞
+ 0x375f: "\x04\x04\x05\x01\x02\x05\x01\x01\x01\x03\x05", // 㝟
+ 0x3760: "\x04\x04\x05\x02\x05\x01\x01\x04\x01\x03\x04", // 㝠
+ 0x3761: "\x04\x04\x05\x01\x02\x02\x01\x01\x01\x05\x04", // 㝡
+ 0x3762: "\x04\x04\x05\x03\x02\x05\x01\x02\x05\x02\x01\x04", // 㝢
+ 0x3763: "\x04\x04\x05\x01\x01\x01\x02\x05\x03\x01\x03\x04", // 㝣
+ 0x3764: "\x04\x04\x05\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01", // 㝤
+ 0x3765: "\x04\x04\x05\x05\x02\x01\x03\x04\x03\x01\x02\x03\x04", // 㝥
+ 0x3766: "\x04\x04\x05\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03", // 㝦
+ 0x3767: "\x04\x04\x05\x05\x03\x01\x03\x04\x03\x04\x01\x02\x01", // 㝧
+ 0x3768: "\x04\x04\x05\x01\x02\x01\x02\x05\x01\x03\x05\x03\x04", // 㝨
+ 0x3769: "\x04\x04\x05\x04\x01\x03\x05\x01\x01\x02\x04\x01\x03\x04", // 㝩
+ 0x376a: "\x04\x04\x05\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04", // 㝪
+ 0x376b: "\x04\x04\x05\x05\x02\x03\x05\x04\x01\x03\x01\x01\x02\x01", // 㝫
+ 0x376c: "\x04\x04\x05\x01\x01\x01\x02\x02\x05\x01\x01\x01\x03\x04", // 㝬
+ 0x376d: "\x04\x04\x05\x04\x04\x02\x02\x05\x01\x01\x03\x01\x01\x02\x01", // 㝭
+ 0x376e: "\x04\x04\x05\x05\x02\x02\x05\x02\x01\x01\x02\x03\x04\x05\x04", // 㝮
+ 0x376f: "\x04\x04\x05\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 㝯
+ 0x3770: "\x04\x04\x05\x03\x02\x05\x01\x01\x01\x04\x04\x05\x03\x04\x04\x01\x05\x03", // 㝰
+ 0x3771: "\x04\x04\x05\x05\x02\x01\x03\x01\x02\x02\x02\x05\x02\x02\x01\x04\x05\x03\x05\x04", // 㝱
+ 0x3772: "\x04\x04\x05\x05\x02\x01\x03\x01\x02\x02\x02\x05\x02\x02\x01\x04\x05\x05\x01\x01\x04\x05\x02\x05\x02", // 㝲
+ 0x3773: "\x01\x02\x04\x04\x04\x04", // 㝳
+ 0x3774: "\x01\x01\x03\x05\x01\x02\x04", // 㝴
+ 0x3775: "\x02\x05\x01\x01\x01\x01\x02\x04", // 㝵
+ 0x3776: "\x02\x05\x02\x02\x01\x03\x05\x01\x02\x04", // 㝶
+ 0x3777: "\x05\x01\x01\x01\x02\x01\x03\x05\x04\x01\x02\x04", // 㝷
+ 0x3778: "\x02\x03\x04\x03\x02\x05\x01\x01\x03\x05", // 㝸
+ 0x3779: "\x02\x03\x04\x03\x03\x05\x02\x05\x01\x03\x05\x04", // 㝹
+ 0x377a: "\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04\x02\x03\x04\x03", // 㝺
+ 0x377b: "\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01\x02\x03\x04\x03", // 㝻
+ 0x377c: "\x01\x03\x05\x01\x01\x02", // 㝼
+ 0x377d: "\x01\x03\x05\x02\x05\x03\x04", // 㝽
+ 0x377e: "\x01\x03\x05\x01\x03\x01\x02\x01", // 㝾
+ 0x377f: "\x01\x03\x05\x05\x03\x02\x05\x04", // 㝿
+ 0x3780: "\x01\x03\x05\x01\x03\x04\x03\x03\x04", // 㞀
+ 0x3781: "\x01\x03\x05\x02\x05\x01\x01\x03\x05", // 㞁
+ 0x3782: "\x01\x03\x05\x03\x04\x04\x03\x05\x03\x01", // 㞂
+ 0x3783: "\x03\x04\x03\x04\x02\x05\x01\x01\x03\x05\x04", // 㞃
+ 0x3784: "\x01\x03\x05\x01\x03\x04\x02\x05\x01\x01\x05", // 㞄
+ 0x3785: "\x01\x03\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 㞅
+ 0x3786: "\x01\x03\x04\x01\x03\x04\x01\x02\x05\x01\x02", // 㞆
+ 0x3787: "\x01\x03\x04\x02\x05\x01\x02\x01\x01\x05\x03\x04", // 㞇
+ 0x3788: "\x01\x03\x04\x04\x05\x01\x03\x02\x05\x01\x02\x02", // 㞈
+ 0x3789: "\x01\x03\x04\x04\x03\x01\x01\x01\x03\x01\x02\x01", // 㞉
+ 0x378a: "\x05\x02\x02\x05\x02\x01\x01\x02\x03\x04\x01\x03\x05", // 㞊
+ 0x378b: "\x05\x01\x03\x05\x04", // 㞋
+ 0x378c: "\x05\x01\x03\x05\x02\x01", // 㞌
+ 0x378d: "\x05\x01\x03\x03\x05\x04", // 㞍
+ 0x378e: "\x05\x01\x03\x05\x02\x01\x05", // 㞎
+ 0x378f: "\x05\x01\x03\x03\x04\x05\x04", // 㞏
+ 0x3790: "\x05\x01\x03\x04\x01\x04\x03\x01", // 㞐
+ 0x3791: "\x05\x01\x03\x01\x01\x05\x01\x01", // 㞑
+ 0x3792: "\x05\x01\x03\x03\x02\x05\x01\x01\x01", // 㞒
+ 0x3793: "\x05\x01\x03\x03\x05\x02\x05\x01\x01", // 㞓
+ 0x3794: "\x05\x01\x03\x03\x05\x04\x03\x05\x04", // 㞔
+ 0x3795: "\x05\x01\x03\x03\x04\x02\x05\x01\x01", // 㞕
+ 0x3796: "\x05\x01\x03\x01\x02\x05\x02\x03\x04", // 㞖
+ 0x3797: "\x05\x01\x03\x01\x02\x04\x01\x03\x04\x04", // 㞗
+ 0x3798: "\x05\x01\x03\x01\x03\x05\x03\x03\x04\x03\x04", // 㞘
+ 0x3799: "\x05\x01\x03\x03\x01\x01\x05\x02\x05\x03\x04", // 㞙
+ 0x379a: "\x05\x01\x03\x03\x01\x02\x03\x02\x01\x05\x01\x01", // 㞚
+ 0x379b: "\x05\x01\x03\x03\x03\x02\x03\x05\x02\x05\x01\x01", // 㞛
+ 0x379c: "\x05\x01\x03\x03\x03\x02\x03\x01\x02\x03\x04\x05\x03\x01", // 㞜
+ 0x379d: "\x01\x03\x02\x01\x01\x02\x03\x04\x05\x03\x04\x05\x01\x03", // 㞝
+ 0x379e: "\x05\x01\x03\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04", // 㞞
+ 0x379f: "\x05\x01\x03\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x03\x04", // 㞟
+ 0x37a0: "\x05\x01\x03\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 㞠
+ 0x37a1: "\x05\x01\x03\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01\x03\x05\x03\x04", // 㞡
+ 0x37a2: "\x05\x02\x02\x01", // 㞢
+ 0x37a3: "\x05\x02\x02\x03\x04\x05\x03", // 㞣
+ 0x37a4: "\x02\x05\x02\x03\x04", // 㞤
+ 0x37a5: "\x02\x05\x02\x03\x04", // 㞥
+ 0x37a6: "\x02\x05\x02\x03\x05", // 㞦
+ 0x37a7: "\x02\x05\x02\x05\x03", // 㞧
+ 0x37a8: "\x02\x05\x02\x05\x02\x01", // 㞨
+ 0x37a9: "\x02\x05\x02\x03\x05\x04", // 㞩
+ 0x37aa: "\x05\x01\x01\x02\x05\x02", // 㞪
+ 0x37ab: "\x02\x05\x02\x04\x05\x04", // 㞫
+ 0x37ac: "\x02\x05\x02\x01\x02\x01", // 㞬
+ 0x37ad: "\x01\x03\x04\x02\x05\x02", // 㞭
+ 0x37ae: "\x02\x05\x02\x03\x05\x04", // 㞮
+ 0x37af: "\x05\x01\x05\x02\x05\x02", // 㞯
+ 0x37b0: "\x02\x05\x02\x03\x01\x01\x02", // 㞰
+ 0x37b1: "\x02\x05\x02\x02\x05\x01\x01", // 㞱
+ 0x37b2: "\x02\x05\x02\x02\x05\x01\x02", // 㞲
+ 0x37b3: "\x02\x05\x02\x04\x04\x01\x02", // 㞳
+ 0x37b4: "\x02\x05\x02\x03\x05\x01\x05", // 㞴
+ 0x37b5: "\x02\x05\x02\x04\x01\x03\x04", // 㞵
+ 0x37b6: "\x02\x05\x02\x04\x01\x03\x04", // 㞶
+ 0x37b7: "\x05\x02\x02\x01\x01\x02\x01", // 㞷
+ 0x37b8: "\x02\x05\x02\x01\x03\x02\x04", // 㞸
+ 0x37b9: "\x02\x05\x02\x01\x02\x05\x01\x02", // 㞹
+ 0x37ba: "\x02\x05\x02\x03\x01\x01\x03\x04", // 㞺
+ 0x37bb: "\x02\x05\x02\x02\x05\x01\x01\x05", // 㞻
+ 0x37bc: "\x05\x02\x05\x03\x04\x02\x05\x02", // 㞼
+ 0x37bd: "\x02\x05\x02\x01\x05\x05\x03\x04", // 㞽
+ 0x37be: "\x02\x05\x02\x05\x01\x03\x03\x05", // 㞾
+ 0x37bf: "\x02\x05\x02\x01\x02\x01\x03\x04", // 㞿
+ 0x37c0: "\x03\x01\x02\x03\x04\x02\x05\x02", // 㟀
+ 0x37c1: "\x02\x05\x02\x01\x03\x01\x01\x02", // 㟁
+ 0x37c2: "\x02\x05\x02\x05\x05\x04\x01\x04", // 㟂
+ 0x37c3: "\x02\x05\x02\x05\x01\x02\x05\x01", // 㟃
+ 0x37c4: "\x02\x05\x02\x04\x03\x01\x01\x01\x02", // 㟄
+ 0x37c5: "\x02\x05\x02\x03\x04\x05\x02\x03\x05", // 㟅
+ 0x37c6: "\x02\x05\x02\x03\x02\x03\x05\x01\x02", // 㟆
+ 0x37c7: "\x02\x05\x02\x03\x04\x03\x04\x01\x02\x01", // 㟇
+ 0x37c8: "\x02\x05\x02\x01\x02\x04\x01\x03\x04\x04", // 㟈
+ 0x37c9: "\x02\x05\x02\x04\x04\x05\x03\x01\x01\x02", // 㟉
+ 0x37ca: "\x02\x05\x02\x03\x04\x04\x03\x05\x02\x01", // 㟊
+ 0x37cb: "\x02\x05\x02\x04\x03\x02\x05\x01\x03\x05", // 㟋
+ 0x37cc: "\x02\x05\x02\x01\x03\x05\x03\x03\x03\x04", // 㟌
+ 0x37cd: "\x02\x05\x02\x04\x05\x01\x01\x05\x03\x04", // 㟍
+ 0x37ce: "\x02\x05\x02\x03\x04\x04\x03\x05\x03\x01", // 㟎
+ 0x37cf: "\x02\x05\x02\x03\x04\x04\x05\x02\x05\x01", // 㟏
+ 0x37d0: "\x02\x05\x02\x01\x02\x02\x04\x01\x05", // 㟐
+ 0x37d1: "\x02\x05\x02\x01\x02\x04\x05\x05\x02\x01", // 㟑
+ 0x37d2: "\x02\x05\x02\x05\x01\x01\x03\x02\x05\x01", // 㟒
+ 0x37d3: "\x02\x05\x02\x03\x04\x01\x03\x02\x05\x02", // 㟓
+ 0x37d4: "\x02\x05\x02\x03\x04\x04\x05\x02\x05\x01", // 㟔
+ 0x37d5: "\x02\x05\x02\x02\x05\x01\x04\x04\x01\x02", // 㟕
+ 0x37d6: "\x02\x05\x02\x01\x01\x02\x01\x01\x03\x02", // 㟖
+ 0x37d7: "\x02\x03\x04\x05\x03\x03\x04\x05\x03\x05\x02", // 㟗
+ 0x37d8: "\x02\x05\x02\x03\x05\x01\x02\x01\x02\x05\x01", // 㟘
+ 0x37d9: "\x02\x05\x02\x01\x02\x02\x01\x02\x05\x01\x01", // 㟙
+ 0x37da: "\x01\x02\x03\x04\x01\x02\x05\x04\x02\x05\x02", // 㟚
+ 0x37db: "\x02\x05\x02\x01\x02\x01\x01\x02\x02\x01\x01", // 㟛
+ 0x37dc: "\x02\x05\x02\x05\x01\x05\x03\x05\x02\x03\x04", // 㟜
+ 0x37dd: "\x02\x05\x02\x04\x01\x04\x03\x01\x02\x05\x01", // 㟝
+ 0x37de: "\x02\x05\x02\x01\x05\x03\x04\x01\x05\x03\x04", // 㟞
+ 0x37df: "\x02\x05\x02\x01\x02\x02\x01\x03\x04\x05\x05", // 㟟
+ 0x37e0: "\x02\x05\x02\x02\x05\x04\x03\x01\x02\x05\x02", // 㟠
+ 0x37e1: "\x02\x05\x02\x04\x03\x01\x01\x03\x04\x05\x05", // 㟡
+ 0x37e2: "\x02\x05\x02\x01\x03\x04\x01\x02\x05\x01\x02", // 㟢
+ 0x37e3: "\x02\x05\x02\x01\x02\x03\x04\x03\x05\x05\x04", // 㟣
+ 0x37e4: "\x02\x05\x02\x05\x01\x01\x02\x04\x01\x03\x04", // 㟤
+ 0x37e5: "\x02\x05\x02\x05\x04\x01\x03\x04\x03\x03\x03", // 㟥
+ 0x37e6: "\x02\x05\x02\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 㟦
+ 0x37e7: "\x02\x05\x02\x02\x05\x01\x02\x05\x01\x01\x01\x05", // 㟧
+ 0x37e8: "\x02\x05\x02\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 㟨
+ 0x37e9: "\x05\x01\x05\x01\x05\x03\x01\x03\x04\x02\x05\x02", // 㟩
+ 0x37ea: "\x02\x05\x02\x02\x05\x01\x02\x01\x01\x05\x03\x04", // 㟪
+ 0x37eb: "\x02\x05\x02\x03\x02\x05\x01\x01\x02\x05\x03\x04", // 㟫
+ 0x37ec: "\x02\x05\x02\x03\x02\x01\x05\x01\x01\x02\x05\x04", // 㟬
+ 0x37ed: "\x02\x05\x02\x05\x01\x05\x01\x05\x02\x05\x01\x01", // 㟭
+ 0x37ee: "\x02\x05\x02\x04\x04\x05\x03\x04\x01\x03\x04\x04", // 㟮
+ 0x37ef: "\x02\x05\x02\x04\x04\x05\x03\x05\x04\x02\x05\x01", // 㟯
+ 0x37f0: "\x02\x05\x02\x04\x05\x02\x05\x01\x01\x04\x01\x03\x04", // 㟰
+ 0x37f1: "\x02\x05\x02\x04\x03\x01\x01\x02\x01\x04\x04\x04\x04", // 㟱
+ 0x37f2: "\x02\x05\x02\x01\x03\x03\x02\x05\x01\x01\x02\x03\x04", // 㟲
+ 0x37f3: "\x02\x05\x02\x01\x02\x05\x02\x02\x01\x01\x02\x03\x04", // 㟳
+ 0x37f4: "\x02\x05\x02\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 㟴
+ 0x37f5: "\x02\x05\x02\x02\x05\x02\x02\x01\x01\x02\x01\x02\x01", // 㟵
+ 0x37f6: "\x02\x05\x02\x01\x03\x03\x02\x05\x01\x01\x02\x03\x04", // 㟶
+ 0x37f7: "\x02\x05\x02\x01\x02\x02\x03\x04\x01\x02\x05\x01", // 㟷
+ 0x37f8: "\x02\x05\x02\x03\x02\x05\x01\x01\x01\x03\x04\x01\x02", // 㟸
+ 0x37f9: "\x02\x05\x02\x01\x02\x02\x01\x01\x01\x03\x05\x03\x05\x02", // 㟹
+ 0x37fa: "\x02\x05\x02\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 㟺
+ 0x37fb: "\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02\x02\x05\x02", // 㟻
+ 0x37fc: "\x02\x05\x02\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04", // 㟼
+ 0x37fd: "\x02\x05\x02\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 㟽
+ 0x37fe: "\x02\x05\x02\x04\x01\x03\x05\x01\x01\x02\x05\x01\x01\x02", // 㟾
+ 0x37ff: "\x02\x05\x02\x01\x02\x02\x01\x03\x04\x04\x01\x03\x02", // 㟿
+ 0x3800: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x02\x05\x02", // 㠀
+ 0x3801: "\x02\x05\x02\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 㠁
+ 0x3802: "\x02\x05\x02\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04", // 㠂
+ 0x3803: "\x02\x05\x02\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01", // 㠃
+ 0x3804: "\x02\x05\x02\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01", // 㠄
+ 0x3805: "\x02\x05\x02\x03\x03\x02\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 㠅
+ 0x3806: "\x02\x05\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 㠆
+ 0x3807: "\x02\x05\x02\x04\x01\x02\x05\x01\x02\x03\x04\x01\x03\x05\x04", // 㠇
+ 0x3808: "\x02\x05\x02\x05\x01\x01\x02\x02\x05\x01\x01\x01\x01\x02\x01", // 㠈
+ 0x3809: "\x02\x05\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 㠉
+ 0x380a: "\x02\x05\x02\x02\x01\x05\x03\x01\x05\x02\x02\x04\x03\x01", // 㠊
+ 0x380b: "\x02\x05\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x05", // 㠋
+ 0x380c: "\x02\x05\x02\x01\x02\x02\x01\x01\x01\x03\x04\x03\x05\x03\x04", // 㠌
+ 0x380d: "\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02\x03\x04", // 㠍
+ 0x380e: "\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02\x03\x04", // 㠎
+ 0x380f: "\x02\x05\x02\x01\x02\x02\x01\x01\x02\x02\x01\x01\x02", // 㠏
+ 0x3810: "\x02\x05\x02\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 㠐
+ 0x3811: "\x02\x05\x02\x02\x05\x02\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01", // 㠑
+ 0x3812: "\x02\x05\x02\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04\x02\x02", // 㠒
+ 0x3813: "\x02\x05\x02\x01\x02\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 㠓
+ 0x3814: "\x02\x05\x02\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 㠔
+ 0x3815: "\x02\x05\x02\x05\x02\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 㠕
+ 0x3816: "\x02\x05\x02\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01\x05\x03\x04", // 㠖
+ 0x3817: "\x02\x05\x02\x03\x02\x05\x04\x03\x01\x02\x03\x04\x01\x03\x04", // 㠗
+ 0x3818: "\x02\x05\x02\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 㠘
+ 0x3819: "\x02\x05\x02\x04\x01\x02\x05\x01\x04\x05\x01\x03\x05\x03\x03\x03\x04", // 㠙
+ 0x381a: "\x02\x05\x02\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x01\x02\x04", // 㠚
+ 0x381b: "\x02\x05\x02\x01\x02\x02\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 㠛
+ 0x381c: "\x02\x05\x02\x03\x05\x03\x01\x01\x03\x04\x05\x04\x05\x02\x01\x03\x04", // 㠜
+ 0x381d: "\x02\x05\x02\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 㠝
+ 0x381e: "\x03\x03\x02\x02\x05\x02\x01\x01\x01\x02\x01\x03\x01\x03\x04\x02\x05\x02", // 㠞
+ 0x381f: "\x02\x05\x02\x03\x01\x02\x03\x04\x03\x05\x03\x03\x04\x02\x04\x01\x03\x04", // 㠟
+ 0x3820: "\x02\x05\x02\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 㠠
+ 0x3821: "\x02\x05\x02\x04\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05\x03\x04", // 㠡
+ 0x3822: "\x02\x05\x02\x03\x02\x05\x01\x01\x03\x05\x05\x04\x04\x01\x03\x05\x03\x04", // 㠢
+ 0x3823: "\x02\x05\x02\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 㠣
+ 0x3824: "\x02\x05\x02\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 㠤
+ 0x3825: "\x02\x05\x02\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x01\x02\x01", // 㠥
+ 0x3826: "\x02\x05\x02\x01\x01\x01\x02\x02\x01\x01\x01\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 㠦
+ 0x3827: "\x02\x05\x02\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01", // 㠧
+ 0x3828: "\x02\x05\x02\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x03\x04\x02\x05\x02\x02\x01\x05\x01\x01\x05\x04\x01\x02\x04", // 㠨
+ 0x3829: "\x03\x04\x05\x03\x02\x05", // 㠩
+ 0x382a: "\x01\x02\x01\x01", // 㠪
+ 0x382b: "\x01\x02\x01\x03\x05\x04\x01\x01\x03\x04", // 㠫
+ 0x382c: "\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 㠬
+ 0x382d: "\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01", // 㠭
+ 0x382e: "\x04\x03\x01\x02\x02\x04\x03\x01\x02\x05\x01\x01\x01\x02\x01", // 㠮
+ 0x382f: "\x02\x05\x01\x05\x01", // 㠯
+ 0x3830: "\x05\x03\x02\x05\x01\x05\x01\x05", // 㠰
+ 0x3831: "\x05\x01\x05\x01\x02\x02\x01\x01\x01\x03\x04", // 㠱
+ 0x3832: "\x02\x05\x02\x03\x05", // 㠲
+ 0x3833: "\x03\x04\x02\x05\x02", // 㠳
+ 0x3834: "\x02\x05\x02\x05\x03\x04", // 㠴
+ 0x3835: "\x04\x01\x05\x02\x05\x02", // 㠵
+ 0x3836: "\x02\x05\x02\x03\x03\x05", // 㠶
+ 0x3837: "\x02\x05\x02\x03\x05\x04", // 㠷
+ 0x3838: "\x02\x05\x02\x01\x01\x03\x04", // 㠸
+ 0x3839: "\x02\x05\x02\x03\x04\x03\x02", // 㠹
+ 0x383a: "\x02\x05\x02\x02\x03\x04\x03", // 㠺
+ 0x383b: "\x01\x02\x01\x03\x02\x05\x02", // 㠻
+ 0x383c: "\x02\x05\x02\x03\x03\x01\x02", // 㠼
+ 0x383d: "\x02\x05\x02\x03\x05\x04\x04\x04", // 㠽
+ 0x383e: "\x03\x05\x04\x05\x05\x02\x05\x02", // 㠾
+ 0x383f: "\x02\x01\x02\x01\x03\x05\x02\x05\x02", // 㠿
+ 0x3840: "\x04\x03\x02\x05\x02\x03\x04", // 㡀
+ 0x3841: "\x02\x05\x02\x01\x03\x04\x01\x01\x05", // 㡁
+ 0x3842: "\x01\x03\x05\x04\x02\x02\x02\x05\x02", // 㡂
+ 0x3843: "\x02\x05\x02\x03\x04\x05\x03\x02\x05", // 㡃
+ 0x3844: "\x02\x05\x02\x03\x05\x02\x05\x01\x01", // 㡄
+ 0x3845: "\x02\x05\x02\x03\x05\x04\x03\x05\x04", // 㡅
+ 0x3846: "\x02\x05\x02\x04\x01\x05\x03\x02\x05", // 㡆
+ 0x3847: "\x02\x05\x02\x01\x02\x02\x01\x01\x01\x05", // 㡇
+ 0x3848: "\x02\x05\x02\x03\x05\x02\x05\x01\x03\x05", // 㡈
+ 0x3849: "\x02\x05\x02\x05\x01\x05\x04\x01\x05\x05\x04", // 㡉
+ 0x384a: "\x02\x05\x02\x03\x05\x03\x02\x01\x05\x01\x01", // 㡊
+ 0x384b: "\x02\x05\x02\x01\x03\x04\x02\x05\x01\x01\x05", // 㡋
+ 0x384c: "\x02\x05\x02\x02\x05\x01\x01\x02\x05\x01\x01", // 㡌
+ 0x384d: "\x03\x02\x05\x01\x01\x01\x03\x04\x02\x05\x02", // 㡍
+ 0x384e: "\x02\x05\x02\x05\x04\x01\x03\x04\x03\x03\x03", // 㡎
+ 0x384f: "\x02\x05\x02\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 㡏
+ 0x3850: "\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01\x02\x02", // 㡐
+ 0x3851: "\x03\x01\x02\x03\x04\x04\x03\x03\x04\x02\x05\x02", // 㡑
+ 0x3852: "\x02\x05\x02\x03\x03\x01\x02\x02\x05\x01\x01\x01", // 㡒
+ 0x3853: "\x02\x05\x02\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 㡓
+ 0x3854: "\x05\x04\x05\x02\x03\x03\x01\x03\x04\x02\x05\x02", // 㡔
+ 0x3855: "\x02\x05\x02\x01\x02\x02\x02\x05\x01\x03\x04", // 㡕
+ 0x3856: "\x02\x05\x02\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 㡖
+ 0x3857: "\x02\x05\x02\x03\x03\x02\x01\x05\x03\x01\x05\x03\x05", // 㡗
+ 0x3858: "\x02\x05\x02\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 㡘
+ 0x3859: "\x02\x05\x02\x03\x02\x05\x03\x04\x01\x01\x05\x03\x05", // 㡙
+ 0x385a: "\x02\x05\x02\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01", // 㡚
+ 0x385b: "\x02\x05\x02\x01\x02\x02\x04\x01\x05\x03\x02\x05", // 㡛
+ 0x385c: "\x02\x05\x02\x03\x05\x04\x04\x05\x04\x01\x01\x02\x03\x04", // 㡜
+ 0x385d: "\x02\x05\x02\x03\x05\x04\x01\x01\x01\x02\x04\x05\x04", // 㡝
+ 0x385e: "\x02\x05\x02\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 㡞
+ 0x385f: "\x02\x05\x02\x01\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01", // 㡟
+ 0x3860: "\x02\x05\x02\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 㡠
+ 0x3861: "\x02\x05\x02\x01\x03\x01\x02\x05\x01\x04\x03\x01\x01\x02\x04", // 㡡
+ 0x3862: "\x02\x05\x02\x02\x05\x01\x01\x02\x05\x02\x02\x01\x01\x05\x03", // 㡢
+ 0x3863: "\x04\x01\x04\x03\x04\x05\x02\x05\x02\x01\x05\x01\x05\x01\x01\x01", // 㡣
+ 0x3864: "\x02\x05\x02\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x02\x03\x04", // 㡤
+ 0x3865: "\x02\x05\x02\x03\x04\x04\x03\x01\x02\x01\x05\x01\x01\x04\x05\x04\x04", // 㡥
+ 0x3866: "\x02\x05\x02\x04\x04\x05\x01\x02\x03\x03\x02\x05\x01\x01\x01\x03\x04", // 㡦
+ 0x3867: "\x02\x05\x02\x04\x04\x05\x03\x04\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 㡧
+ 0x3868: "\x02\x05\x02\x03\x04\x03\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 㡨
+ 0x3869: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x02\x05\x02", // 㡩
+ 0x386a: "\x02\x05\x02\x03\x04\x04\x03\x05\x01\x03\x02\x02\x02\x01\x02\x01\x05\x01\x05\x03\x05\x04", // 㡪
+ 0x386b: "\x05\x05\x04\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 㡫
+ 0x386c: "\x05\x05\x04\x05\x05\x04\x01\x03\x05\x05\x03\x04", // 㡬
+ 0x386d: "\x05\x05\x04\x05\x05\x04\x01\x05\x05\x04\x05\x05\x04\x05", // 㡭
+ 0x386e: "\x05\x05\x04\x05\x05\x04\x01\x03\x04\x05\x03\x04\x03\x01\x01\x05", // 㡮
+ 0x386f: "\x04\x01\x03\x03\x01\x05", // 㡯
+ 0x3870: "\x04\x01\x03\x01\x01\x02", // 㡰
+ 0x3871: "\x04\x01\x03\x03\x05\x04", // 㡱
+ 0x3872: "\x04\x01\x03\x01\x05\x03\x04", // 㡲
+ 0x3873: "\x04\x01\x03\x03\x05\x01\x05", // 㡳
+ 0x3874: "\x04\x01\x03\x04\x01\x04\x03\x01", // 㡴
+ 0x3875: "\x04\x01\x03\x03\x04\x04\x05\x04", // 㡵
+ 0x3876: "\x04\x01\x03\x02\x05\x01\x03\x04", // 㡶
+ 0x3877: "\x04\x01\x03\x01\x02\x03\x04\x01", // 㡷
+ 0x3878: "\x04\x01\x03\x03\x01\x02\x01\x01", // 㡸
+ 0x3879: "\x04\x01\x03\x02\x05\x01\x01\x01", // 㡹
+ 0x387a: "\x04\x01\x03\x02\x05\x01\x01\x01", // 㡺
+ 0x387b: "\x04\x01\x03\x03\x05\x03\x05\x02", // 㡻
+ 0x387c: "\x04\x01\x03\x02\x05\x01\x01\x05\x03", // 㡼
+ 0x387d: "\x04\x01\x03\x05\x01\x01\x01\x01\x02", // 㡽
+ 0x387e: "\x04\x01\x03\x05\x01\x01\x05\x03\x04", // 㡾
+ 0x387f: "\x04\x01\x03\x04\x03\x01\x05\x02\x03", // 㡿
+ 0x3880: "\x04\x01\x03\x01\x02\x05\x02\x03\x04", // 㢀
+ 0x3881: "\x04\x01\x03\x03\x05\x04\x03\x05\x04", // 㢁
+ 0x3882: "\x04\x01\x03\x03\x02\x05\x01\x05\x01", // 㢂
+ 0x3883: "\x04\x01\x03\x04\x05\x01\x01\x05\x03\x04", // 㢃
+ 0x3884: "\x04\x01\x03\x01\x02\x05\x01\x04\x03\x01", // 㢄
+ 0x3885: "\x04\x01\x03\x01\x01\x02\x01\x01\x03\x02", // 㢅
+ 0x3886: "\x04\x01\x03\x02\x05\x01\x01\x02\x01\x01", // 㢆
+ 0x3887: "\x04\x01\x03\x04\x01\x01\x01\x02\x05\x01", // 㢇
+ 0x3888: "\x04\x01\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 㢈
+ 0x3889: "\x04\x01\x03\x03\x01\x02\x03\x04\x03\x01\x05", // 㢉
+ 0x388a: "\x04\x01\x03\x01\x03\x04\x01\x02\x05\x01\x02", // 㢊
+ 0x388b: "\x04\x01\x03\x03\x02\x03\x05\x04\x03\x05\x04", // 㢋
+ 0x388c: "\x04\x01\x03\x05\x02\x01\x02\x05\x01\x02", // 㢌
+ 0x388d: "\x04\x01\x03\x01\x02\x02\x02\x05\x01\x03\x04", // 㢍
+ 0x388e: "\x04\x01\x03\x03\x01\x02\x03\x02\x01\x05\x01\x01", // 㢎
+ 0x388f: "\x04\x01\x03\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 㢏
+ 0x3890: "\x04\x01\x03\x02\x05\x05\x02\x05\x02\x05\x01", // 㢐
+ 0x3891: "\x04\x01\x03\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02", // 㢑
+ 0x3892: "\x04\x01\x03\x02\x01\x05\x03\x01\x05\x02\x05\x01\x01\x01", // 㢒
+ 0x3893: "\x04\x01\x03\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02", // 㢓
+ 0x3894: "\x04\x01\x03\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04", // 㢔
+ 0x3895: "\x04\x01\x03\x05\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 㢕
+ 0x3896: "\x04\x01\x03\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 㢖
+ 0x3897: "\x04\x01\x03\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 㢗
+ 0x3898: "\x04\x01\x03\x04\x03\x01\x05\x01\x01\x02\x02\x04\x04\x04\x04", // 㢘
+ 0x3899: "\x04\x01\x03\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01\x05\x03", // 㢙
+ 0x389a: "\x04\x01\x03\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x05\x03", // 㢚
+ 0x389b: "\x04\x01\x03\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 㢛
+ 0x389c: "\x04\x01\x03\x01\x02\x02\x01\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 㢜
+ 0x389d: "\x04\x01\x03\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x02\x03\x04", // 㢝
+ 0x389e: "\x04\x01\x03\x05\x04\x01\x05\x04\x01\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 㢞
+ 0x389f: "\x02\x01\x05\x05\x04", // 㢟
+ 0x38a0: "\x02\x05\x02\x05\x01\x05\x04", // 㢠
+ 0x38a1: "\x05\x02\x01\x03\x03\x05\x04\x04\x01\x02\x04\x01\x03\x02", // 㢡
+ 0x38a2: "\x02\x04\x03\x02\x05\x02\x05\x01\x03\x01\x03\x04\x01\x03\x02", // 㢢
+ 0x38a3: "\x01\x02\x02\x03\x05\x02\x05\x01\x03\x01\x03\x04\x01\x03\x02", // 㢣
+ 0x38a4: "\x01\x02\x01\x05\x03\x05\x04", // 㢤
+ 0x38a5: "\x02\x05\x01\x02\x05\x01\x01\x05\x04", // 㢥
+ 0x38a6: "\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x05\x04", // 㢦
+ 0x38a7: "\x05\x01\x05\x01", // 㢧
+ 0x38a8: "\x05\x01\x05\x01\x01\x02", // 㢨
+ 0x38a9: "\x05\x01\x05\x03\x05\x04", // 㢩
+ 0x38aa: "\x05\x01\x05\x01\x01\x05", // 㢪
+ 0x38ab: "\x05\x01\x05\x02\x05\x02", // 㢫
+ 0x38ac: "\x05\x01\x05\x01\x03\x05\x04", // 㢬
+ 0x38ad: "\x05\x01\x05\x02\x01\x05\x04", // 㢭
+ 0x38ae: "\x05\x01\x05\x03\x01\x05\x02\x05", // 㢮
+ 0x38af: "\x05\x01\x05\x05\x01\x05\x01\x05", // 㢯
+ 0x38b0: "\x05\x01\x05\x05\x03\x02\x05\x04", // 㢰
+ 0x38b1: "\x05\x01\x05\x05\x04\x02\x03\x04", // 㢱
+ 0x38b2: "\x05\x01\x05\x05\x01\x05\x01\x03\x04", // 㢲
+ 0x38b3: "\x05\x01\x05\x03\x01\x03\x05\x03\x04", // 㢳
+ 0x38b4: "\x05\x01\x05\x02\x05\x03\x03\x04\x01", // 㢴
+ 0x38b5: "\x05\x01\x05\x03\x04\x01\x02\x05\x01", // 㢵
+ 0x38b6: "\x05\x01\x05\x01\x03\x02\x05\x01\x01", // 㢶
+ 0x38b7: "\x05\x01\x05\x02\x05\x02\x03\x05\x04", // 㢷
+ 0x38b8: "\x05\x01\x05\x05\x01\x05\x03\x01\x03\x04", // 㢸
+ 0x38b9: "\x05\x01\x05\x04\x01\x04\x03\x01\x01\x02", // 㢹
+ 0x38ba: "\x05\x01\x05\x04\x01\x04\x03\x01\x05\x03\x01", // 㢺
+ 0x38bb: "\x05\x01\x05\x03\x01\x02\x03\x04\x05\x03\x01", // 㢻
+ 0x38bc: "\x05\x01\x05\x04\x03\x02\x05\x02\x03\x04", // 㢼
+ 0x38bd: "\x05\x01\x05\x01\x02\x02\x01\x01\x01\x05\x01\x05", // 㢽
+ 0x38be: "\x05\x01\x05\x01\x02\x05\x02\x02\x01\x01\x02\x01", // 㢾
+ 0x38bf: "\x05\x01\x05\x03\x02\x05\x01\x03\x01\x01\x03\x04", // 㢿
+ 0x38c0: "\x05\x01\x05\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 㣀
+ 0x38c1: "\x05\x01\x05\x01\x02\x02\x01\x03\x02\x05\x01\x01\x02", // 㣁
+ 0x38c2: "\x05\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 㣂
+ 0x38c3: "\x05\x01\x05\x04\x01\x05\x04\x02\x05\x01\x01\x05\x01\x05", // 㣃
+ 0x38c4: "\x05\x01\x05\x04\x04\x01\x01\x05\x01\x05\x01\x02\x03\x04", // 㣄
+ 0x38c5: "\x05\x01\x05\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x01", // 㣅
+ 0x38c6: "\x05\x01\x05\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x01\x02\x01", // 㣆
+ 0x38c7: "\x05\x05\x01\x03\x03\x02\x05\x02", // 㣇
+ 0x38c8: "\x05\x05\x01\x03\x03\x02\x05\x02\x05\x05\x01\x03\x03\x02\x05\x02", // 㣈
+ 0x38c9: "\x01\x02\x01\x03\x03\x03", // 㣉
+ 0x38ca: "\x03\x05\x04\x03\x03\x03", // 㣊
+ 0x38cb: "\x01\x01\x03\x02\x04\x03\x03\x03", // 㣋
+ 0x38cc: "\x02\x01\x02\x05\x01\x03\x03\x03", // 㣌
+ 0x38cd: "\x05\x04\x02\x05\x01\x03\x03\x03", // 㣍
+ 0x38ce: "\x03\x02\x05\x01\x01\x02\x03\x04\x03\x03\x03", // 㣎
+ 0x38cf: "\x01\x03\x04\x02\x05\x01\x01\x01\x02\x03\x03\x03", // 㣏
+ 0x38d0: "\x03\x02\x05\x01\x01\x02\x05\x03\x04\x03\x03\x03", // 㣐
+ 0x38d1: "\x04\x01\x03\x05\x01\x01\x02\x05\x01\x01\x02\x03\x03\x03", // 㣑
+ 0x38d2: "\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01\x03\x03\x03", // 㣒
+ 0x38d3: "\x02\x01\x03\x05\x04\x05\x04\x04\x03\x01\x02\x03\x04\x03\x03\x03", // 㣓
+ 0x38d4: "\x03\x03\x02\x01\x02", // 㣔
+ 0x38d5: "\x03\x03\x02\x01\x03\x04", // 㣕
+ 0x38d6: "\x03\x03\x02\x01\x03\x04\x04", // 㣖
+ 0x38d7: "\x03\x03\x02\x04\x05\x01\x03", // 㣗
+ 0x38d8: "\x03\x03\x02\x03\x05\x02\x05\x01", // 㣘
+ 0x38d9: "\x03\x03\x02\x02\x05\x01\x02\x01", // 㣙
+ 0x38da: "\x03\x03\x02\x02\x05\x01\x02\x05\x01", // 㣚
+ 0x38db: "\x03\x03\x02\x03\x04\x01\x02\x05\x01", // 㣛
+ 0x38dc: "\x03\x03\x02\x01\x01\x03\x02\x02\x02", // 㣜
+ 0x38dd: "\x03\x03\x02\x01\x01\x03\x05\x03\x04", // 㣝
+ 0x38de: "\x03\x03\x02\x03\x04\x05\x04\x03\x05", // 㣞
+ 0x38df: "\x03\x03\x02\x01\x02\x01\x02\x05\x01", // 㣟
+ 0x38e0: "\x03\x03\x02\x02\x03\x05\x04\x04\x04", // 㣠
+ 0x38e1: "\x03\x03\x02\x03\x02\x02\x05\x01\x02", // 㣡
+ 0x38e2: "\x03\x03\x02\x04\x03\x05\x01\x05\x02\x03", // 㣢
+ 0x38e3: "\x03\x03\x02\x01\x03\x04\x03\x04\x03\x04", // 㣣
+ 0x38e4: "\x03\x03\x02\x01\x05\x03\x04\x01\x05\x03\x04", // 㣤
+ 0x38e5: "\x03\x03\x02\x03\x02\x01\x02\x01\x01\x02\x04", // 㣥
+ 0x38e6: "\x03\x03\x02\x03\x01\x02\x03\x04\x05\x03\x01", // 㣦
+ 0x38e7: "\x03\x03\x02\x05\x05\x04\x02\x05\x01\x01\x05", // 㣧
+ 0x38e8: "\x03\x03\x02\x05\x03\x01\x01\x02\x02\x05\x01", // 㣨
+ 0x38e9: "\x03\x03\x02\x01\x02\x03\x04\x01\x02\x03\x04", // 㣩
+ 0x38ea: "\x03\x03\x02\x03\x04\x04\x03\x01\x01\x03\x05\x04", // 㣪
+ 0x38eb: "\x03\x03\x02\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 㣫
+ 0x38ec: "\x03\x03\x02\x02\x05\x01\x01\x02\x02\x01\x01\x01", // 㣬
+ 0x38ed: "\x03\x03\x02\x03\x04\x05\x02\x03\x04\x03\x05\x04", // 㣭
+ 0x38ee: "\x03\x03\x02\x01\x02\x02\x05\x04\x03\x01\x01\x02", // 㣮
+ 0x38ef: "\x03\x03\x02\x05\x01\x03\x02\x04\x03\x02\x05\x01\x01", // 㣯
+ 0x38f0: "\x03\x03\x02\x03\x04\x03\x01\x02\x03\x04\x04\x05\x04\x04", // 㣰
+ 0x38f1: "\x03\x03\x02\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 㣱
+ 0x38f2: "\x03\x03\x02\x02\x05\x02\x01\x02\x05\x01\x03\x01\x03\x04", // 㣲
+ 0x38f3: "\x03\x03\x02\x03\x01\x01\x02\x02\x02\x02\x01\x04\x04\x04\x04", // 㣳
+ 0x38f4: "\x03\x03\x02\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 㣴
+ 0x38f5: "\x03\x03\x02\x01\x02\x01\x04\x03\x01\x01\x01\x02\x04\x05\x04", // 㣵
+ 0x38f6: "\x03\x03\x02\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 㣶
+ 0x38f7: "\x03\x03\x02\x04\x04\x05\x04\x05\x04\x04\x02\x05\x02\x02\x01\x01\x02", // 㣷
+ 0x38f8: "\x03\x03\x02\x02\x02\x04\x03\x01\x03\x05\x03\x03\x03\x04\x03\x01\x01\x02\x01", // 㣸
+ 0x38f9: "\x03\x03\x02\x04\x01\x03\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01\x04\x05\x04\x04", // 㣹
+ 0x38fa: "\x04\x04\x02\x04", // 㣺
+ 0x38fb: "\x03\x04\x04\x05\x04\x04", // 㣻
+ 0x38fc: "\x04\x04\x02\x05\x03\x04", // 㣼
+ 0x38fd: "\x05\x03\x01\x04\x05\x04\x04", // 㣽
+ 0x38fe: "\x04\x04\x02\x05\x04\x04", // 㣾
+ 0x38ff: "\x04\x04\x02\x03\x05\x04", // 㣿
+ 0x3900: "\x03\x04\x05\x04\x05\x04\x04", // 㤀
+ 0x3901: "\x01\x01\x03\x04\x04\x05\x04\x04", // 㤁
+ 0x3902: "\x03\x05\x04\x04\x05\x04\x04", // 㤂
+ 0x3903: "\x04\x04\x02\x04\x01\x03\x05", // 㤃
+ 0x3904: "\x04\x04\x02\x01\x02\x05\x02", // 㤄
+ 0x3905: "\x01\x05\x03\x05\x04\x05\x04\x04", // 㤅
+ 0x3906: "\x04\x04\x02\x03\x03\x05\x04", // 㤆
+ 0x3907: "\x04\x04\x02\x03\x01\x03\x04", // 㤇
+ 0x3908: "\x04\x04\x02\x04\x05\x04\x04", // 㤈
+ 0x3909: "\x04\x04\x02\x01\x05\x02\x03", // 㤉
+ 0x390a: "\x04\x04\x02\x03\x04\x03\x04", // 㤊
+ 0x390b: "\x04\x04\x02\x03\x04\x05\x03", // 㤋
+ 0x390c: "\x04\x04\x02\x01\x02\x02\x01\x01", // 㤌
+ 0x390d: "\x01\x02\x01\x01\x05\x04\x05\x04\x04", // 㤍
+ 0x390e: "\x05\x03\x02\x05\x01\x04\x05\x04\x04", // 㤎
+ 0x390f: "\x04\x04\x02\x03\x05\x04\x04\x04", // 㤏
+ 0x3910: "\x02\x01\x02\x05\x01\x04\x05\x04\x04", // 㤐
+ 0x3911: "\x04\x04\x02\x01\x03\x02\x05\x01", // 㤑
+ 0x3912: "\x04\x04\x02\x01\x03\x04\x01\x02", // 㤒
+ 0x3913: "\x04\x04\x02\x01\x02\x03\x04\x01", // 㤓
+ 0x3914: "\x04\x04\x02\x03\x02\x01\x02\x04", // 㤔
+ 0x3915: "\x04\x04\x02\x05\x02\x02\x05\x02", // 㤕
+ 0x3916: "\x04\x04\x02\x04\x04\x05\x01\x02", // 㤖
+ 0x3917: "\x01\x01\x01\x03\x04\x02\x04\x04\x04", // 㤗
+ 0x3918: "\x04\x04\x02\x03\x05\x05\x01\x01", // 㤘
+ 0x3919: "\x02\x05\x05\x01\x01\x04\x05\x04\x04", // 㤙
+ 0x391a: "\x04\x04\x02\x03\x03\x02\x01\x01\x02", // 㤚
+ 0x391b: "\x04\x04\x02\x03\x02\x03\x01\x02\x01", // 㤛
+ 0x391c: "\x04\x04\x02\x01\x03\x04\x05\x03\x04", // 㤜
+ 0x391d: "\x04\x04\x02\x04\x01\x05\x04\x03\x05", // 㤝
+ 0x391e: "\x04\x04\x02\x04\x04\x05\x03\x01\x05", // 㤞
+ 0x391f: "\x02\x05\x01\x02\x02\x01\x04\x05\x04\x04", // 㤟
+ 0x3920: "\x01\x03\x05\x04\x02\x02\x04\x05\x04\x04", // 㤠
+ 0x3921: "\x04\x04\x02\x01\x03\x05\x04\x02\x02", // 㤡
+ 0x3922: "\x04\x04\x02\x01\x03\x02\x05\x01\x01", // 㤢
+ 0x3923: "\x04\x03\x01\x01\x03\x02\x04\x05\x04\x04", // 㤣
+ 0x3924: "\x04\x04\x02\x02\x05\x01\x01\x03\x04", // 㤤
+ 0x3925: "\x04\x04\x02\x04\x01\x05\x03\x03\x04", // 㤥
+ 0x3926: "\x04\x04\x02\x01\x02\x05\x01\x03\x04", // 㤦
+ 0x3927: "\x04\x04\x02\x03\x03\x01\x02\x05\x01", // 㤧
+ 0x3928: "\x04\x04\x02\x01\x02\x02\x01\x03\x04", // 㤨
+ 0x3929: "\x03\x05\x04\x02\x05\x01\x04\x05\x04\x04", // 㤩
+ 0x392a: "\x01\x03\x05\x04\x05\x05\x04\x05\x04\x04", // 㤪
+ 0x392b: "\x01\x03\x02\x05\x01\x01\x04\x05\x04\x04", // 㤫
+ 0x392c: "\x04\x04\x02\x01\x02\x01\x01\x02\x01", // 㤬
+ 0x392d: "\x04\x04\x02\x03\x01\x03\x04\x03\x02", // 㤭
+ 0x392e: "\x03\x05\x03\x01\x01\x02\x01\x04\x05\x04\x04", // 㤮
+ 0x392f: "\x04\x04\x02\x02\x05\x03\x04\x02\x05\x01", // 㤯
+ 0x3930: "\x03\x02\x03\x01\x02\x01\x01\x04\x05\x04\x04", // 㤰
+ 0x3931: "\x04\x04\x02\x01\x02\x05\x01\x04\x03\x01", // 㤱
+ 0x3932: "\x01\x03\x04\x03\x04\x03\x04\x04\x05\x04\x04", // 㤲
+ 0x3933: "\x04\x04\x02\x01\x03\x02\x04\x02\x05\x01", // 㤳
+ 0x3934: "\x04\x04\x02\x01\x02\x02\x01\x01\x01\x05", // 㤴
+ 0x3935: "\x05\x02\x01\x03\x01\x03\x04\x04\x05\x04\x04", // 㤵
+ 0x3936: "\x04\x04\x02\x01\x03\x05\x03\x03\x03\x04", // 㤶
+ 0x3937: "\x04\x04\x02\x03\x04\x04\x05\x02\x05\x01", // 㤷
+ 0x3938: "\x04\x04\x02\x01\x02\x01\x03\x02\x03\x04", // 㤸
+ 0x3939: "\x04\x04\x02\x01\x02\x04\x01\x03\x04\x04", // 㤹
+ 0x393a: "\x04\x04\x02\x04\x01\x05\x03\x02\x05", // 㤺
+ 0x393b: "\x03\x05\x04\x03\x05\x02\x04\x04\x05\x04\x04", // 㤻
+ 0x393c: "\x04\x04\x02\x01\x02\x01\x05\x04\x05\x03", // 㤼
+ 0x393d: "\x04\x04\x02\x01\x01\x01\x03\x01\x02\x04", // 㤽
+ 0x393e: "\x04\x04\x02\x04\x05\x03\x04\x01\x02\x03\x04", // 㤾
+ 0x393f: "\x04\x04\x02\x01\x03\x04\x02\x05\x01\x01\x05", // 㤿
+ 0x3940: "\x04\x04\x02\x01\x02\x02\x05\x01\x01\x01\x01", // 㥀
+ 0x3941: "\x01\x03\x02\x05\x02\x02\x01\x05\x04\x05\x04\x04", // 㥁
+ 0x3942: "\x04\x04\x02\x02\x05\x01\x01\x01\x01\x02\x04", // 㥂
+ 0x3943: "\x04\x04\x02\x05\x01\x01\x02\x02\x05\x01\x01", // 㥃
+ 0x3944: "\x04\x04\x02\x01\x02\x01\x03\x04\x03\x05\x04", // 㥄
+ 0x3945: "\x04\x04\x02\x03\x04\x04\x03\x04\x05\x05\x04", // 㥅
+ 0x3946: "\x04\x04\x02\x05\x01\x01\x02\x04\x01\x03\x04", // 㥆
+ 0x3947: "\x04\x04\x02\x01\x05\x03\x04\x01\x05\x03\x04", // 㥇
+ 0x3948: "\x02\x05\x02\x02\x01\x02\x05\x01\x04\x05\x04\x04", // 㥈
+ 0x3949: "\x04\x04\x02\x04\x01\x04\x03\x01\x02\x05\x01", // 㥉
+ 0x394a: "\x04\x04\x02\x03\x05\x01\x01\x03\x05\x01\x01", // 㥊
+ 0x394b: "\x03\x02\x04\x01\x03\x05\x03\x04\x04\x05\x04\x04", // 㥋
+ 0x394c: "\x04\x04\x02\x03\x05\x04\x03\x01\x02\x03\x04", // 㥌
+ 0x394d: "\x04\x04\x02\x01\x02\x02\x01\x01\x01\x03\x04", // 㥍
+ 0x394e: "\x03\x01\x02\x03\x04\x03\x05\x03\x04\x05\x04\x04", // 㥎
+ 0x394f: "\x04\x04\x02\x02\x05\x01\x02\x02\x01\x03\x04", // 㥏
+ 0x3950: "\x03\x04\x01\x02\x05\x01\x05\x02\x04\x05\x04\x04", // 㥐
+ 0x3951: "\x01\x03\x02\x05\x01\x01\x04\x05\x04\x05\x04\x04", // 㥑
+ 0x3952: "\x04\x04\x02\x03\x04\x04\x03\x01\x02\x03\x04", // 㥒
+ 0x3953: "\x04\x04\x02\x01\x03\x04\x01\x02\x05\x01\x02", // 㥓
+ 0x3954: "\x04\x04\x02\x04\x01\x05\x04\x02\x05\x01\x01", // 㥔
+ 0x3955: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x04\x04", // 㥕
+ 0x3956: "\x03\x05\x04\x01\x03\x04\x05\x04\x04\x05\x04\x04", // 㥖
+ 0x3957: "\x04\x04\x02\x02\x05\x01\x01\x04\x01\x03\x04", // 㥗
+ 0x3958: "\x04\x04\x02\x01\x02\x01\x05\x04\x05\x03\x04", // 㥘
+ 0x3959: "\x04\x04\x02\x02\x05\x01\x02\x04\x05\x04\x04", // 㥙
+ 0x395a: "\x04\x04\x02\x03\x02\x01\x05\x01\x01\x03\x04", // 㥚
+ 0x395b: "\x04\x04\x02\x05\x02\x02\x05\x01\x05\x04\x01", // 㥛
+ 0x395c: "\x04\x04\x02\x02\x05\x01\x02\x01\x02\x05\x01\x01", // 㥜
+ 0x395d: "\x04\x04\x02\x05\x01\x05\x01\x02\x02\x01\x01\x01", // 㥝
+ 0x395e: "\x04\x04\x02\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 㥞
+ 0x395f: "\x04\x04\x02\x05\x05\x01\x03\x05\x03\x03\x03\x04", // 㥟
+ 0x3960: "\x04\x04\x02\x05\x02\x01\x03\x04\x02\x05\x01\x01", // 㥠
+ 0x3961: "\x04\x04\x02\x05\x01\x03\x03\x05\x01\x02\x03\x04", // 㥡
+ 0x3962: "\x04\x04\x02\x04\x03\x01\x02\x05\x03\x05\x01\x01", // 㥢
+ 0x3963: "\x01\x03\x04\x01\x02\x01\x01\x02\x01\x04\x05\x04\x04", // 㥣
+ 0x3964: "\x05\x04\x05\x02\x03\x03\x04\x04\x05\x04\x05\x04\x04", // 㥤
+ 0x3965: "\x04\x04\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 㥥
+ 0x3966: "\x01\x01\x03\x04\x03\x04\x03\x04\x05\x04\x05\x04\x04", // 㥦
+ 0x3967: "\x04\x04\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 㥧
+ 0x3968: "\x05\x03\x01\x01\x02\x01\x01\x02\x01\x04\x05\x04\x04", // 㥨
+ 0x3969: "\x04\x04\x02\x01\x02\x01\x03\x02\x05\x01\x01", // 㥩
+ 0x396a: "\x04\x04\x02\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 㥪
+ 0x396b: "\x04\x04\x02\x04\x01\x02\x05\x01\x02\x05\x01\x01", // 㥫
+ 0x396c: "\x04\x04\x02\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03", // 㥬
+ 0x396d: "\x04\x04\x02\x01\x01\x01\x03\x04\x02\x04\x01\x03\x04", // 㥭
+ 0x396e: "\x04\x04\x02\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03", // 㥮
+ 0x396f: "\x03\x04\x04\x03\x01\x02\x01\x05\x01\x01\x04\x05\x04\x04", // 㥯
+ 0x3970: "\x04\x04\x02\x03\x02\x01\x05\x01\x01\x02\x05\x04", // 㥰
+ 0x3971: "\x04\x04\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01\x05", // 㥱
+ 0x3972: "\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04\x04\x05\x04\x04", // 㥲
+ 0x3973: "\x04\x04\x02\x01\x03\x03\x02\x05\x01\x01\x02\x03\x04", // 㥳
+ 0x3974: "\x04\x04\x02\x03\x03\x02\x01\x05\x03\x01\x05\x03\x05", // 㥴
+ 0x3975: "\x04\x04\x02\x02\x05\x01\x03\x05\x03\x03\x03\x04\x01", // 㥵
+ 0x3976: "\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x04\x05\x04\x04", // 㥶
+ 0x3977: "\x04\x01\x03\x01\x03\x04\x03\x04\x03\x04\x04\x05\x04\x04", // 㥷
+ 0x3978: "\x05\x01\x05\x01\x05\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 㥸
+ 0x3979: "\x04\x03\x01\x02\x03\x04\x03\x04\x05\x03\x04\x05\x04\x04", // 㥹
+ 0x397a: "\x04\x04\x02\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 㥺
+ 0x397b: "\x01\x03\x03\x01\x02\x03\x04\x05\x03\x04\x04\x05\x04\x04", // 㥻
+ 0x397c: "\x04\x04\x02\x01\x02\x01\x02\x01\x01\x05\x04\x04\x04\x04", // 㥼
+ 0x397d: "\x04\x04\x02\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 㥽
+ 0x397e: "\x04\x04\x02\x01\x01\x02\x02\x01\x03\x02\x05\x01\x05", // 㥾
+ 0x397f: "\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04\x04\x05\x04\x04", // 㥿
+ 0x3980: "\x04\x04\x02\x03\x05\x04\x01\x01\x01\x02\x04\x05\x04", // 㦀
+ 0x3981: "\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04\x04\x05\x04\x04", // 㦁
+ 0x3982: "\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x02\x04\x05\x04\x04", // 㦂
+ 0x3983: "\x04\x04\x02\x04\x01\x04\x03\x01\x03\x03\x01\x01\x02\x01", // 㦃
+ 0x3984: "\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x04\x05\x04\x04", // 㦄
+ 0x3985: "\x04\x04\x02\x01\x02\x02\x01\x03\x05\x04\x05\x02\x05\x02", // 㦅
+ 0x3986: "\x04\x04\x02\x02\x01\x05\x03\x01\x05\x03\x04\x03\x01\x02", // 㦆
+ 0x3987: "\x04\x04\x02\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 㦇
+ 0x3988: "\x04\x04\x02\x04\x03\x01\x01\x02\x01\x02\x05\x02\x02\x01", // 㦈
+ 0x3989: "\x04\x04\x02\x01\x02\x01\x04\x05\x01\x02\x05\x01\x04\x03\x01", // 㦉
+ 0x398a: "\x04\x04\x02\x01\x02\x02\x01\x01\x02\x02\x01\x01\x02", // 㦊
+ 0x398b: "\x04\x04\x02\x01\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01", // 㦋
+ 0x398c: "\x03\x01\x01\x05\x03\x01\x01\x05\x03\x01\x01\x05\x04\x05\x04\x04", // 㦌
+ 0x398d: "\x04\x04\x02\x02\x05\x01\x02\x05\x01\x04\x03\x01\x05\x02\x03", // 㦍
+ 0x398e: "\x04\x04\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x02\x01\x01", // 㦎
+ 0x398f: "\x04\x04\x02\x05\x01\x05\x05\x01\x05\x01\x02\x02\x01\x03\x04", // 㦏
+ 0x3990: "\x04\x04\x02\x01\x01\x01\x02\x05\x01\x01\x01\x03\x04\x05\x04", // 㦐
+ 0x3991: "\x04\x04\x02\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 㦑
+ 0x3992: "\x04\x04\x02\x02\x05\x02\x02\x01\x04\x01\x01\x01\x02\x05\x01", // 㦒
+ 0x3993: "\x04\x04\x02\x03\x05\x04\x04\x01\x03\x04\x04\x04\x04\x04\x04", // 㦓
+ 0x3994: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x04\x04\x04\x05\x04\x04", // 㦔
+ 0x3995: "\x04\x04\x02\x05\x02\x03\x05\x04\x01\x03\x01\x01\x02\x01", // 㦕
+ 0x3996: "\x04\x04\x02\x05\x01\x01\x02\x02\x05\x01\x01\x04\x05\x04\x04", // 㦖
+ 0x3997: "\x04\x04\x02\x01\x02\x03\x04\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 㦗
+ 0x3998: "\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x03\x04\x04\x05\x04\x04", // 㦘
+ 0x3999: "\x04\x04\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04\x04\x05\x04\x04", // 㦙
+ 0x399a: "\x04\x01\x04\x03\x01\x01\x03\x04\x05\x04\x04\x04\x01\x04\x03\x01\x01\x02", // 㦚
+ 0x399b: "\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04\x04", // 㦛
+ 0x399c: "\x04\x04\x02\x01\x02\x02\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 㦜
+ 0x399d: "\x03\x04\x04\x03\x05\x03\x03\x03\x02\x05\x01\x01\x03\x05\x04\x05\x04\x04", // 㦝
+ 0x399e: "\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04\x04\x05\x04\x04", // 㦞
+ 0x399f: "\x03\x04\x04\x03\x05\x03\x03\x02\x05\x01\x01\x02\x01\x01\x04\x05\x04\x04", // 㦟
+ 0x39a0: "\x04\x04\x02\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x01\x02\x04", // 㦠
+ 0x39a1: "\x04\x04\x02\x03\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x03\x04", // 㦡
+ 0x39a2: "\x04\x04\x02\x03\x01\x04\x03\x01\x04\x05\x01\x01\x05\x04\x05\x02", // 㦢
+ 0x39a3: "\x03\x03\x02\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x01\x02\x04\x05\x04\x04", // 㦣
+ 0x39a4: "\x01\x02\x01\x04\x05\x01\x02\x05\x01\x04\x03\x01\x03\x05\x03\x04\x04\x05\x04\x04", // 㦤
+ 0x39a5: "\x04\x04\x02\x04\x04\x05\x01\x01\x01\x02\x02\x05\x02\x02\x01\x04\x05\x04\x04", // 㦥
+ 0x39a6: "\x04\x04\x02\x05\x01\x01\x02\x02\x05\x01\x01\x03\x02\x01\x05\x01\x01\x03\x05", // 㦦
+ 0x39a7: "\x04\x04\x02\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01", // 㦧
+ 0x39a8: "\x04\x04\x02\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 㦨
+ 0x39a9: "\x04\x04\x02\x05\x02\x03\x04\x04\x03\x01\x02\x01\x05\x01\x01\x04\x05\x04\x04", // 㦩
+ 0x39aa: "\x04\x04\x02\x04\x01\x01\x01\x02\x05\x01\x04\x03\x03\x04\x04\x03\x03\x04\x05\x04", // 㦪
+ 0x39ab: "\x04\x04\x02\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 㦫
+ 0x39ac: "\x04\x04\x02\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 㦬
+ 0x39ad: "\x04\x04\x02\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x03\x04\x01", // 㦭
+ 0x39ae: "\x01\x01\x01\x05\x03\x04", // 㦮
+ 0x39af: "\x01\x05\x04\x01\x05\x03\x04", // 㦯
+ 0x39b0: "\x03\x04\x03\x04\x01\x05\x03\x04", // 㦰
+ 0x39b1: "\x01\x01\x01\x02\x01\x05\x03\x04", // 㦱
+ 0x39b2: "\x01\x02\x01\x05\x03\x05\x03\x04", // 㦲
+ 0x39b3: "\x01\x02\x01\x01\x02\x01\x05\x03\x04", // 㦳
+ 0x39b4: "\x01\x03\x05\x04\x02\x05\x01\x05\x03\x04", // 㦴
+ 0x39b5: "\x03\x01\x01\x02\x03\x04\x01\x05\x03\x04", // 㦵
+ 0x39b6: "\x01\x01\x05\x04\x01\x02\x01\x05\x03\x04", // 㦶
+ 0x39b7: "\x05\x04\x02\x05\x01\x01\x02\x01\x05\x03\x04", // 㦷
+ 0x39b8: "\x02\x01\x02\x05\x01\x01\x01\x02\x01\x05\x03\x04", // 㦸
+ 0x39b9: "\x02\x05\x01\x01\x01\x03\x05\x03\x03\x01\x05\x03\x04", // 㦹
+ 0x39ba: "\x01\x03\x01\x01\x05\x03\x04\x01\x02\x04\x01\x05\x03\x04", // 㦺
+ 0x39bb: "\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01\x01\x05\x03\x04", // 㦻
+ 0x39bc: "\x01\x01\x01\x03\x04\x03\x02\x01\x05\x01\x01\x01\x05\x04", // 㦼
+ 0x39bd: "\x01\x03\x02\x05\x01\x01\x01\x02\x05\x01\x01\x05\x05\x05\x05\x03\x04", // 㦽
+ 0x39be: "\x04\x05\x01\x03\x05\x02\x05", // 㦾
+ 0x39bf: "\x04\x05\x01\x03\x01\x02\x03\x04", // 㦿
+ 0x39c0: "\x04\x05\x01\x03\x03\x05\x04", // 㧀
+ 0x39c1: "\x04\x05\x01\x03\x01\x02\x01\x05\x04", // 㧁
+ 0x39c2: "\x04\x05\x01\x03\x02\x05\x01\x02\x01", // 㧂
+ 0x39c3: "\x01\x02\x01\x05\x02", // 㧃
+ 0x39c4: "\x01\x02\x01\x05\x02", // 㧄
+ 0x39c5: "\x01\x02\x01\x05\x03", // 㧅
+ 0x39c6: "\x01\x02\x01\x02\x05\x02", // 㧆
+ 0x39c7: "\x01\x02\x01\x02\x05\x01", // 㧇
+ 0x39c8: "\x01\x02\x01\x05\x01\x05", // 㧈
+ 0x39c9: "\x01\x02\x01\x03\x01\x01\x05", // 㧉
+ 0x39ca: "\x01\x02\x01\x01\x02\x05\x02", // 㧊
+ 0x39cb: "\x01\x02\x01\x01\x03\x04\x04", // 㧋
+ 0x39cc: "\x01\x02\x01\x03\x01\x01\x05", // 㧌
+ 0x39cd: "\x01\x02\x01\x04\x01\x05\x03", // 㧍
+ 0x39ce: "\x01\x02\x01\x01\x05\x02\x03", // 㧎
+ 0x39cf: "\x01\x02\x01\x02\x05\x03\x04", // 㧏
+ 0x39d0: "\x01\x02\x01\x05\x04\x05\x04", // 㧐
+ 0x39d1: "\x01\x02\x01\x04\x03\x05\x04", // 㧑
+ 0x39d2: "\x01\x02\x01\x04\x04\x05\x03\x04", // 㧒
+ 0x39d3: "\x01\x02\x01\x03\x03\x05\x04\x04", // 㧓
+ 0x39d4: "\x01\x02\x01\x01\x03\x05\x03\x04", // 㧔
+ 0x39d5: "\x01\x02\x01\x03\x05\x03\x05\x02", // 㧕
+ 0x39d6: "\x01\x02\x01\x04\x05\x01\x03\x05", // 㧖
+ 0x39d7: "\x01\x02\x01\x02\x01\x02\x01\x03\x05", // 㧗
+ 0x39d8: "\x02\x01\x02\x01\x03\x05\x03\x01\x01\x02", // 㧘
+ 0x39d9: "\x01\x02\x01\x04\x05\x04\x03\x04", // 㧙
+ 0x39da: "\x01\x02\x01\x01\x05\x05\x04", // 㧚
+ 0x39db: "\x02\x02\x03\x01\x04\x03\x01\x01\x02", // 㧛
+ 0x39dc: "\x01\x02\x01\x01\x02\x05\x02\x05", // 㧜
+ 0x39dd: "\x05\x03\x02\x05\x01\x03\x01\x01\x02", // 㧝
+ 0x39de: "\x01\x02\x01\x03\x01\x03\x05\x04", // 㧞
+ 0x39df: "\x01\x02\x01\x04\x04\x01\x01\x05", // 㧟
+ 0x39e0: "\x01\x02\x01\x05\x04\x02\x03\x04", // 㧠
+ 0x39e1: "\x01\x02\x01\x04\x01\x05\x03\x03\x04", // 㧡
+ 0x39e2: "\x01\x02\x01\x02\x05\x01\x03\x04\x01", // 㧢
+ 0x39e3: "\x01\x02\x01\x03\x01\x01\x02\x03\x04", // 㧣
+ 0x39e4: "\x01\x02\x01\x04\x01\x05\x04\x03\x05", // 㧤
+ 0x39e5: "\x01\x02\x01\x03\x01\x02\x01\x03\x05", // 㧥
+ 0x39e6: "\x01\x02\x01\x03\x05\x02\x05\x01\x01", // 㧦
+ 0x39e7: "\x01\x02\x01\x04\x01\x05\x04\x03\x02\x05", // 㧧
+ 0x39e8: "\x01\x02\x01\x03\x03\x01\x02\x05\x01", // 㧨
+ 0x39e9: "\x01\x02\x01\x03\x05\x01\x02\x05\x02", // 㧩
+ 0x39ea: "\x01\x02\x01\x03\x05\x01\x03\x05\x05", // 㧪
+ 0x39eb: "\x01\x02\x01\x01\x03\x02\x05\x02\x02", // 㧫
+ 0x39ec: "\x01\x02\x01\x03\x05\x04\x03\x01\x01\x02", // 㧬
+ 0x39ed: "\x01\x02\x01\x05\x02\x03\x01\x01\x02", // 㧭
+ 0x39ee: "\x01\x02\x01\x03\x02\x01\x05\x01\x01", // 㧮
+ 0x39ef: "\x01\x02\x01\x01\x02\x01\x03\x03\x05", // 㧯
+ 0x39f0: "\x01\x02\x01\x03\x05\x02\x03\x04", // 㧰
+ 0x39f1: "\x03\x04\x01\x02\x05\x01\x03\x01\x01\x02", // 㧱
+ 0x39f2: "\x01\x02\x01\x04\x04\x05\x01\x02\x03\x04", // 㧲
+ 0x39f3: "\x01\x02\x01\x03\x04\x05\x03\x03\x01\x01\x02", // 㧳
+ 0x39f4: "\x01\x02\x01\x03\x01\x02\x01\x05\x03\x04", // 㧴
+ 0x39f5: "\x01\x02\x01\x01\x03\x02\x04\x02\x05\x01", // 㧵
+ 0x39f6: "\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03", // 㧶
+ 0x39f7: "\x01\x02\x01\x01\x01\x03\x04\x02\x05\x01", // 㧷
+ 0x39f8: "\x01\x02\x01\x04\x01\x02\x05\x01\x05\x02", // 㧸
+ 0x39f9: "\x01\x02\x01\x02\x05\x01\x01\x01\x01\x02\x04", // 㧹
+ 0x39fa: "\x01\x02\x01\x02\x05\x03\x04\x02\x05\x01\x01", // 㧺
+ 0x39fb: "\x01\x02\x01\x01\x03\x05\x03\x03\x04\x03\x04", // 㧻
+ 0x39fc: "\x01\x02\x01\x01\x01\x02\x01\x03\x05\x03\x04", // 㧼
+ 0x39fd: "\x01\x02\x01\x02\x05\x01\x02\x02\x05\x01\x01", // 㧽
+ 0x39fe: "\x01\x02\x01\x03\x05\x03\x03\x04\x05\x04\x04", // 㧾
+ 0x39ff: "\x01\x02\x01\x03\x04\x03\x04\x02\x01\x03\x04", // 㧿
+ 0x3a00: "\x01\x02\x01\x03\x01\x05\x01\x01\x02\x03\x04", // 㨀
+ 0x3a01: "\x01\x02\x01\x01\x02\x02\x05\x01\x01\x01\x01", // 㨁
+ 0x3a02: "\x01\x02\x01\x01\x02\x05\x01\x01\x02\x03\x04", // 㨂
+ 0x3a03: "\x01\x02\x01\x04\x01\x02\x05\x01\x05\x02\x01", // 㨃
+ 0x3a04: "\x01\x02\x01\x03\x05\x01\x02\x01\x02\x05\x01", // 㨄
+ 0x3a05: "\x01\x02\x01\x01\x02\x02\x02\x05\x03\x04", // 㨅
+ 0x3a06: "\x01\x02\x01\x01\x02\x03\x04\x01\x02\x03\x04", // 㨆
+ 0x3a07: "\x04\x04\x01\x05\x03\x02\x05\x04\x03\x01\x01\x02", // 㨇
+ 0x3a08: "\x01\x02\x01\x04\x01\x03\x04\x03\x02\x01\x01", // 㨈
+ 0x3a09: "\x01\x02\x01\x05\x01\x05\x01\x05\x02\x05\x01\x01", // 㨉
+ 0x3a0a: "\x01\x02\x01\x01\x03\x01\x02\x01\x02\x05\x01\x01", // 㨊
+ 0x3a0b: "\x01\x02\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 㨋
+ 0x3a0c: "\x01\x02\x01\x04\x05\x03\x01\x01\x02\x03\x05\x03\x04", // 㨌
+ 0x3a0d: "\x01\x02\x01\x01\x02\x01\x01\x02\x04\x03\x01\x01\x02", // 㨍
+ 0x3a0e: "\x01\x02\x01\x01\x03\x02\x05\x02\x02\x01\x03\x04", // 㨎
+ 0x3a0f: "\x01\x02\x01\x02\x05\x02\x01\x03\x04\x03\x03\x04", // 㨏
+ 0x3a10: "\x01\x02\x01\x03\x02\x02\x05\x01\x01\x02\x03\x04", // 㨐
+ 0x3a11: "\x01\x02\x01\x03\x04\x05\x02\x03\x04\x03\x05\x04", // 㨑
+ 0x3a12: "\x01\x02\x01\x01\x03\x04\x01\x02\x01\x01\x02\x01", // 㨒
+ 0x3a13: "\x01\x02\x01\x04\x04\x05\x03\x01\x01\x02", // 㨓
+ 0x3a14: "\x01\x02\x01\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 㨔
+ 0x3a15: "\x01\x02\x01\x05\x03\x05\x04\x02\x05\x02\x02\x01", // 㨕
+ 0x3a16: "\x01\x02\x01\x01\x05\x04\x01\x02\x01\x03\x01\x03\x04", // 㨖
+ 0x3a17: "\x01\x02\x01\x02\x01\x05\x01\x01\x02\x01\x03\x04", // 㨗
+ 0x3a18: "\x01\x02\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01", // 㨘
+ 0x3a19: "\x01\x02\x01\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04", // 㨙
+ 0x3a1a: "\x01\x02\x01\x01\x02\x02\x03\x05\x02\x05\x01\x01", // 㨚
+ 0x3a1b: "\x01\x02\x01\x05\x01\x01\x02\x02\x05\x01\x01\x03\x04", // 㨛
+ 0x3a1c: "\x01\x02\x01\x02\x01\x05\x03\x01\x05\x04\x01\x03\x04", // 㨜
+ 0x3a1d: "\x01\x02\x01\x05\x01\x03\x02\x04\x03\x02\x05\x01\x01", // 㨝
+ 0x3a1e: "\x01\x02\x01\x01\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 㨞
+ 0x3a1f: "\x01\x02\x01\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 㨟
+ 0x3a20: "\x01\x02\x01\x04\x05\x02\x05\x01\x01\x04\x01\x03\x04", // 㨠
+ 0x3a21: "\x01\x02\x01\x02\x05\x01\x03\x05\x03\x03\x03\x04\x01", // 㨡
+ 0x3a22: "\x01\x02\x01\x05\x04\x02\x05\x01\x01\x03\x05\x03\x05", // 㨢
+ 0x3a23: "\x01\x02\x01\x03\x04\x05\x04\x05\x04\x01\x05\x04\x01", // 㨣
+ 0x3a24: "\x01\x02\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05", // 㨤
+ 0x3a25: "\x01\x02\x01\x05\x05\x04\x04\x04\x04\x02\x05\x03\x04", // 㨥
+ 0x3a26: "\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 㨦
+ 0x3a27: "\x01\x02\x01\x05\x04\x01\x03\x04\x02\x05\x01\x02\x01", // 㨧
+ 0x3a28: "\x01\x02\x01\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 㨨
+ 0x3a29: "\x01\x02\x01\x04\x01\x03\x03\x01\x02\x01\x05\x04", // 㨩
+ 0x3a2a: "\x01\x02\x01\x02\x05\x01\x01\x02\x04\x03\x01\x03\x05", // 㨪
+ 0x3a2b: "\x01\x02\x01\x02\x02\x03\x01\x04\x02\x05\x02\x02\x01", // 㨫
+ 0x3a2c: "\x01\x02\x01\x01\x02\x01\x02\x05\x01\x03\x05\x03\x04", // 㨬
+ 0x3a2d: "\x01\x02\x01\x04\x05\x01\x03\x02\x05\x01\x05\x02\x01\x05", // 㨭
+ 0x3a2e: "\x01\x02\x01\x03\x02\x05\x01\x01\x03\x05\x05\x01\x03\x05", // 㨮
+ 0x3a2f: "\x01\x02\x01\x04\x01\x02\x05\x01\x05\x02\x01\x05\x02", // 㨯
+ 0x3a30: "\x01\x02\x01\x04\x01\x03\x04\x05\x04\x03\x05\x03\x04", // 㨰
+ 0x3a31: "\x01\x02\x01\x03\x05\x04\x04\x04\x01\x01\x01\x02\x05\x01", // 㨱
+ 0x3a32: "\x01\x02\x01\x01\x02\x02\x04\x05\x01\x02\x03\x04", // 㨲
+ 0x3a33: "\x01\x02\x01\x04\x04\x05\x01\x03\x04\x01\x02\x05\x01\x02", // 㨳
+ 0x3a34: "\x01\x02\x01\x01\x02\x02\x05\x01\x01\x02\x03\x01\x05", // 㨴
+ 0x3a35: "\x01\x02\x01\x04\x03\x01\x02\x05\x01\x01\x02\x02\x05\x03", // 㨵
+ 0x3a36: "\x01\x02\x01\x03\x02\x05\x01\x01\x05\x04\x04\x04\x04", // 㨶
+ 0x3a37: "\x01\x02\x01\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01", // 㨷
+ 0x3a38: "\x01\x02\x01\x04\x04\x05\x04\x05\x04\x03\x04\x02\x05\x02", // 㨸
+ 0x3a39: "\x01\x02\x01\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x01", // 㨹
+ 0x3a3a: "\x01\x02\x01\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04", // 㨺
+ 0x3a3b: "\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02\x03\x01\x01\x02", // 㨻
+ 0x3a3c: "\x02\x05\x01\x02\x01\x03\x05\x04\x02\x05\x01\x03\x01\x01\x02", // 㨼
+ 0x3a3d: "\x01\x02\x01\x01\x02\x05\x01\x02\x05\x01\x02\x01\x02\x02", // 㨽
+ 0x3a3e: "\x01\x02\x01\x04\x03\x01\x01\x02\x01\x04\x05\x05\x03\x04", // 㨾
+ 0x3a3f: "\x01\x02\x01\x02\x01\x05\x03\x01\x05\x03\x05\x04\x03\x05", // 㨿
+ 0x3a40: "\x01\x02\x01\x02\x01\x05\x03\x01\x05\x03\x05\x03\x03\x04", // 㩀
+ 0x3a41: "\x01\x02\x01\x04\x04\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 㩁
+ 0x3a42: "\x01\x02\x01\x03\x05\x03\x05\x01\x01\x02\x04\x04\x01\x02", // 㩂
+ 0x3a43: "\x01\x02\x01\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x04\x04", // 㩃
+ 0x3a44: "\x01\x02\x01\x02\x05\x02\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 㩄
+ 0x3a45: "\x01\x02\x01\x01\x02\x01\x05\x02\x05\x01\x02\x05\x01\x02\x01", // 㩅
+ 0x3a46: "\x01\x02\x01\x04\x01\x02\x05\x01\x02\x03\x04\x01\x03\x05\x04", // 㩆
+ 0x3a47: "\x01\x02\x01\x05\x01\x01\x01\x02\x01\x02\x05\x01\x02\x01\x01", // 㩇
+ 0x3a48: "\x01\x02\x01\x04\x04\x05\x03\x04\x05\x01\x01\x03\x02\x05\x01", // 㩈
+ 0x3a49: "\x01\x02\x01\x03\x04\x01\x02\x05\x01\x05\x04\x01\x05\x04\x01", // 㩉
+ 0x3a4a: "\x01\x02\x01\x03\x04\x04\x03\x02\x05\x02\x02\x01\x01\x02\x04", // 㩊
+ 0x3a4b: "\x01\x02\x01\x05\x01\x01\x02\x03\x02\x01\x01\x05\x05\x02\x01\x02", // 㩋
+ 0x3a4c: "\x01\x02\x01\x05\x01\x05\x03\x02\x02\x05\x01\x01\x01\x03\x04", // 㩌
+ 0x3a4d: "\x01\x02\x01\x03\x01\x04\x03\x01\x04\x01\x02\x05\x02\x03\x04", // 㩍
+ 0x3a4e: "\x01\x02\x01\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x04\x04", // 㩎
+ 0x3a4f: "\x01\x02\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 㩏
+ 0x3a50: "\x01\x02\x01\x03\x01\x04\x03\x01\x04\x01\x02\x01\x01\x02\x04", // 㩐
+ 0x3a51: "\x01\x02\x01\x01\x01\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01", // 㩑
+ 0x3a52: "\x01\x02\x01\x01\x02\x03\x04\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 㩒
+ 0x3a53: "\x03\x02\x01\x05\x01\x01\x01\x02\x01\x03\x05\x05\x04\x03\x01\x01\x02", // 㩓
+ 0x3a54: "\x01\x02\x01\x05\x01\x03\x01\x02\x02\x01\x03\x04\x03\x05\x05\x04", // 㩔
+ 0x3a55: "\x01\x02\x01\x01\x04\x05\x02\x04\x04\x04\x04\x03\x04\x04\x05\x04", // 㩕
+ 0x3a56: "\x01\x02\x01\x01\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x01\x01", // 㩖
+ 0x3a57: "\x01\x02\x01\x02\x05\x02\x03\x04\x04\x01\x01\x01\x02\x01\x05\x03", // 㩗
+ 0x3a58: "\x01\x02\x01\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01\x05\x03\x04", // 㩘
+ 0x3a59: "\x01\x02\x01\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x01\x02\x01", // 㩙
+ 0x3a5a: "\x01\x02\x01\x01\x02\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 㩚
+ 0x3a5b: "\x01\x02\x01\x02\x05\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04\x01", // 㩛
+ 0x3a5c: "\x01\x02\x01\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01", // 㩜
+ 0x3a5d: "\x01\x02\x01\x04\x01\x02\x05\x01\x04\x05\x01\x03\x05\x03\x03\x03\x04", // 㩝
+ 0x3a5e: "\x01\x02\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x01\x02\x03\x04", // 㩞
+ 0x3a5f: "\x01\x02\x01\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x01\x02\x03\x04", // 㩟
+ 0x3a60: "\x01\x02\x01\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x04\x04\x04\x04", // 㩠
+ 0x3a61: "\x01\x02\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01", // 㩡
+ 0x3a62: "\x01\x02\x01\x01\x02\x02\x02\x05\x02\x02\x01\x01\x03\x04\x05\x03\x04", // 㩢
+ 0x3a63: "\x01\x02\x01\x05\x04\x01\x05\x04\x01\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 㩣
+ 0x3a64: "\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04\x04\x01\x05\x03\x03\x01\x03\x04", // 㩤
+ 0x3a65: "\x01\x02\x01\x01\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 㩥
+ 0x3a66: "\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x03\x04\x02\x05\x01", // 㩦
+ 0x3a67: "\x01\x02\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x04\x02\x04\x01\x03\x04", // 㩧
+ 0x3a68: "\x01\x02\x01\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 㩨
+ 0x3a69: "\x01\x02\x01\x03\x05\x02\x05\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 㩩
+ 0x3a6a: "\x01\x02\x01\x05\x05\x04\x04\x04\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 㩪
+ 0x3a6b: "\x01\x02\x01\x03\x03\x01\x02\x03\x03\x01\x02\x02\x05\x01\x01\x01\x03\x04", // 㩫
+ 0x3a6c: "\x01\x02\x01\x02\x01\x05\x03\x01\x05\x02\x02\x04\x03\x01\x01\x05\x03\x04", // 㩬
+ 0x3a6d: "\x01\x02\x01\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x05\x02\x01", // 㩭
+ 0x3a6e: "\x01\x02\x01\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04\x03\x01\x01\x02", // 㩮
+ 0x3a6f: "\x01\x02\x01\x03\x01\x05\x05\x04\x01\x04\x03\x01\x03\x04\x05\x05\x04\x02\x03\x04", // 㩯
+ 0x3a70: "\x01\x02\x01\x01\x02\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 㩰
+ 0x3a71: "\x01\x02\x01\x03\x04\x04\x03\x02\x05\x02\x02\x01\x05\x01\x01\x05\x04\x01\x02\x04", // 㩱
+ 0x3a72: "\x01\x02\x01\x01\x02\x02\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 㩲
+ 0x3a73: "\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 㩳
+ 0x3a74: "\x01\x02\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 㩴
+ 0x3a75: "\x01\x02\x01\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x03\x04\x04", // 㩵
+ 0x3a76: "\x01\x02\x01\x03\x01\x04\x03\x01\x04\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 㩶
+ 0x3a77: "\x01\x02\x01\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 㩷
+ 0x3a78: "\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x04\x04\x05\x03\x05\x04\x01", // 㩸
+ 0x3a79: "\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x04\x05\x02\x05\x01\x01\x01", // 㩹
+ 0x3a7a: "\x01\x05\x01\x05\x01\x02\x05\x04", // 㩺
+ 0x3a7b: "\x03\x05\x01\x03\x05\x05\x01\x02\x05\x04", // 㩻
+ 0x3a7c: "\x03\x05\x04\x03\x05\x04\x01\x02\x05\x04", // 㩼
+ 0x3a7d: "\x01\x02\x05\x01\x02\x03\x04\x01\x02\x05\x04", // 㩽
+ 0x3a7e: "\x03\x01\x02\x01\x02\x02\x01\x01\x01\x02\x05\x04", // 㩾
+ 0x3a7f: "\x03\x01\x05\x03\x01\x03\x04", // 㩿
+ 0x3a80: "\x01\x01\x02\x03\x01\x03\x04", // 㪀
+ 0x3a81: "\x03\x04\x04\x05\x02\x01\x05\x04", // 㪁
+ 0x3a82: "\x03\x01\x01\x05\x02\x01\x05\x04", // 㪂
+ 0x3a83: "\x01\x02\x05\x01\x02\x02\x01\x05\x04", // 㪃
+ 0x3a84: "\x05\x01\x05\x03\x02\x03\x01\x03\x04", // 㪄
+ 0x3a85: "\x01\x02\x05\x03\x04\x02\x01\x05\x04", // 㪅
+ 0x3a86: "\x03\x05\x01\x05\x04\x02\x01\x05\x04", // 㪆
+ 0x3a87: "\x03\x01\x02\x01\x03\x05\x03\x01\x03\x04", // 㪇
+ 0x3a88: "\x01\x02\x01\x01\x02\x01\x02\x01\x05\x04", // 㪈
+ 0x3a89: "\x03\x04\x01\x02\x05\x01\x03\x01\x03\x04", // 㪉
+ 0x3a8a: "\x05\x01\x01\x03\x02\x05\x01\x02\x01\x05\x04", // 㪊
+ 0x3a8b: "\x02\x05\x01\x01\x01\x01\x02\x02\x01\x05\x04", // 㪋
+ 0x3a8c: "\x05\x04\x02\x05\x01\x01\x02\x02\x01\x05\x04", // 㪌
+ 0x3a8d: "\x01\x02\x04\x05\x05\x02\x01\x03\x01\x03\x04", // 㪍
+ 0x3a8e: "\x01\x03\x04\x03\x04\x03\x04\x02\x01\x05\x04", // 㪎
+ 0x3a8f: "\x03\x02\x05\x01\x02\x01\x03\x01\x02\x02\x01\x05\x04", // 㪏
+ 0x3a90: "\x04\x05\x01\x03\x01\x03\x04\x04\x02\x01\x05\x04", // 㪐
+ 0x3a91: "\x01\x03\x04\x02\x05\x01\x01\x05\x02\x01\x05\x04", // 㪑
+ 0x3a92: "\x03\x02\x01\x05\x01\x01\x03\x05\x02\x01\x05\x04", // 㪒
+ 0x3a93: "\x03\x01\x02\x02\x01\x01\x03\x05\x02\x01\x05\x04", // 㪓
+ 0x3a94: "\x01\x02\x03\x04\x01\x02\x03\x04\x02\x01\x05\x04", // 㪔
+ 0x3a95: "\x02\x01\x02\x05\x01\x01\x01\x02\x02\x01\x05\x04", // 㪕
+ 0x3a96: "\x05\x01\x01\x02\x04\x01\x03\x04\x02\x01\x05\x04", // 㪖
+ 0x3a97: "\x04\x01\x04\x03\x01\x02\x05\x01\x02\x01\x05\x04", // 㪗
+ 0x3a98: "\x03\x04\x01\x02\x05\x01\x03\x04\x03\x01\x03\x04", // 㪘
+ 0x3a99: "\x02\x05\x01\x01\x01\x02\x03\x04\x03\x01\x03\x04", // 㪙
+ 0x3a9a: "\x01\x02\x02\x01\x02\x05\x01\x01\x03\x01\x03\x04", // 㪚
+ 0x3a9b: "\x01\x02\x02\x01\x01\x01\x03\x04\x05\x02\x01\x05\x04", // 㪛
+ 0x3a9c: "\x02\x05\x02\x01\x03\x02\x05\x01\x01\x02\x01\x05\x04", // 㪜
+ 0x3a9d: "\x01\x02\x05\x04\x03\x01\x02\x03\x04\x02\x01\x05\x04", // 㪝
+ 0x3a9e: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x01\x05\x04", // 㪞
+ 0x3a9f: "\x04\x01\x02\x05\x01\x02\x05\x01\x01\x03\x01\x03\x04", // 㪟
+ 0x3aa0: "\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04\x02\x01\x05\x04", // 㪠
+ 0x3aa1: "\x04\x04\x05\x01\x01\x01\x02\x02\x05\x01\x02\x01\x05\x04", // 㪡
+ 0x3aa2: "\x03\x02\x01\x05\x01\x01\x02\x05\x04\x02\x01\x05\x04", // 㪢
+ 0x3aa3: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x03\x01\x03\x04", // 㪣
+ 0x3aa4: "\x02\x05\x01\x01\x01\x02\x02\x01\x01\x02\x03\x01\x03\x04", // 㪤
+ 0x3aa5: "\x02\x01\x05\x03\x01\x05\x02\x05\x01\x01\x01\x02\x01\x05\x04", // 㪥
+ 0x3aa6: "\x04\x04\x05\x01\x02\x05\x01\x02\x01\x03\x04\x03\x01\x03\x04", // 㪦
+ 0x3aa7: "\x03\x04\x01\x02\x05\x01\x05\x04\x01\x05\x04\x01\x02\x01\x05\x04", // 㪧
+ 0x3aa8: "\x04\x03\x01\x01\x01\x02\x04\x03\x01\x02\x05\x01\x02\x01\x05\x04", // 㪨
+ 0x3aa9: "\x05\x01\x01\x02\x03\x02\x01\x01\x05\x05\x02\x01\x02\x02\x01\x05\x04", // 㪩
+ 0x3aaa: "\x01\x01\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x02\x01\x05\x04", // 㪪
+ 0x3aab: "\x02\x01\x04\x05\x01\x03\x04\x03\x04\x02\x05\x01\x01\x01\x02\x01\x05\x04", // 㪫
+ 0x3aac: "\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01\x02\x01\x05\x04", // 㪬
+ 0x3aad: "\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01\x02\x01\x05\x04", // 㪭
+ 0x3aae: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01\x05\x04", // 㪮
+ 0x3aaf: "\x04\x01\x03\x04\x01\x01\x02", // 㪯
+ 0x3ab0: "\x04\x01\x03\x04\x04\x03\x01\x02\x03\x04", // 㪰
+ 0x3ab1: "\x04\x01\x03\x04\x03\x05\x02\x05\x01\x03\x04", // 㪱
+ 0x3ab2: "\x04\x04\x01\x02\x05", // 㪲
+ 0x3ab3: "\x04\x04\x01\x02\x05", // 㪳
+ 0x3ab4: "\x01\x01\x03\x05\x04\x04\x01\x02", // 㪴
+ 0x3ab5: "\x04\x03\x01\x01\x03\x04\x04\x01\x02", // 㪵
+ 0x3ab6: "\x01\x03\x02\x05\x01\x01\x04\x04\x01\x02", // 㪶
+ 0x3ab7: "\x01\x02\x05\x01\x04\x03\x01\x04\x04\x01\x02", // 㪷
+ 0x3ab8: "\x01\x02\x02\x01\x01\x01\x03\x04\x04\x04\x01\x02", // 㪸
+ 0x3ab9: "\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01\x04\x04\x01\x02", // 㪹
+ 0x3aba: "\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x04\x04\x04\x01\x02", // 㪺
+ 0x3abb: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x04\x04\x01\x02", // 㪻
+ 0x3abc: "\x01\x02\x05\x01\x02\x03\x03\x01\x02", // 㪼
+ 0x3abd: "\x01\x02\x05\x01\x01\x03\x03\x01\x02", // 㪽
+ 0x3abe: "\x03\x05\x04\x02\x05\x01\x03\x03\x01\x02", // 㪾
+ 0x3abf: "\x05\x02\x03\x05\x02\x03\x03\x03\x01\x02", // 㪿
+ 0x3ac0: "\x02\x05\x01\x01\x02\x05\x01\x01\x03\x03\x01\x02", // 㫀
+ 0x3ac1: "\x05\x05\x04\x05\x05\x04\x01\x03\x05\x05\x03\x03\x01\x02", // 㫁
+ 0x3ac2: "\x04\x01\x03\x01\x02\x02\x01\x04\x04\x04\x04\x03\x03\x01\x02", // 㫂
+ 0x3ac3: "\x04\x01\x05\x03\x03\x04", // 㫃
+ 0x3ac4: "\x01\x01\x03\x05\x04\x01\x05\x03", // 㫄
+ 0x3ac5: "\x04\x01\x05\x03\x03\x04\x01\x01\x03\x02", // 㫅
+ 0x3ac6: "\x04\x01\x05\x03\x03\x04\x02\x03\x04", // 㫆
+ 0x3ac7: "\x04\x01\x05\x03\x03\x04\x04\x04\x05", // 㫇
+ 0x3ac8: "\x04\x01\x05\x03\x03\x04\x04\x04\x05", // 㫈
+ 0x3ac9: "\x04\x01\x05\x03\x03\x05\x01\x03\x05\x05", // 㫉
+ 0x3aca: "\x04\x01\x05\x03\x03\x01\x01\x02\x05\x01\x02", // 㫊
+ 0x3acb: "\x04\x01\x05\x03\x03\x01\x02\x05\x02\x01\x01", // 㫋
+ 0x3acc: "\x04\x01\x05\x03\x03\x01\x01\x02\x01\x02\x01", // 㫌
+ 0x3acd: "\x04\x01\x05\x03\x03\x01\x03\x02\x02\x03\x01\x03\x04", // 㫍
+ 0x3ace: "\x04\x01\x05\x03\x03\x01\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 㫎
+ 0x3acf: "\x04\x01\x05\x03\x03\x01\x01\x02\x05\x02\x02\x01\x05\x03\x01", // 㫏
+ 0x3ad0: "\x02\x05\x01\x01\x03\x05", // 㫐
+ 0x3ad1: "\x02\x05\x01\x01\x05\x03", // 㫑
+ 0x3ad2: "\x02\x05\x01\x01\x01\x03\x02", // 㫒
+ 0x3ad3: "\x02\x05\x01\x01\x03\x01\x05", // 㫓
+ 0x3ad4: "\x02\x05\x01\x01\x02\x01\x01", // 㫔
+ 0x3ad5: "\x02\x05\x01\x01\x01\x03\x05", // 㫕
+ 0x3ad6: "\x02\x01\x01\x02\x05\x01\x01", // 㫖
+ 0x3ad7: "\x02\x05\x01\x01\x05\x02\x01", // 㫗
+ 0x3ad8: "\x01\x03\x02\x04\x02\x05\x01\x01", // 㫘
+ 0x3ad9: "\x02\x05\x01\x01\x01\x01\x03\x04", // 㫙
+ 0x3ada: "\x03\x05\x03\x03\x02\x05\x01\x01", // 㫚
+ 0x3adb: "\x02\x05\x01\x01\x02\x05\x01\x03\x05", // 㫛
+ 0x3adc: "\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 㫜
+ 0x3add: "\x02\x05\x01\x01\x03\x05\x01\x05\x04", // 㫝
+ 0x3ade: "\x02\x05\x01\x01\x05\x02\x02\x05\x04", // 㫞
+ 0x3adf: "\x02\x05\x01\x01\x03\x05\x02\x05\x01", // 㫟
+ 0x3ae0: "\x02\x05\x01\x01\x04\x03\x01\x01\x02", // 㫠
+ 0x3ae1: "\x02\x05\x01\x01\x03\x05\x04\x04\x04", // 㫡
+ 0x3ae2: "\x02\x05\x01\x01\x01\x02\x01\x05\x04", // 㫢
+ 0x3ae3: "\x02\x05\x01\x01\x02\x05\x01\x01\x05", // 㫣
+ 0x3ae4: "\x02\x05\x01\x01\x04\x05\x05\x03\x04", // 㫤
+ 0x3ae5: "\x02\x05\x01\x01\x03\x05\x04\x02\x05\x01", // 㫥
+ 0x3ae6: "\x03\x02\x02\x03\x05\x04\x02\x05\x01\x01", // 㫦
+ 0x3ae7: "\x02\x05\x01\x01\x04\x03\x01\x02\x03\x04", // 㫧
+ 0x3ae8: "\x02\x05\x01\x01\x04\x04\x05\x05\x03\x01", // 㫨
+ 0x3ae9: "\x01\x02\x01\x02\x02\x02\x05\x01\x01", // 㫩
+ 0x3aea: "\x01\x01\x01\x03\x04\x02\x02\x05\x01\x01", // 㫪
+ 0x3aeb: "\x02\x05\x01\x01\x01\x02\x02\x04\x03\x01", // 㫫
+ 0x3aec: "\x02\x05\x01\x01\x03\x05\x02\x05\x01\x01", // 㫬
+ 0x3aed: "\x02\x05\x01\x01\x01\x02\x01\x01\x02\x04", // 㫭
+ 0x3aee: "\x02\x01\x02\x01\x03\x05\x02\x05\x01\x01", // 㫮
+ 0x3aef: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 㫯
+ 0x3af0: "\x02\x05\x01\x01\x04\x05\x01\x01\x05\x03\x04", // 㫰
+ 0x3af1: "\x02\x05\x01\x01\x01\x02\x01\x03\x02\x03\x04", // 㫱
+ 0x3af2: "\x02\x05\x01\x01\x01\x02\x04\x05\x05\x02\x01", // 㫲
+ 0x3af3: "\x01\x03\x01\x01\x05\x03\x04\x02\x05\x01\x01", // 㫳
+ 0x3af4: "\x02\x05\x01\x01\x01\x02\x01\x03\x05\x02\x01", // 㫴
+ 0x3af5: "\x02\x05\x01\x01\x02\x01\x01\x01\x02\x01\x01\x01", // 㫵
+ 0x3af6: "\x02\x05\x01\x01\x05\x01\x01\x04\x05\x02\x05\x02", // 㫶
+ 0x3af7: "\x01\x02\x02\x01\x01\x01\x03\x04\x02\x05\x01\x01", // 㫷
+ 0x3af8: "\x02\x05\x01\x01\x01\x05\x01\x01\x02\x01\x03\x04", // 㫸
+ 0x3af9: "\x02\x05\x01\x01\x03\x03\x05\x01\x03\x03\x01\x02", // 㫹
+ 0x3afa: "\x03\x04\x03\x04\x03\x04\x03\x04\x02\x05\x01\x01", // 㫺
+ 0x3afb: "\x02\x05\x01\x01\x03\x04\x01\x02\x05\x01\x02\x02", // 㫻
+ 0x3afc: "\x02\x05\x01\x01\x03\x01\x01\x02\x05\x02\x02\x02", // 㫼
+ 0x3afd: "\x02\x05\x01\x01\x05\x01\x01\x02\x04\x01\x03\x04", // 㫽
+ 0x3afe: "\x02\x05\x01\x01\x02\x04\x03\x02\x05\x02\x05\x01", // 㫾
+ 0x3aff: "\x02\x05\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 㫿
+ 0x3b00: "\x02\x05\x01\x01\x04\x01\x02\x05\x01\x05\x02\x01", // 㬀
+ 0x3b01: "\x02\x05\x01\x01\x04\x04\x01\x03\x04\x01\x02\x05\x01", // 㬁
+ 0x3b02: "\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 㬂
+ 0x3b03: "\x02\x05\x01\x01\x05\x04\x02\x05\x01\x04\x03\x03\x04", // 㬃
+ 0x3b04: "\x02\x05\x01\x01\x01\x03\x01\x02\x01\x03\x02\x03\x04", // 㬄
+ 0x3b05: "\x02\x05\x01\x01\x02\x05\x02\x02\x01\x01\x05\x03", // 㬅
+ 0x3b06: "\x02\x05\x01\x01\x05\x01\x05\x01\x05\x02\x05\x01\x01", // 㬆
+ 0x3b07: "\x02\x05\x01\x01\x03\x05\x02\x05\x01\x03\x04", // 㬇
+ 0x3b08: "\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 㬈
+ 0x3b09: "\x02\x05\x01\x01\x01\x03\x02\x05\x02\x02\x01\x03\x04", // 㬉
+ 0x3b0a: "\x02\x05\x01\x01\x03\x04\x04\x03\x01\x01\x03\x05\x04", // 㬊
+ 0x3b0b: "\x02\x05\x01\x01\x03\x02\x05\x01\x03\x01\x01\x03\x04", // 㬋
+ 0x3b0c: "\x02\x05\x01\x01\x04\x01\x02\x05\x01\x01\x02\x03\x04", // 㬌
+ 0x3b0d: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 㬍
+ 0x3b0e: "\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x04\x04\x04\x04", // 㬎
+ 0x3b0f: "\x02\x05\x01\x01\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 㬏
+ 0x3b10: "\x02\x05\x01\x01\x01\x02\x02\x04\x03\x01\x02\x05\x01\x01", // 㬐
+ 0x3b11: "\x02\x05\x01\x01\x04\x01\x02\x05\x01\x05\x02\x01\x05\x02", // 㬑
+ 0x3b12: "\x02\x05\x01\x01\x01\x02\x02\x01\x03\x04\x04\x01\x03\x02", // 㬒
+ 0x3b13: "\x02\x05\x01\x01\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 㬓
+ 0x3b14: "\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 㬔
+ 0x3b15: "\x02\x05\x01\x01\x04\x05\x02\x04\x04\x03\x01\x01\x01\x02", // 㬕
+ 0x3b16: "\x02\x05\x01\x01\x04\x05\x01\x03\x03\x01\x03\x04\x02\x05\x01", // 㬖
+ 0x3b17: "\x02\x05\x01\x01\x03\x05\x04\x04\x01\x03\x04\x04\x04\x04\x04\x04", // 㬗
+ 0x3b18: "\x02\x05\x01\x01\x05\x01\x01\x02\x03\x02\x01\x01\x05\x05\x02\x01\x02", // 㬘
+ 0x3b19: "\x02\x05\x01\x01\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04", // 㬙
+ 0x3b1a: "\x02\x05\x01\x01\x04\x01\x05\x04\x02\x05\x01\x01\x03\x01\x03\x04", // 㬚
+ 0x3b1b: "\x02\x05\x01\x01\x03\x04\x01\x02\x05\x01\x05\x04\x01\x05\x04\x01", // 㬛
+ 0x3b1c: "\x01\x05\x04\x01\x02\x01\x01\x05\x04\x01\x02\x01\x02\x05\x01\x01", // 㬜
+ 0x3b1d: "\x02\x05\x01\x01\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 㬝
+ 0x3b1e: "\x02\x05\x01\x01\x02\x05\x02\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 㬞
+ 0x3b1f: "\x03\x05\x03\x03\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 㬟
+ 0x3b20: "\x02\x05\x01\x01\x03\x05\x02\x01\x01\x03\x01\x03\x04\x04\x04\x04\x04", // 㬠
+ 0x3b21: "\x02\x05\x01\x01\x01\x04\x05\x02\x04\x04\x04\x04\x03\x04\x04\x05\x04", // 㬡
+ 0x3b22: "\x02\x05\x01\x01\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01\x05\x03\x04", // 㬢
+ 0x3b23: "\x02\x05\x01\x01\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x01\x02\x04", // 㬣
+ 0x3b24: "\x02\x05\x01\x01\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x04\x04\x04\x04", // 㬤
+ 0x3b25: "\x02\x05\x01\x01\x05\x02\x02\x05\x02\x01\x03\x04\x04\x03\x01\x02\x03\x04", // 㬥
+ 0x3b26: "\x02\x05\x01\x01\x01\x02\x02\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 㬦
+ 0x3b27: "\x02\x05\x01\x01\x05\x02\x02\x05\x02\x01\x03\x04\x05\x05\x04\x02\x03\x04", // 㬧
+ 0x3b28: "\x02\x05\x01\x01\x01\x02\x01\x03\x02\x03\x04\x01\x02\x01\x03\x02\x03\x04", // 㬨
+ 0x3b29: "\x02\x05\x01\x01\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 㬩
+ 0x3b2a: "\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01\x04\x04\x05\x05\x05\x01", // 㬪
+ 0x3b2b: "\x01\x02\x02\x01\x02\x05\x01\x02\x01\x01\x03\x05\x04\x04\x04\x04\x02\x05\x01\x01", // 㬫
+ 0x3b2c: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 㬬
+ 0x3b2d: "\x02\x05\x01\x01\x03\x04\x04\x03\x02\x05\x02\x02\x01\x05\x01\x01\x05\x04\x01\x02\x04", // 㬭
+ 0x3b2e: "\x02\x05\x01\x01\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 㬮
+ 0x3b2f: "\x02\x05\x01\x01\x04\x01\x05\x02\x05\x01\x03\x05\x01\x01\x04\x03\x01\x01\x01\x02\x03\x05\x04", // 㬯
+ 0x3b30: "\x02\x05\x01\x01\x03\x04", // 㬰
+ 0x3b31: "\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01", // 㬱
+ 0x3b32: "\x01\x02\x05\x01\x01\x03\x04\x04\x03\x01\x03\x04\x02\x05\x02\x02\x01", // 㬲
+ 0x3b33: "\x03\x05\x01\x01\x03\x01\x01\x02", // 㬳
+ 0x3b34: "\x03\x05\x01\x01\x01\x02\x02\x01\x03\x04", // 㬴
+ 0x3b35: "\x03\x05\x01\x01\x04\x01\x03\x04\x03\x04", // 㬵
+ 0x3b36: "\x03\x05\x01\x01\x03\x01\x02\x01\x02\x05\x01", // 㬶
+ 0x3b37: "\x03\x05\x01\x01\x02\x05\x01\x02\x03\x04\x01", // 㬷
+ 0x3b38: "\x03\x05\x01\x01\x01\x02\x02\x03\x02\x03\x05", // 㬸
+ 0x3b39: "\x03\x05\x01\x01\x03\x05\x05\x01\x01\x02", // 㬹
+ 0x3b3a: "\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04\x02\x05\x02", // 㬺
+ 0x3b3b: "\x03\x05\x01\x01\x01\x02\x02\x04\x01\x05\x03\x02\x05", // 㬻
+ 0x3b3c: "\x01\x03\x02\x05\x01\x01\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 㬼
+ 0x3b3d: "\x03\x05\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x05", // 㬽
+ 0x3b3e: "\x01\x03\x01\x01\x03\x04\x05\x03\x05\x05\x04\x02\x05\x01\x01", // 㬾
+ 0x3b3f: "\x03\x05\x01\x01\x04\x01\x02\x05\x01\x05\x02\x01\x03\x01\x03\x04", // 㬿
+ 0x3b40: "\x03\x05\x01\x01\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x03\x04\x01", // 㭀
+ 0x3b41: "\x01\x02\x03\x04\x05\x03", // 㭁
+ 0x3b42: "\x01\x02\x03\x04\x02\x03\x04", // 㭂
+ 0x3b43: "\x01\x02\x03\x04\x05\x05\x04", // 㭃
+ 0x3b44: "\x01\x02\x03\x04\x05\x01\x02", // 㭄
+ 0x3b45: "\x01\x02\x03\x04\x01\x01\x01", // 㭅
+ 0x3b46: "\x05\x03\x01\x01\x02\x03\x04", // 㭆
+ 0x3b47: "\x01\x02\x03\x04\x05\x04\x03\x05", // 㭇
+ 0x3b48: "\x01\x02\x03\x04\x05\x01\x03\x04", // 㭈
+ 0x3b49: "\x01\x02\x02\x01\x02\x03\x04", // 㭉
+ 0x3b4a: "\x01\x02\x03\x04\x03\x02\x01\x05", // 㭊
+ 0x3b4b: "\x01\x02\x03\x04\x01\x01\x01\x02", // 㭋
+ 0x3b4c: "\x01\x02\x03\x04\x03\x01\x01\x02", // 㭌
+ 0x3b4d: "\x04\x01\x01\x05\x01\x02\x03\x04", // 㭍
+ 0x3b4e: "\x01\x02\x03\x04\x02\x05\x03\x04", // 㭎
+ 0x3b4f: "\x01\x02\x03\x04\x01\x01\x05\x02", // 㭏
+ 0x3b50: "\x01\x03\x04\x01\x01\x02\x03\x04", // 㭐
+ 0x3b51: "\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 㭑
+ 0x3b52: "\x01\x02\x03\x04\x02\x05\x01\x05\x01", // 㭒
+ 0x3b53: "\x01\x02\x03\x04\x05\x04\x01\x03\x02", // 㭓
+ 0x3b54: "\x01\x02\x03\x04\x03\x04\x03\x01\x02", // 㭔
+ 0x3b55: "\x01\x02\x03\x04\x01\x02\x01\x05\x04", // 㭕
+ 0x3b56: "\x01\x02\x03\x04\x03\x02\x01\x05\x04", // 㭖
+ 0x3b57: "\x01\x02\x03\x04\x02\x05\x02\x02\x01", // 㭗
+ 0x3b58: "\x01\x02\x03\x04\x03\x04\x01\x02\x05\x01", // 㭘
+ 0x3b59: "\x01\x02\x03\x04\x01\x02\x01\x01\x02\x04", // 㭙
+ 0x3b5a: "\x01\x02\x03\x04\x03\x01\x03\x05\x03\x04", // 㭚
+ 0x3b5b: "\x01\x02\x03\x04\x03\x03\x03\x05\x03\x04", // 㭛
+ 0x3b5c: "\x01\x02\x03\x04\x01\x01\x03\x05\x03\x04", // 㭜
+ 0x3b5d: "\x01\x02\x03\x04\x01\x02\x03\x04\x03\x05", // 㭝
+ 0x3b5e: "\x01\x02\x03\x04\x02\x03\x04\x03\x05\x03", // 㭞
+ 0x3b5f: "\x01\x02\x02\x01\x03\x04\x01\x02\x03\x04", // 㭟
+ 0x3b60: "\x01\x02\x03\x04\x03\x01\x02\x01\x03\x05", // 㭠
+ 0x3b61: "\x01\x02\x03\x04\x03\x02\x05\x03\x04\x01", // 㭡
+ 0x3b62: "\x01\x02\x03\x04\x01\x01\x03\x02\x02\x02", // 㭢
+ 0x3b63: "\x01\x02\x03\x04\x04\x02\x05\x02\x05\x01", // 㭣
+ 0x3b64: "\x01\x02\x03\x04\x03\x05\x04\x05\x01", // 㭤
+ 0x3b65: "\x01\x02\x03\x04\x03\x05\x02\x05\x03\x04", // 㭥
+ 0x3b66: "\x01\x02\x03\x04\x04\x04\x05\x03\x01\x05", // 㭦
+ 0x3b67: "\x03\x03\x05\x04\x01\x04\x01\x02\x03\x04", // 㭧
+ 0x3b68: "\x01\x02\x03\x04\x01\x05\x02\x03\x05\x02", // 㭨
+ 0x3b69: "\x01\x02\x03\x04\x03\x04\x04\x03\x01\x02\x04", // 㭩
+ 0x3b6a: "\x01\x02\x03\x04\x01\x02\x05\x01\x01\x02\x04", // 㭪
+ 0x3b6b: "\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x01", // 㭫
+ 0x3b6c: "\x01\x02\x03\x04\x01\x03\x05\x03\x03\x03\x04", // 㭬
+ 0x3b6d: "\x01\x02\x03\x04\x02\x05\x01\x05\x03\x02\x02", // 㭭
+ 0x3b6e: "\x01\x02\x03\x04\x05\x05\x05\x01\x03\x05\x04", // 㭮
+ 0x3b6f: "\x01\x02\x03\x04\x01\x02\x02\x01\x01\x01\x05", // 㭯
+ 0x3b70: "\x02\x01\x02\x01\x03\x05\x01\x02\x05\x02\x03\x04", // 㭰
+ 0x3b71: "\x01\x02\x03\x04\x01\x02\x05\x01\x01\x02\x05", // 㭱
+ 0x3b72: "\x01\x02\x03\x04\x03\x04\x03\x04\x02\x05\x01", // 㭲
+ 0x3b73: "\x01\x02\x03\x04\x01\x02\x01\x03\x05\x02\x01", // 㭳
+ 0x3b74: "\x01\x02\x03\x04\x02\x02\x05\x04\x01\x02\x01", // 㭴
+ 0x3b75: "\x01\x02\x03\x04\x03\x05\x02\x05\x01\x02\x01", // 㭵
+ 0x3b76: "\x01\x02\x03\x04\x01\x02\x02\x04\x01\x05\x03", // 㭶
+ 0x3b77: "\x01\x02\x03\x04\x02\x05\x01\x02\x01\x05\x03", // 㭷
+ 0x3b78: "\x01\x02\x03\x04\x03\x05\x02\x05\x01\x03\x05\x04", // 㭸
+ 0x3b79: "\x01\x02\x03\x04\x05\x01\x05\x04\x01\x05\x05\x04", // 㭹
+ 0x3b7a: "\x01\x02\x03\x04\x01\x03\x04\x02\x05\x01\x01\x05", // 㭺
+ 0x3b7b: "\x01\x02\x03\x04\x02\x04\x03\x02\x05\x02\x05\x01", // 㭻
+ 0x3b7c: "\x01\x02\x03\x04\x02\x05\x03\x04\x02\x05\x01\x01", // 㭼
+ 0x3b7d: "\x01\x02\x03\x04\x04\x01\x03\x03\x05\x01\x05\x04", // 㭽
+ 0x3b7e: "\x01\x02\x03\x04\x05\x01\x03\x05\x02\x02\x05\x02", // 㭾
+ 0x3b7f: "\x01\x02\x03\x04\x02\x05\x01\x01\x03\x05\x05\x02", // 㭿
+ 0x3b80: "\x01\x02\x03\x04\x05\x02\x04\x01\x03\x04\x05\x02", // 㮀
+ 0x3b81: "\x01\x02\x03\x04\x03\x04\x01\x03\x02\x05\x01\x01", // 㮁
+ 0x3b82: "\x02\x05\x01\x01\x01\x01\x03\x04\x01\x02\x03\x04", // 㮂
+ 0x3b83: "\x01\x02\x03\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 㮃
+ 0x3b84: "\x01\x02\x03\x04\x01\x01\x03\x05\x04\x01\x05\x03", // 㮄
+ 0x3b85: "\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 㮅
+ 0x3b86: "\x01\x02\x03\x04\x03\x04\x04\x03\x01\x01\x01\x02", // 㮆
+ 0x3b87: "\x01\x02\x03\x04\x01\x01\x03\x04\x02\x04\x04\x04", // 㮇
+ 0x3b88: "\x01\x02\x03\x04\x01\x03\x04\x01\x01\x02\x03\x04", // 㮈
+ 0x3b89: "\x01\x02\x03\x04\x03\x02\x01\x04\x03\x01\x03\x04", // 㮉
+ 0x3b8a: "\x01\x02\x03\x04\x05\x04\x05\x02\x01\x02\x03\x04", // 㮊
+ 0x3b8b: "\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x05\x02", // 㮋
+ 0x3b8c: "\x01\x02\x03\x04\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 㮌
+ 0x3b8d: "\x04\x03\x01\x02\x05\x01\x01\x02\x02\x01\x02\x03\x04", // 㮍
+ 0x3b8e: "\x01\x02\x03\x04\x01\x03\x02\x04\x02\x05\x02\x02\x01", // 㮎
+ 0x3b8f: "\x01\x02\x03\x04\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 㮏
+ 0x3b90: "\x01\x02\x03\x04\x02\x03\x04\x03\x02\x05\x01\x01\x01", // 㮐
+ 0x3b91: "\x01\x02\x03\x04\x03\x01\x02\x03\x02\x01\x05\x01\x01", // 㮑
+ 0x3b92: "\x01\x02\x03\x04\x01\x02\x05\x02\x02\x01\x01\x02\x01", // 㮒
+ 0x3b93: "\x01\x02\x03\x04\x04\x04\x02\x01\x02\x05\x04\x04\x01", // 㮓
+ 0x3b94: "\x01\x02\x03\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 㮔
+ 0x3b95: "\x01\x02\x03\x04\x01\x03\x02\x05\x02\x02\x01\x03\x04", // 㮕
+ 0x3b96: "\x01\x02\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01\x02", // 㮖
+ 0x3b97: "\x05\x04\x05\x02\x03\x03\x04\x04\x05\x01\x02\x03\x04", // 㮗
+ 0x3b98: "\x01\x02\x03\x04\x05\x04\x05\x02\x03\x03\x01\x03\x04", // 㮘
+ 0x3b99: "\x01\x02\x03\x04\x02\x05\x01\x02\x05\x01\x01\x01\x05", // 㮙
+ 0x3b9a: "\x02\x01\x02\x05\x03\x04\x03\x04\x01\x01\x02\x03\x04", // 㮚
+ 0x3b9b: "\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 㮛
+ 0x3b9c: "\x01\x02\x03\x04\x01\x05\x02\x01\x03\x01\x02\x01\x05", // 㮜
+ 0x3b9d: "\x01\x02\x03\x04\x03\x04\x03\x04\x02\x05\x01\x05\x02", // 㮝
+ 0x3b9e: "\x01\x02\x03\x04\x04\x01\x03\x05\x03\x04\x02\x05\x01", // 㮞
+ 0x3b9f: "\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x02\x03\x04", // 㮟
+ 0x3ba0: "\x01\x02\x03\x04\x01\x02\x02\x04\x05\x01\x02\x03\x04", // 㮠
+ 0x3ba1: "\x04\x03\x03\x04\x01\x05\x01\x05\x01\x02\x03\x04", // 㮡
+ 0x3ba2: "\x01\x02\x03\x04\x03\x02\x05\x01\x03\x01\x01\x03\x04", // 㮢
+ 0x3ba3: "\x05\x01\x01\x05\x04\x01\x05\x03\x05\x01\x02\x03\x04", // 㮣
+ 0x3ba4: "\x04\x04\x05\x03\x04\x03\x04\x02\x05\x01\x01\x02\x03\x04", // 㮤
+ 0x3ba5: "\x01\x02\x03\x04\x05\x04\x01\x03\x04\x02\x05\x01\x02\x01", // 㮥
+ 0x3ba6: "\x01\x02\x03\x04\x01\x02\x04\x05\x05\x05\x04\x02\x03\x04", // 㮦
+ 0x3ba7: "\x01\x02\x03\x04\x03\x02\x05\x01\x01\x05\x04\x04\x04\x04", // 㮧
+ 0x3ba8: "\x01\x02\x03\x04\x02\x05\x01\x02\x01\x03\x04\x03\x05\x04", // 㮨
+ 0x3ba9: "\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x04\x05\x04\x04", // 㮩
+ 0x3baa: "\x01\x02\x03\x04\x01\x02\x01\x03\x05\x04\x01\x02\x03\x04", // 㮪
+ 0x3bab: "\x01\x02\x03\x04\x04\x04\x05\x01\x01\x01\x02\x02\x05\x01", // 㮫
+ 0x3bac: "\x01\x02\x03\x04\x03\x04\x05\x04\x05\x04\x01\x05\x04\x01", // 㮬
+ 0x3bad: "\x01\x02\x03\x04\x05\x04\x02\x05\x04\x03\x01\x01\x02\x01", // 㮭
+ 0x3bae: "\x01\x02\x03\x04\x01\x01\x01\x02\x05\x03\x03\x01\x01\x02", // 㮮
+ 0x3baf: "\x01\x02\x03\x04\x02\x05\x01\x03\x05\x03\x03\x03\x04\x01", // 㮯
+ 0x3bb0: "\x01\x02\x03\x04\x03\x02\x05\x03\x04\x01\x01\x05\x03\x05", // 㮰
+ 0x3bb1: "\x01\x02\x03\x04\x01\x02\x02\x03\x01\x02\x01\x03\x05", // 㮱
+ 0x3bb2: "\x01\x02\x03\x04\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03", // 㮲
+ 0x3bb3: "\x01\x02\x03\x04\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04", // 㮳
+ 0x3bb4: "\x01\x02\x03\x04\x03\x02\x01\x05\x01\x01\x02\x05\x04", // 㮴
+ 0x3bb5: "\x01\x02\x03\x04\x04\x01\x05\x03\x03\x01\x03\x05\x04\x01", // 㮵
+ 0x3bb6: "\x01\x02\x03\x04\x04\x03\x01\x05\x02\x03\x03\x05\x01\x01", // 㮶
+ 0x3bb7: "\x01\x02\x03\x04\x01\x03\x05\x04\x03\x05\x02\x05\x01\x01", // 㮷
+ 0x3bb8: "\x01\x02\x03\x04\x04\x03\x01\x01\x03\x04\x04\x05\x04", // 㮸
+ 0x3bb9: "\x01\x02\x03\x04\x01\x05\x04\x01\x02\x01\x03\x01\x03\x04", // 㮹
+ 0x3bba: "\x01\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 㮺
+ 0x3bbb: "\x01\x02\x03\x04\x05\x04\x04\x02\x05\x01\x02\x01\x04", // 㮻
+ 0x3bbc: "\x01\x02\x03\x04\x04\x05\x01\x03\x05\x04\x01\x05\x04\x01", // 㮼
+ 0x3bbd: "\x01\x02\x03\x04\x03\x03\x05\x04\x01\x04\x03\x05\x05\x04", // 㮽
+ 0x3bbe: "\x04\x05\x01\x01\x05\x04\x03\x05\x01\x01\x01\x02\x03\x04", // 㮾
+ 0x3bbf: "\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x02\x01\x01\x02", // 㮿
+ 0x3bc0: "\x01\x02\x03\x04\x04\x01\x05\x03\x03\x01\x05\x02\x01\x03\x04", // 㯀
+ 0x3bc1: "\x01\x02\x03\x04\x05\x02\x04\x01\x04\x03\x01\x02\x05\x01", // 㯁
+ 0x3bc2: "\x01\x02\x03\x04\x01\x02\x02\x01\x03\x05\x04\x05\x02\x05\x02", // 㯂
+ 0x3bc3: "\x01\x02\x03\x04\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04", // 㯃
+ 0x3bc4: "\x01\x02\x03\x04\x01\x02\x03\x04\x03\x03\x01\x05\x02\x01\x05", // 㯄
+ 0x3bc5: "\x01\x02\x03\x04\x04\x01\x03\x03\x02\x05\x01\x01\x03\x01\x02", // 㯅
+ 0x3bc6: "\x01\x02\x03\x04\x04\x01\x04\x03\x01\x03\x03\x01\x01\x02\x01", // 㯆
+ 0x3bc7: "\x01\x02\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01\x02\x01", // 㯇
+ 0x3bc8: "\x01\x02\x03\x04\x01\x02\x05\x01\x02\x03\x04\x04\x05\x04", // 㯈
+ 0x3bc9: "\x01\x02\x03\x04\x02\x01\x05\x03\x01\x05\x03\x04\x03\x01\x02", // 㯉
+ 0x3bca: "\x01\x02\x03\x04\x01\x02\x01\x02\x01\x01\x05\x04\x04\x04\x04", // 㯊
+ 0x3bcb: "\x03\x05\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 㯋
+ 0x3bcc: "\x01\x02\x03\x04\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 㯌
+ 0x3bcd: "\x01\x02\x03\x04\x05\x02\x01\x03\x03\x05\x04\x04\x01\x02\x04", // 㯍
+ 0x3bce: "\x01\x02\x03\x04\x04\x01\x01\x01\x02\x05\x01\x01\x02\x03\x04", // 㯎
+ 0x3bcf: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04\x01\x02\x03\x04", // 㯏
+ 0x3bd0: "\x05\x02\x01\x03\x01\x02\x01\x02\x05\x01\x01\x01\x02\x03\x04", // 㯐
+ 0x3bd1: "\x01\x02\x03\x04\x05\x01\x05\x01\x02\x01\x01\x01\x05\x03\x04", // 㯑
+ 0x3bd2: "\x01\x02\x03\x04\x03\x04\x04\x03\x02\x05\x01\x01\x01\x03\x05", // 㯒
+ 0x3bd3: "\x01\x02\x03\x04\x03\x04\x01\x02\x05\x01\x05\x04\x01\x05\x04\x01", // 㯓
+ 0x3bd4: "\x03\x01\x01\x05\x03\x01\x01\x05\x03\x01\x01\x05\x01\x02\x03\x04", // 㯔
+ 0x3bd5: "\x01\x02\x03\x04\x01\x02\x02\x01\x01\x01\x03\x04\x03\x03\x01\x02", // 㯕
+ 0x3bd6: "\x01\x02\x03\x04\x01\x03\x02\x05\x02\x02\x01\x01\x04\x05\x04\x04", // 㯖
+ 0x3bd7: "\x01\x02\x03\x04\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04", // 㯗
+ 0x3bd8: "\x01\x02\x03\x04\x01\x02\x01\x01\x01\x02\x03\x04\x03\x05\x03\x04", // 㯘
+ 0x3bd9: "\x01\x02\x03\x04\x04\x01\x05\x04\x02\x05\x01\x01\x03\x01\x03\x04", // 㯙
+ 0x3bda: "\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x03\x04\x01\x02\x05\x01", // 㯚
+ 0x3bdb: "\x01\x02\x03\x04\x01\x02\x01\x04\x05\x02\x01\x05\x05\x01\x02\x01", // 㯛
+ 0x3bdc: "\x01\x02\x03\x04\x01\x02\x02\x04\x01\x03\x04\x03\x04\x01\x02", // 㯜
+ 0x3bdd: "\x01\x02\x03\x04\x02\x05\x01\x02\x01\x02\x01\x03\x05\x04\x02\x05\x01", // 㯝
+ 0x3bde: "\x01\x02\x03\x04\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x01", // 㯞
+ 0x3bdf: "\x01\x02\x03\x04\x01\x02\x03\x04\x05\x01\x01\x02\x04\x01\x03\x04", // 㯟
+ 0x3be0: "\x01\x02\x03\x04\x04\x01\x05\x05\x04\x04\x05\x03\x01\x01\x02", // 㯠
+ 0x3be1: "\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x03\x05\x05\x01\x05", // 㯡
+ 0x3be2: "\x01\x02\x03\x04\x05\x01\x05\x05\x01\x05\x01\x02\x02\x01\x03\x04", // 㯢
+ 0x3be3: "\x01\x02\x03\x04\x01\x02\x02\x03\x04\x05\x03\x01\x02\x03\x04", // 㯣
+ 0x3be4: "\x01\x03\x04\x03\x04\x02\x03\x04\x01\x03\x04\x03\x04\x02\x03\x04", // 㯤
+ 0x3be5: "\x01\x02\x05\x01\x01\x02\x03\x04\x01\x02\x05\x01\x01\x02\x03\x04", // 㯥
+ 0x3be6: "\x01\x02\x03\x04\x01\x02\x02\x01\x01\x01\x03\x04\x01\x02\x03\x04", // 㯦
+ 0x3be7: "\x01\x02\x03\x04\x01\x02\x01\x02\x01\x03\x04\x05\x03\x02\x05\x01", // 㯧
+ 0x3be8: "\x01\x02\x03\x04\x01\x02\x05\x02\x02\x01\x04\x03\x01\x02\x03\x04", // 㯨
+ 0x3be9: "\x05\x04\x05\x04\x05\x04\x01\x02\x03\x04\x01\x05\x01\x05\x03\x04", // 㯩
+ 0x3bea: "\x01\x02\x03\x04\x01\x04\x05\x02\x04\x04\x04\x04\x03\x04\x04\x05\x04", // 㯪
+ 0x3beb: "\x01\x02\x03\x04\x02\x01\x05\x03\x01\x05\x01\x03\x05\x03\x03\x03\x04", // 㯫
+ 0x3bec: "\x01\x02\x03\x04\x01\x02\x03\x04\x05\x01\x01\x01\x01\x02\x05\x04", // 㯬
+ 0x3bed: "\x01\x02\x03\x04\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x05\x03", // 㯭
+ 0x3bee: "\x01\x02\x03\x04\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 㯮
+ 0x3bef: "\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02\x02\x05\x01\x01\x01\x03\x04", // 㯯
+ 0x3bf0: "\x01\x02\x03\x04\x02\x05\x02\x02\x01\x01\x02\x02\x05\x01\x01\x01\x01", // 㯰
+ 0x3bf1: "\x01\x02\x05\x01\x02\x04\x05\x03\x01\x01\x02\x05\x02\x01\x02\x03\x04", // 㯱
+ 0x3bf2: "\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 㯲
+ 0x3bf3: "\x01\x02\x03\x04\x01\x02\x02\x03\x05\x02\x05\x01\x03\x01\x03\x04", // 㯳
+ 0x3bf4: "\x01\x02\x03\x04\x01\x02\x02\x04\x04\x05\x03\x04\x03\x04\x02\x05\x01", // 㯴
+ 0x3bf5: "\x01\x02\x03\x04\x01\x02\x02\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 㯵
+ 0x3bf6: "\x01\x02\x03\x04\x03\x04\x04\x04\x04\x04\x05\x02\x03\x04\x03\x05\x04", // 㯶
+ 0x3bf7: "\x01\x02\x03\x04\x03\x02\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 㯷
+ 0x3bf8: "\x01\x02\x03\x04\x05\x01\x01\x02\x01\x04\x04\x04\x04\x02\x05\x02\x02\x01", // 㯸
+ 0x3bf9: "\x01\x02\x03\x04\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04\x01\x02\x04", // 㯹
+ 0x3bfa: "\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01\x01\x02\x03\x04", // 㯺
+ 0x3bfb: "\x01\x02\x05\x01\x02\x04\x05\x01\x03\x05\x03\x03\x03\x04\x01\x02\x03\x04", // 㯻
+ 0x3bfc: "\x01\x02\x03\x04\x01\x02\x02\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 㯼
+ 0x3bfd: "\x01\x02\x03\x04\x04\x04\x05\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 㯽
+ 0x3bfe: "\x01\x02\x03\x04\x01\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01\x04\x05\x04", // 㯾
+ 0x3bff: "\x01\x02\x03\x04\x05\x05\x05\x02\x05\x03\x04\x01\x05\x04\x04\x05\x04\x04\x05", // 㯿
+ 0x3c00: "\x01\x02\x03\x04\x03\x01\x02\x03\x04\x03\x05\x03\x03\x04\x02\x04\x01\x03\x04", // 㰀
+ 0x3c01: "\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01", // 㰁
+ 0x3c02: "\x01\x02\x03\x04\x04\x04\x05\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 㰂
+ 0x3c03: "\x01\x02\x03\x04\x03\x02\x05\x01\x01\x02\x05\x02\x03\x05\x05\x04\x02\x03\x04", // 㰃
+ 0x3c04: "\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x04\x01\x05\x03\x04\x01\x05\x03\x04", // 㰄
+ 0x3c05: "\x01\x02\x03\x04\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01\x04\x05\x04", // 㰅
+ 0x3c06: "\x01\x02\x05\x01\x02\x04\x05\x02\x01\x01\x01\x02\x01\x01\x01\x02\x03\x04", // 㰆
+ 0x3c07: "\x01\x02\x03\x04\x01\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 㰇
+ 0x3c08: "\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 㰈
+ 0x3c09: "\x01\x02\x03\x04\x01\x05\x04\x01\x02\x01\x01\x01\x01\x03\x04\x03\x01\x02\x03\x04", // 㰉
+ 0x3c0a: "\x01\x02\x03\x04\x01\x02\x01\x03\x04\x01\x02\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 㰊
+ 0x3c0b: "\x01\x02\x03\x04\x02\x01\x02\x01\x02\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 㰋
+ 0x3c0c: "\x01\x02\x03\x04\x01\x04\x05\x02\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 㰌
+ 0x3c0d: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01\x01\x01\x01\x02\x03\x04", // 㰍
+ 0x3c0e: "\x01\x02\x03\x04\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x02\x05", // 㰎
+ 0x3c0f: "\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 㰏
+ 0x3c10: "\x01\x02\x03\x04\x05\x02\x01\x03\x01\x02\x01\x02\x05\x01\x01\x04\x05\x04", // 㰐
+ 0x3c11: "\x01\x02\x03\x04\x04\x05\x04\x04\x04\x05\x04\x04\x04\x05\x04\x04\x01\x02\x03\x04", // 㰑
+ 0x3c12: "\x01\x02\x03\x04\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x05\x02\x01", // 㰒
+ 0x3c13: "\x01\x02\x03\x04\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x01\x01\x01\x03\x04", // 㰓
+ 0x3c14: "\x01\x02\x03\x04\x04\x01\x01\x01\x02\x05\x01\x04\x03\x03\x04\x04\x03\x03\x04\x05\x04", // 㰔
+ 0x3c15: "\x01\x02\x03\x04\x04\x03\x01\x01\x02\x01\x03\x01\x02\x03\x04\x01\x05\x05\x03\x04", // 㰕
+ 0x3c16: "\x01\x02\x03\x04\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x01\x01\x01\x03\x05", // 㰖
+ 0x3c17: "\x01\x02\x03\x04\x01\x03\x02\x01\x01\x02\x03\x04\x05\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 㰗
+ 0x3c18: "\x01\x02\x03\x04\x05\x05\x01\x04\x03\x01\x02\x03\x04\x05\x05\x04\x02\x03\x04\x01\x03\x02", // 㰘
+ 0x3c19: "\x01\x02\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 㰙
+ 0x3c1a: "\x01\x02\x03\x04\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 㰚
+ 0x3c1b: "\x01\x02\x03\x04\x01\x02\x02\x03\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x03\x04", // 㰛
+ 0x3c1c: "\x01\x02\x03\x04\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 㰜
+ 0x3c1d: "\x05\x01\x05\x03\x05\x03\x04", // 㰝
+ 0x3c1e: "\x02\x05\x02\x03\x05\x03\x04", // 㰞
+ 0x3c1f: "\x03\x01\x01\x05\x03\x05\x03\x04", // 㰟
+ 0x3c20: "\x04\x01\x03\x05\x03\x05\x03\x04", // 㰠
+ 0x3c21: "\x03\x04\x03\x02\x03\x05\x03\x04", // 㰡
+ 0x3c22: "\x01\x01\x03\x02\x03\x05\x03\x04", // 㰢
+ 0x3c23: "\x02\x01\x02\x01\x01\x05\x03\x05\x03\x04", // 㰣
+ 0x3c24: "\x01\x02\x05\x01\x02\x03\x05\x03\x04", // 㰤
+ 0x3c25: "\x01\x02\x02\x01\x05\x03\x05\x03\x04", // 㰥
+ 0x3c26: "\x01\x02\x01\x05\x04\x03\x05\x03\x04", // 㰦
+ 0x3c27: "\x05\x04\x02\x05\x01\x03\x05\x03\x04", // 㰧
+ 0x3c28: "\x02\x05\x01\x03\x04\x03\x05\x03\x04", // 㰨
+ 0x3c29: "\x02\x05\x01\x02\x01\x04\x03\x05\x03\x04", // 㰩
+ 0x3c2a: "\x01\x02\x01\x01\x02\x01\x03\x05\x03\x04", // 㰪
+ 0x3c2b: "\x03\x01\x02\x01\x03\x05\x03\x05\x03\x04", // 㰫
+ 0x3c2c: "\x03\x05\x02\x05\x01\x01\x03\x05\x03\x04", // 㰬
+ 0x3c2d: "\x01\x03\x04\x02\x02\x05\x03\x05\x03\x04", // 㰭
+ 0x3c2e: "\x01\x03\x01\x01\x05\x03\x04\x03\x05\x03\x04", // 㰮
+ 0x3c2f: "\x01\x02\x05\x01\x04\x03\x01\x03\x05\x03\x04", // 㰯
+ 0x3c30: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x03\x04", // 㰰
+ 0x3c31: "\x03\x01\x02\x05\x01\x01\x02\x03\x05\x03\x04", // 㰱
+ 0x3c32: "\x01\x02\x05\x01\x01\x05\x03\x04\x03\x05\x03\x04", // 㰲
+ 0x3c33: "\x01\x02\x01\x05\x05\x01\x02\x01\x03\x05\x03\x04", // 㰳
+ 0x3c34: "\x04\x01\x04\x03\x01\x02\x05\x01\x03\x05\x03\x04", // 㰴
+ 0x3c35: "\x04\x01\x03\x04\x03\x04\x01\x02\x03\x05\x03\x04", // 㰵
+ 0x3c36: "\x03\x05\x04\x02\x04\x02\x05\x01\x03\x05\x03\x04", // 㰶
+ 0x3c37: "\x01\x03\x05\x04\x01\x05\x03\x05\x03\x04", // 㰷
+ 0x3c38: "\x03\x04\x01\x02\x05\x01\x03\x04\x03\x05\x03\x04", // 㰸
+ 0x3c39: "\x01\x03\x01\x02\x05\x01\x05\x03\x04\x03\x05\x03\x04", // 㰹
+ 0x3c3a: "\x05\x01\x02\x01\x01\x05\x01\x05\x04\x03\x05\x03\x04", // 㰺
+ 0x3c3b: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x03\x05\x03\x04", // 㰻
+ 0x3c3c: "\x01\x01\x03\x04\x03\x04\x03\x04\x05\x03\x05\x03\x04", // 㰼
+ 0x3c3d: "\x01\x02\x05\x01\x01\x05\x03\x01\x05\x03\x05\x03\x04", // 㰽
+ 0x3c3e: "\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x05\x03\x04", // 㰾
+ 0x3c3f: "\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04\x03\x05\x03\x04", // 㰿
+ 0x3c40: "\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03\x03\x05\x03\x04", // 㱀
+ 0x3c41: "\x05\x02\x02\x05\x02\x01\x01\x02\x03\x04\x03\x05\x03\x04", // 㱁
+ 0x3c42: "\x04\x01\x03\x05\x01\x01\x02\x04\x01\x03\x04\x03\x05\x03\x04", // 㱂
+ 0x3c43: "\x03\x04\x04\x05\x01\x02\x05\x03\x05\x01\x01\x03\x05\x03\x04", // 㱃
+ 0x3c44: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x05\x03\x04", // 㱄
+ 0x3c45: "\x01\x02\x01\x04\x05\x01\x02\x05\x01\x04\x03\x01\x03\x05\x03\x04", // 㱅
+ 0x3c46: "\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x04\x03\x01\x03\x05\x03\x04", // 㱆
+ 0x3c47: "\x01\x02\x03\x04\x03\x04\x01\x02\x05\x02\x05\x01\x01\x03\x05\x03\x04", // 㱇
+ 0x3c48: "\x01\x02\x03\x04\x01\x02\x03\x04\x01\x01\x02\x03\x04\x03\x05\x03\x04", // 㱈
+ 0x3c49: "\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x02\x03\x04\x03\x05\x03\x04", // 㱉
+ 0x3c4a: "\x01\x03\x02\x05\x01\x01\x04\x05\x04\x05\x04\x04\x03\x05\x04\x03\x05\x03\x04", // 㱊
+ 0x3c4b: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01\x03\x05\x03\x04", // 㱋
+ 0x3c4c: "\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01\x03\x05\x03\x04", // 㱌
+ 0x3c4d: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x03\x05\x03\x04", // 㱍
+ 0x3c4e: "\x02\x05\x02\x02\x01\x02\x03\x03\x04\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x03\x04", // 㱎
+ 0x3c4f: "\x01\x01\x02\x01\x02\x01", // 㱏
+ 0x3c50: "\x01\x01\x02\x01\x02\x01\x04", // 㱐
+ 0x3c51: "\x02\x01\x02\x01\x03\x05\x04", // 㱑
+ 0x3c52: "\x02\x01\x02\x01\x01\x02\x05\x01\x02", // 㱒
+ 0x3c53: "\x02\x01\x02\x01\x03\x04\x04\x05\x04", // 㱓
+ 0x3c54: "\x02\x01\x02\x01\x03\x05\x03\x05\x04", // 㱔
+ 0x3c55: "\x02\x01\x02\x01\x05\x01\x01\x04\x05\x02\x05\x02", // 㱕
+ 0x3c56: "\x02\x01\x02\x01\x04\x01\x03\x04\x03\x04\x01\x02", // 㱖
+ 0x3c57: "\x02\x01\x02\x01\x03\x02\x05\x01\x01\x01\x01\x03\x04\x04", // 㱗
+ 0x3c58: "\x01\x03\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x04\x04\x02\x01\x02\x01", // 㱘
+ 0x3c59: "\x01\x03\x05\x04\x01\x05", // 㱙
+ 0x3c5a: "\x01\x03\x05\x04\x03\x05\x01\x01", // 㱚
+ 0x3c5b: "\x01\x03\x05\x04\x01\x03\x05\x04", // 㱛
+ 0x3c5c: "\x01\x03\x05\x04\x02\x01\x03\x04", // 㱜
+ 0x3c5d: "\x01\x03\x05\x04\x01\x05\x05\x03", // 㱝
+ 0x3c5e: "\x01\x03\x05\x04\x04\x01\x04\x03\x01", // 㱞
+ 0x3c5f: "\x01\x03\x05\x04\x05\x03\x02\x05\x04", // 㱟
+ 0x3c60: "\x01\x03\x05\x04\x01\x02\x02\x05\x01", // 㱠
+ 0x3c61: "\x01\x03\x05\x04\x03\x01\x02\x01\x03\x05", // 㱡
+ 0x3c62: "\x01\x03\x05\x04\x04\x05\x01\x01\x05\x03\x04", // 㱢
+ 0x3c63: "\x01\x03\x05\x04\x03\x04\x04\x03\x05\x03\x01", // 㱣
+ 0x3c64: "\x01\x03\x05\x04\x01\x02\x03\x04\x03\x03\x01\x02", // 㱤
+ 0x3c65: "\x01\x03\x05\x04\x01\x02\x01\x03\x04\x03\x05\x04", // 㱥
+ 0x3c66: "\x01\x03\x05\x04\x01\x03\x04\x01\x02\x05\x01\x02", // 㱦
+ 0x3c67: "\x01\x03\x05\x04\x04\x04\x05\x03\x05\x04\x05\x05", // 㱧
+ 0x3c68: "\x01\x03\x05\x04\x04\x04\x05\x01\x02\x01\x03\x04", // 㱨
+ 0x3c69: "\x01\x03\x05\x04\x01\x02\x05\x04\x04\x01\x03\x04", // 㱩
+ 0x3c6a: "\x01\x03\x05\x04\x05\x01\x05\x01\x05\x02\x05\x01\x01", // 㱪
+ 0x3c6b: "\x01\x03\x05\x04\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 㱫
+ 0x3c6c: "\x01\x03\x05\x04\x02\x05\x01\x02\x01\x01\x05\x03\x04", // 㱬
+ 0x3c6d: "\x01\x03\x05\x04\x03\x02\x01\x01\x01\x03\x05\x05\x04", // 㱭
+ 0x3c6e: "\x01\x03\x05\x04\x02\x05\x01\x02\x01\x02\x05\x03\x04", // 㱮
+ 0x3c6f: "\x01\x03\x05\x04\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 㱯
+ 0x3c70: "\x01\x03\x05\x04\x04\x04\x05\x04\x01\x04\x03\x01\x01\x02", // 㱰
+ 0x3c71: "\x01\x03\x05\x04\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 㱱
+ 0x3c72: "\x01\x03\x05\x04\x04\x03\x01\x03\x04\x02\x05\x02\x02\x01", // 㱲
+ 0x3c73: "\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04\x01\x03\x05\x04", // 㱳
+ 0x3c74: "\x01\x03\x05\x04\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 㱴
+ 0x3c75: "\x01\x03\x05\x04\x01\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 㱵
+ 0x3c76: "\x01\x03\x05\x04\x01\x02\x01\x02\x05\x01\x04\x03\x01\x03\x03\x03", // 㱶
+ 0x3c77: "\x01\x03\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02\x03\x04", // 㱷
+ 0x3c78: "\x01\x03\x05\x04\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 㱸
+ 0x3c79: "\x01\x03\x05\x04\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 㱹
+ 0x3c7a: "\x01\x03\x05\x04\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 㱺
+ 0x3c7b: "\x01\x03\x05\x04\x04\x01\x05\x02\x05\x01\x03\x05\x01\x01\x04\x03\x01\x01\x01\x02\x03\x05\x04", // 㱻
+ 0x3c7c: "\x05\x01\x05\x03\x05\x05\x04", // 㱼
+ 0x3c7d: "\x04\x05\x03\x05\x03\x05\x05\x04", // 㱽
+ 0x3c7e: "\x04\x01\x05\x03\x03\x04\x03\x05\x05\x04", // 㱾
+ 0x3c7f: "\x01\x02\x01\x02\x05\x01\x03\x05\x05\x04", // 㱿
+ 0x3c80: "\x01\x03\x01\x01\x05\x03\x04\x03\x05\x05\x04", // 㲀
+ 0x3c81: "\x04\x04\x05\x03\x04\x01\x02\x01\x03\x05\x05\x04", // 㲁
+ 0x3c82: "\x02\x04\x03\x02\x05\x02\x05\x01\x03\x05\x05\x04", // 㲂
+ 0x3c83: "\x02\x01\x02\x05\x01\x01\x01\x05\x03\x05\x05\x04", // 㲃
+ 0x3c84: "\x01\x02\x01\x04\x05\x01\x01\x02\x01\x03\x05\x05\x04", // 㲄
+ 0x3c85: "\x04\x04\x05\x01\x01\x01\x02\x02\x05\x01\x03\x05\x05\x04", // 㲅
+ 0x3c86: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04\x03\x04\x04\x05\x04", // 㲆
+ 0x3c87: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04\x03\x05\x04\x04\x04", // 㲇
+ 0x3c88: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04\x05\x03\x02\x05\x01", // 㲈
+ 0x3c89: "\x01\x02\x01\x04\x05\x01\x03\x05\x04\x03\x05\x02\x04\x03\x05\x05\x04", // 㲉
+ 0x3c8a: "\x02\x01\x04\x05\x01\x03\x04\x03\x04\x02\x05\x01\x01\x01\x03\x05\x05\x04", // 㲊
+ 0x3c8b: "\x03\x05\x02\x05\x01\x01\x05\x03\x05", // 㲋
+ 0x3c8c: "\x03\x01\x01\x05\x05\x03", // 㲌
+ 0x3c8d: "\x01\x02\x05\x04\x03\x01\x01\x05", // 㲍
+ 0x3c8e: "\x03\x01\x01\x05\x03\x01\x01\x05", // 㲎
+ 0x3c8f: "\x03\x02\x01\x05\x03\x01\x01\x05", // 㲏
+ 0x3c90: "\x03\x01\x01\x05\x03\x04\x04\x05", // 㲐
+ 0x3c91: "\x03\x01\x01\x05\x02\x05\x03\x04", // 㲑
+ 0x3c92: "\x03\x05\x02\x05\x01\x03\x01\x01\x05", // 㲒
+ 0x3c93: "\x03\x01\x01\x05\x01\x03\x04\x05\x03\x04", // 㲓
+ 0x3c94: "\x04\x01\x04\x03\x01\x01\x02\x03\x01\x01\x05", // 㲔
+ 0x3c95: "\x03\x04\x04\x03\x01\x02\x04\x03\x01\x01\x05", // 㲕
+ 0x3c96: "\x02\x04\x03\x02\x05\x01\x01\x03\x01\x01\x05", // 㲖
+ 0x3c97: "\x03\x04\x04\x03\x05\x02\x01\x03\x01\x01\x05", // 㲗
+ 0x3c98: "\x02\x05\x01\x01\x01\x03\x04\x03\x01\x01\x05", // 㲘
+ 0x3c99: "\x03\x01\x01\x05\x04\x01\x05\x04\x03\x02\x05", // 㲙
+ 0x3c9a: "\x04\x04\x01\x02\x03\x04\x03\x03\x01\x01\x05", // 㲚
+ 0x3c9b: "\x03\x01\x01\x03\x04\x02\x05\x01\x03\x01\x01\x05", // 㲛
+ 0x3c9c: "\x04\x03\x03\x04\x04\x03\x03\x04\x03\x01\x01\x05", // 㲜
+ 0x3c9d: "\x03\x01\x01\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 㲝
+ 0x3c9e: "\x04\x01\x03\x04\x03\x04\x01\x02\x03\x01\x01\x05", // 㲞
+ 0x3c9f: "\x01\x02\x02\x02\x05\x01\x03\x04\x03\x01\x01\x05", // 㲟
+ 0x3ca0: "\x01\x01\x02\x03\x04\x03\x01\x03\x04\x03\x01\x01\x05", // 㲠
+ 0x3ca1: "\x01\x02\x03\x04\x01\x01\x02\x03\x04\x03\x01\x01\x05", // 㲡
+ 0x3ca2: "\x04\x05\x01\x03\x02\x05\x01\x02\x02\x03\x01\x01\x05", // 㲢
+ 0x3ca3: "\x03\x02\x01\x05\x01\x01\x02\x05\x04\x03\x01\x01\x05", // 㲣
+ 0x3ca4: "\x04\x01\x02\x05\x01\x01\x03\x05\x03\x04\x03\x01\x01\x05", // 㲤
+ 0x3ca5: "\x04\x01\x03\x05\x01\x01\x02\x02\x05\x01\x03\x01\x01\x05", // 㲥
+ 0x3ca6: "\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04\x03\x01\x01\x05", // 㲦
+ 0x3ca7: "\x03\x01\x01\x05\x05\x04\x04\x02\x05\x01\x02\x01\x04", // 㲧
+ 0x3ca8: "\x01\x02\x02\x01\x02\x02\x01\x01\x01\x03\x01\x01\x05", // 㲨
+ 0x3ca9: "\x03\x01\x01\x05\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 㲩
+ 0x3caa: "\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01\x03\x01\x01\x05", // 㲪
+ 0x3cab: "\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04\x03\x01\x01\x05", // 㲫
+ 0x3cac: "\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04\x03\x01\x01\x05", // 㲬
+ 0x3cad: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04\x03\x01\x01\x05", // 㲭
+ 0x3cae: "\x03\x01\x01\x05\x03\x01\x04\x03\x01\x04\x03\x04\x01\x02\x05\x01", // 㲮
+ 0x3caf: "\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01\x03\x01\x01\x05", // 㲯
+ 0x3cb0: "\x04\x04\x05\x04\x05\x04\x04\x02\x05\x02\x02\x01\x01\x02\x03\x01\x01\x05", // 㲰
+ 0x3cb1: "\x03\x01\x01\x05\x05\x05\x05\x02\x05\x03\x04\x01\x05\x04\x04\x05\x04\x04\x05", // 㲱
+ 0x3cb2: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x04\x05\x02\x05\x01\x01\x01\x03\x01\x01\x05", // 㲲
+ 0x3cb3: "\x03\x05\x01\x05\x04\x03\x01\x01\x03\x04", // 㲳
+ 0x3cb4: "\x03\x01\x01\x05\x02\x05\x01\x02", // 㲴
+ 0x3cb5: "\x03\x01\x01\x05\x02\x04\x03\x02\x05\x01\x01", // 㲵
+ 0x3cb6: "\x03\x01\x01\x05\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01", // 㲶
+ 0x3cb7: "\x03\x01\x01\x05\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 㲷
+ 0x3cb8: "\x04\x04\x01\x05", // 㲸
+ 0x3cb9: "\x04\x04\x01\x03\x05", // 㲹
+ 0x3cba: "\x04\x04\x01\x01\x05", // 㲺
+ 0x3cbb: "\x03\x02\x02\x05\x03\x04", // 㲻
+ 0x3cbc: "\x04\x04\x01\x03\x04", // 㲼
+ 0x3cbd: "\x04\x04\x01\x05\x03\x04", // 㲽
+ 0x3cbe: "\x04\x04\x05\x02\x05\x03\x04", // 㲾
+ 0x3cbf: "\x04\x04\x01\x04\x01\x03", // 㲿
+ 0x3cc0: "\x04\x04\x01\x01\x05\x03\x04", // 㳀
+ 0x3cc1: "\x04\x04\x01\x01\x03\x03\x04", // 㳁
+ 0x3cc2: "\x04\x04\x01\x03\x04\x05\x04", // 㳂
+ 0x3cc3: "\x04\x04\x01\x03\x05\x01\x02", // 㳃
+ 0x3cc4: "\x04\x04\x01\x03\x05\x03\x04", // 㳄
+ 0x3cc5: "\x04\x04\x01\x01\x03\x02\x04", // 㳅
+ 0x3cc6: "\x04\x04\x01\x04\x04\x01\x02", // 㳆
+ 0x3cc7: "\x04\x04\x01\x03\x04\x03\x04", // 㳇
+ 0x3cc8: "\x04\x04\x01\x01\x02\x03\x05", // 㳈
+ 0x3cc9: "\x04\x04\x01\x03\x05\x01\x01", // 㳉
+ 0x3cca: "\x04\x04\x01\x03\x01\x03\x04", // 㳊
+ 0x3ccb: "\x04\x04\x01\x03\x02\x01\x02\x01", // 㳋
+ 0x3ccc: "\x04\x04\x01\x02\x05\x01\x01\x02", // 㳌
+ 0x3ccd: "\x04\x04\x01\x01\x03\x02\x05\x02", // 㳍
+ 0x3cce: "\x04\x04\x01\x05\x04\x01\x03\x02", // 㳎
+ 0x3ccf: "\x04\x04\x01\x02\x05\x01\x03\x04", // 㳏
+ 0x3cd0: "\x04\x04\x01\x01\x02\x03\x04\x05", // 㳐
+ 0x3cd1: "\x04\x04\x01\x02\x05\x02\x02\x01", // 㳑
+ 0x3cd2: "\x04\x04\x01\x01\x03\x04\x05\x04", // 㳒
+ 0x3cd3: "\x04\x04\x01\x01\x03\x02\x05\x01", // 㳓
+ 0x3cd4: "\x04\x04\x01\x05\x04\x01\x02\x04", // 㳔
+ 0x3cd5: "\x04\x04\x01\x04\x03\x01\x01\x01", // 㳕
+ 0x3cd6: "\x04\x04\x01\x04\x01\x03\x05\x03\x04", // 㳖
+ 0x3cd7: "\x04\x04\x01\x05\x04\x04\x01\x02\x01", // 㳗
+ 0x3cd8: "\x04\x04\x01\x04\x01\x05\x04\x03\x05", // 㳘
+ 0x3cd9: "\x04\x04\x01\x05\x04\x02\x05\x01\x01", // 㳙
+ 0x3cda: "\x04\x04\x01\x01\x03\x04\x05\x03\x04", // 㳚
+ 0x3cdb: "\x04\x04\x01\x03\x02\x01\x05\x01\x01\x03\x04", // 㳛
+ 0x3cdc: "\x04\x04\x01\x03\x02\x01\x02\x03\x04", // 㳜
+ 0x3cdd: "\x04\x04\x01\x03\x02\x03\x01\x02\x01", // 㳝
+ 0x3cde: "\x04\x04\x01\x03\x02\x02\x05\x01\x02", // 㳞
+ 0x3cdf: "\x01\x02\x02\x01\x03\x04\x02\x04\x01\x03\x04", // 㳟
+ 0x3ce0: "\x04\x04\x01\x01\x03\x04\x04\x05\x04", // 㳠
+ 0x3ce1: "\x04\x04\x01\x01\x02\x04\x04\x05\x04", // 㳡
+ 0x3ce2: "\x04\x04\x01\x03\x01\x03\x04\x03\x02", // 㳢
+ 0x3ce3: "\x04\x04\x01\x01\x02\x01\x03\x03\x05", // 㳣
+ 0x3ce4: "\x04\x04\x01\x04\x01\x01\x03\x02\x04\x04\x04\x04", // 㳤
+ 0x3ce5: "\x04\x04\x01\x01\x01\x02\x01\x01\x03\x02", // 㳥
+ 0x3ce6: "\x04\x04\x01\x01\x03\x02\x05\x03\x04", // 㳦
+ 0x3ce7: "\x04\x04\x01\x01\x02\x02\x01\x01\x01\x05", // 㳧
+ 0x3ce8: "\x04\x04\x01\x05\x05\x05\x01\x03\x05\x04", // 㳨
+ 0x3ce9: "\x04\x04\x01\x01\x02\x01\x03\x05\x04\x01", // 㳩
+ 0x3cea: "\x04\x04\x01\x01\x03\x02\x04\x02\x05\x01", // 㳪
+ 0x3ceb: "\x02\x05\x03\x04\x03\x02\x01\x05\x01\x01", // 㳫
+ 0x3cec: "\x04\x04\x01\x03\x01\x05\x02\x01\x03\x04", // 㳬
+ 0x3ced: "\x04\x04\x01\x02\x05\x01\x01\x02\x03\x04", // 㳭
+ 0x3cee: "\x04\x04\x01\x05\x01\x03\x02\x05\x03\x04", // 㳮
+ 0x3cef: "\x04\x04\x01\x04\x01\x04\x03\x01\x01\x02", // 㳯
+ 0x3cf0: "\x04\x04\x01\x04\x01\x05\x04\x01\x03\x02", // 㳰
+ 0x3cf1: "\x04\x04\x01\x05\x02\x02\x05\x01\x01", // 㳱
+ 0x3cf2: "\x04\x04\x01\x04\x04\x01\x01\x03\x04\x04", // 㳲
+ 0x3cf3: "\x04\x04\x01\x01\x02\x02\x05\x01\x03\x05", // 㳳
+ 0x3cf4: "\x04\x04\x01\x04\x05\x04\x03\x04\x01\x02\x01", // 㳴
+ 0x3cf5: "\x04\x04\x01\x03\x01\x02\x03\x04\x05\x02\x01", // 㳵
+ 0x3cf6: "\x04\x04\x01\x03\x04\x04\x03\x05\x02\x01\x05", // 㳶
+ 0x3cf7: "\x04\x04\x01\x03\x05\x03\x03\x02\x05\x01\x01", // 㳷
+ 0x3cf8: "\x04\x04\x01\x01\x02\x02\x03\x02\x03\x05", // 㳸
+ 0x3cf9: "\x04\x04\x01\x01\x02\x03\x04\x01\x01\x02\x01", // 㳹
+ 0x3cfa: "\x04\x04\x01\x01\x02\x01\x03\x01\x05\x02\x01", // 㳺
+ 0x3cfb: "\x04\x04\x01\x01\x02\x02\x01\x02\x05\x01\x01", // 㳻
+ 0x3cfc: "\x01\x02\x05\x01\x01\x05\x03\x04\x02\x05\x03\x04", // 㳼
+ 0x3cfd: "\x04\x04\x01\x05\x01\x05\x03\x01\x02\x03\x04", // 㳽
+ 0x3cfe: "\x04\x04\x01\x04\x03\x01\x01\x01\x03\x05", // 㳾
+ 0x3cff: "\x04\x04\x01\x04\x01\x05\x04\x01\x02\x03\x04", // 㳿
+ 0x3d00: "\x04\x04\x01\x01\x02\x02\x03\x04\x05\x04", // 㴀
+ 0x3d01: "\x04\x04\x01\x01\x01\x03\x04\x01\x01\x03\x02", // 㴁
+ 0x3d02: "\x04\x04\x01\x01\x02\x01\x02\x05\x02\x01\x01", // 㴂
+ 0x3d03: "\x04\x04\x01\x04\x05\x01\x03\x02\x05\x03\x04", // 㴃
+ 0x3d04: "\x04\x04\x01\x02\x05\x03\x04\x02\x05\x01", // 㴄
+ 0x3d05: "\x02\x05\x03\x04\x02\x05\x03\x04\x02\x05\x01", // 㴅
+ 0x3d06: "\x04\x04\x01\x05\x01\x01\x04\x05\x02\x05\x02", // 㴆
+ 0x3d07: "\x02\x05\x03\x04\x02\x05\x03\x04\x02\x05\x03\x04", // 㴇
+ 0x3d08: "\x04\x04\x01\x03\x02\x01\x02\x01\x02\x05\x02", // 㴈
+ 0x3d09: "\x04\x04\x01\x05\x04\x05\x04\x05\x04\x01\x01", // 㴉
+ 0x3d0a: "\x04\x04\x01\x04\x03\x01\x05\x02\x03\x02\x02", // 㴊
+ 0x3d0b: "\x04\x04\x01\x05\x01\x01\x02\x03\x02\x03\x04", // 㴋
+ 0x3d0c: "\x04\x04\x01\x05\x03\x01\x01\x02\x02\x05\x01", // 㴌
+ 0x3d0d: "\x04\x04\x01\x05\x02\x01\x01\x01\x05\x03\x04", // 㴍
+ 0x3d0e: "\x04\x04\x01\x01\x03\x04\x01\x01\x02\x03\x04", // 㴎
+ 0x3d0f: "\x04\x04\x01\x04\x04\x05\x03\x04\x01\x01\x02\x01", // 㴏
+ 0x3d10: "\x04\x04\x01\x02\x05\x01\x01\x01\x01\x02\x05\x05", // 㴐
+ 0x3d11: "\x04\x04\x01\x04\x01\x03\x04\x03\x01\x05\x03", // 㴑
+ 0x3d12: "\x04\x04\x01\x04\x01\x03\x02\x03\x04\x01\x03\x02", // 㴒
+ 0x3d13: "\x04\x04\x01\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 㴓
+ 0x3d14: "\x04\x04\x01\x03\x05\x05\x01\x01\x04\x05\x04\x04", // 㴔
+ 0x3d15: "\x04\x04\x01\x01\x02\x02\x03\x01\x02\x03\x04", // 㴕
+ 0x3d16: "\x04\x04\x01\x01\x02\x02\x01\x02\x05\x01\x01\x02", // 㴖
+ 0x3d17: "\x04\x04\x01\x01\x02\x05\x02\x02\x01\x05\x03\x01", // 㴗
+ 0x3d18: "\x04\x04\x01\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 㴘
+ 0x3d19: "\x04\x04\x01\x03\x01\x02\x03\x02\x01\x05\x01\x01", // 㴙
+ 0x3d1a: "\x04\x04\x01\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 㴚
+ 0x3d1b: "\x04\x04\x01\x01\x05\x04\x01\x02\x01\x03\x01\x03\x04", // 㴛
+ 0x3d1c: "\x04\x04\x01\x04\x05\x01\x03\x02\x05\x01\x02\x02", // 㴜
+ 0x3d1d: "\x03\x01\x02\x03\x04\x02\x02\x03\x04\x02\x04\x01\x03\x04", // 㴝
+ 0x3d1e: "\x04\x04\x01\x03\x04\x04\x03\x02\x02\x05\x01\x01", // 㴞
+ 0x3d1f: "\x04\x04\x01\x01\x03\x02\x05\x01\x01\x05\x02\x01", // 㴟
+ 0x3d20: "\x04\x04\x01\x05\x02\x02\x05\x01\x05\x04\x05\x02", // 㴠
+ 0x3d21: "\x04\x04\x01\x03\x01\x02\x03\x04\x02\x05\x01\x01", // 㴡
+ 0x3d22: "\x04\x04\x01\x04\x04\x01\x03\x02\x02\x05\x01\x02", // 㴢
+ 0x3d23: "\x04\x04\x01\x04\x04\x01\x01\x05\x01\x05\x03\x04", // 㴣
+ 0x3d24: "\x04\x04\x01\x01\x02\x03\x04\x04\x01\x01\x02\x01", // 㴤
+ 0x3d25: "\x04\x04\x01\x02\x05\x02\x02\x04\x03\x02\x05\x01\x01", // 㴥
+ 0x3d26: "\x04\x04\x01\x04\x04\x05\x02\x05\x01\x02\x05\x01", // 㴦
+ 0x3d27: "\x04\x04\x01\x03\x02\x05\x01\x01\x01\x04\x05\x04\x04", // 㴧
+ 0x3d28: "\x04\x04\x01\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04", // 㴨
+ 0x3d29: "\x04\x04\x01\x05\x05\x05\x02\x05\x01\x05\x02\x01\x05", // 㴩
+ 0x3d2a: "\x04\x04\x01\x03\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 㴪
+ 0x3d2b: "\x04\x04\x01\x05\x01\x01\x03\x02\x05\x01\x05\x02", // 㴫
+ 0x3d2c: "\x04\x04\x01\x03\x02\x05\x01\x01\x01\x03\x01\x02\x04", // 㴬
+ 0x3d2d: "\x04\x04\x01\x04\x04\x05\x03\x04\x02\x05\x01\x01\x01", // 㴭
+ 0x3d2e: "\x04\x04\x01\x05\x01\x03\x02\x04\x03\x02\x05\x01\x01", // 㴮
+ 0x3d2f: "\x04\x04\x01\x03\x05\x01\x01\x03\x05\x02\x05\x01\x01", // 㴯
+ 0x3d30: "\x04\x04\x01\x05\x04\x02\x05\x01\x01\x03\x05\x03\x05", // 㴰
+ 0x3d31: "\x04\x04\x01\x04\x04\x05\x03\x04\x01\x03\x04\x04\x03", // 㴱
+ 0x3d32: "\x04\x04\x01\x03\x03\x02\x01\x05\x03\x01\x05\x03\x05", // 㴲
+ 0x3d33: "\x04\x04\x01\x01\x02\x01\x01\x03\x05\x03\x03\x03\x04", // 㴳
+ 0x3d34: "\x04\x04\x01\x04\x03\x03\x04\x01\x04\x03\x03\x04\x05", // 㴴
+ 0x3d35: "\x04\x04\x01\x04\x05\x04\x03\x04\x02\x05\x02\x02\x01", // 㴵
+ 0x3d36: "\x04\x04\x01\x04\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 㴶
+ 0x3d37: "\x04\x04\x01\x01\x02\x02\x01\x01\x01\x04\x05\x03\x05", // 㴷
+ 0x3d38: "\x04\x04\x01\x05\x01\x01\x02\x02\x05\x01\x01\x03\x04", // 㴸
+ 0x3d39: "\x04\x04\x01\x04\x03\x01\x02\x03\x04\x04\x05\x04", // 㴹
+ 0x3d3a: "\x04\x04\x01\x04\x04\x01\x01\x03\x04\x03\x04\x03\x04", // 㴺
+ 0x3d3b: "\x04\x04\x01\x01\x02\x05\x01\x04\x03\x01\x01\x02\x04", // 㴻
+ 0x3d3c: "\x04\x04\x01\x04\x04\x05\x03\x02\x01\x03\x02\x05\x01\x01", // 㴼
+ 0x3d3d: "\x04\x04\x01\x03\x04\x03\x01\x02\x03\x04\x04\x05\x04\x04", // 㴽
+ 0x3d3e: "\x04\x04\x01\x01\x02\x04\x05\x05\x02\x01\x03\x01\x03\x04", // 㴾
+ 0x3d3f: "\x04\x04\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 㴿
+ 0x3d40: "\x04\x04\x01\x04\x01\x05\x03\x03\x01\x03\x01\x01\x03\x04", // 㵀
+ 0x3d41: "\x04\x04\x01\x01\x02\x02\x04\x01\x05\x04\x03\x02\x05", // 㵁
+ 0x3d42: "\x04\x04\x01\x04\x01\x03\x01\x02\x02\x01\x04\x04\x04\x04", // 㵂
+ 0x3d43: "\x04\x04\x01\x02\x05\x01\x02\x01\x04\x04\x04\x05\x03\x05", // 㵃
+ 0x3d44: "\x04\x04\x01\x01\x02\x05\x01\x01\x01\x03\x04\x05\x03\x04", // 㵄
+ 0x3d45: "\x04\x04\x01\x03\x04\x04\x05\x02\x05\x04\x04\x04\x03\x04", // 㵅
+ 0x3d46: "\x04\x04\x01\x02\x05\x01\x01\x03\x01\x02\x01\x02\x05\x01", // 㵆
+ 0x3d47: "\x04\x04\x01\x03\x01\x02\x02\x05\x01\x01\x02\x02\x01\x01", // 㵇
+ 0x3d48: "\x04\x04\x01\x04\x04\x01\x05\x03\x01\x01\x02\x02\x05\x01", // 㵈
+ 0x3d49: "\x04\x04\x01\x04\x04\x01\x01\x02\x03\x04\x01\x02\x03\x04", // 㵉
+ 0x3d4a: "\x04\x04\x01\x02\x05\x01\x01\x01\x02\x02\x01\x01\x01\x05\x04", // 㵊
+ 0x3d4b: "\x04\x04\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 㵋
+ 0x3d4c: "\x04\x04\x01\x03\x03\x02\x03\x03\x01\x02\x02\x05\x01\x01\x01", // 㵌
+ 0x3d4d: "\x04\x04\x01\x05\x01\x01\x02\x02\x05\x01\x01\x04\x05\x04\x04", // 㵍
+ 0x3d4e: "\x04\x04\x01\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x01\x01", // 㵎
+ 0x3d4f: "\x04\x04\x01\x01\x02\x02\x04\x01\x03\x04\x03\x04\x01\x02", // 㵏
+ 0x3d50: "\x04\x04\x01\x01\x03\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04", // 㵐
+ 0x3d51: "\x04\x04\x01\x05\x03\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 㵑
+ 0x3d52: "\x04\x04\x01\x05\x01\x05\x03\x02\x02\x05\x01\x01\x01\x03\x04", // 㵒
+ 0x3d53: "\x04\x04\x01\x04\x04\x05\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 㵓
+ 0x3d54: "\x04\x04\x01\x01\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01", // 㵔
+ 0x3d55: "\x04\x04\x01\x05\x04\x05\x04\x05\x04\x03\x04\x02\x04\x04\x04", // 㵕
+ 0x3d56: "\x04\x04\x01\x05\x03\x01\x02\x05\x01\x05\x05\x04\x02\x03\x04", // 㵖
+ 0x3d57: "\x04\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x03\x04", // 㵗
+ 0x3d58: "\x02\x05\x03\x04\x02\x05\x03\x04\x02\x05\x03\x04\x02\x05\x03\x04", // 㵘
+ 0x3d59: "\x04\x04\x01\x01\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01", // 㵙
+ 0x3d5a: "\x04\x04\x01\x03\x04\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 㵚
+ 0x3d5b: "\x04\x04\x01\x04\x03\x01\x01\x01\x02\x04\x03\x01\x02\x05\x01", // 㵛
+ 0x3d5c: "\x04\x04\x01\x04\x04\x01\x01\x02\x02\x05\x04\x03\x01\x01\x02", // 㵜
+ 0x3d5d: "\x04\x04\x01\x04\x01\x03\x05\x03\x04\x02\x05\x03\x04\x02\x05\x01", // 㵝
+ 0x3d5e: "\x04\x04\x01\x03\x01\x02\x03\x04\x04\x03\x03\x04\x04\x05\x04\x04", // 㵞
+ 0x3d5f: "\x04\x04\x01\x03\x03\x02\x02\x05\x02\x01\x03\x05\x03\x01\x03\x04", // 㵟
+ 0x3d60: "\x04\x04\x01\x04\x04\x05\x03\x04\x05\x01\x03\x05\x02\x02\x05\x02", // 㵠
+ 0x3d61: "\x04\x04\x01\x01\x04\x05\x02\x04\x04\x04\x04\x03\x05\x05\x01\x05", // 㵡
+ 0x3d62: "\x04\x04\x01\x01\x04\x05\x04\x04\x04\x04\x02\x05\x01\x02\x01", // 㵢
+ 0x3d63: "\x04\x04\x01\x02\x05\x01\x01\x03\x05\x03\x04\x05\x03\x05\x03\x04", // 㵣
+ 0x3d64: "\x04\x04\x01\x05\x04\x01\x05\x04\x01\x01\x03\x04\x03\x04\x03\x04", // 㵤
+ 0x3d65: "\x04\x04\x01\x04\x04\x05\x04\x05\x04\x03\x04\x02\x05\x02\x02\x01", // 㵥
+ 0x3d66: "\x04\x04\x01\x01\x02\x01\x02\x01\x02\x05\x01\x01\x04\x05\x04", // 㵦
+ 0x3d67: "\x04\x04\x01\x01\x02\x02\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 㵧
+ 0x3d68: "\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x02\x05\x03\x04", // 㵨
+ 0x3d69: "\x04\x04\x01\x01\x02\x02\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 㵩
+ 0x3d6a: "\x04\x04\x01\x04\x03\x01\x01\x02\x01\x04\x01\x03\x05\x03\x04", // 㵪
+ 0x3d6b: "\x04\x04\x01\x05\x02\x01\x05\x02\x01\x05\x02\x01\x02\x05\x01\x01", // 㵫
+ 0x3d6c: "\x04\x04\x01\x03\x05\x01\x01\x05\x03\x05\x04\x02\x05\x02\x02\x01", // 㵬
+ 0x3d6d: "\x04\x04\x01\x01\x02\x01\x03\x02\x05\x01\x01\x04\x04\x04\x04", // 㵭
+ 0x3d6e: "\x04\x04\x01\x01\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01\x02", // 㵮
+ 0x3d6f: "\x04\x04\x01\x03\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 㵯
+ 0x3d70: "\x04\x04\x01\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 㵰
+ 0x3d71: "\x04\x04\x01\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04\x01\x02\x04", // 㵱
+ 0x3d72: "\x04\x04\x01\x03\x01\x01\x02\x02\x02\x02\x01\x03\x05\x04\x01\x05\x02", // 㵲
+ 0x3d73: "\x04\x04\x01\x04\x04\x05\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 㵳
+ 0x3d74: "\x04\x04\x01\x01\x03\x05\x01\x03\x01\x02\x05\x01\x02\x05\x05\x03\x04", // 㵴
+ 0x3d75: "\x04\x04\x01\x01\x02\x02\x01\x01\x01\x05\x04\x03\x02\x03\x03\x03\x04", // 㵵
+ 0x3d76: "\x04\x04\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03\x04", // 㵶
+ 0x3d77: "\x04\x01\x04\x03\x01\x01\x03\x04\x04\x01\x04\x01\x04\x03\x01\x01\x02", // 㵷
+ 0x3d78: "\x04\x04\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02", // 㵸
+ 0x3d79: "\x04\x04\x01\x02\x05\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 㵹
+ 0x3d7a: "\x04\x04\x01\x03\x01\x04\x03\x01\x04\x03\x02\x05\x01\x01\x03\x01\x02", // 㵺
+ 0x3d7b: "\x04\x04\x01\x03\x05\x01\x01\x03\x02\x01\x05\x01\x01\x02\x05\x04", // 㵻
+ 0x3d7c: "\x04\x04\x01\x04\x05\x03\x02\x01\x05\x01\x01\x03\x05\x04\x04\x04\x04", // 㵼
+ 0x3d7d: "\x04\x04\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01", // 㵽
+ 0x3d7e: "\x04\x04\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 㵾
+ 0x3d7f: "\x04\x04\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01", // 㵿
+ 0x3d80: "\x04\x04\x01\x03\x05\x01\x01\x03\x04\x01\x03\x04\x01\x03\x04\x03\x03\x03", // 㶀
+ 0x3d81: "\x04\x04\x01\x03\x04\x04\x03\x01\x02\x04\x02\x01\x05\x03\x01\x05\x03\x05", // 㶁
+ 0x3d82: "\x04\x04\x01\x04\x04\x01\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 㶂
+ 0x3d83: "\x04\x04\x01\x04\x04\x01\x03\x01\x01\x02\x02\x02\x02\x01\x04\x04\x04\x04", // 㶃
+ 0x3d84: "\x04\x04\x01\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x03\x02\x01\x05\x01\x01", // 㶄
+ 0x3d85: "\x04\x04\x01\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x05\x02\x01", // 㶅
+ 0x3d86: "\x04\x04\x01\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 㶆
+ 0x3d87: "\x04\x04\x01\x01\x02\x03\x04\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 㶇
+ 0x3d88: "\x04\x04\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x02\x05\x01\x02\x01\x04", // 㶈
+ 0x3d89: "\x04\x04\x01\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04\x03\x05\x04\x05\x01", // 㶉
+ 0x3d8a: "\x04\x04\x01\x01\x02\x05\x01\x02\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 㶊
+ 0x3d8b: "\x04\x04\x01\x02\x02\x04\x03\x01\x03\x05\x03\x03\x03\x04\x03\x01\x01\x02\x01", // 㶋
+ 0x3d8c: "\x04\x04\x01\x01\x02\x02\x01\x01\x01\x05\x05\x04\x05\x05\x04\x05\x03\x02\x02\x01", // 㶌
+ 0x3d8d: "\x04\x04\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x01\x01\x01\x02", // 㶍
+ 0x3d8e: "\x04\x04\x01\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04\x04\x05\x04", // 㶎
+ 0x3d8f: "\x04\x04\x01\x05\x02\x03\x04\x04\x03\x01\x02\x01\x05\x01\x01\x04\x05\x04\x04", // 㶏
+ 0x3d90: "\x04\x04\x01\x04\x01\x03\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01\x04\x05\x04\x04", // 㶐
+ 0x3d91: "\x04\x04\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x03\x05\x03\x04", // 㶑
+ 0x3d92: "\x04\x04\x01\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 㶒
+ 0x3d93: "\x04\x04\x01\x01\x02\x02\x01\x03\x05\x01\x03\x01\x02\x05\x01\x02\x05\x05\x03\x04", // 㶓
+ 0x3d94: "\x04\x04\x01\x02\x05\x02\x02\x01\x02\x05\x02\x02\x01\x02\x05\x02\x02\x01\x01\x03\x04", // 㶔
+ 0x3d95: "\x04\x04\x01\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01", // 㶕
+ 0x3d96: "\x04\x04\x01\x03\x02\x02\x03\x05\x04\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 㶖
+ 0x3d97: "\x03\x01\x05\x05\x04\x01\x04\x05\x05\x04\x02\x03\x04\x03\x02\x05\x01\x01\x02\x05\x03\x04", // 㶗
+ 0x3d98: "\x04\x04\x01\x03\x01\x04\x03\x01\x04\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 㶘
+ 0x3d99: "\x04\x04\x01\x04\x04\x01\x02\x02\x04\x03\x01\x03\x05\x03\x03\x03\x04\x03\x01\x01\x02\x01", // 㶙
+ 0x3d9a: "\x04\x04\x01\x01\x02\x05\x02\x02\x01\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x01\x01", // 㶚
+ 0x3d9b: "\x04\x04\x01\x04\x01\x05\x03\x03\x01\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 㶛
+ 0x3d9c: "\x04\x04\x01\x05\x01\x03\x04\x03\x01\x01\x03\x02\x05\x01\x03\x04\x03\x01\x01\x03\x02\x02\x02", // 㶜
+ 0x3d9d: "\x04\x04\x01\x04\x04\x01\x04\x01\x03\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01\x04\x05\x04\x04", // 㶝
+ 0x3d9e: "\x04\x04\x01\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 㶞
+ 0x3d9f: "\x04\x04\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 㶟
+ 0x3da0: "\x04\x04\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 㶠
+ 0x3da1: "\x03\x05\x04\x03\x03\x04", // 㶡
+ 0x3da2: "\x04\x03\x03\x04\x03\x05", // 㶢
+ 0x3da3: "\x01\x01\x02\x04\x03\x03\x04", // 㶣
+ 0x3da4: "\x04\x03\x03\x04\x03\x05\x04", // 㶤
+ 0x3da5: "\x04\x03\x03\x04\x01\x01\x02", // 㶥
+ 0x3da6: "\x04\x03\x03\x04\x05\x04\x05\x02", // 㶦
+ 0x3da7: "\x04\x03\x03\x04\x02\x05\x03\x04", // 㶧
+ 0x3da8: "\x01\x03\x02\x04\x04\x04\x04\x04", // 㶨
+ 0x3da9: "\x04\x03\x03\x04\x04\x05\x03\x05", // 㶩
+ 0x3daa: "\x01\x03\x02\x04\x04\x03\x03\x04", // 㶪
+ 0x3dab: "\x01\x03\x04\x04\x03\x04\x03\x03\x04", // 㶫
+ 0x3dac: "\x04\x03\x03\x04\x01\x01\x02\x03\x04", // 㶬
+ 0x3dad: "\x04\x03\x03\x04\x05\x05\x04\x05\x03", // 㶭
+ 0x3dae: "\x01\x02\x05\x03\x04\x04\x03\x03\x04", // 㶮
+ 0x3daf: "\x04\x03\x03\x04\x03\x05\x03\x05\x02", // 㶯
+ 0x3db0: "\x04\x03\x03\x04\x01\x02\x02\x01\x01", // 㶰
+ 0x3db1: "\x04\x03\x03\x04\x01\x02\x03\x04\x01", // 㶱
+ 0x3db2: "\x04\x03\x03\x04\x03\x05\x01\x01\x02", // 㶲
+ 0x3db3: "\x05\x01\x01\x01\x01\x02\x04\x03\x03\x04", // 㶳
+ 0x3db4: "\x04\x03\x03\x04\x03\x05\x04\x03\x05\x04", // 㶴
+ 0x3db5: "\x03\x02\x03\x01\x02\x01\x04\x04\x04\x04", // 㶵
+ 0x3db6: "\x04\x03\x03\x04\x04\x05\x03\x05\x03\x04", // 㶶
+ 0x3db7: "\x04\x03\x03\x04\x03\x05\x02\x05\x01\x01", // 㶷
+ 0x3db8: "\x04\x03\x03\x04\x05\x03\x05\x03\x05\x03", // 㶸
+ 0x3db9: "\x04\x03\x03\x04\x01\x02\x01\x02\x05\x03\x04", // 㶹
+ 0x3dba: "\x04\x03\x03\x04\x01\x01\x03\x04\x02\x05\x01", // 㶺
+ 0x3dbb: "\x03\x05\x04\x01\x01\x01\x02\x04\x04\x04\x04", // 㶻
+ 0x3dbc: "\x04\x03\x03\x04\x05\x04\x03\x01\x01\x03\x04", // 㶼
+ 0x3dbd: "\x04\x03\x03\x04\x02\x05\x01\x02\x05\x03\x04", // 㶽
+ 0x3dbe: "\x01\x02\x05\x02\x02\x01\x01\x04\x03\x03\x04", // 㶾
+ 0x3dbf: "\x04\x03\x03\x04\x01\x02\x04\x05\x05\x02\x01", // 㶿
+ 0x3dc0: "\x04\x03\x03\x04\x04\x03\x03\x04\x05\x01\x02", // 㷀
+ 0x3dc1: "\x04\x03\x03\x04\x05\x04\x02\x05\x01\x01\x02", // 㷁
+ 0x3dc2: "\x01\x02\x05\x01\x02\x05\x05\x04\x04\x03\x03\x04", // 㷂
+ 0x3dc3: "\x04\x03\x03\x04\x01\x02\x01\x01\x01\x05\x03\x04", // 㷃
+ 0x3dc4: "\x04\x03\x03\x04\x02\x05\x01\x01\x01\x02\x03\x04", // 㷄
+ 0x3dc5: "\x01\x02\x02\x01\x01\x01\x05\x04\x04\x03\x03\x04", // 㷅
+ 0x3dc6: "\x04\x03\x03\x04\x03\x02\x05\x01\x05\x01\x01\x02", // 㷆
+ 0x3dc7: "\x03\x05\x04\x03\x05\x04\x01\x03\x04\x03\x03\x04", // 㷇
+ 0x3dc8: "\x04\x03\x03\x04\x01\x03\x04\x02\x05\x01\x01\x05", // 㷈
+ 0x3dc9: "\x05\x01\x03\x01\x01\x04\x03\x03\x04\x01\x02\x04", // 㷉
+ 0x3dca: "\x01\x02\x03\x04\x01\x02\x03\x04\x04\x04\x04\x04", // 㷊
+ 0x3dcb: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04", // 㷋
+ 0x3dcc: "\x04\x03\x03\x04\x05\x01\x01\x04\x05\x02\x05\x02", // 㷌
+ 0x3dcd: "\x04\x03\x03\x04\x03\x04\x01\x02\x05\x01\x02\x02", // 㷍
+ 0x3dce: "\x04\x03\x03\x04\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 㷎
+ 0x3dcf: "\x03\x01\x02\x03\x04\x03\x01\x01\x02\x04\x03\x03\x04", // 㷏
+ 0x3dd0: "\x04\x03\x03\x04\x03\x02\x01\x05\x01\x01\x01\x02\x01", // 㷐
+ 0x3dd1: "\x04\x03\x03\x04\x01\x02\x05\x02\x02\x01\x01\x02\x01", // 㷑
+ 0x3dd2: "\x04\x03\x03\x04\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 㷒
+ 0x3dd3: "\x04\x03\x03\x04\x03\x05\x03\x03\x04\x04\x05\x04\x04", // 㷓
+ 0x3dd4: "\x04\x03\x03\x04\x03\x04\x04\x03\x02\x02\x05\x01\x01", // 㷔
+ 0x3dd5: "\x04\x03\x01\x02\x05\x03\x05\x01\x01\x04\x03\x03\x04", // 㷕
+ 0x3dd6: "\x02\x05\x01\x01\x04\x03\x03\x04\x05\x03\x02\x05\x01", // 㷖
+ 0x3dd7: "\x03\x02\x05\x01\x05\x01\x05\x01\x05\x04\x03\x03\x04", // 㷗
+ 0x3dd8: "\x04\x03\x03\x04\x05\x04\x02\x05\x01\x01\x02\x03\x04", // 㷘
+ 0x3dd9: "\x04\x03\x03\x04\x04\x03\x01\x02\x05\x01\x01\x02\x02", // 㷙
+ 0x3dda: "\x04\x03\x03\x04\x04\x01\x02\x05\x01\x04\x05\x01\x02", // 㷚
+ 0x3ddb: "\x03\x02\x02\x05\x01\x01\x02\x03\x04\x04\x04\x04\x04", // 㷛
+ 0x3ddc: "\x04\x03\x03\x04\x04\x01\x03\x02\x03\x04\x01\x03\x04", // 㷜
+ 0x3ddd: "\x04\x03\x03\x04\x04\x04\x05\x03\x04\x01\x03\x04\x04", // 㷝
+ 0x3dde: "\x04\x03\x03\x04\x01\x03\x02\x05\x01\x01\x05\x02\x01", // 㷞
+ 0x3ddf: "\x04\x03\x03\x04\x03\x02\x05\x01\x05\x01\x04\x05\x04", // 㷟
+ 0x3de0: "\x04\x03\x03\x04\x04\x03\x03\x04\x03\x05\x04\x01\x05\x02", // 㷠
+ 0x3de1: "\x02\x05\x01\x01\x01\x01\x05\x01\x05\x04\x03\x03\x04", // 㷡
+ 0x3de2: "\x04\x03\x01\x01\x01\x03\x01\x02\x01\x04\x03\x03\x04", // 㷢
+ 0x3de3: "\x04\x03\x03\x04\x04\x03\x01\x01\x02\x01\x03\x01\x01\x02", // 㷣
+ 0x3de4: "\x01\x02\x01\x04\x05\x01\x04\x03\x03\x04\x03\x05\x05\x04", // 㷤
+ 0x3de5: "\x04\x03\x03\x04\x04\x03\x03\x04\x05\x02\x05\x03\x04\x01", // 㷥
+ 0x3de6: "\x01\x02\x02\x01\x01\x01\x04\x03\x03\x04\x04\x04\x04\x04", // 㷦
+ 0x3de7: "\x04\x03\x03\x04\x01\x03\x03\x02\x05\x01\x01\x02\x03\x04", // 㷧
+ 0x3de8: "\x04\x03\x03\x04\x02\x05\x02\x03\x05\x04\x01\x01\x01\x02", // 㷨
+ 0x3de9: "\x03\x01\x02\x05\x01\x02\x05\x05\x01\x05\x04\x03\x03\x04", // 㷩
+ 0x3dea: "\x04\x03\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03", // 㷪
+ 0x3deb: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04\x04\x03\x03\x04", // 㷫
+ 0x3dec: "\x04\x03\x03\x04\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 㷬
+ 0x3ded: "\x03\x05\x04\x01\x01\x01\x02\x04\x05\x04\x04\x03\x03\x04", // 㷭
+ 0x3dee: "\x04\x03\x03\x04\x01\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01", // 㷮
+ 0x3def: "\x04\x03\x03\x04\x01\x02\x01\x01\x01\x01\x03\x04\x01\x01\x02", // 㷯
+ 0x3df0: "\x04\x03\x03\x04\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 㷰
+ 0x3df1: "\x05\x04\x02\x05\x01\x01\x01\x02\x01\x05\x04\x04\x04\x04\x04", // 㷱
+ 0x3df2: "\x04\x03\x03\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01\x05\x03", // 㷲
+ 0x3df3: "\x01\x03\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01\x04\x03\x03\x04", // 㷳
+ 0x3df4: "\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x04\x03\x03\x04", // 㷴
+ 0x3df5: "\x04\x03\x03\x04\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 㷵
+ 0x3df6: "\x03\x02\x01\x02\x02\x01\x03\x02\x05\x01\x01\x02\x04\x04\x04\x04", // 㷶
+ 0x3df7: "\x04\x03\x03\x04\x05\x01\x05\x05\x01\x05\x01\x02\x02\x01\x03\x04", // 㷷
+ 0x3df8: "\x04\x03\x03\x04\x02\x05\x01\x01\x01\x01\x02\x02\x01\x01\x02", // 㷸
+ 0x3df9: "\x04\x03\x03\x04\x01\x02\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 㷹
+ 0x3dfa: "\x03\x05\x03\x02\x01\x05\x01\x01\x03\x01\x03\x04\x04\x03\x03\x04", // 㷺
+ 0x3dfb: "\x04\x03\x03\x04\x03\x01\x01\x02\x02\x02\x02\x01\x04\x04\x04\x04", // 㷻
+ 0x3dfc: "\x01\x02\x02\x01\x02\x05\x01\x02\x01\x01\x03\x05\x04\x03\x03\x04", // 㷼
+ 0x3dfd: "\x04\x03\x03\x04\x04\x03\x01\x01\x01\x02\x04\x03\x01\x02\x05\x01", // 㷽
+ 0x3dfe: "\x04\x03\x03\x04\x02\x01\x05\x03\x01\x05\x01\x03\x05\x03\x03\x03\x04", // 㷾
+ 0x3dff: "\x04\x03\x03\x04\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 㷿
+ 0x3e00: "\x04\x03\x03\x04\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x01\x02\x01", // 㸀
+ 0x3e01: "\x04\x03\x03\x04\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x02\x03\x04", // 㸁
+ 0x3e02: "\x04\x03\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04\x04\x03\x03\x04", // 㸂
+ 0x3e03: "\x02\x05\x04\x03\x01\x02\x01\x01\x02\x01\x02\x05\x01\x04\x04\x04\x04", // 㸃
+ 0x3e04: "\x04\x03\x03\x04\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01", // 㸄
+ 0x3e05: "\x04\x03\x03\x04\x03\x01\x04\x03\x01\x04\x05\x01\x01\x05\x04\x05\x02", // 㸅
+ 0x3e06: "\x04\x03\x03\x04\x03\x01\x02\x01\x02\x05\x01\x02\x01\x01\x01\x02\x01\x01\x01", // 㸆
+ 0x3e07: "\x04\x03\x03\x04\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 㸇
+ 0x3e08: "\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x04\x03\x03\x04", // 㸈
+ 0x3e09: "\x04\x01\x04\x03\x01\x01\x02\x04\x03\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04", // 㸉
+ 0x3e0a: "\x04\x03\x03\x04\x01\x02\x05\x01\x02\x03\x04\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 㸊
+ 0x3e0b: "\x03\x05\x04\x04\x04\x03\x03\x04\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 㸋
+ 0x3e0c: "\x04\x03\x03\x04\x01\x04\x05\x02\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 㸌
+ 0x3e0d: "\x04\x03\x03\x04\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x04\x03\x01\x01\x05\x03\x04", // 㸍
+ 0x3e0e: "\x04\x03\x03\x04\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01", // 㸎
+ 0x3e0f: "\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x04\x03\x03\x04", // 㸏
+ 0x3e10: "\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 㸐
+ 0x3e11: "\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x04\x05\x01\x02\x03\x04\x01\x02\x03\x04\x04\x03\x03\x04", // 㸑
+ 0x3e12: "\x03\x04\x04\x03\x03\x01\x02\x01", // 㸒
+ 0x3e13: "\x03\x04\x04\x03\x02\x05\x01\x01", // 㸓
+ 0x3e14: "\x03\x04\x03\x01\x03\x02\x05\x01\x01\x01", // 㸔
+ 0x3e15: "\x03\x03\x02\x04\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 㸕
+ 0x3e16: "\x03\x04\x03\x04\x02\x05\x01\x01\x01", // 㸖
+ 0x3e17: "\x03\x04\x03\x04\x02\x05\x01\x02\x05\x01", // 㸗
+ 0x3e18: "\x03\x04\x03\x04\x02\x05\x02\x02\x01\x01\x02", // 㸘
+ 0x3e19: "\x03\x04\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01", // 㸙
+ 0x3e1a: "\x03\x04\x03\x04\x03\x04\x03\x04", // 㸚
+ 0x3e1b: "\x05\x02\x01\x03\x05\x03\x02\x05\x01", // 㸛
+ 0x3e1c: "\x05\x02\x01\x03\x04\x04\x05\x03\x04\x01\x02\x01", // 㸜
+ 0x3e1d: "\x03\x02\x01\x05\x03\x05\x03\x04", // 㸝
+ 0x3e1e: "\x03\x02\x01\x05\x03\x02\x01\x05", // 㸞
+ 0x3e1f: "\x03\x02\x01\x05\x03\x05\x02\x05\x01\x01", // 㸟
+ 0x3e20: "\x03\x02\x01\x05\x03\x04\x01\x05\x03\x04", // 㸠
+ 0x3e21: "\x03\x02\x01\x05\x03\x01\x01\x02\x03\x04", // 㸡
+ 0x3e22: "\x03\x02\x01\x05\x01\x02\x02\x01\x03\x02\x05\x01\x01\x02", // 㸢
+ 0x3e23: "\x03\x02\x01\x05\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x02\x03\x04", // 㸣
+ 0x3e24: "\x04\x01\x04\x03\x01\x01\x03\x03\x02\x01\x05\x04\x01\x04\x03\x01\x01\x02", // 㸤
+ 0x3e25: "\x03\x02\x01\x05\x03\x05\x02\x05\x01\x01\x05\x03\x05\x03\x05\x02\x05\x01\x03\x05\x04", // 㸥
+ 0x3e26: "\x01\x05\x02\x04", // 㸦
+ 0x3e27: "\x01\x05\x02\x03\x05\x01\x01\x05\x03\x04", // 㸧
+ 0x3e28: "\x03\x01\x02\x01\x05\x02", // 㸨
+ 0x3e29: "\x03\x01\x02\x01\x01\x01\x02", // 㸩
+ 0x3e2a: "\x03\x01\x02\x01\x03\x02\x02", // 㸪
+ 0x3e2b: "\x03\x01\x02\x01\x03\x03\x01\x02", // 㸫
+ 0x3e2c: "\x03\x01\x02\x01\x01\x02\x05\x02", // 㸬
+ 0x3e2d: "\x03\x01\x02\x01\x05\x02\x01\x05", // 㸭
+ 0x3e2e: "\x03\x01\x02\x01\x03\x04\x05\x03", // 㸮
+ 0x3e2f: "\x03\x01\x02\x01\x04\x04\x01\x02", // 㸯
+ 0x3e30: "\x03\x01\x02\x01\x04\x04\x05\x03\x05", // 㸰
+ 0x3e31: "\x03\x01\x02\x01\x03\x01\x05\x02\x05", // 㸱
+ 0x3e32: "\x03\x01\x02\x01\x03\x01\x02\x01\x01", // 㸲
+ 0x3e33: "\x03\x01\x02\x01\x03\x04\x04\x05\x04", // 㸳
+ 0x3e34: "\x01\x03\x02\x05\x01\x03\x01\x01\x02", // 㸴
+ 0x3e35: "\x03\x01\x02\x01\x01\x02\x01\x02\x05\x01", // 㸵
+ 0x3e36: "\x03\x01\x02\x01\x02\x05\x01\x03\x04\x01", // 㸶
+ 0x3e37: "\x01\x01\x01\x02\x05\x03\x03\x01\x01\x02", // 㸷
+ 0x3e38: "\x03\x01\x02\x01\x03\x03\x01\x02\x05\x01", // 㸸
+ 0x3e39: "\x03\x01\x02\x01\x03\x04\x04\x03\x01\x02\x04", // 㸹
+ 0x3e3a: "\x04\x04\x01\x02\x03\x04\x03\x03\x01\x01\x02", // 㸺
+ 0x3e3b: "\x03\x01\x02\x01\x05\x04\x03\x01\x01\x03\x04", // 㸻
+ 0x3e3c: "\x03\x01\x02\x01\x03\x05\x04\x01\x01\x01\x02", // 㸼
+ 0x3e3d: "\x03\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 㸽
+ 0x3e3e: "\x03\x01\x02\x01\x05\x03\x04\x04\x05\x04\x04", // 㸾
+ 0x3e3f: "\x03\x01\x02\x01\x01\x02\x01\x04\x05\x03\x05", // 㸿
+ 0x3e40: "\x03\x01\x02\x01\x01\x02\x04\x05\x05\x02\x01", // 㹀
+ 0x3e41: "\x03\x01\x02\x01\x04\x01\x02\x05\x01\x02\x03\x04", // 㹁
+ 0x3e42: "\x01\x02\x05\x01\x02\x05\x05\x04\x03\x01\x01\x02", // 㹂
+ 0x3e43: "\x02\x01\x01\x01\x02\x01\x01\x01\x03\x01\x01\x02", // 㹃
+ 0x3e44: "\x03\x01\x02\x01\x02\x05\x01\x02\x01\x03\x04\x03\x05\x04", // 㹄
+ 0x3e45: "\x03\x01\x02\x01\x03\x05\x03\x03\x04\x04\x05\x04\x04", // 㹅
+ 0x3e46: "\x03\x01\x02\x01\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 㹆
+ 0x3e47: "\x03\x01\x02\x01\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 㹇
+ 0x3e48: "\x01\x01\x02\x03\x04\x03\x01\x03\x04\x03\x01\x01\x02", // 㹈
+ 0x3e49: "\x03\x01\x02\x01\x01\x03\x03\x02\x05\x01\x01\x02\x03\x04", // 㹉
+ 0x3e4a: "\x03\x01\x02\x01\x04\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 㹊
+ 0x3e4b: "\x03\x01\x02\x01\x03\x02\x02\x03\x05\x04\x03\x03\x03", // 㹋
+ 0x3e4c: "\x03\x01\x02\x01\x04\x01\x04\x03\x01\x03\x03\x01\x01\x02\x01", // 㹌
+ 0x3e4d: "\x03\x01\x02\x01\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01", // 㹍
+ 0x3e4e: "\x03\x01\x02\x01\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 㹎
+ 0x3e4f: "\x03\x01\x02\x01\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01", // 㹏
+ 0x3e50: "\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04\x03\x01\x01\x02", // 㹐
+ 0x3e51: "\x03\x01\x02\x01\x01\x01\x01\x02\x05\x01\x01\x01\x03\x04\x05\x04", // 㹑
+ 0x3e52: "\x03\x01\x02\x01\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 㹒
+ 0x3e53: "\x03\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 㹓
+ 0x3e54: "\x03\x01\x02\x01\x01\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x01\x01", // 㹔
+ 0x3e55: "\x01\x01\x03\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04\x03\x01\x01\x02", // 㹕
+ 0x3e56: "\x03\x01\x02\x01\x04\x03\x01\x01\x03\x04\x01\x03\x05\x03\x03\x03\x04", // 㹖
+ 0x3e57: "\x03\x01\x02\x01\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 㹗
+ 0x3e58: "\x03\x01\x02\x01\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02", // 㹘
+ 0x3e59: "\x03\x01\x02\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x02\x05\x01\x01\x01", // 㹙
+ 0x3e5a: "\x03\x01\x02\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x02\x05\x01\x02\x05\x01", // 㹚
+ 0x3e5b: "\x03\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x02\x01\x02\x01\x05\x01\x05\x03\x04\x03\x05\x04", // 㹛
+ 0x3e5c: "\x01\x03\x04\x04\x01\x03\x04\x04", // 㹜
+ 0x3e5d: "\x03\x05\x03\x03\x05\x01\x05", // 㹝
+ 0x3e5e: "\x03\x05\x03\x03\x03\x01\x02", // 㹞
+ 0x3e5f: "\x03\x05\x03\x05\x01\x03\x04", // 㹟
+ 0x3e60: "\x03\x05\x03\x01\x05\x02\x05", // 㹠
+ 0x3e61: "\x03\x05\x03\x04\x01\x05\x05\x04", // 㹡
+ 0x3e62: "\x03\x05\x03\x05\x03\x02\x05\x01", // 㹢
+ 0x3e63: "\x03\x05\x03\x03\x05\x04\x04\x04", // 㹣
+ 0x3e64: "\x03\x05\x03\x01\x02\x01\x05\x04", // 㹤
+ 0x3e65: "\x03\x05\x03\x04\x01\x01\x02\x01", // 㹥
+ 0x3e66: "\x03\x05\x03\x05\x03\x02\x05\x01", // 㹦
+ 0x3e67: "\x03\x05\x03\x02\x05\x01\x03\x04", // 㹧
+ 0x3e68: "\x03\x05\x03\x02\x05\x01\x02\x01", // 㹨
+ 0x3e69: "\x03\x05\x03\x05\x04\x01\x02\x01", // 㹩
+ 0x3e6a: "\x03\x05\x03\x03\x05\x03\x05\x01", // 㹪
+ 0x3e6b: "\x03\x05\x03\x01\x05\x01\x05\x03\x04", // 㹫
+ 0x3e6c: "\x03\x05\x03\x01\x02\x05\x01\x03\x04", // 㹬
+ 0x3e6d: "\x03\x05\x03\x02\x05\x01\x01\x05\x03", // 㹭
+ 0x3e6e: "\x03\x05\x03\x01\x03\x02\x05\x01\x01", // 㹮
+ 0x3e6f: "\x03\x05\x03\x03\x02\x01\x02\x03\x04", // 㹯
+ 0x3e70: "\x03\x05\x03\x02\x04\x03\x01\x03\x05", // 㹰
+ 0x3e71: "\x03\x05\x03\x02\x05\x01\x02\x01\x03\x04", // 㹱
+ 0x3e72: "\x03\x05\x03\x01\x02\x01\x03\x05\x02\x01", // 㹲
+ 0x3e73: "\x03\x05\x03\x01\x02\x05\x01\x02\x05\x01", // 㹳
+ 0x3e74: "\x03\x05\x03\x01\x02\x05\x01\x01\x03\x04", // 㹴
+ 0x3e75: "\x03\x05\x03\x01\x05\x05\x05\x01\x02\x01", // 㹵
+ 0x3e76: "\x03\x05\x03\x03\x01\x02\x01\x05\x04", // 㹶
+ 0x3e77: "\x03\x04\x01\x03\x02\x05\x02\x01\x03\x04\x04", // 㹷
+ 0x3e78: "\x03\x05\x03\x03\x02\x05\x01\x01\x03\x05", // 㹸
+ 0x3e79: "\x03\x05\x03\x04\x01\x03\x05\x01\x01\x03\x04", // 㹹
+ 0x3e7a: "\x03\x05\x03\x02\x05\x03\x04\x02\x05\x01\x01", // 㹺
+ 0x3e7b: "\x03\x05\x03\x03\x01\x03\x04\x05\x03\x01", // 㹻
+ 0x3e7c: "\x03\x05\x03\x03\x05\x04\x03\x01\x02\x03\x04", // 㹼
+ 0x3e7d: "\x03\x05\x03\x01\x05\x03\x04\x01\x05\x03\x04", // 㹽
+ 0x3e7e: "\x03\x05\x03\x03\x05\x04\x02\x04\x02\x05\x01", // 㹾
+ 0x3e7f: "\x03\x05\x03\x02\x01\x02\x05\x01\x01\x01\x02", // 㹿
+ 0x3e80: "\x03\x05\x03\x03\x05\x03\x03\x04\x05\x04\x04", // 㺀
+ 0x3e81: "\x03\x05\x03\x05\x05\x05\x03\x02\x05\x03\x04\x01", // 㺁
+ 0x3e82: "\x03\x05\x03\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 㺂
+ 0x3e83: "\x03\x05\x03\x01\x02\x02\x03\x05\x02\x05\x01", // 㺃
+ 0x3e84: "\x03\x05\x03\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 㺄
+ 0x3e85: "\x03\x05\x03\x03\x05\x01\x03\x03\x01\x01\x03\x04", // 㺅
+ 0x3e86: "\x03\x05\x03\x04\x05\x01\x03\x04\x02\x05\x03\x04", // 㺆
+ 0x3e87: "\x03\x05\x03\x01\x02\x02\x05\x01\x02\x05\x01\x03\x04\x04", // 㺇
+ 0x3e88: "\x03\x05\x03\x02\x05\x02\x01\x02\x05\x01\x02\x01\x04", // 㺈
+ 0x3e89: "\x01\x02\x01\x04\x05\x01\x01\x03\x04\x04\x03\x05\x05\x04", // 㺉
+ 0x3e8a: "\x03\x05\x03\x04\x03\x01\x01\x02\x01\x04\x05\x04\x04", // 㺊
+ 0x3e8b: "\x03\x05\x03\x03\x04\x05\x04\x05\x04\x01\x05\x04\x01", // 㺋
+ 0x3e8c: "\x03\x05\x03\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 㺌
+ 0x3e8d: "\x03\x05\x03\x04\x04\x05\x03\x02\x01\x02\x01\x03\x04", // 㺍
+ 0x3e8e: "\x03\x05\x03\x04\x01\x03\x05\x01\x01\x02\x05\x01\x01\x02", // 㺎
+ 0x3e8f: "\x03\x05\x03\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 㺏
+ 0x3e90: "\x03\x05\x03\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 㺐
+ 0x3e91: "\x03\x05\x03\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 㺑
+ 0x3e92: "\x03\x05\x03\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 㺒
+ 0x3e93: "\x03\x05\x03\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 㺓
+ 0x3e94: "\x03\x05\x03\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04", // 㺔
+ 0x3e95: "\x03\x05\x03\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 㺕
+ 0x3e96: "\x03\x05\x03\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 㺖
+ 0x3e97: "\x03\x05\x03\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 㺗
+ 0x3e98: "\x03\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 㺘
+ 0x3e99: "\x03\x05\x03\x04\x04\x05\x05\x05\x04\x01\x04\x02\x05\x03\x04", // 㺙
+ 0x3e9a: "\x03\x05\x03\x01\x02\x01\x04\x03\x01\x01\x01\x02\x04\x05\x04", // 㺚
+ 0x3e9b: "\x03\x05\x03\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x03\x02", // 㺛
+ 0x3e9c: "\x03\x05\x03\x02\x05\x01\x02\x02\x01\x01\x03\x01\x01\x05\x03\x04", // 㺜
+ 0x3e9d: "\x03\x05\x03\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01", // 㺝
+ 0x3e9e: "\x03\x05\x03\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 㺞
+ 0x3e9f: "\x03\x05\x03\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 㺟
+ 0x3ea0: "\x03\x05\x03\x04\x04\x05\x03\x04\x03\x03\x05\x04\x04\x03\x03\x05\x04\x04", // 㺠
+ 0x3ea1: "\x03\x05\x03\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 㺡
+ 0x3ea2: "\x03\x05\x03\x01\x04\x05\x02\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 㺢
+ 0x3ea3: "\x03\x05\x03\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x04\x03\x01\x01\x05\x03\x04", // 㺣
+ 0x3ea4: "\x03\x05\x03\x03\x04\x03\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 㺤
+ 0x3ea5: "\x03\x05\x03\x03\x05\x02\x05\x01\x01\x05\x03\x05\x03\x05\x02\x05\x01\x03\x05\x04", // 㺥
+ 0x3ea6: "\x03\x05\x03\x01\x02\x02\x01\x01\x01\x05\x05\x04\x05\x05\x04\x05\x03\x02\x02\x01", // 㺦
+ 0x3ea7: "\x03\x05\x03\x02\x05\x01\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x02\x05\x01", // 㺧
+ 0x3ea8: "\x01\x01\x02\x01\x05\x04", // 㺨
+ 0x3ea9: "\x01\x01\x02\x01\x05\x02", // 㺩
+ 0x3eaa: "\x01\x01\x02\x01\x02\x04", // 㺪
+ 0x3eab: "\x01\x01\x02\x01\x02\x02", // 㺫
+ 0x3eac: "\x01\x01\x02\x01\x03\x05\x04", // 㺬
+ 0x3ead: "\x01\x01\x02\x01\x05\x02\x01", // 㺭
+ 0x3eae: "\x01\x01\x02\x01\x01\x01\x05", // 㺮
+ 0x3eaf: "\x01\x01\x02\x01\x01\x03\x04", // 㺯
+ 0x3eb0: "\x01\x01\x02\x01\x01\x02\x05\x02", // 㺰
+ 0x3eb1: "\x03\x02\x05\x03\x01\x01\x02\x01\x04", // 㺱
+ 0x3eb2: "\x01\x01\x02\x01\x05\x02\x01\x01", // 㺲
+ 0x3eb3: "\x01\x01\x02\x01\x02\x01\x05\x04", // 㺳
+ 0x3eb4: "\x01\x01\x02\x01\x01\x03\x04\x04", // 㺴
+ 0x3eb5: "\x01\x01\x02\x01\x03\x05\x03\x04", // 㺵
+ 0x3eb6: "\x01\x01\x02\x01\x04\x04\x01\x02", // 㺶
+ 0x3eb7: "\x01\x01\x02\x01\x01\x02\x03\x04\x04", // 㺷
+ 0x3eb8: "\x03\x02\x03\x05\x04\x01\x01\x02\x01", // 㺸
+ 0x3eb9: "\x01\x01\x02\x01\x05\x04\x01\x03\x02", // 㺹
+ 0x3eba: "\x01\x01\x02\x01\x02\x05\x01\x01\x01", // 㺺
+ 0x3ebb: "\x01\x01\x02\x01\x01\x02\x05\x02", // 㺻
+ 0x3ebc: "\x01\x01\x02\x01\x05\x02\x01\x03\x04", // 㺼
+ 0x3ebd: "\x01\x01\x02\x01\x01\x03\x02\x04\x01", // 㺽
+ 0x3ebe: "\x01\x01\x02\x01\x02\x05\x02\x05\x01", // 㺾
+ 0x3ebf: "\x01\x01\x02\x01\x01\x02\x02\x05\x01\x02\x05", // 㺿
+ 0x3ec0: "\x01\x01\x02\x01\x02\x05\x01\x01\x03\x04", // 㻀
+ 0x3ec1: "\x01\x01\x02\x01\x02\x05\x02\x05\x01\x01", // 㻁
+ 0x3ec2: "\x01\x01\x02\x01\x04\x03\x01\x01\x03\x02", // 㻂
+ 0x3ec3: "\x02\x05\x01\x02\x02\x01\x01\x01\x02\x01\x04", // 㻃
+ 0x3ec4: "\x01\x01\x02\x01\x03\x01\x02\x01\x03\x04", // 㻄
+ 0x3ec5: "\x01\x01\x02\x01\x03\x04\x01\x01\x05\x04", // 㻅
+ 0x3ec6: "\x01\x01\x02\x01\x05\x04\x02\x05\x01\x01", // 㻆
+ 0x3ec7: "\x01\x01\x02\x01\x03\x04\x01\x01\x02\x01", // 㻇
+ 0x3ec8: "\x01\x01\x02\x01\x03\x03\x01\x02\x05\x01", // 㻈
+ 0x3ec9: "\x01\x01\x02\x01\x02\x01\x02\x01\x02\x03\x03", // 㻉
+ 0x3eca: "\x01\x01\x02\x01\x03\x05\x02\x05\x01\x03\x05", // 㻊
+ 0x3ecb: "\x01\x01\x02\x01\x01\x02\x05\x01\x02\x03\x04", // 㻋
+ 0x3ecc: "\x01\x01\x02\x01\x03\x04\x01\x01\x02\x03\x04", // 㻌
+ 0x3ecd: "\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 㻍
+ 0x3ece: "\x01\x01\x01\x02\x01\x01\x01\x02\x01\x03\x04", // 㻎
+ 0x3ecf: "\x01\x01\x02\x01\x05\x01\x01\x04\x03\x03\x04", // 㻏
+ 0x3ed0: "\x01\x01\x02\x01\x05\x04\x03\x04\x03\x05\x04", // 㻐
+ 0x3ed1: "\x01\x01\x02\x01\x03\x01\x02\x03\x04\x05\x02\x01", // 㻑
+ 0x3ed2: "\x01\x01\x02\x01\x02\x05\x03\x01\x02\x03\x04\x01", // 㻒
+ 0x3ed3: "\x01\x01\x02\x01\x01\x02\x02\x01\x01\x01\x05\x04", // 㻓
+ 0x3ed4: "\x01\x01\x02\x01\x03\x01\x02\x01\x02\x02\x01\x01", // 㻔
+ 0x3ed5: "\x01\x01\x02\x01\x05\x01\x03\x05\x02\x02\x05\x02", // 㻕
+ 0x3ed6: "\x01\x01\x02\x01\x05\x01\x01\x02\x04\x01\x03\x04", // 㻖
+ 0x3ed7: "\x02\x01\x01\x01\x02\x01\x01\x01\x01\x01\x02\x01\x04", // 㻗
+ 0x3ed8: "\x01\x01\x02\x01\x04\x04\x05\x02\x05\x01\x01\x02", // 㻘
+ 0x3ed9: "\x01\x01\x02\x01\x04\x01\x05\x04\x02\x05\x01\x01", // 㻙
+ 0x3eda: "\x01\x01\x02\x01\x03\x05\x01\x01\x03\x05\x01\x01", // 㻚
+ 0x3edb: "\x01\x01\x02\x01\x02\x05\x01\x01\x03\x05\x03\x03", // 㻛
+ 0x3edc: "\x01\x01\x02\x01\x03\x04\x03\x04\x02\x01\x03\x04", // 㻜
+ 0x3edd: "\x01\x01\x02\x01\x01\x02\x05\x01\x02\x03\x04\x02\x02", // 㻝
+ 0x3ede: "\x01\x01\x02\x01\x04\x05\x01\x03\x02\x05\x01\x02\x02", // 㻞
+ 0x3edf: "\x01\x01\x02\x01\x01\x03\x01\x02\x01\x02\x05\x01\x01", // 㻟
+ 0x3ee0: "\x01\x01\x02\x01\x04\x04\x05\x03\x04\x01\x03\x04\x04", // 㻠
+ 0x3ee1: "\x01\x01\x02\x01\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 㻡
+ 0x3ee2: "\x01\x01\x02\x01\x04\x01\x05\x03\x03\x01\x05\x02\x05", // 㻢
+ 0x3ee3: "\x01\x01\x02\x01\x01\x02\x02\x01\x01\x01\x03\x04\x05", // 㻣
+ 0x3ee4: "\x01\x01\x02\x01\x01\x02\x02\x03\x05\x02\x05\x01", // 㻤
+ 0x3ee5: "\x01\x01\x02\x01\x04\x03\x01\x02\x05\x03\x05\x01\x01", // 㻥
+ 0x3ee6: "\x01\x01\x02\x01\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 㻦
+ 0x3ee7: "\x01\x01\x02\x01\x03\x05\x04\x01\x05\x02\x01\x02\x03\x04", // 㻧
+ 0x3ee8: "\x01\x02\x05\x01\x02\x05\x05\x04\x04\x04\x01\x01\x02\x01\x04", // 㻨
+ 0x3ee9: "\x01\x01\x02\x01\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 㻩
+ 0x3eea: "\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03", // 㻪
+ 0x3eeb: "\x01\x01\x02\x01\x02\x05\x01\x01\x01\x02\x02\x01\x01\x02", // 㻫
+ 0x3eec: "\x01\x01\x02\x01\x01\x04\x05\x02\x04\x04\x04\x04\x01\x01\x05", // 㻬
+ 0x3eed: "\x01\x01\x02\x01\x04\x01\x05\x05\x04\x04\x01\x03\x04\x01\x02", // 㻭
+ 0x3eee: "\x01\x01\x02\x01\x03\x05\x04\x04\x05\x04\x01\x01\x02\x03\x04", // 㻮
+ 0x3eef: "\x01\x01\x02\x01\x02\x01\x05\x03\x01\x05\x03\x04\x03\x01\x02", // 㻯
+ 0x3ef0: "\x01\x01\x02\x01\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x01", // 㻰
+ 0x3ef1: "\x01\x01\x02\x01\x03\x05\x04\x01\x01\x01\x02\x04\x05\x04", // 㻱
+ 0x3ef2: "\x01\x01\x02\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 㻲
+ 0x3ef3: "\x01\x01\x02\x01\x01\x02\x02\x03\x01\x02\x03\x04\x02\x02", // 㻳
+ 0x3ef4: "\x01\x01\x02\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 㻴
+ 0x3ef5: "\x01\x01\x02\x01\x05\x01\x03\x05\x02\x01\x05\x02\x01\x05\x02\x01", // 㻵
+ 0x3ef6: "\x01\x01\x02\x01\x03\x01\x04\x03\x01\x04\x05\x01\x01\x01\x01\x02", // 㻶
+ 0x3ef7: "\x01\x01\x02\x01\x01\x02\x05\x02\x03\x04\x01\x02\x05\x02\x03\x04", // 㻷
+ 0x3ef8: "\x01\x01\x02\x01\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x01", // 㻸
+ 0x3ef9: "\x01\x03\x02\x05\x01\x01\x03\x05\x03\x03\x03\x04\x01\x01\x02\x01\x04", // 㻹
+ 0x3efa: "\x02\x03\x03\x01\x02\x03\x04\x03\x01\x03\x04\x01\x01\x02\x01\x04", // 㻺
+ 0x3efb: "\x01\x01\x02\x01\x04\x01\x02\x05\x01\x05\x02\x01\x03\x01\x03\x04", // 㻻
+ 0x3efc: "\x01\x01\x02\x01\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 㻼
+ 0x3efd: "\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x02\x05", // 㻽
+ 0x3efe: "\x04\x01\x05\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01\x01\x01\x02\x01\x04", // 㻾
+ 0x3eff: "\x01\x01\x02\x01\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 㻿
+ 0x3f00: "\x01\x01\x02\x01\x01\x02\x01\x04\x03\x01\x01\x01\x02\x04\x05\x04", // 㼀
+ 0x3f01: "\x01\x01\x02\x01\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01\x05\x03\x04", // 㼁
+ 0x3f02: "\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x04\x05\x01\x01\x02\x01\x04", // 㼂
+ 0x3f03: "\x01\x01\x02\x01\x05\x05\x05\x02\x05\x03\x04\x01\x05\x04\x04\x05\x04\x04\x05", // 㼃
+ 0x3f04: "\x01\x01\x02\x01\x05\x05\x04\x05\x05\x04\x01\x02\x05\x01\x02\x01\x05\x03\x04", // 㼄
+ 0x3f05: "\x01\x01\x02\x01\x04\x01\x03\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 㼅
+ 0x3f06: "\x01\x01\x02\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x01\x01\x02\x01\x04", // 㼆
+ 0x3f07: "\x01\x01\x02\x01\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x02\x05", // 㼇
+ 0x3f08: "\x01\x01\x02\x01\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 㼈
+ 0x3f09: "\x03\x03\x05\x04\x04\x04\x05\x03\x05", // 㼉
+ 0x3f0a: "\x01\x05\x02\x05\x03\x03\x05\x04\x04", // 㼊
+ 0x3f0b: "\x01\x02\x02\x05\x01\x03\x03\x05\x04\x04", // 㼋
+ 0x3f0c: "\x03\x03\x05\x04\x04\x03\x03\x05\x04\x04", // 㼌
+ 0x3f0d: "\x01\x01\x01\x02\x03\x04\x03\x03\x05\x04\x04", // 㼍
+ 0x3f0e: "\x03\x03\x05\x04\x04\x04\x01\x03\x04\x03\x04", // 㼎
+ 0x3f0f: "\x03\x04\x04\x03\x05\x03\x01\x03\x03\x05\x04\x04", // 㼏
+ 0x3f10: "\x04\x05\x01\x03\x02\x05\x01\x02\x02\x03\x03\x05\x04\x04", // 㼐
+ 0x3f11: "\x01\x02\x05\x04\x03\x01\x02\x03\x04\x03\x03\x05\x04\x04", // 㼑
+ 0x3f12: "\x03\x03\x05\x04\x04\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 㼒
+ 0x3f13: "\x03\x03\x05\x04\x04\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 㼓
+ 0x3f14: "\x02\x05\x01\x01\x02\x05\x02\x02\x01\x03\x03\x05\x04\x04", // 㼔
+ 0x3f15: "\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x01\x02\x01\x03\x03\x05\x04\x04", // 㼕
+ 0x3f16: "\x03\x03\x05\x04\x04\x05\x05\x01\x03\x05\x03\x03\x03\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 㼖
+ 0x3f17: "\x01\x02\x01\x05\x05\x04", // 㼗
+ 0x3f18: "\x02\x05\x02\x01\x05\x05\x04", // 㼘
+ 0x3f19: "\x02\x05\x02\x01\x05\x05\x04", // 㼙
+ 0x3f1a: "\x04\x01\x03\x05\x01\x05\x05\x04", // 㼚
+ 0x3f1b: "\x01\x01\x03\x02\x01\x05\x05\x04", // 㼛
+ 0x3f1c: "\x02\x05\x01\x03\x04\x01\x05\x05\x04", // 㼜
+ 0x3f1d: "\x03\x05\x04\x05\x05\x01\x05\x05\x04", // 㼝
+ 0x3f1e: "\x01\x04\x03\x01\x02\x01\x05\x05\x04", // 㼞
+ 0x3f1f: "\x03\x02\x05\x01\x01\x01\x05\x05\x04", // 㼟
+ 0x3f20: "\x04\x04\x05\x01\x05\x01\x05\x05\x04", // 㼠
+ 0x3f21: "\x03\x01\x01\x02\x03\x04\x01\x05\x05\x04", // 㼡
+ 0x3f22: "\x01\x02\x02\x05\x01\x02\x05\x01\x05\x05\x04", // 㼢
+ 0x3f23: "\x01\x03\x02\x05\x01\x01\x01\x05\x05\x04", // 㼣
+ 0x3f24: "\x01\x01\x01\x02\x05\x03\x01\x05\x05\x04", // 㼤
+ 0x3f25: "\x01\x02\x01\x03\x01\x05\x01\x05\x05\x04", // 㼥
+ 0x3f26: "\x01\x02\x01\x03\x05\x04\x01\x05\x05\x04", // 㼦
+ 0x3f27: "\x05\x04\x02\x05\x01\x01\x02\x01\x05\x05\x04", // 㼧
+ 0x3f28: "\x03\x04\x04\x05\x02\x05\x01\x01\x05\x05\x04", // 㼨
+ 0x3f29: "\x01\x03\x05\x05\x03\x04\x01\x05\x05\x04", // 㼩
+ 0x3f2a: "\x01\x03\x04\x03\x04\x03\x04\x01\x05\x05\x04", // 㼪
+ 0x3f2b: "\x02\x05\x01\x01\x01\x02\x03\x04\x01\x05\x05\x04", // 㼫
+ 0x3f2c: "\x01\x02\x01\x04\x03\x01\x01\x02\x01\x05\x05\x04", // 㼬
+ 0x3f2d: "\x01\x02\x01\x02\x01\x02\x05\x01\x01\x05\x05\x04", // 㼭
+ 0x3f2e: "\x01\x05\x01\x01\x02\x05\x03\x01\x01\x05\x05\x04", // 㼮
+ 0x3f2f: "\x01\x02\x05\x01\x01\x02\x03\x04\x01\x05\x05\x04", // 㼯
+ 0x3f30: "\x03\x02\x05\x01\x01\x03\x01\x02\x01\x05\x05\x04", // 㼰
+ 0x3f31: "\x02\x01\x01\x03\x05\x04\x05\x03\x04\x01\x05\x05\x04", // 㼱
+ 0x3f32: "\x01\x03\x02\x05\x02\x02\x01\x03\x04\x01\x05\x05\x04", // 㼲
+ 0x3f33: "\x02\x03\x04\x03\x02\x05\x01\x01\x01\x01\x05\x05\x04", // 㼳
+ 0x3f34: "\x02\x05\x01\x01\x02\x05\x02\x01\x04\x01\x05\x05\x04", // 㼴
+ 0x3f35: "\x02\x05\x01\x01\x01\x02\x01\x03\x04\x01\x05\x05\x04", // 㼵
+ 0x3f36: "\x03\x04\x01\x02\x05\x01\x01\x02\x02\x01\x05\x05\x04", // 㼶
+ 0x3f37: "\x02\x05\x02\x01\x03\x02\x05\x02\x02\x01\x05\x05\x04", // 㼷
+ 0x3f38: "\x04\x04\x05\x03\x04\x03\x04\x02\x05\x01\x01\x05\x05\x04", // 㼸
+ 0x3f39: "\x01\x02\x02\x04\x01\x05\x03\x02\x05\x01\x05\x05\x04", // 㼹
+ 0x3f3a: "\x04\x01\x03\x05\x01\x01\x02\x02\x05\x01\x01\x05\x05\x04", // 㼺
+ 0x3f3b: "\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04\x01\x05\x05\x04", // 㼻
+ 0x3f3c: "\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04\x01\x05\x05\x04", // 㼼
+ 0x3f3d: "\x01\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x01\x05\x05\x04", // 㼽
+ 0x3f3e: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x01\x05\x05\x04", // 㼾
+ 0x3f3f: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01\x01\x05\x05\x04", // 㼿
+ 0x3f40: "\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x03\x04\x01\x05\x05\x04", // 㽀
+ 0x3f41: "\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x01\x05\x05\x04", // 㽁
+ 0x3f42: "\x03\x04\x01\x02\x05\x01\x05\x04\x01\x05\x04\x01\x01\x05\x05\x04", // 㽂
+ 0x3f43: "\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x01\x05\x05\x04", // 㽃
+ 0x3f44: "\x01\x02\x02\x01\x01\x01\x03\x04\x03\x03\x01\x02\x01\x05\x05\x04", // 㽄
+ 0x3f45: "\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01\x01\x05\x05\x04", // 㽅
+ 0x3f46: "\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x01\x02\x01\x01\x05\x05\x04", // 㽆
+ 0x3f47: "\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x01\x05\x05\x04", // 㽇
+ 0x3f48: "\x03\x05\x03\x01\x01\x03\x04\x05\x04\x05\x02\x01\x03\x04\x01\x05\x05\x04", // 㽈
+ 0x3f49: "\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01\x01\x05\x05\x04", // 㽉
+ 0x3f4a: "\x04\x01\x01\x01\x02\x05\x01\x04\x03\x03\x04\x04\x03\x03\x04\x05\x04\x01\x05\x05\x04", // 㽊
+ 0x3f4b: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x01\x05\x05\x04", // 㽋
+ 0x3f4c: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01\x01\x05\x05\x04", // 㽌
+ 0x3f4d: "\x01\x02\x02\x01\x01\x01\x05\x05\x04", // 㽍
+ 0x3f4e: "\x01\x02\x02\x01\x01\x01\x03\x04\x05\x04\x05\x03\x05", // 㽎
+ 0x3f4f: "\x04\x04\x01\x03\x04\x01\x02\x05\x01\x01\x02\x02\x01\x01", // 㽏
+ 0x3f50: "\x01\x02\x02\x01\x01\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 㽐
+ 0x3f51: "\x01\x02\x02\x01\x01\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 㽑
+ 0x3f52: "\x02\x05\x01\x02\x01\x05\x03\x03\x01\x01\x02\x01", // 㽒
+ 0x3f53: "\x03\x01\x01\x02\x01\x03\x01\x01\x02\x01\x03\x01\x01\x02\x01", // 㽓
+ 0x3f54: "\x02\x02\x04\x03\x01\x03\x05\x03\x03\x03\x04\x03\x01\x01\x02\x01", // 㽔
+ 0x3f55: "\x02\x05\x01\x02\x01\x05\x05", // 㽕
+ 0x3f56: "\x02\x05\x01\x02\x01\x05\x03", // 㽖
+ 0x3f57: "\x02\x05\x01\x02\x01\x03\x04", // 㽗
+ 0x3f58: "\x02\x05\x01\x02\x01\x04\x01\x03\x05", // 㽘
+ 0x3f59: "\x02\x05\x01\x02\x01\x05\x04\x03\x05", // 㽙
+ 0x3f5a: "\x02\x05\x01\x02\x01\x03\x01\x01\x02", // 㽚
+ 0x3f5b: "\x02\x05\x01\x02\x01\x03\x05\x02\x05\x01", // 㽛
+ 0x3f5c: "\x03\x05\x04\x05\x05\x02\x05\x01\x02\x01", // 㽜
+ 0x3f5d: "\x01\x03\x05\x04\x02\x02\x02\x05\x01\x02\x01", // 㽝
+ 0x3f5e: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 㽞
+ 0x3f5f: "\x02\x05\x01\x02\x01\x03\x04\x04\x03\x01\x02\x04", // 㽟
+ 0x3f60: "\x02\x05\x01\x02\x01\x01\x03\x04\x03\x04\x03\x04", // 㽠
+ 0x3f61: "\x02\x05\x01\x02\x01\x03\x02\x05\x01\x01\x03\x01\x02", // 㽡
+ 0x3f62: "\x02\x05\x01\x02\x01\x01\x03\x04\x02\x05\x01\x01\x05", // 㽢
+ 0x3f63: "\x02\x05\x01\x02\x01\x01\x02\x05\x01\x01\x05\x03\x04", // 㽣
+ 0x3f64: "\x02\x05\x01\x02\x01\x03\x05\x04\x03\x01\x02\x03\x04", // 㽤
+ 0x3f65: "\x02\x05\x01\x02\x01\x05\x04\x05\x02\x03\x01\x02\x03\x04", // 㽥
+ 0x3f66: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x02\x05\x01\x02\x01", // 㽦
+ 0x3f67: "\x02\x05\x01\x02\x01\x04\x03\x01\x05\x05\x04\x05\x05\x04", // 㽧
+ 0x3f68: "\x02\x05\x01\x02\x01\x04\x03\x01\x01\x01\x03\x01\x02\x01", // 㽨
+ 0x3f69: "\x02\x05\x01\x02\x01\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 㽩
+ 0x3f6a: "\x02\x05\x01\x02\x01\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 㽪
+ 0x3f6b: "\x04\x01\x05\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x01\x02\x01", // 㽫
+ 0x3f6c: "\x01\x02\x05\x01\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 㽬
+ 0x3f6d: "\x02\x05\x01\x02\x01\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02", // 㽭
+ 0x3f6e: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x03\x01\x01\x02\x01", // 㽮
+ 0x3f6f: "\x02\x05\x01\x02\x01\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x03\x04\x02\x05\x01", // 㽯
+ 0x3f70: "\x03\x05\x01\x01\x03\x05\x01\x01\x05\x02\x01\x03\x04", // 㽰
+ 0x3f71: "\x04\x01\x03\x04\x01\x05\x02", // 㽱
+ 0x3f72: "\x04\x01\x03\x04\x01\x01\x05", // 㽲
+ 0x3f73: "\x04\x01\x03\x04\x01\x01\x01\x05", // 㽳
+ 0x3f74: "\x04\x01\x03\x04\x01\x01\x03\x04", // 㽴
+ 0x3f75: "\x04\x01\x03\x04\x01\x01\x02\x01", // 㽵
+ 0x3f76: "\x04\x01\x03\x04\x01\x05\x01\x05", // 㽶
+ 0x3f77: "\x04\x01\x03\x04\x01\x02\x05\x03\x04", // 㽷
+ 0x3f78: "\x04\x01\x03\x04\x01\x04\x05\x03\x05", // 㽸
+ 0x3f79: "\x04\x01\x03\x04\x01\x03\x03\x05\x04", // 㽹
+ 0x3f7a: "\x04\x01\x03\x04\x01\x03\x05\x04", // 㽺
+ 0x3f7b: "\x04\x01\x03\x04\x01\x01\x02\x05\x04", // 㽻
+ 0x3f7c: "\x04\x01\x03\x04\x01\x05\x01\x05\x02", // 㽼
+ 0x3f7d: "\x04\x01\x03\x04\x01\x01\x02\x02\x05\x01", // 㽽
+ 0x3f7e: "\x04\x01\x03\x04\x01\x05\x02\x02\x05\x02", // 㽾
+ 0x3f7f: "\x04\x01\x03\x04\x01\x03\x03\x05\x04\x04", // 㽿
+ 0x3f80: "\x04\x01\x03\x04\x01\x01\x02\x01\x05\x04", // 㾀
+ 0x3f81: "\x04\x01\x03\x04\x01\x01\x02\x03\x04\x04", // 㾁
+ 0x3f82: "\x04\x01\x03\x04\x01\x05\x04\x02\x05\x01", // 㾂
+ 0x3f83: "\x04\x01\x03\x04\x01\x04\x04\x05\x03\x05", // 㾃
+ 0x3f84: "\x04\x01\x03\x04\x01\x02\x05\x01\x02\x01", // 㾄
+ 0x3f85: "\x04\x01\x03\x04\x01\x03\x05\x02\x03", // 㾅
+ 0x3f86: "\x04\x01\x03\x04\x01\x02\x05\x02\x01\x01", // 㾆
+ 0x3f87: "\x04\x01\x03\x04\x01\x02\x05\x01\x01\x01", // 㾇
+ 0x3f88: "\x04\x01\x03\x04\x01\x03\x02\x01\x02\x04", // 㾈
+ 0x3f89: "\x04\x01\x03\x04\x01\x03\x04\x04\x05\x04", // 㾉
+ 0x3f8a: "\x04\x01\x03\x04\x01\x01\x02\x05\x02\x03\x04", // 㾊
+ 0x3f8b: "\x04\x01\x03\x04\x01\x03\x02\x01\x02\x03\x04", // 㾋
+ 0x3f8c: "\x04\x01\x03\x04\x01\x03\x01\x02\x01\x03\x05", // 㾌
+ 0x3f8d: "\x04\x01\x03\x04\x01\x01\x03\x02\x05\x02\x02", // 㾍
+ 0x3f8e: "\x04\x01\x03\x04\x01\x02\x05\x02\x05\x01", // 㾎
+ 0x3f8f: "\x04\x01\x03\x04\x01\x01\x02\x01\x01\x02\x01", // 㾏
+ 0x3f90: "\x04\x01\x03\x04\x01\x01\x03\x05\x04\x02\x02", // 㾐
+ 0x3f91: "\x04\x01\x03\x04\x01\x03\x04\x01\x02\x05\x01", // 㾑
+ 0x3f92: "\x04\x01\x03\x04\x01\x05\x03\x01\x02\x05\x01", // 㾒
+ 0x3f93: "\x04\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x01", // 㾓
+ 0x3f94: "\x04\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01", // 㾔
+ 0x3f95: "\x04\x01\x03\x04\x01\x04\x01\x04\x03\x01\x01\x02", // 㾕
+ 0x3f96: "\x04\x01\x03\x04\x01\x02\x05\x01\x01\x02\x01\x01", // 㾖
+ 0x3f97: "\x04\x01\x03\x04\x01\x04\x05\x01\x01\x05\x03\x04", // 㾗
+ 0x3f98: "\x04\x01\x03\x04\x01\x01\x02\x05\x01\x01\x03\x04", // 㾘
+ 0x3f99: "\x04\x01\x03\x04\x01\x03\x04\x01\x03\x02\x05\x02", // 㾙
+ 0x3f9a: "\x04\x01\x03\x04\x01\x02\x01\x02\x01\x03\x05\x01\x01", // 㾚
+ 0x3f9b: "\x04\x01\x03\x04\x01\x05\x01\x01\x04\x05\x05\x04", // 㾛
+ 0x3f9c: "\x04\x01\x03\x04\x01\x01\x03\x04\x03\x04\x03\x04", // 㾜
+ 0x3f9d: "\x04\x01\x03\x04\x01\x01\x02\x05\x01\x01\x01\x02", // 㾝
+ 0x3f9e: "\x04\x01\x03\x04\x01\x01\x02\x05\x03\x05\x01\x01", // 㾞
+ 0x3f9f: "\x04\x01\x03\x04\x01\x02\x01\x02\x01\x02\x03\x03", // 㾟
+ 0x3fa0: "\x04\x01\x03\x04\x01\x03\x05\x03\x01\x01\x02\x01", // 㾠
+ 0x3fa1: "\x04\x01\x03\x04\x01\x01\x02\x01\x05\x04\x05\x02", // 㾡
+ 0x3fa2: "\x04\x01\x03\x04\x01\x01\x03\x04\x03\x04\x02\x03\x04", // 㾢
+ 0x3fa3: "\x04\x01\x03\x04\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 㾣
+ 0x3fa4: "\x04\x01\x03\x04\x01\x04\x04\x05\x03\x04\x01\x02\x01", // 㾤
+ 0x3fa5: "\x04\x01\x03\x04\x01\x02\x01\x01\x02\x03\x04\x05\x04", // 㾥
+ 0x3fa6: "\x04\x01\x03\x04\x01\x04\x01\x04\x03\x01\x02\x05\x01", // 㾦
+ 0x3fa7: "\x04\x01\x03\x04\x01\x02\x05\x01\x01\x01\x02\x03\x04", // 㾧
+ 0x3fa8: "\x04\x01\x03\x04\x01\x01\x03\x04\x01\x02\x05\x01\x02", // 㾨
+ 0x3fa9: "\x04\x01\x03\x04\x01\x03\x01\x02\x02\x01\x01\x03\x05", // 㾩
+ 0x3faa: "\x04\x01\x03\x04\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01", // 㾪
+ 0x3fab: "\x04\x01\x03\x04\x01\x04\x05\x01\x03\x02\x05\x01\x02\x02", // 㾫
+ 0x3fac: "\x04\x01\x03\x04\x01\x01\x05\x03\x05\x03\x02\x05\x01\x01", // 㾬
+ 0x3fad: "\x04\x01\x03\x04\x01\x03\x01\x02\x03\x04\x04\x03\x03\x04", // 㾭
+ 0x3fae: "\x04\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x01\x02\x01", // 㾮
+ 0x3faf: "\x04\x01\x03\x04\x01\x02\x05\x01\x02\x01\x01\x05\x03\x04", // 㾯
+ 0x3fb0: "\x04\x01\x03\x04\x01\x01\x02\x02\x05\x01\x03\x05\x01\x01", // 㾰
+ 0x3fb1: "\x04\x01\x03\x04\x01\x05\x04\x03\x03\x04\x01\x01\x03\x05", // 㾱
+ 0x3fb2: "\x04\x01\x03\x04\x01\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04", // 㾲
+ 0x3fb3: "\x04\x01\x03\x04\x01\x04\x01\x03\x05\x03\x04\x05\x03\x01", // 㾳
+ 0x3fb4: "\x04\x01\x03\x04\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 㾴
+ 0x3fb5: "\x04\x01\x03\x04\x01\x04\x01\x01\x01\x02\x05\x01\x01\x02", // 㾵
+ 0x3fb6: "\x04\x01\x03\x04\x01\x02\x05\x05\x04\x05\x02\x05\x01\x01", // 㾶
+ 0x3fb7: "\x04\x01\x03\x04\x01\x03\x03\x02\x01\x05\x03\x01\x05\x03\x05", // 㾷
+ 0x3fb8: "\x04\x01\x03\x04\x01\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 㾸
+ 0x3fb9: "\x04\x01\x03\x04\x01\x02\x01\x02\x01\x03\x05\x01\x02\x03\x04", // 㾹
+ 0x3fba: "\x04\x01\x03\x04\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 㾺
+ 0x3fbb: "\x04\x01\x03\x04\x01\x05\x02\x03\x04\x01\x01\x02\x03\x04", // 㾻
+ 0x3fbc: "\x04\x01\x03\x04\x01\x05\x01\x01\x05\x03\x04\x04\x05\x04", // 㾼
+ 0x3fbd: "\x04\x01\x03\x04\x01\x03\x02\x05\x01\x05\x01\x04\x05\x04", // 㾽
+ 0x3fbe: "\x04\x01\x03\x04\x01\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 㾾
+ 0x3fbf: "\x04\x01\x03\x04\x01\x04\x05\x01\x01\x05\x04\x05\x02", // 㾿
+ 0x3fc0: "\x04\x01\x03\x04\x01\x01\x01\x02\x01\x04\x03\x01\x01\x02\x01", // 㿀
+ 0x3fc1: "\x04\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04\x01\x02", // 㿁
+ 0x3fc2: "\x04\x01\x03\x04\x01\x02\x05\x02\x01\x01\x02\x01\x03\x01\x03\x04", // 㿂
+ 0x3fc3: "\x04\x01\x03\x04\x01\x01\x02\x02\x01\x03\x05\x04\x05\x02\x05\x02", // 㿃
+ 0x3fc4: "\x04\x01\x03\x04\x01\x01\x03\x01\x01\x03\x04\x05\x03\x05\x05\x04", // 㿄
+ 0x3fc5: "\x04\x01\x03\x04\x01\x03\x03\x02\x02\x01\x02\x01\x02\x01\x03\x04", // 㿅
+ 0x3fc6: "\x04\x01\x03\x04\x01\x03\x01\x02\x03\x04\x04\x01\x03\x05\x03\x04", // 㿆
+ 0x3fc7: "\x04\x01\x03\x04\x01\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01", // 㿇
+ 0x3fc8: "\x04\x01\x03\x04\x01\x05\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 㿈
+ 0x3fc9: "\x04\x01\x03\x04\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 㿉
+ 0x3fca: "\x04\x01\x03\x04\x01\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x01", // 㿊
+ 0x3fcb: "\x04\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 㿋
+ 0x3fcc: "\x04\x01\x03\x04\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 㿌
+ 0x3fcd: "\x04\x01\x03\x04\x01\x03\x05\x03\x05\x01\x01\x02\x05\x03\x03\x01\x01\x02", // 㿍
+ 0x3fce: "\x04\x01\x03\x04\x01\x01\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 㿎
+ 0x3fcf: "\x04\x01\x03\x04\x01\x05\x01\x01\x03\x02\x05\x01\x04\x03\x01\x01\x01\x02", // 㿏
+ 0x3fd0: "\x04\x01\x03\x04\x01\x01\x02\x01\x02\x01\x03\x04\x03\x05\x04\x03\x05\x04", // 㿐
+ 0x3fd1: "\x04\x01\x03\x04\x01\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 㿑
+ 0x3fd2: "\x04\x01\x03\x04\x01\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 㿒
+ 0x3fd3: "\x04\x01\x03\x04\x01\x01\x03\x04\x03\x04\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 㿓
+ 0x3fd4: "\x04\x01\x03\x04\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01", // 㿔
+ 0x3fd5: "\x04\x01\x03\x04\x01\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x03\x02\x01\x05\x01\x01", // 㿕
+ 0x3fd6: "\x04\x01\x03\x04\x01\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 㿖
+ 0x3fd7: "\x04\x01\x03\x04\x01\x03\x01\x02\x03\x04\x03\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 㿗
+ 0x3fd8: "\x04\x01\x03\x04\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x02\x05\x01\x02\x05\x01", // 㿘
+ 0x3fd9: "\x04\x01\x03\x04\x01\x02\x05\x02\x02\x01\x02\x05\x02\x02\x01\x02\x05\x02\x02\x01", // 㿙
+ 0x3fda: "\x04\x01\x03\x04\x01\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 㿚
+ 0x3fdb: "\x04\x01\x03\x04\x01\x01\x02\x05\x04\x01\x02\x05\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 㿛
+ 0x3fdc: "\x04\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02", // 㿜
+ 0x3fdd: "\x03\x02\x05\x01\x01\x05\x04", // 㿝
+ 0x3fde: "\x03\x02\x05\x01\x01\x03\x01\x01\x05", // 㿞
+ 0x3fdf: "\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01", // 㿟
+ 0x3fe0: "\x03\x02\x05\x01\x01\x02\x04\x03\x01\x03\x05", // 㿠
+ 0x3fe1: "\x03\x02\x05\x01\x01\x03\x04\x01\x05\x03\x04", // 㿡
+ 0x3fe2: "\x02\x05\x01\x01\x03\x05\x01\x01\x03\x02\x05\x01\x01", // 㿢
+ 0x3fe3: "\x03\x02\x05\x01\x01\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 㿣
+ 0x3fe4: "\x03\x02\x05\x01\x01\x01\x01\x01\x03\x04\x02\x05\x01\x01", // 㿤
+ 0x3fe5: "\x03\x02\x01\x01\x04\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 㿥
+ 0x3fe6: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04\x03\x02\x05\x01\x01", // 㿦
+ 0x3fe7: "\x03\x02\x05\x01\x01\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 㿧
+ 0x3fe8: "\x03\x02\x05\x01\x01\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 㿨
+ 0x3fe9: "\x03\x02\x05\x01\x01\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 㿩
+ 0x3fea: "\x05\x03\x02\x05\x04\x03\x05\x04", // 㿪
+ 0x3feb: "\x01\x05\x03\x05\x05\x03\x02\x05\x04", // 㿫
+ 0x3fec: "\x05\x03\x02\x05\x04\x05\x02\x01\x05", // 㿬
+ 0x3fed: "\x03\x03\x01\x02\x04\x05\x03\x02\x05\x04", // 㿭
+ 0x3fee: "\x02\x05\x01\x03\x04\x05\x03\x02\x05\x04", // 㿮
+ 0x3fef: "\x03\x04\x01\x02\x05\x01\x03\x05\x02\x05\x04", // 㿯
+ 0x3ff0: "\x04\x01\x03\x04\x03\x04\x05\x03\x02\x05\x04", // 㿰
+ 0x3ff1: "\x01\x02\x01\x03\x03\x01\x02\x05\x03\x02\x05\x04", // 㿱
+ 0x3ff2: "\x01\x03\x04\x01\x02\x05\x01\x02\x05\x03\x02\x05\x04", // 㿲
+ 0x3ff3: "\x05\x03\x02\x05\x04\x05\x05\x05\x02\x05\x01\x02\x01", // 㿳
+ 0x3ff4: "\x01\x03\x04\x01\x02\x02\x01\x01\x01\x05\x03\x02\x05\x04", // 㿴
+ 0x3ff5: "\x05\x03\x02\x05\x04\x01\x03\x02\x05\x02\x02\x01\x03\x04", // 㿵
+ 0x3ff6: "\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03\x05\x03\x02\x05\x04", // 㿶
+ 0x3ff7: "\x04\x03\x01\x01\x01\x03\x01\x02\x01\x05\x03\x02\x05\x04", // 㿷
+ 0x3ff8: "\x05\x03\x02\x05\x04\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 㿸
+ 0x3ff9: "\x05\x03\x02\x05\x04\x01\x02\x01\x04\x03\x01\x01\x01\x02\x04\x05\x04", // 㿹
+ 0x3ffa: "\x02\x05\x01\x01\x01\x02\x02\x01\x03\x04\x02\x04\x01\x03\x04\x05\x03\x02\x05\x04", // 㿺
+ 0x3ffb: "\x01\x01\x02\x02\x05\x02\x02\x01", // 㿻
+ 0x3ffc: "\x01\x01\x03\x02\x02\x05\x02\x02\x01", // 㿼
+ 0x3ffd: "\x03\x04\x01\x05\x02\x05\x02\x02\x01", // 㿽
+ 0x3ffe: "\x04\x04\x05\x01\x02\x02\x05\x02\x02\x01", // 㿾
+ 0x3fff: "\x05\x02\x01\x03\x04\x02\x05\x02\x02\x01", // 㿿
+ 0x4000: "\x04\x04\x01\x05\x05\x02\x05\x02\x02\x01", // 䀀
+ 0x4001: "\x01\x03\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 䀁
+ 0x4002: "\x04\x04\x05\x05\x03\x01\x02\x05\x02\x02\x01", // 䀂
+ 0x4003: "\x01\x03\x05\x03\x03\x03\x04\x02\x05\x02\x02\x01", // 䀃
+ 0x4004: "\x04\x04\x05\x04\x05\x04\x03\x04\x02\x05\x02\x02\x01", // 䀄
+ 0x4005: "\x04\x05\x02\x04\x01\x02\x01\x02\x05\x02\x02\x01", // 䀅
+ 0x4006: "\x05\x01\x01\x02\x01\x04\x03\x03\x04\x02\x05\x02\x02\x01", // 䀆
+ 0x4007: "\x01\x02\x02\x05\x01\x03\x01\x01\x02\x05\x02\x02\x05\x02\x02\x01", // 䀇
+ 0x4008: "\x05\x01\x01\x05\x04\x01\x05\x03\x05\x02\x05\x02\x02\x01", // 䀈
+ 0x4009: "\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01\x02\x05\x02\x02\x01", // 䀉
+ 0x400a: "\x04\x04\x01\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03\x02\x05\x02\x02\x01", // 䀊
+ 0x400b: "\x01\x02\x01\x03\x01\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x02\x05\x02\x02\x01", // 䀋
+ 0x400c: "\x05\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 䀌
+ 0x400d: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x03\x05\x04\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x02\x05\x02\x02\x01", // 䀍
+ 0x400e: "\x02\x05\x01\x01\x01\x01\x05", // 䀎
+ 0x400f: "\x03\x05\x02\x05\x01\x01\x01", // 䀏
+ 0x4010: "\x02\x05\x01\x01\x01\x03\x03\x03", // 䀐
+ 0x4011: "\x02\x05\x01\x01\x01\x05\x04\x04", // 䀑
+ 0x4012: "\x02\x05\x01\x01\x01\x03\x01\x02", // 䀒
+ 0x4013: "\x02\x05\x01\x01\x01\x03\x05\x04", // 䀓
+ 0x4014: "\x02\x05\x01\x01\x01\x05\x03\x04", // 䀔
+ 0x4015: "\x02\x05\x01\x01\x01\x05\x01\x05\x02", // 䀕
+ 0x4016: "\x02\x05\x01\x01\x01\x01\x01\x03\x04", // 䀖
+ 0x4017: "\x02\x05\x01\x01\x01\x05\x01\x03\x04", // 䀗
+ 0x4018: "\x02\x05\x01\x01\x01\x01\x01\x03\x02", // 䀘
+ 0x4019: "\x02\x05\x01\x01\x01\x01\x05\x05\x03", // 䀙
+ 0x401a: "\x02\x05\x01\x01\x01\x03\x05\x05\x02", // 䀚
+ 0x401b: "\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 䀛
+ 0x401c: "\x03\x05\x03\x03\x02\x05\x01\x01\x01", // 䀜
+ 0x401d: "\x02\x05\x01\x01\x01\x01\x05\x03\x05", // 䀝
+ 0x401e: "\x02\x05\x01\x01\x01\x04\x04\x01\x02", // 䀞
+ 0x401f: "\x02\x05\x01\x01\x01\x05\x01\x05\x03\x02", // 䀟
+ 0x4020: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01", // 䀠
+ 0x4021: "\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01", // 䀡
+ 0x4022: "\x02\x05\x01\x01\x01\x03\x01\x01\x03\x04", // 䀢
+ 0x4023: "\x02\x05\x01\x01\x01\x04\x05\x04\x03\x04", // 䀣
+ 0x4024: "\x03\x05\x04\x02\x04\x02\x05\x01\x01\x01", // 䀤
+ 0x4025: "\x02\x05\x01\x01\x01\x03\x05\x02\x03\x04", // 䀥
+ 0x4026: "\x02\x05\x01\x01\x01\x01\x02\x02\x05\x01", // 䀦
+ 0x4027: "\x02\x05\x01\x01\x01\x01\x02\x02\x01\x03\x04", // 䀧
+ 0x4028: "\x02\x05\x01\x01\x01\x03\x01\x02\x02\x05\x01", // 䀨
+ 0x4029: "\x02\x05\x01\x01\x01\x03\x05\x04\x02\x05\x01", // 䀩
+ 0x402a: "\x02\x05\x01\x01\x01\x03\x03\x02\x01\x01\x02", // 䀪
+ 0x402b: "\x02\x05\x01\x01\x01\x03\x04\x01\x02\x05\x01", // 䀫
+ 0x402c: "\x02\x05\x01\x01\x01\x03\x04\x01\x01\x02\x01", // 䀬
+ 0x402d: "\x02\x05\x01\x01\x01\x04\x01\x05\x03\x03\x04", // 䀭
+ 0x402e: "\x02\x05\x01\x01\x01\x04\x01\x05\x03\x02\x05", // 䀮
+ 0x402f: "\x02\x05\x01\x01\x01\x01\x02\x05\x01\x01\x02\x04", // 䀯
+ 0x4030: "\x02\x05\x01\x01\x01\x03\x04\x03\x04\x02\x05\x01", // 䀰
+ 0x4031: "\x02\x05\x01\x01\x01\x03\x05\x04\x01\x01\x01\x02", // 䀱
+ 0x4032: "\x02\x05\x01\x01\x01\x03\x01\x05\x05\x04\x01\x04", // 䀲
+ 0x4033: "\x02\x05\x01\x01\x01\x01\x02\x05\x01\x02\x03\x04", // 䀳
+ 0x4034: "\x02\x05\x01\x01\x01\x01\x05\x05\x05\x01\x02\x01", // 䀴
+ 0x4035: "\x02\x05\x01\x01\x01\x05\x04\x03\x01\x01\x03\x04", // 䀵
+ 0x4036: "\x02\x05\x01\x01\x01\x04\x05\x01\x01\x05\x03\x04", // 䀶
+ 0x4037: "\x02\x05\x01\x01\x01\x01\x02\x01\x05\x04\x05\x03", // 䀷
+ 0x4038: "\x01\x02\x01\x03\x03\x01\x02\x02\x05\x01\x01\x01", // 䀸
+ 0x4039: "\x02\x05\x01\x01\x01\x01\x03\x04\x03\x04\x03\x04", // 䀹
+ 0x403a: "\x03\x02\x02\x03\x01\x03\x04\x02\x05\x01\x01\x01", // 䀺
+ 0x403b: "\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x05", // 䀻
+ 0x403c: "\x02\x05\x01\x01\x01\x01\x03\x01\x01\x05\x03\x04", // 䀼
+ 0x403d: "\x02\x05\x01\x01\x01\x03\x02\x01\x02\x01\x05\x04", // 䀽
+ 0x403e: "\x01\x03\x02\x05\x01\x05\x04\x02\x05\x01\x01\x01", // 䀾
+ 0x403f: "\x02\x05\x01\x01\x01\x01\x02\x01\x03\x03\x01\x02", // 䀿
+ 0x4040: "\x02\x05\x01\x01\x01\x01\x02\x01\x03\x03\x01\x02", // 䁀
+ 0x4041: "\x02\x05\x01\x01\x01\x04\x01\x02\x05\x01\x02\x03\x04", // 䁁
+ 0x4042: "\x01\x02\x05\x01\x02\x05\x05\x04\x02\x05\x01\x01\x01", // 䁂
+ 0x4043: "\x02\x05\x01\x01\x01\x01\x01\x02\x01\x03\x05\x03\x04", // 䁃
+ 0x4044: "\x02\x05\x01\x01\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 䁄
+ 0x4045: "\x02\x05\x01\x01\x01\x05\x02\x01\x02\x05\x02\x02\x01", // 䁅
+ 0x4046: "\x02\x05\x01\x01\x01\x01\x03\x04\x02\x05\x01\x01\x05", // 䁆
+ 0x4047: "\x04\x04\x05\x04\x05\x04\x03\x04\x02\x05\x01\x01\x01", // 䁇
+ 0x4048: "\x04\x05\x01\x03\x03\x01\x03\x04\x02\x05\x01\x01\x01", // 䁈
+ 0x4049: "\x04\x05\x01\x03\x01\x05\x03\x04\x02\x05\x01\x01\x01", // 䁉
+ 0x404a: "\x02\x05\x01\x01\x01\x05\x04\x04\x02\x05\x01\x01\x01", // 䁊
+ 0x404b: "\x02\x05\x01\x01\x01\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 䁋
+ 0x404c: "\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01", // 䁌
+ 0x404d: "\x02\x05\x01\x01\x01\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 䁍
+ 0x404e: "\x02\x05\x01\x01\x01\x04\x01\x02\x05\x01\x04\x05\x01\x02", // 䁎
+ 0x404f: "\x02\x05\x01\x01\x01\x01\x02\x05\x02\x02\x01\x05\x03\x01", // 䁏
+ 0x4050: "\x02\x05\x01\x01\x01\x01\x02\x02\x02\x05\x01\x03\x04", // 䁐
+ 0x4051: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 䁑
+ 0x4052: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x02\x02\x01\x01\x01", // 䁒
+ 0x4053: "\x02\x05\x01\x01\x01\x03\x04\x05\x02\x03\x04\x03\x05\x04", // 䁓
+ 0x4054: "\x02\x05\x01\x01\x01\x03\x04\x04\x03\x01\x01\x03\x05\x04", // 䁔
+ 0x4055: "\x02\x05\x01\x01\x01\x05\x01\x05\x01\x05\x02\x05\x01\x01", // 䁕
+ 0x4056: "\x02\x05\x01\x01\x01\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 䁖
+ 0x4057: "\x02\x05\x01\x01\x01\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 䁗
+ 0x4058: "\x02\x05\x01\x01\x01\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02", // 䁘
+ 0x4059: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x04\x04\x05\x05\x03\x01", // 䁙
+ 0x405a: "\x02\x05\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 䁚
+ 0x405b: "\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 䁛
+ 0x405c: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x02\x04\x03\x01\x03\x05", // 䁜
+ 0x405d: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x02\x05\x01\x01\x01", // 䁝
+ 0x405e: "\x03\x04\x03\x04\x03\x04\x03\x04\x01\x03\x02\x05\x01\x01\x01", // 䁞
+ 0x405f: "\x02\x05\x01\x01\x01\x04\x03\x01\x01\x01\x03\x01\x02\x01", // 䁟
+ 0x4060: "\x02\x05\x01\x01\x01\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 䁠
+ 0x4061: "\x02\x05\x01\x01\x01\x05\x01\x01\x02\x02\x05\x01\x01\x03\x04", // 䁡
+ 0x4062: "\x02\x05\x01\x01\x01\x04\x01\x05\x03\x03\x01\x05\x02\x01\x03\x04", // 䁢
+ 0x4063: "\x02\x05\x01\x01\x01\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04", // 䁣
+ 0x4064: "\x02\x05\x01\x01\x01\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01", // 䁤
+ 0x4065: "\x02\x05\x01\x01\x01\x01\x01\x02\x02\x01\x03\x02\x05\x01\x05", // 䁥
+ 0x4066: "\x02\x05\x01\x01\x01\x02\x01\x05\x03\x01\x05\x02\x05\x01\x01\x01", // 䁦
+ 0x4067: "\x02\x05\x01\x01\x01\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 䁧
+ 0x4068: "\x02\x05\x01\x01\x01\x04\x01\x02\x05\x01\x05\x02\x01\x05\x02", // 䁨
+ 0x4069: "\x02\x05\x01\x01\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 䁩
+ 0x406a: "\x02\x05\x01\x01\x01\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02", // 䁪
+ 0x406b: "\x02\x05\x01\x01\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 䁫
+ 0x406c: "\x02\x05\x01\x01\x01\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 䁬
+ 0x406d: "\x02\x05\x01\x01\x01\x01\x03\x04\x04\x01\x03\x04\x04\x01\x03\x04\x04", // 䁭
+ 0x406e: "\x02\x05\x01\x01\x01\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x01", // 䁮
+ 0x406f: "\x02\x05\x01\x01\x01\x03\x04\x01\x02\x05\x01\x05\x04\x01\x05\x04\x01", // 䁯
+ 0x4070: "\x02\x05\x01\x01\x01\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䁰
+ 0x4071: "\x02\x05\x01\x01\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 䁱
+ 0x4072: "\x02\x05\x01\x01\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 䁲
+ 0x4073: "\x02\x05\x01\x01\x01\x01\x02\x02\x01\x03\x04\x04\x01\x03\x02", // 䁳
+ 0x4074: "\x02\x05\x01\x01\x01\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 䁴
+ 0x4075: "\x02\x05\x01\x01\x01\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 䁵
+ 0x4076: "\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x03\x04", // 䁶
+ 0x4077: "\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x02\x05\x01\x01\x01", // 䁷
+ 0x4078: "\x02\x05\x01\x01\x01\x02\x05\x01\x02\x02\x01\x01\x03\x01\x01\x05\x03\x04", // 䁸
+ 0x4079: "\x02\x05\x01\x01\x01\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 䁹
+ 0x407a: "\x02\x05\x01\x01\x01\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 䁺
+ 0x407b: "\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x03\x04", // 䁻
+ 0x407c: "\x02\x05\x01\x01\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x01", // 䁼
+ 0x407d: "\x02\x05\x01\x01\x01\x05\x05\x05\x02\x05\x03\x04\x01\x05\x04\x04\x05\x04\x04\x05", // 䁽
+ 0x407e: "\x02\x05\x01\x01\x01\x01\x02\x02\x02\x05\x02\x02\x01\x01\x03\x04\x05\x03\x04", // 䁾
+ 0x407f: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x03\x04\x04\x02\x05\x01\x01\x01", // 䁿
+ 0x4080: "\x02\x05\x01\x01\x01\x04\x03\x01\x01\x02\x01\x03\x01\x02\x03\x04\x01\x05\x05\x03\x04", // 䂀
+ 0x4081: "\x02\x05\x01\x01\x01\x03\x05\x02\x05\x01\x01\x05\x03\x05\x03\x05\x02\x05\x01\x03\x05\x04", // 䂁
+ 0x4082: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 䂂
+ 0x4083: "\x02\x05\x01\x01\x01\x03\x04\x04\x03\x02\x05\x02\x02\x01\x05\x01\x01\x05\x04\x01\x02\x04", // 䂃
+ 0x4084: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 䂄
+ 0x4085: "\x02\x05\x01\x01\x01\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x01\x04", // 䂅
+ 0x4086: "\x05\x04\x05\x02\x03\x03\x05\x04", // 䂆
+ 0x4087: "\x05\x04\x05\x02\x03\x05\x02\x01\x01", // 䂇
+ 0x4088: "\x05\x04\x05\x02\x03\x02\x05\x01\x02\x01\x04", // 䂈
+ 0x4089: "\x05\x04\x05\x02\x03\x03\x02\x05\x01\x03\x01\x01\x03\x04", // 䂉
+ 0x408a: "\x05\x04\x05\x02\x03\x03\x05\x02\x05\x01\x03\x05\x03\x03\x03\x04", // 䂊
+ 0x408b: "\x01\x02\x02\x05\x01\x01\x05\x02\x05\x04\x05\x02\x03\x01\x02\x03\x04", // 䂋
+ 0x408c: "\x05\x04\x05\x02\x03\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 䂌
+ 0x408d: "\x05\x04\x05\x02\x03\x02\x05\x01\x01\x01\x02\x02\x01\x03\x04\x02\x04\x01\x03\x04", // 䂍
+ 0x408e: "\x05\x04\x05\x02\x03\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 䂎
+ 0x408f: "\x03\x01\x01\x03\x04\x05\x03\x02\x05\x01", // 䂏
+ 0x4090: "\x03\x01\x01\x03\x04\x05\x02\x02\x05\x02", // 䂐
+ 0x4091: "\x03\x01\x01\x03\x04\x02\x01\x02\x01\x03\x05", // 䂑
+ 0x4092: "\x03\x01\x01\x03\x04\x01\x02\x01\x02\x05\x01", // 䂒
+ 0x4093: "\x03\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 䂓
+ 0x4094: "\x03\x01\x01\x03\x04\x01\x02\x01\x04\x03\x01\x01\x02", // 䂔
+ 0x4095: "\x03\x01\x01\x03\x04\x05\x05\x01\x03\x05\x03\x03\x03\x04", // 䂕
+ 0x4096: "\x01\x03\x04\x02\x05\x01", // 䂖
+ 0x4097: "\x01\x03\x02\x05\x01\x03\x05", // 䂗
+ 0x4098: "\x01\x03\x02\x05\x01\x05\x04\x04", // 䂘
+ 0x4099: "\x01\x03\x02\x05\x01\x05\x02", // 䂙
+ 0x409a: "\x01\x03\x02\x05\x01\x03\x04\x03\x04", // 䂚
+ 0x409b: "\x01\x03\x02\x05\x01\x05\x04\x05\x02", // 䂛
+ 0x409c: "\x01\x03\x02\x05\x01\x01\x01\x01\x02", // 䂜
+ 0x409d: "\x01\x03\x02\x05\x01\x01\x05\x03\x04", // 䂝
+ 0x409e: "\x01\x03\x02\x05\x01\x01\x02\x03\x04", // 䂞
+ 0x409f: "\x05\x03\x02\x05\x01\x01\x03\x02\x05\x01", // 䂟
+ 0x40a0: "\x01\x03\x02\x05\x01\x03\x01\x01\x03\x04", // 䂠
+ 0x40a1: "\x01\x03\x02\x05\x01\x03\x02\x01\x02\x01", // 䂡
+ 0x40a2: "\x01\x03\x02\x05\x01\x03\x05\x04\x04\x04", // 䂢
+ 0x40a3: "\x01\x03\x02\x05\x01\x02\x01\x02\x01\x03\x05", // 䂣
+ 0x40a4: "\x01\x03\x02\x05\x01\x03\x02\x01\x02\x04", // 䂤
+ 0x40a5: "\x01\x03\x02\x05\x01\x05\x01\x05\x01\x05", // 䂥
+ 0x40a6: "\x01\x03\x02\x05\x01\x03\x04\x03\x03\x03", // 䂦
+ 0x40a7: "\x01\x03\x02\x05\x01\x03\x05\x02\x03\x04", // 䂧
+ 0x40a8: "\x01\x03\x02\x05\x01\x03\x03\x01\x02\x04", // 䂨
+ 0x40a9: "\x01\x03\x02\x05\x01\x02\x05\x01\x03\x04\x01", // 䂩
+ 0x40aa: "\x01\x03\x02\x05\x01\x03\x04\x01\x05\x03\x04", // 䂪
+ 0x40ab: "\x01\x03\x02\x05\x01\x03\x05\x04\x01\x05\x02", // 䂫
+ 0x40ac: "\x01\x02\x01\x03\x05\x04\x01\x03\x02\x05\x01", // 䂬
+ 0x40ad: "\x01\x03\x02\x05\x01\x04\x01\x03\x04\x03\x04", // 䂭
+ 0x40ae: "\x01\x01\x01\x02\x05\x03\x01\x03\x02\x05\x01", // 䂮
+ 0x40af: "\x01\x03\x02\x05\x01\x04\x01\x03\x01\x02\x01", // 䂯
+ 0x40b0: "\x01\x03\x02\x05\x01\x03\x01\x02\x03\x04\x02\x02", // 䂰
+ 0x40b1: "\x01\x03\x02\x05\x01\x04\x03\x02\x05\x01\x03\x05", // 䂱
+ 0x40b2: "\x01\x02\x01\x05\x04\x05\x03\x01\x03\x02\x05\x01", // 䂲
+ 0x40b3: "\x01\x03\x02\x05\x01\x03\x04\x03\x04\x01\x02\x01", // 䂳
+ 0x40b4: "\x01\x03\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01", // 䂴
+ 0x40b5: "\x01\x03\x02\x05\x01\x01\x02\x01\x02\x05\x03\x04", // 䂵
+ 0x40b6: "\x01\x03\x02\x05\x01\x01\x02\x01\x05\x04\x05\x03", // 䂶
+ 0x40b7: "\x01\x03\x02\x05\x01\x03\x01\x02\x02\x01\x01\x03\x05", // 䂷
+ 0x40b8: "\x01\x03\x02\x05\x01\x01\x02\x05\x01\x01\x05\x03\x04", // 䂸
+ 0x40b9: "\x01\x03\x02\x05\x01\x03\x05\x04\x04\x04\x03\x03\x04", // 䂹
+ 0x40ba: "\x01\x03\x02\x05\x01\x02\x05\x01\x01\x01\x02\x03\x04", // 䂺
+ 0x40bb: "\x01\x03\x02\x05\x01\x01\x02\x01\x01\x01\x05\x03\x04", // 䂻
+ 0x40bc: "\x01\x03\x02\x05\x01\x03\x04\x04\x05\x04\x05\x04\x04", // 䂼
+ 0x40bd: "\x01\x03\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x02", // 䂽
+ 0x40be: "\x01\x03\x02\x05\x01\x01\x03\x04\x03\x04\x02\x03\x04", // 䂾
+ 0x40bf: "\x01\x03\x02\x05\x01\x02\x05\x03\x04\x02\x05\x01\x01", // 䂿
+ 0x40c0: "\x01\x03\x02\x05\x01\x01\x05\x01\x01\x02\x05\x03\x01", // 䃀
+ 0x40c1: "\x01\x03\x02\x05\x01\x01\x02\x01\x05\x05\x01\x02\x01", // 䃁
+ 0x40c2: "\x01\x03\x02\x05\x01\x02\x05\x01\x01\x01\x05\x03\x05", // 䃂
+ 0x40c3: "\x01\x03\x02\x05\x01\x02\x05\x04\x03\x01\x04\x01\x05", // 䃃
+ 0x40c4: "\x01\x03\x02\x05\x01\x04\x01\x02\x05\x01\x02\x03\x04", // 䃄
+ 0x40c5: "\x01\x03\x02\x05\x01\x04\x03\x02\x05\x01\x01\x01\x02", // 䃅
+ 0x40c6: "\x01\x03\x02\x05\x01\x01\x02\x02\x01\x01\x01\x03\x04", // 䃆
+ 0x40c7: "\x01\x03\x02\x05\x01\x03\x02\x05\x01\x01\x02\x05\x02", // 䃇
+ 0x40c8: "\x01\x03\x02\x05\x01\x01\x05\x03\x05\x03\x02\x05\x01\x01", // 䃈
+ 0x40c9: "\x01\x03\x02\x05\x01\x05\x01\x05\x01\x05\x02\x05\x01\x01", // 䃉
+ 0x40ca: "\x01\x03\x02\x05\x01\x01\x02\x02\x02\x05\x01\x01\x01", // 䃊
+ 0x40cb: "\x01\x03\x02\x05\x01\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 䃋
+ 0x40cc: "\x01\x03\x02\x05\x01\x01\x02\x05\x02\x02\x01\x01\x02\x01", // 䃌
+ 0x40cd: "\x01\x03\x02\x05\x01\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 䃍
+ 0x40ce: "\x01\x03\x02\x05\x01\x01\x03\x04\x03\x05\x04\x03\x05\x04", // 䃎
+ 0x40cf: "\x01\x03\x02\x05\x01\x02\x05\x01\x01\x03\x01\x01\x02\x01", // 䃏
+ 0x40d0: "\x01\x03\x02\x05\x01\x04\x04\x05\x03\x04\x01\x03\x04\x04", // 䃐
+ 0x40d1: "\x01\x03\x02\x05\x01\x03\x03\x05\x04\x01\x04\x03\x05\x05\x04", // 䃑
+ 0x40d2: "\x01\x03\x02\x05\x01\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 䃒
+ 0x40d3: "\x01\x03\x02\x05\x01\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01", // 䃓
+ 0x40d4: "\x01\x03\x02\x05\x01\x04\x04\x05\x02\x05\x01\x02\x05\x01", // 䃔
+ 0x40d5: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x01\x03\x02\x05\x01", // 䃕
+ 0x40d6: "\x01\x03\x02\x05\x01\x03\x02\x05\x01\x01\x05\x04\x04\x04\x04", // 䃖
+ 0x40d7: "\x01\x03\x02\x05\x01\x05\x01\x01\x02\x04\x01\x03\x04\x02\x02", // 䃗
+ 0x40d8: "\x01\x03\x02\x05\x01\x01\x02\x05\x01\x02\x05\x05\x04\x01\x02\x01", // 䃘
+ 0x40d9: "\x01\x03\x02\x05\x01\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 䃙
+ 0x40da: "\x01\x03\x02\x05\x01\x04\x01\x05\x03\x03\x01\x03\x01\x01\x03\x04", // 䃚
+ 0x40db: "\x01\x03\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 䃛
+ 0x40dc: "\x01\x03\x01\x01\x03\x04\x05\x03\x05\x05\x04\x01\x03\x02\x05\x01", // 䃜
+ 0x40dd: "\x01\x03\x02\x05\x01\x01\x02\x01\x03\x05\x02\x01\x03\x01\x03\x04", // 䃝
+ 0x40de: "\x04\x01\x02\x05\x01\x05\x02\x01\x03\x05\x04\x01\x03\x02\x05\x01", // 䃞
+ 0x40df: "\x01\x03\x02\x05\x01\x01\x02\x02\x01\x02\x05\x01\x01\x03\x01\x03\x04", // 䃟
+ 0x40e0: "\x01\x03\x02\x05\x01\x04\x01\x05\x03\x03\x01\x05\x02\x01\x03\x04", // 䃠
+ 0x40e1: "\x01\x03\x02\x05\x01\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x01", // 䃡
+ 0x40e2: "\x01\x03\x02\x05\x01\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x03\x04", // 䃢
+ 0x40e3: "\x01\x03\x02\x05\x01\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04", // 䃣
+ 0x40e4: "\x01\x03\x02\x05\x01\x05\x01\x01\x02\x03\x02\x01\x01\x05\x05\x02\x01\x02", // 䃤
+ 0x40e5: "\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 䃥
+ 0x40e6: "\x04\x01\x02\x05\x01\x05\x02\x01\x03\x01\x03\x04\x01\x03\x02\x05\x01", // 䃦
+ 0x40e7: "\x05\x02\x03\x05\x04\x01\x03\x01\x01\x02\x01\x01\x03\x02\x05\x01", // 䃧
+ 0x40e8: "\x01\x03\x02\x05\x01\x05\x01\x05\x02\x05\x01\x02\x05\x01\x02\x01\x04", // 䃨
+ 0x40e9: "\x01\x03\x02\x05\x01\x02\x05\x01\x02\x02\x01\x01\x03\x01\x01\x05\x03\x04", // 䃩
+ 0x40ea: "\x01\x03\x02\x05\x01\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 䃪
+ 0x40eb: "\x01\x03\x02\x05\x01\x03\x05\x01\x03\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 䃫
+ 0x40ec: "\x01\x03\x02\x05\x01\x02\x05\x02\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 䃬
+ 0x40ed: "\x01\x03\x02\x05\x01\x01\x03\x01\x02\x05\x01\x05\x03\x04\x04\x05\x04\x04", // 䃭
+ 0x40ee: "\x01\x03\x02\x05\x01\x01\x02\x01\x04\x03\x01\x01\x01\x02\x04\x05\x04", // 䃮
+ 0x40ef: "\x01\x03\x02\x05\x01\x03\x02\x05\x01\x01\x04\x01\x03\x04\x01\x02\x03\x04", // 䃯
+ 0x40f0: "\x01\x03\x02\x05\x01\x04\x04\x05\x03\x05\x04\x04\x05\x04\x01\x01\x02\x03\x04", // 䃰
+ 0x40f1: "\x01\x03\x02\x05\x01\x01\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 䃱
+ 0x40f2: "\x01\x03\x02\x05\x01\x03\x03\x05\x04\x01\x04\x03\x05\x05\x04\x02\x05\x02\x02\x01", // 䃲
+ 0x40f3: "\x01\x03\x02\x05\x01\x05\x05\x05\x02\x05\x03\x04\x01\x05\x04\x04\x05\x04\x04\x05", // 䃳
+ 0x40f4: "\x01\x03\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 䃴
+ 0x40f5: "\x01\x03\x02\x05\x01\x04\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05\x03\x04", // 䃵
+ 0x40f6: "\x01\x03\x02\x05\x01\x04\x01\x02\x05\x02\x02\x01\x02\x04\x01\x03\x04\x03\x05\x04\x03", // 䃶
+ 0x40f7: "\x01\x03\x02\x05\x01\x04\x01\x05\x02\x05\x01\x03\x05\x01\x01\x05\x03\x01\x03\x05\x04", // 䃷
+ 0x40f8: "\x01\x03\x02\x05\x01\x03\x04\x03\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 䃸
+ 0x40f9: "\x01\x03\x02\x05\x01\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 䃹
+ 0x40fa: "\x01\x03\x02\x05\x01\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01", // 䃺
+ 0x40fb: "\x01\x03\x02\x05\x01\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x01\x01", // 䃻
+ 0x40fc: "\x04\x05\x02\x04\x02\x04", // 䃼
+ 0x40fd: "\x04\x05\x02\x04\x01\x02\x05\x04", // 䃽
+ 0x40fe: "\x04\x05\x02\x04\x01\x05\x03\x05", // 䃾
+ 0x40ff: "\x04\x05\x02\x04\x01\x01\x03\x04", // 䃿
+ 0x4100: "\x04\x05\x02\x04\x01\x05\x03\x04", // 䄀
+ 0x4101: "\x04\x05\x02\x04\x01\x02\x02\x01\x05", // 䄁
+ 0x4102: "\x04\x05\x02\x04\x02\x05\x01\x02\x01", // 䄂
+ 0x4103: "\x04\x05\x02\x04\x02\x05\x01\x03\x04", // 䄃
+ 0x4104: "\x04\x05\x02\x04\x02\x05\x01\x03\x04\x01", // 䄄
+ 0x4105: "\x04\x03\x01\x01\x03\x04\x01\x01\x02\x03\x04", // 䄅
+ 0x4106: "\x04\x05\x02\x04\x03\x01\x02\x02\x05\x01", // 䄆
+ 0x4107: "\x04\x05\x02\x04\x02\x05\x01\x01\x01\x02\x01", // 䄇
+ 0x4108: "\x04\x05\x02\x04\x01\x02\x05\x01\x04\x03\x01", // 䄈
+ 0x4109: "\x04\x05\x02\x04\x03\x01\x02\x01\x05\x03\x04", // 䄉
+ 0x410a: "\x04\x05\x02\x04\x01\x02\x01\x04\x05\x04\x04", // 䄊
+ 0x410b: "\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x01\x05", // 䄋
+ 0x410c: "\x04\x05\x02\x04\x05\x04\x05\x04\x05\x04\x05\x04", // 䄌
+ 0x410d: "\x04\x05\x02\x04\x01\x02\x02\x01\x02\x05\x01\x01", // 䄍
+ 0x410e: "\x04\x05\x02\x04\x01\x03\x04\x01\x02\x05\x01\x02", // 䄎
+ 0x410f: "\x04\x05\x02\x04\x01\x02\x02\x03\x01\x03\x04", // 䄏
+ 0x4110: "\x05\x02\x02\x05\x02\x01\x01\x02\x03\x04\x05\x01\x05", // 䄐
+ 0x4111: "\x04\x05\x02\x04\x03\x05\x01\x05\x02\x05\x01\x01", // 䄑
+ 0x4112: "\x04\x05\x02\x04\x03\x04\x04\x05\x04\x05\x04\x04", // 䄒
+ 0x4113: "\x04\x05\x02\x04\x03\x02\x05\x01\x01\x01\x01\x02\x01", // 䄓
+ 0x4114: "\x04\x05\x02\x04\x03\x02\x05\x01\x02\x05\x02\x01\x04", // 䄔
+ 0x4115: "\x04\x05\x02\x04\x02\x05\x03\x04\x02\x05\x01\x02\x01", // 䄕
+ 0x4116: "\x04\x05\x02\x04\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 䄖
+ 0x4117: "\x04\x05\x02\x04\x03\x01\x02\x01\x05\x05\x02\x01\x02", // 䄗
+ 0x4118: "\x04\x05\x02\x04\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03", // 䄘
+ 0x4119: "\x04\x05\x02\x04\x04\x05\x02\x05\x01\x01\x04\x01\x03\x04", // 䄙
+ 0x411a: "\x04\x05\x02\x04\x01\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01", // 䄚
+ 0x411b: "\x04\x05\x02\x04\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 䄛
+ 0x411c: "\x04\x05\x02\x04\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 䄜
+ 0x411d: "\x04\x05\x02\x04\x01\x01\x01\x03\x04\x03\x02\x01\x05\x01\x01", // 䄝
+ 0x411e: "\x04\x05\x02\x04\x03\x05\x04\x04\x05\x04\x01\x01\x02\x03\x04", // 䄞
+ 0x411f: "\x03\x01\x01\x05\x03\x01\x01\x05\x03\x01\x01\x05\x01\x01\x02\x03\x04", // 䄟
+ 0x4120: "\x04\x05\x02\x04\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 䄠
+ 0x4121: "\x04\x05\x02\x04\x03\x05\x01\x03\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 䄡
+ 0x4122: "\x04\x05\x02\x04\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01", // 䄢
+ 0x4123: "\x04\x05\x02\x04\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 䄣
+ 0x4124: "\x04\x05\x02\x04\x01\x02\x05\x01\x02\x03\x04\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 䄤
+ 0x4125: "\x04\x05\x02\x04\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x03\x04\x01", // 䄥
+ 0x4126: "\x03\x01\x02\x03\x04\x05\x02", // 䄦
+ 0x4127: "\x03\x01\x02\x03\x04\x05\x03", // 䄧
+ 0x4128: "\x03\x01\x02\x03\x04\x01\x01\x02", // 䄨
+ 0x4129: "\x03\x01\x02\x03\x04\x01\x05\x04", // 䄩
+ 0x412a: "\x03\x01\x02\x03\x04\x03\x05\x04", // 䄪
+ 0x412b: "\x03\x01\x02\x03\x04\x05\x01\x05", // 䄫
+ 0x412c: "\x03\x01\x02\x03\x04\x05\x02\x05", // 䄬
+ 0x412d: "\x03\x01\x02\x03\x04\x03\x01\x02", // 䄭
+ 0x412e: "\x03\x01\x02\x03\x04\x01\x01\x03\x04", // 䄮
+ 0x412f: "\x03\x01\x02\x03\x04\x01\x01\x03\x02", // 䄯
+ 0x4130: "\x03\x01\x02\x03\x04\x01\x05\x02\x03", // 䄰
+ 0x4131: "\x03\x01\x02\x03\x04\x04\x01\x05\x03", // 䄱
+ 0x4132: "\x03\x01\x02\x03\x04\x02\x05\x03\x04", // 䄲
+ 0x4133: "\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 䄳
+ 0x4134: "\x03\x01\x02\x03\x04\x03\x05\x01\x01", // 䄴
+ 0x4135: "\x03\x01\x02\x03\x04\x01\x05\x02", // 䄵
+ 0x4136: "\x03\x01\x02\x03\x04\x05\x01\x05\x03\x02", // 䄶
+ 0x4137: "\x03\x01\x02\x03\x04\x01\x03\x02\x05\x01", // 䄷
+ 0x4138: "\x03\x01\x02\x03\x04\x03\x02\x05\x01\x01", // 䄸
+ 0x4139: "\x03\x01\x02\x03\x04\x03\x04\x03\x01\x02", // 䄹
+ 0x413a: "\x03\x01\x02\x03\x04\x01\x05\x01\x05\x03\x04", // 䄺
+ 0x413b: "\x03\x01\x02\x03\x04\x03\x04\x01\x05\x03\x04", // 䄻
+ 0x413c: "\x03\x01\x02\x03\x04\x01\x02\x05\x03\x04\x01", // 䄼
+ 0x413d: "\x03\x01\x02\x03\x04\x01\x02\x05\x03\x05\x01", // 䄽
+ 0x413e: "\x03\x01\x02\x03\x04\x01\x01\x03\x05\x03\x04", // 䄾
+ 0x413f: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x05\x03", // 䄿
+ 0x4140: "\x03\x01\x02\x03\x04\x01\x03\x05\x04\x02\x02", // 䅀
+ 0x4141: "\x04\x04\x05\x05\x03\x01\x03\x01\x02\x03\x04", // 䅁
+ 0x4142: "\x03\x01\x02\x03\x04\x03\x05\x04\x02\x05\x01", // 䅂
+ 0x4143: "\x01\x02\x01\x03\x05\x04\x03\x01\x02\x03\x04", // 䅃
+ 0x4144: "\x03\x01\x02\x03\x04\x05\x03\x05\x03\x05\x03", // 䅄
+ 0x4145: "\x03\x01\x02\x03\x04\x01\x02\x01\x01\x02\x01", // 䅅
+ 0x4146: "\x03\x01\x02\x03\x04\x04\x01\x03\x05\x03\x04", // 䅆
+ 0x4147: "\x01\x02\x05\x02\x02\x01\x03\x01\x02\x03\x04", // 䅇
+ 0x4148: "\x04\x03\x01\x01\x03\x04\x03\x01\x02\x03\x04", // 䅈
+ 0x4149: "\x03\x01\x02\x03\x04\x01\x02\x02\x04\x03\x01", // 䅉
+ 0x414a: "\x03\x01\x02\x03\x04\x04\x01\x03\x03\x01\x05", // 䅊
+ 0x414b: "\x03\x01\x02\x03\x04\x03\x05\x02\x05\x01\x03\x05", // 䅋
+ 0x414c: "\x03\x01\x02\x03\x04\x02\x05\x01\x02\x05\x01\x01", // 䅌
+ 0x414d: "\x03\x01\x02\x03\x04\x03\x01\x02\x01\x05\x04", // 䅍
+ 0x414e: "\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x05\x03", // 䅎
+ 0x414f: "\x03\x01\x02\x03\x04\x05\x01\x03\x03\x01\x01\x05", // 䅏
+ 0x4150: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 䅐
+ 0x4151: "\x03\x01\x02\x03\x04\x03\x04\x04\x03\x05\x03\x01", // 䅑
+ 0x4152: "\x03\x01\x02\x03\x04\x01\x02\x02\x04\x01\x05", // 䅒
+ 0x4153: "\x03\x01\x02\x03\x04\x03\x05\x02\x05\x01\x05\x04", // 䅓
+ 0x4154: "\x03\x01\x02\x03\x04\x05\x05\x05\x02\x05\x01\x02\x01", // 䅔
+ 0x4155: "\x03\x01\x02\x03\x04\x05\x01\x03\x01\x02\x02\x05\x01", // 䅕
+ 0x4156: "\x03\x01\x02\x03\x04\x01\x03\x04\x02\x05\x01\x01\x05", // 䅖
+ 0x4157: "\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 䅗
+ 0x4158: "\x03\x01\x02\x03\x04\x01\x03\x04\x03\x04\x02\x03\x04", // 䅘
+ 0x4159: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01\x05\x03\x05", // 䅙
+ 0x415a: "\x03\x01\x02\x03\x04\x04\x03\x01\x01\x03\x04\x05\x05", // 䅚
+ 0x415b: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x02\x05\x01\x01", // 䅛
+ 0x415c: "\x03\x01\x02\x03\x04\x03\x01\x01\x02\x02\x02\x01\x01", // 䅜
+ 0x415d: "\x03\x01\x02\x03\x04\x04\x04\x05\x03\x04\x01\x02\x01", // 䅝
+ 0x415e: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01\x01\x02\x04", // 䅞
+ 0x415f: "\x03\x01\x02\x03\x04\x05\x04\x01\x03\x04\x03\x03\x03", // 䅟
+ 0x4160: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 䅠
+ 0x4161: "\x03\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䅡
+ 0x4162: "\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x02\x05\x01\x01", // 䅢
+ 0x4163: "\x03\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x01\x02\x01", // 䅣
+ 0x4164: "\x03\x01\x02\x03\x04\x03\x01\x02\x03\x02\x01\x05\x01\x01", // 䅤
+ 0x4165: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 䅥
+ 0x4166: "\x03\x01\x02\x03\x04\x01\x02\x02\x02\x05\x01\x02\x01", // 䅦
+ 0x4167: "\x03\x01\x02\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 䅧
+ 0x4168: "\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x01", // 䅨
+ 0x4169: "\x03\x01\x02\x03\x04\x01\x02\x05\x04\x02\x05\x01\x03\x04", // 䅩
+ 0x416a: "\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x02\x05\x03\x04", // 䅪
+ 0x416b: "\x03\x01\x02\x03\x04\x04\x01\x02\x05\x01\x01\x02\x03\x04", // 䅫
+ 0x416c: "\x03\x01\x02\x03\x04\x04\x03\x01\x03\x04\x02\x05\x02\x02\x01", // 䅬
+ 0x416d: "\x03\x01\x02\x03\x04\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03", // 䅭
+ 0x416e: "\x03\x01\x02\x03\x04\x03\x04\x04\x05\x01\x01\x03\x02\x05\x01", // 䅮
+ 0x416f: "\x03\x01\x02\x03\x04\x04\x01\x03\x05\x01\x01\x02\x02\x05\x01", // 䅯
+ 0x4170: "\x03\x01\x02\x03\x04\x02\x05\x01\x03\x04\x01\x04\x05\x04\x04", // 䅰
+ 0x4171: "\x03\x01\x02\x03\x04\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 䅱
+ 0x4172: "\x03\x01\x02\x03\x04\x01\x02\x01\x03\x03\x05\x02\x05\x01\x01", // 䅲
+ 0x4173: "\x03\x01\x02\x03\x04\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03", // 䅳
+ 0x4174: "\x03\x01\x02\x03\x04\x01\x02\x04\x05\x05\x05\x04\x02\x03\x04", // 䅴
+ 0x4175: "\x03\x01\x02\x03\x04\x04\x03\x01\x01\x02\x01\x04\x04\x04\x04", // 䅵
+ 0x4176: "\x03\x01\x02\x03\x04\x01\x03\x01\x01\x05\x03\x04\x01\x02\x04", // 䅶
+ 0x4177: "\x03\x01\x02\x03\x04\x01\x02\x02\x03\x04\x01\x01\x02\x03\x04", // 䅷
+ 0x4178: "\x03\x01\x02\x03\x04\x01\x02\x02\x04\x01\x04\x03\x01\x01\x02", // 䅸
+ 0x4179: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 䅹
+ 0x417a: "\x03\x01\x02\x03\x04\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 䅺
+ 0x417b: "\x03\x01\x02\x03\x04\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 䅻
+ 0x417c: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x02\x05\x02\x02\x05\x04", // 䅼
+ 0x417d: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04\x03\x01\x02\x03\x04", // 䅽
+ 0x417e: "\x03\x01\x02\x03\x04\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x01", // 䅾
+ 0x417f: "\x03\x01\x02\x03\x04\x01\x02\x02\x01\x01\x02\x02\x01\x01\x02", // 䅿
+ 0x4180: "\x03\x01\x02\x03\x04\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 䆀
+ 0x4181: "\x03\x01\x02\x03\x04\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 䆁
+ 0x4182: "\x03\x01\x02\x03\x04\x04\x01\x03\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 䆂
+ 0x4183: "\x04\x03\x01\x03\x02\x05\x01\x01\x01\x04\x05\x04\x03\x01\x02\x03\x04", // 䆃
+ 0x4184: "\x03\x01\x02\x03\x04\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01", // 䆄
+ 0x4185: "\x03\x01\x02\x03\x04\x04\x01\x03\x05\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 䆅
+ 0x4186: "\x03\x01\x02\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 䆆
+ 0x4187: "\x03\x01\x02\x03\x04\x03\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䆇
+ 0x4188: "\x03\x01\x02\x03\x04\x05\x01\x03\x02\x04\x01\x03\x04\x03\x01\x01\x02\x04\x05\x04", // 䆈
+ 0x4189: "\x03\x01\x02\x03\x04\x02\x05\x02\x02\x01\x05\x04\x02\x05\x01\x01\x03\x05\x03\x05", // 䆉
+ 0x418a: "\x03\x01\x02\x03\x04\x02\x01\x01\x03\x05\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 䆊
+ 0x418b: "\x03\x01\x02\x03\x04\x03\x05\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x01\x05\x01\x01\x05", // 䆋
+ 0x418c: "\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x01\x03\x05\x04\x04\x01\x01\x01\x02\x05\x01", // 䆌
+ 0x418d: "\x03\x01\x02\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x01\x05\x01\x05\x01\x01\x01", // 䆍
+ 0x418e: "\x03\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 䆎
+ 0x418f: "\x03\x01\x02\x03\x04\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 䆏
+ 0x4190: "\x01\x01\x01\x03\x04\x03\x01\x02\x03\x04\x01\x01\x01\x03\x04\x03\x01\x02\x03\x04\x01\x01\x01\x03\x04\x03\x01\x02\x03\x04", // 䆐
+ 0x4191: "\x04\x04\x05\x03\x04\x01\x02", // 䆑
+ 0x4192: "\x04\x04\x05\x03\x04\x03\x05\x04", // 䆒
+ 0x4193: "\x04\x04\x05\x03\x04\x05\x04\x03\x05", // 䆓
+ 0x4194: "\x04\x04\x05\x03\x04\x02\x05\x01\x02", // 䆔
+ 0x4195: "\x04\x04\x05\x03\x04\x05\x01\x03\x04", // 䆕
+ 0x4196: "\x04\x04\x05\x03\x04\x01\x03\x05\x04", // 䆖
+ 0x4197: "\x04\x04\x05\x03\x04\x02\x05\x01\x05\x02", // 䆗
+ 0x4198: "\x04\x04\x05\x03\x04\x02\x05\x01\x01\x02", // 䆘
+ 0x4199: "\x04\x04\x05\x03\x04\x01\x02\x01\x02\x01", // 䆙
+ 0x419a: "\x04\x04\x05\x03\x04\x02\x05\x01\x02\x05\x01", // 䆚
+ 0x419b: "\x04\x04\x05\x03\x04\x02\x05\x01\x03\x01\x05", // 䆛
+ 0x419c: "\x04\x04\x05\x03\x04\x01\x03\x02\x05\x01\x01", // 䆜
+ 0x419d: "\x04\x04\x05\x03\x04\x03\x02\x05\x02\x02\x01", // 䆝
+ 0x419e: "\x04\x04\x05\x03\x04\x02\x05\x01\x01\x03\x05", // 䆞
+ 0x419f: "\x04\x04\x05\x03\x04\x03\x04\x01\x02\x05\x01", // 䆟
+ 0x41a0: "\x04\x04\x05\x03\x04\x01\x02\x05\x01\x02\x05", // 䆠
+ 0x41a1: "\x04\x04\x05\x03\x04\x04\x05\x01\x01\x05\x04\x03", // 䆡
+ 0x41a2: "\x04\x04\x05\x03\x04\x01\x02\x01\x05\x01\x03\x04", // 䆢
+ 0x41a3: "\x04\x04\x05\x03\x04\x01\x03\x01\x01\x05\x04\x03", // 䆣
+ 0x41a4: "\x04\x04\x05\x03\x04\x03\x02\x05\x01\x01\x01\x03", // 䆤
+ 0x41a5: "\x04\x04\x05\x03\x04\x01\x03\x05\x03\x03\x03\x04", // 䆥
+ 0x41a6: "\x04\x04\x05\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04", // 䆦
+ 0x41a7: "\x04\x04\x05\x03\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 䆧
+ 0x41a8: "\x04\x04\x05\x03\x04\x02\x05\x01\x01\x01\x01\x03\x04", // 䆨
+ 0x41a9: "\x04\x04\x05\x03\x04\x02\x05\x01\x01\x01\x01\x03\x04", // 䆩
+ 0x41aa: "\x02\x04\x03\x01\x03\x05\x04\x04\x05\x03\x04\x01\x02\x01", // 䆪
+ 0x41ab: "\x04\x04\x05\x03\x04\x03\x05\x03\x03\x04\x04\x05\x04\x04", // 䆫
+ 0x41ac: "\x04\x04\x05\x03\x04\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 䆬
+ 0x41ad: "\x04\x04\x05\x03\x04\x01\x02\x05\x01\x01\x01\x02\x01\x01\x02", // 䆭
+ 0x41ae: "\x04\x04\x05\x03\x04\x04\x04\x01\x05\x01\x01\x04\x05\x05\x04", // 䆮
+ 0x41af: "\x04\x04\x05\x03\x04\x05\x04\x05\x04\x05\x04\x05\x04\x05\x03\x01", // 䆯
+ 0x41b0: "\x04\x04\x05\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 䆰
+ 0x41b1: "\x04\x04\x05\x03\x04\x04\x04\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 䆱
+ 0x41b2: "\x04\x04\x05\x03\x04\x04\x01\x03\x05\x01\x01\x02\x04\x01\x03\x04", // 䆲
+ 0x41b3: "\x04\x04\x05\x03\x04\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 䆳
+ 0x41b4: "\x04\x04\x05\x03\x04\x03\x05\x02\x05\x01\x01\x02\x05\x01\x01\x05", // 䆴
+ 0x41b5: "\x04\x04\x05\x03\x04\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 䆵
+ 0x41b6: "\x04\x04\x05\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 䆶
+ 0x41b7: "\x04\x04\x05\x03\x04\x05\x04\x05\x02\x03\x02\x05\x03\x04\x02\x05\x01", // 䆷
+ 0x41b8: "\x04\x04\x05\x03\x04\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 䆸
+ 0x41b9: "\x04\x04\x05\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 䆹
+ 0x41ba: "\x04\x04\x05\x03\x04\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 䆺
+ 0x41bb: "\x04\x04\x05\x03\x04\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 䆻
+ 0x41bc: "\x04\x04\x05\x03\x04\x02\x05\x05\x02\x05\x02\x05\x01\x04\x05\x04", // 䆼
+ 0x41bd: "\x04\x04\x05\x03\x04\x02\x01\x05\x03\x01\x05\x01\x03\x05\x03\x03\x03\x04", // 䆽
+ 0x41be: "\x04\x04\x05\x03\x04\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01", // 䆾
+ 0x41bf: "\x04\x04\x05\x03\x04\x05\x02\x01\x03\x03\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 䆿
+ 0x41c0: "\x04\x04\x05\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x02\x01\x01\x01", // 䇀
+ 0x41c1: "\x04\x04\x05\x03\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x01\x01\x01\x02", // 䇁
+ 0x41c2: "\x04\x01\x04\x03\x01\x02", // 䇂
+ 0x41c3: "\x04\x01\x04\x03\x01\x05\x01\x05", // 䇃
+ 0x41c4: "\x04\x01\x04\x03\x01\x03\x01\x05", // 䇄
+ 0x41c5: "\x04\x01\x04\x03\x01\x01\x05\x03\x04", // 䇅
+ 0x41c6: "\x04\x01\x04\x03\x01\x04\x04\x01\x02", // 䇆
+ 0x41c7: "\x04\x01\x04\x03\x01\x05\x01\x05\x01\x05", // 䇇
+ 0x41c8: "\x04\x01\x04\x03\x01\x05\x04\x01\x02\x01", // 䇈
+ 0x41c9: "\x04\x01\x04\x03\x01\x01\x03\x02\x05\x01", // 䇉
+ 0x41ca: "\x04\x01\x04\x03\x01\x04\x01\x03\x05\x04", // 䇊
+ 0x41cb: "\x04\x01\x04\x03\x01\x03\x05\x04\x03\x05\x04", // 䇋
+ 0x41cc: "\x04\x01\x04\x03\x01\x02\x04\x03\x02\x05\x01\x01", // 䇌
+ 0x41cd: "\x04\x01\x04\x03\x01\x02\x05\x01\x02\x01\x03\x04", // 䇍
+ 0x41ce: "\x04\x01\x04\x03\x01\x01\x02\x02\x01\x02\x05\x01\x01", // 䇎
+ 0x41cf: "\x04\x01\x04\x03\x01\x04\x01\x02\x05\x01\x05\x02\x01", // 䇏
+ 0x41d0: "\x04\x01\x04\x03\x01\x05\x01\x01\x02\x04\x01\x04\x03", // 䇐
+ 0x41d1: "\x04\x01\x04\x03\x01\x03\x02\x05\x01\x01\x03\x01\x02", // 䇑
+ 0x41d2: "\x05\x01\x01\x05\x04\x01\x05\x03\x05\x04\x01\x04\x03\x01", // 䇒
+ 0x41d3: "\x03\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04\x04\x01\x04\x03\x01", // 䇓
+ 0x41d4: "\x04\x01\x05\x02\x05\x01\x03\x05\x01\x01\x04\x01\x04\x03\x01\x03\x05\x04", // 䇔
+ 0x41d5: "\x04\x01\x04\x03\x01\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02", // 䇕
+ 0x41d6: "\x03\x01\x04\x03\x01\x04\x03\x05\x03", // 䇖
+ 0x41d7: "\x03\x01\x04\x03\x01\x04\x03\x04\x05\x04", // 䇗
+ 0x41d8: "\x03\x01\x04\x03\x01\x04\x01\x05\x05\x01", // 䇘
+ 0x41d9: "\x03\x01\x04\x03\x01\x04\x05\x01\x05\x02", // 䇙
+ 0x41da: "\x03\x01\x04\x03\x01\x04\x03\x02\x02\x04", // 䇚
+ 0x41db: "\x03\x01\x04\x03\x01\x04\x02\x01\x02\x01", // 䇛
+ 0x41dc: "\x03\x01\x04\x03\x01\x04\x03\x05\x03\x04", // 䇜
+ 0x41dd: "\x03\x01\x04\x03\x01\x04\x01\x05\x03\x04", // 䇝
+ 0x41de: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x01\x01", // 䇞
+ 0x41df: "\x03\x01\x04\x03\x01\x04\x03\x05\x04\x05\x03", // 䇟
+ 0x41e0: "\x03\x01\x04\x03\x01\x04\x04\x01\x01\x02\x01", // 䇠
+ 0x41e1: "\x03\x01\x04\x03\x01\x04\x04\x04\x05\x01\x02", // 䇡
+ 0x41e2: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x05\x01", // 䇢
+ 0x41e3: "\x03\x01\x04\x03\x01\x04\x03\x04\x02\x03\x04", // 䇣
+ 0x41e4: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x03\x04", // 䇤
+ 0x41e5: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x02\x01", // 䇥
+ 0x41e6: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x03\x04", // 䇦
+ 0x41e7: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x03\x04\x01", // 䇧
+ 0x41e8: "\x03\x01\x04\x03\x01\x04\x03\x05\x04\x01\x05\x02", // 䇨
+ 0x41e9: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x05\x03", // 䇩
+ 0x41ea: "\x03\x01\x04\x03\x01\x04\x01\x05\x04\x01\x02\x01", // 䇪
+ 0x41eb: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x05\x01\x02\x05", // 䇫
+ 0x41ec: "\x03\x01\x04\x03\x01\x04\x03\x01\x01\x02\x03\x04", // 䇬
+ 0x41ed: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x03\x03\x05", // 䇭
+ 0x41ee: "\x03\x01\x04\x03\x01\x04\x03\x02\x03\x01\x02\x01", // 䇮
+ 0x41ef: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x01\x01\x01", // 䇯
+ 0x41f0: "\x03\x01\x04\x03\x01\x04\x05\x02\x05\x03\x04\x01", // 䇰
+ 0x41f1: "\x03\x01\x04\x03\x01\x04\x02\x05\x03\x05\x04\x01", // 䇱
+ 0x41f2: "\x03\x01\x04\x03\x01\x04\x01\x04\x03\x01\x03\x04", // 䇲
+ 0x41f3: "\x03\x01\x04\x03\x01\x04\x01\x01\x01\x05\x03\x04", // 䇳
+ 0x41f4: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x03\x05\x01", // 䇴
+ 0x41f5: "\x03\x01\x04\x03\x01\x04\x04\x04\x01\x03\x03\x01\x02", // 䇵
+ 0x41f6: "\x03\x01\x04\x03\x01\x04\x03\x05\x03\x05\x01\x01\x02", // 䇶
+ 0x41f7: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x05\x03\x02\x02", // 䇷
+ 0x41f8: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x02\x01", // 䇸
+ 0x41f9: "\x03\x01\x04\x03\x01\x04\x05\x01\x01\x03\x02\x05\x01", // 䇹
+ 0x41fa: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x01\x04\x03\x01", // 䇺
+ 0x41fb: "\x03\x01\x04\x03\x01\x04\x05\x01\x03\x03\x01\x01\x05", // 䇻
+ 0x41fc: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x05\x02\x01\x05", // 䇼
+ 0x41fd: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x03\x03\x01\x02", // 䇽
+ 0x41fe: "\x03\x01\x04\x03\x01\x04\x04\x01\x01\x01\x02\x05\x01", // 䇾
+ 0x41ff: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x01\x02\x03\x04", // 䇿
+ 0x4200: "\x03\x01\x04\x03\x01\x04\x03\x05\x03\x05\x01\x02\x02", // 䈀
+ 0x4201: "\x03\x01\x04\x03\x01\x04\x03\x04\x01\x02\x05\x01\x02\x02", // 䈁
+ 0x4202: "\x03\x01\x04\x03\x01\x04\x04\x03\x01\x01\x03\x02", // 䈂
+ 0x4203: "\x03\x01\x04\x03\x01\x04\x04\x04\x01\x05\x03\x02\x05\x01", // 䈃
+ 0x4204: "\x03\x01\x04\x03\x01\x04\x05\x02\x04\x01\x03\x04\x05\x02", // 䈄
+ 0x4205: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x01\x01\x05\x03\x04", // 䈅
+ 0x4206: "\x03\x01\x04\x03\x01\x04\x04\x05\x01\x03\x01\x03\x04\x04", // 䈆
+ 0x4207: "\x03\x01\x04\x03\x01\x04\x02\x01\x02\x05\x01\x01\x01\x02", // 䈇
+ 0x4208: "\x03\x01\x04\x03\x01\x04\x03\x05\x01\x01\x05\x02\x01\x05", // 䈈
+ 0x4209: "\x03\x01\x04\x03\x01\x04\x04\x01\x04\x03\x01\x05\x03\x01", // 䈉
+ 0x420a: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x03\x04\x03\x05\x04", // 䈊
+ 0x420b: "\x03\x01\x04\x03\x01\x04\x02\x05\x03\x04\x02\x05\x01\x01", // 䈋
+ 0x420c: "\x03\x01\x04\x03\x01\x04\x04\x04\x01\x02\x05\x01\x01\x01", // 䈌
+ 0x420d: "\x03\x01\x04\x03\x01\x04\x04\x01\x05\x02\x05\x01\x01\x01", // 䈍
+ 0x420e: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 䈎
+ 0x420f: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 䈏
+ 0x4210: "\x03\x01\x04\x03\x01\x04\x04\x04\x02\x01\x03\x04\x03\x03\x04", // 䈐
+ 0x4211: "\x03\x01\x04\x03\x01\x04\x02\x05\x05\x02\x05\x02\x05\x01", // 䈑
+ 0x4212: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x05\x04\x03\x01\x01\x02", // 䈒
+ 0x4213: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 䈓
+ 0x4214: "\x03\x01\x04\x03\x01\x04\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 䈔
+ 0x4215: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 䈕
+ 0x4216: "\x03\x01\x04\x03\x01\x04\x03\x01\x02\x03\x04\x04\x04\x01\x02", // 䈖
+ 0x4217: "\x03\x01\x04\x03\x01\x04\x03\x02\x05\x04\x03\x04\x03\x05\x04", // 䈗
+ 0x4218: "\x03\x01\x04\x03\x01\x04\x04\x03\x01\x05\x05\x04\x05\x05\x04", // 䈘
+ 0x4219: "\x03\x01\x04\x03\x01\x04\x05\x05\x04\x04\x04\x04\x01\x02\x04", // 䈙
+ 0x421a: "\x03\x01\x04\x03\x01\x04\x05\x04\x02\x05\x01\x04\x05\x04\x04", // 䈚
+ 0x421b: "\x03\x01\x04\x03\x01\x04\x02\x01\x02\x05\x01\x02\x02\x05\x04", // 䈛
+ 0x421c: "\x03\x01\x04\x03\x01\x04\x03\x02\x05\x01\x01\x04\x05\x05\x04", // 䈜
+ 0x421d: "\x03\x01\x04\x03\x01\x04\x05\x02\x01\x03\x04\x02\x05\x01\x01", // 䈝
+ 0x421e: "\x03\x01\x04\x03\x01\x04\x04\x01\x02\x05\x01\x02\x05\x01\x01", // 䈞
+ 0x421f: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x03\x04\x02\x02", // 䈟
+ 0x4220: "\x03\x01\x04\x03\x01\x04\x03\x04\x04\x03\x01\x01\x03\x05\x04", // 䈠
+ 0x4221: "\x03\x01\x04\x03\x01\x04\x03\x05\x03\x03\x04\x04\x05\x04\x04", // 䈡
+ 0x4222: "\x03\x01\x04\x03\x01\x04\x05\x04\x02\x05\x01\x01\x02\x03\x04", // 䈢
+ 0x4223: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x02\x01\x03\x01\x03\x04", // 䈣
+ 0x4224: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x01\x02\x02\x01\x01", // 䈤
+ 0x4225: "\x03\x01\x04\x03\x01\x04\x03\x05\x03\x05\x01\x01\x02\x05\x03", // 䈥
+ 0x4226: "\x03\x01\x04\x03\x01\x04\x03\x04\x05\x02\x03\x04\x03\x05\x04", // 䈦
+ 0x4227: "\x03\x01\x04\x03\x01\x04\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04", // 䈧
+ 0x4228: "\x03\x01\x04\x03\x01\x04\x05\x02\x05\x01\x01\x05\x03\x04", // 䈨
+ 0x4229: "\x03\x01\x04\x03\x01\x04\x03\x04\x01\x04\x04\x03\x01\x02\x02", // 䈩
+ 0x422a: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 䈪
+ 0x422b: "\x03\x01\x04\x03\x01\x04\x05\x05\x04\x04\x04\x04\x02\x05\x03\x04", // 䈫
+ 0x422c: "\x03\x01\x04\x03\x01\x04\x04\x04\x01\x01\x02\x05\x01\x01\x02\x04", // 䈬
+ 0x422d: "\x03\x01\x04\x03\x01\x04\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 䈭
+ 0x422e: "\x03\x01\x04\x03\x01\x04\x04\x01\x04\x03\x01\x03\x05\x02\x05\x01", // 䈮
+ 0x422f: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 䈯
+ 0x4230: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x02\x04\x03\x02\x05\x01\x01", // 䈰
+ 0x4231: "\x03\x01\x04\x03\x01\x04\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01", // 䈱
+ 0x4232: "\x03\x01\x04\x03\x01\x04\x03\x03\x05\x04\x01\x04\x03\x05\x05\x04", // 䈲
+ 0x4233: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 䈳
+ 0x4234: "\x03\x01\x04\x03\x01\x04\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 䈴
+ 0x4235: "\x03\x01\x04\x03\x01\x04\x03\x04\x05\x04\x05\x04\x01\x05\x04\x01", // 䈵
+ 0x4236: "\x03\x01\x04\x03\x01\x04\x04\x04\x05\x03\x04\x03\x04\x02\x05\x01", // 䈶
+ 0x4237: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x03\x05\x04\x02\x05\x01", // 䈷
+ 0x4238: "\x03\x01\x04\x03\x01\x04\x03\x05\x03\x05\x01\x01\x02\x04\x04\x01\x02", // 䈸
+ 0x4239: "\x03\x01\x04\x03\x01\x04\x04\x04\x05\x03\x02\x01\x03\x02\x05\x01\x01", // 䈹
+ 0x423a: "\x03\x01\x04\x03\x01\x04\x05\x05\x04\x04\x04\x04\x03\x05\x04\x04\x04", // 䈺
+ 0x423b: "\x03\x01\x04\x03\x01\x04\x03\x05\x01\x01\x01\x02\x05\x01\x01\x02\x04", // 䈻
+ 0x423c: "\x03\x01\x04\x03\x01\x04\x04\x04\x05\x04\x05\x04\x03\x04\x02\x05\x02", // 䈼
+ 0x423d: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01", // 䈽
+ 0x423e: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x02\x04\x03\x02\x05\x01\x01", // 䈾
+ 0x423f: "\x03\x01\x04\x03\x01\x04\x04\x05\x02\x05\x01\x01\x04\x01\x03\x04", // 䈿
+ 0x4240: "\x03\x01\x04\x03\x01\x04\x04\x01\x03\x01\x02\x02\x01\x04\x04\x04\x04", // 䉀
+ 0x4241: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x01\x01\x01\x03\x04\x04\x05\x04", // 䉁
+ 0x4242: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 䉂
+ 0x4243: "\x03\x01\x04\x03\x01\x04\x05\x02\x01\x03\x03\x05\x04\x04\x01\x02\x04", // 䉃
+ 0x4244: "\x03\x01\x04\x03\x01\x04\x05\x02\x01\x02\x01\x03\x04\x03\x05\x04", // 䉄
+ 0x4245: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04", // 䉅
+ 0x4246: "\x03\x01\x04\x03\x01\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䉆
+ 0x4247: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x01\x01\x01\x03\x04\x05\x02\x02", // 䉇
+ 0x4248: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x01\x02\x05\x01\x01\x03\x01\x03\x04", // 䉈
+ 0x4249: "\x03\x01\x04\x03\x01\x04\x03\x05\x03\x05\x01\x01\x02\x03\x03\x05\x04\x04", // 䉉
+ 0x424a: "\x03\x01\x04\x03\x01\x04\x05\x04\x01\x03\x04\x01\x02\x05\x01\x01\x01\x02", // 䉊
+ 0x424b: "\x03\x01\x04\x03\x01\x04\x05\x03\x01\x05\x02\x01\x03\x02\x05\x01\x01\x01", // 䉋
+ 0x424c: "\x03\x01\x04\x03\x01\x04\x05\x02\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 䉌
+ 0x424d: "\x03\x01\x04\x03\x01\x04\x05\x01\x01\x02\x02\x05\x01\x01\x04\x05\x04\x04", // 䉍
+ 0x424e: "\x03\x01\x04\x03\x01\x04\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x03\x04", // 䉎
+ 0x424f: "\x03\x01\x04\x03\x01\x04\x03\x05\x03\x05\x01\x01\x02\x05\x03\x03\x01\x01\x02", // 䉏
+ 0x4250: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x01\x01\x01\x02\x01\x02\x02\x05\x01", // 䉐
+ 0x4251: "\x03\x01\x04\x03\x01\x04\x03\x01\x01\x02\x02\x02\x02\x01\x04\x04\x04\x04", // 䉑
+ 0x4252: "\x03\x01\x04\x03\x01\x04\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 䉒
+ 0x4253: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x03\x04", // 䉓
+ 0x4254: "\x03\x01\x04\x03\x01\x04\x01\x03\x05\x04\x01\x05\x03\x04\x01\x05\x03\x04", // 䉔
+ 0x4255: "\x03\x01\x04\x03\x01\x04\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 䉕
+ 0x4256: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x01\x01\x01\x02\x03\x04\x04\x05\x04", // 䉖
+ 0x4257: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x02\x05\x01\x01\x02\x02\x01\x01\x01", // 䉗
+ 0x4258: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x04\x04\x05\x01\x01\x02\x03\x04", // 䉘
+ 0x4259: "\x03\x01\x04\x03\x01\x04\x01\x04\x05\x02\x04\x04\x04\x04\x01\x01\x05\x04", // 䉙
+ 0x425a: "\x03\x01\x04\x03\x01\x04\x02\x05\x02\x02\x01\x04\x05\x01\x05\x05\x04", // 䉚
+ 0x425b: "\x03\x01\x04\x03\x01\x04\x03\x02\x05\x04\x03\x01\x02\x03\x04\x01\x03\x04", // 䉛
+ 0x425c: "\x03\x01\x04\x03\x01\x04\x03\x01\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 䉜
+ 0x425d: "\x03\x01\x04\x03\x01\x04\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01\x05\x03\x04", // 䉝
+ 0x425e: "\x03\x01\x04\x03\x01\x04\x01\x03\x01\x02\x05\x01\x05\x03\x04\x04\x05\x04\x04", // 䉞
+ 0x425f: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 䉟
+ 0x4260: "\x03\x01\x04\x03\x01\x04\x03\x03\x02\x02\x05\x02\x01\x03\x05\x03\x01\x03\x04", // 䉠
+ 0x4261: "\x03\x01\x04\x03\x01\x04\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 䉡
+ 0x4262: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x03\x04\x01\x02\x05\x02\x05\x01\x01", // 䉢
+ 0x4263: "\x03\x01\x04\x03\x01\x04\x03\x02\x01\x05\x01\x01\x03\x05\x04\x04\x04\x04", // 䉣
+ 0x4264: "\x03\x01\x04\x03\x01\x04\x04\x03\x01\x02\x03\x04\x05\x03\x01\x03\x01\x03\x04", // 䉤
+ 0x4265: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x03\x02\x05\x03\x05\x04\x01\x04\x05\x04\x04", // 䉥
+ 0x4266: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x02\x02\x01\x01\x03\x04\x05\x01\x05\x04\x05\x04", // 䉦
+ 0x4267: "\x03\x01\x04\x03\x01\x04\x03\x05\x04\x05\x03\x03\x04\x01\x01\x02\x04\x03\x01\x02\x02", // 䉧
+ 0x4268: "\x03\x01\x04\x03\x01\x04\x04\x01\x04\x03\x01\x03\x05\x03\x03\x03\x04\x03\x05\x05\x04", // 䉨
+ 0x4269: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 䉩
+ 0x426a: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01", // 䉪
+ 0x426b: "\x03\x01\x04\x03\x01\x04\x03\x01\x02\x03\x04\x03\x05\x03\x03\x04\x02\x04\x01\x03\x04", // 䉫
+ 0x426c: "\x03\x01\x04\x03\x01\x04\x04\x01\x03\x05\x04\x03\x03\x04\x05\x01\x05\x03\x05\x05\x04", // 䉬
+ 0x426d: "\x03\x01\x04\x03\x01\x04\x05\x05\x05\x02\x05\x03\x04\x01\x05\x04\x04\x05\x04\x04\x05", // 䉭
+ 0x426e: "\x03\x01\x04\x03\x01\x04\x05\x01\x01\x02\x02\x05\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 䉮
+ 0x426f: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x01\x02\x05\x05\x04\x02\x05\x01\x01\x01\x03\x04", // 䉯
+ 0x4270: "\x03\x01\x04\x03\x01\x04\x02\x05\x05\x04\x05\x02\x05\x01\x01\x04\x01\x03\x04\x03\x04", // 䉰
+ 0x4271: "\x03\x01\x04\x03\x01\x04\x04\x05\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 䉱
+ 0x4272: "\x03\x01\x04\x03\x01\x04\x05\x01\x05\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 䉲
+ 0x4273: "\x03\x01\x04\x03\x01\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x01\x01\x01\x02", // 䉳
+ 0x4274: "\x03\x01\x04\x03\x01\x04\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 䉴
+ 0x4275: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x01\x03\x04\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 䉵
+ 0x4276: "\x03\x01\x04\x03\x01\x04\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 䉶
+ 0x4277: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x05\x01\x01\x03\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 䉷
+ 0x4278: "\x03\x01\x04\x03\x01\x04\x04\x01\x01\x01\x02\x05\x01\x04\x01\x04\x03\x01\x01\x03\x04\x01\x04\x03\x01\x01\x02", // 䉸
+ 0x4279: "\x03\x01\x04\x03\x01\x04\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x03\x04\x01", // 䉹
+ 0x427a: "\x04\x03\x01\x02\x03\x04\x01\x02\x01", // 䉺
+ 0x427b: "\x04\x03\x01\x02\x03\x04\x03\x05\x01\x05", // 䉻
+ 0x427c: "\x04\x03\x01\x02\x03\x04\x03\x03\x01\x02", // 䉼
+ 0x427d: "\x04\x03\x01\x02\x03\x04\x04\x03\x01\x01\x02", // 䉽
+ 0x427e: "\x02\x01\x01\x03\x05\x04\x03\x01\x02\x03\x04", // 䉾
+ 0x427f: "\x04\x03\x01\x02\x03\x04\x03\x04\x03\x01\x02", // 䉿
+ 0x4280: "\x04\x03\x01\x02\x03\x04\x01\x02\x02\x05\x01", // 䊀
+ 0x4281: "\x04\x03\x01\x02\x03\x04\x03\x01\x02\x01\x03\x05", // 䊁
+ 0x4282: "\x04\x03\x01\x02\x01\x02\x05\x02\x03\x04", // 䊂
+ 0x4283: "\x04\x03\x01\x02\x03\x04\x03\x05\x01\x02\x05\x02", // 䊃
+ 0x4284: "\x01\x02\x01\x03\x05\x04\x04\x03\x01\x02\x03\x04", // 䊄
+ 0x4285: "\x04\x03\x01\x02\x03\x04\x03\x05\x04\x02\x05\x01", // 䊅
+ 0x4286: "\x03\x02\x01\x05\x01\x01\x04\x03\x01\x02\x03\x04", // 䊆
+ 0x4287: "\x04\x03\x01\x02\x03\x04\x01\x02\x05\x01\x01\x02\x04", // 䊇
+ 0x4288: "\x04\x03\x01\x02\x03\x04\x03\x01\x05\x05\x04\x01\x04", // 䊈
+ 0x4289: "\x04\x03\x01\x02\x03\x04\x04\x04\x05\x01\x02\x03\x04", // 䊉
+ 0x428a: "\x04\x03\x01\x02\x03\x04\x05\x01\x03\x03\x01\x01\x05", // 䊊
+ 0x428b: "\x04\x03\x01\x02\x03\x04\x05\x02\x01\x03\x01\x02\x01", // 䊋
+ 0x428c: "\x04\x03\x01\x02\x03\x04\x04\x01\x03\x01\x05\x03\x05", // 䊌
+ 0x428d: "\x03\x01\x02\x03\x04\x03\x05\x03\x04\x03\x01\x02\x03\x04", // 䊍
+ 0x428e: "\x04\x03\x01\x02\x03\x04\x04\x03\x01\x01\x03\x04\x05\x05", // 䊎
+ 0x428f: "\x04\x03\x01\x02\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04", // 䊏
+ 0x4290: "\x04\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01\x05\x03\x05", // 䊐
+ 0x4291: "\x04\x03\x01\x02\x03\x04\x02\x04\x03\x02\x05\x02\x05\x01", // 䊑
+ 0x4292: "\x04\x03\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 䊒
+ 0x4293: "\x04\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 䊓
+ 0x4294: "\x04\x03\x01\x02\x03\x04\x01\x02\x02\x02\x05\x01\x03\x04", // 䊔
+ 0x4295: "\x04\x03\x01\x02\x03\x04\x05\x01\x01\x01\x01\x02\x05\x04", // 䊕
+ 0x4296: "\x04\x03\x01\x02\x03\x04\x01\x02\x02\x05\x04\x03\x01\x01\x02", // 䊖
+ 0x4297: "\x04\x03\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x01\x02\x01", // 䊗
+ 0x4298: "\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x02\x05\x01\x01", // 䊘
+ 0x4299: "\x01\x03\x02\x05\x01\x01\x01\x03\x02\x04\x03\x01\x02\x03\x04", // 䊙
+ 0x429a: "\x04\x03\x01\x02\x03\x04\x03\x02\x05\x01\x05\x01\x04\x05\x04", // 䊚
+ 0x429b: "\x04\x03\x01\x02\x03\x04\x03\x04\x01\x02\x03\x04\x03\x05\x05\x04", // 䊛
+ 0x429c: "\x04\x03\x01\x02\x03\x04\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04", // 䊜
+ 0x429d: "\x04\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x04\x05\x04\x04", // 䊝
+ 0x429e: "\x04\x03\x01\x02\x03\x04\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01", // 䊞
+ 0x429f: "\x04\x03\x01\x02\x03\x04\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04", // 䊟
+ 0x42a0: "\x05\x01\x01\x05\x04\x01\x05\x03\x05\x04\x03\x01\x02\x03\x04", // 䊠
+ 0x42a1: "\x04\x03\x01\x02\x03\x04\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 䊡
+ 0x42a2: "\x05\x02\x01\x03\x03\x05\x04\x04\x01\x02\x04\x04\x03\x01\x02\x03\x04", // 䊢
+ 0x42a3: "\x04\x03\x01\x02\x03\x04\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 䊣
+ 0x42a4: "\x04\x03\x01\x02\x03\x04\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 䊤
+ 0x42a5: "\x04\x03\x01\x02\x03\x04\x05\x01\x01\x02\x03\x02\x01\x01\x05\x05\x02\x01\x02", // 䊥
+ 0x42a6: "\x04\x03\x01\x02\x03\x04\x01\x02\x01\x04\x05\x01\x02\x05\x01\x04\x03\x01", // 䊦
+ 0x42a7: "\x04\x03\x01\x02\x03\x04\x05\x01\x05\x03\x02\x02\x05\x01\x01\x01\x03\x04", // 䊧
+ 0x42a8: "\x04\x01\x05\x02\x05\x01\x03\x05\x01\x01\x04\x03\x01\x02\x03\x04\x03\x05", // 䊨
+ 0x42a9: "\x04\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 䊩
+ 0x42aa: "\x04\x03\x01\x02\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 䊪
+ 0x42ab: "\x04\x03\x01\x02\x03\x04\x02\x05\x02\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01", // 䊫
+ 0x42ac: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x03\x04\x04\x03\x01\x02\x03\x04", // 䊬
+ 0x42ad: "\x04\x03\x01\x02\x03\x04\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 䊭
+ 0x42ae: "\x04\x03\x01\x02\x03\x04\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 䊮
+ 0x42af: "\x04\x03\x01\x02\x03\x04\x04\x01\x03\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 䊯
+ 0x42b0: "\x04\x03\x01\x02\x03\x04\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 䊰
+ 0x42b1: "\x04\x03\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 䊱
+ 0x42b2: "\x01\x02\x05\x02\x02\x01\x04\x03\x01\x02\x03\x04\x04\x01\x04\x03\x01\x03\x03\x01\x01\x02\x01", // 䊲
+ 0x42b3: "\x04\x03\x01\x02\x03\x04\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01", // 䊳
+ 0x42b4: "\x04\x03\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 䊴
+ 0x42b5: "\x05\x05\x04\x04\x04\x04\x03\x05", // 䊵
+ 0x42b6: "\x05\x05\x04\x04\x04\x04\x05\x02\x05", // 䊶
+ 0x42b7: "\x05\x05\x04\x04\x04\x04\x01\x02\x03", // 䊷
+ 0x42b8: "\x05\x05\x04\x04\x04\x04\x01\x01\x05", // 䊸
+ 0x42b9: "\x05\x05\x04\x04\x04\x04\x03\x01\x02", // 䊹
+ 0x42ba: "\x05\x05\x04\x04\x04\x04\x01\x05\x05\x01", // 䊺
+ 0x42bb: "\x05\x05\x04\x04\x04\x04\x03\x05\x03\x04", // 䊻
+ 0x42bc: "\x05\x05\x04\x04\x04\x04\x02\x01\x02\x01", // 䊼
+ 0x42bd: "\x05\x05\x04\x04\x04\x04\x05\x01\x03\x04", // 䊽
+ 0x42be: "\x05\x05\x04\x04\x04\x04\x01\x02\x03\x04", // 䊾
+ 0x42bf: "\x05\x05\x04\x04\x04\x04\x01\x01\x03\x04", // 䊿
+ 0x42c0: "\x04\x05\x01\x03\x05\x05\x04\x02\x03\x04", // 䋀
+ 0x42c1: "\x05\x05\x04\x04\x04\x04\x04\x01\x03\x05", // 䋁
+ 0x42c2: "\x05\x05\x04\x04\x04\x04\x03\x04\x03\x04", // 䋂
+ 0x42c3: "\x05\x05\x04\x04\x04\x04\x03\x01\x01\x05", // 䋃
+ 0x42c4: "\x05\x05\x04\x04\x04\x04\x02\x05\x03\x04", // 䋄
+ 0x42c5: "\x05\x05\x04\x04\x04\x04\x03\x01\x01\x02", // 䋅
+ 0x42c6: "\x05\x05\x04\x04\x04\x04\x05\x01\x03", // 䋆
+ 0x42c7: "\x05\x05\x04\x04\x04\x04\x05\x01\x03\x04", // 䋇
+ 0x42c8: "\x05\x03\x01\x05\x04\x05\x05\x04\x02\x03\x04", // 䋈
+ 0x42c9: "\x05\x05\x04\x04\x04\x04\x04\x04\x05\x03\x04", // 䋉
+ 0x42ca: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x02\x01", // 䋊
+ 0x42cb: "\x05\x05\x04\x04\x04\x04\x05\x01\x05\x01\x05", // 䋋
+ 0x42cc: "\x05\x05\x04\x04\x04\x04\x01\x05\x01\x05", // 䋌
+ 0x42cd: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x01\x02", // 䋍
+ 0x42ce: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01\x01", // 䋎
+ 0x42cf: "\x05\x05\x04\x04\x04\x04\x03\x01\x02\x01\x01", // 䋏
+ 0x42d0: "\x05\x05\x04\x04\x04\x04\x01\x05\x05\x03\x04", // 䋐
+ 0x42d1: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x03\x04", // 䋑
+ 0x42d2: "\x05\x05\x04\x04\x04\x04\x05\x04\x05\x02\x03", // 䋒
+ 0x42d3: "\x05\x05\x04\x04\x04\x04\x03\x05\x05\x01\x01", // 䋓
+ 0x42d4: "\x05\x05\x04\x04\x04\x04\x01\x03\x02\x04\x01", // 䋔
+ 0x42d5: "\x03\x02\x03\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 䋕
+ 0x42d6: "\x05\x05\x04\x04\x04\x04\x05\x01\x01\x01\x01\x02", // 䋖
+ 0x42d7: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x01\x02\x05", // 䋗
+ 0x42d8: "\x05\x05\x04\x04\x04\x04\x01\x01\x01\x02\x03\x04", // 䋘
+ 0x42d9: "\x05\x05\x04\x04\x04\x04\x01\x02\x02\x01\x01\x01", // 䋙
+ 0x42da: "\x05\x05\x04\x04\x04\x04\x05\x04\x01\x05\x04\x01", // 䋚
+ 0x42db: "\x05\x05\x04\x04\x04\x04\x04\x03\x01\x02\x03\x04", // 䋛
+ 0x42dc: "\x04\x05\x01\x03\x05\x04\x05\x05\x04\x02\x03\x04", // 䋜
+ 0x42dd: "\x05\x05\x04\x04\x04\x04\x04\x04\x03\x05\x03\x01", // 䋝
+ 0x42de: "\x05\x05\x04\x04\x04\x04\x02\x05\x03\x04\x03\x04", // 䋞
+ 0x42df: "\x05\x05\x04\x04\x04\x04\x05\x01\x05\x04\x05\x04\x04", // 䋟
+ 0x42e0: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x01\x01\x02\x04", // 䋠
+ 0x42e1: "\x05\x05\x04\x04\x04\x04\x03\x04\x01\x01\x02\x03\x04", // 䋡
+ 0x42e2: "\x01\x02\x01\x03\x03\x01\x02\x05\x05\x04\x02\x03\x04", // 䋢
+ 0x42e3: "\x03\x01\x05\x05\x04\x01\x04\x05\x05\x04\x02\x03\x04", // 䋣
+ 0x42e4: "\x01\x01\x02\x01\x05\x05\x04\x02\x03\x04\x03\x05\x04", // 䋤
+ 0x42e5: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01\x02\x01\x01", // 䋥
+ 0x42e6: "\x05\x05\x04\x04\x04\x04\x03\x01\x05\x05\x04\x01\x04", // 䋦
+ 0x42e7: "\x05\x05\x04\x04\x04\x04\x05\x01\x03\x01\x02\x02\x05\x01", // 䋧
+ 0x42e8: "\x05\x05\x04\x04\x04\x04\x04\x01\x04\x03\x01\x02\x05\x01", // 䋨
+ 0x42e9: "\x05\x05\x04\x04\x04\x04\x03\x02\x01\x05\x01\x01\x03\x05", // 䋩
+ 0x42ea: "\x05\x05\x04\x04\x04\x04\x05\x02\x01\x02\x05\x01\x02", // 䋪
+ 0x42eb: "\x05\x05\x04\x04\x04\x04\x03\x05\x05\x01\x01\x02", // 䋫
+ 0x42ec: "\x05\x05\x04\x04\x04\x04\x01\x01\x03\x04\x02\x04\x04\x04", // 䋬
+ 0x42ed: "\x05\x05\x04\x04\x04\x04\x04\x01\x05\x04\x02\x05\x01\x01", // 䋭
+ 0x42ee: "\x05\x05\x04\x04\x04\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 䋮
+ 0x42ef: "\x04\x05\x01\x03\x01\x05\x03\x04\x05\x05\x04\x02\x03\x04", // 䋯
+ 0x42f0: "\x02\x05\x01\x01\x01\x01\x03\x04\x05\x05\x04\x02\x03\x04", // 䋰
+ 0x42f1: "\x05\x05\x04\x04\x04\x04\x01\x03\x04\x03\x04\x02\x03\x04", // 䋱
+ 0x42f2: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x01\x05", // 䋲
+ 0x42f3: "\x05\x05\x04\x04\x04\x04\x02\x01\x01\x03\x05\x02\x05\x01\x01", // 䋳
+ 0x42f4: "\x05\x05\x04\x04\x04\x04\x05\x04\x05\x02\x03\x01\x02\x03\x04", // 䋴
+ 0x42f5: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 䋵
+ 0x42f6: "\x05\x05\x04\x04\x04\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䋶
+ 0x42f7: "\x05\x04\x05\x02\x03\x03\x05\x04\x05\x05\x04\x02\x03\x04", // 䋷
+ 0x42f8: "\x05\x05\x04\x04\x04\x04\x03\x03\x01\x02\x02\x05\x01\x01\x01", // 䋸
+ 0x42f9: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 䋹
+ 0x42fa: "\x05\x05\x04\x04\x04\x04\x03\x01\x02\x03\x04\x04\x03\x03\x04", // 䋺
+ 0x42fb: "\x05\x05\x04\x04\x04\x04\x01\x02\x02\x05\x04\x03\x01\x01\x02", // 䋻
+ 0x42fc: "\x05\x05\x04\x04\x04\x04\x05\x03\x05\x04\x02\x05\x02\x02\x01", // 䋼
+ 0x42fd: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x01\x02\x01\x01\x02\x04", // 䋽
+ 0x42fe: "\x05\x05\x04\x04\x04\x04\x01\x03\x04\x03\x05\x04\x03\x05\x04", // 䋾
+ 0x42ff: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x01\x01\x05\x03\x04", // 䋿
+ 0x4300: "\x05\x05\x04\x04\x04\x04\x03\x01\x02\x03\x04\x04\x04\x01\x02", // 䌀
+ 0x4301: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x02\x02\x01\x05\x03\x01", // 䌁
+ 0x4302: "\x05\x05\x04\x04\x04\x04\x05\x01\x03\x01\x05\x04\x01\x02\x01", // 䌂
+ 0x4303: "\x05\x05\x04\x04\x04\x04\x02\x04\x03\x02\x05\x01\x01\x02\x02", // 䌃
+ 0x4304: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x03\x04\x01\x02\x05\x04", // 䌄
+ 0x4305: "\x05\x05\x04\x04\x04\x04\x04\x01\x03\x05\x01\x01\x02\x02\x05\x01", // 䌅
+ 0x4306: "\x05\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 䌆
+ 0x4307: "\x05\x05\x04\x04\x04\x04\x01\x02\x04\x05\x05\x05\x04\x02\x03\x04", // 䌇
+ 0x4308: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 䌈
+ 0x4309: "\x05\x05\x04\x04\x04\x04\x02\x05\x02\x02\x01\x01\x02\x01\x02\x01", // 䌉
+ 0x430a: "\x05\x05\x04\x04\x04\x04\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02", // 䌊
+ 0x430b: "\x05\x05\x04\x04\x04\x04\x01\x02\x02\x03\x04\x01\x02\x05\x01", // 䌋
+ 0x430c: "\x05\x05\x04\x04\x04\x04\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01", // 䌌
+ 0x430d: "\x05\x05\x04\x04\x04\x04\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01", // 䌍
+ 0x430e: "\x02\x05\x01\x02\x01\x03\x05\x04\x02\x05\x01\x05\x05\x04\x02\x03\x04", // 䌎
+ 0x430f: "\x05\x05\x04\x04\x04\x04\x04\x04\x05\x04\x05\x04\x03\x04\x02\x05\x02", // 䌏
+ 0x4310: "\x05\x05\x04\x04\x04\x04\x03\x04\x04\x03\x02\x05\x01\x01\x01\x03\x05", // 䌐
+ 0x4311: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x01\x02\x05\x05\x04\x01\x02\x01", // 䌑
+ 0x4312: "\x05\x05\x04\x04\x04\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 䌒
+ 0x4313: "\x03\x01\x05\x05\x04\x01\x04\x03\x05\x05\x04\x05\x05\x04\x02\x03\x04", // 䌓
+ 0x4314: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 䌔
+ 0x4315: "\x05\x05\x04\x04\x04\x04\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04", // 䌕
+ 0x4316: "\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02\x03\x04", // 䌖
+ 0x4317: "\x05\x05\x04\x04\x04\x04\x03\x01\x01\x02\x02\x02\x02\x01\x04\x04\x04\x04", // 䌗
+ 0x4318: "\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04\x05\x05\x04\x02\x03\x04", // 䌘
+ 0x4319: "\x05\x05\x04\x04\x04\x04\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 䌙
+ 0x431a: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x02\x02\x01\x04\x03\x01\x02\x03\x04", // 䌚
+ 0x431b: "\x03\x05\x04\x04\x04\x01\x01\x01\x02\x05\x01\x03\x05\x05\x04\x02\x03\x04", // 䌛
+ 0x431c: "\x05\x05\x04\x04\x04\x04\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x02\x03\x04", // 䌜
+ 0x431d: "\x05\x05\x04\x04\x04\x04\x01\x02\x03\x04\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 䌝
+ 0x431e: "\x05\x05\x04\x04\x04\x04\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 䌞
+ 0x431f: "\x05\x05\x04\x04\x04\x04\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 䌟
+ 0x4320: "\x01\x03\x01\x02\x05\x01\x05\x03\x04\x03\x05\x03\x04\x05\x05\x04\x02\x03\x04", // 䌠
+ 0x4321: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01", // 䌡
+ 0x4322: "\x05\x05\x04\x04\x04\x04\x01\x04\x05\x02\x04\x04\x04\x04\x03\x04\x04\x05\x04", // 䌢
+ 0x4323: "\x05\x05\x04\x04\x04\x04\x03\x01\x04\x03\x01\x04\x04\x04\x05\x02\x05\x01\x05\x01", // 䌣
+ 0x4324: "\x05\x05\x04\x04\x04\x04\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 䌤
+ 0x4325: "\x05\x05\x04\x04\x04\x04\x03\x04\x04\x03\x01\x02\x01\x05\x01\x01\x04\x05\x04\x04", // 䌥
+ 0x4326: "\x05\x05\x04\x04\x04\x04\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 䌦
+ 0x4327: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 䌧
+ 0x4328: "\x05\x05\x04\x04\x04\x04\x01\x02\x02\x03\x05\x04\x04\x05\x04\x01\x01\x02\x03\x04", // 䌨
+ 0x4329: "\x05\x05\x04\x04\x04\x04\x01\x02\x02\x02\x05\x02\x02\x01\x01\x03\x04\x05\x03\x04", // 䌩
+ 0x432a: "\x05\x05\x04\x04\x04\x04\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x03\x02\x01\x05\x01\x01", // 䌪
+ 0x432b: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x01\x01\x01\x03\x05", // 䌫
+ 0x432c: "\x05\x05\x04\x04\x04\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01\x01\x01", // 䌬
+ 0x432d: "\x05\x05\x04\x04\x04\x04\x01\x02\x02\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 䌭
+ 0x432e: "\x05\x05\x04\x04\x04\x04\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 䌮
+ 0x432f: "\x05\x05\x04\x04\x04\x04\x01\x02\x02\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 䌯
+ 0x4330: "\x05\x05\x04\x04\x04\x04\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01", // 䌰
+ 0x4331: "\x05\x05\x04\x04\x04\x04\x04\x01\x05\x02\x05\x01\x03\x05\x01\x01\x04\x01\x04\x03\x01\x03\x05\x04", // 䌱
+ 0x4332: "\x05\x05\x04\x04\x04\x04\x01\x02\x02\x03\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 䌲
+ 0x4333: "\x05\x05\x04\x04\x04\x04\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x01\x02\x01\x04", // 䌳
+ 0x4334: "\x05\x05\x04\x04\x04\x04\x04\x01\x05\x02\x05\x01\x03\x05\x01\x01\x04\x03\x01\x01\x01\x02\x03\x05\x04", // 䌴
+ 0x4335: "\x05\x05\x04\x04\x04\x04\x05\x01\x03\x02\x04\x01\x03\x04\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 䌵
+ 0x4336: "\x05\x05\x01\x01\x02\x03", // 䌶
+ 0x4337: "\x05\x05\x01\x02\x05\x01\x02\x01", // 䌷
+ 0x4338: "\x05\x05\x01\x01\x01\x05\x04", // 䌸
+ 0x4339: "\x05\x05\x01\x02\x05\x02\x05\x01", // 䌹
+ 0x433a: "\x05\x05\x01\x01\x02\x02\x01\x01\x01", // 䌺
+ 0x433b: "\x05\x05\x01\x05\x05\x04\x01\x05\x04\x01", // 䌻
+ 0x433c: "\x05\x05\x01\x04\x03\x02\x05\x01\x03\x05", // 䌼
+ 0x433d: "\x05\x05\x01\x03\x04\x04\x03\x01\x02\x03\x04", // 䌽
+ 0x433e: "\x05\x05\x01\x01\x02\x02\x05\x04\x03\x01\x01\x02", // 䌾
+ 0x433f: "\x05\x05\x01\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 䌿
+ 0x4340: "\x05\x05\x01\x02\x02\x03\x01\x04\x02\x05\x02\x02\x01", // 䍀
+ 0x4341: "\x05\x05\x01\x04\x03\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 䍁
+ 0x4342: "\x03\x01\x01\x02\x05\x02\x01\x01\x02", // 䍂
+ 0x4343: "\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02", // 䍃
+ 0x4344: "\x03\x01\x01\x02\x05\x02\x02\x01\x02\x05\x01", // 䍄
+ 0x4345: "\x03\x01\x01\x02\x05\x02\x03\x04\x04\x05\x04", // 䍅
+ 0x4346: "\x03\x01\x01\x02\x05\x02\x04\x04\x05\x01\x02", // 䍆
+ 0x4347: "\x03\x01\x01\x02\x05\x02\x03\x04\x05\x04", // 䍇
+ 0x4348: "\x03\x01\x01\x02\x05\x02\x01\x04\x03\x01\x02", // 䍈
+ 0x4349: "\x03\x01\x01\x02\x05\x02\x02\x05\x01\x03\x04", // 䍉
+ 0x434a: "\x03\x01\x01\x02\x05\x02\x04\x01\x03\x04\x03\x04", // 䍊
+ 0x434b: "\x03\x01\x01\x02\x05\x02\x03\x01\x02\x01\x02\x02\x01\x01", // 䍋
+ 0x434c: "\x03\x01\x01\x02\x05\x02\x04\x01\x04\x03\x01\x02\x05\x01", // 䍌
+ 0x434d: "\x01\x02\x01\x04\x05\x01\x03\x01\x01\x02\x05\x02\x03\x05\x05\x04", // 䍍
+ 0x434e: "\x03\x01\x01\x02\x05\x02\x01\x02\x02\x04\x01\x03\x05\x02\x02\x01\x01\x05\x04\x04\x04\x04", // 䍎
+ 0x434f: "\x02\x05\x02\x02\x01", // 䍏
+ 0x4350: "\x02\x05\x02\x02\x01\x01\x01\x02", // 䍐
+ 0x4351: "\x02\x05\x03\x04\x03\x04\x01\x01\x02", // 䍑
+ 0x4352: "\x02\x05\x02\x02\x01\x01\x02\x03\x04", // 䍒
+ 0x4353: "\x02\x05\x02\x02\x01\x01\x05\x02\x03", // 䍓
+ 0x4354: "\x02\x05\x02\x02\x01\x01\x03\x05\x04", // 䍔
+ 0x4355: "\x02\x05\x02\x02\x01\x03\x05\x01\x05\x04", // 䍕
+ 0x4356: "\x02\x05\x02\x02\x01\x03\x05\x05\x01\x05", // 䍖
+ 0x4357: "\x02\x05\x02\x02\x01\x04\x01\x05\x05\x04", // 䍗
+ 0x4358: "\x02\x05\x02\x02\x01\x04\x03\x01\x02\x03\x04", // 䍘
+ 0x4359: "\x02\x05\x02\x02\x01\x03\x01\x05\x05\x04\x01\x04", // 䍙
+ 0x435a: "\x02\x05\x02\x02\x01\x04\x05\x01\x01\x05\x03\x04", // 䍚
+ 0x435b: "\x02\x05\x02\x02\x01\x02\x05\x01\x02\x02\x05\x01\x01", // 䍛
+ 0x435c: "\x02\x05\x02\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 䍜
+ 0x435d: "\x02\x05\x02\x02\x01\x02\x05\x03\x04\x02\x05\x01\x01", // 䍝
+ 0x435e: "\x02\x05\x03\x04\x03\x04\x01\x02\x05\x01\x01\x05\x03\x04", // 䍞
+ 0x435f: "\x02\x05\x02\x02\x01\x03\x04\x05\x02\x03\x04\x03\x05\x04", // 䍟
+ 0x4360: "\x02\x05\x02\x02\x01\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 䍠
+ 0x4361: "\x02\x05\x02\x02\x01\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 䍡
+ 0x4362: "\x02\x05\x02\x02\x01\x03\x01\x01\x02\x02\x02\x02\x01\x04\x04\x04\x04", // 䍢
+ 0x4363: "\x02\x05\x02\x02\x01\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x01", // 䍣
+ 0x4364: "\x02\x05\x02\x02\x01\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01", // 䍤
+ 0x4365: "\x02\x05\x02\x02\x01\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 䍥
+ 0x4366: "\x02\x05\x02\x02\x01\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 䍦
+ 0x4367: "\x03\x01\x01\x02\x04\x03\x01\x01\x01\x02", // 䍧
+ 0x4368: "\x04\x03\x01\x01\x01\x03\x01\x02\x05\x02", // 䍨
+ 0x4369: "\x04\x03\x01\x01\x01\x03\x03\x01\x03\x04", // 䍩
+ 0x436a: "\x04\x03\x01\x01\x01\x03\x01\x01\x02\x03\x04", // 䍪
+ 0x436b: "\x04\x03\x01\x01\x01\x03\x04\x04\x05\x03\x05", // 䍫
+ 0x436c: "\x04\x03\x01\x01\x01\x03\x01\x04\x03\x01\x02", // 䍬
+ 0x436d: "\x04\x03\x01\x01\x01\x03\x05\x05\x04\x01\x04", // 䍭
+ 0x436e: "\x04\x03\x01\x01\x01\x03\x03\x04\x01\x05\x03\x04", // 䍮
+ 0x436f: "\x04\x03\x01\x01\x01\x03\x03\x05\x01\x03\x05\x05", // 䍯
+ 0x4370: "\x04\x03\x01\x01\x01\x03\x02\x05\x01\x03\x04\x01", // 䍰
+ 0x4371: "\x04\x03\x01\x01\x01\x03\x03\x04\x01\x01\x02\x03\x04", // 䍱
+ 0x4372: "\x04\x03\x01\x01\x01\x03\x03\x02\x01\x05\x01\x01\x03\x05", // 䍲
+ 0x4373: "\x04\x03\x01\x01\x01\x03\x05\x04\x05\x04\x05\x04\x05\x04", // 䍳
+ 0x4374: "\x04\x03\x01\x01\x01\x03\x03\x01\x02\x03\x04\x05\x03\x01", // 䍴
+ 0x4375: "\x04\x03\x01\x01\x01\x03\x03\x05\x05\x01\x01\x02", // 䍵
+ 0x4376: "\x04\x03\x01\x01\x01\x03\x01\x02\x05\x01\x01\x02\x03\x04", // 䍶
+ 0x4377: "\x04\x03\x01\x01\x01\x03\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 䍷
+ 0x4378: "\x04\x03\x01\x01\x01\x03\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 䍸
+ 0x4379: "\x04\x03\x01\x01\x01\x03\x03\x02\x05\x01\x01\x01\x01\x03\x04\x04", // 䍹
+ 0x437a: "\x04\x03\x01\x01\x01\x03\x02\x05\x01\x02\x05\x01\x02\x04\x05\x04\x04", // 䍺
+ 0x437b: "\x04\x03\x01\x01\x01\x03\x05\x01\x05\x05\x01\x05\x01\x02\x02\x01\x03\x04", // 䍻
+ 0x437c: "\x04\x03\x01\x01\x01\x03\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x01", // 䍼
+ 0x437d: "\x04\x03\x01\x01\x01\x03\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 䍽
+ 0x437e: "\x01\x01\x03\x02\x05\x04\x01\x05\x04\x01", // 䍾
+ 0x437f: "\x05\x04\x01\x05\x04\x01\x01\x01\x02\x01", // 䍿
+ 0x4380: "\x05\x04\x01\x05\x04\x01\x01\x05\x05\x03\x04", // 䎀
+ 0x4381: "\x01\x02\x02\x05\x01\x05\x04\x01\x05\x04\x01", // 䎁
+ 0x4382: "\x05\x04\x01\x05\x04\x01\x03\x05\x05\x01\x05", // 䎂
+ 0x4383: "\x02\x05\x02\x01\x01\x05\x04\x01\x05\x04\x01", // 䎃
+ 0x4384: "\x05\x03\x02\x05\x01\x05\x04\x01\x05\x04\x01", // 䎄
+ 0x4385: "\x03\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 䎅
+ 0x4386: "\x05\x04\x01\x05\x04\x01\x03\x04\x04\x05\x04", // 䎆
+ 0x4387: "\x03\x03\x05\x04\x01\x04\x05\x04\x01\x05\x04\x01", // 䎇
+ 0x4388: "\x05\x04\x01\x05\x04\x01\x02\x05\x01\x01\x05\x03", // 䎈
+ 0x4389: "\x05\x04\x01\x05\x04\x01\x01\x03\x04\x05\x03\x04", // 䎉
+ 0x438a: "\x03\x05\x04\x02\x05\x01\x05\x04\x01\x05\x04\x01", // 䎊
+ 0x438b: "\x03\x01\x02\x01\x02\x05\x01\x05\x04\x01\x05\x04\x01", // 䎋
+ 0x438c: "\x05\x04\x01\x05\x04\x01\x02\x05\x01\x02\x01\x03\x04", // 䎌
+ 0x438d: "\x05\x04\x01\x05\x04\x01\x01\x02\x05\x01\x01\x02\x04", // 䎍
+ 0x438e: "\x05\x04\x01\x05\x04\x01\x01\x02\x02\x01\x01\x01\x05", // 䎎
+ 0x438f: "\x03\x04\x04\x05\x02\x05\x01\x05\x04\x01\x05\x04\x01", // 䎏
+ 0x4390: "\x01\x02\x02\x05\x01\x01\x01\x02\x05\x04\x01\x05\x04\x01", // 䎐
+ 0x4391: "\x05\x04\x01\x05\x04\x01\x05\x01\x01\x02\x04\x01\x03\x04", // 䎑
+ 0x4392: "\x05\x04\x01\x05\x04\x01\x01\x05\x03\x04\x01\x05\x03\x04", // 䎒
+ 0x4393: "\x05\x04\x01\x05\x04\x01\x02\x05\x03\x04\x02\x05\x01\x01", // 䎓
+ 0x4394: "\x05\x04\x01\x05\x04\x01\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 䎔
+ 0x4395: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x05\x04\x01\x05\x04\x01", // 䎕
+ 0x4396: "\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 䎖
+ 0x4397: "\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01\x05\x04\x01\x05\x04\x01", // 䎗
+ 0x4398: "\x05\x01\x01\x02\x03\x02\x01\x01\x05\x05\x02\x01\x02\x05\x04\x01\x05\x04\x01", // 䎘
+ 0x4399: "\x04\x04\x05\x01\x02\x03\x03\x02\x05\x01\x01\x01\x03\x04\x05\x04\x01\x05\x04\x01", // 䎙
+ 0x439a: "\x05\x04\x01\x05\x04\x01\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 䎚
+ 0x439b: "\x01\x02\x01\x03\x03\x05\x02\x05\x01", // 䎛
+ 0x439c: "\x01\x02\x01\x03\x01\x05\x01\x02\x01\x03\x03\x05", // 䎜
+ 0x439d: "\x01\x02\x01\x03\x03\x05\x05\x04\x01\x05\x04\x01", // 䎝
+ 0x439e: "\x01\x02\x01\x03\x02\x05\x01\x01\x05", // 䎞
+ 0x439f: "\x05\x03\x01\x01\x03\x02\x05\x02\x02", // 䎟
+ 0x43a0: "\x03\x05\x04\x01\x03\x02\x05\x02\x02", // 䎠
+ 0x43a1: "\x01\x03\x02\x05\x02\x02\x04\x03\x03\x04", // 䎡
+ 0x43a2: "\x01\x01\x01\x02\x03\x04\x03\x01\x05", // 䎢
+ 0x43a3: "\x01\x01\x01\x02\x03\x04\x05\x04\x03\x04", // 䎣
+ 0x43a4: "\x01\x01\x01\x02\x03\x04\x05\x01\x03\x05\x02\x05\x01", // 䎤
+ 0x43a5: "\x01\x01\x01\x02\x03\x04\x03\x04\x03\x04\x02\x05\x01", // 䎥
+ 0x43a6: "\x01\x01\x01\x02\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04", // 䎦
+ 0x43a7: "\x01\x01\x01\x02\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01", // 䎧
+ 0x43a8: "\x01\x01\x01\x02\x03\x04\x01\x03\x04\x02\x05\x01\x01\x05", // 䎨
+ 0x43a9: "\x01\x01\x01\x02\x03\x04\x05\x05\x05\x02\x05\x01\x02\x01", // 䎩
+ 0x43aa: "\x01\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01\x01\x02\x04", // 䎪
+ 0x43ab: "\x01\x01\x01\x02\x03\x04\x03\x04\x05\x02\x03\x04\x03\x05\x04", // 䎫
+ 0x43ac: "\x01\x01\x01\x02\x03\x04\x02\x05\x02\x02\x01\x01\x02\x01\x05\x04", // 䎬
+ 0x43ad: "\x01\x01\x01\x02\x03\x04\x03\x01\x02\x01\x02\x05\x01\x04\x05\x04", // 䎭
+ 0x43ae: "\x01\x01\x01\x02\x03\x04\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01", // 䎮
+ 0x43af: "\x01\x01\x01\x02\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 䎯
+ 0x43b0: "\x01\x01\x01\x02\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01\x03\x03\x01\x02", // 䎰
+ 0x43b1: "\x01\x01\x01\x02\x03\x04\x02\x05\x02\x02\x01\x05\x04\x02\x05\x01\x01\x03\x05\x03\x05", // 䎱
+ 0x43b2: "\x01\x02\x02\x01\x01\x01\x05", // 䎲
+ 0x43b3: "\x01\x02\x02\x01\x01\x01\x03\x05\x01\x01", // 䎳
+ 0x43b4: "\x01\x02\x02\x01\x01\x01\x01\x01\x03\x02", // 䎴
+ 0x43b5: "\x01\x02\x02\x01\x01\x01\x04\x05\x04\x04\x03", // 䎵
+ 0x43b6: "\x01\x02\x02\x01\x01\x01\x02\x05\x01\x01\x02", // 䎶
+ 0x43b7: "\x01\x02\x02\x01\x01\x01\x03\x01\x01\x02\x03\x04", // 䎷
+ 0x43b8: "\x01\x02\x02\x01\x01\x01\x01\x02\x05\x01\x02\x05\x01", // 䎸
+ 0x43b9: "\x03\x04\x03\x01\x02\x03\x04\x01\x02\x02\x01\x01\x01", // 䎹
+ 0x43ba: "\x01\x02\x02\x01\x01\x01\x03\x01\x01\x02\x05\x02\x02\x02", // 䎺
+ 0x43bb: "\x01\x02\x02\x01\x01\x01\x03\x05\x01\x02\x01\x02\x05\x01", // 䎻
+ 0x43bc: "\x01\x02\x02\x01\x01\x01\x05\x01\x01\x02\x04\x01\x03\x04", // 䎼
+ 0x43bd: "\x01\x02\x02\x01\x01\x01\x03\x05\x01\x05\x02\x05\x01\x01", // 䎽
+ 0x43be: "\x01\x02\x02\x01\x01\x01\x03\x04\x01\x02\x05\x01\x02\x02", // 䎾
+ 0x43bf: "\x01\x02\x02\x01\x01\x01\x03\x01\x02\x03\x04\x04\x03\x03\x04", // 䎿
+ 0x43c0: "\x01\x02\x02\x01\x01\x01\x01\x02\x05\x01\x02\x03\x04\x02\x02", // 䏀
+ 0x43c1: "\x01\x02\x02\x01\x01\x01\x04\x04\x05\x04\x01\x04\x03\x01\x01\x02", // 䏁
+ 0x43c2: "\x01\x02\x02\x01\x01\x01\x03\x02\x01\x05\x01\x01\x02\x05\x04", // 䏂
+ 0x43c3: "\x01\x02\x02\x01\x01\x01\x04\x05\x02\x05\x01\x01\x04\x01\x03\x04", // 䏃
+ 0x43c4: "\x01\x02\x02\x01\x01\x01\x04\x04\x05\x03\x04\x01\x05\x04\x01\x02\x01", // 䏄
+ 0x43c5: "\x01\x02\x02\x01\x01\x01\x03\x05\x04\x04\x05\x04\x01\x01\x02\x03\x04", // 䏅
+ 0x43c6: "\x01\x02\x02\x01\x01\x01\x01\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01", // 䏆
+ 0x43c7: "\x01\x02\x02\x01\x01\x01\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 䏇
+ 0x43c8: "\x01\x02\x02\x01\x01\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x02\x03\x04", // 䏈
+ 0x43c9: "\x01\x02\x02\x01\x01\x01\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x04\x04\x04\x04", // 䏉
+ 0x43ca: "\x01\x02\x02\x01\x01\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01\x01\x01", // 䏊
+ 0x43cb: "\x05\x01\x01\x02\x03\x04\x04\x05\x04\x04\x05\x01\x05", // 䏋
+ 0x43cc: "\x03\x04\x02\x05\x01\x01", // 䏌
+ 0x43cd: "\x05\x04\x02\x05\x01\x01", // 䏍
+ 0x43ce: "\x03\x05\x01\x01\x03\x05\x04", // 䏎
+ 0x43cf: "\x03\x05\x01\x01\x01\x01\x02", // 䏏
+ 0x43d0: "\x03\x05\x01\x01\x05\x01\x03\x04", // 䏐
+ 0x43d1: "\x03\x05\x04\x04\x02\x05\x03\x04\x03\x04", // 䏑
+ 0x43d2: "\x03\x05\x01\x01\x03\x02\x01\x05", // 䏒
+ 0x43d3: "\x03\x05\x04\x01\x01\x01\x03\x05", // 䏓
+ 0x43d4: "\x03\x05\x01\x01\x05\x02\x01\x01", // 䏔
+ 0x43d5: "\x03\x05\x01\x01\x03\x01\x02\x01", // 䏕
+ 0x43d6: "\x03\x05\x01\x01\x05\x01\x05\x02", // 䏖
+ 0x43d7: "\x03\x05\x01\x01\x03\x01\x01\x05", // 䏗
+ 0x43d8: "\x03\x05\x01\x01\x01\x03\x05\x05", // 䏘
+ 0x43d9: "\x03\x05\x01\x01\x04\x05\x03\x05", // 䏙
+ 0x43da: "\x03\x05\x01\x01\x02\x03\x04\x03", // 䏚
+ 0x43db: "\x03\x05\x01\x01\x03\x05\x04\x01", // 䏛
+ 0x43dc: "\x03\x05\x01\x01\x03\x05\x04", // 䏜
+ 0x43dd: "\x03\x05\x01\x01\x01\x01\x05\x04", // 䏝
+ 0x43de: "\x03\x05\x01\x01\x01\x01\x02\x03\x04", // 䏞
+ 0x43df: "\x03\x05\x01\x01\x04\x05\x04\x03\x04", // 䏟
+ 0x43e0: "\x03\x05\x01\x01\x04\x01\x04\x03\x01", // 䏠
+ 0x43e1: "\x03\x05\x01\x01\x01\x01\x02\x03\x04", // 䏡
+ 0x43e2: "\x03\x05\x01\x01\x05\x03\x02\x05\x04", // 䏢
+ 0x43e3: "\x03\x05\x01\x01\x02\x05\x01\x01\x01", // 䏣
+ 0x43e4: "\x03\x05\x01\x01\x05\x01\x02\x05\x01", // 䏤
+ 0x43e5: "\x03\x05\x01\x01\x02\x05\x02\x01\x01", // 䏥
+ 0x43e6: "\x03\x05\x01\x01\x03\x01\x02\x02\x05\x01", // 䏦
+ 0x43e7: "\x03\x05\x01\x01\x03\x05\x04\x03\x05\x04", // 䏧
+ 0x43e8: "\x03\x05\x01\x01\x03\x02\x05\x01\x05\x01", // 䏨
+ 0x43e9: "\x03\x05\x01\x01\x03\x04\x01\x02\x05\x01", // 䏩
+ 0x43ea: "\x03\x05\x01\x01\x01\x02\x02\x01\x01\x01", // 䏪
+ 0x43eb: "\x03\x05\x01\x01\x03\x02\x01\x02\x03\x04", // 䏫
+ 0x43ec: "\x03\x05\x01\x01\x05\x04\x03\x01\x01\x02", // 䏬
+ 0x43ed: "\x03\x05\x01\x01\x03\x01\x01\x02\x03\x04", // 䏭
+ 0x43ee: "\x03\x05\x01\x01\x05\x03\x04\x01\x03\x04", // 䏮
+ 0x43ef: "\x03\x05\x01\x01\x01\x02\x01\x04\x05\x04\x04", // 䏯
+ 0x43f0: "\x03\x05\x01\x01\x05\x03\x04\x04\x05\x04\x04", // 䏰
+ 0x43f1: "\x03\x05\x01\x01\x05\x01\x03\x05\x02\x05\x01", // 䏱
+ 0x43f2: "\x03\x05\x01\x01\x04\x03\x05\x01\x05\x02\x03", // 䏲
+ 0x43f3: "\x03\x05\x01\x01\x01\x02\x01\x03\x03\x01\x02", // 䏳
+ 0x43f4: "\x03\x05\x01\x01\x02\x04\x03\x02\x05\x01\x01", // 䏴
+ 0x43f5: "\x03\x05\x01\x01\x01\x03\x05\x03\x03\x03\x04", // 䏵
+ 0x43f6: "\x03\x05\x01\x01\x01\x05\x03\x05\x01\x02\x01", // 䏶
+ 0x43f7: "\x03\x05\x01\x01\x02\x05\x01\x01\x01\x01\x02", // 䏷
+ 0x43f8: "\x03\x05\x01\x01\x01\x02\x05\x01\x02\x05\x01", // 䏸
+ 0x43f9: "\x03\x05\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 䏹
+ 0x43fa: "\x03\x05\x01\x01\x03\x05\x04\x01\x01\x01\x02", // 䏺
+ 0x43fb: "\x05\x04\x02\x05\x01\x01\x01\x02\x01\x05\x04", // 䏻
+ 0x43fc: "\x03\x05\x01\x01\x01\x05\x03\x04\x01\x05\x03\x04", // 䏼
+ 0x43fd: "\x03\x05\x01\x01\x04\x01\x04\x03\x01\x02\x05\x01", // 䏽
+ 0x43fe: "\x03\x05\x01\x01\x01\x01\x01\x03\x04\x01\x01\x02", // 䏾
+ 0x43ff: "\x03\x05\x01\x03\x03\x01\x03\x04\x02\x05\x01\x01", // 䏿
+ 0x4400: "\x03\x05\x01\x01\x01\x03\x04\x01\x02\x05\x01\x02", // 䐀
+ 0x4401: "\x03\x05\x01\x01\x01\x03\x05\x03\x03\x04\x03\x04", // 䐁
+ 0x4402: "\x03\x05\x01\x01\x05\x01\x01\x02\x04\x01\x03\x04", // 䐂
+ 0x4403: "\x03\x05\x01\x01\x02\x05\x03\x01\x02\x03\x04\x01", // 䐃
+ 0x4404: "\x03\x05\x01\x01\x03\x05\x03\x02\x01\x05\x01\x01", // 䐄
+ 0x4405: "\x03\x05\x01\x01\x05\x01\x03\x03\x01\x01\x03\x04", // 䐅
+ 0x4406: "\x03\x05\x01\x01\x03\x04\x04\x03\x01\x02\x03\x04", // 䐆
+ 0x4407: "\x03\x05\x01\x01\x03\x05\x03\x03\x02\x05\x01\x01", // 䐇
+ 0x4408: "\x03\x05\x01\x01\x01\x02\x02\x05\x01\x01\x01\x01", // 䐈
+ 0x4409: "\x03\x05\x01\x01\x05\x05\x05\x02\x05\x01\x02\x01", // 䐉
+ 0x440a: "\x03\x05\x01\x01\x02\x05\x01\x01\x01\x05\x03\x05", // 䐊
+ 0x440b: "\x03\x05\x01\x01\x03\x04\x05\x04\x04\x05\x04\x04", // 䐋
+ 0x440c: "\x02\x05\x01\x02\x02\x01\x03\x04\x02\x05\x01\x01", // 䐌
+ 0x440d: "\x03\x05\x01\x01\x01\x02\x01\x02\x05\x01\x04\x03\x01", // 䐍
+ 0x440e: "\x03\x05\x01\x01\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 䐎
+ 0x440f: "\x03\x05\x01\x01\x01\x01\x01\x03\x04\x02\x05\x01\x01", // 䐏
+ 0x4410: "\x03\x05\x01\x01\x03\x01\x02\x03\x04\x04\x03\x03\x04", // 䐐
+ 0x4411: "\x03\x05\x01\x01\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 䐑
+ 0x4412: "\x03\x05\x01\x01\x01\x03\x04\x03\x05\x04\x03\x05\x04", // 䐒
+ 0x4413: "\x03\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䐓
+ 0x4414: "\x03\x05\x01\x01\x04\x05\x01\x03\x02\x05\x01\x02\x02", // 䐔
+ 0x4415: "\x03\x05\x01\x01\x02\x05\x01\x01\x02\x02\x01\x01\x01", // 䐕
+ 0x4416: "\x03\x05\x01\x01\x05\x01\x03\x04\x03\x01\x02\x03\x04", // 䐖
+ 0x4417: "\x03\x05\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 䐗
+ 0x4418: "\x03\x05\x01\x01\x03\x04\x04\x03\x01\x01\x03\x05\x04", // 䐘
+ 0x4419: "\x03\x05\x01\x01\x01\x02\x02\x01\x02\x05\x01\x01\x02", // 䐙
+ 0x441a: "\x03\x05\x01\x01\x05\x01\x01\x05\x04\x05\x02", // 䐚
+ 0x441b: "\x03\x05\x01\x01\x01\x03\x04\x01\x02\x02\x01\x01\x01", // 䐛
+ 0x441c: "\x03\x05\x01\x01\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 䐜
+ 0x441d: "\x03\x05\x01\x01\x02\x04\x03\x02\x05\x01\x01\x01\x03\x04", // 䐝
+ 0x441e: "\x03\x05\x01\x01\x05\x01\x05\x04\x01\x05\x01\x05\x04\x01", // 䐞
+ 0x441f: "\x03\x05\x01\x01\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01", // 䐟
+ 0x4420: "\x03\x05\x01\x01\x01\x02\x02\x04\x01\x05\x03\x02\x05", // 䐠
+ 0x4421: "\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x02\x05\x03\x04\x03\x04", // 䐡
+ 0x4422: "\x03\x05\x01\x01\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03", // 䐢
+ 0x4423: "\x03\x05\x01\x01\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 䐣
+ 0x4424: "\x03\x05\x01\x01\x04\x03\x01\x01\x01\x03\x01\x02\x01", // 䐤
+ 0x4425: "\x03\x05\x01\x01\x03\x04\x05\x04\x05\x04\x01\x05\x04\x01", // 䐥
+ 0x4426: "\x03\x05\x01\x01\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 䐦
+ 0x4427: "\x03\x05\x01\x01\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 䐧
+ 0x4428: "\x01\x02\x01\x04\x05\x01\x02\x05\x01\x01\x03\x05\x05\x04", // 䐨
+ 0x4429: "\x03\x05\x01\x01\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 䐩
+ 0x442a: "\x03\x05\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03", // 䐪
+ 0x442b: "\x03\x05\x01\x01\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04", // 䐫
+ 0x442c: "\x03\x05\x01\x01\x01\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01", // 䐬
+ 0x442d: "\x03\x05\x01\x01\x01\x02\x02\x01\x03\x05\x04\x05\x02\x05\x02", // 䐭
+ 0x442e: "\x03\x05\x01\x01\x04\x01\x04\x03\x01\x03\x03\x01\x01\x02\x01", // 䐮
+ 0x442f: "\x03\x05\x01\x01\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 䐯
+ 0x4430: "\x03\x05\x01\x01\x03\x02\x02\x03\x05\x04\x02\x05\x01\x01", // 䐰
+ 0x4431: "\x03\x05\x01\x01\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01", // 䐱
+ 0x4432: "\x03\x05\x01\x01\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01", // 䐲
+ 0x4433: "\x03\x05\x01\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 䐳
+ 0x4434: "\x05\x01\x01\x05\x04\x01\x05\x03\x05\x02\x05\x01\x01", // 䐴
+ 0x4435: "\x03\x05\x01\x01\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 䐵
+ 0x4436: "\x03\x05\x01\x01\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x01", // 䐶
+ 0x4437: "\x03\x05\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 䐷
+ 0x4438: "\x03\x05\x01\x01\x05\x01\x01\x01\x02\x01\x02\x05\x01\x02\x01\x01", // 䐸
+ 0x4439: "\x03\x05\x01\x01\x05\x01\x01\x02\x03\x02\x01\x01\x05\x05\x02\x01\x02", // 䐹
+ 0x443a: "\x03\x05\x01\x01\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 䐺
+ 0x443b: "\x03\x05\x01\x01\x01\x02\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 䐻
+ 0x443c: "\x03\x05\x01\x01\x01\x01\x01\x02\x05\x03\x05\x05\x04\x02\x03\x04", // 䐼
+ 0x443d: "\x03\x05\x01\x01\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04", // 䐽
+ 0x443e: "\x03\x05\x01\x01\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 䐾
+ 0x443f: "\x03\x05\x01\x01\x03\x02\x05\x04\x03\x01\x02\x03\x04\x01\x03\x04", // 䐿
+ 0x4440: "\x03\x05\x01\x01\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 䑀
+ 0x4441: "\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x02\x05\x01\x01", // 䑁
+ 0x4442: "\x03\x05\x01\x01\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 䑂
+ 0x4443: "\x03\x05\x04\x01\x01\x02\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 䑃
+ 0x4444: "\x03\x05\x01\x01\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02", // 䑄
+ 0x4445: "\x03\x05\x01\x01\x01\x02\x02\x02\x05\x02\x02\x01\x04\x05\x03\x05\x04", // 䑅
+ 0x4446: "\x03\x05\x01\x01\x04\x03\x01\x01\x01\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 䑆
+ 0x4447: "\x03\x05\x01\x01\x03\x03\x01\x02\x03\x03\x01\x02\x02\x05\x01\x01\x01\x03\x04", // 䑇
+ 0x4448: "\x03\x05\x01\x01\x03\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x03\x04", // 䑈
+ 0x4449: "\x03\x05\x01\x01\x04\x01\x05\x02\x05\x01\x03\x05\x01\x01\x05\x03\x01\x03\x05\x04", // 䑉
+ 0x444a: "\x03\x05\x01\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04", // 䑊
+ 0x444b: "\x03\x05\x01\x01\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 䑋
+ 0x444c: "\x03\x05\x01\x01\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 䑌
+ 0x444d: "\x03\x05\x01\x01\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x05\x03\x01", // 䑍
+ 0x444e: "\x03\x05\x01\x01\x03\x04\x03\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 䑎
+ 0x444f: "\x03\x05\x01\x01\x01\x02\x02\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 䑏
+ 0x4450: "\x01\x02\x05\x01\x02\x05\x03\x01\x02\x03\x04", // 䑐
+ 0x4451: "\x01\x02\x05\x01\x02\x05\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 䑑
+ 0x4452: "\x01\x05\x04\x01\x02\x01\x05\x03\x04", // 䑒
+ 0x4453: "\x01\x02\x02\x01\x01\x04\x05\x01\x05\x04\x01\x02\x01", // 䑓
+ 0x4454: "\x03\x02\x01\x05\x01\x01\x01\x02\x05\x02", // 䑔
+ 0x4455: "\x03\x02\x01\x05\x01\x01\x03\x05\x01\x01\x02", // 䑕
+ 0x4456: "\x03\x02\x01\x05\x01\x01\x01\x05\x01\x01\x02\x01\x03\x04", // 䑖
+ 0x4457: "\x03\x02\x01\x05\x01\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 䑗
+ 0x4458: "\x03\x02\x01\x05\x01\x01\x04\x03\x01\x01\x01\x03\x01\x02\x01", // 䑘
+ 0x4459: "\x03\x01\x02\x02\x05\x01\x02\x05\x01\x01", // 䑙
+ 0x445a: "\x03\x01\x02\x02\x05\x01\x03\x05\x01\x01", // 䑚
+ 0x445b: "\x03\x01\x02\x02\x05\x01\x03\x05\x01\x05\x04", // 䑛
+ 0x445c: "\x03\x01\x02\x02\x05\x01\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 䑜
+ 0x445d: "\x02\x05\x01\x02\x05\x01\x04\x05\x03\x05\x04\x01\x05\x02", // 䑝
+ 0x445e: "\x01\x04\x03\x03\x04\x04\x03\x03\x04\x05\x03\x05\x04\x01\x05\x02", // 䑞
+ 0x445f: "\x03\x04\x04\x03\x04\x05\x03\x05\x04\x01\x05\x02\x03\x02\x05\x01\x01\x01\x01\x02\x01", // 䑟
+ 0x4460: "\x03\x03\x05\x04\x01\x04\x05\x02", // 䑠
+ 0x4461: "\x03\x03\x05\x04\x01\x04\x05\x04\x04", // 䑡
+ 0x4462: "\x03\x03\x05\x04\x01\x04\x01\x03\x05", // 䑢
+ 0x4463: "\x03\x03\x05\x04\x01\x04\x03\x03\x03", // 䑣
+ 0x4464: "\x03\x03\x05\x04\x01\x04\x03\x04\x04\x05", // 䑤
+ 0x4465: "\x03\x03\x05\x04\x01\x04\x03\x05\x04", // 䑥
+ 0x4466: "\x03\x03\x05\x04\x01\x04\x03\x05\x02\x05\x01", // 䑦
+ 0x4467: "\x03\x03\x05\x04\x01\x04\x03\x02\x01\x02\x04", // 䑧
+ 0x4468: "\x03\x03\x05\x04\x01\x04\x03\x01\x05\x02\x05", // 䑨
+ 0x4469: "\x03\x03\x05\x04\x01\x04\x01\x02\x02\x05\x01", // 䑩
+ 0x446a: "\x03\x03\x05\x04\x01\x04\x03\x04\x01\x02\x05\x01", // 䑪
+ 0x446b: "\x03\x03\x05\x04\x01\x04\x04\x03\x01\x01\x03\x02", // 䑫
+ 0x446c: "\x03\x03\x05\x04\x01\x04\x03\x04\x01\x05\x03\x04", // 䑬
+ 0x446d: "\x03\x03\x05\x04\x01\x04\x04\x04\x01\x01\x02\x01", // 䑭
+ 0x446e: "\x03\x03\x05\x04\x01\x04\x03\x05\x01\x02\x03\x04", // 䑮
+ 0x446f: "\x03\x03\x05\x04\x01\x04\x04\x03\x05\x01\x05\x02\x03", // 䑯
+ 0x4470: "\x03\x03\x05\x04\x01\x04\x02\x01\x02\x01\x02\x03\x03", // 䑰
+ 0x4471: "\x03\x03\x05\x04\x01\x04\x04\x04\x05\x03\x05\x04\x05\x05", // 䑱
+ 0x4472: "\x03\x03\x05\x04\x01\x04\x02\x01\x02\x05\x01\x01\x01\x02", // 䑲
+ 0x4473: "\x03\x03\x05\x04\x01\x04\x03\x04\x01\x02\x05\x01\x02\x02", // 䑳
+ 0x4474: "\x03\x03\x05\x04\x01\x04\x01\x02\x02\x01\x01\x01\x03\x04", // 䑴
+ 0x4475: "\x03\x03\x05\x04\x01\x04\x02\x05\x01\x01\x02\x05\x01\x01", // 䑵
+ 0x4476: "\x03\x03\x05\x04\x01\x04\x01\x01\x02\x01\x02\x05\x01\x01", // 䑶
+ 0x4477: "\x03\x03\x05\x04\x01\x04\x04\x05\x01\x03\x02\x05\x01\x01", // 䑷
+ 0x4478: "\x03\x03\x05\x04\x01\x04\x04\x04\x05\x01\x01\x02\x03\x04", // 䑸
+ 0x4479: "\x03\x03\x05\x04\x01\x04\x04\x04\x05\x04\x03\x03\x04\x05\x04", // 䑹
+ 0x447a: "\x03\x03\x05\x04\x01\x04\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 䑺
+ 0x447b: "\x03\x03\x05\x04\x01\x04\x04\x01\x05\x03\x03\x01\x05\x02\x01", // 䑻
+ 0x447c: "\x03\x03\x05\x04\x01\x04\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03", // 䑼
+ 0x447d: "\x03\x03\x05\x04\x01\x04\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 䑽
+ 0x447e: "\x03\x03\x05\x04\x01\x04\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 䑾
+ 0x447f: "\x03\x03\x05\x04\x01\x04\x04\x04\x05\x03\x02\x01\x03\x02\x05\x01\x01", // 䑿
+ 0x4480: "\x03\x03\x05\x04\x01\x04\x03\x01\x04\x03\x01\x04\x03\x02\x01\x02\x04", // 䒀
+ 0x4481: "\x03\x03\x05\x04\x01\x04\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01", // 䒁
+ 0x4482: "\x03\x03\x05\x04\x01\x04\x05\x02\x01\x03\x03\x05\x04\x04\x01\x02\x04", // 䒂
+ 0x4483: "\x03\x03\x05\x04\x01\x04\x03\x01\x02\x01\x02\x05\x01\x04\x05\x04", // 䒃
+ 0x4484: "\x03\x03\x05\x04\x01\x04\x04\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 䒄
+ 0x4485: "\x03\x03\x05\x04\x01\x04\x04\x03\x01\x01\x03\x04\x02\x05\x01\x01\x01", // 䒅
+ 0x4486: "\x03\x03\x05\x04\x01\x04\x04\x01\x05\x04\x02\x05\x01\x01\x03\x01\x03\x04", // 䒆
+ 0x4487: "\x03\x03\x05\x04\x01\x04\x04\x04\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 䒇
+ 0x4488: "\x03\x03\x05\x04\x01\x04\x01\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 䒈
+ 0x4489: "\x03\x03\x05\x04\x01\x04\x03\x01\x01\x02\x02\x02\x02\x01\x03\x05\x04\x01\x05\x02", // 䒉
+ 0x448a: "\x03\x04\x01\x05\x03\x05\x05\x02\x01\x05", // 䒊
+ 0x448b: "\x02\x05\x01\x03\x04\x03\x05\x05\x02\x01\x05", // 䒋
+ 0x448c: "\x04\x05\x02\x05\x01\x01\x04\x01\x03\x04\x03\x05\x05\x02\x01\x05", // 䒌
+ 0x448d: "\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03\x03\x05\x05\x02\x01\x05", // 䒍
+ 0x448e: "\x01\x02\x02\x01\x03\x04\x04\x01\x03\x02\x03\x05\x05\x02\x01\x05", // 䒎
+ 0x448f: "\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01\x03\x05\x05\x02\x01\x05", // 䒏
+ 0x4490: "\x01\x02\x02\x02\x05\x02\x02\x01\x04\x05\x02\x05\x01\x01\x01\x03\x05\x05\x02\x01\x05", // 䒐
+ 0x4491: "\x04\x03\x01", // 䒑
+ 0x4492: "\x01\x02\x02\x05\x01", // 䒒
+ 0x4493: "\x01\x02\x02\x01\x05", // 䒓
+ 0x4494: "\x01\x02\x02\x03\x04", // 䒔
+ 0x4495: "\x01\x02\x02\x02\x03\x04", // 䒕
+ 0x4496: "\x01\x02\x02\x05\x01\x02", // 䒖
+ 0x4497: "\x01\x02\x02\x03\x01\x05", // 䒗
+ 0x4498: "\x01\x02\x02\x03\x05\x04", // 䒘
+ 0x4499: "\x01\x02\x02\x02\x01\x01", // 䒙
+ 0x449a: "\x01\x02\x02\x02\x03\x04\x03", // 䒚
+ 0x449b: "\x01\x02\x02\x05\x05\x04\x05", // 䒛
+ 0x449c: "\x01\x02\x02\x03\x01\x01\x02", // 䒜
+ 0x449d: "\x01\x02\x02\x03\x04\x03\x04", // 䒝
+ 0x449e: "\x01\x02\x02\x04\x05\x03\x05", // 䒞
+ 0x449f: "\x01\x02\x02\x03\x05\x01\x04", // 䒟
+ 0x44a0: "\x01\x02\x02\x01\x01\x01\x02", // 䒠
+ 0x44a1: "\x01\x02\x02\x05\x01\x05\x02", // 䒡
+ 0x44a2: "\x01\x02\x02\x03\x05\x05\x02", // 䒢
+ 0x44a3: "\x01\x02\x02\x02\x05\x01\x01", // 䒣
+ 0x44a4: "\x01\x02\x02\x02\x05\x01\x01", // 䒤
+ 0x44a5: "\x01\x02\x02\x01\x02\x05\x02", // 䒥
+ 0x44a6: "\x01\x02\x02\x03\x04\x05\x04", // 䒦
+ 0x44a7: "\x01\x02\x02\x01\x02\x01\x05\x04", // 䒧
+ 0x44a8: "\x01\x02\x02\x03\x01\x01\x03\x04", // 䒨
+ 0x44a9: "\x01\x02\x02\x03\x01\x02\x03\x04", // 䒩
+ 0x44aa: "\x01\x02\x02\x05\x04\x01\x03\x02", // 䒪
+ 0x44ab: "\x01\x02\x02\x03\x02\x01\x05\x04", // 䒫
+ 0x44ac: "\x01\x02\x02\x01\x01\x02\x03\x04", // 䒬
+ 0x44ad: "\x01\x02\x02\x05\x01\x01\x02\x04", // 䒭
+ 0x44ae: "\x01\x02\x02\x04\x05\x03\x05\x04", // 䒮
+ 0x44af: "\x01\x02\x02\x04\x05\x03\x05\x04", // 䒯
+ 0x44b0: "\x01\x02\x02\x01\x01\x01\x02\x01\x05", // 䒰
+ 0x44b1: "\x01\x02\x02\x05\x02\x05\x03\x04\x01", // 䒱
+ 0x44b2: "\x01\x02\x02\x05\x03\x01\x03\x01\x05", // 䒲
+ 0x44b3: "\x01\x02\x02\x03\x05\x01\x02\x03\x04", // 䒳
+ 0x44b4: "\x01\x02\x02\x01\x03\x02\x05\x01\x01", // 䒴
+ 0x44b5: "\x01\x02\x02\x05\x03\x01\x05\x02\x01", // 䒵
+ 0x44b6: "\x01\x02\x02\x02\x05\x01\x01\x05\x03", // 䒶
+ 0x44b7: "\x01\x02\x02\x03\x01\x02\x02\x05\x01", // 䒷
+ 0x44b8: "\x01\x02\x02\x03\x02\x05\x02\x02\x01", // 䒸
+ 0x44b9: "\x01\x02\x02\x01\x01\x01\x02\x03\x04", // 䒹
+ 0x44ba: "\x01\x02\x02\x05\x05\x04\x02\x03\x04", // 䒺
+ 0x44bb: "\x01\x02\x02\x02\x05\x02\x05\x01\x05", // 䒻
+ 0x44bc: "\x01\x02\x02\x02\x05\x01\x02\x02\x01", // 䒼
+ 0x44bd: "\x01\x02\x02\x02\x05\x03\x04\x03\x04", // 䒽
+ 0x44be: "\x01\x02\x02\x04\x01\x03\x05\x03\x04", // 䒾
+ 0x44bf: "\x01\x02\x02\x04\x05\x02\x05\x01\x01", // 䒿
+ 0x44c0: "\x01\x02\x02\x01\x02\x01\x02\x05\x01", // 䓀
+ 0x44c1: "\x01\x02\x02\x01\x02\x01\x01\x02\x04", // 䓁
+ 0x44c2: "\x01\x02\x02\x04\x01\x01\x01\x02\x05\x01", // 䓂
+ 0x44c3: "\x01\x02\x02\x02\x05\x01\x05\x02\x01\x05", // 䓃
+ 0x44c4: "\x01\x02\x02\x03\x05\x03\x03\x03\x01\x02", // 䓄
+ 0x44c5: "\x01\x02\x02\x04\x04\x01\x03\x03\x01\x02", // 䓅
+ 0x44c6: "\x01\x02\x02\x01\x02\x01\x03\x03\x01\x02", // 䓆
+ 0x44c7: "\x01\x02\x02\x01\x02\x01\x03\x02\x03\x04", // 䓇
+ 0x44c8: "\x01\x02\x02\x03\x03\x02\x03\x05\x05\x04", // 䓈
+ 0x44c9: "\x01\x02\x02\x01\x05\x02\x03\x05\x02", // 䓉
+ 0x44ca: "\x01\x02\x02\x01\x02\x05\x01\x02\x05\x01", // 䓊
+ 0x44cb: "\x01\x02\x02\x04\x04\x01\x03\x05\x01\x05", // 䓋
+ 0x44cc: "\x01\x02\x02\x01\x02\x01\x04\x05\x04\x04", // 䓌
+ 0x44cd: "\x01\x02\x02\x02\x05\x01\x01\x01\x01\x02", // 䓍
+ 0x44ce: "\x01\x02\x02\x04\x03\x03\x04\x03\x05\x04", // 䓎
+ 0x44cf: "\x01\x02\x02\x01\x03\x02\x04\x02\x05\x01", // 䓏
+ 0x44d0: "\x01\x02\x02\x01\x03\x04\x01\x05\x02\x05", // 䓐
+ 0x44d1: "\x01\x02\x02\x04\x04\x01\x01\x01\x03\x02", // 䓑
+ 0x44d2: "\x01\x02\x02\x03\x05\x02\x05\x01\x02\x01", // 䓒
+ 0x44d3: "\x01\x02\x02\x01\x01\x01\x03\x01\x02\x04", // 䓓
+ 0x44d4: "\x01\x02\x02\x01\x02\x01\x03\x05\x02\x01", // 䓔
+ 0x44d5: "\x01\x02\x02\x01\x01\x03\x05\x04\x05\x04", // 䓕
+ 0x44d6: "\x01\x02\x02\x04\x04\x05\x03\x04\x05\x03", // 䓖
+ 0x44d7: "\x01\x02\x02\x03\x04\x05\x04\x04\x05\x04\x04", // 䓗
+ 0x44d8: "\x01\x02\x02\x03\x05\x04\x02\x04\x02\x05\x01", // 䓘
+ 0x44d9: "\x01\x02\x02\x03\x01\x02\x02\x01\x01\x05\x03", // 䓙
+ 0x44da: "\x01\x02\x02\x03\x03\x02\x02\x05\x01\x01\x01", // 䓚
+ 0x44db: "\x01\x02\x02\x05\x01\x03\x05\x02\x02\x05\x02", // 䓛
+ 0x44dc: "\x01\x02\x02\x04\x04\x01\x03\x05\x01\x05\x04", // 䓜
+ 0x44dd: "\x01\x02\x02\x05\x02\x01\x02\x05\x02\x02\x01", // 䓝
+ 0x44de: "\x01\x02\x02\x04\x05\x01\x03\x01\x03\x04\x04", // 䓞
+ 0x44df: "\x01\x02\x02\x03\x05\x01\x02\x01\x02\x05\x01", // 䓟
+ 0x44e0: "\x01\x02\x02\x02\x05\x03\x04\x02\x05\x01\x01", // 䓠
+ 0x44e1: "\x01\x02\x02\x03\x01\x01\x03\x04\x02\x05\x01", // 䓡
+ 0x44e2: "\x01\x02\x02\x02\x05\x01\x02\x02\x05\x01\x01", // 䓢
+ 0x44e3: "\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04", // 䓣
+ 0x44e4: "\x01\x02\x02\x03\x05\x03\x03\x04\x05\x04\x04", // 䓤
+ 0x44e5: "\x03\x04\x01\x02\x02\x02\x05\x01\x01\x01\x02", // 䓥
+ 0x44e6: "\x01\x02\x02\x02\x05\x01\x02\x02\x01\x03\x04", // 䓦
+ 0x44e7: "\x01\x02\x02\x05\x02\x02\x05\x01\x05\x04\x01", // 䓧
+ 0x44e8: "\x01\x02\x02\x04\x05\x03\x01\x01\x02\x05\x02", // 䓨
+ 0x44e9: "\x01\x02\x02\x01\x02\x03\x04\x01\x02\x05\x04", // 䓩
+ 0x44ea: "\x01\x02\x02\x02\x05\x01\x01\x03\x05\x03\x03", // 䓪
+ 0x44eb: "\x01\x02\x02\x01\x03\x04\x01\x02\x05\x01\x02", // 䓫
+ 0x44ec: "\x01\x02\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 䓬
+ 0x44ed: "\x01\x02\x02\x03\x04\x01\x02\x03\x04\x02\x02", // 䓭
+ 0x44ee: "\x01\x02\x02\x05\x04\x05\x02\x03\x03\x01\x03\x04", // 䓮
+ 0x44ef: "\x01\x02\x02\x01\x01\x02\x01\x05\x05\x04\x01\x04", // 䓯
+ 0x44f0: "\x01\x02\x02\x01\x02\x05\x02\x02\x01\x01\x02\x01", // 䓰
+ 0x44f1: "\x01\x02\x02\x02\x01\x02\x01\x03\x05\x01\x02\x03\x04", // 䓱
+ 0x44f2: "\x01\x02\x02\x03\x02\x04\x03\x02\x05\x01\x03\x05", // 䓲
+ 0x44f3: "\x01\x02\x02\x03\x03\x02\x05\x01\x01\x05\x03\x04", // 䓳
+ 0x44f4: "\x01\x02\x02\x01\x03\x02\x05\x02\x02\x01\x03\x04", // 䓴
+ 0x44f5: "\x01\x02\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 䓵
+ 0x44f6: "\x01\x02\x02\x01\x02\x05\x01\x02\x03\x04\x02\x02", // 䓶
+ 0x44f7: "\x01\x02\x02\x04\x04\x01\x03\x03\x02\x01\x01\x02", // 䓷
+ 0x44f8: "\x01\x02\x02\x05\x03\x01\x05\x03\x01\x01\x01\x02", // 䓸
+ 0x44f9: "\x01\x02\x02\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 䓹
+ 0x44fa: "\x01\x02\x02\x04\x03\x01\x01\x02\x01\x01\x03\x04", // 䓺
+ 0x44fb: "\x01\x02\x02\x04\x05\x01\x01\x03\x05\x05\x03\x01", // 䓻
+ 0x44fc: "\x01\x02\x02\x05\x03\x01\x01\x03\x05\x03\x03\x03\x04", // 䓼
+ 0x44fd: "\x01\x02\x02\x04\x01\x01\x01\x02\x05\x01\x05\x01\x05", // 䓽
+ 0x44fe: "\x01\x02\x02\x04\x04\x01\x02\x03\x04\x03\x05\x03\x01", // 䓾
+ 0x44ff: "\x01\x02\x02\x05\x04\x02\x05\x04\x03\x01\x01\x02\x01", // 䓿
+ 0x4500: "\x01\x02\x02\x03\x02\x03\x01\x02\x03\x04\x05\x03\x01", // 䔀
+ 0x4501: "\x01\x02\x02\x01\x02\x05\x02\x02\x01\x01\x02\x03\x04", // 䔁
+ 0x4502: "\x01\x02\x02\x04\x04\x05\x04\x01\x04\x03\x01\x01\x02", // 䔂
+ 0x4503: "\x01\x02\x02\x04\x05\x02\x04\x02\x05\x01\x01\x01", // 䔃
+ 0x4504: "\x01\x02\x02\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02", // 䔄
+ 0x4505: "\x01\x02\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02", // 䔅
+ 0x4506: "\x01\x02\x02\x03\x05\x03\x02\x05\x01\x01\x02\x01\x01", // 䔆
+ 0x4507: "\x01\x02\x02\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 䔇
+ 0x4508: "\x01\x02\x02\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 䔈
+ 0x4509: "\x01\x02\x02\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04", // 䔉
+ 0x450a: "\x01\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x03\x02", // 䔊
+ 0x450b: "\x01\x02\x02\x05\x05\x04\x04\x04\x04\x02\x03\x04\x03", // 䔋
+ 0x450c: "\x01\x02\x02\x03\x02\x05\x01\x01\x01\x03\x04\x01\x02", // 䔌
+ 0x450d: "\x01\x02\x02\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 䔍
+ 0x450e: "\x01\x02\x02\x01\x02\x05\x01\x02\x03\x04\x04\x05\x04", // 䔎
+ 0x450f: "\x01\x02\x02\x03\x01\x02\x01\x02\x05\x01\x04\x05\x04", // 䔏
+ 0x4510: "\x01\x02\x02\x04\x04\x01\x01\x05\x03\x04\x01\x05\x03\x04", // 䔐
+ 0x4511: "\x01\x02\x02\x03\x04\x01\x01\x02\x03\x04\x04\x04\x01\x02", // 䔑
+ 0x4512: "\x01\x02\x02\x05\x02\x04\x01\x04\x03\x01\x02\x05\x01", // 䔒
+ 0x4513: "\x01\x02\x02\x04\x01\x01\x01\x02\x05\x01\x03\x01\x01\x02", // 䔓
+ 0x4514: "\x01\x02\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05", // 䔔
+ 0x4515: "\x01\x02\x02\x03\x05\x01\x01\x01\x02\x05\x01\x01\x02\x04", // 䔕
+ 0x4516: "\x01\x02\x02\x05\x02\x01\x02\x01\x03\x04\x03\x05\x04", // 䔖
+ 0x4517: "\x01\x02\x02\x04\x05\x02\x04\x04\x03\x01\x01\x01\x02", // 䔗
+ 0x4518: "\x01\x02\x02\x03\x01\x01\x02\x05\x02\x02\x05\x01\x01\x01", // 䔘
+ 0x4519: "\x01\x02\x02\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x04", // 䔙
+ 0x451a: "\x01\x02\x02\x01\x03\x01\x01\x05\x03\x04\x02\x05\x01\x01", // 䔚
+ 0x451b: "\x01\x02\x02\x01\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䔛
+ 0x451c: "\x01\x02\x02\x01\x02\x02\x01\x01\x01\x02\x05\x02\x01\x01", // 䔜
+ 0x451d: "\x01\x02\x02\x02\x01\x02\x01\x03\x05\x05\x05\x04\x02\x03\x04", // 䔝
+ 0x451e: "\x01\x02\x02\x04\x01\x05\x05\x04\x04\x01\x03\x04\x01\x02", // 䔞
+ 0x451f: "\x01\x02\x02\x03\x01\x02\x03\x04\x03\x05\x04\x03\x05\x04", // 䔟
+ 0x4520: "\x01\x02\x02\x01\x02\x03\x04\x02\x04\x03\x02\x05\x01\x01", // 䔠
+ 0x4521: "\x01\x02\x02\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 䔡
+ 0x4522: "\x01\x02\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x01\x05", // 䔢
+ 0x4523: "\x01\x02\x02\x03\x01\x02\x03\x04\x02\x02\x03\x01\x01\x02", // 䔣
+ 0x4524: "\x01\x02\x02\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01", // 䔤
+ 0x4525: "\x01\x02\x02\x05\x01\x01\x04\x03\x01\x02\x03\x04\x03\x02", // 䔥
+ 0x4526: "\x01\x02\x02\x01\x02\x03\x04\x03\x01\x05\x05\x04\x01\x04", // 䔦
+ 0x4527: "\x01\x02\x02\x03\x01\x02\x03\x04\x02\x02\x01\x02\x03\x04", // 䔧
+ 0x4528: "\x01\x02\x02\x05\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 䔨
+ 0x4529: "\x01\x02\x02\x01\x02\x05\x01\x02\x03\x04\x03\x01\x03\x04", // 䔩
+ 0x452a: "\x01\x02\x02\x01\x03\x03\x04\x03\x04\x03\x04\x03\x04\x04", // 䔪
+ 0x452b: "\x01\x02\x02\x05\x02\x01\x02\x01\x01\x02\x05\x02\x03\x04", // 䔫
+ 0x452c: "\x01\x02\x02\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 䔬
+ 0x452d: "\x01\x02\x02\x04\x04\x05\x04\x05\x04\x04\x02\x05\x01\x01\x02", // 䔭
+ 0x452e: "\x01\x02\x02\x01\x02\x02\x01\x01\x01\x03\x04\x03\x03\x01\x02", // 䔮
+ 0x452f: "\x01\x02\x02\x01\x02\x05\x03\x05\x01\x01\x01\x02\x02\x05\x01", // 䔯
+ 0x4530: "\x01\x02\x02\x04\x04\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 䔰
+ 0x4531: "\x01\x02\x02\x01\x02\x01\x02\x05\x01\x01\x02\x02\x01\x01\x01", // 䔱
+ 0x4532: "\x01\x02\x02\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 䔲
+ 0x4533: "\x01\x02\x02\x03\x05\x04\x04\x01\x03\x04\x04\x04\x04\x04\x04", // 䔳
+ 0x4534: "\x01\x02\x02\x05\x02\x02\x05\x02\x01\x01\x02\x03\x04\x05\x04", // 䔴
+ 0x4535: "\x01\x02\x02\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04", // 䔵
+ 0x4536: "\x01\x02\x02\x01\x02\x01\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 䔶
+ 0x4537: "\x01\x02\x02\x01\x01\x02\x01\x01\x01\x02\x01\x03\x04\x04\x05", // 䔷
+ 0x4538: "\x01\x02\x02\x01\x03\x04\x04\x01\x03\x04\x04\x01\x03\x04\x04", // 䔸
+ 0x4539: "\x01\x02\x02\x05\x02\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 䔹
+ 0x453a: "\x01\x02\x02\x05\x02\x01\x03\x01\x02\x01\x02\x05\x01\x01", // 䔺
+ 0x453b: "\x01\x02\x02\x04\x01\x02\x05\x01\x05\x02\x01\x03\x01\x03\x04", // 䔻
+ 0x453c: "\x01\x02\x02\x05\x03\x04\x02\x01\x02\x01\x05\x03\x04\x02\x01\x02\x01", // 䔼
+ 0x453d: "\x01\x02\x02\x04\x04\x01\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 䔽
+ 0x453e: "\x01\x02\x02\x01\x02\x01\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 䔾
+ 0x453f: "\x01\x02\x02\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x02\x04", // 䔿
+ 0x4540: "\x01\x02\x02\x01\x02\x01\x01\x01\x02\x03\x04\x03\x05\x03\x04", // 䕀
+ 0x4541: "\x01\x02\x02\x02\x01\x01\x01\x02\x01\x01\x01\x01\x02\x03\x04", // 䕁
+ 0x4542: "\x01\x02\x02\x05\x04\x02\x05\x01\x03\x02\x03\x04\x04\x05\x04", // 䕂
+ 0x4543: "\x01\x02\x02\x05\x02\x03\x04\x01\x02\x01\x01\x01\x05\x04", // 䕃
+ 0x4544: "\x01\x02\x02\x05\x02\x05\x03\x04\x01\x02\x05\x02\x02\x01", // 䕄
+ 0x4545: "\x01\x02\x02\x05\x03\x01\x03\x02\x01\x05\x01\x01\x02\x05\x04", // 䕅
+ 0x4546: "\x01\x02\x02\x01\x02\x03\x04\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 䕆
+ 0x4547: "\x01\x02\x02\x04\x01\x03\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 䕇
+ 0x4548: "\x01\x02\x02\x05\x02\x01\x03\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 䕈
+ 0x4549: "\x01\x02\x02\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 䕉
+ 0x454a: "\x01\x02\x02\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 䕊
+ 0x454b: "\x01\x02\x02\x01\x02\x01\x04\x01\x03\x05\x01\x01\x02\x02\x05\x01", // 䕋
+ 0x454c: "\x01\x02\x02\x03\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 䕌
+ 0x454d: "\x01\x02\x02\x04\x01\x03\x05\x03\x04\x02\x05\x03\x04\x02\x05\x01", // 䕍
+ 0x454e: "\x01\x02\x02\x02\x05\x01\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 䕎
+ 0x454f: "\x01\x02\x02\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01\x05\x03\x04", // 䕏
+ 0x4550: "\x01\x02\x02\x04\x05\x02\x04\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 䕐
+ 0x4551: "\x01\x02\x02\x05\x05\x04\x04\x04\x04\x03\x04\x04\x03\x05\x03\x01", // 䕑
+ 0x4552: "\x01\x02\x02\x01\x02\x01\x02\x05\x01\x04\x03\x01\x05\x03\x02\x05\x01", // 䕒
+ 0x4553: "\x01\x02\x02\x04\x04\x05\x03\x05\x04\x04\x05\x04\x01\x01\x02\x03\x04", // 䕓
+ 0x4554: "\x01\x02\x02\x03\x03\x02\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x02", // 䕔
+ 0x4555: "\x01\x02\x02\x04\x04\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 䕕
+ 0x4556: "\x01\x02\x02\x05\x02\x01\x03\x05\x05\x04\x02\x03\x04\x04\x05\x04", // 䕖
+ 0x4557: "\x01\x02\x02\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02", // 䕗
+ 0x4558: "\x01\x02\x02\x03\x04\x04\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䕘
+ 0x4559: "\x01\x02\x02\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03\x04", // 䕙
+ 0x455a: "\x01\x02\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x05", // 䕚
+ 0x455b: "\x01\x02\x02\x04\x01\x01\x01\x02\x05\x01\x01\x03\x04\x03\x04\x03\x04", // 䕛
+ 0x455c: "\x01\x02\x02\x05\x04\x01\x05\x04\x01\x04\x01\x03\x04\x03\x04\x01\x02", // 䕜
+ 0x455d: "\x01\x02\x02\x03\x01\x02\x03\x04\x03\x04\x04\x03\x02\x05\x02\x01\x01", // 䕝
+ 0x455e: "\x01\x02\x02\x05\x01\x01\x02\x02\x05\x01\x01\x04\x05\x01\x01\x05\x03\x04", // 䕞
+ 0x455f: "\x01\x02\x02\x03\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x01\x03\x04", // 䕟
+ 0x4560: "\x01\x02\x02\x04\x01\x03\x05\x04\x03\x03\x04\x05\x01\x05\x03\x05\x05\x04", // 䕠
+ 0x4561: "\x01\x02\x02\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01", // 䕡
+ 0x4562: "\x01\x02\x02\x01\x03\x02\x05\x01\x04\x03\x01\x01\x01\x03\x01\x02\x01", // 䕢
+ 0x4563: "\x01\x02\x02\x04\x05\x02\x03\x04\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 䕣
+ 0x4564: "\x01\x02\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x05\x02", // 䕤
+ 0x4565: "\x01\x02\x02\x03\x04\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 䕥
+ 0x4566: "\x01\x02\x02\x04\x01\x05\x02\x05\x01\x03\x05\x01\x01\x05\x03\x01\x03\x05\x04", // 䕦
+ 0x4567: "\x01\x02\x02\x02\x05\x05\x04\x05\x02\x05\x01\x01\x04\x01\x03\x04\x03\x04", // 䕧
+ 0x4568: "\x01\x02\x02\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04\x05\x05\x04\x02\x03\x04", // 䕨
+ 0x4569: "\x01\x02\x02\x01\x02\x03\x04\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 䕩
+ 0x456a: "\x01\x02\x02\x04\x04\x01\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 䕪
+ 0x456b: "\x01\x02\x02\x03\x02\x05\x01\x01\x02\x01\x02\x01\x05\x01\x05\x03\x04\x03\x05\x04", // 䕫
+ 0x456c: "\x01\x02\x02\x05\x01\x05\x01\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x01\x01", // 䕬
+ 0x456d: "\x01\x02\x02\x01\x02\x01\x03\x04\x01\x02\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 䕭
+ 0x456e: "\x01\x02\x02\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04\x03\x01\x02\x03\x04", // 䕮
+ 0x456f: "\x01\x02\x02\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04\x03\x03\x05\x04\x04", // 䕯
+ 0x4570: "\x01\x02\x02\x04\x03\x03\x04\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 䕰
+ 0x4571: "\x01\x02\x02\x01\x02\x05\x01\x04\x03\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䕱
+ 0x4572: "\x01\x02\x02\x04\x01\x03\x04\x01\x02\x05\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 䕲
+ 0x4573: "\x01\x02\x02\x05\x01\x05\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 䕳
+ 0x4574: "\x01\x02\x02\x03\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 䕴
+ 0x4575: "\x01\x02\x02\x01\x02\x01\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䕵
+ 0x4576: "\x01\x02\x02\x04\x01\x01\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 䕶
+ 0x4577: "\x01\x02\x02\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x05\x05\x04\x02\x03\x04", // 䕷
+ 0x4578: "\x01\x02\x02\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x01\x02\x05\x01", // 䕸
+ 0x4579: "\x01\x02\x02\x04\x01\x03\x04\x03\x04\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 䕹
+ 0x457a: "\x01\x02\x02\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x02\x02\x01\x01\x01\x05\x04", // 䕺
+ 0x457b: "\x01\x02\x02\x01\x02\x05\x04\x01\x02\x05\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 䕻
+ 0x457c: "\x01\x02\x02\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 䕼
+ 0x457d: "\x01\x02\x02\x02\x05\x01\x02\x01\x02\x01\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 䕽
+ 0x457e: "\x01\x02\x02\x02\x05\x01\x02\x05\x01\x01\x03\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 䕾
+ 0x457f: "\x01\x02\x02\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䕿
+ 0x4580: "\x01\x02\x02\x02\x05\x01\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x02\x05\x01", // 䖀
+ 0x4581: "\x01\x02\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 䖁
+ 0x4582: "\x01\x02\x02\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x03\x01\x01\x02", // 䖂
+ 0x4583: "\x01\x02\x02\x01\x03\x02\x05\x01\x01\x02\x02\x01\x03\x02\x05\x01\x01\x02\x02\x01\x03\x02\x05\x01", // 䖃
+ 0x4584: "\x01\x02\x02\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 䖄
+ 0x4585: "\x01\x02\x02\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x03\x04\x01", // 䖅
+ 0x4586: "\x01\x02\x02\x01\x02\x05\x03\x05\x01\x01\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 䖆
+ 0x4587: "\x01\x02\x02\x01\x02\x03\x04\x03\x01\x01\x02\x05\x02\x01\x02\x03\x04\x04\x05\x03\x04\x04\x04\x04\x04\x05\x02\x05\x01\x03\x03\x03", // 䖇
+ 0x4588: "\x02\x01\x05\x03\x01\x05\x03\x05", // 䖈
+ 0x4589: "\x02\x01\x05\x03\x01\x05\x01\x01\x02", // 䖉
+ 0x458a: "\x03\x04\x02\x01\x05\x03\x01\x05\x03\x05", // 䖊
+ 0x458b: "\x02\x01\x05\x03\x01\x05\x03\x05\x03\x04", // 䖋
+ 0x458c: "\x02\x01\x05\x03\x01\x05\x03\x05\x02\x02", // 䖌
+ 0x458d: "\x02\x01\x05\x03\x01\x05\x03\x01\x03\x04", // 䖍
+ 0x458e: "\x05\x02\x02\x01\x05\x03\x01\x05\x03\x05", // 䖎
+ 0x458f: "\x02\x01\x05\x03\x01\x05\x03\x05\x03\x03\x04", // 䖏
+ 0x4590: "\x03\x03\x01\x02\x02\x01\x05\x03\x01\x05\x03\x05", // 䖐
+ 0x4591: "\x02\x01\x05\x03\x01\x05\x03\x05\x02\x05\x01\x01", // 䖑
+ 0x4592: "\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x04\x03\x01", // 䖒
+ 0x4593: "\x05\x02\x02\x05\x02\x02\x01\x05\x03\x01\x05\x03\x05", // 䖓
+ 0x4594: "\x01\x02\x01\x05\x04\x02\x01\x05\x03\x01\x05\x03\x05", // 䖔
+ 0x4595: "\x02\x01\x05\x03\x01\x05\x03\x05\x02\x05\x01\x01\x01", // 䖕
+ 0x4596: "\x02\x01\x05\x03\x01\x05\x03\x05\x02\x05\x01\x01\x02", // 䖖
+ 0x4597: "\x02\x01\x05\x03\x01\x05\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 䖗
+ 0x4598: "\x02\x01\x05\x03\x01\x05\x03\x05\x03\x05\x02\x05\x01\x03\x05\x04", // 䖘
+ 0x4599: "\x01\x02\x05\x01\x02\x05\x02\x04\x03\x03\x02\x01\x05\x03\x01\x05\x03\x05", // 䖙
+ 0x459a: "\x02\x01\x05\x03\x01\x05\x03\x05\x03\x02\x05\x01\x01\x05\x04\x04\x04\x04", // 䖚
+ 0x459b: "\x02\x01\x05\x03\x01\x05\x03\x05\x01\x02\x04\x05\x05\x05\x04\x02\x03\x04", // 䖛
+ 0x459c: "\x02\x01\x05\x03\x01\x05\x03\x05\x02\x01\x05\x03\x01\x05\x03\x05\x02\x05\x01\x01", // 䖜
+ 0x459d: "\x03\x02\x05\x01\x02\x01\x04", // 䖝
+ 0x459e: "\x02\x05\x01\x02\x01\x04\x01\x02\x04", // 䖞
+ 0x459f: "\x04\x01\x05\x02\x05\x01\x02\x01\x04", // 䖟
+ 0x45a0: "\x02\x05\x01\x02\x01\x04\x03\x05\x04", // 䖠
+ 0x45a1: "\x02\x05\x01\x02\x01\x04\x05\x02\x01\x01", // 䖡
+ 0x45a2: "\x02\x05\x01\x02\x01\x04\x02\x03\x04\x03", // 䖢
+ 0x45a3: "\x02\x05\x01\x02\x01\x04\x03\x03\x02\x04", // 䖣
+ 0x45a4: "\x03\x05\x04\x05\x05\x02\x05\x01\x02\x01\x04", // 䖤
+ 0x45a5: "\x05\x04\x05\x02\x03\x02\x05\x01\x02\x01\x04", // 䖥
+ 0x45a6: "\x02\x05\x01\x02\x01\x04\x05\x02\x02\x05\x02", // 䖦
+ 0x45a7: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x01", // 䖧
+ 0x45a8: "\x02\x05\x01\x02\x01\x04\x01\x03\x02\x05\x01", // 䖨
+ 0x45a9: "\x02\x05\x01\x02\x01\x04\x04\x05\x04\x03\x04", // 䖩
+ 0x45aa: "\x02\x01\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 䖪
+ 0x45ab: "\x02\x05\x01\x02\x01\x04\x03\x04\x01\x01\x02", // 䖫
+ 0x45ac: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x02", // 䖬
+ 0x45ad: "\x04\x03\x01\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 䖭
+ 0x45ae: "\x02\x05\x01\x02\x01\x04\x03\x02\x05\x02\x05\x01", // 䖮
+ 0x45af: "\x01\x02\x01\x01\x02\x01\x02\x05\x01\x02\x01\x04", // 䖯
+ 0x45b0: "\x02\x05\x01\x02\x01\x04\x03\x03\x03\x05\x03\x04", // 䖰
+ 0x45b1: "\x02\x05\x01\x02\x01\x04\x01\x01\x01\x02\x01\x05", // 䖱
+ 0x45b2: "\x02\x05\x01\x02\x01\x04\x03\x05\x02\x05\x01\x01", // 䖲
+ 0x45b3: "\x02\x05\x01\x02\x01\x04\x04\x04\x05\x03\x01\x05", // 䖳
+ 0x45b4: "\x02\x05\x01\x02\x01\x04\x03\x04\x01\x05\x03\x04", // 䖴
+ 0x45b5: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 䖵
+ 0x45b6: "\x02\x05\x01\x02\x01\x04\x01\x03\x05\x03\x03\x03\x04", // 䖶
+ 0x45b7: "\x02\x05\x01\x02\x01\x04\x03\x04\x01\x03\x02\x05\x02", // 䖷
+ 0x45b8: "\x03\x01\x02\x01\x05\x03\x04\x02\x05\x01\x02\x01\x04", // 䖸
+ 0x45b9: "\x02\x05\x01\x02\x01\x04\x02\x01\x02\x01\x01\x01\x02", // 䖹
+ 0x45ba: "\x03\x02\x02\x03\x05\x04\x02\x05\x01\x02\x01\x04", // 䖺
+ 0x45bb: "\x02\x05\x01\x02\x01\x04\x04\x01\x05\x04\x03\x02\x05", // 䖻
+ 0x45bc: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x05\x04\x05\x02", // 䖼
+ 0x45bd: "\x03\x01\x02\x03\x04\x02\x02\x02\x05\x01\x02\x01\x04", // 䖽
+ 0x45be: "\x02\x05\x01\x02\x01\x04\x04\x04\x05\x01\x01\x03\x05", // 䖾
+ 0x45bf: "\x03\x01\x02\x03\x04\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 䖿
+ 0x45c0: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x03\x04\x03\x05\x04", // 䗀
+ 0x45c1: "\x02\x05\x01\x02\x01\x04\x01\x03\x04\x01\x02\x05\x01\x02", // 䗁
+ 0x45c2: "\x02\x05\x01\x02\x01\x04\x02\x01\x05\x03\x01\x05\x03\x05", // 䗂
+ 0x45c3: "\x02\x05\x01\x02\x01\x04\x01\x05\x03\x04\x01\x05\x03\x04", // 䗃
+ 0x45c4: "\x02\x05\x01\x02\x01\x04\x03\x04\x03\x04\x03\x03\x01\x02", // 䗄
+ 0x45c5: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x01\x01\x05\x03\x04", // 䗅
+ 0x45c6: "\x02\x05\x01\x02\x01\x04\x04\x04\x05\x02\x05\x01\x05\x01", // 䗆
+ 0x45c7: "\x02\x05\x01\x02\x01\x04\x03\x05\x04\x03\x01\x02\x03\x04", // 䗇
+ 0x45c8: "\x02\x05\x01\x02\x01\x04\x04\x01\x05\x02\x05\x01\x01\x01", // 䗈
+ 0x45c9: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x02\x05\x01\x01", // 䗉
+ 0x45ca: "\x02\x05\x01\x02\x01\x04\x04\x03\x03\x04\x04\x03\x03\x04", // 䗊
+ 0x45cb: "\x02\x05\x01\x02\x01\x04\x01\x02\x02\x01\x01\x01\x02\x03\x04", // 䗋
+ 0x45cc: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x03\x01\x01\x02\x01", // 䗌
+ 0x45cd: "\x05\x05\x01\x03\x05\x03\x03\x03\x04\x02\x05\x01\x02\x01\x04", // 䗍
+ 0x45ce: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x02\x02\x01\x01\x02\x01", // 䗎
+ 0x45cf: "\x02\x05\x01\x02\x01\x04\x04\x04\x05\x04\x03\x03\x04\x05\x04", // 䗏
+ 0x45d0: "\x04\x01\x05\x03\x03\x01\x05\x02\x05\x02\x05\x01\x02\x01\x04", // 䗐
+ 0x45d1: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x04\x01\x04\x03\x01", // 䗑
+ 0x45d2: "\x02\x05\x01\x02\x01\x04\x04\x03\x01\x02\x02\x04\x03\x01", // 䗒
+ 0x45d3: "\x02\x05\x01\x02\x01\x04\x03\x05\x03\x03\x04\x04\x05\x04\x04", // 䗓
+ 0x45d4: "\x02\x05\x01\x02\x01\x04\x03\x02\x05\x01\x03\x01\x01\x03\x04", // 䗔
+ 0x45d5: "\x04\x04\x05\x03\x05\x04\x05\x05\x02\x05\x01\x02\x01\x04", // 䗕
+ 0x45d6: "\x02\x05\x01\x02\x01\x04\x01\x02\x02\x02\x04\x05\x02\x05\x02", // 䗖
+ 0x45d7: "\x02\x05\x01\x02\x01\x04\x03\x01\x04\x03\x01\x04\x01\x01\x03\x02", // 䗗
+ 0x45d8: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 䗘
+ 0x45d9: "\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 䗙
+ 0x45da: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 䗚
+ 0x45db: "\x02\x05\x01\x02\x01\x04\x03\x02\x02\x03\x05\x04\x02\x05\x01\x01", // 䗛
+ 0x45dc: "\x02\x05\x01\x02\x01\x04\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 䗜
+ 0x45dd: "\x04\x05\x02\x04\x02\x05\x01\x01\x02\x02\x05\x01\x02\x01\x04", // 䗝
+ 0x45de: "\x01\x01\x03\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 䗞
+ 0x45df: "\x01\x03\x01\x01\x03\x04\x05\x03\x05\x05\x04\x02\x05\x01\x02\x01\x04", // 䗟
+ 0x45e0: "\x04\x01\x05\x03\x03\x01\x05\x02\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 䗠
+ 0x45e1: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x02\x01\x01\x05\x04\x04\x04\x04", // 䗡
+ 0x45e2: "\x02\x05\x01\x02\x01\x04\x03\x01\x02\x01\x02\x05\x01\x04\x05\x04", // 䗢
+ 0x45e3: "\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 䗣
+ 0x45e4: "\x02\x05\x01\x02\x01\x04\x04\x01\x03\x05\x01\x01\x02\x05\x01\x01\x02", // 䗤
+ 0x45e5: "\x02\x05\x01\x02\x01\x04\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04", // 䗥
+ 0x45e6: "\x02\x05\x01\x02\x01\x04\x03\x05\x04\x01\x01\x01\x02\x04\x05\x04", // 䗦
+ 0x45e7: "\x02\x05\x01\x02\x01\x04\x04\x01\x03\x05\x01\x01\x02\x04\x01\x03\x04", // 䗧
+ 0x45e8: "\x02\x05\x01\x02\x01\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 䗨
+ 0x45e9: "\x02\x05\x01\x02\x01\x04\x01\x03\x02\x01\x01\x02\x03\x04\x05\x03\x04", // 䗩
+ 0x45ea: "\x04\x01\x03\x01\x02\x02\x01\x04\x04\x04\x04\x02\x05\x01\x02\x01\x04", // 䗪
+ 0x45eb: "\x02\x05\x01\x02\x01\x04\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04", // 䗫
+ 0x45ec: "\x03\x05\x04\x01\x01\x01\x02\x04\x05\x04\x02\x05\x01\x02\x01\x04", // 䗬
+ 0x45ed: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x05\x01\x02\x04\x05\x04\x04", // 䗭
+ 0x45ee: "\x02\x05\x01\x02\x01\x04\x01\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04", // 䗮
+ 0x45ef: "\x02\x05\x01\x02\x01\x04\x03\x02\x04\x01\x01\x01\x02\x01\x04\x05\x04", // 䗯
+ 0x45f0: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 䗰
+ 0x45f1: "\x02\x05\x01\x02\x01\x04\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 䗱
+ 0x45f2: "\x02\x05\x01\x02\x01\x04\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 䗲
+ 0x45f3: "\x02\x05\x01\x02\x01\x04\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 䗳
+ 0x45f4: "\x02\x05\x01\x02\x01\x04\x03\x01\x04\x03\x01\x04\x03\x01\x02\x01\x05\x04", // 䗴
+ 0x45f5: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x01\x01", // 䗵
+ 0x45f6: "\x02\x05\x01\x02\x01\x04\x01\x02\x02\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 䗶
+ 0x45f7: "\x02\x05\x01\x02\x01\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 䗷
+ 0x45f8: "\x04\x01\x05\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x01\x02\x01\x04", // 䗸
+ 0x45f9: "\x02\x05\x01\x02\x01\x04\x04\x03\x01\x05\x05\x04\x05\x05\x04\x04\x05\x04\x04", // 䗹
+ 0x45fa: "\x03\x02\x01\x02\x01\x05\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 䗺
+ 0x45fb: "\x02\x05\x01\x02\x01\x04\x03\x01\x04\x03\x01\x04\x05\x01\x01\x05\x04\x05\x02", // 䗻
+ 0x45fc: "\x02\x05\x01\x02\x01\x04\x03\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 䗼
+ 0x45fd: "\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x01\x02\x01\x04", // 䗽
+ 0x45fe: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x04\x04\x04\x04", // 䗾
+ 0x45ff: "\x02\x05\x01\x02\x01\x04\x04\x04\x05\x04\x05\x04\x04\x02\x05\x02\x02\x01\x01\x02", // 䗿
+ 0x4600: "\x03\x02\x05\x01\x05\x01\x01\x02\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 䘀
+ 0x4601: "\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03\x04\x02\x05\x01\x02\x01\x04", // 䘁
+ 0x4602: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 䘂
+ 0x4603: "\x02\x05\x01\x02\x01\x04\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x01", // 䘃
+ 0x4604: "\x01\x02\x01\x03\x02\x05\x01\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 䘄
+ 0x4605: "\x05\x04\x02\x05\x01\x01\x03\x05\x03\x05\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 䘅
+ 0x4606: "\x02\x05\x01\x02\x01\x04\x04\x04\x05\x01\x01\x01\x02\x02\x05\x02\x02\x01\x04\x05\x04\x04", // 䘆
+ 0x4607: "\x04\x01\x03\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 䘇
+ 0x4608: "\x02\x05\x01\x02\x01\x04\x01\x03\x01\x02\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04\x05\x03", // 䘈
+ 0x4609: "\x01\x01\x03\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 䘉
+ 0x460a: "\x02\x05\x01\x02\x01\x04\x03\x01\x04\x03\x01\x04\x02\x05\x02\x02\x01\x01\x03\x04\x05\x03\x04", // 䘊
+ 0x460b: "\x02\x05\x01\x02\x01\x04\x03\x04\x03\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 䘋
+ 0x460c: "\x01\x01\x02\x02\x01\x03\x02\x05\x01\x05\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 䘌
+ 0x460d: "\x01\x02\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 䘍
+ 0x460e: "\x02\x05\x01\x02\x01\x04\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x05\x01\x05", // 䘎
+ 0x460f: "\x03\x02\x05\x02\x02\x01\x05\x02", // 䘏
+ 0x4610: "\x03\x02\x05\x02\x02\x01\x05\x03\x04\x04", // 䘐
+ 0x4611: "\x03\x02\x05\x02\x02\x01\x04\x05\x05\x03\x04", // 䘑
+ 0x4612: "\x03\x02\x05\x02\x02\x01\x05\x04\x03\x04\x03\x05\x04", // 䘒
+ 0x4613: "\x03\x02\x05\x02\x02\x01\x03\x05\x03\x02\x01\x05\x01\x01", // 䘓
+ 0x4614: "\x03\x02\x05\x02\x02\x01\x04\x04\x05\x03\x05\x04\x02\x05\x01", // 䘔
+ 0x4615: "\x03\x03\x02\x04\x01\x03\x05\x01\x01\x02", // 䘕
+ 0x4616: "\x03\x03\x02\x03\x01\x01\x02\x05\x02\x01\x01\x02", // 䘖
+ 0x4617: "\x03\x03\x02\x02\x05\x02\x01\x05\x05\x04\x02\x03\x04\x01\x01\x02", // 䘗
+ 0x4618: "\x03\x03\x02\x01\x01\x02\x01\x05\x05\x04\x02\x03\x04\x01\x01\x02", // 䘘
+ 0x4619: "\x03\x03\x02\x05\x02\x01\x02\x05\x01\x01\x05\x01\x02\x05\x02\x01\x01\x02", // 䘙
+ 0x461a: "\x04\x01\x03\x05\x03\x04\x01\x02", // 䘚
+ 0x461b: "\x04\x05\x02\x03\x04\x03\x05", // 䘛
+ 0x461c: "\x04\x05\x02\x03\x04\x02\x05\x02", // 䘜
+ 0x461d: "\x04\x05\x02\x03\x04\x01\x05\x04", // 䘝
+ 0x461e: "\x04\x05\x02\x03\x04\x05\x05\x01", // 䘞
+ 0x461f: "\x04\x05\x02\x03\x04\x05\x01\x05\x02", // 䘟
+ 0x4620: "\x04\x05\x02\x03\x04\x01\x03\x03\x04", // 䘠
+ 0x4621: "\x01\x05\x03\x05\x04\x01\x03\x05\x03\x04", // 䘡
+ 0x4622: "\x04\x05\x02\x03\x04\x04\x04\x05\x01\x02", // 䘢
+ 0x4623: "\x04\x05\x02\x03\x04\x02\x01\x02\x01\x03\x05", // 䘣
+ 0x4624: "\x04\x05\x02\x03\x04\x01\x02\x03\x04\x04", // 䘤
+ 0x4625: "\x04\x05\x02\x03\x04\x02\x05\x01\x01\x02", // 䘥
+ 0x4626: "\x04\x05\x02\x03\x04\x05\x01\x03\x03\x05", // 䘦
+ 0x4627: "\x04\x05\x02\x03\x04\x02\x05\x01\x03\x04", // 䘧
+ 0x4628: "\x04\x05\x02\x03\x04\x04\x01\x03\x04\x03\x04", // 䘨
+ 0x4629: "\x04\x05\x02\x03\x04\x03\x05\x02\x05\x01\x01", // 䘩
+ 0x462a: "\x04\x05\x02\x03\x04\x04\x01\x05\x04\x03\x05", // 䘪
+ 0x462b: "\x05\x03\x01\x02\x05\x01\x04\x01\x03\x05\x03\x04", // 䘫
+ 0x462c: "\x04\x05\x02\x03\x04\x01\x01\x03\x05\x03\x04", // 䘬
+ 0x462d: "\x04\x05\x02\x03\x04\x01\x05\x04\x01\x02\x01", // 䘭
+ 0x462e: "\x01\x02\x03\x04\x03\x04\x01\x05\x03\x04", // 䘮
+ 0x462f: "\x04\x05\x02\x03\x04\x02\x04\x03\x02\x05\x01\x01", // 䘯
+ 0x4630: "\x04\x05\x02\x03\x04\x03\x02\x01\x02\x01\x05\x04", // 䘰
+ 0x4631: "\x04\x01\x03\x04\x03\x04\x02\x05\x01\x03\x05\x03\x04", // 䘱
+ 0x4632: "\x04\x05\x02\x03\x04\x05\x01\x01\x04\x05\x05\x04", // 䘲
+ 0x4633: "\x04\x05\x02\x03\x04\x03\x04\x01\x01\x02\x03\x04\x01", // 䘳
+ 0x4634: "\x04\x05\x02\x03\x04\x01\x02\x03\x04\x03\x04\x05\x04", // 䘴
+ 0x4635: "\x04\x05\x02\x03\x04\x05\x01\x01\x02\x04\x01\x03\x04", // 䘵
+ 0x4636: "\x04\x05\x02\x03\x04\x05\x02\x04\x01\x03\x04\x05\x02", // 䘶
+ 0x4637: "\x04\x05\x02\x03\x04\x04\x03\x02\x05\x02\x03\x04", // 䘷
+ 0x4638: "\x04\x05\x02\x03\x04\x04\x01\x03\x02\x03\x05\x04\x04", // 䘸
+ 0x4639: "\x04\x05\x02\x03\x04\x04\x01\x03\x04\x03\x04\x01\x02", // 䘹
+ 0x463a: "\x04\x05\x02\x03\x04\x04\x04\x05\x01\x02\x01\x03\x04", // 䘺
+ 0x463b: "\x04\x05\x02\x03\x04\x04\x01\x05\x04\x02\x05\x01\x01", // 䘻
+ 0x463c: "\x04\x05\x02\x03\x04\x04\x04\x05\x03\x05\x04\x05\x05", // 䘼
+ 0x463d: "\x04\x05\x02\x03\x04\x03\x02\x01\x05\x01\x01\x03\x05", // 䘽
+ 0x463e: "\x04\x05\x02\x03\x04\x04\x04\x05\x02\x05\x01\x05\x01", // 䘾
+ 0x463f: "\x04\x05\x02\x03\x04\x05\x01\x03\x05\x02\x02\x05\x02", // 䘿
+ 0x4640: "\x04\x05\x02\x03\x04\x03\x05\x01\x01\x03\x05\x01\x01", // 䙀
+ 0x4641: "\x04\x05\x02\x03\x04\x01\x05\x03\x04\x01\x05\x03\x04", // 䙁
+ 0x4642: "\x04\x05\x02\x03\x04\x03\x04\x05\x04\x04\x05\x04\x04", // 䙂
+ 0x4643: "\x04\x05\x02\x03\x04\x01\x03\x01\x02\x01\x02\x05\x01\x01", // 䙃
+ 0x4644: "\x04\x05\x02\x03\x04\x03\x01\x02\x03\x02\x01\x05\x01\x01", // 䙄
+ 0x4645: "\x04\x05\x02\x03\x04\x01\x02\x05\x02\x02\x01\x05\x03\x01", // 䙅
+ 0x4646: "\x04\x05\x02\x03\x04\x05\x04\x03\x03\x04\x01\x01\x03\x04", // 䙆
+ 0x4647: "\x04\x05\x02\x03\x04\x01\x03\x02\x05\x02\x02\x01\x03\x04", // 䙇
+ 0x4648: "\x04\x05\x02\x03\x04\x03\x02\x05\x01\x03\x01\x01\x03\x04", // 䙈
+ 0x4649: "\x04\x05\x02\x03\x04\x03\x03\x01\x02\x02\x05\x01\x01\x01", // 䙉
+ 0x464a: "\x04\x05\x02\x03\x04\x01\x02\x02\x02\x04\x05\x02\x05\x02", // 䙊
+ 0x464b: "\x04\x05\x02\x03\x04\x04\x04\x05\x01\x02\x05\x01\x01\x01", // 䙋
+ 0x464c: "\x04\x05\x02\x03\x04\x02\x05\x01\x02\x01\x02\x05\x03\x04", // 䙌
+ 0x464d: "\x04\x05\x02\x03\x04\x05\x03\x04\x03\x05\x03\x04\x03\x02", // 䙍
+ 0x464e: "\x04\x05\x02\x03\x04\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04", // 䙎
+ 0x464f: "\x04\x05\x02\x03\x04\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 䙏
+ 0x4650: "\x04\x05\x02\x03\x04\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 䙐
+ 0x4651: "\x04\x05\x02\x03\x04\x04\x01\x02\x05\x01\x01\x03\x05\x03\x04", // 䙑
+ 0x4652: "\x04\x05\x02\x03\x04\x04\x01\x05\x05\x04\x02\x05\x01\x02\x01", // 䙒
+ 0x4653: "\x04\x05\x02\x03\x04\x02\x05\x02\x02\x01\x01\x02\x01\x05\x04", // 䙓
+ 0x4654: "\x04\x05\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 䙔
+ 0x4655: "\x04\x05\x02\x03\x04\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04", // 䙕
+ 0x4656: "\x04\x05\x02\x03\x04\x02\x05\x02\x03\x05\x01\x01\x03\x05\x01\x01", // 䙖
+ 0x4657: "\x04\x05\x02\x03\x04\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01", // 䙗
+ 0x4658: "\x04\x05\x02\x03\x04\x01\x03\x02\x01\x01\x02\x03\x04\x05\x03\x04", // 䙘
+ 0x4659: "\x04\x05\x02\x03\x04\x05\x01\x03\x02\x04\x01\x03\x04\x03\x01\x01\x02", // 䙙
+ 0x465a: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x04\x01\x03\x05\x03\x04", // 䙚
+ 0x465b: "\x04\x05\x02\x03\x04\x04\x01\x03\x04\x02\x05\x01\x03\x05\x03\x04", // 䙛
+ 0x465c: "\x04\x05\x02\x03\x04\x03\x05\x04\x01\x01\x01\x02\x04\x05\x04", // 䙜
+ 0x465d: "\x04\x01\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04\x03\x05\x03\x04", // 䙝
+ 0x465e: "\x04\x05\x02\x03\x04\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 䙞
+ 0x465f: "\x04\x05\x02\x03\x04\x02\x05\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01", // 䙟
+ 0x4660: "\x04\x05\x02\x03\x04\x01\x03\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04", // 䙠
+ 0x4661: "\x04\x05\x02\x03\x04\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 䙡
+ 0x4662: "\x04\x05\x02\x03\x04\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 䙢
+ 0x4663: "\x04\x05\x02\x03\x04\x01\x01\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01", // 䙣
+ 0x4664: "\x04\x05\x02\x03\x04\x02\x05\x05\x02\x05\x02\x05\x01\x04\x05\x04", // 䙤
+ 0x4665: "\x04\x05\x02\x03\x04\x01\x04\x05\x02\x04\x04\x04\x04\x03\x04\x04\x05\x04", // 䙥
+ 0x4666: "\x04\x05\x02\x03\x04\x01\x02\x02\x02\x05\x02\x02\x01\x04\x05\x03\x05\x04", // 䙦
+ 0x4667: "\x04\x05\x02\x03\x04\x03\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 䙧
+ 0x4668: "\x04\x05\x02\x03\x04\x02\x05\x01\x01\x01\x02\x03\x04\x04\x01\x03\x05\x03\x04", // 䙨
+ 0x4669: "\x04\x05\x02\x03\x04\x01\x02\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 䙩
+ 0x466a: "\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x03\x04\x01\x03\x04\x04\x01\x03\x05\x03\x04", // 䙪
+ 0x466b: "\x04\x05\x02\x03\x04\x02\x01\x01\x03\x05\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 䙫
+ 0x466c: "\x04\x05\x02\x03\x04\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x05\x03\x01", // 䙬
+ 0x466d: "\x04\x05\x02\x03\x04\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 䙭
+ 0x466e: "\x04\x05\x02\x03\x04\x01\x02\x02\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 䙮
+ 0x466f: "\x04\x05\x02\x03\x04\x01\x03\x02\x01\x01\x02\x03\x04\x05\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 䙯
+ 0x4670: "\x04\x05\x02\x03\x04\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 䙰
+ 0x4671: "\x04\x05\x02\x03\x04\x05\x01\x03\x02\x04\x01\x03\x04\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 䙱
+ 0x4672: "\x01\x02\x05\x02\x02\x01\x01\x03\x04", // 䙲
+ 0x4673: "\x01\x02\x05\x02\x02\x01\x04\x03\x03\x04", // 䙳
+ 0x4674: "\x01\x02\x05\x02\x02\x01\x01\x03\x04\x05\x01\x05", // 䙴
+ 0x4675: "\x01\x02\x05\x02\x02\x01\x01\x02\x01\x01\x02\x01", // 䙵
+ 0x4676: "\x01\x02\x05\x03\x05\x01\x04\x05\x03\x05\x03\x04", // 䙶
+ 0x4677: "\x02\x05\x01\x01\x01\x03\x05\x01\x02\x04", // 䙷
+ 0x4678: "\x02\x05\x01\x01\x01\x03\x05\x01\x02\x04", // 䙸
+ 0x4679: "\x01\x01\x03\x02\x02\x05\x01\x01\x01\x03\x05", // 䙹
+ 0x467a: "\x04\x03\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 䙺
+ 0x467b: "\x03\x05\x02\x03\x02\x05\x01\x01\x01\x03\x05", // 䙻
+ 0x467c: "\x05\x03\x02\x05\x01\x02\x05\x01\x01\x01\x03\x05", // 䙼
+ 0x467d: "\x01\x03\x04\x04\x03\x02\x05\x01\x01\x01\x03\x05", // 䙽
+ 0x467e: "\x04\x04\x05\x01\x05\x02\x05\x01\x01\x01\x03\x05", // 䙾
+ 0x467f: "\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 䙿
+ 0x4680: "\x03\x03\x05\x04\x01\x04\x02\x05\x01\x01\x01\x03\x05", // 䚀
+ 0x4681: "\x03\x02\x05\x02\x05\x01\x02\x05\x01\x01\x01\x03\x05", // 䚁
+ 0x4682: "\x01\x02\x01\x03\x02\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 䚂
+ 0x4683: "\x02\x01\x02\x05\x05\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 䚃
+ 0x4684: "\x05\x01\x01\x02\x04\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 䚄
+ 0x4685: "\x01\x03\x04\x03\x04\x02\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 䚅
+ 0x4686: "\x01\x02\x02\x02\x05\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 䚆
+ 0x4687: "\x02\x03\x04\x03\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 䚇
+ 0x4688: "\x01\x02\x05\x02\x02\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 䚈
+ 0x4689: "\x01\x01\x01\x02\x05\x03\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 䚉
+ 0x468a: "\x04\x03\x01\x03\x04\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 䚊
+ 0x468b: "\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 䚋
+ 0x468c: "\x03\x02\x05\x01\x01\x01\x03\x04\x01\x02\x02\x05\x01\x01\x01\x03\x05", // 䚌
+ 0x468d: "\x01\x02\x01\x01\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 䚍
+ 0x468e: "\x01\x01\x01\x03\x04\x03\x02\x01\x05\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 䚎
+ 0x468f: "\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02\x02\x05\x01\x01\x01\x03\x05", // 䚏
+ 0x4690: "\x03\x01\x01\x03\x04\x02\x05\x01\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 䚐
+ 0x4691: "\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 䚑
+ 0x4692: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 䚒
+ 0x4693: "\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x01\x01\x03\x05", // 䚓
+ 0x4694: "\x04\x04\x05\x01\x02\x03\x03\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 䚔
+ 0x4695: "\x01\x02\x05\x04\x01\x02\x05\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x02\x05\x01\x01\x01\x03\x05", // 䚕
+ 0x4696: "\x01\x04\x05\x02\x01\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x03\x04\x01\x02\x05\x01\x01\x01\x03\x05", // 䚖
+ 0x4697: "\x03\x05\x03\x05\x01\x01\x02\x03\x04\x05\x04", // 䚗
+ 0x4698: "\x03\x03\x02\x03\x05\x03\x05\x01\x01\x02\x01\x01\x02", // 䚘
+ 0x4699: "\x03\x05\x03\x05\x01\x01\x02\x01\x02\x05\x01\x01\x01", // 䚙
+ 0x469a: "\x03\x05\x03\x05\x01\x01\x02\x03\x01\x02\x01\x03\x05", // 䚚
+ 0x469b: "\x03\x05\x03\x05\x01\x01\x02\x03\x01\x02\x01\x02\x05\x01", // 䚛
+ 0x469c: "\x03\x05\x03\x05\x01\x01\x02\x03\x02\x05\x01\x01\x03\x01\x02", // 䚜
+ 0x469d: "\x03\x05\x03\x05\x01\x01\x02\x04\x01\x03\x04\x03\x04\x01\x02", // 䚝
+ 0x469e: "\x03\x05\x03\x05\x01\x01\x02\x01\x03\x04\x03\x04\x02\x03\x04", // 䚞
+ 0x469f: "\x03\x05\x03\x05\x01\x01\x02\x02\x05\x01\x01\x01\x01\x02\x04", // 䚟
+ 0x46a0: "\x03\x05\x03\x05\x01\x01\x02\x02\x05\x01\x01\x01\x05\x03\x05", // 䚠
+ 0x46a1: "\x03\x05\x03\x05\x01\x01\x02\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 䚡
+ 0x46a2: "\x03\x05\x03\x05\x01\x01\x02\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 䚢
+ 0x46a3: "\x03\x05\x03\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 䚣
+ 0x46a4: "\x03\x05\x03\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 䚤
+ 0x46a5: "\x03\x05\x03\x05\x01\x01\x02\x05\x01\x05\x04\x01\x05\x01\x05\x04\x01", // 䚥
+ 0x46a6: "\x03\x05\x03\x05\x01\x01\x02\x03\x03\x02\x01\x05\x03\x01\x05\x03\x05", // 䚦
+ 0x46a7: "\x03\x05\x03\x05\x01\x01\x02\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 䚧
+ 0x46a8: "\x03\x05\x03\x05\x01\x01\x02\x05\x04\x03\x03\x04\x05\x01\x05\x03\x05\x05\x04", // 䚨
+ 0x46a9: "\x03\x05\x03\x05\x01\x01\x02\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 䚩
+ 0x46aa: "\x03\x05\x03\x05\x01\x01\x02\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 䚪
+ 0x46ab: "\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x03\x04\x03\x05\x03\x05\x01\x01\x02", // 䚫
+ 0x46ac: "\x03\x05\x03\x05\x01\x01\x02\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 䚬
+ 0x46ad: "\x03\x05\x03\x05\x01\x01\x02\x01\x02\x02\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 䚭
+ 0x46ae: "\x04\x01\x01\x01\x02\x05\x01\x05\x03", // 䚮
+ 0x46af: "\x04\x01\x01\x01\x02\x05\x01\x02\x02", // 䚯
+ 0x46b0: "\x04\x01\x01\x01\x02\x05\x01\x03\x05", // 䚰
+ 0x46b1: "\x04\x01\x01\x01\x02\x05\x01\x02\x03\x04", // 䚱
+ 0x46b2: "\x04\x01\x01\x01\x02\x05\x01\x03\x03\x03", // 䚲
+ 0x46b3: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x05\x04", // 䚳
+ 0x46b4: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x01\x01", // 䚴
+ 0x46b5: "\x04\x01\x01\x01\x02\x05\x01\x04\x04\x01\x02", // 䚵
+ 0x46b6: "\x04\x01\x01\x01\x02\x05\x01\x01\x01\x03\x04", // 䚶
+ 0x46b7: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x01\x05", // 䚷
+ 0x46b8: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x03\x02", // 䚸
+ 0x46b9: "\x04\x01\x01\x01\x02\x05\x01\x01\x05\x03\x05", // 䚹
+ 0x46ba: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x03\x04", // 䚺
+ 0x46bb: "\x03\x05\x04\x04\x04\x01\x01\x01\x02\x05\x01", // 䚻
+ 0x46bc: "\x04\x01\x01\x01\x02\x05\x01\x05\x02\x01\x01", // 䚼
+ 0x46bd: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x01\x05", // 䚽
+ 0x46be: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x02\x01", // 䚾
+ 0x46bf: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 䚿
+ 0x46c0: "\x04\x01\x01\x01\x02\x05\x01\x03\x03\x05\x04", // 䛀
+ 0x46c1: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01", // 䛁
+ 0x46c2: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x03\x02", // 䛂
+ 0x46c3: "\x04\x01\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 䛃
+ 0x46c4: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x04\x05\x05", // 䛄
+ 0x46c5: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x02", // 䛅
+ 0x46c6: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 䛆
+ 0x46c7: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x02\x05\x01", // 䛇
+ 0x46c8: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x01\x03\x04", // 䛈
+ 0x46c9: "\x04\x01\x01\x01\x02\x05\x01\x05\x01\x05\x01\x05", // 䛉
+ 0x46ca: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x03\x04", // 䛊
+ 0x46cb: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x05\x03\x04", // 䛋
+ 0x46cc: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x05\x01\x05", // 䛌
+ 0x46cd: "\x04\x01\x01\x01\x02\x05\x01\x05\x01\x05\x03\x02", // 䛍
+ 0x46ce: "\x04\x01\x01\x01\x02\x05\x01\x04\x04\x05\x03\x04", // 䛎
+ 0x46cf: "\x04\x01\x01\x01\x02\x05\x01\x05\x01\x03\x03\x05", // 䛏
+ 0x46d0: "\x05\x01\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01", // 䛐
+ 0x46d1: "\x04\x01\x01\x01\x02\x05\x01\x04\x05\x04\x03\x04", // 䛑
+ 0x46d2: "\x01\x02\x01\x01\x05\x04\x01\x01\x01\x02\x05\x01", // 䛒
+ 0x46d3: "\x02\x02\x03\x01\x04\x04\x01\x01\x01\x02\x05\x01", // 䛓
+ 0x46d4: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x02\x05\x02\x02", // 䛔
+ 0x46d5: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x03\x04", // 䛕
+ 0x46d6: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x05\x03", // 䛖
+ 0x46d7: "\x01\x02\x05\x01\x02\x05\x04\x01\x01\x01\x02\x05\x01", // 䛗
+ 0x46d8: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x03\x01\x02\x01", // 䛘
+ 0x46d9: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x01\x02\x03\x04", // 䛙
+ 0x46da: "\x01\x01\x01\x02\x05\x03\x04\x01\x01\x01\x02\x05\x01", // 䛚
+ 0x46db: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x02\x05\x01\x01", // 䛛
+ 0x46dc: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x05\x03\x04\x01", // 䛜
+ 0x46dd: "\x04\x01\x01\x01\x02\x05\x01\x05\x02\x01\x01\x02\x05\x02", // 䛝
+ 0x46de: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x01\x01\x02", // 䛞
+ 0x46df: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x04\x03\x04\x03\x04", // 䛟
+ 0x46e0: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x05\x01\x04\x03\x01", // 䛠
+ 0x46e1: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x01\x05\x02\x05\x01", // 䛡
+ 0x46e2: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x02\x03\x04\x03\x05", // 䛢
+ 0x46e3: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x01\x01\x05", // 䛣
+ 0x46e4: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x01\x03\x04", // 䛤
+ 0x46e5: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x01\x03\x02\x05\x02", // 䛥
+ 0x46e6: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x03\x04\x02\x05\x01", // 䛦
+ 0x46e7: "\x04\x01\x01\x01\x02\x05\x01\x04\x03\x01\x02\x03\x04\x05", // 䛧
+ 0x46e8: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 䛨
+ 0x46e9: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x05\x05\x01\x02\x01", // 䛩
+ 0x46ea: "\x04\x01\x01\x01\x02\x05\x01\x04\x04\x05\x03\x04\x05\x01\x05", // 䛪
+ 0x46eb: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x01\x01\x05\x03\x04", // 䛫
+ 0x46ec: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x03\x01\x01\x02\x05\x02", // 䛬
+ 0x46ed: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 䛭
+ 0x46ee: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x04\x02\x04\x02\x05\x01", // 䛮
+ 0x46ef: "\x04\x01\x01\x01\x02\x05\x01\x05\x01\x03\x01\x02\x02\x05\x01", // 䛯
+ 0x46f0: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x01\x05\x03\x05", // 䛰
+ 0x46f1: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x04\x05\x04\x04", // 䛱
+ 0x46f2: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x05\x01\x01\x02\x05\x02", // 䛲
+ 0x46f3: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x04\x02\x05\x01\x01\x05", // 䛳
+ 0x46f4: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x04\x01\x02\x05\x01\x02", // 䛴
+ 0x46f5: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x04\x03\x04\x05\x05\x04", // 䛵
+ 0x46f6: "\x04\x01\x01\x01\x02\x05\x01\x01\x01\x01\x02\x01\x02\x03\x04", // 䛶
+ 0x46f7: "\x04\x01\x01\x01\x02\x05\x01\x04\x04\x05\x03\x05\x04\x05\x05", // 䛷
+ 0x46f8: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x03\x02\x01\x02\x05\x01", // 䛸
+ 0x46f9: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x01\x03\x05\x03\x03\x03\x04", // 䛹
+ 0x46fa: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x01\x03\x04\x03\x02", // 䛺
+ 0x46fb: "\x04\x01\x01\x01\x02\x05\x01\x03\x03\x01\x02\x02\x05\x01\x01\x01", // 䛻
+ 0x46fc: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x01\x05\x01\x01\x01\x02\x01", // 䛼
+ 0x46fd: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x02\x03\x02\x01\x05\x01\x01", // 䛽
+ 0x46fe: "\x04\x01\x01\x01\x02\x05\x01\x01\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 䛾
+ 0x46ff: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 䛿
+ 0x4700: "\x04\x01\x01\x01\x02\x05\x01\x05\x03\x04\x05\x03\x04\x02\x01\x02\x01", // 䜀
+ 0x4701: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x01\x02\x01\x05\x01\x03\x04", // 䜁
+ 0x4702: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04\x01\x02", // 䜂
+ 0x4703: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02\x01", // 䜃
+ 0x4704: "\x04\x01\x01\x01\x02\x05\x01\x05\x01\x03\x02\x04\x01\x03\x04\x03\x01\x01\x02", // 䜄
+ 0x4705: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 䜅
+ 0x4706: "\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 䜆
+ 0x4707: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x03\x04\x05\x04\x03\x05\x03\x04", // 䜇
+ 0x4708: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 䜈
+ 0x4709: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04", // 䜉
+ 0x470a: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01", // 䜊
+ 0x470b: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 䜋
+ 0x470c: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04", // 䜌
+ 0x470d: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 䜍
+ 0x470e: "\x04\x01\x01\x01\x02\x05\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x05\x03", // 䜎
+ 0x470f: "\x04\x01\x01\x01\x02\x05\x01\x05\x02\x01\x03\x01\x02\x01\x02\x05\x01\x01", // 䜏
+ 0x4710: "\x05\x02\x01\x03\x01\x02\x01\x02\x05\x01\x01\x04\x01\x01\x01\x02\x05\x01", // 䜐
+ 0x4711: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x05\x05\x01\x02\x01\x04\x05\x04\x04", // 䜑
+ 0x4712: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x05\x04\x03\x01\x02\x03\x04\x01\x03\x04", // 䜒
+ 0x4713: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 䜓
+ 0x4714: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x01\x02\x01\x02\x05\x01\x01\x04\x05\x04", // 䜔
+ 0x4715: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 䜕
+ 0x4716: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 䜖
+ 0x4717: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x01\x02\x05\x01\x05\x03\x04\x04\x05\x04\x04", // 䜗
+ 0x4718: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x03\x05\x02\x05\x01\x03\x01\x03\x04", // 䜘
+ 0x4719: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x04\x04\x04\x04", // 䜙
+ 0x471a: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x02\x02\x01\x02\x03\x03\x04\x04\x04\x05\x04", // 䜚
+ 0x471b: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x02\x05\x01\x03\x05\x03\x05\x02\x05\x01\x03\x05", // 䜛
+ 0x471c: "\x04\x01\x01\x01\x02\x05\x01\x02\x01\x04\x05\x01\x03\x04\x03\x04\x02\x05\x01\x01\x01", // 䜜
+ 0x471d: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x05\x05\x04\x01\x05\x05\x04\x05\x05\x04\x05", // 䜝
+ 0x471e: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01", // 䜞
+ 0x471f: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 䜟
+ 0x4720: "\x04\x01\x01\x01\x02\x05\x01\x03\x03\x01\x02\x03\x03\x01\x02\x02\x05\x01\x01\x01\x03\x04", // 䜠
+ 0x4721: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x02\x05\x01\x01\x04\x05\x04\x05\x04\x04\x03\x05\x04", // 䜡
+ 0x4722: "\x04\x01\x01\x01\x02\x05\x01\x04\x04\x05\x01\x01\x01\x02\x02\x05\x02\x02\x01\x04\x05\x04\x04", // 䜢
+ 0x4723: "\x04\x05\x03\x03\x01\x02", // 䜣
+ 0x4724: "\x04\x05\x01\x02\x02\x01\x03\x04", // 䜤
+ 0x4725: "\x04\x05\x02\x05\x01\x01\x01\x05\x04", // 䜥
+ 0x4726: "\x04\x05\x01\x02\x02\x03\x05\x02\x05\x01\x01", // 䜦
+ 0x4727: "\x04\x05\x05\x03\x04\x05\x03\x04\x02\x01\x02\x01", // 䜧
+ 0x4728: "\x04\x05\x02\x05\x01\x02\x05\x01\x02\x04\x05\x04\x04", // 䜨
+ 0x4729: "\x04\x05\x01\x02\x02\x01\x02\x05\x01\x02\x01\x01\x03\x05\x04\x04\x04\x04", // 䜩
+ 0x472a: "\x03\x04\x03\x04\x02\x05\x01\x03\x05", // 䜪
+ 0x472b: "\x03\x04\x03\x04\x02\x05\x01\x01\x02\x01", // 䜫
+ 0x472c: "\x03\x04\x03\x04\x02\x05\x01\x02\x05\x01\x02\x01", // 䜬
+ 0x472d: "\x02\x01\x04\x05\x01\x03\x04\x03\x04\x02\x05\x01", // 䜭
+ 0x472e: "\x03\x04\x03\x04\x02\x05\x01\x04\x04\x05\x03\x01\x01\x02", // 䜮
+ 0x472f: "\x03\x04\x03\x04\x02\x05\x01\x03\x05\x04\x03\x01\x02\x03\x04", // 䜯
+ 0x4730: "\x03\x04\x03\x04\x02\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04\x01\x02", // 䜰
+ 0x4731: "\x03\x04\x03\x04\x02\x05\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 䜱
+ 0x4732: "\x03\x04\x03\x04\x02\x05\x01\x05\x05\x05\x02\x05\x03\x04\x01\x05\x04\x04\x05\x04\x04\x05", // 䜲
+ 0x4733: "\x01\x02\x05\x01\x04\x03\x01\x05", // 䜳
+ 0x4734: "\x01\x02\x05\x01\x04\x03\x01\x02\x01\x05\x04", // 䜴
+ 0x4735: "\x01\x02\x05\x01\x04\x03\x01\x05\x03\x02\x05\x04", // 䜵
+ 0x4736: "\x01\x02\x05\x01\x04\x03\x01\x03\x05\x04\x01\x05\x02", // 䜶
+ 0x4737: "\x01\x02\x05\x01\x04\x03\x01\x05\x01\x01\x04\x05\x05\x04", // 䜷
+ 0x4738: "\x01\x02\x05\x01\x04\x03\x01\x05\x01\x03\x03\x01\x01\x05", // 䜸
+ 0x4739: "\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x01\x02\x03\x04", // 䜹
+ 0x473a: "\x01\x02\x05\x01\x04\x03\x01\x01\x02\x02\x01\x02\x05\x01\x01", // 䜺
+ 0x473b: "\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 䜻
+ 0x473c: "\x05\x04\x05\x02\x03\x03\x01\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 䜼
+ 0x473d: "\x01\x02\x05\x01\x04\x03\x01\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 䜽
+ 0x473e: "\x01\x02\x05\x01\x04\x03\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 䜾
+ 0x473f: "\x01\x02\x05\x01\x02\x05\x03\x01\x04\x01\x02\x05\x01\x04\x03\x01", // 䜿
+ 0x4740: "\x01\x02\x05\x01\x04\x03\x01\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 䝀
+ 0x4741: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x01\x02\x05\x01\x04\x03\x01", // 䝁
+ 0x4742: "\x01\x02\x05\x01\x02\x05\x03\x05\x05\x04\x01\x02\x05\x01\x04\x03\x01", // 䝂
+ 0x4743: "\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x04\x04\x04\x04", // 䝃
+ 0x4744: "\x01\x02\x05\x01\x04\x03\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 䝄
+ 0x4745: "\x01\x03\x05\x03\x03\x03\x04\x01\x02\x01", // 䝅
+ 0x4746: "\x03\x05\x03\x03\x01\x03\x05\x03\x03\x03\x04", // 䝆
+ 0x4747: "\x03\x04\x03\x05\x01\x03\x05\x03\x03\x03\x04", // 䝇
+ 0x4748: "\x01\x03\x05\x03\x03\x03\x04\x03\x03\x01\x05\x05", // 䝈
+ 0x4749: "\x02\x02\x04\x03\x04\x05\x01\x03\x05\x03\x03\x03\x04", // 䝉
+ 0x474a: "\x01\x03\x05\x03\x03\x03\x04\x01\x05\x01\x01\x02\x01\x03\x04", // 䝊
+ 0x474b: "\x01\x03\x05\x03\x03\x03\x04\x04\x04\x05\x01\x01\x02\x03\x04", // 䝋
+ 0x474c: "\x01\x03\x05\x03\x03\x03\x04\x05\x04\x05\x04\x05\x04\x05\x04", // 䝌
+ 0x474d: "\x01\x03\x05\x03\x03\x03\x04\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 䝍
+ 0x474e: "\x01\x03\x05\x03\x03\x03\x04\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 䝎
+ 0x474f: "\x01\x03\x05\x03\x03\x03\x04\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 䝏
+ 0x4750: "\x01\x03\x05\x03\x03\x03\x04\x05\x02\x01\x03\x01\x02\x01\x02\x05\x01\x01", // 䝐
+ 0x4751: "\x01\x03\x05\x03\x03\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 䝑
+ 0x4752: "\x01\x03\x05\x03\x03\x03\x04\x01\x02\x02\x01\x01\x01\x05\x04\x03\x02\x03\x03\x03\x04", // 䝒
+ 0x4753: "\x01\x03\x05\x03\x03\x03\x04\x05\x05\x05\x02\x05\x03\x04\x01\x05\x04\x04\x05\x04\x04\x05", // 䝓
+ 0x4754: "\x01\x03\x05\x03\x03\x03\x04\x01\x02\x02\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 䝔
+ 0x4755: "\x01\x03\x05\x03\x03\x03\x04\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01", // 䝕
+ 0x4756: "\x03\x04\x04\x03\x05\x03\x03\x03\x03\x02\x04", // 䝖
+ 0x4757: "\x03\x04\x04\x03\x05\x03\x03\x01\x02\x03\x04", // 䝗
+ 0x4758: "\x03\x04\x04\x03\x05\x03\x03\x03\x05\x05\x04", // 䝘
+ 0x4759: "\x03\x04\x04\x03\x05\x03\x03\x01\x03\x04\x05", // 䝙
+ 0x475a: "\x03\x04\x04\x03\x05\x03\x03\x05\x01\x03\x03\x05", // 䝚
+ 0x475b: "\x03\x04\x04\x03\x05\x03\x03\x05\x03\x02\x05\x04", // 䝛
+ 0x475c: "\x03\x04\x04\x03\x05\x03\x03\x05\x04\x03\x04\x03\x05\x04", // 䝜
+ 0x475d: "\x03\x04\x04\x03\x05\x03\x03\x01\x03\x04\x01\x02\x05\x01\x02", // 䝝
+ 0x475e: "\x03\x04\x04\x03\x05\x03\x03\x02\x01\x05\x03\x01\x05\x03\x05", // 䝞
+ 0x475f: "\x03\x04\x04\x03\x05\x03\x03\x01\x01\x01\x02\x05\x03\x01\x03\x04", // 䝟
+ 0x4760: "\x03\x04\x04\x03\x05\x03\x03\x01\x03\x03\x02\x05\x01\x01\x02\x03\x04", // 䝠
+ 0x4761: "\x03\x04\x04\x03\x05\x03\x03\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04", // 䝡
+ 0x4762: "\x03\x04\x04\x03\x05\x03\x03\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 䝢
+ 0x4763: "\x03\x04\x04\x03\x05\x03\x03\x04\x04\x01\x01\x05\x01\x05\x01\x02\x03\x04", // 䝣
+ 0x4764: "\x03\x04\x04\x03\x05\x03\x03\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 䝤
+ 0x4765: "\x03\x04\x04\x03\x05\x03\x03\x03\x02\x05\x01\x01\x01\x04\x01\x03\x04\x01\x02", // 䝥
+ 0x4766: "\x03\x04\x04\x03\x05\x03\x03\x03\x02\x05\x02\x02\x01\x03\x02\x03\x03\x03\x04", // 䝦
+ 0x4767: "\x02\x05\x01\x01\x01\x03\x04\x03\x05\x04\x01", // 䝧
+ 0x4768: "\x02\x02\x05\x04\x02\x05\x01\x01\x01\x03\x04", // 䝨
+ 0x4769: "\x02\x05\x01\x01\x01\x03\x04\x03\x04\x03\x03\x03", // 䝩
+ 0x476a: "\x02\x05\x01\x01\x01\x03\x04\x05\x02\x01\x03\x04", // 䝪
+ 0x476b: "\x02\x05\x01\x01\x01\x03\x04\x03\x01\x02\x01\x01", // 䝫
+ 0x476c: "\x02\x05\x01\x01\x01\x03\x04\x04\x01\x01\x02\x01", // 䝬
+ 0x476d: "\x02\x05\x01\x01\x01\x03\x04\x03\x05\x02\x05\x01", // 䝭
+ 0x476e: "\x02\x05\x01\x01\x01\x03\x04\x04\x01\x05\x05\x04", // 䝮
+ 0x476f: "\x02\x05\x01\x01\x01\x03\x04\x03\x01\x05\x02\x05", // 䝯
+ 0x4770: "\x02\x05\x01\x01\x01\x03\x04\x01\x02\x01\x01\x02\x04", // 䝰
+ 0x4771: "\x05\x03\x05\x03\x05\x03\x02\x05\x01\x01\x01\x03\x04", // 䝱
+ 0x4772: "\x02\x05\x01\x01\x01\x03\x04\x05\x01\x03\x04\x04", // 䝲
+ 0x4773: "\x02\x01\x03\x05\x04\x05\x04\x02\x05\x01\x01\x01\x03\x04", // 䝳
+ 0x4774: "\x01\x02\x05\x01\x02\x04\x05\x02\x05\x01\x01\x01\x03\x04", // 䝴
+ 0x4775: "\x02\x05\x01\x01\x01\x03\x04\x01\x02\x05\x01\x01\x02\x04", // 䝵
+ 0x4776: "\x02\x05\x01\x01\x01\x03\x04\x04\x01\x02\x05\x01\x02\x03\x04", // 䝶
+ 0x4777: "\x03\x01\x01\x03\x04\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 䝷
+ 0x4778: "\x02\x05\x01\x01\x01\x03\x04\x01\x02\x02\x01\x02\x05\x04", // 䝸
+ 0x4779: "\x02\x05\x01\x01\x01\x03\x04\x04\x04\x05\x03\x05\x04\x05\x05", // 䝹
+ 0x477a: "\x04\x01\x03\x04\x04\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 䝺
+ 0x477b: "\x02\x05\x01\x01\x01\x03\x04\x05\x01\x03\x01\x02\x02\x05\x01", // 䝻
+ 0x477c: "\x02\x05\x01\x01\x01\x03\x04\x01\x01\x02\x01\x02\x05\x01\x01", // 䝼
+ 0x477d: "\x02\x05\x01\x01\x01\x03\x04\x01\x03\x01\x02\x01\x01\x02\x01", // 䝽
+ 0x477e: "\x01\x01\x02\x01\x02\x01\x05\x04\x02\x05\x01\x01\x01\x03\x04", // 䝾
+ 0x477f: "\x03\x02\x01\x05\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 䝿
+ 0x4780: "\x02\x05\x01\x01\x01\x03\x04\x03\x02\x05\x01\x03\x01\x01\x03\x04", // 䞀
+ 0x4781: "\x02\x05\x01\x01\x01\x03\x04\x01\x02\x05\x01\x01\x05\x03\x01\x05", // 䞁
+ 0x4782: "\x02\x05\x01\x01\x01\x03\x04\x01\x03\x02\x05\x02\x02\x01\x03\x04", // 䞂
+ 0x4783: "\x02\x05\x01\x01\x01\x03\x04\x01\x05\x04\x01\x02\x01\x03\x01\x03\x04", // 䞃
+ 0x4784: "\x04\x01\x05\x03\x03\x01\x05\x02\x05\x02\x05\x01\x01\x01\x03\x04", // 䞄
+ 0x4785: "\x02\x05\x01\x01\x01\x03\x04\x01\x03\x01\x01\x05\x03\x04\x02\x05\x01", // 䞅
+ 0x4786: "\x02\x05\x01\x01\x01\x03\x04\x02\x04\x03\x02\x05\x01\x01\x01\x03\x04", // 䞆
+ 0x4787: "\x01\x02\x01\x03\x04\x01\x02\x01\x03\x05\x04\x02\x05\x01\x01\x01\x03\x04", // 䞇
+ 0x4788: "\x02\x05\x01\x01\x01\x03\x04\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04", // 䞈
+ 0x4789: "\x02\x05\x01\x01\x01\x03\x04\x04\x03\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 䞉
+ 0x478a: "\x02\x05\x01\x01\x01\x03\x04\x02\x01\x05\x03\x01\x05\x03\x04\x03\x04\x02\x05\x01\x01\x01", // 䞊
+ 0x478b: "\x02\x05\x01\x01\x01\x03\x04\x04\x01\x04\x03\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 䞋
+ 0x478c: "\x02\x05\x03\x04\x03\x01\x02\x02\x05\x01", // 䞌
+ 0x478d: "\x02\x05\x03\x04\x01\x01\x02\x01\x02\x05\x01\x01", // 䞍
+ 0x478e: "\x02\x05\x03\x04\x02\x05\x01\x01\x02\x05\x01\x01", // 䞎
+ 0x478f: "\x02\x05\x03\x04\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 䞏
+ 0x4790: "\x02\x05\x03\x04\x01\x01\x01\x03\x04\x02\x05\x01\x01", // 䞐
+ 0x4791: "\x01\x02\x01\x03\x02\x03\x04\x01\x02\x01", // 䞑
+ 0x4792: "\x01\x02\x01\x03\x02\x03\x04\x02\x05\x01\x02\x05\x01", // 䞒
+ 0x4793: "\x01\x02\x01\x03\x02\x03\x04\x01\x05\x05\x05\x01\x02\x01", // 䞓
+ 0x4794: "\x01\x02\x01\x03\x02\x03\x04\x05\x01\x03\x03\x01\x01\x05", // 䞔
+ 0x4795: "\x01\x02\x01\x03\x02\x03\x04\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02", // 䞕
+ 0x4796: "\x01\x02\x01\x02\x01\x03\x04\x01\x05\x04", // 䞖
+ 0x4797: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x03", // 䞗
+ 0x4798: "\x01\x02\x01\x02\x01\x03\x04\x03\x01\x05", // 䞘
+ 0x4799: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x05\x02", // 䞙
+ 0x479a: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x05\x04", // 䞚
+ 0x479b: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x05\x05", // 䞛
+ 0x479c: "\x01\x02\x01\x02\x01\x03\x04\x01\x03\x02\x04", // 䞜
+ 0x479d: "\x01\x02\x01\x02\x01\x03\x04\x01\x01\x02\x01\x04", // 䞝
+ 0x479e: "\x01\x02\x01\x02\x01\x03\x04\x05\x01\x05\x03\x02", // 䞞
+ 0x479f: "\x01\x02\x01\x02\x01\x03\x04\x03\x02\x05\x01\x01", // 䞟
+ 0x47a0: "\x01\x02\x01\x02\x01\x03\x04\x01\x03\x02\x05\x01", // 䞠
+ 0x47a1: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x01\x01\x01", // 䞡
+ 0x47a2: "\x01\x02\x01\x02\x01\x03\x04\x03\x01\x02\x01\x01", // 䞢
+ 0x47a3: "\x01\x02\x01\x02\x01\x03\x04\x03\x03\x01\x02\x04", // 䞣
+ 0x47a4: "\x01\x02\x01\x02\x01\x03\x04\x03\x05\x02\x05\x01", // 䞤
+ 0x47a5: "\x01\x02\x01\x02\x01\x03\x04\x01\x03\x02\x05\x01\x01", // 䞥
+ 0x47a6: "\x01\x02\x01\x02\x01\x03\x04\x03\x05\x04\x02\x05\x01", // 䞦
+ 0x47a7: "\x01\x02\x01\x02\x01\x03\x04\x03\x03\x01\x02\x05\x01", // 䞧
+ 0x47a8: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x01\x01\x02\x01", // 䞨
+ 0x47a9: "\x01\x02\x01\x02\x01\x03\x04\x03\x04\x01\x02\x05\x01", // 䞩
+ 0x47aa: "\x01\x02\x01\x02\x01\x03\x04\x01\x03\x03\x01\x02\x05", // 䞪
+ 0x47ab: "\x01\x02\x01\x02\x01\x03\x04\x05\x01\x01\x03\x02\x05\x01", // 䞫
+ 0x47ac: "\x01\x02\x01\x02\x01\x03\x04\x03\x01\x02\x03\x04\x05\x03", // 䞬
+ 0x47ad: "\x01\x02\x01\x02\x01\x03\x04\x05\x04\x03\x04\x03\x05\x04", // 䞭
+ 0x47ae: "\x01\x02\x01\x02\x01\x03\x04\x03\x04\x01\x01\x02\x03\x04", // 䞮
+ 0x47af: "\x01\x02\x01\x02\x01\x03\x04\x03\x04\x04\x03\x05\x02\x01", // 䞯
+ 0x47b0: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x01\x03\x02\x03\x04", // 䞰
+ 0x47b1: "\x01\x02\x01\x02\x01\x03\x04\x03\x04\x03\x04\x02\x05\x01", // 䞱
+ 0x47b2: "\x01\x02\x01\x02\x01\x03\x04\x03\x01\x02\x01\x05\x03\x04", // 䞲
+ 0x47b3: "\x01\x02\x01\x02\x01\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01", // 䞳
+ 0x47b4: "\x01\x02\x01\x02\x01\x03\x04\x03\x05\x01\x02\x01\x02\x05\x01", // 䞴
+ 0x47b5: "\x01\x02\x01\x02\x01\x03\x04\x05\x04\x05\x04\x05\x04\x05\x04", // 䞵
+ 0x47b6: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x01\x01\x03\x05\x03\x03", // 䞶
+ 0x47b7: "\x01\x02\x01\x02\x01\x03\x04\x05\x01\x03\x05\x02\x02\x05\x02", // 䞷
+ 0x47b8: "\x01\x02\x01\x02\x01\x03\x04\x01\x01\x02\x03\x04\x02\x05\x01", // 䞸
+ 0x47b9: "\x01\x02\x01\x02\x01\x03\x04\x03\x02\x05\x01\x01\x01\x01\x02\x01", // 䞹
+ 0x47ba: "\x01\x02\x01\x02\x01\x03\x04\x03\x03\x01\x02\x02\x05\x01\x01\x01", // 䞺
+ 0x47bb: "\x01\x02\x01\x02\x01\x03\x04\x05\x04\x02\x05\x01\x01\x02\x05\x03", // 䞻
+ 0x47bc: "\x01\x02\x01\x02\x01\x03\x04\x05\x05\x01\x03\x05\x03\x03\x03\x04", // 䞼
+ 0x47bd: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x04\x05\x05\x05\x04\x02\x03\x04", // 䞽
+ 0x47be: "\x01\x02\x01\x02\x01\x03\x04\x03\x03\x02\x01\x05\x03\x01\x05\x03\x05", // 䞾
+ 0x47bf: "\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x01\x02\x01\x02\x01\x03\x04", // 䞿
+ 0x47c0: "\x01\x02\x01\x02\x01\x03\x04\x04\x03\x01\x01\x01\x03\x01\x02\x01", // 䟀
+ 0x47c1: "\x01\x02\x01\x02\x01\x03\x04\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 䟁
+ 0x47c2: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 䟂
+ 0x47c3: "\x01\x02\x01\x02\x01\x03\x04\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 䟃
+ 0x47c4: "\x01\x02\x01\x02\x01\x03\x04\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 䟄
+ 0x47c5: "\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02\x01\x02\x01\x02\x01\x03\x04", // 䟅
+ 0x47c6: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x01\x01\x01\x02\x02\x01\x01\x02", // 䟆
+ 0x47c7: "\x01\x02\x01\x02\x01\x03\x04\x05\x05\x04\x05\x05\x04\x01\x03\x04\x05\x03\x04", // 䟇
+ 0x47c8: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x01\x02\x05\x01\x01\x01\x02\x01\x05\x03\x04", // 䟈
+ 0x47c9: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 䟉
+ 0x47ca: "\x01\x02\x01\x02\x01\x03\x04\x02\x01\x05\x03\x01\x05\x01\x03\x05\x03\x03\x03\x04", // 䟊
+ 0x47cb: "\x01\x02\x01\x02\x01\x03\x04\x03\x05\x01\x03\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 䟋
+ 0x47cc: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03\x04", // 䟌
+ 0x47cd: "\x01\x02\x01\x02\x01\x03\x04\x03\x02\x05\x01\x01\x01\x04\x04\x05\x03\x04\x04\x01\x05\x03", // 䟍
+ 0x47ce: "\x01\x02\x01\x02\x01\x03\x04\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 䟎
+ 0x47cf: "\x01\x02\x01\x02\x01\x03\x04\x03\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x03\x04", // 䟏
+ 0x47d0: "\x01\x02\x01\x02\x01\x03\x04\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 䟐
+ 0x47d1: "\x01\x02\x01\x02\x01\x03\x04\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02", // 䟑
+ 0x47d2: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x02\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 䟒
+ 0x47d3: "\x02\x05\x01\x02\x01\x02\x01\x01\x02", // 䟓
+ 0x47d4: "\x02\x05\x01\x02\x01\x02\x01\x02\x04", // 䟔
+ 0x47d5: "\x02\x05\x01\x02\x01\x02\x01\x05\x04\x04", // 䟕
+ 0x47d6: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x02", // 䟖
+ 0x47d7: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x01\x05", // 䟗
+ 0x47d8: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x03\x05", // 䟘
+ 0x47d9: "\x02\x05\x01\x02\x01\x02\x01\x01\x05\x05\x03", // 䟙
+ 0x47da: "\x02\x05\x01\x02\x01\x02\x01\x01\x01\x03\x02", // 䟚
+ 0x47db: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x05\x02", // 䟛
+ 0x47dc: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x03\x04", // 䟜
+ 0x47dd: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x05\x04", // 䟝
+ 0x47de: "\x02\x05\x01\x02\x01\x02\x01\x02\x03\x04\x03", // 䟞
+ 0x47df: "\x03\x03\x01\x02\x04\x02\x05\x01\x02\x01\x03\x04", // 䟟
+ 0x47e0: "\x02\x05\x01\x02\x01\x02\x01\x01\x05\x05\x03\x04", // 䟠
+ 0x47e1: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x01\x05\x04", // 䟡
+ 0x47e2: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x02\x03\x04", // 䟢
+ 0x47e3: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x03\x04\x04", // 䟣
+ 0x47e4: "\x02\x05\x01\x02\x01\x02\x01\x04\x05\x04\x03\x04", // 䟤
+ 0x47e5: "\x02\x05\x01\x02\x01\x02\x01\x05\x04\x05\x02\x03", // 䟥
+ 0x47e6: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x03\x05\x04", // 䟦
+ 0x47e7: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x02\x01", // 䟧
+ 0x47e8: "\x02\x05\x01\x02\x01\x02\x01\x05\x01\x05\x01\x05", // 䟨
+ 0x47e9: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x01\x05\x04", // 䟩
+ 0x47ea: "\x02\x05\x01\x02\x01\x02\x01\x03\x04\x05\x04", // 䟪
+ 0x47eb: "\x02\x04\x03\x04\x05\x02\x05\x01\x02\x01\x03\x04", // 䟫
+ 0x47ec: "\x02\x05\x01\x02\x01\x02\x01\x03\x02\x01\x02\x01", // 䟬
+ 0x47ed: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x02\x01\x01", // 䟭
+ 0x47ee: "\x02\x05\x01\x02\x01\x02\x01\x03\x02\x01\x03\x04\x04", // 䟮
+ 0x47ef: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x02\x02\x05\x01", // 䟯
+ 0x47f0: "\x02\x05\x01\x02\x01\x02\x01\x03\x03\x02\x01\x01\x02", // 䟰
+ 0x47f1: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x05\x02\x03\x04", // 䟱
+ 0x47f2: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x05\x04\x03\x05", // 䟲
+ 0x47f3: "\x02\x05\x01\x02\x01\x03\x04\x05\x04\x01\x05\x04\x01", // 䟳
+ 0x47f4: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x01\x01\x05\x03\x04", // 䟴
+ 0x47f5: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x04\x01\x03\x04\x04", // 䟵
+ 0x47f6: "\x02\x05\x01\x02\x01\x02\x01\x03\x04\x03\x04\x01\x02\x01", // 䟶
+ 0x47f7: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x01\x03\x03\x01\x02", // 䟷
+ 0x47f8: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x04\x04\x01\x03\x02", // 䟸
+ 0x47f9: "\x02\x05\x01\x02\x01\x02\x01\x03\x04\x04\x03\x01\x02\x04", // 䟹
+ 0x47fa: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 䟺
+ 0x47fb: "\x02\x05\x01\x02\x01\x02\x01\x03\x04\x01\x01\x02\x03\x04", // 䟻
+ 0x47fc: "\x02\x05\x01\x02\x01\x02\x01\x01\x01\x02\x01\x02\x01\x05\x04", // 䟼
+ 0x47fd: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x05\x04\x03\x02\x05", // 䟽
+ 0x47fe: "\x02\x05\x01\x02\x01\x02\x01\x05\x04\x05\x04\x05\x04\x05\x04", // 䟾
+ 0x47ff: "\x02\x05\x01\x02\x01\x02\x01\x05\x01\x01\x02\x04\x01\x03\x04", // 䟿
+ 0x4800: "\x02\x05\x01\x02\x01\x02\x01\x02\x04\x03\x02\x05\x02\x05\x01", // 䠀
+ 0x4801: "\x02\x05\x01\x02\x01\x02\x01\x05\x04\x05\x04\x05\x04\x01\x01", // 䠁
+ 0x4802: "\x01\x02\x03\x04\x01\x02\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 䠂
+ 0x4803: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x05\x02\x03\x04\x03\x04", // 䠃
+ 0x4804: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x02\x02\x01\x03\x04", // 䠄
+ 0x4805: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x03\x01\x02\x03\x04\x01", // 䠅
+ 0x4806: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x01\x01\x01\x05\x03\x04", // 䠆
+ 0x4807: "\x02\x05\x01\x02\x01\x02\x01\x05\x01\x03\x05\x02\x02\x05\x02", // 䠇
+ 0x4808: "\x02\x05\x01\x02\x01\x02\x01\x05\x01\x01\x02\x04\x01\x03\x04", // 䠈
+ 0x4809: "\x02\x05\x01\x02\x01\x02\x01\x04\x04\x05\x02\x05\x01\x05\x01", // 䠉
+ 0x480a: "\x02\x05\x01\x02\x01\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01", // 䠊
+ 0x480b: "\x02\x05\x01\x02\x01\x02\x01\x03\x02\x05\x01\x01\x03\x01\x02", // 䠋
+ 0x480c: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x03\x04\x02\x05\x01\x01", // 䠌
+ 0x480d: "\x02\x05\x01\x02\x01\x02\x01\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 䠍
+ 0x480e: "\x02\x05\x01\x02\x01\x02\x01\x05\x01\x03\x01\x05\x04\x01\x02\x01", // 䠎
+ 0x480f: "\x02\x05\x01\x02\x01\x02\x01\x05\x04\x03\x03\x04\x01\x01\x03\x04", // 䠏
+ 0x4810: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x01\x03\x04\x04", // 䠐
+ 0x4811: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x04\x01\x02\x01\x01\x02\x01", // 䠑
+ 0x4812: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x05\x01\x03\x05\x01\x01", // 䠒
+ 0x4813: "\x02\x05\x01\x02\x01\x02\x01\x04\x03\x01\x02\x05\x03\x05\x01\x01", // 䠓
+ 0x4814: "\x02\x05\x01\x02\x01\x02\x01\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 䠔
+ 0x4815: "\x02\x05\x01\x02\x01\x02\x01\x02\x01\x02\x01\x03\x05\x01\x02\x03\x04", // 䠕
+ 0x4816: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x03\x05\x03\x04\x02\x05\x01", // 䠖
+ 0x4817: "\x02\x05\x01\x02\x01\x02\x01\x03\x02\x05\x01\x01\x01\x01\x03\x04\x04", // 䠗
+ 0x4818: "\x02\x05\x01\x02\x01\x02\x01\x03\x02\x05\x03\x04\x01\x01\x05\x03\x05", // 䠘
+ 0x4819: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03", // 䠙
+ 0x481a: "\x02\x05\x01\x02\x01\x02\x01\x04\x04\x05\x03\x04\x03\x03\x05\x04\x04", // 䠚
+ 0x481b: "\x02\x05\x01\x02\x01\x02\x01\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02", // 䠛
+ 0x481c: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x01\x02\x02\x01\x01\x01", // 䠜
+ 0x481d: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 䠝
+ 0x481e: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x02\x01\x01\x02\x03\x04\x05\x03\x04", // 䠞
+ 0x481f: "\x01\x02\x01\x04\x03\x01\x01\x02\x05\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 䠟
+ 0x4820: "\x01\x02\x02\x01\x03\x05\x04\x05\x02\x05\x02\x02\x05\x01\x02\x01\x03\x04", // 䠠
+ 0x4821: "\x02\x05\x01\x02\x01\x02\x01\x02\x01\x05\x03\x03\x05\x02\x05\x01\x01\x01", // 䠡
+ 0x4822: "\x01\x02\x02\x02\x05\x02\x02\x01\x04\x05\x02\x05\x01\x02\x01\x03\x04", // 䠢
+ 0x4823: "\x02\x05\x01\x02\x01\x02\x01\x05\x01\x05\x05\x01\x05\x01\x02\x02\x01\x03\x04", // 䠣
+ 0x4824: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 䠤
+ 0x4825: "\x02\x05\x01\x02\x01\x02\x01\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04", // 䠥
+ 0x4826: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x01\x03\x04\x02\x05\x01\x02\x05\x01\x01", // 䠦
+ 0x4827: "\x02\x05\x01\x02\x01\x02\x01\x05\x01\x03\x01\x02\x01\x03\x02\x05\x01\x01", // 䠧
+ 0x4828: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x01\x03\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 䠨
+ 0x4829: "\x02\x05\x01\x02\x01\x02\x01\x02\x01\x02\x01\x01\x03\x01\x02\x03\x03\x05\x03\x04", // 䠩
+ 0x482a: "\x02\x05\x01\x02\x01\x02\x01\x05\x05\x04\x05\x05\x04\x01\x05\x05\x04\x05\x05\x04\x05", // 䠪
+ 0x482b: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x01\x01\x01\x05\x04\x03\x02\x03\x03\x03\x04", // 䠫
+ 0x482c: "\x02\x05\x01\x02\x01\x02\x01\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01\x05\x02", // 䠬
+ 0x482d: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x05\x01\x02\x03\x04\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 䠭
+ 0x482e: "\x02\x05\x01\x02\x01\x02\x01\x04\x03\x01\x01\x03\x04\x01\x02\x01\x01\x01\x02\x05\x04\x04\x04\x04", // 䠮
+ 0x482f: "\x02\x05\x01\x02\x01\x02\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02", // 䠯
+ 0x4830: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 䠰
+ 0x4831: "\x02\x05\x01\x02\x01\x02\x01\x05\x01\x03\x02\x04\x01\x03\x04\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 䠱
+ 0x4832: "\x03\x02\x05\x01\x01\x01\x03\x03\x04\x04\x05\x04", // 䠲
+ 0x4833: "\x03\x02\x05\x01\x01\x01\x03\x05\x02\x02\x05\x02", // 䠳
+ 0x4834: "\x03\x02\x05\x01\x01\x01\x03\x04\x01\x04\x03\x01", // 䠴
+ 0x4835: "\x03\x02\x05\x01\x01\x01\x03\x03\x02\x01\x02\x04", // 䠵
+ 0x4836: "\x03\x02\x05\x01\x01\x01\x03\x03\x01\x01\x03\x04", // 䠶
+ 0x4837: "\x03\x02\x05\x01\x01\x01\x03\x03\x04\x01\x05\x03\x04", // 䠷
+ 0x4838: "\x03\x02\x05\x01\x01\x01\x03\x01\x03\x04\x01\x01\x05", // 䠸
+ 0x4839: "\x03\x02\x05\x01\x01\x01\x03\x04\x01\x05\x03\x03\x04", // 䠹
+ 0x483a: "\x03\x02\x05\x01\x01\x01\x03\x02\x04\x05\x02\x05\x01", // 䠺
+ 0x483b: "\x03\x02\x05\x01\x01\x01\x03\x04\x04\x05\x03\x04\x05\x01\x05", // 䠻
+ 0x483c: "\x03\x02\x05\x01\x01\x01\x03\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 䠼
+ 0x483d: "\x03\x02\x05\x01\x01\x01\x03\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 䠽
+ 0x483e: "\x03\x02\x05\x01\x01\x01\x03\x05\x01\x01\x02\x02\x05\x01\x01\x03\x04", // 䠾
+ 0x483f: "\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 䠿
+ 0x4840: "\x03\x02\x05\x01\x01\x01\x03\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 䡀
+ 0x4841: "\x03\x02\x05\x01\x01\x01\x03\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01\x01\x01", // 䡁
+ 0x4842: "\x01\x02\x05\x01\x01\x01\x02\x05\x02", // 䡂
+ 0x4843: "\x01\x02\x05\x01\x01\x01\x02\x05\x03", // 䡃
+ 0x4844: "\x01\x02\x05\x01\x01\x01\x02\x03\x05", // 䡄
+ 0x4845: "\x01\x02\x05\x01\x01\x01\x02\x03\x02\x02", // 䡅
+ 0x4846: "\x01\x02\x05\x01\x01\x01\x02\x03\x04\x05\x04", // 䡆
+ 0x4847: "\x01\x02\x05\x01\x01\x01\x02\x01\x01\x03\x05", // 䡇
+ 0x4848: "\x01\x02\x05\x01\x01\x01\x02\x03\x04\x03\x04", // 䡈
+ 0x4849: "\x01\x02\x05\x01\x01\x01\x02\x04\x01\x03\x05", // 䡉
+ 0x484a: "\x01\x02\x05\x01\x01\x01\x02\x03\x03\x05\x04", // 䡊
+ 0x484b: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x04", // 䡋
+ 0x484c: "\x01\x02\x05\x01\x01\x01\x02\x01\x03\x05\x04", // 䡌
+ 0x484d: "\x01\x02\x05\x01\x01\x01\x02\x01\x01\x03\x04", // 䡍
+ 0x484e: "\x01\x02\x05\x01\x01\x01\x02\x04\x05\x01\x03", // 䡎
+ 0x484f: "\x01\x02\x05\x01\x01\x01\x02\x05\x01\x05\x05\x04", // 䡏
+ 0x4850: "\x01\x02\x05\x01\x01\x01\x02\x04\x04\x05\x03\x05", // 䡐
+ 0x4851: "\x01\x02\x05\x01\x01\x01\x02\x05\x01\x05\x01\x05", // 䡑
+ 0x4852: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x02\x01", // 䡒
+ 0x4853: "\x03\x03\x02\x01\x02\x05\x01\x01\x01\x02\x01\x01\x02", // 䡓
+ 0x4854: "\x01\x02\x05\x01\x01\x01\x02\x03\x05\x04\x03\x05\x04", // 䡔
+ 0x4855: "\x01\x02\x05\x01\x01\x01\x02\x05\x02\x05\x03\x04\x01", // 䡕
+ 0x4856: "\x01\x02\x05\x01\x01\x01\x02\x01\x03\x04\x01\x02\x01", // 䡖
+ 0x4857: "\x01\x02\x01\x03\x05\x04\x01\x02\x05\x01\x01\x01\x02", // 䡗
+ 0x4858: "\x01\x02\x05\x01\x01\x01\x02\x03\x05\x02\x05\x01\x02\x01", // 䡘
+ 0x4859: "\x01\x02\x05\x01\x01\x01\x02\x04\x05\x01\x01\x05\x03\x04", // 䡙
+ 0x485a: "\x01\x02\x05\x01\x01\x01\x02\x03\x02\x05\x01\x01\x03\x05", // 䡚
+ 0x485b: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x02", // 䡛
+ 0x485c: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x01\x03\x04\x01\x02\x01", // 䡜
+ 0x485d: "\x01\x02\x05\x01\x01\x01\x02\x04\x04\x05\x03\x05\x04\x05\x05", // 䡝
+ 0x485e: "\x02\x05\x01\x01\x01\x01\x03\x04\x01\x02\x05\x01\x01\x01\x02", // 䡞
+ 0x485f: "\x01\x02\x05\x01\x01\x01\x02\x03\x02\x05\x01\x01\x03\x01\x02", // 䡟
+ 0x4860: "\x01\x02\x05\x01\x01\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 䡠
+ 0x4861: "\x01\x02\x05\x01\x01\x01\x02\x01\x05\x03\x05\x03\x02\x05\x01\x01", // 䡡
+ 0x4862: "\x01\x02\x05\x01\x01\x01\x02\x04\x05\x01\x03\x02\x05\x01\x02\x02", // 䡢
+ 0x4863: "\x01\x02\x05\x01\x01\x01\x02\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 䡣
+ 0x4864: "\x01\x02\x01\x03\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x02", // 䡤
+ 0x4865: "\x01\x02\x05\x01\x01\x01\x02\x04\x04\x05\x03\x04\x03\x04\x02\x05\x01", // 䡥
+ 0x4866: "\x01\x02\x05\x01\x01\x01\x02\x05\x04\x05\x04\x05\x04\x01\x02\x03\x04", // 䡦
+ 0x4867: "\x01\x02\x05\x01\x01\x01\x02\x03\x02\x05\x01\x01\x05\x04\x04\x04\x04", // 䡧
+ 0x4868: "\x04\x03\x01\x01\x01\x03\x01\x02\x01\x01\x02\x05\x01\x01\x01\x02", // 䡨
+ 0x4869: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 䡩
+ 0x486a: "\x01\x02\x05\x01\x01\x01\x02\x04\x05\x01\x03\x05\x04\x01\x05\x04\x01", // 䡪
+ 0x486b: "\x01\x02\x05\x01\x01\x01\x02\x03\x05\x04\x01\x01\x01\x02\x04\x05\x04", // 䡫
+ 0x486c: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 䡬
+ 0x486d: "\x01\x02\x05\x01\x01\x01\x02\x04\x03\x01\x01\x01\x03\x05\x01\x02\x01", // 䡭
+ 0x486e: "\x01\x02\x05\x01\x01\x01\x02\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04", // 䡮
+ 0x486f: "\x01\x02\x05\x01\x01\x01\x02\x03\x02\x05\x03\x05\x04\x01\x04\x05\x04\x04", // 䡯
+ 0x4870: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04\x01\x02\x05\x01\x01\x01\x02", // 䡰
+ 0x4871: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 䡱
+ 0x4872: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 䡲
+ 0x4873: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x02\x01\x01\x01\x03\x04\x03\x03\x01\x02", // 䡳
+ 0x4874: "\x01\x02\x05\x01\x01\x01\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 䡴
+ 0x4875: "\x01\x02\x05\x01\x01\x01\x02\x03\x04\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 䡵
+ 0x4876: "\x01\x02\x05\x01\x01\x01\x02\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 䡶
+ 0x4877: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x02\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 䡷
+ 0x4878: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x02\x02\x05\x02\x02\x01\x01\x05\x05\x03\x04", // 䡸
+ 0x4879: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x04\x05\x02\x05\x01\x02\x01\x05\x02\x01\x03\x04", // 䡹
+ 0x487a: "\x01\x02\x05\x01\x01\x01\x02\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 䡺
+ 0x487b: "\x01\x02\x05\x01\x01\x01\x02\x03\x02\x05\x01\x01\x01\x04\x04\x05\x03\x04\x04\x01\x05\x03", // 䡻
+ 0x487c: "\x01\x02\x05\x01\x01\x01\x02\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 䡼
+ 0x487d: "\x01\x02\x05\x01\x01\x01\x02\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 䡽
+ 0x487e: "\x01\x02\x05\x01\x01\x01\x02\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x03\x04\x04", // 䡾
+ 0x487f: "\x01\x02\x05\x01\x01\x01\x02\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x03\x04\x01", // 䡿
+ 0x4880: "\x01\x05\x02\x01\x03\x01\x05", // 䢀
+ 0x4881: "\x01\x05\x02\x01\x03\x05\x01\x01", // 䢁
+ 0x4882: "\x01\x05\x02\x01\x04\x01\x04\x03\x01", // 䢂
+ 0x4883: "\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x03\x04", // 䢃
+ 0x4884: "\x05\x04\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x01\x02\x03\x04\x01\x02\x03\x04", // 䢄
+ 0x4885: "\x03\x02\x01\x05\x01\x01\x01\x03\x01\x01\x05\x03\x04", // 䢅
+ 0x4886: "\x04\x05\x03\x05\x01\x03\x01\x01\x05\x03\x04\x01\x02\x04", // 䢆
+ 0x4887: "\x04\x04\x05\x03\x05\x01\x03\x01\x01\x05\x03\x04\x01\x02\x04", // 䢇
+ 0x4888: "\x01\x03\x01\x01\x05\x03\x04\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 䢈
+ 0x4889: "\x03\x02\x05\x03\x04\x01\x03\x02\x01\x01\x05\x01\x01\x01\x03\x01\x01\x05\x03\x04", // 䢉
+ 0x488a: "\x05\x02\x01\x04\x05\x04", // 䢊
+ 0x488b: "\x01\x03\x02\x04\x05\x04", // 䢋
+ 0x488c: "\x01\x02\x05\x02\x04\x05\x04", // 䢌
+ 0x488d: "\x04\x01\x05\x03\x04\x05\x04", // 䢍
+ 0x488e: "\x01\x01\x03\x02\x04\x05\x04", // 䢎
+ 0x488f: "\x04\x04\x01\x02\x04\x05\x04", // 䢏
+ 0x4890: "\x02\x05\x01\x01\x01\x04\x05\x04", // 䢐
+ 0x4891: "\x03\x05\x01\x05\x04\x04\x05\x04", // 䢑
+ 0x4892: "\x04\x01\x03\x04\x03\x04\x04\x05\x04", // 䢒
+ 0x4893: "\x04\x04\x05\x01\x01\x02\x04\x05\x04", // 䢓
+ 0x4894: "\x03\x04\x01\x02\x05\x01\x04\x05\x04", // 䢔
+ 0x4895: "\x01\x03\x01\x05\x03\x04\x04\x05\x04", // 䢕
+ 0x4896: "\x05\x01\x01\x01\x01\x02\x04\x05\x04", // 䢖
+ 0x4897: "\x02\x05\x01\x02\x02\x01\x04\x05\x04", // 䢗
+ 0x4898: "\x04\x04\x05\x01\x02\x04\x04\x05\x04", // 䢘
+ 0x4899: "\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04", // 䢙
+ 0x489a: "\x01\x02\x05\x01\x01\x03\x04\x04\x05\x04", // 䢚
+ 0x489b: "\x02\x05\x03\x04\x02\x05\x01\x04\x05\x04", // 䢛
+ 0x489c: "\x05\x01\x01\x04\x05\x02\x05\x02\x04\x05\x04", // 䢜
+ 0x489d: "\x01\x02\x01\x05\x05\x01\x02\x01\x04\x05\x04", // 䢝
+ 0x489e: "\x01\x02\x03\x04\x01\x02\x03\x04\x04\x05\x04", // 䢞
+ 0x489f: "\x04\x01\x05\x03\x03\x01\x03\x04\x04\x05\x04", // 䢟
+ 0x48a0: "\x04\x03\x03\x04\x01\x03\x02\x04\x05\x04", // 䢠
+ 0x48a1: "\x01\x02\x02\x01\x05\x01\x02\x03\x04\x04\x05\x04", // 䢡
+ 0x48a2: "\x03\x04\x04\x05\x01\x01\x03\x02\x05\x01\x04\x05\x04", // 䢢
+ 0x48a3: "\x03\x05\x04\x04\x01\x01\x01\x02\x05\x01\x04\x05\x04", // 䢣
+ 0x48a4: "\x03\x01\x02\x03\x04\x01\x02\x03\x04\x04\x04\x05\x04", // 䢤
+ 0x48a5: "\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x04\x05\x04", // 䢥
+ 0x48a6: "\x04\x01\x05\x05\x04\x04\x01\x03\x04\x01\x02\x04\x05\x04", // 䢦
+ 0x48a7: "\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03\x04\x05\x04", // 䢧
+ 0x48a8: "\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04\x04\x05\x04", // 䢨
+ 0x48a9: "\x01\x02\x05\x01\x02\x05\x01\x03\x01\x03\x04\x04\x05\x04", // 䢩
+ 0x48aa: "\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01\x04\x05\x04", // 䢪
+ 0x48ab: "\x05\x02\x01\x03\x01\x02\x01\x02\x05\x01\x01\x04\x05\x04", // 䢫
+ 0x48ac: "\x03\x04\x04\x03\x04\x05\x03\x05\x04\x01\x05\x02\x04\x05\x04", // 䢬
+ 0x48ad: "\x04\x03\x01\x01\x02\x01\x04\x01\x04\x05\x03\x04\x04\x05\x04", // 䢭
+ 0x48ae: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x01\x04\x05\x04", // 䢮
+ 0x48af: "\x04\x03\x03\x04\x04\x03\x03\x04\x03\x05\x04\x01\x05\x02\x04\x05\x04", // 䢯
+ 0x48b0: "\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01\x04\x05\x04", // 䢰
+ 0x48b1: "\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04", // 䢱
+ 0x48b2: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04\x04\x05\x04", // 䢲
+ 0x48b3: "\x03\x05\x05\x02", // 䢳
+ 0x48b4: "\x03\x01\x03\x05\x02", // 䢴
+ 0x48b5: "\x01\x01\x05\x04\x05\x02", // 䢵
+ 0x48b6: "\x01\x02\x03\x04\x05\x02", // 䢶
+ 0x48b7: "\x03\x05\x04\x01\x05\x02", // 䢷
+ 0x48b8: "\x02\x05\x01\x01\x01\x05\x02", // 䢸
+ 0x48b9: "\x01\x05\x01\x05\x05\x02", // 䢹
+ 0x48ba: "\x05\x02\x02\x05\x02\x05\x02", // 䢺
+ 0x48bb: "\x01\x02\x05\x01\x02\x05\x05\x02", // 䢻
+ 0x48bc: "\x01\x02\x02\x01\x03\x04\x05\x02", // 䢼
+ 0x48bd: "\x01\x02\x02\x01\x03\x04\x02\x05\x01\x05\x02\x01\x05", // 䢽
+ 0x48be: "\x03\x01\x02\x01\x03\x05\x05\x02", // 䢾
+ 0x48bf: "\x04\x04\x05\x05\x03\x01\x05\x02", // 䢿
+ 0x48c0: "\x03\x05\x01\x03\x05\x05\x05\x02", // 䣀
+ 0x48c1: "\x05\x04\x01\x05\x04\x01\x05\x02", // 䣁
+ 0x48c2: "\x01\x01\x01\x02\x03\x04\x05\x02", // 䣂
+ 0x48c3: "\x03\x01\x01\x02\x01\x02\x01\x05\x02", // 䣃
+ 0x48c4: "\x03\x04\x01\x01\x02\x03\x04\x05\x02", // 䣄
+ 0x48c5: "\x01\x03\x01\x01\x05\x03\x04\x05\x02", // 䣅
+ 0x48c6: "\x01\x05\x05\x05\x01\x02\x01\x05\x02", // 䣆
+ 0x48c7: "\x01\x02\x04\x01\x03\x04\x04\x05\x02", // 䣇
+ 0x48c8: "\x02\x05\x01\x05\x02\x01\x05\x02\x05\x01\x05\x02\x01\x05", // 䣈
+ 0x48c9: "\x04\x04\x01\x02\x03\x04\x03\x02\x05\x01\x05\x02\x01\x05", // 䣉
+ 0x48ca: "\x02\x04\x03\x02\x05\x02\x05\x01\x05\x02", // 䣊
+ 0x48cb: "\x03\x04\x03\x01\x02\x03\x04\x05\x02", // 䣋
+ 0x48cc: "\x04\x01\x03\x03\x05\x01\x05\x04\x05\x02", // 䣌
+ 0x48cd: "\x01\x03\x04\x02\x05\x01\x01\x05\x05\x02", // 䣍
+ 0x48ce: "\x05\x05\x05\x02\x05\x01\x02\x01\x05\x02", // 䣎
+ 0x48cf: "\x03\x02\x01\x02\x02\x01\x03\x04\x05\x02", // 䣏
+ 0x48d0: "\x01\x02\x02\x02\x05\x01\x03\x04\x05\x02", // 䣐
+ 0x48d1: "\x01\x03\x02\x05\x01\x01\x02\x01\x01\x05\x02", // 䣑
+ 0x48d2: "\x02\x05\x01\x02\x01\x02\x05\x03\x04\x05\x02", // 䣒
+ 0x48d3: "\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x05\x02", // 䣓
+ 0x48d4: "\x02\x04\x03\x02\x05\x01\x01\x01\x03\x04\x05\x02", // 䣔
+ 0x48d5: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x02", // 䣕
+ 0x48d6: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x01\x05\x02\x01\x05", // 䣖
+ 0x48d7: "\x03\x02\x05\x01\x01\x01\x03\x04\x01\x02\x05\x02", // 䣗
+ 0x48d8: "\x02\x03\x04\x04\x05\x02\x05\x01\x01\x02\x01\x05\x02", // 䣘
+ 0x48d9: "\x02\x05\x02\x03\x05\x01\x01\x03\x05\x01\x01\x05\x02", // 䣙
+ 0x48da: "\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01\x05\x02", // 䣚
+ 0x48db: "\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x05\x02", // 䣛
+ 0x48dc: "\x02\x01\x05\x03\x01\x05\x02\x05\x01\x01\x01\x05\x02", // 䣜
+ 0x48dd: "\x05\x01\x03\x01\x02\x01\x03\x02\x05\x01\x01\x05\x02", // 䣝
+ 0x48de: "\x02\x05\x01\x02\x05\x01\x03\x04\x01\x05\x02\x03\x05\x02", // 䣞
+ 0x48df: "\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x01\x05\x02", // 䣟
+ 0x48e0: "\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01\x05\x02", // 䣠
+ 0x48e1: "\x03\x04\x01\x01\x02\x01\x03\x01\x02\x01\x05\x03\x04\x05\x02", // 䣡
+ 0x48e2: "\x01\x01\x01\x02\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01\x05\x02", // 䣢
+ 0x48e3: "\x02\x03\x04\x04\x05\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x05\x02", // 䣣
+ 0x48e4: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04\x05\x02", // 䣤
+ 0x48e5: "\x01\x02\x05\x03\x05\x01\x01\x03\x05", // 䣥
+ 0x48e6: "\x01\x02\x05\x03\x05\x01\x01\x05\x03", // 䣦
+ 0x48e7: "\x01\x02\x05\x03\x05\x01\x01\x01\x05\x04", // 䣧
+ 0x48e8: "\x01\x02\x05\x03\x05\x01\x01\x03\x01\x05", // 䣨
+ 0x48e9: "\x01\x02\x05\x03\x05\x01\x01\x01\x05\x02\x05", // 䣩
+ 0x48ea: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x05\x02", // 䣪
+ 0x48eb: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x05\x04", // 䣫
+ 0x48ec: "\x01\x02\x05\x03\x05\x01\x01\x01\x05\x03\x04", // 䣬
+ 0x48ed: "\x01\x02\x05\x03\x05\x01\x01\x01\x03\x04\x04", // 䣭
+ 0x48ee: "\x01\x02\x05\x03\x05\x01\x01\x01\x03\x05\x04\x04", // 䣮
+ 0x48ef: "\x01\x02\x05\x03\x05\x01\x01\x02\x05\x01\x01\x01", // 䣯
+ 0x48f0: "\x01\x02\x05\x03\x05\x01\x01\x01\x05\x01\x05", // 䣰
+ 0x48f1: "\x01\x02\x05\x03\x05\x01\x01\x03\x05\x02\x05\x01", // 䣱
+ 0x48f2: "\x01\x02\x05\x03\x05\x01\x01\x05\x04\x01\x03\x02", // 䣲
+ 0x48f3: "\x01\x02\x05\x03\x05\x01\x01\x05\x01\x02\x05\x01", // 䣳
+ 0x48f4: "\x01\x02\x05\x03\x05\x01\x01\x03\x04\x05\x02\x03\x05", // 䣴
+ 0x48f5: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x02\x01\x01\x01", // 䣵
+ 0x48f6: "\x01\x02\x05\x03\x05\x01\x01\x03\x01\x02\x02\x05\x01", // 䣶
+ 0x48f7: "\x01\x02\x05\x03\x05\x01\x01\x03\x01\x01\x02\x03\x04", // 䣷
+ 0x48f8: "\x03\x02\x03\x01\x02\x01\x01\x02\x05\x03\x05\x01\x01", // 䣸
+ 0x48f9: "\x01\x02\x05\x03\x05\x01\x01\x03\x02\x01\x05\x03\x04", // 䣹
+ 0x48fa: "\x01\x02\x05\x03\x05\x01\x01\x02\x05\x01\x02\x05\x01\x01", // 䣺
+ 0x48fb: "\x01\x02\x05\x03\x05\x01\x01\x03\x04\x04\x05\x02\x05\x01", // 䣻
+ 0x48fc: "\x01\x02\x05\x03\x05\x01\x01\x04\x01\x02\x05\x01\x02\x03\x04", // 䣼
+ 0x48fd: "\x03\x01\x01\x03\x04\x02\x05\x01\x01\x02\x05\x03\x05\x01\x01", // 䣽
+ 0x48fe: "\x01\x02\x05\x03\x05\x01\x01\x04\x04\x05\x02\x05\x01\x01\x01", // 䣾
+ 0x48ff: "\x01\x02\x05\x03\x05\x01\x01\x01\x01\x02\x02\x05\x02\x02\x01", // 䣿
+ 0x4900: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x02\x01\x03\x02\x05\x01", // 䤀
+ 0x4901: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x02\x01\x01\x01\x03\x04\x05", // 䤁
+ 0x4902: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x02\x01\x01\x01\x02\x03\x04", // 䤂
+ 0x4903: "\x01\x02\x05\x03\x05\x01\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 䤃
+ 0x4904: "\x01\x02\x05\x03\x05\x01\x01\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 䤄
+ 0x4905: "\x01\x02\x05\x03\x05\x01\x01\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 䤅
+ 0x4906: "\x01\x02\x05\x03\x05\x01\x01\x05\x04\x03\x03\x04\x01\x01\x03\x04", // 䤆
+ 0x4907: "\x01\x02\x05\x03\x05\x01\x01\x04\x04\x05\x04\x03\x04\x04\x05\x04", // 䤇
+ 0x4908: "\x01\x02\x05\x03\x05\x01\x01\x03\x04\x01\x05\x02\x05\x02\x02\x01", // 䤈
+ 0x4909: "\x01\x02\x05\x03\x05\x01\x01\x04\x05\x04\x04\x03\x02\x05\x02\x02\x01", // 䤉
+ 0x490a: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x02\x01\x02\x02\x01\x01\x01", // 䤊
+ 0x490b: "\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x02\x05\x01\x01\x05\x03\x04", // 䤋
+ 0x490c: "\x01\x02\x05\x03\x05\x01\x01\x03\x04\x04\x05\x01\x01\x03\x02\x05\x01", // 䤌
+ 0x490d: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04", // 䤍
+ 0x490e: "\x01\x02\x05\x03\x05\x01\x01\x05\x04\x05\x02\x03\x02\x05\x03\x04\x02\x05\x01", // 䤎
+ 0x490f: "\x01\x02\x05\x03\x05\x01\x01\x02\x01\x01\x01\x02\x01\x01\x01\x03\x01\x01\x02", // 䤏
+ 0x4910: "\x01\x02\x05\x03\x05\x01\x01\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x01", // 䤐
+ 0x4911: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 䤑
+ 0x4912: "\x01\x02\x05\x03\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x03\x04\x05\x03\x04", // 䤒
+ 0x4913: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 䤓
+ 0x4914: "\x04\x04\x01\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02\x01\x02\x05\x03\x05\x01\x01", // 䤔
+ 0x4915: "\x01\x02\x05\x03\x05\x01\x01\x03\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x03\x04", // 䤕
+ 0x4916: "\x01\x02\x05\x03\x05\x01\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x04\x02\x04\x01\x03\x04", // 䤖
+ 0x4917: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x03\x05\x04\x01\x05\x02\x01\x02\x05\x03\x05\x01\x01", // 䤗
+ 0x4918: "\x01\x02\x05\x03\x05\x01\x01\x03\x04\x03\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 䤘
+ 0x4919: "\x01\x03\x05\x02\x05\x01\x01\x05\x05\x01\x03\x05\x03\x03\x03\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 䤙
+ 0x491a: "\x03\x05\x01\x01\x02\x05\x01\x01\x02\x01\x01", // 䤚
+ 0x491b: "\x03\x04\x01\x01\x02\x03\x04\x01\x05\x02", // 䤛
+ 0x491c: "\x03\x04\x01\x01\x02\x03\x04\x01\x03\x01\x05", // 䤜
+ 0x491d: "\x03\x04\x01\x01\x02\x03\x04\x01\x03\x05\x05\x02", // 䤝
+ 0x491e: "\x03\x04\x01\x01\x02\x03\x04\x01\x01\x03\x05\x04", // 䤞
+ 0x491f: "\x03\x04\x01\x01\x02\x03\x04\x01\x04\x05\x03\x05", // 䤟
+ 0x4920: "\x03\x04\x01\x01\x02\x03\x04\x01\x02\x01\x02\x01", // 䤠
+ 0x4921: "\x03\x04\x01\x01\x02\x03\x04\x01\x02\x05\x02\x01\x01", // 䤡
+ 0x4922: "\x03\x04\x01\x01\x02\x03\x04\x01\x02\x05\x01\x05\x03", // 䤢
+ 0x4923: "\x03\x04\x01\x01\x02\x03\x04\x01\x03\x04\x03\x01\x02", // 䤣
+ 0x4924: "\x03\x04\x01\x01\x02\x03\x04\x01\x04\x01\x05\x03\x03\x04", // 䤤
+ 0x4925: "\x03\x04\x01\x01\x02\x03\x04\x01\x03\x05\x01\x03\x05\x05", // 䤥
+ 0x4926: "\x03\x04\x01\x01\x02\x03\x04\x01\x03\x02\x01\x05\x03\x04", // 䤦
+ 0x4927: "\x03\x04\x01\x01\x02\x03\x04\x01\x02\x05\x02\x05\x01\x01", // 䤧
+ 0x4928: "\x03\x04\x01\x01\x02\x03\x04\x01\x03\x03\x03\x05\x03\x04", // 䤨
+ 0x4929: "\x03\x04\x01\x01\x02\x03\x04\x01\x04\x04\x05\x03\x01\x05", // 䤩
+ 0x492a: "\x03\x04\x01\x01\x02\x03\x04\x01\x03\x05\x01\x02\x03\x04", // 䤪
+ 0x492b: "\x03\x04\x01\x01\x02\x03\x04\x01\x02\x05\x02\x03\x04\x04\x05", // 䤫
+ 0x492c: "\x03\x04\x01\x01\x02\x03\x04\x01\x04\x04\x01\x02\x03\x04\x03", // 䤬
+ 0x492d: "\x03\x04\x01\x01\x02\x03\x04\x01\x03\x04\x01\x03\x02\x05\x02", // 䤭
+ 0x492e: "\x03\x04\x01\x01\x02\x03\x04\x01\x02\x01\x02\x01\x02\x03\x03", // 䤮
+ 0x492f: "\x03\x04\x01\x01\x02\x03\x04\x01\x01\x01\x03\x02\x03\x03\x03", // 䤯
+ 0x4930: "\x01\x02\x01\x03\x05\x03\x04\x03\x04\x01\x01\x02\x03\x04\x01", // 䤰
+ 0x4931: "\x03\x04\x01\x01\x02\x03\x04\x01\x02\x05\x02\x03\x03\x01\x02", // 䤱
+ 0x4932: "\x03\x04\x01\x01\x02\x03\x04\x01\x01\x02\x01\x03\x02\x03\x04", // 䤲
+ 0x4933: "\x03\x04\x01\x01\x02\x03\x04\x01\x04\x01\x03\x02\x03\x05\x04\x04", // 䤳
+ 0x4934: "\x03\x04\x01\x01\x02\x03\x04\x01\x05\x02\x04\x01\x03\x04\x05\x02", // 䤴
+ 0x4935: "\x03\x04\x01\x01\x02\x03\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01", // 䤵
+ 0x4936: "\x03\x04\x01\x01\x02\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01\x05", // 䤶
+ 0x4937: "\x03\x04\x01\x01\x02\x03\x04\x01\x01\x02\x05\x01\x01\x05\x03\x01\x05", // 䤷
+ 0x4938: "\x03\x04\x01\x01\x02\x03\x04\x01\x05\x05\x01\x03\x05\x03\x03\x03\x04", // 䤸
+ 0x4939: "\x03\x04\x01\x01\x02\x03\x04\x01\x04\x04\x05\x04\x03\x03\x04\x05\x04", // 䤹
+ 0x493a: "\x03\x04\x01\x01\x02\x03\x04\x01\x01\x03\x02\x05\x01\x03\x03\x01\x02", // 䤺
+ 0x493b: "\x03\x04\x01\x01\x02\x03\x04\x01\x01\x03\x01\x02\x01\x02\x05\x01\x01", // 䤻
+ 0x493c: "\x03\x04\x01\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x02\x05\x03\x04", // 䤼
+ 0x493d: "\x03\x04\x01\x01\x02\x03\x04\x01\x02\x05\x02\x02\x01\x02\x03\x03\x04\x04", // 䤽
+ 0x493e: "\x03\x04\x01\x01\x02\x03\x04\x01\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01", // 䤾
+ 0x493f: "\x03\x04\x01\x01\x02\x03\x04\x01\x01\x01\x02\x01\x05\x03\x03\x01\x01\x02", // 䤿
+ 0x4940: "\x03\x04\x01\x01\x02\x03\x04\x01\x02\x05\x02\x01\x02\x05\x01\x02\x01\x04", // 䥀
+ 0x4941: "\x03\x04\x01\x01\x02\x03\x04\x01\x05\x04\x02\x05\x04\x03\x01\x01\x02\x01", // 䥁
+ 0x4942: "\x03\x04\x01\x01\x02\x03\x04\x01\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 䥂
+ 0x4943: "\x03\x04\x01\x01\x02\x03\x04\x01\x04\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 䥃
+ 0x4944: "\x03\x04\x01\x01\x02\x03\x04\x01\x01\x03\x01\x02\x02\x01\x02\x05\x01\x01", // 䥄
+ 0x4945: "\x01\x02\x01\x01\x02\x01\x01\x01\x02\x01\x03\x04\x01\x01\x02\x03\x04\x01", // 䥅
+ 0x4946: "\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01\x03\x04\x01\x01\x02\x03\x04\x01", // 䥆
+ 0x4947: "\x03\x04\x01\x01\x02\x03\x04\x01\x04\x05\x01\x03\x05\x04\x01\x05\x04\x01", // 䥇
+ 0x4948: "\x03\x04\x01\x01\x02\x03\x04\x01\x01\x02\x02\x01\x03\x04\x04\x01\x03\x02", // 䥈
+ 0x4949: "\x03\x04\x01\x01\x02\x03\x04\x01\x04\x04\x05\x03\x05\x02\x05\x01\x03\x05\x04", // 䥉
+ 0x494a: "\x03\x04\x01\x01\x02\x03\x04\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 䥊
+ 0x494b: "\x03\x04\x01\x01\x02\x03\x04\x01\x04\x01\x02\x05\x01\x05\x02\x04\x04\x04\x04", // 䥋
+ 0x494c: "\x04\x04\x05\x02\x05\x01\x01\x02\x05\x01\x01\x03\x04\x01\x01\x02\x03\x04\x01", // 䥌
+ 0x494d: "\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04\x03\x04\x01\x01\x02\x03\x04\x01", // 䥍
+ 0x494e: "\x03\x04\x01\x01\x02\x03\x04\x01\x01\x03\x01\x01\x05\x03\x04\x02\x05\x01\x01", // 䥎
+ 0x494f: "\x03\x04\x01\x01\x02\x03\x04\x01\x03\x03\x02\x03\x01\x01\x02\x01\x02\x01\x05\x02", // 䥏
+ 0x4950: "\x05\x04\x05\x02\x03\x03\x05\x04\x05\x03\x03\x04\x01\x01\x02\x03\x04\x01", // 䥐
+ 0x4951: "\x03\x04\x01\x01\x02\x03\x04\x01\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04", // 䥑
+ 0x4952: "\x05\x01\x05\x02\x05\x01\x02\x05\x01\x02\x01\x04\x03\x04\x01\x01\x02\x03\x04\x01", // 䥒
+ 0x4953: "\x03\x04\x01\x01\x02\x03\x04\x01\x01\x02\x02\x01\x01\x01\x03\x04\x01\x02\x01", // 䥓
+ 0x4954: "\x03\x04\x01\x01\x02\x03\x04\x01\x01\x02\x05\x02\x02\x01\x04\x03\x01\x02\x03\x04", // 䥔
+ 0x4955: "\x03\x04\x01\x01\x02\x03\x04\x01\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04", // 䥕
+ 0x4956: "\x03\x04\x01\x01\x02\x03\x04\x01\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x03\x04", // 䥖
+ 0x4957: "\x03\x04\x01\x01\x02\x03\x04\x01\x01\x02\x01\x01\x01\x02\x03\x04\x03\x05\x03\x04", // 䥗
+ 0x4958: "\x03\x04\x01\x01\x02\x03\x04\x01\x03\x04\x03\x04\x03\x04\x03\x04\x02\x05\x01\x01", // 䥘
+ 0x4959: "\x03\x04\x01\x01\x02\x03\x04\x01\x05\x02\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 䥙
+ 0x495a: "\x03\x05\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x04\x01\x01\x02\x03\x04\x01", // 䥚
+ 0x495b: "\x03\x04\x01\x01\x02\x03\x04\x01\x01\x01\x02\x01\x05\x03\x05\x05\x04\x02\x03\x04", // 䥛
+ 0x495c: "\x03\x04\x01\x01\x02\x03\x04\x01\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04", // 䥜
+ 0x495d: "\x03\x04\x01\x01\x02\x03\x04\x01\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x03\x05", // 䥝
+ 0x495e: "\x03\x04\x01\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x03\x04", // 䥞
+ 0x495f: "\x03\x04\x01\x01\x02\x03\x04\x01\x01\x02\x01\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 䥟
+ 0x4960: "\x03\x04\x01\x01\x02\x03\x04\x01\x01\x02\x02\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 䥠
+ 0x4961: "\x03\x04\x01\x01\x02\x03\x04\x01\x03\x02\x01\x05\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 䥡
+ 0x4962: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x03\x04\x01\x01\x02\x03\x04\x01", // 䥢
+ 0x4963: "\x03\x02\x01\x05\x01\x01\x01\x02\x01\x03\x05\x05\x04\x03\x04\x01\x01\x02\x03\x04\x01", // 䥣
+ 0x4964: "\x03\x04\x01\x01\x02\x03\x04\x01\x01\x04\x05\x02\x04\x04\x04\x04\x03\x05\x05\x01\x05", // 䥤
+ 0x4965: "\x03\x04\x01\x01\x02\x03\x04\x01\x04\x01\x04\x03\x01\x03\x05\x01\x01\x02\x02\x03\x04", // 䥥
+ 0x4966: "\x03\x04\x01\x01\x02\x03\x04\x01\x01\x03\x01\x02\x01\x02\x05\x01\x01\x04\x05\x04", // 䥦
+ 0x4967: "\x03\x04\x01\x01\x02\x03\x04\x01\x02\x01\x04\x05\x01\x03\x04\x03\x04\x02\x05\x01\x01\x01", // 䥧
+ 0x4968: "\x03\x04\x01\x01\x02\x03\x04\x01\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01", // 䥨
+ 0x4969: "\x03\x04\x01\x01\x02\x03\x04\x01\x03\x03\x02\x02\x05\x02\x01\x03\x05\x03\x01\x03\x04", // 䥩
+ 0x496a: "\x03\x04\x01\x01\x02\x03\x04\x01\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x04\x04\x04\x04", // 䥪
+ 0x496b: "\x03\x04\x01\x01\x02\x03\x04\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03\x04", // 䥫
+ 0x496c: "\x03\x04\x01\x01\x02\x03\x04\x01\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 䥬
+ 0x496d: "\x01\x02\x04\x01\x03\x04\x04\x01\x02\x04\x01\x03\x04\x04\x03\x04\x01\x01\x02\x03\x04\x01", // 䥭
+ 0x496e: "\x03\x04\x01\x01\x02\x03\x04\x01\x01\x02\x05\x02\x02\x01\x01\x02\x05\x01\x02\x05\x05\x02", // 䥮
+ 0x496f: "\x03\x04\x01\x01\x02\x03\x04\x01\x02\x05\x02\x02\x01\x05\x04\x02\x05\x01\x01\x03\x05\x03\x05", // 䥯
+ 0x4970: "\x03\x04\x01\x01\x02\x03\x04\x01\x04\x01\x05\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 䥰
+ 0x4971: "\x03\x04\x01\x01\x02\x03\x04\x01\x04\x04\x05\x03\x02\x01\x05\x01\x01\x03\x05\x04\x04\x04\x04", // 䥱
+ 0x4972: "\x03\x04\x01\x01\x02\x03\x04\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05\x03\x05\x03\x04", // 䥲
+ 0x4973: "\x03\x04\x01\x01\x02\x03\x04\x01\x01\x03\x02\x05\x01\x01\x04\x05\x03\x05\x04\x04\x03\x05\x04", // 䥳
+ 0x4974: "\x03\x04\x01\x01\x02\x03\x04\x01\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x02\x05", // 䥴
+ 0x4975: "\x03\x04\x01\x01\x02\x03\x04\x01\x02\x05\x01\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 䥵
+ 0x4976: "\x03\x04\x01\x01\x02\x03\x04\x01\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 䥶
+ 0x4977: "\x03\x04\x01\x01\x02\x03\x04\x01\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x01\x03\x02\x02\x02", // 䥷
+ 0x4978: "\x05\x01\x05\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x01\x01\x02\x03\x04\x01", // 䥸
+ 0x4979: "\x03\x04\x01\x01\x02\x03\x04\x01\x01\x01\x01\x02\x05\x03\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 䥹
+ 0x497a: "\x03\x01\x01\x01\x05\x01\x05\x02\x03", // 䥺
+ 0x497b: "\x03\x01\x01\x01\x05\x01\x01\x03\x05", // 䥻
+ 0x497c: "\x03\x01\x01\x01\x05\x03\x05\x03\x03", // 䥼
+ 0x497d: "\x03\x01\x01\x01\x05\x05\x03\x05\x04\x04", // 䥽
+ 0x497e: "\x03\x01\x01\x01\x05\x04\x05\x01\x05\x01", // 䥾
+ 0x497f: "\x03\x01\x01\x01\x05\x03\x03\x01\x05\x03", // 䥿
+ 0x4980: "\x03\x01\x01\x01\x05\x05\x04\x01\x05\x04\x01", // 䦀
+ 0x4981: "\x03\x01\x01\x01\x05\x01\x01\x01\x03\x05\x02", // 䦁
+ 0x4982: "\x03\x01\x01\x01\x05\x04\x05\x01\x03\x05\x04\x01\x05\x04\x01", // 䦂
+ 0x4983: "\x03\x01\x01\x01\x05\x01\x02\x02\x01\x02\x01\x03\x02\x05\x01\x01", // 䦃
+ 0x4984: "\x03\x01\x01\x01\x05\x01\x02\x05\x01\x01\x02\x01\x04\x03\x05\x03\x04", // 䦄
+ 0x4985: "\x03\x01\x01\x01\x05\x04\x03\x01\x01\x01\x02\x04\x03\x01\x02\x05\x01", // 䦅
+ 0x4986: "\x03\x01\x01\x01\x05\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03", // 䦆
+ 0x4987: "\x01\x02\x01\x01\x01\x05\x04\x03\x04\x05", // 䦇
+ 0x4988: "\x01\x02\x01\x01\x01\x05\x04\x01\x03\x01\x02\x01", // 䦈
+ 0x4989: "\x01\x02\x01\x01\x01\x05\x04\x02\x05\x03\x05\x01", // 䦉
+ 0x498a: "\x01\x02\x01\x01\x01\x05\x04\x02\x01\x01\x02\x03\x04", // 䦊
+ 0x498b: "\x01\x02\x01\x01\x01\x05\x04\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04", // 䦋
+ 0x498c: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x01", // 䦌
+ 0x498d: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x01\x05", // 䦍
+ 0x498e: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x01\x03\x05", // 䦎
+ 0x498f: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x04\x03\x02", // 䦏
+ 0x4990: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x01\x01\x02", // 䦐
+ 0x4991: "\x05\x01\x01\x02\x02\x05\x01\x01\x05\x01\x03\x04", // 䦑
+ 0x4992: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x03\x02\x05\x01", // 䦒
+ 0x4993: "\x05\x01\x01\x02\x02\x05\x01\x01\x02\x01\x02\x05\x01", // 䦓
+ 0x4994: "\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 䦔
+ 0x4995: "\x05\x01\x01\x02\x02\x05\x01\x01\x04\x03\x01\x01\x03\x02", // 䦕
+ 0x4996: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01", // 䦖
+ 0x4997: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x02\x05\x02\x02\x01", // 䦗
+ 0x4998: "\x05\x01\x01\x02\x02\x05\x01\x01\x05\x01\x01\x05\x03\x04", // 䦘
+ 0x4999: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x01\x01\x02\x04", // 䦙
+ 0x499a: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x01\x02\x02\x05\x01", // 䦚
+ 0x499b: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x05\x01\x01\x02", // 䦛
+ 0x499c: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x05\x01\x02\x05\x01", // 䦜
+ 0x499d: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x01\x03\x02\x03\x04", // 䦝
+ 0x499e: "\x05\x01\x01\x02\x02\x05\x01\x01\x04\x04\x01\x01\x01\x02\x01", // 䦞
+ 0x499f: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x04\x03\x04\x01\x02\x01", // 䦟
+ 0x49a0: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x03\x05\x03\x03\x04\x03\x04", // 䦠
+ 0x49a1: "\x05\x01\x01\x02\x02\x05\x01\x01\x04\x04\x05\x02\x05\x01\x05\x01", // 䦡
+ 0x49a2: "\x05\x01\x01\x02\x02\x05\x01\x01\x04\x04\x01\x01\x02\x01\x05\x04", // 䦢
+ 0x49a3: "\x05\x01\x01\x02\x02\x05\x01\x01\x04\x01\x04\x03\x01\x02\x05\x01", // 䦣
+ 0x49a4: "\x05\x01\x01\x02\x02\x05\x01\x01\x05\x04\x05\x04\x05\x04\x05\x04", // 䦤
+ 0x49a5: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04\x01\x02\x03\x04", // 䦥
+ 0x49a6: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x04\x01\x01\x02\x03\x04\x01", // 䦦
+ 0x49a7: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x02\x01\x05\x01\x01\x03\x05", // 䦧
+ 0x49a8: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x05\x01\x01\x02\x03\x04", // 䦨
+ 0x49a9: "\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x05\x04", // 䦩
+ 0x49aa: "\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 䦪
+ 0x49ab: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x02\x02\x05\x01\x03\x04", // 䦫
+ 0x49ac: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x01\x02\x01\x05\x03\x01\x03\x04", // 䦬
+ 0x49ad: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x01\x02\x03\x04\x02\x05\x01\x01", // 䦭
+ 0x49ae: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x01\x01\x03\x04\x02\x05\x01\x01", // 䦮
+ 0x49af: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x05\x04\x01\x02\x01\x03\x01\x03\x04", // 䦯
+ 0x49b0: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x02\x05\x01\x01\x02\x05\x01\x01\x05", // 䦰
+ 0x49b1: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04", // 䦱
+ 0x49b2: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x01\x03\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 䦲
+ 0x49b3: "\x05\x01\x01\x02\x02\x05\x01\x01\x05\x05\x03\x04\x05\x01\x01\x05\x04\x05\x02", // 䦳
+ 0x49b4: "\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 䦴
+ 0x49b5: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 䦵
+ 0x49b6: "\x04\x02\x05\x03\x05\x05\x01\x01\x02", // 䦶
+ 0x49b7: "\x04\x02\x05\x03\x04\x03\x04\x01\x02\x01", // 䦷
+ 0x49b8: "\x04\x02\x05\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 䦸
+ 0x49b9: "\x05\x02\x01\x02", // 䦹
+ 0x49ba: "\x05\x02\x01\x02", // 䦺
+ 0x49bb: "\x05\x02\x05\x02\x01", // 䦻
+ 0x49bc: "\x05\x02\x05\x01\x03\x04", // 䦼
+ 0x49bd: "\x05\x02\x05\x04\x05\x02", // 䦽
+ 0x49be: "\x03\x02\x05\x01\x05\x01\x05\x04\x03\x05", // 䦾
+ 0x49bf: "\x05\x02\x02\x05\x01\x02", // 䦿
+ 0x49c0: "\x05\x02\x01\x03\x05\x04", // 䧀
+ 0x49c1: "\x05\x02\x03\x05\x02\x05\x01", // 䧁
+ 0x49c2: "\x05\x02\x05\x03\x02\x05\x01", // 䧂
+ 0x49c3: "\x05\x02\x02\x05\x01\x02\x01", // 䧃
+ 0x49c4: "\x05\x02\x03\x05\x04\x02\x05\x01", // 䧄
+ 0x49c5: "\x05\x02\x01\x05\x01\x05\x03\x04", // 䧅
+ 0x49c6: "\x05\x02\x01\x02\x02\x01\x03\x04", // 䧆
+ 0x49c7: "\x05\x02\x04\x01\x03\x05\x03\x04", // 䧇
+ 0x49c8: "\x05\x02\x01\x02\x05\x03\x05\x01", // 䧈
+ 0x49c9: "\x05\x02\x02\x05\x01\x01\x02\x01\x01", // 䧉
+ 0x49ca: "\x05\x02\x03\x01\x02\x01\x02\x05\x01", // 䧊
+ 0x49cb: "\x05\x02\x02\x05\x01\x01\x01\x03\x05", // 䧋
+ 0x49cc: "\x05\x02\x03\x04\x04\x03\x05\x03\x01", // 䧌
+ 0x49cd: "\x05\x02\x03\x04\x03\x04\x02\x05\x01", // 䧍
+ 0x49ce: "\x05\x02\x02\x05\x01\x02\x05\x01\x01", // 䧎
+ 0x49cf: "\x05\x02\x03\x05\x04\x01\x01\x01\x02", // 䧏
+ 0x49d0: "\x05\x02\x04\x01\x02\x05\x01\x05\x02\x01", // 䧐
+ 0x49d1: "\x05\x02\x04\x04\x05\x01\x02\x01\x03\x04", // 䧑
+ 0x49d2: "\x05\x02\x01\x03\x04\x03\x04\x02\x03\x04", // 䧒
+ 0x49d3: "\x05\x02\x03\x05\x01\x02\x01\x02\x05\x01", // 䧓
+ 0x49d4: "\x05\x02\x03\x04\x04\x05\x04\x05\x04\x04", // 䧔
+ 0x49d5: "\x05\x02\x01\x02\x05\x01\x01\x05\x03\x04", // 䧕
+ 0x49d6: "\x05\x02\x01\x05\x03\x04\x01\x05\x03\x04", // 䧖
+ 0x49d7: "\x05\x02\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 䧗
+ 0x49d8: "\x05\x02\x05\x05\x01\x03\x05\x03\x03\x03\x04", // 䧘
+ 0x49d9: "\x05\x02\x02\x05\x02\x03\x04\x02\x04\x04\x04", // 䧙
+ 0x49da: "\x05\x02\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 䧚
+ 0x49db: "\x05\x02\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03", // 䧛
+ 0x49dc: "\x05\x02\x04\x01\x03\x05\x01\x01\x02\x02\x05\x01", // 䧜
+ 0x49dd: "\x05\x02\x05\x02\x02\x01\x02\x05\x01\x02\x01\x04", // 䧝
+ 0x49de: "\x05\x02\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 䧞
+ 0x49df: "\x05\x02\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01", // 䧟
+ 0x49e0: "\x05\x02\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04", // 䧠
+ 0x49e1: "\x05\x02\x04\x01\x03\x05\x01\x01\x02\x05\x01\x01", // 䧡
+ 0x49e2: "\x05\x02\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 䧢
+ 0x49e3: "\x05\x02\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 䧣
+ 0x49e4: "\x05\x02\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 䧤
+ 0x49e5: "\x05\x02\x01\x02\x05\x01\x01\x02\x01\x04\x04\x05\x04\x04", // 䧥
+ 0x49e6: "\x05\x02\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04", // 䧦
+ 0x49e7: "\x05\x02\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01\x05\x03\x04", // 䧧
+ 0x49e8: "\x05\x02\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x02\x03\x04", // 䧨
+ 0x49e9: "\x05\x02\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 䧩
+ 0x49ea: "\x05\x02\x04\x01\x03\x01\x03\x04\x03\x04\x03\x04\x05\x03\x01", // 䧪
+ 0x49eb: "\x05\x02\x04\x01\x02\x05\x01\x04\x05\x01\x03\x05\x03\x03\x03\x04", // 䧫
+ 0x49ec: "\x05\x02\x04\x04\x05\x01\x02\x03\x03\x02\x05\x01\x01\x01\x03\x04", // 䧬
+ 0x49ed: "\x05\x02\x03\x02\x05\x03\x04\x04\x04\x04\x04\x01\x04\x05\x04\x04", // 䧭
+ 0x49ee: "\x05\x02\x04\x04\x05\x01\x01\x01\x02\x02\x05\x02\x02\x01\x04\x05\x04\x04", // 䧮
+ 0x49ef: "\x05\x02\x03\x05\x02\x05\x01\x01\x05\x03\x05\x03\x05\x02\x05\x01\x03\x05\x04", // 䧯
+ 0x49f0: "\x05\x02\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x05\x04\x02\x03\x04", // 䧰
+ 0x49f1: "\x03\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 䧱
+ 0x49f2: "\x01\x01\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 䧲
+ 0x49f3: "\x02\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 䧳
+ 0x49f4: "\x01\x02\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 䧴
+ 0x49f5: "\x04\x05\x03\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 䧵
+ 0x49f6: "\x03\x02\x04\x01\x01\x01\x02\x01\x04\x01\x03\x04", // 䧶
+ 0x49f7: "\x03\x05\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 䧷
+ 0x49f8: "\x01\x02\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 䧸
+ 0x49f9: "\x04\x01\x03\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 䧹
+ 0x49fa: "\x01\x03\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 䧺
+ 0x49fb: "\x03\x04\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 䧻
+ 0x49fc: "\x03\x01\x02\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 䧼
+ 0x49fd: "\x03\x04\x03\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 䧽
+ 0x49fe: "\x03\x04\x01\x01\x02\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 䧾
+ 0x49ff: "\x01\x02\x02\x01\x02\x05\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 䧿
+ 0x4a00: "\x03\x04\x04\x03\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 䨀
+ 0x4a01: "\x05\x04\x05\x02\x03\x03\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 䨁
+ 0x4a02: "\x03\x01\x02\x03\x04\x04\x03\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 䨂
+ 0x4a03: "\x02\x05\x01\x01\x04\x04\x05\x05\x03\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 䨃
+ 0x4a04: "\x03\x04\x04\x05\x01\x02\x05\x03\x05\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 䨄
+ 0x4a05: "\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 䨅
+ 0x4a06: "\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 䨆
+ 0x4a07: "\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04\x05\x04", // 䨇
+ 0x4a08: "\x04\x04\x05\x01\x02\x03\x03\x02\x05\x01\x01\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 䨈
+ 0x4a09: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x05\x03\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 䨉
+ 0x4a0a: "\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x01\x02\x01\x05\x05\x02\x01\x02", // 䨊
+ 0x4a0b: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x01\x05", // 䨋
+ 0x4a0c: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x01\x03\x05", // 䨌
+ 0x4a0d: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x01\x03\x02", // 䨍
+ 0x4a0e: "\x01\x04\x05\x02\x04\x04\x04\x04\x05\x01\x05\x05\x04", // 䨎
+ 0x4a0f: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x01\x03\x05\x03\x04", // 䨏
+ 0x4a10: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x04\x01\x02\x05\x01", // 䨐
+ 0x4a11: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x05\x01\x05\x03\x04", // 䨑
+ 0x4a12: "\x01\x04\x05\x02\x04\x04\x04\x04\x05\x04\x01\x05\x04\x01", // 䨒
+ 0x4a13: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x02\x05\x01\x01", // 䨓
+ 0x4a14: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x04\x03\x01\x03\x05", // 䨔
+ 0x4a15: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x04\x01\x01\x01\x02", // 䨕
+ 0x4a16: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x01\x01", // 䨖
+ 0x4a17: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x04\x04\x03\x05\x02\x01", // 䨗
+ 0x4a18: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x01\x01\x03\x05", // 䨘
+ 0x4a19: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x04\x01\x03\x01\x02\x01", // 䨙
+ 0x4a1a: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x05\x03\x03\x04\x05\x04\x04", // 䨚
+ 0x4a1b: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x03\x04\x03\x03\x01\x02", // 䨛
+ 0x4a1c: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x05\x01\x01\x03\x05\x01\x01", // 䨜
+ 0x4a1d: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x01\x02\x01\x02\x05\x01\x01", // 䨝
+ 0x4a1e: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x02\x05\x01\x02\x05\x02\x01\x04", // 䨞
+ 0x4a1f: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x04\x01\x01\x02\x01\x01\x02\x01", // 䨟
+ 0x4a20: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 䨠
+ 0x4a21: "\x01\x04\x05\x02\x04\x04\x04\x04\x05\x02\x04\x01\x03\x04\x05\x02", // 䨡
+ 0x4a22: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x02\x01\x01\x01\x03\x04\x05", // 䨢
+ 0x4a23: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x02\x01\x02\x05\x01\x01\x02", // 䨣
+ 0x4a24: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x01\x04\x05\x04", // 䨤
+ 0x4a25: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 䨥
+ 0x4a26: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03", // 䨦
+ 0x4a27: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x01\x04\x03\x01\x03\x04\x04\x05\x04", // 䨧
+ 0x4a28: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x02\x05\x01\x05\x01\x04\x05\x04", // 䨨
+ 0x4a29: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x05\x02\x04\x02\x05\x01\x01\x02", // 䨩
+ 0x4a2a: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x01\x02\x05\x01\x01\x02\x01\x01", // 䨪
+ 0x4a2b: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04", // 䨫
+ 0x4a2c: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x04\x01\x01\x02\x03\x04\x01\x02\x03\x04", // 䨬
+ 0x4a2d: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x01\x05\x04\x02\x04\x03\x02\x05\x01\x01", // 䨭
+ 0x4a2e: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x01", // 䨮
+ 0x4a2f: "\x01\x04\x05\x02\x04\x04\x04\x04\x05\x02\x01\x02\x05\x01\x01\x02\x03\x04", // 䨯
+ 0x4a30: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x04\x01\x01\x02\x02\x01\x02\x05\x01\x01\x02", // 䨰
+ 0x4a31: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x03\x02\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 䨱
+ 0x4a32: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02\x03\x05\x02\x05\x01\x03\x05\x04", // 䨲
+ 0x4a33: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x01\x01\x03\x05\x02\x05\x01\x01\x01\x03\x05", // 䨳
+ 0x4a34: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x01\x02\x04", // 䨴
+ 0x4a35: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x04\x01\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 䨵
+ 0x4a36: "\x01\x04\x05\x02\x04\x04\x04\x04\x05\x04\x02\x05\x01\x01\x01\x05\x01\x03\x02\x01\x02\x05", // 䨶
+ 0x4a37: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x03\x04\x01\x02\x03\x04\x02\x05\x01\x01\x02\x01\x05\x04", // 䨷
+ 0x4a38: "\x01\x04\x05\x02\x04\x04\x04\x04\x05\x02\x03\x04\x04\x03\x01\x02\x01\x05\x01\x01\x04\x05\x04\x04", // 䨸
+ 0x4a39: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x02\x02\x03\x05\x04\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 䨹
+ 0x4a3a: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x01\x05\x04\x01\x04\x05\x02\x04\x04\x04\x04\x01\x01\x05\x04\x01\x04\x05\x02\x04\x04\x04\x04\x01\x01\x05\x04", // 䨺
+ 0x4a3b: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x01\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x01\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x01\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x01", // 䨻
+ 0x4a3c: "\x01\x01\x02\x01\x02\x05\x01\x01\x01\x02\x02\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 䨼
+ 0x4a3d: "\x02\x01\x01\x01\x02\x01\x01\x01\x05\x01\x05", // 䨽
+ 0x4a3e: "\x04\x01\x03\x02\x01\x01\x01\x02\x01\x01\x01", // 䨾
+ 0x4a3f: "\x01\x01\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01", // 䨿
+ 0x4a40: "\x02\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x01\x01\x03\x04", // 䩀
+ 0x4a41: "\x02\x01\x01\x01\x02\x01\x01\x01\x03\x01\x01\x05\x03\x01\x01\x05\x03\x01\x01\x05", // 䩁
+ 0x4a42: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x03\x04\x04\x05", // 䩂
+ 0x4a43: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x01\x05\x03\x05", // 䩃
+ 0x4a44: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x02\x05\x03\x05", // 䩄
+ 0x4a45: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x05\x03\x02\x05\x04", // 䩅
+ 0x4a46: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x03\x01\x02\x01\x01", // 䩆
+ 0x4a47: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x02\x01\x02\x05\x01", // 䩇
+ 0x4a48: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x03\x01\x05\x05\x04\x01\x04", // 䩈
+ 0x4a49: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x01\x02\x05\x01\x01\x02\x04", // 䩉
+ 0x4a4a: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x04\x04\x05\x03\x05\x04\x05\x05", // 䩊
+ 0x4a4b: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04", // 䩋
+ 0x4a4c: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 䩌
+ 0x4a4d: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 䩍
+ 0x4a4e: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 䩎
+ 0x4a4f: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x01\x02\x02\x02\x05\x02\x02\x01\x01\x03\x04\x05\x03\x04", // 䩏
+ 0x4a50: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x01\x05", // 䩐
+ 0x4a51: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x01\x05", // 䩑
+ 0x4a52: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x01\x02", // 䩒
+ 0x4a53: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x05\x04", // 䩓
+ 0x4a54: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x05\x04", // 䩔
+ 0x4a55: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x05\x02", // 䩕
+ 0x4a56: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x03\x04\x03", // 䩖
+ 0x4a57: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x01\x01", // 䩗
+ 0x4a58: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x05\x05\x04", // 䩘
+ 0x4a59: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x01\x05\x05\x04", // 䩙
+ 0x4a5a: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x01\x05\x04", // 䩚
+ 0x4a5b: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x05\x04\x04\x03", // 䩛
+ 0x4a5c: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x02\x01", // 䩜
+ 0x4a5d: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x03\x05\x04\x04", // 䩝
+ 0x4a5e: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x01\x02\x05\x01", // 䩞
+ 0x4a5f: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x05\x01\x05\x03\x04", // 䩟
+ 0x4a60: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x01\x02\x01\x05\x04", // 䩠
+ 0x4a61: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x03\x04\x03\x04\x03\x04", // 䩡
+ 0x4a62: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x01\x03\x03\x01\x02", // 䩢
+ 0x4a63: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 䩣
+ 0x4a64: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x01\x03\x05", // 䩤
+ 0x4a65: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x02\x01\x02\x01\x05\x04", // 䩥
+ 0x4a66: "\x03\x02\x02\x03\x01\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01\x02", // 䩦
+ 0x4a67: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x01\x01\x01\x02\x05\x01", // 䩧
+ 0x4a68: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x01\x01\x01\x05\x03\x04", // 䩨
+ 0x4a69: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x04\x05\x03\x05\x04\x05\x05", // 䩩
+ 0x4a6a: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x04\x02\x05\x01\x05\x01", // 䩪
+ 0x4a6b: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x05\x02\x03\x04\x03\x04", // 䩫
+ 0x4a6c: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x01\x01\x03\x04\x01\x01\x02", // 䩬
+ 0x4a6d: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x03\x04\x01\x02\x05\x01\x02", // 䩭
+ 0x4a6e: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x01\x01\x02\x04\x01\x03\x04", // 䩮
+ 0x4a6f: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x02\x02\x05\x01\x05\x04\x01", // 䩯
+ 0x4a70: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x02\x02\x01\x01\x01", // 䩰
+ 0x4a71: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 䩱
+ 0x4a72: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x01\x03\x01\x02\x02\x01\x05\x04", // 䩲
+ 0x4a73: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x04\x05\x04\x03\x03\x04\x05\x04", // 䩳
+ 0x4a74: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x02\x05\x01\x03\x05\x01\x01", // 䩴
+ 0x4a75: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 䩵
+ 0x4a76: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01\x02\x05\x01\x02\x01\x04", // 䩶
+ 0x4a77: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03", // 䩷
+ 0x4a78: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x02\x01\x02\x02\x01\x01\x01", // 䩸
+ 0x4a79: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 䩹
+ 0x4a7a: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x04\x05\x04\x05\x04\x01\x05\x04\x01", // 䩺
+ 0x4a7b: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 䩻
+ 0x4a7c: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x04\x01\x01\x01\x02\x04\x05\x04", // 䩼
+ 0x4a7d: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 䩽
+ 0x4a7e: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x01\x03\x01\x02\x02\x01\x04\x04\x04\x04", // 䩾
+ 0x4a7f: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 䩿
+ 0x4a80: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x04\x05\x02\x05\x01\x05\x01\x04\x05\x04\x04", // 䪀
+ 0x4a81: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 䪁
+ 0x4a82: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x05\x02\x03\x04\x01\x02\x05\x02\x03\x04", // 䪂
+ 0x4a83: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x01\x02\x05\x01\x05\x02\x01\x03\x01\x03\x04", // 䪃
+ 0x4a84: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 䪄
+ 0x4a85: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 䪅
+ 0x4a86: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01", // 䪆
+ 0x4a87: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 䪇
+ 0x4a88: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x02\x01\x02\x05\x01\x05\x01\x04\x05\x04", // 䪈
+ 0x4a89: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x05\x05\x02\x05\x03\x04\x01\x05\x04\x04\x05\x04\x04\x05", // 䪉
+ 0x4a8a: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01\x01\x01", // 䪊
+ 0x4a8b: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04", // 䪋
+ 0x4a8c: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x02\x05\x01\x01\x05\x01\x05\x03\x05\x02\x05\x01\x03\x05\x04", // 䪌
+ 0x4a8d: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 䪍
+ 0x4a8e: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x03\x04\x02\x05\x01", // 䪎
+ 0x4a8f: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x02\x05\x03\x04", // 䪏
+ 0x4a90: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x04\x05\x04\x03\x04", // 䪐
+ 0x4a91: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x04\x04\x05\x03\x05", // 䪑
+ 0x4a92: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x04\x01\x01\x02\x01", // 䪒
+ 0x4a93: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x02\x01\x02\x05\x01", // 䪓
+ 0x4a94: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x02\x05\x01\x01\x02\x04", // 䪔
+ 0x4a95: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x03\x05\x04\x03\x01\x02\x03\x04", // 䪕
+ 0x4a96: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 䪖
+ 0x4a97: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 䪗
+ 0x4a98: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 䪘
+ 0x4a99: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 䪙
+ 0x4a9a: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 䪚
+ 0x4a9b: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 䪛
+ 0x4a9c: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x03\x05\x01\x03\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 䪜
+ 0x4a9d: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x02\x02\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 䪝
+ 0x4a9e: "\x01\x01\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 䪞
+ 0x4a9f: "\x01\x02\x05\x02\x05\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 䪟
+ 0x4aa0: "\x03\x05\x02\x03\x03\x05\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 䪠
+ 0x4aa1: "\x03\x05\x02\x03\x04\x01\x03\x05\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 䪡
+ 0x4aa2: "\x03\x05\x02\x03\x04\x01\x03\x05\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 䪢
+ 0x4aa3: "\x01\x02\x05\x02\x03\x04\x01\x03\x05\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 䪣
+ 0x4aa4: "\x02\x01\x01\x01\x02\x01\x01\x01\x01\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 䪤
+ 0x4aa5: "\x02\x01\x04\x05\x01\x02\x05\x01\x01\x01\x03\x04\x05\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 䪥
+ 0x4aa6: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x01", // 䪦
+ 0x4aa7: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05\x02\x05", // 䪧
+ 0x4aa8: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 䪨
+ 0x4aa9: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x04\x04\x05", // 䪩
+ 0x4aaa: "\x05\x03\x02\x05\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 䪪
+ 0x4aab: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x05\x05\x05\x01\x02\x01", // 䪫
+ 0x4aac: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x04\x05\x05\x02\x01", // 䪬
+ 0x4aad: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 䪭
+ 0x4aae: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03", // 䪮
+ 0x4aaf: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 䪯
+ 0x4ab0: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 䪰
+ 0x4ab1: "\x05\x01\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䪱
+ 0x4ab2: "\x01\x03\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䪲
+ 0x4ab3: "\x05\x01\x01\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䪳
+ 0x4ab4: "\x04\x05\x03\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䪴
+ 0x4ab5: "\x01\x05\x02\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䪵
+ 0x4ab6: "\x02\x05\x01\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䪶
+ 0x4ab7: "\x03\x05\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䪷
+ 0x4ab8: "\x05\x01\x05\x01\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䪸
+ 0x4ab9: "\x01\x03\x02\x04\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䪹
+ 0x4aba: "\x01\x02\x01\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䪺
+ 0x4abb: "\x05\x04\x01\x03\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䪻
+ 0x4abc: "\x05\x02\x02\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䪼
+ 0x4abd: "\x02\x05\x01\x01\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䪽
+ 0x4abe: "\x01\x03\x02\x05\x01\x01\x01\x03\x04\x03\x04\x03\x03\x03", // 䪾
+ 0x4abf: "\x03\x02\x05\x04\x03\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䪿
+ 0x4ac0: "\x05\x01\x01\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫀
+ 0x4ac1: "\x03\x02\x05\x01\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫁
+ 0x4ac2: "\x03\x05\x04\x03\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫂
+ 0x4ac3: "\x01\x03\x01\x01\x05\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫃
+ 0x4ac4: "\x04\x03\x02\x05\x01\x03\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫄
+ 0x4ac5: "\x04\x04\x05\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫅
+ 0x4ac6: "\x01\x03\x05\x05\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫆
+ 0x4ac7: "\x03\x03\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫇
+ 0x4ac8: "\x02\x05\x02\x03\x04\x04\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫈
+ 0x4ac9: "\x03\x04\x04\x03\x05\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫉
+ 0x4aca: "\x01\x03\x02\x04\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫊
+ 0x4acb: "\x03\x01\x02\x03\x04\x05\x03\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫋
+ 0x4acc: "\x03\x02\x05\x01\x01\x03\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫌
+ 0x4acd: "\x02\x01\x01\x01\x02\x01\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫍
+ 0x4ace: "\x05\x04\x05\x04\x05\x04\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫎
+ 0x4acf: "\x01\x02\x02\x01\x01\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫏
+ 0x4ad0: "\x01\x02\x03\x04\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫐
+ 0x4ad1: "\x01\x03\x04\x01\x02\x05\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫑
+ 0x4ad2: "\x03\x05\x01\x05\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫒
+ 0x4ad3: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫓
+ 0x4ad4: "\x01\x01\x01\x02\x05\x03\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫔
+ 0x4ad5: "\x04\x01\x04\x03\x04\x05\x02\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫕
+ 0x4ad6: "\x01\x02\x02\x01\x01\x01\x03\x04\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫖
+ 0x4ad7: "\x05\x01\x02\x01\x01\x05\x01\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫗
+ 0x4ad8: "\x02\x05\x01\x01\x03\x05\x03\x04\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫘
+ 0x4ad9: "\x01\x02\x01\x02\x02\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫙
+ 0x4ada: "\x02\x05\x05\x02\x05\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫚
+ 0x4adb: "\x03\x02\x05\x01\x03\x01\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫛
+ 0x4adc: "\x02\x05\x05\x04\x05\x05\x04\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫜
+ 0x4add: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫝
+ 0x4ade: "\x04\x03\x01\x01\x02\x01\x04\x04\x04\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫞
+ 0x4adf: "\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫟
+ 0x4ae0: "\x03\x03\x03\x01\x03\x02\x04\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫠
+ 0x4ae1: "\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫡
+ 0x4ae2: "\x03\x03\x02\x01\x05\x03\x01\x05\x03\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫢
+ 0x4ae3: "\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫣
+ 0x4ae4: "\x04\x05\x02\x05\x01\x01\x04\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫤
+ 0x4ae5: "\x03\x02\x05\x01\x01\x03\x05\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫥
+ 0x4ae6: "\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫦
+ 0x4ae7: "\x03\x02\x05\x01\x01\x01\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫧
+ 0x4ae8: "\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫨
+ 0x4ae9: "\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫩
+ 0x4aea: "\x01\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫪
+ 0x4aeb: "\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫫
+ 0x4aec: "\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫬
+ 0x4aed: "\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫭
+ 0x4aee: "\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫮
+ 0x4aef: "\x04\x01\x05\x03\x01\x03\x04\x01\x02\x05\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫯
+ 0x4af0: "\x01\x03\x02\x05\x01\x01\x01\x03\x04\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 䫰
+ 0x4af1: "\x01\x03\x02\x05\x02\x02\x01\x03\x02\x05\x02\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫱
+ 0x4af2: "\x01\x03\x01\x02\x05\x01\x05\x03\x04\x04\x05\x04\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫲
+ 0x4af3: "\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫳
+ 0x4af4: "\x01\x02\x03\x04\x01\x02\x03\x04\x01\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫴
+ 0x4af5: "\x03\x02\x05\x01\x01\x01\x04\x04\x05\x03\x04\x04\x01\x05\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫵
+ 0x4af6: "\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x03\x04\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫶
+ 0x4af7: "\x01\x02\x05\x01\x02\x05\x01\x01\x02\x02\x05\x01\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䫷
+ 0x4af8: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x05\x03", // 䫸
+ 0x4af9: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x02\x01", // 䫹
+ 0x4afa: "\x01\x03\x05\x04\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 䫺
+ 0x4afb: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01", // 䫻
+ 0x4afc: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x05\x01\x03\x04", // 䫼
+ 0x4afd: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x01\x01\x05", // 䫽
+ 0x4afe: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x04\x05\x04\x03\x04", // 䫾
+ 0x4aff: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x05\x03\x02\x05\x01", // 䫿
+ 0x4b00: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x05\x05\x04\x05\x03", // 䬀
+ 0x4b01: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x04\x04\x05\x03\x05", // 䬁
+ 0x4b02: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x05\x05\x03\x04", // 䬂
+ 0x4b03: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x04\x01\x04\x03\x01", // 䬃
+ 0x4b04: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x03\x01\x05\x03\x04", // 䬄
+ 0x4b05: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x05\x03\x05\x03\x05\x03", // 䬅
+ 0x4b06: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x01\x02\x03\x04\x02\x02", // 䬆
+ 0x4b07: "\x04\x03\x02\x05\x01\x03\x05\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 䬇
+ 0x4b08: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x04\x03\x02\x05\x01\x03\x05", // 䬈
+ 0x4b09: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x02\x01\x03\x02\x03\x04", // 䬉
+ 0x4b0a: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x03\x04\x03\x04\x03\x04", // 䬊
+ 0x4b0b: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x02\x01\x03\x04\x03\x05\x04", // 䬋
+ 0x4b0c: "\x02\x01\x05\x03\x01\x05\x03\x05\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 䬌
+ 0x4b0d: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x05\x03\x03\x04\x05\x04\x04", // 䬍
+ 0x4b0e: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x02\x05\x01\x01\x05\x03\x04", // 䬎
+ 0x4b0f: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x04\x01\x04\x03\x01\x02\x05\x01", // 䬏
+ 0x4b10: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 䬐
+ 0x4b11: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x02\x05\x01\x01", // 䬑
+ 0x4b12: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x04\x04\x05\x04\x03\x03\x04\x05\x04", // 䬒
+ 0x4b13: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 䬓
+ 0x4b14: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 䬔
+ 0x4b15: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 䬕
+ 0x4b16: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x02\x05\x01\x01\x01\x01\x02\x01", // 䬖
+ 0x4b17: "\x02\x05\x01\x01\x01\x03\x05\x03\x03\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 䬗
+ 0x4b18: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 䬘
+ 0x4b19: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02", // 䬙
+ 0x4b1a: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 䬚
+ 0x4b1b: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x01\x02\x02\x01\x01\x02", // 䬛
+ 0x4b1c: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 䬜
+ 0x4b1d: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 䬝
+ 0x4b1e: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 䬞
+ 0x4b1f: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x05\x04\x05\x03\x03\x04\x01\x01\x02\x04\x03\x01\x02\x02", // 䬟
+ 0x4b20: "\x01\x04\x05\x02\x04\x04\x04\x04\x05\x03\x04\x03\x05\x03\x04\x03\x02", // 䬠
+ 0x4b21: "\x01\x02\x01\x03\x02\x05\x01\x01\x05\x03\x04\x03\x05\x03\x04\x03\x02", // 䬡
+ 0x4b22: "\x03\x04\x04\x05\x01\x01\x05\x04\x05\x03", // 䬢
+ 0x4b23: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x01\x05", // 䬣
+ 0x4b24: "\x05\x01\x03\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 䬤
+ 0x4b25: "\x01\x05\x04\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 䬥
+ 0x4b26: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x05\x05\x04", // 䬦
+ 0x4b27: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x01\x03\x05", // 䬧
+ 0x4b28: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x05\x03\x05", // 䬨
+ 0x4b29: "\x01\x03\x02\x04\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 䬩
+ 0x4b2a: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x03\x02\x04", // 䬪
+ 0x4b2b: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x05\x01\x05\x04", // 䬫
+ 0x4b2c: "\x03\x04\x04\x05\x01\x01\x05\x04\x02\x05\x01\x03\x04", // 䬬
+ 0x4b2d: "\x02\x05\x01\x05\x03\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 䬭
+ 0x4b2e: "\x03\x04\x04\x05\x01\x01\x05\x04\x05\x04\x03\x04", // 䬮
+ 0x4b2f: "\x03\x04\x04\x05\x01\x01\x05\x04\x02\x01\x02\x05\x01", // 䬯
+ 0x4b30: "\x03\x04\x04\x05\x01\x01\x05\x04\x05\x03\x02\x05\x01", // 䬰
+ 0x4b31: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x03\x04\x01", // 䬱
+ 0x4b32: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x05\x02\x05\x01", // 䬲
+ 0x4b33: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x03\x01\x01\x02", // 䬳
+ 0x4b34: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x01\x02\x03\x04", // 䬴
+ 0x4b35: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x01\x05\x03\x03\x04", // 䬵
+ 0x4b36: "\x03\x04\x04\x05\x01\x01\x05\x04\x05\x01\x01\x05\x03\x04", // 䬶
+ 0x4b37: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x05\x04\x03\x05\x04", // 䬷
+ 0x4b38: "\x01\x03\x05\x04\x05\x04\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 䬸
+ 0x4b39: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x05\x04\x01\x02\x01", // 䬹
+ 0x4b3a: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x03\x01\x01\x01\x02", // 䬺
+ 0x4b3b: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x01\x01\x05\x03\x04", // 䬻
+ 0x4b3c: "\x03\x04\x04\x05\x01\x01\x05\x04\x02\x05\x01\x02\x05\x01\x01", // 䬼
+ 0x4b3d: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x03\x02\x05\x01\x03\x05", // 䬽
+ 0x4b3e: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x03\x05\x01\x05\x02\x03", // 䬾
+ 0x4b3f: "\x03\x04\x04\x05\x01\x01\x05\x04\x05\x01\x03\x03\x01\x01\x05", // 䬿
+ 0x4b40: "\x03\x04\x04\x05\x01\x01\x05\x04\x05\x01\x02\x04\x05\x04", // 䭀
+ 0x4b41: "\x01\x02\x01\x03\x03\x01\x02\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 䭁
+ 0x4b42: "\x03\x04\x04\x05\x01\x01\x05\x04\x02\x05\x01\x05\x02\x01\x05", // 䭂
+ 0x4b43: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x04\x04\x05\x04\x05\x04\x04", // 䭃
+ 0x4b44: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x05\x01\x05\x01\x01\x02", // 䭄
+ 0x4b45: "\x03\x04\x04\x05\x01\x01\x05\x04\x02\x05\x01\x02\x02\x05\x01\x01", // 䭅
+ 0x4b46: "\x01\x02\x05\x01\x02\x05\x02\x04\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 䭆
+ 0x4b47: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x05\x01\x02\x01\x02\x05\x01", // 䭇
+ 0x4b48: "\x03\x04\x04\x05\x01\x01\x05\x04\x05\x01\x01\x01\x01\x02\x05\x04", // 䭈
+ 0x4b49: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x03\x01\x02\x01\x02\x05\x01\x01", // 䭉
+ 0x4b4a: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x02\x02\x05\x01\x03\x04", // 䭊
+ 0x4b4b: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x02\x02\x05\x01\x01\x02\x03\x04", // 䭋
+ 0x4b4c: "\x01\x02\x02\x05\x01\x03\x05\x01\x01\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 䭌
+ 0x4b4d: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x01\x02\x01\x02\x05\x02\x02\x01", // 䭍
+ 0x4b4e: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 䭎
+ 0x4b4f: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x05\x01\x03\x02\x05\x01\x02\x02", // 䭏
+ 0x4b50: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x03\x01\x01\x02\x01\x04\x05\x04\x04", // 䭐
+ 0x4b51: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 䭑
+ 0x4b52: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x02\x05\x01\x01\x01\x04\x05\x04\x04", // 䭒
+ 0x4b53: "\x03\x04\x04\x05\x01\x01\x05\x04\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 䭓
+ 0x4b54: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x02\x05\x01\x05\x01\x04\x05\x04", // 䭔
+ 0x4b55: "\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 䭕
+ 0x4b56: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x01\x03\x01\x02\x02\x01\x04\x04\x04\x04", // 䭖
+ 0x4b57: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05", // 䭗
+ 0x4b58: "\x03\x04\x04\x05\x01\x01\x05\x04\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x03\x04", // 䭘
+ 0x4b59: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x01", // 䭙
+ 0x4b5a: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 䭚
+ 0x4b5b: "\x03\x04\x04\x05\x01\x01\x05\x04\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 䭛
+ 0x4b5c: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 䭜
+ 0x4b5d: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 䭝
+ 0x4b5e: "\x03\x04\x04\x05\x01\x01\x05\x04\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 䭞
+ 0x4b5f: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x02\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 䭟
+ 0x4b60: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x01\x03\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 䭠
+ 0x4b61: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x04\x04\x03\x01\x02\x01\x05\x01\x01\x04\x05\x04\x04", // 䭡
+ 0x4b62: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x04\x05\x04\x05\x04\x04\x02\x05\x02\x02\x01\x01\x02", // 䭢
+ 0x4b63: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01", // 䭣
+ 0x4b64: "\x03\x04\x04\x05\x01\x01\x05\x04\x02\x05\x01\x02\x01\x02\x05\x01\x05\x01\x04\x05\x04", // 䭤
+ 0x4b65: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x03\x01\x01\x01\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 䭥
+ 0x4b66: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x02\x04\x04\x01\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 䭦
+ 0x4b67: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x05\x05\x04\x02\x03\x04", // 䭧
+ 0x4b68: "\x03\x04\x04\x05\x01\x01\x05\x04\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x03\x04\x02\x05\x01", // 䭨
+ 0x4b69: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01", // 䭩
+ 0x4b6a: "\x03\x05\x05\x02\x05\x01\x01\x01\x02\x05\x01\x01\x02\x01\x01", // 䭪
+ 0x4b6b: "\x03\x05\x02\x05\x01\x01\x04\x03\x01\x03\x02\x05\x01\x01\x01", // 䭫
+ 0x4b6c: "\x03\x05\x02\x05\x01\x01\x05\x05\x05\x01\x03\x02\x05\x01\x01\x01", // 䭬
+ 0x4b6d: "\x04\x03\x01\x03\x02\x05\x01\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䭭
+ 0x4b6e: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x03\x01\x03\x02\x05\x01\x01\x01", // 䭮
+ 0x4b6f: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x05\x02\x02\x05\x02", // 䭯
+ 0x4b70: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01\x01\x01\x03\x04\x01\x01\x02", // 䭰
+ 0x4b71: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x04\x03\x02\x05\x02\x03\x04", // 䭱
+ 0x4b72: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x04\x01\x02\x05\x01\x02", // 䭲
+ 0x4b73: "\x03\x01\x02\x03\x04\x05\x03\x01\x03\x02\x05\x01\x01\x03\x05\x05\x04\x03\x01\x02\x03\x04\x02\x05\x01\x01", // 䭳
+ 0x4b74: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02", // 䭴
+ 0x4b75: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05\x04", // 䭵
+ 0x4b76: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x03\x02", // 䭶
+ 0x4b77: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x01\x01\x05", // 䭷
+ 0x4b78: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x04\x03\x04", // 䭸
+ 0x4b79: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05\x05\x02", // 䭹
+ 0x4b7a: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x01\x03\x05", // 䭺
+ 0x4b7b: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x04\x05\x03", // 䭻
+ 0x4b7c: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x01\x03\x02", // 䭼
+ 0x4b7d: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x01\x01\x02", // 䭽
+ 0x4b7e: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x03\x04\x04", // 䭾
+ 0x4b7f: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x01\x01\x03\x04", // 䭿
+ 0x4b80: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05\x05\x01\x05", // 䮀
+ 0x4b81: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x04\x01\x03\x02", // 䮁
+ 0x4b82: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x03\x05\x04\x04", // 䮂
+ 0x4b83: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x01\x05\x04", // 䮃
+ 0x4b84: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x01\x05\x05\x04", // 䮄
+ 0x4b85: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x05\x05\x03\x04", // 䮅
+ 0x4b86: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x03\x02\x04\x01\x02", // 䮆
+ 0x4b87: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x01\x01\x01\x01\x02", // 䮇
+ 0x4b88: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05\x04\x03\x05\x04", // 䮈
+ 0x4b89: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x01\x03\x05\x03\x04", // 䮉
+ 0x4b8a: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x05\x01\x05\x03\x04", // 䮊
+ 0x4b8b: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x03\x05\x04\x02\x02", // 䮋
+ 0x4b8c: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x02\x01\x02\x03\x04", // 䮌
+ 0x4b8d: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x01\x03\x05\x03\x04", // 䮍
+ 0x4b8e: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x04\x01\x03\x02\x05\x02", // 䮎
+ 0x4b8f: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x05\x01\x02\x05\x01", // 䮏
+ 0x4b90: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x03\x04\x02\x05\x01", // 䮐
+ 0x4b91: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x04\x04\x03\x01\x02\x04", // 䮑
+ 0x4b92: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x05\x01\x01\x02\x04", // 䮒
+ 0x4b93: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x01\x02\x05\x01\x01\x01\x02", // 䮓
+ 0x4b94: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x01\x02\x01\x02\x02\x01\x01", // 䮔
+ 0x4b95: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x04\x05\x04\x05\x04\x05\x04", // 䮕
+ 0x4b96: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x01\x01\x02\x05\x01\x01", // 䮖
+ 0x4b97: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x02\x01\x03\x01\x01\x02", // 䮗
+ 0x4b98: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x02\x01\x05\x01\x01\x03\x05", // 䮘
+ 0x4b99: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x05\x01\x01\x05\x03\x04", // 䮙
+ 0x4b9a: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x01\x03\x04\x03\x05\x04", // 䮚
+ 0x4b9b: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x02\x03\x02\x01\x02\x04", // 䮛
+ 0x4b9c: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 䮜
+ 0x4b9d: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 䮝
+ 0x4b9e: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x01\x01\x03\x04\x02\x05\x01\x01", // 䮞
+ 0x4b9f: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x04\x05\x04\x03\x03\x04\x05\x04", // 䮟
+ 0x4ba0: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 䮠
+ 0x4ba1: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 䮡
+ 0x4ba2: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x01\x02\x03\x02\x01\x05\x01\x01", // 䮢
+ 0x4ba3: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x04\x05\x04\x05\x04\x01\x02\x03\x04", // 䮣
+ 0x4ba4: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 䮤
+ 0x4ba5: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 䮥
+ 0x4ba6: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 䮦
+ 0x4ba7: "\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 䮧
+ 0x4ba8: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x04\x05\x04\x01\x04\x03\x01\x01\x02", // 䮨
+ 0x4ba9: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x05\x04\x05\x02\x05\x01\x01", // 䮩
+ 0x4baa: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05\x04\x01\x05\x02\x01\x02\x03\x04", // 䮪
+ 0x4bab: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 䮫
+ 0x4bac: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 䮬
+ 0x4bad: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x04\x04\x03\x02\x05\x01\x01\x01\x03\x05", // 䮭
+ 0x4bae: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04", // 䮮
+ 0x4baf: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04", // 䮯
+ 0x4bb0: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01", // 䮰
+ 0x4bb1: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 䮱
+ 0x4bb2: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 䮲
+ 0x4bb3: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 䮳
+ 0x4bb4: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 䮴
+ 0x4bb5: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 䮵
+ 0x4bb6: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02\x03\x04", // 䮶
+ 0x4bb7: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 䮷
+ 0x4bb8: "\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 䮸
+ 0x4bb9: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x01\x02\x01\x01\x03\x01\x02\x03\x03\x05\x03\x04", // 䮹
+ 0x4bba: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01", // 䮺
+ 0x4bbb: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 䮻
+ 0x4bbc: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x03\x03\x04\x04\x03\x03\x04\x03\x05\x04\x01\x05\x02", // 䮼
+ 0x4bbd: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x04\x04\x04\x04", // 䮽
+ 0x4bbe: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01\x01\x01", // 䮾
+ 0x4bbf: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 䮿
+ 0x4bc0: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01", // 䯀
+ 0x4bc1: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x01\x05\x02\x05\x01\x03\x05\x01\x01\x04\x03\x01\x01\x01\x02\x03\x05\x04", // 䯁
+ 0x4bc2: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x03\x04", // 䯂
+ 0x4bc3: "\x05\x05\x01\x04\x04\x05\x05\x03\x01", // 䯃
+ 0x4bc4: "\x05\x05\x01\x02\x05\x01\x02\x05\x03\x04", // 䯄
+ 0x4bc5: "\x05\x05\x01\x01\x02\x02\x01\x01\x01\x05\x04\x05\x04", // 䯅
+ 0x4bc6: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x05", // 䯆
+ 0x4bc7: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x05\x03", // 䯇
+ 0x4bc8: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x01\x01\x03\x05", // 䯈
+ 0x4bc9: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x03\x05\x03\x04", // 䯉
+ 0x4bca: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x01\x02\x05\x01\x02", // 䯊
+ 0x4bcb: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x01\x03\x05\x04\x04", // 䯋
+ 0x4bcc: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x05\x01\x03\x05\x03", // 䯌
+ 0x4bcd: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x03\x04\x04\x05\x04", // 䯍
+ 0x4bce: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x03\x04\x01\x01\x02", // 䯎
+ 0x4bcf: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x03\x01\x02\x02\x05\x01", // 䯏
+ 0x4bd0: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x02\x05\x03\x04\x03\x04", // 䯐
+ 0x4bd1: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x02\x04\x03\x01\x03\x05", // 䯑
+ 0x4bd2: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x03\x03\x02\x01\x01\x02", // 䯒
+ 0x4bd3: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x01\x02\x01\x01\x02\x01", // 䯓
+ 0x4bd4: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x04\x04\x05\x03\x01\x05", // 䯔
+ 0x4bd5: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x03\x01\x02\x01\x05\x04", // 䯕
+ 0x4bd6: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x04\x05\x01\x01\x05\x03\x04", // 䯖
+ 0x4bd7: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x01\x05\x03\x05\x01\x02\x01", // 䯗
+ 0x4bd8: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x04\x04\x05\x01\x01\x03\x05", // 䯘
+ 0x4bd9: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x01\x02\x05\x01\x01\x02\x04", // 䯙
+ 0x4bda: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x05\x05\x04\x02\x05\x01\x01", // 䯚
+ 0x4bdb: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x04\x04\x05\x03\x05\x04\x05\x05", // 䯛
+ 0x4bdc: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x02\x05\x01\x01\x03\x05\x03\x03", // 䯜
+ 0x4bdd: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x01\x03\x01\x02\x01\x02\x05\x01\x01", // 䯝
+ 0x4bde: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x02\x05\x05\x02\x05\x02\x05\x01", // 䯞
+ 0x4bdf: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 䯟
+ 0x4be0: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 䯠
+ 0x4be1: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 䯡
+ 0x4be2: "\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x02\x05\x05\x04\x05\x02\x05\x01\x01", // 䯢
+ 0x4be3: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 䯣
+ 0x4be4: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 䯤
+ 0x4be5: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x04\x04\x04\x04", // 䯥
+ 0x4be6: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x01\x02\x02\x02\x05\x02\x02\x01\x01\x03\x04\x05\x03\x04", // 䯦
+ 0x4be7: "\x04\x01\x02\x05\x01\x04\x05\x02\x05\x02\x05\x01", // 䯧
+ 0x4be8: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x01\x03\x04", // 䯨
+ 0x4be9: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x05\x02\x01\x05", // 䯩
+ 0x4bea: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䯪
+ 0x4beb: "\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x03\x04\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 䯫
+ 0x4bec: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 䯬
+ 0x4bed: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x05\x04", // 䯭
+ 0x4bee: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x05\x03", // 䯮
+ 0x4bef: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x03\x04\x03", // 䯯
+ 0x4bf0: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x04\x03\x02", // 䯰
+ 0x4bf1: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x03\x02\x04", // 䯱
+ 0x4bf2: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x05\x02\x01\x05", // 䯲
+ 0x4bf3: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x04\x05\x04", // 䯳
+ 0x4bf4: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x05\x05\x04", // 䯴
+ 0x4bf5: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x01\x03\x02", // 䯵
+ 0x4bf6: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x01\x01\x01", // 䯶
+ 0x4bf7: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x01\x03\x05\x03\x04", // 䯷
+ 0x4bf8: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x01\x03\x05\x03\x04", // 䯸
+ 0x4bf9: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x05\x01\x01\x04\x05\x05\x04", // 䯹
+ 0x4bfa: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x05\x01\x05\x02\x05\x01", // 䯺
+ 0x4bfb: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x01\x02\x01\x02\x05\x01", // 䯻
+ 0x4bfc: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x05\x03\x04\x03\x03\x04", // 䯼
+ 0x4bfd: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x01\x04\x03\x01\x02\x05\x01", // 䯽
+ 0x4bfe: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x05\x01\x02\x01\x02\x05\x01", // 䯾
+ 0x4bff: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x01\x03\x04\x03\x04\x01\x02", // 䯿
+ 0x4c00: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x01\x02\x03\x04\x05\x03\x01", // 䰀
+ 0x4c01: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x05\x01\x01\x02\x04\x01\x03\x04", // 䰁
+ 0x4c02: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x04\x04\x03\x01\x02\x03\x04", // 䰂
+ 0x4c03: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x03\x01\x02\x02\x04\x03\x01", // 䰃
+ 0x4c04: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 䰄
+ 0x4c05: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 䰅
+ 0x4c06: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x05\x04\x05\x02\x03\x01\x02\x03\x04", // 䰆
+ 0x4c07: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x01\x03\x02\x05\x01\x01", // 䰇
+ 0x4c08: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x03\x01\x01\x01\x03\x01\x02\x01", // 䰈
+ 0x4c09: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x03\x05\x04\x01\x04\x03\x05\x05\x04", // 䰉
+ 0x4c0a: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 䰊
+ 0x4c0b: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x01\x01\x04\x04\x05\x05\x03\x01", // 䰋
+ 0x4c0c: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04", // 䰌
+ 0x4c0d: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04", // 䰍
+ 0x4c0e: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 䰎
+ 0x4c0f: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03\x04", // 䰏
+ 0x4c10: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01", // 䰐
+ 0x4c11: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02", // 䰑
+ 0x4c12: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 䰒
+ 0x4c13: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x02\x05\x01\x01\x01\x04\x04\x05\x03\x04\x04\x01\x05\x03", // 䰓
+ 0x4c14: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x03\x05\x04\x01\x04\x03\x05\x05\x04\x02\x05\x02\x02\x01", // 䰔
+ 0x4c15: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 䰕
+ 0x4c16: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 䰖
+ 0x4c17: "\x02\x01\x01\x02\x01\x01\x01\x02\x01\x02\x03\x05\x02\x05\x01\x02\x05\x01\x01\x05", // 䰗
+ 0x4c18: "\x02\x01\x01\x02\x01\x01\x01\x02\x01\x02\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 䰘
+ 0x4c19: "\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x02\x05\x04", // 䰙
+ 0x4c1a: "\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x04\x01\x03\x04", // 䰚
+ 0x4c1b: "\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x05\x05\x04", // 䰛
+ 0x4c1c: "\x05\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x05\x01\x05", // 䰜
+ 0x4c1d: "\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 䰝
+ 0x4c1e: "\x05\x01\x05\x01\x02\x01\x03\x02\x05\x01\x01\x05\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 䰞
+ 0x4c1f: "\x01\x01\x05\x04\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 䰟
+ 0x4c20: "\x03\x02\x05\x01\x01\x03\x05\x05\x04\x02\x05\x01\x01\x02", // 䰠
+ 0x4c21: "\x03\x02\x05\x01\x01\x03\x05\x05\x04\x03\x01\x01\x03\x04", // 䰡
+ 0x4c22: "\x03\x02\x05\x01\x01\x03\x05\x05\x04\x03\x03\x02\x01\x01\x02", // 䰢
+ 0x4c23: "\x03\x02\x05\x01\x01\x03\x05\x05\x04\x02\x05\x03\x04\x03\x04", // 䰣
+ 0x4c24: "\x01\x02\x05\x01\x01\x02\x03\x04\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 䰤
+ 0x4c25: "\x01\x02\x05\x01\x01\x05\x03\x04\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 䰥
+ 0x4c26: "\x03\x02\x05\x01\x01\x03\x05\x05\x04\x03\x02\x05\x01\x01\x03\x01\x02", // 䰦
+ 0x4c27: "\x03\x02\x05\x01\x01\x03\x05\x05\x04\x02\x01\x05\x03\x01\x05\x03\x05", // 䰧
+ 0x4c28: "\x03\x02\x05\x01\x01\x03\x05\x05\x04\x05\x02\x01\x03\x02\x05\x01\x01\x01", // 䰨
+ 0x4c29: "\x01\x02\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 䰩
+ 0x4c2a: "\x04\x01\x03\x04\x03\x04\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 䰪
+ 0x4c2b: "\x03\x02\x05\x01\x01\x03\x05\x05\x04\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 䰫
+ 0x4c2c: "\x03\x02\x05\x01\x01\x03\x05\x05\x04\x05\x04\x05\x02\x03\x02\x05\x03\x04\x02\x05\x01", // 䰬
+ 0x4c2d: "\x01\x03\x02\x05\x02\x02\x01\x03\x02\x05\x02\x02\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 䰭
+ 0x4c2e: "\x03\x02\x05\x01\x01\x03\x05\x05\x04\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01\x05\x03\x04", // 䰮
+ 0x4c2f: "\x03\x02\x05\x01\x01\x03\x05\x05\x04\x03\x05\x03\x01\x01\x03\x04\x05\x04\x05\x02\x01\x03\x04", // 䰯
+ 0x4c30: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 䰰
+ 0x4c31: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x03\x04\x01\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 䰱
+ 0x4c32: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05", // 䰲
+ 0x4c33: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02", // 䰳
+ 0x4c34: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x05", // 䰴
+ 0x4c35: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x02\x01", // 䰵
+ 0x4c36: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x05", // 䰶
+ 0x4c37: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x01\x01\x02", // 䰷
+ 0x4c38: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x04\x05\x04", // 䰸
+ 0x4c39: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x05\x03\x04", // 䰹
+ 0x4c3a: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x03\x01\x02", // 䰺
+ 0x4c3b: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x03\x04", // 䰻
+ 0x4c3c: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x04\x04\x05", // 䰼
+ 0x4c3d: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x05\x02", // 䰽
+ 0x4c3e: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x02\x01\x05", // 䰾
+ 0x4c3f: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x05\x02\x05", // 䰿
+ 0x4c40: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x03\x04", // 䱀
+ 0x4c41: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x03\x04\x01", // 䱁
+ 0x4c42: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x05\x04\x05\x03", // 䱂
+ 0x4c43: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x01\x03\x04", // 䱃
+ 0x4c44: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x03\x05\x04\x04", // 䱄
+ 0x4c45: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x01\x02\x03\x04", // 䱅
+ 0x4c46: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x03\x05\x02\x01", // 䱆
+ 0x4c47: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01\x01", // 䱇
+ 0x4c48: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x01\x02\x03\x04", // 䱈
+ 0x4c49: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01\x01", // 䱉
+ 0x4c4a: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x01\x02\x03\x04", // 䱊
+ 0x4c4b: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x02\x01\x03\x04", // 䱋
+ 0x4c4c: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x02\x05\x01\x02\x05", // 䱌
+ 0x4c4d: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x05\x04\x04\x01", // 䱍
+ 0x4c4e: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x05\x01\x01\x01", // 䱎
+ 0x4c4f: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x05\x01\x04\x03\x01", // 䱏
+ 0x4c50: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x04\x04\x03\x05\x02\x01", // 䱐
+ 0x4c51: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x03\x03\x01\x02", // 䱑
+ 0x4c52: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x05\x02\x01\x05", // 䱒
+ 0x4c53: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x02\x01\x05\x04", // 䱓
+ 0x4c54: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x02\x02\x03\x01\x03\x04", // 䱔
+ 0x4c55: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x05\x05\x04\x01\x04", // 䱕
+ 0x4c56: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x01\x05\x03\x05\x01\x02", // 䱖
+ 0x4c57: "\x02\x01\x03\x05\x04\x05\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 䱗
+ 0x4c58: "\x03\x01\x02\x03\x04\x02\x02\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 䱘
+ 0x4c59: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x01\x01\x02\x03\x04\x05\x04", // 䱙
+ 0x4c5a: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x01\x01\x02\x04\x01\x03\x04", // 䱚
+ 0x4c5b: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x05\x01\x01\x05\x03\x04", // 䱛
+ 0x4c5c: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x02\x01\x02\x05\x01\x01", // 䱜
+ 0x4c5d: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x02\x05\x01\x01\x03\x01\x02", // 䱝
+ 0x4c5e: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x03\x04\x01\x01\x02\x03\x04", // 䱞
+ 0x4c5f: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x01\x03\x01\x02\x02\x05\x01", // 䱟
+ 0x4c60: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x05\x03\x04\x01\x05\x03\x04", // 䱠
+ 0x4c61: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x04\x03\x01\x02\x03\x04", // 䱡
+ 0x4c62: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x05\x01\x01\x02", // 䱢
+ 0x4c63: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x03\x04\x03\x04\x01\x02", // 䱣
+ 0x4c64: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x03\x02\x01\x05\x01\x01", // 䱤
+ 0x4c65: "\x03\x01\x01\x02\x05\x02\x02\x02\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 䱥
+ 0x4c66: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 䱦
+ 0x4c67: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x01\x01\x03\x04\x05\x05", // 䱧
+ 0x4c68: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x05\x02\x03\x04\x02\x02", // 䱨
+ 0x4c69: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x04\x03\x01\x04\x01\x05", // 䱩
+ 0x4c6a: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x01\x02\x01\x03\x05\x03\x04", // 䱪
+ 0x4c6b: "\x01\x02\x05\x01\x02\x03\x04\x02\x02\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 䱫
+ 0x4c6c: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x02\x01\x03\x04\x02\x05\x01\x01", // 䱬
+ 0x4c6d: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x04\x02\x01\x02\x05\x04\x04\x01", // 䱭
+ 0x4c6e: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x01\x01\x02\x05\x03\x01\x03\x04", // 䱮
+ 0x4c6f: "\x05\x04\x05\x02\x03\x03\x01\x03\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 䱯
+ 0x4c70: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 䱰
+ 0x4c71: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x04\x03\x04\x05\x02\x05\x02", // 䱱
+ 0x4c72: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x05\x01\x03\x05\x03\x03\x03\x04", // 䱲
+ 0x4c73: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x03\x02\x05\x01\x01\x02\x01\x01", // 䱳
+ 0x4c74: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x04\x02\x01\x02\x05\x01\x01\x01", // 䱴
+ 0x4c75: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x04\x05\x04\x05\x04\x01\x05\x04\x01", // 䱵
+ 0x4c76: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x05\x01\x01\x05\x04\x05\x02", // 䱶
+ 0x4c77: "\x02\x01\x05\x03\x01\x05\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x03\x04", // 䱷
+ 0x4c78: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x02\x01\x05\x01\x01\x02\x05\x04", // 䱸
+ 0x4c79: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x01\x01\x01\x03\x01\x02\x01", // 䱹
+ 0x4c7a: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 䱺
+ 0x4c7b: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x05\x04\x05\x02\x05\x01\x01", // 䱻
+ 0x4c7c: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x01\x03\x01\x02\x02\x01\x05\x03\x04", // 䱼
+ 0x4c7d: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x04\x04\x05\x01\x01\x03\x02\x05\x01", // 䱽
+ 0x4c7e: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 䱾
+ 0x4c7f: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x05\x01\x01\x01\x02\x03\x03\x02\x01", // 䱿
+ 0x4c80: "\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 䲀
+ 0x4c81: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x01\x03\x01\x01\x02\x03\x04\x01\x02\x04", // 䲁
+ 0x4c82: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x05\x03\x03\x01\x05\x02\x01\x03\x04", // 䲂
+ 0x4c83: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 䲃
+ 0x4c84: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x05\x05\x04\x01\x04\x03\x01\x03\x04", // 䲄
+ 0x4c85: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 䲅
+ 0x4c86: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 䲆
+ 0x4c87: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x05\x01\x05\x03\x04\x04\x05\x04", // 䲇
+ 0x4c88: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04", // 䲈
+ 0x4c89: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x02\x01\x01\x01\x03\x04\x03\x03\x01\x02", // 䲉
+ 0x4c8a: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x02\x01\x03\x01\x02\x01\x02\x05\x01\x01", // 䲊
+ 0x4c8b: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01", // 䲋
+ 0x4c8c: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x01\x01\x02\x03\x04\x03\x05\x03\x04", // 䲌
+ 0x4c8d: "\x03\x03\x05\x04\x01\x04\x04\x03\x01\x01\x03\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 䲍
+ 0x4c8e: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 䲎
+ 0x4c8f: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x05\x03", // 䲏
+ 0x4c90: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x05\x03", // 䲐
+ 0x4c91: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01\x05\x03\x04", // 䲑
+ 0x4c92: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x03\x05\x01\x01\x02\x05\x03\x03\x01\x01\x02", // 䲒
+ 0x4c93: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 䲓
+ 0x4c94: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x01\x01", // 䲔
+ 0x4c95: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x01\x02\x02\x04\x03\x01\x02\x05\x01\x01", // 䲕
+ 0x4c96: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 䲖
+ 0x4c97: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x03\x02\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x02", // 䲗
+ 0x4c98: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x04\x03\x01\x04\x04\x04\x05\x02\x05\x01\x05\x01", // 䲘
+ 0x4c99: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x04\x03\x01\x04\x05\x01\x01\x05\x04\x05\x02", // 䲙
+ 0x4c9a: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x05\x01\x02\x03\x04\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 䲚
+ 0x4c9b: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x02\x02\x05\x02\x02\x01\x04\x05\x02\x05\x01\x01\x01", // 䲛
+ 0x4c9c: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 䲜
+ 0x4c9d: "\x03\x05\x02\x05\x01\x02\x01\x01\x03\x04\x05\x05", // 䲝
+ 0x4c9e: "\x03\x05\x02\x05\x01\x02\x01\x01\x04\x01\x04\x03\x01", // 䲞
+ 0x4c9f: "\x03\x05\x02\x05\x01\x02\x01\x01\x03\x05\x01\x05\x02", // 䲟
+ 0x4ca0: "\x03\x05\x02\x05\x01\x02\x01\x01\x01\x01\x01\x03\x04\x02\x05\x01\x01", // 䲠
+ 0x4ca1: "\x03\x05\x02\x05\x01\x02\x01\x01\x04\x03\x01\x02\x05\x03\x05\x01\x01", // 䲡
+ 0x4ca2: "\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04\x03\x05\x02\x05\x01\x02\x01\x01", // 䲢
+ 0x4ca3: "\x02\x01\x05\x03\x01\x05\x03\x05\x02\x05\x01\x02\x01\x01\x03\x01\x03\x04", // 䲣
+ 0x4ca4: "\x03\x05\x02\x05\x01\x02\x01\x01\x04\x04\x01\x01\x02\x05\x03\x05\x01\x01", // 䲤
+ 0x4ca5: "\x03\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䲥
+ 0x4ca6: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x01\x03\x04", // 䲦
+ 0x4ca7: "\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䲧
+ 0x4ca8: "\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䲨
+ 0x4ca9: "\x05\x01\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䲩
+ 0x4caa: "\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䲪
+ 0x4cab: "\x01\x03\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䲫
+ 0x4cac: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x05\x01\x05", // 䲬
+ 0x4cad: "\x03\x05\x01\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䲭
+ 0x4cae: "\x01\x01\x03\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䲮
+ 0x4caf: "\x03\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䲯
+ 0x4cb0: "\x01\x01\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䲰
+ 0x4cb1: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x04\x01\x05\x03", // 䲱
+ 0x4cb2: "\x03\x04\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䲲
+ 0x4cb3: "\x04\x01\x03\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䲳
+ 0x4cb4: "\x04\x03\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䲴
+ 0x4cb5: "\x02\x03\x04\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䲵
+ 0x4cb6: "\x01\x01\x03\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䲶
+ 0x4cb7: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x01\x02\x03\x04", // 䲷
+ 0x4cb8: "\x03\x04\x03\x02\x03\x02\x05\x01\x01\x01\x05\x02\x04\x04\x04\x04", // 䲸
+ 0x4cb9: "\x01\x03\x02\x04\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䲹
+ 0x4cba: "\x01\x02\x02\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䲺
+ 0x4cbb: "\x04\x01\x05\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䲻
+ 0x4cbc: "\x03\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䲼
+ 0x4cbd: "\x01\x03\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䲽
+ 0x4cbe: "\x01\x02\x01\x01\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䲾
+ 0x4cbf: "\x05\x01\x03\x01\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䲿
+ 0x4cc0: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x01\x01\x03\x04", // 䳀
+ 0x4cc1: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x01\x03\x05\x04\x04", // 䳁
+ 0x4cc2: "\x05\x03\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䳂
+ 0x4cc3: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x05\x04\x05\x05", // 䳃
+ 0x4cc4: "\x02\x01\x02\x01\x01\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䳄
+ 0x4cc5: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x02\x05\x01\x03\x04", // 䳅
+ 0x4cc6: "\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䳆
+ 0x4cc7: "\x05\x05\x04\x01\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䳇
+ 0x4cc8: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x05\x05\x01\x05", // 䳈
+ 0x4cc9: "\x03\x05\x04\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䳉
+ 0x4cca: "\x01\x03\x05\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䳊
+ 0x4ccb: "\x02\x05\x01\x02\x01\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䳋
+ 0x4ccc: "\x05\x04\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䳌
+ 0x4ccd: "\x01\x02\x02\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䳍
+ 0x4cce: "\x03\x02\x01\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䳎
+ 0x4ccf: "\x01\x02\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䳏
+ 0x4cd0: "\x04\x01\x03\x05\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䳐
+ 0x4cd1: "\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䳑
+ 0x4cd2: "\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x05\x03\x04", // 䳒
+ 0x4cd3: "\x01\x02\x01\x03\x01\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䳓
+ 0x4cd4: "\x03\x02\x01\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䳔
+ 0x4cd5: "\x03\x04\x04\x03\x05\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䳕
+ 0x4cd6: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x01\x02\x02\x01\x01\x01\x05", // 䳖
+ 0x4cd7: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x01\x02\x01\x05\x03\x04", // 䳗
+ 0x4cd8: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x01\x02\x01\x05\x03\x04", // 䳘
+ 0x4cd9: "\x02\x05\x01\x02\x01\x01\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䳙
+ 0x4cda: "\x02\x05\x01\x01\x01\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䳚
+ 0x4cdb: "\x02\x05\x01\x01\x05\x03\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䳛
+ 0x4cdc: "\x03\x04\x01\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䳜
+ 0x4cdd: "\x04\x01\x04\x03\x01\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䳝
+ 0x4cde: "\x01\x01\x01\x03\x04\x01\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䳞
+ 0x4cdf: "\x02\x05\x01\x01\x03\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䳟
+ 0x4ce0: "\x03\x01\x02\x01\x02\x02\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䳠
+ 0x4ce1: "\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䳡
+ 0x4ce2: "\x01\x02\x02\x01\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䳢
+ 0x4ce3: "\x01\x02\x01\x05\x03\x05\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䳣
+ 0x4ce4: "\x04\x03\x02\x05\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䳤
+ 0x4ce5: "\x02\x05\x02\x03\x04\x04\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䳥
+ 0x4ce6: "\x04\x04\x05\x01\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䳦
+ 0x4ce7: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x02\x05\x01\x03\x01\x01\x03\x04", // 䳧
+ 0x4ce8: "\x03\x02\x05\x01\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䳨
+ 0x4ce9: "\x01\x02\x05\x02\x02\x01\x05\x03\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䳩
+ 0x4cea: "\x02\x05\x02\x01\x03\x02\x05\x02\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䳪
+ 0x4ceb: "\x05\x04\x03\x03\x04\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䳫
+ 0x4cec: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䳬
+ 0x4ced: "\x05\x01\x01\x05\x04\x05\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䳭
+ 0x4cee: "\x03\x05\x01\x01\x04\x05\x05\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䳮
+ 0x4cef: "\x03\x01\x02\x05\x01\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䳯
+ 0x4cf0: "\x03\x02\x02\x05\x01\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䳰
+ 0x4cf1: "\x05\x04\x05\x02\x03\x03\x05\x04\x05\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䳱
+ 0x4cf2: "\x01\x02\x01\x01\x03\x01\x01\x05\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䳲
+ 0x4cf3: "\x05\x02\x02\x05\x02\x01\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䳳
+ 0x4cf4: "\x02\x05\x02\x02\x01\x02\x03\x03\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䳴
+ 0x4cf5: "\x01\x03\x04\x03\x04\x02\x03\x04\x05\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䳵
+ 0x4cf6: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04", // 䳶
+ 0x4cf7: "\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䳷
+ 0x4cf8: "\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䳸
+ 0x4cf9: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x04\x04\x05\x01\x01\x03\x05\x02\x01\x05\x04", // 䳹
+ 0x4cfa: "\x03\x04\x04\x05\x01\x02\x05\x03\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䳺
+ 0x4cfb: "\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䳻
+ 0x4cfc: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 䳼
+ 0x4cfd: "\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䳽
+ 0x4cfe: "\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䳾
+ 0x4cff: "\x03\x05\x04\x04\x01\x03\x04\x04\x04\x04\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䳿
+ 0x4d00: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䴀
+ 0x4d01: "\x04\x04\x05\x02\x05\x01\x01\x02\x05\x02\x01\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䴁
+ 0x4d02: "\x03\x05\x02\x05\x01\x03\x05\x03\x03\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䴂
+ 0x4d03: "\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䴃
+ 0x4d04: "\x03\x04\x04\x03\x04\x05\x03\x05\x04\x01\x05\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䴄
+ 0x4d05: "\x01\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䴅
+ 0x4d06: "\x02\x02\x04\x03\x01\x03\x04\x01\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䴆
+ 0x4d07: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x04\x04\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䴇
+ 0x4d08: "\x03\x02\x05\x04\x03\x01\x02\x03\x04\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䴈
+ 0x4d09: "\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䴉
+ 0x4d0a: "\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01\x05\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䴊
+ 0x4d0b: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 䴋
+ 0x4d0c: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x01\x02\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 䴌
+ 0x4d0d: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䴍
+ 0x4d0e: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䴎
+ 0x4d0f: "\x01\x02\x02\x01\x02\x05\x01\x02\x01\x01\x01\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䴏
+ 0x4d10: "\x04\x04\x05\x01\x01\x02\x01\x03\x01\x01\x02\x05\x02\x02\x05\x01\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䴐
+ 0x4d11: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x04\x05\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䴑
+ 0x4d12: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x03\x04\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 䴒
+ 0x4d13: "\x01\x02\x05\x02\x03\x05\x04\x05\x01", // 䴓
+ 0x4d14: "\x04\x01\x03\x04\x03\x04\x03\x05\x04\x05\x01", // 䴔
+ 0x4d15: "\x01\x03\x05\x04\x02\x02\x03\x05\x04\x05\x01", // 䴕
+ 0x4d16: "\x01\x01\x02\x01\x02\x05\x01\x01\x03\x05\x04\x05\x01", // 䴖
+ 0x4d17: "\x02\x05\x01\x01\x01\x01\x03\x04\x04\x03\x05\x04\x05\x01", // 䴗
+ 0x4d18: "\x03\x03\x02\x01\x05\x03\x01\x05\x03\x05\x03\x05\x04\x05\x01", // 䴘
+ 0x4d19: "\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x03\x05\x04\x05\x01", // 䴙
+ 0x4d1a: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x04\x01\x03\x05", // 䴚
+ 0x4d1b: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x02\x04\x03\x02\x05\x01\x01", // 䴛
+ 0x4d1c: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 䴜
+ 0x4d1d: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x02\x05\x01\x01\x01\x02\x02\x01\x01\x01\x05\x04", // 䴝
+ 0x4d1e: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 䴞
+ 0x4d1f: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x03\x05\x04", // 䴟
+ 0x4d20: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x03\x01\x03\x04", // 䴠
+ 0x4d21: "\x01\x02\x02\x04\x03\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 䴡
+ 0x4d22: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x01\x02\x03\x04", // 䴢
+ 0x4d23: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x03\x04\x03\x01\x02", // 䴣
+ 0x4d24: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x03\x01\x01\x02\x01", // 䴤
+ 0x4d25: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x05\x03\x02\x05\x01", // 䴥
+ 0x4d26: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x04\x01\x01\x01\x02\x05\x01", // 䴦
+ 0x4d27: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x03\x01\x02\x03\x04\x05\x03\x01", // 䴧
+ 0x4d28: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x01\x03\x03\x02\x05\x01\x01\x02\x03\x04", // 䴨
+ 0x4d29: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 䴩
+ 0x4d2a: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x04\x05\x02\x04\x05\x01\x01\x02\x04\x01\x03\x04", // 䴪
+ 0x4d2b: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x01\x04\x05\x02\x04\x04\x04\x04\x03\x04\x04\x05\x04", // 䴫
+ 0x4d2c: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x01\x05\x04", // 䴬
+ 0x4d2d: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x01\x02\x03", // 䴭
+ 0x4d2e: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x02\x05\x02", // 䴮
+ 0x4d2f: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x03\x05\x03\x03", // 䴯
+ 0x4d30: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x01\x05\x03\x04", // 䴰
+ 0x4d31: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x04\x04\x05\x03\x05", // 䴱
+ 0x4d32: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x01\x01\x02\x03\x04", // 䴲
+ 0x4d33: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x04\x04\x05\x03\x04", // 䴳
+ 0x4d34: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x02\x01\x02\x05\x01", // 䴴
+ 0x4d35: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x04\x03\x01\x01\x03\x02", // 䴵
+ 0x4d36: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x03\x05\x04\x01\x01\x01\x02", // 䴶
+ 0x4d37: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x04\x04\x05\x01\x01\x03\x05", // 䴷
+ 0x4d38: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x03\x04\x04\x03\x05\x02\x01", // 䴸
+ 0x4d39: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x02\x05\x01\x01\x01\x02\x03\x04", // 䴹
+ 0x4d3a: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x04\x01\x04\x03\x01\x02\x05\x01", // 䴺
+ 0x4d3b: "\x03\x01\x02\x03\x04\x03\x05\x03\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04", // 䴻
+ 0x4d3c: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x01\x05\x03\x04\x01\x05\x03\x04", // 䴼
+ 0x4d3d: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x03\x02\x05\x01\x01\x03\x01\x02", // 䴽
+ 0x4d3e: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x04\x03\x01\x01\x01\x03\x01\x02\x01", // 䴾
+ 0x4d3f: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 䴿
+ 0x4d40: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x02\x04\x03\x02\x05\x01\x01\x01\x03\x04", // 䵀
+ 0x4d41: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x05\x02\x01\x03\x03\x05\x04\x04\x01\x02\x04", // 䵁
+ 0x4d42: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01", // 䵂
+ 0x4d43: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 䵃
+ 0x4d44: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x02\x05\x01\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01", // 䵄
+ 0x4d45: "\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04", // 䵅
+ 0x4d46: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x01\x02\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 䵆
+ 0x4d47: "\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x03\x01\x03\x04", // 䵇
+ 0x4d48: "\x03\x03\x02\x05\x05\x04\x03\x05\x04\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04", // 䵈
+ 0x4d49: "\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 䵉
+ 0x4d4a: "\x03\x05\x04\x01\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 䵊
+ 0x4d4b: "\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04\x01\x03\x02\x05\x01\x01", // 䵋
+ 0x4d4c: "\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04\x01\x03\x04\x03\x04\x03\x04", // 䵌
+ 0x4d4d: "\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04\x04\x01\x02\x05\x01\x05\x02\x01", // 䵍
+ 0x4d4e: "\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 䵎
+ 0x4d4f: "\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 䵏
+ 0x4d50: "\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 䵐
+ 0x4d51: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x05\x03\x04", // 䵑
+ 0x4d52: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x02\x05\x01\x01", // 䵒
+ 0x4d53: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x03\x01\x01\x02", // 䵓
+ 0x4d54: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x01\x02\x05\x01\x01\x02\x03\x04", // 䵔
+ 0x4d55: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x05\x01\x03\x01\x02\x02\x05\x01", // 䵕
+ 0x4d56: "\x01\x02\x05\x01\x02\x05\x05\x04\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04", // 䵖
+ 0x4d57: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 䵗
+ 0x4d58: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 䵘
+ 0x4d59: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x01\x03\x04\x03\x05\x04\x03\x05\x04", // 䵙
+ 0x4d5a: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01", // 䵚
+ 0x4d5b: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x01\x02\x05\x01\x02\x05\x05\x04\x01\x02\x01", // 䵛
+ 0x4d5c: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x02\x05\x01\x02\x02\x01\x01\x03\x01\x01\x05\x03\x04", // 䵜
+ 0x4d5d: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x05", // 䵝
+ 0x4d5e: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x02\x02", // 䵞
+ 0x4d5f: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x01\x02", // 䵟
+ 0x4d60: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x05\x04", // 䵠
+ 0x4d61: "\x01\x01\x03\x04\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 䵡
+ 0x4d62: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x01\x02\x03\x04", // 䵢
+ 0x4d63: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x02\x05\x01\x01\x01", // 䵣
+ 0x4d64: "\x01\x02\x03\x02\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 䵤
+ 0x4d65: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x05\x05\x02\x01\x05", // 䵥
+ 0x4d66: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x04\x04\x01\x01\x01\x02", // 䵦
+ 0x4d67: "\x01\x02\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x05\x03\x04", // 䵧
+ 0x4d68: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x03\x05\x03\x03\x03\x04", // 䵨
+ 0x4d69: "\x03\x01\x02\x03\x04\x02\x02\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 䵩
+ 0x4d6a: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x02\x05\x01\x01\x01\x05\x03\x05", // 䵪
+ 0x4d6b: "\x04\x04\x05\x03\x05\x04\x05\x05\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 䵫
+ 0x4d6c: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x02\x05\x03\x04\x02\x05\x01\x01", // 䵬
+ 0x4d6d: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x01\x03\x02\x05\x01\x01", // 䵭
+ 0x4d6e: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 䵮
+ 0x4d6f: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 䵯
+ 0x4d70: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 䵰
+ 0x4d71: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01", // 䵱
+ 0x4d72: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 䵲
+ 0x4d73: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 䵳
+ 0x4d74: "\x02\x05\x04\x03\x01\x02\x01\x01\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 䵴
+ 0x4d75: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x01\x03\x04\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 䵵
+ 0x4d76: "\x03\x05\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 䵶
+ 0x4d77: "\x01\x02\x01\x01\x02\x01\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 䵷
+ 0x4d78: "\x03\x01\x02\x03\x04\x04\x03\x03\x04\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 䵸
+ 0x4d79: "\x03\x01\x01\x03\x04\x02\x05\x01\x01\x01\x02\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 䵹
+ 0x4d7a: "\x01\x02\x01\x02\x05\x01\x01\x01\x05\x01\x03\x02\x01\x02\x05", // 䵺
+ 0x4d7b: "\x02\x05\x01\x01\x01\x05\x01\x03\x02\x01\x02\x05\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x01", // 䵻
+ 0x4d7c: "\x05\x02\x01\x03\x03\x05\x04\x04\x02\x05\x01\x01\x01\x05\x01\x03\x02\x01\x02\x05", // 䵼
+ 0x4d7d: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x01\x02\x01\x05\x04", // 䵽
+ 0x4d7e: "\x03\x02\x01\x02\x04\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04", // 䵾
+ 0x4d7f: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x02\x01\x02\x05\x01", // 䵿
+ 0x4d80: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x03\x04\x01\x02\x05\x01", // 䶀
+ 0x4d81: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x02\x05\x03\x04\x02\x05\x01\x01", // 䶁
+ 0x4d82: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x03\x05\x04", // 䶂
+ 0x4d83: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x03\x04\x04\x05", // 䶃
+ 0x4d84: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x01\x03\x04\x01\x02", // 䶄
+ 0x4d85: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x03\x05\x04\x02\x05\x01", // 䶅
+ 0x4d86: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 䶆
+ 0x4d87: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x02\x05\x01\x02\x01\x02\x05\x01\x01", // 䶇
+ 0x4d88: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 䶈
+ 0x4d89: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 䶉
+ 0x4d8a: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x05\x02\x01\x01", // 䶊
+ 0x4d8b: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x03\x05\x04", // 䶋
+ 0x4d8c: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x03\x05\x05\x01\x05", // 䶌
+ 0x4d8d: "\x01\x05\x04\x01\x02\x01\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02", // 䶍
+ 0x4d8e: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x03\x04\x01\x02\x05\x01", // 䶎
+ 0x4d8f: "\x04\x03\x05\x01\x05\x02\x03\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02", // 䶏
+ 0x4d90: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 䶐
+ 0x4d91: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x01\x02\x04\x05\x02\x05\x01\x02\x01\x05\x04\x02\x01\x03\x04", // 䶑
+ 0x4d92: "\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01\x05\x03\x01", // 䶒
+ 0x4d93: "\x02\x05\x01\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01", // 䶓
+ 0x4d94: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x05\x02\x05", // 䶔
+ 0x4d95: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x05\x02\x01\x05", // 䶕
+ 0x4d96: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x04\x04\x05", // 䶖
+ 0x4d97: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x02\x05\x01\x02", // 䶗
+ 0x4d98: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x04\x01\x04\x03\x01", // 䶘
+ 0x4d99: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x05\x01\x05", // 䶙
+ 0x4d9a: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x02\x05\x01\x02\x01\x04", // 䶚
+ 0x4d9b: "\x01\x03\x05\x04\x02\x02\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 䶛
+ 0x4d9c: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x01\x02\x01\x02\x05\x01", // 䶜
+ 0x4d9d: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x03\x04\x03\x04\x03\x04", // 䶝
+ 0x4d9e: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x02\x02\x01\x01\x01\x03\x04", // 䶞
+ 0x4d9f: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x05\x03\x02\x01\x05\x01\x01", // 䶟
+ 0x4da0: "\x01\x03\x01\x02\x05\x01\x05\x03\x04\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 䶠
+ 0x4da1: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x02\x05\x01\x01\x01\x03\x04\x02\x02", // 䶡
+ 0x4da2: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 䶢
+ 0x4da3: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 䶣
+ 0x4da4: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x02\x05\x05\x04\x05\x02\x05\x01\x01", // 䶤
+ 0x4da5: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x02\x01\x05\x03\x01\x05\x02\x05\x01\x01\x01", // 䶥
+ 0x4da6: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 䶦
+ 0x4da7: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 䶧
+ 0x4da8: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 䶨
+ 0x4da9: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x01\x01\x02", // 䶩
+ 0x4daa: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03\x04", // 䶪
+ 0x4dab: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x02\x05\x01\x02\x05\x01\x01\x03\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 䶫
+ 0x4dac: "\x01\x01\x02\x01\x01\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01\x01\x01", // 䶬
+ 0x4dad: "\x01\x03\x05\x03\x04\x01\x01\x02\x01", // 䶭
+ 0x4dae: "\x01\x03\x05\x03\x04\x01\x01\x03\x04", // 䶮
+ 0x4daf: "\x05\x03\x01\x03\x02\x05\x01\x02\x05\x03\x04\x01\x05\x05\x01\x01\x05\x01\x01", // 䶯
+ 0x4db0: "\x03\x02\x05\x01\x02\x05\x03\x04\x01\x05\x05\x01\x01\x05\x01\x01\x03\x01\x01\x05", // 䶰
+ 0x4db1: "\x03\x05\x04\x04\x04\x03\x02\x05\x01\x02\x05\x03\x04\x01\x05\x05\x01\x01\x05\x01\x01", // 䶱
+ 0x4db2: "\x02\x05\x02\x01\x01\x03\x02\x05\x01\x02\x05\x03\x04\x01\x05\x05\x01\x01\x05\x01\x01", // 䶲
+ 0x4db3: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02\x04\x01\x03\x05", // 䶳
+ 0x4db4: "\x04\x03\x03\x04\x03\x05\x03\x04\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02", // 䶴
+ 0x4db5: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02\x03\x03\x02\x01\x05\x03\x01\x05\x03\x05", // 䶵
+ 0x4e00: "\x01", // 一
+ 0x4e01: "\x01\x02", // 丁
+ 0x4e02: "\x01\x05", // 丂
+ 0x4e03: "\x01\x05", // 七
+ 0x4e04: "\x02\x01", // 丄
+ 0x4e05: "\x01\x02", // 丅
+ 0x4e06: "\x01\x03", // 丆
+ 0x4e07: "\x01\x05\x03", // 万
+ 0x4e08: "\x01\x03\x04", // 丈
+ 0x4e09: "\x01\x01\x01", // 三
+ 0x4e0a: "\x02\x01\x01", // 上
+ 0x4e0b: "\x01\x02\x04", // 下
+ 0x4e0c: "\x01\x03\x02", // 丌
+ 0x4e0d: "\x01\x03\x02\x04", // 不
+ 0x4e0e: "\x01\x05\x01", // 与
+ 0x4e0f: "\x01\x02\x05\x05", // 丏
+ 0x4e10: "\x01\x02\x01\x05", // 丐
+ 0x4e11: "\x05\x02\x01\x01", // 丑
+ 0x4e12: "\x05\x03\x04\x01", // 丒
+ 0x4e13: "\x01\x01\x05\x04", // 专
+ 0x4e14: "\x02\x05\x01\x01\x01", // 且
+ 0x4e15: "\x01\x03\x02\x04\x01", // 丕
+ 0x4e16: "\x01\x02\x02\x01\x05", // 世
+ 0x4e17: "\x01\x02\x02\x02\x01", // 丗
+ 0x4e18: "\x03\x02\x01\x02\x01", // 丘
+ 0x4e19: "\x01\x02\x05\x03\x04", // 丙
+ 0x4e1a: "\x02\x02\x04\x03\x01", // 业
+ 0x4e1b: "\x03\x04\x03\x04\x01", // 丛
+ 0x4e1c: "\x01\x05\x02\x03\x04", // 东
+ 0x4e1d: "\x05\x05\x05\x05\x01", // 丝
+ 0x4e1e: "\x05\x02\x05\x03\x04\x01", // 丞
+ 0x4e1f: "\x01\x01\x02\x01\x05\x04", // 丟
+ 0x4e20: "\x02\x01\x01\x03\x05\x01", // 丠
+ 0x4e21: "\x01\x02\x05\x02\x05\x02", // 両
+ 0x4e22: "\x03\x01\x02\x01\x05\x04", // 丢
+ 0x4e23: "\x01\x03\x01\x05\x02\x05\x01", // 丣
+ 0x4e24: "\x01\x02\x05\x03\x04\x03\x04", // 两
+ 0x4e25: "\x01\x02\x02\x04\x03\x01\x03", // 严
+ 0x4e26: "\x04\x03\x01\x02\x02\x04\x03\x01", // 並
+ 0x4e27: "\x01\x02\x04\x03\x01\x05\x03\x04", // 丧
+ 0x4e28: "\x02", // 丨
+ 0x4e29: "\x05\x02", // 丩
+ 0x4e2a: "\x03\x04\x02", // 个
+ 0x4e2b: "\x04\x03\x02", // 丫
+ 0x4e2c: "\x04\x01\x02", // 丬
+ 0x4e2d: "\x02\x05\x01\x02", // 中
+ 0x4e2e: "\x05\x01\x01\x02", // 丮
+ 0x4e2f: "\x03\x03\x03\x02", // 丯
+ 0x4e30: "\x01\x01\x01\x02", // 丰
+ 0x4e31: "\x05\x03\x02\x01\x02", // 丱
+ 0x4e32: "\x02\x05\x01\x02\x05\x01\x02", // 串
+ 0x4e33: "\x02\x05\x01\x02\x05\x01\x03\x02", // 丳
+ 0x4e34: "\x02\x02\x03\x01\x04\x02\x05\x02\x01", // 临
+ 0x4e35: "\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02", // 丵
+ 0x4e36: "\x04", // 丶
+ 0x4e37: "\x04\x03", // 丷
+ 0x4e38: "\x03\x05\x04", // 丸
+ 0x4e39: "\x03\x05\x04\x01", // 丹
+ 0x4e3a: "\x04\x03\x05\x04", // 为
+ 0x4e3b: "\x04\x01\x01\x02\x01", // 主
+ 0x4e3c: "\x01\x01\x03\x02\x04", // 丼
+ 0x4e3d: "\x01\x02\x05\x04\x02\x05\x04", // 丽
+ 0x4e3e: "\x04\x04\x03\x01\x03\x04\x01\x01\x02", // 举
+ 0x4e3f: "\x03", // 丿
+ 0x4e40: "\x05", // 乀
+ 0x4e41: "\x05", // 乁
+ 0x4e42: "\x03\x04", // 乂
+ 0x4e43: "\x05\x03", // 乃
+ 0x4e44: "\x05\x04", // 乄
+ 0x4e45: "\x03\x05\x04", // 久
+ 0x4e46: "\x05\x03\x04", // 乆
+ 0x4e47: "\x03\x01\x05", // 乇
+ 0x4e48: "\x03\x05\x04", // 么
+ 0x4e49: "\x04\x03\x04", // 义
+ 0x4e4a: "\x03\x04\x03", // 乊
+ 0x4e4b: "\x04\x05\x04", // 之
+ 0x4e4c: "\x03\x05\x05\x01", // 乌
+ 0x4e4d: "\x03\x01\x02\x01\x01", // 乍
+ 0x4e4e: "\x03\x04\x03\x01\x02", // 乎
+ 0x4e4f: "\x03\x04\x05\x04", // 乏
+ 0x4e50: "\x03\x05\x02\x03\x04", // 乐
+ 0x4e51: "\x03\x02\x03\x03\x03\x04", // 乑
+ 0x4e52: "\x03\x02\x01\x02\x01\x03", // 乒
+ 0x4e53: "\x03\x02\x01\x02\x01\x04", // 乓
+ 0x4e54: "\x03\x01\x03\x04\x03\x02", // 乔
+ 0x4e55: "\x03\x03\x01\x01\x02\x05\x02", // 乕
+ 0x4e56: "\x03\x01\x02\x02\x01\x01\x03\x05", // 乖
+ 0x4e57: "\x03\x01\x01\x02\x02\x01\x02\x03\x04", // 乗
+ 0x4e58: "\x03\x01\x02\x02\x01\x01\x03\x05\x03\x04", // 乘
+ 0x4e59: "\x05", // 乙
+ 0x4e5a: "\x05", // 乚
+ 0x4e5b: "\x05", // 乛
+ 0x4e5c: "\x05\x05", // 乜
+ 0x4e5d: "\x03\x05", // 九
+ 0x4e5e: "\x03\x01\x05", // 乞
+ 0x4e5f: "\x05\x02\x05", // 也
+ 0x4e60: "\x05\x04\x01", // 习
+ 0x4e61: "\x05\x05\x03", // 乡
+ 0x4e62: "\x02\x05\x02\x05", // 乢
+ 0x4e63: "\x05\x05\x04\x05", // 乣
+ 0x4e64: "\x01\x02\x04\x05", // 乤
+ 0x4e65: "\x03\x04\x03\x05", // 乥
+ 0x4e66: "\x05\x05\x02\x04", // 书
+ 0x4e67: "\x04\x04\x01\x02\x05", // 乧
+ 0x4e68: "\x05\x04\x02\x05\x01\x05", // 乨
+ 0x4e69: "\x02\x01\x02\x05\x01\x05", // 乩
+ 0x4e6a: "\x05\x02\x05\x01\x02\x01", // 乪
+ 0x4e6b: "\x05\x03\x02\x05\x01\x05", // 乫
+ 0x4e6c: "\x01\x05\x01\x05\x05", // 乬
+ 0x4e6d: "\x01\x03\x02\x05\x01\x05", // 乭
+ 0x4e6e: "\x03\x05\x03\x05\x02\x05", // 乮
+ 0x4e6f: "\x03\x04\x03\x01\x02\x05", // 乯
+ 0x4e70: "\x05\x04\x04\x01\x03\x04", // 买
+ 0x4e71: "\x03\x01\x02\x02\x05\x01\x05", // 乱
+ 0x4e72: "\x04\x01\x03\x05\x03\x04\x05", // 乲
+ 0x4e73: "\x03\x04\x04\x03\x05\x02\x01\x05", // 乳
+ 0x4e74: "\x01\x02\x01\x03\x03\x01\x02\x05", // 乴
+ 0x4e75: "\x04\x01\x04\x03\x01\x01\x02\x05", // 乵
+ 0x4e76: "\x01\x02\x05\x01\x01\x02\x04\x05", // 乶
+ 0x4e77: "\x04\x04\x01\x02\x03\x04\x03\x05", // 乷
+ 0x4e78: "\x05\x02\x05\x05\x05\x04\x01\x04", // 乸
+ 0x4e79: "\x01\x02\x02\x05\x01\x01\x01\x02\x05", // 乹
+ 0x4e7a: "\x03\x03\x05\x01\x03\x03\x01\x02\x05", // 乺
+ 0x4e7b: "\x04\x01\x05\x03\x03\x04\x04\x04\x05", // 乻
+ 0x4e7c: "\x04\x04\x01\x04\x01\x01\x02\x01\x05", // 乼
+ 0x4e7d: "\x01\x02\x01\x03\x02\x05\x01\x01\x05", // 乽
+ 0x4e7e: "\x01\x02\x02\x05\x01\x01\x01\x02\x03\x01\x05", // 乾
+ 0x4e7f: "\x03\x04\x04\x03\x05\x05\x04\x02\x03\x04\x05", // 乿
+ 0x4e80: "\x03\x05\x02\x05\x01\x01\x02\x05\x01\x01\x05", // 亀
+ 0x4e81: "\x01\x02\x02\x05\x01\x01\x01\x01\x02\x03\x01\x05", // 亁
+ 0x4e82: "\x03\x04\x04\x03\x05\x04\x02\x05\x05\x04\x05\x04\x05", // 亂
+ 0x4e83: "\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02\x05", // 亃
+ 0x4e84: "\x01\x02\x01\x04\x05\x01\x02\x05\x01\x04\x03\x01\x05", // 亄
+ 0x4e85: "\x02", // 亅
+ 0x4e86: "\x05\x02", // 了
+ 0x4e87: "\x03\x05\x02", // 亇
+ 0x4e88: "\x05\x04\x05\x02", // 予
+ 0x4e89: "\x03\x05\x05\x01\x01\x02", // 争
+ 0x4e8a: "\x01\x04\x03\x05\x01\x01\x02", // 亊
+ 0x4e8b: "\x01\x02\x05\x01\x05\x01\x01\x02", // 事
+ 0x4e8c: "\x01\x01", // 二
+ 0x4e8d: "\x01\x01\x02", // 亍
+ 0x4e8e: "\x01\x01\x02", // 于
+ 0x4e8f: "\x01\x01\x05", // 亏
+ 0x4e90: "\x01\x01\x05", // 亐
+ 0x4e91: "\x01\x01\x05\x04", // 云
+ 0x4e92: "\x01\x05\x05\x01", // 互
+ 0x4e93: "\x01\x01\x03\x02", // 亓
+ 0x4e94: "\x01\x02\x05\x01", // 五
+ 0x4e95: "\x01\x01\x03\x02", // 井
+ 0x4e96: "\x01\x01\x01\x01", // 亖
+ 0x4e97: "\x02\x05\x02\x01\x01", // 亗
+ 0x4e98: "\x01\x02\x05\x01\x01\x01", // 亘
+ 0x4e99: "\x01\x02\x05\x04\x04\x01", // 亙
+ 0x4e9a: "\x01\x02\x02\x04\x03\x01", // 亚
+ 0x4e9b: "\x02\x01\x02\x01\x03\x05\x01\x01", // 些
+ 0x4e9c: "\x01\x02\x05\x01\x02\x02\x01", // 亜
+ 0x4e9d: "\x05\x04\x05\x04\x05\x04\x01\x01", // 亝
+ 0x4e9e: "\x01\x02\x01\x05\x05\x01\x02\x01", // 亞
+ 0x4e9f: "\x05\x02\x02\x05\x01\x05\x04\x01", // 亟
+ 0x4ea0: "\x04\x01", // 亠
+ 0x4ea1: "\x04\x01\x05", // 亡
+ 0x4ea2: "\x04\x01\x03\x05", // 亢
+ 0x4ea3: "\x04\x01\x03\x02", // 亣
+ 0x4ea4: "\x04\x01\x03\x04\x03\x04", // 交
+ 0x4ea5: "\x04\x01\x05\x03\x03\x04", // 亥
+ 0x4ea6: "\x04\x01\x03\x02\x03\x04", // 亦
+ 0x4ea7: "\x04\x01\x04\x03\x01\x03", // 产
+ 0x4ea8: "\x04\x01\x02\x05\x01\x05\x02", // 亨
+ 0x4ea9: "\x04\x01\x02\x05\x01\x02\x01", // 亩
+ 0x4eaa: "\x04\x01\x03\x02\x03\x04\x05", // 亪
+ 0x4eab: "\x04\x01\x02\x05\x01\x05\x02\x01", // 享
+ 0x4eac: "\x04\x01\x02\x05\x01\x02\x03\x04", // 京
+ 0x4ead: "\x04\x01\x02\x05\x01\x04\x05\x01\x02", // 亭
+ 0x4eae: "\x04\x01\x02\x05\x01\x04\x05\x03\x05", // 亮
+ 0x4eaf: "\x04\x01\x02\x05\x01\x02\x05\x01\x01", // 亯
+ 0x4eb0: "\x04\x01\x02\x05\x01\x01\x02\x03\x04", // 亰
+ 0x4eb1: "\x04\x01\x03\x02\x02\x05\x01\x01\x01", // 亱
+ 0x4eb2: "\x04\x01\x04\x03\x01\x01\x02\x03\x04", // 亲
+ 0x4eb3: "\x04\x01\x02\x05\x01\x04\x05\x03\x01\x05", // 亳
+ 0x4eb4: "\x04\x01\x02\x05\x01\x04\x05\x01\x02\x01\x03\x05", // 亴
+ 0x4eb5: "\x04\x01\x01\x02\x01\x03\x05\x04\x03\x05\x03\x04", // 亵
+ 0x4eb6: "\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 亶
+ 0x4eb7: "\x04\x01\x04\x03\x01\x03\x05\x01\x01\x02\x02\x03\x04", // 亷
+ 0x4eb8: "\x04\x01\x02\x05\x01\x05\x02\x01\x04\x03\x02\x05\x01\x01\x01\x02", // 亸
+ 0x4eb9: "\x04\x01\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x04\x05\x02\x05\x01\x01\x01", // 亹
+ 0x4eba: "\x03\x04", // 人
+ 0x4ebb: "\x03\x02", // 亻
+ 0x4ebc: "\x03\x04\x01", // 亼
+ 0x4ebd: "\x03\x04\x04", // 亽
+ 0x4ebe: "\x03\x04\x05", // 亾
+ 0x4ebf: "\x03\x02\x05", // 亿
+ 0x4ec0: "\x03\x02\x01\x02", // 什
+ 0x4ec1: "\x03\x02\x01\x01", // 仁
+ 0x4ec2: "\x03\x02\x05\x03", // 仂
+ 0x4ec3: "\x03\x02\x01\x02", // 仃
+ 0x4ec4: "\x01\x03\x03\x04", // 仄
+ 0x4ec5: "\x03\x02\x05\x04", // 仅
+ 0x4ec6: "\x03\x02\x02\x04", // 仆
+ 0x4ec7: "\x03\x02\x03\x05", // 仇
+ 0x4ec8: "\x03\x02\x03\x04", // 仈
+ 0x4ec9: "\x03\x02\x03\x05", // 仉
+ 0x4eca: "\x03\x04\x04\x05", // 今
+ 0x4ecb: "\x03\x04\x03\x02", // 介
+ 0x4ecc: "\x03\x04\x03\x04", // 仌
+ 0x4ecd: "\x03\x02\x05\x03", // 仍
+ 0x4ece: "\x03\x04\x03\x04", // 从
+ 0x4ecf: "\x03\x02\x05\x04", // 仏
+ 0x4ed0: "\x03\x04\x01\x02", // 仐
+ 0x4ed1: "\x03\x04\x03\x05", // 仑
+ 0x4ed2: "\x03\x04\x04\x04", // 仒
+ 0x4ed3: "\x03\x04\x05\x05", // 仓
+ 0x4ed4: "\x03\x02\x05\x02\x01", // 仔
+ 0x4ed5: "\x03\x02\x01\x02\x01", // 仕
+ 0x4ed6: "\x03\x02\x05\x02\x05", // 他
+ 0x4ed7: "\x03\x02\x01\x03\x04", // 仗
+ 0x4ed8: "\x03\x02\x01\x02\x04", // 付
+ 0x4ed9: "\x03\x02\x02\x05\x02", // 仙
+ 0x4eda: "\x03\x04\x02\x05\x02", // 仚
+ 0x4edb: "\x03\x02\x03\x01\x05", // 仛
+ 0x4edc: "\x03\x02\x01\x02\x01", // 仜
+ 0x4edd: "\x03\x04\x01\x02\x01", // 仝
+ 0x4ede: "\x03\x02\x05\x03\x04", // 仞
+ 0x4edf: "\x03\x02\x03\x01\x02", // 仟
+ 0x4ee0: "\x03\x02\x01\x01\x02", // 仠
+ 0x4ee1: "\x03\x02\x03\x01\x05", // 仡
+ 0x4ee2: "\x03\x02\x03\x05\x04", // 仢
+ 0x4ee3: "\x03\x02\x01\x05\x04", // 代
+ 0x4ee4: "\x03\x04\x04\x05\x04", // 令
+ 0x4ee5: "\x05\x04\x03\x04", // 以
+ 0x4ee6: "\x03\x02\x02\x03\x04", // 仦
+ 0x4ee7: "\x02\x01\x01\x03\x04", // 仧
+ 0x4ee8: "\x03\x02\x01\x01\x01", // 仨
+ 0x4ee9: "\x03\x02\x02\x01\x01", // 仩
+ 0x4eea: "\x03\x02\x04\x03\x04", // 仪
+ 0x4eeb: "\x03\x02\x03\x05\x04", // 仫
+ 0x4eec: "\x03\x02\x04\x02\x05", // 们
+ 0x4eed: "\x03\x02\x05\x03\x04", // 仭
+ 0x4eee: "\x03\x02\x03\x03\x05\x04", // 仮
+ 0x4eef: "\x03\x02\x02\x03\x04\x03", // 仯
+ 0x4ef0: "\x03\x02\x03\x05\x05\x02", // 仰
+ 0x4ef1: "\x03\x02\x03\x04\x04\x05", // 仱
+ 0x4ef2: "\x03\x02\x02\x05\x01\x02", // 仲
+ 0x4ef3: "\x03\x02\x01\x05\x03\x05", // 仳
+ 0x4ef4: "\x03\x02\x03\x05\x01\x01", // 仴
+ 0x4ef5: "\x03\x02\x03\x01\x01\x02", // 仵
+ 0x4ef6: "\x03\x02\x03\x01\x01\x02", // 件
+ 0x4ef7: "\x03\x02\x03\x04\x03\x02", // 价
+ 0x4ef8: "\x03\x02\x03\x01\x03\x04", // 仸
+ 0x4ef9: "\x03\x02\x01\x01\x01\x02", // 仹
+ 0x4efa: "\x03\x04\x01\x05\x01", // 仺
+ 0x4efb: "\x03\x02\x03\x01\x02\x01", // 任
+ 0x4efc: "\x03\x02\x01\x01\x02\x01", // 仼
+ 0x4efd: "\x03\x02\x03\x04\x05\x03", // 份
+ 0x4efe: "\x03\x02\x01\x05\x05\x01", // 仾
+ 0x4eff: "\x03\x02\x04\x01\x05\x03", // 仿
+ 0x4f00: "\x03\x02\x03\x04\x05\x04", // 伀
+ 0x4f01: "\x03\x04\x02\x01\x02\x01", // 企
+ 0x4f02: "\x03\x02\x01\x02\x05\x02", // 伂
+ 0x4f03: "\x03\x02\x05\x04\x05\x02", // 伃
+ 0x4f04: "\x03\x02\x05\x01\x05\x02", // 伄
+ 0x4f05: "\x03\x02\x01\x05\x02\x05", // 伅
+ 0x4f06: "\x03\x02\x03\x05\x03\x03", // 伆
+ 0x4f07: "\x03\x02\x03\x05\x05\x04", // 伇
+ 0x4f08: "\x03\x02\x04\x05\x04\x04", // 伈
+ 0x4f09: "\x03\x02\x04\x01\x03\x05", // 伉
+ 0x4f0a: "\x03\x02\x05\x01\x01\x03", // 伊
+ 0x4f0b: "\x03\x02\x03\x05\x04", // 伋
+ 0x4f0c: "\x03\x02\x01\x03\x05\x05", // 伌
+ 0x4f0d: "\x03\x02\x01\x02\x05\x01", // 伍
+ 0x4f0e: "\x03\x02\x01\x02\x05\x04", // 伎
+ 0x4f0f: "\x03\x02\x01\x03\x04\x04", // 伏
+ 0x4f10: "\x03\x02\x01\x05\x03\x04", // 伐
+ 0x4f11: "\x03\x02\x01\x02\x03\x04", // 休
+ 0x4f12: "\x03\x02\x03\x03\x01\x02", // 伒
+ 0x4f13: "\x03\x02\x01\x03\x02\x04", // 伓
+ 0x4f14: "\x03\x02\x04\x05\x03\x05", // 伔
+ 0x4f15: "\x03\x02\x01\x01\x03\x04", // 伕
+ 0x4f16: "\x03\x02\x01\x03\x05\x04", // 伖
+ 0x4f17: "\x03\x04\x03\x04\x03\x04", // 众
+ 0x4f18: "\x03\x02\x01\x03\x05\x04", // 优
+ 0x4f19: "\x03\x02\x04\x03\x03\x04", // 伙
+ 0x4f1a: "\x03\x04\x01\x01\x05\x04", // 会
+ 0x4f1b: "\x03\x02\x01\x03\x04\x05", // 伛
+ 0x4f1c: "\x03\x02\x03\x05\x01\x02", // 伜
+ 0x4f1d: "\x03\x02\x01\x01\x05\x04", // 伝
+ 0x4f1e: "\x03\x04\x04\x03\x01\x02", // 伞
+ 0x4f1f: "\x03\x02\x01\x01\x05\x02", // 伟
+ 0x4f20: "\x03\x02\x01\x01\x05\x04", // 传
+ 0x4f21: "\x03\x02\x01\x05\x01\x02", // 伡
+ 0x4f22: "\x03\x02\x01\x05\x02\x03", // 伢
+ 0x4f23: "\x03\x02\x02\x05\x03\x05", // 伣
+ 0x4f24: "\x03\x02\x03\x01\x05\x03", // 伤
+ 0x4f25: "\x03\x02\x03\x01\x05\x04", // 伥
+ 0x4f26: "\x03\x02\x03\x04\x03\x05", // 伦
+ 0x4f27: "\x03\x02\x03\x04\x05\x05", // 伧
+ 0x4f28: "\x03\x02\x03\x05\x04\x01", // 伨
+ 0x4f29: "\x03\x02\x04\x01\x03\x04", // 伩
+ 0x4f2a: "\x03\x02\x04\x03\x05\x04", // 伪
+ 0x4f2b: "\x03\x02\x04\x04\x05\x01", // 伫
+ 0x4f2c: "\x03\x02\x05\x01\x03\x04", // 伬
+ 0x4f2d: "\x03\x02\x04\x01\x05\x05\x04", // 伭
+ 0x4f2e: "\x03\x02\x05\x03\x01\x05\x04", // 伮
+ 0x4f2f: "\x03\x02\x03\x02\x05\x01\x01", // 伯
+ 0x4f30: "\x03\x02\x01\x02\x02\x05\x01", // 估
+ 0x4f31: "\x03\x02\x03\x04\x02\x03\x04", // 伱
+ 0x4f32: "\x03\x02\x05\x01\x03\x03\x05", // 伲
+ 0x4f33: "\x03\x02\x01\x02\x02\x01\x05", // 伳
+ 0x4f34: "\x03\x02\x04\x03\x01\x01\x02", // 伴
+ 0x4f35: "\x03\x02\x02\x05\x03\x05\x01", // 伵
+ 0x4f36: "\x03\x02\x03\x04\x04\x05\x04", // 伶
+ 0x4f37: "\x03\x02\x02\x05\x01\x02\x01", // 伷
+ 0x4f38: "\x03\x02\x02\x05\x01\x01\x02", // 伸
+ 0x4f39: "\x03\x02\x02\x05\x01\x01\x01", // 伹
+ 0x4f3a: "\x03\x02\x05\x01\x02\x05\x01", // 伺
+ 0x4f3b: "\x03\x02\x01\x04\x03\x01\x02", // 伻
+ 0x4f3c: "\x03\x02\x05\x04\x03\x04", // 似
+ 0x4f3d: "\x03\x02\x05\x03\x02\x05\x01", // 伽
+ 0x4f3e: "\x03\x02\x01\x03\x02\x04\x01", // 伾
+ 0x4f3f: "\x03\x02\x02\x05\x01\x03\x04", // 伿
+ 0x4f40: "\x03\x02\x02\x05\x01\x05\x01", // 佀
+ 0x4f41: "\x03\x02\x05\x04\x02\x05\x01", // 佁
+ 0x4f42: "\x03\x02\x01\x02\x01\x02\x01", // 佂
+ 0x4f43: "\x03\x02\x02\x05\x01\x02\x01", // 佃
+ 0x4f44: "\x03\x02\x01\x02\x02\x01\x01", // 佄
+ 0x4f45: "\x03\x02\x01\x01\x02\x03\x04", // 佅
+ 0x4f46: "\x03\x02\x02\x05\x01\x01\x01", // 但
+ 0x4f47: "\x03\x02\x04\x04\x05\x01\x02", // 佇
+ 0x4f48: "\x03\x02\x01\x03\x02\x05\x02", // 佈
+ 0x4f49: "\x03\x02\x01\x02\x01\x05\x04", // 佉
+ 0x4f4a: "\x03\x02\x05\x03\x02\x05\x04", // 佊
+ 0x4f4b: "\x03\x02\x05\x03\x02\x05\x01", // 佋
+ 0x4f4c: "\x03\x02\x02\x01\x02\x01\x03\x05", // 佌
+ 0x4f4d: "\x03\x02\x04\x01\x04\x03\x01", // 位
+ 0x4f4e: "\x03\x02\x03\x05\x01\x05\x04", // 低
+ 0x4f4f: "\x03\x02\x04\x01\x01\x02\x01", // 住
+ 0x4f50: "\x03\x02\x01\x03\x01\x02\x01", // 佐
+ 0x4f51: "\x03\x02\x01\x03\x02\x05\x01", // 佑
+ 0x4f52: "\x03\x02\x02\x05\x01\x03\x04", // 佒
+ 0x4f53: "\x03\x02\x01\x02\x03\x04\x01", // 体
+ 0x4f54: "\x03\x02\x02\x01\x02\x05\x01", // 佔
+ 0x4f55: "\x03\x02\x01\x02\x05\x01\x02", // 何
+ 0x4f56: "\x03\x02\x04\x05\x04\x03\x04", // 佖
+ 0x4f57: "\x03\x02\x04\x04\x05\x03\x05", // 佗
+ 0x4f58: "\x03\x04\x01\x01\x02\x03\x04", // 佘
+ 0x4f59: "\x03\x04\x01\x01\x02\x03\x04", // 余
+ 0x4f5a: "\x03\x02\x03\x01\x01\x03\x04", // 佚
+ 0x4f5b: "\x03\x02\x05\x01\x05\x03\x02", // 佛
+ 0x4f5c: "\x03\x02\x03\x01\x02\x01\x01", // 作
+ 0x4f5d: "\x03\x02\x03\x05\x02\x05\x01", // 佝
+ 0x4f5e: "\x03\x02\x01\x01\x05\x03\x01", // 佞
+ 0x4f5f: "\x03\x02\x03\x05\x04\x04\x04", // 佟
+ 0x4f60: "\x03\x02\x03\x05\x02\x03\x04", // 你
+ 0x4f61: "\x03\x02\x03\x04\x02\x05\x02", // 佡
+ 0x4f62: "\x03\x02\x01\x05\x01\x05", // 佢
+ 0x4f63: "\x03\x02\x03\x05\x01\x01\x02", // 佣
+ 0x4f64: "\x03\x02\x01\x05\x05\x04", // 佤
+ 0x4f65: "\x03\x04\x01\x04\x04\x03\x01", // 佥
+ 0x4f66: "\x03\x02\x01\x03\x02\x05\x01", // 佦
+ 0x4f67: "\x03\x02\x02\x01\x01\x02\x04", // 佧
+ 0x4f68: "\x03\x02\x03\x05\x05\x01\x05", // 佨
+ 0x4f69: "\x03\x02\x03\x05\x01\x02\x05\x02", // 佩
+ 0x4f6a: "\x03\x02\x02\x05\x02\x05\x01\x01", // 佪
+ 0x4f6b: "\x03\x02\x03\x05\x04\x02\x05\x01", // 佫
+ 0x4f6c: "\x03\x02\x01\x02\x01\x03\x03\x05", // 佬
+ 0x4f6d: "\x03\x02\x03\x05\x04\x01\x05\x02", // 佭
+ 0x4f6e: "\x03\x02\x03\x04\x01\x02\x05\x01", // 佮
+ 0x4f6f: "\x03\x02\x04\x03\x01\x01\x01\x02", // 佯
+ 0x4f70: "\x03\x02\x01\x03\x02\x05\x01\x01", // 佰
+ 0x4f71: "\x03\x04\x01\x01\x02\x01\x02\x01", // 佱
+ 0x4f72: "\x03\x02\x03\x05\x04\x02\x05\x01", // 佲
+ 0x4f73: "\x03\x02\x01\x02\x01\x01\x02\x01", // 佳
+ 0x4f74: "\x03\x02\x01\x02\x02\x01\x01\x01", // 佴
+ 0x4f75: "\x03\x02\x04\x03\x01\x01\x03\x02", // 併
+ 0x4f76: "\x03\x02\x01\x02\x01\x02\x05\x01", // 佶
+ 0x4f77: "\x03\x02\x05\x01\x01\x05\x03\x04", // 佷
+ 0x4f78: "\x03\x02\x03\x01\x02\x02\x05\x01", // 佸
+ 0x4f79: "\x03\x02\x03\x05\x01\x03\x05\x05", // 佹
+ 0x4f7a: "\x03\x02\x03\x04\x01\x01\x02\x01", // 佺
+ 0x4f7b: "\x03\x02\x03\x04\x01\x05\x03\x04", // 佻
+ 0x4f7c: "\x03\x02\x04\x01\x03\x04\x03\x04", // 佼
+ 0x4f7d: "\x03\x02\x04\x01\x03\x05\x03\x04", // 佽
+ 0x4f7e: "\x03\x02\x03\x04\x02\x05\x01\x01", // 佾
+ 0x4f7f: "\x03\x02\x01\x02\x05\x01\x03\x04", // 使
+ 0x4f80: "\x03\x02\x01\x01\x03\x02\x02\x02", // 侀
+ 0x4f81: "\x03\x02\x03\x01\x02\x01\x03\x05", // 侁
+ 0x4f82: "\x03\x02\x04\x01\x03\x03\x01\x05", // 侂
+ 0x4f83: "\x03\x02\x02\x05\x01\x03\x02\x05", // 侃
+ 0x4f84: "\x03\x02\x01\x05\x04\x01\x02\x01", // 侄
+ 0x4f85: "\x03\x02\x04\x01\x05\x03\x03\x04", // 侅
+ 0x4f86: "\x01\x03\x04\x03\x04\x02\x03\x04", // 來
+ 0x4f87: "\x03\x02\x01\x05\x01\x05\x03\x04", // 侇
+ 0x4f88: "\x03\x02\x03\x05\x04\x03\x05\x04", // 侈
+ 0x4f89: "\x03\x02\x01\x03\x04\x01\x01\x05", // 侉
+ 0x4f8a: "\x03\x02\x02\x04\x03\x01\x03\x05", // 侊
+ 0x4f8b: "\x03\x02\x01\x03\x05\x04\x02\x02", // 例
+ 0x4f8c: "\x03\x04\x04\x05\x01\x01\x05\x04", // 侌
+ 0x4f8d: "\x03\x02\x01\x02\x01\x01\x02\x04", // 侍
+ 0x4f8e: "\x03\x02\x04\x03\x01\x02\x03\x04", // 侎
+ 0x4f8f: "\x03\x02\x03\x01\x01\x02\x03\x04", // 侏
+ 0x4f90: "\x03\x02\x03\x02\x05\x02\x02\x01", // 侐
+ 0x4f91: "\x03\x02\x01\x03\x02\x05\x01\x01", // 侑
+ 0x4f92: "\x03\x02\x04\x04\x05\x05\x03\x01", // 侒
+ 0x4f93: "\x03\x02\x05\x01\x01\x01\x01\x02", // 侓
+ 0x4f94: "\x03\x02\x05\x04\x03\x01\x01\x02", // 侔
+ 0x4f95: "\x03\x02\x01\x03\x02\x05\x02\x02", // 侕
+ 0x4f96: "\x03\x04\x01\x02\x05\x01\x02\x02", // 侖
+ 0x4f97: "\x03\x02\x02\x05\x01\x02\x05\x01", // 侗
+ 0x4f98: "\x03\x02\x04\x04\x05\x03\x01\x05", // 侘
+ 0x4f99: "\x03\x02\x01\x01\x02\x01\x05\x04", // 侙
+ 0x4f9a: "\x03\x02\x03\x05\x02\x05\x01\x01", // 侚
+ 0x4f9b: "\x03\x02\x01\x02\x02\x01\x03\x04", // 供
+ 0x4f9c: "\x03\x02\x03\x03\x05\x04\x01\x04", // 侜
+ 0x4f9d: "\x03\x02\x04\x01\x03\x05\x03\x04", // 依
+ 0x4f9e: "\x03\x02\x05\x03\x01\x02\x05\x01", // 侞
+ 0x4f9f: "\x03\x02\x01\x03\x02\x05\x02\x01", // 侟
+ 0x4fa0: "\x03\x02\x01\x04\x03\x01\x03\x04", // 侠
+ 0x4fa1: "\x03\x02\x01\x02\x05\x02\x02\x01", // 価
+ 0x4fa2: "\x03\x02\x01\x02\x05\x02\x01\x01", // 侢
+ 0x4fa3: "\x03\x02\x02\x05\x01\x02\x05\x01", // 侣
+ 0x4fa4: "\x03\x02\x01\x02\x01\x03\x01\x05", // 侤
+ 0x4fa5: "\x03\x02\x01\x05\x03\x01\x03\x05", // 侥
+ 0x4fa6: "\x03\x02\x02\x01\x02\x05\x03\x04", // 侦
+ 0x4fa7: "\x03\x02\x02\x05\x03\x04\x02\x02", // 侧
+ 0x4fa8: "\x03\x02\x03\x01\x03\x04\x03\x02", // 侨
+ 0x4fa9: "\x03\x02\x03\x04\x01\x01\x05\x04", // 侩
+ 0x4faa: "\x03\x02\x04\x01\x03\x04\x03\x02", // 侪
+ 0x4fab: "\x03\x02\x04\x01\x05\x05\x03\x01", // 侫
+ 0x4fac: "\x03\x02\x04\x05\x03\x05\x03\x04", // 侬
+ 0x4fad: "\x03\x02\x05\x01\x03\x04\x04\x04", // 侭
+ 0x4fae: "\x03\x02\x03\x01\x05\x05\x04\x01\x04", // 侮
+ 0x4faf: "\x03\x02\x05\x01\x03\x01\x01\x03\x04", // 侯
+ 0x4fb0: "\x03\x02\x05\x01\x01\x03\x02\x05\x01", // 侰
+ 0x4fb1: "\x03\x02\x02\x05\x01\x01\x01\x02\x01", // 侱
+ 0x4fb2: "\x03\x02\x01\x03\x01\x01\x05\x03\x04", // 侲
+ 0x4fb3: "\x03\x02\x03\x04\x03\x04\x01\x02\x01", // 侳
+ 0x4fb4: "\x03\x04\x01\x05\x02\x01\x01\x02\x02", // 侴
+ 0x4fb5: "\x03\x02\x05\x01\x01\x04\x05\x05\x04", // 侵
+ 0x4fb6: "\x03\x02\x02\x05\x01\x03\x02\x05\x01", // 侶
+ 0x4fb7: "\x03\x02\x05\x01\x03\x05\x02\x05\x01", // 侷
+ 0x4fb8: "\x03\x02\x01\x02\x05\x01\x04\x03\x01", // 侸
+ 0x4fb9: "\x03\x02\x03\x01\x02\x01\x05\x04", // 侹
+ 0x4fba: "\x03\x02\x02\x05\x02\x03\x04\x04\x05", // 侺
+ 0x4fbb: "\x03\x02\x04\x03\x02\x05\x01\x03\x05", // 侻
+ 0x4fbc: "\x03\x02\x01\x02\x04\x05\x05\x02\x01", // 侼
+ 0x4fbd: "\x03\x02\x02\x05\x01\x02\x01\x05\x03", // 侽
+ 0x4fbe: "\x03\x02\x01\x02\x01\x03\x05\x02\x01", // 侾
+ 0x4fbf: "\x03\x02\x01\x02\x05\x01\x01\x03\x04", // 便
+ 0x4fc0: "\x03\x02\x03\x04\x04\x03\x05\x03\x01", // 俀
+ 0x4fc1: "\x03\x02\x02\x05\x01\x05\x01\x03\x04", // 俁
+ 0x4fc2: "\x03\x02\x03\x05\x05\x04\x02\x03\x04", // 係
+ 0x4fc3: "\x03\x02\x02\x05\x01\x02\x01\x03\x04", // 促
+ 0x4fc4: "\x03\x02\x03\x01\x02\x01\x05\x03\x04", // 俄
+ 0x4fc5: "\x03\x02\x01\x02\x04\x01\x03\x04\x04", // 俅
+ 0x4fc6: "\x03\x02\x03\x04\x01\x01\x02\x03\x04", // 俆
+ 0x4fc7: "\x03\x02\x03\x05\x03\x01\x01\x02\x01", // 俇
+ 0x4fc8: "\x03\x02\x03\x01\x02\x01\x02\x05\x01", // 俈
+ 0x4fc9: "\x03\x02\x01\x02\x05\x01\x02\x05\x01", // 俉
+ 0x4fca: "\x03\x02\x05\x04\x03\x04\x03\x05\x04", // 俊
+ 0x4fcb: "\x03\x02\x02\x05\x01\x05\x02\x01\x05", // 俋
+ 0x4fcc: "\x03\x02\x01\x02\x05\x01\x01\x02\x04", // 俌
+ 0x4fcd: "\x03\x02\x04\x05\x01\x01\x05\x03\x04", // 俍
+ 0x4fce: "\x03\x04\x03\x04\x02\x05\x01\x01\x01", // 俎
+ 0x4fcf: "\x03\x02\x02\x04\x03\x02\x05\x01\x01", // 俏
+ 0x4fd0: "\x03\x02\x03\x01\x02\x03\x04\x02\x02", // 俐
+ 0x4fd1: "\x03\x02\x05\x04\x02\x05\x01\x01\x02", // 俑
+ 0x4fd2: "\x03\x02\x04\x04\x05\x01\x01\x03\x05", // 俒
+ 0x4fd3: "\x03\x02\x01\x05\x05\x05\x01\x02\x01", // 俓
+ 0x4fd4: "\x03\x02\x02\x05\x01\x01\x01\x03\x05", // 俔
+ 0x4fd5: "\x03\x02\x04\x04\x05\x01\x02\x03\x04", // 俕
+ 0x4fd6: "\x03\x02\x01\x03\x02\x04\x02\x05\x01", // 俖
+ 0x4fd7: "\x03\x02\x03\x04\x03\x04\x02\x05\x01", // 俗
+ 0x4fd8: "\x03\x02\x03\x04\x04\x03\x05\x02\x01", // 俘
+ 0x4fd9: "\x03\x02\x03\x04\x01\x03\x02\x05\x01", // 俙
+ 0x4fda: "\x03\x02\x02\x05\x01\x01\x02\x01\x01", // 俚
+ 0x4fdb: "\x03\x02\x03\x05\x02\x05\x01\x03\x05", // 俛
+ 0x4fdc: "\x03\x02\x02\x05\x01\x02\x01\x01\x05", // 俜
+ 0x4fdd: "\x03\x02\x02\x05\x01\x01\x02\x03\x04", // 保
+ 0x4fde: "\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 俞
+ 0x4fdf: "\x03\x02\x05\x04\x03\x01\x01\x03\x04", // 俟
+ 0x4fe0: "\x03\x02\x01\x03\x04\x03\x04\x03\x04", // 俠
+ 0x4fe1: "\x03\x02\x04\x01\x01\x01\x02\x05\x01", // 信
+ 0x4fe2: "\x03\x02\x03\x05\x04\x03\x03\x03", // 俢
+ 0x4fe3: "\x03\x02\x02\x05\x01\x01\x01\x03\x04", // 俣
+ 0x4fe4: "\x03\x02\x04\x03\x05\x01\x05\x02\x03", // 俤
+ 0x4fe5: "\x03\x02\x01\x02\x05\x01\x01\x01\x02", // 俥
+ 0x4fe6: "\x03\x02\x01\x01\x01\x03\x01\x02\x04", // 俦
+ 0x4fe7: "\x03\x02\x01\x02\x01\x04\x05\x04\x04", // 俧
+ 0x4fe8: "\x03\x02\x01\x02\x02\x04\x03\x01\x03", // 俨
+ 0x4fe9: "\x03\x02\x01\x02\x05\x03\x04\x03\x04", // 俩
+ 0x4fea: "\x03\x02\x01\x02\x05\x04\x02\x05\x04", // 俪
+ 0x4feb: "\x03\x02\x01\x04\x03\x01\x02\x03\x04", // 俫
+ 0x4fec: "\x03\x02\x03\x01\x02\x03\x04\x05\x04", // 俬
+ 0x4fed: "\x03\x02\x03\x04\x01\x04\x04\x03\x01", // 俭
+ 0x4fee: "\x03\x02\x02\x03\x05\x04\x03\x03\x03", // 修
+ 0x4fef: "\x03\x02\x04\x01\x03\x03\x02\x01\x02\x04", // 俯
+ 0x4ff0: "\x03\x02\x03\x01\x02\x03\x04\x02\x05\x01", // 俰
+ 0x4ff1: "\x03\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 俱
+ 0x4ff2: "\x03\x02\x04\x01\x03\x04\x03\x04\x05\x03", // 俲
+ 0x4ff3: "\x03\x02\x02\x01\x01\x01\x02\x01\x01\x01", // 俳
+ 0x4ff4: "\x03\x02\x01\x05\x03\x04\x01\x05\x03\x04", // 俴
+ 0x4ff5: "\x03\x02\x01\x01\x02\x01\x03\x05\x03\x04", // 俵
+ 0x4ff6: "\x03\x02\x02\x01\x01\x02\x03\x04\x05\x04", // 俶
+ 0x4ff7: "\x03\x02\x03\x05\x01\x01\x05\x02\x01\x05", // 俷
+ 0x4ff8: "\x03\x02\x01\x01\x01\x03\x04\x01\x01\x02", // 俸
+ 0x4ff9: "\x03\x02\x01\x02\x01\x05\x05\x01\x02\x01", // 俹
+ 0x4ffa: "\x03\x02\x01\x03\x04\x02\x05\x01\x01\x05", // 俺
+ 0x4ffb: "\x03\x02\x03\x05\x04\x02\x05\x01\x02\x01", // 俻
+ 0x4ffc: "\x03\x02\x04\x01\x05\x04\x02\x05\x01\x01", // 俼
+ 0x4ffd: "\x03\x02\x03\x03\x01\x02\x03\x05\x03\x04", // 俽
+ 0x4ffe: "\x03\x02\x03\x02\x05\x01\x01\x03\x01\x02", // 俾
+ 0x4fff: "\x03\x02\x02\x01\x05\x03\x01\x05\x03\x05", // 俿
+ 0x5000: "\x03\x02\x01\x02\x01\x01\x01\x05\x03\x04", // 倀
+ 0x5001: "\x03\x02\x03\x01\x01\x03\x04\x02\x05\x01", // 倁
+ 0x5002: "\x03\x02\x03\x01\x01\x03\x03\x01\x01\x02", // 倂
+ 0x5003: "\x03\x02\x03\x05\x04\x02\x04\x02\x05\x01", // 倃
+ 0x5004: "\x03\x02\x03\x04\x01\x03\x02\x05\x01\x01", // 倄
+ 0x5005: "\x03\x02\x04\x01\x03\x04\x03\x04\x01\x02", // 倅
+ 0x5006: "\x03\x02\x01\x02\x05\x02\x03\x04\x03\x04", // 倆
+ 0x5007: "\x03\x02\x04\x04\x05\x03\x05\x04\x05\x05", // 倇
+ 0x5008: "\x03\x02\x01\x03\x04\x03\x04\x02\x03\x04", // 倈
+ 0x5009: "\x03\x04\x04\x05\x01\x01\x03\x02\x05\x01", // 倉
+ 0x500a: "\x03\x02\x03\x04\x05\x04\x04\x05\x04\x04", // 倊
+ 0x500b: "\x03\x02\x02\x05\x01\x02\x02\x05\x01\x01", // 個
+ 0x500c: "\x03\x02\x04\x04\x05\x02\x05\x01\x05\x01", // 倌
+ 0x500d: "\x03\x02\x04\x01\x04\x03\x01\x02\x05\x01", // 倍
+ 0x500e: "\x03\x02\x02\x05\x01\x02\x02\x01\x03\x04", // 倎
+ 0x500f: "\x03\x02\x02\x03\x05\x04\x01\x03\x04\x04", // 倏
+ 0x5010: "\x03\x02\x02\x03\x05\x04\x04\x03\x03\x04", // 倐
+ 0x5011: "\x03\x02\x02\x05\x01\x01\x02\x05\x01\x01", // 們
+ 0x5012: "\x03\x02\x01\x05\x04\x01\x02\x01\x02\x02", // 倒
+ 0x5013: "\x03\x02\x04\x03\x03\x04\x04\x03\x03\x04", // 倓
+ 0x5014: "\x03\x02\x05\x01\x03\x05\x02\x02\x05\x02", // 倔
+ 0x5015: "\x03\x02\x03\x01\x02\x01\x02\x02\x01\x01", // 倕
+ 0x5016: "\x03\x02\x01\x02\x01\x04\x03\x01\x01\x02", // 倖
+ 0x5017: "\x03\x02\x03\x05\x01\x01\x03\x05\x01\x01", // 倗
+ 0x5018: "\x03\x02\x02\x04\x03\x02\x05\x02\x05\x01", // 倘
+ 0x5019: "\x03\x02\x02\x05\x01\x03\x01\x01\x03\x04", // 候
+ 0x501a: "\x03\x02\x01\x03\x04\x01\x02\x05\x01\x02", // 倚
+ 0x501b: "\x03\x02\x01\x02\x02\x01\x01\x01\x03\x04", // 倛
+ 0x501c: "\x03\x02\x03\x05\x01\x02\x01\x02\x05\x01", // 倜
+ 0x501d: "\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04", // 倝
+ 0x501e: "\x03\x02\x04\x01\x02\x05\x01\x02\x03\x04", // 倞
+ 0x501f: "\x03\x02\x01\x02\x02\x01\x02\x05\x01\x01", // 借
+ 0x5020: "\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 倠
+ 0x5021: "\x03\x02\x02\x05\x01\x01\x02\x05\x01\x01", // 倡
+ 0x5022: "\x03\x02\x01\x05\x01\x01\x02\x01\x03\x04", // 倢
+ 0x5023: "\x03\x02\x04\x01\x05\x03\x03\x01\x03\x04", // 倣
+ 0x5024: "\x03\x02\x01\x02\x02\x05\x01\x01\x01\x05", // 値
+ 0x5025: "\x03\x02\x04\x04\x05\x03\x04\x01\x02\x01", // 倥
+ 0x5026: "\x03\x02\x04\x03\x01\x01\x03\x04\x05\x05", // 倦
+ 0x5027: "\x03\x02\x04\x04\x05\x01\x01\x02\x03\x04", // 倧
+ 0x5028: "\x03\x02\x05\x01\x03\x01\x02\x02\x05\x01", // 倨
+ 0x5029: "\x03\x02\x01\x01\x02\x01\x02\x05\x01\x01", // 倩
+ 0x502a: "\x03\x02\x03\x02\x01\x05\x01\x01\x03\x05", // 倪
+ 0x502b: "\x03\x02\x03\x04\x01\x02\x05\x01\x02\x02", // 倫
+ 0x502c: "\x03\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 倬
+ 0x502d: "\x03\x02\x03\x01\x02\x03\x04\x05\x03\x01", // 倭
+ 0x502e: "\x03\x02\x02\x05\x01\x01\x01\x02\x03\x04", // 倮
+ 0x502f: "\x03\x02\x01\x02\x03\x04\x03\x04\x05\x04", // 倯
+ 0x5030: "\x03\x02\x01\x02\x01\x03\x04\x03\x05\x04", // 倰
+ 0x5031: "\x03\x02\x02\x05\x01\x01\x01\x05\x03\x05", // 倱
+ 0x5032: "\x03\x02\x01\x02\x05\x01\x01\x02\x03\x04", // 倲
+ 0x5033: "\x03\x02\x01\x02\x05\x01\x05\x01\x01\x02", // 倳
+ 0x5034: "\x03\x02\x01\x03\x04\x01\x02\x01\x03\x02", // 倴
+ 0x5035: "\x03\x02\x01\x01\x02\x01\x02\x01\x05\x04", // 倵
+ 0x5036: "\x03\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 倶
+ 0x5037: "\x03\x02\x01\x03\x04\x01\x01\x02\x03\x04", // 倷
+ 0x5038: "\x03\x02\x03\x04\x04\x03\x01\x02\x03\x04", // 倸
+ 0x5039: "\x03\x02\x03\x04\x01\x02\x05\x01\x03\x04", // 倹
+ 0x503a: "\x03\x02\x01\x01\x02\x01\x02\x05\x03\x04", // 债
+ 0x503b: "\x03\x02\x01\x02\x02\x01\x01\x01\x05\x02", // 倻
+ 0x503c: "\x03\x02\x01\x02\x02\x05\x01\x01\x01\x01", // 值
+ 0x503d: "\x03\x02\x03\x04\x01\x01\x02\x02\x05\x01", // 倽
+ 0x503e: "\x03\x02\x01\x05\x01\x03\x02\x05\x03\x04", // 倾
+ 0x503f: "\x03\x02\x04\x01\x04\x03\x01\x05\x03\x01", // 倿
+ 0x5040: "\x03\x02\x01\x02\x02\x02\x05\x01\x03\x04", // 偀
+ 0x5041: "\x03\x02\x03\x04\x04\x03\x02\x05\x02\x01\x01", // 偁
+ 0x5042: "\x03\x02\x04\x03\x01\x02\x05\x01\x01\x02\x02", // 偂
+ 0x5043: "\x03\x02\x01\x02\x05\x01\x01\x05\x03\x01\x05", // 偃
+ 0x5044: "\x03\x02\x01\x03\x02\x05\x02\x02\x01\x03\x04", // 偄
+ 0x5045: "\x03\x02\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 偅
+ 0x5046: "\x03\x02\x01\x01\x01\x03\x04\x02\x05\x01\x01", // 偆
+ 0x5047: "\x03\x02\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 假
+ 0x5048: "\x03\x02\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 偈
+ 0x5049: "\x03\x02\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 偉
+ 0x504a: "\x03\x02\x03\x02\x05\x01\x02\x05\x02\x01\x04", // 偊
+ 0x504b: "\x03\x02\x05\x01\x03\x04\x03\x01\x01\x03\x02", // 偋
+ 0x504c: "\x03\x02\x01\x02\x02\x01\x03\x02\x05\x01", // 偌
+ 0x504d: "\x03\x02\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 偍
+ 0x504e: "\x03\x02\x02\x05\x01\x02\x01\x01\x05\x03\x04", // 偎
+ 0x504f: "\x03\x02\x04\x05\x01\x03\x02\x05\x01\x02\x02", // 偏
+ 0x5050: "\x03\x02\x04\x01\x04\x03\x01\x03\x03\x03\x03", // 偐
+ 0x5051: "\x03\x02\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 偑
+ 0x5052: "\x03\x02\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 偒
+ 0x5053: "\x03\x02\x05\x01\x03\x01\x05\x04\x01\x02\x01", // 偓
+ 0x5054: "\x03\x02\x02\x05\x01\x02\x05\x01\x01\x01\x05", // 偔
+ 0x5055: "\x03\x02\x01\x05\x03\x05\x03\x02\x05\x01\x01", // 偕
+ 0x5056: "\x03\x02\x01\x02\x01\x03\x02\x05\x01\x01", // 偖
+ 0x5057: "\x03\x02\x02\x03\x04\x03\x02\x05\x01\x01\x01", // 偗
+ 0x5058: "\x03\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 偘
+ 0x5059: "\x03\x02\x04\x01\x04\x03\x04\x05\x02\x05\x02", // 偙
+ 0x505a: "\x03\x02\x01\x02\x02\x05\x01\x03\x01\x03\x04", // 做
+ 0x505b: "\x03\x02\x03\x01\x02\x03\x02\x01\x05\x01\x01", // 偛
+ 0x505c: "\x03\x02\x04\x01\x02\x05\x01\x04\x05\x01\x02", // 停
+ 0x505d: "\x03\x02\x02\x01\x01\x03\x05\x02\x05\x01\x01", // 偝
+ 0x505e: "\x03\x02\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 偞
+ 0x505f: "\x03\x02\x03\x02\x05\x01\x01\x01\x01\x02\x01", // 偟
+ 0x5060: "\x03\x02\x01\x02\x05\x02\x02\x01\x05\x03\x01", // 偠
+ 0x5061: "\x03\x02\x01\x02\x02\x01\x01\x01\x03\x04\x05", // 偡
+ 0x5062: "\x03\x02\x03\x01\x02\x03\x04\x04\x03\x03\x04", // 偢
+ 0x5063: "\x03\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 偣
+ 0x5064: "\x03\x02\x04\x03\x01\x02\x05\x03\x05\x01\x01", // 偤
+ 0x5065: "\x03\x02\x05\x01\x01\x01\x01\x02\x05\x04", // 健
+ 0x5066: "\x03\x02\x05\x02\x01\x03\x04\x02\x05\x01\x01", // 偦
+ 0x5067: "\x03\x02\x01\x03\x04\x03\x05\x04\x03\x05\x04", // 偧
+ 0x5068: "\x03\x02\x02\x01\x02\x01\x03\x05\x01\x02\x03\x04", // 偨
+ 0x5069: "\x03\x02\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 偩
+ 0x506a: "\x03\x02\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 偪
+ 0x506b: "\x03\x02\x03\x03\x02\x01\x02\x01\x01\x02\x04", // 偫
+ 0x506c: "\x03\x02\x03\x05\x03\x03\x04\x04\x05\x04\x04", // 偬
+ 0x506d: "\x03\x02\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 偭
+ 0x506e: "\x03\x02\x02\x05\x01\x01\x02\x02\x01\x01\x01", // 偮
+ 0x506f: "\x03\x02\x04\x01\x02\x05\x01\x03\x05\x03\x04", // 偯
+ 0x5070: "\x03\x02\x01\x01\x01\x02\x05\x03\x01\x03\x04", // 偰
+ 0x5071: "\x03\x02\x03\x03\x01\x02\x02\x05\x01\x01\x01", // 偱
+ 0x5072: "\x03\x02\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 偲
+ 0x5073: "\x03\x02\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 偳
+ 0x5074: "\x03\x02\x02\x05\x01\x01\x01\x03\x04\x02\x02", // 側
+ 0x5075: "\x03\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 偵
+ 0x5076: "\x03\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 偶
+ 0x5077: "\x03\x02\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 偷
+ 0x5078: "\x03\x02\x03\x04\x01\x02\x05\x01\x01\x05\x05", // 偸
+ 0x5079: "\x03\x02\x02\x03\x05\x04\x02\x05\x01\x02\x01", // 偹
+ 0x507a: "\x03\x02\x03\x05\x04\x02\x04\x02\x05\x01\x01", // 偺
+ 0x507b: "\x03\x02\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 偻
+ 0x507c: "\x03\x02\x02\x01\x05\x01\x01\x02\x01\x03\x04", // 偼
+ 0x507d: "\x03\x02\x04\x03\x05\x05\x05\x04\x04\x04\x04", // 偽
+ 0x507e: "\x03\x02\x01\x02\x01\x02\x02\x02\x05\x03\x04", // 偾
+ 0x507f: "\x03\x02\x02\x04\x03\x04\x05\x01\x01\x05\x04", // 偿
+ 0x5080: "\x03\x02\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 傀
+ 0x5081: "\x03\x02\x03\x02\x01\x05\x01\x01\x02\x05\x04", // 傁
+ 0x5082: "\x03\x02\x03\x03\x02\x01\x05\x03\x01\x05\x03\x05", // 傂
+ 0x5083: "\x03\x02\x01\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 傃
+ 0x5084: "\x03\x02\x01\x03\x04\x04\x03\x02\x05\x01\x01\x01", // 傄
+ 0x5085: "\x03\x02\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 傅
+ 0x5086: "\x03\x02\x01\x03\x03\x02\x05\x01\x01\x02\x03\x04", // 傆
+ 0x5087: "\x03\x02\x01\x02\x02\x01\x02\x02\x01\x01\x01", // 傇
+ 0x5088: "\x03\x02\x01\x02\x05\x02\x02\x01\x01\x02\x03\x04", // 傈
+ 0x5089: "\x03\x02\x01\x03\x01\x01\x05\x03\x04\x01\x02\x04", // 傉
+ 0x508a: "\x03\x02\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 傊
+ 0x508b: "\x03\x02\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01", // 傋
+ 0x508c: "\x03\x02\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 傌
+ 0x508d: "\x03\x02\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03", // 傍
+ 0x508e: "\x03\x02\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 傎
+ 0x508f: "\x03\x02\x04\x01\x03\x05\x01\x01\x02\x02\x05\x01", // 傏
+ 0x5090: "\x03\x02\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 傐
+ 0x5091: "\x03\x02\x03\x05\x04\x01\x05\x02\x01\x02\x03\x04", // 傑
+ 0x5092: "\x03\x02\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04", // 傒
+ 0x5093: "\x03\x02\x04\x05\x01\x03\x05\x04\x01\x05\x04\x01", // 傓
+ 0x5094: "\x03\x02\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 傔
+ 0x5095: "\x03\x02\x04\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 傕
+ 0x5096: "\x03\x02\x03\x04\x04\x05\x01\x01\x03\x02\x05\x01", // 傖
+ 0x5097: "\x03\x02\x04\x01\x05\x05\x04\x02\x05\x01\x02\x01", // 傗
+ 0x5098: "\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x01\x02", // 傘
+ 0x5099: "\x03\x02\x01\x02\x02\x01\x03\x02\x05\x01\x01\x02", // 備
+ 0x509a: "\x03\x02\x04\x01\x03\x04\x03\x04\x03\x01\x03\x04", // 傚
+ 0x509b: "\x03\x02\x04\x04\x05\x03\x04\x03\x04\x02\x05\x01", // 傛
+ 0x509c: "\x03\x02\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02", // 傜
+ 0x509d: "\x03\x02\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 傝
+ 0x509e: "\x03\x02\x04\x03\x01\x01\x01\x03\x01\x02\x01", // 傞
+ 0x509f: "\x03\x02\x03\x04\x05\x04\x05\x04\x01\x05\x04\x01", // 傟
+ 0x50a0: "\x03\x02\x04\x01\x01\x01\x02\x05\x01\x01\x02\x04", // 傠
+ 0x50a1: "\x03\x02\x04\x01\x04\x03\x01\x04\x01\x04\x03\x01", // 傡
+ 0x50a2: "\x03\x02\x04\x04\x05\x01\x03\x05\x03\x03\x03\x04", // 傢
+ 0x50a3: "\x03\x02\x01\x01\x01\x03\x04\x02\x04\x01\x03\x04", // 傣
+ 0x50a4: "\x03\x02\x01\x02\x01\x01\x05\x02\x01\x05\x03\x04", // 傤
+ 0x50a5: "\x03\x02\x02\x04\x03\x04\x05\x02\x05\x01\x03\x05", // 傥
+ 0x50a6: "\x03\x02\x02\x05\x05\x04\x05\x02\x05\x01\x01", // 傦
+ 0x50a7: "\x03\x02\x04\x04\x05\x03\x02\x01\x02\x01\x03\x04", // 傧
+ 0x50a8: "\x03\x02\x04\x05\x01\x02\x01\x03\x02\x05\x01\x01", // 储
+ 0x50a9: "\x03\x02\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 傩
+ 0x50aa: "\x03\x02\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 傪
+ 0x50ab: "\x03\x02\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 傫
+ 0x50ac: "\x03\x02\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 催
+ 0x50ad: "\x03\x02\x04\x01\x03\x05\x01\x01\x02\x05\x01\x01\x02", // 傭
+ 0x50ae: "\x03\x02\x01\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01", // 傮
+ 0x50af: "\x03\x02\x03\x02\x05\x03\x05\x04\x01\x04\x05\x04\x04", // 傯
+ 0x50b0: "\x03\x02\x02\x05\x02\x03\x05\x01\x01\x03\x05\x01\x01", // 傰
+ 0x50b1: "\x03\x02\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04", // 傱
+ 0x50b2: "\x03\x02\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04", // 傲
+ 0x50b3: "\x03\x02\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04", // 傳
+ 0x50b4: "\x03\x02\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 傴
+ 0x50b5: "\x03\x02\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 債
+ 0x50b6: "\x03\x02\x01\x03\x02\x01\x01\x02\x03\x04\x05\x03\x04", // 傶
+ 0x50b7: "\x03\x02\x03\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 傷
+ 0x50b8: "\x03\x02\x01\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04", // 傸
+ 0x50b9: "\x03\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05", // 傹
+ 0x50ba: "\x03\x02\x03\x05\x04\x04\x05\x04\x01\x01\x02\x03\x04", // 傺
+ 0x50bb: "\x03\x02\x03\x02\x05\x03\x04\x01\x03\x04\x03\x05\x04", // 傻
+ 0x50bc: "\x03\x02\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 傼
+ 0x50bd: "\x03\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02", // 傽
+ 0x50be: "\x03\x02\x01\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 傾
+ 0x50bf: "\x03\x02\x01\x02\x01\x02\x01\x01\x05\x04\x04\x04\x04", // 傿
+ 0x50c0: "\x03\x02\x01\x03\x02\x02\x01\x05\x04\x05\x02\x05\x02", // 僀
+ 0x50c1: "\x03\x02\x03\x04\x03\x01\x02\x03\x04\x04\x05\x04\x04", // 僁
+ 0x50c2: "\x03\x02\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 僂
+ 0x50c3: "\x03\x02\x01\x02\x02\x03\x05\x02\x05\x01\x01\x02", // 僃
+ 0x50c4: "\x03\x02\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 僄
+ 0x50c5: "\x03\x02\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01", // 僅
+ 0x50c6: "\x03\x02\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 僆
+ 0x50c7: "\x03\x02\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 僇
+ 0x50c8: "\x03\x02\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 僈
+ 0x50c9: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 僉
+ 0x50ca: "\x03\x02\x01\x02\x05\x02\x02\x01\x01\x03\x04\x05\x01\x05", // 僊
+ 0x50cb: "\x03\x02\x03\x04\x04\x05\x02\x05\x01\x01\x01\x03\x04", // 僋
+ 0x50cc: "\x03\x02\x01\x02\x05\x01\x01\x01\x02\x03\x01\x03\x04", // 僌
+ 0x50cd: "\x03\x02\x03\x01\x02\x05\x01\x01\x02\x01\x01\x05\x03", // 働
+ 0x50ce: "\x03\x02\x05\x01\x05\x05\x01\x05\x01\x02\x02\x01\x03\x04", // 僎
+ 0x50cf: "\x03\x02\x03\x05\x02\x05\x01\x03\x05\x03\x03\x03\x04", // 像
+ 0x50d0: "\x03\x02\x04\x03\x01\x01\x01\x02\x04\x03\x01\x02\x05\x01", // 僐
+ 0x50d1: "\x03\x02\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 僑
+ 0x50d2: "\x03\x02\x04\x04\x05\x03\x04\x05\x01\x01\x03\x02\x05\x01", // 僒
+ 0x50d3: "\x03\x02\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 僓
+ 0x50d4: "\x03\x02\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x02\x04", // 僔
+ 0x50d5: "\x03\x02\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 僕
+ 0x50d6: "\x03\x02\x01\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01", // 僖
+ 0x50d7: "\x03\x02\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x05\x03", // 僗
+ 0x50d8: "\x03\x02\x02\x04\x03\x02\x05\x02\x05\x01\x03\x01\x03\x04", // 僘
+ 0x50d9: "\x03\x02\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 僙
+ 0x50da: "\x03\x02\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 僚
+ 0x50db: "\x03\x02\x01\x02\x02\x01\x01\x01\x03\x04\x03\x05\x03\x04", // 僛
+ 0x50dc: "\x03\x02\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 僜
+ 0x50dd: "\x03\x02\x05\x01\x03\x05\x02\x01\x05\x02\x01\x05\x02\x01", // 僝
+ 0x50de: "\x03\x02\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04", // 僞
+ 0x50df: "\x03\x02\x05\x05\x04\x05\x05\x04\x01\x03\x04\x05\x03\x04", // 僟
+ 0x50e0: "\x03\x02\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 僠
+ 0x50e1: "\x03\x02\x01\x02\x05\x01\x01\x02\x01\x04\x04\x05\x04\x04", // 僡
+ 0x50e2: "\x03\x02\x03\x04\x04\x03\x04\x05\x03\x05\x04\x01\x05\x02", // 僢
+ 0x50e3: "\x03\x02\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01", // 僣
+ 0x50e4: "\x03\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 僤
+ 0x50e5: "\x03\x02\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 僥
+ 0x50e6: "\x03\x02\x04\x01\x02\x05\x01\x02\x03\x04\x01\x03\x05\x04", // 僦
+ 0x50e7: "\x03\x02\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 僧
+ 0x50e8: "\x03\x02\x01\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 僨
+ 0x50e9: "\x03\x02\x02\x05\x01\x01\x02\x05\x01\x01\x03\x05\x01\x01", // 僩
+ 0x50ea: "\x03\x02\x05\x04\x05\x02\x03\x02\x05\x03\x04\x02\x05\x01", // 僪
+ 0x50eb: "\x03\x02\x01\x02\x01\x05\x05\x01\x02\x01\x04\x05\x04\x04", // 僫
+ 0x50ec: "\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 僬
+ 0x50ed: "\x03\x02\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x01", // 僭
+ 0x50ee: "\x03\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 僮
+ 0x50ef: "\x03\x02\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 僯
+ 0x50f0: "\x01\x02\x05\x02\x03\x04\x01\x02\x05\x02\x03\x04\x03\x04", // 僰
+ 0x50f1: "\x03\x02\x04\x05\x01\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 僱
+ 0x50f2: "\x03\x02\x01\x02\x05\x02\x02\x01\x03\x05\x04\x01\x05\x02", // 僲
+ 0x50f3: "\x03\x02\x01\x02\x05\x02\x02\x01\x04\x03\x01\x02\x03\x04", // 僳
+ 0x50f4: "\x03\x02\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01", // 僴
+ 0x50f5: "\x03\x02\x01\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x01\x01", // 僵
+ 0x50f6: "\x03\x02\x02\x05\x01\x01\x02\x05\x01\x02\x01\x01\x05\x01\x01", // 僶
+ 0x50f7: "\x03\x02\x01\x02\x02\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 僷
+ 0x50f8: "\x03\x02\x01\x02\x03\x04\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 僸
+ 0x50f9: "\x03\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 價
+ 0x50fa: "\x03\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 僺
+ 0x50fb: "\x03\x02\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 僻
+ 0x50fc: "\x03\x02\x02\x05\x01\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01", // 僼
+ 0x50fd: "\x03\x02\x03\x01\x02\x03\x04\x04\x03\x03\x04\x04\x05\x04\x04", // 僽
+ 0x50fe: "\x03\x02\x03\x04\x04\x03\x04\x05\x04\x05\x04\x04\x03\x05\x04", // 僾
+ 0x50ff: "\x03\x02\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x01\x02\x01", // 僿
+ 0x5100: "\x03\x02\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01\x05\x03\x04", // 儀
+ 0x5101: "\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x02\x05", // 儁
+ 0x5102: "\x03\x02\x02\x05\x01\x02\x02\x01\x01\x03\x01\x01\x05\x03\x04", // 儂
+ 0x5103: "\x03\x02\x04\x01\x02\x05\x01\x05\x01\x01\x02\x05\x01\x01\x01", // 儃
+ 0x5104: "\x03\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 億
+ 0x5105: "\x03\x02\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x01\x02\x01", // 儅
+ 0x5106: "\x03\x02\x01\x02\x02\x03\x05\x02\x05\x01\x03\x01\x03\x04", // 儆
+ 0x5107: "\x03\x02\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 儇
+ 0x5108: "\x03\x02\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 儈
+ 0x5109: "\x03\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 儉
+ 0x510a: "\x03\x02\x01\x02\x03\x04\x01\x02\x03\x04\x05\x02\x01\x03\x04", // 儊
+ 0x510b: "\x03\x02\x03\x05\x01\x03\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 儋
+ 0x510c: "\x03\x02\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x03\x04", // 儌
+ 0x510d: "\x03\x02\x03\x04\x04\x04\x04\x04\x05\x02\x03\x04\x03\x05\x04", // 儍
+ 0x510e: "\x03\x02\x01\x02\x01\x01\x02\x05\x01\x01\x01\x02\x05\x03\x04", // 儎
+ 0x510f: "\x03\x02\x02\x01\x03\x05\x04\x05\x04\x04\x03\x01\x02\x03\x04", // 儏
+ 0x5110: "\x03\x02\x04\x04\x05\x01\x02\x03\x03\x02\x05\x01\x01\x01\x03\x04", // 儐
+ 0x5111: "\x03\x02\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x04\x04\x04\x04", // 儑
+ 0x5112: "\x03\x02\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02", // 儒
+ 0x5113: "\x03\x02\x01\x02\x01\x02\x05\x01\x04\x05\x01\x05\x04\x01\x02\x01", // 儓
+ 0x5114: "\x03\x02\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 儔
+ 0x5115: "\x03\x02\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x01\x01\x02", // 儕
+ 0x5116: "\x03\x02\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01", // 儖
+ 0x5117: "\x03\x02\x03\x05\x03\x01\x01\x03\x04\x05\x04\x05\x02\x01\x03\x04", // 儗
+ 0x5118: "\x03\x02\x05\x01\x01\x02\x01\x04\x04\x04\x04\x02\x05\x02\x02\x01", // 儘
+ 0x5119: "\x03\x02\x02\x05\x01\x02\x01\x02\x05\x01\x05\x01\x04\x05\x04", // 儙
+ 0x511a: "\x03\x02\x01\x02\x02\x02\x05\x02\x02\x01\x04\x05\x03\x05\x04", // 儚
+ 0x511b: "\x03\x02\x03\x01\x01\x02\x02\x02\x02\x01\x03\x05\x04\x01\x05\x02", // 儛
+ 0x511c: "\x03\x02\x04\x04\x05\x04\x05\x04\x04\x02\x05\x02\x02\x01\x01\x02", // 儜
+ 0x511d: "\x03\x02\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x01\x02\x03\x04", // 儝
+ 0x511e: "\x03\x02\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 儞
+ 0x511f: "\x03\x02\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 償
+ 0x5120: "\x03\x02\x05\x05\x05\x02\x05\x03\x04\x01\x05\x04\x04\x05\x04\x04\x05", // 儠
+ 0x5121: "\x03\x02\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01", // 儡
+ 0x5122: "\x03\x02\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 儢
+ 0x5123: "\x03\x02\x04\x01\x03\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 儣
+ 0x5124: "\x03\x02\x02\x05\x01\x01\x01\x02\x02\x01\x03\x04\x02\x04\x01\x03\x04", // 儤
+ 0x5125: "\x03\x02\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 儥
+ 0x5126: "\x03\x02\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x04\x04\x04\x04", // 儦
+ 0x5127: "\x03\x02\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 儧
+ 0x5128: "\x03\x02\x03\x03\x01\x02\x03\x03\x01\x02\x02\x05\x01\x01\x01\x03\x04", // 儨
+ 0x5129: "\x03\x02\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x03\x05\x03\x03", // 儩
+ 0x512a: "\x03\x02\x01\x03\x02\x05\x01\x01\x04\x05\x04\x05\x04\x04\x03\x05\x04", // 優
+ 0x512b: "\x03\x02\x04\x01\x02\x05\x01\x04\x05\x01\x03\x05\x03\x03\x03\x04", // 儫
+ 0x512c: "\x03\x02\x01\x01\x02\x01\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 儬
+ 0x512d: "\x03\x02\x04\x01\x04\x03\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 儭
+ 0x512e: "\x03\x02\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 儮
+ 0x512f: "\x03\x02\x04\x03\x01\x01\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 儯
+ 0x5130: "\x03\x02\x01\x02\x02\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04", // 儰
+ 0x5131: "\x03\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x05\x01\x05\x01\x01\x01", // 儱
+ 0x5132: "\x03\x02\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 儲
+ 0x5133: "\x03\x02\x03\x05\x02\x05\x01\x01\x05\x03\x05\x03\x05\x02\x05\x01\x03\x05\x04", // 儳
+ 0x5134: "\x03\x02\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 儴
+ 0x5135: "\x03\x02\x02\x03\x05\x04\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 儵
+ 0x5136: "\x03\x02\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x03\x04\x02\x05\x01", // 儶
+ 0x5137: "\x03\x02\x01\x02\x05\x04\x01\x02\x05\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 儷
+ 0x5138: "\x03\x02\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 儸
+ 0x5139: "\x03\x02\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 儹
+ 0x513a: "\x03\x02\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 儺
+ 0x513b: "\x03\x02\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 儻
+ 0x513c: "\x03\x02\x02\x05\x01\x02\x05\x01\x01\x03\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 儼
+ 0x513d: "\x03\x02\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 儽
+ 0x513e: "\x03\x02\x01\x02\x05\x01\x02\x04\x05\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 儾
+ 0x513f: "\x03\x05", // 儿
+ 0x5140: "\x01\x03\x05", // 兀
+ 0x5141: "\x05\x04\x03\x05", // 允
+ 0x5142: "\x01\x05\x03\x05", // 兂
+ 0x5143: "\x01\x01\x03\x05", // 元
+ 0x5144: "\x02\x05\x01\x03\x05", // 兄
+ 0x5145: "\x04\x01\x05\x04\x03\x05", // 充
+ 0x5146: "\x03\x04\x01\x05\x03\x04", // 兆
+ 0x5147: "\x03\x04\x05\x02\x03\x05", // 兇
+ 0x5148: "\x03\x01\x02\x01\x03\x05", // 先
+ 0x5149: "\x02\x04\x03\x01\x03\x05", // 光
+ 0x514a: "\x03\x04\x05\x04\x03\x05", // 兊
+ 0x514b: "\x01\x02\x02\x05\x01\x03\x05", // 克
+ 0x514c: "\x03\x04\x02\x05\x01\x03\x05", // 兌
+ 0x514d: "\x03\x05\x02\x05\x01\x03\x05", // 免
+ 0x514e: "\x03\x02\x05\x01\x03\x05\x04", // 兎
+ 0x514f: "\x01\x03\x02\x01\x01\x03\x05", // 兏
+ 0x5150: "\x02\x02\x05\x01\x01\x03\x05", // 児
+ 0x5151: "\x04\x03\x02\x05\x01\x03\x05", // 兑
+ 0x5152: "\x03\x02\x01\x05\x01\x01\x03\x05", // 兒
+ 0x5153: "\x01\x05\x03\x05\x01\x05\x03\x05", // 兓
+ 0x5154: "\x03\x05\x02\x05\x01\x03\x05\x04", // 兔
+ 0x5155: "\x02\x05\x02\x05\x01\x03\x05", // 兕
+ 0x5156: "\x04\x01\x03\x04\x05\x04\x03\x05", // 兖
+ 0x5157: "\x04\x01\x03\x04\x02\x05\x01\x03\x05", // 兗
+ 0x5158: "\x01\x01\x03\x05\x05\x04\x02\x05\x01", // 兘
+ 0x5159: "\x01\x02\x02\x05\x01\x03\x05\x01\x02", // 兙
+ 0x515a: "\x02\x04\x03\x04\x05\x02\x05\x01\x03\x05", // 党
+ 0x515b: "\x01\x02\x02\x05\x01\x03\x05\x03\x01\x02", // 兛
+ 0x515c: "\x03\x02\x05\x01\x01\x03\x05\x05\x01\x03\x05", // 兜
+ 0x515d: "\x01\x02\x02\x05\x01\x03\x05\x03\x04\x05\x03", // 兝
+ 0x515e: "\x01\x02\x02\x05\x01\x03\x05\x03\x01\x01\x05", // 兞
+ 0x515f: "\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05", // 兟
+ 0x5160: "\x03\x02\x05\x01\x01\x02\x01\x01\x03\x05\x03\x05", // 兠
+ 0x5161: "\x01\x02\x02\x05\x01\x03\x05\x01\x03\x02\x05\x01\x01", // 兡
+ 0x5162: "\x01\x02\x02\x05\x01\x03\x05\x01\x02\x02\x05\x01\x03\x05", // 兢
+ 0x5163: "\x01\x02\x02\x05\x01\x03\x05\x01\x03\x02\x05\x01\x01\x02\x01\x01", // 兣
+ 0x5164: "\x02\x04\x03\x01\x03\x05\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 兤
+ 0x5165: "\x03\x04", // 入
+ 0x5166: "\x03\x04\x05", // 兦
+ 0x5167: "\x02\x05\x03\x04", // 內
+ 0x5168: "\x03\x04\x01\x01\x02\x01", // 全
+ 0x5169: "\x01\x02\x05\x02\x03\x04\x03\x04", // 兩
+ 0x516a: "\x03\x04\x01\x02\x05\x01\x01\x05\x05", // 兪
+ 0x516b: "\x03\x04", // 八
+ 0x516c: "\x03\x04\x05\x04", // 公
+ 0x516d: "\x04\x01\x03\x04", // 六
+ 0x516e: "\x03\x04\x01\x05", // 兮
+ 0x516f: "\x04\x03\x05\x02", // 兯
+ 0x5170: "\x04\x03\x01\x01\x01", // 兰
+ 0x5171: "\x01\x02\x02\x01\x03\x04", // 共
+ 0x5172: "\x01\x01\x02\x01\x03\x04", // 兲
+ 0x5173: "\x04\x03\x01\x01\x03\x04", // 关
+ 0x5174: "\x04\x04\x03\x01\x03\x04", // 兴
+ 0x5175: "\x03\x02\x01\x02\x01\x03\x04", // 兵
+ 0x5176: "\x01\x02\x02\x01\x01\x01\x03\x04", // 其
+ 0x5177: "\x02\x05\x01\x01\x01\x01\x03\x04", // 具
+ 0x5178: "\x02\x05\x01\x02\x02\x01\x03\x04", // 典
+ 0x5179: "\x04\x03\x01\x05\x05\x04\x05\x05\x04", // 兹
+ 0x517a: "\x03\x04\x05\x03\x02\x05\x01\x03\x05", // 兺
+ 0x517b: "\x04\x03\x01\x01\x01\x03\x04\x03\x02", // 养
+ 0x517c: "\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 兼
+ 0x517d: "\x04\x03\x02\x05\x01\x02\x01\x01\x02\x05\x01", // 兽
+ 0x517e: "\x04\x03\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 兾
+ 0x517f: "\x04\x03\x01\x01\x02\x01\x03\x05\x04\x01\x01\x05\x04", // 兿
+ 0x5180: "\x02\x01\x01\x03\x05\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 冀
+ 0x5181: "\x04\x03\x02\x05\x01\x01\x01\x02\x05\x01\x03\x01\x02\x02\x01\x05\x03\x04", // 冁
+ 0x5182: "\x02\x05", // 冂
+ 0x5183: "\x02\x05\x01\x01", // 冃
+ 0x5184: "\x02\x05\x01\x01", // 冄
+ 0x5185: "\x02\x05\x03\x04", // 内
+ 0x5186: "\x02\x05\x02\x01", // 円
+ 0x5187: "\x01\x03\x02\x05", // 冇
+ 0x5188: "\x02\x05\x03\x04", // 冈
+ 0x5189: "\x02\x05\x02\x01\x01", // 冉
+ 0x518a: "\x02\x05\x02\x02\x01", // 冊
+ 0x518b: "\x02\x05\x02\x05\x01", // 冋
+ 0x518c: "\x03\x05\x03\x05\x01", // 册
+ 0x518d: "\x01\x02\x05\x02\x01\x01", // 再
+ 0x518e: "\x02\x05\x05\x02\x05", // 冎
+ 0x518f: "\x02\x05\x03\x04\x02\x05\x01", // 冏
+ 0x5190: "\x02\x05\x01\x01\x02\x05\x01\x01", // 冐
+ 0x5191: "\x02\x05\x01\x02\x01\x02\x05\x01\x01", // 冑
+ 0x5192: "\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 冒
+ 0x5193: "\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01", // 冓
+ 0x5194: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02", // 冔
+ 0x5195: "\x02\x05\x01\x01\x03\x05\x02\x05\x01\x03\x05", // 冕
+ 0x5196: "\x04\x05", // 冖
+ 0x5197: "\x04\x05\x03\x05", // 冗
+ 0x5198: "\x04\x05\x03\x05", // 冘
+ 0x5199: "\x04\x05\x01\x05\x01", // 写
+ 0x519a: "\x04\x05\x02\x05\x02", // 冚
+ 0x519b: "\x04\x05\x01\x05\x01\x02", // 军
+ 0x519c: "\x04\x05\x03\x05\x03\x04", // 农
+ 0x519d: "\x04\x05\x02\x05\x01\x01\x01", // 冝
+ 0x519e: "\x04\x05\x04\x03\x01\x02\x03\x04", // 冞
+ 0x519f: "\x04\x05\x03\x02\x05\x01\x01\x03\x05", // 冟
+ 0x51a0: "\x04\x05\x01\x01\x03\x05\x01\x02\x04", // 冠
+ 0x51a1: "\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 冡
+ 0x51a2: "\x04\x05\x01\x03\x05\x03\x03\x04\x03\x04", // 冢
+ 0x51a3: "\x04\x05\x01\x02\x02\x01\x01\x01\x05\x04", // 冣
+ 0x51a4: "\x04\x05\x03\x05\x02\x05\x01\x03\x05\x04", // 冤
+ 0x51a5: "\x04\x05\x02\x05\x01\x01\x04\x01\x03\x04", // 冥
+ 0x51a6: "\x04\x05\x01\x01\x03\x05\x02\x01\x05\x04", // 冦
+ 0x51a7: "\x04\x05\x01\x02\x03\x04\x01\x02\x03\x04", // 冧
+ 0x51a8: "\x04\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 冨
+ 0x51a9: "\x04\x05\x03\x02\x01\x05\x01\x01\x03\x05\x04\x04\x04\x04", // 冩
+ 0x51aa: "\x04\x05\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04\x02\x05\x02", // 冪
+ 0x51ab: "\x04\x01", // 冫
+ 0x51ac: "\x03\x05\x04\x04\x04", // 冬
+ 0x51ad: "\x01\x03\x04\x04\x04", // 冭
+ 0x51ae: "\x04\x01\x01\x02\x01", // 冮
+ 0x51af: "\x04\x01\x05\x05\x01", // 冯
+ 0x51b0: "\x04\x01\x02\x05\x03\x04", // 冰
+ 0x51b1: "\x04\x01\x01\x05\x05\x01", // 冱
+ 0x51b2: "\x04\x01\x02\x05\x01\x02", // 冲
+ 0x51b3: "\x04\x01\x05\x01\x03\x04", // 决
+ 0x51b4: "\x04\x01\x01\x05\x02\x03", // 冴
+ 0x51b5: "\x04\x01\x02\x05\x01\x03\x05", // 况
+ 0x51b6: "\x04\x01\x05\x04\x02\x05\x01", // 冶
+ 0x51b7: "\x04\x01\x03\x04\x04\x05\x04", // 冷
+ 0x51b8: "\x04\x01\x04\x03\x01\x01\x02", // 冸
+ 0x51b9: "\x04\x01\x01\x03\x05\x04\x04", // 冹
+ 0x51ba: "\x04\x01\x05\x01\x05\x01\x05", // 冺
+ 0x51bb: "\x04\x01\x01\x05\x02\x03\x04", // 冻
+ 0x51bc: "\x04\x01\x03\x01\x02\x01\x03\x05", // 冼
+ 0x51bd: "\x04\x01\x01\x03\x05\x04\x02\x02", // 冽
+ 0x51be: "\x04\x01\x03\x04\x01\x02\x05\x01", // 冾
+ 0x51bf: "\x04\x01\x05\x01\x01\x01\x01\x02", // 冿
+ 0x51c0: "\x04\x01\x03\x05\x05\x01\x01\x02", // 净
+ 0x51c1: "\x04\x01\x01\x02\x05\x01\x02\x03\x04", // 凁
+ 0x51c2: "\x04\x01\x03\x05\x02\x05\x01\x03\x05", // 凂
+ 0x51c3: "\x04\x01\x03\x04\x01\x01\x02\x03\x04", // 凃
+ 0x51c4: "\x04\x01\x01\x05\x01\x01\x02\x05\x03\x01", // 凄
+ 0x51c5: "\x04\x01\x02\x05\x01\x02\x02\x05\x01\x01", // 凅
+ 0x51c6: "\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 准
+ 0x51c7: "\x04\x01\x01\x02\x03\x04\x03\x04\x05\x04", // 凇
+ 0x51c8: "\x04\x01\x03\x04\x04\x03\x05\x01\x01\x02", // 凈
+ 0x51c9: "\x04\x01\x04\x01\x02\x05\x01\x02\x03\x04", // 凉
+ 0x51ca: "\x04\x01\x01\x01\x02\x01\x02\x05\x01\x01", // 凊
+ 0x51cb: "\x04\x01\x03\x05\x01\x02\x01\x02\x05\x01", // 凋
+ 0x51cc: "\x04\x01\x01\x02\x01\x03\x04\x03\x05\x04", // 凌
+ 0x51cd: "\x04\x01\x01\x02\x05\x01\x01\x02\x03\x04", // 凍
+ 0x51ce: "\x04\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 凎
+ 0x51cf: "\x04\x01\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 减
+ 0x51d0: "\x04\x01\x01\x02\x05\x02\x02\x01\x01\x02\x01", // 凐
+ 0x51d1: "\x04\x01\x01\x01\x01\x03\x04\x01\x01\x03\x04", // 凑
+ 0x51d2: "\x04\x01\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 凒
+ 0x51d3: "\x04\x01\x01\x02\x05\x02\x02\x01\x01\x02\x03\x04", // 凓
+ 0x51d4: "\x04\x01\x03\x04\x04\x05\x01\x01\x03\x02\x05\x01", // 凔
+ 0x51d5: "\x04\x01\x04\x05\x02\x05\x01\x01\x04\x01\x03\x04", // 凕
+ 0x51d6: "\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02", // 凖
+ 0x51d7: "\x04\x01\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 凗
+ 0x51d8: "\x04\x01\x01\x02\x02\x01\x01\x01\x03\x04\x03\x03\x01\x02", // 凘
+ 0x51d9: "\x04\x01\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 凙
+ 0x51da: "\x04\x01\x01\x02\x03\x04\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 凚
+ 0x51db: "\x04\x01\x04\x01\x02\x05\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 凛
+ 0x51dc: "\x04\x01\x04\x01\x02\x05\x02\x05\x01\x01\x03\x01\x02\x03\x04", // 凜
+ 0x51dd: "\x04\x01\x03\x05\x03\x02\x02\x03\x04\x05\x04\x05\x02\x01\x03\x04", // 凝
+ 0x51de: "\x04\x01\x03\x01\x02\x05\x01\x02\x05\x05\x01\x05\x04\x04\x04\x04", // 凞
+ 0x51df: "\x04\x01\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 凟
+ 0x51e0: "\x03\x05", // 几
+ 0x51e1: "\x03\x05\x04", // 凡
+ 0x51e2: "\x03\x03\x05", // 凢
+ 0x51e3: "\x02\x03\x05", // 凣
+ 0x51e4: "\x03\x05\x05\x04", // 凤
+ 0x51e5: "\x05\x01\x03\x03\x05", // 凥
+ 0x51e6: "\x03\x05\x04\x03\x05", // 処
+ 0x51e7: "\x03\x05\x02\x05\x02", // 凧
+ 0x51e8: "\x03\x05\x01\x01\x05\x04", // 凨
+ 0x51e9: "\x03\x05\x01\x02\x03\x04", // 凩
+ 0x51ea: "\x03\x05\x02\x01\x02\x01", // 凪
+ 0x51eb: "\x03\x05\x04\x05\x03\x05", // 凫
+ 0x51ec: "\x03\x05\x01\x02\x05\x01\x01", // 凬
+ 0x51ed: "\x03\x02\x03\x01\x02\x01\x03\x05", // 凭
+ 0x51ee: "\x03\x05\x01\x03\x02\x05\x01\x01", // 凮
+ 0x51ef: "\x02\x05\x02\x05\x01\x05\x03\x05", // 凯
+ 0x51f0: "\x03\x05\x03\x02\x05\x01\x01\x01\x01\x02\x01", // 凰
+ 0x51f1: "\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01\x03\x05", // 凱
+ 0x51f2: "\x03\x05\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 凲
+ 0x51f3: "\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01\x03\x05", // 凳
+ 0x51f4: "\x04\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05", // 凴
+ 0x51f5: "\x05\x02", // 凵
+ 0x51f6: "\x03\x04\x05\x02", // 凶
+ 0x51f7: "\x01\x02\x01\x05\x02", // 凷
+ 0x51f8: "\x02\x01\x02\x05\x01", // 凸
+ 0x51f9: "\x02\x05\x02\x05\x01", // 凹
+ 0x51fa: "\x05\x02\x02\x05\x02", // 出
+ 0x51fb: "\x01\x01\x02\x05\x02", // 击
+ 0x51fc: "\x02\x05\x03\x04\x05\x02", // 凼
+ 0x51fd: "\x05\x02\x04\x01\x03\x04\x05\x02", // 函
+ 0x51fe: "\x05\x02\x02\x05\x01\x05\x04\x05\x02", // 凾
+ 0x51ff: "\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x05\x02", // 凿
+ 0x5200: "\x05\x03", // 刀
+ 0x5201: "\x05\x01", // 刁
+ 0x5202: "\x02\x02", // 刂
+ 0x5203: "\x05\x03\x04", // 刃
+ 0x5204: "\x05\x03\x04", // 刄
+ 0x5205: "\x05\x03\x04\x04", // 刅
+ 0x5206: "\x03\x04\x05\x03", // 分
+ 0x5207: "\x01\x05\x05\x03", // 切
+ 0x5208: "\x03\x04\x02\x02", // 刈
+ 0x5209: "\x03\x01\x05\x02\x02", // 刉
+ 0x520a: "\x01\x01\x02\x02\x02", // 刊
+ 0x520b: "\x03\x01\x03\x02\x02", // 刋
+ 0x520c: "\x01\x02\x04\x02\x02", // 刌
+ 0x520d: "\x03\x05\x05\x01\x01", // 刍
+ 0x520e: "\x03\x05\x03\x03\x02\x02", // 刎
+ 0x520f: "\x03\x01\x01\x05\x02\x02", // 刏
+ 0x5210: "\x03\x05\x04\x01\x02\x02", // 刐
+ 0x5211: "\x01\x01\x03\x02\x02\x02", // 刑
+ 0x5212: "\x01\x05\x03\x04\x02\x02", // 划
+ 0x5213: "\x01\x01\x03\x05\x02\x02", // 刓
+ 0x5214: "\x05\x01\x03\x04\x02\x02", // 刔
+ 0x5215: "\x05\x03\x05\x03\x05\x03", // 刕
+ 0x5216: "\x03\x05\x01\x01\x02\x02", // 刖
+ 0x5217: "\x01\x03\x05\x04\x02\x02", // 列
+ 0x5218: "\x04\x01\x03\x04\x02\x02", // 刘
+ 0x5219: "\x02\x05\x03\x04\x02\x02", // 则
+ 0x521a: "\x02\x05\x03\x04\x02\x02", // 刚
+ 0x521b: "\x03\x04\x05\x05\x02\x02", // 创
+ 0x521c: "\x05\x01\x05\x03\x02\x02\x02", // 刜
+ 0x521d: "\x04\x05\x02\x03\x04\x05\x03", // 初
+ 0x521e: "\x02\x05\x01\x01\x01\x02\x02", // 刞
+ 0x521f: "\x05\x03\x02\x05\x01\x02\x02", // 刟
+ 0x5220: "\x03\x05\x03\x05\x01\x02\x02", // 删
+ 0x5221: "\x05\x01\x05\x01\x05\x02\x02", // 刡
+ 0x5222: "\x03\x04\x04\x05\x04\x02\x02", // 刢
+ 0x5223: "\x05\x04\x02\x05\x01\x02\x02", // 刣
+ 0x5224: "\x04\x03\x01\x01\x03\x02\x02", // 判
+ 0x5225: "\x02\x05\x01\x05\x03\x02\x02", // 別
+ 0x5226: "\x01\x02\x01\x05\x04\x02\x02", // 刦
+ 0x5227: "\x01\x02\x01\x05\x04\x05\x03", // 刧
+ 0x5228: "\x03\x05\x05\x01\x05\x02\x02", // 刨
+ 0x5229: "\x03\x01\x02\x03\x04\x02\x02", // 利
+ 0x522a: "\x02\x05\x02\x02\x01\x02\x02", // 刪
+ 0x522b: "\x02\x05\x01\x05\x03\x02\x02", // 别
+ 0x522c: "\x01\x01\x05\x03\x04\x02\x02", // 刬
+ 0x522d: "\x05\x04\x01\x02\x01\x02\x02", // 刭
+ 0x522e: "\x03\x01\x02\x02\x05\x01\x02\x02", // 刮
+ 0x522f: "\x01\x02\x05\x01\x01\x01\x02\x02", // 刯
+ 0x5230: "\x01\x05\x04\x01\x02\x01\x02\x02", // 到
+ 0x5231: "\x01\x01\x03\x02\x05\x03\x04\x04", // 刱
+ 0x5232: "\x01\x02\x01\x01\x02\x01\x02\x02", // 刲
+ 0x5233: "\x01\x03\x04\x01\x01\x05\x02\x02", // 刳
+ 0x5234: "\x05\x03\x01\x02\x03\x04\x02\x02", // 刴
+ 0x5235: "\x01\x02\x02\x01\x01\x01\x02\x02", // 刵
+ 0x5236: "\x03\x01\x01\x02\x05\x02\x02\x02", // 制
+ 0x5237: "\x05\x01\x03\x02\x05\x02\x02\x02", // 刷
+ 0x5238: "\x04\x03\x01\x01\x03\x04\x05\x03", // 券
+ 0x5239: "\x03\x04\x01\x02\x03\x04\x02\x02", // 刹
+ 0x523a: "\x01\x02\x05\x02\x03\x04\x02\x02", // 刺
+ 0x523b: "\x04\x01\x05\x03\x03\x04\x02\x02", // 刻
+ 0x523c: "\x01\x02\x01\x05\x04\x05\x03\x04", // 刼
+ 0x523d: "\x03\x04\x01\x01\x05\x04\x02\x02", // 刽
+ 0x523e: "\x01\x04\x03\x01\x03\x04\x02\x02", // 刾
+ 0x523f: "\x02\x05\x02\x03\x05\x04\x02\x02", // 刿
+ 0x5240: "\x02\x05\x02\x05\x01\x05\x02\x02", // 剀
+ 0x5241: "\x03\x05\x01\x02\x03\x04\x02\x02", // 剁
+ 0x5242: "\x04\x01\x03\x04\x03\x02\x02\x02", // 剂
+ 0x5243: "\x04\x03\x05\x01\x05\x02\x03\x02\x02", // 剃
+ 0x5244: "\x01\x05\x05\x05\x01\x02\x01\x02\x02", // 剄
+ 0x5245: "\x01\x02\x05\x01\x04\x03\x01\x02\x02", // 剅
+ 0x5246: "\x04\x05\x01\x01\x05\x04\x02\x02", // 剆
+ 0x5247: "\x02\x05\x01\x01\x01\x03\x04\x02\x02", // 則
+ 0x5248: "\x02\x05\x01\x02\x05\x01\x01\x02\x02", // 剈
+ 0x5249: "\x03\x04\x03\x04\x01\x02\x01\x02\x02", // 剉
+ 0x524a: "\x02\x04\x03\x02\x05\x01\x01\x02\x02", // 削
+ 0x524b: "\x01\x02\x02\x05\x01\x03\x05\x02\x02", // 剋
+ 0x524c: "\x01\x02\x05\x01\x02\x03\x04\x02\x02", // 剌
+ 0x524d: "\x04\x03\x01\x02\x05\x01\x01\x02\x02", // 前
+ 0x524e: "\x03\x04\x01\x02\x03\x04\x04\x02\x02", // 剎
+ 0x524f: "\x04\x03\x01\x01\x03\x02\x05\x03\x04", // 剏
+ 0x5250: "\x02\x05\x01\x02\x05\x03\x04\x02\x02", // 剐
+ 0x5251: "\x03\x04\x01\x04\x04\x03\x01\x02\x02", // 剑
+ 0x5252: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02", // 剒
+ 0x5253: "\x03\x01\x02\x03\x04\x03\x05\x03\x05\x03", // 剓
+ 0x5254: "\x02\x05\x01\x01\x03\x05\x03\x03\x02\x02", // 剔
+ 0x5255: "\x02\x01\x01\x01\x02\x01\x01\x01\x02\x02", // 剕
+ 0x5256: "\x04\x01\x04\x03\x01\x02\x05\x01\x02\x02", // 剖
+ 0x5257: "\x01\x05\x03\x04\x01\x05\x03\x04\x02\x02", // 剗
+ 0x5258: "\x01\x02\x02\x01\x01\x01\x03\x04\x02\x02", // 剘
+ 0x5259: "\x04\x03\x01\x01\x03\x02\x05\x03\x04\x04", // 剙
+ 0x525a: "\x01\x02\x05\x01\x05\x01\x01\x02\x02\x02", // 剚
+ 0x525b: "\x02\x05\x04\x03\x01\x02\x05\x02\x02\x02", // 剛
+ 0x525c: "\x04\x04\x05\x03\x05\x04\x05\x05\x02\x02", // 剜
+ 0x525d: "\x05\x05\x01\x02\x04\x01\x03\x04\x02\x02", // 剝
+ 0x525e: "\x01\x03\x04\x01\x02\x05\x01\x02\x02\x02", // 剞
+ 0x525f: "\x05\x04\x05\x04\x05\x04\x05\x04\x02\x02", // 剟
+ 0x5260: "\x04\x01\x02\x05\x01\x02\x03\x04\x02\x02", // 剠
+ 0x5261: "\x04\x03\x03\x04\x04\x03\x03\x04\x02\x02", // 剡
+ 0x5262: "\x01\x03\x05\x03\x03\x04\x03\x04\x02\x02", // 剢
+ 0x5263: "\x03\x04\x01\x02\x05\x01\x03\x04\x02\x02", // 剣
+ 0x5264: "\x04\x01\x03\x04\x03\x02\x01\x01\x02\x02", // 剤
+ 0x5265: "\x05\x01\x01\x02\x04\x01\x03\x04\x02\x02", // 剥
+ 0x5266: "\x01\x03\x04\x02\x05\x01\x01\x05\x02\x02", // 剦
+ 0x5267: "\x05\x01\x03\x01\x02\x02\x05\x01\x02\x02", // 剧
+ 0x5268: "\x01\x01\x01\x02\x01\x03\x02\x05\x01\x02\x02", // 剨
+ 0x5269: "\x03\x01\x02\x02\x01\x01\x03\x05\x03\x04\x02\x02", // 剩
+ 0x526a: "\x04\x03\x01\x02\x05\x01\x01\x02\x02\x05\x03", // 剪
+ 0x526b: "\x04\x01\x03\x01\x02\x02\x01\x05\x04\x02\x02", // 剫
+ 0x526c: "\x02\x05\x02\x01\x03\x02\x05\x02\x02\x02\x02", // 剬
+ 0x526d: "\x05\x01\x03\x01\x05\x04\x01\x02\x01\x02\x02", // 剭
+ 0x526e: "\x02\x05\x05\x02\x05\x02\x05\x01\x02\x02", // 剮
+ 0x526f: "\x01\x02\x05\x01\x02\x05\x01\x02\x01\x02\x02", // 副
+ 0x5270: "\x03\x01\x02\x01\x02\x02\x01\x03\x04\x02\x02", // 剰
+ 0x5271: "\x03\x04\x01\x02\x05\x01\x03\x04\x05\x03\x04", // 剱
+ 0x5272: "\x04\x04\x05\x01\x01\x01\x02\x02\x05\x01\x02\x02", // 割
+ 0x5273: "\x01\x02\x02\x03\x04\x01\x02\x05\x01\x02\x02", // 剳
+ 0x5274: "\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01\x02\x02", // 剴
+ 0x5275: "\x03\x04\x04\x05\x01\x01\x03\x02\x05\x01\x02\x02", // 創
+ 0x5276: "\x05\x05\x01\x03\x05\x03\x03\x03\x04\x02\x02", // 剶
+ 0x5277: "\x04\x01\x04\x03\x01\x03\x03\x01\x01\x02\x01\x02\x02", // 剷
+ 0x5278: "\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04\x02\x02", // 剸
+ 0x5279: "\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03\x02\x02", // 剹
+ 0x527a: "\x01\x01\x02\x03\x04\x03\x01\x03\x04\x01\x03\x05\x03", // 剺
+ 0x527b: "\x02\x05\x02\x03\x05\x01\x01\x03\x05\x01\x01\x02\x02", // 剻
+ 0x527c: "\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03\x02\x02", // 剼
+ 0x527d: "\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04\x02\x02", // 剽
+ 0x527e: "\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05\x02\x02", // 剾
+ 0x527f: "\x05\x05\x05\x01\x05\x01\x01\x01\x02\x03\x04\x02\x02", // 剿
+ 0x5280: "\x05\x04\x05\x02\x03\x02\x05\x03\x04\x02\x05\x01\x02\x02", // 劀
+ 0x5281: "\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04\x02\x02", // 劁
+ 0x5282: "\x01\x03\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04\x02\x02", // 劂
+ 0x5283: "\x05\x01\x01\x01\x02\x01\x02\x05\x01\x02\x01\x01\x02\x02", // 劃
+ 0x5284: "\x03\x01\x04\x03\x01\x04\x03\x04\x01\x02\x05\x01\x02\x02", // 劄
+ 0x5285: "\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04\x02\x02", // 劅
+ 0x5286: "\x04\x01\x03\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04\x02\x02", // 劆
+ 0x5287: "\x02\x01\x05\x03\x01\x05\x01\x03\x05\x03\x03\x03\x04\x02\x02", // 劇
+ 0x5288: "\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x05\x03", // 劈
+ 0x5289: "\x03\x05\x04\x05\x03\x03\x04\x01\x01\x02\x04\x03\x01\x02\x02", // 劉
+ 0x528a: "\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01\x02\x02", // 劊
+ 0x528b: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x02\x02", // 劋
+ 0x528c: "\x02\x01\x02\x01\x01\x03\x01\x02\x03\x03\x05\x03\x04\x02\x02", // 劌
+ 0x528d: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x02\x02", // 劍
+ 0x528e: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x05\x03", // 劎
+ 0x528f: "\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x01\x02\x01\x02\x02", // 劏
+ 0x5290: "\x01\x02\x02\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04\x02\x02", // 劐
+ 0x5291: "\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01\x02\x02", // 劑
+ 0x5292: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x05\x03\x04", // 劒
+ 0x5293: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x02\x02", // 劓
+ 0x5294: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x05\x03\x04", // 劔
+ 0x5295: "\x03\x03\x01\x02\x03\x03\x01\x02\x02\x05\x01\x01\x01\x03\x04\x02\x02", // 劕
+ 0x5296: "\x03\x05\x02\x05\x01\x01\x05\x03\x05\x03\x05\x02\x05\x01\x03\x05\x04\x02\x02", // 劖
+ 0x5297: "\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04\x02\x02", // 劗
+ 0x5298: "\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x02\x02", // 劘
+ 0x5299: "\x05\x05\x01\x03\x05\x03\x03\x03\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x02\x02", // 劙
+ 0x529a: "\x05\x01\x03\x02\x04\x01\x03\x04\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04\x02\x02", // 劚
+ 0x529b: "\x05\x03", // 力
+ 0x529c: "\x05\x03\x05", // 劜
+ 0x529d: "\x05\x04\x05\x03", // 劝
+ 0x529e: "\x05\x03\x04\x04", // 办
+ 0x529f: "\x01\x02\x01\x05\x03", // 功
+ 0x52a0: "\x05\x03\x02\x05\x01", // 加
+ 0x52a1: "\x03\x05\x04\x05\x03", // 务
+ 0x52a2: "\x01\x05\x03\x05\x03", // 劢
+ 0x52a3: "\x02\x03\x04\x03\x05\x03", // 劣
+ 0x52a4: "\x03\x03\x01\x02\x05\x03", // 劤
+ 0x52a5: "\x04\x01\x03\x05\x05\x03", // 劥
+ 0x52a6: "\x05\x03\x05\x03\x05\x03", // 劦
+ 0x52a7: "\x03\x01\x01\x02\x05\x03", // 劧
+ 0x52a8: "\x01\x01\x05\x04\x05\x03", // 动
+ 0x52a9: "\x02\x05\x01\x01\x01\x05\x03", // 助
+ 0x52aa: "\x05\x03\x01\x05\x04\x05\x03", // 努
+ 0x52ab: "\x01\x02\x01\x05\x04\x05\x03", // 劫
+ 0x52ac: "\x03\x05\x02\x05\x01\x05\x03", // 劬
+ 0x52ad: "\x05\x03\x02\x05\x01\x05\x03", // 劭
+ 0x52ae: "\x03\x01\x01\x03\x04\x05\x03", // 劮
+ 0x52af: "\x01\x03\x02\x05\x01\x05\x03", // 劯
+ 0x52b0: "\x03\x02\x05\x01\x01\x05\x03", // 劰
+ 0x52b1: "\x01\x03\x01\x05\x03\x05\x03", // 励
+ 0x52b2: "\x05\x04\x01\x02\x01\x05\x03", // 劲
+ 0x52b3: "\x01\x02\x02\x04\x05\x05\x03", // 劳
+ 0x52b4: "\x04\x04\x03\x04\x05\x05\x03", // 労
+ 0x52b5: "\x04\x03\x01\x01\x03\x04\x05\x03", // 劵
+ 0x52b6: "\x03\x03\x01\x02\x05\x01\x05\x03", // 劶
+ 0x52b7: "\x04\x03\x01\x01\x01\x03\x05\x03", // 劷
+ 0x52b8: "\x01\x02\x01\x01\x02\x01\x05\x03", // 劸
+ 0x52b9: "\x04\x01\x03\x04\x03\x04\x05\x03", // 効
+ 0x52ba: "\x05\x04\x03\x01\x01\x02\x05\x03", // 劺
+ 0x52bb: "\x01\x01\x01\x02\x01\x05\x05\x03", // 劻
+ 0x52bc: "\x01\x02\x01\x02\x05\x01\x05\x03", // 劼
+ 0x52bd: "\x01\x03\x05\x04\x02\x02\x05\x03", // 劽
+ 0x52be: "\x04\x01\x05\x03\x03\x04\x05\x03", // 劾
+ 0x52bf: "\x01\x02\x01\x03\x05\x04\x05\x03", // 势
+ 0x52c0: "\x01\x02\x02\x05\x01\x03\x05\x05\x03", // 勀
+ 0x52c1: "\x01\x05\x05\x05\x01\x02\x01\x05\x03", // 勁
+ 0x52c2: "\x03\x01\x02\x01\x02\x05\x01\x05\x03", // 勂
+ 0x52c3: "\x01\x02\x04\x05\x05\x02\x01\x05\x03", // 勃
+ 0x52c4: "\x03\x01\x05\x05\x04\x01\x04\x05\x03", // 勄
+ 0x52c5: "\x01\x02\x05\x01\x02\x03\x04\x05\x03", // 勅
+ 0x52c6: "\x04\x05\x01\x01\x05\x04\x05\x03", // 勆
+ 0x52c7: "\x05\x04\x02\x05\x01\x01\x02\x05\x03", // 勇
+ 0x52c8: "\x05\x04\x02\x05\x01\x01\x02\x05\x03", // 勈
+ 0x52c9: "\x03\x05\x02\x05\x01\x03\x05\x05\x03", // 勉
+ 0x52ca: "\x01\x02\x02\x05\x01\x03\x05\x05\x03", // 勊
+ 0x52cb: "\x02\x05\x01\x02\x05\x03\x04\x05\x03", // 勋
+ 0x52cc: "\x04\x03\x01\x01\x03\x04\x05\x05\x05\x03", // 勌
+ 0x52cd: "\x04\x01\x02\x05\x01\x02\x03\x04\x05\x03", // 勍
+ 0x52ce: "\x01\x02\x01\x03\x04\x01\x02\x01\x05\x03", // 勎
+ 0x52cf: "\x04\x01\x04\x03\x01\x02\x05\x01\x05\x03", // 勏
+ 0x52d0: "\x05\x02\x01\x02\x05\x02\x02\x01\x05\x03", // 勐
+ 0x52d1: "\x01\x03\x04\x03\x04\x02\x03\x04\x05\x03", // 勑
+ 0x52d2: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x03", // 勒
+ 0x52d3: "\x01\x05\x03\x05\x03\x02\x05\x01\x01\x05\x03", // 勓
+ 0x52d4: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x05\x03", // 勔
+ 0x52d5: "\x03\x01\x02\x05\x01\x01\x02\x01\x01\x05\x03", // 動
+ 0x52d6: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x05\x03", // 勖
+ 0x52d7: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x05\x03", // 勗
+ 0x52d8: "\x01\x02\x02\x01\x01\x01\x03\x04\x05\x05\x03", // 勘
+ 0x52d9: "\x05\x04\x05\x02\x03\x03\x05\x04\x05\x03", // 務
+ 0x52da: "\x01\x02\x02\x01\x05\x02\x05\x03\x04\x05\x03", // 勚
+ 0x52db: "\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04\x05\x03", // 勛
+ 0x52dc: "\x03\x04\x05\x04\x05\x04\x01\x05\x04\x01\x05\x03", // 勜
+ 0x52dd: "\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04\x05\x03", // 勝
+ 0x52de: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x05\x03", // 勞
+ 0x52df: "\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04\x05\x03", // 募
+ 0x52e0: "\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03\x05\x03", // 勠
+ 0x52e1: "\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04\x05\x03", // 勡
+ 0x52e2: "\x01\x02\x01\x03\x04\x01\x02\x01\x03\x05\x04\x05\x03", // 勢
+ 0x52e3: "\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x05\x03", // 勣
+ 0x52e4: "\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01\x05\x03", // 勤
+ 0x52e5: "\x05\x01\x05\x02\x05\x01\x02\x05\x01\x02\x01\x04\x05\x03", // 勥
+ 0x52e6: "\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04\x05\x03", // 勦
+ 0x52e7: "\x03\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03", // 勧
+ 0x52e8: "\x03\x05\x02\x05\x01\x03\x05\x03\x03\x03\x04\x05\x03", // 勨
+ 0x52e9: "\x01\x02\x02\x01\x05\x02\x05\x01\x01\x01\x03\x04\x05\x03", // 勩
+ 0x52ea: "\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01\x05\x03", // 勪
+ 0x52eb: "\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x05\x03", // 勫
+ 0x52ec: "\x04\x03\x01\x01\x03\x04\x05\x05\x04\x02\x03\x04\x05\x03", // 勬
+ 0x52ed: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01\x05\x03", // 勭
+ 0x52ee: "\x02\x01\x05\x03\x01\x05\x01\x03\x05\x03\x03\x03\x04\x05\x03", // 勮
+ 0x52ef: "\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01\x05\x03", // 勯
+ 0x52f0: "\x05\x03\x05\x03\x05\x03\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 勰
+ 0x52f1: "\x01\x02\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04\x05\x03", // 勱
+ 0x52f2: "\x03\x01\x02\x05\x01\x01\x02\x01\x01\x05\x03\x04\x04\x04\x04", // 勲
+ 0x52f3: "\x03\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x05\x03", // 勳
+ 0x52f4: "\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x04\x05\x04\x04\x05\x03", // 勴
+ 0x52f5: "\x01\x03\x01\x02\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04\x05\x03", // 勵
+ 0x52f6: "\x03\x03\x02\x04\x01\x05\x04\x02\x05\x01\x01\x03\x01\x03\x04\x05\x03", // 勶
+ 0x52f7: "\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04\x05\x03", // 勷
+ 0x52f8: "\x01\x02\x02\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03", // 勸
+ 0x52f9: "\x03\x05", // 勹
+ 0x52fa: "\x03\x05\x04", // 勺
+ 0x52fb: "\x03\x05\x01\x01", // 勻
+ 0x52fc: "\x03\x05\x03\x05", // 勼
+ 0x52fd: "\x03\x05\x03\x04", // 勽
+ 0x52fe: "\x03\x05\x05\x04", // 勾
+ 0x52ff: "\x03\x05\x03\x03", // 勿
+ 0x5300: "\x03\x05\x04\x01", // 匀
+ 0x5301: "\x03\x05\x03\x04", // 匁
+ 0x5302: "\x03\x05\x03\x05", // 匂
+ 0x5303: "\x03\x05\x03\x04\x05", // 匃
+ 0x5304: "\x03\x05\x04\x01\x05", // 匄
+ 0x5305: "\x03\x05\x05\x01\x05", // 包
+ 0x5306: "\x03\x05\x03\x03\x04", // 匆
+ 0x5307: "\x03\x05\x03\x05\x04", // 匇
+ 0x5308: "\x03\x05\x03\x04\x05\x02", // 匈
+ 0x5309: "\x03\x05\x01\x04\x03\x01\x02", // 匉
+ 0x530a: "\x03\x05\x04\x03\x01\x02\x03\x04", // 匊
+ 0x530b: "\x03\x05\x03\x01\x01\x02\x05\x02", // 匋
+ 0x530c: "\x03\x05\x03\x04\x01\x02\x05\x01", // 匌
+ 0x530d: "\x03\x05\x01\x02\x05\x01\x01\x02\x04", // 匍
+ 0x530e: "\x03\x05\x01\x03\x04\x02\x05\x01\x01\x05", // 匎
+ 0x530f: "\x01\x03\x04\x01\x01\x05\x03\x05\x05\x01\x05", // 匏
+ 0x5310: "\x03\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 匐
+ 0x5311: "\x03\x05\x03\x02\x05\x01\x01\x01\x03\x05\x01\x05", // 匑
+ 0x5312: "\x03\x05\x01\x02\x02\x03\x04\x01\x02\x05\x01", // 匒
+ 0x5313: "\x03\x05\x05\x01\x01\x05\x04\x03\x05\x05\x04", // 匓
+ 0x5314: "\x03\x05\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x02\x05\x01", // 匔
+ 0x5315: "\x03\x05", // 匕
+ 0x5316: "\x03\x02\x03\x05", // 化
+ 0x5317: "\x02\x01\x01\x03\x05", // 北
+ 0x5318: "\x03\x05\x05\x05\x05\x03\x02\x05\x03\x04\x01", // 匘
+ 0x5319: "\x02\x05\x01\x01\x01\x02\x01\x03\x04\x03\x05", // 匙
+ 0x531a: "\x01\x05", // 匚
+ 0x531b: "\x01\x03\x05\x04\x05", // 匛
+ 0x531c: "\x01\x05\x02\x05\x05", // 匜
+ 0x531d: "\x01\x02\x05\x02\x05", // 匝
+ 0x531e: "\x01\x01\x02\x01\x05", // 匞
+ 0x531f: "\x01\x04\x01\x03\x05\x05", // 匟
+ 0x5320: "\x01\x03\x03\x01\x02\x05", // 匠
+ 0x5321: "\x01\x01\x01\x02\x01\x05", // 匡
+ 0x5322: "\x01\x03\x05\x03\x03\x05", // 匢
+ 0x5323: "\x01\x02\x05\x01\x01\x02\x05", // 匣
+ 0x5324: "\x01\x01\x01\x02\x01\x04\x05", // 匤
+ 0x5325: "\x01\x05\x04\x01\x03\x02\x05", // 匥
+ 0x5326: "\x01\x01\x05\x02\x01\x03\x05\x05", // 匦
+ 0x5327: "\x01\x01\x03\x04\x03\x04\x03\x04\x05", // 匧
+ 0x5328: "\x01\x05\x02\x01\x03\x01\x02\x01\x05", // 匨
+ 0x5329: "\x01\x05\x02\x02\x01\x01\x02\x01\x05", // 匩
+ 0x532a: "\x01\x02\x01\x01\x01\x02\x01\x01\x01\x05", // 匪
+ 0x532b: "\x01\x03\x05\x03\x03\x02\x05\x01\x01\x05", // 匫
+ 0x532c: "\x01\x03\x04\x01\x02\x05\x01\x01\x02\x02\x05", // 匬
+ 0x532d: "\x01\x01\x02\x05\x01\x01\x01\x02\x03\x05\x05", // 匭
+ 0x532e: "\x01\x02\x05\x01\x02\x01\x02\x05\x03\x04\x05", // 匮
+ 0x532f: "\x01\x04\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05", // 匯
+ 0x5330: "\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x05", // 匰
+ 0x5331: "\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x05", // 匱
+ 0x5332: "\x01\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 匲
+ 0x5333: "\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x05", // 匳
+ 0x5334: "\x01\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x01\x03\x02\x05", // 匴
+ 0x5335: "\x01\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x05", // 匵
+ 0x5336: "\x01\x01\x02\x02\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x01\x05\x01\x01\x05", // 匶
+ 0x5337: "\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05", // 匷
+ 0x5338: "\x01\x05", // 匸
+ 0x5339: "\x01\x03\x05\x05", // 匹
+ 0x533a: "\x01\x03\x04\x05", // 区
+ 0x533b: "\x01\x03\x01\x01\x03\x04\x05", // 医
+ 0x533c: "\x01\x03\x04\x01\x02\x05\x01\x05", // 匼
+ 0x533d: "\x01\x02\x05\x01\x01\x05\x03\x01\x05", // 匽
+ 0x533e: "\x01\x04\x05\x01\x03\x02\x05\x01\x02\x02\x05", // 匾
+ 0x533f: "\x01\x01\x02\x02\x01\x03\x02\x05\x01\x05", // 匿
+ 0x5340: "\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 區
+ 0x5341: "\x01\x02", // 十
+ 0x5342: "\x05\x01\x02", // 卂
+ 0x5343: "\x03\x01\x02", // 千
+ 0x5344: "\x01\x02\x02", // 卄
+ 0x5345: "\x01\x03\x02\x02", // 卅
+ 0x5346: "\x03\x05\x01\x02", // 卆
+ 0x5347: "\x03\x01\x03\x02", // 升
+ 0x5348: "\x03\x01\x01\x02", // 午
+ 0x5349: "\x01\x02\x01\x03\x02", // 卉
+ 0x534a: "\x04\x03\x01\x01\x02", // 半
+ 0x534b: "\x01\x02\x01\x02\x02\x01", // 卋
+ 0x534c: "\x01\x02\x02\x02\x02", // 卌
+ 0x534d: "\x05\x02\x01\x02", // 卍
+ 0x534e: "\x03\x02\x03\x05\x01\x02", // 华
+ 0x534f: "\x01\x02\x05\x03\x04\x04", // 协
+ 0x5350: "\x05\x01\x02\x01", // 卐
+ 0x5351: "\x03\x02\x05\x01\x01\x03\x01\x02", // 卑
+ 0x5352: "\x04\x01\x03\x04\x03\x04\x01\x02", // 卒
+ 0x5353: "\x02\x01\x02\x05\x01\x01\x01\x02", // 卓
+ 0x5354: "\x01\x02\x05\x03\x05\x03\x05\x03", // 協
+ 0x5355: "\x04\x03\x02\x05\x01\x01\x01\x02", // 单
+ 0x5356: "\x01\x02\x05\x04\x04\x01\x03\x04", // 卖
+ 0x5357: "\x01\x02\x02\x05\x04\x03\x01\x01\x02", // 南
+ 0x5358: "\x04\x04\x03\x02\x05\x01\x01\x01\x02", // 単
+ 0x5359: "\x01\x02\x02\x01\x01\x01\x03\x04\x05\x01\x02", // 卙
+ 0x535a: "\x01\x02\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 博
+ 0x535b: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x01\x02", // 卛
+ 0x535c: "\x02\x04", // 卜
+ 0x535d: "\x02\x01\x02\x01", // 卝
+ 0x535e: "\x04\x01\x02\x04", // 卞
+ 0x535f: "\x02\x05\x01\x02\x04", // 卟
+ 0x5360: "\x02\x01\x02\x05\x01", // 占
+ 0x5361: "\x02\x01\x01\x02\x04", // 卡
+ 0x5362: "\x02\x01\x05\x01\x03", // 卢
+ 0x5363: "\x02\x01\x02\x05\x05\x01\x01", // 卣
+ 0x5364: "\x02\x01\x02\x05\x03\x04\x01", // 卤
+ 0x5365: "\x02\x01\x02\x05\x03\x03\x04\x01", // 卥
+ 0x5366: "\x01\x02\x01\x01\x02\x01\x02\x04", // 卦
+ 0x5367: "\x01\x02\x05\x01\x02\x05\x02\x04", // 卧
+ 0x5368: "\x02\x01\x02\x05\x05\x02\x05\x02\x05\x01", // 卨
+ 0x5369: "\x05\x02", // 卩
+ 0x536a: "\x05\x02\x04", // 卪
+ 0x536b: "\x05\x02\x01", // 卫
+ 0x536c: "\x03\x05\x05\x02", // 卬
+ 0x536d: "\x01\x02\x01\x05\x02", // 卭
+ 0x536e: "\x03\x03\x01\x05\x05", // 卮
+ 0x536f: "\x03\x05\x03\x05\x02", // 卯
+ 0x5370: "\x03\x05\x01\x05\x02", // 印
+ 0x5371: "\x03\x05\x01\x03\x05\x05", // 危
+ 0x5372: "\x05\x03\x02\x05\x01\x05\x02", // 卲
+ 0x5373: "\x05\x01\x01\x05\x04\x05\x02", // 即
+ 0x5374: "\x01\x02\x01\x05\x04\x05\x02", // 却
+ 0x5375: "\x03\x05\x04\x03\x05\x02\x04", // 卵
+ 0x5376: "\x03\x05\x04\x03\x05\x04\x05\x02", // 卶
+ 0x5377: "\x04\x03\x01\x01\x03\x04\x05\x05", // 卷
+ 0x5378: "\x03\x01\x01\x02\x01\x02\x01\x05\x02", // 卸
+ 0x5379: "\x03\x02\x05\x02\x02\x01\x05\x02", // 卹
+ 0x537a: "\x05\x02\x05\x03\x04\x01\x05\x05", // 卺
+ 0x537b: "\x03\x04\x03\x04\x02\x05\x01\x05\x02", // 卻
+ 0x537c: "\x01\x03\x05\x03\x05\x01\x03\x05\x05", // 卼
+ 0x537d: "\x03\x02\x05\x01\x01\x03\x05\x05\x02", // 卽
+ 0x537e: "\x02\x05\x01\x02\x05\x01\x01\x01\x05\x05\x02", // 卾
+ 0x537f: "\x03\x05\x03\x05\x01\x01\x05\x04\x05\x02", // 卿
+ 0x5380: "\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x05\x02", // 厀
+ 0x5381: "\x03\x04\x01\x01\x02\x03\x04\x04\x04\x01\x02\x05\x02", // 厁
+ 0x5382: "\x01\x03", // 厂
+ 0x5383: "\x03\x05\x01\x03", // 厃
+ 0x5384: "\x01\x03\x05\x05", // 厄
+ 0x5385: "\x01\x03\x01\x02", // 厅
+ 0x5386: "\x01\x03\x05\x03", // 历
+ 0x5387: "\x01\x03\x03\x01\x05", // 厇
+ 0x5388: "\x01\x03\x01\x01\x02", // 厈
+ 0x5389: "\x01\x03\x01\x05\x03", // 厉
+ 0x538a: "\x01\x03\x01\x05\x02\x03", // 厊
+ 0x538b: "\x01\x03\x01\x02\x01\x04", // 压
+ 0x538c: "\x01\x03\x01\x03\x04\x04", // 厌
+ 0x538d: "\x01\x03\x01\x05\x01\x02", // 厍
+ 0x538e: "\x01\x03\x03\x05\x01\x05\x04", // 厎
+ 0x538f: "\x01\x03\x03\x01\x02\x01\x01", // 厏
+ 0x5390: "\x01\x03\x01\x03\x05\x03\x04", // 厐
+ 0x5391: "\x01\x03\x02\x05\x01\x03\x05", // 厑
+ 0x5392: "\x01\x03\x03\x01\x01\x02\x05\x02", // 厒
+ 0x5393: "\x01\x03\x01\x02\x01\x01\x02\x01", // 厓
+ 0x5394: "\x01\x03\x01\x05\x04\x01\x02\x01", // 厔
+ 0x5395: "\x01\x03\x02\x05\x03\x04\x02\x02", // 厕
+ 0x5396: "\x01\x03\x01\x03\x05\x03\x03\x03\x04", // 厖
+ 0x5397: "\x01\x03\x04\x01\x04\x03\x01\x01\x02", // 厗
+ 0x5398: "\x01\x03\x02\x05\x01\x01\x02\x01\x01", // 厘
+ 0x5399: "\x01\x03\x01\x02\x05\x01\x01\x01\x02", // 厙
+ 0x539a: "\x01\x03\x02\x05\x01\x01\x05\x02\x01", // 厚
+ 0x539b: "\x01\x03\x02\x05\x01\x03\x03\x01\x02", // 厛
+ 0x539c: "\x01\x03\x03\x01\x02\x01\x02\x02\x01\x01", // 厜
+ 0x539d: "\x01\x03\x01\x02\x02\x01\x02\x05\x01\x01", // 厝
+ 0x539e: "\x01\x03\x02\x01\x01\x01\x02\x01\x01\x01", // 厞
+ 0x539f: "\x01\x03\x03\x02\x05\x01\x01\x02\x03\x04", // 原
+ 0x53a0: "\x01\x03\x02\x05\x01\x01\x01\x03\x04\x02\x02", // 厠
+ 0x53a1: "\x01\x03\x03\x02\x05\x01\x01\x02\x05\x03\x04", // 厡
+ 0x53a2: "\x01\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 厢
+ 0x53a3: "\x01\x03\x01\x03\x04\x04\x02\x05\x01\x01\x02", // 厣
+ 0x53a4: "\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04", // 厤
+ 0x53a5: "\x01\x03\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04", // 厥
+ 0x53a6: "\x01\x03\x01\x03\x02\x05\x01\x01\x01\x03\x05\x04", // 厦
+ 0x53a7: "\x01\x03\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 厧
+ 0x53a8: "\x01\x03\x01\x02\x05\x01\x04\x03\x01\x01\x02\x04", // 厨
+ 0x53a9: "\x01\x03\x05\x01\x01\x05\x04\x01\x05\x03\x05", // 厩
+ 0x53aa: "\x01\x03\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01", // 厪
+ 0x53ab: "\x01\x03\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04", // 厫
+ 0x53ac: "\x01\x03\x02\x05\x01\x01\x03\x05\x04\x02\x04\x02\x05\x01", // 厬
+ 0x53ad: "\x01\x03\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x04\x04", // 厭
+ 0x53ae: "\x01\x03\x01\x02\x02\x01\x01\x01\x03\x04\x03\x03\x01\x02", // 厮
+ 0x53af: "\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x05\x04\x04", // 厯
+ 0x53b0: "\x01\x03\x02\x04\x03\x02\x05\x02\x05\x01\x03\x01\x03\x04", // 厰
+ 0x53b1: "\x01\x03\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 厱
+ 0x53b2: "\x01\x03\x01\x02\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 厲
+ 0x53b3: "\x04\x04\x03\x01\x03\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 厳
+ 0x53b4: "\x01\x03\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x04\x04\x02\x05\x01\x01\x02", // 厴
+ 0x53b5: "\x01\x03\x03\x02\x05\x01\x01\x02\x03\x04\x01\x03\x03\x02\x05\x01\x01\x02\x03\x04\x01\x03\x03\x02\x05\x01\x01\x02\x03\x04", // 厵
+ 0x53b6: "\x05\x04", // 厶
+ 0x53b7: "\x01\x03\x05\x04", // 厷
+ 0x53b8: "\x05\x04\x05\x04", // 厸
+ 0x53b9: "\x03\x05\x05\x04", // 厹
+ 0x53ba: "\x01\x03\x04\x05\x04", // 厺
+ 0x53bb: "\x01\x02\x01\x05\x04", // 去
+ 0x53bc: "\x05\x04\x02\x03\x04", // 厼
+ 0x53bd: "\x05\x04\x05\x04\x05\x04", // 厽
+ 0x53be: "\x05\x01\x02\x01\x05\x04", // 厾
+ 0x53bf: "\x02\x05\x01\x01\x01\x05\x04", // 县
+ 0x53c0: "\x01\x02\x05\x01\x01\x02\x05\x04", // 叀
+ 0x53c1: "\x05\x04\x01\x03\x04\x01\x01\x01", // 叁
+ 0x53c2: "\x05\x04\x01\x03\x04\x03\x03\x03", // 参
+ 0x53c3: "\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 參
+ 0x53c4: "\x05\x04\x05\x04\x05\x04\x03\x04\x01\x01\x01", // 叄
+ 0x53c5: "\x05\x04\x05\x04\x05\x04\x03\x04\x02\x04\x04\x04", // 叅
+ 0x53c6: "\x01\x01\x05\x04\x03\x04\x04\x03\x04\x05\x01\x03\x05\x04", // 叆
+ 0x53c7: "\x01\x01\x05\x04\x05\x01\x01\x02\x04\x01\x03\x04\x04\x05\x04", // 叇
+ 0x53c8: "\x05\x04", // 又
+ 0x53c9: "\x05\x04\x04", // 叉
+ 0x53ca: "\x03\x05\x04", // 及
+ 0x53cb: "\x01\x03\x05\x04", // 友
+ 0x53cc: "\x05\x04\x05\x04", // 双
+ 0x53cd: "\x03\x03\x05\x04", // 反
+ 0x53ce: "\x05\x02\x05\x04", // 収
+ 0x53cf: "\x05\x01\x02\x05\x04", // 叏
+ 0x53d0: "\x03\x01\x03\x05\x04", // 叐
+ 0x53d1: "\x05\x03\x05\x04\x04", // 发
+ 0x53d2: "\x05\x04\x05\x04\x05\x04", // 叒
+ 0x53d3: "\x01\x02\x05\x01\x02\x05\x04", // 叓
+ 0x53d4: "\x02\x01\x01\x02\x03\x04\x05\x04", // 叔
+ 0x53d5: "\x05\x04\x05\x04\x05\x04\x05\x04", // 叕
+ 0x53d6: "\x01\x02\x02\x01\x01\x01\x05\x04", // 取
+ 0x53d7: "\x03\x04\x04\x03\x04\x05\x05\x04", // 受
+ 0x53d8: "\x04\x01\x02\x02\x03\x04\x05\x04", // 变
+ 0x53d9: "\x03\x04\x01\x01\x02\x03\x04\x05\x04", // 叙
+ 0x53da: "\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 叚
+ 0x53db: "\x04\x03\x01\x01\x03\x03\x03\x05\x04", // 叛
+ 0x53dc: "\x04\x04\x05\x04\x03\x03\x04\x05\x04", // 叜
+ 0x53dd: "\x01\x02\x01\x05\x04\x05\x02\x05\x04", // 叝
+ 0x53de: "\x05\x01\x03\x01\x01\x02\x03\x04\x05\x04", // 叞
+ 0x53df: "\x03\x02\x01\x05\x01\x01\x02\x05\x04", // 叟
+ 0x53e0: "\x05\x04\x05\x04\x05\x04\x04\x05\x02\x05\x01\x01\x01", // 叠
+ 0x53e1: "\x02\x01\x04\x05\x01\x03\x04\x03\x04\x02\x05\x01\x01\x01\x05\x04", // 叡
+ 0x53e2: "\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x02\x02\x01\x01\x01\x05\x04", // 叢
+ 0x53e3: "\x02\x05\x01", // 口
+ 0x53e4: "\x01\x02\x02\x05\x01", // 古
+ 0x53e5: "\x03\x05\x02\x05\x01", // 句
+ 0x53e6: "\x02\x05\x01\x05\x03", // 另
+ 0x53e7: "\x02\x05\x01\x05\x03", // 叧
+ 0x53e8: "\x02\x05\x01\x05\x03", // 叨
+ 0x53e9: "\x02\x05\x01\x05\x02", // 叩
+ 0x53ea: "\x02\x05\x01\x03\x04", // 只
+ 0x53eb: "\x02\x05\x01\x05\x02", // 叫
+ 0x53ec: "\x05\x03\x02\x05\x01", // 召
+ 0x53ed: "\x02\x05\x01\x03\x04", // 叭
+ 0x53ee: "\x02\x05\x01\x01\x02", // 叮
+ 0x53ef: "\x01\x02\x05\x01\x02", // 可
+ 0x53f0: "\x05\x04\x02\x05\x01", // 台
+ 0x53f1: "\x02\x05\x01\x03\x05", // 叱
+ 0x53f2: "\x02\x05\x01\x03\x04", // 史
+ 0x53f3: "\x01\x03\x02\x05\x01", // 右
+ 0x53f4: "\x03\x05\x02\x05\x01", // 叴
+ 0x53f5: "\x01\x02\x05\x01\x05", // 叵
+ 0x53f6: "\x02\x05\x01\x01\x02", // 叶
+ 0x53f7: "\x02\x05\x01\x01\x05", // 号
+ 0x53f8: "\x05\x01\x02\x05\x01", // 司
+ 0x53f9: "\x02\x05\x01\x05\x04", // 叹
+ 0x53fa: "\x02\x05\x01\x03\x04", // 叺
+ 0x53fb: "\x02\x05\x01\x05\x03", // 叻
+ 0x53fc: "\x02\x05\x01\x05\x01", // 叼
+ 0x53fd: "\x02\x05\x01\x03\x05", // 叽
+ 0x53fe: "\x05\x02\x02\x05\x01", // 叾
+ 0x53ff: "\x02\x05\x01\x01\x02\x01", // 叿
+ 0x5400: "\x02\x05\x01\x03\x01\x02", // 吀
+ 0x5401: "\x02\x05\x01\x01\x01\x02", // 吁
+ 0x5402: "\x04\x01\x05\x02\x05\x01", // 吂
+ 0x5403: "\x02\x05\x01\x03\x01\x05", // 吃
+ 0x5404: "\x03\x05\x04\x02\x05\x01", // 各
+ 0x5405: "\x02\x05\x01\x02\x05\x01", // 吅
+ 0x5406: "\x02\x05\x01\x05\x05\x04", // 吆
+ 0x5407: "\x02\x05\x01\x05\x02\x01", // 吇
+ 0x5408: "\x03\x04\x01\x02\x05\x01", // 合
+ 0x5409: "\x01\x02\x01\x02\x05\x01", // 吉
+ 0x540a: "\x02\x05\x01\x02\x05\x02", // 吊
+ 0x540b: "\x02\x05\x01\x01\x02\x04", // 吋
+ 0x540c: "\x02\x05\x01\x02\x05\x01", // 同
+ 0x540d: "\x03\x05\x04\x02\x05\x01", // 名
+ 0x540e: "\x03\x03\x01\x02\x05\x01", // 后
+ 0x540f: "\x01\x02\x05\x01\x03\x04", // 吏
+ 0x5410: "\x02\x05\x01\x01\x02\x01", // 吐
+ 0x5411: "\x03\x02\x05\x02\x05\x01", // 向
+ 0x5412: "\x02\x05\x01\x03\x01\x05", // 吒
+ 0x5413: "\x02\x05\x01\x01\x02\x04", // 吓
+ 0x5414: "\x02\x05\x01\x05\x02\x05", // 吔
+ 0x5415: "\x02\x05\x01\x02\x05\x01", // 吕
+ 0x5416: "\x02\x05\x01\x04\x03\x02", // 吖
+ 0x5417: "\x02\x05\x01\x05\x05\x01", // 吗
+ 0x5418: "\x02\x05\x01\x03\x01\x01\x02", // 吘
+ 0x5419: "\x02\x05\x01\x04\x03\x03\x04", // 吙
+ 0x541a: "\x02\x05\x01\x05\x01\x01\x03", // 吚
+ 0x541b: "\x05\x01\x01\x03\x02\x05\x01", // 君
+ 0x541c: "\x02\x05\x01\x05\x02\x01\x01", // 吜
+ 0x541d: "\x04\x01\x03\x04\x02\x05\x01", // 吝
+ 0x541e: "\x01\x01\x03\x04\x02\x05\x01", // 吞
+ 0x541f: "\x02\x05\x01\x03\x04\x04\x05", // 吟
+ 0x5420: "\x02\x05\x01\x01\x03\x04\x04", // 吠
+ 0x5421: "\x02\x05\x01\x01\x05\x03\x05", // 吡
+ 0x5422: "\x04\x05\x04\x04\x02\x05\x01", // 吢
+ 0x5423: "\x02\x05\x01\x04\x05\x04\x04", // 吣
+ 0x5424: "\x02\x05\x01\x03\x04\x03\x02", // 吤
+ 0x5425: "\x02\x05\x01\x01\x03\x02\x04", // 吥
+ 0x5426: "\x01\x03\x02\x04\x02\x05\x01", // 否
+ 0x5427: "\x02\x05\x01\x05\x02\x01\x05", // 吧
+ 0x5428: "\x02\x05\x01\x01\x05\x02\x05", // 吨
+ 0x5429: "\x02\x05\x01\x03\x04\x05\x03", // 吩
+ 0x542a: "\x02\x05\x01\x03\x02\x03\x05", // 吪
+ 0x542b: "\x03\x04\x04\x05\x02\x05\x01", // 含
+ 0x542c: "\x02\x05\x01\x03\x03\x01\x02", // 听
+ 0x542d: "\x02\x05\x01\x04\x01\x03\x05", // 吭
+ 0x542e: "\x02\x05\x01\x05\x04\x03\x05", // 吮
+ 0x542f: "\x04\x05\x01\x03\x02\x05\x01", // 启
+ 0x5430: "\x02\x05\x01\x01\x03\x05\x04", // 吰
+ 0x5431: "\x02\x05\x01\x01\x02\x05\x04", // 吱
+ 0x5432: "\x02\x05\x01\x05\x01\x05\x02", // 吲
+ 0x5433: "\x02\x05\x01\x05\x01\x03\x04", // 吳
+ 0x5434: "\x02\x05\x01\x01\x01\x03\x04", // 吴
+ 0x5435: "\x02\x05\x01\x02\x03\x04\x03", // 吵
+ 0x5436: "\x02\x05\x01\x02\x05\x03\x04", // 吶
+ 0x5437: "\x02\x05\x01\x05\x01\x03\x04", // 吷
+ 0x5438: "\x02\x05\x01\x03\x05\x04", // 吸
+ 0x5439: "\x02\x05\x01\x03\x05\x03\x04", // 吹
+ 0x543a: "\x02\x05\x01\x03\x05\x05\x04", // 吺
+ 0x543b: "\x02\x05\x01\x03\x05\x03\x03", // 吻
+ 0x543c: "\x02\x05\x01\x05\x02\x01\x05", // 吼
+ 0x543d: "\x02\x05\x01\x03\x01\x01\x02", // 吽
+ 0x543e: "\x01\x02\x05\x01\x02\x05\x01", // 吾
+ 0x543f: "\x03\x01\x01\x02\x02\x05\x01", // 吿
+ 0x5440: "\x02\x05\x01\x01\x05\x02\x03", // 呀
+ 0x5441: "\x02\x05\x01\x03\x05\x04\x01", // 呁
+ 0x5442: "\x02\x05\x01\x03\x02\x05\x01", // 呂
+ 0x5443: "\x02\x05\x01\x01\x03\x05\x05", // 呃
+ 0x5444: "\x05\x03\x01\x02\x02\x05\x01", // 呄
+ 0x5445: "\x02\x05\x01\x04\x01\x03\x04", // 呅
+ 0x5446: "\x02\x05\x01\x01\x02\x03\x04", // 呆
+ 0x5447: "\x02\x05\x03\x04\x02\x05\x01", // 呇
+ 0x5448: "\x02\x05\x01\x01\x01\x02\x01", // 呈
+ 0x5449: "\x02\x05\x01\x05\x01\x03\x04", // 呉
+ 0x544a: "\x03\x01\x02\x01\x02\x05\x01", // 告
+ 0x544b: "\x02\x05\x01\x01\x01\x03\x04", // 呋
+ 0x544c: "\x02\x05\x01\x04\x04\x01\x02", // 呌
+ 0x544d: "\x02\x05\x01\x01\x01\x05\x04", // 呍
+ 0x544e: "\x02\x05\x01\x05\x01\x03\x04", // 呎
+ 0x544f: "\x02\x05\x01\x03\x01\x03\x02", // 呏
+ 0x5450: "\x02\x05\x01\x02\x05\x03\x04", // 呐
+ 0x5451: "\x03\x01\x03\x04\x02\x05\x01", // 呑
+ 0x5452: "\x02\x05\x01\x01\x01\x03\x05", // 呒
+ 0x5453: "\x02\x05\x01\x01\x02\x02\x05", // 呓
+ 0x5454: "\x02\x05\x01\x01\x03\x04\x04", // 呔
+ 0x5455: "\x02\x05\x01\x01\x03\x04\x05", // 呕
+ 0x5456: "\x02\x05\x01\x01\x03\x05\x03", // 呖
+ 0x5457: "\x02\x05\x01\x02\x05\x03\x04", // 呗
+ 0x5458: "\x02\x05\x01\x02\x05\x03\x04", // 员
+ 0x5459: "\x02\x05\x01\x02\x05\x03\x04", // 呙
+ 0x545a: "\x02\x05\x01\x03\x01\x03\x04", // 呚
+ 0x545b: "\x02\x05\x01\x03\x04\x05\x05", // 呛
+ 0x545c: "\x02\x05\x01\x03\x05\x05\x01", // 呜
+ 0x545d: "\x02\x05\x01\x04\x05\x01\x03\x05", // 呝
+ 0x545e: "\x02\x05\x01\x05\x01\x02\x05\x01", // 呞
+ 0x545f: "\x02\x05\x01\x04\x01\x05\x05\x04", // 呟
+ 0x5460: "\x02\x05\x01\x01\x02\x03\x04\x01", // 呠
+ 0x5461: "\x02\x05\x01\x05\x01\x05\x01\x05", // 呡
+ 0x5462: "\x02\x05\x01\x05\x01\x03\x03\x05", // 呢
+ 0x5463: "\x02\x05\x01\x05\x05\x04\x01\x04", // 呣
+ 0x5464: "\x02\x05\x01\x03\x04\x04\x05\x04", // 呤
+ 0x5465: "\x02\x05\x01\x02\x05\x02\x01\x01", // 呥
+ 0x5466: "\x02\x05\x01\x05\x05\x04\x05\x03", // 呦
+ 0x5467: "\x02\x05\x01\x03\x05\x01\x05\x04", // 呧
+ 0x5468: "\x03\x05\x01\x02\x01\x02\x05\x01", // 周
+ 0x5469: "\x02\x05\x01\x01\x01\x02\x03\x04", // 呩
+ 0x546a: "\x02\x05\x01\x02\x05\x01\x03\x05", // 呪
+ 0x546b: "\x02\x05\x01\x02\x01\x02\x05\x01", // 呫
+ 0x546c: "\x02\x05\x01\x02\x05\x03\x05\x01", // 呬
+ 0x546d: "\x02\x05\x01\x01\x02\x02\x01\x05", // 呭
+ 0x546e: "\x02\x05\x01\x02\x05\x01\x03\x04", // 呮
+ 0x546f: "\x02\x05\x01\x01\x04\x03\x01\x02", // 呯
+ 0x5470: "\x02\x01\x02\x01\x03\x05\x02\x05\x01", // 呰
+ 0x5471: "\x02\x05\x01\x03\x03\x05\x04\x04", // 呱
+ 0x5472: "\x02\x05\x01\x02\x01\x02\x01\x03\x05", // 呲
+ 0x5473: "\x02\x05\x01\x01\x01\x02\x03\x04", // 味
+ 0x5474: "\x02\x05\x01\x03\x05\x02\x05\x01", // 呴
+ 0x5475: "\x02\x05\x01\x01\x02\x05\x01\x02", // 呵
+ 0x5476: "\x02\x05\x01\x05\x03\x01\x05\x04", // 呶
+ 0x5477: "\x02\x05\x01\x02\x05\x01\x01\x02", // 呷
+ 0x5478: "\x02\x05\x01\x01\x03\x02\x04\x01", // 呸
+ 0x5479: "\x02\x05\x01\x03\x01\x01\x03\x04", // 呹
+ 0x547a: "\x02\x05\x01\x02\x05\x01\x01\x05", // 呺
+ 0x547b: "\x02\x05\x01\x02\x05\x01\x01\x02", // 呻
+ 0x547c: "\x02\x05\x01\x03\x04\x03\x01\x02", // 呼
+ 0x547d: "\x03\x04\x01\x02\x05\x01\x05\x02", // 命
+ 0x547e: "\x02\x05\x01\x02\x05\x01\x01\x01", // 呾
+ 0x547f: "\x02\x05\x01\x01\x02\x01\x05\x04", // 呿
+ 0x5480: "\x02\x05\x01\x02\x05\x01\x01\x01", // 咀
+ 0x5481: "\x02\x05\x01\x01\x02\x02\x01\x01", // 咁
+ 0x5482: "\x02\x05\x01\x01\x02\x05\x02\x05", // 咂
+ 0x5483: "\x02\x05\x01\x03\x02\x05\x02\x05", // 咃
+ 0x5484: "\x02\x05\x01\x05\x02\x02\x05\x02", // 咄
+ 0x5485: "\x04\x01\x04\x03\x01\x02\x05\x01", // 咅
+ 0x5486: "\x02\x05\x01\x03\x05\x05\x01\x05", // 咆
+ 0x5487: "\x02\x05\x01\x04\x05\x04\x03\x04", // 咇
+ 0x5488: "\x02\x05\x01\x05\x01\x05\x03\x02", // 咈
+ 0x5489: "\x02\x05\x01\x02\x05\x01\x03\x04", // 咉
+ 0x548a: "\x02\x05\x01\x03\x01\x02\x03\x04", // 咊
+ 0x548b: "\x02\x05\x01\x03\x01\x02\x01\x01", // 咋
+ 0x548c: "\x03\x01\x02\x03\x04\x02\x05\x01", // 和
+ 0x548d: "\x02\x05\x01\x05\x04\x02\x05\x01", // 咍
+ 0x548e: "\x03\x05\x04\x02\x04\x02\x05\x01", // 咎
+ 0x548f: "\x02\x05\x01\x04\x05\x05\x03\x04", // 咏
+ 0x5490: "\x02\x05\x01\x03\x02\x01\x02\x04", // 咐
+ 0x5491: "\x02\x05\x01\x01\x02\x01\x01\x02", // 咑
+ 0x5492: "\x02\x05\x01\x02\x05\x01\x03\x05", // 咒
+ 0x5493: "\x02\x05\x01\x01\x05\x05\x04", // 咓
+ 0x5494: "\x02\x05\x01\x02\x01\x01\x02\x04", // 咔
+ 0x5495: "\x02\x05\x01\x01\x02\x02\x05\x01", // 咕
+ 0x5496: "\x02\x05\x01\x05\x03\x02\x05\x01", // 咖
+ 0x5497: "\x02\x05\x01\x01\x03\x01\x02\x01", // 咗
+ 0x5498: "\x02\x05\x01\x01\x03\x02\x05\x02", // 咘
+ 0x5499: "\x02\x05\x01\x01\x03\x05\x03\x04", // 咙
+ 0x549a: "\x02\x05\x01\x03\x05\x04\x04\x04", // 咚
+ 0x549b: "\x02\x05\x01\x04\x04\x05\x01\x02", // 咛
+ 0x549c: "\x02\x05\x01\x04\x04\x05\x03\x05", // 咜
+ 0x549d: "\x02\x05\x01\x05\x05\x05\x05\x01", // 咝
+ 0x549e: "\x02\x05\x01\x01\x01\x03\x02", // 咞
+ 0x549f: "\x02\x05\x01\x01\x03\x02\x05\x01\x01", // 咟
+ 0x54a0: "\x02\x05\x01\x01\x02\x02\x01\x01\x01", // 咠
+ 0x54a1: "\x02\x05\x01\x01\x02\x02\x01\x01\x01", // 咡
+ 0x54a2: "\x02\x05\x01\x02\x05\x01\x01\x01\x05", // 咢
+ 0x54a3: "\x02\x05\x01\x02\x04\x03\x01\x03\x05", // 咣
+ 0x54a4: "\x02\x05\x01\x04\x04\x05\x03\x01\x05", // 咤
+ 0x54a5: "\x02\x05\x01\x01\x05\x04\x01\x02\x01", // 咥
+ 0x54a6: "\x02\x05\x01\x01\x05\x01\x05\x03\x04", // 咦
+ 0x54a7: "\x02\x05\x01\x01\x03\x05\x04\x02\x02", // 咧
+ 0x54a8: "\x04\x01\x03\x05\x03\x04\x02\x05\x01", // 咨
+ 0x54a9: "\x02\x05\x01\x04\x03\x01\x01\x01\x02", // 咩
+ 0x54aa: "\x02\x05\x01\x04\x03\x01\x02\x03\x04", // 咪
+ 0x54ab: "\x05\x01\x03\x04\x02\x05\x01\x03\x04", // 咫
+ 0x54ac: "\x02\x05\x01\x04\x01\x03\x04\x03\x04", // 咬
+ 0x54ad: "\x02\x05\x01\x01\x02\x01\x02\x05\x01", // 咭
+ 0x54ae: "\x02\x05\x01\x03\x01\x01\x02\x03\x04", // 咮
+ 0x54af: "\x02\x05\x01\x03\x05\x04\x02\x05\x01", // 咯
+ 0x54b0: "\x02\x05\x01\x03\x05\x02\x05\x01\x01", // 咰
+ 0x54b1: "\x02\x05\x01\x03\x02\x05\x01\x01\x01", // 咱
+ 0x54b2: "\x02\x05\x01\x04\x03\x01\x01\x03\x04", // 咲
+ 0x54b3: "\x02\x05\x01\x04\x01\x05\x03\x03\x04", // 咳
+ 0x54b4: "\x02\x05\x01\x01\x03\x04\x03\x03\x04", // 咴
+ 0x54b5: "\x02\x05\x01\x01\x03\x04\x01\x01\x05", // 咵
+ 0x54b6: "\x02\x05\x01\x03\x01\x02\x02\x05\x01", // 咶
+ 0x54b7: "\x02\x05\x01\x03\x04\x01\x05\x03\x04", // 咷
+ 0x54b8: "\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 咸
+ 0x54b9: "\x02\x05\x01\x04\x04\x05\x05\x03\x01", // 咹
+ 0x54ba: "\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 咺
+ 0x54bb: "\x02\x05\x01\x03\x02\x01\x02\x03\x04", // 咻
+ 0x54bc: "\x02\x05\x05\x02\x05\x02\x05\x01", // 咼
+ 0x54bd: "\x02\x05\x01\x02\x05\x01\x03\x04\x01", // 咽
+ 0x54be: "\x02\x05\x01\x01\x02\x01\x03\x03\x05", // 咾
+ 0x54bf: "\x02\x05\x01\x03\x02\x05\x01\x01\x03", // 咿
+ 0x54c0: "\x04\x01\x02\x05\x01\x03\x05\x03\x04", // 哀
+ 0x54c1: "\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 品
+ 0x54c2: "\x02\x05\x01\x01\x02\x05\x03\x05\x01", // 哂
+ 0x54c3: "\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 哃
+ 0x54c4: "\x02\x05\x01\x01\x02\x02\x01\x03\x04", // 哄
+ 0x54c5: "\x02\x05\x01\x03\x05\x03\x04\x05\x02", // 哅
+ 0x54c6: "\x02\x05\x01\x03\x05\x04\x03\x05\x04", // 哆
+ 0x54c7: "\x02\x05\x01\x01\x02\x01\x01\x02\x01", // 哇
+ 0x54c8: "\x02\x05\x01\x03\x04\x01\x02\x05\x01", // 哈
+ 0x54c9: "\x01\x02\x01\x02\x05\x01\x05\x03\x04", // 哉
+ 0x54ca: "\x02\x05\x01\x01\x03\x02\x05\x01\x01", // 哊
+ 0x54cb: "\x02\x05\x01\x01\x02\x01\x05\x02\x05", // 哋
+ 0x54cc: "\x02\x05\x01\x03\x03\x03\x05\x03\x04", // 哌
+ 0x54cd: "\x02\x05\x01\x03\x02\x05\x02\x05\x01", // 响
+ 0x54ce: "\x02\x05\x01\x01\x02\x02\x03\x04", // 哎
+ 0x54cf: "\x02\x05\x01\x05\x01\x01\x05\x03\x04", // 哏
+ 0x54d0: "\x02\x05\x01\x01\x01\x01\x02\x01\x05", // 哐
+ 0x54d1: "\x02\x05\x01\x01\x02\x02\x04\x03\x01", // 哑
+ 0x54d2: "\x02\x05\x01\x01\x03\x04\x04\x05\x04", // 哒
+ 0x54d3: "\x02\x05\x01\x01\x05\x03\x01\x03\x05", // 哓
+ 0x54d4: "\x02\x05\x01\x01\x05\x03\x05\x01\x02", // 哔
+ 0x54d5: "\x02\x05\x01\x02\x05\x02\x03\x05\x04", // 哕
+ 0x54d6: "\x02\x05\x01\x03\x01\x01\x02\x01\x02", // 哖
+ 0x54d7: "\x02\x05\x01\x03\x02\x03\x05\x01\x02", // 哗
+ 0x54d8: "\x02\x05\x01\x03\x03\x02\x01\x01\x02", // 哘
+ 0x54d9: "\x02\x05\x01\x03\x04\x01\x01\x05\x04", // 哙
+ 0x54da: "\x02\x05\x01\x03\x05\x01\x02\x03\x04", // 哚
+ 0x54db: "\x02\x05\x01\x03\x05\x03\x04\x05\x03", // 哛
+ 0x54dc: "\x02\x05\x01\x04\x01\x03\x04\x03\x02", // 哜
+ 0x54dd: "\x02\x05\x01\x04\x05\x03\x05\x03\x04", // 哝
+ 0x54de: "\x02\x05\x01\x05\x04\x03\x01\x01\x02", // 哞
+ 0x54df: "\x02\x05\x01\x05\x05\x01\x03\x05\x04", // 哟
+ 0x54e0: "\x02\x05\x01\x03\x01\x02\x01\x02\x05\x01", // 哠
+ 0x54e1: "\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 員
+ 0x54e2: "\x02\x05\x01\x01\x01\x02\x01\x01\x03\x02", // 哢
+ 0x54e3: "\x02\x05\x01\x01\x02\x05\x01\x04\x03\x01", // 哣
+ 0x54e4: "\x02\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 哤
+ 0x54e5: "\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02", // 哥
+ 0x54e6: "\x02\x05\x01\x03\x01\x02\x01\x05\x03\x04", // 哦
+ 0x54e7: "\x02\x05\x01\x01\x02\x01\x03\x02\x03\x04", // 哧
+ 0x54e8: "\x02\x05\x01\x02\x04\x03\x02\x05\x01\x01", // 哨
+ 0x54e9: "\x02\x05\x01\x02\x05\x01\x01\x02\x01\x01", // 哩
+ 0x54ea: "\x02\x05\x01\x05\x01\x01\x03\x05\x02", // 哪
+ 0x54eb: "\x02\x05\x01\x02\x05\x01\x02\x01\x03\x04", // 哫
+ 0x54ec: "\x02\x05\x01\x03\x02\x01\x02\x05\x01\x02", // 哬
+ 0x54ed: "\x02\x05\x01\x02\x05\x01\x01\x03\x04\x04", // 哭
+ 0x54ee: "\x02\x05\x01\x01\x02\x01\x03\x05\x02\x01", // 哮
+ 0x54ef: "\x02\x05\x01\x02\x05\x01\x01\x01\x03\x05", // 哯
+ 0x54f0: "\x02\x05\x01\x04\x04\x05\x03\x01\x01\x02", // 哰
+ 0x54f1: "\x02\x05\x01\x01\x02\x04\x05\x05\x02\x01", // 哱
+ 0x54f2: "\x01\x02\x01\x03\x03\x01\x02\x02\x05\x01", // 哲
+ 0x54f3: "\x02\x05\x01\x01\x02\x01\x03\x03\x01\x02", // 哳
+ 0x54f4: "\x02\x05\x01\x04\x05\x01\x01\x05\x03\x04", // 哴
+ 0x54f5: "\x02\x05\x01\x02\x05\x01\x05\x03\x02\x02", // 哵
+ 0x54f6: "\x02\x05\x01\x02\x01\x02\x01\x01\x01\x02", // 哶
+ 0x54f7: "\x02\x05\x01\x03\x04\x04\x03\x01\x02\x04", // 哷
+ 0x54f8: "\x02\x05\x01\x03\x04\x04\x03\x05\x03\x01", // 哸
+ 0x54f9: "\x02\x05\x01\x03\x04\x04\x03\x05\x02\x01", // 哹
+ 0x54fa: "\x02\x05\x01\x01\x02\x05\x01\x01\x02\x04", // 哺
+ 0x54fb: "\x02\x05\x01\x02\x05\x01\x01\x01\x01\x02", // 哻
+ 0x54fc: "\x02\x05\x01\x04\x01\x02\x05\x01\x05\x02", // 哼
+ 0x54fd: "\x02\x05\x01\x01\x02\x05\x01\x01\x03\x04", // 哽
+ 0x54fe: "\x02\x05\x01\x04\x03\x02\x05\x01\x03\x05", // 哾
+ 0x54ff: "\x05\x03\x02\x05\x01\x01\x02\x05\x01\x02", // 哿
+ 0x5500: "\x02\x05\x01\x03\x01\x02\x03\x04\x05\x03", // 唀
+ 0x5501: "\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01", // 唁
+ 0x5502: "\x02\x05\x01\x03\x04\x03\x04\x02\x05\x01", // 唂
+ 0x5503: "\x02\x05\x01\x03\x05\x03\x05\x01\x01\x02", // 唃
+ 0x5504: "\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 唄
+ 0x5505: "\x02\x05\x01\x03\x04\x04\x05\x02\x05\x01", // 唅
+ 0x5506: "\x02\x05\x01\x05\x04\x03\x04\x03\x05\x04", // 唆
+ 0x5507: "\x01\x03\x01\x01\x05\x03\x04\x02\x05\x01", // 唇
+ 0x5508: "\x02\x05\x01\x02\x05\x01\x05\x02\x01\x05", // 唈
+ 0x5509: "\x02\x05\x01\x05\x04\x03\x01\x01\x03\x04", // 唉
+ 0x550a: "\x02\x05\x01\x01\x03\x04\x03\x04\x03\x04", // 唊
+ 0x550b: "\x02\x05\x01\x03\x04\x01\x01\x02\x03\x04", // 唋
+ 0x550c: "\x02\x05\x01\x03\x02\x01\x05\x05\x04", // 唌
+ 0x550d: "\x02\x05\x01\x04\x04\x05\x01\x01\x03\x05", // 唍
+ 0x550e: "\x02\x05\x01\x03\x01\x02\x03\x04\x02\x02", // 唎
+ 0x550f: "\x02\x05\x01\x03\x04\x01\x03\x02\x05\x02", // 唏
+ 0x5510: "\x04\x01\x03\x05\x01\x01\x02\x02\x05\x01", // 唐
+ 0x5511: "\x02\x05\x01\x03\x04\x03\x04\x01\x02\x01", // 唑
+ 0x5512: "\x02\x05\x01\x01\x02\x05\x03\x05\x01\x01", // 唒
+ 0x5513: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02", // 唓
+ 0x5514: "\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01", // 唔
+ 0x5515: "\x02\x05\x01\x03\x02\x05\x01\x01\x01\x02", // 唕
+ 0x5516: "\x02\x05\x01\x01\x02\x05\x01\x02\x02\x01", // 唖
+ 0x5517: "\x02\x05\x01\x01\x02\x01\x02\x01\x03\x04", // 唗
+ 0x5518: "\x01\x03\x02\x05\x01\x05\x04\x02\x05\x01", // 唘
+ 0x5519: "\x02\x05\x01\x03\x05\x03\x04\x03\x03\x04", // 唙
+ 0x551a: "\x02\x05\x01\x05\x01\x01\x04\x05\x05\x04", // 唚
+ 0x551b: "\x02\x05\x01\x01\x01\x02\x01\x03\x05\x04", // 唛
+ 0x551c: "\x01\x01\x02\x03\x04\x02\x05\x01\x03\x05", // 唜
+ 0x551d: "\x02\x05\x01\x01\x02\x01\x02\x05\x03\x04", // 唝
+ 0x551e: "\x02\x05\x01\x01\x02\x01\x04\x04\x01\x02", // 唞
+ 0x551f: "\x01\x02\x01\x05\x04\x02\x05\x01\x03\x05", // 唟
+ 0x5520: "\x02\x05\x01\x01\x02\x02\x04\x05\x05\x03", // 唠
+ 0x5521: "\x02\x05\x01\x01\x02\x05\x03\x04\x03\x04", // 唡
+ 0x5522: "\x02\x05\x01\x02\x04\x03\x02\x05\x03\x04", // 唢
+ 0x5523: "\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05", // 唣
+ 0x5524: "\x02\x05\x01\x03\x05\x02\x05\x01\x03\x04", // 唤
+ 0x5525: "\x02\x05\x01\x04\x01\x03\x04\x04\x05\x04", // 唥
+ 0x5526: "\x02\x05\x01\x04\x04\x01\x02\x03\x04\x03", // 唦
+ 0x5527: "\x02\x05\x01\x05\x01\x01\x05\x04\x05\x02", // 唧
+ 0x5528: "\x02\x05\x01\x05\x02\x02\x05\x01\x01\x01", // 唨
+ 0x5529: "\x02\x05\x01\x03\x01\x02\x03\x04\x05\x03\x01", // 唩
+ 0x552a: "\x02\x05\x01\x01\x01\x01\x03\x04\x01\x01\x02", // 唪
+ 0x552b: "\x02\x05\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 唫
+ 0x552c: "\x02\x05\x01\x02\x01\x05\x03\x01\x05\x03\x05", // 唬
+ 0x552d: "\x02\x05\x01\x01\x02\x02\x01\x01\x01\x03\x04", // 唭
+ 0x552e: "\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x01", // 售
+ 0x552f: "\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 唯
+ 0x5530: "\x02\x05\x01\x05\x01\x03\x02\x05\x02\x02\x02", // 唰
+ 0x5531: "\x02\x05\x01\x02\x05\x01\x01\x02\x05\x01\x01", // 唱
+ 0x5532: "\x02\x05\x01\x03\x02\x01\x05\x01\x01\x03\x05", // 唲
+ 0x5533: "\x02\x05\x01\x04\x05\x01\x03\x01\x03\x04\x04", // 唳
+ 0x5534: "\x02\x05\x01\x04\x03\x01\x01\x01\x03\x05", // 唴
+ 0x5535: "\x02\x05\x01\x01\x03\x04\x02\x05\x01\x01\x05", // 唵
+ 0x5536: "\x02\x05\x01\x01\x02\x02\x01\x02\x05\x01\x01", // 唶
+ 0x5537: "\x02\x05\x01\x04\x01\x05\x04\x02\x05\x01\x01", // 唷
+ 0x5538: "\x02\x05\x01\x03\x04\x04\x05\x04\x05\x04\x04", // 唸
+ 0x5539: "\x02\x05\x01\x04\x01\x05\x03\x03\x04\x04\x04", // 唹
+ 0x553a: "\x02\x05\x01\x02\x05\x01\x02\x02\x01\x03\x04", // 唺
+ 0x553b: "\x02\x05\x01\x01\x03\x04\x03\x04\x02\x03\x04", // 唻
+ 0x553c: "\x02\x05\x01\x04\x01\x04\x03\x01\x05\x03\x01", // 唼
+ 0x553d: "\x02\x05\x01\x01\x02\x03\x04\x03\x03\x01\x02", // 唽
+ 0x553e: "\x02\x05\x01\x03\x01\x02\x01\x02\x02\x01\x01", // 唾
+ 0x553f: "\x02\x05\x01\x03\x05\x03\x03\x04\x05\x04\x04", // 唿
+ 0x5540: "\x02\x05\x01\x01\x03\x01\x02\x01\x01\x02\x01", // 啀
+ 0x5541: "\x02\x05\x01\x03\x05\x01\x02\x01\x02\x05\x01", // 啁
+ 0x5542: "\x02\x05\x01\x03\x04\x04\x03\x05\x02\x01\x05", // 啂
+ 0x5543: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x01", // 啃
+ 0x5544: "\x02\x05\x01\x01\x03\x05\x03\x03\x04\x03\x04", // 啄
+ 0x5545: "\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x02", // 啅
+ 0x5546: "\x04\x01\x04\x03\x02\x05\x03\x04\x02\x05\x01", // 商
+ 0x5547: "\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01", // 啇
+ 0x5548: "\x02\x05\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 啈
+ 0x5549: "\x02\x05\x01\x01\x02\x03\x04\x01\x02\x03\x04", // 啉
+ 0x554a: "\x02\x05\x01\x05\x02\x01\x02\x05\x01\x02", // 啊
+ 0x554b: "\x02\x05\x01\x03\x04\x04\x03\x01\x02\x03\x04", // 啋
+ 0x554c: "\x02\x05\x01\x04\x04\x05\x03\x04\x01\x02\x01", // 啌
+ 0x554d: "\x02\x05\x01\x04\x01\x02\x05\x01\x05\x02\x01", // 啍
+ 0x554e: "\x03\x01\x01\x02\x01\x02\x05\x01\x02\x05\x01", // 啎
+ 0x554f: "\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01", // 問
+ 0x5550: "\x02\x05\x01\x04\x01\x03\x04\x03\x04\x01\x02", // 啐
+ 0x5551: "\x02\x05\x01\x01\x05\x01\x01\x02\x01\x03\x04", // 啑
+ 0x5552: "\x02\x05\x01\x05\x01\x03\x05\x02\x02\x05\x02", // 啒
+ 0x5553: "\x04\x05\x01\x03\x03\x01\x03\x04\x02\x05\x01", // 啓
+ 0x5554: "\x04\x05\x01\x03\x01\x05\x03\x04\x02\x05\x01", // 啔
+ 0x5555: "\x02\x05\x01\x03\x05\x03\x01\x01\x02\x05\x02", // 啕
+ 0x5556: "\x02\x05\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 啖
+ 0x5557: "\x02\x05\x01\x03\x05\x03\x02\x01\x05\x01\x01", // 啗
+ 0x5558: "\x02\x05\x01\x04\x04\x05\x03\x05\x04\x05\x05", // 啘
+ 0x5559: "\x02\x01\x02\x01\x03\x05\x02\x05\x01\x02\x05\x01", // 啙
+ 0x555a: "\x02\x05\x01\x01\x02\x02\x05\x02\x05\x01\x01", // 啚
+ 0x555b: "\x02\x05\x01\x01\x05\x01\x01\x02\x05\x03\x01", // 啛
+ 0x555c: "\x02\x05\x01\x05\x04\x05\x04\x05\x04\x05\x04", // 啜
+ 0x555d: "\x02\x05\x01\x03\x01\x02\x03\x04\x02\x05\x01", // 啝
+ 0x555e: "\x02\x05\x01\x01\x02\x01\x05\x05\x01\x02\x01", // 啞
+ 0x555f: "\x04\x05\x01\x03\x02\x05\x01\x03\x01\x03\x04", // 啟
+ 0x5560: "\x03\x03\x01\x02\x03\x03\x01\x02\x02\x05\x01", // 啠
+ 0x5561: "\x02\x05\x01\x02\x01\x01\x01\x02\x01\x01\x01", // 啡
+ 0x5562: "\x02\x05\x01\x01\x02\x05\x02\x03\x04\x03\x04", // 啢
+ 0x5563: "\x02\x05\x01\x03\x01\x01\x02\x01\x02\x01\x05\x02", // 啣
+ 0x5564: "\x02\x05\x01\x03\x02\x05\x01\x01\x03\x01\x02", // 啤
+ 0x5565: "\x02\x05\x01\x03\x04\x01\x01\x02\x02\x05\x01", // 啥
+ 0x5566: "\x02\x05\x01\x01\x02\x01\x04\x01\x04\x03\x01", // 啦
+ 0x5567: "\x02\x05\x01\x01\x01\x02\x01\x02\x05\x03\x04", // 啧
+ 0x5568: "\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01", // 啨
+ 0x5569: "\x02\x05\x01\x01\x02\x01\x01\x02\x01\x02\x04", // 啩
+ 0x556a: "\x02\x05\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 啪
+ 0x556b: "\x02\x05\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 啫
+ 0x556c: "\x01\x02\x04\x03\x01\x02\x05\x02\x05\x01\x01", // 啬
+ 0x556d: "\x02\x05\x01\x01\x05\x02\x01\x01\x01\x05\x04", // 啭
+ 0x556e: "\x02\x05\x01\x02\x01\x02\x01\x03\x04\x05\x02", // 啮
+ 0x556f: "\x02\x05\x01\x02\x05\x01\x01\x02\x01\x04\x01", // 啯
+ 0x5570: "\x02\x05\x01\x02\x05\x02\x02\x01\x03\x05\x04", // 啰
+ 0x5571: "\x02\x05\x01\x02\x05\x02\x01\x03\x02\x05\x01", // 啱
+ 0x5572: "\x02\x05\x01\x03\x02\x05\x01\x01\x03\x05\x04", // 啲
+ 0x5573: "\x02\x05\x01\x04\x03\x01\x01\x03\x04\x05\x05", // 啳
+ 0x5574: "\x02\x05\x01\x04\x03\x02\x05\x01\x01\x01\x02", // 啴
+ 0x5575: "\x02\x05\x01\x04\x04\x01\x05\x03\x02\x05\x04", // 啵
+ 0x5576: "\x02\x05\x01\x04\x04\x05\x01\x02\x01\x03\x04", // 啶
+ 0x5577: "\x02\x05\x01\x04\x05\x01\x01\x05\x04\x05\x02", // 啷
+ 0x5578: "\x02\x05\x01\x05\x01\x01\x02\x03\x02\x03\x04", // 啸
+ 0x5579: "\x02\x05\x01\x05\x01\x03\x01\x02\x02\x05\x01", // 啹
+ 0x557a: "\x02\x05\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 啺
+ 0x557b: "\x04\x01\x04\x03\x04\x05\x02\x05\x02\x02\x05\x01", // 啻
+ 0x557c: "\x02\x05\x01\x04\x01\x04\x03\x04\x05\x02\x05\x02", // 啼
+ 0x557d: "\x02\x05\x01\x03\x04\x01\x02\x05\x01\x01\x03\x02", // 啽
+ 0x557e: "\x02\x05\x01\x03\x01\x02\x03\x04\x04\x03\x03\x04", // 啾
+ 0x557f: "\x02\x05\x01\x01\x02\x02\x01\x01\x01\x03\x04\x05", // 啿
+ 0x5580: "\x02\x05\x01\x04\x04\x05\x03\x05\x04\x02\x05\x01", // 喀
+ 0x5581: "\x02\x05\x01\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 喁
+ 0x5582: "\x02\x05\x01\x02\x05\x01\x02\x01\x01\x05\x03\x04", // 喂
+ 0x5583: "\x02\x05\x01\x01\x02\x02\x05\x04\x03\x01\x01\x02", // 喃
+ 0x5584: "\x04\x03\x01\x01\x01\x02\x04\x03\x01\x02\x05\x01", // 善
+ 0x5585: "\x02\x05\x01\x02\x05\x01\x01\x04\x01\x04\x03\x01", // 喅
+ 0x5586: "\x01\x02\x01\x02\x05\x01\x01\x02\x01\x02\x05\x01", // 喆
+ 0x5587: "\x02\x05\x01\x01\x02\x05\x01\x02\x03\x04\x02\x02", // 喇
+ 0x5588: "\x02\x05\x01\x01\x05\x03\x05\x03\x02\x05\x01\x01", // 喈
+ 0x5589: "\x02\x05\x01\x03\x02\x05\x01\x03\x01\x01\x03\x04", // 喉
+ 0x558a: "\x02\x05\x01\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 喊
+ 0x558b: "\x02\x05\x01\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 喋
+ 0x558c: "\x02\x05\x01\x02\x05\x01\x04\x03\x04\x02\x04\x02", // 喌
+ 0x558d: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x01\x02\x03\x04", // 喍
+ 0x558e: "\x02\x05\x01\x02\x05\x05\x02\x05\x02\x05\x01", // 喎
+ 0x558f: "\x02\x05\x01\x01\x02\x02\x01\x03\x02\x05\x01", // 喏
+ 0x5590: "\x02\x05\x01\x01\x03\x02\x05\x01\x01\x05\x02", // 喐
+ 0x5591: "\x02\x05\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 喑
+ 0x5592: "\x02\x05\x01\x03\x05\x04\x02\x04\x02\x05\x01\x01", // 喒
+ 0x5593: "\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x03\x01", // 喓
+ 0x5594: "\x02\x05\x01\x05\x01\x03\x01\x05\x04\x01\x02\x01", // 喔
+ 0x5595: "\x02\x05\x01\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 喕
+ 0x5596: "\x02\x05\x01\x01\x02\x03\x04\x01\x02\x02\x05\x01", // 喖
+ 0x5597: "\x02\x05\x01\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 喗
+ 0x5598: "\x02\x05\x01\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 喘
+ 0x5599: "\x02\x05\x01\x05\x05\x01\x03\x05\x03\x03\x03\x04", // 喙
+ 0x559a: "\x02\x05\x01\x03\x05\x02\x05\x03\x04\x01\x03\x04", // 喚
+ 0x559b: "\x02\x05\x01\x03\x04\x04\x03\x01\x01\x03\x05\x04", // 喛
+ 0x559c: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01", // 喜
+ 0x559d: "\x02\x05\x01\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 喝
+ 0x559e: "\x02\x05\x01\x03\x02\x05\x01\x01\x03\x05\x05\x02", // 喞
+ 0x559f: "\x02\x05\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01", // 喟
+ 0x55a0: "\x02\x05\x01\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 喠
+ 0x55a1: "\x02\x05\x01\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 喡
+ 0x55a2: "\x02\x05\x01\x03\x01\x02\x03\x02\x01\x05\x01\x01", // 喢
+ 0x55a3: "\x02\x05\x01\x03\x05\x02\x05\x01\x04\x04\x04\x04", // 喣
+ 0x55a4: "\x02\x05\x01\x03\x02\x05\x01\x01\x01\x01\x02\x01", // 喤
+ 0x55a5: "\x02\x05\x01\x04\x01\x03\x01\x02\x02\x01\x05\x04", // 喥
+ 0x55a6: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x02", // 喦
+ 0x55a7: "\x02\x05\x01\x04\x04\x05\x01\x02\x05\x01\x01\x01", // 喧
+ 0x55a8: "\x02\x05\x01\x04\x01\x02\x05\x01\x04\x05\x03\x05", // 喨
+ 0x55a9: "\x02\x05\x01\x03\x04\x01\x02\x05\x01\x01\x05\x05", // 喩
+ 0x55aa: "\x01\x02\x02\x05\x01\x02\x05\x01\x01\x05\x03\x04", // 喪
+ 0x55ab: "\x02\x05\x01\x01\x01\x01\x02\x05\x03\x01\x03\x04", // 喫
+ 0x55ac: "\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 喬
+ 0x55ad: "\x02\x05\x01\x04\x01\x04\x03\x01\x03\x03\x03\x03", // 喭
+ 0x55ae: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 單
+ 0x55af: "\x02\x05\x01\x01\x03\x04\x01\x02\x01\x03\x02", // 喯
+ 0x55b0: "\x02\x05\x01\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 喰
+ 0x55b1: "\x02\x05\x01\x01\x03\x02\x05\x01\x01\x02\x01\x01", // 喱
+ 0x55b2: "\x02\x05\x01\x05\x05\x04\x04\x04\x04\x03\x05\x04", // 喲
+ 0x55b3: "\x02\x05\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 喳
+ 0x55b4: "\x02\x05\x01\x01\x03\x01\x05\x03\x01\x05\x03\x04", // 喴
+ 0x55b5: "\x02\x05\x01\x01\x02\x02\x02\x05\x01\x02\x01", // 喵
+ 0x55b6: "\x04\x04\x03\x04\x05\x02\x05\x01\x02\x05\x01", // 営
+ 0x55b7: "\x02\x05\x01\x01\x02\x01\x02\x02\x02\x05\x03\x04", // 喷
+ 0x55b8: "\x01\x02\x05\x01\x01\x02\x04\x02\x05\x01\x03\x05", // 喸
+ 0x55b9: "\x02\x05\x01\x01\x03\x04\x01\x02\x01\x01\x02\x01", // 喹
+ 0x55ba: "\x02\x05\x01\x03\x02\x03\x05\x05\x04\x02\x03\x04", // 喺
+ 0x55bb: "\x02\x05\x01\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 喻
+ 0x55bc: "\x02\x05\x01\x03\x05\x05\x01\x01\x04\x05\x04\x04", // 喼
+ 0x55bd: "\x02\x05\x01\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 喽
+ 0x55be: "\x04\x04\x03\x04\x05\x03\x01\x02\x01\x02\x05\x01", // 喾
+ 0x55bf: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 喿
+ 0x55c0: "\x01\x02\x01\x04\x05\x01\x02\x05\x01\x03\x05\x05\x04", // 嗀
+ 0x55c1: "\x02\x05\x01\x03\x03\x02\x01\x05\x03\x01\x05\x03\x05", // 嗁
+ 0x55c2: "\x02\x05\x01\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02", // 嗂
+ 0x55c3: "\x02\x05\x01\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 嗃
+ 0x55c4: "\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x05\x04", // 嗄
+ 0x55c5: "\x02\x05\x01\x03\x02\x05\x01\x01\x01\x01\x03\x04\x04", // 嗅
+ 0x55c6: "\x02\x05\x01\x03\x04\x04\x05\x01\x01\x03\x02\x05\x01", // 嗆
+ 0x55c7: "\x01\x02\x03\x04\x03\x04\x01\x02\x05\x02\x05\x01\x01", // 嗇
+ 0x55c8: "\x02\x05\x01\x05\x05\x05\x02\x05\x01\x05\x02\x01\x05", // 嗈
+ 0x55c9: "\x02\x05\x01\x01\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 嗉
+ 0x55ca: "\x02\x05\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 嗊
+ 0x55cb: "\x02\x05\x01\x05\x03\x05\x03\x05\x03\x02\x05\x01\x01", // 嗋
+ 0x55cc: "\x02\x05\x01\x04\x03\x01\x03\x04\x02\x05\x02\x02\x01", // 嗌
+ 0x55cd: "\x02\x05\x01\x04\x03\x01\x05\x02\x03\x03\x05\x01\x01", // 嗍
+ 0x55ce: "\x02\x05\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 嗎
+ 0x55cf: "\x02\x05\x01\x01\x02\x02\x03\x04\x01\x02\x03\x04", // 嗏
+ 0x55d0: "\x02\x05\x01\x04\x04\x05\x01\x01\x01\x02\x02\x05\x01", // 嗐
+ 0x55d1: "\x02\x05\x01\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 嗑
+ 0x55d2: "\x02\x05\x01\x01\x02\x02\x03\x04\x01\x02\x05\x01", // 嗒
+ 0x55d3: "\x02\x05\x01\x05\x04\x05\x04\x05\x04\x01\x02\x03\x04", // 嗓
+ 0x55d4: "\x02\x05\x01\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 嗔
+ 0x55d5: "\x02\x05\x01\x01\x03\x01\x01\x05\x03\x04\x01\x02\x04", // 嗕
+ 0x55d6: "\x02\x05\x01\x03\x02\x01\x05\x01\x01\x02\x05\x04", // 嗖
+ 0x55d7: "\x02\x05\x01\x02\x05\x05\x04\x05\x02\x05\x01\x01", // 嗗
+ 0x55d8: "\x02\x05\x01\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04", // 嗘
+ 0x55d9: "\x02\x05\x01\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03", // 嗙
+ 0x55da: "\x02\x05\x01\x03\x02\x05\x01\x01\x05\x04\x04\x04\x04", // 嗚
+ 0x55db: "\x02\x05\x01\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 嗛
+ 0x55dc: "\x02\x05\x01\x01\x02\x01\x03\x03\x05\x02\x05\x01\x01", // 嗜
+ 0x55dd: "\x02\x05\x01\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 嗝
+ 0x55de: "\x02\x05\x01\x04\x03\x01\x05\x05\x04\x05\x05\x04", // 嗞
+ 0x55df: "\x02\x05\x01\x04\x03\x01\x01\x01\x03\x01\x02\x01", // 嗟
+ 0x55e0: "\x03\x04\x04\x03\x05\x02\x01\x03\x05\x04\x02\x05\x01", // 嗠
+ 0x55e1: "\x02\x05\x01\x03\x04\x05\x04\x05\x04\x01\x05\x04\x01", // 嗡
+ 0x55e2: "\x02\x05\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 嗢
+ 0x55e3: "\x02\x05\x01\x02\x05\x01\x02\x02\x05\x01\x02\x05\x01", // 嗣
+ 0x55e4: "\x02\x05\x01\x05\x02\x02\x01\x02\x05\x01\x02\x01\x04", // 嗤
+ 0x55e5: "\x02\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04\x01\x02", // 嗥
+ 0x55e6: "\x02\x05\x01\x01\x02\x04\x05\x05\x05\x04\x02\x03\x04", // 嗦
+ 0x55e7: "\x05\x03\x02\x05\x01\x03\x04\x01\x02\x05\x01\x02\x02", // 嗧
+ 0x55e8: "\x02\x05\x01\x04\x04\x01\x03\x01\x05\x05\x04\x01\x04", // 嗨
+ 0x55e9: "\x02\x05\x01\x02\x04\x03\x02\x05\x01\x01\x01\x03\x04", // 嗩
+ 0x55ea: "\x02\x05\x01\x01\x01\x01\x03\x04\x03\x01\x02\x03\x04", // 嗪
+ 0x55eb: "\x02\x05\x01\x01\x02\x02\x01\x01\x01\x05\x04\x05\x04", // 嗫
+ 0x55ec: "\x02\x05\x01\x01\x02\x02\x03\x02\x01\x02\x05\x01\x02", // 嗬
+ 0x55ed: "\x01\x02\x02\x05\x01\x01\x01\x01\x02\x05\x01\x03\x05", // 嗭
+ 0x55ee: "\x02\x05\x01\x02\x05\x01\x01\x01\x02\x05\x03\x05\x01", // 嗮
+ 0x55ef: "\x02\x05\x01\x02\x05\x01\x03\x04\x01\x04\x05\x04\x04", // 嗯
+ 0x55f0: "\x02\x05\x01\x03\x02\x02\x05\x01\x02\x02\x05\x01\x01", // 嗰
+ 0x55f1: "\x02\x05\x01\x03\x04\x01\x02\x05\x01\x03\x01\x01\x02", // 嗱
+ 0x55f2: "\x02\x05\x01\x03\x04\x03\x04\x03\x05\x04\x03\x05\x04", // 嗲
+ 0x55f3: "\x02\x05\x01\x03\x04\x04\x03\x04\x05\x01\x03\x05\x04", // 嗳
+ 0x55f4: "\x02\x05\x01\x04\x03\x01\x01\x01\x03\x05\x05\x04", // 嗴
+ 0x55f5: "\x02\x05\x01\x05\x04\x02\x05\x01\x01\x02\x04\x05\x04", // 嗵
+ 0x55f6: "\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x01\x02", // 嗶
+ 0x55f7: "\x02\x05\x01\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04", // 嗷
+ 0x55f8: "\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04\x02\x05\x01", // 嗸
+ 0x55f9: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 嗹
+ 0x55fa: "\x02\x05\x01\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 嗺
+ 0x55fb: "\x02\x05\x01\x04\x01\x03\x01\x02\x02\x01\x04\x04\x04\x04", // 嗻
+ 0x55fc: "\x02\x05\x01\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 嗼
+ 0x55fd: "\x02\x05\x01\x01\x02\x05\x01\x02\x03\x04\x03\x05\x03\x04", // 嗽
+ 0x55fe: "\x02\x05\x01\x04\x01\x05\x03\x03\x01\x03\x01\x01\x03\x04", // 嗾
+ 0x55ff: "\x02\x05\x01\x03\x04\x04\x05\x02\x05\x01\x01\x01\x03\x04", // 嗿
+ 0x5600: "\x02\x05\x01\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01", // 嘀
+ 0x5601: "\x02\x05\x01\x01\x03\x02\x01\x01\x02\x03\x04\x05\x03\x04", // 嘁
+ 0x5602: "\x02\x05\x01\x02\x05\x01\x05\x02\x02\x05\x01\x02\x05\x01", // 嘂
+ 0x5603: "\x02\x05\x01\x04\x01\x03\x05\x01\x01\x02\x05\x01\x01\x02", // 嘃
+ 0x5604: "\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x01\x02\x03\x04", // 嘄
+ 0x5605: "\x02\x05\x01\x05\x01\x01\x05\x04\x01\x05\x03\x05", // 嘅
+ 0x5606: "\x02\x05\x01\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 嘆
+ 0x5607: "\x02\x05\x01\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 嘇
+ 0x5608: "\x02\x05\x01\x01\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01", // 嘈
+ 0x5609: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x05\x03\x02\x05\x01", // 嘉
+ 0x560a: "\x02\x05\x01\x02\x05\x02\x01\x03\x01\x02\x01\x01\x02\x01", // 嘊
+ 0x560b: "\x02\x05\x01\x01\x02\x01\x03\x05\x02\x01\x03\x01\x03\x04", // 嘋
+ 0x560c: "\x02\x05\x01\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 嘌
+ 0x560d: "\x02\x05\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 嘍
+ 0x560e: "\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x01\x05\x03\x04", // 嘎
+ 0x560f: "\x01\x02\x02\x05\x01\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 嘏
+ 0x5610: "\x02\x05\x01\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 嘐
+ 0x5611: "\x02\x05\x01\x02\x01\x05\x03\x01\x05\x03\x04\x03\x01\x02", // 嘑
+ 0x5612: "\x02\x05\x01\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x01", // 嘒
+ 0x5613: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x05\x03\x04\x01", // 嘓
+ 0x5614: "\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 嘔
+ 0x5615: "\x02\x05\x01\x01\x02\x01\x02\x01\x01\x05\x04\x04\x04\x04", // 嘕
+ 0x5616: "\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 嘖
+ 0x5617: "\x02\x04\x03\x04\x05\x02\x05\x01\x03\x05\x02\x05\x01\x01", // 嘗
+ 0x5618: "\x02\x05\x01\x02\x01\x05\x03\x01\x05\x02\x02\x04\x03\x01", // 嘘
+ 0x5619: "\x02\x05\x01\x04\x04\x01\x05\x03\x02\x05\x04\x05\x03\x01", // 嘙
+ 0x561a: "\x02\x05\x01\x03\x03\x02\x02\x05\x01\x01\x01\x01\x02\x04", // 嘚
+ 0x561b: "\x02\x05\x01\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04", // 嘛
+ 0x561c: "\x02\x05\x01\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04", // 嘜
+ 0x561d: "\x02\x05\x01\x03\x05\x03\x05\x01\x01\x02\x04\x04\x01\x02", // 嘝
+ 0x561e: "\x02\x05\x01\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x03", // 嘞
+ 0x561f: "\x02\x05\x01\x01\x02\x01\x03\x02\x05\x01\x01\x05\x02", // 嘟
+ 0x5620: "\x02\x05\x01\x01\x03\x02\x05\x01\x01\x04\x05\x01\x05\x03\x04", // 嘠
+ 0x5621: "\x02\x05\x01\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x01", // 嘡
+ 0x5622: "\x02\x05\x01\x02\x05\x01\x01\x02\x01\x01\x05\x04\x05\x02", // 嘢
+ 0x5623: "\x02\x05\x01\x02\x05\x02\x03\x05\x01\x01\x03\x05\x01\x01", // 嘣
+ 0x5624: "\x02\x05\x01\x02\x05\x03\x04\x02\x05\x03\x04\x05\x03\x01", // 嘤
+ 0x5625: "\x02\x05\x01\x03\x03\x02\x02\x01\x02\x01\x02\x01\x03\x04", // 嘥
+ 0x5626: "\x02\x05\x01\x03\x04\x01\x02\x05\x02\x02\x01\x05\x03\x01", // 嘦
+ 0x5627: "\x02\x05\x01\x04\x04\x05\x04\x05\x04\x03\x04\x02\x05\x02", // 嘧
+ 0x5628: "\x02\x05\x01\x05\x01\x01\x02\x04\x03\x01\x03\x04\x03\x02", // 嘨
+ 0x5629: "\x02\x05\x01\x01\x02\x02\x01\x01\x02\x02\x01\x01\x02", // 嘩
+ 0x562a: "\x02\x05\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 嘪
+ 0x562b: "\x02\x05\x01\x03\x05\x04\x04\x01\x03\x04\x04\x04\x04\x04\x04", // 嘫
+ 0x562c: "\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x01\x01\x05\x04", // 嘬
+ 0x562d: "\x02\x05\x01\x01\x02\x01\x02\x05\x01\x04\x03\x01\x03\x03\x03", // 嘭
+ 0x562e: "\x02\x05\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x05\x03", // 嘮
+ 0x562f: "\x02\x05\x01\x05\x01\x01\x02\x03\x02\x01\x01\x05\x05\x02\x01\x02", // 嘯
+ 0x5630: "\x02\x05\x01\x05\x05\x04\x05\x05\x04\x01\x03\x04\x05\x03\x04", // 嘰
+ 0x5631: "\x02\x05\x01\x05\x01\x03\x03\x02\x05\x01\x02\x05\x02\x01\x04", // 嘱
+ 0x5632: "\x02\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x03\x05\x01\x01", // 嘲
+ 0x5633: "\x02\x05\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 嘳
+ 0x5634: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x03\x05\x03\x05\x01\x01\x02", // 嘴
+ 0x5635: "\x02\x05\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 嘵
+ 0x5636: "\x02\x05\x01\x01\x02\x02\x01\x01\x01\x03\x04\x03\x03\x01\x02", // 嘶
+ 0x5637: "\x02\x05\x01\x03\x02\x05\x01\x01\x01\x04\x01\x03\x04\x01\x02", // 嘷
+ 0x5638: "\x02\x05\x01\x03\x01\x01\x02\x02\x02\x02\x01\x04\x04\x04\x04", // 嘸
+ 0x5639: "\x02\x05\x01\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 嘹
+ 0x563a: "\x02\x05\x01\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 嘺
+ 0x563b: "\x02\x05\x01\x01\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01", // 嘻
+ 0x563c: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01\x01\x02\x05\x01", // 嘼
+ 0x563d: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 嘽
+ 0x563e: "\x02\x05\x01\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 嘾
+ 0x563f: "\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 嘿
+ 0x5640: "\x02\x05\x01\x05\x01\x05\x05\x01\x05\x01\x02\x02\x01\x03\x04", // 噀
+ 0x5641: "\x02\x05\x01\x01\x02\x01\x05\x05\x01\x02\x01\x04\x05\x04\x04", // 噁
+ 0x5642: "\x02\x05\x01\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x02\x04", // 噂
+ 0x5643: "\x02\x05\x01\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 噃
+ 0x5644: "\x02\x05\x01\x01\x01\x01\x02\x05\x03\x05\x05\x04\x02\x03\x04", // 噄
+ 0x5645: "\x02\x05\x01\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04", // 噅
+ 0x5646: "\x02\x05\x01\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x01", // 噆
+ 0x5647: "\x02\x05\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 噇
+ 0x5648: "\x02\x05\x01\x04\x01\x02\x05\x01\x02\x03\x04\x01\x03\x05\x04", // 噈
+ 0x5649: "\x02\x05\x01\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 噉
+ 0x564a: "\x02\x05\x01\x05\x04\x05\x02\x03\x02\x05\x03\x04\x02\x05\x01", // 噊
+ 0x564b: "\x02\x05\x01\x04\x01\x02\x05\x01\x05\x02\x01\x03\x01\x03\x04", // 噋
+ 0x564c: "\x02\x05\x01\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 噌
+ 0x564d: "\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 噍
+ 0x564e: "\x02\x05\x01\x01\x02\x01\x04\x05\x01\x02\x05\x01\x04\x03\x01", // 噎
+ 0x564f: "\x02\x05\x01\x03\x04\x01\x02\x05\x01\x05\x04\x01\x05\x04\x01", // 噏
+ 0x5650: "\x02\x05\x01\x02\x05\x01\x01\x02\x01\x02\x05\x01\x02\x05\x01", // 噐
+ 0x5651: "\x02\x05\x01\x03\x02\x05\x01\x01\x04\x01\x03\x04\x01\x02", // 噑
+ 0x5652: "\x02\x05\x01\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 噒
+ 0x5653: "\x02\x05\x01\x02\x01\x05\x03\x01\x05\x02\x02\x05\x02\x01\x01", // 噓
+ 0x5654: "\x02\x05\x01\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 噔
+ 0x5655: "\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04\x02\x05\x01", // 噕
+ 0x5656: "\x02\x05\x01\x01\x01\x02\x01\x01\x01\x02\x01\x03\x04\x04\x05", // 噖
+ 0x5657: "\x02\x05\x01\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 噗
+ 0x5658: "\x02\x05\x01\x01\x03\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04", // 噘
+ 0x5659: "\x02\x05\x01\x03\x04\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 噙
+ 0x565a: "\x02\x05\x01\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04", // 噚
+ 0x565b: "\x02\x05\x01\x02\x01\x02\x01\x04\x03\x01\x02\x03\x04\x05\x02", // 噛
+ 0x565c: "\x02\x05\x01\x03\x05\x02\x05\x01\x02\x01\x01\x02\x05\x01\x01", // 噜
+ 0x565d: "\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x02\x03\x04", // 噝
+ 0x565e: "\x02\x05\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 噞
+ 0x565f: "\x04\x01\x03\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x01", // 噟
+ 0x5660: "\x02\x05\x01\x01\x02\x01\x04\x03\x01\x01\x01\x02\x04\x05\x04", // 噠
+ 0x5661: "\x02\x05\x01\x03\x05\x01\x03\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 噡
+ 0x5662: "\x02\x05\x01\x03\x02\x05\x04\x03\x01\x02\x03\x04\x01\x03\x04", // 噢
+ 0x5663: "\x02\x05\x01\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 噣
+ 0x5664: "\x02\x05\x01\x01\x02\x03\x04\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 噤
+ 0x5665: "\x02\x05\x01\x02\x05\x01\x02\x02\x01\x01\x03\x01\x01\x05\x03\x04", // 噥
+ 0x5666: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x01\x02\x03\x03\x05\x03\x04", // 噦
+ 0x5667: "\x02\x05\x01\x01\x02\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 噧
+ 0x5668: "\x02\x05\x01\x02\x05\x01\x01\x03\x04\x04\x02\x05\x01\x02\x05\x01", // 器
+ 0x5669: "\x01\x02\x02\x05\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01\x01", // 噩
+ 0x566a: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 噪
+ 0x566b: "\x02\x05\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 噫
+ 0x566c: "\x02\x05\x01\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x03\x04\x01", // 噬
+ 0x566d: "\x02\x05\x01\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x03\x04", // 噭
+ 0x566e: "\x02\x05\x01\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 噮
+ 0x566f: "\x02\x05\x01\x03\x04\x04\x03\x04\x05\x04\x05\x04\x04\x03\x05\x04", // 噯
+ 0x5670: "\x02\x05\x01\x04\x01\x05\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 噰
+ 0x5671: "\x02\x05\x01\x02\x01\x05\x03\x01\x05\x01\x03\x05\x03\x03\x03\x04", // 噱
+ 0x5672: "\x02\x05\x01\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 噲
+ 0x5673: "\x02\x05\x01\x02\x01\x05\x03\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 噳
+ 0x5674: "\x02\x05\x01\x01\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 噴
+ 0x5675: "\x04\x03\x01\x03\x02\x05\x01\x01\x01\x04\x05\x04\x02\x05\x01", // 噵
+ 0x5676: "\x02\x05\x01\x01\x02\x02\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 噶
+ 0x5677: "\x02\x05\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05\x03\x04", // 噷
+ 0x5678: "\x02\x05\x01\x01\x05\x02\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 噸
+ 0x5679: "\x02\x05\x01\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x01\x02\x01", // 噹
+ 0x567a: "\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x03\x05\x03\x03\x01\x02", // 噺
+ 0x567b: "\x02\x05\x01\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x01\x02\x01", // 噻
+ 0x567c: "\x02\x05\x01\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 噼
+ 0x567d: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01\x01\x03\x02\x04\x01", // 噽
+ 0x567e: "\x02\x05\x01\x04\x04\x05\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 噾
+ 0x567f: "\x02\x05\x01\x05\x04\x01\x05\x04\x01\x04\x01\x03\x04\x03\x04\x01\x02", // 噿
+ 0x5680: "\x02\x05\x01\x04\x04\x05\x04\x05\x04\x04\x02\x05\x02\x02\x01\x01\x02", // 嚀
+ 0x5681: "\x02\x05\x01\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 嚁
+ 0x5682: "\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01", // 嚂
+ 0x5683: "\x02\x05\x01\x01\x05\x02\x02\x01\x01\x03\x03\x04\x04\x04\x05\x04", // 嚃
+ 0x5684: "\x02\x05\x01\x01\x02\x02\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 嚄
+ 0x5685: "\x02\x05\x01\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02", // 嚅
+ 0x5686: "\x02\x05\x01\x01\x02\x02\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 嚆
+ 0x5687: "\x02\x05\x01\x01\x02\x01\x03\x02\x03\x04\x01\x02\x01\x03\x02\x03\x04", // 嚇
+ 0x5688: "\x02\x05\x01\x01\x03\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x04\x04", // 嚈
+ 0x5689: "\x02\x05\x01\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x01\x02\x04", // 嚉
+ 0x568a: "\x02\x05\x01\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02", // 嚊
+ 0x568b: "\x02\x05\x01\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 嚋
+ 0x568c: "\x02\x05\x01\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01", // 嚌
+ 0x568d: "\x02\x05\x01\x05\x01\x01\x02\x01\x04\x04\x04\x04\x02\x05\x02\x02\x01", // 嚍
+ 0x568e: "\x02\x05\x01\x04\x01\x02\x05\x01\x04\x05\x01\x03\x05\x03\x03\x03\x04", // 嚎
+ 0x568f: "\x02\x05\x01\x01\x02\x04\x05\x02\x05\x01\x02\x01\x05\x02\x01\x02\x04", // 嚏
+ 0x5690: "\x02\x05\x01\x02\x04\x03\x04\x05\x02\x05\x01\x03\x05\x02\x05\x01\x01", // 嚐
+ 0x5691: "\x02\x05\x01\x03\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 嚑
+ 0x5692: "\x02\x05\x01\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x05\x05\x04", // 嚒
+ 0x5693: "\x02\x05\x01\x04\x04\x05\x03\x05\x04\x04\x05\x04\x01\x01\x02\x03\x04", // 嚓
+ 0x5694: "\x02\x05\x01\x01\x02\x04\x05\x02\x05\x01\x02\x01\x05\x04\x02\x01\x03\x04", // 嚔
+ 0x5695: "\x02\x05\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01", // 嚕
+ 0x5696: "\x02\x05\x01\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 嚖
+ 0x5697: "\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x04\x02\x04\x01\x03\x04", // 嚗
+ 0x5698: "\x02\x05\x01\x01\x03\x02\x05\x01\x01\x04\x05\x04\x05\x04\x04\x03\x05\x04", // 嚘
+ 0x5699: "\x02\x05\x01\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 嚙
+ 0x569a: "\x02\x05\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x02\x05\x01\x02\x05\x01", // 嚚
+ 0x569b: "\x02\x05\x01\x03\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x03\x04", // 嚛
+ 0x569c: "\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x01", // 嚜
+ 0x569d: "\x02\x05\x01\x04\x01\x03\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 嚝
+ 0x569e: "\x01\x02\x01\x02\x05\x01\x01\x02\x01\x02\x05\x01\x01\x02\x01\x02\x05\x01", // 嚞
+ 0x569f: "\x02\x05\x01\x03\x01\x02\x03\x04\x03\x05\x03\x03\x04\x02\x04\x01\x03\x04", // 嚟
+ 0x56a0: "\x02\x05\x01\x03\x05\x04\x05\x03\x03\x04\x01\x01\x02\x04\x03\x01\x02\x02", // 嚠
+ 0x56a1: "\x02\x05\x01\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x01\x01\x02\x01", // 嚡
+ 0x56a2: "\x01\x02\x05\x01\x02\x04\x05\x03\x04\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 嚢
+ 0x56a3: "\x02\x05\x01\x02\x05\x01\x01\x03\x02\x05\x03\x04\x02\x05\x01\x02\x05\x01", // 嚣
+ 0x56a4: "\x02\x05\x01\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x03\x01\x01\x02", // 嚤
+ 0x56a5: "\x02\x05\x01\x01\x02\x02\x01\x02\x05\x01\x02\x01\x01\x03\x05\x04\x04\x04\x04", // 嚥
+ 0x56a6: "\x02\x05\x01\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 嚦
+ 0x56a7: "\x02\x05\x01\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 嚧
+ 0x56a8: "\x02\x05\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x05\x01\x05\x01\x01\x01", // 嚨
+ 0x56a9: "\x02\x05\x01\x05\x05\x04\x04\x04\x04\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 嚩
+ 0x56aa: "\x02\x05\x01\x02\x05\x01\x01\x02\x05\x01\x01\x03\x05\x03\x02\x01\x05\x01\x01", // 嚪
+ 0x56ab: "\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 嚫
+ 0x56ac: "\x02\x05\x01\x02\x01\x02\x01\x02\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 嚬
+ 0x56ad: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01\x01\x03\x02\x04\x02\x05\x01", // 嚭
+ 0x56ae: "\x05\x05\x03\x04\x05\x01\x01\x05\x04\x05\x02\x03\x02\x05\x02\x05\x01", // 嚮
+ 0x56af: "\x02\x05\x01\x01\x04\x05\x02\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 嚯
+ 0x56b0: "\x02\x05\x01\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x01\x03\x02\x05\x01", // 嚰
+ 0x56b1: "\x02\x05\x01\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x04\x03\x01\x01\x05\x02\x03", // 嚱
+ 0x56b2: "\x04\x01\x02\x05\x01\x05\x02\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 嚲
+ 0x56b3: "\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x03\x01\x02\x01\x02\x05\x01", // 嚳
+ 0x56b4: "\x02\x05\x01\x02\x05\x01\x01\x03\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 嚴
+ 0x56b5: "\x02\x05\x01\x03\x05\x02\x05\x01\x01\x05\x03\x05\x03\x05\x02\x05\x01\x03\x05\x04", // 嚵
+ 0x56b6: "\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x05\x03\x01", // 嚶
+ 0x56b7: "\x02\x05\x01\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 嚷
+ 0x56b8: "\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x02\x01\x02\x05\x01", // 嚸
+ 0x56b9: "\x02\x05\x01\x03\x01\x01\x02\x05\x02\x02\x01\x05\x03\x01\x05\x03\x04\x03\x01\x02", // 嚹
+ 0x56ba: "\x02\x05\x01\x02\x05\x02\x02\x01\x04\x03\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 嚺
+ 0x56bb: "\x02\x05\x01\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x02\x05\x01", // 嚻
+ 0x56bc: "\x02\x05\x01\x03\x04\x04\x03\x02\x05\x02\x02\x01\x05\x01\x01\x05\x04\x01\x02\x04", // 嚼
+ 0x56bd: "\x02\x05\x01\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 嚽
+ 0x56be: "\x02\x05\x01\x01\x02\x02\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 嚾
+ 0x56bf: "\x02\x05\x01\x01\x02\x02\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x01\x05\x01\x01", // 嚿
+ 0x56c0: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04", // 囀
+ 0x56c1: "\x02\x05\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01", // 囁
+ 0x56c2: "\x02\x05\x01\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x02\x05\x01", // 囂
+ 0x56c3: "\x02\x05\x01\x04\x01\x03\x04\x03\x04\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 囃
+ 0x56c4: "\x02\x05\x01\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 囄
+ 0x56c5: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x05\x01\x03\x01\x02\x02\x01\x05\x03\x04", // 囅
+ 0x56c6: "\x02\x05\x01\x01\x02\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 囆
+ 0x56c7: "\x02\x05\x01\x01\x02\x05\x04\x01\x02\x05\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 囇
+ 0x56c8: "\x02\x05\x01\x01\x02\x02\x01\x02\x01\x03\x04\x01\x02\x01\x03\x05\x04\x01\x01\x05\x04", // 囈
+ 0x56c9: "\x02\x05\x01\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 囉
+ 0x56ca: "\x01\x02\x05\x01\x02\x04\x05\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x02\x04", // 囊
+ 0x56cb: "\x02\x05\x01\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 囋
+ 0x56cc: "\x02\x05\x01\x01\x02\x02\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x02\x03\x04", // 囌
+ 0x56cd: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01", // 囍
+ 0x56ce: "\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 囎
+ 0x56cf: "\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x01\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01", // 囏
+ 0x56d0: "\x02\x05\x01\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x03\x04\x04", // 囐
+ 0x56d1: "\x02\x05\x01\x05\x01\x03\x02\x04\x01\x03\x04\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 囑
+ 0x56d2: "\x02\x02\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 囒
+ 0x56d3: "\x02\x05\x01\x01\x01\x01\x02\x05\x03\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 囓
+ 0x56d4: "\x02\x05\x01\x01\x02\x05\x01\x02\x04\x05\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 囔
+ 0x56d5: "\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 囕
+ 0x56d6: "\x02\x05\x01\x03\x01\x04\x03\x01\x04\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 囖
+ 0x56d7: "\x02\x05\x01", // 囗
+ 0x56d8: "\x02\x05\x05\x01\x05", // 囘
+ 0x56d9: "\x02\x05\x05\x01\x01", // 囙
+ 0x56da: "\x02\x05\x03\x04\x01", // 囚
+ 0x56db: "\x02\x05\x03\x05\x01", // 四
+ 0x56dc: "\x02\x05\x05\x04\x01", // 囜
+ 0x56dd: "\x02\x05\x05\x02\x01\x01", // 囝
+ 0x56de: "\x02\x05\x02\x05\x01\x01", // 回
+ 0x56df: "\x03\x02\x05\x03\x04\x01", // 囟
+ 0x56e0: "\x02\x05\x01\x03\x04\x01", // 因
+ 0x56e1: "\x02\x05\x05\x03\x01\x01", // 囡
+ 0x56e2: "\x02\x05\x01\x02\x03\x01", // 团
+ 0x56e3: "\x02\x05\x01\x02\x04\x01", // 団
+ 0x56e4: "\x02\x05\x01\x05\x02\x05\x01", // 囤
+ 0x56e5: "\x02\x05\x04\x01\x03\x05\x01", // 囥
+ 0x56e6: "\x02\x05\x02\x05\x03\x04\x01", // 囦
+ 0x56e7: "\x02\x05\x03\x04\x02\x05\x01", // 囧
+ 0x56e8: "\x02\x05\x01\x03\x02\x04\x01", // 囨
+ 0x56e9: "\x02\x05\x01\x01\x05\x04\x01", // 囩
+ 0x56ea: "\x03\x02\x05\x03\x03\x04\x01", // 囪
+ 0x56eb: "\x02\x05\x03\x05\x03\x03\x01", // 囫
+ 0x56ec: "\x02\x05\x02\x02\x01\x01\x01", // 囬
+ 0x56ed: "\x02\x05\x01\x01\x03\x05\x01", // 园
+ 0x56ee: "\x02\x05\x03\x02\x03\x05\x01", // 囮
+ 0x56ef: "\x02\x05\x01\x01\x02\x01\x01", // 囯
+ 0x56f0: "\x02\x05\x01\x02\x03\x04\x01", // 困
+ 0x56f1: "\x03\x02\x05\x03\x05\x04\x01", // 囱
+ 0x56f2: "\x02\x05\x01\x01\x03\x02\x01", // 囲
+ 0x56f3: "\x02\x05\x04\x04\x03\x04\x01", // 図
+ 0x56f4: "\x02\x05\x01\x01\x05\x02\x01", // 围
+ 0x56f5: "\x02\x05\x03\x04\x03\x05\x01", // 囵
+ 0x56f6: "\x02\x05\x03\x04\x01\x02\x01\x01", // 囶
+ 0x56f7: "\x02\x05\x03\x01\x02\x03\x04\x01", // 囷
+ 0x56f8: "\x02\x05\x01\x02\x01\x02\x01\x01", // 囸
+ 0x56f9: "\x02\x05\x03\x04\x04\x05\x04\x01", // 囹
+ 0x56fa: "\x02\x05\x01\x02\x02\x05\x01\x01", // 固
+ 0x56fb: "\x02\x05\x05\x01\x05\x01\x05\x01", // 囻
+ 0x56fc: "\x02\x05\x05\x03\x02\x05\x01\x01", // 囼
+ 0x56fd: "\x02\x05\x01\x01\x02\x01\x04\x01", // 国
+ 0x56fe: "\x02\x05\x03\x05\x04\x04\x04\x01", // 图
+ 0x56ff: "\x02\x05\x01\x03\x02\x05\x01\x01\x01", // 囿
+ 0x5700: "\x02\x05\x03\x04\x04\x01\x05\x03\x01", // 圀
+ 0x5701: "\x02\x05\x04\x01\x01\x01\x02\x05\x01\x01", // 圁
+ 0x5702: "\x02\x05\x01\x03\x05\x03\x03\x03\x04\x01", // 圂
+ 0x5703: "\x02\x05\x01\x02\x05\x01\x01\x02\x04\x01", // 圃
+ 0x5704: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01", // 圄
+ 0x5705: "\x05\x04\x02\x05\x04\x03\x01\x01\x02\x01", // 圅
+ 0x5706: "\x02\x05\x02\x05\x01\x02\x05\x03\x04\x01", // 圆
+ 0x5707: "\x02\x05\x03\x04\x01\x02\x05\x01\x02\x02\x01", // 圇
+ 0x5708: "\x02\x05\x04\x03\x01\x01\x03\x04\x05\x05\x01", // 圈
+ 0x5709: "\x02\x05\x01\x02\x01\x04\x03\x01\x01\x02\x01", // 圉
+ 0x570a: "\x02\x05\x01\x01\x02\x01\x02\x05\x01\x01\x01", // 圊
+ 0x570b: "\x02\x05\x01\x02\x05\x01\x01\x05\x03\x04\x01", // 國
+ 0x570c: "\x02\x05\x02\x05\x02\x01\x03\x02\x05\x02\x02\x01", // 圌
+ 0x570d: "\x02\x05\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01", // 圍
+ 0x570e: "\x02\x05\x05\x04\x02\x05\x01\x01\x01\x03\x04\x01", // 圎
+ 0x570f: "\x02\x05\x04\x03\x01\x01\x03\x04\x05\x01\x05\x01", // 圏
+ 0x5710: "\x02\x05\x02\x05\x02\x02\x01\x04\x01\x05\x03\x01", // 圐
+ 0x5711: "\x02\x05\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04\x01", // 圑
+ 0x5712: "\x02\x05\x01\x02\x01\x02\x05\x01\x03\x02\x05\x04\x01", // 園
+ 0x5713: "\x02\x05\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04\x01", // 圓
+ 0x5714: "\x02\x05\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01\x01", // 圔
+ 0x5715: "\x02\x05\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01", // 圕
+ 0x5716: "\x02\x05\x02\x05\x01\x01\x02\x02\x05\x02\x05\x01\x01\x01", // 圖
+ 0x5717: "\x02\x05\x05\x04\x01\x02\x02\x05\x02\x02\x01\x01\x01\x01", // 圗
+ 0x5718: "\x02\x05\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04\x01", // 團
+ 0x5719: "\x02\x05\x03\x04\x01\x03\x02\x05\x02\x02\x01\x01\x01\x01", // 圙
+ 0x571a: "\x02\x05\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x01", // 圚
+ 0x571b: "\x02\x05\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02\x01", // 圛
+ 0x571c: "\x02\x05\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04\x01", // 圜
+ 0x571d: "\x02\x05\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x01", // 圝
+ 0x571e: "\x02\x05\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x01\x02\x03\x04\x01", // 圞
+ 0x571f: "\x01\x02\x01", // 土
+ 0x5720: "\x01\x02\x01\x05", // 圠
+ 0x5721: "\x01\x02\x01\x04", // 圡
+ 0x5722: "\x01\x02\x01\x01\x02", // 圢
+ 0x5723: "\x05\x04\x01\x02\x01", // 圣
+ 0x5724: "\x01\x02\x01\x02\x04", // 圤
+ 0x5725: "\x01\x02\x01\x03\x05", // 圥
+ 0x5726: "\x01\x02\x01\x03\x04", // 圦
+ 0x5727: "\x01\x03\x01\x02\x01", // 圧
+ 0x5728: "\x01\x03\x02\x01\x02\x01", // 在
+ 0x5729: "\x01\x02\x01\x01\x01\x02", // 圩
+ 0x572a: "\x01\x02\x01\x03\x01\x05", // 圪
+ 0x572b: "\x01\x02\x01\x03\x01\x05", // 圫
+ 0x572c: "\x01\x02\x01\x01\x01\x05", // 圬
+ 0x572d: "\x01\x02\x01\x01\x02\x01", // 圭
+ 0x572e: "\x01\x02\x01\x05\x01\x05", // 圮
+ 0x572f: "\x01\x02\x01\x05\x01\x05", // 圯
+ 0x5730: "\x01\x02\x01\x05\x02\x05", // 地
+ 0x5731: "\x03\x01\x03\x01\x02\x01", // 圱
+ 0x5732: "\x01\x02\x01\x03\x01\x02", // 圲
+ 0x5733: "\x01\x02\x01\x03\x02\x02", // 圳
+ 0x5734: "\x01\x02\x01\x03\x05\x04", // 圴
+ 0x5735: "\x01\x02\x01\x02\x01\x01", // 圵
+ 0x5736: "\x01\x03\x04\x01\x02\x01", // 圶
+ 0x5737: "\x01\x02\x01\x01\x02\x04", // 圷
+ 0x5738: "\x01\x02\x01\x02\x05\x02", // 圸
+ 0x5739: "\x01\x02\x01\x04\x01\x03", // 圹
+ 0x573a: "\x01\x02\x01\x05\x03\x03", // 场
+ 0x573b: "\x01\x02\x01\x03\x03\x01\x02", // 圻
+ 0x573c: "\x02\x05\x01\x01\x01\x02\x01", // 圼
+ 0x573d: "\x01\x02\x01\x03\x05\x03\x03", // 圽
+ 0x573e: "\x01\x02\x01\x03\x05\x04", // 圾
+ 0x573f: "\x01\x02\x01\x03\x04\x03\x02", // 圿
+ 0x5740: "\x01\x02\x01\x02\x01\x02\x01", // 址
+ 0x5741: "\x01\x02\x01\x03\x05\x01\x05", // 坁
+ 0x5742: "\x01\x02\x01\x03\x03\x05\x04", // 坂
+ 0x5743: "\x01\x02\x01\x01\x01\x03\x05", // 坃
+ 0x5744: "\x01\x02\x01\x03\x05\x05\x04", // 坄
+ 0x5745: "\x01\x02\x01\x03\x04\x04\x05", // 坅
+ 0x5746: "\x01\x02\x01\x03\x01\x03\x04", // 坆
+ 0x5747: "\x01\x02\x01\x03\x05\x04\x01", // 均
+ 0x5748: "\x01\x02\x01\x04\x05\x03\x05", // 坈
+ 0x5749: "\x01\x02\x01\x01\x05\x02\x05", // 坉
+ 0x574a: "\x01\x02\x01\x04\x01\x05\x03", // 坊
+ 0x574b: "\x01\x02\x01\x03\x04\x05\x03", // 坋
+ 0x574c: "\x03\x04\x05\x03\x01\x02\x01", // 坌
+ 0x574d: "\x01\x02\x01\x03\x05\x04\x01", // 坍
+ 0x574e: "\x01\x02\x01\x03\x05\x03\x04", // 坎
+ 0x574f: "\x01\x02\x01\x01\x03\x02\x04", // 坏
+ 0x5750: "\x03\x04\x03\x04\x01\x02\x01", // 坐
+ 0x5751: "\x01\x02\x01\x04\x01\x03\x05", // 坑
+ 0x5752: "\x01\x05\x03\x05\x01\x02\x01", // 坒
+ 0x5753: "\x01\x01\x03\x02\x01\x02\x01", // 坓
+ 0x5754: "\x02\x05\x03\x04\x01\x02\x01", // 坔
+ 0x5755: "\x03\x03\x02\x04\x01\x02\x01", // 坕
+ 0x5756: "\x01\x01\x03\x05\x01\x02\x01", // 坖
+ 0x5757: "\x01\x02\x01\x05\x01\x03\x04", // 块
+ 0x5758: "\x01\x02\x01\x01\x05\x05\x01", // 坘
+ 0x5759: "\x01\x05\x05\x05\x01\x02\x01", // 坙
+ 0x575a: "\x02\x02\x05\x04\x01\x02\x01", // 坚
+ 0x575b: "\x01\x02\x01\x01\x01\x05\x04", // 坛
+ 0x575c: "\x01\x02\x01\x01\x03\x05\x03", // 坜
+ 0x575d: "\x01\x02\x01\x02\x05\x03\x04", // 坝
+ 0x575e: "\x01\x02\x01\x03\x05\x05\x01", // 坞
+ 0x575f: "\x01\x02\x01\x04\x01\x03\x04", // 坟
+ 0x5760: "\x05\x02\x03\x04\x01\x02\x01", // 坠
+ 0x5761: "\x01\x02\x01\x05\x03\x02\x05\x04", // 坡
+ 0x5762: "\x01\x02\x01\x04\x03\x01\x01\x02", // 坢
+ 0x5763: "\x02\x04\x03\x04\x05\x01\x02\x01", // 坣
+ 0x5764: "\x01\x02\x01\x02\x05\x01\x01\x02", // 坤
+ 0x5765: "\x01\x02\x01\x02\x05\x01\x01\x01", // 坥
+ 0x5766: "\x01\x02\x01\x02\x05\x01\x01\x01", // 坦
+ 0x5767: "\x01\x02\x01\x01\x03\x02\x05\x01", // 坧
+ 0x5768: "\x01\x02\x01\x04\x04\x05\x03\x05", // 坨
+ 0x5769: "\x01\x02\x01\x01\x02\x02\x01\x01", // 坩
+ 0x576a: "\x01\x02\x01\x01\x04\x03\x01\x02", // 坪
+ 0x576b: "\x01\x02\x01\x02\x01\x02\x05\x01", // 坫
+ 0x576c: "\x01\x02\x01\x03\x03\x05\x04\x04", // 坬
+ 0x576d: "\x01\x02\x01\x05\x01\x03\x03\x05", // 坭
+ 0x576e: "\x01\x02\x01\x05\x04\x02\x05\x01", // 坮
+ 0x576f: "\x01\x02\x01\x01\x03\x02\x04\x01", // 坯
+ 0x5770: "\x01\x02\x01\x02\x05\x01\x02\x05\x01", // 坰
+ 0x5771: "\x01\x02\x01\x02\x05\x01\x03\x04", // 坱
+ 0x5772: "\x01\x02\x01\x05\x01\x05\x03\x02", // 坲
+ 0x5773: "\x01\x02\x01\x05\x05\x04\x05\x03", // 坳
+ 0x5774: "\x01\x02\x01\x03\x04\x01\x02\x01", // 坴
+ 0x5775: "\x01\x02\x01\x03\x02\x01\x02\x01", // 坵
+ 0x5776: "\x01\x02\x01\x05\x05\x04\x01\x04", // 坶
+ 0x5777: "\x01\x02\x01\x01\x02\x05\x01\x02", // 坷
+ 0x5778: "\x01\x02\x01\x03\x05\x02\x05\x01", // 坸
+ 0x5779: "\x01\x02\x01\x04\x04\x05\x03\x04", // 坹
+ 0x577a: "\x01\x02\x01\x01\x03\x05\x04\x04", // 坺
+ 0x577b: "\x01\x02\x01\x03\x05\x01\x05\x04", // 坻
+ 0x577c: "\x01\x02\x01\x03\x03\x01\x02\x04", // 坼
+ 0x577d: "\x01\x02\x01\x03\x04\x04\x05\x04", // 坽
+ 0x577e: "\x01\x02\x01\x04\x04\x05\x01\x02", // 坾
+ 0x577f: "\x01\x02\x01\x03\x02\x01\x02\x04", // 坿
+ 0x5780: "\x01\x02\x01\x03\x04\x03\x01\x02", // 垀
+ 0x5781: "\x01\x02\x01\x03\x01\x01\x03\x04", // 垁
+ 0x5782: "\x03\x01\x02\x01\x02\x02\x01\x01", // 垂
+ 0x5783: "\x01\x02\x01\x04\x01\x04\x03\x01", // 垃
+ 0x5784: "\x01\x03\x05\x03\x04\x01\x02\x01", // 垄
+ 0x5785: "\x01\x02\x01\x01\x03\x05\x03\x04", // 垅
+ 0x5786: "\x01\x02\x01\x02\x01\x05\x01\x03", // 垆
+ 0x5787: "\x01\x02\x01\x02\x05\x02\x05\x01", // 垇
+ 0x5788: "\x03\x02\x01\x05\x04\x01\x02\x01", // 垈
+ 0x5789: "\x01\x02\x01\x03\x05\x05\x01\x05", // 垉
+ 0x578a: "\x01\x02\x01\x05\x01\x05\x01\x05", // 垊
+ 0x578b: "\x01\x01\x03\x02\x02\x02\x01\x02\x01", // 型
+ 0x578c: "\x01\x02\x01\x02\x05\x01\x02\x05\x01", // 垌
+ 0x578d: "\x01\x02\x01\x03\x02\x05\x01\x01\x01", // 垍
+ 0x578e: "\x01\x02\x01\x03\x05\x04\x02\x05\x01", // 垎
+ 0x578f: "\x01\x02\x01\x05\x01\x01\x01\x01\x02", // 垏
+ 0x5790: "\x04\x01\x03\x05\x03\x04\x01\x02\x01", // 垐
+ 0x5791: "\x01\x02\x01\x03\x05\x04\x03\x05\x04", // 垑
+ 0x5792: "\x05\x04\x05\x04\x05\x04\x01\x02\x01", // 垒
+ 0x5793: "\x01\x02\x01\x04\x01\x05\x03\x03\x04", // 垓
+ 0x5794: "\x01\x02\x05\x02\x02\x01\x01\x02\x01", // 垔
+ 0x5795: "\x03\x03\x01\x02\x05\x01\x01\x02\x01", // 垕
+ 0x5796: "\x01\x02\x01\x03\x02\x05\x01\x05\x01", // 垖
+ 0x5797: "\x01\x02\x01\x03\x04\x01\x05\x03\x04", // 垗
+ 0x5798: "\x01\x02\x01\x03\x02\x01\x03\x04\x04", // 垘
+ 0x5799: "\x01\x02\x01\x02\x04\x03\x01\x03\x05", // 垙
+ 0x579a: "\x01\x02\x01\x01\x02\x01\x01\x02\x01", // 垚
+ 0x579b: "\x01\x02\x01\x03\x05\x01\x02\x03\x04", // 垛
+ 0x579c: "\x01\x02\x01\x05\x03\x01\x02\x03\x04", // 垜
+ 0x579d: "\x01\x02\x01\x03\x05\x01\x03\x05\x05", // 垝
+ 0x579e: "\x01\x02\x01\x04\x04\x05\x03\x01\x05", // 垞
+ 0x579f: "\x01\x02\x01\x04\x03\x01\x01\x01\x02", // 垟
+ 0x57a0: "\x01\x02\x01\x05\x01\x01\x05\x03\x04", // 垠
+ 0x57a1: "\x03\x02\x01\x05\x03\x04\x01\x02\x01", // 垡
+ 0x57a2: "\x01\x02\x01\x03\x03\x01\x02\x05\x01", // 垢
+ 0x57a3: "\x01\x02\x01\x01\x02\x05\x01\x01\x01", // 垣
+ 0x57a4: "\x01\x02\x01\x01\x05\x04\x01\x02\x01", // 垤
+ 0x57a5: "\x01\x02\x01\x03\x04\x01\x02\x05\x01", // 垥
+ 0x57a6: "\x05\x01\x01\x05\x03\x04\x01\x02\x01", // 垦
+ 0x57a7: "\x01\x02\x01\x03\x02\x05\x02\x05\x01", // 垧
+ 0x57a8: "\x01\x02\x01\x04\x04\x05\x01\x02\x04", // 垨
+ 0x57a9: "\x01\x02\x02\x04\x03\x01\x01\x02\x01", // 垩
+ 0x57aa: "\x01\x02\x01\x04\x03\x01\x01\x03\x02", // 垪
+ 0x57ab: "\x01\x02\x01\x03\x05\x04\x01\x02\x01", // 垫
+ 0x57ac: "\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 垬
+ 0x57ad: "\x01\x02\x01\x01\x02\x02\x04\x03\x01", // 垭
+ 0x57ae: "\x01\x02\x01\x01\x03\x04\x01\x01\x05", // 垮
+ 0x57af: "\x01\x02\x01\x01\x03\x04\x04\x05\x04", // 垯
+ 0x57b0: "\x01\x02\x01\x02\x01\x01\x01\x02\x04", // 垰
+ 0x57b1: "\x01\x02\x01\x02\x04\x03\x05\x01\x01", // 垱
+ 0x57b2: "\x01\x02\x01\x02\x05\x02\x05\x01\x05", // 垲
+ 0x57b3: "\x01\x02\x01\x03\x03\x02\x01\x01\x02", // 垳
+ 0x57b4: "\x01\x02\x01\x04\x01\x03\x04\x05\x02", // 垴
+ 0x57b5: "\x01\x02\x01\x04\x04\x05\x05\x03\x01", // 垵
+ 0x57b6: "\x01\x02\x01\x04\x01\x04\x03\x01\x01\x02", // 垶
+ 0x57b7: "\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 垷
+ 0x57b8: "\x01\x02\x01\x04\x04\x05\x01\x01\x03\x05", // 垸
+ 0x57b9: "\x01\x02\x01\x01\x01\x01\x03\x05\x02", // 垹
+ 0x57ba: "\x01\x02\x01\x03\x04\x04\x03\x05\x02\x01", // 垺
+ 0x57bb: "\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 垻
+ 0x57bc: "\x03\x03\x02\x03\x05\x05\x04\x01\x02\x01", // 垼
+ 0x57bd: "\x04\x04\x01\x03\x03\x01\x02\x01\x02\x01", // 垽
+ 0x57be: "\x01\x02\x01\x02\x05\x01\x01\x01\x01\x02", // 垾
+ 0x57bf: "\x01\x02\x01\x04\x01\x03\x05\x04\x05\x02", // 垿
+ 0x57c0: "\x03\x01\x02\x02\x01\x01\x03\x05\x01\x01", // 埀
+ 0x57c1: "\x01\x02\x01\x02\x05\x02\x03\x04\x04\x05", // 埁
+ 0x57c2: "\x01\x02\x01\x01\x02\x05\x01\x01\x03\x04", // 埂
+ 0x57c3: "\x01\x02\x01\x05\x04\x03\x01\x01\x03\x04", // 埃
+ 0x57c4: "\x01\x02\x01\x03\x05\x04\x01\x01\x01\x02", // 埄
+ 0x57c5: "\x05\x02\x04\x01\x05\x03\x01\x02\x01", // 埅
+ 0x57c6: "\x01\x02\x01\x03\x05\x03\x05\x01\x01\x02", // 埆
+ 0x57c7: "\x01\x02\x01\x05\x04\x02\x05\x01\x01\x02", // 埇
+ 0x57c8: "\x01\x02\x01\x05\x04\x03\x04\x03\x05\x04", // 埈
+ 0x57c9: "\x01\x02\x01\x01\x03\x04\x03\x04\x03\x04", // 埉
+ 0x57ca: "\x02\x05\x02\x02\x05\x03\x04\x01\x02\x01", // 埊
+ 0x57cb: "\x01\x02\x01\x02\x05\x01\x01\x02\x01\x01", // 埋
+ 0x57cc: "\x01\x02\x01\x04\x05\x01\x01\x05\x03\x04", // 埌
+ 0x57cd: "\x01\x02\x01\x02\x05\x01\x02\x05\x01\x01", // 埍
+ 0x57ce: "\x01\x02\x01\x01\x03\x05\x05\x03\x04", // 城
+ 0x57cf: "\x01\x02\x01\x03\x02\x01\x05\x05\x04", // 埏
+ 0x57d0: "\x01\x02\x01\x05\x01\x01\x04\x05\x05\x04", // 埐
+ 0x57d1: "\x01\x02\x01\x03\x03\x01\x02\x01\x02\x01", // 埑
+ 0x57d2: "\x01\x02\x01\x03\x04\x04\x03\x01\x02\x04", // 埒
+ 0x57d3: "\x01\x02\x01\x03\x04\x04\x03\x01\x02\x04", // 埓
+ 0x57d4: "\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 埔
+ 0x57d5: "\x01\x02\x01\x02\x05\x01\x01\x01\x02\x01", // 埕
+ 0x57d6: "\x01\x02\x01\x01\x02\x02\x03\x02\x03\x05", // 埖
+ 0x57d7: "\x01\x02\x01\x02\x01\x02\x01\x02\x03\x03", // 埗
+ 0x57d8: "\x01\x02\x01\x02\x05\x01\x01\x01\x02\x04", // 埘
+ 0x57d9: "\x01\x02\x01\x02\x05\x01\x02\x05\x03\x04", // 埙
+ 0x57da: "\x01\x02\x01\x02\x05\x01\x02\x05\x03\x04", // 埚
+ 0x57db: "\x01\x02\x01\x02\x05\x03\x04\x02\x05\x01", // 埛
+ 0x57dc: "\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x01", // 埜
+ 0x57dd: "\x01\x02\x01\x03\x04\x04\x05\x04\x05\x04\x04", // 埝
+ 0x57de: "\x01\x02\x01\x04\x04\x05\x01\x02\x01\x03\x04", // 埞
+ 0x57df: "\x01\x02\x01\x01\x02\x05\x01\x01\x05\x03\x04", // 域
+ 0x57e0: "\x01\x02\x01\x03\x02\x05\x01\x05\x01\x01\x02", // 埠
+ 0x57e1: "\x01\x02\x01\x01\x02\x01\x05\x05\x01\x02\x01", // 埡
+ 0x57e2: "\x01\x02\x01\x04\x03\x01\x01\x03\x04\x05\x05", // 埢
+ 0x57e3: "\x01\x02\x01\x04\x01\x03\x04\x03\x04\x01\x02", // 埣
+ 0x57e4: "\x01\x02\x01\x03\x02\x05\x01\x01\x03\x01\x02", // 埤
+ 0x57e5: "\x01\x02\x01\x01\x01\x02\x01\x02\x05\x01\x01", // 埥
+ 0x57e6: "\x01\x02\x01\x04\x04\x05\x03\x05\x04\x05\x05", // 埦
+ 0x57e7: "\x01\x02\x01\x02\x05\x01\x01\x01\x01\x03\x04", // 埧
+ 0x57e8: "\x01\x02\x01\x03\x04\x01\x02\x05\x01\x02\x02", // 埨
+ 0x57e9: "\x01\x02\x01\x03\x05\x05\x01\x01\x02", // 埩
+ 0x57ea: "\x01\x02\x01\x04\x04\x05\x03\x04\x01\x02\x01", // 埪
+ 0x57eb: "\x01\x02\x01\x02\x04\x03\x02\x05\x02\x05\x01", // 埫
+ 0x57ec: "\x01\x02\x01\x01\x02\x05\x01\x01\x02\x03\x04", // 埬
+ 0x57ed: "\x01\x02\x01\x05\x01\x01\x02\x04\x01\x03\x04", // 埭
+ 0x57ee: "\x01\x02\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 埮
+ 0x57ef: "\x01\x02\x01\x01\x03\x04\x02\x05\x01\x01\x05", // 埯
+ 0x57f0: "\x01\x02\x01\x03\x04\x04\x03\x01\x02\x03\x04", // 埰
+ 0x57f1: "\x01\x02\x01\x02\x01\x01\x02\x03\x04\x05\x04", // 埱
+ 0x57f2: "\x01\x02\x01\x01\x01\x01\x03\x04\x01\x01\x02", // 埲
+ 0x57f3: "\x01\x02\x01\x03\x05\x03\x02\x01\x05\x01\x01", // 埳
+ 0x57f4: "\x01\x02\x01\x01\x02\x02\x05\x01\x01\x01\x01", // 埴
+ 0x57f5: "\x01\x02\x01\x03\x01\x02\x01\x02\x02\x01\x01", // 埵
+ 0x57f6: "\x01\x02\x01\x03\x04\x01\x02\x01\x03\x05\x04", // 埶
+ 0x57f7: "\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04", // 執
+ 0x57f8: "\x01\x02\x01\x02\x05\x01\x01\x03\x05\x03\x03", // 埸
+ 0x57f9: "\x01\x02\x01\x04\x01\x04\x03\x01\x02\x05\x01", // 培
+ 0x57fa: "\x01\x02\x02\x01\x01\x01\x03\x04\x01\x02\x01", // 基
+ 0x57fb: "\x01\x02\x01\x04\x01\x02\x05\x01\x05\x02\x01", // 埻
+ 0x57fc: "\x01\x02\x01\x01\x03\x04\x01\x02\x05\x01\x02", // 埼
+ 0x57fd: "\x01\x02\x01\x05\x01\x01\x04\x05\x02\x05\x02", // 埽
+ 0x57fe: "\x01\x02\x02\x01\x01\x01\x05\x04\x01\x02\x01", // 埾
+ 0x57ff: "\x04\x04\x01\x05\x01\x03\x03\x05\x01\x02\x01", // 埿
+ 0x5800: "\x01\x02\x01\x05\x01\x03\x05\x02\x02\x05\x02", // 堀
+ 0x5801: "\x01\x02\x01\x02\x05\x01\x01\x01\x02\x03\x04", // 堁
+ 0x5802: "\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x01", // 堂
+ 0x5803: "\x04\x01\x05\x03\x04\x01\x05\x03\x01\x02\x01", // 堃
+ 0x5804: "\x01\x02\x01\x03\x02\x01\x05\x01\x01\x03\x05", // 堄
+ 0x5805: "\x01\x02\x05\x01\x02\x05\x05\x04\x01\x02\x01", // 堅
+ 0x5806: "\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 堆
+ 0x5807: "\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01", // 堇
+ 0x5808: "\x01\x02\x01\x02\x05\x04\x03\x01\x02\x05\x02", // 堈
+ 0x5809: "\x01\x02\x01\x04\x01\x05\x04\x02\x05\x01\x01", // 堉
+ 0x580a: "\x01\x02\x01\x05\x05\x01\x02\x01\x01\x02\x01", // 堊
+ 0x580b: "\x01\x02\x01\x03\x05\x01\x01\x03\x05\x01\x01", // 堋
+ 0x580c: "\x01\x02\x01\x02\x05\x01\x02\x02\x05\x01\x01", // 堌
+ 0x580d: "\x01\x02\x01\x03\x05\x02\x05\x01\x03\x05\x04", // 堍
+ 0x580e: "\x01\x02\x01\x01\x02\x01\x03\x04\x03\x05\x04", // 堎
+ 0x580f: "\x01\x02\x03\x04\x04\x01\x05\x03\x01\x02\x01", // 堏
+ 0x5810: "\x01\x02\x01\x01\x03\x01\x02\x01\x01\x02\x01", // 堐
+ 0x5811: "\x01\x05\x02\x01\x03\x03\x01\x02\x01\x02\x01", // 堑
+ 0x5812: "\x01\x02\x01\x02\x05\x01\x01\x01\x05\x03\x05", // 堒
+ 0x5813: "\x01\x02\x01\x02\x05\x02\x01\x03\x01\x01\x02", // 堓
+ 0x5814: "\x01\x02\x01\x04\x05\x03\x04\x01\x02\x03\x04", // 堔
+ 0x5815: "\x05\x02\x01\x03\x02\x05\x01\x01\x01\x02\x01", // 堕
+ 0x5816: "\x01\x02\x01\x05\x05\x05\x03\x02\x05\x03\x04\x01", // 堖
+ 0x5817: "\x01\x02\x01\x04\x04\x05\x03\x04\x01\x03\x04\x04", // 堗
+ 0x5818: "\x01\x02\x01\x04\x03\x01\x01\x03\x04\x01\x02\x01", // 堘
+ 0x5819: "\x01\x02\x01\x01\x02\x05\x02\x02\x01\x01\x02\x01", // 堙
+ 0x581a: "\x01\x02\x01\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 堚
+ 0x581b: "\x01\x02\x01\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 堛
+ 0x581c: "\x01\x02\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 堜
+ 0x581d: "\x01\x02\x01\x02\x05\x05\x02\x05\x02\x05\x01", // 堝
+ 0x581e: "\x01\x02\x01\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 堞
+ 0x581f: "\x01\x02\x01\x05\x05\x01\x03\x05\x03\x03\x03\x04", // 堟
+ 0x5820: "\x01\x02\x01\x03\x02\x05\x01\x03\x01\x01\x03\x04", // 堠
+ 0x5821: "\x03\x02\x02\x05\x01\x01\x02\x03\x04\x01\x02\x01", // 堡
+ 0x5822: "\x01\x02\x01\x03\x02\x02\x05\x01\x01\x02\x03\x04", // 堢
+ 0x5823: "\x01\x02\x01\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 堣
+ 0x5824: "\x01\x02\x01\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 堤
+ 0x5825: "\x05\x04\x05\x02\x03\x03\x01\x03\x04\x01\x02\x01", // 堥
+ 0x5826: "\x01\x02\x01\x01\x05\x03\x05\x03\x02\x05\x01\x01", // 堦
+ 0x5827: "\x01\x02\x01\x01\x03\x02\x05\x02\x02\x01\x03\x04", // 堧
+ 0x5828: "\x01\x02\x01\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 堨
+ 0x5829: "\x01\x02\x01\x04\x04\x02\x01\x02\x05\x01\x01\x01", // 堩
+ 0x582a: "\x01\x02\x01\x01\x02\x02\x01\x01\x01\x03\x04\x05", // 堪
+ 0x582b: "\x01\x02\x01\x03\x04\x05\x02\x03\x04\x03\x05\x04", // 堫
+ 0x582c: "\x01\x02\x01\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 堬
+ 0x582d: "\x01\x02\x01\x03\x02\x05\x01\x01\x01\x01\x02\x01", // 堭
+ 0x582e: "\x01\x02\x01\x02\x05\x01\x02\x05\x01\x01\x01\x05", // 堮
+ 0x582f: "\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 堯
+ 0x5830: "\x01\x02\x01\x01\x02\x05\x01\x01\x05\x03\x01\x05", // 堰
+ 0x5831: "\x01\x02\x01\x04\x03\x01\x01\x02\x05\x02\x05\x04", // 報
+ 0x5832: "\x05\x01\x01\x05\x04\x05\x02\x01\x02\x01", // 堲
+ 0x5833: "\x01\x02\x01\x05\x02\x01\x03\x02\x05\x01\x01\x01", // 堳
+ 0x5834: "\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 場
+ 0x5835: "\x01\x02\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 堵
+ 0x5836: "\x01\x02\x01\x01\x03\x01\x02\x01\x02\x05\x01\x01", // 堶
+ 0x5837: "\x01\x02\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 堷
+ 0x5838: "\x01\x02\x01\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 堸
+ 0x5839: "\x01\x02\x01\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 堹
+ 0x583a: "\x01\x02\x01\x02\x05\x01\x02\x01\x03\x04\x03\x02", // 堺
+ 0x583b: "\x04\x04\x01\x05\x01\x01\x01\x01\x02\x01\x02\x01", // 堻
+ 0x583c: "\x01\x02\x01\x01\x02\x01\x01\x02\x04\x01\x02\x01", // 堼
+ 0x583d: "\x01\x02\x01\x02\x05\x02\x02\x01\x01\x02\x01\x02\x01", // 堽
+ 0x583e: "\x01\x02\x01\x01\x01\x01\x03\x04\x02\x05\x01\x01", // 堾
+ 0x583f: "\x01\x02\x01\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 堿
+ 0x5840: "\x01\x02\x01\x05\x01\x03\x04\x03\x01\x01\x03\x02", // 塀
+ 0x5841: "\x02\x05\x01\x02\x01\x04\x01\x03\x04\x01\x02\x01", // 塁
+ 0x5842: "\x01\x02\x01\x01\x02\x02\x01\x03\x04\x05\x01\x05", // 塂
+ 0x5843: "\x01\x02\x01\x01\x02\x02\x04\x01\x05\x03\x02\x05", // 塃
+ 0x5844: "\x01\x02\x01\x02\x05\x02\x02\x01\x04\x01\x05\x03", // 塄
+ 0x5845: "\x01\x02\x01\x03\x02\x01\x01\x01\x03\x05\x05\x04", // 塅
+ 0x5846: "\x01\x02\x01\x04\x01\x02\x02\x03\x04\x05\x01\x05", // 塆
+ 0x5847: "\x01\x02\x01\x04\x04\x05\x01\x02\x05\x01\x01\x01", // 塇
+ 0x5848: "\x05\x01\x01\x05\x04\x01\x05\x03\x05\x01\x02\x01", // 塈
+ 0x5849: "\x01\x02\x01\x04\x01\x03\x04\x03\x04\x02\x05\x01\x01", // 塉
+ 0x584a: "\x01\x02\x01\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 塊
+ 0x584b: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x01\x02\x01", // 塋
+ 0x584c: "\x01\x02\x01\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 塌
+ 0x584d: "\x02\x05\x01\x01\x04\x03\x01\x01\x03\x04\x01\x02\x01", // 塍
+ 0x584e: "\x01\x02\x01\x04\x04\x05\x03\x04\x03\x04\x02\x05\x01", // 塎
+ 0x584f: "\x01\x02\x01\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 塏
+ 0x5850: "\x01\x02\x01\x01\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 塐
+ 0x5851: "\x04\x03\x01\x05\x02\x03\x03\x05\x01\x01\x01\x02\x01", // 塑
+ 0x5852: "\x01\x02\x01\x02\x05\x01\x01\x01\x02\x01\x01\x02\x04", // 塒
+ 0x5853: "\x01\x02\x01\x04\x05\x02\x05\x01\x01\x04\x01\x03\x04", // 塓
+ 0x5854: "\x01\x02\x01\x01\x02\x02\x03\x04\x01\x02\x05\x01", // 塔
+ 0x5855: "\x01\x02\x01\x03\x04\x05\x04\x05\x04\x01\x05\x04\x01", // 塕
+ 0x5856: "\x01\x02\x01\x03\x01\x02\x02\x01\x01\x03\x05\x03\x04", // 塖
+ 0x5857: "\x04\x04\x01\x03\x04\x01\x01\x02\x03\x04\x01\x02\x01", // 塗
+ 0x5858: "\x01\x02\x01\x04\x01\x03\x05\x01\x01\x02\x02\x05\x01", // 塘
+ 0x5859: "\x01\x02\x01\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 塙
+ 0x585a: "\x01\x02\x01\x04\x05\x01\x03\x05\x03\x03\x04\x03\x04", // 塚
+ 0x585b: "\x01\x02\x01\x01\x02\x05\x02\x02\x01\x01\x02\x03\x04", // 塛
+ 0x585c: "\x01\x02\x01\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 塜
+ 0x585d: "\x01\x02\x01\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03", // 塝
+ 0x585e: "\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x01\x02\x01", // 塞
+ 0x585f: "\x01\x02\x02\x01\x03\x05\x04\x03\x05\x01\x02\x01", // 塟
+ 0x5860: "\x01\x02\x01\x03\x02\x05\x01\x05\x01\x04\x05\x04", // 塠
+ 0x5861: "\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x05\x03\x04", // 塡
+ 0x5862: "\x01\x02\x01\x03\x02\x05\x01\x01\x05\x04\x04\x04\x04", // 塢
+ 0x5863: "\x04\x04\x01\x02\x05\x01\x01\x01\x02\x01\x01\x02\x01", // 塣
+ 0x5864: "\x01\x02\x01\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 塤
+ 0x5865: "\x01\x02\x01\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 塥
+ 0x5866: "\x05\x02\x01\x02\x05\x01\x01\x01\x02\x01\x02\x01", // 塦
+ 0x5867: "\x01\x02\x01\x04\x03\x01\x03\x04\x02\x05\x02\x02\x01", // 塧
+ 0x5868: "\x01\x02\x01\x01\x02\x02\x01\x03\x04\x02\x04\x04\x04", // 塨
+ 0x5869: "\x01\x02\x01\x03\x01\x02\x05\x01\x02\x05\x02\x02\x01", // 塩
+ 0x586a: "\x01\x02\x01\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01", // 塪
+ 0x586b: "\x01\x02\x01\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 填
+ 0x586c: "\x01\x02\x01\x01\x03\x03\x02\x05\x01\x01\x02\x03\x04", // 塬
+ 0x586d: "\x01\x02\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 塭
+ 0x586e: "\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x01\x02\x04", // 塮
+ 0x586f: "\x01\x02\x01\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 塯
+ 0x5870: "\x04\x04\x01\x03\x01\x05\x05\x04\x01\x04\x01\x02\x01", // 塰
+ 0x5871: "\x04\x05\x01\x01\x05\x04\x03\x05\x01\x01\x01\x02\x01", // 塱
+ 0x5872: "\x01\x02\x01\x03\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 塲
+ 0x5873: "\x01\x02\x01\x03\x05\x04\x01\x01\x01\x02\x04\x05\x04", // 塳
+ 0x5874: "\x01\x02\x01\x02\x05\x02\x03\x05\x01\x01\x03\x05\x01\x01", // 塴
+ 0x5875: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x01\x02\x01", // 塵
+ 0x5876: "\x01\x02\x01\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 塶
+ 0x5877: "\x01\x02\x01\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01", // 塷
+ 0x5878: "\x01\x02\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 塸
+ 0x5879: "\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02\x01\x02\x01", // 塹
+ 0x587a: "\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x01", // 塺
+ 0x587b: "\x01\x02\x01\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 塻
+ 0x587c: "\x01\x02\x01\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04", // 塼
+ 0x587d: "\x01\x02\x01\x01\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04", // 塽
+ 0x587e: "\x04\x01\x02\x05\x01\x05\x02\x01\x03\x05\x04\x01\x02\x01", // 塾
+ 0x587f: "\x01\x02\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 塿
+ 0x5880: "\x01\x02\x01\x05\x01\x03\x02\x04\x01\x03\x04\x03\x01\x01\x02", // 墀
+ 0x5881: "\x01\x02\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 墁
+ 0x5882: "\x01\x02\x01\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 墂
+ 0x5883: "\x01\x02\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05", // 境
+ 0x5884: "\x01\x02\x01\x01\x03\x02\x01\x01\x02\x03\x04\x05\x03\x04", // 墄
+ 0x5885: "\x02\x05\x01\x01\x02\x01\x01\x05\x04\x05\x02\x01\x02\x01", // 墅
+ 0x5886: "\x01\x02\x01\x01\x03\x02\x02\x01\x05\x04\x05\x02\x05\x02", // 墆
+ 0x5887: "\x01\x02\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02", // 墇
+ 0x5888: "\x01\x02\x01\x01\x02\x02\x01\x01\x01\x03\x04\x05\x05\x03", // 墈
+ 0x5889: "\x01\x02\x01\x04\x01\x03\x05\x01\x01\x02\x05\x01\x01\x02", // 墉
+ 0x588a: "\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04\x01\x02\x01", // 墊
+ 0x588b: "\x01\x02\x01\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 墋
+ 0x588c: "\x01\x02\x01\x04\x01\x03\x01\x02\x02\x01\x04\x04\x04\x04", // 墌
+ 0x588d: "\x03\x02\x05\x01\x01\x03\x05\x01\x05\x03\x05\x01\x02\x01", // 墍
+ 0x588e: "\x01\x02\x01\x04\x01\x02\x05\x01\x05\x02\x01\x05\x02", // 墎
+ 0x588f: "\x05\x02\x01\x03\x03\x05\x04\x04\x01\x02\x04\x01\x02\x01", // 墏
+ 0x5890: "\x01\x02\x01\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01", // 墐
+ 0x5891: "\x01\x02\x01\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01", // 墑
+ 0x5892: "\x01\x02\x01\x04\x01\x04\x03\x02\x05\x03\x04\x02\x05\x01", // 墒
+ 0x5893: "\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04\x01\x02\x01", // 墓
+ 0x5894: "\x01\x02\x01\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 墔
+ 0x5895: "\x01\x02\x01\x01\x02\x01\x02\x01\x01\x05\x04\x04\x04\x04", // 墕
+ 0x5896: "\x01\x02\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 墖
+ 0x5897: "\x01\x02\x01\x04\x03\x02\x05\x01\x02\x01\x02\x05\x01\x01", // 増
+ 0x5898: "\x01\x02\x01\x01\x02\x02\x05\x01\x01\x01\x02\x03\x01\x05", // 墘
+ 0x5899: "\x01\x02\x01\x01\x02\x04\x03\x01\x02\x05\x02\x05\x01\x01", // 墙
+ 0x589a: "\x01\x02\x01\x04\x04\x01\x05\x03\x04\x04\x01\x02\x03\x04", // 墚
+ 0x589b: "\x01\x02\x01\x05\x01\x03\x01\x01\x02\x03\x04\x01\x02\x04", // 墛
+ 0x589c: "\x05\x02\x04\x03\x01\x03\x05\x03\x03\x03\x04\x01\x02\x01", // 墜
+ 0x589d: "\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 墝
+ 0x589e: "\x01\x02\x01\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 增
+ 0x589f: "\x01\x02\x01\x02\x01\x05\x03\x01\x05\x02\x02\x04\x03\x01", // 墟
+ 0x58a0: "\x01\x02\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 墠
+ 0x58a1: "\x01\x02\x01\x04\x03\x01\x01\x01\x02\x04\x03\x01\x02\x05\x01", // 墡
+ 0x58a2: "\x01\x02\x01\x05\x04\x03\x03\x04\x05\x01\x05\x03\x05\x05\x04", // 墢
+ 0x58a3: "\x01\x02\x01\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 墣
+ 0x58a4: "\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 墤
+ 0x58a5: "\x01\x02\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 墥
+ 0x58a6: "\x01\x02\x01\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 墦
+ 0x58a7: "\x01\x02\x01\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 墧
+ 0x58a8: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x01", // 墨
+ 0x58a9: "\x01\x02\x01\x04\x01\x02\x05\x01\x05\x02\x01\x03\x01\x03\x04", // 墩
+ 0x58aa: "\x04\x01\x02\x05\x01\x05\x02\x01\x03\x01\x03\x04\x01\x02\x01", // 墪
+ 0x58ab: "\x01\x02\x01\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x02\x04", // 墫
+ 0x58ac: "\x05\x02\x05\x05\x01\x03\x05\x03\x03\x03\x04\x01\x02\x01", // 墬
+ 0x58ad: "\x01\x02\x01\x01\x03\x05\x05\x03\x04\x02\x05\x02\x02\x01", // 墭
+ 0x58ae: "\x05\x02\x01\x03\x01\x02\x01\x02\x05\x01\x01\x01\x02\x01", // 墮
+ 0x58af: "\x04\x04\x02\x01\x03\x01\x02\x01\x02\x05\x01\x01\x01\x02\x01", // 墯
+ 0x58b0: "\x01\x02\x01\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 墰
+ 0x58b1: "\x01\x02\x01\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 墱
+ 0x58b2: "\x01\x02\x01\x03\x01\x01\x02\x02\x02\x02\x01\x04\x04\x04\x04", // 墲
+ 0x58b3: "\x01\x02\x01\x01\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 墳
+ 0x58b4: "\x01\x02\x01\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 墴
+ 0x58b5: "\x01\x02\x01\x01\x04\x05\x02\x04\x04\x04\x04\x01\x01\x05\x04", // 墵
+ 0x58b6: "\x01\x02\x01\x01\x02\x01\x04\x03\x01\x01\x01\x02\x04\x05\x04", // 墶
+ 0x58b7: "\x01\x02\x01\x01\x02\x02\x01\x01\x02\x02\x01\x01\x02", // 墷
+ 0x58b8: "\x01\x02\x01\x01\x02\x02\x01\x02\x01\x03\x02\x05\x01\x01", // 墸
+ 0x58b9: "\x01\x02\x01\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01", // 墹
+ 0x58ba: "\x01\x02\x01\x03\x02\x05\x04\x03\x01\x02\x03\x04\x01\x03\x04", // 墺
+ 0x58bb: "\x01\x02\x01\x01\x02\x03\x04\x03\x04\x01\x02\x05\x02\x05\x01\x01", // 墻
+ 0x58bc: "\x01\x02\x05\x01\x01\x01\x02\x05\x02\x03\x05\x05\x04\x01\x02\x01", // 墼
+ 0x58bd: "\x01\x02\x01\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x03\x04", // 墽
+ 0x58be: "\x03\x04\x04\x03\x05\x03\x03\x05\x01\x01\x02\x03\x04\x01\x02\x01", // 墾
+ 0x58bf: "\x01\x02\x01\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 墿
+ 0x58c0: "\x01\x02\x01\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 壀
+ 0x58c1: "\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x01\x02\x01", // 壁
+ 0x58c2: "\x05\x01\x03\x01\x02\x02\x01\x03\x04\x03\x05\x05\x04\x01\x02\x01", // 壂
+ 0x58c3: "\x01\x02\x01\x01\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x01\x01", // 壃
+ 0x58c4: "\x01\x02\x03\x04\x05\x04\x05\x02\x03\x01\x02\x03\x04\x01\x02\x01", // 壄
+ 0x58c5: "\x04\x01\x05\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02\x01", // 壅
+ 0x58c6: "\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x01\x02\x01", // 壆
+ 0x58c7: "\x01\x02\x01\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 壇
+ 0x58c8: "\x01\x02\x01\x04\x01\x02\x05\x02\x05\x01\x01\x03\x01\x02\x03\x04", // 壈
+ 0x58c9: "\x01\x02\x01\x02\x01\x05\x03\x01\x05\x01\x03\x05\x03\x03\x03\x04", // 壉
+ 0x58ca: "\x01\x02\x01\x01\x02\x02\x05\x02\x02\x01\x04\x01\x03\x05\x03\x04", // 壊
+ 0x58cb: "\x01\x02\x01\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x01\x02\x01", // 壋
+ 0x58cc: "\x01\x02\x01\x04\x01\x03\x04\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 壌
+ 0x58cd: "\x04\x04\x01\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02\x01\x02\x01", // 壍
+ 0x58ce: "\x01\x02\x01\x03\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 壎
+ 0x58cf: "\x01\x02\x01\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01", // 壏
+ 0x58d0: "\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x02\x01", // 壐
+ 0x58d1: "\x02\x01\x04\x05\x01\x03\x04\x03\x04\x02\x05\x01\x05\x04\x01\x02\x01", // 壑
+ 0x58d2: "\x01\x02\x01\x01\x02\x02\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 壒
+ 0x58d3: "\x01\x03\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x04\x04\x01\x02\x01", // 壓
+ 0x58d4: "\x01\x02\x01\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 壔
+ 0x58d5: "\x01\x02\x01\x04\x01\x02\x05\x01\x04\x05\x01\x03\x05\x03\x03\x03\x04", // 壕
+ 0x58d6: "\x01\x02\x01\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02", // 壖
+ 0x58d7: "\x01\x02\x01\x05\x01\x01\x02\x01\x04\x04\x04\x04\x02\x05\x02\x02\x01", // 壗
+ 0x58d8: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x01\x02\x01", // 壘
+ 0x58d9: "\x01\x02\x01\x04\x01\x03\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 壙
+ 0x58da: "\x01\x02\x01\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 壚
+ 0x58db: "\x01\x02\x01\x02\x05\x01\x01\x02\x05\x01\x01\x03\x05\x03\x02\x01\x05\x01\x01", // 壛
+ 0x58dc: "\x01\x02\x01\x02\x05\x01\x01\x01\x04\x05\x02\x04\x04\x04\x04\x01\x01\x05\x04", // 壜
+ 0x58dd: "\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04", // 壝
+ 0x58de: "\x01\x02\x01\x04\x01\x02\x05\x02\x02\x01\x02\x04\x01\x03\x04\x03\x05\x03\x04", // 壞
+ 0x58df: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x05\x01\x05\x01\x01\x01\x01\x02\x01", // 壟
+ 0x58e0: "\x01\x02\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x05\x01\x05\x01\x01\x01", // 壠
+ 0x58e1: "\x02\x01\x04\x05\x01\x03\x04\x03\x04\x02\x05\x01\x01\x01\x05\x04\x01\x02\x01", // 壡
+ 0x58e2: "\x01\x02\x01\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 壢
+ 0x58e3: "\x01\x02\x01\x01\x02\x02\x01\x01\x01\x05\x05\x04\x05\x05\x04\x05\x03\x02\x01\x02", // 壣
+ 0x58e4: "\x01\x02\x01\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 壤
+ 0x58e5: "\x01\x02\x01\x01\x03\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x01", // 壥
+ 0x58e6: "\x01\x02\x01\x01\x02\x02\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 壦
+ 0x58e7: "\x01\x02\x01\x02\x05\x01\x02\x05\x01\x01\x03\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 壧
+ 0x58e8: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x01\x02\x01", // 壨
+ 0x58e9: "\x01\x02\x01\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x01\x01", // 壩
+ 0x58ea: "\x01\x02\x01\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x05\x01\x05", // 壪
+ 0x58eb: "\x01\x02\x01", // 士
+ 0x58ec: "\x03\x01\x02\x01", // 壬
+ 0x58ed: "\x01\x02\x01\x05\x02", // 壭
+ 0x58ee: "\x04\x01\x02\x01\x02\x01", // 壮
+ 0x58ef: "\x05\x02\x01\x03\x01\x02\x01", // 壯
+ 0x58f0: "\x01\x02\x01\x05\x02\x01\x03", // 声
+ 0x58f1: "\x01\x02\x01\x04\x05\x03\x05", // 壱
+ 0x58f2: "\x01\x02\x01\x04\x05\x03\x05", // 売
+ 0x58f3: "\x01\x02\x01\x04\x05\x03\x05", // 壳
+ 0x58f4: "\x01\x02\x01\x02\x05\x01\x04\x03\x01", // 壴
+ 0x58f5: "\x01\x02\x01\x01\x02\x01\x01\x02\x01", // 壵
+ 0x58f6: "\x01\x02\x01\x04\x05\x02\x02\x04\x03\x01", // 壶
+ 0x58f7: "\x01\x02\x01\x04\x05\x02\x05\x01\x02\x02\x01", // 壷
+ 0x58f8: "\x01\x02\x01\x04\x05\x01\x02\x02\x04\x03\x01", // 壸
+ 0x58f9: "\x01\x02\x01\x04\x05\x01\x02\x05\x01\x04\x03\x01", // 壹
+ 0x58fa: "\x01\x02\x01\x04\x05\x02\x01\x05\x05\x01\x02\x01", // 壺
+ 0x58fb: "\x01\x02\x01\x05\x02\x01\x03\x04\x02\x05\x01\x01", // 壻
+ 0x58fc: "\x01\x02\x01\x04\x05\x01\x02\x01\x05\x05\x01\x02\x01", // 壼
+ 0x58fd: "\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 壽
+ 0x58fe: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x05\x01\x05", // 壾
+ 0x58ff: "\x01\x02\x01\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x02\x04", // 壿
+ 0x5900: "\x01\x01\x05\x02\x05\x01\x02\x01\x02\x05\x01\x01\x02\x04", // 夀
+ 0x5901: "\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x02\x02\x05\x01\x01", // 夁
+ 0x5902: "\x03\x05\x04", // 夂
+ 0x5903: "\x05\x03\x05\x04", // 夃
+ 0x5904: "\x03\x05\x04\x02\x04", // 处
+ 0x5905: "\x03\x05\x04\x01\x05\x02", // 夅
+ 0x5906: "\x03\x05\x04\x01\x01\x01\x02", // 夆
+ 0x5907: "\x03\x05\x04\x02\x05\x01\x02\x01", // 备
+ 0x5908: "\x03\x05\x04\x04\x03\x01\x02\x03\x04", // 夈
+ 0x5909: "\x04\x01\x03\x02\x03\x04\x03\x05\x04", // 変
+ 0x590a: "\x03\x05\x04", // 夊
+ 0x590b: "\x05\x04\x03\x04\x03\x05\x04", // 夋
+ 0x590c: "\x01\x02\x01\x03\x04\x03\x05\x04", // 夌
+ 0x590d: "\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 复
+ 0x590e: "\x03\x04\x03\x04\x01\x02\x01\x03\x05\x04", // 夎
+ 0x590f: "\x01\x03\x02\x05\x01\x01\x01\x03\x05\x04", // 夏
+ 0x5910: "\x03\x05\x02\x05\x03\x04\x02\x05\x01\x01\x01\x03\x05\x04", // 夐
+ 0x5911: "\x04\x01\x01\x01\x02\x05\x01\x04\x03\x03\x04\x04\x03\x03\x04\x03\x05\x04", // 夑
+ 0x5912: "\x01\x03\x02\x05\x01\x01\x01\x02\x01\x02\x01\x05\x01\x05\x03\x04\x03\x05\x04", // 夒
+ 0x5913: "\x01\x03\x02\x05\x01\x01\x01\x03\x05\x01\x05\x01\x01\x03\x04\x03\x05\x04", // 夓
+ 0x5914: "\x04\x03\x01\x03\x02\x05\x01\x01\x01\x02\x01\x02\x01\x05\x01\x05\x03\x04\x03\x05\x04", // 夔
+ 0x5915: "\x03\x05\x04", // 夕
+ 0x5916: "\x03\x05\x04\x02\x04", // 外
+ 0x5917: "\x03\x05\x04\x05\x05", // 夗
+ 0x5918: "\x03\x05\x04\x05\x02", // 夘
+ 0x5919: "\x03\x05\x01\x03\x05\x04", // 夙
+ 0x591a: "\x03\x05\x04\x03\x05\x04", // 多
+ 0x591b: "\x05\x01\x01\x03\x05\x04", // 夛
+ 0x591c: "\x04\x01\x03\x02\x03\x05\x04\x04", // 夜
+ 0x591d: "\x03\x05\x04\x03\x01\x01\x02\x01", // 夝
+ 0x591e: "\x03\x05\x04\x02\x04\x02\x05\x01\x03\x05", // 夞
+ 0x591f: "\x03\x05\x02\x05\x01\x03\x05\x04\x03\x05\x04", // 够
+ 0x5920: "\x03\x05\x04\x03\x05\x04\x03\x05\x02\x05\x01", // 夠
+ 0x5921: "\x03\x05\x04\x03\x05\x04\x01\x02\x01\x02\x05\x01", // 夡
+ 0x5922: "\x01\x02\x02\x02\x05\x02\x02\x01\x04\x05\x03\x05\x04", // 夢
+ 0x5923: "\x04\x01\x05\x04\x02\x05\x02\x02\x01\x04\x05\x03\x05\x04", // 夣
+ 0x5924: "\x03\x05\x04\x04\x04\x05\x01\x02\x05\x01\x02\x01\x03\x04", // 夤
+ 0x5925: "\x02\x05\x01\x01\x01\x02\x03\x04\x03\x05\x04\x03\x05\x04", // 夥
+ 0x5926: "\x01\x02\x02\x01\x01\x01\x03\x04\x05\x03\x05\x04\x03\x05\x04", // 夦
+ 0x5927: "\x01\x03\x04", // 大
+ 0x5928: "\x01\x05\x04", // 夨
+ 0x5929: "\x01\x01\x03\x04", // 天
+ 0x592a: "\x01\x03\x04\x04", // 太
+ 0x592b: "\x01\x01\x03\x04", // 夫
+ 0x592c: "\x05\x01\x03\x04", // 夬
+ 0x592d: "\x03\x01\x03\x04", // 夭
+ 0x592e: "\x02\x05\x01\x03\x04", // 央
+ 0x592f: "\x01\x03\x04\x05\x03", // 夯
+ 0x5930: "\x01\x03\x04\x03\x02", // 夰
+ 0x5931: "\x03\x01\x01\x03\x04", // 失
+ 0x5932: "\x01\x03\x04\x01\x02", // 夲
+ 0x5933: "\x01\x03\x04\x01\x01", // 夳
+ 0x5934: "\x04\x04\x01\x03\x04", // 头
+ 0x5935: "\x01\x03\x04\x02\x03\x04", // 夵
+ 0x5936: "\x01\x03\x04\x01\x03\x04", // 夶
+ 0x5937: "\x01\x05\x01\x05\x03\x04", // 夷
+ 0x5938: "\x01\x03\x04\x01\x01\x05", // 夸
+ 0x5939: "\x01\x04\x03\x01\x03\x04", // 夹
+ 0x593a: "\x01\x03\x04\x01\x02\x04", // 夺
+ 0x593b: "\x01\x03\x04\x02\x05\x01", // 夻
+ 0x593c: "\x01\x03\x04\x03\x02\x02", // 夼
+ 0x593d: "\x01\x03\x04\x01\x01\x05\x04", // 夽
+ 0x593e: "\x01\x03\x04\x03\x04\x03\x04", // 夾
+ 0x593f: "\x01\x03\x04\x05\x02\x01\x05", // 夿
+ 0x5940: "\x01\x03\x02\x04\x01\x03\x04", // 奀
+ 0x5941: "\x01\x03\x04\x01\x03\x04\x05", // 奁
+ 0x5942: "\x03\x05\x02\x05\x01\x03\x04", // 奂
+ 0x5943: "\x01\x03\x04\x03\x05\x01\x05\x04", // 奃
+ 0x5944: "\x01\x03\x04\x02\x05\x01\x01\x05", // 奄
+ 0x5945: "\x01\x03\x04\x03\x05\x03\x05\x02", // 奅
+ 0x5946: "\x01\x03\x04\x01\x05\x01\x05", // 奆
+ 0x5947: "\x01\x03\x04\x01\x02\x05\x01\x02", // 奇
+ 0x5948: "\x01\x03\x04\x01\x01\x02\x03\x04", // 奈
+ 0x5949: "\x01\x01\x01\x03\x04\x01\x01\x02", // 奉
+ 0x594a: "\x01\x02\x01\x01\x02\x01\x01\x05\x04", // 奊
+ 0x594b: "\x01\x03\x04\x02\x05\x01\x02\x01", // 奋
+ 0x594c: "\x02\x01\x02\x05\x01\x01\x03\x04", // 奌
+ 0x594d: "\x04\x03\x01\x01\x03\x04\x03\x02", // 奍
+ 0x594e: "\x01\x03\x04\x01\x02\x01\x01\x02\x01", // 奎
+ 0x594f: "\x01\x01\x01\x03\x04\x01\x01\x03\x04", // 奏
+ 0x5950: "\x03\x05\x02\x05\x03\x04\x01\x03\x04", // 奐
+ 0x5951: "\x01\x01\x01\x02\x05\x03\x01\x03\x04", // 契
+ 0x5952: "\x01\x03\x04\x04\x01\x05\x03\x03\x04", // 奒
+ 0x5953: "\x01\x03\x04\x03\x05\x04\x03\x05\x04", // 奓
+ 0x5954: "\x01\x03\x04\x01\x02\x01\x03\x02", // 奔
+ 0x5955: "\x04\x01\x03\x02\x03\x04\x01\x03\x02", // 奕
+ 0x5956: "\x04\x01\x02\x03\x05\x04\x01\x03\x04", // 奖
+ 0x5957: "\x01\x03\x04\x01\x02\x01\x01\x01\x05\x04", // 套
+ 0x5958: "\x05\x02\x01\x03\x01\x02\x01\x01\x03\x04", // 奘
+ 0x5959: "\x05\x04\x01\x03\x04\x02\x05\x01\x01\x05", // 奙
+ 0x595a: "\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04", // 奚
+ 0x595b: "\x01\x03\x04\x02\x05\x01\x01\x03\x05\x01\x01", // 奛
+ 0x595c: "\x02\x01\x01\x01\x02\x01\x01\x01\x01\x03\x04", // 奜
+ 0x595d: "\x01\x03\x04\x03\x05\x01\x02\x01\x02\x05\x01", // 奝
+ 0x595e: "\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 奞
+ 0x595f: "\x01\x03\x04\x03\x05\x01\x01\x03\x05\x01\x01", // 奟
+ 0x5960: "\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x03\x04", // 奠
+ 0x5961: "\x01\x03\x02\x05\x01\x01\x01\x01\x03\x04\x03\x02", // 奡
+ 0x5962: "\x01\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01", // 奢
+ 0x5963: "\x01\x01\x03\x04\x02\x05\x01\x01\x03\x05\x01\x01", // 奣
+ 0x5964: "\x01\x03\x04\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 奤
+ 0x5965: "\x03\x02\x05\x04\x03\x01\x02\x03\x04\x01\x03\x04", // 奥
+ 0x5966: "\x05\x04\x05\x02\x03\x03\x05\x04\x05\x03\x01\x03\x04", // 奦
+ 0x5967: "\x03\x02\x05\x03\x04\x03\x01\x02\x03\x04\x01\x03\x04", // 奧
+ 0x5968: "\x04\x01\x02\x03\x04\x04\x03\x01\x02\x04\x01\x03\x04", // 奨
+ 0x5969: "\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 奩
+ 0x596a: "\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02\x04", // 奪
+ 0x596b: "\x01\x03\x04\x04\x04\x01\x03\x02\x01\x01\x05\x05\x02\x01\x02", // 奫
+ 0x596c: "\x05\x02\x01\x03\x03\x05\x04\x04\x01\x02\x04\x01\x03\x04", // 奬
+ 0x596d: "\x01\x01\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x03\x04", // 奭
+ 0x596e: "\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x01\x02\x01", // 奮
+ 0x596f: "\x01\x03\x04\x02\x01\x02\x01\x01\x03\x01\x02\x03\x03\x05\x03\x04", // 奯
+ 0x5970: "\x02\x05\x02\x02\x01\x02\x05\x02\x02\x01\x02\x05\x02\x02\x01\x01\x03\x04", // 奰
+ 0x5971: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x01\x03\x04", // 奱
+ 0x5972: "\x01\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 奲
+ 0x5973: "\x05\x03\x01", // 女
+ 0x5974: "\x05\x03\x01\x05\x04", // 奴
+ 0x5975: "\x05\x03\x01\x01\x02", // 奵
+ 0x5976: "\x05\x03\x01\x05\x03", // 奶
+ 0x5977: "\x05\x03\x01\x03\x01\x02", // 奷
+ 0x5978: "\x05\x03\x01\x01\x01\x02", // 奸
+ 0x5979: "\x05\x03\x01\x05\x02\x05", // 她
+ 0x597a: "\x05\x03\x01\x03\x05\x04", // 奺
+ 0x597b: "\x05\x03\x01\x05\x03\x01", // 奻
+ 0x597c: "\x05\x03\x01\x03\x01\x05", // 奼
+ 0x597d: "\x05\x03\x01\x05\x02\x01", // 好
+ 0x597e: "\x05\x03\x01\x02\x05\x02", // 奾
+ 0x597f: "\x03\x05\x04\x05\x03\x01", // 奿
+ 0x5980: "\x05\x01\x05\x05\x03\x01", // 妀
+ 0x5981: "\x05\x03\x01\x03\x05\x04", // 妁
+ 0x5982: "\x05\x03\x01\x02\x05\x01", // 如
+ 0x5983: "\x05\x03\x01\x05\x01\x05", // 妃
+ 0x5984: "\x04\x01\x05\x05\x03\x01", // 妄
+ 0x5985: "\x05\x03\x01\x01\x02\x01", // 妅
+ 0x5986: "\x04\x01\x02\x05\x03\x01", // 妆
+ 0x5987: "\x05\x03\x01\x05\x01\x01", // 妇
+ 0x5988: "\x05\x03\x01\x05\x05\x01", // 妈
+ 0x5989: "\x05\x03\x01\x04\x05\x03\x05", // 妉
+ 0x598a: "\x05\x03\x01\x03\x01\x02\x01", // 妊
+ 0x598b: "\x05\x03\x01\x01\x01\x03\x04", // 妋
+ 0x598c: "\x05\x03\x01\x01\x01\x03\x02", // 妌
+ 0x598d: "\x05\x03\x01\x01\x01\x03\x02", // 妍
+ 0x598e: "\x05\x03\x01\x03\x04\x03\x02", // 妎
+ 0x598f: "\x05\x03\x01\x04\x01\x03\x04", // 妏
+ 0x5990: "\x05\x03\x01\x03\x04\x05\x04", // 妐
+ 0x5991: "\x05\x03\x01\x05\x02\x01\x05", // 妑
+ 0x5992: "\x05\x03\x01\x04\x05\x01\x03", // 妒
+ 0x5993: "\x05\x03\x01\x01\x02\x05\x04", // 妓
+ 0x5994: "\x05\x03\x01\x04\x01\x03\x05", // 妔
+ 0x5995: "\x05\x03\x01\x02\x05\x01\x02", // 妕
+ 0x5996: "\x05\x03\x01\x03\x01\x03\x04", // 妖
+ 0x5997: "\x05\x03\x01\x03\x04\x04\x05", // 妗
+ 0x5998: "\x05\x03\x01\x01\x01\x05\x04", // 妘
+ 0x5999: "\x05\x03\x01\x02\x03\x04\x03", // 妙
+ 0x599a: "\x05\x03\x01\x01\x03\x02\x04", // 妚
+ 0x599b: "\x05\x02\x02\x01\x05\x03\x01", // 妛
+ 0x599c: "\x05\x03\x01\x05\x01\x03\x04", // 妜
+ 0x599d: "\x05\x02\x01\x03\x05\x03\x01", // 妝
+ 0x599e: "\x05\x03\x01\x05\x02\x01\x01", // 妞
+ 0x599f: "\x02\x05\x01\x01\x05\x03\x01", // 妟
+ 0x59a0: "\x05\x03\x01\x02\x05\x03\x04", // 妠
+ 0x59a1: "\x05\x03\x01\x03\x03\x01\x02", // 妡
+ 0x59a2: "\x05\x03\x01\x03\x04\x05\x03", // 妢
+ 0x59a3: "\x05\x03\x01\x01\x05\x03\x05", // 妣
+ 0x59a4: "\x05\x03\x01\x05\x04\x05\x02", // 妤
+ 0x59a5: "\x03\x04\x04\x03\x05\x03\x01", // 妥
+ 0x59a6: "\x05\x03\x01\x01\x01\x01\x02", // 妦
+ 0x59a7: "\x05\x03\x01\x01\x01\x03\x05", // 妧
+ 0x59a8: "\x05\x03\x01\x04\x01\x05\x03", // 妨
+ 0x59a9: "\x05\x03\x01\x01\x01\x03\x05", // 妩
+ 0x59aa: "\x05\x03\x01\x01\x03\x04\x05", // 妪
+ 0x59ab: "\x05\x03\x01\x04\x03\x05\x04", // 妫
+ 0x59ac: "\x05\x03\x01\x01\x03\x02\x05\x01", // 妬
+ 0x59ad: "\x05\x03\x01\x01\x03\x05\x04\x04", // 妭
+ 0x59ae: "\x05\x03\x01\x05\x01\x03\x03\x05", // 妮
+ 0x59af: "\x05\x03\x01\x02\x05\x01\x02\x01", // 妯
+ 0x59b0: "\x05\x03\x01\x03\x01\x02\x01\x01", // 妰
+ 0x59b1: "\x05\x03\x01\x05\x03\x02\x05\x01", // 妱
+ 0x59b2: "\x05\x03\x01\x02\x05\x01\x01\x01", // 妲
+ 0x59b3: "\x05\x03\x01\x03\x05\x02\x03\x04", // 妳
+ 0x59b4: "\x03\x05\x03\x05\x05\x05\x03\x01", // 妴
+ 0x59b5: "\x05\x03\x01\x04\x01\x01\x02\x01", // 妵
+ 0x59b6: "\x05\x03\x01\x04\x01\x05\x05\x04", // 妶
+ 0x59b7: "\x05\x03\x01\x03\x01\x01\x03\x04", // 妷
+ 0x59b8: "\x05\x03\x01\x01\x02\x05\x01\x02", // 妸
+ 0x59b9: "\x05\x03\x01\x01\x01\x02\x03\x04", // 妹
+ 0x59ba: "\x05\x03\x01\x01\x01\x02\x03\x04", // 妺
+ 0x59bb: "\x01\x05\x01\x01\x02\x05\x03\x01", // 妻
+ 0x59bc: "\x05\x03\x01\x04\x05\x04\x03\x04", // 妼
+ 0x59bd: "\x05\x03\x01\x02\x05\x01\x01\x02", // 妽
+ 0x59be: "\x04\x01\x04\x03\x01\x05\x03\x01", // 妾
+ 0x59bf: "\x05\x03\x02\x05\x01\x05\x03\x01", // 妿
+ 0x59c0: "\x05\x03\x01\x03\x01\x02\x03\x04", // 姀
+ 0x59c1: "\x05\x03\x01\x03\x05\x02\x05\x01", // 姁
+ 0x59c2: "\x05\x03\x01\x03\x04\x05\x04", // 姂
+ 0x59c3: "\x05\x03\x01\x01\x02\x01\x02\x01", // 姃
+ 0x59c4: "\x05\x03\x01\x05\x01\x05\x01\x05", // 姄
+ 0x59c5: "\x05\x03\x01\x04\x03\x01\x01\x02", // 姅
+ 0x59c6: "\x05\x03\x01\x05\x05\x04\x01\x04", // 姆
+ 0x59c7: "\x03\x02\x01\x02\x04\x05\x03\x01", // 姇
+ 0x59c8: "\x05\x03\x01\x03\x04\x04\x05\x04", // 姈
+ 0x59c9: "\x05\x03\x01\x01\x02\x05\x02", // 姉
+ 0x59ca: "\x05\x03\x01\x03\x05\x02\x03", // 姊
+ 0x59cb: "\x05\x03\x01\x05\x04\x02\x05\x01", // 始
+ 0x59cc: "\x05\x03\x01\x02\x05\x02\x01\x01", // 姌
+ 0x59cd: "\x05\x03\x01\x02\x05\x02\x02\x01", // 姍
+ 0x59ce: "\x05\x03\x01\x02\x05\x01\x03\x04", // 姎
+ 0x59cf: "\x05\x03\x01\x01\x02\x02\x01\x01", // 姏
+ 0x59d0: "\x05\x03\x01\x02\x05\x01\x01\x01", // 姐
+ 0x59d1: "\x05\x03\x01\x01\x02\x02\x05\x01", // 姑
+ 0x59d2: "\x05\x03\x01\x05\x04\x03\x04", // 姒
+ 0x59d3: "\x05\x03\x01\x03\x01\x01\x02\x01", // 姓
+ 0x59d4: "\x03\x01\x02\x03\x04\x05\x03\x01", // 委
+ 0x59d5: "\x02\x01\x02\x01\x03\x05\x05\x03\x01", // 姕
+ 0x59d6: "\x05\x03\x01\x01\x05\x01\x05", // 姖
+ 0x59d7: "\x05\x03\x01\x03\x05\x03\x05\x01", // 姗
+ 0x59d8: "\x05\x03\x01\x04\x03\x01\x01\x03\x02", // 姘
+ 0x59d9: "\x05\x03\x01\x03\x02\x03\x01\x02\x01", // 姙
+ 0x59da: "\x05\x03\x01\x03\x04\x01\x05\x03\x04", // 姚
+ 0x59db: "\x05\x03\x01\x02\x05\x01\x02\x05\x01", // 姛
+ 0x59dc: "\x04\x03\x01\x01\x02\x01\x05\x03\x01", // 姜
+ 0x59dd: "\x05\x03\x01\x03\x01\x01\x02\x03\x04", // 姝
+ 0x59de: "\x05\x03\x01\x01\x02\x01\x02\x05\x01", // 姞
+ 0x59df: "\x05\x03\x01\x04\x01\x05\x03\x03\x04", // 姟
+ 0x59e0: "\x05\x03\x01\x03\x02\x05\x02\x05\x01", // 姠
+ 0x59e1: "\x05\x03\x01\x03\x01\x02\x02\x05\x01", // 姡
+ 0x59e2: "\x05\x03\x01\x05\x04\x02\x05\x01\x01", // 姢
+ 0x59e3: "\x05\x03\x01\x04\x01\x03\x04\x03\x04", // 姣
+ 0x59e4: "\x05\x03\x01\x03\x03\x01\x02\x05\x01", // 姤
+ 0x59e5: "\x05\x03\x01\x01\x02\x01\x03\x03\x05", // 姥
+ 0x59e6: "\x05\x03\x01\x05\x03\x01\x05\x03\x01", // 姦
+ 0x59e7: "\x05\x03\x01\x05\x03\x01\x01\x01\x02", // 姧
+ 0x59e8: "\x05\x03\x01\x01\x05\x01\x05\x03\x04", // 姨
+ 0x59e9: "\x05\x03\x01\x03\x01\x01\x02\x01\x02", // 姩
+ 0x59ea: "\x05\x03\x01\x01\x05\x04\x01\x02\x01", // 姪
+ 0x59eb: "\x05\x03\x01\x01\x02\x05\x01\x02\x05", // 姫
+ 0x59ec: "\x05\x03\x01\x01\x02\x02\x05\x01\x02\x05", // 姬
+ 0x59ed: "\x05\x03\x05\x03\x05\x03\x05\x03\x01", // 姭
+ 0x59ee: "\x05\x03\x01\x01\x02\x05\x01\x01\x01", // 姮
+ 0x59ef: "\x05\x03\x01\x02\x04\x03\x01\x03\x05", // 姯
+ 0x59f0: "\x05\x03\x01\x03\x05\x02\x05\x01\x01", // 姰
+ 0x59f1: "\x05\x03\x01\x01\x03\x04\x01\x01\x05", // 姱
+ 0x59f2: "\x05\x03\x01\x04\x04\x05\x05\x03\x01", // 姲
+ 0x59f3: "\x05\x03\x01\x03\x05\x04\x02\x05\x01", // 姳
+ 0x59f4: "\x01\x03\x05\x04\x02\x02\x05\x03\x01", // 姴
+ 0x59f5: "\x05\x03\x01\x03\x05\x01\x02\x05\x02", // 姵
+ 0x59f6: "\x05\x03\x01\x03\x04\x01\x02\x05\x01", // 姶
+ 0x59f7: "\x05\x03\x01\x01\x03\x02\x05\x01\x01", // 姷
+ 0x59f8: "\x05\x03\x01\x01\x01\x03\x01\x01\x02", // 姸
+ 0x59f9: "\x05\x03\x01\x04\x04\x05\x03\x01\x05", // 姹
+ 0x59fa: "\x05\x03\x01\x03\x01\x02\x01\x03\x05", // 姺
+ 0x59fb: "\x05\x03\x01\x02\x05\x01\x03\x04\x01", // 姻
+ 0x59fc: "\x05\x03\x01\x03\x05\x04\x03\x05\x04", // 姼
+ 0x59fd: "\x05\x03\x01\x03\x05\x01\x03\x05\x05", // 姽
+ 0x59fe: "\x05\x03\x01\x03\x04\x01\x01\x02\x01", // 姾
+ 0x59ff: "\x04\x01\x03\x05\x03\x04\x05\x03\x01", // 姿
+ 0x5a00: "\x05\x03\x01\x01\x01\x03\x05\x03\x04", // 娀
+ 0x5a01: "\x01\x03\x01\x05\x03\x01\x05\x03\x04", // 威
+ 0x5a02: "\x05\x03\x01\x01\x02\x02\x01\x03\x04", // 娂
+ 0x5a03: "\x05\x03\x01\x01\x02\x01\x01\x02\x01", // 娃
+ 0x5a04: "\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 娄
+ 0x5a05: "\x05\x03\x01\x01\x02\x02\x04\x03\x01", // 娅
+ 0x5a06: "\x05\x03\x01\x01\x05\x03\x01\x03\x05", // 娆
+ 0x5a07: "\x05\x03\x01\x03\x01\x03\x04\x03\x02", // 娇
+ 0x5a08: "\x04\x01\x02\x02\x03\x04\x05\x03\x01", // 娈
+ 0x5a09: "\x05\x03\x01\x02\x05\x01\x02\x01\x01\x05", // 娉
+ 0x5a0a: "\x05\x03\x01\x02\x05\x01\x01\x01\x03\x05", // 娊
+ 0x5a0b: "\x05\x03\x01\x02\x04\x03\x02\x05\x01\x01", // 娋
+ 0x5a0c: "\x05\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 娌
+ 0x5a0d: "\x05\x03\x01\x01\x03\x05\x05\x03\x04", // 娍
+ 0x5a0e: "\x01\x02\x01\x03\x03\x01\x02\x05\x03\x01", // 娎
+ 0x5a0f: "\x05\x03\x01\x01\x03\x05\x03\x03\x03\x04", // 娏
+ 0x5a10: "\x05\x03\x01\x03\x04\x04\x03\x05\x02\x01", // 娐
+ 0x5a11: "\x04\x04\x01\x02\x03\x04\x03\x05\x03\x01", // 娑
+ 0x5a12: "\x05\x03\x01\x03\x01\x05\x05\x04\x01\x04", // 娒
+ 0x5a13: "\x05\x03\x01\x05\x01\x03\x03\x01\x01\x05", // 娓
+ 0x5a14: "\x05\x03\x01\x01\x02\x02\x05\x01\x03\x05", // 娔
+ 0x5a15: "\x05\x03\x01\x01\x02\x05\x01\x02\x03\x04", // 娕
+ 0x5a16: "\x05\x03\x01\x02\x05\x01\x02\x01\x03\x04", // 娖
+ 0x5a17: "\x05\x03\x01\x03\x01\x02\x01\x05\x04", // 娗
+ 0x5a18: "\x05\x03\x01\x04\x05\x01\x01\x05\x03\x04", // 娘
+ 0x5a19: "\x05\x03\x01\x01\x05\x05\x05\x01\x02\x01", // 娙
+ 0x5a1a: "\x05\x03\x01\x02\x05\x01\x02\x01\x05\x03", // 娚
+ 0x5a1b: "\x05\x03\x01\x02\x05\x01\x05\x01\x03\x04", // 娛
+ 0x5a1c: "\x05\x03\x01\x05\x01\x01\x03\x05\x02", // 娜
+ 0x5a1d: "\x05\x03\x01\x01\x03\x02\x04\x02\x05\x01", // 娝
+ 0x5a1e: "\x05\x03\x01\x03\x04\x04\x03\x05\x03\x01", // 娞
+ 0x5a1f: "\x05\x03\x01\x02\x05\x01\x02\x05\x01\x01", // 娟
+ 0x5a20: "\x05\x03\x01\x01\x03\x01\x01\x05\x03\x04", // 娠
+ 0x5a21: "\x05\x03\x01\x01\x02\x01\x04\x05\x04\x04", // 娡
+ 0x5a22: "\x05\x03\x01\x03\x04\x04\x05\x02\x05\x01", // 娢
+ 0x5a23: "\x05\x03\x01\x04\x03\x05\x01\x05\x02\x03", // 娣
+ 0x5a24: "\x05\x02\x01\x03\x01\x02\x01\x05\x03\x01", // 娤
+ 0x5a25: "\x05\x03\x01\x03\x01\x02\x01\x05\x03\x04", // 娥
+ 0x5a26: "\x05\x03\x01\x03\x02\x01\x02\x01\x03\x04", // 娦
+ 0x5a27: "\x05\x03\x01\x04\x03\x02\x05\x01\x03\x05", // 娧
+ 0x5a28: "\x05\x03\x01\x02\x05\x01\x01\x01\x01\x02", // 娨
+ 0x5a29: "\x05\x03\x01\x03\x05\x02\x05\x01\x03\x05", // 娩
+ 0x5a2a: "\x05\x03\x01\x01\x02\x05\x01\x02\x05\x01", // 娪
+ 0x5a2b: "\x05\x03\x01\x03\x02\x01\x05\x05\x04", // 娫
+ 0x5a2c: "\x05\x03\x01\x01\x01\x02\x01\x02\x01\x05\x04", // 娬
+ 0x5a2d: "\x05\x03\x01\x05\x04\x03\x01\x01\x03\x04", // 娭
+ 0x5a2e: "\x05\x03\x01\x04\x01\x01\x01\x02\x05\x01", // 娮
+ 0x5a2f: "\x05\x03\x01\x02\x05\x01\x05\x01\x03\x04", // 娯
+ 0x5a30: "\x05\x03\x01\x03\x02\x05\x04\x03\x04", // 娰
+ 0x5a31: "\x05\x03\x01\x02\x05\x01\x01\x01\x03\x04", // 娱
+ 0x5a32: "\x05\x03\x01\x02\x05\x01\x02\x05\x03\x04", // 娲
+ 0x5a33: "\x05\x03\x01\x03\x01\x02\x03\x04\x02\x02", // 娳
+ 0x5a34: "\x05\x03\x01\x04\x02\x05\x01\x02\x03\x04", // 娴
+ 0x5a35: "\x05\x03\x01\x01\x02\x02\x01\x01\x01\x05\x04", // 娵
+ 0x5a36: "\x01\x02\x02\x01\x01\x01\x05\x04\x05\x03\x01", // 娶
+ 0x5a37: "\x05\x03\x01\x03\x01\x02\x01\x02\x02\x01\x01", // 娷
+ 0x5a38: "\x05\x03\x01\x01\x02\x02\x01\x01\x01\x03\x04", // 娸
+ 0x5a39: "\x05\x03\x01\x05\x01\x05\x04\x01\x05\x05\x04", // 娹
+ 0x5a3a: "\x05\x03\x01\x05\x04\x05\x04\x05\x04\x05\x04", // 娺
+ 0x5a3b: "\x05\x03\x01\x01\x02\x05\x01\x01\x02\x03\x04", // 娻
+ 0x5a3c: "\x05\x03\x01\x02\x05\x01\x01\x02\x05\x01\x01", // 娼
+ 0x5a3d: "\x05\x03\x01\x05\x01\x01\x02\x04\x01\x03\x04", // 娽
+ 0x5a3e: "\x05\x03\x01\x01\x03\x01\x02\x01\x01\x02\x01", // 娾
+ 0x5a3f: "\x05\x02\x01\x02\x05\x01\x02\x05\x03\x01", // 娿
+ 0x5a40: "\x05\x03\x01\x05\x02\x01\x02\x05\x01\x02", // 婀
+ 0x5a41: "\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 婁
+ 0x5a42: "\x05\x03\x01\x03\x02\x05\x01\x01\x02\x05\x02", // 婂
+ 0x5a43: "\x05\x03\x01\x04\x04\x05\x01\x01\x02\x03\x04", // 婃
+ 0x5a44: "\x05\x03\x01\x04\x01\x04\x03\x01\x02\x05\x01", // 婄
+ 0x5a45: "\x05\x03\x01\x03\x05\x04\x03\x01\x02\x03\x04", // 婅
+ 0x5a46: "\x04\x04\x01\x05\x03\x02\x05\x04\x05\x03\x01", // 婆
+ 0x5a47: "\x05\x03\x01\x03\x04\x04\x03\x01\x02\x03\x04", // 婇
+ 0x5a48: "\x05\x03\x01\x01\x02\x01\x03\x04\x03\x05\x04", // 婈
+ 0x5a49: "\x05\x03\x01\x04\x04\x05\x03\x05\x04\x05\x05", // 婉
+ 0x5a4a: "\x05\x03\x01\x01\x01\x02\x01\x03\x05\x03\x04", // 婊
+ 0x5a4b: "\x05\x03\x01\x02\x01\x05\x03\x01\x05\x03\x05", // 婋
+ 0x5a4c: "\x05\x03\x01\x02\x01\x01\x02\x03\x04\x05\x04", // 婌
+ 0x5a4d: "\x05\x03\x01\x01\x03\x04\x01\x02\x05\x01\x02", // 婍
+ 0x5a4e: "\x05\x03\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 婎
+ 0x5a4f: "\x05\x03\x01\x03\x05\x02\x05\x01\x03\x05\x04", // 婏
+ 0x5a50: "\x05\x03\x01\x02\x05\x01\x01\x01\x02\x03\x04", // 婐
+ 0x5a51: "\x05\x03\x01\x03\x01\x02\x03\x04\x05\x03\x01", // 婑
+ 0x5a52: "\x05\x03\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 婒
+ 0x5a53: "\x02\x01\x01\x01\x02\x01\x01\x01\x05\x03\x01", // 婓
+ 0x5a54: "\x05\x03\x01\x02\x01\x01\x01\x02\x01\x01\x01", // 婔
+ 0x5a55: "\x05\x03\x01\x01\x05\x01\x01\x02\x01\x03\x04", // 婕
+ 0x5a56: "\x05\x03\x01\x01\x01\x03\x04\x02\x04\x04\x04", // 婖
+ 0x5a57: "\x05\x03\x01\x03\x02\x01\x05\x01\x01\x03\x05", // 婗
+ 0x5a58: "\x05\x03\x01\x04\x03\x01\x01\x03\x04\x05\x05", // 婘
+ 0x5a59: "\x05\x03\x01\x03\x05\x05\x01\x01\x02", // 婙
+ 0x5a5a: "\x05\x03\x01\x03\x05\x01\x05\x02\x05\x01\x01", // 婚
+ 0x5a5b: "\x05\x03\x01\x04\x01\x02\x05\x01\x02\x03\x04", // 婛
+ 0x5a5c: "\x01\x02\x05\x01\x02\x05\x05\x04\x05\x03\x01", // 婜
+ 0x5a5d: "\x05\x03\x01\x04\x04\x05\x01\x02\x01\x03\x04", // 婝
+ 0x5a5e: "\x05\x03\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 婞
+ 0x5a5f: "\x05\x03\x01\x02\x05\x01\x02\x02\x05\x01\x01", // 婟
+ 0x5a60: "\x05\x03\x01\x04\x04\x05\x02\x05\x01\x05\x01", // 婠
+ 0x5a61: "\x05\x03\x01\x01\x03\x04\x03\x04\x02\x03\x04", // 婡
+ 0x5a62: "\x05\x03\x01\x03\x02\x05\x01\x01\x03\x01\x02", // 婢
+ 0x5a63: "\x05\x03\x01\x03\x02\x01\x01\x05\x05\x02\x01\x02", // 婣
+ 0x5a64: "\x05\x03\x01\x03\x05\x01\x02\x01\x02\x05\x01", // 婤
+ 0x5a65: "\x05\x03\x01\x02\x01\x02\x05\x01\x01\x01\x02", // 婥
+ 0x5a66: "\x05\x03\x01\x05\x01\x01\x04\x05\x02\x05\x02", // 婦
+ 0x5a67: "\x05\x03\x01\x01\x01\x02\x01\x02\x05\x01\x01", // 婧
+ 0x5a68: "\x05\x03\x01\x03\x04\x01\x02\x05\x01\x02\x02", // 婨
+ 0x5a69: "\x05\x03\x01\x02\x05\x02\x01\x03\x01\x01\x02", // 婩
+ 0x5a6a: "\x01\x02\x03\x04\x01\x02\x03\x04\x05\x03\x01", // 婪
+ 0x5a6b: "\x05\x03\x01\x02\x05\x01\x01\x01\x05\x03\x05", // 婫
+ 0x5a6c: "\x05\x03\x01\x03\x04\x04\x03\x03\x01\x02\x01", // 婬
+ 0x5a6d: "\x05\x03\x01\x01\x02\x01\x05\x05\x01\x02\x01", // 婭
+ 0x5a6e: "\x05\x03\x01\x05\x01\x03\x01\x02\x02\x05\x01", // 婮
+ 0x5a6f: "\x01\x02\x05\x04\x01\x02\x05\x04\x05\x03\x01", // 婯
+ 0x5a70: "\x05\x03\x01\x02\x05\x01\x02\x02\x01\x03\x04", // 婰
+ 0x5a71: "\x05\x01\x05\x04\x01\x05\x05\x04\x05\x03\x01", // 婱
+ 0x5a72: "\x05\x01\x03\x01\x02\x02\x03\x02\x03\x05", // 婲
+ 0x5a73: "\x05\x03\x01\x01\x02\x05\x01\x02\x01\x05\x02", // 婳
+ 0x5a74: "\x02\x05\x03\x04\x02\x05\x03\x04\x05\x03\x01", // 婴
+ 0x5a75: "\x05\x03\x01\x04\x03\x02\x05\x01\x01\x01\x02", // 婵
+ 0x5a76: "\x05\x03\x01\x04\x04\x05\x02\x05\x01\x01\x02", // 婶
+ 0x5a77: "\x05\x03\x01\x04\x01\x02\x05\x01\x04\x05\x01\x02", // 婷
+ 0x5a78: "\x05\x03\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 婸
+ 0x5a79: "\x05\x03\x01\x01\x02\x05\x02\x02\x01\x05\x03\x01", // 婹
+ 0x5a7a: "\x05\x04\x05\x02\x03\x03\x01\x03\x04\x05\x03\x01", // 婺
+ 0x5a7b: "\x05\x03\x01\x01\x02\x02\x05\x04\x03\x01\x01\x02", // 婻
+ 0x5a7c: "\x05\x03\x01\x01\x02\x02\x01\x03\x02\x05\x01", // 婼
+ 0x5a7d: "\x05\x03\x01\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 婽
+ 0x5a7e: "\x05\x03\x01\x03\x04\x01\x02\x05\x01\x01\x05\x05", // 婾
+ 0x5a7f: "\x05\x03\x01\x05\x02\x01\x03\x04\x02\x05\x01\x01", // 婿
+ 0x5a80: "\x05\x03\x01\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 媀
+ 0x5a81: "\x05\x03\x01\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 媁
+ 0x5a82: "\x05\x03\x01\x04\x01\x04\x03\x04\x05\x02\x05\x02", // 媂
+ 0x5a83: "\x05\x03\x01\x05\x04\x05\x02\x03\x01\x02\x03\x04", // 媃
+ 0x5a84: "\x05\x03\x01\x04\x03\x01\x01\x02\x01\x01\x03\x04", // 媄
+ 0x5a85: "\x05\x03\x01\x01\x02\x02\x01\x01\x01\x03\x04\x05", // 媅
+ 0x5a86: "\x05\x03\x01\x01\x03\x02\x05\x02\x02\x01\x03\x04", // 媆
+ 0x5a87: "\x05\x03\x01\x04\x01\x04\x03\x01\x01\x02\x03\x04", // 媇
+ 0x5a88: "\x05\x03\x01\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 媈
+ 0x5a89: "\x05\x03\x01\x05\x01\x03\x01\x05\x04\x01\x02\x01", // 媉
+ 0x5a8a: "\x05\x03\x01\x04\x03\x01\x02\x05\x01\x01\x02\x02", // 媊
+ 0x5a8b: "\x05\x03\x01\x01\x01\x01\x03\x04\x02\x05\x01\x01", // 媋
+ 0x5a8c: "\x05\x03\x01\x01\x02\x02\x02\x05\x01\x02\x01", // 媌
+ 0x5a8d: "\x05\x03\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 媍
+ 0x5a8e: "\x05\x03\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 媎
+ 0x5a8f: "\x05\x03\x01\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 媏
+ 0x5a90: "\x01\x02\x02\x05\x01\x02\x05\x05\x01\x05\x05\x03\x01", // 媐
+ 0x5a91: "\x05\x03\x01\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 媑
+ 0x5a92: "\x05\x03\x01\x01\x02\x02\x01\x01\x01\x02\x03\x04", // 媒
+ 0x5a93: "\x05\x03\x01\x03\x02\x05\x01\x01\x01\x01\x02\x01", // 媓
+ 0x5a94: "\x05\x03\x01\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 媔
+ 0x5a95: "\x05\x03\x01\x03\x04\x01\x02\x05\x01\x01\x03\x02", // 媕
+ 0x5a96: "\x05\x03\x01\x01\x02\x02\x02\x05\x01\x03\x04", // 媖
+ 0x5a97: "\x05\x03\x01\x04\x04\x05\x01\x02\x05\x01\x01\x01", // 媗
+ 0x5a98: "\x05\x03\x01\x01\x05\x03\x05\x03\x02\x05\x01\x01", // 媘
+ 0x5a99: "\x05\x03\x01\x01\x03\x01\x05\x03\x01\x05\x03\x04", // 媙
+ 0x5a9a: "\x05\x03\x01\x05\x02\x01\x03\x02\x05\x01\x01\x01", // 媚
+ 0x5a9b: "\x05\x03\x01\x03\x04\x04\x03\x01\x01\x03\x05\x04", // 媛
+ 0x5a9c: "\x05\x03\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 媜
+ 0x5a9d: "\x03\x01\x02\x03\x04\x04\x03\x03\x04\x05\x03\x01", // 媝
+ 0x5a9e: "\x05\x03\x01\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 媞
+ 0x5a9f: "\x05\x03\x01\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 媟
+ 0x5aa0: "\x05\x03\x01\x01\x03\x01\x02\x01\x02\x05\x01\x01", // 媠
+ 0x5aa1: "\x05\x03\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 媡
+ 0x5aa2: "\x05\x03\x01\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 媢
+ 0x5aa3: "\x05\x03\x01\x04\x04\x01\x03\x05\x01\x02\x03\x04", // 媣
+ 0x5aa4: "\x05\x03\x01\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 媤
+ 0x5aa5: "\x05\x03\x01\x04\x05\x01\x03\x02\x05\x01\x02\x02", // 媥
+ 0x5aa6: "\x05\x03\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01", // 媦
+ 0x5aa7: "\x05\x03\x01\x02\x05\x05\x02\x05\x02\x05\x01", // 媧
+ 0x5aa8: "\x05\x03\x01\x04\x03\x01\x02\x05\x03\x05\x01\x01", // 媨
+ 0x5aa9: "\x05\x03\x01\x01\x02\x02\x05\x01\x03\x05\x01\x01", // 媩
+ 0x5aaa: "\x05\x03\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 媪
+ 0x5aab: "\x05\x03\x01\x02\x01\x05\x01\x01\x02\x01\x03\x04", // 媫
+ 0x5aac: "\x05\x03\x01\x03\x02\x02\x05\x01\x01\x02\x03\x04", // 媬
+ 0x5aad: "\x03\x03\x03\x01\x03\x02\x05\x03\x04\x05\x03\x01", // 媭
+ 0x5aae: "\x05\x03\x01\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 媮
+ 0x5aaf: "\x05\x03\x01\x04\x03\x05\x05\x05\x04\x04\x04\x04", // 媯
+ 0x5ab0: "\x05\x03\x01\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03", // 媰
+ 0x5ab1: "\x05\x03\x01\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02", // 媱
+ 0x5ab2: "\x05\x03\x01\x03\x02\x05\x03\x04\x01\x01\x05\x03\x05", // 媲
+ 0x5ab3: "\x05\x03\x01\x03\x02\x05\x01\x01\x01\x04\x05\x04\x04", // 媳
+ 0x5ab4: "\x05\x03\x01\x01\x02\x01\x02\x05\x01\x03\x05\x03\x04", // 媴
+ 0x5ab5: "\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04\x05\x03\x01", // 媵
+ 0x5ab6: "\x05\x03\x01\x01\x02\x02\x01\x02\x02\x01\x01\x01", // 媶
+ 0x5ab7: "\x05\x03\x01\x01\x03\x01\x01\x05\x03\x04\x01\x02\x04", // 媷
+ 0x5ab8: "\x05\x03\x01\x05\x02\x02\x01\x02\x05\x01\x02\x01\x04", // 媸
+ 0x5ab9: "\x05\x03\x01\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 媹
+ 0x5aba: "\x05\x03\x01\x02\x05\x02\x01\x03\x05\x03\x01\x03\x04", // 媺
+ 0x5abb: "\x03\x03\x05\x04\x01\x04\x03\x05\x05\x04\x05\x03\x01", // 媻
+ 0x5abc: "\x05\x03\x01\x02\x05\x03\x04\x01\x02\x05\x02\x02\x01", // 媼
+ 0x5abd: "\x05\x03\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 媽
+ 0x5abe: "\x05\x03\x01\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01", // 媾
+ 0x5abf: "\x05\x03\x01\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 媿
+ 0x5ac0: "\x05\x03\x01\x01\x01\x01\x03\x04\x03\x01\x02\x03\x04", // 嫀
+ 0x5ac1: "\x05\x03\x01\x04\x04\x05\x01\x03\x05\x03\x03\x03\x04", // 嫁
+ 0x5ac2: "\x05\x03\x01\x03\x02\x01\x05\x01\x01\x02\x05\x04", // 嫂
+ 0x5ac3: "\x05\x03\x01\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 嫃
+ 0x5ac4: "\x05\x03\x01\x01\x03\x03\x02\x05\x01\x01\x02\x03\x04", // 嫄
+ 0x5ac5: "\x05\x03\x01\x04\x03\x01\x01\x01\x03\x01\x02\x01", // 嫅
+ 0x5ac6: "\x05\x03\x01\x04\x04\x05\x03\x04\x03\x04\x02\x05\x01", // 嫆
+ 0x5ac7: "\x05\x03\x01\x04\x05\x02\x05\x01\x01\x04\x01\x03\x04", // 嫇
+ 0x5ac8: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x05\x03\x01", // 嫈
+ 0x5ac9: "\x05\x03\x01\x04\x01\x03\x04\x01\x03\x01\x01\x03\x04", // 嫉
+ 0x5aca: "\x05\x03\x01\x01\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 嫊
+ 0x5acb: "\x05\x03\x01\x05\x01\x05\x04\x01\x05\x01\x05\x04\x01", // 嫋
+ 0x5acc: "\x05\x03\x01\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 嫌
+ 0x5acd: "\x05\x03\x01\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01", // 嫍
+ 0x5ace: "\x05\x03\x01\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03", // 嫎
+ 0x5acf: "\x05\x03\x01\x04\x05\x01\x01\x05\x04\x05\x02", // 嫏
+ 0x5ad0: "\x05\x03\x01\x02\x05\x01\x02\x01\x05\x03\x05\x03\x01", // 嫐
+ 0x5ad1: "\x01\x03\x02\x04\x01\x02\x05\x02\x02\x01\x05\x03\x01", // 嫑
+ 0x5ad2: "\x05\x03\x01\x03\x04\x04\x03\x04\x05\x01\x03\x05\x04", // 嫒
+ 0x5ad3: "\x05\x03\x01\x03\x05\x02\x05\x03\x04\x01\x05\x03\x05", // 嫓
+ 0x5ad4: "\x05\x03\x01\x04\x04\x05\x03\x02\x01\x02\x01\x03\x04", // 嫔
+ 0x5ad5: "\x05\x03\x01\x01\x03\x01\x01\x03\x04\x05\x04\x05\x04\x04", // 嫕
+ 0x5ad6: "\x05\x03\x01\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 嫖
+ 0x5ad7: "\x05\x03\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 嫗
+ 0x5ad8: "\x05\x03\x01\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 嫘
+ 0x5ad9: "\x05\x03\x01\x04\x01\x05\x03\x03\x01\x05\x02\x01\x03\x04", // 嫙
+ 0x5ada: "\x05\x03\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 嫚
+ 0x5adb: "\x01\x03\x01\x01\x03\x04\x05\x03\x05\x05\x04\x05\x03\x01", // 嫛
+ 0x5adc: "\x05\x03\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02", // 嫜
+ 0x5add: "\x05\x03\x01\x04\x01\x03\x05\x01\x01\x02\x04\x01\x03\x04", // 嫝
+ 0x5ade: "\x05\x03\x01\x04\x01\x03\x05\x01\x01\x02\x05\x01\x01\x02", // 嫞
+ 0x5adf: "\x05\x03\x01\x01\x01\x02\x02\x01\x03\x01\x05\x01\x05", // 嫟
+ 0x5ae0: "\x01\x01\x02\x03\x04\x03\x01\x03\x04\x01\x03\x05\x03\x01", // 嫠
+ 0x5ae1: "\x05\x03\x01\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01", // 嫡
+ 0x5ae2: "\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05\x05\x03\x01", // 嫢
+ 0x5ae3: "\x05\x03\x01\x01\x02\x01\x02\x01\x01\x05\x04\x04\x04\x04", // 嫣
+ 0x5ae4: "\x05\x03\x01\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01", // 嫤
+ 0x5ae5: "\x05\x03\x01\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04", // 嫥
+ 0x5ae6: "\x05\x03\x01\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x02", // 嫦
+ 0x5ae7: "\x05\x03\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 嫧
+ 0x5ae8: "\x05\x03\x01\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 嫨
+ 0x5ae9: "\x05\x03\x01\x01\x02\x05\x01\x02\x03\x04\x03\x01\x03\x04", // 嫩
+ 0x5aea: "\x05\x03\x01\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 嫪
+ 0x5aeb: "\x05\x03\x01\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 嫫
+ 0x5aec: "\x05\x03\x01\x04\x01\x03\x01\x02\x02\x01\x04\x04\x04\x04", // 嫬
+ 0x5aed: "\x05\x03\x01\x02\x01\x05\x03\x01\x05\x03\x04\x03\x01\x02", // 嫭
+ 0x5aee: "\x05\x03\x01\x01\x04\x05\x02\x04\x04\x04\x04\x01\x01\x05", // 嫮
+ 0x5aef: "\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04\x05\x03\x01", // 嫯
+ 0x5af0: "\x05\x03\x01\x01\x02\x05\x01\x02\x03\x04\x03\x05\x03\x04", // 嫰
+ 0x5af1: "\x05\x03\x01\x01\x02\x04\x03\x01\x02\x05\x02\x05\x01\x01", // 嫱
+ 0x5af2: "\x05\x03\x01\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04", // 嫲
+ 0x5af3: "\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04\x05\x03\x01", // 嫳
+ 0x5af4: "\x05\x03\x01\x01\x02\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 嫴
+ 0x5af5: "\x05\x03\x01\x03\x01\x01\x02\x02\x02\x02\x01\x04\x04\x04\x04", // 嫵
+ 0x5af6: "\x05\x03\x01\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 嫶
+ 0x5af7: "\x05\x03\x01\x05\x02\x01\x03\x01\x02\x01\x02\x05\x01\x01", // 嫷
+ 0x5af8: "\x05\x03\x01\x04\x03\x01\x01\x01\x02\x04\x03\x01\x02\x05\x01", // 嫸
+ 0x5af9: "\x05\x03\x01\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 嫹
+ 0x5afa: "\x05\x03\x01\x02\x05\x01\x01\x02\x05\x01\x01\x03\x05\x01\x01", // 嫺
+ 0x5afb: "\x05\x03\x01\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x03\x04", // 嫻
+ 0x5afc: "\x05\x03\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 嫼
+ 0x5afd: "\x05\x03\x01\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 嫽
+ 0x5afe: "\x05\x03\x01\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 嫾
+ 0x5aff: "\x05\x03\x01\x05\x01\x01\x02\x01\x01\x02\x05\x01\x02\x01\x01", // 嫿
+ 0x5b00: "\x05\x03\x01\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04", // 嬀
+ 0x5b01: "\x05\x03\x01\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 嬁
+ 0x5b02: "\x05\x03\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05\x03\x04", // 嬂
+ 0x5b03: "\x03\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04\x05\x03\x01", // 嬃
+ 0x5b04: "\x05\x03\x01\x01\x02\x01\x04\x05\x01\x02\x05\x01\x04\x03\x01", // 嬄
+ 0x5b05: "\x05\x03\x01\x01\x02\x02\x01\x01\x02\x02\x01\x01\x02", // 嬅
+ 0x5b06: "\x05\x03\x01\x03\x04\x01\x02\x05\x01\x05\x04\x01\x05\x04\x01", // 嬆
+ 0x5b07: "\x05\x03\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 嬇
+ 0x5b08: "\x05\x03\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 嬈
+ 0x5b09: "\x05\x03\x01\x01\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01", // 嬉
+ 0x5b0a: "\x01\x02\x02\x01\x02\x05\x01\x02\x01\x01\x03\x05\x05\x03\x01", // 嬊
+ 0x5b0b: "\x05\x03\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 嬋
+ 0x5b0c: "\x05\x03\x01\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 嬌
+ 0x5b0d: "\x05\x03\x01\x02\x05\x02\x01\x01\x01\x02\x01\x03\x01\x03\x04", // 嬍
+ 0x5b0e: "\x05\x03\x01\x03\x05\x02\x05\x01\x03\x05\x03\x01\x01\x02\x01", // 嬎
+ 0x5b0f: "\x05\x03\x01\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 嬏
+ 0x5b10: "\x05\x03\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 嬐
+ 0x5b11: "\x05\x03\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 嬑
+ 0x5b12: "\x05\x03\x01\x03\x04\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01\x01", // 嬒
+ 0x5b13: "\x05\x03\x01\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x03\x04", // 嬓
+ 0x5b14: "\x05\x03\x01\x03\x05\x02\x05\x01\x03\x05\x04\x03\x01\x01\x02\x01", // 嬔
+ 0x5b15: "\x05\x03\x01\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 嬕
+ 0x5b16: "\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x05\x03\x01", // 嬖
+ 0x5b17: "\x05\x03\x01\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 嬗
+ 0x5b18: "\x05\x03\x01\x04\x03\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 嬘
+ 0x5b19: "\x05\x03\x01\x01\x02\x03\x04\x03\x04\x01\x02\x05\x01\x05\x01\x01", // 嬙
+ 0x5b1a: "\x05\x03\x01\x04\x01\x03\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 嬚
+ 0x5b1b: "\x05\x03\x01\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 嬛
+ 0x5b1c: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05\x03\x04\x05\x03\x01", // 嬜
+ 0x5b1d: "\x05\x03\x01\x03\x02\x05\x01\x01\x01\x05\x04\x01\x03\x05\x03\x04", // 嬝
+ 0x5b1e: "\x05\x03\x01\x01\x02\x02\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 嬞
+ 0x5b1f: "\x05\x03\x01\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01\x05\x03\x04", // 嬟
+ 0x5b20: "\x05\x03\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 嬠
+ 0x5b21: "\x05\x03\x01\x03\x04\x04\x03\x04\x05\x04\x05\x04\x04\x03\x05\x04", // 嬡
+ 0x5b22: "\x05\x03\x01\x04\x01\x03\x04\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 嬢
+ 0x5b23: "\x05\x03\x01\x04\x04\x05\x04\x05\x04\x04\x02\x05\x02\x02\x01\x01\x02", // 嬣
+ 0x5b24: "\x05\x03\x01\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x05\x05\x04", // 嬤
+ 0x5b25: "\x05\x03\x01\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 嬥
+ 0x5b26: "\x05\x03\x01\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 嬦
+ 0x5b27: "\x05\x03\x01\x05\x01\x01\x02\x01\x04\x04\x04\x04\x02\x05\x02\x02\x01", // 嬧
+ 0x5b28: "\x05\x03\x01\x04\x03\x01\x05\x05\x04\x05\x05\x04\x04\x05\x04\x04", // 嬨
+ 0x5b29: "\x05\x03\x01\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 嬩
+ 0x5b2a: "\x05\x03\x01\x04\x04\x05\x01\x02\x03\x03\x02\x05\x01\x01\x01\x03\x04", // 嬪
+ 0x5b2b: "\x05\x03\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x01\x02\x03\x04", // 嬫
+ 0x5b2c: "\x05\x03\x01\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02", // 嬬
+ 0x5b2d: "\x05\x03\x01\x02\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 嬭
+ 0x5b2e: "\x01\x03\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x04\x04\x05\x03\x01", // 嬮
+ 0x5b2f: "\x05\x03\x01\x01\x02\x01\x02\x05\x01\x04\x05\x01\x05\x04\x01\x02\x01", // 嬯
+ 0x5b30: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x05\x03\x01", // 嬰
+ 0x5b31: "\x04\x04\x01\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02\x05\x03\x01", // 嬱
+ 0x5b32: "\x02\x05\x01\x02\x01\x05\x03\x05\x03\x01\x02\x05\x01\x02\x01\x05\x03", // 嬲
+ 0x5b33: "\x05\x03\x01\x01\x02\x02\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 嬳
+ 0x5b34: "\x04\x01\x05\x02\x05\x01\x03\x05\x01\x01\x05\x03\x01\x03\x05\x04", // 嬴
+ 0x5b35: "\x05\x03\x01\x05\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x02\x05\x02", // 嬵
+ 0x5b36: "\x05\x03\x01\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02", // 嬶
+ 0x5b37: "\x05\x03\x01\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x03\x05\x04", // 嬷
+ 0x5b38: "\x05\x03\x01\x04\x04\x05\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 嬸
+ 0x5b39: "\x05\x03\x01\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x01\x03\x04", // 嬹
+ 0x5b3a: "\x05\x03\x01\x01\x01\x02\x02\x01\x03\x02\x05\x01\x05\x04\x05\x04\x04", // 嬺
+ 0x5b3b: "\x05\x03\x01\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 嬻
+ 0x5b3c: "\x05\x03\x01\x03\x05\x04\x05\x03\x03\x04\x01\x01\x02\x04\x03\x01\x02\x02", // 嬼
+ 0x5b3d: "\x05\x03\x01\x02\x05\x02\x02\x01\x02\x01\x02\x05\x02\x02\x01\x05\x01\x03\x04", // 嬽
+ 0x5b3e: "\x05\x03\x01\x01\x02\x05\x01\x02\x03\x04\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 嬾
+ 0x5b3f: "\x05\x03\x01\x01\x02\x02\x01\x02\x05\x01\x02\x01\x01\x03\x05\x04\x04\x04\x04", // 嬿
+ 0x5b40: "\x05\x03\x01\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 孀
+ 0x5b41: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05\x03\x01", // 孁
+ 0x5b42: "\x05\x03\x01\x03\x01\x04\x03\x01\x04\x05\x01\x01\x05\x03\x04\x02\x05\x02\x02\x01", // 孂
+ 0x5b43: "\x05\x03\x01\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 孃
+ 0x5b44: "\x05\x03\x01\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 孄
+ 0x5b45: "\x05\x03\x01\x03\x04\x03\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 孅
+ 0x5b46: "\x05\x03\x01\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x05\x03\x01", // 孆
+ 0x5b47: "\x05\x03\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 孇
+ 0x5b48: "\x05\x03\x01\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x03\x04\x02\x05\x02", // 孈
+ 0x5b49: "\x05\x03\x01\x01\x02\x02\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 孉
+ 0x5b4a: "\x05\x03\x01\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01", // 孊
+ 0x5b4b: "\x05\x03\x01\x01\x02\x05\x04\x01\x02\x05\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 孋
+ 0x5b4c: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x05\x03\x01", // 孌
+ 0x5b4d: "\x05\x03\x01\x02\x05\x01\x02\x05\x01\x01\x03\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 孍
+ 0x5b4e: "\x05\x03\x01\x05\x01\x03\x02\x04\x01\x03\x04\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 孎
+ 0x5b4f: "\x05\x03\x01\x01\x02\x02\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 孏
+ 0x5b50: "\x05\x02\x01", // 子
+ 0x5b51: "\x05\x02\x01", // 孑
+ 0x5b52: "\x05\x02\x01", // 孒
+ 0x5b53: "\x05\x02\x04", // 孓
+ 0x5b54: "\x05\x02\x01\x05", // 孔
+ 0x5b55: "\x05\x03\x05\x02\x01", // 孕
+ 0x5b56: "\x05\x02\x01\x05\x02\x01", // 孖
+ 0x5b57: "\x04\x02\x05\x05\x02\x01", // 字
+ 0x5b58: "\x01\x03\x02\x05\x02\x01", // 存
+ 0x5b59: "\x05\x02\x01\x02\x03\x04", // 孙
+ 0x5b5a: "\x03\x04\x04\x03\x05\x02\x01", // 孚
+ 0x5b5b: "\x01\x02\x04\x05\x05\x02\x01", // 孛
+ 0x5b5c: "\x05\x02\x01\x03\x01\x03\x04", // 孜
+ 0x5b5d: "\x01\x02\x01\x03\x05\x02\x01", // 孝
+ 0x5b5e: "\x05\x02\x01\x04\x05\x04\x04", // 孞
+ 0x5b5f: "\x05\x02\x01\x02\x05\x02\x02\x01", // 孟
+ 0x5b60: "\x05\x01\x02\x05\x01\x05\x02\x01", // 孠
+ 0x5b61: "\x05\x02\x01\x05\x04\x02\x05\x01", // 孡
+ 0x5b62: "\x05\x02\x01\x03\x05\x05\x01\x05", // 孢
+ 0x5b63: "\x03\x01\x02\x03\x04\x05\x02\x01", // 季
+ 0x5b64: "\x05\x02\x01\x03\x03\x05\x04\x04", // 孤
+ 0x5b65: "\x05\x03\x01\x05\x04\x05\x02\x01", // 孥
+ 0x5b66: "\x04\x04\x03\x04\x05\x05\x02\x01", // 学
+ 0x5b67: "\x05\x05\x04\x05\x03\x05\x02\x01", // 孧
+ 0x5b68: "\x05\x02\x01\x05\x02\x01\x05\x02\x01", // 孨
+ 0x5b69: "\x05\x02\x01\x04\x01\x05\x03\x03\x04", // 孩
+ 0x5b6a: "\x04\x01\x02\x02\x03\x04\x05\x02\x01", // 孪
+ 0x5b6b: "\x05\x02\x01\x03\x05\x05\x04\x02\x03\x04", // 孫
+ 0x5b6c: "\x01\x03\x02\x04\x05\x03\x01\x05\x02\x01", // 孬
+ 0x5b6d: "\x05\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 孭
+ 0x5b6e: "\x05\x02\x01\x04\x04\x05\x01\x01\x02\x03\x04", // 孮
+ 0x5b6f: "\x01\x02\x05\x01\x02\x05\x05\x04\x05\x02\x01", // 孯
+ 0x5b70: "\x04\x01\x02\x05\x01\x05\x02\x01\x03\x05\x04", // 孰
+ 0x5b71: "\x05\x01\x03\x05\x02\x01\x05\x02\x01\x05\x02\x01", // 孱
+ 0x5b72: "\x05\x02\x01\x01\x02\x01\x05\x05\x01\x02\x01", // 孲
+ 0x5b73: "\x04\x03\x01\x05\x05\x04\x05\x05\x04\x05\x02\x01", // 孳
+ 0x5b74: "\x05\x02\x01\x05\x02\x01\x05\x02\x01\x02\x05\x01\x01", // 孴
+ 0x5b75: "\x03\x05\x04\x03\x05\x02\x04\x03\x04\x04\x03\x05\x02\x01", // 孵
+ 0x5b76: "\x04\x01\x05\x05\x04\x04\x01\x05\x05\x04\x05\x02\x01", // 孶
+ 0x5b77: "\x01\x01\x02\x03\x04\x03\x01\x03\x04\x01\x03\x05\x02\x01", // 孷
+ 0x5b78: "\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x05\x02\x01", // 學
+ 0x5b79: "\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x05\x02\x01", // 孹
+ 0x5b7a: "\x05\x02\x01\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02", // 孺
+ 0x5b7b: "\x05\x02\x01\x05\x01\x01\x02\x01\x04\x04\x04\x04\x02\x05\x02\x02\x01", // 孻
+ 0x5b7c: "\x05\x02\x03\x03\x02\x05\x01\x05\x01\x04\x01\x04\x03\x01\x01\x02\x05\x02\x01", // 孼
+ 0x5b7d: "\x01\x02\x02\x03\x02\x05\x01\x05\x01\x04\x01\x04\x03\x01\x01\x02\x05\x02\x01", // 孽
+ 0x5b7e: "\x05\x02\x01\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x05\x03\x01", // 孾
+ 0x5b7f: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x05\x02\x01", // 孿
+ 0x5b80: "\x04\x04\x05", // 宀
+ 0x5b81: "\x04\x04\x05\x01\x02", // 宁
+ 0x5b82: "\x04\x04\x05\x03\x05", // 宂
+ 0x5b83: "\x04\x04\x05\x03\x05", // 它
+ 0x5b84: "\x04\x04\x05\x03\x05", // 宄
+ 0x5b85: "\x04\x04\x05\x03\x01\x05", // 宅
+ 0x5b86: "\x04\x04\x05\x05\x01\x05", // 宆
+ 0x5b87: "\x04\x04\x05\x01\x01\x02", // 宇
+ 0x5b88: "\x04\x04\x05\x01\x02\x04", // 守
+ 0x5b89: "\x04\x04\x05\x05\x03\x01", // 安
+ 0x5b8a: "\x04\x04\x05\x01\x03\x04\x04", // 宊
+ 0x5b8b: "\x04\x04\x05\x01\x02\x03\x04", // 宋
+ 0x5b8c: "\x04\x04\x05\x01\x01\x03\x05", // 完
+ 0x5b8d: "\x04\x04\x05\x04\x01\x03\x04", // 宍
+ 0x5b8e: "\x04\x04\x05\x03\x01\x03\x04", // 宎
+ 0x5b8f: "\x04\x04\x05\x01\x03\x05\x04", // 宏
+ 0x5b90: "\x04\x04\x05\x02\x05\x04\x01", // 宐
+ 0x5b91: "\x04\x04\x05\x01\x01\x03\x02", // 宑
+ 0x5b92: "\x04\x04\x05\x03\x01\x01\x05", // 宒
+ 0x5b93: "\x04\x04\x05\x04\x05\x04\x03\x04", // 宓
+ 0x5b94: "\x04\x04\x05\x04\x01\x01\x02\x01", // 宔
+ 0x5b95: "\x04\x04\x05\x01\x03\x02\x05\x01", // 宕
+ 0x5b96: "\x04\x04\x05\x05\x01\x05\x05\x04", // 宖
+ 0x5b97: "\x04\x04\x05\x01\x01\x02\x03\x04", // 宗
+ 0x5b98: "\x04\x04\x05\x02\x05\x01\x05\x01", // 官
+ 0x5b99: "\x04\x04\x05\x02\x05\x01\x02\x01", // 宙
+ 0x5b9a: "\x04\x04\x05\x01\x02\x01\x03\x04", // 定
+ 0x5b9b: "\x04\x04\x05\x03\x05\x04\x05\x05", // 宛
+ 0x5b9c: "\x04\x04\x05\x02\x05\x01\x01\x01", // 宜
+ 0x5b9d: "\x04\x04\x05\x01\x01\x02\x01\x04", // 宝
+ 0x5b9e: "\x04\x04\x05\x04\x04\x01\x03\x04", // 实
+ 0x5b9f: "\x04\x04\x05\x01\x01\x01\x03\x04", // 実
+ 0x5ba0: "\x04\x04\x05\x01\x03\x05\x03\x04", // 宠
+ 0x5ba1: "\x04\x04\x05\x02\x05\x01\x01\x02", // 审
+ 0x5ba2: "\x04\x04\x05\x03\x05\x04\x02\x05\x01", // 客
+ 0x5ba3: "\x04\x04\x05\x01\x02\x05\x01\x01\x01", // 宣
+ 0x5ba4: "\x04\x04\x05\x01\x05\x04\x01\x02\x01", // 室
+ 0x5ba5: "\x04\x04\x05\x01\x03\x02\x05\x01\x01", // 宥
+ 0x5ba6: "\x04\x04\x05\x01\x02\x05\x01\x02\x05", // 宦
+ 0x5ba7: "\x04\x04\x05\x01\x02\x02\x05\x01\x02\x05", // 宧
+ 0x5ba8: "\x04\x04\x05\x03\x04\x01\x05\x03\x04", // 宨
+ 0x5ba9: "\x04\x04\x05\x04\x03\x01\x02\x03\x04", // 宩
+ 0x5baa: "\x04\x04\x05\x03\x01\x02\x01\x03\x05", // 宪
+ 0x5bab: "\x04\x04\x05\x02\x05\x01\x02\x05\x01", // 宫
+ 0x5bac: "\x04\x04\x05\x01\x03\x05\x05\x03\x04", // 宬
+ 0x5bad: "\x04\x04\x05\x05\x01\x01\x03\x02\x05\x01", // 宭
+ 0x5bae: "\x04\x04\x05\x02\x05\x01\x03\x02\x05\x01", // 宮
+ 0x5baf: "\x04\x04\x05\x01\x02\x01\x03\x05\x02\x01", // 宯
+ 0x5bb0: "\x04\x04\x05\x04\x01\x04\x03\x01\x01\x02", // 宰
+ 0x5bb1: "\x04\x04\x05\x03\x02\x03\x01\x02\x01\x01", // 宱
+ 0x5bb2: "\x04\x04\x05\x02\x05\x01\x01\x02\x03\x04", // 宲
+ 0x5bb3: "\x04\x04\x05\x01\x01\x01\x02\x02\x05\x01", // 害
+ 0x5bb4: "\x04\x04\x05\x02\x05\x01\x01\x05\x03\x01", // 宴
+ 0x5bb5: "\x04\x04\x05\x02\x04\x03\x02\x05\x01\x01", // 宵
+ 0x5bb6: "\x04\x04\x05\x01\x03\x05\x03\x03\x03\x04", // 家
+ 0x5bb7: "\x04\x04\x05\x03\x04\x03\x01\x02\x03\x04", // 宷
+ 0x5bb8: "\x04\x04\x05\x01\x03\x01\x01\x05\x03\x04", // 宸
+ 0x5bb9: "\x04\x04\x05\x03\x04\x03\x04\x02\x05\x01", // 容
+ 0x5bba: "\x04\x04\x05\x02\x05\x01\x01\x02\x03\x05", // 宺
+ 0x5bbb: "\x04\x04\x05\x05\x04\x04\x03\x02\x05\x02", // 宻
+ 0x5bbc: "\x04\x04\x05\x01\x01\x03\x05\x05\x03\x01", // 宼
+ 0x5bbd: "\x04\x04\x05\x01\x02\x02\x02\x05\x03\x05", // 宽
+ 0x5bbe: "\x04\x04\x05\x03\x02\x01\x02\x01\x03\x04", // 宾
+ 0x5bbf: "\x04\x04\x05\x03\x02\x01\x03\x02\x05\x01\x01", // 宿
+ 0x5bc0: "\x04\x04\x05\x03\x04\x04\x03\x01\x02\x03\x04", // 寀
+ 0x5bc1: "\x04\x04\x05\x01\x05\x01\x01\x02\x01\x03\x04", // 寁
+ 0x5bc2: "\x04\x04\x05\x02\x01\x01\x02\x03\x04\x05\x04", // 寂
+ 0x5bc3: "\x04\x04\x05\x03\x05\x02\x05\x01\x03\x05\x04", // 寃
+ 0x5bc4: "\x04\x04\x05\x01\x03\x04\x01\x02\x05\x01\x02", // 寄
+ 0x5bc5: "\x04\x04\x05\x01\x02\x05\x01\x02\x01\x03\x04", // 寅
+ 0x5bc6: "\x04\x04\x05\x04\x05\x04\x03\x04\x02\x05\x02", // 密
+ 0x5bc7: "\x04\x04\x05\x01\x01\x03\x05\x02\x01\x05\x04", // 寇
+ 0x5bc8: "\x04\x04\x05\x01\x01\x02\x01\x02\x05\x01\x01", // 寈
+ 0x5bc9: "\x04\x04\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 寉
+ 0x5bca: "\x04\x04\x05\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 寊
+ 0x5bcb: "\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x05\x05", // 寋
+ 0x5bcc: "\x04\x04\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 富
+ 0x5bcd: "\x04\x04\x05\x04\x05\x04\x04\x02\x05\x02\x02\x01", // 寍
+ 0x5bce: "\x04\x04\x05\x05\x02\x01\x03\x01\x02\x05\x03\x04", // 寎
+ 0x5bcf: "\x04\x04\x05\x03\x05\x02\x05\x03\x04\x01\x03\x04", // 寏
+ 0x5bd0: "\x04\x04\x05\x05\x02\x01\x03\x01\x01\x02\x03\x04", // 寐
+ 0x5bd1: "\x04\x04\x05\x03\x02\x05\x01\x01\x04\x05\x05\x04", // 寑
+ 0x5bd2: "\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x04\x04", // 寒
+ 0x5bd3: "\x04\x04\x05\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 寓
+ 0x5bd4: "\x04\x04\x05\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 寔
+ 0x5bd5: "\x04\x04\x05\x01\x03\x02\x05\x02\x02\x01\x01\x02", // 寕
+ 0x5bd6: "\x04\x04\x05\x04\x04\x01\x05\x01\x01\x04\x05\x05\x04", // 寖
+ 0x5bd7: "\x04\x04\x05\x04\x05\x04\x03\x04\x02\x05\x02\x01\x01", // 寗
+ 0x5bd8: "\x04\x04\x05\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 寘
+ 0x5bd9: "\x04\x04\x05\x03\x03\x05\x04\x04\x03\x03\x05\x04\x04", // 寙
+ 0x5bda: "\x04\x04\x05\x01\x01\x02\x01\x03\x01\x01\x02\x05\x02", // 寚
+ 0x5bdb: "\x04\x04\x05\x01\x02\x02\x02\x05\x01\x01\x01\x03\x05", // 寛
+ 0x5bdc: "\x04\x04\x05\x04\x05\x04\x04\x02\x05\x02\x02\x01\x02", // 寜
+ 0x5bdd: "\x04\x04\x05\x04\x01\x02\x05\x01\x01\x04\x05\x05\x04", // 寝
+ 0x5bde: "\x04\x04\x05\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 寞
+ 0x5bdf: "\x04\x04\x05\x03\x05\x04\x04\x05\x04\x01\x01\x02\x03\x04", // 察
+ 0x5be0: "\x04\x04\x05\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 寠
+ 0x5be1: "\x04\x04\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04\x05\x03", // 寡
+ 0x5be2: "\x04\x04\x05\x05\x02\x01\x03\x05\x01\x01\x04\x05\x05\x04", // 寢
+ 0x5be3: "\x04\x04\x05\x05\x02\x01\x03\x04\x01\x01\x01\x02\x05\x01", // 寣
+ 0x5be4: "\x04\x04\x05\x05\x02\x01\x03\x01\x02\x05\x01\x02\x05\x01", // 寤
+ 0x5be5: "\x04\x04\x05\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 寥
+ 0x5be6: "\x04\x04\x05\x05\x05\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 實
+ 0x5be7: "\x04\x04\x05\x04\x05\x04\x04\x02\x05\x02\x02\x01\x01\x02", // 寧
+ 0x5be8: "\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x01\x02\x03\x04", // 寨
+ 0x5be9: "\x04\x04\x05\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 審
+ 0x5bea: "\x04\x04\x05\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04", // 寪
+ 0x5beb: "\x04\x04\x05\x03\x02\x01\x05\x01\x01\x03\x05\x04\x04\x04\x04", // 寫
+ 0x5bec: "\x04\x04\x05\x01\x02\x02\x02\x05\x01\x01\x01\x03\x05\x04", // 寬
+ 0x5bed: "\x04\x04\x05\x01\x02\x05\x01\x01\x02\x01\x04\x04\x05\x04\x04", // 寭
+ 0x5bee: "\x04\x04\x05\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 寮
+ 0x5bef: "\x04\x04\x05\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x02\x05", // 寯
+ 0x5bf0: "\x04\x04\x05\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 寰
+ 0x5bf1: "\x04\x04\x05\x05\x02\x01\x03\x03\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 寱
+ 0x5bf2: "\x04\x04\x05\x03\x05\x03\x01\x01\x03\x04\x05\x04\x05\x02\x01\x03\x04", // 寲
+ 0x5bf3: "\x04\x04\x05\x01\x01\x02\x01\x03\x05\x02\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 寳
+ 0x5bf4: "\x04\x04\x05\x04\x01\x04\x03\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 寴
+ 0x5bf5: "\x04\x04\x05\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x05\x01\x05\x01\x01\x01", // 寵
+ 0x5bf6: "\x04\x04\x05\x01\x01\x02\x01\x03\x01\x01\x02\x05\x02\x02\x05\x01\x01\x01\x03\x04", // 寶
+ 0x5bf7: "\x04\x04\x05\x01\x01\x01\x02\x02\x01\x01\x01\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 寷
+ 0x5bf8: "\x01\x02\x04", // 寸
+ 0x5bf9: "\x05\x04\x01\x02\x04", // 对
+ 0x5bfa: "\x01\x02\x01\x01\x02\x04", // 寺
+ 0x5bfb: "\x05\x01\x01\x01\x02\x04", // 寻
+ 0x5bfc: "\x05\x01\x05\x01\x02\x04", // 导
+ 0x5bfd: "\x03\x04\x04\x03\x01\x02\x04", // 寽
+ 0x5bfe: "\x04\x01\x03\x04\x01\x02\x04", // 対
+ 0x5bff: "\x01\x01\x01\x03\x01\x02\x04", // 寿
+ 0x5c00: "\x01\x02\x05\x01\x05\x01\x02\x04", // 尀
+ 0x5c01: "\x01\x02\x01\x01\x02\x01\x01\x02\x04", // 封
+ 0x5c02: "\x01\x02\x05\x01\x01\x02\x01\x02\x04", // 専
+ 0x5c03: "\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 尃
+ 0x5c04: "\x03\x02\x05\x01\x01\x01\x03\x01\x02\x04", // 射
+ 0x5c05: "\x01\x02\x02\x05\x01\x03\x05\x01\x02\x04", // 尅
+ 0x5c06: "\x04\x01\x02\x03\x05\x04\x01\x02\x04", // 将
+ 0x5c07: "\x05\x02\x01\x03\x03\x05\x04\x04\x01\x02\x04", // 將
+ 0x5c08: "\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04", // 專
+ 0x5c09: "\x05\x01\x03\x01\x01\x02\x03\x04\x01\x02\x04", // 尉
+ 0x5c0a: "\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x02\x04", // 尊
+ 0x5c0b: "\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04", // 尋
+ 0x5c0c: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x04", // 尌
+ 0x5c0d: "\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x01\x02\x04", // 對
+ 0x5c0e: "\x04\x03\x01\x03\x02\x05\x01\x01\x01\x04\x05\x04\x01\x02\x04", // 導
+ 0x5c0f: "\x02\x03\x04", // 小
+ 0x5c10: "\x02\x03\x04\x04", // 尐
+ 0x5c11: "\x02\x03\x04\x03", // 少
+ 0x5c12: "\x03\x04\x02\x03\x04", // 尒
+ 0x5c13: "\x03\x01\x02\x03\x04", // 尓
+ 0x5c14: "\x03\x05\x02\x03\x04", // 尔
+ 0x5c15: "\x05\x03\x02\x03\x04", // 尕
+ 0x5c16: "\x02\x03\x04\x01\x03\x04", // 尖
+ 0x5c17: "\x02\x01\x01\x02\x03\x04", // 尗
+ 0x5c18: "\x02\x03\x04\x01\x02\x01", // 尘
+ 0x5c19: "\x02\x03\x04\x02\x05\x02\x05\x01", // 尙
+ 0x5c1a: "\x02\x04\x03\x02\x05\x02\x05\x01", // 尚
+ 0x5c1b: "\x02\x03\x04\x02\x03\x04\x02\x03\x04", // 尛
+ 0x5c1c: "\x02\x03\x04\x01\x03\x04\x02\x03\x04", // 尜
+ 0x5c1d: "\x02\x04\x03\x04\x05\x01\x01\x05\x04", // 尝
+ 0x5c1e: "\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 尞
+ 0x5c1f: "\x02\x05\x01\x01\x01\x02\x01\x03\x04\x02\x03\x04\x03", // 尟
+ 0x5c20: "\x01\x02\x02\x01\x01\x01\x03\x04\x05\x02\x03\x04\x03", // 尠
+ 0x5c21: "\x02\x04\x03\x01\x03\x05\x02\x05\x01\x01\x01\x05\x03\x05", // 尡
+ 0x5c22: "\x01\x03\x05", // 尢
+ 0x5c23: "\x03\x04\x03\x05", // 尣
+ 0x5c24: "\x01\x03\x05\x04", // 尤
+ 0x5c25: "\x01\x03\x05\x03\x05\x04", // 尥
+ 0x5c26: "\x03\x04\x03\x05\x03\x05\x04", // 尦
+ 0x5c27: "\x01\x05\x03\x01\x03\x05", // 尧
+ 0x5c28: "\x01\x03\x05\x03\x03\x03\x04", // 尨
+ 0x5c29: "\x03\x04\x03\x05\x01\x01\x02\x01", // 尩
+ 0x5c2a: "\x01\x03\x05\x01\x01\x02\x01", // 尪
+ 0x5c2b: "\x01\x03\x05\x01\x01\x02\x01", // 尫
+ 0x5c2c: "\x01\x03\x05\x03\x04\x03\x02", // 尬
+ 0x5c2d: "\x01\x02\x01\x02\x02\x01\x03\x05", // 尭
+ 0x5c2e: "\x01\x03\x05\x05\x03\x01\x02\x03\x04", // 尮
+ 0x5c2f: "\x01\x03\x05\x03\x05\x01\x03\x05\x05", // 尯
+ 0x5c30: "\x01\x03\x05\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 尰
+ 0x5c31: "\x04\x01\x02\x05\x01\x02\x03\x04\x01\x03\x05\x04", // 就
+ 0x5c32: "\x01\x03\x05\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 尲
+ 0x5c33: "\x01\x03\x05\x02\x05\x05\x04\x05\x02\x05\x01\x01", // 尳
+ 0x5c34: "\x01\x03\x05\x02\x02\x03\x01\x04\x02\x05\x02\x02\x01", // 尴
+ 0x5c35: "\x01\x03\x05\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 尵
+ 0x5c36: "\x01\x03\x05\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01", // 尶
+ 0x5c37: "\x01\x03\x05\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01", // 尷
+ 0x5c38: "\x05\x01\x03", // 尸
+ 0x5c39: "\x05\x01\x01\x03", // 尹
+ 0x5c3a: "\x05\x01\x03\x04", // 尺
+ 0x5c3b: "\x05\x01\x03\x03\x05", // 尻
+ 0x5c3c: "\x05\x01\x03\x03\x05", // 尼
+ 0x5c3d: "\x05\x01\x03\x04\x04\x04", // 尽
+ 0x5c3e: "\x05\x01\x03\x03\x01\x01\x05", // 尾
+ 0x5c3f: "\x05\x01\x03\x02\x05\x03\x04", // 尿
+ 0x5c40: "\x05\x01\x03\x05\x02\x05\x01", // 局
+ 0x5c41: "\x05\x01\x03\x01\x05\x03\x05", // 屁
+ 0x5c42: "\x05\x01\x03\x01\x01\x05\x04", // 层
+ 0x5c43: "\x05\x01\x03\x02\x05\x03\x04", // 屃
+ 0x5c44: "\x05\x01\x03\x04\x04\x05\x03\x04", // 屄
+ 0x5c45: "\x05\x01\x03\x01\x02\x02\x05\x01", // 居
+ 0x5c46: "\x05\x01\x03\x01\x02\x01\x05\x02", // 屆
+ 0x5c47: "\x05\x01\x03\x02\x05\x01\x02\x01", // 屇
+ 0x5c48: "\x05\x01\x03\x05\x02\x02\x05\x02", // 屈
+ 0x5c49: "\x05\x01\x03\x01\x02\x02\x01\x05", // 屉
+ 0x5c4a: "\x05\x01\x03\x02\x05\x01\x02\x01", // 届
+ 0x5c4b: "\x05\x01\x03\x01\x05\x04\x01\x02\x01", // 屋
+ 0x5c4c: "\x05\x01\x03\x02\x05\x01\x02\x05\x02", // 屌
+ 0x5c4d: "\x05\x01\x03\x01\x03\x05\x04\x03\x05", // 屍
+ 0x5c4e: "\x05\x01\x03\x04\x03\x01\x02\x03\x04", // 屎
+ 0x5c4f: "\x05\x01\x03\x04\x03\x01\x01\x03\x02", // 屏
+ 0x5c50: "\x05\x01\x03\x03\x03\x02\x01\x02\x05\x04", // 屐
+ 0x5c51: "\x05\x01\x03\x02\x04\x03\x02\x05\x01\x01", // 屑
+ 0x5c52: "\x05\x01\x03\x01\x03\x01\x01\x05\x03\x04", // 屒
+ 0x5c53: "\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 屓
+ 0x5c54: "\x03\x02\x01\x02\x01\x05\x01\x03\x03\x05", // 屔
+ 0x5c55: "\x05\x01\x03\x01\x02\x02\x01\x05\x03\x04", // 展
+ 0x5c56: "\x05\x01\x03\x04\x01\x04\x03\x01\x01\x02", // 屖
+ 0x5c57: "\x05\x01\x03\x03\x01\x01\x05\x01\x02\x04", // 屗
+ 0x5c58: "\x05\x01\x03\x03\x01\x01\x05\x05\x02\x01", // 屘
+ 0x5c59: "\x05\x01\x03\x05\x02\x01\x02\x05\x01\x02", // 屙
+ 0x5c5a: "\x05\x01\x03\x01\x02\x05\x02\x04\x04\x04\x04", // 屚
+ 0x5c5b: "\x05\x01\x03\x03\x01\x01\x03\x03\x01\x01\x02", // 屛
+ 0x5c5c: "\x05\x01\x03\x03\x03\x02\x01\x02\x02\x01\x05", // 屜
+ 0x5c5d: "\x05\x01\x03\x02\x01\x01\x01\x02\x01\x01\x01", // 屝
+ 0x5c5e: "\x05\x01\x03\x03\x02\x05\x01\x02\x05\x02\x01\x04", // 属
+ 0x5c5f: "\x05\x01\x03\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 屟
+ 0x5c60: "\x05\x01\x03\x01\x02\x01\x03\x02\x05\x01\x01", // 屠
+ 0x5c61: "\x05\x01\x03\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 屡
+ 0x5c62: "\x05\x01\x03\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 屢
+ 0x5c63: "\x05\x01\x03\x03\x03\x02\x02\x01\x02\x01\x02\x01\x03\x04", // 屣
+ 0x5c64: "\x05\x01\x03\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 層
+ 0x5c65: "\x05\x01\x03\x03\x03\x02\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 履
+ 0x5c66: "\x05\x01\x03\x03\x03\x02\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 屦
+ 0x5c67: "\x05\x01\x03\x03\x03\x02\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 屧
+ 0x5c68: "\x05\x01\x03\x03\x03\x02\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 屨
+ 0x5c69: "\x05\x01\x03\x03\x03\x02\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 屩
+ 0x5c6a: "\x05\x01\x03\x04\x04\x05\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 屪
+ 0x5c6b: "\x05\x01\x03\x05\x02\x01\x03\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 屫
+ 0x5c6c: "\x05\x01\x03\x02\x04\x01\x03\x04\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 屬
+ 0x5c6d: "\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 屭
+ 0x5c6e: "\x05\x02\x02", // 屮
+ 0x5c6f: "\x01\x05\x02\x05", // 屯
+ 0x5c70: "\x04\x03\x01\x05\x02\x03", // 屰
+ 0x5c71: "\x02\x05\x02", // 山
+ 0x5c72: "\x03\x02\x05\x02", // 屲
+ 0x5c73: "\x03\x04\x02\x05\x02", // 屳
+ 0x5c74: "\x02\x05\x02\x05\x03", // 屴
+ 0x5c75: "\x02\x05\x02\x01\x03", // 屵
+ 0x5c76: "\x02\x05\x02\x05\x03", // 屶
+ 0x5c77: "\x02\x05\x02\x05\x03", // 屷
+ 0x5c78: "\x02\x05\x02\x01\x02\x01", // 屸
+ 0x5c79: "\x02\x05\x02\x03\x01\x05", // 屹
+ 0x5c7a: "\x02\x05\x02\x05\x01\x05", // 屺
+ 0x5c7b: "\x02\x05\x02\x05\x03\x04", // 屻
+ 0x5c7c: "\x02\x05\x02\x01\x03\x05", // 屼
+ 0x5c7d: "\x02\x05\x02\x01\x01\x02", // 屽
+ 0x5c7e: "\x02\x05\x02\x02\x05\x02", // 屾
+ 0x5c7f: "\x02\x05\x02\x01\x05\x01", // 屿
+ 0x5c80: "\x02\x05\x02\x02\x05\x02", // 岀
+ 0x5c81: "\x02\x05\x02\x03\x05\x04", // 岁
+ 0x5c82: "\x02\x05\x02\x05\x01\x05", // 岂
+ 0x5c83: "\x02\x05\x02\x05\x03\x04", // 岃
+ 0x5c84: "\x02\x05\x02\x03\x05\x01\x01", // 岄
+ 0x5c85: "\x02\x05\x02\x03\x03\x05\x04", // 岅
+ 0x5c86: "\x02\x05\x02\x03\x01\x03\x04", // 岆
+ 0x5c87: "\x02\x05\x02\x03\x05\x05\x02", // 岇
+ 0x5c88: "\x02\x05\x02\x01\x05\x02\x03", // 岈
+ 0x5c89: "\x02\x05\x02\x03\x05\x03\x03", // 岉
+ 0x5c8a: "\x05\x02\x01\x05\x02\x05\x02", // 岊
+ 0x5c8b: "\x02\x05\x02\x03\x05\x04", // 岋
+ 0x5c8c: "\x02\x05\x02\x03\x05\x04", // 岌
+ 0x5c8d: "\x02\x05\x02\x01\x01\x03\x02", // 岍
+ 0x5c8e: "\x02\x05\x02\x03\x04\x05\x03", // 岎
+ 0x5c8f: "\x02\x05\x02\x01\x01\x03\x05", // 岏
+ 0x5c90: "\x02\x05\x02\x01\x02\x05\x04", // 岐
+ 0x5c91: "\x02\x05\x02\x03\x04\x04\x05", // 岑
+ 0x5c92: "\x02\x05\x02\x03\x04\x04\x05", // 岒
+ 0x5c93: "\x02\x05\x02\x03\x03\x01\x02", // 岓
+ 0x5c94: "\x03\x04\x05\x03\x02\x05\x02", // 岔
+ 0x5c95: "\x02\x05\x02\x03\x04\x03\x02", // 岕
+ 0x5c96: "\x02\x05\x02\x01\x03\x04\x05", // 岖
+ 0x5c97: "\x02\x05\x02\x02\x05\x03\x04", // 岗
+ 0x5c98: "\x02\x05\x02\x02\x05\x03\x05", // 岘
+ 0x5c99: "\x03\x01\x03\x04\x02\x05\x02", // 岙
+ 0x5c9a: "\x02\x05\x02\x03\x05\x03\x04", // 岚
+ 0x5c9b: "\x03\x05\x04\x05\x02\x05\x02", // 岛
+ 0x5c9c: "\x02\x05\x02\x05\x02\x01\x05", // 岜
+ 0x5c9d: "\x02\x05\x02\x03\x01\x02\x01\x01", // 岝
+ 0x5c9e: "\x02\x05\x02\x03\x01\x02\x01\x01", // 岞
+ 0x5c9f: "\x02\x05\x02\x02\x05\x01\x03\x04", // 岟
+ 0x5ca0: "\x02\x05\x02\x01\x05\x01\x05", // 岠
+ 0x5ca1: "\x02\x05\x04\x03\x01\x02\x05\x02", // 岡
+ 0x5ca2: "\x02\x05\x02\x01\x02\x05\x01\x02", // 岢
+ 0x5ca3: "\x02\x05\x02\x03\x05\x02\x05\x01", // 岣
+ 0x5ca4: "\x02\x05\x02\x04\x04\x05\x03\x04", // 岤
+ 0x5ca5: "\x02\x05\x02\x05\x03\x02\x05\x04", // 岥
+ 0x5ca6: "\x02\x05\x02\x04\x01\x04\x03\x01", // 岦
+ 0x5ca7: "\x02\x05\x02\x05\x03\x02\x05\x01", // 岧
+ 0x5ca8: "\x02\x05\x02\x02\x05\x01\x01\x01", // 岨
+ 0x5ca9: "\x02\x05\x02\x01\x03\x02\x05\x01", // 岩
+ 0x5caa: "\x02\x05\x02\x05\x01\x05\x03\x02", // 岪
+ 0x5cab: "\x02\x05\x02\x02\x05\x01\x02\x01", // 岫
+ 0x5cac: "\x02\x05\x02\x02\x05\x01\x01\x02", // 岬
+ 0x5cad: "\x02\x05\x02\x03\x04\x04\x05\x04", // 岭
+ 0x5cae: "\x02\x05\x02\x04\x04\x05\x03\x05", // 岮
+ 0x5caf: "\x02\x05\x02\x01\x03\x02\x04\x01", // 岯
+ 0x5cb0: "\x02\x05\x02\x05\x05\x04\x05\x03", // 岰
+ 0x5cb1: "\x03\x02\x01\x05\x04\x02\x05\x02", // 岱
+ 0x5cb2: "\x02\x05\x02\x02\x05\x01\x03\x05", // 岲
+ 0x5cb3: "\x03\x02\x01\x02\x01\x02\x05\x02", // 岳
+ 0x5cb4: "\x02\x05\x02\x03\x02\x01\x02\x01", // 岴
+ 0x5cb5: "\x02\x05\x02\x01\x02\x02\x05\x01", // 岵
+ 0x5cb6: "\x02\x05\x02\x03\x02\x05\x01\x01", // 岶
+ 0x5cb7: "\x02\x05\x02\x05\x01\x05\x01\x05", // 岷
+ 0x5cb8: "\x02\x05\x02\x01\x03\x01\x01\x02", // 岸
+ 0x5cb9: "\x02\x05\x02\x05\x03\x02\x05\x01", // 岹
+ 0x5cba: "\x02\x05\x02\x03\x04\x04\x05\x04", // 岺
+ 0x5cbb: "\x02\x05\x02\x03\x05\x01\x05\x04", // 岻
+ 0x5cbc: "\x02\x05\x02\x01\x02\x03\x01\x02", // 岼
+ 0x5cbd: "\x02\x05\x02\x01\x05\x02\x03\x04", // 岽
+ 0x5cbe: "\x02\x05\x02\x02\x01\x02\x05\x01", // 岾
+ 0x5cbf: "\x02\x05\x02\x02\x03\x05\x01\x01", // 岿
+ 0x5cc0: "\x02\x05\x02\x02\x05\x01\x02\x01", // 峀
+ 0x5cc1: "\x02\x05\x02\x03\x05\x03\x05\x02", // 峁
+ 0x5cc2: "\x02\x05\x02\x03\x05\x04\x04\x04", // 峂
+ 0x5cc3: "\x04\x04\x03\x04\x05\x02\x05\x02", // 峃
+ 0x5cc4: "\x02\x05\x02\x05\x04\x01\x01\x02", // 峄
+ 0x5cc5: "\x02\x05\x02\x05\x04\x01\x03\x02", // 峅
+ 0x5cc6: "\x02\x05\x02\x03\x04\x01\x02\x05\x01", // 峆
+ 0x5cc7: "\x02\x05\x02\x03\x04\x01\x02\x05\x01", // 峇
+ 0x5cc8: "\x02\x05\x02\x03\x05\x04\x02\x05\x01", // 峈
+ 0x5cc9: "\x02\x05\x02\x03\x05\x04\x02\x05\x01", // 峉
+ 0x5cca: "\x03\x02\x05\x01\x05\x01\x02\x05\x02", // 峊
+ 0x5ccb: "\x02\x05\x02\x03\x05\x02\x05\x01\x01", // 峋
+ 0x5ccc: "\x02\x05\x02\x01\x05\x04\x01\x02\x01", // 峌
+ 0x5ccd: "\x02\x05\x02\x05\x01\x01\x01\x01\x02", // 峍
+ 0x5cce: "\x02\x05\x02\x05\x01\x01\x05\x03\x04", // 峎
+ 0x5ccf: "\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 峏
+ 0x5cd0: "\x02\x05\x02\x04\x01\x05\x03\x03\x04", // 峐
+ 0x5cd1: "\x02\x05\x02\x03\x04\x01\x01\x02\x01", // 峑
+ 0x5cd2: "\x02\x05\x02\x02\x05\x01\x02\x05\x01", // 峒
+ 0x5cd3: "\x02\x05\x02\x01\x05\x01\x05\x03\x04", // 峓
+ 0x5cd4: "\x02\x05\x02\x01\x02\x01\x03\x03\x05", // 峔
+ 0x5cd5: "\x02\x05\x02\x04\x01\x02\x05\x01\x01", // 峕
+ 0x5cd6: "\x02\x05\x02\x04\x04\x05\x05\x03\x01", // 峖
+ 0x5cd7: "\x02\x05\x02\x03\x05\x01\x03\x05\x05", // 峗
+ 0x5cd8: "\x02\x05\x02\x01\x02\x05\x01\x01\x01", // 峘
+ 0x5cd9: "\x02\x05\x02\x01\x02\x01\x01\x02\x04", // 峙
+ 0x5cda: "\x02\x05\x02\x01\x03\x04\x01\x02\x01", // 峚
+ 0x5cdb: "\x02\x05\x02\x01\x03\x05\x04\x02\x02", // 峛
+ 0x5cdc: "\x02\x05\x02\x03\x04\x02\x01\x02\x01", // 峜
+ 0x5cdd: "\x02\x05\x02\x02\x05\x01\x02\x05\x01", // 峝
+ 0x5cde: "\x02\x05\x02\x03\x05\x01\x03\x05\x05", // 峞
+ 0x5cdf: "\x02\x05\x02\x01\x03\x02\x05\x01\x01", // 峟
+ 0x5ce0: "\x02\x05\x02\x02\x01\x01\x01\x02\x04", // 峠
+ 0x5ce1: "\x02\x05\x02\x01\x04\x03\x01\x03\x04", // 峡
+ 0x5ce2: "\x02\x05\x02\x01\x03\x05\x04\x02\x02", // 峢
+ 0x5ce3: "\x02\x05\x02\x01\x05\x03\x01\x03\x05", // 峣
+ 0x5ce4: "\x02\x05\x02\x03\x01\x03\x04\x03\x02", // 峤
+ 0x5ce5: "\x02\x05\x02\x03\x05\x05\x01\x01\x02", // 峥
+ 0x5ce6: "\x04\x01\x02\x02\x03\x04\x02\x05\x02", // 峦
+ 0x5ce7: "\x02\x05\x02\x04\x01\x03\x04\x03\x04", // 峧
+ 0x5ce8: "\x02\x05\x02\x03\x01\x02\x01\x05\x03\x04", // 峨
+ 0x5ce9: "\x02\x05\x02\x03\x01\x02\x01\x05\x03\x04", // 峩
+ 0x5cea: "\x02\x05\x02\x03\x04\x03\x04\x02\x05\x01", // 峪
+ 0x5ceb: "\x02\x05\x02\x01\x05\x02\x03\x05\x02", // 峫
+ 0x5cec: "\x02\x05\x02\x01\x02\x05\x01\x01\x02\x04", // 峬
+ 0x5ced: "\x02\x05\x02\x02\x04\x03\x02\x05\x01\x01", // 峭
+ 0x5cee: "\x02\x05\x02\x05\x01\x01\x03\x02\x05\x01", // 峮
+ 0x5cef: "\x02\x05\x02\x03\x05\x04\x01\x01\x01\x02", // 峯
+ 0x5cf0: "\x02\x05\x02\x03\x05\x04\x01\x01\x01\x02", // 峰
+ 0x5cf1: "\x03\x05\x03\x05\x02\x01\x01\x02\x05\x02", // 峱
+ 0x5cf2: "\x02\x05\x02\x03\x01\x02\x03\x04\x02\x02", // 峲
+ 0x5cf3: "\x02\x05\x02\x03\x02\x02\x03\x01\x03\x04", // 峳
+ 0x5cf4: "\x02\x05\x02\x02\x05\x01\x01\x01\x03\x05", // 峴
+ 0x5cf5: "\x02\x05\x02\x04\x04\x05\x01\x03\x05\x04", // 峵
+ 0x5cf6: "\x03\x02\x05\x01\x01\x01\x05\x02\x05\x02", // 島
+ 0x5cf7: "\x02\x05\x02\x04\x01\x04\x03\x01\x01\x02", // 峷
+ 0x5cf8: "\x02\x05\x02\x01\x03\x05\x05\x03\x04", // 峸
+ 0x5cf9: "\x03\x04\x01\x01\x02\x03\x04\x02\x05\x02", // 峹
+ 0x5cfa: "\x02\x05\x02\x01\x02\x05\x01\x01\x03\x04", // 峺
+ 0x5cfb: "\x02\x05\x02\x05\x04\x03\x04\x03\x05\x04", // 峻
+ 0x5cfc: "\x02\x05\x02\x03\x01\x02\x01\x02\x05\x01", // 峼
+ 0x5cfd: "\x02\x05\x02\x01\x03\x04\x03\x04\x03\x04", // 峽
+ 0x5cfe: "\x04\x04\x01\x03\x03\x01\x02\x02\x05\x02", // 峾
+ 0x5cff: "\x02\x05\x02\x01\x02\x05\x01\x02\x05\x01", // 峿
+ 0x5d00: "\x02\x05\x02\x04\x05\x01\x01\x05\x03\x04", // 崀
+ 0x5d01: "\x02\x05\x02\x01\x02\x01\x03\x05\x03\x04", // 崁
+ 0x5d02: "\x02\x05\x02\x01\x02\x02\x04\x05\x05\x03", // 崂
+ 0x5d03: "\x02\x05\x02\x01\x04\x03\x01\x02\x03\x04", // 崃
+ 0x5d04: "\x02\x05\x02\x03\x04\x01\x04\x04\x03\x01", // 崄
+ 0x5d05: "\x02\x05\x02\x03\x05\x03\x05\x01\x01\x02", // 崅
+ 0x5d06: "\x02\x05\x02\x04\x04\x05\x03\x04\x01\x02\x01", // 崆
+ 0x5d07: "\x02\x05\x02\x04\x04\x05\x01\x01\x02\x03\x04", // 崇
+ 0x5d08: "\x04\x04\x05\x01\x01\x02\x03\x04\x02\x05\x02", // 崈
+ 0x5d09: "\x02\x05\x02\x02\x05\x03\x04\x02\x05\x01\x01", // 崉
+ 0x5d0a: "\x02\x05\x02\x01\x02\x03\x04\x01\x02\x03\x04", // 崊
+ 0x5d0b: "\x02\x05\x02\x01\x01\x02\x02\x01\x01\x02", // 崋
+ 0x5d0c: "\x02\x05\x02\x05\x01\x03\x01\x02\x02\x05\x01", // 崌
+ 0x5d0d: "\x02\x05\x02\x01\x03\x04\x03\x04\x02\x03\x04", // 崍
+ 0x5d0e: "\x02\x05\x02\x01\x03\x04\x01\x02\x05\x01\x02", // 崎
+ 0x5d0f: "\x02\x05\x02\x03\x05\x01\x05\x02\x05\x01\x01", // 崏
+ 0x5d10: "\x02\x05\x02\x02\x05\x01\x01\x01\x05\x03\x05", // 崐
+ 0x5d11: "\x02\x05\x02\x02\x05\x01\x01\x01\x05\x03\x05", // 崑
+ 0x5d12: "\x02\x05\x02\x04\x01\x03\x04\x03\x04\x01\x02", // 崒
+ 0x5d13: "\x02\x05\x02\x02\x05\x01\x02\x02\x05\x01\x01", // 崓
+ 0x5d14: "\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 崔
+ 0x5d15: "\x02\x05\x02\x01\x03\x01\x02\x01\x01\x02\x01", // 崕
+ 0x5d16: "\x02\x05\x02\x01\x03\x01\x02\x01\x01\x02\x01", // 崖
+ 0x5d17: "\x02\x05\x02\x02\x05\x04\x03\x01\x02\x05\x02", // 崗
+ 0x5d18: "\x02\x05\x02\x03\x04\x01\x02\x05\x01\x02\x02", // 崘
+ 0x5d19: "\x02\x05\x02\x03\x04\x01\x02\x05\x01\x02\x02", // 崙
+ 0x5d1a: "\x02\x05\x02\x01\x02\x01\x03\x04\x03\x05\x04", // 崚
+ 0x5d1b: "\x02\x05\x02\x05\x01\x03\x05\x02\x02\x05\x02", // 崛
+ 0x5d1c: "\x02\x05\x02\x03\x01\x02\x01\x02\x02\x01\x01", // 崜
+ 0x5d1d: "\x02\x05\x02\x01\x01\x02\x01\x02\x05\x01\x01", // 崝
+ 0x5d1e: "\x02\x05\x02\x04\x01\x02\x05\x01\x05\x02\x01", // 崞
+ 0x5d1f: "\x02\x05\x02\x03\x04\x01\x01\x02\x04\x03\x01", // 崟
+ 0x5d20: "\x02\x05\x02\x01\x02\x05\x01\x01\x02\x03\x04", // 崠
+ 0x5d21: "\x02\x05\x02\x05\x02\x04\x01\x03\x04\x05\x02", // 崡
+ 0x5d22: "\x02\x05\x02\x03\x04\x04\x03\x05\x01\x01\x02", // 崢
+ 0x5d23: "\x02\x05\x02\x03\x01\x02\x03\x04\x05\x03\x01", // 崣
+ 0x5d24: "\x02\x05\x02\x03\x04\x01\x03\x02\x05\x01\x01", // 崤
+ 0x5d25: "\x02\x05\x02\x03\x02\x05\x01\x01\x03\x01\x02", // 崥
+ 0x5d26: "\x02\x05\x02\x01\x03\x04\x02\x05\x01\x01\x05", // 崦
+ 0x5d27: "\x02\x05\x02\x01\x02\x03\x04\x03\x04\x05\x04", // 崧
+ 0x5d28: "\x02\x05\x02\x01\x05\x01\x01\x02\x01\x03\x04", // 崨
+ 0x5d29: "\x02\x05\x02\x03\x05\x01\x01\x03\x05\x01\x01", // 崩
+ 0x5d2a: "\x02\x05\x02\x04\x01\x03\x04\x03\x04\x01\x02", // 崪
+ 0x5d2b: "\x02\x05\x02\x05\x01\x03\x04\x02\x02\x05\x02", // 崫
+ 0x5d2c: "\x02\x05\x02\x01\x02\x05\x01\x01\x02\x03\x04", // 崬
+ 0x5d2d: "\x02\x05\x02\x01\x05\x02\x01\x03\x03\x01\x02", // 崭
+ 0x5d2e: "\x02\x05\x02\x02\x05\x01\x02\x02\x05\x01\x01", // 崮
+ 0x5d2f: "\x02\x05\x02\x03\x04\x01\x01\x02\x04\x03\x01", // 崯
+ 0x5d30: "\x02\x05\x02\x05\x05\x05\x02\x05\x01\x02\x01", // 崰
+ 0x5d31: "\x02\x05\x02\x02\x05\x01\x01\x01\x03\x04\x02\x02", // 崱
+ 0x5d32: "\x02\x05\x02\x03\x02\x05\x01\x01\x01\x01\x02\x01", // 崲
+ 0x5d33: "\x02\x05\x02\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 崳
+ 0x5d34: "\x02\x05\x02\x01\x03\x01\x05\x03\x01\x05\x03\x04", // 崴
+ 0x5d35: "\x02\x05\x02\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 崵
+ 0x5d36: "\x02\x05\x02\x01\x02\x01\x01\x02\x01\x01\x02\x04", // 崶
+ 0x5d37: "\x02\x05\x02\x04\x03\x01\x02\x05\x03\x05\x01\x01", // 崷
+ 0x5d38: "\x02\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 崸
+ 0x5d39: "\x02\x05\x02\x04\x01\x04\x03\x04\x05\x02\x05\x02", // 崹
+ 0x5d3a: "\x02\x05\x02\x04\x01\x05\x03\x03\x01\x05\x02\x05", // 崺
+ 0x5d3b: "\x02\x05\x02\x03\x03\x02\x01\x02\x01\x01\x02\x04", // 崻
+ 0x5d3c: "\x02\x05\x02\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 崼
+ 0x5d3d: "\x02\x05\x02\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 崽
+ 0x5d3e: "\x02\x05\x02\x01\x02\x05\x02\x02\x01\x05\x03\x01", // 崾
+ 0x5d3f: "\x02\x05\x02\x02\x05\x01\x02\x05\x01\x01\x01\x05", // 崿
+ 0x5d40: "\x02\x05\x02\x01\x02\x03\x04\x04\x01\x01\x02\x01", // 嵀
+ 0x5d41: "\x02\x05\x02\x01\x02\x02\x01\x01\x01\x03\x04\x05", // 嵁
+ 0x5d42: "\x02\x05\x02\x03\x03\x02\x05\x01\x01\x01\x01\x02", // 嵂
+ 0x5d43: "\x02\x05\x02\x04\x01\x04\x03\x01\x03\x03\x03\x03", // 嵃
+ 0x5d44: "\x02\x05\x02\x04\x03\x01\x01\x02\x01\x01\x03\x04", // 嵄
+ 0x5d45: "\x02\x05\x02\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 嵅
+ 0x5d46: "\x03\x01\x02\x03\x04\x01\x03\x05\x04\x02\x05\x02", // 嵆
+ 0x5d47: "\x03\x01\x02\x03\x04\x01\x03\x05\x04\x02\x05\x02", // 嵇
+ 0x5d48: "\x02\x05\x02\x03\x04\x04\x03\x01\x01\x03\x05\x04", // 嵈
+ 0x5d49: "\x02\x05\x02\x04\x01\x02\x05\x01\x04\x05\x01\x02", // 嵉
+ 0x5d4a: "\x02\x05\x02\x03\x01\x02\x02\x01\x01\x03\x05\x03\x04", // 嵊
+ 0x5d4b: "\x02\x05\x02\x05\x02\x01\x03\x02\x05\x01\x01\x01", // 嵋
+ 0x5d4c: "\x02\x05\x02\x01\x02\x02\x01\x01\x03\x05\x03\x04", // 嵌
+ 0x5d4d: "\x05\x04\x05\x02\x03\x03\x01\x03\x04\x02\x05\x02", // 嵍
+ 0x5d4e: "\x02\x05\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 嵎
+ 0x5d4f: "\x02\x05\x02\x03\x04\x05\x02\x03\x04\x03\x05\x04", // 嵏
+ 0x5d50: "\x02\x05\x02\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 嵐
+ 0x5d51: "\x02\x05\x02\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 嵑
+ 0x5d52: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x02", // 嵒
+ 0x5d53: "\x02\x05\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 嵓
+ 0x5d54: "\x02\x05\x02\x02\x05\x01\x02\x01\x01\x05\x03\x04", // 嵔
+ 0x5d55: "\x02\x05\x02\x03\x04\x05\x02\x03\x04\x03\x05\x04", // 嵕
+ 0x5d56: "\x02\x05\x02\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 嵖
+ 0x5d57: "\x02\x05\x02\x01\x03\x01\x02\x03\x03\x05\x03\x04", // 嵗
+ 0x5d58: "\x02\x05\x02\x01\x02\x02\x04\x05\x01\x02\x03\x04", // 嵘
+ 0x5d59: "\x02\x05\x02\x03\x01\x02\x03\x04\x04\x04\x01\x02", // 嵙
+ 0x5d5a: "\x02\x05\x02\x03\x01\x01\x01\x05\x03\x05\x03\x04", // 嵚
+ 0x5d5b: "\x02\x05\x02\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 嵛
+ 0x5d5c: "\x02\x05\x02\x04\x01\x04\x03\x01\x02\x05\x01\x02", // 嵜
+ 0x5d5d: "\x02\x05\x02\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 嵝
+ 0x5d5e: "\x03\x04\x01\x01\x02\x03\x04\x02\x05\x02\x02\x05\x02", // 嵞
+ 0x5d5f: "\x02\x05\x02\x01\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 嵟
+ 0x5d60: "\x02\x05\x02\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04", // 嵠
+ 0x5d61: "\x02\x05\x02\x03\x04\x05\x04\x05\x04\x01\x05\x04\x01", // 嵡
+ 0x5d62: "\x02\x05\x02\x03\x04\x04\x05\x01\x01\x03\x02\x05\x01", // 嵢
+ 0x5d63: "\x02\x05\x02\x04\x01\x03\x05\x01\x01\x02\x02\x05\x01", // 嵣
+ 0x5d64: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x02\x05\x02", // 嵤
+ 0x5d65: "\x02\x05\x02\x03\x05\x04\x01\x05\x02\x01\x02\x03\x04", // 嵥
+ 0x5d66: "\x02\x05\x02\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 嵦
+ 0x5d67: "\x02\x05\x02\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 嵧
+ 0x5d68: "\x02\x05\x02\x03\x02\x05\x01\x01\x05\x04\x04\x04\x04", // 嵨
+ 0x5d69: "\x02\x05\x02\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 嵩
+ 0x5d6a: "\x02\x05\x02\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 嵪
+ 0x5d6b: "\x02\x05\x02\x04\x03\x01\x05\x05\x04\x05\x05\x04", // 嵫
+ 0x5d6c: "\x02\x05\x02\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 嵬
+ 0x5d6d: "\x02\x05\x02\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03", // 嵭
+ 0x5d6e: "\x02\x05\x02\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 嵮
+ 0x5d6f: "\x02\x05\x02\x04\x03\x01\x01\x01\x03\x01\x02\x01", // 嵯
+ 0x5d70: "\x02\x05\x02\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 嵰
+ 0x5d71: "\x02\x05\x02\x04\x04\x05\x03\x04\x03\x04\x02\x05\x01", // 嵱
+ 0x5d72: "\x02\x05\x02\x03\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 嵲
+ 0x5d73: "\x02\x05\x02\x04\x03\x01\x01\x01\x03\x01\x02\x01", // 嵳
+ 0x5d74: "\x02\x05\x02\x04\x01\x03\x04\x03\x04\x02\x05\x01\x01", // 嵴
+ 0x5d75: "\x02\x05\x02\x02\x05\x01\x01\x01\x02\x01\x01\x02\x04", // 嵵
+ 0x5d76: "\x02\x05\x02\x05\x01\x05\x04\x01\x05\x01\x05\x04\x01", // 嵶
+ 0x5d77: "\x02\x05\x02\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04", // 嵷
+ 0x5d78: "\x02\x05\x02\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04", // 嵸
+ 0x5d79: "\x02\x05\x02\x05\x01\x05\x02\x05\x01\x02\x05\x01\x02\x01\x04", // 嵹
+ 0x5d7a: "\x02\x05\x02\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 嵺
+ 0x5d7b: "\x02\x05\x02\x04\x01\x03\x05\x01\x01\x02\x04\x01\x03\x04", // 嵻
+ 0x5d7c: "\x02\x05\x02\x04\x01\x04\x03\x01\x03\x03\x01\x01\x02\x01", // 嵼
+ 0x5d7d: "\x02\x05\x02\x01\x03\x02\x02\x01\x05\x04\x05\x02\x05\x02", // 嵽
+ 0x5d7e: "\x02\x05\x02\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 嵾
+ 0x5d7f: "\x02\x05\x02\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 嵿
+ 0x5d80: "\x02\x05\x02\x01\x04\x05\x02\x04\x04\x04\x04\x01\x01\x05", // 嶀
+ 0x5d81: "\x02\x05\x02\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 嶁
+ 0x5d82: "\x02\x05\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02", // 嶂
+ 0x5d83: "\x02\x05\x02\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02", // 嶃
+ 0x5d84: "\x02\x05\x02\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02", // 嶄
+ 0x5d85: "\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04\x02\x05\x02", // 嶅
+ 0x5d86: "\x02\x05\x02\x01\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01", // 嶆
+ 0x5d87: "\x02\x05\x02\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 嶇
+ 0x5d88: "\x02\x05\x02\x05\x02\x01\x03\x03\x05\x04\x04\x01\x02\x04", // 嶈
+ 0x5d89: "\x02\x05\x02\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 嶉
+ 0x5d8a: "\x02\x05\x02\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 嶊
+ 0x5d8b: "\x02\x05\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 嶋
+ 0x5d8c: "\x02\x05\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 嶌
+ 0x5d8d: "\x02\x05\x02\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01", // 嶍
+ 0x5d8e: "\x02\x05\x02\x05\x01\x03\x01\x01\x02\x03\x04\x01\x02\x04", // 嶎
+ 0x5d8f: "\x02\x05\x02\x01\x03\x01\x02\x05\x03\x05\x01\x01\x05\x01\x05", // 嶏
+ 0x5d90: "\x02\x05\x02\x05\x02\x03\x05\x04\x01\x03\x01\x01\x02\x01", // 嶐
+ 0x5d91: "\x02\x05\x02\x03\x05\x02\x05\x01\x03\x05\x03\x03\x03\x04", // 嶑
+ 0x5d92: "\x02\x05\x02\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 嶒
+ 0x5d93: "\x02\x05\x02\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 嶓
+ 0x5d94: "\x02\x05\x02\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x03\x04", // 嶔
+ 0x5d95: "\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 嶕
+ 0x5d96: "\x02\x05\x02\x03\x04\x01\x02\x05\x01\x05\x04\x01\x05\x04\x01", // 嶖
+ 0x5d97: "\x02\x05\x02\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x05\x03", // 嶗
+ 0x5d98: "\x02\x05\x02\x01\x02\x03\x04\x01\x05\x03\x04\x01\x05\x03\x04", // 嶘
+ 0x5d99: "\x02\x05\x02\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 嶙
+ 0x5d9a: "\x02\x05\x02\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 嶚
+ 0x5d9b: "\x02\x05\x02\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 嶛
+ 0x5d9c: "\x02\x05\x02\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x01", // 嶜
+ 0x5d9d: "\x02\x05\x02\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 嶝
+ 0x5d9e: "\x05\x02\x01\x03\x01\x02\x01\x02\x05\x01\x01\x02\x05\x02", // 嶞
+ 0x5d9f: "\x02\x05\x02\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x02\x04", // 嶟
+ 0x5da0: "\x02\x05\x02\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 嶠
+ 0x5da1: "\x02\x05\x02\x01\x03\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04", // 嶡
+ 0x5da2: "\x02\x05\x02\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 嶢
+ 0x5da3: "\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 嶣
+ 0x5da4: "\x02\x05\x02\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 嶤
+ 0x5da5: "\x02\x05\x02\x01\x03\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04", // 嶥
+ 0x5da6: "\x02\x05\x02\x03\x05\x01\x03\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 嶦
+ 0x5da7: "\x02\x05\x02\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 嶧
+ 0x5da8: "\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x02\x05\x02", // 嶨
+ 0x5da9: "\x02\x05\x02\x02\x05\x01\x02\x02\x01\x01\x03\x01\x01\x05\x03\x04", // 嶩
+ 0x5daa: "\x02\x05\x02\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x02\x03\x04", // 嶪
+ 0x5dab: "\x02\x05\x02\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x02\x03\x04", // 嶫
+ 0x5dac: "\x02\x05\x02\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01\x05\x03\x04", // 嶬
+ 0x5dad: "\x02\x05\x02\x03\x02\x05\x01\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 嶭
+ 0x5dae: "\x02\x05\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 嶮
+ 0x5daf: "\x02\x05\x02\x02\x05\x01\x01\x02\x02\x01\x01\x01\x05\x03\x04", // 嶯
+ 0x5db0: "\x02\x05\x02\x03\x05\x03\x05\x01\x01\x02\x05\x03\x03\x01\x01\x02", // 嶰
+ 0x5db1: "\x02\x05\x02\x01\x02\x02\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 嶱
+ 0x5db2: "\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x02\x05", // 嶲
+ 0x5db3: "\x02\x05\x02\x01\x03\x05\x03\x03\x03\x04\x01\x02\x01\x01\x02\x01", // 嶳
+ 0x5db4: "\x03\x02\x05\x04\x03\x01\x02\x03\x04\x01\x03\x04\x02\x05\x02", // 嶴
+ 0x5db5: "\x02\x05\x02\x02\x05\x02\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01", // 嶵
+ 0x5db6: "\x02\x05\x02\x03\x03\x02\x02\x05\x02\x01\x03\x05\x03\x01\x03\x04", // 嶶
+ 0x5db7: "\x02\x05\x02\x03\x05\x03\x01\x01\x03\x04\x05\x04\x05\x02\x01\x03\x04", // 嶷
+ 0x5db8: "\x02\x05\x02\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x01\x02\x03\x04", // 嶸
+ 0x5db9: "\x02\x05\x02\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 嶹
+ 0x5dba: "\x02\x05\x02\x03\x04\x04\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 嶺
+ 0x5dbb: "\x02\x05\x02\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03\x04", // 嶻
+ 0x5dbc: "\x02\x05\x02\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 嶼
+ 0x5dbd: "\x02\x05\x02\x03\x05\x03\x04\x01\x01\x01\x02\x05\x01\x01\x03\x04\x04", // 嶽
+ 0x5dbe: "\x02\x05\x02\x03\x04\x04\x03\x01\x02\x01\x05\x01\x01\x04\x05\x04\x04", // 嶾
+ 0x5dbf: "\x02\x05\x02\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02", // 嶿
+ 0x5dc0: "\x02\x05\x02\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x01\x05\x03\x04", // 巀
+ 0x5dc1: "\x02\x05\x02\x01\x03\x01\x02\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 巁
+ 0x5dc2: "\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x03\x04\x02\x05\x01", // 巂
+ 0x5dc3: "\x02\x05\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x05\x01\x05\x01\x01\x01", // 巃
+ 0x5dc4: "\x02\x05\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x05\x01\x05\x01\x01\x01", // 巄
+ 0x5dc5: "\x02\x05\x02\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04\x01\x03\x02\x05\x03\x04", // 巅
+ 0x5dc6: "\x02\x05\x02\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x02\x05\x01\x02\x05\x01", // 巆
+ 0x5dc7: "\x02\x05\x02\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x04\x03\x01\x01\x05\x03\x04", // 巇
+ 0x5dc8: "\x02\x05\x02\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x04\x03\x01\x02\x03\x04", // 巈
+ 0x5dc9: "\x02\x05\x02\x03\x04\x02\x05\x01\x01\x05\x03\x04\x03\x04\x02\x05\x01\x03\x05\x04", // 巉
+ 0x5dca: "\x02\x05\x02\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x05\x03\x01", // 巊
+ 0x5dcb: "\x02\x05\x02\x03\x02\x05\x01\x05\x01\x02\x01\x02\x01\x05\x01\x01\x04\x05\x02\x05\x02", // 巋
+ 0x5dcc: "\x02\x05\x02\x04\x04\x03\x01\x03\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 巌
+ 0x5dcd: "\x02\x05\x02\x03\x01\x02\x03\x04\x05\x03\x01\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 巍
+ 0x5dce: "\x02\x05\x02\x01\x03\x02\x05\x01\x01\x01\x02\x01\x02\x01\x05\x01\x05\x03\x04\x03\x05\x04", // 巎
+ 0x5dcf: "\x02\x05\x02\x01\x02\x02\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 巏
+ 0x5dd0: "\x02\x05\x02\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x02\x05\x01\x01\x03\x03\x01\x02", // 巐
+ 0x5dd1: "\x02\x05\x02\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 巑
+ 0x5dd2: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x02\x05\x02", // 巒
+ 0x5dd3: "\x02\x05\x02\x03\x05\x02\x05\x01\x01\x01\x05\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 巓
+ 0x5dd4: "\x02\x05\x02\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x01\x03\x04", // 巔
+ 0x5dd5: "\x02\x05\x02\x04\x03\x01\x03\x02\x05\x01\x05\x01\x04\x01\x04\x03\x01\x01\x02\x05\x03\x01", // 巕
+ 0x5dd6: "\x02\x05\x02\x02\x05\x01\x02\x05\x01\x01\x03\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 巖
+ 0x5dd7: "\x02\x05\x02\x02\x05\x01\x02\x05\x01\x01\x03\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 巗
+ 0x5dd8: "\x02\x05\x02\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x03\x04\x04", // 巘
+ 0x5dd9: "\x02\x05\x02\x04\x03\x01\x03\x02\x05\x01\x01\x01\x02\x01\x02\x01\x05\x01\x05\x03\x04\x03\x05\x04", // 巙
+ 0x5dda: "\x02\x05\x02\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x03\x04\x04", // 巚
+ 0x5ddb: "\x05\x05\x05", // 巛
+ 0x5ddc: "\x05\x05", // 巜
+ 0x5ddd: "\x03\x02\x02", // 川
+ 0x5dde: "\x04\x03\x04\x02\x04\x02", // 州
+ 0x5ddf: "\x04\x01\x05\x03\x02\x05", // 巟
+ 0x5de0: "\x01\x05\x05\x05\x01\x02\x01", // 巠
+ 0x5de1: "\x05\x05\x05\x04\x05\x04", // 巡
+ 0x5de2: "\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 巢
+ 0x5de3: "\x04\x04\x03\x02\x05\x01\x01\x01\x02\x03\x04", // 巣
+ 0x5de4: "\x05\x05\x05\x02\x05\x03\x04\x01\x05\x04\x04\x05\x04\x04\x05", // 巤
+ 0x5de5: "\x01\x02\x01", // 工
+ 0x5de6: "\x01\x03\x01\x02\x01", // 左
+ 0x5de7: "\x01\x02\x01\x01\x05", // 巧
+ 0x5de8: "\x01\x05\x01\x05", // 巨
+ 0x5de9: "\x01\x02\x01\x03\x05\x04", // 巩
+ 0x5dea: "\x01\x05\x01\x05\x05", // 巪
+ 0x5deb: "\x01\x02\x03\x04\x03\x04\x01", // 巫
+ 0x5dec: "\x01\x02\x01\x03\x05\x01\x01\x03\x04", // 巬
+ 0x5ded: "\x01\x02\x01\x05\x03\x01\x01\x03\x04", // 巭
+ 0x5dee: "\x04\x03\x01\x01\x01\x03\x01\x02\x01", // 差
+ 0x5def: "\x05\x04\x01\x02\x01\x04\x01\x05\x04\x03\x02\x05", // 巯
+ 0x5df0: "\x01\x05\x05\x05\x01\x02\x01\x04\x01\x05\x04\x03\x02\x05", // 巰
+ 0x5df1: "\x05\x01\x05", // 己
+ 0x5df2: "\x05\x01\x05", // 已
+ 0x5df3: "\x05\x01\x05", // 巳
+ 0x5df4: "\x05\x02\x01\x05", // 巴
+ 0x5df5: "\x03\x03\x01\x05\x02\x01\x05", // 巵
+ 0x5df6: "\x05\x03\x02\x05\x01\x05\x01\x05", // 巶
+ 0x5df7: "\x01\x02\x02\x01\x03\x04\x05\x01\x05", // 巷
+ 0x5df8: "\x01\x02\x02\x05\x01\x02\x05\x05\x01\x05", // 巸
+ 0x5df9: "\x05\x02\x05\x03\x04\x01\x05\x01\x05", // 巹
+ 0x5dfa: "\x05\x01\x05\x05\x01\x05\x01\x03\x04", // 巺
+ 0x5dfb: "\x04\x03\x01\x01\x03\x04\x05\x01\x05", // 巻
+ 0x5dfc: "\x05\x02\x01\x05\x02\x05\x01\x03\x05", // 巼
+ 0x5dfd: "\x05\x01\x05\x05\x01\x05\x01\x02\x02\x01\x03\x04", // 巽
+ 0x5dfe: "\x02\x05\x02", // 巾
+ 0x5dff: "\x01\x02\x05\x02", // 巿
+ 0x5e00: "\x01\x02\x05\x02", // 帀
+ 0x5e01: "\x03\x02\x05\x02", // 币
+ 0x5e02: "\x04\x01\x02\x05\x02", // 市
+ 0x5e03: "\x01\x03\x02\x05\x02", // 布
+ 0x5e04: "\x02\x05\x02\x01\x02", // 帄
+ 0x5e05: "\x02\x03\x02\x05\x02", // 帅
+ 0x5e06: "\x02\x05\x02\x03\x05\x04", // 帆
+ 0x5e07: "\x05\x01\x01\x02\x05\x02", // 帇
+ 0x5e08: "\x02\x03\x01\x02\x05\x02", // 师
+ 0x5e09: "\x02\x05\x02\x03\x04\x05\x03", // 帉
+ 0x5e0a: "\x02\x05\x02\x05\x02\x01\x05", // 帊
+ 0x5e0b: "\x03\x05\x01\x05\x02\x05\x02", // 帋
+ 0x5e0c: "\x03\x04\x01\x03\x02\x05\x02", // 希
+ 0x5e0d: "\x04\x05\x01\x03\x02\x05\x02", // 帍
+ 0x5e0e: "\x02\x05\x02\x04\x05\x03\x05", // 帎
+ 0x5e0f: "\x02\x05\x02\x01\x01\x05\x02", // 帏
+ 0x5e10: "\x02\x05\x02\x03\x01\x05\x04", // 帐
+ 0x5e11: "\x05\x03\x01\x05\x04\x02\x05\x02", // 帑
+ 0x5e12: "\x03\x02\x01\x05\x04\x02\x05\x02", // 帒
+ 0x5e13: "\x02\x05\x02\x01\x01\x02\x03\x04", // 帓
+ 0x5e14: "\x02\x05\x02\x05\x03\x02\x05\x04", // 帔
+ 0x5e15: "\x02\x05\x02\x03\x02\x05\x01\x01", // 帕
+ 0x5e16: "\x02\x05\x02\x02\x01\x02\x05\x01", // 帖
+ 0x5e17: "\x02\x05\x02\x01\x03\x05\x04\x04", // 帗
+ 0x5e18: "\x04\x04\x05\x03\x04\x02\x05\x02", // 帘
+ 0x5e19: "\x02\x05\x02\x03\x01\x01\x03\x04", // 帙
+ 0x5e1a: "\x05\x01\x01\x04\x05\x02\x05\x02", // 帚
+ 0x5e1b: "\x03\x02\x05\x01\x01\x02\x05\x02", // 帛
+ 0x5e1c: "\x02\x05\x02\x02\x05\x01\x03\x04", // 帜
+ 0x5e1d: "\x04\x01\x04\x03\x04\x05\x02\x05\x02", // 帝
+ 0x5e1e: "\x02\x05\x02\x01\x03\x02\x05\x01\x01", // 帞
+ 0x5e1f: "\x04\x01\x03\x02\x03\x04\x02\x05\x02", // 帟
+ 0x5e20: "\x03\x02\x01\x05\x01\x01\x02\x05\x02", // 帠
+ 0x5e21: "\x02\x05\x02\x04\x03\x01\x01\x03\x02", // 帡
+ 0x5e22: "\x02\x05\x02\x03\x04\x01\x02\x05\x01", // 帢
+ 0x5e23: "\x04\x03\x01\x01\x03\x04\x02\x05\x02", // 帣
+ 0x5e24: "\x05\x03\x01\x02\x05\x01\x02\x05\x02", // 帤
+ 0x5e25: "\x03\x02\x05\x01\x05\x01\x02\x05\x02", // 帥
+ 0x5e26: "\x01\x02\x02\x02\x04\x05\x02\x05\x02", // 带
+ 0x5e27: "\x02\x05\x02\x02\x01\x02\x05\x03\x04", // 帧
+ 0x5e28: "\x02\x05\x02\x04\x03\x02\x05\x01\x03\x05", // 帨
+ 0x5e29: "\x02\x05\x02\x02\x04\x03\x02\x05\x01\x01", // 帩
+ 0x5e2a: "\x02\x05\x02\x01\x03\x01\x01\x05\x03\x04", // 帪
+ 0x5e2b: "\x03\x02\x05\x01\x05\x01\x01\x02\x05\x02", // 師
+ 0x5e2c: "\x05\x01\x01\x03\x02\x05\x01\x02\x05\x02", // 帬
+ 0x5e2d: "\x04\x01\x03\x01\x02\x02\x01\x02\x05\x02", // 席
+ 0x5e2e: "\x01\x01\x01\x03\x05\x02\x02\x05\x02", // 帮
+ 0x5e2f: "\x01\x02\x02\x02\x01\x04\x05\x02\x05\x02", // 帯
+ 0x5e30: "\x04\x03\x05\x01\x01\x04\x05\x02\x05\x02", // 帰
+ 0x5e31: "\x02\x05\x02\x01\x01\x01\x03\x01\x02\x04", // 帱
+ 0x5e32: "\x02\x05\x02\x03\x01\x01\x03\x03\x01\x01\x02", // 帲
+ 0x5e33: "\x02\x05\x02\x01\x02\x01\x01\x01\x05\x03\x04", // 帳
+ 0x5e34: "\x02\x05\x02\x01\x05\x03\x04\x01\x05\x03\x04", // 帴
+ 0x5e35: "\x02\x05\x02\x04\x04\x05\x03\x05\x04\x05\x05", // 帵
+ 0x5e36: "\x01\x03\x02\x02\x01\x05\x04\x05\x02\x05\x02", // 帶
+ 0x5e37: "\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 帷
+ 0x5e38: "\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x02", // 常
+ 0x5e39: "\x02\x05\x02\x04\x01\x04\x03\x01\x05\x03\x01", // 帹
+ 0x5e3a: "\x02\x05\x02\x01\x02\x02\x01\x01\x01\x03\x04", // 帺
+ 0x5e3b: "\x02\x05\x02\x01\x01\x02\x01\x02\x05\x03\x04", // 帻
+ 0x5e3c: "\x02\x05\x02\x02\x05\x01\x01\x02\x01\x04\x01", // 帼
+ 0x5e3d: "\x02\x05\x02\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 帽
+ 0x5e3e: "\x02\x05\x02\x01\x02\x01\x03\x02\x05\x01\x01", // 帾
+ 0x5e3f: "\x02\x05\x02\x03\x02\x05\x01\x03\x01\x01\x03\x04", // 帿
+ 0x5e40: "\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 幀
+ 0x5e41: "\x02\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 幁
+ 0x5e42: "\x04\x05\x02\x05\x01\x01\x01\x03\x04\x02\x05\x02", // 幂
+ 0x5e43: "\x02\x05\x02\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 幃
+ 0x5e44: "\x02\x05\x02\x05\x01\x03\x01\x05\x04\x01\x02\x01", // 幄
+ 0x5e45: "\x02\x05\x02\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 幅
+ 0x5e46: "\x02\x05\x02\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 幆
+ 0x5e47: "\x01\x02\x01\x01\x02\x01\x01\x02\x04\x02\x05\x02", // 幇
+ 0x5e48: "\x02\x05\x02\x05\x01\x03\x04\x03\x01\x01\x03\x02", // 幈
+ 0x5e49: "\x02\x05\x02\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 幉
+ 0x5e4a: "\x02\x05\x02\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 幊
+ 0x5e4b: "\x03\x03\x05\x04\x01\x04\x03\x05\x05\x04\x02\x05\x02", // 幋
+ 0x5e4c: "\x02\x05\x02\x02\x05\x01\x01\x02\x04\x03\x01\x03\x05", // 幌
+ 0x5e4d: "\x02\x05\x02\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01", // 幍
+ 0x5e4e: "\x02\x05\x02\x04\x05\x02\x05\x01\x01\x04\x01\x03\x04", // 幎
+ 0x5e4f: "\x02\x05\x02\x04\x04\x05\x01\x03\x05\x03\x03\x03\x04", // 幏
+ 0x5e50: "\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04\x02\x05\x02", // 幐
+ 0x5e51: "\x03\x03\x02\x02\x05\x02\x01\x02\x05\x02\x03\x01\x03\x04", // 幑
+ 0x5e52: "\x02\x05\x02\x03\x02\x05\x03\x05\x04\x01\x04\x05\x04\x04", // 幒
+ 0x5e53: "\x02\x05\x02\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 幓
+ 0x5e54: "\x02\x05\x02\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 幔
+ 0x5e55: "\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04\x02\x05\x02", // 幕
+ 0x5e56: "\x02\x05\x02\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 幖
+ 0x5e57: "\x02\x05\x02\x02\x05\x01\x02\x05\x01\x01\x05\x03\x04\x01", // 幗
+ 0x5e58: "\x02\x05\x02\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 幘
+ 0x5e59: "\x02\x05\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 幙
+ 0x5e5a: "\x01\x01\x01\x03\x05\x02\x03\x02\x05\x01\x01\x02\x05\x02", // 幚
+ 0x5e5b: "\x02\x05\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02", // 幛
+ 0x5e5c: "\x02\x05\x02\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x03\x04", // 幜
+ 0x5e5d: "\x02\x05\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 幝
+ 0x5e5e: "\x02\x05\x02\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 幞
+ 0x5e5f: "\x02\x05\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05\x03\x04", // 幟
+ 0x5e60: "\x02\x05\x02\x03\x01\x01\x02\x02\x02\x02\x01\x04\x04\x04\x04", // 幠
+ 0x5e61: "\x02\x05\x02\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 幡
+ 0x5e62: "\x02\x05\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 幢
+ 0x5e63: "\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04\x02\x05\x02", // 幣
+ 0x5e64: "\x02\x04\x03\x02\x05\x01\x05\x01\x03\x01\x03\x04\x02\x05\x02", // 幤
+ 0x5e65: "\x02\x05\x02\x02\x04\x03\x04\x05\x02\x05\x01\x03\x01\x01\x02", // 幥
+ 0x5e66: "\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x02\x05\x02", // 幦
+ 0x5e67: "\x02\x05\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 幧
+ 0x5e68: "\x02\x05\x02\x03\x05\x01\x03\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 幨
+ 0x5e69: "\x02\x05\x02\x01\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 幩
+ 0x5e6a: "\x02\x05\x02\x01\x02\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 幪
+ 0x5e6b: "\x01\x02\x01\x01\x02\x01\x01\x02\x04\x03\x02\x05\x01\x01\x02\x05\x02", // 幫
+ 0x5e6c: "\x02\x05\x02\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 幬
+ 0x5e6d: "\x02\x05\x02\x01\x02\x02\x02\x05\x02\x02\x01\x01\x03\x04\x05\x03\x04", // 幭
+ 0x5e6e: "\x02\x05\x02\x04\x01\x03\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x04", // 幮
+ 0x5e6f: "\x02\x05\x02\x03\x01\x04\x03\x01\x04\x05\x01\x01\x05\x04\x05\x02", // 幯
+ 0x5e70: "\x02\x05\x02\x04\x04\x05\x01\x01\x01\x02\x02\x05\x02\x02\x01\x04\x05\x04\x04", // 幰
+ 0x5e71: "\x02\x05\x02\x05\x01\x01\x02\x01\x05\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 幱
+ 0x5e72: "\x01\x01\x02", // 干
+ 0x5e73: "\x01\x04\x03\x01\x02", // 平
+ 0x5e74: "\x03\x01\x01\x02\x01\x02", // 年
+ 0x5e75: "\x01\x01\x03\x01\x01\x02", // 幵
+ 0x5e76: "\x04\x03\x01\x01\x03\x02", // 并
+ 0x5e77: "\x03\x01\x01\x03\x03\x01\x01\x02", // 幷
+ 0x5e78: "\x01\x02\x01\x04\x03\x01\x01\x02", // 幸
+ 0x5e79: "\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04\x01\x01\x02", // 幹
+ 0x5e7a: "\x05\x05\x04", // 幺
+ 0x5e7b: "\x05\x05\x04\x05", // 幻
+ 0x5e7c: "\x05\x05\x04\x05\x03", // 幼
+ 0x5e7d: "\x02\x05\x05\x04\x05\x05\x04\x05\x02", // 幽
+ 0x5e7e: "\x05\x05\x04\x05\x05\x04\x01\x03\x04\x05\x03\x04", // 幾
+ 0x5e7f: "\x04\x01\x03", // 广
+ 0x5e80: "\x04\x01\x03\x03\x05", // 庀
+ 0x5e81: "\x04\x01\x03\x01\x02", // 庁
+ 0x5e82: "\x04\x01\x03\x03\x04", // 庂
+ 0x5e83: "\x04\x01\x03\x05\x04", // 広
+ 0x5e84: "\x04\x01\x03\x01\x02\x01", // 庄
+ 0x5e85: "\x04\x01\x03\x03\x05\x04", // 庅
+ 0x5e86: "\x04\x01\x03\x01\x03\x04", // 庆
+ 0x5e87: "\x04\x01\x03\x01\x05\x03\x05", // 庇
+ 0x5e88: "\x04\x01\x03\x03\x04\x04\x05", // 庈
+ 0x5e89: "\x04\x01\x03\x01\x05\x02\x05", // 庉
+ 0x5e8a: "\x04\x01\x03\x01\x02\x03\x04", // 床
+ 0x5e8b: "\x04\x01\x03\x01\x02\x05\x04", // 庋
+ 0x5e8c: "\x04\x01\x03\x01\x05\x02\x03", // 庌
+ 0x5e8d: "\x04\x01\x03\x03\x03\x01\x02", // 庍
+ 0x5e8e: "\x04\x01\x03\x03\x04\x03\x02", // 庎
+ 0x5e8f: "\x04\x01\x03\x05\x04\x05\x02", // 序
+ 0x5e90: "\x04\x01\x03\x04\x05\x01\x03", // 庐
+ 0x5e91: "\x04\x01\x03\x01\x01\x03\x05", // 庑
+ 0x5e92: "\x04\x01\x03\x01\x02\x01\x04", // 庒
+ 0x5e93: "\x04\x01\x03\x01\x05\x01\x02", // 库
+ 0x5e94: "\x04\x01\x03\x04\x04\x03\x01", // 应
+ 0x5e95: "\x04\x01\x03\x03\x05\x01\x05\x04", // 底
+ 0x5e96: "\x04\x01\x03\x03\x05\x05\x01\x05", // 庖
+ 0x5e97: "\x04\x01\x03\x02\x01\x02\x05\x01", // 店
+ 0x5e98: "\x04\x01\x03\x02\x05\x01\x01\x02", // 庘
+ 0x5e99: "\x04\x01\x03\x02\x05\x01\x02\x01", // 庙
+ 0x5e9a: "\x04\x01\x03\x05\x01\x01\x03\x04", // 庚
+ 0x5e9b: "\x04\x01\x03\x02\x01\x02\x01\x03\x05", // 庛
+ 0x5e9c: "\x04\x01\x03\x03\x02\x01\x02\x04", // 府
+ 0x5e9d: "\x04\x01\x03\x03\x05\x04\x04\x04", // 庝
+ 0x5e9e: "\x04\x01\x03\x01\x03\x05\x03\x04", // 庞
+ 0x5e9f: "\x04\x01\x03\x05\x03\x05\x04\x04", // 废
+ 0x5ea0: "\x04\x01\x03\x04\x03\x01\x01\x01\x02", // 庠
+ 0x5ea1: "\x04\x01\x03\x04\x01\x03\x05\x03\x04", // 庡
+ 0x5ea2: "\x04\x01\x03\x01\x05\x04\x01\x02\x01", // 庢
+ 0x5ea3: "\x04\x01\x03\x03\x04\x01\x05\x03\x04", // 庣
+ 0x5ea4: "\x04\x01\x03\x01\x02\x01\x01\x02\x04", // 庤
+ 0x5ea5: "\x04\x01\x03\x03\x02\x01\x02\x03\x04", // 庥
+ 0x5ea6: "\x04\x01\x03\x01\x02\x02\x01\x05\x04", // 度
+ 0x5ea7: "\x04\x01\x03\x03\x04\x03\x04\x01\x02\x01", // 座
+ 0x5ea8: "\x04\x01\x03\x01\x02\x01\x03\x05\x02\x01", // 庨
+ 0x5ea9: "\x04\x01\x03\x03\x04\x01\x01\x02\x03\x04", // 庩
+ 0x5eaa: "\x04\x01\x03\x01\x02\x01\x01\x02\x05\x04", // 庪
+ 0x5eab: "\x04\x01\x03\x01\x02\x05\x01\x01\x01\x02", // 庫
+ 0x5eac: "\x04\x01\x03\x01\x03\x05\x03\x03\x03\x04", // 庬
+ 0x5ead: "\x04\x01\x03\x03\x01\x02\x01\x05\x04", // 庭
+ 0x5eae: "\x04\x01\x03\x01\x02\x05\x03\x05\x01\x01", // 庮
+ 0x5eaf: "\x04\x01\x03\x01\x02\x05\x01\x01\x02\x04", // 庯
+ 0x5eb0: "\x04\x01\x03\x04\x03\x01\x01\x03\x02", // 庰
+ 0x5eb1: "\x04\x01\x03\x01\x02\x01\x03\x04\x03\x05\x04", // 庱
+ 0x5eb2: "\x04\x01\x03\x01\x03\x04\x03\x04\x02\x03\x04", // 庲
+ 0x5eb3: "\x04\x01\x03\x03\x02\x05\x01\x01\x03\x01\x02", // 庳
+ 0x5eb4: "\x04\x01\x03\x01\x02\x02\x01\x02\x05\x01\x01", // 庴
+ 0x5eb5: "\x04\x01\x03\x01\x03\x04\x02\x05\x01\x01\x05", // 庵
+ 0x5eb6: "\x04\x01\x03\x01\x02\x02\x01\x04\x04\x04\x04", // 庶
+ 0x5eb7: "\x04\x01\x03\x05\x01\x01\x02\x04\x01\x03\x04", // 康
+ 0x5eb8: "\x04\x01\x03\x05\x01\x01\x02\x05\x01\x01\x02", // 庸
+ 0x5eb9: "\x04\x01\x03\x01\x02\x02\x01\x05\x01\x03\x04", // 庹
+ 0x5eba: "\x04\x01\x03\x03\x04\x05\x04\x01\x02\x03\x04", // 庺
+ 0x5ebb: "\x04\x01\x03\x01\x02\x02\x01\x03\x04\x03\x04", // 庻
+ 0x5ebc: "\x04\x01\x03\x01\x05\x01\x03\x02\x05\x03\x04", // 庼
+ 0x5ebd: "\x04\x01\x03\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 庽
+ 0x5ebe: "\x04\x01\x03\x03\x02\x01\x05\x01\x01\x03\x04", // 庾
+ 0x5ebf: "\x04\x01\x03\x01\x02\x02\x02\x05\x01\x02\x01", // 庿
+ 0x5ec0: "\x04\x01\x03\x04\x04\x05\x04\x03\x03\x04\x05\x04", // 廀
+ 0x5ec1: "\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04\x02\x02", // 廁
+ 0x5ec2: "\x04\x01\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 廂
+ 0x5ec3: "\x04\x01\x03\x05\x04\x03\x03\x04\x01\x01\x03\x05", // 廃
+ 0x5ec4: "\x04\x01\x03\x05\x01\x01\x05\x04\x03\x05\x05\x04", // 廄
+ 0x5ec5: "\x04\x01\x03\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 廅
+ 0x5ec6: "\x04\x01\x03\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 廆
+ 0x5ec7: "\x04\x01\x03\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 廇
+ 0x5ec8: "\x04\x01\x03\x01\x03\x02\x05\x01\x01\x01\x03\x05\x04", // 廈
+ 0x5ec9: "\x04\x01\x03\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 廉
+ 0x5eca: "\x04\x01\x03\x04\x05\x01\x01\x05\x04\x05\x02", // 廊
+ 0x5ecb: "\x04\x01\x03\x03\x02\x01\x05\x01\x01\x02\x05\x04", // 廋
+ 0x5ecc: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x04\x04\x04\x04", // 廌
+ 0x5ecd: "\x04\x01\x03\x04\x01\x04\x03\x01\x02\x05\x01\x05\x02", // 廍
+ 0x5ece: "\x04\x01\x03\x01\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 廎
+ 0x5ecf: "\x04\x01\x03\x03\x02\x05\x01\x01\x03\x05\x03\x05\x05\x04", // 廏
+ 0x5ed0: "\x04\x01\x03\x05\x01\x01\x05\x04\x01\x05\x03\x05", // 廐
+ 0x5ed1: "\x04\x01\x03\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01", // 廑
+ 0x5ed2: "\x04\x01\x03\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04", // 廒
+ 0x5ed3: "\x04\x01\x03\x04\x01\x02\x05\x01\x05\x02\x01\x05\x02", // 廓
+ 0x5ed4: "\x04\x01\x03\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 廔
+ 0x5ed5: "\x04\x01\x03\x05\x02\x03\x04\x04\x05\x01\x01\x05\x04", // 廕
+ 0x5ed6: "\x04\x01\x03\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 廖
+ 0x5ed7: "\x04\x01\x03\x01\x03\x02\x02\x01\x05\x04\x05\x02\x05\x02", // 廗
+ 0x5ed8: "\x04\x01\x03\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 廘
+ 0x5ed9: "\x04\x01\x03\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 廙
+ 0x5eda: "\x04\x01\x03\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x04", // 廚
+ 0x5edb: "\x04\x01\x03\x02\x05\x01\x01\x02\x01\x01\x03\x04\x01\x02\x01", // 廛
+ 0x5edc: "\x04\x01\x03\x05\x01\x03\x01\x02\x01\x03\x02\x05\x01\x01", // 廜
+ 0x5edd: "\x04\x01\x03\x01\x02\x02\x01\x01\x01\x03\x04\x03\x03\x01\x02", // 廝
+ 0x5ede: "\x04\x01\x03\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x03\x04", // 廞
+ 0x5edf: "\x04\x01\x03\x01\x02\x02\x05\x01\x01\x01\x02\x03\x05\x01\x01", // 廟
+ 0x5ee0: "\x04\x01\x03\x02\x04\x03\x02\x05\x02\x05\x01\x03\x01\x03\x04", // 廠
+ 0x5ee1: "\x04\x01\x03\x03\x01\x01\x02\x02\x02\x02\x01\x04\x04\x04\x04", // 廡
+ 0x5ee2: "\x04\x01\x03\x05\x04\x03\x03\x04\x05\x01\x05\x03\x05\x05\x04", // 廢
+ 0x5ee3: "\x04\x01\x03\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 廣
+ 0x5ee4: "\x04\x01\x03\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x03\x05", // 廤
+ 0x5ee5: "\x04\x01\x03\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 廥
+ 0x5ee6: "\x04\x01\x03\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 廦
+ 0x5ee7: "\x04\x01\x03\x01\x03\x04\x03\x04\x02\x01\x02\x05\x02\x05\x01\x01", // 廧
+ 0x5ee8: "\x04\x01\x03\x03\x05\x02\x05\x01\x01\x02\x05\x03\x03\x01\x01\x02", // 廨
+ 0x5ee9: "\x04\x01\x03\x04\x01\x02\x05\x02\x05\x01\x01\x03\x01\x02\x03\x04", // 廩
+ 0x5eea: "\x04\x01\x03\x04\x01\x02\x05\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 廪
+ 0x5eeb: "\x04\x01\x03\x03\x05\x01\x01\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 廫
+ 0x5eec: "\x04\x01\x03\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 廬
+ 0x5eed: "\x04\x01\x03\x03\x01\x02\x03\x04\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 廭
+ 0x5eee: "\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x05\x03\x01", // 廮
+ 0x5eef: "\x04\x01\x03\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x01\x01\x01\x02", // 廯
+ 0x5ef0: "\x04\x01\x03\x01\x02\x02\x01\x01\x01\x01\x03\x02\x05\x02\x02\x01\x04\x05\x04\x04", // 廰
+ 0x5ef1: "\x04\x01\x03\x05\x05\x05\x02\x05\x01\x05\x02\x01\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 廱
+ 0x5ef2: "\x04\x01\x03\x01\x02\x05\x04\x01\x02\x05\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 廲
+ 0x5ef3: "\x04\x01\x03\x01\x02\x02\x01\x01\x01\x01\x01\x02\x01\x01\x02\x02\x05\x02\x02\x01\x01\x04\x05\x04\x04", // 廳
+ 0x5ef4: "\x05\x04", // 廴
+ 0x5ef5: "\x05\x05\x05\x05\x04", // 廵
+ 0x5ef6: "\x03\x02\x01\x05\x05\x04", // 延
+ 0x5ef7: "\x03\x01\x02\x01\x05\x04", // 廷
+ 0x5ef8: "\x02\x05\x01\x02\x01\x05\x04", // 廸
+ 0x5ef9: "\x03\x02\x05\x01\x01\x05\x04", // 廹
+ 0x5efa: "\x05\x01\x01\x01\x01\x02\x05\x04", // 建
+ 0x5efb: "\x02\x05\x02\x05\x01\x01\x05\x04", // 廻
+ 0x5efc: "\x01\x02\x05\x03\x05\x01\x05\x04", // 廼
+ 0x5efd: "\x02\x05\x02\x02\x01\x01\x01\x05\x04", // 廽
+ 0x5efe: "\x01\x03\x02", // 廾
+ 0x5eff: "\x01\x02\x02\x01", // 廿
+ 0x5f00: "\x01\x01\x03\x02", // 开
+ 0x5f01: "\x05\x04\x01\x03\x02", // 弁
+ 0x5f02: "\x05\x01\x05\x01\x03\x02", // 异
+ 0x5f03: "\x04\x01\x05\x04\x01\x03\x02", // 弃
+ 0x5f04: "\x01\x01\x02\x01\x01\x03\x02", // 弄
+ 0x5f05: "\x03\x04\x05\x03\x01\x03\x02", // 弅
+ 0x5f06: "\x01\x02\x01\x05\x04\x01\x03\x02", // 弆
+ 0x5f07: "\x03\x04\x01\x02\x05\x01\x01\x03\x02", // 弇
+ 0x5f08: "\x04\x01\x03\x02\x03\x04\x01\x03\x02", // 弈
+ 0x5f09: "\x05\x02\x01\x03\x01\x02\x01\x01\x03\x02", // 弉
+ 0x5f0a: "\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04\x01\x03\x02", // 弊
+ 0x5f0b: "\x01\x05\x04", // 弋
+ 0x5f0c: "\x01\x01\x05\x04", // 弌
+ 0x5f0d: "\x01\x01\x01\x05\x04", // 弍
+ 0x5f0e: "\x01\x01\x01\x01\x05\x04", // 弎
+ 0x5f0f: "\x01\x01\x02\x01\x05\x04", // 式
+ 0x5f10: "\x01\x01\x01\x01\x05\x04", // 弐
+ 0x5f11: "\x03\x04\x01\x02\x03\x04\x01\x01\x02\x01\x05\x04", // 弑
+ 0x5f12: "\x03\x04\x01\x02\x03\x04\x04\x01\x01\x02\x01\x05\x04", // 弒
+ 0x5f13: "\x05\x01\x05", // 弓
+ 0x5f14: "\x05\x01\x05\x02", // 弔
+ 0x5f15: "\x05\x01\x05\x02", // 引
+ 0x5f16: "\x05\x01\x05\x01", // 弖
+ 0x5f17: "\x05\x01\x05\x03\x02", // 弗
+ 0x5f18: "\x05\x01\x05\x05\x04", // 弘
+ 0x5f19: "\x05\x01\x05\x01\x01\x02", // 弙
+ 0x5f1a: "\x04\x03\x05\x01\x05\x02", // 弚
+ 0x5f1b: "\x05\x01\x05\x05\x02\x05", // 弛
+ 0x5f1c: "\x05\x01\x05\x05\x01\x05", // 弜
+ 0x5f1d: "\x05\x01\x05\x05\x02\x01\x05", // 弝
+ 0x5f1e: "\x05\x01\x05\x03\x05\x03\x04", // 弞
+ 0x5f1f: "\x04\x03\x05\x01\x05\x02\x03", // 弟
+ 0x5f20: "\x05\x01\x05\x03\x01\x05\x04", // 张
+ 0x5f21: "\x05\x01\x05\x01\x05\x01\x05", // 弡
+ 0x5f22: "\x05\x01\x05\x05\x02\x02\x05\x04", // 弢
+ 0x5f23: "\x05\x01\x05\x03\x02\x01\x02\x04", // 弣
+ 0x5f24: "\x05\x01\x05\x03\x05\x01\x05\x04", // 弤
+ 0x5f25: "\x05\x01\x05\x03\x05\x02\x03\x04", // 弥
+ 0x5f26: "\x05\x01\x05\x04\x01\x05\x05\x04", // 弦
+ 0x5f27: "\x05\x01\x05\x03\x03\x05\x04\x04", // 弧
+ 0x5f28: "\x05\x01\x05\x05\x03\x02\x05\x01", // 弨
+ 0x5f29: "\x05\x03\x01\x05\x04\x05\x01\x05", // 弩
+ 0x5f2a: "\x05\x01\x05\x05\x04\x01\x02\x01", // 弪
+ 0x5f2b: "\x05\x01\x05\x01\x02\x05\x01\x02\x05", // 弫
+ 0x5f2c: "\x05\x01\x05\x01\x02\x05\x01\x02\x02\x05", // 弬
+ 0x5f2d: "\x05\x01\x05\x01\x02\x02\x01\x01\x01", // 弭
+ 0x5f2e: "\x04\x03\x01\x01\x03\x04\x05\x01\x05", // 弮
+ 0x5f2f: "\x04\x01\x02\x02\x03\x04\x05\x01\x05", // 弯
+ 0x5f30: "\x05\x01\x05\x02\x04\x03\x02\x05\x01\x01", // 弰
+ 0x5f31: "\x05\x01\x05\x04\x01\x05\x01\x05\x04\x01", // 弱
+ 0x5f32: "\x05\x01\x05\x02\x05\x01\x02\x05\x01\x01", // 弲
+ 0x5f33: "\x05\x01\x05\x01\x05\x05\x05\x01\x02\x01", // 弳
+ 0x5f34: "\x05\x01\x05\x04\x01\x02\x05\x01\x05\x02\x01", // 弴
+ 0x5f35: "\x05\x01\x05\x01\x02\x01\x01\x01\x05\x03\x04", // 張
+ 0x5f36: "\x05\x01\x05\x04\x01\x02\x05\x01\x02\x03\x04", // 弶
+ 0x5f37: "\x05\x01\x05\x05\x04\x02\x05\x01\x02\x01\x04", // 強
+ 0x5f38: "\x05\x01\x05\x03\x05\x01\x01\x03\x05\x01\x01", // 弸
+ 0x5f39: "\x05\x01\x05\x04\x03\x02\x05\x01\x01\x01\x02", // 弹
+ 0x5f3a: "\x05\x01\x05\x02\x05\x01\x02\x05\x01\x02\x01\x04", // 强
+ 0x5f3b: "\x05\x01\x05\x01\x02\x05\x03\x04\x01\x05\x01\x05", // 弻
+ 0x5f3c: "\x05\x01\x05\x01\x03\x02\x05\x01\x01\x05\x01\x05", // 弼
+ 0x5f3d: "\x05\x01\x05\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 弽
+ 0x5f3e: "\x05\x01\x05\x04\x04\x03\x02\x05\x01\x01\x01\x02", // 弾
+ 0x5f3f: "\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x05\x01\x05", // 弿
+ 0x5f40: "\x01\x02\x01\x04\x05\x01\x05\x01\x05\x03\x05\x05\x04", // 彀
+ 0x5f41: "\x05\x01\x05\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02", // 彁
+ 0x5f42: "\x02\x02\x04\x03\x01\x05\x01\x05\x03\x01\x01\x03\x04", // 彂
+ 0x5f43: "\x05\x01\x05\x02\x05\x01\x01\x01\x02\x02\x01\x01\x02", // 彃
+ 0x5f44: "\x05\x01\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 彄
+ 0x5f45: "\x05\x01\x05\x04\x03\x01\x02\x05\x01\x01\x02\x02\x05\x03", // 彅
+ 0x5f46: "\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04\x05\x01\x05", // 彆
+ 0x5f47: "\x05\x01\x05\x05\x01\x01\x02\x03\x02\x01\x01\x05\x05\x02\x01\x02", // 彇
+ 0x5f48: "\x05\x01\x05\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 彈
+ 0x5f49: "\x05\x01\x05\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 彉
+ 0x5f4a: "\x05\x01\x05\x01\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x01\x01", // 彊
+ 0x5f4b: "\x05\x01\x05\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 彋
+ 0x5f4c: "\x05\x01\x05\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 彌
+ 0x5f4d: "\x05\x01\x05\x04\x01\x03\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 彍
+ 0x5f4e: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x05\x01\x05", // 彎
+ 0x5f4f: "\x05\x01\x05\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 彏
+ 0x5f50: "\x05\x01\x01", // 彐
+ 0x5f51: "\x05\x05\x01", // 彑
+ 0x5f52: "\x02\x03\x05\x01\x01", // 归
+ 0x5f53: "\x02\x04\x03\x05\x01\x01", // 当
+ 0x5f54: "\x05\x05\x01\x02\x04\x01\x03\x04", // 彔
+ 0x5f55: "\x05\x01\x01\x02\x04\x01\x03\x04", // 录
+ 0x5f56: "\x05\x05\x01\x03\x05\x03\x03\x03\x04", // 彖
+ 0x5f57: "\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x01", // 彗
+ 0x5f58: "\x05\x05\x01\x03\x01\x01\x03\x04\x01\x05\x03\x05", // 彘
+ 0x5f59: "\x05\x05\x01\x04\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 彙
+ 0x5f5a: "\x05\x01\x01\x04\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 彚
+ 0x5f5b: "\x05\x01\x01\x04\x03\x01\x02\x03\x04\x03\x04\x05\x03\x01\x03\x02", // 彛
+ 0x5f5c: "\x05\x05\x01\x04\x03\x01\x02\x03\x04\x03\x04\x05\x03\x01\x03\x02", // 彜
+ 0x5f5d: "\x05\x05\x01\x04\x03\x01\x02\x03\x04\x05\x05\x04\x02\x03\x04\x01\x03\x02", // 彝
+ 0x5f5e: "\x05\x01\x01\x04\x03\x01\x02\x03\x04\x05\x05\x04\x02\x03\x04\x01\x03\x02", // 彞
+ 0x5f5f: "\x05\x01\x01\x01\x02\x04\x01\x02\x02\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 彟
+ 0x5f60: "\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04\x01\x02\x02\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 彠
+ 0x5f61: "\x03\x03\x03", // 彡
+ 0x5f62: "\x01\x01\x03\x02\x03\x03\x03", // 形
+ 0x5f63: "\x04\x01\x03\x04\x03\x03\x03", // 彣
+ 0x5f64: "\x03\x05\x04\x01\x03\x03\x03", // 彤
+ 0x5f65: "\x04\x01\x03\x04\x01\x03\x03\x03\x03", // 彥
+ 0x5f66: "\x04\x01\x04\x03\x01\x03\x03\x03\x03", // 彦
+ 0x5f67: "\x01\x02\x05\x01\x01\x05\x03\x03\x03\x04", // 彧
+ 0x5f68: "\x01\x02\x05\x04\x02\x05\x04\x03\x03\x03", // 彨
+ 0x5f69: "\x03\x04\x04\x03\x01\x02\x03\x04\x03\x03\x03", // 彩
+ 0x5f6a: "\x02\x01\x05\x03\x01\x05\x03\x05\x03\x03\x03", // 彪
+ 0x5f6b: "\x03\x05\x01\x02\x01\x02\x05\x01\x03\x03\x03", // 彫
+ 0x5f6c: "\x01\x02\x03\x04\x01\x02\x03\x04\x03\x03\x03", // 彬
+ 0x5f6d: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x03\x03\x03", // 彭
+ 0x5f6e: "\x04\x04\x05\x03\x04\x03\x04\x02\x05\x01\x03\x03\x03", // 彮
+ 0x5f6f: "\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04\x03\x03\x03", // 彯
+ 0x5f70: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x03\x03\x03", // 彰
+ 0x5f71: "\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x03\x04\x03\x03\x03", // 影
+ 0x5f72: "\x01\x02\x05\x04\x01\x02\x05\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x03\x03\x03", // 彲
+ 0x5f73: "\x03\x03\x02", // 彳
+ 0x5f74: "\x03\x03\x02\x03\x05\x04", // 彴
+ 0x5f75: "\x03\x03\x02\x05\x02\x05", // 彵
+ 0x5f76: "\x03\x03\x02\x03\x05\x04", // 彶
+ 0x5f77: "\x03\x03\x02\x04\x01\x05\x03", // 彷
+ 0x5f78: "\x03\x03\x02\x03\x04\x05\x04", // 彸
+ 0x5f79: "\x03\x03\x02\x03\x05\x05\x04", // 役
+ 0x5f7a: "\x03\x03\x02\x01\x01\x02\x01", // 彺
+ 0x5f7b: "\x03\x03\x02\x01\x05\x05\x03", // 彻
+ 0x5f7c: "\x03\x03\x02\x05\x03\x02\x05\x04", // 彼
+ 0x5f7d: "\x03\x03\x02\x03\x05\x01\x05\x04", // 彽
+ 0x5f7e: "\x03\x03\x02\x03\x04\x04\x05\x04", // 彾
+ 0x5f7f: "\x03\x03\x02\x05\x01\x05\x03\x02", // 彿
+ 0x5f80: "\x03\x03\x02\x04\x01\x01\x02\x01", // 往
+ 0x5f81: "\x03\x03\x02\x01\x02\x01\x02\x01", // 征
+ 0x5f82: "\x03\x03\x02\x02\x05\x01\x01\x01", // 徂
+ 0x5f83: "\x03\x03\x02\x03\x01\x01\x02\x01", // 徃
+ 0x5f84: "\x03\x03\x02\x05\x04\x01\x02\x01", // 径
+ 0x5f85: "\x03\x03\x02\x01\x02\x01\x01\x02\x04", // 待
+ 0x5f86: "\x03\x03\x02\x01\x02\x05\x03\x05\x01", // 徆
+ 0x5f87: "\x03\x03\x02\x03\x05\x02\x05\x01\x01", // 徇
+ 0x5f88: "\x03\x03\x02\x05\x01\x01\x05\x03\x04", // 很
+ 0x5f89: "\x03\x03\x02\x04\x03\x01\x01\x01\x02", // 徉
+ 0x5f8a: "\x03\x03\x02\x02\x05\x02\x05\x01\x01", // 徊
+ 0x5f8b: "\x03\x03\x02\x05\x01\x01\x01\x01\x02", // 律
+ 0x5f8c: "\x03\x03\x02\x05\x05\x04\x03\x05\x04", // 後
+ 0x5f8d: "\x05\x05\x02\x01\x02\x01\x01\x02\x01", // 徍
+ 0x5f8e: "\x03\x03\x02\x02\x05\x01\x01\x01\x02\x01", // 徎
+ 0x5f8f: "\x03\x03\x02\x02\x01\x02\x01\x02\x03\x03", // 徏
+ 0x5f90: "\x03\x03\x02\x03\x04\x01\x01\x02\x03\x04", // 徐
+ 0x5f91: "\x03\x03\x02\x01\x05\x05\x05\x01\x02\x01", // 徑
+ 0x5f92: "\x03\x03\x02\x01\x02\x01\x02\x01\x03\x04", // 徒
+ 0x5f93: "\x03\x03\x02\x04\x03\x01\x02\x01\x03\x04", // 従
+ 0x5f94: "\x03\x03\x02\x01\x02\x02\x04\x05\x04", // 徔
+ 0x5f95: "\x03\x03\x02\x01\x04\x03\x01\x02\x03\x04", // 徕
+ 0x5f96: "\x03\x03\x02\x04\x04\x05\x01\x01\x02\x03\x04", // 徖
+ 0x5f97: "\x03\x03\x02\x02\x05\x01\x01\x01\x01\x02\x04", // 得
+ 0x5f98: "\x03\x03\x02\x02\x01\x01\x01\x02\x01\x01\x01", // 徘
+ 0x5f99: "\x03\x03\x02\x02\x01\x02\x01\x02\x01\x03\x04", // 徙
+ 0x5f9a: "\x03\x03\x02\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 徚
+ 0x5f9b: "\x03\x03\x02\x01\x03\x04\x01\x02\x05\x01\x02", // 徛
+ 0x5f9c: "\x03\x03\x02\x02\x04\x03\x02\x05\x02\x05\x01", // 徜
+ 0x5f9d: "\x03\x03\x02\x01\x02\x02\x05\x01\x01\x01\x01", // 徝
+ 0x5f9e: "\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04", // 從
+ 0x5f9f: "\x03\x03\x02\x03\x05\x01\x02\x01\x02\x05\x01", // 徟
+ 0x5fa0: "\x03\x03\x02\x01\x03\x04\x03\x04\x02\x03\x04", // 徠
+ 0x5fa1: "\x03\x03\x02\x03\x01\x01\x02\x01\x02\x01\x05\x02", // 御
+ 0x5fa2: "\x03\x03\x02\x01\x05\x01\x01\x02\x01\x03\x04", // 徢
+ 0x5fa3: "\x03\x03\x02\x01\x02\x02\x01\x02\x05\x01\x01", // 徣
+ 0x5fa4: "\x03\x03\x02\x05\x01\x01\x01\x01\x02\x05\x04", // 徤
+ 0x5fa5: "\x03\x03\x02\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 徥
+ 0x5fa6: "\x03\x03\x02\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 徦
+ 0x5fa7: "\x03\x03\x02\x04\x05\x01\x03\x02\x05\x01\x02\x02", // 徧
+ 0x5fa8: "\x03\x03\x02\x03\x02\x05\x01\x01\x01\x01\x02\x01", // 徨
+ 0x5fa9: "\x03\x03\x02\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 復
+ 0x5faa: "\x03\x03\x02\x03\x03\x01\x02\x02\x05\x01\x01\x01", // 循
+ 0x5fab: "\x03\x03\x02\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 徫
+ 0x5fac: "\x03\x03\x02\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03", // 徬
+ 0x5fad: "\x03\x03\x02\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02", // 徭
+ 0x5fae: "\x03\x03\x02\x02\x05\x02\x01\x03\x05\x03\x01\x03\x04", // 微
+ 0x5faf: "\x03\x03\x02\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04", // 徯
+ 0x5fb0: "\x03\x03\x02\x01\x02\x01\x02\x01\x01\x02\x01\x02\x01", // 徰
+ 0x5fb1: "\x03\x03\x02\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 徱
+ 0x5fb2: "\x03\x03\x02\x05\x01\x03\x02\x04\x01\x03\x04\x03\x01\x01\x02", // 徲
+ 0x5fb3: "\x03\x03\x02\x01\x02\x02\x05\x02\x02\x01\x04\x05\x04\x04", // 徳
+ 0x5fb4: "\x03\x03\x02\x02\x05\x02\x01\x01\x02\x01\x03\x01\x03\x04", // 徴
+ 0x5fb5: "\x03\x03\x02\x02\x05\x02\x01\x01\x01\x02\x01\x03\x01\x03\x04", // 徵
+ 0x5fb6: "\x03\x03\x02\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04", // 徶
+ 0x5fb7: "\x03\x03\x02\x01\x02\x02\x05\x02\x02\x01\x01\x04\x05\x04\x04", // 德
+ 0x5fb8: "\x03\x03\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 徸
+ 0x5fb9: "\x03\x03\x02\x04\x01\x05\x04\x02\x05\x01\x01\x03\x01\x03\x04", // 徹
+ 0x5fba: "\x03\x03\x02\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 徺
+ 0x5fbb: "\x03\x03\x02\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 徻
+ 0x5fbc: "\x03\x03\x02\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x03\x04", // 徼
+ 0x5fbd: "\x03\x03\x02\x02\x05\x02\x01\x05\x05\x04\x02\x03\x04\x03\x01\x03\x04", // 徽
+ 0x5fbe: "\x03\x03\x02\x02\x05\x02\x04\x01\x01\x01\x02\x05\x01\x03\x01\x03\x04", // 徾
+ 0x5fbf: "\x03\x03\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x05\x01\x05\x01\x01\x01", // 徿
+ 0x5fc0: "\x03\x03\x02\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 忀
+ 0x5fc1: "\x03\x03\x02\x02\x05\x01\x01\x05\x02\x02\x05\x02\x01\x03\x04\x02\x04\x01\x03\x04", // 忁
+ 0x5fc2: "\x03\x03\x02\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 忂
+ 0x5fc3: "\x04\x05\x04\x04", // 心
+ 0x5fc4: "\x04\x04\x02", // 忄
+ 0x5fc5: "\x04\x05\x04\x03\x04", // 必
+ 0x5fc6: "\x04\x04\x02\x05", // 忆
+ 0x5fc7: "\x04\x04\x02\x05\x03", // 忇
+ 0x5fc8: "\x01\x01\x04\x05\x04\x04", // 忈
+ 0x5fc9: "\x04\x04\x02\x05\x03", // 忉
+ 0x5fca: "\x04\x04\x02\x01\x02", // 忊
+ 0x5fcb: "\x04\x04\x02\x05\x01\x05", // 忋
+ 0x5fcc: "\x05\x01\x05\x04\x05\x04\x04", // 忌
+ 0x5fcd: "\x05\x03\x04\x04\x05\x04\x04", // 忍
+ 0x5fce: "\x03\x01\x02\x04\x05\x04\x04", // 忎
+ 0x5fcf: "\x04\x04\x02\x03\x01\x02", // 忏
+ 0x5fd0: "\x02\x01\x01\x04\x05\x04\x04", // 忐
+ 0x5fd1: "\x01\x02\x04\x04\x05\x04\x04", // 忑
+ 0x5fd2: "\x01\x04\x05\x04\x04\x05\x04", // 忒
+ 0x5fd3: "\x04\x04\x02\x01\x01\x02", // 忓
+ 0x5fd4: "\x04\x04\x02\x03\x01\x05", // 忔
+ 0x5fd5: "\x04\x04\x02\x01\x03\x04", // 忕
+ 0x5fd6: "\x04\x04\x02\x01\x02\x04", // 忖
+ 0x5fd7: "\x01\x02\x01\x04\x05\x04\x04", // 志
+ 0x5fd8: "\x04\x01\x05\x04\x05\x04\x04", // 忘
+ 0x5fd9: "\x04\x04\x02\x04\x01\x05", // 忙
+ 0x5fda: "\x04\x04\x02\x05\x01\x05", // 忚
+ 0x5fdb: "\x04\x04\x02\x03\x05\x04", // 忛
+ 0x5fdc: "\x04\x01\x03\x04\x05\x04\x04", // 応
+ 0x5fdd: "\x01\x01\x03\x04\x02\x04\x04\x04", // 忝
+ 0x5fde: "\x04\x01\x03\x04\x04\x05\x04\x04", // 忞
+ 0x5fdf: "\x04\x04\x02\x04\x01\x03\x04", // 忟
+ 0x5fe0: "\x02\x05\x01\x02\x04\x05\x04\x04", // 忠
+ 0x5fe1: "\x04\x04\x02\x02\x05\x01\x02", // 忡
+ 0x5fe2: "\x01\x02\x05\x01\x04\x05\x04\x04", // 忢
+ 0x5fe3: "\x04\x04\x02\x03\x05\x04", // 忣
+ 0x5fe4: "\x04\x04\x02\x03\x01\x01\x02", // 忤
+ 0x5fe5: "\x03\x01\x01\x05\x04\x05\x04\x04", // 忥
+ 0x5fe6: "\x04\x04\x02\x03\x04\x03\x02", // 忦
+ 0x5fe7: "\x04\x04\x02\x01\x03\x05\x04", // 忧
+ 0x5fe8: "\x04\x04\x02\x01\x01\x03\x05", // 忨
+ 0x5fe9: "\x03\x04\x05\x04\x04\x05\x04\x04", // 忩
+ 0x5fea: "\x04\x04\x02\x03\x04\x05\x04", // 忪
+ 0x5feb: "\x04\x04\x02\x05\x01\x03\x04", // 快
+ 0x5fec: "\x04\x04\x02\x05\x04\x05\x02", // 忬
+ 0x5fed: "\x04\x04\x02\x04\x01\x02\x04", // 忭
+ 0x5fee: "\x04\x04\x02\x01\x02\x05\x04", // 忮
+ 0x5fef: "\x04\x04\x02\x03\x05\x01\x05", // 忯
+ 0x5ff0: "\x04\x04\x02\x03\x05\x01\x02", // 忰
+ 0x5ff1: "\x04\x04\x02\x04\x05\x03\x05", // 忱
+ 0x5ff2: "\x04\x04\x02\x01\x03\x04\x04", // 忲
+ 0x5ff3: "\x04\x04\x02\x01\x05\x02\x05", // 忳
+ 0x5ff4: "\x04\x04\x02\x03\x04\x04\x05", // 忴
+ 0x5ff5: "\x03\x04\x04\x05\x04\x05\x04\x04", // 念
+ 0x5ff6: "\x04\x04\x02\x01\x01\x05\x04", // 忶
+ 0x5ff7: "\x04\x04\x02\x03\x04\x05\x02", // 忷
+ 0x5ff8: "\x04\x04\x02\x05\x02\x01\x01", // 忸
+ 0x5ff9: "\x04\x04\x02\x01\x01\x02\x01", // 忹
+ 0x5ffa: "\x04\x04\x02\x03\x05\x03\x04", // 忺
+ 0x5ffb: "\x04\x04\x02\x03\x03\x01\x02", // 忻
+ 0x5ffc: "\x04\x04\x02\x04\x01\x03\x05", // 忼
+ 0x5ffd: "\x03\x05\x03\x03\x04\x05\x04\x04", // 忽
+ 0x5ffe: "\x04\x04\x02\x03\x01\x01\x05", // 忾
+ 0x5fff: "\x03\x04\x05\x03\x04\x05\x04\x04", // 忿
+ 0x6000: "\x04\x04\x02\x01\x03\x02\x04", // 怀
+ 0x6001: "\x01\x03\x04\x04\x04\x05\x04\x04", // 态
+ 0x6002: "\x03\x04\x03\x04\x04\x05\x04\x04", // 怂
+ 0x6003: "\x04\x04\x02\x01\x01\x03\x05", // 怃
+ 0x6004: "\x04\x04\x02\x01\x03\x04\x05", // 怄
+ 0x6005: "\x04\x04\x02\x03\x01\x05\x04", // 怅
+ 0x6006: "\x04\x04\x02\x03\x04\x05\x05", // 怆
+ 0x6007: "\x04\x04\x02\x01\x05\x01\x05", // 怇
+ 0x6008: "\x04\x04\x02\x01\x02\x02\x01\x05", // 怈
+ 0x6009: "\x04\x04\x02\x03\x05\x05\x01\x05", // 怉
+ 0x600a: "\x04\x04\x02\x05\x03\x02\x05\x01", // 怊
+ 0x600b: "\x04\x04\x02\x05\x01\x05\x01\x05", // 怋
+ 0x600c: "\x04\x04\x02\x01\x03\x02\x04\x01", // 怌
+ 0x600d: "\x04\x04\x02\x03\x01\x02\x01\x01", // 怍
+ 0x600e: "\x03\x01\x02\x01\x01\x04\x05\x04\x04", // 怎
+ 0x600f: "\x04\x04\x02\x02\x05\x01\x03\x04", // 怏
+ 0x6010: "\x04\x04\x02\x03\x05\x02\x05\x01", // 怐
+ 0x6011: "\x04\x04\x02\x04\x03\x01\x01\x02", // 怑
+ 0x6012: "\x05\x03\x01\x05\x04\x04\x05\x04\x04", // 怒
+ 0x6013: "\x04\x04\x02\x05\x03\x01\x05\x04", // 怓
+ 0x6014: "\x04\x04\x02\x01\x02\x01\x02\x01", // 怔
+ 0x6015: "\x04\x04\x02\x03\x02\x05\x01\x01", // 怕
+ 0x6016: "\x04\x04\x02\x01\x03\x02\x05\x02", // 怖
+ 0x6017: "\x04\x04\x02\x02\x01\x02\x05\x01", // 怗
+ 0x6018: "\x01\x02\x02\x05\x01\x04\x05\x04\x04", // 怘
+ 0x6019: "\x04\x04\x02\x01\x02\x02\x05\x01", // 怙
+ 0x601a: "\x04\x04\x02\x02\x05\x01\x01\x01", // 怚
+ 0x601b: "\x04\x04\x02\x02\x05\x01\x01\x01", // 怛
+ 0x601c: "\x04\x04\x02\x03\x04\x04\x05\x04", // 怜
+ 0x601d: "\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 思
+ 0x601e: "\x04\x04\x02\x02\x05\x01\x02\x01", // 怞
+ 0x601f: "\x04\x04\x02\x03\x05\x01\x05\x04", // 怟
+ 0x6020: "\x05\x04\x02\x05\x01\x04\x05\x04\x04", // 怠
+ 0x6021: "\x04\x04\x02\x05\x04\x02\x05\x01", // 怡
+ 0x6022: "\x04\x04\x02\x03\x01\x01\x03\x04", // 怢
+ 0x6023: "\x03\x01\x01\x03\x04\x04\x05\x04\x04", // 怣
+ 0x6024: "\x03\x02\x01\x02\x04\x04\x05\x04\x04", // 怤
+ 0x6025: "\x03\x05\x05\x01\x01\x04\x05\x04\x04", // 急
+ 0x6026: "\x04\x04\x02\x01\x04\x03\x01\x02", // 怦
+ 0x6027: "\x04\x04\x02\x03\x01\x01\x02\x01", // 性
+ 0x6028: "\x03\x05\x04\x05\x05\x04\x05\x04\x04", // 怨
+ 0x6029: "\x04\x04\x02\x05\x01\x03\x03\x05", // 怩
+ 0x602a: "\x04\x04\x02\x05\x04\x01\x02\x01", // 怪
+ 0x602b: "\x04\x04\x02\x05\x01\x05\x03\x02", // 怫
+ 0x602c: "\x04\x04\x02\x02\x05\x03\x05\x01", // 怬
+ 0x602d: "\x04\x04\x02\x04\x05\x04\x03\x04", // 怭
+ 0x602e: "\x04\x04\x02\x05\x05\x04\x05\x03", // 怮
+ 0x602f: "\x04\x04\x02\x01\x02\x01\x05\x04", // 怯
+ 0x6030: "\x04\x04\x02\x04\x01\x05\x05\x04", // 怰
+ 0x6031: "\x03\x05\x03\x03\x04\x04\x05\x04\x04", // 怱
+ 0x6032: "\x04\x04\x02\x01\x02\x05\x03\x04", // 怲
+ 0x6033: "\x04\x04\x02\x02\x05\x01\x03\x05", // 怳
+ 0x6034: "\x04\x04\x02\x01\x05\x05\x03\x04", // 怴
+ 0x6035: "\x04\x04\x02\x01\x02\x03\x04\x04", // 怵
+ 0x6036: "\x04\x04\x02\x05\x03\x02\x05\x04", // 怶
+ 0x6037: "\x01\x02\x03\x05\x04\x04\x05\x04\x04", // 怷
+ 0x6038: "\x01\x02\x03\x04\x04\x04\x05\x04\x04", // 怸
+ 0x6039: "\x03\x02\x05\x02\x05\x04\x05\x04\x04", // 怹
+ 0x603a: "\x04\x04\x02\x04\x05\x05\x03\x04", // 怺
+ 0x603b: "\x04\x03\x02\x05\x01\x04\x05\x04\x04", // 总
+ 0x603c: "\x05\x04\x01\x02\x04\x04\x05\x04\x04", // 怼
+ 0x603d: "\x04\x04\x02\x01\x01\x02\x03\x04", // 怽
+ 0x603e: "\x04\x04\x02\x02\x05\x01\x03\x04", // 怾
+ 0x603f: "\x04\x04\x02\x05\x04\x01\x01\x02", // 怿
+ 0x6040: "\x04\x04\x02\x03\x05\x04\x03\x05\x04", // 恀
+ 0x6041: "\x03\x02\x03\x01\x02\x01\x04\x05\x04\x04", // 恁
+ 0x6042: "\x04\x04\x02\x03\x05\x02\x05\x01\x01", // 恂
+ 0x6043: "\x04\x04\x02\x01\x02\x01\x01\x02\x04", // 恃
+ 0x6044: "\x04\x04\x02\x01\x02\x01\x02\x05\x01", // 恄
+ 0x6045: "\x04\x04\x02\x01\x02\x01\x03\x03\x05", // 恅
+ 0x6046: "\x04\x04\x02\x01\x02\x05\x04\x04\x01", // 恆
+ 0x6047: "\x04\x04\x02\x01\x01\x01\x02\x01\x05", // 恇
+ 0x6048: "\x04\x04\x02\x05\x04\x03\x01\x01\x02", // 恈
+ 0x6049: "\x04\x04\x02\x03\x05\x02\x05\x01\x01", // 恉
+ 0x604a: "\x04\x04\x02\x05\x03\x05\x03\x05\x03", // 恊
+ 0x604b: "\x04\x01\x02\x02\x03\x04\x04\x05\x04\x04", // 恋
+ 0x604c: "\x04\x04\x02\x03\x04\x01\x05\x03\x04", // 恌
+ 0x604d: "\x04\x04\x02\x02\x04\x03\x01\x03\x05", // 恍
+ 0x604e: "\x04\x04\x02\x01\x05\x04\x01\x02\x01", // 恎
+ 0x604f: "\x05\x03\x01\x05\x02\x01\x04\x05\x04\x04", // 恏
+ 0x6050: "\x01\x02\x01\x03\x05\x04\x04\x05\x04\x04", // 恐
+ 0x6051: "\x04\x04\x02\x03\x05\x01\x03\x05\x05", // 恑
+ 0x6052: "\x04\x04\x02\x01\x02\x05\x01\x01\x01", // 恒
+ 0x6053: "\x04\x04\x02\x01\x02\x05\x03\x05\x01", // 恓
+ 0x6054: "\x04\x04\x02\x04\x01\x03\x04\x03\x04", // 恔
+ 0x6055: "\x05\x03\x01\x02\x05\x01\x04\x05\x04\x04", // 恕
+ 0x6056: "\x03\x02\x05\x03\x04\x01\x04\x05\x04\x04", // 恖
+ 0x6057: "\x04\x04\x02\x01\x03\x04\x01\x01\x05", // 恗
+ 0x6058: "\x04\x04\x02\x03\x02\x01\x02\x03\x04", // 恘
+ 0x6059: "\x04\x03\x01\x01\x02\x01\x04\x05\x04\x04", // 恙
+ 0x605a: "\x01\x02\x01\x01\x02\x01\x04\x05\x04\x04", // 恚
+ 0x605b: "\x04\x04\x02\x02\x05\x02\x05\x01\x01", // 恛
+ 0x605c: "\x04\x04\x02\x01\x01\x02\x01\x05\x04", // 恜
+ 0x605d: "\x01\x01\x01\x02\x05\x03\x04\x05\x04\x04", // 恝
+ 0x605e: "\x04\x04\x02\x01\x05\x01\x05\x03\x04", // 恞
+ 0x605f: "\x04\x04\x02\x03\x05\x03\x04\x05\x02", // 恟
+ 0x6060: "\x04\x04\x02\x01\x03\x02\x01\x02\x01", // 恠
+ 0x6061: "\x04\x04\x02\x03\x04\x01\x03\x05\x04", // 恡
+ 0x6062: "\x04\x04\x02\x01\x03\x04\x03\x03\x04", // 恢
+ 0x6063: "\x04\x01\x03\x05\x03\x04\x04\x05\x04\x04", // 恣
+ 0x6064: "\x04\x04\x02\x03\x02\x05\x02\x02\x01", // 恤
+ 0x6065: "\x01\x02\x02\x01\x01\x01\x04\x05\x04\x04", // 恥
+ 0x6066: "\x04\x04\x02\x03\x02\x05\x02\x05\x01", // 恦
+ 0x6067: "\x01\x03\x02\x05\x02\x02\x04\x05\x04\x04", // 恧
+ 0x6068: "\x04\x04\x02\x05\x01\x01\x05\x03\x04", // 恨
+ 0x6069: "\x02\x05\x01\x03\x04\x01\x04\x05\x04\x04", // 恩
+ 0x606a: "\x04\x04\x02\x03\x05\x04\x02\x05\x01", // 恪
+ 0x606b: "\x04\x04\x02\x02\x05\x01\x02\x05\x01", // 恫
+ 0x606c: "\x04\x04\x02\x03\x01\x02\x02\x05\x01", // 恬
+ 0x606d: "\x01\x02\x02\x01\x03\x04\x02\x04\x04\x04", // 恭
+ 0x606e: "\x04\x04\x02\x03\x04\x01\x01\x02\x01", // 恮
+ 0x606f: "\x03\x02\x05\x01\x01\x01\x04\x05\x04\x04", // 息
+ 0x6070: "\x04\x04\x02\x03\x04\x01\x02\x05\x01", // 恰
+ 0x6071: "\x04\x04\x02\x03\x04\x05\x04\x03\x05", // 恱
+ 0x6072: "\x04\x04\x02\x04\x03\x01\x01\x03\x02", // 恲
+ 0x6073: "\x05\x01\x01\x05\x03\x04\x04\x05\x04\x04", // 恳
+ 0x6074: "\x04\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 恴
+ 0x6075: "\x01\x02\x05\x01\x01\x02\x04\x05\x04\x04", // 恵
+ 0x6076: "\x01\x02\x02\x04\x03\x01\x04\x05\x04\x04", // 恶
+ 0x6077: "\x03\x02\x01\x02\x03\x04\x04\x05\x04\x04", // 恷
+ 0x6078: "\x04\x04\x02\x01\x01\x05\x04\x05\x03", // 恸
+ 0x6079: "\x04\x04\x02\x01\x03\x01\x03\x04\x04", // 恹
+ 0x607a: "\x04\x04\x02\x02\x05\x02\x05\x01\x05", // 恺
+ 0x607b: "\x04\x04\x02\x02\x05\x03\x04\x02\x02", // 恻
+ 0x607c: "\x04\x04\x02\x04\x01\x03\x04\x05\x02", // 恼
+ 0x607d: "\x04\x04\x02\x04\x05\x01\x05\x01\x02", // 恽
+ 0x607e: "\x04\x04\x02\x01\x02\x02\x04\x01\x05", // 恾
+ 0x607f: "\x05\x04\x02\x05\x01\x01\x02\x04\x05\x04\x04", // 恿
+ 0x6080: "\x04\x04\x02\x05\x04\x02\x05\x01\x01\x02", // 悀
+ 0x6081: "\x04\x04\x02\x02\x05\x01\x02\x05\x01\x01", // 悁
+ 0x6082: "\x04\x04\x02\x01\x05\x03\x05\x01\x02\x01", // 悂
+ 0x6083: "\x04\x04\x02\x02\x05\x01\x02\x03\x04\x01", // 悃
+ 0x6084: "\x04\x04\x02\x02\x04\x03\x02\x05\x01\x01", // 悄
+ 0x6085: "\x04\x04\x02\x03\x04\x02\x05\x01\x03\x05", // 悅
+ 0x6086: "\x03\x04\x01\x01\x02\x03\x04\x04\x05\x04\x04", // 悆
+ 0x6087: "\x04\x04\x02\x03\x04\x01\x01\x02\x03\x04", // 悇
+ 0x6088: "\x04\x04\x02\x01\x01\x03\x02\x05\x03\x04", // 悈
+ 0x6089: "\x03\x04\x03\x01\x02\x03\x04\x04\x05\x04\x04", // 悉
+ 0x608a: "\x01\x02\x01\x03\x03\x01\x02\x04\x05\x04\x04", // 悊
+ 0x608b: "\x04\x04\x02\x04\x01\x03\x04\x02\x05\x01", // 悋
+ 0x608c: "\x04\x04\x02\x04\x03\x05\x01\x05\x02\x03", // 悌
+ 0x608d: "\x04\x04\x02\x02\x05\x01\x01\x01\x01\x02", // 悍
+ 0x608e: "\x04\x04\x02\x03\x01\x02\x01\x02\x05\x01", // 悎
+ 0x608f: "\x04\x04\x02\x01\x03\x04\x03\x04\x03\x04", // 悏
+ 0x6090: "\x03\x05\x03\x04\x03\x03\x04\x04\x05\x04\x04", // 悐
+ 0x6091: "\x04\x04\x02\x01\x02\x05\x01\x01\x02\x04", // 悑
+ 0x6092: "\x04\x04\x02\x02\x05\x01\x05\x02\x01\x05", // 悒
+ 0x6093: "\x04\x04\x02\x02\x05\x01\x01\x01\x03\x05", // 悓
+ 0x6094: "\x04\x04\x02\x03\x01\x05\x05\x04\x01\x04", // 悔
+ 0x6095: "\x04\x04\x02\x03\x04\x01\x03\x02\x05\x02", // 悕
+ 0x6096: "\x04\x04\x02\x01\x02\x04\x05\x05\x02\x01", // 悖
+ 0x6097: "\x04\x04\x02\x03\x05\x02\x05\x01\x03\x05", // 悗
+ 0x6098: "\x01\x03\x01\x01\x03\x04\x05\x04\x05\x04\x04", // 悘
+ 0x6099: "\x04\x04\x02\x04\x01\x02\x05\x01\x05\x02", // 悙
+ 0x609a: "\x04\x04\x02\x01\x02\x05\x01\x02\x03\x04", // 悚
+ 0x609b: "\x04\x04\x02\x05\x04\x03\x04\x03\x05\x04", // 悛
+ 0x609c: "\x04\x04\x02\x02\x05\x01\x01\x01\x02\x01", // 悜
+ 0x609d: "\x04\x04\x02\x02\x05\x01\x01\x02\x01\x01", // 悝
+ 0x609e: "\x04\x04\x02\x02\x05\x01\x05\x01\x03\x04", // 悞
+ 0x609f: "\x04\x04\x02\x01\x02\x05\x01\x02\x05\x01", // 悟
+ 0x60a0: "\x03\x02\x02\x03\x01\x03\x04\x04\x05\x04\x04", // 悠
+ 0x60a1: "\x03\x01\x02\x03\x04\x02\x02\x04\x05\x04\x04", // 悡
+ 0x60a2: "\x04\x04\x02\x04\x05\x01\x01\x05\x03\x04", // 悢
+ 0x60a3: "\x02\x05\x01\x02\x05\x01\x02\x04\x05\x04\x04", // 患
+ 0x60a4: "\x03\x02\x05\x03\x05\x04\x01\x04\x05\x04\x04", // 悤
+ 0x60a5: "\x04\x01\x01\x01\x02\x05\x01\x04\x05\x04\x04", // 悥
+ 0x60a6: "\x04\x04\x02\x04\x03\x02\x05\x01\x03\x05", // 悦
+ 0x60a7: "\x04\x04\x02\x03\x01\x02\x03\x04\x02\x02", // 悧
+ 0x60a8: "\x03\x02\x03\x05\x02\x03\x04\x04\x05\x04\x04", // 您
+ 0x60a9: "\x04\x04\x02\x04\x04\x03\x03\x04\x05\x02", // 悩
+ 0x60aa: "\x01\x02\x05\x01\x02\x02\x01\x04\x05\x04\x04", // 悪
+ 0x60ab: "\x01\x02\x01\x04\x05\x03\x05\x04\x05\x04\x04", // 悫
+ 0x60ac: "\x02\x05\x01\x01\x01\x05\x04\x04\x05\x04\x04", // 悬
+ 0x60ad: "\x04\x04\x02\x02\x02\x05\x04\x01\x02\x01", // 悭
+ 0x60ae: "\x04\x04\x02\x02\x05\x01\x01\x01\x03\x04", // 悮
+ 0x60af: "\x04\x04\x02\x04\x02\x05\x04\x01\x03\x04", // 悯
+ 0x60b0: "\x04\x04\x02\x04\x04\x05\x01\x01\x02\x03\x04", // 悰
+ 0x60b1: "\x04\x04\x02\x02\x01\x01\x01\x02\x01\x01\x01", // 悱
+ 0x60b2: "\x02\x01\x01\x01\x02\x01\x01\x01\x04\x05\x04\x04", // 悲
+ 0x60b3: "\x01\x03\x02\x05\x01\x01\x01\x05\x04\x05\x04\x04", // 悳
+ 0x60b4: "\x04\x04\x02\x04\x01\x03\x04\x03\x04\x01\x02", // 悴
+ 0x60b5: "\x04\x04\x02\x01\x02\x01\x01\x01\x05\x03\x04", // 悵
+ 0x60b6: "\x02\x05\x01\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 悶
+ 0x60b7: "\x04\x04\x02\x04\x05\x01\x03\x01\x03\x04\x04", // 悷
+ 0x60b8: "\x04\x04\x02\x03\x01\x02\x03\x04\x05\x02\x01", // 悸
+ 0x60b9: "\x04\x04\x05\x02\x05\x01\x05\x01\x04\x05\x04\x04", // 悹
+ 0x60ba: "\x04\x04\x02\x04\x04\x05\x02\x05\x01\x05\x01", // 悺
+ 0x60bb: "\x04\x04\x02\x01\x02\x01\x04\x03\x01\x01\x02", // 悻
+ 0x60bc: "\x04\x04\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 悼
+ 0x60bd: "\x04\x04\x02\x01\x05\x01\x01\x02\x05\x03\x01", // 悽
+ 0x60be: "\x04\x04\x02\x04\x04\x05\x03\x04\x01\x02\x01", // 悾
+ 0x60bf: "\x04\x04\x02\x01\x01\x03\x04\x02\x04\x04\x04", // 悿
+ 0x60c0: "\x04\x04\x02\x03\x04\x01\x02\x05\x01\x02\x02", // 惀
+ 0x60c1: "\x01\x02\x03\x04\x03\x03\x01\x02\x04\x05\x04\x04", // 惁
+ 0x60c2: "\x04\x04\x02\x03\x05\x03\x02\x01\x05\x01\x01", // 惂
+ 0x60c3: "\x04\x04\x02\x02\x05\x01\x01\x01\x05\x03\x05", // 惃
+ 0x60c4: "\x02\x01\x01\x02\x03\x04\x05\x04\x04\x05\x04\x04", // 惄
+ 0x60c5: "\x04\x04\x02\x01\x01\x02\x01\x02\x05\x01\x01", // 情
+ 0x60c6: "\x04\x04\x02\x03\x05\x01\x02\x01\x02\x05\x01", // 惆
+ 0x60c7: "\x04\x04\x02\x04\x01\x02\x05\x01\x05\x02\x01", // 惇
+ 0x60c8: "\x04\x04\x02\x02\x05\x01\x01\x01\x02\x03\x04", // 惈
+ 0x60c9: "\x04\x04\x01\x02\x01\x02\x05\x01\x04\x05\x04\x04", // 惉
+ 0x60ca: "\x04\x04\x02\x04\x01\x02\x05\x01\x02\x03\x04", // 惊
+ 0x60cb: "\x04\x04\x02\x04\x04\x05\x03\x05\x04\x05\x05", // 惋
+ 0x60cc: "\x04\x04\x05\x03\x05\x04\x05\x05\x04\x05\x04\x04", // 惌
+ 0x60cd: "\x04\x04\x02\x03\x04\x01\x01\x02\x04\x03\x01", // 惍
+ 0x60ce: "\x01\x02\x02\x01\x01\x01\x03\x04\x04\x05\x04\x04", // 惎
+ 0x60cf: "\x04\x04\x02\x01\x02\x03\x04\x01\x02\x03\x04", // 惏
+ 0x60d0: "\x04\x04\x02\x01\x02\x05\x01\x01\x05\x03\x04", // 惐
+ 0x60d1: "\x01\x02\x05\x01\x01\x05\x03\x04\x04\x05\x04\x04", // 惑
+ 0x60d2: "\x03\x01\x02\x03\x04\x02\x05\x01\x04\x05\x04\x04", // 惒
+ 0x60d3: "\x04\x04\x02\x04\x03\x01\x01\x03\x04\x05\x05", // 惓
+ 0x60d4: "\x04\x04\x02\x04\x03\x03\x04\x04\x03\x03\x04", // 惔
+ 0x60d5: "\x04\x04\x02\x02\x05\x01\x01\x03\x05\x03\x03", // 惕
+ 0x60d6: "\x02\x05\x01\x01\x03\x05\x03\x03\x04\x05\x04\x04", // 惖
+ 0x60d7: "\x04\x04\x02\x03\x04\x04\x05\x04\x05\x04\x04", // 惗
+ 0x60d8: "\x04\x04\x02\x02\x05\x04\x03\x01\x04\x01\x05", // 惘
+ 0x60d9: "\x04\x04\x02\x05\x04\x05\x04\x05\x04\x05\x04", // 惙
+ 0x60da: "\x04\x04\x02\x03\x05\x03\x03\x04\x05\x04\x04", // 惚
+ 0x60db: "\x04\x04\x02\x03\x05\x01\x05\x02\x05\x01\x01", // 惛
+ 0x60dc: "\x04\x04\x02\x01\x02\x02\x01\x02\x05\x01\x01", // 惜
+ 0x60dd: "\x04\x04\x02\x02\x04\x03\x02\x05\x02\x05\x01", // 惝
+ 0x60de: "\x04\x04\x02\x03\x03\x01\x02\x03\x05\x03\x04", // 惞
+ 0x60df: "\x04\x04\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 惟
+ 0x60e0: "\x01\x02\x05\x01\x01\x02\x01\x04\x04\x05\x04\x04", // 惠
+ 0x60e1: "\x01\x02\x01\x05\x05\x01\x02\x01\x04\x05\x04\x04", // 惡
+ 0x60e2: "\x03\x05\x04\x04\x03\x05\x04\x04\x03\x05\x04\x04", // 惢
+ 0x60e3: "\x03\x01\x02\x01\x03\x05\x03\x03\x04\x05\x04\x04", // 惣
+ 0x60e4: "\x04\x04\x02\x05\x01\x05\x04\x01\x05\x05\x04", // 惤
+ 0x60e5: "\x03\x02\x01\x05\x01\x01\x03\x04\x04\x05\x04\x04", // 惥
+ 0x60e6: "\x04\x04\x02\x04\x01\x03\x02\x01\x02\x05\x01", // 惦
+ 0x60e7: "\x04\x04\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 惧
+ 0x60e8: "\x04\x04\x02\x05\x04\x01\x03\x04\x03\x03\x03", // 惨
+ 0x60e9: "\x03\x03\x02\x01\x02\x01\x02\x01\x04\x05\x04\x04", // 惩
+ 0x60ea: "\x01\x02\x02\x05\x01\x01\x01\x01\x04\x05\x04\x04", // 惪
+ 0x60eb: "\x03\x05\x04\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 惫
+ 0x60ec: "\x04\x04\x02\x01\x01\x04\x03\x01\x03\x04\x05", // 惬
+ 0x60ed: "\x04\x04\x02\x01\x05\x02\x01\x03\x03\x01\x02", // 惭
+ 0x60ee: "\x04\x04\x02\x04\x03\x02\x05\x01\x01\x01\x02", // 惮
+ 0x60ef: "\x04\x04\x02\x05\x05\x02\x01\x02\x05\x03\x04", // 惯
+ 0x60f0: "\x04\x04\x02\x01\x03\x01\x02\x01\x02\x05\x01\x01", // 惰
+ 0x60f1: "\x04\x04\x02\x05\x05\x05\x03\x02\x05\x03\x04\x01", // 惱
+ 0x60f2: "\x04\x04\x02\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 惲
+ 0x60f3: "\x01\x02\x03\x04\x02\x05\x01\x01\x01\x04\x05\x04\x04", // 想
+ 0x60f4: "\x04\x04\x02\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 惴
+ 0x60f5: "\x04\x04\x02\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 惵
+ 0x60f6: "\x04\x04\x02\x03\x02\x05\x01\x01\x01\x01\x02\x01", // 惶
+ 0x60f7: "\x01\x01\x01\x03\x04\x02\x05\x01\x01\x04\x05\x04\x04", // 惷
+ 0x60f8: "\x04\x04\x02\x03\x05\x02\x05\x01\x05\x02\x01", // 惸
+ 0x60f9: "\x01\x02\x02\x01\x03\x02\x05\x01\x04\x05\x04\x04", // 惹
+ 0x60fa: "\x04\x04\x02\x02\x05\x01\x01\x03\x01\x01\x02\x01", // 惺
+ 0x60fb: "\x04\x04\x02\x02\x05\x01\x01\x01\x03\x04\x02\x02", // 惻
+ 0x60fc: "\x04\x04\x02\x04\x05\x01\x03\x02\x05\x01\x02\x02", // 惼
+ 0x60fd: "\x04\x04\x02\x05\x01\x05\x01\x05\x02\x05\x01\x01", // 惽
+ 0x60fe: "\x04\x04\x02\x03\x04\x05\x02\x03\x04\x03\x05\x04", // 惾
+ 0x60ff: "\x04\x04\x02\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 惿
+ 0x6100: "\x04\x04\x02\x03\x01\x02\x03\x04\x04\x03\x03\x04", // 愀
+ 0x6101: "\x03\x01\x02\x03\x04\x04\x03\x03\x04\x04\x05\x04\x04", // 愁
+ 0x6102: "\x01\x02\x04\x05\x05\x02\x01\x05\x03\x04\x05\x04\x04", // 愂
+ 0x6103: "\x04\x04\x02\x04\x04\x05\x01\x02\x05\x01\x01\x01", // 愃
+ 0x6104: "\x04\x04\x02\x02\x05\x01\x02\x01\x01\x02\x03\x04", // 愄
+ 0x6105: "\x04\x04\x02\x01\x02\x02\x01\x02\x05\x01\x01\x02", // 愅
+ 0x6106: "\x03\x03\x02\x04\x04\x01\x01\x01\x02\x04\x05\x04\x04", // 愆
+ 0x6107: "\x04\x04\x02\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 愇
+ 0x6108: "\x03\x04\x01\x02\x05\x01\x01\x02\x02\x04\x05\x04\x04", // 愈
+ 0x6109: "\x04\x04\x02\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 愉
+ 0x610a: "\x04\x04\x02\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 愊
+ 0x610b: "\x04\x04\x02\x03\x04\x04\x03\x01\x01\x03\x05\x04", // 愋
+ 0x610c: "\x04\x04\x02\x03\x05\x02\x05\x03\x04\x01\x03\x04", // 愌
+ 0x610d: "\x05\x01\x05\x01\x05\x03\x01\x03\x04\x04\x05\x04\x04", // 愍
+ 0x610e: "\x04\x04\x02\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 愎
+ 0x610f: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 意
+ 0x6110: "\x04\x04\x02\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 愐
+ 0x6111: "\x04\x04\x02\x05\x04\x02\x05\x01\x01\x02\x05\x03", // 愑
+ 0x6112: "\x04\x04\x02\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 愒
+ 0x6113: "\x04\x04\x02\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 愓
+ 0x6114: "\x04\x04\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 愔
+ 0x6115: "\x04\x04\x02\x02\x05\x01\x02\x05\x01\x01\x01\x05", // 愕
+ 0x6116: "\x04\x04\x02\x01\x02\x02\x01\x01\x01\x03\x04\x05", // 愖
+ 0x6117: "\x05\x04\x05\x02\x03\x03\x01\x03\x04\x04\x05\x04\x04", // 愗
+ 0x6118: "\x04\x04\x02\x04\x04\x05\x03\x05\x04\x02\x05\x01", // 愘
+ 0x6119: "\x04\x04\x05\x03\x05\x04\x02\x05\x01\x04\x05\x04\x04", // 愙
+ 0x611a: "\x02\x05\x01\x01\x02\x05\x02\x01\x04\x04\x05\x04\x04", // 愚
+ 0x611b: "\x03\x04\x04\x03\x04\x05\x04\x05\x04\x04\x03\x05\x04", // 愛
+ 0x611c: "\x04\x04\x02\x01\x01\x03\x04\x03\x04\x03\x04\x05", // 愜
+ 0x611d: "\x04\x04\x02\x01\x02\x05\x01\x01\x05\x03\x01\x05", // 愝
+ 0x611e: "\x04\x04\x02\x01\x03\x02\x05\x02\x02\x01\x03\x04", // 愞
+ 0x611f: "\x01\x03\x01\x02\x05\x01\x05\x03\x04\x04\x05\x04\x04", // 感
+ 0x6120: "\x04\x04\x02\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 愠
+ 0x6121: "\x04\x04\x02\x03\x05\x03\x03\x04\x04\x05\x04\x04", // 愡
+ 0x6122: "\x04\x04\x02\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 愢
+ 0x6123: "\x04\x04\x02\x02\x05\x02\x02\x01\x04\x01\x05\x03", // 愣
+ 0x6124: "\x04\x04\x02\x01\x02\x01\x02\x02\x02\x05\x03\x04", // 愤
+ 0x6125: "\x04\x04\x02\x01\x02\x02\x02\x05\x01\x03\x04", // 愥
+ 0x6126: "\x04\x04\x02\x02\x05\x01\x02\x01\x02\x05\x03\x04", // 愦
+ 0x6127: "\x04\x04\x02\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 愧
+ 0x6128: "\x01\x02\x01\x04\x05\x01\x03\x05\x05\x04\x04\x05\x04\x04", // 愨
+ 0x6129: "\x04\x04\x02\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 愩
+ 0x612a: "\x04\x04\x02\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 愪
+ 0x612b: "\x04\x04\x02\x01\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 愫
+ 0x612c: "\x04\x03\x01\x05\x02\x03\x03\x05\x01\x01\x04\x05\x04\x04", // 愬
+ 0x612d: "\x04\x04\x02\x01\x02\x01\x03\x03\x05\x02\x05\x01\x01", // 愭
+ 0x612e: "\x04\x04\x02\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02", // 愮
+ 0x612f: "\x04\x04\x02\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 愯
+ 0x6130: "\x04\x04\x02\x02\x05\x01\x01\x02\x04\x03\x01\x03\x05", // 愰
+ 0x6131: "\x04\x04\x02\x04\x01\x03\x04\x01\x03\x01\x01\x03\x04", // 愱
+ 0x6132: "\x04\x04\x02\x02\x05\x05\x04\x05\x02\x05\x01\x01", // 愲
+ 0x6133: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x04\x05\x04\x04", // 愳
+ 0x6134: "\x04\x04\x02\x03\x04\x04\x05\x01\x01\x03\x02\x05\x01", // 愴
+ 0x6135: "\x04\x04\x02\x05\x01\x05\x04\x01\x05\x01\x05\x04\x01", // 愵
+ 0x6136: "\x04\x02\x02\x05\x03\x05\x03\x05\x03\x02\x05\x01\x01", // 愶
+ 0x6137: "\x04\x04\x02\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 愷
+ 0x6138: "\x01\x02\x03\x04\x03\x04\x03\x04\x05\x03\x04\x05\x04\x04", // 愸
+ 0x6139: "\x04\x04\x02\x04\x04\x05\x03\x04\x03\x04\x02\x05\x01", // 愹
+ 0x613a: "\x04\x04\x02\x01\x02\x02\x02\x05\x01\x01\x01\x02", // 愺
+ 0x613b: "\x05\x02\x01\x03\x05\x05\x04\x02\x03\x04\x04\x05\x04\x04", // 愻
+ 0x613c: "\x04\x04\x02\x03\x05\x02\x05\x01\x01\x01\x05\x03\x04", // 愼
+ 0x613d: "\x04\x04\x02\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 愽
+ 0x613e: "\x04\x04\x02\x03\x01\x01\x05\x04\x03\x01\x02\x03\x04", // 愾
+ 0x613f: "\x01\x03\x03\x02\x05\x01\x01\x02\x03\x04\x04\x05\x04\x04", // 愿
+ 0x6140: "\x04\x04\x02\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04", // 慀
+ 0x6141: "\x02\x05\x01\x03\x05\x03\x03\x03\x04\x01\x04\x05\x04\x04", // 慁
+ 0x6142: "\x04\x04\x01\x05\x04\x02\x05\x01\x01\x02\x04\x05\x04\x04", // 慂
+ 0x6143: "\x04\x04\x02\x03\x04\x05\x04\x05\x04\x01\x05\x04\x01", // 慃
+ 0x6144: "\x04\x04\x02\x01\x02\x05\x02\x02\x01\x01\x02\x03\x04", // 慄
+ 0x6145: "\x04\x04\x02\x05\x04\x04\x02\x05\x01\x02\x01\x04", // 慅
+ 0x6146: "\x04\x04\x02\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01", // 慆
+ 0x6147: "\x03\x03\x05\x01\x01\x05\x03\x05\x05\x04\x04\x05\x04\x04", // 慇
+ 0x6148: "\x04\x03\x01\x05\x05\x04\x05\x05\x04\x04\x05\x04\x04", // 慈
+ 0x6149: "\x04\x04\x02\x04\x01\x05\x05\x04\x02\x05\x01\x02\x01", // 慉
+ 0x614a: "\x04\x04\x02\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 慊
+ 0x614b: "\x05\x04\x02\x05\x01\x01\x03\x05\x03\x05\x04\x05\x04\x04", // 態
+ 0x614c: "\x04\x04\x02\x01\x02\x02\x04\x01\x05\x03\x02\x05", // 慌
+ 0x614d: "\x04\x04\x02\x02\x05\x03\x04\x01\x02\x05\x02\x02\x01", // 慍
+ 0x614e: "\x04\x04\x02\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 慎
+ 0x614f: "\x04\x04\x02\x04\x05\x02\x05\x01\x01\x04\x01\x03\x04", // 慏
+ 0x6150: "\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04\x04", // 慐
+ 0x6151: "\x04\x04\x02\x01\x02\x02\x01\x01\x01\x05\x04\x05\x04", // 慑
+ 0x6152: "\x04\x04\x02\x01\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01", // 慒
+ 0x6153: "\x04\x04\x02\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 慓
+ 0x6154: "\x04\x04\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 慔
+ 0x6155: "\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04\x02\x04\x04\x04", // 慕
+ 0x6156: "\x04\x04\x02\x02\x05\x01\x02\x05\x01\x01\x05\x03\x04\x01", // 慖
+ 0x6157: "\x01\x02\x05\x01\x02\x03\x04\x03\x01\x03\x04\x04\x05\x04\x04", // 慗
+ 0x6158: "\x04\x04\x02\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 慘
+ 0x6159: "\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02\x04\x05\x04\x04", // 慙
+ 0x615a: "\x04\x04\x02\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02", // 慚
+ 0x615b: "\x04\x04\x02\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 慛
+ 0x615c: "\x03\x01\x05\x05\x04\x01\x04\x03\x01\x03\x04\x04\x05\x04\x04", // 慜
+ 0x615d: "\x01\x01\x02\x02\x01\x03\x02\x05\x01\x05\x04\x05\x04\x04", // 慝
+ 0x615e: "\x04\x04\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02", // 慞
+ 0x615f: "\x04\x04\x02\x03\x01\x02\x05\x01\x01\x02\x01\x01\x05\x03", // 慟
+ 0x6160: "\x04\x04\x02\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04", // 慠
+ 0x6161: "\x04\x04\x02\x01\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04", // 慡
+ 0x6162: "\x04\x04\x02\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 慢
+ 0x6163: "\x04\x04\x02\x05\x05\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 慣
+ 0x6164: "\x01\x02\x01\x04\x05\x03\x05\x03\x05\x05\x04\x04\x05\x04\x04", // 慤
+ 0x6165: "\x04\x04\x02\x03\x01\x02\x01\x02\x05\x01\x04\x05\x04", // 慥
+ 0x6166: "\x01\x02\x04\x01\x03\x04\x04\x03\x01\x03\x04\x04\x05\x04\x04", // 慦
+ 0x6167: "\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 慧
+ 0x6168: "\x04\x04\x02\x05\x01\x01\x05\x04\x01\x05\x03\x05", // 慨
+ 0x6169: "\x04\x04\x02\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 慩
+ 0x616a: "\x04\x04\x02\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 慪
+ 0x616b: "\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04\x04\x05\x04\x04", // 慫
+ 0x616c: "\x04\x04\x02\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01", // 慬
+ 0x616d: "\x01\x04\x03\x01\x02\x03\x04\x01\x03\x04\x04\x04\x05\x04\x04", // 慭
+ 0x616e: "\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 慮
+ 0x616f: "\x04\x04\x02\x03\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 慯
+ 0x6170: "\x05\x01\x03\x01\x01\x02\x03\x04\x01\x02\x04\x04\x05\x04\x04", // 慰
+ 0x6171: "\x04\x04\x02\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04", // 慱
+ 0x6172: "\x04\x04\x02\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04", // 慲
+ 0x6173: "\x04\x04\x02\x01\x02\x05\x01\x02\x05\x05\x04\x01\x02\x01", // 慳
+ 0x6174: "\x04\x04\x02\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01", // 慴
+ 0x6175: "\x04\x04\x02\x04\x01\x03\x05\x01\x01\x02\x05\x01\x01\x02", // 慵
+ 0x6176: "\x04\x01\x03\x05\x02\x02\x01\x05\x04\x05\x04\x04\x03\x05\x04", // 慶
+ 0x6177: "\x04\x04\x02\x04\x01\x03\x05\x01\x01\x02\x04\x01\x03\x04", // 慷
+ 0x6178: "\x01\x03\x02\x02\x01\x05\x04\x05\x02\x05\x02\x04\x05\x04\x04", // 慸
+ 0x6179: "\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04\x04\x05\x04\x04", // 慹
+ 0x617a: "\x04\x04\x02\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 慺
+ 0x617b: "\x04\x04\x02\x04\x03\x01\x01\x03\x04\x02\x05\x01\x01\x01", // 慻
+ 0x617c: "\x01\x03\x02\x01\x01\x02\x03\x04\x05\x03\x04\x04\x05\x04\x04", // 慼
+ 0x617d: "\x04\x04\x02\x01\x03\x02\x01\x01\x02\x03\x04\x05\x03\x04", // 慽
+ 0x617e: "\x03\x04\x03\x04\x02\x05\x01\x03\x05\x03\x04\x04\x05\x04\x04", // 慾
+ 0x617f: "\x04\x01\x01\x02\x01\x01\x02\x05\x01\x03\x02\x04\x05\x04\x04", // 慿
+ 0x6180: "\x04\x04\x02\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 憀
+ 0x6181: "\x04\x04\x02\x03\x02\x05\x03\x05\x04\x01\x04\x05\x04\x04", // 憁
+ 0x6182: "\x01\x03\x02\x05\x01\x01\x04\x05\x04\x05\x04\x04\x03\x05\x04", // 憂
+ 0x6183: "\x01\x01\x01\x03\x04\x03\x02\x01\x05\x01\x01\x04\x05\x04\x04", // 憃
+ 0x6184: "\x03\x03\x02\x01\x02\x02\x05\x01\x01\x01\x01\x04\x05\x04\x04", // 憄
+ 0x6185: "\x03\x01\x02\x05\x01\x01\x02\x01\x01\x05\x03\x04\x05\x04\x04", // 憅
+ 0x6186: "\x04\x04\x02\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x01", // 憆
+ 0x6187: "\x03\x01\x02\x02\x05\x01\x01\x02\x02\x01\x01\x04\x05\x04\x04", // 憇
+ 0x6188: "\x04\x04\x02\x02\x01\x05\x03\x01\x05\x02\x02\x04\x03\x01", // 憈
+ 0x6189: "\x04\x04\x02\x01\x02\x01\x02\x05\x01\x04\x03\x01\x03\x03\x03", // 憉
+ 0x618a: "\x03\x02\x01\x02\x02\x01\x03\x02\x05\x01\x01\x02\x04\x05\x04\x04", // 憊
+ 0x618b: "\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04\x04\x05\x04\x04", // 憋
+ 0x618c: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x04\x01\x04\x05\x04\x04", // 憌
+ 0x618d: "\x04\x04\x02\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 憍
+ 0x618e: "\x04\x04\x02\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 憎
+ 0x618f: "\x04\x04\x02\x03\x05\x04\x04\x05\x04\x01\x01\x02\x03\x04", // 憏
+ 0x6190: "\x04\x04\x02\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 憐
+ 0x6191: "\x04\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x05\x04\x04", // 憑
+ 0x6192: "\x04\x04\x02\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 憒
+ 0x6193: "\x04\x04\x02\x01\x02\x05\x01\x01\x02\x01\x04\x04\x05\x04\x04", // 憓
+ 0x6194: "\x04\x04\x02\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 憔
+ 0x6195: "\x04\x04\x02\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 憕
+ 0x6196: "\x01\x03\x04\x03\x04\x02\x03\x04\x01\x03\x04\x04\x04\x05\x04\x04", // 憖
+ 0x6197: "\x01\x03\x04\x03\x04\x03\x04\x02\x03\x01\x03\x04\x04\x05\x04\x04", // 憗
+ 0x6198: "\x04\x04\x02\x01\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01", // 憘
+ 0x6199: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01\x04\x05\x04\x04", // 憙
+ 0x619a: "\x04\x04\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 憚
+ 0x619b: "\x04\x04\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 憛
+ 0x619c: "\x04\x04\x02\x05\x02\x01\x03\x01\x02\x01\x02\x05\x01\x01", // 憜
+ 0x619d: "\x04\x01\x02\x05\x01\x05\x02\x01\x03\x01\x03\x04\x04\x05\x04\x04", // 憝
+ 0x619e: "\x04\x04\x02\x04\x01\x02\x05\x01\x05\x02\x01\x03\x01\x03\x04", // 憞
+ 0x619f: "\x04\x04\x02\x01\x02\x05\x02\x02\x01\x04\x03\x01\x02\x03\x04", // 憟
+ 0x61a0: "\x01\x03\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04\x04\x05\x04\x04", // 憠
+ 0x61a1: "\x04\x04\x02\x03\x01\x04\x03\x01\x04\x01\x02\x05\x02\x03\x04", // 憡
+ 0x61a2: "\x04\x04\x02\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 憢
+ 0x61a3: "\x04\x04\x02\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 憣
+ 0x61a4: "\x04\x04\x02\x01\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 憤
+ 0x61a5: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x05\x03\x04\x05\x04\x04", // 憥
+ 0x61a6: "\x04\x04\x02\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x05\x03", // 憦
+ 0x61a7: "\x04\x04\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 憧
+ 0x61a8: "\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04\x04\x05\x04\x04", // 憨
+ 0x61a9: "\x03\x01\x02\x02\x05\x01\x03\x02\x05\x01\x01\x01\x04\x05\x04\x04", // 憩
+ 0x61aa: "\x04\x04\x02\x02\x05\x01\x01\x02\x05\x01\x01\x03\x05\x01\x01", // 憪
+ 0x61ab: "\x04\x04\x02\x02\x05\x01\x01\x02\x05\x01\x01\x04\x01\x03\x04", // 憫
+ 0x61ac: "\x04\x04\x02\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x03\x04", // 憬
+ 0x61ad: "\x04\x04\x02\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 憭
+ 0x61ae: "\x04\x04\x02\x03\x01\x01\x02\x02\x02\x02\x01\x04\x04\x04\x04", // 憮
+ 0x61af: "\x04\x04\x02\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x01", // 憯
+ 0x61b0: "\x04\x04\x02\x05\x04\x05\x02\x03\x02\x05\x03\x04\x02\x05\x01", // 憰
+ 0x61b1: "\x04\x04\x02\x04\x01\x02\x05\x01\x02\x03\x04\x01\x03\x05\x04", // 憱
+ 0x61b2: "\x04\x04\x05\x01\x01\x01\x02\x02\x05\x02\x02\x01\x04\x05\x04\x04", // 憲
+ 0x61b3: "\x04\x04\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04", // 憳
+ 0x61b4: "\x04\x04\x02\x02\x05\x01\x01\x02\x05\x01\x02\x01\x01\x05\x01\x01", // 憴
+ 0x61b5: "\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x04\x05\x04\x04", // 憵
+ 0x61b6: "\x04\x04\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 憶
+ 0x61b7: "\x04\x04\x02\x01\x02\x03\x04\x01\x02\x03\x04\x05\x02\x01\x03\x04", // 憷
+ 0x61b8: "\x04\x04\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 憸
+ 0x61b9: "\x04\x04\x02\x02\x05\x01\x02\x02\x01\x01\x03\x01\x01\x05\x03\x04", // 憹
+ 0x61ba: "\x04\x04\x02\x03\x05\x01\x03\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 憺
+ 0x61bb: "\x04\x04\x02\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 憻
+ 0x61bc: "\x01\x02\x02\x03\x05\x02\x05\x01\x03\x01\x03\x04\x04\x05\x04\x04", // 憼
+ 0x61bd: "\x04\x04\x02\x01\x02\x02\x03\x05\x03\x03\x04\x04\x05\x04\x04", // 憽
+ 0x61be: "\x04\x04\x02\x01\x03\x01\x02\x05\x01\x05\x03\x04\x04\x05\x04\x04", // 憾
+ 0x61bf: "\x04\x04\x02\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x03\x04", // 憿
+ 0x61c0: "\x04\x04\x02\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 懀
+ 0x61c1: "\x04\x04\x02\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 懁
+ 0x61c2: "\x04\x04\x02\x01\x02\x02\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 懂
+ 0x61c3: "\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01\x05\x03\x04\x05\x04\x04", // 懃
+ 0x61c4: "\x04\x04\x02\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01\x05\x03", // 懄
+ 0x61c5: "\x04\x04\x02\x02\x01\x05\x03\x01\x05\x01\x03\x05\x03\x03\x03\x04", // 懅
+ 0x61c6: "\x04\x04\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 懆
+ 0x61c7: "\x03\x04\x04\x03\x05\x03\x03\x05\x01\x01\x05\x03\x04\x04\x05\x04\x04", // 懇
+ 0x61c8: "\x04\x04\x02\x03\x05\x03\x05\x01\x01\x02\x05\x03\x03\x01\x01\x02", // 懈
+ 0x61c9: "\x04\x01\x03\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01\x04\x05\x04\x04", // 應
+ 0x61ca: "\x04\x04\x02\x03\x02\x05\x04\x03\x01\x02\x03\x04\x01\x03\x04", // 懊
+ 0x61cb: "\x01\x02\x03\x04\x05\x04\x05\x02\x03\x01\x02\x03\x04\x04\x05\x04\x04", // 懋
+ 0x61cc: "\x04\x04\x02\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 懌
+ 0x61cd: "\x04\x04\x02\x04\x01\x02\x05\x02\x05\x01\x01\x03\x01\x02\x03\x04", // 懍
+ 0x61ce: "\x04\x04\x02\x01\x02\x03\x04\x03\x04\x01\x02\x05\x02\x05\x01\x01", // 懎
+ 0x61cf: "\x04\x04\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x02\x05", // 懏
+ 0x61d0: "\x04\x04\x02\x04\x01\x02\x05\x02\x02\x01\x04\x01\x03\x05\x03\x04", // 懐
+ 0x61d1: "\x04\x04\x01\x01\x02\x02\x01\x02\x05\x03\x04\x03\x04\x04\x05\x04\x04", // 懑
+ 0x61d2: "\x04\x04\x02\x01\x02\x05\x01\x02\x03\x04\x03\x05\x02\x05\x03\x04", // 懒
+ 0x61d3: "\x04\x04\x02\x03\x04\x04\x03\x04\x05\x04\x05\x04\x04\x03\x05\x04", // 懓
+ 0x61d4: "\x04\x04\x02\x04\x01\x02\x05\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 懔
+ 0x61d5: "\x01\x03\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x04\x04\x04\x05\x04\x04", // 懕
+ 0x61d6: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x02\x02\x05\x01\x04\x05\x04\x04", // 懖
+ 0x61d7: "\x04\x04\x02\x01\x02\x01\x03\x02\x03\x04\x01\x02\x01\x03\x02\x03\x04", // 懗
+ 0x61d8: "\x04\x04\x01\x01\x03\x02\x02\x01\x05\x04\x05\x02\x05\x02\x04\x05\x04\x04", // 懘
+ 0x61d9: "\x04\x04\x02\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 懙
+ 0x61da: "\x04\x04\x02\x03\x04\x04\x03\x01\x02\x01\x05\x01\x01\x04\x05\x04\x04", // 懚
+ 0x61db: "\x04\x04\x02\x01\x02\x01\x02\x05\x01\x04\x05\x01\x05\x04\x01\x02\x01", // 懛
+ 0x61dc: "\x04\x04\x02\x01\x02\x02\x02\x05\x02\x02\x01\x04\x05\x03\x05\x04", // 懜
+ 0x61dd: "\x04\x04\x02\x03\x05\x03\x01\x01\x03\x04\x05\x04\x05\x02\x01\x03\x04", // 懝
+ 0x61de: "\x04\x04\x02\x01\x02\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 懞
+ 0x61df: "\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x01\x02\x04\x04\x05\x04\x04", // 懟
+ 0x61e0: "\x04\x04\x02\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01", // 懠
+ 0x61e1: "\x04\x04\x02\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x03\x05\x04", // 懡
+ 0x61e2: "\x04\x04\x02\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01", // 懢
+ 0x61e3: "\x04\x04\x01\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04\x04\x05\x04\x04", // 懣
+ 0x61e4: "\x04\x04\x02\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 懤
+ 0x61e5: "\x04\x04\x02\x01\x02\x04\x05\x02\x05\x01\x02\x01\x05\x02\x01\x03\x04", // 懥
+ 0x61e6: "\x04\x04\x02\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02", // 懦
+ 0x61e7: "\x04\x04\x02\x04\x04\x05\x04\x05\x04\x04\x02\x05\x02\x02\x01\x01\x02", // 懧
+ 0x61e8: "\x04\x04\x02\x01\x03\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x04\x04", // 懨
+ 0x61e9: "\x04\x04\x02\x04\x03\x01\x01\x01\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 懩
+ 0x61ea: "\x04\x04\x02\x02\x05\x01\x01\x01\x02\x02\x01\x03\x04\x02\x04\x01\x03\x04", // 懪
+ 0x61eb: "\x04\x04\x02\x03\x03\x01\x02\x03\x03\x01\x02\x02\x05\x01\x01\x01\x03\x04", // 懫
+ 0x61ec: "\x04\x01\x03\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04\x04\x05\x04\x04", // 懬
+ 0x61ed: "\x04\x04\x02\x04\x01\x03\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 懭
+ 0x61ee: "\x04\x04\x02\x01\x03\x02\x05\x01\x01\x04\x05\x04\x05\x04\x04\x03\x05\x04", // 懮
+ 0x61ef: "\x01\x02\x05\x01\x01\x02\x04\x04\x01\x05\x03\x03\x01\x03\x04\x04\x05\x04\x04", // 懯
+ 0x61f0: "\x04\x04\x02\x03\x05\x04\x05\x03\x03\x04\x01\x01\x02\x04\x03\x01\x02\x02", // 懰
+ 0x61f1: "\x04\x04\x02\x01\x02\x02\x02\x05\x02\x02\x01\x01\x03\x04\x05\x03\x04", // 懱
+ 0x61f2: "\x03\x03\x02\x02\x05\x02\x01\x01\x01\x02\x01\x03\x01\x03\x04\x04\x05\x04\x04", // 懲
+ 0x61f3: "\x04\x04\x02\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 懳
+ 0x61f4: "\x04\x04\x02\x01\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 懴
+ 0x61f5: "\x04\x04\x02\x01\x02\x02\x02\x05\x02\x02\x01\x04\x05\x02\x05\x01\x01\x01", // 懵
+ 0x61f6: "\x04\x04\x02\x01\x02\x05\x01\x02\x03\x04\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 懶
+ 0x61f7: "\x04\x04\x02\x04\x01\x02\x05\x02\x02\x01\x02\x04\x01\x03\x04\x03\x05\x03\x04", // 懷
+ 0x61f8: "\x02\x05\x01\x01\x01\x01\x02\x03\x04\x03\x05\x05\x04\x02\x03\x04\x04\x05\x04\x04", // 懸
+ 0x61f9: "\x04\x04\x02\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 懹
+ 0x61fa: "\x04\x04\x02\x03\x04\x03\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 懺
+ 0x61fb: "\x04\x04\x02\x02\x01\x01\x03\x05\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 懻
+ 0x61fc: "\x04\x04\x02\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 懼
+ 0x61fd: "\x04\x04\x02\x01\x02\x02\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 懽
+ 0x61fe: "\x04\x04\x02\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01", // 懾
+ 0x61ff: "\x01\x02\x01\x04\x05\x01\x02\x05\x01\x04\x03\x01\x04\x01\x03\x05\x03\x04\x04\x05\x04\x04", // 懿
+ 0x6200: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x04\x05\x04\x04", // 戀
+ 0x6201: "\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x04\x05\x04\x04", // 戁
+ 0x6202: "\x04\x04\x02\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01", // 戂
+ 0x6203: "\x04\x04\x02\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 戃
+ 0x6204: "\x04\x04\x02\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 戄
+ 0x6205: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04\x04", // 戅
+ 0x6206: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x03\x05\x04\x01\x02\x01\x02\x05\x03\x04\x04\x05\x04\x04", // 戆
+ 0x6207: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x03\x05\x04\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04\x04", // 戇
+ 0x6208: "\x01\x05\x03\x04", // 戈
+ 0x6209: "\x01\x05\x05\x03\x04", // 戉
+ 0x620a: "\x01\x03\x05\x03\x04", // 戊
+ 0x620b: "\x01\x01\x05\x03\x04", // 戋
+ 0x620c: "\x01\x03\x01\x05\x03\x04", // 戌
+ 0x620d: "\x01\x03\x04\x05\x03\x04", // 戍
+ 0x620e: "\x01\x01\x03\x05\x03\x04", // 戎
+ 0x620f: "\x05\x04\x01\x05\x03\x04", // 戏
+ 0x6210: "\x01\x03\x05\x05\x03\x04", // 成
+ 0x6211: "\x03\x01\x02\x01\x05\x03\x04", // 我
+ 0x6212: "\x01\x01\x03\x02\x05\x03\x04", // 戒
+ 0x6213: "\x01\x02\x05\x01\x05\x03\x04", // 戓
+ 0x6214: "\x01\x05\x03\x04\x01\x05\x03\x04", // 戔
+ 0x6215: "\x05\x02\x01\x03\x01\x05\x03\x04", // 戕
+ 0x6216: "\x01\x02\x05\x01\x01\x05\x03\x04", // 或
+ 0x6217: "\x03\x04\x05\x05\x01\x05\x03\x04", // 戗
+ 0x6218: "\x02\x01\x02\x05\x01\x01\x05\x03\x04", // 战
+ 0x6219: "\x02\x05\x01\x02\x05\x01\x01\x05\x03\x04", // 戙
+ 0x621a: "\x01\x03\x02\x01\x01\x02\x03\x04\x05\x03\x04", // 戚
+ 0x621b: "\x01\x03\x02\x05\x01\x01\x01\x01\x05\x03\x04", // 戛
+ 0x621c: "\x01\x02\x05\x01\x01\x01\x02\x01\x05\x03\x04", // 戜
+ 0x621d: "\x02\x05\x01\x01\x01\x03\x04\x01\x05\x03\x04", // 戝
+ 0x621e: "\x01\x03\x02\x05\x01\x01\x04\x05\x01\x05\x03\x04", // 戞
+ 0x621f: "\x01\x02\x02\x05\x01\x01\x01\x02\x01\x05\x03\x04", // 戟
+ 0x6220: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05\x03\x04", // 戠
+ 0x6221: "\x01\x02\x02\x01\x01\x01\x03\x04\x05\x01\x05\x03\x04", // 戡
+ 0x6222: "\x02\x05\x01\x01\x02\x02\x01\x01\x01\x05\x03\x04", // 戢
+ 0x6223: "\x05\x04\x03\x03\x04\x01\x01\x03\x04\x01\x05\x03\x04", // 戣
+ 0x6224: "\x05\x03\x05\x04\x02\x05\x02\x02\x01\x01\x05\x03\x04", // 戤
+ 0x6225: "\x02\x05\x01\x01\x03\x01\x01\x02\x01\x01\x05\x03\x04", // 戥
+ 0x6226: "\x04\x04\x03\x02\x05\x01\x01\x01\x02\x01\x05\x03\x04", // 戦
+ 0x6227: "\x03\x04\x04\x05\x01\x01\x03\x02\x05\x01\x01\x05\x03\x04", // 戧
+ 0x6228: "\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x05\x03\x04", // 戨
+ 0x6229: "\x01\x05\x04\x05\x04\x01\x02\x05\x01\x01\x01\x05\x03\x04", // 戩
+ 0x622a: "\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03\x04", // 截
+ 0x622b: "\x01\x03\x02\x05\x01\x01\x01\x02\x05\x01\x01\x05\x03\x04", // 戫
+ 0x622c: "\x01\x02\x02\x04\x03\x01\x02\x05\x01\x01\x01\x05\x03\x04", // 戬
+ 0x622d: "\x04\x04\x05\x01\x02\x05\x01\x02\x01\x03\x04\x01\x05\x03\x04", // 戭
+ 0x622e: "\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03\x01\x05\x03\x04", // 戮
+ 0x622f: "\x02\x01\x05\x03\x01\x05\x02\x02\x04\x03\x01\x01\x05\x03\x04", // 戯
+ 0x6230: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x01\x05\x03\x04", // 戰
+ 0x6231: "\x02\x01\x05\x03\x01\x05\x02\x02\x05\x02\x01\x01\x01\x05\x03\x04", // 戱
+ 0x6232: "\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x04\x03\x01\x01\x05\x03\x04", // 戲
+ 0x6233: "\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01\x01\x05\x03\x04", // 戳
+ 0x6234: "\x01\x02\x01\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04\x05\x03\x04", // 戴
+ 0x6235: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x01\x05\x03\x04", // 戵
+ 0x6236: "\x03\x05\x01\x03", // 戶
+ 0x6237: "\x04\x05\x01\x03", // 户
+ 0x6238: "\x01\x05\x01\x03", // 戸
+ 0x6239: "\x04\x05\x01\x03\x05", // 戹
+ 0x623a: "\x04\x05\x01\x03\x05\x01\x05", // 戺
+ 0x623b: "\x04\x05\x01\x03\x01\x03\x04", // 戻
+ 0x623c: "\x05\x01\x05\x01\x02\x05\x01", // 戼
+ 0x623d: "\x04\x05\x01\x03\x04\x04\x01\x02", // 戽
+ 0x623e: "\x04\x05\x01\x03\x01\x03\x04\x04", // 戾
+ 0x623f: "\x04\x05\x01\x03\x04\x01\x05\x03", // 房
+ 0x6240: "\x03\x03\x05\x01\x03\x03\x01\x02", // 所
+ 0x6241: "\x04\x05\x01\x03\x02\x05\x01\x02\x02", // 扁
+ 0x6242: "\x04\x05\x01\x03\x02\x01\x02\x05\x01", // 扂
+ 0x6243: "\x04\x05\x01\x03\x02\x05\x02\x05\x01", // 扃
+ 0x6244: "\x04\x05\x01\x03\x03\x02\x05\x02\x05\x01", // 扄
+ 0x6245: "\x04\x05\x01\x03\x03\x05\x04\x03\x05\x04", // 扅
+ 0x6246: "\x04\x05\x01\x03\x04\x01\x03\x05\x03\x04", // 扆
+ 0x6247: "\x04\x05\x01\x03\x05\x04\x01\x05\x04\x01", // 扇
+ 0x6248: "\x04\x05\x01\x03\x02\x05\x01\x05\x02\x01\x05", // 扈
+ 0x6249: "\x04\x05\x01\x03\x02\x01\x01\x01\x02\x01\x01\x01", // 扉
+ 0x624a: "\x04\x05\x01\x03\x04\x03\x03\x04\x04\x03\x03\x04", // 扊
+ 0x624b: "\x03\x01\x01\x02", // 手
+ 0x624c: "\x01\x02\x01", // 扌
+ 0x624d: "\x01\x02\x03", // 才
+ 0x624e: "\x01\x02\x01\x05", // 扎
+ 0x624f: "\x01\x02\x01\x03\x05", // 扏
+ 0x6250: "\x01\x02\x01\x05\x03", // 扐
+ 0x6251: "\x01\x02\x01\x02\x04", // 扑
+ 0x6252: "\x01\x02\x01\x03\x04", // 扒
+ 0x6253: "\x01\x02\x01\x01\x02", // 打
+ 0x6254: "\x01\x02\x01\x05\x03", // 扔
+ 0x6255: "\x01\x02\x01\x05\x04", // 払
+ 0x6256: "\x01\x02\x01\x03\x04", // 扖
+ 0x6257: "\x01\x02\x01\x01\x02\x01", // 扗
+ 0x6258: "\x01\x02\x01\x03\x01\x05", // 托
+ 0x6259: "\x01\x02\x01\x01\x03\x04", // 扙
+ 0x625a: "\x01\x02\x01\x03\x05\x04", // 扚
+ 0x625b: "\x01\x02\x01\x01\x02\x01", // 扛
+ 0x625c: "\x01\x02\x01\x01\x01\x02", // 扜
+ 0x625d: "\x01\x02\x01\x01\x01\x05", // 扝
+ 0x625e: "\x01\x02\x01\x01\x01\x02", // 扞
+ 0x625f: "\x01\x02\x01\x05\x01\x02", // 扟
+ 0x6260: "\x01\x02\x01\x05\x04\x04", // 扠
+ 0x6261: "\x01\x02\x01\x05\x02\x05", // 扡
+ 0x6262: "\x01\x02\x01\x03\x01\x05", // 扢
+ 0x6263: "\x01\x02\x01\x02\x05\x01", // 扣
+ 0x6264: "\x01\x02\x01\x01\x03\x05", // 扤
+ 0x6265: "\x01\x02\x01\x03\x01\x05", // 扥
+ 0x6266: "\x01\x02\x01\x03\x01\x02", // 扦
+ 0x6267: "\x01\x02\x01\x03\x05\x04", // 执
+ 0x6268: "\x01\x02\x01\x05\x03\x04", // 扨
+ 0x6269: "\x01\x02\x01\x04\x01\x03", // 扩
+ 0x626a: "\x01\x02\x01\x04\x02\x05", // 扪
+ 0x626b: "\x01\x02\x01\x05\x01\x01", // 扫
+ 0x626c: "\x01\x02\x01\x05\x03\x03", // 扬
+ 0x626d: "\x01\x02\x01\x05\x02\x01\x01", // 扭
+ 0x626e: "\x01\x02\x01\x03\x04\x05\x03", // 扮
+ 0x626f: "\x01\x02\x01\x02\x01\x02\x01", // 扯
+ 0x6270: "\x01\x02\x01\x01\x03\x05\x04", // 扰
+ 0x6271: "\x01\x02\x01\x03\x05\x04", // 扱
+ 0x6272: "\x01\x02\x01\x03\x04\x04\x05", // 扲
+ 0x6273: "\x01\x02\x01\x03\x03\x05\x04", // 扳
+ 0x6274: "\x01\x02\x01\x03\x04\x03\x02", // 扴
+ 0x6275: "\x01\x02\x01\x03\x04\x04\x04", // 扵
+ 0x6276: "\x01\x02\x01\x01\x01\x03\x04", // 扶
+ 0x6277: "\x01\x02\x01\x03\x01\x03\x04", // 扷
+ 0x6278: "\x01\x02\x01\x03\x02\x01\x05", // 扸
+ 0x6279: "\x01\x02\x01\x01\x05\x03\x05", // 批
+ 0x627a: "\x01\x02\x01\x03\x05\x01\x05", // 扺
+ 0x627b: "\x01\x02\x01\x03\x05\x03\x04", // 扻
+ 0x627c: "\x01\x02\x01\x01\x03\x05\x05", // 扼
+ 0x627d: "\x01\x02\x01\x01\x05\x02\x05", // 扽
+ 0x627e: "\x01\x02\x01\x01\x05\x03\x04", // 找
+ 0x627f: "\x05\x02\x01\x01\x01\x05\x03\x04", // 承
+ 0x6280: "\x01\x02\x01\x01\x02\x05\x04", // 技
+ 0x6281: "\x01\x02\x01\x05\x04\x03\x05", // 抁
+ 0x6282: "\x01\x02\x01\x01\x01\x02\x01", // 抂
+ 0x6283: "\x01\x02\x01\x04\x01\x02\x04", // 抃
+ 0x6284: "\x01\x02\x01\x02\x03\x04\x03", // 抄
+ 0x6285: "\x01\x02\x01\x03\x05\x05\x04", // 抅
+ 0x6286: "\x01\x02\x01\x04\x01\x03\x04", // 抆
+ 0x6287: "\x01\x02\x01\x02\x05\x01\x01", // 抇
+ 0x6288: "\x01\x02\x01\x03\x05\x01\x01", // 抈
+ 0x6289: "\x01\x02\x01\x05\x01\x03\x04", // 抉
+ 0x628a: "\x01\x02\x01\x05\x02\x01\x05", // 把
+ 0x628b: "\x01\x02\x01\x04\x05\x04\x04", // 抋
+ 0x628c: "\x01\x02\x01\x04\x05\x03\x05", // 抌
+ 0x628d: "\x01\x02\x01\x03\x01\x03\x02", // 抍
+ 0x628e: "\x01\x02\x01\x01\x01\x05\x04", // 抎
+ 0x628f: "\x01\x02\x01\x01\x01\x03\x05", // 抏
+ 0x6290: "\x01\x02\x01\x02\x05\x03\x04", // 抐
+ 0x6291: "\x01\x02\x01\x03\x05\x05\x02", // 抑
+ 0x6292: "\x01\x02\x01\x05\x04\x05\x02", // 抒
+ 0x6293: "\x01\x02\x01\x03\x03\x02\x04", // 抓
+ 0x6294: "\x01\x02\x01\x01\x03\x02\x04", // 抔
+ 0x6295: "\x01\x02\x01\x03\x05\x05\x04", // 投
+ 0x6296: "\x01\x02\x01\x04\x04\x01\x02", // 抖
+ 0x6297: "\x01\x02\x01\x04\x01\x03\x05", // 抗
+ 0x6298: "\x01\x02\x01\x03\x03\x01\x02", // 折
+ 0x6299: "\x01\x02\x01\x03\x01\x01\x02", // 抙
+ 0x629a: "\x01\x02\x01\x01\x01\x03\x05", // 抚
+ 0x629b: "\x01\x02\x01\x03\x05\x05\x03", // 抛
+ 0x629c: "\x01\x02\x01\x01\x03\x05\x04", // 抜
+ 0x629d: "\x01\x02\x01\x05\x05\x04\x05", // 抝
+ 0x629e: "\x01\x02\x01\x05\x01\x03\x04", // 択
+ 0x629f: "\x01\x02\x01\x01\x01\x05\x04", // 抟
+ 0x62a0: "\x01\x02\x01\x01\x03\x04\x05", // 抠
+ 0x62a1: "\x01\x02\x01\x03\x04\x03\x05", // 抡
+ 0x62a2: "\x01\x02\x01\x03\x04\x05\x05", // 抢
+ 0x62a3: "\x01\x02\x01\x03\x05\x04\x01", // 抣
+ 0x62a4: "\x01\x02\x01\x04\x05\x01\x03", // 护
+ 0x62a5: "\x01\x02\x01\x05\x02\x05\x04", // 报
+ 0x62a6: "\x01\x02\x01\x01\x02\x05\x03\x04", // 抦
+ 0x62a7: "\x01\x02\x01\x02\x05\x01\x03\x04", // 抧
+ 0x62a8: "\x01\x02\x01\x01\x04\x03\x01\x02", // 抨
+ 0x62a9: "\x01\x02\x01\x02\x05\x02\x01\x01", // 抩
+ 0x62aa: "\x01\x02\x01\x01\x03\x02\x05\x02", // 抪
+ 0x62ab: "\x01\x02\x01\x05\x03\x02\x05\x04", // 披
+ 0x62ac: "\x01\x02\x01\x05\x04\x02\x05\x01", // 抬
+ 0x62ad: "\x01\x02\x01\x04\x04\x05\x03\x05", // 抭
+ 0x62ae: "\x01\x02\x01\x03\x04\x03\x03\x03", // 抮
+ 0x62af: "\x01\x02\x01\x02\x05\x01\x01\x01", // 抯
+ 0x62b0: "\x01\x02\x01\x02\x05\x01\x03\x04", // 抰
+ 0x62b1: "\x01\x02\x01\x03\x05\x05\x01\x05", // 抱
+ 0x62b2: "\x01\x02\x01\x01\x02\x05\x01\x02", // 抲
+ 0x62b3: "\x01\x02\x01\x05\x01\x03\x03\x05", // 抳
+ 0x62b4: "\x01\x02\x01\x01\x02\x02\x01\x05", // 抴
+ 0x62b5: "\x01\x02\x01\x03\x05\x01\x05\x04", // 抵
+ 0x62b6: "\x01\x02\x01\x03\x01\x01\x03\x04", // 抶
+ 0x62b7: "\x01\x02\x01\x01\x03\x02\x04\x01", // 抷
+ 0x62b8: "\x01\x02\x01\x03\x04\x05\x04", // 抸
+ 0x62b9: "\x01\x02\x01\x01\x01\x02\x03\x04", // 抹
+ 0x62ba: "\x01\x02\x01\x01\x01\x02\x03\x04", // 抺
+ 0x62bb: "\x01\x02\x01\x02\x05\x01\x01\x02", // 抻
+ 0x62bc: "\x01\x02\x01\x02\x05\x01\x01\x02", // 押
+ 0x62bd: "\x01\x02\x01\x02\x05\x01\x02\x01", // 抽
+ 0x62be: "\x01\x02\x01\x01\x02\x01\x05\x04", // 抾
+ 0x62bf: "\x01\x02\x01\x05\x01\x05\x01\x05", // 抿
+ 0x62c0: "\x01\x02\x01\x02\x05\x01\x03\x05", // 拀
+ 0x62c1: "\x01\x02\x01\x05\x03\x02\x05\x01", // 拁
+ 0x62c2: "\x01\x02\x01\x05\x01\x05\x03\x02", // 拂
+ 0x62c3: "\x01\x02\x01\x03\x01\x02\x01\x01", // 拃
+ 0x62c4: "\x01\x02\x01\x04\x01\x01\x02\x01", // 拄
+ 0x62c5: "\x01\x02\x01\x02\x05\x01\x01\x01", // 担
+ 0x62c6: "\x01\x02\x01\x03\x03\x01\x02\x04", // 拆
+ 0x62c7: "\x01\x02\x01\x05\x05\x04\x01\x04", // 拇
+ 0x62c8: "\x01\x02\x01\x02\x01\x02\x05\x01", // 拈
+ 0x62c9: "\x01\x02\x01\x04\x01\x04\x03\x01", // 拉
+ 0x62ca: "\x01\x02\x01\x03\x02\x01\x02\x04", // 拊
+ 0x62cb: "\x01\x02\x01\x01\x03\x05\x05\x03", // 拋
+ 0x62cc: "\x01\x02\x01\x04\x03\x01\x01\x02", // 拌
+ 0x62cd: "\x01\x02\x01\x03\x02\x05\x01\x01", // 拍
+ 0x62ce: "\x01\x02\x01\x03\x04\x04\x05\x04", // 拎
+ 0x62cf: "\x05\x03\x01\x05\x04\x03\x01\x01\x02", // 拏
+ 0x62d0: "\x01\x02\x01\x02\x05\x01\x05\x03", // 拐
+ 0x62d1: "\x01\x02\x01\x01\x02\x02\x01\x01", // 拑
+ 0x62d2: "\x01\x02\x01\x01\x05\x01\x05", // 拒
+ 0x62d3: "\x01\x02\x01\x01\x03\x02\x05\x01", // 拓
+ 0x62d4: "\x01\x02\x01\x01\x03\x05\x04\x04", // 拔
+ 0x62d5: "\x01\x02\x01\x04\x04\x05\x03\x05", // 拕
+ 0x62d6: "\x01\x02\x01\x03\x01\x05\x02\x05", // 拖
+ 0x62d7: "\x01\x02\x01\x05\x05\x04\x05\x03", // 拗
+ 0x62d8: "\x01\x02\x01\x03\x05\x02\x05\x01", // 拘
+ 0x62d9: "\x01\x02\x01\x05\x02\x02\x05\x02", // 拙
+ 0x62da: "\x01\x02\x01\x05\x04\x01\x03\x02", // 拚
+ 0x62db: "\x01\x02\x01\x05\x03\x02\x05\x01", // 招
+ 0x62dc: "\x03\x01\x01\x03\x01\x01\x01\x01\x02", // 拜
+ 0x62dd: "\x01\x02\x01\x01\x01\x01\x01\x02", // 拝
+ 0x62de: "\x01\x02\x01\x03\x02\x01\x02\x01", // 拞
+ 0x62df: "\x01\x02\x01\x05\x04\x03\x04", // 拟
+ 0x62e0: "\x01\x02\x01\x03\x05\x04\x03\x05", // 拠
+ 0x62e1: "\x01\x02\x01\x04\x01\x03\x05\x04", // 拡
+ 0x62e2: "\x01\x02\x01\x01\x03\x05\x03\x04", // 拢
+ 0x62e3: "\x01\x02\x01\x01\x05\x05\x03\x04", // 拣
+ 0x62e4: "\x01\x02\x01\x02\x01\x01\x02\x04", // 拤
+ 0x62e5: "\x01\x02\x01\x03\x05\x01\x01\x02", // 拥
+ 0x62e6: "\x01\x02\x01\x04\x03\x01\x01\x01", // 拦
+ 0x62e7: "\x01\x02\x01\x04\x04\x05\x01\x02", // 拧
+ 0x62e8: "\x01\x02\x01\x05\x03\x05\x04\x04", // 拨
+ 0x62e9: "\x01\x02\x01\x05\x04\x01\x01\x02", // 择
+ 0x62ea: "\x01\x02\x01\x01\x02\x05\x03\x05\x01", // 拪
+ 0x62eb: "\x01\x02\x01\x05\x01\x01\x05\x03\x04", // 拫
+ 0x62ec: "\x01\x02\x01\x03\x01\x02\x02\x05\x01", // 括
+ 0x62ed: "\x01\x02\x01\x01\x01\x02\x01\x05\x04", // 拭
+ 0x62ee: "\x01\x02\x01\x01\x02\x01\x02\x05\x01", // 拮
+ 0x62ef: "\x01\x02\x01\x05\x02\x05\x03\x04\x01", // 拯
+ 0x62f0: "\x01\x02\x01\x03\x02\x03\x01\x02\x01", // 拰
+ 0x62f1: "\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 拱
+ 0x62f2: "\x01\x02\x02\x01\x03\x04\x03\x01\x01\x02", // 拲
+ 0x62f3: "\x04\x03\x01\x01\x03\x04\x03\x01\x01\x02", // 拳
+ 0x62f4: "\x01\x02\x01\x03\x04\x01\x01\x02\x01", // 拴
+ 0x62f5: "\x01\x02\x01\x01\x03\x02\x05\x02\x01", // 拵
+ 0x62f6: "\x01\x02\x01\x05\x05\x05\x03\x05\x04", // 拶
+ 0x62f7: "\x01\x02\x01\x01\x02\x01\x03\x01\x05", // 拷
+ 0x62f8: "\x01\x02\x01\x03\x05\x04\x03\x05\x04", // 拸
+ 0x62f9: "\x01\x02\x01\x05\x03\x05\x03\x05\x03", // 拹
+ 0x62fa: "\x01\x02\x01\x01\x02\x05\x02\x03\x04", // 拺
+ 0x62fb: "\x01\x02\x01\x01\x03\x04\x03\x03\x04", // 拻
+ 0x62fc: "\x01\x02\x01\x04\x03\x01\x01\x03\x02", // 拼
+ 0x62fd: "\x01\x02\x01\x02\x05\x01\x01\x05\x03", // 拽
+ 0x62fe: "\x01\x02\x01\x03\x04\x01\x02\x05\x01", // 拾
+ 0x62ff: "\x03\x04\x01\x02\x05\x01\x03\x01\x01\x02", // 拿
+ 0x6300: "\x01\x02\x01\x03\x03\x03\x05\x03\x04", // 挀
+ 0x6301: "\x01\x02\x01\x01\x02\x01\x01\x02\x04", // 持
+ 0x6302: "\x01\x02\x01\x01\x02\x01\x01\x02\x01", // 挂
+ 0x6303: "\x01\x02\x01\x01\x05\x04\x01\x02\x01", // 挃
+ 0x6304: "\x01\x02\x01\x02\x04\x03\x01\x03\x05", // 挄
+ 0x6305: "\x01\x02\x01\x05\x03\x01\x02\x03\x04", // 挅
+ 0x6306: "\x01\x02\x01\x03\x05\x01\x02\x03\x04", // 挆
+ 0x6307: "\x01\x02\x01\x03\x05\x02\x05\x01\x01", // 指
+ 0x6308: "\x01\x01\x01\x02\x05\x03\x03\x01\x01\x02", // 挈
+ 0x6309: "\x01\x02\x01\x04\x04\x05\x05\x03\x01", // 按
+ 0x630a: "\x01\x02\x01\x02\x01\x01\x01\x02\x04", // 挊
+ 0x630b: "\x01\x02\x01\x01\x02\x05\x01\x02\x05", // 挋
+ 0x630c: "\x01\x02\x01\x03\x05\x04\x02\x05\x01", // 挌
+ 0x630d: "\x01\x02\x01\x04\x01\x03\x04\x03\x04", // 挍
+ 0x630e: "\x01\x02\x01\x01\x03\x04\x01\x01\x05", // 挎
+ 0x630f: "\x01\x02\x01\x02\x05\x01\x02\x05\x01", // 挏
+ 0x6310: "\x05\x03\x01\x02\x05\x01\x03\x01\x01\x02", // 挐
+ 0x6311: "\x01\x02\x01\x03\x04\x01\x05\x03\x04", // 挑
+ 0x6312: "\x01\x02\x01\x01\x03\x05\x04\x02\x02", // 挒
+ 0x6313: "\x01\x02\x01\x04\x04\x05\x03\x01\x05", // 挓
+ 0x6314: "\x01\x02\x01\x04\x01\x03\x05\x03\x04", // 挔
+ 0x6315: "\x01\x02\x01\x01\x02\x02\x01\x01\x01", // 挕
+ 0x6316: "\x01\x02\x01\x04\x04\x05\x03\x04\x05", // 挖
+ 0x6317: "\x01\x02\x01\x01\x05\x01\x05\x03\x04", // 挗
+ 0x6318: "\x01\x02\x01\x02\x03\x04\x03\x05\x03", // 挘
+ 0x6319: "\x04\x04\x03\x01\x03\x04\x03\x01\x01\x02", // 挙
+ 0x631a: "\x01\x02\x01\x03\x05\x04\x03\x01\x01\x02", // 挚
+ 0x631b: "\x04\x01\x02\x02\x03\x04\x03\x01\x01\x02", // 挛
+ 0x631c: "\x01\x02\x01\x01\x02\x02\x04\x03\x01", // 挜
+ 0x631d: "\x01\x02\x01\x01\x02\x04\x04\x05\x04", // 挝
+ 0x631e: "\x01\x02\x01\x01\x03\x04\x04\x05\x04", // 挞
+ 0x631f: "\x01\x02\x01\x01\x04\x03\x01\x03\x04", // 挟
+ 0x6320: "\x01\x02\x01\x01\x05\x03\x01\x03\x05", // 挠
+ 0x6321: "\x01\x02\x01\x02\x04\x03\x05\x01\x01", // 挡
+ 0x6322: "\x01\x02\x01\x03\x01\x03\x04\x03\x02", // 挢
+ 0x6323: "\x01\x02\x01\x03\x05\x05\x01\x01\x02", // 挣
+ 0x6324: "\x01\x02\x01\x04\x01\x03\x04\x03\x02", // 挤
+ 0x6325: "\x01\x02\x01\x04\x05\x01\x05\x01\x02", // 挥
+ 0x6326: "\x01\x02\x01\x05\x01\x01\x01\x02\x04", // 挦
+ 0x6327: "\x01\x02\x01\x05\x04\x01\x05\x04\x01", // 挧
+ 0x6328: "\x01\x02\x01\x05\x04\x03\x01\x01\x03\x04", // 挨
+ 0x6329: "\x01\x02\x01\x03\x04\x02\x05\x01\x03\x05", // 挩
+ 0x632a: "\x01\x02\x01\x05\x01\x01\x03\x05\x02", // 挪
+ 0x632b: "\x01\x02\x01\x03\x04\x03\x04\x01\x02\x01", // 挫
+ 0x632c: "\x01\x02\x01\x01\x02\x04\x05\x05\x02\x01", // 挬
+ 0x632d: "\x01\x02\x01\x01\x02\x05\x01\x01\x03\x04", // 挭
+ 0x632e: "\x01\x02\x01\x04\x03\x05\x01\x05\x02\x03", // 挮
+ 0x632f: "\x01\x02\x01\x01\x03\x01\x01\x05\x03\x04", // 振
+ 0x6330: "\x01\x02\x01\x02\x05\x01\x01\x01\x02\x01", // 挰
+ 0x6331: "\x01\x02\x01\x04\x04\x01\x02\x03\x04\x03", // 挱
+ 0x6332: "\x04\x04\x01\x02\x03\x04\x03\x03\x01\x01\x02", // 挲
+ 0x6333: "\x01\x02\x01\x01\x05\x05\x05\x01\x02\x01", // 挳
+ 0x6334: "\x01\x02\x01\x03\x01\x05\x05\x04\x01\x04", // 挴
+ 0x6335: "\x01\x02\x01\x01\x01\x02\x01\x01\x03\x02", // 挵
+ 0x6336: "\x01\x02\x01\x05\x01\x03\x05\x02\x05\x01", // 挶
+ 0x6337: "\x01\x02\x01\x01\x01\x01\x03\x05\x02", // 挷
+ 0x6338: "\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 挸
+ 0x6339: "\x01\x02\x01\x02\x05\x01\x05\x02\x01\x05", // 挹
+ 0x633a: "\x01\x02\x01\x03\x01\x02\x01\x05\x04", // 挺
+ 0x633b: "\x01\x02\x01\x03\x02\x01\x05\x05\x04", // 挻
+ 0x633c: "\x01\x02\x01\x03\x04\x04\x03\x05\x03\x01", // 挼
+ 0x633d: "\x01\x02\x01\x03\x05\x02\x05\x01\x03\x05", // 挽
+ 0x633e: "\x01\x02\x01\x01\x03\x04\x03\x04\x03\x04", // 挾
+ 0x633f: "\x01\x02\x01\x03\x01\x02\x05\x01\x01\x02", // 挿
+ 0x6340: "\x01\x02\x01\x03\x05\x04\x01\x01\x01\x02", // 捀
+ 0x6341: "\x01\x02\x01\x03\x01\x02\x01\x02\x05\x01", // 捁
+ 0x6342: "\x01\x02\x01\x01\x02\x05\x01\x02\x05\x01", // 捂
+ 0x6343: "\x01\x02\x01\x05\x01\x01\x03\x02\x05\x01", // 捃
+ 0x6344: "\x01\x02\x01\x01\x02\x04\x01\x03\x04\x04", // 捄
+ 0x6345: "\x01\x02\x01\x05\x04\x02\x05\x01\x01\x02", // 捅
+ 0x6346: "\x01\x02\x01\x02\x05\x01\x02\x03\x04\x01", // 捆
+ 0x6347: "\x01\x02\x01\x01\x02\x01\x03\x02\x03\x04", // 捇
+ 0x6348: "\x01\x02\x01\x03\x04\x01\x01\x02\x03\x04", // 捈
+ 0x6349: "\x01\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 捉
+ 0x634a: "\x01\x02\x01\x03\x04\x04\x03\x05\x02\x01", // 捊
+ 0x634b: "\x01\x02\x01\x03\x04\x04\x03\x01\x02\x04", // 捋
+ 0x634c: "\x01\x02\x01\x02\x05\x01\x05\x03\x02\x02", // 捌
+ 0x634d: "\x01\x02\x01\x02\x05\x01\x01\x01\x01\x02", // 捍
+ 0x634e: "\x01\x02\x01\x02\x04\x03\x02\x05\x01\x01", // 捎
+ 0x634f: "\x01\x02\x01\x02\x05\x01\x01\x01\x02\x01", // 捏
+ 0x6350: "\x01\x02\x01\x02\x05\x01\x02\x05\x01\x01", // 捐
+ 0x6351: "\x01\x02\x01\x02\x05\x01\x01\x01\x05\x04", // 捑
+ 0x6352: "\x01\x02\x01\x01\x02\x05\x01\x02\x03\x04", // 捒
+ 0x6353: "\x01\x02\x01\x01\x05\x02\x03\x05\x02", // 捓
+ 0x6354: "\x01\x02\x01\x03\x05\x03\x05\x01\x01\x02", // 捔
+ 0x6355: "\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 捕
+ 0x6356: "\x01\x02\x01\x04\x04\x05\x01\x01\x03\x05", // 捖
+ 0x6357: "\x01\x02\x01\x02\x01\x02\x01\x02\x03\x03", // 捗
+ 0x6358: "\x01\x02\x01\x05\x04\x03\x04\x03\x05\x04", // 捘
+ 0x6359: "\x01\x02\x01\x01\x02\x05\x01\x01\x01\x02", // 捙
+ 0x635a: "\x01\x02\x01\x02\x05\x01\x01\x02\x01\x01", // 捚
+ 0x635b: "\x01\x02\x01\x02\x05\x01\x02\x05\x01", // 捛
+ 0x635c: "\x01\x02\x01\x02\x05\x01\x01\x02\x05\x04", // 捜
+ 0x635d: "\x01\x02\x01\x04\x03\x02\x05\x01\x03\x05", // 捝
+ 0x635e: "\x01\x02\x01\x01\x02\x02\x04\x05\x05\x03", // 捞
+ 0x635f: "\x01\x02\x01\x02\x05\x01\x02\x05\x03\x04", // 损
+ 0x6360: "\x01\x02\x01\x03\x02\x01\x02\x01\x03\x04", // 捠
+ 0x6361: "\x01\x02\x01\x03\x04\x01\x04\x04\x03\x01", // 捡
+ 0x6362: "\x01\x02\x01\x03\x05\x02\x05\x01\x03\x04", // 换
+ 0x6363: "\x01\x02\x01\x03\x05\x04\x05\x02\x05\x02", // 捣
+ 0x6364: "\x01\x02\x01\x05\x01\x03\x03\x01\x01\x05", // 捤
+ 0x6365: "\x01\x02\x01\x04\x04\x05\x03\x05\x04\x05\x05", // 捥
+ 0x6366: "\x01\x02\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 捦
+ 0x6367: "\x01\x02\x01\x01\x01\x01\x03\x04\x01\x01\x02", // 捧
+ 0x6368: "\x01\x02\x01\x03\x04\x01\x01\x02\x02\x05\x01", // 捨
+ 0x6369: "\x01\x02\x01\x04\x05\x01\x03\x01\x03\x04\x04", // 捩
+ 0x636a: "\x01\x02\x01\x03\x05\x01\x05\x02\x05\x01\x01", // 捪
+ 0x636b: "\x01\x02\x01\x02\x05\x01\x01\x02\x05\x01\x01", // 捫
+ 0x636c: "\x01\x02\x01\x04\x01\x03\x03\x02\x01\x02\x04", // 捬
+ 0x636d: "\x01\x02\x01\x03\x02\x05\x01\x01\x03\x01\x02", // 捭
+ 0x636e: "\x01\x02\x01\x05\x01\x03\x01\x02\x02\x05\x01", // 据
+ 0x636f: "\x01\x02\x01\x01\x05\x04\x01\x02\x01\x02\x02", // 捯
+ 0x6370: "\x01\x02\x01\x02\x05\x01\x01\x01\x02\x03\x04", // 捰
+ 0x6371: "\x01\x02\x01\x01\x03\x01\x02\x01\x01\x02\x01", // 捱
+ 0x6372: "\x01\x02\x01\x04\x03\x01\x01\x03\x04\x05\x05", // 捲
+ 0x6373: "\x01\x02\x01\x03\x02\x01\x02\x01\x02\x05\x02", // 捳
+ 0x6374: "\x01\x02\x01\x03\x04\x05\x04\x04\x05\x04\x04", // 捴
+ 0x6375: "\x01\x02\x01\x02\x05\x01\x02\x02\x01\x03\x04", // 捵
+ 0x6376: "\x01\x02\x01\x03\x01\x02\x01\x02\x02\x01\x01", // 捶
+ 0x6377: "\x01\x02\x01\x01\x05\x01\x01\x02\x01\x03\x04", // 捷
+ 0x6378: "\x01\x02\x01\x05\x01\x01\x02\x04\x01\x03\x04", // 捸
+ 0x6379: "\x01\x02\x01\x01\x03\x04\x01\x02\x01\x03\x02", // 捹
+ 0x637a: "\x01\x02\x01\x01\x03\x04\x01\x01\x02\x03\x04", // 捺
+ 0x637b: "\x01\x02\x01\x03\x04\x04\x05\x04\x05\x04\x04", // 捻
+ 0x637c: "\x01\x02\x01\x03\x01\x02\x03\x04\x05\x03\x01", // 捼
+ 0x637d: "\x01\x02\x01\x04\x01\x03\x04\x03\x04\x01\x02", // 捽
+ 0x637e: "\x01\x02\x01\x04\x04\x05\x02\x05\x01\x05\x01", // 捾
+ 0x637f: "\x01\x02\x01\x01\x05\x01\x01\x02\x05\x03\x01", // 捿
+ 0x6380: "\x01\x02\x01\x03\x03\x01\x02\x03\x05\x03\x04", // 掀
+ 0x6381: "\x01\x02\x01\x01\x02\x01\x01\x01\x05\x03\x04", // 掁
+ 0x6382: "\x01\x02\x01\x04\x01\x03\x02\x01\x02\x05\x01", // 掂
+ 0x6383: "\x01\x02\x01\x05\x01\x01\x04\x05\x02\x05\x02", // 掃
+ 0x6384: "\x01\x02\x01\x03\x04\x01\x02\x05\x01\x02\x02", // 掄
+ 0x6385: "\x01\x02\x01\x01\x01\x02\x01\x02\x05\x01\x01", // 掅
+ 0x6386: "\x01\x02\x01\x02\x05\x04\x03\x01\x02\x05\x02", // 掆
+ 0x6387: "\x01\x02\x01\x05\x04\x05\x04\x05\x04\x05\x04", // 掇
+ 0x6388: "\x01\x02\x01\x03\x04\x04\x03\x04\x05\x05\x04", // 授
+ 0x6389: "\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x02", // 掉
+ 0x638a: "\x01\x02\x01\x04\x01\x04\x03\x01\x02\x05\x01", // 掊
+ 0x638b: "\x01\x02\x01\x04\x01\x03\x03\x05\x01\x05\x04", // 掋
+ 0x638c: "\x02\x04\x03\x04\x05\x02\x05\x01\x03\x01\x01\x02", // 掌
+ 0x638d: "\x01\x02\x01\x02\x05\x01\x01\x01\x05\x03\x05", // 掍
+ 0x638e: "\x01\x02\x01\x01\x03\x04\x01\x02\x05\x01\x02", // 掎
+ 0x638f: "\x01\x02\x01\x03\x05\x03\x01\x01\x02\x05\x02", // 掏
+ 0x6390: "\x01\x02\x01\x03\x05\x03\x02\x01\x05\x01\x01", // 掐
+ 0x6391: "\x01\x02\x01\x01\x02\x02\x01\x01\x01\x03\x04", // 掑
+ 0x6392: "\x01\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01", // 排
+ 0x6393: "\x01\x02\x01\x02\x01\x01\x02\x03\x04\x05\x04", // 掓
+ 0x6394: "\x01\x02\x05\x01\x02\x05\x05\x04\x03\x01\x01\x02", // 掔
+ 0x6395: "\x01\x02\x01\x01\x02\x01\x03\x04\x03\x05\x04", // 掕
+ 0x6396: "\x01\x02\x01\x04\x01\x03\x02\x03\x05\x04\x04", // 掖
+ 0x6397: "\x01\x02\x01\x01\x02\x01\x05\x05\x01\x02\x01", // 掗
+ 0x6398: "\x01\x02\x01\x05\x01\x03\x05\x02\x02\x05\x02", // 掘
+ 0x6399: "\x01\x02\x01\x03\x04\x04\x03\x05\x01\x01\x02", // 掙
+ 0x639a: "\x01\x02\x01\x01\x02\x05\x02\x03\x04\x03\x04", // 掚
+ 0x639b: "\x01\x02\x01\x01\x02\x01\x01\x02\x01\x02\x04", // 掛
+ 0x639c: "\x01\x02\x01\x03\x02\x01\x05\x01\x01\x03\x05", // 掜
+ 0x639d: "\x01\x02\x01\x01\x02\x05\x01\x01\x05\x03\x04", // 掝
+ 0x639e: "\x01\x02\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 掞
+ 0x639f: "\x01\x02\x01\x04\x04\x05\x01\x02\x01\x03\x04", // 掟
+ 0x63a0: "\x01\x02\x01\x04\x01\x02\x05\x01\x02\x03\x04", // 掠
+ 0x63a1: "\x01\x02\x01\x03\x04\x04\x03\x01\x02\x03\x04", // 採
+ 0x63a2: "\x01\x02\x01\x04\x05\x03\x04\x01\x02\x03\x04", // 探
+ 0x63a3: "\x03\x01\x01\x02\x05\x02\x02\x02\x03\x01\x01\x02", // 掣
+ 0x63a4: "\x01\x02\x01\x03\x05\x01\x01\x03\x05\x01\x01", // 掤
+ 0x63a5: "\x01\x02\x01\x04\x01\x04\x03\x01\x05\x03\x01", // 接
+ 0x63a6: "\x01\x02\x01\x02\x05\x01\x01\x03\x05\x03\x03", // 掦
+ 0x63a7: "\x01\x02\x01\x04\x04\x05\x03\x04\x01\x02\x01", // 控
+ 0x63a8: "\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 推
+ 0x63a9: "\x01\x02\x01\x01\x03\x04\x02\x05\x01\x01\x05", // 掩
+ 0x63aa: "\x01\x02\x01\x01\x02\x02\x01\x02\x05\x01\x01", // 措
+ 0x63ab: "\x01\x02\x01\x01\x02\x02\x01\x01\x01\x05\x04", // 掫
+ 0x63ac: "\x01\x02\x01\x03\x05\x04\x03\x01\x02\x03\x04", // 掬
+ 0x63ad: "\x01\x02\x01\x01\x01\x03\x04\x02\x04\x04\x04", // 掭
+ 0x63ae: "\x01\x02\x01\x04\x05\x01\x03\x02\x05\x01\x01", // 掮
+ 0x63af: "\x01\x02\x01\x02\x01\x02\x01\x02\x05\x01\x01", // 掯
+ 0x63b0: "\x03\x01\x01\x03\x03\x04\x05\x03\x03\x01\x01\x02", // 掰
+ 0x63b1: "\x03\x01\x01\x02\x03\x01\x01\x02\x03\x01\x01\x02", // 掱
+ 0x63b2: "\x01\x02\x01\x02\x05\x01\x01\x03\x05\x03\x05", // 掲
+ 0x63b3: "\x01\x02\x01\x02\x01\x05\x03\x01\x05\x05\x03", // 掳
+ 0x63b4: "\x01\x02\x01\x02\x05\x01\x01\x02\x01\x04\x01", // 掴
+ 0x63b5: "\x01\x02\x01\x03\x04\x01\x02\x05\x01\x05\x02", // 掵
+ 0x63b6: "\x01\x02\x01\x04\x01\x03\x05\x01\x01\x03\x04", // 掶
+ 0x63b7: "\x01\x02\x01\x04\x03\x01\x01\x03\x04\x05\x02", // 掷
+ 0x63b8: "\x01\x02\x01\x04\x03\x02\x05\x01\x01\x01\x02", // 掸
+ 0x63b9: "\x01\x02\x01\x05\x02\x01\x02\x05\x02\x02\x01", // 掹
+ 0x63ba: "\x01\x02\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 掺
+ 0x63bb: "\x01\x02\x01\x05\x04\x02\x05\x01\x02\x01\x04", // 掻
+ 0x63bc: "\x01\x02\x01\x05\x05\x02\x01\x02\x05\x03\x04", // 掼
+ 0x63bd: "\x01\x02\x01\x04\x03\x01\x02\x02\x04\x03\x01", // 掽
+ 0x63be: "\x01\x02\x01\x05\x05\x01\x03\x05\x03\x03\x03\x04", // 掾
+ 0x63bf: "\x01\x02\x01\x01\x02\x02\x01\x03\x02\x05\x01", // 掿
+ 0x63c0: "\x01\x02\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 揀
+ 0x63c1: "\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 揁
+ 0x63c2: "\x01\x02\x01\x04\x03\x01\x02\x05\x03\x05\x01\x01", // 揂
+ 0x63c3: "\x01\x02\x01\x04\x03\x01\x02\x05\x01\x01\x02\x02", // 揃
+ 0x63c4: "\x01\x02\x01\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 揄
+ 0x63c5: "\x01\x03\x02\x05\x01\x01\x01\x03\x02\x03\x01\x01\x02", // 揅
+ 0x63c6: "\x01\x02\x01\x05\x04\x03\x03\x04\x01\x01\x03\x04", // 揆
+ 0x63c7: "\x01\x02\x01\x01\x02\x02\x05\x04\x03\x01\x01\x02", // 揇
+ 0x63c8: "\x01\x02\x01\x03\x05\x04\x01\x01\x01\x02\x05\x01", // 揈
+ 0x63c9: "\x01\x02\x01\x05\x04\x05\x02\x03\x01\x02\x03\x04", // 揉
+ 0x63ca: "\x01\x02\x01\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 揊
+ 0x63cb: "\x01\x02\x01\x02\x05\x01\x02\x01\x01\x05\x03\x04", // 揋
+ 0x63cc: "\x01\x02\x01\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 揌
+ 0x63cd: "\x01\x02\x01\x01\x01\x01\x03\x04\x01\x01\x03\x04", // 揍
+ 0x63ce: "\x01\x02\x01\x04\x04\x05\x01\x02\x05\x01\x01\x01", // 揎
+ 0x63cf: "\x01\x02\x01\x01\x02\x02\x02\x05\x01\x02\x01", // 描
+ 0x63d0: "\x01\x02\x01\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 提
+ 0x63d1: "\x01\x02\x01\x03\x02\x01\x05\x01\x01\x01\x02\x01", // 揑
+ 0x63d2: "\x01\x02\x01\x03\x01\x02\x03\x02\x01\x05\x01\x01", // 插
+ 0x63d3: "\x01\x02\x01\x04\x01\x05\x03\x03\x01\x05\x02\x05", // 揓
+ 0x63d4: "\x01\x02\x01\x03\x05\x03\x03\x04\x04\x05\x04\x04", // 揔
+ 0x63d5: "\x01\x02\x01\x01\x02\x02\x01\x01\x01\x03\x04\x05", // 揕
+ 0x63d6: "\x01\x02\x01\x02\x05\x01\x01\x02\x02\x01\x01\x01", // 揖
+ 0x63d7: "\x01\x02\x01\x03\x03\x01\x02\x02\x05\x01\x01\x01", // 揗
+ 0x63d8: "\x01\x02\x01\x03\x02\x05\x01\x01\x01\x01\x02\x01", // 揘
+ 0x63d9: "\x01\x02\x01\x04\x05\x01\x03\x02\x05\x01\x02\x02", // 揙
+ 0x63da: "\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 揚
+ 0x63db: "\x01\x02\x01\x03\x05\x02\x05\x03\x04\x01\x03\x04", // 換
+ 0x63dc: "\x01\x02\x01\x03\x04\x01\x02\x05\x01\x01\x03\x02", // 揜
+ 0x63dd: "\x01\x02\x01\x03\x05\x04\x02\x04\x02\x05\x01\x01", // 揝
+ 0x63de: "\x01\x02\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 揞
+ 0x63df: "\x01\x02\x01\x05\x02\x01\x03\x04\x02\x05\x01\x01", // 揟
+ 0x63e0: "\x01\x02\x01\x01\x02\x05\x01\x01\x05\x03\x01\x05", // 揠
+ 0x63e1: "\x01\x02\x01\x05\x01\x03\x01\x05\x04\x01\x02\x01", // 握
+ 0x63e2: "\x01\x02\x01\x04\x04\x05\x03\x05\x04\x02\x05\x01", // 揢
+ 0x63e3: "\x01\x02\x01\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 揣
+ 0x63e4: "\x01\x02\x01\x05\x01\x01\x05\x04\x05\x02", // 揤
+ 0x63e5: "\x01\x02\x01\x04\x01\x04\x03\x04\x05\x02\x05\x02", // 揥
+ 0x63e6: "\x01\x02\x01\x01\x02\x05\x01\x02\x03\x04\x02\x02", // 揦
+ 0x63e7: "\x01\x02\x05\x01\x02\x03\x04\x02\x02\x03\x01\x01\x02", // 揧
+ 0x63e8: "\x01\x02\x01\x04\x01\x02\x05\x01\x04\x05\x01\x02", // 揨
+ 0x63e9: "\x01\x02\x01\x01\x05\x03\x05\x03\x02\x05\x01\x01", // 揩
+ 0x63ea: "\x01\x02\x01\x03\x01\x02\x03\x04\x04\x03\x03\x04", // 揪
+ 0x63eb: "\x03\x01\x02\x03\x04\x04\x03\x03\x04\x03\x01\x01\x02", // 揫
+ 0x63ec: "\x01\x02\x01\x04\x04\x05\x03\x04\x01\x03\x04\x04", // 揬
+ 0x63ed: "\x01\x02\x01\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 揭
+ 0x63ee: "\x01\x02\x01\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 揮
+ 0x63ef: "\x01\x02\x01\x04\x04\x02\x01\x02\x05\x04\x04\x01", // 揯
+ 0x63f0: "\x01\x02\x01\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 揰
+ 0x63f1: "\x02\x04\x03\x02\x05\x01\x01\x02\x02\x03\x01\x01\x02", // 揱
+ 0x63f2: "\x01\x02\x01\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 揲
+ 0x63f3: "\x01\x02\x01\x01\x01\x01\x02\x05\x03\x01\x03\x04", // 揳
+ 0x63f4: "\x01\x02\x01\x03\x04\x04\x03\x01\x01\x03\x05\x04", // 援
+ 0x63f5: "\x01\x02\x01\x05\x01\x01\x01\x01\x02\x05\x04", // 揵
+ 0x63f6: "\x01\x02\x01\x01\x02\x02\x01\x01\x01\x05\x02", // 揶
+ 0x63f7: "\x01\x02\x01\x03\x01\x02\x03\x02\x01\x05\x01\x01", // 揷
+ 0x63f8: "\x01\x02\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 揸
+ 0x63f9: "\x01\x02\x01\x02\x01\x01\x03\x05\x02\x05\x01\x01", // 揹
+ 0x63fa: "\x01\x02\x01\x03\x04\x04\x03\x01\x01\x02\x05\x02", // 揺
+ 0x63fb: "\x01\x02\x01\x01\x03\x01\x05\x03\x01\x05\x03\x04", // 揻
+ 0x63fc: "\x01\x02\x01\x01\x03\x02\x05\x01\x02\x05\x03\x04", // 揼
+ 0x63fd: "\x01\x02\x01\x02\x02\x03\x01\x04\x02\x05\x03\x05", // 揽
+ 0x63fe: "\x01\x02\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 揾
+ 0x63ff: "\x01\x02\x01\x03\x01\x01\x01\x05\x03\x05\x03\x04", // 揿
+ 0x6400: "\x01\x02\x01\x03\x05\x02\x05\x01\x03\x05\x04\x04", // 搀
+ 0x6401: "\x01\x02\x01\x04\x02\x05\x03\x05\x04\x02\x05\x01", // 搁
+ 0x6402: "\x01\x02\x01\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 搂
+ 0x6403: "\x01\x02\x01\x04\x03\x02\x05\x01\x04\x05\x04\x04", // 搃
+ 0x6404: "\x01\x02\x01\x04\x04\x02\x01\x02\x05\x01\x01\x01", // 搄
+ 0x6405: "\x01\x02\x01\x04\x04\x03\x04\x05\x02\x05\x03\x05", // 搅
+ 0x6406: "\x01\x02\x01\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01", // 搆
+ 0x6407: "\x01\x02\x01\x03\x04\x04\x05\x04\x01\x03\x05\x03\x04", // 搇
+ 0x6408: "\x01\x02\x01\x04\x04\x05\x03\x04\x03\x04\x02\x05\x01", // 搈
+ 0x6409: "\x01\x02\x01\x04\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 搉
+ 0x640a: "\x01\x02\x01\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03", // 搊
+ 0x640b: "\x01\x02\x01\x03\x03\x02\x01\x05\x03\x01\x05\x03\x05", // 搋
+ 0x640c: "\x01\x02\x01\x05\x01\x03\x01\x02\x02\x01\x05\x03\x04", // 搌
+ 0x640d: "\x01\x02\x01\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 損
+ 0x640e: "\x01\x02\x01\x05\x02\x01\x03\x05\x05\x04\x02\x03\x04", // 搎
+ 0x640f: "\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 搏
+ 0x6410: "\x01\x02\x01\x04\x01\x05\x05\x04\x02\x05\x01\x02\x01", // 搐
+ 0x6411: "\x01\x02\x01\x01\x02\x02\x01\x02\x02\x01\x01\x02", // 搑
+ 0x6412: "\x01\x02\x01\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03", // 搒
+ 0x6413: "\x01\x02\x01\x04\x03\x01\x01\x01\x03\x01\x02\x01", // 搓
+ 0x6414: "\x01\x02\x01\x05\x04\x04\x02\x05\x01\x02\x01\x04", // 搔
+ 0x6415: "\x01\x02\x01\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 搕
+ 0x6416: "\x01\x02\x01\x03\x05\x04\x04\x03\x01\x01\x02\x05\x02", // 搖
+ 0x6417: "\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x02\x05\x02", // 搗
+ 0x6418: "\x01\x02\x01\x01\x02\x01\x03\x03\x05\x02\x05\x01\x01", // 搘
+ 0x6419: "\x01\x02\x01\x01\x03\x01\x01\x05\x03\x04\x01\x02\x04", // 搙
+ 0x641a: "\x01\x02\x01\x05\x03\x05\x03\x05\x03\x02\x05\x01\x01", // 搚
+ 0x641b: "\x01\x02\x01\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 搛
+ 0x641c: "\x01\x02\x01\x03\x02\x01\x05\x01\x01\x02\x05\x04", // 搜
+ 0x641d: "\x01\x02\x01\x03\x02\x05\x01\x01\x01\x01\x03\x04\x04", // 搝
+ 0x641e: "\x01\x02\x01\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 搞
+ 0x641f: "\x01\x02\x01\x01\x02\x05\x01\x01\x01\x02\x01\x01\x02", // 搟
+ 0x6420: "\x01\x02\x01\x04\x03\x01\x05\x02\x03\x03\x05\x01\x01", // 搠
+ 0x6421: "\x01\x02\x01\x05\x04\x05\x04\x05\x04\x01\x02\x03\x04", // 搡
+ 0x6422: "\x01\x02\x01\x01\x02\x02\x04\x03\x01\x02\x05\x01\x01", // 搢
+ 0x6423: "\x01\x02\x01\x01\x03\x01\x04\x03\x03\x04\x05\x03\x04", // 搣
+ 0x6424: "\x01\x02\x01\x04\x03\x01\x03\x04\x02\x05\x02\x02\x01", // 搤
+ 0x6425: "\x01\x02\x01\x03\x02\x05\x01\x05\x01\x04\x05\x04", // 搥
+ 0x6426: "\x01\x02\x01\x05\x01\x05\x04\x01\x05\x01\x05\x04\x01", // 搦
+ 0x6427: "\x01\x02\x01\x04\x05\x01\x03\x05\x04\x01\x05\x04\x01", // 搧
+ 0x6428: "\x01\x02\x01\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 搨
+ 0x6429: "\x01\x02\x01\x03\x05\x04\x01\x05\x02\x01\x02\x03\x04", // 搩
+ 0x642a: "\x01\x02\x01\x04\x01\x03\x05\x01\x01\x02\x02\x05\x01", // 搪
+ 0x642b: "\x03\x03\x05\x04\x01\x04\x03\x05\x05\x04\x03\x01\x01\x02", // 搫
+ 0x642c: "\x01\x02\x01\x03\x03\x05\x04\x01\x04\x03\x05\x05\x04", // 搬
+ 0x642d: "\x01\x02\x01\x01\x02\x02\x03\x04\x01\x02\x05\x01", // 搭
+ 0x642e: "\x01\x02\x01\x01\x02\x05\x02\x02\x01\x01\x02\x03\x04", // 搮
+ 0x642f: "\x01\x02\x01\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01", // 搯
+ 0x6430: "\x01\x02\x01\x02\x05\x05\x04\x05\x02\x05\x01\x01", // 搰
+ 0x6431: "\x01\x02\x01\x05\x01\x03\x04\x01\x04\x03\x01\x01\x02", // 搱
+ 0x6432: "\x01\x02\x01\x04\x04\x05\x03\x04\x03\x03\x05\x04\x04", // 搲
+ 0x6433: "\x01\x02\x01\x04\x04\x05\x01\x01\x01\x02\x02\x05\x01", // 搳
+ 0x6434: "\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x03\x01\x01\x02", // 搴
+ 0x6435: "\x01\x02\x01\x02\x05\x03\x04\x01\x02\x05\x02\x02\x01", // 搵
+ 0x6436: "\x01\x02\x01\x03\x04\x04\x05\x01\x01\x03\x02\x05\x01", // 搶
+ 0x6437: "\x01\x02\x01\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 搷
+ 0x6438: "\x01\x02\x01\x01\x01\x01\x03\x04\x03\x01\x02\x03\x04", // 搸
+ 0x6439: "\x01\x02\x01\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 搹
+ 0x643a: "\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03", // 携
+ 0x643b: "\x03\x04\x01\x02\x05\x01\x03\x01\x01\x02\x03\x01\x01\x02", // 搻
+ 0x643c: "\x01\x02\x01\x04\x03\x01\x01\x03\x04\x03\x01\x01\x02", // 搼
+ 0x643d: "\x01\x02\x01\x01\x02\x02\x03\x04\x01\x02\x03\x04", // 搽
+ 0x643e: "\x01\x02\x01\x04\x04\x05\x03\x04\x03\x01\x02\x01\x01", // 搾
+ 0x643f: "\x03\x01\x01\x02\x03\x04\x01\x02\x05\x01\x03\x01\x01\x02", // 搿
+ 0x6440: "\x01\x02\x01\x03\x02\x05\x01\x01\x05\x04\x04\x04\x04", // 摀
+ 0x6441: "\x01\x02\x01\x02\x05\x01\x03\x04\x01\x04\x05\x04\x04", // 摁
+ 0x6442: "\x01\x02\x01\x01\x02\x02\x01\x01\x01\x04\x01\x03\x04", // 摂
+ 0x6443: "\x01\x02\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 摃
+ 0x6444: "\x01\x02\x01\x01\x02\x02\x01\x01\x01\x05\x04\x05\x04", // 摄
+ 0x6445: "\x01\x02\x01\x02\x01\x05\x03\x01\x05\x04\x05\x04\x04", // 摅
+ 0x6446: "\x01\x02\x01\x02\x05\x02\x02\x01\x01\x02\x01\x05\x04", // 摆
+ 0x6447: "\x01\x02\x01\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02", // 摇
+ 0x6448: "\x01\x02\x01\x04\x04\x05\x03\x02\x01\x02\x01\x03\x04", // 摈
+ 0x6449: "\x01\x02\x01\x04\x04\x05\x03\x04\x03\x04\x03\x05\x04", // 摉
+ 0x644a: "\x01\x02\x01\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 摊
+ 0x644b: "\x01\x02\x01\x03\x04\x01\x02\x03\x04\x03\x05\x05\x04", // 摋
+ 0x644c: "\x01\x02\x01\x04\x01\x04\x03\x01\x03\x03\x01\x01\x02\x01", // 摌
+ 0x644d: "\x01\x02\x01\x04\x04\x05\x03\x02\x01\x03\x01\x05\x01\x01", // 摍
+ 0x644e: "\x01\x02\x01\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 摎
+ 0x644f: "\x01\x02\x01\x01\x01\x01\x03\x04\x03\x02\x01\x05\x01\x01", // 摏
+ 0x6450: "\x01\x02\x01\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04", // 摐
+ 0x6451: "\x01\x02\x01\x02\x05\x01\x02\x05\x01\x01\x05\x03\x04\x01", // 摑
+ 0x6452: "\x01\x02\x01\x05\x01\x03\x04\x03\x01\x01\x03\x02", // 摒
+ 0x6453: "\x01\x02\x01\x03\x05\x04\x01\x01\x01\x02\x04\x05\x04", // 摓
+ 0x6454: "\x01\x02\x01\x04\x01\x05\x05\x04\x04\x01\x03\x04\x01\x02", // 摔
+ 0x6455: "\x01\x02\x01\x01\x03\x02\x02\x01\x05\x04\x05\x02\x05\x02", // 摕
+ 0x6456: "\x01\x02\x01\x03\x05\x04\x04\x05\x04\x01\x01\x02\x03\x04", // 摖
+ 0x6457: "\x01\x02\x01\x01\x02\x05\x01\x02\x03\x04\x03\x05\x03\x04", // 摗
+ 0x6458: "\x01\x02\x01\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01", // 摘
+ 0x6459: "\x01\x02\x01\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 摙
+ 0x645a: "\x01\x02\x01\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x01", // 摚
+ 0x645b: "\x01\x02\x01\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 摛
+ 0x645c: "\x01\x02\x01\x05\x05\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 摜
+ 0x645d: "\x01\x02\x01\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 摝
+ 0x645e: "\x01\x02\x01\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 摞
+ 0x645f: "\x01\x02\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 摟
+ 0x6460: "\x01\x02\x01\x03\x02\x05\x03\x05\x04\x01\x04\x05\x04\x04", // 摠
+ 0x6461: "\x01\x02\x01\x05\x01\x01\x05\x04\x01\x05\x03\x05", // 摡
+ 0x6462: "\x01\x02\x01\x02\x01\x05\x03\x01\x05\x03\x04\x03\x01\x02", // 摢
+ 0x6463: "\x01\x02\x01\x02\x01\x05\x03\x01\x05\x02\x05\x01\x01\x01", // 摣
+ 0x6464: "\x01\x02\x01\x01\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04", // 摤
+ 0x6465: "\x01\x02\x01\x03\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 摥
+ 0x6466: "\x01\x02\x01\x01\x03\x04\x01\x01\x05\x03\x03\x05\x04\x04", // 摦
+ 0x6467: "\x01\x02\x01\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 摧
+ 0x6468: "\x01\x02\x01\x05\x01\x03\x02\x04\x01\x03\x04\x03\x01\x01\x02", // 摨
+ 0x6469: "\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x03\x01\x01\x02", // 摩
+ 0x646a: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x04\x04\x01\x02\x04", // 摪
+ 0x646b: "\x01\x02\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 摫
+ 0x646c: "\x01\x02\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05", // 摬
+ 0x646d: "\x01\x02\x01\x04\x01\x03\x01\x02\x02\x01\x04\x04\x04\x04", // 摭
+ 0x646e: "\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04\x03\x01\x01\x02", // 摮
+ 0x646f: "\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04\x03\x01\x01\x02", // 摯
+ 0x6470: "\x01\x02\x01\x03\x04\x01\x02\x01\x03\x05\x04\x03\x01\x01\x02", // 摰
+ 0x6471: "\x01\x02\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 摱
+ 0x6472: "\x01\x02\x01\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02", // 摲
+ 0x6473: "\x01\x02\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 摳
+ 0x6474: "\x01\x02\x01\x01\x04\x05\x02\x04\x04\x04\x04\x01\x01\x05", // 摴
+ 0x6475: "\x01\x02\x01\x01\x03\x02\x01\x01\x02\x03\x04\x05\x03\x04", // 摵
+ 0x6476: "\x01\x02\x01\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04", // 摶
+ 0x6477: "\x01\x02\x01\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 摷
+ 0x6478: "\x01\x02\x01\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 摸
+ 0x6479: "\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04\x03\x01\x01\x02", // 摹
+ 0x647a: "\x01\x02\x01\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01", // 摺
+ 0x647b: "\x01\x02\x01\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 摻
+ 0x647c: "\x01\x02\x01\x01\x02\x05\x01\x02\x05\x05\x04\x01\x02\x01", // 摼
+ 0x647d: "\x01\x02\x01\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 摽
+ 0x647e: "\x01\x02\x01\x05\x01\x05\x02\x05\x01\x02\x05\x01\x02\x01\x04", // 摾
+ 0x647f: "\x01\x02\x01\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 摿
+ 0x6480: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04\x03\x01\x01\x02", // 撀
+ 0x6481: "\x01\x02\x01\x04\x01\x05\x05\x04\x04\x05\x03\x01\x01\x02", // 撁
+ 0x6482: "\x01\x02\x01\x02\x05\x01\x02\x01\x03\x05\x04\x02\x05\x01", // 撂
+ 0x6483: "\x01\x02\x05\x01\x01\x01\x02\x03\x05\x05\x04\x03\x01\x01\x02", // 撃
+ 0x6484: "\x01\x02\x01\x02\x05\x03\x04\x02\x05\x03\x04\x05\x03\x01", // 撄
+ 0x6485: "\x01\x02\x01\x01\x03\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04", // 撅
+ 0x6486: "\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04\x03\x01\x01\x02", // 撆
+ 0x6487: "\x01\x02\x01\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04", // 撇
+ 0x6488: "\x01\x02\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x05\x03", // 撈
+ 0x6489: "\x04\x01\x02\x05\x01\x05\x02\x01\x03\x01\x03\x04\x03\x01\x01\x02", // 撉
+ 0x648a: "\x01\x02\x01\x02\x05\x01\x01\x02\x05\x01\x01\x03\x05\x01\x01", // 撊
+ 0x648b: "\x01\x02\x01\x02\x05\x01\x01\x02\x05\x01\x01\x01\x01\x02\x01", // 撋
+ 0x648c: "\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 撌
+ 0x648d: "\x01\x02\x01\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x01", // 撍
+ 0x648e: "\x01\x02\x01\x01\x02\x01\x04\x05\x01\x02\x05\x01\x04\x03\x01", // 撎
+ 0x648f: "\x01\x02\x01\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04", // 撏
+ 0x6490: "\x01\x02\x01\x02\x04\x03\x04\x05\x02\x05\x01\x01\x05\x02\x03", // 撐
+ 0x6491: "\x01\x02\x01\x02\x04\x03\x04\x05\x02\x05\x01\x03\x01\x01\x02", // 撑
+ 0x6492: "\x01\x02\x01\x01\x02\x02\x01\x02\x05\x01\x01\x03\x01\x03\x04", // 撒
+ 0x6493: "\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 撓
+ 0x6494: "\x01\x02\x01\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x03\x04", // 撔
+ 0x6495: "\x01\x02\x01\x01\x02\x02\x01\x01\x01\x03\x04\x03\x03\x01\x02", // 撕
+ 0x6496: "\x01\x02\x01\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 撖
+ 0x6497: "\x01\x02\x01\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 撗
+ 0x6498: "\x01\x02\x01\x03\x01\x04\x03\x01\x04\x03\x04\x01\x02\x05\x01", // 撘
+ 0x6499: "\x01\x02\x01\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x02\x04", // 撙
+ 0x649a: "\x01\x02\x01\x03\x05\x04\x04\x01\x03\x04\x04\x04\x04\x04\x04", // 撚
+ 0x649b: "\x01\x02\x01\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 撛
+ 0x649c: "\x01\x02\x01\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 撜
+ 0x649d: "\x01\x02\x01\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04", // 撝
+ 0x649e: "\x01\x02\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 撞
+ 0x649f: "\x01\x02\x01\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 撟
+ 0x64a0: "\x01\x02\x01\x01\x02\x02\x05\x01\x01\x01\x02\x01\x05\x03\x04", // 撠
+ 0x64a1: "\x01\x02\x01\x05\x04\x05\x04\x05\x04\x03\x04\x02\x04\x04\x04", // 撡
+ 0x64a2: "\x01\x02\x01\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 撢
+ 0x64a3: "\x01\x02\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 撣
+ 0x64a4: "\x01\x02\x01\x04\x01\x05\x04\x02\x05\x01\x01\x03\x01\x03\x04", // 撤
+ 0x64a5: "\x01\x02\x01\x05\x04\x03\x03\x04\x05\x01\x05\x03\x05\x05\x04", // 撥
+ 0x64a6: "\x01\x02\x01\x01\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01", // 撦
+ 0x64a7: "\x01\x02\x01\x05\x05\x04\x04\x04\x04\x03\x05\x05\x02\x01\x05", // 撧
+ 0x64a8: "\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 撨
+ 0x64a9: "\x01\x02\x01\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 撩
+ 0x64aa: "\x01\x02\x01\x05\x04\x01\x03\x04\x01\x02\x05\x01\x01\x01\x02", // 撪
+ 0x64ab: "\x01\x02\x01\x03\x01\x01\x02\x02\x02\x02\x01\x04\x04\x04\x04", // 撫
+ 0x64ac: "\x01\x02\x01\x03\x01\x01\x05\x03\x01\x01\x05\x03\x01\x01\x05", // 撬
+ 0x64ad: "\x01\x02\x01\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 播
+ 0x64ae: "\x01\x02\x01\x02\x05\x01\x01\x01\x02\x02\x01\x01\x01\x05\x04", // 撮
+ 0x64af: "\x01\x02\x01\x04\x03\x01\x01\x01\x03\x02\x05\x01\x01\x01", // 撯
+ 0x64b0: "\x01\x02\x01\x05\x01\x05\x05\x01\x05\x01\x02\x02\x01\x03\x04", // 撰
+ 0x64b1: "\x01\x02\x01\x05\x02\x01\x03\x01\x02\x01\x02\x05\x01\x01", // 撱
+ 0x64b2: "\x01\x02\x01\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 撲
+ 0x64b3: "\x01\x02\x01\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x03\x04", // 撳
+ 0x64b4: "\x01\x02\x01\x04\x01\x02\x05\x01\x05\x02\x01\x03\x01\x03\x04", // 撴
+ 0x64b5: "\x01\x02\x01\x01\x01\x03\x04\x01\x01\x03\x04\x01\x05\x01\x02", // 撵
+ 0x64b6: "\x01\x02\x01\x01\x02\x02\x01\x01\x02\x02\x01\x01\x02", // 撶
+ 0x64b7: "\x01\x02\x01\x01\x02\x01\x02\x05\x01\x01\x03\x02\x05\x03\x04", // 撷
+ 0x64b8: "\x01\x02\x01\x03\x05\x02\x05\x01\x02\x01\x01\x02\x05\x01\x01", // 撸
+ 0x64b9: "\x01\x02\x01\x04\x04\x03\x04\x05\x02\x05\x01\x01\x01\x03\x05", // 撹
+ 0x64ba: "\x01\x02\x01\x04\x04\x05\x03\x04\x02\x05\x01\x02\x05\x01\x02", // 撺
+ 0x64bb: "\x01\x02\x01\x01\x02\x01\x04\x03\x01\x01\x01\x02\x04\x05\x04", // 撻
+ 0x64bc: "\x01\x02\x01\x01\x03\x01\x02\x05\x01\x05\x03\x04\x04\x05\x04\x04", // 撼
+ 0x64bd: "\x01\x02\x01\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x03\x04", // 撽
+ 0x64be: "\x01\x02\x01\x02\x05\x05\x02\x05\x02\x05\x01\x04\x05\x04", // 撾
+ 0x64bf: "\x01\x02\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 撿
+ 0x64c0: "\x01\x02\x01\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04\x01\x01\x02", // 擀
+ 0x64c1: "\x01\x02\x01\x04\x01\x05\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 擁
+ 0x64c2: "\x01\x02\x01\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x01", // 擂
+ 0x64c3: "\x01\x02\x01\x02\x05\x01\x02\x02\x01\x01\x03\x01\x01\x05\x03\x04", // 擃
+ 0x64c4: "\x01\x02\x01\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x05\x03", // 擄
+ 0x64c5: "\x01\x02\x01\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 擅
+ 0x64c6: "\x01\x02\x01\x01\x02\x02\x01\x02\x01\x03\x02\x05\x01\x01", // 擆
+ 0x64c7: "\x01\x02\x01\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 擇
+ 0x64c8: "\x01\x02\x01\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x02\x03\x04", // 擈
+ 0x64c9: "\x01\x02\x01\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 擉
+ 0x64ca: "\x01\x02\x05\x01\x01\x01\x02\x05\x02\x03\x05\x05\x04\x03\x01\x01\x02", // 擊
+ 0x64cb: "\x01\x02\x01\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x01\x02\x01", // 擋
+ 0x64cc: "\x01\x02\x01\x03\x01\x04\x03\x01\x04\x01\x03\x04\x03\x04\x03\x04", // 擌
+ 0x64cd: "\x01\x02\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 操
+ 0x64ce: "\x01\x02\x02\x03\x05\x02\x05\x01\x03\x01\x03\x04\x03\x01\x01\x02", // 擎
+ 0x64cf: "\x01\x02\x01\x01\x02\x02\x03\x05\x02\x05\x01\x03\x01\x03\x04", // 擏
+ 0x64d0: "\x01\x02\x01\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 擐
+ 0x64d1: "\x01\x02\x01\x02\x05\x01\x01\x02\x02\x01\x01\x01\x05\x03\x04", // 擑
+ 0x64d2: "\x01\x02\x01\x03\x04\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 擒
+ 0x64d3: "\x01\x02\x01\x01\x04\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05", // 擓
+ 0x64d4: "\x01\x02\x01\x03\x05\x01\x03\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 擔
+ 0x64d5: "\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x02\x05", // 擕
+ 0x64d6: "\x01\x02\x01\x01\x02\x02\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 擖
+ 0x64d7: "\x01\x02\x01\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 擗
+ 0x64d8: "\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x03\x01\x01\x02", // 擘
+ 0x64d9: "\x01\x02\x01\x03\x02\x05\x03\x04\x03\x01\x02\x03\x04\x01\x03\x04", // 擙
+ 0x64da: "\x01\x02\x01\x02\x01\x05\x03\x01\x05\x01\x03\x05\x03\x03\x03\x04", // 據
+ 0x64db: "\x01\x02\x01\x01\x02\x02\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 擛
+ 0x64dc: "\x01\x02\x01\x01\x02\x02\x05\x04\x03\x01\x01\x02\x01\x03\x04\x04", // 擜
+ 0x64dd: "\x01\x02\x01\x02\x05\x01\x01\x03\x05\x01\x01\x02\x05\x02\x02\x01", // 擝
+ 0x64de: "\x01\x02\x01\x04\x03\x01\x02\x03\x04\x05\x03\x01\x03\x01\x03\x04", // 擞
+ 0x64df: "\x01\x02\x01\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 擟
+ 0x64e0: "\x01\x02\x01\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01", // 擠
+ 0x64e1: "\x01\x02\x01\x01\x02\x01\x02\x05\x01\x04\x05\x01\x05\x04\x01\x02\x01", // 擡
+ 0x64e2: "\x01\x02\x01\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 擢
+ 0x64e3: "\x01\x02\x01\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 擣
+ 0x64e4: "\x01\x02\x01\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02", // 擤
+ 0x64e5: "\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01\x03\x01\x01\x02", // 擥
+ 0x64e6: "\x01\x02\x01\x04\x04\x05\x03\x05\x04\x04\x05\x04\x01\x01\x02\x03\x04", // 擦
+ 0x64e7: "\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04\x03\x01\x01\x02", // 擧
+ 0x64e8: "\x01\x02\x01\x03\x03\x02\x01\x05\x03\x01\x05\x03\x05\x03\x05\x03\x04", // 擨
+ 0x64e9: "\x01\x02\x01\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02", // 擩
+ 0x64ea: "\x01\x03\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x04\x04\x03\x01\x01\x02", // 擪
+ 0x64eb: "\x01\x02\x01\x01\x03\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x04\x04", // 擫
+ 0x64ec: "\x01\x02\x01\x03\x05\x03\x01\x01\x03\x04\x05\x04\x05\x02\x01\x03\x04", // 擬
+ 0x64ed: "\x01\x02\x01\x01\x02\x02\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 擭
+ 0x64ee: "\x01\x02\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03\x04", // 擮
+ 0x64ef: "\x01\x02\x01\x04\x04\x05\x01\x02\x03\x03\x02\x05\x01\x01\x01\x03\x04", // 擯
+ 0x64f0: "\x01\x02\x01\x04\x04\x05\x04\x05\x04\x04\x02\x05\x02\x02\x01\x01\x02", // 擰
+ 0x64f1: "\x01\x02\x01\x02\x05\x01\x01\x02\x05\x01\x01\x03\x05\x04\x02\x05\x01", // 擱
+ 0x64f2: "\x01\x02\x01\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x03\x04\x05\x02", // 擲
+ 0x64f3: "\x01\x02\x01\x03\x01\x04\x03\x01\x04\x05\x01\x01\x05\x04\x05\x02", // 擳
+ 0x64f4: "\x01\x02\x01\x04\x01\x03\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 擴
+ 0x64f5: "\x01\x02\x01\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x03\x01\x01\x02", // 擵
+ 0x64f6: "\x01\x02\x01\x03\x01\x04\x03\x01\x04\x04\x03\x01\x02\x05\x01\x01\x02\x02", // 擶
+ 0x64f7: "\x01\x02\x01\x01\x02\x01\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 擷
+ 0x64f8: "\x01\x02\x01\x05\x05\x05\x02\x05\x03\x04\x01\x05\x04\x04\x05\x04\x04\x05", // 擸
+ 0x64f9: "\x01\x02\x01\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x05\x03\x04", // 擹
+ 0x64fa: "\x01\x02\x01\x02\x05\x02\x02\x01\x05\x04\x02\x05\x01\x01\x03\x05\x03\x05", // 擺
+ 0x64fb: "\x01\x02\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01\x03\x01\x03\x04", // 擻
+ 0x64fc: "\x01\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01", // 擼
+ 0x64fd: "\x01\x02\x01\x03\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x03\x04", // 擽
+ 0x64fe: "\x01\x02\x01\x01\x03\x02\x05\x01\x01\x04\x05\x04\x05\x04\x04\x03\x05\x04", // 擾
+ 0x64ff: "\x01\x02\x01\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01\x04\x05\x04", // 擿
+ 0x6500: "\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x03\x04\x01\x03\x04\x03\x01\x01\x02", // 攀
+ 0x6501: "\x01\x02\x01\x04\x03\x01\x01\x01\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 攁
+ 0x6502: "\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01", // 攂
+ 0x6503: "\x01\x02\x01\x01\x02\x02\x03\x05\x04\x04\x05\x04\x01\x01\x02\x03\x04", // 攃
+ 0x6504: "\x01\x02\x01\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 攄
+ 0x6505: "\x01\x02\x01\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 攅
+ 0x6506: "\x01\x02\x01\x01\x01\x03\x04\x01\x01\x03\x04\x01\x02\x05\x01\x01\x01\x02", // 攆
+ 0x6507: "\x01\x02\x01\x04\x04\x05\x01\x01\x01\x02\x02\x05\x02\x02\x01\x04\x05\x04\x04", // 攇
+ 0x6508: "\x01\x02\x01\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x03\x01\x02\x03\x04", // 攈
+ 0x6509: "\x01\x02\x01\x01\x04\x05\x02\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 攉
+ 0x650a: "\x01\x02\x01\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 攊
+ 0x650b: "\x01\x02\x01\x01\x02\x05\x01\x02\x03\x04\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 攋
+ 0x650c: "\x01\x02\x01\x02\x05\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04\x01", // 攌
+ 0x650d: "\x01\x02\x01\x04\x01\x05\x02\x05\x01\x03\x05\x01\x01\x05\x03\x01\x03\x05\x04", // 攍
+ 0x650e: "\x01\x02\x01\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 攎
+ 0x650f: "\x01\x02\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x05\x01\x05\x01\x01\x01", // 攏
+ 0x6510: "\x01\x02\x01\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x04\x01\x03\x05\x03\x04", // 攐
+ 0x6511: "\x01\x02\x01\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04\x01\x01\x02", // 攑
+ 0x6512: "\x01\x02\x01\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x03\x04", // 攒
+ 0x6513: "\x01\x02\x01\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 攓
+ 0x6514: "\x01\x02\x01\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 攔
+ 0x6515: "\x01\x02\x01\x03\x04\x03\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 攕
+ 0x6516: "\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x05\x03\x01", // 攖
+ 0x6517: "\x01\x02\x01\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x04\x03\x01\x02\x03\x04", // 攗
+ 0x6518: "\x01\x02\x01\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 攘
+ 0x6519: "\x01\x02\x01\x03\x05\x02\x05\x01\x01\x05\x03\x05\x03\x05\x02\x05\x01\x03\x05\x04", // 攙
+ 0x651a: "\x01\x02\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x02\x05\x01\x02\x05\x01", // 攚
+ 0x651b: "\x01\x02\x01\x04\x04\x05\x03\x04\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05", // 攛
+ 0x651c: "\x01\x02\x01\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x03\x04\x02\x05\x01", // 攜
+ 0x651d: "\x01\x02\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01", // 攝
+ 0x651e: "\x01\x02\x01\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 攞
+ 0x651f: "\x01\x02\x01\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x02\x05\x03\x01\x02\x03\x04\x01", // 攟
+ 0x6520: "\x01\x02\x01\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01", // 攠
+ 0x6521: "\x01\x02\x01\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 攡
+ 0x6522: "\x01\x02\x01\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 攢
+ 0x6523: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x03\x01\x01\x02", // 攣
+ 0x6524: "\x01\x02\x01\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 攤
+ 0x6525: "\x01\x02\x01\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x01\x03\x04\x05\x05\x04\x02\x03\x04", // 攥
+ 0x6526: "\x01\x02\x01\x01\x02\x05\x04\x01\x02\x05\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 攦
+ 0x6527: "\x01\x02\x01\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 攧
+ 0x6528: "\x01\x02\x01\x04\x04\x05\x03\x04\x03\x03\x05\x04\x04\x03\x03\x05\x04\x04\x03\x03\x05\x04\x04", // 攨
+ 0x6529: "\x01\x02\x01\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 攩
+ 0x652a: "\x01\x02\x01\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x02\x05\x01\x01\x01\x03\x05", // 攪
+ 0x652b: "\x01\x02\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 攫
+ 0x652c: "\x01\x02\x01\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 攬
+ 0x652d: "\x01\x02\x01\x05\x05\x01\x03\x05\x03\x03\x03\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 攭
+ 0x652e: "\x01\x02\x01\x01\x02\x05\x01\x02\x04\x05\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 攮
+ 0x652f: "\x01\x02\x05\x04", // 支
+ 0x6530: "\x01\x02\x05\x04\x05\x03", // 攰
+ 0x6531: "\x04\x01\x04\x03\x01\x01\x02\x05\x04", // 攱
+ 0x6532: "\x01\x03\x04\x01\x02\x05\x01\x02\x01\x02\x05\x04", // 攲
+ 0x6533: "\x01\x02\x05\x04\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04", // 攳
+ 0x6534: "\x02\x01\x05\x04", // 攴
+ 0x6535: "\x03\x01\x03\x04", // 攵
+ 0x6536: "\x05\x02\x03\x01\x03\x04", // 收
+ 0x6537: "\x01\x05\x03\x01\x03\x04", // 攷
+ 0x6538: "\x03\x02\x02\x03\x01\x03\x04", // 攸
+ 0x6539: "\x05\x01\x05\x03\x01\x03\x04", // 改
+ 0x653a: "\x05\x01\x05\x03\x01\x03\x04", // 攺
+ 0x653b: "\x01\x02\x01\x03\x01\x03\x04", // 攻
+ 0x653c: "\x01\x01\x02\x03\x01\x03\x04", // 攼
+ 0x653d: "\x03\x04\x05\x03\x03\x01\x03\x04", // 攽
+ 0x653e: "\x04\x01\x05\x03\x03\x01\x03\x04", // 放
+ 0x653f: "\x01\x02\x01\x02\x01\x03\x01\x03\x04", // 政
+ 0x6540: "\x03\x02\x05\x01\x01\x03\x01\x03\x04", // 敀
+ 0x6541: "\x02\x01\x02\x05\x01\x02\x01\x05\x04", // 敁
+ 0x6542: "\x03\x05\x02\x05\x01\x03\x01\x03\x04", // 敂
+ 0x6543: "\x05\x01\x05\x01\x05\x03\x01\x03\x04", // 敃
+ 0x6544: "\x05\x04\x05\x02\x03\x03\x01\x03\x04", // 敄
+ 0x6545: "\x01\x02\x02\x05\x01\x03\x01\x03\x04", // 故
+ 0x6546: "\x03\x04\x01\x02\x05\x01\x02\x01\x05\x04", // 敆
+ 0x6547: "\x01\x02\x05\x02\x03\x04\x03\x01\x03\x04", // 敇
+ 0x6548: "\x04\x01\x03\x04\x03\x04\x03\x01\x03\x04", // 效
+ 0x6549: "\x04\x03\x01\x02\x03\x04\x03\x01\x03\x04", // 敉
+ 0x654a: "\x02\x01\x01\x02\x03\x04\x02\x01\x05\x04", // 敊
+ 0x654b: "\x03\x05\x04\x02\x05\x01\x03\x01\x03\x04", // 敋
+ 0x654c: "\x03\x01\x02\x02\x05\x01\x03\x01\x03\x04", // 敌
+ 0x654d: "\x03\x04\x01\x01\x02\x03\x04\x02\x01\x05\x04", // 敍
+ 0x654e: "\x03\x04\x01\x03\x05\x02\x01\x03\x01\x03\x04", // 敎
+ 0x654f: "\x03\x01\x05\x05\x04\x01\x04\x03\x01\x03\x04", // 敏
+ 0x6550: "\x01\x03\x01\x01\x05\x03\x04\x03\x01\x03\x04", // 敐
+ 0x6551: "\x01\x02\x04\x01\x03\x04\x04\x03\x01\x03\x04", // 救
+ 0x6552: "\x03\x02\x02\x05\x01\x01\x02\x03\x01\x03\x04", // 敒
+ 0x6553: "\x03\x04\x02\x05\x01\x03\x05\x03\x01\x03\x04", // 敓
+ 0x6554: "\x01\x02\x05\x01\x02\x05\x01\x03\x01\x03\x04", // 敔
+ 0x6555: "\x01\x02\x05\x01\x02\x03\x04\x03\x01\x03\x04", // 敕
+ 0x6556: "\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04", // 敖
+ 0x6557: "\x02\x05\x01\x01\x01\x03\x04\x03\x01\x03\x04", // 敗
+ 0x6558: "\x03\x04\x01\x01\x02\x03\x04\x03\x01\x03\x04", // 敘
+ 0x6559: "\x01\x02\x01\x03\x05\x02\x01\x03\x01\x03\x04", // 教
+ 0x655a: "\x04\x03\x02\x05\x01\x03\x05\x03\x01\x03\x04", // 敚
+ 0x655b: "\x03\x04\x01\x04\x04\x03\x01\x03\x01\x03\x04", // 敛
+ 0x655c: "\x03\x04\x04\x05\x04\x05\x04\x04\x03\x01\x03\x04", // 敜
+ 0x655d: "\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04", // 敝
+ 0x655e: "\x02\x04\x03\x02\x05\x02\x05\x01\x03\x01\x03\x04", // 敞
+ 0x655f: "\x02\x05\x01\x02\x02\x01\x03\x04\x03\x01\x03\x04", // 敟
+ 0x6560: "\x05\x04\x05\x04\x05\x04\x05\x04\x02\x01\x05\x04", // 敠
+ 0x6561: "\x02\x05\x01\x01\x03\x05\x03\x03\x02\x01\x05\x04", // 敡
+ 0x6562: "\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 敢
+ 0x6563: "\x01\x02\x02\x01\x02\x05\x01\x01\x03\x01\x03\x04", // 散
+ 0x6564: "\x02\x05\x01\x01\x01\x02\x03\x04\x02\x01\x05\x04", // 敤
+ 0x6565: "\x04\x03\x03\x04\x04\x03\x03\x04\x02\x01\x05\x04", // 敥
+ 0x6566: "\x04\x01\x02\x05\x01\x05\x02\x01\x03\x01\x03\x04", // 敦
+ 0x6567: "\x01\x03\x04\x01\x02\x05\x01\x02\x02\x01\x05\x04", // 敧
+ 0x6568: "\x04\x01\x04\x03\x01\x02\x05\x01\x03\x01\x03\x04", // 敨
+ 0x6569: "\x04\x04\x03\x04\x05\x05\x02\x01\x03\x01\x03\x04", // 敩
+ 0x656a: "\x05\x04\x05\x04\x05\x04\x05\x04\x03\x01\x03\x04", // 敪
+ 0x656b: "\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x03\x04", // 敫
+ 0x656c: "\x01\x02\x02\x03\x05\x02\x05\x01\x03\x01\x03\x04", // 敬
+ 0x656d: "\x02\x05\x01\x01\x01\x03\x05\x03\x03\x03\x01\x03\x04", // 敭
+ 0x656e: "\x03\x01\x02\x03\x02\x01\x05\x01\x01\x02\x01\x05\x04", // 敮
+ 0x656f: "\x05\x01\x05\x01\x05\x02\x05\x01\x01\x02\x01\x05\x04", // 敯
+ 0x6570: "\x04\x03\x01\x02\x03\x04\x05\x03\x01\x03\x01\x03\x04", // 数
+ 0x6571: "\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01\x02\x01\x05\x04", // 敱
+ 0x6572: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x02\x01\x05\x04", // 敲
+ 0x6573: "\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01\x03\x01\x03\x04", // 敳
+ 0x6574: "\x01\x02\x05\x01\x02\x03\x04\x03\x01\x03\x04\x01\x02\x01\x02\x01", // 整
+ 0x6575: "\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01\x03\x02\x03\x04", // 敵
+ 0x6576: "\x05\x02\x01\x02\x05\x01\x01\x02\x03\x04\x03\x01\x03\x04", // 敶
+ 0x6577: "\x01\x02\x05\x01\x01\x02\x04\x04\x01\x05\x03\x03\x01\x03\x04", // 敷
+ 0x6578: "\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01\x03\x01\x03\x04", // 數
+ 0x6579: "\x02\x01\x04\x05\x03\x04\x03\x01\x02\x03\x04\x03\x01\x03\x04", // 敹
+ 0x657a: "\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05\x02\x01\x05\x04", // 敺
+ 0x657b: "\x03\x05\x02\x05\x03\x04\x02\x05\x01\x01\x01\x03\x05\x04", // 敻
+ 0x657c: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01\x02\x01\x05\x04", // 敼
+ 0x657d: "\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01\x02\x01\x05\x04", // 敽
+ 0x657e: "\x04\x03\x01\x01\x01\x02\x04\x03\x01\x02\x05\x01\x03\x01\x03\x04", // 敾
+ 0x657f: "\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01\x03\x01\x03\x04", // 敿
+ 0x6580: "\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04\x02\x01\x05\x04", // 斀
+ 0x6581: "\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02\x03\x01\x03\x04", // 斁
+ 0x6582: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x03\x01\x03\x04", // 斂
+ 0x6583: "\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04\x01\x03\x05\x04\x03\x05", // 斃
+ 0x6584: "\x01\x01\x02\x03\x04\x03\x01\x03\x04\x01\x03\x01\x03\x04\x03\x04\x02\x03\x04", // 斄
+ 0x6585: "\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x05\x02\x01\x02\x01\x05\x04", // 斅
+ 0x6586: "\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x05\x02\x01\x03\x01\x03\x04", // 斆
+ 0x6587: "\x04\x01\x03\x04", // 文
+ 0x6588: "\x04\x01\x03\x04\x05\x02\x01", // 斈
+ 0x6589: "\x04\x01\x03\x04\x03\x02\x01\x01", // 斉
+ 0x658a: "\x04\x01\x03\x04\x01\x02\x02\x01\x01\x01", // 斊
+ 0x658b: "\x04\x01\x03\x04\x01\x03\x02\x05\x02\x02", // 斋
+ 0x658c: "\x04\x01\x03\x04\x01\x01\x02\x01\x02\x01\x05\x04", // 斌
+ 0x658d: "\x04\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 斍
+ 0x658e: "\x04\x01\x03\x04\x03\x02\x01\x01\x02\x03\x04", // 斎
+ 0x658f: "\x04\x01\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 斏
+ 0x6590: "\x02\x01\x01\x01\x02\x01\x01\x01\x04\x01\x03\x04", // 斐
+ 0x6591: "\x01\x01\x02\x01\x04\x01\x03\x04\x01\x01\x02\x01", // 斑
+ 0x6592: "\x04\x01\x03\x04\x04\x05\x01\x03\x02\x05\x01\x02\x02", // 斒
+ 0x6593: "\x04\x01\x03\x04\x04\x02\x05\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 斓
+ 0x6594: "\x04\x01\x03\x04\x02\x05\x01\x02\x01\x04\x03\x02\x01\x05\x01\x01\x03\x04", // 斔
+ 0x6595: "\x04\x01\x03\x04\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 斕
+ 0x6596: "\x04\x01\x03\x04\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x04\x05\x02\x05\x01\x01\x01", // 斖
+ 0x6597: "\x04\x04\x01\x02", // 斗
+ 0x6598: "\x03\x05\x04\x04\x04\x01\x02", // 斘
+ 0x6599: "\x04\x03\x01\x02\x03\x04\x04\x04\x01\x02", // 料
+ 0x659a: "\x05\x04\x05\x04\x04\x05\x04\x04\x01\x02", // 斚
+ 0x659b: "\x03\x05\x03\x05\x01\x01\x02\x04\x04\x01\x02", // 斛
+ 0x659c: "\x03\x04\x01\x01\x02\x03\x04\x04\x04\x01\x02", // 斜
+ 0x659d: "\x02\x05\x01\x02\x05\x01\x04\x05\x04\x04\x01\x02", // 斝
+ 0x659e: "\x03\x02\x01\x05\x01\x01\x03\x04\x04\x04\x01\x02", // 斞
+ 0x659f: "\x01\x02\x02\x01\x01\x01\x03\x04\x05\x04\x04\x01\x02", // 斟
+ 0x65a0: "\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01\x04\x04\x01\x02", // 斠
+ 0x65a1: "\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04\x04\x04\x01\x02", // 斡
+ 0x65a2: "\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04\x04\x04\x01\x02", // 斢
+ 0x65a3: "\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x01\x02", // 斣
+ 0x65a4: "\x03\x03\x01\x02", // 斤
+ 0x65a5: "\x03\x03\x01\x02\x04", // 斥
+ 0x65a6: "\x03\x03\x01\x02\x03\x03\x01\x02", // 斦
+ 0x65a7: "\x03\x04\x03\x04\x03\x03\x01\x02", // 斧
+ 0x65a8: "\x05\x02\x01\x03\x03\x03\x01\x02", // 斨
+ 0x65a9: "\x01\x05\x02\x01\x03\x03\x01\x02", // 斩
+ 0x65aa: "\x03\x05\x02\x05\x01\x03\x03\x01\x02", // 斪
+ 0x65ab: "\x01\x03\x02\x05\x01\x03\x03\x01\x02", // 斫
+ 0x65ac: "\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02", // 斬
+ 0x65ad: "\x04\x03\x01\x02\x03\x04\x05\x03\x03\x01\x02", // 断
+ 0x65ae: "\x01\x02\x02\x01\x02\x05\x01\x01\x03\x03\x01\x02", // 斮
+ 0x65af: "\x01\x02\x02\x01\x01\x01\x03\x04\x03\x03\x01\x02", // 斯
+ 0x65b0: "\x04\x01\x04\x03\x01\x01\x02\x03\x04\x03\x03\x01\x02", // 新
+ 0x65b1: "\x01\x02\x01\x03\x02\x05\x01\x01\x03\x03\x01\x02", // 斱
+ 0x65b2: "\x05\x05\x01\x05\x05\x01\x05\x01\x02\x01\x03\x03\x01\x02", // 斲
+ 0x65b3: "\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01\x03\x03\x01\x02", // 斳
+ 0x65b4: "\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02\x03\x03\x01\x02", // 斴
+ 0x65b5: "\x03\x05\x04\x05\x03\x01\x02\x01\x05\x05\x01\x02\x01\x03\x03\x01\x02", // 斵
+ 0x65b6: "\x03\x03\x01\x02\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 斶
+ 0x65b7: "\x05\x05\x04\x05\x05\x04\x01\x05\x05\x04\x05\x05\x04\x05\x03\x03\x01\x02", // 斷
+ 0x65b8: "\x05\x01\x03\x02\x04\x01\x03\x04\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04\x03\x03\x01\x02", // 斸
+ 0x65b9: "\x04\x01\x05\x03", // 方
+ 0x65ba: "\x04\x01\x05\x03\x03\x04\x03\x02", // 斺
+ 0x65bb: "\x04\x01\x05\x03\x03\x01\x03\x05", // 斻
+ 0x65bc: "\x04\x01\x05\x03\x03\x04\x04\x04", // 於
+ 0x65bd: "\x04\x01\x05\x03\x03\x01\x05\x02\x05", // 施
+ 0x65be: "\x04\x01\x05\x03\x03\x01\x02\x05\x02", // 斾
+ 0x65bf: "\x04\x01\x05\x03\x03\x01\x05\x02\x01", // 斿
+ 0x65c0: "\x04\x01\x05\x03\x05\x04\x02\x03\x04", // 旀
+ 0x65c1: "\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03", // 旁
+ 0x65c2: "\x04\x01\x05\x03\x03\x01\x03\x03\x01\x02", // 旂
+ 0x65c3: "\x04\x01\x05\x03\x03\x01\x03\x05\x04\x01", // 旃
+ 0x65c4: "\x04\x01\x05\x03\x03\x01\x03\x01\x01\x05", // 旄
+ 0x65c5: "\x04\x01\x05\x03\x03\x01\x03\x05\x03\x04", // 旅
+ 0x65c6: "\x04\x01\x05\x03\x03\x01\x01\x02\x05\x02", // 旆
+ 0x65c7: "\x04\x01\x05\x03\x03\x01\x05\x03\x02\x05\x04", // 旇
+ 0x65c8: "\x04\x01\x05\x03\x04\x01\x05\x04\x03\x02\x05", // 旈
+ 0x65c9: "\x01\x02\x05\x01\x01\x02\x04\x04\x01\x05\x03", // 旉
+ 0x65ca: "\x04\x01\x05\x03\x03\x01\x01\x05\x05\x04", // 旊
+ 0x65cb: "\x04\x01\x05\x03\x03\x01\x05\x02\x01\x03\x04", // 旋
+ 0x65cc: "\x04\x01\x05\x03\x03\x01\x03\x01\x01\x02\x01", // 旌
+ 0x65cd: "\x04\x01\x05\x03\x03\x01\x03\x04\x04\x05\x04", // 旍
+ 0x65ce: "\x04\x01\x05\x03\x03\x01\x05\x01\x03\x03\x05", // 旎
+ 0x65cf: "\x04\x01\x05\x03\x03\x01\x03\x01\x01\x03\x04", // 族
+ 0x65d0: "\x04\x01\x05\x03\x03\x01\x03\x04\x01\x05\x03\x04", // 旐
+ 0x65d1: "\x04\x01\x05\x03\x01\x03\x04\x01\x02\x05\x01\x02", // 旑
+ 0x65d2: "\x04\x01\x05\x03\x03\x01\x04\x01\x05\x04\x03\x02\x05", // 旒
+ 0x65d3: "\x04\x01\x05\x03\x03\x01\x02\x04\x03\x02\x05\x01\x01", // 旓
+ 0x65d4: "\x04\x01\x05\x03\x05\x01\x01\x01\x01\x02\x05\x04", // 旔
+ 0x65d5: "\x04\x01\x05\x03\x03\x04\x04\x04\x02\x05\x01\x03\x05", // 旕
+ 0x65d6: "\x04\x01\x05\x03\x03\x01\x01\x03\x04\x01\x02\x05\x01\x02", // 旖
+ 0x65d7: "\x04\x01\x05\x03\x03\x01\x01\x02\x02\x01\x01\x01\x03\x04", // 旗
+ 0x65d8: "\x04\x01\x05\x03\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05\x03\x04", // 旘
+ 0x65d9: "\x04\x01\x05\x03\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 旙
+ 0x65da: "\x04\x01\x05\x03\x03\x01\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 旚
+ 0x65db: "\x04\x01\x05\x03\x03\x01\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 旛
+ 0x65dc: "\x04\x01\x05\x03\x03\x01\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 旜
+ 0x65dd: "\x04\x01\x05\x03\x03\x01\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 旝
+ 0x65de: "\x04\x01\x05\x03\x03\x01\x04\x03\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 旞
+ 0x65df: "\x04\x01\x05\x03\x03\x01\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 旟
+ 0x65e0: "\x01\x01\x03\x05", // 无
+ 0x65e1: "\x01\x05\x03\x05", // 旡
+ 0x65e2: "\x05\x01\x01\x05\x04\x01\x05\x03\x05", // 既
+ 0x65e3: "\x03\x02\x05\x01\x01\x03\x05\x01\x05\x03\x05", // 旣
+ 0x65e4: "\x02\x05\x05\x02\x05\x02\x05\x01\x01\x05\x03\x05", // 旤
+ 0x65e5: "\x02\x05\x01\x01", // 日
+ 0x65e6: "\x02\x05\x01\x01\x01", // 旦
+ 0x65e7: "\x02\x02\x05\x01\x01", // 旧
+ 0x65e8: "\x03\x05\x02\x05\x01\x01", // 旨
+ 0x65e9: "\x02\x05\x01\x01\x01\x02", // 早
+ 0x65ea: "\x02\x05\x01\x01\x01\x02", // 旪
+ 0x65eb: "\x02\x05\x01\x01\x05\x03", // 旫
+ 0x65ec: "\x03\x05\x02\x05\x01\x01", // 旬
+ 0x65ed: "\x03\x05\x02\x05\x01\x01", // 旭
+ 0x65ee: "\x03\x05\x02\x05\x01\x01", // 旮
+ 0x65ef: "\x02\x05\x01\x01\x03\x05", // 旯
+ 0x65f0: "\x02\x05\x01\x01\x01\x01\x02", // 旰
+ 0x65f1: "\x02\x05\x01\x01\x01\x01\x02", // 旱
+ 0x65f2: "\x02\x05\x01\x01\x01\x03\x04", // 旲
+ 0x65f3: "\x02\x05\x01\x01\x03\x05\x04", // 旳
+ 0x65f4: "\x02\x05\x01\x01\x01\x01\x02", // 旴
+ 0x65f5: "\x02\x05\x01\x01\x02\x05\x02", // 旵
+ 0x65f6: "\x02\x05\x01\x01\x01\x02\x04", // 时
+ 0x65f7: "\x02\x05\x01\x01\x04\x01\x03", // 旷
+ 0x65f8: "\x02\x05\x01\x01\x05\x03\x03", // 旸
+ 0x65f9: "\x05\x02\x02\x01\x02\x05\x01\x01", // 旹
+ 0x65fa: "\x02\x05\x01\x01\x01\x01\x02\x01", // 旺
+ 0x65fb: "\x02\x05\x01\x01\x04\x01\x03\x04", // 旻
+ 0x65fc: "\x02\x05\x01\x01\x04\x01\x03\x04", // 旼
+ 0x65fd: "\x02\x05\x01\x01\x01\x05\x02\x05", // 旽
+ 0x65fe: "\x01\x05\x02\x05\x02\x05\x01\x01", // 旾
+ 0x65ff: "\x02\x05\x01\x01\x03\x01\x01\x02", // 旿
+ 0x6600: "\x02\x05\x01\x01\x03\x05\x04\x01", // 昀
+ 0x6601: "\x02\x05\x01\x01\x01\x02\x05\x02", // 昁
+ 0x6602: "\x02\x05\x01\x01\x03\x05\x05\x02", // 昂
+ 0x6603: "\x02\x05\x01\x01\x01\x03\x03\x04", // 昃
+ 0x6604: "\x02\x05\x01\x01\x03\x03\x05\x04", // 昄
+ 0x6605: "\x02\x05\x01\x01\x03\x05\x04", // 昅
+ 0x6606: "\x02\x05\x01\x01\x01\x05\x03\x05", // 昆
+ 0x6607: "\x02\x05\x01\x01\x03\x01\x03\x02", // 昇
+ 0x6608: "\x02\x05\x01\x01\x04\x05\x01\x03", // 昈
+ 0x6609: "\x02\x05\x01\x01\x04\x01\x05\x03", // 昉
+ 0x660a: "\x02\x05\x01\x01\x01\x01\x03\x04", // 昊
+ 0x660b: "\x01\x01\x03\x04\x02\x05\x01\x01", // 昋
+ 0x660c: "\x02\x05\x01\x01\x02\x05\x01\x01", // 昌
+ 0x660d: "\x02\x05\x01\x01\x02\x05\x01\x01", // 昍
+ 0x660e: "\x02\x05\x01\x01\x03\x05\x01\x01", // 明
+ 0x660f: "\x03\x05\x01\x05\x02\x05\x01\x01", // 昏
+ 0x6610: "\x02\x05\x01\x01\x03\x04\x05\x03", // 昐
+ 0x6611: "\x02\x05\x01\x01\x03\x04\x04\x05", // 昑
+ 0x6612: "\x02\x05\x01\x01\x03\x05\x03\x03", // 昒
+ 0x6613: "\x02\x05\x01\x01\x03\x05\x03\x03", // 易
+ 0x6614: "\x01\x02\x02\x01\x02\x05\x01\x01", // 昔
+ 0x6615: "\x02\x05\x01\x01\x03\x03\x01\x02", // 昕
+ 0x6616: "\x02\x05\x01\x01\x03\x04\x05\x04", // 昖
+ 0x6617: "\x02\x05\x01\x01\x04\x01\x03\x04", // 昗
+ 0x6618: "\x02\x05\x01\x01\x04\x01\x05\x03", // 昘
+ 0x6619: "\x02\x05\x01\x01\x01\x01\x05\x04", // 昙
+ 0x661a: "\x01\x03\x04\x04\x03\x02\x05\x01\x01", // 昚
+ 0x661b: "\x02\x05\x01\x01\x01\x05\x01\x05", // 昛
+ 0x661c: "\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 昜
+ 0x661d: "\x03\x05\x04\x02\x04\x02\x05\x01\x01", // 昝
+ 0x661e: "\x02\x05\x01\x01\x01\x02\x05\x03\x04", // 昞
+ 0x661f: "\x02\x05\x01\x01\x03\x01\x01\x02\x01", // 星
+ 0x6620: "\x02\x05\x01\x01\x02\x05\x01\x03\x04", // 映
+ 0x6621: "\x02\x05\x01\x01\x04\x01\x05\x05\x04", // 昡
+ 0x6622: "\x02\x05\x01\x01\x05\x02\x02\x05\x02", // 昢
+ 0x6623: "\x02\x05\x01\x01\x03\x04\x03\x03\x03", // 昣
+ 0x6624: "\x02\x05\x01\x01\x03\x04\x04\x05\x04", // 昤
+ 0x6625: "\x01\x01\x01\x03\x04\x02\x05\x01\x01", // 春
+ 0x6626: "\x02\x05\x01\x01\x01\x03\x04\x03\x02", // 昦
+ 0x6627: "\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 昧
+ 0x6628: "\x02\x05\x01\x01\x03\x01\x02\x01\x01", // 昨
+ 0x6629: "\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 昩
+ 0x662a: "\x02\x05\x01\x01\x05\x04\x01\x03\x02", // 昪
+ 0x662b: "\x02\x05\x01\x01\x03\x05\x02\x05\x01", // 昫
+ 0x662c: "\x05\x01\x05\x01\x05\x02\x05\x01\x01", // 昬
+ 0x662d: "\x02\x05\x01\x01\x05\x03\x02\x05\x01", // 昭
+ 0x662e: "\x02\x05\x01\x01\x01\x02\x01\x05\x03", // 昮
+ 0x662f: "\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 是
+ 0x6630: "\x02\x05\x01\x01\x01\x02\x01\x02\x01", // 昰
+ 0x6631: "\x02\x05\x01\x01\x04\x01\x04\x03\x01", // 昱
+ 0x6632: "\x02\x05\x01\x01\x05\x01\x05\x03\x02", // 昲
+ 0x6633: "\x02\x05\x01\x01\x03\x01\x01\x03\x04", // 昳
+ 0x6634: "\x02\x05\x01\x01\x03\x05\x03\x05\x02", // 昴
+ 0x6635: "\x02\x05\x01\x01\x05\x01\x03\x03\x05", // 昵
+ 0x6636: "\x04\x05\x05\x03\x04\x02\x05\x01\x01", // 昶
+ 0x6637: "\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 昷
+ 0x6638: "\x02\x05\x01\x01\x03\x05\x04\x04\x04", // 昸
+ 0x6639: "\x02\x05\x01\x01\x04\x05\x05\x03\x04", // 昹
+ 0x663a: "\x02\x05\x01\x01\x01\x02\x05\x03\x04", // 昺
+ 0x663b: "\x02\x05\x01\x01\x01\x02\x01\x05\x02", // 昻
+ 0x663c: "\x05\x01\x03\x04\x02\x05\x01\x01\x01", // 昼
+ 0x663d: "\x02\x05\x01\x01\x01\x03\x05\x03\x04", // 昽
+ 0x663e: "\x02\x05\x01\x01\x02\x02\x04\x03\x01", // 显
+ 0x663f: "\x02\x05\x01\x01\x04\x01\x03\x05\x04", // 昿
+ 0x6640: "\x02\x05\x01\x01\x03\x04\x01\x05\x03\x04", // 晀
+ 0x6641: "\x02\x05\x01\x01\x03\x04\x01\x05\x03\x04", // 晁
+ 0x6642: "\x02\x05\x01\x01\x01\x02\x01\x01\x02\x04", // 時
+ 0x6643: "\x02\x05\x01\x01\x02\x04\x03\x01\x03\x05", // 晃
+ 0x6644: "\x02\x05\x01\x01\x02\x04\x03\x01\x03\x05", // 晄
+ 0x6645: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01", // 晅
+ 0x6646: "\x02\x05\x01\x01\x01\x02\x01\x01\x02\x01", // 晆
+ 0x6647: "\x02\x05\x01\x01\x01\x03\x04\x01\x01\x05", // 晇
+ 0x6648: "\x02\x05\x01\x01\x04\x01\x03\x04\x03\x04", // 晈
+ 0x6649: "\x01\x05\x04\x05\x04\x01\x02\x05\x01\x01", // 晉
+ 0x664a: "\x02\x05\x01\x01\x01\x05\x04\x01\x02\x01", // 晊
+ 0x664b: "\x01\x02\x02\x04\x03\x01\x02\x05\x01\x01", // 晋
+ 0x664c: "\x02\x05\x01\x01\x03\x02\x05\x02\x05\x01", // 晌
+ 0x664d: "\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01", // 晍
+ 0x664e: "\x02\x05\x01\x01\x01\x02\x02\x01\x03\x04", // 晎
+ 0x664f: "\x02\x05\x01\x01\x04\x04\x05\x05\x03\x01", // 晏
+ 0x6650: "\x02\x05\x01\x01\x04\x01\x05\x03\x03\x04", // 晐
+ 0x6651: "\x02\x05\x01\x01\x03\x02\x05\x02\x05\x01", // 晑
+ 0x6652: "\x02\x05\x01\x01\x01\x02\x05\x03\x05\x01", // 晒
+ 0x6653: "\x02\x05\x01\x01\x01\x05\x03\x01\x03\x05", // 晓
+ 0x6654: "\x02\x05\x01\x01\x03\x02\x03\x05\x01\x02", // 晔
+ 0x6655: "\x02\x05\x01\x01\x04\x05\x01\x05\x01\x02", // 晕
+ 0x6656: "\x02\x05\x01\x01\x04\x05\x01\x05\x01\x02", // 晖
+ 0x6657: "\x02\x05\x01\x01\x03\x04\x04\x05\x02\x05\x01", // 晗
+ 0x6658: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x01\x02", // 晘
+ 0x6659: "\x02\x05\x01\x01\x05\x04\x03\x04\x03\x05\x04", // 晙
+ 0x665a: "\x02\x05\x01\x01\x03\x05\x02\x05\x01\x03\x05", // 晚
+ 0x665b: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 晛
+ 0x665c: "\x02\x05\x01\x01\x04\x03\x05\x01\x05\x02\x03", // 晜
+ 0x665d: "\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01", // 晝
+ 0x665e: "\x02\x05\x01\x01\x03\x04\x01\x03\x02\x05\x02", // 晞
+ 0x665f: "\x02\x05\x01\x01\x01\x03\x05\x05\x03\x04", // 晟
+ 0x6660: "\x02\x05\x01\x01\x01\x03\x05\x05\x03\x04", // 晠
+ 0x6661: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x02\x04", // 晡
+ 0x6662: "\x01\x02\x01\x03\x03\x01\x02\x02\x05\x01\x01", // 晢
+ 0x6663: "\x02\x05\x01\x01\x01\x02\x01\x03\x03\x01\x02", // 晣
+ 0x6664: "\x02\x05\x01\x01\x01\x02\x05\x01\x02\x05\x01", // 晤
+ 0x6665: "\x02\x05\x01\x01\x04\x04\x05\x01\x01\x03\x05", // 晥
+ 0x6666: "\x02\x05\x01\x01\x03\x01\x05\x05\x04\x01\x04", // 晦
+ 0x6667: "\x02\x05\x01\x01\x03\x01\x02\x01\x02\x05\x01", // 晧
+ 0x6668: "\x02\x05\x01\x01\x01\x03\x01\x01\x05\x03\x04", // 晨
+ 0x6669: "\x02\x05\x01\x01\x03\x05\x02\x05\x02\x01\x03\x05", // 晩
+ 0x666a: "\x02\x05\x01\x01\x02\x05\x01\x02\x02\x01\x03\x04", // 晪
+ 0x666b: "\x02\x05\x01\x01\x02\x01\x02\x05\x01\x01\x01\x02", // 晫
+ 0x666c: "\x02\x05\x01\x01\x04\x01\x03\x04\x03\x04\x01\x02", // 晬
+ 0x666d: "\x02\x05\x01\x01\x03\x05\x01\x02\x01\x02\x05\x01", // 晭
+ 0x666e: "\x04\x03\x01\x02\x02\x04\x03\x01\x02\x05\x01\x01", // 普
+ 0x666f: "\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x03\x04", // 景
+ 0x6670: "\x02\x05\x01\x01\x01\x02\x03\x04\x03\x03\x01\x02", // 晰
+ 0x6671: "\x02\x05\x01\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 晱
+ 0x6672: "\x02\x05\x01\x01\x03\x02\x01\x05\x01\x01\x03\x05", // 晲
+ 0x6673: "\x01\x02\x03\x04\x03\x03\x01\x02\x02\x05\x01\x01", // 晳
+ 0x6674: "\x02\x05\x01\x01\x01\x01\x02\x01\x02\x05\x01\x01", // 晴
+ 0x6675: "\x04\x05\x01\x03\x03\x01\x03\x04\x02\x05\x01\x01", // 晵
+ 0x6676: "\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01", // 晶
+ 0x6677: "\x02\x05\x01\x01\x03\x05\x04\x02\x04\x02\x05\x01", // 晷
+ 0x6678: "\x02\x05\x01\x01\x01\x02\x01\x02\x01\x03\x01\x03\x04", // 晸
+ 0x6679: "\x02\x05\x01\x01\x02\x05\x01\x01\x03\x05\x03\x03", // 晹
+ 0x667a: "\x03\x01\x01\x03\x04\x02\x05\x01\x02\x05\x01\x01", // 智
+ 0x667b: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x05", // 晻
+ 0x667c: "\x02\x05\x01\x01\x04\x04\x05\x03\x05\x04\x05\x05", // 晼
+ 0x667d: "\x02\x05\x01\x01\x01\x02\x03\x04\x01\x02\x03\x04", // 晽
+ 0x667e: "\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x03\x04", // 晾
+ 0x667f: "\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01", // 晿
+ 0x6680: "\x02\x05\x01\x01\x03\x03\x02\x04\x01\x01\x02\x01", // 暀
+ 0x6681: "\x02\x05\x01\x01\x01\x02\x01\x02\x02\x01\x03\x05", // 暁
+ 0x6682: "\x01\x05\x02\x01\x03\x03\x01\x02\x02\x05\x01\x01", // 暂
+ 0x6683: "\x02\x05\x01\x01\x02\x01\x01\x01\x02\x01\x01\x01", // 暃
+ 0x6684: "\x02\x05\x01\x01\x04\x04\x05\x01\x02\x05\x01\x01\x01", // 暄
+ 0x6685: "\x02\x05\x01\x01\x04\x04\x02\x01\x02\x05\x01\x01\x01", // 暅
+ 0x6686: "\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x05\x02\x05", // 暆
+ 0x6687: "\x02\x05\x01\x01\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 暇
+ 0x6688: "\x02\x05\x01\x01\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 暈
+ 0x6689: "\x02\x05\x01\x01\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 暉
+ 0x668a: "\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 暊
+ 0x668b: "\x05\x01\x05\x01\x05\x03\x01\x03\x04\x02\x05\x01\x01", // 暋
+ 0x668c: "\x02\x05\x01\x01\x05\x04\x03\x03\x04\x01\x01\x03\x04", // 暌
+ 0x668d: "\x02\x05\x01\x01\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 暍
+ 0x668e: "\x02\x05\x01\x01\x01\x02\x02\x02\x05\x01\x03\x04", // 暎
+ 0x668f: "\x02\x05\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 暏
+ 0x6690: "\x02\x05\x01\x01\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 暐
+ 0x6691: "\x02\x05\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 暑
+ 0x6692: "\x02\x05\x01\x01\x02\x05\x01\x01\x03\x01\x01\x02\x01", // 暒
+ 0x6693: "\x05\x04\x05\x02\x03\x03\x01\x03\x04\x02\x05\x01\x01", // 暓
+ 0x6694: "\x02\x05\x01\x01\x01\x02\x02\x05\x04\x03\x01\x01\x02", // 暔
+ 0x6695: "\x02\x05\x01\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 暕
+ 0x6696: "\x02\x05\x01\x01\x03\x04\x04\x03\x01\x01\x03\x05\x04", // 暖
+ 0x6697: "\x02\x05\x01\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 暗
+ 0x6698: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 暘
+ 0x6699: "\x02\x05\x01\x01\x01\x01\x01\x03\x04\x02\x05\x01\x01", // 暙
+ 0x669a: "\x02\x05\x01\x01\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02", // 暚
+ 0x669b: "\x02\x05\x01\x01\x04\x03\x01\x01\x01\x03\x01\x02\x01", // 暛
+ 0x669c: "\x04\x01\x04\x03\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 暜
+ 0x669d: "\x02\x05\x01\x01\x04\x05\x02\x05\x01\x01\x04\x01\x03\x04", // 暝
+ 0x669e: "\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 暞
+ 0x669f: "\x02\x05\x01\x01\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 暟
+ 0x66a0: "\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 暠
+ 0x66a1: "\x02\x05\x01\x01\x03\x04\x05\x04\x05\x04\x01\x05\x04\x01", // 暡
+ 0x66a2: "\x02\x05\x01\x01\x02\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 暢
+ 0x66a3: "\x02\x05\x01\x01\x03\x01\x01\x05\x04\x03\x01\x02\x03\x04", // 暣
+ 0x66a4: "\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04\x01\x02", // 暤
+ 0x66a5: "\x02\x05\x01\x01\x02\x05\x01\x01\x04\x04\x05\x05\x03\x01", // 暥
+ 0x66a6: "\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x02\x05\x01\x01", // 暦
+ 0x66a7: "\x02\x05\x01\x01\x03\x04\x04\x03\x04\x05\x01\x03\x05\x04", // 暧
+ 0x66a8: "\x05\x01\x01\x05\x04\x01\x05\x03\x05\x02\x05\x01\x01\x01", // 暨
+ 0x66a9: "\x02\x05\x01\x01\x03\x05\x04\x04\x05\x04\x01\x01\x02\x03\x04", // 暩
+ 0x66aa: "\x02\x05\x01\x01\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04", // 暪
+ 0x66ab: "\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02\x02\x05\x01\x01", // 暫
+ 0x66ac: "\x01\x02\x01\x03\x04\x01\x02\x01\x03\x05\x04\x02\x05\x01\x01", // 暬
+ 0x66ad: "\x02\x05\x01\x01\x03\x02\x05\x01\x01\x04\x01\x03\x04\x01\x02", // 暭
+ 0x66ae: "\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01", // 暮
+ 0x66af: "\x02\x05\x01\x01\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 暯
+ 0x66b0: "\x02\x05\x01\x01\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04", // 暰
+ 0x66b1: "\x02\x05\x01\x01\x01\x01\x02\x02\x01\x03\x02\x05\x01\x05", // 暱
+ 0x66b2: "\x02\x05\x01\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02", // 暲
+ 0x66b3: "\x02\x05\x01\x01\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x01", // 暳
+ 0x66b4: "\x02\x05\x01\x01\x01\x02\x02\x01\x03\x04\x02\x04\x01\x03\x04", // 暴
+ 0x66b5: "\x02\x05\x01\x01\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 暵
+ 0x66b6: "\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x05\x02\x01\x03\x04", // 暶
+ 0x66b7: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04", // 暷
+ 0x66b8: "\x02\x05\x01\x01\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 暸
+ 0x66b9: "\x02\x05\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x04\x05\x04", // 暹
+ 0x66ba: "\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 暺
+ 0x66bb: "\x02\x05\x01\x01\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x03\x04", // 暻
+ 0x66bc: "\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04\x02\x05\x01\x01", // 暼
+ 0x66bd: "\x02\x05\x01\x01\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 暽
+ 0x66be: "\x02\x05\x01\x01\x04\x01\x02\x05\x01\x05\x02\x01\x03\x01\x03\x04", // 暾
+ 0x66bf: "\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01", // 暿
+ 0x66c0: "\x02\x05\x01\x01\x01\x02\x01\x04\x05\x01\x02\x05\x01\x03\x04\x01", // 曀
+ 0x66c1: "\x03\x02\x05\x01\x01\x01\x05\x01\x05\x03\x05\x02\x05\x01\x01\x01", // 曁
+ 0x66c2: "\x02\x05\x01\x01\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 曂
+ 0x66c3: "\x02\x05\x01\x01\x05\x01\x01\x02\x04\x01\x03\x04\x04\x05\x04", // 曃
+ 0x66c4: "\x02\x05\x01\x01\x01\x02\x02\x01\x01\x02\x01\x02\x01\x01\x02", // 曄
+ 0x66c5: "\x02\x05\x01\x01\x01\x02\x02\x01\x01\x02\x02\x01\x01\x02", // 曅
+ 0x66c6: "\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x01", // 曆
+ 0x66c7: "\x02\x05\x01\x01\x01\x04\x05\x02\x04\x04\x04\x04\x01\x01\x05\x04", // 曇
+ 0x66c8: "\x02\x05\x01\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 曈
+ 0x66c9: "\x02\x05\x01\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 曉
+ 0x66ca: "\x02\x05\x01\x01\x05\x01\x05\x03\x02\x02\x05\x01\x01\x01\x03\x04", // 曊
+ 0x66cb: "\x02\x05\x01\x01\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 曋
+ 0x66cc: "\x02\x05\x01\x01\x03\x05\x01\x01\x04\x04\x05\x03\x04\x01\x02\x01", // 曌
+ 0x66cd: "\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x04\x01\x03\x04\x01\x02", // 曍
+ 0x66ce: "\x02\x05\x01\x01\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 曎
+ 0x66cf: "\x02\x05\x01\x01\x05\x05\x03\x04\x05\x01\x01\x05\x04\x05\x02", // 曏
+ 0x66d0: "\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01\x03\x01\x01\x02\x01", // 曐
+ 0x66d1: "\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01\x03\x04\x03\x03\x03", // 曑
+ 0x66d2: "\x02\x05\x01\x01\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x03\x04", // 曒
+ 0x66d3: "\x02\x05\x01\x01\x05\x02\x02\x05\x02\x01\x03\x04\x01\x02\x03\x04\x01", // 曓
+ 0x66d4: "\x02\x05\x01\x01\x01\x02\x02\x03\x05\x02\x05\x01\x03\x01\x03\x04", // 曔
+ 0x66d5: "\x02\x05\x01\x01\x03\x05\x01\x03\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 曕
+ 0x66d6: "\x02\x05\x01\x01\x03\x04\x04\x03\x04\x05\x04\x05\x04\x04\x03\x05\x04", // 曖
+ 0x66d7: "\x02\x05\x01\x01\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x02\x03\x04", // 曗
+ 0x66d8: "\x02\x05\x01\x01\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02", // 曘
+ 0x66d9: "\x02\x05\x01\x01\x02\x05\x02\x02\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 曙
+ 0x66da: "\x02\x05\x01\x01\x01\x02\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 曚
+ 0x66db: "\x02\x05\x01\x01\x03\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 曛
+ 0x66dc: "\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 曜
+ 0x66dd: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x04\x02\x04\x01\x03\x04", // 曝
+ 0x66de: "\x02\x05\x01\x01\x01\x03\x01\x02\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 曞
+ 0x66df: "\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x01\x01\x05\x03\x04", // 曟
+ 0x66e0: "\x02\x05\x01\x01\x04\x01\x03\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 曠
+ 0x66e1: "\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01\x04\x05\x02\x05\x01\x01\x01", // 曡
+ 0x66e2: "\x02\x05\x01\x01\x04\x04\x05\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 曢
+ 0x66e3: "\x02\x05\x01\x01\x01\x02\x02\x01\x02\x05\x01\x02\x01\x01\x03\x05\x04\x04\x04\x04", // 曣
+ 0x66e4: "\x02\x05\x01\x01\x01\x04\x05\x02\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 曤
+ 0x66e5: "\x02\x05\x01\x01\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 曥
+ 0x66e6: "\x02\x05\x01\x01\x04\x03\x01\x01\x02\x01\x03\x01\x02\x03\x04\x01\x05\x05\x03\x04", // 曦
+ 0x66e7: "\x02\x05\x01\x01\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x02\x05\x01\x02\x01\x04", // 曧
+ 0x66e8: "\x02\x05\x01\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x05\x01\x05\x01\x01\x01", // 曨
+ 0x66e9: "\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 曩
+ 0x66ea: "\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 曪
+ 0x66eb: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01", // 曫
+ 0x66ec: "\x02\x05\x01\x01\x01\x02\x05\x04\x01\x02\x05\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 曬
+ 0x66ed: "\x02\x05\x01\x01\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 曭
+ 0x66ee: "\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01\x01\x03\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 曮
+ 0x66ef: "\x02\x05\x01\x01\x05\x01\x03\x02\x04\x01\x03\x04\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 曯
+ 0x66f0: "\x02\x05\x01\x01", // 曰
+ 0x66f1: "\x02\x05\x01\x01\x02", // 曱
+ 0x66f2: "\x02\x05\x01\x02\x02\x01", // 曲
+ 0x66f3: "\x02\x05\x01\x01\x05\x03", // 曳
+ 0x66f4: "\x01\x02\x05\x01\x01\x03\x04", // 更
+ 0x66f5: "\x02\x05\x01\x01\x05\x03\x04", // 曵
+ 0x66f6: "\x03\x05\x03\x03\x02\x05\x01\x01", // 曶
+ 0x66f7: "\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 曷
+ 0x66f8: "\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01", // 書
+ 0x66f9: "\x01\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01", // 曹
+ 0x66fa: "\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01", // 曺
+ 0x66fb: "\x02\x05\x01\x01\x03\x05\x04\x01\x05\x02", // 曻
+ 0x66fc: "\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 曼
+ 0x66fd: "\x04\x03\x02\x05\x01\x02\x01\x02\x05\x01\x01", // 曽
+ 0x66fe: "\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 曾
+ 0x66ff: "\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01", // 替
+ 0x6700: "\x02\x05\x01\x01\x01\x02\x02\x01\x01\x01\x05\x04", // 最
+ 0x6701: "\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x01", // 朁
+ 0x6702: "\x02\x05\x01\x01\x01\x02\x02\x01\x01\x01\x05\x03", // 朂
+ 0x6703: "\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 會
+ 0x6704: "\x02\x05\x01\x01\x02\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 朄
+ 0x6705: "\x01\x02\x01\x05\x04\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 朅
+ 0x6706: "\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01\x03\x05\x03\x03", // 朆
+ 0x6707: "\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x01\x02", // 朇
+ 0x6708: "\x03\x05\x01\x01", // 月
+ 0x6709: "\x01\x03\x02\x05\x01\x01", // 有
+ 0x670a: "\x03\x05\x01\x01\x01\x01\x03\x05", // 朊
+ 0x670b: "\x03\x05\x01\x01\x03\x05\x01\x01", // 朋
+ 0x670c: "\x03\x05\x01\x01\x03\x04\x05\x03", // 朌
+ 0x670d: "\x03\x05\x01\x01\x05\x02\x05\x04", // 服
+ 0x670e: "\x03\x05\x01\x01\x03\x04\x04\x05\x04", // 朎
+ 0x670f: "\x03\x05\x01\x01\x05\x02\x02\x05\x02", // 朏
+ 0x6710: "\x03\x05\x01\x01\x03\x05\x02\x05\x01", // 朐
+ 0x6711: "\x03\x05\x01\x01\x01\x02\x02\x01\x05", // 朑
+ 0x6712: "\x03\x05\x01\x01\x02\x05\x03\x04\x03\x04", // 朒
+ 0x6713: "\x03\x05\x01\x01\x03\x04\x01\x05\x03\x04", // 朓
+ 0x6714: "\x04\x03\x01\x05\x02\x03\x03\x05\x01\x01", // 朔
+ 0x6715: "\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04", // 朕
+ 0x6716: "\x03\x05\x01\x01\x04\x05\x01\x01\x05\x03\x04", // 朖
+ 0x6717: "\x04\x05\x01\x01\x05\x04\x03\x05\x01\x01", // 朗
+ 0x6718: "\x03\x05\x01\x01\x05\x04\x03\x04\x03\x05\x04", // 朘
+ 0x6719: "\x02\x05\x03\x04\x02\x05\x01\x03\x05\x01\x01", // 朙
+ 0x671a: "\x04\x01\x05\x02\x05\x01\x01\x03\x05\x01\x01", // 朚
+ 0x671b: "\x04\x01\x05\x03\x05\x01\x01\x01\x01\x02\x01", // 望
+ 0x671c: "\x03\x05\x01\x01\x04\x01\x02\x05\x01\x05\x02\x01", // 朜
+ 0x671d: "\x01\x02\x02\x05\x01\x01\x01\x02\x03\x05\x01\x01", // 朝
+ 0x671e: "\x01\x02\x02\x01\x01\x01\x03\x04\x02\x05\x01\x01", // 朞
+ 0x671f: "\x01\x02\x02\x01\x01\x01\x03\x04\x03\x05\x01\x01", // 期
+ 0x6720: "\x03\x05\x01\x01\x01\x02\x02\x02\x05\x01\x03\x04", // 朠
+ 0x6721: "\x03\x05\x01\x01\x03\x04\x05\x02\x03\x04\x03\x05\x04", // 朡
+ 0x6722: "\x01\x02\x05\x01\x02\x05\x03\x05\x01\x01\x01\x01\x02\x01", // 朢
+ 0x6723: "\x03\x05\x01\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 朣
+ 0x6724: "\x03\x05\x01\x01\x03\x05\x01\x01\x03\x05\x01\x01\x03\x05\x01\x01", // 朤
+ 0x6725: "\x03\x05\x01\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x05\x03", // 朥
+ 0x6726: "\x03\x05\x01\x01\x01\x02\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 朦
+ 0x6727: "\x03\x05\x01\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x05\x01\x05\x01\x01\x01", // 朧
+ 0x6728: "\x01\x02\x03\x04", // 木
+ 0x6729: "\x01\x02\x03\x04", // 朩
+ 0x672a: "\x01\x01\x02\x03\x04", // 未
+ 0x672b: "\x01\x01\x02\x03\x04", // 末
+ 0x672c: "\x01\x02\x03\x04\x01", // 本
+ 0x672d: "\x01\x02\x03\x04\x05", // 札
+ 0x672e: "\x01\x02\x03\x05\x04", // 朮
+ 0x672f: "\x01\x02\x03\x04\x04", // 术
+ 0x6730: "\x01\x02\x03\x04\x05", // 朰
+ 0x6731: "\x03\x01\x01\x02\x03\x04", // 朱
+ 0x6732: "\x01\x02\x03\x04\x03\x04", // 朲
+ 0x6733: "\x01\x02\x03\x04\x03\x04", // 朳
+ 0x6734: "\x01\x02\x03\x04\x02\x04", // 朴
+ 0x6735: "\x03\x05\x01\x02\x03\x04", // 朵
+ 0x6736: "\x05\x03\x01\x02\x03\x04", // 朶
+ 0x6737: "\x01\x02\x03\x04\x05\x03", // 朷
+ 0x6738: "\x01\x02\x03\x04\x05\x03", // 朸
+ 0x6739: "\x01\x02\x03\x04\x03\x05", // 朹
+ 0x673a: "\x01\x02\x03\x04\x03\x05", // 机
+ 0x673b: "\x01\x02\x03\x04\x05\x02", // 朻
+ 0x673c: "\x01\x02\x03\x04\x03\x05", // 朼
+ 0x673d: "\x01\x02\x03\x04\x01\x05", // 朽
+ 0x673e: "\x01\x02\x03\x04\x01\x02", // 朾
+ 0x673f: "\x01\x02\x05\x02\x03\x04", // 朿
+ 0x6740: "\x03\x04\x01\x02\x03\x04", // 杀
+ 0x6741: "\x01\x02\x03\x04\x03\x04", // 杁
+ 0x6742: "\x03\x05\x01\x02\x03\x04", // 杂
+ 0x6743: "\x01\x02\x03\x04\x05\x04", // 权
+ 0x6744: "\x01\x02\x03\x04\x03\x01\x02", // 杄
+ 0x6745: "\x01\x02\x03\x04\x01\x01\x02", // 杅
+ 0x6746: "\x01\x02\x03\x04\x01\x01\x02", // 杆
+ 0x6747: "\x01\x02\x03\x04\x01\x01\x05", // 杇
+ 0x6748: "\x01\x02\x03\x04\x05\x04\x04", // 杈
+ 0x6749: "\x01\x02\x03\x04\x03\x03\x03", // 杉
+ 0x674a: "\x01\x02\x03\x04\x03\x02\x02", // 杊
+ 0x674b: "\x01\x02\x03\x04\x03\x05\x04", // 杋
+ 0x674c: "\x01\x02\x03\x04\x01\x03\x05", // 杌
+ 0x674d: "\x01\x02\x03\x04\x05\x02\x01", // 杍
+ 0x674e: "\x01\x02\x03\x04\x05\x02\x01", // 李
+ 0x674f: "\x01\x02\x03\x04\x02\x05\x01", // 杏
+ 0x6750: "\x01\x02\x03\x04\x01\x02\x03", // 材
+ 0x6751: "\x01\x02\x03\x04\x01\x02\x04", // 村
+ 0x6752: "\x01\x02\x03\x04\x05\x03\x04", // 杒
+ 0x6753: "\x01\x02\x03\x04\x03\x05\x04", // 杓
+ 0x6754: "\x01\x02\x03\x04\x03\x01\x05", // 杔
+ 0x6755: "\x01\x02\x03\x04\x01\x03\x04", // 杕
+ 0x6756: "\x01\x02\x03\x04\x01\x03\x04", // 杖
+ 0x6757: "\x04\x01\x05\x01\x02\x03\x04", // 杗
+ 0x6758: "\x05\x01\x03\x01\x02\x03\x04", // 杘
+ 0x6759: "\x01\x02\x03\x04\x01\x05\x04", // 杙
+ 0x675a: "\x01\x02\x03\x04\x03\x01\x05", // 杚
+ 0x675b: "\x01\x02\x03\x04\x05\x01\x05", // 杛
+ 0x675c: "\x01\x02\x03\x04\x01\x02\x01", // 杜
+ 0x675d: "\x01\x02\x03\x04\x05\x02\x05", // 杝
+ 0x675e: "\x01\x02\x03\x04\x05\x01\x05", // 杞
+ 0x675f: "\x01\x02\x05\x01\x02\x03\x04", // 束
+ 0x6760: "\x01\x02\x03\x04\x01\x02\x01", // 杠
+ 0x6761: "\x03\x05\x04\x01\x02\x03\x04", // 条
+ 0x6762: "\x01\x02\x03\x04\x01\x02\x01", // 杢
+ 0x6763: "\x01\x02\x03\x04\x02\x05\x02", // 杣
+ 0x6764: "\x01\x02\x03\x04\x01\x05\x03", // 杤
+ 0x6765: "\x01\x04\x03\x01\x02\x03\x04", // 来
+ 0x6766: "\x01\x02\x03\x04\x03\x05\x04", // 杦
+ 0x6767: "\x01\x02\x03\x04\x04\x01\x05", // 杧
+ 0x6768: "\x01\x02\x03\x04\x05\x03\x03", // 杨
+ 0x6769: "\x01\x02\x03\x04\x05\x05\x01", // 杩
+ 0x676a: "\x01\x02\x03\x04\x02\x03\x04\x03", // 杪
+ 0x676b: "\x01\x02\x03\x04\x02\x01\x02\x01", // 杫
+ 0x676c: "\x01\x02\x03\x04\x01\x01\x03\x05", // 杬
+ 0x676d: "\x01\x02\x03\x04\x04\x01\x03\x05", // 杭
+ 0x676e: "\x01\x02\x03\x04\x01\x02\x05\x02", // 杮
+ 0x676f: "\x01\x02\x03\x04\x01\x03\x02\x04", // 杯
+ 0x6770: "\x01\x02\x03\x04\x04\x04\x04\x04", // 杰
+ 0x6771: "\x01\x02\x05\x01\x01\x02\x03\x04", // 東
+ 0x6772: "\x02\x05\x01\x01\x01\x02\x03\x04", // 杲
+ 0x6773: "\x01\x02\x03\x04\x02\x05\x01\x01", // 杳
+ 0x6774: "\x01\x02\x03\x04\x03\x05\x03\x04", // 杴
+ 0x6775: "\x01\x02\x03\x04\x03\x01\x01\x02", // 杵
+ 0x6776: "\x01\x02\x03\x04\x01\x05\x02\x05", // 杶
+ 0x6777: "\x01\x02\x03\x04\x05\x02\x01\x05", // 杷
+ 0x6778: "\x01\x02\x03\x04\x03\x05\x05\x04", // 杸
+ 0x6779: "\x01\x02\x03\x04\x03\x02\x03\x05", // 杹
+ 0x677a: "\x01\x02\x03\x04\x04\x05\x04\x04", // 杺
+ 0x677b: "\x01\x02\x03\x04\x05\x02\x01\x01", // 杻
+ 0x677c: "\x01\x02\x03\x04\x05\x04\x05\x02", // 杼
+ 0x677d: "\x01\x02\x03\x04\x03\x01\x01\x02", // 杽
+ 0x677e: "\x01\x02\x03\x04\x03\x04\x05\x04", // 松
+ 0x677f: "\x01\x02\x03\x04\x03\x03\x05\x04", // 板
+ 0x6780: "\x03\x04\x05\x04\x01\x02\x03\x04", // 枀
+ 0x6781: "\x01\x02\x03\x04\x03\x05\x04", // 极
+ 0x6782: "\x01\x02\x03\x04\x03\x05\x01\x01", // 枂
+ 0x6783: "\x01\x02\x03\x04\x03\x05\x04\x01", // 枃
+ 0x6784: "\x01\x02\x03\x04\x03\x05\x05\x04", // 构
+ 0x6785: "\x01\x02\x03\x04\x01\x01\x03\x02", // 枅
+ 0x6786: "\x01\x02\x03\x04\x03\x01\x01\x05", // 枆
+ 0x6787: "\x01\x02\x03\x04\x01\x05\x03\x05", // 枇
+ 0x6788: "\x01\x05\x03\x05\x01\x02\x03\x04", // 枈
+ 0x6789: "\x01\x02\x03\x04\x01\x01\x02\x01", // 枉
+ 0x678a: "\x01\x02\x03\x04\x03\x05\x05\x02", // 枊
+ 0x678b: "\x01\x02\x03\x04\x04\x01\x05\x03", // 枋
+ 0x678c: "\x01\x02\x03\x04\x03\x04\x05\x03", // 枌
+ 0x678d: "\x01\x02\x03\x04\x03\x04\x01\x05", // 枍
+ 0x678e: "\x01\x02\x03\x04\x01\x01\x03\x04", // 枎
+ 0x678f: "\x01\x02\x03\x04\x02\x05\x01\x01", // 枏
+ 0x6790: "\x01\x02\x03\x04\x03\x03\x01\x02", // 析
+ 0x6791: "\x01\x02\x03\x04\x01\x05\x05\x01", // 枑
+ 0x6792: "\x01\x02\x03\x04\x01\x05\x02\x03", // 枒
+ 0x6793: "\x01\x02\x03\x04\x04\x04\x01\x02", // 枓
+ 0x6794: "\x01\x02\x03\x04\x03\x04\x04\x05", // 枔
+ 0x6795: "\x01\x02\x03\x04\x04\x05\x03\x05", // 枕
+ 0x6796: "\x01\x02\x03\x04\x03\x01\x03\x04", // 枖
+ 0x6797: "\x01\x02\x03\x04\x01\x02\x03\x04", // 林
+ 0x6798: "\x01\x02\x03\x04\x02\x05\x03\x04", // 枘
+ 0x6799: "\x01\x02\x03\x04\x01\x03\x05\x05", // 枙
+ 0x679a: "\x01\x02\x03\x04\x03\x01\x03\x04", // 枚
+ 0x679b: "\x01\x02\x03\x04\x03\x03\x02\x04", // 枛
+ 0x679c: "\x02\x05\x01\x01\x01\x02\x03\x04", // 果
+ 0x679d: "\x01\x02\x03\x04\x01\x02\x05\x04", // 枝
+ 0x679e: "\x01\x02\x03\x04\x03\x04\x03\x04", // 枞
+ 0x679f: "\x01\x02\x03\x04\x01\x01\x05\x04", // 枟
+ 0x67a0: "\x01\x02\x03\x04\x03\x05\x01\x02", // 枠
+ 0x67a1: "\x01\x02\x03\x04\x03\x01\x03\x02", // 枡
+ 0x67a2: "\x01\x02\x03\x04\x01\x03\x04\x05", // 枢
+ 0x67a3: "\x01\x02\x05\x02\x03\x04\x04\x04", // 枣
+ 0x67a4: "\x01\x02\x03\x04\x01\x03\x04\x04", // 枤
+ 0x67a5: "\x01\x02\x03\x04\x01\x03\x05\x03", // 枥
+ 0x67a6: "\x01\x02\x03\x04\x04\x05\x01\x03", // 枦
+ 0x67a7: "\x01\x02\x03\x04\x02\x05\x03\x05", // 枧
+ 0x67a8: "\x01\x02\x03\x04\x03\x01\x05\x04", // 枨
+ 0x67a9: "\x01\x02\x03\x04\x03\x04\x05\x04", // 枩
+ 0x67aa: "\x01\x02\x03\x04\x03\x04\x05\x05", // 枪
+ 0x67ab: "\x01\x02\x03\x04\x03\x05\x03\x04", // 枫
+ 0x67ac: "\x01\x02\x03\x04\x03\x05\x04\x01", // 枬
+ 0x67ad: "\x03\x05\x04\x05\x01\x02\x03\x04", // 枭
+ 0x67ae: "\x01\x02\x03\x04\x02\x01\x02\x05\x01", // 枮
+ 0x67af: "\x01\x02\x03\x04\x01\x02\x02\x05\x01", // 枯
+ 0x67b0: "\x01\x02\x03\x04\x01\x04\x03\x01\x02", // 枰
+ 0x67b1: "\x01\x02\x03\x04\x05\x04\x02\x05\x01", // 枱
+ 0x67b2: "\x05\x04\x02\x05\x01\x01\x02\x03\x04", // 枲
+ 0x67b3: "\x01\x02\x03\x04\x02\x05\x01\x03\x04", // 枳
+ 0x67b4: "\x01\x02\x03\x04\x02\x05\x01\x05\x03", // 枴
+ 0x67b5: "\x01\x02\x03\x04\x02\x05\x01\x01\x05", // 枵
+ 0x67b6: "\x05\x03\x02\x05\x01\x01\x02\x03\x04", // 架
+ 0x67b7: "\x01\x02\x03\x04\x05\x03\x02\x05\x01", // 枷
+ 0x67b8: "\x01\x02\x03\x04\x03\x05\x02\x05\x01", // 枸
+ 0x67b9: "\x01\x02\x03\x04\x03\x05\x05\x01\x05", // 枹
+ 0x67ba: "\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 枺
+ 0x67bb: "\x01\x02\x03\x04\x01\x02\x02\x01\x05", // 枻
+ 0x67bc: "\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 枼
+ 0x67bd: "\x01\x02\x01\x02\x02\x01\x01\x02\x03\x04", // 枽
+ 0x67be: "\x01\x02\x03\x04\x01\x03\x01\x02\x02", // 枾
+ 0x67bf: "\x01\x02\x03\x04\x01\x02\x01\x03\x02", // 枿
+ 0x67c0: "\x01\x02\x03\x04\x05\x03\x02\x05\x04", // 柀
+ 0x67c1: "\x01\x02\x03\x04\x04\x04\x05\x03\x05", // 柁
+ 0x67c2: "\x01\x02\x03\x04\x03\x01\x05\x02\x05", // 柂
+ 0x67c3: "\x01\x02\x03\x04\x03\x04\x04\x05\x04", // 柃
+ 0x67c4: "\x01\x02\x03\x04\x01\x02\x05\x03\x04", // 柄
+ 0x67c5: "\x01\x02\x03\x04\x05\x01\x03\x03\x05", // 柅
+ 0x67c6: "\x01\x02\x03\x04\x04\x01\x04\x03\x01", // 柆
+ 0x67c7: "\x01\x02\x03\x04\x03\x01\x02\x03\x04", // 柇
+ 0x67c8: "\x01\x02\x03\x04\x04\x03\x01\x01\x02", // 柈
+ 0x67c9: "\x01\x02\x03\x04\x03\x04\x05\x04", // 柉
+ 0x67ca: "\x01\x02\x03\x04\x03\x05\x04\x04\x04", // 柊
+ 0x67cb: "\x03\x02\x01\x05\x04\x01\x02\x03\x04", // 柋
+ 0x67cc: "\x01\x02\x03\x04\x05\x01\x02\x05\x01", // 柌
+ 0x67cd: "\x01\x02\x03\x04\x02\x05\x01\x03\x04", // 柍
+ 0x67ce: "\x01\x02\x03\x04\x03\x02\x01\x02\x04", // 柎
+ 0x67cf: "\x01\x02\x03\x04\x03\x02\x05\x01\x01", // 柏
+ 0x67d0: "\x01\x02\x02\x01\x01\x01\x02\x03\x04", // 某
+ 0x67d1: "\x01\x02\x03\x04\x01\x02\x02\x01\x01", // 柑
+ 0x67d2: "\x04\x04\x01\x01\x05\x01\x02\x03\x04", // 柒
+ 0x67d3: "\x04\x04\x01\x03\x05\x01\x02\x03\x04", // 染
+ 0x67d4: "\x05\x04\x05\x02\x03\x01\x02\x03\x04", // 柔
+ 0x67d5: "\x01\x02\x03\x04\x05\x04\x05\x02\x03", // 柕
+ 0x67d6: "\x01\x02\x03\x04\x05\x03\x02\x05\x01", // 柖
+ 0x67d7: "\x01\x02\x03\x04\x03\x04\x02\x05\x01", // 柗
+ 0x67d8: "\x01\x02\x03\x04\x01\x03\x02\x05\x01", // 柘
+ 0x67d9: "\x01\x02\x03\x04\x02\x05\x01\x01\x02", // 柙
+ 0x67da: "\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 柚
+ 0x67db: "\x01\x02\x03\x04\x02\x05\x01\x01\x02", // 柛
+ 0x67dc: "\x01\x02\x03\x04\x01\x05\x01\x05", // 柜
+ 0x67dd: "\x01\x02\x03\x04\x03\x03\x01\x02\x04", // 柝
+ 0x67de: "\x01\x02\x03\x04\x03\x01\x02\x01\x01", // 柞
+ 0x67df: "\x01\x02\x03\x04\x02\x05\x02\x01\x01", // 柟
+ 0x67e0: "\x01\x02\x03\x04\x04\x04\x05\x01\x02", // 柠
+ 0x67e1: "\x01\x02\x03\x04\x01\x01\x02\x05\x03\x04", // 柡
+ 0x67e2: "\x01\x02\x03\x04\x03\x05\x01\x05\x04", // 柢
+ 0x67e3: "\x01\x02\x03\x04\x03\x01\x01\x03\x04", // 柣
+ 0x67e4: "\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 柤
+ 0x67e5: "\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 查
+ 0x67e6: "\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 柦
+ 0x67e7: "\x01\x02\x03\x04\x03\x03\x05\x04\x04", // 柧
+ 0x67e8: "\x01\x02\x03\x04\x01\x03\x02\x05\x02", // 柨
+ 0x67e9: "\x01\x02\x03\x04\x01\x03\x05\x04\x05", // 柩
+ 0x67ea: "\x01\x02\x03\x04\x05\x05\x04\x05\x03", // 柪
+ 0x67eb: "\x01\x02\x03\x04\x05\x01\x05\x03\x02", // 柫
+ 0x67ec: "\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 柬
+ 0x67ed: "\x01\x02\x03\x04\x01\x03\x05\x04\x04", // 柭
+ 0x67ee: "\x01\x02\x03\x04\x05\x02\x02\x05\x02", // 柮
+ 0x67ef: "\x01\x02\x03\x04\x01\x02\x05\x01\x02", // 柯
+ 0x67f0: "\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 柰
+ 0x67f1: "\x01\x02\x03\x04\x04\x01\x01\x02\x01", // 柱
+ 0x67f2: "\x01\x02\x03\x04\x04\x05\x04\x03\x04", // 柲
+ 0x67f3: "\x01\x02\x03\x04\x03\x05\x03\x05\x02", // 柳
+ 0x67f4: "\x02\x01\x02\x01\x03\x05\x01\x02\x03\x04", // 柴
+ 0x67f5: "\x01\x02\x03\x04\x02\x05\x02\x02\x01", // 柵
+ 0x67f6: "\x01\x02\x03\x04\x02\x05\x03\x05\x01", // 柶
+ 0x67f7: "\x01\x02\x03\x04\x02\x05\x01\x03\x05", // 柷
+ 0x67f8: "\x01\x02\x03\x04\x01\x03\x02\x04\x01", // 柸
+ 0x67f9: "\x01\x02\x03\x04\x03\x05\x02\x03", // 柹
+ 0x67fa: "\x01\x02\x03\x04\x02\x05\x01\x05\x03", // 柺
+ 0x67fb: "\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 査
+ 0x67fc: "\x01\x02\x03\x04\x04\x04\x05\x03\x04", // 柼
+ 0x67fd: "\x01\x02\x03\x04\x05\x04\x01\x02\x01", // 柽
+ 0x67fe: "\x01\x02\x03\x04\x01\x02\x01\x02\x01", // 柾
+ 0x67ff: "\x01\x02\x03\x04\x04\x01\x02\x05\x02", // 柿
+ 0x6800: "\x01\x02\x03\x04\x03\x03\x01\x05\x05", // 栀
+ 0x6801: "\x01\x02\x03\x04\x03\x05\x04\x05\x02", // 栁
+ 0x6802: "\x01\x02\x03\x04\x05\x05\x04\x01\x04", // 栂
+ 0x6803: "\x01\x02\x03\x04\x03\x03\x01\x05\x03", // 栃
+ 0x6804: "\x04\x04\x03\x04\x05\x01\x02\x03\x04", // 栄
+ 0x6805: "\x01\x02\x03\x04\x03\x05\x03\x05\x01", // 栅
+ 0x6806: "\x01\x02\x05\x01\x02\x03\x04\x04\x04", // 栆
+ 0x6807: "\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 标
+ 0x6808: "\x01\x02\x03\x04\x01\x01\x05\x03\x04", // 栈
+ 0x6809: "\x01\x02\x03\x04\x01\x02\x02\x05\x02", // 栉
+ 0x680a: "\x01\x02\x03\x04\x01\x03\x05\x03\x04", // 栊
+ 0x680b: "\x01\x02\x03\x04\x01\x05\x02\x03\x04", // 栋
+ 0x680c: "\x01\x02\x03\x04\x02\x01\x05\x01\x03", // 栌
+ 0x680d: "\x01\x02\x03\x04\x03\x01\x01\x02\x01", // 栍
+ 0x680e: "\x01\x02\x03\x04\x03\x05\x02\x03\x04", // 栎
+ 0x680f: "\x01\x02\x03\x04\x04\x03\x01\x01\x01", // 栏
+ 0x6810: "\x01\x02\x03\x04\x04\x05\x05\x03\x04", // 栐
+ 0x6811: "\x01\x02\x03\x04\x05\x04\x01\x02\x04", // 树
+ 0x6812: "\x01\x02\x03\x04\x03\x05\x02\x05\x01\x01", // 栒
+ 0x6813: "\x01\x02\x03\x04\x03\x04\x01\x01\x02\x01", // 栓
+ 0x6814: "\x01\x01\x01\x02\x05\x03\x01\x02\x03\x04", // 栔
+ 0x6815: "\x01\x02\x03\x04\x01\x02\x05\x01\x02\x05", // 栕
+ 0x6816: "\x01\x02\x03\x04\x01\x02\x05\x03\x05\x01", // 栖
+ 0x6817: "\x01\x02\x05\x02\x02\x01\x01\x02\x03\x04", // 栗
+ 0x6818: "\x01\x02\x03\x04\x03\x05\x04\x03\x05\x04", // 栘
+ 0x6819: "\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 栙
+ 0x681a: "\x01\x02\x03\x04\x04\x03\x01\x01\x03\x04", // 栚
+ 0x681b: "\x01\x02\x03\x04\x05\x03\x05\x03\x05\x03", // 栛
+ 0x681c: "\x01\x02\x03\x04\x01\x02\x05\x02\x03\x04", // 栜
+ 0x681d: "\x01\x02\x03\x04\x03\x01\x02\x02\x05\x01", // 栝
+ 0x681e: "\x01\x01\x03\x01\x01\x02\x01\x02\x03\x04", // 栞
+ 0x681f: "\x01\x02\x03\x04\x04\x03\x01\x01\x03\x02", // 栟
+ 0x6820: "\x03\x02\x03\x01\x02\x01\x01\x02\x03\x04", // 栠
+ 0x6821: "\x01\x02\x03\x04\x04\x01\x03\x04\x03\x04", // 校
+ 0x6822: "\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01", // 栢
+ 0x6823: "\x01\x02\x03\x04\x03\x02\x03\x01\x02\x01", // 栣
+ 0x6824: "\x01\x02\x03\x04\x04\x01\x02\x05\x03\x04", // 栤
+ 0x6825: "\x04\x01\x03\x05\x03\x04\x01\x02\x03\x04", // 栥
+ 0x6826: "\x01\x02\x03\x04\x04\x03\x04\x02\x04\x02", // 栦
+ 0x6827: "\x01\x02\x03\x04\x02\x05\x01\x01\x05\x03", // 栧
+ 0x6828: "\x01\x02\x03\x04\x04\x01\x03\x05\x03\x04", // 栨
+ 0x6829: "\x01\x02\x03\x04\x05\x04\x01\x05\x04\x01", // 栩
+ 0x682a: "\x01\x02\x03\x04\x03\x01\x01\x02\x03\x04", // 株
+ 0x682b: "\x01\x02\x03\x04\x01\x03\x02\x05\x02\x01", // 栫
+ 0x682c: "\x01\x02\x03\x04\x03\x05\x05\x02\x01\x05", // 栬
+ 0x682d: "\x01\x02\x03\x04\x01\x03\x02\x05\x02\x02", // 栭
+ 0x682e: "\x01\x02\x03\x04\x01\x02\x02\x01\x01\x01", // 栮
+ 0x682f: "\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01", // 栯
+ 0x6830: "\x01\x02\x03\x04\x03\x02\x01\x05\x03\x04", // 栰
+ 0x6831: "\x01\x02\x03\x04\x01\x02\x02\x01\x03\x04", // 栱
+ 0x6832: "\x01\x02\x03\x04\x01\x02\x01\x03\x01\x05", // 栲
+ 0x6833: "\x01\x02\x03\x04\x01\x02\x01\x03\x03\x05", // 栳
+ 0x6834: "\x01\x02\x03\x04\x03\x01\x03\x05\x04\x01", // 栴
+ 0x6835: "\x01\x02\x03\x04\x01\x03\x05\x04\x02\x02", // 栵
+ 0x6836: "\x01\x02\x03\x04\x02\x05\x01\x03\x04\x01", // 栶
+ 0x6837: "\x01\x02\x03\x04\x04\x03\x01\x01\x01\x02", // 样
+ 0x6838: "\x01\x02\x03\x04\x04\x01\x05\x03\x03\x04", // 核
+ 0x6839: "\x01\x02\x03\x04\x05\x01\x01\x05\x03\x04", // 根
+ 0x683a: "\x01\x02\x03\x04\x03\x05\x02\x05\x01\x01", // 栺
+ 0x683b: "\x01\x02\x03\x04\x01\x01\x02\x01\x05\x04", // 栻
+ 0x683c: "\x01\x02\x03\x04\x03\x05\x04\x02\x05\x01", // 格
+ 0x683d: "\x01\x02\x01\x01\x02\x03\x04\x05\x03\x04", // 栽
+ 0x683e: "\x04\x01\x02\x02\x03\x04\x01\x02\x03\x04", // 栾
+ 0x683f: "\x01\x02\x03\x04\x03\x02\x01\x03\x04\x04", // 栿
+ 0x6840: "\x03\x05\x04\x01\x05\x02\x01\x02\x03\x04", // 桀
+ 0x6841: "\x01\x02\x03\x04\x03\x03\x02\x01\x01\x02", // 桁
+ 0x6842: "\x01\x02\x03\x04\x01\x02\x01\x01\x02\x01", // 桂
+ 0x6843: "\x01\x02\x03\x04\x03\x04\x01\x05\x03\x04", // 桃
+ 0x6844: "\x01\x02\x03\x04\x02\x04\x03\x01\x03\x05", // 桄
+ 0x6845: "\x01\x02\x03\x04\x03\x05\x01\x03\x05\x05", // 桅
+ 0x6846: "\x01\x02\x03\x04\x01\x01\x01\x02\x01\x05", // 框
+ 0x6847: "\x05\x03\x01\x02\x05\x01\x01\x02\x03\x04", // 桇
+ 0x6848: "\x04\x04\x05\x05\x03\x01\x01\x02\x03\x04", // 案
+ 0x6849: "\x01\x02\x03\x04\x04\x04\x05\x05\x03\x01", // 桉
+ 0x684a: "\x04\x03\x01\x01\x03\x04\x01\x02\x03\x04", // 桊
+ 0x684b: "\x01\x02\x03\x04\x01\x05\x01\x05\x03\x04", // 桋
+ 0x684c: "\x02\x01\x02\x05\x01\x01\x01\x02\x03\x04", // 桌
+ 0x684d: "\x01\x02\x03\x04\x01\x03\x04\x01\x01\x05", // 桍
+ 0x684e: "\x01\x02\x03\x04\x01\x05\x04\x01\x02\x01", // 桎
+ 0x684f: "\x01\x02\x03\x04\x01\x02\x01\x05\x02", // 桏
+ 0x6850: "\x01\x02\x03\x04\x02\x05\x01\x02\x05\x01", // 桐
+ 0x6851: "\x05\x04\x05\x04\x05\x04\x01\x02\x03\x04", // 桑
+ 0x6852: "\x01\x02\x01\x02\x02\x01\x02\x03\x04", // 桒
+ 0x6853: "\x01\x02\x03\x04\x01\x02\x05\x01\x01\x01", // 桓
+ 0x6854: "\x01\x02\x03\x04\x01\x02\x01\x02\x05\x01", // 桔
+ 0x6855: "\x01\x02\x03\x04\x03\x02\x01\x05\x01\x01", // 桕
+ 0x6856: "\x01\x02\x03\x04\x03\x02\x05\x02\x02\x01", // 桖
+ 0x6857: "\x01\x02\x03\x04\x05\x03\x01\x02\x03\x04", // 桗
+ 0x6858: "\x01\x02\x03\x04\x03\x02\x05\x01\x05\x01", // 桘
+ 0x6859: "\x01\x02\x03\x04\x05\x04\x03\x01\x01\x02", // 桙
+ 0x685a: "\x01\x02\x03\x04\x05\x05\x05\x03\x05\x04", // 桚
+ 0x685b: "\x01\x02\x03\x04\x02\x01\x01\x01\x02\x04", // 桛
+ 0x685c: "\x01\x02\x03\x04\x04\x04\x03\x05\x03\x01", // 桜
+ 0x685d: "\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 桝
+ 0x685e: "\x01\x02\x03\x04\x03\x05\x04\x05\x02", // 桞
+ 0x685f: "\x01\x02\x03\x04\x01\x01\x01\x05\x03\x04", // 桟
+ 0x6860: "\x01\x02\x03\x04\x01\x02\x02\x04\x03\x01", // 桠
+ 0x6861: "\x01\x02\x03\x04\x01\x05\x03\x01\x03\x05", // 桡
+ 0x6862: "\x01\x02\x03\x04\x02\x01\x02\x05\x03\x04", // 桢
+ 0x6863: "\x01\x02\x03\x04\x02\x04\x03\x05\x01\x01", // 档
+ 0x6864: "\x01\x02\x03\x04\x02\x05\x02\x05\x01\x05", // 桤
+ 0x6865: "\x01\x02\x03\x04\x03\x01\x03\x04\x03\x02", // 桥
+ 0x6866: "\x01\x02\x03\x04\x03\x02\x03\x05\x01\x02", // 桦
+ 0x6867: "\x01\x02\x03\x04\x03\x04\x01\x01\x05\x04", // 桧
+ 0x6868: "\x04\x01\x02\x03\x05\x04\x01\x02\x03\x04", // 桨
+ 0x6869: "\x01\x02\x03\x04\x04\x01\x03\x01\x02\x01", // 桩
+ 0x686a: "\x01\x02\x03\x04\x05\x01\x01\x01\x02\x04", // 桪
+ 0x686b: "\x01\x02\x03\x04\x04\x04\x01\x02\x03\x04\x03", // 桫
+ 0x686c: "\x04\x04\x01\x02\x03\x04\x03\x01\x02\x03\x04", // 桬
+ 0x686d: "\x01\x02\x03\x04\x01\x03\x01\x01\x05\x03\x04", // 桭
+ 0x686e: "\x01\x02\x03\x04\x01\x03\x02\x04\x02\x05\x01", // 桮
+ 0x686f: "\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x01", // 桯
+ 0x6870: "\x01\x02\x03\x04\x03\x05\x01\x05\x02\x05\x01", // 桰
+ 0x6871: "\x01\x02\x03\x04\x01\x05\x05\x05\x01\x02\x01", // 桱
+ 0x6872: "\x01\x02\x03\x04\x01\x02\x04\x05\x05\x02\x01", // 桲
+ 0x6873: "\x01\x02\x03\x04\x05\x04\x01\x03\x04\x01\x02", // 桳
+ 0x6874: "\x01\x02\x03\x04\x03\x04\x04\x03\x05\x02\x01", // 桴
+ 0x6875: "\x01\x02\x03\x04\x03\x04\x04\x03\x05\x03\x01", // 桵
+ 0x6876: "\x01\x02\x03\x04\x05\x04\x02\x05\x01\x01\x02", // 桶
+ 0x6877: "\x01\x02\x03\x04\x03\x05\x03\x05\x01\x01\x02", // 桷
+ 0x6878: "\x01\x02\x03\x04\x03\x04\x01\x03\x02\x05\x02", // 桸
+ 0x6879: "\x01\x02\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 桹
+ 0x687a: "\x01\x02\x03\x04\x01\x01\x05\x03\x05\x01\x02", // 桺
+ 0x687b: "\x01\x02\x03\x04\x03\x05\x04\x01\x01\x01\x02", // 桻
+ 0x687c: "\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04", // 桼
+ 0x687d: "\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x01", // 桽
+ 0x687e: "\x01\x02\x03\x04\x05\x01\x01\x03\x02\x05\x01", // 桾
+ 0x687f: "\x01\x02\x03\x04\x02\x05\x01\x01\x01\x01\x02", // 桿
+ 0x6880: "\x01\x02\x03\x04\x01\x02\x05\x01\x02\x03\x04", // 梀
+ 0x6881: "\x04\x04\x01\x05\x03\x04\x04\x01\x02\x03\x04", // 梁
+ 0x6882: "\x01\x02\x03\x04\x01\x02\x04\x01\x03\x04\x04", // 梂
+ 0x6883: "\x01\x02\x03\x04\x03\x01\x02\x01\x05\x04", // 梃
+ 0x6884: "\x01\x02\x03\x04\x01\x02\x05\x03\x05\x01\x01", // 梄
+ 0x6885: "\x01\x02\x03\x04\x03\x01\x05\x05\x04\x01\x04", // 梅
+ 0x6886: "\x01\x02\x03\x04\x01\x01\x01\x03\x05\x02", // 梆
+ 0x6887: "\x01\x02\x03\x04\x01\x01\x02\x01\x01\x03\x02", // 梇
+ 0x6888: "\x01\x02\x03\x04\x04\x01\x02\x05\x01\x05\x02", // 梈
+ 0x6889: "\x01\x02\x03\x04\x05\x02\x01\x03\x01\x02\x01", // 梉
+ 0x688a: "\x01\x02\x01\x03\x03\x01\x02\x01\x02\x03\x04", // 梊
+ 0x688b: "\x01\x02\x03\x04\x02\x05\x01\x02\x05\x01\x01", // 梋
+ 0x688c: "\x01\x02\x03\x04\x03\x04\x01\x01\x02\x03\x04", // 梌
+ 0x688d: "\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05", // 梍
+ 0x688e: "\x01\x02\x03\x04\x03\x02\x05\x01\x01\x03\x05", // 梎
+ 0x688f: "\x01\x02\x03\x04\x03\x01\x02\x01\x02\x05\x01", // 梏
+ 0x6890: "\x01\x02\x03\x04\x01\x05\x03\x05\x01\x02\x01", // 梐
+ 0x6891: "\x01\x02\x03\x04\x03\x05\x03\x04\x03\x03\x04", // 梑
+ 0x6892: "\x01\x02\x03\x04\x03\x04\x04\x05\x02\x05\x01", // 梒
+ 0x6893: "\x01\x02\x03\x04\x04\x01\x04\x03\x01\x01\x02", // 梓
+ 0x6894: "\x01\x02\x03\x04\x03\x03\x01\x05\x02\x01\x05", // 梔
+ 0x6895: "\x01\x02\x03\x04\x05\x03\x04\x04\x05\x04\x04", // 梕
+ 0x6896: "\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 梖
+ 0x6897: "\x01\x02\x03\x04\x01\x02\x05\x01\x01\x03\x04", // 梗
+ 0x6898: "\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 梘
+ 0x6899: "\x01\x02\x03\x04\x02\x05\x01\x02\x05\x01\x02", // 梙
+ 0x689a: "\x01\x02\x03\x04\x03\x05\x02\x05\x01\x03\x05", // 梚
+ 0x689b: "\x01\x02\x03\x04\x05\x01\x01\x03\x05\x02", // 梛
+ 0x689c: "\x01\x02\x03\x04\x01\x03\x04\x03\x04\x03\x04", // 梜
+ 0x689d: "\x03\x02\x02\x03\x05\x04\x01\x02\x03\x04", // 條
+ 0x689e: "\x01\x02\x03\x04\x05\x01\x05\x04\x05\x04\x04", // 梞
+ 0x689f: "\x03\x02\x05\x01\x01\x01\x05\x01\x02\x03\x04", // 梟
+ 0x68a0: "\x01\x02\x03\x04\x02\x05\x01\x02\x05\x01", // 梠
+ 0x68a1: "\x01\x02\x03\x04\x04\x04\x05\x01\x01\x03\x05", // 梡
+ 0x68a2: "\x01\x02\x03\x04\x02\x04\x03\x02\x05\x01\x01", // 梢
+ 0x68a3: "\x01\x02\x03\x04\x02\x05\x02\x03\x04\x04\x05", // 梣
+ 0x68a4: "\x01\x02\x03\x04\x02\x05\x02\x03\x04\x05\x03", // 梤
+ 0x68a5: "\x04\x04\x05\x03\x04\x05\x04\x01\x02\x03\x04", // 梥
+ 0x68a6: "\x01\x02\x03\x04\x01\x02\x03\x04\x03\x05\x04", // 梦
+ 0x68a7: "\x01\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01", // 梧
+ 0x68a8: "\x03\x01\x02\x03\x04\x02\x02\x01\x02\x03\x04", // 梨
+ 0x68a9: "\x01\x02\x03\x04\x02\x05\x01\x01\x02\x01\x01", // 梩
+ 0x68aa: "\x01\x02\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 梪
+ 0x68ab: "\x01\x02\x03\x04\x05\x01\x01\x04\x05\x05\x04", // 梫
+ 0x68ac: "\x01\x02\x03\x04\x02\x05\x01\x02\x01\x01\x05", // 梬
+ 0x68ad: "\x01\x02\x03\x04\x05\x04\x03\x04\x03\x05\x04", // 梭
+ 0x68ae: "\x01\x02\x03\x04\x05\x01\x03\x05\x02\x05\x01", // 梮
+ 0x68af: "\x01\x02\x03\x04\x04\x03\x05\x01\x05\x02\x03", // 梯
+ 0x68b0: "\x01\x02\x03\x04\x01\x01\x03\x02\x05\x03\x04", // 械
+ 0x68b1: "\x01\x02\x03\x04\x02\x05\x01\x02\x03\x04\x01", // 梱
+ 0x68b2: "\x01\x02\x03\x04\x03\x04\x02\x05\x01\x03\x05", // 梲
+ 0x68b3: "\x01\x02\x03\x04\x04\x01\x05\x04\x03\x02\x05", // 梳
+ 0x68b4: "\x01\x02\x03\x04\x03\x02\x01\x05\x05\x04", // 梴
+ 0x68b5: "\x01\x02\x03\x04\x01\x02\x03\x04\x03\x05\x04", // 梵
+ 0x68b6: "\x01\x02\x03\x04\x05\x01\x03\x03\x01\x01\x05", // 梶
+ 0x68b7: "\x02\x01\x02\x05\x01\x05\x04\x01\x02\x03\x04", // 梷
+ 0x68b8: "\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x02", // 梸
+ 0x68b9: "\x01\x02\x03\x04\x03\x02\x01\x02\x01\x03\x04", // 梹
+ 0x68ba: "\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x04", // 梺
+ 0x68bb: "\x01\x02\x03\x04\x03\x02\x05\x01\x05\x03\x02", // 梻
+ 0x68bc: "\x01\x02\x03\x04\x01\x01\x01\x03\x01\x02\x04", // 梼
+ 0x68bd: "\x01\x02\x03\x04\x01\x02\x01\x04\x05\x04\x04", // 梽
+ 0x68be: "\x01\x02\x03\x04\x01\x04\x03\x01\x02\x03\x04", // 梾
+ 0x68bf: "\x01\x02\x03\x04\x01\x05\x01\x02\x04\x05\x04", // 梿
+ 0x68c0: "\x01\x02\x03\x04\x03\x04\x01\x04\x04\x03\x01", // 检
+ 0x68c1: "\x01\x02\x03\x04\x04\x03\x02\x05\x01\x03\x05", // 棁
+ 0x68c2: "\x01\x02\x03\x04\x05\x01\x01\x04\x03\x03\x04", // 棂
+ 0x68c3: "\x03\x01\x02\x03\x04\x03\x05\x03\x01\x02\x03\x04", // 棃
+ 0x68c4: "\x04\x01\x05\x04\x01\x02\x02\x01\x01\x02\x03\x04", // 棄
+ 0x68c5: "\x01\x02\x03\x04\x03\x01\x05\x01\x01\x02\x03\x04", // 棅
+ 0x68c6: "\x01\x02\x03\x04\x03\x04\x01\x02\x05\x01\x02\x02", // 棆
+ 0x68c7: "\x01\x02\x03\x04\x03\x04\x05\x04\x04\x05\x04\x04", // 棇
+ 0x68c8: "\x01\x02\x03\x04\x01\x01\x02\x01\x02\x05\x01\x01", // 棈
+ 0x68c9: "\x01\x02\x03\x04\x03\x02\x05\x01\x01\x02\x05\x02", // 棉
+ 0x68ca: "\x01\x02\x02\x01\x01\x01\x03\x04\x01\x02\x03\x04", // 棊
+ 0x68cb: "\x01\x02\x03\x04\x01\x02\x02\x01\x01\x01\x03\x04", // 棋
+ 0x68cc: "\x01\x02\x03\x04\x03\x04\x04\x03\x01\x02\x03\x04", // 棌
+ 0x68cd: "\x01\x02\x03\x04\x02\x05\x01\x01\x01\x05\x03\x05", // 棍
+ 0x68ce: "\x01\x02\x03\x04\x04\x05\x03\x04\x01\x02\x03\x04", // 棎
+ 0x68cf: "\x01\x02\x03\x04\x02\x05\x01\x01\x01\x01\x02\x04", // 棏
+ 0x68d0: "\x02\x01\x01\x01\x02\x01\x01\x01\x01\x02\x03\x04", // 棐
+ 0x68d1: "\x01\x02\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01", // 棑
+ 0x68d2: "\x01\x02\x03\x04\x01\x01\x01\x03\x04\x01\x01\x02", // 棒
+ 0x68d3: "\x01\x02\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01", // 棓
+ 0x68d4: "\x01\x02\x03\x04\x03\x05\x01\x05\x02\x05\x01\x01", // 棔
+ 0x68d5: "\x01\x02\x03\x04\x04\x04\x05\x01\x01\x02\x03\x04", // 棕
+ 0x68d6: "\x01\x02\x03\x04\x01\x02\x01\x01\x01\x05\x03\x04", // 棖
+ 0x68d7: "\x01\x02\x05\x02\x03\x04\x01\x02\x05\x02\x03\x04", // 棗
+ 0x68d8: "\x01\x02\x05\x02\x03\x04\x01\x02\x05\x02\x03\x04", // 棘
+ 0x68d9: "\x01\x02\x03\x04\x04\x05\x01\x03\x01\x03\x04\x04", // 棙
+ 0x68da: "\x01\x02\x03\x04\x03\x05\x01\x01\x03\x05\x01\x01", // 棚
+ 0x68db: "\x01\x02\x03\x04\x04\x01\x05\x04\x02\x05\x01\x01", // 棛
+ 0x68dc: "\x01\x02\x03\x04\x04\x01\x05\x03\x03\x04\x04\x04", // 棜
+ 0x68dd: "\x01\x02\x03\x04\x02\x05\x01\x02\x02\x05\x01\x01", // 棝
+ 0x68de: "\x01\x02\x03\x04\x02\x05\x03\x01\x02\x03\x04\x01", // 棞
+ 0x68df: "\x01\x02\x03\x04\x01\x02\x05\x01\x01\x02\x03\x04", // 棟
+ 0x68e0: "\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x03\x04", // 棠
+ 0x68e1: "\x01\x02\x03\x04\x02\x05\x04\x03\x01\x02\x05\x02", // 棡
+ 0x68e2: "\x01\x02\x03\x04\x02\x05\x04\x03\x01\x04\x01\x05", // 棢
+ 0x68e3: "\x01\x02\x03\x04\x05\x01\x01\x02\x04\x01\x03\x04", // 棣
+ 0x68e4: "\x01\x02\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01", // 棤
+ 0x68e5: "\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x03\x04", // 棥
+ 0x68e6: "\x01\x02\x03\x04\x03\x05\x05\x01\x01\x02", // 棦
+ 0x68e7: "\x01\x02\x03\x04\x01\x05\x03\x04\x01\x05\x03\x04", // 棧
+ 0x68e8: "\x04\x05\x01\x03\x03\x01\x03\x04\x01\x02\x03\x04", // 棨
+ 0x68e9: "\x01\x02\x03\x04\x03\x02\x01\x01\x05\x05\x02\x01\x02", // 棩
+ 0x68ea: "\x01\x02\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04", // 棪
+ 0x68eb: "\x01\x02\x03\x04\x01\x02\x05\x01\x01\x05\x03\x04", // 棫
+ 0x68ec: "\x01\x02\x03\x04\x04\x03\x01\x01\x03\x04\x05\x05", // 棬
+ 0x68ed: "\x01\x02\x03\x04\x04\x01\x03\x02\x03\x05\x04\x04", // 棭
+ 0x68ee: "\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04", // 森
+ 0x68ef: "\x01\x02\x03\x04\x03\x04\x04\x05\x04\x05\x04\x04", // 棯
+ 0x68f0: "\x01\x02\x03\x04\x03\x01\x02\x01\x02\x02\x01\x01", // 棰
+ 0x68f1: "\x01\x02\x03\x04\x01\x02\x01\x03\x04\x03\x05\x04", // 棱
+ 0x68f2: "\x01\x02\x03\x04\x01\x05\x01\x01\x02\x05\x03\x01", // 棲
+ 0x68f3: "\x01\x02\x03\x04\x05\x04\x05\x04\x05\x04\x05\x04", // 棳
+ 0x68f4: "\x01\x02\x03\x04\x03\x05\x01\x01\x05\x02\x05\x04", // 棴
+ 0x68f5: "\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x03\x04", // 棵
+ 0x68f6: "\x01\x02\x03\x04\x01\x03\x04\x03\x04\x02\x03\x04", // 棶
+ 0x68f7: "\x01\x02\x03\x04\x01\x02\x02\x01\x01\x01\x05\x04", // 棷
+ 0x68f8: "\x01\x02\x02\x01\x01\x01\x05\x04\x01\x02\x03\x04", // 棸
+ 0x68f9: "\x01\x02\x03\x04\x02\x01\x02\x05\x01\x01\x01\x02", // 棹
+ 0x68fa: "\x01\x02\x03\x04\x04\x04\x05\x02\x05\x01\x05\x01", // 棺
+ 0x68fb: "\x01\x02\x02\x03\x04\x05\x03\x01\x02\x03\x04", // 棻
+ 0x68fc: "\x01\x02\x03\x04\x01\x02\x03\x04\x03\x04\x05\x03", // 棼
+ 0x68fd: "\x01\x02\x03\x04\x01\x02\x03\x04\x03\x04\x04\x05", // 棽
+ 0x68fe: "\x01\x02\x03\x04\x01\x02\x03\x04\x04\x05\x03\x05", // 棾
+ 0x68ff: "\x01\x02\x03\x04\x03\x02\x01\x05\x01\x01\x03\x05", // 棿
+ 0x6900: "\x01\x02\x03\x04\x04\x04\x05\x03\x05\x04\x05\x05", // 椀
+ 0x6901: "\x01\x02\x03\x04\x04\x01\x02\x05\x01\x05\x02\x01", // 椁
+ 0x6902: "\x01\x02\x03\x04\x05\x01\x01\x02\x04\x01\x03\x04", // 椂
+ 0x6903: "\x01\x02\x03\x04\x02\x01\x05\x03\x01\x05\x03\x05", // 椃
+ 0x6904: "\x01\x02\x03\x04\x04\x01\x04\x03\x01\x05\x03\x01", // 椄
+ 0x6905: "\x01\x02\x03\x04\x01\x03\x04\x01\x02\x05\x01\x02", // 椅
+ 0x6906: "\x01\x02\x03\x04\x03\x05\x01\x02\x01\x02\x05\x01", // 椆
+ 0x6907: "\x01\x02\x03\x04\x02\x05\x01\x01\x01\x01\x03\x04", // 椇
+ 0x6908: "\x01\x02\x03\x04\x03\x05\x04\x03\x01\x02\x03\x04", // 椈
+ 0x6909: "\x04\x01\x03\x05\x04\x01\x05\x02\x01\x02\x03\x04", // 椉
+ 0x690a: "\x01\x02\x03\x04\x04\x01\x03\x04\x03\x04\x01\x02", // 椊
+ 0x690b: "\x01\x02\x03\x04\x04\x01\x02\x05\x01\x02\x03\x04", // 椋
+ 0x690c: "\x01\x02\x03\x04\x04\x04\x05\x03\x04\x01\x02\x01", // 椌
+ 0x690d: "\x01\x02\x03\x04\x01\x02\x02\x05\x01\x01\x01\x01", // 植
+ 0x690e: "\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 椎
+ 0x690f: "\x01\x02\x03\x04\x01\x02\x01\x05\x05\x01\x02\x01", // 椏
+ 0x6910: "\x01\x02\x03\x04\x05\x01\x03\x01\x02\x02\x05\x01", // 椐
+ 0x6911: "\x01\x02\x03\x04\x03\x02\x05\x01\x01\x03\x01\x02", // 椑
+ 0x6912: "\x01\x02\x03\x04\x02\x01\x01\x02\x03\x04\x05\x04", // 椒
+ 0x6913: "\x01\x02\x03\x04\x01\x03\x05\x03\x03\x04\x03\x04", // 椓
+ 0x6914: "\x01\x02\x03\x04\x05\x05\x05\x02\x05\x01\x02\x01", // 椔
+ 0x6915: "\x01\x02\x03\x04\x03\x04\x05\x03\x01\x02\x03\x04", // 椕
+ 0x6916: "\x01\x02\x03\x04\x04\x05\x01\x03\x04\x01\x05\x03", // 椖
+ 0x6917: "\x01\x02\x03\x04\x04\x04\x05\x01\x02\x01\x03\x04", // 椗
+ 0x6918: "\x01\x02\x03\x04\x01\x02\x03\x04\x04\x05\x04", // 椘
+ 0x6919: "\x01\x02\x03\x04\x02\x05\x01\x01\x02\x05\x01\x01", // 椙
+ 0x691a: "\x01\x02\x03\x04\x02\x05\x01\x01\x02\x05\x01\x01", // 椚
+ 0x691b: "\x01\x02\x03\x04\x01\x02\x02\x03\x02\x03\x05", // 椛
+ 0x691c: "\x01\x02\x03\x04\x03\x04\x01\x02\x05\x01\x03\x04", // 検
+ 0x691d: "\x01\x01\x03\x04\x02\x05\x03\x05\x01\x02\x03\x04", // 椝
+ 0x691e: "\x01\x02\x03\x04\x03\x03\x01\x02\x01\x02\x03\x04", // 椞
+ 0x691f: "\x01\x02\x03\x04\x01\x02\x05\x04\x04\x01\x03\x04", // 椟
+ 0x6920: "\x01\x05\x02\x01\x03\x03\x01\x02\x01\x02\x03\x04", // 椠
+ 0x6921: "\x01\x02\x03\x04\x01\x05\x04\x01\x02\x01\x02\x02", // 椡
+ 0x6922: "\x01\x02\x03\x04\x02\x05\x01\x01\x02\x01\x04\x01", // 椢
+ 0x6923: "\x01\x02\x03\x04\x02\x05\x01\x02\x02\x01\x03\x04", // 椣
+ 0x6924: "\x01\x02\x03\x04\x02\x05\x02\x02\x01\x03\x05\x04", // 椤
+ 0x6925: "\x01\x02\x03\x04\x03\x01\x01\x03\x04\x02\x05\x01", // 椥
+ 0x6926: "\x01\x02\x03\x04\x04\x03\x01\x01\x03\x04\x05\x03", // 椦
+ 0x6927: "\x01\x02\x03\x04\x03\x04\x01\x02\x05\x01\x05\x02", // 椧
+ 0x6928: "\x01\x02\x03\x04\x04\x01\x03\x03\x02\x01\x02\x04", // 椨
+ 0x6929: "\x01\x02\x03\x04\x04\x01\x03\x05\x01\x01\x03\x04", // 椩
+ 0x692a: "\x01\x02\x03\x04\x04\x03\x01\x02\x02\x04\x03\x01", // 椪
+ 0x692b: "\x01\x02\x03\x04\x04\x03\x02\x05\x01\x01\x01\x02", // 椫
+ 0x692c: "\x01\x02\x03\x04\x04\x04\x05\x02\x05\x01\x01\x01", // 椬
+ 0x692d: "\x01\x02\x03\x04\x05\x02\x01\x03\x02\x05\x01\x01", // 椭
+ 0x692e: "\x01\x02\x03\x04\x05\x04\x01\x03\x04\x03\x03\x03", // 椮
+ 0x692f: "\x01\x02\x03\x04\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 椯
+ 0x6930: "\x01\x02\x03\x04\x01\x02\x02\x01\x01\x01\x05\x02", // 椰
+ 0x6931: "\x01\x02\x03\x04\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 椱
+ 0x6932: "\x01\x02\x03\x04\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 椲
+ 0x6933: "\x01\x02\x03\x04\x02\x05\x01\x02\x01\x01\x05\x03\x04", // 椳
+ 0x6934: "\x01\x02\x03\x04\x03\x02\x01\x01\x01\x03\x05\x05\x04", // 椴
+ 0x6935: "\x01\x02\x03\x04\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 椵
+ 0x6936: "\x01\x02\x03\x04\x03\x04\x05\x02\x03\x04\x03\x05\x04", // 椶
+ 0x6937: "\x01\x02\x03\x04\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 椷
+ 0x6938: "\x01\x02\x03\x04\x04\x01\x05\x03\x03\x01\x05\x02\x05", // 椸
+ 0x6939: "\x01\x02\x03\x04\x01\x02\x02\x01\x01\x01\x03\x04\x05", // 椹
+ 0x693a: "\x01\x02\x03\x04\x03\x02\x02\x05\x01\x01\x02\x03\x04", // 椺
+ 0x693b: "\x01\x02\x03\x04\x01\x02\x05\x01\x01\x05\x03\x01\x05", // 椻
+ 0x693c: "\x01\x02\x03\x04\x03\x03\x02\x04\x04\x01\x01\x01\x02", // 椼
+ 0x693d: "\x01\x02\x03\x04\x05\x05\x01\x03\x05\x03\x03\x03\x04", // 椽
+ 0x693e: "\x01\x02\x03\x04\x04\x03\x01\x02\x05\x01\x01\x02\x02", // 椾
+ 0x693f: "\x01\x02\x03\x04\x01\x01\x01\x03\x04\x02\x05\x01\x01", // 椿
+ 0x6940: "\x01\x02\x03\x04\x03\x02\x05\x01\x02\x05\x02\x01\x04", // 楀
+ 0x6941: "\x01\x02\x03\x04\x04\x04\x05\x03\x05\x04\x02\x05\x01", // 楁
+ 0x6942: "\x01\x02\x03\x04\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 楂
+ 0x6943: "\x01\x02\x03\x04\x05\x01\x03\x01\x05\x04\x01\x02\x01", // 楃
+ 0x6944: "\x01\x02\x03\x04\x04\x05\x01\x03\x02\x05\x01\x02\x02", // 楄
+ 0x6945: "\x01\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 楅
+ 0x6946: "\x01\x02\x03\x04\x01\x02\x05\x02\x02\x01\x05\x03\x01", // 楆
+ 0x6947: "\x01\x02\x03\x04\x02\x05\x05\x02\x05\x02\x05\x01", // 楇
+ 0x6948: "\x01\x02\x03\x04\x05\x02\x01\x03\x04\x02\x05\x01\x01", // 楈
+ 0x6949: "\x01\x02\x03\x04\x01\x02\x02\x01\x03\x02\x05\x01", // 楉
+ 0x694a: "\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 楊
+ 0x694b: "\x01\x02\x03\x04\x01\x02\x05\x01\x02\x03\x04\x02\x02", // 楋
+ 0x694c: "\x01\x02\x03\x04\x04\x01\x04\x03\x01\x03\x03\x03\x03", // 楌
+ 0x694d: "\x01\x02\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 楍
+ 0x694e: "\x01\x02\x03\x04\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 楎
+ 0x694f: "\x01\x02\x03\x04\x01\x03\x04\x01\x02\x01\x01\x02\x01", // 楏
+ 0x6950: "\x01\x02\x03\x04\x02\x05\x01\x02\x01\x03\x04\x03\x02", // 楐
+ 0x6951: "\x01\x02\x03\x04\x05\x04\x03\x03\x04\x01\x01\x03\x04", // 楑
+ 0x6952: "\x01\x02\x03\x04\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 楒
+ 0x6953: "\x01\x02\x03\x04\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 楓
+ 0x6954: "\x01\x02\x03\x04\x01\x01\x01\x02\x05\x03\x01\x03\x04", // 楔
+ 0x6955: "\x01\x02\x03\x04\x01\x03\x01\x02\x01\x02\x05\x01\x01", // 楕
+ 0x6956: "\x01\x02\x03\x04\x05\x01\x01\x05\x04\x05\x02", // 楖
+ 0x6957: "\x01\x02\x03\x04\x05\x01\x01\x01\x01\x02\x05\x04", // 楗
+ 0x6958: "\x05\x04\x05\x02\x03\x03\x01\x03\x04\x01\x02\x03\x04", // 楘
+ 0x6959: "\x01\x02\x03\x04\x05\x04\x05\x02\x03\x01\x02\x03\x04", // 楙
+ 0x695a: "\x01\x02\x03\x04\x01\x02\x03\x04\x05\x02\x01\x03\x04", // 楚
+ 0x695b: "\x01\x02\x03\x04\x01\x02\x02\x01\x02\x02\x05\x01", // 楛
+ 0x695c: "\x01\x02\x03\x04\x01\x02\x02\x05\x01\x03\x05\x01\x01", // 楜
+ 0x695d: "\x01\x02\x03\x04\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 楝
+ 0x695e: "\x01\x02\x03\x04\x02\x05\x02\x02\x01\x04\x01\x05\x03", // 楞
+ 0x695f: "\x01\x02\x03\x04\x04\x01\x02\x05\x01\x04\x05\x01\x02", // 楟
+ 0x6960: "\x01\x02\x03\x04\x01\x02\x02\x05\x04\x03\x01\x01\x02", // 楠
+ 0x6961: "\x01\x02\x03\x04\x03\x04\x01\x02\x05\x01\x01\x05\x05", // 楡
+ 0x6962: "\x01\x02\x03\x04\x04\x03\x01\x02\x05\x03\x05\x01\x01", // 楢
+ 0x6963: "\x01\x02\x03\x04\x05\x02\x01\x03\x02\x05\x01\x01\x01", // 楣
+ 0x6964: "\x01\x02\x03\x04\x03\x05\x03\x03\x04\x04\x05\x04\x04", // 楤
+ 0x6965: "\x01\x02\x03\x04\x03\x04\x04\x03\x01\x01\x03\x05\x04", // 楥
+ 0x6966: "\x01\x02\x03\x04\x04\x04\x05\x01\x02\x05\x01\x01\x01", // 楦
+ 0x6967: "\x01\x02\x03\x04\x01\x02\x02\x02\x05\x01\x03\x04", // 楧
+ 0x6968: "\x01\x02\x03\x04\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 楨
+ 0x6969: "\x01\x02\x03\x04\x03\x02\x01\x02\x05\x01\x01\x03\x04", // 楩
+ 0x696a: "\x01\x02\x03\x04\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 楪
+ 0x696b: "\x01\x02\x03\x04\x02\x05\x01\x01\x02\x02\x01\x01\x01", // 楫
+ 0x696c: "\x01\x02\x03\x04\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 楬
+ 0x696d: "\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x02\x03\x04", // 業
+ 0x696e: "\x01\x02\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01", // 楮
+ 0x696f: "\x01\x02\x03\x04\x03\x03\x01\x02\x02\x05\x01\x01\x01", // 楯
+ 0x6970: "\x01\x02\x03\x04\x03\x02\x01\x05\x01\x01\x03\x04", // 楰
+ 0x6971: "\x01\x02\x03\x04\x01\x01\x01\x03\x04\x01\x01\x03\x04", // 楱
+ 0x6972: "\x01\x02\x03\x04\x01\x03\x01\x05\x03\x01\x05\x03\x04", // 楲
+ 0x6973: "\x01\x02\x03\x04\x01\x02\x02\x01\x01\x01\x02\x03\x04", // 楳
+ 0x6974: "\x01\x02\x03\x04\x04\x01\x04\x03\x04\x05\x02\x05\x02", // 楴
+ 0x6975: "\x01\x02\x03\x04\x05\x02\x02\x05\x01\x05\x04\x01", // 極
+ 0x6976: "\x04\x01\x03\x05\x03\x04\x02\x05\x01\x01\x02\x03\x04", // 楶
+ 0x6977: "\x01\x02\x03\x04\x01\x05\x03\x05\x03\x02\x05\x01\x01", // 楷
+ 0x6978: "\x01\x02\x03\x04\x03\x01\x02\x03\x04\x04\x03\x03\x04", // 楸
+ 0x6979: "\x01\x02\x03\x04\x05\x03\x05\x04\x02\x05\x02\x02\x01", // 楹
+ 0x697a: "\x01\x02\x03\x04\x05\x04\x05\x02\x03\x01\x02\x03\x04", // 楺
+ 0x697b: "\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x01\x02\x01", // 楻
+ 0x697c: "\x01\x02\x03\x04\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 楼
+ 0x697d: "\x03\x02\x05\x01\x01\x04\x01\x03\x04\x01\x02\x03\x04", // 楽
+ 0x697e: "\x01\x02\x03\x04\x03\x02\x05\x01\x01\x02\x05\x03\x04", // 楾
+ 0x697f: "\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x01", // 楿
+ 0x6980: "\x01\x02\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 榀
+ 0x6981: "\x01\x02\x03\x04\x04\x04\x05\x01\x05\x04\x01\x02\x01", // 榁
+ 0x6982: "\x01\x02\x03\x04\x05\x01\x01\x05\x04\x01\x05\x03\x05", // 概
+ 0x6983: "\x01\x02\x03\x04\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 榃
+ 0x6984: "\x01\x02\x03\x04\x02\x02\x03\x01\x04\x02\x05\x03\x05", // 榄
+ 0x6985: "\x01\x02\x03\x04\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 榅
+ 0x6986: "\x01\x02\x03\x04\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 榆
+ 0x6987: "\x01\x02\x03\x04\x04\x01\x04\x03\x01\x01\x02\x03\x04", // 榇
+ 0x6988: "\x01\x02\x03\x04\x04\x02\x05\x02\x05\x01\x02\x05\x01", // 榈
+ 0x6989: "\x01\x02\x03\x04\x04\x04\x03\x01\x03\x04\x01\x01\x02", // 榉
+ 0x698a: "\x01\x02\x03\x04\x04\x05\x02\x04\x02\x05\x01\x01\x02", // 榊
+ 0x698b: "\x01\x02\x03\x04\x05\x01\x01\x05\x01\x01\x05\x01\x01", // 榋
+ 0x698c: "\x01\x02\x03\x04\x05\x03\x04\x03\x05\x03\x04\x03\x02", // 榌
+ 0x698d: "\x01\x02\x03\x04\x05\x01\x03\x02\x04\x03\x02\x05\x01\x01", // 榍
+ 0x698e: "\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x05\x04", // 榎
+ 0x698f: "\x01\x02\x03\x04\x04\x03\x01\x03\x04\x02\x05\x02\x02\x01", // 榏
+ 0x6990: "\x01\x02\x03\x04\x05\x01\x03\x01\x02\x02\x01\x05\x03\x04", // 榐
+ 0x6991: "\x01\x02\x03\x04\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 榑
+ 0x6992: "\x01\x02\x03\x04\x05\x01\x05\x04\x01\x05\x01\x05\x04\x01", // 榒
+ 0x6993: "\x01\x02\x03\x04\x04\x05\x04\x03\x04\x02\x05\x02\x02\x01", // 榓
+ 0x6994: "\x01\x02\x03\x04\x04\x05\x01\x01\x05\x04\x05\x02", // 榔
+ 0x6995: "\x01\x02\x03\x04\x04\x04\x05\x03\x04\x03\x04\x02\x05\x01", // 榕
+ 0x6996: "\x01\x02\x01\x04\x05\x01\x01\x02\x03\x04\x03\x05\x05\x04", // 榖
+ 0x6997: "\x01\x02\x03\x04\x01\x02\x02\x04\x03\x01\x02\x05\x01\x01", // 榗
+ 0x6998: "\x03\x01\x01\x03\x04\x01\x05\x01\x05\x01\x02\x03\x04", // 榘
+ 0x6999: "\x01\x02\x03\x04\x01\x02\x02\x03\x04\x01\x02\x05\x01", // 榙
+ 0x699a: "\x01\x02\x03\x04\x04\x03\x01\x01\x02\x01\x04\x04\x04\x04", // 榚
+ 0x699b: "\x01\x02\x03\x04\x01\x01\x01\x03\x04\x03\x01\x02\x03\x04", // 榛
+ 0x699c: "\x01\x02\x03\x04\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03", // 榜
+ 0x699d: "\x01\x02\x03\x04\x03\x04\x01\x02\x03\x04\x03\x05\x05\x04", // 榝
+ 0x699e: "\x01\x02\x03\x04\x01\x03\x03\x02\x05\x01\x01\x02\x03\x04", // 榞
+ 0x699f: "\x01\x02\x03\x04\x04\x04\x05\x04\x01\x04\x03\x01\x01\x02", // 榟
+ 0x69a0: "\x01\x02\x03\x04\x04\x05\x02\x05\x01\x01\x04\x01\x03\x04", // 榠
+ 0x69a1: "\x01\x02\x03\x04\x01\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 榡
+ 0x69a2: "\x01\x02\x03\x04\x04\x04\x05\x01\x03\x05\x03\x03\x03\x04", // 榢
+ 0x69a3: "\x01\x02\x03\x04\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02", // 榣
+ 0x69a4: "\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02\x01\x02\x03\x04", // 榤
+ 0x69a5: "\x01\x02\x03\x04\x02\x05\x01\x01\x02\x04\x03\x01\x03\x05", // 榥
+ 0x69a6: "\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04\x01\x02\x03\x04", // 榦
+ 0x69a7: "\x01\x02\x03\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01\x05", // 榧
+ 0x69a8: "\x01\x02\x03\x04\x04\x04\x05\x03\x04\x03\x01\x02\x01\x01", // 榨
+ 0x69a9: "\x01\x02\x03\x04\x02\x01\x05\x03\x01\x05\x04\x01\x03\x04", // 榩
+ 0x69aa: "\x01\x02\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 榪
+ 0x69ab: "\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02", // 榫
+ 0x69ac: "\x01\x02\x03\x04\x01\x02\x01\x02\x05\x01\x03\x05\x03\x04", // 榬
+ 0x69ad: "\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x03\x01\x02\x04", // 榭
+ 0x69ae: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x01\x02\x03\x04", // 榮
+ 0x69af: "\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x01\x01\x02\x04", // 榯
+ 0x69b0: "\x01\x02\x03\x04\x01\x02\x01\x03\x03\x05\x02\x05\x01\x01", // 榰
+ 0x69b1: "\x01\x02\x03\x04\x04\x01\x02\x05\x01\x01\x03\x05\x03\x04", // 榱
+ 0x69b2: "\x01\x02\x03\x04\x02\x05\x03\x04\x01\x02\x05\x02\x02\x01", // 榲
+ 0x69b3: "\x01\x02\x03\x04\x04\x01\x03\x03\x01\x02\x01\x05\x04", // 榳
+ 0x69b4: "\x01\x02\x03\x04\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 榴
+ 0x69b5: "\x01\x02\x03\x04\x01\x02\x02\x01\x02\x02\x01\x01\x01", // 榵
+ 0x69b6: "\x01\x02\x03\x04\x04\x01\x03\x05\x01\x01\x02\x02\x05\x01", // 榶
+ 0x69b7: "\x01\x02\x03\x04\x04\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 榷
+ 0x69b8: "\x01\x02\x03\x04\x01\x02\x01\x02\x05\x01\x01\x02\x01\x01", // 榸
+ 0x69b9: "\x01\x02\x03\x04\x03\x03\x02\x01\x05\x03\x01\x05\x03\x05", // 榹
+ 0x69ba: "\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04\x01\x02\x03\x04", // 榺
+ 0x69bb: "\x01\x02\x03\x04\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 榻
+ 0x69bc: "\x01\x02\x03\x04\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 榼
+ 0x69bd: "\x01\x02\x03\x04\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04", // 榽
+ 0x69be: "\x01\x02\x03\x04\x02\x05\x05\x04\x05\x02\x05\x01\x01", // 榾
+ 0x69bf: "\x01\x02\x03\x04\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 榿
+ 0x69c0: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x01\x02\x03\x04", // 槀
+ 0x69c1: "\x01\x02\x03\x04\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 槁
+ 0x69c2: "\x01\x02\x03\x04\x05\x02\x01\x03\x05\x05\x04\x02\x03\x04", // 槂
+ 0x69c3: "\x03\x03\x05\x04\x01\x04\x03\x05\x05\x04\x01\x02\x03\x04", // 槃
+ 0x69c4: "\x01\x02\x03\x04\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01", // 槄
+ 0x69c5: "\x01\x02\x03\x04\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 槅
+ 0x69c6: "\x01\x02\x03\x04\x01\x02\x02\x03\x05\x02\x05\x01\x01", // 槆
+ 0x69c7: "\x01\x02\x03\x04\x03\x05\x02\x05\x01\x01\x01\x05\x03\x04", // 槇
+ 0x69c8: "\x01\x02\x03\x04\x01\x03\x01\x01\x05\x03\x04\x01\x02\x04", // 槈
+ 0x69c9: "\x01\x02\x03\x04\x04\x01\x03\x04\x01\x03\x01\x01\x03\x04", // 槉
+ 0x69ca: "\x04\x03\x01\x05\x02\x03\x03\x05\x01\x01\x01\x02\x03\x04", // 槊
+ 0x69cb: "\x01\x02\x03\x04\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01", // 構
+ 0x69cc: "\x01\x02\x03\x04\x03\x02\x05\x01\x05\x01\x04\x05\x04", // 槌
+ 0x69cd: "\x01\x02\x03\x04\x03\x04\x04\x05\x01\x01\x03\x02\x05\x01", // 槍
+ 0x69ce: "\x01\x02\x03\x04\x04\x03\x01\x01\x01\x03\x01\x02\x01", // 槎
+ 0x69cf: "\x01\x02\x03\x04\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 槏
+ 0x69d0: "\x01\x02\x03\x04\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 槐
+ 0x69d1: "\x02\x05\x01\x01\x02\x03\x04\x02\x05\x01\x01\x02\x03\x04", // 槑
+ 0x69d2: "\x01\x02\x03\x04\x04\x01\x05\x05\x04\x02\x05\x01\x02\x01", // 槒
+ 0x69d3: "\x01\x02\x03\x04\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 槓
+ 0x69d4: "\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x03\x04\x01\x02", // 槔
+ 0x69d5: "\x01\x02\x03\x04\x02\x01\x02\x05\x01\x01\x01\x02\x03\x04", // 槕
+ 0x69d6: "\x01\x02\x01\x04\x05\x01\x03\x02\x05\x01\x01\x02\x03\x04", // 槖
+ 0x69d7: "\x01\x02\x03\x04\x01\x03\x02\x05\x01\x02\x05\x02\x05\x01", // 槗
+ 0x69d8: "\x01\x02\x03\x04\x04\x03\x01\x01\x02\x01\x02\x05\x03\x04", // 様
+ 0x69d9: "\x01\x02\x03\x04\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 槙
+ 0x69da: "\x01\x02\x03\x04\x01\x02\x05\x02\x02\x01\x02\x05\x03\x04", // 槚
+ 0x69db: "\x01\x02\x03\x04\x02\x02\x03\x01\x04\x02\x05\x02\x02\x01", // 槛
+ 0x69dc: "\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03", // 槜
+ 0x69dd: "\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x02\x05\x02", // 槝
+ 0x69de: "\x01\x02\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05", // 槞
+ 0x69df: "\x01\x02\x03\x04\x04\x04\x05\x03\x02\x01\x02\x01\x03\x04", // 槟
+ 0x69e0: "\x01\x02\x03\x04\x04\x05\x01\x02\x01\x03\x02\x05\x01\x01", // 槠
+ 0x69e1: "\x01\x02\x03\x04\x05\x04\x05\x04\x05\x04\x01\x02\x03\x04", // 槡
+ 0x69e2: "\x01\x02\x03\x04\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01", // 槢
+ 0x69e3: "\x01\x02\x03\x04\x04\x04\x05\x01\x03\x04\x01\x02\x05\x01\x02", // 槣
+ 0x69e4: "\x01\x02\x03\x04\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 槤
+ 0x69e5: "\x01\x02\x03\x04\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x01", // 槥
+ 0x69e6: "\x01\x02\x03\x04\x04\x01\x03\x05\x01\x01\x02\x05\x01\x01\x02", // 槦
+ 0x69e7: "\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02\x01\x02\x03\x04", // 槧
+ 0x69e8: "\x01\x02\x03\x04\x04\x01\x02\x05\x01\x05\x02\x01\x05\x02", // 槨
+ 0x69e9: "\x05\x01\x01\x05\x04\x01\x05\x03\x05\x01\x02\x03\x04", // 槩
+ 0x69ea: "\x01\x02\x03\x04\x03\x02\x05\x01\x01\x03\x05\x01\x05\x03\x05", // 槪
+ 0x69eb: "\x01\x02\x03\x04\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04", // 槫
+ 0x69ec: "\x01\x02\x03\x04\x01\x03\x04\x01\x01\x05\x03\x03\x05\x04\x04", // 槬
+ 0x69ed: "\x01\x02\x03\x04\x01\x03\x02\x01\x01\x02\x03\x04\x05\x03\x04", // 槭
+ 0x69ee: "\x01\x02\x03\x04\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 槮
+ 0x69ef: "\x01\x02\x03\x04\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 槯
+ 0x69f0: "\x01\x02\x03\x04\x03\x05\x04\x01\x01\x01\x02\x04\x05\x04", // 槰
+ 0x69f1: "\x01\x02\x03\x04\x01\x02\x05\x03\x05\x01\x01\x04\x04\x04\x04", // 槱
+ 0x69f2: "\x01\x02\x03\x04\x03\x05\x03\x05\x01\x01\x02\x04\x04\x01\x02", // 槲
+ 0x69f3: "\x05\x02\x01\x03\x03\x05\x04\x04\x01\x02\x04\x01\x02\x03\x04", // 槳
+ 0x69f4: "\x01\x02\x03\x04\x04\x05\x01\x03\x02\x05\x01\x05\x02\x01\x05", // 槴
+ 0x69f5: "\x01\x02\x03\x04\x02\x05\x01\x02\x05\x01\x02\x04\x05\x04\x04", // 槵
+ 0x69f6: "\x01\x02\x03\x04\x02\x05\x01\x02\x05\x01\x01\x05\x03\x04\x01", // 槶
+ 0x69f7: "\x01\x02\x01\x03\x04\x01\x02\x01\x03\x05\x04\x01\x02\x03\x04", // 槷
+ 0x69f8: "\x01\x02\x03\x04\x01\x02\x01\x03\x04\x01\x02\x01\x03\x05\x04", // 槸
+ 0x69f9: "\x01\x02\x03\x04\x03\x02\x05\x01\x01\x04\x01\x03\x04\x01\x02", // 槹
+ 0x69fa: "\x01\x02\x03\x04\x04\x01\x03\x05\x01\x01\x02\x04\x01\x03\x04", // 槺
+ 0x69fb: "\x01\x02\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 槻
+ 0x69fc: "\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05\x01\x02\x03\x04", // 槼
+ 0x69fd: "\x01\x02\x03\x04\x01\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01", // 槽
+ 0x69fe: "\x01\x02\x03\x04\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 槾
+ 0x69ff: "\x01\x02\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01", // 槿
+ 0x6a00: "\x01\x02\x03\x04\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01", // 樀
+ 0x6a01: "\x01\x02\x03\x04\x01\x01\x01\x03\x04\x03\x02\x01\x05\x01\x01", // 樁
+ 0x6a02: "\x03\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x03\x04", // 樂
+ 0x6a03: "\x01\x02\x03\x04\x04\x05\x01\x01\x05\x04\x03\x05\x01\x01", // 樃
+ 0x6a04: "\x01\x02\x03\x04\x05\x02\x01\x02\x05\x01\x01\x02\x03\x04", // 樄
+ 0x6a05: "\x01\x02\x03\x04\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04", // 樅
+ 0x6a06: "\x01\x02\x03\x04\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 樆
+ 0x6a07: "\x01\x02\x03\x04\x03\x02\x02\x03\x05\x04\x02\x05\x01\x01", // 樇
+ 0x6a08: "\x01\x02\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05", // 樈
+ 0x6a09: "\x01\x02\x03\x04\x01\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04", // 樉
+ 0x6a0a: "\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x03\x04\x01\x03\x04", // 樊
+ 0x6a0b: "\x01\x02\x03\x04\x05\x04\x02\x05\x01\x01\x02\x04\x05\x04", // 樋
+ 0x6a0c: "\x01\x02\x03\x04\x05\x05\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 樌
+ 0x6a0d: "\x01\x02\x03\x04\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 樍
+ 0x6a0e: "\x01\x02\x03\x04\x04\x04\x05\x03\x02\x01\x03\x02\x05\x01\x01", // 樎
+ 0x6a0f: "\x01\x02\x03\x04\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 樏
+ 0x6a10: "\x01\x02\x03\x04\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01", // 樐
+ 0x6a11: "\x01\x02\x03\x04\x04\x04\x01\x05\x03\x04\x04\x01\x02\x03\x04", // 樑
+ 0x6a12: "\x01\x02\x03\x04\x04\x04\x05\x04\x05\x04\x03\x04\x02\x05\x02", // 樒
+ 0x6a13: "\x01\x02\x03\x04\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 樓
+ 0x6a14: "\x01\x02\x03\x04\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 樔
+ 0x6a15: "\x01\x02\x03\x04\x01\x02\x05\x01\x02\x03\x04\x03\x05\x03\x04", // 樕
+ 0x6a16: "\x03\x04\x01\x02\x05\x01\x01\x02\x03\x04\x01\x02\x05\x01\x02", // 樖
+ 0x6a17: "\x01\x02\x03\x04\x01\x04\x05\x02\x04\x04\x04\x04\x01\x01\x05", // 樗
+ 0x6a18: "\x01\x02\x03\x04\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x01", // 樘
+ 0x6a19: "\x01\x02\x03\x04\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 標
+ 0x6a1a: "\x01\x02\x03\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 樚
+ 0x6a1b: "\x01\x02\x03\x04\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 樛
+ 0x6a1c: "\x01\x02\x03\x04\x04\x01\x03\x01\x02\x02\x01\x04\x04\x04\x04", // 樜
+ 0x6a1d: "\x01\x02\x03\x04\x02\x01\x05\x03\x01\x05\x02\x05\x01\x01\x01", // 樝
+ 0x6a1e: "\x01\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 樞
+ 0x6a1f: "\x01\x02\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02", // 樟
+ 0x6a20: "\x01\x02\x03\x04\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04", // 樠
+ 0x6a21: "\x01\x02\x03\x04\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 模
+ 0x6a22: "\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 樢
+ 0x6a23: "\x01\x02\x03\x04\x04\x03\x01\x01\x02\x01\x04\x05\x05\x03\x04", // 樣
+ 0x6a24: "\x01\x02\x03\x04\x03\x02\x02\x03\x05\x04\x01\x02\x03\x04", // 樤
+ 0x6a25: "\x01\x02\x03\x04\x01\x02\x02\x03\x05\x04\x01\x01\x01\x02", // 樥
+ 0x6a26: "\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x04\x01\x01\x02\x01", // 樦
+ 0x6a27: "\x01\x02\x03\x04\x03\x04\x01\x02\x03\x04\x04\x03\x05\x05\x04", // 樧
+ 0x6a28: "\x01\x02\x03\x04\x05\x01\x03\x02\x04\x01\x03\x04\x03\x01\x01\x02", // 樨
+ 0x6a29: "\x01\x02\x03\x04\x03\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 権
+ 0x6a2a: "\x01\x02\x03\x04\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 横
+ 0x6a2b: "\x01\x02\x03\x04\x01\x02\x05\x01\x02\x05\x05\x04\x01\x02\x01", // 樫
+ 0x6a2c: "\x01\x02\x03\x04\x03\x02\x05\x03\x05\x04\x01\x04\x05\x04\x04", // 樬
+ 0x6a2d: "\x01\x02\x03\x04\x01\x02\x02\x01\x01\x01\x03\x04\x01\x02\x01", // 樭
+ 0x6a2e: "\x01\x02\x03\x04\x01\x02\x02\x01\x02\x05\x01\x04\x03\x03\x04", // 樮
+ 0x6a2f: "\x01\x02\x03\x04\x01\x02\x04\x03\x01\x02\x05\x02\x05\x01\x01", // 樯
+ 0x6a30: "\x01\x02\x03\x04\x01\x04\x05\x02\x04\x04\x04\x04\x05\x01\x01", // 樰
+ 0x6a31: "\x01\x02\x03\x04\x02\x05\x03\x04\x02\x05\x03\x04\x05\x03\x01", // 樱
+ 0x6a32: "\x01\x02\x03\x04\x01\x01\x01\x02\x05\x01\x01\x01\x03\x04\x05\x04", // 樲
+ 0x6a33: "\x01\x02\x03\x04\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04", // 樳
+ 0x6a34: "\x01\x02\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05\x03\x04", // 樴
+ 0x6a35: "\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 樵
+ 0x6a36: "\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x02\x01\x01\x01\x05\x04", // 樶
+ 0x6a37: "\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x02\x01\x01\x01\x05\x04", // 樷
+ 0x6a38: "\x01\x02\x03\x04\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 樸
+ 0x6a39: "\x01\x02\x03\x04\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x04", // 樹
+ 0x6a3a: "\x01\x02\x03\x04\x01\x02\x02\x01\x01\x02\x02\x01\x01\x02", // 樺
+ 0x6a3b: "\x01\x02\x03\x04\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 樻
+ 0x6a3c: "\x01\x02\x03\x04\x05\x01\x03\x05\x02\x01\x05\x02\x01\x05\x02\x01", // 樼
+ 0x6a3d: "\x01\x02\x03\x04\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x02\x04", // 樽
+ 0x6a3e: "\x01\x02\x03\x04\x01\x02\x01\x02\x01\x03\x04\x01\x05\x05\x03\x04", // 樾
+ 0x6a3f: "\x01\x02\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 樿
+ 0x6a40: "\x01\x02\x03\x04\x04\x01\x05\x04\x03\x02\x05\x02\x05\x02\x02\x01", // 橀
+ 0x6a41: "\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x03\x05\x02\x05\x01\x01", // 橁
+ 0x6a42: "\x01\x02\x03\x04\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x03\x04", // 橂
+ 0x6a43: "\x01\x02\x03\x04\x05\x04\x03\x03\x04\x05\x01\x05\x03\x05\x05\x04", // 橃
+ 0x6a44: "\x01\x02\x03\x04\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 橄
+ 0x6a45: "\x01\x02\x03\x04\x03\x01\x01\x02\x02\x02\x02\x01\x04\x04\x04\x04", // 橅
+ 0x6a46: "\x03\x01\x01\x02\x02\x02\x02\x01\x01\x02\x03\x04\x01\x02\x03\x04", // 橆
+ 0x6a47: "\x01\x02\x03\x04\x03\x01\x01\x05\x03\x01\x01\x05\x03\x01\x01\x05", // 橇
+ 0x6a48: "\x01\x02\x03\x04\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 橈
+ 0x6a49: "\x01\x02\x03\x04\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 橉
+ 0x6a4a: "\x01\x02\x03\x04\x01\x02\x02\x01\x05\x05\x01\x02\x05\x01\x02\x01", // 橊
+ 0x6a4b: "\x01\x02\x03\x04\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 橋
+ 0x6a4c: "\x01\x02\x03\x04\x02\x05\x01\x01\x02\x05\x01\x01\x03\x05\x01\x01", // 橌
+ 0x6a4d: "\x01\x02\x03\x04\x02\x05\x01\x01\x02\x05\x01\x01\x01\x01\x02\x01", // 橍
+ 0x6a4e: "\x01\x02\x03\x04\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 橎
+ 0x6a4f: "\x01\x02\x03\x04\x04\x03\x01\x01\x01\x02\x04\x03\x01\x02\x05\x01", // 橏
+ 0x6a50: "\x01\x02\x05\x01\x02\x04\x05\x01\x03\x02\x05\x01\x01\x02\x03\x04", // 橐
+ 0x6a51: "\x01\x02\x03\x04\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 橑
+ 0x6a52: "\x01\x02\x03\x04\x01\x04\x05\x02\x04\x04\x04\x04\x01\x01\x05\x04", // 橒
+ 0x6a53: "\x01\x02\x03\x04\x03\x04\x04\x03\x04\x05\x03\x05\x04\x01\x05\x02", // 橓
+ 0x6a54: "\x01\x02\x03\x04\x04\x01\x02\x05\x01\x05\x02\x01\x03\x01\x03\x04", // 橔
+ 0x6a55: "\x01\x02\x03\x04\x02\x04\x03\x04\x05\x02\x05\x01\x01\x05\x02\x03", // 橕
+ 0x6a56: "\x01\x02\x03\x04\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x03\x04", // 橖
+ 0x6a57: "\x01\x02\x03\x04\x01\x02\x02\x02\x05\x01\x01\x03\x05\x01\x01", // 橗
+ 0x6a58: "\x01\x02\x03\x04\x05\x04\x05\x02\x03\x02\x05\x03\x04\x02\x05\x01", // 橘
+ 0x6a59: "\x01\x02\x03\x04\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 橙
+ 0x6a5a: "\x01\x02\x03\x04\x05\x01\x01\x02\x03\x02\x01\x01\x05\x05\x02\x01\x02", // 橚
+ 0x6a5b: "\x01\x02\x03\x04\x01\x03\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04", // 橛
+ 0x6a5c: "\x01\x03\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04\x01\x02\x03\x04", // 橜
+ 0x6a5d: "\x01\x02\x03\x04\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 橝
+ 0x6a5e: "\x01\x02\x03\x04\x01\x02\x05\x01\x01\x02\x01\x04\x04\x05\x04\x04", // 橞
+ 0x6a5f: "\x01\x02\x03\x04\x05\x05\x04\x05\x05\x04\x01\x03\x04\x05\x03\x04", // 機
+ 0x6a60: "\x01\x02\x03\x04\x04\x01\x03\x05\x04\x03\x05\x04\x03\x05\x03\x04", // 橠
+ 0x6a61: "\x01\x02\x03\x04\x03\x05\x02\x05\x01\x03\x05\x03\x03\x03\x04", // 橡
+ 0x6a62: "\x01\x02\x03\x04\x05\x02\x01\x03\x01\x02\x01\x02\x05\x01\x01", // 橢
+ 0x6a63: "\x01\x02\x03\x04\x04\x04\x05\x04\x05\x04\x04\x02\x05\x01\x01\x02", // 橣
+ 0x6a64: "\x04\x05\x04\x04\x04\x05\x04\x04\x04\x05\x04\x04\x01\x02\x03\x04", // 橤
+ 0x6a65: "\x03\x05\x03\x01\x02\x01\x03\x02\x05\x01\x01\x01\x02\x03\x04", // 橥
+ 0x6a66: "\x01\x02\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 橦
+ 0x6a67: "\x01\x02\x03\x04\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 橧
+ 0x6a68: "\x01\x02\x03\x04\x01\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 橨
+ 0x6a69: "\x01\x02\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x03\x05", // 橩
+ 0x6a6a: "\x01\x02\x03\x04\x03\x05\x04\x04\x01\x03\x04\x04\x04\x04\x04\x04", // 橪
+ 0x6a6b: "\x01\x02\x03\x04\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04", // 橫
+ 0x6a6c: "\x01\x02\x03\x04\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x01", // 橬
+ 0x6a6d: "\x01\x02\x03\x04\x01\x02\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 橭
+ 0x6a6e: "\x01\x02\x03\x04\x03\x05\x04\x05\x03\x02\x05\x01\x01\x01\x03\x04", // 橮
+ 0x6a6f: "\x01\x02\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x05\x03", // 橯
+ 0x6a70: "\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x04\x01\x03\x04\x01\x02", // 橰
+ 0x6a71: "\x01\x02\x03\x04\x01\x03\x01\x02\x05\x01\x04\x03\x01\x01\x02\x04", // 橱
+ 0x6a72: "\x01\x02\x03\x04\x01\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01", // 橲
+ 0x6a73: "\x01\x02\x03\x04\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04\x05\x03", // 橳
+ 0x6a74: "\x01\x02\x03\x04\x02\x01\x02\x01\x03\x05\x05\x05\x04\x02\x03\x04", // 橴
+ 0x6a75: "\x01\x02\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01\x03\x01\x03\x04", // 橵
+ 0x6a76: "\x01\x02\x03\x04\x01\x02\x02\x05\x01\x01\x01\x02\x01\x05\x03\x04", // 橶
+ 0x6a77: "\x01\x02\x03\x04\x03\x02\x05\x01\x01\x02\x01\x01\x03\x05\x03\x05", // 橷
+ 0x6a78: "\x01\x02\x03\x04\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01", // 橸
+ 0x6a79: "\x01\x02\x03\x04\x03\x05\x02\x05\x01\x02\x01\x01\x02\x05\x01\x01", // 橹
+ 0x6a7a: "\x01\x02\x03\x04\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01", // 橺
+ 0x6a7b: "\x01\x02\x03\x04\x05\x02\x01\x01\x05\x02\x01\x01\x05\x02\x01\x01", // 橻
+ 0x6a7c: "\x01\x02\x03\x04\x05\x05\x01\x05\x05\x01\x03\x05\x03\x03\x03\x04", // 橼
+ 0x6a7d: "\x01\x02\x03\x04\x01\x02\x01\x04\x03\x01\x01\x01\x02\x04\x05\x04", // 橽
+ 0x6a7e: "\x01\x02\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 橾
+ 0x6a7f: "\x01\x02\x03\x04\x01\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x01\x01", // 橿
+ 0x6a80: "\x01\x02\x03\x04\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 檀
+ 0x6a81: "\x01\x02\x03\x04\x04\x01\x02\x05\x02\x05\x01\x01\x03\x01\x02\x03\x04", // 檁
+ 0x6a82: "\x01\x02\x03\x04\x02\x05\x01\x02\x02\x01\x01\x03\x01\x01\x05\x03\x04", // 檂
+ 0x6a83: "\x05\x02\x03\x04\x04\x03\x01\x02\x01\x05\x01\x01\x01\x02\x03\x04", // 檃
+ 0x6a84: "\x01\x02\x03\x04\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x03\x04", // 檄
+ 0x6a85: "\x01\x02\x03\x04\x02\x01\x02\x01\x01\x03\x01\x02\x03\x03\x05\x03\x04", // 檅
+ 0x6a86: "\x01\x02\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04\x02\x01\x02\x05\x01", // 檆
+ 0x6a87: "\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x02\x05", // 檇
+ 0x6a88: "\x01\x02\x03\x04\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 檈
+ 0x6a89: "\x01\x02\x03\x04\x01\x02\x02\x01\x01\x01\x02\x05\x01\x01\x01\x02\x01", // 檉
+ 0x6a8a: "\x01\x02\x03\x04\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04\x01\x01\x02", // 檊
+ 0x6a8b: "\x01\x02\x03\x04\x01\x02\x02\x01\x03\x04\x01\x02\x05\x01\x01\x01\x02", // 檋
+ 0x6a8c: "\x01\x02\x03\x04\x02\x05\x02\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01", // 檌
+ 0x6a8d: "\x01\x02\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 檍
+ 0x6a8e: "\x01\x02\x03\x04\x03\x04\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 檎
+ 0x6a8f: "\x01\x02\x03\x04\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x02\x03\x04", // 檏
+ 0x6a90: "\x01\x02\x03\x04\x03\x05\x01\x03\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 檐
+ 0x6a91: "\x01\x02\x03\x04\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x01", // 檑
+ 0x6a92: "\x01\x02\x03\x04\x01\x02\x03\x04\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 檒
+ 0x6a93: "\x01\x02\x03\x04\x03\x02\x01\x05\x01\x01\x01\x02\x01\x03\x05\x05\x04", // 檓
+ 0x6a94: "\x01\x02\x03\x04\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x01\x02\x01", // 檔
+ 0x6a95: "\x01\x02\x05\x01\x01\x01\x02\x05\x02\x03\x05\x05\x04\x01\x02\x03\x04", // 檕
+ 0x6a96: "\x01\x02\x03\x04\x04\x03\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 檖
+ 0x6a97: "\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x01\x02\x03\x04", // 檗
+ 0x6a98: "\x01\x02\x03\x04\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 檘
+ 0x6a99: "\x01\x02\x03\x04\x02\x05\x01\x01\x01\x05\x01\x03\x02\x01\x02\x05", // 檙
+ 0x6a9a: "\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04\x05\x02\x01\x03\x04", // 檚
+ 0x6a9b: "\x01\x02\x03\x04\x02\x05\x05\x02\x05\x02\x05\x01\x04\x05\x04", // 檛
+ 0x6a9c: "\x01\x02\x03\x04\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 檜
+ 0x6a9d: "\x01\x02\x03\x04\x02\x05\x01\x01\x02\x02\x01\x01\x01\x05\x03\x04", // 檝
+ 0x6a9e: "\x01\x02\x03\x04\x03\x05\x03\x05\x01\x01\x02\x05\x03\x03\x01\x01\x02", // 檞
+ 0x6a9f: "\x01\x02\x03\x04\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 檟
+ 0x6aa0: "\x01\x02\x02\x03\x05\x02\x05\x01\x03\x01\x03\x04\x01\x02\x03\x04", // 檠
+ 0x6aa1: "\x01\x02\x03\x04\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 檡
+ 0x6aa2: "\x01\x02\x03\x04\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 檢
+ 0x6aa3: "\x01\x02\x03\x04\x01\x02\x03\x04\x03\x04\x01\x02\x05\x02\x05\x01\x01", // 檣
+ 0x6aa4: "\x01\x02\x03\x04\x04\x03\x01\x03\x02\x05\x01\x01\x01\x04\x05\x04", // 檤
+ 0x6aa5: "\x01\x02\x03\x04\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01\x05\x03\x04", // 檥
+ 0x6aa6: "\x01\x02\x03\x04\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04\x02\x02", // 檦
+ 0x6aa7: "\x01\x02\x03\x04\x01\x02\x02\x03\x05\x03\x03\x04\x04\x05\x04\x04", // 檧
+ 0x6aa8: "\x01\x02\x03\x04\x04\x03\x01\x01\x02\x01\x04\x01\x03\x05\x03\x04", // 檨
+ 0x6aa9: "\x01\x02\x03\x04\x04\x01\x02\x05\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 檩
+ 0x6aaa: "\x01\x02\x03\x04\x03\x02\x05\x01\x01\x04\x01\x03\x04\x01\x02\x03\x04", // 檪
+ 0x6aab: "\x01\x02\x03\x04\x04\x04\x05\x03\x05\x04\x04\x05\x04\x01\x01\x02\x03\x04", // 檫
+ 0x6aac: "\x01\x02\x03\x04\x01\x02\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 檬
+ 0x6aad: "\x01\x02\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x01\x05\x03\x04", // 檭
+ 0x6aae: "\x01\x02\x03\x04\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 檮
+ 0x6aaf: "\x01\x02\x03\x04\x01\x02\x01\x02\x05\x01\x04\x05\x01\x05\x04\x01\x02\x01", // 檯
+ 0x6ab0: "\x01\x02\x03\x04\x05\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x02\x05\x02", // 檰
+ 0x6ab1: "\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x01\x02\x02\x01\x01\x01\x03\x04", // 檱
+ 0x6ab2: "\x01\x02\x03\x04\x02\x05\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04\x01", // 檲
+ 0x6ab3: "\x01\x02\x03\x04\x04\x04\x05\x01\x02\x03\x03\x02\x05\x01\x01\x01\x03\x04", // 檳
+ 0x6ab4: "\x01\x02\x03\x04\x01\x02\x02\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 檴
+ 0x6ab5: "\x01\x02\x03\x04\x05\x05\x04\x05\x05\x04\x01\x05\x05\x04\x05\x05\x04\x05", // 檵
+ 0x6ab6: "\x01\x02\x03\x04\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 檶
+ 0x6ab7: "\x01\x02\x03\x04\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 檷
+ 0x6ab8: "\x01\x02\x03\x04\x04\x04\x05\x04\x05\x04\x04\x02\x05\x02\x02\x01\x01\x02", // 檸
+ 0x6ab9: "\x01\x02\x03\x04\x04\x01\x05\x03\x03\x01\x01\x03\x04\x01\x02\x05\x01\x02", // 檹
+ 0x6aba: "\x01\x02\x03\x04\x04\x01\x02\x05\x01\x04\x05\x01\x03\x05\x03\x03\x03\x04", // 檺
+ 0x6abb: "\x01\x02\x03\x04\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01", // 檻
+ 0x6abc: "\x01\x02\x03\x04\x03\x04\x04\x03\x01\x02\x01\x05\x01\x01\x04\x05\x04\x04", // 檼
+ 0x6abd: "\x01\x02\x03\x04\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02", // 檽
+ 0x6abe: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x01\x02\x03\x04\x01\x02\x03\x04", // 檾
+ 0x6abf: "\x01\x03\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x04\x04\x01\x02\x03\x04", // 檿
+ 0x6ac0: "\x01\x02\x03\x04\x01\x02\x02\x01\x01\x01\x03\x04\x05\x05\x04\x02\x03\x04", // 櫀
+ 0x6ac1: "\x01\x02\x03\x04\x04\x04\x05\x04\x05\x04\x03\x04\x02\x05\x01\x02\x01\x04", // 櫁
+ 0x6ac2: "\x01\x02\x03\x04\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 櫂
+ 0x6ac3: "\x01\x02\x03\x04\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x05", // 櫃
+ 0x6ac4: "\x01\x02\x03\x04\x03\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 櫄
+ 0x6ac5: "\x01\x02\x03\x04\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01", // 櫅
+ 0x6ac6: "\x01\x02\x03\x04\x03\x02\x05\x01\x01\x03\x05\x05\x04\x04\x04\x01\x02", // 櫆
+ 0x6ac7: "\x01\x02\x03\x04\x05\x03\x02\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 櫇
+ 0x6ac8: "\x01\x02\x03\x04\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01\x03\x05", // 櫈
+ 0x6ac9: "\x01\x02\x03\x04\x01\x03\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x04", // 櫉
+ 0x6aca: "\x01\x02\x03\x04\x02\x05\x01\x01\x02\x05\x01\x01\x03\x05\x04\x02\x05\x01", // 櫊
+ 0x6acb: "\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x04\x04\x05\x03\x04\x04\x01\x05\x03", // 櫋
+ 0x6acc: "\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x04\x05\x04\x05\x04\x04\x03\x05\x04", // 櫌
+ 0x6acd: "\x01\x02\x03\x04\x03\x03\x01\x02\x03\x03\x01\x02\x02\x05\x01\x01\x01\x03\x04", // 櫍
+ 0x6ace: "\x01\x02\x03\x04\x04\x01\x03\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 櫎
+ 0x6acf: "\x01\x02\x03\x04\x01\x02\x05\x02\x02\x01\x01\x03\x04\x05\x01\x05\x04\x05\x04", // 櫏
+ 0x6ad0: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x01\x02\x03\x04", // 櫐
+ 0x6ad1: "\x01\x02\x03\x04\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01", // 櫑
+ 0x6ad2: "\x01\x02\x03\x04\x01\x02\x02\x03\x05\x04\x04\x05\x04\x01\x01\x02\x03\x04", // 櫒
+ 0x6ad3: "\x01\x02\x03\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01", // 櫓
+ 0x6ad4: "\x01\x02\x03\x04\x01\x03\x01\x02\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 櫔
+ 0x6ad5: "\x01\x02\x03\x04\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 櫕
+ 0x6ad6: "\x01\x02\x03\x04\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 櫖
+ 0x6ad7: "\x01\x02\x03\x04\x01\x02\x02\x02\x05\x02\x02\x01\x01\x03\x04\x05\x03\x04", // 櫗
+ 0x6ad8: "\x01\x02\x03\x04\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 櫘
+ 0x6ad9: "\x01\x02\x03\x04\x01\x02\x02\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 櫙
+ 0x6ada: "\x01\x02\x03\x04\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01", // 櫚
+ 0x6adb: "\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x05\x01\x01\x05\x04\x05\x02", // 櫛
+ 0x6adc: "\x01\x02\x05\x01\x02\x04\x05\x03\x05\x04\x02\x04\x02\x05\x01\x01\x02\x03\x04", // 櫜
+ 0x6add: "\x01\x02\x03\x04\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 櫝
+ 0x6ade: "\x01\x02\x03\x04\x05\x05\x04\x04\x04\x04\x05\x05\x01\x03\x05\x03\x03\x03\x04", // 櫞
+ 0x6adf: "\x01\x02\x03\x04\x03\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x03\x04", // 櫟
+ 0x6ae0: "\x01\x02\x03\x04\x04\x01\x03\x05\x04\x03\x03\x04\x05\x01\x05\x03\x05\x05\x04", // 櫠
+ 0x6ae1: "\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x01\x02\x01\x03\x02\x05\x01\x01", // 櫡
+ 0x6ae2: "\x01\x02\x03\x04\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01\x03\x01\x03\x04", // 櫢
+ 0x6ae3: "\x01\x02\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 櫣
+ 0x6ae4: "\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x04\x03\x01\x02\x05\x01\x01\x02\x02", // 櫤
+ 0x6ae5: "\x01\x02\x03\x04\x04\x01\x03\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x04", // 櫥
+ 0x6ae6: "\x01\x02\x03\x04\x04\x01\x03\x05\x02\x02\x01\x05\x04\x05\x04\x04\x03\x05\x04", // 櫦
+ 0x6ae7: "\x01\x02\x03\x04\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 櫧
+ 0x6ae8: "\x01\x02\x03\x04\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 櫨
+ 0x6ae9: "\x01\x02\x03\x04\x02\x05\x01\x01\x02\x05\x01\x01\x03\x05\x03\x02\x01\x05\x01\x01", // 櫩
+ 0x6aea: "\x01\x02\x03\x04\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 櫪
+ 0x6aeb: "\x01\x03\x05\x03\x03\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01\x01\x02\x03\x04", // 櫫
+ 0x6aec: "\x01\x02\x03\x04\x04\x01\x04\x03\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 櫬
+ 0x6aed: "\x01\x02\x03\x04\x05\x01\x01\x05\x04\x01\x05\x03\x05\x02\x05\x01\x01\x01", // 櫭
+ 0x6aee: "\x01\x02\x03\x04\x01\x02\x02\x05\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01\x01", // 櫮
+ 0x6aef: "\x01\x02\x03\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x02\x03\x04", // 櫯
+ 0x6af0: "\x01\x02\x03\x04\x04\x01\x02\x05\x02\x02\x01\x02\x04\x01\x03\x04\x03\x05\x03\x04", // 櫰
+ 0x6af1: "\x05\x02\x03\x03\x02\x05\x01\x05\x01\x04\x01\x04\x03\x01\x01\x02\x01\x02\x03\x04", // 櫱
+ 0x6af2: "\x01\x02\x03\x04\x05\x04\x05\x02\x03\x05\x02\x05\x01\x03\x05\x03\x03\x03\x04", // 櫲
+ 0x6af3: "\x01\x02\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x05\x01\x05\x01\x01\x01", // 櫳
+ 0x6af4: "\x01\x02\x03\x04\x01\x02\x05\x01\x02\x03\x04\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 櫴
+ 0x6af5: "\x01\x02\x03\x04\x01\x02\x02\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 櫵
+ 0x6af6: "\x01\x02\x03\x04\x04\x04\x05\x01\x01\x01\x02\x02\x05\x02\x02\x01\x04\x05\x04\x04", // 櫶
+ 0x6af7: "\x01\x02\x03\x04\x03\x02\x05\x01\x01\x02\x05\x05\x01\x01\x05\x01\x01\x05\x03\x04\x01", // 櫷
+ 0x6af8: "\x01\x02\x03\x04\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04\x01\x01\x02", // 櫸
+ 0x6af9: "\x01\x02\x03\x04\x01\x02\x02\x05\x01\x01\x02\x03\x02\x01\x01\x05\x05\x02\x01\x02", // 櫹
+ 0x6afa: "\x01\x02\x03\x04\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 櫺
+ 0x6afb: "\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x05\x03\x01", // 櫻
+ 0x6afc: "\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 櫼
+ 0x6afd: "\x05\x02\x03\x04\x04\x03\x01\x02\x01\x05\x01\x01\x04\x05\x04\x04\x01\x02\x03\x04", // 櫽
+ 0x6afe: "\x01\x02\x03\x04\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02\x03\x05\x05\x04\x02\x03\x04", // 櫾
+ 0x6aff: "\x01\x02\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x02\x05\x01\x02\x05\x01", // 櫿
+ 0x6b00: "\x01\x02\x03\x04\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 欀
+ 0x6b01: "\x01\x02\x03\x04\x02\x05\x01\x02\x02\x01\x01\x03\x01\x01\x05\x03\x04\x01\x02\x03\x04", // 欁
+ 0x6b02: "\x01\x02\x03\x04\x01\x02\x02\x04\x04\x01\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 欂
+ 0x6b03: "\x01\x02\x03\x04\x03\x05\x02\x05\x01\x01\x05\x03\x05\x03\x05\x02\x05\x01\x03\x05\x04", // 欃
+ 0x6b04: "\x01\x02\x03\x04\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 欄
+ 0x6b05: "\x01\x02\x03\x04\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04\x03\x01\x01\x02", // 欅
+ 0x6b06: "\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 欆
+ 0x6b07: "\x01\x02\x03\x04\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01", // 欇
+ 0x6b08: "\x01\x02\x03\x04\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x03\x04\x02\x05\x01", // 欈
+ 0x6b09: "\x01\x02\x03\x04\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x02\x02\x01\x01\x01\x05\x04", // 欉
+ 0x6b0a: "\x01\x02\x03\x04\x01\x02\x02\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 權
+ 0x6b0b: "\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 欋
+ 0x6b0c: "\x01\x02\x03\x04\x01\x02\x02\x01\x03\x05\x01\x03\x01\x02\x05\x01\x02\x05\x05\x03\x04", // 欌
+ 0x6b0d: "\x01\x02\x03\x04\x01\x02\x02\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x01\x05\x01\x01", // 欍
+ 0x6b0e: "\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x03\x04\x04\x05\x05\x01\x01\x05\x04\x01\x02\x04", // 欎
+ 0x6b0f: "\x01\x02\x03\x04\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 欏
+ 0x6b10: "\x01\x02\x03\x04\x01\x02\x05\x04\x01\x02\x05\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 欐
+ 0x6b11: "\x01\x02\x03\x04\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 欑
+ 0x6b12: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x01\x02\x03\x04", // 欒
+ 0x6b13: "\x01\x02\x03\x04\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 欓
+ 0x6b14: "\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 欔
+ 0x6b15: "\x01\x02\x03\x04\x02\x05\x01\x02\x05\x01\x01\x03\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 欕
+ 0x6b16: "\x01\x02\x03\x04\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 欖
+ 0x6b17: "\x01\x02\x03\x04\x01\x02\x02\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 欗
+ 0x6b18: "\x01\x02\x03\x04\x05\x01\x03\x02\x04\x01\x03\x04\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 欘
+ 0x6b19: "\x01\x02\x03\x04\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 欙
+ 0x6b1a: "\x01\x02\x03\x04\x05\x05\x01\x03\x05\x03\x03\x03\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 欚
+ 0x6b1b: "\x01\x02\x03\x04\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x01\x01", // 欛
+ 0x6b1c: "\x01\x02\x03\x04\x01\x02\x05\x01\x02\x04\x05\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 欜
+ 0x6b1d: "\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x03\x04\x02\x05\x02\x02\x01\x05\x01\x01\x05\x04\x01\x02\x04", // 欝
+ 0x6b1e: "\x01\x02\x03\x04\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x03\x04\x01", // 欞
+ 0x6b1f: "\x01\x02\x03\x04\x01\x02\x02\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 欟
+ 0x6b20: "\x03\x05\x03\x04", // 欠
+ 0x6b21: "\x04\x01\x03\x05\x03\x04", // 次
+ 0x6b22: "\x05\x04\x03\x05\x03\x04", // 欢
+ 0x6b23: "\x03\x03\x01\x02\x03\x05\x03\x04", // 欣
+ 0x6b24: "\x01\x05\x01\x03\x05\x03\x04", // 欤
+ 0x6b25: "\x02\x05\x01\x01\x03\x05\x03\x04", // 欥
+ 0x6b26: "\x03\x04\x04\x05\x03\x05\x03\x04", // 欦
+ 0x6b27: "\x01\x03\x04\x05\x03\x05\x03\x04", // 欧
+ 0x6b28: "\x03\x05\x02\x05\x01\x03\x05\x03\x04", // 欨
+ 0x6b29: "\x05\x03\x02\x05\x01\x03\x05\x03\x04", // 欩
+ 0x6b2a: "\x05\x02\x02\x05\x02\x03\x05\x03\x04", // 欪
+ 0x6b2b: "\x03\x01\x01\x02\x01\x05\x03\x05\x03\x04", // 欫
+ 0x6b2c: "\x04\x01\x05\x03\x03\x04\x03\x05\x03\x04", // 欬
+ 0x6b2d: "\x02\x05\x01\x03\x04\x01\x03\x05\x03\x04", // 欭
+ 0x6b2e: "\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04", // 欮
+ 0x6b2f: "\x01\x02\x01\x02\x05\x01\x03\x05\x03\x04", // 欯
+ 0x6b30: "\x03\x02\x05\x02\x02\x01\x03\x05\x03\x04", // 欰
+ 0x6b31: "\x03\x04\x01\x02\x05\x01\x03\x05\x03\x04", // 欱
+ 0x6b32: "\x03\x04\x03\x04\x02\x05\x01\x03\x05\x03\x04", // 欲
+ 0x6b33: "\x02\x01\x02\x05\x01\x02\x02\x03\x05\x03\x04", // 欳
+ 0x6b34: "\x04\x05\x01\x01\x05\x04\x03\x05\x03\x04", // 欴
+ 0x6b35: "\x03\x05\x03\x01\x01\x03\x04\x03\x05\x03\x04", // 欵
+ 0x6b36: "\x01\x02\x05\x01\x02\x03\x04\x03\x05\x03\x04", // 欶
+ 0x6b37: "\x03\x04\x01\x03\x02\x05\x02\x03\x05\x03\x04", // 欷
+ 0x6b38: "\x05\x04\x03\x01\x01\x03\x04\x03\x05\x03\x04", // 欸
+ 0x6b39: "\x01\x03\x04\x01\x02\x05\x01\x02\x03\x05\x03\x04", // 欹
+ 0x6b3a: "\x01\x02\x02\x01\x01\x01\x03\x04\x03\x05\x03\x04", // 欺
+ 0x6b3b: "\x04\x03\x03\x04\x04\x03\x03\x04\x03\x05\x03\x04", // 欻
+ 0x6b3c: "\x05\x04\x05\x04\x05\x04\x05\x04\x03\x05\x03\x04", // 欼
+ 0x6b3d: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x03\x04", // 欽
+ 0x6b3e: "\x01\x02\x01\x01\x01\x02\x03\x04\x03\x05\x03\x04", // 款
+ 0x6b3f: "\x03\x05\x03\x02\x01\x05\x01\x01\x03\x05\x03\x04", // 欿
+ 0x6b40: "\x01\x02\x03\x04\x01\x01\x02\x03\x04\x03\x05\x03\x04", // 歀
+ 0x6b41: "\x01\x02\x02\x01\x01\x01\x03\x04\x05\x03\x05\x03\x04", // 歁
+ 0x6b42: "\x02\x05\x02\x01\x03\x02\x05\x02\x02\x03\x05\x03\x04", // 歂
+ 0x6b43: "\x03\x01\x02\x03\x02\x01\x05\x01\x01\x03\x05\x03\x04", // 歃
+ 0x6b44: "\x02\x05\x05\x02\x05\x02\x05\x01\x03\x05\x03\x04", // 歄
+ 0x6b45: "\x01\x02\x05\x02\x02\x01\x01\x02\x01\x03\x05\x03\x04", // 歅
+ 0x6b46: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05\x03\x04", // 歆
+ 0x6b47: "\x02\x05\x01\x01\x03\x05\x03\x04\x05\x03\x05\x03\x04", // 歇
+ 0x6b48: "\x03\x04\x01\x02\x05\x01\x01\x02\x02\x03\x05\x03\x04", // 歈
+ 0x6b49: "\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04\x03\x05\x03\x04", // 歉
+ 0x6b4a: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x03\x05\x03\x04", // 歊
+ 0x6b4b: "\x03\x03\x02\x01\x05\x03\x01\x05\x03\x05\x03\x05\x03\x04", // 歋
+ 0x6b4c: "\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x03\x05\x03\x04", // 歌
+ 0x6b4d: "\x03\x02\x05\x01\x01\x05\x04\x04\x04\x04\x03\x05\x03\x04", // 歍
+ 0x6b4e: "\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x05\x03\x04", // 歎
+ 0x6b4f: "\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01\x03\x05\x03\x04", // 歏
+ 0x6b50: "\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05\x03\x05\x03\x04", // 歐
+ 0x6b51: "\x02\x01\x05\x03\x01\x05\x03\x04\x03\x01\x02\x03\x05\x03\x04", // 歑
+ 0x6b52: "\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01\x03\x05\x03\x04", // 歒
+ 0x6b53: "\x03\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x05\x03\x04", // 歓
+ 0x6b54: "\x02\x01\x05\x03\x01\x05\x02\x02\x04\x03\x01\x03\x05\x03\x04", // 歔
+ 0x6b55: "\x01\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04\x03\x05\x03\x04", // 歕
+ 0x6b56: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01\x03\x05\x03\x04", // 歖
+ 0x6b57: "\x05\x01\x01\x02\x03\x02\x01\x01\x05\x05\x02\x01\x02\x03\x05\x03\x04", // 歗
+ 0x6b58: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04\x03\x05\x03\x04", // 歘
+ 0x6b59: "\x03\x04\x01\x02\x05\x01\x05\x04\x01\x05\x04\x01\x03\x05\x03\x04", // 歙
+ 0x6b5a: "\x04\x03\x01\x01\x01\x02\x04\x03\x01\x02\x05\x01\x03\x05\x03\x04", // 歚
+ 0x6b5b: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x03\x05\x03\x04", // 歛
+ 0x6b5c: "\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04\x03\x05\x03\x04", // 歜
+ 0x6b5d: "\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x03\x04", // 歝
+ 0x6b5e: "\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x04\x04\x04\x04\x03\x05\x03\x04", // 歞
+ 0x6b5f: "\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04\x03\x05\x03\x04", // 歟
+ 0x6b60: "\x05\x04\x05\x04\x05\x04\x05\x04\x01\x02\x05\x03\x05\x01\x01\x03\x05\x03\x04", // 歠
+ 0x6b61: "\x01\x02\x02\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x05\x03\x04", // 歡
+ 0x6b62: "\x02\x01\x02\x01", // 止
+ 0x6b63: "\x01\x02\x01\x02\x01", // 正
+ 0x6b64: "\x02\x01\x02\x01\x03\x05", // 此
+ 0x6b65: "\x02\x01\x02\x01\x02\x03\x03", // 步
+ 0x6b66: "\x01\x01\x02\x01\x02\x01\x05\x04", // 武
+ 0x6b67: "\x02\x01\x02\x01\x01\x02\x05\x04", // 歧
+ 0x6b68: "\x02\x01\x02\x01\x02\x01\x03\x04", // 歨
+ 0x6b69: "\x02\x01\x02\x01\x02\x03\x04\x03", // 歩
+ 0x6b6a: "\x01\x03\x02\x04\x01\x02\x01\x02\x01", // 歪
+ 0x6b6b: "\x02\x01\x02\x01\x01\x05\x01\x05", // 歫
+ 0x6b6c: "\x02\x01\x02\x01\x03\x03\x05\x04\x01\x04", // 歬
+ 0x6b6d: "\x02\x01\x02\x01\x01\x02\x01\x01\x02\x04", // 歭
+ 0x6b6e: "\x02\x01\x02\x01\x02\x01\x02\x01\x02\x01\x02\x01", // 歮
+ 0x6b6f: "\x02\x01\x02\x01\x04\x03\x01\x02\x03\x04\x05\x02", // 歯
+ 0x6b70: "\x05\x03\x04\x05\x03\x04\x02\x01\x02\x01\x02\x01\x02\x01", // 歰
+ 0x6b71: "\x02\x01\x02\x01\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 歱
+ 0x6b72: "\x02\x01\x02\x01\x01\x03\x01\x02\x03\x03\x05\x03\x04", // 歲
+ 0x6b73: "\x02\x01\x02\x01\x01\x03\x01\x02\x03\x04\x05\x03\x04", // 歳
+ 0x6b74: "\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x02\x01\x02\x01", // 歴
+ 0x6b75: "\x02\x01\x02\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 歵
+ 0x6b76: "\x02\x01\x02\x01\x03\x05\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 歶
+ 0x6b77: "\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 歷
+ 0x6b78: "\x03\x02\x05\x01\x05\x01\x02\x01\x02\x01\x05\x01\x01\x04\x05\x02\x05\x02", // 歸
+ 0x6b79: "\x01\x03\x05\x04", // 歹
+ 0x6b7a: "\x02\x01\x03\x05\x04", // 歺
+ 0x6b7b: "\x01\x03\x05\x04\x03\x05", // 死
+ 0x6b7c: "\x01\x03\x05\x04\x03\x01\x02", // 歼
+ 0x6b7d: "\x01\x03\x05\x04\x03\x03\x01\x02", // 歽
+ 0x6b7e: "\x01\x03\x05\x04\x03\x05\x03\x03", // 歾
+ 0x6b7f: "\x01\x03\x05\x04\x05\x03\x05\x04", // 歿
+ 0x6b80: "\x01\x03\x05\x04\x03\x01\x03\x04", // 殀
+ 0x6b81: "\x01\x03\x05\x04\x03\x05\x05\x04", // 殁
+ 0x6b82: "\x01\x03\x05\x04\x02\x05\x01\x01\x01", // 殂
+ 0x6b83: "\x01\x03\x05\x04\x02\x05\x01\x03\x04", // 殃
+ 0x6b84: "\x01\x03\x05\x04\x03\x04\x03\x03\x03", // 殄
+ 0x6b85: "\x01\x03\x05\x04\x03\x01\x01\x02\x01", // 殅
+ 0x6b86: "\x01\x03\x05\x04\x05\x04\x02\x05\x01", // 殆
+ 0x6b87: "\x01\x03\x05\x04\x03\x01\x05\x03\x03", // 殇
+ 0x6b88: "\x01\x03\x05\x04\x03\x02\x05\x02\x02\x01", // 殈
+ 0x6b89: "\x01\x03\x05\x04\x03\x05\x02\x05\x01\x01", // 殉
+ 0x6b8a: "\x01\x03\x05\x04\x03\x01\x01\x02\x03\x04", // 殊
+ 0x6b8b: "\x01\x03\x05\x04\x01\x01\x05\x03\x04", // 残
+ 0x6b8c: "\x01\x03\x05\x04\x01\x05\x05\x05\x01\x02\x01", // 殌
+ 0x6b8d: "\x01\x03\x05\x04\x03\x04\x04\x03\x05\x02\x01", // 殍
+ 0x6b8e: "\x01\x03\x05\x04\x01\x03\x04\x03\x04\x03\x04", // 殎
+ 0x6b8f: "\x01\x03\x05\x04\x01\x02\x04\x01\x03\x04\x04", // 殏
+ 0x6b90: "\x01\x03\x05\x04\x01\x02\x05\x01\x02\x03\x04", // 殐
+ 0x6b91: "\x01\x03\x05\x04\x01\x02\x02\x05\x01\x03\x05", // 殑
+ 0x6b92: "\x01\x03\x05\x04\x02\x05\x01\x02\x05\x03\x04", // 殒
+ 0x6b93: "\x01\x03\x05\x04\x03\x04\x01\x04\x04\x03\x01", // 殓
+ 0x6b94: "\x01\x03\x05\x04\x05\x01\x01\x02\x04\x01\x03\x04", // 殔
+ 0x6b95: "\x01\x03\x05\x04\x04\x01\x04\x03\x01\x02\x05\x01", // 殕
+ 0x6b96: "\x01\x03\x05\x04\x01\x02\x02\x05\x01\x01\x01\x01", // 殖
+ 0x6b97: "\x01\x03\x05\x04\x01\x03\x04\x02\x05\x01\x01\x05", // 殗
+ 0x6b98: "\x01\x03\x05\x04\x01\x05\x03\x04\x01\x05\x03\x04", // 殘
+ 0x6b99: "\x01\x03\x05\x04\x03\x05\x01\x05\x02\x05\x01\x01", // 殙
+ 0x6b9a: "\x01\x03\x05\x04\x04\x03\x02\x05\x01\x01\x01\x02", // 殚
+ 0x6b9b: "\x01\x03\x05\x04\x05\x02\x02\x05\x01\x05\x04\x01", // 殛
+ 0x6b9c: "\x01\x03\x05\x04\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 殜
+ 0x6b9d: "\x01\x03\x05\x04\x01\x01\x01\x03\x04\x03\x01\x02\x03\x04", // 殝
+ 0x6b9e: "\x01\x03\x05\x04\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 殞
+ 0x6b9f: "\x01\x03\x05\x04\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 殟
+ 0x6ba0: "\x01\x03\x05\x04\x03\x02\x05\x01\x01\x01\x01\x03\x04\x04", // 殠
+ 0x6ba1: "\x01\x03\x05\x04\x04\x04\x05\x03\x02\x01\x02\x01\x03\x04", // 殡
+ 0x6ba2: "\x01\x03\x05\x04\x01\x03\x02\x02\x01\x05\x04\x05\x02\x05\x02", // 殢
+ 0x6ba3: "\x01\x03\x05\x04\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01", // 殣
+ 0x6ba4: "\x01\x03\x05\x04\x03\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 殤
+ 0x6ba5: "\x01\x03\x05\x04\x04\x04\x05\x01\x02\x05\x01\x02\x01\x03\x04", // 殥
+ 0x6ba6: "\x01\x03\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 殦
+ 0x6ba7: "\x01\x03\x05\x04\x04\x01\x02\x05\x01\x02\x03\x04\x01\x03\x05\x04", // 殧
+ 0x6ba8: "\x01\x03\x05\x04\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 殨
+ 0x6ba9: "\x01\x03\x05\x04\x01\x03\x05\x04\x05\x04\x04\x03\x01\x02\x03\x04", // 殩
+ 0x6baa: "\x01\x03\x05\x04\x01\x02\x01\x04\x05\x01\x02\x05\x01\x04\x03\x01", // 殪
+ 0x6bab: "\x01\x03\x05\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 殫
+ 0x6bac: "\x01\x03\x05\x04\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 殬
+ 0x6bad: "\x01\x03\x05\x04\x01\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x01\x01", // 殭
+ 0x6bae: "\x01\x03\x05\x04\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 殮
+ 0x6baf: "\x01\x03\x05\x04\x04\x04\x05\x01\x02\x03\x03\x02\x05\x01\x01\x01\x03\x04", // 殯
+ 0x6bb0: "\x01\x03\x05\x04\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 殰
+ 0x6bb1: "\x01\x03\x05\x04\x01\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 殱
+ 0x6bb2: "\x01\x03\x05\x04\x03\x04\x03\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 殲
+ 0x6bb3: "\x03\x05\x05\x04", // 殳
+ 0x6bb4: "\x01\x03\x04\x05\x03\x05\x05\x04", // 殴
+ 0x6bb5: "\x03\x02\x01\x01\x01\x03\x05\x05\x04", // 段
+ 0x6bb6: "\x04\x01\x01\x02\x01\x03\x05\x05\x04", // 殶
+ 0x6bb7: "\x03\x03\x05\x01\x01\x05\x03\x05\x05\x04", // 殷
+ 0x6bb8: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04", // 殸
+ 0x6bb9: "\x01\x03\x01\x01\x03\x04\x05\x03\x05\x05\x04", // 殹
+ 0x6bba: "\x03\x04\x01\x02\x03\x04\x03\x05\x05\x04", // 殺
+ 0x6bbb: "\x01\x02\x01\x04\x05\x03\x05\x03\x05\x05\x04", // 殻
+ 0x6bbc: "\x01\x02\x01\x04\x05\x01\x03\x05\x03\x05\x05\x04", // 殼
+ 0x6bbd: "\x03\x04\x01\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 殽
+ 0x6bbe: "\x01\x02\x01\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 殾
+ 0x6bbf: "\x05\x01\x03\x01\x02\x02\x01\x03\x04\x03\x05\x05\x04", // 殿
+ 0x6bc0: "\x03\x02\x01\x05\x01\x01\x01\x02\x01\x03\x05\x05\x04", // 毀
+ 0x6bc1: "\x03\x02\x01\x05\x01\x01\x01\x02\x01\x03\x05\x05\x04", // 毁
+ 0x6bc2: "\x01\x02\x01\x04\x05\x01\x05\x02\x01\x03\x05\x05\x04", // 毂
+ 0x6bc3: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x03\x05\x05\x04", // 毃
+ 0x6bc4: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x03\x05\x05\x04", // 毄
+ 0x6bc5: "\x04\x01\x04\x03\x01\x03\x05\x03\x03\x03\x04\x03\x05\x05\x04", // 毅
+ 0x6bc6: "\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05\x03\x05\x05\x04", // 毆
+ 0x6bc7: "\x03\x02\x01\x05\x01\x01\x04\x03\x01\x02\x03\x04\x03\x05\x05\x04", // 毇
+ 0x6bc8: "\x03\x05\x04\x03\x05\x02\x04\x03\x02\x01\x01\x01\x03\x05\x05\x04", // 毈
+ 0x6bc9: "\x01\x03\x01\x01\x03\x04\x05\x03\x05\x05\x04\x01\x02\x03\x04\x03\x04\x01", // 毉
+ 0x6bca: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 毊
+ 0x6bcb: "\x05\x05\x03\x01", // 毋
+ 0x6bcc: "\x05\x05\x02\x01", // 毌
+ 0x6bcd: "\x05\x05\x04\x01\x04", // 母
+ 0x6bce: "\x03\x01\x05\x05\x02\x01", // 毎
+ 0x6bcf: "\x03\x01\x05\x05\x04\x01\x04", // 每
+ 0x6bd0: "\x01\x02\x01\x05\x05\x03\x01", // 毐
+ 0x6bd1: "\x05\x05\x04\x01\x04\x05\x02\x05", // 毑
+ 0x6bd2: "\x01\x01\x02\x01\x05\x05\x04\x01\x04", // 毒
+ 0x6bd3: "\x03\x01\x05\x05\x04\x01\x04\x04\x01\x05\x04\x03\x02\x05", // 毓
+ 0x6bd4: "\x01\x05\x03\x05", // 比
+ 0x6bd5: "\x01\x05\x03\x05\x01\x02", // 毕
+ 0x6bd6: "\x01\x05\x03\x05\x04\x05\x04\x03\x04", // 毖
+ 0x6bd7: "\x02\x05\x01\x02\x01\x01\x05\x03\x05", // 毗
+ 0x6bd8: "\x02\x05\x01\x02\x01\x01\x05\x03\x05", // 毘
+ 0x6bd9: "\x01\x05\x03\x05\x01\x03\x05\x04\x03\x05", // 毙
+ 0x6bda: "\x03\x05\x02\x05\x01\x01\x05\x03\x05\x03\x05\x02\x05\x01\x03\x05\x04", // 毚
+ 0x6bdb: "\x03\x01\x01\x05", // 毛
+ 0x6bdc: "\x03\x01\x01\x05\x02\x03\x04", // 毜
+ 0x6bdd: "\x03\x01\x01\x05\x03\x03\x03", // 毝
+ 0x6bde: "\x01\x05\x03\x05\x03\x01\x01\x05", // 毞
+ 0x6bdf: "\x02\x03\x04\x03\x03\x01\x01\x05", // 毟
+ 0x6be0: "\x05\x03\x02\x05\x01\x03\x01\x01\x05", // 毠
+ 0x6be1: "\x03\x01\x01\x05\x02\x01\x02\x05\x01", // 毡
+ 0x6be2: "\x03\x01\x01\x05\x01\x02\x05\x03\x05\x01", // 毢
+ 0x6be3: "\x05\x04\x01\x05\x04\x01\x03\x01\x01\x05", // 毣
+ 0x6be4: "\x03\x04\x05\x04\x03\x05\x03\x01\x01\x05", // 毤
+ 0x6be5: "\x03\x01\x01\x05\x03\x05\x02\x05\x01\x01", // 毥
+ 0x6be6: "\x01\x02\x02\x01\x01\x01\x03\x01\x01\x05", // 毦
+ 0x6be7: "\x03\x01\x01\x05\x01\x01\x03\x05\x03\x04", // 毧
+ 0x6be8: "\x03\x01\x01\x05\x03\x01\x02\x01\x03\x05", // 毨
+ 0x6be9: "\x03\x01\x01\x05\x04\x03\x01\x02\x03\x04", // 毩
+ 0x6bea: "\x03\x01\x01\x05\x05\x04\x03\x01\x01\x02", // 毪
+ 0x6beb: "\x04\x01\x02\x05\x01\x04\x05\x03\x01\x01\x05", // 毫
+ 0x6bec: "\x03\x01\x01\x05\x01\x02\x04\x01\x03\x04\x04", // 毬
+ 0x6bed: "\x01\x02\x05\x01\x04\x03\x01\x03\x01\x01\x05", // 毭
+ 0x6bee: "\x01\x02\x01\x02\x03\x04\x03\x03\x01\x01\x05", // 毮
+ 0x6bef: "\x03\x01\x01\x05\x04\x03\x03\x04\x04\x03\x03\x04", // 毯
+ 0x6bf0: "\x03\x01\x01\x05\x04\x01\x04\x03\x01\x02\x05\x01", // 毰
+ 0x6bf1: "\x03\x01\x01\x05\x03\x05\x04\x03\x01\x02\x03\x04", // 毱
+ 0x6bf2: "\x05\x04\x05\x04\x05\x04\x05\x04\x03\x01\x01\x05", // 毲
+ 0x6bf3: "\x03\x01\x01\x05\x03\x01\x01\x05\x03\x01\x01\x05", // 毳
+ 0x6bf4: "\x03\x01\x01\x05\x02\x01\x01\x01\x02\x01\x01\x01", // 毴
+ 0x6bf5: "\x05\x04\x01\x03\x04\x03\x03\x03\x03\x01\x01\x05", // 毵
+ 0x6bf6: "\x03\x01\x01\x05\x05\x04\x01\x03\x04\x03\x03\x03", // 毶
+ 0x6bf7: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x01\x01\x05", // 毷
+ 0x6bf8: "\x03\x01\x01\x05\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 毸
+ 0x6bf9: "\x03\x04\x01\x02\x05\x01\x01\x02\x02\x03\x01\x01\x05", // 毹
+ 0x6bfa: "\x03\x01\x01\x05\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 毺
+ 0x6bfb: "\x01\x03\x01\x02\x01\x02\x05\x01\x01\x03\x01\x01\x05", // 毻
+ 0x6bfc: "\x02\x05\x01\x01\x03\x05\x03\x04\x05\x03\x01\x01\x05", // 毼
+ 0x6bfd: "\x03\x01\x01\x05\x05\x01\x01\x01\x01\x02\x05\x04", // 毽
+ 0x6bfe: "\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01\x03\x01\x01\x05", // 毾
+ 0x6bff: "\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03\x03\x01\x01\x05", // 毿
+ 0x6c00: "\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01\x03\x01\x01\x05", // 氀
+ 0x6c01: "\x03\x01\x01\x05\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 氁
+ 0x6c02: "\x01\x01\x02\x03\x04\x03\x01\x03\x04\x01\x03\x03\x01\x01\x05", // 氂
+ 0x6c03: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01\x03\x01\x01\x05", // 氃
+ 0x6c04: "\x05\x04\x05\x02\x03\x02\x05\x03\x04\x02\x05\x01\x03\x01\x01\x05", // 氄
+ 0x6c05: "\x02\x04\x03\x02\x05\x02\x05\x01\x03\x01\x03\x04\x03\x01\x01\x05", // 氅
+ 0x6c06: "\x03\x01\x01\x05\x04\x03\x01\x02\x02\x04\x03\x01\x02\x05\x01\x01", // 氆
+ 0x6c07: "\x03\x01\x01\x05\x03\x05\x02\x05\x01\x02\x01\x01\x02\x05\x01\x01", // 氇
+ 0x6c08: "\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x01\x01\x05", // 氈
+ 0x6c09: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x03\x01\x01\x05", // 氉
+ 0x6c0a: "\x03\x01\x01\x05\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 氊
+ 0x6c0b: "\x01\x02\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04\x03\x01\x01\x05", // 氋
+ 0x6c0c: "\x03\x01\x01\x05\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01", // 氌
+ 0x6c0d: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x01\x01\x05", // 氍
+ 0x6c0e: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x04\x04\x05\x02\x05\x04\x01\x03\x01\x01\x05", // 氎
+ 0x6c0f: "\x03\x05\x01\x05", // 氏
+ 0x6c10: "\x03\x05\x01\x05\x04", // 氐
+ 0x6c11: "\x05\x01\x05\x01\x05", // 民
+ 0x6c12: "\x03\x05\x01\x05\x01\x02", // 氒
+ 0x6c13: "\x04\x01\x05\x05\x01\x05\x01\x05", // 氓
+ 0x6c14: "\x03\x01\x01\x05", // 气
+ 0x6c15: "\x03\x01\x01\x05\x03", // 氕
+ 0x6c16: "\x03\x01\x01\x05\x05\x03", // 氖
+ 0x6c17: "\x03\x01\x01\x05\x03\x04", // 気
+ 0x6c18: "\x03\x01\x01\x05\x03\x02", // 氘
+ 0x6c19: "\x03\x01\x01\x05\x02\x05\x02", // 氙
+ 0x6c1a: "\x03\x01\x01\x05\x03\x02\x02", // 氚
+ 0x6c1b: "\x03\x01\x01\x05\x03\x04\x05\x03", // 氛
+ 0x6c1c: "\x03\x01\x01\x05\x02\x05\x01\x01", // 氜
+ 0x6c1d: "\x03\x01\x01\x05\x02\x05\x03\x04", // 氝
+ 0x6c1e: "\x03\x01\x01\x05\x01\x02\x05\x03\x04", // 氞
+ 0x6c1f: "\x03\x01\x01\x05\x05\x01\x05\x03\x02", // 氟
+ 0x6c20: "\x03\x01\x01\x05\x02\x05\x01\x01\x02", // 氠
+ 0x6c21: "\x03\x01\x01\x05\x03\x05\x04\x04\x04", // 氡
+ 0x6c22: "\x03\x01\x01\x05\x05\x04\x01\x02\x01", // 氢
+ 0x6c23: "\x03\x01\x01\x05\x04\x03\x01\x02\x03\x04", // 氣
+ 0x6c24: "\x03\x01\x01\x05\x02\x05\x01\x03\x04\x01", // 氤
+ 0x6c25: "\x03\x01\x01\x05\x01\x02\x05\x03\x05\x01", // 氥
+ 0x6c26: "\x03\x01\x01\x05\x04\x01\x05\x03\x03\x04", // 氦
+ 0x6c27: "\x03\x01\x01\x05\x04\x03\x01\x01\x01\x02", // 氧
+ 0x6c28: "\x03\x01\x01\x05\x04\x04\x05\x05\x03\x01", // 氨
+ 0x6c29: "\x03\x01\x01\x05\x01\x02\x02\x04\x03\x01", // 氩
+ 0x6c2a: "\x03\x01\x01\x05\x01\x02\x02\x05\x01\x03\x05", // 氪
+ 0x6c2b: "\x03\x01\x01\x05\x01\x05\x05\x05\x01\x02\x01", // 氫
+ 0x6c2c: "\x03\x01\x01\x05\x01\x02\x01\x05\x05\x01\x02\x01", // 氬
+ 0x6c2d: "\x03\x01\x01\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 氭
+ 0x6c2e: "\x03\x01\x01\x05\x04\x03\x03\x04\x04\x03\x03\x04", // 氮
+ 0x6c2f: "\x03\x01\x01\x05\x05\x01\x01\x02\x04\x01\x03\x04", // 氯
+ 0x6c30: "\x03\x01\x01\x05\x01\x01\x02\x01\x02\x05\x01\x01", // 氰
+ 0x6c31: "\x03\x01\x01\x05\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 氱
+ 0x6c32: "\x03\x01\x01\x05\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 氲
+ 0x6c33: "\x03\x01\x01\x05\x02\x05\x03\x04\x01\x02\x05\x02\x02\x01", // 氳
+ 0x6c34: "\x02\x05\x03\x04", // 水
+ 0x6c35: "\x04\x04\x01", // 氵
+ 0x6c36: "\x05\x02\x05\x03\x04", // 氶
+ 0x6c37: "\x04\x02\x05\x03\x04", // 氷
+ 0x6c38: "\x04\x05\x05\x03\x04", // 永
+ 0x6c39: "\x05\x02\x05\x03\x04", // 氹
+ 0x6c3a: "\x02\x04\x01\x03\x04", // 氺
+ 0x6c3b: "\x04\x04\x01\x05\x03", // 氻
+ 0x6c3c: "\x02\x05\x03\x04\x03\x04", // 氼
+ 0x6c3d: "\x03\x04\x02\x05\x03\x04", // 氽
+ 0x6c3e: "\x04\x04\x01\x05\x05", // 氾
+ 0x6c3f: "\x04\x04\x01\x03\x05", // 氿
+ 0x6c40: "\x04\x04\x01\x01\x02", // 汀
+ 0x6c41: "\x04\x04\x01\x01\x02", // 汁
+ 0x6c42: "\x01\x02\x04\x01\x03\x04\x04", // 求
+ 0x6c43: "\x04\x04\x01\x03\x04", // 汃
+ 0x6c44: "\x04\x04\x01\x03\x04", // 汄
+ 0x6c45: "\x04\x04\x01\x01\x05", // 汅
+ 0x6c46: "\x03\x04\x02\x05\x03\x04", // 汆
+ 0x6c47: "\x04\x04\x01\x01\x05", // 汇
+ 0x6c48: "\x04\x04\x01\x05\x01", // 汈
+ 0x6c49: "\x04\x04\x01\x05\x04", // 汉
+ 0x6c4a: "\x04\x04\x01\x05\x04\x04", // 汊
+ 0x6c4b: "\x04\x04\x01\x03\x05\x04", // 汋
+ 0x6c4c: "\x04\x04\x01\x03\x02\x02", // 汌
+ 0x6c4d: "\x04\x04\x01\x03\x05\x04", // 汍
+ 0x6c4e: "\x04\x04\x01\x03\x05\x04", // 汎
+ 0x6c4f: "\x04\x04\x01\x01\x03\x04", // 汏
+ 0x6c50: "\x04\x04\x01\x03\x05\x04", // 汐
+ 0x6c51: "\x04\x04\x01\x03\x01\x05", // 汑
+ 0x6c52: "\x04\x04\x01\x04\x01\x05", // 汒
+ 0x6c53: "\x04\x04\x01\x05\x02\x01", // 汓
+ 0x6c54: "\x04\x04\x01\x03\x01\x05", // 汔
+ 0x6c55: "\x04\x04\x01\x02\x05\x02", // 汕
+ 0x6c56: "\x02\x05\x02\x02\x05\x03\x04", // 汖
+ 0x6c57: "\x04\x04\x01\x01\x01\x02", // 汗
+ 0x6c58: "\x04\x04\x01\x03\x01\x02", // 汘
+ 0x6c59: "\x04\x04\x01\x01\x01\x02", // 汙
+ 0x6c5a: "\x04\x04\x01\x01\x01\x05", // 汚
+ 0x6c5b: "\x04\x04\x01\x05\x01\x02", // 汛
+ 0x6c5c: "\x04\x04\x01\x05\x01\x05", // 汜
+ 0x6c5d: "\x04\x04\x01\x05\x03\x01", // 汝
+ 0x6c5e: "\x01\x02\x01\x02\x05\x03\x04", // 汞
+ 0x6c5f: "\x04\x04\x01\x01\x02\x01", // 江
+ 0x6c60: "\x04\x04\x01\x05\x02\x05", // 池
+ 0x6c61: "\x04\x04\x01\x01\x01\x05", // 污
+ 0x6c62: "\x04\x04\x01\x01\x02\x01", // 汢
+ 0x6c63: "\x04\x04\x01\x03\x05\x04", // 汣
+ 0x6c64: "\x04\x04\x01\x05\x03\x03", // 汤
+ 0x6c65: "\x04\x04\x01\x01\x02\x05\x04", // 汥
+ 0x6c66: "\x04\x04\x01\x03\x05\x01\x05", // 汦
+ 0x6c67: "\x04\x04\x01\x01\x01\x03\x02", // 汧
+ 0x6c68: "\x04\x04\x01\x02\x05\x01\x01", // 汨
+ 0x6c69: "\x04\x04\x01\x02\x05\x01\x01", // 汩
+ 0x6c6a: "\x04\x04\x01\x01\x01\x02\x01", // 汪
+ 0x6c6b: "\x04\x04\x01\x01\x01\x03\x02", // 汫
+ 0x6c6c: "\x01\x01\x03\x02\x02\x05\x03\x04", // 汬
+ 0x6c6d: "\x04\x04\x01\x02\x05\x03\x04", // 汭
+ 0x6c6e: "\x04\x04\x01\x03\x05\x04\x01", // 汮
+ 0x6c6f: "\x04\x04\x01\x01\x03\x05\x04", // 汯
+ 0x6c70: "\x04\x04\x01\x01\x03\x04\x04", // 汰
+ 0x6c71: "\x04\x04\x01\x01\x03\x04\x04", // 汱
+ 0x6c72: "\x04\x04\x01\x03\x05\x04", // 汲
+ 0x6c73: "\x04\x04\x01\x03\x03\x05\x04", // 汳
+ 0x6c74: "\x04\x04\x01\x04\x01\x02\x04", // 汴
+ 0x6c75: "\x04\x04\x01\x03\x04\x04\x05", // 汵
+ 0x6c76: "\x04\x04\x01\x04\x01\x03\x04", // 汶
+ 0x6c77: "\x04\x04\x01\x03\x05\x04", // 汷
+ 0x6c78: "\x04\x04\x01\x04\x01\x05\x03", // 汸
+ 0x6c79: "\x04\x04\x01\x03\x04\x05\x02", // 汹
+ 0x6c7a: "\x04\x04\x01\x05\x01\x03\x04", // 決
+ 0x6c7b: "\x04\x04\x01\x03\x01\x01\x02", // 汻
+ 0x6c7c: "\x04\x04\x01\x03\x01\x01\x02", // 汼
+ 0x6c7d: "\x04\x04\x01\x03\x01\x01\x05", // 汽
+ 0x6c7e: "\x04\x04\x01\x03\x04\x05\x03", // 汾
+ 0x6c7f: "\x04\x04\x01\x05\x04\x05\x02", // 汿
+ 0x6c80: "\x02\x05\x03\x04\x05\x04\x05\x02", // 沀
+ 0x6c81: "\x04\x04\x01\x04\x05\x04\x04", // 沁
+ 0x6c82: "\x04\x04\x01\x03\x03\x01\x02", // 沂
+ 0x6c83: "\x04\x04\x01\x03\x01\x03\x04", // 沃
+ 0x6c84: "\x04\x04\x01\x01\x01\x05\x04", // 沄
+ 0x6c85: "\x04\x04\x01\x01\x01\x03\x05", // 沅
+ 0x6c86: "\x04\x04\x01\x04\x01\x03\x05", // 沆
+ 0x6c87: "\x04\x04\x01\x05\x04\x03\x05", // 沇
+ 0x6c88: "\x04\x04\x01\x04\x05\x03\x05", // 沈
+ 0x6c89: "\x04\x04\x01\x04\x05\x03\x05", // 沉
+ 0x6c8a: "\x04\x05\x03\x05\x02\x05\x03\x04", // 沊
+ 0x6c8b: "\x04\x04\x01\x01\x03\x05\x04", // 沋
+ 0x6c8c: "\x04\x04\x01\x01\x05\x02\x05", // 沌
+ 0x6c8d: "\x04\x04\x01\x01\x05\x05\x01", // 沍
+ 0x6c8e: "\x04\x04\x01\x03\x02\x03\x05", // 沎
+ 0x6c8f: "\x04\x04\x01\x01\x05\x05\x03", // 沏
+ 0x6c90: "\x04\x04\x01\x01\x02\x03\x04", // 沐
+ 0x6c91: "\x04\x04\x01\x05\x02\x01\x01", // 沑
+ 0x6c92: "\x04\x04\x01\x05\x03\x05\x04", // 沒
+ 0x6c93: "\x02\x05\x03\x04\x02\x05\x01\x01", // 沓
+ 0x6c94: "\x04\x04\x01\x01\x02\x05\x05", // 沔
+ 0x6c95: "\x04\x04\x01\x03\x05\x03\x03", // 沕
+ 0x6c96: "\x04\x04\x01\x02\x05\x01\x02", // 沖
+ 0x6c97: "\x01\x01\x03\x04\x02\x04\x01\x03\x04", // 沗
+ 0x6c98: "\x04\x04\x01\x01\x05\x03\x05", // 沘
+ 0x6c99: "\x04\x04\x01\x02\x03\x04\x03", // 沙
+ 0x6c9a: "\x04\x04\x01\x02\x01\x02\x01", // 沚
+ 0x6c9b: "\x04\x04\x01\x01\x02\x05\x02", // 沛
+ 0x6c9c: "\x04\x04\x01\x03\x02\x01\x05", // 沜
+ 0x6c9d: "\x02\x05\x03\x04\x02\x05\x03\x04", // 沝
+ 0x6c9e: "\x04\x04\x01\x01\x02\x05\x02", // 沞
+ 0x6c9f: "\x04\x04\x01\x03\x05\x05\x04", // 沟
+ 0x6ca0: "\x04\x04\x01\x03\x03\x02\x04", // 沠
+ 0x6ca1: "\x04\x04\x01\x03\x05\x05\x04", // 没
+ 0x6ca2: "\x04\x04\x01\x05\x01\x03\x04", // 沢
+ 0x6ca3: "\x04\x04\x01\x01\x01\x01\x02", // 沣
+ 0x6ca4: "\x04\x04\x01\x01\x03\x04\x05", // 沤
+ 0x6ca5: "\x04\x04\x01\x01\x03\x05\x03", // 沥
+ 0x6ca6: "\x04\x04\x01\x03\x04\x03\x05", // 沦
+ 0x6ca7: "\x04\x04\x01\x03\x04\x05\x05", // 沧
+ 0x6ca8: "\x04\x04\x01\x03\x05\x03\x04", // 沨
+ 0x6ca9: "\x04\x04\x01\x04\x03\x05\x04", // 沩
+ 0x6caa: "\x04\x04\x01\x04\x05\x01\x03", // 沪
+ 0x6cab: "\x04\x04\x01\x01\x01\x02\x03\x04", // 沫
+ 0x6cac: "\x04\x04\x01\x01\x01\x02\x03\x04", // 沬
+ 0x6cad: "\x04\x04\x01\x01\x02\x03\x04\x04", // 沭
+ 0x6cae: "\x04\x04\x01\x02\x05\x01\x01\x01", // 沮
+ 0x6caf: "\x02\x05\x03\x04\x01\x03\x02\x05\x01", // 沯
+ 0x6cb0: "\x04\x04\x01\x01\x03\x02\x05\x01", // 沰
+ 0x6cb1: "\x04\x04\x01\x04\x04\x05\x03\x05", // 沱
+ 0x6cb2: "\x04\x04\x01\x03\x01\x05\x02\x05", // 沲
+ 0x6cb3: "\x04\x04\x01\x01\x02\x05\x01\x02", // 河
+ 0x6cb4: "\x04\x04\x01\x03\x04\x03\x03\x03", // 沴
+ 0x6cb5: "\x04\x04\x01\x03\x05\x02\x03\x04", // 沵
+ 0x6cb6: "\x04\x04\x01\x01\x01\x02\x03\x04", // 沶
+ 0x6cb7: "\x04\x04\x01\x01\x03\x05\x04\x04", // 沷
+ 0x6cb8: "\x04\x04\x01\x05\x01\x05\x03\x02", // 沸
+ 0x6cb9: "\x04\x04\x01\x02\x05\x01\x02\x01", // 油
+ 0x6cba: "\x04\x04\x01\x02\x05\x01\x02\x01", // 沺
+ 0x6cbb: "\x04\x04\x01\x05\x04\x02\x05\x01", // 治
+ 0x6cbc: "\x04\x04\x01\x05\x03\x02\x05\x01", // 沼
+ 0x6cbd: "\x04\x04\x01\x01\x02\x02\x05\x01", // 沽
+ 0x6cbe: "\x04\x04\x01\x02\x01\x02\x05\x01", // 沾
+ 0x6cbf: "\x04\x04\x01\x03\x05\x02\x05\x01", // 沿
+ 0x6cc0: "\x04\x04\x01\x05\x01\x02\x05\x01", // 泀
+ 0x6cc1: "\x04\x04\x01\x02\x05\x01\x03\x05", // 況
+ 0x6cc2: "\x04\x04\x01\x02\x05\x02\x05\x01", // 泂
+ 0x6cc3: "\x04\x04\x01\x03\x05\x02\x05\x01", // 泃
+ 0x6cc4: "\x04\x04\x01\x01\x02\x02\x01\x05", // 泄
+ 0x6cc5: "\x04\x04\x01\x02\x05\x03\x04\x01", // 泅
+ 0x6cc6: "\x04\x04\x01\x03\x01\x01\x03\x04", // 泆
+ 0x6cc7: "\x04\x04\x01\x05\x03\x02\x05\x01", // 泇
+ 0x6cc8: "\x04\x04\x01\x03\x05\x04\x04\x04", // 泈
+ 0x6cc9: "\x03\x02\x05\x01\x01\x02\x05\x03\x04", // 泉
+ 0x6cca: "\x04\x04\x01\x03\x02\x05\x01\x01", // 泊
+ 0x6ccb: "\x04\x04\x01\x01\x02\x01\x03\x02", // 泋
+ 0x6ccc: "\x04\x04\x01\x04\x05\x04\x03\x04", // 泌
+ 0x6ccd: "\x04\x04\x01\x01\x02\x03\x04\x01", // 泍
+ 0x6cce: "\x04\x04\x01\x03\x01\x02\x01\x01", // 泎
+ 0x6ccf: "\x04\x04\x01\x05\x02\x02\x05\x02", // 泏
+ 0x6cd0: "\x04\x04\x01\x05\x02\x05\x03", // 泐
+ 0x6cd1: "\x04\x04\x01\x05\x05\x04\x05\x03", // 泑
+ 0x6cd2: "\x04\x04\x01\x03\x03\x05\x04\x04", // 泒
+ 0x6cd3: "\x04\x04\x01\x05\x01\x05\x05\x04", // 泓
+ 0x6cd4: "\x04\x04\x01\x01\x02\x02\x01\x01", // 泔
+ 0x6cd5: "\x04\x04\x01\x01\x02\x01\x05\x04", // 法
+ 0x6cd6: "\x04\x04\x01\x03\x05\x03\x05\x02", // 泖
+ 0x6cd7: "\x04\x04\x01\x02\x05\x03\x05\x01", // 泗
+ 0x6cd8: "\x04\x04\x01\x03\x04\x03\x01\x02", // 泘
+ 0x6cd9: "\x04\x04\x01\x01\x04\x03\x01\x02", // 泙
+ 0x6cda: "\x04\x04\x01\x02\x01\x02\x01\x03\x05", // 泚
+ 0x6cdb: "\x04\x04\x01\x03\x04\x05\x04", // 泛
+ 0x6cdc: "\x04\x04\x01\x03\x05\x01\x05\x04", // 泜
+ 0x6cdd: "\x04\x04\x01\x03\x03\x01\x02\x04", // 泝
+ 0x6cde: "\x04\x04\x01\x04\x04\x05\x01\x02", // 泞
+ 0x6cdf: "\x04\x04\x01\x01\x02\x01\x02\x01", // 泟
+ 0x6ce0: "\x04\x04\x01\x03\x04\x04\x05\x04", // 泠
+ 0x6ce1: "\x04\x04\x01\x03\x05\x05\x01\x05", // 泡
+ 0x6ce2: "\x04\x04\x01\x05\x03\x02\x05\x04", // 波
+ 0x6ce3: "\x04\x04\x01\x04\x01\x04\x03\x01", // 泣
+ 0x6ce4: "\x04\x04\x01\x05\x04\x03\x04", // 泤
+ 0x6ce5: "\x04\x04\x01\x05\x01\x03\x03\x05", // 泥
+ 0x6ce6: "\x04\x04\x01\x05\x01\x03\x03\x05", // 泦
+ 0x6ce7: "\x04\x04\x01\x01\x05\x05\x03\x04", // 泧
+ 0x6ce8: "\x04\x04\x01\x04\x01\x01\x02\x01", // 注
+ 0x6ce9: "\x04\x04\x01\x03\x01\x01\x02\x01", // 泩
+ 0x6cea: "\x04\x04\x01\x02\x05\x01\x01\x01", // 泪
+ 0x6ceb: "\x04\x04\x01\x04\x01\x05\x05\x04", // 泫
+ 0x6cec: "\x04\x04\x01\x04\x04\x05\x03\x04", // 泬
+ 0x6ced: "\x04\x04\x01\x03\x02\x01\x02\x04", // 泭
+ 0x6cee: "\x04\x04\x01\x04\x03\x01\x01\x02", // 泮
+ 0x6cef: "\x04\x04\x01\x05\x01\x05\x01\x05", // 泯
+ 0x6cf0: "\x01\x01\x01\x03\x04\x02\x04\x01\x03\x04", // 泰
+ 0x6cf1: "\x04\x04\x01\x02\x05\x01\x03\x04", // 泱
+ 0x6cf2: "\x04\x04\x01\x03\x05\x02\x03", // 泲
+ 0x6cf3: "\x04\x04\x01\x04\x05\x05\x03\x04", // 泳
+ 0x6cf4: "\x02\x05\x03\x04\x02\x05\x02\x02\x01", // 泴
+ 0x6cf5: "\x01\x03\x02\x05\x01\x02\x05\x03\x04", // 泵
+ 0x6cf6: "\x04\x04\x03\x04\x05\x02\x05\x03\x04", // 泶
+ 0x6cf7: "\x04\x04\x01\x01\x03\x05\x03\x04", // 泷
+ 0x6cf8: "\x04\x04\x01\x02\x01\x05\x01\x03", // 泸
+ 0x6cf9: "\x04\x04\x01\x02\x05\x01\x01\x01", // 泹
+ 0x6cfa: "\x04\x04\x01\x03\x05\x02\x03\x04", // 泺
+ 0x6cfb: "\x04\x04\x01\x04\x05\x01\x05\x01", // 泻
+ 0x6cfc: "\x04\x04\x01\x05\x03\x05\x04\x04", // 泼
+ 0x6cfd: "\x04\x04\x01\x05\x04\x01\x01\x02", // 泽
+ 0x6cfe: "\x04\x04\x01\x05\x04\x01\x02\x01", // 泾
+ 0x6cff: "\x04\x04\x01\x05\x01\x01\x05\x03\x04", // 泿
+ 0x6d00: "\x04\x04\x01\x03\x03\x05\x04\x01\x04", // 洀
+ 0x6d01: "\x04\x04\x01\x01\x02\x01\x02\x05\x01", // 洁
+ 0x6d02: "\x04\x04\x01\x04\x01\x03\x02\x03\x04", // 洂
+ 0x6d03: "\x04\x04\x01\x01\x03\x04\x03\x03\x04", // 洃
+ 0x6d04: "\x04\x04\x01\x02\x05\x02\x05\x01\x01", // 洄
+ 0x6d05: "\x04\x04\x01\x01\x02\x05\x02\x01\x01", // 洅
+ 0x6d06: "\x04\x04\x01\x05\x02\x05\x03\x04\x01", // 洆
+ 0x6d07: "\x04\x04\x01\x02\x05\x01\x03\x04\x01", // 洇
+ 0x6d08: "\x04\x04\x01\x03\x05\x01\x03\x05\x05", // 洈
+ 0x6d09: "\x04\x04\x01\x03\x03\x01\x02\x05\x01", // 洉
+ 0x6d0a: "\x04\x04\x01\x01\x03\x02\x05\x02\x01", // 洊
+ 0x6d0b: "\x04\x04\x01\x04\x03\x01\x01\x01\x02", // 洋
+ 0x6d0c: "\x04\x04\x01\x01\x03\x05\x04\x02\x02", // 洌
+ 0x6d0d: "\x04\x04\x01\x01\x02\x02\x05\x01\x02\x05", // 洍
+ 0x6d0e: "\x04\x04\x01\x03\x02\x05\x01\x01\x01", // 洎
+ 0x6d0f: "\x04\x04\x01\x01\x03\x02\x05\x02\x02", // 洏
+ 0x6d10: "\x04\x04\x01\x03\x03\x02\x01\x01\x02", // 洐
+ 0x6d11: "\x04\x04\x01\x03\x02\x01\x03\x04\x04", // 洑
+ 0x6d12: "\x04\x04\x01\x01\x02\x05\x03\x05\x01", // 洒
+ 0x6d13: "\x04\x04\x01\x01\x02\x05\x02\x03\x04", // 洓
+ 0x6d14: "\x04\x04\x01\x01\x02\x01\x01\x02\x04", // 洔
+ 0x6d15: "\x04\x04\x01\x03\x04\x02\x05\x01\x01", // 洕
+ 0x6d16: "\x04\x04\x01\x02\x05\x01\x01\x01\x03\x04", // 洖
+ 0x6d17: "\x04\x04\x01\x03\x01\x02\x01\x03\x05", // 洗
+ 0x6d18: "\x04\x04\x01\x01\x02\x01\x03\x01\x05", // 洘
+ 0x6d19: "\x04\x04\x01\x03\x01\x01\x02\x03\x04", // 洙
+ 0x6d1a: "\x04\x04\x01\x03\x05\x04\x01\x05\x02", // 洚
+ 0x6d1b: "\x04\x04\x01\x03\x05\x04\x02\x05\x01", // 洛
+ 0x6d1c: "\x03\x05\x04\x02\x05\x01\x02\x05\x03\x04", // 洜
+ 0x6d1d: "\x04\x04\x01\x04\x04\x05\x05\x03\x01", // 洝
+ 0x6d1e: "\x04\x04\x01\x02\x05\x01\x02\x05\x01", // 洞
+ 0x6d1f: "\x04\x04\x01\x01\x05\x01\x05\x03\x04", // 洟
+ 0x6d20: "\x04\x04\x01\x05\x04\x03\x01\x01\x02", // 洠
+ 0x6d21: "\x04\x04\x01\x01\x01\x01\x02\x03\x04", // 洡
+ 0x6d22: "\x04\x04\x01\x03\x02\x05\x01\x01\x03", // 洢
+ 0x6d23: "\x04\x04\x01\x04\x03\x01\x02\x03\x04", // 洣
+ 0x6d24: "\x04\x04\x01\x03\x04\x01\x01\x02\x01", // 洤
+ 0x6d25: "\x04\x04\x01\x05\x01\x01\x01\x01\x02", // 津
+ 0x6d26: "\x04\x04\x01\x01\x03\x02\x05\x01\x01", // 洦
+ 0x6d27: "\x04\x04\x01\x01\x03\x02\x05\x01\x01", // 洧
+ 0x6d28: "\x04\x04\x01\x04\x01\x03\x04\x03\x04", // 洨
+ 0x6d29: "\x04\x04\x01\x02\x05\x01\x01\x05\x03", // 洩
+ 0x6d2a: "\x04\x04\x01\x01\x02\x02\x01\x03\x04", // 洪
+ 0x6d2b: "\x04\x04\x01\x03\x02\x05\x02\x02\x01", // 洫
+ 0x6d2c: "\x04\x04\x01\x03\x05\x01\x03\x05\x04", // 洬
+ 0x6d2d: "\x04\x04\x01\x01\x01\x01\x02\x01\x05", // 洭
+ 0x6d2e: "\x04\x04\x01\x03\x04\x01\x05\x03\x04", // 洮
+ 0x6d2f: "\x01\x01\x01\x02\x05\x03\x02\x05\x03\x04", // 洯
+ 0x6d30: "\x04\x04\x01\x01\x05\x01\x05", // 洰
+ 0x6d31: "\x04\x04\x01\x01\x02\x02\x01\x01\x01", // 洱
+ 0x6d32: "\x04\x04\x01\x04\x03\x04\x02\x04\x02", // 洲
+ 0x6d33: "\x04\x04\x01\x05\x03\x01\x02\x05\x01", // 洳
+ 0x6d34: "\x04\x04\x01\x04\x03\x01\x01\x03\x02", // 洴
+ 0x6d35: "\x04\x04\x01\x03\x05\x02\x05\x01\x01", // 洵
+ 0x6d36: "\x04\x04\x01\x03\x05\x03\x04\x05\x02", // 洶
+ 0x6d37: "\x04\x04\x01\x01\x05\x04\x01\x02\x01", // 洷
+ 0x6d38: "\x04\x04\x01\x02\x04\x03\x01\x03\x05", // 洸
+ 0x6d39: "\x04\x04\x01\x01\x02\x05\x01\x01\x01", // 洹
+ 0x6d3a: "\x04\x04\x01\x03\x05\x04\x02\x05\x01", // 洺
+ 0x6d3b: "\x04\x04\x01\x03\x01\x02\x02\x05\x01", // 活
+ 0x6d3c: "\x04\x04\x01\x01\x02\x01\x01\x02\x01", // 洼
+ 0x6d3d: "\x04\x04\x01\x03\x04\x01\x02\x05\x01", // 洽
+ 0x6d3e: "\x04\x04\x01\x03\x03\x03\x05\x03\x04", // 派
+ 0x6d3f: "\x04\x04\x01\x01\x03\x04\x01\x01\x05", // 洿
+ 0x6d40: "\x04\x04\x01\x02\x05\x01\x02\x02\x01", // 浀
+ 0x6d41: "\x04\x04\x01\x04\x01\x05\x04\x03\x02\x05", // 流
+ 0x6d42: "\x04\x04\x01\x04\x03\x01\x01\x03\x04", // 浂
+ 0x6d43: "\x04\x04\x01\x01\x04\x03\x01\x03\x04", // 浃
+ 0x6d44: "\x04\x04\x01\x03\x05\x05\x01\x01\x02", // 浄
+ 0x6d45: "\x04\x04\x01\x01\x01\x05\x03\x04", // 浅
+ 0x6d46: "\x04\x01\x02\x03\x05\x04\x02\x05\x03\x04", // 浆
+ 0x6d47: "\x04\x04\x01\x01\x05\x03\x01\x03\x05", // 浇
+ 0x6d48: "\x04\x04\x01\x02\x01\x02\x05\x03\x04", // 浈
+ 0x6d49: "\x04\x04\x01\x02\x03\x01\x02\x05\x02", // 浉
+ 0x6d4a: "\x04\x04\x01\x02\x05\x01\x02\x01\x04", // 浊
+ 0x6d4b: "\x04\x04\x01\x02\x05\x03\x04\x02\x02", // 测
+ 0x6d4c: "\x04\x04\x01\x03\x02\x01\x05\x03\x04", // 浌
+ 0x6d4d: "\x04\x04\x01\x03\x04\x01\x01\x05\x04", // 浍
+ 0x6d4e: "\x04\x04\x01\x04\x01\x03\x04\x03\x02", // 济
+ 0x6d4f: "\x04\x04\x01\x04\x01\x03\x04\x02\x02", // 浏
+ 0x6d50: "\x04\x04\x01\x04\x01\x04\x03\x01\x03", // 浐
+ 0x6d51: "\x04\x04\x01\x04\x05\x01\x05\x01\x02", // 浑
+ 0x6d52: "\x04\x04\x01\x04\x05\x03\x01\x01\x02", // 浒
+ 0x6d53: "\x04\x04\x01\x04\x05\x03\x05\x03\x04", // 浓
+ 0x6d54: "\x04\x04\x01\x05\x01\x01\x01\x02\x04", // 浔
+ 0x6d55: "\x04\x04\x01\x05\x01\x03\x04\x04\x04", // 浕
+ 0x6d56: "\x04\x04\x01\x03\x04\x04\x03\x01\x02\x04", // 浖
+ 0x6d57: "\x04\x04\x01\x01\x02\x04\x01\x03\x04\x04", // 浗
+ 0x6d58: "\x04\x04\x01\x05\x01\x03\x03\x01\x01\x05", // 浘
+ 0x6d59: "\x04\x04\x01\x01\x02\x01\x03\x03\x01\x02", // 浙
+ 0x6d5a: "\x04\x04\x01\x05\x04\x03\x04\x03\x05\x04", // 浚
+ 0x6d5b: "\x04\x04\x01\x03\x04\x04\x05\x02\x05\x01", // 浛
+ 0x6d5c: "\x04\x04\x01\x03\x02\x01\x02\x01\x03\x04", // 浜
+ 0x6d5d: "\x04\x04\x01\x01\x03\x05\x03\x03\x03\x04", // 浝
+ 0x6d5e: "\x04\x04\x01\x02\x05\x01\x02\x01\x03\x04", // 浞
+ 0x6d5f: "\x04\x04\x01\x03\x02\x02\x03\x01\x03\x04", // 浟
+ 0x6d60: "\x04\x04\x01\x03\x04\x01\x03\x02\x05\x02", // 浠
+ 0x6d61: "\x04\x04\x01\x01\x02\x04\x05\x05\x02\x01", // 浡
+ 0x6d62: "\x04\x04\x01\x01\x02\x05\x01\x04\x03\x01", // 浢
+ 0x6d63: "\x04\x04\x01\x04\x04\x05\x01\x01\x03\x05", // 浣
+ 0x6d64: "\x04\x04\x01\x04\x04\x05\x01\x03\x05\x04", // 浤
+ 0x6d65: "\x04\x04\x01\x02\x05\x01\x05\x02\x01\x05", // 浥
+ 0x6d66: "\x04\x04\x01\x01\x02\x05\x01\x01\x02\x04", // 浦
+ 0x6d67: "\x04\x04\x01\x02\x05\x01\x01\x01\x02\x01", // 浧
+ 0x6d68: "\x04\x04\x01\x04\x04\x05\x01\x02\x03\x04", // 浨
+ 0x6d69: "\x04\x04\x01\x03\x01\x02\x01\x02\x05\x01", // 浩
+ 0x6d6a: "\x04\x04\x01\x04\x05\x01\x01\x05\x03\x04", // 浪
+ 0x6d6b: "\x04\x04\x01\x04\x05\x03\x04\x01\x01\x02", // 浫
+ 0x6d6c: "\x04\x04\x01\x02\x05\x01\x01\x02\x01\x01", // 浬
+ 0x6d6d: "\x04\x04\x01\x01\x02\x05\x01\x01\x03\x04", // 浭
+ 0x6d6e: "\x04\x04\x01\x03\x04\x04\x03\x05\x02\x01", // 浮
+ 0x6d6f: "\x04\x04\x01\x01\x02\x05\x01\x02\x05\x01", // 浯
+ 0x6d70: "\x04\x04\x01\x03\x01\x02\x03\x04\x02\x02", // 浰
+ 0x6d71: "\x04\x04\x01\x01\x03\x01\x01\x05\x03\x04", // 浱
+ 0x6d72: "\x04\x04\x01\x03\x05\x04\x01\x01\x01\x02", // 浲
+ 0x6d73: "\x04\x04\x01\x01\x05\x04\x02\x05\x01\x01", // 浳
+ 0x6d74: "\x04\x04\x01\x03\x04\x03\x04\x02\x05\x01", // 浴
+ 0x6d75: "\x04\x04\x01\x03\x05\x04\x01\x03\x03\x03", // 浵
+ 0x6d76: "\x04\x04\x01\x04\x04\x05\x03\x01\x01\x02", // 浶
+ 0x6d77: "\x04\x04\x01\x03\x01\x05\x05\x04\x01\x04", // 海
+ 0x6d78: "\x04\x04\x01\x05\x01\x01\x04\x05\x05\x04", // 浸
+ 0x6d79: "\x04\x04\x01\x01\x03\x04\x03\x04\x03\x04", // 浹
+ 0x6d7a: "\x04\x04\x01\x04\x04\x02\x02\x05\x01\x02", // 浺
+ 0x6d7b: "\x04\x04\x01\x02\x05\x03\x04\x02\x05\x01", // 浻
+ 0x6d7c: "\x04\x04\x01\x03\x05\x02\x05\x01\x03\x05", // 浼
+ 0x6d7d: "\x04\x04\x01\x03\x04\x04\x03\x05\x03\x01", // 浽
+ 0x6d7e: "\x04\x04\x01\x01\x02\x01\x03\x02\x03\x04", // 浾
+ 0x6d7f: "\x04\x04\x01\x02\x05\x01\x01\x01\x03\x04", // 浿
+ 0x6d80: "\x04\x04\x01\x02\x05\x01\x01\x01\x03\x05", // 涀
+ 0x6d81: "\x04\x04\x01\x01\x02\x03\x04\x03\x03\x03", // 涁
+ 0x6d82: "\x04\x04\x01\x03\x04\x01\x01\x02\x03\x04", // 涂
+ 0x6d83: "\x04\x04\x01\x02\x05\x01\x02\x03\x04\x01", // 涃
+ 0x6d84: "\x04\x04\x01\x02\x05\x01\x02\x01\x01\x05", // 涄
+ 0x6d85: "\x04\x04\x01\x02\x05\x01\x01\x01\x02\x01", // 涅
+ 0x6d86: "\x04\x04\x01\x02\x05\x01\x01\x01\x01\x02", // 涆
+ 0x6d87: "\x04\x04\x01\x01\x05\x05\x05\x01\x02\x01", // 涇
+ 0x6d88: "\x04\x04\x01\x02\x04\x03\x02\x05\x01\x01", // 消
+ 0x6d89: "\x04\x04\x01\x02\x01\x02\x01\x02\x03\x03", // 涉
+ 0x6d8a: "\x04\x04\x01\x05\x03\x04\x04\x05\x04\x04", // 涊
+ 0x6d8b: "\x04\x04\x01\x04\x04\x05\x01\x03\x04\x04", // 涋
+ 0x6d8c: "\x04\x04\x01\x05\x04\x02\x05\x01\x01\x02", // 涌
+ 0x6d8d: "\x04\x04\x01\x01\x02\x01\x03\x05\x02\x01", // 涍
+ 0x6d8e: "\x04\x04\x01\x03\x02\x01\x05\x05\x04", // 涎
+ 0x6d8f: "\x04\x04\x01\x03\x01\x02\x01\x05\x04", // 涏
+ 0x6d90: "\x04\x04\x01\x03\x01\x05\x01\x05\x03\x04", // 涐
+ 0x6d91: "\x04\x04\x01\x01\x02\x05\x01\x02\x03\x04", // 涑
+ 0x6d92: "\x04\x04\x01\x05\x01\x01\x03\x02\x05\x01", // 涒
+ 0x6d93: "\x04\x04\x01\x02\x05\x01\x02\x05\x01\x01", // 涓
+ 0x6d94: "\x04\x04\x01\x02\x05\x02\x03\x04\x04\x05", // 涔
+ 0x6d95: "\x04\x04\x01\x04\x03\x05\x01\x05\x02\x03", // 涕
+ 0x6d96: "\x04\x04\x01\x03\x02\x04\x01\x04\x03\x01", // 涖
+ 0x6d97: "\x04\x04\x01\x03\x04\x02\x05\x01\x03\x05", // 涗
+ 0x6d98: "\x04\x04\x01\x05\x04\x03\x01\x01\x03\x04", // 涘
+ 0x6d99: "\x04\x04\x01\x04\x05\x01\x03\x01\x03\x04", // 涙
+ 0x6d9a: "\x04\x04\x01\x04\x03\x02\x05\x01\x03\x05", // 涚
+ 0x6d9b: "\x04\x04\x01\x01\x01\x01\x03\x01\x02\x04", // 涛
+ 0x6d9c: "\x04\x04\x01\x01\x02\x01\x04\x05\x03\x05", // 涜
+ 0x6d9d: "\x04\x04\x01\x01\x02\x02\x04\x05\x05\x03", // 涝
+ 0x6d9e: "\x04\x04\x01\x01\x04\x03\x01\x02\x03\x04", // 涞
+ 0x6d9f: "\x04\x04\x01\x01\x05\x01\x02\x04\x05\x04", // 涟
+ 0x6da0: "\x04\x04\x01\x02\x05\x01\x01\x05\x02\x01", // 涠
+ 0x6da1: "\x04\x04\x01\x02\x05\x01\x02\x05\x03\x04", // 涡
+ 0x6da2: "\x04\x04\x01\x02\x05\x01\x02\x05\x03\x04", // 涢
+ 0x6da3: "\x04\x04\x01\x03\x05\x02\x05\x01\x03\x04", // 涣
+ 0x6da4: "\x04\x04\x01\x03\x05\x04\x01\x02\x03\x04", // 涤
+ 0x6da5: "\x04\x04\x01\x04\x01\x02\x05\x01\x05\x02", // 涥
+ 0x6da6: "\x04\x04\x01\x04\x02\x05\x01\x01\x02\x01", // 润
+ 0x6da7: "\x04\x04\x01\x04\x02\x05\x02\x05\x01\x01", // 涧
+ 0x6da8: "\x04\x04\x01\x05\x01\x05\x03\x01\x05\x04", // 涨
+ 0x6da9: "\x04\x04\x01\x05\x03\x04\x02\x01\x02\x01", // 涩
+ 0x6daa: "\x04\x04\x01\x04\x01\x04\x03\x01\x02\x05\x01", // 涪
+ 0x6dab: "\x04\x04\x01\x04\x04\x05\x02\x05\x01\x05\x01", // 涫
+ 0x6dac: "\x04\x04\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 涬
+ 0x6dad: "\x04\x04\x01\x03\x04\x04\x03\x04\x05\x05\x04", // 涭
+ 0x6dae: "\x04\x04\x01\x05\x01\x03\x02\x05\x02\x02\x02", // 涮
+ 0x6daf: "\x04\x04\x01\x01\x03\x01\x02\x01\x01\x02\x01", // 涯
+ 0x6db0: "\x04\x04\x01\x05\x04\x05\x04\x05\x04\x05\x04", // 涰
+ 0x6db1: "\x04\x04\x01\x01\x02\x01\x01\x01\x05\x03\x04", // 涱
+ 0x6db2: "\x04\x04\x01\x04\x01\x03\x02\x03\x05\x04\x04", // 液
+ 0x6db3: "\x04\x04\x01\x04\x04\x05\x03\x04\x01\x02\x01", // 涳
+ 0x6db4: "\x04\x04\x01\x04\x04\x05\x03\x05\x04\x05\x05", // 涴
+ 0x6db5: "\x04\x04\x01\x05\x02\x04\x01\x03\x04\x05\x02", // 涵
+ 0x6db6: "\x04\x04\x01\x03\x01\x02\x01\x02\x02\x01\x01", // 涶
+ 0x6db7: "\x04\x04\x01\x01\x02\x05\x01\x01\x02\x03\x04", // 涷
+ 0x6db8: "\x04\x04\x01\x02\x05\x01\x02\x02\x05\x01\x01", // 涸
+ 0x6db9: "\x04\x04\x01\x03\x01\x02\x03\x04\x05\x03\x01", // 涹
+ 0x6dba: "\x04\x04\x01\x05\x01\x03\x01\x02\x02\x05\x01", // 涺
+ 0x6dbb: "\x04\x04\x01\x03\x04\x01\x01\x02\x02\x05\x01", // 涻
+ 0x6dbc: "\x04\x04\x01\x04\x01\x02\x05\x01\x02\x03\x04", // 涼
+ 0x6dbd: "\x04\x04\x01\x03\x05\x01\x05\x02\x05\x01\x01", // 涽
+ 0x6dbe: "\x04\x04\x01\x02\x05\x03\x04\x02\x05\x01\x01", // 涾
+ 0x6dbf: "\x04\x04\x01\x01\x03\x05\x03\x03\x04\x03\x04", // 涿
+ 0x6dc0: "\x04\x04\x01\x04\x04\x05\x01\x02\x01\x03\x04", // 淀
+ 0x6dc1: "\x04\x04\x01\x04\x01\x04\x03\x01\x05\x03\x01", // 淁
+ 0x6dc2: "\x04\x04\x01\x02\x05\x01\x01\x01\x01\x02\x04", // 淂
+ 0x6dc3: "\x04\x04\x01\x04\x03\x01\x01\x03\x04\x05\x05", // 淃
+ 0x6dc4: "\x04\x04\x01\x05\x05\x05\x02\x05\x01\x02\x01", // 淄
+ 0x6dc5: "\x04\x04\x01\x01\x02\x03\x04\x03\x03\x01\x02", // 淅
+ 0x6dc6: "\x04\x04\x01\x03\x04\x01\x03\x02\x05\x01\x01", // 淆
+ 0x6dc7: "\x04\x04\x01\x01\x02\x02\x01\x01\x01\x03\x04", // 淇
+ 0x6dc8: "\x04\x04\x01\x05\x01\x03\x05\x02\x02\x05\x02", // 淈
+ 0x6dc9: "\x04\x04\x01\x02\x05\x01\x01\x01\x02\x03\x04", // 淉
+ 0x6dca: "\x04\x04\x01\x03\x05\x03\x02\x01\x05\x01\x01", // 淊
+ 0x6dcb: "\x04\x04\x01\x01\x02\x03\x04\x01\x02\x03\x04", // 淋
+ 0x6dcc: "\x04\x04\x01\x02\x04\x03\x02\x05\x02\x05\x01", // 淌
+ 0x6dcd: "\x04\x04\x01\x03\x05\x01\x02\x01\x02\x05\x01", // 淍
+ 0x6dce: "\x04\x04\x01\x01\x01\x01\x03\x04\x01\x01\x02", // 淎
+ 0x6dcf: "\x04\x04\x01\x02\x05\x01\x01\x01\x01\x03\x04", // 淏
+ 0x6dd0: "\x04\x04\x01\x02\x05\x01\x01\x02\x05\x01\x01", // 淐
+ 0x6dd1: "\x04\x04\x01\x02\x01\x01\x02\x03\x04\x05\x04", // 淑
+ 0x6dd2: "\x04\x04\x01\x01\x05\x01\x01\x02\x05\x03\x01", // 淒
+ 0x6dd3: "\x04\x04\x01\x01\x02\x02\x04\x01\x05\x03", // 淓
+ 0x6dd4: "\x04\x04\x01\x01\x02\x02\x05\x01\x01\x01\x01", // 淔
+ 0x6dd5: "\x04\x04\x01\x01\x02\x01\x03\x04\x01\x02\x01", // 淕
+ 0x6dd6: "\x04\x04\x01\x02\x01\x02\x05\x01\x01\x01\x02", // 淖
+ 0x6dd7: "\x04\x04\x01\x03\x05\x04\x03\x01\x02\x03\x04", // 淗
+ 0x6dd8: "\x04\x04\x01\x03\x05\x03\x01\x01\x02\x05\x02", // 淘
+ 0x6dd9: "\x04\x04\x01\x04\x04\x05\x01\x01\x02\x03\x04", // 淙
+ 0x6dda: "\x04\x04\x01\x04\x05\x01\x03\x01\x03\x04\x04", // 淚
+ 0x6ddb: "\x04\x04\x01\x03\x01\x01\x02\x05\x02\x02\x02", // 淛
+ 0x6ddc: "\x04\x04\x01\x03\x05\x01\x01\x03\x05\x01\x01", // 淜
+ 0x6ddd: "\x04\x04\x01\x03\x05\x01\x01\x05\x02\x01\x05", // 淝
+ 0x6dde: "\x04\x04\x01\x01\x02\x03\x04\x03\x04\x05\x04", // 淞
+ 0x6ddf: "\x04\x04\x01\x02\x05\x01\x02\x02\x01\x03\x04", // 淟
+ 0x6de0: "\x04\x04\x01\x02\x05\x01\x02\x01\x01\x03\x02", // 淠
+ 0x6de1: "\x04\x04\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 淡
+ 0x6de2: "\x04\x04\x01\x01\x02\x05\x01\x01\x05\x03\x04", // 淢
+ 0x6de3: "\x04\x04\x01\x03\x02\x01\x05\x01\x01\x03\x05", // 淣
+ 0x6de4: "\x04\x04\x01\x04\x01\x05\x03\x03\x04\x04\x04", // 淤
+ 0x6de5: "\x04\x04\x01\x05\x05\x01\x02\x04\x01\x03\x04", // 淥
+ 0x6de6: "\x04\x04\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 淦
+ 0x6de7: "\x04\x04\x01\x04\x04\x05\x04\x05\x04\x03\x04", // 淧
+ 0x6de8: "\x04\x04\x01\x03\x04\x04\x03\x05\x01\x01\x02", // 淨
+ 0x6de9: "\x04\x04\x01\x01\x02\x01\x03\x04\x03\x05\x04", // 淩
+ 0x6dea: "\x04\x04\x01\x03\x04\x01\x02\x05\x01\x02\x02", // 淪
+ 0x6deb: "\x04\x04\x01\x03\x04\x04\x03\x03\x01\x02\x01", // 淫
+ 0x6dec: "\x04\x04\x01\x04\x01\x03\x04\x03\x04\x01\x02", // 淬
+ 0x6ded: "\x04\x04\x01\x04\x05\x01\x03\x01\x02\x03\x04", // 淭
+ 0x6dee: "\x04\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 淮
+ 0x6def: "\x04\x04\x01\x04\x01\x05\x04\x02\x05\x01\x01", // 淯
+ 0x6df0: "\x04\x04\x01\x03\x04\x04\x05\x04\x05\x04\x04", // 淰
+ 0x6df1: "\x04\x04\x01\x04\x05\x03\x04\x01\x02\x03\x04", // 深
+ 0x6df2: "\x04\x04\x01\x02\x01\x05\x03\x01\x05\x03\x05", // 淲
+ 0x6df3: "\x04\x04\x01\x04\x01\x02\x05\x01\x05\x02\x01", // 淳
+ 0x6df4: "\x04\x04\x01\x03\x05\x03\x03\x04\x05\x04\x04", // 淴
+ 0x6df5: "\x04\x04\x01\x03\x01\x02\x01\x05\x05\x02\x01\x02", // 淵
+ 0x6df6: "\x04\x04\x01\x01\x03\x04\x03\x04\x02\x03\x04", // 淶
+ 0x6df7: "\x04\x04\x01\x02\x05\x01\x01\x01\x05\x03\x05", // 混
+ 0x6df8: "\x04\x04\x01\x01\x01\x02\x01\x02\x05\x02\x01", // 淸
+ 0x6df9: "\x04\x04\x01\x01\x03\x04\x02\x05\x01\x01\x05", // 淹
+ 0x6dfa: "\x04\x04\x01\x01\x05\x03\x04\x01\x05\x03\x04", // 淺
+ 0x6dfb: "\x04\x04\x01\x01\x01\x03\x04\x02\x04\x04\x04", // 添
+ 0x6dfc: "\x02\x05\x03\x04\x02\x05\x03\x04\x02\x05\x03\x04", // 淼
+ 0x6dfd: "\x04\x04\x01\x01\x02\x02\x02\x01\x02\x01", // 淽
+ 0x6dfe: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x03\x04", // 淾
+ 0x6dff: "\x04\x04\x01\x03\x02\x05\x01\x01\x02\x05\x02", // 淿
+ 0x6e00: "\x04\x04\x01\x01\x03\x04\x01\x02\x01\x03\x02", // 渀
+ 0x6e01: "\x04\x04\x01\x02\x05\x03\x04\x02\x05\x03\x04", // 渁
+ 0x6e02: "\x04\x04\x01\x02\x05\x01\x01\x04\x01\x03\x04", // 渂
+ 0x6e03: "\x04\x04\x01\x01\x02\x02\x01\x03\x02\x05\x01", // 渃
+ 0x6e04: "\x04\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01", // 渄
+ 0x6e05: "\x04\x04\x01\x01\x01\x02\x01\x02\x05\x01\x01", // 清
+ 0x6e06: "\x04\x04\x01\x04\x03\x01\x01\x03\x02\x02\x02", // 渆
+ 0x6e07: "\x04\x04\x01\x02\x05\x01\x01\x03\x05\x03\x05", // 渇
+ 0x6e08: "\x04\x04\x01\x04\x01\x03\x04\x03\x02\x01\x01", // 済
+ 0x6e09: "\x04\x04\x01\x02\x01\x02\x01\x02\x03\x04\x03", // 渉
+ 0x6e0a: "\x04\x04\x01\x03\x04\x03\x01\x02\x03\x04\x02", // 渊
+ 0x6e0b: "\x04\x04\x01\x02\x01\x02\x01\x04\x01\x03\x04", // 渋
+ 0x6e0c: "\x04\x04\x01\x05\x01\x01\x02\x04\x01\x03\x04", // 渌
+ 0x6e0d: "\x04\x04\x01\x01\x01\x02\x01\x02\x05\x03\x04", // 渍
+ 0x6e0e: "\x04\x04\x01\x01\x02\x05\x04\x04\x01\x03\x04", // 渎
+ 0x6e0f: "\x04\x04\x01\x01\x03\x04\x01\x02\x05\x01\x02", // 渏
+ 0x6e10: "\x04\x04\x01\x01\x05\x02\x01\x03\x03\x01\x02", // 渐
+ 0x6e11: "\x04\x04\x01\x02\x05\x01\x02\x05\x01\x01\x05", // 渑
+ 0x6e12: "\x04\x04\x01\x03\x02\x05\x01\x01\x03\x01\x02", // 渒
+ 0x6e13: "\x04\x04\x01\x03\x04\x04\x03\x01\x01\x03\x04", // 渓
+ 0x6e14: "\x04\x04\x01\x03\x05\x02\x05\x01\x02\x01\x01", // 渔
+ 0x6e15: "\x04\x04\x01\x04\x03\x01\x01\x03\x04\x02\x02", // 渕
+ 0x6e16: "\x04\x04\x01\x04\x04\x05\x02\x05\x01\x01\x02", // 渖
+ 0x6e17: "\x04\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 渗
+ 0x6e18: "\x04\x04\x01\x05\x04\x05\x02\x03\x01\x02\x03\x04", // 渘
+ 0x6e19: "\x04\x04\x01\x03\x05\x02\x05\x03\x04\x01\x03\x04", // 渙
+ 0x6e1a: "\x04\x04\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 渚
+ 0x6e1b: "\x04\x04\x01\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 減
+ 0x6e1c: "\x04\x04\x01\x01\x03\x02\x05\x02\x02\x01\x03\x04", // 渜
+ 0x6e1d: "\x04\x04\x01\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 渝
+ 0x6e1e: "\x04\x04\x01\x04\x03\x01\x03\x02\x05\x01\x01\x01", // 渞
+ 0x6e1f: "\x04\x04\x01\x04\x01\x02\x05\x01\x04\x05\x01\x02", // 渟
+ 0x6e20: "\x04\x04\x01\x01\x05\x01\x05\x01\x02\x03\x04", // 渠
+ 0x6e21: "\x04\x04\x01\x04\x01\x03\x01\x02\x02\x01\x05\x04", // 渡
+ 0x6e22: "\x04\x04\x01\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 渢
+ 0x6e23: "\x04\x04\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 渣
+ 0x6e24: "\x04\x04\x01\x01\x02\x04\x05\x05\x02\x01\x05\x03", // 渤
+ 0x6e25: "\x04\x04\x01\x05\x01\x03\x01\x05\x04\x01\x02\x01", // 渥
+ 0x6e26: "\x04\x04\x01\x02\x05\x05\x02\x05\x02\x05\x01", // 渦
+ 0x6e27: "\x04\x04\x01\x04\x01\x04\x03\x04\x05\x02\x05\x02", // 渧
+ 0x6e28: "\x04\x04\x01\x02\x05\x01\x02\x01\x01\x05\x03\x04", // 渨
+ 0x6e29: "\x04\x04\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 温
+ 0x6e2a: "\x04\x04\x01\x03\x02\x05\x01\x02\x05\x02\x01\x04", // 渪
+ 0x6e2b: "\x04\x04\x01\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 渫
+ 0x6e2c: "\x04\x04\x01\x02\x05\x01\x01\x01\x03\x04\x02\x02", // 測
+ 0x6e2d: "\x04\x04\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01", // 渭
+ 0x6e2e: "\x04\x04\x01\x01\x02\x02\x01\x02\x05\x01\x02", // 渮
+ 0x6e2f: "\x04\x04\x01\x01\x02\x02\x01\x03\x04\x05\x01\x05", // 港
+ 0x6e30: "\x04\x04\x01\x03\x04\x01\x02\x05\x01\x01\x03\x02", // 渰
+ 0x6e31: "\x04\x04\x01\x02\x05\x01\x02\x01\x04\x01\x02\x01", // 渱
+ 0x6e32: "\x04\x04\x01\x04\x04\x05\x01\x02\x05\x01\x01\x01", // 渲
+ 0x6e33: "\x04\x04\x01\x05\x01\x05\x01\x02\x02\x01\x01\x01", // 渳
+ 0x6e34: "\x04\x04\x01\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 渴
+ 0x6e35: "\x04\x04\x01\x01\x02\x02\x02\x05\x01\x02\x01", // 渵
+ 0x6e36: "\x04\x04\x01\x01\x02\x02\x02\x05\x01\x03\x04", // 渶
+ 0x6e37: "\x04\x04\x01\x04\x01\x03\x04\x02\x05\x01\x03\x05", // 渷
+ 0x6e38: "\x04\x04\x01\x04\x01\x05\x03\x03\x01\x05\x02\x01", // 游
+ 0x6e39: "\x04\x04\x01\x03\x05\x04\x01\x01\x01\x02\x05\x01", // 渹
+ 0x6e3a: "\x04\x04\x01\x02\x05\x01\x01\x01\x02\x03\x04\x03", // 渺
+ 0x6e3b: "\x04\x04\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01", // 渻
+ 0x6e3c: "\x04\x04\x01\x04\x03\x01\x01\x02\x01\x01\x03\x04", // 渼
+ 0x6e3d: "\x04\x04\x01\x01\x02\x01\x02\x05\x01\x05\x03\x04", // 渽
+ 0x6e3e: "\x04\x04\x01\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 渾
+ 0x6e3f: "\x04\x04\x01\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 渿
+ 0x6e40: "\x04\x04\x01\x05\x04\x03\x03\x04\x01\x01\x03\x04", // 湀
+ 0x6e41: "\x04\x04\x01\x01\x02\x01\x03\x04\x01\x02\x05\x01", // 湁
+ 0x6e42: "\x04\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x05", // 湂
+ 0x6e43: "\x04\x04\x01\x03\x01\x01\x03\x01\x01\x01\x01\x02", // 湃
+ 0x6e44: "\x04\x04\x01\x05\x02\x01\x03\x02\x05\x01\x01\x01", // 湄
+ 0x6e45: "\x04\x04\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 湅
+ 0x6e46: "\x04\x04\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 湆
+ 0x6e47: "\x04\x04\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 湇
+ 0x6e48: "\x04\x04\x01\x01\x02\x02\x01\x01\x01\x02\x03\x04", // 湈
+ 0x6e49: "\x04\x04\x01\x04\x04\x02\x03\x01\x02\x02\x05\x01", // 湉
+ 0x6e4a: "\x04\x04\x01\x01\x01\x01\x03\x04\x01\x01\x03\x04", // 湊
+ 0x6e4b: "\x04\x04\x01\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 湋
+ 0x6e4c: "\x04\x04\x01\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 湌
+ 0x6e4d: "\x04\x04\x01\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 湍
+ 0x6e4e: "\x04\x04\x01\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 湎
+ 0x6e4f: "\x04\x04\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 湏
+ 0x6e50: "\x04\x04\x01\x01\x02\x03\x04\x03\x02\x05\x01\x01", // 湐
+ 0x6e51: "\x04\x04\x01\x05\x02\x01\x03\x04\x02\x05\x01\x01", // 湑
+ 0x6e52: "\x04\x04\x01\x02\x05\x01\x01\x02\x02\x01\x01\x01", // 湒
+ 0x6e53: "\x04\x04\x01\x03\x04\x05\x03\x02\x05\x02\x02\x01", // 湓
+ 0x6e54: "\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x02", // 湔
+ 0x6e55: "\x04\x04\x01\x05\x01\x01\x01\x01\x02\x05\x04", // 湕
+ 0x6e56: "\x04\x04\x01\x01\x02\x02\x05\x01\x03\x05\x01\x01", // 湖
+ 0x6e57: "\x04\x04\x01\x01\x02\x01\x01\x02\x01\x01\x02\x04", // 湗
+ 0x6e58: "\x04\x04\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 湘
+ 0x6e59: "\x04\x04\x01\x04\x01\x03\x02\x03\x04\x01\x03\x04", // 湙
+ 0x6e5a: "\x04\x04\x01\x03\x05\x05\x04\x02\x05\x01\x01\x05", // 湚
+ 0x6e5b: "\x04\x04\x01\x01\x02\x02\x01\x01\x01\x03\x04\x05", // 湛
+ 0x6e5c: "\x04\x04\x01\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 湜
+ 0x6e5d: "\x04\x04\x01\x01\x05\x03\x05\x03\x02\x05\x01\x01", // 湝
+ 0x6e5e: "\x04\x04\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 湞
+ 0x6e5f: "\x04\x04\x01\x03\x02\x05\x01\x01\x01\x01\x02\x01", // 湟
+ 0x6e60: "\x04\x04\x01\x02\x05\x02\x01\x03\x04\x03\x03\x04", // 湠
+ 0x6e61: "\x04\x04\x01\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 湡
+ 0x6e62: "\x04\x04\x01\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 湢
+ 0x6e63: "\x04\x04\x01\x05\x01\x05\x01\x05\x02\x05\x01\x01", // 湣
+ 0x6e64: "\x04\x04\x01\x04\x01\x05\x03\x03\x01\x05\x02\x05", // 湤
+ 0x6e65: "\x04\x04\x01\x04\x04\x05\x03\x04\x01\x03\x04\x04", // 湥
+ 0x6e66: "\x04\x04\x01\x02\x05\x01\x01\x03\x01\x01\x02\x01", // 湦
+ 0x6e67: "\x04\x04\x01\x05\x04\x02\x05\x01\x01\x02\x05\x03", // 湧
+ 0x6e68: "\x04\x04\x01\x02\x05\x01\x01\x01\x01\x03\x04\x04", // 湨
+ 0x6e69: "\x04\x04\x01\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 湩
+ 0x6e6a: "\x04\x04\x01\x05\x05\x01\x03\x05\x03\x03\x03\x04", // 湪
+ 0x6e6b: "\x04\x04\x01\x03\x01\x02\x03\x04\x04\x03\x03\x04", // 湫
+ 0x6e6c: "\x03\x01\x02\x03\x04\x04\x03\x03\x04\x02\x05\x03\x04", // 湬
+ 0x6e6d: "\x04\x04\x01\x04\x03\x01\x02\x05\x03\x05\x01\x01", // 湭
+ 0x6e6e: "\x04\x04\x01\x01\x02\x05\x02\x02\x01\x01\x02\x01", // 湮
+ 0x6e6f: "\x04\x04\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 湯
+ 0x6e70: "\x04\x04\x01\x03\x05\x04\x01\x03\x01\x01\x02\x01", // 湰
+ 0x6e71: "\x04\x04\x01\x01\x01\x01\x02\x01\x03\x02\x05\x01", // 湱
+ 0x6e72: "\x04\x04\x01\x03\x04\x04\x03\x01\x01\x03\x05\x04", // 湲
+ 0x6e73: "\x04\x04\x01\x01\x02\x02\x05\x04\x03\x01\x01\x02", // 湳
+ 0x6e74: "\x04\x04\x01\x04\x03\x01\x02\x02\x04\x03\x01", // 湴
+ 0x6e75: "\x04\x04\x01\x04\x03\x01\x01\x02\x01\x03\x05\x04", // 湵
+ 0x6e76: "\x04\x04\x01\x03\x02\x05\x01\x01\x02\x05\x03\x04", // 湶
+ 0x6e77: "\x04\x04\x01\x01\x01\x01\x03\x04\x02\x05\x01\x01", // 湷
+ 0x6e78: "\x04\x04\x01\x04\x01\x02\x05\x01\x04\x05\x03\x05", // 湸
+ 0x6e79: "\x04\x04\x01\x01\x03\x02\x05\x01\x01\x02\x01\x01", // 湹
+ 0x6e7a: "\x04\x04\x01\x03\x02\x02\x05\x01\x01\x02\x03\x04", // 湺
+ 0x6e7b: "\x04\x04\x01\x04\x01\x02\x05\x01\x02\x05\x01\x01", // 湻
+ 0x6e7c: "\x04\x04\x01\x03\x02\x01\x05\x01\x01\x01\x02\x01", // 湼
+ 0x6e7d: "\x04\x04\x01\x05\x05\x05\x01\x02\x05\x01\x02\x01", // 湽
+ 0x6e7e: "\x04\x04\x01\x04\x01\x02\x02\x03\x04\x05\x01\x05", // 湾
+ 0x6e7f: "\x04\x04\x01\x02\x05\x01\x01\x02\x02\x04\x03\x01", // 湿
+ 0x6e80: "\x04\x04\x01\x01\x02\x02\x01\x02\x05\x02\x05\x02", // 満
+ 0x6e81: "\x04\x04\x01\x01\x02\x02\x04\x05\x01\x02\x03\x04", // 溁
+ 0x6e82: "\x04\x04\x01\x01\x02\x05\x01\x02\x03\x04\x02\x02", // 溂
+ 0x6e83: "\x04\x04\x01\x02\x05\x01\x02\x01\x02\x05\x03\x04", // 溃
+ 0x6e84: "\x04\x04\x01\x02\x05\x02\x03\x05\x04\x01\x01\x02", // 溄
+ 0x6e85: "\x04\x04\x01\x02\x05\x03\x04\x01\x01\x05\x03\x04", // 溅
+ 0x6e86: "\x04\x04\x01\x03\x04\x01\x01\x02\x03\x04\x05\x04", // 溆
+ 0x6e87: "\x04\x04\x01\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 溇
+ 0x6e88: "\x04\x04\x01\x04\x03\x05\x05\x05\x04\x04\x04\x04", // 溈
+ 0x6e89: "\x04\x04\x01\x05\x01\x01\x05\x04\x01\x05\x03\x05", // 溉
+ 0x6e8a: "\x04\x04\x01\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 溊
+ 0x6e8b: "\x04\x04\x01\x05\x03\x05\x04\x02\x05\x02\x02\x01", // 溋
+ 0x6e8c: "\x04\x04\x01\x05\x04\x03\x03\x04\x01\x01\x03\x05", // 溌
+ 0x6e8d: "\x04\x04\x01\x01\x02\x02\x04\x03\x01\x02\x05\x01\x01", // 溍
+ 0x6e8e: "\x04\x04\x01\x01\x02\x03\x04\x01\x02\x01\x01\x02\x01", // 溎
+ 0x6e8f: "\x04\x04\x01\x04\x01\x03\x05\x01\x01\x02\x02\x05\x01", // 溏
+ 0x6e90: "\x04\x04\x01\x01\x03\x03\x02\x05\x01\x01\x02\x03\x04", // 源
+ 0x6e91: "\x04\x04\x01\x02\x04\x03\x02\x05\x01\x01\x01\x03\x04", // 溑
+ 0x6e92: "\x04\x04\x01\x01\x02\x01\x02\x05\x01\x03\x05\x03\x04", // 溒
+ 0x6e93: "\x04\x04\x01\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 溓
+ 0x6e94: "\x04\x04\x01\x04\x03\x01\x01\x02\x01\x04\x04\x04\x04", // 溔
+ 0x6e95: "\x04\x04\x01\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 溕
+ 0x6e96: "\x04\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02", // 準
+ 0x6e97: "\x04\x04\x01\x03\x01\x02\x02\x01\x01\x03\x05\x03\x04", // 溗
+ 0x6e98: "\x04\x04\x01\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 溘
+ 0x6e99: "\x04\x04\x01\x01\x01\x01\x03\x04\x02\x04\x01\x03\x04", // 溙
+ 0x6e9a: "\x04\x04\x01\x01\x02\x02\x03\x04\x01\x02\x05\x01", // 溚
+ 0x6e9b: "\x04\x04\x01\x04\x04\x05\x03\x04\x03\x03\x05\x04\x04", // 溛
+ 0x6e9c: "\x04\x04\x01\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 溜
+ 0x6e9d: "\x04\x04\x01\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01", // 溝
+ 0x6e9e: "\x04\x04\x01\x05\x04\x04\x02\x05\x01\x02\x01\x04", // 溞
+ 0x6e9f: "\x04\x04\x01\x04\x05\x02\x05\x01\x01\x04\x01\x03\x04", // 溟
+ 0x6ea0: "\x04\x04\x01\x04\x03\x01\x01\x01\x03\x01\x02\x01", // 溠
+ 0x6ea1: "\x04\x04\x01\x02\x05\x01\x01\x01\x02\x01\x01\x02\x04", // 溡
+ 0x6ea2: "\x04\x04\x01\x04\x03\x01\x03\x04\x02\x05\x02\x02\x01", // 溢
+ 0x6ea3: "\x04\x04\x01\x03\x02\x03\x04\x01\x02\x05\x01\x02\x02", // 溣
+ 0x6ea4: "\x04\x04\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 溤
+ 0x6ea5: "\x04\x04\x01\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 溥
+ 0x6ea6: "\x04\x04\x01\x02\x05\x02\x01\x03\x05\x03\x01\x03\x04", // 溦
+ 0x6ea7: "\x04\x04\x01\x01\x02\x05\x02\x02\x01\x01\x02\x03\x04", // 溧
+ 0x6ea8: "\x04\x04\x01\x01\x02\x01\x01\x02\x03\x04\x05\x03\x04", // 溨
+ 0x6ea9: "\x04\x04\x01\x03\x02\x05\x01\x01\x05\x04\x04\x04\x04", // 溩
+ 0x6eaa: "\x04\x04\x01\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04", // 溪
+ 0x6eab: "\x04\x04\x01\x02\x05\x03\x04\x01\x02\x05\x02\x02\x01", // 溫
+ 0x6eac: "\x04\x04\x01\x04\x03\x01\x01\x01\x03\x05\x05\x04", // 溬
+ 0x6ead: "\x04\x04\x01\x02\x05\x01\x02\x01\x03\x04\x03\x05\x04", // 溭
+ 0x6eae: "\x04\x04\x01\x03\x02\x05\x01\x05\x01\x01\x02\x05\x02", // 溮
+ 0x6eaf: "\x04\x04\x01\x04\x03\x01\x05\x02\x03\x03\x05\x01\x01", // 溯
+ 0x6eb0: "\x04\x04\x01\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 溰
+ 0x6eb1: "\x04\x04\x01\x01\x01\x01\x03\x04\x03\x01\x02\x03\x04", // 溱
+ 0x6eb2: "\x04\x04\x01\x03\x02\x01\x05\x01\x01\x02\x05\x04", // 溲
+ 0x6eb3: "\x04\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 溳
+ 0x6eb4: "\x04\x04\x01\x03\x02\x05\x01\x01\x01\x01\x03\x04\x04", // 溴
+ 0x6eb5: "\x04\x04\x01\x03\x03\x05\x01\x01\x05\x03\x05\x05\x04", // 溵
+ 0x6eb6: "\x04\x04\x01\x04\x04\x05\x03\x04\x03\x04\x02\x05\x01", // 溶
+ 0x6eb7: "\x04\x04\x01\x02\x05\x01\x03\x05\x03\x03\x03\x04\x01", // 溷
+ 0x6eb8: "\x04\x04\x01\x01\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 溸
+ 0x6eb9: "\x04\x04\x01\x01\x02\x04\x05\x05\x05\x04\x02\x03\x04", // 溹
+ 0x6eba: "\x04\x04\x01\x05\x01\x05\x04\x01\x05\x01\x05\x04\x01", // 溺
+ 0x6ebb: "\x04\x04\x01\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 溻
+ 0x6ebc: "\x04\x04\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x01", // 溼
+ 0x6ebd: "\x04\x04\x01\x01\x03\x01\x01\x05\x03\x04\x01\x02\x04", // 溽
+ 0x6ebe: "\x04\x04\x01\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 溾
+ 0x6ebf: "\x04\x04\x01\x02\x05\x01\x02\x01\x04\x03\x01\x01\x02", // 溿
+ 0x6ec0: "\x04\x04\x01\x04\x01\x05\x05\x04\x02\x05\x01\x02\x01", // 滀
+ 0x6ec1: "\x04\x04\x01\x05\x02\x03\x04\x01\x01\x02\x03\x04", // 滁
+ 0x6ec2: "\x04\x04\x01\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03", // 滂
+ 0x6ec3: "\x04\x04\x01\x03\x04\x05\x04\x05\x04\x01\x05\x04\x01", // 滃
+ 0x6ec4: "\x04\x04\x01\x03\x04\x04\x05\x01\x01\x03\x02\x05\x01", // 滄
+ 0x6ec5: "\x04\x04\x01\x01\x03\x01\x04\x03\x03\x04\x05\x03\x04", // 滅
+ 0x6ec6: "\x04\x04\x01\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 滆
+ 0x6ec7: "\x04\x04\x01\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 滇
+ 0x6ec8: "\x04\x04\x01\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 滈
+ 0x6ec9: "\x04\x04\x01\x02\x05\x01\x01\x02\x04\x03\x01\x03\x05", // 滉
+ 0x6eca: "\x04\x04\x01\x03\x01\x01\x05\x04\x03\x01\x02\x03\x04", // 滊
+ 0x6ecb: "\x04\x04\x01\x04\x03\x01\x05\x05\x04\x05\x05\x04", // 滋
+ 0x6ecc: "\x04\x04\x01\x03\x02\x02\x03\x05\x04\x01\x02\x03\x04", // 滌
+ 0x6ecd: "\x04\x04\x01\x05\x02\x02\x01\x02\x05\x01\x02\x01\x04", // 滍
+ 0x6ece: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x02\x05\x03\x04", // 滎
+ 0x6ecf: "\x04\x04\x01\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 滏
+ 0x6ed0: "\x04\x04\x01\x03\x05\x04\x01\x05\x02\x01\x02\x03\x04", // 滐
+ 0x6ed1: "\x04\x04\x01\x02\x05\x05\x04\x05\x02\x05\x01\x01", // 滑
+ 0x6ed2: "\x04\x04\x01\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02", // 滒
+ 0x6ed3: "\x04\x04\x01\x04\x04\x05\x04\x01\x04\x03\x01\x01\x02", // 滓
+ 0x6ed4: "\x04\x04\x01\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01", // 滔
+ 0x6ed5: "\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04\x02\x04\x01\x03\x04", // 滕
+ 0x6ed6: "\x04\x04\x01\x04\x01\x02\x05\x01\x01\x03\x05\x03\x04", // 滖
+ 0x6ed7: "\x04\x04\x01\x03\x01\x04\x03\x01\x04\x03\x01\x01\x05", // 滗
+ 0x6ed8: "\x04\x04\x01\x04\x05\x03\x04\x01\x02\x01\x02\x05\x01", // 滘
+ 0x6ed9: "\x04\x04\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05", // 滙
+ 0x6eda: "\x04\x04\x01\x04\x01\x03\x04\x05\x04\x03\x05\x03\x04", // 滚
+ 0x6edb: "\x04\x04\x01\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02", // 滛
+ 0x6edc: "\x04\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04\x01\x02", // 滜
+ 0x6edd: "\x04\x04\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05", // 滝
+ 0x6ede: "\x04\x04\x01\x01\x02\x02\x02\x04\x05\x02\x05\x02", // 滞
+ 0x6edf: "\x04\x04\x01\x01\x01\x01\x02\x03\x05\x05\x02\x01\x05", // 滟
+ 0x6ee0: "\x04\x04\x01\x01\x02\x02\x01\x01\x01\x05\x04\x05\x04", // 滠
+ 0x6ee1: "\x04\x04\x01\x01\x02\x02\x01\x02\x05\x03\x04\x03\x04", // 满
+ 0x6ee2: "\x04\x04\x01\x01\x02\x02\x04\x05\x01\x01\x02\x01\x04", // 滢
+ 0x6ee3: "\x04\x04\x01\x01\x03\x01\x01\x05\x03\x04\x02\x05\x01", // 滣
+ 0x6ee4: "\x04\x04\x01\x02\x01\x05\x03\x01\x05\x04\x05\x04\x04", // 滤
+ 0x6ee5: "\x04\x04\x01\x02\x02\x03\x01\x04\x02\x05\x02\x02\x01", // 滥
+ 0x6ee6: "\x04\x04\x01\x04\x01\x02\x02\x03\x04\x01\x02\x03\x04", // 滦
+ 0x6ee7: "\x04\x04\x01\x04\x01\x03\x04\x03\x04\x03\x01\x03\x04", // 滧
+ 0x6ee8: "\x04\x04\x01\x04\x04\x05\x03\x02\x01\x02\x01\x03\x04", // 滨
+ 0x6ee9: "\x04\x04\x01\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 滩
+ 0x6eea: "\x04\x04\x01\x05\x04\x05\x02\x01\x03\x02\x05\x03\x04", // 滪
+ 0x6eeb: "\x04\x04\x01\x03\x02\x02\x03\x05\x04\x02\x05\x01\x01", // 滫
+ 0x6eec: "\x04\x04\x01\x04\x05\x01\x03\x02\x05\x01\x05\x02\x01\x05", // 滬
+ 0x6eed: "\x04\x04\x01\x02\x05\x01\x01\x01\x02\x02\x01\x01\x02", // 滭
+ 0x6eee: "\x04\x04\x01\x02\x01\x05\x03\x01\x05\x03\x05\x03\x03\x03", // 滮
+ 0x6eef: "\x04\x04\x01\x01\x03\x02\x02\x01\x05\x04\x05\x02\x05\x02", // 滯
+ 0x6ef0: "\x04\x04\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05", // 滰
+ 0x6ef1: "\x04\x04\x01\x04\x04\x05\x01\x01\x03\x05\x02\x01\x05\x04", // 滱
+ 0x6ef2: "\x04\x04\x01\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 滲
+ 0x6ef3: "\x04\x04\x01\x04\x01\x04\x03\x02\x05\x03\x04\x02\x05\x01", // 滳
+ 0x6ef4: "\x04\x04\x01\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01", // 滴
+ 0x6ef5: "\x04\x04\x01\x04\x04\x05\x04\x05\x04\x03\x04\x02\x05\x02", // 滵
+ 0x6ef6: "\x04\x04\x01\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04", // 滶
+ 0x6ef7: "\x04\x04\x01\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01", // 滷
+ 0x6ef8: "\x04\x04\x01\x04\x01\x01\x01\x02\x05\x01\x03\x01\x01\x02", // 滸
+ 0x6ef9: "\x04\x04\x01\x02\x01\x05\x03\x01\x05\x03\x04\x03\x01\x02", // 滹
+ 0x6efa: "\x04\x04\x01\x03\x02\x02\x03\x01\x03\x04\x04\x05\x04\x04", // 滺
+ 0x6efb: "\x04\x04\x01\x04\x01\x04\x03\x01\x03\x03\x01\x01\x02\x01", // 滻
+ 0x6efc: "\x04\x04\x01\x01\x02\x03\x04\x01\x02\x03\x04\x03\x05\x04", // 滼
+ 0x6efd: "\x04\x04\x01\x04\x01\x03\x05\x01\x01\x02\x05\x01\x01\x02", // 滽
+ 0x6efe: "\x04\x04\x01\x04\x01\x03\x04\x02\x05\x01\x03\x05\x03\x04", // 滾
+ 0x6eff: "\x04\x04\x01\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04", // 滿
+ 0x6f00: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04\x02\x05\x03\x04", // 漀
+ 0x6f01: "\x04\x04\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 漁
+ 0x6f02: "\x04\x04\x01\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 漂
+ 0x6f03: "\x04\x04\x01\x04\x04\x05\x02\x01\x01\x02\x03\x04\x05\x04", // 漃
+ 0x6f04: "\x04\x04\x01\x02\x05\x02\x01\x03\x01\x02\x01\x01\x02\x01", // 漄
+ 0x6f05: "\x04\x04\x01\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 漅
+ 0x6f06: "\x04\x04\x01\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04", // 漆
+ 0x6f07: "\x04\x04\x01\x03\x03\x02\x02\x01\x02\x01\x02\x01\x03\x04", // 漇
+ 0x6f08: "\x04\x04\x01\x03\x05\x04\x04\x05\x04\x01\x01\x02\x03\x04", // 漈
+ 0x6f09: "\x04\x04\x01\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 漉
+ 0x6f0a: "\x04\x04\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 漊
+ 0x6f0b: "\x04\x04\x01\x05\x02\x03\x05\x04\x01\x03\x01\x01\x02\x01", // 漋
+ 0x6f0c: "\x04\x04\x01\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01", // 漌
+ 0x6f0d: "\x04\x04\x01\x02\x05\x01\x02\x05\x01\x01\x05\x03\x04\x01", // 漍
+ 0x6f0e: "\x04\x04\x01\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04", // 漎
+ 0x6f0f: "\x04\x04\x01\x05\x01\x03\x01\x02\x05\x02\x04\x04\x04\x04", // 漏
+ 0x6f10: "\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04\x02\x05\x03\x04", // 漐
+ 0x6f11: "\x04\x04\x01\x03\x02\x05\x01\x01\x03\x05\x01\x05\x03\x05", // 漑
+ 0x6f12: "\x04\x04\x01\x05\x01\x05\x02\x05\x01\x02\x05\x01\x02\x01\x04", // 漒
+ 0x6f13: "\x04\x04\x01\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 漓
+ 0x6f14: "\x04\x04\x01\x04\x04\x05\x01\x02\x05\x01\x02\x01\x03\x04", // 演
+ 0x6f15: "\x04\x04\x01\x01\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01", // 漕
+ 0x6f16: "\x04\x04\x01\x01\x02\x01\x03\x05\x02\x01\x03\x01\x03\x04", // 漖
+ 0x6f17: "\x04\x04\x01\x03\x02\x05\x03\x05\x04\x01\x04\x05\x04\x04", // 漗
+ 0x6f18: "\x04\x04\x01\x01\x03\x01\x01\x05\x03\x04\x02\x05\x01\x01", // 漘
+ 0x6f19: "\x04\x04\x01\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04", // 漙
+ 0x6f1a: "\x04\x04\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 漚
+ 0x6f1b: "\x04\x04\x01\x04\x03\x01\x01\x03\x04\x02\x04\x01\x03\x04", // 漛
+ 0x6f1c: "\x04\x04\x01\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x01", // 漜
+ 0x6f1d: "\x04\x04\x01\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01", // 漝
+ 0x6f1e: "\x04\x04\x01\x03\x04\x04\x03\x02\x05\x01\x01\x01\x03\x05", // 漞
+ 0x6f1f: "\x04\x04\x01\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x01", // 漟
+ 0x6f20: "\x04\x04\x01\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 漠
+ 0x6f21: "\x04\x04\x01\x03\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 漡
+ 0x6f22: "\x04\x04\x01\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 漢
+ 0x6f23: "\x04\x04\x01\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 漣
+ 0x6f24: "\x04\x04\x01\x01\x02\x03\x04\x01\x02\x03\x04\x05\x03\x01", // 漤
+ 0x6f25: "\x04\x04\x01\x04\x04\x05\x03\x04\x01\x02\x01\x01\x02\x01", // 漥
+ 0x6f26: "\x01\x01\x02\x03\x04\x03\x01\x03\x04\x01\x03\x02\x05\x03\x04", // 漦
+ 0x6f27: "\x04\x04\x01\x01\x02\x02\x05\x01\x01\x01\x02\x03\x01\x05", // 漧
+ 0x6f28: "\x04\x04\x01\x03\x05\x04\x01\x01\x01\x02\x04\x05\x04", // 漨
+ 0x6f29: "\x04\x04\x01\x04\x01\x05\x03\x03\x01\x05\x02\x01\x03\x04", // 漩
+ 0x6f2a: "\x04\x04\x01\x03\x05\x03\x01\x03\x04\x01\x02\x05\x01\x02", // 漪
+ 0x6f2b: "\x04\x04\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 漫
+ 0x6f2c: "\x04\x04\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 漬
+ 0x6f2d: "\x04\x04\x01\x01\x02\x02\x01\x03\x04\x04\x01\x03\x02", // 漭
+ 0x6f2e: "\x04\x04\x01\x04\x01\x03\x05\x01\x01\x02\x04\x01\x03\x04", // 漮
+ 0x6f2f: "\x04\x04\x01\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 漯
+ 0x6f30: "\x04\x04\x01\x02\x05\x02\x03\x05\x01\x01\x03\x05\x01\x01", // 漰
+ 0x6f31: "\x04\x04\x01\x01\x02\x05\x01\x02\x03\x04\x03\x05\x03\x04", // 漱
+ 0x6f32: "\x04\x04\x01\x05\x01\x05\x01\x02\x01\x01\x01\x05\x03\x04", // 漲
+ 0x6f33: "\x04\x04\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02", // 漳
+ 0x6f34: "\x04\x04\x01\x02\x05\x02\x04\x04\x05\x01\x01\x02\x03\x04", // 漴
+ 0x6f35: "\x04\x04\x01\x03\x04\x01\x01\x02\x03\x04\x03\x01\x03\x04", // 漵
+ 0x6f36: "\x04\x04\x01\x02\x05\x01\x02\x05\x01\x02\x04\x05\x04\x04", // 漶
+ 0x6f37: "\x04\x04\x01\x04\x01\x02\x05\x01\x05\x02\x01\x05\x02", // 漷
+ 0x6f38: "\x04\x04\x01\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02", // 漸
+ 0x6f39: "\x04\x04\x01\x01\x02\x01\x02\x01\x01\x05\x04\x04\x04\x04", // 漹
+ 0x6f3a: "\x04\x04\x01\x01\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04", // 漺
+ 0x6f3b: "\x04\x04\x01\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 漻
+ 0x6f3c: "\x04\x04\x01\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 漼
+ 0x6f3d: "\x04\x04\x01\x05\x01\x03\x02\x04\x01\x03\x04\x03\x01\x01\x02", // 漽
+ 0x6f3e: "\x04\x04\x01\x04\x03\x01\x01\x02\x01\x04\x05\x05\x03\x04", // 漾
+ 0x6f3f: "\x05\x02\x01\x03\x03\x05\x04\x04\x01\x02\x04\x02\x05\x03\x04", // 漿
+ 0x6f40: "\x04\x04\x01\x02\x05\x02\x02\x01\x03\x02\x03\x04\x03\x04", // 潀
+ 0x6f41: "\x03\x05\x02\x05\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 潁
+ 0x6f42: "\x04\x04\x01\x02\x05\x02\x04\x03\x01\x02\x02\x04\x03\x01", // 潂
+ 0x6f43: "\x04\x04\x01\x03\x03\x02\x03\x05\x04\x02\x05\x01\x01", // 潃
+ 0x6f44: "\x04\x04\x01\x01\x02\x05\x01\x02\x03\x04\x03\x01\x03\x04", // 潄
+ 0x6f45: "\x04\x04\x01\x03\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 潅
+ 0x6f46: "\x04\x04\x01\x01\x02\x02\x04\x05\x05\x05\x04\x02\x03\x04", // 潆
+ 0x6f47: "\x04\x04\x01\x01\x02\x02\x05\x01\x01\x02\x03\x02\x03\x04", // 潇
+ 0x6f48: "\x04\x04\x01\x02\x05\x02\x02\x01\x03\x05\x03\x03\x03\x04", // 潈
+ 0x6f49: "\x04\x04\x01\x02\x05\x02\x02\x05\x01\x01\x01\x05\x03\x05", // 潉
+ 0x6f4a: "\x04\x04\x01\x03\x04\x01\x01\x02\x03\x04\x02\x01\x05\x04", // 潊
+ 0x6f4b: "\x04\x04\x01\x03\x04\x01\x04\x04\x03\x01\x03\x01\x03\x04", // 潋
+ 0x6f4c: "\x04\x04\x01\x04\x04\x05\x03\x04\x01\x05\x04\x01\x02\x01", // 潌
+ 0x6f4d: "\x04\x04\x01\x05\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 潍
+ 0x6f4e: "\x04\x04\x01\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04", // 潎
+ 0x6f4f: "\x04\x04\x01\x05\x04\x05\x02\x03\x02\x05\x03\x04\x02\x05\x01", // 潏
+ 0x6f50: "\x04\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 潐
+ 0x6f51: "\x04\x04\x01\x05\x04\x03\x03\x04\x05\x01\x05\x03\x05\x05\x04", // 潑
+ 0x6f52: "\x04\x04\x01\x03\x05\x02\x05\x01\x03\x05\x03\x03\x03\x04", // 潒
+ 0x6f53: "\x04\x04\x01\x01\x02\x05\x01\x01\x02\x01\x04\x04\x05\x04\x04", // 潓
+ 0x6f54: "\x04\x04\x01\x01\x01\x01\x02\x05\x03\x05\x05\x04\x02\x03\x04", // 潔
+ 0x6f55: "\x04\x04\x01\x03\x01\x01\x02\x02\x02\x02\x01\x04\x04\x04\x04", // 潕
+ 0x6f56: "\x04\x04\x01\x01\x01\x02\x01\x01\x01\x02\x01\x05\x02\x01\x05", // 潖
+ 0x6f57: "\x04\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02\x03\x04", // 潗
+ 0x6f58: "\x04\x04\x01\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 潘
+ 0x6f59: "\x04\x04\x01\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04", // 潙
+ 0x6f5a: "\x04\x04\x01\x05\x01\x01\x02\x03\x02\x01\x01\x05\x05\x02\x01\x02", // 潚
+ 0x6f5b: "\x04\x04\x01\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x01", // 潛
+ 0x6f5c: "\x04\x04\x01\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01", // 潜
+ 0x6f5d: "\x04\x04\x01\x03\x04\x01\x02\x05\x01\x05\x04\x01\x05\x04\x01", // 潝
+ 0x6f5e: "\x04\x04\x01\x02\x05\x01\x02\x01\x02\x01\x03\x05\x04\x02\x05\x01", // 潞
+ 0x6f5f: "\x04\x04\x01\x03\x02\x01\x05\x01\x01\x03\x05\x04\x04\x04\x04", // 潟
+ 0x6f60: "\x04\x04\x01\x05\x01\x05\x05\x01\x05\x01\x02\x02\x01\x03\x04", // 潠
+ 0x6f61: "\x04\x04\x01\x04\x01\x02\x05\x01\x05\x02\x01\x03\x01\x03\x04", // 潡
+ 0x6f62: "\x04\x04\x01\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 潢
+ 0x6f63: "\x04\x04\x01\x02\x05\x01\x01\x02\x05\x01\x01\x04\x01\x03\x04", // 潣
+ 0x6f64: "\x04\x04\x01\x02\x05\x01\x01\x02\x05\x01\x01\x01\x01\x02\x01", // 潤
+ 0x6f65: "\x04\x04\x01\x01\x02\x05\x02\x02\x01\x04\x03\x01\x02\x03\x04", // 潥
+ 0x6f66: "\x04\x04\x01\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 潦
+ 0x6f67: "\x04\x04\x01\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 潧
+ 0x6f68: "\x04\x04\x01\x03\x02\x05\x02\x02\x01\x03\x02\x03\x03\x03\x04", // 潨
+ 0x6f69: "\x04\x04\x01\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 潩
+ 0x6f6a: "\x04\x04\x01\x03\x01\x01\x03\x04\x02\x05\x01\x02\x05\x01\x01", // 潪
+ 0x6f6b: "\x04\x04\x01\x04\x03\x01\x01\x03\x04\x05\x05\x04\x02\x03\x04", // 潫
+ 0x6f6c: "\x04\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 潬
+ 0x6f6d: "\x04\x04\x01\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 潭
+ 0x6f6e: "\x04\x04\x01\x01\x02\x02\x05\x01\x01\x01\x02\x03\x05\x01\x01", // 潮
+ 0x6f6f: "\x04\x04\x01\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04", // 潯
+ 0x6f70: "\x04\x04\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 潰
+ 0x6f71: "\x04\x04\x01\x01\x02\x01\x04\x05\x01\x02\x05\x01\x04\x03\x01", // 潱
+ 0x6f72: "\x04\x04\x01\x03\x01\x02\x03\x04\x02\x04\x03\x02\x05\x01\x01", // 潲
+ 0x6f73: "\x04\x04\x01\x05\x01\x03\x01\x02\x01\x03\x02\x05\x01\x01", // 潳
+ 0x6f74: "\x04\x04\x01\x03\x05\x03\x01\x02\x01\x03\x02\x05\x01\x01", // 潴
+ 0x6f75: "\x04\x04\x01\x01\x02\x02\x01\x02\x05\x01\x01\x03\x01\x03\x04", // 潵
+ 0x6f76: "\x04\x04\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 潶
+ 0x6f77: "\x04\x04\x01\x03\x01\x04\x03\x01\x04\x05\x01\x01\x01\x01\x02", // 潷
+ 0x6f78: "\x04\x04\x01\x01\x02\x03\x04\x01\x02\x03\x04\x02\x05\x01\x01", // 潸
+ 0x6f79: "\x04\x04\x01\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04", // 潹
+ 0x6f7a: "\x04\x04\x01\x05\x01\x03\x05\x02\x01\x05\x02\x01\x05\x02\x01", // 潺
+ 0x6f7b: "\x04\x04\x01\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04", // 潻
+ 0x6f7c: "\x04\x04\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 潼
+ 0x6f7d: "\x04\x04\x01\x04\x03\x01\x02\x02\x04\x03\x01\x02\x05\x01\x01", // 潽
+ 0x6f7e: "\x04\x04\x01\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 潾
+ 0x6f7f: "\x04\x04\x01\x02\x05\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01", // 潿
+ 0x6f80: "\x04\x04\x01\x05\x03\x04\x05\x03\x04\x02\x01\x02\x01\x02\x01\x02\x01", // 澀
+ 0x6f81: "\x04\x04\x01\x02\x01\x02\x01\x02\x01\x02\x01\x02\x01\x02\x01", // 澁
+ 0x6f82: "\x04\x04\x01\x02\x05\x02\x01\x01\x01\x02\x01\x03\x01\x03\x04", // 澂
+ 0x6f83: "\x03\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04\x02\x05\x03\x04", // 澃
+ 0x6f84: "\x04\x04\x01\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 澄
+ 0x6f85: "\x04\x04\x01\x05\x01\x01\x01\x02\x01\x02\x05\x01\x02\x01\x01", // 澅
+ 0x6f86: "\x04\x04\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 澆
+ 0x6f87: "\x04\x04\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x05\x03", // 澇
+ 0x6f88: "\x04\x04\x01\x04\x01\x05\x04\x02\x05\x01\x01\x03\x01\x03\x04", // 澈
+ 0x6f89: "\x04\x04\x01\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 澉
+ 0x6f8a: "\x04\x04\x01\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x02\x04", // 澊
+ 0x6f8b: "\x04\x04\x01\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x03\x04", // 澋
+ 0x6f8c: "\x04\x04\x01\x01\x02\x02\x01\x01\x01\x03\x04\x03\x03\x01\x02", // 澌
+ 0x6f8d: "\x04\x04\x01\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x04", // 澍
+ 0x6f8e: "\x04\x04\x01\x01\x02\x01\x02\x05\x01\x04\x03\x01\x03\x03\x03", // 澎
+ 0x6f8f: "\x04\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x02", // 澏
+ 0x6f90: "\x04\x04\x01\x01\x04\x05\x02\x04\x04\x04\x04\x01\x01\x05\x04", // 澐
+ 0x6f91: "\x04\x04\x01\x01\x02\x02\x01\x05\x05\x01\x02\x05\x01\x02\x01", // 澑
+ 0x6f92: "\x04\x04\x01\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 澒
+ 0x6f93: "\x04\x04\x01\x03\x03\x02\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 澓
+ 0x6f94: "\x04\x04\x01\x03\x02\x05\x01\x01\x03\x01\x02\x01\x02\x05\x01", // 澔
+ 0x6f95: "\x04\x04\x01\x01\x02\x02\x01\x01\x02\x02\x01\x01\x02", // 澕
+ 0x6f96: "\x04\x04\x01\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x03\x04", // 澖
+ 0x6f97: "\x04\x04\x01\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01", // 澗
+ 0x6f98: "\x04\x04\x01\x01\x02\x03\x04\x01\x02\x03\x04\x02\x05\x01\x01", // 澘
+ 0x6f99: "\x04\x04\x01\x03\x02\x01\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 澙
+ 0x6f9a: "\x04\x04\x01\x03\x02\x05\x04\x03\x01\x02\x03\x04\x01\x05", // 澚
+ 0x6f9b: "\x04\x04\x01\x03\x05\x02\x05\x01\x02\x01\x01\x02\x05\x01\x01", // 澛
+ 0x6f9c: "\x04\x04\x01\x04\x02\x05\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 澜
+ 0x6f9d: "\x04\x04\x01\x04\x04\x05\x04\x05\x04\x04\x02\x05\x01\x01\x02", // 澝
+ 0x6f9e: "\x04\x04\x01\x02\x01\x05\x03\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 澞
+ 0x6f9f: "\x04\x04\x01\x04\x01\x02\x05\x02\x05\x01\x01\x03\x01\x02\x03\x04", // 澟
+ 0x6fa0: "\x04\x04\x01\x02\x05\x01\x01\x02\x05\x01\x02\x01\x01\x05\x01\x01", // 澠
+ 0x6fa1: "\x04\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 澡
+ 0x6fa2: "\x04\x04\x01\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x01\x02\x01", // 澢
+ 0x6fa3: "\x04\x04\x01\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04\x01\x01\x02", // 澣
+ 0x6fa4: "\x04\x04\x01\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 澤
+ 0x6fa5: "\x04\x04\x01\x03\x05\x03\x05\x01\x01\x02\x05\x03\x03\x01\x01\x02", // 澥
+ 0x6fa6: "\x04\x04\x01\x05\x04\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 澦
+ 0x6fa7: "\x04\x04\x01\x02\x05\x01\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01", // 澧
+ 0x6fa8: "\x04\x04\x01\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x03\x04\x01", // 澨
+ 0x6fa9: "\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x02\x05\x03\x04", // 澩
+ 0x6faa: "\x04\x04\x01\x01\x04\x05\x02\x04\x04\x04\x04\x03\x04\x04\x05\x04", // 澪
+ 0x6fab: "\x04\x04\x01\x01\x02\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 澫
+ 0x6fac: "\x04\x04\x01\x04\x01\x03\x05\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 澬
+ 0x6fad: "\x04\x04\x01\x04\x01\x05\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 澭
+ 0x6fae: "\x04\x04\x01\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 澮
+ 0x6faf: "\x04\x04\x01\x02\x01\x03\x05\x04\x05\x04\x04\x03\x01\x02\x03\x04", // 澯
+ 0x6fb0: "\x04\x04\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 澰
+ 0x6fb1: "\x04\x04\x01\x05\x01\x03\x01\x02\x02\x01\x03\x04\x03\x05\x05\x04", // 澱
+ 0x6fb2: "\x04\x04\x01\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x02\x03\x04", // 澲
+ 0x6fb3: "\x04\x04\x01\x03\x02\x05\x04\x03\x01\x02\x03\x04\x01\x03\x04", // 澳
+ 0x6fb4: "\x04\x04\x01\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 澴
+ 0x6fb5: "\x04\x04\x01\x04\x01\x04\x03\x01\x01\x02\x03\x04\x03\x03\x01\x02", // 澵
+ 0x6fb6: "\x04\x04\x01\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 澶
+ 0x6fb7: "\x04\x04\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01\x04\x01\x05\x03", // 澷
+ 0x6fb8: "\x04\x04\x01\x01\x03\x01\x02\x05\x01\x05\x03\x04\x04\x05\x04\x04", // 澸
+ 0x6fb9: "\x04\x04\x01\x03\x05\x01\x03\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 澹
+ 0x6fba: "\x04\x04\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 澺
+ 0x6fbb: "\x04\x04\x01\x04\x03\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 澻
+ 0x6fbc: "\x04\x04\x01\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 澼
+ 0x6fbd: "\x04\x04\x01\x02\x01\x05\x03\x01\x05\x01\x03\x05\x03\x03\x03\x04", // 澽
+ 0x6fbe: "\x04\x04\x01\x01\x02\x01\x04\x03\x01\x01\x01\x02\x04\x05\x04", // 澾
+ 0x6fbf: "\x04\x04\x01\x01\x02\x03\x04\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 澿
+ 0x6fc0: "\x04\x04\x01\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x03\x04", // 激
+ 0x6fc1: "\x04\x04\x01\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 濁
+ 0x6fc2: "\x04\x04\x01\x04\x01\x03\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 濂
+ 0x6fc3: "\x04\x04\x01\x02\x05\x01\x02\x02\x01\x01\x03\x01\x01\x05\x03\x04", // 濃
+ 0x6fc4: "\x04\x04\x01\x02\x05\x05\x02\x05\x02\x05\x01\x04\x05\x04", // 濄
+ 0x6fc5: "\x04\x04\x01\x04\x04\x05\x05\x01\x01\x04\x05\x02\x05\x02\x05\x04", // 濅
+ 0x6fc6: "\x04\x04\x01\x01\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 濆
+ 0x6fc7: "\x04\x04\x01\x01\x02\x03\x04\x03\x04\x01\x02\x05\x02\x05\x01\x01", // 濇
+ 0x6fc8: "\x04\x04\x01\x02\x05\x01\x01\x02\x02\x01\x01\x01\x05\x03\x04", // 濈
+ 0x6fc9: "\x04\x04\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 濉
+ 0x6fca: "\x04\x04\x01\x02\x01\x02\x01\x01\x03\x01\x02\x03\x03\x05\x03\x04", // 濊
+ 0x6fcb: "\x04\x04\x01\x01\x02\x03\x04\x01\x02\x03\x04\x05\x02\x01\x03\x04", // 濋
+ 0x6fcc: "\x03\x01\x02\x05\x01\x01\x02\x01\x01\x02\x05\x03\x04\x02\x05\x01\x01", // 濌
+ 0x6fcd: "\x04\x04\x01\x01\x02\x02\x03\x05\x03\x03\x04\x04\x05\x04\x04", // 濍
+ 0x6fce: "\x04\x04\x01\x02\x05\x01\x01\x01\x05\x01\x03\x02\x01\x02\x05", // 濎
+ 0x6fcf: "\x04\x04\x01\x01\x01\x02\x01\x01\x01\x02\x01\x04\x05\x04\x03\x04", // 濏
+ 0x6fd0: "\x04\x04\x01\x02\x05\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 濐
+ 0x6fd1: "\x04\x04\x01\x01\x02\x05\x01\x02\x03\x04\x03\x05\x02\x05\x03\x04", // 濑
+ 0x6fd2: "\x04\x04\x01\x02\x01\x02\x01\x02\x03\x03\x01\x03\x02\x05\x03\x04", // 濒
+ 0x6fd3: "\x04\x04\x01\x04\x01\x04\x03\x01\x03\x05\x01\x01\x02\x02\x03\x04", // 濓
+ 0x6fd4: "\x04\x04\x01\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 濔
+ 0x6fd5: "\x04\x04\x01\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x04\x04\x04\x04", // 濕
+ 0x6fd6: "\x04\x04\x01\x02\x05\x02\x02\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 濖
+ 0x6fd7: "\x04\x04\x01\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04\x02\x05\x02", // 濗
+ 0x6fd8: "\x04\x04\x01\x04\x04\x05\x04\x05\x04\x04\x02\x05\x02\x02\x01\x01\x02", // 濘
+ 0x6fd9: "\x04\x04\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x04\x03\x03\x04", // 濙
+ 0x6fda: "\x04\x04\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x01\x02\x03\x04", // 濚
+ 0x6fdb: "\x04\x04\x01\x01\x02\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 濛
+ 0x6fdc: "\x04\x04\x01\x05\x01\x01\x02\x01\x04\x04\x04\x04\x02\x05\x02\x02\x01", // 濜
+ 0x6fdd: "\x04\x04\x01\x01\x02\x02\x01\x01\x01\x03\x04\x05\x05\x04\x02\x03\x04", // 濝
+ 0x6fde: "\x04\x04\x01\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02", // 濞
+ 0x6fdf: "\x04\x04\x01\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01", // 濟
+ 0x6fe0: "\x04\x04\x01\x04\x01\x02\x05\x01\x04\x05\x01\x03\x05\x03\x03\x03\x04", // 濠
+ 0x6fe1: "\x04\x04\x01\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02", // 濡
+ 0x6fe2: "\x04\x04\x01\x05\x04\x01\x05\x04\x01\x04\x01\x03\x04\x03\x04\x01\x02", // 濢
+ 0x6fe3: "\x04\x04\x01\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04\x04\x04\x01\x02", // 濣
+ 0x6fe4: "\x04\x04\x01\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 濤
+ 0x6fe5: "\x04\x04\x01\x03\x05\x04\x04\x04\x05\x01\x02\x05\x01\x02\x01\x03\x04", // 濥
+ 0x6fe6: "\x04\x04\x01\x03\x04\x04\x03\x01\x02\x01\x05\x01\x01\x04\x05\x04\x04", // 濦
+ 0x6fe7: "\x04\x04\x01\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x01\x02\x04", // 濧
+ 0x6fe8: "\x04\x04\x01\x04\x03\x01\x05\x05\x04\x05\x05\x04\x04\x05\x04\x04", // 濨
+ 0x6fe9: "\x04\x04\x01\x01\x02\x02\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 濩
+ 0x6fea: "\x04\x04\x01\x01\x01\x02\x01\x02\x05\x01\x01\x03\x05\x05\x02\x01\x05", // 濪
+ 0x6feb: "\x04\x04\x01\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01", // 濫
+ 0x6fec: "\x04\x04\x01\x02\x01\x04\x05\x01\x03\x04\x03\x04\x02\x05\x01\x01\x01", // 濬
+ 0x6fed: "\x04\x04\x01\x01\x02\x02\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 濭
+ 0x6fee: "\x04\x04\x01\x03\x02\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 濮
+ 0x6fef: "\x04\x04\x01\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 濯
+ 0x6ff0: "\x04\x04\x01\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 濰
+ 0x6ff1: "\x04\x04\x01\x04\x04\x05\x01\x02\x03\x03\x02\x05\x01\x01\x01\x03\x04", // 濱
+ 0x6ff2: "\x04\x04\x01\x01\x02\x01\x04\x05\x03\x01\x02\x03\x04\x03\x05\x05\x04", // 濲
+ 0x6ff3: "\x04\x04\x01\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01", // 濳
+ 0x6ff4: "\x04\x04\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x02\x05\x03\x04", // 濴
+ 0x6ff5: "\x04\x04\x01\x04\x04\x05\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 濵
+ 0x6ff6: "\x04\x04\x01\x02\x05\x01\x01\x02\x05\x01\x01\x03\x01\x02\x02\x05\x01", // 濶
+ 0x6ff7: "\x02\x05\x03\x04\x04\x04\x01\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04", // 濷
+ 0x6ff8: "\x04\x04\x01\x01\x02\x02\x03\x04\x04\x05\x01\x01\x03\x02\x05\x01", // 濸
+ 0x6ff9: "\x04\x04\x01\x02\x05\x01\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x01", // 濹
+ 0x6ffa: "\x04\x04\x01\x02\x05\x01\x01\x01\x03\x04\x01\x05\x03\x04\x01\x05\x03\x04", // 濺
+ 0x6ffb: "\x04\x04\x01\x05\x02\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 濻
+ 0x6ffc: "\x04\x04\x01\x03\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x03\x04", // 濼
+ 0x6ffd: "\x04\x04\x01\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 濽
+ 0x6ffe: "\x04\x04\x01\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 濾
+ 0x6fff: "\x04\x04\x01\x01\x03\x01\x02\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 濿
+ 0x7000: "\x04\x04\x01\x01\x03\x02\x05\x01\x01\x04\x05\x04\x05\x04\x04\x03\x05\x04", // 瀀
+ 0x7001: "\x04\x04\x01\x04\x03\x01\x01\x01\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 瀁
+ 0x7002: "\x04\x04\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01", // 瀂
+ 0x7003: "\x04\x04\x01\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x03\x05\x03\x03", // 瀃
+ 0x7004: "\x04\x04\x01\x03\x01\x04\x03\x01\x04\x05\x01\x01\x05\x04\x05\x02", // 瀄
+ 0x7005: "\x04\x04\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x01\x01\x02\x01\x04", // 瀅
+ 0x7006: "\x04\x04\x01\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 瀆
+ 0x7007: "\x04\x04\x01\x04\x01\x03\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 瀇
+ 0x7008: "\x04\x04\x01\x05\x04\x01\x05\x04\x01\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 瀈
+ 0x7009: "\x04\x04\x01\x04\x04\x05\x03\x02\x01\x05\x01\x01\x03\x05\x04\x04\x04\x04", // 瀉
+ 0x700a: "\x04\x04\x01\x03\x03\x05\x04\x01\x04\x03\x05\x05\x04\x02\x05\x02\x02\x01", // 瀊
+ 0x700b: "\x04\x04\x01\x04\x04\x05\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 瀋
+ 0x700c: "\x04\x04\x01\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x04\x04\x04\x04", // 瀌
+ 0x700d: "\x04\x04\x01\x04\x01\x03\x02\x05\x01\x01\x02\x01\x01\x03\x04\x01\x02\x01", // 瀍
+ 0x700e: "\x04\x04\x01\x01\x02\x02\x02\x05\x02\x02\x01\x01\x03\x04\x05\x03\x04", // 瀎
+ 0x700f: "\x04\x04\x01\x03\x05\x04\x05\x03\x03\x04\x01\x01\x02\x04\x03\x01\x02\x02", // 瀏
+ 0x7010: "\x04\x04\x01\x01\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 瀐
+ 0x7011: "\x04\x04\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x04\x02\x04\x01\x03\x04", // 瀑
+ 0x7012: "\x04\x04\x01\x01\x03\x04\x03\x04\x02\x03\x04\x01\x02\x05\x02\x05\x01\x01", // 瀒
+ 0x7013: "\x04\x04\x01\x03\x03\x02\x02\x05\x02\x01\x01\x01\x02\x01\x03\x01\x03\x04", // 瀓
+ 0x7014: "\x04\x04\x01\x01\x02\x01\x04\x05\x01\x03\x01\x02\x03\x04\x03\x05\x05\x04", // 瀔
+ 0x7015: "\x04\x04\x01\x02\x01\x02\x01\x02\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 瀕
+ 0x7016: "\x04\x04\x01\x01\x04\x05\x02\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 瀖
+ 0x7017: "\x04\x04\x01\x04\x04\x05\x01\x01\x01\x02\x02\x05\x02\x02\x01\x04\x05\x04\x04", // 瀗
+ 0x7018: "\x04\x04\x01\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 瀘
+ 0x7019: "\x04\x04\x01\x04\x01\x04\x03\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 瀙
+ 0x701a: "\x04\x04\x01\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04\x05\x04\x01\x05\x04\x01", // 瀚
+ 0x701b: "\x04\x04\x01\x04\x01\x05\x02\x05\x01\x03\x05\x01\x01\x05\x03\x01\x03\x05\x04", // 瀛
+ 0x701c: "\x04\x04\x01\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x02\x05\x01\x02\x01\x04", // 瀜
+ 0x701d: "\x04\x04\x01\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 瀝
+ 0x701e: "\x04\x04\x01\x01\x01\x02\x01\x02\x05\x01\x01\x03\x05\x05\x01\x01\x02", // 瀞
+ 0x701f: "\x04\x04\x01\x01\x02\x02\x05\x01\x01\x02\x03\x02\x01\x01\x05\x05\x02\x01\x02", // 瀟
+ 0x7020: "\x04\x04\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x05\x05\x04\x02\x03\x04", // 瀠
+ 0x7021: "\x04\x04\x01\x05\x02\x01\x03\x01\x02\x01\x02\x05\x01\x01\x04\x05\x04", // 瀡
+ 0x7022: "\x04\x04\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04", // 瀢
+ 0x7023: "\x04\x04\x01\x02\x01\x03\x05\x04\x05\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 瀣
+ 0x7024: "\x04\x04\x01\x04\x01\x02\x05\x02\x02\x01\x02\x04\x01\x03\x04\x03\x05\x03\x04", // 瀤
+ 0x7025: "\x04\x04\x01\x05\x04\x01\x05\x04\x01\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 瀥
+ 0x7026: "\x04\x04\x01\x01\x03\x05\x03\x03\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01", // 瀦
+ 0x7027: "\x04\x04\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x05\x01\x05\x01\x01\x01", // 瀧
+ 0x7028: "\x04\x04\x01\x01\x02\x05\x01\x02\x03\x04\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 瀨
+ 0x7029: "\x04\x04\x01\x03\x01\x02\x03\x04\x03\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 瀩
+ 0x702a: "\x03\x01\x05\x05\x04\x01\x04\x03\x01\x03\x04\x03\x02\x05\x01\x01\x02\x05\x03\x04", // 瀪
+ 0x702b: "\x04\x04\x01\x01\x02\x01\x04\x05\x01\x05\x05\x04\x02\x03\x04\x03\x05\x05\x04", // 瀫
+ 0x702c: "\x04\x04\x01\x01\x02\x05\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 瀬
+ 0x702d: "\x04\x04\x01\x01\x02\x05\x01\x01\x01\x02\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 瀭
+ 0x702e: "\x04\x04\x01\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x03\x04\x01\x02\x03\x04", // 瀮
+ 0x702f: "\x04\x04\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x02\x05\x01\x02\x05\x01", // 瀯
+ 0x7030: "\x04\x04\x01\x05\x01\x05\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 瀰
+ 0x7031: "\x04\x04\x01\x02\x05\x02\x02\x01\x01\x03\x04\x03\x03\x04\x04\x03\x03\x04\x02\x02", // 瀱
+ 0x7032: "\x04\x04\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x03\x01\x03\x04", // 瀲
+ 0x7033: "\x04\x04\x01\x01\x02\x02\x04\x01\x03\x05\x02\x02\x01\x01\x05\x04\x04\x04\x04", // 瀳
+ 0x7034: "\x04\x04\x01\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x05\x03\x01", // 瀴
+ 0x7035: "\x04\x04\x01\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 瀵
+ 0x7036: "\x04\x04\x01\x01\x02\x05\x01\x02\x05\x03\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 瀶
+ 0x7037: "\x04\x04\x01\x05\x04\x01\x05\x04\x01\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 瀷
+ 0x7038: "\x04\x04\x01\x03\x04\x03\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 瀸
+ 0x7039: "\x04\x04\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02", // 瀹
+ 0x703a: "\x04\x04\x01\x03\x05\x02\x05\x01\x01\x05\x03\x05\x03\x05\x02\x05\x01\x03\x05\x04", // 瀺
+ 0x703b: "\x04\x04\x01\x01\x02\x01\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04\x05\x03\x04", // 瀻
+ 0x703c: "\x04\x04\x01\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 瀼
+ 0x703d: "\x04\x04\x01\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 瀽
+ 0x703e: "\x04\x04\x01\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 瀾
+ 0x703f: "\x04\x04\x01\x03\x01\x05\x05\x04\x01\x04\x03\x01\x03\x04\x05\x05\x04\x02\x03\x04", // 瀿
+ 0x7040: "\x04\x04\x01\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 灀
+ 0x7041: "\x04\x04\x01\x02\x05\x01\x01\x02\x05\x01\x01\x03\x02\x05\x01\x01\x02\x05\x03\x04", // 灁
+ 0x7042: "\x04\x04\x01\x03\x04\x04\x03\x02\x05\x02\x02\x01\x05\x01\x01\x05\x04\x01\x02\x04", // 灂
+ 0x7043: "\x04\x04\x01\x01\x01\x01\x02\x02\x01\x01\x01\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 灃
+ 0x7044: "\x04\x04\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01", // 灄
+ 0x7045: "\x04\x04\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x01\x02\x01", // 灅
+ 0x7046: "\x04\x04\x01\x01\x02\x02\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01", // 灆
+ 0x7047: "\x04\x04\x01\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x02\x02\x01\x01\x01\x05\x04", // 灇
+ 0x7048: "\x04\x04\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 灈
+ 0x7049: "\x04\x04\x01\x05\x05\x05\x02\x05\x01\x05\x02\x01\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 灉
+ 0x704a: "\x04\x04\x01\x01\x05\x03\x05\x01\x05\x03\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 灊
+ 0x704b: "\x04\x04\x01\x04\x01\x03\x05\x02\x02\x01\x01\x05\x04\x04\x04\x04\x01\x02\x01\x05\x04", // 灋
+ 0x704c: "\x04\x04\x01\x01\x02\x02\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 灌
+ 0x704d: "\x04\x04\x01\x02\x05\x01\x01\x02\x05\x01\x01\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04", // 灍
+ 0x704e: "\x04\x04\x01\x02\x05\x01\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 灎
+ 0x704f: "\x04\x04\x01\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x03\x04\x01\x03\x02\x05\x03\x04", // 灏
+ 0x7050: "\x04\x04\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x03\x04\x01\x01\x02\x04\x03\x01", // 灐
+ 0x7051: "\x04\x04\x01\x01\x02\x05\x04\x01\x02\x05\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 灑
+ 0x7052: "\x04\x04\x01\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 灒
+ 0x7053: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x02\x05\x03\x04", // 灓
+ 0x7054: "\x04\x04\x01\x02\x05\x01\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01\x03\x05\x05\x02\x01\x05", // 灔
+ 0x7055: "\x04\x04\x01\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 灕
+ 0x7056: "\x04\x04\x01\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01", // 灖
+ 0x7057: "\x04\x04\x01\x02\x05\x01\x02\x01\x04\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 灗
+ 0x7058: "\x04\x04\x01\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 灘
+ 0x7059: "\x04\x04\x01\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 灙
+ 0x705a: "\x04\x04\x01\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x02\x05\x01\x01\x01\x03\x05", // 灚
+ 0x705b: "\x04\x04\x01\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 灛
+ 0x705c: "\x04\x04\x01\x04\x01\x05\x02\x05\x01\x03\x05\x01\x01\x02\x05\x01\x01\x01\x03\x04\x03\x05\x04", // 灜
+ 0x705d: "\x04\x04\x01\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 灝
+ 0x705e: "\x04\x04\x01\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x01\x01", // 灞
+ 0x705f: "\x04\x04\x01\x05\x01\x03\x02\x04\x01\x03\x04\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 灟
+ 0x7060: "\x04\x04\x01\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 灠
+ 0x7061: "\x04\x04\x01\x01\x02\x02\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 灡
+ 0x7062: "\x04\x04\x01\x01\x02\x05\x01\x02\x04\x05\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 灢
+ 0x7063: "\x04\x04\x01\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x05\x01\x05", // 灣
+ 0x7064: "\x04\x04\x01\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x01\x02\x03\x04", // 灤
+ 0x7065: "\x03\x02\x05\x01\x01\x02\x05\x03\x04\x03\x02\x05\x01\x01\x02\x05\x03\x04\x03\x02\x05\x01\x01\x02\x05\x03\x04", // 灥
+ 0x7066: "\x04\x04\x01\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x04\x04\x04\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 灦
+ 0x7067: "\x04\x04\x01\x01\x01\x01\x02\x02\x01\x01\x01\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01\x03\x05\x05\x02\x01\x05", // 灧
+ 0x7068: "\x04\x04\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x03\x05\x04\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 灨
+ 0x7069: "\x04\x04\x01\x01\x01\x01\x02\x02\x01\x01\x01\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 灩
+ 0x706a: "\x04\x04\x01\x01\x02\x03\x04\x03\x01\x01\x02\x05\x02\x01\x02\x03\x04\x04\x05\x03\x04\x04\x04\x04\x04\x05\x02\x03\x05\x03\x03\x03", // 灪
+ 0x706b: "\x04\x03\x03\x04", // 火
+ 0x706c: "\x04\x04\x04\x04", // 灬
+ 0x706d: "\x01\x04\x03\x03\x04", // 灭
+ 0x706e: "\x04\x03\x03\x04\x03\x05", // 灮
+ 0x706f: "\x04\x03\x03\x04\x01\x02", // 灯
+ 0x7070: "\x01\x03\x04\x03\x03\x04", // 灰
+ 0x7071: "\x04\x03\x03\x04\x05\x03", // 灱
+ 0x7072: "\x04\x03\x03\x04\x02\x02", // 灲
+ 0x7073: "\x03\x05\x04\x03\x03\x04", // 灳
+ 0x7074: "\x04\x03\x03\x04\x01\x02\x01", // 灴
+ 0x7075: "\x05\x01\x01\x04\x03\x03\x04", // 灵
+ 0x7076: "\x04\x03\x03\x04\x01\x02\x01", // 灶
+ 0x7077: "\x04\x03\x03\x04\x01\x03\x02", // 灷
+ 0x7078: "\x03\x05\x04\x04\x03\x03\x04", // 灸
+ 0x7079: "\x04\x03\x03\x04\x03\x01\x05", // 灹
+ 0x707a: "\x04\x03\x03\x04\x05\x02\x05", // 灺
+ 0x707b: "\x01\x02\x01\x04\x03\x03\x04", // 灻
+ 0x707c: "\x04\x03\x03\x04\x03\x05\x04", // 灼
+ 0x707d: "\x05\x05\x05\x04\x03\x03\x04", // 災
+ 0x707e: "\x04\x04\x05\x04\x03\x03\x04", // 灾
+ 0x707f: "\x04\x03\x03\x04\x02\x05\x02", // 灿
+ 0x7080: "\x04\x03\x03\x04\x05\x03\x03", // 炀
+ 0x7081: "\x01\x05\x03\x05\x04\x04\x04\x04", // 炁
+ 0x7082: "\x04\x03\x03\x04\x03\x04\x05\x04", // 炂
+ 0x7083: "\x03\x04\x05\x03\x04\x03\x03\x04", // 炃
+ 0x7084: "\x04\x03\x03\x04\x05\x02\x01\x01", // 炄
+ 0x7085: "\x02\x05\x01\x01\x04\x03\x03\x04", // 炅
+ 0x7086: "\x04\x03\x03\x04\x04\x01\x03\x04", // 炆
+ 0x7087: "\x04\x03\x03\x04\x03\x01\x03\x04", // 炇
+ 0x7088: "\x04\x03\x03\x04\x03\x05\x05\x04", // 炈
+ 0x7089: "\x04\x03\x03\x04\x04\x05\x01\x03", // 炉
+ 0x708a: "\x04\x03\x03\x04\x03\x05\x03\x04", // 炊
+ 0x708b: "\x04\x03\x03\x04\x01\x03\x02\x04", // 炋
+ 0x708c: "\x04\x03\x03\x04\x03\x04\x03\x02", // 炌
+ 0x708d: "\x04\x03\x03\x04\x03\x03\x05\x04", // 炍
+ 0x708e: "\x04\x03\x03\x04\x04\x03\x03\x04", // 炎
+ 0x708f: "\x04\x03\x03\x04\x04\x03\x03\x04", // 炏
+ 0x7090: "\x04\x03\x03\x04\x01\x01\x01\x02", // 炐
+ 0x7091: "\x04\x03\x03\x04\x01\x02\x03\x04", // 炑
+ 0x7092: "\x04\x03\x03\x04\x02\x03\x04\x03", // 炒
+ 0x7093: "\x04\x03\x03\x04\x04\x04\x01\x02", // 炓
+ 0x7094: "\x04\x03\x03\x04\x05\x01\x03\x04", // 炔
+ 0x7095: "\x04\x03\x03\x04\x04\x01\x03\x05", // 炕
+ 0x7096: "\x04\x03\x03\x04\x01\x05\x02\x05", // 炖
+ 0x7097: "\x01\x02\x02\x01\x04\x03\x03\x04", // 炗
+ 0x7098: "\x04\x03\x03\x04\x03\x03\x01\x02", // 炘
+ 0x7099: "\x03\x05\x04\x04\x04\x03\x03\x04", // 炙
+ 0x709a: "\x02\x05\x01\x01\x04\x03\x03\x04", // 炚
+ 0x709b: "\x04\x03\x03\x04\x03\x02\x03\x05", // 炛
+ 0x709c: "\x04\x03\x03\x04\x01\x01\x05\x02", // 炜
+ 0x709d: "\x04\x03\x03\x04\x03\x04\x05\x05", // 炝
+ 0x709e: "\x04\x03\x03\x04\x04\x01\x02\x04", // 炞
+ 0x709f: "\x04\x03\x03\x04\x02\x05\x01\x01\x01", // 炟
+ 0x70a0: "\x04\x03\x03\x04\x02\x05\x01\x01\x02", // 炠
+ 0x70a1: "\x04\x03\x03\x04\x01\x02\x01\x02\x01", // 炡
+ 0x70a2: "\x04\x03\x03\x04\x01\x02\x03\x04\x04", // 炢
+ 0x70a3: "\x04\x03\x03\x04\x01\x02\x05\x01\x02", // 炣
+ 0x70a4: "\x04\x03\x03\x04\x05\x03\x02\x05\x01", // 炤
+ 0x70a5: "\x04\x03\x03\x04\x05\x01\x05\x03\x02", // 炥
+ 0x70a6: "\x04\x03\x03\x04\x01\x03\x05\x04\x04", // 炦
+ 0x70a7: "\x04\x03\x03\x04\x03\x01\x05\x02\x05", // 炧
+ 0x70a8: "\x04\x03\x03\x04\x04\x04\x05\x03\x05", // 炨
+ 0x70a9: "\x04\x03\x03\x04\x03\x04\x04\x05\x04", // 炩
+ 0x70aa: "\x04\x03\x03\x04\x05\x02\x02\x05\x02", // 炪
+ 0x70ab: "\x04\x03\x03\x04\x04\x01\x05\x05\x04", // 炫
+ 0x70ac: "\x04\x03\x03\x04\x01\x05\x01\x05", // 炬
+ 0x70ad: "\x02\x05\x02\x01\x03\x04\x03\x03\x04", // 炭
+ 0x70ae: "\x04\x03\x03\x04\x03\x05\x05\x01\x05", // 炮
+ 0x70af: "\x04\x03\x03\x04\x02\x05\x02\x05\x01", // 炯
+ 0x70b0: "\x03\x05\x05\x01\x05\x04\x04\x04\x04", // 炰
+ 0x70b1: "\x05\x04\x02\x05\x01\x04\x03\x03\x04", // 炱
+ 0x70b2: "\x04\x03\x03\x04\x05\x04\x02\x05\x01", // 炲
+ 0x70b3: "\x04\x03\x03\x04\x01\x02\x05\x03\x04", // 炳
+ 0x70b4: "\x04\x03\x03\x04\x02\x05\x01\x03\x04", // 炴
+ 0x70b5: "\x04\x03\x03\x04\x03\x05\x04\x04\x04", // 炵
+ 0x70b6: "\x04\x03\x03\x04\x02\x01\x02\x05\x01", // 炶
+ 0x70b7: "\x04\x03\x03\x04\x04\x01\x01\x02\x01", // 炷
+ 0x70b8: "\x04\x03\x03\x04\x03\x01\x02\x01\x01", // 炸
+ 0x70b9: "\x02\x01\x02\x05\x01\x04\x04\x04\x04", // 点
+ 0x70ba: "\x04\x03\x05\x05\x05\x04\x04\x04\x04", // 為
+ 0x70bb: "\x04\x03\x03\x04\x01\x03\x02\x05\x01", // 炻
+ 0x70bc: "\x04\x03\x03\x04\x01\x05\x05\x03\x04", // 炼
+ 0x70bd: "\x04\x03\x03\x04\x02\x05\x01\x03\x04", // 炽
+ 0x70be: "\x04\x03\x03\x04\x02\x05\x01\x03\x05", // 炾
+ 0x70bf: "\x04\x03\x03\x04\x03\x03\x05\x04\x01", // 炿
+ 0x70c0: "\x04\x03\x03\x04\x03\x04\x03\x01\x02", // 烀
+ 0x70c1: "\x04\x03\x03\x04\x03\x05\x02\x03\x04", // 烁
+ 0x70c2: "\x04\x03\x03\x04\x04\x03\x01\x01\x01", // 烂
+ 0x70c3: "\x04\x03\x03\x04\x05\x04\x01\x02\x01", // 烃
+ 0x70c4: "\x04\x03\x03\x04\x04\x01\x03\x04\x03\x04", // 烄
+ 0x70c5: "\x04\x03\x03\x04\x03\x02\x05\x02\x02\x01", // 烅
+ 0x70c6: "\x04\x03\x03\x04\x03\x03\x02\x01\x01\x02", // 烆
+ 0x70c7: "\x04\x03\x03\x04\x03\x04\x01\x01\x02\x01", // 烇
+ 0x70c8: "\x01\x03\x05\x04\x02\x02\x04\x04\x04\x04", // 烈
+ 0x70c9: "\x03\x05\x02\x05\x03\x04\x04\x03\x03\x04", // 烉
+ 0x70ca: "\x04\x03\x03\x04\x04\x03\x01\x01\x01\x02", // 烊
+ 0x70cb: "\x03\x02\x01\x02\x03\x04\x04\x04\x04\x04", // 烋
+ 0x70cc: "\x04\x03\x03\x04\x03\x02\x01\x02\x03\x04", // 烌
+ 0x70cd: "\x04\x03\x03\x04\x03\x01\x02\x01\x03\x05", // 烍
+ 0x70ce: "\x01\x01\x03\x02\x04\x03\x03\x04", // 烎
+ 0x70cf: "\x03\x02\x05\x01\x01\x05\x04\x04\x04\x04", // 烏
+ 0x70d0: "\x04\x03\x03\x04\x03\x03\x05\x04\x01\x04", // 烐
+ 0x70d1: "\x04\x03\x03\x04\x03\x04\x01\x05\x03\x04", // 烑
+ 0x70d2: "\x04\x03\x03\x04\x01\x01\x02\x01\x05\x04", // 烒
+ 0x70d3: "\x04\x03\x03\x04\x01\x02\x01\x01\x02\x01", // 烓
+ 0x70d4: "\x04\x03\x03\x04\x02\x05\x01\x02\x05\x01", // 烔
+ 0x70d5: "\x01\x03\x01\x04\x03\x03\x04\x05\x03\x04", // 烕
+ 0x70d6: "\x01\x02\x01\x04\x03\x03\x04\x05\x03\x04", // 烖
+ 0x70d7: "\x04\x03\x03\x04\x04\x01\x05\x03\x03\x04", // 烗
+ 0x70d8: "\x04\x03\x03\x04\x01\x02\x02\x01\x03\x04", // 烘
+ 0x70d9: "\x04\x03\x03\x04\x03\x05\x04\x02\x05\x01", // 烙
+ 0x70da: "\x04\x03\x03\x04\x03\x04\x01\x02\x05\x01", // 烚
+ 0x70db: "\x04\x03\x03\x04\x02\x05\x01\x02\x01\x04", // 烛
+ 0x70dc: "\x04\x03\x03\x04\x01\x02\x05\x01\x01\x01", // 烜
+ 0x70dd: "\x05\x02\x05\x03\x04\x01\x04\x04\x04\x04", // 烝
+ 0x70de: "\x04\x03\x03\x04\x01\x02\x03\x04\x02\x04", // 烞
+ 0x70df: "\x04\x03\x03\x04\x02\x05\x01\x03\x04\x01", // 烟
+ 0x70e0: "\x04\x03\x03\x04\x01\x03\x02\x05\x01\x01", // 烠
+ 0x70e1: "\x04\x03\x03\x04\x01\x02\x02\x01\x03\x04", // 烡
+ 0x70e2: "\x04\x03\x03\x04\x04\x04\x05\x03\x01\x05", // 烢
+ 0x70e3: "\x04\x03\x03\x04\x01\x03\x04\x03\x03\x04", // 烣
+ 0x70e4: "\x04\x03\x03\x04\x01\x02\x01\x03\x01\x05", // 烤
+ 0x70e5: "\x04\x03\x03\x04\x01\x02\x05\x01\x02\x05", // 烥
+ 0x70e6: "\x04\x03\x03\x04\x01\x03\x02\x05\x03\x04", // 烦
+ 0x70e7: "\x04\x03\x03\x04\x01\x05\x03\x01\x03\x05", // 烧
+ 0x70e8: "\x04\x03\x03\x04\x03\x02\x03\x05\x01\x02", // 烨
+ 0x70e9: "\x04\x03\x03\x04\x03\x04\x01\x01\x05\x04", // 烩
+ 0x70ea: "\x04\x03\x03\x04\x04\x03\x01\x01\x03\x04", // 烪
+ 0x70eb: "\x04\x04\x01\x05\x03\x03\x04\x03\x03\x04", // 烫
+ 0x70ec: "\x04\x03\x03\x04\x05\x01\x03\x04\x04\x04", // 烬
+ 0x70ed: "\x01\x02\x01\x03\x05\x04\x04\x04\x04\x04", // 热
+ 0x70ee: "\x01\x03\x05\x04\x02\x02\x04\x03\x03\x04", // 烮
+ 0x70ef: "\x04\x03\x03\x04\x03\x04\x01\x03\x02\x05\x02", // 烯
+ 0x70f0: "\x04\x03\x03\x04\x03\x04\x04\x03\x05\x02\x01", // 烰
+ 0x70f1: "\x04\x03\x03\x04\x02\x05\x03\x04\x02\x05\x01", // 烱
+ 0x70f2: "\x01\x02\x01\x03\x03\x01\x02\x04\x03\x03\x04", // 烲
+ 0x70f3: "\x04\x03\x03\x04\x01\x02\x05\x01\x01\x02\x04", // 烳
+ 0x70f4: "\x04\x03\x03\x04\x01\x05\x05\x05\x01\x02\x01", // 烴
+ 0x70f5: "\x04\x03\x03\x04\x01\x02\x02\x03\x05\x04", // 烵
+ 0x70f6: "\x04\x03\x03\x04\x03\x01\x02\x01\x05\x04", // 烶
+ 0x70f7: "\x04\x03\x03\x04\x04\x04\x05\x01\x01\x03\x05", // 烷
+ 0x70f8: "\x04\x03\x03\x04\x03\x01\x05\x05\x04\x01\x04", // 烸
+ 0x70f9: "\x04\x01\x02\x05\x01\x05\x02\x04\x04\x04\x04", // 烹
+ 0x70fa: "\x04\x03\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 烺
+ 0x70fb: "\x04\x03\x03\x04\x03\x02\x01\x05\x05\x04", // 烻
+ 0x70fc: "\x04\x03\x03\x04\x01\x03\x05\x03\x03\x03\x04", // 烼
+ 0x70fd: "\x04\x03\x03\x04\x03\x05\x04\x01\x01\x01\x02", // 烽
+ 0x70fe: "\x04\x03\x03\x04\x04\x03\x03\x04\x01\x02\x01", // 烾
+ 0x70ff: "\x04\x03\x03\x04\x03\x05\x04\x01\x03\x03\x03", // 烿
+ 0x7100: "\x04\x03\x03\x04\x03\x04\x03\x04\x02\x05\x01", // 焀
+ 0x7101: "\x02\x05\x01\x03\x05\x03\x04\x04\x03\x03\x04", // 焁
+ 0x7102: "\x03\x02\x02\x03\x01\x03\x04\x04\x03\x03\x04", // 焂
+ 0x7103: "\x04\x03\x03\x04\x01\x02\x01\x03\x02\x03\x04", // 焃
+ 0x7104: "\x05\x01\x01\x03\x02\x05\x01\x04\x04\x04\x04", // 焄
+ 0x7105: "\x04\x03\x03\x04\x03\x01\x02\x01\x02\x05\x01", // 焅
+ 0x7106: "\x04\x03\x03\x04\x02\x05\x01\x02\x05\x01\x01", // 焆
+ 0x7107: "\x04\x03\x03\x04\x02\x04\x03\x02\x05\x01\x01", // 焇
+ 0x7108: "\x04\x05\x01\x03\x05\x01\x05\x04\x03\x03\x04", // 焈
+ 0x7109: "\x01\x02\x01\x02\x01\x01\x05\x04\x04\x04\x04", // 焉
+ 0x710a: "\x04\x03\x03\x04\x02\x05\x01\x01\x01\x01\x02", // 焊
+ 0x710b: "\x05\x02\x01\x03\x01\x02\x01\x04\x03\x03\x04", // 焋
+ 0x710c: "\x04\x03\x03\x04\x05\x04\x03\x04\x03\x05\x04", // 焌
+ 0x710d: "\x04\x03\x03\x04\x04\x03\x05\x01\x05\x02\x03", // 焍
+ 0x710e: "\x01\x02\x01\x03\x03\x01\x02\x04\x04\x04\x04", // 焎
+ 0x710f: "\x05\x02\x02\x05\x01\x05\x04\x04\x04\x04\x04", // 焏
+ 0x7110: "\x04\x03\x03\x04\x01\x02\x05\x01\x02\x05\x01", // 焐
+ 0x7111: "\x04\x03\x03\x04\x02\x05\x01\x02\x03\x04\x01", // 焑
+ 0x7112: "\x04\x03\x03\x04\x02\x05\x01\x02\x05\x01", // 焒
+ 0x7113: "\x04\x03\x03\x04\x03\x04\x04\x05\x02\x05\x01", // 焓
+ 0x7114: "\x04\x03\x03\x04\x03\x05\x02\x02\x05\x01\x01", // 焔
+ 0x7115: "\x04\x03\x03\x04\x03\x05\x02\x05\x01\x03\x04", // 焕
+ 0x7116: "\x04\x03\x03\x04\x04\x02\x05\x04\x05\x04\x04", // 焖
+ 0x7117: "\x04\x03\x03\x04\x05\x01\x03\x05\x02\x05\x01", // 焗
+ 0x7118: "\x01\x01\x01\x03\x01\x02\x04\x04\x04\x04\x04", // 焘
+ 0x7119: "\x04\x03\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01", // 焙
+ 0x711a: "\x01\x02\x03\x04\x01\x02\x03\x04\x04\x03\x03\x04", // 焚
+ 0x711b: "\x02\x05\x01\x01\x02\x05\x01\x01\x04\x03\x03\x04", // 焛
+ 0x711c: "\x04\x03\x03\x04\x02\x05\x01\x01\x01\x05\x03\x05", // 焜
+ 0x711d: "\x04\x03\x03\x04\x03\x05\x01\x05\x02\x05\x01\x01", // 焝
+ 0x711e: "\x04\x03\x03\x04\x04\x01\x02\x05\x01\x05\x02\x01", // 焞
+ 0x711f: "\x04\x03\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01", // 焟
+ 0x7120: "\x04\x03\x03\x04\x04\x01\x03\x04\x03\x04\x01\x02", // 焠
+ 0x7121: "\x03\x01\x01\x02\x02\x02\x02\x01\x04\x04\x04\x04", // 無
+ 0x7122: "\x04\x03\x03\x04\x04\x04\x05\x03\x04\x01\x02\x01", // 焢
+ 0x7123: "\x01\x02\x02\x01\x01\x01\x05\x04\x04\x04\x04\x04", // 焣
+ 0x7124: "\x04\x01\x03\x03\x02\x01\x02\x04\x04\x03\x03\x04", // 焤
+ 0x7125: "\x04\x03\x03\x04\x04\x04\x05\x03\x05\x04\x05\x05", // 焥
+ 0x7126: "\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 焦
+ 0x7127: "\x04\x03\x03\x04\x03\x04\x05\x04\x04\x05\x04\x04", // 焧
+ 0x7128: "\x04\x03\x03\x04\x02\x05\x01\x01\x02\x05\x01\x01", // 焨
+ 0x7129: "\x04\x03\x03\x04\x03\x05\x01\x01\x03\x05\x01\x01", // 焩
+ 0x712a: "\x04\x03\x03\x04\x04\x04\x05\x03\x04\x05\x01\x05", // 焪
+ 0x712b: "\x04\x03\x03\x04\x01\x02\x02\x02\x05\x03\x04", // 焫
+ 0x712c: "\x04\x03\x03\x04\x02\x05\x01\x01\x03\x05\x03\x03", // 焬
+ 0x712d: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x03\x05", // 焭
+ 0x712e: "\x04\x03\x03\x04\x03\x03\x01\x02\x03\x05\x03\x04", // 焮
+ 0x712f: "\x04\x03\x03\x04\x02\x01\x02\x05\x01\x01\x01\x02", // 焯
+ 0x7130: "\x04\x03\x03\x04\x03\x05\x03\x02\x01\x05\x01\x01", // 焰
+ 0x7131: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04", // 焱
+ 0x7132: "\x04\x03\x03\x04\x04\x01\x03\x02\x03\x05\x04\x04", // 焲
+ 0x7133: "\x04\x03\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 焳
+ 0x7134: "\x04\x03\x03\x04\x04\x01\x05\x04\x02\x05\x01\x01", // 焴
+ 0x7135: "\x04\x03\x03\x04\x02\x05\x04\x03\x01\x02\x05\x02", // 焵
+ 0x7136: "\x03\x05\x04\x04\x01\x03\x04\x04\x04\x04\x04\x04", // 然
+ 0x7137: "\x04\x03\x03\x04\x03\x02\x05\x01\x01\x03\x01\x02", // 焷
+ 0x7138: "\x02\x05\x01\x01\x02\x05\x01\x01\x04\x03\x03\x04", // 焸
+ 0x7139: "\x04\x03\x03\x04\x02\x05\x04\x03\x01\x04\x01\x05", // 焹
+ 0x713a: "\x04\x03\x03\x04\x02\x05\x01\x01\x03\x01\x03\x02", // 焺
+ 0x713b: "\x04\x03\x03\x04\x02\x05\x01\x01\x02\x05\x01\x01", // 焻
+ 0x713c: "\x04\x03\x03\x04\x01\x02\x01\x02\x02\x01\x03\x05", // 焼
+ 0x713d: "\x02\x05\x01\x01\x03\x05\x01\x01\x04\x03\x03\x04", // 焽
+ 0x713e: "\x04\x03\x03\x04\x03\x04\x04\x05\x04\x05\x04\x04", // 焾
+ 0x713f: "\x04\x03\x03\x04\x04\x01\x03\x05\x01\x01\x03\x04", // 焿
+ 0x7140: "\x04\x03\x03\x04\x05\x01\x03\x05\x02\x02\x05\x02", // 煀
+ 0x7141: "\x04\x03\x03\x04\x01\x02\x02\x01\x01\x01\x03\x04\x05", // 煁
+ 0x7142: "\x04\x03\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01\x02", // 煂
+ 0x7143: "\x04\x03\x03\x04\x01\x03\x04\x01\x02\x01\x01\x02\x01", // 煃
+ 0x7144: "\x04\x03\x03\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 煄
+ 0x7145: "\x04\x03\x03\x04\x03\x02\x01\x01\x01\x03\x05\x05\x04", // 煅
+ 0x7146: "\x04\x03\x03\x04\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 煆
+ 0x7147: "\x04\x03\x03\x04\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 煇
+ 0x7148: "\x04\x03\x03\x04\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 煈
+ 0x7149: "\x04\x03\x03\x04\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 煉
+ 0x714a: "\x04\x03\x03\x04\x04\x04\x05\x01\x02\x05\x01\x01\x01", // 煊
+ 0x714b: "\x04\x03\x03\x04\x02\x05\x01\x01\x03\x01\x01\x02\x01", // 煋
+ 0x714c: "\x04\x03\x03\x04\x03\x02\x05\x01\x01\x01\x01\x02\x01", // 煌
+ 0x714d: "\x04\x03\x03\x04\x03\x01\x02\x03\x04\x04\x03\x03\x04", // 煍
+ 0x714e: "\x04\x03\x01\x02\x05\x01\x01\x02\x02\x04\x04\x04\x04", // 煎
+ 0x714f: "\x04\x03\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 煏
+ 0x7150: "\x04\x03\x03\x04\x01\x02\x02\x02\x05\x01\x03\x04", // 煐
+ 0x7151: "\x01\x02\x01\x03\x02\x05\x01\x01\x04\x03\x03\x04", // 煑
+ 0x7152: "\x04\x03\x03\x04\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 煒
+ 0x7153: "\x04\x03\x03\x04\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 煓
+ 0x7154: "\x04\x03\x03\x04\x04\x03\x03\x04\x02\x01\x02\x05\x01", // 煔
+ 0x7155: "\x01\x02\x02\x05\x01\x02\x05\x05\x01\x05\x04\x04\x04\x04", // 煕
+ 0x7156: "\x04\x03\x03\x04\x03\x04\x04\x03\x01\x01\x03\x05\x04", // 煖
+ 0x7157: "\x04\x03\x03\x04\x01\x03\x02\x05\x02\x02\x01\x03\x04", // 煗
+ 0x7158: "\x04\x03\x03\x04\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 煘
+ 0x7159: "\x04\x03\x03\x04\x01\x02\x05\x02\x02\x01\x01\x02\x01", // 煙
+ 0x715a: "\x02\x05\x01\x01\x01\x05\x01\x05\x04\x03\x03\x04", // 煚
+ 0x715b: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x04\x03\x03\x04", // 煛
+ 0x715c: "\x04\x03\x03\x04\x02\x05\x01\x01\x04\x01\x04\x03\x01", // 煜
+ 0x715d: "\x04\x03\x03\x04\x05\x02\x01\x03\x02\x05\x01\x01\x01", // 煝
+ 0x715e: "\x03\x05\x05\x01\x01\x03\x01\x03\x04\x04\x04\x04\x04", // 煞
+ 0x715f: "\x04\x03\x03\x04\x02\x05\x01\x02\x01\x02\x05\x01\x01", // 煟
+ 0x7160: "\x04\x03\x03\x04\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 煠
+ 0x7161: "\x04\x03\x03\x04\x05\x01\x01\x01\x01\x02\x05\x04", // 煡
+ 0x7162: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x05\x01\x02", // 煢
+ 0x7163: "\x04\x03\x03\x04\x05\x04\x05\x02\x03\x01\x02\x03\x04", // 煣
+ 0x7164: "\x04\x03\x03\x04\x01\x02\x02\x01\x01\x01\x02\x03\x04", // 煤
+ 0x7165: "\x04\x03\x03\x04\x03\x05\x02\x05\x03\x04\x01\x03\x04", // 煥
+ 0x7166: "\x02\x05\x01\x01\x03\x05\x02\x05\x01\x04\x04\x04\x04", // 煦
+ 0x7167: "\x02\x05\x01\x01\x05\x03\x02\x05\x01\x04\x04\x04\x04", // 照
+ 0x7168: "\x04\x03\x03\x04\x02\x05\x01\x02\x01\x01\x05\x03\x04", // 煨
+ 0x7169: "\x04\x03\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 煩
+ 0x716a: "\x04\x03\x03\x04\x04\x03\x01\x02\x05\x03\x05\x01\x01", // 煪
+ 0x716b: "\x04\x03\x03\x04\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 煫
+ 0x716c: "\x04\x03\x03\x04\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 煬
+ 0x716d: "\x05\x05\x05\x01\x03\x05\x04\x02\x02\x04\x04\x04\x04", // 煭
+ 0x716e: "\x01\x02\x01\x03\x02\x05\x01\x01\x04\x04\x04\x04", // 煮
+ 0x716f: "\x04\x03\x03\x04\x01\x05\x03\x05\x03\x02\x05\x01\x01", // 煯
+ 0x7170: "\x04\x03\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 煰
+ 0x7171: "\x04\x03\x03\x04\x02\x05\x05\x02\x05\x02\x05\x01", // 煱
+ 0x7172: "\x03\x02\x02\x05\x01\x01\x02\x03\x04\x04\x03\x03\x04", // 煲
+ 0x7173: "\x04\x03\x03\x04\x01\x02\x02\x05\x01\x03\x05\x01\x01", // 煳
+ 0x7174: "\x04\x03\x03\x04\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 煴
+ 0x7175: "\x04\x03\x03\x04\x01\x02\x02\x05\x04\x03\x01\x01\x02", // 煵
+ 0x7176: "\x04\x03\x03\x04\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 煶
+ 0x7177: "\x04\x03\x03\x04\x04\x01\x02\x05\x01\x04\x05\x03\x05", // 煷
+ 0x7178: "\x04\x03\x03\x04\x04\x05\x01\x03\x02\x05\x01\x02\x02", // 煸
+ 0x7179: "\x04\x03\x03\x04\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01", // 煹
+ 0x717a: "\x04\x03\x03\x04\x05\x01\x01\x05\x03\x04\x04\x05\x04", // 煺
+ 0x717b: "\x04\x03\x03\x04\x04\x01\x03\x05\x01\x01\x02\x02\x05\x01", // 煻
+ 0x717c: "\x04\x03\x03\x04\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03", // 煼
+ 0x717d: "\x04\x03\x03\x04\x04\x05\x01\x03\x05\x04\x01\x05\x04\x01", // 煽
+ 0x717e: "\x04\x03\x03\x04\x02\x05\x01\x03\x04\x01\x04\x05\x04\x04", // 煾
+ 0x717f: "\x04\x03\x03\x04\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 煿
+ 0x7180: "\x04\x03\x03\x04\x02\x05\x01\x01\x02\x04\x03\x01\x03\x05", // 熀
+ 0x7181: "\x04\x03\x03\x04\x05\x03\x05\x03\x05\x03\x02\x05\x01\x01", // 熁
+ 0x7182: "\x04\x03\x03\x04\x03\x01\x01\x05\x04\x03\x01\x02\x03\x04", // 熂
+ 0x7183: "\x05\x04\x05\x02\x03\x03\x05\x04\x05\x03\x04\x03\x03\x04", // 熃
+ 0x7184: "\x04\x03\x03\x04\x03\x02\x05\x01\x01\x01\x04\x05\x04\x04", // 熄
+ 0x7185: "\x04\x03\x03\x04\x02\x05\x03\x04\x01\x02\x05\x02\x02\x01", // 熅
+ 0x7186: "\x04\x03\x03\x04\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 熆
+ 0x7187: "\x04\x03\x03\x04\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 熇
+ 0x7188: "\x03\x01\x02\x05\x01\x02\x05\x05\x01\x05\x04\x04\x04\x04", // 熈
+ 0x7189: "\x04\x03\x03\x04\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 熉
+ 0x718a: "\x05\x04\x02\x05\x01\x01\x03\x05\x03\x05\x04\x04\x04\x04", // 熊
+ 0x718b: "\x05\x04\x02\x05\x01\x01\x03\x05\x03\x05\x04\x03\x03\x04", // 熋
+ 0x718c: "\x04\x03\x03\x04\x02\x05\x01\x01\x02\x05\x01\x01\x03\x04", // 熌
+ 0x718d: "\x04\x03\x03\x04\x04\x04\x05\x02\x05\x01\x02\x05\x01", // 熍
+ 0x718e: "\x04\x03\x03\x04\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02", // 熎
+ 0x718f: "\x03\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 熏
+ 0x7190: "\x04\x03\x03\x04\x04\x05\x02\x05\x01\x01\x04\x01\x03\x04", // 熐
+ 0x7191: "\x04\x03\x03\x04\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 熑
+ 0x7192: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x04\x03\x03\x04", // 熒
+ 0x7193: "\x04\x03\x03\x04\x03\x02\x05\x01\x01\x05\x04\x04\x04\x04", // 熓
+ 0x7194: "\x04\x03\x03\x04\x04\x04\x05\x03\x04\x03\x04\x02\x05\x01", // 熔
+ 0x7195: "\x04\x03\x03\x04\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 熕
+ 0x7196: "\x04\x03\x03\x04\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01", // 熖
+ 0x7197: "\x04\x03\x03\x04\x03\x04\x04\x05\x01\x01\x03\x02\x05\x01", // 熗
+ 0x7198: "\x04\x03\x03\x04\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 熘
+ 0x7199: "\x01\x02\x02\x05\x01\x02\x05\x05\x01\x05\x04\x04\x04\x04", // 熙
+ 0x719a: "\x04\x03\x03\x04\x02\x05\x01\x01\x01\x02\x02\x01\x01\x02", // 熚
+ 0x719b: "\x04\x03\x03\x04\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 熛
+ 0x719c: "\x04\x03\x03\x04\x03\x02\x05\x03\x05\x04\x01\x04\x05\x04\x04", // 熜
+ 0x719d: "\x04\x03\x03\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 熝
+ 0x719e: "\x04\x03\x03\x04\x01\x02\x05\x01\x02\x05\x05\x04\x01\x02\x01", // 熞
+ 0x719f: "\x04\x01\x02\x05\x01\x05\x02\x01\x03\x05\x04\x04\x04\x04\x04", // 熟
+ 0x71a0: "\x04\x03\x03\x04\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01", // 熠
+ 0x71a1: "\x04\x03\x03\x04\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 熡
+ 0x71a2: "\x04\x03\x03\x04\x03\x05\x04\x01\x01\x01\x02\x04\x05\x04", // 熢
+ 0x71a3: "\x04\x03\x03\x04\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 熣
+ 0x71a4: "\x04\x03\x03\x04\x05\x04\x01\x05\x04\x01\x04\x01\x04\x03\x01", // 熤
+ 0x71a5: "\x04\x03\x03\x04\x05\x04\x02\x05\x01\x01\x02\x04\x05\x04", // 熥
+ 0x71a6: "\x04\x03\x03\x04\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 熦
+ 0x71a7: "\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04\x04\x03\x03\x04", // 熧
+ 0x71a8: "\x05\x01\x03\x01\x01\x02\x03\x04\x01\x02\x04\x04\x03\x03\x04", // 熨
+ 0x71a9: "\x04\x03\x03\x04\x04\x05\x01\x03\x02\x05\x01\x05\x02\x01\x05", // 熩
+ 0x71aa: "\x04\x03\x03\x04\x03\x01\x02\x03\x04\x03\x05\x04\x03\x05\x04", // 熪
+ 0x71ab: "\x04\x03\x03\x04\x04\x01\x03\x01\x02\x02\x01\x04\x04\x04\x04", // 熫
+ 0x71ac: "\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04\x04\x04\x04\x04", // 熬
+ 0x71ad: "\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x01\x04\x03\x03\x04", // 熭
+ 0x71ae: "\x04\x03\x03\x04\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 熮
+ 0x71af: "\x04\x03\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 熯
+ 0x71b0: "\x04\x03\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 熰
+ 0x71b1: "\x01\x02\x01\x03\x04\x01\x02\x01\x03\x05\x04\x04\x04\x04\x04", // 熱
+ 0x71b2: "\x03\x05\x04\x03\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 熲
+ 0x71b3: "\x04\x03\x03\x04\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 熳
+ 0x71b4: "\x04\x03\x03\x04\x02\x05\x02\x02\x05\x01\x01\x01\x05\x03\x05", // 熴
+ 0x71b5: "\x04\x03\x03\x04\x04\x01\x04\x03\x02\x05\x03\x04\x02\x05\x01", // 熵
+ 0x71b6: "\x04\x03\x03\x04\x02\x05\x01\x01\x01\x02\x02\x01\x01\x01\x05\x04", // 熶
+ 0x71b7: "\x04\x03\x03\x04\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 熷
+ 0x71b8: "\x04\x03\x03\x04\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x01", // 熸
+ 0x71b9: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01\x04\x04\x04\x04", // 熹
+ 0x71ba: "\x04\x03\x03\x04\x01\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01", // 熺
+ 0x71bb: "\x04\x03\x03\x04\x03\x04\x01\x02\x05\x01\x05\x04\x01\x05\x04\x01", // 熻
+ 0x71bc: "\x04\x03\x03\x04\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 熼
+ 0x71bd: "\x04\x03\x03\x04\x05\x01\x01\x02\x03\x02\x01\x01\x05\x05\x02\x01\x02", // 熽
+ 0x71be: "\x04\x03\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05\x03\x04", // 熾
+ 0x71bf: "\x04\x03\x03\x04\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 熿
+ 0x71c0: "\x04\x03\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 燀
+ 0x71c1: "\x04\x03\x03\x04\x01\x02\x02\x01\x01\x02\x02\x01\x01\x02", // 燁
+ 0x71c2: "\x04\x03\x03\x04\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 燂
+ 0x71c3: "\x04\x03\x03\x04\x03\x05\x04\x04\x01\x03\x04\x04\x04\x04\x04\x04", // 燃
+ 0x71c4: "\x03\x05\x03\x02\x01\x05\x01\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 燄
+ 0x71c5: "\x01\x02\x01\x03\x04\x01\x02\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 燅
+ 0x71c6: "\x04\x03\x03\x04\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 燆
+ 0x71c7: "\x04\x03\x03\x04\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x02\x04", // 燇
+ 0x71c8: "\x04\x03\x03\x04\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 燈
+ 0x71c9: "\x04\x03\x03\x04\x04\x01\x02\x05\x01\x05\x02\x01\x03\x01\x03\x04", // 燉
+ 0x71ca: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04\x01\x02\x03\x04", // 燊
+ 0x71cb: "\x04\x03\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 燋
+ 0x71cc: "\x04\x03\x03\x04\x01\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 燌
+ 0x71cd: "\x04\x03\x03\x04\x01\x02\x02\x01\x01\x01\x03\x04\x03\x03\x01\x02", // 燍
+ 0x71ce: "\x04\x03\x03\x04\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 燎
+ 0x71cf: "\x04\x03\x03\x04\x05\x04\x05\x02\x03\x02\x05\x03\x04\x02\x05\x01", // 燏
+ 0x71d0: "\x04\x03\x03\x04\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 燐
+ 0x71d1: "\x04\x03\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 燑
+ 0x71d2: "\x04\x03\x03\x04\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 燒
+ 0x71d3: "\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x03\x04\x04\x03\x03\x04", // 燓
+ 0x71d4: "\x04\x03\x03\x04\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 燔
+ 0x71d5: "\x01\x02\x02\x01\x02\x05\x01\x02\x01\x01\x03\x05\x04\x04\x04\x04", // 燕
+ 0x71d6: "\x04\x03\x03\x04\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04", // 燖
+ 0x71d7: "\x04\x03\x03\x04\x02\x05\x01\x01\x02\x05\x01\x01\x03\x05\x01\x01", // 燗
+ 0x71d8: "\x04\x03\x03\x04\x02\x05\x01\x01\x02\x05\x01\x01\x04\x01\x03\x04", // 燘
+ 0x71d9: "\x04\x04\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03\x04\x03\x03\x04", // 燙
+ 0x71da: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04", // 燚
+ 0x71db: "\x01\x02\x01\x05\x02\x02\x01\x01\x02\x05\x01\x02\x05\x04\x03\x03\x04", // 燛
+ 0x71dc: "\x04\x03\x03\x04\x02\x05\x01\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 燜
+ 0x71dd: "\x04\x03\x03\x04\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x03\x04", // 燝
+ 0x71de: "\x03\x02\x04\x01\x01\x01\x02\x01\x03\x05\x03\x04\x04\x04\x04\x04", // 燞
+ 0x71df: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x02\x05\x01\x02\x05\x01", // 營
+ 0x71e0: "\x04\x03\x03\x04\x03\x02\x05\x04\x03\x01\x02\x03\x04\x01\x03\x04", // 燠
+ 0x71e1: "\x04\x03\x03\x04\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 燡
+ 0x71e2: "\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x04\x03\x03\x04", // 燢
+ 0x71e3: "\x04\x03\x03\x04\x04\x01\x02\x05\x02\x05\x01\x01\x03\x01\x02\x03\x04", // 燣
+ 0x71e4: "\x04\x03\x03\x04\x01\x02\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 燤
+ 0x71e5: "\x04\x03\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 燥
+ 0x71e6: "\x04\x03\x03\x04\x02\x01\x03\x05\x04\x05\x04\x04\x03\x01\x02\x03\x04", // 燦
+ 0x71e7: "\x04\x03\x03\x04\x04\x03\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 燧
+ 0x71e8: "\x04\x03\x03\x04\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01\x05\x03\x04", // 燨
+ 0x71e9: "\x04\x03\x03\x04\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x03\x04", // 燩
+ 0x71ea: "\x04\x03\x03\x04\x01\x02\x02\x03\x05\x03\x03\x04\x04\x05\x04\x04", // 燪
+ 0x71eb: "\x04\x03\x03\x04\x04\x01\x03\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 燫
+ 0x71ec: "\x04\x03\x03\x04\x03\x02\x01\x05\x01\x01\x01\x02\x01\x03\x05\x05\x04", // 燬
+ 0x71ed: "\x04\x03\x03\x04\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 燭
+ 0x71ee: "\x04\x01\x01\x01\x02\x05\x01\x04\x03\x03\x04\x04\x03\x03\x04\x05\x04", // 燮
+ 0x71ef: "\x04\x03\x03\x04\x01\x04\x05\x02\x04\x04\x04\x04\x03\x04\x04\x05\x04", // 燯
+ 0x71f0: "\x04\x03\x03\x04\x03\x04\x04\x03\x04\x05\x04\x05\x04\x04\x03\x05\x04", // 燰
+ 0x71f1: "\x04\x03\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 燱
+ 0x71f2: "\x04\x03\x03\x04\x05\x03\x05\x03\x05\x03\x02\x05\x01\x01\x01\x03\x04", // 燲
+ 0x71f3: "\x04\x03\x03\x04\x02\x05\x01\x01\x05\x03\x02\x05\x01\x04\x04\x04\x04", // 燳
+ 0x71f4: "\x04\x03\x03\x04\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 燴
+ 0x71f5: "\x04\x03\x03\x04\x01\x02\x01\x04\x03\x01\x01\x01\x02\x04\x05\x04", // 燵
+ 0x71f6: "\x04\x03\x03\x04\x02\x05\x01\x02\x02\x01\x01\x03\x01\x01\x05\x03\x04", // 燶
+ 0x71f7: "\x04\x03\x03\x04\x04\x01\x02\x05\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 燷
+ 0x71f8: "\x04\x03\x03\x04\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02", // 燸
+ 0x71f9: "\x01\x03\x05\x03\x03\x03\x04\x01\x03\x05\x03\x03\x03\x04\x04\x03\x03\x04", // 燹
+ 0x71fa: "\x04\x03\x03\x04\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x01\x02\x03\x04", // 燺
+ 0x71fb: "\x04\x03\x03\x04\x03\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 燻
+ 0x71fc: "\x04\x03\x03\x04\x05\x01\x01\x02\x01\x04\x04\x04\x04\x02\x05\x02\x02\x01", // 燼
+ 0x71fd: "\x04\x03\x03\x04\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 燽
+ 0x71fe: "\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04\x04\x04\x04\x04", // 燾
+ 0x71ff: "\x04\x03\x03\x04\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 燿
+ 0x7200: "\x04\x03\x03\x04\x01\x02\x01\x03\x02\x03\x04\x01\x02\x01\x03\x02\x03\x04", // 爀
+ 0x7201: "\x04\x03\x03\x04\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01", // 爁
+ 0x7202: "\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x04\x05\x04\x03\x03\x04", // 爂
+ 0x7203: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x01\x02\x03\x04", // 爃
+ 0x7204: "\x04\x03\x03\x04\x01\x03\x01\x02\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 爄
+ 0x7205: "\x04\x03\x03\x04\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x01", // 爅
+ 0x7206: "\x04\x03\x03\x04\x02\x05\x01\x01\x01\x02\x02\x01\x03\x04\x02\x04\x01\x03\x04", // 爆
+ 0x7207: "\x01\x02\x02\x01\x02\x01\x03\x04\x01\x02\x01\x03\x05\x04\x04\x04\x04\x04", // 爇
+ 0x7208: "\x04\x03\x03\x04\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 爈
+ 0x7209: "\x04\x03\x03\x04\x05\x05\x05\x02\x05\x03\x04\x01\x05\x04\x04\x05\x04\x04\x05", // 爉
+ 0x720a: "\x04\x03\x03\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x04\x04\x04\x04", // 爊
+ 0x720b: "\x04\x03\x03\x04\x03\x01\x02\x05\x04\x03\x01\x02\x01\x01\x05\x03\x04\x04\x04\x04", // 爋
+ 0x720c: "\x04\x03\x03\x04\x04\x01\x03\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 爌
+ 0x720d: "\x04\x03\x03\x04\x03\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x03\x04", // 爍
+ 0x720e: "\x04\x03\x03\x04\x04\x04\x05\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 爎
+ 0x720f: "\x04\x03\x03\x04\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 爏
+ 0x7210: "\x04\x03\x03\x04\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 爐
+ 0x7211: "\x04\x03\x03\x04\x01\x02\x02\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 爑
+ 0x7212: "\x03\x05\x04\x04\x04\x03\x03\x04\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 爒
+ 0x7213: "\x04\x03\x03\x04\x02\x05\x01\x01\x02\x05\x01\x01\x03\x05\x03\x02\x01\x05\x01\x01", // 爓
+ 0x7214: "\x04\x03\x03\x04\x04\x03\x01\x01\x02\x01\x03\x01\x02\x03\x04\x01\x05\x05\x03\x04", // 爔
+ 0x7215: "\x04\x01\x01\x01\x02\x05\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04", // 爕
+ 0x7216: "\x04\x03\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x05\x01\x05\x01\x01\x01", // 爖
+ 0x7217: "\x04\x03\x03\x04\x02\x05\x01\x01\x01\x02\x02\x01\x01\x02\x02\x01\x01\x02", // 爗
+ 0x7218: "\x04\x03\x03\x04\x02\x01\x03\x05\x04\x05\x04\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 爘
+ 0x7219: "\x04\x03\x03\x04\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 爙
+ 0x721a: "\x04\x03\x03\x04\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02", // 爚
+ 0x721b: "\x04\x03\x03\x04\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 爛
+ 0x721c: "\x04\x03\x03\x04\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x02\x02\x01\x01\x01\x05\x04", // 爜
+ 0x721d: "\x04\x03\x03\x04\x03\x04\x04\x03\x02\x05\x02\x02\x01\x05\x01\x01\x05\x04\x01\x02\x04", // 爝
+ 0x721e: "\x04\x03\x03\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 爞
+ 0x721f: "\x04\x03\x03\x04\x01\x02\x02\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 爟
+ 0x7220: "\x04\x03\x03\x04\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 爠
+ 0x7221: "\x04\x03\x03\x04\x01\x02\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 爡
+ 0x7222: "\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x04\x04\x04\x04", // 爢
+ 0x7223: "\x04\x03\x03\x04\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 爣
+ 0x7224: "\x04\x03\x03\x04\x01\x02\x02\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 爤
+ 0x7225: "\x04\x03\x03\x04\x05\x01\x03\x02\x04\x01\x03\x04\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 爥
+ 0x7226: "\x04\x03\x03\x04\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 爦
+ 0x7227: "\x04\x03\x03\x04\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x03\x04\x01", // 爧
+ 0x7228: "\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x04\x05\x01\x02\x03\x04\x01\x02\x03\x04\x01\x03\x04\x04\x03\x03\x04", // 爨
+ 0x7229: "\x04\x03\x03\x04\x01\x02\x03\x04\x03\x01\x01\x02\x05\x02\x01\x02\x03\x04\x04\x05\x03\x04\x04\x04\x04\x04\x05\x02\x01\x05\x03\x03\x03", // 爩
+ 0x722a: "\x03\x03\x02\x04", // 爪
+ 0x722b: "\x03\x04\x04\x03", // 爫
+ 0x722c: "\x03\x03\x02\x04\x05\x02\x01\x05", // 爬
+ 0x722d: "\x03\x04\x04\x03\x05\x01\x01\x02", // 爭
+ 0x722e: "\x03\x03\x02\x04\x03\x05\x05\x01\x05", // 爮
+ 0x722f: "\x03\x04\x04\x03\x02\x05\x02\x01\x01", // 爯
+ 0x7230: "\x03\x04\x04\x03\x01\x01\x03\x05\x04", // 爰
+ 0x7231: "\x03\x04\x04\x03\x04\x05\x01\x03\x05\x04", // 爱
+ 0x7232: "\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04", // 爲
+ 0x7233: "\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04\x05\x02", // 爳
+ 0x7234: "\x02\x05\x01\x02\x05\x01\x01\x05\x03\x04\x01\x03\x03\x02\x04", // 爴
+ 0x7235: "\x03\x04\x04\x03\x02\x05\x02\x02\x01\x05\x01\x01\x05\x04\x01\x02\x04", // 爵
+ 0x7236: "\x03\x04\x03\x04", // 父
+ 0x7237: "\x03\x04\x03\x04\x05\x02", // 爷
+ 0x7238: "\x03\x04\x03\x04\x05\x02\x01\x05", // 爸
+ 0x7239: "\x03\x04\x03\x04\x03\x05\x04\x03\x05\x04", // 爹
+ 0x723a: "\x03\x04\x03\x04\x01\x02\x02\x01\x01\x01\x05\x02", // 爺
+ 0x723b: "\x03\x04\x03\x04", // 爻
+ 0x723c: "\x03\x04\x03\x04\x02\x05\x01\x01\x01", // 爼
+ 0x723d: "\x01\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04", // 爽
+ 0x723e: "\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 爾
+ 0x723f: "\x05\x02\x01\x03", // 爿
+ 0x7240: "\x05\x02\x01\x03\x01\x02\x03\x04", // 牀
+ 0x7241: "\x05\x02\x01\x03\x01\x02\x05\x01\x02", // 牁
+ 0x7242: "\x05\x02\x01\x03\x04\x03\x01\x01\x01\x02", // 牂
+ 0x7243: "\x05\x02\x01\x03\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 牃
+ 0x7244: "\x05\x02\x01\x03\x03\x04\x04\x05\x01\x01\x03\x02\x05\x01", // 牄
+ 0x7245: "\x05\x02\x01\x03\x04\x01\x03\x05\x01\x01\x02\x05\x01\x01\x02", // 牅
+ 0x7246: "\x05\x02\x01\x03\x01\x02\x03\x04\x03\x04\x01\x02\x05\x02\x05\x01\x01", // 牆
+ 0x7247: "\x03\x02\x01\x05", // 片
+ 0x7248: "\x03\x02\x01\x05\x03\x03\x05\x04", // 版
+ 0x7249: "\x03\x02\x01\x05\x04\x03\x01\x01\x02", // 牉
+ 0x724a: "\x03\x02\x01\x05\x05\x03\x02\x05\x01", // 牊
+ 0x724b: "\x03\x02\x01\x05\x01\x05\x03\x04\x01\x05\x03\x04", // 牋
+ 0x724c: "\x03\x02\x01\x05\x03\x02\x05\x01\x01\x03\x01\x02", // 牌
+ 0x724d: "\x03\x02\x01\x05\x01\x02\x05\x04\x04\x01\x03\x04", // 牍
+ 0x724e: "\x03\x02\x01\x05\x03\x05\x03\x03\x04\x04\x05\x04\x04", // 牎
+ 0x724f: "\x03\x02\x01\x05\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 牏
+ 0x7250: "\x03\x02\x01\x05\x03\x01\x02\x03\x02\x01\x05\x01\x01", // 牐
+ 0x7251: "\x03\x02\x01\x05\x04\x05\x01\x03\x02\x05\x01\x02\x02", // 牑
+ 0x7252: "\x03\x02\x01\x05\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 牒
+ 0x7253: "\x03\x02\x01\x05\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03", // 牓
+ 0x7254: "\x03\x02\x01\x05\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 牔
+ 0x7255: "\x03\x02\x01\x05\x03\x02\x05\x03\x05\x04\x01\x04\x05\x04\x04", // 牕
+ 0x7256: "\x03\x02\x01\x05\x04\x05\x01\x03\x01\x02\x05\x01\x01\x02\x04", // 牖
+ 0x7257: "\x03\x02\x01\x05\x04\x01\x03\x05\x01\x01\x02\x05\x01\x01\x02", // 牗
+ 0x7258: "\x03\x02\x01\x05\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 牘
+ 0x7259: "\x01\x05\x02\x03", // 牙
+ 0x725a: "\x02\x04\x03\x04\x05\x02\x05\x01\x01\x05\x02\x03", // 牚
+ 0x725b: "\x03\x01\x01\x02", // 牛
+ 0x725c: "\x03\x01\x02\x01", // 牜
+ 0x725d: "\x03\x01\x02\x01\x03\x05", // 牝
+ 0x725e: "\x03\x01\x02\x01\x05\x03", // 牞
+ 0x725f: "\x05\x04\x03\x01\x01\x02", // 牟
+ 0x7260: "\x03\x01\x02\x01\x05\x02\x05", // 牠
+ 0x7261: "\x03\x01\x02\x01\x01\x02\x01", // 牡
+ 0x7262: "\x04\x04\x05\x03\x01\x01\x02", // 牢
+ 0x7263: "\x03\x01\x02\x01\x05\x03\x04", // 牣
+ 0x7264: "\x03\x01\x02\x01\x04\x01\x05", // 牤
+ 0x7265: "\x03\x01\x02\x01\x04\x01\x05\x03", // 牥
+ 0x7266: "\x03\x01\x02\x01\x03\x01\x01\x05", // 牦
+ 0x7267: "\x03\x01\x02\x01\x03\x01\x03\x04", // 牧
+ 0x7268: "\x03\x01\x02\x01\x04\x01\x03\x05", // 牨
+ 0x7269: "\x03\x01\x02\x01\x03\x05\x03\x03", // 物
+ 0x726a: "\x03\x01\x02\x01\x03\x01\x01\x02", // 牪
+ 0x726b: "\x03\x01\x02\x01\x01\x05\x03\x04", // 牫
+ 0x726c: "\x03\x01\x02\x01\x03\x05\x02\x03", // 牬
+ 0x726d: "\x03\x01\x02\x01\x02\x05\x03\x05\x01", // 牭
+ 0x726e: "\x03\x02\x01\x05\x04\x03\x01\x01\x02", // 牮
+ 0x726f: "\x03\x01\x02\x01\x01\x02\x02\x05\x01", // 牯
+ 0x7270: "\x03\x01\x02\x01\x02\x05\x01\x02\x01", // 牰
+ 0x7271: "\x03\x01\x02\x01\x01\x02\x05\x01\x02", // 牱
+ 0x7272: "\x03\x01\x02\x01\x03\x01\x01\x02\x01", // 牲
+ 0x7273: "\x03\x01\x02\x01\x05\x05\x04\x01\x04", // 牳
+ 0x7274: "\x03\x01\x02\x01\x03\x05\x01\x05\x04", // 牴
+ 0x7275: "\x01\x03\x04\x04\x05\x03\x01\x01\x02", // 牵
+ 0x7276: "\x04\x03\x01\x01\x03\x04\x03\x01\x01\x02", // 牶
+ 0x7277: "\x03\x01\x02\x01\x03\x04\x01\x01\x02\x01", // 牷
+ 0x7278: "\x03\x01\x02\x01\x04\x04\x05\x05\x02\x01", // 牸
+ 0x7279: "\x03\x01\x02\x01\x01\x02\x01\x01\x02\x04", // 特
+ 0x727a: "\x03\x01\x02\x01\x01\x02\x05\x03\x05\x01", // 牺
+ 0x727b: "\x03\x01\x02\x01\x01\x03\x05\x03\x03\x03\x04", // 牻
+ 0x727c: "\x03\x01\x02\x01\x01\x05\x05\x05\x01\x02\x01", // 牼
+ 0x727d: "\x04\x01\x05\x05\x04\x04\x05\x03\x01\x01\x02", // 牽
+ 0x727e: "\x03\x01\x02\x01\x01\x02\x05\x01\x02\x05\x01", // 牾
+ 0x727f: "\x03\x01\x02\x01\x03\x01\x02\x01\x02\x05\x01", // 牿
+ 0x7280: "\x05\x01\x03\x02\x04\x01\x03\x04\x03\x01\x01\x02", // 犀
+ 0x7281: "\x03\x01\x02\x03\x04\x02\x02\x03\x01\x01\x02", // 犁
+ 0x7282: "\x03\x01\x02\x03\x04\x03\x05\x03\x03\x01\x01\x02", // 犂
+ 0x7283: "\x03\x01\x02\x01\x04\x01\x04\x03\x01\x02\x05\x01", // 犃
+ 0x7284: "\x03\x01\x02\x01\x01\x03\x04\x01\x02\x05\x01\x02", // 犄
+ 0x7285: "\x03\x01\x02\x01\x02\x05\x04\x03\x01\x02\x05\x02", // 犅
+ 0x7286: "\x03\x01\x02\x01\x01\x02\x02\x05\x01\x01\x01\x01", // 犆
+ 0x7287: "\x03\x01\x01\x02\x03\x01\x02\x01\x03\x01\x01\x02", // 犇
+ 0x7288: "\x03\x01\x02\x01\x04\x03\x01\x01\x03\x04\x05\x05", // 犈
+ 0x7289: "\x03\x01\x02\x01\x04\x01\x02\x05\x01\x05\x02\x01", // 犉
+ 0x728a: "\x03\x01\x02\x01\x01\x02\x05\x04\x04\x01\x03\x04", // 犊
+ 0x728b: "\x03\x01\x02\x01\x02\x05\x01\x01\x01\x01\x03\x04", // 犋
+ 0x728c: "\x03\x01\x02\x01\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 犌
+ 0x728d: "\x03\x01\x02\x01\x05\x01\x01\x01\x01\x02\x05\x04", // 犍
+ 0x728e: "\x01\x02\x01\x01\x02\x01\x01\x02\x04\x03\x01\x01\x02", // 犎
+ 0x728f: "\x03\x01\x02\x01\x04\x05\x01\x03\x02\x05\x01\x02\x02", // 犏
+ 0x7290: "\x03\x01\x02\x01\x03\x01\x02\x03\x04\x04\x04\x01\x02", // 犐
+ 0x7291: "\x03\x01\x02\x01\x02\x05\x01\x01\x01\x01\x03\x04\x04", // 犑
+ 0x7292: "\x03\x01\x02\x01\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 犒
+ 0x7293: "\x03\x01\x02\x01\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03", // 犓
+ 0x7294: "\x03\x01\x02\x01\x03\x01\x01\x05\x04\x03\x01\x02\x03\x04", // 犔
+ 0x7295: "\x03\x01\x02\x01\x01\x02\x02\x01\x03\x02\x05\x01\x01\x02", // 犕
+ 0x7296: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x03\x01\x01\x02", // 犖
+ 0x7297: "\x03\x01\x02\x01\x04\x04\x05\x01\x01\x01\x02\x02\x05\x01", // 犗
+ 0x7298: "\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x03\x01\x01\x02", // 犘
+ 0x7299: "\x03\x01\x02\x01\x05\x04\x05\x04\x05\x04\x03\x04\x04\x04\x04", // 犙
+ 0x729a: "\x05\x01\x03\x01\x01\x02\x03\x04\x01\x02\x04\x03\x01\x01\x02", // 犚
+ 0x729b: "\x01\x01\x02\x03\x04\x03\x01\x03\x04\x01\x03\x03\x01\x01\x02", // 犛
+ 0x729c: "\x03\x01\x02\x01\x03\x01\x02\x05\x01\x05\x02\x01\x03\x01\x03\x04", // 犜
+ 0x729d: "\x03\x01\x02\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 犝
+ 0x729e: "\x03\x01\x02\x01\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 犞
+ 0x729f: "\x05\x01\x05\x02\x05\x01\x02\x05\x01\x02\x01\x04\x03\x01\x01\x02", // 犟
+ 0x72a0: "\x03\x01\x02\x01\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01\x05\x03\x04", // 犠
+ 0x72a1: "\x03\x01\x02\x01\x01\x03\x01\x02\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 犡
+ 0x72a2: "\x03\x01\x02\x01\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 犢
+ 0x72a3: "\x03\x01\x02\x01\x05\x05\x05\x02\x05\x03\x04\x01\x05\x04\x04\x05\x04\x04\x05", // 犣
+ 0x72a4: "\x03\x01\x02\x01\x02\x05\x02\x02\x01\x05\x04\x02\x05\x01\x01\x03\x05\x03\x05", // 犤
+ 0x72a5: "\x03\x01\x02\x01\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x04\x04\x04\x04", // 犥
+ 0x72a6: "\x03\x01\x02\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x04\x02\x04\x01\x03\x04", // 犦
+ 0x72a7: "\x03\x01\x02\x01\x04\x03\x01\x01\x02\x01\x03\x01\x02\x03\x04\x01\x05\x05\x03\x04", // 犧
+ 0x72a8: "\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x01\x01\x02", // 犨
+ 0x72a9: "\x03\x01\x02\x03\x04\x05\x03\x01\x03\x02\x05\x01\x01\x03\x05\x05\x04\x03\x01\x01\x02", // 犩
+ 0x72aa: "\x03\x01\x02\x01\x04\x03\x01\x03\x02\x05\x01\x01\x01\x02\x01\x02\x01\x05\x01\x05\x03\x04\x03\x05\x04", // 犪
+ 0x72ab: "\x03\x02\x04\x01\x01\x01\x02\x01\x04\x01\x01\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x01\x01\x02", // 犫
+ 0x72ac: "\x01\x03\x04\x04", // 犬
+ 0x72ad: "\x03\x05\x03", // 犭
+ 0x72ae: "\x01\x03\x05\x04\x04", // 犮
+ 0x72af: "\x03\x05\x03\x05\x05", // 犯
+ 0x72b0: "\x03\x05\x03\x03\x05", // 犰
+ 0x72b1: "\x03\x05\x03\x03\x05\x04", // 犱
+ 0x72b2: "\x03\x05\x03\x01\x02\x03", // 犲
+ 0x72b3: "\x03\x05\x03\x03\x05\x04", // 犳
+ 0x72b4: "\x03\x05\x03\x01\x01\x02", // 犴
+ 0x72b5: "\x03\x05\x03\x03\x01\x05", // 犵
+ 0x72b6: "\x04\x01\x02\x01\x03\x04\x04", // 状
+ 0x72b7: "\x03\x05\x03\x04\x01\x03", // 犷
+ 0x72b8: "\x03\x05\x03\x05\x05\x01", // 犸
+ 0x72b9: "\x03\x05\x03\x01\x03\x05\x04", // 犹
+ 0x72ba: "\x03\x05\x03\x04\x01\x03\x05", // 犺
+ 0x72bb: "\x03\x05\x03\x01\x02\x05\x02", // 犻
+ 0x72bc: "\x03\x05\x03\x05\x02\x01\x05", // 犼
+ 0x72bd: "\x03\x05\x03\x01\x05\x02\x03", // 犽
+ 0x72be: "\x03\x05\x03\x01\x03\x04\x04", // 犾
+ 0x72bf: "\x03\x05\x03\x04\x01\x02\x04", // 犿
+ 0x72c0: "\x05\x02\x01\x03\x01\x03\x04\x04", // 狀
+ 0x72c1: "\x03\x05\x03\x05\x04\x03\x05", // 狁
+ 0x72c2: "\x03\x05\x03\x01\x01\x02\x01", // 狂
+ 0x72c3: "\x03\x05\x03\x05\x02\x01\x01", // 狃
+ 0x72c4: "\x03\x05\x03\x04\x03\x03\x04", // 狄
+ 0x72c5: "\x03\x05\x03\x03\x01\x02\x01", // 狅
+ 0x72c6: "\x03\x05\x03\x02\x05\x01\x02", // 狆
+ 0x72c7: "\x03\x05\x03\x01\x02\x03\x04", // 狇
+ 0x72c8: "\x03\x05\x03\x02\x05\x03\x04", // 狈
+ 0x72c9: "\x03\x05\x03\x01\x03\x02\x04\x01", // 狉
+ 0x72ca: "\x02\x05\x01\x01\x01\x01\x03\x04\x04", // 狊
+ 0x72cb: "\x03\x05\x03\x01\x01\x02\x03\x04", // 狋
+ 0x72cc: "\x03\x04\x03\x03\x01\x01\x02\x01", // 狌
+ 0x72cd: "\x03\x05\x03\x03\x05\x05\x01\x05", // 狍
+ 0x72ce: "\x03\x05\x03\x02\x05\x01\x01\x02", // 狎
+ 0x72cf: "\x03\x05\x03\x03\x01\x05\x02\x05", // 狏
+ 0x72d0: "\x03\x05\x03\x03\x03\x05\x04\x04", // 狐
+ 0x72d1: "\x03\x05\x03\x03\x04\x04\x05\x04", // 狑
+ 0x72d2: "\x03\x05\x03\x05\x01\x05\x03\x02", // 狒
+ 0x72d3: "\x03\x05\x03\x05\x03\x02\x05\x04", // 狓
+ 0x72d4: "\x03\x05\x03\x05\x01\x03\x03\x05", // 狔
+ 0x72d5: "\x03\x05\x03\x05\x05\x04\x05\x03", // 狕
+ 0x72d6: "\x03\x05\x03\x04\x04\x05\x03\x04", // 狖
+ 0x72d7: "\x03\x05\x03\x03\x05\x02\x05\x01", // 狗
+ 0x72d8: "\x03\x05\x03\x01\x05\x05\x03\x04", // 狘
+ 0x72d9: "\x03\x05\x03\x02\x05\x01\x01\x01", // 狙
+ 0x72da: "\x03\x05\x03\x02\x05\x01\x01\x01", // 狚
+ 0x72db: "\x03\x05\x03\x03\x02\x05\x01\x01", // 狛
+ 0x72dc: "\x03\x05\x03\x01\x02\x02\x05\x01", // 狜
+ 0x72dd: "\x03\x05\x03\x03\x05\x02\x03\x04", // 狝
+ 0x72de: "\x03\x05\x03\x04\x04\x05\x01\x02", // 狞
+ 0x72df: "\x03\x05\x03\x01\x02\x05\x01\x01\x01", // 狟
+ 0x72e0: "\x03\x05\x03\x05\x01\x01\x05\x03\x04", // 狠
+ 0x72e1: "\x03\x05\x03\x04\x01\x03\x04\x03\x04", // 狡
+ 0x72e2: "\x03\x05\x03\x03\x05\x04\x02\x05\x01", // 狢
+ 0x72e3: "\x03\x05\x03\x03\x04\x01\x05\x03\x04", // 狣
+ 0x72e4: "\x03\x05\x03\x01\x02\x01\x02\x05\x01", // 狤
+ 0x72e5: "\x03\x05\x03\x03\x05\x02\x05\x01\x01", // 狥
+ 0x72e6: "\x03\x05\x03\x02\x05\x01\x01\x02\x02", // 狦
+ 0x72e7: "\x03\x05\x03\x03\x01\x02\x02\x05\x01", // 狧
+ 0x72e8: "\x03\x05\x03\x01\x01\x03\x05\x03\x04", // 狨
+ 0x72e9: "\x03\x05\x03\x04\x04\x05\x01\x02\x04", // 狩
+ 0x72ea: "\x03\x05\x03\x02\x05\x01\x02\x05\x01", // 狪
+ 0x72eb: "\x03\x05\x03\x01\x02\x01\x03\x03\x05", // 狫
+ 0x72ec: "\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 独
+ 0x72ed: "\x03\x05\x03\x01\x04\x03\x01\x03\x04", // 狭
+ 0x72ee: "\x03\x05\x03\x02\x03\x01\x02\x05\x02", // 狮
+ 0x72ef: "\x03\x05\x03\x03\x04\x01\x01\x05\x04", // 狯
+ 0x72f0: "\x03\x05\x03\x03\x05\x05\x01\x01\x02", // 狰
+ 0x72f1: "\x03\x05\x03\x04\x05\x01\x03\x04\x04", // 狱
+ 0x72f2: "\x03\x05\x03\x05\x02\x01\x02\x03\x04", // 狲
+ 0x72f3: "\x03\x05\x03\x03\x04\x01\x01\x02\x03\x04", // 狳
+ 0x72f4: "\x03\x05\x03\x01\x05\x03\x05\x01\x02\x01", // 狴
+ 0x72f5: "\x03\x05\x03\x01\x03\x05\x03\x03\x03\x04", // 狵
+ 0x72f6: "\x03\x05\x03\x03\x04\x01\x03\x02\x05\x02", // 狶
+ 0x72f7: "\x03\x05\x03\x02\x05\x01\x02\x05\x01\x01", // 狷
+ 0x72f8: "\x03\x05\x03\x02\x05\x01\x01\x02\x01\x01", // 狸
+ 0x72f9: "\x03\x05\x03\x01\x03\x04\x03\x04\x03\x04", // 狹
+ 0x72fa: "\x03\x05\x03\x04\x01\x01\x01\x02\x05\x01", // 狺
+ 0x72fb: "\x03\x05\x03\x05\x04\x03\x04\x03\x05\x04", // 狻
+ 0x72fc: "\x03\x05\x03\x04\x05\x01\x01\x05\x03\x04", // 狼
+ 0x72fd: "\x03\x05\x03\x02\x05\x01\x01\x01\x03\x04", // 狽
+ 0x72fe: "\x03\x05\x03\x01\x02\x01\x03\x03\x01\x02", // 狾
+ 0x72ff: "\x03\x05\x03\x03\x02\x01\x05\x05\x04", // 狿
+ 0x7300: "\x03\x05\x03\x04\x04\x01\x02\x03\x04\x03", // 猀
+ 0x7301: "\x03\x05\x03\x03\x01\x02\x03\x04\x02\x02", // 猁
+ 0x7302: "\x03\x05\x03\x02\x05\x01\x01\x01\x01\x02", // 猂
+ 0x7303: "\x03\x05\x03\x03\x04\x01\x04\x04\x03\x01", // 猃
+ 0x7304: "\x03\x05\x03\x04\x01\x02\x05\x01\x02\x03\x04", // 猄
+ 0x7305: "\x03\x05\x03\x02\x01\x01\x01\x02\x01\x01\x01", // 猅
+ 0x7306: "\x02\x01\x01\x01\x02\x01\x01\x01\x01\x03\x04\x04", // 猆
+ 0x7307: "\x03\x05\x03\x02\x01\x05\x03\x01\x05\x03\x05", // 猇
+ 0x7308: "\x03\x05\x03\x03\x02\x05\x01\x01\x03\x01\x02", // 猈
+ 0x7309: "\x03\x05\x03\x01\x02\x02\x01\x01\x01\x03\x04", // 猉
+ 0x730a: "\x03\x05\x03\x03\x02\x01\x05\x01\x01\x03\x05", // 猊
+ 0x730b: "\x01\x03\x04\x04\x01\x03\x04\x04\x01\x03\x04\x04", // 猋
+ 0x730c: "\x01\x03\x04\x03\x04\x02\x03\x04\x01\x03\x04\x04", // 猌
+ 0x730d: "\x03\x05\x03\x01\x03\x04\x03\x04\x02\x03\x04", // 猍
+ 0x730e: "\x03\x05\x03\x01\x02\x02\x01\x02\x05\x01\x01", // 猎
+ 0x730f: "\x03\x05\x03\x04\x05\x01\x03\x02\x05\x01\x01", // 猏
+ 0x7310: "\x03\x05\x03\x04\x03\x01\x01\x01\x03\x05", // 猐
+ 0x7311: "\x03\x05\x03\x02\x05\x01\x01\x01\x05\x03\x05", // 猑
+ 0x7312: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x04\x04", // 猒
+ 0x7313: "\x03\x05\x03\x02\x05\x01\x01\x01\x02\x03\x04", // 猓
+ 0x7314: "\x03\x05\x03\x04\x04\x05\x01\x01\x02\x03\x04", // 猔
+ 0x7315: "\x03\x05\x03\x05\x01\x05\x03\x05\x02\x03\x04", // 猕
+ 0x7316: "\x03\x05\x03\x02\x05\x01\x01\x02\x05\x01\x01", // 猖
+ 0x7317: "\x03\x05\x03\x01\x03\x04\x01\x02\x05\x01\x02", // 猗
+ 0x7318: "\x03\x05\x03\x03\x01\x01\x02\x05\x02\x02\x02", // 猘
+ 0x7319: "\x03\x05\x03\x03\x04\x04\x03\x05\x01\x01\x02", // 猙
+ 0x731a: "\x03\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 猚
+ 0x731b: "\x03\x05\x03\x05\x02\x01\x02\x05\x02\x02\x01", // 猛
+ 0x731c: "\x03\x05\x03\x01\x01\x02\x01\x02\x05\x01\x01", // 猜
+ 0x731d: "\x03\x05\x03\x04\x01\x03\x04\x03\x04\x01\x02", // 猝
+ 0x731e: "\x03\x05\x03\x03\x04\x01\x01\x02\x02\x05\x01", // 猞
+ 0x731f: "\x03\x05\x03\x04\x04\x03\x03\x05\x01\x01\x02", // 猟
+ 0x7320: "\x03\x05\x03\x02\x05\x01\x02\x02\x01\x03\x04", // 猠
+ 0x7321: "\x03\x05\x03\x02\x05\x02\x02\x01\x03\x05\x04", // 猡
+ 0x7322: "\x03\x05\x03\x01\x02\x02\x05\x01\x03\x05\x01\x01", // 猢
+ 0x7323: "\x03\x05\x03\x03\x04\x05\x02\x03\x04\x03\x05\x04", // 猣
+ 0x7324: "\x03\x05\x03\x05\x04\x03\x03\x04\x01\x01\x03\x04", // 猤
+ 0x7325: "\x03\x05\x03\x02\x05\x01\x02\x01\x01\x05\x03\x04", // 猥
+ 0x7326: "\x03\x05\x03\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 猦
+ 0x7327: "\x03\x05\x03\x02\x05\x05\x02\x05\x02\x05\x01", // 猧
+ 0x7328: "\x03\x05\x03\x03\x04\x04\x03\x01\x01\x03\x05\x04", // 猨
+ 0x7329: "\x03\x05\x03\x02\x05\x01\x01\x03\x01\x01\x02\x01", // 猩
+ 0x732a: "\x03\x05\x03\x01\x02\x01\x03\x02\x05\x01\x01", // 猪
+ 0x732b: "\x03\x05\x03\x01\x02\x02\x02\x05\x01\x02\x01", // 猫
+ 0x732c: "\x03\x05\x03\x02\x05\x01\x02\x01\x02\x05\x01\x01", // 猬
+ 0x732d: "\x03\x05\x03\x05\x05\x01\x03\x05\x03\x03\x03\x04", // 猭
+ 0x732e: "\x01\x02\x02\x05\x04\x03\x01\x01\x02\x01\x03\x04\x04", // 献
+ 0x732f: "\x03\x05\x03\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 猯
+ 0x7330: "\x03\x05\x03\x01\x01\x01\x02\x05\x03\x01\x03\x04", // 猰
+ 0x7331: "\x03\x05\x03\x05\x04\x05\x02\x03\x01\x02\x03\x04", // 猱
+ 0x7332: "\x03\x05\x03\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 猲
+ 0x7333: "\x03\x05\x03\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 猳
+ 0x7334: "\x03\x05\x03\x03\x02\x05\x01\x03\x01\x01\x03\x04", // 猴
+ 0x7335: "\x03\x05\x03\x04\x05\x01\x03\x02\x05\x01\x02\x02", // 猵
+ 0x7336: "\x03\x05\x03\x04\x03\x01\x02\x05\x03\x05\x01\x01", // 猶
+ 0x7337: "\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x03\x04\x04", // 猷
+ 0x7338: "\x03\x05\x03\x05\x02\x01\x03\x02\x05\x01\x01\x01", // 猸
+ 0x7339: "\x03\x05\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 猹
+ 0x733a: "\x03\x05\x03\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02", // 猺
+ 0x733b: "\x03\x05\x03\x05\x02\x01\x03\x05\x05\x04\x02\x03\x04", // 猻
+ 0x733c: "\x03\x05\x03\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 猼
+ 0x733d: "\x03\x05\x03\x04\x05\x02\x05\x01\x01\x04\x01\x03\x04", // 猽
+ 0x733e: "\x03\x05\x03\x02\x05\x05\x04\x05\x02\x05\x01\x01", // 猾
+ 0x733f: "\x03\x05\x03\x01\x02\x01\x02\x05\x01\x03\x05\x03\x04", // 猿
+ 0x7340: "\x03\x05\x03\x03\x02\x01\x05\x01\x01\x02\x05\x04", // 獀
+ 0x7341: "\x03\x05\x03\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 獁
+ 0x7342: "\x03\x05\x03\x01\x03\x03\x02\x05\x01\x01\x02\x03\x04", // 獂
+ 0x7343: "\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01\x01\x03\x04\x04", // 獃
+ 0x7344: "\x03\x05\x03\x04\x01\x01\x01\x02\x05\x01\x01\x03\x04\x04", // 獄
+ 0x7345: "\x03\x05\x03\x03\x02\x05\x01\x05\x01\x01\x02\x05\x02", // 獅
+ 0x7346: "\x03\x05\x03\x03\x02\x05\x01\x01\x01\x03\x04\x01\x02", // 獆
+ 0x7347: "\x03\x05\x03\x04\x03\x01\x01\x01\x03\x05\x05\x04", // 獇
+ 0x7348: "\x03\x05\x03\x04\x03\x01\x03\x04\x02\x05\x02\x02\x01", // 獈
+ 0x7349: "\x03\x05\x03\x01\x01\x01\x03\x04\x03\x01\x02\x03\x04", // 獉
+ 0x734a: "\x03\x05\x03\x03\x04\x04\x05\x01\x01\x03\x02\x05\x01", // 獊
+ 0x734b: "\x03\x05\x03\x03\x02\x05\x01\x01\x01\x04\x01\x03\x04\x01\x02", // 獋
+ 0x734c: "\x03\x05\x03\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 獌
+ 0x734d: "\x03\x05\x03\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05", // 獍
+ 0x734e: "\x05\x02\x01\x03\x03\x05\x04\x04\x01\x02\x04\x01\x03\x04\x04", // 獎
+ 0x734f: "\x03\x05\x03\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 獏
+ 0x7350: "\x03\x05\x03\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02", // 獐
+ 0x7351: "\x03\x05\x03\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02", // 獑
+ 0x7352: "\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04\x01\x03\x04\x04", // 獒
+ 0x7353: "\x03\x05\x03\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04", // 獓
+ 0x7354: "\x03\x05\x03\x03\x02\x05\x01\x01\x04\x01\x03\x04\x01\x02", // 獔
+ 0x7355: "\x03\x05\x03\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 獕
+ 0x7356: "\x03\x05\x03\x01\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 獖
+ 0x7357: "\x03\x05\x03\x01\x03\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04", // 獗
+ 0x7358: "\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04\x01\x03\x04\x04", // 獘
+ 0x7359: "\x03\x05\x03\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04", // 獙
+ 0x735a: "\x03\x05\x03\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 獚
+ 0x735b: "\x03\x05\x03\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 獛
+ 0x735c: "\x03\x05\x03\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 獜
+ 0x735d: "\x03\x05\x03\x05\x04\x05\x02\x03\x02\x05\x03\x04\x02\x05\x01", // 獝
+ 0x735e: "\x03\x05\x03\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 獞
+ 0x735f: "\x03\x05\x03\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 獟
+ 0x7360: "\x03\x05\x03\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 獠
+ 0x7361: "\x03\x05\x03\x03\x02\x01\x05\x01\x01\x05\x04\x04\x04\x04", // 獡
+ 0x7362: "\x03\x05\x03\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 獢
+ 0x7363: "\x04\x04\x03\x02\x05\x01\x02\x01\x01\x02\x05\x01\x01\x03\x04\x04", // 獣
+ 0x7364: "\x03\x05\x03\x04\x01\x02\x05\x01\x05\x02\x01\x03\x01\x03\x04", // 獤
+ 0x7365: "\x03\x05\x03\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x03\x04", // 獥
+ 0x7366: "\x03\x05\x03\x01\x02\x02\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 獦
+ 0x7367: "\x03\x05\x03\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 獧
+ 0x7368: "\x03\x05\x03\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 獨
+ 0x7369: "\x03\x05\x03\x02\x01\x02\x01\x01\x03\x01\x02\x03\x03\x05\x03\x04", // 獩
+ 0x736a: "\x03\x05\x03\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 獪
+ 0x736b: "\x03\x05\x03\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 獫
+ 0x736c: "\x03\x05\x03\x03\x05\x03\x05\x01\x01\x02\x05\x03\x03\x01\x01\x02", // 獬
+ 0x736d: "\x03\x05\x03\x01\x02\x05\x01\x02\x03\x04\x03\x05\x02\x05\x03\x04", // 獭
+ 0x736e: "\x03\x05\x03\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 獮
+ 0x736f: "\x03\x05\x03\x03\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 獯
+ 0x7370: "\x03\x05\x03\x04\x04\x05\x04\x05\x04\x04\x02\x05\x02\x02\x01\x01\x02", // 獰
+ 0x7371: "\x03\x05\x03\x04\x04\x05\x01\x02\x03\x03\x02\x05\x01\x01\x01\x03\x04", // 獱
+ 0x7372: "\x03\x05\x03\x01\x02\x02\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 獲
+ 0x7373: "\x03\x05\x03\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02", // 獳
+ 0x7374: "\x03\x05\x03\x01\x02\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 獴
+ 0x7375: "\x03\x05\x03\x05\x05\x05\x02\x05\x03\x04\x01\x05\x04\x04\x05\x04\x04\x05", // 獵
+ 0x7376: "\x03\x05\x03\x01\x03\x02\x05\x01\x01\x04\x05\x04\x05\x04\x04\x03\x05\x04", // 獶
+ 0x7377: "\x03\x05\x03\x04\x01\x03\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 獷
+ 0x7378: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01\x01\x02\x05\x01\x01\x03\x04\x04", // 獸
+ 0x7379: "\x03\x05\x03\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 獹
+ 0x737a: "\x03\x05\x03\x01\x02\x05\x01\x02\x03\x04\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 獺
+ 0x737b: "\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x03\x04\x04", // 獻
+ 0x737c: "\x03\x05\x03\x05\x01\x05\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 獼
+ 0x737d: "\x03\x05\x03\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 獽
+ 0x737e: "\x03\x05\x03\x01\x02\x02\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 獾
+ 0x737f: "\x03\x05\x03\x01\x03\x02\x05\x01\x01\x01\x02\x01\x02\x01\x05\x01\x05\x03\x04\x03\x05\x04", // 獿
+ 0x7380: "\x03\x05\x03\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 玀
+ 0x7381: "\x03\x05\x03\x02\x05\x01\x02\x05\x01\x01\x03\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 玁
+ 0x7382: "\x03\x05\x03\x01\x02\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02", // 玂
+ 0x7383: "\x03\x05\x03\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 玃
+ 0x7384: "\x04\x01\x05\x05\x04", // 玄
+ 0x7385: "\x04\x01\x05\x05\x04\x02\x03\x04\x03", // 玅
+ 0x7386: "\x04\x01\x05\x05\x04\x04\x01\x05\x05\x04", // 玆
+ 0x7387: "\x04\x01\x05\x05\x04\x04\x01\x03\x04\x01\x02", // 率
+ 0x7388: "\x04\x01\x05\x05\x04\x03\x01\x03\x05\x03\x04", // 玈
+ 0x7389: "\x01\x01\x02\x01\x04", // 玉
+ 0x738a: "\x01\x01\x02\x01\x04", // 玊
+ 0x738b: "\x01\x01\x02\x01", // 王
+ 0x738c: "\x01\x01\x02\x01\x05", // 玌
+ 0x738d: "\x03\x01\x01\x02\x01", // 玍
+ 0x738e: "\x01\x01\x02\x01\x01\x02", // 玎
+ 0x738f: "\x01\x01\x02\x01\x05\x03", // 玏
+ 0x7390: "\x01\x01\x02\x01\x03\x04", // 玐
+ 0x7391: "\x01\x01\x02\x01\x03\x05", // 玑
+ 0x7392: "\x01\x01\x02\x01\x01\x02\x01", // 玒
+ 0x7393: "\x01\x01\x02\x01\x03\x05\x04", // 玓
+ 0x7394: "\x01\x01\x02\x01\x03\x02\x02", // 玔
+ 0x7395: "\x01\x01\x02\x01\x01\x01\x02", // 玕
+ 0x7396: "\x01\x01\x02\x01\x03\x05\x04", // 玖
+ 0x7397: "\x01\x01\x02\x01\x01\x01\x02", // 玗
+ 0x7398: "\x01\x01\x02\x01\x05\x01\x05", // 玘
+ 0x7399: "\x01\x01\x02\x01\x01\x05\x01", // 玙
+ 0x739a: "\x01\x01\x02\x01\x05\x03\x03", // 玚
+ 0x739b: "\x01\x01\x02\x01\x05\x05\x01", // 玛
+ 0x739c: "\x01\x01\x02\x01\x03\x04\x05\x04", // 玜
+ 0x739d: "\x01\x01\x02\x01\x03\x01\x01\x02", // 玝
+ 0x739e: "\x01\x01\x02\x01\x01\x01\x03\x04", // 玞
+ 0x739f: "\x01\x01\x02\x01\x04\x01\x03\x04", // 玟
+ 0x73a0: "\x01\x01\x02\x01\x03\x04\x03\x02", // 玠
+ 0x73a1: "\x01\x01\x02\x01\x01\x05\x02\x03", // 玡
+ 0x73a2: "\x01\x01\x02\x01\x03\x04\x05\x03", // 玢
+ 0x73a3: "\x01\x01\x02\x01\x04\x01\x02\x04", // 玣
+ 0x73a4: "\x01\x01\x02\x01\x01\x01\x01\x02", // 玤
+ 0x73a5: "\x01\x01\x02\x01\x03\x05\x01\x01", // 玥
+ 0x73a6: "\x01\x01\x02\x01\x05\x01\x03\x04", // 玦
+ 0x73a7: "\x01\x01\x02\x01\x05\x04\x03\x05", // 玧
+ 0x73a8: "\x01\x01\x02\x01\x01\x01\x02\x01", // 玨
+ 0x73a9: "\x01\x01\x02\x01\x01\x01\x03\x05", // 玩
+ 0x73aa: "\x01\x01\x02\x01\x03\x04\x04\x05", // 玪
+ 0x73ab: "\x01\x01\x02\x01\x03\x01\x03\x04", // 玫
+ 0x73ac: "\x01\x01\x02\x01\x03\x05\x04\x01", // 玬
+ 0x73ad: "\x01\x01\x02\x01\x01\x05\x03\x05", // 玭
+ 0x73ae: "\x01\x01\x02\x01\x01\x01\x05\x02", // 玮
+ 0x73af: "\x01\x01\x02\x01\x01\x03\x02\x04", // 环
+ 0x73b0: "\x01\x01\x02\x01\x02\x05\x03\x05", // 现
+ 0x73b1: "\x01\x01\x02\x01\x03\x04\x05\x05", // 玱
+ 0x73b2: "\x01\x01\x02\x01\x03\x04\x04\x05\x04", // 玲
+ 0x73b3: "\x01\x01\x02\x01\x03\x02\x01\x05\x04", // 玳
+ 0x73b4: "\x01\x01\x02\x01\x01\x02\x02\x01\x05", // 玴
+ 0x73b5: "\x01\x01\x02\x01\x01\x02\x02\x01\x01", // 玵
+ 0x73b6: "\x01\x01\x02\x01\x01\x04\x03\x01\x02", // 玶
+ 0x73b7: "\x01\x01\x02\x01\x02\x01\x02\x05\x01", // 玷
+ 0x73b8: "\x01\x01\x02\x01\x03\x05\x05\x01\x05", // 玸
+ 0x73b9: "\x01\x01\x02\x01\x04\x01\x05\x05\x04", // 玹
+ 0x73ba: "\x03\x05\x02\x03\x04\x01\x01\x02\x01\x04", // 玺
+ 0x73bb: "\x01\x01\x02\x01\x05\x03\x02\x05\x04", // 玻
+ 0x73bc: "\x01\x01\x02\x01\x02\x01\x02\x01\x03\x05", // 玼
+ 0x73bd: "\x01\x01\x02\x01\x03\x05\x02\x05\x01", // 玽
+ 0x73be: "\x01\x01\x02\x01\x02\x05\x01\x01\x02", // 玾
+ 0x73bf: "\x01\x01\x02\x01\x05\x03\x02\x05\x01", // 玿
+ 0x73c0: "\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 珀
+ 0x73c1: "\x01\x01\x02\x01\x01\x05\x05\x04", // 珁
+ 0x73c2: "\x01\x01\x02\x01\x01\x02\x05\x01\x02", // 珂
+ 0x73c3: "\x01\x01\x02\x01\x02\x05\x02\x01\x01", // 珃
+ 0x73c4: "\x01\x01\x02\x01\x03\x01\x01\x02\x01", // 珄
+ 0x73c5: "\x01\x01\x02\x01\x02\x05\x01\x01\x02", // 珅
+ 0x73c6: "\x01\x01\x02\x01\x05\x04\x02\x05\x01", // 珆
+ 0x73c7: "\x01\x01\x02\x01\x02\x05\x01\x01\x01", // 珇
+ 0x73c8: "\x01\x01\x02\x01\x05\x03\x02\x05\x01", // 珈
+ 0x73c9: "\x01\x01\x02\x01\x05\x01\x05\x01\x05", // 珉
+ 0x73ca: "\x01\x01\x02\x01\x03\x05\x03\x05\x01", // 珊
+ 0x73cb: "\x01\x01\x02\x01\x03\x05\x03\x05\x02", // 珋
+ 0x73cc: "\x01\x01\x02\x01\x04\x05\x04\x03\x04", // 珌
+ 0x73cd: "\x01\x01\x02\x01\x03\x04\x03\x03\x03", // 珍
+ 0x73ce: "\x01\x01\x02\x01\x03\x05\x02\x03\x04", // 珎
+ 0x73cf: "\x01\x01\x02\x01\x01\x01\x02\x01\x04", // 珏
+ 0x73d0: "\x01\x01\x02\x01\x01\x02\x01\x05\x04", // 珐
+ 0x73d1: "\x01\x01\x02\x01\x01\x03\x05\x03\x04", // 珑
+ 0x73d2: "\x01\x01\x02\x01\x05\x01\x01\x01\x01\x02", // 珒
+ 0x73d3: "\x01\x01\x02\x01\x04\x01\x03\x04\x03\x04", // 珓
+ 0x73d4: "\x01\x01\x02\x01\x01\x03\x02\x05\x02\x01", // 珔
+ 0x73d5: "\x01\x01\x02\x01\x05\x03\x05\x03\x05\x03", // 珕
+ 0x73d6: "\x01\x01\x02\x01\x02\x04\x03\x01\x03\x05", // 珖
+ 0x73d7: "\x01\x01\x02\x01\x03\x01\x02\x01\x03\x05", // 珗
+ 0x73d8: "\x01\x01\x02\x01\x03\x03\x05\x04\x01\x04", // 珘
+ 0x73d9: "\x01\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 珙
+ 0x73da: "\x01\x01\x02\x01\x02\x05\x01\x03\x04\x01", // 珚
+ 0x73db: "\x01\x01\x02\x01\x01\x03\x02\x05\x01\x01", // 珛
+ 0x73dc: "\x01\x01\x02\x01\x04\x03\x01\x01\x01\x02", // 珜
+ 0x73dd: "\x01\x01\x02\x01\x05\x04\x01\x05\x04\x01", // 珝
+ 0x73de: "\x01\x01\x02\x01\x03\x05\x04\x02\x05\x01", // 珞
+ 0x73df: "\x01\x01\x02\x01\x03\x05\x01\x03\x05\x04", // 珟
+ 0x73e0: "\x01\x01\x02\x01\x03\x01\x01\x02\x03\x04", // 珠
+ 0x73e1: "\x01\x01\x02\x01\x01\x01\x02\x01\x03\x04", // 珡
+ 0x73e2: "\x01\x01\x02\x01\x05\x01\x01\x05\x03\x04", // 珢
+ 0x73e3: "\x01\x01\x02\x01\x03\x05\x02\x05\x01\x01", // 珣
+ 0x73e4: "\x01\x01\x02\x01\x03\x01\x01\x02\x05\x02", // 珤
+ 0x73e5: "\x01\x01\x02\x01\x01\x02\x02\x01\x01\x01", // 珥
+ 0x73e6: "\x01\x01\x02\x01\x03\x02\x05\x02\x05\x01", // 珦
+ 0x73e7: "\x01\x01\x02\x01\x03\x04\x01\x05\x03\x04", // 珧
+ 0x73e8: "\x01\x01\x02\x01\x03\x04\x01\x02\x05\x01", // 珨
+ 0x73e9: "\x01\x01\x02\x01\x03\x03\x02\x01\x01\x02", // 珩
+ 0x73ea: "\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01", // 珪
+ 0x73eb: "\x01\x01\x02\x01\x04\x01\x05\x04\x03\x05", // 珫
+ 0x73ec: "\x01\x01\x02\x01\x01\x03\x01\x05\x03\x04", // 珬
+ 0x73ed: "\x01\x01\x02\x01\x04\x03\x01\x01\x02\x01", // 班
+ 0x73ee: "\x01\x01\x02\x01\x03\x05\x01\x02\x05\x02", // 珮
+ 0x73ef: "\x01\x01\x02\x01\x01\x02\x01\x03\x03\x05", // 珯
+ 0x73f0: "\x01\x01\x02\x01\x02\x04\x03\x05\x01\x01", // 珰
+ 0x73f1: "\x01\x01\x02\x01\x04\x04\x03\x05\x03\x01", // 珱
+ 0x73f2: "\x01\x01\x02\x01\x04\x05\x01\x05\x01\x02", // 珲
+ 0x73f3: "\x01\x01\x02\x01\x04\x01\x03\x04\x03\x03\x03", // 珳
+ 0x73f4: "\x01\x01\x02\x01\x03\x01\x02\x01\x05\x03\x04", // 珴
+ 0x73f5: "\x01\x01\x02\x01\x02\x05\x01\x01\x01\x02\x01", // 珵
+ 0x73f6: "\x01\x01\x02\x01\x04\x03\x05\x01\x05\x02\x03", // 珶
+ 0x73f7: "\x01\x01\x02\x01\x01\x01\x02\x01\x02\x01\x05\x04", // 珷
+ 0x73f8: "\x01\x01\x02\x01\x01\x02\x05\x01\x02\x05\x01", // 珸
+ 0x73f9: "\x01\x01\x02\x01\x01\x03\x05\x05\x03\x04", // 珹
+ 0x73fa: "\x01\x01\x02\x01\x05\x01\x01\x03\x02\x05\x01", // 珺
+ 0x73fb: "\x01\x01\x02\x01\x03\x01\x05\x05\x04\x01\x04", // 珻
+ 0x73fc: "\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 珼
+ 0x73fd: "\x01\x01\x02\x01\x03\x01\x02\x01\x05\x04", // 珽
+ 0x73fe: "\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 現
+ 0x73ff: "\x01\x01\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 珿
+ 0x7400: "\x01\x01\x02\x01\x03\x04\x04\x05\x02\x05\x01", // 琀
+ 0x7401: "\x01\x01\x02\x01\x03\x01\x05\x02\x01\x03\x04", // 琁
+ 0x7402: "\x01\x01\x02\x01\x04\x01\x01\x01\x02\x05\x01", // 琂
+ 0x7403: "\x01\x01\x02\x01\x01\x02\x04\x01\x03\x04\x04", // 球
+ 0x7404: "\x01\x01\x02\x01\x02\x05\x01\x02\x05\x01\x01", // 琄
+ 0x7405: "\x01\x01\x02\x01\x04\x05\x01\x01\x05\x03\x04", // 琅
+ 0x7406: "\x01\x01\x02\x01\x02\x05\x01\x01\x02\x01\x01", // 理
+ 0x7407: "\x01\x01\x02\x01\x03\x01\x02\x03\x04\x05\x03", // 琇
+ 0x7408: "\x01\x01\x02\x01\x03\x04\x04\x03\x05\x02\x01", // 琈
+ 0x7409: "\x01\x01\x02\x01\x04\x01\x05\x04\x03\x02\x05", // 琉
+ 0x740a: "\x01\x01\x02\x01\x01\x05\x02\x03\x05\x02", // 琊
+ 0x740b: "\x01\x01\x02\x01\x03\x04\x01\x03\x02\x05\x02", // 琋
+ 0x740c: "\x01\x01\x02\x01\x02\x05\x02\x03\x04\x04\x05", // 琌
+ 0x740d: "\x01\x01\x02\x01\x03\x01\x02\x03\x04\x02\x02", // 琍
+ 0x740e: "\x01\x01\x02\x01\x01\x01\x03\x02\x04\x05\x04", // 琎
+ 0x740f: "\x01\x01\x02\x01\x01\x05\x01\x02\x04\x05\x04", // 琏
+ 0x7410: "\x01\x01\x02\x01\x02\x04\x03\x02\x05\x03\x04", // 琐
+ 0x7411: "\x01\x01\x02\x01\x02\x04\x03\x02\x05\x01\x01", // 琑
+ 0x7412: "\x01\x01\x02\x01\x03\x05\x04\x01\x01\x01\x02", // 琒
+ 0x7413: "\x01\x01\x02\x01\x04\x04\x05\x01\x01\x03\x05", // 琓
+ 0x7414: "\x01\x01\x02\x01\x04\x04\x05\x01\x02\x01\x03\x04", // 琔
+ 0x7415: "\x01\x01\x02\x01\x03\x02\x05\x01\x01\x03\x01\x02", // 琕
+ 0x7416: "\x01\x01\x02\x01\x01\x05\x03\x04\x01\x05\x03\x04", // 琖
+ 0x7417: "\x01\x01\x02\x01\x04\x01\x03\x04\x03\x04\x01\x02", // 琗
+ 0x7418: "\x01\x01\x02\x01\x03\x05\x01\x05\x02\x05\x01\x01", // 琘
+ 0x7419: "\x01\x01\x02\x01\x01\x02\x05\x01\x01\x05\x03\x04", // 琙
+ 0x741a: "\x01\x01\x02\x01\x05\x01\x03\x01\x02\x02\x05\x01", // 琚
+ 0x741b: "\x01\x01\x02\x01\x04\x05\x03\x04\x01\x02\x03\x04", // 琛
+ 0x741c: "\x01\x01\x02\x01\x01\x03\x04\x03\x04\x02\x03\x04", // 琜
+ 0x741d: "\x01\x01\x02\x01\x02\x05\x01\x01\x04\x01\x03\x04", // 琝
+ 0x741e: "\x02\x05\x01\x01\x03\x05\x01\x01\x01\x01\x02\x01\x04", // 琞
+ 0x741f: "\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 琟
+ 0x7420: "\x01\x01\x02\x01\x02\x05\x01\x02\x02\x01\x03\x04", // 琠
+ 0x7421: "\x01\x01\x02\x01\x02\x01\x01\x02\x03\x04\x05\x04", // 琡
+ 0x7422: "\x01\x01\x02\x01\x01\x03\x05\x03\x03\x04\x03\x04", // 琢
+ 0x7423: "\x01\x01\x02\x01\x04\x01\x04\x03\x01\x02\x05\x01", // 琣
+ 0x7424: "\x01\x01\x02\x01\x03\x05\x05\x01\x01\x02", // 琤
+ 0x7425: "\x01\x01\x02\x01\x02\x01\x05\x03\x01\x05\x03\x05", // 琥
+ 0x7426: "\x01\x01\x02\x01\x01\x03\x04\x01\x02\x05\x01\x02", // 琦
+ 0x7427: "\x01\x02\x01\x05\x05\x01\x02\x01\x01\x01\x02\x01\x04", // 琧
+ 0x7428: "\x01\x01\x02\x01\x02\x05\x01\x01\x01\x05\x03\x05", // 琨
+ 0x7429: "\x01\x01\x02\x01\x02\x05\x01\x01\x02\x05\x01\x01", // 琩
+ 0x742a: "\x01\x01\x02\x01\x01\x02\x02\x01\x01\x01\x03\x04", // 琪
+ 0x742b: "\x01\x01\x02\x01\x01\x01\x01\x03\x04\x01\x01\x02", // 琫
+ 0x742c: "\x01\x01\x02\x01\x04\x04\x05\x03\x05\x04\x05\x05", // 琬
+ 0x742d: "\x01\x01\x02\x01\x05\x01\x01\x02\x04\x01\x03\x04", // 琭
+ 0x742e: "\x01\x01\x02\x01\x04\x04\x05\x01\x01\x02\x03\x04", // 琮
+ 0x742f: "\x01\x01\x02\x01\x04\x04\x05\x02\x05\x01\x05\x01", // 琯
+ 0x7430: "\x01\x01\x02\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 琰
+ 0x7431: "\x01\x01\x02\x01\x03\x05\x01\x02\x01\x02\x05\x01", // 琱
+ 0x7432: "\x01\x01\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01", // 琲
+ 0x7433: "\x01\x01\x02\x01\x01\x02\x03\x04\x01\x02\x03\x04", // 琳
+ 0x7434: "\x01\x01\x02\x01\x01\x01\x02\x01\x03\x04\x04\x05", // 琴
+ 0x7435: "\x01\x01\x02\x01\x01\x01\x02\x01\x01\x05\x03\x05", // 琵
+ 0x7436: "\x01\x01\x02\x01\x01\x01\x02\x01\x05\x02\x01\x05", // 琶
+ 0x7437: "\x01\x01\x02\x01\x04\x03\x01\x01\x01\x03\x05", // 琷
+ 0x7438: "\x01\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x02", // 琸
+ 0x7439: "\x01\x01\x02\x01\x01\x01\x02\x01\x01\x02\x03\x04", // 琹
+ 0x743a: "\x01\x01\x02\x01\x04\x04\x01\x01\x02\x01\x05\x04", // 琺
+ 0x743b: "\x01\x01\x02\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 琻
+ 0x743c: "\x01\x01\x02\x01\x04\x01\x02\x05\x01\x02\x03\x04", // 琼
+ 0x743d: "\x01\x01\x02\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 琽
+ 0x743e: "\x01\x01\x02\x01\x02\x05\x01\x02\x01\x03\x04\x03\x02", // 琾
+ 0x743f: "\x01\x01\x02\x01\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 琿
+ 0x7440: "\x01\x01\x02\x01\x03\x02\x05\x01\x02\x05\x02\x01\x04", // 瑀
+ 0x7441: "\x01\x01\x02\x01\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 瑁
+ 0x7442: "\x01\x01\x02\x01\x05\x02\x01\x03\x02\x05\x01\x01\x01", // 瑂
+ 0x7443: "\x01\x01\x02\x01\x01\x01\x01\x03\x04\x02\x05\x01\x01", // 瑃
+ 0x7444: "\x01\x01\x02\x01\x04\x04\x05\x01\x02\x05\x01\x01\x01", // 瑄
+ 0x7445: "\x01\x01\x02\x01\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 瑅
+ 0x7446: "\x01\x01\x02\x01\x02\x05\x01\x01\x03\x01\x01\x02\x01", // 瑆
+ 0x7447: "\x01\x01\x02\x01\x01\x01\x02\x01\x05\x05\x04\x01\x04", // 瑇
+ 0x7448: "\x01\x01\x02\x01\x05\x04\x05\x02\x03\x01\x02\x03\x04", // 瑈
+ 0x7449: "\x01\x01\x02\x01\x05\x01\x05\x01\x05\x02\x05\x01\x01", // 瑉
+ 0x744a: "\x01\x01\x02\x01\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 瑊
+ 0x744b: "\x01\x01\x02\x01\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 瑋
+ 0x744c: "\x01\x01\x02\x01\x01\x03\x02\x05\x02\x02\x01\x03\x04", // 瑌
+ 0x744d: "\x01\x01\x02\x01\x03\x05\x02\x05\x03\x04\x01\x03\x04", // 瑍
+ 0x744e: "\x01\x01\x02\x01\x01\x05\x03\x05\x03\x02\x05\x01\x01", // 瑎
+ 0x744f: "\x01\x01\x02\x01\x04\x04\x05\x03\x04\x01\x05\x02\x03", // 瑏
+ 0x7450: "\x01\x01\x02\x01\x04\x03\x01\x02\x05\x01\x01\x02\x02", // 瑐
+ 0x7451: "\x01\x01\x02\x01\x05\x05\x01\x03\x05\x03\x03\x03\x04", // 瑑
+ 0x7452: "\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 瑒
+ 0x7453: "\x01\x01\x02\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 瑓
+ 0x7454: "\x01\x01\x02\x01\x03\x02\x05\x01\x01\x02\x05\x03\x04", // 瑔
+ 0x7455: "\x01\x01\x02\x01\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 瑕
+ 0x7456: "\x01\x01\x02\x01\x03\x02\x01\x01\x01\x03\x05\x05\x04", // 瑖
+ 0x7457: "\x01\x01\x02\x01\x03\x04\x04\x03\x01\x01\x03\x05\x04", // 瑗
+ 0x7458: "\x01\x01\x02\x01\x01\x02\x02\x01\x01\x01\x05\x02", // 瑘
+ 0x7459: "\x01\x01\x02\x01\x05\x05\x05\x03\x02\x05\x03\x04\x01", // 瑙
+ 0x745a: "\x01\x01\x02\x01\x01\x02\x02\x05\x01\x03\x05\x01\x01", // 瑚
+ 0x745b: "\x01\x01\x02\x01\x01\x02\x02\x02\x05\x01\x03\x04", // 瑛
+ 0x745c: "\x01\x01\x02\x01\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 瑜
+ 0x745d: "\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x01\x02\x01", // 瑝
+ 0x745e: "\x01\x01\x02\x01\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 瑞
+ 0x745f: "\x01\x01\x02\x01\x01\x01\x02\x01\x04\x05\x04\x03\x04", // 瑟
+ 0x7460: "\x01\x01\x02\x01\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 瑠
+ 0x7461: "\x01\x01\x02\x01\x03\x02\x05\x01\x05\x01\x01\x02\x05\x02", // 瑡
+ 0x7462: "\x01\x01\x02\x01\x04\x04\x05\x03\x04\x03\x04\x02\x05\x01", // 瑢
+ 0x7463: "\x01\x01\x02\x01\x02\x04\x03\x02\x05\x01\x01\x01\x03\x04", // 瑣
+ 0x7464: "\x01\x01\x02\x01\x03\x05\x04\x04\x03\x01\x01\x02\x05\x02", // 瑤
+ 0x7465: "\x01\x01\x02\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 瑥
+ 0x7466: "\x01\x01\x02\x01\x03\x02\x05\x01\x01\x05\x04\x04\x04\x04", // 瑦
+ 0x7467: "\x01\x01\x02\x01\x01\x01\x01\x03\x04\x03\x01\x02\x03\x04", // 瑧
+ 0x7468: "\x01\x01\x02\x01\x01\x02\x02\x04\x03\x01\x02\x05\x01\x01", // 瑨
+ 0x7469: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x01\x01\x02\x01\x04", // 瑩
+ 0x746a: "\x01\x01\x02\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 瑪
+ 0x746b: "\x01\x01\x02\x01\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01", // 瑫
+ 0x746c: "\x04\x04\x01\x04\x01\x05\x04\x03\x02\x05\x01\x01\x02\x01\x04", // 瑬
+ 0x746d: "\x01\x01\x02\x01\x04\x01\x03\x05\x01\x01\x02\x02\x05\x01", // 瑭
+ 0x746e: "\x01\x01\x02\x01\x01\x02\x05\x02\x02\x01\x01\x02\x03\x04", // 瑮
+ 0x746f: "\x01\x01\x02\x01\x04\x05\x01\x01\x05\x04\x05\x02", // 瑯
+ 0x7470: "\x01\x01\x02\x01\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 瑰
+ 0x7471: "\x01\x01\x02\x01\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 瑱
+ 0x7472: "\x01\x01\x02\x01\x03\x04\x04\x05\x01\x01\x03\x02\x05\x01", // 瑲
+ 0x7473: "\x01\x01\x02\x01\x04\x03\x01\x01\x01\x03\x01\x02\x01", // 瑳
+ 0x7474: "\x01\x02\x01\x04\x05\x01\x01\x01\x02\x01\x03\x05\x05\x04", // 瑴
+ 0x7475: "\x01\x01\x02\x01\x05\x04\x04\x02\x05\x01\x02\x01\x04", // 瑵
+ 0x7476: "\x01\x01\x02\x01\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02", // 瑶
+ 0x7477: "\x01\x01\x02\x01\x03\x04\x04\x03\x04\x05\x01\x03\x05\x04", // 瑷
+ 0x7478: "\x01\x01\x02\x01\x04\x04\x05\x03\x02\x01\x02\x01\x03\x04", // 瑸
+ 0x7479: "\x01\x01\x02\x01\x01\x02\x02\x03\x04\x01\x01\x02\x03\x04", // 瑹
+ 0x747a: "\x01\x01\x02\x01\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x02", // 瑺
+ 0x747b: "\x01\x01\x02\x01\x05\x05\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 瑻
+ 0x747c: "\x01\x01\x02\x01\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04", // 瑼
+ 0x747d: "\x01\x01\x02\x01\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04", // 瑽
+ 0x747e: "\x01\x01\x02\x01\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01", // 瑾
+ 0x747f: "\x01\x03\x01\x01\x03\x04\x05\x03\x05\x05\x04\x01\x01\x02\x01\x04", // 瑿
+ 0x7480: "\x01\x01\x02\x01\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 璀
+ 0x7481: "\x01\x01\x02\x01\x03\x02\x05\x03\x05\x04\x01\x04\x05\x04\x04", // 璁
+ 0x7482: "\x01\x01\x02\x01\x01\x02\x02\x01\x01\x01\x03\x04\x01\x02\x01", // 璂
+ 0x7483: "\x01\x01\x02\x01\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 璃
+ 0x7484: "\x01\x01\x02\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05", // 璄
+ 0x7485: "\x01\x01\x02\x01\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 璅
+ 0x7486: "\x01\x01\x02\x01\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 璆
+ 0x7487: "\x01\x01\x02\x01\x04\x01\x05\x03\x03\x01\x05\x02\x01\x03\x04", // 璇
+ 0x7488: "\x01\x01\x02\x01\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04", // 璈
+ 0x7489: "\x01\x01\x02\x01\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 璉
+ 0x748a: "\x01\x01\x02\x01\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04", // 璊
+ 0x748b: "\x01\x01\x02\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02", // 璋
+ 0x748c: "\x01\x01\x02\x01\x04\x04\x05\x01\x02\x05\x01\x02\x01\x03\x04", // 璌
+ 0x748d: "\x01\x01\x02\x01\x01\x02\x02\x01\x01\x02\x02\x01\x01\x02", // 璍
+ 0x748e: "\x01\x01\x02\x01\x02\x05\x03\x04\x02\x05\x03\x04\x05\x03\x01", // 璎
+ 0x748f: "\x01\x01\x02\x01\x05\x05\x01\x03\x01\x01\x03\x04\x01\x05\x03\x05", // 璏
+ 0x7490: "\x01\x01\x02\x01\x02\x05\x01\x02\x01\x02\x01\x03\x05\x04\x02\x05\x01", // 璐
+ 0x7491: "\x01\x01\x02\x01\x03\x01\x01\x02\x02\x02\x02\x01\x04\x04\x04\x04", // 璑
+ 0x7492: "\x01\x01\x02\x01\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 璒
+ 0x7493: "\x01\x01\x02\x01\x01\x02\x02\x03\x01\x02\x03\x04\x05\x03", // 璓
+ 0x7494: "\x01\x01\x02\x01\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 璔
+ 0x7495: "\x01\x01\x02\x01\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04", // 璕
+ 0x7496: "\x01\x01\x02\x01\x04\x04\x01\x01\x05\x01\x05\x01\x02\x03\x04", // 璖
+ 0x7497: "\x04\x04\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03\x01\x01\x02\x01\x04", // 璗
+ 0x7498: "\x01\x01\x02\x01\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 璘
+ 0x7499: "\x01\x01\x02\x01\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 璙
+ 0x749a: "\x01\x01\x02\x01\x05\x04\x05\x02\x03\x02\x05\x03\x04\x02\x05\x01", // 璚
+ 0x749b: "\x01\x01\x02\x01\x05\x01\x01\x02\x03\x02\x01\x01\x05\x05\x02\x01\x02", // 璛
+ 0x749c: "\x01\x01\x02\x01\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 璜
+ 0x749d: "\x01\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 璝
+ 0x749e: "\x01\x01\x02\x01\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 璞
+ 0x749f: "\x01\x01\x02\x01\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x03\x04", // 璟
+ 0x74a0: "\x01\x01\x02\x01\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 璠
+ 0x74a1: "\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x04\x05\x04", // 璡
+ 0x74a2: "\x01\x01\x02\x01\x01\x02\x02\x01\x05\x05\x01\x02\x05\x01\x02\x01", // 璢
+ 0x74a3: "\x01\x01\x02\x01\x05\x05\x04\x05\x05\x04\x01\x03\x04\x05\x03\x04", // 璣
+ 0x74a4: "\x01\x01\x02\x01\x01\x02\x05\x01\x01\x02\x01\x04\x04\x05\x04\x04", // 璤
+ 0x74a5: "\x01\x01\x02\x01\x01\x02\x02\x03\x05\x02\x05\x01\x03\x01\x03\x04", // 璥
+ 0x74a6: "\x01\x01\x02\x01\x03\x04\x04\x03\x04\x05\x04\x05\x04\x04\x03\x05\x04", // 璦
+ 0x74a7: "\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x01\x01\x02\x01\x04", // 璧
+ 0x74a8: "\x01\x01\x02\x01\x02\x01\x03\x05\x04\x05\x04\x04\x03\x01\x02\x03\x04", // 璨
+ 0x74a9: "\x01\x01\x02\x01\x02\x01\x05\x03\x01\x05\x01\x03\x05\x03\x03\x03\x04", // 璩
+ 0x74aa: "\x01\x01\x02\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 璪
+ 0x74ab: "\x01\x01\x02\x01\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x01\x02\x01", // 璫
+ 0x74ac: "\x01\x01\x02\x01\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x03\x04", // 璬
+ 0x74ad: "\x01\x01\x02\x01\x04\x05\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 璭
+ 0x74ae: "\x01\x01\x02\x01\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 璮
+ 0x74af: "\x01\x01\x02\x01\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 璯
+ 0x74b0: "\x01\x01\x02\x01\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 環
+ 0x74b1: "\x01\x01\x02\x01\x01\x01\x02\x01\x01\x01\x02\x01\x04\x05\x04\x03\x04", // 璱
+ 0x74b2: "\x01\x01\x02\x01\x04\x03\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 璲
+ 0x74b3: "\x01\x01\x02\x01\x03\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 璳
+ 0x74b4: "\x01\x01\x02\x01\x01\x02\x03\x04\x01\x02\x03\x04\x05\x02\x01\x03\x04", // 璴
+ 0x74b5: "\x01\x01\x02\x01\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 璵
+ 0x74b6: "\x01\x01\x02\x01\x05\x01\x01\x02\x01\x04\x04\x04\x04\x02\x05\x02\x02\x01", // 璶
+ 0x74b7: "\x01\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04\x04\x01\x05\x03\x03\x01\x03\x04", // 璷
+ 0x74b8: "\x01\x01\x02\x01\x04\x04\x05\x01\x02\x03\x03\x02\x05\x01\x01\x01\x03\x04", // 璸
+ 0x74b9: "\x01\x01\x02\x01\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 璹
+ 0x74ba: "\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x04\x05\x01\x01\x02\x01\x04", // 璺
+ 0x74bb: "\x01\x01\x02\x01\x05\x04\x01\x05\x04\x01\x04\x01\x03\x04\x03\x04\x01\x02", // 璻
+ 0x74bc: "\x01\x01\x02\x01\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01", // 璼
+ 0x74bd: "\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x01\x02\x01\x04", // 璽
+ 0x74be: "\x01\x01\x02\x01\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01", // 璾
+ 0x74bf: "\x01\x01\x02\x01\x02\x01\x04\x05\x01\x03\x04\x03\x04\x02\x05\x01\x01\x01", // 璿
+ 0x74c0: "\x01\x01\x02\x01\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02", // 瓀
+ 0x74c1: "\x01\x01\x02\x01\x01\x02\x02\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 瓁
+ 0x74c2: "\x01\x01\x02\x01\x01\x02\x02\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 瓂
+ 0x74c3: "\x01\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01", // 瓃
+ 0x74c4: "\x01\x01\x02\x01\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 瓄
+ 0x74c5: "\x01\x01\x02\x01\x03\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x03\x04", // 瓅
+ 0x74c6: "\x01\x01\x02\x01\x03\x03\x01\x02\x03\x03\x01\x02\x02\x05\x01\x01\x01\x03\x04", // 瓆
+ 0x74c7: "\x01\x01\x02\x01\x01\x03\x02\x05\x01\x01\x04\x05\x04\x05\x04\x04\x03\x05\x04", // 瓇
+ 0x74c8: "\x01\x01\x02\x01\x03\x01\x02\x03\x04\x03\x05\x03\x03\x04\x02\x04\x01\x03\x04", // 瓈
+ 0x74c9: "\x01\x01\x02\x01\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 瓉
+ 0x74ca: "\x01\x01\x02\x01\x03\x05\x02\x05\x03\x04\x02\x05\x01\x01\x01\x03\x05\x04", // 瓊
+ 0x74cb: "\x01\x01\x02\x01\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01\x04\x05\x04", // 瓋
+ 0x74cc: "\x01\x01\x02\x01\x04\x01\x02\x05\x02\x02\x01\x02\x04\x01\x03\x04\x03\x05\x03\x04", // 瓌
+ 0x74cd: "\x01\x01\x02\x01\x05\x02\x01\x03\x01\x02\x01\x02\x05\x01\x01\x04\x05\x04", // 瓍
+ 0x74ce: "\x01\x01\x02\x01\x01\x02\x05\x01\x02\x03\x04\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 瓎
+ 0x74cf: "\x01\x01\x02\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x05\x01\x05\x01\x01\x01", // 瓏
+ 0x74d0: "\x01\x01\x02\x01\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 瓐
+ 0x74d1: "\x01\x01\x02\x01\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 瓑
+ 0x74d2: "\x01\x01\x02\x01\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x03\x04", // 瓒
+ 0x74d3: "\x01\x01\x02\x01\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 瓓
+ 0x74d4: "\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x05\x03\x01", // 瓔
+ 0x74d5: "\x05\x01\x05\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x01\x02\x01\x04", // 瓕
+ 0x74d6: "\x01\x01\x02\x01\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 瓖
+ 0x74d7: "\x01\x01\x02\x01\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x03\x04\x02\x05\x01", // 瓗
+ 0x74d8: "\x01\x01\x02\x01\x01\x02\x02\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 瓘
+ 0x74d9: "\x01\x01\x02\x01\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04\x04\x04\x04\x04", // 瓙
+ 0x74da: "\x01\x01\x02\x01\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 瓚
+ 0x74db: "\x01\x01\x02\x01\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x03\x04\x04", // 瓛
+ 0x74dc: "\x03\x03\x05\x04\x04", // 瓜
+ 0x74dd: "\x03\x03\x05\x04\x04\x03\x05\x04", // 瓝
+ 0x74de: "\x03\x03\x05\x04\x04\x03\x01\x01\x03\x04", // 瓞
+ 0x74df: "\x03\x03\x05\x04\x04\x03\x05\x05\x01\x05", // 瓟
+ 0x74e0: "\x01\x03\x04\x01\x01\x05\x03\x03\x05\x04\x04", // 瓠
+ 0x74e1: "\x01\x02\x01\x04\x03\x01\x01\x02\x03\x03\x05\x04\x04", // 瓡
+ 0x74e2: "\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04\x03\x03\x05\x04\x04", // 瓢
+ 0x74e3: "\x04\x01\x04\x03\x01\x01\x03\x03\x03\x05\x04\x04\x04\x01\x04\x03\x01\x01\x02", // 瓣
+ 0x74e4: "\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04\x03\x03\x05\x04\x04", // 瓤
+ 0x74e5: "\x03\x03\x05\x04\x04\x01\x03\x05\x03\x03\x03\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 瓥
+ 0x74e6: "\x01\x05\x05\x04", // 瓦
+ 0x74e7: "\x01\x05\x05\x04\x01\x02", // 瓧
+ 0x74e8: "\x01\x02\x01\x01\x05\x05\x04", // 瓨
+ 0x74e9: "\x01\x05\x05\x04\x03\x01\x02", // 瓩
+ 0x74ea: "\x01\x05\x05\x04\x03\x03\x05\x04", // 瓪
+ 0x74eb: "\x03\x04\x05\x03\x01\x05\x05\x04", // 瓫
+ 0x74ec: "\x04\x01\x05\x03\x01\x05\x05\x04", // 瓬
+ 0x74ed: "\x04\x05\x03\x05\x01\x05\x05\x04", // 瓭
+ 0x74ee: "\x03\x04\x05\x04\x01\x05\x05\x04", // 瓮
+ 0x74ef: "\x01\x03\x04\x05\x01\x05\x05\x04", // 瓯
+ 0x74f0: "\x01\x05\x05\x04\x03\x04\x05\x03", // 瓰
+ 0x74f1: "\x01\x05\x05\x04\x03\x01\x01\x05", // 瓱
+ 0x74f2: "\x01\x05\x05\x04\x01\x05\x02\x05", // 瓲
+ 0x74f3: "\x01\x02\x02\x05\x01\x01\x05\x05\x04", // 瓳
+ 0x74f4: "\x03\x04\x04\x05\x04\x01\x05\x05\x04", // 瓴
+ 0x74f5: "\x05\x04\x02\x05\x01\x01\x05\x05\x04", // 瓵
+ 0x74f6: "\x04\x03\x01\x01\x03\x02\x01\x05\x05\x04", // 瓶
+ 0x74f7: "\x04\x01\x03\x05\x03\x04\x01\x05\x05\x04", // 瓷
+ 0x74f8: "\x01\x05\x05\x04\x01\x03\x02\x05\x01\x01", // 瓸
+ 0x74f9: "\x02\x05\x01\x02\x05\x01\x01\x01\x05\x05\x04", // 瓹
+ 0x74fa: "\x01\x02\x01\x01\x01\x05\x04\x01\x05\x05\x04", // 瓺
+ 0x74fb: "\x03\x04\x01\x03\x02\x05\x02\x01\x05\x05\x04", // 瓻
+ 0x74fc: "\x01\x05\x05\x04\x02\x05\x01\x01\x02\x01\x01", // 瓼
+ 0x74fd: "\x02\x04\x03\x04\x05\x02\x05\x01\x01\x05\x05\x04", // 瓽
+ 0x74fe: "\x03\x01\x02\x03\x04\x05\x03\x01\x01\x05\x05\x04", // 瓾
+ 0x74ff: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05\x05\x04", // 瓿
+ 0x7500: "\x03\x01\x02\x01\x02\x02\x01\x01\x01\x05\x05\x04", // 甀
+ 0x7501: "\x03\x01\x01\x03\x03\x01\x01\x02\x01\x05\x05\x04", // 甁
+ 0x7502: "\x04\x05\x01\x03\x02\x05\x01\x02\x02\x01\x05\x05\x04", // 甂
+ 0x7503: "\x03\x01\x02\x03\x04\x04\x03\x03\x04\x01\x05\x05\x04", // 甃
+ 0x7504: "\x01\x02\x05\x02\x02\x01\x01\x02\x01\x01\x05\x05\x04", // 甄
+ 0x7505: "\x01\x05\x05\x04\x01\x03\x02\x05\x01\x01\x02\x01\x01", // 甅
+ 0x7506: "\x04\x03\x01\x05\x05\x04\x05\x05\x04\x01\x05\x05\x04", // 甆
+ 0x7507: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x01\x05\x05\x04", // 甇
+ 0x7508: "\x03\x02\x05\x01\x01\x01\x01\x02\x03\x04\x01\x05\x05\x04", // 甈
+ 0x7509: "\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04\x01\x05\x05\x04", // 甉
+ 0x750a: "\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01\x01\x05\x05\x04", // 甊
+ 0x750b: "\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01\x01\x05\x05\x04", // 甋
+ 0x750c: "\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05\x01\x05\x05\x04", // 甌
+ 0x750d: "\x01\x02\x02\x02\x05\x02\x02\x01\x04\x05\x01\x05\x05\x04", // 甍
+ 0x750e: "\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04\x01\x05\x05\x04", // 甎
+ 0x750f: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x03\x03\x03\x01\x05\x05\x04", // 甏
+ 0x7510: "\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02\x01\x05\x05\x04", // 甐
+ 0x7511: "\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01\x01\x05\x05\x04", // 甑
+ 0x7512: "\x03\x01\x01\x02\x02\x02\x02\x01\x04\x04\x04\x04\x01\x05\x05\x04", // 甒
+ 0x7513: "\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x01\x05\x05\x04", // 甓
+ 0x7514: "\x03\x05\x01\x03\x03\x04\x04\x01\x01\x01\x02\x05\x01\x01\x05\x05\x04", // 甔
+ 0x7515: "\x04\x01\x05\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01\x01\x05\x05\x04", // 甕
+ 0x7516: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x01\x05\x05\x04", // 甖
+ 0x7517: "\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x05\x05\x04", // 甗
+ 0x7518: "\x01\x02\x02\x01\x01", // 甘
+ 0x7519: "\x01\x01\x02\x02\x01\x01\x05\x04", // 甙
+ 0x751a: "\x01\x02\x02\x01\x01\x01\x03\x04\x05", // 甚
+ 0x751b: "\x01\x02\x02\x01\x01\x03\x01\x02\x02\x05\x01", // 甛
+ 0x751c: "\x03\x01\x02\x02\x05\x01\x01\x02\x02\x01\x01", // 甜
+ 0x751d: "\x02\x01\x05\x03\x01\x05\x03\x05\x01\x02\x02\x01\x01", // 甝
+ 0x751e: "\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x02\x01\x01", // 甞
+ 0x751f: "\x03\x01\x01\x02\x01", // 生
+ 0x7520: "\x02\x05\x01\x01\x03\x01\x01\x02\x01", // 甠
+ 0x7521: "\x03\x01\x01\x02\x01\x03\x01\x01\x02\x01", // 甡
+ 0x7522: "\x04\x01\x03\x04\x01\x03\x03\x01\x01\x02\x01", // 產
+ 0x7523: "\x04\x01\x04\x03\x01\x03\x03\x01\x01\x02\x01", // 産
+ 0x7524: "\x01\x03\x05\x03\x03\x03\x04\x03\x01\x01\x02\x01", // 甤
+ 0x7525: "\x03\x01\x01\x02\x01\x02\x05\x01\x02\x01\x05\x03", // 甥
+ 0x7526: "\x01\x02\x05\x01\x01\x03\x04\x03\x01\x01\x02\x01", // 甦
+ 0x7527: "\x03\x01\x01\x02\x01\x03\x01\x01\x02\x01\x02\x05\x01\x01", // 甧
+ 0x7528: "\x03\x05\x01\x01\x02", // 用
+ 0x7529: "\x03\x05\x01\x01\x05", // 甩
+ 0x752a: "\x03\x03\x05\x01\x01\x02", // 甪
+ 0x752b: "\x01\x02\x05\x01\x01\x02\x04", // 甫
+ 0x752c: "\x05\x04\x02\x05\x01\x01\x02", // 甬
+ 0x752d: "\x01\x03\x02\x04\x03\x05\x01\x01\x02", // 甭
+ 0x752e: "\x03\x05\x03\x03\x03\x05\x01\x01\x02", // 甮
+ 0x752f: "\x04\x04\x05\x04\x05\x04\x04\x02\x05\x01\x01\x02", // 甯
+ 0x7530: "\x02\x05\x01\x02\x01", // 田
+ 0x7531: "\x02\x05\x01\x02\x01", // 由
+ 0x7532: "\x02\x05\x01\x01\x02", // 甲
+ 0x7533: "\x02\x05\x01\x01\x02", // 申
+ 0x7534: "\x02\x05\x01\x02\x01", // 甴
+ 0x7535: "\x02\x05\x01\x01\x05", // 电
+ 0x7536: "\x03\x02\x05\x01\x02\x01", // 甶
+ 0x7537: "\x02\x05\x01\x02\x01\x05\x03", // 男
+ 0x7538: "\x03\x05\x02\x05\x01\x02\x01", // 甸
+ 0x7539: "\x02\x05\x01\x02\x01\x01\x05", // 甹
+ 0x753a: "\x02\x05\x01\x02\x01\x01\x02", // 町
+ 0x753b: "\x01\x02\x05\x01\x02\x01\x05\x02", // 画
+ 0x753c: "\x02\x05\x01\x02\x01\x01\x02", // 甼
+ 0x753d: "\x02\x05\x01\x02\x01\x03\x02\x02", // 甽
+ 0x753e: "\x05\x05\x05\x02\x05\x01\x02\x01", // 甾
+ 0x753f: "\x02\x05\x01\x02\x01\x04\x01\x05", // 甿
+ 0x7540: "\x02\x05\x01\x02\x01\x01\x03\x02", // 畀
+ 0x7541: "\x02\x05\x01\x02\x01\x01\x03\x02", // 畁
+ 0x7542: "\x02\x05\x01\x02\x01\x03\x05\x04", // 畂
+ 0x7543: "\x02\x05\x01\x01\x02\x03\x05\x04", // 畃
+ 0x7544: "\x04\x04\x03\x02\x05\x01\x02\x01", // 畄
+ 0x7545: "\x02\x05\x01\x01\x02\x05\x03\x03", // 畅
+ 0x7546: "\x04\x01\x02\x05\x01\x02\x01\x05\x04", // 畆
+ 0x7547: "\x02\x05\x01\x02\x01\x03\x05\x04\x01", // 畇
+ 0x7548: "\x02\x05\x01\x02\x01\x03\x03\x05\x04", // 畈
+ 0x7549: "\x02\x05\x01\x02\x01\x01\x01\x03\x04", // 畉
+ 0x754a: "\x02\x05\x01\x02\x01\x01\x01\x03\x02", // 畊
+ 0x754b: "\x02\x05\x01\x02\x01\x03\x01\x03\x04", // 畋
+ 0x754c: "\x02\x05\x01\x02\x01\x03\x04\x03\x02", // 界
+ 0x754d: "\x02\x05\x01\x02\x01\x03\x04\x03\x02", // 畍
+ 0x754e: "\x02\x05\x01\x02\x01\x01\x03\x04\x04", // 畎
+ 0x754f: "\x02\x05\x01\x02\x01\x01\x05\x03\x04", // 畏
+ 0x7550: "\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 畐
+ 0x7551: "\x04\x03\x03\x04\x02\x05\x01\x02\x01", // 畑
+ 0x7552: "\x04\x01\x02\x05\x01\x02\x01\x03\x04", // 畒
+ 0x7553: "\x02\x05\x03\x04\x02\x05\x01\x02\x01", // 畓
+ 0x7554: "\x02\x05\x01\x02\x01\x04\x03\x01\x01\x02", // 畔
+ 0x7555: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01", // 畕
+ 0x7556: "\x02\x05\x01\x02\x01\x03\x03\x05\x04\x04", // 畖
+ 0x7557: "\x04\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 畗
+ 0x7558: "\x02\x05\x01\x02\x01\x02\x05\x02\x01\x01", // 畘
+ 0x7559: "\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 留
+ 0x755a: "\x05\x04\x01\x03\x04\x02\x05\x01\x02\x01", // 畚
+ 0x755b: "\x02\x05\x01\x02\x01\x03\x04\x03\x03\x03", // 畛
+ 0x755c: "\x04\x01\x05\x05\x04\x02\x05\x01\x02\x01", // 畜
+ 0x755d: "\x04\x01\x02\x05\x01\x02\x01\x03\x05\x04", // 畝
+ 0x755e: "\x01\x02\x02\x05\x01\x02\x01\x03\x05\x04", // 畞
+ 0x755f: "\x02\x05\x01\x02\x01\x03\x04\x03\x05\x04", // 畟
+ 0x7560: "\x03\x02\x05\x01\x01\x02\x05\x01\x02\x01", // 畠
+ 0x7561: "\x02\x05\x01\x02\x01\x04\x01\x05\x03\x03\x04", // 畡
+ 0x7562: "\x02\x05\x01\x01\x01\x02\x02\x01\x01\x02", // 畢
+ 0x7563: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 畣
+ 0x7564: "\x02\x05\x01\x02\x01\x01\x02\x01\x01\x02\x04", // 畤
+ 0x7565: "\x02\x05\x01\x02\x01\x03\x05\x04\x02\x05\x01", // 略
+ 0x7566: "\x02\x05\x01\x02\x01\x01\x02\x01\x01\x02\x01", // 畦
+ 0x7567: "\x02\x05\x01\x02\x01\x03\x05\x04\x02\x05\x01", // 畧
+ 0x7568: "\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 畨
+ 0x7569: "\x02\x05\x01\x02\x01\x04\x01\x03\x05\x03\x04", // 畩
+ 0x756a: "\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 番
+ 0x756b: "\x05\x01\x01\x01\x02\x01\x02\x05\x01\x02\x01\x01", // 畫
+ 0x756c: "\x03\x04\x01\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 畬
+ 0x756d: "\x02\x05\x01\x02\x01\x03\x04\x01\x01\x02\x03\x04", // 畭
+ 0x756e: "\x02\x05\x01\x02\x01\x03\x01\x05\x05\x04\x01\x04", // 畮
+ 0x756f: "\x02\x05\x01\x02\x01\x05\x04\x03\x04\x03\x05\x04", // 畯
+ 0x7570: "\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 異
+ 0x7571: "\x01\x02\x02\x01\x05\x05\x01\x02\x05\x01\x02\x01", // 畱
+ 0x7572: "\x03\x04\x01\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 畲
+ 0x7573: "\x02\x05\x01\x02\x01\x04\x05\x02\x05\x01\x01\x01", // 畳
+ 0x7574: "\x02\x05\x01\x02\x01\x01\x01\x01\x03\x01\x02\x04", // 畴
+ 0x7575: "\x05\x01\x01\x01\x02\x01\x02\x05\x01\x02\x01\x05\x04", // 畵
+ 0x7576: "\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x01\x02\x01", // 當
+ 0x7577: "\x02\x05\x01\x02\x01\x05\x04\x05\x04\x05\x04\x05\x04", // 畷
+ 0x7578: "\x02\x05\x01\x02\x01\x01\x03\x04\x01\x02\x05\x01\x02", // 畸
+ 0x7579: "\x02\x05\x01\x02\x01\x04\x04\x05\x03\x05\x04\x05\x05", // 畹
+ 0x757a: "\x01\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x01\x01", // 畺
+ 0x757b: "\x02\x05\x01\x02\x01\x04\x03\x01\x01\x03\x04\x01\x02\x01", // 畻
+ 0x757c: "\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 畼
+ 0x757d: "\x02\x05\x01\x02\x01\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 畽
+ 0x757e: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01", // 畾
+ 0x757f: "\x05\x05\x04\x05\x05\x04\x01\x02\x05\x01\x02\x01\x05\x03\x04", // 畿
+ 0x7580: "\x05\x05\x05\x02\x05\x01\x02\x01\x01\x05\x01\x01\x02\x01\x03\x04", // 疀
+ 0x7581: "\x02\x05\x01\x02\x01\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 疁
+ 0x7582: "\x02\x05\x01\x02\x01\x04\x01\x03\x04\x04\x05\x02\x05\x01\x01\x01", // 疂
+ 0x7583: "\x02\x05\x01\x02\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 疃
+ 0x7584: "\x02\x05\x01\x02\x01\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 疄
+ 0x7585: "\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x01\x01", // 疅
+ 0x7586: "\x05\x01\x05\x01\x02\x01\x01\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x01\x01", // 疆
+ 0x7587: "\x02\x05\x01\x02\x01\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 疇
+ 0x7588: "\x01\x02\x05\x01\x02\x05\x01\x02\x01\x04\x03\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 疈
+ 0x7589: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x04\x05\x05\x05\x01", // 疉
+ 0x758a: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x04\x05\x02\x05\x01\x01\x01", // 疊
+ 0x758b: "\x05\x02\x01\x03\x04", // 疋
+ 0x758c: "\x01\x05\x01\x01\x02\x01\x03\x04", // 疌
+ 0x758d: "\x05\x02\x01\x03\x04\x02\x05\x01\x01\x01", // 疍
+ 0x758e: "\x05\x02\x01\x02\x01\x01\x02\x05\x01\x02\x03\x04", // 疎
+ 0x758f: "\x05\x02\x01\x02\x01\x04\x01\x05\x04\x03\x02\x05", // 疏
+ 0x7590: "\x01\x02\x04\x05\x02\x05\x01\x02\x01\x05\x02\x01\x03\x04", // 疐
+ 0x7591: "\x03\x05\x03\x01\x01\x03\x04\x05\x04\x05\x02\x01\x03\x04", // 疑
+ 0x7592: "\x04\x01\x03\x04\x01", // 疒
+ 0x7593: "\x04\x01\x03\x04\x01\x05\x03", // 疓
+ 0x7594: "\x04\x01\x03\x04\x01\x01\x02", // 疔
+ 0x7595: "\x04\x01\x03\x04\x01\x03\x05", // 疕
+ 0x7596: "\x04\x01\x03\x04\x01\x05\x02", // 疖
+ 0x7597: "\x04\x01\x03\x04\x01\x05\x02", // 疗
+ 0x7598: "\x04\x01\x03\x04\x01\x01\x02\x01", // 疘
+ 0x7599: "\x04\x01\x03\x04\x01\x03\x01\x05", // 疙
+ 0x759a: "\x04\x01\x03\x04\x01\x03\x05\x04", // 疚
+ 0x759b: "\x04\x01\x03\x04\x01\x01\x02\x04", // 疛
+ 0x759c: "\x04\x01\x03\x04\x01\x01\x02\x04", // 疜
+ 0x759d: "\x04\x01\x03\x04\x01\x02\x05\x02", // 疝
+ 0x759e: "\x04\x01\x03\x04\x01\x01\x01\x05", // 疞
+ 0x759f: "\x04\x01\x03\x04\x01\x01\x05\x01", // 疟
+ 0x75a0: "\x04\x01\x03\x04\x01\x01\x05\x03", // 疠
+ 0x75a1: "\x04\x01\x03\x04\x01\x05\x03\x03", // 疡
+ 0x75a2: "\x04\x01\x03\x04\x01\x04\x03\x03\x04", // 疢
+ 0x75a3: "\x04\x01\x03\x04\x01\x01\x03\x05\x04", // 疣
+ 0x75a4: "\x04\x01\x03\x04\x01\x05\x02\x01\x05", // 疤
+ 0x75a5: "\x04\x01\x03\x04\x01\x03\x04\x03\x02", // 疥
+ 0x75a6: "\x04\x01\x03\x04\x01\x05\x01\x03\x04", // 疦
+ 0x75a7: "\x04\x01\x03\x04\x01\x03\x05\x01\x05", // 疧
+ 0x75a8: "\x04\x01\x03\x04\x01\x01\x05\x02\x03", // 疨
+ 0x75a9: "\x04\x01\x03\x04\x01\x03\x05\x01\x02", // 疩
+ 0x75aa: "\x04\x01\x03\x04\x01\x01\x05\x03\x05", // 疪
+ 0x75ab: "\x04\x01\x03\x04\x01\x03\x05\x05\x04", // 疫
+ 0x75ac: "\x04\x01\x03\x04\x01\x01\x03\x05\x03", // 疬
+ 0x75ad: "\x04\x01\x03\x04\x01\x03\x04\x03\x04", // 疭
+ 0x75ae: "\x04\x01\x03\x04\x01\x03\x04\x05\x05", // 疮
+ 0x75af: "\x04\x01\x03\x04\x01\x03\x05\x03\x04", // 疯
+ 0x75b0: "\x04\x01\x03\x04\x01\x04\x01\x01\x02\x01", // 疰
+ 0x75b1: "\x04\x01\x03\x04\x01\x03\x05\x05\x01\x05", // 疱
+ 0x75b2: "\x04\x01\x03\x04\x01\x05\x03\x02\x05\x04", // 疲
+ 0x75b3: "\x04\x01\x03\x04\x01\x01\x02\x02\x01\x01", // 疳
+ 0x75b4: "\x04\x01\x03\x04\x01\x01\x02\x05\x01\x02", // 疴
+ 0x75b5: "\x04\x01\x03\x04\x01\x02\x01\x02\x01\x03\x05", // 疵
+ 0x75b6: "\x04\x01\x03\x04\x01\x01\x02\x02\x01\x05", // 疶
+ 0x75b7: "\x04\x01\x03\x04\x01\x03\x05\x01\x05\x04", // 疷
+ 0x75b8: "\x04\x01\x03\x04\x01\x02\x05\x01\x01\x01", // 疸
+ 0x75b9: "\x04\x01\x03\x04\x01\x03\x04\x03\x03\x03", // 疹
+ 0x75ba: "\x04\x01\x03\x04\x01\x03\x04\x05\x04", // 疺
+ 0x75bb: "\x04\x01\x03\x04\x01\x02\x05\x01\x03\x04", // 疻
+ 0x75bc: "\x04\x01\x03\x04\x01\x03\x05\x04\x04\x04", // 疼
+ 0x75bd: "\x04\x01\x03\x04\x01\x02\x05\x01\x01\x01", // 疽
+ 0x75be: "\x04\x01\x03\x04\x01\x03\x01\x01\x03\x04", // 疾
+ 0x75bf: "\x04\x01\x03\x04\x01\x05\x01\x05\x03\x02", // 疿
+ 0x75c0: "\x04\x01\x03\x04\x01\x03\x05\x02\x05\x01", // 痀
+ 0x75c1: "\x04\x01\x03\x04\x01\x02\x01\x02\x05\x01", // 痁
+ 0x75c2: "\x04\x01\x03\x04\x01\x05\x03\x02\x05\x01", // 痂
+ 0x75c3: "\x04\x01\x03\x04\x01\x04\x01\x05\x05\x04", // 痃
+ 0x75c4: "\x04\x01\x03\x04\x01\x03\x01\x02\x01\x01", // 痄
+ 0x75c5: "\x04\x01\x03\x04\x01\x01\x02\x05\x03\x04", // 病
+ 0x75c6: "\x04\x01\x03\x04\x01\x05\x01\x03\x03\x05", // 痆
+ 0x75c7: "\x04\x01\x03\x04\x01\x01\x02\x01\x02\x01", // 症
+ 0x75c8: "\x04\x01\x03\x04\x01\x03\x05\x01\x01\x02", // 痈
+ 0x75c9: "\x04\x01\x03\x04\x01\x05\x04\x01\x02\x01", // 痉
+ 0x75ca: "\x04\x01\x03\x04\x01\x03\x04\x01\x01\x02\x01", // 痊
+ 0x75cb: "\x04\x01\x03\x04\x01\x02\x05\x01\x02\x01\x04", // 痋
+ 0x75cc: "\x04\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01", // 痌
+ 0x75cd: "\x04\x01\x03\x04\x01\x01\x05\x01\x05\x03\x04", // 痍
+ 0x75ce: "\x04\x01\x03\x04\x01\x04\x01\x05\x03\x03\x04", // 痎
+ 0x75cf: "\x04\x01\x03\x04\x01\x01\x03\x02\x05\x01\x01", // 痏
+ 0x75d0: "\x04\x01\x03\x04\x01\x02\x05\x02\x05\x01\x01", // 痐
+ 0x75d1: "\x04\x01\x03\x04\x01\x03\x05\x04\x03\x05\x04", // 痑
+ 0x75d2: "\x04\x01\x03\x04\x01\x04\x03\x01\x01\x01\x02", // 痒
+ 0x75d3: "\x04\x01\x03\x04\x01\x01\x05\x04\x01\x02\x01", // 痓
+ 0x75d4: "\x04\x01\x03\x04\x01\x01\x02\x01\x01\x02\x04", // 痔
+ 0x75d5: "\x04\x01\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 痕
+ 0x75d6: "\x04\x01\x03\x04\x01\x01\x02\x02\x04\x03\x01", // 痖
+ 0x75d7: "\x04\x01\x03\x04\x01\x03\x01\x05\x05\x04\x01\x04", // 痗
+ 0x75d8: "\x04\x01\x03\x04\x01\x01\x02\x05\x01\x04\x03\x01", // 痘
+ 0x75d9: "\x04\x01\x03\x04\x01\x01\x05\x05\x05\x01\x02\x01", // 痙
+ 0x75da: "\x04\x01\x03\x04\x01\x01\x02\x01\x03\x05\x02\x01", // 痚
+ 0x75db: "\x04\x01\x03\x04\x01\x05\x04\x02\x05\x01\x01\x02", // 痛
+ 0x75dc: "\x04\x01\x03\x04\x01\x03\x01\x02\x03\x04\x03\x05", // 痜
+ 0x75dd: "\x04\x01\x03\x04\x01\x01\x03\x05\x03\x03\x03\x04", // 痝
+ 0x75de: "\x04\x01\x03\x04\x01\x01\x03\x02\x04\x02\x05\x01", // 痞
+ 0x75df: "\x04\x01\x03\x04\x01\x02\x04\x03\x02\x05\x01\x01", // 痟
+ 0x75e0: "\x04\x01\x03\x04\x01\x05\x04\x03\x04\x03\x05\x04", // 痠
+ 0x75e1: "\x04\x01\x03\x04\x01\x01\x02\x05\x01\x01\x02\x04", // 痡
+ 0x75e2: "\x04\x01\x03\x04\x01\x03\x01\x02\x03\x04\x02\x02", // 痢
+ 0x75e3: "\x04\x01\x03\x04\x01\x01\x02\x01\x04\x05\x04\x04", // 痣
+ 0x75e4: "\x04\x01\x03\x04\x01\x03\x04\x03\x04\x01\x02\x01", // 痤
+ 0x75e5: "\x04\x01\x03\x04\x01\x04\x03\x02\x05\x01\x03\x05", // 痥
+ 0x75e6: "\x04\x01\x03\x04\x01\x01\x02\x05\x01\x02\x05\x01", // 痦
+ 0x75e7: "\x04\x01\x03\x04\x01\x04\x04\x01\x02\x03\x04\x03", // 痧
+ 0x75e8: "\x04\x01\x03\x04\x01\x01\x02\x02\x04\x05\x05\x03", // 痨
+ 0x75e9: "\x04\x01\x03\x04\x01\x02\x05\x01\x01\x02\x05\x04", // 痩
+ 0x75ea: "\x04\x01\x03\x04\x01\x03\x05\x02\x05\x01\x03\x04", // 痪
+ 0x75eb: "\x04\x01\x03\x04\x01\x04\x02\x05\x01\x02\x03\x04", // 痫
+ 0x75ec: "\x04\x01\x03\x04\x01\x02\x05\x01\x01\x03\x05\x03\x03", // 痬
+ 0x75ed: "\x04\x01\x03\x04\x01\x03\x05\x01\x01\x03\x05\x01\x01", // 痭
+ 0x75ee: "\x04\x01\x03\x04\x01\x01\x02\x01\x01\x01\x05\x03\x04", // 痮
+ 0x75ef: "\x04\x01\x03\x04\x01\x04\x04\x05\x02\x05\x01\x05\x01", // 痯
+ 0x75f0: "\x04\x01\x03\x04\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 痰
+ 0x75f1: "\x04\x01\x03\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01", // 痱
+ 0x75f2: "\x04\x01\x03\x04\x01\x01\x02\x03\x02\x01\x02\x03\x05", // 痲
+ 0x75f3: "\x04\x01\x03\x04\x01\x01\x02\x03\x04\x01\x02\x03\x04", // 痳
+ 0x75f4: "\x04\x01\x03\x04\x01\x03\x01\x01\x03\x04\x02\x05\x01", // 痴
+ 0x75f5: "\x04\x01\x03\x04\x01\x03\x01\x02\x03\x04\x05\x02\x01", // 痵
+ 0x75f6: "\x04\x01\x03\x04\x01\x02\x05\x01\x02\x02\x01\x03\x04", // 痶
+ 0x75f7: "\x04\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01\x05", // 痷
+ 0x75f8: "\x04\x01\x03\x04\x01\x03\x01\x01\x02\x05\x02\x02\x02", // 痸
+ 0x75f9: "\x04\x01\x03\x04\x01\x02\x05\x01\x02\x01\x01\x03\x02", // 痹
+ 0x75fa: "\x04\x01\x03\x04\x01\x03\x02\x05\x01\x01\x03\x01\x02", // 痺
+ 0x75fb: "\x04\x01\x03\x04\x01\x03\x05\x01\x05\x02\x05\x01\x01", // 痻
+ 0x75fc: "\x04\x01\x03\x04\x01\x02\x05\x01\x02\x02\x05\x01\x01", // 痼
+ 0x75fd: "\x04\x01\x03\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 痽
+ 0x75fe: "\x04\x01\x03\x04\x01\x05\x02\x01\x02\x05\x01\x02", // 痾
+ 0x75ff: "\x04\x01\x03\x04\x01\x03\x01\x02\x03\x04\x05\x03\x01", // 痿
+ 0x7600: "\x04\x01\x03\x04\x01\x04\x01\x05\x03\x03\x04\x04\x04", // 瘀
+ 0x7601: "\x04\x01\x03\x04\x01\x04\x01\x03\x04\x03\x04\x01\x02", // 瘁
+ 0x7602: "\x04\x01\x03\x04\x01\x01\x02\x01\x05\x05\x01\x02\x01", // 瘂
+ 0x7603: "\x04\x01\x03\x04\x01\x01\x03\x05\x03\x03\x04\x03\x04", // 瘃
+ 0x7604: "\x04\x01\x03\x04\x01\x01\x02\x02\x01\x02\x05\x01\x01", // 瘄
+ 0x7605: "\x04\x01\x03\x04\x01\x04\x03\x02\x05\x01\x01\x01\x02", // 瘅
+ 0x7606: "\x04\x01\x03\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 瘆
+ 0x7607: "\x04\x01\x03\x04\x01\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 瘇
+ 0x7608: "\x04\x01\x03\x04\x01\x01\x01\x01\x02\x05\x03\x01\x03\x04", // 瘈
+ 0x7609: "\x04\x01\x03\x04\x01\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 瘉
+ 0x760a: "\x04\x01\x03\x04\x01\x03\x02\x05\x01\x03\x01\x01\x03\x04", // 瘊
+ 0x760b: "\x04\x01\x03\x04\x01\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 瘋
+ 0x760c: "\x04\x01\x03\x04\x01\x01\x02\x05\x01\x02\x03\x04\x02\x02", // 瘌
+ 0x760d: "\x04\x01\x03\x04\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 瘍
+ 0x760e: "\x04\x01\x03\x04\x01\x01\x02\x02\x01\x01\x01\x03\x04\x05", // 瘎
+ 0x760f: "\x04\x01\x03\x04\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 瘏
+ 0x7610: "\x04\x01\x03\x04\x01\x03\x02\x01\x05\x01\x01\x03\x04", // 瘐
+ 0x7611: "\x04\x01\x03\x04\x01\x02\x05\x05\x02\x05\x02\x05\x01", // 瘑
+ 0x7612: "\x04\x01\x03\x04\x01\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 瘒
+ 0x7613: "\x04\x01\x03\x04\x01\x03\x05\x02\x05\x03\x04\x01\x03\x04", // 瘓
+ 0x7614: "\x04\x01\x03\x04\x01\x01\x02\x02\x01\x02\x02\x05\x01", // 瘔
+ 0x7615: "\x04\x01\x03\x04\x01\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 瘕
+ 0x7616: "\x04\x01\x03\x04\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 瘖
+ 0x7617: "\x04\x01\x03\x04\x01\x01\x04\x03\x01\x03\x04\x01\x02\x01", // 瘗
+ 0x7618: "\x04\x01\x03\x04\x01\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 瘘
+ 0x7619: "\x04\x01\x03\x04\x01\x05\x04\x04\x02\x05\x01\x02\x01\x04", // 瘙
+ 0x761a: "\x04\x01\x03\x04\x01\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04", // 瘚
+ 0x761b: "\x04\x01\x03\x04\x01\x01\x01\x01\x02\x05\x03\x04\x05\x04\x04", // 瘛
+ 0x761c: "\x04\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x04\x05\x04\x04", // 瘜
+ 0x761d: "\x04\x01\x03\x04\x01\x02\x05\x02\x02\x01\x02\x03\x03\x04\x04", // 瘝
+ 0x761e: "\x04\x01\x03\x04\x01\x01\x03\x04\x03\x04\x03\x04\x01\x02\x01", // 瘞
+ 0x761f: "\x04\x01\x03\x04\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 瘟
+ 0x7620: "\x04\x01\x03\x04\x01\x04\x01\x03\x04\x03\x04\x02\x05\x01\x01", // 瘠
+ 0x7621: "\x04\x01\x03\x04\x01\x03\x04\x04\x05\x01\x01\x03\x02\x05\x01", // 瘡
+ 0x7622: "\x04\x01\x03\x04\x01\x03\x03\x05\x04\x01\x04\x03\x05\x05\x04", // 瘢
+ 0x7623: "\x04\x01\x03\x04\x01\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 瘣
+ 0x7624: "\x04\x01\x03\x04\x01\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 瘤
+ 0x7625: "\x04\x01\x03\x04\x01\x04\x03\x01\x01\x01\x03\x01\x02\x01", // 瘥
+ 0x7626: "\x04\x01\x03\x04\x01\x03\x02\x01\x05\x01\x01\x02\x05\x04", // 瘦
+ 0x7627: "\x04\x01\x03\x04\x01\x02\x01\x05\x03\x01\x05\x01\x05\x01", // 瘧
+ 0x7628: "\x04\x01\x03\x04\x01\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 瘨
+ 0x7629: "\x04\x01\x03\x04\x01\x01\x02\x02\x03\x04\x01\x02\x05\x01", // 瘩
+ 0x762a: "\x04\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04\x03\x05", // 瘪
+ 0x762b: "\x04\x01\x03\x04\x01\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 瘫
+ 0x762c: "\x04\x01\x03\x04\x01\x05\x01\x05\x01\x02\x01\x01\x01\x05\x03\x04", // 瘬
+ 0x762d: "\x04\x01\x03\x04\x01\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 瘭
+ 0x762e: "\x04\x01\x03\x04\x01\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 瘮
+ 0x762f: "\x04\x01\x03\x04\x01\x04\x01\x05\x03\x03\x01\x03\x01\x01\x03\x04", // 瘯
+ 0x7630: "\x04\x01\x03\x04\x01\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 瘰
+ 0x7631: "\x04\x01\x03\x04\x01\x01\x03\x04\x03\x04\x03\x04\x04\x05\x04\x04", // 瘱
+ 0x7632: "\x04\x01\x03\x04\x01\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04", // 瘲
+ 0x7633: "\x04\x01\x03\x04\x01\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 瘳
+ 0x7634: "\x04\x01\x03\x04\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02", // 瘴
+ 0x7635: "\x04\x01\x03\x04\x01\x03\x05\x04\x04\x05\x04\x01\x01\x02\x03\x04", // 瘵
+ 0x7636: "\x04\x01\x03\x04\x01\x01\x02\x05\x01\x02\x03\x04\x03\x05\x03\x04", // 瘶
+ 0x7637: "\x04\x01\x03\x04\x01\x01\x02\x05\x01\x02\x03\x04\x03\x01\x03\x04", // 瘷
+ 0x7638: "\x04\x01\x03\x04\x01\x05\x03\x02\x05\x01\x02\x05\x03\x04\x03\x04", // 瘸
+ 0x7639: "\x04\x01\x03\x04\x01\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x04", // 瘹
+ 0x763a: "\x04\x01\x03\x04\x01\x05\x01\x03\x01\x02\x05\x02\x04\x04\x04\x04", // 瘺
+ 0x763b: "\x04\x01\x03\x04\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 瘻
+ 0x763c: "\x04\x01\x03\x04\x01\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 瘼
+ 0x763d: "\x04\x01\x03\x04\x01\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01", // 瘽
+ 0x763e: "\x04\x01\x03\x04\x01\x05\x02\x03\x05\x05\x01\x01\x04\x05\x04\x04", // 瘾
+ 0x763f: "\x04\x01\x03\x04\x01\x02\x05\x03\x04\x02\x05\x03\x04\x05\x03\x01", // 瘿
+ 0x7640: "\x04\x01\x03\x04\x01\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 癀
+ 0x7641: "\x04\x01\x03\x04\x01\x03\x03\x02\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 癁
+ 0x7642: "\x04\x01\x03\x04\x01\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 療
+ 0x7643: "\x04\x01\x03\x04\x01\x05\x02\x03\x05\x04\x01\x03\x01\x01\x02\x01", // 癃
+ 0x7644: "\x04\x01\x03\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 癄
+ 0x7645: "\x04\x01\x03\x04\x01\x01\x02\x02\x01\x05\x05\x01\x02\x05\x01\x02\x01", // 癅
+ 0x7646: "\x04\x01\x03\x04\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x05\x03", // 癆
+ 0x7647: "\x04\x01\x03\x04\x01\x02\x05\x01\x01\x02\x05\x01\x01\x03\x05\x01\x01", // 癇
+ 0x7648: "\x04\x01\x03\x04\x01\x05\x04\x03\x03\x04\x05\x01\x05\x03\x05\x05\x04", // 癈
+ 0x7649: "\x04\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 癉
+ 0x764a: "\x04\x01\x03\x04\x01\x05\x02\x03\x04\x04\x05\x01\x01\x05\x04", // 癊
+ 0x764b: "\x04\x01\x03\x04\x01\x01\x02\x01\x05\x05\x01\x02\x01\x04\x05\x04\x04", // 癋
+ 0x764c: "\x04\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x02", // 癌
+ 0x764d: "\x04\x01\x03\x04\x01\x01\x01\x02\x01\x04\x01\x03\x04\x01\x01\x02\x01", // 癍
+ 0x764e: "\x04\x01\x03\x04\x01\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01", // 癎
+ 0x764f: "\x04\x01\x03\x04\x01\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 癏
+ 0x7650: "\x04\x01\x03\x04\x01\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 癐
+ 0x7651: "\x04\x01\x03\x04\x01\x02\x05\x01\x02\x02\x01\x01\x03\x01\x01\x05\x03\x04", // 癑
+ 0x7652: "\x04\x01\x03\x04\x01\x03\x04\x01\x02\x05\x01\x01\x02\x02\x04\x05\x04\x04", // 癒
+ 0x7653: "\x04\x01\x03\x04\x01\x03\x03\x02\x02\x05\x02\x01\x03\x05\x03\x01\x03\x04", // 癓
+ 0x7654: "\x04\x01\x03\x04\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 癔
+ 0x7655: "\x04\x01\x03\x04\x01\x04\x01\x05\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 癕
+ 0x7656: "\x04\x01\x03\x04\x01\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 癖
+ 0x7657: "\x04\x01\x03\x04\x01\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x01", // 癗
+ 0x7658: "\x04\x01\x03\x04\x01\x01\x02\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 癘
+ 0x7659: "\x04\x01\x03\x04\x01\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05", // 癙
+ 0x765a: "\x04\x01\x03\x04\x01\x03\x05\x01\x03\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 癚
+ 0x765b: "\x04\x01\x03\x04\x01\x04\x01\x02\x05\x02\x05\x01\x01\x03\x01\x02\x03\x04", // 癛
+ 0x765c: "\x04\x01\x03\x04\x01\x05\x01\x03\x01\x02\x02\x01\x03\x04\x03\x05\x05\x04", // 癜
+ 0x765d: "\x04\x01\x03\x04\x01\x04\x01\x02\x05\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 癝
+ 0x765e: "\x04\x01\x03\x04\x01\x01\x02\x05\x01\x02\x03\x04\x03\x05\x02\x05\x03\x04", // 癞
+ 0x765f: "\x04\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04\x01\x02\x05\x01\x02\x02", // 癟
+ 0x7660: "\x04\x01\x03\x04\x01\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x01\x01\x02", // 癠
+ 0x7661: "\x04\x01\x03\x04\x01\x03\x05\x03\x01\x01\x03\x04\x05\x04\x05\x02\x01\x03\x04", // 癡
+ 0x7662: "\x04\x01\x03\x04\x01\x04\x03\x01\x01\x01\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 癢
+ 0x7663: "\x04\x01\x03\x04\x01\x03\x05\x02\x05\x01\x02\x01\x01\x04\x03\x01\x01\x01\x02", // 癣
+ 0x7664: "\x04\x01\x03\x04\x01\x03\x01\x04\x03\x01\x04\x05\x01\x01\x05\x04\x05\x02", // 癤
+ 0x7665: "\x04\x01\x03\x04\x01\x03\x03\x02\x02\x05\x02\x01\x01\x01\x02\x01\x03\x01\x03\x04", // 癥
+ 0x7666: "\x04\x01\x03\x04\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x01", // 癦
+ 0x7667: "\x04\x01\x03\x04\x01\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 癧
+ 0x7668: "\x04\x01\x03\x04\x01\x01\x04\x05\x02\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 癨
+ 0x7669: "\x04\x01\x03\x04\x01\x01\x02\x05\x01\x02\x03\x04\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 癩
+ 0x766a: "\x04\x01\x03\x04\x01\x03\x01\x02\x03\x04\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 癪
+ 0x766b: "\x04\x01\x03\x04\x01\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04\x01\x03\x02\x05\x03\x04", // 癫
+ 0x766c: "\x04\x01\x03\x04\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x01\x01\x01\x02", // 癬
+ 0x766d: "\x04\x01\x03\x04\x01\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x05\x03\x01", // 癭
+ 0x766e: "\x04\x01\x03\x04\x01\x05\x02\x03\x04\x04\x03\x01\x02\x01\x05\x01\x01\x04\x05\x04\x04", // 癮
+ 0x766f: "\x04\x01\x03\x04\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 癯
+ 0x7670: "\x04\x01\x03\x04\x01\x05\x05\x05\x02\x05\x01\x05\x02\x01\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 癰
+ 0x7671: "\x04\x01\x03\x04\x01\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 癱
+ 0x7672: "\x04\x01\x03\x04\x01\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 癲
+ 0x7673: "\x04\x01\x03\x04\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 癳
+ 0x7674: "\x04\x01\x03\x04\x01\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x03\x01\x01\x02", // 癴
+ 0x7675: "\x04\x01\x03\x04\x01\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x02\x05\x03\x04\x03\x04", // 癵
+ 0x7676: "\x05\x04\x03\x03\x04", // 癶
+ 0x7677: "\x05\x04\x03\x03\x04\x01\x01\x02", // 癷
+ 0x7678: "\x05\x04\x03\x03\x04\x01\x01\x03\x04", // 癸
+ 0x7679: "\x05\x04\x03\x03\x04\x03\x05\x05\x04", // 癹
+ 0x767a: "\x05\x04\x03\x03\x04\x01\x01\x03\x05", // 発
+ 0x767b: "\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 登
+ 0x767c: "\x05\x04\x03\x03\x04\x05\x01\x05\x03\x05\x05\x04", // 發
+ 0x767d: "\x03\x02\x05\x01\x01", // 白
+ 0x767e: "\x01\x03\x02\x05\x01\x01", // 百
+ 0x767f: "\x03\x02\x05\x01\x01\x05", // 癿
+ 0x7680: "\x03\x02\x05\x01\x01\x03\x05", // 皀
+ 0x7681: "\x03\x02\x05\x01\x01\x01\x02", // 皁
+ 0x7682: "\x03\x02\x05\x01\x01\x01\x05", // 皂
+ 0x7683: "\x03\x02\x05\x01\x01\x03\x05", // 皃
+ 0x7684: "\x03\x02\x05\x01\x01\x03\x05\x04", // 的
+ 0x7685: "\x03\x02\x05\x01\x01\x05\x02\x01\x05", // 皅
+ 0x7686: "\x01\x05\x03\x05\x03\x02\x05\x01\x01", // 皆
+ 0x7687: "\x03\x02\x05\x01\x01\x01\x01\x02\x01", // 皇
+ 0x7688: "\x03\x02\x05\x01\x01\x03\x03\x05\x04", // 皈
+ 0x7689: "\x03\x02\x05\x01\x01\x02\x01\x02\x01\x03\x05", // 皉
+ 0x768a: "\x03\x02\x05\x01\x01\x03\x04\x04\x05\x04", // 皊
+ 0x768b: "\x03\x02\x05\x01\x01\x01\x03\x04\x01\x02", // 皋
+ 0x768c: "\x03\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 皌
+ 0x768d: "\x03\x02\x05\x01\x01\x01\x05\x05\x02", // 皍
+ 0x768e: "\x03\x02\x05\x01\x01\x04\x01\x03\x04\x03\x04", // 皎
+ 0x768f: "\x03\x02\x05\x01\x01\x04\x03\x01\x01\x03\x02", // 皏
+ 0x7690: "\x03\x02\x05\x01\x01\x04\x01\x03\x04\x01\x02", // 皐
+ 0x7691: "\x03\x02\x05\x01\x01\x02\x05\x02\x05\x01\x05", // 皑
+ 0x7692: "\x03\x02\x05\x01\x01\x03\x01\x02\x01\x05\x03\x04", // 皒
+ 0x7693: "\x03\x02\x05\x01\x01\x03\x01\x02\x01\x02\x05\x01", // 皓
+ 0x7694: "\x03\x02\x05\x01\x01\x02\x05\x01\x01\x01\x01\x02", // 皔
+ 0x7695: "\x01\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01", // 皕
+ 0x7696: "\x03\x02\x05\x01\x01\x04\x04\x05\x01\x01\x03\x05", // 皖
+ 0x7697: "\x03\x02\x05\x01\x01\x03\x05\x01\x02\x01\x02\x05\x01", // 皗
+ 0x7698: "\x03\x02\x05\x01\x01\x01\x01\x02\x01\x02\x05\x01\x01", // 皘
+ 0x7699: "\x01\x02\x03\x04\x03\x03\x01\x02\x03\x02\x05\x01\x01", // 皙
+ 0x769a: "\x03\x02\x05\x01\x01\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 皚
+ 0x769b: "\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01", // 皛
+ 0x769c: "\x03\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 皜
+ 0x769d: "\x03\x02\x05\x01\x01\x01\x01\x02\x01\x02\x04\x03\x01\x03\x05", // 皝
+ 0x769e: "\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04\x01\x02", // 皞
+ 0x769f: "\x03\x02\x05\x01\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 皟
+ 0x76a0: "\x03\x02\x05\x01\x01\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 皠
+ 0x76a1: "\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x04\x01\x03\x04\x01\x02", // 皡
+ 0x76a2: "\x03\x02\x05\x01\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 皢
+ 0x76a3: "\x03\x02\x05\x01\x01\x01\x02\x02\x01\x01\x02\x02\x01\x01\x02", // 皣
+ 0x76a4: "\x03\x02\x05\x01\x01\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 皤
+ 0x76a5: "\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x04\x01\x03\x04\x01\x02", // 皥
+ 0x76a6: "\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x03\x04", // 皦
+ 0x76a7: "\x03\x02\x05\x01\x01\x03\x04\x04\x03\x04\x05\x04\x05\x04\x04\x03\x05\x04", // 皧
+ 0x76a8: "\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x02\x01", // 皨
+ 0x76a9: "\x03\x02\x05\x01\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04\x03\x01\x03\x05", // 皩
+ 0x76aa: "\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x03\x04", // 皪
+ 0x76ab: "\x03\x02\x05\x01\x01\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x04\x04\x04\x04", // 皫
+ 0x76ac: "\x03\x02\x05\x01\x01\x01\x04\x05\x02\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 皬
+ 0x76ad: "\x03\x02\x05\x01\x01\x03\x04\x04\x03\x02\x05\x02\x02\x01\x05\x01\x01\x05\x04\x01\x02\x04", // 皭
+ 0x76ae: "\x05\x03\x02\x05\x04", // 皮
+ 0x76af: "\x05\x03\x02\x05\x04\x01\x01\x02", // 皯
+ 0x76b0: "\x05\x03\x02\x05\x04\x03\x05\x05\x01\x05", // 皰
+ 0x76b1: "\x03\x05\x05\x01\x01\x05\x03\x02\x05\x04", // 皱
+ 0x76b2: "\x04\x05\x01\x05\x02\x01\x05\x03\x02\x05\x04", // 皲
+ 0x76b3: "\x01\x02\x04\x01\x03\x04\x04\x05\x03\x02\x05\x04", // 皳
+ 0x76b4: "\x05\x04\x03\x04\x03\x05\x04\x05\x03\x02\x05\x04", // 皴
+ 0x76b5: "\x01\x02\x02\x01\x02\x05\x01\x01\x05\x03\x02\x05\x04", // 皵
+ 0x76b6: "\x01\x02\x03\x04\x02\x05\x01\x01\x01\x05\x03\x02\x05\x04", // 皶
+ 0x76b7: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x05\x03\x02\x05\x04", // 皷
+ 0x76b8: "\x04\x05\x01\x02\x05\x01\x01\x01\x02\x05\x03\x02\x05\x04", // 皸
+ 0x76b9: "\x05\x03\x02\x05\x04\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 皹
+ 0x76ba: "\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03\x05\x03\x02\x05\x04", // 皺
+ 0x76bb: "\x02\x01\x05\x03\x01\x05\x02\x05\x01\x01\x01\x05\x03\x02\x05\x04", // 皻
+ 0x76bc: "\x01\x02\x01\x04\x05\x01\x02\x05\x01\x04\x03\x01\x05\x03\x02\x05\x04", // 皼
+ 0x76bd: "\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01\x05\x03\x02\x05\x04", // 皽
+ 0x76be: "\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x05\x03\x02\x05\x04", // 皾
+ 0x76bf: "\x02\x05\x02\x02\x01", // 皿
+ 0x76c0: "\x02\x04\x02\x05\x02\x02\x01", // 盀
+ 0x76c1: "\x05\x03\x02\x05\x02\x02\x01", // 盁
+ 0x76c2: "\x01\x01\x02\x02\x05\x02\x02\x01", // 盂
+ 0x76c3: "\x01\x03\x02\x04\x02\x05\x02\x02\x01", // 盃
+ 0x76c4: "\x05\x01\x05\x02\x02\x05\x02\x02\x01", // 盄
+ 0x76c5: "\x02\x05\x01\x02\x02\x05\x02\x02\x01", // 盅
+ 0x76c6: "\x03\x04\x05\x03\x02\x05\x02\x02\x01", // 盆
+ 0x76c7: "\x01\x03\x04\x04\x02\x05\x02\x02\x01", // 盇
+ 0x76c8: "\x05\x03\x05\x04\x02\x05\x02\x02\x01", // 盈
+ 0x76c9: "\x03\x01\x02\x03\x04\x02\x05\x02\x02\x01", // 盉
+ 0x76ca: "\x04\x03\x01\x03\x04\x02\x05\x02\x02\x01", // 益
+ 0x76cb: "\x01\x03\x05\x04\x04\x02\x05\x02\x02\x01", // 盋
+ 0x76cc: "\x03\x05\x04\x05\x05\x02\x05\x02\x02\x01", // 盌
+ 0x76cd: "\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 盍
+ 0x76ce: "\x02\x05\x01\x03\x04\x02\x05\x02\x02\x01", // 盎
+ 0x76cf: "\x01\x01\x05\x03\x04\x02\x05\x02\x02\x01", // 盏
+ 0x76d0: "\x01\x02\x01\x02\x04\x02\x05\x02\x02\x01", // 盐
+ 0x76d1: "\x02\x02\x03\x01\x04\x02\x05\x02\x02\x01", // 监
+ 0x76d2: "\x03\x04\x01\x02\x05\x01\x02\x05\x02\x02\x01", // 盒
+ 0x76d3: "\x04\x04\x01\x01\x01\x02\x02\x05\x02\x02\x01", // 盓
+ 0x76d4: "\x01\x03\x04\x03\x03\x04\x02\x05\x02\x02\x01", // 盔
+ 0x76d5: "\x04\x04\x01\x03\x05\x04\x02\x05\x02\x02\x01", // 盕
+ 0x76d6: "\x04\x03\x01\x01\x02\x01\x02\x05\x02\x02\x01", // 盖
+ 0x76d7: "\x04\x01\x03\x05\x03\x04\x02\x05\x02\x02\x01", // 盗
+ 0x76d8: "\x03\x03\x05\x04\x01\x04\x02\x05\x02\x02\x01", // 盘
+ 0x76d9: "\x01\x02\x05\x01\x01\x02\x04\x02\x05\x02\x02\x01", // 盙
+ 0x76da: "\x01\x02\x04\x01\x03\x04\x04\x02\x05\x02\x02\x01", // 盚
+ 0x76db: "\x01\x03\x05\x05\x03\x04\x02\x05\x02\x02\x01", // 盛
+ 0x76dc: "\x04\x04\x01\x03\x05\x03\x04\x02\x05\x02\x02\x01", // 盜
+ 0x76dd: "\x05\x01\x01\x02\x04\x01\x03\x04\x02\x05\x02\x02\x01", // 盝
+ 0x76de: "\x01\x05\x03\x04\x01\x05\x03\x04\x02\x05\x02\x02\x01", // 盞
+ 0x76df: "\x02\x05\x01\x01\x03\x05\x01\x01\x02\x05\x02\x02\x01", // 盟
+ 0x76e0: "\x05\x05\x01\x03\x05\x03\x03\x03\x04\x02\x05\x02\x02\x01", // 盠
+ 0x76e1: "\x05\x01\x01\x02\x01\x04\x04\x04\x04\x02\x05\x02\x02\x01", // 盡
+ 0x76e2: "\x02\x05\x01\x02\x01\x01\x03\x04\x04\x02\x05\x02\x02\x01", // 盢
+ 0x76e3: "\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01", // 監
+ 0x76e4: "\x03\x03\x05\x04\x01\x04\x03\x05\x05\x04\x02\x05\x02\x02\x01", // 盤
+ 0x76e5: "\x03\x02\x01\x01\x02\x05\x03\x04\x05\x01\x01\x02\x05\x02\x02\x01", // 盥
+ 0x76e6: "\x03\x04\x04\x05\x01\x02\x05\x03\x05\x01\x01\x02\x05\x02\x02\x01", // 盦
+ 0x76e7: "\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 盧
+ 0x76e8: "\x03\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04\x02\x05\x02\x02\x01", // 盨
+ 0x76e9: "\x01\x02\x01\x04\x03\x01\x01\x02\x03\x01\x03\x04\x02\x05\x02\x02\x01", // 盩
+ 0x76ea: "\x04\x04\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03\x02\x05\x02\x02\x01", // 盪
+ 0x76eb: "\x03\x04\x01\x02\x05\x01\x01\x02\x05\x03\x05\x01\x01\x02\x05\x02\x02\x01", // 盫
+ 0x76ec: "\x01\x02\x05\x01\x02\x05\x03\x01\x01\x02\x02\x05\x01\x02\x05\x02\x02\x01", // 盬
+ 0x76ed: "\x05\x05\x04\x01\x02\x01\x04\x03\x01\x01\x02\x03\x01\x03\x04\x02\x05\x02\x02\x01", // 盭
+ 0x76ee: "\x02\x05\x01\x01\x01", // 目
+ 0x76ef: "\x02\x05\x01\x01\x01\x01\x02", // 盯
+ 0x76f0: "\x02\x05\x01\x01\x01\x01\x01\x02", // 盰
+ 0x76f1: "\x02\x05\x01\x01\x01\x01\x01\x02", // 盱
+ 0x76f2: "\x04\x01\x05\x02\x05\x01\x01\x01", // 盲
+ 0x76f3: "\x02\x05\x01\x01\x01\x04\x01\x05", // 盳
+ 0x76f4: "\x01\x02\x02\x05\x01\x01\x01\x01", // 直
+ 0x76f5: "\x02\x05\x01\x01\x01\x03\x01\x05", // 盵
+ 0x76f6: "\x02\x05\x01\x01\x01\x01\x01\x03\x05", // 盶
+ 0x76f7: "\x02\x05\x01\x01\x01\x03\x05\x04\x01", // 盷
+ 0x76f8: "\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 相
+ 0x76f9: "\x02\x05\x01\x01\x01\x01\x05\x02\x05", // 盹
+ 0x76fa: "\x02\x05\x01\x01\x01\x03\x03\x01\x02", // 盺
+ 0x76fb: "\x02\x05\x01\x01\x01\x03\x04\x01\x05", // 盻
+ 0x76fc: "\x02\x05\x01\x01\x01\x03\x04\x05\x03", // 盼
+ 0x76fd: "\x02\x05\x01\x01\x01\x01\x01\x01\x02", // 盽
+ 0x76fe: "\x03\x03\x01\x02\x02\x05\x01\x01\x01", // 盾
+ 0x76ff: "\x02\x05\x01\x01\x01\x04\x01\x03\x04", // 盿
+ 0x7700: "\x02\x05\x01\x01\x01\x03\x05\x01\x01", // 眀
+ 0x7701: "\x02\x03\x04\x03\x02\x05\x01\x01\x01", // 省
+ 0x7702: "\x02\x05\x01\x01\x01\x03\x05\x01\x05", // 眂
+ 0x7703: "\x02\x05\x01\x01\x01\x01\x01\x05\x04", // 眃
+ 0x7704: "\x02\x05\x01\x01\x01\x01\x02\x05\x05", // 眄
+ 0x7705: "\x02\x05\x01\x01\x01\x03\x03\x05\x04", // 眅
+ 0x7706: "\x02\x05\x01\x01\x01\x04\x01\x05\x03", // 眆
+ 0x7707: "\x02\x05\x01\x01\x01\x02\x03\x04\x03", // 眇
+ 0x7708: "\x02\x05\x01\x01\x01\x04\x05\x03\x05", // 眈
+ 0x7709: "\x05\x02\x01\x03\x02\x05\x01\x01\x01", // 眉
+ 0x770a: "\x02\x05\x01\x01\x01\x03\x01\x01\x05", // 眊
+ 0x770b: "\x03\x01\x01\x03\x02\x05\x01\x01\x01", // 看
+ 0x770c: "\x02\x05\x01\x01\x01\x05\x02\x03\x04", // 県
+ 0x770d: "\x02\x05\x01\x01\x01\x01\x03\x04\x05", // 眍
+ 0x770e: "\x02\x05\x01\x01\x01\x01\x01\x02\x03\x04", // 眎
+ 0x770f: "\x02\x05\x01\x01\x01\x02\x05\x01\x03\x04", // 眏
+ 0x7710: "\x02\x05\x01\x01\x01\x01\x02\x01\x02\x01", // 眐
+ 0x7711: "\x02\x05\x01\x01\x01\x05\x05\x04\x05\x03", // 眑
+ 0x7712: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x02", // 眒
+ 0x7713: "\x02\x05\x01\x01\x01\x01\x05\x05\x03\x04", // 眓
+ 0x7714: "\x02\x05\x02\x02\x01\x02\x03\x03\x04\x04", // 眔
+ 0x7715: "\x02\x05\x01\x01\x01\x03\x04\x03\x03\x03", // 眕
+ 0x7716: "\x02\x05\x01\x01\x01\x02\x05\x01\x03\x05", // 眖
+ 0x7717: "\x02\x05\x01\x01\x01\x03\x05\x02\x05\x01", // 眗
+ 0x7718: "\x01\x03\x04\x04\x03\x02\x05\x01\x01\x01", // 眘
+ 0x7719: "\x02\x05\x01\x01\x01\x05\x04\x02\x05\x01", // 眙
+ 0x771a: "\x03\x01\x01\x02\x01\x02\x05\x01\x01\x01", // 眚
+ 0x771b: "\x02\x05\x01\x01\x01\x01\x01\x02\x03\x04", // 眛
+ 0x771c: "\x02\x05\x01\x01\x01\x01\x01\x02\x03\x04", // 眜
+ 0x771d: "\x02\x05\x01\x01\x01\x04\x04\x05\x01\x02", // 眝
+ 0x771e: "\x03\x05\x02\x05\x01\x01\x01\x05\x03\x04", // 眞
+ 0x771f: "\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 真
+ 0x7720: "\x02\x05\x01\x01\x01\x05\x01\x05\x01\x05", // 眠
+ 0x7721: "\x02\x05\x01\x01\x01\x03\x05\x01\x05\x04", // 眡
+ 0x7722: "\x03\x05\x04\x05\x05\x02\x05\x01\x01\x01", // 眢
+ 0x7723: "\x02\x05\x01\x01\x01\x03\x01\x01\x03\x04", // 眣
+ 0x7724: "\x02\x05\x01\x01\x01\x05\x01\x03\x03\x05", // 眤
+ 0x7725: "\x02\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01", // 眥
+ 0x7726: "\x02\x05\x01\x01\x01\x02\x01\x02\x01\x03\x05", // 眦
+ 0x7727: "\x02\x05\x01\x01\x01\x05\x03\x02\x05\x01", // 眧
+ 0x7728: "\x02\x05\x01\x01\x01\x03\x04\x05\x04", // 眨
+ 0x7729: "\x02\x05\x01\x01\x01\x04\x01\x05\x05\x04", // 眩
+ 0x772a: "\x02\x05\x01\x01\x01\x01\x02\x05\x03\x04", // 眪
+ 0x772b: "\x02\x05\x01\x01\x01\x04\x03\x01\x01\x02", // 眫
+ 0x772c: "\x02\x05\x01\x01\x01\x01\x03\x05\x03\x04", // 眬
+ 0x772d: "\x02\x05\x01\x01\x01\x01\x02\x01\x01\x02\x01", // 眭
+ 0x772e: "\x02\x05\x01\x01\x01\x02\x05\x01\x02\x05\x01", // 眮
+ 0x772f: "\x02\x05\x01\x01\x01\x04\x03\x01\x02\x03\x04", // 眯
+ 0x7730: "\x02\x05\x01\x01\x01\x01\x05\x04\x01\x02\x01", // 眰
+ 0x7731: "\x02\x05\x01\x01\x01\x01\x05\x01\x05\x03\x04", // 眱
+ 0x7732: "\x02\x05\x01\x01\x01\x01\x02\x02\x01\x01\x01", // 眲
+ 0x7733: "\x02\x05\x01\x01\x01\x03\x05\x04\x02\x05\x01", // 眳
+ 0x7734: "\x02\x05\x01\x01\x01\x03\x05\x02\x05\x01\x01", // 眴
+ 0x7735: "\x02\x05\x01\x01\x01\x03\x05\x04\x03\x05\x04", // 眵
+ 0x7736: "\x02\x05\x01\x01\x01\x01\x01\x01\x02\x01\x05", // 眶
+ 0x7737: "\x04\x03\x01\x01\x03\x04\x02\x05\x01\x01\x01", // 眷
+ 0x7738: "\x02\x05\x01\x01\x01\x05\x04\x03\x01\x01\x02", // 眸
+ 0x7739: "\x02\x05\x01\x01\x01\x04\x03\x01\x01\x03\x04", // 眹
+ 0x773a: "\x02\x05\x01\x01\x01\x03\x04\x01\x05\x03\x04", // 眺
+ 0x773b: "\x02\x05\x01\x01\x01\x04\x03\x01\x01\x01\x02", // 眻
+ 0x773c: "\x02\x05\x01\x01\x01\x05\x01\x01\x05\x03\x04", // 眼
+ 0x773d: "\x02\x05\x01\x01\x01\x03\x03\x03\x05\x03\x04", // 眽
+ 0x773e: "\x02\x05\x02\x02\x01\x03\x02\x03\x04\x03\x04", // 眾
+ 0x773f: "\x02\x05\x01\x01\x01\x04\x05\x05\x03\x04", // 眿
+ 0x7740: "\x04\x03\x01\x01\x01\x03\x02\x05\x01\x01\x01", // 着
+ 0x7741: "\x02\x05\x01\x01\x01\x03\x05\x05\x01\x01\x02", // 睁
+ 0x7742: "\x03\x04\x03\x04\x02\x01\x03\x02\x05\x01\x01\x01", // 睂
+ 0x7743: "\x02\x05\x01\x01\x01\x05\x04\x03\x04\x03\x05\x04", // 睃
+ 0x7744: "\x02\x05\x01\x01\x01\x02\x04\x03\x02\x05\x01\x01", // 睄
+ 0x7745: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x01\x02", // 睅
+ 0x7746: "\x02\x05\x01\x01\x01\x04\x04\x05\x01\x01\x03\x05", // 睆
+ 0x7747: "\x02\x05\x01\x01\x01\x04\x03\x05\x01\x05\x02\x03", // 睇
+ 0x7748: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x02\x01", // 睈
+ 0x7749: "\x02\x05\x01\x01\x01\x03\x04\x03\x04\x01\x02\x01", // 睉
+ 0x774a: "\x02\x05\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01", // 睊
+ 0x774b: "\x02\x05\x01\x01\x01\x03\x01\x02\x01\x05\x03\x04", // 睋
+ 0x774c: "\x02\x05\x01\x01\x01\x03\x05\x02\x05\x01\x03\x05", // 睌
+ 0x774d: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 睍
+ 0x774e: "\x02\x05\x01\x01\x01\x03\x04\x01\x03\x02\x05\x02", // 睎
+ 0x774f: "\x02\x05\x01\x01\x01\x02\x05\x01\x02\x03\x04\x01", // 睏
+ 0x7750: "\x02\x05\x01\x01\x01\x01\x04\x03\x01\x02\x03\x04", // 睐
+ 0x7751: "\x02\x05\x01\x01\x01\x03\x04\x01\x04\x04\x03\x01", // 睑
+ 0x7752: "\x02\x05\x01\x01\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 睒
+ 0x7753: "\x02\x05\x01\x01\x01\x02\x05\x01\x02\x02\x01\x03\x04", // 睓
+ 0x7754: "\x02\x05\x01\x01\x01\x03\x04\x01\x02\x05\x01\x02\x02", // 睔
+ 0x7755: "\x02\x05\x01\x01\x01\x04\x04\x05\x03\x05\x04\x05\x05", // 睕
+ 0x7756: "\x02\x05\x01\x01\x01\x01\x02\x01\x03\x04\x03\x05\x04", // 睖
+ 0x7757: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x03\x05\x03\x03", // 睗
+ 0x7758: "\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 睘
+ 0x7759: "\x02\x05\x01\x01\x01\x04\x05\x01\x03\x01\x03\x04\x04", // 睙
+ 0x775a: "\x02\x05\x01\x01\x01\x01\x03\x01\x02\x01\x01\x02\x01", // 睚
+ 0x775b: "\x02\x05\x01\x01\x01\x01\x01\x02\x01\x02\x05\x01\x01", // 睛
+ 0x775c: "\x02\x05\x01\x01\x01\x03\x04\x04\x03\x05\x01\x01\x02", // 睜
+ 0x775d: "\x03\x01\x02\x03\x04\x03\x05\x03\x02\x05\x01\x01\x01", // 睝
+ 0x775e: "\x02\x05\x01\x01\x01\x01\x03\x04\x03\x04\x02\x03\x04", // 睞
+ 0x775f: "\x02\x05\x01\x01\x01\x04\x01\x03\x04\x03\x04\x01\x02", // 睟
+ 0x7760: "\x02\x05\x01\x01\x01\x04\x03\x01\x01\x03\x04\x05\x05", // 睠
+ 0x7761: "\x02\x05\x01\x01\x01\x03\x01\x02\x01\x02\x02\x01\x01", // 睡
+ 0x7762: "\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 睢
+ 0x7763: "\x02\x01\x01\x02\x03\x04\x05\x04\x02\x05\x01\x01\x01", // 督
+ 0x7764: "\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02", // 睤
+ 0x7765: "\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x03\x01\x02", // 睥
+ 0x7766: "\x02\x05\x01\x01\x01\x01\x02\x01\x03\x04\x01\x02\x01", // 睦
+ 0x7767: "\x02\x05\x01\x01\x01\x03\x05\x01\x05\x02\x05\x01\x01", // 睧
+ 0x7768: "\x02\x05\x01\x01\x01\x03\x02\x01\x05\x01\x01\x03\x05", // 睨
+ 0x7769: "\x02\x05\x01\x01\x01\x05\x01\x01\x02\x04\x01\x03\x04", // 睩
+ 0x776a: "\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 睪
+ 0x776b: "\x02\x05\x01\x01\x01\x01\x05\x01\x01\x02\x01\x03\x04", // 睫
+ 0x776c: "\x02\x05\x01\x01\x01\x03\x04\x04\x03\x01\x02\x03\x04", // 睬
+ 0x776d: "\x02\x05\x01\x01\x01\x03\x05\x01\x02\x01\x02\x05\x01", // 睭
+ 0x776e: "\x02\x05\x01\x01\x01\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 睮
+ 0x776f: "\x05\x01\x05\x01\x05\x03\x01\x03\x04\x02\x05\x01\x01\x01", // 睯
+ 0x7770: "\x02\x05\x01\x01\x01\x01\x02\x02\x01\x03\x02\x05\x01", // 睰
+ 0x7771: "\x02\x05\x01\x01\x01\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 睱
+ 0x7772: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x03\x01\x01\x02\x01", // 睲
+ 0x7773: "\x02\x05\x01\x01\x01\x01\x03\x04\x01\x02\x01\x01\x02\x01", // 睳
+ 0x7774: "\x02\x05\x01\x01\x01\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 睴
+ 0x7775: "\x02\x05\x01\x01\x01\x01\x02\x01\x02\x05\x01\x05\x03\x04", // 睵
+ 0x7776: "\x02\x05\x01\x01\x01\x01\x01\x01\x03\x04\x02\x05\x01\x01", // 睶
+ 0x7777: "\x02\x05\x01\x01\x01\x05\x01\x01\x01\x01\x02\x05\x04", // 睷
+ 0x7778: "\x02\x05\x01\x01\x01\x05\x02\x01\x03\x02\x05\x01\x01\x01", // 睸
+ 0x7779: "\x02\x05\x01\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 睹
+ 0x777a: "\x02\x05\x01\x01\x01\x03\x02\x05\x01\x03\x01\x01\x03\x04", // 睺
+ 0x777b: "\x02\x05\x01\x01\x01\x04\x04\x05\x01\x02\x05\x01\x01\x01", // 睻
+ 0x777c: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 睼
+ 0x777d: "\x02\x05\x01\x01\x01\x05\x04\x03\x03\x04\x01\x01\x03\x04", // 睽
+ 0x777e: "\x03\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 睾
+ 0x777f: "\x02\x01\x04\x05\x01\x03\x04\x03\x04\x02\x05\x01\x01\x01", // 睿
+ 0x7780: "\x05\x04\x05\x02\x03\x03\x01\x03\x04\x02\x05\x01\x01\x01", // 瞀
+ 0x7781: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x01\x03\x04\x04", // 瞁
+ 0x7782: "\x03\x03\x01\x02\x02\x05\x01\x01\x01\x01\x03\x05\x04\x04", // 瞂
+ 0x7783: "\x02\x05\x01\x01\x01\x03\x03\x01\x02\x02\x05\x01\x01\x01", // 瞃
+ 0x7784: "\x02\x05\x01\x01\x01\x01\x02\x02\x02\x05\x01\x02\x01", // 瞄
+ 0x7785: "\x02\x05\x01\x01\x01\x03\x01\x02\x03\x04\x04\x03\x03\x04", // 瞅
+ 0x7786: "\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x02\x05\x03\x04", // 瞆
+ 0x7787: "\x02\x05\x01\x01\x01\x04\x03\x01\x02\x03\x04\x04\x05\x04", // 瞇
+ 0x7788: "\x02\x05\x01\x01\x01\x03\x04\x05\x04\x05\x04\x01\x05\x04\x01", // 瞈
+ 0x7789: "\x01\x02\x01\x04\x05\x01\x02\x05\x01\x01\x01\x03\x05\x05\x04", // 瞉
+ 0x778a: "\x02\x05\x01\x01\x01\x04\x01\x03\x05\x01\x01\x02\x02\x05\x01", // 瞊
+ 0x778b: "\x02\x05\x01\x01\x01\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 瞋
+ 0x778c: "\x02\x05\x01\x01\x01\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 瞌
+ 0x778d: "\x02\x05\x01\x01\x01\x03\x02\x01\x05\x01\x01\x02\x05\x04", // 瞍
+ 0x778e: "\x02\x05\x01\x01\x01\x04\x04\x05\x01\x01\x01\x02\x02\x05\x01", // 瞎
+ 0x778f: "\x02\x05\x02\x02\x01\x01\x02\x01\x02\x05\x01\x03\x05\x03\x04", // 瞏
+ 0x7790: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01", // 瞐
+ 0x7791: "\x02\x05\x01\x01\x01\x04\x05\x02\x05\x01\x01\x04\x01\x03\x04", // 瞑
+ 0x7792: "\x02\x05\x01\x01\x01\x01\x02\x02\x01\x02\x05\x03\x04\x03\x04", // 瞒
+ 0x7793: "\x02\x05\x01\x01\x01\x04\x01\x01\x01\x02\x05\x01\x03\x02\x02", // 瞓
+ 0x7794: "\x02\x05\x01\x01\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 瞔
+ 0x7795: "\x02\x05\x01\x01\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02", // 瞕
+ 0x7796: "\x01\x03\x01\x01\x03\x04\x05\x03\x05\x05\x04\x02\x05\x01\x01\x01", // 瞖
+ 0x7797: "\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 瞗
+ 0x7798: "\x02\x05\x01\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 瞘
+ 0x7799: "\x02\x05\x01\x01\x01\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 瞙
+ 0x779a: "\x02\x05\x01\x01\x01\x04\x04\x05\x01\x02\x05\x01\x02\x01\x03\x04", // 瞚
+ 0x779b: "\x02\x05\x01\x01\x01\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04", // 瞛
+ 0x779c: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 瞜
+ 0x779d: "\x02\x05\x01\x01\x01\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 瞝
+ 0x779e: "\x02\x05\x01\x01\x01\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04", // 瞞
+ 0x779f: "\x02\x05\x01\x01\x01\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 瞟
+ 0x77a0: "\x02\x05\x01\x01\x01\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x01", // 瞠
+ 0x77a1: "\x02\x05\x01\x01\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 瞡
+ 0x77a2: "\x01\x02\x02\x02\x05\x02\x02\x01\x04\x05\x02\x05\x01\x01\x01", // 瞢
+ 0x77a3: "\x02\x05\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x04\x05\x04\x04", // 瞣
+ 0x77a4: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01\x01\x01\x02\x01", // 瞤
+ 0x77a5: "\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04\x02\x05\x01\x01\x01", // 瞥
+ 0x77a6: "\x02\x05\x01\x01\x01\x01\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01", // 瞦
+ 0x77a7: "\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 瞧
+ 0x77a8: "\x02\x05\x01\x01\x01\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 瞨
+ 0x77a9: "\x02\x05\x01\x01\x01\x05\x01\x03\x03\x02\x05\x01\x02\x05\x02\x01\x04", // 瞩
+ 0x77aa: "\x02\x05\x01\x01\x01\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 瞪
+ 0x77ab: "\x02\x05\x01\x01\x01\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 瞫
+ 0x77ac: "\x02\x05\x01\x01\x01\x03\x04\x04\x03\x04\x05\x03\x05\x04\x01\x05\x02", // 瞬
+ 0x77ad: "\x02\x05\x01\x01\x01\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 瞭
+ 0x77ae: "\x02\x05\x01\x01\x01\x04\x01\x05\x04\x02\x05\x01\x01\x03\x01\x03\x04", // 瞮
+ 0x77af: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01\x03\x05\x01\x01", // 瞯
+ 0x77b0: "\x02\x05\x01\x01\x01\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 瞰
+ 0x77b1: "\x02\x05\x01\x01\x01\x01\x02\x02\x01\x01\x02\x02\x01\x01\x02", // 瞱
+ 0x77b2: "\x02\x05\x01\x01\x01\x05\x04\x05\x02\x03\x02\x05\x03\x04\x02\x05\x01", // 瞲
+ 0x77b3: "\x02\x05\x01\x01\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 瞳
+ 0x77b4: "\x02\x05\x01\x01\x01\x03\x01\x01\x02\x02\x02\x02\x01\x04\x04\x04\x04", // 瞴
+ 0x77b5: "\x02\x05\x01\x01\x01\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 瞵
+ 0x77b6: "\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 瞶
+ 0x77b7: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01", // 瞷
+ 0x77b8: "\x02\x05\x01\x01\x01\x01\x02\x02\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 瞸
+ 0x77b9: "\x02\x05\x01\x01\x01\x03\x04\x04\x03\x04\x05\x04\x05\x04\x04\x03\x05\x04", // 瞹
+ 0x77ba: "\x02\x05\x01\x01\x01\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 瞺
+ 0x77bb: "\x02\x05\x01\x01\x01\x03\x05\x01\x03\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 瞻
+ 0x77bc: "\x02\x05\x01\x01\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 瞼
+ 0x77bd: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x02\x05\x01\x01\x01", // 瞽
+ 0x77be: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x04\x04\x05\x03\x04\x01\x02\x01", // 瞾
+ 0x77bf: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 瞿
+ 0x77c0: "\x02\x05\x01\x01\x01\x03\x03\x02\x02\x05\x02\x01\x03\x05\x03\x01\x03\x04", // 矀
+ 0x77c1: "\x02\x05\x01\x01\x01\x03\x01\x02\x03\x04\x04\x03\x03\x04\x04\x05\x04\x04", // 矁
+ 0x77c2: "\x02\x05\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 矂
+ 0x77c3: "\x02\x05\x01\x01\x01\x04\x04\x05\x04\x05\x04\x04\x02\x05\x02\x02\x01\x01\x02", // 矃
+ 0x77c4: "\x02\x05\x01\x01\x01\x03\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 矄
+ 0x77c5: "\x02\x05\x01\x01\x01\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 矅
+ 0x77c6: "\x02\x05\x01\x01\x01\x01\x02\x02\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 矆
+ 0x77c7: "\x02\x05\x01\x01\x01\x01\x02\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 矇
+ 0x77c8: "\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x04\x04\x05\x03\x04\x04\x01\x05\x03", // 矈
+ 0x77c9: "\x02\x05\x01\x01\x01\x04\x04\x05\x01\x02\x03\x03\x02\x05\x01\x01\x01\x03\x04", // 矉
+ 0x77ca: "\x02\x05\x01\x01\x01\x05\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x02\x05\x02", // 矊
+ 0x77cb: "\x02\x05\x01\x01\x01\x01\x03\x01\x02\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 矋
+ 0x77cc: "\x02\x05\x01\x01\x01\x04\x01\x03\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 矌
+ 0x77cd: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 矍
+ 0x77ce: "\x02\x05\x01\x01\x01\x03\x05\x02\x05\x03\x04\x02\x05\x01\x01\x01\x03\x05\x04", // 矎
+ 0x77cf: "\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x04\x04\x05\x03\x04\x04\x01\x05\x03", // 矏
+ 0x77d0: "\x02\x05\x01\x01\x01\x01\x04\x05\x02\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 矐
+ 0x77d1: "\x02\x05\x01\x01\x01\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 矑
+ 0x77d2: "\x02\x05\x01\x01\x01\x01\x02\x02\x02\x05\x02\x02\x01\x04\x05\x02\x05\x01\x01\x01", // 矒
+ 0x77d3: "\x02\x05\x01\x01\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x05\x01\x05\x01\x01\x01", // 矓
+ 0x77d4: "\x02\x05\x01\x01\x01\x01\x02\x02\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 矔
+ 0x77d5: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01\x01", // 矕
+ 0x77d6: "\x02\x05\x01\x01\x01\x01\x02\x05\x04\x01\x02\x05\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 矖
+ 0x77d7: "\x01\x02\x02\x05\x01\x01\x01\x01\x01\x02\x02\x05\x01\x01\x01\x01\x01\x02\x02\x05\x01\x01\x01\x01", // 矗
+ 0x77d8: "\x02\x05\x01\x01\x01\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 矘
+ 0x77d9: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 矙
+ 0x77da: "\x02\x05\x01\x01\x01\x05\x01\x03\x02\x04\x01\x03\x04\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 矚
+ 0x77db: "\x05\x04\x05\x02\x03", // 矛
+ 0x77dc: "\x05\x04\x05\x02\x03\x03\x04\x04\x05", // 矜
+ 0x77dd: "\x05\x04\x05\x02\x03\x03\x04\x04\x05\x04", // 矝
+ 0x77de: "\x05\x04\x05\x02\x03\x02\x05\x03\x04\x02\x05\x01", // 矞
+ 0x77df: "\x05\x04\x05\x02\x03\x02\x04\x03\x02\x05\x01\x01", // 矟
+ 0x77e0: "\x05\x04\x05\x02\x03\x01\x02\x02\x01\x02\x05\x01\x01", // 矠
+ 0x77e1: "\x05\x04\x05\x02\x03\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 矡
+ 0x77e2: "\x03\x01\x01\x03\x04", // 矢
+ 0x77e3: "\x05\x04\x03\x01\x01\x03\x04", // 矣
+ 0x77e4: "\x05\x01\x05\x03\x01\x01\x03\x04", // 矤
+ 0x77e5: "\x03\x01\x01\x03\x04\x02\x05\x01", // 知
+ 0x77e6: "\x03\x05\x01\x03\x03\x01\x01\x03\x04", // 矦
+ 0x77e7: "\x03\x01\x01\x03\x04\x05\x01\x05\x02", // 矧
+ 0x77e8: "\x03\x01\x01\x03\x04\x03\x01\x03\x04", // 矨
+ 0x77e9: "\x03\x01\x01\x03\x04\x01\x05\x01\x05", // 矩
+ 0x77ea: "\x03\x01\x01\x03\x04\x03\x03\x05\x04\x01\x04", // 矪
+ 0x77eb: "\x03\x01\x01\x03\x04\x03\x01\x03\x04\x03\x02", // 矫
+ 0x77ec: "\x03\x01\x01\x03\x04\x03\x04\x03\x04\x01\x02\x01", // 矬
+ 0x77ed: "\x03\x01\x01\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 短
+ 0x77ee: "\x03\x01\x01\x03\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 矮
+ 0x77ef: "\x03\x01\x01\x03\x04\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 矯
+ 0x77f0: "\x03\x01\x01\x03\x04\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 矰
+ 0x77f1: "\x03\x01\x01\x03\x04\x01\x02\x02\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 矱
+ 0x77f2: "\x03\x01\x01\x03\x04\x02\x05\x02\x02\x01\x05\x04\x02\x05\x01\x01\x03\x05\x03\x05", // 矲
+ 0x77f3: "\x01\x03\x02\x05\x01", // 石
+ 0x77f4: "\x01\x03\x02\x05\x01\x01\x02", // 矴
+ 0x77f5: "\x01\x03\x02\x05\x01\x02\x02", // 矵
+ 0x77f6: "\x01\x03\x02\x05\x01\x03\x05", // 矶
+ 0x77f7: "\x01\x03\x02\x05\x01\x05\x02\x01", // 矷
+ 0x77f8: "\x01\x03\x02\x05\x01\x01\x01\x02", // 矸
+ 0x77f9: "\x01\x03\x02\x05\x01\x01\x03\x05", // 矹
+ 0x77fa: "\x01\x03\x02\x05\x01\x03\x01\x05", // 矺
+ 0x77fb: "\x01\x03\x02\x05\x01\x03\x01\x05", // 矻
+ 0x77fc: "\x01\x03\x02\x05\x01\x01\x02\x01", // 矼
+ 0x77fd: "\x01\x03\x02\x05\x01\x03\x05\x04", // 矽
+ 0x77fe: "\x01\x03\x02\x05\x01\x03\x05\x04", // 矾
+ 0x77ff: "\x01\x03\x02\x05\x01\x04\x01\x03", // 矿
+ 0x7800: "\x01\x03\x02\x05\x01\x05\x03\x03", // 砀
+ 0x7801: "\x01\x03\x02\x05\x01\x05\x05\x01", // 码
+ 0x7802: "\x01\x03\x02\x05\x01\x02\x03\x04\x03", // 砂
+ 0x7803: "\x01\x03\x02\x05\x01\x03\x05\x04\x01", // 砃
+ 0x7804: "\x01\x03\x02\x05\x01\x05\x01\x03\x04", // 砄
+ 0x7805: "\x01\x03\x02\x05\x01\x02\x05\x03\x04", // 砅
+ 0x7806: "\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 砆
+ 0x7807: "\x01\x03\x02\x05\x01\x04\x01\x03\x04", // 砇
+ 0x7808: "\x01\x03\x02\x05\x01\x01\x03\x05\x05", // 砈
+ 0x7809: "\x01\x01\x01\x02\x01\x03\x02\x05\x01", // 砉
+ 0x780a: "\x01\x03\x02\x05\x01\x04\x01\x03\x05", // 砊
+ 0x780b: "\x01\x03\x02\x05\x01\x02\x01\x02\x01", // 砋
+ 0x780c: "\x01\x03\x02\x05\x01\x01\x05\x05\x03", // 砌
+ 0x780d: "\x01\x03\x02\x05\x01\x03\x05\x03\x04", // 砍
+ 0x780e: "\x01\x03\x02\x05\x01\x03\x04\x03\x02", // 砎
+ 0x780f: "\x01\x03\x02\x05\x01\x03\x04\x05\x03", // 砏
+ 0x7810: "\x01\x03\x02\x05\x01\x03\x05\x04", // 砐
+ 0x7811: "\x01\x03\x02\x05\x01\x01\x05\x02\x03", // 砑
+ 0x7812: "\x01\x03\x02\x05\x01\x01\x05\x03\x05", // 砒
+ 0x7813: "\x01\x03\x02\x05\x01\x03\x05\x05\x04", // 砓
+ 0x7814: "\x01\x03\x02\x05\x01\x01\x01\x03\x02", // 研
+ 0x7815: "\x01\x03\x02\x05\x01\x03\x05\x01\x02", // 砕
+ 0x7816: "\x01\x03\x02\x05\x01\x01\x01\x05\x04", // 砖
+ 0x7817: "\x01\x03\x02\x05\x01\x01\x05\x01\x02", // 砗
+ 0x7818: "\x01\x03\x02\x05\x01\x01\x05\x02\x05", // 砘
+ 0x7819: "\x01\x03\x02\x05\x01\x01\x05\x05\x04", // 砙
+ 0x781a: "\x01\x03\x02\x05\x01\x02\x05\x03\x05", // 砚
+ 0x781b: "\x01\x03\x02\x05\x01\x03\x04\x04\x05", // 砛
+ 0x781c: "\x01\x03\x02\x05\x01\x03\x05\x03\x04", // 砜
+ 0x781d: "\x01\x03\x02\x05\x01\x01\x02\x01\x05\x04", // 砝
+ 0x781e: "\x01\x03\x02\x05\x01\x01\x01\x02\x03\x04", // 砞
+ 0x781f: "\x01\x03\x02\x05\x01\x03\x01\x02\x01\x01", // 砟
+ 0x7820: "\x01\x03\x02\x05\x01\x02\x05\x01\x01\x01", // 砠
+ 0x7821: "\x01\x03\x02\x05\x01\x01\x01\x02\x01\x04", // 砡
+ 0x7822: "\x01\x03\x02\x05\x01\x01\x02\x05\x01\x02", // 砢
+ 0x7823: "\x01\x03\x02\x05\x01\x04\x04\x05\x03\x05", // 砣
+ 0x7824: "\x01\x03\x02\x05\x01\x03\x01\x05\x02\x05", // 砤
+ 0x7825: "\x01\x03\x02\x05\x01\x03\x05\x01\x05\x04", // 砥
+ 0x7826: "\x02\x01\x02\x01\x03\x05\x01\x03\x02\x05\x01", // 砦
+ 0x7827: "\x01\x03\x02\x05\x01\x02\x01\x02\x05\x01", // 砧
+ 0x7828: "\x01\x03\x02\x05\x01\x04\x05\x01\x03\x05", // 砨
+ 0x7829: "\x01\x03\x02\x05\x01\x05\x01\x05\x03\x02", // 砩
+ 0x782a: "\x01\x03\x02\x05\x01\x05\x05\x04\x01\x04", // 砪
+ 0x782b: "\x01\x03\x02\x05\x01\x04\x01\x01\x02\x01", // 砫
+ 0x782c: "\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01", // 砬
+ 0x782d: "\x01\x03\x02\x05\x01\x03\x04\x05\x04", // 砭
+ 0x782e: "\x05\x03\x01\x05\x04\x01\x03\x02\x05\x01", // 砮
+ 0x782f: "\x01\x03\x02\x05\x01\x04\x02\x05\x03\x04", // 砯
+ 0x7830: "\x01\x03\x02\x05\x01\x01\x04\x03\x01\x02", // 砰
+ 0x7831: "\x01\x03\x02\x05\x01\x03\x04\x04\x05\x04", // 砱
+ 0x7832: "\x01\x03\x02\x05\x01\x03\x05\x05\x01\x05", // 砲
+ 0x7833: "\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01", // 砳
+ 0x7834: "\x01\x03\x02\x05\x01\x05\x03\x02\x05\x04", // 破
+ 0x7835: "\x01\x03\x02\x05\x01\x01\x02\x03\x04\x01", // 砵
+ 0x7836: "\x01\x03\x02\x05\x01\x03\x02\x05\x01\x01", // 砶
+ 0x7837: "\x01\x03\x02\x05\x01\x02\x05\x01\x01\x02", // 砷
+ 0x7838: "\x01\x03\x02\x05\x01\x01\x02\x05\x02\x05", // 砸
+ 0x7839: "\x01\x03\x02\x05\x01\x01\x02\x02\x03\x04", // 砹
+ 0x783a: "\x01\x03\x02\x05\x01\x01\x03\x01\x05\x03", // 砺
+ 0x783b: "\x01\x03\x05\x03\x04\x01\x03\x02\x05\x01", // 砻
+ 0x783c: "\x01\x03\x02\x05\x01\x03\x04\x01\x02\x01", // 砼
+ 0x783d: "\x01\x03\x02\x05\x01\x03\x05\x01\x01\x02", // 砽
+ 0x783e: "\x01\x03\x02\x05\x01\x03\x05\x02\x03\x04", // 砾
+ 0x783f: "\x01\x03\x02\x05\x01\x04\x01\x03\x05\x04", // 砿
+ 0x7840: "\x01\x03\x02\x05\x01\x05\x02\x02\x05\x02", // 础
+ 0x7841: "\x01\x03\x02\x05\x01\x05\x04\x01\x02\x01", // 硁
+ 0x7842: "\x01\x03\x02\x05\x01\x03\x04\x01\x01\x02\x01", // 硂
+ 0x7843: "\x01\x03\x02\x05\x01\x03\x01\x01\x02\x03\x04", // 硃
+ 0x7844: "\x01\x03\x02\x05\x01\x02\x04\x03\x01\x03\x05", // 硄
+ 0x7845: "\x01\x03\x02\x05\x01\x01\x02\x01\x01\x02\x01", // 硅
+ 0x7846: "\x01\x03\x02\x05\x01\x03\x04\x01\x02\x05\x01", // 硆
+ 0x7847: "\x01\x03\x02\x05\x01\x03\x02\x05\x03\x04\x01", // 硇
+ 0x7848: "\x01\x03\x02\x05\x01\x01\x02\x01\x02\x05\x01", // 硈
+ 0x7849: "\x01\x03\x02\x05\x01\x05\x01\x01\x01\x01\x02", // 硉
+ 0x784a: "\x01\x03\x02\x05\x01\x03\x05\x01\x03\x05\x05", // 硊
+ 0x784b: "\x01\x03\x02\x05\x01\x04\x01\x05\x03\x03\x04", // 硋
+ 0x784c: "\x01\x03\x02\x05\x01\x03\x05\x04\x02\x05\x01", // 硌
+ 0x784d: "\x01\x03\x02\x05\x01\x05\x01\x01\x05\x03\x04", // 硍
+ 0x784e: "\x01\x03\x02\x05\x01\x01\x01\x03\x02\x02\x02", // 硎
+ 0x784f: "\x01\x03\x02\x05\x01\x01\x01\x03\x01\x01\x02", // 硏
+ 0x7850: "\x01\x03\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 硐
+ 0x7851: "\x01\x03\x02\x05\x01\x04\x03\x01\x01\x03\x02", // 硑
+ 0x7852: "\x01\x03\x02\x05\x01\x01\x02\x05\x03\x05\x01", // 硒
+ 0x7853: "\x01\x03\x02\x05\x01\x01\x02\x01\x03\x03\x05", // 硓
+ 0x7854: "\x01\x03\x02\x05\x01\x01\x02\x02\x01\x03\x04", // 硔
+ 0x7855: "\x01\x03\x02\x05\x01\x01\x03\x02\x05\x03\x04", // 硕
+ 0x7856: "\x01\x03\x02\x05\x01\x01\x04\x03\x01\x03\x04", // 硖
+ 0x7857: "\x01\x03\x02\x05\x01\x01\x05\x03\x01\x03\x05", // 硗
+ 0x7858: "\x01\x03\x02\x05\x01\x02\x05\x02\x05\x01\x01", // 硘
+ 0x7859: "\x01\x03\x02\x05\x01\x02\x05\x02\x05\x01\x05", // 硙
+ 0x785a: "\x01\x03\x02\x05\x01\x03\x01\x03\x04\x03\x02", // 硚
+ 0x785b: "\x01\x03\x02\x05\x01\x04\x01\x03\x02\x03\x04", // 硛
+ 0x785c: "\x01\x03\x02\x05\x01\x01\x05\x05\x05\x01\x02\x01", // 硜
+ 0x785d: "\x01\x03\x02\x05\x01\x02\x04\x03\x02\x05\x01\x01", // 硝
+ 0x785e: "\x01\x03\x02\x05\x01\x03\x01\x02\x01\x02\x05\x01", // 硞
+ 0x785f: "\x01\x03\x02\x05\x01\x03\x02\x01\x05\x05\x04", // 硟
+ 0x7860: "\x01\x03\x02\x05\x01\x04\x05\x01\x01\x05\x03\x04", // 硠
+ 0x7861: "\x01\x03\x02\x05\x01\x04\x04\x05\x01\x03\x05\x04", // 硡
+ 0x7862: "\x01\x03\x02\x05\x01\x03\x04\x01\x01\x02\x03\x04", // 硢
+ 0x7863: "\x01\x03\x02\x05\x01\x01\x02\x01\x03\x05\x02\x01", // 硣
+ 0x7864: "\x01\x03\x02\x05\x01\x01\x03\x04\x03\x04\x03\x04", // 硤
+ 0x7865: "\x01\x03\x02\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 硥
+ 0x7866: "\x01\x03\x02\x05\x01\x01\x01\x02\x01\x01\x03\x02", // 硦
+ 0x7867: "\x01\x03\x02\x05\x01\x05\x04\x02\x05\x01\x01\x02", // 硧
+ 0x7868: "\x01\x03\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02", // 硨
+ 0x7869: "\x01\x02\x01\x03\x03\x01\x02\x01\x03\x02\x05\x01", // 硩
+ 0x786a: "\x01\x03\x02\x05\x01\x03\x01\x02\x01\x05\x03\x04", // 硪
+ 0x786b: "\x01\x03\x02\x05\x01\x04\x01\x05\x04\x03\x02\x05", // 硫
+ 0x786c: "\x01\x03\x02\x05\x01\x01\x02\x05\x01\x01\x03\x04", // 硬
+ 0x786d: "\x01\x03\x02\x05\x01\x01\x02\x02\x04\x01\x05", // 硭
+ 0x786e: "\x01\x03\x02\x05\x01\x03\x05\x03\x05\x01\x01\x02", // 确
+ 0x786f: "\x01\x03\x02\x05\x01\x02\x05\x01\x01\x01\x03\x05", // 硯
+ 0x7870: "\x04\x04\x01\x02\x03\x04\x03\x01\x03\x02\x05\x01", // 硰
+ 0x7871: "\x01\x03\x02\x05\x01\x02\x05\x01\x02\x03\x04\x01", // 硱
+ 0x7872: "\x01\x03\x02\x05\x01\x03\x04\x03\x04\x02\x05\x01", // 硲
+ 0x7873: "\x01\x03\x02\x05\x01\x01\x02\x01\x03\x02\x03\x04", // 硳
+ 0x7874: "\x01\x03\x02\x05\x01\x01\x02\x02\x03\x02\x03\x05", // 硴
+ 0x7875: "\x01\x03\x02\x05\x01\x02\x01\x02\x05\x03\x04\x01", // 硵
+ 0x7876: "\x01\x03\x02\x05\x01\x02\x05\x02\x03\x04\x04\x05", // 硶
+ 0x7877: "\x01\x03\x02\x05\x01\x03\x04\x01\x04\x04\x03\x01", // 硷
+ 0x7878: "\x01\x03\x02\x05\x01\x02\x05\x02\x01\x03\x01\x01\x02", // 硸
+ 0x7879: "\x01\x03\x02\x05\x01\x01\x02\x03\x04\x03\x04\x05\x04", // 硹
+ 0x787a: "\x01\x03\x02\x05\x01\x01\x03\x05\x03\x03\x04\x03\x04", // 硺
+ 0x787b: "\x01\x02\x05\x01\x02\x05\x05\x04\x01\x03\x02\x05\x01", // 硻
+ 0x787c: "\x01\x03\x02\x05\x01\x03\x05\x01\x01\x03\x05\x01\x01", // 硼
+ 0x787d: "\x01\x03\x02\x05\x01\x01\x03\x04\x02\x05\x01\x01\x05", // 硽
+ 0x787e: "\x01\x03\x02\x05\x01\x03\x01\x02\x01\x02\x02\x01\x01", // 硾
+ 0x787f: "\x01\x03\x02\x05\x01\x04\x04\x05\x03\x04\x01\x02\x01", // 硿
+ 0x7880: "\x01\x03\x02\x05\x01\x03\x05\x05\x01\x01\x02", // 碀
+ 0x7881: "\x01\x02\x02\x01\x01\x01\x03\x04\x01\x03\x02\x05\x01", // 碁
+ 0x7882: "\x01\x03\x02\x05\x01\x04\x04\x05\x01\x01\x02\x03\x04", // 碂
+ 0x7883: "\x01\x03\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01", // 碃
+ 0x7884: "\x01\x03\x02\x05\x01\x01\x02\x03\x04\x01\x02\x03\x04", // 碄
+ 0x7885: "\x01\x03\x02\x05\x01\x02\x05\x03\x01\x02\x03\x04\x01", // 碅
+ 0x7886: "\x04\x04\x01\x05\x03\x02\x05\x04\x01\x03\x02\x05\x01", // 碆
+ 0x7887: "\x01\x03\x02\x05\x01\x04\x04\x05\x01\x02\x01\x03\x04", // 碇
+ 0x7888: "\x01\x03\x02\x05\x01\x03\x05\x01\x05\x02\x05\x01\x01", // 碈
+ 0x7889: "\x01\x03\x02\x05\x01\x03\x05\x01\x02\x01\x02\x05\x01", // 碉
+ 0x788a: "\x01\x03\x02\x05\x01\x01\x05\x03\x04\x01\x05\x03\x04", // 碊
+ 0x788b: "\x01\x03\x02\x05\x01\x02\x05\x02\x01\x02\x05\x01\x02", // 碋
+ 0x788c: "\x01\x03\x02\x05\x01\x05\x01\x01\x02\x04\x01\x03\x04", // 碌
+ 0x788d: "\x01\x03\x02\x05\x01\x02\x05\x01\x01\x01\x01\x02\x04", // 碍
+ 0x788e: "\x01\x03\x02\x05\x01\x04\x01\x03\x04\x03\x04\x01\x02", // 碎
+ 0x788f: "\x01\x03\x02\x05\x01\x01\x02\x02\x01\x02\x05\x01\x01", // 碏
+ 0x7890: "\x01\x03\x02\x05\x01\x01\x02\x01\x03\x04\x03\x05\x04", // 碐
+ 0x7891: "\x01\x03\x02\x05\x01\x03\x02\x05\x01\x01\x03\x01\x02", // 碑
+ 0x7892: "\x01\x03\x02\x05\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 碒
+ 0x7893: "\x01\x03\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 碓
+ 0x7894: "\x01\x03\x02\x05\x01\x01\x01\x02\x01\x02\x01\x05\x04", // 碔
+ 0x7895: "\x01\x03\x02\x05\x01\x01\x03\x04\x01\x02\x05\x01\x02", // 碕
+ 0x7896: "\x01\x03\x02\x05\x01\x03\x04\x01\x02\x05\x01\x02\x02", // 碖
+ 0x7897: "\x01\x03\x02\x05\x01\x04\x04\x05\x03\x05\x04\x05\x05", // 碗
+ 0x7898: "\x01\x03\x02\x05\x01\x02\x05\x01\x02\x02\x01\x03\x04", // 碘
+ 0x7899: "\x01\x03\x02\x05\x01\x02\x05\x04\x03\x01\x02\x05\x02", // 碙
+ 0x789a: "\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x02\x05\x01", // 碚
+ 0x789b: "\x01\x03\x02\x05\x01\x01\x01\x02\x01\x02\x05\x03\x04", // 碛
+ 0x789c: "\x01\x03\x02\x05\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 碜
+ 0x789d: "\x01\x03\x02\x05\x01\x01\x03\x02\x05\x02\x02\x01\x03\x04", // 碝
+ 0x789e: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x03\x02\x05\x01", // 碞
+ 0x789f: "\x01\x03\x02\x05\x01\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 碟
+ 0x78a0: "\x01\x03\x02\x05\x01\x04\x01\x02\x05\x01\x04\x05\x01\x02", // 碠
+ 0x78a1: "\x01\x03\x02\x05\x01\x01\x01\x02\x01\x05\x05\x04\x01\x04", // 碡
+ 0x78a2: "\x01\x03\x02\x05\x01\x02\x05\x05\x02\x05\x02\x05\x01", // 碢
+ 0x78a3: "\x01\x03\x02\x05\x01\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 碣
+ 0x78a4: "\x01\x03\x02\x05\x01\x01\x02\x02\x02\x05\x01\x03\x04", // 碤
+ 0x78a5: "\x01\x03\x02\x05\x01\x04\x05\x01\x03\x02\x05\x01\x02\x02", // 碥
+ 0x78a6: "\x01\x03\x02\x05\x01\x04\x04\x05\x03\x05\x04\x02\x05\x01", // 碦
+ 0x78a7: "\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01", // 碧
+ 0x78a8: "\x01\x03\x02\x05\x01\x02\x05\x01\x02\x01\x01\x05\x03\x04", // 碨
+ 0x78a9: "\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 碩
+ 0x78aa: "\x01\x03\x02\x05\x01\x01\x02\x02\x01\x01\x01\x03\x04\x05", // 碪
+ 0x78ab: "\x01\x03\x02\x05\x01\x03\x02\x01\x01\x01\x03\x05\x05\x04", // 碫
+ 0x78ac: "\x01\x03\x02\x05\x01\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 碬
+ 0x78ad: "\x01\x03\x02\x05\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 碭
+ 0x78ae: "\x01\x03\x02\x05\x01\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 碮
+ 0x78af: "\x01\x03\x02\x05\x01\x05\x05\x05\x03\x02\x05\x03\x04\x01", // 碯
+ 0x78b0: "\x01\x03\x02\x05\x01\x04\x03\x01\x02\x02\x04\x03\x01", // 碰
+ 0x78b1: "\x01\x03\x02\x05\x01\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 碱
+ 0x78b2: "\x01\x03\x02\x05\x01\x04\x01\x04\x03\x04\x05\x02\x05\x02", // 碲
+ 0x78b3: "\x01\x03\x02\x05\x01\x02\x05\x02\x01\x03\x04\x03\x03\x04", // 碳
+ 0x78b4: "\x01\x03\x02\x05\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 碴
+ 0x78b5: "\x01\x03\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 碵
+ 0x78b6: "\x01\x03\x02\x05\x01\x01\x01\x01\x02\x05\x03\x01\x03\x04", // 碶
+ 0x78b7: "\x01\x03\x02\x05\x01\x03\x03\x01\x02\x02\x05\x01\x01\x01", // 碷
+ 0x78b8: "\x01\x03\x02\x05\x01\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 碸
+ 0x78b9: "\x01\x03\x02\x05\x01\x04\x04\x05\x01\x02\x05\x01\x01\x01", // 碹
+ 0x78ba: "\x01\x03\x02\x05\x01\x04\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 確
+ 0x78bb: "\x01\x03\x02\x05\x01\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 碻
+ 0x78bc: "\x01\x03\x02\x05\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 碼
+ 0x78bd: "\x01\x03\x02\x05\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 碽
+ 0x78be: "\x01\x03\x02\x05\x01\x05\x01\x03\x01\x02\x02\x01\x05\x03\x04", // 碾
+ 0x78bf: "\x01\x03\x02\x05\x01\x05\x01\x03\x02\x04\x03\x02\x05\x01\x01", // 碿
+ 0x78c0: "\x01\x03\x02\x05\x01\x04\x03\x01\x05\x02\x03\x04\x05\x04", // 磀
+ 0x78c1: "\x01\x03\x02\x05\x01\x04\x03\x01\x05\x05\x04\x05\x05\x04", // 磁
+ 0x78c2: "\x01\x03\x02\x05\x01\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 磂
+ 0x78c3: "\x01\x03\x02\x05\x01\x03\x03\x02\x01\x05\x03\x01\x05\x03\x05", // 磃
+ 0x78c4: "\x01\x03\x02\x05\x01\x04\x01\x03\x05\x01\x01\x02\x02\x05\x01", // 磄
+ 0x78c5: "\x01\x03\x02\x05\x01\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03", // 磅
+ 0x78c6: "\x01\x03\x02\x05\x01\x02\x05\x05\x04\x05\x02\x05\x01\x01", // 磆
+ 0x78c7: "\x01\x03\x02\x05\x01\x03\x02\x05\x03\x04\x01\x01\x05\x03\x05", // 磇
+ 0x78c8: "\x01\x03\x02\x05\x01\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 磈
+ 0x78c9: "\x01\x03\x02\x05\x01\x05\x04\x05\x04\x05\x04\x01\x02\x03\x04", // 磉
+ 0x78ca: "\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01", // 磊
+ 0x78cb: "\x01\x03\x02\x05\x01\x04\x03\x01\x01\x01\x03\x01\x02\x01", // 磋
+ 0x78cc: "\x01\x03\x02\x05\x01\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 磌
+ 0x78cd: "\x01\x03\x02\x05\x01\x04\x04\x05\x01\x01\x01\x02\x02\x05\x01", // 磍
+ 0x78ce: "\x01\x03\x02\x05\x01\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04", // 磎
+ 0x78cf: "\x01\x03\x02\x05\x01\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 磏
+ 0x78d0: "\x03\x03\x05\x04\x01\x04\x03\x05\x05\x04\x01\x03\x02\x05\x01", // 磐
+ 0x78d1: "\x01\x03\x02\x05\x01\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 磑
+ 0x78d2: "\x01\x03\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 磒
+ 0x78d3: "\x01\x03\x02\x05\x01\x03\x02\x05\x01\x05\x01\x04\x05\x04", // 磓
+ 0x78d4: "\x01\x03\x02\x05\x01\x03\x05\x04\x01\x05\x02\x01\x02\x03\x04", // 磔
+ 0x78d5: "\x01\x03\x02\x05\x01\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 磕
+ 0x78d6: "\x01\x03\x02\x05\x01\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01", // 磖
+ 0x78d7: "\x01\x03\x02\x05\x01\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 磗
+ 0x78d8: "\x01\x03\x02\x05\x01\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02", // 磘
+ 0x78d9: "\x01\x03\x02\x05\x01\x04\x01\x03\x04\x05\x04\x03\x05\x03\x04", // 磙
+ 0x78da: "\x01\x03\x02\x05\x01\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04", // 磚
+ 0x78db: "\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02\x01\x03\x02\x05\x01", // 磛
+ 0x78dc: "\x01\x03\x02\x05\x01\x03\x05\x04\x04\x05\x04\x01\x01\x02\x03\x04", // 磜
+ 0x78dd: "\x01\x03\x02\x05\x01\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04", // 磝
+ 0x78de: "\x01\x03\x02\x05\x01\x02\x05\x02\x03\x05\x01\x01\x03\x05\x01\x01", // 磞
+ 0x78df: "\x01\x03\x02\x05\x01\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 磟
+ 0x78e0: "\x01\x03\x02\x05\x01\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01", // 磠
+ 0x78e1: "\x01\x03\x02\x05\x01\x01\x02\x02\x01\x01\x01\x03\x04\x05\x05\x03", // 磡
+ 0x78e2: "\x01\x03\x02\x05\x01\x01\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04", // 磢
+ 0x78e3: "\x01\x03\x02\x05\x01\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 磣
+ 0x78e4: "\x01\x03\x02\x05\x01\x03\x03\x05\x01\x01\x05\x03\x05\x05\x04", // 磤
+ 0x78e5: "\x01\x03\x02\x05\x01\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 磥
+ 0x78e6: "\x01\x03\x02\x05\x01\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 磦
+ 0x78e7: "\x01\x03\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 磧
+ 0x78e8: "\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x01\x03\x02\x05\x01", // 磨
+ 0x78e9: "\x01\x03\x02\x05\x01\x01\x03\x02\x01\x01\x02\x03\x04\x05\x03\x04", // 磩
+ 0x78ea: "\x01\x03\x02\x05\x01\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 磪
+ 0x78eb: "\x01\x03\x02\x05\x01\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04", // 磫
+ 0x78ec: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04\x01\x03\x02\x05\x01", // 磬
+ 0x78ed: "\x01\x03\x02\x05\x01\x01\x03\x01\x01\x05\x03\x04\x02\x05\x01\x01", // 磭
+ 0x78ee: "\x01\x03\x02\x05\x01\x02\x05\x02\x03\x04\x01\x02\x05\x01\x02\x02", // 磮
+ 0x78ef: "\x01\x03\x02\x05\x01\x05\x05\x04\x05\x05\x04\x01\x03\x04\x05\x03\x04", // 磯
+ 0x78f0: "\x01\x03\x02\x05\x01\x04\x03\x01\x01\x01\x02\x04\x03\x01\x02\x05\x01", // 磰
+ 0x78f1: "\x01\x03\x02\x05\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x05\x03", // 磱
+ 0x78f2: "\x01\x03\x02\x05\x01\x04\x04\x01\x01\x05\x01\x05\x01\x02\x03\x04", // 磲
+ 0x78f3: "\x01\x03\x02\x05\x01\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 磳
+ 0x78f4: "\x01\x03\x02\x05\x01\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 磴
+ 0x78f5: "\x01\x03\x02\x05\x01\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01", // 磵
+ 0x78f6: "\x01\x03\x02\x05\x01\x03\x02\x01\x05\x01\x01\x03\x05\x04\x04\x04\x04", // 磶
+ 0x78f7: "\x01\x03\x02\x05\x01\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 磷
+ 0x78f8: "\x01\x03\x02\x05\x01\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x03\x04", // 磸
+ 0x78f9: "\x01\x03\x02\x05\x01\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 磹
+ 0x78fa: "\x01\x03\x02\x05\x01\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 磺
+ 0x78fb: "\x01\x03\x02\x05\x01\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 磻
+ 0x78fc: "\x01\x03\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02\x03\x04", // 磼
+ 0x78fd: "\x01\x03\x02\x05\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 磽
+ 0x78fe: "\x01\x03\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 磾
+ 0x78ff: "\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x01\x03\x02\x05\x01", // 磿
+ 0x7900: "\x01\x03\x02\x05\x01\x02\x05\x01\x01\x02\x05\x01\x01\x03\x05\x01\x01", // 礀
+ 0x7901: "\x01\x03\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 礁
+ 0x7902: "\x01\x03\x02\x05\x01\x01\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01", // 礂
+ 0x7903: "\x01\x03\x02\x05\x01\x02\x04\x03\x04\x05\x02\x05\x01\x03\x01\x01\x02", // 礃
+ 0x7904: "\x01\x03\x02\x05\x01\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 礄
+ 0x7905: "\x01\x03\x02\x05\x01\x04\x01\x02\x05\x01\x05\x02\x01\x03\x01\x03\x04", // 礅
+ 0x7906: "\x01\x03\x02\x05\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 礆
+ 0x7907: "\x01\x03\x02\x05\x01\x03\x02\x05\x04\x03\x01\x02\x03\x04\x01\x03\x04", // 礇
+ 0x7908: "\x01\x03\x02\x05\x01\x04\x03\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 礈
+ 0x7909: "\x01\x03\x02\x05\x01\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x03\x04", // 礉
+ 0x790a: "\x01\x02\x05\x01\x01\x01\x02\x05\x02\x03\x05\x05\x04\x01\x03\x02\x05\x01", // 礊
+ 0x790b: "\x01\x03\x02\x05\x01\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 礋
+ 0x790c: "\x01\x03\x02\x05\x01\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x01", // 礌
+ 0x790d: "\x01\x03\x02\x05\x01\x01\x02\x02\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 礍
+ 0x790e: "\x01\x03\x02\x05\x01\x01\x02\x03\x04\x01\x02\x03\x04\x05\x02\x01\x03\x04", // 礎
+ 0x790f: "\x01\x03\x02\x05\x01\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x02\x03\x04", // 礏
+ 0x7910: "\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x01\x03\x02\x05\x01", // 礐
+ 0x7911: "\x01\x03\x02\x05\x01\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x01\x02\x01", // 礑
+ 0x7912: "\x01\x03\x02\x05\x01\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01\x05\x03\x04", // 礒
+ 0x7913: "\x01\x03\x02\x05\x01\x01\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x01\x01", // 礓
+ 0x7914: "\x01\x03\x02\x05\x01\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 礔
+ 0x7915: "\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x01\x03\x02\x05\x01", // 礕
+ 0x7916: "\x01\x03\x02\x05\x01\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 礖
+ 0x7917: "\x01\x03\x02\x05\x01\x04\x04\x05\x01\x02\x03\x03\x02\x05\x01\x01\x01\x03\x04", // 礗
+ 0x7918: "\x01\x03\x02\x05\x01\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x04\x04\x04\x04", // 礘
+ 0x7919: "\x01\x03\x02\x05\x01\x03\x05\x03\x01\x01\x03\x04\x05\x04\x05\x02\x01\x03\x04", // 礙
+ 0x791a: "\x01\x03\x02\x05\x01\x01\x02\x02\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 礚
+ 0x791b: "\x01\x03\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01", // 礛
+ 0x791c: "\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04\x01\x03\x02\x05\x01", // 礜
+ 0x791d: "\x01\x03\x02\x05\x01\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02", // 礝
+ 0x791e: "\x01\x03\x02\x05\x01\x01\x02\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 礞
+ 0x791f: "\x01\x03\x02\x05\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x04\x03\x04", // 礟
+ 0x7920: "\x01\x03\x02\x05\x01\x04\x03\x01\x05\x05\x04\x05\x05\x04\x04\x05\x04\x04", // 礠
+ 0x7921: "\x01\x03\x02\x05\x01\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 礡
+ 0x7922: "\x01\x03\x02\x05\x01\x04\x03\x01\x01\x01\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 礢
+ 0x7923: "\x01\x03\x02\x05\x01\x01\x02\x02\x02\x05\x02\x02\x01\x01\x03\x04\x05\x03\x04", // 礣
+ 0x7924: "\x01\x03\x02\x05\x01\x01\x02\x02\x03\x05\x04\x04\x05\x04\x01\x01\x02\x03\x04", // 礤
+ 0x7925: "\x01\x03\x02\x05\x01\x01\x02\x05\x01\x02\x05\x05\x04\x02\x05\x01\x01\x01\x03\x04", // 礥
+ 0x7926: "\x01\x03\x02\x05\x01\x04\x01\x03\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 礦
+ 0x7927: "\x01\x03\x02\x05\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01", // 礧
+ 0x7928: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x01\x03\x02\x05\x01", // 礨
+ 0x7929: "\x01\x03\x02\x05\x01\x03\x03\x01\x02\x03\x03\x01\x02\x02\x05\x01\x01\x01\x03\x04", // 礩
+ 0x792a: "\x01\x03\x02\x05\x01\x01\x03\x01\x02\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 礪
+ 0x792b: "\x01\x03\x02\x05\x01\x03\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x03\x04", // 礫
+ 0x792c: "\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x03\x04\x01\x03\x04\x01\x03\x02\x05\x01", // 礬
+ 0x792d: "\x01\x03\x02\x05\x01\x01\x04\x05\x02\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 礭
+ 0x792e: "\x01\x03\x02\x05\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x01\x03\x04\x03\x04", // 礮
+ 0x792f: "\x01\x03\x02\x05\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x05\x05\x04\x02\x03\x04", // 礯
+ 0x7930: "\x01\x03\x02\x05\x01\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 礰
+ 0x7931: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x05\x01\x05\x01\x01\x01\x01\x03\x02\x05\x01", // 礱
+ 0x7932: "\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x05\x01\x05\x01\x01\x01", // 礲
+ 0x7933: "\x01\x03\x02\x05\x01\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x01\x03\x02\x05\x01", // 礳
+ 0x7934: "\x01\x03\x02\x05\x01\x01\x02\x02\x04\x04\x01\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 礴
+ 0x7935: "\x01\x03\x02\x05\x01\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 礵
+ 0x7936: "\x01\x03\x02\x05\x01\x01\x02\x02\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 礶
+ 0x7937: "\x01\x03\x02\x05\x01\x01\x02\x02\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01", // 礷
+ 0x7938: "\x01\x03\x02\x05\x01\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 礸
+ 0x7939: "\x01\x03\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x03\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 礹
+ 0x793a: "\x01\x01\x02\x03\x04", // 示
+ 0x793b: "\x04\x05\x02\x04", // 礻
+ 0x793c: "\x04\x05\x02\x04\x05", // 礼
+ 0x793d: "\x04\x05\x02\x04\x05\x03", // 礽
+ 0x793e: "\x04\x05\x02\x04\x01\x02\x01", // 社
+ 0x793f: "\x04\x05\x02\x04\x03\x05\x04", // 礿
+ 0x7940: "\x04\x05\x02\x04\x05\x01\x05", // 祀
+ 0x7941: "\x04\x05\x02\x04\x05\x02", // 祁
+ 0x7942: "\x04\x05\x02\x04\x05\x01\x05", // 祂
+ 0x7943: "\x04\x05\x02\x04\x05\x05\x01", // 祃
+ 0x7944: "\x04\x05\x02\x04\x03\x04\x03\x02", // 祄
+ 0x7945: "\x04\x05\x02\x04\x03\x01\x03\x04", // 祅
+ 0x7946: "\x04\x05\x02\x04\x01\x01\x03\x04", // 祆
+ 0x7947: "\x04\x05\x02\x04\x03\x05\x01\x05", // 祇
+ 0x7948: "\x04\x05\x02\x04\x03\x03\x01\x02", // 祈
+ 0x7949: "\x04\x05\x02\x04\x02\x01\x02\x01", // 祉
+ 0x794a: "\x04\x05\x02\x04\x04\x01\x05\x03", // 祊
+ 0x794b: "\x04\x05\x02\x04\x03\x05\x05\x04", // 祋
+ 0x794c: "\x04\x05\x02\x04\x02\x05\x01\x02", // 祌
+ 0x794d: "\x04\x05\x02\x04\x03\x01\x02\x01", // 祍
+ 0x794e: "\x04\x05\x02\x04\x01\x01\x05\x02", // 祎
+ 0x794f: "\x04\x05\x02\x04\x01\x03\x02\x05\x01", // 祏
+ 0x7950: "\x04\x05\x02\x04\x01\x03\x02\x05\x01", // 祐
+ 0x7951: "\x04\x05\x02\x04\x03\x01\x01\x03\x04", // 祑
+ 0x7952: "\x04\x05\x02\x04\x05\x03\x02\x05\x01", // 祒
+ 0x7953: "\x04\x05\x02\x04\x01\x03\x05\x04\x04", // 祓
+ 0x7954: "\x04\x05\x02\x04\x03\x02\x01\x02\x04", // 祔
+ 0x7955: "\x04\x05\x02\x04\x04\x05\x04\x03\x04", // 祕
+ 0x7956: "\x04\x05\x02\x04\x02\x05\x01\x01\x01", // 祖
+ 0x7957: "\x04\x05\x02\x04\x03\x05\x01\x05\x04", // 祗
+ 0x7958: "\x01\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 祘
+ 0x7959: "\x04\x05\x02\x04\x01\x01\x02\x03\x04", // 祙
+ 0x795a: "\x04\x05\x02\x04\x03\x01\x02\x01\x01", // 祚
+ 0x795b: "\x04\x05\x02\x04\x01\x02\x01\x05\x04", // 祛
+ 0x795c: "\x04\x05\x02\x04\x01\x02\x02\x05\x01", // 祜
+ 0x795d: "\x04\x05\x02\x04\x02\x05\x01\x03\x05", // 祝
+ 0x795e: "\x04\x05\x02\x04\x02\x05\x01\x01\x02", // 神
+ 0x795f: "\x05\x02\x02\x05\x02\x01\x01\x02\x03\x04", // 祟
+ 0x7960: "\x04\x05\x02\x04\x05\x01\x02\x05\x01", // 祠
+ 0x7961: "\x02\x01\x02\x01\x03\x05\x01\x01\x02\x03\x04", // 祡
+ 0x7962: "\x04\x05\x02\x04\x03\x05\x02\x03\x04", // 祢
+ 0x7963: "\x04\x05\x02\x04\x03\x01\x03\x05\x03\x04", // 祣
+ 0x7964: "\x04\x05\x02\x04\x05\x04\x01\x05\x04\x01", // 祤
+ 0x7965: "\x04\x05\x02\x04\x04\x03\x01\x01\x01\x02", // 祥
+ 0x7966: "\x04\x05\x02\x04\x02\x05\x01\x01\x01\x03\x04", // 祦
+ 0x7967: "\x04\x05\x02\x04\x03\x04\x01\x05\x03\x04", // 祧
+ 0x7968: "\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 票
+ 0x7969: "\x04\x05\x02\x04\x03\x01\x01\x02\x03\x04", // 祩
+ 0x796a: "\x04\x05\x02\x04\x03\x05\x01\x03\x05\x05", // 祪
+ 0x796b: "\x04\x05\x02\x04\x03\x04\x01\x02\x05\x01", // 祫
+ 0x796c: "\x04\x05\x02\x04\x01\x05\x04\x01\x02\x01", // 祬
+ 0x796d: "\x03\x05\x04\x04\x05\x04\x01\x01\x02\x03\x04", // 祭
+ 0x796e: "\x04\x05\x02\x04\x01\x02\x01\x02\x05\x01", // 祮
+ 0x796f: "\x04\x05\x02\x04\x02\x01\x02\x05\x03\x04", // 祯
+ 0x7970: "\x04\x05\x02\x04\x03\x01\x02\x01\x02\x05\x01", // 祰
+ 0x7971: "\x04\x05\x02\x04\x04\x03\x02\x05\x01\x03\x05", // 祱
+ 0x7972: "\x04\x05\x02\x04\x05\x01\x01\x04\x05\x05\x04", // 祲
+ 0x7973: "\x04\x05\x02\x04\x01\x03\x02\x02\x05\x03\x04", // 祳
+ 0x7974: "\x04\x05\x02\x04\x01\x01\x03\x02\x05\x03\x04", // 祴
+ 0x7975: "\x04\x05\x02\x04\x02\x05\x01\x02\x03\x04\x01", // 祵
+ 0x7976: "\x04\x05\x02\x04\x04\x03\x05\x01\x05\x02\x03", // 祶
+ 0x7977: "\x04\x05\x02\x04\x01\x01\x01\x03\x01\x02\x04", // 祷
+ 0x7978: "\x04\x05\x02\x04\x02\x05\x01\x02\x05\x03\x04", // 祸
+ 0x7979: "\x04\x05\x02\x04\x03\x05\x03\x01\x01\x02\x05\x02", // 祹
+ 0x797a: "\x04\x05\x02\x04\x01\x02\x02\x01\x01\x01\x03\x04", // 祺
+ 0x797b: "\x04\x05\x02\x04\x02\x05\x01\x02\x02\x05\x01\x01", // 祻
+ 0x797c: "\x04\x05\x02\x04\x02\x05\x01\x01\x01\x02\x03\x04", // 祼
+ 0x797d: "\x04\x05\x02\x04\x04\x01\x03\x04\x03\x04\x01\x02", // 祽
+ 0x797e: "\x04\x05\x02\x04\x01\x02\x01\x03\x04\x03\x05\x04", // 祾
+ 0x797f: "\x04\x05\x02\x04\x05\x05\x01\x02\x04\x01\x03\x04", // 祿
+ 0x7980: "\x04\x01\x02\x05\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 禀
+ 0x7981: "\x01\x02\x03\x04\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 禁
+ 0x7982: "\x04\x05\x02\x04\x03\x05\x01\x02\x01\x02\x05\x01", // 禂
+ 0x7983: "\x04\x05\x02\x04\x01\x02\x02\x05\x01\x01\x01\x01", // 禃
+ 0x7984: "\x04\x05\x02\x04\x05\x01\x01\x02\x04\x01\x03\x04", // 禄
+ 0x7985: "\x04\x05\x02\x04\x04\x03\x02\x05\x01\x01\x01\x02", // 禅
+ 0x7986: "\x04\x05\x02\x04\x03\x02\x05\x01\x01\x03\x01\x02", // 禆
+ 0x7987: "\x04\x05\x02\x04\x01\x02\x01\x03\x02\x05\x01\x01", // 禇
+ 0x7988: "\x04\x05\x02\x04\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 禈
+ 0x7989: "\x04\x05\x02\x04\x04\x03\x01\x02\x05\x03\x05\x01\x01", // 禉
+ 0x798a: "\x04\x05\x02\x04\x01\x01\x01\x02\x05\x03\x01\x03\x04", // 禊
+ 0x798b: "\x04\x05\x02\x04\x01\x02\x05\x02\x02\x01\x01\x02\x01", // 禋
+ 0x798c: "\x04\x05\x02\x04\x04\x03\x01\x05\x05\x04\x05\x05\x04", // 禌
+ 0x798d: "\x04\x05\x02\x04\x02\x05\x05\x02\x05\x02\x05\x01", // 禍
+ 0x798e: "\x04\x05\x02\x04\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 禎
+ 0x798f: "\x04\x05\x02\x04\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 福
+ 0x7990: "\x04\x05\x02\x04\x03\x04\x04\x03\x01\x01\x03\x05\x04", // 禐
+ 0x7991: "\x04\x05\x02\x04\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 禑
+ 0x7992: "\x04\x05\x02\x04\x05\x05\x01\x03\x05\x03\x03\x03\x04", // 禒
+ 0x7993: "\x04\x05\x02\x04\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 禓
+ 0x7994: "\x04\x05\x02\x04\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 禔
+ 0x7995: "\x04\x05\x02\x04\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 禕
+ 0x7996: "\x04\x05\x02\x04\x01\x02\x02\x01\x01\x01\x02\x03\x04", // 禖
+ 0x7997: "\x04\x05\x02\x04\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 禗
+ 0x7998: "\x04\x05\x02\x04\x04\x01\x04\x03\x04\x05\x02\x05\x02", // 禘
+ 0x7999: "\x04\x05\x02\x04\x02\x01\x01\x03\x05\x02\x05\x01\x01", // 禙
+ 0x799a: "\x04\x05\x02\x04\x04\x03\x01\x01\x02\x01\x04\x04\x04\x04", // 禚
+ 0x799b: "\x04\x05\x02\x04\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 禛
+ 0x799c: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x01\x01\x02\x03\x04", // 禜
+ 0x799d: "\x04\x05\x02\x04\x02\x05\x01\x02\x01\x03\x04\x03\x05\x04", // 禝
+ 0x799e: "\x04\x05\x02\x04\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 禞
+ 0x799f: "\x04\x05\x02\x04\x04\x01\x03\x05\x01\x01\x02\x02\x05\x01", // 禟
+ 0x79a0: "\x04\x05\x02\x04\x03\x03\x02\x01\x05\x03\x01\x05\x03\x05", // 禠
+ 0x79a1: "\x04\x05\x02\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 禡
+ 0x79a2: "\x04\x05\x02\x04\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 禢
+ 0x79a3: "\x04\x05\x02\x04\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 禣
+ 0x79a4: "\x04\x05\x02\x04\x02\x05\x02\x02\x01\x05\x04\x01\x05\x04\x01", // 禤
+ 0x79a5: "\x04\x05\x02\x04\x01\x02\x02\x01\x01\x01\x03\x04\x01\x02\x01", // 禥
+ 0x79a6: "\x03\x03\x02\x03\x01\x01\x02\x01\x02\x01\x05\x02\x01\x01\x02\x03\x04", // 禦
+ 0x79a7: "\x04\x05\x02\x04\x01\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01", // 禧
+ 0x79a8: "\x04\x05\x02\x04\x05\x05\x04\x05\x05\x04\x01\x03\x04\x05\x03\x04", // 禨
+ 0x79a9: "\x04\x05\x02\x04\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 禩
+ 0x79aa: "\x04\x05\x02\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 禪
+ 0x79ab: "\x04\x05\x02\x04\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 禫
+ 0x79ac: "\x04\x05\x02\x04\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 禬
+ 0x79ad: "\x04\x05\x02\x04\x04\x03\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 禭
+ 0x79ae: "\x04\x05\x02\x04\x02\x05\x01\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01", // 禮
+ 0x79af: "\x04\x05\x02\x04\x02\x05\x01\x02\x02\x01\x01\x03\x01\x01\x05\x03\x04", // 禯
+ 0x79b0: "\x04\x05\x02\x04\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 禰
+ 0x79b1: "\x04\x05\x02\x04\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 禱
+ 0x79b2: "\x04\x05\x02\x04\x01\x03\x01\x02\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 禲
+ 0x79b3: "\x04\x05\x02\x04\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 禳
+ 0x79b4: "\x04\x05\x02\x04\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02", // 禴
+ 0x79b5: "\x04\x05\x02\x04\x02\x05\x01\x01\x01\x02\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 禵
+ 0x79b6: "\x04\x05\x02\x04\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 禶
+ 0x79b7: "\x04\x05\x02\x04\x04\x03\x01\x02\x03\x04\x01\x03\x04\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 禷
+ 0x79b8: "\x02\x05\x05\x04", // 禸
+ 0x79b9: "\x03\x02\x05\x01\x02\x05\x02\x01\x04", // 禹
+ 0x79ba: "\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 禺
+ 0x79bb: "\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 离
+ 0x79bc: "\x02\x01\x02\x05\x03\x04\x01\x02\x05\x05\x04", // 禼
+ 0x79bd: "\x03\x04\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 禽
+ 0x79be: "\x03\x01\x02\x03\x04", // 禾
+ 0x79bf: "\x03\x01\x02\x03\x04\x03\x05", // 禿
+ 0x79c0: "\x03\x01\x02\x03\x04\x05\x03", // 秀
+ 0x79c1: "\x03\x01\x02\x03\x04\x05\x04", // 私
+ 0x79c2: "\x03\x01\x02\x03\x04\x03\x04", // 秂
+ 0x79c3: "\x03\x01\x02\x03\x04\x03\x05", // 秃
+ 0x79c4: "\x03\x01\x02\x03\x04\x05\x02\x01", // 秄
+ 0x79c5: "\x03\x01\x02\x03\x04\x03\x01\x05", // 秅
+ 0x79c6: "\x03\x01\x02\x03\x04\x01\x01\x02", // 秆
+ 0x79c7: "\x03\x01\x02\x03\x04\x03\x05\x04", // 秇
+ 0x79c8: "\x03\x01\x02\x03\x04\x02\x05\x02", // 秈
+ 0x79c9: "\x03\x01\x05\x01\x01\x02\x03\x04", // 秉
+ 0x79ca: "\x03\x01\x02\x03\x04\x03\x01\x02", // 秊
+ 0x79cb: "\x03\x01\x02\x03\x04\x04\x03\x03\x04", // 秋
+ 0x79cc: "\x04\x03\x03\x04\x03\x01\x02\x03\x04", // 秌
+ 0x79cd: "\x03\x01\x02\x03\x04\x02\x05\x01\x02", // 种
+ 0x79ce: "\x03\x01\x02\x03\x04\x03\x04\x05\x03", // 秎
+ 0x79cf: "\x03\x01\x02\x03\x04\x03\x01\x01\x05", // 秏
+ 0x79d0: "\x03\x01\x02\x03\x04\x01\x01\x05\x04", // 秐
+ 0x79d1: "\x03\x01\x02\x03\x04\x04\x04\x01\x02", // 科
+ 0x79d2: "\x03\x01\x02\x03\x04\x02\x03\x04\x03", // 秒
+ 0x79d3: "\x03\x01\x02\x03\x04\x01\x02\x05\x04", // 秓
+ 0x79d4: "\x03\x01\x02\x03\x04\x04\x01\x03\x05", // 秔
+ 0x79d5: "\x03\x01\x02\x03\x04\x01\x05\x03\x05", // 秕
+ 0x79d6: "\x03\x01\x02\x03\x04\x03\x05\x01\x05", // 秖
+ 0x79d7: "\x03\x01\x02\x03\x04\x03\x01\x03\x04", // 秗
+ 0x79d8: "\x03\x01\x02\x03\x04\x04\x05\x04\x03\x04", // 秘
+ 0x79d9: "\x03\x01\x02\x03\x04\x01\x02\x02\x05\x01", // 秙
+ 0x79da: "\x03\x01\x02\x03\x04\x04\x03\x01\x01\x02", // 秚
+ 0x79db: "\x03\x01\x02\x03\x04\x05\x03\x02\x05\x04", // 秛
+ 0x79dc: "\x03\x01\x02\x03\x04\x05\x01\x03\x03\x05", // 秜
+ 0x79dd: "\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04", // 秝
+ 0x79de: "\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 秞
+ 0x79df: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 租
+ 0x79e0: "\x03\x01\x02\x03\x04\x01\x03\x02\x04\x01", // 秠
+ 0x79e1: "\x03\x01\x02\x03\x04\x01\x03\x05\x04\x04", // 秡
+ 0x79e2: "\x03\x01\x02\x03\x04\x03\x04\x04\x05\x04", // 秢
+ 0x79e3: "\x03\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 秣
+ 0x79e4: "\x03\x01\x02\x03\x04\x01\x04\x03\x01\x02", // 秤
+ 0x79e5: "\x03\x01\x02\x03\x04\x02\x01\x02\x05\x01", // 秥
+ 0x79e6: "\x01\x01\x01\x03\x04\x03\x01\x02\x03\x04", // 秦
+ 0x79e7: "\x03\x01\x02\x03\x04\x02\x05\x01\x03\x04", // 秧
+ 0x79e8: "\x03\x01\x02\x03\x04\x03\x01\x02\x01\x01", // 秨
+ 0x79e9: "\x03\x01\x02\x03\x04\x03\x01\x01\x03\x04", // 秩
+ 0x79ea: "\x03\x01\x02\x03\x04\x03\x05\x01\x05\x04", // 秪
+ 0x79eb: "\x03\x01\x02\x03\x04\x01\x02\x03\x04\x04", // 秫
+ 0x79ec: "\x03\x01\x02\x03\x04\x01\x05\x01\x05", // 秬
+ 0x79ed: "\x03\x01\x02\x03\x04\x03\x05\x02\x03", // 秭
+ 0x79ee: "\x03\x01\x02\x03\x04\x05\x04\x02\x05\x01", // 秮
+ 0x79ef: "\x03\x01\x02\x03\x04\x02\x05\x01\x03\x04", // 积
+ 0x79f0: "\x03\x01\x02\x03\x04\x03\x05\x02\x03\x04", // 称
+ 0x79f1: "\x03\x01\x02\x03\x04\x02\x05\x01\x02\x05\x01", // 秱
+ 0x79f2: "\x03\x01\x02\x03\x04\x01\x02\x01\x01\x02\x04", // 秲
+ 0x79f3: "\x03\x01\x02\x03\x04\x03\x01\x02\x02\x05\x01", // 秳
+ 0x79f4: "\x03\x01\x02\x03\x04\x03\x04\x01\x02\x05\x01", // 秴
+ 0x79f5: "\x03\x01\x02\x03\x04\x02\x05\x01\x03\x04\x01", // 秵
+ 0x79f6: "\x04\x01\x03\x05\x03\x04\x03\x01\x02\x03\x04", // 秶
+ 0x79f7: "\x03\x01\x02\x03\x04\x01\x05\x04\x01\x02\x01", // 秷
+ 0x79f8: "\x03\x01\x02\x03\x04\x01\x02\x01\x02\x05\x01", // 秸
+ 0x79f9: "\x03\x01\x02\x03\x04\x03\x02\x03\x01\x02\x01", // 秹
+ 0x79fa: "\x03\x01\x02\x03\x04\x04\x04\x05\x03\x01\x05", // 秺
+ 0x79fb: "\x03\x01\x02\x03\x04\x03\x05\x04\x03\x05\x04", // 移
+ 0x79fc: "\x03\x01\x02\x03\x04\x03\x01\x01\x02\x03\x04", // 秼
+ 0x79fd: "\x03\x01\x02\x03\x04\x02\x05\x02\x03\x05\x04", // 秽
+ 0x79fe: "\x03\x01\x02\x03\x04\x04\x05\x03\x05\x03\x04", // 秾
+ 0x79ff: "\x03\x01\x02\x03\x04\x01\x02\x05\x01\x01\x02\x04", // 秿
+ 0x7a00: "\x03\x01\x02\x03\x04\x03\x04\x01\x03\x02\x05\x02", // 稀
+ 0x7a01: "\x04\x01\x02\x05\x01\x04\x05\x03\x01\x02\x03\x04", // 稁
+ 0x7a02: "\x03\x01\x02\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 稂
+ 0x7a03: "\x03\x01\x02\x03\x04\x03\x04\x04\x03\x05\x02\x01", // 稃
+ 0x7a04: "\x03\x01\x02\x03\x04\x05\x04\x03\x04\x03\x05\x04", // 稄
+ 0x7a05: "\x03\x01\x02\x03\x04\x03\x04\x02\x05\x01\x03\x05", // 稅
+ 0x7a06: "\x03\x01\x02\x03\x04\x02\x05\x01\x02\x05\x01", // 稆
+ 0x7a07: "\x03\x01\x02\x03\x04\x02\x05\x01\x02\x03\x04\x01", // 稇
+ 0x7a08: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01\x01\x02", // 稈
+ 0x7a09: "\x03\x01\x02\x03\x04\x01\x02\x05\x01\x01\x03\x04", // 稉
+ 0x7a0a: "\x03\x01\x02\x03\x04\x04\x03\x05\x01\x05\x02\x03", // 稊
+ 0x7a0b: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x01", // 程
+ 0x7a0c: "\x03\x01\x02\x03\x04\x03\x04\x01\x01\x02\x03\x04", // 稌
+ 0x7a0d: "\x03\x01\x02\x03\x04\x02\x04\x03\x02\x05\x01\x01", // 稍
+ 0x7a0e: "\x03\x01\x02\x03\x04\x04\x03\x02\x05\x01\x03\x05", // 税
+ 0x7a0f: "\x03\x01\x02\x03\x04\x01\x02\x01\x05\x05\x01\x02\x01", // 稏
+ 0x7a10: "\x03\x01\x02\x03\x04\x03\x04\x01\x02\x05\x01\x02\x02", // 稐
+ 0x7a11: "\x03\x01\x02\x03\x04\x01\x02\x01\x03\x04\x01\x02\x01", // 稑
+ 0x7a12: "\x03\x01\x02\x03\x04\x02\x05\x01\x02\x02\x05\x01\x01", // 稒
+ 0x7a13: "\x03\x01\x02\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01", // 稓
+ 0x7a14: "\x03\x01\x02\x03\x04\x03\x04\x04\x05\x04\x05\x04\x04", // 稔
+ 0x7a15: "\x03\x01\x02\x03\x04\x04\x01\x02\x05\x01\x05\x02\x01", // 稕
+ 0x7a16: "\x03\x01\x02\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01", // 稖
+ 0x7a17: "\x03\x01\x02\x03\x04\x03\x02\x05\x01\x01\x03\x01\x02", // 稗
+ 0x7a18: "\x03\x01\x02\x03\x04\x01\x02\x02\x01\x01\x01\x03\x04", // 稘
+ 0x7a19: "\x03\x01\x02\x03\x04\x01\x02\x02\x05\x01\x01\x01\x01", // 稙
+ 0x7a1a: "\x03\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 稚
+ 0x7a1b: "\x03\x01\x02\x03\x04\x02\x05\x03\x01\x02\x03\x04\x01", // 稛
+ 0x7a1c: "\x03\x01\x02\x03\x04\x01\x02\x01\x03\x04\x03\x05\x04", // 稜
+ 0x7a1d: "\x03\x01\x02\x03\x04\x03\x05\x01\x01\x03\x05\x01\x01", // 稝
+ 0x7a1e: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x03\x04", // 稞
+ 0x7a1f: "\x04\x01\x02\x05\x02\x05\x01\x01\x03\x01\x02\x03\x04", // 稟
+ 0x7a20: "\x03\x01\x02\x03\x04\x03\x05\x01\x02\x01\x02\x05\x01", // 稠
+ 0x7a21: "\x03\x01\x02\x03\x04\x04\x01\x03\x04\x03\x04\x01\x02", // 稡
+ 0x7a22: "\x03\x01\x02\x03\x04\x01\x02\x05\x01\x01\x05\x03\x04", // 稢
+ 0x7a23: "\x03\x05\x02\x05\x01\x02\x01\x01\x03\x01\x02\x03\x04", // 稣
+ 0x7a24: "\x03\x01\x02\x03\x04\x04\x01\x02\x05\x01\x02\x03\x04", // 稤
+ 0x7a25: "\x03\x01\x02\x03\x04\x04\x04\x04\x04\x02\x05\x01\x01", // 稥
+ 0x7a26: "\x03\x01\x02\x03\x04\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 稦
+ 0x7a27: "\x03\x01\x02\x03\x04\x01\x01\x01\x02\x05\x03\x01\x03\x04", // 稧
+ 0x7a28: "\x03\x01\x02\x03\x04\x04\x05\x01\x03\x02\x05\x01\x02\x02", // 稨
+ 0x7a29: "\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x02\x05\x01\x01", // 稩
+ 0x7a2a: "\x03\x01\x02\x03\x04\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 稪
+ 0x7a2b: "\x03\x01\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 稫
+ 0x7a2c: "\x03\x01\x02\x03\x04\x01\x03\x02\x05\x02\x02\x01\x03\x04", // 稬
+ 0x7a2d: "\x03\x01\x02\x03\x04\x01\x05\x03\x05\x03\x02\x05\x01\x01", // 稭
+ 0x7a2e: "\x03\x01\x02\x03\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 種
+ 0x7a2f: "\x03\x01\x02\x03\x04\x03\x04\x05\x02\x03\x04\x03\x05\x04", // 稯
+ 0x7a30: "\x03\x01\x02\x03\x04\x05\x02\x01\x03\x04\x02\x05\x01\x01", // 稰
+ 0x7a31: "\x03\x01\x02\x03\x04\x03\x04\x04\x03\x02\x05\x02\x01\x01", // 稱
+ 0x7a32: "\x03\x01\x02\x03\x04\x03\x04\x04\x03\x02\x02\x05\x01\x01", // 稲
+ 0x7a33: "\x03\x01\x02\x03\x04\x03\x05\x05\x01\x01\x04\x05\x04\x04", // 稳
+ 0x7a34: "\x03\x01\x02\x03\x04\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 稴
+ 0x7a35: "\x03\x01\x02\x03\x04\x04\x03\x01\x05\x05\x04\x05\x05\x04", // 稵
+ 0x7a36: "\x03\x01\x02\x03\x04\x01\x02\x05\x01\x01\x05\x03\x03\x03\x04", // 稶
+ 0x7a37: "\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x03\x04\x03\x05\x04", // 稷
+ 0x7a38: "\x03\x01\x02\x03\x04\x04\x01\x05\x05\x04\x02\x05\x01\x02\x01", // 稸
+ 0x7a39: "\x03\x01\x02\x03\x04\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 稹
+ 0x7a3a: "\x03\x01\x02\x03\x04\x05\x01\x03\x04\x01\x04\x03\x01\x01\x02", // 稺
+ 0x7a3b: "\x03\x01\x02\x03\x04\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01", // 稻
+ 0x7a3c: "\x03\x01\x02\x03\x04\x04\x04\x05\x01\x03\x05\x03\x03\x03\x04", // 稼
+ 0x7a3d: "\x03\x01\x02\x03\x04\x01\x03\x05\x04\x03\x05\x02\x05\x01\x01", // 稽
+ 0x7a3e: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x03\x01\x02\x03\x04", // 稾
+ 0x7a3f: "\x03\x01\x02\x03\x04\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 稿
+ 0x7a40: "\x01\x02\x01\x04\x05\x01\x03\x01\x02\x03\x04\x03\x05\x05\x04", // 穀
+ 0x7a41: "\x03\x01\x02\x03\x04\x01\x02\x02\x01\x02\x02\x01\x01\x01", // 穁
+ 0x7a42: "\x03\x01\x02\x03\x04\x01\x02\x05\x01\x01\x02\x04\x05\x04\x04", // 穂
+ 0x7a43: "\x03\x01\x02\x03\x04\x04\x04\x05\x03\x04\x03\x04\x02\x05\x01", // 穃
+ 0x7a44: "\x03\x01\x02\x03\x04\x03\x05\x04\x04\x05\x04\x01\x01\x02\x03\x04", // 穄
+ 0x7a45: "\x03\x01\x02\x03\x04\x04\x01\x03\x05\x01\x01\x02\x04\x01\x03\x04", // 穅
+ 0x7a46: "\x03\x01\x02\x03\x04\x03\x02\x05\x01\x01\x02\x03\x04\x03\x03\x03", // 穆
+ 0x7a47: "\x03\x01\x02\x03\x04\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 穇
+ 0x7a48: "\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x03\x01\x02\x03\x04", // 穈
+ 0x7a49: "\x03\x01\x02\x03\x04\x05\x01\x03\x02\x04\x01\x03\x04\x03\x01\x01\x02", // 穉
+ 0x7a4a: "\x03\x01\x02\x03\x04\x05\x01\x01\x05\x04\x01\x05\x03\x05", // 穊
+ 0x7a4b: "\x03\x01\x02\x03\x04\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 穋
+ 0x7a4c: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x02\x03\x04", // 穌
+ 0x7a4d: "\x03\x01\x02\x03\x04\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 積
+ 0x7a4e: "\x03\x05\x03\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 穎
+ 0x7a4f: "\x03\x01\x02\x03\x04\x03\x04\x04\x03\x05\x01\x01\x04\x05\x04\x04", // 穏
+ 0x7a50: "\x03\x01\x02\x03\x04\x03\x05\x02\x05\x01\x01\x02\x05\x01\x01\x05", // 穐
+ 0x7a51: "\x03\x01\x02\x03\x04\x01\x02\x04\x03\x01\x02\x05\x02\x05\x01\x01", // 穑
+ 0x7a52: "\x03\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 穒
+ 0x7a53: "\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 穓
+ 0x7a54: "\x03\x01\x02\x03\x04\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 穔
+ 0x7a55: "\x03\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02\x03\x04", // 穕
+ 0x7a56: "\x03\x01\x02\x03\x04\x05\x05\x04\x05\x05\x04\x01\x03\x04\x05\x03\x04", // 穖
+ 0x7a57: "\x03\x01\x02\x03\x04\x01\x02\x05\x01\x01\x02\x01\x04\x04\x05\x04\x04", // 穗
+ 0x7a58: "\x03\x01\x02\x03\x04\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 穘
+ 0x7a59: "\x03\x01\x02\x03\x04\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 穙
+ 0x7a5a: "\x03\x01\x02\x03\x04\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 穚
+ 0x7a5b: "\x03\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 穛
+ 0x7a5c: "\x03\x01\x02\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 穜
+ 0x7a5d: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x02\x01\x01\x01\x05\x04", // 穝
+ 0x7a5e: "\x03\x01\x02\x03\x04\x03\x05\x02\x05\x01\x02\x01\x01\x02\x05\x01\x01", // 穞
+ 0x7a5f: "\x03\x01\x02\x03\x04\x04\x03\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 穟
+ 0x7a60: "\x03\x01\x02\x03\x04\x02\x05\x01\x02\x02\x01\x01\x03\x01\x01\x05\x03\x04", // 穠
+ 0x7a61: "\x03\x01\x02\x03\x04\x01\x02\x03\x04\x03\x04\x01\x02\x05\x02\x05\x01\x01", // 穡
+ 0x7a62: "\x03\x01\x02\x03\x04\x02\x01\x02\x01\x01\x03\x01\x02\x03\x03\x05\x03\x04", // 穢
+ 0x7a63: "\x03\x01\x02\x03\x04\x04\x01\x03\x04\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 穣
+ 0x7a64: "\x03\x01\x02\x03\x04\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02", // 穤
+ 0x7a65: "\x03\x01\x02\x03\x04\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 穥
+ 0x7a66: "\x03\x01\x02\x03\x04\x04\x04\x05\x01\x02\x03\x03\x02\x05\x01\x01\x01\x03\x04", // 穦
+ 0x7a67: "\x03\x01\x02\x03\x04\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01", // 穧
+ 0x7a68: "\x03\x01\x02\x03\x04\x03\x05\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 穨
+ 0x7a69: "\x03\x01\x02\x03\x04\x03\x04\x04\x03\x01\x02\x01\x05\x01\x01\x04\x05\x04\x04", // 穩
+ 0x7a6a: "\x03\x01\x02\x03\x04\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 穪
+ 0x7a6b: "\x03\x01\x02\x03\x04\x01\x02\x02\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 穫
+ 0x7a6c: "\x03\x01\x02\x03\x04\x04\x01\x03\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 穬
+ 0x7a6d: "\x03\x01\x02\x03\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01", // 穭
+ 0x7a6e: "\x03\x01\x02\x03\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x04\x04\x04\x04", // 穮
+ 0x7a6f: "\x03\x01\x02\x03\x04\x01\x02\x02\x05\x01\x02\x05\x01\x01\x02\x05\x02\x05\x01\x01", // 穯
+ 0x7a70: "\x03\x01\x02\x03\x04\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 穰
+ 0x7a71: "\x03\x01\x02\x03\x04\x03\x04\x04\x03\x02\x05\x02\x02\x01\x05\x01\x01\x05\x04\x01\x02\x04", // 穱
+ 0x7a72: "\x03\x01\x02\x03\x04\x01\x02\x05\x04\x01\x02\x05\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 穲
+ 0x7a73: "\x03\x01\x02\x03\x04\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 穳
+ 0x7a74: "\x04\x04\x05\x03\x04", // 穴
+ 0x7a75: "\x04\x04\x05\x03\x04\x05", // 穵
+ 0x7a76: "\x04\x04\x05\x03\x04\x03\x05", // 究
+ 0x7a77: "\x04\x04\x05\x03\x04\x05\x03", // 穷
+ 0x7a78: "\x04\x04\x05\x03\x04\x03\x05\x04", // 穸
+ 0x7a79: "\x04\x04\x05\x03\x04\x05\x01\x05", // 穹
+ 0x7a7a: "\x04\x04\x05\x03\x04\x01\x02\x01", // 空
+ 0x7a7b: "\x04\x04\x05\x03\x04\x01\x01\x02", // 穻
+ 0x7a7c: "\x04\x04\x05\x03\x04\x01\x02\x03\x04", // 穼
+ 0x7a7d: "\x04\x04\x05\x03\x04\x01\x01\x03\x02", // 穽
+ 0x7a7e: "\x04\x04\x05\x03\x04\x03\x01\x03\x04", // 穾
+ 0x7a7f: "\x04\x04\x05\x03\x04\x01\x05\x02\x03", // 穿
+ 0x7a80: "\x04\x04\x05\x03\x04\x01\x05\x02\x05", // 窀
+ 0x7a81: "\x04\x04\x05\x03\x04\x01\x03\x04\x04", // 突
+ 0x7a82: "\x04\x04\x05\x03\x04\x03\x01\x01\x02", // 窂
+ 0x7a83: "\x04\x04\x05\x03\x04\x01\x05\x05\x03", // 窃
+ 0x7a84: "\x04\x04\x05\x03\x04\x03\x01\x02\x01\x01", // 窄
+ 0x7a85: "\x04\x04\x05\x03\x04\x02\x05\x01\x01\x01", // 窅
+ 0x7a86: "\x04\x04\x05\x03\x04\x03\x04\x05\x04", // 窆
+ 0x7a87: "\x04\x04\x05\x03\x04\x03\x05\x05\x01\x05", // 窇
+ 0x7a88: "\x04\x04\x05\x03\x04\x05\x05\x04\x05\x03", // 窈
+ 0x7a89: "\x04\x04\x05\x03\x04\x01\x02\x05\x03\x04", // 窉
+ 0x7a8a: "\x04\x04\x05\x03\x04\x03\x03\x05\x04\x04", // 窊
+ 0x7a8b: "\x04\x04\x05\x03\x04\x05\x02\x02\x05\x02", // 窋
+ 0x7a8c: "\x04\x04\x05\x03\x04\x03\x05\x03\x05\x02", // 窌
+ 0x7a8d: "\x04\x04\x05\x03\x04\x01\x02\x01\x01\x05", // 窍
+ 0x7a8e: "\x04\x04\x05\x03\x04\x03\x05\x04\x05\x01", // 窎
+ 0x7a8f: "\x04\x04\x05\x03\x04\x04\x04\x01\x01\x01\x02", // 窏
+ 0x7a90: "\x04\x04\x05\x03\x04\x01\x02\x01\x01\x02\x01", // 窐
+ 0x7a91: "\x04\x04\x05\x03\x04\x03\x01\x01\x02\x05\x02", // 窑
+ 0x7a92: "\x04\x04\x05\x03\x04\x01\x05\x04\x01\x02\x01", // 窒
+ 0x7a93: "\x04\x04\x05\x03\x04\x05\x04\x04\x05\x04\x04", // 窓
+ 0x7a94: "\x04\x04\x05\x03\x04\x04\x01\x03\x04\x03\x04", // 窔
+ 0x7a95: "\x04\x04\x05\x03\x04\x03\x04\x01\x05\x03\x04", // 窕
+ 0x7a96: "\x04\x04\x05\x03\x04\x03\x01\x02\x01\x02\x05\x01", // 窖
+ 0x7a97: "\x04\x04\x05\x03\x04\x03\x02\x05\x03\x05\x04\x01", // 窗
+ 0x7a98: "\x04\x04\x05\x03\x04\x05\x01\x01\x03\x02\x05\x01", // 窘
+ 0x7a99: "\x04\x04\x05\x03\x04\x01\x02\x01\x03\x05\x02\x01", // 窙
+ 0x7a9a: "\x04\x04\x05\x03\x04\x01\x03\x05\x05\x03\x04", // 窚
+ 0x7a9b: "\x04\x04\x05\x03\x04\x01\x01\x03\x05\x05\x03\x01", // 窛
+ 0x7a9c: "\x04\x04\x05\x03\x04\x02\x05\x01\x02\x05\x01\x02", // 窜
+ 0x7a9d: "\x04\x04\x05\x03\x04\x02\x05\x01\x02\x05\x03\x04", // 窝
+ 0x7a9e: "\x04\x04\x05\x03\x04\x03\x05\x03\x02\x01\x05\x01\x01", // 窞
+ 0x7a9f: "\x04\x04\x05\x03\x04\x05\x01\x03\x05\x02\x02\x05\x02", // 窟
+ 0x7aa0: "\x04\x04\x05\x03\x04\x02\x05\x01\x01\x01\x02\x03\x04", // 窠
+ 0x7aa1: "\x04\x04\x05\x03\x04\x05\x04\x05\x04\x05\x04\x05\x04", // 窡
+ 0x7aa2: "\x04\x04\x05\x03\x04\x01\x02\x05\x01\x01\x05\x03\x04", // 窢
+ 0x7aa3: "\x04\x04\x05\x03\x04\x04\x01\x03\x04\x03\x04\x01\x02", // 窣
+ 0x7aa4: "\x04\x04\x05\x03\x04\x02\x05\x01\x01\x01\x05\x03\x05", // 窤
+ 0x7aa5: "\x04\x04\x05\x03\x04\x01\x01\x03\x04\x02\x05\x03\x05", // 窥
+ 0x7aa6: "\x04\x04\x05\x03\x04\x01\x02\x05\x04\x04\x01\x03\x04", // 窦
+ 0x7aa7: "\x04\x04\x05\x03\x04\x02\x01\x02\x05\x01\x01\x01\x02", // 窧
+ 0x7aa8: "\x04\x04\x05\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 窨
+ 0x7aa9: "\x04\x04\x05\x03\x04\x02\x05\x05\x02\x05\x02\x05\x01", // 窩
+ 0x7aaa: "\x04\x04\x05\x03\x04\x04\x04\x01\x01\x02\x01\x01\x02\x01", // 窪
+ 0x7aab: "\x04\x04\x05\x03\x04\x01\x01\x01\x02\x05\x03\x01\x03\x04", // 窫
+ 0x7aac: "\x04\x04\x05\x03\x04\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 窬
+ 0x7aad: "\x04\x04\x05\x03\x04\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 窭
+ 0x7aae: "\x04\x04\x05\x03\x04\x03\x02\x05\x01\x01\x01\x03\x05\x01\x05", // 窮
+ 0x7aaf: "\x04\x04\x05\x03\x04\x04\x03\x01\x01\x02\x01\x04\x04\x04\x04", // 窯
+ 0x7ab0: "\x04\x04\x05\x03\x04\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02", // 窰
+ 0x7ab1: "\x04\x04\x05\x03\x04\x03\x02\x02\x03\x05\x04\x01\x02\x03\x04", // 窱
+ 0x7ab2: "\x04\x04\x05\x03\x04\x04\x03\x01\x02\x03\x04\x04\x04\x01\x02", // 窲
+ 0x7ab3: "\x04\x04\x05\x03\x04\x03\x03\x05\x04\x04\x03\x03\x05\x04\x04", // 窳
+ 0x7ab4: "\x04\x04\x05\x03\x04\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 窴
+ 0x7ab5: "\x04\x04\x05\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 窵
+ 0x7ab6: "\x04\x04\x05\x03\x04\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 窶
+ 0x7ab7: "\x04\x04\x05\x03\x04\x01\x02\x02\x01\x01\x01\x03\x05\x03\x05\x02", // 窷
+ 0x7ab8: "\x04\x04\x05\x03\x04\x03\x04\x03\x01\x02\x03\x04\x04\x05\x04\x04", // 窸
+ 0x7ab9: "\x04\x04\x05\x03\x04\x05\x02\x01\x03\x01\x02\x05\x01\x02\x05\x01", // 窹
+ 0x7aba: "\x04\x04\x05\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 窺
+ 0x7abb: "\x04\x04\x05\x03\x04\x03\x02\x05\x03\x05\x04\x01\x04\x05\x04\x04", // 窻
+ 0x7abc: "\x04\x04\x05\x03\x04\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 窼
+ 0x7abd: "\x04\x04\x05\x03\x04\x03\x05\x03\x01\x01\x03\x04\x03\x05\x03\x04", // 窽
+ 0x7abe: "\x04\x04\x05\x03\x04\x01\x02\x01\x01\x01\x02\x03\x04\x03\x05\x03\x04", // 窾
+ 0x7abf: "\x04\x04\x05\x03\x04\x05\x02\x03\x05\x04\x01\x03\x01\x01\x02\x01", // 窿
+ 0x7ac0: "\x04\x04\x05\x03\x04\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 竀
+ 0x7ac1: "\x04\x04\x05\x03\x04\x03\x01\x01\x05\x03\x01\x01\x05\x03\x01\x01\x05", // 竁
+ 0x7ac2: "\x04\x04\x05\x03\x04\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 竂
+ 0x7ac3: "\x04\x04\x05\x03\x04\x01\x02\x01\x02\x05\x01\x01\x02\x05\x01\x01\x05", // 竃
+ 0x7ac4: "\x04\x04\x05\x03\x04\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05", // 竄
+ 0x7ac5: "\x04\x04\x05\x03\x04\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x03\x04", // 竅
+ 0x7ac6: "\x04\x04\x05\x03\x04\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x02\x05\x01", // 竆
+ 0x7ac7: "\x04\x04\x05\x03\x04\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 竇
+ 0x7ac8: "\x04\x04\x05\x03\x04\x01\x02\x01\x02\x05\x01\x01\x02\x05\x01\x02\x01\x01\x05\x01\x01", // 竈
+ 0x7ac9: "\x04\x04\x05\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x05\x01\x05\x01\x01\x01", // 竉
+ 0x7aca: "\x04\x04\x05\x03\x04\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x05\x03\x04\x02\x05\x05\x04", // 竊
+ 0x7acb: "\x04\x01\x04\x03\x01", // 立
+ 0x7acc: "\x04\x01\x04\x03\x01\x03\x05", // 竌
+ 0x7acd: "\x04\x01\x04\x03\x01\x01\x02", // 竍
+ 0x7ace: "\x04\x01\x04\x03\x01\x01\x03\x02", // 竎
+ 0x7acf: "\x04\x01\x04\x03\x01\x03\x01\x02", // 竏
+ 0x7ad0: "\x04\x01\x04\x03\x01\x03\x05\x05\x04", // 竐
+ 0x7ad1: "\x04\x01\x04\x03\x01\x01\x03\x05\x04", // 竑
+ 0x7ad2: "\x04\x01\x04\x03\x01\x02\x05\x01\x02", // 竒
+ 0x7ad3: "\x04\x01\x04\x03\x01\x03\x01\x01\x05", // 竓
+ 0x7ad4: "\x04\x01\x04\x03\x01\x03\x01\x03\x02", // 竔
+ 0x7ad5: "\x04\x01\x04\x03\x01\x03\x04\x05\x03", // 竕
+ 0x7ad6: "\x02\x02\x05\x04\x04\x01\x04\x03\x01", // 竖
+ 0x7ad7: "\x04\x01\x04\x03\x01\x02\x03\x04\x03", // 竗
+ 0x7ad8: "\x04\x01\x04\x03\x01\x03\x05\x02\x05\x01", // 竘
+ 0x7ad9: "\x04\x01\x04\x03\x01\x02\x01\x02\x05\x01", // 站
+ 0x7ada: "\x04\x01\x04\x03\x01\x04\x04\x05\x01\x02", // 竚
+ 0x7adb: "\x04\x01\x04\x03\x01\x03\x04\x04\x05\x04", // 竛
+ 0x7adc: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05", // 竜
+ 0x7add: "\x04\x01\x04\x03\x01\x04\x01\x04\x03\x01", // 竝
+ 0x7ade: "\x04\x01\x04\x03\x01\x02\x05\x01\x03\x05", // 竞
+ 0x7adf: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05", // 竟
+ 0x7ae0: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02", // 章
+ 0x7ae1: "\x04\x01\x04\x03\x01\x01\x03\x02\x05\x01\x01", // 竡
+ 0x7ae2: "\x04\x01\x04\x03\x01\x05\x04\x03\x01\x01\x03\x04", // 竢
+ 0x7ae3: "\x04\x01\x04\x03\x01\x05\x04\x03\x04\x03\x05\x04", // 竣
+ 0x7ae4: "\x04\x01\x04\x03\x01\x04\x04\x05\x01\x03\x05\x04", // 竤
+ 0x7ae5: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 童
+ 0x7ae6: "\x04\x01\x04\x03\x01\x01\x02\x05\x01\x02\x03\x04", // 竦
+ 0x7ae7: "\x04\x01\x04\x03\x01\x03\x02\x05\x01\x01\x01\x03", // 竧
+ 0x7ae8: "\x04\x01\x04\x03\x01\x02\x01\x02\x05\x01\x01\x01\x02", // 竨
+ 0x7ae9: "\x04\x01\x04\x03\x01\x04\x04\x05\x02\x05\x01\x01\x01", // 竩
+ 0x7aea: "\x01\x02\x05\x01\x02\x05\x05\x04\x04\x01\x04\x03\x01", // 竪
+ 0x7aeb: "\x04\x01\x04\x03\x01\x03\x05\x05\x01\x01\x02", // 竫
+ 0x7aec: "\x04\x01\x04\x03\x01\x03\x02\x05\x01\x02\x05\x02\x01\x04", // 竬
+ 0x7aed: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 竭
+ 0x7aee: "\x04\x01\x04\x03\x01\x05\x01\x03\x04\x03\x01\x01\x03\x02", // 竮
+ 0x7aef: "\x04\x01\x04\x03\x01\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 端
+ 0x7af0: "\x04\x01\x04\x03\x01\x01\x03\x02\x05\x01\x01\x02\x01\x01", // 竰
+ 0x7af1: "\x04\x01\x04\x03\x01\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04", // 竱
+ 0x7af2: "\x04\x01\x04\x03\x01\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 竲
+ 0x7af3: "\x04\x01\x04\x03\x01\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 竳
+ 0x7af4: "\x04\x01\x04\x03\x01\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x02\x04", // 竴
+ 0x7af5: "\x04\x01\x04\x03\x01\x01\x02\x05\x01\x01\x05\x02\x02\x05\x04\x03\x01\x02", // 竵
+ 0x7af6: "\x04\x01\x04\x03\x01\x02\x05\x01\x03\x05\x04\x01\x04\x03\x01\x02\x05\x01\x03\x05", // 競
+ 0x7af7: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x03\x05\x04\x01\x05\x02\x03\x05\x04", // 竷
+ 0x7af8: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05", // 竸
+ 0x7af9: "\x03\x01\x02\x03\x01\x02", // 竹
+ 0x7afa: "\x03\x01\x04\x03\x01\x04\x01\x01", // 竺
+ 0x7afb: "\x03\x01\x04\x03\x01\x04\x05\x03", // 竻
+ 0x7afc: "\x03\x01\x04\x03\x01\x04\x03\x05\x04", // 竼
+ 0x7afd: "\x03\x01\x04\x03\x01\x04\x01\x01\x02", // 竽
+ 0x7afe: "\x03\x01\x04\x03\x01\x04\x05\x02\x05", // 竾
+ 0x7aff: "\x03\x01\x04\x03\x01\x04\x01\x01\x02", // 竿
+ 0x7b00: "\x03\x01\x04\x03\x01\x04\x04\x01\x05", // 笀
+ 0x7b01: "\x03\x01\x04\x03\x01\x04\x01\x02\x01", // 笁
+ 0x7b02: "\x03\x01\x04\x03\x01\x04\x03\x05\x04", // 笂
+ 0x7b03: "\x03\x01\x04\x03\x01\x04\x05\x05\x01", // 笃
+ 0x7b04: "\x03\x01\x04\x03\x01\x04\x01\x01\x03\x02", // 笄
+ 0x7b05: "\x03\x01\x04\x03\x01\x04\x03\x04\x03\x04", // 笅
+ 0x7b06: "\x03\x01\x04\x03\x01\x04\x05\x02\x01\x05", // 笆
+ 0x7b07: "\x03\x01\x04\x03\x01\x04\x04\x01\x02\x04", // 笇
+ 0x7b08: "\x03\x01\x04\x03\x01\x04\x03\x05\x04", // 笈
+ 0x7b09: "\x03\x01\x04\x03\x01\x04\x03\x05\x04\x01", // 笉
+ 0x7b0a: "\x03\x01\x04\x03\x01\x04\x03\x03\x02\x04", // 笊
+ 0x7b0b: "\x03\x01\x04\x03\x01\x04\x05\x01\x01\x03", // 笋
+ 0x7b0c: "\x03\x01\x04\x03\x01\x04\x01\x05\x02\x03", // 笌
+ 0x7b0d: "\x03\x01\x04\x03\x01\x04\x02\x05\x03\x04", // 笍
+ 0x7b0e: "\x03\x01\x04\x03\x01\x04\x01\x01\x03\x05", // 笎
+ 0x7b0f: "\x03\x01\x04\x03\x01\x04\x03\x05\x03\x03", // 笏
+ 0x7b10: "\x03\x01\x04\x03\x01\x04\x04\x01\x03\x05", // 笐
+ 0x7b11: "\x03\x01\x04\x03\x01\x04\x03\x01\x03\x04", // 笑
+ 0x7b12: "\x03\x01\x04\x03\x01\x04\x03\x04\x04\x05", // 笒
+ 0x7b13: "\x03\x01\x04\x03\x01\x04\x01\x05\x03\x05", // 笓
+ 0x7b14: "\x03\x01\x04\x03\x01\x04\x03\x01\x01\x05", // 笔
+ 0x7b15: "\x03\x01\x04\x03\x01\x04\x02\x05\x03\x05", // 笕
+ 0x7b16: "\x03\x01\x04\x03\x01\x04\x05\x04\x03\x04", // 笖
+ 0x7b17: "\x03\x01\x04\x03\x01\x04\x03\x05\x04\x04\x04", // 笗
+ 0x7b18: "\x03\x01\x04\x03\x01\x04\x02\x01\x02\x05\x01", // 笘
+ 0x7b19: "\x03\x01\x04\x03\x01\x04\x03\x01\x01\x02\x01", // 笙
+ 0x7b1a: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x02", // 笚
+ 0x7b1b: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x01", // 笛
+ 0x7b1c: "\x03\x01\x04\x03\x01\x04\x05\x02\x02\x05\x02", // 笜
+ 0x7b1d: "\x03\x01\x04\x03\x01\x04\x02\x05\x05\x04\x01", // 笝
+ 0x7b1e: "\x03\x01\x04\x03\x01\x04\x05\x04\x02\x05\x01", // 笞
+ 0x7b1f: "\x03\x01\x04\x03\x01\x04\x03\x03\x05\x04\x04", // 笟
+ 0x7b20: "\x03\x01\x04\x03\x01\x04\x04\x01\x04\x03\x01", // 笠
+ 0x7b21: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01", // 笡
+ 0x7b22: "\x03\x01\x04\x03\x01\x04\x05\x01\x05\x01\x05", // 笢
+ 0x7b23: "\x03\x01\x04\x03\x01\x04\x03\x05\x05\x01\x05", // 笣
+ 0x7b24: "\x03\x01\x04\x03\x01\x04\x05\x03\x02\x05\x01", // 笤
+ 0x7b25: "\x03\x01\x04\x03\x01\x04\x05\x01\x02\x05\x01", // 笥
+ 0x7b26: "\x03\x01\x04\x03\x01\x04\x03\x02\x01\x02\x04", // 符
+ 0x7b27: "\x03\x01\x04\x03\x01\x04\x03\x05\x03\x05\x01", // 笧
+ 0x7b28: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x01", // 笨
+ 0x7b29: "\x03\x01\x04\x03\x01\x04\x03\x02\x01\x05\x04", // 笩
+ 0x7b2a: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01", // 笪
+ 0x7b2b: "\x03\x01\x04\x03\x01\x04\x03\x05\x02\x03", // 笫
+ 0x7b2c: "\x03\x01\x04\x03\x01\x04\x05\x01\x05\x02\x03", // 第
+ 0x7b2d: "\x03\x01\x04\x03\x01\x04\x03\x04\x04\x05\x04", // 笭
+ 0x7b2e: "\x03\x01\x04\x03\x01\x04\x03\x01\x02\x01\x01", // 笮
+ 0x7b2f: "\x03\x01\x04\x03\x01\x04\x05\x03\x01\x05\x04", // 笯
+ 0x7b30: "\x03\x01\x04\x03\x01\x04\x05\x01\x05\x03\x02", // 笰
+ 0x7b31: "\x03\x01\x04\x03\x01\x04\x03\x05\x02\x05\x01", // 笱
+ 0x7b32: "\x03\x01\x04\x03\x01\x04\x05\x04\x01\x03\x02", // 笲
+ 0x7b33: "\x03\x01\x04\x03\x01\x04\x05\x03\x02\x05\x01", // 笳
+ 0x7b34: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x01\x02", // 笴
+ 0x7b35: "\x03\x01\x04\x03\x01\x04\x04\x04\x01\x05\x05", // 笵
+ 0x7b36: "\x03\x01\x04\x03\x01\x04\x03\x01\x01\x03\x04", // 笶
+ 0x7b37: "\x03\x01\x04\x03\x01\x04\x03\x05\x03\x05\x02", // 笷
+ 0x7b38: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x01\x05", // 笸
+ 0x7b39: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x01\x05", // 笹
+ 0x7b3a: "\x03\x01\x04\x03\x01\x04\x01\x01\x05\x03\x04", // 笺
+ 0x7b3b: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x05\x02", // 笻
+ 0x7b3c: "\x03\x01\x04\x03\x01\x04\x01\x03\x05\x03\x04", // 笼
+ 0x7b3d: "\x03\x01\x04\x03\x01\x04\x02\x05\x02\x02\x01", // 笽
+ 0x7b3e: "\x03\x01\x04\x03\x01\x04\x05\x03\x04\x05\x04", // 笾
+ 0x7b3f: "\x03\x01\x04\x03\x01\x04\x03\x05\x04\x02\x05\x01", // 笿
+ 0x7b40: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x01\x02\x01", // 筀
+ 0x7b41: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x02\x01", // 筁
+ 0x7b42: "\x03\x01\x04\x03\x01\x04\x04\x04\x01\x05\x02\x05", // 筂
+ 0x7b43: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x03\x04\x01", // 筃
+ 0x7b44: "\x03\x01\x04\x03\x01\x04\x03\x04\x01\x05\x03\x04", // 筄
+ 0x7b45: "\x03\x01\x04\x03\x01\x04\x03\x01\x02\x01\x03\x05", // 筅
+ 0x7b46: "\x03\x01\x04\x03\x01\x04\x05\x01\x01\x01\x01\x02", // 筆
+ 0x7b47: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x05\x02", // 筇
+ 0x7b48: "\x03\x01\x04\x03\x01\x04\x03\x01\x02\x02\x05\x01", // 筈
+ 0x7b49: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x01\x02\x04", // 等
+ 0x7b4a: "\x03\x01\x04\x03\x01\x04\x04\x01\x03\x04\x03\x04", // 筊
+ 0x7b4b: "\x03\x01\x04\x03\x01\x04\x03\x05\x01\x01\x05\x03", // 筋
+ 0x7b4c: "\x03\x01\x04\x03\x01\x04\x03\x04\x01\x01\x02\x01", // 筌
+ 0x7b4d: "\x03\x01\x04\x03\x01\x04\x03\x05\x02\x05\x01\x01", // 筍
+ 0x7b4e: "\x03\x01\x04\x03\x01\x04\x05\x03\x01\x02\x05\x01", // 筎
+ 0x7b4f: "\x03\x01\x04\x03\x01\x04\x03\x02\x01\x05\x03\x04", // 筏
+ 0x7b50: "\x03\x01\x04\x03\x01\x04\x01\x01\x01\x02\x01\x05", // 筐
+ 0x7b51: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x03\x05\x04", // 筑
+ 0x7b52: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x05\x01", // 筒
+ 0x7b53: "\x03\x01\x04\x03\x01\x04\x01\x01\x03\x01\x01\x02", // 筓
+ 0x7b54: "\x03\x01\x04\x03\x01\x04\x03\x04\x01\x02\x05\x01", // 答
+ 0x7b55: "\x03\x01\x04\x03\x01\x04\x03\x03\x02\x01\x01\x02", // 筕
+ 0x7b56: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x02\x03\x04", // 策
+ 0x7b57: "\x03\x01\x04\x03\x01\x04\x03\x02\x02\x05\x01\x02", // 筗
+ 0x7b58: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x02\x05\x01", // 筘
+ 0x7b59: "\x03\x01\x04\x03\x01\x04\x01\x01\x01\x02\x03\x04", // 筙
+ 0x7b5a: "\x03\x01\x04\x03\x01\x04\x01\x05\x03\x05\x01\x02", // 筚
+ 0x7b5b: "\x03\x01\x04\x03\x01\x04\x02\x03\x01\x02\x05\x02", // 筛
+ 0x7b5c: "\x03\x01\x04\x03\x01\x04\x02\x04\x03\x05\x01\x01", // 筜
+ 0x7b5d: "\x03\x01\x04\x03\x01\x04\x03\x05\x05\x01\x01\x02", // 筝
+ 0x7b5e: "\x03\x01\x04\x03\x01\x04\x04\x04\x05\x01\x02\x03\x04", // 筞
+ 0x7b5f: "\x03\x01\x04\x03\x01\x04\x03\x04\x04\x03\x05\x02\x01", // 筟
+ 0x7b60: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x03\x05\x04\x01", // 筠
+ 0x7b61: "\x03\x01\x04\x03\x01\x04\x03\x04\x01\x01\x02\x03\x04", // 筡
+ 0x7b62: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x05\x02\x01\x05", // 筢
+ 0x7b63: "\x03\x01\x04\x03\x01\x04\x03\x01\x02\x03\x04\x02\x02", // 筣
+ 0x7b64: "\x03\x01\x04\x03\x01\x04\x04\x05\x01\x01\x05\x03\x04", // 筤
+ 0x7b65: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x05\x01", // 筥
+ 0x7b66: "\x03\x01\x04\x03\x01\x04\x04\x04\x05\x01\x01\x03\x05", // 筦
+ 0x7b67: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x03\x05", // 筧
+ 0x7b68: "\x03\x01\x04\x03\x01\x04\x03\x04\x04\x05\x02\x05\x01", // 筨
+ 0x7b69: "\x03\x01\x04\x03\x01\x04\x05\x04\x02\x05\x01\x01\x02", // 筩
+ 0x7b6a: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x01\x01\x02\x05", // 筪
+ 0x7b6b: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x03\x04", // 筫
+ 0x7b6c: "\x03\x01\x04\x03\x01\x04\x01\x03\x05\x05\x03\x04", // 筬
+ 0x7b6d: "\x03\x01\x04\x03\x01\x04\x01\x01\x02\x01\x01\x03\x02", // 筭
+ 0x7b6e: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x03\x04\x01", // 筮
+ 0x7b6f: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x05\x03", // 筯
+ 0x7b70: "\x03\x01\x04\x03\x01\x04\x03\x02\x03\x01\x02\x01\x01", // 筰
+ 0x7b71: "\x03\x01\x04\x03\x01\x04\x03\x02\x02\x03\x01\x03\x04", // 筱
+ 0x7b72: "\x03\x01\x04\x03\x01\x04\x02\x04\x03\x02\x05\x01\x01", // 筲
+ 0x7b73: "\x03\x01\x04\x03\x01\x04\x03\x01\x02\x01\x05\x04", // 筳
+ 0x7b74: "\x03\x01\x04\x03\x01\x04\x01\x03\x04\x03\x04\x03\x04", // 筴
+ 0x7b75: "\x03\x01\x04\x03\x01\x04\x03\x02\x01\x05\x05\x04", // 筵
+ 0x7b76: "\x03\x01\x04\x03\x01\x04\x03\x01\x02\x01\x02\x05\x01", // 筶
+ 0x7b77: "\x03\x01\x04\x03\x01\x04\x04\x04\x02\x05\x01\x03\x04", // 筷
+ 0x7b78: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x01\x02", // 筸
+ 0x7b79: "\x03\x01\x04\x03\x01\x04\x01\x01\x01\x03\x01\x02\x04", // 筹
+ 0x7b7a: "\x03\x01\x04\x03\x01\x04\x01\x01\x01\x02\x01\x04\x05", // 筺
+ 0x7b7b: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x01\x01\x03\x04", // 筻
+ 0x7b7c: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x05\x03\x04", // 筼
+ 0x7b7d: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x03\x04", // 筽
+ 0x7b7e: "\x03\x01\x04\x03\x01\x04\x03\x04\x01\x04\x04\x03\x01", // 签
+ 0x7b7f: "\x03\x01\x04\x03\x01\x04\x03\x05\x04\x01\x02\x03\x04", // 筿
+ 0x7b80: "\x03\x01\x04\x03\x01\x04\x04\x02\x05\x02\x05\x01\x01", // 简
+ 0x7b81: "\x03\x01\x04\x03\x01\x04\x04\x01\x04\x03\x01\x02\x05\x01", // 箁
+ 0x7b82: "\x03\x01\x04\x03\x01\x04\x01\x03\x04\x03\x04\x02\x03\x04", // 箂
+ 0x7b83: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x01\x01\x01\x05\x04", // 箃
+ 0x7b84: "\x03\x01\x04\x03\x01\x04\x03\x02\x05\x01\x01\x03\x01\x02", // 箄
+ 0x7b85: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x01\x01\x03\x02", // 箅
+ 0x7b86: "\x03\x01\x04\x03\x01\x04\x02\x05\x03\x04\x01\x05\x03\x05", // 箆
+ 0x7b87: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x02\x05\x01\x01", // 箇
+ 0x7b88: "\x03\x01\x04\x03\x01\x04\x04\x04\x01\x05\x04\x02\x05\x01", // 箈
+ 0x7b89: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x02\x05\x01\x05\x03", // 箉
+ 0x7b8a: "\x03\x01\x04\x03\x01\x04\x04\x01\x05\x03\x03\x04\x04\x04", // 箊
+ 0x7b8b: "\x03\x01\x04\x03\x01\x04\x01\x05\x03\x04\x01\x05\x03\x04", // 箋
+ 0x7b8c: "\x03\x01\x04\x03\x01\x04\x01\x05\x04\x01\x02\x01\x02\x02", // 箌
+ 0x7b8d: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x01\x02\x05\x02\x05", // 箍
+ 0x7b8e: "\x03\x01\x04\x03\x01\x04\x02\x01\x05\x03\x01\x05\x03\x05", // 箎
+ 0x7b8f: "\x03\x01\x04\x03\x01\x04\x03\x04\x04\x03\x05\x01\x01\x02", // 箏
+ 0x7b90: "\x03\x01\x04\x03\x01\x04\x01\x01\x02\x01\x02\x05\x01\x01", // 箐
+ 0x7b91: "\x03\x01\x04\x03\x01\x04\x01\x05\x01\x01\x02\x01\x03\x04", // 箑
+ 0x7b92: "\x03\x01\x04\x03\x01\x04\x05\x01\x01\x04\x05\x02\x05\x02", // 箒
+ 0x7b93: "\x03\x01\x04\x03\x01\x04\x05\x01\x01\x02\x04\x01\x03\x04", // 箓
+ 0x7b94: "\x03\x01\x04\x03\x01\x04\x04\x04\x01\x03\x02\x05\x01\x01", // 箔
+ 0x7b95: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x01\x01\x01\x03\x04", // 箕
+ 0x7b96: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x01\x02\x03\x04", // 箖
+ 0x7b97: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x01\x03\x02", // 算
+ 0x7b98: "\x03\x01\x04\x03\x01\x04\x02\x05\x03\x01\x02\x03\x04\x01", // 箘
+ 0x7b99: "\x03\x01\x04\x03\x01\x04\x03\x05\x01\x01\x05\x02\x05\x04", // 箙
+ 0x7b9a: "\x03\x01\x04\x03\x01\x04\x03\x04\x01\x02\x05\x01\x02\x02", // 箚
+ 0x7b9b: "\x03\x01\x04\x03\x01\x04\x05\x02\x01\x03\x03\x05\x04\x04", // 箛
+ 0x7b9c: "\x03\x01\x04\x03\x01\x04\x04\x04\x05\x03\x04\x01\x02\x01", // 箜
+ 0x7b9d: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x01\x02\x02\x01\x01", // 箝
+ 0x7b9e: "\x03\x01\x04\x03\x01\x04\x04\x03\x01\x01\x03\x04\x05\x05", // 箞
+ 0x7b9f: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x05\x03\x05", // 箟
+ 0x7ba0: "\x03\x01\x04\x03\x01\x04\x03\x01\x02\x01\x02\x02\x01\x01", // 箠
+ 0x7ba1: "\x03\x01\x04\x03\x01\x04\x04\x04\x05\x02\x05\x01\x05\x01", // 管
+ 0x7ba2: "\x03\x01\x04\x03\x01\x04\x04\x04\x05\x03\x05\x04\x05\x05", // 箢
+ 0x7ba3: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x02\x03\x04\x02\x02", // 箣
+ 0x7ba4: "\x03\x01\x04\x03\x01\x04\x04\x01\x03\x04\x03\x04\x01\x02", // 箤
+ 0x7ba5: "\x03\x01\x04\x03\x01\x04\x04\x04\x01\x05\x03\x02\x05\x04", // 箥
+ 0x7ba6: "\x03\x01\x04\x03\x01\x04\x01\x01\x02\x01\x02\x05\x03\x04", // 箦
+ 0x7ba7: "\x03\x01\x04\x03\x01\x04\x01\x01\x04\x03\x01\x03\x04\x05", // 箧
+ 0x7ba8: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x05\x04\x01\x01\x02", // 箨
+ 0x7ba9: "\x03\x01\x04\x03\x01\x04\x02\x05\x02\x02\x01\x03\x05\x04", // 箩
+ 0x7baa: "\x03\x01\x04\x03\x01\x04\x04\x03\x02\x05\x01\x01\x01\x02", // 箪
+ 0x7bab: "\x03\x01\x04\x03\x01\x04\x05\x01\x01\x02\x03\x02\x03\x04", // 箫
+ 0x7bac: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x01\x03\x02\x05\x01", // 箬
+ 0x7bad: "\x03\x01\x04\x03\x01\x04\x04\x03\x01\x02\x05\x01\x01\x02\x02", // 箭
+ 0x7bae: "\x03\x01\x04\x03\x01\x04\x04\x04\x05\x01\x02\x05\x01\x01\x01", // 箮
+ 0x7baf: "\x03\x01\x04\x03\x01\x04\x03\x02\x01\x02\x05\x01\x01\x03\x04", // 箯
+ 0x7bb0: "\x03\x01\x04\x03\x01\x04\x03\x05\x02\x05\x01\x01\x05\x02\x01", // 箰
+ 0x7bb1: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 箱
+ 0x7bb2: "\x03\x01\x04\x03\x01\x04\x04\x04\x01\x03\x01\x02\x01\x03\x05", // 箲
+ 0x7bb3: "\x03\x01\x04\x03\x01\x04\x05\x01\x03\x04\x03\x01\x01\x03\x02", // 箳
+ 0x7bb4: "\x03\x01\x04\x03\x01\x04\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 箴
+ 0x7bb5: "\x03\x01\x04\x03\x01\x04\x02\x03\x04\x03\x02\x05\x01\x01\x01", // 箵
+ 0x7bb6: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x05\x01\x03\x05\x01\x01", // 箶
+ 0x7bb7: "\x03\x01\x04\x03\x01\x04\x04\x01\x05\x03\x03\x01\x05\x02\x05", // 箷
+ 0x7bb8: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x03\x02\x05\x01\x01", // 箸
+ 0x7bb9: "\x03\x01\x04\x03\x01\x04\x05\x05\x04\x04\x04\x04\x03\x05\x04", // 箹
+ 0x7bba: "\x03\x01\x04\x03\x01\x04\x01\x01\x01\x03\x04\x02\x05\x01\x01", // 箺
+ 0x7bbb: "\x03\x01\x04\x03\x01\x04\x03\x03\x02\x05\x01\x01\x01\x01\x02", // 箻
+ 0x7bbc: "\x03\x01\x04\x03\x01\x04\x05\x01\x03\x01\x05\x04\x01\x02\x01", // 箼
+ 0x7bbd: "\x03\x01\x04\x03\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 箽
+ 0x7bbe: "\x03\x01\x04\x03\x01\x04\x02\x04\x03\x02\x05\x01\x01\x02\x02", // 箾
+ 0x7bbf: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x02\x02\x01\x01\x01", // 箿
+ 0x7bc0: "\x03\x01\x04\x03\x01\x04\x05\x01\x01\x05\x04\x05\x02", // 節
+ 0x7bc1: "\x03\x01\x04\x03\x01\x04\x03\x02\x05\x01\x01\x01\x01\x02\x01", // 篁
+ 0x7bc2: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x03\x01\x01\x02\x01", // 篂
+ 0x7bc3: "\x03\x01\x04\x03\x01\x04\x05\x02\x01\x03\x02\x05\x01\x01\x01", // 篃
+ 0x7bc4: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x01\x01\x01\x02\x05\x05", // 範
+ 0x7bc5: "\x03\x01\x04\x03\x01\x04\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 篅
+ 0x7bc6: "\x03\x01\x04\x03\x01\x04\x05\x05\x01\x03\x05\x03\x03\x03\x04", // 篆
+ 0x7bc7: "\x03\x01\x04\x03\x01\x04\x04\x05\x01\x03\x02\x05\x01\x02\x02", // 篇
+ 0x7bc8: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x01\x02\x01\x01\x02\x04", // 篈
+ 0x7bc9: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x03\x05\x04\x01\x02\x03\x04", // 築
+ 0x7bca: "\x03\x01\x04\x03\x01\x04\x04\x04\x01\x01\x02\x02\x01\x03\x04", // 篊
+ 0x7bcb: "\x03\x01\x04\x03\x01\x04\x01\x01\x03\x04\x03\x04\x03\x04\x05", // 篋
+ 0x7bcc: "\x03\x01\x04\x03\x01\x04\x03\x02\x05\x01\x03\x01\x01\x03\x04", // 篌
+ 0x7bcd: "\x03\x01\x04\x03\x01\x04\x03\x01\x02\x03\x04\x04\x03\x03\x04", // 篍
+ 0x7bce: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x02\x03\x04\x03", // 篎
+ 0x7bcf: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x01\x01\x03\x05\x03\x04", // 篏
+ 0x7bd0: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x01\x02\x05\x02\x05", // 篐
+ 0x7bd1: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x01\x02\x05\x03\x04", // 篑
+ 0x7bd2: "\x03\x01\x04\x03\x01\x04\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 篒
+ 0x7bd3: "\x03\x01\x04\x03\x01\x04\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 篓
+ 0x7bd4: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 篔
+ 0x7bd5: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 篕
+ 0x7bd6: "\x03\x01\x04\x03\x01\x04\x04\x01\x03\x05\x01\x01\x02\x02\x05\x01", // 篖
+ 0x7bd7: "\x03\x01\x04\x03\x01\x04\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 篗
+ 0x7bd8: "\x03\x01\x04\x03\x01\x04\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03", // 篘
+ 0x7bd9: "\x03\x01\x04\x03\x01\x04\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 篙
+ 0x7bda: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01\x05", // 篚
+ 0x7bdb: "\x03\x01\x04\x03\x01\x04\x05\x01\x05\x04\x01\x05\x01\x05\x04\x01", // 篛
+ 0x7bdc: "\x03\x01\x04\x03\x01\x04\x05\x02\x05\x03\x04\x01\x04\x04\x04\x04", // 篜
+ 0x7bdd: "\x03\x01\x04\x03\x01\x04\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01", // 篝
+ 0x7bde: "\x03\x01\x04\x03\x01\x04\x04\x04\x01\x02\x05\x01\x01\x01\x02\x01", // 篞
+ 0x7bdf: "\x03\x01\x04\x03\x01\x04\x03\x02\x01\x01\x02\x01\x02\x05\x01\x01", // 篟
+ 0x7be0: "\x03\x01\x04\x03\x01\x04\x03\x02\x02\x03\x05\x04\x01\x02\x03\x04", // 篠
+ 0x7be1: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x01\x03\x04\x05\x04", // 篡
+ 0x7be2: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 篢
+ 0x7be3: "\x03\x01\x04\x03\x01\x04\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03", // 篣
+ 0x7be4: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 篤
+ 0x7be5: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x02\x02\x01\x01\x02\x03\x04", // 篥
+ 0x7be6: "\x03\x01\x04\x03\x01\x04\x03\x02\x05\x03\x04\x01\x01\x05\x03\x05", // 篦
+ 0x7be7: "\x03\x01\x04\x03\x01\x04\x04\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 篧
+ 0x7be8: "\x03\x01\x04\x03\x01\x04\x05\x02\x03\x04\x01\x01\x02\x03\x04", // 篨
+ 0x7be9: "\x03\x01\x04\x03\x01\x04\x03\x02\x05\x01\x05\x01\x01\x02\x05\x02", // 篩
+ 0x7bea: "\x03\x01\x04\x03\x01\x04\x03\x03\x02\x01\x05\x03\x01\x05\x03\x05", // 篪
+ 0x7beb: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x03\x05\x04\x03\x01\x01\x02", // 篫
+ 0x7bec: "\x03\x01\x04\x03\x01\x04\x03\x04\x04\x05\x01\x01\x03\x02\x05\x01", // 篬
+ 0x7bed: "\x03\x01\x04\x03\x01\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05", // 篭
+ 0x7bee: "\x03\x01\x04\x03\x01\x04\x02\x02\x03\x01\x04\x02\x05\x02\x02\x01", // 篮
+ 0x7bef: "\x03\x01\x04\x03\x01\x04\x03\x01\x01\x01\x05\x01\x01\x05\x03\x04", // 篯
+ 0x7bf0: "\x03\x01\x04\x03\x01\x04\x04\x01\x04\x03\x01\x02\x05\x01\x05\x02", // 篰
+ 0x7bf1: "\x03\x01\x04\x03\x01\x04\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 篱
+ 0x7bf2: "\x03\x01\x04\x03\x01\x04\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x01", // 篲
+ 0x7bf3: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x02\x02\x01\x01\x02", // 篳
+ 0x7bf4: "\x03\x01\x04\x03\x01\x04\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 篴
+ 0x7bf5: "\x03\x01\x04\x03\x01\x04\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04", // 篵
+ 0x7bf6: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x02\x01\x01\x05\x04\x04\x04\x04", // 篶
+ 0x7bf7: "\x03\x01\x04\x03\x01\x04\x03\x05\x04\x01\x01\x01\x02\x04\x05\x04", // 篷
+ 0x7bf8: "\x03\x01\x04\x03\x01\x04\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 篸
+ 0x7bf9: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x01\x03\x04\x05\x05", // 篹
+ 0x7bfa: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x03\x02\x05\x01\x01\x03\x01\x02", // 篺
+ 0x7bfb: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 篻
+ 0x7bfc: "\x03\x01\x04\x03\x01\x04\x03\x02\x05\x01\x01\x03\x05\x05\x01\x03\x05", // 篼
+ 0x7bfd: "\x03\x01\x04\x03\x01\x04\x03\x03\x02\x03\x01\x01\x02\x01\x02\x01\x05\x02", // 篽
+ 0x7bfe: "\x03\x01\x04\x03\x01\x04\x02\x05\x02\x02\x01\x01\x03\x04\x05\x03\x04", // 篾
+ 0x7bff: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04", // 篿
+ 0x7c00: "\x03\x01\x04\x03\x01\x04\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 簀
+ 0x7c01: "\x03\x01\x04\x03\x01\x04\x03\x03\x02\x02\x01\x02\x01\x02\x01\x03\x04", // 簁
+ 0x7c02: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x05\x01\x01\x05\x03\x04\x01", // 簂
+ 0x7c03: "\x03\x01\x04\x03\x01\x04\x03\x01\x02\x03\x04\x03\x05\x04\x03\x05\x04", // 簃
+ 0x7c04: "\x03\x01\x04\x03\x01\x04\x04\x05\x01\x03\x02\x05\x01\x05\x02\x01\x05", // 簄
+ 0x7c05: "\x03\x01\x04\x03\x01\x04\x04\x01\x04\x03\x01\x03\x03\x01\x01\x02\x01", // 簅
+ 0x7c06: "\x03\x01\x04\x03\x01\x04\x04\x04\x05\x01\x01\x03\x05\x03\x01\x03\x04", // 簆
+ 0x7c07: "\x03\x01\x04\x03\x01\x04\x04\x01\x05\x03\x03\x01\x03\x01\x01\x03\x04", // 簇
+ 0x7c08: "\x03\x01\x04\x03\x01\x04\x05\x01\x03\x03\x01\x01\x03\x03\x01\x01\x02", // 簈
+ 0x7c09: "\x03\x01\x04\x03\x01\x04\x03\x01\x02\x01\x02\x05\x01\x04\x05\x04", // 簉
+ 0x7c0a: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x01\x01\x01\x03\x04\x01\x02\x01", // 簊
+ 0x7c0b: "\x03\x01\x04\x03\x01\x04\x05\x01\x01\x05\x03\x04\x02\x05\x02\x02\x01", // 簋
+ 0x7c0c: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x01\x02\x03\x04\x03\x05\x03\x04", // 簌
+ 0x7c0d: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 簍
+ 0x7c0e: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x01\x02\x02\x01\x02\x05\x01\x01", // 簎
+ 0x7c0f: "\x03\x01\x04\x03\x01\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 簏
+ 0x7c10: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x01\x01\x01\x02\x03\x05\x03\x04", // 簐
+ 0x7c11: "\x03\x01\x04\x03\x01\x04\x04\x01\x02\x05\x01\x01\x03\x05\x03\x04", // 簑
+ 0x7c12: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x01\x03\x04\x03\x05\x04", // 簒
+ 0x7c13: "\x03\x01\x04\x03\x01\x04\x03\x05\x01\x02\x01\x02\x05\x01\x03\x03\x03", // 簓
+ 0x7c14: "\x03\x01\x04\x03\x01\x04\x04\x01\x01\x02\x02\x01\x01\x03\x05\x03\x04", // 簔
+ 0x7c15: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x03", // 簕
+ 0x7c16: "\x03\x01\x04\x03\x01\x04\x04\x03\x01\x02\x03\x04\x05\x03\x03\x01\x02", // 簖
+ 0x7c17: "\x03\x01\x04\x03\x01\x04\x04\x04\x01\x05\x03\x04\x04\x01\x02\x03\x04", // 簗
+ 0x7c18: "\x03\x01\x04\x03\x01\x04\x05\x01\x01\x02\x04\x03\x01\x03\x04\x03\x02", // 簘
+ 0x7c19: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 簙
+ 0x7c1a: "\x03\x01\x04\x03\x01\x04\x02\x05\x02\x02\x01\x01\x02\x05\x02\x05\x03\x04", // 簚
+ 0x7c1b: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x01\x01\x01\x03\x04\x03\x03\x01\x02", // 簛
+ 0x7c1c: "\x03\x01\x04\x03\x01\x04\x04\x04\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 簜
+ 0x7c1d: "\x03\x01\x04\x03\x01\x04\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 簝
+ 0x7c1e: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 簞
+ 0x7c1f: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 簟
+ 0x7c20: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x01\x01\x02\x04\x02\x05\x02\x02\x01", // 簠
+ 0x7c21: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01", // 簡
+ 0x7c22: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x02\x05\x01\x01\x04\x01\x03\x04", // 簢
+ 0x7c23: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 簣
+ 0x7c24: "\x03\x01\x04\x03\x01\x04\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 簤
+ 0x7c25: "\x03\x01\x04\x03\x01\x04\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 簥
+ 0x7c26: "\x03\x01\x04\x03\x01\x04\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 簦
+ 0x7c27: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 簧
+ 0x7c28: "\x03\x01\x04\x03\x01\x04\x05\x01\x05\x05\x01\x05\x01\x02\x02\x01\x03\x04", // 簨
+ 0x7c29: "\x03\x01\x04\x03\x01\x04\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x05\x03", // 簩
+ 0x7c2a: "\x03\x01\x04\x03\x01\x04\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x01", // 簪
+ 0x7c2b: "\x03\x01\x04\x03\x01\x04\x05\x01\x01\x02\x03\x02\x01\x01\x05\x05\x02\x01\x02", // 簫
+ 0x7c2c: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x01\x02\x01\x03\x05\x04\x02\x05\x01", // 簬
+ 0x7c2d: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x03\x04\x01\x03\x04\x02\x05\x01", // 簭
+ 0x7c2e: "\x03\x01\x04\x03\x01\x04\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01", // 簮
+ 0x7c2f: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x01\x02\x02\x01\x01\x01\x03\x04", // 簯
+ 0x7c30: "\x03\x01\x04\x03\x01\x04\x03\x02\x01\x05\x03\x02\x05\x01\x01\x03\x01\x02", // 簰
+ 0x7c31: "\x03\x01\x04\x03\x01\x04\x04\x01\x05\x03\x01\x02\x02\x01\x01\x01\x03\x04", // 簱
+ 0x7c32: "\x03\x01\x04\x03\x01\x04\x03\x05\x01\x01\x03\x02\x05\x01\x01\x03\x01\x02", // 簲
+ 0x7c33: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04\x01\x01\x02", // 簳
+ 0x7c34: "\x03\x01\x04\x03\x01\x04\x02\x01\x05\x03\x01\x05\x02\x02\x04\x03\x01\x03\x04", // 簴
+ 0x7c35: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x01\x01\x01\x02\x03\x05\x04\x02\x05\x01", // 簵
+ 0x7c36: "\x03\x01\x04\x03\x01\x04\x04\x05\x02\x04\x05\x01\x01\x02\x04\x01\x03\x04", // 簶
+ 0x7c37: "\x03\x01\x04\x03\x01\x04\x03\x05\x01\x03\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 簷
+ 0x7c38: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x01\x01\x01\x03\x04\x05\x03\x02\x05\x04", // 簸
+ 0x7c39: "\x03\x01\x04\x03\x01\x04\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x01\x02\x01", // 簹
+ 0x7c3a: "\x03\x01\x04\x03\x01\x04\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x01\x02\x01", // 簺
+ 0x7c3b: "\x03\x01\x04\x03\x01\x04\x02\x05\x05\x02\x05\x02\x05\x01\x04\x05\x04", // 簻
+ 0x7c3c: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01", // 簼
+ 0x7c3d: "\x03\x01\x04\x03\x01\x04\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 簽
+ 0x7c3e: "\x03\x01\x04\x03\x01\x04\x04\x01\x03\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 簾
+ 0x7c3f: "\x03\x01\x04\x03\x01\x04\x04\x04\x01\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 簿
+ 0x7c40: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 籀
+ 0x7c41: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x01\x02\x03\x04\x03\x05\x02\x05\x03\x04", // 籁
+ 0x7c42: "\x03\x01\x04\x03\x01\x04\x03\x04\x04\x05\x01\x01\x05\x04\x03\x01\x02\x05\x02", // 籂
+ 0x7c43: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01", // 籃
+ 0x7c44: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x05", // 籄
+ 0x7c45: "\x03\x01\x04\x03\x01\x04\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 籅
+ 0x7c46: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 籆
+ 0x7c47: "\x03\x01\x04\x03\x01\x04\x04\x01\x02\x05\x01\x04\x05\x01\x03\x05\x03\x03\x03\x04", // 籇
+ 0x7c48: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x02\x02\x01\x01\x02\x01\x01\x05\x05\x04", // 籈
+ 0x7c49: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x02\x05\x01\x04\x05\x01\x05\x04\x01\x02\x01", // 籉
+ 0x7c4a: "\x03\x01\x04\x03\x01\x04\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 籊
+ 0x7c4b: "\x03\x01\x04\x03\x01\x04\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 籋
+ 0x7c4c: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 籌
+ 0x7c4d: "\x03\x01\x04\x03\x01\x04\x01\x01\x01\x02\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01", // 籍
+ 0x7c4e: "\x03\x01\x04\x03\x01\x04\x03\x05\x03\x01\x01\x03\x04\x05\x04\x05\x02\x01\x03\x04", // 籎
+ 0x7c4f: "\x03\x01\x04\x03\x01\x04\x04\x01\x05\x03\x03\x01\x01\x02\x02\x01\x01\x01\x03\x04", // 籏
+ 0x7c50: "\x03\x01\x04\x03\x01\x04\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04\x02\x04\x01\x03\x04", // 籐
+ 0x7c51: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x01\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 籑
+ 0x7c52: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x01\x02\x02\x01\x05\x05\x01\x02\x05\x01\x02\x01", // 籒
+ 0x7c53: "\x03\x01\x04\x03\x01\x04\x04\x04\x01\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 籓
+ 0x7c54: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01\x03\x01\x03\x04", // 籔
+ 0x7c55: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 籕
+ 0x7c56: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 籖
+ 0x7c57: "\x03\x01\x04\x03\x01\x04\x01\x04\x05\x02\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 籗
+ 0x7c58: "\x03\x01\x04\x03\x01\x04\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04\x05\x05\x04\x02\x03\x04", // 籘
+ 0x7c59: "\x03\x01\x04\x03\x01\x04\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x01\x02\x04\x01\x03\x04", // 籙
+ 0x7c5a: "\x03\x01\x04\x03\x01\x04\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 籚
+ 0x7c5b: "\x03\x01\x04\x03\x01\x04\x03\x04\x01\x01\x02\x04\x03\x01\x01\x05\x03\x04\x01\x05\x03\x04", // 籛
+ 0x7c5c: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 籜
+ 0x7c5d: "\x03\x01\x04\x03\x01\x04\x04\x01\x05\x02\x05\x01\x03\x05\x01\x01\x05\x03\x01\x03\x05\x04", // 籝
+ 0x7c5e: "\x03\x01\x04\x03\x01\x04\x03\x03\x02\x03\x01\x01\x02\x01\x02\x01\x05\x02\x01\x01\x02\x03\x04", // 籞
+ 0x7c5f: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x01\x02\x03\x04\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 籟
+ 0x7c60: "\x03\x01\x04\x03\x01\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x05\x01\x05\x01\x01\x01", // 籠
+ 0x7c61: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 籡
+ 0x7c62: "\x03\x01\x04\x03\x01\x04\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x03\x01\x03\x04", // 籢
+ 0x7c63: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 籣
+ 0x7c64: "\x03\x01\x04\x03\x01\x04\x03\x04\x03\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 籤
+ 0x7c65: "\x03\x01\x04\x03\x01\x04\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02", // 籥
+ 0x7c66: "\x03\x01\x04\x03\x01\x04\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 籦
+ 0x7c67: "\x03\x01\x04\x03\x01\x04\x02\x01\x05\x03\x01\x05\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 籧
+ 0x7c68: "\x03\x01\x04\x03\x01\x04\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x03\x05\x03\x04", // 籨
+ 0x7c69: "\x03\x01\x04\x03\x01\x04\x03\x02\x05\x01\x01\x01\x04\x04\x05\x03\x04\x04\x01\x05\x03\x04\x05\x04", // 籩
+ 0x7c6a: "\x03\x01\x04\x03\x01\x04\x05\x05\x04\x05\x05\x04\x01\x05\x05\x04\x05\x05\x04\x05\x03\x03\x01\x02", // 籪
+ 0x7c6b: "\x03\x01\x04\x03\x01\x04\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 籫
+ 0x7c6c: "\x03\x01\x04\x03\x01\x04\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 籬
+ 0x7c6d: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x04\x01\x02\x05\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 籭
+ 0x7c6e: "\x03\x01\x04\x03\x01\x04\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 籮
+ 0x7c6f: "\x03\x01\x04\x03\x01\x04\x04\x01\x05\x02\x05\x01\x03\x05\x01\x01\x02\x05\x01\x01\x01\x03\x04\x03\x05\x04", // 籯
+ 0x7c70: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 籰
+ 0x7c71: "\x03\x01\x04\x03\x01\x04\x01\x04\x05\x02\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 籱
+ 0x7c72: "\x03\x01\x04\x03\x01\x04\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 籲
+ 0x7c73: "\x04\x03\x01\x02\x03\x04", // 米
+ 0x7c74: "\x03\x04\x04\x03\x01\x02\x03\x04", // 籴
+ 0x7c75: "\x04\x03\x01\x02\x03\x04\x01\x02", // 籵
+ 0x7c76: "\x04\x03\x01\x02\x03\x04\x03\x05", // 籶
+ 0x7c77: "\x04\x03\x01\x02\x03\x04\x03\x01\x05", // 籷
+ 0x7c78: "\x04\x03\x01\x02\x03\x04\x05\x01\x02", // 籸
+ 0x7c79: "\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 籹
+ 0x7c7a: "\x04\x03\x01\x02\x03\x04\x03\x01\x05", // 籺
+ 0x7c7b: "\x04\x03\x01\x02\x03\x04\x01\x03\x04", // 类
+ 0x7c7c: "\x04\x03\x01\x02\x03\x04\x02\x05\x02", // 籼
+ 0x7c7d: "\x04\x03\x01\x02\x03\x04\x05\x02\x01", // 籽
+ 0x7c7e: "\x04\x03\x01\x02\x03\x04\x05\x03\x04", // 籾
+ 0x7c7f: "\x04\x03\x01\x02\x03\x04\x01\x02\x04", // 籿
+ 0x7c80: "\x04\x03\x01\x02\x03\x04\x01\x03\x04", // 粀
+ 0x7c81: "\x04\x03\x01\x02\x03\x04\x03\x01\x02", // 粁
+ 0x7c82: "\x03\x05\x04\x04\x03\x01\x02\x03\x04", // 粂
+ 0x7c83: "\x04\x03\x01\x02\x03\x04\x01\x05\x03\x05", // 粃
+ 0x7c84: "\x04\x03\x01\x02\x03\x04\x03\x03\x05\x04", // 粄
+ 0x7c85: "\x04\x03\x01\x02\x03\x04\x03\x05\x03\x03", // 粅
+ 0x7c86: "\x04\x03\x01\x02\x03\x04\x02\x03\x04\x03", // 粆
+ 0x7c87: "\x04\x03\x01\x02\x03\x04\x04\x01\x03\x05", // 粇
+ 0x7c88: "\x04\x03\x01\x02\x03\x04\x05\x02\x01\x01", // 粈
+ 0x7c89: "\x04\x03\x01\x02\x03\x04\x03\x04\x05\x03", // 粉
+ 0x7c8a: "\x01\x05\x03\x05\x04\x03\x01\x02\x03\x04", // 粊
+ 0x7c8b: "\x04\x03\x01\x02\x03\x04\x03\x05\x01\x02", // 粋
+ 0x7c8c: "\x04\x03\x01\x02\x03\x04\x05\x01\x05\x02", // 粌
+ 0x7c8d: "\x04\x03\x01\x02\x03\x04\x03\x01\x01\x05", // 粍
+ 0x7c8e: "\x04\x03\x01\x02\x03\x04\x05\x01\x03\x04", // 粎
+ 0x7c8f: "\x04\x03\x01\x02\x03\x04\x01\x03\x04\x04", // 粏
+ 0x7c90: "\x04\x03\x01\x02\x03\x04\x04\x05\x01\x03", // 粐
+ 0x7c91: "\x04\x03\x01\x02\x03\x04\x05\x02\x01\x05", // 粑
+ 0x7c92: "\x04\x03\x01\x02\x03\x04\x04\x01\x04\x03\x01", // 粒
+ 0x7c93: "\x04\x03\x01\x02\x03\x04\x01\x02\x02\x01\x01", // 粓
+ 0x7c94: "\x04\x03\x01\x02\x03\x04\x01\x05\x01\x05", // 粔
+ 0x7c95: "\x04\x03\x01\x02\x03\x04\x03\x02\x05\x01\x01", // 粕
+ 0x7c96: "\x04\x03\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 粖
+ 0x7c97: "\x04\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 粗
+ 0x7c98: "\x04\x03\x01\x02\x03\x04\x02\x01\x02\x05\x01", // 粘
+ 0x7c99: "\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 粙
+ 0x7c9a: "\x04\x03\x01\x02\x03\x04\x03\x01\x05\x02\x05", // 粚
+ 0x7c9b: "\x05\x01\x01\x02\x04\x03\x01\x03\x04\x03\x02", // 粛
+ 0x7c9c: "\x05\x02\x02\x05\x02\x04\x03\x01\x02\x03\x04", // 粜
+ 0x7c9d: "\x04\x03\x01\x02\x03\x04\x01\x03\x01\x05\x03", // 粝
+ 0x7c9e: "\x04\x03\x01\x02\x03\x04\x01\x02\x05\x03\x05\x01", // 粞
+ 0x7c9f: "\x01\x02\x05\x02\x02\x01\x04\x03\x01\x02\x03\x04", // 粟
+ 0x7ca0: "\x04\x03\x01\x02\x03\x04\x01\x02\x02\x01\x03\x04", // 粠
+ 0x7ca1: "\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x05\x01", // 粡
+ 0x7ca2: "\x04\x01\x03\x05\x03\x04\x04\x03\x01\x02\x03\x04", // 粢
+ 0x7ca3: "\x04\x03\x01\x02\x03\x04\x03\x05\x03\x05\x01", // 粣
+ 0x7ca4: "\x03\x02\x05\x04\x03\x01\x02\x03\x04\x01\x01\x05", // 粤
+ 0x7ca5: "\x05\x01\x05\x04\x03\x01\x02\x03\x04\x05\x01\x05", // 粥
+ 0x7ca6: "\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 粦
+ 0x7ca7: "\x04\x03\x01\x02\x03\x04\x04\x01\x03\x01\x02\x01", // 粧
+ 0x7ca8: "\x04\x03\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01", // 粨
+ 0x7ca9: "\x04\x03\x01\x02\x03\x04\x01\x02\x01\x03\x03\x05", // 粩
+ 0x7caa: "\x04\x03\x01\x02\x03\x04\x01\x02\x02\x01\x03\x04", // 粪
+ 0x7cab: "\x04\x03\x01\x02\x03\x04\x01\x03\x02\x05\x02\x02", // 粫
+ 0x7cac: "\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x02\x01", // 粬
+ 0x7cad: "\x04\x03\x01\x02\x03\x04\x03\x04\x01\x02\x05\x01", // 粭
+ 0x7cae: "\x04\x03\x01\x02\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 粮
+ 0x7caf: "\x04\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 粯
+ 0x7cb0: "\x04\x03\x01\x02\x03\x04\x03\x04\x04\x03\x05\x02\x01", // 粰
+ 0x7cb1: "\x04\x04\x01\x05\x03\x04\x04\x04\x03\x01\x02\x03\x04", // 粱
+ 0x7cb2: "\x02\x01\x03\x05\x04\x05\x04\x04\x03\x01\x02\x03\x04", // 粲
+ 0x7cb3: "\x04\x03\x01\x02\x03\x04\x01\x02\x05\x01\x01\x03\x04", // 粳
+ 0x7cb4: "\x04\x03\x01\x02\x03\x04\x02\x05\x01\x01\x02\x01\x01", // 粴
+ 0x7cb5: "\x03\x02\x05\x03\x04\x03\x01\x02\x03\x04\x01\x01\x05", // 粵
+ 0x7cb6: "\x04\x03\x01\x02\x03\x04\x05\x01\x01\x02\x04\x01\x03\x04", // 粶
+ 0x7cb7: "\x04\x03\x01\x02\x03\x04\x03\x05\x04\x03\x01\x02\x03\x04", // 粷
+ 0x7cb8: "\x04\x03\x01\x02\x03\x04\x01\x02\x02\x01\x01\x01\x03\x04", // 粸
+ 0x7cb9: "\x04\x03\x01\x02\x03\x04\x04\x01\x03\x04\x03\x04\x01\x02", // 粹
+ 0x7cba: "\x04\x03\x01\x02\x03\x04\x03\x02\x05\x01\x01\x03\x01\x02", // 粺
+ 0x7cbb: "\x04\x03\x01\x02\x03\x04\x01\x02\x01\x01\x01\x05\x03\x04", // 粻
+ 0x7cbc: "\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02\x05\x05", // 粼
+ 0x7cbd: "\x04\x03\x01\x02\x03\x04\x04\x04\x05\x01\x01\x02\x03\x04", // 粽
+ 0x7cbe: "\x04\x03\x01\x02\x03\x04\x01\x01\x02\x01\x02\x05\x01\x01", // 精
+ 0x7cbf: "\x04\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x03\x04", // 粿
+ 0x7cc0: "\x04\x03\x01\x02\x03\x04\x01\x02\x02\x03\x02\x03\x05", // 糀
+ 0x7cc1: "\x04\x03\x01\x02\x03\x04\x05\x04\x01\x03\x04\x03\x03\x03", // 糁
+ 0x7cc2: "\x04\x03\x01\x02\x03\x04\x01\x02\x02\x01\x01\x01\x03\x04\x05", // 糂
+ 0x7cc3: "\x04\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 糃
+ 0x7cc4: "\x04\x03\x01\x02\x03\x04\x04\x05\x01\x03\x02\x05\x01\x02\x02", // 糄
+ 0x7cc5: "\x04\x03\x01\x02\x03\x04\x05\x04\x05\x02\x03\x01\x02\x03\x04", // 糅
+ 0x7cc6: "\x04\x03\x01\x02\x03\x04\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 糆
+ 0x7cc7: "\x04\x03\x01\x02\x03\x04\x03\x02\x05\x01\x03\x01\x01\x03\x04", // 糇
+ 0x7cc8: "\x04\x03\x01\x02\x03\x04\x05\x02\x01\x03\x04\x02\x05\x01\x01", // 糈
+ 0x7cc9: "\x04\x03\x01\x02\x03\x04\x03\x04\x05\x02\x03\x04\x03\x05\x04", // 糉
+ 0x7cca: "\x04\x03\x01\x02\x03\x04\x01\x02\x02\x05\x01\x03\x05\x01\x01", // 糊
+ 0x7ccb: "\x04\x03\x01\x02\x03\x04\x04\x03\x01\x02\x05\x01\x01\x02\x02", // 糋
+ 0x7ccc: "\x04\x03\x01\x02\x03\x04\x03\x05\x04\x02\x04\x02\x05\x01\x01", // 糌
+ 0x7ccd: "\x04\x03\x01\x02\x03\x04\x04\x03\x01\x05\x05\x04\x05\x05\x04", // 糍
+ 0x7cce: "\x04\x03\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x02\x01\x01", // 糎
+ 0x7ccf: "\x04\x03\x01\x02\x03\x04\x05\x01\x03\x02\x04\x03\x02\x05\x01\x01", // 糏
+ 0x7cd0: "\x04\x03\x01\x02\x03\x04\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 糐
+ 0x7cd1: "\x04\x03\x01\x02\x03\x04\x05\x01\x05\x04\x01\x05\x01\x05\x04\x01", // 糑
+ 0x7cd2: "\x04\x03\x01\x02\x03\x04\x01\x02\x02\x01\x03\x02\x05\x01\x01\x02", // 糒
+ 0x7cd3: "\x01\x02\x01\x04\x05\x01\x04\x03\x01\x02\x03\x04\x03\x05\x05\x04", // 糓
+ 0x7cd4: "\x04\x03\x01\x02\x03\x04\x05\x04\x04\x02\x05\x01\x02\x01\x04", // 糔
+ 0x7cd5: "\x04\x03\x01\x02\x03\x04\x04\x03\x01\x01\x02\x01\x04\x04\x04\x04", // 糕
+ 0x7cd6: "\x04\x03\x01\x02\x03\x04\x04\x01\x03\x05\x01\x01\x02\x02\x05\x01", // 糖
+ 0x7cd7: "\x04\x03\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x01\x03\x04\x04", // 糗
+ 0x7cd8: "\x04\x03\x01\x02\x03\x04\x04\x04\x05\x01\x03\x05\x03\x03\x03\x04", // 糘
+ 0x7cd9: "\x04\x03\x01\x02\x03\x04\x03\x01\x02\x01\x02\x05\x01\x04\x05\x04", // 糙
+ 0x7cda: "\x04\x03\x01\x02\x03\x04\x01\x02\x02\x05\x02\x01\x03\x01\x02\x01", // 糚
+ 0x7cdb: "\x04\x03\x01\x02\x03\x04\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x01", // 糛
+ 0x7cdc: "\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x04\x03\x01\x02\x03\x04", // 糜
+ 0x7cdd: "\x04\x03\x01\x02\x03\x04\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 糝
+ 0x7cde: "\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 糞
+ 0x7cdf: "\x04\x03\x01\x02\x03\x04\x01\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01", // 糟
+ 0x7ce0: "\x04\x03\x01\x02\x03\x04\x04\x01\x03\x05\x01\x01\x02\x04\x01\x03\x04", // 糠
+ 0x7ce1: "\x04\x03\x01\x02\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05", // 糡
+ 0x7ce2: "\x04\x03\x01\x02\x03\x04\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 糢
+ 0x7ce3: "\x04\x03\x01\x02\x03\x04\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x01", // 糣
+ 0x7ce4: "\x04\x03\x01\x02\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01\x03\x01\x03\x04", // 糤
+ 0x7ce5: "\x04\x03\x01\x02\x03\x04\x01\x03\x02\x05\x02\x02\x01\x03\x02\x05\x02\x02", // 糥
+ 0x7ce6: "\x04\x03\x01\x02\x03\x04\x01\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01", // 糦
+ 0x7ce7: "\x04\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x05\x01\x01\x02\x01\x01", // 糧
+ 0x7ce8: "\x04\x03\x01\x02\x03\x04\x05\x01\x05\x02\x05\x01\x02\x05\x01\x02\x01\x04", // 糨
+ 0x7ce9: "\x04\x03\x01\x02\x03\x04\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 糩
+ 0x7cea: "\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x04\x03\x01\x02\x03\x04", // 糪
+ 0x7ceb: "\x04\x03\x01\x02\x03\x04\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 糫
+ 0x7cec: "\x04\x03\x01\x02\x03\x04\x02\x05\x02\x02\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 糬
+ 0x7ced: "\x04\x03\x01\x02\x03\x04\x03\x04\x04\x04\x04\x04\x05\x02\x03\x04\x03\x05\x04", // 糭
+ 0x7cee: "\x04\x03\x01\x02\x03\x04\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01", // 糮
+ 0x7cef: "\x04\x03\x01\x02\x03\x04\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02", // 糯
+ 0x7cf0: "\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04\x01", // 糰
+ 0x7cf1: "\x05\x02\x03\x03\x02\x05\x01\x05\x01\x04\x01\x04\x03\x01\x01\x02\x04\x03\x01\x02\x03\x04", // 糱
+ 0x7cf2: "\x04\x03\x01\x02\x03\x04\x01\x03\x01\x02\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 糲
+ 0x7cf3: "\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x03\x02\x01\x05\x01\x01\x03\x05\x05\x04\x04\x03\x01\x02\x03\x04", // 糳
+ 0x7cf4: "\x03\x04\x04\x03\x01\x02\x03\x04\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 糴
+ 0x7cf5: "\x01\x02\x02\x03\x02\x05\x01\x05\x01\x04\x01\x04\x03\x01\x01\x02\x04\x03\x01\x02\x03\x04", // 糵
+ 0x7cf6: "\x05\x02\x02\x05\x02\x04\x03\x01\x02\x03\x04\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 糶
+ 0x7cf7: "\x04\x03\x01\x02\x03\x04\x01\x02\x02\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 糷
+ 0x7cf8: "\x05\x05\x04\x02\x03\x04", // 糸
+ 0x7cf9: "\x05\x05\x04\x04\x04\x04", // 糹
+ 0x7cfa: "\x05\x05\x04\x04\x04\x04\x05", // 糺
+ 0x7cfb: "\x03\x05\x05\x04\x02\x03\x04", // 系
+ 0x7cfc: "\x05\x05\x04\x04\x04\x04\x05\x03", // 糼
+ 0x7cfd: "\x05\x05\x04\x04\x04\x04\x01\x02", // 糽
+ 0x7cfe: "\x05\x05\x04\x04\x04\x04\x05\x02", // 糾
+ 0x7cff: "\x05\x05\x04\x04\x04\x04\x05\x03", // 糿
+ 0x7d00: "\x05\x05\x04\x04\x04\x04\x05\x01\x05", // 紀
+ 0x7d01: "\x05\x05\x04\x04\x04\x04\x05\x04\x04", // 紁
+ 0x7d02: "\x05\x05\x04\x04\x04\x04\x01\x02\x04", // 紂
+ 0x7d03: "\x05\x05\x04\x04\x04\x04\x03\x02\x02", // 紃
+ 0x7d04: "\x05\x05\x04\x04\x04\x04\x03\x05\x04", // 約
+ 0x7d05: "\x05\x05\x04\x04\x04\x04\x01\x02\x01", // 紅
+ 0x7d06: "\x05\x05\x04\x04\x04\x04\x01\x01\x02", // 紆
+ 0x7d07: "\x05\x05\x04\x04\x04\x04\x03\x01\x05", // 紇
+ 0x7d08: "\x05\x05\x04\x04\x04\x04\x03\x05\x04", // 紈
+ 0x7d09: "\x05\x05\x04\x04\x04\x04\x05\x03\x04", // 紉
+ 0x7d0a: "\x04\x01\x03\x04\x05\x05\x04\x02\x03\x04", // 紊
+ 0x7d0b: "\x05\x05\x04\x04\x04\x04\x04\x01\x03\x04", // 紋
+ 0x7d0c: "\x05\x05\x04\x04\x04\x04\x01\x03\x05\x04", // 紌
+ 0x7d0d: "\x05\x05\x04\x04\x04\x04\x02\x05\x03\x04", // 納
+ 0x7d0e: "\x05\x05\x04\x04\x04\x04\x01\x03\x04\x04", // 紎
+ 0x7d0f: "\x05\x05\x04\x04\x04\x04\x04\x04\x01\x02", // 紏
+ 0x7d10: "\x05\x05\x04\x04\x04\x04\x05\x02\x01\x01", // 紐
+ 0x7d11: "\x05\x05\x04\x04\x04\x04\x01\x03\x02\x04", // 紑
+ 0x7d12: "\x05\x05\x04\x04\x04\x04\x03\x04\x03\x02", // 紒
+ 0x7d13: "\x05\x05\x04\x04\x04\x04\x05\x04\x05\x02", // 紓
+ 0x7d14: "\x05\x05\x04\x04\x04\x04\x01\x05\x02\x05", // 純
+ 0x7d15: "\x05\x05\x04\x04\x04\x04\x01\x05\x03\x05", // 紕
+ 0x7d16: "\x05\x05\x04\x04\x04\x04\x05\x01\x05\x02", // 紖
+ 0x7d17: "\x05\x05\x04\x04\x04\x04\x02\x03\x04\x03", // 紗
+ 0x7d18: "\x05\x05\x04\x04\x04\x04\x01\x03\x05\x04", // 紘
+ 0x7d19: "\x05\x05\x04\x04\x04\x04\x03\x05\x01\x05", // 紙
+ 0x7d1a: "\x05\x05\x04\x04\x04\x04\x03\x05\x04", // 級
+ 0x7d1b: "\x05\x05\x04\x04\x04\x04\x03\x04\x05\x03", // 紛
+ 0x7d1c: "\x05\x05\x04\x04\x04\x04\x01\x01\x05\x04", // 紜
+ 0x7d1d: "\x05\x05\x04\x04\x04\x04\x03\x01\x02\x01", // 紝
+ 0x7d1e: "\x05\x05\x04\x04\x04\x04\x04\x05\x03\x05", // 紞
+ 0x7d1f: "\x05\x05\x04\x04\x04\x04\x03\x04\x04\x05", // 紟
+ 0x7d20: "\x01\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 素
+ 0x7d21: "\x05\x05\x04\x04\x04\x04\x04\x01\x05\x03", // 紡
+ 0x7d22: "\x01\x02\x04\x05\x05\x05\x04\x02\x03\x04", // 索
+ 0x7d23: "\x05\x05\x04\x04\x04\x04\x03\x05\x01\x02", // 紣
+ 0x7d24: "\x05\x05\x04\x04\x04\x04\x03\x03\x01\x02", // 紤
+ 0x7d25: "\x01\x02\x01\x05\x05\x05\x04\x02\x03\x04", // 紥
+ 0x7d26: "\x05\x05\x04\x04\x04\x04\x05\x02\x01\x05", // 紦
+ 0x7d27: "\x02\x02\x05\x04\x05\x05\x04\x02\x03\x04", // 紧
+ 0x7d28: "\x05\x05\x04\x04\x04\x04\x03\x02\x01\x02\x04", // 紨
+ 0x7d29: "\x05\x05\x04\x04\x04\x04\x03\x01\x01\x03\x04", // 紩
+ 0x7d2a: "\x05\x05\x04\x04\x04\x04\x02\x01\x02\x01\x03\x05", // 紪
+ 0x7d2b: "\x02\x01\x02\x01\x03\x05\x05\x05\x04\x02\x03\x04", // 紫
+ 0x7d2c: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x01", // 紬
+ 0x7d2d: "\x05\x05\x04\x04\x04\x04\x05\x01\x05\x05\x04", // 紭
+ 0x7d2e: "\x01\x02\x03\x04\x05\x05\x05\x04\x02\x03\x04", // 紮
+ 0x7d2f: "\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 累
+ 0x7d30: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x01", // 細
+ 0x7d31: "\x05\x05\x04\x04\x04\x04\x01\x03\x05\x04\x04", // 紱
+ 0x7d32: "\x05\x05\x04\x04\x04\x04\x01\x02\x02\x01\x05", // 紲
+ 0x7d33: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01\x02", // 紳
+ 0x7d34: "\x05\x05\x04\x04\x04\x04\x05\x03\x02\x05\x04", // 紴
+ 0x7d35: "\x05\x05\x04\x04\x04\x04\x04\x04\x05\x01\x02", // 紵
+ 0x7d36: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x05\x04", // 紶
+ 0x7d37: "\x05\x05\x04\x04\x04\x04\x03\x04\x04\x05\x04", // 紷
+ 0x7d38: "\x05\x05\x04\x04\x04\x04\x04\x01\x01\x02\x01", // 紸
+ 0x7d39: "\x05\x05\x04\x04\x04\x04\x05\x03\x02\x05\x01", // 紹
+ 0x7d3a: "\x05\x05\x04\x04\x04\x04\x01\x02\x02\x01\x01", // 紺
+ 0x7d3b: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x03\x04", // 紻
+ 0x7d3c: "\x05\x05\x04\x04\x04\x04\x05\x01\x05\x03\x02", // 紼
+ 0x7d3d: "\x05\x05\x04\x04\x04\x04\x04\x04\x05\x03\x05", // 紽
+ 0x7d3e: "\x05\x05\x04\x04\x04\x04\x03\x04\x03\x03\x03", // 紾
+ 0x7d3f: "\x05\x05\x04\x04\x04\x04\x05\x04\x02\x05\x01", // 紿
+ 0x7d40: "\x05\x05\x04\x04\x04\x04\x05\x02\x02\x05\x02", // 絀
+ 0x7d41: "\x05\x05\x04\x04\x04\x04\x03\x01\x05\x02\x05", // 絁
+ 0x7d42: "\x05\x05\x04\x04\x04\x04\x03\x05\x04\x04\x04", // 終
+ 0x7d43: "\x05\x05\x04\x04\x04\x04\x04\x01\x05\x05\x04", // 絃
+ 0x7d44: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01\x01", // 組
+ 0x7d45: "\x05\x05\x04\x04\x04\x04\x02\x05\x02\x05\x01", // 絅
+ 0x7d46: "\x05\x05\x04\x04\x04\x04\x04\x03\x01\x01\x02", // 絆
+ 0x7d47: "\x05\x05\x04\x04\x04\x04\x03\x05\x02\x05\x01", // 絇
+ 0x7d48: "\x05\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01", // 絈
+ 0x7d49: "\x05\x05\x04\x04\x04\x04\x01\x02\x03\x04\x04", // 絉
+ 0x7d4a: "\x05\x05\x04\x04\x04\x04\x01\x02\x03\x04\x01", // 絊
+ 0x7d4b: "\x05\x05\x04\x04\x04\x04\x04\x01\x03\x05\x04", // 絋
+ 0x7d4c: "\x05\x05\x04\x04\x04\x04\x05\x04\x01\x02\x01", // 経
+ 0x7d4d: "\x05\x05\x04\x04\x04\x04\x03\x02\x03\x01\x02\x01", // 絍
+ 0x7d4e: "\x05\x05\x04\x04\x04\x04\x03\x03\x02\x01\x01\x02", // 絎
+ 0x7d4f: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01\x05\x03", // 絏
+ 0x7d50: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x02\x05\x01", // 結
+ 0x7d51: "\x05\x05\x04\x04\x04\x04\x03\x01\x01\x02\x03\x04", // 絑
+ 0x7d52: "\x05\x05\x04\x04\x04\x04\x04\x03\x04\x02\x04\x02", // 絒
+ 0x7d53: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x01\x02\x01", // 絓
+ 0x7d54: "\x05\x05\x04\x04\x04\x04\x01\x03\x02\x05\x01\x01", // 絔
+ 0x7d55: "\x05\x05\x04\x04\x04\x04\x05\x03\x05\x02\x01\x05", // 絕
+ 0x7d56: "\x05\x05\x04\x04\x04\x04\x02\x04\x03\x01\x03\x05", // 絖
+ 0x7d57: "\x05\x05\x04\x04\x04\x04\x02\x05\x02\x05\x01\x01", // 絗
+ 0x7d58: "\x05\x05\x04\x04\x04\x04\x04\x01\x03\x05\x03\x04", // 絘
+ 0x7d59: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x01\x01\x01", // 絙
+ 0x7d5a: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x04\x04\x01", // 絚
+ 0x7d5b: "\x03\x02\x02\x03\x05\x04\x05\x05\x04\x02\x03\x04", // 絛
+ 0x7d5c: "\x01\x01\x01\x02\x05\x03\x05\x05\x04\x02\x03\x04", // 絜
+ 0x7d5d: "\x05\x05\x04\x04\x04\x04\x01\x03\x04\x01\x01\x05", // 絝
+ 0x7d5e: "\x05\x05\x04\x04\x04\x04\x04\x01\x03\x04\x03\x04", // 絞
+ 0x7d5f: "\x05\x05\x04\x04\x04\x04\x03\x04\x01\x01\x02\x01", // 絟
+ 0x7d60: "\x05\x05\x04\x04\x04\x04\x01\x03\x02\x05\x01\x01", // 絠
+ 0x7d61: "\x05\x05\x04\x04\x04\x04\x03\x05\x04\x02\x05\x01", // 絡
+ 0x7d62: "\x05\x05\x04\x04\x04\x04\x03\x05\x02\x05\x01\x01", // 絢
+ 0x7d63: "\x05\x05\x04\x04\x04\x04\x04\x03\x01\x01\x03\x02", // 絣
+ 0x7d64: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x03\x05\x01", // 絤
+ 0x7d65: "\x05\x05\x04\x04\x04\x04\x03\x02\x01\x03\x04\x04", // 絥
+ 0x7d66: "\x05\x05\x04\x04\x04\x04\x03\x04\x01\x02\x05\x01", // 給
+ 0x7d67: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01", // 絧
+ 0x7d68: "\x05\x05\x04\x04\x04\x04\x01\x01\x03\x05\x03\x04", // 絨
+ 0x7d69: "\x05\x05\x04\x04\x04\x04\x03\x04\x01\x05\x03\x04", // 絩
+ 0x7d6a: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x03\x04\x01", // 絪
+ 0x7d6b: "\x05\x04\x05\x04\x05\x04\x05\x05\x04\x02\x03\x04", // 絫
+ 0x7d6c: "\x05\x05\x04\x04\x04\x04\x03\x01\x02\x02\x05\x01", // 絬
+ 0x7d6d: "\x04\x03\x01\x01\x03\x04\x05\x05\x04\x02\x03\x04", // 絭
+ 0x7d6e: "\x05\x03\x01\x02\x05\x01\x05\x05\x04\x02\x03\x04", // 絮
+ 0x7d6f: "\x05\x05\x04\x04\x04\x04\x04\x01\x05\x03\x03\x04", // 絯
+ 0x7d70: "\x05\x05\x04\x04\x04\x04\x01\x05\x04\x01\x02\x01", // 絰
+ 0x7d71: "\x05\x05\x04\x04\x04\x04\x04\x01\x05\x04\x03\x05", // 統
+ 0x7d72: "\x05\x05\x04\x04\x04\x04\x05\x05\x04\x02\x03\x04", // 絲
+ 0x7d73: "\x05\x05\x04\x04\x04\x04\x03\x05\x04\x01\x05\x02", // 絳
+ 0x7d74: "\x05\x05\x04\x04\x04\x04\x04\x03\x01\x01\x01\x02", // 絴
+ 0x7d75: "\x05\x05\x04\x04\x04\x04\x03\x04\x01\x01\x05\x04", // 絵
+ 0x7d76: "\x05\x05\x04\x04\x04\x04\x03\x05\x05\x02\x01\x05", // 絶
+ 0x7d77: "\x01\x02\x01\x03\x05\x04\x05\x05\x04\x02\x03\x04", // 絷
+ 0x7d78: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01\x01\x03\x05", // 絸
+ 0x7d79: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x01", // 絹
+ 0x7d7a: "\x05\x05\x04\x04\x04\x04\x03\x04\x01\x03\x02\x05\x02", // 絺
+ 0x7d7b: "\x05\x05\x04\x04\x04\x04\x03\x05\x02\x05\x01\x03\x05", // 絻
+ 0x7d7c: "\x05\x05\x04\x04\x04\x04\x03\x04\x04\x03\x05\x03\x03", // 絼
+ 0x7d7d: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01", // 絽
+ 0x7d7e: "\x05\x05\x04\x04\x04\x04\x01\x03\x05\x05\x03\x04", // 絾
+ 0x7d7f: "\x05\x05\x04\x04\x04\x04\x01\x02\x04\x01\x03\x04\x04", // 絿
+ 0x7d80: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x01\x02\x03\x04", // 綀
+ 0x7d81: "\x05\x05\x04\x04\x04\x04\x01\x01\x01\x03\x05\x02", // 綁
+ 0x7d82: "\x05\x05\x04\x04\x04\x04\x04\x01\x02\x05\x01\x03\x05", // 綂
+ 0x7d83: "\x05\x05\x04\x04\x04\x04\x02\x04\x03\x02\x05\x01\x01", // 綃
+ 0x7d84: "\x05\x05\x04\x04\x04\x04\x04\x04\x05\x02\x02\x03\x05", // 綄
+ 0x7d85: "\x05\x05\x04\x04\x04\x04\x05\x01\x01\x04\x05\x05\x04", // 綅
+ 0x7d86: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x01\x01\x03\x04", // 綆
+ 0x7d87: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x03\x05\x01\x01", // 綇
+ 0x7d88: "\x05\x05\x04\x04\x04\x04\x04\x03\x05\x01\x05\x02\x03", // 綈
+ 0x7d89: "\x05\x05\x04\x04\x04\x04\x03\x01\x02\x03\x04\x05\x03", // 綉
+ 0x7d8a: "\x05\x05\x04\x04\x04\x04\x01\x03\x04\x03\x04\x03\x04", // 綊
+ 0x7d8b: "\x05\x05\x04\x04\x04\x04\x04\x04\x05\x01\x03\x05\x04", // 綋
+ 0x7d8c: "\x05\x05\x04\x04\x04\x04\x03\x04\x03\x04\x02\x05\x01", // 綌
+ 0x7d8d: "\x05\x05\x04\x04\x04\x04\x01\x02\x04\x05\x05\x02\x01", // 綍
+ 0x7d8e: "\x05\x05\x04\x04\x04\x04\x03\x01\x02\x01\x05\x04", // 綎
+ 0x7d8f: "\x05\x05\x04\x04\x04\x04\x03\x04\x04\x03\x05\x03\x01", // 綏
+ 0x7d90: "\x05\x05\x04\x04\x04\x04\x04\x03\x02\x05\x01\x03\x05", // 綐
+ 0x7d91: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x03\x04\x01", // 綑
+ 0x7d92: "\x05\x05\x04\x04\x04\x04\x03\x04\x04\x03\x05\x02\x01", // 綒
+ 0x7d93: "\x05\x05\x04\x04\x04\x04\x01\x05\x05\x05\x01\x02\x01", // 經
+ 0x7d94: "\x01\x03\x04\x01\x01\x05\x03\x05\x05\x04\x02\x03\x04", // 綔
+ 0x7d95: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x04\x05\x04\x04", // 綕
+ 0x7d96: "\x05\x05\x04\x04\x04\x04\x03\x02\x01\x05\x05\x04", // 綖
+ 0x7d97: "\x05\x05\x04\x04\x04\x04\x02\x05\x03\x04\x02\x05\x01", // 綗
+ 0x7d98: "\x05\x05\x04\x04\x04\x04\x03\x05\x04\x01\x01\x01\x02", // 綘
+ 0x7d99: "\x05\x05\x04\x04\x04\x04\x04\x03\x01\x02\x03\x04\x05", // 継
+ 0x7d9a: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x04\x05\x03\x05", // 続
+ 0x7d9b: "\x05\x05\x04\x04\x04\x04\x05\x03\x04\x04\x05\x04\x04", // 綛
+ 0x7d9c: "\x05\x05\x04\x04\x04\x04\x04\x04\x05\x01\x01\x02\x03\x04", // 綜
+ 0x7d9d: "\x05\x05\x04\x04\x04\x04\x01\x02\x03\x04\x01\x02\x03\x04", // 綝
+ 0x7d9e: "\x05\x05\x04\x04\x04\x04\x03\x01\x02\x01\x02\x02\x01\x01", // 綞
+ 0x7d9f: "\x05\x05\x04\x04\x04\x04\x04\x05\x01\x03\x01\x03\x04\x04", // 綟
+ 0x7da0: "\x05\x05\x04\x04\x04\x04\x05\x05\x01\x02\x04\x01\x03\x04", // 綠
+ 0x7da1: "\x05\x05\x04\x04\x04\x04\x04\x01\x02\x05\x01\x02\x03\x04", // 綡
+ 0x7da2: "\x05\x05\x04\x04\x04\x04\x03\x05\x01\x02\x01\x02\x05\x01", // 綢
+ 0x7da3: "\x05\x05\x04\x04\x04\x04\x04\x03\x01\x01\x03\x04\x05\x05", // 綣
+ 0x7da4: "\x05\x03\x02\x05\x01\x05\x02\x05\x05\x04\x02\x03\x04", // 綤
+ 0x7da5: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x01\x01\x03\x02", // 綥
+ 0x7da6: "\x01\x02\x02\x01\x01\x01\x03\x04\x05\x05\x04\x02\x03\x04", // 綦
+ 0x7da7: "\x05\x05\x04\x04\x04\x04\x04\x01\x02\x05\x01\x05\x02\x01", // 綧
+ 0x7da8: "\x05\x05\x04\x04\x04\x04\x01\x02\x02\x01\x01\x01\x03\x04", // 綨
+ 0x7da9: "\x05\x05\x04\x04\x04\x04\x04\x04\x05\x03\x05\x04\x05\x05", // 綩
+ 0x7daa: "\x05\x05\x04\x04\x04\x04\x01\x01\x02\x01\x02\x05\x01\x01", // 綪
+ 0x7dab: "\x05\x05\x04\x04\x04\x04\x01\x05\x03\x04\x01\x05\x03\x04", // 綫
+ 0x7dac: "\x05\x05\x04\x04\x04\x04\x03\x04\x04\x03\x04\x05\x05\x04", // 綬
+ 0x7dad: "\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 維
+ 0x7dae: "\x04\x05\x01\x03\x03\x01\x03\x04\x05\x05\x04\x02\x03\x04", // 綮
+ 0x7daf: "\x05\x05\x04\x04\x04\x04\x03\x05\x03\x01\x01\x02\x05\x02", // 綯
+ 0x7db0: "\x05\x05\x04\x04\x04\x04\x04\x04\x05\x02\x05\x01\x05\x01", // 綰
+ 0x7db1: "\x05\x05\x04\x04\x04\x04\x02\x05\x04\x03\x01\x02\x05\x02", // 綱
+ 0x7db2: "\x05\x05\x04\x04\x04\x04\x02\x05\x04\x03\x01\x04\x01\x05", // 網
+ 0x7db3: "\x05\x05\x04\x04\x04\x04\x03\x05\x01\x01\x03\x05\x01\x01", // 綳
+ 0x7db4: "\x05\x05\x04\x04\x04\x04\x05\x04\x05\x04\x05\x04\x05\x04", // 綴
+ 0x7db5: "\x05\x05\x04\x04\x04\x04\x03\x04\x04\x03\x01\x02\x03\x04", // 綵
+ 0x7db6: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01\x01\x02\x03\x04", // 綶
+ 0x7db7: "\x05\x05\x04\x04\x04\x04\x04\x01\x03\x04\x03\x04\x01\x02", // 綷
+ 0x7db8: "\x05\x05\x04\x04\x04\x04\x03\x04\x01\x02\x05\x01\x02\x02", // 綸
+ 0x7db9: "\x05\x05\x04\x04\x04\x04\x03\x05\x04\x02\x04\x02\x05\x01", // 綹
+ 0x7dba: "\x05\x05\x04\x04\x04\x04\x01\x03\x04\x01\x02\x05\x01\x02", // 綺
+ 0x7dbb: "\x05\x05\x04\x04\x04\x04\x04\x04\x05\x01\x02\x01\x03\x04", // 綻
+ 0x7dbc: "\x05\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x03\x01\x02", // 綼
+ 0x7dbd: "\x05\x05\x04\x04\x04\x04\x02\x01\x02\x05\x01\x01\x01\x02", // 綽
+ 0x7dbe: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x03\x04\x03\x05\x04", // 綾
+ 0x7dbf: "\x05\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x02\x05\x02", // 綿
+ 0x7dc0: "\x05\x05\x04\x04\x04\x04\x01\x05\x01\x01\x02\x05\x03\x01", // 緀
+ 0x7dc1: "\x05\x05\x04\x04\x04\x04\x01\x05\x01\x01\x02\x01\x03\x04", // 緁
+ 0x7dc2: "\x05\x05\x04\x04\x04\x04\x04\x03\x03\x04\x04\x03\x03\x04", // 緂
+ 0x7dc3: "\x05\x05\x04\x04\x04\x04\x03\x04\x03\x04\x02\x01\x03\x04", // 緃
+ 0x7dc4: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01\x01\x05\x03\x05", // 緄
+ 0x7dc5: "\x05\x05\x04\x04\x04\x04\x01\x02\x02\x01\x01\x01\x05\x04", // 緅
+ 0x7dc6: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01\x03\x05\x03\x03", // 緆
+ 0x7dc7: "\x05\x05\x04\x04\x04\x04\x05\x05\x05\x02\x05\x01\x02\x01", // 緇
+ 0x7dc8: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x04\x03\x01\x01\x02", // 緈
+ 0x7dc9: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x02\x03\x04\x03\x04", // 緉
+ 0x7dca: "\x01\x02\x05\x01\x02\x05\x05\x04\x05\x05\x04\x02\x03\x04", // 緊
+ 0x7dcb: "\x05\x05\x04\x04\x04\x04\x02\x01\x01\x01\x02\x01\x01\x01", // 緋
+ 0x7dcc: "\x05\x05\x04\x04\x04\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 緌
+ 0x7dcd: "\x05\x05\x04\x04\x04\x04\x03\x05\x01\x05\x02\x05\x01\x01", // 緍
+ 0x7dce: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x01\x01\x05\x03\x04", // 緎
+ 0x7dcf: "\x05\x05\x04\x04\x04\x04\x03\x04\x05\x04\x04\x05\x04\x04", // 総
+ 0x7dd0: "\x03\x01\x05\x05\x04\x01\x04\x03\x05\x05\x04\x02\x03\x04", // 緐
+ 0x7dd1: "\x05\x05\x04\x04\x04\x04\x05\x01\x01\x02\x04\x01\x03\x04", // 緑
+ 0x7dd2: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x03\x02\x05\x01\x01", // 緒
+ 0x7dd3: "\x05\x05\x04\x04\x04\x04\x01\x02\x02\x02\x05\x01\x03\x04", // 緓
+ 0x7dd4: "\x05\x05\x04\x04\x04\x04\x02\x04\x03\x02\x05\x02\x05\x01", // 緔
+ 0x7dd5: "\x05\x05\x04\x04\x04\x04\x04\x01\x03\x04\x03\x02\x01\x01", // 緕
+ 0x7dd6: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x03\x02\x05\x01\x01\x04", // 緖
+ 0x7dd7: "\x05\x05\x04\x04\x04\x04\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 緗
+ 0x7dd8: "\x05\x05\x04\x04\x04\x04\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 緘
+ 0x7dd9: "\x05\x05\x04\x04\x04\x04\x01\x02\x02\x01\x02\x05\x01\x01\x02", // 緙
+ 0x7dda: "\x05\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x02\x05\x03\x04", // 線
+ 0x7ddb: "\x05\x05\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02\x01\x03\x04", // 緛
+ 0x7ddc: "\x03\x02\x05\x01\x01\x02\x05\x02\x03\x05\x05\x04\x02\x03\x04", // 緜
+ 0x7ddd: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01\x02\x02\x01\x01\x01", // 緝
+ 0x7dde: "\x05\x05\x04\x04\x04\x04\x03\x02\x01\x01\x01\x03\x05\x05\x04", // 緞
+ 0x7ddf: "\x05\x05\x04\x04\x04\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 緟
+ 0x7de0: "\x05\x05\x04\x04\x04\x04\x04\x01\x04\x03\x04\x05\x02\x05\x02", // 締
+ 0x7de1: "\x05\x05\x04\x04\x04\x04\x05\x01\x05\x01\x05\x02\x05\x01\x01", // 緡
+ 0x7de2: "\x05\x05\x04\x04\x04\x04\x01\x02\x02\x02\x05\x01\x02\x01", // 緢
+ 0x7de3: "\x05\x05\x04\x04\x04\x04\x05\x05\x01\x03\x05\x03\x03\x03\x04", // 緣
+ 0x7de4: "\x05\x05\x04\x04\x04\x04\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 緤
+ 0x7de5: "\x05\x05\x04\x04\x04\x04\x03\x02\x02\x05\x01\x01\x02\x03\x04", // 緥
+ 0x7de6: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 緦
+ 0x7de7: "\x05\x05\x04\x04\x04\x04\x04\x03\x01\x02\x05\x03\x05\x01\x01", // 緧
+ 0x7de8: "\x05\x05\x04\x04\x04\x04\x04\x05\x01\x03\x02\x05\x01\x02\x02", // 編
+ 0x7de9: "\x05\x05\x04\x04\x04\x04\x03\x04\x04\x03\x01\x01\x03\x05\x04", // 緩
+ 0x7dea: "\x05\x05\x04\x04\x04\x04\x04\x04\x02\x01\x02\x05\x04\x04\x01", // 緪
+ 0x7deb: "\x05\x05\x04\x04\x04\x04\x03\x05\x03\x03\x04\x04\x05\x04\x04", // 緫
+ 0x7dec: "\x05\x05\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 緬
+ 0x7ded: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x01\x02\x05\x01\x01", // 緭
+ 0x7dee: "\x05\x05\x04\x04\x04\x04\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 緮
+ 0x7def: "\x05\x05\x04\x04\x04\x04\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 緯
+ 0x7df0: "\x05\x05\x04\x04\x04\x04\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 緰
+ 0x7df1: "\x05\x05\x04\x04\x04\x04\x03\x02\x05\x01\x03\x01\x01\x03\x04", // 緱
+ 0x7df2: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01\x01\x02\x03\x04\x03", // 緲
+ 0x7df3: "\x04\x01\x03\x01\x01\x01\x02\x05\x03\x05\x05\x04\x02\x03\x04", // 緳
+ 0x7df4: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 練
+ 0x7df5: "\x05\x05\x04\x04\x04\x04\x03\x04\x05\x02\x03\x04\x03\x05\x04", // 緵
+ 0x7df6: "\x05\x05\x04\x04\x04\x04\x03\x02\x01\x02\x05\x01\x01\x03\x04", // 緶
+ 0x7df7: "\x05\x05\x04\x04\x04\x04\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 緷
+ 0x7df8: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x02\x02\x01\x01\x02\x01", // 緸
+ 0x7df9: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 緹
+ 0x7dfa: "\x05\x05\x04\x04\x04\x04\x02\x05\x05\x02\x05\x02\x05\x01", // 緺
+ 0x7dfb: "\x05\x05\x04\x04\x04\x04\x01\x05\x04\x01\x02\x01\x03\x01\x03\x04", // 緻
+ 0x7dfc: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 緼
+ 0x7dfd: "\x05\x05\x04\x04\x04\x04\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 緽
+ 0x7dfe: "\x05\x05\x04\x04\x04\x04\x01\x03\x02\x05\x01\x01\x02\x01\x01", // 緾
+ 0x7dff: "\x05\x05\x04\x04\x04\x04\x05\x04\x02\x05\x01\x04\x05\x04\x04", // 緿
+ 0x7e00: "\x05\x05\x04\x04\x04\x04\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 縀
+ 0x7e01: "\x05\x05\x04\x04\x04\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 縁
+ 0x7e02: "\x05\x05\x04\x04\x04\x04\x04\x03\x02\x05\x01\x04\x05\x04\x04", // 縂
+ 0x7e03: "\x05\x05\x04\x04\x04\x04\x05\x02\x01\x03\x04\x02\x05\x01\x01", // 縃
+ 0x7e04: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01\x02\x05\x01\x01\x05", // 縄
+ 0x7e05: "\x05\x05\x04\x04\x04\x04\x01\x03\x01\x05\x03\x01\x05\x03\x04", // 縅
+ 0x7e06: "\x05\x05\x04\x04\x04\x04\x04\x04\x02\x01\x02\x05\x01\x01\x01", // 縆
+ 0x7e07: "\x05\x05\x04\x04\x04\x04\x04\x04\x05\x01\x02\x05\x01\x01\x01", // 縇
+ 0x7e08: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x05\x05\x04\x02\x03\x04", // 縈
+ 0x7e09: "\x05\x05\x04\x04\x04\x04\x01\x02\x02\x04\x03\x01\x02\x05\x01\x01", // 縉
+ 0x7e0a: "\x05\x05\x04\x04\x04\x04\x04\x03\x01\x03\x04\x02\x05\x02\x02\x01", // 縊
+ 0x7e0b: "\x05\x05\x04\x04\x04\x04\x03\x02\x05\x01\x05\x01\x04\x05\x04", // 縋
+ 0x7e0c: "\x05\x05\x04\x04\x04\x04\x04\x03\x01\x05\x02\x03\x04\x05\x04", // 縌
+ 0x7e0d: "\x05\x05\x04\x04\x04\x04\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03", // 縍
+ 0x7e0e: "\x05\x05\x04\x04\x04\x04\x02\x05\x05\x04\x05\x02\x05\x01\x01", // 縎
+ 0x7e0f: "\x03\x03\x05\x04\x01\x04\x03\x05\x05\x04\x05\x05\x04\x02\x03\x04", // 縏
+ 0x7e10: "\x05\x05\x04\x04\x04\x04\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03", // 縐
+ 0x7e11: "\x05\x05\x04\x04\x04\x04\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 縑
+ 0x7e12: "\x05\x05\x04\x04\x04\x04\x04\x03\x01\x01\x01\x03\x01\x02\x01", // 縒
+ 0x7e13: "\x05\x05\x04\x04\x04\x04\x01\x03\x03\x02\x05\x01\x01\x02\x03\x04", // 縓
+ 0x7e14: "\x05\x05\x04\x04\x04\x04\x05\x04\x05\x04\x05\x04\x01\x02\x03\x04", // 縔
+ 0x7e15: "\x05\x05\x04\x04\x04\x04\x02\x05\x03\x04\x01\x02\x05\x02\x02\x01", // 縕
+ 0x7e16: "\x05\x05\x04\x04\x04\x04\x04\x04\x05\x01\x01\x01\x02\x02\x05\x01", // 縖
+ 0x7e17: "\x05\x05\x04\x04\x04\x04\x04\x01\x02\x05\x01\x01\x03\x05\x03\x04", // 縗
+ 0x7e18: "\x05\x05\x04\x04\x04\x04\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04", // 縘
+ 0x7e19: "\x05\x05\x04\x04\x04\x04\x01\x02\x02\x01\x02\x02\x01\x01\x01", // 縙
+ 0x7e1a: "\x05\x05\x04\x04\x04\x04\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01", // 縚
+ 0x7e1b: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 縛
+ 0x7e1c: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 縜
+ 0x7e1d: "\x05\x05\x04\x04\x04\x04\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 縝
+ 0x7e1e: "\x05\x05\x04\x04\x04\x04\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 縞
+ 0x7e1f: "\x05\x05\x04\x04\x04\x04\x01\x03\x01\x01\x05\x03\x04\x01\x02\x04", // 縟
+ 0x7e20: "\x01\x02\x01\x04\x05\x01\x05\x05\x04\x02\x03\x04\x03\x05\x05\x04", // 縠
+ 0x7e21: "\x05\x05\x04\x04\x04\x04\x04\x04\x05\x04\x01\x04\x03\x01\x01\x02", // 縡
+ 0x7e22: "\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04\x05\x05\x04\x02\x03\x04", // 縢
+ 0x7e23: "\x02\x05\x01\x01\x01\x01\x02\x03\x04\x03\x05\x05\x04\x02\x03\x04", // 縣
+ 0x7e24: "\x05\x05\x04\x04\x04\x04\x01\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 縤
+ 0x7e25: "\x05\x05\x04\x04\x04\x04\x01\x01\x01\x03\x04\x03\x01\x02\x03\x04", // 縥
+ 0x7e26: "\x05\x05\x04\x04\x04\x04\x03\x03\x02\x04\x03\x01\x02\x01\x03\x04", // 縦
+ 0x7e27: "\x05\x05\x04\x04\x04\x04\x03\x02\x02\x03\x05\x04\x01\x02\x03\x04", // 縧
+ 0x7e28: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01\x02\x04\x03\x01\x03\x05", // 縨
+ 0x7e29: "\x05\x05\x04\x04\x04\x04\x03\x05\x04\x04\x05\x04\x01\x01\x02\x03\x04", // 縩
+ 0x7e2a: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01\x01\x02\x02\x01\x01\x02", // 縪
+ 0x7e2b: "\x05\x05\x04\x04\x04\x04\x03\x05\x04\x01\x01\x01\x02\x04\x05\x04", // 縫
+ 0x7e2c: "\x05\x05\x04\x04\x04\x04\x01\x03\x02\x01\x01\x02\x03\x04\x05\x03\x04", // 縬
+ 0x7e2d: "\x05\x05\x04\x04\x04\x04\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 縭
+ 0x7e2e: "\x05\x05\x04\x04\x04\x04\x04\x04\x05\x03\x02\x01\x03\x02\x05\x01\x01", // 縮
+ 0x7e2f: "\x05\x05\x04\x04\x04\x04\x04\x04\x05\x01\x02\x05\x01\x02\x01\x03\x04", // 縯
+ 0x7e30: "\x05\x05\x04\x04\x04\x04\x03\x03\x02\x02\x01\x02\x01\x02\x01\x03\x04", // 縰
+ 0x7e31: "\x05\x05\x04\x04\x04\x04\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04", // 縱
+ 0x7e32: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 縲
+ 0x7e33: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04", // 縳
+ 0x7e34: "\x05\x05\x04\x04\x04\x04\x04\x01\x05\x05\x04\x04\x05\x03\x01\x01\x02", // 縴
+ 0x7e35: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 縵
+ 0x7e36: "\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04\x05\x05\x04\x02\x03\x04", // 縶
+ 0x7e37: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x04", // 縷
+ 0x7e38: "\x05\x05\x04\x04\x04\x04\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 縸
+ 0x7e39: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 縹
+ 0x7e3a: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 縺
+ 0x7e3b: "\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x05\x05\x04\x02\x03\x04", // 縻
+ 0x7e3c: "\x05\x05\x04\x04\x04\x04\x04\x01\x05\x03\x03\x01\x05\x02\x01\x03\x04", // 縼
+ 0x7e3d: "\x05\x05\x04\x04\x04\x04\x03\x02\x05\x03\x05\x04\x01\x04\x05\x04\x04", // 總
+ 0x7e3e: "\x05\x05\x04\x04\x04\x04\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 績
+ 0x7e3f: "\x05\x05\x04\x04\x04\x04\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 縿
+ 0x7e40: "\x05\x05\x04\x04\x04\x04\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 繀
+ 0x7e41: "\x03\x01\x05\x05\x04\x01\x04\x03\x01\x03\x04\x05\x05\x04\x02\x03\x04", // 繁
+ 0x7e42: "\x05\x05\x04\x04\x04\x04\x04\x01\x05\x05\x04\x04\x01\x03\x04\x01\x02", // 繂
+ 0x7e43: "\x05\x05\x04\x04\x04\x04\x02\x05\x02\x03\x05\x01\x01\x03\x05\x01\x01", // 繃
+ 0x7e44: "\x01\x03\x01\x01\x03\x04\x05\x03\x05\x05\x04\x05\x05\x04\x02\x03\x04", // 繄
+ 0x7e45: "\x05\x05\x04\x04\x04\x04\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 繅
+ 0x7e46: "\x05\x05\x04\x04\x04\x04\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 繆
+ 0x7e47: "\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02\x03\x05\x05\x04\x02\x03\x04", // 繇
+ 0x7e48: "\x05\x05\x04\x04\x04\x04\x05\x01\x05\x05\x04\x02\x05\x01\x02\x01\x04", // 繈
+ 0x7e49: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01\x01\x03\x04\x01\x05\x03\x04", // 繉
+ 0x7e4a: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x02\x02\x04\x03\x01\x05\x03\x04", // 繊
+ 0x7e4b: "\x01\x02\x05\x01\x01\x01\x02\x03\x05\x05\x04\x05\x05\x04\x02\x03\x04", // 繋
+ 0x7e4c: "\x05\x05\x04\x04\x04\x04\x03\x02\x05\x03\x04\x01\x03\x04\x03\x05\x04", // 繌
+ 0x7e4d: "\x05\x05\x04\x04\x04\x04\x05\x01\x01\x02\x04\x03\x01\x03\x04\x03\x02", // 繍
+ 0x7e4e: "\x05\x05\x04\x04\x04\x04\x03\x05\x04\x04\x01\x03\x04\x04\x04\x04\x04\x04", // 繎
+ 0x7e4f: "\x05\x05\x04\x04\x04\x04\x05\x01\x05\x05\x01\x05\x01\x02\x02\x01\x03\x04", // 繏
+ 0x7e50: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x01\x01\x02\x01\x04\x04\x05\x04\x04", // 繐
+ 0x7e51: "\x05\x05\x04\x04\x04\x04\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 繑
+ 0x7e52: "\x05\x05\x04\x04\x04\x04\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 繒
+ 0x7e53: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01\x01\x02\x02\x01\x01\x01\x05\x04", // 繓
+ 0x7e54: "\x05\x05\x04\x04\x04\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05\x03\x04", // 織
+ 0x7e55: "\x05\x05\x04\x04\x04\x04\x04\x03\x01\x01\x01\x02\x04\x03\x01\x02\x05\x01", // 繕
+ 0x7e56: "\x05\x05\x04\x04\x04\x04\x01\x02\x02\x01\x02\x05\x01\x01\x03\x01\x03\x04", // 繖
+ 0x7e57: "\x05\x05\x04\x04\x04\x04\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 繗
+ 0x7e58: "\x05\x05\x04\x04\x04\x04\x05\x04\x05\x02\x03\x02\x05\x03\x04\x02\x05\x01", // 繘
+ 0x7e59: "\x05\x05\x04\x04\x04\x04\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 繙
+ 0x7e5a: "\x05\x05\x04\x04\x04\x04\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 繚
+ 0x7e5b: "\x01\x01\x02\x01\x05\x05\x04\x02\x03\x04\x02\x01\x02\x05\x01\x01\x01\x02", // 繛
+ 0x7e5c: "\x05\x05\x04\x04\x04\x04\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x02\x04", // 繜
+ 0x7e5d: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01\x02\x05\x01\x01\x03\x05\x01\x01", // 繝
+ 0x7e5e: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 繞
+ 0x7e5f: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 繟
+ 0x7e60: "\x04\x05\x04\x04\x04\x05\x04\x04\x04\x05\x04\x04\x05\x05\x04\x02\x03\x04", // 繠
+ 0x7e61: "\x05\x05\x04\x04\x04\x04\x05\x01\x01\x02\x03\x02\x01\x01\x05\x05\x02\x01\x02", // 繡
+ 0x7e62: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 繢
+ 0x7e63: "\x05\x05\x04\x04\x04\x04\x05\x01\x01\x02\x01\x01\x02\x05\x01\x02\x01\x01", // 繣
+ 0x7e64: "\x01\x02\x02\x02\x05\x01\x01\x01\x01\x03\x04\x05\x05\x04\x02\x03\x04", // 繤
+ 0x7e65: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01", // 繥
+ 0x7e66: "\x05\x05\x04\x04\x04\x04\x05\x01\x05\x02\x05\x01\x02\x05\x01\x02\x01\x04", // 繦
+ 0x7e67: "\x05\x05\x04\x04\x04\x04\x01\x04\x05\x02\x04\x04\x04\x04\x01\x01\x05\x04", // 繧
+ 0x7e68: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x04\x03\x01\x01\x01\x02\x04\x05\x04", // 繨
+ 0x7e69: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01\x02\x05\x01\x02\x01\x01\x05\x01\x01", // 繩
+ 0x7e6a: "\x05\x05\x04\x04\x04\x04\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 繪
+ 0x7e6b: "\x01\x02\x05\x01\x01\x01\x02\x05\x02\x03\x05\x05\x04\x05\x05\x04\x02\x03\x04", // 繫
+ 0x7e6c: "\x05\x05\x04\x04\x04\x04\x01\x02\x03\x04\x03\x04\x01\x02\x05\x02\x05\x01\x01", // 繬
+ 0x7e6d: "\x01\x02\x02\x02\x05\x02\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x01\x04", // 繭
+ 0x7e6e: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x01\x01", // 繮
+ 0x7e6f: "\x05\x05\x04\x04\x04\x04\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 繯
+ 0x7e70: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 繰
+ 0x7e71: "\x05\x05\x04\x04\x04\x04\x01\x02\x02\x03\x05\x03\x03\x04\x04\x05\x04\x04", // 繱
+ 0x7e72: "\x05\x05\x04\x04\x04\x04\x03\x05\x03\x05\x01\x01\x02\x05\x03\x03\x01\x01\x02", // 繲
+ 0x7e73: "\x05\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x03\x04", // 繳
+ 0x7e74: "\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x05\x05\x04\x02\x03\x04", // 繴
+ 0x7e75: "\x05\x05\x04\x04\x04\x04\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 繵
+ 0x7e76: "\x05\x05\x04\x04\x04\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 繶
+ 0x7e77: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x02\x01\x01\x03\x01\x01\x05\x03\x04", // 繷
+ 0x7e78: "\x05\x05\x04\x04\x04\x04\x04\x03\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 繸
+ 0x7e79: "\x05\x05\x04\x04\x04\x04\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 繹
+ 0x7e7a: "\x05\x05\x04\x04\x04\x04\x03\x05\x05\x01\x01\x03\x01\x03\x04\x04\x04\x04\x04", // 繺
+ 0x7e7b: "\x05\x05\x04\x04\x04\x04\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02", // 繻
+ 0x7e7c: "\x05\x05\x04\x04\x04\x04\x05\x05\x04\x05\x05\x04\x01\x05\x05\x04\x05\x05\x04\x05", // 繼
+ 0x7e7d: "\x05\x05\x04\x04\x04\x04\x04\x04\x05\x01\x02\x03\x03\x02\x05\x01\x01\x01\x03\x04", // 繽
+ 0x7e7e: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x01\x02\x05\x01\x05\x01\x04\x05\x04", // 繾
+ 0x7e7f: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01", // 繿
+ 0x7e80: "\x05\x05\x04\x04\x04\x04\x03\x02\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 纀
+ 0x7e81: "\x05\x05\x04\x04\x04\x04\x03\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 纁
+ 0x7e82: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x01\x03\x04\x05\x05\x04\x02\x03\x04", // 纂
+ 0x7e83: "\x05\x05\x04\x04\x04\x04\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01", // 纃
+ 0x7e84: "\x05\x05\x04\x04\x04\x04\x01\x02\x02\x03\x05\x04\x01\x01\x01\x02\x04\x05\x04", // 纄
+ 0x7e85: "\x05\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x03\x04", // 纅
+ 0x7e86: "\x05\x05\x04\x04\x04\x04\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x01", // 纆
+ 0x7e87: "\x04\x03\x01\x02\x03\x04\x05\x05\x04\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 纇
+ 0x7e88: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 纈
+ 0x7e89: "\x05\x05\x04\x04\x04\x04\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 纉
+ 0x7e8a: "\x05\x05\x04\x04\x04\x04\x04\x01\x03\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 纊
+ 0x7e8b: "\x05\x05\x04\x04\x04\x04\x01\x03\x02\x05\x01\x01\x04\x05\x04\x05\x04\x04\x03\x05\x04", // 纋
+ 0x7e8c: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 續
+ 0x7e8d: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 纍
+ 0x7e8e: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 纎
+ 0x7e8f: "\x05\x05\x04\x04\x04\x04\x04\x01\x03\x02\x05\x01\x01\x02\x01\x01\x03\x04\x01\x02\x01", // 纏
+ 0x7e90: "\x05\x05\x04\x04\x04\x04\x04\x01\x03\x04\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 纐
+ 0x7e91: "\x05\x05\x04\x04\x04\x04\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 纑
+ 0x7e92: "\x05\x05\x04\x04\x04\x04\x01\x03\x02\x05\x01\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x01", // 纒
+ 0x7e93: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x05\x03\x01", // 纓
+ 0x7e94: "\x05\x05\x04\x04\x04\x04\x03\x05\x02\x05\x01\x01\x05\x03\x05\x03\x05\x02\x05\x01\x03\x05\x04", // 纔
+ 0x7e95: "\x05\x05\x04\x04\x04\x04\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 纕
+ 0x7e96: "\x05\x05\x04\x04\x04\x04\x03\x04\x03\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 纖
+ 0x7e97: "\x05\x05\x04\x04\x04\x04\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x03\x04\x02\x05\x01", // 纗
+ 0x7e98: "\x05\x05\x04\x04\x04\x04\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 纘
+ 0x7e99: "\x05\x05\x04\x04\x04\x04\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 纙
+ 0x7e9a: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x04\x01\x02\x05\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 纚
+ 0x7e9b: "\x01\x01\x02\x01\x05\x05\x02\x01\x02\x05\x01\x01\x01\x01\x02\x03\x04\x03\x05\x05\x04\x02\x03\x04", // 纛
+ 0x7e9c: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 纜
+ 0x7e9d: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 纝
+ 0x7e9e: "\x05\x05\x04\x04\x04\x04\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x04\x05\x04\x04", // 纞
+ 0x7e9f: "\x05\x05\x01", // 纟
+ 0x7ea0: "\x05\x05\x01\x05\x02", // 纠
+ 0x7ea1: "\x05\x05\x01\x01\x01\x02", // 纡
+ 0x7ea2: "\x05\x05\x01\x01\x02\x01", // 红
+ 0x7ea3: "\x05\x05\x01\x01\x02\x04", // 纣
+ 0x7ea4: "\x05\x05\x01\x03\x01\x02", // 纤
+ 0x7ea5: "\x05\x05\x01\x03\x01\x05", // 纥
+ 0x7ea6: "\x05\x05\x01\x03\x05\x04", // 约
+ 0x7ea7: "\x05\x05\x01\x03\x05\x04", // 级
+ 0x7ea8: "\x05\x05\x01\x03\x05\x04", // 纨
+ 0x7ea9: "\x05\x05\x01\x04\x01\x03", // 纩
+ 0x7eaa: "\x05\x05\x01\x05\x01\x05", // 纪
+ 0x7eab: "\x05\x05\x01\x05\x03\x04", // 纫
+ 0x7eac: "\x05\x05\x01\x01\x01\x05\x02", // 纬
+ 0x7ead: "\x05\x05\x01\x01\x01\x05\x04", // 纭
+ 0x7eae: "\x05\x05\x01\x01\x03\x05\x04", // 纮
+ 0x7eaf: "\x05\x05\x01\x01\x05\x02\x05", // 纯
+ 0x7eb0: "\x05\x05\x01\x01\x05\x03\x05", // 纰
+ 0x7eb1: "\x05\x05\x01\x02\x03\x04\x03", // 纱
+ 0x7eb2: "\x05\x05\x01\x02\x05\x03\x04", // 纲
+ 0x7eb3: "\x05\x05\x01\x02\x05\x03\x04", // 纳
+ 0x7eb4: "\x05\x05\x01\x03\x01\x02\x01", // 纴
+ 0x7eb5: "\x05\x05\x01\x03\x04\x03\x04", // 纵
+ 0x7eb6: "\x05\x05\x01\x03\x04\x03\x05", // 纶
+ 0x7eb7: "\x05\x05\x01\x03\x04\x05\x03", // 纷
+ 0x7eb8: "\x05\x05\x01\x03\x05\x01\x05", // 纸
+ 0x7eb9: "\x05\x05\x01\x04\x01\x03\x04", // 纹
+ 0x7eba: "\x05\x05\x01\x04\x01\x05\x03", // 纺
+ 0x7ebb: "\x05\x05\x01\x04\x04\x05\x01", // 纻
+ 0x7ebc: "\x05\x05\x01\x05\x01\x05\x02", // 纼
+ 0x7ebd: "\x05\x05\x01\x05\x02\x01\x01", // 纽
+ 0x7ebe: "\x05\x05\x01\x05\x04\x05\x02", // 纾
+ 0x7ebf: "\x05\x05\x01\x01\x01\x05\x03\x04", // 线
+ 0x7ec0: "\x05\x05\x01\x01\x02\x02\x01\x01", // 绀
+ 0x7ec1: "\x05\x05\x01\x01\x02\x02\x01\x05", // 绁
+ 0x7ec2: "\x05\x05\x01\x01\x03\x05\x04\x04", // 绂
+ 0x7ec3: "\x05\x05\x01\x01\x05\x05\x03\x04", // 练
+ 0x7ec4: "\x05\x05\x01\x02\x05\x01\x01\x01", // 组
+ 0x7ec5: "\x05\x05\x01\x02\x05\x01\x01\x02", // 绅
+ 0x7ec6: "\x05\x05\x01\x02\x05\x01\x02\x01", // 细
+ 0x7ec7: "\x05\x05\x01\x02\x05\x01\x03\x04", // 织
+ 0x7ec8: "\x05\x05\x01\x03\x05\x04\x04\x04", // 终
+ 0x7ec9: "\x05\x05\x01\x03\x05\x05\x01\x01", // 绉
+ 0x7eca: "\x05\x05\x01\x04\x03\x01\x01\x02", // 绊
+ 0x7ecb: "\x05\x05\x01\x05\x01\x05\x03\x02", // 绋
+ 0x7ecc: "\x05\x05\x01\x05\x02\x02\x05\x02", // 绌
+ 0x7ecd: "\x05\x05\x01\x05\x03\x02\x05\x01", // 绍
+ 0x7ece: "\x05\x05\x01\x05\x04\x01\x01\x02", // 绎
+ 0x7ecf: "\x05\x05\x01\x05\x04\x01\x02\x01", // 经
+ 0x7ed0: "\x05\x05\x01\x05\x04\x02\x05\x01", // 绐
+ 0x7ed1: "\x05\x05\x01\x01\x01\x01\x03\x05\x02", // 绑
+ 0x7ed2: "\x05\x05\x01\x01\x01\x03\x05\x03\x04", // 绒
+ 0x7ed3: "\x05\x05\x01\x01\x02\x01\x02\x05\x01", // 结
+ 0x7ed4: "\x05\x05\x01\x01\x03\x04\x01\x01\x05", // 绔
+ 0x7ed5: "\x05\x05\x01\x01\x05\x03\x01\x03\x05", // 绕
+ 0x7ed6: "\x05\x05\x01\x01\x05\x04\x01\x02\x01", // 绖
+ 0x7ed7: "\x05\x05\x01\x03\x03\x02\x01\x01\x02", // 绗
+ 0x7ed8: "\x05\x05\x01\x03\x04\x01\x01\x05\x04", // 绘
+ 0x7ed9: "\x05\x05\x01\x03\x04\x01\x02\x05\x01", // 给
+ 0x7eda: "\x05\x05\x01\x03\x05\x02\x05\x01\x01", // 绚
+ 0x7edb: "\x05\x05\x01\x03\x05\x04\x01\x05\x02", // 绛
+ 0x7edc: "\x05\x05\x01\x03\x05\x04\x02\x05\x01", // 络
+ 0x7edd: "\x05\x05\x01\x03\x05\x05\x02\x01\x05", // 绝
+ 0x7ede: "\x05\x05\x01\x04\x01\x03\x04\x03\x04", // 绞
+ 0x7edf: "\x05\x05\x01\x04\x01\x05\x04\x03\x05", // 统
+ 0x7ee0: "\x05\x05\x01\x01\x02\x05\x01\x01\x03\x04", // 绠
+ 0x7ee1: "\x05\x05\x01\x02\x04\x03\x02\x05\x01\x01", // 绡
+ 0x7ee2: "\x05\x05\x01\x02\x05\x01\x02\x05\x01\x01", // 绢
+ 0x7ee3: "\x05\x05\x01\x03\x01\x02\x03\x04\x05\x03", // 绣
+ 0x7ee4: "\x05\x05\x01\x03\x04\x03\x04\x02\x05\x01", // 绤
+ 0x7ee5: "\x05\x05\x01\x03\x04\x04\x03\x05\x03\x01", // 绥
+ 0x7ee6: "\x05\x05\x01\x03\x05\x04\x01\x02\x03\x04", // 绦
+ 0x7ee7: "\x05\x05\x01\x04\x03\x01\x02\x03\x04\x05", // 继
+ 0x7ee8: "\x05\x05\x01\x04\x03\x05\x01\x05\x02\x03", // 绨
+ 0x7ee9: "\x05\x05\x01\x01\x01\x02\x01\x02\x05\x03\x04", // 绩
+ 0x7eea: "\x05\x05\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 绪
+ 0x7eeb: "\x05\x05\x01\x01\x02\x01\x03\x04\x03\x05\x04", // 绫
+ 0x7eec: "\x05\x05\x01\x01\x02\x02\x02\x05\x01\x03\x04", // 绬
+ 0x7eed: "\x05\x05\x01\x01\x02\x05\x04\x04\x01\x03\x04", // 续
+ 0x7eee: "\x05\x05\x01\x01\x03\x04\x01\x02\x05\x01\x02", // 绮
+ 0x7eef: "\x05\x05\x01\x02\x01\x01\x01\x02\x01\x01\x01", // 绯
+ 0x7ef0: "\x05\x05\x01\x02\x01\x02\x05\x01\x01\x01\x02", // 绰
+ 0x7ef1: "\x05\x05\x01\x02\x04\x03\x02\x05\x02\x05\x01", // 绱
+ 0x7ef2: "\x05\x05\x01\x02\x05\x01\x01\x01\x05\x03\x05", // 绲
+ 0x7ef3: "\x05\x05\x01\x02\x05\x01\x02\x05\x01\x01\x05", // 绳
+ 0x7ef4: "\x05\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 维
+ 0x7ef5: "\x05\x05\x01\x03\x02\x05\x01\x01\x02\x05\x02", // 绵
+ 0x7ef6: "\x05\x05\x01\x03\x04\x04\x03\x04\x05\x05\x04", // 绶
+ 0x7ef7: "\x05\x05\x01\x03\x05\x01\x01\x03\x05\x01\x01", // 绷
+ 0x7ef8: "\x05\x05\x01\x03\x05\x01\x02\x01\x02\x05\x01", // 绸
+ 0x7ef9: "\x05\x05\x01\x03\x05\x03\x01\x01\x02\x05\x02", // 绹
+ 0x7efa: "\x05\x05\x01\x03\x05\x04\x02\x04\x02\x05\x01", // 绺
+ 0x7efb: "\x05\x05\x01\x04\x03\x01\x01\x03\x04\x05\x05", // 绻
+ 0x7efc: "\x05\x05\x01\x04\x04\x05\x01\x01\x02\x03\x04", // 综
+ 0x7efd: "\x05\x05\x01\x04\x04\x05\x01\x02\x01\x03\x04", // 绽
+ 0x7efe: "\x05\x05\x01\x04\x04\x05\x02\x05\x01\x05\x01", // 绾
+ 0x7eff: "\x05\x05\x01\x05\x01\x01\x02\x04\x01\x03\x04", // 绿
+ 0x7f00: "\x05\x05\x01\x05\x04\x05\x04\x05\x04\x05\x04", // 缀
+ 0x7f01: "\x05\x05\x01\x05\x05\x05\x02\x05\x01\x02\x01", // 缁
+ 0x7f02: "\x05\x05\x01\x01\x02\x02\x01\x02\x05\x01\x01\x02", // 缂
+ 0x7f03: "\x05\x05\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 缃
+ 0x7f04: "\x05\x05\x01\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 缄
+ 0x7f05: "\x05\x05\x01\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 缅
+ 0x7f06: "\x05\x05\x01\x02\x02\x03\x01\x04\x02\x05\x03\x05", // 缆
+ 0x7f07: "\x05\x05\x01\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 缇
+ 0x7f08: "\x05\x05\x01\x02\x05\x01\x01\x01\x02\x03\x04\x03", // 缈
+ 0x7f09: "\x05\x05\x01\x02\x05\x01\x01\x02\x02\x01\x01\x01", // 缉
+ 0x7f0a: "\x05\x05\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 缊
+ 0x7f0b: "\x05\x05\x01\x02\x05\x01\x02\x01\x02\x05\x03\x04", // 缋
+ 0x7f0c: "\x05\x05\x01\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 缌
+ 0x7f0d: "\x05\x05\x01\x03\x01\x02\x01\x02\x02\x01\x01", // 缍
+ 0x7f0e: "\x05\x05\x01\x03\x02\x01\x01\x01\x03\x05\x05\x04", // 缎
+ 0x7f0f: "\x05\x05\x01\x03\x02\x01\x02\x05\x01\x01\x03\x04", // 缏
+ 0x7f10: "\x05\x05\x01\x03\x02\x05\x01\x01\x02\x05\x03\x04", // 缐
+ 0x7f11: "\x05\x05\x01\x03\x02\x05\x01\x03\x01\x01\x03\x04", // 缑
+ 0x7f12: "\x05\x05\x01\x03\x02\x05\x01\x05\x01\x04\x05\x04", // 缒
+ 0x7f13: "\x05\x05\x01\x03\x04\x04\x03\x01\x01\x03\x05\x04", // 缓
+ 0x7f14: "\x05\x05\x01\x04\x01\x04\x03\x04\x05\x02\x05\x02", // 缔
+ 0x7f15: "\x05\x05\x01\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 缕
+ 0x7f16: "\x05\x05\x01\x04\x05\x01\x03\x02\x05\x01\x02\x02", // 编
+ 0x7f17: "\x05\x05\x01\x05\x01\x05\x01\x05\x02\x05\x01\x01", // 缗
+ 0x7f18: "\x05\x05\x01\x05\x05\x01\x03\x05\x03\x03\x03\x04", // 缘
+ 0x7f19: "\x05\x05\x01\x01\x02\x02\x04\x03\x01\x02\x05\x01\x01", // 缙
+ 0x7f1a: "\x05\x05\x01\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 缚
+ 0x7f1b: "\x05\x05\x01\x01\x03\x01\x01\x05\x03\x04\x01\x02\x04", // 缛
+ 0x7f1c: "\x05\x05\x01\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 缜
+ 0x7f1d: "\x05\x05\x01\x03\x05\x04\x01\x01\x01\x02\x04\x05\x04", // 缝
+ 0x7f1e: "\x05\x05\x01\x04\x01\x02\x05\x01\x01\x03\x05\x03\x04", // 缞
+ 0x7f1f: "\x05\x05\x01\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 缟
+ 0x7f20: "\x05\x05\x01\x04\x01\x03\x02\x05\x01\x01\x02\x01\x01", // 缠
+ 0x7f21: "\x05\x05\x01\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 缡
+ 0x7f22: "\x05\x05\x01\x04\x03\x01\x03\x04\x02\x05\x02\x02\x01", // 缢
+ 0x7f23: "\x05\x05\x01\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 缣
+ 0x7f24: "\x05\x05\x01\x04\x04\x05\x03\x02\x01\x02\x01\x03\x04", // 缤
+ 0x7f25: "\x05\x05\x01\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 缥
+ 0x7f26: "\x05\x05\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 缦
+ 0x7f27: "\x05\x05\x01\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 缧
+ 0x7f28: "\x05\x05\x01\x02\x05\x03\x04\x02\x05\x03\x04\x05\x03\x01", // 缨
+ 0x7f29: "\x05\x05\x01\x04\x04\x05\x03\x02\x01\x03\x02\x05\x01\x01", // 缩
+ 0x7f2a: "\x05\x05\x01\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 缪
+ 0x7f2b: "\x05\x05\x01\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 缫
+ 0x7f2c: "\x05\x05\x01\x01\x02\x01\x02\x05\x01\x01\x03\x02\x05\x03\x04", // 缬
+ 0x7f2d: "\x05\x05\x01\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 缭
+ 0x7f2e: "\x05\x05\x01\x04\x03\x01\x01\x01\x02\x04\x03\x01\x02\x05\x01", // 缮
+ 0x7f2f: "\x05\x05\x01\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 缯
+ 0x7f30: "\x05\x05\x01\x01\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x01\x01", // 缰
+ 0x7f31: "\x05\x05\x01\x02\x05\x01\x02\x01\x02\x05\x01\x05\x01\x04\x05\x04", // 缱
+ 0x7f32: "\x05\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 缲
+ 0x7f33: "\x05\x05\x01\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 缳
+ 0x7f34: "\x05\x05\x01\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x03\x04", // 缴
+ 0x7f35: "\x05\x05\x01\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x03\x04", // 缵
+ 0x7f36: "\x03\x01\x01\x02\x05\x02", // 缶
+ 0x7f37: "\x03\x01\x01\x02\x05\x02\x05\x02", // 缷
+ 0x7f38: "\x03\x01\x01\x02\x05\x02\x01\x02\x01", // 缸
+ 0x7f39: "\x03\x01\x01\x02\x05\x02\x04\x04\x04\x04", // 缹
+ 0x7f3a: "\x03\x01\x01\x02\x05\x02\x05\x01\x03\x04", // 缺
+ 0x7f3b: "\x05\x01\x01\x02\x05\x02\x01\x05\x05\x04", // 缻
+ 0x7f3c: "\x03\x01\x01\x02\x05\x02\x03\x05\x03\x04", // 缼
+ 0x7f3d: "\x03\x01\x01\x02\x05\x02\x01\x02\x03\x04\x01", // 缽
+ 0x7f3e: "\x03\x01\x01\x02\x05\x02\x04\x03\x01\x01\x03\x02", // 缾
+ 0x7f3f: "\x03\x01\x01\x02\x05\x02\x03\x03\x01\x02\x05\x01", // 缿
+ 0x7f40: "\x03\x01\x01\x02\x05\x02\x03\x04\x01\x05\x03\x04", // 罀
+ 0x7f41: "\x03\x01\x01\x02\x05\x02\x02\x05\x04\x03\x01\x02\x05\x02", // 罁
+ 0x7f42: "\x02\x05\x03\x04\x02\x05\x03\x04\x03\x01\x01\x02\x05\x02", // 罂
+ 0x7f43: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x03\x01\x01\x02\x05\x02", // 罃
+ 0x7f44: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04\x03\x01\x01\x02\x05\x02", // 罄
+ 0x7f45: "\x03\x01\x01\x02\x05\x02\x02\x01\x05\x03\x01\x05\x03\x04\x03\x01\x02", // 罅
+ 0x7f46: "\x03\x01\x01\x02\x05\x02\x05\x05\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 罆
+ 0x7f47: "\x03\x01\x01\x02\x05\x02\x04\x03\x01\x02\x05\x03\x04\x01\x01\x01\x02\x04", // 罇
+ 0x7f48: "\x03\x01\x01\x02\x05\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 罈
+ 0x7f49: "\x03\x01\x01\x02\x05\x02\x02\x04\x03\x04\x05\x02\x05\x01\x03\x01\x01\x02", // 罉
+ 0x7f4a: "\x01\x02\x05\x01\x01\x01\x02\x05\x02\x03\x05\x05\x04\x03\x01\x01\x02\x05\x02", // 罊
+ 0x7f4b: "\x04\x01\x05\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01\x03\x01\x01\x02\x05\x02", // 罋
+ 0x7f4c: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x03\x01\x01\x02\x05\x02", // 罌
+ 0x7f4d: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x03\x01\x01\x02\x05\x02", // 罍
+ 0x7f4e: "\x03\x01\x01\x02\x05\x02\x02\x05\x01\x01\x01\x04\x05\x02\x04\x04\x04\x04\x01\x01\x05\x04", // 罎
+ 0x7f4f: "\x03\x01\x01\x02\x05\x02\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 罏
+ 0x7f50: "\x03\x01\x01\x02\x05\x02\x01\x02\x02\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 罐
+ 0x7f51: "\x02\x05\x03\x04\x03\x04", // 网
+ 0x7f52: "\x02\x05\x02\x02\x01", // 罒
+ 0x7f53: "\x02\x05\x03\x04", // 罓
+ 0x7f54: "\x02\x05\x04\x03\x01\x04\x01\x05", // 罔
+ 0x7f55: "\x04\x05\x03\x04\x01\x01\x02", // 罕
+ 0x7f56: "\x02\x05\x02\x02\x01\x03\x04\x04", // 罖
+ 0x7f57: "\x02\x05\x02\x02\x01\x03\x05\x04", // 罗
+ 0x7f58: "\x02\x05\x02\x02\x01\x01\x03\x02\x04", // 罘
+ 0x7f59: "\x04\x05\x03\x04\x01\x02\x03\x04", // 罙
+ 0x7f5a: "\x02\x05\x02\x02\x01\x04\x05\x02\x02", // 罚
+ 0x7f5b: "\x02\x05\x02\x02\x01\x03\x03\x05\x04\x04", // 罛
+ 0x7f5c: "\x02\x05\x02\x02\x01\x04\x01\x01\x02\x01", // 罜
+ 0x7f5d: "\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01", // 罝
+ 0x7f5e: "\x02\x05\x02\x02\x01\x05\x04\x05\x02\x03", // 罞
+ 0x7f5f: "\x02\x05\x02\x02\x01\x01\x02\x02\x05\x01", // 罟
+ 0x7f60: "\x02\x05\x02\x02\x01\x05\x01\x05\x01\x05", // 罠
+ 0x7f61: "\x02\x05\x02\x02\x01\x01\x02\x01\x02\x01", // 罡
+ 0x7f62: "\x02\x05\x02\x02\x01\x01\x02\x01\x05\x04", // 罢
+ 0x7f63: "\x02\x05\x02\x02\x01\x01\x02\x01\x01\x02\x01", // 罣
+ 0x7f64: "\x02\x05\x02\x02\x01\x04\x03\x05\x01\x05\x02\x03", // 罤
+ 0x7f65: "\x02\x05\x02\x02\x01\x02\x05\x01\x02\x05\x01\x01", // 罥
+ 0x7f66: "\x02\x05\x02\x02\x01\x03\x04\x04\x03\x05\x02\x01", // 罦
+ 0x7f67: "\x02\x05\x02\x02\x01\x01\x02\x03\x04\x01\x02\x03\x04", // 罧
+ 0x7f68: "\x02\x05\x02\x02\x01\x01\x03\x04\x02\x05\x01\x01\x05", // 罨
+ 0x7f69: "\x02\x05\x02\x02\x01\x02\x01\x02\x05\x01\x01\x01\x02", // 罩
+ 0x7f6a: "\x02\x05\x02\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01", // 罪
+ 0x7f6b: "\x02\x05\x02\x02\x01\x01\x02\x01\x01\x02\x01\x02\x04", // 罫
+ 0x7f6c: "\x02\x05\x02\x02\x01\x05\x04\x05\x04\x05\x04\x05\x04", // 罬
+ 0x7f6d: "\x02\x05\x02\x02\x01\x01\x02\x05\x01\x01\x05\x03\x04", // 罭
+ 0x7f6e: "\x02\x05\x02\x02\x01\x01\x02\x02\x05\x01\x01\x01\x01", // 置
+ 0x7f6f: "\x02\x05\x02\x02\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 罯
+ 0x7f70: "\x02\x05\x02\x02\x01\x04\x01\x01\x01\x02\x05\x01\x02\x02", // 罰
+ 0x7f71: "\x02\x05\x02\x02\x01\x01\x02\x02\x05\x04\x03\x01\x01\x02", // 罱
+ 0x7f72: "\x02\x05\x02\x02\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 署
+ 0x7f73: "\x02\x05\x02\x02\x01\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 罳
+ 0x7f74: "\x02\x05\x02\x02\x01\x01\x02\x01\x05\x04\x04\x04\x04\x04", // 罴
+ 0x7f75: "\x02\x05\x02\x02\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 罵
+ 0x7f76: "\x02\x05\x02\x02\x01\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 罶
+ 0x7f77: "\x02\x05\x02\x02\x01\x05\x04\x02\x05\x01\x01\x03\x05\x03\x05", // 罷
+ 0x7f78: "\x02\x05\x02\x02\x01\x04\x01\x01\x01\x02\x05\x01\x01\x02\x04", // 罸
+ 0x7f79: "\x02\x05\x02\x02\x01\x04\x04\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 罹
+ 0x7f7a: "\x02\x05\x02\x02\x01\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 罺
+ 0x7f7b: "\x02\x05\x02\x02\x01\x05\x01\x03\x01\x01\x02\x03\x04\x01\x02\x04", // 罻
+ 0x7f7c: "\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02\x02\x01\x01\x02", // 罼
+ 0x7f7d: "\x02\x05\x02\x02\x01\x01\x03\x04\x03\x03\x04\x04\x03\x03\x04\x02\x02", // 罽
+ 0x7f7e: "\x02\x05\x02\x02\x01\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 罾
+ 0x7f7f: "\x02\x05\x02\x02\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 罿
+ 0x7f80: "\x02\x05\x03\x04\x03\x04\x01\x02\x02\x01\x05\x05\x01\x02\x05\x01\x02\x01", // 羀
+ 0x7f81: "\x02\x05\x02\x02\x01\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x05\x01", // 羁
+ 0x7f82: "\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x01", // 羂
+ 0x7f83: "\x02\x05\x02\x02\x01\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04\x02\x05\x02", // 羃
+ 0x7f84: "\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x02\x01\x02\x05\x01\x01\x01\x02", // 羄
+ 0x7f85: "\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 羅
+ 0x7f86: "\x02\x05\x02\x02\x01\x05\x04\x02\x05\x01\x01\x03\x05\x03\x05\x04\x04\x04\x04", // 羆
+ 0x7f87: "\x02\x05\x02\x02\x01\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x03\x04\x01\x02\x05\x01\x02", // 羇
+ 0x7f88: "\x02\x05\x02\x02\x01\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 羈
+ 0x7f89: "\x02\x05\x02\x02\x01\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x02\x03\x04", // 羉
+ 0x7f8a: "\x04\x03\x01\x01\x01\x02", // 羊
+ 0x7f8b: "\x01\x02\x01\x02\x01\x01\x01\x02", // 羋
+ 0x7f8c: "\x04\x03\x01\x01\x01\x03\x05", // 羌
+ 0x7f8d: "\x01\x03\x04\x04\x03\x01\x01\x01\x02", // 羍
+ 0x7f8e: "\x04\x03\x01\x01\x02\x01\x01\x03\x04", // 美
+ 0x7f8f: "\x04\x03\x01\x01\x01\x03\x03\x03\x03", // 羏
+ 0x7f90: "\x02\x01\x02\x01\x01\x02\x01\x03\x05\x04", // 羐
+ 0x7f91: "\x04\x03\x01\x01\x02\x01\x03\x05\x04", // 羑
+ 0x7f92: "\x04\x03\x01\x01\x01\x03\x03\x04\x05\x03", // 羒
+ 0x7f93: "\x04\x03\x01\x01\x01\x03\x05\x02\x01\x05", // 羓
+ 0x7f94: "\x04\x03\x01\x01\x02\x01\x04\x04\x04\x04", // 羔
+ 0x7f95: "\x04\x03\x01\x01\x02\x01\x04\x05\x05\x03\x04", // 羕
+ 0x7f96: "\x04\x03\x01\x01\x01\x03\x03\x05\x05\x04", // 羖
+ 0x7f97: "\x04\x03\x01\x01\x01\x03\x05\x05\x04", // 羗
+ 0x7f98: "\x03\x05\x01\x01\x04\x03\x01\x01\x01\x02", // 羘
+ 0x7f99: "\x04\x03\x01\x01\x02\x01\x04\x03\x03\x04", // 羙
+ 0x7f9a: "\x04\x03\x01\x01\x01\x03\x03\x04\x04\x05\x04", // 羚
+ 0x7f9b: "\x04\x03\x01\x01\x02\x01\x05\x01\x05\x03\x02", // 羛
+ 0x7f9c: "\x04\x03\x01\x01\x01\x03\x04\x04\x05\x01\x02", // 羜
+ 0x7f9d: "\x04\x03\x01\x01\x01\x03\x03\x05\x01\x05\x04", // 羝
+ 0x7f9e: "\x04\x03\x01\x01\x01\x03\x05\x02\x01\x01", // 羞
+ 0x7f9f: "\x04\x03\x01\x01\x01\x03\x05\x04\x01\x02\x01", // 羟
+ 0x7fa0: "\x04\x03\x01\x01\x01\x03\x01\x05\x01\x05\x03\x04", // 羠
+ 0x7fa1: "\x04\x03\x01\x01\x02\x01\x04\x01\x03\x05\x03\x04", // 羡
+ 0x7fa2: "\x04\x03\x01\x01\x01\x03\x01\x01\x03\x05\x03\x04", // 羢
+ 0x7fa3: "\x05\x01\x01\x03\x02\x05\x01\x04\x03\x01\x01\x01\x02", // 羣
+ 0x7fa4: "\x05\x01\x01\x03\x02\x05\x01\x04\x03\x01\x01\x01\x02", // 群
+ 0x7fa5: "\x04\x03\x01\x01\x01\x03\x01\x05\x05\x05\x01\x02\x01", // 羥
+ 0x7fa6: "\x04\x03\x01\x01\x01\x03\x04\x04\x05\x01\x01\x03\x05", // 羦
+ 0x7fa7: "\x04\x03\x01\x01\x01\x03\x05\x04\x03\x04\x03\x05\x04", // 羧
+ 0x7fa8: "\x04\x03\x01\x01\x02\x01\x04\x04\x01\x03\x05\x03\x04", // 羨
+ 0x7fa9: "\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01\x05\x03\x04", // 義
+ 0x7faa: "\x04\x03\x01\x01\x01\x03\x04\x05\x01\x01\x05\x03\x04", // 羪
+ 0x7fab: "\x04\x03\x01\x01\x01\x03\x04\x04\x05\x03\x04\x01\x02\x01", // 羫
+ 0x7fac: "\x04\x03\x01\x01\x01\x03\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 羬
+ 0x7fad: "\x04\x03\x01\x01\x01\x03\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 羭
+ 0x7fae: "\x04\x03\x01\x01\x02\x01\x04\x04\x04\x04\x01\x01\x01\x03\x04", // 羮
+ 0x7faf: "\x04\x03\x01\x01\x01\x03\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 羯
+ 0x7fb0: "\x04\x03\x01\x01\x01\x03\x02\x05\x02\x01\x03\x04\x03\x03\x04", // 羰
+ 0x7fb1: "\x04\x03\x01\x01\x01\x03\x01\x03\x03\x02\x05\x01\x01\x02\x03\x04", // 羱
+ 0x7fb2: "\x04\x03\x01\x01\x02\x01\x03\x01\x02\x03\x04\x01\x05\x05\x03\x04", // 羲
+ 0x7fb3: "\x04\x03\x01\x01\x01\x03\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 羳
+ 0x7fb4: "\x04\x03\x01\x01\x01\x02\x04\x03\x01\x01\x01\x03\x04\x03\x01\x01\x01\x02", // 羴
+ 0x7fb5: "\x04\x03\x01\x01\x01\x03\x01\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 羵
+ 0x7fb6: "\x04\x03\x01\x01\x01\x03\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 羶
+ 0x7fb7: "\x04\x03\x01\x01\x01\x03\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 羷
+ 0x7fb8: "\x04\x01\x05\x02\x05\x01\x03\x05\x01\x01\x04\x03\x01\x01\x01\x02\x03\x05\x04", // 羸
+ 0x7fb9: "\x04\x03\x01\x01\x02\x01\x04\x04\x04\x04\x04\x03\x01\x01\x02\x01\x01\x03\x04", // 羹
+ 0x7fba: "\x04\x03\x01\x01\x01\x03\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02", // 羺
+ 0x7fbb: "\x04\x03\x01\x01\x01\x03\x04\x01\x03\x05\x02\x02\x01\x05\x04\x05\x04\x04\x03\x05\x04", // 羻
+ 0x7fbc: "\x05\x01\x03\x04\x03\x01\x01\x01\x02\x04\x03\x01\x01\x01\x03\x04\x03\x01\x01\x01\x02", // 羼
+ 0x7fbd: "\x05\x04\x01\x05\x04\x01", // 羽
+ 0x7fbe: "\x05\x04\x01\x05\x04\x01\x01\x02\x01", // 羾
+ 0x7fbf: "\x05\x04\x01\x05\x04\x01\x01\x03\x02", // 羿
+ 0x7fc0: "\x05\x04\x01\x05\x04\x01\x02\x05\x01\x02", // 翀
+ 0x7fc1: "\x03\x04\x05\x04\x05\x04\x01\x05\x04\x01", // 翁
+ 0x7fc2: "\x05\x04\x01\x05\x04\x01\x03\x04\x05\x03", // 翂
+ 0x7fc3: "\x01\x03\x05\x04\x05\x04\x01\x05\x04\x01", // 翃
+ 0x7fc4: "\x05\x04\x01\x05\x04\x01\x01\x02\x05\x04", // 翄
+ 0x7fc5: "\x01\x02\x05\x04\x05\x04\x01\x05\x04\x01", // 翅
+ 0x7fc6: "\x05\x04\x01\x05\x04\x01\x03\x05\x01\x02", // 翆
+ 0x7fc7: "\x05\x04\x01\x05\x04\x01\x01\x03\x05\x04\x04", // 翇
+ 0x7fc8: "\x02\x05\x01\x01\x02\x05\x04\x01\x05\x04\x01", // 翈
+ 0x7fc9: "\x01\x02\x03\x04\x01\x05\x04\x01\x05\x04\x01", // 翉
+ 0x7fca: "\x04\x01\x04\x03\x01\x05\x04\x01\x05\x04\x01", // 翊
+ 0x7fcb: "\x05\x04\x01\x05\x04\x01\x04\x01\x04\x03\x01", // 翋
+ 0x7fcc: "\x05\x04\x01\x05\x04\x01\x04\x01\x04\x03\x01", // 翌
+ 0x7fcd: "\x05\x04\x01\x05\x04\x01\x05\x03\x02\x05\x04", // 翍
+ 0x7fce: "\x03\x04\x04\x05\x04\x05\x04\x01\x05\x04\x01", // 翎
+ 0x7fcf: "\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 翏
+ 0x7fd0: "\x05\x04\x01\x05\x04\x01\x03\x01\x01\x03\x04", // 翐
+ 0x7fd1: "\x05\x04\x01\x05\x04\x01\x03\x05\x02\x05\x01", // 翑
+ 0x7fd2: "\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01", // 習
+ 0x7fd3: "\x01\x02\x01\x02\x05\x01\x05\x04\x01\x05\x04\x01", // 翓
+ 0x7fd4: "\x04\x03\x01\x01\x01\x03\x05\x04\x01\x05\x04\x01", // 翔
+ 0x7fd5: "\x03\x04\x01\x02\x05\x01\x05\x04\x01\x05\x04\x01", // 翕
+ 0x7fd6: "\x03\x04\x01\x02\x05\x01\x05\x04\x01\x05\x04\x01", // 翖
+ 0x7fd7: "\x03\x05\x04\x03\x05\x05\x05\x04\x01\x05\x04\x01", // 翗
+ 0x7fd8: "\x01\x05\x03\x01\x03\x05\x05\x04\x01\x05\x04\x01", // 翘
+ 0x7fd9: "\x02\x05\x02\x03\x05\x04\x05\x04\x01\x05\x04\x01", // 翙
+ 0x7fda: "\x05\x04\x01\x05\x04\x01\x04\x05\x01\x05\x01\x02", // 翚
+ 0x7fdb: "\x03\x02\x02\x03\x05\x04\x05\x04\x01\x05\x04\x01", // 翛
+ 0x7fdc: "\x05\x04\x01\x05\x04\x01\x01\x03\x04\x03\x04\x03\x04", // 翜
+ 0x7fdd: "\x04\x04\x05\x01\x03\x05\x04\x05\x04\x01\x05\x04\x01", // 翝
+ 0x7fde: "\x05\x04\x01\x05\x04\x01\x04\x01\x02\x05\x01\x02\x03\x04", // 翞
+ 0x7fdf: "\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 翟
+ 0x7fe0: "\x05\x04\x01\x05\x04\x01\x04\x01\x03\x04\x03\x04\x01\x02", // 翠
+ 0x7fe1: "\x02\x01\x01\x01\x02\x01\x01\x01\x05\x04\x01\x05\x04\x01", // 翡
+ 0x7fe2: "\x03\x05\x01\x02\x01\x02\x05\x01\x05\x04\x01\x05\x04\x01", // 翢
+ 0x7fe3: "\x05\x04\x01\x05\x04\x01\x04\x01\x04\x03\x01\x05\x03\x01", // 翣
+ 0x7fe4: "\x02\x05\x01\x02\x05\x01\x02\x02\x05\x04\x01\x05\x04\x01", // 翤
+ 0x7fe5: "\x01\x02\x01\x03\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 翥
+ 0x7fe6: "\x04\x03\x01\x02\x05\x01\x01\x02\x02\x05\x04\x01\x05\x04\x01", // 翦
+ 0x7fe7: "\x04\x04\x05\x01\x02\x05\x01\x01\x01\x05\x04\x01\x05\x04\x01", // 翧
+ 0x7fe8: "\x05\x04\x01\x05\x04\x01\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 翨
+ 0x7fe9: "\x04\x05\x01\x03\x02\x05\x01\x02\x02\x05\x04\x01\x05\x04\x01", // 翩
+ 0x7fea: "\x05\x04\x01\x05\x04\x01\x03\x04\x05\x02\x03\x04\x03\x05\x04", // 翪
+ 0x7feb: "\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01\x01\x01\x03\x05", // 翫
+ 0x7fec: "\x05\x04\x01\x05\x04\x01\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 翬
+ 0x7fed: "\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x03\x01\x01\x03\x04", // 翭
+ 0x7fee: "\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x05\x04\x01\x05\x04\x01", // 翮
+ 0x7fef: "\x05\x04\x01\x05\x04\x01\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 翯
+ 0x7ff0: "\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04\x05\x04\x01\x05\x04\x01", // 翰
+ 0x7ff1: "\x03\x02\x05\x01\x01\x01\x03\x04\x01\x02\x05\x04\x01\x05\x04\x01", // 翱
+ 0x7ff2: "\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04\x05\x04\x01\x05\x04\x01", // 翲
+ 0x7ff3: "\x01\x03\x01\x01\x03\x04\x05\x03\x05\x05\x04\x05\x04\x01\x05\x04\x01", // 翳
+ 0x7ff4: "\x05\x04\x01\x05\x04\x01\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 翴
+ 0x7ff5: "\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 翵
+ 0x7ff6: "\x03\x02\x05\x01\x01\x04\x01\x03\x04\x01\x02\x05\x04\x01\x05\x04\x01", // 翶
+ 0x7ff7: "\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02\x05\x04\x01\x05\x04\x01", // 翷
+ 0x7ff8: "\x01\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04\x05\x04\x01\x05\x04\x01", // 翸
+ 0x7ff9: "\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05\x05\x04\x01\x05\x04\x01", // 翹
+ 0x7ffa: "\x03\x02\x05\x01\x01\x01\x04\x01\x03\x04\x01\x02\x05\x04\x01\x05\x04\x01", // 翺
+ 0x7ffb: "\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x05\x04\x01\x05\x04\x01", // 翻
+ 0x7ffc: "\x05\x04\x01\x05\x04\x01\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 翼
+ 0x7ffd: "\x02\x01\x02\x01\x01\x03\x01\x02\x03\x03\x05\x03\x04\x05\x04\x01\x05\x04\x01", // 翽
+ 0x7ffe: "\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04\x05\x04\x01\x05\x04\x01", // 翾
+ 0x7fff: "\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04\x05\x04\x01\x05\x04\x01", // 翿
+ 0x8000: "\x02\x04\x03\x01\x03\x05\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 耀
+ 0x8001: "\x01\x02\x01\x03\x03\x05", // 老
+ 0x8002: "\x01\x02\x01\x03", // 耂
+ 0x8003: "\x01\x02\x01\x03\x01\x05", // 考
+ 0x8004: "\x01\x02\x01\x03\x03\x05\x03\x01\x01\x05", // 耄
+ 0x8005: "\x01\x02\x01\x03\x02\x05\x01\x01", // 者
+ 0x8006: "\x01\x02\x01\x03\x03\x05\x02\x05\x01\x01", // 耆
+ 0x8007: "\x01\x02\x01\x03\x03\x05\x02\x05\x01", // 耇
+ 0x8008: "\x01\x02\x01\x03\x03\x05\x03\x05\x02\x05\x01", // 耈
+ 0x8009: "\x01\x02\x01\x03\x03\x05\x02\x05\x01", // 耉
+ 0x800a: "\x01\x02\x01\x03\x01\x05\x04\x01\x02\x01", // 耊
+ 0x800b: "\x01\x02\x01\x03\x03\x05\x01\x05\x04\x01\x02\x01", // 耋
+ 0x800c: "\x01\x03\x02\x05\x02\x02", // 而
+ 0x800d: "\x01\x03\x02\x05\x02\x02\x05\x01\x03", // 耍
+ 0x800e: "\x01\x03\x02\x05\x02\x02\x01\x03\x04", // 耎
+ 0x800f: "\x01\x03\x02\x05\x02\x02\x03\x03\x03", // 耏
+ 0x8010: "\x01\x03\x02\x05\x02\x02\x01\x02\x04", // 耐
+ 0x8011: "\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 耑
+ 0x8012: "\x01\x01\x01\x02\x03\x04", // 耒
+ 0x8013: "\x01\x01\x01\x02\x03\x04\x01\x02", // 耓
+ 0x8014: "\x01\x01\x01\x02\x03\x04\x05\x02\x01", // 耔
+ 0x8015: "\x01\x01\x01\x02\x03\x04\x01\x01\x03\x02", // 耕
+ 0x8016: "\x01\x01\x01\x02\x03\x04\x02\x03\x04\x03", // 耖
+ 0x8017: "\x01\x01\x01\x02\x03\x04\x03\x01\x01\x05", // 耗
+ 0x8018: "\x01\x01\x01\x02\x03\x04\x01\x01\x05\x04", // 耘
+ 0x8019: "\x01\x01\x01\x02\x03\x04\x05\x02\x01\x05", // 耙
+ 0x801a: "\x01\x01\x01\x02\x03\x04\x05\x03\x02\x05\x04", // 耚
+ 0x801b: "\x01\x01\x01\x02\x03\x04\x05\x04\x02\x05\x01", // 耛
+ 0x801c: "\x01\x01\x01\x02\x03\x04\x02\x05\x01\x05\x01", // 耜
+ 0x801d: "\x01\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 耝
+ 0x801e: "\x01\x01\x01\x02\x03\x04\x05\x03\x02\x05\x01", // 耞
+ 0x801f: "\x01\x01\x01\x02\x03\x04\x01\x05\x01\x05", // 耟
+ 0x8020: "\x01\x01\x01\x02\x03\x04\x03\x04\x01\x02\x05\x01", // 耠
+ 0x8021: "\x01\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01\x05\x03", // 耡
+ 0x8022: "\x01\x01\x01\x02\x03\x04\x01\x02\x02\x04\x05\x05\x03", // 耢
+ 0x8023: "\x01\x01\x01\x02\x03\x04\x03\x04\x01\x02\x05\x01\x02\x02", // 耣
+ 0x8024: "\x01\x01\x01\x02\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01", // 耤
+ 0x8025: "\x01\x01\x01\x02\x03\x04\x02\x04\x03\x02\x05\x02\x05\x01", // 耥
+ 0x8026: "\x01\x01\x01\x02\x03\x04\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 耦
+ 0x8027: "\x01\x01\x01\x02\x03\x04\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 耧
+ 0x8028: "\x01\x01\x01\x02\x03\x04\x01\x03\x01\x01\x05\x03\x04\x01\x02\x04", // 耨
+ 0x8029: "\x01\x01\x01\x02\x03\x04\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01", // 耩
+ 0x802a: "\x01\x01\x01\x02\x03\x04\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03", // 耪
+ 0x802b: "\x01\x01\x01\x02\x03\x04\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 耫
+ 0x802c: "\x01\x01\x01\x02\x03\x04\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 耬
+ 0x802d: "\x01\x01\x01\x02\x03\x04\x05\x05\x04\x05\x05\x04\x01\x03\x04\x05\x03\x04", // 耭
+ 0x802e: "\x01\x01\x01\x02\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x05\x03", // 耮
+ 0x802f: "\x01\x01\x01\x02\x03\x04\x01\x02\x02\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 耯
+ 0x8030: "\x01\x01\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x04\x05\x04\x05\x04\x04\x03\x05\x04", // 耰
+ 0x8031: "\x01\x01\x01\x02\x03\x04\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x01\x03\x02\x05\x01", // 耱
+ 0x8032: "\x01\x01\x01\x02\x03\x04\x04\x01\x02\x05\x02\x02\x01\x02\x04\x01\x03\x04\x03\x05\x03\x04", // 耲
+ 0x8033: "\x01\x02\x02\x01\x01\x01", // 耳
+ 0x8034: "\x01\x02\x02\x01\x01\x01\x05", // 耴
+ 0x8035: "\x01\x02\x02\x01\x01\x01\x01\x02", // 耵
+ 0x8036: "\x01\x02\x02\x01\x01\x01\x05\x02", // 耶
+ 0x8037: "\x01\x03\x04\x01\x02\x02\x01\x01\x01", // 耷
+ 0x8038: "\x03\x04\x03\x04\x01\x02\x02\x01\x01\x01", // 耸
+ 0x8039: "\x01\x02\x02\x01\x01\x01\x03\x04\x04\x05", // 耹
+ 0x803a: "\x01\x02\x02\x01\x01\x01\x01\x01\x05\x04", // 耺
+ 0x803b: "\x01\x02\x02\x01\x01\x01\x02\x01\x02\x01", // 耻
+ 0x803c: "\x01\x02\x02\x01\x01\x01\x02\x05\x01\x01", // 耼
+ 0x803d: "\x01\x02\x02\x01\x01\x01\x04\x05\x03\x05", // 耽
+ 0x803e: "\x01\x02\x02\x01\x01\x01\x01\x03\x05\x04", // 耾
+ 0x803f: "\x01\x02\x02\x01\x01\x01\x04\x03\x03\x04", // 耿
+ 0x8040: "\x01\x02\x02\x01\x01\x01\x01\x05\x03\x05", // 聀
+ 0x8041: "\x01\x02\x02\x01\x01\x01\x03\x04\x05\x03", // 聁
+ 0x8042: "\x01\x02\x02\x01\x01\x01\x05\x04\x05\x04", // 聂
+ 0x8043: "\x01\x02\x02\x01\x01\x01\x02\x05\x02\x01\x01", // 聃
+ 0x8044: "\x01\x02\x02\x01\x01\x01\x03\x04\x03\x03\x03", // 聄
+ 0x8045: "\x01\x02\x02\x01\x01\x01\x03\x01\x01\x03\x04", // 聅
+ 0x8046: "\x01\x02\x02\x01\x01\x01\x03\x04\x04\x05\x04", // 聆
+ 0x8047: "\x01\x02\x02\x01\x01\x01\x01\x02\x01\x02\x01", // 聇
+ 0x8048: "\x01\x02\x02\x01\x01\x01\x05\x05\x04\x05\x03", // 聈
+ 0x8049: "\x01\x02\x02\x01\x01\x01\x05\x02\x02\x05\x02", // 聉
+ 0x804a: "\x01\x02\x02\x01\x01\x01\x03\x05\x03\x05\x02", // 聊
+ 0x804b: "\x01\x03\x05\x03\x04\x01\x02\x02\x01\x01\x01", // 聋
+ 0x804c: "\x01\x02\x02\x01\x01\x01\x02\x05\x01\x03\x04", // 职
+ 0x804d: "\x01\x02\x02\x01\x01\x01\x04\x04\x05\x01\x02", // 聍
+ 0x804e: "\x01\x02\x02\x01\x01\x01\x03\x04\x01\x05\x03\x04", // 聎
+ 0x804f: "\x01\x02\x02\x01\x01\x01\x01\x03\x02\x05\x02\x02", // 聏
+ 0x8050: "\x01\x02\x02\x01\x01\x01\x01\x02\x01\x02\x05\x01", // 聐
+ 0x8051: "\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01", // 聑
+ 0x8052: "\x01\x02\x02\x01\x01\x01\x03\x01\x02\x02\x05\x01", // 聒
+ 0x8053: "\x01\x02\x01\x03\x05\x04\x01\x02\x02\x01\x01\x01", // 聓
+ 0x8054: "\x01\x02\x02\x01\x01\x01\x04\x03\x01\x01\x03\x04", // 联
+ 0x8055: "\x01\x02\x02\x01\x01\x01\x03\x01\x02\x01\x02\x05\x01", // 聕
+ 0x8056: "\x01\x02\x02\x01\x01\x01\x02\x05\x01\x01\x01\x02\x01", // 聖
+ 0x8057: "\x01\x02\x02\x01\x01\x01\x01\x03\x04\x03\x04\x03\x04", // 聗
+ 0x8058: "\x01\x02\x02\x01\x01\x01\x02\x05\x01\x02\x01\x01\x05", // 聘
+ 0x8059: "\x01\x02\x02\x01\x01\x01\x01\x01\x02\x01\x02\x05\x01\x01", // 聙
+ 0x805a: "\x01\x02\x02\x01\x01\x01\x05\x04\x03\x02\x03\x03\x03\x04", // 聚
+ 0x805b: "\x01\x02\x02\x01\x01\x01\x03\x02\x05\x01\x01\x03\x01\x02", // 聛
+ 0x805c: "\x01\x02\x02\x01\x01\x01\x04\x04\x05\x03\x04\x01\x02\x01", // 聜
+ 0x805d: "\x01\x02\x02\x01\x01\x01\x01\x02\x05\x01\x01\x05\x03\x04", // 聝
+ 0x805e: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x02\x01\x01\x01", // 聞
+ 0x805f: "\x03\x01\x01\x03\x04\x02\x05\x01\x01\x02\x02\x01\x01\x01", // 聟
+ 0x8060: "\x01\x02\x02\x01\x01\x01\x04\x03\x01\x01\x03\x02", // 聠
+ 0x8061: "\x01\x02\x02\x01\x01\x01\x03\x04\x05\x04\x04\x05\x04\x04", // 聡
+ 0x8062: "\x01\x02\x02\x01\x01\x01\x04\x04\x05\x01\x02\x01\x03\x04", // 聢
+ 0x8063: "\x01\x02\x02\x01\x01\x01\x03\x02\x01\x05\x01\x01\x03\x05", // 聣
+ 0x8064: "\x01\x02\x02\x01\x01\x01\x04\x01\x02\x05\x01\x04\x05\x01\x02", // 聤
+ 0x8065: "\x01\x02\x02\x01\x01\x01\x03\x02\x05\x01\x02\x05\x02\x01\x04", // 聥
+ 0x8066: "\x01\x02\x02\x01\x01\x01\x03\x05\x03\x03\x04\x04\x05\x04\x04", // 聦
+ 0x8067: "\x01\x02\x02\x01\x01\x01\x05\x04\x03\x03\x04\x01\x01\x03\x04", // 聧
+ 0x8068: "\x01\x02\x02\x01\x01\x01\x05\x05\x04\x05\x05\x04\x01\x03\x02", // 聨
+ 0x8069: "\x01\x02\x02\x01\x01\x01\x02\x05\x01\x02\x01\x02\x05\x03\x04", // 聩
+ 0x806a: "\x01\x02\x02\x01\x01\x01\x04\x03\x02\x05\x01\x04\x05\x04\x04", // 聪
+ 0x806b: "\x01\x02\x02\x01\x01\x01\x05\x05\x04\x05\x05\x04\x01\x03\x04", // 聫
+ 0x806c: "\x01\x02\x02\x01\x01\x01\x03\x04\x05\x04\x05\x04\x01\x05\x04\x01", // 聬
+ 0x806d: "\x01\x02\x02\x01\x01\x01\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 聭
+ 0x806e: "\x01\x02\x02\x01\x01\x01\x05\x05\x04\x05\x05\x04\x04\x04\x04\x04", // 聮
+ 0x806f: "\x01\x02\x02\x01\x01\x01\x05\x05\x04\x05\x05\x04\x05\x03\x02\x02\x01", // 聯
+ 0x8070: "\x01\x02\x02\x01\x01\x01\x03\x02\x05\x03\x05\x04\x01\x04\x05\x04\x04", // 聰
+ 0x8071: "\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04\x01\x02\x02\x01\x01\x01", // 聱
+ 0x8072: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04\x01\x02\x02\x01\x01\x01", // 聲
+ 0x8073: "\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04\x01\x02\x02\x01\x01\x01", // 聳
+ 0x8074: "\x01\x02\x02\x01\x01\x01\x01\x02\x02\x05\x02\x02\x01\x04\x05\x04\x04", // 聴
+ 0x8075: "\x01\x02\x02\x01\x01\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 聵
+ 0x8076: "\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01", // 聶
+ 0x8077: "\x01\x02\x02\x01\x01\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05\x03\x04", // 職
+ 0x8078: "\x01\x02\x02\x01\x01\x01\x03\x05\x01\x03\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 聸
+ 0x8079: "\x01\x02\x02\x01\x01\x01\x04\x04\x05\x04\x05\x04\x04\x02\x05\x02\x02\x01\x01\x02", // 聹
+ 0x807a: "\x01\x02\x02\x01\x01\x01\x04\x04\x05\x03\x05\x04\x04\x05\x04\x01\x01\x02\x03\x04", // 聺
+ 0x807b: "\x04\x04\x01\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02\x01\x02\x02\x01\x01\x01", // 聻
+ 0x807c: "\x05\x01\x02\x02\x01\x01\x01\x01\x02\x02\x05\x02\x02\x01\x01\x04\x05\x04\x04", // 聼
+ 0x807d: "\x01\x02\x02\x01\x01\x01\x01\x01\x02\x01\x01\x02\x02\x05\x02\x02\x01\x01\x04\x05\x04\x04", // 聽
+ 0x807e: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x05\x01\x05\x01\x01\x01\x01\x02\x02\x01\x01\x01", // 聾
+ 0x807f: "\x05\x01\x01\x01\x01\x02", // 聿
+ 0x8080: "\x05\x01\x01\x02", // 肀
+ 0x8081: "\x04\x05\x01\x03\x05\x01\x01\x01\x01\x02", // 肁
+ 0x8082: "\x01\x03\x05\x04\x05\x01\x01\x01\x01\x02", // 肂
+ 0x8083: "\x05\x01\x01\x02\x03\x02\x03\x04", // 肃
+ 0x8084: "\x03\x05\x03\x01\x01\x03\x04\x05\x01\x01\x01\x01\x02", // 肄
+ 0x8085: "\x05\x01\x01\x02\x03\x02\x01\x01\x05\x05\x02\x01\x02", // 肅
+ 0x8086: "\x01\x02\x01\x01\x01\x05\x04\x05\x01\x01\x01\x01\x02", // 肆
+ 0x8087: "\x04\x05\x01\x03\x03\x01\x03\x04\x05\x01\x01\x01\x01\x02", // 肇
+ 0x8088: "\x04\x05\x01\x03\x01\x05\x03\x04\x05\x01\x01\x01\x01\x02", // 肈
+ 0x8089: "\x02\x05\x03\x04\x03\x04", // 肉
+ 0x808a: "\x03\x05\x01\x01\x05", // 肊
+ 0x808b: "\x03\x05\x01\x01\x05\x03", // 肋
+ 0x808c: "\x03\x05\x01\x01\x03\x05", // 肌
+ 0x808d: "\x03\x05\x01\x01\x03\x05", // 肍
+ 0x808e: "\x04\x05\x02\x05\x01\x01", // 肎
+ 0x808f: "\x03\x04\x02\x05\x03\x04\x03\x04", // 肏
+ 0x8090: "\x03\x05\x01\x01\x03\x01\x05", // 肐
+ 0x8091: "\x03\x05\x01\x01\x03\x05\x04", // 肑
+ 0x8092: "\x03\x05\x01\x01\x03\x05\x04", // 肒
+ 0x8093: "\x04\x01\x05\x02\x05\x01\x01", // 肓
+ 0x8094: "\x03\x05\x01\x01\x05\x02\x05", // 肔
+ 0x8095: "\x03\x05\x01\x01\x05\x03\x04", // 肕
+ 0x8096: "\x02\x04\x03\x02\x05\x01\x01", // 肖
+ 0x8097: "\x03\x05\x01\x01\x05\x03\x01", // 肗
+ 0x8098: "\x03\x05\x01\x01\x01\x02\x04", // 肘
+ 0x8099: "\x02\x05\x01\x02\x05\x01\x01", // 肙
+ 0x809a: "\x03\x05\x01\x01\x01\x02\x01", // 肚
+ 0x809b: "\x03\x05\x01\x01\x01\x02\x01", // 肛
+ 0x809c: "\x03\x05\x01\x01\x03\x03\x03", // 肜
+ 0x809d: "\x03\x05\x01\x01\x01\x01\x02", // 肝
+ 0x809e: "\x03\x05\x01\x01\x04\x03\x04", // 肞
+ 0x809f: "\x03\x05\x01\x01\x01\x01\x05", // 肟
+ 0x80a0: "\x03\x05\x01\x01\x05\x03\x03", // 肠
+ 0x80a1: "\x03\x05\x01\x01\x03\x05\x05\x04", // 股
+ 0x80a2: "\x03\x05\x01\x01\x01\x02\x05\x04", // 肢
+ 0x80a3: "\x03\x05\x01\x01\x03\x04\x04\x05", // 肣
+ 0x80a4: "\x03\x05\x01\x01\x01\x01\x03\x04", // 肤
+ 0x80a5: "\x03\x05\x01\x01\x05\x02\x01\x05", // 肥
+ 0x80a6: "\x03\x05\x04\x01\x03\x04\x05\x03", // 肦
+ 0x80a7: "\x03\x05\x01\x01\x01\x03\x02\x04", // 肧
+ 0x80a8: "\x03\x05\x01\x01\x01\x01\x01\x02", // 肨
+ 0x80a9: "\x04\x05\x01\x03\x02\x05\x01\x01", // 肩
+ 0x80aa: "\x03\x05\x01\x01\x04\x01\x05\x03", // 肪
+ 0x80ab: "\x03\x05\x01\x01\x01\x05\x02\x05", // 肫
+ 0x80ac: "\x03\x05\x01\x01\x01\x03\x05\x04", // 肬
+ 0x80ad: "\x03\x05\x01\x01\x02\x05\x03\x04", // 肭
+ 0x80ae: "\x03\x05\x01\x01\x04\x01\x03\x05", // 肮
+ 0x80af: "\x02\x01\x02\x01\x02\x05\x01\x01", // 肯
+ 0x80b0: "\x03\x05\x01\x01\x01\x03\x04\x04", // 肰
+ 0x80b1: "\x03\x05\x01\x01\x01\x03\x05\x04", // 肱
+ 0x80b2: "\x04\x01\x05\x04\x02\x05\x01\x01", // 育
+ 0x80b3: "\x03\x05\x01\x01\x03\x05\x03\x03", // 肳
+ 0x80b4: "\x03\x04\x01\x03\x02\x05\x01\x01", // 肴
+ 0x80b5: "\x03\x05\x01\x01\x03\x03\x01\x02", // 肵
+ 0x80b6: "\x03\x05\x01\x01\x01\x05\x03\x05", // 肶
+ 0x80b7: "\x03\x05\x01\x01\x03\x05\x03\x04", // 肷
+ 0x80b8: "\x03\x05\x01\x01\x03\x04\x01\x02", // 肸
+ 0x80b9: "\x03\x05\x01\x01\x03\x04\x01\x05", // 肹
+ 0x80ba: "\x03\x05\x01\x01\x01\x02\x05\x02", // 肺
+ 0x80bb: "\x02\x01\x04\x05\x02\x05\x01\x01", // 肻
+ 0x80bc: "\x03\x05\x01\x01\x01\x01\x03\x02", // 肼
+ 0x80bd: "\x03\x05\x01\x01\x01\x03\x04\x04", // 肽
+ 0x80be: "\x02\x02\x05\x04\x02\x05\x01\x01", // 肾
+ 0x80bf: "\x03\x05\x01\x01\x02\x05\x01\x02", // 肿
+ 0x80c0: "\x03\x05\x01\x01\x03\x01\x05\x04", // 胀
+ 0x80c1: "\x03\x05\x01\x01\x05\x03\x04\x04", // 胁
+ 0x80c2: "\x03\x05\x01\x01\x02\x05\x01\x01\x02", // 胂
+ 0x80c3: "\x02\x05\x01\x02\x01\x02\x05\x01\x01", // 胃
+ 0x80c4: "\x02\x05\x01\x02\x01\x02\x05\x01\x01", // 胄
+ 0x80c5: "\x03\x05\x01\x01\x03\x01\x01\x03\x04", // 胅
+ 0x80c6: "\x03\x05\x01\x01\x02\x05\x01\x01\x01", // 胆
+ 0x80c7: "\x03\x05\x01\x01\x05\x01\x05\x03\x02", // 胇
+ 0x80c8: "\x03\x05\x01\x01\x01\x03\x05\x04\x04", // 胈
+ 0x80c9: "\x03\x05\x01\x01\x03\x02\x05\x01\x01", // 胉
+ 0x80ca: "\x03\x05\x04\x01\x03\x05\x02\x05\x01", // 胊
+ 0x80cb: "\x03\x05\x01\x01\x02\x01\x02\x05\x01", // 胋
+ 0x80cc: "\x02\x01\x01\x03\x05\x02\x05\x01\x01", // 背
+ 0x80cd: "\x03\x05\x01\x01\x03\x03\x05\x04\x04", // 胍
+ 0x80ce: "\x03\x05\x01\x01\x05\x04\x02\x05\x01", // 胎
+ 0x80cf: "\x03\x05\x01\x01\x03\x05\x02\x03", // 胏
+ 0x80d0: "\x03\x05\x04\x01\x05\x02\x02\x05\x02", // 胐
+ 0x80d1: "\x03\x05\x01\x01\x02\x05\x01\x03\x04", // 胑
+ 0x80d2: "\x03\x05\x01\x01\x05\x01\x03\x03\x05", // 胒
+ 0x80d3: "\x03\x05\x01\x01\x01\x04\x03\x01\x02", // 胓
+ 0x80d4: "\x02\x01\x02\x01\x03\x05\x02\x05\x03\x04\x03\x04", // 胔
+ 0x80d5: "\x03\x05\x01\x01\x03\x02\x01\x02\x04", // 胕
+ 0x80d6: "\x03\x05\x01\x01\x04\x03\x01\x01\x02", // 胖
+ 0x80d7: "\x03\x05\x01\x01\x03\x04\x03\x03\x03", // 胗
+ 0x80d8: "\x03\x05\x01\x01\x04\x01\x05\x05\x04", // 胘
+ 0x80d9: "\x03\x05\x01\x01\x03\x01\x02\x01\x01", // 胙
+ 0x80da: "\x03\x05\x01\x01\x01\x03\x02\x04\x01", // 胚
+ 0x80db: "\x03\x05\x01\x01\x02\x05\x01\x01\x02", // 胛
+ 0x80dc: "\x03\x05\x01\x01\x03\x01\x01\x02\x01", // 胜
+ 0x80dd: "\x03\x05\x01\x01\x03\x05\x01\x05\x04", // 胝
+ 0x80de: "\x03\x05\x01\x01\x03\x05\x05\x01\x05", // 胞
+ 0x80df: "\x03\x05\x01\x01\x05\x05\x04\x01\x04", // 胟
+ 0x80e0: "\x03\x05\x01\x01\x01\x02\x01\x05\x04", // 胠
+ 0x80e1: "\x01\x02\x02\x05\x01\x03\x05\x01\x01", // 胡
+ 0x80e2: "\x03\x05\x01\x01\x01\x02\x05\x01\x02", // 胢
+ 0x80e3: "\x03\x05\x01\x01\x03\x01\x05\x02\x05", // 胣
+ 0x80e4: "\x03\x05\x05\x04\x02\x05\x01\x01\x05", // 胤
+ 0x80e5: "\x05\x02\x01\x03\x04\x02\x05\x01\x01", // 胥
+ 0x80e6: "\x03\x05\x01\x01\x02\x05\x01\x03\x04", // 胦
+ 0x80e7: "\x03\x05\x01\x01\x01\x03\x05\x03\x04", // 胧
+ 0x80e8: "\x03\x05\x01\x01\x01\x05\x02\x03\x04", // 胨
+ 0x80e9: "\x03\x05\x01\x01\x02\x01\x01\x02\x04", // 胩
+ 0x80ea: "\x03\x05\x01\x01\x02\x01\x05\x01\x03", // 胪
+ 0x80eb: "\x03\x05\x01\x01\x05\x04\x01\x02\x01", // 胫
+ 0x80ec: "\x05\x03\x01\x05\x04\x02\x05\x03\x04\x03\x04", // 胬
+ 0x80ed: "\x03\x05\x01\x01\x02\x05\x01\x03\x04\x01", // 胭
+ 0x80ee: "\x03\x05\x01\x01\x03\x05\x04\x01\x05\x02", // 胮
+ 0x80ef: "\x03\x05\x01\x01\x01\x03\x04\x01\x01\x05", // 胯
+ 0x80f0: "\x03\x05\x01\x01\x01\x05\x01\x05\x03\x04", // 胰
+ 0x80f1: "\x03\x05\x01\x01\x02\x04\x03\x01\x03\x05", // 胱
+ 0x80f2: "\x03\x05\x01\x01\x04\x01\x05\x03\x03\x04", // 胲
+ 0x80f3: "\x03\x05\x01\x01\x03\x05\x04\x02\x05\x01", // 胳
+ 0x80f4: "\x03\x05\x01\x01\x02\x05\x01\x02\x05\x01", // 胴
+ 0x80f5: "\x03\x05\x01\x01\x01\x05\x04\x01\x02\x01", // 胵
+ 0x80f6: "\x03\x05\x01\x01\x04\x01\x03\x04\x03\x04", // 胶
+ 0x80f7: "\x03\x05\x03\x04\x05\x02\x02\x05\x01\x01", // 胷
+ 0x80f8: "\x03\x05\x01\x01\x03\x05\x03\x04\x05\x02", // 胸
+ 0x80f9: "\x03\x05\x01\x01\x01\x03\x02\x05\x02\x02", // 胹
+ 0x80fa: "\x03\x05\x01\x01\x04\x04\x05\x05\x03\x01", // 胺
+ 0x80fb: "\x03\x05\x01\x01\x03\x03\x02\x01\x01\x02", // 胻
+ 0x80fc: "\x03\x05\x01\x01\x04\x03\x01\x01\x03\x02", // 胼
+ 0x80fd: "\x05\x04\x02\x05\x01\x01\x03\x05\x03\x05", // 能
+ 0x80fe: "\x01\x02\x01\x02\x05\x03\x04\x03\x04\x05\x03\x04", // 胾
+ 0x80ff: "\x03\x05\x01\x01\x01\x02\x01\x01\x02\x01", // 胿
+ 0x8100: "\x05\x02\x05\x03\x04\x01\x02\x05\x01\x01", // 脀
+ 0x8101: "\x03\x05\x04\x01\x03\x04\x01\x05\x03\x04", // 脁
+ 0x8102: "\x03\x05\x01\x01\x03\x05\x02\x05\x01\x01", // 脂
+ 0x8103: "\x03\x05\x01\x01\x03\x05\x05\x02\x01\x05", // 脃
+ 0x8104: "\x03\x05\x01\x01\x01\x03\x04\x03\x03\x04", // 脄
+ 0x8105: "\x05\x03\x05\x03\x05\x03\x02\x05\x01\x01", // 脅
+ 0x8106: "\x03\x05\x01\x01\x03\x05\x01\x03\x05\x05", // 脆
+ 0x8107: "\x03\x05\x01\x01\x05\x03\x05\x03\x05\x03", // 脇
+ 0x8108: "\x03\x05\x01\x01\x03\x03\x03\x05\x03\x04", // 脈
+ 0x8109: "\x03\x05\x01\x01\x04\x05\x05\x03\x04", // 脉
+ 0x810a: "\x04\x01\x03\x04\x03\x04\x02\x05\x01\x01", // 脊
+ 0x810b: "\x05\x03\x05\x03\x05\x03\x02\x05\x01\x01", // 脋
+ 0x810c: "\x03\x05\x01\x01\x03\x01\x01\x02\x01\x02", // 脌
+ 0x810d: "\x03\x05\x01\x01\x03\x04\x01\x01\x05\x04", // 脍
+ 0x810e: "\x03\x05\x01\x01\x03\x04\x01\x02\x03\x04", // 脎
+ 0x810f: "\x03\x05\x01\x01\x04\x01\x03\x01\x02\x01", // 脏
+ 0x8110: "\x03\x05\x01\x01\x04\x01\x03\x04\x03\x02", // 脐
+ 0x8111: "\x03\x05\x01\x01\x04\x01\x03\x04\x05\x02", // 脑
+ 0x8112: "\x03\x05\x01\x01\x04\x03\x01\x02\x03\x04", // 脒
+ 0x8113: "\x03\x05\x01\x01\x04\x05\x03\x05\x03\x04", // 脓
+ 0x8114: "\x04\x01\x02\x02\x03\x04\x02\x05\x03\x04\x03\x04", // 脔
+ 0x8115: "\x03\x05\x01\x01\x03\x05\x02\x05\x01\x03\x05", // 脕
+ 0x8116: "\x03\x05\x01\x01\x01\x02\x04\x05\x05\x02\x01", // 脖
+ 0x8117: "\x03\x05\x01\x01\x03\x05\x03\x03\x02\x05\x01", // 脗
+ 0x8118: "\x03\x05\x01\x01\x04\x04\x05\x01\x01\x03\x05", // 脘
+ 0x8119: "\x03\x05\x01\x01\x01\x02\x04\x01\x03\x04\x04", // 脙
+ 0x811a: "\x03\x05\x01\x01\x01\x02\x01\x05\x04\x05\x02", // 脚
+ 0x811b: "\x03\x05\x01\x01\x01\x05\x05\x05\x01\x02\x01", // 脛
+ 0x811c: "\x03\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01", // 脜
+ 0x811d: "\x03\x05\x01\x01\x04\x01\x02\x05\x01\x05\x02", // 脝
+ 0x811e: "\x03\x05\x01\x01\x03\x04\x03\x04\x01\x02\x01", // 脞
+ 0x811f: "\x03\x05\x01\x01\x03\x04\x04\x03\x01\x02\x04", // 脟
+ 0x8120: "\x03\x05\x01\x01\x03\x02\x01\x05\x05\x04", // 脠
+ 0x8121: "\x03\x05\x01\x01\x03\x01\x02\x01\x05\x04", // 脡
+ 0x8122: "\x03\x05\x01\x01\x03\x01\x05\x05\x04\x01\x04", // 脢
+ 0x8123: "\x01\x03\x01\x01\x05\x03\x04\x02\x05\x01\x01", // 脣
+ 0x8124: "\x03\x05\x01\x01\x01\x03\x01\x01\x05\x03\x04", // 脤
+ 0x8125: "\x03\x05\x01\x01\x01\x03\x04\x03\x04\x03\x04", // 脥
+ 0x8126: "\x03\x05\x01\x01\x01\x04\x05\x04\x04\x05\x04", // 脦
+ 0x8127: "\x03\x05\x04\x01\x05\x04\x03\x04\x03\x05\x04", // 脧
+ 0x8128: "\x03\x05\x01\x01\x01\x02\x05\x01\x02\x03\x04", // 脨
+ 0x8129: "\x03\x02\x02\x03\x05\x04\x02\x05\x01\x01", // 脩
+ 0x812a: "\x03\x05\x01\x01\x03\x04\x01\x03\x02\x05\x02", // 脪
+ 0x812b: "\x03\x05\x01\x01\x03\x04\x02\x05\x01\x03\x05", // 脫
+ 0x812c: "\x03\x05\x01\x01\x03\x04\x04\x03\x05\x02\x01", // 脬
+ 0x812d: "\x03\x05\x01\x01\x02\x05\x01\x01\x01\x02\x01", // 脭
+ 0x812e: "\x03\x05\x01\x01\x03\x04\x04\x03\x05\x03\x01", // 脮
+ 0x812f: "\x03\x05\x01\x01\x01\x02\x05\x01\x01\x02\x04", // 脯
+ 0x8130: "\x03\x05\x01\x01\x01\x02\x05\x01\x04\x03\x01", // 脰
+ 0x8131: "\x03\x05\x01\x01\x04\x03\x02\x05\x01\x03\x05", // 脱
+ 0x8132: "\x03\x05\x01\x01\x05\x01\x03\x02\x05\x03\x04", // 脲
+ 0x8133: "\x03\x05\x01\x01\x04\x04\x03\x03\x04\x05\x02", // 脳
+ 0x8134: "\x03\x05\x01\x01\x01\x03\x02\x04\x02\x05\x01", // 脴
+ 0x8135: "\x03\x05\x01\x01\x02\x05\x01\x01\x01\x03\x04", // 脵
+ 0x8136: "\x03\x05\x01\x01\x02\x05\x01\x02\x05\x03\x04", // 脶
+ 0x8137: "\x03\x05\x01\x01\x03\x01\x02\x03\x04\x02\x02", // 脷
+ 0x8138: "\x03\x05\x01\x01\x03\x04\x01\x04\x04\x03\x01", // 脸
+ 0x8139: "\x03\x05\x01\x01\x01\x02\x01\x01\x01\x05\x03\x04", // 脹
+ 0x813a: "\x03\x05\x01\x01\x04\x01\x03\x04\x03\x04\x01\x02", // 脺
+ 0x813b: "\x03\x05\x01\x01\x01\x05\x01\x01\x02\x01\x03\x04", // 脻
+ 0x813c: "\x03\x05\x01\x01\x01\x02\x05\x02\x03\x04\x03\x04", // 脼
+ 0x813d: "\x03\x05\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 脽
+ 0x813e: "\x03\x05\x01\x01\x03\x02\x05\x01\x01\x03\x01\x02", // 脾
+ 0x813f: "\x03\x05\x01\x01\x01\x01\x02\x01\x03\x05\x03\x04", // 脿
+ 0x8140: "\x03\x05\x01\x01\x03\x04\x01\x02\x05\x01\x02\x02", // 腀
+ 0x8141: "\x03\x05\x01\x01\x03\x01\x01\x03\x03\x01\x01\x02", // 腁
+ 0x8142: "\x03\x05\x01\x01\x02\x05\x01\x01\x01\x02\x03\x04", // 腂
+ 0x8143: "\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04\x05\x05", // 腃
+ 0x8144: "\x03\x05\x01\x01\x03\x01\x02\x01\x02\x02\x01\x01", // 腄
+ 0x8145: "\x03\x05\x01\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 腅
+ 0x8146: "\x03\x05\x01\x01\x02\x05\x01\x02\x02\x01\x03\x04", // 腆
+ 0x8147: "\x03\x05\x01\x01\x03\x01\x02\x03\x04\x05\x03\x01", // 腇
+ 0x8148: "\x03\x05\x01\x01\x01\x01\x02\x01\x02\x05\x01\x01", // 腈
+ 0x8149: "\x03\x05\x01\x01\x03\x02\x01\x05\x01\x01\x03\x05", // 腉
+ 0x814a: "\x03\x05\x01\x01\x01\x02\x02\x01\x02\x05\x01\x01", // 腊
+ 0x814b: "\x03\x05\x01\x01\x04\x01\x03\x02\x03\x05\x04\x04", // 腋
+ 0x814c: "\x03\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x05", // 腌
+ 0x814d: "\x03\x05\x01\x01\x03\x04\x04\x05\x04\x05\x04\x04", // 腍
+ 0x814e: "\x01\x02\x05\x01\x02\x05\x05\x04\x02\x05\x01\x01", // 腎
+ 0x814f: "\x03\x05\x01\x01\x05\x04\x05\x04\x05\x04\x05\x04", // 腏
+ 0x8150: "\x04\x01\x03\x03\x02\x01\x02\x04\x02\x05\x03\x04\x03\x04", // 腐
+ 0x8151: "\x03\x05\x01\x01\x04\x01\x03\x03\x02\x01\x02\x04", // 腑
+ 0x8152: "\x03\x05\x01\x01\x05\x01\x03\x01\x02\x02\x05\x01", // 腒
+ 0x8153: "\x03\x05\x01\x01\x02\x01\x01\x01\x02\x01\x01\x01", // 腓
+ 0x8154: "\x03\x05\x01\x01\x04\x04\x05\x03\x04\x01\x02\x01", // 腔
+ 0x8155: "\x03\x05\x01\x01\x04\x04\x05\x03\x05\x04\x05\x05", // 腕
+ 0x8156: "\x03\x05\x01\x01\x01\x02\x05\x01\x01\x02\x03\x04", // 腖
+ 0x8157: "\x03\x05\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02", // 腗
+ 0x8158: "\x03\x05\x01\x01\x02\x05\x01\x01\x02\x01\x04\x01", // 腘
+ 0x8159: "\x03\x05\x01\x01\x04\x04\x05\x01\x01\x02\x03\x04", // 腙
+ 0x815a: "\x03\x05\x01\x01\x04\x04\x05\x01\x02\x01\x03\x04", // 腚
+ 0x815b: "\x03\x05\x01\x01\x05\x01\x03\x01\x05\x04\x01\x02\x01", // 腛
+ 0x815c: "\x03\x05\x01\x01\x01\x02\x02\x01\x01\x01\x02\x03\x04", // 腜
+ 0x815d: "\x03\x05\x01\x01\x01\x03\x02\x05\x02\x02\x01\x03\x04", // 腝
+ 0x815e: "\x03\x05\x01\x01\x05\x05\x01\x03\x05\x03\x03\x03\x04", // 腞
+ 0x815f: "\x03\x05\x01\x01\x04\x04\x05\x01\x05\x04\x01\x02\x01", // 腟
+ 0x8160: "\x03\x05\x01\x01\x01\x01\x01\x03\x04\x01\x01\x03\x04", // 腠
+ 0x8161: "\x03\x05\x01\x01\x02\x05\x05\x02\x05\x02\x05\x01", // 腡
+ 0x8162: "\x03\x05\x01\x01\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 腢
+ 0x8163: "\x03\x05\x01\x01\x04\x01\x04\x03\x04\x05\x02\x05\x02", // 腣
+ 0x8164: "\x03\x05\x01\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 腤
+ 0x8165: "\x03\x05\x01\x01\x02\x05\x01\x01\x03\x01\x01\x02\x01", // 腥
+ 0x8166: "\x03\x05\x01\x01\x05\x05\x05\x03\x02\x05\x03\x04\x01", // 腦
+ 0x8167: "\x03\x05\x01\x01\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 腧
+ 0x8168: "\x03\x05\x01\x01\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 腨
+ 0x8169: "\x03\x05\x01\x01\x01\x02\x02\x05\x04\x03\x01\x01\x02", // 腩
+ 0x816a: "\x03\x05\x01\x01\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 腪
+ 0x816b: "\x03\x05\x01\x01\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 腫
+ 0x816c: "\x03\x05\x01\x01\x05\x04\x05\x02\x03\x01\x02\x03\x04", // 腬
+ 0x816d: "\x03\x05\x01\x01\x02\x05\x01\x02\x05\x01\x01\x01\x05", // 腭
+ 0x816e: "\x03\x05\x01\x01\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 腮
+ 0x816f: "\x03\x05\x01\x01\x03\x03\x01\x02\x02\x05\x01\x01\x01", // 腯
+ 0x8170: "\x03\x05\x01\x01\x01\x02\x05\x02\x02\x01\x05\x03\x01", // 腰
+ 0x8171: "\x03\x05\x01\x01\x05\x01\x01\x01\x01\x02\x05\x04", // 腱
+ 0x8172: "\x03\x05\x01\x01\x02\x05\x01\x02\x01\x01\x05\x03\x04", // 腲
+ 0x8173: "\x03\x05\x01\x01\x03\x04\x03\x04\x02\x05\x01\x05\x02", // 腳
+ 0x8174: "\x03\x05\x01\x01\x03\x02\x01\x05\x01\x01\x03\x04", // 腴
+ 0x8175: "\x03\x05\x01\x01\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 腵
+ 0x8176: "\x03\x05\x01\x01\x03\x02\x01\x01\x01\x03\x05\x05\x04", // 腶
+ 0x8177: "\x03\x05\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 腷
+ 0x8178: "\x03\x05\x01\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 腸
+ 0x8179: "\x03\x05\x01\x01\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 腹
+ 0x817a: "\x03\x05\x01\x01\x03\x02\x05\x01\x01\x02\x05\x03\x04", // 腺
+ 0x817b: "\x03\x05\x01\x01\x01\x01\x01\x02\x05\x03\x04\x05\x04", // 腻
+ 0x817c: "\x03\x05\x01\x01\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 腼
+ 0x817d: "\x03\x05\x01\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 腽
+ 0x817e: "\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04\x05\x05\x01", // 腾
+ 0x817f: "\x03\x05\x01\x01\x05\x01\x01\x05\x03\x04\x04\x05\x04", // 腿
+ 0x8180: "\x03\x05\x01\x01\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03", // 膀
+ 0x8181: "\x03\x05\x01\x01\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 膁
+ 0x8182: "\x04\x01\x05\x03\x03\x01\x03\x05\x03\x04\x02\x05\x01\x01", // 膂
+ 0x8183: "\x03\x05\x01\x01\x02\x05\x03\x04\x01\x02\x05\x02\x02\x01", // 膃
+ 0x8184: "\x03\x05\x01\x01\x03\x02\x01\x05\x01\x01\x02\x05\x04", // 膄
+ 0x8185: "\x03\x05\x01\x01\x04\x01\x03\x05\x01\x01\x02\x02\x05\x01", // 膅
+ 0x8186: "\x03\x05\x01\x01\x01\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 膆
+ 0x8187: "\x03\x05\x01\x01\x03\x02\x05\x01\x05\x01\x04\x05\x04", // 膇
+ 0x8188: "\x03\x05\x01\x01\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 膈
+ 0x8189: "\x03\x05\x01\x01\x04\x03\x01\x03\x04\x02\x05\x02\x02\x01", // 膉
+ 0x818a: "\x03\x05\x01\x01\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 膊
+ 0x818b: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x02\x05\x01\x01", // 膋
+ 0x818c: "\x03\x05\x01\x01\x04\x01\x03\x04\x03\x04\x02\x05\x01\x01", // 膌
+ 0x818d: "\x03\x05\x01\x01\x03\x02\x05\x03\x04\x01\x01\x05\x03\x05", // 膍
+ 0x818e: "\x03\x05\x01\x01\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04", // 膎
+ 0x818f: "\x04\x01\x02\x05\x01\x04\x05\x02\x05\x01\x02\x05\x01\x01", // 膏
+ 0x8190: "\x04\x01\x05\x03\x03\x01\x03\x05\x03\x04\x02\x05\x03\x04\x03\x04", // 膐
+ 0x8191: "\x03\x05\x01\x01\x04\x04\x05\x03\x02\x01\x02\x01\x03\x04", // 膑
+ 0x8192: "\x03\x05\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 膒
+ 0x8193: "\x03\x05\x01\x01\x03\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 膓
+ 0x8194: "\x03\x05\x01\x01\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 膔
+ 0x8195: "\x03\x05\x01\x01\x02\x05\x01\x02\x05\x01\x01\x05\x03\x04\x01", // 膕
+ 0x8196: "\x03\x05\x01\x01\x03\x05\x04\x01\x01\x01\x02\x04\x05\x04", // 膖
+ 0x8197: "\x03\x05\x01\x01\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 膗
+ 0x8198: "\x03\x05\x01\x01\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 膘
+ 0x8199: "\x03\x05\x01\x01\x05\x01\x05\x02\x05\x01\x02\x05\x01\x02\x01\x04", // 膙
+ 0x819a: "\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x01\x01", // 膚
+ 0x819b: "\x03\x05\x01\x01\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x01", // 膛
+ 0x819c: "\x03\x05\x01\x01\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 膜
+ 0x819d: "\x03\x05\x01\x01\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04", // 膝
+ 0x819e: "\x03\x05\x01\x01\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04", // 膞
+ 0x819f: "\x03\x05\x01\x01\x04\x01\x05\x05\x04\x04\x01\x03\x04\x01\x02", // 膟
+ 0x81a0: "\x03\x05\x01\x01\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 膠
+ 0x81a1: "\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04\x02\x05\x01\x01\x01", // 膡
+ 0x81a2: "\x03\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x04", // 膢
+ 0x81a3: "\x03\x05\x01\x01\x04\x04\x05\x03\x04\x01\x05\x04\x01\x02\x01", // 膣
+ 0x81a4: "\x03\x05\x01\x01\x01\x04\x05\x02\x04\x04\x04\x04\x05\x01\x01", // 膤
+ 0x81a5: "\x01\x01\x02\x03\x04\x01\x03\x05\x05\x03\x04\x02\x05\x03\x04\x03\x04", // 膥
+ 0x81a6: "\x03\x05\x01\x01\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 膦
+ 0x81a7: "\x03\x05\x04\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 膧
+ 0x81a8: "\x03\x05\x01\x01\x01\x02\x01\x02\x05\x01\x04\x03\x01\x03\x03\x03", // 膨
+ 0x81a9: "\x03\x05\x01\x01\x01\x01\x01\x02\x05\x01\x01\x01\x03\x04\x05\x04", // 膩
+ 0x81aa: "\x03\x05\x01\x01\x04\x01\x04\x03\x04\x05\x02\x05\x02\x02\x05\x01", // 膪
+ 0x81ab: "\x03\x05\x01\x01\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 膫
+ 0x81ac: "\x03\x05\x01\x01\x03\x01\x01\x05\x03\x01\x01\x05\x03\x01\x01\x05", // 膬
+ 0x81ad: "\x03\x05\x01\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 膭
+ 0x81ae: "\x03\x05\x01\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 膮
+ 0x81af: "\x03\x05\x01\x01\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 膯
+ 0x81b0: "\x03\x05\x01\x01\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 膰
+ 0x81b1: "\x03\x05\x01\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05\x03\x04", // 膱
+ 0x81b2: "\x03\x05\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 膲
+ 0x81b3: "\x03\x05\x01\x01\x04\x03\x01\x01\x01\x02\x04\x03\x01\x02\x05\x01", // 膳
+ 0x81b4: "\x03\x05\x01\x01\x03\x01\x01\x02\x02\x02\x02\x01\x04\x04\x04\x04", // 膴
+ 0x81b5: "\x03\x05\x01\x01\x01\x02\x02\x04\x01\x03\x04\x03\x04\x01\x02", // 膵
+ 0x81b6: "\x03\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01\x01\x01\x02\x01", // 膶
+ 0x81b7: "\x03\x05\x01\x01\x05\x05\x03\x04\x05\x01\x01\x05\x04\x05\x02", // 膷
+ 0x81b8: "\x03\x05\x01\x01\x01\x03\x01\x02\x01\x02\x05\x01\x01\x04\x05\x04", // 膸
+ 0x81b9: "\x03\x05\x01\x01\x01\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 膹
+ 0x81ba: "\x04\x01\x03\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x01\x01", // 膺
+ 0x81bb: "\x03\x05\x01\x01\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 膻
+ 0x81bc: "\x03\x05\x01\x01\x02\x05\x05\x02\x05\x02\x05\x01\x04\x05\x04", // 膼
+ 0x81bd: "\x03\x05\x01\x01\x03\x05\x01\x03\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 膽
+ 0x81be: "\x03\x05\x01\x01\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 膾
+ 0x81bf: "\x03\x05\x01\x01\x02\x05\x01\x02\x02\x01\x01\x03\x01\x01\x05\x03\x04", // 膿
+ 0x81c0: "\x05\x01\x03\x01\x02\x02\x01\x03\x04\x03\x05\x05\x04\x02\x05\x01\x01", // 臀
+ 0x81c1: "\x03\x05\x01\x01\x04\x01\x03\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 臁
+ 0x81c2: "\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x02\x05\x01\x01", // 臂
+ 0x81c3: "\x03\x05\x01\x01\x04\x01\x05\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 臃
+ 0x81c4: "\x03\x05\x01\x01\x02\x01\x05\x03\x01\x05\x01\x03\x05\x03\x03\x03\x04", // 臄
+ 0x81c5: "\x03\x05\x01\x01\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 臅
+ 0x81c6: "\x03\x05\x01\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 臆
+ 0x81c7: "\x03\x05\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x02\x05", // 臇
+ 0x81c8: "\x03\x05\x01\x01\x01\x02\x02\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 臈
+ 0x81c9: "\x03\x05\x01\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 臉
+ 0x81ca: "\x03\x05\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 臊
+ 0x81cb: "\x05\x01\x03\x01\x02\x02\x01\x03\x04\x03\x05\x05\x04\x02\x05\x03\x04\x03\x04", // 臋
+ 0x81cc: "\x03\x05\x01\x01\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04", // 臌
+ 0x81cd: "\x03\x05\x01\x01\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01", // 臍
+ 0x81ce: "\x03\x05\x01\x01\x05\x04\x01\x05\x04\x01\x04\x01\x03\x04\x03\x04\x01\x02", // 臎
+ 0x81cf: "\x03\x05\x01\x01\x04\x04\x05\x01\x02\x03\x03\x02\x05\x01\x01\x01\x03\x04", // 臏
+ 0x81d0: "\x03\x05\x01\x01\x03\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 臐
+ 0x81d1: "\x03\x05\x01\x01\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02", // 臑
+ 0x81d2: "\x03\x05\x01\x01\x01\x02\x02\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 臒
+ 0x81d3: "\x03\x05\x01\x01\x01\x02\x02\x01\x03\x01\x02\x05\x01\x02\x05\x05\x03\x04", // 臓
+ 0x81d4: "\x03\x05\x01\x01\x01\x02\x05\x01\x02\x05\x05\x04\x02\x05\x01\x01\x01\x03\x04", // 臔
+ 0x81d5: "\x03\x05\x01\x01\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x04\x04\x04\x04", // 臕
+ 0x81d6: "\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01", // 臖
+ 0x81d7: "\x03\x05\x01\x01\x04\x04\x05\x01\x02\x02\x02\x05\x01\x01\x01\x03\x05\x04", // 臗
+ 0x81d8: "\x03\x05\x01\x01\x05\x05\x05\x02\x05\x03\x04\x01\x05\x04\x04\x05\x04\x04\x05", // 臘
+ 0x81d9: "\x03\x05\x01\x01\x01\x02\x02\x01\x02\x05\x01\x02\x01\x01\x03\x05\x04\x04\x04\x04", // 臙
+ 0x81da: "\x03\x05\x01\x01\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 臚
+ 0x81db: "\x03\x05\x01\x01\x01\x04\x05\x02\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 臛
+ 0x81dc: "\x03\x05\x01\x01\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x03\x04", // 臜
+ 0x81dd: "\x04\x01\x05\x02\x05\x01\x03\x05\x01\x01\x02\x05\x01\x01\x01\x02\x03\x04\x03\x05\x04", // 臝
+ 0x81de: "\x03\x05\x01\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 臞
+ 0x81df: "\x03\x05\x01\x01\x01\x02\x02\x01\x03\x05\x01\x03\x01\x02\x05\x01\x02\x05\x05\x03\x04", // 臟
+ 0x81e0: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x02\x05\x03\x04\x03\x04", // 臠
+ 0x81e1: "\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x03\x04\x03\x04", // 臡
+ 0x81e2: "\x03\x05\x01\x01\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 臢
+ 0x81e3: "\x01\x02\x05\x01\x02\x05", // 臣
+ 0x81e4: "\x01\x02\x05\x01\x02\x05\x05\x04", // 臤
+ 0x81e5: "\x01\x02\x05\x01\x02\x05\x03\x04", // 臥
+ 0x81e6: "\x01\x02\x01\x05\x02\x02\x01\x01\x02\x05\x01\x02\x05", // 臦
+ 0x81e7: "\x01\x03\x05\x01\x03\x01\x02\x05\x01\x02\x05\x05\x03\x04", // 臧
+ 0x81e8: "\x01\x02\x05\x01\x02\x05\x03\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 臨
+ 0x81e9: "\x01\x02\x01\x05\x02\x02\x01\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x02", // 臩
+ 0x81ea: "\x03\x02\x05\x01\x01\x01", // 自
+ 0x81eb: "\x03\x02\x05\x01\x01\x01\x05", // 臫
+ 0x81ec: "\x03\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 臬
+ 0x81ed: "\x03\x02\x05\x01\x01\x01\x01\x03\x04\x04", // 臭
+ 0x81ee: "\x03\x02\x05\x01\x01\x01\x03\x02\x03\x04\x03\x04", // 臮
+ 0x81ef: "\x03\x02\x05\x01\x01\x01\x04\x01\x03\x04\x01\x02", // 臯
+ 0x81f0: "\x03\x02\x05\x01\x01\x01\x01\x03\x05\x04\x03\x05", // 臰
+ 0x81f1: "\x03\x02\x05\x01\x01\x01\x04\x04\x05\x03\x04\x04\x01\x05\x03", // 臱
+ 0x81f2: "\x03\x02\x05\x01\x01\x01\x01\x02\x03\x04\x03\x05\x01\x03\x05\x05", // 臲
+ 0x81f3: "\x01\x05\x04\x01\x02\x01", // 至
+ 0x81f4: "\x01\x05\x04\x01\x02\x01\x03\x01\x03\x04", // 致
+ 0x81f5: "\x01\x05\x04\x01\x02\x01\x03\x05\x04\x02\x05\x01", // 臵
+ 0x81f6: "\x01\x05\x04\x01\x02\x01\x01\x03\x02\x05\x02\x01", // 臶
+ 0x81f7: "\x01\x02\x01\x01\x05\x04\x01\x02\x01\x05\x03\x04", // 臷
+ 0x81f8: "\x01\x05\x04\x01\x02\x01\x01\x05\x04\x01\x02\x01", // 臸
+ 0x81f9: "\x01\x05\x04\x01\x02\x01\x01\x03\x05\x05\x03\x04", // 臹
+ 0x81fa: "\x01\x02\x01\x02\x05\x01\x04\x05\x01\x05\x04\x01\x02\x01", // 臺
+ 0x81fb: "\x01\x05\x04\x01\x02\x01\x01\x01\x01\x03\x04\x03\x01\x02\x03\x04", // 臻
+ 0x81fc: "\x03\x02\x01\x05\x01\x01", // 臼
+ 0x81fd: "\x03\x05\x03\x02\x01\x05\x01\x01", // 臽
+ 0x81fe: "\x03\x02\x01\x05\x01\x01\x03\x04", // 臾
+ 0x81ff: "\x03\x01\x02\x03\x02\x01\x05\x01\x01", // 臿
+ 0x8200: "\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01", // 舀
+ 0x8201: "\x03\x02\x01\x05\x01\x01\x01\x03\x02", // 舁
+ 0x8202: "\x01\x01\x01\x03\x04\x03\x02\x01\x05\x01\x01", // 舂
+ 0x8203: "\x03\x02\x01\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 舃
+ 0x8204: "\x03\x02\x01\x05\x01\x01\x03\x05\x04\x04\x04\x04", // 舄
+ 0x8205: "\x03\x02\x01\x05\x01\x01\x02\x05\x01\x02\x01\x05\x03", // 舅
+ 0x8206: "\x03\x02\x01\x01\x01\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 舆
+ 0x8207: "\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 與
+ 0x8208: "\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x01\x03\x04", // 興
+ 0x8209: "\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04\x01\x01\x02", // 舉
+ 0x820a: "\x01\x02\x02\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x01\x05\x01\x01", // 舊
+ 0x820b: "\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x04\x05\x02\x05\x01\x01\x01", // 舋
+ 0x820c: "\x03\x01\x02\x02\x05\x01", // 舌
+ 0x820d: "\x03\x04\x01\x01\x02\x02\x05\x01", // 舍
+ 0x820e: "\x03\x04\x01\x02\x01\x02\x05\x01", // 舎
+ 0x820f: "\x03\x01\x02\x02\x05\x01\x05\x02", // 舏
+ 0x8210: "\x03\x01\x02\x02\x05\x01\x03\x05\x01\x05", // 舐
+ 0x8211: "\x03\x01\x02\x02\x05\x01\x02\x05\x02\x01\x01", // 舑
+ 0x8212: "\x03\x04\x01\x01\x02\x02\x05\x01\x05\x04\x05\x02", // 舒
+ 0x8213: "\x03\x01\x02\x02\x05\x01\x02\x05\x01\x01\x03\x05\x03\x03", // 舓
+ 0x8214: "\x03\x01\x02\x02\x05\x01\x01\x01\x03\x04\x02\x04\x04\x04", // 舔
+ 0x8215: "\x03\x01\x02\x02\x05\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 舕
+ 0x8216: "\x03\x04\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01\x02\x04", // 舖
+ 0x8217: "\x03\x04\x01\x02\x01\x02\x05\x01\x01\x02\x05\x01\x01\x02\x04", // 舗
+ 0x8218: "\x03\x04\x01\x01\x02\x02\x05\x01\x04\x04\x05\x02\x05\x01\x05\x01", // 舘
+ 0x8219: "\x03\x01\x02\x02\x05\x01\x03\x01\x02\x02\x05\x01\x03\x01\x02\x02\x05\x01", // 舙
+ 0x821a: "\x03\x01\x02\x02\x05\x01\x03\x05\x01\x03\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 舚
+ 0x821b: "\x03\x05\x04\x01\x05\x02", // 舛
+ 0x821c: "\x03\x04\x04\x03\x04\x05\x03\x05\x04\x01\x05\x02", // 舜
+ 0x821d: "\x05\x02\x01\x05\x05\x05\x04\x05\x05\x04\x01\x05\x02", // 舝
+ 0x821e: "\x03\x01\x01\x02\x02\x02\x02\x01\x03\x05\x04\x01\x05\x02", // 舞
+ 0x821f: "\x03\x03\x05\x04\x01\x04", // 舟
+ 0x8220: "\x03\x03\x05\x04\x01\x04\x05\x03", // 舠
+ 0x8221: "\x03\x03\x05\x04\x01\x04\x01\x02\x01", // 舡
+ 0x8222: "\x03\x03\x05\x04\x01\x04\x02\x05\x01", // 舢
+ 0x8223: "\x03\x03\x05\x04\x01\x04\x04\x03\x04", // 舣
+ 0x8224: "\x03\x03\x05\x04\x01\x04\x03\x05\x04", // 舤
+ 0x8225: "\x03\x03\x05\x04\x01\x04\x05\x02\x01\x05", // 舥
+ 0x8226: "\x03\x03\x05\x04\x01\x04\x01\x03\x04\x04", // 舦
+ 0x8227: "\x03\x03\x05\x04\x01\x04\x03\x03\x05\x04", // 舧
+ 0x8228: "\x03\x03\x05\x04\x01\x04\x03\x03\x05\x04", // 舨
+ 0x8229: "\x03\x03\x05\x04\x01\x04\x03\x04\x05\x04", // 舩
+ 0x822a: "\x03\x03\x05\x04\x01\x04\x04\x01\x03\x05", // 航
+ 0x822b: "\x03\x03\x05\x04\x01\x04\x04\x01\x05\x03", // 舫
+ 0x822c: "\x03\x03\x05\x04\x01\x04\x03\x05\x05\x04", // 般
+ 0x822d: "\x03\x03\x05\x04\x01\x04\x01\x05\x03\x05", // 舭
+ 0x822e: "\x03\x03\x05\x04\x01\x04\x04\x05\x01\x03", // 舮
+ 0x822f: "\x03\x03\x05\x04\x01\x04\x02\x05\x01\x02", // 舯
+ 0x8230: "\x03\x03\x05\x04\x01\x04\x02\x05\x03\x05", // 舰
+ 0x8231: "\x03\x03\x05\x04\x01\x04\x03\x04\x05\x05", // 舱
+ 0x8232: "\x03\x03\x05\x04\x01\x04\x03\x04\x04\x05\x04", // 舲
+ 0x8233: "\x03\x03\x05\x04\x01\x04\x02\x05\x01\x02\x01", // 舳
+ 0x8234: "\x03\x03\x05\x04\x01\x04\x03\x01\x02\x01\x01", // 舴
+ 0x8235: "\x03\x03\x05\x04\x01\x04\x04\x04\x05\x03\x05", // 舵
+ 0x8236: "\x03\x03\x05\x04\x01\x04\x03\x02\x05\x01\x01", // 舶
+ 0x8237: "\x03\x03\x05\x04\x01\x04\x04\x01\x05\x05\x04", // 舷
+ 0x8238: "\x03\x03\x05\x04\x01\x04\x01\x02\x05\x01\x02", // 舸
+ 0x8239: "\x03\x03\x05\x04\x01\x04\x03\x05\x02\x05\x01", // 船
+ 0x823a: "\x03\x03\x05\x04\x01\x04\x02\x05\x01\x01\x02", // 舺
+ 0x823b: "\x03\x03\x05\x04\x01\x04\x02\x01\x05\x01\x03", // 舻
+ 0x823c: "\x03\x03\x05\x04\x01\x04\x01\x02\x02\x01\x03\x04", // 舼
+ 0x823d: "\x03\x03\x05\x04\x01\x04\x03\x05\x04\x01\x05\x02", // 舽
+ 0x823e: "\x03\x03\x05\x04\x01\x04\x01\x02\x05\x03\x05\x01", // 舾
+ 0x823f: "\x03\x03\x05\x04\x01\x04\x01\x03\x04\x01\x01\x05", // 舿
+ 0x8240: "\x03\x03\x05\x04\x01\x04\x03\x04\x04\x03\x05\x02\x01", // 艀
+ 0x8241: "\x03\x03\x05\x04\x01\x04\x03\x01\x02\x01\x02\x05\x01", // 艁
+ 0x8242: "\x03\x03\x05\x04\x01\x04\x03\x05\x04\x01\x01\x01\x02", // 艂
+ 0x8243: "\x03\x03\x05\x04\x01\x04\x02\x05\x01\x01\x02\x01\x01", // 艃
+ 0x8244: "\x03\x03\x05\x04\x01\x04\x02\x04\x03\x02\x05\x01\x01", // 艄
+ 0x8245: "\x03\x03\x05\x04\x01\x04\x03\x04\x01\x01\x02\x03\x04", // 艅
+ 0x8246: "\x03\x03\x05\x04\x01\x04\x04\x05\x01\x01\x05\x03\x04", // 艆
+ 0x8247: "\x03\x03\x05\x04\x01\x04\x03\x01\x02\x01\x05\x04", // 艇
+ 0x8248: "\x03\x03\x05\x04\x01\x04\x04\x01\x05\x04\x03\x02\x05", // 艈
+ 0x8249: "\x03\x03\x05\x04\x01\x04\x05\x01\x03\x03\x01\x01\x05", // 艉
+ 0x824a: "\x03\x03\x05\x04\x01\x04\x03\x02\x05\x01\x01\x02\x05\x02", // 艊
+ 0x824b: "\x03\x03\x05\x04\x01\x04\x05\x02\x01\x02\x05\x02\x02\x01", // 艋
+ 0x824c: "\x03\x03\x05\x04\x01\x04\x03\x04\x04\x05\x04\x05\x04\x04", // 艌
+ 0x824d: "\x03\x03\x05\x04\x01\x04\x05\x01\x03\x01\x02\x02\x05\x01", // 艍
+ 0x824e: "\x03\x03\x05\x04\x01\x04\x03\x02\x05\x01\x01\x01\x01\x02\x01", // 艎
+ 0x824f: "\x03\x03\x05\x04\x01\x04\x04\x03\x01\x03\x02\x05\x01\x01\x01", // 艏
+ 0x8250: "\x03\x03\x05\x04\x01\x04\x03\x04\x05\x02\x03\x04\x03\x05\x04", // 艐
+ 0x8251: "\x03\x03\x05\x04\x01\x04\x04\x05\x01\x03\x02\x05\x01\x02\x02", // 艑
+ 0x8252: "\x03\x03\x05\x04\x01\x04\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 艒
+ 0x8253: "\x03\x03\x05\x04\x01\x04\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 艓
+ 0x8254: "\x03\x03\x05\x04\x01\x04\x04\x01\x03\x01\x02\x02\x01\x05\x04", // 艔
+ 0x8255: "\x03\x03\x05\x04\x01\x04\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03", // 艕
+ 0x8256: "\x03\x03\x05\x04\x01\x04\x04\x03\x01\x01\x01\x03\x01\x02\x01", // 艖
+ 0x8257: "\x03\x03\x05\x04\x01\x04\x04\x03\x01\x03\x04\x02\x05\x02\x02\x01", // 艗
+ 0x8258: "\x03\x03\x05\x04\x01\x04\x03\x02\x01\x05\x01\x01\x02\x05\x04", // 艘
+ 0x8259: "\x03\x03\x05\x04\x01\x04\x03\x04\x04\x05\x01\x01\x03\x02\x05\x01", // 艙
+ 0x825a: "\x03\x03\x05\x04\x01\x04\x01\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01", // 艚
+ 0x825b: "\x03\x03\x05\x04\x01\x04\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 艛
+ 0x825c: "\x03\x03\x05\x04\x01\x04\x01\x03\x02\x02\x01\x05\x04\x05\x02\x05\x02", // 艜
+ 0x825d: "\x03\x03\x05\x04\x01\x04\x01\x04\x05\x02\x04\x04\x04\x04\x05\x01\x01", // 艝
+ 0x825e: "\x03\x03\x05\x04\x01\x04\x03\x01\x04\x03\x01\x04\x03\x04\x01\x05\x03\x04", // 艞
+ 0x825f: "\x03\x03\x05\x04\x01\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 艟
+ 0x8260: "\x03\x03\x05\x04\x01\x04\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 艠
+ 0x8261: "\x03\x03\x05\x04\x01\x04\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x01\x02\x01", // 艡
+ 0x8262: "\x03\x03\x05\x04\x01\x04\x01\x02\x03\x04\x03\x04\x01\x02\x05\x02\x05\x01\x01", // 艢
+ 0x8263: "\x03\x03\x05\x04\x01\x04\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x05\x03", // 艣
+ 0x8264: "\x03\x03\x05\x04\x01\x04\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01\x05\x03\x04", // 艤
+ 0x8265: "\x03\x03\x05\x04\x01\x04\x02\x05\x01\x01\x02\x02\x01\x01\x01\x05\x03\x04", // 艥
+ 0x8266: "\x03\x03\x05\x04\x01\x04\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01", // 艦
+ 0x8267: "\x03\x03\x05\x04\x01\x04\x01\x02\x02\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 艧
+ 0x8268: "\x03\x03\x05\x04\x01\x04\x01\x02\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 艨
+ 0x8269: "\x03\x03\x05\x04\x01\x04\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01", // 艩
+ 0x826a: "\x03\x03\x05\x04\x01\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01", // 艪
+ 0x826b: "\x03\x03\x05\x04\x01\x04\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 艫
+ 0x826c: "\x03\x03\x05\x04\x01\x04\x03\x05\x02\x05\x01\x01\x05\x03\x05\x03\x05\x02\x05\x01\x03\x05\x04", // 艬
+ 0x826d: "\x03\x03\x05\x04\x01\x04\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 艭
+ 0x826e: "\x05\x01\x01\x05\x03\x04", // 艮
+ 0x826f: "\x04\x05\x01\x01\x05\x03\x04", // 良
+ 0x8270: "\x05\x04\x05\x01\x01\x05\x03\x04", // 艰
+ 0x8271: "\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x05\x01\x01\x05\x03\x04", // 艱
+ 0x8272: "\x03\x05\x05\x02\x01\x05", // 色
+ 0x8273: "\x01\x01\x01\x02\x03\x05\x05\x02\x01\x05", // 艳
+ 0x8274: "\x05\x01\x05\x03\x02\x03\x05\x05\x02\x01\x05", // 艴
+ 0x8275: "\x04\x03\x01\x01\x03\x02\x03\x05\x05\x02\x01\x05", // 艵
+ 0x8276: "\x02\x05\x01\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01\x03\x05\x05\x02\x01\x05", // 艶
+ 0x8277: "\x01\x01\x01\x02\x02\x01\x01\x01\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01\x03\x05\x05\x02\x01\x05", // 艷
+ 0x8278: "\x05\x02\x03\x05\x02\x02", // 艸
+ 0x8279: "\x01\x02\x02", // 艹
+ 0x827a: "\x01\x02\x02\x05", // 艺
+ 0x827b: "\x01\x02\x02\x05\x03", // 艻
+ 0x827c: "\x01\x02\x02\x01\x02", // 艼
+ 0x827d: "\x01\x02\x02\x03\x05", // 艽
+ 0x827e: "\x01\x02\x02\x03\x04", // 艾
+ 0x827f: "\x01\x02\x02\x05\x03", // 艿
+ 0x8280: "\x01\x02\x02\x05\x03", // 芀
+ 0x8281: "\x01\x02\x02\x03\x05", // 芁
+ 0x8282: "\x01\x02\x02\x05\x02", // 节
+ 0x8283: "\x01\x02\x02\x03\x05\x04", // 芃
+ 0x8284: "\x01\x02\x02\x03\x05\x04", // 芄
+ 0x8285: "\x01\x02\x02\x01\x05\x04", // 芅
+ 0x8286: "\x01\x02\x02\x05\x04\x04", // 芆
+ 0x8287: "\x01\x02\x02\x02\x05\x02", // 芇
+ 0x8288: "\x02\x01\x02\x01\x01\x01\x02", // 芈
+ 0x8289: "\x01\x02\x02\x01\x01\x02", // 芉
+ 0x828a: "\x01\x02\x02\x03\x01\x02", // 芊
+ 0x828b: "\x01\x02\x02\x01\x01\x02", // 芋
+ 0x828c: "\x01\x02\x02\x01\x01\x05", // 芌
+ 0x828d: "\x01\x02\x02\x03\x05\x04", // 芍
+ 0x828e: "\x01\x02\x02\x05\x01\x05", // 芎
+ 0x828f: "\x01\x02\x02\x01\x02\x01", // 芏
+ 0x8290: "\x01\x02\x02\x01\x02\x04", // 芐
+ 0x8291: "\x01\x02\x02\x05\x01\x05", // 芑
+ 0x8292: "\x01\x02\x02\x04\x01\x05", // 芒
+ 0x8293: "\x01\x02\x02\x05\x02\x01", // 芓
+ 0x8294: "\x05\x02\x02\x05\x02\x03\x05\x02\x02", // 芔
+ 0x8295: "\x01\x02\x02\x03\x05\x04", // 芕
+ 0x8296: "\x01\x02\x02\x01\x03\x04", // 芖
+ 0x8297: "\x01\x02\x02\x05\x05\x03", // 芗
+ 0x8298: "\x01\x02\x02\x01\x05\x03\x05", // 芘
+ 0x8299: "\x01\x02\x02\x01\x01\x03\x04", // 芙
+ 0x829a: "\x01\x02\x02\x01\x05\x02\x05", // 芚
+ 0x829b: "\x01\x02\x02\x05\x01\x01\x03", // 芛
+ 0x829c: "\x01\x02\x02\x01\x01\x03\x05", // 芜
+ 0x829d: "\x01\x02\x02\x04\x05\x04", // 芝
+ 0x829e: "\x01\x02\x02\x03\x01\x01\x05", // 芞
+ 0x829f: "\x01\x02\x02\x03\x05\x05\x04", // 芟
+ 0x82a0: "\x01\x02\x02\x04\x01\x03\x04", // 芠
+ 0x82a1: "\x01\x02\x02\x03\x05\x03\x04", // 芡
+ 0x82a2: "\x01\x02\x02\x03\x02\x01\x01", // 芢
+ 0x82a3: "\x01\x02\x02\x01\x03\x02\x04", // 芣
+ 0x82a4: "\x01\x02\x02\x05\x02\x01\x05", // 芤
+ 0x82a5: "\x01\x02\x02\x03\x04\x03\x02", // 芥
+ 0x82a6: "\x01\x02\x02\x04\x05\x01\x03", // 芦
+ 0x82a7: "\x01\x02\x02\x05\x04\x05\x02", // 芧
+ 0x82a8: "\x01\x02\x02\x03\x05\x04", // 芨
+ 0x82a9: "\x01\x02\x02\x03\x04\x04\x05", // 芩
+ 0x82aa: "\x01\x02\x02\x03\x05\x01\x05", // 芪
+ 0x82ab: "\x01\x02\x02\x01\x01\x03\x05", // 芫
+ 0x82ac: "\x01\x02\x02\x03\x04\x05\x03", // 芬
+ 0x82ad: "\x01\x02\x02\x05\x02\x01\x05", // 芭
+ 0x82ae: "\x01\x02\x02\x02\x05\x03\x04", // 芮
+ 0x82af: "\x01\x02\x02\x04\x05\x04\x04", // 芯
+ 0x82b0: "\x01\x02\x02\x01\x02\x05\x04", // 芰
+ 0x82b1: "\x01\x02\x02\x03\x02\x03\x05", // 花
+ 0x82b2: "\x01\x02\x02\x03\x04\x03\x05", // 芲
+ 0x82b3: "\x01\x02\x02\x04\x01\x05\x03", // 芳
+ 0x82b4: "\x01\x02\x02\x03\x05\x03\x03", // 芴
+ 0x82b5: "\x01\x02\x02\x05\x01\x03\x04", // 芵
+ 0x82b6: "\x01\x02\x02\x03\x05\x05\x04", // 芶
+ 0x82b7: "\x01\x02\x02\x02\x01\x02\x01", // 芷
+ 0x82b8: "\x01\x02\x02\x01\x01\x05\x04", // 芸
+ 0x82b9: "\x01\x02\x02\x03\x03\x01\x02", // 芹
+ 0x82ba: "\x01\x02\x02\x03\x01\x03\x04", // 芺
+ 0x82bb: "\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03", // 芻
+ 0x82bc: "\x01\x02\x02\x03\x01\x01\x05", // 芼
+ 0x82bd: "\x01\x02\x02\x01\x05\x02\x03", // 芽
+ 0x82be: "\x01\x02\x02\x01\x02\x05\x02", // 芾
+ 0x82bf: "\x01\x02\x02\x03\x02\x05\x03", // 芿
+ 0x82c0: "\x01\x02\x02\x04\x01\x03\x05", // 苀
+ 0x82c1: "\x01\x02\x02\x03\x04\x03\x04", // 苁
+ 0x82c2: "\x01\x02\x02\x04\x03\x03\x04", // 苂
+ 0x82c3: "\x01\x02\x02\x01\x03\x05\x04", // 苃
+ 0x82c4: "\x01\x02\x02\x04\x01\x02\x04", // 苄
+ 0x82c5: "\x01\x02\x02\x03\x04\x02\x02", // 苅
+ 0x82c6: "\x01\x02\x02\x01\x05\x05\x03", // 苆
+ 0x82c7: "\x01\x02\x02\x01\x01\x05\x02", // 苇
+ 0x82c8: "\x01\x02\x02\x01\x03\x05\x03", // 苈
+ 0x82c9: "\x01\x02\x02\x01\x03\x05\x05", // 苉
+ 0x82ca: "\x01\x02\x02\x01\x03\x05\x05", // 苊
+ 0x82cb: "\x01\x02\x02\x02\x05\x03\x05", // 苋
+ 0x82cc: "\x01\x02\x02\x03\x01\x05\x04", // 苌
+ 0x82cd: "\x01\x02\x02\x03\x04\x05\x05", // 苍
+ 0x82ce: "\x01\x02\x02\x04\x04\x05\x01", // 苎
+ 0x82cf: "\x01\x02\x02\x05\x03\x04\x04", // 苏
+ 0x82d0: "\x01\x02\x02\x05\x01\x05\x02\x03", // 苐
+ 0x82d1: "\x01\x02\x02\x03\x05\x04\x05\x05", // 苑
+ 0x82d2: "\x01\x02\x02\x02\x05\x02\x01\x01", // 苒
+ 0x82d3: "\x01\x02\x02\x03\x04\x04\x05\x04", // 苓
+ 0x82d4: "\x01\x02\x02\x05\x04\x02\x05\x01", // 苔
+ 0x82d5: "\x01\x02\x02\x05\x03\x02\x05\x01", // 苕
+ 0x82d6: "\x01\x02\x02\x02\x05\x01\x02\x01", // 苖
+ 0x82d7: "\x01\x02\x02\x02\x05\x01\x02\x01", // 苗
+ 0x82d8: "\x01\x02\x02\x02\x05\x02\x05\x01", // 苘
+ 0x82d9: "\x01\x02\x02\x04\x01\x04\x03\x01", // 苙
+ 0x82da: "\x01\x02\x02\x03\x05\x01\x01\x02", // 苚
+ 0x82db: "\x01\x02\x02\x01\x02\x05\x01\x02", // 苛
+ 0x82dc: "\x01\x02\x02\x02\x05\x01\x01\x01", // 苜
+ 0x82dd: "\x01\x02\x02\x02\x01\x01\x03\x05", // 苝
+ 0x82de: "\x01\x02\x02\x03\x05\x05\x01\x05", // 苞
+ 0x82df: "\x01\x02\x02\x03\x05\x02\x05\x01", // 苟
+ 0x82e0: "\x01\x02\x02\x05\x01\x05\x01\x05", // 苠
+ 0x82e1: "\x01\x02\x02\x05\x04\x03\x04", // 苡
+ 0x82e2: "\x01\x02\x02\x02\x05\x01\x05\x01", // 苢
+ 0x82e3: "\x01\x02\x02\x01\x05\x01\x05", // 苣
+ 0x82e4: "\x01\x02\x02\x01\x03\x02\x04\x01", // 苤
+ 0x82e5: "\x01\x02\x02\x01\x03\x02\x05\x01", // 若
+ 0x82e6: "\x01\x02\x02\x01\x02\x02\x05\x01", // 苦
+ 0x82e7: "\x01\x02\x02\x04\x04\x05\x01\x02", // 苧
+ 0x82e8: "\x01\x02\x02\x05\x01\x03\x03\x05", // 苨
+ 0x82e9: "\x01\x02\x02\x03\x02\x05\x01\x01", // 苩
+ 0x82ea: "\x01\x02\x02\x01\x02\x05\x03\x04", // 苪
+ 0x82eb: "\x01\x02\x02\x02\x01\x02\x05\x01", // 苫
+ 0x82ec: "\x01\x02\x02\x02\x05\x03\x04\x01", // 苬
+ 0x82ed: "\x01\x02\x02\x05\x05\x04\x05\x03", // 苭
+ 0x82ee: "\x01\x02\x02\x03\x02\x02\x05\x02", // 苮
+ 0x82ef: "\x01\x02\x02\x01\x02\x03\x04\x01", // 苯
+ 0x82f0: "\x01\x02\x02\x05\x01\x05\x05\x04", // 苰
+ 0x82f1: "\x01\x02\x02\x02\x05\x01\x03\x04", // 英
+ 0x82f2: "\x01\x02\x02\x03\x01\x02\x01\x01", // 苲
+ 0x82f3: "\x01\x02\x02\x03\x05\x04\x04\x04", // 苳
+ 0x82f4: "\x01\x02\x02\x02\x05\x01\x01\x01", // 苴
+ 0x82f5: "\x01\x02\x02\x03\x01\x01\x03\x04", // 苵
+ 0x82f6: "\x01\x02\x02\x03\x04\x02\x03\x04", // 苶
+ 0x82f7: "\x01\x02\x02\x01\x02\x02\x01\x01", // 苷
+ 0x82f8: "\x01\x02\x02\x03\x04\x03\x01\x02", // 苸
+ 0x82f9: "\x01\x02\x02\x01\x04\x03\x01\x02", // 苹
+ 0x82fa: "\x01\x02\x02\x05\x05\x04\x01\x04", // 苺
+ 0x82fb: "\x01\x02\x02\x03\x02\x01\x02\x04", // 苻
+ 0x82fc: "\x01\x02\x02\x03\x01\x01\x02\x01", // 苼
+ 0x82fd: "\x01\x02\x02\x03\x03\x05\x04\x04", // 苽
+ 0x82fe: "\x01\x02\x02\x04\x05\x04\x03\x04", // 苾
+ 0x82ff: "\x01\x02\x02\x01\x01\x02\x03\x04", // 苿
+ 0x8300: "\x01\x02\x02\x05\x01\x05\x03\x02", // 茀
+ 0x8301: "\x01\x02\x02\x05\x02\x02\x05\x02", // 茁
+ 0x8302: "\x01\x02\x02\x01\x03\x05\x03\x04", // 茂
+ 0x8303: "\x01\x02\x02\x04\x04\x01\x05\x05", // 范
+ 0x8304: "\x01\x02\x02\x05\x03\x02\x05\x01", // 茄
+ 0x8305: "\x01\x02\x02\x05\x04\x05\x02\x03", // 茅
+ 0x8306: "\x01\x02\x02\x03\x05\x03\x05\x02", // 茆
+ 0x8307: "\x01\x02\x02\x01\x03\x05\x04\x04", // 茇
+ 0x8308: "\x01\x02\x02\x02\x01\x02\x01\x03\x05", // 茈
+ 0x8309: "\x01\x02\x02\x01\x01\x02\x03\x04", // 茉
+ 0x830a: "\x01\x02\x02\x03\x02\x01\x02\x01", // 茊
+ 0x830b: "\x01\x02\x02\x03\x05\x01\x05\x04", // 茋
+ 0x830c: "\x01\x02\x02\x03\x02\x01\x02\x01", // 茌
+ 0x830d: "\x02\x01\x02\x01\x03\x05\x02\x05\x01", // 茍
+ 0x830e: "\x01\x02\x02\x05\x04\x01\x02\x01", // 茎
+ 0x830f: "\x01\x02\x02\x01\x03\x05\x03\x04", // 茏
+ 0x8310: "\x01\x02\x02\x03\x05\x03\x03\x04", // 茐
+ 0x8311: "\x01\x02\x02\x03\x05\x04\x05\x01", // 茑
+ 0x8312: "\x01\x02\x02\x03\x05\x04\x05\x02", // 茒
+ 0x8313: "\x01\x02\x02\x04\x04\x05\x03\x04", // 茓
+ 0x8314: "\x01\x02\x02\x04\x05\x01\x02\x01", // 茔
+ 0x8315: "\x01\x02\x02\x04\x05\x05\x01\x02", // 茕
+ 0x8316: "\x01\x02\x02\x03\x05\x04\x02\x05\x01", // 茖
+ 0x8317: "\x01\x02\x02\x03\x05\x04\x02\x05\x01", // 茗
+ 0x8318: "\x01\x02\x02\x05\x03\x05\x03\x05\x03", // 茘
+ 0x8319: "\x01\x02\x02\x01\x01\x03\x05\x03\x04", // 茙
+ 0x831a: "\x01\x02\x02\x03\x05\x01\x05\x02", // 茚
+ 0x831b: "\x01\x02\x02\x05\x01\x01\x05\x03\x04", // 茛
+ 0x831c: "\x01\x02\x02\x01\x02\x05\x03\x05\x01", // 茜
+ 0x831d: "\x01\x02\x02\x01\x02\x02\x05\x01\x02\x05", // 茝
+ 0x831e: "\x01\x02\x02\x01\x02\x05\x01\x02\x05", // 茞
+ 0x831f: "\x01\x02\x02\x05\x01\x01\x01\x01\x02", // 茟
+ 0x8320: "\x01\x02\x02\x03\x02\x01\x02\x03\x04", // 茠
+ 0x8321: "\x01\x02\x02\x04\x04\x05\x05\x02\x01", // 茡
+ 0x8322: "\x01\x02\x02\x01\x03\x05\x04\x02\x02", // 茢
+ 0x8323: "\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 茣
+ 0x8324: "\x01\x02\x02\x03\x05\x04\x03\x05\x04", // 茤
+ 0x8325: "\x01\x02\x02\x01\x02\x01\x01\x02\x01", // 茥
+ 0x8326: "\x01\x02\x02\x01\x02\x05\x02\x03\x04", // 茦
+ 0x8327: "\x01\x02\x02\x02\x05\x01\x02\x01\x04", // 茧
+ 0x8328: "\x01\x02\x02\x04\x01\x03\x05\x03\x04", // 茨
+ 0x8329: "\x01\x02\x02\x03\x03\x01\x02\x05\x01", // 茩
+ 0x832a: "\x01\x02\x02\x02\x04\x03\x01\x03\x05", // 茪
+ 0x832b: "\x01\x02\x02\x04\x04\x01\x04\x01\x05", // 茫
+ 0x832c: "\x01\x02\x02\x01\x03\x02\x01\x02\x01", // 茬
+ 0x832d: "\x01\x02\x02\x04\x01\x03\x04\x03\x04", // 茭
+ 0x832e: "\x01\x02\x02\x02\x01\x01\x02\x03\x04", // 茮
+ 0x832f: "\x01\x02\x02\x03\x02\x01\x03\x04\x04", // 茯
+ 0x8330: "\x01\x02\x02\x02\x05\x01\x01\x03\x04", // 茰
+ 0x8331: "\x01\x02\x02\x03\x01\x01\x02\x03\x04", // 茱
+ 0x8332: "\x01\x02\x02\x05\x05\x04\x05\x05\x04", // 茲
+ 0x8333: "\x01\x02\x02\x04\x04\x01\x01\x02\x01", // 茳
+ 0x8334: "\x01\x02\x02\x02\x05\x02\x05\x01\x01", // 茴
+ 0x8335: "\x01\x02\x02\x02\x05\x01\x03\x04\x01", // 茵
+ 0x8336: "\x01\x02\x02\x03\x04\x01\x02\x03\x04", // 茶
+ 0x8337: "\x01\x02\x02\x03\x02\x01\x05\x03\x04", // 茷
+ 0x8338: "\x01\x02\x02\x01\x02\x02\x01\x01\x01", // 茸
+ 0x8339: "\x01\x02\x02\x05\x03\x01\x02\x05\x01", // 茹
+ 0x833a: "\x01\x02\x02\x04\x01\x05\x04\x03\x05", // 茺
+ 0x833b: "\x05\x02\x03\x05\x02\x02\x05\x02\x03\x05\x02\x02", // 茻
+ 0x833c: "\x01\x02\x02\x02\x05\x01\x02\x05\x01", // 茼
+ 0x833d: "\x01\x02\x02\x03\x02\x02\x05\x01\x02", // 茽
+ 0x833e: "\x01\x02\x02\x01\x01\x03\x02", // 茾
+ 0x833f: "\x01\x02\x02\x01\x02\x01\x03\x05\x04", // 茿
+ 0x8340: "\x01\x02\x02\x03\x05\x02\x05\x01\x01", // 荀
+ 0x8341: "\x01\x02\x02\x01\x02\x05\x01\x01\x01", // 荁
+ 0x8342: "\x01\x02\x02\x01\x03\x04\x01\x01\x05", // 荂
+ 0x8343: "\x01\x02\x02\x03\x04\x01\x01\x02\x01", // 荃
+ 0x8344: "\x01\x02\x02\x04\x01\x05\x03\x03\x04", // 荄
+ 0x8345: "\x01\x02\x02\x03\x04\x01\x02\x05\x01", // 荅
+ 0x8346: "\x01\x02\x02\x01\x01\x03\x02\x02\x02", // 荆
+ 0x8347: "\x01\x02\x02\x03\x03\x02\x01\x01\x02", // 荇
+ 0x8348: "\x01\x02\x02\x03\x05\x04\x01\x05\x02", // 荈
+ 0x8349: "\x01\x02\x02\x02\x05\x01\x01\x01\x02", // 草
+ 0x834a: "\x01\x02\x02\x01\x01\x03\x02\x02\x02", // 荊
+ 0x834b: "\x01\x02\x02\x01\x03\x02\x05\x02\x02", // 荋
+ 0x834c: "\x01\x02\x02\x04\x04\x05\x05\x03\x01", // 荌
+ 0x834d: "\x01\x02\x02\x05\x02\x03\x01\x03\x04", // 荍
+ 0x834e: "\x01\x02\x02\x01\x05\x04\x01\x02\x01", // 荎
+ 0x834f: "\x01\x02\x02\x03\x02\x03\x01\x02\x01", // 荏
+ 0x8350: "\x01\x02\x02\x01\x03\x02\x05\x02\x01", // 荐
+ 0x8351: "\x01\x02\x02\x01\x05\x01\x05\x03\x04", // 荑
+ 0x8352: "\x01\x02\x02\x04\x01\x05\x03\x02\x05", // 荒
+ 0x8353: "\x01\x02\x02\x04\x03\x01\x01\x03\x02", // 荓
+ 0x8354: "\x01\x02\x02\x05\x03\x05\x03\x05\x03", // 荔
+ 0x8355: "\x01\x02\x02\x03\x05\x01\x01\x05\x03", // 荕
+ 0x8356: "\x01\x02\x02\x01\x02\x01\x03\x03\x05", // 荖
+ 0x8357: "\x01\x02\x02\x01\x03\x04\x05\x03\x04", // 荗
+ 0x8358: "\x01\x02\x02\x04\x01\x02\x01\x02\x01", // 荘
+ 0x8359: "\x01\x02\x02\x01\x03\x04\x04\x05\x04", // 荙
+ 0x835a: "\x01\x02\x02\x01\x04\x03\x01\x03\x04", // 荚
+ 0x835b: "\x01\x02\x02\x01\x05\x03\x01\x03\x05", // 荛
+ 0x835c: "\x01\x02\x02\x01\x05\x03\x05\x01\x02", // 荜
+ 0x835d: "\x01\x02\x02\x02\x05\x03\x04\x02\x02", // 荝
+ 0x835e: "\x01\x02\x02\x03\x01\x03\x04\x03\x02", // 荞
+ 0x835f: "\x01\x02\x02\x03\x04\x01\x01\x05\x04", // 荟
+ 0x8360: "\x01\x02\x02\x04\x01\x03\x04\x03\x02", // 荠
+ 0x8361: "\x01\x02\x02\x04\x04\x01\x05\x03\x03", // 荡
+ 0x8362: "\x01\x02\x02\x04\x04\x05\x01\x01\x02", // 荢
+ 0x8363: "\x01\x02\x02\x04\x05\x01\x02\x03\x04", // 荣
+ 0x8364: "\x01\x02\x02\x04\x05\x01\x05\x01\x02", // 荤
+ 0x8365: "\x01\x02\x02\x04\x05\x02\x05\x03\x04", // 荥
+ 0x8366: "\x01\x02\x02\x04\x05\x03\x01\x01\x02", // 荦
+ 0x8367: "\x01\x02\x02\x04\x05\x04\x03\x03\x04", // 荧
+ 0x8368: "\x01\x02\x02\x05\x01\x01\x01\x02\x04", // 荨
+ 0x8369: "\x01\x02\x02\x05\x01\x03\x04\x04\x04", // 荩
+ 0x836a: "\x01\x02\x02\x05\x02\x01\x02\x03\x04", // 荪
+ 0x836b: "\x01\x02\x02\x05\x02\x03\x05\x01\x01", // 荫
+ 0x836c: "\x01\x02\x02\x05\x04\x04\x01\x03\x04", // 荬
+ 0x836d: "\x01\x02\x02\x05\x05\x01\x01\x02\x01", // 荭
+ 0x836e: "\x01\x02\x02\x05\x05\x01\x01\x02\x04", // 荮
+ 0x836f: "\x01\x02\x02\x05\x05\x01\x03\x05\x04", // 药
+ 0x8370: "\x01\x02\x02\x01\x02\x03\x04\x01\x02\x01", // 荰
+ 0x8371: "\x01\x02\x02\x05\x01\x03\x03\x01\x01\x05", // 荱
+ 0x8372: "\x01\x02\x02\x02\x05\x01\x01\x02\x01\x01", // 荲
+ 0x8373: "\x01\x02\x02\x01\x02\x05\x01\x04\x03\x01", // 荳
+ 0x8374: "\x01\x02\x02\x01\x02\x01\x01\x01\x03\x04", // 荴
+ 0x8375: "\x01\x02\x02\x05\x03\x04\x04\x05\x04\x04", // 荵
+ 0x8376: "\x01\x02\x02\x02\x05\x01\x03\x04\x04\x05", // 荶
+ 0x8377: "\x01\x02\x02\x03\x02\x01\x02\x05\x01\x02", // 荷
+ 0x8378: "\x01\x02\x02\x01\x02\x04\x05\x05\x02\x01", // 荸
+ 0x8379: "\x01\x02\x02\x02\x01\x02\x01\x02\x03\x03", // 荹
+ 0x837a: "\x01\x02\x02\x01\x02\x01\x03\x05\x04\x01", // 荺
+ 0x837b: "\x01\x02\x02\x03\x05\x03\x04\x03\x03\x04", // 荻
+ 0x837c: "\x01\x02\x02\x03\x04\x01\x01\x02\x03\x04", // 荼
+ 0x837d: "\x01\x02\x02\x03\x04\x04\x03\x05\x03\x01", // 荽
+ 0x837e: "\x01\x02\x02\x05\x04\x03\x04\x03\x05\x04", // 荾
+ 0x837f: "\x01\x02\x02\x01\x03\x05\x05\x03\x04", // 荿
+ 0x8380: "\x01\x02\x02\x01\x03\x01\x01\x05\x03\x04", // 莀
+ 0x8381: "\x01\x02\x02\x01\x02\x03\x04\x03\x04\x01", // 莁
+ 0x8382: "\x01\x02\x02\x02\x05\x01\x05\x03\x02\x02", // 莂
+ 0x8383: "\x01\x02\x02\x03\x04\x01\x03\x02\x05\x02", // 莃
+ 0x8384: "\x01\x02\x02\x01\x02\x05\x01\x01\x03\x04", // 莄
+ 0x8385: "\x01\x02\x02\x03\x02\x04\x01\x04\x03\x01", // 莅
+ 0x8386: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04", // 莆
+ 0x8387: "\x01\x02\x02\x02\x05\x01\x01\x01\x05\x03", // 莇
+ 0x8388: "\x01\x02\x02\x04\x04\x01\x03\x05\x05\x04", // 莈
+ 0x8389: "\x01\x02\x02\x03\x01\x02\x03\x04\x02\x02", // 莉
+ 0x838a: "\x01\x02\x02\x05\x02\x01\x03\x01\x02\x01", // 莊
+ 0x838b: "\x01\x02\x02\x03\x02\x03\x01\x02\x01\x01", // 莋
+ 0x838c: "\x01\x02\x02\x04\x03\x02\x05\x01\x03\x05", // 莌
+ 0x838d: "\x01\x02\x02\x01\x02\x04\x01\x03\x04\x04", // 莍
+ 0x838e: "\x01\x02\x02\x04\x04\x01\x02\x03\x04\x03", // 莎
+ 0x838f: "\x01\x02\x02\x01\x02\x01\x02\x03\x04\x03", // 莏
+ 0x8390: "\x01\x02\x02\x04\x04\x01\x04\x05\x03\x05", // 莐
+ 0x8391: "\x01\x02\x02\x03\x05\x04\x01\x01\x01\x02", // 莑
+ 0x8392: "\x01\x02\x02\x02\x05\x01\x02\x05\x01", // 莒
+ 0x8393: "\x01\x02\x02\x03\x01\x05\x05\x04\x01\x04", // 莓
+ 0x8394: "\x01\x02\x02\x02\x05\x03\x04\x02\x05\x01", // 莔
+ 0x8395: "\x01\x02\x02\x01\x02\x03\x04\x02\x05\x01", // 莕
+ 0x8396: "\x01\x02\x02\x01\x05\x05\x05\x01\x02\x01", // 莖
+ 0x8397: "\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 莗
+ 0x8398: "\x01\x02\x02\x04\x01\x04\x03\x01\x01\x02", // 莘
+ 0x8399: "\x01\x02\x02\x05\x01\x01\x03\x02\x05\x01", // 莙
+ 0x839a: "\x01\x02\x02\x03\x02\x01\x05\x05\x04", // 莚
+ 0x839b: "\x01\x02\x02\x03\x01\x02\x01\x05\x04", // 莛
+ 0x839c: "\x01\x02\x02\x03\x02\x02\x03\x01\x03\x04", // 莜
+ 0x839d: "\x01\x02\x02\x03\x04\x03\x04\x01\x02\x01", // 莝
+ 0x839e: "\x01\x02\x02\x04\x04\x05\x01\x01\x03\x05", // 莞
+ 0x839f: "\x01\x02\x02\x03\x04\x04\x05\x02\x05\x01", // 莟
+ 0x83a0: "\x01\x02\x02\x03\x01\x02\x03\x04\x05\x03", // 莠
+ 0x83a1: "\x01\x02\x02\x02\x05\x01\x02\x01\x03\x04", // 莡
+ 0x83a2: "\x01\x02\x02\x01\x03\x04\x03\x04\x03\x04", // 莢
+ 0x83a3: "\x01\x02\x02\x04\x01\x05\x04\x05\x04\x04", // 莣
+ 0x83a4: "\x01\x02\x02\x01\x02\x05\x03\x05\x01\x01", // 莤
+ 0x83a5: "\x01\x02\x02\x03\x05\x03\x05\x02\x01\x01", // 莥
+ 0x83a6: "\x01\x02\x02\x02\x04\x03\x02\x05\x01\x01", // 莦
+ 0x83a7: "\x01\x02\x02\x02\x05\x01\x01\x01\x03\x05", // 莧
+ 0x83a8: "\x01\x02\x02\x04\x05\x01\x01\x05\x03\x04", // 莨
+ 0x83a9: "\x01\x02\x02\x03\x04\x04\x03\x05\x02\x01", // 莩
+ 0x83aa: "\x01\x02\x02\x03\x01\x02\x01\x05\x03\x04", // 莪
+ 0x83ab: "\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 莫
+ 0x83ac: "\x01\x02\x02\x03\x05\x02\x05\x01\x03\x05", // 莬
+ 0x83ad: "\x01\x02\x02\x05\x01\x01\x05\x04\x05\x02", // 莭
+ 0x83ae: "\x01\x02\x02\x02\x05\x01\x02\x01\x05\x03", // 莮
+ 0x83af: "\x01\x02\x02\x04\x04\x01\x01\x02\x03\x04", // 莯
+ 0x83b0: "\x01\x02\x02\x01\x02\x01\x03\x05\x03\x04", // 莰
+ 0x83b1: "\x01\x02\x02\x01\x04\x03\x01\x02\x03\x04", // 莱
+ 0x83b2: "\x01\x02\x02\x01\x05\x01\x02\x04\x05\x04", // 莲
+ 0x83b3: "\x01\x02\x02\x02\x05\x01\x01\x01\x02\x04", // 莳
+ 0x83b4: "\x01\x02\x02\x02\x05\x01\x02\x05\x03\x04", // 莴
+ 0x83b5: "\x01\x02\x02\x03\x02\x05\x01\x03\x05\x04", // 莵
+ 0x83b6: "\x01\x02\x02\x03\x04\x01\x04\x04\x03\x01", // 莶
+ 0x83b7: "\x01\x02\x02\x03\x05\x03\x01\x03\x04\x04", // 获
+ 0x83b8: "\x01\x02\x02\x03\x05\x03\x01\x03\x05\x04", // 莸
+ 0x83b9: "\x01\x02\x02\x04\x05\x01\x01\x02\x01\x04", // 莹
+ 0x83ba: "\x01\x02\x02\x04\x05\x03\x05\x04\x05\x01", // 莺
+ 0x83bb: "\x01\x02\x02\x05\x03\x02\x05\x01\x03\x05", // 莻
+ 0x83bc: "\x01\x02\x02\x05\x05\x01\x01\x05\x02\x05", // 莼
+ 0x83bd: "\x01\x02\x02\x01\x03\x04\x04\x01\x03\x02", // 莽
+ 0x83be: "\x01\x02\x02\x01\x03\x04\x01\x02\x01\x03\x02", // 莾
+ 0x83bf: "\x01\x02\x02\x01\x02\x05\x02\x03\x04\x02\x02", // 莿
+ 0x83c0: "\x01\x02\x02\x04\x04\x05\x03\x05\x04\x05\x05", // 菀
+ 0x83c1: "\x01\x02\x02\x01\x01\x02\x01\x02\x05\x01\x01", // 菁
+ 0x83c2: "\x01\x02\x02\x03\x02\x05\x01\x01\x03\x05\x04", // 菂
+ 0x83c3: "\x01\x02\x02\x04\x04\x01\x01\x05\x01\x05", // 菃
+ 0x83c4: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x04", // 菄
+ 0x83c5: "\x01\x02\x02\x04\x04\x05\x02\x05\x01\x05\x01", // 菅
+ 0x83c6: "\x01\x02\x02\x01\x02\x02\x01\x01\x01\x05\x04", // 菆
+ 0x83c7: "\x01\x02\x02\x05\x03\x01\x01\x02\x02\x05\x01", // 菇
+ 0x83c8: "\x01\x02\x02\x01\x02\x01\x04\x01\x04\x03\x01", // 菈
+ 0x83c9: "\x01\x02\x02\x05\x01\x01\x02\x04\x01\x03\x04", // 菉
+ 0x83ca: "\x01\x02\x02\x03\x05\x04\x03\x01\x02\x03\x04", // 菊
+ 0x83cb: "\x01\x02\x02\x02\x05\x01\x01\x01\x02\x03\x04", // 菋
+ 0x83cc: "\x01\x02\x02\x02\x05\x03\x01\x02\x03\x04\x01", // 菌
+ 0x83cd: "\x01\x02\x02\x03\x04\x04\x05\x04\x05\x04\x04", // 菍
+ 0x83ce: "\x01\x02\x02\x02\x05\x01\x01\x01\x05\x03\x05", // 菎
+ 0x83cf: "\x01\x02\x02\x04\x04\x01\x01\x02\x05\x01\x02", // 菏
+ 0x83d0: "\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 菐
+ 0x83d1: "\x01\x02\x02\x05\x05\x05\x02\x05\x01\x02\x01", // 菑
+ 0x83d2: "\x01\x02\x02\x02\x05\x01\x01\x01\x02\x03\x04", // 菒
+ 0x83d3: "\x01\x02\x02\x02\x05\x01\x01\x01\x02\x03\x04", // 菓
+ 0x83d4: "\x01\x02\x02\x03\x05\x01\x01\x05\x02\x05\x04", // 菔
+ 0x83d5: "\x01\x02\x02\x03\x05\x01\x02\x05\x01\x02\x02", // 菕
+ 0x83d6: "\x01\x02\x02\x02\x05\x01\x01\x02\x05\x01\x01", // 菖
+ 0x83d7: "\x01\x02\x02\x01\x02\x01\x02\x05\x01\x02\x01", // 菗
+ 0x83d8: "\x01\x02\x02\x01\x02\x03\x04\x03\x04\x05\x04", // 菘
+ 0x83d9: "\x01\x02\x02\x03\x01\x02\x01\x02\x02\x01\x01", // 菙
+ 0x83da: "\x01\x02\x02\x01\x05\x03\x04\x01\x05\x03\x04", // 菚
+ 0x83db: "\x01\x02\x02\x02\x05\x01\x01\x02\x05\x01\x01", // 菛
+ 0x83dc: "\x01\x02\x02\x03\x04\x04\x03\x01\x02\x03\x04", // 菜
+ 0x83dd: "\x01\x02\x02\x01\x02\x01\x01\x03\x05\x04\x04", // 菝
+ 0x83de: "\x01\x02\x02\x03\x01\x02\x03\x04\x03\x05\x03", // 菞
+ 0x83df: "\x01\x02\x02\x03\x05\x02\x05\x01\x03\x05\x04", // 菟
+ 0x83e0: "\x01\x02\x02\x04\x04\x01\x05\x03\x02\x05\x04", // 菠
+ 0x83e1: "\x01\x02\x02\x05\x02\x04\x01\x03\x04\x05\x02", // 菡
+ 0x83e2: "\x01\x02\x02\x01\x02\x01\x03\x05\x05\x01\x05", // 菢
+ 0x83e3: "\x01\x02\x02\x01\x02\x05\x01\x02\x05\x05\x04", // 菣
+ 0x83e4: "\x01\x02\x02\x04\x03\x01\x01\x03\x04\x05\x05", // 菤
+ 0x83e5: "\x01\x02\x02\x01\x02\x03\x04\x03\x03\x01\x02", // 菥
+ 0x83e6: "\x01\x02\x02\x03\x03\x01\x02\x04\x05\x04", // 菦
+ 0x83e7: "\x01\x02\x02\x04\x01\x03\x03\x05\x01\x05\x04", // 菧
+ 0x83e8: "\x01\x02\x02\x04\x01\x04\x03\x01\x05\x03\x01", // 菨
+ 0x83e9: "\x01\x02\x02\x04\x01\x04\x03\x01\x02\x05\x01", // 菩
+ 0x83ea: "\x01\x02\x02\x04\x04\x05\x01\x03\x02\x05\x01", // 菪
+ 0x83eb: "\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01", // 菫
+ 0x83ec: "\x01\x02\x02\x04\x04\x01\x05\x03\x02\x05\x01", // 菬
+ 0x83ed: "\x01\x02\x02\x04\x04\x01\x05\x04\x02\x05\x01", // 菭
+ 0x83ee: "\x01\x02\x02\x04\x01\x03\x05\x01\x01\x03\x04", // 菮
+ 0x83ef: "\x01\x02\x02\x01\x01\x02\x02\x01\x01\x02", // 華
+ 0x83f0: "\x01\x02\x02\x05\x02\x01\x03\x03\x05\x04\x04", // 菰
+ 0x83f1: "\x01\x02\x02\x01\x02\x01\x03\x04\x03\x05\x04", // 菱
+ 0x83f2: "\x01\x02\x02\x02\x01\x01\x01\x02\x01\x01\x01", // 菲
+ 0x83f3: "\x01\x02\x02\x03\x04\x01\x01\x02\x04\x03\x01", // 菳
+ 0x83f4: "\x01\x02\x02\x01\x03\x04\x02\x05\x01\x01\x05", // 菴
+ 0x83f5: "\x01\x02\x02\x02\x05\x04\x03\x01\x04\x01\x05", // 菵
+ 0x83f6: "\x01\x02\x02\x01\x01\x01\x03\x04\x01\x01\x02", // 菶
+ 0x83f7: "\x01\x02\x02\x05\x01\x01\x04\x05\x02\x05\x02", // 菷
+ 0x83f8: "\x01\x02\x02\x04\x01\x05\x03\x03\x04\x04\x04", // 菸
+ 0x83f9: "\x01\x02\x02\x04\x04\x01\x02\x05\x01\x01\x01", // 菹
+ 0x83fa: "\x01\x02\x02\x04\x05\x01\x03\x02\x05\x01\x01", // 菺
+ 0x83fb: "\x01\x02\x02\x01\x02\x03\x04\x01\x02\x03\x04", // 菻
+ 0x83fc: "\x01\x02\x02\x04\x03\x03\x04\x04\x03\x03\x04", // 菼
+ 0x83fd: "\x01\x02\x02\x02\x01\x01\x02\x03\x04\x05\x04", // 菽
+ 0x83fe: "\x01\x02\x02\x01\x01\x03\x04\x02\x04\x04\x04", // 菾
+ 0x83ff: "\x01\x02\x02\x01\x05\x04\x01\x02\x01\x02\x02", // 菿
+ 0x8400: "\x01\x02\x02\x02\x01\x05\x03\x01\x05\x03\x05", // 萀
+ 0x8401: "\x01\x02\x02\x01\x02\x02\x01\x01\x01\x03\x04", // 萁
+ 0x8402: "\x01\x02\x02\x03\x01\x02\x03\x04\x02\x05\x01", // 萂
+ 0x8403: "\x01\x02\x02\x04\x01\x03\x04\x03\x04\x01\x02", // 萃
+ 0x8404: "\x01\x02\x02\x03\x05\x03\x01\x01\x02\x05\x02", // 萄
+ 0x8405: "\x01\x02\x02\x01\x05\x02\x05\x02\x05\x01\x01", // 萅
+ 0x8406: "\x01\x02\x02\x03\x02\x05\x01\x01\x03\x01\x02", // 萆
+ 0x8407: "\x01\x02\x02\x01\x02\x01\x01\x01\x05\x03\x04", // 萇
+ 0x8408: "\x01\x02\x02\x02\x05\x01\x01\x01\x03\x05\x04", // 萈
+ 0x8409: "\x01\x02\x02\x03\x05\x01\x01\x05\x02\x01\x05", // 萉
+ 0x840a: "\x01\x02\x02\x01\x03\x04\x03\x04\x02\x03\x04", // 萊
+ 0x840b: "\x01\x02\x02\x01\x05\x01\x01\x02\x05\x03\x01", // 萋
+ 0x840c: "\x01\x02\x02\x02\x05\x01\x01\x03\x05\x01\x01", // 萌
+ 0x840d: "\x01\x02\x02\x04\x04\x01\x01\x04\x03\x01\x02", // 萍
+ 0x840e: "\x01\x02\x02\x03\x01\x02\x03\x04\x05\x03\x01", // 萎
+ 0x840f: "\x01\x02\x02\x03\x05\x03\x01\x02\x05\x01\x01", // 萏
+ 0x8410: "\x01\x02\x02\x01\x05\x01\x01\x02\x01\x03\x04", // 萐
+ 0x8411: "\x01\x02\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 萑
+ 0x8412: "\x01\x02\x02\x04\x01\x03\x04\x05\x04\x03\x05", // 萒
+ 0x8413: "\x01\x02\x02\x04\x04\x05\x02\x05\x01\x01\x01", // 萓
+ 0x8414: "\x01\x02\x02\x01\x02\x01\x05\x03\x02\x05\x01", // 萔
+ 0x8415: "\x01\x02\x02\x04\x01\x03\x04\x03\x02\x01\x01", // 萕
+ 0x8416: "\x01\x02\x02\x03\x02\x01\x05\x01\x01\x03\x05", // 萖
+ 0x8417: "\x01\x02\x02\x04\x04\x05\x01\x01\x02\x03\x04", // 萗
+ 0x8418: "\x01\x02\x02\x01\x03\x04\x01\x01\x02\x03\x04", // 萘
+ 0x8419: "\x01\x02\x02\x01\x02\x03\x04\x04\x05\x03\x05", // 萙
+ 0x841a: "\x01\x02\x02\x01\x02\x01\x05\x04\x01\x01\x02", // 萚
+ 0x841b: "\x01\x02\x02\x02\x05\x01\x01\x01\x01\x03\x02", // 萛
+ 0x841c: "\x01\x02\x02\x02\x05\x02\x02\x01\x02\x05\x01", // 萜
+ 0x841d: "\x01\x02\x02\x02\x05\x02\x02\x01\x03\x05\x04", // 萝
+ 0x841e: "\x01\x02\x02\x02\x05\x03\x04\x01\x05\x03\x05", // 萞
+ 0x841f: "\x01\x02\x02\x03\x01\x02\x03\x04\x03\x05\x04", // 萟
+ 0x8420: "\x01\x02\x02\x03\x05\x01\x01\x03\x05\x01\x01", // 萠
+ 0x8421: "\x01\x02\x02\x04\x04\x01\x03\x02\x05\x01\x01", // 萡
+ 0x8422: "\x01\x02\x02\x04\x04\x01\x03\x05\x05\x01\x05", // 萢
+ 0x8423: "\x01\x02\x02\x04\x04\x05\x01\x02\x01\x03\x04", // 萣
+ 0x8424: "\x01\x02\x02\x04\x05\x02\x05\x01\x02\x01\x04", // 萤
+ 0x8425: "\x01\x02\x02\x04\x05\x02\x05\x01\x02\x05\x01", // 营
+ 0x8426: "\x01\x02\x02\x04\x05\x05\x05\x04\x02\x03\x04", // 萦
+ 0x8427: "\x01\x02\x02\x05\x01\x01\x02\x03\x02\x03\x04", // 萧
+ 0x8428: "\x01\x02\x02\x05\x02\x04\x01\x04\x03\x01\x03", // 萨
+ 0x8429: "\x01\x02\x02\x03\x01\x02\x03\x04\x04\x03\x03\x04", // 萩
+ 0x842a: "\x01\x02\x02\x03\x01\x02\x03\x04\x04\x04\x01\x02", // 萪
+ 0x842b: "\x01\x02\x02\x03\x01\x02\x03\x04\x02\x05\x01\x01", // 萫
+ 0x842c: "\x01\x02\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 萬
+ 0x842d: "\x01\x02\x02\x03\x02\x05\x01\x02\x05\x02\x01\x04", // 萭
+ 0x842e: "\x01\x02\x02\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 萮
+ 0x842f: "\x01\x02\x02\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 萯
+ 0x8430: "\x01\x02\x02\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 萰
+ 0x8431: "\x01\x02\x02\x04\x04\x05\x01\x02\x05\x01\x01\x01", // 萱
+ 0x8432: "\x01\x02\x02\x03\x04\x04\x03\x01\x01\x03\x05\x04", // 萲
+ 0x8433: "\x01\x02\x02\x01\x02\x02\x05\x04\x03\x01\x01\x02", // 萳
+ 0x8434: "\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04\x02\x02", // 萴
+ 0x8435: "\x01\x02\x02\x02\x05\x05\x02\x05\x02\x05\x01", // 萵
+ 0x8436: "\x01\x02\x02\x01\x01\x01\x03\x04\x02\x05\x01\x01", // 萶
+ 0x8437: "\x01\x02\x02\x02\x04\x03\x02\x05\x01\x01\x02\x02", // 萷
+ 0x8438: "\x01\x02\x02\x03\x02\x01\x05\x01\x01\x03\x04", // 萸
+ 0x8439: "\x01\x02\x02\x04\x05\x01\x03\x02\x05\x01\x02\x02", // 萹
+ 0x843a: "\x01\x02\x02\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 萺
+ 0x843b: "\x01\x02\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 萻
+ 0x843c: "\x01\x02\x02\x02\x05\x01\x02\x05\x01\x01\x01\x05", // 萼
+ 0x843d: "\x01\x02\x02\x04\x04\x01\x03\x05\x04\x02\x05\x01", // 落
+ 0x843e: "\x01\x02\x02\x05\x03\x05\x04\x02\x05\x02\x02\x01", // 萾
+ 0x843f: "\x01\x02\x02\x04\x04\x01\x03\x01\x02\x02\x05\x01", // 萿
+ 0x8440: "\x01\x02\x02\x01\x02\x01\x03\x01\x02\x02\x05\x01", // 葀
+ 0x8441: "\x01\x02\x02\x04\x03\x01\x01\x02\x01\x05\x03\x01", // 葁
+ 0x8442: "\x01\x02\x02\x03\x05\x02\x05\x01\x03\x05\x05\x03", // 葂
+ 0x8443: "\x01\x02\x02\x02\x05\x01\x01\x03\x01\x02\x01\x01", // 葃
+ 0x8444: "\x01\x02\x02\x03\x05\x01\x01\x03\x01\x02\x01\x01", // 葄
+ 0x8445: "\x01\x02\x02\x03\x04\x03\x04\x02\x05\x01\x01\x01", // 葅
+ 0x8446: "\x01\x02\x02\x03\x02\x02\x05\x01\x01\x02\x03\x04", // 葆
+ 0x8447: "\x01\x02\x02\x05\x04\x05\x02\x03\x01\x02\x03\x04", // 葇
+ 0x8448: "\x01\x02\x02\x05\x04\x02\x05\x01\x01\x02\x03\x04", // 葈
+ 0x8449: "\x01\x02\x02\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 葉
+ 0x844a: "\x01\x02\x02\x03\x04\x01\x02\x05\x01\x01\x03\x02", // 葊
+ 0x844b: "\x01\x02\x02\x03\x05\x01\x01\x03\x05\x02\x05\x01", // 葋
+ 0x844c: "\x01\x02\x02\x05\x03\x01\x05\x03\x01\x05\x03\x01", // 葌
+ 0x844d: "\x01\x02\x02\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 葍
+ 0x844e: "\x01\x02\x02\x03\x03\x02\x05\x01\x01\x01\x01\x02", // 葎
+ 0x844f: "\x01\x02\x02\x04\x04\x01\x05\x01\x01\x01\x01\x02", // 葏
+ 0x8450: "\x01\x02\x02\x03\x04\x05\x03\x02\x05\x02\x02\x01", // 葐
+ 0x8451: "\x01\x02\x02\x01\x02\x01\x01\x02\x01\x01\x02\x04", // 葑
+ 0x8452: "\x01\x02\x02\x05\x05\x04\x04\x04\x04\x01\x02\x01", // 葒
+ 0x8453: "\x01\x02\x02\x04\x04\x01\x01\x02\x02\x01\x03\x04", // 葓
+ 0x8454: "\x01\x02\x02\x03\x02\x05\x01\x03\x01\x01\x03\x04", // 葔
+ 0x8455: "\x01\x02\x02\x03\x03\x02\x04\x04\x01\x01\x01\x02", // 葕
+ 0x8456: "\x01\x02\x02\x04\x04\x05\x03\x04\x01\x03\x04\x04", // 葖
+ 0x8457: "\x01\x02\x02\x01\x02\x01\x03\x02\x05\x01\x01", // 著
+ 0x8458: "\x01\x02\x02\x05\x05\x05\x01\x02\x05\x01\x02\x01", // 葘
+ 0x8459: "\x01\x02\x02\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 葙
+ 0x845a: "\x01\x02\x02\x01\x02\x02\x01\x01\x01\x03\x04\x05", // 葚
+ 0x845b: "\x01\x02\x02\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 葛
+ 0x845c: "\x01\x02\x02\x01\x01\x01\x02\x05\x03\x01\x03\x04", // 葜
+ 0x845d: "\x01\x02\x02\x01\x05\x05\x05\x01\x02\x01\x05\x03", // 葝
+ 0x845e: "\x01\x02\x02\x05\x01\x05\x01\x02\x02\x01\x01\x01", // 葞
+ 0x845f: "\x01\x02\x02\x03\x02\x05\x01\x01\x01\x01\x02\x01", // 葟
+ 0x8460: "\x01\x02\x02\x03\x02\x05\x01\x01\x04\x05\x05\x04", // 葠
+ 0x8461: "\x01\x02\x02\x03\x05\x01\x02\x05\x01\x01\x02\x04", // 葡
+ 0x8462: "\x01\x02\x02\x01\x03\x04\x04\x02\x05\x02\x02\x01", // 葢
+ 0x8463: "\x01\x02\x02\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 董
+ 0x8464: "\x01\x02\x02\x05\x05\x04\x04\x04\x04\x01\x02\x04", // 葤
+ 0x8465: "\x01\x02\x02\x04\x03\x01\x02\x05\x01\x01\x02\x02", // 葥
+ 0x8466: "\x01\x02\x02\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 葦
+ 0x8467: "\x01\x02\x02\x01\x02\x04\x05\x05\x02\x01\x05\x03", // 葧
+ 0x8468: "\x01\x02\x02\x02\x05\x01\x02\x01\x01\x05\x03\x04", // 葨
+ 0x8469: "\x01\x02\x02\x03\x02\x05\x01\x01\x05\x02\x01\x05", // 葩
+ 0x846a: "\x01\x02\x02\x03\x05\x03\x05\x01\x01\x02\x02\x02", // 葪
+ 0x846b: "\x01\x02\x02\x01\x02\x02\x05\x01\x03\x05\x01\x01", // 葫
+ 0x846c: "\x01\x02\x02\x01\x03\x05\x04\x03\x05\x01\x03\x02", // 葬
+ 0x846d: "\x01\x02\x02\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 葭
+ 0x846e: "\x01\x02\x02\x03\x02\x01\x01\x01\x03\x05\x05\x04", // 葮
+ 0x846f: "\x01\x02\x02\x05\x05\x04\x04\x04\x04\x03\x05\x04", // 葯
+ 0x8470: "\x01\x02\x02\x03\x02\x05\x04\x03\x04\x03\x05\x04", // 葰
+ 0x8471: "\x01\x02\x02\x03\x05\x03\x03\x04\x04\x05\x04\x04", // 葱
+ 0x8472: "\x01\x02\x02\x03\x02\x05\x01\x01\x02\x05\x03\x04", // 葲
+ 0x8473: "\x01\x02\x02\x01\x03\x01\x05\x03\x01\x05\x03\x04", // 葳
+ 0x8474: "\x01\x02\x02\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 葴
+ 0x8475: "\x01\x02\x02\x05\x04\x03\x03\x04\x01\x01\x03\x04", // 葵
+ 0x8476: "\x01\x02\x02\x04\x01\x02\x05\x01\x04\x05\x01\x02", // 葶
+ 0x8477: "\x01\x02\x02\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 葷
+ 0x8478: "\x01\x02\x02\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 葸
+ 0x8479: "\x01\x02\x02\x04\x01\x05\x03\x03\x01\x05\x02\x05", // 葹
+ 0x847a: "\x01\x02\x02\x02\x05\x01\x01\x02\x02\x01\x01\x01", // 葺
+ 0x847b: "\x01\x02\x02\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 葻
+ 0x847c: "\x01\x02\x02\x03\x04\x05\x02\x03\x04\x03\x05\x04", // 葼
+ 0x847d: "\x01\x02\x02\x01\x02\x05\x02\x02\x01\x05\x03\x01", // 葽
+ 0x847e: "\x01\x02\x02\x03\x05\x04\x05\x05\x04\x05\x04\x04", // 葾
+ 0x847f: "\x01\x02\x02\x05\x02\x01\x03\x02\x05\x01\x01\x01", // 葿
+ 0x8480: "\x01\x02\x02\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 蒀
+ 0x8481: "\x01\x02\x02\x01\x02\x03\x04\x04\x04\x05\x04", // 蒁
+ 0x8482: "\x01\x02\x02\x04\x01\x04\x03\x04\x05\x02\x05\x02", // 蒂
+ 0x8483: "\x01\x02\x02\x05\x05\x01\x03\x05\x03\x03\x03\x04", // 蒃
+ 0x8484: "\x01\x02\x02\x04\x05\x01\x01\x03\x05\x01\x02\x04", // 蒄
+ 0x8485: "\x01\x02\x02\x04\x04\x01\x03\x05\x01\x02\x03\x04", // 蒅
+ 0x8486: "\x01\x02\x02\x01\x02\x01\x03\x05\x04\x05\x03\x01", // 蒆
+ 0x8487: "\x01\x02\x02\x01\x03\x02\x05\x03\x04\x05\x03\x04", // 蒇
+ 0x8488: "\x01\x02\x02\x01\x05\x03\x05\x03\x02\x05\x01\x01", // 蒈
+ 0x8489: "\x01\x02\x02\x02\x05\x01\x02\x01\x02\x05\x03\x04", // 蒉
+ 0x848a: "\x01\x02\x02\x03\x02\x03\x05\x02\x05\x01\x03\x05", // 蒊
+ 0x848b: "\x01\x02\x02\x04\x01\x02\x03\x05\x04\x01\x02\x04", // 蒋
+ 0x848c: "\x01\x02\x02\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 蒌
+ 0x848d: "\x01\x02\x02\x04\x03\x05\x05\x05\x04\x04\x04\x04", // 蒍
+ 0x848e: "\x01\x02\x02\x04\x04\x01\x03\x03\x03\x05\x03\x04", // 蒎
+ 0x848f: "\x01\x02\x02\x04\x05\x01\x02\x05\x03\x05\x01\x01", // 蒏
+ 0x8490: "\x01\x02\x02\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 蒐
+ 0x8491: "\x01\x02\x02\x03\x03\x05\x01\x01\x05\x03\x05\x05\x04", // 蒑
+ 0x8492: "\x01\x02\x02\x03\x02\x05\x01\x05\x01\x01\x02\x05\x02", // 蒒
+ 0x8493: "\x01\x02\x02\x05\x05\x04\x04\x04\x04\x01\x05\x02\x05", // 蒓
+ 0x8494: "\x01\x02\x02\x02\x05\x01\x01\x01\x02\x01\x01\x02\x04", // 蒔
+ 0x8495: "\x01\x02\x02\x02\x05\x03\x04\x01\x02\x05\x02\x02\x01", // 蒕
+ 0x8496: "\x01\x02\x02\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 蒖
+ 0x8497: "\x01\x02\x02\x04\x04\x01\x04\x05\x01\x01\x05\x03\x04", // 蒗
+ 0x8498: "\x01\x02\x02\x05\x03\x01\x02\x05\x01\x03\x01\x01\x02", // 蒘
+ 0x8499: "\x01\x02\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 蒙
+ 0x849a: "\x01\x02\x02\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 蒚
+ 0x849b: "\x01\x02\x02\x03\x01\x01\x02\x05\x02\x05\x01\x03\x04", // 蒛
+ 0x849c: "\x01\x02\x02\x01\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 蒜
+ 0x849d: "\x01\x02\x02\x01\x03\x03\x02\x05\x01\x01\x02\x03\x04", // 蒝
+ 0x849e: "\x01\x02\x02\x04\x04\x01\x03\x02\x04\x01\x04\x03\x01", // 蒞
+ 0x849f: "\x01\x02\x02\x04\x01\x04\x03\x01\x03\x05\x02\x05\x01", // 蒟
+ 0x84a0: "\x01\x02\x02\x03\x02\x05\x01\x01\x01\x04\x05\x04\x04", // 蒠
+ 0x84a1: "\x01\x02\x02\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03", // 蒡
+ 0x84a2: "\x01\x02\x02\x05\x02\x03\x04\x01\x01\x02\x03\x04", // 蒢
+ 0x84a3: "\x01\x02\x02\x03\x03\x02\x03\x04\x01\x01\x02\x03\x04", // 蒣
+ 0x84a4: "\x01\x02\x02\x04\x04\x01\x03\x04\x01\x01\x02\x03\x04", // 蒤
+ 0x84a5: "\x01\x02\x02\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 蒥
+ 0x84a6: "\x01\x02\x02\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 蒦
+ 0x84a7: "\x01\x02\x02\x01\x03\x02\x01\x02\x05\x01\x05\x03\x04", // 蒧
+ 0x84a8: "\x01\x02\x02\x03\x02\x01\x01\x02\x01\x02\x05\x01\x01", // 蒨
+ 0x84a9: "\x01\x02\x02\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 蒩
+ 0x84aa: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 蒪
+ 0x84ab: "\x01\x02\x02\x04\x03\x01\x01\x01\x03\x01\x02\x01", // 蒫
+ 0x84ac: "\x01\x02\x02\x04\x05\x03\x05\x02\x05\x01\x03\x05\x04", // 蒬
+ 0x84ad: "\x01\x02\x02\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03", // 蒭
+ 0x84ae: "\x01\x02\x02\x04\x05\x03\x02\x05\x01\x01\x01\x02\x01", // 蒮
+ 0x84af: "\x01\x02\x02\x03\x05\x01\x01\x03\x05\x01\x01\x02\x02", // 蒯
+ 0x84b0: "\x01\x02\x02\x03\x03\x05\x04\x01\x04\x03\x05\x05\x04", // 蒰
+ 0x84b1: "\x01\x02\x02\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 蒱
+ 0x84b2: "\x01\x02\x02\x04\x04\x01\x01\x02\x05\x01\x01\x02\x04", // 蒲
+ 0x84b3: "\x01\x02\x02\x05\x05\x04\x04\x04\x04\x02\x05\x03\x04", // 蒳
+ 0x84b4: "\x01\x02\x02\x04\x03\x01\x05\x02\x03\x03\x05\x01\x01", // 蒴
+ 0x84b5: "\x01\x02\x02\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04", // 蒵
+ 0x84b6: "\x01\x02\x02\x05\x05\x04\x04\x04\x04\x03\x04\x05\x03", // 蒶
+ 0x84b7: "\x01\x02\x02\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 蒷
+ 0x84b8: "\x01\x02\x02\x05\x02\x05\x03\x04\x01\x04\x04\x04\x04", // 蒸
+ 0x84b9: "\x01\x02\x02\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 蒹
+ 0x84ba: "\x01\x02\x02\x04\x01\x03\x04\x01\x03\x01\x01\x03\x04", // 蒺
+ 0x84bb: "\x01\x02\x02\x05\x01\x05\x04\x01\x05\x01\x05\x04\x01", // 蒻
+ 0x84bc: "\x01\x02\x02\x03\x04\x04\x05\x01\x01\x03\x02\x05\x01", // 蒼
+ 0x84bd: "\x01\x02\x02\x02\x05\x01\x03\x04\x01\x04\x05\x04\x04", // 蒽
+ 0x84be: "\x01\x02\x02\x04\x03\x01\x02\x03\x04\x04\x05\x04", // 蒾
+ 0x84bf: "\x01\x02\x02\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 蒿
+ 0x84c0: "\x01\x02\x02\x05\x02\x01\x03\x05\x05\x04\x02\x03\x04", // 蓀
+ 0x84c1: "\x01\x02\x02\x01\x01\x01\x03\x04\x03\x01\x02\x03\x04", // 蓁
+ 0x84c2: "\x01\x02\x02\x04\x05\x02\x05\x01\x01\x04\x01\x03\x04", // 蓂
+ 0x84c3: "\x01\x02\x02\x03\x02\x01\x05\x01\x01\x02\x05\x04", // 蓃
+ 0x84c4: "\x01\x02\x02\x04\x01\x05\x05\x04\x02\x05\x01\x02\x01", // 蓄
+ 0x84c5: "\x01\x02\x02\x04\x04\x01\x04\x01\x05\x04\x03\x02\x05", // 蓅
+ 0x84c6: "\x01\x02\x02\x04\x01\x03\x01\x02\x02\x01\x02\x05\x02", // 蓆
+ 0x84c7: "\x01\x02\x02\x02\x05\x05\x04\x05\x02\x05\x01\x01", // 蓇
+ 0x84c8: "\x01\x02\x02\x04\x05\x01\x01\x05\x04\x05\x02", // 蓈
+ 0x84c9: "\x01\x02\x02\x04\x04\x05\x03\x04\x03\x04\x02\x05\x01", // 蓉
+ 0x84ca: "\x01\x02\x02\x03\x04\x05\x04\x05\x04\x01\x05\x04\x01", // 蓊
+ 0x84cb: "\x01\x02\x02\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 蓋
+ 0x84cc: "\x01\x02\x02\x03\x04\x03\x04\x01\x02\x01\x03\x05\x04", // 蓌
+ 0x84cd: "\x01\x02\x02\x01\x02\x01\x03\x03\x05\x02\x05\x01\x01", // 蓍
+ 0x84ce: "\x01\x02\x02\x04\x01\x03\x05\x01\x01\x02\x02\x05\x01", // 蓎
+ 0x84cf: "\x01\x02\x02\x03\x03\x05\x04\x04\x03\x03\x05\x04\x04", // 蓏
+ 0x84d0: "\x01\x02\x02\x01\x03\x01\x01\x05\x04\x03\x01\x02\x04", // 蓐
+ 0x84d1: "\x01\x02\x02\x04\x01\x02\x05\x01\x01\x03\x05\x03\x04", // 蓑
+ 0x84d2: "\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01\x01\x02", // 蓒
+ 0x84d3: "\x01\x02\x02\x03\x02\x04\x01\x04\x03\x01\x02\x05\x01", // 蓓
+ 0x84d4: "\x01\x02\x02\x04\x03\x01\x01\x02\x01\x04\x04\x04\x04", // 蓔
+ 0x84d5: "\x01\x02\x02\x01\x02\x03\x04\x01\x02\x01\x01\x02\x01", // 蓕
+ 0x84d6: "\x01\x02\x02\x03\x02\x05\x03\x04\x01\x01\x05\x03\x05", // 蓖
+ 0x84d7: "\x01\x02\x02\x03\x03\x02\x01\x02\x01\x02\x01\x03\x04", // 蓗
+ 0x84d8: "\x01\x02\x02\x04\x01\x03\x04\x05\x04\x03\x05\x03\x04", // 蓘
+ 0x84d9: "\x01\x02\x02\x04\x01\x03\x03\x04\x03\x04\x01\x02\x01", // 蓙
+ 0x84da: "\x01\x02\x02\x03\x02\x02\x03\x05\x04\x03\x03\x03", // 蓚
+ 0x84db: "\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x01\x03\x04", // 蓛
+ 0x84dc: "\x01\x02\x02\x01\x02\x05\x03\x05\x01\x01\x05\x01\x05", // 蓜
+ 0x84dd: "\x01\x02\x02\x02\x02\x03\x01\x04\x02\x05\x02\x02\x01", // 蓝
+ 0x84de: "\x01\x02\x02\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01", // 蓞
+ 0x84df: "\x01\x02\x02\x03\x05\x02\x05\x01\x02\x01\x01\x02\x02", // 蓟
+ 0x84e0: "\x01\x02\x02\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 蓠
+ 0x84e1: "\x01\x02\x02\x04\x04\x01\x05\x01\x01\x04\x05\x05\x04", // 蓡
+ 0x84e2: "\x01\x02\x02\x04\x05\x01\x01\x05\x04\x03\x05\x01\x01", // 蓢
+ 0x84e3: "\x01\x02\x02\x05\x04\x05\x02\x01\x03\x02\x05\x03\x04", // 蓣
+ 0x84e4: "\x01\x02\x02\x04\x01\x01\x02\x01\x03\x04\x03\x05\x04", // 蓤
+ 0x84e5: "\x01\x02\x02\x04\x05\x03\x04\x01\x01\x02\x04\x03\x01", // 蓥
+ 0x84e6: "\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04\x05\x05\x01", // 蓦
+ 0x84e7: "\x01\x02\x02\x03\x02\x02\x03\x05\x04\x01\x02\x03\x04", // 蓧
+ 0x84e8: "\x01\x02\x02\x03\x02\x02\x03\x05\x04\x02\x05\x01\x01", // 蓨
+ 0x84e9: "\x01\x02\x02\x05\x04\x05\x02\x03\x03\x05\x04\x05\x03", // 蓩
+ 0x84ea: "\x01\x02\x02\x05\x04\x02\x05\x01\x01\x02\x04\x05\x04", // 蓪
+ 0x84eb: "\x01\x02\x02\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 蓫
+ 0x84ec: "\x01\x02\x02\x03\x05\x04\x01\x01\x01\x02\x04\x05\x04", // 蓬
+ 0x84ed: "\x01\x02\x02\x04\x01\x03\x01\x03\x04\x02\x05\x01\x01\x05", // 蓭
+ 0x84ee: "\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 蓮
+ 0x84ef: "\x01\x02\x02\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04", // 蓯
+ 0x84f0: "\x01\x02\x02\x03\x03\x02\x02\x01\x02\x01\x02\x01\x03\x04", // 蓰
+ 0x84f1: "\x01\x02\x02\x04\x04\x01\x04\x03\x01\x01\x03\x02", // 蓱
+ 0x84f2: "\x01\x02\x02\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 蓲
+ 0x84f3: "\x01\x02\x02\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01", // 蓳
+ 0x84f4: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04", // 蓴
+ 0x84f5: "\x01\x02\x02\x01\x02\x01\x01\x05\x01\x01\x02\x01\x03\x04", // 蓵
+ 0x84f6: "\x01\x02\x02\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 蓶
+ 0x84f7: "\x01\x02\x02\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 蓷
+ 0x84f8: "\x01\x02\x02\x01\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01", // 蓸
+ 0x84f9: "\x01\x02\x02\x03\x03\x02\x03\x01\x01\x02\x01\x02\x01\x05\x02", // 蓹
+ 0x84fa: "\x01\x02\x02\x01\x02\x01\x03\x04\x01\x02\x01\x03\x05\x04", // 蓺
+ 0x84fb: "\x01\x02\x02\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04", // 蓻
+ 0x84fc: "\x01\x02\x02\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 蓼
+ 0x84fd: "\x01\x02\x02\x02\x05\x01\x01\x01\x02\x02\x01\x01\x02", // 蓽
+ 0x84fe: "\x01\x02\x02\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01", // 蓾
+ 0x84ff: "\x01\x02\x02\x04\x04\x05\x03\x02\x01\x03\x02\x05\x01\x01", // 蓿
+ 0x8500: "\x01\x02\x02\x04\x01\x04\x03\x01\x02\x05\x01\x05\x02", // 蔀
+ 0x8501: "\x01\x02\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02", // 蔁
+ 0x8502: "\x01\x02\x02\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 蔂
+ 0x8503: "\x01\x02\x02\x05\x01\x05\x02\x05\x01\x02\x05\x01\x02\x01\x04", // 蔃
+ 0x8504: "\x01\x02\x02\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01", // 蔄
+ 0x8505: "\x01\x02\x02\x02\x05\x01\x01\x02\x05\x01\x01\x05\x03\x01", // 蔅
+ 0x8506: "\x01\x02\x02\x04\x04\x01\x01\x02\x01\x03\x04\x03\x05\x04", // 蔆
+ 0x8507: "\x01\x02\x02\x05\x01\x01\x05\x04\x01\x05\x03\x05", // 蔇
+ 0x8508: "\x01\x02\x02\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 蔈
+ 0x8509: "\x01\x02\x02\x04\x01\x03\x04\x02\x05\x01\x03\x05\x03\x04", // 蔉
+ 0x850a: "\x01\x02\x02\x04\x03\x03\x04\x02\x05\x01\x01\x01\x01\x02", // 蔊
+ 0x850b: "\x01\x02\x02\x04\x04\x01\x02\x01\x01\x02\x03\x04\x05\x04", // 蔋
+ 0x850c: "\x01\x02\x02\x01\x02\x05\x01\x02\x03\x04\x03\x05\x03\x04", // 蔌
+ 0x850d: "\x01\x02\x02\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 蔍
+ 0x850e: "\x01\x02\x02\x04\x01\x01\x01\x02\x05\x01\x03\x05\x05\x04", // 蔎
+ 0x850f: "\x01\x02\x02\x04\x01\x04\x03\x02\x05\x03\x04\x02\x05\x01", // 蔏
+ 0x8510: "\x01\x02\x02\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01", // 蔐
+ 0x8511: "\x01\x02\x02\x02\x05\x02\x02\x01\x01\x03\x04\x05\x03\x04", // 蔑
+ 0x8512: "\x01\x02\x02\x05\x01\x01\x03\x02\x05\x01\x04\x04\x04\x04", // 蔒
+ 0x8513: "\x01\x02\x02\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 蔓
+ 0x8514: "\x01\x02\x02\x03\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 蔔
+ 0x8515: "\x01\x02\x02\x01\x03\x02\x02\x01\x05\x04\x05\x02\x05\x02", // 蔕
+ 0x8516: "\x01\x02\x02\x02\x01\x05\x03\x01\x05\x02\x05\x01\x01\x01", // 蔖
+ 0x8517: "\x01\x02\x02\x04\x01\x03\x01\x02\x02\x01\x04\x04\x04\x04", // 蔗
+ 0x8518: "\x01\x02\x02\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 蔘
+ 0x8519: "\x01\x02\x02\x04\x01\x05\x03\x03\x01\x05\x02\x01\x03\x04", // 蔙
+ 0x851a: "\x01\x02\x02\x05\x01\x03\x01\x01\x02\x03\x04\x01\x02\x04", // 蔚
+ 0x851b: "\x01\x02\x02\x03\x05\x03\x05\x01\x01\x02\x04\x04\x01\x02", // 蔛
+ 0x851c: "\x01\x02\x02\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04", // 蔜
+ 0x851d: "\x01\x02\x02\x02\x05\x01\x01\x01\x04\x03\x01\x02\x03\x04", // 蔝
+ 0x851e: "\x01\x02\x02\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 蔞
+ 0x851f: "\x01\x02\x02\x04\x01\x05\x03\x03\x01\x03\x01\x01\x03\x04", // 蔟
+ 0x8520: "\x01\x02\x02\x05\x05\x04\x04\x04\x04\x03\x05\x04\x04\x04", // 蔠
+ 0x8521: "\x01\x02\x02\x03\x05\x04\x04\x05\x04\x01\x01\x02\x03\x04", // 蔡
+ 0x8522: "\x01\x02\x02\x04\x04\x01\x05\x03\x02\x05\x04\x05\x03\x01", // 蔢
+ 0x8523: "\x01\x02\x02\x05\x02\x01\x03\x03\x05\x04\x04\x01\x02\x04", // 蔣
+ 0x8524: "\x01\x02\x02\x04\x04\x05\x04\x05\x04\x03\x04\x02\x05\x02", // 蔤
+ 0x8525: "\x01\x02\x02\x03\x02\x05\x03\x05\x04\x01\x04\x05\x04\x04", // 蔥
+ 0x8526: "\x01\x02\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 蔦
+ 0x8527: "\x01\x02\x02\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x01", // 蔧
+ 0x8528: "\x01\x02\x02\x02\x05\x04\x03\x01\x01\x03\x04\x05\x05\x01", // 蔨
+ 0x8529: "\x01\x02\x02\x04\x04\x05\x01\x02\x05\x01\x02\x01\x03\x04", // 蔩
+ 0x852a: "\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02", // 蔪
+ 0x852b: "\x01\x02\x02\x01\x02\x01\x02\x01\x01\x05\x04\x04\x04\x04", // 蔫
+ 0x852c: "\x01\x02\x02\x05\x02\x01\x02\x01\x04\x01\x05\x04\x03\x02\x05", // 蔬
+ 0x852d: "\x01\x02\x02\x05\x02\x03\x04\x04\x05\x01\x01\x05\x04", // 蔭
+ 0x852e: "\x01\x02\x02\x02\x05\x01\x02\x05\x01\x01\x05\x03\x04\x01", // 蔮
+ 0x852f: "\x01\x02\x02\x05\x02\x01\x02\x05\x01\x01\x02\x03\x04", // 蔯
+ 0x8530: "\x01\x02\x02\x04\x05\x01\x03\x02\x05\x01\x05\x02\x01\x05", // 蔰
+ 0x8531: "\x01\x02\x02\x03\x04\x01\x02\x03\x04\x03\x05\x05\x04", // 蔱
+ 0x8532: "\x01\x02\x02\x04\x04\x05\x01\x01\x03\x05\x03\x01\x03\x04", // 蔲
+ 0x8533: "\x01\x02\x02\x04\x04\x01\x01\x01\x02\x01\x02\x05\x01\x01", // 蔳
+ 0x8534: "\x01\x02\x02\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04", // 蔴
+ 0x8535: "\x01\x02\x02\x01\x03\x01\x02\x05\x01\x02\x05\x05\x03\x04", // 蔵
+ 0x8536: "\x01\x02\x02\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 蔶
+ 0x8537: "\x01\x02\x02\x01\x02\x04\x03\x01\x02\x05\x02\x05\x01\x01", // 蔷
+ 0x8538: "\x01\x02\x02\x03\x02\x05\x01\x01\x03\x05\x05\x01\x03\x05", // 蔸
+ 0x8539: "\x01\x02\x02\x03\x04\x01\x04\x04\x03\x01\x03\x01\x03\x04", // 蔹
+ 0x853a: "\x01\x02\x02\x04\x02\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 蔺
+ 0x853b: "\x01\x02\x02\x04\x04\x05\x01\x01\x03\x05\x02\x01\x05\x04", // 蔻
+ 0x853c: "\x01\x02\x02\x04\x05\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 蔼
+ 0x853d: "\x01\x02\x02\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04", // 蔽
+ 0x853e: "\x01\x02\x02\x03\x01\x02\x03\x04\x03\x05\x03\x01\x02\x03\x04", // 蔾
+ 0x853f: "\x01\x02\x02\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04", // 蔿
+ 0x8540: "\x01\x02\x02\x01\x02\x05\x02\x03\x04\x01\x02\x05\x02\x03\x04", // 蕀
+ 0x8541: "\x01\x02\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04", // 蕁
+ 0x8542: "\x01\x02\x02\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04\x05\x03", // 蕂
+ 0x8543: "\x01\x02\x02\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 蕃
+ 0x8544: "\x01\x02\x02\x02\x05\x01\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 蕄
+ 0x8545: "\x01\x02\x02\x04\x04\x01\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 蕅
+ 0x8546: "\x01\x02\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04\x05\x03\x04", // 蕆
+ 0x8547: "\x01\x02\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 蕇
+ 0x8548: "\x01\x02\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 蕈
+ 0x8549: "\x01\x02\x02\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 蕉
+ 0x854a: "\x01\x02\x02\x04\x05\x04\x04\x04\x05\x04\x04\x04\x05\x04\x04", // 蕊
+ 0x854b: "\x01\x02\x02\x02\x01\x02\x01\x02\x01\x02\x01\x02\x01\x02\x01", // 蕋
+ 0x854c: "\x01\x02\x02\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01", // 蕌
+ 0x854d: "\x01\x02\x02\x04\x04\x01\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 蕍
+ 0x854e: "\x01\x02\x02\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 蕎
+ 0x854f: "\x01\x02\x02\x03\x05\x03\x01\x02\x01\x03\x02\x05\x01\x01", // 蕏
+ 0x8550: "\x01\x02\x02\x01\x03\x04\x03\x04\x03\x04\x03\x04\x01\x01\x02", // 蕐
+ 0x8551: "\x01\x02\x02\x02\x05\x01\x01\x02\x05\x01\x01\x03\x05\x01\x01", // 蕑
+ 0x8552: "\x01\x02\x02\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 蕒
+ 0x8553: "\x01\x02\x02\x01\x04\x05\x02\x04\x04\x04\x04\x01\x01\x05\x04", // 蕓
+ 0x8554: "\x01\x02\x02\x01\x02\x01\x04\x03\x01\x01\x02\x05\x02\x05\x04", // 蕔
+ 0x8555: "\x01\x02\x02\x03\x05\x03\x04\x03\x01\x02\x05\x03\x05\x01\x01", // 蕕
+ 0x8556: "\x01\x02\x02\x04\x04\x01\x01\x05\x01\x05\x01\x02\x03\x04", // 蕖
+ 0x8557: "\x01\x02\x02\x02\x05\x01\x02\x01\x02\x01\x03\x05\x04\x02\x05\x01", // 蕗
+ 0x8558: "\x01\x02\x02\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 蕘
+ 0x8559: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x04\x04\x05\x04\x04", // 蕙
+ 0x855a: "\x01\x02\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x05", // 蕚
+ 0x855b: "\x01\x02\x02\x03\x01\x02\x03\x04\x04\x03\x05\x01\x05\x02\x03", // 蕛
+ 0x855c: "\x01\x02\x02\x02\x01\x01\x01\x02\x01\x01\x01\x04\x05\x04\x04", // 蕜
+ 0x855d: "\x01\x02\x02\x05\x05\x04\x04\x04\x04\x03\x05\x05\x02\x01\x05", // 蕝
+ 0x855e: "\x01\x02\x02\x02\x05\x01\x01\x01\x02\x02\x01\x01\x01\x05\x04", // 蕞
+ 0x855f: "\x01\x02\x02\x05\x04\x03\x03\x04\x05\x01\x05\x03\x05\x05\x04", // 蕟
+ 0x8560: "\x01\x02\x02\x05\x03\x01\x02\x05\x01\x05\x05\x04\x02\x03\x04", // 蕠
+ 0x8561: "\x01\x02\x02\x01\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 蕡
+ 0x8562: "\x01\x02\x02\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 蕢
+ 0x8563: "\x01\x02\x02\x03\x04\x04\x03\x04\x05\x03\x05\x04\x01\x05\x02", // 蕣
+ 0x8564: "\x01\x02\x02\x01\x03\x05\x03\x03\x03\x04\x03\x01\x01\x02\x01", // 蕤
+ 0x8565: "\x01\x02\x02\x01\x05\x02\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 蕥
+ 0x8566: "\x01\x02\x02\x03\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 蕦
+ 0x8567: "\x01\x02\x02\x03\x03\x02\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 蕧
+ 0x8568: "\x01\x02\x02\x01\x03\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04", // 蕨
+ 0x8569: "\x01\x02\x02\x04\x04\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 蕩
+ 0x856a: "\x01\x02\x02\x03\x01\x01\x02\x02\x02\x02\x01\x04\x04\x04\x04", // 蕪
+ 0x856b: "\x01\x02\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 蕫
+ 0x856c: "\x01\x02\x02\x05\x05\x04\x04\x04\x04\x05\x05\x04\x02\x03\x04", // 蕬
+ 0x856d: "\x01\x02\x02\x05\x01\x01\x02\x03\x02\x01\x01\x05\x05\x02\x01\x02", // 蕭
+ 0x856e: "\x01\x02\x02\x03\x02\x01\x05\x01\x01\x03\x05\x04\x04\x04\x04", // 蕮
+ 0x856f: "\x01\x02\x02\x05\x02\x03\x05\x04\x01\x03\x01\x01\x02\x01", // 蕯
+ 0x8570: "\x01\x02\x02\x04\x04\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 蕰
+ 0x8571: "\x01\x02\x02\x03\x01\x02\x03\x04\x02\x04\x03\x02\x05\x01\x01", // 蕱
+ 0x8572: "\x01\x02\x02\x04\x03\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02", // 蕲
+ 0x8573: "\x01\x02\x02\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01", // 蕳
+ 0x8574: "\x01\x02\x02\x05\x05\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 蕴
+ 0x8575: "\x01\x02\x02\x03\x05\x04\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 蕵
+ 0x8576: "\x01\x02\x02\x01\x04\x05\x02\x04\x04\x04\x04\x03\x04\x04\x05\x04", // 蕶
+ 0x8577: "\x01\x02\x02\x05\x04\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 蕷
+ 0x8578: "\x01\x02\x02\x05\x01\x02\x01\x01\x05\x01\x05\x04\x04\x05\x04", // 蕸
+ 0x8579: "\x01\x02\x02\x04\x01\x05\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 蕹
+ 0x857a: "\x01\x02\x02\x02\x05\x01\x01\x02\x02\x01\x01\x01\x05\x03\x04", // 蕺
+ 0x857b: "\x01\x02\x02\x01\x02\x01\x01\x01\x05\x04\x01\x02\x02\x01\x03\x04", // 蕻
+ 0x857c: "\x01\x02\x02\x01\x02\x01\x01\x01\x05\x04\x05\x01\x01\x01\x01\x02", // 蕼
+ 0x857d: "\x01\x02\x02\x02\x05\x01\x02\x02\x01\x01\x03\x01\x01\x05\x03\x04", // 蕽
+ 0x857e: "\x01\x02\x02\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x01", // 蕾
+ 0x857f: "\x01\x02\x02\x04\x03\x03\x04\x03\x04\x04\x03\x01\x01\x03\x05\x04", // 蕿
+ 0x8580: "\x01\x02\x02\x04\x04\x01\x02\x05\x03\x04\x01\x02\x05\x02\x02\x01", // 薀
+ 0x8581: "\x01\x02\x02\x03\x02\x05\x04\x03\x01\x02\x03\x04\x01\x03\x04", // 薁
+ 0x8582: "\x01\x02\x02\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x03\x04", // 薂
+ 0x8583: "\x01\x02\x02\x04\x04\x01\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 薃
+ 0x8584: "\x01\x02\x02\x04\x04\x01\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 薄
+ 0x8585: "\x01\x02\x02\x05\x03\x01\x01\x03\x01\x01\x05\x03\x04\x01\x02\x04", // 薅
+ 0x8586: "\x01\x02\x02\x03\x04\x04\x03\x04\x05\x04\x05\x04\x04\x03\x05\x04", // 薆
+ 0x8587: "\x01\x02\x02\x03\x03\x02\x02\x05\x02\x01\x03\x05\x03\x01\x03\x04", // 薇
+ 0x8588: "\x01\x02\x02\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 薈
+ 0x8589: "\x01\x02\x02\x02\x01\x02\x01\x01\x03\x01\x02\x03\x03\x05\x03\x04", // 薉
+ 0x858a: "\x01\x02\x02\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x02", // 薊
+ 0x858b: "\x01\x02\x02\x04\x01\x03\x05\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 薋
+ 0x858c: "\x01\x02\x02\x05\x05\x03\x04\x05\x01\x01\x05\x04\x05\x02", // 薌
+ 0x858d: "\x01\x02\x02\x03\x04\x04\x03\x05\x04\x02\x05\x05\x04\x05\x04\x05", // 薍
+ 0x858e: "\x01\x02\x02\x02\x05\x02\x02\x01\x04\x05\x03\x02\x01\x05\x03\x04", // 薎
+ 0x858f: "\x01\x02\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 薏
+ 0x8590: "\x01\x02\x02\x03\x01\x02\x03\x04\x01\x02\x01\x03\x04\x03\x05\x04", // 薐
+ 0x8591: "\x01\x02\x02\x01\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x01\x01", // 薑
+ 0x8592: "\x01\x02\x02\x02\x01\x03\x05\x04\x05\x04\x04\x03\x01\x02\x03\x04", // 薒
+ 0x8593: "\x01\x02\x02\x04\x04\x01\x05\x01\x01\x04\x05\x02\x05\x02\x05\x04", // 薓
+ 0x8594: "\x01\x02\x02\x01\x02\x03\x04\x03\x04\x01\x02\x05\x02\x05\x01\x01", // 薔
+ 0x8595: "\x01\x02\x02\x04\x01\x03\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 薕
+ 0x8596: "\x01\x02\x02\x02\x05\x05\x02\x05\x02\x05\x01\x04\x05\x04", // 薖
+ 0x8597: "\x01\x02\x02\x02\x05\x01\x02\x01\x02\x05\x01\x03\x05\x03\x04\x01", // 薗
+ 0x8598: "\x01\x02\x02\x01\x02\x01\x04\x03\x01\x01\x01\x02\x04\x05\x04", // 薘
+ 0x8599: "\x01\x02\x02\x03\x01\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 薙
+ 0x859a: "\x01\x02\x02\x01\x03\x05\x04\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 薚
+ 0x859b: "\x01\x02\x02\x03\x02\x05\x01\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 薛
+ 0x859c: "\x01\x02\x02\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 薜
+ 0x859d: "\x01\x02\x02\x03\x05\x01\x03\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 薝
+ 0x859e: "\x01\x02\x02\x01\x03\x05\x04\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 薞
+ 0x859f: "\x01\x02\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 薟
+ 0x85a0: "\x01\x02\x02\x04\x03\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 薠
+ 0x85a1: "\x01\x02\x02\x02\x05\x01\x01\x01\x05\x01\x03\x02\x01\x02\x05", // 薡
+ 0x85a2: "\x01\x02\x02\x03\x05\x03\x05\x01\x01\x02\x05\x03\x03\x01\x01\x02", // 薢
+ 0x85a3: "\x01\x02\x02\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04", // 薣
+ 0x85a4: "\x01\x02\x02\x01\x03\x05\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 薤
+ 0x85a5: "\x01\x02\x02\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 薥
+ 0x85a6: "\x01\x02\x02\x04\x01\x03\x05\x02\x02\x01\x01\x05\x04\x04\x04\x04", // 薦
+ 0x85a7: "\x01\x02\x02\x04\x01\x02\x05\x01\x04\x05\x01\x03\x05\x04\x03\x05", // 薧
+ 0x85a8: "\x01\x02\x02\x02\x05\x02\x02\x01\x04\x05\x01\x03\x05\x04\x03\x05", // 薨
+ 0x85a9: "\x01\x02\x02\x05\x02\x04\x01\x04\x03\x01\x03\x03\x01\x01\x02\x01", // 薩
+ 0x85aa: "\x01\x02\x02\x04\x01\x04\x03\x01\x01\x02\x03\x04\x03\x03\x01\x02", // 薪
+ 0x85ab: "\x01\x02\x02\x03\x01\x02\x05\x01\x01\x02\x01\x01\x04\x04\x04\x04", // 薫
+ 0x85ac: "\x01\x02\x02\x03\x02\x05\x01\x01\x04\x01\x03\x04\x01\x02\x03\x04", // 薬
+ 0x85ad: "\x01\x02\x02\x03\x01\x02\x03\x04\x03\x02\x05\x01\x01\x03\x01\x02", // 薭
+ 0x85ae: "\x01\x02\x02\x04\x03\x01\x02\x03\x04\x05\x03\x01\x03\x01\x03\x04", // 薮
+ 0x85af: "\x01\x02\x02\x02\x05\x02\x02\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 薯
+ 0x85b0: "\x01\x02\x02\x03\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 薰
+ 0x85b1: "\x01\x02\x02\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x01\x02\x04", // 薱
+ 0x85b2: "\x01\x02\x02\x04\x04\x05\x01\x02\x03\x03\x02\x05\x01\x01\x01\x03\x04", // 薲
+ 0x85b3: "\x01\x02\x02\x01\x02\x01\x02\x05\x01\x03\x02\x03\x04\x04\x05\x04", // 薳
+ 0x85b4: "\x01\x02\x02\x04\x04\x05\x04\x05\x04\x04\x02\x05\x02\x02\x01\x01\x02", // 薴
+ 0x85b5: "\x01\x02\x02\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 薵
+ 0x85b6: "\x01\x02\x02\x03\x04\x04\x03\x05\x03\x03\x02\x05\x01\x01\x02\x01\x01", // 薶
+ 0x85b7: "\x01\x02\x02\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02", // 薷
+ 0x85b8: "\x01\x02\x02\x04\x04\x01\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 薸
+ 0x85b9: "\x01\x02\x02\x01\x02\x01\x02\x05\x01\x04\x05\x01\x05\x04\x01\x02\x01", // 薹
+ 0x85ba: "\x01\x02\x02\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x01\x03\x02\x01\x01", // 薺
+ 0x85bb: "\x01\x02\x02\x04\x04\x01\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 薻
+ 0x85bc: "\x01\x02\x02\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x01\x02\x01", // 薼
+ 0x85bd: "\x01\x02\x02\x01\x02\x05\x02\x02\x01\x01\x02\x01\x01\x05\x05\x04", // 薽
+ 0x85be: "\x01\x02\x02\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 薾
+ 0x85bf: "\x01\x02\x02\x03\x05\x03\x01\x01\x03\x04\x05\x04\x05\x02\x01\x03\x04", // 薿
+ 0x85c0: "\x01\x02\x02\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x04\x03\x03\x04", // 藀
+ 0x85c1: "\x01\x02\x02\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x01\x02\x03\x04", // 藁
+ 0x85c2: "\x01\x02\x02\x01\x02\x02\x01\x01\x01\x05\x04\x03\x02\x03\x03\x03\x04", // 藂
+ 0x85c3: "\x01\x02\x02\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x03\x05\x03\x04", // 藃
+ 0x85c4: "\x01\x02\x02\x01\x02\x02\x01\x01\x01\x03\x04\x05\x05\x04\x02\x03\x04", // 藄
+ 0x85c5: "\x01\x02\x02\x02\x05\x02\x02\x01\x04\x01\x01\x01\x02\x05\x01\x02\x02", // 藅
+ 0x85c6: "\x01\x02\x02\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x03\x01\x01\x02", // 藆
+ 0x85c7: "\x01\x02\x02\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 藇
+ 0x85c8: "\x01\x02\x02\x02\x05\x01\x01\x01\x05\x04\x03\x03\x04\x01\x01\x03\x04", // 藈
+ 0x85c9: "\x01\x02\x02\x01\x01\x01\x02\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01", // 藉
+ 0x85ca: "\x01\x02\x02\x03\x01\x02\x03\x04\x04\x05\x01\x03\x02\x05\x01\x02\x02", // 藊
+ 0x85cb: "\x01\x02\x02\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 藋
+ 0x85cc: "\x01\x02\x02\x04\x04\x05\x04\x05\x04\x03\x04\x02\x05\x01\x02\x01\x04", // 藌
+ 0x85cd: "\x01\x02\x02\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01", // 藍
+ 0x85ce: "\x01\x02\x02\x05\x01\x01\x02\x01\x04\x04\x04\x04\x02\x05\x02\x02\x01", // 藎
+ 0x85cf: "\x01\x02\x02\x01\x03\x05\x01\x03\x01\x02\x05\x01\x02\x05\x05\x03\x04", // 藏
+ 0x85d0: "\x01\x02\x02\x03\x04\x04\x03\x05\x03\x03\x03\x02\x05\x01\x01\x03\x05", // 藐
+ 0x85d1: "\x01\x02\x02\x03\x05\x02\x05\x03\x04\x02\x05\x01\x01\x01\x03\x05\x04", // 藑
+ 0x85d2: "\x01\x02\x02\x03\x01\x02\x03\x04\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 藒
+ 0x85d3: "\x01\x02\x02\x03\x05\x02\x05\x01\x02\x01\x01\x04\x03\x01\x01\x01\x02", // 藓
+ 0x85d4: "\x01\x02\x02\x04\x04\x05\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 藔
+ 0x85d5: "\x01\x02\x02\x01\x01\x01\x02\x03\x04\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 藕
+ 0x85d6: "\x01\x02\x02\x01\x02\x05\x01\x02\x05\x05\x04\x02\x05\x01\x01\x01\x03\x04", // 藖
+ 0x85d7: "\x01\x02\x02\x01\x02\x05\x01\x02\x03\x04\x03\x05\x03\x04\x04\x05\x04", // 藗
+ 0x85d8: "\x01\x02\x02\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 藘
+ 0x85d9: "\x01\x02\x02\x04\x01\x04\x03\x01\x03\x05\x03\x03\x03\x04\x03\x05\x05\x04", // 藙
+ 0x85da: "\x01\x02\x02\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 藚
+ 0x85db: "\x01\x02\x02\x04\x04\x05\x03\x02\x01\x05\x01\x01\x03\x05\x04\x04\x04\x04", // 藛
+ 0x85dc: "\x01\x02\x02\x03\x01\x02\x03\x04\x03\x05\x03\x03\x04\x02\x04\x01\x03\x04", // 藜
+ 0x85dd: "\x01\x02\x02\x01\x02\x01\x03\x04\x01\x02\x01\x03\x05\x04\x01\x01\x05\x04", // 藝
+ 0x85de: "\x01\x02\x02\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01", // 藞
+ 0x85df: "\x01\x02\x02\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01", // 藟
+ 0x85e0: "\x01\x02\x02\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01", // 藠
+ 0x85e1: "\x01\x02\x02\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01\x04\x05\x04", // 藡
+ 0x85e2: "\x01\x02\x02\x03\x03\x02\x02\x05\x02\x01\x01\x01\x02\x01\x03\x01\x03\x04", // 藢
+ 0x85e3: "\x01\x02\x02\x02\x05\x02\x02\x01\x05\x04\x02\x05\x01\x01\x03\x05\x03\x05", // 藣
+ 0x85e4: "\x01\x02\x02\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04\x02\x04\x01\x03\x04", // 藤
+ 0x85e5: "\x01\x02\x02\x03\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x03\x04", // 藥
+ 0x85e6: "\x01\x02\x02\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x03\x01\x01\x02", // 藦
+ 0x85e7: "\x01\x02\x02\x05\x05\x04\x04\x04\x04\x03\x04\x04\x03\x01\x01\x03\x05\x04", // 藧
+ 0x85e8: "\x01\x02\x02\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x04\x04\x04\x04", // 藨
+ 0x85e9: "\x01\x02\x02\x04\x04\x01\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 藩
+ 0x85ea: "\x01\x02\x02\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01\x03\x01\x03\x04", // 藪
+ 0x85eb: "\x01\x02\x02\x04\x04\x01\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 藫
+ 0x85ec: "\x01\x02\x02\x05\x02\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 藬
+ 0x85ed: "\x01\x02\x02\x04\x04\x05\x03\x04\x03\x02\x05\x01\x01\x01\x03\x05\x01\x05", // 藭
+ 0x85ee: "\x01\x02\x02\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 藮
+ 0x85ef: "\x01\x02\x02\x05\x01\x03\x01\x01\x02\x03\x04\x01\x02\x04\x04\x05\x04\x04", // 藯
+ 0x85f0: "\x01\x02\x02\x03\x05\x04\x05\x03\x03\x04\x01\x01\x02\x04\x03\x01\x02\x02", // 藰
+ 0x85f1: "\x01\x02\x02\x04\x01\x03\x04\x01\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 藱
+ 0x85f2: "\x01\x02\x02\x01\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 藲
+ 0x85f3: "\x01\x02\x02\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x03\x01\x02\x03\x04", // 藳
+ 0x85f4: "\x01\x02\x02\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 藴
+ 0x85f5: "\x01\x02\x02\x03\x02\x02\x05\x01\x01\x02\x03\x04\x04\x01\x03\x05\x03\x04", // 藵
+ 0x85f6: "\x01\x02\x02\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 藶
+ 0x85f7: "\x01\x02\x02\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 藷
+ 0x85f8: "\x01\x02\x02\x01\x03\x05\x03\x03\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01", // 藸
+ 0x85f9: "\x01\x02\x02\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 藹
+ 0x85fa: "\x01\x02\x02\x02\x05\x01\x01\x02\x05\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 藺
+ 0x85fb: "\x01\x02\x02\x04\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 藻
+ 0x85fc: "\x01\x02\x02\x04\x04\x05\x01\x01\x01\x02\x02\x05\x02\x02\x01\x04\x05\x04\x04", // 藼
+ 0x85fd: "\x01\x02\x02\x04\x01\x04\x03\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 藽
+ 0x85fe: "\x01\x02\x02\x01\x02\x05\x01\x02\x03\x04\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 藾
+ 0x85ff: "\x01\x02\x02\x01\x04\x05\x02\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 藿
+ 0x8600: "\x01\x02\x02\x01\x02\x01\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 蘀
+ 0x8601: "\x01\x02\x02\x01\x02\x02\x05\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01\x01", // 蘁
+ 0x8602: "\x01\x02\x02\x04\x05\x04\x04\x04\x05\x04\x04\x04\x05\x04\x04\x01\x02\x03\x04", // 蘂
+ 0x8603: "\x01\x02\x02\x02\x01\x02\x01\x02\x01\x02\x01\x02\x01\x02\x01\x01\x02\x03\x04", // 蘃
+ 0x8604: "\x01\x02\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02", // 蘄
+ 0x8605: "\x01\x02\x02\x03\x03\x02\x03\x05\x02\x05\x01\x02\x01\x01\x03\x04\x01\x01\x02", // 蘅
+ 0x8606: "\x01\x02\x02\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 蘆
+ 0x8607: "\x01\x02\x02\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x02\x03\x04", // 蘇
+ 0x8608: "\x01\x02\x02\x03\x01\x02\x03\x04\x03\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 蘈
+ 0x8609: "\x01\x02\x02\x02\x05\x02\x02\x01\x04\x05\x03\x02\x05\x01\x01\x04\x05\x05\x04", // 蘉
+ 0x860a: "\x01\x02\x02\x05\x05\x04\x04\x04\x04\x02\x05\x03\x04\x01\x02\x05\x02\x02\x01", // 蘊
+ 0x860b: "\x01\x02\x02\x02\x01\x02\x01\x02\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 蘋
+ 0x860c: "\x01\x02\x02\x03\x03\x02\x03\x01\x01\x02\x01\x02\x01\x05\x02\x01\x01\x02\x03\x04", // 蘌
+ 0x860d: "\x01\x02\x02\x03\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x05\x03", // 蘍
+ 0x860e: "\x01\x02\x02\x01\x04\x05\x02\x04\x04\x04\x04\x03\x05\x01\x01\x05\x02\x01\x05", // 蘎
+ 0x860f: "\x01\x02\x02\x03\x05\x01\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 蘏
+ 0x8610: "\x01\x02\x02\x04\x01\x01\x01\x02\x05\x01\x03\x04\x04\x03\x01\x01\x03\x05\x04", // 蘐
+ 0x8611: "\x01\x02\x02\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x01\x03\x02\x05\x01", // 蘑
+ 0x8612: "\x01\x02\x02\x03\x01\x02\x03\x04\x03\x05\x02\x05\x01\x01\x02\x05\x01\x01\x05", // 蘒
+ 0x8613: "\x01\x02\x02\x03\x01\x02\x03\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 蘓
+ 0x8614: "\x01\x02\x02\x03\x05\x03\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 蘔
+ 0x8615: "\x01\x02\x02\x05\x05\x04\x04\x04\x04\x03\x05\x04\x01\x01\x01\x02\x04\x05\x04", // 蘕
+ 0x8616: "\x01\x02\x02\x03\x02\x05\x01\x05\x01\x04\x01\x04\x03\x01\x01\x02\x01\x02\x03\x04", // 蘖
+ 0x8617: "\x01\x02\x02\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x01\x02\x03\x04", // 蘗
+ 0x8618: "\x01\x02\x02\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 蘘
+ 0x8619: "\x01\x02\x02\x01\x03\x01\x01\x03\x04\x05\x03\x05\x05\x04\x05\x04\x01\x05\x04\x01", // 蘙
+ 0x861a: "\x01\x02\x02\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x01\x01\x01\x02", // 蘚
+ 0x861b: "\x01\x02\x02\x01\x02\x02\x01\x01\x01\x03\x04\x05\x04\x01\x05\x04\x02\x05\x01\x01", // 蘛
+ 0x861c: "\x01\x02\x02\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x04\x03\x01\x02\x03\x04", // 蘜
+ 0x861d: "\x01\x02\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x03\x05\x03\x04", // 蘝
+ 0x861e: "\x01\x02\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x03\x01\x03\x04", // 蘞
+ 0x861f: "\x01\x02\x02\x05\x02\x03\x04\x04\x03\x01\x02\x01\x05\x01\x01\x04\x05\x04\x04", // 蘟
+ 0x8620: "\x01\x02\x02\x05\x02\x01\x03\x01\x02\x03\x04\x03\x04\x01\x02\x05\x02\x05\x01\x01", // 蘠
+ 0x8621: "\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x05\x03\x01", // 蘡
+ 0x8622: "\x01\x02\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x05\x01\x05\x01\x01\x01", // 蘢
+ 0x8623: "\x01\x02\x02\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04\x04\x01\x01\x02\x01", // 蘣
+ 0x8624: "\x01\x02\x02\x03\x02\x05\x01\x01\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04", // 蘤
+ 0x8625: "\x01\x02\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02", // 蘥
+ 0x8626: "\x01\x02\x02\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 蘦
+ 0x8627: "\x01\x02\x02\x02\x01\x05\x03\x01\x05\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 蘧
+ 0x8628: "\x01\x02\x02\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02\x03\x05\x05\x04\x02\x03\x04", // 蘨
+ 0x8629: "\x01\x02\x02\x03\x01\x05\x05\x04\x01\x04\x03\x01\x03\x04\x05\x05\x04\x02\x03\x04", // 蘩
+ 0x862a: "\x01\x02\x02\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x04\x03\x01\x02\x03\x04", // 蘪
+ 0x862b: "\x01\x02\x02\x04\x04\x01\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01", // 蘫
+ 0x862c: "\x01\x02\x02\x03\x02\x05\x01\x05\x01\x02\x01\x02\x01\x05\x01\x01\x04\x05\x02\x05\x02", // 蘬
+ 0x862d: "\x01\x02\x02\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 蘭
+ 0x862e: "\x01\x02\x02\x02\x05\x02\x02\x01\x01\x03\x04\x03\x03\x04\x04\x03\x03\x04\x02\x02", // 蘮
+ 0x862f: "\x01\x02\x02\x04\x04\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03\x02\x05\x02\x02\x01", // 蘯
+ 0x8630: "\x01\x02\x02\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 蘰
+ 0x8631: "\x01\x02\x02\x04\x03\x01\x02\x03\x04\x01\x03\x04\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 蘱
+ 0x8632: "\x01\x02\x02\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x01\x02\x01", // 蘲
+ 0x8633: "\x01\x02\x02\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04\x01\x02\x01\x01\x02\x01", // 蘳
+ 0x8634: "\x01\x02\x02\x01\x01\x01\x02\x02\x01\x01\x01\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 蘴
+ 0x8635: "\x01\x02\x02\x01\x02\x02\x01\x01\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05\x03\x04", // 蘵
+ 0x8636: "\x01\x02\x02\x03\x01\x02\x03\x04\x05\x03\x01\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 蘶
+ 0x8637: "\x01\x02\x02\x01\x03\x02\x05\x01\x01\x02\x01\x02\x01\x05\x01\x05\x03\x04\x03\x05\x04", // 蘷
+ 0x8638: "\x01\x02\x02\x01\x02\x05\x03\x05\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 蘸
+ 0x8639: "\x01\x02\x02\x04\x04\x02\x04\x01\x02\x05\x02\x02\x01\x02\x04\x01\x03\x04\x03\x05\x03\x04", // 蘹
+ 0x863a: "\x01\x02\x02\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 蘺
+ 0x863b: "\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x05\x02\x03\x05\x05\x04\x05\x05\x04\x02\x03\x04", // 蘻
+ 0x863c: "\x01\x02\x02\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01", // 蘼
+ 0x863d: "\x01\x02\x02\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x01\x02\x03\x04", // 蘽
+ 0x863e: "\x01\x02\x02\x01\x02\x01\x04\x01\x02\x05\x02\x02\x01\x02\x04\x01\x03\x04\x03\x05\x03\x04", // 蘾
+ 0x863f: "\x01\x02\x02\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 蘿
+ 0x8640: "\x01\x02\x02\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 虀
+ 0x8641: "\x01\x02\x02\x04\x03\x01\x03\x02\x05\x01\x01\x01\x02\x01\x02\x01\x05\x01\x05\x03\x04\x03\x05\x04", // 虁
+ 0x8642: "\x01\x02\x02\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x01\x02\x01\x03\x05\x04\x02\x05\x01", // 虂
+ 0x8643: "\x01\x02\x02\x04\x04\x01\x03\x04\x03\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 虃
+ 0x8644: "\x01\x02\x02\x02\x05\x01\x02\x01\x04\x03\x05\x04\x04\x01\x04\x03\x01\x03\x03\x01\x01\x02\x01", // 虄
+ 0x8645: "\x01\x02\x02\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 虅
+ 0x8646: "\x01\x02\x02\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 虆
+ 0x8647: "\x01\x02\x02\x05\x01\x05\x01\x02\x02\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 虇
+ 0x8648: "\x01\x02\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 虈
+ 0x8649: "\x01\x02\x02\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 虉
+ 0x864a: "\x01\x02\x02\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x01\x02\x03\x04", // 虊
+ 0x864b: "\x01\x02\x02\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x04\x05\x01\x02\x05\x03\x05\x01\x01\x03\x04\x05\x03", // 虋
+ 0x864c: "\x01\x02\x02\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04\x02\x05\x01\x01\x02\x05\x05\x01\x01\x01\x05\x01", // 虌
+ 0x864d: "\x02\x01\x05\x03\x01\x05", // 虍
+ 0x864e: "\x02\x01\x05\x03\x01\x05\x03\x05", // 虎
+ 0x864f: "\x02\x01\x05\x03\x01\x05\x05\x03", // 虏
+ 0x8650: "\x02\x01\x05\x03\x01\x05\x01\x05\x01", // 虐
+ 0x8651: "\x02\x01\x05\x03\x01\x05\x04\x05\x04\x04", // 虑
+ 0x8652: "\x03\x03\x02\x01\x05\x03\x01\x05\x03\x05", // 虒
+ 0x8653: "\x03\x05\x02\x01\x05\x03\x01\x05\x03\x05", // 虓
+ 0x8654: "\x02\x01\x05\x03\x01\x05\x04\x01\x03\x04", // 虔
+ 0x8655: "\x02\x01\x05\x03\x01\x05\x03\x05\x04\x03\x05", // 處
+ 0x8656: "\x02\x01\x05\x03\x01\x05\x03\x04\x03\x01\x02", // 虖
+ 0x8657: "\x02\x01\x05\x03\x01\x05\x03\x02\x01\x02\x01", // 虗
+ 0x8658: "\x02\x01\x05\x03\x01\x05\x02\x05\x01\x01\x01", // 虘
+ 0x8659: "\x02\x01\x05\x03\x01\x05\x04\x05\x04\x03\x04", // 虙
+ 0x865a: "\x02\x01\x05\x03\x01\x05\x02\x02\x04\x03\x01", // 虚
+ 0x865b: "\x02\x01\x05\x03\x01\x05\x02\x02\x05\x02\x01\x01", // 虛
+ 0x865c: "\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x05\x03", // 虜
+ 0x865d: "\x02\x01\x05\x03\x01\x05\x03\x05\x03\x05\x03\x03", // 虝
+ 0x865e: "\x02\x01\x05\x03\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 虞
+ 0x865f: "\x02\x05\x01\x01\x05\x02\x01\x05\x03\x01\x05\x03\x05", // 號
+ 0x8660: "\x04\x01\x03\x04\x03\x04\x02\x01\x05\x03\x01\x05\x03\x05", // 虠
+ 0x8661: "\x02\x01\x05\x03\x01\x05\x02\x02\x04\x03\x01\x03\x04", // 虡
+ 0x8662: "\x03\x04\x04\x03\x01\x02\x04\x02\x01\x05\x03\x01\x05\x03\x05", // 虢
+ 0x8663: "\x01\x01\x02\x01\x02\x01\x05\x04\x02\x01\x05\x03\x01\x05\x03\x05", // 虣
+ 0x8664: "\x02\x01\x05\x03\x01\x05\x03\x05\x02\x01\x05\x03\x01\x05\x03\x05", // 虤
+ 0x8665: "\x02\x01\x05\x03\x01\x05\x03\x05\x01\x05\x03\x04\x01\x05\x03\x04", // 虥
+ 0x8666: "\x01\x05\x03\x04\x01\x05\x03\x04\x02\x01\x05\x03\x01\x05\x03\x05", // 虦
+ 0x8667: "\x02\x01\x05\x03\x01\x05\x03\x02\x04\x01\x01\x01\x02\x01\x01\x01\x05", // 虧
+ 0x8668: "\x02\x01\x05\x03\x01\x05\x01\x02\x03\x04\x01\x02\x03\x04\x03\x03\x03", // 虨
+ 0x8669: "\x02\x04\x03\x02\x05\x01\x01\x02\x03\x04\x02\x01\x05\x03\x01\x05\x03\x05", // 虩
+ 0x866a: "\x02\x01\x05\x03\x01\x05\x03\x05\x03\x02\x02\x03\x05\x04\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 虪
+ 0x866b: "\x02\x05\x01\x02\x01\x04", // 虫
+ 0x866c: "\x02\x05\x01\x02\x01\x04\x05", // 虬
+ 0x866d: "\x02\x05\x01\x02\x01\x04\x05\x03", // 虭
+ 0x866e: "\x02\x05\x01\x02\x01\x04\x03\x05", // 虮
+ 0x866f: "\x02\x05\x01\x02\x01\x04\x05\x02", // 虯
+ 0x8670: "\x02\x05\x01\x02\x01\x04\x01\x02", // 虰
+ 0x8671: "\x05\x03\x02\x05\x01\x02\x01\x04", // 虱
+ 0x8672: "\x02\x05\x01\x02\x01\x04\x02\x04", // 虲
+ 0x8673: "\x02\x05\x01\x02\x01\x04\x03\x05\x04", // 虳
+ 0x8674: "\x02\x05\x01\x02\x01\x04\x03\x01\x05", // 虴
+ 0x8675: "\x02\x05\x01\x02\x01\x04\x05\x02\x05", // 虵
+ 0x8676: "\x02\x05\x01\x02\x01\x04\x01\x01\x02", // 虶
+ 0x8677: "\x02\x05\x01\x02\x01\x04\x01\x01\x02", // 虷
+ 0x8678: "\x02\x05\x01\x02\x01\x04\x05\x02\x01", // 虸
+ 0x8679: "\x02\x05\x01\x02\x01\x04\x01\x02\x01", // 虹
+ 0x867a: "\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 虺
+ 0x867b: "\x02\x05\x01\x02\x01\x04\x04\x01\x05", // 虻
+ 0x867c: "\x02\x05\x01\x02\x01\x04\x03\x01\x05", // 虼
+ 0x867d: "\x02\x05\x01\x02\x05\x01\x02\x01\x04", // 虽
+ 0x867e: "\x02\x05\x01\x02\x01\x04\x01\x02\x04", // 虾
+ 0x867f: "\x01\x05\x03\x02\x05\x01\x02\x01\x04", // 虿
+ 0x8680: "\x03\x05\x05\x02\x05\x01\x02\x01\x04", // 蚀
+ 0x8681: "\x02\x05\x01\x02\x01\x04\x04\x03\x04", // 蚁
+ 0x8682: "\x02\x05\x01\x02\x01\x04\x05\x05\x01", // 蚂
+ 0x8683: "\x05\x05\x03\x02\x05\x01\x02\x01\x04", // 蚃
+ 0x8684: "\x02\x05\x01\x02\x01\x04\x04\x01\x05\x03", // 蚄
+ 0x8685: "\x02\x05\x01\x02\x01\x04\x01\x03\x05\x05", // 蚅
+ 0x8686: "\x02\x05\x01\x02\x01\x04\x05\x02\x01\x05", // 蚆
+ 0x8687: "\x02\x05\x01\x02\x01\x04\x05\x01\x03\x04", // 蚇
+ 0x8688: "\x02\x05\x01\x02\x01\x04\x01\x01\x03\x02", // 蚈
+ 0x8689: "\x04\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 蚉
+ 0x868a: "\x02\x05\x01\x02\x01\x04\x04\x01\x03\x04", // 蚊
+ 0x868b: "\x02\x05\x01\x02\x01\x04\x02\x05\x03\x04", // 蚋
+ 0x868c: "\x02\x05\x01\x02\x01\x04\x01\x01\x01\x02", // 蚌
+ 0x868d: "\x02\x05\x01\x02\x01\x04\x01\x05\x03\x05", // 蚍
+ 0x868e: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01", // 蚎
+ 0x868f: "\x02\x05\x01\x02\x01\x04\x03\x05\x01\x01", // 蚏
+ 0x8690: "\x02\x05\x01\x02\x01\x04\x03\x05\x04\x01", // 蚐
+ 0x8691: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x04", // 蚑
+ 0x8692: "\x02\x05\x01\x02\x01\x04\x03\x05\x04\x01", // 蚒
+ 0x8693: "\x02\x05\x01\x02\x01\x04\x05\x01\x05\x02", // 蚓
+ 0x8694: "\x02\x05\x01\x02\x01\x04\x03\x05\x01\x05", // 蚔
+ 0x8695: "\x01\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 蚕
+ 0x8696: "\x02\x05\x01\x02\x01\x04\x01\x01\x03\x05", // 蚖
+ 0x8697: "\x02\x05\x01\x02\x01\x04\x05\x01\x03\x04", // 蚗
+ 0x8698: "\x02\x05\x01\x02\x01\x04\x01\x03\x05\x04", // 蚘
+ 0x8699: "\x02\x05\x01\x02\x01\x04\x03\x04\x04\x05", // 蚙
+ 0x869a: "\x02\x05\x01\x02\x01\x04\x03\x03\x01\x02", // 蚚
+ 0x869b: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02", // 蚛
+ 0x869c: "\x02\x05\x01\x02\x01\x04\x01\x05\x02\x03", // 蚜
+ 0x869d: "\x02\x05\x01\x02\x01\x04\x03\x01\x01\x05", // 蚝
+ 0x869e: "\x02\x05\x01\x02\x01\x04\x01\x02\x03\x04", // 蚞
+ 0x869f: "\x02\x05\x01\x02\x01\x04\x01\x01\x02\x01", // 蚟
+ 0x86a0: "\x03\x04\x05\x03\x02\x05\x01\x02\x01\x04", // 蚠
+ 0x86a1: "\x02\x05\x01\x02\x01\x04\x03\x04\x05\x03", // 蚡
+ 0x86a2: "\x02\x05\x01\x02\x01\x04\x04\x01\x03\x05", // 蚢
+ 0x86a3: "\x02\x05\x01\x02\x01\x04\x03\x04\x05\x04", // 蚣
+ 0x86a4: "\x05\x04\x04\x02\x05\x01\x02\x01\x04", // 蚤
+ 0x86a5: "\x02\x05\x01\x02\x01\x04\x03\x04\x03\x04", // 蚥
+ 0x86a6: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01", // 蚦
+ 0x86a7: "\x02\x05\x01\x02\x01\x04\x03\x04\x03\x02", // 蚧
+ 0x86a8: "\x02\x05\x01\x02\x01\x04\x01\x01\x03\x04", // 蚨
+ 0x86a9: "\x05\x02\x02\x01\x02\x05\x01\x02\x01\x04", // 蚩
+ 0x86aa: "\x02\x05\x01\x02\x01\x04\x04\x04\x01\x02", // 蚪
+ 0x86ab: "\x02\x05\x01\x02\x01\x04\x03\x05\x05\x01\x05", // 蚫
+ 0x86ac: "\x02\x05\x01\x02\x01\x04\x02\x05\x03\x05", // 蚬
+ 0x86ad: "\x02\x05\x01\x02\x01\x04\x05\x01\x03\x03\x05", // 蚭
+ 0x86ae: "\x02\x05\x01\x02\x01\x04\x03\x02\x01\x05\x04", // 蚮
+ 0x86af: "\x02\x05\x01\x02\x01\x04\x03\x02\x01\x02\x01", // 蚯
+ 0x86b0: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01", // 蚰
+ 0x86b1: "\x02\x05\x01\x02\x01\x04\x03\x01\x02\x01\x01", // 蚱
+ 0x86b2: "\x02\x05\x01\x02\x01\x04\x01\x04\x03\x01\x02", // 蚲
+ 0x86b3: "\x02\x05\x01\x02\x01\x04\x03\x05\x01\x05\x04", // 蚳
+ 0x86b4: "\x02\x05\x01\x02\x01\x04\x05\x05\x04\x05\x03", // 蚴
+ 0x86b5: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x01\x02", // 蚵
+ 0x86b6: "\x02\x05\x01\x02\x01\x04\x01\x02\x02\x01\x01", // 蚶
+ 0x86b7: "\x02\x05\x01\x02\x01\x04\x01\x05\x01\x05", // 蚷
+ 0x86b8: "\x02\x05\x01\x02\x01\x04\x03\x03\x01\x02\x04", // 蚸
+ 0x86b9: "\x02\x05\x01\x02\x01\x04\x03\x02\x01\x02\x04", // 蚹
+ 0x86ba: "\x02\x05\x01\x02\x01\x04\x02\x05\x02\x01\x01", // 蚺
+ 0x86bb: "\x01\x02\x03\x04\x05\x02\x05\x01\x02\x01\x04", // 蚻
+ 0x86bc: "\x02\x05\x01\x02\x01\x04\x03\x05\x02\x05\x01", // 蚼
+ 0x86bd: "\x02\x05\x01\x02\x01\x04\x01\x03\x02\x04\x01", // 蚽
+ 0x86be: "\x02\x05\x01\x02\x01\x04\x05\x03\x02\x05\x04", // 蚾
+ 0x86bf: "\x02\x05\x01\x02\x01\x04\x04\x01\x05\x05\x04", // 蚿
+ 0x86c0: "\x02\x05\x01\x02\x01\x04\x04\x01\x01\x02\x01", // 蛀
+ 0x86c1: "\x02\x05\x01\x02\x01\x04\x05\x03\x02\x05\x01", // 蛁
+ 0x86c2: "\x02\x05\x01\x02\x01\x04\x01\x03\x05\x04\x04", // 蛂
+ 0x86c3: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x03\x04", // 蛃
+ 0x86c4: "\x02\x05\x01\x02\x01\x04\x01\x02\x02\x05\x01", // 蛄
+ 0x86c5: "\x02\x05\x01\x02\x01\x04\x02\x01\x02\x05\x01", // 蛅
+ 0x86c6: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x01", // 蛆
+ 0x86c7: "\x02\x05\x01\x02\x01\x04\x04\x04\x05\x03\x05", // 蛇
+ 0x86c8: "\x02\x05\x01\x02\x01\x04\x03\x01\x01\x03\x04", // 蛈
+ 0x86c9: "\x02\x05\x01\x02\x01\x04\x03\x04\x04\x05\x04", // 蛉
+ 0x86ca: "\x02\x05\x01\x02\x01\x04\x02\x05\x02\x02\x01", // 蛊
+ 0x86cb: "\x05\x02\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 蛋
+ 0x86cc: "\x02\x05\x01\x02\x01\x04\x03\x03\x05\x04\x04", // 蛌
+ 0x86cd: "\x04\x04\x03\x04\x05\x02\x05\x01\x02\x01\x04", // 蛍
+ 0x86ce: "\x02\x05\x01\x02\x01\x04\x01\x03\x01\x05\x03", // 蛎
+ 0x86cf: "\x02\x05\x01\x02\x01\x04\x05\x04\x01\x02\x01", // 蛏
+ 0x86d0: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x02\x01", // 蛐
+ 0x86d1: "\x02\x05\x01\x02\x01\x04\x05\x04\x03\x01\x01\x02", // 蛑
+ 0x86d2: "\x02\x05\x01\x02\x01\x04\x03\x05\x04\x02\x05\x01", // 蛒
+ 0x86d3: "\x01\x02\x01\x02\x05\x01\x02\x01\x04\x05\x03\x04", // 蛓
+ 0x86d4: "\x02\x05\x01\x02\x01\x04\x02\x05\x02\x05\x01\x01", // 蛔
+ 0x86d5: "\x02\x05\x01\x02\x01\x04\x01\x03\x02\x05\x01\x01", // 蛕
+ 0x86d6: "\x02\x05\x01\x02\x01\x04\x01\x03\x05\x03\x03\x03\x04", // 蛖
+ 0x86d7: "\x03\x02\x05\x01\x05\x01\x02\x05\x01\x02\x01\x04", // 蛗
+ 0x86d8: "\x02\x05\x01\x02\x01\x04\x04\x03\x01\x01\x01\x02", // 蛘
+ 0x86d9: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x01\x02\x01", // 蛙
+ 0x86da: "\x02\x05\x01\x02\x01\x04\x01\x03\x05\x04\x02\x02", // 蛚
+ 0x86db: "\x02\x05\x01\x02\x01\x04\x03\x01\x01\x02\x03\x04", // 蛛
+ 0x86dc: "\x02\x05\x01\x02\x01\x04\x03\x02\x05\x01\x01\x03", // 蛜
+ 0x86dd: "\x02\x05\x01\x02\x01\x04\x05\x01\x01\x05\x03\x04", // 蛝
+ 0x86de: "\x02\x05\x01\x02\x01\x04\x03\x01\x02\x02\x05\x01", // 蛞
+ 0x86df: "\x02\x05\x01\x02\x01\x04\x04\x01\x03\x04\x03\x04", // 蛟
+ 0x86e0: "\x02\x05\x01\x02\x01\x04\x05\x03\x05\x03\x05\x03", // 蛠
+ 0x86e1: "\x02\x05\x01\x02\x01\x04\x05\x04\x01\x05\x04\x01", // 蛡
+ 0x86e2: "\x02\x05\x01\x02\x01\x04\x04\x03\x01\x01\x03\x02", // 蛢
+ 0x86e3: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x02\x05\x01", // 蛣
+ 0x86e4: "\x02\x05\x01\x02\x01\x04\x03\x04\x01\x02\x05\x01", // 蛤
+ 0x86e5: "\x02\x05\x01\x02\x01\x04\x03\x05\x04\x03\x05\x04", // 蛥
+ 0x86e6: "\x02\x05\x01\x02\x01\x04\x01\x05\x01\x05\x03\x04", // 蛦
+ 0x86e7: "\x02\x05\x01\x02\x01\x04\x02\x05\x03\x04\x03\x04", // 蛧
+ 0x86e8: "\x02\x05\x01\x02\x01\x04\x01\x03\x02\x05\x01\x01", // 蛨
+ 0x86e9: "\x01\x02\x01\x03\x05\x04\x02\x05\x01\x02\x01\x04", // 蛩
+ 0x86ea: "\x01\x01\x01\x02\x05\x03\x02\x05\x01\x02\x01\x04", // 蛪
+ 0x86eb: "\x02\x05\x01\x02\x01\x04\x03\x05\x01\x03\x05\x05", // 蛫
+ 0x86ec: "\x01\x02\x02\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 蛬
+ 0x86ed: "\x02\x05\x01\x02\x01\x04\x01\x05\x04\x01\x02\x01", // 蛭
+ 0x86ee: "\x04\x01\x02\x02\x03\x04\x02\x05\x01\x02\x01\x04", // 蛮
+ 0x86ef: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x03\x03\x05", // 蛯
+ 0x86f0: "\x01\x02\x01\x03\x05\x04\x02\x05\x01\x02\x01\x04", // 蛰
+ 0x86f1: "\x02\x05\x01\x02\x01\x04\x01\x04\x03\x01\x03\x04", // 蛱
+ 0x86f2: "\x02\x05\x01\x02\x01\x04\x01\x05\x03\x01\x03\x05", // 蛲
+ 0x86f3: "\x02\x05\x01\x02\x01\x04\x02\x03\x01\x02\x05\x02", // 蛳
+ 0x86f4: "\x02\x05\x01\x02\x01\x04\x04\x01\x03\x04\x03\x02", // 蛴
+ 0x86f5: "\x02\x05\x01\x02\x01\x04\x01\x05\x05\x05\x01\x02\x01", // 蛵
+ 0x86f6: "\x02\x05\x01\x02\x01\x04\x03\x04\x04\x03\x01\x02\x04", // 蛶
+ 0x86f7: "\x02\x05\x01\x02\x01\x04\x01\x02\x04\x01\x03\x04\x04", // 蛷
+ 0x86f8: "\x02\x05\x01\x02\x01\x04\x02\x04\x03\x02\x05\x01\x01", // 蛸
+ 0x86f9: "\x02\x05\x01\x02\x01\x04\x05\x04\x02\x05\x01\x01\x02", // 蛹
+ 0x86fa: "\x02\x05\x01\x02\x01\x04\x01\x03\x04\x03\x04\x03\x04", // 蛺
+ 0x86fb: "\x02\x05\x01\x02\x01\x04\x03\x04\x02\x05\x01\x03\x05", // 蛻
+ 0x86fc: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x01\x01\x01\x02", // 蛼
+ 0x86fd: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x01\x03\x04", // 蛽
+ 0x86fe: "\x02\x05\x01\x02\x01\x04\x03\x01\x02\x01\x05\x03\x04", // 蛾
+ 0x86ff: "\x02\x05\x01\x02\x01\x04\x03\x04\x04\x05\x02\x05\x01", // 蛿
+ 0x8700: "\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 蜀
+ 0x8701: "\x02\x05\x01\x02\x01\x04\x03\x01\x05\x02\x01\x03\x04", // 蜁
+ 0x8702: "\x02\x05\x01\x02\x01\x04\x03\x05\x04\x01\x01\x01\x02", // 蜂
+ 0x8703: "\x01\x03\x01\x01\x05\x03\x04\x02\x05\x01\x02\x01\x04", // 蜃
+ 0x8704: "\x02\x05\x01\x02\x01\x04\x01\x03\x01\x01\x05\x03\x04", // 蜄
+ 0x8705: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x01\x01\x02\x04", // 蜅
+ 0x8706: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x01\x03\x05", // 蜆
+ 0x8707: "\x01\x02\x01\x03\x03\x01\x02\x02\x05\x01\x02\x01\x04", // 蜇
+ 0x8708: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x01\x03\x04", // 蜈
+ 0x8709: "\x02\x05\x01\x02\x01\x04\x03\x04\x04\x03\x05\x02\x01", // 蜉
+ 0x870a: "\x02\x05\x01\x02\x01\x04\x03\x01\x02\x03\x04\x02\x02", // 蜊
+ 0x870b: "\x02\x05\x01\x02\x01\x04\x04\x05\x01\x01\x05\x03\x04", // 蜋
+ 0x870c: "\x02\x05\x01\x02\x01\x04\x01\x05\x03\x05\x01\x02\x01", // 蜌
+ 0x870d: "\x02\x05\x01\x02\x01\x04\x03\x04\x01\x01\x02\x03\x04", // 蜍
+ 0x870e: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x05\x01\x01", // 蜎
+ 0x870f: "\x02\x05\x01\x02\x01\x04\x03\x01\x02\x03\x04\x05\x03", // 蜏
+ 0x8710: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x05\x04\x05\x03", // 蜐
+ 0x8711: "\x03\x02\x01\x05\x05\x04\x02\x05\x01\x02\x01\x04", // 蜑
+ 0x8712: "\x02\x05\x01\x02\x01\x04\x03\x02\x01\x05\x05\x04", // 蜒
+ 0x8713: "\x02\x05\x01\x02\x01\x04\x03\x01\x02\x01\x05\x04", // 蜓
+ 0x8714: "\x02\x05\x01\x02\x01\x04\x03\x05\x02\x05\x01\x02\x01", // 蜔
+ 0x8715: "\x02\x05\x01\x02\x01\x04\x04\x03\x02\x05\x01\x03\x05", // 蜕
+ 0x8716: "\x02\x05\x01\x02\x01\x04\x02\x05\x02\x02\x01\x01\x01", // 蜖
+ 0x8717: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x05\x03\x04", // 蜗
+ 0x8718: "\x02\x05\x01\x02\x01\x04\x03\x01\x01\x03\x04\x02\x05\x01", // 蜘
+ 0x8719: "\x02\x05\x01\x02\x01\x04\x01\x02\x03\x04\x03\x04\x05\x04", // 蜙
+ 0x871a: "\x02\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x02\x01\x04", // 蜚
+ 0x871b: "\x02\x05\x01\x02\x01\x04\x05\x01\x03\x01\x02\x02\x05\x01", // 蜛
+ 0x871c: "\x04\x04\x05\x04\x05\x04\x03\x04\x02\x05\x01\x02\x01\x04", // 蜜
+ 0x871d: "\x01\x02\x02\x01\x01\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 蜝
+ 0x871e: "\x02\x05\x01\x02\x01\x04\x01\x02\x02\x01\x01\x01\x03\x04", // 蜞
+ 0x871f: "\x02\x05\x01\x02\x01\x04\x04\x01\x05\x04\x02\x05\x01\x01", // 蜟
+ 0x8720: "\x02\x05\x01\x02\x01\x04\x02\x05\x03\x01\x02\x03\x04\x01", // 蜠
+ 0x8721: "\x02\x05\x01\x02\x01\x04\x01\x02\x02\x01\x02\x05\x01\x01", // 蜡
+ 0x8722: "\x02\x05\x01\x02\x01\x04\x05\x02\x01\x02\x05\x02\x02\x01", // 蜢
+ 0x8723: "\x02\x05\x01\x02\x01\x04\x04\x03\x01\x01\x01\x03\x05", // 蜣
+ 0x8724: "\x01\x02\x03\x04\x03\x03\x01\x02\x02\x05\x01\x02\x01\x04", // 蜤
+ 0x8725: "\x02\x05\x01\x02\x01\x04\x01\x02\x03\x04\x03\x03\x01\x02", // 蜥
+ 0x8726: "\x02\x05\x01\x02\x01\x04\x03\x04\x01\x02\x05\x01\x02\x02", // 蜦
+ 0x8727: "\x02\x05\x01\x02\x01\x04\x04\x05\x01\x03\x01\x03\x04\x04", // 蜧
+ 0x8728: "\x02\x05\x01\x02\x01\x04\x01\x05\x01\x01\x02\x01\x03\x04", // 蜨
+ 0x8729: "\x02\x05\x01\x02\x01\x04\x03\x05\x01\x02\x01\x02\x05\x01", // 蜩
+ 0x872a: "\x02\x05\x01\x02\x01\x04\x03\x05\x03\x01\x01\x02\x05\x02", // 蜪
+ 0x872b: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x01\x05\x03\x05", // 蜫
+ 0x872c: "\x02\x05\x01\x02\x01\x04\x05\x02\x04\x01\x03\x04\x05\x02", // 蜬
+ 0x872d: "\x02\x05\x01\x02\x01\x04\x03\x05\x03\x02\x01\x05\x01\x01", // 蜭
+ 0x872e: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x01\x01\x05\x03\x04", // 蜮
+ 0x872f: "\x02\x05\x01\x02\x01\x04\x01\x01\x01\x03\x04\x01\x01\x02", // 蜯
+ 0x8730: "\x03\x05\x01\x01\x05\x02\x01\x05\x02\x05\x01\x02\x01\x04", // 蜰
+ 0x8731: "\x02\x05\x01\x02\x01\x04\x03\x02\x05\x01\x01\x03\x01\x02", // 蜱
+ 0x8732: "\x02\x05\x01\x02\x01\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 蜲
+ 0x8733: "\x02\x05\x01\x02\x01\x04\x04\x01\x02\x05\x01\x05\x02\x01", // 蜳
+ 0x8734: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x03\x05\x03\x03", // 蜴
+ 0x8735: "\x02\x05\x01\x02\x01\x04\x03\x02\x01\x01\x05\x05\x02\x01\x02", // 蜵
+ 0x8736: "\x02\x05\x01\x02\x01\x04\x04\x01\x03\x04\x03\x04\x01\x02", // 蜶
+ 0x8737: "\x02\x05\x01\x02\x01\x04\x04\x03\x01\x01\x03\x04\x05\x05", // 蜷
+ 0x8738: "\x01\x02\x05\x01\x02\x05\x05\x04\x02\x05\x01\x02\x01\x04", // 蜸
+ 0x8739: "\x02\x05\x01\x02\x01\x04\x01\x02\x02\x02\x05\x03\x04", // 蜹
+ 0x873a: "\x02\x05\x01\x02\x01\x04\x03\x02\x01\x05\x01\x01\x03\x05", // 蜺
+ 0x873b: "\x02\x05\x01\x02\x01\x04\x01\x01\x02\x01\x02\x05\x01\x01", // 蜻
+ 0x873c: "\x02\x05\x01\x02\x01\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 蜼
+ 0x873d: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x02\x03\x04\x03\x04", // 蜽
+ 0x873e: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x01\x02\x03\x04", // 蜾
+ 0x873f: "\x02\x05\x01\x02\x01\x04\x04\x04\x05\x03\x05\x04\x05\x05", // 蜿
+ 0x8740: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x01\x01\x02\x03\x04", // 蝀
+ 0x8741: "\x01\x02\x01\x05\x05\x01\x02\x01\x02\x05\x01\x02\x01\x04", // 蝁
+ 0x8742: "\x02\x05\x01\x02\x01\x04\x03\x02\x01\x05\x03\x03\x05\x04", // 蝂
+ 0x8743: "\x02\x05\x01\x02\x01\x04\x05\x04\x05\x04\x05\x04\x05\x04", // 蝃
+ 0x8744: "\x02\x05\x01\x02\x01\x04\x02\x05\x04\x03\x01\x04\x01\x05", // 蝄
+ 0x8745: "\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 蝅
+ 0x8746: "\x02\x05\x01\x02\x01\x04\x02\x01\x02\x01\x01\x01\x02", // 蝆
+ 0x8747: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x05\x01\x01\x05", // 蝇
+ 0x8748: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x02\x01\x04\x01", // 蝈
+ 0x8749: "\x02\x05\x01\x02\x01\x04\x04\x03\x02\x05\x01\x01\x01\x02", // 蝉
+ 0x874a: "\x02\x05\x01\x02\x01\x04\x04\x04\x05\x01\x02\x01\x03\x04", // 蝊
+ 0x874b: "\x02\x05\x01\x02\x01\x04\x04\x04\x03\x03\x05\x01\x01\x02", // 蝋
+ 0x874c: "\x02\x05\x01\x02\x01\x04\x03\x01\x02\x03\x04\x04\x04\x01\x02", // 蝌
+ 0x874d: "\x02\x05\x01\x02\x01\x04\x05\x01\x01\x05\x04\x05\x02", // 蝍
+ 0x874e: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 蝎
+ 0x874f: "\x02\x05\x01\x02\x01\x04\x04\x01\x02\x05\x01\x04\x05\x01\x02", // 蝏
+ 0x8750: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 蝐
+ 0x8751: "\x02\x05\x01\x02\x01\x04\x05\x02\x01\x03\x04\x02\x05\x01\x01", // 蝑
+ 0x8752: "\x02\x05\x01\x02\x01\x04\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 蝒
+ 0x8753: "\x02\x05\x01\x02\x01\x04\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 蝓
+ 0x8754: "\x02\x05\x01\x02\x01\x04\x01\x05\x03\x05\x03\x02\x05\x01\x01", // 蝔
+ 0x8755: "\x03\x04\x04\x05\x01\x01\x05\x04\x02\x05\x01\x02\x01\x04", // 蝕
+ 0x8756: "\x02\x05\x01\x02\x01\x04\x04\x04\x05\x01\x02\x05\x01\x01\x01", // 蝖
+ 0x8757: "\x02\x05\x01\x02\x01\x04\x03\x02\x05\x01\x01\x01\x01\x02\x01", // 蝗
+ 0x8758: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x01\x01\x05\x03\x01\x05", // 蝘
+ 0x8759: "\x02\x05\x01\x02\x01\x04\x04\x05\x01\x03\x02\x05\x01\x02\x02", // 蝙
+ 0x875a: "\x02\x05\x01\x02\x01\x04\x05\x04\x05\x02\x03\x01\x02\x03\x04", // 蝚
+ 0x875b: "\x02\x05\x01\x02\x01\x04\x01\x03\x01\x05\x03\x01\x05\x03\x04", // 蝛
+ 0x875c: "\x02\x05\x01\x02\x01\x04\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 蝜
+ 0x875d: "\x02\x05\x01\x02\x01\x04\x05\x05\x01\x03\x05\x03\x03\x03\x04", // 蝝
+ 0x875e: "\x02\x05\x01\x02\x01\x04\x05\x02\x01\x03\x02\x05\x01\x01\x01", // 蝞
+ 0x875f: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x02\x05\x01\x01", // 蝟
+ 0x8760: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 蝠
+ 0x8761: "\x02\x05\x01\x02\x01\x04\x01\x03\x02\x05\x02\x02\x01\x03\x04", // 蝡
+ 0x8762: "\x02\x05\x01\x02\x01\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 蝢
+ 0x8763: "\x02\x05\x01\x02\x01\x04\x04\x01\x05\x03\x03\x01\x05\x02\x01", // 蝣
+ 0x8764: "\x02\x05\x01\x02\x01\x04\x04\x03\x01\x02\x05\x03\x05\x01\x01", // 蝤
+ 0x8765: "\x05\x04\x05\x02\x03\x03\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 蝥
+ 0x8766: "\x02\x05\x01\x02\x01\x04\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 蝦
+ 0x8767: "\x02\x05\x01\x02\x01\x04\x01\x02\x02\x02\x05\x01\x03\x04", // 蝧
+ 0x8768: "\x05\x01\x02\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 蝨
+ 0x8769: "\x02\x05\x01\x02\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 蝩
+ 0x876a: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 蝪
+ 0x876b: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x03\x02\x05\x01\x01", // 蝫
+ 0x876c: "\x02\x05\x01\x02\x01\x04\x03\x04\x05\x02\x03\x04\x03\x05\x04", // 蝬
+ 0x876d: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 蝭
+ 0x876e: "\x02\x05\x01\x02\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 蝮
+ 0x876f: "\x02\x05\x01\x02\x01\x04\x03\x04\x04\x03\x01\x01\x03\x05\x04", // 蝯
+ 0x8770: "\x02\x05\x01\x02\x01\x04\x01\x03\x04\x01\x02\x01\x01\x02\x01", // 蝰
+ 0x8771: "\x04\x01\x05\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 蝱
+ 0x8772: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x01\x02\x03\x04\x02\x02", // 蝲
+ 0x8773: "\x02\x05\x01\x02\x01\x04\x01\x01\x02\x01\x05\x05\x04\x01\x04", // 蝳
+ 0x8774: "\x02\x05\x01\x02\x01\x04\x01\x02\x02\x05\x01\x03\x05\x01\x01", // 蝴
+ 0x8775: "\x03\x01\x02\x03\x04\x04\x03\x03\x04\x02\x05\x01\x02\x01\x04", // 蝵
+ 0x8776: "\x02\x05\x01\x02\x01\x04\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 蝶
+ 0x8777: "\x02\x05\x01\x02\x01\x04\x04\x01\x03\x04\x03\x01\x05\x02\x03", // 蝷
+ 0x8778: "\x02\x05\x01\x02\x01\x04\x02\x05\x05\x02\x05\x02\x05\x01", // 蝸
+ 0x8779: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 蝹
+ 0x877a: "\x02\x05\x01\x02\x01\x04\x03\x02\x05\x01\x02\x05\x02\x01\x04", // 蝺
+ 0x877b: "\x02\x05\x01\x02\x01\x04\x01\x02\x02\x05\x04\x03\x01\x01\x02", // 蝻
+ 0x877c: "\x02\x05\x01\x02\x01\x04\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 蝼
+ 0x877d: "\x02\x05\x01\x02\x01\x04\x01\x01\x01\x03\x04\x02\x05\x01\x01", // 蝽
+ 0x877e: "\x02\x05\x01\x02\x01\x04\x01\x02\x02\x04\x05\x01\x02\x03\x04", // 蝾
+ 0x877f: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x02\x05\x01\x01\x05", // 蝿
+ 0x8780: "\x04\x01\x02\x03\x05\x04\x01\x02\x04\x02\x05\x01\x02\x01\x04", // 螀
+ 0x8781: "\x02\x05\x01\x02\x01\x04\x05\x01\x01\x05\x03\x04\x04\x05\x04", // 螁
+ 0x8782: "\x02\x05\x01\x02\x01\x04\x04\x05\x01\x01\x05\x04\x05\x02", // 螂
+ 0x8783: "\x02\x05\x01\x02\x01\x04\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03", // 螃
+ 0x8784: "\x02\x05\x01\x02\x01\x04\x03\x02\x05\x01\x05\x01\x01\x02\x05\x02", // 螄
+ 0x8785: "\x02\x05\x01\x02\x01\x04\x03\x02\x05\x01\x01\x01\x04\x05\x04\x04", // 螅
+ 0x8786: "\x02\x05\x01\x02\x01\x04\x04\x03\x01\x05\x05\x04\x05\x05\x04", // 螆
+ 0x8787: "\x02\x05\x01\x02\x01\x04\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04", // 螇
+ 0x8788: "\x02\x05\x01\x02\x01\x04\x01\x03\x03\x02\x05\x01\x01\x02\x03\x04", // 螈
+ 0x8789: "\x02\x05\x01\x02\x01\x04\x03\x04\x05\x04\x05\x04\x01\x05\x04\x01", // 螉
+ 0x878a: "\x02\x05\x01\x02\x01\x04\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 螊
+ 0x878b: "\x02\x05\x01\x02\x01\x04\x03\x02\x01\x05\x01\x01\x02\x05\x04", // 螋
+ 0x878c: "\x03\x03\x05\x04\x01\x04\x03\x05\x05\x04\x02\x05\x01\x02\x01\x04", // 螌
+ 0x878d: "\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x02\x05\x01\x02\x01\x04", // 融
+ 0x878e: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 螎
+ 0x878f: "\x02\x05\x01\x02\x01\x04\x04\x01\x03\x04\x01\x03\x01\x01\x03\x04", // 螏
+ 0x8790: "\x02\x05\x01\x02\x01\x04\x03\x02\x05\x01\x01\x05\x04\x04\x04\x04", // 螐
+ 0x8791: "\x02\x05\x01\x02\x01\x04\x03\x02\x05\x01\x01\x01\x01\x03\x04\x04", // 螑
+ 0x8792: "\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04\x02\x05\x01\x02\x01\x04", // 螒
+ 0x8793: "\x02\x05\x01\x02\x01\x04\x01\x01\x01\x03\x04\x03\x01\x02\x03\x04", // 螓
+ 0x8794: "\x02\x05\x01\x02\x01\x04\x03\x03\x02\x01\x05\x03\x01\x05\x03\x05", // 螔
+ 0x8795: "\x02\x05\x01\x02\x01\x04\x03\x02\x05\x03\x04\x01\x01\x05\x03\x05", // 螕
+ 0x8796: "\x02\x05\x01\x02\x01\x04\x02\x05\x05\x04\x05\x02\x05\x01\x01", // 螖
+ 0x8797: "\x02\x05\x01\x02\x01\x04\x04\x01\x03\x05\x01\x01\x02\x02\x05\x01", // 螗
+ 0x8798: "\x02\x05\x01\x02\x01\x04\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 螘
+ 0x8799: "\x01\x02\x03\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 螙
+ 0x879a: "\x05\x04\x02\x05\x01\x01\x03\x05\x03\x05\x02\x05\x01\x02\x01\x04", // 螚
+ 0x879b: "\x02\x05\x01\x02\x01\x04\x04\x04\x05\x01\x01\x01\x02\x02\x05\x01", // 螛
+ 0x879c: "\x01\x02\x01\x04\x05\x01\x03\x05\x05\x04\x02\x05\x01\x02\x01\x04", // 螜
+ 0x879d: "\x02\x05\x01\x02\x01\x04\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 螝
+ 0x879e: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 螞
+ 0x879f: "\x02\x05\x01\x02\x01\x04\x04\x05\x02\x05\x01\x01\x04\x01\x03\x04", // 螟
+ 0x87a0: "\x02\x05\x01\x02\x01\x04\x04\x03\x01\x03\x04\x02\x05\x02\x02\x01", // 螠
+ 0x87a1: "\x04\x01\x03\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 螡
+ 0x87a2: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x02\x05\x01\x02\x01\x04", // 螢
+ 0x87a3: "\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 螣
+ 0x87a4: "\x04\x01\x03\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x03\x04", // 螤
+ 0x87a5: "\x02\x05\x01\x02\x01\x04\x03\x04\x04\x05\x01\x01\x03\x02\x05\x01", // 螥
+ 0x87a6: "\x02\x05\x01\x02\x01\x04\x01\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 螦
+ 0x87a7: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x03\x03\x05\x02\x05\x01\x01", // 螧
+ 0x87a8: "\x02\x05\x01\x02\x01\x04\x01\x02\x02\x01\x02\x05\x03\x04\x03\x04", // 螨
+ 0x87a9: "\x02\x05\x01\x02\x01\x04\x03\x02\x02\x03\x05\x04\x01\x02\x03\x04", // 螩
+ 0x87aa: "\x02\x05\x01\x02\x01\x04\x04\x01\x04\x03\x02\x05\x03\x04\x02\x05\x01", // 螪
+ 0x87ab: "\x01\x02\x01\x03\x02\x03\x04\x03\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 螫
+ 0x87ac: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01", // 螬
+ 0x87ad: "\x02\x05\x01\x02\x01\x04\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 螭
+ 0x87ae: "\x02\x05\x01\x02\x01\x04\x01\x03\x02\x02\x01\x05\x04\x05\x02\x05\x02", // 螮
+ 0x87af: "\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 螯
+ 0x87b0: "\x02\x05\x01\x02\x01\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 螰
+ 0x87b1: "\x05\x01\x03\x01\x01\x02\x03\x04\x01\x02\x04\x02\x05\x01\x02\x01\x04", // 螱
+ 0x87b2: "\x02\x05\x01\x02\x01\x04\x04\x04\x05\x03\x04\x01\x05\x04\x01\x02\x01", // 螲
+ 0x87b3: "\x02\x05\x01\x02\x01\x04\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x01", // 螳
+ 0x87b4: "\x05\x02\x01\x02\x05\x01\x01\x02\x03\x04\x02\x05\x01\x02\x01\x04", // 螴
+ 0x87b5: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 螵
+ 0x87b6: "\x01\x05\x01\x05\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 螶
+ 0x87b7: "\x04\x01\x03\x03\x02\x05\x01\x01\x03\x01\x02\x02\x05\x01\x02\x01\x04", // 螷
+ 0x87b8: "\x03\x04\x03\x04\x02\x05\x01\x03\x05\x03\x04\x02\x05\x01\x02\x01\x04", // 螸
+ 0x87b9: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02", // 螹
+ 0x87ba: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 螺
+ 0x87bb: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 螻
+ 0x87bc: "\x02\x05\x01\x02\x01\x04\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01", // 螼
+ 0x87bd: "\x03\x05\x04\x04\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 螽
+ 0x87be: "\x02\x05\x01\x02\x01\x04\x04\x04\x05\x01\x02\x05\x01\x02\x01\x03\x04", // 螾
+ 0x87bf: "\x05\x02\x01\x03\x03\x05\x04\x04\x01\x02\x04\x02\x05\x01\x02\x01\x04", // 螿
+ 0x87c0: "\x02\x05\x01\x02\x01\x04\x04\x01\x05\x05\x04\x04\x01\x03\x04\x01\x02", // 蟀
+ 0x87c1: "\x05\x01\x05\x01\x05\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 蟁
+ 0x87c2: "\x02\x05\x01\x02\x01\x04\x03\x02\x05\x01\x01\x01\x05\x01\x02\x03\x04", // 蟂
+ 0x87c3: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 蟃
+ 0x87c4: "\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04\x02\x05\x01\x02\x01\x04", // 蟄
+ 0x87c5: "\x02\x05\x01\x02\x01\x04\x04\x01\x03\x01\x02\x02\x01\x04\x04\x04\x04", // 蟅
+ 0x87c6: "\x02\x05\x01\x02\x01\x04\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 蟆
+ 0x87c7: "\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 蟇
+ 0x87c8: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x05\x01\x01\x05\x03\x04\x01", // 蟈
+ 0x87c9: "\x02\x05\x01\x02\x01\x04\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 蟉
+ 0x87ca: "\x05\x04\x05\x02\x03\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 蟊
+ 0x87cb: "\x02\x05\x01\x02\x01\x04\x03\x04\x03\x01\x02\x03\x04\x04\x05\x04\x04", // 蟋
+ 0x87cc: "\x02\x05\x01\x02\x01\x04\x03\x02\x05\x03\x05\x04\x01\x04\x05\x04\x04", // 蟌
+ 0x87cd: "\x02\x05\x01\x02\x01\x04\x03\x01\x02\x03\x04\x02\x02\x01\x02\x03\x04", // 蟍
+ 0x87ce: "\x02\x05\x01\x02\x01\x04\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04", // 蟎
+ 0x87cf: "\x02\x05\x01\x02\x01\x04\x01\x02\x02\x05\x01\x01\x02\x03\x02\x03\x04", // 蟏
+ 0x87d0: "\x02\x05\x01\x02\x01\x04\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x02", // 蟐
+ 0x87d1: "\x02\x05\x01\x02\x01\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02", // 蟑
+ 0x87d2: "\x02\x05\x01\x02\x01\x04\x01\x02\x02\x01\x03\x04\x04\x01\x03\x02", // 蟒
+ 0x87d3: "\x02\x05\x01\x02\x01\x04\x03\x05\x02\x05\x01\x03\x05\x03\x03\x03\x04", // 蟓
+ 0x87d4: "\x02\x05\x01\x02\x01\x04\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 蟔
+ 0x87d5: "\x02\x05\x01\x02\x01\x04\x02\x01\x02\x01\x03\x05\x03\x05\x03\x05\x01\x01\x02", // 蟕
+ 0x87d6: "\x02\x05\x01\x02\x01\x04\x01\x02\x02\x01\x01\x01\x03\x04\x03\x03\x01\x02", // 蟖
+ 0x87d7: "\x01\x02\x05\x01\x02\x04\x05\x05\x02\x02\x05\x02\x02\x05\x01\x02\x01\x04", // 蟗
+ 0x87d8: "\x02\x05\x01\x02\x01\x04\x03\x02\x01\x05\x04\x02\x05\x01\x01\x01\x03\x04", // 蟘
+ 0x87d9: "\x02\x05\x01\x02\x01\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05\x03\x04", // 蟙
+ 0x87da: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x03\x03\x03\x02\x05\x01\x02\x01\x04", // 蟚
+ 0x87db: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x02\x05\x01\x04\x03\x01\x03\x03\x03", // 蟛
+ 0x87dc: "\x02\x05\x01\x02\x01\x04\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 蟜
+ 0x87dd: "\x02\x05\x01\x02\x01\x04\x04\x04\x01\x01\x05\x01\x05\x01\x02\x03\x04", // 蟝
+ 0x87de: "\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 蟞
+ 0x87df: "\x02\x05\x01\x02\x01\x04\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 蟟
+ 0x87e0: "\x02\x05\x01\x02\x01\x04\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 蟠
+ 0x87e1: "\x02\x05\x01\x02\x01\x04\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04", // 蟡
+ 0x87e2: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01", // 蟢
+ 0x87e3: "\x02\x05\x01\x02\x01\x04\x05\x05\x04\x05\x05\x04\x01\x03\x04\x05\x03\x04", // 蟣
+ 0x87e4: "\x02\x05\x01\x02\x01\x04\x05\x01\x05\x05\x01\x05\x01\x02\x02\x01\x03\x04", // 蟤
+ 0x87e5: "\x02\x05\x01\x02\x01\x04\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 蟥
+ 0x87e6: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 蟦
+ 0x87e7: "\x02\x05\x01\x02\x01\x04\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x05\x03", // 蟧
+ 0x87e8: "\x01\x03\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04\x02\x05\x01\x02\x01\x04", // 蟨
+ 0x87e9: "\x02\x05\x01\x02\x01\x04\x01\x03\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04", // 蟩
+ 0x87ea: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x01\x01\x02\x01\x04\x04\x05\x04\x04", // 蟪
+ 0x87eb: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 蟫
+ 0x87ec: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x01", // 蟬
+ 0x87ed: "\x02\x05\x01\x02\x01\x04\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 蟭
+ 0x87ee: "\x02\x05\x01\x02\x01\x04\x04\x03\x01\x01\x01\x02\x04\x03\x01\x02\x05\x01", // 蟮
+ 0x87ef: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 蟯
+ 0x87f0: "\x02\x05\x01\x02\x01\x04\x05\x01\x01\x02\x03\x02\x01\x01\x05\x05\x02\x01\x02", // 蟰
+ 0x87f1: "\x02\x05\x01\x02\x01\x04\x03\x01\x01\x02\x02\x02\x02\x01\x04\x04\x04\x04", // 蟱
+ 0x87f2: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 蟲
+ 0x87f3: "\x02\x05\x01\x02\x01\x04\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04", // 蟳
+ 0x87f4: "\x01\x02\x02\x01\x01\x01\x03\x04\x03\x03\x01\x02\x02\x05\x01\x02\x01\x04", // 蟴
+ 0x87f5: "\x02\x05\x01\x02\x01\x04\x01\x03\x01\x02\x05\x01\x04\x03\x01\x01\x02\x04", // 蟵
+ 0x87f6: "\x02\x05\x01\x02\x01\x04\x01\x02\x02\x01\x01\x01\x02\x05\x01\x01\x01\x02\x01", // 蟶
+ 0x87f7: "\x02\x05\x01\x02\x01\x04\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x01\x02\x01", // 蟷
+ 0x87f8: "\x01\x03\x05\x03\x03\x03\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 蟸
+ 0x87f9: "\x03\x05\x03\x05\x01\x01\x02\x05\x03\x03\x01\x01\x02\x02\x05\x01\x02\x01\x04", // 蟹
+ 0x87fa: "\x02\x05\x01\x02\x01\x04\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 蟺
+ 0x87fb: "\x02\x05\x01\x02\x01\x04\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01\x05\x03\x04", // 蟻
+ 0x87fc: "\x01\x02\x02\x03\x05\x02\x05\x01\x03\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 蟼
+ 0x87fd: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x04\x03\x01\x01\x01\x02\x04\x05\x04", // 蟽
+ 0x87fe: "\x02\x05\x01\x02\x01\x04\x03\x05\x01\x03\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 蟾
+ 0x87ff: "\x01\x02\x05\x01\x01\x01\x02\x05\x02\x03\x05\x05\x04\x02\x05\x01\x02\x01\x04", // 蟿
+ 0x8800: "\x02\x05\x01\x02\x01\x04\x04\x01\x03\x05\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 蠀
+ 0x8801: "\x05\x05\x03\x04\x05\x01\x01\x05\x04\x05\x02\x02\x05\x01\x02\x01\x04", // 蠁
+ 0x8802: "\x02\x05\x01\x02\x01\x04\x01\x02\x02\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 蠂
+ 0x8803: "\x04\x01\x05\x02\x05\x01\x03\x05\x01\x01\x02\x05\x01\x02\x01\x04\x03\x05\x04", // 蠃
+ 0x8804: "\x02\x05\x01\x02\x01\x04\x03\x04\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 蠄
+ 0x8805: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x02\x05\x01\x02\x01\x01\x05\x01\x01", // 蠅
+ 0x8806: "\x01\x02\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 蠆
+ 0x8807: "\x02\x05\x01\x02\x01\x04\x01\x02\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 蠇
+ 0x8808: "\x02\x05\x01\x01\x01\x03\x04\x01\x01\x03\x05\x03\x04\x02\x05\x01\x02\x01\x04", // 蠈
+ 0x8809: "\x02\x05\x01\x02\x01\x04\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 蠉
+ 0x880a: "\x02\x05\x01\x02\x01\x04\x04\x01\x03\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 蠊
+ 0x880b: "\x02\x05\x01\x02\x01\x04\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 蠋
+ 0x880c: "\x02\x05\x01\x02\x01\x04\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 蠌
+ 0x880d: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x03\x05\x03\x04\x05\x03\x05\x03\x04", // 蠍
+ 0x880e: "\x02\x05\x01\x02\x01\x04\x01\x02\x02\x01\x03\x04\x01\x02\x01\x03\x02", // 蠎
+ 0x880f: "\x02\x05\x01\x02\x01\x04\x03\x05\x03\x05\x01\x01\x02\x05\x03\x03\x01\x01\x02", // 蠏
+ 0x8810: "\x02\x05\x01\x02\x01\x04\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01", // 蠐
+ 0x8811: "\x02\x05\x01\x02\x01\x04\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x01\x02\x03\x04", // 蠑
+ 0x8812: "\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04\x02\x05\x01\x02\x01\x04", // 蠒
+ 0x8813: "\x02\x05\x01\x02\x01\x04\x01\x02\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 蠓
+ 0x8814: "\x02\x05\x01\x02\x01\x04\x04\x01\x02\x05\x01\x04\x05\x01\x03\x05\x03\x03\x03\x04", // 蠔
+ 0x8815: "\x02\x05\x01\x02\x01\x04\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02", // 蠕
+ 0x8816: "\x02\x05\x01\x02\x01\x04\x01\x02\x02\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 蠖
+ 0x8817: "\x02\x05\x01\x02\x01\x04\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 蠗
+ 0x8818: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03\x04", // 蠘
+ 0x8819: "\x02\x05\x01\x02\x01\x04\x04\x04\x05\x01\x02\x03\x03\x02\x05\x01\x01\x01\x03\x04", // 蠙
+ 0x881a: "\x01\x02\x02\x01\x03\x02\x05\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 蠚
+ 0x881b: "\x02\x05\x01\x02\x01\x04\x01\x02\x02\x02\x05\x02\x02\x01\x01\x03\x04\x05\x03\x04", // 蠛
+ 0x881c: "\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x03\x04\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 蠜
+ 0x881d: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01", // 蠝
+ 0x881e: "\x03\x01\x04\x03\x01\x04\x05\x01\x01\x05\x04\x05\x02\x02\x05\x01\x02\x01\x04", // 蠞
+ 0x881f: "\x02\x05\x01\x02\x01\x04\x05\x05\x05\x02\x05\x03\x04\x01\x05\x04\x04\x05\x04\x04\x05", // 蠟
+ 0x8820: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 蠠
+ 0x8821: "\x05\x05\x01\x03\x05\x03\x03\x03\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 蠡
+ 0x8822: "\x01\x01\x01\x03\x04\x02\x05\x01\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 蠢
+ 0x8823: "\x02\x05\x01\x02\x01\x04\x01\x03\x01\x02\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 蠣
+ 0x8824: "\x04\x03\x01\x02\x05\x03\x05\x01\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 蠤
+ 0x8825: "\x05\x02\x03\x03\x02\x05\x01\x05\x01\x04\x01\x04\x03\x01\x01\x02\x02\x05\x01\x02\x01\x04", // 蠥
+ 0x8826: "\x02\x05\x01\x02\x01\x04\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 蠦
+ 0x8827: "\x01\x02\x01\x04\x05\x01\x03\x02\x05\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 蠧
+ 0x8828: "\x02\x05\x01\x02\x01\x04\x01\x02\x02\x05\x01\x01\x02\x03\x02\x01\x01\x05\x05\x01\x02\x02", // 蠨
+ 0x8829: "\x02\x05\x01\x02\x01\x04\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 蠩
+ 0x882a: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01\x01\x02\x01\x02\x05\x01\x02\x01\x04", // 蠪
+ 0x882b: "\x03\x04\x04\x03\x05\x03\x03\x02\x02\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 蠫
+ 0x882c: "\x02\x05\x01\x02\x01\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x05\x01\x05\x01\x01\x01", // 蠬
+ 0x882d: "\x03\x05\x04\x01\x01\x01\x02\x04\x05\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 蠭
+ 0x882e: "\x02\x05\x01\x02\x01\x04\x01\x03\x01\x01\x03\x04\x05\x03\x05\x05\x04\x05\x04\x01\x05\x04\x01", // 蠮
+ 0x882f: "\x04\x01\x03\x03\x02\x05\x01\x01\x03\x01\x02\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 蠯
+ 0x8830: "\x02\x05\x01\x02\x01\x04\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 蠰
+ 0x8831: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x02\x05\x02\x02\x01", // 蠱
+ 0x8832: "\x04\x03\x01\x03\x04\x02\x05\x02\x02\x01\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 蠲
+ 0x8833: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x05\x03\x01", // 蠳
+ 0x8834: "\x02\x05\x01\x02\x01\x04\x01\x02\x02\x02\x05\x02\x02\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 蠴
+ 0x8835: "\x02\x05\x01\x02\x01\x04\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x03\x04\x02\x05\x01", // 蠵
+ 0x8836: "\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 蠶
+ 0x8837: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 蠷
+ 0x8838: "\x02\x05\x01\x02\x01\x04\x01\x02\x02\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 蠸
+ 0x8839: "\x01\x02\x05\x01\x02\x04\x05\x01\x03\x02\x05\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 蠹
+ 0x883a: "\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 蠺
+ 0x883b: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x01\x04", // 蠻
+ 0x883c: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 蠼
+ 0x883d: "\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x01\x05\x03\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 蠽
+ 0x883e: "\x02\x05\x01\x02\x01\x04\x05\x01\x03\x02\x04\x01\x03\x04\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 蠾
+ 0x883f: "\x05\x05\x04\x05\x05\x04\x01\x05\x05\x04\x05\x05\x04\x01\x02\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 蠿
+ 0x8840: "\x03\x02\x05\x02\x02\x01", // 血
+ 0x8841: "\x04\x01\x05\x03\x02\x05\x02\x02\x01", // 衁
+ 0x8842: "\x03\x02\x05\x02\x02\x01\x05\x03\x04", // 衂
+ 0x8843: "\x03\x02\x05\x02\x02\x01\x01\x03\x02\x04", // 衃
+ 0x8844: "\x03\x02\x05\x02\x02\x01\x05\x02\x01\x01", // 衄
+ 0x8845: "\x03\x02\x05\x02\x02\x01\x04\x03\x01\x01\x02", // 衅
+ 0x8846: "\x03\x02\x05\x02\x02\x01\x03\x02\x03\x03\x03\x04", // 衆
+ 0x8847: "\x03\x02\x05\x02\x02\x01\x03\x03\x03\x05\x03\x04", // 衇
+ 0x8848: "\x03\x02\x05\x02\x02\x01\x01\x02\x02\x01\x01\x01", // 衈
+ 0x8849: "\x03\x02\x05\x02\x02\x01\x03\x05\x04\x02\x05\x01", // 衉
+ 0x884a: "\x03\x02\x05\x02\x02\x01\x01\x02\x02\x02\x05\x02\x02\x01\x01\x03\x04\x05\x03\x04", // 衊
+ 0x884b: "\x05\x01\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x02\x02\x01", // 衋
+ 0x884c: "\x03\x03\x02\x01\x01\x02", // 行
+ 0x884d: "\x03\x03\x02\x04\x04\x01\x01\x01\x02", // 衍
+ 0x884e: "\x03\x03\x02\x01\x01\x02\x01\x01\x02", // 衎
+ 0x884f: "\x03\x03\x02\x01\x01\x03\x05\x01\x01\x02", // 衏
+ 0x8850: "\x03\x03\x02\x01\x05\x01\x05\x01\x01\x02", // 衐
+ 0x8851: "\x03\x03\x02\x03\x04\x04\x05\x04\x01\x01\x02", // 衑
+ 0x8852: "\x03\x03\x02\x04\x01\x05\x05\x04\x01\x01\x02", // 衒
+ 0x8853: "\x03\x03\x02\x01\x02\x03\x04\x04\x01\x01\x02", // 術
+ 0x8854: "\x03\x03\x02\x03\x01\x01\x01\x05\x01\x01\x02", // 衔
+ 0x8855: "\x03\x03\x02\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 衕
+ 0x8856: "\x03\x03\x02\x01\x02\x02\x01\x03\x04\x01\x01\x02", // 衖
+ 0x8857: "\x03\x03\x02\x01\x02\x01\x01\x02\x01\x01\x01\x02", // 街
+ 0x8858: "\x03\x03\x02\x03\x01\x01\x02\x01\x02\x01\x01\x01\x02", // 衘
+ 0x8859: "\x03\x03\x02\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 衙
+ 0x885a: "\x03\x03\x02\x01\x02\x02\x05\x01\x03\x05\x01\x01\x01\x01\x02", // 衚
+ 0x885b: "\x03\x03\x02\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x01\x02", // 衛
+ 0x885c: "\x03\x03\x02\x04\x03\x01\x03\x02\x05\x01\x01\x01\x01\x01\x02", // 衜
+ 0x885d: "\x03\x03\x01\x03\x01\x02\x05\x01\x01\x02\x01\x01\x01\x01\x02", // 衝
+ 0x885e: "\x03\x03\x02\x05\x02\x01\x02\x05\x01\x01\x02\x05\x02\x01\x01\x02", // 衞
+ 0x885f: "\x03\x03\x02\x05\x05\x05\x01\x03\x02\x05\x01\x01\x01\x01\x01\x02", // 衟
+ 0x8860: "\x03\x03\x02\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04\x01\x01\x02", // 衠
+ 0x8861: "\x03\x03\x02\x03\x05\x02\x05\x01\x02\x01\x01\x03\x04\x01\x01\x02", // 衡
+ 0x8862: "\x03\x03\x02\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x01\x01\x02", // 衢
+ 0x8863: "\x04\x01\x03\x05\x03\x04", // 衣
+ 0x8864: "\x04\x05\x02\x03\x04", // 衤
+ 0x8865: "\x04\x05\x02\x03\x04\x02\x04", // 补
+ 0x8866: "\x04\x05\x02\x03\x04\x01\x01\x02", // 衦
+ 0x8867: "\x04\x05\x02\x03\x04\x01\x01\x02", // 衧
+ 0x8868: "\x01\x01\x02\x01\x03\x05\x03\x04", // 表
+ 0x8869: "\x04\x05\x02\x03\x04\x05\x04\x04", // 衩
+ 0x886a: "\x04\x05\x02\x03\x04\x05\x02\x05", // 衪
+ 0x886b: "\x04\x05\x02\x03\x04\x03\x03\x03", // 衫
+ 0x886c: "\x04\x05\x02\x03\x04\x01\x02\x04", // 衬
+ 0x886d: "\x04\x05\x02\x03\x04\x01\x01\x03\x04", // 衭
+ 0x886e: "\x04\x01\x03\x04\x05\x04\x03\x05\x03\x04", // 衮
+ 0x886f: "\x04\x05\x02\x03\x04\x03\x04\x05\x03", // 衯
+ 0x8870: "\x04\x01\x02\x05\x01\x01\x03\x05\x03\x04", // 衰
+ 0x8871: "\x04\x05\x02\x03\x04\x03\x05\x04", // 衱
+ 0x8872: "\x04\x05\x02\x03\x04\x02\x05\x03\x04", // 衲
+ 0x8873: "\x04\x05\x02\x03\x04\x03\x04\x05\x04", // 衳
+ 0x8874: "\x04\x05\x02\x03\x04\x04\x05\x03\x05", // 衴
+ 0x8875: "\x04\x05\x02\x03\x04\x02\x05\x01\x01", // 衵
+ 0x8876: "\x04\x05\x02\x03\x04\x02\x05\x01\x02", // 衶
+ 0x8877: "\x04\x01\x02\x05\x01\x02\x03\x05\x03\x04", // 衷
+ 0x8878: "\x04\x05\x02\x03\x04\x03\x04\x03\x02", // 衸
+ 0x8879: "\x04\x05\x02\x03\x04\x03\x05\x01\x05", // 衹
+ 0x887a: "\x04\x01\x01\x05\x02\x03\x03\x05\x03\x04", // 衺
+ 0x887b: "\x04\x05\x02\x03\x04\x02\x05\x01\x01", // 衻
+ 0x887c: "\x04\x05\x02\x03\x04\x01\x02\x05\x04", // 衼
+ 0x887d: "\x04\x05\x02\x03\x04\x03\x01\x02\x01", // 衽
+ 0x887e: "\x03\x04\x04\x05\x04\x01\x03\x05\x03\x04", // 衾
+ 0x887f: "\x04\x05\x02\x03\x04\x03\x04\x04\x05", // 衿
+ 0x8880: "\x04\x05\x02\x03\x04\x03\x05\x04\x01", // 袀
+ 0x8881: "\x01\x02\x01\x02\x05\x01\x03\x05\x03\x04", // 袁
+ 0x8882: "\x04\x05\x02\x03\x04\x05\x01\x03\x04", // 袂
+ 0x8883: "\x01\x05\x05\x03\x04\x01\x03\x05\x03\x04", // 袃
+ 0x8884: "\x04\x05\x02\x03\x04\x03\x01\x03\x04", // 袄
+ 0x8885: "\x03\x05\x04\x05\x04\x01\x03\x05\x03\x04", // 袅
+ 0x8886: "\x04\x05\x02\x03\x04\x01\x01\x05\x02", // 袆
+ 0x8887: "\x04\x05\x02\x03\x04\x03\x05\x04\x01", // 袇
+ 0x8888: "\x05\x03\x02\x05\x01\x04\x01\x03\x05\x03\x04", // 袈
+ 0x8889: "\x04\x05\x02\x03\x04\x04\x04\x05\x03\x05", // 袉
+ 0x888a: "\x04\x05\x02\x03\x04\x03\x04\x04\x05\x04", // 袊
+ 0x888b: "\x03\x02\x01\x05\x04\x04\x01\x03\x05\x03\x04", // 袋
+ 0x888c: "\x04\x01\x03\x05\x05\x01\x05\x03\x05\x03\x04", // 袌
+ 0x888d: "\x04\x05\x02\x03\x04\x03\x05\x05\x01\x05", // 袍
+ 0x888e: "\x04\x05\x02\x03\x04\x05\x05\x04\x05\x03", // 袎
+ 0x888f: "\x04\x05\x02\x03\x04\x01\x03\x01\x02\x01", // 袏
+ 0x8890: "\x04\x05\x02\x03\x04\x04\x05\x04\x03\x04", // 袐
+ 0x8891: "\x04\x05\x02\x03\x04\x05\x03\x02\x05\x01", // 袑
+ 0x8892: "\x04\x05\x02\x03\x04\x02\x05\x01\x01\x01", // 袒
+ 0x8893: "\x04\x05\x02\x03\x04\x02\x05\x01\x01\x01", // 袓
+ 0x8894: "\x04\x05\x02\x03\x04\x01\x02\x05\x01\x02", // 袔
+ 0x8895: "\x04\x05\x02\x03\x04\x04\x04\x05\x03\x04", // 袕
+ 0x8896: "\x04\x05\x02\x03\x04\x02\x05\x01\x02\x01", // 袖
+ 0x8897: "\x04\x05\x02\x03\x04\x03\x04\x03\x03\x03", // 袗
+ 0x8898: "\x04\x05\x02\x03\x04\x03\x01\x05\x02\x05", // 袘
+ 0x8899: "\x04\x05\x02\x03\x04\x03\x02\x05\x01\x01", // 袙
+ 0x889a: "\x04\x05\x02\x03\x04\x01\x03\x05\x04\x04", // 袚
+ 0x889b: "\x04\x05\x02\x03\x04\x03\x05\x01\x05\x04", // 袛
+ 0x889c: "\x04\x05\x02\x03\x04\x01\x01\x02\x03\x04", // 袜
+ 0x889d: "\x04\x05\x02\x03\x04\x03\x02\x01\x02\x04", // 袝
+ 0x889e: "\x04\x01\x03\x04\x02\x05\x01\x03\x05\x03\x04", // 袞
+ 0x889f: "\x04\x05\x02\x03\x04\x03\x01\x01\x03\x04", // 袟
+ 0x88a0: "\x04\x01\x03\x01\x01\x03\x04\x03\x05\x03\x04", // 袠
+ 0x88a1: "\x04\x05\x02\x03\x04\x02\x05\x02\x01\x01", // 袡
+ 0x88a2: "\x04\x05\x02\x03\x04\x04\x03\x01\x01\x02", // 袢
+ 0x88a3: "\x04\x05\x02\x03\x04\x01\x02\x02\x01\x05", // 袣
+ 0x88a4: "\x04\x01\x05\x04\x05\x02\x03\x03\x05\x03\x04", // 袤
+ 0x88a5: "\x04\x05\x02\x03\x04\x01\x03\x02\x05\x01", // 袥
+ 0x88a6: "\x04\x05\x02\x03\x04\x05\x02\x02\x05\x02", // 袦
+ 0x88a7: "\x04\x05\x02\x03\x04\x03\x05\x02\x05\x01", // 袧
+ 0x88a8: "\x04\x05\x02\x03\x04\x04\x01\x05\x05\x04", // 袨
+ 0x88a9: "\x04\x05\x02\x03\x04\x02\x01\x02\x05\x01", // 袩
+ 0x88aa: "\x04\x05\x02\x03\x04\x01\x02\x01\x05\x04", // 袪
+ 0x88ab: "\x04\x05\x02\x03\x04\x05\x03\x02\x05\x04", // 被
+ 0x88ac: "\x04\x01\x05\x04\x02\x05\x01\x03\x05\x03\x04", // 袬
+ 0x88ad: "\x01\x03\x05\x03\x04\x04\x01\x03\x05\x03\x04", // 袭
+ 0x88ae: "\x04\x05\x02\x03\x04\x03\x01\x02\x03\x04", // 袮
+ 0x88af: "\x04\x05\x02\x03\x04\x05\x03\x05\x04\x04", // 袯
+ 0x88b0: "\x05\x05\x04\x01\x04\x04\x01\x03\x05\x03\x04", // 袰
+ 0x88b1: "\x04\x05\x02\x03\x04\x03\x02\x01\x03\x04\x04", // 袱
+ 0x88b2: "\x04\x01\x03\x05\x04\x03\x05\x04\x03\x05\x03\x04", // 袲
+ 0x88b3: "\x04\x05\x02\x03\x04\x03\x05\x04\x03\x05\x04", // 袳
+ 0x88b4: "\x04\x05\x02\x03\x04\x01\x03\x04\x01\x01\x05", // 袴
+ 0x88b5: "\x04\x05\x02\x03\x04\x03\x02\x03\x01\x02\x01", // 袵
+ 0x88b6: "\x04\x05\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 袶
+ 0x88b7: "\x04\x05\x02\x03\x04\x03\x04\x01\x02\x05\x01", // 袷
+ 0x88b8: "\x04\x05\x02\x03\x04\x01\x03\x02\x05\x02\x01", // 袸
+ 0x88b9: "\x04\x05\x02\x03\x04\x01\x03\x02\x05\x01\x01", // 袹
+ 0x88ba: "\x04\x05\x02\x03\x04\x01\x02\x01\x02\x05\x01", // 袺
+ 0x88bb: "\x04\x05\x02\x03\x04\x01\x03\x02\x05\x02\x02", // 袻
+ 0x88bc: "\x04\x05\x02\x03\x04\x03\x05\x04\x02\x05\x01", // 袼
+ 0x88bd: "\x04\x05\x02\x03\x04\x05\x03\x01\x02\x05\x01", // 袽
+ 0x88be: "\x04\x05\x02\x03\x04\x03\x01\x01\x02\x03\x04", // 袾
+ 0x88bf: "\x04\x05\x02\x03\x04\x01\x02\x01\x01\x02\x01", // 袿
+ 0x88c0: "\x04\x05\x02\x03\x04\x02\x05\x01\x03\x04\x01", // 裀
+ 0x88c1: "\x01\x02\x01\x04\x01\x03\x05\x03\x04\x05\x03\x04", // 裁
+ 0x88c2: "\x01\x03\x05\x04\x02\x02\x04\x01\x03\x05\x03\x04", // 裂
+ 0x88c3: "\x04\x05\x02\x03\x04\x02\x01\x01\x01\x02\x04", // 裃
+ 0x88c4: "\x04\x05\x02\x03\x04\x03\x03\x02\x01\x01\x02", // 裄
+ 0x88c5: "\x04\x01\x02\x01\x02\x01\x04\x01\x03\x05\x03\x04", // 装
+ 0x88c6: "\x04\x05\x02\x03\x04\x02\x04\x03\x05\x01\x01", // 裆
+ 0x88c7: "\x04\x05\x02\x03\x04\x03\x02\x05\x02\x02\x01", // 裇
+ 0x88c8: "\x04\x05\x02\x03\x04\x04\x05\x01\x05\x01\x02", // 裈
+ 0x88c9: "\x04\x05\x02\x03\x04\x05\x01\x01\x05\x03\x04", // 裉
+ 0x88ca: "\x03\x02\x05\x01\x01\x01\x05\x04\x01\x03\x05\x03\x04", // 裊
+ 0x88cb: "\x04\x05\x02\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 裋
+ 0x88cc: "\x04\x05\x02\x03\x04\x01\x03\x04\x03\x04\x03\x04", // 裌
+ 0x88cd: "\x04\x05\x02\x03\x04\x02\x05\x01\x02\x03\x04\x01", // 裍
+ 0x88ce: "\x04\x05\x02\x03\x04\x02\x05\x01\x01\x01\x02\x01", // 裎
+ 0x88cf: "\x04\x01\x02\x05\x01\x01\x02\x01\x01\x03\x05\x03\x04", // 裏
+ 0x88d0: "\x04\x05\x02\x03\x04\x02\x05\x01\x02\x05\x01\x01", // 裐
+ 0x88d1: "\x04\x05\x02\x03\x04\x03\x02\x05\x01\x01\x01\x03", // 裑
+ 0x88d2: "\x04\x01\x03\x02\x01\x05\x01\x01\x03\x05\x03\x04", // 裒
+ 0x88d3: "\x04\x05\x02\x03\x04\x01\x01\x03\x02\x05\x03\x04", // 裓
+ 0x88d4: "\x04\x01\x03\x05\x03\x04\x02\x05\x03\x04\x02\x05\x01", // 裔
+ 0x88d5: "\x04\x05\x02\x03\x04\x03\x04\x03\x04\x02\x05\x01", // 裕
+ 0x88d6: "\x04\x05\x02\x03\x04\x01\x03\x01\x01\x05\x03\x04", // 裖
+ 0x88d7: "\x04\x05\x02\x03\x04\x04\x01\x05\x04\x03\x02\x05", // 裗
+ 0x88d8: "\x01\x02\x04\x01\x03\x04\x04\x04\x01\x03\x05\x03\x04", // 裘
+ 0x88d9: "\x04\x05\x02\x03\x04\x05\x01\x01\x03\x02\x05\x01", // 裙
+ 0x88da: "\x01\x02\x01\x03\x03\x01\x02\x04\x01\x03\x05\x03\x04", // 裚
+ 0x88db: "\x04\x01\x02\x05\x01\x05\x02\x01\x05\x03\x05\x03\x04", // 裛
+ 0x88dc: "\x04\x05\x02\x03\x04\x01\x02\x05\x01\x01\x02\x04", // 補
+ 0x88dd: "\x05\x02\x01\x03\x01\x02\x01\x04\x01\x03\x05\x03\x04", // 裝
+ 0x88de: "\x04\x05\x02\x03\x04\x04\x03\x02\x05\x01\x03\x05", // 裞
+ 0x88df: "\x04\x04\x01\x02\x03\x04\x03\x04\x01\x03\x05\x03\x04", // 裟
+ 0x88e0: "\x05\x01\x01\x03\x02\x05\x01\x04\x01\x03\x05\x03\x04", // 裠
+ 0x88e1: "\x04\x05\x02\x03\x04\x02\x05\x01\x01\x02\x01\x01", // 裡
+ 0x88e2: "\x04\x05\x02\x03\x04\x01\x05\x01\x02\x04\x05\x04", // 裢
+ 0x88e3: "\x04\x05\x02\x03\x04\x03\x04\x01\x04\x04\x03\x01", // 裣
+ 0x88e4: "\x04\x05\x02\x03\x04\x04\x01\x03\x01\x05\x01\x02", // 裤
+ 0x88e5: "\x04\x05\x02\x03\x04\x04\x02\x05\x02\x05\x01\x01", // 裥
+ 0x88e6: "\x04\x01\x03\x05\x01\x05\x04\x05\x02\x03\x03\x05\x03\x04", // 裦
+ 0x88e7: "\x04\x05\x02\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04", // 裧
+ 0x88e8: "\x04\x05\x02\x03\x04\x03\x02\x05\x01\x01\x03\x01\x02", // 裨
+ 0x88e9: "\x04\x05\x02\x03\x04\x02\x05\x01\x01\x01\x05\x03\x05", // 裩
+ 0x88ea: "\x04\x05\x02\x03\x04\x03\x05\x03\x01\x01\x02\x05\x02", // 裪
+ 0x88eb: "\x04\x05\x02\x03\x04\x03\x02\x01\x01\x05\x05\x02\x01\x02", // 裫
+ 0x88ec: "\x04\x05\x02\x03\x04\x01\x02\x01\x03\x04\x03\x05\x04", // 裬
+ 0x88ed: "\x04\x05\x02\x03\x04\x02\x01\x05\x03\x01\x05\x03\x05", // 裭
+ 0x88ee: "\x04\x05\x02\x03\x04\x02\x05\x01\x01\x02\x05\x01\x01", // 裮
+ 0x88ef: "\x04\x05\x02\x03\x04\x03\x05\x01\x02\x01\x02\x05\x01", // 裯
+ 0x88f0: "\x04\x05\x02\x03\x04\x05\x04\x05\x04\x05\x04\x05\x04", // 裰
+ 0x88f1: "\x04\x05\x02\x03\x04\x01\x01\x02\x01\x03\x05\x03\x04", // 裱
+ 0x88f2: "\x04\x05\x02\x03\x04\x01\x02\x05\x02\x03\x04\x03\x04", // 裲
+ 0x88f3: "\x02\x04\x03\x04\x05\x02\x05\x01\x04\x01\x03\x05\x03\x04", // 裳
+ 0x88f4: "\x02\x01\x01\x01\x02\x01\x01\x01\x04\x01\x03\x05\x03\x04", // 裴
+ 0x88f5: "\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01\x03\x05\x03\x04", // 裵
+ 0x88f6: "\x04\x05\x02\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01", // 裶
+ 0x88f7: "\x04\x05\x02\x03\x04\x04\x03\x01\x01\x03\x04\x05\x05", // 裷
+ 0x88f8: "\x04\x05\x02\x03\x04\x02\x05\x01\x01\x01\x02\x03\x04", // 裸
+ 0x88f9: "\x04\x01\x02\x05\x01\x01\x01\x02\x03\x04\x03\x05\x03\x04", // 裹
+ 0x88fa: "\x04\x05\x02\x03\x04\x01\x03\x04\x02\x05\x01\x01\x05", // 裺
+ 0x88fb: "\x02\x01\x01\x02\x03\x04\x05\x04\x04\x01\x03\x05\x03\x04", // 裻
+ 0x88fc: "\x04\x05\x02\x03\x04\x02\x05\x01\x01\x03\x05\x03\x03", // 裼
+ 0x88fd: "\x03\x01\x01\x02\x05\x02\x02\x02\x04\x01\x03\x05\x03\x04", // 製
+ 0x88fe: "\x04\x05\x02\x03\x04\x05\x01\x03\x01\x02\x02\x05\x01", // 裾
+ 0x88ff: "\x04\x05\x02\x03\x04\x01\x03\x04\x01\x02\x05\x01\x02", // 裿
+ 0x8900: "\x04\x05\x02\x03\x04\x01\x02\x02\x01\x01\x01\x03\x04", // 褀
+ 0x8901: "\x02\x05\x01\x01\x01\x02\x03\x04\x03\x05\x03\x04", // 褁
+ 0x8902: "\x04\x05\x02\x03\x04\x01\x02\x01\x01\x02\x01\x02\x04", // 褂
+ 0x8903: "\x04\x05\x02\x03\x04\x02\x01\x02\x01\x02\x05\x01\x01", // 褃
+ 0x8904: "\x04\x05\x02\x03\x04\x01\x05\x01\x01\x02\x05\x03\x01", // 褄
+ 0x8905: "\x04\x05\x02\x03\x04\x04\x01\x04\x03\x04\x05\x02\x05\x02", // 褅
+ 0x8906: "\x04\x05\x02\x03\x04\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 褆
+ 0x8907: "\x04\x05\x02\x03\x04\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 複
+ 0x8908: "\x04\x05\x02\x03\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 褈
+ 0x8909: "\x04\x05\x02\x03\x04\x01\x01\x01\x02\x05\x03\x01\x03\x04", // 褉
+ 0x890a: "\x04\x05\x02\x03\x04\x04\x05\x01\x03\x02\x05\x01\x02\x02", // 褊
+ 0x890b: "\x04\x05\x02\x03\x04\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 褋
+ 0x890c: "\x04\x05\x02\x03\x04\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 褌
+ 0x890d: "\x04\x05\x02\x03\x04\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 褍
+ 0x890e: "\x04\x01\x03\x05\x01\x03\x01\x02\x03\x04\x03\x05\x03\x04", // 褎
+ 0x890f: "\x04\x01\x03\x05\x01\x02\x05\x01\x02\x01\x03\x05\x03\x04", // 褏
+ 0x8910: "\x04\x05\x02\x03\x04\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 褐
+ 0x8911: "\x04\x05\x02\x03\x04\x03\x04\x04\x03\x01\x01\x03\x05\x04", // 褑
+ 0x8912: "\x04\x01\x03\x02\x02\x05\x01\x01\x02\x03\x04\x03\x05\x03\x04", // 褒
+ 0x8913: "\x04\x05\x02\x03\x04\x03\x02\x02\x05\x01\x01\x02\x03\x04", // 褓
+ 0x8914: "\x04\x05\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 褔
+ 0x8915: "\x04\x05\x02\x03\x04\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 褕
+ 0x8916: "\x04\x05\x02\x03\x04\x05\x05\x01\x03\x05\x03\x03\x03\x04", // 褖
+ 0x8917: "\x04\x05\x02\x03\x04\x01\x02\x05\x01\x01\x05\x03\x01\x05", // 褗
+ 0x8918: "\x04\x05\x02\x03\x04\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 褘
+ 0x8919: "\x04\x05\x02\x03\x04\x02\x01\x01\x03\x05\x02\x05\x01\x01", // 褙
+ 0x891a: "\x04\x05\x02\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01", // 褚
+ 0x891b: "\x04\x05\x02\x03\x04\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 褛
+ 0x891c: "\x03\x05\x01\x01\x03\x05\x05\x01\x05\x04\x01\x03\x05\x03\x04", // 褜
+ 0x891d: "\x04\x05\x02\x03\x04\x04\x04\x03\x02\x05\x01\x01\x01\x02", // 褝
+ 0x891e: "\x04\x05\x02\x03\x04\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 褞
+ 0x891f: "\x04\x05\x02\x03\x04\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 褟
+ 0x8920: "\x04\x05\x02\x03\x04\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01", // 褠
+ 0x8921: "\x04\x05\x02\x03\x04\x01\x02\x02\x03\x04\x01\x02\x05\x01", // 褡
+ 0x8922: "\x04\x01\x03\x02\x05\x01\x01\x03\x05\x05\x04\x03\x05\x03\x04", // 褢
+ 0x8923: "\x04\x05\x02\x03\x04\x04\x04\x05\x03\x04\x03\x04\x02\x05\x01", // 褣
+ 0x8924: "\x04\x05\x02\x03\x04\x01\x02\x01\x02\x05\x01\x03\x05\x03\x04", // 褤
+ 0x8925: "\x04\x05\x02\x03\x04\x01\x03\x01\x01\x05\x03\x04\x01\x02\x04", // 褥
+ 0x8926: "\x04\x05\x02\x03\x04\x05\x04\x02\x05\x01\x01\x03\x05\x03\x05", // 褦
+ 0x8927: "\x01\x02\x02\x01\x01\x01\x04\x03\x03\x04\x04\x01\x03\x05\x03\x04", // 褧
+ 0x8928: "\x04\x05\x02\x03\x04\x04\x03\x01\x01\x01\x03\x01\x02\x01", // 褨
+ 0x8929: "\x03\x03\x05\x04\x01\x04\x03\x05\x05\x04\x04\x01\x03\x05\x03\x04", // 褩
+ 0x892a: "\x04\x05\x02\x03\x04\x05\x01\x01\x05\x03\x04\x04\x05\x04", // 褪
+ 0x892b: "\x04\x05\x02\x03\x04\x03\x03\x02\x01\x05\x03\x01\x05\x03\x05", // 褫
+ 0x892c: "\x04\x05\x02\x03\x04\x05\x04\x05\x04\x05\x04\x01\x02\x03\x04", // 褬
+ 0x892d: "\x04\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05\x03\x04", // 褭
+ 0x892e: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x04\x01\x03\x05\x03\x04", // 褮
+ 0x892f: "\x04\x05\x02\x03\x04\x04\x01\x03\x01\x02\x02\x01\x02\x05\x02", // 褯
+ 0x8930: "\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x04\x01\x03\x05\x03\x04", // 褰
+ 0x8931: "\x04\x01\x02\x05\x02\x02\x01\x02\x04\x01\x03\x04\x03\x05\x03\x04", // 褱
+ 0x8932: "\x04\x05\x02\x03\x04\x04\x01\x03\x01\x02\x05\x01\x01\x01\x02", // 褲
+ 0x8933: "\x04\x05\x02\x03\x04\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 褳
+ 0x8934: "\x04\x05\x02\x03\x04\x02\x02\x03\x01\x04\x02\x05\x02\x02\x01", // 褴
+ 0x8935: "\x04\x05\x02\x03\x04\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 褵
+ 0x8936: "\x04\x05\x02\x03\x04\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01", // 褶
+ 0x8937: "\x04\x05\x02\x03\x04\x03\x03\x02\x02\x01\x02\x01\x02\x01\x03\x04", // 褷
+ 0x8938: "\x04\x05\x02\x03\x04\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 褸
+ 0x8939: "\x04\x05\x02\x03\x04\x01\x02\x01\x03\x04\x01\x02\x01\x03\x05\x04", // 褹
+ 0x893a: "\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04\x04\x01\x03\x05\x03\x04", // 褺
+ 0x893b: "\x04\x01\x01\x02\x01\x03\x04\x01\x02\x01\x03\x05\x04\x03\x05\x03\x04", // 褻
+ 0x893c: "\x04\x05\x02\x03\x04\x01\x02\x05\x02\x02\x01\x01\x03\x04\x05\x01\x05", // 褼
+ 0x893d: "\x05\x01\x03\x01\x01\x02\x03\x04\x01\x02\x04\x04\x01\x03\x05\x03\x04", // 褽
+ 0x893e: "\x04\x05\x02\x03\x04\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 褾
+ 0x893f: "\x04\x05\x02\x03\x04\x01\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01", // 褿
+ 0x8940: "\x04\x05\x02\x03\x04\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 襀
+ 0x8941: "\x04\x05\x02\x03\x04\x05\x01\x05\x02\x05\x01\x02\x05\x01\x02\x01\x04", // 襁
+ 0x8942: "\x04\x05\x02\x03\x04\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 襂
+ 0x8943: "\x04\x01\x03\x05\x01\x02\x05\x01\x01\x02\x03\x04\x03\x05\x03\x04", // 襃
+ 0x8944: "\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 襄
+ 0x8945: "\x04\x05\x02\x03\x04\x02\x05\x01\x01\x01\x02\x02\x01\x01\x02", // 襅
+ 0x8946: "\x04\x05\x02\x03\x04\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 襆
+ 0x8947: "\x04\x05\x02\x03\x04\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01", // 襇
+ 0x8948: "\x04\x05\x02\x03\x04\x05\x01\x05\x05\x01\x05\x01\x02\x02\x01\x03\x04", // 襈
+ 0x8949: "\x04\x05\x02\x03\x04\x02\x05\x01\x01\x02\x05\x01\x01\x03\x05\x01\x01", // 襉
+ 0x894a: "\x04\x05\x02\x03\x04\x02\x05\x01\x01\x01\x02\x02\x01\x01\x01\x05\x04", // 襊
+ 0x894b: "\x04\x05\x02\x03\x04\x01\x02\x05\x02\x03\x04\x01\x02\x05\x02\x03\x04", // 襋
+ 0x894c: "\x04\x05\x02\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 襌
+ 0x894d: "\x04\x05\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02\x03\x04", // 襍
+ 0x894e: "\x04\x05\x02\x03\x04\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 襎
+ 0x894f: "\x04\x05\x02\x03\x04\x05\x04\x03\x03\x04\x05\x01\x05\x03\x05\x05\x04", // 襏
+ 0x8950: "\x04\x05\x02\x03\x04\x03\x05\x02\x05\x01\x03\x05\x03\x03\x03\x04", // 襐
+ 0x8951: "\x04\x05\x02\x03\x04\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04", // 襑
+ 0x8952: "\x04\x05\x02\x03\x04\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04", // 襒
+ 0x8953: "\x04\x05\x02\x03\x04\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 襓
+ 0x8954: "\x04\x05\x02\x03\x04\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04", // 襔
+ 0x8955: "\x04\x05\x02\x03\x04\x04\x02\x05\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 襕
+ 0x8956: "\x04\x05\x02\x03\x04\x03\x02\x05\x04\x03\x01\x02\x03\x04\x01\x03\x04", // 襖
+ 0x8957: "\x04\x05\x02\x03\x04\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 襗
+ 0x8958: "\x04\x05\x02\x03\x04\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 襘
+ 0x8959: "\x04\x05\x02\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 襙
+ 0x895a: "\x04\x05\x02\x03\x04\x04\x03\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 襚
+ 0x895b: "\x04\x05\x02\x03\x04\x02\x05\x01\x02\x02\x01\x01\x03\x01\x01\x05\x03\x04", // 襛
+ 0x895c: "\x04\x05\x02\x03\x04\x03\x05\x01\x03\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 襜
+ 0x895d: "\x04\x05\x02\x03\x04\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 襝
+ 0x895e: "\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x04\x01\x03\x05\x03\x04", // 襞
+ 0x895f: "\x04\x05\x02\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 襟
+ 0x8960: "\x04\x05\x02\x03\x04\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x01\x02\x01", // 襠
+ 0x8961: "\x04\x05\x02\x03\x04\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 襡
+ 0x8962: "\x04\x05\x02\x03\x04\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 襢
+ 0x8963: "\x04\x05\x02\x03\x04\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02", // 襣
+ 0x8964: "\x04\x05\x02\x03\x04\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01", // 襤
+ 0x8965: "\x04\x05\x02\x03\x04\x03\x02\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 襥
+ 0x8966: "\x04\x05\x02\x03\x04\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02", // 襦
+ 0x8967: "\x04\x05\x02\x03\x04\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 襧
+ 0x8968: "\x04\x05\x02\x03\x04\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x01\x02\x04", // 襨
+ 0x8969: "\x04\x05\x02\x03\x04\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 襩
+ 0x896a: "\x04\x05\x02\x03\x04\x01\x02\x02\x02\x05\x02\x02\x01\x01\x03\x04\x05\x03\x04", // 襪
+ 0x896b: "\x04\x05\x02\x03\x04\x01\x01\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x03\x04", // 襫
+ 0x896c: "\x04\x05\x02\x03\x04\x02\x05\x02\x02\x01\x05\x04\x02\x05\x01\x01\x03\x05\x03\x05", // 襬
+ 0x896d: "\x04\x05\x02\x03\x04\x01\x02\x01\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 襭
+ 0x896e: "\x04\x05\x02\x03\x04\x02\x05\x01\x01\x01\x02\x02\x01\x03\x04\x02\x04\x01\x03\x04", // 襮
+ 0x896f: "\x04\x05\x02\x03\x04\x04\x01\x04\x03\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 襯
+ 0x8970: "\x04\x05\x02\x03\x04\x01\x02\x05\x01\x02\x03\x04\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 襰
+ 0x8971: "\x04\x05\x02\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01\x01\x01", // 襱
+ 0x8972: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x05\x01\x05\x01\x01\x01\x04\x01\x03\x05\x03\x04", // 襲
+ 0x8973: "\x04\x05\x02\x03\x04\x03\x04\x03\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 襳
+ 0x8974: "\x04\x05\x02\x03\x04\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 襴
+ 0x8975: "\x04\x05\x02\x03\x04\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01", // 襵
+ 0x8976: "\x04\x05\x02\x03\x04\x01\x02\x01\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04\x05\x03\x04", // 襶
+ 0x8977: "\x04\x05\x02\x03\x04\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04\x03\x01\x01\x02", // 襷
+ 0x8978: "\x04\x05\x02\x03\x04\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 襸
+ 0x8979: "\x04\x05\x02\x03\x04\x01\x02\x05\x04\x01\x02\x05\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 襹
+ 0x897a: "\x04\x05\x02\x03\x04\x01\x02\x02\x02\x05\x02\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x01\x04", // 襺
+ 0x897b: "\x04\x05\x02\x03\x04\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x03\x04\x01\x03\x04\x03\x01\x01\x02", // 襻
+ 0x897c: "\x04\x05\x02\x03\x04\x01\x02\x02\x01\x02\x01\x03\x04\x01\x02\x01\x03\x05\x04\x01\x01\x05\x04", // 襼
+ 0x897d: "\x04\x05\x02\x03\x04\x01\x02\x02\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 襽
+ 0x897e: "\x01\x02\x05\x02\x02\x01", // 襾
+ 0x897f: "\x01\x02\x05\x03\x05\x01", // 西
+ 0x8980: "\x01\x02\x05\x02\x02\x01", // 覀
+ 0x8981: "\x01\x02\x05\x02\x02\x01\x05\x03\x01", // 要
+ 0x8982: "\x01\x02\x05\x02\x02\x01\x03\x04\x05\x04", // 覂
+ 0x8983: "\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 覃
+ 0x8984: "\x01\x02\x05\x02\x02\x01\x03\x02\x01\x03\x04\x04", // 覄
+ 0x8985: "\x01\x02\x05\x02\x02\x01\x05\x03\x01\x03\x05\x03\x03", // 覅
+ 0x8986: "\x01\x02\x05\x02\x02\x01\x03\x03\x02\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 覆
+ 0x8987: "\x01\x02\x05\x02\x02\x01\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x01\x01", // 覇
+ 0x8988: "\x01\x02\x05\x02\x02\x01\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x03\x04", // 覈
+ 0x8989: "\x01\x02\x05\x02\x02\x01\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x03\x04\x01\x02\x05\x01\x02", // 覉
+ 0x898a: "\x01\x02\x05\x02\x02\x01\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 覊
+ 0x898b: "\x02\x05\x01\x01\x01\x03\x05", // 見
+ 0x898c: "\x05\x04\x02\x05\x01\x01\x01\x03\x05", // 覌
+ 0x898d: "\x02\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 覍
+ 0x898e: "\x02\x05\x01\x01\x01\x03\x05\x05\x02\x01", // 覎
+ 0x898f: "\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 規
+ 0x8990: "\x02\x05\x01\x01\x01\x03\x05\x03\x04\x03\x04", // 覐
+ 0x8991: "\x03\x02\x01\x05\x02\x05\x01\x01\x01\x03\x05", // 覑
+ 0x8992: "\x03\x01\x01\x05\x02\x05\x01\x01\x01\x03\x05", // 覒
+ 0x8993: "\x03\x04\x04\x03\x02\x05\x01\x01\x01\x03\x05", // 覓
+ 0x8994: "\x01\x03\x02\x04\x02\x05\x01\x01\x01\x03\x05", // 覔
+ 0x8995: "\x04\x05\x04\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 覕
+ 0x8996: "\x04\x05\x02\x04\x02\x05\x01\x01\x01\x03\x05", // 視
+ 0x8997: "\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x03\x05", // 覗
+ 0x8998: "\x02\x01\x02\x05\x01\x02\x05\x01\x01\x01\x03\x05", // 覘
+ 0x8999: "\x03\x05\x02\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 覙
+ 0x899a: "\x04\x04\x03\x04\x05\x02\x05\x01\x01\x01\x03\x05", // 覚
+ 0x899b: "\x03\x03\x03\x05\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 覛
+ 0x899c: "\x03\x04\x01\x05\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 覜
+ 0x899d: "\x01\x01\x02\x04\x03\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 覝
+ 0x899e: "\x02\x05\x01\x01\x01\x03\x05\x02\x05\x01\x01\x01\x03\x05", // 覞
+ 0x899f: "\x01\x02\x01\x04\x05\x04\x04\x02\x05\x01\x01\x01\x03\x05", // 覟
+ 0x89a0: "\x05\x01\x01\x03\x02\x05\x01\x02\x05\x01\x01\x01\x03\x05", // 覠
+ 0x89a1: "\x01\x02\x03\x04\x03\x04\x01\x02\x05\x01\x01\x01\x03\x05", // 覡
+ 0x89a2: "\x04\x03\x03\x04\x04\x03\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 覢
+ 0x89a3: "\x03\x01\x02\x03\x04\x05\x03\x01\x02\x05\x01\x01\x01\x03\x05", // 覣
+ 0x89a4: "\x02\x01\x05\x03\x01\x05\x03\x05\x02\x05\x01\x01\x01\x03\x05", // 覤
+ 0x89a5: "\x02\x05\x01\x02\x02\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 覥
+ 0x89a6: "\x03\x04\x01\x02\x05\x01\x01\x02\x02\x02\x05\x01\x01\x01\x03\x05", // 覦
+ 0x89a7: "\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x01\x01\x01\x03\x05", // 覧
+ 0x89a8: "\x02\x05\x01\x02\x05\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x05", // 覨
+ 0x89a9: "\x01\x02\x01\x03\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 覩
+ 0x89aa: "\x04\x01\x04\x03\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 親
+ 0x89ab: "\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03\x02\x05\x01\x01\x01\x03\x05", // 覫
+ 0x89ac: "\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01\x01\x01\x03\x05", // 覬
+ 0x89ad: "\x04\x05\x02\x05\x01\x01\x04\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 覭
+ 0x89ae: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x02\x05\x01\x01\x01\x03\x05", // 覮
+ 0x89af: "\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 覯
+ 0x89b0: "\x02\x01\x05\x03\x01\x05\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 覰
+ 0x89b1: "\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02\x02\x05\x01\x01\x01\x03\x05", // 覱
+ 0x89b2: "\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 覲
+ 0x89b3: "\x03\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 観
+ 0x89b4: "\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01\x01\x01\x03\x05", // 覴
+ 0x89b5: "\x02\x05\x01\x01\x02\x05\x01\x01\x03\x05\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 覵
+ 0x89b6: "\x03\x04\x04\x03\x05\x04\x02\x05\x05\x04\x05\x04\x02\x05\x01\x01\x01\x03\x05", // 覶
+ 0x89b7: "\x02\x01\x05\x03\x01\x05\x02\x02\x04\x03\x01\x02\x05\x01\x01\x01\x03\x05", // 覷
+ 0x89b8: "\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 覸
+ 0x89b9: "\x02\x05\x01\x01\x01\x03\x05\x03\x03\x02\x02\x05\x02\x01\x03\x05\x03\x01\x03\x04", // 覹
+ 0x89ba: "\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x02\x05\x01\x01\x01\x03\x05", // 覺
+ 0x89bb: "\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01\x01\x01\x03\x05", // 覻
+ 0x89bc: "\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 覼
+ 0x89bd: "\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 覽
+ 0x89be: "\x04\x04\x05\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 覾
+ 0x89bf: "\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 覿
+ 0x89c0: "\x01\x02\x02\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 觀
+ 0x89c1: "\x02\x05\x03\x05", // 见
+ 0x89c2: "\x05\x04\x02\x05\x03\x05", // 观
+ 0x89c3: "\x02\x05\x03\x05\x05\x02\x01", // 觃
+ 0x89c4: "\x01\x01\x03\x04\x02\x05\x03\x05", // 规
+ 0x89c5: "\x03\x04\x04\x03\x02\x05\x03\x05", // 觅
+ 0x89c6: "\x04\x05\x02\x04\x02\x05\x03\x05", // 视
+ 0x89c7: "\x02\x01\x02\x05\x01\x02\x05\x03\x05", // 觇
+ 0x89c8: "\x02\x02\x03\x01\x04\x02\x05\x03\x05", // 览
+ 0x89c9: "\x04\x04\x03\x04\x05\x02\x05\x03\x05", // 觉
+ 0x89ca: "\x02\x05\x02\x05\x01\x05\x02\x05\x03\x05", // 觊
+ 0x89cb: "\x01\x02\x03\x04\x03\x04\x01\x02\x05\x03\x05", // 觋
+ 0x89cc: "\x01\x02\x05\x04\x04\x01\x03\x04\x02\x05\x03\x05", // 觌
+ 0x89cd: "\x02\x05\x01\x02\x02\x01\x03\x04\x02\x05\x03\x05", // 觍
+ 0x89ce: "\x03\x04\x01\x02\x05\x01\x01\x02\x02\x02\x05\x03\x05", // 觎
+ 0x89cf: "\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01\x02\x05\x03\x05", // 觏
+ 0x89d0: "\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x03\x05", // 觐
+ 0x89d1: "\x02\x01\x05\x03\x01\x05\x02\x02\x04\x03\x01\x02\x05\x03\x05", // 觑
+ 0x89d2: "\x03\x05\x03\x05\x01\x01\x02", // 角
+ 0x89d3: "\x03\x05\x03\x05\x01\x01\x02\x05\x02", // 觓
+ 0x89d4: "\x03\x05\x03\x05\x01\x01\x02\x05\x03", // 觔
+ 0x89d5: "\x03\x01\x02\x01\x03\x05\x03\x05\x01\x01\x02", // 觕
+ 0x89d6: "\x03\x05\x03\x05\x01\x01\x02\x05\x01\x03\x04", // 觖
+ 0x89d7: "\x03\x05\x03\x05\x01\x01\x02\x03\x05\x01\x05", // 觗
+ 0x89d8: "\x03\x05\x03\x05\x01\x01\x02\x02\x03\x04\x03", // 觘
+ 0x89d9: "\x03\x05\x03\x05\x01\x01\x02\x03\x05\x04", // 觙
+ 0x89da: "\x03\x05\x03\x05\x01\x01\x02\x03\x03\x05\x04\x04", // 觚
+ 0x89db: "\x03\x05\x03\x05\x01\x01\x02\x02\x05\x01\x01\x01", // 觛
+ 0x89dc: "\x02\x01\x02\x01\x03\x05\x03\x05\x03\x05\x01\x01\x02", // 觜
+ 0x89dd: "\x03\x05\x03\x05\x01\x01\x02\x03\x05\x01\x05\x04", // 觝
+ 0x89de: "\x03\x05\x03\x05\x01\x01\x02\x03\x01\x05\x03\x03", // 觞
+ 0x89df: "\x03\x05\x03\x05\x01\x01\x02\x01\x02\x01\x01\x02\x01", // 觟
+ 0x89e0: "\x04\x03\x01\x01\x03\x04\x03\x05\x03\x05\x01\x01\x02", // 觠
+ 0x89e1: "\x03\x05\x03\x05\x01\x01\x02\x03\x05\x04\x02\x05\x01", // 觡
+ 0x89e2: "\x01\x01\x01\x02\x05\x03\x03\x05\x03\x05\x01\x01\x02", // 觢
+ 0x89e3: "\x03\x05\x03\x05\x01\x01\x02\x05\x03\x03\x01\x01\x02", // 解
+ 0x89e4: "\x03\x05\x03\x05\x01\x01\x02\x03\x05\x01\x03\x05\x05", // 觤
+ 0x89e5: "\x03\x05\x03\x05\x01\x01\x02\x02\x04\x03\x01\x03\x05", // 觥
+ 0x89e6: "\x03\x05\x03\x05\x01\x01\x02\x02\x05\x01\x02\x01\x04", // 触
+ 0x89e7: "\x03\x05\x03\x05\x01\x01\x02\x04\x03\x01\x01\x01\x02", // 觧
+ 0x89e8: "\x03\x05\x03\x05\x01\x01\x02\x01\x02\x01\x02\x05\x03\x04", // 觨
+ 0x89e9: "\x03\x05\x03\x05\x01\x01\x02\x01\x02\x04\x01\x03\x04\x04", // 觩
+ 0x89ea: "\x03\x05\x03\x05\x01\x01\x02\x04\x01\x04\x03\x01\x01\x02", // 觪
+ 0x89eb: "\x03\x05\x03\x05\x01\x01\x02\x01\x02\x05\x01\x02\x03\x04", // 觫
+ 0x89ec: "\x03\x05\x03\x05\x01\x01\x02\x03\x02\x01\x05\x01\x01\x03\x05", // 觬
+ 0x89ed: "\x03\x05\x03\x05\x01\x01\x02\x01\x03\x04\x01\x02\x05\x01\x02", // 觭
+ 0x89ee: "\x03\x05\x03\x05\x01\x01\x02\x05\x01\x01\x02\x04\x01\x03\x04", // 觮
+ 0x89ef: "\x03\x05\x03\x05\x01\x01\x02\x04\x03\x02\x05\x01\x01\x01\x02", // 觯
+ 0x89f0: "\x03\x05\x03\x05\x01\x01\x02\x01\x02\x01\x03\x02\x05\x01\x01", // 觰
+ 0x89f1: "\x01\x03\x01\x02\x05\x01\x05\x03\x04\x03\x05\x03\x05\x01\x01\x02", // 觱
+ 0x89f2: "\x03\x05\x03\x05\x01\x01\x02\x04\x03\x01\x01\x02\x01\x03\x01\x01\x02", // 觲
+ 0x89f3: "\x01\x02\x01\x04\x05\x01\x03\x05\x03\x05\x01\x01\x02\x03\x05\x05\x04", // 觳
+ 0x89f4: "\x03\x05\x03\x05\x01\x01\x02\x03\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 觴
+ 0x89f5: "\x03\x05\x03\x05\x01\x01\x02\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 觵
+ 0x89f6: "\x03\x05\x03\x05\x01\x01\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 觶
+ 0x89f7: "\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x03\x05\x03\x05\x01\x01\x02", // 觷
+ 0x89f8: "\x03\x05\x03\x05\x01\x01\x02\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 觸
+ 0x89f9: "\x03\x05\x03\x05\x01\x01\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x02\x05", // 觹
+ 0x89fa: "\x03\x05\x03\x01\x01\x03\x04\x05\x04\x05\x02\x01\x03\x04\x03\x05\x03\x05\x01\x01\x02", // 觺
+ 0x89fb: "\x03\x05\x03\x05\x01\x01\x02\x03\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x03\x04", // 觻
+ 0x89fc: "\x03\x05\x03\x05\x01\x01\x02\x03\x05\x02\x05\x03\x04\x02\x05\x01\x01\x01\x03\x05\x04", // 觼
+ 0x89fd: "\x03\x05\x03\x05\x01\x01\x02\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x02\x05", // 觽
+ 0x89fe: "\x03\x05\x03\x05\x01\x01\x02\x01\x02\x02\x01\x02\x05\x01\x02\x01\x01\x03\x05\x04\x04\x04\x04", // 觾
+ 0x89ff: "\x03\x05\x03\x05\x01\x01\x02\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x03\x04\x02\x05\x01", // 觿
+ 0x8a00: "\x04\x01\x01\x01\x02\x05\x01", // 言
+ 0x8a01: "\x04\x01\x01\x01\x02\x05\x01", // 訁
+ 0x8a02: "\x04\x01\x01\x01\x02\x05\x01\x01\x02", // 訂
+ 0x8a03: "\x04\x01\x01\x01\x02\x05\x01\x02\x04", // 訃
+ 0x8a04: "\x03\x05\x04\x01\x01\x01\x02\x05\x01", // 訄
+ 0x8a05: "\x04\x01\x01\x01\x02\x05\x01\x03\x05", // 訅
+ 0x8a06: "\x04\x01\x01\x01\x02\x05\x01\x05\x02", // 訆
+ 0x8a07: "\x03\x05\x04\x01\x01\x01\x02\x05\x01", // 訇
+ 0x8a08: "\x04\x01\x01\x01\x02\x05\x01\x01\x02", // 計
+ 0x8a09: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x04", // 訉
+ 0x8a0a: "\x04\x01\x01\x01\x02\x05\x01\x05\x01\x02", // 訊
+ 0x8a0b: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x04", // 訋
+ 0x8a0c: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01", // 訌
+ 0x8a0d: "\x04\x01\x01\x01\x02\x05\x01\x05\x04\x04", // 訍
+ 0x8a0e: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x04", // 討
+ 0x8a0f: "\x04\x01\x01\x01\x02\x05\x01\x01\x01\x02", // 訏
+ 0x8a10: "\x04\x01\x01\x01\x02\x05\x01\x01\x01\x02", // 訐
+ 0x8a11: "\x04\x01\x01\x01\x02\x05\x01\x05\x02\x05", // 訑
+ 0x8a12: "\x04\x01\x01\x01\x02\x05\x01\x05\x03\x04", // 訒
+ 0x8a13: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x02", // 訓
+ 0x8a14: "\x02\x05\x02\x04\x01\x01\x01\x02\x05\x01", // 訔
+ 0x8a15: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x02", // 訕
+ 0x8a16: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x05", // 訖
+ 0x8a17: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x05", // 託
+ 0x8a18: "\x04\x01\x01\x01\x02\x05\x01\x05\x01\x05", // 記
+ 0x8a19: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x04", // 訙
+ 0x8a1a: "\x04\x02\x05\x04\x01\x01\x01\x02\x05\x01", // 訚
+ 0x8a1b: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x03\x05", // 訛
+ 0x8a1c: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x05\x03", // 訜
+ 0x8a1d: "\x04\x01\x01\x01\x02\x05\x01\x01\x05\x02\x03", // 訝
+ 0x8a1e: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x03\x04", // 訞
+ 0x8a1f: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x05\x04", // 訟
+ 0x8a20: "\x04\x01\x01\x01\x02\x05\x01\x05\x01\x05\x02", // 訠
+ 0x8a21: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x04\x05", // 訡
+ 0x8a22: "\x04\x01\x01\x01\x02\x05\x01\x03\x03\x01\x02", // 訢
+ 0x8a23: "\x04\x01\x01\x01\x02\x05\x01\x05\x01\x03\x04", // 訣
+ 0x8a24: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x03\x04", // 訤
+ 0x8a25: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x03\x04", // 訥
+ 0x8a26: "\x04\x01\x01\x01\x02\x05\x01\x04\x05\x03\x05", // 訦
+ 0x8a27: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x05\x04", // 訧
+ 0x8a28: "\x04\x01\x01\x01\x02\x05\x01\x02\x01\x02\x01", // 訨
+ 0x8a29: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x05\x02", // 訩
+ 0x8a2a: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x05\x03", // 訪
+ 0x8a2b: "\x04\x01\x01\x01\x02\x05\x01\x04\x05\x04\x04", // 訫
+ 0x8a2c: "\x04\x01\x01\x01\x02\x05\x01\x02\x03\x04\x03", // 訬
+ 0x8a2d: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x05\x04", // 設
+ 0x8a2e: "\x04\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02", // 訮
+ 0x8a2f: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x04", // 訯
+ 0x8a30: "\x04\x01\x01\x01\x02\x05\x01\x01\x05\x02\x05", // 訰
+ 0x8a31: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x01\x02", // 許
+ 0x8a32: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02", // 訲
+ 0x8a33: "\x04\x01\x01\x01\x02\x05\x01\x05\x01\x03\x04", // 訳
+ 0x8a34: "\x04\x01\x01\x01\x02\x05\x01\x03\x03\x01\x02\x04", // 訴
+ 0x8a35: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x03\x05\x01", // 訵
+ 0x8a36: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x05\x01\x02", // 訶
+ 0x8a37: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x02", // 訷
+ 0x8a38: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x02\x03\x04", // 訸
+ 0x8a39: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x03\x04\x04", // 訹
+ 0x8a3a: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x03\x03\x03", // 診
+ 0x8a3b: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x01\x02\x01", // 註
+ 0x8a3c: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x02\x01", // 証
+ 0x8a3d: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x02\x05\x01", // 訽
+ 0x8a3e: "\x02\x01\x02\x01\x03\x05\x04\x01\x01\x01\x02\x05\x01", // 訾
+ 0x8a3f: "\x04\x01\x01\x01\x02\x05\x01\x02\x01\x02\x01\x03\x05", // 訿
+ 0x8a40: "\x04\x01\x01\x01\x02\x05\x01\x02\x01\x02\x05\x01", // 詀
+ 0x8a41: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x05\x01", // 詁
+ 0x8a42: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x01\x02\x04", // 詂
+ 0x8a43: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x05\x05\x04", // 詃
+ 0x8a44: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x01\x03\x04", // 詄
+ 0x8a45: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x04\x05\x04", // 詅
+ 0x8a46: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x01\x05\x04", // 詆
+ 0x8a47: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x03\x04", // 詇
+ 0x8a48: "\x02\x05\x02\x02\x01\x04\x01\x01\x01\x02\x05\x01", // 詈
+ 0x8a49: "\x04\x01\x01\x01\x02\x05\x01\x05\x03\x01\x05\x04", // 詉
+ 0x8a4a: "\x04\x01\x01\x01\x02\x05\x01\x04\x03\x01\x01\x02", // 詊
+ 0x8a4b: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x03\x05", // 詋
+ 0x8a4c: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x01\x01", // 詌
+ 0x8a4d: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x01\x05", // 詍
+ 0x8a4e: "\x04\x01\x01\x01\x02\x05\x01\x01\x05\x01\x05", // 詎
+ 0x8a4f: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x05\x03", // 詏
+ 0x8a50: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x02\x01\x01", // 詐
+ 0x8a51: "\x04\x01\x01\x01\x02\x05\x01\x04\x04\x05\x03\x05", // 詑
+ 0x8a52: "\x04\x01\x01\x01\x02\x05\x01\x05\x04\x02\x05\x01", // 詒
+ 0x8a53: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x05\x04", // 詓
+ 0x8a54: "\x04\x01\x01\x01\x02\x05\x01\x05\x03\x02\x05\x01", // 詔
+ 0x8a55: "\x04\x01\x01\x01\x02\x05\x01\x01\x04\x03\x01\x02", // 評
+ 0x8a56: "\x04\x01\x01\x01\x02\x05\x01\x05\x03\x02\x05\x04", // 詖
+ 0x8a57: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 詗
+ 0x8a58: "\x04\x01\x01\x01\x02\x05\x01\x05\x02\x02\x05\x02", // 詘
+ 0x8a59: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x05\x04\x04", // 詙
+ 0x8a5a: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x01", // 詚
+ 0x8a5b: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x01", // 詛
+ 0x8a5c: "\x04\x01\x01\x01\x02\x05\x01\x05\x02\x02\x05\x04", // 詜
+ 0x8a5d: "\x04\x01\x01\x01\x02\x05\x01\x04\x04\x05\x01\x02", // 詝
+ 0x8a5e: "\x04\x01\x01\x01\x02\x05\x01\x05\x01\x02\x05\x01", // 詞
+ 0x8a5f: "\x01\x03\x05\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 詟
+ 0x8a60: "\x04\x01\x01\x01\x02\x05\x01\x04\x05\x05\x03\x04", // 詠
+ 0x8a61: "\x04\x01\x01\x01\x02\x05\x01\x05\x04\x01\x05\x04\x01", // 詡
+ 0x8a62: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x02\x05\x01\x01", // 詢
+ 0x8a63: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x02\x05\x01\x01", // 詣
+ 0x8a64: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x05\x03\x02\x05", // 詤
+ 0x8a65: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x01\x02\x05\x01", // 詥
+ 0x8a66: "\x04\x01\x01\x01\x02\x05\x01\x01\x01\x02\x01\x05\x04", // 試
+ 0x8a67: "\x03\x05\x04\x04\x05\x04\x04\x01\x01\x01\x02\x05\x01", // 詧
+ 0x8a68: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x03\x04\x03\x04", // 詨
+ 0x8a69: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x01\x02\x04", // 詩
+ 0x8a6a: "\x04\x01\x01\x01\x02\x05\x01\x05\x01\x01\x05\x03\x04", // 詪
+ 0x8a6b: "\x04\x01\x01\x01\x02\x05\x01\x04\x04\x05\x03\x01\x05", // 詫
+ 0x8a6c: "\x04\x01\x01\x01\x02\x05\x01\x03\x03\x01\x02\x05\x01", // 詬
+ 0x8a6d: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x01\x03\x05\x05", // 詭
+ 0x8a6e: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x01\x01\x02\x01", // 詮
+ 0x8a6f: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x05\x01\x01\x01", // 詯
+ 0x8a70: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x02\x05\x01", // 詰
+ 0x8a71: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x02\x02\x05\x01", // 話
+ 0x8a72: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x05\x03\x03\x04", // 該
+ 0x8a73: "\x04\x01\x01\x01\x02\x05\x01\x04\x03\x01\x01\x01\x02", // 詳
+ 0x8a74: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x02\x05\x01\x01", // 詴
+ 0x8a75: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x02\x01\x03\x05", // 詵
+ 0x8a76: "\x04\x01\x01\x01\x02\x05\x01\x04\x03\x04\x02\x04\x02", // 詶
+ 0x8a77: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 詷
+ 0x8a78: "\x04\x01\x01\x01\x02\x05\x01\x04\x03\x01\x02\x03\x04", // 詸
+ 0x8a79: "\x03\x05\x01\x03\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 詹
+ 0x8a7a: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x04\x02\x05\x01", // 詺
+ 0x8a7b: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x04\x02\x05\x01", // 詻
+ 0x8a7c: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x04\x03\x03\x04", // 詼
+ 0x8a7d: "\x04\x01\x01\x01\x02\x05\x01\x01\x01\x03\x01\x01\x02", // 詽
+ 0x8a7e: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x03\x04\x05\x02", // 詾
+ 0x8a7f: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x01\x02\x01", // 詿
+ 0x8a80: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x01\x01\x01", // 誀
+ 0x8a81: "\x04\x01\x01\x01\x02\x05\x01\x04\x03\x01\x01\x03\x02", // 誁
+ 0x8a82: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x01\x05\x03\x04", // 誂
+ 0x8a83: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x04\x03\x05\x04", // 誃
+ 0x8a84: "\x04\x01\x01\x01\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 誄
+ 0x8a85: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x01\x02\x03\x04", // 誅
+ 0x8a86: "\x04\x01\x01\x01\x02\x05\x01\x01\x01\x01\x02\x01\x05", // 誆
+ 0x8a87: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x04\x01\x01\x05", // 誇
+ 0x8a88: "\x04\x01\x01\x01\x02\x05\x01\x01\x05\x04\x01\x02\x01", // 誈
+ 0x8a89: "\x04\x04\x03\x01\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 誉
+ 0x8a8a: "\x04\x03\x01\x01\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 誊
+ 0x8a8b: "\x04\x01\x01\x01\x02\x05\x01\x05\x01\x05\x04\x05\x04\x04", // 誋
+ 0x8a8c: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x04\x05\x04\x04", // 誌
+ 0x8a8d: "\x04\x01\x01\x01\x02\x05\x01\x05\x03\x04\x04\x05\x04\x04", // 認
+ 0x8a8e: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x05\x01\x02\x03\x04", // 誎
+ 0x8a8f: "\x04\x01\x01\x01\x02\x05\x01\x04\x05\x01\x01\x05\x03\x04", // 誏
+ 0x8a90: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x02\x01\x05\x03\x04", // 誐
+ 0x8a91: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x03\x01\x01\x02\x01", // 誑
+ 0x8a92: "\x04\x01\x01\x01\x02\x05\x01\x05\x04\x03\x01\x01\x03\x04", // 誒
+ 0x8a93: "\x01\x02\x01\x03\x03\x01\x02\x04\x01\x01\x01\x02\x05\x01", // 誓
+ 0x8a94: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x02\x01\x05\x04", // 誔
+ 0x8a95: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x01\x05\x05\x04", // 誕
+ 0x8a96: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x04\x05\x05\x02\x01", // 誖
+ 0x8a97: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x02\x03\x04\x02\x02", // 誗
+ 0x8a98: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x02\x03\x04\x05\x03", // 誘
+ 0x8a99: "\x04\x01\x01\x01\x02\x05\x01\x01\x05\x05\x05\x01\x02\x01", // 誙
+ 0x8a9a: "\x04\x01\x01\x01\x02\x05\x01\x02\x04\x03\x02\x05\x01\x01", // 誚
+ 0x8a9b: "\x04\x01\x01\x01\x02\x05\x01\x05\x01\x01\x04\x05\x05\x04", // 誛
+ 0x8a9c: "\x04\x01\x01\x01\x02\x05\x01\x05\x04\x03\x04\x03\x05\x04", // 誜
+ 0x8a9d: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x04\x05\x02\x05\x01", // 誝
+ 0x8a9e: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01", // 語
+ 0x8a9f: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x03\x05\x02\x01", // 誟
+ 0x8aa0: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x05\x05\x03\x04", // 誠
+ 0x8aa1: "\x04\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x05\x03\x04", // 誡
+ 0x8aa2: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x01\x03\x05", // 誢
+ 0x8aa3: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x03\x04\x03\x04\x01", // 誣
+ 0x8aa4: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 誤
+ 0x8aa5: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x02\x01\x02\x05\x01", // 誥
+ 0x8aa6: "\x04\x01\x01\x01\x02\x05\x01\x05\x04\x02\x05\x01\x01\x02", // 誦
+ 0x8aa7: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01\x02\x04", // 誧
+ 0x8aa8: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x05\x05\x04\x01\x04", // 誨
+ 0x8aa9: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01", // 誩
+ 0x8aaa: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x02\x05\x01\x03\x05", // 說
+ 0x8aab: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x01\x01\x05\x03\x04", // 誫
+ 0x8aac: "\x04\x01\x01\x01\x02\x05\x01\x04\x03\x02\x05\x01\x03\x05", // 説
+ 0x8aad: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x04\x05\x03\x05", // 読
+ 0x8aae: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x03\x02\x03\x05", // 誮
+ 0x8aaf: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x02\x05\x01\x01", // 誯
+ 0x8ab0: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 誰
+ 0x8ab1: "\x04\x01\x01\x01\x02\x05\x01\x01\x05\x01\x01\x02\x01\x03\x04", // 誱
+ 0x8ab2: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x03\x04", // 課
+ 0x8ab3: "\x04\x01\x01\x01\x02\x05\x01\x05\x01\x03\x05\x02\x02\x05\x02", // 誳
+ 0x8ab4: "\x04\x01\x01\x01\x02\x05\x01\x04\x04\x05\x01\x01\x02\x03\x04", // 誴
+ 0x8ab5: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x01\x03\x02\x05\x01\x01", // 誵
+ 0x8ab6: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x03\x04\x03\x04\x01\x02", // 誶
+ 0x8ab7: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x04\x03\x01\x04\x01\x05", // 誷
+ 0x8ab8: "\x04\x01\x01\x01\x02\x05\x01\x05\x01\x05\x04\x01\x05\x05\x04", // 誸
+ 0x8ab9: "\x04\x01\x01\x01\x02\x05\x01\x02\x01\x01\x01\x02\x01\x01\x01", // 誹
+ 0x8aba: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x04\x03\x04\x02\x03\x04", // 誺
+ 0x8abb: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x03\x04\x02\x05\x01\x01", // 誻
+ 0x8abc: "\x04\x01\x01\x01\x02\x05\x01\x04\x04\x05\x02\x05\x01\x01\x01", // 誼
+ 0x8abd: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x01\x05\x01\x01\x03\x05", // 誽
+ 0x8abe: "\x02\x05\x01\x01\x02\x05\x01\x01\x04\x01\x01\x01\x02\x05\x01", // 誾
+ 0x8abf: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x01\x02\x01\x02\x05\x01", // 調
+ 0x8ac0: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x05\x01\x01\x03\x01\x02", // 諀
+ 0x8ac1: "\x04\x01\x01\x01\x02\x05\x01\x05\x04\x05\x04\x05\x04\x05\x04", // 諁
+ 0x8ac2: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x03\x02\x01\x05\x01\x01", // 諂
+ 0x8ac3: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x03\x04\x01\x02\x03\x04", // 諃
+ 0x8ac4: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x02\x05\x01\x05\x02\x01", // 諄
+ 0x8ac5: "\x01\x02\x02\x01\x01\x01\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 諅
+ 0x8ac6: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x01\x01\x01\x03\x04", // 諆
+ 0x8ac7: "\x04\x01\x01\x01\x02\x05\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 談
+ 0x8ac8: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x02\x01\x02\x02\x01\x01", // 諈
+ 0x8ac9: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x02\x03\x04\x05\x03\x01", // 諉
+ 0x8aca: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x04\x03\x01\x02\x03\x04", // 諊
+ 0x8acb: "\x04\x01\x01\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01", // 請
+ 0x8acc: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01\x02\x03\x04", // 諌
+ 0x8acd: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x05\x01\x01\x02", // 諍
+ 0x8ace: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x01\x02\x05\x01\x01", // 諎
+ 0x8acf: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x01\x01\x01\x05\x04", // 諏
+ 0x8ad0: "\x03\x02\x02\x05\x01\x03\x02\x05\x04\x01\x01\x01\x02\x05\x01", // 諐
+ 0x8ad1: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x05\x03\x03\x04\x03\x04", // 諑
+ 0x8ad2: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x02\x05\x01\x02\x03\x04", // 諒
+ 0x8ad3: "\x04\x01\x01\x01\x02\x05\x01\x01\x05\x03\x04\x01\x05\x03\x04", // 諓
+ 0x8ad4: "\x04\x01\x01\x01\x02\x05\x01\x02\x01\x01\x02\x03\x04\x05\x04", // 諔
+ 0x8ad5: "\x04\x01\x01\x01\x02\x05\x01\x02\x01\x05\x03\x01\x05\x03\x05", // 諕
+ 0x8ad6: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x01\x02\x05\x01\x02\x02", // 論
+ 0x8ad7: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x04\x05\x04\x05\x04\x04", // 諗
+ 0x8ad8: "\x04\x01\x01\x01\x02\x05\x01\x01\x01\x02\x01\x03\x05\x03\x04", // 諘
+ 0x8ad9: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x01\x05\x02\x05\x01\x01", // 諙
+ 0x8ada: "\x04\x01\x01\x01\x02\x05\x01\x04\x04\x05\x01\x02\x01\x03\x04", // 諚
+ 0x8adb: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x01\x05\x01\x01\x03\x04", // 諛
+ 0x8adc: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 諜
+ 0x8add: "\x04\x01\x01\x01\x02\x05\x01\x05\x02\x01\x03\x04\x02\x05\x01\x01", // 諝
+ 0x8ade: "\x04\x01\x01\x01\x02\x05\x01\x04\x05\x01\x03\x02\x05\x01\x02\x02", // 諞
+ 0x8adf: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 諟
+ 0x8ae0: "\x04\x01\x01\x01\x02\x05\x01\x04\x04\x05\x01\x02\x05\x01\x01\x01", // 諠
+ 0x8ae1: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x01\x05\x02\x05\x02\x02\x01", // 諡
+ 0x8ae2: "\x04\x01\x01\x01\x02\x05\x01\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 諢
+ 0x8ae3: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x05\x02\x05\x02\x05\x01", // 諣
+ 0x8ae4: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x05", // 諤
+ 0x8ae5: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 諥
+ 0x8ae6: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x04\x03\x04\x05\x02\x05\x02", // 諦
+ 0x8ae7: "\x04\x01\x01\x01\x02\x05\x01\x01\x05\x03\x05\x03\x02\x05\x01\x01", // 諧
+ 0x8ae8: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 諨
+ 0x8ae9: "\x04\x01\x01\x01\x02\x05\x01\x04\x03\x01\x02\x02\x04\x03\x01", // 諩
+ 0x8aea: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x02\x05\x01\x04\x05\x01\x02", // 諪
+ 0x8aeb: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 諫
+ 0x8aec: "\x03\x01\x02\x03\x04\x01\x03\x05\x04\x04\x01\x01\x01\x02\x05\x01", // 諬
+ 0x8aed: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 諭
+ 0x8aee: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x03\x05\x03\x04\x02\x05\x01", // 諮
+ 0x8aef: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 諯
+ 0x8af0: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 諰
+ 0x8af1: "\x04\x01\x01\x01\x02\x05\x01\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 諱
+ 0x8af2: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01\x01\x02\x01", // 諲
+ 0x8af3: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 諳
+ 0x8af4: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 諴
+ 0x8af5: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x05\x04\x03\x01\x01\x02", // 諵
+ 0x8af6: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x01\x01\x01\x03\x04\x05", // 諶
+ 0x8af7: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 諷
+ 0x8af8: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 諸
+ 0x8af9: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 諹
+ 0x8afa: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x04\x03\x01\x03\x03\x03\x03", // 諺
+ 0x8afb: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x05\x01\x01\x01\x01\x02\x01", // 諻
+ 0x8afc: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x04\x03\x01\x01\x03\x05\x04", // 諼
+ 0x8afd: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x01\x02\x05\x01\x01\x02", // 諽
+ 0x8afe: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x01\x03\x02\x05\x01", // 諾
+ 0x8aff: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x02\x02\x01\x01\x01", // 諿
+ 0x8b00: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x01\x01\x01\x02\x03\x04", // 謀
+ 0x8b01: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 謁
+ 0x8b02: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01", // 謂
+ 0x8b03: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x03\x01\x01\x02\x01", // 謃
+ 0x8b04: "\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 謄
+ 0x8b05: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03", // 謅
+ 0x8b06: "\x04\x01\x01\x01\x02\x05\x01\x04\x05\x01\x03\x05\x04\x01\x05\x04\x01", // 謆
+ 0x8b07: "\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 謇
+ 0x8b08: "\x02\x05\x01\x01\x01\x02\x02\x01\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 謈
+ 0x8b09: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 謉
+ 0x8b0a: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x04\x01\x05\x03\x02\x05", // 謊
+ 0x8b0b: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x04\x01\x05\x02\x01\x02\x03\x04", // 謋
+ 0x8b0c: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02", // 謌
+ 0x8b0d: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x04\x01\x01\x01\x02\x05\x01", // 謍
+ 0x8b0e: "\x04\x01\x01\x01\x02\x05\x01\x04\x03\x01\x02\x03\x04\x04\x05\x04", // 謎
+ 0x8b0f: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x01\x05\x01\x01\x02\x05\x04", // 謏
+ 0x8b10: "\x04\x01\x01\x01\x02\x05\x01\x04\x05\x04\x03\x04\x02\x05\x02\x02\x01", // 謐
+ 0x8b11: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04", // 謑
+ 0x8b12: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x04\x05\x01\x01\x03\x02\x05\x01", // 謒
+ 0x8b13: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 謓
+ 0x8b14: "\x04\x01\x01\x01\x02\x05\x01\x02\x01\x05\x03\x01\x05\x01\x05\x01", // 謔
+ 0x8b15: "\x04\x01\x01\x01\x02\x05\x01\x03\x03\x02\x01\x05\x03\x01\x05\x03\x05", // 謕
+ 0x8b16: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x01\x03\x04\x03\x05\x04", // 謖
+ 0x8b17: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03", // 謗
+ 0x8b18: "\x04\x01\x01\x01\x02\x05\x01\x05\x01\x03\x04\x01\x04\x03\x01\x01\x02", // 謘
+ 0x8b19: "\x04\x01\x01\x01\x02\x05\x01\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 謙
+ 0x8b1a: "\x04\x01\x01\x01\x02\x05\x01\x04\x03\x01\x03\x04\x02\x05\x02\x02\x01", // 謚
+ 0x8b1b: "\x04\x01\x01\x01\x02\x05\x01\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01", // 講
+ 0x8b1c: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x03\x02\x05\x01\x01\x02\x03\x04", // 謜
+ 0x8b1d: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x05\x01\x01\x01\x03\x01\x02\x04", // 謝
+ 0x8b1e: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 謞
+ 0x8b1f: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01", // 謟
+ 0x8b20: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x04\x04\x03\x01\x01\x02\x05\x02", // 謠
+ 0x8b21: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02", // 謡
+ 0x8b22: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 謢
+ 0x8b23: "\x04\x01\x01\x01\x02\x05\x01\x01\x04\x05\x02\x04\x04\x04\x04\x01\x01\x05", // 謣
+ 0x8b24: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 謤
+ 0x8b25: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x05\x03\x05\x04\x01\x04\x05\x04\x04", // 謥
+ 0x8b26: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04\x04\x01\x01\x01\x02\x05\x01", // 謦
+ 0x8b27: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 謧
+ 0x8b28: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 謨
+ 0x8b29: "\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 謩
+ 0x8b2a: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x04\x03\x02\x05\x03\x04\x02\x05\x01", // 謪
+ 0x8b2b: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01", // 謫
+ 0x8b2c: "\x04\x01\x01\x01\x02\x05\x01\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 謬
+ 0x8b2d: "\x04\x01\x01\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01\x01\x02\x02\x05\x03", // 謭
+ 0x8b2e: "\x04\x01\x01\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 謮
+ 0x8b2f: "\x04\x01\x01\x01\x02\x05\x01\x02\x01\x05\x03\x01\x05\x02\x05\x01\x01\x01", // 謯
+ 0x8b30: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 謰
+ 0x8b31: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 謱
+ 0x8b32: "\x04\x01\x01\x01\x02\x05\x01\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 謲
+ 0x8b33: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 謳
+ 0x8b34: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 謴
+ 0x8b35: "\x04\x01\x01\x01\x02\x05\x01\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01", // 謵
+ 0x8b36: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x03\x01\x02\x02\x01\x04\x04\x04\x04", // 謶
+ 0x8b37: "\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 謷
+ 0x8b38: "\x04\x01\x01\x01\x02\x05\x01\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04", // 謸
+ 0x8b39: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01", // 謹
+ 0x8b3a: "\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04\x04\x01\x01\x01\x02\x05\x01", // 謺
+ 0x8b3b: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x02\x03\x04\x03\x05\x04\x03\x05\x04", // 謻
+ 0x8b3c: "\x04\x01\x01\x01\x02\x05\x01\x02\x01\x05\x03\x01\x05\x03\x04\x03\x01\x02", // 謼
+ 0x8b3d: "\x05\x01\x05\x02\x05\x01\x02\x05\x01\x02\x01\x04\x04\x01\x01\x01\x02\x05\x01", // 謽
+ 0x8b3e: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 謾
+ 0x8b3f: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x03\x05\x01\x01", // 謿
+ 0x8b40: "\x04\x01\x01\x01\x02\x05\x01\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 譀
+ 0x8b41: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x01\x01\x02\x02\x01\x01\x02", // 譁
+ 0x8b42: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 譂
+ 0x8b43: "\x04\x01\x01\x01\x02\x05\x01\x02\x01\x05\x03\x01\x05\x02\x02\x04\x03\x01", // 譃
+ 0x8b44: "\x04\x01\x01\x01\x02\x05\x01\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 譄
+ 0x8b45: "\x04\x01\x01\x01\x02\x05\x01\x05\x03\x04\x05\x03\x04\x02\x01\x02\x01\x02\x01\x02\x01", // 譅
+ 0x8b46: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01", // 譆
+ 0x8b47: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01", // 譇
+ 0x8b48: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x02\x05\x01\x05\x02\x01\x03\x01\x03\x04", // 譈
+ 0x8b49: "\x04\x01\x01\x01\x02\x05\x01\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 證
+ 0x8b4a: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 譊
+ 0x8b4b: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x02\x05\x01\x01\x03\x05\x01\x01", // 譋
+ 0x8b4c: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04", // 譌
+ 0x8b4d: "\x04\x01\x03\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01\x04\x01\x01\x01\x02\x05\x01", // 譍
+ 0x8b4e: "\x04\x01\x01\x01\x02\x05\x01\x05\x04\x05\x02\x03\x02\x05\x03\x04\x02\x05\x01", // 譎
+ 0x8b4f: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x05\x05\x04\x01\x03\x04\x05\x03\x04", // 譏
+ 0x8b50: "\x04\x01\x01\x01\x02\x05\x01\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x02\x04", // 譐
+ 0x8b51: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 譑
+ 0x8b52: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 譒
+ 0x8b53: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01\x02\x01\x04\x04\x05\x04\x04", // 譓
+ 0x8b54: "\x04\x01\x01\x01\x02\x05\x01\x05\x01\x05\x05\x01\x05\x01\x02\x02\x01\x03\x04", // 譔
+ 0x8b55: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x01\x02\x02\x02\x02\x01\x04\x04\x04\x04", // 譕
+ 0x8b56: "\x04\x01\x01\x01\x02\x05\x01\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x01", // 譖
+ 0x8b57: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x04\x03\x01\x04\x03\x04\x01\x02\x05\x01", // 譗
+ 0x8b58: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05\x03\x04", // 識
+ 0x8b59: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 譙
+ 0x8b5a: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 譚
+ 0x8b5b: "\x04\x01\x01\x01\x02\x05\x01\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01", // 譛
+ 0x8b5c: "\x04\x01\x01\x01\x02\x05\x01\x04\x03\x01\x02\x02\x04\x03\x01\x02\x05\x01\x01", // 譜
+ 0x8b5d: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x02\x05\x01\x02\x01\x01\x05\x01\x01", // 譝
+ 0x8b5e: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 譞
+ 0x8b5f: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 譟
+ 0x8b60: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 譠
+ 0x8b61: "\x04\x01\x01\x01\x02\x05\x01\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x01\x02\x01", // 譡
+ 0x8b62: "\x04\x01\x01\x01\x02\x05\x01\x04\x03\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 譢
+ 0x8b63: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 譣
+ 0x8b64: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x03\x04", // 譤
+ 0x8b65: "\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 譥
+ 0x8b66: "\x01\x02\x02\x03\x05\x02\x05\x01\x03\x01\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 警
+ 0x8b67: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x03\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 譧
+ 0x8b68: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x02\x01\x01\x03\x01\x01\x05\x03\x04", // 譨
+ 0x8b69: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 譩
+ 0x8b6a: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 譪
+ 0x8b6b: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x01\x03\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 譫
+ 0x8b6c: "\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x04\x01\x01\x01\x02\x05\x01", // 譬
+ 0x8b6d: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x01\x05\x01\x01\x01\x02\x01\x03\x05\x05\x04", // 譭
+ 0x8b6e: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 譮
+ 0x8b6f: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 譯
+ 0x8b70: "\x04\x01\x01\x01\x02\x05\x01\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01\x05\x03\x04", // 議
+ 0x8b71: "\x04\x03\x01\x01\x01\x02\x04\x01\x01\x01\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01", // 譱
+ 0x8b72: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x03\x04\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 譲
+ 0x8b73: "\x04\x01\x01\x01\x02\x05\x01\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02", // 譳
+ 0x8b74: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x01\x02\x05\x01\x05\x01\x04\x05\x04", // 譴
+ 0x8b75: "\x04\x01\x01\x01\x02\x05\x01\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x01\x02\x04", // 譵
+ 0x8b76: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01", // 譶
+ 0x8b77: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 護
+ 0x8b78: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 譸
+ 0x8b79: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x02\x05\x01\x04\x05\x01\x03\x05\x03\x03\x03\x04", // 譹
+ 0x8b7a: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x03\x01\x01\x03\x04\x05\x04\x05\x02\x01\x03\x04", // 譺
+ 0x8b7b: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 譻
+ 0x8b7c: "\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01\x04\x01\x01\x01\x02\x05\x01", // 譼
+ 0x8b7d: "\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 譽
+ 0x8b7e: "\x04\x01\x01\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01\x01\x02\x02\x05\x04\x01\x05\x04\x01", // 譾
+ 0x8b7f: "\x04\x01\x01\x01\x02\x05\x01\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 譿
+ 0x8b80: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 讀
+ 0x8b81: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01\x04\x05\x04", // 讁
+ 0x8b82: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x02\x05\x03\x04\x02\x05\x01\x01\x01\x03\x05\x04", // 讂
+ 0x8b83: "\x04\x01\x01\x01\x02\x05\x01\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 讃
+ 0x8b84: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01", // 讄
+ 0x8b85: "\x04\x01\x01\x01\x02\x05\x01\x04\x04\x05\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 讅
+ 0x8b86: "\x03\x03\x02\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x01\x02\x04\x01\x01\x01\x02\x05\x01", // 讆
+ 0x8b87: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x02\x05\x01\x01\x03\x05\x03\x02\x01\x05\x01\x01", // 讇
+ 0x8b88: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 讈
+ 0x8b89: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04", // 讉
+ 0x8b8a: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x03\x01\x03\x04", // 變
+ 0x8b8b: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x05\x01\x05\x01\x01\x01\x04\x01\x01\x01\x02\x05\x01", // 讋
+ 0x8b8c: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x01\x02\x05\x01\x02\x01\x01\x03\x05\x04\x04\x04\x04", // 讌
+ 0x8b8d: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x05\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01\x01", // 讍
+ 0x8b8e: "\x03\x02\x04\x01\x01\x01\x02\x01\x04\x01\x01\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 讎
+ 0x8b8f: "\x03\x03\x02\x05\x02\x01\x02\x05\x01\x01\x02\x05\x02\x01\x01\x02\x04\x01\x01\x01\x02\x05\x01", // 讏
+ 0x8b90: "\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x04\x01\x01\x01\x02\x05\x01", // 讐
+ 0x8b91: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02", // 讑
+ 0x8b92: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x02\x05\x01\x01\x05\x03\x05\x03\x05\x02\x05\x01\x03\x05\x04", // 讒
+ 0x8b93: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 讓
+ 0x8b94: "\x04\x01\x01\x01\x02\x05\x01\x05\x02\x03\x04\x04\x03\x01\x02\x01\x05\x01\x01\x04\x05\x04\x04", // 讔
+ 0x8b95: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 讕
+ 0x8b96: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x03\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 讖
+ 0x8b97: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x03\x04\x02\x05\x01", // 讗
+ 0x8b98: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01", // 讘
+ 0x8b99: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 讙
+ 0x8b9a: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 讚
+ 0x8b9b: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x01\x02\x01\x03\x04\x01\x02\x01\x03\x05\x04\x01\x01\x05\x04", // 讛
+ 0x8b9c: "\x04\x01\x01\x01\x02\x05\x01\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 讜
+ 0x8b9d: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x03\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 讝
+ 0x8b9e: "\x04\x01\x01\x01\x02\x05\x01\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x03\x04\x04", // 讞
+ 0x8b9f: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 讟
+ 0x8ba0: "\x04\x05", // 讠
+ 0x8ba1: "\x04\x05\x01\x02", // 计
+ 0x8ba2: "\x04\x05\x01\x02", // 订
+ 0x8ba3: "\x04\x05\x02\x04", // 讣
+ 0x8ba4: "\x04\x05\x03\x04", // 认
+ 0x8ba5: "\x04\x05\x03\x05", // 讥
+ 0x8ba6: "\x04\x05\x01\x01\x02", // 讦
+ 0x8ba7: "\x04\x05\x01\x02\x01", // 讧
+ 0x8ba8: "\x04\x05\x01\x02\x04", // 讨
+ 0x8ba9: "\x04\x05\x02\x01\x01", // 让
+ 0x8baa: "\x04\x05\x02\x05\x02", // 讪
+ 0x8bab: "\x04\x05\x03\x01\x05", // 讫
+ 0x8bac: "\x04\x05\x03\x01\x05", // 讬
+ 0x8bad: "\x04\x05\x03\x02\x02", // 训
+ 0x8bae: "\x04\x05\x04\x03\x04", // 议
+ 0x8baf: "\x04\x05\x05\x01\x02", // 讯
+ 0x8bb0: "\x04\x05\x05\x01\x05", // 记
+ 0x8bb1: "\x04\x05\x05\x03\x04", // 讱
+ 0x8bb2: "\x04\x05\x01\x01\x03\x02", // 讲
+ 0x8bb3: "\x04\x05\x01\x01\x05\x02", // 讳
+ 0x8bb4: "\x04\x05\x01\x03\x04\x05", // 讴
+ 0x8bb5: "\x04\x05\x01\x05\x01\x05", // 讵
+ 0x8bb6: "\x04\x05\x01\x05\x02\x03", // 讶
+ 0x8bb7: "\x04\x05\x02\x05\x03\x04", // 讷
+ 0x8bb8: "\x04\x05\x03\x01\x01\x02", // 许
+ 0x8bb9: "\x04\x05\x03\x02\x03\x05", // 讹
+ 0x8bba: "\x04\x05\x03\x04\x03\x05", // 论
+ 0x8bbb: "\x04\x05\x03\x04\x05\x02", // 讻
+ 0x8bbc: "\x04\x05\x03\x04\x05\x04", // 讼
+ 0x8bbd: "\x04\x05\x03\x05\x03\x04", // 讽
+ 0x8bbe: "\x04\x05\x03\x05\x05\x04", // 设
+ 0x8bbf: "\x04\x05\x04\x01\x05\x03", // 访
+ 0x8bc0: "\x04\x05\x05\x01\x03\x04", // 诀
+ 0x8bc1: "\x04\x05\x01\x02\x01\x02\x01", // 证
+ 0x8bc2: "\x04\x05\x01\x02\x02\x05\x01", // 诂
+ 0x8bc3: "\x04\x05\x01\x02\x05\x01\x02", // 诃
+ 0x8bc4: "\x04\x05\x01\x04\x03\x01\x02", // 评
+ 0x8bc5: "\x04\x05\x02\x05\x01\x01\x01", // 诅
+ 0x8bc6: "\x04\x05\x02\x05\x01\x03\x04", // 识
+ 0x8bc7: "\x04\x05\x02\x05\x02\x05\x01", // 诇
+ 0x8bc8: "\x04\x05\x03\x01\x02\x01\x01", // 诈
+ 0x8bc9: "\x04\x05\x03\x03\x01\x02\x04", // 诉
+ 0x8bca: "\x04\x05\x03\x04\x03\x03\x03", // 诊
+ 0x8bcb: "\x04\x05\x03\x05\x01\x05\x04", // 诋
+ 0x8bcc: "\x04\x05\x03\x05\x05\x01\x01", // 诌
+ 0x8bcd: "\x04\x05\x05\x01\x02\x05\x01", // 词
+ 0x8bce: "\x04\x05\x05\x02\x02\x05\x02", // 诎
+ 0x8bcf: "\x04\x05\x05\x03\x02\x05\x01", // 诏
+ 0x8bd0: "\x04\x05\x05\x03\x02\x05\x04", // 诐
+ 0x8bd1: "\x04\x05\x05\x04\x01\x01\x02", // 译
+ 0x8bd2: "\x04\x05\x05\x04\x02\x05\x01", // 诒
+ 0x8bd3: "\x04\x05\x01\x01\x01\x02\x01\x05", // 诓
+ 0x8bd4: "\x04\x05\x01\x01\x01\x02\x03\x04", // 诔
+ 0x8bd5: "\x04\x05\x01\x01\x02\x01\x05\x04", // 试
+ 0x8bd6: "\x04\x05\x01\x02\x01\x01\x02\x01", // 诖
+ 0x8bd7: "\x04\x05\x01\x02\x01\x01\x02\x04", // 诗
+ 0x8bd8: "\x04\x05\x01\x02\x01\x02\x05\x01", // 诘
+ 0x8bd9: "\x04\x05\x01\x03\x04\x03\x03\x04", // 诙
+ 0x8bda: "\x04\x05\x01\x03\x05\x05\x03\x04", // 诚
+ 0x8bdb: "\x04\x05\x03\x01\x01\x02\x03\x04", // 诛
+ 0x8bdc: "\x04\x05\x03\x01\x02\x01\x03\x05", // 诜
+ 0x8bdd: "\x04\x05\x03\x01\x02\x02\x05\x01", // 话
+ 0x8bde: "\x04\x05\x03\x02\x01\x05\x05\x04", // 诞
+ 0x8bdf: "\x04\x05\x03\x03\x01\x02\x05\x01", // 诟
+ 0x8be0: "\x04\x05\x03\x04\x01\x01\x02\x01", // 诠
+ 0x8be1: "\x04\x05\x03\x05\x01\x03\x05\x05", // 诡
+ 0x8be2: "\x04\x05\x03\x05\x02\x05\x01\x01", // 询
+ 0x8be3: "\x04\x05\x03\x05\x02\x05\x01\x01", // 诣
+ 0x8be4: "\x04\x05\x03\x05\x05\x01\x01\x02", // 诤
+ 0x8be5: "\x04\x05\x04\x01\x05\x03\x03\x04", // 该
+ 0x8be6: "\x04\x05\x04\x03\x01\x01\x01\x02", // 详
+ 0x8be7: "\x04\x05\x04\x04\x05\x03\x01\x05", // 诧
+ 0x8be8: "\x04\x05\x04\x05\x01\x05\x01\x02", // 诨
+ 0x8be9: "\x04\x05\x05\x04\x01\x05\x04\x01", // 诩
+ 0x8bea: "\x04\x05\x01\x01\x01\x03\x01\x02\x04", // 诪
+ 0x8beb: "\x04\x05\x01\x01\x03\x02\x05\x03\x04", // 诫
+ 0x8bec: "\x04\x05\x01\x02\x03\x04\x03\x04\x01", // 诬
+ 0x8bed: "\x04\x05\x01\x02\x05\x01\x02\x05\x01", // 语
+ 0x8bee: "\x04\x05\x02\x04\x03\x02\x05\x01\x01", // 诮
+ 0x8bef: "\x04\x05\x02\x05\x01\x01\x01\x03\x04", // 误
+ 0x8bf0: "\x04\x05\x03\x01\x02\x01\x02\x05\x01", // 诰
+ 0x8bf1: "\x04\x05\x03\x01\x02\x03\x04\x05\x03", // 诱
+ 0x8bf2: "\x04\x05\x03\x01\x05\x05\x04\x01\x04", // 诲
+ 0x8bf3: "\x04\x05\x03\x05\x03\x01\x01\x02\x01", // 诳
+ 0x8bf4: "\x04\x05\x04\x03\x02\x05\x01\x03\x05", // 说
+ 0x8bf5: "\x04\x05\x05\x04\x02\x05\x01\x01\x02", // 诵
+ 0x8bf6: "\x04\x05\x05\x04\x03\x01\x01\x03\x04", // 诶
+ 0x8bf7: "\x04\x05\x01\x01\x02\x01\x02\x05\x01\x01", // 请
+ 0x8bf8: "\x04\x05\x01\x02\x01\x03\x02\x05\x01\x01", // 诸
+ 0x8bf9: "\x04\x05\x01\x02\x02\x01\x01\x01\x05\x04", // 诹
+ 0x8bfa: "\x04\x05\x01\x02\x02\x01\x03\x02\x05\x01", // 诺
+ 0x8bfb: "\x04\x05\x01\x02\x05\x04\x04\x01\x03\x04", // 读
+ 0x8bfc: "\x04\x05\x01\x03\x05\x03\x03\x04\x03\x04", // 诼
+ 0x8bfd: "\x04\x05\x02\x01\x01\x01\x02\x01\x01\x01", // 诽
+ 0x8bfe: "\x04\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 课
+ 0x8bff: "\x04\x05\x03\x01\x02\x03\x04\x05\x03\x01", // 诿
+ 0x8c00: "\x04\x05\x03\x01\x02\x05\x01\x01\x03\x04", // 谀
+ 0x8c01: "\x04\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 谁
+ 0x8c02: "\x04\x05\x03\x04\x04\x05\x04\x05\x04\x04", // 谂
+ 0x8c03: "\x04\x05\x03\x05\x01\x02\x01\x02\x05\x01", // 调
+ 0x8c04: "\x04\x05\x03\x05\x03\x02\x01\x05\x01\x01", // 谄
+ 0x8c05: "\x04\x05\x04\x01\x02\x05\x01\x02\x03\x04", // 谅
+ 0x8c06: "\x04\x05\x04\x01\x02\x05\x01\x05\x02\x01", // 谆
+ 0x8c07: "\x04\x05\x04\x01\x03\x04\x03\x04\x01\x02", // 谇
+ 0x8c08: "\x04\x05\x04\x03\x03\x04\x04\x03\x03\x04", // 谈
+ 0x8c09: "\x04\x05\x04\x04\x05\x02\x05\x01\x01\x02", // 谉
+ 0x8c0a: "\x04\x05\x04\x04\x05\x02\x05\x01\x01\x01", // 谊
+ 0x8c0b: "\x04\x05\x01\x02\x02\x01\x01\x01\x02\x03\x04", // 谋
+ 0x8c0c: "\x04\x05\x01\x02\x02\x01\x01\x01\x03\x04\x05", // 谌
+ 0x8c0d: "\x04\x05\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 谍
+ 0x8c0e: "\x04\x05\x01\x02\x02\x04\x01\x05\x03\x02\x05", // 谎
+ 0x8c0f: "\x04\x05\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 谏
+ 0x8c10: "\x04\x05\x01\x05\x03\x05\x03\x02\x05\x01\x01", // 谐
+ 0x8c11: "\x04\x05\x02\x01\x05\x03\x01\x05\x01\x05\x01", // 谑
+ 0x8c12: "\x04\x05\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 谒
+ 0x8c13: "\x04\x05\x02\x05\x01\x02\x01\x02\x05\x01\x01", // 谓
+ 0x8c14: "\x04\x05\x02\x05\x01\x02\x05\x01\x01\x01\x05", // 谔
+ 0x8c15: "\x04\x05\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 谕
+ 0x8c16: "\x04\x05\x03\x04\x04\x03\x01\x01\x03\x05\x04", // 谖
+ 0x8c17: "\x04\x05\x03\x05\x02\x05\x01\x03\x05\x04\x04", // 谗
+ 0x8c18: "\x04\x05\x04\x01\x03\x05\x03\x04\x02\x05\x01", // 谘
+ 0x8c19: "\x04\x05\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 谙
+ 0x8c1a: "\x04\x05\x04\x01\x04\x03\x01\x03\x03\x03\x03", // 谚
+ 0x8c1b: "\x04\x05\x04\x01\x04\x03\x04\x05\x02\x05\x02", // 谛
+ 0x8c1c: "\x04\x05\x04\x03\x01\x02\x03\x04\x04\x05\x04", // 谜
+ 0x8c1d: "\x04\x05\x04\x05\x01\x03\x02\x05\x01\x02\x02", // 谝
+ 0x8c1e: "\x04\x05\x05\x02\x01\x03\x04\x02\x05\x01\x01", // 谞
+ 0x8c1f: "\x04\x05\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 谟
+ 0x8c20: "\x04\x05\x02\x04\x03\x04\x05\x02\x05\x01\x03\x05", // 谠
+ 0x8c21: "\x04\x05\x02\x05\x01\x02\x01\x03\x04\x03\x05\x04", // 谡
+ 0x8c22: "\x04\x05\x03\x02\x05\x01\x01\x01\x03\x01\x02\x04", // 谢
+ 0x8c23: "\x04\x05\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02", // 谣
+ 0x8c24: "\x04\x05\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03", // 谤
+ 0x8c25: "\x04\x05\x04\x03\x01\x03\x04\x02\x05\x02\x02\x01", // 谥
+ 0x8c26: "\x04\x05\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 谦
+ 0x8c27: "\x04\x05\x04\x05\x04\x03\x04\x02\x05\x02\x02\x01", // 谧
+ 0x8c28: "\x04\x05\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01", // 谨
+ 0x8c29: "\x04\x05\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 谩
+ 0x8c2a: "\x04\x05\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01", // 谪
+ 0x8c2b: "\x04\x05\x04\x03\x01\x02\x05\x01\x01\x02\x02\x05\x03", // 谫
+ 0x8c2c: "\x04\x05\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 谬
+ 0x8c2d: "\x04\x05\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 谭
+ 0x8c2e: "\x04\x05\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x01", // 谮
+ 0x8c2f: "\x04\x05\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 谯
+ 0x8c30: "\x04\x05\x04\x02\x05\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 谰
+ 0x8c31: "\x04\x05\x04\x03\x01\x02\x02\x04\x03\x01\x02\x05\x01\x01", // 谱
+ 0x8c32: "\x04\x05\x05\x04\x05\x02\x03\x02\x05\x03\x04\x02\x05\x01", // 谲
+ 0x8c33: "\x04\x05\x01\x02\x02\x05\x04\x03\x01\x01\x02\x01\x03\x04\x04", // 谳
+ 0x8c34: "\x04\x05\x02\x05\x01\x02\x01\x02\x05\x01\x05\x01\x04\x05\x04", // 谴
+ 0x8c35: "\x04\x05\x03\x05\x01\x03\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 谵
+ 0x8c36: "\x04\x05\x03\x04\x03\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 谶
+ 0x8c37: "\x03\x04\x03\x04\x02\x05\x01", // 谷
+ 0x8c38: "\x03\x01\x03\x03\x04\x03\x04\x02\x05\x01", // 谸
+ 0x8c39: "\x03\x04\x03\x04\x02\x05\x01\x01\x03\x05\x04", // 谹
+ 0x8c3a: "\x03\x04\x03\x04\x02\x05\x01\x01\x05\x02\x03", // 谺
+ 0x8c3b: "\x03\x04\x03\x04\x02\x05\x01\x05\x01\x01\x02", // 谻
+ 0x8c3c: "\x03\x04\x03\x04\x02\x05\x01\x01\x02\x02\x01\x03\x04", // 谼
+ 0x8c3d: "\x03\x04\x03\x04\x02\x05\x01\x03\x04\x04\x05\x02\x05\x01", // 谽
+ 0x8c3e: "\x03\x04\x03\x04\x02\x05\x01\x04\x04\x05\x03\x04\x01\x02\x01", // 谾
+ 0x8c3f: "\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04\x03\x04\x03\x04\x02\x05\x01", // 谿
+ 0x8c40: "\x03\x04\x03\x04\x02\x05\x01\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04", // 豀
+ 0x8c41: "\x04\x04\x05\x01\x01\x01\x02\x02\x05\x01\x03\x04\x03\x04\x02\x05\x01", // 豁
+ 0x8c42: "\x03\x04\x03\x04\x02\x05\x01\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 豂
+ 0x8c43: "\x03\x04\x03\x04\x02\x05\x01\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 豃
+ 0x8c44: "\x03\x04\x03\x04\x02\x05\x01\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 豄
+ 0x8c45: "\x03\x04\x03\x04\x02\x05\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01\x01\x01", // 豅
+ 0x8c46: "\x01\x02\x05\x01\x04\x03\x01", // 豆
+ 0x8c47: "\x01\x02\x05\x01\x04\x03\x01\x01\x02\x01", // 豇
+ 0x8c48: "\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 豈
+ 0x8c49: "\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04", // 豉
+ 0x8c4a: "\x02\x05\x01\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01", // 豊
+ 0x8c4b: "\x03\x05\x04\x04\x05\x04\x01\x02\x05\x01\x04\x03\x01", // 豋
+ 0x8c4c: "\x01\x02\x05\x01\x04\x03\x01\x04\x04\x05\x03\x05\x04\x05\x05", // 豌
+ 0x8c4d: "\x01\x02\x05\x01\x04\x03\x01\x03\x02\x05\x01\x01\x03\x01\x02", // 豍
+ 0x8c4e: "\x01\x02\x05\x01\x02\x05\x05\x04\x01\x02\x05\x01\x04\x03\x01", // 豎
+ 0x8c4f: "\x01\x02\x05\x01\x04\x03\x01\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 豏
+ 0x8c50: "\x01\x01\x01\x02\x02\x01\x01\x01\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 豐
+ 0x8c51: "\x02\x05\x01\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01\x04\x03\x05\x01\x05\x02\x03", // 豑
+ 0x8c52: "\x01\x01\x01\x02\x02\x01\x01\x01\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01\x04\x03\x05\x01\x05\x02\x03", // 豒
+ 0x8c53: "\x01\x01\x01\x02\x02\x01\x01\x01\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01\x01\x03\x04\x04\x02\x05\x02\x02\x01", // 豓
+ 0x8c54: "\x01\x01\x01\x02\x02\x01\x01\x01\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 豔
+ 0x8c55: "\x01\x03\x05\x03\x03\x03\x04", // 豕
+ 0x8c56: "\x01\x03\x05\x03\x03\x04\x03\x04", // 豖
+ 0x8c57: "\x01\x03\x05\x01\x03\x05\x03\x03\x03\x04", // 豗
+ 0x8c58: "\x01\x03\x05\x03\x03\x03\x04\x01\x05\x02\x05", // 豘
+ 0x8c59: "\x04\x01\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 豙
+ 0x8c5a: "\x03\x05\x01\x01\x01\x03\x05\x03\x03\x03\x04", // 豚
+ 0x8c5b: "\x01\x03\x05\x03\x03\x03\x04\x03\x05\x05\x04", // 豛
+ 0x8c5c: "\x01\x03\x05\x03\x03\x03\x04\x01\x01\x03\x02", // 豜
+ 0x8c5d: "\x01\x03\x05\x03\x03\x03\x04\x05\x02\x01\x05", // 豝
+ 0x8c5e: "\x01\x03\x05\x03\x03\x03\x04\x03\x05\x02\x05\x01", // 豞
+ 0x8c5f: "\x01\x03\x05\x03\x03\x03\x04\x04\x05\x01\x03\x05", // 豟
+ 0x8c60: "\x01\x03\x05\x03\x03\x03\x04\x02\x05\x01\x01\x01", // 豠
+ 0x8c61: "\x03\x05\x02\x05\x01\x03\x05\x03\x03\x03\x04", // 象
+ 0x8c62: "\x04\x03\x01\x01\x03\x04\x01\x03\x05\x03\x03\x03\x04", // 豢
+ 0x8c63: "\x01\x03\x05\x03\x03\x03\x04\x01\x01\x03\x01\x01\x02", // 豣
+ 0x8c64: "\x01\x03\x05\x03\x03\x03\x04\x05\x01\x01\x05\x03\x04", // 豤
+ 0x8c65: "\x01\x03\x05\x03\x03\x03\x04\x04\x01\x05\x03\x03\x04", // 豥
+ 0x8c66: "\x02\x01\x05\x03\x01\x05\x01\x03\x05\x03\x03\x03\x04", // 豦
+ 0x8c67: "\x01\x03\x05\x03\x03\x03\x04\x01\x02\x05\x01\x01\x02\x04", // 豧
+ 0x8c68: "\x01\x03\x05\x03\x03\x03\x04\x03\x04\x01\x03\x02\x05\x02", // 豨
+ 0x8c69: "\x01\x03\x05\x03\x03\x03\x04\x01\x03\x05\x03\x03\x03\x04", // 豩
+ 0x8c6a: "\x04\x01\x02\x05\x01\x04\x05\x01\x03\x05\x03\x03\x03\x04", // 豪
+ 0x8c6b: "\x05\x04\x05\x02\x03\x05\x02\x05\x01\x03\x05\x03\x03\x03\x04", // 豫
+ 0x8c6c: "\x01\x03\x05\x03\x03\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01", // 豬
+ 0x8c6d: "\x01\x03\x05\x03\x03\x03\x04\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 豭
+ 0x8c6e: "\x01\x03\x05\x03\x03\x03\x04\x01\x02\x01\x02\x02\x02\x05\x03\x04", // 豮
+ 0x8c6f: "\x01\x03\x05\x03\x03\x03\x04\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04", // 豯
+ 0x8c70: "\x01\x02\x01\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04\x03\x05\x05\x04", // 豰
+ 0x8c71: "\x01\x03\x05\x03\x03\x03\x04\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 豱
+ 0x8c72: "\x01\x03\x05\x03\x03\x03\x04\x01\x03\x03\x02\x05\x01\x01\x02\x03\x04", // 豲
+ 0x8c73: "\x01\x03\x05\x03\x03\x03\x04\x02\x01\x03\x05\x03\x03\x03\x04\x05\x02", // 豳
+ 0x8c74: "\x01\x03\x05\x03\x03\x03\x04\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01", // 豴
+ 0x8c75: "\x01\x03\x05\x03\x03\x03\x04\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04", // 豵
+ 0x8c76: "\x01\x03\x05\x03\x03\x03\x04\x01\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 豶
+ 0x8c77: "\x01\x03\x05\x03\x03\x03\x04\x01\x02\x01\x04\x05\x01\x02\x05\x01\x04\x03\x01", // 豷
+ 0x8c78: "\x03\x04\x04\x03\x05\x03\x03", // 豸
+ 0x8c79: "\x03\x04\x04\x03\x05\x03\x03\x03\x05\x04", // 豹
+ 0x8c7a: "\x03\x04\x04\x03\x05\x03\x03\x01\x02\x03", // 豺
+ 0x8c7b: "\x03\x04\x04\x03\x05\x03\x03\x01\x01\x02", // 豻
+ 0x8c7c: "\x03\x04\x04\x03\x05\x03\x03\x01\x05\x03\x05", // 豼
+ 0x8c7d: "\x03\x04\x04\x03\x05\x03\x03\x02\x05\x03\x04", // 豽
+ 0x8c7e: "\x03\x04\x04\x03\x05\x03\x03\x01\x03\x02\x04\x01", // 豾
+ 0x8c7f: "\x03\x04\x04\x03\x05\x03\x03\x03\x05\x02\x05\x01", // 豿
+ 0x8c80: "\x03\x04\x04\x03\x05\x03\x03\x05\x02\x02\x05\x02", // 貀
+ 0x8c81: "\x03\x04\x04\x03\x05\x03\x03\x04\x04\x05\x03\x04", // 貁
+ 0x8c82: "\x03\x04\x04\x03\x05\x03\x03\x05\x03\x02\x05\x01", // 貂
+ 0x8c83: "\x03\x04\x04\x03\x05\x03\x03\x03\x02\x05\x01\x01", // 貃
+ 0x8c84: "\x03\x04\x04\x03\x05\x03\x03\x05\x01\x01\x01\x01\x02", // 貄
+ 0x8c85: "\x03\x04\x04\x03\x05\x03\x03\x03\x02\x01\x02\x03\x04", // 貅
+ 0x8c86: "\x03\x04\x04\x03\x05\x03\x03\x01\x02\x05\x01\x01\x01", // 貆
+ 0x8c87: "\x03\x04\x04\x03\x05\x03\x03\x05\x01\x01\x05\x03\x04", // 貇
+ 0x8c88: "\x03\x04\x04\x03\x05\x03\x03\x03\x03\x05\x04\x01\x04", // 貈
+ 0x8c89: "\x03\x04\x04\x03\x05\x03\x03\x03\x05\x04\x02\x05\x01", // 貉
+ 0x8c8a: "\x03\x04\x04\x03\x05\x03\x03\x01\x03\x02\x05\x01\x01", // 貊
+ 0x8c8b: "\x03\x04\x04\x03\x05\x03\x03\x02\x05\x01\x01\x01\x01\x02", // 貋
+ 0x8c8c: "\x03\x04\x04\x03\x05\x03\x03\x03\x02\x05\x01\x01\x03\x05", // 貌
+ 0x8c8d: "\x03\x04\x04\x03\x05\x03\x03\x02\x05\x01\x01\x02\x01\x01", // 貍
+ 0x8c8e: "\x03\x04\x04\x03\x05\x03\x03\x03\x02\x01\x05\x01\x01\x03\x05", // 貎
+ 0x8c8f: "\x03\x04\x04\x03\x05\x03\x03\x03\x02\x05\x01\x01\x03\x01\x02", // 貏
+ 0x8c90: "\x03\x04\x04\x03\x05\x03\x03\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 貐
+ 0x8c91: "\x03\x04\x04\x03\x05\x03\x03\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 貑
+ 0x8c92: "\x03\x04\x04\x03\x05\x03\x03\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 貒
+ 0x8c93: "\x03\x04\x04\x03\x05\x03\x03\x01\x02\x02\x02\x05\x01\x02\x01", // 貓
+ 0x8c94: "\x03\x04\x04\x03\x05\x03\x03\x03\x02\x05\x03\x04\x01\x01\x05\x03\x05", // 貔
+ 0x8c95: "\x03\x04\x04\x03\x05\x03\x03\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04", // 貕
+ 0x8c96: "\x03\x04\x04\x03\x05\x03\x03\x04\x03\x01\x03\x04\x02\x05\x02\x02\x01", // 貖
+ 0x8c97: "\x03\x04\x04\x03\x05\x03\x03\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 貗
+ 0x8c98: "\x03\x04\x04\x03\x05\x03\x03\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 貘
+ 0x8c99: "\x03\x04\x04\x03\x05\x03\x03\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 貙
+ 0x8c9a: "\x03\x04\x04\x03\x05\x03\x03\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 貚
+ 0x8c9b: "\x03\x04\x04\x03\x05\x03\x03\x01\x02\x02\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 貛
+ 0x8c9c: "\x03\x04\x04\x03\x05\x03\x03\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 貜
+ 0x8c9d: "\x02\x05\x01\x01\x01\x03\x04", // 貝
+ 0x8c9e: "\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 貞
+ 0x8c9f: "\x05\x04\x02\x05\x01\x01\x01\x03\x04", // 貟
+ 0x8ca0: "\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 負
+ 0x8ca1: "\x02\x05\x01\x01\x01\x03\x04\x01\x02\x03", // 財
+ 0x8ca2: "\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 貢
+ 0x8ca3: "\x01\x05\x04\x02\x05\x01\x01\x01\x03\x04", // 貣
+ 0x8ca4: "\x02\x05\x01\x01\x01\x03\x04\x05\x02\x05", // 貤
+ 0x8ca5: "\x02\x05\x01\x01\x01\x03\x04\x04\x01\x03\x05", // 貥
+ 0x8ca6: "\x02\x05\x01\x01\x01\x03\x04\x01\x01\x03\x05", // 貦
+ 0x8ca7: "\x03\x04\x05\x03\x02\x05\x01\x01\x01\x03\x04", // 貧
+ 0x8ca8: "\x03\x02\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 貨
+ 0x8ca9: "\x02\x05\x01\x01\x01\x03\x04\x03\x03\x05\x04", // 販
+ 0x8caa: "\x03\x04\x04\x05\x02\x05\x01\x01\x01\x03\x04", // 貪
+ 0x8cab: "\x05\x05\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 貫
+ 0x8cac: "\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 責
+ 0x8cad: "\x03\x03\x01\x02\x02\x05\x01\x01\x01\x03\x04", // 貭
+ 0x8cae: "\x01\x01\x02\x05\x01\x01\x01\x03\x04\x05\x04", // 貮
+ 0x8caf: "\x02\x05\x01\x01\x01\x03\x04\x04\x04\x05\x01\x02", // 貯
+ 0x8cb0: "\x01\x02\x02\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 貰
+ 0x8cb1: "\x02\x05\x01\x01\x01\x03\x04\x05\x03\x02\x05\x04", // 貱
+ 0x8cb2: "\x02\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 貲
+ 0x8cb3: "\x01\x01\x01\x02\x05\x01\x01\x01\x03\x04\x05\x04", // 貳
+ 0x8cb4: "\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 貴
+ 0x8cb5: "\x05\x04\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 貵
+ 0x8cb6: "\x02\x05\x01\x01\x01\x03\x04\x03\x04\x05\x04", // 貶
+ 0x8cb7: "\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 買
+ 0x8cb8: "\x03\x02\x01\x05\x04\x02\x05\x01\x01\x01\x03\x04", // 貸
+ 0x8cb9: "\x02\x05\x01\x01\x01\x03\x04\x03\x01\x01\x02\x01", // 貹
+ 0x8cba: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x03\x05", // 貺
+ 0x8cbb: "\x05\x01\x05\x03\x02\x02\x05\x01\x01\x01\x03\x04", // 費
+ 0x8cbc: "\x02\x05\x01\x01\x01\x03\x04\x02\x01\x02\x05\x01", // 貼
+ 0x8cbd: "\x02\x05\x01\x01\x01\x03\x04\x05\x04\x02\x05\x01", // 貽
+ 0x8cbe: "\x02\x05\x01\x01\x01\x03\x04\x03\x05\x01\x05\x04", // 貾
+ 0x8cbf: "\x03\x05\x04\x05\x03\x02\x05\x01\x01\x01\x03\x04", // 貿
+ 0x8cc0: "\x05\x03\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 賀
+ 0x8cc1: "\x01\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 賁
+ 0x8cc2: "\x02\x05\x01\x01\x01\x03\x04\x03\x05\x04\x02\x05\x01", // 賂
+ 0x8cc3: "\x03\x02\x03\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 賃
+ 0x8cc4: "\x02\x05\x01\x01\x01\x03\x04\x01\x03\x02\x05\x01\x01", // 賄
+ 0x8cc5: "\x02\x05\x01\x01\x01\x03\x04\x04\x01\x05\x03\x03\x04", // 賅
+ 0x8cc6: "\x02\x05\x01\x01\x01\x03\x04\x04\x03\x01\x01\x03\x02", // 賆
+ 0x8cc7: "\x04\x01\x03\x05\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 資
+ 0x8cc8: "\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 賈
+ 0x8cc9: "\x02\x05\x01\x01\x01\x03\x04\x03\x02\x05\x02\x02\x01", // 賉
+ 0x8cca: "\x02\x05\x01\x01\x01\x03\x04\x01\x01\x03\x05\x03\x04", // 賊
+ 0x8ccb: "\x02\x05\x01\x01\x01\x03\x04\x04\x01\x03\x04\x03\x04", // 賋
+ 0x8ccc: "\x04\x01\x05\x03\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 賌
+ 0x8ccd: "\x02\x05\x01\x01\x01\x03\x04\x04\x01\x03\x01\x02\x01", // 賍
+ 0x8cce: "\x02\x05\x01\x01\x01\x03\x04\x01\x01\x01\x05\x03\x04", // 賎
+ 0x8ccf: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 賏
+ 0x8cd0: "\x02\x05\x01\x01\x01\x03\x04\x05\x04\x03\x04\x03\x05\x04", // 賐
+ 0x8cd1: "\x02\x05\x01\x01\x01\x03\x04\x01\x03\x01\x01\x05\x03\x04", // 賑
+ 0x8cd2: "\x02\x05\x01\x01\x01\x03\x04\x03\x04\x01\x01\x02\x03\x04", // 賒
+ 0x8cd3: "\x04\x04\x05\x01\x02\x03\x03\x02\x05\x01\x01\x01\x03\x04", // 賓
+ 0x8cd4: "\x04\x04\x05\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 賔
+ 0x8cd5: "\x02\x05\x01\x01\x01\x03\x04\x01\x02\x04\x01\x03\x04\x04", // 賕
+ 0x8cd6: "\x02\x05\x01\x01\x01\x03\x04\x03\x04\x01\x01\x02\x03\x04", // 賖
+ 0x8cd7: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02", // 賗
+ 0x8cd8: "\x02\x05\x01\x01\x01\x03\x04\x04\x01\x03\x01\x02\x01\x04", // 賘
+ 0x8cd9: "\x02\x05\x01\x01\x01\x03\x04\x03\x05\x01\x02\x01\x02\x05\x01", // 賙
+ 0x8cda: "\x01\x03\x04\x03\x04\x02\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 賚
+ 0x8cdb: "\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 賛
+ 0x8cdc: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x03\x05\x03\x03", // 賜
+ 0x8cdd: "\x02\x05\x01\x01\x01\x03\x04\x04\x05\x03\x04\x01\x02\x03\x04", // 賝
+ 0x8cde: "\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 賞
+ 0x8cdf: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x02\x02\x01\x03\x04", // 賟
+ 0x8ce0: "\x02\x05\x01\x01\x01\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01", // 賠
+ 0x8ce1: "\x04\x01\x03\x05\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 賡
+ 0x8ce2: "\x01\x02\x05\x01\x02\x05\x05\x04\x02\x05\x01\x01\x01\x03\x04", // 賢
+ 0x8ce3: "\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 賣
+ 0x8ce4: "\x02\x05\x01\x01\x01\x03\x04\x01\x05\x03\x04\x01\x05\x03\x04", // 賤
+ 0x8ce5: "\x02\x05\x01\x01\x01\x03\x04\x04\x01\x03\x04\x03\x04\x01\x02", // 賥
+ 0x8ce6: "\x02\x05\x01\x01\x01\x03\x04\x01\x01\x02\x01\x02\x01\x05\x04", // 賦
+ 0x8ce7: "\x02\x05\x01\x01\x01\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04", // 賧
+ 0x8ce8: "\x04\x04\x05\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 賨
+ 0x8ce9: "\x02\x05\x01\x01\x01\x03\x04\x04\x04\x05\x01\x01\x02\x03\x04", // 賩
+ 0x8cea: "\x03\x03\x01\x02\x03\x03\x01\x02\x02\x05\x01\x01\x01\x03\x04", // 質
+ 0x8ceb: "\x01\x02\x03\x04\x03\x04\x04\x05\x02\x05\x01\x01\x01\x03\x04", // 賫
+ 0x8cec: "\x02\x05\x01\x01\x01\x03\x04\x01\x02\x01\x01\x01\x05\x03\x04", // 賬
+ 0x8ced: "\x02\x05\x01\x01\x01\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01", // 賭
+ 0x8cee: "\x05\x01\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01\x01\x03\x04", // 賮
+ 0x8cef: "\x02\x05\x01\x01\x01\x03\x04\x03\x05\x02\x05\x01\x01\x05\x02\x01", // 賯
+ 0x8cf0: "\x02\x05\x01\x01\x01\x03\x04\x01\x01\x01\x03\x04\x02\x05\x01\x01", // 賰
+ 0x8cf1: "\x02\x05\x01\x01\x01\x03\x04\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 賱
+ 0x8cf2: "\x03\x02\x02\x05\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 賲
+ 0x8cf3: "\x02\x05\x01\x01\x01\x03\x04\x01\x02\x01\x02\x05\x01\x05\x03\x04", // 賳
+ 0x8cf4: "\x01\x02\x05\x01\x02\x03\x04\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 賴
+ 0x8cf5: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 賵
+ 0x8cf6: "\x02\x05\x01\x01\x01\x03\x04\x03\x04\x04\x05\x01\x01\x03\x02\x05\x01", // 賶
+ 0x8cf7: "\x01\x02\x02\x05\x01\x02\x05\x01\x04\x05\x02\x05\x01\x01\x01\x03\x04", // 賷
+ 0x8cf8: "\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 賸
+ 0x8cf9: "\x02\x05\x01\x01\x01\x03\x04\x04\x03\x01\x03\x04\x02\x05\x02\x02\x01", // 賹
+ 0x8cfa: "\x02\x05\x01\x01\x01\x03\x04\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 賺
+ 0x8cfb: "\x02\x05\x01\x01\x01\x03\x04\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 賻
+ 0x8cfc: "\x02\x05\x01\x01\x01\x03\x04\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01", // 購
+ 0x8cfd: "\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 賽
+ 0x8cfe: "\x01\x02\x02\x05\x01\x02\x05\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 賾
+ 0x8cff: "\x02\x05\x01\x01\x01\x03\x04\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 賿
+ 0x8d00: "\x01\x03\x01\x01\x03\x04\x05\x03\x05\x05\x04\x02\x05\x01\x01\x01\x03\x04", // 贀
+ 0x8d01: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x03\x01\x03\x04", // 贁
+ 0x8d02: "\x02\x05\x01\x01\x01\x03\x04\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 贂
+ 0x8d03: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x04\x05\x04\x04", // 贃
+ 0x8d04: "\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04\x02\x05\x01\x01\x01\x03\x04", // 贄
+ 0x8d05: "\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 贅
+ 0x8d06: "\x02\x05\x01\x01\x01\x03\x04\x01\x03\x04\x04\x01\x03\x04\x04\x01\x03\x04\x04", // 贆
+ 0x8d07: "\x04\x01\x03\x04\x01\x01\x02\x01\x02\x01\x05\x04\x02\x05\x01\x01\x01\x03\x04", // 贇
+ 0x8d08: "\x02\x05\x01\x01\x01\x03\x04\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 贈
+ 0x8d09: "\x02\x05\x01\x01\x01\x03\x04\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 贉
+ 0x8d0a: "\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 贊
+ 0x8d0b: "\x01\x03\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 贋
+ 0x8d0c: "\x02\x05\x01\x01\x01\x03\x04\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 贌
+ 0x8d0d: "\x02\x05\x01\x01\x01\x03\x04\x03\x05\x01\x03\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 贍
+ 0x8d0e: "\x02\x05\x01\x01\x01\x03\x04\x01\x02\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 贎
+ 0x8d0f: "\x04\x01\x05\x02\x05\x01\x03\x05\x01\x01\x02\x05\x01\x01\x01\x03\x04\x03\x05\x04", // 贏
+ 0x8d10: "\x02\x05\x01\x01\x01\x03\x04\x05\x01\x01\x02\x01\x04\x04\x04\x04\x02\x05\x02\x02\x01", // 贐
+ 0x8d11: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 贑
+ 0x8d12: "\x01\x02\x05\x01\x02\x05\x02\x05\x01\x02\x04\x05\x04\x04\x02\x05\x01\x01\x01\x03\x04", // 贒
+ 0x8d13: "\x02\x05\x01\x01\x01\x03\x04\x01\x03\x05\x01\x03\x01\x02\x05\x01\x02\x05\x05\x03\x04", // 贓
+ 0x8d14: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 贔
+ 0x8d15: "\x03\x05\x04\x03\x05\x02\x04\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 贕
+ 0x8d16: "\x02\x05\x01\x01\x01\x03\x04\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 贖
+ 0x8d17: "\x01\x03\x03\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x02\x05\x01\x01\x01\x03\x04", // 贗
+ 0x8d18: "\x02\x05\x01\x01\x01\x03\x04\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 贘
+ 0x8d19: "\x02\x01\x05\x03\x01\x05\x03\x05\x02\x01\x05\x03\x01\x05\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 贙
+ 0x8d1a: "\x02\x05\x01\x01\x01\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x05\x01\x05\x01\x01\x01", // 贚
+ 0x8d1b: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x03\x05\x04\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 贛
+ 0x8d1c: "\x02\x05\x01\x01\x01\x03\x04\x01\x02\x02\x01\x03\x05\x01\x03\x01\x02\x05\x01\x02\x05\x05\x03\x04", // 贜
+ 0x8d1d: "\x02\x05\x03\x04", // 贝
+ 0x8d1e: "\x02\x01\x02\x05\x03\x04", // 贞
+ 0x8d1f: "\x03\x05\x02\x05\x03\x04", // 负
+ 0x8d20: "\x05\x04\x02\x05\x03\x04", // 贠
+ 0x8d21: "\x01\x02\x01\x02\x05\x03\x04", // 贡
+ 0x8d22: "\x02\x05\x03\x04\x01\x02\x03", // 财
+ 0x8d23: "\x01\x01\x02\x01\x02\x05\x03\x04", // 责
+ 0x8d24: "\x02\x02\x05\x04\x02\x05\x03\x04", // 贤
+ 0x8d25: "\x02\x05\x03\x04\x03\x01\x03\x04", // 败
+ 0x8d26: "\x02\x05\x03\x04\x03\x01\x05\x04", // 账
+ 0x8d27: "\x03\x02\x03\x05\x02\x05\x03\x04", // 货
+ 0x8d28: "\x03\x03\x01\x02\x02\x05\x03\x04", // 质
+ 0x8d29: "\x02\x05\x03\x04\x03\x03\x05\x04", // 贩
+ 0x8d2a: "\x03\x04\x04\x05\x02\x05\x03\x04", // 贪
+ 0x8d2b: "\x03\x04\x05\x03\x02\x05\x03\x04", // 贫
+ 0x8d2c: "\x02\x05\x03\x04\x03\x04\x05\x04", // 贬
+ 0x8d2d: "\x02\x05\x03\x04\x03\x05\x05\x04", // 购
+ 0x8d2e: "\x02\x05\x03\x04\x04\x04\x05\x01", // 贮
+ 0x8d2f: "\x05\x05\x02\x01\x02\x05\x03\x04", // 贯
+ 0x8d30: "\x01\x01\x01\x02\x05\x03\x04\x05\x04", // 贰
+ 0x8d31: "\x02\x05\x03\x04\x01\x01\x05\x03\x04", // 贱
+ 0x8d32: "\x01\x02\x01\x02\x02\x02\x05\x03\x04", // 贲
+ 0x8d33: "\x01\x02\x02\x01\x05\x02\x05\x03\x04", // 贳
+ 0x8d34: "\x02\x05\x03\x04\x02\x01\x02\x05\x01", // 贴
+ 0x8d35: "\x02\x05\x01\x02\x01\x02\x05\x03\x04", // 贵
+ 0x8d36: "\x02\x05\x03\x04\x02\x05\x01\x03\x05", // 贶
+ 0x8d37: "\x03\x02\x01\x05\x04\x02\x05\x03\x04", // 贷
+ 0x8d38: "\x03\x05\x04\x05\x03\x02\x05\x03\x04", // 贸
+ 0x8d39: "\x05\x01\x05\x03\x02\x02\x05\x03\x04", // 费
+ 0x8d3a: "\x05\x03\x02\x05\x01\x02\x05\x03\x04", // 贺
+ 0x8d3b: "\x02\x05\x03\x04\x05\x04\x02\x05\x01", // 贻
+ 0x8d3c: "\x02\x05\x03\x04\x01\x01\x03\x05\x03\x04", // 贼
+ 0x8d3d: "\x01\x02\x01\x03\x05\x04\x02\x05\x03\x04", // 贽
+ 0x8d3e: "\x01\x02\x05\x02\x02\x01\x02\x05\x03\x04", // 贾
+ 0x8d3f: "\x02\x05\x03\x04\x01\x03\x02\x05\x01\x01", // 贿
+ 0x8d40: "\x02\x01\x02\x01\x03\x05\x02\x05\x03\x04", // 赀
+ 0x8d41: "\x03\x02\x03\x01\x02\x01\x02\x05\x03\x04", // 赁
+ 0x8d42: "\x02\x05\x03\x04\x03\x05\x04\x02\x05\x01", // 赂
+ 0x8d43: "\x02\x05\x03\x04\x04\x01\x03\x01\x02\x01", // 赃
+ 0x8d44: "\x04\x01\x03\x05\x03\x04\x02\x05\x03\x04", // 资
+ 0x8d45: "\x02\x05\x03\x04\x04\x01\x05\x03\x03\x04", // 赅
+ 0x8d46: "\x02\x05\x03\x04\x05\x01\x03\x04\x04\x04", // 赆
+ 0x8d47: "\x02\x05\x03\x04\x01\x02\x04\x01\x03\x04\x04", // 赇
+ 0x8d48: "\x02\x05\x03\x04\x01\x03\x01\x01\x05\x03\x04", // 赈
+ 0x8d49: "\x01\x04\x03\x01\x02\x03\x04\x02\x05\x03\x04", // 赉
+ 0x8d4a: "\x02\x05\x03\x04\x03\x04\x01\x01\x02\x03\x04", // 赊
+ 0x8d4b: "\x02\x05\x03\x04\x01\x01\x02\x01\x02\x01\x05\x04", // 赋
+ 0x8d4c: "\x02\x05\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01", // 赌
+ 0x8d4d: "\x01\x02\x03\x04\x03\x04\x04\x05\x02\x05\x03\x04", // 赍
+ 0x8d4e: "\x02\x05\x03\x04\x01\x02\x05\x04\x04\x01\x03\x04", // 赎
+ 0x8d4f: "\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x03\x04", // 赏
+ 0x8d50: "\x02\x05\x03\x04\x02\x05\x01\x01\x03\x05\x03\x03", // 赐
+ 0x8d51: "\x02\x05\x03\x04\x02\x05\x03\x04\x02\x05\x03\x04", // 赑
+ 0x8d52: "\x02\x05\x03\x04\x03\x05\x01\x02\x01\x02\x05\x01", // 赒
+ 0x8d53: "\x04\x01\x03\x05\x01\x01\x03\x04\x02\x05\x03\x04", // 赓
+ 0x8d54: "\x02\x05\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01", // 赔
+ 0x8d55: "\x02\x05\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04", // 赕
+ 0x8d56: "\x01\x02\x05\x01\x02\x03\x04\x03\x05\x02\x05\x03\x04", // 赖
+ 0x8d57: "\x02\x05\x03\x04\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 赗
+ 0x8d58: "\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04\x02\x05\x03\x04", // 赘
+ 0x8d59: "\x02\x05\x03\x04\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 赙
+ 0x8d5a: "\x02\x05\x03\x04\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 赚
+ 0x8d5b: "\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x02\x05\x03\x04", // 赛
+ 0x8d5c: "\x01\x02\x02\x05\x01\x02\x05\x01\x01\x02\x01\x02\x05\x03\x04", // 赜
+ 0x8d5d: "\x01\x03\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x03\x04", // 赝
+ 0x8d5e: "\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x03\x04", // 赞
+ 0x8d5f: "\x04\x01\x03\x04\x01\x01\x02\x01\x02\x01\x05\x04\x02\x05\x03\x04", // 赟
+ 0x8d60: "\x02\x05\x03\x04\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 赠
+ 0x8d61: "\x02\x05\x03\x04\x03\x05\x01\x03\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 赡
+ 0x8d62: "\x04\x01\x05\x02\x05\x01\x03\x05\x01\x01\x02\x05\x03\x04\x03\x05\x04", // 赢
+ 0x8d63: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x03\x05\x04\x01\x02\x01\x02\x05\x03\x04", // 赣
+ 0x8d64: "\x01\x02\x01\x03\x02\x03\x04", // 赤
+ 0x8d65: "\x01\x02\x01\x03\x02\x03\x04\x03\x05\x03\x04", // 赥
+ 0x8d66: "\x01\x02\x01\x03\x02\x03\x04\x03\x01\x03\x04", // 赦
+ 0x8d67: "\x01\x02\x01\x03\x02\x03\x04\x05\x02\x05\x04", // 赧
+ 0x8d68: "\x01\x02\x01\x03\x02\x03\x04\x02\x05\x01\x02\x01\x04", // 赨
+ 0x8d69: "\x01\x02\x01\x03\x02\x03\x04\x03\x05\x05\x02\x01\x05", // 赩
+ 0x8d6a: "\x01\x02\x01\x03\x02\x03\x04\x02\x01\x02\x05\x03\x04", // 赪
+ 0x8d6b: "\x01\x02\x01\x03\x02\x03\x04\x01\x02\x01\x03\x02\x03\x04", // 赫
+ 0x8d6c: "\x01\x02\x01\x03\x02\x03\x04\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 赬
+ 0x8d6d: "\x01\x02\x01\x03\x02\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01", // 赭
+ 0x8d6e: "\x01\x02\x01\x03\x02\x03\x04\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 赮
+ 0x8d6f: "\x01\x02\x01\x03\x02\x03\x04\x04\x01\x03\x05\x01\x01\x02\x02\x05\x01", // 赯
+ 0x8d70: "\x01\x02\x01\x02\x01\x03\x04", // 走
+ 0x8d71: "\x01\x02\x01\x04\x03\x04", // 赱
+ 0x8d72: "\x01\x02\x01\x02\x01\x03\x04\x05\x03", // 赲
+ 0x8d73: "\x01\x02\x01\x02\x01\x03\x04\x05\x02", // 赳
+ 0x8d74: "\x01\x02\x01\x02\x01\x03\x04\x02\x04", // 赴
+ 0x8d75: "\x01\x02\x01\x02\x01\x03\x04\x03\x04", // 赵
+ 0x8d76: "\x01\x02\x01\x02\x01\x03\x04\x01\x01\x02", // 赶
+ 0x8d77: "\x01\x02\x01\x02\x01\x03\x04\x05\x01\x05", // 起
+ 0x8d78: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x02", // 赸
+ 0x8d79: "\x01\x02\x01\x02\x01\x03\x04\x03\x05\x04\x01", // 赹
+ 0x8d7a: "\x01\x02\x01\x02\x01\x03\x04\x03\x04\x04\x05", // 赺
+ 0x8d7b: "\x01\x02\x01\x02\x01\x03\x04\x02\x03\x04\x03", // 赻
+ 0x8d7c: "\x01\x02\x01\x02\x01\x03\x04\x03\x05\x03\x04", // 赼
+ 0x8d7d: "\x01\x02\x01\x02\x01\x03\x04\x05\x01\x03\x04", // 赽
+ 0x8d7e: "\x01\x02\x01\x02\x01\x03\x04\x03\x03\x01\x02", // 赾
+ 0x8d7f: "\x01\x02\x01\x02\x01\x03\x04\x03\x05\x01\x05", // 赿
+ 0x8d80: "\x01\x02\x01\x02\x01\x03\x04\x03\x05\x02\x03", // 趀
+ 0x8d81: "\x01\x02\x01\x02\x01\x03\x04\x03\x04\x03\x03\x03", // 趁
+ 0x8d82: "\x01\x02\x01\x02\x01\x03\x04\x03\x05\x02\x03\x04", // 趂
+ 0x8d83: "\x01\x02\x01\x02\x01\x03\x04\x03\x01\x01\x03\x04", // 趃
+ 0x8d84: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x01\x01\x01", // 趄
+ 0x8d85: "\x01\x02\x01\x02\x01\x03\x04\x05\x03\x02\x05\x01", // 超
+ 0x8d86: "\x01\x02\x01\x02\x01\x03\x04\x03\x05\x01\x05\x04", // 趆
+ 0x8d87: "\x01\x02\x01\x02\x01\x03\x04\x04\x01\x04\x03\x01", // 趇
+ 0x8d88: "\x01\x02\x01\x02\x01\x03\x04\x02\x01\x02\x05\x01", // 趈
+ 0x8d89: "\x01\x02\x01\x02\x01\x03\x04\x05\x02\x02\x05\x02", // 趉
+ 0x8d8a: "\x01\x02\x01\x02\x01\x03\x04\x01\x05\x05\x03\x04", // 越
+ 0x8d8b: "\x01\x02\x01\x02\x01\x03\x04\x03\x05\x05\x01\x01", // 趋
+ 0x8d8c: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x01\x02\x05\x01", // 趌
+ 0x8d8d: "\x01\x02\x01\x02\x01\x03\x04\x03\x05\x04\x03\x05\x04", // 趍
+ 0x8d8e: "\x01\x02\x01\x02\x01\x03\x04\x03\x01\x01\x02\x03\x04", // 趎
+ 0x8d8f: "\x01\x02\x01\x02\x01\x03\x04\x03\x01\x02\x02\x05\x01", // 趏
+ 0x8d90: "\x01\x02\x01\x02\x01\x03\x04\x05\x04\x01\x05\x04\x01", // 趐
+ 0x8d91: "\x01\x02\x01\x02\x01\x03\x04\x04\x01\x03\x05\x03\x04", // 趑
+ 0x8d92: "\x01\x02\x01\x02\x01\x03\x04\x03\x04\x01\x05\x03\x04", // 趒
+ 0x8d93: "\x01\x02\x01\x02\x01\x03\x04\x03\x05\x01\x02\x03\x04", // 趓
+ 0x8d94: "\x01\x02\x01\x02\x01\x03\x04\x01\x03\x05\x04\x02\x02", // 趔
+ 0x8d95: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x01\x01\x01\x01\x02", // 趕
+ 0x8d96: "\x01\x02\x01\x02\x01\x03\x04\x03\x04\x03\x04\x01\x02\x01", // 趖
+ 0x8d97: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 趗
+ 0x8d98: "\x01\x02\x01\x02\x01\x03\x04\x05\x01\x03\x03\x01\x01\x05", // 趘
+ 0x8d99: "\x01\x02\x01\x02\x01\x03\x04\x02\x04\x03\x02\x05\x01\x01", // 趙
+ 0x8d9a: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x05\x01\x02\x03\x04", // 趚
+ 0x8d9b: "\x01\x02\x01\x02\x01\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 趛
+ 0x8d9c: "\x01\x02\x01\x02\x01\x03\x04\x03\x05\x04\x03\x01\x02\x03\x04", // 趜
+ 0x8d9d: "\x01\x02\x01\x02\x01\x03\x04\x03\x04\x04\x05\x04\x05\x04\x04", // 趝
+ 0x8d9e: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01", // 趞
+ 0x8d9f: "\x01\x02\x01\x02\x01\x03\x04\x02\x04\x03\x02\x05\x02\x05\x01", // 趟
+ 0x8da0: "\x01\x02\x01\x02\x01\x03\x04\x02\x01\x02\x05\x01\x01\x01\x02", // 趠
+ 0x8da1: "\x01\x02\x01\x02\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 趡
+ 0x8da2: "\x01\x02\x01\x02\x01\x03\x04\x05\x01\x01\x02\x04\x01\x03\x04", // 趢
+ 0x8da3: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x02\x01\x01\x01\x05\x04", // 趣
+ 0x8da4: "\x01\x02\x01\x02\x01\x03\x04\x04\x04\x05\x01\x03\x02\x05\x01", // 趤
+ 0x8da5: "\x01\x02\x01\x02\x01\x03\x04\x04\x03\x01\x02\x05\x03\x05\x01\x01", // 趥
+ 0x8da6: "\x01\x02\x01\x02\x01\x03\x04\x04\x01\x03\x05\x03\x04\x02\x05\x01", // 趦
+ 0x8da7: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 趧
+ 0x8da8: "\x01\x02\x01\x02\x01\x03\x04\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03", // 趨
+ 0x8da9: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 趩
+ 0x8daa: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 趪
+ 0x8dab: "\x01\x02\x01\x02\x01\x03\x04\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 趫
+ 0x8dac: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 趬
+ 0x8dad: "\x01\x02\x01\x02\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 趭
+ 0x8dae: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 趮
+ 0x8daf: "\x01\x02\x01\x02\x01\x03\x04\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 趯
+ 0x8db0: "\x01\x02\x01\x02\x01\x03\x04\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 趰
+ 0x8db1: "\x01\x02\x01\x02\x01\x03\x04\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x03\x04", // 趱
+ 0x8db2: "\x01\x02\x01\x02\x01\x03\x04\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 趲
+ 0x8db3: "\x02\x05\x01\x02\x01\x03\x04", // 足
+ 0x8db4: "\x02\x05\x01\x02\x01\x02\x01\x03\x04", // 趴
+ 0x8db5: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x04", // 趵
+ 0x8db6: "\x02\x05\x01\x02\x01\x02\x01\x01\x01\x02", // 趶
+ 0x8db7: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x05", // 趷
+ 0x8db8: "\x01\x05\x03\x02\x05\x01\x02\x01\x03\x04", // 趸
+ 0x8db9: "\x02\x05\x01\x02\x01\x02\x01\x05\x01\x03\x04", // 趹
+ 0x8dba: "\x02\x05\x01\x02\x01\x02\x01\x01\x01\x03\x04", // 趺
+ 0x8dbb: "\x02\x05\x01\x02\x01\x02\x01\x03\x04\x04\x05", // 趻
+ 0x8dbc: "\x02\x05\x01\x02\x01\x02\x01\x01\x01\x03\x02", // 趼
+ 0x8dbd: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x05\x03", // 趽
+ 0x8dbe: "\x02\x05\x01\x02\x01\x02\x01\x02\x01\x02\x01", // 趾
+ 0x8dbf: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x04", // 趿
+ 0x8dc0: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x01\x01", // 跀
+ 0x8dc1: "\x02\x05\x01\x02\x01\x02\x01\x05\x02\x01\x05", // 跁
+ 0x8dc2: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x05\x04", // 跂
+ 0x8dc3: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x03\x04", // 跃
+ 0x8dc4: "\x02\x05\x01\x02\x01\x02\x01\x03\x04\x05\x05", // 跄
+ 0x8dc5: "\x02\x05\x01\x02\x01\x02\x01\x03\x03\x01\x02\x04", // 跅
+ 0x8dc6: "\x02\x05\x01\x02\x01\x02\x01\x05\x04\x02\x05\x01", // 跆
+ 0x8dc7: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x01\x05", // 跇
+ 0x8dc8: "\x02\x05\x01\x02\x01\x02\x01\x03\x04\x03\x03\x03", // 跈
+ 0x8dc9: "\x02\x05\x01\x02\x01\x02\x01\x03\x04\x04\x05\x04", // 跉
+ 0x8dca: "\x02\x05\x01\x02\x01\x02\x01\x01\x01\x02\x03\x04", // 跊
+ 0x8dcb: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x05\x04\x04", // 跋
+ 0x8dcc: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x01\x03\x04", // 跌
+ 0x8dcd: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x05\x01", // 跍
+ 0x8dce: "\x02\x05\x01\x02\x01\x02\x01\x04\x04\x05\x03\x05", // 跎
+ 0x8dcf: "\x02\x05\x01\x02\x01\x02\x01\x05\x03\x02\x05\x01", // 跏
+ 0x8dd0: "\x02\x05\x01\x02\x01\x02\x01\x02\x01\x02\x01\x03\x05", // 跐
+ 0x8dd1: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x05\x01\x05", // 跑
+ 0x8dd2: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x05\x01\x02", // 跒
+ 0x8dd3: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x01\x02\x01", // 跓
+ 0x8dd4: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x02\x05\x01", // 跔
+ 0x8dd5: "\x02\x05\x01\x02\x01\x02\x01\x02\x01\x02\x05\x01", // 跕
+ 0x8dd6: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x02\x05\x01", // 跖
+ 0x8dd7: "\x02\x05\x01\x02\x01\x02\x01\x03\x02\x01\x02\x04", // 跗
+ 0x8dd8: "\x02\x05\x01\x02\x01\x02\x01\x04\x03\x01\x01\x02", // 跘
+ 0x8dd9: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01", // 跙
+ 0x8dda: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x03\x05\x01", // 跚
+ 0x8ddb: "\x02\x05\x01\x02\x01\x02\x01\x05\x03\x02\x05\x04", // 跛
+ 0x8ddc: "\x02\x05\x01\x02\x01\x02\x01\x05\x01\x03\x03\x05", // 跜
+ 0x8ddd: "\x02\x05\x01\x02\x01\x02\x01\x01\x05\x01\x05", // 距
+ 0x8dde: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x02\x03\x04", // 跞
+ 0x8ddf: "\x02\x05\x01\x02\x01\x02\x01\x05\x01\x01\x05\x03\x04", // 跟
+ 0x8de0: "\x02\x05\x01\x02\x01\x02\x01\x01\x05\x01\x05\x03\x04", // 跠
+ 0x8de1: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x03\x02\x03\x04", // 跡
+ 0x8de2: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x04\x03\x05\x04", // 跢
+ 0x8de3: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x02\x01\x03\x05", // 跣
+ 0x8de4: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x03\x04\x03\x04", // 跤
+ 0x8de5: "\x02\x05\x01\x02\x01\x02\x01\x05\x03\x01\x02\x03\x04", // 跥
+ 0x8de6: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x01\x02\x03\x04", // 跦
+ 0x8de7: "\x02\x05\x01\x02\x01\x02\x01\x03\x04\x01\x01\x02\x01", // 跧
+ 0x8de8: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x04\x01\x01\x05", // 跨
+ 0x8de9: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x01\x05\x03", // 跩
+ 0x8dea: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x01\x03\x05\x05", // 跪
+ 0x8deb: "\x01\x02\x01\x03\x05\x04\x02\x05\x01\x02\x01\x03\x04", // 跫
+ 0x8dec: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x01\x01\x02\x01", // 跬
+ 0x8ded: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x04\x01\x05\x02", // 跭
+ 0x8dee: "\x02\x05\x01\x02\x01\x02\x01\x01\x05\x04\x01\x02\x01", // 跮
+ 0x8def: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x04\x02\x05\x01", // 路
+ 0x8df0: "\x02\x05\x01\x02\x01\x02\x01\x04\x03\x01\x01\x03\x02", // 跰
+ 0x8df1: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x01\x01\x02\x04", // 跱
+ 0x8df2: "\x02\x05\x01\x02\x01\x02\x01\x03\x04\x01\x02\x05\x01", // 跲
+ 0x8df3: "\x02\x05\x01\x02\x01\x02\x01\x03\x04\x01\x05\x03\x04", // 跳
+ 0x8df4: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x05\x03\x05\x01", // 跴
+ 0x8df5: "\x02\x05\x01\x02\x01\x02\x01\x01\x01\x05\x03\x04", // 践
+ 0x8df6: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x04\x04\x05\x04", // 跶
+ 0x8df7: "\x02\x05\x01\x02\x01\x02\x01\x01\x05\x03\x01\x03\x05", // 跷
+ 0x8df8: "\x02\x05\x01\x02\x01\x02\x01\x01\x05\x03\x05\x01\x02", // 跸
+ 0x8df9: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x02\x04\x05\x04", // 跹
+ 0x8dfa: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x01\x02\x03\x04", // 跺
+ 0x8dfb: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x03\x04\x03\x02", // 跻
+ 0x8dfc: "\x02\x05\x01\x02\x01\x02\x01\x05\x01\x03\x05\x02\x05\x01", // 跼
+ 0x8dfd: "\x02\x05\x01\x02\x01\x02\x01\x05\x01\x05\x04\x05\x04\x04", // 跽
+ 0x8dfe: "\x03\x02\x02\x03\x01\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 跾
+ 0x8dff: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x01\x02\x01\x03\x04", // 跿
+ 0x8e00: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 踀
+ 0x8e01: "\x02\x05\x01\x02\x01\x02\x01\x01\x05\x05\x05\x01\x02\x01", // 踁
+ 0x8e02: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x01\x01\x01\x05", // 踂
+ 0x8e03: "\x02\x05\x01\x02\x01\x02\x01\x02\x04\x03\x02\x05\x01\x01", // 踃
+ 0x8e04: "\x02\x05\x01\x02\x01\x02\x01\x02\x01\x02\x01\x02\x03\x03", // 踄
+ 0x8e05: "\x01\x02\x01\x03\x03\x01\x02\x02\x05\x01\x02\x01\x03\x04", // 踅
+ 0x8e06: "\x02\x05\x01\x02\x01\x02\x01\x05\x04\x03\x04\x03\x05\x04", // 踆
+ 0x8e07: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x05\x05\x04\x01\x04", // 踇
+ 0x8e08: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x05\x01\x02\x03\x04", // 踈
+ 0x8e09: "\x02\x05\x01\x02\x01\x02\x01\x04\x05\x01\x01\x05\x03\x04", // 踉
+ 0x8e0a: "\x02\x05\x01\x02\x01\x02\x01\x05\x04\x02\x05\x01\x01\x02", // 踊
+ 0x8e0b: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x01\x05\x04\x05\x02", // 踋
+ 0x8e0c: "\x02\x05\x01\x02\x01\x02\x01\x01\x01\x01\x03\x01\x02\x04", // 踌
+ 0x8e0d: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x01\x03\x05\x02\x01", // 踍
+ 0x8e0e: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x02\x04\x02\x05\x01", // 踎
+ 0x8e0f: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x03\x04\x02\x05\x01\x01", // 踏
+ 0x8e10: "\x02\x05\x01\x02\x01\x02\x01\x01\x05\x03\x04\x01\x05\x03\x04", // 踐
+ 0x8e11: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x01\x01\x01\x03\x04", // 踑
+ 0x8e12: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x02\x03\x04\x05\x03\x01", // 踒
+ 0x8e13: "\x02\x05\x01\x02\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 踓
+ 0x8e14: "\x02\x05\x01\x02\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x02", // 踔
+ 0x8e15: "\x02\x05\x01\x02\x01\x02\x01\x01\x05\x01\x01\x02\x01\x03\x04", // 踕
+ 0x8e16: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x01\x02\x05\x01\x01", // 踖
+ 0x8e17: "\x02\x05\x01\x02\x01\x02\x01\x03\x04\x04\x05\x04\x05\x04\x04", // 踗
+ 0x8e18: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x04\x03\x01\x02\x03\x04", // 踘
+ 0x8e19: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x01\x01\x01\x05\x04", // 踙
+ 0x8e1a: "\x02\x05\x01\x02\x01\x02\x01\x03\x04\x01\x02\x05\x01\x02\x02", // 踚
+ 0x8e1b: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x01\x03\x04\x01\x02\x01", // 踛
+ 0x8e1c: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x01\x03\x04\x03\x05\x04", // 踜
+ 0x8e1d: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x02\x03\x04", // 踝
+ 0x8e1e: "\x02\x05\x01\x02\x01\x02\x01\x05\x01\x03\x01\x02\x02\x05\x01", // 踞
+ 0x8e1f: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x01\x03\x04\x02\x05\x01", // 踟
+ 0x8e20: "\x02\x05\x01\x02\x01\x02\x01\x04\x04\x05\x03\x05\x04\x05\x05", // 踠
+ 0x8e21: "\x02\x05\x01\x02\x01\x02\x01\x04\x03\x01\x01\x03\x04\x05\x05", // 踡
+ 0x8e22: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x01\x03\x05\x03\x03", // 踢
+ 0x8e23: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x04\x03\x01\x02\x05\x01", // 踣
+ 0x8e24: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x03\x04\x03\x04\x01\x02", // 踤
+ 0x8e25: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x04\x03\x01\x05\x03\x01", // 踥
+ 0x8e26: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x04\x01\x02\x05\x01\x02", // 踦
+ 0x8e27: "\x02\x05\x01\x02\x01\x02\x01\x02\x01\x01\x02\x03\x04\x05\x04", // 踧
+ 0x8e28: "\x02\x05\x01\x02\x01\x02\x01\x03\x04\x03\x04\x02\x01\x03\x04", // 踨
+ 0x8e29: "\x02\x05\x01\x02\x01\x02\x01\x03\x04\x04\x03\x01\x02\x03\x04", // 踩
+ 0x8e2a: "\x02\x05\x01\x02\x01\x02\x01\x04\x04\x05\x01\x01\x02\x03\x04", // 踪
+ 0x8e2b: "\x02\x05\x01\x02\x01\x02\x01\x04\x03\x01\x02\x02\x04\x03\x01", // 踫
+ 0x8e2c: "\x02\x05\x01\x02\x01\x02\x01\x03\x03\x01\x02\x02\x05\x03\x04", // 踬
+ 0x8e2d: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x05\x01\x01\x02", // 踭
+ 0x8e2e: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x03\x02\x01\x02\x05\x01", // 踮
+ 0x8e2f: "\x02\x05\x01\x02\x01\x02\x01\x04\x03\x01\x01\x03\x04\x05\x02", // 踯
+ 0x8e30: "\x02\x05\x01\x02\x01\x02\x01\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 踰
+ 0x8e31: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x03\x01\x02\x02\x01\x05\x04", // 踱
+ 0x8e32: "\x02\x05\x01\x02\x01\x02\x01\x03\x03\x01\x02\x02\x05\x01\x01\x01", // 踲
+ 0x8e33: "\x02\x05\x01\x02\x01\x02\x01\x01\x01\x01\x03\x04\x02\x05\x01\x01", // 踳
+ 0x8e34: "\x02\x05\x01\x02\x01\x02\x01\x05\x04\x02\x05\x01\x01\x02\x05\x03", // 踴
+ 0x8e35: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 踵
+ 0x8e36: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 踶
+ 0x8e37: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 踷
+ 0x8e38: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x01\x01\x01\x03\x04\x05", // 踸
+ 0x8e39: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 踹
+ 0x8e3a: "\x02\x05\x01\x02\x01\x02\x01\x05\x01\x01\x01\x01\x02\x05\x04", // 踺
+ 0x8e3b: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x05\x02\x05\x02\x05\x01", // 踻
+ 0x8e3c: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 踼
+ 0x8e3d: "\x02\x05\x01\x02\x01\x02\x01\x03\x02\x05\x01\x02\x05\x02\x01\x04", // 踽
+ 0x8e3e: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 踾
+ 0x8e3f: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x02\x03\x04\x04\x03\x03\x04", // 踿
+ 0x8e40: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 蹀
+ 0x8e41: "\x02\x05\x01\x02\x01\x02\x01\x04\x05\x01\x03\x02\x05\x01\x02\x02", // 蹁
+ 0x8e42: "\x02\x05\x01\x02\x01\x02\x01\x05\x04\x05\x02\x03\x01\x02\x03\x04", // 蹂
+ 0x8e43: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x01\x03\x02\x05\x01", // 蹃
+ 0x8e44: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x04\x03\x04\x05\x02\x05\x02", // 蹄
+ 0x8e45: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 蹅
+ 0x8e46: "\x02\x05\x01\x02\x01\x02\x01\x05\x01\x01\x05\x03\x04\x04\x05\x04", // 蹆
+ 0x8e47: "\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 蹇
+ 0x8e48: "\x02\x05\x01\x02\x01\x02\x01\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01", // 蹈
+ 0x8e49: "\x02\x05\x01\x02\x01\x02\x01\x04\x03\x01\x01\x01\x03\x01\x02\x01", // 蹉
+ 0x8e4a: "\x02\x05\x01\x02\x01\x02\x01\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04", // 蹊
+ 0x8e4b: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 蹋
+ 0x8e4c: "\x02\x05\x01\x02\x01\x02\x01\x03\x04\x04\x05\x01\x01\x03\x02\x05\x01", // 蹌
+ 0x8e4d: "\x02\x05\x01\x02\x01\x02\x01\x05\x01\x03\x01\x02\x02\x01\x05\x03\x04", // 蹍
+ 0x8e4e: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 蹎
+ 0x8e4f: "\x02\x05\x01\x02\x01\x02\x01\x03\x03\x02\x01\x05\x03\x01\x05\x03\x05", // 蹏
+ 0x8e50: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x03\x03\x04\x04\x02\x05\x01\x01", // 蹐
+ 0x8e51: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x01\x01\x01\x05\x04\x05\x04", // 蹑
+ 0x8e52: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x01\x02\x05\x03\x04\x03\x04", // 蹒
+ 0x8e53: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 蹓
+ 0x8e54: "\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02\x02\x05\x01\x02\x01\x03\x04", // 蹔
+ 0x8e55: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x02\x02\x01\x01\x02", // 蹕
+ 0x8e56: "\x02\x05\x01\x02\x01\x02\x01\x01\x01\x01\x03\x04\x03\x02\x01\x05\x01\x01", // 蹖
+ 0x8e57: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 蹗
+ 0x8e58: "\x02\x05\x01\x02\x01\x02\x01\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 蹘
+ 0x8e59: "\x01\x03\x02\x01\x01\x02\x03\x04\x05\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 蹙
+ 0x8e5a: "\x02\x05\x01\x02\x01\x02\x01\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x01", // 蹚
+ 0x8e5b: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x02\x02\x01\x05\x04\x05\x02\x05\x02", // 蹛
+ 0x8e5c: "\x02\x05\x01\x02\x01\x02\x01\x04\x04\x05\x03\x02\x01\x03\x02\x05\x01\x01", // 蹜
+ 0x8e5d: "\x02\x05\x01\x02\x01\x02\x01\x03\x03\x02\x02\x01\x02\x01\x02\x01\x03\x04", // 蹝
+ 0x8e5e: "\x02\x05\x01\x02\x01\x02\x01\x01\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 蹞
+ 0x8e5f: "\x02\x05\x01\x02\x01\x02\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 蹟
+ 0x8e60: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x03\x01\x02\x02\x01\x04\x04\x04\x04", // 蹠
+ 0x8e61: "\x02\x05\x01\x02\x01\x02\x01\x05\x02\x01\x03\x03\x05\x04\x04\x01\x02\x04", // 蹡
+ 0x8e62: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01", // 蹢
+ 0x8e63: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04", // 蹣
+ 0x8e64: "\x02\x05\x01\x02\x01\x02\x01\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04", // 蹤
+ 0x8e65: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 蹥
+ 0x8e66: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x02\x03\x05\x01\x01\x03\x05\x01\x01", // 蹦
+ 0x8e67: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01", // 蹧
+ 0x8e68: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x04\x04\x01\x03\x04\x04\x04\x04\x04\x04", // 蹨
+ 0x8e69: "\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 蹩
+ 0x8e6a: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 蹪
+ 0x8e6b: "\x02\x05\x01\x02\x01\x02\x01\x05\x04\x05\x02\x03\x02\x05\x03\x04\x02\x05\x01", // 蹫
+ 0x8e6c: "\x02\x05\x01\x02\x01\x02\x01\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 蹬
+ 0x8e6d: "\x02\x05\x01\x02\x01\x02\x01\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 蹭
+ 0x8e6e: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x05\x02\x02\x01\x01\x03\x04\x05\x01\x05", // 蹮
+ 0x8e6f: "\x02\x05\x01\x02\x01\x02\x01\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 蹯
+ 0x8e70: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x01\x02\x05\x01\x04\x03\x01\x01\x02\x04", // 蹰
+ 0x8e71: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 蹱
+ 0x8e72: "\x02\x05\x01\x02\x01\x02\x01\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x02\x04", // 蹲
+ 0x8e73: "\x02\x05\x01\x02\x01\x02\x01\x05\x04\x03\x03\x04\x05\x01\x05\x03\x05\x05\x04", // 蹳
+ 0x8e74: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x02\x05\x01\x02\x03\x04\x01\x03\x05\x04", // 蹴
+ 0x8e75: "\x04\x01\x02\x05\x01\x02\x03\x04\x01\x03\x05\x04\x02\x05\x01\x02\x01\x03\x04", // 蹵
+ 0x8e76: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04", // 蹶
+ 0x8e77: "\x01\x03\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 蹷
+ 0x8e78: "\x02\x05\x01\x02\x01\x02\x01\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 蹸
+ 0x8e79: "\x02\x05\x01\x02\x01\x02\x01\x03\x04\x01\x02\x05\x01\x05\x04\x01\x05\x04\x01", // 蹹
+ 0x8e7a: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 蹺
+ 0x8e7b: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 蹻
+ 0x8e7c: "\x02\x05\x01\x02\x01\x02\x01\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 蹼
+ 0x8e7d: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 蹽
+ 0x8e7e: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x02\x05\x01\x05\x02\x01\x03\x01\x03\x04", // 蹾
+ 0x8e7f: "\x02\x05\x01\x02\x01\x02\x01\x04\x04\x05\x03\x04\x02\x05\x01\x02\x05\x01\x02", // 蹿
+ 0x8e80: "\x02\x05\x01\x02\x01\x02\x01\x05\x05\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 躀
+ 0x8e81: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 躁
+ 0x8e82: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x01\x04\x03\x01\x01\x01\x02\x04\x05\x04", // 躂
+ 0x8e83: "\x02\x05\x01\x02\x01\x02\x01\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 躃
+ 0x8e84: "\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x02\x05\x01\x02\x01\x03\x04", // 躄
+ 0x8e85: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 躅
+ 0x8e86: "\x02\x05\x01\x02\x01\x02\x01\x02\x01\x05\x03\x01\x05\x01\x03\x05\x03\x03\x03\x04", // 躆
+ 0x8e87: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x01\x02\x01\x03\x02\x05\x01\x01", // 躇
+ 0x8e88: "\x02\x05\x01\x02\x01\x02\x01\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x03\x04", // 躈
+ 0x8e89: "\x01\x02\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04\x02\x05\x01\x02\x01\x03\x04", // 躉
+ 0x8e8a: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 躊
+ 0x8e8b: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01", // 躋
+ 0x8e8c: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x01\x02\x02\x02\x02\x01\x03\x05\x04\x01\x05\x02", // 躌
+ 0x8e8d: "\x02\x05\x01\x02\x01\x02\x01\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 躍
+ 0x8e8e: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 躎
+ 0x8e8f: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x04\x02\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 躏
+ 0x8e90: "\x02\x05\x01\x02\x01\x02\x01\x05\x05\x05\x02\x05\x03\x04\x01\x05\x04\x04\x05\x04\x04\x05", // 躐
+ 0x8e91: "\x02\x05\x01\x02\x01\x02\x01\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x03\x04\x05\x02", // 躑
+ 0x8e92: "\x02\x05\x01\x02\x01\x02\x01\x03\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x03\x04", // 躒
+ 0x8e93: "\x02\x05\x01\x02\x01\x02\x01\x03\x03\x01\x02\x03\x03\x01\x02\x02\x05\x01\x01\x01\x03\x04", // 躓
+ 0x8e94: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x03\x02\x05\x01\x01\x02\x01\x01\x03\x04\x01\x02\x01", // 躔
+ 0x8e95: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x03\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x04", // 躕
+ 0x8e96: "\x02\x05\x01\x02\x01\x02\x01\x05\x05\x04\x05\x05\x04\x01\x05\x05\x04\x05\x05\x04\x02\x01", // 躖
+ 0x8e97: "\x03\x03\x02\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x01\x02\x02\x05\x01\x02\x01\x03\x04", // 躗
+ 0x8e98: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01\x01\x01", // 躘
+ 0x8e99: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x01\x02\x05\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 躙
+ 0x8e9a: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x05\x02\x02\x01\x01\x03\x04\x05\x01\x05\x04\x05\x04", // 躚
+ 0x8e9b: "\x03\x03\x02\x05\x02\x01\x02\x05\x01\x01\x02\x05\x02\x01\x01\x02\x02\x05\x01\x02\x01\x03\x04", // 躛
+ 0x8e9c: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x03\x04", // 躜
+ 0x8e9d: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 躝
+ 0x8e9e: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x01\x01\x02\x05\x01\x04\x03\x03\x04\x04\x03\x03\x04\x05\x04", // 躞
+ 0x8e9f: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 躟
+ 0x8ea0: "\x01\x02\x02\x03\x02\x05\x01\x05\x01\x04\x01\x04\x03\x01\x01\x02\x02\x05\x01\x02\x01\x03\x04", // 躠
+ 0x8ea1: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01", // 躡
+ 0x8ea2: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 躢
+ 0x8ea3: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 躣
+ 0x8ea4: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x01\x01\x01\x02\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01", // 躤
+ 0x8ea5: "\x02\x05\x01\x02\x01\x02\x01\x04\x04\x05\x03\x04\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05", // 躥
+ 0x8ea6: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 躦
+ 0x8ea7: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x05\x04\x01\x02\x05\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 躧
+ 0x8ea8: "\x02\x05\x01\x02\x01\x02\x01\x04\x03\x01\x03\x02\x05\x01\x01\x01\x02\x01\x02\x01\x05\x01\x05\x03\x04\x03\x05\x04", // 躨
+ 0x8ea9: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 躩
+ 0x8eaa: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x02\x05\x01\x01\x02\x05\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 躪
+ 0x8eab: "\x03\x02\x05\x01\x01\x01\x03", // 身
+ 0x8eac: "\x03\x02\x05\x01\x01\x01\x03\x05\x01\x05", // 躬
+ 0x8ead: "\x03\x02\x05\x01\x01\x01\x03\x04\x05\x03\x05", // 躭
+ 0x8eae: "\x03\x02\x05\x01\x01\x01\x03\x03\x04\x05\x03", // 躮
+ 0x8eaf: "\x03\x02\x05\x01\x01\x01\x03\x01\x03\x04\x05", // 躯
+ 0x8eb0: "\x03\x02\x05\x01\x01\x01\x03\x01\x02\x03\x04\x01", // 躰
+ 0x8eb1: "\x03\x02\x05\x01\x01\x01\x03\x05\x03\x01\x02\x03\x04", // 躱
+ 0x8eb2: "\x03\x02\x05\x01\x01\x01\x03\x03\x05\x01\x02\x03\x04", // 躲
+ 0x8eb3: "\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x02\x05\x01", // 躳
+ 0x8eb4: "\x03\x02\x05\x01\x01\x01\x03\x04\x05\x01\x01\x05\x03\x04", // 躴
+ 0x8eb5: "\x03\x02\x05\x01\x01\x01\x03\x05\x03\x04\x04\x05\x04\x04", // 躵
+ 0x8eb6: "\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x02\x03\x04", // 躶
+ 0x8eb7: "\x03\x02\x05\x01\x01\x01\x03\x03\x01\x02\x03\x04\x05\x03\x01", // 躷
+ 0x8eb8: "\x03\x02\x05\x01\x01\x01\x03\x01\x03\x04\x01\x02\x05\x01\x02", // 躸
+ 0x8eb9: "\x03\x02\x05\x01\x01\x01\x03\x03\x05\x04\x03\x01\x02\x03\x04", // 躹
+ 0x8eba: "\x03\x02\x05\x01\x01\x01\x03\x02\x04\x03\x02\x05\x02\x05\x01", // 躺
+ 0x8ebb: "\x03\x02\x05\x01\x01\x01\x03\x04\x04\x05\x03\x04\x01\x02\x01", // 躻
+ 0x8ebc: "\x03\x02\x05\x01\x01\x01\x03\x01\x02\x01\x01\x01\x05\x03\x04", // 躼
+ 0x8ebd: "\x03\x02\x05\x01\x01\x01\x03\x01\x02\x05\x01\x01\x05\x03\x01\x05", // 躽
+ 0x8ebe: "\x03\x02\x05\x01\x01\x01\x03\x04\x03\x01\x01\x02\x01\x01\x03\x04", // 躾
+ 0x8ebf: "\x03\x02\x05\x01\x01\x01\x03\x04\x01\x03\x05\x01\x01\x02\x04\x01\x03\x04", // 躿
+ 0x8ec0: "\x03\x02\x05\x01\x01\x01\x03\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 軀
+ 0x8ec1: "\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 軁
+ 0x8ec2: "\x03\x02\x05\x01\x01\x01\x03\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x05\x03", // 軂
+ 0x8ec3: "\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 軃
+ 0x8ec4: "\x03\x02\x05\x01\x01\x01\x03\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05\x03\x04", // 軄
+ 0x8ec5: "\x03\x02\x05\x01\x01\x01\x03\x01\x03\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 軅
+ 0x8ec6: "\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01", // 軆
+ 0x8ec7: "\x03\x02\x05\x01\x01\x01\x03\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 軇
+ 0x8ec8: "\x03\x02\x05\x01\x01\x01\x03\x04\x01\x03\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01\x04\x05\x04\x04", // 軈
+ 0x8ec9: "\x03\x02\x05\x01\x01\x01\x03\x04\x04\x05\x01\x01\x02\x01\x03\x01\x01\x02\x05\x02\x02\x05\x01\x01\x01\x03\x04", // 軉
+ 0x8eca: "\x01\x02\x05\x01\x01\x01\x02", // 車
+ 0x8ecb: "\x01\x02\x05\x01\x01\x01\x02\x05", // 軋
+ 0x8ecc: "\x01\x02\x05\x01\x01\x01\x02\x03\x05", // 軌
+ 0x8ecd: "\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 軍
+ 0x8ece: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01", // 軎
+ 0x8ecf: "\x01\x02\x05\x01\x01\x01\x02\x01\x03\x05", // 軏
+ 0x8ed0: "\x01\x02\x05\x01\x01\x01\x02\x05\x01\x02", // 軐
+ 0x8ed1: "\x01\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 軑
+ 0x8ed2: "\x01\x02\x05\x01\x01\x01\x02\x01\x01\x02", // 軒
+ 0x8ed3: "\x01\x02\x05\x01\x01\x01\x02\x03\x05\x04", // 軓
+ 0x8ed4: "\x01\x02\x05\x01\x01\x01\x02\x05\x03\x04", // 軔
+ 0x8ed5: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x02", // 軕
+ 0x8ed6: "\x01\x02\x05\x01\x01\x01\x02\x01\x01\x02\x01", // 軖
+ 0x8ed7: "\x01\x02\x05\x01\x01\x01\x02\x03\x05\x05\x04", // 軗
+ 0x8ed8: "\x01\x02\x05\x01\x01\x01\x02\x01\x05\x02\x05", // 軘
+ 0x8ed9: "\x01\x02\x05\x01\x01\x01\x02\x02\x01\x05\x04", // 軙
+ 0x8eda: "\x01\x02\x05\x01\x01\x01\x02\x01\x03\x04\x04", // 軚
+ 0x8edb: "\x01\x02\x05\x01\x01\x01\x02\x01\x03\x05\x05", // 軛
+ 0x8edc: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x03\x04", // 軜
+ 0x8edd: "\x01\x02\x05\x01\x01\x01\x02\x03\x05\x01\x05", // 軝
+ 0x8ede: "\x01\x02\x05\x01\x01\x01\x02\x03\x01\x01\x05", // 軞
+ 0x8edf: "\x01\x02\x05\x01\x01\x01\x02\x03\x05\x03\x04", // 軟
+ 0x8ee0: "\x01\x02\x05\x01\x01\x01\x02\x03\x01\x02\x01", // 軠
+ 0x8ee1: "\x01\x02\x05\x01\x01\x01\x02\x03\x04\x04\x05", // 軡
+ 0x8ee2: "\x01\x02\x05\x01\x01\x01\x02\x01\x01\x05\x04", // 転
+ 0x8ee3: "\x01\x02\x05\x01\x01\x01\x02\x04\x01\x03\x04", // 軣
+ 0x8ee4: "\x01\x02\x05\x01\x01\x01\x02\x03\x04\x03\x01\x02", // 軤
+ 0x8ee5: "\x01\x02\x05\x01\x01\x01\x02\x03\x05\x02\x05\x01", // 軥
+ 0x8ee6: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x03\x05", // 軦
+ 0x8ee7: "\x01\x02\x05\x01\x01\x01\x02\x03\x05\x01\x05\x04", // 軧
+ 0x8ee8: "\x01\x02\x05\x01\x01\x01\x02\x03\x04\x04\x05\x04", // 軨
+ 0x8ee9: "\x01\x02\x05\x01\x01\x01\x02\x05\x04\x02\x05\x01", // 軩
+ 0x8eea: "\x01\x02\x05\x01\x01\x01\x02\x05\x05\x04\x05\x03", // 軪
+ 0x8eeb: "\x01\x02\x05\x01\x01\x01\x02\x03\x04\x03\x03\x03", // 軫
+ 0x8eec: "\x05\x04\x01\x03\x04\x01\x02\x05\x01\x01\x01\x02", // 軬
+ 0x8eed: "\x01\x02\x05\x01\x01\x01\x02\x01\x01\x01\x02\x01\x05", // 軭
+ 0x8eee: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x03\x04", // 軮
+ 0x8eef: "\x01\x02\x05\x01\x01\x01\x02\x01\x04\x03\x01\x02", // 軯
+ 0x8ef0: "\x02\x01\x01\x03\x05\x01\x02\x05\x01\x01\x01\x02", // 軰
+ 0x8ef1: "\x01\x02\x05\x01\x01\x01\x02\x03\x03\x05\x04\x04", // 軱
+ 0x8ef2: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x02\x05\x01", // 軲
+ 0x8ef3: "\x01\x02\x05\x01\x01\x01\x02\x03\x05\x05\x01\x05", // 軳
+ 0x8ef4: "\x01\x02\x05\x01\x01\x01\x02\x04\x01\x01\x02\x01", // 軴
+ 0x8ef5: "\x01\x02\x05\x01\x01\x01\x02\x03\x02\x01\x02\x04", // 軵
+ 0x8ef6: "\x01\x02\x05\x01\x01\x01\x02\x04\x05\x01\x03\x05", // 軶
+ 0x8ef7: "\x01\x02\x05\x01\x01\x01\x02\x01\x03\x05\x04\x04", // 軷
+ 0x8ef8: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x02\x01", // 軸
+ 0x8ef9: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x03\x04", // 軹
+ 0x8efa: "\x01\x02\x05\x01\x01\x01\x02\x05\x03\x02\x05\x01", // 軺
+ 0x8efb: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x02", // 軻
+ 0x8efc: "\x01\x02\x05\x01\x01\x01\x02\x03\x01\x01\x03\x04", // 軼
+ 0x8efd: "\x01\x02\x05\x01\x01\x01\x02\x05\x04\x01\x02\x01", // 軽
+ 0x8efe: "\x01\x02\x05\x01\x01\x01\x02\x01\x01\x02\x01\x05\x04", // 軾
+ 0x8eff: "\x01\x02\x05\x01\x01\x01\x02\x04\x03\x01\x01\x03\x02", // 軿
+ 0x8f00: "\x01\x02\x05\x01\x01\x01\x02\x01\x03\x02\x05\x02\x02", // 輀
+ 0x8f01: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x02\x01\x03\x04", // 輁
+ 0x8f02: "\x01\x02\x02\x01\x03\x04\x01\x02\x05\x01\x01\x01\x02", // 輂
+ 0x8f03: "\x01\x02\x05\x01\x01\x01\x02\x04\x01\x03\x04\x03\x04", // 較
+ 0x8f04: "\x01\x02\x05\x01\x01\x01\x02\x02\x04\x03\x01\x03\x05", // 輄
+ 0x8f05: "\x01\x02\x05\x01\x01\x01\x02\x03\x05\x04\x02\x05\x01", // 輅
+ 0x8f06: "\x01\x02\x05\x01\x01\x01\x02\x04\x01\x05\x03\x03\x04", // 輆
+ 0x8f07: "\x01\x02\x05\x01\x01\x01\x02\x03\x04\x01\x01\x02\x01", // 輇
+ 0x8f08: "\x01\x02\x05\x01\x01\x01\x02\x03\x03\x05\x04\x01\x04", // 輈
+ 0x8f09: "\x01\x02\x01\x01\x02\x05\x01\x01\x01\x02\x05\x03\x04", // 載
+ 0x8f0a: "\x01\x02\x05\x01\x01\x01\x02\x01\x05\x04\x01\x02\x01", // 輊
+ 0x8f0b: "\x02\x05\x02\x01\x03\x04\x01\x02\x05\x01\x01\x01\x02", // 輋
+ 0x8f0c: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x02\x05\x02", // 輌
+ 0x8f0d: "\x01\x02\x05\x01\x01\x01\x02\x03\x04\x03\x04\x02\x05\x01", // 輍
+ 0x8f0e: "\x01\x02\x05\x01\x01\x01\x02\x02\x04\x03\x02\x05\x01\x01", // 輎
+ 0x8f0f: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x03\x05\x01\x01", // 輏
+ 0x8f10: "\x01\x02\x05\x01\x01\x01\x02\x04\x04\x05\x01\x01\x03\x05", // 輐
+ 0x8f11: "\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x03\x02\x05\x01", // 輑
+ 0x8f12: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x02\x01\x01\x01\x05", // 輒
+ 0x8f13: "\x01\x02\x05\x01\x01\x01\x02\x03\x05\x02\x05\x01\x03\x05", // 輓
+ 0x8f14: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04", // 輔
+ 0x8f15: "\x01\x02\x05\x01\x01\x01\x02\x01\x05\x05\x05\x01\x02\x01", // 輕
+ 0x8f16: "\x01\x02\x05\x01\x01\x01\x02\x03\x05\x01\x02\x01\x02\x05\x01", // 輖
+ 0x8f17: "\x01\x02\x05\x01\x01\x01\x02\x03\x02\x01\x05\x01\x01\x03\x05", // 輗
+ 0x8f18: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x01\x03\x04\x03\x05\x04", // 輘
+ 0x8f19: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x02\x01\x01\x01\x05\x04", // 輙
+ 0x8f1a: "\x01\x02\x05\x01\x01\x01\x02\x01\x05\x03\x04\x01\x05\x03\x04", // 輚
+ 0x8f1b: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x02\x03\x04\x03\x04", // 輛
+ 0x8f1c: "\x01\x02\x05\x01\x01\x01\x02\x05\x05\x05\x02\x05\x01\x02\x01", // 輜
+ 0x8f1d: "\x02\x04\x03\x01\x03\x05\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 輝
+ 0x8f1e: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x04\x03\x01\x04\x01\x05", // 輞
+ 0x8f1f: "\x01\x02\x05\x01\x01\x01\x02\x05\x04\x05\x04\x05\x04\x05\x04", // 輟
+ 0x8f20: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04", // 輠
+ 0x8f21: "\x01\x02\x05\x01\x01\x01\x02\x03\x05\x03\x02\x01\x05\x01\x01", // 輡
+ 0x8f22: "\x01\x02\x05\x01\x01\x01\x02\x01\x03\x04\x01\x02\x05\x01\x02", // 輢
+ 0x8f23: "\x01\x02\x05\x01\x01\x01\x02\x03\x05\x01\x01\x03\x05\x01\x01", // 輣
+ 0x8f24: "\x01\x02\x05\x01\x01\x01\x02\x01\x01\x02\x01\x02\x01\x05\x01\x01", // 輤
+ 0x8f25: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x01\x01\x05\x03\x05", // 輥
+ 0x8f26: "\x01\x01\x03\x04\x01\x01\x03\x04\x01\x02\x05\x01\x01\x01\x02", // 輦
+ 0x8f27: "\x01\x02\x05\x01\x01\x01\x02\x03\x01\x01\x03\x03\x01\x01\x02", // 輧
+ 0x8f28: "\x01\x02\x05\x01\x01\x01\x02\x04\x04\x05\x02\x05\x01\x05\x01", // 輨
+ 0x8f29: "\x02\x01\x01\x01\x02\x01\x01\x01\x01\x02\x05\x01\x01\x01\x02", // 輩
+ 0x8f2a: "\x01\x02\x05\x01\x01\x01\x02\x03\x04\x01\x02\x05\x01\x02\x02", // 輪
+ 0x8f2b: "\x01\x02\x05\x01\x01\x01\x02\x02\x01\x01\x01\x02\x01\x01\x01", // 輫
+ 0x8f2c: "\x01\x02\x05\x01\x01\x01\x02\x04\x01\x02\x05\x01\x02\x03\x04", // 輬
+ 0x8f2d: "\x01\x02\x05\x01\x01\x01\x02\x01\x03\x02\x05\x02\x02\x01\x03\x04", // 輭
+ 0x8f2e: "\x01\x02\x05\x01\x01\x01\x02\x05\x04\x05\x02\x03\x01\x02\x03\x04", // 輮
+ 0x8f2f: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x01\x02\x02\x01\x01\x01", // 輯
+ 0x8f30: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 輰
+ 0x8f31: "\x01\x02\x05\x01\x01\x01\x02\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 輱
+ 0x8f32: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 輲
+ 0x8f33: "\x01\x02\x05\x01\x01\x01\x02\x01\x01\x01\x03\x04\x01\x01\x03\x04", // 輳
+ 0x8f34: "\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02\x02\x05\x01\x01\x01", // 輴
+ 0x8f35: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 輵
+ 0x8f36: "\x01\x02\x05\x01\x01\x01\x02\x04\x03\x01\x02\x05\x03\x05\x01\x01", // 輶
+ 0x8f37: "\x01\x02\x05\x01\x01\x01\x02\x03\x05\x04\x01\x01\x01\x02\x05\x01", // 輷
+ 0x8f38: "\x01\x02\x05\x01\x01\x01\x02\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 輸
+ 0x8f39: "\x01\x02\x05\x01\x01\x01\x02\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 輹
+ 0x8f3a: "\x01\x02\x05\x01\x01\x01\x02\x05\x05\x05\x01\x02\x05\x01\x02\x01", // 輺
+ 0x8f3b: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 輻
+ 0x8f3c: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 輼
+ 0x8f3d: "\x01\x02\x05\x01\x01\x01\x02\x05\x04\x01\x03\x04\x02\x05\x01\x02\x01", // 輽
+ 0x8f3e: "\x01\x02\x05\x01\x01\x01\x02\x05\x01\x03\x01\x02\x02\x01\x05\x03\x04", // 輾
+ 0x8f3f: "\x03\x02\x01\x01\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x04", // 輿
+ 0x8f40: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x03\x04\x01\x02\x05\x02\x02\x01", // 轀
+ 0x8f41: "\x01\x02\x05\x01\x01\x01\x02\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01", // 轁
+ 0x8f42: "\x01\x02\x01\x04\x05\x01\x01\x02\x05\x01\x01\x01\x02\x03\x05\x05\x04", // 轂
+ 0x8f43: "\x01\x02\x05\x01\x01\x01\x02\x01\x01\x01\x03\x04\x03\x01\x02\x03\x04", // 轃
+ 0x8f44: "\x01\x02\x05\x01\x01\x01\x02\x04\x04\x05\x01\x01\x01\x02\x02\x05\x01", // 轄
+ 0x8f45: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x01\x02\x05\x01\x03\x05\x03\x04", // 轅
+ 0x8f46: "\x01\x02\x05\x01\x01\x01\x02\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 轆
+ 0x8f47: "\x01\x02\x05\x01\x01\x01\x02\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 轇
+ 0x8f48: "\x01\x02\x05\x01\x01\x01\x02\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 轈
+ 0x8f49: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04", // 轉
+ 0x8f4a: "\x01\x02\x05\x01\x01\x01\x02\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x01", // 轊
+ 0x8f4b: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 轋
+ 0x8f4c: "\x01\x02\x05\x01\x01\x01\x02\x01\x04\x05\x02\x04\x04\x04\x04\x05\x01\x01", // 轌
+ 0x8f4d: "\x01\x02\x05\x01\x01\x01\x02\x04\x01\x05\x04\x02\x05\x01\x01\x03\x01\x03\x04", // 轍
+ 0x8f4e: "\x01\x02\x05\x01\x01\x01\x02\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 轎
+ 0x8f4f: "\x01\x02\x05\x01\x01\x01\x02\x05\x01\x03\x05\x02\x01\x05\x02\x01\x05\x02\x01", // 轏
+ 0x8f50: "\x01\x02\x05\x01\x01\x01\x02\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 轐
+ 0x8f51: "\x01\x02\x05\x01\x01\x01\x02\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 轑
+ 0x8f52: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 轒
+ 0x8f53: "\x01\x02\x05\x01\x01\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 轓
+ 0x8f54: "\x01\x02\x05\x01\x01\x01\x02\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 轔
+ 0x8f55: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x02\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 轕
+ 0x8f56: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x03\x04\x03\x04\x01\x02\x05\x02\x05\x01\x01", // 轖
+ 0x8f57: "\x01\x02\x05\x01\x01\x01\x02\x01\x03\x01\x02\x05\x01\x05\x03\x04\x04\x05\x04\x04", // 轗
+ 0x8f58: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 轘
+ 0x8f59: "\x01\x02\x05\x01\x01\x01\x02\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01\x05\x03\x04", // 轙
+ 0x8f5a: "\x01\x02\x05\x01\x01\x01\x02\x05\x02\x03\x05\x05\x04\x01\x02\x05\x01\x01\x01\x02", // 轚
+ 0x8f5b: "\x01\x02\x05\x01\x01\x01\x02\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x01\x02\x04", // 轛
+ 0x8f5c: "\x01\x02\x05\x01\x01\x01\x02\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02", // 轜
+ 0x8f5d: "\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04\x01\x02\x05\x01\x01\x01\x02", // 轝
+ 0x8f5e: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01", // 轞
+ 0x8f5f: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x02", // 轟
+ 0x8f60: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01", // 轠
+ 0x8f61: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x01\x01\x01\x02\x05\x05\x04\x04\x04\x04\x02\x05\x01", // 轡
+ 0x8f62: "\x01\x02\x05\x01\x01\x01\x02\x03\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x03\x04", // 轢
+ 0x8f63: "\x01\x02\x05\x01\x01\x01\x02\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 轣
+ 0x8f64: "\x01\x02\x05\x01\x01\x01\x02\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 轤
+ 0x8f65: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x02\x02\x05\x01\x01\x02\x05\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 轥
+ 0x8f66: "\x01\x05\x01\x02", // 车
+ 0x8f67: "\x01\x05\x02\x01\x05", // 轧
+ 0x8f68: "\x01\x05\x02\x01\x03\x05", // 轨
+ 0x8f69: "\x01\x05\x02\x01\x01\x01\x02", // 轩
+ 0x8f6a: "\x01\x05\x02\x01\x01\x03\x04", // 轪
+ 0x8f6b: "\x01\x05\x02\x01\x05\x03\x04", // 轫
+ 0x8f6c: "\x01\x05\x02\x01\x01\x01\x05\x04", // 转
+ 0x8f6d: "\x01\x05\x02\x01\x01\x03\x05\x05", // 轭
+ 0x8f6e: "\x01\x05\x02\x01\x03\x04\x03\x05", // 轮
+ 0x8f6f: "\x01\x05\x02\x01\x03\x05\x03\x04", // 软
+ 0x8f70: "\x01\x05\x01\x02\x05\x04\x05\x04", // 轰
+ 0x8f71: "\x01\x05\x02\x01\x01\x02\x02\x05\x01", // 轱
+ 0x8f72: "\x01\x05\x02\x01\x01\x02\x05\x01\x02", // 轲
+ 0x8f73: "\x01\x05\x02\x01\x02\x01\x05\x01\x03", // 轳
+ 0x8f74: "\x01\x05\x02\x01\x02\x05\x01\x02\x01", // 轴
+ 0x8f75: "\x01\x05\x02\x01\x02\x05\x01\x03\x04", // 轵
+ 0x8f76: "\x01\x05\x02\x01\x03\x01\x01\x03\x04", // 轶
+ 0x8f77: "\x01\x05\x02\x01\x03\x04\x03\x01\x02", // 轷
+ 0x8f78: "\x01\x05\x02\x01\x03\x04\x03\x03\x03", // 轸
+ 0x8f79: "\x01\x05\x02\x01\x03\x05\x02\x03\x04", // 轹
+ 0x8f7a: "\x01\x05\x02\x01\x05\x03\x02\x05\x01", // 轺
+ 0x8f7b: "\x01\x05\x02\x01\x05\x04\x01\x02\x01", // 轻
+ 0x8f7c: "\x01\x05\x02\x01\x01\x01\x02\x01\x05\x04", // 轼
+ 0x8f7d: "\x01\x02\x01\x01\x05\x02\x01\x05\x03\x04", // 载
+ 0x8f7e: "\x01\x05\x02\x01\x01\x05\x04\x01\x02\x01", // 轾
+ 0x8f7f: "\x01\x05\x02\x01\x03\x01\x03\x04\x03\x02", // 轿
+ 0x8f80: "\x01\x05\x02\x01\x03\x03\x05\x04\x01\x04", // 辀
+ 0x8f81: "\x01\x05\x02\x01\x03\x04\x01\x01\x02\x01", // 辁
+ 0x8f82: "\x01\x05\x02\x01\x03\x05\x04\x02\x05\x01", // 辂
+ 0x8f83: "\x01\x05\x02\x01\x04\x01\x03\x04\x03\x04", // 较
+ 0x8f84: "\x01\x05\x02\x01\x01\x02\x02\x01\x01\x01\x05", // 辄
+ 0x8f85: "\x01\x05\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 辅
+ 0x8f86: "\x01\x05\x02\x01\x01\x02\x05\x03\x04\x03\x04", // 辆
+ 0x8f87: "\x01\x01\x03\x04\x01\x01\x03\x04\x01\x05\x01\x02", // 辇
+ 0x8f88: "\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x01\x02", // 辈
+ 0x8f89: "\x02\x04\x03\x01\x03\x05\x04\x05\x01\x05\x01\x02", // 辉
+ 0x8f8a: "\x01\x05\x02\x01\x02\x05\x01\x01\x01\x05\x03\x05", // 辊
+ 0x8f8b: "\x01\x05\x02\x01\x02\x05\x04\x03\x01\x04\x01\x05", // 辋
+ 0x8f8c: "\x01\x05\x02\x01\x04\x01\x02\x05\x01\x02\x03\x04", // 辌
+ 0x8f8d: "\x01\x05\x02\x01\x05\x04\x05\x04\x05\x04\x05\x04", // 辍
+ 0x8f8e: "\x01\x05\x02\x01\x05\x05\x05\x02\x05\x01\x02\x01", // 辎
+ 0x8f8f: "\x01\x05\x02\x01\x01\x01\x01\x03\x04\x01\x01\x03\x04", // 辏
+ 0x8f90: "\x01\x05\x02\x01\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 辐
+ 0x8f91: "\x01\x05\x02\x01\x02\x05\x01\x01\x02\x02\x01\x01\x01", // 辑
+ 0x8f92: "\x01\x05\x02\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 辒
+ 0x8f93: "\x01\x05\x02\x01\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 输
+ 0x8f94: "\x05\x05\x01\x01\x05\x01\x02\x05\x05\x01\x02\x05\x01", // 辔
+ 0x8f95: "\x01\x05\x02\x01\x01\x02\x01\x02\x05\x01\x03\x05\x03\x04", // 辕
+ 0x8f96: "\x01\x05\x02\x01\x04\x04\x05\x01\x01\x01\x02\x02\x05\x01", // 辖
+ 0x8f97: "\x01\x05\x02\x01\x05\x01\x03\x01\x02\x02\x01\x05\x03\x04", // 辗
+ 0x8f98: "\x01\x05\x02\x01\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 辘
+ 0x8f99: "\x01\x05\x02\x01\x04\x01\x05\x04\x02\x05\x01\x01\x03\x01\x03\x04", // 辙
+ 0x8f9a: "\x01\x05\x02\x01\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 辚
+ 0x8f9b: "\x04\x01\x04\x03\x01\x01\x02", // 辛
+ 0x8f9c: "\x01\x02\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 辜
+ 0x8f9d: "\x05\x04\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 辝
+ 0x8f9e: "\x03\x01\x02\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 辞
+ 0x8f9f: "\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 辟
+ 0x8fa0: "\x03\x02\x05\x01\x01\x01\x04\x01\x04\x03\x01\x01\x02", // 辠
+ 0x8fa1: "\x04\x01\x04\x03\x01\x01\x03\x04\x01\x04\x03\x01\x01\x02", // 辡
+ 0x8fa2: "\x01\x02\x05\x01\x02\x03\x04\x04\x01\x04\x03\x01\x01\x02", // 辢
+ 0x8fa3: "\x04\x01\x04\x03\x01\x01\x03\x01\x02\x05\x01\x02\x03\x04", // 辣
+ 0x8fa4: "\x03\x04\x04\x03\x04\x05\x05\x04\x04\x01\x04\x03\x01\x01\x02", // 辤
+ 0x8fa5: "\x05\x02\x03\x03\x02\x05\x01\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 辥
+ 0x8fa6: "\x04\x01\x04\x03\x01\x01\x03\x05\x03\x04\x01\x04\x03\x01\x01\x02", // 辦
+ 0x8fa7: "\x04\x01\x04\x03\x01\x01\x03\x05\x03\x04\x01\x04\x03\x01\x01\x02", // 辧
+ 0x8fa8: "\x04\x01\x04\x03\x01\x01\x03\x04\x03\x04\x01\x04\x03\x01\x01\x02", // 辨
+ 0x8fa9: "\x04\x01\x04\x03\x01\x01\x03\x04\x05\x04\x01\x04\x03\x01\x01\x02", // 辩
+ 0x8faa: "\x02\x01\x02\x01\x03\x02\x05\x01\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 辪
+ 0x8fab: "\x04\x01\x04\x03\x01\x01\x03\x05\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 辫
+ 0x8fac: "\x04\x01\x04\x03\x01\x01\x03\x04\x01\x03\x04\x04\x01\x04\x03\x01\x01\x02", // 辬
+ 0x8fad: "\x03\x04\x04\x03\x05\x04\x02\x05\x05\x04\x05\x04\x04\x01\x04\x03\x01\x01\x02", // 辭
+ 0x8fae: "\x04\x01\x04\x03\x01\x01\x03\x05\x05\x04\x02\x03\x04\x04\x01\x04\x03\x01\x01\x02", // 辮
+ 0x8faf: "\x04\x01\x04\x03\x01\x01\x03\x04\x01\x01\x01\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 辯
+ 0x8fb0: "\x01\x03\x01\x01\x05\x03\x04", // 辰
+ 0x8fb1: "\x01\x03\x01\x01\x05\x03\x04\x01\x02\x04", // 辱
+ 0x8fb2: "\x02\x05\x01\x02\x02\x01\x01\x03\x01\x01\x05\x03\x04", // 農
+ 0x8fb3: "\x01\x02\x03\x04\x01\x02\x03\x04\x01\x03\x01\x01\x05\x03\x04", // 辳
+ 0x8fb4: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x01\x03\x01\x01\x05\x03\x04", // 辴
+ 0x8fb5: "\x03\x03\x03\x02\x01\x03\x04", // 辵
+ 0x8fb6: "\x04\x05\x04", // 辶
+ 0x8fb7: "\x01\x04\x05\x04", // 辷
+ 0x8fb8: "\x05\x03\x04\x05\x04", // 辸
+ 0x8fb9: "\x05\x03\x04\x05\x04", // 边
+ 0x8fba: "\x05\x03\x04\x05\x04", // 辺
+ 0x8fbb: "\x01\x02\x04\x05\x04", // 辻
+ 0x8fbc: "\x03\x04\x04\x05\x04", // 込
+ 0x8fbd: "\x05\x02\x04\x05\x04", // 辽
+ 0x8fbe: "\x01\x03\x04\x04\x05\x04", // 达
+ 0x8fbf: "\x02\x05\x02\x04\x05\x04", // 辿
+ 0x8fc0: "\x01\x01\x02\x04\x05\x04", // 迀
+ 0x8fc1: "\x03\x01\x02\x04\x05\x04", // 迁
+ 0x8fc2: "\x01\x01\x02\x04\x05\x04", // 迂
+ 0x8fc3: "\x01\x01\x05\x04\x05\x04", // 迃
+ 0x8fc4: "\x03\x01\x05\x04\x05\x04", // 迄
+ 0x8fc5: "\x05\x01\x02\x04\x05\x04", // 迅
+ 0x8fc6: "\x05\x02\x05\x04\x05\x04", // 迆
+ 0x8fc7: "\x01\x02\x04\x04\x05\x04", // 过
+ 0x8fc8: "\x01\x05\x03\x04\x05\x04", // 迈
+ 0x8fc9: "\x05\x01\x03\x04\x05\x04", // 迉
+ 0x8fca: "\x01\x02\x05\x02\x04\x05\x04", // 迊
+ 0x8fcb: "\x01\x01\x02\x01\x04\x05\x04", // 迋
+ 0x8fcc: "\x03\x05\x01\x01\x04\x05\x04", // 迌
+ 0x8fcd: "\x01\x05\x02\x05\x04\x05\x04", // 迍
+ 0x8fce: "\x03\x05\x05\x02\x04\x05\x04", // 迎
+ 0x8fcf: "\x01\x03\x04\x04\x04\x05\x04", // 迏
+ 0x8fd0: "\x01\x01\x05\x04\x04\x05\x04", // 运
+ 0x8fd1: "\x03\x03\x01\x02\x04\x05\x04", // 近
+ 0x8fd2: "\x04\x01\x03\x05\x04\x05\x04", // 迒
+ 0x8fd3: "\x01\x05\x02\x03\x04\x05\x04", // 迓
+ 0x8fd4: "\x03\x03\x05\x04\x04\x05\x04", // 返
+ 0x8fd5: "\x03\x01\x01\x02\x04\x05\x04", // 迕
+ 0x8fd6: "\x01\x03\x04\x04\x04\x05\x04", // 迖
+ 0x8fd7: "\x01\x01\x03\x04\x04\x05\x04", // 迗
+ 0x8fd8: "\x01\x03\x02\x04\x04\x05\x04", // 还
+ 0x8fd9: "\x04\x01\x03\x04\x04\x05\x04", // 这
+ 0x8fda: "\x02\x05\x01\x02\x04\x05\x04", // 迚
+ 0x8fdb: "\x01\x01\x03\x02\x04\x05\x04", // 进
+ 0x8fdc: "\x01\x01\x03\x05\x04\x05\x04", // 远
+ 0x8fdd: "\x01\x01\x05\x02\x04\x05\x04", // 违
+ 0x8fde: "\x01\x05\x01\x02\x04\x05\x04", // 连
+ 0x8fdf: "\x05\x01\x03\x04\x04\x05\x04", // 迟
+ 0x8fe0: "\x02\x01\x02\x05\x01\x04\x05\x04", // 迠
+ 0x8fe1: "\x05\x01\x03\x03\x05\x04\x05\x04", // 迡
+ 0x8fe2: "\x05\x03\x02\x05\x01\x04\x05\x04", // 迢
+ 0x8fe3: "\x01\x02\x02\x01\x05\x04\x05\x04", // 迣
+ 0x8fe4: "\x03\x01\x05\x02\x05\x04\x05\x04", // 迤
+ 0x8fe5: "\x02\x05\x02\x05\x01\x04\x05\x04", // 迥
+ 0x8fe6: "\x05\x03\x02\x05\x01\x04\x05\x04", // 迦
+ 0x8fe7: "\x02\x05\x01\x01\x02\x04\x05\x04", // 迧
+ 0x8fe8: "\x05\x04\x02\x05\x01\x04\x05\x04", // 迨
+ 0x8fe9: "\x03\x05\x02\x03\x04\x04\x05\x04", // 迩
+ 0x8fea: "\x02\x05\x01\x02\x01\x04\x05\x04", // 迪
+ 0x8feb: "\x03\x02\x05\x01\x01\x04\x05\x04", // 迫
+ 0x8fec: "\x04\x01\x01\x02\x01\x04\x05\x04", // 迬
+ 0x8fed: "\x03\x01\x01\x03\x04\x04\x05\x04", // 迭
+ 0x8fee: "\x03\x01\x02\x01\x01\x04\x05\x04", // 迮
+ 0x8fef: "\x03\x05\x04\x02\x04\x04\x05\x04", // 迯
+ 0x8ff0: "\x01\x02\x03\x04\x04\x04\x05\x04", // 述
+ 0x8ff1: "\x04\x04\x05\x03\x05\x04\x05\x04", // 迱
+ 0x8ff2: "\x01\x02\x01\x05\x04\x04\x05\x04", // 迲
+ 0x8ff3: "\x05\x04\x01\x02\x01\x04\x05\x04", // 迳
+ 0x8ff4: "\x02\x05\x02\x05\x01\x01\x04\x05\x04", // 迴
+ 0x8ff5: "\x02\x05\x01\x02\x05\x01\x04\x05\x04", // 迵
+ 0x8ff6: "\x01\x03\x02\x05\x01\x01\x04\x05\x04", // 迶
+ 0x8ff7: "\x04\x03\x01\x02\x03\x04\x04\x05\x04", // 迷
+ 0x8ff8: "\x04\x03\x01\x01\x03\x02\x04\x05\x04", // 迸
+ 0x8ff9: "\x04\x01\x03\x02\x03\x04\x04\x05\x04", // 迹
+ 0x8ffa: "\x01\x02\x05\x03\x05\x01\x04\x05\x04", // 迺
+ 0x8ffb: "\x03\x05\x04\x03\x05\x04\x04\x05\x04", // 迻
+ 0x8ffc: "\x01\x02\x01\x02\x05\x01\x04\x05\x04", // 迼
+ 0x8ffd: "\x03\x02\x05\x01\x05\x01\x04\x05\x04", // 追
+ 0x8ffe: "\x01\x03\x05\x04\x02\x02\x04\x05\x04", // 迾
+ 0x8fff: "\x03\x05\x02\x05\x01\x01\x04\x05\x04", // 迿
+ 0x9000: "\x05\x01\x01\x05\x03\x04\x04\x05\x04", // 退
+ 0x9001: "\x04\x03\x01\x01\x03\x04\x04\x05\x04", // 送
+ 0x9002: "\x03\x01\x02\x02\x05\x01\x04\x05\x04", // 适
+ 0x9003: "\x03\x04\x01\x05\x03\x04\x04\x05\x04", // 逃
+ 0x9004: "\x03\x05\x04\x01\x05\x02\x04\x05\x04", // 逄
+ 0x9005: "\x03\x03\x01\x02\x05\x01\x04\x05\x04", // 逅
+ 0x9006: "\x04\x03\x01\x05\x02\x03\x04\x05\x04", // 逆
+ 0x9007: "\x01\x02\x01\x05\x02\x05\x04\x05\x04", // 逇
+ 0x9008: "\x03\x02\x05\x02\x05\x01\x04\x05\x04", // 逈
+ 0x9009: "\x03\x01\x02\x01\x03\x05\x04\x05\x04", // 选
+ 0x900a: "\x05\x02\x01\x02\x03\x04\x04\x05\x04", // 逊
+ 0x900b: "\x01\x02\x05\x01\x01\x02\x04\x04\x05\x04", // 逋
+ 0x900c: "\x02\x01\x02\x05\x05\x01\x01\x04\x05\x04", // 逌
+ 0x900d: "\x02\x04\x03\x02\x05\x01\x01\x04\x05\x04", // 逍
+ 0x900e: "\x01\x02\x05\x03\x05\x01\x01\x04\x05\x04", // 逎
+ 0x900f: "\x03\x01\x02\x03\x04\x05\x03\x04\x05\x04", // 透
+ 0x9010: "\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 逐
+ 0x9011: "\x01\x02\x04\x01\x03\x04\x04\x04\x05\x04", // 逑
+ 0x9012: "\x04\x03\x05\x01\x05\x02\x03\x04\x05\x04", // 递
+ 0x9013: "\x03\x03\x01\x01\x02\x05\x02\x04\x05\x04", // 逓
+ 0x9014: "\x03\x04\x01\x01\x02\x03\x04\x04\x05\x04", // 途
+ 0x9015: "\x01\x05\x05\x05\x01\x02\x01\x04\x05\x04", // 逕
+ 0x9016: "\x03\x05\x03\x04\x03\x03\x04\x04\x05\x04", // 逖
+ 0x9017: "\x01\x02\x05\x01\x04\x03\x01\x04\x05\x04", // 逗
+ 0x9018: "\x05\x04\x03\x01\x01\x03\x04\x04\x05\x04", // 逘
+ 0x9019: "\x04\x01\x01\x01\x02\x05\x01\x04\x05\x04", // 這
+ 0x901a: "\x05\x04\x02\x05\x01\x01\x02\x04\x05\x04", // 通
+ 0x901b: "\x03\x05\x03\x01\x01\x02\x01\x04\x05\x04", // 逛
+ 0x901c: "\x01\x02\x05\x01\x02\x05\x01\x04\x05\x04", // 逜
+ 0x901d: "\x01\x02\x01\x03\x03\x01\x02\x04\x05\x04", // 逝
+ 0x901e: "\x02\x05\x01\x01\x01\x02\x01\x04\x05\x04", // 逞
+ 0x901f: "\x01\x02\x05\x01\x02\x03\x04\x04\x05\x04", // 速
+ 0x9020: "\x03\x01\x02\x01\x02\x05\x01\x04\x05\x04", // 造
+ 0x9021: "\x05\x04\x03\x04\x03\x05\x04\x04\x05\x04", // 逡
+ 0x9022: "\x03\x05\x04\x01\x01\x01\x02\x04\x05\x04", // 逢
+ 0x9023: "\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 連
+ 0x9024: "\x04\x04\x01\x02\x03\x04\x03\x04\x05\x04", // 逤
+ 0x9025: "\x02\x05\x02\x02\x01\x01\x01\x04\x05\x04", // 逥
+ 0x9026: "\x01\x02\x05\x04\x02\x05\x04\x04\x05\x04", // 逦
+ 0x9027: "\x03\x04\x03\x04\x02\x05\x01\x04\x05\x04", // 逧
+ 0x9028: "\x01\x03\x04\x03\x04\x02\x03\x04\x04\x05\x04", // 逨
+ 0x9029: "\x01\x03\x04\x01\x02\x01\x03\x02\x04\x05\x04", // 逩
+ 0x902a: "\x01\x02\x02\x01\x02\x05\x01\x01\x04\x05\x04", // 逪
+ 0x902b: "\x05\x04\x05\x04\x05\x04\x05\x04\x04\x05\x04", // 逫
+ 0x902c: "\x03\x01\x01\x03\x03\x01\x01\x02\x04\x05\x04", // 逬
+ 0x902d: "\x04\x04\x05\x02\x05\x01\x05\x01\x04\x05\x04", // 逭
+ 0x902e: "\x05\x01\x01\x02\x04\x01\x03\x04\x04\x05\x04", // 逮
+ 0x902f: "\x05\x01\x01\x02\x04\x01\x03\x04\x04\x05\x04", // 逯
+ 0x9030: "\x01\x02\x01\x03\x01\x05\x02\x01\x04\x05\x04", // 逰
+ 0x9031: "\x03\x05\x01\x02\x01\x02\x05\x01\x04\x05\x04", // 週
+ 0x9032: "\x03\x02\x04\x01\x01\x01\x02\x01\x04\x05\x04", // 進
+ 0x9033: "\x04\x01\x05\x04\x02\x05\x01\x01\x04\x05\x04", // 逳
+ 0x9034: "\x02\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 逴
+ 0x9035: "\x01\x02\x01\x03\x04\x01\x02\x01\x04\x05\x04", // 逵
+ 0x9036: "\x03\x01\x02\x03\x04\x05\x03\x01\x04\x05\x04", // 逶
+ 0x9037: "\x02\x05\x01\x01\x03\x05\x03\x03\x04\x05\x04", // 逷
+ 0x9038: "\x03\x05\x02\x05\x01\x03\x05\x04\x04\x05\x04", // 逸
+ 0x9039: "\x01\x02\x01\x04\x03\x01\x01\x02\x04\x05\x04", // 逹
+ 0x903a: "\x01\x02\x01\x05\x03\x02\x03\x04\x04\x05\x04", // 逺
+ 0x903b: "\x02\x05\x02\x02\x01\x03\x05\x04\x04\x05\x04", // 逻
+ 0x903c: "\x01\x02\x05\x01\x02\x05\x01\x02\x01\x04\x05\x04", // 逼
+ 0x903d: "\x01\x02\x02\x01\x03\x02\x05\x01\x04\x05\x04", // 逽
+ 0x903e: "\x03\x04\x01\x02\x05\x01\x01\x02\x02\x04\x05\x04", // 逾
+ 0x903f: "\x02\x05\x01\x01\x01\x03\x05\x03\x03\x04\x05\x04", // 逿
+ 0x9040: "\x01\x03\x01\x02\x01\x02\x05\x01\x01\x04\x05\x04", // 遀
+ 0x9041: "\x03\x03\x01\x02\x02\x05\x01\x01\x01\x04\x05\x04", // 遁
+ 0x9042: "\x04\x03\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 遂
+ 0x9043: "\x04\x01\x04\x03\x01\x03\x03\x03\x03\x04\x05\x04", // 遃
+ 0x9044: "\x02\x05\x02\x01\x03\x02\x05\x02\x02\x04\x05\x04", // 遄
+ 0x9045: "\x05\x01\x03\x04\x03\x01\x01\x01\x02\x04\x05\x04", // 遅
+ 0x9046: "\x04\x01\x04\x03\x04\x05\x02\x05\x02\x04\x05\x04", // 遆
+ 0x9047: "\x02\x05\x01\x01\x02\x05\x02\x01\x04\x04\x05\x04", // 遇
+ 0x9048: "\x02\x05\x01\x01\x01\x02\x01\x03\x04\x04\x05\x04", // 遈
+ 0x9049: "\x02\x01\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04", // 遉
+ 0x904a: "\x04\x01\x05\x03\x03\x01\x05\x02\x01\x04\x05\x04", // 遊
+ 0x904b: "\x04\x05\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 運
+ 0x904c: "\x02\x05\x01\x02\x05\x01\x01\x01\x05\x04\x05\x04", // 遌
+ 0x904d: "\x04\x05\x01\x03\x02\x05\x01\x02\x02\x04\x05\x04", // 遍
+ 0x904e: "\x02\x05\x05\x02\x05\x02\x05\x01\x04\x05\x04", // 過
+ 0x904f: "\x02\x05\x01\x01\x03\x05\x03\x04\x05\x04\x05\x04", // 遏
+ 0x9050: "\x05\x01\x02\x01\x01\x05\x01\x05\x04\x04\x05\x04", // 遐
+ 0x9051: "\x03\x02\x05\x01\x01\x01\x01\x02\x01\x04\x05\x04", // 遑
+ 0x9052: "\x04\x03\x01\x02\x05\x03\x05\x01\x01\x04\x05\x04", // 遒
+ 0x9053: "\x04\x03\x01\x03\x02\x05\x01\x01\x01\x04\x05\x04", // 道
+ 0x9054: "\x01\x02\x01\x04\x03\x01\x01\x01\x02\x04\x05\x04", // 達
+ 0x9055: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x04\x05\x04", // 違
+ 0x9056: "\x01\x02\x02\x05\x04\x03\x01\x01\x02\x04\x05\x04", // 遖
+ 0x9057: "\x02\x05\x01\x02\x01\x02\x05\x03\x04\x04\x05\x04", // 遗
+ 0x9058: "\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01\x04\x05\x04", // 遘
+ 0x9059: "\x03\x05\x04\x04\x03\x01\x01\x02\x05\x02\x04\x05\x04", // 遙
+ 0x905a: "\x03\x02\x01\x05\x01\x01\x02\x05\x04\x04\x05\x04", // 遚
+ 0x905b: "\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01\x04\x05\x04", // 遛
+ 0x905c: "\x05\x02\x01\x03\x05\x05\x04\x02\x03\x04\x04\x05\x04", // 遜
+ 0x905d: "\x02\x05\x02\x02\x01\x02\x03\x03\x04\x04\x04\x05\x04", // 遝
+ 0x905e: "\x03\x03\x02\x01\x05\x03\x01\x05\x03\x05\x04\x05\x04", // 遞
+ 0x905f: "\x05\x01\x03\x04\x01\x04\x03\x01\x01\x02\x04\x05\x04", // 遟
+ 0x9060: "\x01\x02\x01\x02\x05\x01\x03\x02\x03\x04\x04\x05\x04", // 遠
+ 0x9061: "\x04\x03\x01\x05\x02\x03\x03\x05\x01\x01\x04\x05\x04", // 遡
+ 0x9062: "\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01\x04\x05\x04", // 遢
+ 0x9063: "\x02\x05\x01\x02\x01\x02\x05\x01\x05\x01\x04\x05\x04", // 遣
+ 0x9064: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x05\x04", // 遤
+ 0x9065: "\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02\x04\x05\x04", // 遥
+ 0x9066: "\x05\x05\x02\x01\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04", // 遦
+ 0x9067: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 遧
+ 0x9068: "\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04\x04\x05\x04", // 遨
+ 0x9069: "\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01\x04\x05\x04", // 適
+ 0x906a: "\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03\x04\x05\x04", // 遪
+ 0x906b: "\x01\x02\x05\x01\x02\x03\x04\x03\x01\x03\x04\x04\x05\x04", // 遫
+ 0x906c: "\x01\x02\x05\x01\x02\x03\x04\x03\x05\x03\x04\x04\x05\x04", // 遬
+ 0x906d: "\x01\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01\x04\x05\x04", // 遭
+ 0x906e: "\x04\x01\x03\x01\x02\x02\x01\x04\x04\x04\x04\x04\x05\x04", // 遮
+ 0x906f: "\x03\x05\x01\x01\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 遯
+ 0x9070: "\x01\x03\x02\x02\x01\x05\x04\x05\x02\x05\x02\x04\x05\x04", // 遰
+ 0x9071: "\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01\x04\x05\x04", // 遱
+ 0x9072: "\x05\x01\x03\x02\x04\x01\x03\x04\x03\x01\x01\x02\x04\x05\x04", // 遲
+ 0x9073: "\x01\x02\x02\x03\x04\x03\x04\x01\x02\x01\x04\x05\x04", // 遳
+ 0x9074: "\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02\x04\x05\x04", // 遴
+ 0x9075: "\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x02\x04\x04\x05\x04", // 遵
+ 0x9076: "\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05\x04\x05\x04", // 遶
+ 0x9077: "\x01\x02\x05\x02\x02\x01\x01\x03\x04\x05\x01\x05\x04\x05\x04", // 遷
+ 0x9078: "\x05\x01\x05\x05\x01\x05\x01\x02\x02\x01\x03\x04\x04\x05\x04", // 選
+ 0x9079: "\x05\x04\x05\x02\x03\x02\x05\x03\x04\x02\x05\x01\x04\x05\x04", // 遹
+ 0x907a: "\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04", // 遺
+ 0x907b: "\x02\x05\x01\x02\x05\x01\x04\x03\x01\x05\x02\x03\x04\x05\x04", // 遻
+ 0x907c: "\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04\x04\x05\x04", // 遼
+ 0x907d: "\x02\x01\x05\x03\x01\x05\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 遽
+ 0x907e: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x03\x04\x01\x04\x05\x04", // 遾
+ 0x907f: "\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x04\x05\x04", // 避
+ 0x9080: "\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x03\x04\x04\x05\x04", // 邀
+ 0x9081: "\x01\x02\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04\x04\x05\x04", // 邁
+ 0x9082: "\x03\x05\x03\x05\x01\x01\x02\x05\x03\x03\x01\x01\x02\x04\x05\x04", // 邂
+ 0x9083: "\x04\x04\x05\x03\x04\x04\x03\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 邃
+ 0x9084: "\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x02\x03\x04\x04\x05\x04", // 還
+ 0x9085: "\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01\x04\x05\x04", // 邅
+ 0x9086: "\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01\x04\x05\x04", // 邆
+ 0x9087: "\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04\x04\x05\x04", // 邇
+ 0x9088: "\x03\x04\x04\x03\x05\x03\x03\x03\x02\x05\x01\x01\x03\x05\x04\x05\x04", // 邈
+ 0x9089: "\x03\x02\x05\x01\x01\x01\x04\x04\x05\x03\x04\x02\x05\x01\x04\x05\x04", // 邉
+ 0x908a: "\x03\x02\x05\x01\x01\x01\x04\x04\x05\x03\x04\x04\x01\x05\x03\x04\x05\x04", // 邊
+ 0x908b: "\x05\x05\x05\x02\x05\x03\x04\x01\x05\x04\x04\x05\x04\x04\x05\x04\x05\x04", // 邋
+ 0x908c: "\x03\x01\x02\x03\x04\x03\x05\x03\x03\x04\x02\x04\x01\x03\x04\x04\x05\x04", // 邌
+ 0x908d: "\x03\x05\x04\x02\x05\x01\x02\x01\x05\x01\x01\x02\x04\x01\x03\x04\x04\x05\x04", // 邍
+ 0x908e: "\x03\x05\x04\x04\x04\x01\x01\x01\x02\x05\x01\x03\x05\x05\x04\x02\x03\x04\x04\x05\x04", // 邎
+ 0x908f: "\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01\x04\x05\x04", // 邏
+ 0x9090: "\x01\x02\x05\x04\x01\x02\x05\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x04\x05\x04", // 邐
+ 0x9091: "\x02\x05\x01\x05\x02\x01\x05", // 邑
+ 0x9092: "\x01\x02\x05\x02", // 邒
+ 0x9093: "\x05\x04\x05\x02", // 邓
+ 0x9094: "\x05\x01\x05\x05\x02", // 邔
+ 0x9095: "\x05\x05\x05\x02\x05\x01\x05\x02\x01\x05", // 邕
+ 0x9096: "\x02\x05\x02\x05\x02", // 邖
+ 0x9097: "\x01\x01\x02\x05\x02", // 邗
+ 0x9098: "\x01\x01\x02\x05\x02", // 邘
+ 0x9099: "\x04\x01\x05\x05\x02", // 邙
+ 0x909a: "\x05\x03\x01\x05\x02", // 邚
+ 0x909b: "\x01\x02\x01\x05\x02", // 邛
+ 0x909c: "\x03\x05\x04\x05\x02", // 邜
+ 0x909d: "\x04\x01\x03\x05\x02", // 邝
+ 0x909e: "\x01\x01\x03\x04\x05\x02", // 邞
+ 0x909f: "\x04\x01\x03\x05\x05\x02", // 邟
+ 0x90a0: "\x03\x04\x05\x03\x05\x02", // 邠
+ 0x90a1: "\x04\x01\x05\x03\x05\x02", // 邡
+ 0x90a2: "\x01\x01\x03\x02\x05\x02", // 邢
+ 0x90a3: "\x05\x01\x01\x03\x05\x02", // 那
+ 0x90a4: "\x03\x03\x01\x02\x05\x02", // 邤
+ 0x90a5: "\x04\x05\x03\x05\x05\x02", // 邥
+ 0x90a6: "\x01\x01\x01\x03\x05\x02", // 邦
+ 0x90a7: "\x01\x01\x03\x05\x05\x02", // 邧
+ 0x90a8: "\x01\x05\x02\x05\x05\x02", // 邨
+ 0x90a9: "\x04\x03\x03\x04\x05\x02", // 邩
+ 0x90aa: "\x01\x05\x02\x03\x05\x02", // 邪
+ 0x90ab: "\x01\x01\x01\x03\x02\x05\x01\x05\x02\x01\x05", // 邫
+ 0x90ac: "\x03\x05\x05\x01\x05\x02", // 邬
+ 0x90ad: "\x03\x05\x02\x05\x01\x05\x02", // 邭
+ 0x90ae: "\x02\x05\x01\x02\x01\x05\x02", // 邮
+ 0x90af: "\x01\x02\x02\x01\x01\x05\x02", // 邯
+ 0x90b0: "\x05\x04\x02\x05\x01\x05\x02", // 邰
+ 0x90b1: "\x03\x02\x01\x02\x01\x05\x02", // 邱
+ 0x90b2: "\x04\x05\x04\x03\x04\x05\x02", // 邲
+ 0x90b3: "\x01\x03\x02\x04\x01\x05\x02", // 邳
+ 0x90b4: "\x01\x02\x05\x03\x04\x05\x02", // 邴
+ 0x90b5: "\x05\x03\x02\x05\x01\x05\x02", // 邵
+ 0x90b6: "\x02\x01\x01\x03\x05\x05\x02", // 邶
+ 0x90b7: "\x01\x05\x05\x04\x05\x02", // 邷
+ 0x90b8: "\x03\x05\x01\x05\x04\x05\x02", // 邸
+ 0x90b9: "\x03\x05\x05\x01\x01\x05\x02", // 邹
+ 0x90ba: "\x02\x02\x04\x03\x01\x05\x02", // 邺
+ 0x90bb: "\x03\x04\x04\x05\x04\x05\x02", // 邻
+ 0x90bc: "\x01\x01\x01\x02\x01\x05\x05\x02", // 邼
+ 0x90bd: "\x01\x02\x01\x01\x02\x01\x05\x02", // 邽
+ 0x90be: "\x03\x01\x01\x02\x03\x04\x05\x02", // 邾
+ 0x90bf: "\x01\x02\x01\x01\x02\x04\x05\x02", // 邿
+ 0x90c0: "\x01\x03\x04\x01\x01\x05\x05\x02", // 郀
+ 0x90c1: "\x01\x03\x02\x05\x01\x01\x05\x02", // 郁
+ 0x90c2: "\x04\x01\x05\x03\x03\x04\x05\x02", // 郂
+ 0x90c3: "\x03\x04\x01\x02\x05\x01\x05\x02", // 郃
+ 0x90c4: "\x03\x04\x01\x03\x05\x04\x05\x02", // 郄
+ 0x90c5: "\x01\x05\x04\x01\x02\x01\x05\x02", // 郅
+ 0x90c6: "\x01\x02\x01\x02\x05\x01\x05\x02", // 郆
+ 0x90c7: "\x03\x05\x02\x05\x01\x01\x05\x02", // 郇
+ 0x90c8: "\x03\x03\x01\x02\x05\x01\x05\x02", // 郈
+ 0x90c9: "\x01\x01\x03\x01\x01\x02\x05\x02", // 郉
+ 0x90ca: "\x04\x01\x03\x04\x03\x04\x05\x02", // 郊
+ 0x90cb: "\x03\x02\x05\x01\x01\x01\x05\x02", // 郋
+ 0x90cc: "\x01\x02\x01\x01\x02\x01\x02\x05\x01\x05\x02\x01\x05", // 郌
+ 0x90cd: "\x03\x03\x05\x04\x01\x04\x05\x02", // 郍
+ 0x90ce: "\x04\x05\x01\x01\x05\x04\x05\x02", // 郎
+ 0x90cf: "\x01\x04\x03\x01\x03\x04\x05\x02", // 郏
+ 0x90d0: "\x03\x04\x01\x01\x05\x04\x05\x02", // 郐
+ 0x90d1: "\x04\x03\x01\x01\x03\x04\x05\x02", // 郑
+ 0x90d2: "\x04\x05\x01\x01\x05\x04\x02\x05\x01\x05\x02\x01\x05", // 郒
+ 0x90d3: "\x04\x05\x01\x05\x02\x01\x05\x02", // 郓
+ 0x90d4: "\x03\x02\x01\x05\x05\x04\x05\x02", // 郔
+ 0x90d5: "\x01\x03\x05\x05\x03\x04\x05\x02", // 郕
+ 0x90d6: "\x01\x02\x05\x01\x04\x03\x01\x05\x02", // 郖
+ 0x90d7: "\x03\x04\x01\x03\x02\x05\x02\x05\x02", // 郗
+ 0x90d8: "\x02\x05\x01\x02\x05\x01\x05\x02", // 郘
+ 0x90d9: "\x01\x02\x05\x01\x01\x02\x04\x05\x02", // 郙
+ 0x90da: "\x01\x02\x05\x01\x02\x05\x01\x05\x02", // 郚
+ 0x90db: "\x03\x04\x04\x03\x05\x02\x01\x05\x02", // 郛
+ 0x90dc: "\x03\x01\x02\x01\x02\x05\x01\x05\x02", // 郜
+ 0x90dd: "\x01\x02\x01\x03\x02\x03\x04\x05\x02", // 郝
+ 0x90de: "\x04\x05\x01\x01\x05\x03\x04\x05\x02", // 郞
+ 0x90df: "\x01\x03\x04\x03\x04\x03\x04\x05\x02", // 郟
+ 0x90e0: "\x01\x02\x05\x01\x01\x03\x04\x05\x02", // 郠
+ 0x90e1: "\x05\x01\x01\x03\x02\x05\x01\x05\x02", // 郡
+ 0x90e2: "\x02\x05\x01\x01\x01\x02\x01\x05\x02", // 郢
+ 0x90e3: "\x01\x02\x04\x05\x05\x02\x01\x05\x02", // 郣
+ 0x90e4: "\x03\x04\x03\x04\x02\x05\x01\x05\x02", // 郤
+ 0x90e5: "\x02\x05\x01\x01\x01\x03\x04\x05\x02", // 郥
+ 0x90e6: "\x01\x02\x05\x04\x02\x05\x04\x05\x02", // 郦
+ 0x90e7: "\x02\x05\x01\x02\x05\x03\x04\x05\x02", // 郧
+ 0x90e8: "\x04\x01\x04\x03\x01\x02\x05\x01\x05\x02", // 部
+ 0x90e9: "\x03\x04\x01\x03\x02\x05\x01\x01\x05\x02", // 郩
+ 0x90ea: "\x01\x05\x01\x01\x02\x05\x03\x01\x05\x02", // 郪
+ 0x90eb: "\x03\x02\x05\x01\x01\x03\x01\x02\x05\x02", // 郫
+ 0x90ec: "\x01\x01\x02\x01\x02\x05\x01\x01\x05\x02", // 郬
+ 0x90ed: "\x04\x01\x02\x05\x01\x05\x02\x01\x05\x02", // 郭
+ 0x90ee: "\x03\x05\x01\x02\x01\x02\x05\x01\x05\x02", // 郮
+ 0x90ef: "\x04\x03\x03\x04\x04\x03\x03\x04\x05\x02", // 郯
+ 0x90f0: "\x01\x02\x02\x01\x01\x01\x05\x04\x05\x02", // 郰
+ 0x90f1: "\x04\x03\x01\x01\x03\x02\x05\x02", // 郱
+ 0x90f2: "\x01\x03\x04\x03\x04\x02\x03\x04\x05\x02", // 郲
+ 0x90f3: "\x03\x02\x01\x05\x01\x01\x03\x05\x05\x02", // 郳
+ 0x90f4: "\x01\x02\x03\x04\x01\x02\x03\x04\x05\x02", // 郴
+ 0x90f5: "\x03\x01\x02\x01\x02\x02\x01\x01\x05\x02", // 郵
+ 0x90f6: "\x04\x01\x04\x03\x01\x02\x05\x01\x02\x05\x01\x05\x02\x01\x05", // 郶
+ 0x90f7: "\x05\x05\x03\x05\x01\x01\x05\x04\x05\x02", // 郷
+ 0x90f8: "\x04\x03\x02\x05\x01\x01\x01\x02\x05\x02", // 郸
+ 0x90f9: "\x02\x05\x01\x01\x01\x01\x03\x04\x04\x05\x02", // 郹
+ 0x90fa: "\x03\x05\x04\x03\x05\x04\x05\x05\x05\x02\x05\x01\x05\x02\x01\x05", // 郺
+ 0x90fb: "\x02\x05\x01\x01\x01\x05\x05\x05\x05\x05\x02", // 郻
+ 0x90fc: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x05\x02", // 郼
+ 0x90fd: "\x01\x02\x01\x03\x02\x05\x01\x01\x05\x02", // 都
+ 0x90fe: "\x01\x02\x05\x01\x01\x05\x03\x01\x05\x05\x02", // 郾
+ 0x90ff: "\x05\x02\x01\x03\x02\x05\x01\x01\x01\x05\x02", // 郿
+ 0x9100: "\x01\x02\x02\x01\x03\x02\x05\x01\x05\x02", // 鄀
+ 0x9101: "\x02\x01\x01\x03\x05\x02\x05\x01\x01\x05\x02", // 鄁
+ 0x9102: "\x02\x05\x01\x02\x05\x01\x01\x01\x05\x05\x02", // 鄂
+ 0x9103: "\x03\x04\x01\x02\x05\x01\x01\x02\x02\x05\x02", // 鄃
+ 0x9104: "\x01\x02\x05\x02\x02\x01\x01\x02\x01\x05\x02", // 鄄
+ 0x9105: "\x03\x02\x05\x01\x02\x05\x02\x01\x04\x05\x02", // 鄅
+ 0x9106: "\x04\x05\x01\x02\x05\x01\x01\x01\x02\x05\x02", // 鄆
+ 0x9107: "\x03\x02\x05\x01\x03\x01\x01\x03\x04\x05\x02", // 鄇
+ 0x9108: "\x05\x04\x03\x03\x04\x01\x01\x03\x04\x05\x02", // 鄈
+ 0x9109: "\x05\x05\x03\x04\x05\x01\x01\x05\x04\x05\x02", // 鄉
+ 0x910a: "\x05\x05\x03\x01\x02\x02\x01\x01\x01\x05\x02", // 鄊
+ 0x910b: "\x03\x02\x01\x05\x01\x01\x02\x05\x04\x05\x02", // 鄋
+ 0x910c: "\x04\x01\x03\x05\x01\x01\x02\x02\x05\x01\x05\x02", // 鄌
+ 0x910d: "\x04\x05\x02\x05\x01\x01\x04\x01\x03\x04\x05\x02", // 鄍
+ 0x910e: "\x03\x02\x05\x01\x01\x01\x04\x05\x04\x04\x05\x02", // 鄎
+ 0x910f: "\x01\x03\x01\x01\x05\x03\x04\x01\x02\x04\x05\x02", // 鄏
+ 0x9110: "\x04\x01\x05\x05\x04\x02\x05\x01\x02\x01\x05\x02", // 鄐
+ 0x9111: "\x01\x02\x02\x04\x03\x01\x02\x05\x01\x01\x05\x02", // 鄑
+ 0x9112: "\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03\x05\x02", // 鄒
+ 0x9113: "\x03\x02\x05\x01\x01\x01\x01\x03\x04\x04\x05\x02", // 鄓
+ 0x9114: "\x03\x02\x05\x01\x01\x05\x04\x04\x04\x04\x05\x02", // 鄔
+ 0x9115: "\x05\x05\x03\x03\x02\x05\x01\x01\x03\x05\x05\x02", // 鄕
+ 0x9116: "\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04\x05\x02", // 鄖
+ 0x9117: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x05\x02", // 鄗
+ 0x9118: "\x04\x01\x03\x05\x01\x01\x02\x05\x01\x01\x02\x05\x02", // 鄘
+ 0x9119: "\x02\x05\x01\x01\x02\x02\x05\x02\x05\x01\x01\x05\x02", // 鄙
+ 0x911a: "\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04\x05\x02", // 鄚
+ 0x911b: "\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04\x05\x02", // 鄛
+ 0x911c: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x05\x02", // 鄜
+ 0x911d: "\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03\x05\x02", // 鄝
+ 0x911e: "\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01\x05\x02", // 鄞
+ 0x911f: "\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04\x05\x02", // 鄟
+ 0x9120: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x01\x05\x05\x02", // 鄠
+ 0x9121: "\x03\x02\x05\x01\x01\x01\x05\x01\x02\x03\x04\x05\x02", // 鄡
+ 0x9122: "\x01\x02\x01\x02\x01\x01\x05\x04\x04\x04\x04\x05\x02", // 鄢
+ 0x9123: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x05\x02", // 鄣
+ 0x9124: "\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04\x05\x02", // 鄤
+ 0x9125: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x05\x02", // 鄥
+ 0x9126: "\x03\x01\x01\x02\x02\x02\x02\x01\x04\x04\x04\x04\x05\x02", // 鄦
+ 0x9127: "\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01\x05\x02", // 鄧
+ 0x9128: "\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04\x02\x05\x01\x05\x02\x01\x05", // 鄨
+ 0x9129: "\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04\x05\x02", // 鄩
+ 0x912a: "\x05\x01\x05\x03\x02\x02\x05\x01\x01\x01\x03\x04\x05\x02", // 鄪
+ 0x912b: "\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01\x05\x02", // 鄫
+ 0x912c: "\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04\x05\x02", // 鄬
+ 0x912d: "\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x03\x04\x05\x02", // 鄭
+ 0x912e: "\x03\x05\x04\x05\x03\x02\x05\x01\x01\x01\x03\x04\x05\x02", // 鄮
+ 0x912f: "\x04\x03\x01\x01\x01\x02\x04\x03\x01\x02\x05\x01\x05\x02", // 鄯
+ 0x9130: "\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02\x05\x02", // 鄰
+ 0x9131: "\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x05\x02", // 鄱
+ 0x9132: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x05\x02", // 鄲
+ 0x9133: "\x02\x05\x01\x01\x02\x05\x01\x02\x01\x01\x05\x01\x01\x05\x02", // 鄳
+ 0x9134: "\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x02\x03\x04\x05\x02", // 鄴
+ 0x9135: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x05\x02", // 鄵
+ 0x9136: "\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01\x05\x02", // 鄶
+ 0x9137: "\x02\x05\x01\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01\x05\x02", // 鄷
+ 0x9138: "\x01\x02\x02\x02\x05\x02\x02\x01\x04\x05\x03\x05\x04\x05\x02", // 鄸
+ 0x9139: "\x01\x02\x02\x01\x01\x01\x05\x04\x03\x02\x03\x03\x03\x04\x05\x02", // 鄹
+ 0x913a: "\x04\x01\x03\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04\x05\x02", // 鄺
+ 0x913b: "\x01\x01\x03\x04\x01\x01\x03\x04\x01\x02\x05\x01\x01\x01\x02\x05\x02", // 鄻
+ 0x913c: "\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x05\x02", // 鄼
+ 0x913d: "\x04\x01\x03\x02\x05\x01\x01\x02\x01\x01\x03\x04\x01\x02\x01\x05\x02", // 鄽
+ 0x913e: "\x01\x03\x02\x05\x01\x01\x04\x05\x04\x05\x04\x04\x03\x05\x04\x05\x02", // 鄾
+ 0x913f: "\x01\x02\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x05\x02", // 鄿
+ 0x9140: "\x01\x02\x02\x01\x02\x05\x01\x02\x01\x01\x03\x05\x04\x04\x04\x04\x05\x02", // 酀
+ 0x9141: "\x03\x05\x02\x05\x01\x01\x05\x03\x05\x03\x05\x02\x05\x01\x03\x05\x04\x05\x02", // 酁
+ 0x9142: "\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x03\x04\x05\x02", // 酂
+ 0x9143: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05\x02", // 酃
+ 0x9144: "\x01\x02\x02\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x02", // 酄
+ 0x9145: "\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x03\x04\x02\x05\x01\x05\x02", // 酅
+ 0x9146: "\x01\x01\x01\x02\x02\x01\x01\x01\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01\x05\x02", // 酆
+ 0x9147: "\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04\x05\x02", // 酇
+ 0x9148: "\x01\x02\x05\x04\x01\x02\x05\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x05\x02", // 酈
+ 0x9149: "\x01\x02\x05\x03\x05\x01\x01", // 酉
+ 0x914a: "\x01\x02\x05\x03\x05\x01\x01\x01\x02", // 酊
+ 0x914b: "\x04\x03\x01\x02\x05\x03\x05\x01\x01", // 酋
+ 0x914c: "\x01\x02\x05\x03\x05\x01\x01\x03\x05\x04", // 酌
+ 0x914d: "\x01\x02\x05\x03\x05\x01\x01\x05\x01\x05", // 配
+ 0x914e: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x04", // 酎
+ 0x914f: "\x01\x02\x05\x03\x05\x01\x01\x05\x02\x05", // 酏
+ 0x9150: "\x01\x02\x05\x03\x05\x01\x01\x01\x01\x02", // 酐
+ 0x9151: "\x01\x02\x05\x03\x05\x01\x01\x01\x01\x02", // 酑
+ 0x9152: "\x04\x04\x01\x01\x02\x05\x03\x05\x01\x01", // 酒
+ 0x9153: "\x03\x04\x04\x05\x01\x02\x05\x03\x05\x01\x01", // 酓
+ 0x9154: "\x01\x02\x05\x03\x05\x01\x01\x03\x05\x01\x02", // 酔
+ 0x9155: "\x01\x02\x05\x03\x05\x01\x01\x03\x01\x01\x05", // 酕
+ 0x9156: "\x01\x02\x05\x03\x05\x01\x01\x04\x05\x03\x05", // 酖
+ 0x9157: "\x01\x02\x05\x03\x05\x01\x01\x03\x04\x05\x02", // 酗
+ 0x9158: "\x01\x02\x05\x03\x05\x01\x01\x03\x05\x05\x04", // 酘
+ 0x9159: "\x01\x02\x05\x03\x05\x01\x01\x04\x04\x01\x02", // 酙
+ 0x915a: "\x01\x02\x05\x03\x05\x01\x01\x03\x04\x05\x03", // 酚
+ 0x915b: "\x01\x02\x05\x03\x05\x01\x01\x01\x01\x03\x05", // 酛
+ 0x915c: "\x01\x02\x05\x03\x05\x01\x01\x01\x01\x03\x04", // 酜
+ 0x915d: "\x01\x02\x05\x03\x05\x01\x01\x01\x01\x05\x04", // 酝
+ 0x915e: "\x01\x02\x05\x03\x05\x01\x01\x01\x03\x04\x04", // 酞
+ 0x915f: "\x01\x02\x05\x03\x05\x01\x01\x02\x01\x02\x05\x01", // 酟
+ 0x9160: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x05\x01\x02", // 酠
+ 0x9161: "\x01\x02\x05\x03\x05\x01\x01\x04\x04\x05\x03\x05", // 酡
+ 0x9162: "\x01\x02\x05\x03\x05\x01\x01\x03\x01\x02\x01\x01", // 酢
+ 0x9163: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x02\x01\x01", // 酣
+ 0x9164: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x02\x05\x01", // 酤
+ 0x9165: "\x01\x02\x05\x03\x05\x01\x01\x03\x01\x02\x03\x04", // 酥
+ 0x9166: "\x01\x02\x05\x03\x05\x01\x01\x05\x03\x05\x04\x04", // 酦
+ 0x9167: "\x01\x02\x05\x03\x05\x01\x01\x04\x04\x05\x01\x02\x04", // 酧
+ 0x9168: "\x01\x02\x01\x01\x02\x05\x03\x05\x01\x01\x05\x03\x04", // 酨
+ 0x9169: "\x01\x02\x05\x03\x05\x01\x01\x03\x05\x04\x02\x05\x01", // 酩
+ 0x916a: "\x01\x02\x05\x03\x05\x01\x01\x03\x05\x04\x02\x05\x01", // 酪
+ 0x916b: "\x01\x02\x05\x03\x05\x01\x01\x03\x04\x01\x01\x02\x01", // 酫
+ 0x916c: "\x01\x02\x05\x03\x05\x01\x01\x04\x03\x04\x02\x04\x02", // 酬
+ 0x916d: "\x01\x02\x05\x03\x05\x01\x01\x01\x03\x02\x05\x01\x01", // 酭
+ 0x916e: "\x01\x02\x05\x03\x05\x01\x01\x02\x05\x01\x02\x05\x01", // 酮
+ 0x916f: "\x01\x02\x05\x03\x05\x01\x01\x03\x05\x02\x05\x01\x01", // 酯
+ 0x9170: "\x01\x02\x05\x03\x05\x01\x01\x03\x01\x02\x01\x03\x05", // 酰
+ 0x9171: "\x04\x01\x02\x03\x05\x04\x01\x02\x05\x03\x05\x01\x01", // 酱
+ 0x9172: "\x01\x02\x05\x03\x05\x01\x01\x02\x05\x01\x01\x01\x02\x01", // 酲
+ 0x9173: "\x01\x02\x05\x03\x05\x01\x01\x05\x05\x04\x02\x05\x01\x01", // 酳
+ 0x9174: "\x01\x02\x05\x03\x05\x01\x01\x03\x04\x01\x01\x02\x03\x04", // 酴
+ 0x9175: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x01\x03\x05\x02\x01", // 酵
+ 0x9176: "\x01\x02\x05\x03\x05\x01\x01\x03\x01\x05\x05\x04\x01\x04", // 酶
+ 0x9177: "\x01\x02\x05\x03\x05\x01\x01\x03\x01\x02\x01\x02\x05\x01", // 酷
+ 0x9178: "\x01\x02\x05\x03\x05\x01\x01\x05\x04\x03\x04\x03\x05\x04", // 酸
+ 0x9179: "\x01\x02\x05\x03\x05\x01\x01\x03\x04\x04\x03\x01\x02\x04", // 酹
+ 0x917a: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x05\x01\x01\x02\x04", // 酺
+ 0x917b: "\x01\x02\x05\x03\x05\x01\x01\x03\x04\x04\x03\x05\x02\x01", // 酻
+ 0x917c: "\x01\x02\x05\x03\x05\x01\x01\x04\x01\x05\x04\x03\x02\x05", // 酼
+ 0x917d: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x02\x04\x03\x01\x03", // 酽
+ 0x917e: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x05\x04\x02\x05\x04", // 酾
+ 0x917f: "\x01\x02\x05\x03\x05\x01\x01\x04\x05\x01\x01\x05\x03\x04", // 酿
+ 0x9180: "\x01\x02\x05\x03\x05\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 醀
+ 0x9181: "\x01\x02\x05\x03\x05\x01\x01\x05\x01\x01\x02\x04\x01\x03\x04", // 醁
+ 0x9182: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x03\x04\x01\x02\x03\x04", // 醂
+ 0x9183: "\x01\x02\x05\x03\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x05", // 醃
+ 0x9184: "\x01\x02\x05\x03\x05\x01\x01\x03\x05\x03\x01\x01\x02\x05\x02", // 醄
+ 0x9185: "\x01\x02\x05\x03\x05\x01\x01\x04\x01\x04\x03\x01\x02\x05\x01", // 醅
+ 0x9186: "\x01\x02\x05\x03\x05\x01\x01\x01\x05\x03\x04\x01\x05\x03\x04", // 醆
+ 0x9187: "\x01\x02\x05\x03\x05\x01\x01\x04\x01\x02\x05\x01\x05\x02\x01", // 醇
+ 0x9188: "\x01\x02\x05\x03\x05\x01\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 醈
+ 0x9189: "\x01\x02\x05\x03\x05\x01\x01\x04\x01\x03\x04\x03\x04\x01\x02", // 醉
+ 0x918a: "\x01\x02\x05\x03\x05\x01\x01\x05\x04\x05\x04\x05\x04\x05\x04", // 醊
+ 0x918b: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x02\x01\x02\x05\x01\x01", // 醋
+ 0x918c: "\x01\x02\x05\x03\x05\x01\x01\x02\x05\x01\x01\x01\x05\x03\x05", // 醌
+ 0x918d: "\x01\x02\x05\x03\x05\x01\x01\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 醍
+ 0x918e: "\x01\x02\x05\x03\x05\x01\x01\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 醎
+ 0x918f: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 醏
+ 0x9190: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x02\x05\x01\x03\x05\x01\x01", // 醐
+ 0x9191: "\x01\x02\x05\x03\x05\x01\x01\x05\x02\x01\x03\x04\x02\x05\x01\x01", // 醑
+ 0x9192: "\x01\x02\x05\x03\x05\x01\x01\x02\x05\x01\x01\x03\x01\x01\x02\x01", // 醒
+ 0x9193: "\x01\x02\x05\x03\x05\x01\x01\x04\x05\x03\x05\x02\x05\x02\x02\x01", // 醓
+ 0x9194: "\x03\x01\x02\x03\x04\x04\x03\x03\x04\x01\x02\x05\x03\x05\x01\x01", // 醔
+ 0x9195: "\x01\x02\x05\x03\x05\x01\x01\x04\x01\x02\x05\x01\x02\x05\x01\x01", // 醕
+ 0x9196: "\x01\x02\x05\x03\x05\x01\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 醖
+ 0x9197: "\x01\x02\x05\x03\x05\x01\x01\x05\x04\x03\x03\x04\x01\x01\x03\x05", // 醗
+ 0x9198: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 醘
+ 0x9199: "\x01\x02\x05\x03\x05\x01\x01\x03\x02\x01\x05\x01\x01\x02\x05\x04", // 醙
+ 0x919a: "\x01\x02\x05\x03\x05\x01\x01\x04\x03\x01\x02\x03\x04\x04\x05\x04", // 醚
+ 0x919b: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x02\x03\x04\x01\x01\x02\x01", // 醛
+ 0x919c: "\x01\x02\x05\x03\x05\x01\x01\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 醜
+ 0x919d: "\x01\x02\x05\x03\x05\x01\x01\x04\x03\x01\x01\x01\x03\x01\x02\x01", // 醝
+ 0x919e: "\x01\x02\x05\x03\x05\x01\x01\x02\x05\x03\x04\x01\x02\x05\x02\x02\x01", // 醞
+ 0x919f: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x01\x02\x05\x03\x05\x01\x01", // 醟
+ 0x91a0: "\x01\x02\x05\x03\x05\x01\x01\x02\x05\x01\x03\x04\x02\x05\x02\x02\x01", // 醠
+ 0x91a1: "\x01\x02\x05\x03\x05\x01\x01\x04\x04\x05\x03\x04\x03\x01\x02\x01\x01", // 醡
+ 0x91a2: "\x01\x02\x05\x03\x05\x01\x01\x01\x03\x02\x05\x01\x02\x05\x02\x02\x01", // 醢
+ 0x91a3: "\x01\x02\x05\x03\x05\x01\x01\x04\x01\x03\x05\x01\x01\x02\x02\x05\x01", // 醣
+ 0x91a4: "\x04\x01\x02\x03\x04\x04\x03\x01\x02\x04\x01\x02\x05\x03\x05\x01\x01", // 醤
+ 0x91a5: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 醥
+ 0x91a6: "\x01\x02\x05\x03\x05\x01\x01\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 醦
+ 0x91a7: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 醧
+ 0x91a8: "\x01\x02\x05\x03\x05\x01\x01\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 醨
+ 0x91a9: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01", // 醩
+ 0x91aa: "\x01\x02\x05\x03\x05\x01\x01\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 醪
+ 0x91ab: "\x01\x03\x01\x01\x03\x04\x05\x03\x05\x05\x04\x01\x02\x05\x03\x05\x01\x01", // 醫
+ 0x91ac: "\x05\x02\x01\x03\x03\x05\x04\x04\x01\x02\x04\x01\x02\x05\x03\x05\x01\x01", // 醬
+ 0x91ad: "\x01\x02\x05\x03\x05\x01\x01\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 醭
+ 0x91ae: "\x01\x02\x05\x03\x05\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 醮
+ 0x91af: "\x01\x02\x05\x03\x05\x01\x01\x04\x01\x05\x04\x03\x02\x05\x02\x05\x02\x02\x01", // 醯
+ 0x91b0: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 醰
+ 0x91b1: "\x01\x02\x05\x03\x05\x01\x01\x05\x04\x03\x03\x04\x05\x01\x05\x03\x05\x05\x04", // 醱
+ 0x91b2: "\x01\x02\x05\x03\x05\x01\x01\x02\x05\x01\x02\x02\x01\x01\x03\x01\x01\x05\x03\x04", // 醲
+ 0x91b3: "\x01\x02\x05\x03\x05\x01\x01\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 醳
+ 0x91b4: "\x01\x02\x05\x03\x05\x01\x01\x02\x05\x01\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01", // 醴
+ 0x91b5: "\x01\x02\x05\x03\x05\x01\x01\x02\x01\x05\x03\x01\x05\x01\x03\x05\x03\x03\x03\x04", // 醵
+ 0x91b6: "\x01\x02\x05\x03\x05\x01\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 醶
+ 0x91b7: "\x01\x02\x05\x03\x05\x01\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 醷
+ 0x91b8: "\x01\x02\x05\x03\x05\x01\x01\x04\x01\x03\x04\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 醸
+ 0x91b9: "\x01\x02\x05\x03\x05\x01\x01\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02", // 醹
+ 0x91ba: "\x01\x02\x05\x03\x05\x01\x01\x03\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 醺
+ 0x91bb: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 醻
+ 0x91bc: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x02\x01\x02\x05\x01\x02\x01\x01\x03\x05\x04\x04\x04\x04", // 醼
+ 0x91bd: "\x01\x02\x05\x03\x05\x01\x01\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 醽
+ 0x91be: "\x01\x02\x05\x03\x05\x01\x01\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x04\x03\x01\x02\x03\x04", // 醾
+ 0x91bf: "\x01\x02\x05\x03\x05\x01\x01\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x05\x05\x04\x02\x03\x04", // 醿
+ 0x91c0: "\x01\x02\x05\x03\x05\x01\x01\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 釀
+ 0x91c1: "\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x04\x05\x01\x02\x05\x03\x05\x01\x01\x03\x04\x05\x03", // 釁
+ 0x91c2: "\x01\x02\x05\x03\x05\x01\x01\x03\x04\x04\x03\x02\x05\x02\x02\x01\x05\x01\x01\x05\x04\x01\x02\x04", // 釂
+ 0x91c3: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x05\x04\x01\x02\x05\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 釃
+ 0x91c4: "\x01\x02\x05\x03\x05\x01\x01\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01", // 釄
+ 0x91c5: "\x01\x02\x05\x03\x05\x01\x01\x02\x05\x01\x02\x05\x01\x01\x03\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 釅
+ 0x91c6: "\x03\x04\x03\x01\x02\x03\x04", // 釆
+ 0x91c7: "\x03\x04\x04\x03\x01\x02\x03\x04", // 采
+ 0x91c8: "\x03\x04\x03\x01\x02\x03\x04\x05\x01\x03\x04", // 釈
+ 0x91c9: "\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 釉
+ 0x91ca: "\x03\x04\x03\x01\x02\x03\x04\x05\x04\x01\x01\x02", // 释
+ 0x91cb: "\x03\x04\x03\x01\x02\x03\x04\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 釋
+ 0x91cc: "\x02\x05\x01\x01\x02\x01\x01", // 里
+ 0x91cd: "\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 重
+ 0x91ce: "\x02\x05\x01\x01\x02\x01\x01\x05\x04\x05\x02", // 野
+ 0x91cf: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x02\x01\x01", // 量
+ 0x91d0: "\x01\x01\x02\x03\x04\x03\x01\x03\x04\x01\x03\x02\x05\x01\x01\x02\x01\x01", // 釐
+ 0x91d1: "\x03\x04\x01\x01\x02\x04\x03\x01", // 金
+ 0x91d2: "\x03\x04\x01\x01\x02\x04\x03\x01", // 釒
+ 0x91d3: "\x03\x04\x01\x01\x02\x04\x03\x01\x05", // 釓
+ 0x91d4: "\x03\x04\x01\x01\x02\x04\x03\x01\x05", // 釔
+ 0x91d5: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x02", // 釕
+ 0x91d6: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x03", // 釖
+ 0x91d7: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x02", // 釗
+ 0x91d8: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02", // 釘
+ 0x91d9: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x04", // 釙
+ 0x91da: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05", // 釚
+ 0x91db: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x03", // 釛
+ 0x91dc: "\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 釜
+ 0x91dd: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02", // 針
+ 0x91de: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04", // 釞
+ 0x91df: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04", // 釟
+ 0x91e0: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05", // 釠
+ 0x91e1: "\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 釡
+ 0x91e2: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x03", // 釢
+ 0x91e3: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x04", // 釣
+ 0x91e4: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x03\x03", // 釤
+ 0x91e5: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x03\x04", // 釥
+ 0x91e6: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01", // 釦
+ 0x91e7: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x02", // 釧
+ 0x91e8: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x02\x01", // 釨
+ 0x91e9: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x04", // 釩
+ 0x91ea: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x02", // 釪
+ 0x91eb: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x05", // 釫
+ 0x91ec: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x02", // 釬
+ 0x91ed: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01", // 釭
+ 0x91ee: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x03", // 釮
+ 0x91ef: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x05", // 釯
+ 0x91f0: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x03\x04", // 釰
+ 0x91f1: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x04", // 釱
+ 0x91f2: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x05", // 釲
+ 0x91f3: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x05", // 釳
+ 0x91f4: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x05\x04", // 釴
+ 0x91f5: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x04\x04", // 釵
+ 0x91f6: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x02\x05", // 釶
+ 0x91f7: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01", // 釷
+ 0x91f8: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x04", // 釸
+ 0x91f9: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x03\x01", // 釹
+ 0x91fa: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x02", // 釺
+ 0x91fb: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x04", // 釻
+ 0x91fc: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x03\x04", // 釼
+ 0x91fd: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x03\x02\x04", // 釽
+ 0x91fe: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x05\x02\x03", // 釾
+ 0x91ff: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x03\x01\x02", // 釿
+ 0x9200: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x02\x01\x05", // 鈀
+ 0x9201: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x05\x03", // 鈁
+ 0x9202: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x05\x03\x05", // 鈂
+ 0x9203: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x03\x02", // 鈃
+ 0x9204: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x01\x02", // 鈄
+ 0x9205: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x01\x01", // 鈅
+ 0x9206: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x05\x04", // 鈆
+ 0x9207: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x03\x04", // 鈇
+ 0x9208: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x02\x04", // 鈈
+ 0x9209: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x03\x04", // 鈉
+ 0x920a: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x05\x04\x04", // 鈊
+ 0x920b: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x03\x05", // 鈋
+ 0x920c: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x03\x04", // 鈌
+ 0x920d: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x05\x02\x05", // 鈍
+ 0x920e: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x05\x04", // 鈎
+ 0x920f: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x05\x02", // 鈏
+ 0x9210: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x04\x05", // 鈐
+ 0x9211: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x03\x05\x04", // 鈑
+ 0x9212: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x04", // 鈒
+ 0x9213: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x02\x01", // 鈓
+ 0x9214: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x03\x04\x03", // 鈔
+ 0x9215: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x02\x01\x01", // 鈕
+ 0x9216: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x05\x03", // 鈖
+ 0x9217: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x04\x03\x05", // 鈗
+ 0x9218: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x04", // 鈘
+ 0x9219: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x05\x04", // 鈙
+ 0x921a: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x05\x03\x05", // 鈚
+ 0x921b: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x05\x03\x04", // 鈛
+ 0x921c: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x05\x04", // 鈜
+ 0x921d: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x01\x02", // 鈝
+ 0x921e: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x04\x01", // 鈞
+ 0x921f: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x05\x02", // 鈟
+ 0x9220: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x05\x04", // 鈠
+ 0x9221: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x02", // 鈡
+ 0x9222: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x03\x04", // 鈢
+ 0x9223: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x05", // 鈣
+ 0x9224: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01", // 鈤
+ 0x9225: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x03\x03\x04", // 鈥
+ 0x9226: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x04\x04", // 鈦
+ 0x9227: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x03\x05", // 鈧
+ 0x9228: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x03\x05", // 鈨
+ 0x9229: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x05\x01\x03", // 鈩
+ 0x922a: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x05\x05", // 鈪
+ 0x922b: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x03\x04", // 鈫
+ 0x922c: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x03\x04", // 鈬
+ 0x922d: "\x02\x01\x02\x01\x03\x05\x03\x04\x01\x01\x02\x04\x03\x01", // 鈭
+ 0x922e: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x03\x03\x05", // 鈮
+ 0x922f: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x02\x02\x05\x02", // 鈯
+ 0x9230: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x02\x05\x02", // 鈰
+ 0x9231: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x05\x01\x05", // 鈱
+ 0x9232: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x03\x05\x04\x04", // 鈲
+ 0x9233: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x01\x02", // 鈳
+ 0x9234: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x04\x05\x04", // 鈴
+ 0x9235: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x03\x04", // 鈵
+ 0x9236: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x04\x02\x05\x01", // 鈶
+ 0x9237: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x05\x01", // 鈷
+ 0x9238: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x05\x04\x04", // 鈸
+ 0x9239: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x03\x02\x05\x04", // 鈹
+ 0x923a: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x02\x01\x04", // 鈺
+ 0x923b: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x05\x01", // 鈻
+ 0x923c: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x02\x01\x01", // 鈼
+ 0x923d: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x02\x05\x02", // 鈽
+ 0x923e: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x02\x01", // 鈾
+ 0x923f: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x02\x01", // 鈿
+ 0x9240: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x02", // 鉀
+ 0x9241: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x03\x03\x03", // 鉁
+ 0x9242: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x03\x04", // 鉂
+ 0x9243: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x01\x03\x04", // 鉃
+ 0x9244: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x01\x03\x04", // 鉄
+ 0x9245: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x05\x01\x05", // 鉅
+ 0x9246: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x02\x05\x01", // 鉆
+ 0x9247: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x05\x02\x05", // 鉇
+ 0x9248: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x05\x03\x05", // 鉈
+ 0x9249: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x05\x05\x04", // 鉉
+ 0x924a: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x03\x02\x05\x01", // 鉊
+ 0x924b: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x05\x01\x05", // 鉋
+ 0x924c: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x02\x03\x04", // 鉌
+ 0x924d: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x05\x04\x03\x04", // 鉍
+ 0x924e: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x01\x02\x01", // 鉎
+ 0x924f: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x01", // 鉏
+ 0x9250: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x02\x05\x01", // 鉐
+ 0x9251: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x05\x01\x01", // 鉑
+ 0x9252: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x01\x02\x01", // 鉒
+ 0x9253: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x02\x05\x02", // 鉓
+ 0x9254: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x02\x05", // 鉔
+ 0x9255: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x01\x05", // 鉕
+ 0x9256: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x04\x04\x04", // 鉖
+ 0x9257: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x01\x01", // 鉗
+ 0x9258: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x05\x03\x02", // 鉘
+ 0x9259: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x03\x04", // 鉙
+ 0x925a: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x03\x05\x02", // 鉚
+ 0x925b: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x02\x05\x01", // 鉛
+ 0x925c: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x01\x02\x04", // 鉜
+ 0x925d: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x04\x03\x01", // 鉝
+ 0x925e: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x05\x05\x03\x04", // 鉞
+ 0x925f: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x02\x04\x01", // 鉟
+ 0x9260: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x03\x04", // 鉠
+ 0x9261: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x03\x01\x01\x02", // 鉡
+ 0x9262: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x03\x04\x01", // 鉢
+ 0x9263: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x05\x04", // 鉣
+ 0x9264: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x02\x05\x01", // 鉤
+ 0x9265: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x03\x04\x04", // 鉥
+ 0x9266: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x02\x01", // 鉦
+ 0x9267: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x05\x04\x01\x04", // 鉧
+ 0x9268: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x02\x03\x04", // 鉨
+ 0x9269: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x02\x03\x04", // 鉩
+ 0x926a: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x01\x05", // 鉪
+ 0x926b: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x03\x02\x05\x01", // 鉫
+ 0x926c: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x01", // 鉬
+ 0x926d: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x01", // 鉭
+ 0x926e: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x02", // 鉮
+ 0x926f: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x04\x03\x04", // 鉯
+ 0x9270: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x02\x05\x01", // 鉰
+ 0x9271: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x03\x05\x04", // 鉱
+ 0x9272: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x01\x02\x04", // 鉲
+ 0x9273: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x01\x03\x05", // 鉳
+ 0x9274: "\x02\x02\x03\x01\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 鉴
+ 0x9275: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x02\x01\x04", // 鉵
+ 0x9276: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x03\x02\x02\x02", // 鉶
+ 0x9277: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x01\x03\x04", // 鉷
+ 0x9278: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x03\x04\x03\x04", // 鉸
+ 0x9279: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x04\x03\x05\x04", // 鉹
+ 0x927a: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x01\x01\x01", // 鉺
+ 0x927b: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x04\x02\x05\x01", // 鉻
+ 0x927c: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x03\x01\x01\x03\x02", // 鉼
+ 0x927d: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x02\x01\x05\x04", // 鉽
+ 0x927e: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x04\x03\x01\x01\x02", // 鉾
+ 0x927f: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x01\x02\x05\x01", // 鉿
+ 0x9280: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x01\x05\x03\x04", // 銀
+ 0x9281: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x02\x05\x01\x01", // 銁
+ 0x9282: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x03\x04\x02\x04\x02", // 銂
+ 0x9283: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x05\x04\x03\x05", // 銃
+ 0x9284: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x05\x02\x05\x01", // 銄
+ 0x9285: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x02\x05\x01", // 銅
+ 0x9286: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x02\x05\x01\x01", // 銆
+ 0x9287: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x01\x02\x03\x04", // 銇
+ 0x9288: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x01\x02\x01", // 銈
+ 0x9289: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x01\x01\x01\x02", // 銉
+ 0x928a: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x01\x05\x03\x04", // 銊
+ 0x928b: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x03\x01\x02\x01", // 銋
+ 0x928c: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x02\x05\x02\x01", // 銌
+ 0x928d: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x05\x04\x01\x02\x01", // 銍
+ 0x928e: "\x01\x02\x01\x03\x05\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 銎
+ 0x928f: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x03\x05\x01", // 銏
+ 0x9290: "\x01\x03\x05\x04\x02\x02\x03\x04\x01\x01\x02\x04\x03\x01", // 銐
+ 0x9291: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x02\x01\x03\x05", // 銑
+ 0x9292: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x03\x01\x01\x02", // 銒
+ 0x9293: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x01\x01\x02\x01", // 銓
+ 0x9294: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x02\x04\x01\x02", // 銔
+ 0x9295: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x05\x01\x05\x03\x04", // 銕
+ 0x9296: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x01\x02\x03\x04", // 銖
+ 0x9297: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x03\x01\x02\x05\x01", // 銗
+ 0x9298: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x04\x02\x05\x01", // 銘
+ 0x9299: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x04\x01\x01\x05", // 銙
+ 0x929a: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x01\x05\x03\x04", // 銚
+ 0x929b: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x02\x02\x05\x01", // 銛
+ 0x929c: "\x03\x03\x02\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x02", // 銜
+ 0x929d: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x01\x02\x03\x04", // 銝
+ 0x929e: "\x03\x05\x02\x05\x01\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 銞
+ 0x929f: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x02\x02\x05\x02", // 銟
+ 0x92a0: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x03\x03\x05", // 銠
+ 0x92a1: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x02\x05\x01", // 銡
+ 0x92a2: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x02\x05\x03\x04", // 銢
+ 0x92a3: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x03\x01\x02\x05\x01", // 銣
+ 0x92a4: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x03\x01\x02\x03\x04", // 銤
+ 0x92a5: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x03\x05\x03\x04", // 銥
+ 0x92a6: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x03\x04\x01", // 銦
+ 0x92a7: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x04\x03\x01\x03\x05", // 銧
+ 0x92a8: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x05\x05\x03\x01", // 銨
+ 0x92a9: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x02\x01\x05\x04", // 銩
+ 0x92aa: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x02\x05\x01\x01", // 銪
+ 0x92ab: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x05\x02\x01\x05", // 銫
+ 0x92ac: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x03\x01\x05", // 銬
+ 0x92ad: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x01\x05\x03\x04", // 銭
+ 0x92ae: "\x04\x01\x02\x02\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 銮
+ 0x92af: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x05\x04\x02\x03\x04", // 銯
+ 0x92b0: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x03\x04", // 銰
+ 0x92b1: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x02\x05\x02", // 銱
+ 0x92b2: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x01\x01\x02", // 銲
+ 0x92b3: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x02\x05\x01\x03\x05", // 銳
+ 0x92b4: "\x01\x02\x01\x03\x03\x01\x02\x03\x04\x01\x01\x02\x04\x03\x01", // 銴
+ 0x92b5: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x05\x01\x01\x01\x03", // 銵
+ 0x92b6: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x04\x01\x03\x04\x04", // 銶
+ 0x92b7: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x04\x03\x02\x05\x01\x01", // 銷
+ 0x92b8: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x01\x01\x01\x05", // 銸
+ 0x92b9: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x02\x03\x04\x05\x03", // 銹
+ 0x92ba: "\x05\x02\x01\x03\x01\x02\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 銺
+ 0x92bb: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x03\x05\x01\x05\x02\x03", // 銻
+ 0x92bc: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x03\x04\x01\x02\x01", // 銼
+ 0x92bd: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x01\x05\x02\x05\x01", // 銽
+ 0x92be: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x02\x05\x03\x04", // 銾
+ 0x92bf: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x04\x02\x05\x01\x01\x02", // 銿
+ 0x92c0: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x01\x04\x03\x01", // 鋀
+ 0x92c1: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x02\x05\x01", // 鋁
+ 0x92c2: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x05\x05\x04\x01\x04", // 鋂
+ 0x92c3: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x05\x01\x01\x05\x03\x04", // 鋃
+ 0x92c4: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x04\x03\x03\x04\x05\x04", // 鋄
+ 0x92c5: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x04\x03\x01\x01\x02", // 鋅
+ 0x92c6: "\x01\x02\x01\x03\x05\x04\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 鋆
+ 0x92c7: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x01\x03\x04", // 鋇
+ 0x92c8: "\x04\x04\x01\x03\x01\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 鋈
+ 0x92c9: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x01\x02\x03\x04", // 鋉
+ 0x92ca: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x03\x04\x02\x05\x01", // 鋊
+ 0x92cb: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x01\x05\x05\x04", // 鋋
+ 0x92cc: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x02\x01\x05\x04", // 鋌
+ 0x92cd: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x04\x05\x05\x02\x01", // 鋍
+ 0x92ce: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x05\x01\x01\x03\x05", // 鋎
+ 0x92cf: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x04\x03\x04\x03\x04", // 鋏
+ 0x92d0: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x05\x01\x03\x05\x04", // 鋐
+ 0x92d1: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x04\x03\x04\x03\x05\x04", // 鋑
+ 0x92d2: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x04\x01\x01\x01\x02", // 鋒
+ 0x92d3: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x02\x03\x04\x02\x02", // 鋓
+ 0x92d4: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x02\x05\x01\x03\x05", // 鋔
+ 0x92d5: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x04\x05\x04\x04", // 鋕
+ 0x92d6: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x04\x03\x05\x03\x01", // 鋖
+ 0x92d7: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x02\x05\x01\x01", // 鋗
+ 0x92d8: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x01\x03\x04", // 鋘
+ 0x92d9: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x01\x02\x05\x01", // 鋙
+ 0x92da: "\x03\x02\x02\x03\x01\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 鋚
+ 0x92db: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x02\x05\x01\x02", // 鋛
+ 0x92dc: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x02\x01\x03\x04", // 鋜
+ 0x92dd: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x04\x03\x01\x02\x04", // 鋝
+ 0x92de: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x05\x05\x05\x01\x02\x01", // 鋞
+ 0x92df: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x01\x04\x05\x05\x04", // 鋟
+ 0x92e0: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x01\x01\x05\x03\x04", // 鋠
+ 0x92e1: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x04\x05\x02\x05\x01", // 鋡
+ 0x92e2: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x04\x03\x05\x02\x01", // 鋢
+ 0x92e3: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x05\x02\x03\x05\x02", // 鋣
+ 0x92e4: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x01\x05\x03", // 鋤
+ 0x92e5: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x01\x02\x01", // 鋥
+ 0x92e6: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x03\x05\x02\x05\x01", // 鋦
+ 0x92e7: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x01\x03\x05", // 鋧
+ 0x92e8: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x02\x01\x05\x03\x04", // 鋨
+ 0x92e9: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x04\x01\x05", // 鋩
+ 0x92ea: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x01\x01\x02\x04", // 鋪
+ 0x92eb: "\x03\x01\x02\x03\x04\x02\x02\x03\x04\x01\x01\x02\x04\x03\x01", // 鋫
+ 0x92ec: "\x01\x02\x01\x03\x03\x05\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 鋬
+ 0x92ed: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x03\x02\x05\x01\x03\x05", // 鋭
+ 0x92ee: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x05\x05\x03\x04", // 鋮
+ 0x92ef: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x02\x01\x02\x05\x01", // 鋯
+ 0x92f0: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 鋰
+ 0x92f1: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x04\x05\x04\x04\x05\x04", // 鋱
+ 0x92f2: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x01\x02\x01\x03\x04", // 鋲
+ 0x92f3: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x01\x03\x01\x02\x04", // 鋳
+ 0x92f4: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x05\x01\x03\x05", // 鋴
+ 0x92f5: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x02\x03\x04\x03\x05", // 鋵
+ 0x92f6: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x05\x04\x03\x02\x05", // 鋶
+ 0x92f7: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x01\x01\x01\x05\x04", // 鋷
+ 0x92f8: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x03\x01\x02\x02\x05\x01", // 鋸
+ 0x92f9: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x01\x01\x05\x03\x04", // 鋹
+ 0x92fa: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x05\x03\x05\x04\x05\x05", // 鋺
+ 0x92fb: "\x01\x02\x05\x01\x02\x05\x05\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 鋻
+ 0x92fc: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x04\x03\x01\x02\x05\x02", // 鋼
+ 0x92fd: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x02\x05\x01\x01\x01\x02", // 鋽
+ 0x92fe: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x03\x01\x01\x02\x05\x02", // 鋾
+ 0x92ff: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x04\x03\x02\x05\x02\x05\x01", // 鋿
+ 0x9300: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x01\x02\x05\x01\x02\x02", // 錀
+ 0x9301: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x01\x02\x03\x04", // 錁
+ 0x9302: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x03\x04\x03\x05\x04", // 錂
+ 0x9303: "\x04\x04\x01\x05\x03\x02\x05\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 錃
+ 0x9304: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x01\x02\x04\x01\x03\x04", // 錄
+ 0x9305: "\x03\x01\x02\x03\x04\x03\x05\x03\x03\x04\x01\x01\x02\x04\x03\x01", // 錅
+ 0x9306: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x02\x01\x02\x05\x01\x01", // 錆
+ 0x9307: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x04\x03\x01\x02\x05\x01", // 錇
+ 0x9308: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x03\x01\x01\x03\x04\x05\x05", // 錈
+ 0x9309: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x01\x05\x02\x05\x01\x01", // 錉
+ 0x930a: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x03\x04\x03\x04\x01\x02", // 錊
+ 0x930b: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x01\x01\x03\x05\x01\x01", // 錋
+ 0x930c: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x02\x01\x03\x01\x01\x02", // 錌
+ 0x930d: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x05\x01\x01\x03\x01\x02", // 錍
+ 0x930e: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x03\x02\x01\x05\x01\x01", // 錎
+ 0x930f: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x05\x05\x01\x02\x01", // 錏
+ 0x9310: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 錐
+ 0x9311: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x05\x01\x03\x01\x03\x04\x04", // 錑
+ 0x9312: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x02\x01\x02\x05\x01\x02", // 錒
+ 0x9313: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x05", // 錓
+ 0x9314: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x03\x04\x02\x05\x01\x01", // 錔
+ 0x9315: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x01\x05\x03\x05", // 錕
+ 0x9316: "\x02\x01\x01\x02\x03\x04\x05\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 錖
+ 0x9317: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x02\x03\x04\x05\x03\x01", // 錗
+ 0x9318: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x02\x01\x02\x02\x01\x01", // 錘
+ 0x9319: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x05\x05\x02\x05\x01\x02\x01", // 錙
+ 0x931a: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x05\x01\x01\x02", // 錚
+ 0x931b: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x04\x01\x02\x01\x03\x02", // 錛
+ 0x931c: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x04\x05\x04\x05\x04\x04", // 錜
+ 0x931d: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x05\x01\x01\x02\x03\x04", // 錝
+ 0x931e: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x02\x05\x01\x05\x02\x01", // 錞
+ 0x931f: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 錟
+ 0x9320: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x05\x01\x02\x01\x03\x04", // 錠
+ 0x9321: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x04\x01\x02\x05\x01\x02", // 錡
+ 0x9322: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x05\x03\x04\x01\x05\x03\x04", // 錢
+ 0x9323: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x04\x05\x04\x05\x04\x05\x04", // 錣
+ 0x9324: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x01\x01\x01\x03\x04", // 錤
+ 0x9325: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x05\x04\x02\x05\x01\x01", // 錥
+ 0x9326: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x05\x01\x01\x02\x05\x02", // 錦
+ 0x9327: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x05\x02\x05\x01\x05\x01", // 錧
+ 0x9328: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x02\x05\x01\x02\x01", // 錨
+ 0x9329: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x02\x05\x01\x01", // 錩
+ 0x932a: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x02\x02\x01\x03\x04", // 錪
+ 0x932b: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x03\x05\x03\x03", // 錫
+ 0x932c: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x01\x01\x02\x03\x04", // 錬
+ 0x932d: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x01\x02\x01\x02\x05\x01", // 錭
+ 0x932e: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x02\x02\x05\x01\x01", // 錮
+ 0x932f: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x01\x02\x05\x01\x01", // 錯
+ 0x9330: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x03\x04\x04\x04\x04\x04", // 錰
+ 0x9331: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x02\x01\x01\x01\x02\x01", // 錱
+ 0x9332: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x01\x02\x04\x01\x03\x04", // 録
+ 0x9333: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x02\x01\x02\x05\x02\x02\x01", // 錳
+ 0x9334: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x03\x04\x01\x02\x01", // 錴
+ 0x9335: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x03\x02\x03\x05", // 錵
+ 0x9336: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x02\x01\x03\x05\x03\x04", // 錶
+ 0x9337: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x01\x01\x01\x02\x05", // 錷
+ 0x9338: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x04\x03\x04\x02\x03\x04", // 錸
+ 0x9339: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x02\x01\x02\x05\x01\x01", // 錹
+ 0x933a: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x04\x01\x05\x03", // 錺
+ 0x933b: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x02\x01\x02\x01\x05\x04", // 錻
+ 0x933c: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x04\x01\x01\x02\x03\x04", // 錼
+ 0x933d: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x04\x03\x03\x04\x03\x05\x04", // 錽
+ 0x933e: "\x01\x05\x02\x01\x03\x03\x01\x02\x03\x04\x01\x01\x02\x04\x03\x01", // 錾
+ 0x933f: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x05\x03\x01\x05\x03\x05", // 錿
+ 0x9340: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x01\x01\x02\x04", // 鍀
+ 0x9341: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x03\x01\x02\x03\x05\x03\x04", // 鍁
+ 0x9342: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 鍂
+ 0x9343: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x03\x03\x04\x05\x04\x04", // 鍃
+ 0x9344: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x02\x05\x01\x02\x03\x04", // 鍄
+ 0x9345: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x01\x01\x02\x01\x05\x04", // 鍅
+ 0x9346: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x02\x05\x01\x01", // 鍆
+ 0x9347: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x05\x03\x05\x03\x02\x05\x01\x01", // 鍇
+ 0x9348: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x02\x05\x01\x03\x04", // 鍈
+ 0x9349: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 鍉
+ 0x934a: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 鍊
+ 0x934b: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x05\x02\x05\x02\x05\x01", // 鍋
+ 0x934c: "\x04\x04\x01\x03\x01\x02\x01\x03\x05\x03\x04\x01\x01\x02\x04\x03\x01", // 鍌
+ 0x934d: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x03\x01\x02\x02\x01\x05\x04", // 鍍
+ 0x934e: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x03\x01\x02\x02\x05\x01\x01\x01", // 鍎
+ 0x934f: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 鍏
+ 0x9350: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x05\x02\x03\x04\x03\x05\x04", // 鍐
+ 0x9351: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 鍑
+ 0x9352: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x04\x05\x02\x03\x01\x02\x03\x04", // 鍒
+ 0x9353: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x02\x02\x01\x01\x01", // 鍓
+ 0x9354: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x02\x05\x01\x01\x01\x05", // 鍔
+ 0x9355: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 鍕
+ 0x9356: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x01\x01\x01\x03\x04\x05", // 鍖
+ 0x9357: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x04\x03\x04\x05\x02\x05\x02", // 鍗
+ 0x9358: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x01\x03\x04\x02\x02", // 鍘
+ 0x9359: "\x04\x04\x01\x01\x02\x02\x01\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 鍙
+ 0x935a: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 鍚
+ 0x935b: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x01\x01\x01\x03\x05\x05\x04", // 鍛
+ 0x935c: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 鍜
+ 0x935d: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 鍝
+ 0x935e: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 鍞
+ 0x935f: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x03\x01\x01\x02\x01", // 鍟
+ 0x9360: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x05\x01\x01\x01\x01\x02\x01", // 鍠
+ 0x9361: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x02\x01\x01\x05\x03\x04", // 鍡
+ 0x9362: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 鍢
+ 0x9363: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x05\x03\x02\x05\x01", // 鍣
+ 0x9364: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x02\x03\x02\x01\x05\x01\x01", // 鍤
+ 0x9365: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x01\x02\x05\x03\x01\x03\x04", // 鍥
+ 0x9366: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x05\x03\x03\x01\x05\x02\x05", // 鍦
+ 0x9367: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x04\x01\x01\x01\x02\x05\x01", // 鍧
+ 0x9368: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x04\x03\x03\x04\x01\x01\x03\x04", // 鍨
+ 0x9369: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x01\x03\x02\x05\x01", // 鍩
+ 0x936a: "\x05\x04\x05\x02\x03\x03\x01\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 鍪
+ 0x936b: "\x03\x01\x02\x03\x04\x04\x03\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 鍫
+ 0x936c: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x02\x03\x04\x04\x03\x03\x04", // 鍬
+ 0x936d: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x05\x01\x03\x01\x01\x03\x04", // 鍭
+ 0x936e: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 鍮
+ 0x936f: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x03\x03\x04\x04\x05\x04\x04", // 鍯
+ 0x9370: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x04\x03\x01\x01\x03\x05\x04", // 鍰
+ 0x9371: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 鍱
+ 0x9372: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x05\x01\x05\x02\x05\x01\x01", // 鍲
+ 0x9373: "\x01\x02\x05\x01\x02\x05\x03\x01\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 鍳
+ 0x9374: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 鍴
+ 0x9375: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x01\x01\x01\x02\x05\x04", // 鍵
+ 0x9376: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 鍶
+ 0x9377: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x04\x01\x02\x01\x01\x02\x01", // 鍷
+ 0x9378: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x05\x01\x03\x05\x01\x01", // 鍸
+ 0x9379: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x05\x01\x02\x05\x01\x01\x01", // 鍹
+ 0x937a: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 鍺
+ 0x937b: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 鍻
+ 0x937c: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 鍼
+ 0x937d: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x05\x01\x03\x02\x05\x01\x02\x02", // 鍽
+ 0x937e: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 鍾
+ 0x937f: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x05\x05\x01\x02\x05\x01\x02\x01", // 鍿
+ 0x9380: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x02\x03\x05\x04\x03\x03\x03", // 鎀
+ 0x9381: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x01\x01\x01\x05\x02", // 鎁
+ 0x9382: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x01\x03\x04", // 鎂
+ 0x9383: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x01\x03\x03\x03\x05\x03\x04", // 鎃
+ 0x9384: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x02\x05\x01\x03\x05\x03\x04", // 鎄
+ 0x9385: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x02\x01\x03\x04\x03\x02", // 鎅
+ 0x9386: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x03\x01\x02\x05\x01\x01\x02\x02", // 鎆
+ 0x9387: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x02\x01\x03\x02\x05\x01\x01\x01", // 鎇
+ 0x9388: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x01\x02\x01", // 鎈
+ 0x9389: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 鎉
+ 0x938a: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03", // 鎊
+ 0x938b: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x05\x01\x01\x01\x02\x02\x05\x01", // 鎋
+ 0x938c: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 鎌
+ 0x938d: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x04\x05\x05\x05\x04\x02\x03\x04", // 鎍
+ 0x938e: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x01\x05\x04\x03\x01\x02\x03\x04", // 鎎
+ 0x938f: "\x04\x04\x01\x04\x01\x05\x04\x03\x02\x05\x03\x04\x01\x01\x02\x04\x03\x01", // 鎏
+ 0x9390: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02", // 鎐
+ 0x9391: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 鎑
+ 0x9392: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x01\x01\x05\x03\x04\x01\x02\x04", // 鎒
+ 0x9393: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x05\x04\x05\x04\x01\x05\x04\x01", // 鎓
+ 0x9394: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x05\x03\x04\x03\x04\x02\x05\x01", // 鎔
+ 0x9395: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x03\x05\x01\x01\x02\x02\x05\x01", // 鎕
+ 0x9396: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x04\x03\x02\x05\x01\x01\x01\x03\x04", // 鎖
+ 0x9397: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x04\x05\x01\x01\x03\x02\x05\x01", // 鎗
+ 0x9398: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 鎘
+ 0x9399: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x03\x01\x05\x02\x03\x03\x05\x01\x01", // 鎙
+ 0x939a: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x05\x01\x05\x01\x04\x05\x04", // 鎚
+ 0x939b: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 鎛
+ 0x939c: "\x03\x03\x05\x04\x01\x04\x03\x05\x05\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 鎜
+ 0x939d: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x03\x04\x01\x02\x05\x01", // 鎝
+ 0x939e: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x05\x03\x04\x01\x01\x05\x03\x05", // 鎞
+ 0x939f: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x04\x05\x04\x05\x04\x01\x02\x03\x04", // 鎟
+ 0x93a0: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x02\x02\x01\x01\x02\x01\x02\x01", // 鎠
+ 0x93a1: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x03\x01\x05\x05\x04\x05\x05\x04", // 鎡
+ 0x93a2: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x05\x01\x01\x05\x04\x04\x04\x04", // 鎢
+ 0x93a3: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x03\x04\x01\x01\x02\x04\x03\x01", // 鎣
+ 0x93a4: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x02\x04\x03\x01\x03\x05", // 鎤
+ 0x93a5: "\x03\x02\x02\x03\x05\x04\x01\x02\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 鎥
+ 0x93a6: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 鎦
+ 0x93a7: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 鎧
+ 0x93a8: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02", // 鎨
+ 0x93a9: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x01\x02\x03\x04\x03\x05\x05\x04", // 鎩
+ 0x93aa: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x01\x05\x01\x01\x02\x05\x04", // 鎪
+ 0x93ab: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x05\x03\x04\x03\x04\x03\x05\x04", // 鎫
+ 0x93ac: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 鎬
+ 0x93ad: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x02\x05\x01\x01\x01\x05\x03\x04", // 鎭
+ 0x93ae: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 鎮
+ 0x93af: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x05\x01\x01\x05\x04\x05\x02", // 鎯
+ 0x93b0: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x03\x01\x03\x04\x02\x05\x02\x02\x01", // 鎰
+ 0x93b1: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x02\x05\x01\x03\x05\x03\x04", // 鎱
+ 0x93b2: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x04\x03\x04\x05\x02\x05\x01\x03\x05", // 鎲
+ 0x93b3: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 鎳
+ 0x93b4: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x05\x01\x01\x01\x04\x05\x04\x04", // 鎴
+ 0x93b5: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x05\x01\x03\x05\x03\x03\x03\x04", // 鎵
+ 0x93b6: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02", // 鎶
+ 0x93b7: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 鎷
+ 0x93b8: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03", // 鎸
+ 0x93b9: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x03\x01\x01\x03\x04\x04\x05\x04", // 鎹
+ 0x93ba: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x05\x02\x04\x02\x05\x01\x01\x01", // 鎺
+ 0x93bb: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x05\x05\x02\x05\x01\x01\x01\x03\x04", // 鎻
+ 0x93bc: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x05\x03\x01\x05\x03\x01\x01\x02", // 鎼
+ 0x93bd: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x02\x03\x05\x04\x01\x01\x01\x02", // 鎽
+ 0x93be: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 鎾
+ 0x93bf: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x01\x02\x05\x01\x03\x01\x01\x02", // 鎿
+ 0x93c0: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01", // 鏀
+ 0x93c1: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 鏁
+ 0x93c2: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 鏂
+ 0x93c3: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x05\x03\x03\x01\x03\x01\x01\x03\x04", // 鏃
+ 0x93c4: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04", // 鏄
+ 0x93c5: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x02\x03\x05\x04\x02\x05\x01\x01", // 鏅
+ 0x93c6: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x05\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 鏆
+ 0x93c7: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x05\x03\x03\x01\x05\x02\x01\x03\x04", // 鏇
+ 0x93c8: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 鏈
+ 0x93c9: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x01\x02\x03\x04\x03\x05\x03\x04", // 鏉
+ 0x93ca: "\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 鏊
+ 0x93cb: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04", // 鏋
+ 0x93cc: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 鏌
+ 0x93cd: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 鏍
+ 0x93ce: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x01\x02\x02\x01\x01\x02", // 鏎
+ 0x93cf: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x01", // 鏏
+ 0x93d0: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 鏐
+ 0x93d1: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01", // 鏑
+ 0x93d2: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 鏒
+ 0x93d3: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x05\x03\x05\x04\x01\x04\x05\x04\x04", // 鏓
+ 0x93d4: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x05\x01\x02\x05\x01\x02\x01\x03\x04", // 鏔
+ 0x93d5: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 鏕
+ 0x93d6: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x03\x04\x01\x01\x02\x04\x03\x01", // 鏖
+ 0x93d7: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x01\x02\x05\x05\x04\x01\x02\x01", // 鏗
+ 0x93d8: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x02\x01\x03\x03\x05\x04\x04\x01\x02\x04", // 鏘
+ 0x93d9: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 鏙
+ 0x93da: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x02\x01\x01\x02\x03\x04\x05\x03\x04", // 鏚
+ 0x93db: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x02", // 鏛
+ 0x93dc: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x01", // 鏜
+ 0x93dd: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 鏝
+ 0x93de: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x03\x05\x01\x01\x02\x05\x01\x01\x02", // 鏞
+ 0x93df: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x04\x03\x01\x03\x03\x01\x01\x02\x01", // 鏟
+ 0x93e0: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x04\x01\x01\x01\x02\x04\x05\x04", // 鏠
+ 0x93e1: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05", // 鏡
+ 0x93e2: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 鏢
+ 0x93e3: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x03\x01\x02\x02\x01\x04\x04\x04\x04", // 鏣
+ 0x93e4: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 鏤
+ 0x93e5: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x05\x03\x02\x01\x03\x02\x05\x01\x01", // 鏥
+ 0x93e6: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04", // 鏦
+ 0x93e7: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 鏧
+ 0x93e8: "\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02\x03\x04\x01\x01\x02\x04\x03\x01", // 鏨
+ 0x93e9: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02", // 鏩
+ 0x93ea: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01", // 鏪
+ 0x93eb: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x02\x03\x04\x02\x02\x01\x02\x03\x04", // 鏫
+ 0x93ec: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x05\x03\x01\x05\x03\x04\x03\x01\x02", // 鏬
+ 0x93ed: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x03\x01\x02\x03\x04\x04\x05\x04\x04", // 鏭
+ 0x93ee: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x03\x05\x01\x01\x02\x04\x01\x03\x04", // 鏮
+ 0x93ef: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04", // 鏯
+ 0x93f0: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x02\x03\x05\x01\x01\x03\x05\x01\x01", // 鏰
+ 0x93f1: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02", // 鏱
+ 0x93f2: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x05\x05\x04\x04\x05\x03\x01\x01\x02", // 鏲
+ 0x93f3: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 鏳
+ 0x93f4: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x02\x01\x02\x01\x03\x05\x04\x02\x05\x01", // 鏴
+ 0x93f5: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x01\x01\x02\x02\x01\x01\x02", // 鏵
+ 0x93f6: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02\x03\x04", // 鏶
+ 0x93f7: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 鏷
+ 0x93f8: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x01\x01\x02\x01\x04\x04\x05\x04\x04", // 鏸
+ 0x93f9: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x05\x02\x05\x01\x02\x05\x01\x02\x01\x04", // 鏹
+ 0x93fa: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x04\x03\x03\x04\x05\x01\x05\x03\x05\x05\x04", // 鏺
+ 0x93fb: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 鏻
+ 0x93fc: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x04\x03\x01\x04\x01\x02\x05\x02\x03\x04", // 鏼
+ 0x93fd: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x01\x02\x03\x02\x01\x01\x05\x05\x02\x01\x02", // 鏽
+ 0x93fe: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x01\x02\x05\x01\x01\x03\x01\x03\x04", // 鏾
+ 0x93ff: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x03\x04", // 鏿
+ 0x9400: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 鐀
+ 0x9401: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x01\x01\x01\x03\x04\x03\x03\x01\x02", // 鐁
+ 0x9402: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x01\x05\x05\x01\x02\x05\x01\x02\x01", // 鐂
+ 0x9403: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 鐃
+ 0x9404: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 鐄
+ 0x9405: "\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 鐅
+ 0x9406: "\x05\x02\x04\x03\x01\x03\x05\x03\x03\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 鐆
+ 0x9407: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 鐇
+ 0x9408: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 鐈
+ 0x9409: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x05\x05\x01\x05\x01\x02\x02\x01\x03\x04", // 鐉
+ 0x940a: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x02\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 鐊
+ 0x940b: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 鐋
+ 0x940c: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x02\x05\x01\x03\x05\x03\x03\x03\x04", // 鐌
+ 0x940d: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x04\x05\x02\x03\x02\x05\x03\x04\x02\x05\x01", // 鐍
+ 0x940e: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 鐎
+ 0x940f: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x02\x04", // 鐏
+ 0x9410: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 鐐
+ 0x9411: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x05\x04\x04\x04\x04\x01\x02\x01\x02\x05\x01", // 鐑
+ 0x9412: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x05\x03", // 鐒
+ 0x9413: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x02\x05\x01\x05\x02\x01\x03\x01\x03\x04", // 鐓
+ 0x9414: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 鐔
+ 0x9415: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x01", // 鐕
+ 0x9416: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x05\x04\x05\x05\x04\x01\x03\x04\x05\x03\x04", // 鐖
+ 0x9417: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x02\x05\x01\x01\x03\x05\x01\x01", // 鐗
+ 0x9418: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 鐘
+ 0x9419: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 鐙
+ 0x941a: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x05\x05\x01\x02\x01\x04\x05\x04\x04", // 鐚
+ 0x941b: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x03\x04", // 鐛
+ 0x941c: "\x04\x01\x02\x05\x01\x05\x02\x01\x03\x01\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 鐜
+ 0x941d: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04", // 鐝
+ 0x941e: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04", // 鐞
+ 0x941f: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01", // 鐟
+ 0x9420: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x03\x01\x02\x02\x04\x03\x01\x02\x05\x01\x01", // 鐠
+ 0x9421: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x02\x05\x01\x04\x03\x01\x05\x03\x04", // 鐡
+ 0x9422: "\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 鐢
+ 0x9423: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x04\x03\x04\x05\x02\x05\x01\x03\x01\x01\x02", // 鐣
+ 0x9424: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x01\x05\x01\x03\x02\x01\x02\x05", // 鐤
+ 0x9425: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x03\x01\x01\x01\x02\x04\x03\x01\x02\x05\x01", // 鐥
+ 0x9426: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x02\x05\x01\x01\x01\x01\x03\x02", // 鐦
+ 0x9427: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01", // 鐧
+ 0x9428: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x05\x03\x02\x02\x05\x01\x01\x01\x03\x04", // 鐨
+ 0x9429: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x03\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 鐩
+ 0x942a: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x05\x03", // 鐪
+ 0x942b: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x02\x05", // 鐫
+ 0x942c: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x02\x01\x01\x03\x01\x02\x03\x03\x05\x03\x04", // 鐬
+ 0x942d: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x05\x04\x03\x01\x02\x03\x04\x01\x03\x04", // 鐭
+ 0x942e: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x03\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 鐮
+ 0x942f: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x01\x02\x01\x03\x02\x05\x01\x01", // 鐯
+ 0x9430: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 鐰
+ 0x9431: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 鐱
+ 0x9432: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 鐲
+ 0x9433: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x01", // 鐳
+ 0x9434: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 鐴
+ 0x9435: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x02\x05\x01\x01\x01\x02\x01\x05\x03\x04", // 鐵
+ 0x9436: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 鐶
+ 0x9437: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 鐷
+ 0x9438: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 鐸
+ 0x9439: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x05\x02\x05\x02\x05\x01\x04\x05\x04", // 鐹
+ 0x943a: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x01\x02\x01", // 鐺
+ 0x943b: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x05\x03\x01\x05\x01\x03\x05\x03\x03\x03\x04", // 鐻
+ 0x943c: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 鐼
+ 0x943d: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x04\x03\x01\x01\x01\x02\x04\x05\x04", // 鐽
+ 0x943e: "\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x03\x04\x01\x01\x02\x04\x03\x01", // 鐾
+ 0x943f: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 鐿
+ 0x9440: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x04\x03\x04\x05\x04\x05\x04\x04\x03\x05\x04", // 鑀
+ 0x9441: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x04\x04\x04\x04\x05\x02\x03\x04\x03\x05\x04", // 鑁
+ 0x9442: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 鑂
+ 0x9443: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 鑃
+ 0x9444: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 鑄
+ 0x9445: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x01\x02\x03\x04", // 鑅
+ 0x9446: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x01\x02\x04", // 鑆
+ 0x9447: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01", // 鑇
+ 0x9448: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 鑈
+ 0x9449: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 鑉
+ 0x944a: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 鑊
+ 0x944b: "\x01\x02\x05\x01\x01\x01\x02\x01\x05\x05\x05\x01\x02\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 鑋
+ 0x944c: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x05\x01\x02\x03\x03\x02\x05\x01\x01\x01\x03\x04", // 鑌
+ 0x944d: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 鑍
+ 0x944e: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x05", // 鑎
+ 0x944f: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x05\x04\x05\x04\x04\x02\x05\x02\x02\x01\x01\x02", // 鑏
+ 0x9450: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02", // 鑐
+ 0x9451: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01", // 鑑
+ 0x9452: "\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 鑒
+ 0x9453: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x02\x01\x02\x05\x01\x05\x01\x04\x05\x04", // 鑓
+ 0x9454: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x05\x03\x05\x04\x04\x05\x04\x01\x01\x02\x03\x04", // 鑔
+ 0x9455: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x03\x01\x02\x03\x03\x01\x02\x02\x05\x01\x01\x01\x03\x04", // 鑕
+ 0x9456: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x02\x05\x02\x02\x01\x01\x03\x04\x05\x03\x04", // 鑖
+ 0x9457: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x02\x03\x04\x03\x05\x03\x03\x04\x02\x04\x01\x03\x04", // 鑗
+ 0x9458: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01", // 鑘
+ 0x9459: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x02\x03\x04\x01\x03\x05\x04\x03\x05\x02\x05\x01\x01", // 鑙
+ 0x945a: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 鑚
+ 0x945b: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x03\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 鑛
+ 0x945c: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 鑜
+ 0x945d: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x03\x05\x04\x01\x01\x01\x02\x04\x05\x04", // 鑝
+ 0x945e: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x05\x05\x02\x05\x03\x04\x01\x05\x04\x04\x05\x04\x04\x05", // 鑞
+ 0x945f: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 鑟
+ 0x9460: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x03\x04", // 鑠
+ 0x9461: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 鑡
+ 0x9462: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 鑢
+ 0x9463: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x04\x04\x04\x04", // 鑣
+ 0x9464: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x04\x02\x04\x01\x03\x04", // 鑤
+ 0x9465: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01", // 鑥
+ 0x9466: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x01\x02\x05\x05\x04\x02\x05\x01\x01\x01\x03\x04", // 鑦
+ 0x9467: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x05\x01\x02\x02\x02\x05\x01\x01\x01\x03\x05\x04", // 鑧
+ 0x9468: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x05\x01\x05\x01\x01\x01", // 鑨
+ 0x9469: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x05\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01\x01", // 鑩
+ 0x946a: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 鑪
+ 0x946b: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 鑫
+ 0x946c: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x01\x01\x01\x03\x05", // 鑬
+ 0x946d: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 鑭
+ 0x946e: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x04\x04\x01\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 鑮
+ 0x946f: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x03\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 鑯
+ 0x9470: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02", // 鑰
+ 0x9471: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x02\x05\x01\x01\x05\x03\x05\x03\x05\x02\x05\x01\x03\x05\x04", // 鑱
+ 0x9472: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 鑲
+ 0x9473: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 鑳
+ 0x9474: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x03\x04\x02\x05\x01", // 鑴
+ 0x9475: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 鑵
+ 0x9476: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x01\x03\x05\x01\x03\x01\x02\x05\x01\x02\x05\x05\x03\x04", // 鑶
+ 0x9477: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01", // 鑷
+ 0x9478: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x01\x02\x01", // 鑸
+ 0x9479: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x05\x03\x04\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05", // 鑹
+ 0x947a: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 鑺
+ 0x947b: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x03\x04\x01\x03\x04\x03\x01\x01\x02", // 鑻
+ 0x947c: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 鑼
+ 0x947d: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 鑽
+ 0x947e: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 鑾
+ 0x947f: "\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x03\x02\x01\x05\x01\x01\x03\x05\x05\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 鑿
+ 0x9480: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x03\x04\x04", // 钀
+ 0x9481: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 钁
+ 0x9482: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 钂
+ 0x9483: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x03\x02\x04\x01\x03\x04\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 钃
+ 0x9484: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 钄
+ 0x9485: "\x03\x01\x01\x01\x05", // 钅
+ 0x9486: "\x03\x01\x01\x01\x05\x05", // 钆
+ 0x9487: "\x03\x01\x01\x01\x05\x05", // 钇
+ 0x9488: "\x03\x01\x01\x01\x05\x01\x02", // 针
+ 0x9489: "\x03\x01\x01\x01\x05\x01\x02", // 钉
+ 0x948a: "\x03\x01\x01\x01\x05\x02\x02", // 钊
+ 0x948b: "\x03\x01\x01\x01\x05\x02\x04", // 钋
+ 0x948c: "\x03\x01\x01\x01\x05\x05\x02", // 钌
+ 0x948d: "\x03\x01\x01\x01\x05\x01\x02\x01", // 钍
+ 0x948e: "\x03\x01\x01\x01\x05\x03\x01\x02", // 钎
+ 0x948f: "\x03\x01\x01\x01\x05\x03\x02\x02", // 钏
+ 0x9490: "\x03\x01\x01\x01\x05\x03\x03\x03", // 钐
+ 0x9491: "\x03\x01\x01\x01\x05\x03\x05\x04", // 钑
+ 0x9492: "\x03\x01\x01\x01\x05\x03\x05\x04", // 钒
+ 0x9493: "\x03\x01\x01\x01\x05\x03\x05\x04", // 钓
+ 0x9494: "\x03\x01\x01\x01\x05\x04\x02\x05", // 钔
+ 0x9495: "\x03\x01\x01\x01\x05\x05\x03\x01", // 钕
+ 0x9496: "\x03\x01\x01\x01\x05\x05\x03\x03", // 钖
+ 0x9497: "\x03\x01\x01\x01\x05\x05\x04\x04", // 钗
+ 0x9498: "\x03\x01\x01\x01\x05\x01\x01\x03\x02", // 钘
+ 0x9499: "\x03\x01\x01\x01\x05\x01\x02\x01\x05", // 钙
+ 0x949a: "\x03\x01\x01\x01\x05\x01\x03\x02\x04", // 钚
+ 0x949b: "\x03\x01\x01\x01\x05\x01\x03\x04\x04", // 钛
+ 0x949c: "\x03\x01\x01\x01\x05\x01\x05\x01\x05", // 钜
+ 0x949d: "\x03\x01\x01\x01\x05\x01\x05\x02\x05", // 钝
+ 0x949e: "\x03\x01\x01\x01\x05\x02\x03\x04\x03", // 钞
+ 0x949f: "\x03\x01\x01\x01\x05\x02\x05\x01\x02", // 钟
+ 0x94a0: "\x03\x01\x01\x01\x05\x02\x05\x03\x04", // 钠
+ 0x94a1: "\x03\x01\x01\x01\x05\x02\x05\x03\x04", // 钡
+ 0x94a2: "\x03\x01\x01\x01\x05\x02\x05\x03\x04", // 钢
+ 0x94a3: "\x03\x01\x01\x01\x05\x03\x03\x05\x04", // 钣
+ 0x94a4: "\x03\x01\x01\x01\x05\x03\x04\x04\x05", // 钤
+ 0x94a5: "\x03\x01\x01\x01\x05\x03\x05\x01\x01", // 钥
+ 0x94a6: "\x03\x01\x01\x01\x05\x03\x05\x03\x04", // 钦
+ 0x94a7: "\x03\x01\x01\x01\x05\x03\x05\x04\x01", // 钧
+ 0x94a8: "\x03\x01\x01\x01\x05\x03\x05\x05\x01", // 钨
+ 0x94a9: "\x03\x01\x01\x01\x05\x03\x05\x05\x04", // 钩
+ 0x94aa: "\x03\x01\x01\x01\x05\x04\x01\x03\x05", // 钪
+ 0x94ab: "\x03\x01\x01\x01\x05\x04\x01\x05\x03", // 钫
+ 0x94ac: "\x03\x01\x01\x01\x05\x04\x03\x03\x04", // 钬
+ 0x94ad: "\x03\x01\x01\x01\x05\x04\x04\x01\x02", // 钭
+ 0x94ae: "\x03\x01\x01\x01\x05\x05\x02\x01\x01", // 钮
+ 0x94af: "\x03\x01\x01\x01\x05\x05\x02\x01\x05", // 钯
+ 0x94b0: "\x03\x01\x01\x01\x05\x01\x01\x02\x01\x04", // 钰
+ 0x94b1: "\x03\x01\x01\x01\x05\x01\x01\x05\x03\x04", // 钱
+ 0x94b2: "\x03\x01\x01\x01\x05\x01\x02\x01\x02\x01", // 钲
+ 0x94b3: "\x03\x01\x01\x01\x05\x01\x02\x02\x01\x01", // 钳
+ 0x94b4: "\x03\x01\x01\x01\x05\x01\x02\x02\x05\x01", // 钴
+ 0x94b5: "\x03\x01\x01\x01\x05\x01\x02\x03\x04\x01", // 钵
+ 0x94b6: "\x03\x01\x01\x01\x05\x01\x02\x05\x01\x02", // 钶
+ 0x94b7: "\x03\x01\x01\x01\x05\x01\x02\x05\x01\x05", // 钷
+ 0x94b8: "\x03\x01\x01\x01\x05\x01\x03\x02\x05\x01", // 钸
+ 0x94b9: "\x03\x01\x01\x01\x05\x01\x03\x05\x04\x04", // 钹
+ 0x94ba: "\x03\x01\x01\x01\x05\x01\x05\x05\x03\x04", // 钺
+ 0x94bb: "\x03\x01\x01\x01\x05\x02\x01\x02\x05\x01", // 钻
+ 0x94bc: "\x03\x01\x01\x01\x05\x02\x05\x01\x01\x01", // 钼
+ 0x94bd: "\x03\x01\x01\x01\x05\x02\x05\x01\x01\x01", // 钽
+ 0x94be: "\x03\x01\x01\x01\x05\x02\x05\x01\x01\x02", // 钾
+ 0x94bf: "\x03\x01\x01\x01\x05\x02\x05\x01\x02\x01", // 钿
+ 0x94c0: "\x03\x01\x01\x01\x05\x02\x05\x01\x02\x01", // 铀
+ 0x94c1: "\x03\x01\x01\x01\x05\x03\x01\x01\x03\x04", // 铁
+ 0x94c2: "\x03\x01\x01\x01\x05\x03\x02\x05\x01\x01", // 铂
+ 0x94c3: "\x03\x01\x01\x01\x05\x03\x04\x04\x05\x04", // 铃
+ 0x94c4: "\x03\x01\x01\x01\x05\x03\x05\x02\x03\x04", // 铄
+ 0x94c5: "\x03\x01\x01\x01\x05\x03\x05\x02\x05\x01", // 铅
+ 0x94c6: "\x03\x01\x01\x01\x05\x03\x05\x03\x05\x01", // 铆
+ 0x94c7: "\x03\x01\x01\x01\x05\x03\x05\x05\x01\x05", // 铇
+ 0x94c8: "\x03\x01\x01\x01\x05\x04\x01\x02\x05\x02", // 铈
+ 0x94c9: "\x03\x01\x01\x01\x05\x04\x01\x05\x05\x04", // 铉
+ 0x94ca: "\x03\x01\x01\x01\x05\x04\x04\x05\x03\x05", // 铊
+ 0x94cb: "\x03\x01\x01\x01\x05\x04\x05\x04\x03\x04", // 铋
+ 0x94cc: "\x03\x01\x01\x01\x05\x05\x01\x03\x03\x05", // 铌
+ 0x94cd: "\x03\x01\x01\x01\x05\x05\x03\x02\x05\x04", // 铍
+ 0x94ce: "\x03\x01\x01\x01\x05\x05\x04\x01\x01\x02", // 铎
+ 0x94cf: "\x03\x01\x01\x01\x05\x01\x01\x03\x02\x02\x02", // 铏
+ 0x94d0: "\x03\x01\x01\x01\x05\x01\x02\x01\x03\x01\x05", // 铐
+ 0x94d1: "\x03\x01\x01\x01\x05\x01\x02\x01\x03\x03\x05", // 铑
+ 0x94d2: "\x03\x01\x01\x01\x05\x01\x02\x02\x01\x01\x01", // 铒
+ 0x94d3: "\x03\x01\x01\x01\x05\x01\x02\x02\x04\x01\x05", // 铓
+ 0x94d4: "\x03\x01\x01\x01\x05\x01\x02\x02\x04\x03\x01", // 铔
+ 0x94d5: "\x03\x01\x01\x01\x05\x01\x03\x02\x05\x01\x01", // 铕
+ 0x94d6: "\x03\x01\x01\x01\x05\x01\x03\x05\x05\x03\x04", // 铖
+ 0x94d7: "\x03\x01\x01\x01\x05\x01\x04\x03\x01\x03\x04", // 铗
+ 0x94d8: "\x03\x01\x01\x01\x05\x01\x05\x02\x03\x05\x02", // 铘
+ 0x94d9: "\x03\x01\x01\x01\x05\x01\x05\x03\x01\x03\x05", // 铙
+ 0x94da: "\x03\x01\x01\x01\x05\x01\x05\x04\x01\x02\x01", // 铚
+ 0x94db: "\x03\x01\x01\x01\x05\x02\x04\x03\x05\x01\x01", // 铛
+ 0x94dc: "\x03\x01\x01\x01\x05\x02\x05\x01\x02\x05\x01", // 铜
+ 0x94dd: "\x03\x01\x01\x01\x05\x02\x05\x01\x02\x05\x01", // 铝
+ 0x94de: "\x03\x01\x01\x01\x05\x02\x05\x01\x02\x05\x02", // 铞
+ 0x94df: "\x03\x01\x01\x01\x05\x02\x05\x01\x03\x04\x01", // 铟
+ 0x94e0: "\x03\x01\x01\x01\x05\x02\x05\x02\x05\x01\x05", // 铠
+ 0x94e1: "\x03\x01\x01\x01\x05\x02\x05\x03\x04\x02\x02", // 铡
+ 0x94e2: "\x03\x01\x01\x01\x05\x03\x01\x01\x02\x03\x04", // 铢
+ 0x94e3: "\x03\x01\x01\x01\x05\x03\x01\x02\x01\x03\x05", // 铣
+ 0x94e4: "\x03\x01\x01\x01\x05\x03\x01\x02\x01\x05\x04", // 铤
+ 0x94e5: "\x03\x01\x01\x01\x05\x03\x01\x02\x01\x05\x04", // 铥
+ 0x94e6: "\x03\x01\x01\x01\x05\x03\x01\x02\x02\x05\x01", // 铦
+ 0x94e7: "\x03\x01\x01\x01\x05\x03\x02\x03\x05\x01\x02", // 铧
+ 0x94e8: "\x03\x01\x01\x01\x05\x03\x04\x01\x01\x02\x01", // 铨
+ 0x94e9: "\x03\x01\x01\x01\x05\x03\x04\x01\x02\x03\x04", // 铩
+ 0x94ea: "\x03\x01\x01\x01\x05\x03\x04\x01\x02\x05\x01", // 铪
+ 0x94eb: "\x03\x01\x01\x01\x05\x03\x04\x01\x05\x03\x04", // 铫
+ 0x94ec: "\x03\x01\x01\x01\x05\x03\x05\x04\x02\x05\x01", // 铬
+ 0x94ed: "\x03\x01\x01\x01\x05\x03\x05\x04\x02\x05\x01", // 铭
+ 0x94ee: "\x03\x01\x01\x01\x05\x03\x05\x05\x01\x01\x02", // 铮
+ 0x94ef: "\x03\x01\x01\x01\x05\x03\x05\x05\x02\x01\x05", // 铯
+ 0x94f0: "\x03\x01\x01\x01\x05\x04\x01\x03\x04\x03\x04", // 铰
+ 0x94f1: "\x03\x01\x01\x01\x05\x04\x01\x03\x05\x03\x04", // 铱
+ 0x94f2: "\x03\x01\x01\x01\x05\x04\x01\x04\x03\x01\x03", // 铲
+ 0x94f3: "\x03\x01\x01\x01\x05\x04\x01\x05\x04\x03\x05", // 铳
+ 0x94f4: "\x03\x01\x01\x01\x05\x04\x04\x01\x05\x03\x03", // 铴
+ 0x94f5: "\x03\x01\x01\x01\x05\x04\x04\x05\x05\x03\x01", // 铵
+ 0x94f6: "\x03\x01\x01\x01\x05\x05\x01\x01\x05\x03\x04", // 银
+ 0x94f7: "\x03\x01\x01\x01\x05\x05\x03\x01\x02\x05\x01", // 铷
+ 0x94f8: "\x03\x01\x01\x01\x05\x01\x01\x01\x03\x01\x02\x04", // 铸
+ 0x94f9: "\x03\x01\x01\x01\x05\x01\x02\x02\x04\x05\x05\x03", // 铹
+ 0x94fa: "\x03\x01\x01\x01\x05\x01\x02\x05\x01\x01\x02\x04", // 铺
+ 0x94fb: "\x03\x01\x01\x01\x05\x01\x02\x05\x01\x02\x05\x01", // 铻
+ 0x94fc: "\x03\x01\x01\x01\x05\x01\x04\x03\x01\x02\x03\x04", // 铼
+ 0x94fd: "\x03\x01\x01\x01\x05\x01\x04\x05\x04\x04\x05\x04", // 铽
+ 0x94fe: "\x03\x01\x01\x01\x05\x01\x05\x01\x02\x04\x05\x04", // 链
+ 0x94ff: "\x03\x01\x01\x01\x05\x02\x02\x05\x04\x01\x02\x01", // 铿
+ 0x9500: "\x03\x01\x01\x01\x05\x02\x04\x03\x02\x05\x01\x01", // 销
+ 0x9501: "\x03\x01\x01\x01\x05\x02\x04\x03\x02\x05\x03\x04", // 锁
+ 0x9502: "\x03\x01\x01\x01\x05\x02\x05\x01\x01\x02\x01\x01", // 锂
+ 0x9503: "\x03\x01\x01\x01\x05\x02\x05\x01\x01\x01\x02\x01", // 锃
+ 0x9504: "\x03\x01\x01\x01\x05\x02\x05\x01\x01\x01\x05\x03", // 锄
+ 0x9505: "\x03\x01\x01\x01\x05\x02\x05\x01\x02\x05\x03\x04", // 锅
+ 0x9506: "\x03\x01\x01\x01\x05\x03\x01\x02\x01\x02\x05\x01", // 锆
+ 0x9507: "\x03\x01\x01\x01\x05\x03\x01\x02\x01\x05\x03\x04", // 锇
+ 0x9508: "\x03\x01\x01\x01\x05\x03\x01\x02\x03\x04\x05\x03", // 锈
+ 0x9509: "\x03\x01\x01\x01\x05\x03\x04\x03\x04\x01\x02\x01", // 锉
+ 0x950a: "\x03\x01\x01\x01\x05\x03\x04\x04\x03\x01\x02\x04", // 锊
+ 0x950b: "\x03\x01\x01\x01\x05\x03\x05\x04\x01\x01\x01\x02", // 锋
+ 0x950c: "\x03\x01\x01\x01\x05\x04\x01\x04\x03\x01\x01\x02", // 锌
+ 0x950d: "\x03\x01\x01\x01\x05\x04\x01\x05\x04\x03\x02\x05", // 锍
+ 0x950e: "\x03\x01\x01\x01\x05\x04\x02\x05\x01\x01\x03\x02", // 锎
+ 0x950f: "\x03\x01\x01\x01\x05\x04\x02\x05\x02\x05\x01\x01", // 锏
+ 0x9510: "\x03\x01\x01\x01\x05\x04\x03\x02\x05\x01\x03\x05", // 锐
+ 0x9511: "\x03\x01\x01\x01\x05\x04\x03\x05\x01\x05\x02\x03", // 锑
+ 0x9512: "\x03\x01\x01\x01\x05\x04\x05\x01\x01\x05\x03\x04", // 锒
+ 0x9513: "\x03\x01\x01\x01\x05\x05\x01\x01\x04\x05\x05\x04", // 锓
+ 0x9514: "\x03\x01\x01\x01\x05\x05\x01\x03\x05\x02\x05\x01", // 锔
+ 0x9515: "\x03\x01\x01\x01\x05\x05\x02\x01\x02\x05\x01\x02", // 锕
+ 0x9516: "\x03\x01\x01\x01\x05\x01\x01\x02\x01\x02\x05\x01\x01", // 锖
+ 0x9517: "\x03\x01\x01\x01\x05\x01\x02\x01\x03\x02\x05\x01\x01", // 锗
+ 0x9518: "\x03\x01\x01\x01\x05\x01\x02\x02\x01\x03\x02\x05\x01", // 锘
+ 0x9519: "\x03\x01\x01\x01\x05\x01\x02\x02\x01\x02\x05\x01\x01", // 错
+ 0x951a: "\x03\x01\x01\x01\x05\x01\x02\x02\x02\x05\x01\x02\x01", // 锚
+ 0x951b: "\x03\x01\x01\x01\x05\x01\x03\x04\x01\x02\x01\x03\x02", // 锛
+ 0x951c: "\x03\x01\x01\x01\x05\x01\x03\x04\x01\x02\x05\x01\x02", // 锜
+ 0x951d: "\x03\x01\x01\x01\x05\x02\x05\x01\x01\x01\x01\x02\x04", // 锝
+ 0x951e: "\x03\x01\x01\x01\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 锞
+ 0x951f: "\x03\x01\x01\x01\x05\x02\x05\x01\x01\x01\x05\x03\x05", // 锟
+ 0x9520: "\x03\x01\x01\x01\x05\x02\x05\x01\x01\x02\x05\x01\x01", // 锠
+ 0x9521: "\x03\x01\x01\x01\x05\x02\x05\x01\x01\x03\x05\x03\x03", // 锡
+ 0x9522: "\x03\x01\x01\x01\x05\x02\x05\x01\x02\x02\x05\x01\x01", // 锢
+ 0x9523: "\x03\x01\x01\x01\x05\x02\x05\x02\x02\x01\x03\x05\x04", // 锣
+ 0x9524: "\x03\x01\x01\x01\x05\x03\x01\x02\x01\x02\x02\x01\x01", // 锤
+ 0x9525: "\x03\x01\x01\x01\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 锥
+ 0x9526: "\x03\x01\x01\x01\x05\x03\x02\x05\x01\x01\x02\x05\x02", // 锦
+ 0x9527: "\x03\x01\x01\x01\x05\x03\x03\x01\x02\x02\x05\x03\x04", // 锧
+ 0x9528: "\x03\x01\x01\x01\x05\x03\x03\x01\x02\x03\x05\x03\x04", // 锨
+ 0x9529: "\x03\x01\x01\x01\x05\x04\x03\x01\x01\x03\x04\x05\x05", // 锩
+ 0x952a: "\x03\x01\x01\x01\x05\x03\x05\x03\x03\x04\x05\x04\x04", // 锪
+ 0x952b: "\x03\x01\x01\x01\x05\x04\x01\x04\x03\x01\x02\x05\x01", // 锫
+ 0x952c: "\x03\x01\x01\x01\x05\x04\x03\x03\x04\x04\x03\x03\x04", // 锬
+ 0x952d: "\x03\x01\x01\x01\x05\x04\x04\x05\x01\x02\x01\x03\x04", // 锭
+ 0x952e: "\x03\x01\x01\x01\x05\x05\x01\x01\x01\x01\x02\x05\x04", // 键
+ 0x952f: "\x03\x01\x01\x01\x05\x05\x01\x03\x01\x02\x02\x05\x01", // 锯
+ 0x9530: "\x03\x01\x01\x01\x05\x05\x02\x01\x02\x05\x02\x02\x01", // 锰
+ 0x9531: "\x03\x01\x01\x01\x05\x05\x05\x05\x02\x05\x01\x02\x01", // 锱
+ 0x9532: "\x03\x01\x01\x01\x05\x01\x01\x01\x02\x05\x03\x01\x03\x04", // 锲
+ 0x9533: "\x03\x01\x01\x01\x05\x01\x02\x02\x02\x05\x01\x03\x04", // 锳
+ 0x9534: "\x03\x01\x01\x01\x05\x01\x05\x03\x05\x03\x02\x05\x01\x01", // 锴
+ 0x9535: "\x03\x01\x01\x01\x05\x04\x01\x02\x03\x05\x04\x01\x02\x04", // 锵
+ 0x9536: "\x03\x01\x01\x01\x05\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 锶
+ 0x9537: "\x03\x01\x01\x01\x05\x02\x05\x01\x02\x05\x01\x01\x01\x05", // 锷
+ 0x9538: "\x03\x01\x01\x01\x05\x03\x01\x02\x03\x02\x01\x05\x01\x01", // 锸
+ 0x9539: "\x03\x01\x01\x01\x05\x03\x01\x02\x03\x04\x04\x03\x03\x04", // 锹
+ 0x953a: "\x03\x01\x01\x01\x05\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 锺
+ 0x953b: "\x03\x01\x01\x01\x05\x03\x02\x01\x01\x01\x03\x05\x05\x04", // 锻
+ 0x953c: "\x03\x01\x01\x01\x05\x03\x02\x01\x05\x01\x01\x02\x05\x04", // 锼
+ 0x953d: "\x03\x01\x01\x01\x05\x03\x02\x05\x01\x01\x01\x01\x02\x01", // 锽
+ 0x953e: "\x03\x01\x01\x01\x05\x03\x04\x04\x03\x01\x01\x03\x05\x04", // 锾
+ 0x953f: "\x03\x01\x01\x01\x05\x04\x01\x02\x05\x01\x03\x05\x03\x04", // 锿
+ 0x9540: "\x03\x01\x01\x01\x05\x04\x01\x03\x01\x02\x02\x01\x05\x04", // 镀
+ 0x9541: "\x03\x01\x01\x01\x05\x04\x03\x01\x01\x02\x01\x01\x03\x04", // 镁
+ 0x9542: "\x03\x01\x01\x01\x05\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 镂
+ 0x9543: "\x03\x01\x01\x01\x05\x04\x03\x01\x05\x05\x04\x05\x05\x04", // 镃
+ 0x9544: "\x03\x01\x01\x01\x05\x05\x01\x05\x03\x02\x02\x05\x03\x04", // 镄
+ 0x9545: "\x03\x01\x01\x01\x05\x05\x02\x01\x03\x02\x05\x01\x01\x01", // 镅
+ 0x9546: "\x03\x01\x01\x01\x05\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 镆
+ 0x9547: "\x03\x01\x01\x01\x05\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 镇
+ 0x9548: "\x03\x01\x01\x01\x05\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 镈
+ 0x9549: "\x03\x01\x01\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 镉
+ 0x954a: "\x03\x01\x01\x01\x05\x01\x02\x02\x01\x01\x01\x05\x04\x05\x04", // 镊
+ 0x954b: "\x03\x01\x01\x01\x05\x02\x04\x03\x04\x05\x02\x05\x01\x03\x05", // 镋
+ 0x954c: "\x03\x01\x01\x01\x05\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03", // 镌
+ 0x954d: "\x03\x01\x01\x01\x05\x03\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 镍
+ 0x954e: "\x03\x01\x01\x01\x05\x03\x04\x01\x02\x05\x01\x03\x01\x01\x02", // 镎
+ 0x954f: "\x03\x01\x01\x01\x05\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 镏
+ 0x9550: "\x03\x01\x01\x01\x05\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 镐
+ 0x9551: "\x03\x01\x01\x01\x05\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03", // 镑
+ 0x9552: "\x03\x01\x01\x01\x05\x04\x03\x01\x03\x04\x02\x05\x02\x02\x01", // 镒
+ 0x9553: "\x03\x01\x01\x01\x05\x04\x04\x05\x01\x03\x05\x03\x03\x03\x04", // 镓
+ 0x9554: "\x03\x01\x01\x01\x05\x04\x04\x05\x03\x02\x01\x02\x01\x03\x04", // 镔
+ 0x9555: "\x03\x01\x01\x01\x05\x04\x04\x05\x03\x04\x03\x04\x02\x05\x01", // 镕
+ 0x9556: "\x03\x01\x01\x01\x05\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 镖
+ 0x9557: "\x03\x01\x01\x01\x05\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x01", // 镗
+ 0x9558: "\x03\x01\x01\x01\x05\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 镘
+ 0x9559: "\x03\x01\x01\x01\x05\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 镙
+ 0x955a: "\x03\x01\x01\x01\x05\x02\x05\x02\x03\x05\x01\x01\x03\x05\x01\x01", // 镚
+ 0x955b: "\x03\x01\x01\x01\x05\x04\x01\x03\x05\x01\x01\x02\x05\x01\x01\x02", // 镛
+ 0x955c: "\x03\x01\x01\x01\x05\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05", // 镜
+ 0x955d: "\x03\x01\x01\x01\x05\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01", // 镝
+ 0x955e: "\x03\x01\x01\x01\x05\x04\x01\x05\x03\x03\x01\x03\x01\x01\x03\x04", // 镞
+ 0x955f: "\x03\x01\x01\x01\x05\x04\x01\x05\x03\x03\x01\x05\x02\x01\x03\x04", // 镟
+ 0x9560: "\x03\x01\x01\x01\x05\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 镠
+ 0x9561: "\x03\x01\x01\x01\x05\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 镡
+ 0x9562: "\x03\x01\x01\x01\x05\x01\x03\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04", // 镢
+ 0x9563: "\x03\x01\x01\x01\x05\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 镣
+ 0x9564: "\x03\x01\x01\x01\x05\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 镤
+ 0x9565: "\x03\x01\x01\x01\x05\x03\x05\x02\x05\x01\x02\x01\x01\x02\x05\x01\x01", // 镥
+ 0x9566: "\x03\x01\x01\x01\x05\x04\x01\x02\x05\x01\x05\x02\x01\x03\x01\x03\x04", // 镦
+ 0x9567: "\x03\x01\x01\x01\x05\x04\x02\x05\x01\x02\x05\x03\x04\x01\x02\x03\x04", // 镧
+ 0x9568: "\x03\x01\x01\x01\x05\x04\x03\x01\x02\x02\x04\x03\x01\x02\x05\x01\x01", // 镨
+ 0x9569: "\x03\x01\x01\x01\x05\x04\x04\x05\x03\x04\x02\x05\x01\x02\x05\x01\x02", // 镩
+ 0x956a: "\x03\x01\x01\x01\x05\x05\x01\x05\x02\x05\x01\x02\x05\x01\x02\x01\x04", // 镪
+ 0x956b: "\x03\x01\x01\x01\x05\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 镫
+ 0x956c: "\x03\x01\x01\x01\x05\x01\x02\x02\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 镬
+ 0x956d: "\x03\x01\x01\x01\x05\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x01", // 镭
+ 0x956e: "\x03\x01\x01\x01\x05\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 镮
+ 0x956f: "\x03\x01\x01\x01\x05\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 镯
+ 0x9570: "\x03\x01\x01\x01\x05\x04\x01\x03\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 镰
+ 0x9571: "\x03\x01\x01\x01\x05\x04\x01\x04\x03\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 镱
+ 0x9572: "\x03\x01\x01\x01\x05\x04\x04\x05\x03\x05\x04\x04\x05\x04\x01\x01\x02\x03\x04", // 镲
+ 0x9573: "\x03\x01\x01\x01\x05\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x04\x04\x04\x04", // 镳
+ 0x9574: "\x03\x01\x01\x01\x05\x05\x05\x05\x02\x05\x03\x04\x01\x05\x04\x04\x05\x04\x04\x05", // 镴
+ 0x9575: "\x03\x01\x01\x01\x05\x03\x05\x02\x05\x01\x01\x05\x03\x05\x03\x05\x02\x05\x01\x03\x05\x04", // 镵
+ 0x9576: "\x03\x01\x01\x01\x05\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 镶
+ 0x9577: "\x01\x02\x01\x01\x01\x05\x03\x04", // 長
+ 0x9578: "\x01\x02\x01\x01\x01\x05\x04", // 镸
+ 0x9579: "\x01\x02\x01\x01\x01\x05\x04\x03\x05\x04", // 镹
+ 0x957a: "\x01\x02\x01\x01\x01\x05\x04\x03\x01\x03\x04", // 镺
+ 0x957b: "\x01\x02\x01\x01\x01\x05\x04\x03\x01\x01\x03\x04", // 镻
+ 0x957c: "\x01\x02\x01\x01\x01\x05\x04\x05\x01\x03\x05\x02\x02\x05\x02", // 镼
+ 0x957d: "\x01\x02\x01\x01\x01\x05\x04\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 镽
+ 0x957e: "\x01\x02\x01\x01\x01\x05\x04\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 镾
+ 0x957f: "\x03\x01\x05\x04", // 长
+ 0x9580: "\x02\x05\x01\x01\x02\x05\x01\x01", // 門
+ 0x9581: "\x02\x05\x01\x01\x02\x05\x01\x01\x03", // 閁
+ 0x9582: "\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 閂
+ 0x9583: "\x02\x05\x01\x01\x02\x05\x01\x01\x03\x04", // 閃
+ 0x9584: "\x02\x05\x01\x01\x02\x05\x01\x01\x03\x04", // 閄
+ 0x9585: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02", // 閅
+ 0x9586: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x01\x01", // 閆
+ 0x9587: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x04", // 閇
+ 0x9588: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x01\x02", // 閈
+ 0x9589: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x03", // 閉
+ 0x958a: "\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x02", // 閊
+ 0x958b: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x01\x03\x02", // 開
+ 0x958c: "\x02\x05\x01\x01\x02\x05\x01\x01\x04\x01\x03\x05", // 閌
+ 0x958d: "\x02\x05\x01\x01\x02\x05\x01\x01\x04\x01\x05\x03", // 閍
+ 0x958e: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x05\x04", // 閎
+ 0x958f: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x01\x02\x01", // 閏
+ 0x9590: "\x02\x05\x01\x01\x02\x05\x01\x01\x03\x01\x01\x05", // 閐
+ 0x9591: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x03\x04", // 閑
+ 0x9592: "\x02\x05\x01\x01\x02\x05\x01\x01\x03\x05\x01\x01", // 閒
+ 0x9593: "\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01", // 間
+ 0x9594: "\x02\x05\x01\x01\x02\x05\x01\x01\x04\x01\x03\x04", // 閔
+ 0x9595: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x05\x02\x03", // 閕
+ 0x9596: "\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x03\x04", // 閖
+ 0x9597: "\x02\x05\x01\x01\x02\x05\x01\x01\x04\x04\x01\x02", // 閗
+ 0x9598: "\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01\x02", // 閘
+ 0x9599: "\x02\x05\x01\x01\x02\x05\x01\x01\x04\x01\x02\x05\x02", // 閙
+ 0x959a: "\x02\x05\x01\x01\x02\x05\x01\x01\x04\x01\x04\x03\x01", // 閚
+ 0x959b: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x04\x03\x01\x02", // 閛
+ 0x959c: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x05\x01\x02", // 閜
+ 0x959d: "\x02\x05\x01\x01\x02\x05\x01\x01\x03\x04\x04\x05\x04", // 閝
+ 0x959e: "\x02\x05\x01\x01\x02\x05\x01\x01\x05\x04\x01\x03\x02", // 閞
+ 0x959f: "\x02\x05\x01\x01\x02\x05\x01\x01\x04\x05\x04\x03\x04", // 閟
+ 0x95a0: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x01\x02\x01\x04", // 閠
+ 0x95a1: "\x02\x05\x01\x01\x02\x05\x01\x01\x04\x01\x05\x03\x03\x04", // 閡
+ 0x95a2: "\x02\x05\x01\x01\x02\x05\x01\x01\x04\x03\x01\x01\x03\x04", // 関
+ 0x95a3: "\x02\x05\x01\x01\x02\x05\x01\x01\x03\x05\x04\x02\x05\x01", // 閣
+ 0x95a4: "\x02\x05\x01\x01\x02\x05\x01\x01\x03\x04\x01\x02\x05\x01", // 閤
+ 0x95a5: "\x02\x05\x01\x01\x02\x05\x01\x01\x03\x02\x01\x05\x03\x04", // 閥
+ 0x95a6: "\x02\x05\x01\x01\x02\x05\x01\x01\x03\x04\x03\x04\x03\x04", // 閦
+ 0x95a7: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x04", // 閧
+ 0x95a8: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x01\x01\x02\x01", // 閨
+ 0x95a9: "\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x02\x01\x04", // 閩
+ 0x95aa: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x05\x03\x05\x01", // 閪
+ 0x95ab: "\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x02\x03\x04\x01", // 閫
+ 0x95ac: "\x02\x05\x01\x01\x02\x05\x01\x01\x04\x05\x01\x01\x05\x03\x04", // 閬
+ 0x95ad: "\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01", // 閭
+ 0x95ae: "\x02\x05\x01\x01\x02\x05\x01\x01\x03\x01\x02\x01\x05\x04", // 閮
+ 0x95af: "\x02\x05\x01\x01\x02\x05\x01\x01\x04\x04\x01\x02\x03\x04\x03", // 閯
+ 0x95b0: "\x02\x05\x01\x01\x02\x05\x01\x01\x03\x02\x01\x05\x01\x01", // 閰
+ 0x95b1: "\x02\x05\x01\x01\x02\x05\x01\x01\x03\x04\x02\x05\x01\x03\x05", // 閱
+ 0x95b2: "\x02\x05\x01\x01\x02\x05\x01\x01\x04\x03\x02\x05\x01\x03\x05", // 閲
+ 0x95b3: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x02", // 閳
+ 0x95b4: "\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x04", // 閴
+ 0x95b5: "\x02\x05\x01\x01\x02\x05\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 閵
+ 0x95b6: "\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01", // 閶
+ 0x95b7: "\x03\x04\x01\x02\x03\x04\x02\x05\x01\x01\x02\x05\x01\x01\x03\x04", // 閷
+ 0x95b8: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x01\x05\x05\x01\x02\x01", // 閸
+ 0x95b9: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x05", // 閹
+ 0x95ba: "\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01\x04\x01\x03\x04", // 閺
+ 0x95bb: "\x02\x05\x01\x01\x02\x05\x01\x01\x03\x05\x03\x02\x01\x05\x01\x01", // 閻
+ 0x95bc: "\x02\x05\x01\x01\x02\x05\x01\x01\x04\x01\x05\x03\x03\x04\x04\x04", // 閼
+ 0x95bd: "\x02\x05\x01\x01\x02\x05\x01\x01\x03\x05\x01\x05\x02\x05\x01\x01", // 閽
+ 0x95be: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x05\x03\x04", // 閾
+ 0x95bf: "\x02\x05\x01\x01\x02\x05\x01\x01\x03\x04\x04\x03\x04\x05\x05\x04", // 閿
+ 0x95c0: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x04\x05\x01\x05", // 闀
+ 0x95c1: "\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01", // 闁
+ 0x95c2: "\x02\x05\x01\x01\x02\x05\x01\x01\x04\x03\x01\x01\x03\x04\x05\x05", // 闂
+ 0x95c3: "\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01\x01\x01\x03\x04\x04", // 闃
+ 0x95c4: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x05\x02\x02\x01\x05\x03\x01", // 闄
+ 0x95c5: "\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x01\x05\x04", // 闅
+ 0x95c6: "\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 闆
+ 0x95c7: "\x02\x05\x01\x01\x02\x05\x01\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 闇
+ 0x95c8: "\x02\x05\x01\x01\x02\x05\x01\x01\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 闈
+ 0x95c9: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x05\x02\x02\x01\x01\x02\x01", // 闉
+ 0x95ca: "\x02\x05\x01\x01\x02\x05\x01\x01\x04\x04\x01\x03\x01\x02\x02\x05\x01", // 闊
+ 0x95cb: "\x02\x05\x01\x01\x02\x05\x01\x01\x05\x04\x03\x03\x04\x01\x01\x03\x04", // 闋
+ 0x95cc: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 闌
+ 0x95cd: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 闍
+ 0x95ce: "\x02\x05\x01\x01\x02\x05\x01\x01\x03\x02\x05\x01\x01\x02\x05\x03\x04", // 闎
+ 0x95cf: "\x02\x05\x01\x01\x02\x05\x01\x01\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 闏
+ 0x95d0: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 闐
+ 0x95d1: "\x02\x05\x01\x01\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 闑
+ 0x95d2: "\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 闒
+ 0x95d3: "\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 闓
+ 0x95d4: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 闔
+ 0x95d5: "\x02\x05\x01\x01\x02\x05\x01\x01\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04", // 闕
+ 0x95d6: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 闖
+ 0x95d7: "\x02\x05\x01\x01\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x04\x04\x04\x04", // 闗
+ 0x95d8: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x05\x01\x04\x03\x01\x01\x02\x04", // 闘
+ 0x95d9: "\x02\x05\x01\x01\x02\x05\x01\x01\x04\x05\x01\x03\x02\x05\x01\x03\x01\x03\x04", // 闙
+ 0x95da: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 闚
+ 0x95db: "\x02\x05\x01\x01\x02\x05\x01\x01\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x01", // 闛
+ 0x95dc: "\x02\x05\x01\x01\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x05\x03\x02\x01\x02", // 關
+ 0x95dd: "\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x04\x03\x01\x03\x04", // 闝
+ 0x95de: "\x02\x05\x01\x01\x02\x05\x01\x01\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 闞
+ 0x95df: "\x02\x05\x01\x01\x02\x05\x01\x01\x03\x04\x01\x02\x05\x01\x05\x04\x01\x05\x04\x01", // 闟
+ 0x95e0: "\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 闠
+ 0x95e1: "\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 闡
+ 0x95e2: "\x02\x05\x01\x01\x02\x05\x01\x01\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 闢
+ 0x95e3: "\x02\x05\x01\x01\x02\x05\x01\x01\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x01\x02\x01", // 闣
+ 0x95e4: "\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 闤
+ 0x95e5: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x01\x04\x03\x01\x01\x01\x02\x04\x05\x04", // 闥
+ 0x95e6: "\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01", // 闦
+ 0x95e7: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x03\x02\x03\x04\x04\x05\x04", // 闧
+ 0x95e8: "\x04\x02\x05", // 门
+ 0x95e9: "\x04\x02\x05\x01", // 闩
+ 0x95ea: "\x04\x02\x05\x03\x04", // 闪
+ 0x95eb: "\x04\x02\x05\x01\x01\x01", // 闫
+ 0x95ec: "\x04\x02\x05\x01\x01\x02", // 闬
+ 0x95ed: "\x04\x02\x05\x01\x02\x03", // 闭
+ 0x95ee: "\x04\x02\x05\x02\x05\x01", // 问
+ 0x95ef: "\x04\x02\x05\x05\x05\x01", // 闯
+ 0x95f0: "\x04\x02\x05\x01\x01\x02\x01", // 闰
+ 0x95f1: "\x04\x02\x05\x01\x01\x05\x02", // 闱
+ 0x95f2: "\x04\x02\x05\x01\x02\x03\x04", // 闲
+ 0x95f3: "\x04\x02\x05\x01\x03\x05\x04", // 闳
+ 0x95f4: "\x04\x02\x05\x02\x05\x01\x01", // 间
+ 0x95f5: "\x04\x02\x05\x04\x01\x03\x04", // 闵
+ 0x95f6: "\x04\x02\x05\x04\x01\x03\x05", // 闶
+ 0x95f7: "\x04\x02\x05\x04\x05\x04\x04", // 闷
+ 0x95f8: "\x04\x02\x05\x02\x05\x01\x01\x02", // 闸
+ 0x95f9: "\x04\x02\x05\x04\x01\x02\x05\x02", // 闹
+ 0x95fa: "\x04\x02\x05\x01\x02\x01\x01\x02\x01", // 闺
+ 0x95fb: "\x04\x02\x05\x01\x02\x02\x01\x01\x01", // 闻
+ 0x95fc: "\x04\x02\x05\x01\x03\x04\x04\x05\x04", // 闼
+ 0x95fd: "\x04\x02\x05\x02\x05\x01\x02\x01\x04", // 闽
+ 0x95fe: "\x04\x02\x05\x02\x05\x01\x02\x05\x01", // 闾
+ 0x95ff: "\x04\x02\x05\x02\x05\x02\x05\x01\x05", // 闿
+ 0x9600: "\x04\x02\x05\x03\x02\x01\x05\x03\x04", // 阀
+ 0x9601: "\x04\x02\x05\x03\x05\x04\x02\x05\x01", // 阁
+ 0x9602: "\x04\x02\x05\x04\x01\x05\x03\x03\x04", // 阂
+ 0x9603: "\x04\x02\x05\x02\x05\x01\x02\x03\x04\x01", // 阃
+ 0x9604: "\x04\x02\x05\x03\x05\x02\x05\x01\x01\x05", // 阄
+ 0x9605: "\x04\x02\x05\x04\x03\x02\x05\x01\x03\x05", // 阅
+ 0x9606: "\x04\x02\x05\x04\x05\x01\x01\x05\x03\x04", // 阆
+ 0x9607: "\x04\x02\x05\x01\x02\x01\x03\x02\x05\x01\x01", // 阇
+ 0x9608: "\x04\x02\x05\x01\x02\x05\x01\x01\x05\x03\x04", // 阈
+ 0x9609: "\x04\x02\x05\x01\x03\x04\x02\x05\x01\x01\x05", // 阉
+ 0x960a: "\x04\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01", // 阊
+ 0x960b: "\x04\x02\x05\x03\x02\x01\x05\x01\x01\x03\x05", // 阋
+ 0x960c: "\x04\x02\x05\x03\x04\x04\x03\x04\x05\x05\x04", // 阌
+ 0x960d: "\x04\x02\x05\x03\x05\x01\x05\x02\x05\x01\x01", // 阍
+ 0x960e: "\x04\x02\x05\x03\x05\x03\x02\x01\x05\x01\x01", // 阎
+ 0x960f: "\x04\x02\x05\x04\x01\x05\x03\x03\x04\x04\x04", // 阏
+ 0x9610: "\x04\x02\x05\x04\x03\x02\x05\x01\x01\x01\x02", // 阐
+ 0x9611: "\x04\x02\x05\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 阑
+ 0x9612: "\x04\x02\x05\x02\x05\x01\x01\x01\x01\x03\x04\x04", // 阒
+ 0x9613: "\x04\x02\x05\x02\x05\x01\x02\x01\x02\x05\x03\x04", // 阓
+ 0x9614: "\x04\x02\x05\x04\x04\x01\x03\x01\x02\x02\x05\x01", // 阔
+ 0x9615: "\x04\x02\x05\x05\x04\x03\x03\x04\x01\x01\x03\x04", // 阕
+ 0x9616: "\x04\x02\x05\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 阖
+ 0x9617: "\x04\x02\x05\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 阗
+ 0x9618: "\x04\x02\x05\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 阘
+ 0x9619: "\x04\x02\x05\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04", // 阙
+ 0x961a: "\x04\x02\x05\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 阚
+ 0x961b: "\x04\x02\x05\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 阛
+ 0x961c: "\x03\x02\x05\x01\x05\x01\x01\x02", // 阜
+ 0x961d: "\x05\x02", // 阝
+ 0x961e: "\x05\x02\x05\x03", // 阞
+ 0x961f: "\x05\x02\x03\x04", // 队
+ 0x9620: "\x05\x02\x05\x01\x02", // 阠
+ 0x9621: "\x05\x02\x03\x01\x02", // 阡
+ 0x9622: "\x05\x02\x01\x03\x05", // 阢
+ 0x9623: "\x05\x02\x03\x01\x05", // 阣
+ 0x9624: "\x05\x02\x05\x02\x05", // 阤
+ 0x9625: "\x05\x02\x02\x05\x03\x04", // 阥
+ 0x9626: "\x05\x02\x04\x03\x03\x04", // 阦
+ 0x9627: "\x05\x02\x04\x04\x01\x02", // 阧
+ 0x9628: "\x05\x02\x01\x03\x05\x05", // 阨
+ 0x9629: "\x05\x02\x03\x01\x03\x02", // 阩
+ 0x962a: "\x05\x02\x03\x03\x05\x04", // 阪
+ 0x962b: "\x05\x02\x01\x03\x02\x04", // 阫
+ 0x962c: "\x05\x02\x04\x01\x03\x05", // 阬
+ 0x962d: "\x05\x02\x05\x04\x03\x05", // 阭
+ 0x962e: "\x05\x02\x01\x01\x03\x05", // 阮
+ 0x962f: "\x05\x02\x02\x01\x02\x01", // 阯
+ 0x9630: "\x05\x02\x01\x05\x03\x05", // 阰
+ 0x9631: "\x05\x02\x01\x01\x03\x02", // 阱
+ 0x9632: "\x05\x02\x04\x01\x05\x03", // 防
+ 0x9633: "\x05\x02\x02\x05\x01\x01", // 阳
+ 0x9634: "\x05\x02\x03\x05\x01\x01", // 阴
+ 0x9635: "\x05\x02\x01\x05\x01\x02", // 阵
+ 0x9636: "\x05\x02\x03\x04\x03\x02", // 阶
+ 0x9637: "\x05\x02\x01\x02\x01\x02\x01", // 阷
+ 0x9638: "\x05\x02\x04\x05\x01\x03\x05", // 阸
+ 0x9639: "\x05\x02\x01\x02\x01\x05\x04", // 阹
+ 0x963a: "\x05\x02\x03\x05\x01\x05\x04", // 阺
+ 0x963b: "\x05\x02\x02\x05\x01\x01\x01", // 阻
+ 0x963c: "\x05\x02\x03\x01\x02\x01\x01", // 阼
+ 0x963d: "\x05\x02\x02\x01\x02\x05\x01", // 阽
+ 0x963e: "\x05\x02\x03\x04\x04\x05\x04", // 阾
+ 0x963f: "\x05\x02\x01\x02\x05\x01\x02", // 阿
+ 0x9640: "\x05\x02\x04\x04\x05\x03\x05", // 陀
+ 0x9641: "\x05\x02\x03\x01\x05\x02\x05", // 陁
+ 0x9642: "\x05\x02\x05\x03\x02\x05\x04", // 陂
+ 0x9643: "\x05\x02\x01\x02\x05\x03\x04", // 陃
+ 0x9644: "\x05\x02\x03\x02\x01\x02\x04", // 附
+ 0x9645: "\x05\x02\x01\x01\x02\x03\x04", // 际
+ 0x9646: "\x05\x02\x01\x01\x02\x05\x02", // 陆
+ 0x9647: "\x05\x02\x01\x03\x05\x03\x04", // 陇
+ 0x9648: "\x05\x02\x01\x05\x02\x03\x04", // 陈
+ 0x9649: "\x05\x02\x05\x04\x01\x02\x01", // 陉
+ 0x964a: "\x05\x02\x03\x05\x04\x03\x05\x04", // 陊
+ 0x964b: "\x05\x02\x01\x02\x05\x03\x04\x05", // 陋
+ 0x964c: "\x05\x02\x01\x03\x02\x05\x01\x01", // 陌
+ 0x964d: "\x05\x02\x03\x05\x04\x01\x05\x02", // 降
+ 0x964e: "\x05\x02\x03\x01\x01\x02\x03\x04", // 陎
+ 0x964f: "\x05\x02\x01\x03\x02\x05\x01\x01", // 陏
+ 0x9650: "\x05\x02\x05\x01\x01\x05\x03\x04", // 限
+ 0x9651: "\x05\x02\x01\x03\x02\x05\x02\x02", // 陑
+ 0x9652: "\x05\x02\x03\x05\x01\x03\x05\x05", // 陒
+ 0x9653: "\x05\x02\x01\x03\x04\x01\x01\x05", // 陓
+ 0x9654: "\x05\x02\x04\x01\x05\x03\x03\x04", // 陔
+ 0x9655: "\x05\x02\x01\x04\x03\x01\x03\x04", // 陕
+ 0x9656: "\x05\x02\x05\x04\x03\x04\x03\x05\x04", // 陖
+ 0x9657: "\x05\x02\x02\x04\x03\x02\x05\x01\x01", // 陗
+ 0x9658: "\x05\x02\x01\x05\x05\x05\x01\x02\x01", // 陘
+ 0x9659: "\x05\x02\x01\x03\x01\x01\x05\x03\x04", // 陙
+ 0x965a: "\x05\x02\x01\x01\x02\x01\x02\x01\x05\x04", // 陚
+ 0x965b: "\x05\x02\x01\x05\x03\x05\x01\x02\x01", // 陛
+ 0x965c: "\x05\x02\x01\x03\x04\x03\x04\x03\x04", // 陜
+ 0x965d: "\x05\x02\x01\x03\x04\x03\x04\x03\x04", // 陝
+ 0x965e: "\x05\x02\x03\x01\x03\x02\x01\x02\x01", // 陞
+ 0x965f: "\x05\x02\x02\x01\x02\x01\x02\x03\x03", // 陟
+ 0x9660: "\x05\x02\x01\x02\x05\x01\x01\x02\x04", // 陠
+ 0x9661: "\x05\x02\x01\x02\x01\x02\x01\x03\x04", // 陡
+ 0x9662: "\x05\x02\x04\x04\x05\x01\x01\x03\x05", // 院
+ 0x9663: "\x05\x02\x01\x02\x05\x01\x01\x01\x02", // 陣
+ 0x9664: "\x05\x02\x03\x04\x01\x01\x02\x03\x04", // 除
+ 0x9665: "\x05\x02\x03\x05\x02\x02\x05\x01\x01", // 陥
+ 0x9666: "\x05\x02\x01\x01\x01\x03\x01\x02\x04", // 陦
+ 0x9667: "\x05\x02\x02\x05\x01\x01\x01\x02\x01", // 陧
+ 0x9668: "\x05\x02\x02\x05\x01\x02\x05\x03\x04", // 陨
+ 0x9669: "\x05\x02\x03\x04\x01\x04\x04\x03\x01", // 险
+ 0x966a: "\x05\x02\x04\x01\x04\x03\x01\x02\x05\x01", // 陪
+ 0x966b: "\x05\x02\x02\x01\x01\x01\x02\x01\x01\x01", // 陫
+ 0x966c: "\x05\x02\x01\x02\x02\x01\x01\x01\x05\x04", // 陬
+ 0x966d: "\x05\x02\x01\x03\x04\x01\x02\x05\x01\x02", // 陭
+ 0x966e: "\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 陮
+ 0x966f: "\x05\x02\x03\x04\x01\x02\x05\x01\x02\x02", // 陯
+ 0x9670: "\x05\x02\x03\x04\x04\x05\x01\x01\x05\x04", // 陰
+ 0x9671: "\x05\x02\x03\x05\x04\x03\x01\x02\x03\x04", // 陱
+ 0x9672: "\x05\x02\x03\x01\x02\x01\x02\x02\x01\x01", // 陲
+ 0x9673: "\x05\x02\x01\x02\x05\x01\x01\x02\x03\x04", // 陳
+ 0x9674: "\x05\x02\x03\x02\x05\x01\x01\x03\x01\x02", // 陴
+ 0x9675: "\x05\x02\x01\x02\x01\x03\x04\x03\x05\x04", // 陵
+ 0x9676: "\x05\x02\x03\x05\x03\x01\x01\x02\x05\x02", // 陶
+ 0x9677: "\x05\x02\x03\x05\x03\x02\x01\x05\x01\x01", // 陷
+ 0x9678: "\x05\x02\x01\x02\x01\x03\x04\x01\x02\x01", // 陸
+ 0x9679: "\x05\x02\x03\x01\x03\x02\x02\x05\x01\x01", // 陹
+ 0x967a: "\x05\x02\x03\x04\x01\x02\x05\x01\x03\x04", // 険
+ 0x967b: "\x05\x02\x01\x02\x05\x02\x02\x01\x01\x02\x01", // 陻
+ 0x967c: "\x05\x02\x01\x02\x01\x03\x02\x05\x01\x01", // 陼
+ 0x967d: "\x05\x02\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 陽
+ 0x967e: "\x05\x02\x01\x03\x02\x05\x02\x02\x01\x03\x04", // 陾
+ 0x967f: "\x05\x02\x01\x01\x03\x04\x03\x04\x03\x04\x05", // 陿
+ 0x9680: "\x05\x02\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 隀
+ 0x9681: "\x05\x02\x01\x02\x05\x01\x01\x05\x03\x01\x05", // 隁
+ 0x9682: "\x05\x02\x03\x04\x01\x02\x01\x01\x01\x05\x04", // 隂
+ 0x9683: "\x05\x02\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 隃
+ 0x9684: "\x05\x02\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 隄
+ 0x9685: "\x05\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 隅
+ 0x9686: "\x05\x02\x03\x05\x04\x01\x03\x01\x01\x02\x01", // 隆
+ 0x9687: "\x05\x02\x01\x03\x01\x05\x03\x01\x05\x03\x04", // 隇
+ 0x9688: "\x05\x02\x02\x05\x01\x02\x01\x01\x05\x03\x04", // 隈
+ 0x9689: "\x05\x02\x03\x02\x01\x05\x01\x01\x01\x02\x01", // 隉
+ 0x968a: "\x05\x02\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 隊
+ 0x968b: "\x05\x02\x01\x03\x01\x02\x01\x02\x05\x01\x01", // 隋
+ 0x968c: "\x05\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 隌
+ 0x968d: "\x05\x02\x03\x02\x05\x01\x01\x01\x01\x02\x01", // 隍
+ 0x968e: "\x05\x02\x01\x05\x03\x05\x03\x02\x05\x01\x01", // 階
+ 0x968f: "\x05\x02\x01\x03\x02\x05\x01\x01\x04\x05\x04", // 随
+ 0x9690: "\x05\x02\x03\x05\x05\x01\x01\x04\x05\x04\x04", // 隐
+ 0x9691: "\x05\x02\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 隑
+ 0x9692: "\x05\x02\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 隒
+ 0x9693: "\x05\x02\x01\x03\x01\x02\x01\x01\x03\x01\x02\x01", // 隓
+ 0x9694: "\x05\x02\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 隔
+ 0x9695: "\x05\x02\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 隕
+ 0x9696: "\x05\x02\x03\x02\x05\x01\x01\x05\x04\x04\x04\x04", // 隖
+ 0x9697: "\x05\x02\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 隗
+ 0x9698: "\x05\x02\x04\x03\x01\x03\x04\x02\x05\x02\x02\x01", // 隘
+ 0x9699: "\x05\x02\x02\x03\x04\x02\x05\x01\x01\x02\x03\x04", // 隙
+ 0x969a: "\x05\x02\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x01", // 隚
+ 0x969b: "\x05\x02\x03\x05\x04\x04\x05\x04\x01\x01\x02\x03\x04", // 際
+ 0x969c: "\x05\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02", // 障
+ 0x969d: "\x05\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 隝
+ 0x969e: "\x05\x02\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04", // 隞
+ 0x969f: "\x05\x02\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 隟
+ 0x96a0: "\x05\x02\x03\x04\x04\x03\x05\x01\x01\x04\x05\x04\x04", // 隠
+ 0x96a1: "\x05\x02\x04\x01\x04\x03\x01\x03\x03\x01\x01\x02\x01", // 隡
+ 0x96a2: "\x05\x02\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 隢
+ 0x96a3: "\x05\x02\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 隣
+ 0x96a4: "\x05\x02\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 隤
+ 0x96a5: "\x05\x02\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 隥
+ 0x96a6: "\x05\x02\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 隦
+ 0x96a7: "\x05\x02\x04\x03\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 隧
+ 0x96a8: "\x05\x02\x01\x03\x01\x02\x01\x02\x05\x01\x01\x04\x05\x04", // 隨
+ 0x96a9: "\x05\x02\x03\x02\x05\x04\x03\x01\x02\x03\x04\x01\x03\x04", // 隩
+ 0x96aa: "\x05\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 險
+ 0x96ab: "\x05\x02\x01\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 隫
+ 0x96ac: "\x05\x02\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 隬
+ 0x96ad: "\x05\x02\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02", // 隭
+ 0x96ae: "\x05\x02\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01", // 隮
+ 0x96af: "\x05\x02\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 隯
+ 0x96b0: "\x05\x02\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x04\x04\x04\x04", // 隰
+ 0x96b1: "\x05\x02\x03\x04\x04\x03\x01\x02\x01\x05\x01\x01\x04\x05\x04\x04", // 隱
+ 0x96b2: "\x05\x02\x02\x03\x04\x03\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 隲
+ 0x96b3: "\x05\x02\x01\x03\x01\x02\x01\x02\x05\x01\x01\x03\x04\x02\x04\x04\x04", // 隳
+ 0x96b4: "\x05\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x05\x01\x05\x01\x01\x01", // 隴
+ 0x96b5: "\x05\x02\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x04\x03\x01\x01\x05\x03\x04", // 隵
+ 0x96b6: "\x05\x01\x01\x02\x04\x01\x03\x04", // 隶
+ 0x96b7: "\x01\x02\x01\x01\x01\x02\x03\x04\x05\x01\x01\x02\x04\x01\x03\x04", // 隷
+ 0x96b8: "\x01\x02\x03\x04\x01\x01\x02\x03\x04\x05\x01\x01\x02\x04\x01\x03\x04", // 隸
+ 0x96b9: "\x03\x02\x04\x01\x01\x01\x02\x01", // 隹
+ 0x96ba: "\x04\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 隺
+ 0x96bb: "\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 隻
+ 0x96bc: "\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02", // 隼
+ 0x96bd: "\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03", // 隽
+ 0x96be: "\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 难
+ 0x96bf: "\x01\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 隿
+ 0x96c0: "\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 雀
+ 0x96c1: "\x01\x03\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 雁
+ 0x96c2: "\x03\x04\x04\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 雂
+ 0x96c3: "\x01\x01\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 雃
+ 0x96c4: "\x01\x03\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 雄
+ 0x96c5: "\x01\x05\x02\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 雅
+ 0x96c6: "\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02\x03\x04", // 集
+ 0x96c7: "\x04\x05\x01\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 雇
+ 0x96c8: "\x02\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 雈
+ 0x96c9: "\x03\x01\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 雉
+ 0x96ca: "\x03\x05\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 雊
+ 0x96cb: "\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x02\x05", // 雋
+ 0x96cc: "\x02\x01\x02\x01\x03\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 雌
+ 0x96cd: "\x04\x01\x05\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 雍
+ 0x96ce: "\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 雎
+ 0x96cf: "\x03\x05\x05\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 雏
+ 0x96d0: "\x02\x01\x05\x03\x01\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 雐
+ 0x96d1: "\x03\x05\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 雑
+ 0x96d2: "\x03\x05\x04\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 雒
+ 0x96d3: "\x03\x04\x01\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 雓
+ 0x96d4: "\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 雔
+ 0x96d5: "\x03\x05\x01\x02\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 雕
+ 0x96d6: "\x02\x05\x01\x02\x05\x01\x02\x01\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 雖
+ 0x96d7: "\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 雗
+ 0x96d8: "\x03\x05\x04\x01\x01\x02\x02\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 雘
+ 0x96d9: "\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 雙
+ 0x96da: "\x01\x02\x02\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 雚
+ 0x96db: "\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 雛
+ 0x96dc: "\x04\x01\x03\x04\x03\x04\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 雜
+ 0x96dd: "\x05\x05\x05\x02\x05\x01\x05\x02\x01\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 雝
+ 0x96de: "\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 雞
+ 0x96df: "\x05\x02\x03\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x03\x04\x02\x05\x01", // 雟
+ 0x96e0: "\x03\x02\x04\x01\x01\x01\x02\x01\x04\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 雠
+ 0x96e1: "\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 雡
+ 0x96e2: "\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 離
+ 0x96e3: "\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 難
+ 0x96e4: "\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 雤
+ 0x96e5: "\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 雥
+ 0x96e6: "\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 雦
+ 0x96e7: "\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02\x03\x04", // 雧
+ 0x96e8: "\x01\x02\x05\x02\x04\x04\x04\x04", // 雨
+ 0x96e9: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x01\x05", // 雩
+ 0x96ea: "\x01\x04\x05\x02\x04\x04\x04\x04\x05\x01\x01", // 雪
+ 0x96eb: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x04", // 雫
+ 0x96ec: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x03\x04", // 雬
+ 0x96ed: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x05\x04", // 雭
+ 0x96ee: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x01\x01\x05", // 雮
+ 0x96ef: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x01\x03\x04", // 雯
+ 0x96f0: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x04\x05\x03", // 雰
+ 0x96f1: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x01\x05\x03", // 雱
+ 0x96f2: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x01\x05\x04", // 雲
+ 0x96f3: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x05\x03", // 雳
+ 0x96f4: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x01\x04\x03\x01", // 雴
+ 0x96f5: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x03\x04", // 雵
+ 0x96f6: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x04\x04\x05\x04", // 零
+ 0x96f7: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x01", // 雷
+ 0x96f8: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x02\x01\x01", // 雸
+ 0x96f9: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x05\x05\x01\x05", // 雹
+ 0x96fa: "\x01\x04\x05\x02\x04\x04\x04\x04\x05\x04\x05\x02\x03", // 雺
+ 0x96fb: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x01\x05", // 電
+ 0x96fc: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x01", // 雼
+ 0x96fd: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x04\x03\x01\x02", // 雽
+ 0x96fe: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x05\x04\x05\x03", // 雾
+ 0x96ff: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x04\x01\x05\x03\x04", // 雿
+ 0x9700: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02", // 需
+ 0x9701: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x01\x03\x04\x03\x02", // 霁
+ 0x9702: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x04\x01\x01\x02\x03\x04", // 霂
+ 0x9703: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x04\x01\x04\x05\x03\x05", // 霃
+ 0x9704: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x04\x03\x02\x05\x01\x01", // 霄
+ 0x9705: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x01\x01\x01\x02\x05\x01", // 霅
+ 0x9706: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x01\x02\x01\x05\x04", // 霆
+ 0x9707: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x01\x01\x05\x03\x04", // 震
+ 0x9708: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x04\x01\x01\x02\x05\x01", // 霈
+ 0x9709: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x01\x05\x05\x04\x01\x04", // 霉
+ 0x970a: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x01\x02\x02\x04\x03\x01", // 霊
+ 0x970b: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x05\x01\x01\x02\x05\x03\x01", // 霋
+ 0x970c: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x05\x01\x02\x01\x02\x05\x01", // 霌
+ 0x970d: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 霍
+ 0x970e: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x01\x04\x03\x01\x05\x03\x01", // 霎
+ 0x970f: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x01\x01\x01\x02\x01\x01\x01", // 霏
+ 0x9710: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x04\x01\x05\x01\x05\x05\x04", // 霐
+ 0x9711: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x04\x01\x02\x01\x02\x05\x01", // 霑
+ 0x9712: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x01\x05\x04\x03\x04\x04\x05", // 霒
+ 0x9713: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x02\x01\x05\x01\x01\x03\x05", // 霓
+ 0x9714: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x04\x01\x04\x01\x01\x02\x01", // 霔
+ 0x9715: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x01\x05\x04\x01\x05\x02\x05", // 霕
+ 0x9716: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x03\x04\x01\x02\x03\x04", // 霖
+ 0x9717: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x04\x01\x03\x04\x04\x05\x04", // 霗
+ 0x9718: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x04\x01\x02\x05\x01\x02\x05\x01", // 霘
+ 0x9719: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x02\x02\x05\x01\x03\x04", // 霙
+ 0x971a: "\x01\x04\x05\x02\x04\x04\x04\x04\x05\x04\x05\x02\x03\x03\x01\x03\x04", // 霚
+ 0x971b: "\x01\x04\x05\x02\x04\x04\x04\x04\x05\x01\x05\x05\x01\x05\x05\x01\x05", // 霛
+ 0x971c: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 霜
+ 0x971d: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 霝
+ 0x971e: "\x01\x04\x05\x02\x04\x04\x04\x04\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 霞
+ 0x971f: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x04\x01\x01\x02\x02\x01\x03\x04", // 霟
+ 0x9720: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x01\x04\x03\x01\x03\x04\x04\x05", // 霠
+ 0x9721: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x05\x01\x01\x04\x05\x05\x03\x04", // 霡
+ 0x9722: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x05\x01\x01\x03\x03\x03\x05\x03\x04", // 霢
+ 0x9723: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 霣
+ 0x9724: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 霤
+ 0x9725: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 霥
+ 0x9726: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x03\x04\x01\x02\x03\x04\x03\x03\x03", // 霦
+ 0x9727: "\x01\x04\x05\x02\x04\x04\x04\x04\x05\x04\x05\x02\x03\x03\x05\x04\x05\x03", // 霧
+ 0x9728: "\x01\x04\x05\x02\x04\x04\x04\x04\x05\x01\x03\x01\x01\x02\x03\x04\x01\x02\x04", // 霨
+ 0x9729: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x01\x02\x05\x01\x05\x02\x01\x05\x02", // 霩
+ 0x972a: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x04\x01\x03\x04\x04\x03\x03\x01\x02\x01", // 霪
+ 0x972b: "\x01\x04\x05\x02\x04\x04\x04\x04\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01", // 霫
+ 0x972c: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 霬
+ 0x972d: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x05\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 霭
+ 0x972e: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x04\x01\x01\x02\x02\x01\x01\x01\x03\x04\x05", // 霮
+ 0x972f: "\x01\x04\x05\x02\x04\x04\x04\x04\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 霯
+ 0x9730: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x02\x01\x02\x05\x01\x01\x03\x01\x03\x04", // 霰
+ 0x9731: "\x01\x04\x05\x02\x04\x04\x04\x04\x05\x04\x05\x02\x03\x02\x05\x03\x04\x02\x05\x01", // 霱
+ 0x9732: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x01\x02\x01\x03\x05\x04\x02\x05\x01", // 露
+ 0x9733: "\x01\x04\x05\x02\x04\x04\x04\x04\x05\x02\x03\x05\x04\x01\x03\x01\x01\x02\x01", // 霳
+ 0x9734: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x01\x05\x04\x05\x01\x01\x02\x04\x01\x03\x04", // 霴
+ 0x9735: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x01\x02\x02\x01\x01\x01\x05\x03\x04", // 霵
+ 0x9736: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x04\x01\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03", // 霶
+ 0x9737: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 霷
+ 0x9738: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x01\x01", // 霸
+ 0x9739: "\x01\x04\x05\x02\x04\x04\x04\x04\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 霹
+ 0x973a: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x03\x02\x02\x05\x02\x01\x03\x05\x03\x01\x03\x04", // 霺
+ 0x973b: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01", // 霻
+ 0x973c: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x01\x05\x04\x03\x01\x01\x05\x04\x03\x01\x02\x03\x04", // 霼
+ 0x973d: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01", // 霽
+ 0x973e: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x04\x04\x03\x05\x03\x03\x02\x05\x01\x01\x02\x01\x01", // 霾
+ 0x973f: "\x01\x04\x05\x02\x04\x04\x04\x04\x05\x04\x05\x02\x03\x03\x05\x04\x02\x05\x01\x01\x01", // 霿
+ 0x9740: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 靀
+ 0x9741: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01", // 靁
+ 0x9742: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 靂
+ 0x9743: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 靃
+ 0x9744: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 靄
+ 0x9745: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x01\x05\x04\x05\x01\x05\x03\x02\x02\x05\x01\x01\x01\x03\x04", // 靅
+ 0x9746: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x01\x05\x04\x05\x01\x01\x02\x04\x01\x03\x04\x04\x05\x04", // 靆
+ 0x9747: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01\x01\x01", // 靇
+ 0x9748: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x03\x04\x01", // 靈
+ 0x9749: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x01\x05\x04\x03\x04\x04\x03\x04\x05\x04\x05\x04\x04\x03\x05\x04", // 靉
+ 0x974a: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x01\x01\x02\x02\x01\x01\x01\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 靊
+ 0x974b: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x04\x01\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 靋
+ 0x974c: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x04\x05\x01\x01\x02\x01\x03\x05\x02\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 靌
+ 0x974d: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 靍
+ 0x974e: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 靎
+ 0x974f: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x05\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 靏
+ 0x9750: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x01\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x01\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x01", // 靐
+ 0x9751: "\x01\x01\x02\x01\x02\x05\x02\x01", // 靑
+ 0x9752: "\x01\x01\x02\x01\x02\x05\x01\x01", // 青
+ 0x9753: "\x01\x01\x02\x01\x02\x05\x01\x01\x02\x05\x03\x05", // 靓
+ 0x9754: "\x01\x01\x02\x01\x02\x05\x01\x01\x03\x01\x01\x05", // 靔
+ 0x9755: "\x01\x02\x01\x02\x01\x01\x01\x02\x01\x02\x05\x01\x01", // 靕
+ 0x9756: "\x04\x01\x04\x03\x01\x01\x01\x02\x01\x02\x05\x01\x01", // 靖
+ 0x9757: "\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04\x03\x01\x03\x05", // 靗
+ 0x9758: "\x01\x01\x02\x01\x02\x05\x01\x01\x03\x05\x05\x02\x01\x05", // 靘
+ 0x9759: "\x01\x01\x02\x01\x02\x05\x01\x01\x03\x05\x05\x01\x01\x02", // 静
+ 0x975a: "\x01\x01\x02\x01\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 靚
+ 0x975b: "\x01\x01\x02\x01\x02\x05\x01\x01\x04\x04\x05\x01\x02\x01\x03\x04", // 靛
+ 0x975c: "\x01\x01\x02\x01\x02\x05\x01\x01\x03\x04\x04\x03\x05\x01\x01\x02", // 靜
+ 0x975d: "\x01\x01\x02\x01\x02\x05\x01\x01\x03\x01\x01\x05\x04\x03\x01\x02\x03\x04", // 靝
+ 0x975e: "\x02\x01\x01\x01\x02\x01\x01\x01", // 非
+ 0x975f: "\x02\x01\x01\x01\x02\x01\x01\x01\x03\x01\x01\x05", // 靟
+ 0x9760: "\x03\x01\x02\x01\x02\x05\x01\x02\x01\x01\x01\x02\x01\x01\x01", // 靠
+ 0x9761: "\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01", // 靡
+ 0x9762: "\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 面
+ 0x9763: "\x01\x03\x02\x05\x02\x05\x01\x01", // 靣
+ 0x9764: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x03\x05\x05\x01\x05", // 靤
+ 0x9765: "\x01\x03\x01\x03\x04\x04\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 靥
+ 0x9766: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 靦
+ 0x9767: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 靧
+ 0x9768: "\x01\x03\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x04\x04\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 靨
+ 0x9769: "\x01\x02\x02\x01\x02\x05\x01\x01\x02", // 革
+ 0x976a: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02", // 靪
+ 0x976b: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x04\x04", // 靫
+ 0x976c: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x01\x02", // 靬
+ 0x976d: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x03\x04", // 靭
+ 0x976e: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x04", // 靮
+ 0x976f: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x01", // 靯
+ 0x9770: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x03\x05", // 靰
+ 0x9771: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x03\x04", // 靱
+ 0x9772: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x04\x04\x05", // 靲
+ 0x9773: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x03\x01\x02", // 靳
+ 0x9774: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x02\x03\x05", // 靴
+ 0x9775: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x02\x01\x01", // 靵
+ 0x9776: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x02\x01\x05", // 靶
+ 0x9777: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x01\x05\x02", // 靷
+ 0x9778: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x04", // 靸
+ 0x9779: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x03\x04", // 靹
+ 0x977a: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x01\x02\x03\x04", // 靺
+ 0x977b: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x01", // 靻
+ 0x977c: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x01", // 靼
+ 0x977d: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x03\x01\x01\x02", // 靽
+ 0x977e: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x02\x01\x05", // 靾
+ 0x977f: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x05\x04\x05\x03", // 靿
+ 0x9780: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x03\x02\x05\x01", // 鞀
+ 0x9781: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x03\x02\x05\x04", // 鞁
+ 0x9782: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x01\x02\x03\x04", // 鞂
+ 0x9783: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x01\x05\x05\x04", // 鞃
+ 0x9784: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x05\x01\x05", // 鞄
+ 0x9785: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x03\x04", // 鞅
+ 0x9786: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x05\x03\x04", // 鞆
+ 0x9787: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x03\x04\x01", // 鞇
+ 0x9788: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x04\x01\x02\x05\x01", // 鞈
+ 0x9789: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x04\x01\x05\x03\x04", // 鞉
+ 0x978a: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x01\x02\x05\x01", // 鞊
+ 0x978b: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x01\x01\x02\x01", // 鞋
+ 0x978c: "\x04\x04\x05\x05\x03\x01\x01\x02\x02\x01\x02\x05\x01\x01\x02", // 鞌
+ 0x978d: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x04\x05\x05\x03\x01", // 鞍
+ 0x978e: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x01\x01\x05\x03\x04", // 鞎
+ 0x978f: "\x01\x02\x01\x03\x05\x04\x01\x02\x02\x01\x02\x05\x01\x01\x02", // 鞏
+ 0x9790: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x01\x01\x01\x02\x04", // 鞐
+ 0x9791: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x03\x04\x04\x05\x04", // 鞑
+ 0x9792: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x01\x03\x04\x03\x02", // 鞒
+ 0x9793: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x01", // 鞓
+ 0x9794: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x02\x05\x01\x03\x05", // 鞔
+ 0x9795: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x05\x01\x01\x03\x04", // 鞕
+ 0x9796: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x04\x04\x03\x05\x03\x01", // 鞖
+ 0x9797: "\x03\x02\x02\x03\x05\x04\x01\x02\x02\x01\x02\x05\x01\x01\x02", // 鞗
+ 0x9798: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x04\x03\x02\x05\x01\x01", // 鞘
+ 0x9799: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x02\x05\x01\x01", // 鞙
+ 0x979a: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x04\x05\x03\x04\x01\x02\x01", // 鞚
+ 0x979b: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x01\x04\x03\x01\x02\x05\x01", // 鞛
+ 0x979c: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x03\x04\x02\x05\x01\x01", // 鞜
+ 0x979d: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x04\x03\x02\x05\x02\x05\x01", // 鞝
+ 0x979e: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x02\x05\x01\x01\x03\x01\x02", // 鞞
+ 0x979f: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x01\x02\x05\x01\x05\x02\x01", // 鞟
+ 0x97a0: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x04\x03\x01\x02\x03\x04", // 鞠
+ 0x97a1: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x01\x04\x01\x04\x03\x01", // 鞡
+ 0x97a2: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 鞢
+ 0x97a3: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x04\x05\x02\x03\x01\x02\x03\x04", // 鞣
+ 0x97a4: "\x01\x02\x01\x01\x02\x01\x01\x02\x04\x01\x02\x02\x01\x02\x05\x01\x01\x02", // 鞤
+ 0x97a5: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x04\x01\x02\x05\x01\x01\x03\x02", // 鞥
+ 0x97a6: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x01\x02\x03\x04\x04\x03\x03\x04", // 鞦
+ 0x97a7: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x03\x01\x02\x05\x03\x05\x01\x01", // 鞧
+ 0x97a8: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 鞨
+ 0x97a9: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x04\x03\x02\x05\x01\x01\x02\x02", // 鞩
+ 0x97aa: "\x05\x04\x05\x02\x03\x03\x01\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01\x02", // 鞪
+ 0x97ab: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x04\x01\x01\x01\x02\x05\x01", // 鞫
+ 0x97ac: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x01\x01\x01\x01\x02\x05\x04", // 鞬
+ 0x97ad: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x02\x01\x02\x05\x01\x01\x03\x04", // 鞭
+ 0x97ae: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 鞮
+ 0x97af: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x02\x01\x03\x02\x05\x02\x01", // 鞯
+ 0x97b0: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 鞰
+ 0x97b1: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01", // 鞱
+ 0x97b2: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01", // 鞲
+ 0x97b3: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x02\x03\x04\x01\x02\x05\x01", // 鞳
+ 0x97b4: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x02\x01\x03\x02\x05\x01\x01\x02", // 鞴
+ 0x97b5: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04", // 鞵
+ 0x97b6: "\x03\x03\x05\x04\x01\x04\x03\x05\x05\x04\x01\x02\x02\x01\x02\x05\x01\x01\x02", // 鞶
+ 0x97b7: "\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x02\x02\x01\x02\x05\x01\x01\x02", // 鞷
+ 0x97b8: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x02\x01\x01\x02", // 鞸
+ 0x97b9: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x01\x02\x05\x01\x05\x02\x01\x05\x02", // 鞹
+ 0x97ba: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x01", // 鞺
+ 0x97bb: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 鞻
+ 0x97bc: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 鞼
+ 0x97bd: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 鞽
+ 0x97be: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x02\x01\x01\x02\x02\x01\x01\x02", // 鞾
+ 0x97bf: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x05\x04\x05\x05\x04\x01\x03\x04\x05\x03\x04", // 鞿
+ 0x97c0: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x01\x03\x05\x02\x02\x01\x01\x05\x04\x04\x04\x04", // 韀
+ 0x97c1: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x01\x01", // 韁
+ 0x97c2: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x01\x03\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 韂
+ 0x97c3: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x01\x04\x03\x01\x01\x01\x02\x04\x05\x04", // 韃
+ 0x97c4: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x02\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 韄
+ 0x97c5: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x04\x04\x04\x04", // 韅
+ 0x97c6: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x05\x02\x02\x01\x01\x03\x04\x05\x01\x05\x04\x05\x04", // 韆
+ 0x97c7: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 韇
+ 0x97c8: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x02\x02\x05\x02\x02\x01\x01\x03\x04\x05\x03\x04", // 韈
+ 0x97c9: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x02\x04\x01\x03\x05\x02\x02\x01\x01\x05\x04\x04\x04\x04", // 韉
+ 0x97ca: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x02\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 韊
+ 0x97cb: "\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 韋
+ 0x97cc: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x05\x03\x04", // 韌
+ 0x97cd: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x03\x05\x04\x04", // 韍
+ 0x97ce: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x01\x02\x03\x04", // 韎
+ 0x97cf: "\x04\x03\x01\x01\x03\x04\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 韏
+ 0x97d0: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x03\x04\x01\x02\x05\x01", // 韐
+ 0x97d1: "\x02\x04\x03\x01\x03\x05\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 韑
+ 0x97d2: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x02\x04\x03\x02\x05\x01\x01", // 韒
+ 0x97d3: "\x01\x02\x02\x05\x01\x01\x01\x02\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 韓
+ 0x97d4: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x02\x01\x01\x01\x05\x03\x04", // 韔
+ 0x97d5: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x04\x01\x02\x05\x01\x05\x02\x01", // 韕
+ 0x97d6: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x05\x04\x05\x02\x03\x01\x02\x03\x04", // 韖
+ 0x97d7: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 韗
+ 0x97d8: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 韘
+ 0x97d9: "\x02\x05\x01\x01\x01\x02\x01\x03\x04\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 韙
+ 0x97da: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x02\x02\x01\x02\x05\x01\x01\x02", // 韚
+ 0x97db: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x02\x02\x01\x03\x02\x05\x01\x01\x02", // 韛
+ 0x97dc: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01", // 韜
+ 0x97dd: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01", // 韝
+ 0x97de: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 韞
+ 0x97df: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x03\x02\x05\x01\x01\x01\x03\x04\x01\x02", // 韟
+ 0x97e0: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x02\x05\x01\x01\x01\x02\x02\x01\x01\x02", // 韠
+ 0x97e1: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x02\x02\x01\x01\x02\x02\x01\x01\x02", // 韡
+ 0x97e2: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x02\x05\x01\x01\x02\x01\x04\x04\x05\x04\x04", // 韢
+ 0x97e3: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 韣
+ 0x97e4: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x02\x02\x02\x05\x02\x02\x01\x01\x03\x04\x05\x03\x04", // 韤
+ 0x97e5: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 韥
+ 0x97e6: "\x01\x01\x05\x02", // 韦
+ 0x97e7: "\x01\x01\x05\x02\x05\x03\x04", // 韧
+ 0x97e8: "\x01\x01\x05\x02\x01\x03\x05\x04\x04", // 韨
+ 0x97e9: "\x01\x02\x02\x05\x01\x01\x01\x02\x01\x01\x05\x02", // 韩
+ 0x97ea: "\x02\x05\x01\x01\x01\x02\x01\x03\x04\x01\x01\x05\x02", // 韪
+ 0x97eb: "\x01\x01\x05\x02\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 韫
+ 0x97ec: "\x01\x01\x05\x02\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01", // 韬
+ 0x97ed: "\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 韭
+ 0x97ee: "\x01\x02\x02\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 韮
+ 0x97ef: "\x01\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 韯
+ 0x97f0: "\x02\x01\x03\x05\x04\x05\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 韰
+ 0x97f1: "\x03\x04\x03\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 韱
+ 0x97f2: "\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 韲
+ 0x97f3: "\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 音
+ 0x97f4: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x05\x02", // 韴
+ 0x97f5: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05\x04\x01", // 韵
+ 0x97f6: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05\x03\x02\x05\x01", // 韶
+ 0x97f7: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05\x02\x02\x05\x02", // 韷
+ 0x97f8: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05\x04\x01\x01\x01\x02", // 韸
+ 0x97f9: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x01\x02\x01", // 韹
+ 0x97fa: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x02\x02\x05\x01\x03\x04", // 韺
+ 0x97fb: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 韻
+ 0x97fc: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05\x04\x01\x01\x01\x02\x04\x05\x04", // 韼
+ 0x97fd: "\x03\x04\x04\x05\x01\x02\x05\x03\x05\x01\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 韽
+ 0x97fe: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 韾
+ 0x97ff: "\x05\x05\x03\x04\x05\x01\x01\x05\x04\x05\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 響
+ 0x9800: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x02\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 頀
+ 0x9801: "\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頁
+ 0x9802: "\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頂
+ 0x9803: "\x01\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頃
+ 0x9804: "\x03\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頄
+ 0x9805: "\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 項
+ 0x9806: "\x03\x02\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 順
+ 0x9807: "\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頇
+ 0x9808: "\x03\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 須
+ 0x9809: "\x02\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頉
+ 0x980a: "\x01\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頊
+ 0x980b: "\x01\x03\x05\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頋
+ 0x980c: "\x03\x04\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頌
+ 0x980d: "\x01\x02\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頍
+ 0x980e: "\x03\x03\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頎
+ 0x980f: "\x04\x01\x03\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頏
+ 0x9810: "\x05\x04\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 預
+ 0x9811: "\x01\x01\x03\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頑
+ 0x9812: "\x03\x04\x05\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頒
+ 0x9813: "\x01\x05\x02\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頓
+ 0x9814: "\x02\x05\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頔
+ 0x9815: "\x02\x01\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頕
+ 0x9816: "\x04\x03\x01\x01\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頖
+ 0x9817: "\x05\x03\x02\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頗
+ 0x9818: "\x03\x04\x04\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 領
+ 0x9819: "\x01\x02\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頙
+ 0x981a: "\x05\x04\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頚
+ 0x981b: "\x01\x01\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頛
+ 0x981c: "\x03\x04\x01\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頜
+ 0x981d: "\x04\x01\x03\x04\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頝
+ 0x981e: "\x04\x04\x05\x05\x03\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頞
+ 0x981f: "\x03\x05\x04\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頟
+ 0x9820: "\x03\x05\x01\x03\x05\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頠
+ 0x9821: "\x01\x02\x01\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頡
+ 0x9822: "\x03\x01\x02\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頢
+ 0x9823: "\x01\x02\x05\x01\x02\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頣
+ 0x9824: "\x01\x02\x02\x05\x01\x02\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頤
+ 0x9825: "\x02\x01\x02\x05\x01\x02\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頥
+ 0x9826: "\x04\x01\x05\x03\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頦
+ 0x9827: "\x03\x02\x05\x01\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頧
+ 0x9828: "\x05\x04\x01\x05\x04\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頨
+ 0x9829: "\x04\x03\x01\x01\x03\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頩
+ 0x982a: "\x04\x03\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頪
+ 0x982b: "\x03\x04\x01\x05\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頫
+ 0x982c: "\x01\x04\x03\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頬
+ 0x982d: "\x01\x02\x05\x01\x04\x03\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頭
+ 0x982e: "\x02\x05\x03\x04\x01\x03\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頮
+ 0x982f: "\x03\x05\x04\x04\x01\x03\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頯
+ 0x9830: "\x01\x03\x04\x03\x04\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頰
+ 0x9831: "\x03\x04\x04\x03\x01\x02\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頱
+ 0x9832: "\x03\x01\x02\x01\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頲
+ 0x9833: "\x01\x02\x01\x03\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頳
+ 0x9834: "\x03\x05\x01\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頴
+ 0x9835: "\x05\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頵
+ 0x9836: "\x03\x01\x02\x01\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頶
+ 0x9837: "\x03\x04\x04\x05\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頷
+ 0x9838: "\x01\x05\x05\x05\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頸
+ 0x9839: "\x03\x01\x02\x03\x04\x03\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頹
+ 0x983a: "\x03\x01\x02\x03\x04\x05\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頺
+ 0x983b: "\x02\x01\x02\x01\x02\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頻
+ 0x983c: "\x01\x02\x05\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頼
+ 0x983d: "\x03\x01\x02\x03\x04\x03\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頽
+ 0x983e: "\x03\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04\x02\x01\x02\x01\x03\x05", // 頾
+ 0x983f: "\x03\x03\x03\x02\x01\x02\x01\x03\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 頿
+ 0x9840: "\x03\x02\x04\x01\x01\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 顀
+ 0x9841: "\x04\x04\x05\x01\x02\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 顁
+ 0x9842: "\x01\x03\x04\x03\x04\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 顂
+ 0x9843: "\x04\x03\x03\x04\x04\x03\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 顃
+ 0x9844: "\x05\x02\x04\x01\x03\x04\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 顄
+ 0x9845: "\x04\x05\x01\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 顅
+ 0x9846: "\x02\x05\x01\x01\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 顆
+ 0x9847: "\x04\x01\x03\x04\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 顇
+ 0x9848: "\x03\x05\x05\x05\x04\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 顈
+ 0x9849: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 顉
+ 0x984a: "\x03\x02\x05\x01\x05\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 顊
+ 0x984b: "\x02\x05\x01\x02\x01\x04\x05\x04\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 顋
+ 0x984c: "\x02\x05\x01\x01\x01\x02\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 題
+ 0x984d: "\x04\x04\x05\x03\x05\x04\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 額
+ 0x984e: "\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 顎
+ 0x984f: "\x04\x01\x03\x04\x01\x03\x03\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 顏
+ 0x9850: "\x04\x05\x01\x02\x05\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 顐
+ 0x9851: "\x01\x03\x01\x02\x05\x01\x05\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 顑
+ 0x9852: "\x02\x05\x01\x01\x02\x05\x02\x01\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 顒
+ 0x9853: "\x02\x05\x02\x01\x03\x02\x05\x02\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 顓
+ 0x9854: "\x04\x01\x04\x03\x01\x03\x03\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 顔
+ 0x9855: "\x02\x05\x01\x01\x02\x02\x04\x03\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 顕
+ 0x9856: "\x03\x02\x05\x03\x04\x01\x04\x05\x04\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 顖
+ 0x9857: "\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 顗
+ 0x9858: "\x01\x03\x03\x02\x05\x01\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 願
+ 0x9859: "\x05\x04\x05\x04\x05\x04\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 顙
+ 0x985a: "\x03\x05\x02\x05\x01\x01\x01\x05\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 顚
+ 0x985b: "\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 顛
+ 0x985c: "\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 顜
+ 0x985d: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 顝
+ 0x985e: "\x04\x03\x01\x02\x03\x04\x01\x03\x04\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 類
+ 0x985f: "\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 顟
+ 0x9860: "\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 顠
+ 0x9861: "\x04\x01\x04\x03\x01\x03\x05\x03\x03\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 顡
+ 0x9862: "\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 顢
+ 0x9863: "\x01\x03\x02\x01\x01\x02\x03\x04\x05\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 顣
+ 0x9864: "\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 顤
+ 0x9865: "\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 顥
+ 0x9866: "\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 顦
+ 0x9867: "\x04\x05\x01\x03\x03\x02\x04\x01\x01\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 顧
+ 0x9868: "\x01\x03\x02\x05\x01\x01\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04\x01\x03\x02", // 顨
+ 0x9869: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 顩
+ 0x986a: "\x02\x01\x02\x01\x01\x03\x01\x02\x03\x03\x05\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 顪
+ 0x986b: "\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 顫
+ 0x986c: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 顬
+ 0x986d: "\x01\x02\x02\x02\x05\x02\x02\x01\x04\x05\x03\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 顭
+ 0x986e: "\x04\x04\x05\x01\x02\x03\x03\x02\x05\x01\x01\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 顮
+ 0x986f: "\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x04\x04\x04\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 顯
+ 0x9870: "\x02\x01\x02\x01\x02\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04\x03\x02\x05\x01\x01\x03\x01\x02", // 顰
+ 0x9871: "\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 顱
+ 0x9872: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x01\x02\x05\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 顲
+ 0x9873: "\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 顳
+ 0x9874: "\x01\x02\x02\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 顴
+ 0x9875: "\x01\x03\x02\x05\x03\x04", // 页
+ 0x9876: "\x01\x02\x01\x03\x02\x05\x03\x04", // 顶
+ 0x9877: "\x01\x05\x01\x03\x02\x05\x03\x04", // 顷
+ 0x9878: "\x01\x01\x02\x01\x03\x02\x05\x03\x04", // 顸
+ 0x9879: "\x01\x02\x01\x01\x03\x02\x05\x03\x04", // 项
+ 0x987a: "\x03\x02\x02\x01\x03\x02\x05\x03\x04", // 顺
+ 0x987b: "\x03\x03\x03\x01\x03\x02\x05\x03\x04", // 须
+ 0x987c: "\x01\x01\x02\x01\x01\x03\x02\x05\x03\x04", // 顼
+ 0x987d: "\x01\x01\x03\x05\x01\x03\x02\x05\x03\x04", // 顽
+ 0x987e: "\x01\x03\x05\x05\x01\x03\x02\x05\x03\x04", // 顾
+ 0x987f: "\x01\x05\x02\x05\x01\x03\x02\x05\x03\x04", // 顿
+ 0x9880: "\x03\x03\x01\x02\x01\x03\x02\x05\x03\x04", // 颀
+ 0x9881: "\x03\x04\x05\x03\x01\x03\x02\x05\x03\x04", // 颁
+ 0x9882: "\x03\x04\x05\x04\x01\x03\x02\x05\x03\x04", // 颂
+ 0x9883: "\x04\x01\x03\x05\x01\x03\x02\x05\x03\x04", // 颃
+ 0x9884: "\x05\x04\x05\x02\x01\x03\x02\x05\x03\x04", // 预
+ 0x9885: "\x02\x01\x05\x01\x03\x01\x03\x02\x05\x03\x04", // 颅
+ 0x9886: "\x03\x04\x04\x05\x04\x01\x03\x02\x05\x03\x04", // 领
+ 0x9887: "\x05\x03\x02\x05\x04\x01\x03\x02\x05\x03\x04", // 颇
+ 0x9888: "\x05\x04\x01\x02\x01\x01\x03\x02\x05\x03\x04", // 颈
+ 0x9889: "\x01\x02\x01\x02\x05\x01\x01\x03\x02\x05\x03\x04", // 颉
+ 0x988a: "\x01\x04\x03\x01\x03\x04\x01\x03\x02\x05\x03\x04", // 颊
+ 0x988b: "\x03\x01\x02\x01\x05\x04\x01\x03\x02\x05\x03\x04", // 颋
+ 0x988c: "\x03\x04\x01\x02\x05\x01\x01\x03\x02\x05\x03\x04", // 颌
+ 0x988d: "\x03\x05\x02\x05\x03\x04\x01\x03\x02\x05\x03\x04", // 颍
+ 0x988e: "\x03\x05\x04\x03\x03\x04\x01\x03\x02\x05\x03\x04", // 颎
+ 0x988f: "\x04\x01\x05\x03\x03\x04\x01\x03\x02\x05\x03\x04", // 颏
+ 0x9890: "\x01\x02\x02\x05\x01\x02\x05\x01\x03\x02\x05\x03\x04", // 颐
+ 0x9891: "\x02\x01\x02\x01\x02\x03\x03\x01\x03\x02\x05\x03\x04", // 频
+ 0x9892: "\x02\x05\x03\x04\x01\x03\x02\x01\x03\x02\x05\x03\x04", // 颒
+ 0x9893: "\x03\x01\x02\x03\x04\x03\x05\x01\x03\x02\x05\x03\x04", // 颓
+ 0x9894: "\x03\x04\x04\x05\x02\x05\x01\x01\x03\x02\x05\x03\x04", // 颔
+ 0x9895: "\x03\x05\x01\x01\x02\x03\x04\x01\x03\x02\x05\x03\x04", // 颕
+ 0x9896: "\x03\x05\x03\x01\x02\x03\x04\x01\x03\x02\x05\x03\x04", // 颖
+ 0x9897: "\x02\x05\x01\x01\x01\x02\x03\x04\x01\x03\x02\x05\x03\x04", // 颗
+ 0x9898: "\x02\x05\x01\x01\x01\x02\x01\x03\x04\x01\x03\x02\x05\x03\x04", // 题
+ 0x9899: "\x02\x05\x01\x01\x02\x05\x02\x01\x04\x01\x03\x02\x05\x03\x04", // 颙
+ 0x989a: "\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x03\x02\x05\x03\x04", // 颚
+ 0x989b: "\x02\x05\x02\x01\x03\x02\x05\x02\x02\x01\x03\x02\x05\x03\x04", // 颛
+ 0x989c: "\x04\x01\x04\x03\x01\x03\x03\x03\x03\x01\x03\x02\x05\x03\x04", // 颜
+ 0x989d: "\x04\x04\x05\x03\x05\x04\x02\x05\x01\x01\x03\x02\x05\x03\x04", // 额
+ 0x989e: "\x01\x02\x02\x01\x01\x01\x05\x04\x05\x04\x01\x03\x02\x05\x03\x04", // 颞
+ 0x989f: "\x01\x02\x02\x01\x02\x05\x03\x04\x03\x04\x01\x03\x02\x05\x03\x04", // 颟
+ 0x98a0: "\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04\x01\x03\x02\x05\x03\x04", // 颠
+ 0x98a1: "\x05\x04\x05\x04\x05\x04\x01\x02\x03\x04\x01\x03\x02\x05\x03\x04", // 颡
+ 0x98a2: "\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x03\x04\x01\x03\x02\x05\x03\x04", // 颢
+ 0x98a3: "\x04\x03\x01\x02\x03\x04\x05\x05\x04\x02\x03\x04\x01\x03\x02\x05\x03\x04", // 颣
+ 0x98a4: "\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01\x01\x03\x02\x05\x03\x04", // 颤
+ 0x98a5: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02\x01\x03\x02\x05\x03\x04", // 颥
+ 0x98a6: "\x02\x01\x02\x01\x02\x03\x03\x01\x03\x02\x05\x03\x04\x03\x02\x05\x01\x01\x03\x01\x02", // 颦
+ 0x98a7: "\x01\x02\x02\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x01\x03\x02\x05\x03\x04", // 颧
+ 0x98a8: "\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 風
+ 0x98a9: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x03\x03", // 颩
+ 0x98aa: "\x01\x02\x04\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 颪
+ 0x98ab: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x01\x03\x04", // 颫
+ 0x98ac: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x05\x02\x03", // 颬
+ 0x98ad: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x02\x01\x02\x05\x01", // 颭
+ 0x98ae: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x05\x05\x01\x05", // 颮
+ 0x98af: "\x04\x01\x04\x03\x01\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 颯
+ 0x98b0: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x03\x05\x04\x04", // 颰
+ 0x98b1: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x05\x04\x02\x05\x01", // 颱
+ 0x98b2: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x03\x05\x04\x02\x02", // 颲
+ 0x98b3: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x01\x02\x02\x05\x01", // 颳
+ 0x98b4: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x01\x05\x02\x01\x03\x04", // 颴
+ 0x98b5: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x02\x04\x03\x02\x05\x01\x01", // 颵
+ 0x98b6: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x01\x01\x03\x04", // 颶
+ 0x98b7: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x04\x03\x03\x04\x04\x03\x03\x04", // 颷
+ 0x98b8: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 颸
+ 0x98b9: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 颹
+ 0x98ba: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 颺
+ 0x98bb: "\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 颻
+ 0x98bc: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x02\x01\x05\x01\x01\x02\x05\x04", // 颼
+ 0x98bd: "\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 颽
+ 0x98be: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x05\x04\x04\x02\x05\x01\x02\x01\x04", // 颾
+ 0x98bf: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 颿
+ 0x98c0: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 飀
+ 0x98c1: "\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 飁
+ 0x98c2: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 飂
+ 0x98c3: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 飃
+ 0x98c4: "\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 飄
+ 0x98c5: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x02\x02\x01\x05\x05\x01\x02\x05\x01\x02\x01", // 飅
+ 0x98c6: "\x01\x03\x04\x04\x01\x03\x04\x04\x01\x03\x04\x04\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 飆
+ 0x98c7: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x03\x04\x04\x01\x03\x04\x04\x01\x03\x04\x04", // 飇
+ 0x98c8: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x04\x03\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04", // 飈
+ 0x98c9: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 飉
+ 0x98ca: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 飊
+ 0x98cb: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x01\x02\x01\x01\x01\x02\x01\x04\x05\x04\x03\x04", // 飋
+ 0x98cc: "\x01\x02\x02\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 飌
+ 0x98cd: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 飍
+ 0x98ce: "\x03\x05\x03\x04", // 风
+ 0x98cf: "\x03\x05\x03\x04\x05\x03\x03", // 飏
+ 0x98d0: "\x03\x05\x03\x04\x02\x01\x02\x05\x01", // 飐
+ 0x98d1: "\x03\x05\x03\x04\x03\x05\x05\x01\x05", // 飑
+ 0x98d2: "\x04\x01\x04\x03\x01\x03\x05\x03\x04", // 飒
+ 0x98d3: "\x03\x05\x03\x04\x02\x05\x01\x01\x01\x01\x03\x04", // 飓
+ 0x98d4: "\x03\x05\x03\x04\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 飔
+ 0x98d5: "\x03\x05\x03\x04\x03\x02\x01\x05\x01\x01\x02\x05\x04", // 飕
+ 0x98d6: "\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02\x03\x05\x03\x04", // 飖
+ 0x98d7: "\x03\x05\x03\x04\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 飗
+ 0x98d8: "\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04\x03\x05\x03\x04", // 飘
+ 0x98d9: "\x01\x03\x04\x04\x01\x03\x04\x04\x01\x03\x04\x04\x03\x05\x03\x04", // 飙
+ 0x98da: "\x03\x05\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04", // 飚
+ 0x98db: "\x05\x03\x04\x03\x05\x03\x04\x03\x02", // 飛
+ 0x98dc: "\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x05\x03\x04\x03\x05\x03\x04\x03\x02", // 飜
+ 0x98dd: "\x05\x03\x04\x03\x05\x03\x04\x03\x02\x05\x03\x04\x03\x05\x03\x04\x03\x02\x05\x03\x04\x03\x05\x03\x04\x03\x02", // 飝
+ 0x98de: "\x05\x03\x04", // 飞
+ 0x98df: "\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 食
+ 0x98e0: "\x03\x04\x04\x05\x01\x01\x05\x04", // 飠
+ 0x98e1: "\x04\x01\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 飡
+ 0x98e2: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x05", // 飢
+ 0x98e3: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02", // 飣
+ 0x98e4: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x04", // 飤
+ 0x98e5: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x01\x05", // 飥
+ 0x98e6: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x01\x02", // 飦
+ 0x98e7: "\x03\x05\x04\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 飧
+ 0x98e8: "\x05\x05\x03\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 飨
+ 0x98e9: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x05\x02\x05", // 飩
+ 0x98ea: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x01\x02\x01", // 飪
+ 0x98eb: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x01\x03\x04", // 飫
+ 0x98ec: "\x04\x03\x01\x01\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 飬
+ 0x98ed: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x01\x05\x03", // 飭
+ 0x98ee: "\x03\x04\x04\x05\x01\x01\x05\x01\x01\x03\x05\x03\x04", // 飮
+ 0x98ef: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x03\x05\x04", // 飯
+ 0x98f0: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x01\x02\x04", // 飰
+ 0x98f1: "\x01\x03\x05\x04\x03\x04\x04\x05\x01\x01\x05\x04", // 飱
+ 0x98f2: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x05\x03\x04", // 飲
+ 0x98f3: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x01\x01\x02\x01", // 飳
+ 0x98f4: "\x03\x04\x04\x05\x01\x01\x05\x04\x05\x04\x02\x05\x01", // 飴
+ 0x98f5: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x01\x02\x01\x01", // 飵
+ 0x98f6: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x05\x04\x03\x04", // 飶
+ 0x98f7: "\x03\x04\x04\x05\x01\x01\x05\x04\x02\x05\x01\x01\x01", // 飷
+ 0x98f8: "\x02\x05\x01\x01\x05\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 飸
+ 0x98f9: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x05\x03\x05\x02", // 飹
+ 0x98fa: "\x02\x01\x02\x01\x03\x05\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 飺
+ 0x98fb: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x04\x03\x03\x03", // 飻
+ 0x98fc: "\x03\x04\x04\x05\x01\x01\x05\x04\x05\x01\x02\x05\x01", // 飼
+ 0x98fd: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x05\x05\x01\x05", // 飽
+ 0x98fe: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x01\x02\x05\x02", // 飾
+ 0x98ff: "\x03\x04\x04\x05\x01\x01\x05\x04\x05\x02\x02\x05\x02", // 飿
+ 0x9900: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x02\x03\x04", // 餀
+ 0x9901: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x02\x03\x01\x02\x01", // 餁
+ 0x9902: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x01\x02\x02\x05\x01", // 餂
+ 0x9903: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x01\x03\x04\x03\x04", // 餃
+ 0x9904: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x04\x01\x02\x05\x01", // 餄
+ 0x9905: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x03\x01\x01\x03\x02", // 餅
+ 0x9906: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x04\x01\x05\x03\x04", // 餆
+ 0x9907: "\x03\x04\x04\x05\x01\x01\x05\x04\x02\x05\x01\x02\x05\x01", // 餇
+ 0x9908: "\x04\x01\x03\x05\x03\x04\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 餈
+ 0x9909: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x02\x05\x02\x05\x01", // 餉
+ 0x990a: "\x04\x03\x01\x01\x01\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 養
+ 0x990b: "\x04\x03\x01\x01\x03\x04\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 餋
+ 0x990c: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x02\x01\x01\x01", // 餌
+ 0x990d: "\x01\x03\x01\x03\x04\x04\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 餍
+ 0x990e: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x05\x04\x02\x05\x01", // 餎
+ 0x990f: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x01\x03\x05\x03\x04", // 餏
+ 0x9910: "\x02\x01\x03\x05\x04\x05\x04\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 餐
+ 0x9911: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x04\x05\x05\x02\x01", // 餑
+ 0x9912: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x04\x04\x03\x05\x03\x01", // 餒
+ 0x9913: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x01\x02\x01\x05\x03\x04", // 餓
+ 0x9914: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x05\x01\x01\x02\x04", // 餔
+ 0x9915: "\x03\x04\x04\x05\x01\x01\x05\x04\x05\x04\x03\x04\x03\x05\x04", // 餕
+ 0x9916: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x05\x01\x04\x03\x01", // 餖
+ 0x9917: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x05\x01\x02\x03\x04", // 餗
+ 0x9918: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x04\x01\x01\x02\x03\x04", // 餘
+ 0x9919: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x04\x01\x03\x02\x05\x02", // 餙
+ 0x991a: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x04\x01\x03\x02\x05\x01\x01", // 餚
+ 0x991b: "\x03\x04\x04\x05\x01\x01\x05\x04\x02\x05\x01\x01\x01\x05\x03\x05", // 餛
+ 0x991c: "\x03\x04\x04\x05\x01\x01\x05\x04\x02\x05\x01\x01\x01\x02\x03\x04", // 餜
+ 0x991d: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x02\x04\x01\x05\x03", // 餝
+ 0x991e: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x05\x03\x04\x01\x05\x03\x04", // 餞
+ 0x991f: "\x03\x04\x04\x05\x01\x01\x05\x04\x05\x04\x05\x04\x05\x04\x05\x04", // 餟
+ 0x9920: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x01\x01\x03\x03\x01\x01\x02", // 餠
+ 0x9921: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x05\x03\x02\x01\x05\x01\x01", // 餡
+ 0x9922: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x01\x04\x03\x01\x02\x05\x01", // 餢
+ 0x9923: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x03\x04\x02\x05\x01\x01\x05", // 餣
+ 0x9924: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x03\x03\x04\x04\x03\x03\x04", // 餤
+ 0x9925: "\x02\x01\x01\x01\x02\x01\x01\x01\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 餥
+ 0x9926: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x01\x01\x01\x05\x03\x04", // 餦
+ 0x9927: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 餧
+ 0x9928: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x04\x05\x02\x05\x01\x05\x01", // 館
+ 0x9929: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x04\x04\x01\x05\x03\x03\x04", // 餩
+ 0x992a: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x03\x02\x05\x02\x02\x01\x03\x04", // 餪
+ 0x992b: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 餫
+ 0x992c: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x02\x05\x01\x03\x05\x01\x01", // 餬
+ 0x992d: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x02\x05\x01\x01\x01\x01\x02\x01", // 餭
+ 0x992e: "\x01\x03\x05\x04\x03\x04\x03\x03\x03\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 餮
+ 0x992f: "\x03\x04\x04\x05\x01\x01\x05\x04\x05\x05\x01\x03\x05\x03\x03\x03\x04", // 餯
+ 0x9930: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x03\x02\x04\x04\x01\x01\x01\x02", // 餰
+ 0x9931: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x02\x05\x01\x03\x01\x01\x03\x04", // 餱
+ 0x9932: "\x03\x04\x04\x05\x01\x01\x05\x04\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 餲
+ 0x9933: "\x03\x04\x04\x05\x01\x01\x05\x04\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 餳
+ 0x9934: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x03\x04\x01\x02\x01\x03\x02", // 餴
+ 0x9935: "\x03\x04\x04\x05\x01\x01\x05\x04\x02\x05\x01\x02\x01\x01\x05\x03\x04", // 餵
+ 0x9936: "\x03\x04\x04\x05\x01\x01\x05\x04\x02\x05\x05\x04\x05\x02\x05\x01\x01", // 餶
+ 0x9937: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 餷
+ 0x9938: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x03\x01\x01\x03\x04\x04\x05\x04", // 餸
+ 0x9939: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x01\x03\x05\x01\x01\x02\x02\x05\x01", // 餹
+ 0x993a: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 餺
+ 0x993b: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x03\x01\x01\x02\x01\x04\x04\x04\x04", // 餻
+ 0x993c: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x01\x01\x05\x04\x03\x01\x02\x03\x04", // 餼
+ 0x993d: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 餽
+ 0x993e: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 餾
+ 0x993f: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x02\x01\x05\x01\x01\x02\x05\x04", // 餿
+ 0x9940: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01", // 饀
+ 0x9941: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 饁
+ 0x9942: "\x03\x04\x04\x05\x01\x01\x05\x04\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 饂
+ 0x9943: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 饃
+ 0x9944: "\x03\x04\x04\x05\x01\x01\x05\x04\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x01", // 饄
+ 0x9945: "\x03\x04\x04\x05\x01\x01\x05\x04\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 饅
+ 0x9946: "\x03\x04\x04\x05\x01\x01\x05\x04\x02\x05\x01\x01\x01\x02\x02\x01\x01\x02", // 饆
+ 0x9947: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 饇
+ 0x9948: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x03\x01\x01\x01\x03\x05\x02\x01\x01", // 饈
+ 0x9949: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01", // 饉
+ 0x994a: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x02\x01\x02\x05\x01\x01\x03\x01\x03\x04", // 饊
+ 0x994b: "\x03\x04\x04\x05\x01\x01\x05\x04\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 饋
+ 0x994c: "\x03\x04\x04\x05\x01\x01\x05\x04\x05\x01\x05\x05\x01\x05\x01\x02\x02\x01\x03\x04", // 饌
+ 0x994d: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x03\x01\x01\x01\x02\x04\x03\x01\x02\x05\x01", // 饍
+ 0x994e: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01", // 饎
+ 0x994f: "\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 饏
+ 0x9950: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x01\x04\x05\x01\x02\x05\x01\x04\x03\x01", // 饐
+ 0x9951: "\x03\x04\x04\x05\x01\x01\x05\x04\x05\x05\x04\x05\x05\x04\x01\x03\x04\x05\x03\x04", // 饑
+ 0x9952: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 饒
+ 0x9953: "\x03\x04\x04\x05\x01\x01\x05\x04\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x03\x04", // 饓
+ 0x9954: "\x04\x01\x05\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 饔
+ 0x9955: "\x02\x05\x01\x01\x05\x02\x01\x05\x03\x01\x05\x03\x05\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 饕
+ 0x9956: "\x03\x04\x04\x05\x01\x01\x05\x04\x02\x01\x02\x01\x01\x03\x01\x02\x03\x03\x05\x03\x04", // 饖
+ 0x9957: "\x05\x05\x03\x04\x05\x01\x01\x05\x04\x05\x02\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 饗
+ 0x9958: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 饘
+ 0x9959: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 饙
+ 0x995a: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x02\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 饚
+ 0x995b: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 饛
+ 0x995c: "\x01\x03\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x04\x04\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 饜
+ 0x995d: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x01\x03\x02\x05\x01", // 饝
+ 0x995e: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x05\x02\x05\x01\x01\x05\x03\x05\x03\x05\x02\x05\x01\x03\x05\x04", // 饞
+ 0x995f: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 饟
+ 0x9960: "\x03\x04\x04\x05\x01\x01\x05\x04\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 饠
+ 0x9961: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 饡
+ 0x9962: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x05\x01\x02\x04\x05\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 饢
+ 0x9963: "\x03\x05\x05", // 饣
+ 0x9964: "\x03\x05\x05\x01\x02", // 饤
+ 0x9965: "\x03\x05\x05\x03\x05", // 饥
+ 0x9966: "\x03\x05\x05\x03\x01\x05", // 饦
+ 0x9967: "\x03\x05\x05\x05\x03\x03", // 饧
+ 0x9968: "\x03\x05\x05\x01\x05\x02\x05", // 饨
+ 0x9969: "\x03\x05\x05\x03\x01\x01\x05", // 饩
+ 0x996a: "\x03\x05\x05\x03\x01\x02\x01", // 饪
+ 0x996b: "\x03\x05\x05\x03\x01\x03\x04", // 饫
+ 0x996c: "\x03\x05\x05\x03\x01\x05\x03", // 饬
+ 0x996d: "\x03\x05\x05\x03\x03\x05\x04", // 饭
+ 0x996e: "\x03\x05\x05\x03\x05\x03\x04", // 饮
+ 0x996f: "\x03\x05\x05\x01\x01\x05\x03\x04", // 饯
+ 0x9970: "\x03\x05\x05\x03\x01\x02\x05\x02", // 饰
+ 0x9971: "\x03\x05\x05\x03\x05\x05\x01\x05", // 饱
+ 0x9972: "\x03\x05\x05\x05\x01\x02\x05\x01", // 饲
+ 0x9973: "\x03\x05\x05\x05\x02\x02\x05\x02", // 饳
+ 0x9974: "\x03\x05\x05\x05\x04\x02\x05\x01", // 饴
+ 0x9975: "\x03\x05\x05\x01\x02\x02\x01\x01\x01", // 饵
+ 0x9976: "\x03\x05\x05\x01\x05\x03\x01\x03\x05", // 饶
+ 0x9977: "\x03\x05\x05\x03\x02\x05\x02\x05\x01", // 饷
+ 0x9978: "\x03\x05\x05\x03\x04\x01\x02\x05\x01", // 饸
+ 0x9979: "\x03\x05\x05\x03\x05\x04\x02\x05\x01", // 饹
+ 0x997a: "\x03\x05\x05\x04\x01\x03\x04\x03\x04", // 饺
+ 0x997b: "\x03\x05\x05\x04\x01\x03\x05\x03\x04", // 饻
+ 0x997c: "\x03\x05\x05\x04\x03\x01\x01\x03\x02", // 饼
+ 0x997d: "\x03\x05\x05\x01\x02\x04\x05\x05\x02\x01", // 饽
+ 0x997e: "\x03\x05\x05\x01\x02\x05\x01\x04\x03\x01", // 饾
+ 0x997f: "\x03\x05\x05\x03\x01\x02\x01\x05\x03\x04", // 饿
+ 0x9980: "\x03\x05\x05\x03\x04\x01\x01\x02\x03\x04", // 馀
+ 0x9981: "\x03\x05\x05\x03\x04\x04\x03\x05\x03\x01", // 馁
+ 0x9982: "\x03\x05\x05\x05\x04\x03\x04\x03\x05\x04", // 馂
+ 0x9983: "\x03\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 馃
+ 0x9984: "\x03\x05\x05\x02\x05\x01\x01\x01\x05\x03\x05", // 馄
+ 0x9985: "\x03\x05\x05\x03\x05\x03\x02\x01\x05\x01\x01", // 馅
+ 0x9986: "\x03\x05\x05\x04\x04\x05\x02\x05\x01\x05\x01", // 馆
+ 0x9987: "\x03\x05\x05\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 馇
+ 0x9988: "\x03\x05\x05\x02\x05\x01\x02\x01\x02\x05\x03\x04", // 馈
+ 0x9989: "\x03\x05\x05\x02\x05\x05\x04\x05\x02\x05\x01\x01", // 馉
+ 0x998a: "\x03\x05\x05\x03\x02\x01\x05\x01\x01\x02\x05\x04", // 馊
+ 0x998b: "\x03\x05\x05\x03\x05\x02\x05\x01\x03\x05\x04\x04", // 馋
+ 0x998c: "\x03\x05\x05\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 馌
+ 0x998d: "\x03\x05\x05\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 馍
+ 0x998e: "\x03\x05\x05\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 馎
+ 0x998f: "\x03\x05\x05\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 馏
+ 0x9990: "\x03\x05\x05\x04\x03\x01\x01\x01\x03\x05\x02\x01\x01", // 馐
+ 0x9991: "\x03\x05\x05\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01", // 馑
+ 0x9992: "\x03\x05\x05\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 馒
+ 0x9993: "\x03\x05\x05\x01\x02\x02\x01\x02\x05\x01\x01\x03\x01\x03\x04", // 馓
+ 0x9994: "\x03\x05\x05\x05\x01\x05\x05\x01\x05\x01\x02\x02\x01\x03\x04", // 馔
+ 0x9995: "\x03\x05\x05\x01\x02\x05\x01\x02\x04\x05\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 馕
+ 0x9996: "\x04\x03\x01\x03\x02\x05\x01\x01\x01", // 首
+ 0x9997: "\x03\x05\x04\x03\x01\x03\x02\x05\x01\x01\x01", // 馗
+ 0x9998: "\x04\x03\x01\x03\x02\x05\x01\x01\x01\x01\x02\x05\x01\x01\x05\x03\x04", // 馘
+ 0x9999: "\x03\x01\x02\x03\x04\x02\x05\x01\x01", // 香
+ 0x999a: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x03\x04\x05\x03", // 馚
+ 0x999b: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x05\x04\x04", // 馛
+ 0x999c: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x05\x01\x03\x03\x05", // 馜
+ 0x999d: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x04\x05\x04\x03\x04", // 馝
+ 0x999e: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x04\x05\x05\x02\x01", // 馞
+ 0x999f: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x03\x04\x04\x03\x05\x02\x01", // 馟
+ 0x99a0: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x03\x04\x04\x05\x02\x05\x01", // 馠
+ 0x99a1: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x02\x01\x01\x01\x02\x01\x01\x01", // 馡
+ 0x99a2: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01\x05\x03\x04\x01\x05\x03\x04", // 馢
+ 0x99a3: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x05", // 馣
+ 0x99a4: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 馤
+ 0x99a5: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 馥
+ 0x99a6: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 馦
+ 0x99a7: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 馧
+ 0x99a8: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04\x03\x01\x02\x03\x04\x02\x05\x01\x01", // 馨
+ 0x99a9: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 馩
+ 0x99aa: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x04\x04\x05\x01\x02\x03\x03\x02\x05\x01\x01\x01\x03\x04", // 馪
+ 0x99ab: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x03\x01\x02\x03\x04\x02\x05\x01\x01\x03\x01\x02\x03\x04\x02\x05\x01\x01", // 馫
+ 0x99ac: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 馬
+ 0x99ad: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x04", // 馭
+ 0x99ae: "\x04\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 馮
+ 0x99af: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x01\x02", // 馯
+ 0x99b0: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05\x04", // 馰
+ 0x99b1: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x03\x04", // 馱
+ 0x99b2: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x01\x05", // 馲
+ 0x99b3: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x02\x05", // 馳
+ 0x99b4: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x02\x02", // 馴
+ 0x99b5: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x03\x02", // 馵
+ 0x99b6: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x05\x04", // 馶
+ 0x99b7: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x05\x02", // 馷
+ 0x99b8: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x03\x01\x02", // 馸
+ 0x99b9: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x01\x01", // 馹
+ 0x99ba: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05\x04", // 馺
+ 0x99bb: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x04\x03\x05", // 馻
+ 0x99bc: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x01\x03\x04", // 馼
+ 0x99bd: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x01\x02", // 馽
+ 0x99be: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x05\x03\x05", // 馾
+ 0x99bf: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x05\x01\x03", // 馿
+ 0x99c0: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x03\x05\x04", // 駀
+ 0x99c1: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x04\x03\x04", // 駁
+ 0x99c2: "\x03\x05\x01\x02\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 駂
+ 0x99c3: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x01\x03\x04", // 駃
+ 0x99c4: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x03\x04\x04", // 駄
+ 0x99c5: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x01\x03\x04", // 駅
+ 0x99c6: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x03\x04\x05", // 駆
+ 0x99c7: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x01\x03\x04", // 駇
+ 0x99c8: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x02\x01\x02\x01", // 駈
+ 0x99c9: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x02\x05\x01", // 駉
+ 0x99ca: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x03\x02\x05\x04", // 駊
+ 0x99cb: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x03\x02\x05\x01", // 駋
+ 0x99cc: "\x03\x05\x04\x05\x05\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 駌
+ 0x99cd: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x04\x03\x01\x02", // 駍
+ 0x99ce: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x01\x02\x01", // 駎
+ 0x99cf: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x05\x01\x05", // 駏
+ 0x99d0: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x01\x01\x02\x01", // 駐
+ 0x99d1: "\x05\x03\x01\x05\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 駑
+ 0x99d2: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05\x02\x05\x01", // 駒
+ 0x99d3: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x03\x02\x04\x01", // 駓
+ 0x99d4: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x01\x01\x01", // 駔
+ 0x99d5: "\x05\x03\x02\x05\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 駕
+ 0x99d6: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x04\x04\x05\x04", // 駖
+ 0x99d7: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x04\x03\x03\x03", // 駗
+ 0x99d8: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x04\x02\x05\x01", // 駘
+ 0x99d9: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x02\x01\x02\x04", // 駙
+ 0x99da: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x01\x03\x04", // 駚
+ 0x99db: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x01\x03\x04", // 駛
+ 0x99dc: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x05\x04\x03\x04", // 駜
+ 0x99dd: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x04\x05\x03\x05", // 駝
+ 0x99de: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x01\x05\x02\x05", // 駞
+ 0x99df: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x03\x05\x01", // 駟
+ 0x99e0: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05\x03\x05\x02", // 駠
+ 0x99e1: "\x02\x05\x01\x02\x05\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 駡
+ 0x99e2: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x03\x01\x01\x03\x02", // 駢
+ 0x99e3: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x04\x01\x05\x03\x04", // 駣
+ 0x99e4: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x05\x04\x01\x02\x01", // 駤
+ 0x99e5: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x01\x03\x05\x03\x04", // 駥
+ 0x99e6: "\x04\x03\x01\x01\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 駦
+ 0x99e7: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01", // 駧
+ 0x99e8: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05\x02\x05\x01\x01", // 駨
+ 0x99e9: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x04\x01\x01\x02\x01", // 駩
+ 0x99ea: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x01\x02\x01\x03\x05", // 駪
+ 0x99eb: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x04\x03\x01\x03\x05", // 駫
+ 0x99ec: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x02\x01\x01\x01", // 駬
+ 0x99ed: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x01\x05\x03\x03\x04", // 駭
+ 0x99ee: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x01\x03\x04\x03\x04", // 駮
+ 0x99ef: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x01\x01\x02\x03\x04", // 駯
+ 0x99f0: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x01\x03\x04\x01", // 駰
+ 0x99f1: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05\x04\x02\x05\x01", // 駱
+ 0x99f2: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x03\x04\x02\x04\x02", // 駲
+ 0x99f3: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x02\x01\x05\x05\x04", // 駳
+ 0x99f4: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x01\x03\x02\x05\x03\x04", // 駴
+ 0x99f5: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x03\x02\x01\x05\x05\x01", // 駵
+ 0x99f6: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x01\x03\x05\x02\x05\x01", // 駶
+ 0x99f7: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x05\x01\x02\x03\x04", // 駷
+ 0x99f8: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x01\x01\x04\x05\x05\x04", // 駸
+ 0x99f9: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x03\x05\x03\x03\x03\x04", // 駹
+ 0x99fa: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x05\x01\x01\x05\x03\x04", // 駺
+ 0x99fb: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x01\x01\x01\x01\x02", // 駻
+ 0x99fc: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x04\x01\x01\x02\x03\x04", // 駼
+ 0x99fd: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x01", // 駽
+ 0x99fe: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x03\x02\x05\x01\x03\x05", // 駾
+ 0x99ff: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x04\x03\x04\x03\x05\x04", // 駿
+ 0x9a00: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x01\x02\x01\x05\x03\x04", // 騀
+ 0x9a01: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x01\x02\x01\x01\x05", // 騁
+ 0x9a02: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x01\x04\x03\x01\x01\x02", // 騂
+ 0x9a03: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x04\x03\x01\x01\x03\x04", // 騃
+ 0x9a04: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x01\x01\x02\x04\x01\x03\x04", // 騄
+ 0x9a05: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 騅
+ 0x9a06: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05\x01\x02\x01\x02\x05\x01", // 騆
+ 0x9a07: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x04\x01\x01\x02\x02\x05\x01", // 騇
+ 0x9a08: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x01\x01\x03\x03\x01\x01\x02", // 騈
+ 0x9a09: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x01\x01\x01\x05\x03\x05", // 騉
+ 0x9a0a: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05\x03\x01\x01\x02\x05\x02", // 騊
+ 0x9a0b: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x03\x04\x03\x04\x02\x03\x04", // 騋
+ 0x9a0c: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x04\x05\x01\x01\x02\x03\x04", // 騌
+ 0x9a0d: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x01\x01\x01\x02\x03\x04", // 騍
+ 0x9a0e: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x03\x04\x01\x02\x05\x01\x02", // 騎
+ 0x9a0f: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x02\x01\x01\x01\x03\x04", // 騏
+ 0x9a10: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x04\x04\x05\x04\x05\x04\x04", // 騐
+ 0x9a11: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x01\x01\x01\x02\x01\x01\x01", // 騑
+ 0x9a12: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x04\x02\x05\x01\x02\x01\x04", // 騒
+ 0x9a13: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x04\x01\x02\x05\x01\x03\x04", // 験
+ 0x9a14: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 騔
+ 0x9a15: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x05\x02\x02\x01\x05\x03\x01", // 騕
+ 0x9a16: "\x05\x04\x05\x02\x03\x03\x01\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 騖
+ 0x9a17: "\x04\x05\x01\x03\x02\x05\x01\x02\x02\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 騗
+ 0x9a18: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05\x03\x03\x04\x04\x05\x04\x04", // 騘
+ 0x9a19: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x05\x01\x03\x02\x05\x01\x02\x02", // 騙
+ 0x9a1a: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x03\x01\x02\x05\x01\x01\x02\x02", // 騚
+ 0x9a1b: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x03\x04\x03\x05\x03\x04\x03\x02", // 騛
+ 0x9a1c: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x01\x01\x02\x01", // 騜
+ 0x9a1d: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x01\x01\x01\x01\x02\x05\x04", // 騝
+ 0x9a1e: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x01\x01\x02\x01\x03\x02\x05\x01", // 騞
+ 0x9a1f: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 騟
+ 0x9a20: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 騠
+ 0x9a21: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x02\x05\x03\x04", // 騡
+ 0x9a22: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 騢
+ 0x9a23: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x04\x05\x02\x03\x04\x03\x05\x04", // 騣
+ 0x9a24: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x04\x03\x03\x04\x01\x01\x03\x04", // 騤
+ 0x9a25: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x04\x05\x02\x03\x01\x02\x03\x04", // 騥
+ 0x9a26: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 騦
+ 0x9a27: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x05\x02\x05\x02\x05\x01", // 騧
+ 0x9a28: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x04\x03\x02\x05\x01\x01\x01\x02", // 騨
+ 0x9a29: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 騩
+ 0x9a2a: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x02\x01\x05\x01\x01\x02\x05\x04", // 騪
+ 0x9a2b: "\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 騫
+ 0x9a2c: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x01\x02\x02\x01\x01\x03\x05\x03\x04", // 騬
+ 0x9a2d: "\x05\x02\x02\x01\x02\x01\x02\x03\x03\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 騭
+ 0x9a2e: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 騮
+ 0x9a2f: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03", // 騯
+ 0x9a30: "\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 騰
+ 0x9a31: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04", // 騱
+ 0x9a32: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x02\x02\x05\x01\x01\x01\x02", // 騲
+ 0x9a33: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 騳
+ 0x9a34: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x01\x01\x04\x04\x05\x05\x03\x01", // 騴
+ 0x9a35: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x03\x03\x02\x05\x01\x01\x02\x03\x04", // 騵
+ 0x9a36: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03", // 騶
+ 0x9a37: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x04\x04\x02\x05\x01\x02\x01\x04", // 騷
+ 0x9a38: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x05\x01\x03\x05\x04\x01\x05\x04\x01", // 騸
+ 0x9a39: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01", // 騹
+ 0x9a3a: "\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 騺
+ 0x9a3b: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04", // 騻
+ 0x9a3c: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 騼
+ 0x9a3d: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01", // 騽
+ 0x9a3e: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 騾
+ 0x9a3f: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02", // 騿
+ 0x9a40: "\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 驀
+ 0x9a41: "\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 驁
+ 0x9a42: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 驂
+ 0x9a43: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 驃
+ 0x9a44: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x02\x05\x03\x05\x04\x01\x04\x05\x04\x04", // 驄
+ 0x9a45: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 驅
+ 0x9a46: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x01\x01\x01\x02\x02\x01\x01\x02", // 驆
+ 0x9a47: "\x01\x02\x01\x03\x04\x01\x02\x01\x03\x05\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 驇
+ 0x9a48: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x04\x05\x02\x03\x02\x05\x03\x04\x02\x05\x01", // 驈
+ 0x9a49: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x01\x05\x03\x01\x05\x02\x02\x04\x03\x01", // 驉
+ 0x9a4a: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x02\x01\x01\x02\x02\x01\x01\x02", // 驊
+ 0x9a4b: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x04\x03\x03\x04\x05\x01\x05\x03\x05\x05\x04", // 驋
+ 0x9a4c: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x01\x01\x02\x03\x02\x01\x01\x05\x05\x01\x02\x02", // 驌
+ 0x9a4d: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 驍
+ 0x9a4e: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 驎
+ 0x9a4f: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x01\x03\x05\x02\x01\x05\x02\x01\x05\x02\x01", // 驏
+ 0x9a50: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x01\x02\x05\x01\x05\x02\x01\x03\x01\x03\x04", // 驐
+ 0x9a51: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x02\x01\x05\x05\x01\x02\x05\x01\x02\x01", // 驑
+ 0x9a52: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 驒
+ 0x9a53: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 驓
+ 0x9a54: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 驔
+ 0x9a55: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 驕
+ 0x9a56: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x01\x02\x05\x01\x01\x01\x02\x01\x05\x03\x04", // 驖
+ 0x9a57: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 驗
+ 0x9a58: "\x04\x01\x05\x02\x05\x01\x03\x05\x01\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05\x04", // 驘
+ 0x9a59: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 驙
+ 0x9a5a: "\x01\x02\x02\x03\x05\x02\x05\x01\x03\x01\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 驚
+ 0x9a5b: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 驛
+ 0x9a5c: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x02\x03\x04", // 驜
+ 0x9a5d: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x01\x04\x05\x01\x03\x02\x05\x01\x01\x02\x03\x04", // 驝
+ 0x9a5e: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x04\x05\x01\x02\x03\x03\x02\x05\x01\x01\x01\x03\x04", // 驞
+ 0x9a5f: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x02\x01\x01\x01\x05\x04\x03\x02\x03\x03\x03\x04", // 驟
+ 0x9a60: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x02\x01\x02\x05\x01\x02\x01\x01\x03\x05\x04\x04\x04\x04", // 驠
+ 0x9a61: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x05\x01\x05\x01\x01\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 驡
+ 0x9a62: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 驢
+ 0x9a63: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x03\x01\x01\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 驣
+ 0x9a64: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 驤
+ 0x9a65: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x01\x01\x03\x05\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 驥
+ 0x9a66: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 驦
+ 0x9a67: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x04\x03\x01\x02\x03\x04", // 驧
+ 0x9a68: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x03\x04\x02\x05\x01", // 驨
+ 0x9a69: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x02\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 驩
+ 0x9a6a: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x05\x04\x01\x02\x05\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 驪
+ 0x9a6b: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 驫
+ 0x9a6c: "\x05\x05\x01", // 马
+ 0x9a6d: "\x05\x05\x01\x05\x04", // 驭
+ 0x9a6e: "\x05\x05\x01\x01\x03\x04", // 驮
+ 0x9a6f: "\x05\x05\x01\x03\x02\x02", // 驯
+ 0x9a70: "\x05\x05\x01\x05\x02\x05", // 驰
+ 0x9a71: "\x05\x05\x01\x01\x03\x04\x05", // 驱
+ 0x9a72: "\x05\x05\x01\x02\x05\x01\x01", // 驲
+ 0x9a73: "\x05\x05\x01\x03\x04\x03\x04", // 驳
+ 0x9a74: "\x05\x05\x01\x04\x05\x01\x03", // 驴
+ 0x9a75: "\x05\x05\x01\x02\x05\x01\x01\x01", // 驵
+ 0x9a76: "\x05\x05\x01\x02\x05\x01\x03\x04", // 驶
+ 0x9a77: "\x05\x05\x01\x02\x05\x03\x05\x01", // 驷
+ 0x9a78: "\x05\x05\x01\x03\x02\x01\x02\x04", // 驸
+ 0x9a79: "\x05\x05\x01\x03\x05\x02\x05\x01", // 驹
+ 0x9a7a: "\x05\x05\x01\x03\x05\x05\x01\x01", // 驺
+ 0x9a7b: "\x05\x05\x01\x04\x01\x01\x02\x01", // 驻
+ 0x9a7c: "\x05\x05\x01\x04\x04\x05\x03\x05", // 驼
+ 0x9a7d: "\x05\x03\x01\x05\x04\x05\x05\x01", // 驽
+ 0x9a7e: "\x05\x03\x02\x05\x01\x05\x05\x01", // 驾
+ 0x9a7f: "\x05\x05\x01\x05\x04\x01\x01\x02", // 驿
+ 0x9a80: "\x05\x05\x01\x05\x04\x02\x05\x01", // 骀
+ 0x9a81: "\x05\x05\x01\x01\x05\x03\x01\x03\x05", // 骁
+ 0x9a82: "\x02\x05\x01\x02\x05\x01\x05\x05\x01", // 骂
+ 0x9a83: "\x05\x05\x01\x02\x05\x01\x03\x04\x01", // 骃
+ 0x9a84: "\x05\x05\x01\x03\x01\x03\x04\x03\x02", // 骄
+ 0x9a85: "\x05\x05\x01\x03\x02\x03\x05\x01\x02", // 骅
+ 0x9a86: "\x05\x05\x01\x03\x05\x04\x02\x05\x01", // 骆
+ 0x9a87: "\x05\x05\x01\x04\x01\x05\x03\x03\x04", // 骇
+ 0x9a88: "\x05\x05\x01\x04\x03\x01\x01\x03\x02", // 骈
+ 0x9a89: "\x05\x05\x01\x05\x05\x01\x05\x05\x01", // 骉
+ 0x9a8a: "\x05\x05\x01\x01\x02\x05\x04\x02\x05\x04", // 骊
+ 0x9a8b: "\x05\x05\x01\x02\x05\x01\x02\x01\x01\x05", // 骋
+ 0x9a8c: "\x05\x05\x01\x03\x04\x01\x04\x04\x03\x01", // 验
+ 0x9a8d: "\x05\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 骍
+ 0x9a8e: "\x05\x05\x01\x05\x01\x01\x04\x05\x05\x04", // 骎
+ 0x9a8f: "\x05\x05\x01\x05\x04\x03\x04\x03\x05\x04", // 骏
+ 0x9a90: "\x05\x05\x01\x01\x02\x02\x01\x01\x01\x03\x04", // 骐
+ 0x9a91: "\x05\x05\x01\x01\x03\x04\x01\x02\x05\x01\x02", // 骑
+ 0x9a92: "\x05\x05\x01\x02\x05\x01\x01\x01\x02\x03\x04", // 骒
+ 0x9a93: "\x05\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 骓
+ 0x9a94: "\x05\x05\x01\x04\x04\x05\x01\x01\x02\x03\x04", // 骔
+ 0x9a95: "\x05\x05\x01\x05\x01\x01\x02\x03\x02\x03\x04", // 骕
+ 0x9a96: "\x05\x05\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 骖
+ 0x9a97: "\x05\x05\x01\x04\x05\x01\x03\x02\x05\x01\x02\x02", // 骗
+ 0x9a98: "\x05\x02\x02\x01\x02\x01\x02\x03\x03\x05\x05\x01", // 骘
+ 0x9a99: "\x05\x05\x01\x05\x04\x03\x03\x04\x01\x01\x03\x04", // 骙
+ 0x9a9a: "\x05\x05\x01\x05\x04\x04\x02\x05\x01\x02\x01\x04", // 骚
+ 0x9a9b: "\x05\x04\x05\x02\x03\x03\x01\x03\x04\x05\x05\x01", // 骛
+ 0x9a9c: "\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04\x05\x05\x01", // 骜
+ 0x9a9d: "\x05\x05\x01\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 骝
+ 0x9a9e: "\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x05\x05\x01", // 骞
+ 0x9a9f: "\x05\x05\x01\x04\x05\x01\x03\x05\x04\x01\x05\x04\x01", // 骟
+ 0x9aa0: "\x05\x05\x01\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 骠
+ 0x9aa1: "\x05\x05\x01\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 骡
+ 0x9aa2: "\x05\x05\x01\x03\x02\x05\x03\x05\x04\x01\x04\x05\x04\x04", // 骢
+ 0x9aa3: "\x05\x05\x01\x05\x01\x03\x05\x02\x01\x05\x02\x01\x05\x02\x01", // 骣
+ 0x9aa4: "\x05\x05\x01\x01\x02\x02\x01\x01\x01\x05\x04\x03\x02\x03\x03\x03\x04", // 骤
+ 0x9aa5: "\x05\x05\x01\x02\x01\x01\x03\x05\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 骥
+ 0x9aa6: "\x05\x05\x01\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 骦
+ 0x9aa7: "\x05\x05\x01\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 骧
+ 0x9aa8: "\x02\x05\x05\x04\x05\x02\x05\x01\x01", // 骨
+ 0x9aa9: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x03\x05", // 骩
+ 0x9aaa: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x03\x05\x04", // 骪
+ 0x9aab: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x03\x05\x04", // 骫
+ 0x9aac: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x01\x01\x02", // 骬
+ 0x9aad: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x01\x01\x02", // 骭
+ 0x9aae: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x01\x05\x04", // 骮
+ 0x9aaf: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x04\x01\x03\x05", // 骯
+ 0x9ab0: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x03\x05\x05\x04", // 骰
+ 0x9ab1: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x03\x04\x03\x02", // 骱
+ 0x9ab2: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x03\x05\x05\x01\x05", // 骲
+ 0x9ab3: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x05\x03\x02\x05\x04", // 骳
+ 0x9ab4: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x02\x01\x02\x01\x03\x05", // 骴
+ 0x9ab5: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x01\x02\x03\x04\x01", // 骵
+ 0x9ab6: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x03\x05\x01\x05\x04", // 骶
+ 0x9ab7: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x01\x02\x02\x05\x01", // 骷
+ 0x9ab8: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x04\x01\x05\x03\x03\x04", // 骸
+ 0x9ab9: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x04\x01\x03\x04\x03\x04", // 骹
+ 0x9aba: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x03\x03\x01\x02\x05\x01", // 骺
+ 0x9abb: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x01\x03\x04\x01\x01\x05", // 骻
+ 0x9abc: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x03\x05\x04\x02\x05\x01", // 骼
+ 0x9abd: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x03\x04\x04\x03\x05\x03\x01", // 骽
+ 0x9abe: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x01\x02\x05\x01\x01\x03\x04", // 骾
+ 0x9abf: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x04\x03\x01\x01\x03\x02", // 骿
+ 0x9ac0: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x01\x02", // 髀
+ 0x9ac1: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x03\x04", // 髁
+ 0x9ac2: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x04\x04\x05\x03\x05\x04\x02\x05\x01", // 髂
+ 0x9ac3: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 髃
+ 0x9ac4: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x04\x05\x04", // 髄
+ 0x9ac5: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 髅
+ 0x9ac6: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 髆
+ 0x9ac7: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 髇
+ 0x9ac8: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03", // 髈
+ 0x9ac9: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x04\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 髉
+ 0x9aca: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x04\x03\x01\x01\x01\x03\x01\x02\x01", // 髊
+ 0x9acb: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x04\x04\x05\x01\x02\x02\x02\x05\x03\x05", // 髋
+ 0x9acc: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x04\x04\x05\x03\x02\x01\x02\x01\x03\x04", // 髌
+ 0x9acd: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04", // 髍
+ 0x9ace: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 髎
+ 0x9acf: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 髏
+ 0x9ad0: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 髐
+ 0x9ad1: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 髑
+ 0x9ad2: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x04\x03\x05\x01\x03\x02", // 髒
+ 0x9ad3: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x01\x03\x01\x02\x01\x02\x05\x01\x01\x04\x05\x04", // 髓
+ 0x9ad4: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x02\x05\x01\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01", // 體
+ 0x9ad5: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x04\x04\x05\x01\x02\x03\x03\x02\x05\x01\x01\x01\x03\x04", // 髕
+ 0x9ad6: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x04\x04\x05\x01\x02\x02\x02\x05\x01\x01\x01\x03\x05\x04", // 髖
+ 0x9ad7: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 髗
+ 0x9ad8: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 高
+ 0x9ad9: "\x04\x01\x02\x02\x01\x01\x02\x05\x02\x05\x01", // 髙
+ 0x9ada: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x04\x01\x03\x05", // 髚
+ 0x9adb: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x05\x01\x03\x03\x05", // 髛
+ 0x9adc: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x02\x05\x01\x01\x03\x01\x03\x02", // 髜
+ 0x9add: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x05\x03", // 髝
+ 0x9ade: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 髞
+ 0x9adf: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03", // 髟
+ 0x9ae0: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x05", // 髠
+ 0x9ae1: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x03\x05", // 髡
+ 0x9ae2: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x05\x02\x05", // 髢
+ 0x9ae3: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x01\x05\x03", // 髣
+ 0x9ae4: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x03\x04", // 髤
+ 0x9ae5: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x01\x01", // 髥
+ 0x9ae6: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x01\x01\x05", // 髦
+ 0x9ae7: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x05\x03\x05", // 髧
+ 0x9ae8: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x01\x03\x05", // 髨
+ 0x9ae9: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x05\x05", // 髩
+ 0x9aea: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x03\x05\x04", // 髪
+ 0x9aeb: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x05\x03\x02\x05\x01", // 髫
+ 0x9aec: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x03\x02\x04\x01", // 髬
+ 0x9aed: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x01\x02\x01\x03\x05", // 髭
+ 0x9aee: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x03\x05\x04\x04", // 髮
+ 0x9aef: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x02\x01\x01", // 髯
+ 0x9af0: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x02\x01\x05", // 髰
+ 0x9af1: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x05\x05\x01\x05", // 髱
+ 0x9af2: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x05\x03\x02\x05\x04", // 髲
+ 0x9af3: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x05\x04\x05\x02\x03", // 髳
+ 0x9af4: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x05\x01\x05\x03\x02", // 髴
+ 0x9af5: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x03\x02\x05\x02\x02", // 髵
+ 0x9af6: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x02\x01\x01\x01", // 髶
+ 0x9af7: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x01\x02\x02\x01", // 髷
+ 0x9af8: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x02\x01\x03\x04", // 髸
+ 0x9af9: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x02\x01\x02\x03\x04", // 髹
+ 0x9afa: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x01\x02\x02\x05\x01", // 髺
+ 0x9afb: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x01\x02\x05\x01", // 髻
+ 0x9afc: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x05\x04\x01\x01\x01\x02", // 髼
+ 0x9afd: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x04\x03\x04\x01\x02\x01", // 髽
+ 0x9afe: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x04\x03\x02\x05\x01\x01", // 髾
+ 0x9aff: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x04\x01\x02\x03\x04\x03", // 髿
+ 0x9b00: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x03\x05\x01\x05\x02\x03", // 鬀
+ 0x9b01: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x01\x02\x03\x04\x02\x02", // 鬁
+ 0x9b02: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x02\x01\x02\x01\x03\x04", // 鬂
+ 0x9b03: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x04\x05\x01\x01\x02\x03\x04", // 鬃
+ 0x9b04: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x01\x01\x03\x05\x03\x03", // 鬄
+ 0x9b05: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x05\x01\x01\x03\x05\x01\x01", // 鬅
+ 0x9b06: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x03\x04\x03\x04\x05\x04", // 鬆
+ 0x9b07: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x05\x05\x01\x01\x02", // 鬇
+ 0x9b08: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x03\x01\x01\x03\x04\x05\x05", // 鬈
+ 0x9b09: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x04\x05\x02\x03\x04\x03\x05\x04", // 鬉
+ 0x9b0a: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x01\x01\x03\x04\x02\x05\x01\x01", // 鬊
+ 0x9b0b: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x03\x01\x02\x05\x01\x01\x02\x02", // 鬋
+ 0x9b0c: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x03\x01\x02\x01\x02\x05\x01\x01", // 鬌
+ 0x9b0d: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x02\x05\x01\x03\x05\x01\x01", // 鬍
+ 0x9b0e: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x05\x01\x02\x03\x04\x02\x02", // 鬎
+ 0x9b0f: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x01\x02\x03\x04\x04\x03\x03\x04", // 鬏
+ 0x9b10: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x01\x03\x03\x05\x02\x05\x01\x01", // 鬐
+ 0x9b11: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 鬑
+ 0x9b12: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 鬒
+ 0x9b13: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x04\x05\x03\x02\x01\x02\x01\x03\x04", // 鬓
+ 0x9b14: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x05\x04\x01\x01\x01\x02\x04\x05\x04", // 鬔
+ 0x9b15: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 鬕
+ 0x9b16: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 鬖
+ 0x9b17: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04", // 鬗
+ 0x9b18: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 鬘
+ 0x9b19: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 鬙
+ 0x9b1a: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 鬚
+ 0x9b1b: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x02\x05\x03\x04\x01\x05\x04\x04\x05\x04\x04\x05", // 鬛
+ 0x9b1c: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x01\x01\x02\x05\x01\x01\x03\x05\x01\x01", // 鬜
+ 0x9b1d: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01", // 鬝
+ 0x9b1e: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x01\x02\x02\x01\x01\x03\x01\x01\x05\x03\x04", // 鬞
+ 0x9b1f: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 鬟
+ 0x9b20: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 鬠
+ 0x9b21: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x04\x05\x04\x05\x04\x04\x02\x05\x02\x02\x01\x01\x02", // 鬡
+ 0x9b22: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x04\x05\x01\x02\x03\x03\x02\x05\x01\x01\x01\x03\x04", // 鬢
+ 0x9b23: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x05\x05\x05\x02\x05\x03\x04\x01\x05\x04\x04\x05\x04\x04\x05", // 鬣
+ 0x9b24: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 鬤
+ 0x9b25: "\x01\x01\x02\x01\x02\x01\x01\x02\x01\x02", // 鬥
+ 0x9b26: "\x01\x01\x02\x01\x02\x01\x01\x02\x01\x02\x04\x04\x01\x02", // 鬦
+ 0x9b27: "\x01\x01\x02\x01\x02\x01\x01\x02\x01\x02\x04\x01\x02\x05\x02", // 鬧
+ 0x9b28: "\x01\x01\x02\x01\x02\x01\x01\x02\x01\x02\x01\x02\x02\x01\x03\x04", // 鬨
+ 0x9b29: "\x01\x01\x02\x01\x02\x01\x01\x02\x01\x02\x03\x02\x01\x05\x01\x01\x03\x05", // 鬩
+ 0x9b2a: "\x01\x01\x02\x01\x02\x01\x01\x02\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x04", // 鬪
+ 0x9b2b: "\x01\x01\x02\x01\x02\x01\x01\x02\x01\x02\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 鬫
+ 0x9b2c: "\x01\x01\x02\x01\x02\x01\x01\x02\x01\x02\x03\x05\x01\x02\x05\x05\x01\x05\x01\x02\x01\x03\x03\x01\x02", // 鬬
+ 0x9b2d: "\x01\x01\x02\x01\x02\x01\x01\x02\x01\x02\x02\x01\x05\x01\x05\x02\x05\x01\x05\x01\x02\x01\x03\x03\x01\x02", // 鬭
+ 0x9b2e: "\x01\x01\x02\x01\x02\x01\x01\x02\x01\x02\x03\x02\x05\x01\x01\x02\x05\x05\x01\x01\x05\x01\x01\x05\x03\x04\x01", // 鬮
+ 0x9b2f: "\x03\x04\x04\x04\x04\x04\x05\x02\x03\x05", // 鬯
+ 0x9b30: "\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x03\x04\x04\x05\x03\x04\x04\x04\x04\x04\x05\x02\x03\x05\x03\x03\x03", // 鬰
+ 0x9b31: "\x01\x02\x03\x04\x03\x01\x01\x02\x05\x02\x01\x02\x03\x04\x04\x05\x03\x04\x04\x04\x04\x04\x05\x02\x03\x05\x03\x03\x03", // 鬱
+ 0x9b32: "\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 鬲
+ 0x9b33: "\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 鬳
+ 0x9b34: "\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x02\x05\x01\x01\x02\x04", // 鬴
+ 0x9b35: "\x01\x05\x03\x05\x01\x05\x03\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 鬵
+ 0x9b36: "\x01\x01\x03\x04\x02\x05\x03\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 鬶
+ 0x9b37: "\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x03\x04\x05\x02\x03\x04\x03\x05\x04", // 鬷
+ 0x9b38: "\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 鬸
+ 0x9b39: "\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 鬹
+ 0x9b3a: "\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x03\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 鬺
+ 0x9b3b: "\x05\x01\x05\x04\x03\x01\x02\x03\x04\x05\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 鬻
+ 0x9b3c: "\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 鬼
+ 0x9b3d: "\x03\x02\x05\x01\x01\x03\x05\x05\x04\x03\x03\x03", // 鬽
+ 0x9b3e: "\x03\x02\x05\x01\x01\x03\x05\x05\x04\x01\x02\x05\x04", // 鬾
+ 0x9b3f: "\x03\x02\x05\x01\x01\x03\x05\x05\x04\x03\x03\x01\x02", // 鬿
+ 0x9b40: "\x03\x02\x05\x01\x01\x03\x05\x05\x04\x03\x04\x03\x02", // 魀
+ 0x9b41: "\x03\x02\x05\x01\x01\x03\x05\x05\x04\x04\x04\x01\x02", // 魁
+ 0x9b42: "\x01\x01\x05\x04\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 魂
+ 0x9b43: "\x03\x02\x05\x01\x01\x03\x05\x05\x04\x01\x03\x05\x04\x04", // 魃
+ 0x9b44: "\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 魄
+ 0x9b45: "\x03\x02\x05\x01\x01\x03\x05\x05\x04\x01\x01\x02\x03\x04", // 魅
+ 0x9b46: "\x03\x02\x05\x01\x01\x03\x05\x05\x04\x01\x05\x05\x03\x04", // 魆
+ 0x9b47: "\x01\x03\x01\x03\x04\x04\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 魇
+ 0x9b48: "\x03\x02\x05\x01\x01\x03\x05\x05\x04\x02\x04\x03\x02\x05\x01\x01", // 魈
+ 0x9b49: "\x03\x02\x05\x01\x01\x03\x05\x05\x04\x01\x02\x05\x03\x04\x03\x04", // 魉
+ 0x9b4a: "\x03\x02\x05\x01\x01\x03\x05\x05\x04\x01\x02\x05\x01\x01\x05\x03\x04", // 魊
+ 0x9b4b: "\x03\x02\x05\x01\x01\x03\x05\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 魋
+ 0x9b4c: "\x03\x02\x05\x01\x01\x03\x05\x05\x04\x01\x02\x02\x01\x01\x01\x03\x04", // 魌
+ 0x9b4d: "\x03\x02\x05\x01\x01\x03\x05\x05\x04\x02\x05\x04\x03\x01\x04\x01\x05", // 魍
+ 0x9b4e: "\x03\x02\x05\x01\x01\x03\x05\x05\x04\x01\x02\x05\x02\x03\x04\x03\x04", // 魎
+ 0x9b4f: "\x03\x01\x02\x03\x04\x05\x03\x01\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 魏
+ 0x9b50: "\x03\x02\x05\x01\x01\x03\x05\x05\x04\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 魐
+ 0x9b51: "\x03\x02\x05\x01\x01\x03\x05\x05\x04\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 魑
+ 0x9b52: "\x03\x02\x05\x01\x01\x03\x05\x05\x04\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 魒
+ 0x9b53: "\x03\x02\x05\x01\x01\x03\x05\x05\x04\x02\x05\x01\x01\x01\x02\x02\x01\x01\x02", // 魓
+ 0x9b54: "\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 魔
+ 0x9b55: "\x03\x02\x05\x01\x01\x03\x05\x05\x04\x05\x05\x04\x05\x05\x04\x01\x03\x04\x05\x03\x04", // 魕
+ 0x9b56: "\x03\x02\x05\x01\x01\x03\x05\x05\x04\x02\x01\x05\x03\x01\x05\x02\x02\x04\x03\x01", // 魖
+ 0x9b57: "\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 魗
+ 0x9b58: "\x01\x03\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x04\x04\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 魘
+ 0x9b59: "\x04\x04\x01\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 魙
+ 0x9b5a: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 魚
+ 0x9b5b: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x03", // 魛
+ 0x9b5c: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x04", // 魜
+ 0x9b5d: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x02", // 魝
+ 0x9b5e: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x04", // 魞
+ 0x9b5f: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01", // 魟
+ 0x9b60: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x05", // 魠
+ 0x9b61: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x04", // 魡
+ 0x9b62: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x01\x05", // 魢
+ 0x9b63: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x04\x05\x02", // 魣
+ 0x9b64: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x02\x03\x05", // 魤
+ 0x9b65: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x04", // 魥
+ 0x9b66: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x03\x04\x03", // 魦
+ 0x9b67: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x03\x05", // 魧
+ 0x9b68: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x05\x02\x05", // 魨
+ 0x9b69: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x03\x03", // 魩
+ 0x9b6a: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x04\x03\x02", // 魪
+ 0x9b6b: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x05\x03\x05", // 魫
+ 0x9b6c: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x03\x05\x04", // 魬
+ 0x9b6d: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x01\x03\x05", // 魭
+ 0x9b6e: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x05\x03\x05", // 魮
+ 0x9b6f: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01", // 魯
+ 0x9b70: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x03\x04", // 魰
+ 0x9b71: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x05\x05\x01", // 魱
+ 0x9b72: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x05\x01\x03", // 魲
+ 0x9b73: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x05\x02", // 魳
+ 0x9b74: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x05\x03", // 魴
+ 0x9b75: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x04\x05\x03", // 魵
+ 0x9b76: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x03\x04", // 魶
+ 0x9b77: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x03\x05\x04", // 魷
+ 0x9b78: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x02\x01\x05", // 魸
+ 0x9b79: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x01\x05", // 魹
+ 0x9b7a: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x05\x01\x02", // 魺
+ 0x9b7b: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01\x02", // 魻
+ 0x9b7c: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x05\x04", // 魼
+ 0x9b7d: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x02\x01\x01", // 魽
+ 0x9b7e: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x03\x02\x04\x01", // 魾
+ 0x9b7f: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x04\x04\x05\x04", // 魿
+ 0x9b80: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x04\x05\x03\x05", // 鮀
+ 0x9b81: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x03\x05\x04\x04", // 鮁
+ 0x9b82: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x03\x04\x01", // 鮂
+ 0x9b83: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x04\x03\x01\x02", // 鮃
+ 0x9b84: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x01\x05\x03\x02", // 鮄
+ 0x9b85: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x05\x04\x03\x04", // 鮅
+ 0x9b86: "\x02\x01\x02\x01\x03\x05\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 鮆
+ 0x9b87: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x01\x02\x03\x04", // 鮇
+ 0x9b88: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x02\x05\x01", // 鮈
+ 0x9b89: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x03\x02\x05\x01", // 鮉
+ 0x9b8a: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x02\x05\x01\x01", // 鮊
+ 0x9b8b: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x02\x01", // 鮋
+ 0x9b8c: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x05\x05\x04", // 鮌
+ 0x9b8d: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x03\x02\x05\x04", // 鮍
+ 0x9b8e: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x01\x02\x05\x01", // 鮎
+ 0x9b8f: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x01\x02\x01", // 鮏
+ 0x9b90: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x04\x02\x05\x01", // 鮐
+ 0x9b91: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x05\x01\x05", // 鮑
+ 0x9b92: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x02\x01\x02\x04", // 鮒
+ 0x9b93: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x02\x01\x01", // 鮓
+ 0x9b94: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x05\x01\x05", // 鮔
+ 0x9b95: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x02\x05\x01", // 鮕
+ 0x9b96: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x03\x02\x05\x01", // 鮖
+ 0x9b97: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x04\x04\x04", // 鮗
+ 0x9b98: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x02\x01\x05\x04", // 鮘
+ 0x9b99: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x04\x01\x05\x04\x01", // 鮙
+ 0x9b9a: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x02\x05\x01", // 鮚
+ 0x9b9b: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x01\x01\x02\x03\x04", // 鮛
+ 0x9b9c: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x03\x01\x02\x05\x01", // 鮜
+ 0x9b9d: "\x04\x03\x01\x01\x03\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 鮝
+ 0x9b9e: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02", // 鮞
+ 0x9b9f: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x04\x05\x05\x03\x01", // 鮟
+ 0x9ba0: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x01\x03\x05\x05", // 鮠
+ 0x9ba1: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x04\x01\x05\x03\x04", // 鮡
+ 0x9ba2: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x01\x02\x03\x04", // 鮢
+ 0x9ba3: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x01\x05\x02", // 鮣
+ 0x9ba4: "\x01\x03\x05\x04\x02\x02\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 鮤
+ 0x9ba5: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x04\x02\x05\x01", // 鮥
+ 0x9ba6: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01", // 鮦
+ 0x9ba7: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x05\x01\x05\x03\x04", // 鮧
+ 0x9ba8: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x02\x05\x01\x01", // 鮨
+ 0x9ba9: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x01\x01\x03\x02", // 鮩
+ 0x9baa: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x03\x02\x05\x01\x01", // 鮪
+ 0x9bab: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x03\x04\x03\x04", // 鮫
+ 0x9bac: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x03\x04\x01\x01\x05", // 鮬
+ 0x9bad: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x01\x02\x01", // 鮭
+ 0x9bae: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x01\x01\x01\x02", // 鮮
+ 0x9baf: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x04\x01\x02\x05\x01", // 鮯
+ 0x9bb0: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x02\x05\x01\x01", // 鮰
+ 0x9bb1: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x03\x03\x05", // 鮱
+ 0x9bb2: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x02\x01\x03\x04\x04", // 鮲
+ 0x9bb3: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x03\x01\x05", // 鮳
+ 0x9bb4: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x02\x01\x02\x03\x04", // 鮴
+ 0x9bb5: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x02\x05\x01\x03\x05", // 鮵
+ 0x9bb6: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x01\x01\x03\x02\x05\x01", // 鮶
+ 0x9bb7: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x05\x01\x05\x02\x03", // 鮷
+ 0x9bb8: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x02\x05\x01\x03\x05", // 鮸
+ 0x9bb9: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x04\x03\x02\x05\x01\x01", // 鮹
+ 0x9bba: "\x04\x03\x01\x01\x01\x03\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 鮺
+ 0x9bbb: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x04\x03\x04\x03\x05\x04", // 鮻
+ 0x9bbc: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x01\x01\x04\x05\x05\x04", // 鮼
+ 0x9bbd: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x04\x01\x01\x02\x03\x04", // 鮽
+ 0x9bbe: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x04\x04\x03\x05\x03\x01", // 鮾
+ 0x9bbf: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x02\x01\x01\x01\x05", // 鮿
+ 0x9bc0: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x05\x04\x02\x03\x04", // 鯀
+ 0x9bc1: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x05\x01\x01\x03\x04", // 鯁
+ 0x9bc2: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x05\x03\x05\x01\x01", // 鯂
+ 0x9bc3: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x05\x01\x02\x05\x01", // 鯃
+ 0x9bc4: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x04\x01\x03\x04\x04", // 鯄
+ 0x9bc5: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x02\x01\x05\x05\x04", // 鯅
+ 0x9bc6: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x05\x01\x01\x02\x04", // 鯆
+ 0x9bc7: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x04\x05\x01\x01\x03\x05", // 鯇
+ 0x9bc8: "\x03\x02\x02\x03\x05\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 鯈
+ 0x9bc9: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01\x02\x01\x01", // 鯉
+ 0x9bca: "\x04\x04\x01\x02\x03\x04\x03\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 鯊
+ 0x9bcb: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x04\x01\x02\x03\x04\x03", // 鯋
+ 0x9bcc: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x02\x01\x02\x05\x01", // 鯌
+ 0x9bcd: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x05\x04\x03\x02\x05", // 鯍
+ 0x9bce: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x03\x05\x05\x03\x04", // 鯎
+ 0x9bcf: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x02\x03\x04\x02\x02", // 鯏
+ 0x9bd0: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x02\x01\x03\x04", // 鯐
+ 0x9bd1: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x04\x01\x03\x02\x05\x02", // 鯑
+ 0x9bd2: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x04\x02\x05\x01\x01\x02", // 鯒
+ 0x9bd3: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x02\x05\x01\x01\x01\x03", // 鯓
+ 0x9bd4: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x05\x05\x02\x05\x01\x02\x01", // 鯔
+ 0x9bd5: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x02\x01\x01\x01\x03\x04", // 鯕
+ 0x9bd6: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x01\x02\x01\x02\x05\x01\x01", // 鯖
+ 0x9bd7: "\x04\x03\x01\x01\x01\x03\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 鯗
+ 0x9bd8: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 鯘
+ 0x9bd9: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x02\x05\x01\x05\x02\x01", // 鯙
+ 0x9bda: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x02\x03\x04\x05\x02\x01", // 鯚
+ 0x9bdb: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x01\x02\x01\x02\x05\x01", // 鯛
+ 0x9bdc: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x04\x03\x01\x05\x03\x01", // 鯜
+ 0x9bdd: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x02\x02\x05\x01\x01", // 鯝
+ 0x9bde: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x01\x01\x04\x05\x02\x05\x02", // 鯞
+ 0x9bdf: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x05\x01\x01\x02\x03\x04", // 鯟
+ 0x9be0: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x03\x04\x03\x04\x02\x03\x04", // 鯠
+ 0x9be1: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x01\x01\x01\x02\x01\x01\x01", // 鯡
+ 0x9be2: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x02\x01\x05\x01\x01\x03\x05", // 鯢
+ 0x9be3: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01\x03\x05\x03\x03", // 鯣
+ 0x9be4: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01\x01\x05\x03\x05", // 鯤
+ 0x9be5: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x03\x04\x01\x02\x01", // 鯥
+ 0x9be6: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x04\x02\x04\x02\x05\x01", // 鯦
+ 0x9be7: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01\x02\x05\x01\x01", // 鯧
+ 0x9be8: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x02\x05\x01\x02\x03\x04", // 鯨
+ 0x9be9: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x04\x01\x02\x05\x01\x02\x02", // 鯩
+ 0x9bea: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x03\x04\x03\x05\x04", // 鯪
+ 0x9beb: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x02\x01\x01\x01\x05\x04", // 鯫
+ 0x9bec: "\x03\x01\x02\x03\x04\x03\x05\x03\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 鯬
+ 0x9bed: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x02\x01\x02\x05\x02\x02\x01", // 鯭
+ 0x9bee: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x04\x05\x01\x01\x02\x03\x04", // 鯮
+ 0x9bef: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x01\x02\x05\x02\x02\x02", // 鯯
+ 0x9bf0: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x04\x04\x05\x04\x05\x04\x04", // 鯰
+ 0x9bf1: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x01\x05\x03\x01\x05\x03\x05", // 鯱
+ 0x9bf2: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x05\x03\x03\x04\x04\x04", // 鯲
+ 0x9bf3: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x03\x03\x05\x01\x05\x04", // 鯳
+ 0x9bf4: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x03\x02\x05\x01\x02\x01\x04", // 鯴
+ 0x9bf5: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x04\x01\x03\x04\x03\x03\x03", // 鯵
+ 0x9bf6: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 鯶
+ 0x9bf7: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 鯷
+ 0x9bf8: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x02\x05\x01\x03\x01\x01\x03\x04", // 鯸
+ 0x9bf9: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01\x03\x01\x01\x02\x01", // 鯹
+ 0x9bfa: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x03\x02\x05\x01\x01", // 鯺
+ 0x9bfb: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x05\x01\x02\x03\x04\x02\x02", // 鯻
+ 0x9bfc: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x04\x05\x02\x03\x04\x03\x05\x04", // 鯼
+ 0x9bfd: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x01\x01\x05\x04\x05\x02", // 鯽
+ 0x9bfe: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x02\x01\x02\x05\x01\x01\x03\x04", // 鯾
+ 0x9bff: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x05\x01\x03\x02\x05\x01\x02\x02", // 鯿
+ 0x9c00: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x04\x04\x03\x01\x01\x03\x05\x04", // 鰀
+ 0x9c01: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x02\x05\x01\x01\x02\x05\x03\x04", // 鰁
+ 0x9c02: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01\x01\x03\x04\x02\x02", // 鰂
+ 0x9c03: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x02\x01\x01\x05\x03\x04", // 鰃
+ 0x9c04: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x03\x01\x05\x03\x01\x05\x03\x04", // 鰄
+ 0x9c05: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 鰅
+ 0x9c06: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x01\x01\x03\x04\x02\x05\x01\x01", // 鰆
+ 0x9c07: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x04\x05\x02\x03\x01\x02\x03\x04", // 鰇
+ 0x9c08: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 鰈
+ 0x9c09: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x02\x05\x01\x01\x01\x01\x02\x01", // 鰉
+ 0x9c0a: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 鰊
+ 0x9c0b: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x05\x01\x01\x05\x03\x01\x05", // 鰋
+ 0x9c0c: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x01\x02\x05\x03\x05\x01\x01", // 鰌
+ 0x9c0d: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x02\x03\x04\x04\x03\x03\x04", // 鰍
+ 0x9c0e: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x01\x01\x01\x01\x02\x05\x04", // 鰎
+ 0x9c0f: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 鰏
+ 0x9c10: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x01\x01\x05", // 鰐
+ 0x9c11: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 鰑
+ 0x9c12: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 鰒
+ 0x9c13: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 鰓
+ 0x9c14: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 鰔
+ 0x9c15: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 鰕
+ 0x9c16: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x03\x01\x02\x01\x02\x05\x01\x01", // 鰖
+ 0x9c17: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x02\x05\x01\x03\x05\x01\x01", // 鰗
+ 0x9c18: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x04\x05\x01\x05\x04\x01\x02\x01", // 鰘
+ 0x9c19: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x02\x01\x03\x02\x05\x01", // 鰙
+ 0x9c1a: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x04\x05\x01\x02\x05\x01\x01\x01", // 鰚
+ 0x9c1b: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 鰛
+ 0x9c1c: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 鰜
+ 0x9c1d: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 鰝
+ 0x9c1e: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x02\x05\x01\x01\x05\x04\x04\x04\x04", // 鰞
+ 0x9c1f: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03", // 鰟
+ 0x9c20: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x04\x04\x02\x05\x01\x02\x01\x04", // 鰠
+ 0x9c21: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 鰡
+ 0x9c22: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 鰢
+ 0x9c23: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01\x01\x02\x01\x01\x02\x04", // 鰣
+ 0x9c24: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x02\x05\x01\x05\x01\x01\x02\x05\x02", // 鰤
+ 0x9c25: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x02\x02\x01\x02\x03\x03\x04\x04", // 鰥
+ 0x9c26: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x02\x05\x05\x04\x05\x05\x04", // 鰦
+ 0x9c27: "\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 鰧
+ 0x9c28: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 鰨
+ 0x9c29: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02", // 鰩
+ 0x9c2a: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 鰪
+ 0x9c2b: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x04\x05\x03\x04\x03\x04\x02\x05\x01", // 鰫
+ 0x9c2c: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x01\x05\x03\x01\x05\x04\x01\x03\x04", // 鰬
+ 0x9c2d: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x03\x03\x05\x02\x05\x01\x01", // 鰭
+ 0x9c2e: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x03\x04\x01\x02\x05\x02\x02\x01", // 鰮
+ 0x9c2f: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x01\x05\x04\x01\x05\x01\x05\x04\x01", // 鰯
+ 0x9c30: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x05\x02\x04\x02\x05\x01\x01\x02", // 鰰
+ 0x9c31: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 鰱
+ 0x9c32: "\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 鰲
+ 0x9c33: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x03", // 鰳
+ 0x9c34: "\x03\x03\x02\x02\x05\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x03\x04", // 鰴
+ 0x9c35: "\x03\x01\x05\x05\x04\x01\x04\x03\x01\x03\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 鰵
+ 0x9c36: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x04\x04\x05\x04\x01\x01\x02\x03\x04", // 鰶
+ 0x9c37: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x02\x02\x03\x05\x04\x01\x02\x03\x04", // 鰷
+ 0x9c38: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 鰸
+ 0x9c39: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x05\x01\x02\x05\x05\x04\x01\x02\x01", // 鰹
+ 0x9c3a: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 鰺
+ 0x9c3b: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 鰻
+ 0x9c3c: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01", // 鰼
+ 0x9c3d: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01", // 鰽
+ 0x9c3e: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 鰾
+ 0x9c3f: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 鰿
+ 0x9c40: "\x05\x01\x01\x05\x04\x01\x05\x03\x05\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 鱀
+ 0x9c41: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 鱁
+ 0x9c42: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x02\x01\x03\x03\x05\x04\x04\x01\x02\x04", // 鱂
+ 0x9c43: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x01\x01\x01\x03\x05\x02\x01\x01", // 鱃
+ 0x9c44: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04", // 鱄
+ 0x9c45: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x03\x05\x01\x01\x02\x05\x01\x01\x02", // 鱅
+ 0x9c46: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02", // 鱆
+ 0x9c47: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x03\x05\x01\x01\x02\x04\x01\x03\x04", // 鱇
+ 0x9c48: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x04\x05\x02\x04\x04\x04\x04\x05\x01\x01", // 鱈
+ 0x9c49: "\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 鱉
+ 0x9c4a: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x04\x05\x02\x03\x02\x05\x03\x04\x02\x05\x01", // 鱊
+ 0x9c4b: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x01\x05\x03\x01\x05\x02\x02\x04\x03\x01", // 鱋
+ 0x9c4c: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x02\x05\x01\x03\x05\x03\x03\x03\x04", // 鱌
+ 0x9c4d: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x04\x03\x03\x04\x05\x01\x05\x03\x05\x05\x04", // 鱍
+ 0x9c4e: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 鱎
+ 0x9c4f: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 鱏
+ 0x9c50: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x01\x01\x02\x03\x02\x01\x01\x05\x05\x01\x02\x02", // 鱐
+ 0x9c51: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 鱑
+ 0x9c52: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x02\x04", // 鱒
+ 0x9c53: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 鱓
+ 0x9c54: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x01\x01\x01\x02\x04\x03\x01\x02\x05\x01", // 鱔
+ 0x9c55: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 鱕
+ 0x9c56: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x03\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04", // 鱖
+ 0x9c57: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 鱗
+ 0x9c58: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04", // 鱘
+ 0x9c59: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 鱙
+ 0x9c5a: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01", // 鱚
+ 0x9c5b: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 鱛
+ 0x9c5c: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x05\x03\x04\x05\x01\x01\x05\x04\x05\x02", // 鱜
+ 0x9c5d: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 鱝
+ 0x9c5e: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 鱞
+ 0x9c5f: "\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 鱟
+ 0x9c60: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 鱠
+ 0x9c61: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01\x01\x03\x04\x01\x01\x03\x05\x03\x04", // 鱡
+ 0x9c62: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 鱢
+ 0x9c63: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 鱣
+ 0x9c64: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x03\x01\x02\x05\x01\x05\x03\x04\x04\x05\x04\x04", // 鱤
+ 0x9c65: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x01\x02\x01\x01\x03\x01\x02\x03\x03\x05\x03\x04", // 鱥
+ 0x9c66: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01\x02\x05\x01\x02\x01\x01\x05\x01\x01", // 鱦
+ 0x9c67: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01", // 鱧
+ 0x9c68: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x04\x03\x04\x05\x02\x05\x01\x03\x05\x02\x05\x01\x01", // 鱨
+ 0x9c69: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x01", // 鱩
+ 0x9c6a: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 鱪
+ 0x9c6b: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x04\x04\x03\x04\x05\x04\x05\x04\x04\x03\x05\x04", // 鱫
+ 0x9c6c: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02", // 鱬
+ 0x9c6d: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01", // 鱭
+ 0x9c6e: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x02\x01\x01\x01\x05\x02\x05\x01\x03\x04\x01\x01", // 鱮
+ 0x9c6f: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x02\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 鱯
+ 0x9c70: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x02\x02\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 鱰
+ 0x9c71: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x03\x01\x02\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 鱱
+ 0x9c72: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x05\x05\x02\x05\x03\x04\x01\x05\x04\x04\x05\x04\x04\x05", // 鱲
+ 0x9c73: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x03\x04", // 鱳
+ 0x9c74: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x02\x02\x05\x02\x02\x01\x01\x03\x04\x05\x03\x04", // 鱴
+ 0x9c75: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x04\x03\x01\x04\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 鱵
+ 0x9c76: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x01\x01\x01\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 鱶
+ 0x9c77: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x02\x05\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01\x01", // 鱷
+ 0x9c78: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 鱸
+ 0x9c79: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x02\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 鱹
+ 0x9c7a: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x05\x04\x01\x02\x05\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 鱺
+ 0x9c7b: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 鱻
+ 0x9c7c: "\x03\x05\x02\x05\x01\x02\x01\x01", // 鱼
+ 0x9c7d: "\x03\x05\x02\x05\x01\x02\x01\x01\x05\x03", // 鱽
+ 0x9c7e: "\x03\x05\x02\x05\x01\x02\x01\x01\x05\x01\x05", // 鱾
+ 0x9c7f: "\x03\x05\x02\x05\x01\x02\x01\x01\x01\x03\x05\x04", // 鱿
+ 0x9c80: "\x03\x05\x02\x05\x01\x02\x01\x01\x01\x05\x02\x05", // 鲀
+ 0x9c81: "\x03\x05\x02\x05\x01\x02\x01\x01\x02\x05\x01\x01", // 鲁
+ 0x9c82: "\x03\x05\x02\x05\x01\x02\x01\x01\x04\x01\x05\x03", // 鲂
+ 0x9c83: "\x03\x05\x02\x05\x01\x02\x01\x01\x05\x02\x01\x05", // 鲃
+ 0x9c84: "\x03\x05\x02\x05\x01\x02\x01\x01\x01\x02\x05\x01\x02", // 鲄
+ 0x9c85: "\x03\x05\x02\x05\x01\x02\x01\x01\x01\x03\x05\x04\x04", // 鲅
+ 0x9c86: "\x03\x05\x02\x05\x01\x02\x01\x01\x01\x04\x03\x01\x02", // 鲆
+ 0x9c87: "\x03\x05\x02\x05\x01\x02\x01\x01\x02\x01\x02\x05\x01", // 鲇
+ 0x9c88: "\x03\x05\x02\x05\x01\x02\x01\x01\x02\x01\x05\x01\x03", // 鲈
+ 0x9c89: "\x03\x05\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x01", // 鲉
+ 0x9c8a: "\x03\x05\x02\x05\x01\x02\x01\x01\x03\x01\x02\x01\x01", // 鲊
+ 0x9c8b: "\x03\x05\x02\x05\x01\x02\x01\x01\x03\x02\x01\x02\x04", // 鲋
+ 0x9c8c: "\x03\x05\x02\x05\x01\x02\x01\x01\x03\x02\x05\x01\x01", // 鲌
+ 0x9c8d: "\x03\x05\x02\x05\x01\x02\x01\x01\x03\x05\x05\x01\x05", // 鲍
+ 0x9c8e: "\x04\x04\x03\x04\x05\x03\x05\x02\x05\x01\x02\x01\x01", // 鲎
+ 0x9c8f: "\x03\x05\x02\x05\x01\x02\x01\x01\x05\x03\x02\x05\x04", // 鲏
+ 0x9c90: "\x03\x05\x02\x05\x01\x02\x01\x01\x05\x04\x02\x05\x01", // 鲐
+ 0x9c91: "\x03\x05\x02\x05\x01\x02\x01\x01\x01\x02\x01\x01\x02\x01", // 鲑
+ 0x9c92: "\x03\x05\x02\x05\x01\x02\x01\x01\x01\x02\x01\x02\x05\x01", // 鲒
+ 0x9c93: "\x03\x05\x02\x05\x01\x02\x01\x01\x01\x02\x01\x03\x01\x05", // 鲓
+ 0x9c94: "\x03\x05\x02\x05\x01\x02\x01\x01\x01\x03\x02\x05\x01\x01", // 鲔
+ 0x9c95: "\x03\x05\x02\x05\x01\x02\x01\x01\x01\x03\x02\x05\x02\x02", // 鲕
+ 0x9c96: "\x03\x05\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x05\x01", // 鲖
+ 0x9c97: "\x03\x05\x02\x05\x01\x02\x01\x01\x02\x05\x03\x04\x02\x02", // 鲗
+ 0x9c98: "\x03\x05\x02\x05\x01\x02\x01\x01\x03\x03\x01\x02\x05\x01", // 鲘
+ 0x9c99: "\x03\x05\x02\x05\x01\x02\x01\x01\x03\x04\x01\x01\x05\x04", // 鲙
+ 0x9c9a: "\x03\x05\x02\x05\x01\x02\x01\x01\x04\x01\x03\x04\x03\x02", // 鲚
+ 0x9c9b: "\x03\x05\x02\x05\x01\x02\x01\x01\x04\x01\x03\x04\x03\x04", // 鲛
+ 0x9c9c: "\x03\x05\x02\x05\x01\x02\x01\x01\x04\x03\x01\x01\x01\x02", // 鲜
+ 0x9c9d: "\x04\x03\x01\x01\x01\x03\x03\x05\x02\x05\x01\x02\x01\x01", // 鲝
+ 0x9c9e: "\x04\x03\x01\x01\x03\x04\x03\x05\x02\x05\x01\x02\x01\x01", // 鲞
+ 0x9c9f: "\x03\x05\x02\x05\x01\x02\x01\x01\x05\x01\x01\x01\x02\x04", // 鲟
+ 0x9ca0: "\x03\x05\x02\x05\x01\x02\x01\x01\x01\x02\x05\x01\x01\x03\x04", // 鲠
+ 0x9ca1: "\x03\x05\x02\x05\x01\x02\x01\x01\x01\x02\x05\x04\x02\x05\x04", // 鲡
+ 0x9ca2: "\x03\x05\x02\x05\x01\x02\x01\x01\x01\x05\x01\x02\x04\x05\x04", // 鲢
+ 0x9ca3: "\x03\x05\x02\x05\x01\x02\x01\x01\x02\x02\x05\x04\x01\x02\x01", // 鲣
+ 0x9ca4: "\x03\x05\x02\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x01\x01", // 鲤
+ 0x9ca5: "\x03\x05\x02\x05\x01\x02\x01\x01\x02\x05\x01\x01\x01\x02\x04", // 鲥
+ 0x9ca6: "\x03\x05\x02\x05\x01\x02\x01\x01\x03\x05\x04\x01\x02\x03\x04", // 鲦
+ 0x9ca7: "\x03\x05\x02\x05\x01\x02\x01\x01\x03\x05\x05\x04\x02\x03\x04", // 鲧
+ 0x9ca8: "\x04\x04\x01\x02\x03\x04\x03\x03\x05\x02\x05\x01\x02\x01\x01", // 鲨
+ 0x9ca9: "\x03\x05\x02\x05\x01\x02\x01\x01\x04\x04\x05\x01\x01\x03\x05", // 鲩
+ 0x9caa: "\x03\x05\x02\x05\x01\x02\x01\x01\x05\x01\x01\x03\x02\x05\x01", // 鲪
+ 0x9cab: "\x03\x05\x02\x05\x01\x02\x01\x01\x05\x01\x01\x05\x04\x05\x02", // 鲫
+ 0x9cac: "\x03\x05\x02\x05\x01\x02\x01\x01\x05\x04\x02\x05\x01\x01\x02", // 鲬
+ 0x9cad: "\x03\x05\x02\x05\x01\x02\x01\x01\x01\x01\x02\x01\x02\x05\x01\x01", // 鲭
+ 0x9cae: "\x03\x05\x02\x05\x01\x02\x01\x01\x01\x02\x01\x03\x04\x03\x05\x04", // 鲮
+ 0x9caf: "\x03\x05\x02\x05\x01\x02\x01\x01\x01\x02\x02\x01\x01\x01\x03\x04", // 鲯
+ 0x9cb0: "\x03\x05\x02\x05\x01\x02\x01\x01\x01\x02\x02\x01\x01\x01\x05\x04", // 鲰
+ 0x9cb1: "\x03\x05\x02\x05\x01\x02\x01\x01\x02\x01\x01\x01\x02\x01\x01\x01", // 鲱
+ 0x9cb2: "\x03\x05\x02\x05\x01\x02\x01\x01\x02\x05\x01\x01\x01\x05\x03\x05", // 鲲
+ 0x9cb3: "\x03\x05\x02\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01", // 鲳
+ 0x9cb4: "\x03\x05\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x02\x05\x01\x01", // 鲴
+ 0x9cb5: "\x03\x05\x02\x05\x01\x02\x01\x01\x03\x02\x01\x05\x01\x01\x03\x05", // 鲵
+ 0x9cb6: "\x03\x05\x02\x05\x01\x02\x01\x01\x03\x04\x04\x05\x04\x05\x04\x04", // 鲶
+ 0x9cb7: "\x03\x05\x02\x05\x01\x02\x01\x01\x03\x05\x01\x02\x01\x02\x05\x01", // 鲷
+ 0x9cb8: "\x03\x05\x02\x05\x01\x02\x01\x01\x04\x01\x02\x05\x01\x02\x03\x04", // 鲸
+ 0x9cb9: "\x03\x05\x02\x05\x01\x02\x01\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 鲹
+ 0x9cba: "\x03\x05\x02\x05\x01\x02\x01\x01\x05\x03\x02\x05\x01\x02\x01\x04", // 鲺
+ 0x9cbb: "\x03\x05\x02\x05\x01\x02\x01\x01\x05\x05\x05\x02\x05\x01\x02\x01", // 鲻
+ 0x9cbc: "\x03\x05\x02\x05\x01\x02\x01\x01\x01\x02\x01\x02\x02\x02\x05\x03\x04", // 鲼
+ 0x9cbd: "\x03\x05\x02\x05\x01\x02\x01\x01\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 鲽
+ 0x9cbe: "\x03\x05\x02\x05\x01\x02\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 鲾
+ 0x9cbf: "\x03\x05\x02\x05\x01\x02\x01\x01\x02\x04\x03\x04\x05\x01\x01\x05\x04", // 鲿
+ 0x9cc0: "\x03\x05\x02\x05\x01\x02\x01\x01\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 鳀
+ 0x9cc1: "\x03\x05\x02\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 鳁
+ 0x9cc2: "\x03\x05\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x01\x01\x05\x03\x04", // 鳂
+ 0x9cc3: "\x03\x05\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 鳃
+ 0x9cc4: "\x03\x05\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x05\x01\x01\x01\x05", // 鳄
+ 0x9cc5: "\x03\x05\x02\x05\x01\x02\x01\x01\x03\x01\x02\x03\x04\x04\x03\x03\x04", // 鳅
+ 0x9cc6: "\x03\x05\x02\x05\x01\x02\x01\x01\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 鳆
+ 0x9cc7: "\x03\x05\x02\x05\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x01\x02\x01", // 鳇
+ 0x9cc8: "\x03\x05\x02\x05\x01\x02\x01\x01\x03\x02\x05\x01\x01\x02\x05\x03\x04", // 鳈
+ 0x9cc9: "\x03\x05\x02\x05\x01\x02\x01\x01\x04\x01\x02\x03\x05\x04\x01\x02\x04", // 鳉
+ 0x9cca: "\x03\x05\x02\x05\x01\x02\x01\x01\x04\x05\x01\x03\x02\x05\x01\x02\x02", // 鳊
+ 0x9ccb: "\x03\x05\x02\x05\x01\x02\x01\x01\x05\x04\x04\x02\x05\x01\x02\x01\x04", // 鳋
+ 0x9ccc: "\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04\x03\x05\x02\x05\x01\x02\x01\x01", // 鳌
+ 0x9ccd: "\x03\x05\x02\x05\x01\x02\x01\x01\x01\x02\x01\x03\x03\x05\x02\x05\x01\x01", // 鳍
+ 0x9cce: "\x03\x05\x02\x05\x01\x02\x01\x01\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 鳎
+ 0x9ccf: "\x03\x05\x02\x05\x01\x02\x01\x01\x02\x05\x02\x02\x01\x02\x03\x03\x04\x04", // 鳏
+ 0x9cd0: "\x03\x05\x02\x05\x01\x02\x01\x01\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02", // 鳐
+ 0x9cd1: "\x03\x05\x02\x05\x01\x02\x01\x01\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03", // 鳑
+ 0x9cd2: "\x03\x05\x02\x05\x01\x02\x01\x01\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 鳒
+ 0x9cd3: "\x03\x05\x02\x05\x01\x02\x01\x01\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x03", // 鳓
+ 0x9cd4: "\x03\x05\x02\x05\x01\x02\x01\x01\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 鳔
+ 0x9cd5: "\x03\x05\x02\x05\x01\x02\x01\x01\x01\x04\x05\x02\x04\x04\x04\x04\x05\x01\x01", // 鳕
+ 0x9cd6: "\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04\x03\x05\x02\x05\x01\x02\x01\x01", // 鳖
+ 0x9cd7: "\x03\x05\x02\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 鳗
+ 0x9cd8: "\x03\x01\x05\x05\x04\x01\x04\x03\x01\x03\x04\x03\x05\x02\x05\x01\x02\x01\x01", // 鳘
+ 0x9cd9: "\x03\x05\x02\x05\x01\x02\x01\x01\x04\x01\x03\x05\x01\x01\x02\x05\x01\x01\x02", // 鳙
+ 0x9cda: "\x03\x05\x02\x05\x01\x02\x01\x01\x05\x01\x03\x01\x01\x02\x03\x04\x01\x02\x04", // 鳚
+ 0x9cdb: "\x03\x05\x02\x05\x01\x02\x01\x01\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01", // 鳛
+ 0x9cdc: "\x03\x05\x02\x05\x01\x02\x01\x01\x01\x03\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04", // 鳜
+ 0x9cdd: "\x03\x05\x02\x05\x01\x02\x01\x01\x04\x03\x01\x01\x01\x02\x04\x03\x01\x02\x05\x01", // 鳝
+ 0x9cde: "\x03\x05\x02\x05\x01\x02\x01\x01\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 鳞
+ 0x9cdf: "\x03\x05\x02\x05\x01\x02\x01\x01\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x02\x04", // 鳟
+ 0x9ce0: "\x03\x05\x02\x05\x01\x02\x01\x01\x01\x02\x02\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 鳠
+ 0x9ce1: "\x03\x05\x02\x05\x01\x02\x01\x01\x01\x03\x01\x02\x05\x01\x05\x03\x04\x04\x05\x04\x04", // 鳡
+ 0x9ce2: "\x03\x05\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01", // 鳢
+ 0x9ce3: "\x03\x05\x02\x05\x01\x02\x01\x01\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 鳣
+ 0x9ce4: "\x03\x05\x02\x05\x01\x02\x01\x01\x03\x01\x04\x03\x01\x04\x04\x04\x05\x02\x05\x01\x05\x01", // 鳤
+ 0x9ce5: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鳥
+ 0x9ce6: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x05", // 鳦
+ 0x9ce7: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x05", // 鳧
+ 0x9ce8: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x05\x03", // 鳨
+ 0x9ce9: "\x03\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鳩
+ 0x9cea: "\x02\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鳪
+ 0x9ceb: "\x01\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鳫
+ 0x9cec: "\x03\x02\x05\x01\x01\x01\x05\x03\x05", // 鳬
+ 0x9ced: "\x05\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鳭
+ 0x9cee: "\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鳮
+ 0x9cef: "\x03\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鳯
+ 0x9cf0: "\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鳰
+ 0x9cf1: "\x01\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鳱
+ 0x9cf2: "\x05\x01\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鳲
+ 0x9cf3: "\x03\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鳳
+ 0x9cf4: "\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鳴
+ 0x9cf5: "\x05\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鳵
+ 0x9cf6: "\x01\x05\x04\x03\x01\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鳶
+ 0x9cf7: "\x01\x02\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鳷
+ 0x9cf8: "\x04\x05\x01\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鳸
+ 0x9cf9: "\x03\x04\x04\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鳹
+ 0x9cfa: "\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鳺
+ 0x9cfb: "\x03\x04\x05\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鳻
+ 0x9cfc: "\x04\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鳼
+ 0x9cfd: "\x01\x01\x03\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鳽
+ 0x9cfe: "\x01\x02\x05\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鳾
+ 0x9cff: "\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鳿
+ 0x9d00: "\x01\x03\x02\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴀
+ 0x9d01: "\x03\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴁
+ 0x9d02: "\x05\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴂
+ 0x9d03: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x05\x01\x03\x04", // 鴃
+ 0x9d04: "\x01\x03\x05\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴄
+ 0x9d05: "\x03\x05\x04\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴅
+ 0x9d06: "\x04\x05\x03\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴆
+ 0x9d07: "\x03\x05\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴇
+ 0x9d08: "\x01\x03\x03\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴈
+ 0x9d09: "\x01\x05\x02\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴉
+ 0x9d0a: "\x01\x02\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴊
+ 0x9d0b: "\x04\x01\x05\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴋
+ 0x9d0c: "\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴌
+ 0x9d0d: "\x04\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴍
+ 0x9d0e: "\x01\x03\x04\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴎
+ 0x9d0f: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x02\x01\x05\x04", // 鴏
+ 0x9d10: "\x05\x03\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴐
+ 0x9d11: "\x05\x03\x01\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴑
+ 0x9d12: "\x03\x04\x04\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴒
+ 0x9d13: "\x04\x05\x04\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴓
+ 0x9d14: "\x03\x04\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴔
+ 0x9d15: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x04\x04\x05\x03\x05", // 鴕
+ 0x9d16: "\x05\x01\x05\x01\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴖
+ 0x9d17: "\x04\x01\x04\x03\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴗
+ 0x9d18: "\x05\x04\x01\x03\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴘
+ 0x9d19: "\x03\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴙
+ 0x9d1a: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x01\x02\x05\x01\x02", // 鴚
+ 0x9d1b: "\x03\x05\x04\x05\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴛
+ 0x9d1c: "\x02\x01\x02\x01\x03\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴜
+ 0x9d1d: "\x03\x05\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴝
+ 0x9d1e: "\x02\x05\x01\x01\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴞
+ 0x9d1f: "\x03\x05\x01\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴟
+ 0x9d20: "\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴠
+ 0x9d21: "\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴡
+ 0x9d22: "\x05\x05\x04\x05\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴢
+ 0x9d23: "\x01\x02\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴣
+ 0x9d24: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x05\x04\x04\x04", // 鴤
+ 0x9d25: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x04\x04\x05\x03\x04", // 鴥
+ 0x9d26: "\x02\x05\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴦
+ 0x9d27: "\x04\x04\x05\x03\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴧
+ 0x9d28: "\x02\x05\x01\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴨
+ 0x9d29: "\x03\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴩
+ 0x9d2a: "\x04\x04\x05\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴪
+ 0x9d2b: "\x02\x05\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴫
+ 0x9d2c: "\x04\x04\x03\x04\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴬
+ 0x9d2d: "\x03\x02\x05\x01\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴭
+ 0x9d2e: "\x01\x03\x04\x01\x01\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴮
+ 0x9d2f: "\x01\x03\x02\x05\x02\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴯
+ 0x9d30: "\x03\x01\x02\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴰
+ 0x9d31: "\x01\x02\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴱
+ 0x9d32: "\x03\x05\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴲
+ 0x9d33: "\x04\x04\x05\x05\x03\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴳
+ 0x9d34: "\x03\x03\x02\x01\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴴
+ 0x9d35: "\x03\x04\x01\x05\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴵
+ 0x9d36: "\x01\x02\x01\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴶
+ 0x9d37: "\x01\x03\x05\x04\x02\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴷
+ 0x9d38: "\x03\x01\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴸
+ 0x9d39: "\x04\x03\x01\x01\x01\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴹
+ 0x9d3a: "\x01\x05\x01\x05\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴺
+ 0x9d3b: "\x04\x04\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴻
+ 0x9d3c: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x05\x04\x02\x05\x01", // 鴼
+ 0x9d3d: "\x05\x03\x01\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴽
+ 0x9d3e: "\x05\x04\x03\x01\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴾
+ 0x9d3f: "\x03\x04\x01\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鴿
+ 0x9d40: "\x03\x02\x03\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵀
+ 0x9d41: "\x04\x01\x03\x04\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵁
+ 0x9d42: "\x03\x02\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵂
+ 0x9d43: "\x03\x03\x05\x04\x01\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵃
+ 0x9d44: "\x01\x05\x04\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵄
+ 0x9d45: "\x03\x05\x04\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵅
+ 0x9d46: "\x03\x03\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x01\x01\x02", // 鵆
+ 0x9d47: "\x03\x01\x01\x02\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵇
+ 0x9d48: "\x01\x02\x02\x01\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵈
+ 0x9d49: "\x04\x01\x02\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵉
+ 0x9d4a: "\x01\x03\x04\x03\x04\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵊
+ 0x9d4b: "\x05\x01\x05\x04\x05\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵋
+ 0x9d4c: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x04\x01\x01\x02\x03\x04", // 鵌
+ 0x9d4d: "\x04\x04\x05\x01\x01\x03\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵍
+ 0x9d4e: "\x03\x04\x04\x03\x05\x03\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵎
+ 0x9d4f: "\x01\x02\x05\x01\x01\x02\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵏
+ 0x9d50: "\x01\x02\x03\x04\x03\x04\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵐
+ 0x9d51: "\x02\x05\x01\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵑
+ 0x9d52: "\x03\x04\x03\x04\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵒
+ 0x9d53: "\x01\x02\x04\x05\x05\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵓
+ 0x9d54: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x05\x04\x03\x04\x03\x05\x04", // 鵔
+ 0x9d55: "\x05\x04\x03\x04\x03\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵕
+ 0x9d56: "\x05\x01\x01\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵖
+ 0x9d57: "\x03\x04\x01\x03\x02\x05\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵗
+ 0x9d58: "\x05\x01\x01\x03\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵘
+ 0x9d59: "\x02\x05\x01\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵙
+ 0x9d5a: "\x03\x01\x02\x03\x04\x03\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵚
+ 0x9d5b: "\x01\x05\x05\x05\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵛
+ 0x9d5c: "\x04\x03\x05\x01\x05\x02\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵜
+ 0x9d5d: "\x03\x01\x02\x01\x05\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵝
+ 0x9d5e: "\x03\x01\x02\x01\x05\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵞
+ 0x9d5f: "\x03\x05\x03\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵟
+ 0x9d60: "\x03\x01\x02\x01\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵠
+ 0x9d61: "\x01\x01\x02\x01\x02\x01\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵡
+ 0x9d62: "\x03\x02\x05\x01\x01\x01\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵢
+ 0x9d63: "\x01\x02\x05\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵣
+ 0x9d64: "\x03\x05\x03\x05\x01\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵤
+ 0x9d65: "\x04\x03\x01\x01\x02\x02\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵥
+ 0x9d66: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x05\x01\x01\x02\x04\x01\x03\x04", // 鵦
+ 0x9d67: "\x04\x03\x01\x01\x03\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵧
+ 0x9d68: "\x03\x04\x01\x01\x02\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵨
+ 0x9d69: "\x03\x05\x01\x01\x05\x02\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵩
+ 0x9d6a: "\x01\x03\x04\x02\x05\x01\x01\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵪
+ 0x9d6b: "\x02\x01\x02\x05\x01\x01\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵫
+ 0x9d6c: "\x03\x05\x01\x01\x03\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵬
+ 0x9d6d: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵭
+ 0x9d6e: "\x03\x05\x03\x02\x01\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵮
+ 0x9d6f: "\x03\x02\x05\x01\x01\x03\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵯
+ 0x9d70: "\x03\x05\x01\x02\x01\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵰
+ 0x9d71: "\x01\x02\x01\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵱
+ 0x9d72: "\x01\x02\x02\x01\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵲
+ 0x9d73: "\x04\x05\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵳
+ 0x9d74: "\x03\x05\x04\x03\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵴
+ 0x9d75: "\x03\x05\x02\x05\x01\x03\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵵
+ 0x9d76: "\x01\x02\x01\x05\x05\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵶
+ 0x9d77: "\x04\x04\x05\x03\x05\x04\x05\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵷
+ 0x9d78: "\x01\x03\x04\x01\x02\x05\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵸
+ 0x9d79: "\x03\x01\x02\x03\x04\x03\x05\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵹
+ 0x9d7a: "\x04\x01\x03\x02\x03\x05\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵺
+ 0x9d7b: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 鵻
+ 0x9d7c: "\x04\x04\x05\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵼
+ 0x9d7d: "\x05\x04\x05\x04\x05\x04\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵽
+ 0x9d7e: "\x02\x05\x01\x01\x01\x05\x03\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鵾
+ 0x9d7f: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x02\x05\x01\x01\x03\x01\x03\x02", // 鵿
+ 0x9d80: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x01\x02\x02\x01\x01\x01\x03\x04", // 鶀
+ 0x9d81: "\x04\x01\x02\x05\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶁
+ 0x9d82: "\x03\x02\x01\x05\x01\x01\x03\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶂
+ 0x9d83: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x02\x01\x05\x01\x01\x03\x05", // 鶃
+ 0x9d84: "\x01\x01\x02\x01\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶄
+ 0x9d85: "\x05\x05\x05\x02\x05\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶅
+ 0x9d86: "\x01\x03\x04\x03\x04\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶆
+ 0x9d87: "\x01\x02\x05\x01\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶇
+ 0x9d88: "\x01\x05\x01\x01\x02\x05\x03\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶈
+ 0x9d89: "\x04\x01\x02\x05\x01\x05\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶉
+ 0x9d8a: "\x04\x01\x03\x05\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶊
+ 0x9d8b: "\x05\x01\x03\x01\x02\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶋
+ 0x9d8c: "\x05\x01\x03\x05\x02\x02\x05\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶌
+ 0x9d8d: "\x02\x05\x01\x01\x03\x05\x03\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶍
+ 0x9d8e: "\x04\x04\x05\x01\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶎
+ 0x9d8f: "\x03\x04\x04\x03\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶏
+ 0x9d90: "\x01\x02\x03\x04\x04\x04\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶐
+ 0x9d91: "\x04\x03\x03\x04\x04\x03\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶑
+ 0x9d92: "\x01\x02\x05\x01\x02\x03\x04\x05\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶒
+ 0x9d93: "\x01\x02\x02\x02\x05\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶓
+ 0x9d94: "\x05\x04\x05\x02\x03\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶔
+ 0x9d95: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶕
+ 0x9d96: "\x03\x01\x02\x03\x04\x04\x03\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶖
+ 0x9d97: "\x02\x05\x01\x01\x01\x02\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶗
+ 0x9d98: "\x01\x02\x02\x05\x01\x03\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶘
+ 0x9d99: "\x04\x01\x04\x03\x04\x05\x02\x05\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶙
+ 0x9d9a: "\x02\x05\x01\x02\x05\x01\x01\x01\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶚
+ 0x9d9b: "\x01\x05\x03\x05\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶛
+ 0x9d9c: "\x01\x02\x02\x05\x04\x05\x02\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶜
+ 0x9d9d: "\x01\x02\x05\x01\x02\x05\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶝
+ 0x9d9e: "\x03\x03\x01\x02\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶞
+ 0x9d9f: "\x04\x04\x05\x03\x04\x01\x03\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶟
+ 0x9da0: "\x01\x02\x05\x01\x01\x05\x03\x01\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶠
+ 0x9da1: "\x02\x05\x01\x01\x03\x05\x03\x04\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶡
+ 0x9da2: "\x03\x04\x04\x03\x01\x01\x03\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶢
+ 0x9da3: "\x04\x05\x01\x03\x02\x05\x01\x02\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶣
+ 0x9da4: "\x04\x05\x01\x02\x05\x01\x01\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶤
+ 0x9da5: "\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶥
+ 0x9da6: "\x01\x02\x02\x05\x01\x03\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶦
+ 0x9da7: "\x01\x02\x02\x02\x05\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶧
+ 0x9da8: "\x05\x05\x01\x03\x05\x03\x03\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶨
+ 0x9da9: "\x05\x04\x05\x02\x03\x03\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶩
+ 0x9daa: "\x02\x05\x01\x01\x01\x01\x03\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶪
+ 0x9dab: "\x01\x02\x05\x04\x03\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶫
+ 0x9dac: "\x03\x04\x04\x05\x01\x01\x03\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶬
+ 0x9dad: "\x05\x05\x04\x04\x04\x04\x04\x01\x05\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶭
+ 0x9dae: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶮
+ 0x9daf: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶯
+ 0x9db0: "\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶰
+ 0x9db1: "\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶱
+ 0x9db2: "\x03\x04\x05\x04\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶲
+ 0x9db3: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x02\x05\x01\x05\x01\x01\x02\x05\x02", // 鶳
+ 0x9db4: "\x04\x05\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶴
+ 0x9db5: "\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶵
+ 0x9db6: "\x04\x01\x03\x05\x01\x01\x02\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶶
+ 0x9db7: "\x04\x04\x05\x01\x01\x01\x02\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶷
+ 0x9db8: "\x05\x01\x05\x04\x01\x05\x01\x05\x04\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶸
+ 0x9db9: "\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶹
+ 0x9dba: "\x04\x01\x03\x04\x03\x04\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶺
+ 0x9dbb: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶻
+ 0x9dbc: "\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶼
+ 0x9dbd: "\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶽
+ 0x9dbe: "\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶾
+ 0x9dbf: "\x04\x03\x01\x05\x05\x04\x05\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鶿
+ 0x9dc0: "\x04\x03\x01\x05\x05\x04\x05\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷀
+ 0x9dc1: "\x04\x03\x01\x03\x04\x02\x05\x02\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷁
+ 0x9dc2: "\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷂
+ 0x9dc3: "\x02\x05\x01\x01\x04\x04\x05\x05\x03\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷃
+ 0x9dc4: "\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷄
+ 0x9dc5: "\x01\x02\x05\x02\x02\x01\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷅
+ 0x9dc6: "\x03\x05\x02\x05\x01\x01\x01\x05\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷆
+ 0x9dc7: "\x01\x02\x01\x04\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x05\x05\x04", // 鷇
+ 0x9dc8: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x03\x02\x01\x05\x03\x01\x05\x03\x05", // 鷈
+ 0x9dc9: "\x03\x03\x02\x01\x05\x03\x01\x05\x03\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷉
+ 0x9dca: "\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷊
+ 0x9dcb: "\x01\x02\x02\x03\x04\x01\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷋
+ 0x9dcc: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 鷌
+ 0x9dcd: "\x03\x02\x05\x01\x01\x01\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷍
+ 0x9dce: "\x03\x02\x05\x01\x01\x01\x03\x04\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷎
+ 0x9dcf: "\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷏
+ 0x9dd0: "\x02\x05\x01\x01\x01\x03\x01\x01\x05\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷐
+ 0x9dd1: "\x03\x01\x04\x03\x01\x04\x04\x01\x04\x03\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷑
+ 0x9dd2: "\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷒
+ 0x9dd3: "\x04\x01\x03\x01\x02\x02\x01\x04\x04\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷓
+ 0x9dd4: "\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷔
+ 0x9dd5: "\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷕
+ 0x9dd6: "\x01\x03\x01\x01\x03\x04\x05\x03\x05\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷖
+ 0x9dd7: "\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷗
+ 0x9dd8: "\x01\x02\x05\x01\x02\x03\x04\x03\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷘
+ 0x9dd9: "\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷙
+ 0x9dda: "\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷚
+ 0x9ddb: "\x04\x01\x03\x05\x01\x01\x02\x05\x01\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷛
+ 0x9ddc: "\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷜
+ 0x9ddd: "\x02\x05\x01\x01\x01\x02\x02\x01\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷝
+ 0x9dde: "\x01\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷞
+ 0x9ddf: "\x04\x01\x05\x03\x03\x01\x03\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷟
+ 0x9de0: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷠
+ 0x9de1: "\x03\x01\x01\x02\x02\x02\x02\x01\x04\x04\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷡
+ 0x9de2: "\x01\x03\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷢
+ 0x9de3: "\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷣
+ 0x9de4: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷤
+ 0x9de5: "\x05\x05\x04\x04\x04\x04\x05\x05\x04\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷥
+ 0x9de6: "\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷦
+ 0x9de7: "\x01\x02\x01\x04\x05\x01\x02\x05\x01\x04\x03\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷧
+ 0x9de8: "\x01\x02\x02\x01\x01\x02\x02\x01\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷨
+ 0x9de9: "\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷩
+ 0x9dea: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x04\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷪
+ 0x9deb: "\x05\x01\x01\x02\x03\x02\x01\x01\x05\x05\x02\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷫
+ 0x9dec: "\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷬
+ 0x9ded: "\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷭
+ 0x9dee: "\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷮
+ 0x9def: "\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷯
+ 0x9df0: "\x01\x02\x02\x01\x02\x05\x01\x02\x01\x01\x03\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷰
+ 0x9df1: "\x03\x02\x05\x01\x01\x01\x04\x01\x03\x04\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷱
+ 0x9df2: "\x04\x01\x02\x05\x01\x02\x03\x04\x01\x03\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷲
+ 0x9df3: "\x02\x05\x01\x01\x02\x05\x01\x01\x03\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷳
+ 0x9df4: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷴
+ 0x9df5: "\x05\x01\x03\x01\x02\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷵
+ 0x9df6: "\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷶
+ 0x9df7: "\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x02\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷷
+ 0x9df8: "\x05\x04\x05\x02\x03\x02\x05\x03\x04\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷸
+ 0x9df9: "\x04\x01\x03\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷹
+ 0x9dfa: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x04\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷺
+ 0x9dfb: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x04\x01\x02\x05\x01\x05\x02\x01\x03\x01\x03\x04", // 鷻
+ 0x9dfc: "\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷼
+ 0x9dfd: "\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷽
+ 0x9dfe: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x04\x05\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷾
+ 0x9dff: "\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鷿
+ 0x9e00: "\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鸀
+ 0x9e01: "\x04\x01\x05\x02\x05\x01\x03\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x05\x04", // 鸁
+ 0x9e02: "\x04\x04\x01\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鸂
+ 0x9e03: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01\x05\x03\x04", // 鸃
+ 0x9e04: "\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鸄
+ 0x9e05: "\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鸅
+ 0x9e06: "\x02\x01\x05\x03\x01\x05\x02\x05\x01\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鸆
+ 0x9e07: "\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鸇
+ 0x9e08: "\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鸈
+ 0x9e09: "\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x05\x03\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鸉
+ 0x9e0a: "\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鸊
+ 0x9e0b: "\x04\x04\x05\x04\x05\x04\x04\x02\x05\x02\x02\x01\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鸋
+ 0x9e0c: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x01\x02\x02\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 鸌
+ 0x9e0d: "\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鸍
+ 0x9e0e: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鸎
+ 0x9e0f: "\x01\x02\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鸏
+ 0x9e10: "\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鸐
+ 0x9e11: "\x03\x05\x03\x04\x01\x01\x01\x02\x05\x01\x01\x03\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鸑
+ 0x9e12: "\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鸒
+ 0x9e13: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鸓
+ 0x9e14: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x02\x05\x01\x01\x01\x02\x02\x01\x03\x04\x02\x04\x01\x03\x04", // 鸔
+ 0x9e15: "\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鸕
+ 0x9e16: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鸖
+ 0x9e17: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鸗
+ 0x9e18: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鸘
+ 0x9e19: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鸙
+ 0x9e1a: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x05\x03\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鸚
+ 0x9e1b: "\x01\x02\x02\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鸛
+ 0x9e1c: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鸜
+ 0x9e1d: "\x01\x02\x05\x04\x01\x02\x05\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鸝
+ 0x9e1e: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 鸞
+ 0x9e1f: "\x03\x05\x04\x05\x01", // 鸟
+ 0x9e20: "\x03\x05\x03\x05\x04\x05\x01", // 鸠
+ 0x9e21: "\x05\x04\x03\x05\x04\x05\x01", // 鸡
+ 0x9e22: "\x01\x05\x04\x03\x05\x04\x05\x01", // 鸢
+ 0x9e23: "\x02\x05\x01\x03\x05\x04\x05\x01", // 鸣
+ 0x9e24: "\x05\x01\x03\x03\x05\x04\x05\x01", // 鸤
+ 0x9e25: "\x01\x03\x04\x05\x03\x05\x04\x05\x01", // 鸥
+ 0x9e26: "\x01\x05\x02\x03\x03\x05\x04\x05\x01", // 鸦
+ 0x9e27: "\x03\x04\x05\x05\x03\x05\x04\x05\x01", // 鸧
+ 0x9e28: "\x03\x05\x01\x02\x03\x05\x04\x05\x01", // 鸨
+ 0x9e29: "\x04\x05\x03\x05\x03\x05\x04\x05\x01", // 鸩
+ 0x9e2a: "\x01\x02\x02\x05\x01\x03\x05\x04\x05\x01", // 鸪
+ 0x9e2b: "\x01\x05\x02\x03\x04\x03\x05\x04\x05\x01", // 鸫
+ 0x9e2c: "\x02\x01\x05\x01\x03\x03\x05\x04\x05\x01", // 鸬
+ 0x9e2d: "\x02\x05\x01\x01\x02\x03\x05\x04\x05\x01", // 鸭
+ 0x9e2e: "\x02\x05\x01\x01\x05\x03\x05\x04\x05\x01", // 鸮
+ 0x9e2f: "\x02\x05\x01\x03\x04\x03\x05\x04\x05\x01", // 鸯
+ 0x9e30: "\x03\x04\x04\x05\x04\x03\x05\x04\x05\x01", // 鸰
+ 0x9e31: "\x03\x05\x01\x05\x04\x03\x05\x04\x05\x01", // 鸱
+ 0x9e32: "\x03\x05\x02\x05\x01\x03\x05\x04\x05\x01", // 鸲
+ 0x9e33: "\x03\x05\x04\x05\x05\x03\x05\x04\x05\x01", // 鸳
+ 0x9e34: "\x04\x04\x03\x04\x05\x03\x05\x04\x05\x01", // 鸴
+ 0x9e35: "\x03\x05\x04\x05\x01\x04\x04\x05\x03\x05", // 鸵
+ 0x9e36: "\x05\x05\x05\x05\x01\x03\x05\x04\x05\x01", // 鸶
+ 0x9e37: "\x01\x02\x01\x03\x05\x04\x03\x05\x04\x05\x01", // 鸷
+ 0x9e38: "\x01\x03\x02\x05\x02\x02\x03\x05\x04\x05\x01", // 鸸
+ 0x9e39: "\x03\x01\x02\x02\x05\x01\x03\x05\x04\x05\x01", // 鸹
+ 0x9e3a: "\x03\x02\x01\x02\x03\x04\x03\x05\x04\x05\x01", // 鸺
+ 0x9e3b: "\x03\x03\x02\x01\x01\x02\x03\x05\x04\x05\x01", // 鸻
+ 0x9e3c: "\x03\x03\x05\x04\x01\x04\x03\x05\x04\x05\x01", // 鸼
+ 0x9e3d: "\x03\x04\x01\x02\x05\x01\x03\x05\x04\x05\x01", // 鸽
+ 0x9e3e: "\x04\x01\x02\x02\x03\x04\x03\x05\x04\x05\x01", // 鸾
+ 0x9e3f: "\x04\x04\x01\x01\x02\x01\x03\x05\x04\x05\x01", // 鸿
+ 0x9e40: "\x01\x02\x03\x04\x03\x04\x01\x03\x05\x04\x05\x01", // 鹀
+ 0x9e41: "\x01\x02\x04\x05\x05\x02\x01\x03\x05\x04\x05\x01", // 鹁
+ 0x9e42: "\x01\x02\x05\x04\x02\x05\x04\x03\x05\x04\x05\x01", // 鹂
+ 0x9e43: "\x02\x05\x01\x02\x05\x01\x01\x03\x05\x04\x05\x01", // 鹃
+ 0x9e44: "\x03\x01\x02\x01\x02\x05\x01\x03\x05\x04\x05\x01", // 鹄
+ 0x9e45: "\x03\x01\x02\x01\x05\x03\x04\x03\x05\x04\x05\x01", // 鹅
+ 0x9e46: "\x03\x04\x03\x04\x02\x05\x01\x03\x05\x04\x05\x01", // 鹆
+ 0x9e47: "\x04\x02\x05\x01\x02\x03\x04\x03\x05\x04\x05\x01", // 鹇
+ 0x9e48: "\x04\x03\x05\x01\x05\x02\x03\x03\x05\x04\x05\x01", // 鹈
+ 0x9e49: "\x01\x01\x02\x01\x02\x01\x05\x04\x03\x05\x04\x05\x01", // 鹉
+ 0x9e4a: "\x01\x02\x02\x01\x02\x05\x01\x01\x03\x05\x04\x05\x01", // 鹊
+ 0x9e4b: "\x01\x02\x02\x02\x05\x01\x02\x01\x03\x05\x04\x05\x01", // 鹋
+ 0x9e4c: "\x01\x03\x04\x02\x05\x01\x01\x05\x03\x05\x04\x05\x01", // 鹌
+ 0x9e4d: "\x02\x05\x01\x01\x01\x05\x03\x05\x03\x05\x04\x05\x01", // 鹍
+ 0x9e4e: "\x03\x02\x05\x01\x01\x03\x01\x02\x03\x05\x04\x05\x01", // 鹎
+ 0x9e4f: "\x03\x05\x01\x01\x03\x05\x01\x01\x03\x05\x04\x05\x01", // 鹏
+ 0x9e50: "\x03\x05\x03\x02\x01\x05\x01\x01\x03\x05\x04\x05\x01", // 鹐
+ 0x9e51: "\x04\x01\x02\x05\x01\x05\x02\x01\x03\x05\x04\x05\x01", // 鹑
+ 0x9e52: "\x04\x01\x03\x05\x01\x01\x03\x04\x03\x05\x04\x05\x01", // 鹒
+ 0x9e53: "\x04\x04\x05\x03\x05\x04\x05\x05\x03\x05\x04\x05\x01", // 鹓
+ 0x9e54: "\x05\x01\x01\x02\x03\x02\x03\x04\x03\x05\x04\x05\x01", // 鹔
+ 0x9e55: "\x01\x02\x02\x05\x01\x03\x05\x01\x01\x03\x05\x04\x05\x01", // 鹕
+ 0x9e56: "\x02\x05\x01\x01\x03\x05\x03\x04\x05\x03\x05\x04\x05\x01", // 鹖
+ 0x9e57: "\x02\x05\x01\x02\x05\x01\x01\x01\x05\x03\x05\x04\x05\x01", // 鹗
+ 0x9e58: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x03\x05\x04\x05\x01", // 鹘
+ 0x9e59: "\x03\x01\x02\x03\x04\x04\x03\x03\x04\x03\x05\x04\x05\x01", // 鹙
+ 0x9e5a: "\x04\x03\x01\x05\x05\x04\x05\x05\x04\x03\x05\x04\x05\x01", // 鹚
+ 0x9e5b: "\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x05\x04\x05\x01", // 鹛
+ 0x9e5c: "\x05\x04\x05\x02\x03\x03\x01\x03\x04\x03\x05\x04\x05\x01", // 鹜
+ 0x9e5d: "\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x03\x05\x04\x05\x01", // 鹝
+ 0x9e5e: "\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02\x03\x05\x04\x05\x01", // 鹞
+ 0x9e5f: "\x03\x04\x05\x04\x05\x04\x01\x05\x04\x01\x03\x05\x04\x05\x01", // 鹟
+ 0x9e60: "\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01\x03\x05\x04\x05\x01", // 鹠
+ 0x9e61: "\x04\x01\x03\x04\x03\x04\x02\x05\x01\x01\x03\x05\x04\x05\x01", // 鹡
+ 0x9e62: "\x04\x03\x01\x03\x04\x02\x05\x02\x02\x01\x03\x05\x04\x05\x01", // 鹢
+ 0x9e63: "\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04\x03\x05\x04\x05\x01", // 鹣
+ 0x9e64: "\x04\x05\x03\x02\x04\x01\x01\x01\x02\x01\x03\x05\x04\x05\x01", // 鹤
+ 0x9e65: "\x01\x03\x01\x01\x03\x04\x05\x03\x05\x05\x04\x03\x05\x04\x05\x01", // 鹥
+ 0x9e66: "\x02\x05\x03\x04\x02\x05\x03\x04\x05\x03\x01\x03\x05\x04\x05\x01", // 鹦
+ 0x9e67: "\x04\x01\x03\x01\x02\x02\x01\x04\x04\x04\x04\x03\x05\x04\x05\x01", // 鹧
+ 0x9e68: "\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03\x03\x05\x04\x05\x01", // 鹨
+ 0x9e69: "\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04\x03\x05\x04\x05\x01", // 鹩
+ 0x9e6a: "\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04\x03\x05\x04\x05\x01", // 鹪
+ 0x9e6b: "\x04\x01\x02\x05\x01\x02\x03\x04\x01\x03\x05\x04\x03\x05\x04\x05\x01", // 鹫
+ 0x9e6c: "\x05\x04\x05\x02\x03\x02\x05\x03\x04\x02\x05\x01\x03\x05\x04\x05\x01", // 鹬
+ 0x9e6d: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x04\x02\x05\x01\x03\x05\x04\x05\x01", // 鹭
+ 0x9e6e: "\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04\x03\x05\x04\x05\x01", // 鹮
+ 0x9e6f: "\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x05\x04\x05\x01", // 鹯
+ 0x9e70: "\x04\x01\x03\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01\x03\x05\x04\x05\x01", // 鹰
+ 0x9e71: "\x03\x05\x04\x05\x01\x01\x02\x02\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 鹱
+ 0x9e72: "\x01\x02\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04\x03\x05\x04\x05\x01", // 鹲
+ 0x9e73: "\x01\x02\x02\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x05\x04\x05\x01", // 鹳
+ 0x9e74: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x05\x04\x05\x01", // 鹴
+ 0x9e75: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01", // 鹵
+ 0x9e76: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x03\x04\x04\x05", // 鹶
+ 0x9e77: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x03\x04\x04\x05\x04", // 鹷
+ 0x9e78: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x03\x04\x01\x02\x05\x01\x03\x04", // 鹸
+ 0x9e79: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 鹹
+ 0x9e7a: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x04\x03\x01\x01\x01\x03\x01\x02\x01", // 鹺
+ 0x9e7b: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 鹻
+ 0x9e7c: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 鹼
+ 0x9e7d: "\x01\x02\x05\x01\x02\x05\x03\x01\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x02\x05\x02\x02\x01", // 鹽
+ 0x9e7e: "\x02\x01\x02\x05\x03\x04\x01\x04\x03\x01\x01\x01\x03\x01\x02\x01", // 鹾
+ 0x9e7f: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 鹿
+ 0x9e80: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x03\x05", // 麀
+ 0x9e81: "\x03\x05\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 麁
+ 0x9e82: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x03\x05", // 麂
+ 0x9e83: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x04\x04\x04\x04", // 麃
+ 0x9e84: "\x03\x04\x05\x03\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 麄
+ 0x9e85: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x03\x05\x05\x01\x05", // 麅
+ 0x9e86: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x02\x05\x01\x01\x01", // 麆
+ 0x9e87: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x03\x01\x02\x03\x04", // 麇
+ 0x9e88: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x04\x01\x01\x02\x01", // 麈
+ 0x9e89: "\x01\x01\x02\x01\x01\x02\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 麉
+ 0x9e8a: "\x04\x03\x01\x02\x03\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 麊
+ 0x9e8b: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x04\x03\x01\x02\x03\x04", // 麋
+ 0x9e8c: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 麌
+ 0x9e8d: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x04\x01\x05\x04\x03\x02\x05", // 麍
+ 0x9e8e: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x01\x03\x01\x01\x05\x03\x04", // 麎
+ 0x9e8f: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x05\x01\x01\x03\x02\x05\x01", // 麏
+ 0x9e90: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x04\x01\x03\x04\x02\x05\x01", // 麐
+ 0x9e91: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x03\x02\x01\x05\x01\x01\x03\x05", // 麑
+ 0x9e92: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x01\x02\x02\x01\x01\x01\x03\x04", // 麒
+ 0x9e93: "\x01\x02\x03\x04\x01\x02\x03\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 麓
+ 0x9e94: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x03\x05\x04\x02\x04\x02\x05\x01", // 麔
+ 0x9e95: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x02\x05\x03\x01\x02\x03\x04\x01", // 麕
+ 0x9e96: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x04\x01\x02\x05\x01\x02\x03\x04", // 麖
+ 0x9e97: "\x01\x02\x05\x04\x01\x02\x05\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 麗
+ 0x9e98: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x03\x01\x02\x03\x04\x02\x05\x01\x01", // 麘
+ 0x9e99: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 麙
+ 0x9e9a: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 麚
+ 0x9e9b: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x05\x01\x05\x01\x02\x02\x01\x01\x01", // 麛
+ 0x9e9c: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x01\x02\x05\x02\x02\x01\x01\x02\x03\x04", // 麜
+ 0x9e9d: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x03\x02\x05\x01\x01\x01\x03\x01\x02\x04", // 麝
+ 0x9e9e: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02", // 麞
+ 0x9e9f: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 麟
+ 0x9ea0: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x01\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x01\x01", // 麠
+ 0x9ea1: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x01\x01\x03\x02", // 麡
+ 0x9ea2: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 麢
+ 0x9ea3: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x02\x05\x01\x02\x05\x01\x01\x03\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 麣
+ 0x9ea4: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 麤
+ 0x9ea5: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04", // 麥
+ 0x9ea6: "\x01\x01\x02\x01\x03\x05\x04", // 麦
+ 0x9ea7: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x03\x01\x05", // 麧
+ 0x9ea8: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x02\x03\x04\x03", // 麨
+ 0x9ea9: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x01\x01\x03\x04", // 麩
+ 0x9eaa: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x01\x02\x05\x05", // 麪
+ 0x9eab: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x01\x02\x01\x05", // 麫
+ 0x9eac: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x05\x03\x02\x05\x04", // 麬
+ 0x9ead: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x03\x05\x05\x01\x05", // 麭
+ 0x9eae: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x01\x02\x01\x05\x04", // 麮
+ 0x9eaf: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x02\x05\x01\x02\x02\x01", // 麯
+ 0x9eb0: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x05\x04\x03\x01\x01\x02", // 麰
+ 0x9eb1: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x01\x02\x05\x01\x01\x02\x04", // 麱
+ 0x9eb2: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x02\x05\x01\x01\x01\x03\x05", // 麲
+ 0x9eb3: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x01\x03\x04\x03\x04\x02\x03\x04", // 麳
+ 0x9eb4: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x03\x05\x04\x03\x01\x02\x03\x04", // 麴
+ 0x9eb5: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 麵
+ 0x9eb6: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 麶
+ 0x9eb7: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x01\x01\x01\x02\x02\x01\x01\x01\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 麷
+ 0x9eb8: "\x01\x01\x02\x01\x03\x05\x04\x01\x01\x03\x04", // 麸
+ 0x9eb9: "\x01\x01\x02\x01\x03\x05\x04\x03\x05\x04\x03\x01\x02\x03\x04", // 麹
+ 0x9eba: "\x01\x01\x02\x01\x03\x05\x04\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 麺
+ 0x9ebb: "\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04", // 麻
+ 0x9ebc: "\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x05\x05\x04", // 麼
+ 0x9ebd: "\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x03\x05\x04", // 麽
+ 0x9ebe: "\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x03\x01\x01\x05", // 麾
+ 0x9ebf: "\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x02\x05\x01\x02\x05\x01", // 麿
+ 0x9ec0: "\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x02\x01\x01\x01\x05\x04", // 黀
+ 0x9ec1: "\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x01", // 黁
+ 0x9ec2: "\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 黂
+ 0x9ec3: "\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04", // 黃
+ 0x9ec4: "\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 黄
+ 0x9ec5: "\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04\x03\x04\x04\x05", // 黅
+ 0x9ec6: "\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04\x04\x05\x03\x05", // 黆
+ 0x9ec7: "\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04\x02\x01\x02\x05\x01", // 黇
+ 0x9ec8: "\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04\x04\x01\x01\x02\x01", // 黈
+ 0x9ec9: "\x04\x04\x03\x04\x05\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 黉
+ 0x9eca: "\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04\x01\x02\x01\x01\x02\x01", // 黊
+ 0x9ecb: "\x02\x04\x03\x01\x03\x05\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 黋
+ 0x9ecc: "\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 黌
+ 0x9ecd: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04", // 黍
+ 0x9ece: "\x03\x01\x02\x03\x04\x03\x05\x03\x03\x04\x02\x04\x01\x03\x04", // 黎
+ 0x9ecf: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x02\x01\x02\x05\x01", // 黏
+ 0x9ed0: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 黐
+ 0x9ed1: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 黑
+ 0x9ed2: "\x02\x05\x01\x01\x02\x01\x01\x04\x04\x04\x04", // 黒
+ 0x9ed3: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x05\x04", // 黓
+ 0x9ed4: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x04\x04\x05", // 黔
+ 0x9ed5: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x04\x05\x03\x05", // 黕
+ 0x9ed6: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x05\x03\x05", // 黖
+ 0x9ed7: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x05\x02\x05", // 黗
+ 0x9ed8: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x03\x04\x04", // 默
+ 0x9ed9: "\x02\x05\x01\x01\x02\x01\x01\x01\x03\x04\x04\x04\x04\x04\x04", // 黙
+ 0x9eda: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x02\x01\x01", // 黚
+ 0x9edb: "\x03\x02\x01\x05\x04\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 黛
+ 0x9edc: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x05\x02\x02\x05\x02", // 黜
+ 0x9edd: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x05\x05\x04\x05\x03", // 黝
+ 0x9ede: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x02\x01\x02\x05\x01", // 點
+ 0x9edf: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x05\x04\x03\x05\x04", // 黟
+ 0x9ee0: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x01\x02\x05\x01", // 黠
+ 0x9ee1: "\x01\x03\x01\x03\x04\x04\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 黡
+ 0x9ee2: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x05\x04\x03\x04\x03\x05\x04", // 黢
+ 0x9ee3: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x01\x05\x05\x04\x01\x04", // 黣
+ 0x9ee4: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x03\x04\x02\x05\x01\x01\x05", // 黤
+ 0x9ee5: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x04\x01\x02\x05\x01\x02\x03\x04", // 黥
+ 0x9ee6: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x04\x04\x05\x03\x05\x04\x05\x05", // 黦
+ 0x9ee7: "\x03\x01\x02\x03\x04\x03\x05\x03\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 黧
+ 0x9ee8: "\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 黨
+ 0x9ee9: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x05\x04\x04\x01\x03\x04", // 黩
+ 0x9eea: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x05\x04\x01\x03\x04\x03\x03\x03", // 黪
+ 0x9eeb: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x05\x02\x02\x01\x01\x02\x01", // 黫
+ 0x9eec: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 黬
+ 0x9eed: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x04\x01\x02\x05\x01\x01\x03\x02", // 黭
+ 0x9eee: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x02\x01\x01\x01\x03\x04\x05", // 黮
+ 0x9eef: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 黯
+ 0x9ef0: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 黰
+ 0x9ef1: "\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 黱
+ 0x9ef2: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 黲
+ 0x9ef3: "\x01\x03\x01\x01\x03\x04\x05\x03\x05\x05\x04\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 黳
+ 0x9ef4: "\x03\x03\x02\x02\x05\x02\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x01\x03\x04", // 黴
+ 0x9ef5: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x05\x01\x03\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 黵
+ 0x9ef6: "\x01\x03\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x04\x04\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 黶
+ 0x9ef7: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 黷
+ 0x9ef8: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 黸
+ 0x9ef9: "\x02\x02\x04\x03\x01\x04\x03\x02\x05\x02\x03\x04", // 黹
+ 0x9efa: "\x02\x02\x04\x03\x01\x04\x03\x02\x05\x02\x03\x04\x03\x04\x05\x03", // 黺
+ 0x9efb: "\x02\x02\x04\x03\x01\x04\x03\x02\x05\x02\x03\x04\x01\x03\x05\x04\x04", // 黻
+ 0x9efc: "\x02\x02\x04\x03\x01\x04\x03\x02\x05\x02\x03\x04\x01\x02\x05\x01\x01\x02\x04", // 黼
+ 0x9efd: "\x02\x05\x01\x01\x02\x05\x01\x02\x01\x01\x05\x01\x01", // 黽
+ 0x9efe: "\x02\x05\x01\x02\x05\x01\x01\x05", // 黾
+ 0x9eff: "\x01\x01\x03\x05\x02\x05\x01\x01\x02\x05\x01\x02\x01\x01\x05\x01\x01", // 黿
+ 0x9f00: "\x01\x02\x01\x03\x04\x02\x05\x01\x01\x02\x05\x01\x02\x01\x01\x05\x01\x01", // 鼀
+ 0x9f01: "\x01\x02\x01\x05\x04\x02\x05\x01\x01\x02\x05\x01\x02\x01\x01\x05\x01\x01", // 鼁
+ 0x9f02: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x02\x05\x01\x02\x01\x01\x05\x01\x01", // 鼂
+ 0x9f03: "\x01\x02\x01\x01\x02\x01\x02\x05\x01\x01\x02\x05\x01\x02\x01\x01\x05\x01\x01", // 鼃
+ 0x9f04: "\x03\x01\x01\x02\x03\x04\x02\x05\x01\x01\x02\x05\x01\x02\x01\x01\x05\x01\x01", // 鼄
+ 0x9f05: "\x03\x01\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x05\x01\x05\x01", // 鼅
+ 0x9f06: "\x04\x05\x02\x05\x01\x01\x04\x01\x03\x04\x02\x05\x01\x01\x02\x05\x01\x02\x01\x01\x05\x01\x01", // 鼆
+ 0x9f07: "\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04\x02\x05\x01\x01\x02\x05\x01\x02\x01\x01\x05\x01\x01", // 鼇
+ 0x9f08: "\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04\x02\x05\x01\x01\x02\x05\x01\x02\x01\x01\x05\x01\x01", // 鼈
+ 0x9f09: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x05\x01\x02\x01\x01\x05\x01\x01", // 鼉
+ 0x9f0a: "\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x02\x01\x01\x05\x01\x01", // 鼊
+ 0x9f0b: "\x01\x01\x03\x05\x02\x05\x01\x02\x05\x01\x01\x05", // 鼋
+ 0x9f0c: "\x02\x05\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x05", // 鼌
+ 0x9f0d: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x05\x01\x01\x05", // 鼍
+ 0x9f0e: "\x02\x05\x01\x01\x01\x05\x01\x03\x02\x01\x02\x05", // 鼎
+ 0x9f0f: "\x04\x05\x02\x05\x01\x01\x01\x05\x01\x03\x02\x01\x02\x05", // 鼏
+ 0x9f10: "\x05\x03\x02\x05\x01\x01\x01\x05\x01\x03\x02\x01\x02\x05", // 鼐
+ 0x9f11: "\x02\x01\x02\x05\x01\x01\x01\x05\x01\x03\x02\x01\x02\x05", // 鼑
+ 0x9f12: "\x01\x02\x03\x02\x05\x01\x01\x01\x05\x01\x03\x02\x01\x02\x05", // 鼒
+ 0x9f13: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04", // 鼓
+ 0x9f14: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x02\x01\x05\x04", // 鼔
+ 0x9f15: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x03\x05\x04\x04\x04", // 鼕
+ 0x9f16: "\x01\x02\x01\x02\x02\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04", // 鼖
+ 0x9f17: "\x03\x04\x01\x05\x03\x04\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04", // 鼗
+ 0x9f18: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x03\x02\x01\x01\x05\x05\x01\x02\x02", // 鼘
+ 0x9f19: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x03\x02\x05\x01\x01\x03\x01\x02", // 鼙
+ 0x9f1a: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x01\x02\x01\x01\x01\x05\x03\x04", // 鼚
+ 0x9f1b: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x03\x05\x04\x02\x04\x02\x05\x01", // 鼛
+ 0x9f1c: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x05\x04\x04\x02\x05\x01\x02\x01\x04", // 鼜
+ 0x9f1d: "\x04\x04\x01\x03\x02\x01\x01\x05\x05\x02\x01\x02\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04", // 鼝
+ 0x9f1e: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x01", // 鼞
+ 0x9f1f: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 鼟
+ 0x9f20: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05", // 鼠
+ 0x9f21: "\x04\x04\x03\x03\x05\x01\x01\x02", // 鼡
+ 0x9f22: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x03\x04\x05\x03", // 鼢
+ 0x9f23: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x01\x03\x04\x04", // 鼣
+ 0x9f24: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x04\x01\x03\x04", // 鼤
+ 0x9f25: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x01\x03\x05\x04\x04", // 鼥
+ 0x9f26: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x05\x03\x02\x05\x01", // 鼦
+ 0x9f27: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x04\x04\x05\x03\x05", // 鼧
+ 0x9f28: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x03\x05\x04\x04\x04", // 鼨
+ 0x9f29: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x03\x05\x02\x05\x01", // 鼩
+ 0x9f2a: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x03\x01\x01\x02\x01", // 鼪
+ 0x9f2b: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x01\x03\x02\x05\x01", // 鼫
+ 0x9f2c: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x02\x05\x01\x02\x01", // 鼬
+ 0x9f2d: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x01\x02\x01\x01\x02\x04", // 鼭
+ 0x9f2e: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x03\x01\x02\x01\x05\x04", // 鼮
+ 0x9f2f: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x01\x02\x05\x01\x02\x05\x01", // 鼯
+ 0x9f30: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x02\x05\x01\x01\x01\x03\x04", // 鼰
+ 0x9f31: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x01\x01\x02\x01\x02\x05\x01\x01", // 鼱
+ 0x9f32: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 鼲
+ 0x9f33: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x02\x05\x01\x01\x01\x01\x03\x04\x04", // 鼳
+ 0x9f34: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x01\x02\x05\x01\x01\x05\x03\x01\x05", // 鼴
+ 0x9f35: "\x03\x02\x01\x05\x04\x04\x05\x04\x04\x05\x04\x04\x05\x04\x04\x05\x03\x04\x01\x03\x04\x04", // 鼵
+ 0x9f36: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x03\x03\x02\x01\x05\x03\x01\x05\x03\x05", // 鼶
+ 0x9f37: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x03\x02\x02\x03\x05\x05\x04\x01\x03\x04", // 鼷
+ 0x9f38: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 鼸
+ 0x9f39: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x02\x05\x01\x01\x04\x04\x05\x05\x03\x01", // 鼹
+ 0x9f3a: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01", // 鼺
+ 0x9f3b: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02", // 鼻
+ 0x9f3c: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x05\x02", // 鼼
+ 0x9f3d: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x03\x05", // 鼽
+ 0x9f3e: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x01\x01\x02", // 鼾
+ 0x9f3f: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x01\x03\x05", // 鼿
+ 0x9f40: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x01\x05\x05\x04", // 齀
+ 0x9f41: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x03\x05\x02\x05\x01", // 齁
+ 0x9f42: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x05\x01\x01\x02\x04\x01\x03\x04", // 齂
+ 0x9f43: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 齃
+ 0x9f44: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 齄
+ 0x9f45: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x03\x02\x05\x01\x01\x01\x01\x03\x04\x04", // 齅
+ 0x9f46: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x05\x05\x05\x02\x05\x01\x05\x02\x01\x05", // 齆
+ 0x9f47: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x02\x01\x05\x03\x01\x05\x02\x05\x01\x01\x01", // 齇
+ 0x9f48: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x02\x05\x01\x02\x02\x01\x01\x03\x01\x01\x05\x03\x04", // 齈
+ 0x9f49: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x01\x02\x05\x01\x02\x04\x05\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x02\x04", // 齉
+ 0x9f4a: "\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01", // 齊
+ 0x9f4b: "\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01\x02\x03\x04\x02", // 齋
+ 0x9f4c: "\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01\x03\x04\x03\x02", // 齌
+ 0x9f4d: "\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01\x02\x05\x02\x02\x01", // 齍
+ 0x9f4e: "\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01\x02\x05\x01\x01\x01\x03\x04", // 齎
+ 0x9f4f: "\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 齏
+ 0x9f50: "\x04\x01\x03\x04\x03\x02", // 齐
+ 0x9f51: "\x04\x01\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01\x03\x02", // 齑
+ 0x9f52: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 齒
+ 0x9f53: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x05", // 齓
+ 0x9f54: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x05", // 齔
+ 0x9f55: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x01\x05", // 齕
+ 0x9f56: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x05\x02\x03", // 齖
+ 0x9f57: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x03\x01\x02", // 齗
+ 0x9f58: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x04\x03\x02", // 齘
+ 0x9f59: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x05\x05\x01\x05", // 齙
+ 0x9f5a: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x01\x02\x01\x01", // 齚
+ 0x9f5b: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x02\x02\x01\x05", // 齛
+ 0x9f5c: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x02\x01\x02\x01\x03\x05", // 齜
+ 0x9f5d: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x05\x04\x02\x05\x01", // 齝
+ 0x9f5e: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x02\x05\x01\x03\x04", // 齞
+ 0x9f5f: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x02\x05\x01\x01\x01", // 齟
+ 0x9f60: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x05\x03\x02\x05\x01", // 齠
+ 0x9f61: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x04\x04\x05\x04", // 齡
+ 0x9f62: "\x02\x01\x02\x01\x04\x03\x01\x02\x03\x04\x05\x02\x03\x04\x04\x05\x02", // 齢
+ 0x9f63: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x05\x02\x05\x01", // 齣
+ 0x9f64: "\x04\x03\x01\x01\x03\x04\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 齤
+ 0x9f65: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x02\x05\x01\x01\x05\x03", // 齥
+ 0x9f66: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x05\x01\x01\x05\x03\x04", // 齦
+ 0x9f67: "\x01\x01\x01\x02\x05\x03\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 齧
+ 0x9f68: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x02\x01\x05\x01\x01", // 齨
+ 0x9f69: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x04\x01\x03\x04\x03\x04", // 齩
+ 0x9f6a: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x02\x05\x01\x02\x01\x03\x04", // 齪
+ 0x9f6b: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x02\x05\x01\x02\x03\x04\x01", // 齫
+ 0x9f6c: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x02\x05\x01\x02\x05\x01", // 齬
+ 0x9f6d: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x03\x05\x01\x03\x03\x01\x02", // 齭
+ 0x9f6e: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x03\x04\x01\x02\x05\x01\x02", // 齮
+ 0x9f6f: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x02\x01\x05\x01\x01\x03\x05", // 齯
+ 0x9f70: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x02\x02\x01\x02\x05\x01\x01", // 齰
+ 0x9f71: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x02\x02\x01\x01\x01\x05\x04", // 齱
+ 0x9f72: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x02\x05\x01\x02\x05\x02\x01\x04", // 齲
+ 0x9f73: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 齳
+ 0x9f74: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x04\x01\x04\x03\x01\x03\x03\x03\x03", // 齴
+ 0x9f75: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 齵
+ 0x9f76: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x02\x05\x01\x02\x05\x01\x01\x01\x05", // 齶
+ 0x9f77: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x05\x01\x03\x01\x05\x04\x01\x02\x01", // 齷
+ 0x9f78: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x04\x03\x01\x03\x04\x02\x05\x02\x02\x01", // 齸
+ 0x9f79: "\x04\x03\x01\x01\x01\x03\x01\x02\x01\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 齹
+ 0x9f7a: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03", // 齺
+ 0x9f7b: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 齻
+ 0x9f7c: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x02\x03\x04\x01\x02\x03\x04\x05\x02\x01\x03\x04", // 齼
+ 0x9f7d: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x02\x03\x04\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 齽
+ 0x9f7e: "\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x03\x04\x04\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 齾
+ 0x9f7f: "\x02\x01\x02\x01\x03\x04\x05\x02", // 齿
+ 0x9f80: "\x02\x01\x02\x01\x03\x04\x05\x02\x03\x05", // 龀
+ 0x9f81: "\x02\x01\x02\x01\x03\x04\x05\x02\x03\x01\x05", // 龁
+ 0x9f82: "\x02\x01\x02\x01\x03\x04\x05\x02\x03\x03\x01\x02", // 龂
+ 0x9f83: "\x02\x01\x02\x01\x03\x04\x05\x02\x02\x05\x01\x01\x01", // 龃
+ 0x9f84: "\x02\x01\x02\x01\x03\x04\x05\x02\x03\x04\x04\x05\x04", // 龄
+ 0x9f85: "\x02\x01\x02\x01\x03\x04\x05\x02\x03\x05\x05\x01\x05", // 龅
+ 0x9f86: "\x02\x01\x02\x01\x03\x04\x05\x02\x05\x03\x02\x05\x01", // 龆
+ 0x9f87: "\x02\x01\x02\x01\x03\x04\x05\x02\x02\x01\x02\x01\x03\x05", // 龇
+ 0x9f88: "\x02\x01\x02\x01\x03\x04\x05\x02\x05\x01\x01\x05\x03\x04", // 龈
+ 0x9f89: "\x02\x01\x02\x01\x03\x04\x05\x02\x01\x02\x05\x01\x02\x05\x01", // 龉
+ 0x9f8a: "\x02\x01\x02\x01\x03\x04\x05\x02\x02\x05\x01\x02\x01\x03\x04", // 龊
+ 0x9f8b: "\x02\x01\x02\x01\x03\x04\x05\x02\x03\x02\x05\x01\x02\x05\x02\x01\x04", // 龋
+ 0x9f8c: "\x02\x01\x02\x01\x03\x04\x05\x02\x05\x01\x03\x01\x05\x04\x01\x02\x01", // 龌
+ 0x9f8d: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01\x01\x01", // 龍
+ 0x9f8e: "\x01\x03\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x05\x01\x05\x01\x01\x01", // 龎
+ 0x9f8f: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x05\x01\x05\x01\x01\x01\x01\x03\x02", // 龏
+ 0x9f90: "\x04\x01\x03\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x05\x01\x05\x01\x01\x01", // 龐
+ 0x9f91: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x05\x01\x05\x01\x01\x01\x01\x01\x03\x04", // 龑
+ 0x9f92: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x05\x01\x05\x01\x01\x01\x01\x01\x02\x03\x04", // 龒
+ 0x9f93: "\x01\x03\x02\x05\x01\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x05\x01\x05\x01\x01\x01", // 龓
+ 0x9f94: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x05\x01\x05\x01\x01\x01\x01\x02\x02\x01\x03\x04", // 龔
+ 0x9f95: "\x03\x04\x01\x02\x05\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x05\x01\x05\x01\x01\x01", // 龕
+ 0x9f96: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x05\x01\x05\x01\x01\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x05\x01\x05\x01\x01\x01", // 龖
+ 0x9f97: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x05\x01\x05\x01\x01\x01", // 龗
+ 0x9f98: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x05\x01\x05\x01\x01\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x05\x01\x05\x01\x01\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x05\x01\x05\x01\x01\x01", // 龘
+ 0x9f99: "\x01\x03\x05\x03\x04", // 龙
+ 0x9f9a: "\x01\x03\x05\x03\x04\x01\x02\x02\x01\x03\x04", // 龚
+ 0x9f9b: "\x03\x04\x01\x02\x05\x01\x01\x03\x05\x03\x04", // 龛
+ 0x9f9c: "\x03\x02\x05\x01\x01\x02\x05\x05\x01\x01\x05\x01\x01\x05\x03\x04\x01", // 龜
+ 0x9f9d: "\x03\x01\x02\x03\x04\x03\x02\x05\x01\x01\x02\x05\x05\x01\x01\x05\x01\x01\x05\x03\x04\x01", // 龝
+ 0x9f9e: "\x02\x04\x03\x02\x05\x03\x04\x03\x01\x03\x04\x03\x02\x05\x01\x01\x02\x05\x05\x01\x01\x05\x01\x01\x05\x03\x04\x01", // 龞
+ 0x9f9f: "\x03\x05\x01\x05\x01\x01\x05", // 龟
+ 0x9fa0: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02", // 龠
+ 0x9fa1: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02\x03\x05\x03\x04", // 龡
+ 0x9fa2: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02\x03\x01\x02\x03\x04", // 龢
+ 0x9fa3: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02\x05\x01\x01\x02\x04\x01\x03\x04", // 龣
+ 0x9fa4: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02\x01\x05\x03\x05\x03\x02\x05\x01\x01", // 龤
+ 0x9fa5: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 龥
+ 0x9fa6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 龦
+ 0x9fa7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 龧
+ 0x9fa8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 龨
+ 0x9fa9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 龩
+ 0x9faa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 龪
+ 0x9fab: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 龫
+ 0x9fac: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 龬
+ 0x9fad: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 龭
+ 0x9fae: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 龮
+ 0x9faf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 龯
+ 0x9fb0: "\x06\x06\x06\x06", // 龰
+ 0x9fb1: "\x06\x06\x06\x06\x06", // 龱
+ 0x9fb2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 龲
+ 0x9fb3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 龳
+ 0x9fb4: "\x06\x06", // 龴
+ 0x9fb5: "\x06\x06\x06", // 龵
+ 0x9fb6: "\x06\x06\x06\x06", // 龶
+ 0x9fb7: "\x06\x06\x06\x06\x06", // 龷
+ 0x9fb8: "\x06\x06\x06\x06\x06", // 龸
+ 0x9fb9: "\x06\x06\x06\x06\x06\x06", // 龹
+ 0x9fba: "\x06\x06\x06\x06\x06\x06\x06\x06", // 龺
+ 0x9fbb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 龻
+ 0x9fbc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 龼
+ 0x9fbd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 龽
+ 0x9fbe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 龾
+ 0x9fbf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 龿
+ 0x9fc0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 鿀
+ 0x9fc1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 鿁
+ 0x9fc2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 鿂
+ 0x9fc3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 鿃
+ 0x9fc4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 鿄
+ 0x9fc5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 鿅
+ 0x9fc6: "\x06\x06\x06\x06\x06\x06\x06\x06", // 鿆
+ 0x9fc7: "\x06\x06\x06\x06\x06\x06\x06\x06", // 鿇
+ 0x9fc8: "\x06\x06\x06\x06\x06\x06\x06", // 鿈
+ 0x9fc9: "\x06\x06\x06\x06\x06\x06\x06", // 鿉
+ 0x9fca: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 鿊
+ 0x9fcb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 鿋
+ 0x9fcc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 鿌
+ 0x9fcd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 鿍
+ 0x9fce: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 鿎
+ 0x9fcf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 鿏
+ 0x9fd0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 鿐
+ 0x9fd1: "\x06\x06\x06\x06\x06\x06\x06", // 鿑
+ 0x9fd2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 鿒
+ 0x9fd3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 鿓
+ 0x9fd4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 鿔
+ 0x9fd5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 鿕
+ 0xe815: "\x03\x03", // 
+ 0xe816: "\x01\x03", // 
+ 0xe817: "\x03\x01", // 
+ 0xe818: "\x05", // 
+ 0xe819: "\x05", // 
+ 0xe81a: "\x03\x02\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03", // 
+ 0xe81b: "\x03\x02\x03\x05\x05\x01\x01", // 
+ 0xe81c: "\x03\x05", // 
+ 0xe81d: "\x05\x05", // 
+ 0xe81e: "\x05\x04", // 
+ 0xe81f: "\x02\x05\x01\x02\x05\x01\x02\x05\x03\x04", // 
+ 0xe820: "\x02\x05\x01\x02\x05\x01\x01\x02\x05\x01\x01\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 
+ 0xe821: "\x02\x05\x01\x04\x02\x05\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 
+ 0xe822: "\x02\x04\x03", // 
+ 0xe823: "\x02\x03\x04\x04", // 
+ 0xe824: "\x02\x04\x04\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03", // 
+ 0xe825: "\x02\x04\x04\x03\x05\x05\x01\x01", // 
+ 0xe826: "\x03\x01\x01\x03", // 
+ 0xe827: "\x01\x02\x01\x02\x05\x03\x04", // 
+ 0xe828: "\x01\x02\x01\x04\x04\x01\x01\x05", // 
+ 0xe829: "\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 
+ 0xe82a: "\x01\x02\x01\x05\x04\x05\x04", // 
+ 0xe82b: "\x01\x01\x02\x01\x03\x04\x04\x04\x01\x02", // 
+ 0xe82c: "\x01\x02\x02\x01", // 
+ 0xe82d: "\x01\x02\x03\x04\x02\x05\x03\x04", // 
+ 0xe82e: "\x01\x03\x05\x04\x02\x05\x01\x02\x01\x02\x05\x03\x04", // 
+ 0xe82f: "\x04\x04\x01\x01\x03\x04\x04\x05\x04", // 
+ 0xe830: "\x03\x01\x02\x01", // 
+ 0xe831: "\x01\x01\x01\x03\x04", // 
+ 0xe832: "\x02\x04\x03\x04\x05", // 
+ 0xe833: "\x05\x02\x01\x02\x01", // 
+ 0xe834: "\x02\x05\x01\x01\x01\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 
+ 0xe835: "\x03\x01\x02\x03\x04\x05\x04\x01\x03\x04\x03\x03\x03", // 
+ 0xe836: "\x03\x01\x04\x03\x01\x04", // 
+ 0xe837: "\x05\x05\x01\x02\x05\x01\x02\x01", // 
+ 0xe838: "\x04\x05\x03\x05", // 
+ 0xe839: "\x04\x03\x01\x01\x03", // 
+ 0xe83a: "\x04\x03\x01\x01\x02\x01", // 
+ 0xe83b: "\x01\x02\x01\x05\x03\x04", // 
+ 0xe83c: "\x01\x01\x01\x02\x03\x04\x02\x05\x02\x02\x01\x05\x04\x02\x05\x01\x01\x03\x05\x03\x05", // 
+ 0xe83d: "\x01\x01\x01\x02\x03\x04\x02\x05\x02\x02\x01\x01\x02\x01\x05\x04", // 
+ 0xe83e: "\x05\x01\x01\x02\x01", // 
+ 0xe83f: "\x03\x05\x01\x01\x01\x01\x05\x04", // 
+ 0xe840: "\x01\x02\x02\x04\x04\x05\x03\x04\x05\x03", // 
+ 0xe841: "\x04\x05\x02\x03\x04\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x04", // 
+ 0xe842: "\x04\x05\x02\x03\x04\x02\x05\x01\x02\x01\x01\x02\x05\x03\x04", // 
+ 0xe843: "\x04\x03\x01\x01\x03\x04", // 
+ 0xe844: "\x04\x05\x03\x03\x01\x02", // 
+ 0xe845: "\x04\x05\x01\x02\x02\x01\x02\x05\x01\x02\x01\x01\x03\x05\x04\x04\x04\x04", // 
+ 0xe846: "\x02\x05\x01\x01\x01\x03\x04\x01\x01\x02\x01\x02\x05\x01\x01", // 
+ 0xe847: "\x02\x05\x03\x04\x01\x01\x02\x01\x02\x05\x01\x01", // 
+ 0xe848: "\x02\x05\x01\x02\x01\x02\x01", // 
+ 0xe849: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x05\x01\x03\x05\x04\x01\x05\x04\x01", // 
+ 0xe84a: "\x03\x01\x01\x01\x05\x01\x05\x02\x03", // 
+ 0xe84b: "\x03\x01\x01\x01\x05\x05\x03\x05\x04\x04", // 
+ 0xe84c: "\x03\x01\x01\x01\x05\x04\x05\x01\x03\x05\x04\x01\x05\x04\x01", // 
+ 0xe84d: "\x03\x01\x01\x01\x05\x01\x02\x02\x01\x02\x01\x03\x02\x05\x01\x01", // 
+ 0xe84e: "\x03\x01\x01\x01\x05\x04\x03\x01\x01\x01\x02\x04\x03\x01\x02\x05\x01", // 
+ 0xe84f: "\x03\x01\x01\x01\x05\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 
+ 0xe850: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x04\x03\x04\x01\x02\x01", // 
+ 0xe851: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x05\x01\x01\x02", // 
+ 0xe852: "\x04\x02\x05\x03\x04\x03\x04\x01\x02\x01", // 
+ 0xe853: "\x04\x02\x05\x03\x05\x05\x01\x01\x02", // 
+ 0xe854: "\x01\x02\x02\x05\x01\x01\x01\x02", // 
+ 0xe855: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05", // 
+ 0xe856: "\x02\x01\x05\x03\x01\x05\x03\x05\x02\x05\x01\x02\x01\x01\x03\x01\x03\x04", // 
+ 0xe857: "\x03\x05\x02\x05\x01\x02\x01\x01\x03\x05\x01\x05\x02", // 
+ 0xe858: "\x03\x05\x02\x05\x01\x02\x01\x01\x01\x01\x01\x03\x04\x02\x05\x01\x01", // 
+ 0xe859: "\x03\x05\x02\x05\x01\x02\x01\x01\x04\x03\x01\x02\x05\x03\x05\x01\x01", // 
+ 0xe85a: "\x02\x01\x05\x03\x01\x05\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x03\x04", // 
+ 0xe85b: "\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04\x03\x05\x02\x05\x01\x02\x01\x01", // 
+ 0xe85c: "\x01\x05\x02\x03\x05\x04\x05\x01", // 
+ 0xe85d: "\x04\x01\x03\x04\x03\x04\x03\x05\x04\x05\x01", // 
+ 0xe85e: "\x01\x03\x05\x04\x02\x02\x03\x05\x04\x05\x01", // 
+ 0xe85f: "\x01\x01\x02\x01\x02\x05\x01\x01\x03\x05\x04\x05\x01", // 
+ 0xe860: "\x02\x05\x01\x01\x01\x01\x03\x04\x04\x03\x05\x04\x05\x01", // 
+ 0xe861: "\x03\x03\x02\x01\x05\x03\x01\x05\x03\x05\x03\x05\x04\x05\x01", // 
+ 0xe862: "\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x03\x05\x04\x05\x01", // 
+ 0xe863: "\x01\x03\x05\x03\x04\x01\x01\x03\x04", // 
+ 0xe864: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04", // 
+ 0xf900: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 豈
+ 0xf901: "\x06\x06\x06\x06\x06\x06\x06", // 更
+ 0xf902: "\x06\x06\x06\x06\x06\x06\x06", // 車
+ 0xf903: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 賈
+ 0xf904: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 滑
+ 0xf905: "\x06\x06\x06\x06\x06\x06\x06", // 串
+ 0xf906: "\x06\x06\x06\x06\x06", // 句
+ 0xf907: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 龜
+ 0xf908: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 龜
+ 0xf909: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 契
+ 0xf90a: "\x06\x06\x06\x06\x06\x06\x06\x06", // 金
+ 0xf90b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 喇
+ 0xf90c: "\x06\x06\x06\x06\x06\x06\x06\x06", // 奈
+ 0xf90d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 懶
+ 0xf90e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 癩
+ 0xf90f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 羅
+ 0xf910: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 蘿
+ 0xf911: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 螺
+ 0xf912: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 裸
+ 0xf913: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 邏
+ 0xf914: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 樂
+ 0xf915: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 洛
+ 0xf916: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 烙
+ 0xf917: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 珞
+ 0xf918: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 落
+ 0xf919: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 酪
+ 0xf91a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 駱
+ 0xf91b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 亂
+ 0xf91c: "\x06\x06\x06\x06\x06\x06\x06", // 卵
+ 0xf91d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 欄
+ 0xf91e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 爛
+ 0xf91f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 蘭
+ 0xf920: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 鸞
+ 0xf921: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 嵐
+ 0xf922: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 濫
+ 0xf923: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 藍
+ 0xf924: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 襤
+ 0xf925: "\x06\x06\x06\x06\x06\x06\x06\x06", // 拉
+ 0xf926: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 臘
+ 0xf927: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 蠟
+ 0xf928: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 廊
+ 0xf929: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 朗
+ 0xf92a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 浪
+ 0xf92b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 狼
+ 0xf92c: "\x04\x05\x01\x01\x05\x04\x03\x05\x02", // 郎
+ 0xf92d: "\x06\x06\x06\x06\x06\x06\x06\x06", // 來
+ 0xf92e: "\x06\x06\x06\x06\x06\x06\x06", // 冷
+ 0xf92f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 勞
+ 0xf930: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 擄
+ 0xf931: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 櫓
+ 0xf932: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 爐
+ 0xf933: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 盧
+ 0xf934: "\x06\x06\x06\x06\x06\x06", // 老
+ 0xf935: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 蘆
+ 0xf936: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 虜
+ 0xf937: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 路
+ 0xf938: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 露
+ 0xf939: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 魯
+ 0xf93a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 鷺
+ 0xf93b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 碌
+ 0xf93c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 祿
+ 0xf93d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 綠
+ 0xf93e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 菉
+ 0xf93f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 錄
+ 0xf940: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 鹿
+ 0xf941: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 論
+ 0xf942: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 壟
+ 0xf943: "\x06\x06\x06\x06\x06\x06\x06", // 弄
+ 0xf944: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 籠
+ 0xf945: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 聾
+ 0xf946: "\x06\x06\x06\x06\x06\x06\x06", // 牢
+ 0xf947: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 磊
+ 0xf948: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 賂
+ 0xf949: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 雷
+ 0xf94a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 壘
+ 0xf94b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 屢
+ 0xf94c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 樓
+ 0xf94d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 淚
+ 0xf94e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 漏
+ 0xf94f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 累
+ 0xf950: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 縷
+ 0xf951: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 陋
+ 0xf952: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 勒
+ 0xf953: "\x06\x06\x06\x06\x06\x06", // 肋
+ 0xf954: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 凜
+ 0xf955: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 凌
+ 0xf956: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 稜
+ 0xf957: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 綾
+ 0xf958: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 菱
+ 0xf959: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 陵
+ 0xf95a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 讀
+ 0xf95b: "\x06\x06\x06\x06\x06\x06\x06\x06", // 拏
+ 0xf95c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 樂
+ 0xf95d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 諾
+ 0xf95e: "\x06\x06\x06\x06", // 丹
+ 0xf95f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 寧
+ 0xf960: "\x06\x06\x06\x06\x06\x06\x06\x06", // 怒
+ 0xf961: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 率
+ 0xf962: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 異
+ 0xf963: "\x06\x06\x06\x06\x06", // 北
+ 0xf964: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 磻
+ 0xf965: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 便
+ 0xf966: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 復
+ 0xf967: "\x06\x06\x06\x06", // 不
+ 0xf968: "\x06\x06\x06\x06\x06\x06\x06\x06", // 泌
+ 0xf969: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 數
+ 0xf96a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 索
+ 0xf96b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 參
+ 0xf96c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 塞
+ 0xf96d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 省
+ 0xf96e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 葉
+ 0xf96f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 說
+ 0xf970: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 殺
+ 0xf971: "\x06\x06\x06\x06\x06\x06\x06", // 辰
+ 0xf972: "\x06\x06\x06\x06\x06\x06\x06", // 沈
+ 0xf973: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 拾
+ 0xf974: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 若
+ 0xf975: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 掠
+ 0xf976: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 略
+ 0xf977: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 亮
+ 0xf978: "\x06\x06\x06\x06\x06\x06\x06\x06", // 兩
+ 0xf979: "\x04\x01\x04\x01\x02\x05\x02\x03\x04", // 凉
+ 0xf97a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 梁
+ 0xf97b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 糧
+ 0xf97c: "\x06\x06\x06\x06\x06\x06\x06", // 良
+ 0xf97d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 諒
+ 0xf97e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 量
+ 0xf97f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 勵
+ 0xf980: "\x06\x06\x06\x06\x06\x06\x06", // 呂
+ 0xf981: "\x06\x06\x06", // 女
+ 0xf982: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 廬
+ 0xf983: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 旅
+ 0xf984: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 濾
+ 0xf985: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 礪
+ 0xf986: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 閭
+ 0xf987: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 驪
+ 0xf988: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 麗
+ 0xf989: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 黎
+ 0xf98a: "\x06\x06", // 力
+ 0xf98b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 曆
+ 0xf98c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 歷
+ 0xf98d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 轢
+ 0xf98e: "\x06\x06\x06\x06\x06\x06", // 年
+ 0xf98f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 憐
+ 0xf990: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 戀
+ 0xf991: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 撚
+ 0xf992: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 漣
+ 0xf993: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 煉
+ 0xf994: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 璉
+ 0xf995: "\x03\x01\x02\x03\x04\x03\x01\x02", // 秊
+ 0xf996: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 練
+ 0xf997: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 聯
+ 0xf998: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 輦
+ 0xf999: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 蓮
+ 0xf99a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 連
+ 0xf99b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 鍊
+ 0xf99c: "\x06\x06\x06\x06\x06\x06", // 列
+ 0xf99d: "\x06\x06\x06\x06\x06\x06", // 劣
+ 0xf99e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 咽
+ 0xf99f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 烈
+ 0xf9a0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 裂
+ 0xf9a1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 說
+ 0xf9a2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 廉
+ 0xf9a3: "\x06\x06\x06\x06\x06\x06\x06", // 念
+ 0xf9a4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 捻
+ 0xf9a5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 殮
+ 0xf9a6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 簾
+ 0xf9a7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 獵
+ 0xf9a8: "\x06\x06\x06\x06\x06", // 令
+ 0xf9a9: "\x06\x06\x06\x06\x06\x06\x06\x06", // 囹
+ 0xf9aa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 寧
+ 0xf9ab: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 嶺
+ 0xf9ac: "\x06\x06\x06\x06\x06\x06\x06\x06", // 怜
+ 0xf9ad: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 玲
+ 0xf9ae: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 瑩
+ 0xf9af: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 羚
+ 0xf9b0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 聆
+ 0xf9b1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 鈴
+ 0xf9b2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 零
+ 0xf9b3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 靈
+ 0xf9b4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 領
+ 0xf9b5: "\x06\x06\x06\x06\x06\x06\x06\x06", // 例
+ 0xf9b6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 禮
+ 0xf9b7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 醴
+ 0xf9b8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 隸
+ 0xf9b9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 惡
+ 0xf9ba: "\x06\x06", // 了
+ 0xf9bb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 僚
+ 0xf9bc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 寮
+ 0xf9bd: "\x06\x06\x06\x06\x06\x06\x06", // 尿
+ 0xf9be: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 料
+ 0xf9bf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 樂
+ 0xf9c0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 燎
+ 0xf9c1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 療
+ 0xf9c2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 蓼
+ 0xf9c3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 遼
+ 0xf9c4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 龍
+ 0xf9c5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 暈
+ 0xf9c6: "\x06\x06\x06\x06\x06\x06\x06", // 阮
+ 0xf9c7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 劉
+ 0xf9c8: "\x06\x06\x06\x06\x06\x06\x06\x06", // 杻
+ 0xf9c9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 柳
+ 0xf9ca: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 流
+ 0xf9cb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 溜
+ 0xf9cc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 琉
+ 0xf9cd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 留
+ 0xf9ce: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 硫
+ 0xf9cf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 紐
+ 0xf9d0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 類
+ 0xf9d1: "\x06\x06\x06\x06", // 六
+ 0xf9d2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 戮
+ 0xf9d3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 陸
+ 0xf9d4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 倫
+ 0xf9d5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 崙
+ 0xf9d6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 淪
+ 0xf9d7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 輪
+ 0xf9d8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 律
+ 0xf9d9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 慄
+ 0xf9da: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 栗
+ 0xf9db: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 率
+ 0xf9dc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 隆
+ 0xf9dd: "\x06\x06\x06\x06\x06\x06\x06", // 利
+ 0xf9de: "\x06\x06\x06\x06\x06\x06", // 吏
+ 0xf9df: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 履
+ 0xf9e0: "\x06\x06\x06\x06\x06\x06\x06\x06", // 易
+ 0xf9e1: "\x06\x06\x06\x06\x06\x06\x06", // 李
+ 0xf9e2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 梨
+ 0xf9e3: "\x06\x06\x06\x06\x06\x06\x06\x06", // 泥
+ 0xf9e4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 理
+ 0xf9e5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 痢
+ 0xf9e6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 罹
+ 0xf9e7: "\x04\x01\x02\x05\x01\x01\x01\x02\x01\x03\x05\x03\x04", // 裏
+ 0xf9e8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 裡
+ 0xf9e9: "\x06\x06\x06\x06\x06\x06\x06", // 里
+ 0xf9ea: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 離
+ 0xf9eb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 匿
+ 0xf9ec: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 溺
+ 0xf9ed: "\x06\x06\x06\x06\x06\x06\x06", // 吝
+ 0xf9ee: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 燐
+ 0xf9ef: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 璘
+ 0xf9f0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 藺
+ 0xf9f1: "\x05\x02\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 隣
+ 0xf9f2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 鱗
+ 0xf9f3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 麟
+ 0xf9f4: "\x06\x06\x06\x06\x06\x06\x06\x06", // 林
+ 0xf9f5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 淋
+ 0xf9f6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 臨
+ 0xf9f7: "\x06\x06\x06\x06\x06", // 立
+ 0xf9f8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 笠
+ 0xf9f9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 粒
+ 0xf9fa: "\x06\x06\x06\x06\x06\x06\x06", // 狀
+ 0xf9fb: "\x06\x06\x06\x06\x06\x06\x06\x06", // 炙
+ 0xf9fc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 識
+ 0xf9fd: "\x06\x06\x06\x06", // 什
+ 0xf9fe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 茶
+ 0xf9ff: "\x06\x06\x06\x06\x06\x06\x06\x06", // 刺
+ 0xfa00: "\x06\x06\x06\x06", // 切
+ 0xfa01: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 度
+ 0xfa02: "\x06\x06\x06\x06\x06\x06\x06\x06", // 拓
+ 0xfa03: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 糖
+ 0xfa04: "\x06\x06\x06\x06\x06\x06", // 宅
+ 0xfa05: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 洞
+ 0xfa06: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 暴
+ 0xfa07: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 輻
+ 0xfa08: "\x06\x06\x06\x06\x06\x06", // 行
+ 0xfa09: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 降
+ 0xfa0a: "\x06\x06\x06\x06\x06\x06\x06", // 見
+ 0xfa0b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 廓
+ 0xfa0c: "\x01\x03\x05", // 兀
+ 0xfa0d: "\x01\x02\x01\x04\x05\x01\x02\x05\x01\x03\x05\x05\x04", // 嗀
+ 0xfa0e: "\x04\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 﨎
+ 0xfa0f: "\x01\x02\x01\x03\x04\x03\x04\x02\x05\x01", // 﨏
+ 0xfa10: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 塚
+ 0xfa11: "\x02\x05\x02\x04\x01\x04\x03\x01\x02\x05\x01\x02", // 﨑
+ 0xfa12: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 晴
+ 0xfa13: "\x01\x02\x03\x04\x01\x02\x02\x03\x02\x01\x02\x04", // 﨓
+ 0xfa14: "\x01\x02\x03\x04\x04\x04\x03\x01\x03\x04\x03\x01\x01\x02", // 﨔
+ 0xfa15: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 凞
+ 0xfa16: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 猪
+ 0xfa17: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 益
+ 0xfa18: "\x01\x01\x02\x03\x04\x05", // 礼
+ 0xfa19: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 神
+ 0xfa1a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 祥
+ 0xfa1b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 福
+ 0xfa1c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 靖
+ 0xfa1d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 精
+ 0xfa1e: "\x06\x06\x06\x06\x06\x06", // 羽
+ 0xfa1f: "\x01\x02\x02\x03\x05\x01\x01\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 﨟
+ 0xfa20: "\x01\x02\x02\x03\x01\x02\x03\x04\x03\x02\x05\x01\x02\x05\x03\x04\x01\x05\x05\x01\x01\x05\x01\x01", // 蘒
+ 0xfa21: "\x02\x05\x01\x02\x01\x04\x03\x01\x01\x02\x01", // 﨡
+ 0xfa22: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 諸
+ 0xfa23: "\x01\x01\x02\x01\x03\x04\x04\x04\x01\x02", // 﨣
+ 0xfa24: "\x03\x05\x04\x04\x04\x05\x04", // 﨤
+ 0xfa25: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 逸
+ 0xfa26: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 都
+ 0xfa27: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x03\x05\x02\x01", // 﨧
+ 0xfa28: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 﨨
+ 0xfa29: "\x05\x02\x03\x02\x05\x01\x01\x01\x05\x02\x05\x02", // 﨩
+ 0xfa2a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 飯
+ 0xfa2b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 飼
+ 0xfa2c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 館
+ 0xfa2d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 鶴
+ 0x20000: "\x01\x02\x01\x05", // 𠀀
+ 0x20001: "\x01\x05", // 𠀁
+ 0x20002: "\x01\x05", // 𠀂
+ 0x20003: "\x02\x05\x01", // 𠀃
+ 0x20004: "\x05\x02\x01", // 𠀄
+ 0x20005: "\x01\x05\x03", // 𠀅
+ 0x20006: "\x03\x01\x02", // 𠀆
+ 0x20007: "\x02\x05\x01\x01", // 𠀇
+ 0x20008: "\x03\x02\x05\x01", // 𠀈
+ 0x20009: "\x03\x02\x01\x01", // 𠀉
+ 0x2000a: "\x01\x03\x02\x04", // 𠀊
+ 0x2000b: "\x01\x03\x04\x04", // 𠀋
+ 0x2000c: "\x05\x01\x02\x01", // 𠀌
+ 0x2000d: "\x01\x02\x02\x02\x01", // 𠀍
+ 0x2000e: "\x01\x01\x02\x02\x01", // 𠀎
+ 0x2000f: "\x01\x05\x02\x05\x01", // 𠀏
+ 0x20010: "\x02\x05\x01\x02\x01", // 𠀐
+ 0x20011: "\x01\x02\x05\x03\x05", // 𠀑
+ 0x20012: "\x01\x03\x04\x01\x05", // 𠀒
+ 0x20013: "\x05\x01\x05\x02\x01", // 𠀓
+ 0x20014: "\x01\x05\x03\x03\x04", // 𠀔
+ 0x20015: "\x01\x05\x05\x04\x01", // 𠀕
+ 0x20016: "\x01\x02\x02\x01\x04", // 𠀖
+ 0x20017: "\x01\x02\x02\x01\x03", // 𠀗
+ 0x20018: "\x01\x03\x05\x01\x03\x05", // 𠀘
+ 0x20019: "\x01\x02\x05\x01\x02\x05", // 𠀙
+ 0x2001a: "\x01\x05\x04\x02\x03\x04", // 𠀚
+ 0x2001b: "\x01\x01\x02\x05\x03\x04", // 𠀛
+ 0x2001c: "\x01\x02\x02\x03\x04\x01", // 𠀜
+ 0x2001d: "\x01\x02\x04\x02\x01\x01", // 𠀝
+ 0x2001e: "\x01\x02\x05\x01\x02\x05", // 𠀞
+ 0x2001f: "\x01\x05\x05\x02\x03\x04", // 𠀟
+ 0x20020: "\x01\x02\x02\x03\x04\x01", // 𠀠
+ 0x20021: "\x01\x03\x01\x02\x01\x03\x05", // 𠀡
+ 0x20022: "\x01\x02\x01\x02\x01\x01\x05", // 𠀢
+ 0x20023: "\x01\x03\x05\x02\x01\x05\x01", // 𠀣
+ 0x20024: "\x01\x03\x04\x01\x03\x04\x01", // 𠀤
+ 0x20025: "\x01\x02\x02\x05\x01\x01\x01", // 𠀥
+ 0x20026: "\x01\x04\x03\x04\x02\x04\x02", // 𠀦
+ 0x20027: "\x05\x02\x01\x05\x01\x01\x01", // 𠀧
+ 0x20028: "\x01\x02\x04\x03\x05\x04", // 𠀨
+ 0x20029: "\x01\x03\x05\x01\x05\x01\x02", // 𠀩
+ 0x2002a: "\x01\x02\x02\x01\x01\x01\x04", // 𠀪
+ 0x2002b: "\x01\x02\x02\x01\x01\x01\x03", // 𠀫
+ 0x2002c: "\x01\x02\x05\x03\x04\x03\x04\x01", // 𠀬
+ 0x2002d: "\x03\x04\x03\x01\x02\x03\x04\x05", // 𠀭
+ 0x2002e: "\x01\x03\x04\x02\x05\x03\x04\x01", // 𠀮
+ 0x2002f: "\x01\x02\x05\x02\x05\x03\x04\x01", // 𠀯
+ 0x20030: "\x01\x03\x02\x04\x02\x03\x04\x03", // 𠀰
+ 0x20031: "\x01\x03\x02\x04\x03\x04\x03\x04", // 𠀱
+ 0x20032: "\x01\x02\x03\x05\x04\x03\x05\x04", // 𠀲
+ 0x20033: "\x05\x04\x03\x04\x01\x02\x04", // 𠀳
+ 0x20034: "\x05\x02\x02\x05\x02\x01\x02\x04", // 𠀴
+ 0x20035: "\x01\x02\x02\x05\x01\x03\x05\x03\x03", // 𠀵
+ 0x20036: "\x01\x03\x02\x04\x03\x01\x01\x03\x04", // 𠀶
+ 0x20037: "\x01\x02\x05\x01\x02\x05\x01\x02\x02", // 𠀷
+ 0x20038: "\x01\x02\x05\x03\x05\x04\x03\x01\x05", // 𠀸
+ 0x20039: "\x01\x03\x04\x02\x05\x01\x02\x05\x01", // 𠀹
+ 0x2003a: "\x01\x03\x05\x02\x04\x03\x01\x03\x04", // 𠀺
+ 0x2003b: "\x01\x01\x03\x05\x02\x05\x01\x01\x05", // 𠀻
+ 0x2003c: "\x01\x03\x01\x05\x01\x01\x01\x03\x04", // 𠀼
+ 0x2003d: "\x01\x02\x05\x02\x03\x01\x03\x05\x04\x04", // 𠀽
+ 0x2003e: "\x01\x03\x02\x04\x03\x04\x01\x01\x05\x04", // 𠀾
+ 0x2003f: "\x01\x02\x04\x02\x05\x01\x03\x05\x03\x04", // 𠀿
+ 0x20040: "\x01\x02\x02\x01\x05\x03\x02\x01\x05\x04", // 𠁀
+ 0x20041: "\x05\x05\x01\x05\x05\x01\x05\x01\x02\x01", // 𠁁
+ 0x20042: "\x01\x02\x01\x03\x02\x05\x01\x01\x01\x02", // 𠁂
+ 0x20043: "\x01\x03\x02\x04\x01\x02\x05\x01\x02\x03\x04", // 𠁃
+ 0x20044: "\x03\x04\x01\x02\x05\x01\x02\x02\x01\x02\x04", // 𠁄
+ 0x20045: "\x01\x05\x03\x01\x02\x01\x03\x05\x03\x03\x04", // 𠁅
+ 0x20046: "\x01\x03\x02\x04\x01\x02\x02\x05\x01\x01\x01\x01", // 𠁆
+ 0x20047: "\x01\x03\x02\x04\x04\x04\x05\x02\x05\x01\x01\x01", // 𠁇
+ 0x20048: "\x01\x02\x03\x05\x03\x04\x03\x01\x02\x02\x05\x01", // 𠁈
+ 0x20049: "\x01\x03\x05\x03\x02\x05\x01\x01\x01\x01\x02\x01", // 𠁉
+ 0x2004a: "\x01\x03\x04\x03\x04\x03\x04\x03\x04\x01\x03\x04", // 𠁊
+ 0x2004b: "\x01\x03\x02\x04\x01\x02\x05\x01\x01\x02\x03\x04", // 𠁋
+ 0x2004c: "\x01\x03\x02\x04\x01\x02\x02\x01\x01\x01\x05\x02", // 𠁌
+ 0x2004d: "\x01\x03\x02\x04\x04\x03\x01\x01\x02\x01\x01\x03\x04", // 𠁍
+ 0x2004e: "\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04\x01\x02\x04", // 𠁎
+ 0x2004f: "\x01\x02\x05\x01\x04\x05\x01\x02\x01\x05\x05\x01\x02\x01", // 𠁏
+ 0x20050: "\x01\x02\x05\x01\x02\x05\x01\x02\x01\x05\x05\x01\x02\x01", // 𠁐
+ 0x20051: "\x01\x02\x02\x01\x03\x05\x04\x05\x02\x05\x02\x01\x02\x04", // 𠁑
+ 0x20052: "\x01\x03\x02\x04\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 𠁒
+ 0x20053: "\x01\x03\x02\x04\x03\x04\x03\x04\x02\x05\x01\x03\x05\x03\x04", // 𠁓
+ 0x20054: "\x04\x03\x01\x02\x02\x04\x03\x01\x02\x05\x01\x02\x01\x01\x05", // 𠁔
+ 0x20055: "\x01\x02\x05\x01\x02\x04\x05\x01\x02\x01\x05\x05\x01\x02\x01", // 𠁕
+ 0x20056: "\x01\x02\x05\x04\x01\x02\x05\x04\x01\x03\x02\x05\x01\x02\x05\x01\x02", // 𠁖
+ 0x20057: "\x01\x01\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𠁗
+ 0x20058: "\x01\x03\x05\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𠁘
+ 0x20059: "\x01\x03\x02\x04\x04\x01\x01\x01\x02\x05\x01\x03\x01\x02\x01\x01", // 𠁙
+ 0x2005a: "\x01\x02\x04\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𠁚
+ 0x2005b: "\x01\x03\x02\x04\x04\x03\x01\x03\x02\x05\x01\x01\x01\x04\x05\x05", // 𠁛
+ 0x2005c: "\x04\x03\x01\x02\x02\x04\x03\x01\x05\x04\x02\x05\x01\x01\x02\x05\x03", // 𠁜
+ 0x2005d: "\x04\x03\x01\x02\x02\x04\x03\x01\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 𠁝
+ 0x2005e: "\x01\x02\x03\x04\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𠁞
+ 0x2005f: "\x04\x03\x01\x02\x02\x04\x03\x01\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 𠁟
+ 0x20060: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01", // 𠁠
+ 0x20061: "\x02\x05", // 𠁡
+ 0x20062: "\x02\x05", // 𠁢
+ 0x20063: "\x05\x01\x01\x02", // 𠁣
+ 0x20064: "\x02\x05\x03\x05\x01", // 𠁤
+ 0x20065: "\x03\x04\x03\x04\x02", // 𠁥
+ 0x20066: "\x02\x05\x01\x02\x01\x01", // 𠁦
+ 0x20067: "\x02\x05\x01\x02\x05\x01\x02", // 𠁧
+ 0x20068: "\x05\x04\x01\x02\x05\x01\x02", // 𠁨
+ 0x20069: "\x01\x01\x02\x05\x01\x02\x01\x01", // 𠁩
+ 0x2006a: "\x03\x01\x02\x01\x02\x05\x01\x02", // 𠁪
+ 0x2006b: "\x05\x02\x03\x02\x01\x02\x03\x04", // 𠁫
+ 0x2006c: "\x02\x01\x02\x01\x05\x02\x01\x02", // 𠁬
+ 0x2006d: "\x03\x04\x02\x03\x04\x02\x03\x04\x02", // 𠁭
+ 0x2006e: "\x03\x04\x03\x04\x03\x04\x03\x05\x02", // 𠁮
+ 0x2006f: "\x02\x05\x01\x02\x05\x04\x02\x05\x01", // 𠁯
+ 0x20070: "\x01\x01\x02\x05\x01\x01\x01\x05\x01", // 𠁰
+ 0x20071: "\x01\x02\x05\x01\x01\x02\x05\x03\x04\x01", // 𠁱
+ 0x20072: "\x02\x05\x01\x05\x01\x05\x01\x01\x01\x03\x02", // 𠁲
+ 0x20073: "\x01\x01\x01\x02\x02\x01\x01\x01\x02\x05\x02", // 𠁳
+ 0x20074: "\x02\x05\x03\x04\x03\x04\x03\x04\x03\x04\x01\x02", // 𠁴
+ 0x20075: "\x02\x05\x01\x02\x02\x02\x01\x01\x02\x01\x03\x04", // 𠁵
+ 0x20076: "\x02\x05\x01\x02\x01\x05\x02\x05\x01\x01\x01\x03\x05\x04", // 𠁶
+ 0x20077: "\x02\x05\x01\x02\x05\x01\x02\x02\x05\x01\x02\x05\x01\x02", // 𠁷
+ 0x20078: "\x02\x05\x01\x02\x05\x01\x02\x04\x01\x03\x04\x03\x04\x01\x02", // 𠁸
+ 0x20079: "\x02\x05\x01\x02\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 𠁹
+ 0x2007a: "\x02\x05\x01\x02\x05\x01\x02\x01\x02\x01\x04\x03\x01\x01\x01\x02\x04\x05\x04", // 𠁺
+ 0x2007b: "\x02\x05\x01\x02\x05\x01\x02\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01", // 𠁻
+ 0x2007c: "\x04\x04\x04", // 𠁼
+ 0x2007d: "\x03\x05\x04", // 𠁽
+ 0x2007e: "\x05\x05\x04", // 𠁾
+ 0x2007f: "\x02\x02\x01\x01\x04", // 𠁿
+ 0x20080: "\x01\x02\x02\x04\x01", // 𠂀
+ 0x20081: "\x03\x02\x01\x01\x04", // 𠂁
+ 0x20082: "\x04\x02\x05\x05\x01\x02\x01", // 𠂂
+ 0x20083: "\x01\x02\x04\x01\x03\x04\x04\x05\x03\x04", // 𠂃
+ 0x20084: "\x03\x05\x04\x01\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 𠂄
+ 0x20085: "\x04\x01\x05\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01\x03\x05\x04", // 𠂅
+ 0x20086: "\x03\x03", // 𠂆
+ 0x20087: "\x01\x03", // 𠂇
+ 0x20088: "\x05\x03", // 𠂈
+ 0x20089: "\x03\x01", // 𠂉
+ 0x2008a: "\x03\x05", // 𠂊
+ 0x2008b: "\x03\x03\x01", // 𠂋
+ 0x2008c: "\x03\x01\x02", // 𠂌
+ 0x2008d: "\x03\x03\x05", // 𠂍
+ 0x2008e: "\x03\x05\x03", // 𠂎
+ 0x2008f: "\x05\x03\x01\x05", // 𠂏
+ 0x20090: "\x05\x03\x04\x04", // 𠂐
+ 0x20091: "\x03\x05\x04\x03", // 𠂑
+ 0x20092: "\x03\x01\x02\x01", // 𠂒
+ 0x20093: "\x03\x03\x05\x04", // 𠂓
+ 0x20094: "\x03\x05\x02\x03", // 𠂔
+ 0x20095: "\x03\x01\x01\x03\x04", // 𠂕
+ 0x20096: "\x03\x01\x02\x03\x03", // 𠂖
+ 0x20097: "\x03\x05\x03\x05\x04", // 𠂗
+ 0x20098: "\x03\x03\x05\x05\x04", // 𠂘
+ 0x20099: "\x03\x01\x01\x02\x03", // 𠂙
+ 0x2009a: "\x03\x01\x03\x04\x03", // 𠂚
+ 0x2009b: "\x03\x02\x01\x02\x01", // 𠂛
+ 0x2009c: "\x03\x02\x01\x02\x01", // 𠂜
+ 0x2009d: "\x03\x02\x05\x01\x02", // 𠂝
+ 0x2009e: "\x03\x03\x04\x01\x05", // 𠂞
+ 0x2009f: "\x03\x04\x03\x01\x03", // 𠂟
+ 0x200a0: "\x03\x02\x04\x03\x01\x05", // 𠂠
+ 0x200a1: "\x03\x05\x01\x01\x02", // 𠂡
+ 0x200a2: "\x03\x03\x03\x05\x03\x04", // 𠂢
+ 0x200a3: "\x03\x03\x05\x01\x01\x05", // 𠂣
+ 0x200a4: "\x03\x02\x05\x01\x05\x01", // 𠂤
+ 0x200a5: "\x03\x02\x05\x01\x02\x02", // 𠂥
+ 0x200a6: "\x03\x02\x01\x01\x02\x01", // 𠂦
+ 0x200a7: "\x03\x03\x05\x01\x05\x04", // 𠂧
+ 0x200a8: "\x03\x02\x05\x01\x02\x02", // 𠂨
+ 0x200a9: "\x03\x02\x01\x01\x03\x02\x01\x01", // 𠂩
+ 0x200aa: "\x05\x03\x04\x01\x02\x04", // 𠂪
+ 0x200ab: "\x04\x01\x02\x04\x05\x03", // 𠂫
+ 0x200ac: "\x03\x03\x05\x02\x01\x05", // 𠂬
+ 0x200ad: "\x03\x04\x04\x04\x04\x04", // 𠂭
+ 0x200ae: "\x03\x03\x01\x02\x05\x05", // 𠂮
+ 0x200af: "\x03\x01\x02\x02\x01\x01\x02", // 𠂯
+ 0x200b0: "\x03\x03\x01\x05\x02\x05\x02", // 𠂰
+ 0x200b1: "\x02\x01\x02\x01\x01\x05\x05\x03", // 𠂱
+ 0x200b2: "\x03\x01\x04\x03\x01\x02\x03\x04", // 𠂲
+ 0x200b3: "\x03\x04\x05\x01\x05\x05\x04\x02", // 𠂳
+ 0x200b4: "\x03\x01\x01\x03\x02\x05\x03\x04\x01", // 𠂴
+ 0x200b5: "\x03\x02\x01\x02\x01\x01\x01\x02", // 𠂵
+ 0x200b6: "\x03\x02\x05\x01\x01\x05\x03\x01", // 𠂶
+ 0x200b7: "\x03\x01\x03\x04\x04\x03\x01\x01\x02", // 𠂷
+ 0x200b8: "\x03\x03\x05\x01\x02\x01\x01\x03\x02", // 𠂸
+ 0x200b9: "\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𠂹
+ 0x200ba: "\x03\x02\x05\x03\x04\x01\x01\x02\x02\x01", // 𠂺
+ 0x200bb: "\x03\x01\x02\x05\x01\x02\x03\x05\x03\x04", // 𠂻
+ 0x200bc: "\x03\x01\x05\x01\x05\x02\x05\x01\x05\x01", // 𠂼
+ 0x200bd: "\x03\x02\x05\x01\x02\x01\x01\x05\x03\x04", // 𠂽
+ 0x200be: "\x03\x02\x05\x01\x05\x01\x01\x03\x02\x04", // 𠂾
+ 0x200bf: "\x03\x03\x04\x03\x04\x03\x04\x03\x04\x01\x02", // 𠂿
+ 0x200c0: "\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x05", // 𠃀
+ 0x200c1: "\x03\x02\x05\x01\x02\x01\x03\x03\x05\x03\x04", // 𠃁
+ 0x200c2: "\x03\x02\x05\x01\x05\x01\x01\x03\x02\x04\x01", // 𠃂
+ 0x200c3: "\x03\x03\x01\x05\x05\x01\x02\x05\x01\x01\x02\x04", // 𠃃
+ 0x200c4: "\x03\x03\x03\x02\x03\x04\x03\x03\x03\x02\x03\x04", // 𠃄
+ 0x200c5: "\x03\x03\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𠃅
+ 0x200c6: "\x03\x02\x05\x01\x05\x01\x03\x04\x03\x01\x02\x03\x04", // 𠃆
+ 0x200c7: "\x03\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01", // 𠃇
+ 0x200c8: "\x03\x02\x01\x01\x01\x05\x02\x02\x01\x03\x05\x05\x02\x02\x01\x03\x05\x05\x02\x02\x01\x03\x05", // 𠃈
+ 0x200c9: "\x05", // 𠃉
+ 0x200ca: "\x05", // 𠃊
+ 0x200cb: "\x05", // 𠃋
+ 0x200cc: "\x05", // 𠃌
+ 0x200cd: "\x05", // 𠃍
+ 0x200ce: "\x02\x01", // 𠃎
+ 0x200cf: "\x05\x05", // 𠃏
+ 0x200d0: "\x05\x05", // 𠃐
+ 0x200d1: "\x05", // 𠃑
+ 0x200d2: "\x01\x02\x05", // 𠃒
+ 0x200d3: "\x05\x03\x03", // 𠃓
+ 0x200d4: "\x05\x03\x05", // 𠃔
+ 0x200d5: "\x03\x05\x05\x02", // 𠃕
+ 0x200d6: "\x01\x02\x01\x05", // 𠃖
+ 0x200d7: "\x01\x01\x02\x05", // 𠃗
+ 0x200d8: "\x03\x03\x01\x05", // 𠃘
+ 0x200d9: "\x03\x05\x03\x05", // 𠃙
+ 0x200da: "\x05\x01\x05\x05", // 𠃚
+ 0x200db: "\x02\x05\x01\x01", // 𠃛
+ 0x200dc: "\x05\x02\x01\x03", // 𠃜
+ 0x200dd: "\x05\x02\x03\x04", // 𠃝
+ 0x200de: "\x01\x05\x05\x05\x05", // 𠃞
+ 0x200df: "\x01\x02\x02\x01\x05", // 𠃟
+ 0x200e0: "\x05\x04\x01\x04\x01", // 𠃠
+ 0x200e1: "\x05\x04\x01\x02\x05", // 𠃡
+ 0x200e2: "\x01\x05\x01\x03\x01\x02", // 𠃢
+ 0x200e3: "\x05\x02\x03\x04\x03", // 𠃣
+ 0x200e4: "\x03\x05\x01\x03\x02\x05", // 𠃤
+ 0x200e5: "\x05\x01\x01\x02\x03\x04", // 𠃥
+ 0x200e6: "\x02\x05\x01\x02\x01\x05", // 𠃦
+ 0x200e7: "\x05\x03\x04\x05\x03\x04", // 𠃧
+ 0x200e8: "\x05\x05\x02\x05\x02\x03", // 𠃨
+ 0x200e9: "\x03\x05\x03\x04\x03\x03\x03", // 𠃩
+ 0x200ea: "\x02\x05\x01\x02\x02\x01\x05", // 𠃪
+ 0x200eb: "\x01\x02\x05\x01\x01\x02\x05", // 𠃫
+ 0x200ec: "\x05\x01\x05\x05\x01\x01\x05", // 𠃬
+ 0x200ed: "\x03\x03\x04\x04\x02\x05\x01\x05", // 𠃭
+ 0x200ee: "\x05\x05\x01\x03\x02\x05\x03\x04", // 𠃮
+ 0x200ef: "\x03\x01\x02\x03\x04\x05\x03\x05", // 𠃯
+ 0x200f0: "\x05\x03\x04\x03\x05\x01\x01\x02", // 𠃰
+ 0x200f1: "\x01\x02\x04\x05\x05\x03\x01\x05", // 𠃱
+ 0x200f2: "\x03\x02\x04\x01\x01\x01\x02\x01\x05", // 𠃲
+ 0x200f3: "\x03\x05\x02\x05\x01\x03\x02\x05\x01", // 𠃳
+ 0x200f4: "\x01\x05\x04\x03\x05\x04\x01\x05", // 𠃴
+ 0x200f5: "\x02\x01\x02\x05\x01\x01\x01\x02\x05", // 𠃵
+ 0x200f6: "\x03\x04\x04\x03\x04\x05\x05\x04\x05", // 𠃶
+ 0x200f7: "\x03\x01\x02\x03\x04\x05\x03\x05", // 𠃷
+ 0x200f8: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x05", // 𠃸
+ 0x200f9: "\x03\x04\x04\x03\x01\x02\x02\x05\x01\x05", // 𠃹
+ 0x200fa: "\x05\x04\x03\x01\x03\x02\x05\x01\x01\x01", // 𠃺
+ 0x200fb: "\x01\x01\x03\x05\x03\x04\x01\x01\x01\x05", // 𠃻
+ 0x200fc: "\x03\x02\x05\x03\x04\x01\x01\x02\x02\x01\x05", // 𠃼
+ 0x200fd: "\x03\x04\x05\x04\x05\x04\x01\x05\x04\x01\x05", // 𠃽
+ 0x200fe: "\x02\x05\x03\x04\x03\x04\x03\x04\x03\x04\x05", // 𠃾
+ 0x200ff: "\x03\x04\x04\x03\x04\x04\x05\x01\x02\x04\x05", // 𠃿
+ 0x20100: "\x03\x04\x04\x03\x05\x02\x01\x05\x01\x01\x02", // 𠄀
+ 0x20101: "\x03\x05\x04\x03\x01\x02\x05\x03\x05\x01\x01", // 𠄁
+ 0x20102: "\x03\x04\x04\x03\x05\x05\x04\x04\x04\x04\x04\x05", // 𠄂
+ 0x20103: "\x01\x02\x03\x04\x02\x05\x01\x01\x01\x05\x03\x01\x05", // 𠄃
+ 0x20104: "\x02\x05\x03\x04\x02\x05\x01\x01\x01\x05\x03\x01\x05", // 𠄄
+ 0x20105: "\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x02\x03\x04\x05", // 𠄅
+ 0x20106: "\x03\x05\x01\x03\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02", // 𠄆
+ 0x20107: "\x03\x04\x04\x03\x05\x02\x01\x05\x03\x05\x04\x02\x05\x01", // 𠄇
+ 0x20108: "\x04\x03\x01\x02\x03\x04\x03\x05\x04\x05\x05", // 𠄈
+ 0x20109: "\x03\x04\x04\x03\x05\x02\x01\x05\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𠄉
+ 0x2010a: "\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01\x01\x05\x03\x01\x05", // 𠄊
+ 0x2010b: "\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x05\x03\x01\x05", // 𠄋
+ 0x2010c: "\x05", // 𠄌
+ 0x2010d: "\x05\x02", // 𠄍
+ 0x2010e: "\x05", // 𠄎
+ 0x2010f: "\x05\x05", // 𠄏
+ 0x20110: "\x05\x02", // 𠄐
+ 0x20111: "\x05\x02\x05", // 𠄑
+ 0x20112: "\x03\x01\x02\x03", // 𠄒
+ 0x20113: "\x03\x05\x04\x02", // 𠄓
+ 0x20114: "\x05\x04\x05\x05", // 𠄔
+ 0x20115: "\x05\x02\x05\x02\x05\x02", // 𠄕
+ 0x20116: "\x03\x04\x01\x05\x04\x01\x02", // 𠄖
+ 0x20117: "\x03\x05\x01\x02\x01\x05\x02", // 𠄗
+ 0x20118: "\x05\x02\x01\x01\x05\x03\x04", // 𠄘
+ 0x20119: "\x01\x02\x05\x01\x05\x01\x01\x02", // 𠄙
+ 0x2011a: "\x03\x04\x03\x01\x02\x03\x04\x01\x05\x01\x02", // 𠄚
+ 0x2011b: "\x05\x04\x05\x02\x03\x02\x05\x03\x03\x02\x05\x02", // 𠄛
+ 0x2011c: "\x01\x02\x05\x01\x05\x01\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 𠄜
+ 0x2011d: "\x05\x04\x05\x02\x03\x05\x02\x05\x03\x04\x03\x05\x04\x04\x04\x04", // 𠄝
+ 0x2011e: "\x01\x01", // 𠄞
+ 0x2011f: "\x01\x01", // 𠄟
+ 0x20120: "\x01\x01", // 𠄠
+ 0x20121: "\x01\x03\x04\x01", // 𠄡
+ 0x20122: "\x01\x02\x05\x05\x01\x05\x01", // 𠄢
+ 0x20123: "\x01\x02\x05\x03\x03\x01", // 𠄣
+ 0x20124: "\x03\x05\x02\x05\x01\x01", // 𠄤
+ 0x20125: "\x01\x01\x05\x01\x01\x05", // 𠄥
+ 0x20126: "\x01\x01\x03\x05\x04", // 𠄦
+ 0x20127: "\x05\x02\x01\x05\x01\x01", // 𠄧
+ 0x20128: "\x01\x03\x05\x04\x02\x04\x01", // 𠄨
+ 0x20129: "\x05\x04\x02\x05\x01\x01\x01", // 𠄩
+ 0x2012a: "\x05\x02\x05\x03\x04\x01\x01", // 𠄪
+ 0x2012b: "\x01\x02\x02\x01\x03\x02", // 𠄫
+ 0x2012c: "\x01\x02\x05\x02\x03\x04\x01\x01", // 𠄬
+ 0x2012d: "\x01\x03\x03\x05\x04\x01\x04\x01", // 𠄭
+ 0x2012e: "\x01\x05\x05\x04\x05\x05\x04\x01", // 𠄮
+ 0x2012f: "\x01\x01\x05\x01\x02\x03\x04\x01", // 𠄯
+ 0x20130: "\x01\x01\x02\x05\x04\x03\x04\x04\x01", // 𠄰
+ 0x20131: "\x01\x01\x02\x01\x02\x05\x01\x02\x05", // 𠄱
+ 0x20132: "\x01\x02\x05\x01\x02\x05\x01\x01\x05", // 𠄲
+ 0x20133: "\x01\x01\x01\x02\x01\x05\x04\x05\x03", // 𠄳
+ 0x20134: "\x01\x01\x05\x04\x05\x01\x05\x03\x02", // 𠄴
+ 0x20135: "\x01\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 𠄵
+ 0x20136: "\x03\x02\x03\x01\x02\x01\x01\x02\x05\x01", // 𠄶
+ 0x20137: "\x05\x05\x05\x05\x05\x05\x03\x05\x01", // 𠄷
+ 0x20138: "\x01\x05\x02\x05\x01\x02\x05\x01\x01", // 𠄸
+ 0x20139: "\x01\x03\x05\x02\x05\x01\x03\x01\x03\x04\x01", // 𠄹
+ 0x2013a: "\x01\x01\x03\x02\x02\x05\x01\x01\x01\x03\x05", // 𠄺
+ 0x2013b: "\x01\x02\x05\x01\x01\x02\x03\x04\x01\x02\x03\x04", // 𠄻
+ 0x2013c: "\x01\x02\x02\x05\x04\x03\x01\x01\x02\x01\x02\x05\x01", // 𠄼
+ 0x2013d: "\x01\x01\x01\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01", // 𠄽
+ 0x2013e: "\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 𠄾
+ 0x2013f: "\x01\x01\x02\x05\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 𠄿
+ 0x20140: "\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04\x01\x01\x05\x04", // 𠅀
+ 0x20141: "\x04\x01\x02\x01", // 𠅁
+ 0x20142: "\x04\x01\x05\x02\x03", // 𠅂
+ 0x20143: "\x04\x05\x03\x04\x03\x04", // 𠅃
+ 0x20144: "\x04\x01\x05\x03\x02\x04", // 𠅄
+ 0x20145: "\x04\x01\x01\x02\x03\x04", // 𠅅
+ 0x20146: "\x04\x01\x05\x03\x03\x04", // 𠅆
+ 0x20147: "\x04\x03\x01\x04\x01\x05", // 𠅇
+ 0x20148: "\x04\x01\x01\x02\x05\x03\x04", // 𠅈
+ 0x20149: "\x04\x01\x05\x02\x04\x03\x01", // 𠅉
+ 0x2014a: "\x04\x01\x02\x05\x01\x01\x02", // 𠅊
+ 0x2014b: "\x04\x01\x05\x05\x04\x01\x02", // 𠅋
+ 0x2014c: "\x04\x01\x02\x05\x01\x01\x03\x04", // 𠅌
+ 0x2014d: "\x01\x01\x02\x03\x04\x04\x01\x05", // 𠅍
+ 0x2014e: "\x04\x01\x05\x03\x01\x01\x03\x04", // 𠅎
+ 0x2014f: "\x04\x01\x02\x05\x01\x05\x01\x03", // 𠅏
+ 0x20150: "\x03\x01\x01\x03\x04\x04\x01\x05", // 𠅐
+ 0x20151: "\x04\x01\x05\x02\x03\x01\x03\x04", // 𠅑
+ 0x20152: "\x04\x01\x05\x01\x01\x02\x03\x04", // 𠅒
+ 0x20153: "\x04\x01\x02\x05\x03\x04\x03\x04\x01", // 𠅓
+ 0x20154: "\x04\x01\x02\x05\x01\x05\x02\x01\x05", // 𠅔
+ 0x20155: "\x04\x01\x03\x04\x03\x04\x05\x03\x04", // 𠅕
+ 0x20156: "\x04\x01\x02\x05\x01\x02\x05\x01\x01\x02", // 𠅖
+ 0x20157: "\x01\x02\x04\x01\x03\x02\x03\x05\x04\x04", // 𠅗
+ 0x20158: "\x04\x01\x02\x02\x01\x01\x04\x05\x01\x02", // 𠅘
+ 0x20159: "\x04\x01\x02\x02\x01\x01\x04\x05\x03\x05", // 𠅙
+ 0x2015a: "\x04\x01\x03\x02\x01\x02\x05\x01\x03\x04", // 𠅚
+ 0x2015b: "\x04\x01\x03\x04\x05\x02\x05\x05\x04\x02", // 𠅛
+ 0x2015c: "\x04\x01\x03\x02\x01\x03\x05\x04\x02\x02", // 𠅜
+ 0x2015d: "\x04\x01\x02\x05\x01\x04\x05\x05\x02\x01", // 𠅝
+ 0x2015e: "\x04\x01\x03\x05\x04\x01\x05\x02\x03\x05", // 𠅞
+ 0x2015f: "\x04\x01\x01\x02\x02\x01\x01\x02\x02\x01\x03\x05", // 𠅟
+ 0x20160: "\x04\x01\x02\x05\x01\x02\x05\x01\x05\x02\x02", // 𠅠
+ 0x20161: "\x04\x01\x02\x05\x01\x05\x01\x03\x05\x01\x03", // 𠅡
+ 0x20162: "\x04\x01\x02\x02\x01\x01\x04\x05\x03\x01\x05", // 𠅢
+ 0x20163: "\x04\x01\x03\x05\x05\x04\x03\x05\x03\x05\x04", // 𠅣
+ 0x20164: "\x04\x01\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 𠅤
+ 0x20165: "\x04\x01\x02\x05\x01\x02\x01\x03\x05\x04\x01", // 𠅥
+ 0x20166: "\x04\x01\x03\x05\x02\x05\x01\x03\x05\x05\x03", // 𠅦
+ 0x20167: "\x04\x01\x02\x05\x01\x02\x05\x01\x01\x03\x04", // 𠅧
+ 0x20168: "\x04\x01\x03\x01\x02\x01\x03\x05\x03\x05\x04", // 𠅨
+ 0x20169: "\x04\x01\x02\x05\x01\x02\x05\x01\x01\x03\x05\x04", // 𠅩
+ 0x2016a: "\x04\x01\x03\x05\x01\x01\x02\x01\x01\x01\x02\x01", // 𠅪
+ 0x2016b: "\x04\x01\x03\x04\x03\x04\x03\x04\x03\x04\x03\x05", // 𠅫
+ 0x2016c: "\x04\x01\x03\x01\x02\x01\x03\x05\x02\x01\x05\x04", // 𠅬
+ 0x2016d: "\x04\x01\x02\x05\x01\x02\x01\x01\x01\x05\x03\x05", // 𠅭
+ 0x2016e: "\x04\x01\x02\x05\x01\x02\x03\x04\x01\x01\x03\x05", // 𠅮
+ 0x2016f: "\x04\x01\x03\x02\x03\x04\x04\x01\x03\x02\x03\x04", // 𠅯
+ 0x20170: "\x04\x01\x01\x02\x01\x03\x01\x01\x03\x04\x01\x05", // 𠅰
+ 0x20171: "\x03\x05\x05\x04\x04\x01\x03\x02\x03\x05\x04\x04", // 𠅱
+ 0x20172: "\x04\x01\x03\x02\x01\x01\x05\x01\x01\x01\x03\x04", // 𠅲
+ 0x20173: "\x04\x01\x05\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𠅳
+ 0x20174: "\x04\x01\x05\x01\x01\x05\x04\x05\x03\x04\x01\x02\x01", // 𠅴
+ 0x20175: "\x04\x01\x05\x02\x01\x03\x03\x05\x04\x04\x01\x02\x04", // 𠅵
+ 0x20176: "\x04\x01\x02\x02\x01\x01\x04\x05\x01\x02\x03\x05\x04", // 𠅶
+ 0x20177: "\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02", // 𠅷
+ 0x20178: "\x04\x01\x02\x05\x01\x04\x05\x01\x02\x01\x03\x05\x03", // 𠅸
+ 0x20179: "\x04\x01\x02\x05\x01\x04\x05\x01\x02\x01\x05\x05\x04", // 𠅹
+ 0x2017a: "\x04\x01\x02\x05\x05\x03\x04\x01\x05\x01\x02\x03\x04", // 𠅺
+ 0x2017b: "\x04\x01\x05\x04\x04\x01\x02\x05\x01\x02\x05\x01\x01", // 𠅻
+ 0x2017c: "\x04\x01\x05\x03\x01\x02\x03\x04\x03\x01\x01\x03\x04", // 𠅼
+ 0x2017d: "\x04\x01\x05\x03\x05\x04\x01\x02\x05\x01\x02\x03\x04", // 𠅽
+ 0x2017e: "\x04\x01\x03\x04\x03\x05\x02\x05\x01\x02\x05\x01\x01\x05", // 𠅾
+ 0x2017f: "\x04\x01\x02\x05\x01\x04\x05\x01\x01\x02\x05\x01\x01\x01", // 𠅿
+ 0x20180: "\x04\x01\x02\x05\x01\x04\x05\x01\x02\x05\x01\x01\x02", // 𠆀
+ 0x20181: "\x04\x01\x02\x05\x01\x02\x01\x03\x03\x05\x04\x03\x03\x05\x04", // 𠆁
+ 0x20182: "\x04\x01\x02\x05\x01\x03\x04\x03\x04\x02\x03\x04\x03\x04\x02", // 𠆂
+ 0x20183: "\x04\x01\x02\x05\x01\x02\x03\x04\x04\x05\x02\x05\x01\x03\x05", // 𠆃
+ 0x20184: "\x04\x01\x03\x04\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𠆄
+ 0x20185: "\x04\x01\x03\x02\x02\x05\x01\x01\x02\x03\x04\x01\x02\x03\x04", // 𠆅
+ 0x20186: "\x04\x01\x02\x05\x01\x02\x05\x01\x02\x01\x02\x01\x01\x01\x02", // 𠆆
+ 0x20187: "\x04\x01\x03\x02\x05\x03\x04\x03\x01\x02\x03\x04\x01\x03\x04", // 𠆇
+ 0x20188: "\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x02\x05\x05\x03\x01", // 𠆈
+ 0x20189: "\x04\x01\x05\x04\x01\x01\x01\x02\x02\x01\x02\x01\x02\x01\x02", // 𠆉
+ 0x2018a: "\x04\x01\x02\x05\x01\x04\x05\x01\x02\x01\x05\x05\x01\x02\x01", // 𠆊
+ 0x2018b: "\x04\x01\x04\x03\x02\x05\x04\x03\x03\x04\x03\x04\x01\x02\x05\x01", // 𠆋
+ 0x2018c: "\x04\x01\x02\x05\x01\x02\x05\x01\x01\x03\x05\x03\x02\x05\x01\x01", // 𠆌
+ 0x2018d: "\x04\x01\x03\x05\x01\x01\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 𠆍
+ 0x2018e: "\x04\x01\x02\x05\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x05\x04", // 𠆎
+ 0x2018f: "\x04\x01\x02\x05\x01\x03\x04\x02\x03\x04\x02\x03\x04\x02\x03\x04\x02", // 𠆏
+ 0x20190: "\x04\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x04\x04\x04\x04", // 𠆐
+ 0x20191: "\x04\x01\x02\x05\x01\x01\x02\x02\x05\x01\x02\x05\x01\x01\x03\x04", // 𠆑
+ 0x20192: "\x04\x01\x02\x05\x01\x04\x05\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 𠆒
+ 0x20193: "\x04\x01\x02\x05\x01\x05\x02\x01\x04\x01\x03\x02\x03\x05\x04\x04", // 𠆓
+ 0x20194: "\x04\x01\x02\x05\x01\x05\x02\x01\x03\x02\x01\x05\x01\x01\x03\x05", // 𠆔
+ 0x20195: "\x03\x01\x01\x03\x03\x01\x01\x02\x04\x01\x03\x02\x03\x05\x04\x04", // 𠆕
+ 0x20196: "\x04\x01\x04\x01\x05\x03\x03\x05\x01\x05\x03\x04\x01\x02\x05\x01", // 𠆖
+ 0x20197: "\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x04\x01\x02\x05\x01", // 𠆗
+ 0x20198: "\x04\x01\x04\x03\x04\x05\x03\x04\x02\x05\x01\x01\x03\x05\x03\x04", // 𠆘
+ 0x20199: "\x04\x01\x02\x05\x01\x04\x05\x01\x02\x04\x01\x03\x02\x03\x05\x04\x04", // 𠆙
+ 0x2019a: "\x04\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x01\x03\x05\x04\x03\x05", // 𠆚
+ 0x2019b: "\x04\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 𠆛
+ 0x2019c: "\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x01\x05\x01\x01\x02\x05\x03\x01", // 𠆜
+ 0x2019d: "\x04\x01\x02\x05\x01\x01\x02\x05\x01\x01\x03\x04\x03\x04\x01\x03\x05\x03\x04", // 𠆝
+ 0x2019e: "\x04\x01\x02\x05\x01\x05\x02\x01\x02\x05\x02\x05\x01\x02\x05\x01\x01\x01", // 𠆞
+ 0x2019f: "\x04\x01\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 𠆟
+ 0x201a0: "\x04\x01\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x04\x05\x01\x03\x02\x05\x01\x01\x01\x04\x04\x04\x04", // 𠆠
+ 0x201a1: "\x04\x01\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x04\x05\x01\x02\x03\x04\x01\x02\x03\x04\x04\x04\x04\x04", // 𠆡
+ 0x201a2: "\x03\x04", // 𠆢
+ 0x201a3: "\x01\x03\x04", // 𠆣
+ 0x201a4: "\x03\x04\x02", // 𠆤
+ 0x201a5: "\x03\x03\x04", // 𠆥
+ 0x201a6: "\x03\x04\x01\x05", // 𠆦
+ 0x201a7: "\x03\x02\x03\x04", // 𠆧
+ 0x201a8: "\x03\x02\x05\x02", // 𠆨
+ 0x201a9: "\x03\x02\x03\x05\x04", // 𠆩
+ 0x201aa: "\x03\x04\x02\x03\x05", // 𠆪
+ 0x201ab: "\x03\x02\x01\x02\x03", // 𠆫
+ 0x201ac: "\x03\x02\x01\x01\x05", // 𠆬
+ 0x201ad: "\x03\x04\x01\x05", // 𠆭
+ 0x201ae: "\x03\x02\x01\x05\x03", // 𠆮
+ 0x201af: "\x03\x02\x03\x02\x02", // 𠆯
+ 0x201b0: "\x03\x02\x03\x05\x02", // 𠆰
+ 0x201b1: "\x03\x02\x04\x01\x02", // 𠆱
+ 0x201b2: "\x03\x02\x04\x01\x03", // 𠆲
+ 0x201b3: "\x03\x04\x02\x01\x01", // 𠆳
+ 0x201b4: "\x01\x02\x05\x02\x03\x04", // 𠆴
+ 0x201b5: "\x03\x02\x03\x04\x01\x05", // 𠆵
+ 0x201b6: "\x03\x02\x04\x05\x03\x05", // 𠆶
+ 0x201b7: "\x03\x05\x03\x04\x03\x02", // 𠆷
+ 0x201b8: "\x03\x02\x02\x01\x05\x04", // 𠆸
+ 0x201b9: "\x03\x04\x05\x03\x03\x03", // 𠆹
+ 0x201ba: "\x03\x02\x05\x05\x04\x02", // 𠆺
+ 0x201bb: "\x03\x02\x01\x01\x03\x02", // 𠆻
+ 0x201bc: "\x03\x02\x04\x01\x05\x02", // 𠆼
+ 0x201bd: "\x03\x02\x01\x03\x05\x04", // 𠆽
+ 0x201be: "\x03\x02\x04\x01\x03\x04", // 𠆾
+ 0x201bf: "\x03\x02\x03\x05\x05\x01", // 𠆿
+ 0x201c0: "\x03\x04\x04\x04\x05\x05\x04", // 𠇀
+ 0x201c1: "\x03\x02\x05\x01\x05\x02", // 𠇁
+ 0x201c2: "\x03\x02\x02\x05\x04\x01", // 𠇂
+ 0x201c3: "\x03\x04\x03\x02\x01\x05", // 𠇃
+ 0x201c4: "\x03\x04\x01\x01\x03\x04", // 𠇄
+ 0x201c5: "\x03\x02\x01\x02\x05\x01", // 𠇅
+ 0x201c6: "\x03\x02\x01\x02\x05\x02", // 𠇆
+ 0x201c7: "\x03\x02\x01\x01\x02\x03\x04", // 𠇇
+ 0x201c8: "\x03\x02\x02\x01\x02\x01", // 𠇈
+ 0x201c9: "\x03\x02\x02\x03\x05\x04", // 𠇉
+ 0x201ca: "\x03\x02\x03\x05\x03\x04", // 𠇊
+ 0x201cb: "\x03\x04\x01\x01\x03\x02", // 𠇋
+ 0x201cc: "\x01\x01\x05\x04\x03\x04", // 𠇌
+ 0x201cd: "\x03\x04\x02\x04\x04\x04", // 𠇍
+ 0x201ce: "\x03\x04\x03\x01\x02\x01", // 𠇎
+ 0x201cf: "\x03\x04\x03\x04\x01\x05", // 𠇏
+ 0x201d0: "\x03\x02\x01\x05\x01", // 𠇐
+ 0x201d1: "\x03\x02\x03\x04\x03\x04", // 𠇑
+ 0x201d2: "\x03\x02\x03\x04\x03\x04", // 𠇒
+ 0x201d3: "\x03\x02\x03\x05\x05\x04", // 𠇓
+ 0x201d4: "\x03\x02\x03\x01\x01\x05", // 𠇔
+ 0x201d5: "\x03\x02\x05\x02\x01\x05", // 𠇕
+ 0x201d6: "\x03\x02\x03\x04\x05\x04", // 𠇖
+ 0x201d7: "\x03\x02\x03\x03\x05\x04\x04", // 𠇗
+ 0x201d8: "\x03\x02\x01\x05\x05\x03\x04", // 𠇘
+ 0x201d9: "\x03\x02\x01\x01\x02\x05\x01", // 𠇙
+ 0x201da: "\x03\x04\x02\x05\x01\x01\x02", // 𠇚
+ 0x201db: "\x03\x02\x05\x01\x02\x05\x02", // 𠇛
+ 0x201dc: "\x03\x04\x05\x04\x05\x02\x05", // 𠇜
+ 0x201dd: "\x03\x02\x02\x05\x01\x01\x01", // 𠇝
+ 0x201de: "\x03\x02\x01\x02\x05\x04\x04", // 𠇞
+ 0x201df: "\x03\x02\x04\x05\x05\x03\x04", // 𠇟
+ 0x201e0: "\x01\x01\x02\x03\x04\x03\x04", // 𠇠
+ 0x201e1: "\x03\x02\x05\x01\x02\x03\x05", // 𠇡
+ 0x201e2: "\x03\x02\x01\x03\x05\x03\x04", // 𠇢
+ 0x201e3: "\x03\x02\x01\x01\x02\x03\x04", // 𠇣
+ 0x201e4: "\x03\x02\x01\x01\x02\x01\x04", // 𠇤
+ 0x201e5: "\x03\x02\x02\x04\x01\x03\x04", // 𠇥
+ 0x201e6: "\x03\x02\x02\x05\x02\x01\x01", // 𠇦
+ 0x201e7: "\x03\x04\x03\x02\x03\x05\x04", // 𠇧
+ 0x201e8: "\x03\x04\x03\x04\x01\x01\x02", // 𠇨
+ 0x201e9: "\x03\x02\x03\x05\x03\x05\x02", // 𠇩
+ 0x201ea: "\x03\x02\x03\x01\x01\x01\x02", // 𠇪
+ 0x201eb: "\x03\x02\x03\x04\x01\x01\x02", // 𠇫
+ 0x201ec: "\x01\x02\x03\x03\x01\x03\x04", // 𠇬
+ 0x201ed: "\x03\x04\x01\x02\x05\x01\x02", // 𠇭
+ 0x201ee: "\x03\x04\x01\x02\x05\x03\x04", // 𠇮
+ 0x201ef: "\x03\x04\x03\x02\x01\x02\x01", // 𠇯
+ 0x201f0: "\x03\x04\x04\x01\x02\x05\x02", // 𠇰
+ 0x201f1: "\x03\x02\x01\x01\x02\x03\x04", // 𠇱
+ 0x201f2: "\x03\x02\x01\x02\x03\x04\x04", // 𠇲
+ 0x201f3: "\x03\x02\x01\x03\x04\x03\x05", // 𠇳
+ 0x201f4: "\x03\x02\x01\x03\x04\x05\x03", // 𠇴
+ 0x201f5: "\x03\x02\x02\x03\x04\x03\x05", // 𠇵
+ 0x201f6: "\x03\x02\x02\x05\x02\x05\x01", // 𠇶
+ 0x201f7: "\x03\x02\x03\x01\x01\x02\x01", // 𠇷
+ 0x201f8: "\x03\x02\x04\x01\x03\x04\x01", // 𠇸
+ 0x201f9: "\x03\x02\x05\x04\x01\x02\x01", // 𠇹
+ 0x201fa: "\x03\x02\x02\x05\x01\x01\x02", // 𠇺
+ 0x201fb: "\x03\x02\x02\x05\x02\x02\x01", // 𠇻
+ 0x201fc: "\x03\x02\x03\x04\x03\x01\x02", // 𠇼
+ 0x201fd: "\x03\x02\x01\x02\x05\x02\x05", // 𠇽
+ 0x201fe: "\x03\x02\x01\x02\x03\x04\x01", // 𠇾
+ 0x201ff: "\x05\x02\x02\x01\x02\x03\x04", // 𠇿
+ 0x20200: "\x03\x02\x05\x03\x04\x05\x03", // 𠈀
+ 0x20201: "\x03\x02\x03\x03\x01\x01\x05", // 𠈁
+ 0x20202: "\x03\x04\x05\x04\x02\x05\x01", // 𠈂
+ 0x20203: "\x03\x02\x05\x04\x01\x02\x03\x04", // 𠈃
+ 0x20204: "\x03\x02\x01\x02\x05\x01\x02\x05", // 𠈄
+ 0x20205: "\x03\x02\x05\x02\x03\x01\x03\x04", // 𠈅
+ 0x20206: "\x03\x02\x03\x02\x05\x01\x05\x01", // 𠈆
+ 0x20207: "\x03\x02\x01\x02\x05\x03\x04\x01", // 𠈇
+ 0x20208: "\x03\x02\x03\x02\x05\x03\x04\x01", // 𠈈
+ 0x20209: "\x03\x02\x02\x05\x01\x05\x05\x05", // 𠈉
+ 0x2020a: "\x03\x02\x03\x03\x05\x02\x01\x05", // 𠈊
+ 0x2020b: "\x03\x02\x01\x01\x03\x05\x03\x04", // 𠈋
+ 0x2020c: "\x03\x04\x03\x04\x03\x04\x03\x04", // 𠈌
+ 0x2020d: "\x03\x02\x03\x05\x04\x05\x03\x01", // 𠈍
+ 0x2020e: "\x03\x02\x05\x02\x01\x05\x02\x01", // 𠈎
+ 0x2020f: "\x03\x04\x01\x02\x05\x01\x03\x04", // 𠈏
+ 0x20210: "\x03\x02\x02\x05\x01\x01\x05\x03", // 𠈐
+ 0x20211: "\x03\x04\x02\x04\x03\x01\x03\x05", // 𠈑
+ 0x20212: "\x03\x04\x02\x01\x01\x02\x03\x04", // 𠈒
+ 0x20213: "\x03\x02\x01\x02\x05\x02\x05\x02", // 𠈓
+ 0x20214: "\x03\x04\x02\x01\x01\x04\x03\x01", // 𠈔
+ 0x20215: "\x03\x02\x02\x05\x01\x02\x02\x05", // 𠈕
+ 0x20216: "\x03\x02\x03\x04\x01\x01\x03\x04", // 𠈖
+ 0x20217: "\x03\x02\x01\x02\x05\x01\x01\x01", // 𠈗
+ 0x20218: "\x03\x04\x01\x02\x01\x01\x02\x01", // 𠈘
+ 0x20219: "\x03\x02\x01\x01\x01\x05\x03\x04", // 𠈙
+ 0x2021a: "\x03\x02\x01\x03\x02\x01\x02\x01", // 𠈚
+ 0x2021b: "\x03\x04\x03\x05\x01\x01\x02\x02", // 𠈛
+ 0x2021c: "\x03\x02\x03\x05\x05\x02\x01\x05", // 𠈜
+ 0x2021d: "\x03\x02\x03\x04\x01\x05\x05\x01", // 𠈝
+ 0x2021e: "\x03\x02\x03\x05\x04\x01\x05\x02", // 𠈞
+ 0x2021f: "\x03\x02\x03\x05\x01\x05\x02", // 𠈟
+ 0x20220: "\x03\x02\x03\x01\x01\x02\x01\x02", // 𠈠
+ 0x20221: "\x03\x02\x03\x05\x01\x02\x05\x02", // 𠈡
+ 0x20222: "\x03\x04\x01\x03\x05\x04\x05\x05", // 𠈢
+ 0x20223: "\x03\x01\x02\x01\x03\x05\x03\x04", // 𠈣
+ 0x20224: "\x03\x02\x02\x03\x04\x05\x03\x01", // 𠈤
+ 0x20225: "\x03\x02\x02\x05\x05\x02\x05", // 𠈥
+ 0x20226: "\x03\x02\x02\x05\x02\x03\x05\x04", // 𠈦
+ 0x20227: "\x03\x02\x02\x05\x02\x05\x05\x04", // 𠈧
+ 0x20228: "\x03\x02\x03\x01\x02\x01\x01\x01", // 𠈨
+ 0x20229: "\x03\x02\x03\x03\x01\x02\x05\x02", // 𠈩
+ 0x2022a: "\x03\x02\x04\x03\x01\x01\x03\x04", // 𠈪
+ 0x2022b: "\x03\x02\x04\x03\x01\x01\x03\x04", // 𠈫
+ 0x2022c: "\x03\x02\x03\x05\x04\x01\x02\x01", // 𠈬
+ 0x2022d: "\x03\x02\x04\x04\x05\x03\x01\x01\x02", // 𠈭
+ 0x2022e: "\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 𠈮
+ 0x2022f: "\x03\x04\x01\x01\x02\x05\x03\x05\x04", // 𠈯
+ 0x20230: "\x03\x02\x03\x02\x01\x02\x01\x05\x04", // 𠈰
+ 0x20231: "\x03\x02\x04\x04\x01\x02\x03\x04\x03", // 𠈱
+ 0x20232: "\x03\x02\x03\x05\x01\x05\x02\x05\x01", // 𠈲
+ 0x20233: "\x03\x02\x05\x05\x01\x04\x03\x03\x04", // 𠈳
+ 0x20234: "\x03\x02\x05\x04\x05\x02\x01\x03\x04", // 𠈴
+ 0x20235: "\x03\x02\x01\x03\x05\x03\x03\x03\x04", // 𠈵
+ 0x20236: "\x03\x02\x02\x05\x02\x03\x05\x05\x04", // 𠈶
+ 0x20237: "\x03\x02\x02\x05\x01\x01\x05\x02", // 𠈷
+ 0x20238: "\x03\x02\x01\x04\x05\x04\x04\x04", // 𠈸
+ 0x20239: "\x03\x02\x04\x04\x01\x03\x01\x03\x04", // 𠈹
+ 0x2023a: "\x03\x02\x01\x05\x01\x05\x01\x02\x01", // 𠈺
+ 0x2023b: "\x03\x02\x03\x04\x03\x04\x02\x05\x01", // 𠈻
+ 0x2023c: "\x03\x02\x04\x03\x01\x05\x03\x05\x04", // 𠈼
+ 0x2023d: "\x03\x05\x05\x01\x03\x03\x05\x03\x04", // 𠈽
+ 0x2023e: "\x03\x04\x02\x01\x02\x01\x01\x01\x02", // 𠈾
+ 0x2023f: "\x03\x02\x02\x05\x02\x05\x01\x05\x04", // 𠈿
+ 0x20240: "\x03\x02\x02\x05\x01\x01\x01\x03\x04", // 𠉀
+ 0x20241: "\x02\x05\x03\x04\x02\x05\x03\x04\x01", // 𠉁
+ 0x20242: "\x03\x02\x01\x03\x04\x04\x05\x03", // 𠉂
+ 0x20243: "\x03\x02\x02\x01\x02\x01\x05\x03\x01\x01", // 𠉃
+ 0x20244: "\x03\x02\x04\x01\x04\x03\x01\x01\x02", // 𠉄
+ 0x20245: "\x03\x02\x04\x03\x01\x03\x04\x05\x03", // 𠉅
+ 0x20246: "\x03\x02\x04\x01\x03\x01\x05\x01\x05", // 𠉆
+ 0x20247: "\x03\x02\x04\x03\x03\x04\x02\x05\x01", // 𠉇
+ 0x20248: "\x03\x02\x01\x03\x04\x03\x05\x01\x01", // 𠉈
+ 0x20249: "\x03\x02\x01\x02\x03\x04\x02\x05\x01", // 𠉉
+ 0x2024a: "\x03\x02\x01\x02\x02\x05\x01\x01\x01", // 𠉊
+ 0x2024b: "\x03\x02\x01\x02\x01\x02\x04\x01\x05", // 𠉋
+ 0x2024c: "\x03\x02\x02\x05\x01\x03\x05\x04\x01", // 𠉌
+ 0x2024d: "\x03\x02\x02\x05\x01\x02\x03\x04\x01", // 𠉍
+ 0x2024e: "\x03\x02\x03\x05\x02\x04\x01\x03\x04", // 𠉎
+ 0x2024f: "\x03\x02\x03\x05\x04\x01\x01\x01\x02", // 𠉏
+ 0x20250: "\x03\x02\x03\x04\x01\x05\x02\x05\x01", // 𠉐
+ 0x20251: "\x03\x02\x03\x01\x02\x03\x04\x05\x03", // 𠉑
+ 0x20252: "\x03\x04\x03\x04\x02\x05\x01\x01\x05", // 𠉒
+ 0x20253: "\x03\x04\x04\x03\x01\x02\x04\x03\x01", // 𠉓
+ 0x20254: "\x03\x02\x01\x01\x02\x01\x02\x01\x02", // 𠉔
+ 0x20255: "\x03\x02\x01\x02\x05\x01\x02\x05\x04", // 𠉕
+ 0x20256: "\x03\x02\x02\x05\x01\x03\x01\x01\x02", // 𠉖
+ 0x20257: "\x03\x02\x03\x01\x02\x02\x05\x01\x05", // 𠉗
+ 0x20258: "\x03\x02\x03\x05\x04\x05\x04\x03\x04", // 𠉘
+ 0x20259: "\x03\x04\x01\x01\x02\x05\x01\x02\x02", // 𠉙
+ 0x2025a: "\x03\x02\x03\x04\x03\x04\x02\x05\x02", // 𠉚
+ 0x2025b: "\x03\x02\x01\x03\x05\x05\x03\x04", // 𠉛
+ 0x2025c: "\x03\x02\x05\x01\x03\x03\x01\x01\x05", // 𠉜
+ 0x2025d: "\x03\x02\x01\x02\x01\x02\x01\x05", // 𠉝
+ 0x2025e: "\x03\x04\x04\x05\x05\x01\x03\x03\x05", // 𠉞
+ 0x2025f: "\x03\x02\x01\x02\x03\x04\x03\x01\x02", // 𠉟
+ 0x20260: "\x03\x02\x03\x04\x04\x03\x05\x03\x03", // 𠉠
+ 0x20261: "\x03\x02\x02\x01\x02\x01\x02\x03\x03", // 𠉡
+ 0x20262: "\x03\x02\x02\x05\x02\x05\x03\x04\x01", // 𠉢
+ 0x20263: "\x03\x02\x03\x05\x01\x05\x02\x05\x01\x01", // 𠉣
+ 0x20264: "\x03\x02\x02\x05\x03\x04\x02\x05\x01\x01", // 𠉤
+ 0x20265: "\x03\x02\x05\x05\x04\x03\x05\x04\x01\x05", // 𠉥
+ 0x20266: "\x03\x02\x01\x02\x05\x03\x04\x03\x04\x01", // 𠉦
+ 0x20267: "\x03\x02\x01\x02\x02\x01\x01\x01\x05\x04", // 𠉧
+ 0x20268: "\x03\x02\x01\x02\x01\x05\x04\x05\x03\x04", // 𠉨
+ 0x20269: "\x03\x02\x01\x01\x02\x01\x05\x05\x04\x01\x04", // 𠉩
+ 0x2026a: "\x03\x02\x04\x01\x05\x04\x01\x02\x03\x04", // 𠉪
+ 0x2026b: "\x03\x02\x03\x03\x02\x04\x01\x01\x02\x01", // 𠉫
+ 0x2026c: "\x03\x02\x02\x05\x01\x02\x05\x01\x01\x03", // 𠉬
+ 0x2026d: "\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04", // 𠉭
+ 0x2026e: "\x03\x02\x04\x03\x01\x01\x03\x04\x05\x03", // 𠉮
+ 0x2026f: "\x03\x02\x01\x05\x01\x01\x02\x05\x03\x01", // 𠉯
+ 0x20270: "\x03\x02\x03\x04\x04\x03\x03\x01\x02\x01", // 𠉰
+ 0x20271: "\x03\x02\x03\x05\x01\x03\x04\x01\x05\x03", // 𠉱
+ 0x20272: "\x03\x04\x01\x02\x05\x01\x05\x02\x01\x05", // 𠉲
+ 0x20273: "\x03\x02\x03\x01\x01\x02\x01\x02\x01\x02\x02", // 𠉳
+ 0x20274: "\x03\x02\x01\x02\x05\x02\x04\x01\x03\x04", // 𠉴
+ 0x20275: "\x03\x02\x04\x04\x05\x01\x02\x01\x03\x04", // 𠉵
+ 0x20276: "\x03\x02\x02\x05\x01\x02\x01\x01\x03\x02", // 𠉶
+ 0x20277: "\x03\x02\x04\x01\x03\x05\x03\x02\x05\x04", // 𠉷
+ 0x20278: "\x03\x02\x04\x01\x03\x04\x03\x05\x01\x01", // 𠉸
+ 0x20279: "\x03\x02\x05\x02\x01\x01\x01\x05\x03\x04", // 𠉹
+ 0x2027a: "\x03\x02\x05\x04\x01\x03\x02\x05\x02\x02", // 𠉺
+ 0x2027b: "\x03\x02\x01\x02\x01\x03\x04\x03\x03\x04", // 𠉻
+ 0x2027c: "\x03\x04\x01\x02\x05\x01\x03\x02\x01\x05", // 𠉼
+ 0x2027d: "\x03\x04\x01\x03\x05\x01\x01\x05\x05\x05", // 𠉽
+ 0x2027e: "\x03\x02\x01\x02\x01\x02\x03\x04\x01\x05", // 𠉾
+ 0x2027f: "\x03\x02\x02\x05\x01\x02\x03\x01\x03\x04", // 𠉿
+ 0x20280: "\x03\x02\x02\x05\x02\x01\x03\x01\x01\x02", // 𠊀
+ 0x20281: "\x03\x02\x01\x02\x01\x02\x01\x01\x05\x04", // 𠊁
+ 0x20282: "\x03\x02\x02\x05\x02\x03\x05\x03\x05\x04", // 𠊂
+ 0x20283: "\x03\x02\x01\x02\x01\x02\x01\x02\x05\x02", // 𠊃
+ 0x20284: "\x03\x02\x03\x04\x01\x01\x02\x04\x03\x01", // 𠊄
+ 0x20285: "\x03\x02\x03\x01\x03\x04\x04\x03\x03\x04", // 𠊅
+ 0x20286: "\x03\x02\x03\x04\x01\x02\x05\x03\x05\x01", // 𠊆
+ 0x20287: "\x03\x02\x03\x05\x04\x02\x05\x01\x02\x02", // 𠊇
+ 0x20288: "\x03\x02\x03\x04\x01\x02\x05\x01\x05\x02", // 𠊈
+ 0x20289: "\x03\x04\x01\x01\x05\x04\x03\x05\x03\x03", // 𠊉
+ 0x2028a: "\x03\x04\x01\x03\x02\x05\x01\x01\x01\x05", // 𠊊
+ 0x2028b: "\x03\x04\x04\x03\x01\x02\x05\x01\x01\x05", // 𠊋
+ 0x2028c: "\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04", // 𠊌
+ 0x2028d: "\x03\x04\x04\x03\x01\x02\x03\x04\x01\x04", // 𠊍
+ 0x2028e: "\x03\x02\x01\x03\x01\x02\x01\x01\x02\x01", // 𠊎
+ 0x2028f: "\x03\x02\x03\x01\x02\x01\x03\x05\x02\x02", // 𠊏
+ 0x20290: "\x03\x02\x03\x05\x03\x01\x01\x02\x05\x02", // 𠊐
+ 0x20291: "\x03\x02\x04\x01\x03\x02\x04\x02\x05\x01", // 𠊑
+ 0x20292: "\x03\x02\x04\x01\x03\x01\x05\x03\x05\x04", // 𠊒
+ 0x20293: "\x03\x02\x04\x01\x03\x05\x04\x01\x05\x03", // 𠊓
+ 0x20294: "\x03\x02\x04\x04\x01\x04\x01\x04\x03\x01", // 𠊔
+ 0x20295: "\x03\x02\x05\x01\x01\x01\x04\x03\x03\x04", // 𠊕
+ 0x20296: "\x03\x02\x05\x05\x05\x03\x05\x04\x02\x02", // 𠊖
+ 0x20297: "\x03\x02\x02\x05\x02\x04\x03\x01\x05\x04", // 𠊗
+ 0x20298: "\x03\x02\x04\x05\x01\x03\x02\x05\x01\x01", // 𠊘
+ 0x20299: "\x03\x02\x04\x04\x05\x02\x05\x01\x01\x01", // 𠊙
+ 0x2029a: "\x03\x02\x02\x05\x01\x01\x01\x01\x02\x04", // 𠊚
+ 0x2029b: "\x02\x05\x01\x01\x01\x01\x02\x04\x03\x04", // 𠊛
+ 0x2029c: "\x03\x02\x05\x03\x01\x01\x03\x02\x05\x01", // 𠊜
+ 0x2029d: "\x03\x02\x01\x05\x04\x05\x04\x02\x05\x01", // 𠊝
+ 0x2029e: "\x03\x02\x02\x05\x01\x02\x04\x05\x04\x04", // 𠊞
+ 0x2029f: "\x03\x02\x02\x05\x01\x02\x05\x01\x01\x05", // 𠊟
+ 0x202a0: "\x03\x02\x01\x02\x01\x02\x03\x05\x05\x03", // 𠊠
+ 0x202a1: "\x03\x02\x04\x03\x01\x01\x01\x03\x05", // 𠊡
+ 0x202a2: "\x03\x02\x04\x04\x05\x03\x05\x05\x03\x01", // 𠊢
+ 0x202a3: "\x03\x02\x05\x02\x01\x01\x05\x02\x01\x01", // 𠊣
+ 0x202a4: "\x03\x02\x02\x01\x05\x03\x01\x05\x03\x04", // 𠊤
+ 0x202a5: "\x03\x02\x02\x05\x03\x04\x02\x05\x03\x04", // 𠊥
+ 0x202a6: "\x03\x02\x05\x05\x05\x01\x02\x01\x02\x01", // 𠊦
+ 0x202a7: "\x03\x02\x03\x04\x01\x02\x02\x04\x03\x01", // 𠊧
+ 0x202a8: "\x03\x02\x05\x01\x05\x05\x01\x05\x01\x03\x04", // 𠊨
+ 0x202a9: "\x03\x02\x05\x02\x01\x05\x02\x01\x05\x02\x01", // 𠊩
+ 0x202aa: "\x03\x02\x01\x02\x01\x02\x05\x01\x04\x03\x01", // 𠊪
+ 0x202ab: "\x03\x02\x03\x05\x02\x05\x01\x01\x05\x02\x01", // 𠊫
+ 0x202ac: "\x03\x02\x03\x04\x03\x04\x02\x05\x01\x05\x02", // 𠊬
+ 0x202ad: "\x03\x02\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 𠊭
+ 0x202ae: "\x03\x02\x05\x04\x05\x02\x03\x03\x01\x03\x04", // 𠊮
+ 0x202af: "\x03\x02\x04\x04\x05\x03\x04\x03\x04\x01\x03\x04", // 𠊯
+ 0x202b0: "\x03\x02\x02\x05\x01\x02\x02\x05\x02\x05\x01", // 𠊰
+ 0x202b1: "\x03\x02\x03\x05\x01\x03\x03\x01\x01\x03\x04", // 𠊱
+ 0x202b2: "\x03\x02\x04\x04\x05\x03\x05\x01\x03\x04\x04", // 𠊲
+ 0x202b3: "\x03\x02\x01\x02\x05\x03\x04\x02\x01\x05\x04", // 𠊳
+ 0x202b4: "\x03\x02\x04\x01\x03\x04\x03\x01\x05\x02\x03", // 𠊴
+ 0x202b5: "\x03\x02\x02\x05\x02\x03\x05\x04\x03\x05\x04", // 𠊵
+ 0x202b6: "\x03\x02\x04\x03\x01\x01\x03\x04\x05\x03\x01", // 𠊶
+ 0x202b7: "\x03\x02\x01\x05\x04\x01\x02\x01\x03\x01\x03\x04", // 𠊷
+ 0x202b8: "\x03\x02\x05\x01\x01\x04\x05\x04\x03\x03\x04", // 𠊸
+ 0x202b9: "\x03\x02\x01\x05\x01\x01\x01\x03\x01\x03\x04", // 𠊹
+ 0x202ba: "\x03\x04\x04\x01\x04\x03\x01\x02\x05\x03\x04", // 𠊺
+ 0x202bb: "\x03\x02\x03\x04\x04\x03\x05\x02\x01\x03\x04", // 𠊻
+ 0x202bc: "\x03\x02\x01\x02\x05\x02\x02\x01\x01\x03\x02", // 𠊼
+ 0x202bd: "\x03\x02\x05\x01\x05\x01\x05\x02\x05\x01\x01", // 𠊽
+ 0x202be: "\x03\x02\x05\x04\x03\x03\x04\x01\x01\x03\x04", // 𠊾
+ 0x202bf: "\x03\x02\x04\x04\x05\x01\x02\x05\x01\x01\x01", // 𠊿
+ 0x202c0: "\x03\x02\x05\x04\x02\x05\x01\x01\x02\x05\x03", // 𠋀
+ 0x202c1: "\x03\x04\x03\x04\x04\x03\x02\x05\x01\x02\x02", // 𠋁
+ 0x202c2: "\x03\x02\x03\x05\x02\x05\x01\x03\x05\x04\x04", // 𠋂
+ 0x202c3: "\x03\x02\x01\x05\x04\x03\x05\x04\x01\x05", // 𠋃
+ 0x202c4: "\x03\x02\x04\x03\x01\x01\x02\x01\x05\x03\x01", // 𠋄
+ 0x202c5: "\x03\x04\x03\x05\x01\x03\x02\x05\x01\x02\x02", // 𠋅
+ 0x202c6: "\x03\x02\x05\x01\x04\x03\x01\x01\x02\x03\x04", // 𠋆
+ 0x202c7: "\x03\x02\x04\x03\x01\x02\x03\x04\x05\x02", // 𠋇
+ 0x202c8: "\x03\x02\x04\x01\x03\x02\x03\x04\x01\x03\x04", // 𠋈
+ 0x202c9: "\x03\x02\x05\x03\x04\x03\x05\x03\x04\x03\x02", // 𠋉
+ 0x202ca: "\x03\x02\x01\x03\x02\x04\x03\x05\x01\x01\x02", // 𠋊
+ 0x202cb: "\x03\x02\x05\x02\x01\x02\x05\x01\x01\x03\x04", // 𠋋
+ 0x202cc: "\x03\x02\x02\x05\x02\x01\x03\x04\x03\x03\x04", // 𠋌
+ 0x202cd: "\x03\x02\x02\x05\x01\x01\x03\x05\x03\x05\x04", // 𠋍
+ 0x202ce: "\x03\x02\x03\x05\x05\x01\x01\x04\x05\x04\x04", // 𠋎
+ 0x202cf: "\x03\x02\x05\x04\x02\x05\x01\x01\x01\x03\x04", // 𠋏
+ 0x202d0: "\x03\x02\x03\x02\x05\x04\x03\x01\x02\x01\x05", // 𠋐
+ 0x202d1: "\x03\x04\x01\x02\x05\x01\x01\x01\x02\x05\x01", // 𠋑
+ 0x202d2: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x01\x05", // 𠋒
+ 0x202d3: "\x03\x04\x02\x03\x04\x05\x01\x03\x02\x02\x01", // 𠋓
+ 0x202d4: "\x03\x04\x02\x05\x05\x04\x05\x05\x04\x05\x02", // 𠋔
+ 0x202d5: "\x03\x02\x01\x02\x01\x03\x05\x01\x02\x03\x04", // 𠋕
+ 0x202d6: "\x03\x02\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 𠋖
+ 0x202d7: "\x03\x02\x01\x02\x05\x05\x04\x05\x05\x04\x01", // 𠋗
+ 0x202d8: "\x03\x02\x01\x03\x01\x05\x03\x01\x05\x03\x04", // 𠋘
+ 0x202d9: "\x03\x02\x01\x03\x04\x03\x04\x03\x04\x02\x02", // 𠋙
+ 0x202da: "\x03\x02\x01\x03\x04\x04\x03\x02\x05\x01\x01", // 𠋚
+ 0x202db: "\x03\x02\x02\x02\x01\x05\x04\x03\x05\x04\x01", // 𠋛
+ 0x202dc: "\x03\x02\x02\x04\x03\x01\x01\x01\x02\x05\x01", // 𠋜
+ 0x202dd: "\x03\x02\x02\x05\x01\x01\x01\x02\x03\x04\x03", // 𠋝
+ 0x202de: "\x03\x02\x02\x05\x01\x02\x01\x04\x05\x02\x05", // 𠋞
+ 0x202df: "\x03\x02\x03\x02\x01\x05\x01\x01\x03\x04", // 𠋟
+ 0x202e0: "\x03\x02\x03\x04\x04\x03\x01\x01\x03\x05\x04", // 𠋠
+ 0x202e1: "\x03\x02\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𠋡
+ 0x202e2: "\x03\x02\x04\x04\x05\x04\x03\x03\x04\x05\x04", // 𠋢
+ 0x202e3: "\x03\x02\x04\x01\x04\x03\x01\x02\x05\x01\x02", // 𠋣
+ 0x202e4: "\x03\x02\x04\x04\x05\x01\x05\x04\x01\x02\x01", // 𠋤
+ 0x202e5: "\x03\x02\x05\x02\x01\x03\x02\x05\x01\x01\x01", // 𠋥
+ 0x202e6: "\x03\x02\x01\x02\x02\x01\x01\x01\x02\x03\x04", // 𠋦
+ 0x202e7: "\x03\x02\x04\x04\x02\x01\x02\x05\x01\x01\x01", // 𠋧
+ 0x202e8: "\x03\x02\x02\x05\x01\x02\x05\x01\x01\x03\x05", // 𠋨
+ 0x202e9: "\x03\x02\x04\x01\x02\x05\x01\x01\x03\x05\x04", // 𠋩
+ 0x202ea: "\x03\x02\x04\x04\x05\x01\x02\x05\x01\x02\x05", // 𠋪
+ 0x202eb: "\x03\x02\x03\x02\x05\x01\x03\x02\x02\x03\x04", // 𠋫
+ 0x202ec: "\x03\x02\x02\x05\x01\x01\x01\x01\x03\x04\x04", // 𠋬
+ 0x202ed: "\x03\x02\x04\x01\x05\x04\x03\x02\x05\x02\x05\x01", // 𠋭
+ 0x202ee: "\x03\x02\x01\x03\x02\x01\x02\x01\x02\x05\x03\x04", // 𠋮
+ 0x202ef: "\x03\x02\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01", // 𠋯
+ 0x202f0: "\x03\x02\x01\x02\x01\x03\x02\x03\x04\x05\x03\x04", // 𠋰
+ 0x202f1: "\x03\x02\x05\x01\x03\x02\x04\x03\x03\x05\x01\x01", // 𠋱
+ 0x202f2: "\x03\x02\x01\x02\x04\x05\x05\x05\x04\x02\x03\x04", // 𠋲
+ 0x202f3: "\x03\x02\x05\x04\x03\x03\x04\x03\x01\x01\x03\x04", // 𠋳
+ 0x202f4: "\x03\x02\x04\x03\x03\x04\x04\x03\x03\x04\x02\x02", // 𠋴
+ 0x202f5: "\x03\x02\x02\x01\x05\x03\x01\x05\x04\x01\x03\x04", // 𠋵
+ 0x202f6: "\x03\x02\x04\x05\x02\x05\x01\x01\x04\x01\x03\x04", // 𠋶
+ 0x202f7: "\x03\x02\x05\x02\x02\x01\x02\x05\x01\x02\x04", // 𠋷
+ 0x202f8: "\x03\x02\x01\x02\x01\x02\x05\x01\x01\x02\x03\x04", // 𠋸
+ 0x202f9: "\x03\x02\x03\x05\x02\x05\x01\x01\x03\x04\x01\x05", // 𠋹
+ 0x202fa: "\x03\x02\x04\x05\x04\x04\x02\x05\x01\x02\x01\x04", // 𠋺
+ 0x202fb: "\x03\x02\x02\x05\x01\x02\x01\x03\x05\x03\x05\x04", // 𠋻
+ 0x202fc: "\x03\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01", // 𠋼
+ 0x202fd: "\x03\x02\x01\x03\x04\x03\x01\x02\x01\x05\x04", // 𠋽
+ 0x202fe: "\x03\x02\x01\x01\x02\x01\x05\x04\x05\x02\x03\x04", // 𠋾
+ 0x202ff: "\x03\x02\x01\x02\x01\x05\x02\x05\x01\x01\x02\x01", // 𠋿
+ 0x20300: "\x03\x02\x03\x04\x04\x03\x05\x04\x01\x02\x03\x04", // 𠌀
+ 0x20301: "\x03\x02\x03\x04\x01\x03\x02\x05\x01\x03\x05\x04", // 𠌁
+ 0x20302: "\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x01\x02", // 𠌂
+ 0x20303: "\x03\x02\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 𠌃
+ 0x20304: "\x03\x02\x05\x01\x03\x01\x02\x02\x01\x05\x03\x04", // 𠌄
+ 0x20305: "\x03\x02\x01\x02\x02\x03\x05\x04\x03\x05\x04", // 𠌅
+ 0x20306: "\x03\x04\x01\x01\x02\x01\x01\x05\x03\x05\x01\x02", // 𠌆
+ 0x20307: "\x03\x02\x04\x05\x01\x01\x05\x04\x05\x02", // 𠌇
+ 0x20308: "\x03\x04\x01\x03\x04\x03\x04\x02\x05\x01\x02\x02", // 𠌈
+ 0x20309: "\x03\x04\x01\x02\x01\x04\x03\x01\x01\x01\x03\x04", // 𠌉
+ 0x2030a: "\x01\x03\x04\x03\x04\x02\x03\x04\x05\x02\x01\x05", // 𠌊
+ 0x2030b: "\x03\x02\x03\x04\x03\x04\x02\x05\x01\x05\x01\x03", // 𠌋
+ 0x2030c: "\x03\x02\x04\x04\x05\x03\x04\x03\x04\x03\x05\x04", // 𠌌
+ 0x2030d: "\x03\x04\x04\x03\x01\x01\x03\x04\x04\x01\x03\x04", // 𠌍
+ 0x2030e: "\x03\x02\x04\x03\x01\x02\x03\x04\x04\x04\x04\x04", // 𠌎
+ 0x2030f: "\x03\x02\x04\x04\x03\x03\x05\x04\x01\x05\x02", // 𠌏
+ 0x20310: "\x03\x02\x01\x02\x05\x02\x02\x01\x01\x03\x03\x05", // 𠌐
+ 0x20311: "\x03\x04\x01\x01\x02\x05\x01\x03\x05\x05\x01\x05", // 𠌑
+ 0x20312: "\x03\x02\x02\x05\x01\x02\x01\x04\x03\x01\x03\x04", // 𠌒
+ 0x20313: "\x03\x04\x01\x02\x01\x02\x02\x05\x01\x01\x01\x02", // 𠌓
+ 0x20314: "\x03\x02\x03\x02\x05\x01\x01\x01\x03\x04\x05\x05", // 𠌔
+ 0x20315: "\x03\x04\x03\x02\x03\x04\x03\x02\x03\x04\x03\x02", // 𠌕
+ 0x20316: "\x03\x02\x01\x02\x01\x03\x05\x04\x01\x02\x03\x04", // 𠌖
+ 0x20317: "\x03\x02\x01\x02\x05\x04\x04\x04\x03\x04\x05\x04", // 𠌗
+ 0x20318: "\x03\x02\x01\x03\x02\x05\x01\x01\x01\x03\x05\x04", // 𠌘
+ 0x20319: "\x03\x02\x02\x01\x02\x02\x01\x02\x05\x01\x01\x02", // 𠌙
+ 0x2031a: "\x03\x02\x02\x03\x03\x01\x02\x01\x02\x05\x01\x02", // 𠌚
+ 0x2031b: "\x03\x02\x02\x05\x01\x03\x02\x05\x01\x01\x01\x01", // 𠌛
+ 0x2031c: "\x03\x02\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01", // 𠌜
+ 0x2031d: "\x03\x02\x02\x05\x02\x01\x03\x05\x03\x01\x03\x04", // 𠌝
+ 0x2031e: "\x03\x02\x03\x02\x05\x01\x01\x01\x01\x03\x05\x04", // 𠌞
+ 0x2031f: "\x03\x02\x03\x02\x05\x01\x01\x05\x03\x02\x05\x04", // 𠌟
+ 0x20320: "\x03\x02\x03\x04\x04\x03\x01\x05\x04\x01\x02\x01", // 𠌠
+ 0x20321: "\x03\x02\x04\x03\x01\x01\x03\x04\x04\x05\x04", // 𠌡
+ 0x20322: "\x03\x02\x03\x04\x03\x04\x02\x05\x01\x03\x05\x04", // 𠌢
+ 0x20323: "\x03\x02\x04\x04\x05\x05\x01\x01\x03\x02\x05\x01", // 𠌣
+ 0x20324: "\x03\x02\x03\x01\x03\x03\x01\x02\x04\x05\x04\x04", // 𠌤
+ 0x20325: "\x03\x02\x03\x02\x05\x01\x01\x05\x04\x04\x04\x04", // 𠌥
+ 0x20326: "\x03\x02\x05\x05\x04\x04\x04\x04\x02\x05\x03\x04", // 𠌦
+ 0x20327: "\x03\x02\x03\x04\x01\x02\x05\x01\x03\x01\x01\x05", // 𠌧
+ 0x20328: "\x03\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01\x05", // 𠌨
+ 0x20329: "\x03\x02\x04\x01\x01\x02\x01\x01\x02\x05\x03\x05", // 𠌩
+ 0x2032a: "\x03\x02\x02\x03\x01\x03\x04\x02\x05\x01\x01\x01", // 𠌪
+ 0x2032b: "\x03\x02\x02\x05\x01\x02\x01\x01\x02\x02\x01\x01\x02", // 𠌫
+ 0x2032c: "\x03\x02\x05\x01\x03\x02\x04\x01\x03\x04\x03\x01\x01\x02", // 𠌬
+ 0x2032d: "\x03\x02\x04\x01\x05\x05\x04\x04\x01\x03\x04\x01\x02", // 𠌭
+ 0x2032e: "\x03\x02\x04\x01\x03\x01\x02\x02\x01\x04\x04\x04\x04", // 𠌮
+ 0x2032f: "\x03\x02\x04\x01\x03\x04\x05\x02\x02\x05\x02\x01\x04", // 𠌯
+ 0x20330: "\x03\x02\x05\x01\x01\x05\x04\x01\x05\x03\x05", // 𠌰
+ 0x20331: "\x03\x02\x01\x03\x04\x03\x04\x04\x01\x01\x01\x02\x01", // 𠌱
+ 0x20332: "\x03\x02\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02", // 𠌲
+ 0x20333: "\x03\x02\x05\x03\x02\x05\x01\x02\x05\x03\x04\x03\x04", // 𠌳
+ 0x20334: "\x03\x04\x01\x01\x01\x03\x04\x03\x02\x01\x05\x01\x01", // 𠌴
+ 0x20335: "\x03\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𠌵
+ 0x20336: "\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x01\x05", // 𠌶
+ 0x20337: "\x03\x02\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04", // 𠌷
+ 0x20338: "\x03\x02\x05\x01\x03\x03\x01\x01\x03\x03\x01\x01\x02", // 𠌸
+ 0x20339: "\x03\x02\x02\x01\x02\x01\x02\x05\x01\x01\x02\x03\x03", // 𠌹
+ 0x2033a: "\x03\x04\x01\x03\x04\x03\x04\x02\x03\x04\x03\x04\x02", // 𠌺
+ 0x2033b: "\x03\x02\x04\x03\x03\x04\x04\x03\x03\x04\x03\x05\x04", // 𠌻
+ 0x2033c: "\x03\x02\x02\x05\x01\x02\x05\x01\x02\x04\x05\x04\x04", // 𠌼
+ 0x2033d: "\x03\x02\x01\x02\x05\x01\x01\x02\x04\x04\x01\x05\x03", // 𠌽
+ 0x2033e: "\x03\x02\x01\x02\x01\x02\x03\x01\x02\x01\x05\x03\x04", // 𠌾
+ 0x2033f: "\x03\x02\x04\x01\x03\x01\x05\x01\x01\x02\x01\x03\x04", // 𠌿
+ 0x20340: "\x03\x02\x04\x04\x01\x01\x02\x05\x01\x01\x02\x03\x04", // 𠍀
+ 0x20341: "\x03\x02\x03\x01\x05\x05\x04\x01\x04\x03\x01\x03\x04", // 𠍁
+ 0x20342: "\x03\x02\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 𠍂
+ 0x20343: "\x03\x02\x03\x04\x04\x05\x01\x01\x05\x04\x03\x05", // 𠍃
+ 0x20344: "\x03\x02\x05\x05\x01\x05\x05\x01\x05\x01\x02\x01", // 𠍄
+ 0x20345: "\x03\x02\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04", // 𠍅
+ 0x20346: "\x03\x02\x01\x02\x01\x02\x03\x01\x02\x03\x04\x02\x02", // 𠍆
+ 0x20347: "\x03\x02\x02\x01\x03\x05\x04\x05\x04\x01\x02\x03\x04", // 𠍇
+ 0x20348: "\x03\x02\x03\x05\x02\x05\x01\x01\x05\x01\x05\x01\x01", // 𠍈
+ 0x20349: "\x03\x02\x04\x01\x05\x05\x04\x04\x05\x03\x01\x01\x02", // 𠍉
+ 0x2034a: "\x03\x02\x04\x04\x05\x03\x02\x01\x03\x02\x05\x01\x01", // 𠍊
+ 0x2034b: "\x03\x02\x04\x05\x05\x04\x02\x05\x01\x02\x01\x04", // 𠍋
+ 0x2034c: "\x03\x02\x04\x04\x05\x04\x05\x04\x04\x04\x05\x04\x04", // 𠍌
+ 0x2034d: "\x03\x02\x01\x02\x05\x02\x02\x01\x01\x03\x04\x05\x04", // 𠍍
+ 0x2034e: "\x03\x02\x01\x01\x02\x05\x01\x01\x01\x03\x04\x05\x04", // 𠍎
+ 0x2034f: "\x03\x02\x01\x02\x05\x01\x02\x03\x04\x03\x01\x03\x04", // 𠍏
+ 0x20350: "\x03\x04\x01\x05\x04\x03\x05\x03\x03\x03\x05\x04\x04", // 𠍐
+ 0x20351: "\x03\x02\x01\x02\x01\x02\x05\x03\x05\x04\x03\x05\x04", // 𠍑
+ 0x20352: "\x03\x02\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01", // 𠍒
+ 0x20353: "\x03\x02\x02\x05\x02\x03\x04\x01\x02\x05\x01\x02\x02", // 𠍓
+ 0x20354: "\x03\x02\x01\x02\x01\x02\x02\x05\x01\x02\x05\x01\x02", // 𠍔
+ 0x20355: "\x03\x02\x02\x05\x02\x02\x05\x01\x01\x01\x05\x01\x05", // 𠍕
+ 0x20356: "\x03\x02\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x04", // 𠍖
+ 0x20357: "\x03\x04\x01\x02\x05\x01\x03\x02\x01\x01\x05\x01\x01", // 𠍗
+ 0x20358: "\x03\x04\x01\x03\x04\x03\x04\x03\x04\x03\x04\x01\x02", // 𠍘
+ 0x20359: "\x03\x02\x01\x01\x02\x01\x02\x05\x01\x01\x02\x03\x04", // 𠍙
+ 0x2035a: "\x03\x02\x01\x03\x02\x05\x01\x01\x02\x05\x03\x04\x01", // 𠍚
+ 0x2035b: "\x03\x02\x01\x03\x02\x05\x01\x01\x02\x05\x05\x03\x01", // 𠍛
+ 0x2035c: "\x03\x02\x01\x05\x04\x01\x02\x02\x05\x01\x01\x01\x01", // 𠍜
+ 0x2035d: "\x03\x02\x02\x01\x03\x05\x01\x02\x03\x04\x01\x02\x01", // 𠍝
+ 0x2035e: "\x03\x02\x02\x02\x01\x05\x04\x05\x05\x04\x02\x03\x04", // 𠍞
+ 0x2035f: "\x03\x02\x02\x05\x01\x02\x05\x01\x05\x01\x05\x03\x02", // 𠍟
+ 0x20360: "\x03\x02\x03\x04\x03\x04\x02\x05\x01\x05\x01\x01\x03", // 𠍠
+ 0x20361: "\x03\x02\x04\x01\x02\x05\x01\x02\x01\x03\x05\x03\x04", // 𠍡
+ 0x20362: "\x03\x02\x05\x04\x05\x02\x03\x03\x01\x03\x04\x05\x03", // 𠍢
+ 0x20363: "\x03\x02\x01\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01", // 𠍣
+ 0x20364: "\x03\x02\x01\x02\x01\x02\x01\x02\x04\x05\x05\x02\x01", // 𠍤
+ 0x20365: "\x03\x02\x02\x05\x01\x01\x01\x03\x04\x03\x04\x05\x04", // 𠍥
+ 0x20366: "\x03\x02\x02\x02\x05\x04\x02\x05\x01\x01\x01\x03\x04", // 𠍦
+ 0x20367: "\x03\x02\x03\x05\x03\x05\x02\x02\x01\x01\x02\x01", // 𠍧
+ 0x20368: "\x03\x02\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05", // 𠍨
+ 0x20369: "\x03\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04\x03\x02", // 𠍩
+ 0x2036a: "\x03\x02\x01\x03\x05\x03\x03\x03\x04\x04\x04\x04\x04", // 𠍪
+ 0x2036b: "\x03\x02\x03\x04\x01\x03\x02\x05\x02\x03\x05\x03\x04", // 𠍫
+ 0x2036c: "\x03\x02\x01\x05\x02\x05\x01\x01\x02\x05\x01\x01\x02", // 𠍬
+ 0x2036d: "\x03\x02\x04\x01\x04\x03\x01\x02\x05\x01\x03\x05\x04", // 𠍭
+ 0x2036e: "\x03\x02\x03\x03\x04\x03\x04\x03\x04\x03\x04\x01\x02\x01", // 𠍮
+ 0x2036f: "\x03\x02\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04", // 𠍯
+ 0x20370: "\x03\x02\x02\x05\x01\x02\x01\x02\x01\x01\x02\x01\x01\x02\x04", // 𠍰
+ 0x20371: "\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x03\x04", // 𠍱
+ 0x20372: "\x03\x02\x04\x04\x01\x01\x05\x01\x05\x01\x02\x03\x04", // 𠍲
+ 0x20373: "\x01\x02\x02\x01\x03\x04\x03\x04\x02\x03\x04\x03\x04\x02", // 𠍳
+ 0x20374: "\x03\x02\x01\x01\x03\x04\x01\x01\x03\x04\x04\x05\x04\x04", // 𠍴
+ 0x20375: "\x03\x02\x04\x03\x01\x01\x02\x01\x04\x05\x05\x03\x04", // 𠍵
+ 0x20376: "\x03\x02\x01\x02\x05\x01\x02\x01\x03\x05\x04\x04\x04\x04", // 𠍶
+ 0x20377: "\x03\x02\x01\x02\x05\x02\x03\x04\x01\x02\x05\x02\x03\x04", // 𠍷
+ 0x20378: "\x03\x02\x03\x02\x05\x02\x02\x01\x03\x02\x03\x03\x03\x04", // 𠍸
+ 0x20379: "\x03\x02\x03\x01\x04\x03\x01\x04\x03\x04\x01\x02\x05\x01", // 𠍹
+ 0x2037a: "\x03\x04\x01\x02\x05\x02\x02\x01\x05\x04\x02\x01\x03\x04", // 𠍺
+ 0x2037b: "\x03\x02\x05\x01\x05\x01\x02\x01\x01\x02\x01\x02\x05\x01", // 𠍻
+ 0x2037c: "\x03\x02\x01\x02\x01\x04\x05\x01\x02\x05\x01\x04\x03\x01", // 𠍼
+ 0x2037d: "\x03\x02\x01\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01", // 𠍽
+ 0x2037e: "\x03\x02\x01\x02\x05\x01\x01\x04\x04\x05\x05\x03\x01\x05", // 𠍾
+ 0x2037f: "\x03\x02\x05\x05\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𠍿
+ 0x20380: "\x03\x02\x02\x01\x03\x05\x04\x01\x05\x02\x01\x02\x03\x04", // 𠎀
+ 0x20381: "\x03\x02\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𠎁
+ 0x20382: "\x03\x02\x04\x01\x02\x05\x01\x01\x01\x01\x01\x03\x05\x04", // 𠎂
+ 0x20383: "\x03\x04\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x01\x02", // 𠎃
+ 0x20384: "\x03\x04\x04\x01\x02\x05\x01\x05\x02\x01\x03\x01\x03\x04", // 𠎄
+ 0x20385: "\x03\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04", // 𠎅
+ 0x20386: "\x03\x02\x05\x04\x03\x03\x04\x05\x01\x05\x03\x05\x05\x04", // 𠎆
+ 0x20387: "\x03\x02\x01\x01\x01\x02\x02\x05\x01\x05\x03\x01\x03\x04", // 𠎇
+ 0x20388: "\x03\x04\x01\x02\x05\x01\x03\x04\x04\x03\x05\x01\x01\x02", // 𠎈
+ 0x20389: "\x03\x02\x01\x04\x05\x02\x04\x01\x03\x04\x01\x01\x05\x04", // 𠎉
+ 0x2038a: "\x03\x02\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04", // 𠎊
+ 0x2038b: "\x03\x02\x01\x04\x05\x02\x04\x01\x03\x04\x04\x01\x03\x04", // 𠎋
+ 0x2038c: "\x03\x02\x01\x04\x05\x02\x04\x01\x03\x04\x04\x03\x03\x04", // 𠎌
+ 0x2038d: "\x03\x04\x01\x02\x05\x01\x01\x02\x01\x02\x03\x02\x01\x05", // 𠎍
+ 0x2038e: "\x03\x02\x01\x02\x01\x02\x05\x01\x04\x03\x01\x03\x03\x03", // 𠎎
+ 0x2038f: "\x03\x04\x01\x02\x05\x01\x03\x05\x01\x01\x02\x05\x01\x02", // 𠎏
+ 0x20390: "\x03\x02\x01\x02\x01\x02\x01\x01\x02\x01\x03\x05\x01\x01", // 𠎐
+ 0x20391: "\x03\x02\x01\x02\x01\x02\x01\x01\x02\x01\x02\x01\x01\x02", // 𠎑
+ 0x20392: "\x03\x02\x05\x01\x01\x02\x02\x05\x01\x01\x04\x05\x04\x04", // 𠎒
+ 0x20393: "\x03\x02\x05\x01\x01\x02\x02\x05\x01\x01\x04\x01\x03\x04", // 𠎓
+ 0x20394: "\x03\x02\x03\x01\x01\x02\x03\x01\x01\x02\x03\x01\x01\x02", // 𠎔
+ 0x20395: "\x03\x02\x02\x03\x01\x03\x04\x01\x02\x01\x02\x01\x05\x02", // 𠎕
+ 0x20396: "\x03\x02\x03\x05\x04\x05\x01\x02\x04\x03\x01\x02\x03\x04", // 𠎖
+ 0x20397: "\x03\x02\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x05\x04", // 𠎗
+ 0x20398: "\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x02\x01\x04", // 𠎘
+ 0x20399: "\x01\x03\x04\x03\x04\x02\x03\x04\x03\x04\x01\x02\x05\x01", // 𠎙
+ 0x2039a: "\x03\x04\x01\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x02", // 𠎚
+ 0x2039b: "\x03\x04\x01\x03\x04\x03\x04\x03\x04\x03\x04\x01\x03\x05", // 𠎛
+ 0x2039c: "\x02\x01\x02\x05\x01\x01\x01\x01\x01\x03\x04\x04\x05\x04", // 𠎜
+ 0x2039d: "\x03\x02\x01\x01\x03\x04\x01\x01\x03\x04\x04\x05\x04\x04", // 𠎝
+ 0x2039e: "\x03\x02\x01\x02\x02\x01\x01\x01\x03\x04\x03\x05\x01\x01", // 𠎞
+ 0x2039f: "\x03\x02\x01\x02\x02\x05\x01\x01\x01\x01\x01\x03\x05\x04", // 𠎟
+ 0x203a0: "\x03\x02\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x03\x04", // 𠎠
+ 0x203a1: "\x03\x02\x02\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04\x01", // 𠎡
+ 0x203a2: "\x03\x02\x04\x04\x01\x01\x02\x01\x05\x04\x04\x05\x04\x04", // 𠎢
+ 0x203a3: "\x03\x02\x01\x02\x05\x02\x02\x01\x01\x03\x04\x02\x05\x02", // 𠎣
+ 0x203a4: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02", // 𠎤
+ 0x203a5: "\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x02\x05\x01\x01", // 𠎥
+ 0x203a6: "\x03\x02\x05\x01\x05\x02\x05\x01\x02\x05\x01\x02\x01\x04", // 𠎦
+ 0x203a7: "\x03\x02\x01\x01\x01\x02\x05\x03\x05\x05\x04\x02\x03\x04", // 𠎧
+ 0x203a8: "\x03\x02\x05\x05\x04\x04\x04\x04\x03\x04\x01\x02\x05\x01", // 𠎨
+ 0x203a9: "\x03\x02\x02\x01\x01\x01\x02\x01\x01\x01\x04\x05\x04\x04", // 𠎩
+ 0x203aa: "\x03\x02\x05\x01\x03\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 𠎪
+ 0x203ab: "\x03\x02\x01\x02\x02\x05\x01\x01\x01\x02\x03\x05\x01\x01", // 𠎫
+ 0x203ac: "\x03\x02\x03\x01\x04\x03\x01\x04\x01\x02\x01\x01\x02\x04", // 𠎬
+ 0x203ad: "\x03\x02\x01\x02\x02\x01\x02\x05\x01\x01\x03\x01\x03\x04", // 𠎭
+ 0x203ae: "\x03\x02\x01\x03\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04", // 𠎮
+ 0x203af: "\x03\x02\x04\x04\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 𠎯
+ 0x203b0: "\x03\x02\x01\x01\x02\x02\x02\x05\x03\x04\x04\x05\x04\x04", // 𠎰
+ 0x203b1: "\x03\x02\x01\x05\x03\x05\x01\x05\x03\x05\x04\x05\x04\x04", // 𠎱
+ 0x203b2: "\x03\x02\x01\x02\x01\x02\x01\x05\x02\x05\x02\x05\x01\x01", // 𠎲
+ 0x203b3: "\x03\x04\x01\x01\x02\x03\x04\x03\x04\x01\x01\x02\x03\x04", // 𠎳
+ 0x203b4: "\x03\x02\x05\x01\x03\x03\x01\x01\x05\x01\x03\x02\x05\x02", // 𠎴
+ 0x203b5: "\x03\x02\x04\x01\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 𠎵
+ 0x203b6: "\x01\x01\x02\x03\x04\x01\x03\x05\x05\x03\x04\x03\x04", // 𠎶
+ 0x203b7: "\x03\x02\x03\x01\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𠎷
+ 0x203b8: "\x03\x02\x01\x02\x03\x04\x03\x04\x01\x02\x05\x02\x05\x01\x01", // 𠎸
+ 0x203b9: "\x03\x02\x01\x05\x02\x04\x05\x04\x05\x04\x04\x03\x05\x04", // 𠎹
+ 0x203ba: "\x03\x02\x02\x05\x02\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𠎺
+ 0x203bb: "\x03\x02\x03\x03\x01\x02\x02\x05\x01\x01\x01\x04\x05\x04", // 𠎻
+ 0x203bc: "\x03\x02\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04\x02\x02", // 𠎼
+ 0x203bd: "\x03\x02\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x03\x05\x04", // 𠎽
+ 0x203be: "\x03\x02\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x05\x01\x05", // 𠎾
+ 0x203bf: "\x03\x02\x03\x05\x03\x05\x01\x01\x02\x05\x03\x03\x01\x01\x02", // 𠎿
+ 0x203c0: "\x03\x02\x02\x05\x01\x02\x02\x05\x02\x05\x01\x04\x05\x04", // 𠏀
+ 0x203c1: "\x03\x02\x05\x02\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𠏁
+ 0x203c2: "\x03\x02\x01\x03\x05\x03\x03\x01\x03\x05\x03\x03\x01\x02\x01", // 𠏂
+ 0x203c3: "\x03\x02\x02\x05\x01\x02\x01\x04\x03\x01\x02\x01\x05\x03\x04", // 𠏃
+ 0x203c4: "\x03\x02\x01\x02\x02\x01\x01\x01\x02\x05\x01\x03\x01\x02\x01", // 𠏄
+ 0x203c5: "\x03\x02\x04\x04\x05\x03\x04\x05\x01\x03\x05\x02\x02\x05\x02", // 𠏅
+ 0x203c6: "\x03\x02\x01\x02\x01\x02\x03\x05\x01\x02\x05\x01\x01\x02\x04", // 𠏆
+ 0x203c7: "\x03\x04\x01\x02\x05\x05\x04\x05\x05\x04\x02\x05\x01\x02\x01", // 𠏇
+ 0x203c8: "\x03\x02\x03\x05\x05\x02\x03\x03\x05\x03\x01\x01\x02\x05\x02", // 𠏈
+ 0x203c9: "\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 𠏉
+ 0x203ca: "\x03\x02\x01\x02\x02\x04\x03\x01\x03\x05\x01\x03\x04", // 𠏊
+ 0x203cb: "\x03\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04\x04\x05\x04\x04", // 𠏋
+ 0x203cc: "\x03\x02\x04\x03\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 𠏌
+ 0x203cd: "\x03\x02\x01\x03\x01\x02\x01\x03\x05\x04\x01\x04\x05\x04", // 𠏍
+ 0x203ce: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x01\x01\x02\x01\x02", // 𠏎
+ 0x203cf: "\x01\x02\x02\x01\x02\x05\x01\x02\x01\x01\x01\x05\x04\x03\x04", // 𠏏
+ 0x203d0: "\x03\x02\x05\x01\x01\x02\x03\x02\x01\x01\x05\x05\x02\x01\x02", // 𠏐
+ 0x203d1: "\x03\x02\x02\x05\x01\x01\x01\x03\x05\x03\x03\x03\x05\x03\x03", // 𠏑
+ 0x203d2: "\x03\x02\x01\x02\x01\x02\x01\x04\x05\x02\x02\x02\x04\x01\x03\x04", // 𠏒
+ 0x203d3: "\x03\x04\x04\x05\x01\x01\x03\x02\x05\x01\x05\x04\x02\x05\x01", // 𠏓
+ 0x203d4: "\x03\x02\x01\x02\x01\x02\x01\x05\x02\x01\x03\x04\x05\x03\x04", // 𠏔
+ 0x203d5: "\x03\x02\x01\x02\x03\x04\x01\x02\x05\x02\x02\x01\x05\x03\x01", // 𠏕
+ 0x203d6: "\x03\x02\x01\x03\x04\x04\x03\x01\x01\x02\x01\x04\x04\x04\x04", // 𠏖
+ 0x203d7: "\x03\x02\x01\x03\x04\x04\x03\x02\x05\x01\x01\x04\x03\x03\x04", // 𠏗
+ 0x203d8: "\x03\x02\x02\x05\x01\x03\x02\x05\x04\x01\x01\x01\x02\x05\x01", // 𠏘
+ 0x203d9: "\x03\x02\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05", // 𠏙
+ 0x203da: "\x03\x02\x03\x04\x01\x03\x05\x01\x01\x02\x02\x04\x05\x04\x04", // 𠏚
+ 0x203db: "\x03\x02\x04\x01\x03\x01\x02\x02\x01\x03\x04\x04\x01\x05\x03", // 𠏛
+ 0x203dc: "\x03\x02\x04\x03\x01\x01\x02\x01\x04\x01\x01\x01\x02\x05\x01", // 𠏜
+ 0x203dd: "\x03\x02\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01\x01", // 𠏝
+ 0x203de: "\x03\x02\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x05\x03\x04", // 𠏞
+ 0x203df: "\x03\x02\x04\x01\x02\x05\x02\x05\x01\x01\x03\x01\x02\x03\x04", // 𠏟
+ 0x203e0: "\x03\x02\x02\x05\x01\x02\x01\x02\x01\x01\x02\x01\x01\x02\x01", // 𠏠
+ 0x203e1: "\x03\x02\x01\x04\x05\x02\x04\x01\x03\x04\x03\x04\x01\x05\x04", // 𠏡
+ 0x203e2: "\x03\x02\x03\x04\x04\x03\x05\x04\x02\x05\x05\x04\x05\x04\x05", // 𠏢
+ 0x203e3: "\x03\x02\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x02", // 𠏣
+ 0x203e4: "\x03\x02\x03\x05\x04\x01\x05\x02\x02\x05\x01\x01\x01\x03\x04", // 𠏤
+ 0x203e5: "\x03\x02\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01\x01\x03\x04", // 𠏥
+ 0x203e6: "\x03\x02\x03\x05\x03\x03\x04\x01\x02\x05\x01\x04\x05\x01\x02", // 𠏦
+ 0x203e7: "\x03\x04\x01\x05\x01\x01\x03\x02\x05\x01\x03\x04\x01\x05\x04", // 𠏧
+ 0x203e8: "\x03\x02\x04\x04\x05\x03\x05\x03\x05\x03\x03\x04\x04\x05\x04\x04", // 𠏨
+ 0x203e9: "\x03\x02\x02\x05\x02\x04\x01\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 𠏩
+ 0x203ea: "\x03\x02\x05\x04\x03\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𠏪
+ 0x203eb: "\x03\x02\x01\x02\x05\x01\x02\x05\x05\x02\x01\x02\x05\x02\x02\x01", // 𠏫
+ 0x203ec: "\x03\x02\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x01\x01\x05", // 𠏬
+ 0x203ed: "\x03\x02\x01\x02\x02\x01\x01\x01\x05\x04\x03\x02\x03\x04\x03\x04", // 𠏭
+ 0x203ee: "\x03\x02\x02\x02\x04\x03\x01\x03\x04\x01\x01\x02\x01\x01\x02\x04", // 𠏮
+ 0x203ef: "\x03\x02\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x03\x01\x01\x02", // 𠏯
+ 0x203f0: "\x03\x02\x04\x01\x03\x05\x02\x02\x01\x01\x05\x04\x04\x04\x04", // 𠏰
+ 0x203f1: "\x03\x02\x01\x02\x03\x04\x03\x04\x01\x02\x05\x01\x01\x01\x03\x04", // 𠏱
+ 0x203f2: "\x03\x02\x02\x05\x02\x02\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 𠏲
+ 0x203f3: "\x03\x01\x02\x05\x01\x01\x02\x01\x01\x03\x02\x05\x04\x03\x04", // 𠏳
+ 0x203f4: "\x03\x02\x01\x02\x04\x05\x02\x05\x01\x02\x01\x05\x02\x01\x03\x04", // 𠏴
+ 0x203f5: "\x03\x02\x03\x05\x01\x03\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𠏵
+ 0x203f6: "\x03\x02\x04\x04\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04\x05\x03", // 𠏶
+ 0x203f7: "\x03\x02\x04\x04\x05\x04\x05\x04\x03\x04\x02\x05\x01\x02\x01\x04", // 𠏷
+ 0x203f8: "\x03\x04\x01\x02\x05\x01\x03\x04\x03\x01\x02\x03\x04\x03\x01\x02", // 𠏸
+ 0x203f9: "\x03\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x02\x01\x04\x01", // 𠏹
+ 0x203fa: "\x03\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x05", // 𠏺
+ 0x203fb: "\x03\x02\x02\x01\x04\x05\x01\x03\x04\x03\x04\x02\x05\x01\x01\x01", // 𠏻
+ 0x203fc: "\x03\x02\x01\x02\x01\x02\x05\x01\x04\x03\x01\x05\x03\x02\x05\x01", // 𠏼
+ 0x203fd: "\x03\x02\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x04\x04\x04\x04", // 𠏽
+ 0x203fe: "\x03\x02\x03\x02\x01\x05\x01\x01\x03\x04\x05\x01\x01\x05\x03\x04", // 𠏾
+ 0x203ff: "\x03\x02\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02", // 𠏿
+ 0x20400: "\x03\x02\x03\x03\x02\x01\x05\x03\x01\x05\x03\x05\x03\x05\x03\x04", // 𠐀
+ 0x20401: "\x03\x02\x01\x02\x01\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 𠐁
+ 0x20402: "\x03\x04\x03\x05\x04\x03\x05\x04\x02\x05\x02\x03\x05\x02\x05\x01", // 𠐂
+ 0x20403: "\x03\x02\x02\x03\x05\x04\x05\x04\x01\x05\x04\x01\x04\x05\x04\x04", // 𠐃
+ 0x20404: "\x03\x02\x05\x05\x05\x02\x05\x03\x04\x01\x02\x05\x01\x05\x05\x04", // 𠐄
+ 0x20405: "\x03\x02\x01\x02\x02\x01\x01\x01\x04\x04\x05\x02\x05\x01\x01\x01", // 𠐅
+ 0x20406: "\x03\x02\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04\x01\x02\x04", // 𠐆
+ 0x20407: "\x01\x03\x04\x03\x04\x02\x03\x04\x01\x03\x04\x03\x04\x02\x03\x04", // 𠐇
+ 0x20408: "\x03\x02\x03\x02\x05\x01\x01\x01\x04\x04\x05\x03\x05\x04\x01\x05\x03", // 𠐈
+ 0x20409: "\x03\x02\x03\x01\x04\x03\x01\x04\x05\x01\x01\x05\x04\x05\x02", // 𠐉
+ 0x2040a: "\x03\x02\x01\x02\x05\x01\x02\x05\x05\x04\x01\x02\x05\x01\x04\x03\x01", // 𠐊
+ 0x2040b: "\x03\x02\x03\x05\x04\x01\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 𠐋
+ 0x2040c: "\x03\x02\x02\x05\x02\x02\x01\x05\x04\x03\x05\x04\x01\x01\x05\x01\x05", // 𠐌
+ 0x2040d: "\x03\x02\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01\x03\x01\x03\x04", // 𠐍
+ 0x2040e: "\x03\x02\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 𠐎
+ 0x2040f: "\x03\x02\x04\x04\x05\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 𠐏
+ 0x20410: "\x03\x02\x01\x02\x02\x03\x05\x04\x04\x05\x04\x01\x01\x02\x03\x04", // 𠐐
+ 0x20411: "\x03\x02\x01\x02\x04\x05\x02\x05\x01\x02\x01\x05\x04\x02\x01\x03\x04", // 𠐑
+ 0x20412: "\x03\x02\x04\x03\x01\x01\x02\x01\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𠐒
+ 0x20413: "\x03\x02\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x01\x01\x02\x01\x04", // 𠐓
+ 0x20414: "\x03\x02\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01", // 𠐔
+ 0x20415: "\x03\x02\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02\x05\x02", // 𠐕
+ 0x20416: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x03\x05\x05\x04", // 𠐖
+ 0x20417: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x01\x05\x03\x04", // 𠐗
+ 0x20418: "\x03\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x02\x02", // 𠐘
+ 0x20419: "\x03\x04\x01\x02\x05\x01\x01\x02\x02\x01\x02\x03\x04\x01\x02\x03\x04", // 𠐙
+ 0x2041a: "\x03\x02\x01\x02\x02\x04\x03\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05", // 𠐚
+ 0x2041b: "\x03\x02\x02\x05\x02\x02\x01\x01\x02\x01\x02\x05\x01\x03\x05\x03\x04", // 𠐛
+ 0x2041c: "\x03\x02\x04\x01\x01\x02\x02\x01\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 𠐜
+ 0x2041d: "\x03\x02\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01\x04\x04\x05\x04", // 𠐝
+ 0x2041e: "\x03\x02\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01", // 𠐞
+ 0x2041f: "\x03\x02\x04\x04\x05\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 𠐟
+ 0x20420: "\x03\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01\x01\x02\x05\x01", // 𠐠
+ 0x20421: "\x03\x02\x03\x01\x01\x01\x02\x01\x01\x01\x01\x02\x05\x01\x01\x01\x02", // 𠐡
+ 0x20422: "\x03\x02\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01\x01\x01\x03\x05", // 𠐢
+ 0x20423: "\x03\x02\x01\x02\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04\x04\x05\x04\x04", // 𠐣
+ 0x20424: "\x03\x02\x04\x01\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x03\x05\x03\x04", // 𠐤
+ 0x20425: "\x03\x02\x04\x05\x04\x03\x01\x02\x05\x01\x02\x02\x05\x01\x04\x05\x04\x04", // 𠐥
+ 0x20426: "\x03\x02\x04\x01\x02\x05\x02\x02\x01\x05\x04\x01\x03\x04\x03\x05\x03\x04", // 𠐦
+ 0x20427: "\x03\x02\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x02\x05\x01\x01\x01", // 𠐧
+ 0x20428: "\x03\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01", // 𠐨
+ 0x20429: "\x03\x02\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x03\x02\x01\x05\x01\x01", // 𠐩
+ 0x2042a: "\x03\x02\x02\x01\x02\x01\x02\x05\x01\x02\x05\x01\x01\x02\x02\x01\x01\x01", // 𠐪
+ 0x2042b: "\x03\x02\x03\x01\x04\x03\x01\x04\x05\x05\x04\x05\x01\x02\x01\x01\x02\x04", // 𠐫
+ 0x2042c: "\x03\x02\x03\x01\x02\x03\x04\x05\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𠐬
+ 0x2042d: "\x03\x02\x02\x01\x02\x01\x01\x03\x05\x03\x03\x03\x04\x03\x01\x01\x02\x01", // 𠐭
+ 0x2042e: "\x03\x02\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x05\x02\x01", // 𠐮
+ 0x2042f: "\x03\x02\x05\x01\x05\x05\x01\x05\x01\x02\x02\x01\x03\x04\x04\x05\x04", // 𠐯
+ 0x20430: "\x03\x04\x02\x01\x02\x01\x03\x04\x02\x01\x02\x01\x03\x04\x02\x01\x02\x01", // 𠐰
+ 0x20431: "\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x03\x04", // 𠐱
+ 0x20432: "\x03\x02\x01\x05\x03\x04\x02\x05\x01\x01\x01\x05\x03\x04\x02\x05\x01\x01", // 𠐲
+ 0x20433: "\x03\x02\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 𠐳
+ 0x20434: "\x03\x02\x02\x05\x01\x01\x01\x01\x02\x03\x04\x03\x05\x05\x04\x02\x03\x04", // 𠐴
+ 0x20435: "\x03\x02\x04\x03\x01\x03\x02\x05\x01\x01\x01\x04\x05\x04\x01\x02\x04", // 𠐵
+ 0x20436: "\x03\x02\x01\x04\x05\x02\x04\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𠐶
+ 0x20437: "\x03\x02\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x04\x05\x04\x04", // 𠐷
+ 0x20438: "\x03\x04\x01\x01\x02\x03\x04\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𠐸
+ 0x20439: "\x03\x02\x04\x03\x01\x02\x03\x04\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 𠐹
+ 0x2043a: "\x03\x02\x02\x01\x02\x01\x02\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𠐺
+ 0x2043b: "\x03\x02\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 𠐻
+ 0x2043c: "\x03\x02\x01\x02\x05\x01\x02\x05\x03\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 𠐼
+ 0x2043d: "\x03\x02\x03\x02\x05\x01\x05\x01\x02\x01\x02\x01\x05\x01\x01\x04\x05\x02\x05\x02", // 𠐽
+ 0x2043e: "\x03\x02\x01\x02\x02\x01\x01\x01\x03\x04\x01\x03\x02\x05\x01\x01\x03\x04", // 𠐾
+ 0x2043f: "\x03\x02\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x01\x03\x05\x04\x01\x05", // 𠐿
+ 0x20440: "\x03\x02\x01\x02\x01\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04\x05\x03\x04", // 𠑀
+ 0x20441: "\x03\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x03\x05\x03\x04", // 𠑁
+ 0x20442: "\x03\x04\x02\x01\x02\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𠑂
+ 0x20443: "\x03\x02\x01\x02\x01\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𠑃
+ 0x20444: "\x03\x02\x04\x01\x01\x01\x02\x05\x01\x04\x03\x03\x04\x04\x03\x03\x04\x05\x04", // 𠑄
+ 0x20445: "\x03\x02\x04\x04\x05\x03\x05\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 𠑅
+ 0x20446: "\x03\x02\x05\x01\x01\x02\x02\x05\x01\x01\x03\x01\x02\x03\x02\x01\x05\x01\x01", // 𠑆
+ 0x20447: "\x03\x02\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𠑇
+ 0x20448: "\x03\x02\x04\x04\x01\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01", // 𠑈
+ 0x20449: "\x03\x02\x03\x04\x03\x04\x02\x05\x01\x05\x01\x01\x05\x03\x04\x04\x05\x04", // 𠑉
+ 0x2044a: "\x03\x02\x04\x04\x03\x01\x03\x01\x02\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 𠑊
+ 0x2044b: "\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x01\x02\x01\x01\x02\x01\x01\x03\x02", // 𠑋
+ 0x2044c: "\x03\x02\x02\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04", // 𠑌
+ 0x2044d: "\x03\x02\x01\x03\x02\x05\x01\x01\x01\x02\x01\x02\x01\x05\x01\x05\x03\x04\x03\x05\x04", // 𠑍
+ 0x2044e: "\x03\x02\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x01\x04\x03\x03\x04", // 𠑎
+ 0x2044f: "\x03\x02\x01\x02\x01\x02\x01\x02\x03\x04\x03\x04\x01\x04\x01\x01\x01\x02\x05\x01", // 𠑏
+ 0x20450: "\x03\x04\x04\x05\x01\x01\x03\x02\x05\x01\x03\x04\x04\x05\x01\x01\x03\x02\x05\x01", // 𠑐
+ 0x20451: "\x03\x02\x05\x01\x01\x02\x02\x05\x01\x01\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01", // 𠑑
+ 0x20452: "\x03\x02\x05\x02\x01\x02\x05\x01\x01\x05\x02\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𠑒
+ 0x20453: "\x03\x02\x01\x04\x03\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04\x04\x05\x04\x04", // 𠑓
+ 0x20454: "\x03\x02\x02\x05\x01\x01\x05\x02\x02\x05\x02\x01\x03\x04\x04\x03\x01\x02\x03\x04", // 𠑔
+ 0x20455: "\x03\x02\x03\x05\x05\x02\x04\x01\x01\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01", // 𠑕
+ 0x20456: "\x03\x02\x04\x01\x04\x03\x01\x02\x05\x02\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 𠑖
+ 0x20457: "\x03\x02\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x01\x03\x04\x05\x01\x05", // 𠑗
+ 0x20458: "\x03\x02\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𠑘
+ 0x20459: "\x03\x02\x04\x04\x05\x04\x01\x04\x03\x01\x03\x05\x04\x01\x02\x01\x05\x01\x05\x01\x01\x01", // 𠑙
+ 0x2045a: "\x03\x02\x01\x03\x02\x05\x01\x01\x01\x02\x01\x02\x01\x05\x01\x05\x03\x05\x03\x05\x03\x04", // 𠑚
+ 0x2045b: "\x03\x02\x02\x01\x02\x01\x03\x05\x02\x05\x01\x04\x05\x02\x01\x02\x01\x03\x01\x03\x04", // 𠑛
+ 0x2045c: "\x03\x04\x01\x05\x01\x01\x03\x02\x05\x01\x04\x03\x01\x02\x03\x04\x02\x05\x02\x02\x01", // 𠑜
+ 0x2045d: "\x03\x04\x01\x01\x02\x03\x04\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𠑝
+ 0x2045e: "\x03\x02\x03\x02\x01\x05\x01\x01\x03\x04\x05\x01\x01\x05\x03\x04\x04\x05\x04", // 𠑞
+ 0x2045f: "\x03\x02\x03\x02\x05\x01\x01\x01\x04\x04\x05\x03\x05\x04\x01\x05\x03\x04\x05\x04", // 𠑟
+ 0x20460: "\x03\x02\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𠑠
+ 0x20461: "\x03\x02\x05\x01\x01\x02\x02\x05\x01\x01\x03\x04\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 𠑡
+ 0x20462: "\x03\x02\x02\x01\x02\x01\x01\x02\x01\x03\x04\x01\x02\x01\x03\x05\x04\x01\x01\x05\x04", // 𠑢
+ 0x20463: "\x03\x02\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x01\x03\x04\x05\x01\x05", // 𠑣
+ 0x20464: "\x03\x02\x01\x02\x05\x01\x01\x02\x03\x04\x01\x02\x05\x01\x01\x02\x03\x04\x02\x05\x01\x01", // 𠑤
+ 0x20465: "\x03\x02\x03\x01\x04\x03\x01\x04\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 𠑥
+ 0x20466: "\x03\x02\x01\x02\x01\x02\x03\x02\x05\x01\x05\x01\x04\x01\x04\x03\x01\x01\x02\x05\x02\x01", // 𠑦
+ 0x20467: "\x03\x02\x02\x01\x02\x01\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03", // 𠑧
+ 0x20468: "\x03\x02\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 𠑨
+ 0x20469: "\x03\x02\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𠑩
+ 0x2046a: "\x03\x02\x02\x05\x01\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x02\x05\x01", // 𠑪
+ 0x2046b: "\x03\x02\x02\x01\x02\x01\x01\x01\x02\x04\x01\x01\x01\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01", // 𠑫
+ 0x2046c: "\x03\x02\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 𠑬
+ 0x2046d: "\x03\x02\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x02", // 𠑭
+ 0x2046e: "\x03\x04\x02\x05\x01\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x01\x03\x05\x03\x03\x03\x04", // 𠑮
+ 0x2046f: "\x03\x02\x01\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𠑯
+ 0x20470: "\x03\x04\x01\x01\x02\x02\x05\x01\x03\x04\x01\x01\x02\x02\x05\x01\x03\x04\x01\x01\x02\x02\x05\x01", // 𠑰
+ 0x20471: "\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x03\x04", // 𠑱
+ 0x20472: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 𠑲
+ 0x20473: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01\x02\x01\x01\x03\x05\x03\x03\x03\x04", // 𠑳
+ 0x20474: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x04\x04\x01\x01\x01\x02\x01\x02\x05\x01\x01", // 𠑴
+ 0x20475: "\x03\x02\x01\x02\x05\x02\x02\x01\x01\x02\x01\x01\x02\x05\x01\x01\x05\x03\x04\x01\x02\x01\x03\x03\x01\x02\x02\x05\x01", // 𠑵
+ 0x20476: "\x01\x05\x03\x05", // 𠑶
+ 0x20477: "\x02\x01\x01\x03\x05", // 𠑷
+ 0x20478: "\x01\x05\x05\x03\x05", // 𠑸
+ 0x20479: "\x03\x01\x05\x05\x05\x01", // 𠑹
+ 0x2047a: "\x01\x04\x04\x05\x03\x05", // 𠑺
+ 0x2047b: "\x05\x01\x04\x01\x03\x05", // 𠑻
+ 0x2047c: "\x03\x05\x05\x01\x03\x05", // 𠑼
+ 0x2047d: "\x04\x01\x02\x05\x01\x03\x05", // 𠑽
+ 0x2047e: "\x03\x05\x05\x01\x03\x03\x05", // 𠑾
+ 0x2047f: "\x03\x02\x01\x01\x01\x03\x05", // 𠑿
+ 0x20480: "\x01\x02\x04\x03\x01\x03\x05", // 𠒀
+ 0x20481: "\x04\x03\x05\x01\x03\x03\x05", // 𠒁
+ 0x20482: "\x03\x05\x05\x01\x03\x05", // 𠒂
+ 0x20483: "\x03\x04\x03\x04\x02\x01\x03\x05", // 𠒃
+ 0x20484: "\x05\x02\x02\x05\x02\x01\x03\x05", // 𠒄
+ 0x20485: "\x02\x05\x01\x05\x05\x01\x03\x05", // 𠒅
+ 0x20486: "\x03\x02\x05\x03\x04\x01\x03\x05", // 𠒆
+ 0x20487: "\x03\x02\x05\x04\x03\x01\x03\x05", // 𠒇
+ 0x20488: "\x01\x02\x04\x05\x01\x01\x03\x05", // 𠒈
+ 0x20489: "\x01\x01\x03\x05\x05\x02\x01\x01", // 𠒉
+ 0x2048a: "\x02\x05\x04\x05\x04\x01\x03\x05", // 𠒊
+ 0x2048b: "\x04\x01\x03\x04\x05\x02\x03\x05", // 𠒋
+ 0x2048c: "\x01\x02\x01\x02\x01\x02\x01\x03\x05", // 𠒌
+ 0x2048d: "\x03\x02\x01\x05\x01\x01\x03\x05", // 𠒍
+ 0x2048e: "\x03\x01\x05\x01\x01\x01\x05\x03\x05", // 𠒎
+ 0x2048f: "\x01\x01\x01\x03\x04\x01\x01\x03\x05", // 𠒏
+ 0x20490: "\x01\x02\x02\x05\x01\x03\x05\x01\x05\x03", // 𠒐
+ 0x20491: "\x03\x01\x02\x01\x03\x05\x01\x01\x03\x05", // 𠒑
+ 0x20492: "\x03\x01\x02\x01\x03\x05\x05\x01\x05\x02", // 𠒒
+ 0x20493: "\x01\x01\x03\x04\x01\x02\x05\x03\x05\x01", // 𠒓
+ 0x20494: "\x01\x05\x02\x03\x05\x01\x05\x02\x03\x05", // 𠒔
+ 0x20495: "\x05\x04\x03\x05\x03\x03\x03\x05\x03\x04", // 𠒕
+ 0x20496: "\x01\x02\x01\x02\x01\x02\x01\x01\x03\x05", // 𠒖
+ 0x20497: "\x02\x04\x03\x01\x03\x05\x02\x05\x01\x01\x02", // 𠒗
+ 0x20498: "\x01\x02\x02\x05\x01\x03\x05\x05\x03\x04\x04", // 𠒘
+ 0x20499: "\x01\x02\x02\x05\x01\x03\x05\x03\x03\x01\x02", // 𠒙
+ 0x2049a: "\x01\x02\x02\x05\x01\x03\x05\x04\x04\x01\x02", // 𠒚
+ 0x2049b: "\x02\x05\x01\x01\x02\x03\x01\x02\x01\x03\x05", // 𠒛
+ 0x2049c: "\x01\x01\x03\x05\x03\x02\x05\x01\x01\x03\x05", // 𠒜
+ 0x2049d: "\x02\x04\x03\x01\x03\x05\x01\x02\x05\x03\x04", // 𠒝
+ 0x2049e: "\x01\x01\x03\x05\x03\x02\x01\x01\x05\x01\x01\x05", // 𠒞
+ 0x2049f: "\x01\x02\x01\x03\x05\x02\x05\x01\x03\x05\x03\x05", // 𠒟
+ 0x204a0: "\x01\x02\x02\x05\x01\x03\x05\x02\x05\x01\x01\x05", // 𠒠
+ 0x204a1: "\x02\x04\x03\x01\x03\x05\x03\x04\x04\x04\x01\x02", // 𠒡
+ 0x204a2: "\x01\x01\x03\x05\x03\x05\x02\x05\x01\x03\x05", // 𠒢
+ 0x204a3: "\x03\x01\x02\x01\x03\x05\x03\x03\x02\x01\x01\x02", // 𠒣
+ 0x204a4: "\x04\x03\x01\x01\x02\x01\x03\x05\x03\x05\x02\x03\x04", // 𠒤
+ 0x204a5: "\x02\x04\x03\x01\x03\x05\x04\x01\x03\x01\x02\x03\x04", // 𠒥
+ 0x204a6: "\x02\x04\x03\x01\x03\x05\x02\x05\x01\x03\x02\x05\x01", // 𠒦
+ 0x204a7: "\x01\x02\x05\x02\x03\x04\x01\x02\x05\x02\x03\x04\x03\x05", // 𠒧
+ 0x204a8: "\x01\x05\x04\x03\x05\x04\x01\x02\x05\x01\x02\x03\x04", // 𠒨
+ 0x204a9: "\x01\x05\x04\x03\x05\x04\x04\x05\x02\x05\x01\x01\x01", // 𠒩
+ 0x204aa: "\x02\x04\x03\x01\x03\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 𠒪
+ 0x204ab: "\x02\x04\x03\x01\x03\x05\x02\x05\x01\x01\x03\x05\x01\x01", // 𠒫
+ 0x204ac: "\x02\x04\x03\x01\x03\x05\x01\x02\x05\x01\x01\x05\x03\x04", // 𠒬
+ 0x204ad: "\x01\x02\x02\x05\x01\x03\x05\x03\x05\x05\x04\x02\x03\x04", // 𠒭
+ 0x204ae: "\x03\x04\x01\x05\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01", // 𠒮
+ 0x204af: "\x02\x05\x03\x04\x03\x04\x03\x02\x01\x05\x01\x01\x03\x05", // 𠒯
+ 0x204b0: "\x03\x02\x01\x05\x01\x01\x03\x02\x05\x01\x02\x01\x05\x03", // 𠒰
+ 0x204b1: "\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x03\x05", // 𠒱
+ 0x204b2: "\x01\x02\x02\x05\x01\x03\x05\x01\x05\x03\x04\x01\x05\x03\x04", // 𠒲
+ 0x204b3: "\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04\x05\x04\x03\x05", // 𠒳
+ 0x204b4: "\x03\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x01\x03\x05", // 𠒴
+ 0x204b5: "\x02\x04\x03\x01\x03\x05\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 𠒵
+ 0x204b6: "\x01\x02\x01\x03\x05\x01\x02\x01\x03\x05\x01\x02\x01\x03\x05", // 𠒶
+ 0x204b7: "\x03\x01\x02\x01\x03\x05\x03\x02\x04\x01\x01\x01\x02\x05\x01", // 𠒷
+ 0x204b8: "\x03\x02\x05\x01\x01\x01\x04\x05\x04\x04\x02\x04\x03\x01\x03\x05", // 𠒸
+ 0x204b9: "\x01\x02\x05\x01\x02\x03\x04\x01\x02\x05\x01\x02\x03\x04\x03\x05", // 𠒹
+ 0x204ba: "\x01\x01\x03\x05\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𠒺
+ 0x204bb: "\x01\x01\x03\x05\x04\x03\x01\x02\x02\x04\x03\x01\x02\x05\x01\x01", // 𠒻
+ 0x204bc: "\x02\x04\x03\x01\x03\x05\x02\x05\x01\x01\x02\x04\x03\x01\x03\x05", // 𠒼
+ 0x204bd: "\x02\x04\x03\x01\x03\x05\x04\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 𠒽
+ 0x204be: "\x03\x05\x02\x05\x01\x03\x05\x01\x01\x02\x01\x05\x05\x04\x01\x04", // 𠒾
+ 0x204bf: "\x02\x04\x03\x01\x03\x05\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01", // 𠒿
+ 0x204c0: "\x03\x01\x02\x01\x03\x05\x02\x05\x01\x02\x01\x03\x05\x04\x02\x05\x01", // 𠓀
+ 0x204c1: "\x02\x04\x03\x01\x03\x05\x04\x03\x01\x01\x02\x01\x04\x05\x05\x03\x04", // 𠓁
+ 0x204c2: "\x02\x04\x03\x01\x03\x05\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 𠓂
+ 0x204c3: "\x02\x04\x03\x01\x03\x05\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𠓃
+ 0x204c4: "\x03\x05\x02\x05\x01\x03\x05\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𠓄
+ 0x204c5: "\x02\x04\x03\x01\x03\x05\x01\x02\x02\x04\x04\x05\x01\x02\x03\x04", // 𠓅
+ 0x204c6: "\x03\x01\x01\x02\x02\x05\x01\x03\x05\x03\x01\x01\x02\x02\x05\x01\x03\x05", // 𠓆
+ 0x204c7: "\x02\x04\x03\x01\x03\x05\x04\x05\x01\x01\x05\x04\x03\x05\x01\x01", // 𠓇
+ 0x204c8: "\x03\x05\x02\x05\x01\x03\x05\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𠓈
+ 0x204c9: "\x02\x04\x03\x01\x03\x05\x02\x04\x03\x01\x03\x05\x02\x04\x03\x01\x03\x05", // 𠓉
+ 0x204ca: "\x02\x04\x03\x01\x03\x05\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 𠓊
+ 0x204cb: "\x02\x04\x03\x01\x03\x05\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 𠓋
+ 0x204cc: "\x02\x04\x03\x01\x03\x05\x04\x01\x03\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 𠓌
+ 0x204cd: "\x03\x05\x02\x05\x01\x03\x05\x02\x05\x01\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01", // 𠓍
+ 0x204ce: "\x01\x02\x02\x05\x01\x03\x05\x04\x01\x02\x05\x01\x05\x02\x01\x03\x01\x03\x04", // 𠓎
+ 0x204cf: "\x01\x02\x02\x05\x01\x03\x05\x03\x05\x01\x03\x03\x05\x04\x01\x01\x01\x02\x05\x01", // 𠓏
+ 0x204d0: "\x02\x04\x03\x01\x03\x05\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x01\x02\x03\x04", // 𠓐
+ 0x204d1: "\x02\x04\x03\x01\x03\x05\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01", // 𠓑
+ 0x204d2: "\x02\x04\x03\x01\x03\x05\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𠓒
+ 0x204d3: "\x02\x04\x03\x01\x03\x05\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x03\x05\x01\x01", // 𠓓
+ 0x204d4: "\x03\x02\x01\x05\x01\x01\x03\x05\x01\x02\x02\x02\x05\x02\x02\x01\x04\x05\x03\x05\x04", // 𠓔
+ 0x204d5: "\x01\x01\x03\x05\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 𠓕
+ 0x204d6: "\x02\x04\x03\x01\x03\x05\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 𠓖
+ 0x204d7: "\x03\x05\x02\x05\x01\x03\x05\x04\x03\x05\x02\x05\x01\x03\x05\x04\x03\x05\x02\x05\x01\x03\x05\x04", // 𠓗
+ 0x204d8: "\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05\x01\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01", // 𠓘
+ 0x204d9: "\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05", // 𠓙
+ 0x204da: "\x02\x04\x03\x01\x03\x05\x01\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 𠓚
+ 0x204db: "\x03\x04\x01", // 𠓛
+ 0x204dc: "\x03\x04\x03\x04", // 𠓜
+ 0x204dd: "\x03\x04\x01\x02", // 𠓝
+ 0x204de: "\x03\x04\x01\x01", // 𠓞
+ 0x204df: "\x03\x04\x03\x01\x05", // 𠓟
+ 0x204e0: "\x03\x04\x02\x01\x05\x04", // 𠓠
+ 0x204e1: "\x03\x04\x01\x01\x03\x02", // 𠓡
+ 0x204e2: "\x03\x04\x03\x01\x01\x02", // 𠓢
+ 0x204e3: "\x03\x04\x04\x05\x04\x04", // 𠓣
+ 0x204e4: "\x03\x04\x01\x02\x05\x01\x01", // 𠓤
+ 0x204e5: "\x03\x04\x01\x02\x01\x05\x04", // 𠓥
+ 0x204e6: "\x03\x04\x02\x05\x01\x02\x01", // 𠓦
+ 0x204e7: "\x03\x04\x03\x04\x03\x01\x02", // 𠓧
+ 0x204e8: "\x03\x05\x05\x01\x05\x03\x04", // 𠓨
+ 0x204e9: "\x01\x01\x01\x02\x03\x04\x03\x04", // 𠓩
+ 0x204ea: "\x03\x04\x02\x03\x04\x02\x03\x04\x02", // 𠓪
+ 0x204eb: "\x03\x04\x03\x02\x01\x02\x01\x03\x04", // 𠓫
+ 0x204ec: "\x04\x01\x03\x04\x02\x05\x01\x03\x04", // 𠓬
+ 0x204ed: "\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04", // 𠓭
+ 0x204ee: "\x03\x04\x01\x03\x02\x05\x02\x05\x01\x01", // 𠓮
+ 0x204ef: "\x03\x04\x04\x04\x05\x03\x05\x01\x02\x01", // 𠓯
+ 0x204f0: "\x03\x04\x01\x01\x02\x01\x05\x04\x05\x04", // 𠓰
+ 0x204f1: "\x03\x04\x05\x05\x04\x05\x05\x04\x02\x03\x04", // 𠓱
+ 0x204f2: "\x03\x04\x03\x05\x04\x01\x05\x02\x01\x02\x03\x04", // 𠓲
+ 0x204f3: "\x03\x04\x01\x01\x02\x01\x05\x01\x05\x01\x02\x05\x01", // 𠓳
+ 0x204f4: "\x03\x04\x01\x01\x02\x01\x01\x03\x01\x05\x02\x05\x01", // 𠓴
+ 0x204f5: "\x03\x04\x01\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04", // 𠓵
+ 0x204f6: "\x01\x02\x02\x01\x03\x05\x04\x05\x02\x05\x02\x03\x04", // 𠓶
+ 0x204f7: "\x03\x04\x01\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04", // 𠓷
+ 0x204f8: "\x03\x04\x01\x05\x03\x05\x01\x05\x03\x05\x01\x02\x03\x04", // 𠓸
+ 0x204f9: "\x03\x04\x01\x01\x02\x01\x03\x04\x01\x02\x05\x01\x02\x02", // 𠓹
+ 0x204fa: "\x03\x01\x01\x02\x02\x02\x02\x01\x04\x04\x04\x04\x03\x04", // 𠓺
+ 0x204fb: "\x03\x04\x01\x01\x02\x01\x03\x04\x01\x02\x05\x01\x02\x02", // 𠓻
+ 0x204fc: "\x03\x04\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02", // 𠓼
+ 0x204fd: "\x03\x04\x03\x01\x01\x01\x02\x01\x01\x01\x01\x02\x05\x01\x01\x01\x02", // 𠓽
+ 0x204fe: "\x03\x04\x01\x01\x02\x01\x03\x04\x01\x01\x02\x01\x03\x04\x01\x01\x02\x01", // 𠓾
+ 0x204ff: "\x03\x04\x01\x01\x01\x02\x02\x01\x01\x01\x01\x01\x01\x01\x02\x02\x01\x01\x01\x05", // 𠓿
+ 0x20500: "\x01\x03\x05", // 𠔀
+ 0x20501: "\x03\x05\x03\x05", // 𠔁
+ 0x20502: "\x04\x04\x02\x03\x05", // 𠔂
+ 0x20503: "\x04\x03\x01\x05", // 𠔃
+ 0x20504: "\x04\x03\x01\x05", // 𠔄
+ 0x20505: "\x03\x04\x05\x01\x03", // 𠔅
+ 0x20506: "\x03\x05\x05\x01\x03", // 𠔆
+ 0x20507: "\x03\x05\x03\x02\x04", // 𠔇
+ 0x20508: "\x03\x05\x02\x05\x01\x02", // 𠔈
+ 0x20509: "\x03\x04\x01\x01\x03\x04", // 𠔉
+ 0x2050a: "\x03\x02\x01\x02\x01\x03\x05", // 𠔊
+ 0x2050b: "\x03\x05\x02\x05\x03\x04\x01", // 𠔋
+ 0x2050c: "\x03\x04\x03\x04\x02\x05\x01", // 𠔌
+ 0x2050d: "\x03\x04\x02\x05\x01\x02\x01", // 𠔍
+ 0x2050e: "\x03\x04\x03\x04\x01\x01\x02", // 𠔎
+ 0x2050f: "\x01\x02\x02\x01\x01\x03\x04", // 𠔏
+ 0x20510: "\x01\x02\x02\x01\x01\x01\x03\x04", // 𠔐
+ 0x20511: "\x03\x04\x05\x03\x03\x04\x05\x03", // 𠔑
+ 0x20512: "\x03\x05\x03\x02\x01\x01\x05\x01\x01", // 𠔒
+ 0x20513: "\x02\x05\x01\x02\x02\x01\x01\x03\x04", // 𠔓
+ 0x20514: "\x02\x05\x01\x02\x01\x04\x01\x03\x04", // 𠔔
+ 0x20515: "\x03\x05\x05\x03\x02\x05\x01\x02\x02", // 𠔕
+ 0x20516: "\x05\x02\x02\x05\x02\x02\x01\x03\x04", // 𠔖
+ 0x20517: "\x03\x04\x01\x02\x05\x01\x02\x03\x04", // 𠔗
+ 0x20518: "\x05\x01\x05\x03\x02\x03\x05\x05\x04", // 𠔘
+ 0x20519: "\x03\x02\x05\x02\x05\x01\x01\x01\x03\x04", // 𠔙
+ 0x2051a: "\x04\x01\x05\x04\x01\x02\x02\x01\x03\x04", // 𠔚
+ 0x2051b: "\x02\x05\x01\x05\x04\x05\x02\x01\x03\x04", // 𠔛
+ 0x2051c: "\x03\x02\x01\x05\x01\x01\x02\x01\x03\x04", // 𠔜
+ 0x2051d: "\x01\x02\x02\x03\x04\x03\x04\x01\x01\x03\x04", // 𠔝
+ 0x2051e: "\x02\x05\x02\x02\x05\x02\x02\x05\x02\x01\x03\x04", // 𠔞
+ 0x2051f: "\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𠔟
+ 0x20520: "\x03\x04\x05\x03\x01\x05\x02\x05\x01\x05\x04\x01", // 𠔠
+ 0x20521: "\x01\x02\x02\x01\x01\x01\x03\x04\x03\x04\x05\x03", // 𠔡
+ 0x20522: "\x03\x04\x05\x03\x01\x02\x03\x04\x01\x02\x05\x04", // 𠔢
+ 0x20523: "\x01\x02\x01\x03\x05\x04\x01\x02\x02\x01\x03\x04", // 𠔣
+ 0x20524: "\x03\x04\x01\x02\x05\x01\x01\x02\x02\x01\x03\x04", // 𠔤
+ 0x20525: "\x03\x04\x01\x05\x02\x02\x01\x01\x04\x04\x04\x04", // 𠔥
+ 0x20526: "\x02\x05\x01\x05\x03\x03\x02\x01\x02\x01\x03\x04", // 𠔦
+ 0x20527: "\x01\x02\x03\x02\x01\x01\x05\x01\x01\x01\x03\x04", // 𠔧
+ 0x20528: "\x05\x03\x04\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 𠔨
+ 0x20529: "\x05\x04\x05\x04\x02\x05\x01\x01\x02\x02\x01\x03\x04", // 𠔩
+ 0x2052a: "\x03\x04\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 𠔪
+ 0x2052b: "\x01\x02\x02\x01\x01\x01\x03\x04\x03\x01\x02\x01\x01", // 𠔫
+ 0x2052c: "\x01\x01\x03\x04\x01\x02\x02\x05\x01\x01\x01\x03\x04", // 𠔬
+ 0x2052d: "\x03\x04\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 𠔭
+ 0x2052e: "\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04\x03\x05\x04", // 𠔮
+ 0x2052f: "\x03\x05\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 𠔯
+ 0x20530: "\x05\x04\x05\x04\x02\x05\x01\x01\x02\x02\x02\x01\x03\x04", // 𠔰
+ 0x20531: "\x02\x05\x01\x01\x02\x05\x02\x02\x05\x02\x02\x01\x03\x04", // 𠔱
+ 0x20532: "\x03\x04\x03\x04\x03\x04\x05\x04\x03\x05\x01\x01\x03\x04", // 𠔲
+ 0x20533: "\x04\x01\x04\x03\x01\x03\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 𠔳
+ 0x20534: "\x01\x02\x02\x01\x01\x01\x03\x04\x05\x01\x03\x01\x02\x02\x05\x01", // 𠔴
+ 0x20535: "\x01\x02\x02\x01\x01\x01\x03\x04\x01\x03\x04\x01\x02\x05\x01\x02", // 𠔵
+ 0x20536: "\x01\x02\x02\x01\x01\x01\x03\x04\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 𠔶
+ 0x20537: "\x02\x04\x03\x02\x05\x02\x05\x01\x03\x01\x03\x04\x01\x02\x02\x01\x03\x04", // 𠔷
+ 0x20538: "\x04\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01\x01\x02\x02\x01\x01\x01\x03\x04", // 𠔸
+ 0x20539: "\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x01\x02\x02\x01\x03\x04", // 𠔹
+ 0x2053a: "\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 𠔺
+ 0x2053b: "\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x01\x03\x04\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x01\x03\x04\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x01\x03\x04", // 𠔻
+ 0x2053c: "\x02\x05\x01", // 𠔼
+ 0x2053d: "\x02\x05\x02\x05", // 𠔽
+ 0x2053e: "\x03\x03\x05\x01", // 𠔾
+ 0x2053f: "\x02\x05\x03\x04", // 𠔿
+ 0x20540: "\x02\x05\x05\x04", // 𠕀
+ 0x20541: "\x02\x05\x01\x02\x02", // 𠕁
+ 0x20542: "\x01\x02\x05\x01\x01", // 𠕂
+ 0x20543: "\x02\x05\x04\x01\x05", // 𠕃
+ 0x20544: "\x02\x05\x01\x02\x05", // 𠕄
+ 0x20545: "\x01\x02\x05\x01\x01", // 𠕅
+ 0x20546: "\x01\x03\x03\x05\x01", // 𠕆
+ 0x20547: "\x01\x03\x02\x05\x04", // 𠕇
+ 0x20548: "\x02\x05\x03\x04\x05", // 𠕈
+ 0x20549: "\x04\x02\x05\x03\x04", // 𠕉
+ 0x2054a: "\x02\x05\x01\x01\x02", // 𠕊
+ 0x2054b: "\x02\x05\x01\x02\x02\x01", // 𠕋
+ 0x2054c: "\x02\x05\x02\x05\x01\x01", // 𠕌
+ 0x2054d: "\x04\x02\x05\x01\x03\x05", // 𠕍
+ 0x2054e: "\x02\x05\x03\x04\x03\x04", // 𠕎
+ 0x2054f: "\x02\x05\x04\x03\x01\x05", // 𠕏
+ 0x20550: "\x02\x05\x05\x02\x02\x05\x02", // 𠕐
+ 0x20551: "\x02\x05\x04\x01\x02\x05\x01", // 𠕑
+ 0x20552: "\x02\x05\x02\x04\x01\x03\x04", // 𠕒
+ 0x20553: "\x02\x02\x02\x01\x02\x05\x01", // 𠕓
+ 0x20554: "\x02\x05\x01\x03\x05\x04\x01", // 𠕔
+ 0x20555: "\x02\x05\x02\x05\x01\x05\x03", // 𠕕
+ 0x20556: "\x02\x05\x01\x01\x01\x02\x03\x04", // 𠕖
+ 0x20557: "\x03\x05\x02\x05\x01\x02\x02\x05", // 𠕗
+ 0x20558: "\x02\x05\x04\x04\x04\x02\x03\x04", // 𠕘
+ 0x20559: "\x02\x05\x01\x01\x02\x05\x01\x01", // 𠕙
+ 0x2055a: "\x02\x05\x04\x03\x01\x02\x03\x04", // 𠕚
+ 0x2055b: "\x03\x05\x03\x01\x01\x02\x02\x05\x01", // 𠕛
+ 0x2055c: "\x04\x02\x05\x03\x04\x04\x01\x03\x04", // 𠕜
+ 0x2055d: "\x02\x05\x01\x01\x03\x05\x04\x03\x05\x04", // 𠕝
+ 0x2055e: "\x03\x04\x03\x04\x02\x05\x02\x05\x02\x05", // 𠕞
+ 0x2055f: "\x02\x05\x02\x01\x01\x02\x01\x02\x05\x01", // 𠕟
+ 0x20560: "\x02\x05\x01\x01\x01\x03\x05\x05\x03\x04", // 𠕠
+ 0x20561: "\x02\x05\x05\x04\x04\x05\x04\x04", // 𠕡
+ 0x20562: "\x02\x05\x03\x05\x02\x05\x02\x01\x01\x02\x02", // 𠕢
+ 0x20563: "\x02\x05\x01\x01\x03\x05\x03\x02\x01\x05\x01\x01", // 𠕣
+ 0x20564: "\x02\x05\x01\x01\x03\x05\x02\x05\x01\x03\x05\x04", // 𠕤
+ 0x20565: "\x02\x05\x01\x01\x01\x05\x04\x01\x02\x01\x02\x02", // 𠕥
+ 0x20566: "\x02\x05\x01\x01\x03\x04\x01\x03\x05\x01\x01\x02\x02", // 𠕦
+ 0x20567: "\x03\x01\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 𠕧
+ 0x20568: "\x02\x05\x03\x05\x02\x05\x01\x03\x04\x01\x01\x02\x03\x04", // 𠕨
+ 0x20569: "\x02\x05\x01\x02\x02\x05\x03\x02\x05\x01\x01\x03\x01\x02", // 𠕩
+ 0x2056a: "\x02\x05\x02\x05\x01\x01\x01\x05\x01\x03\x02\x01\x02\x05", // 𠕪
+ 0x2056b: "\x03\x02\x05\x04\x05\x04\x04\x04\x05\x04\x04\x04\x05\x04\x04", // 𠕫
+ 0x2056c: "\x02\x05\x04\x03\x01\x02\x03\x04\x02\x05\x03\x05\x02\x05\x01", // 𠕬
+ 0x2056d: "\x02\x05\x01\x01\x01\x02\x03\x04\x02\x01\x02\x05\x01\x01\x01\x02", // 𠕭
+ 0x2056e: "\x02\x05\x01\x01\x05\x05\x04\x04\x04\x04\x03\x03\x02\x01\x01\x02", // 𠕮
+ 0x2056f: "\x01\x02\x02\x01\x02\x05\x02\x01\x02\x02\x01\x03\x05\x04\x04", // 𠕯
+ 0x20570: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𠕰
+ 0x20571: "\x01\x02\x05\x02\x01\x01\x01\x02\x05\x01\x02\x05\x03\x01\x01\x02\x05\x02\x02\x01", // 𠕱
+ 0x20572: "\x02\x05\x01\x01\x01\x01\x02\x01\x01\x01\x01\x02\x01\x01\x01\x01\x02\x01\x01\x01\x01\x02", // 𠕲
+ 0x20573: "\x04\x05\x03\x04", // 𠕳
+ 0x20574: "\x04\x05\x03\x05", // 𠕴
+ 0x20575: "\x04\x05\x03\x05\x04", // 𠕵
+ 0x20576: "\x04\x05\x01\x03\x05", // 𠕶
+ 0x20577: "\x04\x05\x05\x03\x01", // 𠕷
+ 0x20578: "\x04\x05\x03\x05\x04", // 𠕸
+ 0x20579: "\x04\x05\x01\x01\x03\x04", // 𠕹
+ 0x2057a: "\x04\x05\x03\x05\x05\x04", // 𠕺
+ 0x2057b: "\x04\x05\x01\x01\x03\x05", // 𠕻
+ 0x2057c: "\x04\x05\x04\x01\x03\x04", // 𠕼
+ 0x2057d: "\x04\x05\x02\x05\x03\x04", // 𠕽
+ 0x2057e: "\x04\x05\x02\x05\x01\x01", // 𠕾
+ 0x2057f: "\x04\x05\x03\x02\x03\x05", // 𠕿
+ 0x20580: "\x04\x05\x01\x01\x02\x03\x04", // 𠖀
+ 0x20581: "\x04\x05\x01\x02\x04\x05\x04", // 𠖁
+ 0x20582: "\x04\x05\x03\x05\x05\x05\x04", // 𠖂
+ 0x20583: "\x04\x05\x04\x01\x04\x03\x01", // 𠖃
+ 0x20584: "\x04\x05\x02\x05\x01\x02\x05\x01", // 𠖄
+ 0x20585: "\x04\x05\x01\x03\x03\x05\x01\x01", // 𠖅
+ 0x20586: "\x04\x05\x02\x05\x01\x01\x03\x05", // 𠖆
+ 0x20587: "\x04\x05\x02\x05\x01\x01\x01\x03\x04", // 𠖇
+ 0x20588: "\x04\x05\x01\x01\x03\x05\x01\x02\x04", // 𠖈
+ 0x20589: "\x04\x05\x01\x02\x02\x01\x01\x03\x04", // 𠖉
+ 0x2058a: "\x04\x05\x03\x03\x02\x03\x05\x05\x04", // 𠖊
+ 0x2058b: "\x04\x05\x03\x04\x02\x05\x01\x02\x01", // 𠖋
+ 0x2058c: "\x04\x05\x04\x05\x02\x03\x04\x01\x02\x04", // 𠖌
+ 0x2058d: "\x04\x05\x01\x02\x05\x01\x04\x05\x03\x05", // 𠖍
+ 0x2058e: "\x04\x05\x05\x04\x05\x04\x05\x04\x05\x04", // 𠖎
+ 0x2058f: "\x04\x05\x01\x03\x04\x01\x02\x05\x01\x02", // 𠖏
+ 0x20590: "\x04\x05\x02\x05\x01\x02\x05\x01\x02\x01", // 𠖐
+ 0x20591: "\x04\x05\x03\x05\x01\x02\x05\x01\x01\x01", // 𠖑
+ 0x20592: "\x04\x05\x03\x05\x03\x03\x03\x05\x03\x04", // 𠖒
+ 0x20593: "\x04\x05\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 𠖓
+ 0x20594: "\x04\x05\x01\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 𠖔
+ 0x20595: "\x04\x05\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 𠖕
+ 0x20596: "\x04\x05\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𠖖
+ 0x20597: "\x04\x05\x05\x01\x01\x04\x05\x02\x05\x02\x05\x04", // 𠖗
+ 0x20598: "\x04\x05\x05\x05\x04\x04\x04\x04\x02\x05\x03\x04", // 𠖘
+ 0x20599: "\x01\x02\x01\x02\x02\x01\x01\x01\x04\x05\x03\x05", // 𠖙
+ 0x2059a: "\x04\x05\x02\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01", // 𠖚
+ 0x2059b: "\x04\x05\x01\x02\x02\x01\x01\x01\x03\x05\x03\x05\x02", // 𠖛
+ 0x2059c: "\x04\x05\x05\x01\x05\x02\x05\x03\x05\x04\x01\x01\x02\x01", // 𠖜
+ 0x2059d: "\x04\x05\x01\x01\x03\x05\x03\x03\x03\x03\x04\x04\x05\x04", // 𠖝
+ 0x2059e: "\x04\x05\x01\x01\x03\x05\x02\x05\x01\x01\x03\x05\x03\x03", // 𠖞
+ 0x2059f: "\x04\x05\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04\x02\x02", // 𠖟
+ 0x205a0: "\x04\x05\x05\x05\x05\x02\x05\x01\x01\x02\x01\x01\x02\x02\x05\x01", // 𠖠
+ 0x205a1: "\x03\x02\x05\x01\x01\x03\x05\x04\x05\x01\x01\x03\x05\x01\x02\x04", // 𠖡
+ 0x205a2: "\x04\x05\x03\x03\x02\x01\x05\x04\x03\x05\x04\x01\x03\x01\x03\x04", // 𠖢
+ 0x205a3: "\x04\x05\x02\x01\x02\x05\x03\x03\x04\x04\x01\x01\x02\x01\x04\x03\x03\x04", // 𠖣
+ 0x205a4: "\x04\x05\x01\x01\x03\x05\x02\x01\x01\x01\x02\x01\x01\x01\x04\x05\x04\x04", // 𠖤
+ 0x205a5: "\x04\x05\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01\x01\x01", // 𠖥
+ 0x205a6: "\x04\x05\x05\x01\x05\x02\x05\x03\x03\x04\x01\x01\x02\x01\x01\x01\x02\x03\x04", // 𠖦
+ 0x205a7: "\x04\x05\x01\x03\x02\x05\x02\x02\x01\x01\x02\x01\x02\x05\x01\x02\x01\x04", // 𠖧
+ 0x205a8: "\x04\x05\x01\x01\x03\x05\x01\x02\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 𠖨
+ 0x205a9: "\x04\x05\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𠖩
+ 0x205aa: "\x04\x05\x01\x03\x02\x05\x02\x02\x01\x01\x01\x01\x02\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 𠖪
+ 0x205ab: "\x04\x05\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𠖫
+ 0x205ac: "\x04\x01\x05", // 𠖬
+ 0x205ad: "\x04\x01\x05\x02", // 𠖭
+ 0x205ae: "\x04\x01\x03\x05\x04", // 𠖮
+ 0x205af: "\x04\x01\x03\x01\x05", // 𠖯
+ 0x205b0: "\x04\x01\x05\x01\x05", // 𠖰
+ 0x205b1: "\x04\x01\x01\x05\x02\x04", // 𠖱
+ 0x205b2: "\x04\x01\x03\x05\x05\x03", // 𠖲
+ 0x205b3: "\x04\x01\x03\x05\x03\x03", // 𠖳
+ 0x205b4: "\x04\x01\x03\x01\x01\x02", // 𠖴
+ 0x205b5: "\x04\x01\x03\x05\x01\x01", // 𠖵
+ 0x205b6: "\x04\x01\x04\x05\x04\x04", // 𠖶
+ 0x205b7: "\x04\x01\x02\x05\x02\x05\x01", // 𠖷
+ 0x205b8: "\x04\x01\x03\x04\x01\x01\x05", // 𠖸
+ 0x205b9: "\x04\x01\x02\x05\x01\x01\x02", // 𠖹
+ 0x205ba: "\x04\x01\x02\x01\x01\x02\x04", // 𠖺
+ 0x205bb: "\x04\x01\x02\x05\x01\x01\x01", // 𠖻
+ 0x205bc: "\x02\x05\x01\x03\x04\x04\x04", // 𠖼
+ 0x205bd: "\x04\x01\x03\x01\x02\x01\x01", // 𠖽
+ 0x205be: "\x04\x01\x01\x01\x02\x03\x04", // 𠖾
+ 0x205bf: "\x04\x01\x03\x05\x01\x01\x02", // 𠖿
+ 0x205c0: "\x02\x05\x01\x02\x03\x04\x04\x04", // 𠗀
+ 0x205c1: "\x01\x02\x01\x01\x03\x04\x04\x04", // 𠗁
+ 0x205c2: "\x04\x01\x03\x05\x04\x02\x05\x01", // 𠗂
+ 0x205c3: "\x04\x01\x02\x05\x01\x03\x04\x01", // 𠗃
+ 0x205c4: "\x04\x01\x03\x05\x04\x03\x05\x04", // 𠗄
+ 0x205c5: "\x04\x01\x03\x02\x05\x02\x02\x01", // 𠗅
+ 0x205c6: "\x03\x03\x02\x02\x03\x05\x04\x04\x04", // 𠗆
+ 0x205c7: "\x04\x01\x01\x03\x04\x03\x03\x04", // 𠗇
+ 0x205c8: "\x04\x01\x01\x02\x04\x01\x03\x04\x04", // 𠗈
+ 0x205c9: "\x04\x01\x01\x03\x04\x03\x04\x03\x04", // 𠗉
+ 0x205ca: "\x04\x01\x01\x05\x05\x05\x01\x02\x01", // 𠗊
+ 0x205cb: "\x04\x01\x05\x03\x04\x04\x05\x04\x04", // 𠗋
+ 0x205cc: "\x04\x01\x01\x02\x02\x05\x01\x03\x05", // 𠗌
+ 0x205cd: "\x04\x01\x01\x03\x02\x05\x01\x01\x01", // 𠗍
+ 0x205ce: "\x04\x01\x03\x03\x04\x01\x01\x02\x01", // 𠗎
+ 0x205cf: "\x04\x01\x03\x02\x05\x01\x01\x01\x03", // 𠗏
+ 0x205d0: "\x04\x01\x01\x02\x05\x01\x02\x05\x01", // 𠗐
+ 0x205d1: "\x04\x01\x01\x01\x03\x04\x02\x03\x04", // 𠗑
+ 0x205d2: "\x04\x01\x01\x02\x05\x01\x01\x02\x04", // 𠗒
+ 0x205d3: "\x04\x01\x02\x05\x01\x03\x05\x04\x01", // 𠗓
+ 0x205d4: "\x04\x01\x02\x05\x01\x01\x02\x01\x01", // 𠗔
+ 0x205d5: "\x04\x01\x05\x04\x03\x05\x03\x05\x04", // 𠗕
+ 0x205d6: "\x04\x01\x03\x04\x03\x04\x02\x05\x01", // 𠗖
+ 0x205d7: "\x04\x01\x02\x01\x03\x05\x04\x02\x02", // 𠗗
+ 0x205d8: "\x04\x01\x02\x05\x01\x02\x02\x01\x03\x04", // 𠗘
+ 0x205d9: "\x04\x01\x05\x02\x04\x01\x03\x04\x05\x02", // 𠗙
+ 0x205da: "\x04\x01\x04\x01\x03\x04\x03\x04\x01\x02", // 𠗚
+ 0x205db: "\x04\x01\x01\x05\x04\x01\x02\x03\x04", // 𠗛
+ 0x205dc: "\x04\x01\x01\x02\x02\x01\x01\x01\x02\x02", // 𠗜
+ 0x205dd: "\x04\x01\x03\x04\x04\x03\x03\x01\x02\x01", // 𠗝
+ 0x205de: "\x04\x01\x04\x04\x05\x01\x02\x01\x03\x04", // 𠗞
+ 0x205df: "\x04\x01\x03\x05\x02\x05\x01\x03\x05\x04", // 𠗟
+ 0x205e0: "\x04\x01\x05\x02\x01\x02\x05\x02\x02\x01", // 𠗠
+ 0x205e1: "\x04\x01\x03\x04\x04\x03\x01\x02\x03\x04", // 𠗡
+ 0x205e2: "\x04\x01\x05\x05\x05\x02\x05\x01\x02\x02", // 𠗢
+ 0x205e3: "\x04\x01\x03\x04\x01\x02\x05\x01\x02\x02", // 𠗣
+ 0x205e4: "\x04\x01\x03\x03\x02\x04\x01\x01\x02\x01", // 𠗤
+ 0x205e5: "\x04\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 𠗥
+ 0x205e6: "\x04\x01\x01\x01\x01\x01\x02\x05\x01\x03\x02", // 𠗦
+ 0x205e7: "\x04\x01\x02\x05\x01\x01\x01\x03\x04\x02\x02", // 𠗧
+ 0x205e8: "\x04\x01\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 𠗨
+ 0x205e9: "\x04\x01\x02\x05\x01\x01\x02\x04\x04\x04\x04", // 𠗩
+ 0x205ea: "\x04\x01\x04\x01\x02\x05\x01\x03\x05\x03\x04", // 𠗪
+ 0x205eb: "\x04\x01\x03\x05\x02\x05\x03\x05\x01\x03\x04", // 𠗫
+ 0x205ec: "\x04\x01\x03\x05\x01\x03\x02\x05\x01\x01\x02", // 𠗬
+ 0x205ed: "\x04\x01\x03\x01\x02\x01\x02\x01\x01\x02\x01", // 𠗭
+ 0x205ee: "\x04\x01\x01\x02\x02\x01\x01\x01\x03\x05\x05", // 𠗮
+ 0x205ef: "\x04\x01\x03\x02\x05\x01\x01\x02\x05\x03\x04", // 𠗯
+ 0x205f0: "\x04\x01\x01\x01\x02\x01\x03\x04\x03\x03\x03", // 𠗰
+ 0x205f1: "\x04\x01\x01\x03\x02\x05\x05\x05\x01\x05\x03\x04", // 𠗱
+ 0x205f2: "\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04\x04\x04", // 𠗲
+ 0x205f3: "\x04\x01\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 𠗳
+ 0x205f4: "\x04\x01\x05\x04\x01\x04\x03\x01\x01\x02\x05\x02", // 𠗴
+ 0x205f5: "\x04\x01\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03", // 𠗵
+ 0x205f6: "\x04\x01\x04\x01\x03\x05\x01\x01\x02\x02\x05\x01", // 𠗶
+ 0x205f7: "\x04\x01\x04\x05\x01\x01\x05\x04\x05\x04", // 𠗷
+ 0x205f8: "\x04\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𠗸
+ 0x205f9: "\x04\x01\x01\x03\x05\x04\x02\x02\x04\x04\x04\x04", // 𠗹
+ 0x205fa: "\x04\x01\x03\x01\x02\x03\x04\x03\x05\x04\x03\x05\x04", // 𠗺
+ 0x205fb: "\x04\x01\x01\x02\x05\x01\x02\x05\x05\x04\x01\x02\x01", // 𠗻
+ 0x205fc: "\x04\x01\x01\x03\x02\x01\x01\x02\x03\x04\x05\x03\x04", // 𠗼
+ 0x205fd: "\x04\x01\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 𠗽
+ 0x205fe: "\x04\x01\x01\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04", // 𠗾
+ 0x205ff: "\x04\x01\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 𠗿
+ 0x20600: "\x02\x05\x01\x01\x02\x02\x05\x01\x01\x03\x04\x04\x01", // 𠘀
+ 0x20601: "\x04\x01\x04\x01\x04\x03\x01\x02\x05\x01\x05\x02", // 𠘁
+ 0x20602: "\x04\x01\x01\x02\x05\x01\x02\x03\x04\x03\x05\x03\x04", // 𠘂
+ 0x20603: "\x04\x01\x03\x01\x02\x05\x01\x01\x02\x01\x01\x05\x03", // 𠘃
+ 0x20604: "\x04\x01\x03\x05\x04\x05\x01\x01\x05\x04\x03\x01\x03\x04", // 𠘄
+ 0x20605: "\x04\x01\x03\x04\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 𠘅
+ 0x20606: "\x04\x01\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04", // 𠘆
+ 0x20607: "\x04\x01\x03\x02\x05\x01\x01\x01\x03\x03\x03\x05\x04\x01\x04", // 𠘇
+ 0x20608: "\x04\x01\x05\x01\x03\x05\x02\x01\x05\x02\x01\x05\x02\x01", // 𠘈
+ 0x20609: "\x04\x01\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x03\x04", // 𠘉
+ 0x2060a: "\x04\x01\x02\x05\x01\x02\x02\x01\x01\x03\x01\x01\x05\x03\x04", // 𠘊
+ 0x2060b: "\x04\x01\x02\x05\x01\x01\x01\x05\x01\x03\x02\x01\x02\x05", // 𠘋
+ 0x2060c: "\x04\x01\x01\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x01\x01", // 𠘌
+ 0x2060d: "\x04\x01\x02\x01\x02\x05\x03\x04\x03\x04\x01\x01\x02\x03\x04", // 𠘍
+ 0x2060e: "\x04\x01\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𠘎
+ 0x2060f: "\x04\x01\x02\x05\x02\x02\x01\x01\x02\x03\x04\x01\x02\x03\x04", // 𠘏
+ 0x20610: "\x04\x01\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 𠘐
+ 0x20611: "\x04\x01\x01\x02\x05\x01\x02\x05\x05\x01\x05\x04\x04\x04\x04", // 𠘑
+ 0x20612: "\x04\x01\x01\x01\x02\x01\x03\x05\x01\x01\x03\x03\x05\x04\x01\x04", // 𠘒
+ 0x20613: "\x04\x01\x05\x02\x03\x01\x03\x04\x01\x03\x01\x01\x02\x01", // 𠘓
+ 0x20614: "\x04\x01\x02\x01\x01\x01\x02\x05\x04\x04\x04\x04\x02\x03\x04\x03", // 𠘔
+ 0x20615: "\x04\x01\x01\x02\x02\x05\x01\x02\x05\x05\x01\x05\x04\x04\x04\x04", // 𠘕
+ 0x20616: "\x04\x01\x03\x03\x01\x02\x03\x03\x01\x02\x02\x05\x01\x01\x03\x04", // 𠘖
+ 0x20617: "\x02\x05\x01\x01\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x04\x04", // 𠘗
+ 0x20618: "\x04\x01\x04\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x01\x03\x04", // 𠘘
+ 0x20619: "\x04\x01\x03\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x03\x04", // 𠘙
+ 0x2061a: "\x04\x01\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x03\x01\x01\x02", // 𠘚
+ 0x2061b: "\x04\x01\x04\x01\x03\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04", // 𠘛
+ 0x2061c: "\x04\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x01\x03\x04", // 𠘜
+ 0x2061d: "\x04\x01\x01\x02\x05\x01\x02\x03\x04\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 𠘝
+ 0x2061e: "\x04\x01\x01\x02\x01\x01\x01\x02\x03\x04\x05\x01\x01\x02\x04\x03\x03\x04", // 𠘞
+ 0x2061f: "\x04\x01\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 𠘟
+ 0x20620: "\x04\x01\x04\x01\x02\x05\x02\x02\x01\x02\x04\x01\x03\x04\x03\x05\x03\x04", // 𠘠
+ 0x20621: "\x04\x01\x04\x01\x03\x04\x01\x02\x05\x02\x05\x01\x01\x03\x01\x02\x03\x04", // 𠘡
+ 0x20622: "\x04\x01\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x03\x03\x05\x04\x01\x04", // 𠘢
+ 0x20623: "\x04\x01\x03\x04\x04\x03\x02\x05\x02\x02\x01\x05\x01\x01\x05\x04\x01\x02\x04", // 𠘣
+ 0x20624: "\x04\x01\x01\x05\x03\x01\x01\x03\x04\x05\x04\x05\x02\x01\x03\x04\x02\x04\x05\x03\x04", // 𠘤
+ 0x20625: "\x04\x01\x02\x05\x01\x02\x05\x01\x01\x02\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 𠘥
+ 0x20626: "\x04\x01\x03\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x02\x05\x02\x02\x01", // 𠘦
+ 0x20627: "\x03\x05", // 𠘧
+ 0x20628: "\x03\x05", // 𠘨
+ 0x20629: "\x03\x05\x03\x05", // 𠘩
+ 0x2062a: "\x03\x05\x03\x05", // 𠘪
+ 0x2062b: "\x03\x05\x05\x04", // 𠘫
+ 0x2062c: "\x03\x05\x03\x05", // 𠘬
+ 0x2062d: "\x05\x04\x03\x05", // 𠘭
+ 0x2062e: "\x03\x04\x03\x05", // 𠘮
+ 0x2062f: "\x03\x05\x05\x04", // 𠘯
+ 0x20630: "\x03\x05\x03\x04", // 𠘰
+ 0x20631: "\x03\x05\x03\x03\x03", // 𠘱
+ 0x20632: "\x01\x03\x05\x03\x05", // 𠘲
+ 0x20633: "\x03\x05\x02\x05\x02", // 𠘳
+ 0x20634: "\x03\x05\x03\x01\x02", // 𠘴
+ 0x20635: "\x03\x05\x04\x03\x01\x05", // 𠘵
+ 0x20636: "\x01\x03\x02\x04\x03\x05", // 𠘶
+ 0x20637: "\x03\x05\x01\x03\x05\x05", // 𠘷
+ 0x20638: "\x03\x05\x02\x05\x03\x05", // 𠘸
+ 0x20639: "\x02\x03\x05\x01\x01\x01", // 𠘹
+ 0x2063a: "\x01\x05\x04\x03\x05", // 𠘺
+ 0x2063b: "\x03\x05\x04\x03\x05\x04", // 𠘻
+ 0x2063c: "\x03\x05\x05\x02\x02\x05\x02", // 𠘼
+ 0x2063d: "\x02\x04\x03\x05\x02\x03\x05", // 𠘽
+ 0x2063e: "\x03\x05\x01\x02\x01\x05\x04", // 𠘾
+ 0x2063f: "\x05\x03\x05\x02\x05\x03\x05", // 𠘿
+ 0x20640: "\x03\x05\x04\x05\x05\x03\x05", // 𠙀
+ 0x20641: "\x01\x02\x01\x02\x01\x03\x05", // 𠙁
+ 0x20642: "\x03\x05\x02\x05\x01\x03\x04", // 𠙂
+ 0x20643: "\x05\x04\x05\x04\x01\x03\x05", // 𠙃
+ 0x20644: "\x03\x05\x03\x01\x02\x05\x02", // 𠙄
+ 0x20645: "\x03\x05\x04\x01\x04\x03\x01", // 𠙅
+ 0x20646: "\x03\x04\x01\x03\x05\x04\x03\x05", // 𠙆
+ 0x20647: "\x04\x01\x03\x04\x03\x04\x03\x05", // 𠙇
+ 0x20648: "\x03\x05\x03\x01\x01\x02\x05\x02", // 𠙈
+ 0x20649: "\x01\x02\x05\x01\x02\x05\x03\x05", // 𠙉
+ 0x2064a: "\x03\x05\x01\x02\x05\x01\x01\x03", // 𠙊
+ 0x2064b: "\x03\x02\x05\x01\x05\x01\x03\x05", // 𠙋
+ 0x2064c: "\x03\x05\x04\x03\x01\x01\x01\x02", // 𠙌
+ 0x2064d: "\x03\x05\x02\x05\x01\x02\x01\x04", // 𠙍
+ 0x2064e: "\x03\x01\x01\x02\x03\x04\x03\x05", // 𠙎
+ 0x2064f: "\x03\x04\x01\x03\x02\x05\x01\x03\x05", // 𠙏
+ 0x20650: "\x05\x01\x02\x02\x01\x04\x05\x03\x05", // 𠙐
+ 0x20651: "\x02\x01\x02\x01\x03\x05\x04\x03\x05", // 𠙑
+ 0x20652: "\x03\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𠙒
+ 0x20653: "\x01\x02\x01\x03\x02\x05\x01\x01\x03\x05", // 𠙓
+ 0x20654: "\x03\x05\x03\x02\x05\x01\x01\x01\x02\x01", // 𠙔
+ 0x20655: "\x03\x05\x05\x02\x02\x05\x02\x02\x05\x01", // 𠙕
+ 0x20656: "\x04\x01\x02\x01\x01\x01\x02\x05\x03\x05", // 𠙖
+ 0x20657: "\x03\x05\x01\x01\x03\x04\x01\x05\x05\x05", // 𠙗
+ 0x20658: "\x03\x05\x04\x03\x02\x05\x02\x01\x01\x02\x02", // 𠙘
+ 0x20659: "\x03\x03\x05\x04\x04\x02\x05\x03\x04\x03\x05", // 𠙙
+ 0x2065a: "\x01\x05\x03\x01\x02\x01\x03\x05\x04\x03\x05", // 𠙚
+ 0x2065b: "\x05\x01\x01\x01\x02\x01\x03\x05\x04\x03\x05", // 𠙛
+ 0x2065c: "\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04", // 𠙜
+ 0x2065d: "\x05\x02\x03\x05\x04\x04\x01\x02\x04\x03\x05", // 𠙝
+ 0x2065e: "\x01\x02\x05\x02\x02\x01\x05\x03\x04\x03\x05", // 𠙞
+ 0x2065f: "\x04\x01\x03\x04\x03\x04\x03\x01\x03\x04\x03\x05", // 𠙟
+ 0x20660: "\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03\x05", // 𠙠
+ 0x20661: "\x03\x02\x05\x01\x01\x05\x05\x04\x05\x04\x03\x05", // 𠙡
+ 0x20662: "\x05\x02\x03\x05\x02\x02\x01\x03\x05\x04\x03\x05", // 𠙢
+ 0x20663: "\x03\x05\x02\x05\x02\x02\x01\x01\x02\x01\x05\x04", // 𠙣
+ 0x20664: "\x03\x05\x01\x02\x01\x04\x01\x04\x03\x01\x05\x03\x01", // 𠙤
+ 0x20665: "\x04\x01\x02\x01\x01\x01\x02\x05\x01\x02\x02\x03\x05", // 𠙥
+ 0x20666: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x03\x05\x04", // 𠙦
+ 0x20667: "\x03\x02\x05\x01\x01\x03\x02\x01\x01\x05\x01\x03\x05", // 𠙧
+ 0x20668: "\x01\x02\x02\x01\x03\x05\x04\x02\x01\x01\x01\x05\x03\x05", // 𠙨
+ 0x20669: "\x01\x03\x02\x05\x01\x01\x02\x01\x01\x03\x05\x03\x05\x04", // 𠙩
+ 0x2066a: "\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01\x03\x05", // 𠙪
+ 0x2066b: "\x02\x05\x01\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01\x03\x05", // 𠙫
+ 0x2066c: "\x03\x05\x05\x05\x04\x05\x05\x04\x03\x02\x05\x01\x02\x01\x04", // 𠙬
+ 0x2066d: "\x05\x05\x05\x01\x03\x04\x05\x02\x01\x02\x02\x02\x04\x05\x03\x05", // 𠙭
+ 0x2066e: "\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x03\x05\x04", // 𠙮
+ 0x2066f: "\x01\x02\x02\x01\x03\x02\x05\x01\x01\x02\x01\x01\x01\x05\x03\x05", // 𠙯
+ 0x20670: "\x04\x01\x05\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01\x03\x05\x04", // 𠙰
+ 0x20671: "\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x03\x03\x05\x04", // 𠙱
+ 0x20672: "\x03\x05\x03\x01\x01\x02\x03\x04\x03\x05\x01\x01\x01\x03\x04\x02\x04\x01\x03\x04", // 𠙲
+ 0x20673: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x03\x05", // 𠙳
+ 0x20674: "\x05\x02", // 𠙴
+ 0x20675: "\x01\x05\x02", // 𠙵
+ 0x20676: "\x05\x02\x05\x02", // 𠙶
+ 0x20677: "\x01\x02\x05\x02", // 𠙷
+ 0x20678: "\x05\x04\x05\x02", // 𠙸
+ 0x20679: "\x03\x01\x02\x05\x02", // 𠙹
+ 0x2067a: "\x03\x01\x02\x05\x02", // 𠙺
+ 0x2067b: "\x01\x01\x02\x05\x02", // 𠙻
+ 0x2067c: "\x02\x05\x01\x05\x02", // 𠙼
+ 0x2067d: "\x01\x02\x01\x05\x02", // 𠙽
+ 0x2067e: "\x03\x01\x01\x02\x05\x02", // 𠙾
+ 0x2067f: "\x05\x02\x01\x01\x05\x02", // 𠙿
+ 0x20680: "\x01\x03\x04\x04\x05\x02", // 𠚀
+ 0x20681: "\x03\x04\x03\x04\x05\x02", // 𠚁
+ 0x20682: "\x03\x01\x02\x01\x05\x02", // 𠚂
+ 0x20683: "\x01\x02\x05\x01\x05\x02", // 𠚃
+ 0x20684: "\x03\x04\x03\x04\x05\x02", // 𠚄
+ 0x20685: "\x03\x04\x05\x04\x05\x02", // 𠚅
+ 0x20686: "\x02\x05\x02\x05\x01\x02", // 𠚆
+ 0x20687: "\x01\x02\x05\x03\x04\x05\x02", // 𠚇
+ 0x20688: "\x01\x03\x02\x05\x01\x05\x02", // 𠚈
+ 0x20689: "\x03\x01\x02\x03\x04\x05\x02", // 𠚉
+ 0x2068a: "\x04\x05\x04\x03\x04\x05\x02", // 𠚊
+ 0x2068b: "\x05\x05\x05\x01\x01\x02\x05\x02", // 𠚋
+ 0x2068c: "\x01\x02\x01\x02\x05\x01\x05\x02", // 𠚌
+ 0x2068d: "\x03\x04\x04\x04\x04\x04\x05\x02", // 𠚍
+ 0x2068e: "\x02\x05\x01\x01\x01\x03\x02\x05\x02", // 𠚎
+ 0x2068f: "\x03\x01\x02\x03\x04\x03\x04\x05\x02", // 𠚏
+ 0x20690: "\x05\x02\x02\x05\x02\x01\x02\x03\x04", // 𠚐
+ 0x20691: "\x01\x03\x02\x05\x01\x01\x01\x05\x02", // 𠚑
+ 0x20692: "\x01\x02\x05\x01\x01\x01\x01\x05\x02", // 𠚒
+ 0x20693: "\x01\x02\x01\x02\x05\x01\x05\x04\x05\x02", // 𠚓
+ 0x20694: "\x05\x04\x01\x03\x04\x01\x02\x05\x01\x05\x02", // 𠚔
+ 0x20695: "\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𠚕
+ 0x20696: "\x01\x01\x02\x01\x05\x02\x05\x05\x03\x04", // 𠚖
+ 0x20697: "\x03\x01\x05\x02\x02\x05\x01\x05\x04\x05\x02", // 𠚗
+ 0x20698: "\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01\x05\x02", // 𠚘
+ 0x20699: "\x02\x05\x01\x01\x03\x04\x05\x02\x02\x05\x02\x02\x05\x02", // 𠚙
+ 0x2069a: "\x05\x02\x05\x02\x05\x03\x04\x05\x02\x05\x03\x04\x05\x02", // 𠚚
+ 0x2069b: "\x01\x02\x01\x05\x02\x01\x02\x01\x05\x02\x01\x02\x01\x05\x02", // 𠚛
+ 0x2069c: "\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01\x02\x05\x02\x05\x01", // 𠚜
+ 0x2069d: "\x02\x01\x02\x05\x05\x04\x01\x02\x05\x04\x05\x04\x03\x04\x05\x02", // 𠚝
+ 0x2069e: "\x05\x01\x02\x02\x05\x01\x03\x04\x04\x03\x02\x05\x01\x01\x01\x03\x04\x01", // 𠚞
+ 0x2069f: "\x03\x01\x02\x05\x01\x02\x04\x05\x03\x05\x04\x03\x03\x04\x02\x05\x01\x05\x02", // 𠚟
+ 0x206a0: "\x02\x05\x01\x01\x03\x05\x02\x01\x02\x01\x02\x05\x01\x01\x03\x05\x02\x01\x02\x01\x05\x02", // 𠚠
+ 0x206a1: "\x03\x04\x04\x03\x03\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x04", // 𠚡
+ 0x206a2: "\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01\x05\x02\x02\x05\x02", // 𠚢
+ 0x206a3: "\x05\x03", // 𠚣
+ 0x206a4: "\x03\x05\x04", // 𠚤
+ 0x206a5: "\x05\x03\x02\x02", // 𠚥
+ 0x206a6: "\x05\x03\x05\x04", // 𠚦
+ 0x206a7: "\x01\x01\x02\x02", // 𠚧
+ 0x206a8: "\x05\x02\x05\x03", // 𠚨
+ 0x206a9: "\x02\x04\x02\x02", // 𠚩
+ 0x206aa: "\x05\x03\x05\x03", // 𠚪
+ 0x206ab: "\x05\x04\x02\x02", // 𠚫
+ 0x206ac: "\x02\x04\x05\x03", // 𠚬
+ 0x206ad: "\x03\x05\x01\x02\x02", // 𠚭
+ 0x206ae: "\x05\x03\x03\x01\x05", // 𠚮
+ 0x206af: "\x01\x03\x05\x02\x02", // 𠚯
+ 0x206b0: "\x05\x03\x01\x02\x02", // 𠚰
+ 0x206b1: "\x02\x01\x05\x05\x03", // 𠚱
+ 0x206b2: "\x03\x01\x03\x05\x03", // 𠚲
+ 0x206b3: "\x04\x01\x03\x02\x02", // 𠚳
+ 0x206b4: "\x05\x05\x05\x02\x02", // 𠚴
+ 0x206b5: "\x03\x05\x04\x02\x02", // 𠚵
+ 0x206b6: "\x01\x02\x01\x02\x02", // 𠚶
+ 0x206b7: "\x01\x02\x05\x02\x02\x02", // 𠚷
+ 0x206b8: "\x03\x05\x05\x04\x02\x02", // 𠚸
+ 0x206b9: "\x03\x05\x05\x04\x02\x02", // 𠚹
+ 0x206ba: "\x02\x03\x04\x03\x02\x02", // 𠚺
+ 0x206bb: "\x01\x05\x01\x02\x02", // 𠚻
+ 0x206bc: "\x03\x04\x05\x03\x02\x02", // 𠚼
+ 0x206bd: "\x01\x02\x05\x04\x02\x02", // 𠚽
+ 0x206be: "\x01\x05\x02\x03\x02\x02", // 𠚾
+ 0x206bf: "\x05\x04\x05\x04\x02\x02", // 𠚿
+ 0x206c0: "\x03\x04\x05\x04\x02\x02", // 𠛀
+ 0x206c1: "\x03\x02\x01\x05\x02\x02", // 𠛁
+ 0x206c2: "\x05\x03\x03\x04\x02\x02", // 𠛂
+ 0x206c3: "\x03\x01\x01\x03\x02\x02", // 𠛃
+ 0x206c4: "\x03\x04\x03\x04\x02\x02", // 𠛄
+ 0x206c5: "\x01\x03\x04\x05\x02\x02", // 𠛅
+ 0x206c6: "\x03\x05\x05\x01\x02\x02", // 𠛆
+ 0x206c7: "\x05\x03\x04\x01\x03\x04", // 𠛇
+ 0x206c8: "\x03\x04\x03\x04\x05\x03", // 𠛈
+ 0x206c9: "\x03\x01\x01\x03\x02\x02", // 𠛉
+ 0x206ca: "\x03\x05\x01\x05\x02\x02", // 𠛊
+ 0x206cb: "\x05\x02\x01\x05\x02\x02", // 𠛋
+ 0x206cc: "\x04\x05\x03\x05\x02\x02", // 𠛌
+ 0x206cd: "\x04\x01\x05\x03\x02\x02", // 𠛍
+ 0x206ce: "\x04\x05\x02\x05\x01\x02\x02", // 𠛎
+ 0x206cf: "\x05\x04\x05\x05\x05\x02\x02", // 𠛏
+ 0x206d0: "\x01\x01\x02\x03\x04\x02\x02", // 𠛐
+ 0x206d1: "\x04\x01\x05\x05\x04\x02\x02", // 𠛑
+ 0x206d2: "\x03\x03\x05\x04\x04\x02\x02", // 𠛒
+ 0x206d3: "\x03\x05\x03\x05\x02\x02\x02", // 𠛓
+ 0x206d4: "\x03\x05\x02\x03\x02\x02", // 𠛔
+ 0x206d5: "\x02\x05\x02\x05\x03\x02\x02", // 𠛕
+ 0x206d6: "\x01\x03\x05\x03\x03\x02\x02", // 𠛖
+ 0x206d7: "\x01\x03\x04\x05\x04\x02\x02", // 𠛗
+ 0x206d8: "\x01\x03\x04\x03\x05\x02\x02", // 𠛘
+ 0x206d9: "\x02\x01\x01\x01\x05\x02\x02", // 𠛙
+ 0x206da: "\x05\x04\x02\x05\x02\x02\x02", // 𠛚
+ 0x206db: "\x03\x04\x01\x01\x05\x02\x02", // 𠛛
+ 0x206dc: "\x01\x01\x03\x02\x04\x02\x02", // 𠛜
+ 0x206dd: "\x01\x01\x03\x02\x05\x03\x04", // 𠛝
+ 0x206de: "\x01\x03\x04\x04\x03\x05\x03", // 𠛞
+ 0x206df: "\x01\x02\x01\x03\x02\x02\x02", // 𠛟
+ 0x206e0: "\x03\x05\x04\x05\x05\x02\x02", // 𠛠
+ 0x206e1: "\x04\x05\x04\x03\x04\x02\x02", // 𠛡
+ 0x206e2: "\x03\x01\x02\x01\x01\x02\x02", // 𠛢
+ 0x206e3: "\x02\x05\x01\x01\x01\x02\x02", // 𠛣
+ 0x206e4: "\x02\x01\x02\x05\x01\x05\x03", // 𠛤
+ 0x206e5: "\x01\x02\x05\x03\x04\x02\x02", // 𠛥
+ 0x206e6: "\x03\x01\x03\x05\x04\x02\x02", // 𠛦
+ 0x206e7: "\x02\x05\x03\x04\x03\x04\x02\x02", // 𠛧
+ 0x206e8: "\x03\x01\x01\x02\x03\x04\x02\x02", // 𠛨
+ 0x206e9: "\x05\x05\x04\x02\x03\x04\x02\x02", // 𠛩
+ 0x206ea: "\x03\x04\x01\x05\x03\x04\x02\x02", // 𠛪
+ 0x206eb: "\x03\x05\x04\x03\x05\x04\x02\x02", // 𠛫
+ 0x206ec: "\x01\x01\x03\x01\x01\x02\x02\x02", // 𠛬
+ 0x206ed: "\x02\x05\x01\x03\x04\x01\x02\x02", // 𠛭
+ 0x206ee: "\x03\x04\x01\x01\x02\x01\x02\x02", // 𠛮
+ 0x206ef: "\x02\x01\x01\x02\x05\x02\x02\x02", // 𠛯
+ 0x206f0: "\x02\x05\x01\x02\x02\x05\x02\x02", // 𠛰
+ 0x206f1: "\x05\x05\x05\x03\x05\x04\x02\x02", // 𠛱
+ 0x206f2: "\x03\x04\x01\x02\x01\x02\x01\x02\x02", // 𠛲
+ 0x206f3: "\x04\x01\x05\x03\x03\x04\x05\x03", // 𠛳
+ 0x206f4: "\x03\x05\x04\x02\x03\x04\x02\x02", // 𠛴
+ 0x206f5: "\x05\x01\x01\x05\x03\x04\x02\x02", // 𠛵
+ 0x206f6: "\x03\x04\x04\x01\x03\x04\x02\x02", // 𠛶
+ 0x206f7: "\x03\x02\x01\x01\x04\x01\x02\x02", // 𠛷
+ 0x206f8: "\x02\x05\x01\x02\x03\x05\x05\x03", // 𠛸
+ 0x206f9: "\x02\x05\x02\x05\x01\x01\x02\x02", // 𠛹
+ 0x206fa: "\x03\x01\x01\x02\x01\x02\x01\x05\x03", // 𠛺
+ 0x206fb: "\x03\x01\x03\x02\x05\x02\x02\x02", // 𠛻
+ 0x206fc: "\x04\x03\x01\x01\x03\x02\x02\x02", // 𠛼
+ 0x206fd: "\x01\x01\x02\x02\x05\x01\x05\x03", // 𠛽
+ 0x206fe: "\x05\x01\x03\x04\x04\x04\x02\x02", // 𠛾
+ 0x206ff: "\x02\x05\x01\x02\x01\x04\x02\x02", // 𠛿
+ 0x20700: "\x01\x05\x01\x02\x03\x04\x02\x02", // 𠜀
+ 0x20701: "\x01\x05\x01\x05\x03\x04\x02\x02", // 𠜁
+ 0x20702: "\x02\x05\x02\x02\x01\x01\x02\x02", // 𠜂
+ 0x20703: "\x03\x02\x01\x05\x01\x01\x02\x02", // 𠜃
+ 0x20704: "\x03\x02\x05\x02\x02\x01\x02\x02", // 𠜄
+ 0x20705: "\x04\x01\x03\x04\x03\x04\x02\x02", // 𠜅
+ 0x20706: "\x04\x01\x03\x05\x03\x04\x02\x02", // 𠜆
+ 0x20707: "\x04\x01\x05\x02\x03\x04\x02\x02", // 𠜇
+ 0x20708: "\x05\x01\x01\x01\x01\x02\x02\x02", // 𠜈
+ 0x20709: "\x05\x02\x05\x03\x04\x01\x02\x02", // 𠜉
+ 0x2070a: "\x05\x05\x05\x02\x05\x01\x02\x02", // 𠜊
+ 0x2070b: "\x03\x04\x05\x02\x01\x01\x02\x02", // 𠜋
+ 0x2070c: "\x03\x05\x02\x05\x03\x05\x02\x05", // 𠜌
+ 0x2070d: "\x04\x05\x01\x01\x03\x05\x02\x02", // 𠜍
+ 0x2070e: "\x03\x01\x02\x01\x03\x05\x02\x02", // 𠜎
+ 0x2070f: "\x02\x05\x01\x02\x05\x02\x02\x02", // 𠜏
+ 0x20710: "\x02\x01\x02\x05\x01\x02\x02\x02\x02", // 𠜐
+ 0x20711: "\x03\x04\x02\x05\x01\x03\x05\x02\x02", // 𠜑
+ 0x20712: "\x01\x02\x05\x01\x01\x01\x02\x02\x02", // 𠜒
+ 0x20713: "\x03\x05\x03\x04\x03\x03\x04\x05\x03", // 𠜓
+ 0x20714: "\x02\x01\x01\x03\x02\x05\x02\x02\x02", // 𠜔
+ 0x20715: "\x03\x01\x02\x05\x01\x01\x02\x02\x02", // 𠜕
+ 0x20716: "\x03\x04\x04\x03\x01\x02\x01\x02\x02", // 𠜖
+ 0x20717: "\x03\x04\x01\x03\x02\x05\x02\x02\x02", // 𠜗
+ 0x20718: "\x05\x01\x01\x04\x05\x05\x04\x02\x02", // 𠜘
+ 0x20719: "\x01\x02\x05\x01\x01\x02\x04\x02\x02", // 𠜙
+ 0x2071a: "\x01\x01\x03\x02\x01\x02\x01\x02\x02", // 𠜚
+ 0x2071b: "\x02\x05\x03\x05\x02\x05\x01\x02\x02", // 𠜛
+ 0x2071c: "\x03\x05\x01\x05\x02\x05\x01\x02\x02", // 𠜜
+ 0x2071d: "\x01\x02\x01\x03\x03\x01\x02\x02\x02", // 𠜝
+ 0x2071e: "\x03\x05\x05\x03\x02\x05\x01\x01\x01", // 𠜞
+ 0x2071f: "\x02\x05\x02\x05\x03\x04\x01\x02\x02", // 𠜟
+ 0x20720: "\x02\x05\x01\x02\x03\x04\x01\x02\x02", // 𠜠
+ 0x20721: "\x04\x01\x03\x04\x03\x04\x05\x05\x03", // 𠜡
+ 0x20722: "\x04\x01\x03\x01\x03\x04\x04\x02\x02", // 𠜢
+ 0x20723: "\x03\x01\x02\x03\x04\x02\x02\x05\x03", // 𠜣
+ 0x20724: "\x01\x02\x01\x01\x02\x01\x05\x03\x04", // 𠜤
+ 0x20725: "\x01\x02\x05\x01\x01\x01\x02\x05\x03", // 𠜥
+ 0x20726: "\x05\x03\x02\x05\x01\x02\x02\x05\x01", // 𠜦
+ 0x20727: "\x03\x05\x02\x05\x01\x03\x03\x05\x05\x03", // 𠜧
+ 0x20728: "\x04\x01\x05\x03\x03\x04\x05\x03\x04", // 𠜨
+ 0x20729: "\x01\x02\x01\x05\x01\x02\x01\x02\x02", // 𠜩
+ 0x2072a: "\x03\x05\x01\x05\x01\x02\x01\x02\x02", // 𠜪
+ 0x2072b: "\x03\x01\x02\x03\x03\x04\x04\x02\x02", // 𠜫
+ 0x2072c: "\x03\x02\x02\x05\x01\x01\x01\x05\x03", // 𠜬
+ 0x2072d: "\x05\x03\x01\x02\x01\x04\x05\x03\x05", // 𠜭
+ 0x2072e: "\x03\x01\x05\x05\x04\x01\x04\x02\x02", // 𠜮
+ 0x2072f: "\x03\x01\x02\x01\x02\x05\x01\x02\x02", // 𠜯
+ 0x20730: "\x03\x05\x05\x01\x03\x02\x05\x05\x03", // 𠜰
+ 0x20731: "\x03\x02\x05\x01\x01\x03\x01\x02\x02\x02", // 𠜱
+ 0x20732: "\x01\x02\x01\x05\x05\x01\x02\x01\x02\x02", // 𠜲
+ 0x20733: "\x03\x05\x01\x01\x03\x05\x01\x01\x02\x02", // 𠜳
+ 0x20734: "\x02\x05\x01\x01\x01\x02\x03\x04\x02\x02", // 𠜴
+ 0x20735: "\x01\x01\x01\x02\x05\x03\x05\x01\x03\x04", // 𠜵
+ 0x20736: "\x02\x01\x02\x01\x02\x01\x02\x01\x02\x02", // 𠜶
+ 0x20737: "\x02\x01\x02\x05\x01\x01\x01\x05\x02\x02", // 𠜷
+ 0x20738: "\x05\x04\x05\x04\x05\x04\x01\x01\x02\x02", // 𠜸
+ 0x20739: "\x02\x05\x01\x01\x01\x01\x03\x04\x02\x02", // 𠜹
+ 0x2073a: "\x03\x05\x01\x03\x01\x03\x04\x04\x02\x02", // 𠜺
+ 0x2073b: "\x01\x02\x05\x01\x01\x05\x03\x04\x02\x02", // 𠜻
+ 0x2073c: "\x03\x05\x03\x02\x01\x05\x01\x01\x02\x02", // 𠜼
+ 0x2073d: "\x03\x04\x03\x04\x01\x02\x03\x04\x02\x02", // 𠜽
+ 0x2073e: "\x05\x01\x03\x05\x02\x02\x05\x02\x02\x02", // 𠜾
+ 0x2073f: "\x02\x05\x02\x03\x01\x02\x01\x01\x02\x02", // 𠜿
+ 0x20740: "\x02\x05\x02\x03\x04\x01\x05\x01\x02\x02", // 𠝀
+ 0x20741: "\x01\x01\x02\x03\x04\x03\x03\x03\x02\x02", // 𠝁
+ 0x20742: "\x03\x04\x01\x01\x03\x04\x03\x04\x05\x03", // 𠝂
+ 0x20743: "\x02\x05\x03\x04\x02\x05\x03\x04\x02\x02", // 𠝃
+ 0x20744: "\x03\x04\x04\x03\x03\x05\x03\x03\x02\x02", // 𠝄
+ 0x20745: "\x02\x01\x02\x05\x01\x01\x01\x02\x05\x03", // 𠝅
+ 0x20746: "\x01\x01\x03\x02\x01\x01\x02\x01\x02\x02", // 𠝆
+ 0x20747: "\x04\x01\x03\x03\x05\x05\x01\x05\x02\x02", // 𠝇
+ 0x20748: "\x03\x05\x04\x05\x03\x03\x05\x01\x01\x02", // 𠝈
+ 0x20749: "\x02\x05\x02\x03\x05\x03\x03\x03\x02\x02", // 𠝉
+ 0x2074a: "\x01\x03\x05\x04\x01\x01\x03\x02\x02\x02", // 𠝊
+ 0x2074b: "\x05\x01\x03\x01\x01\x02\x03\x04\x02\x02", // 𠝋
+ 0x2074c: "\x05\x04\x01\x02\x04\x01\x03\x04\x02\x02", // 𠝌
+ 0x2074d: "\x03\x01\x02\x02\x01\x01\x03\x05\x02\x02", // 𠝍
+ 0x2074e: "\x03\x05\x05\x01\x01\x02\x02\x05\x01\x01", // 𠝎
+ 0x2074f: "\x03\x04\x01\x02\x05\x01\x03\x04\x05\x03", // 𠝏
+ 0x20750: "\x01\x02\x02\x03\x02\x03\x05\x02\x02", // 𠝐
+ 0x20751: "\x05\x01\x03\x01\x01\x02\x03\x04\x02\x02", // 𠝑
+ 0x20752: "\x04\x01\x03\x02\x04\x02\x05\x01\x02\x02", // 𠝒
+ 0x20753: "\x03\x02\x03\x05\x04\x03\x05\x04\x02\x02", // 𠝓
+ 0x20754: "\x05\x03\x01\x05\x04\x02\x05\x01\x05\x03", // 𠝔
+ 0x20755: "\x05\x03\x02\x05\x01\x01\x01\x05\x03\x05", // 𠝕
+ 0x20756: "\x01\x02\x02\x01\x02\x05\x01\x01\x05\x03", // 𠝖
+ 0x20757: "\x05\x03\x04\x04\x02\x02\x05\x01\x01\x01", // 𠝗
+ 0x20758: "\x03\x05\x04\x02\x05\x01\x02\x01\x02\x02", // 𠝘
+ 0x20759: "\x01\x02\x01\x02\x01\x03\x05\x04\x02\x02", // 𠝙
+ 0x2075a: "\x01\x02\x02\x01\x01\x02\x03\x04\x02\x02", // 𠝚
+ 0x2075b: "\x01\x02\x01\x05\x04\x02\x05\x01\x02\x02", // 𠝛
+ 0x2075c: "\x01\x01\x02\x01\x02\x05\x01\x01\x02\x02", // 𠝜
+ 0x2075d: "\x01\x02\x02\x01\x05\x01\x02\x03\x04\x02\x02", // 𠝝
+ 0x2075e: "\x01\x01\x02\x03\x02\x01\x05\x01\x01\x02\x02", // 𠝞
+ 0x2075f: "\x01\x02\x01\x02\x02\x05\x01\x03\x04\x02\x02", // 𠝟
+ 0x20760: "\x04\x04\x05\x03\x04\x03\x04\x05\x04\x02\x02", // 𠝠
+ 0x20761: "\x04\x01\x03\x03\x04\x01\x05\x03\x04\x02\x02", // 𠝡
+ 0x20762: "\x03\x04\x01\x02\x05\x01\x01\x03\x02\x02\x02", // 𠝢
+ 0x20763: "\x02\x01\x02\x01\x03\x03\x05\x04\x01\x04\x02\x02", // 𠝣
+ 0x20764: "\x03\x01\x02\x05\x01\x01\x02\x01\x01\x02\x02", // 𠝤
+ 0x20765: "\x01\x03\x04\x01\x02\x01\x01\x02\x01\x02\x02", // 𠝥
+ 0x20766: "\x02\x05\x02\x03\x02\x03\x03\x03\x01\x02\x02", // 𠝦
+ 0x20767: "\x05\x01\x01\x05\x01\x01\x01\x05\x03\x05\x03", // 𠝧
+ 0x20768: "\x03\x03\x02\x03\x04\x01\x02\x03\x05\x04\x02\x02", // 𠝨
+ 0x20769: "\x01\x01\x01\x03\x04\x02\x05\x01\x01\x02\x02", // 𠝩
+ 0x2076a: "\x03\x05\x04\x03\x05\x02\x05\x01\x02\x02", // 𠝪
+ 0x2076b: "\x04\x03\x01\x01\x02\x01\x01\x03\x04\x02\x02", // 𠝫
+ 0x2076c: "\x04\x04\x05\x04\x03\x03\x04\x05\x04\x02\x02", // 𠝬
+ 0x2076d: "\x05\x01\x03\x04\x03\x01\x01\x03\x02\x02\x02", // 𠝭
+ 0x2076e: "\x04\x03\x01\x03\x05\x03\x03\x03\x04\x02\x02", // 𠝮
+ 0x2076f: "\x03\x01\x02\x03\x04\x02\x02\x03\x05\x03\x03", // 𠝯
+ 0x20770: "\x03\x05\x01\x03\x05\x05\x03\x01\x01\x03\x04", // 𠝰
+ 0x20771: "\x01\x03\x04\x04\x03\x01\x02\x03\x04\x02\x02", // 𠝱
+ 0x20772: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x02\x02", // 𠝲
+ 0x20773: "\x04\x04\x05\x01\x02\x05\x01\x01\x01\x02\x02", // 𠝳
+ 0x20774: "\x02\x05\x03\x04\x03\x04\x02\x05\x02\x02\x02", // 𠝴
+ 0x20775: "\x03\x01\x01\x03\x03\x01\x01\x02\x05\x03\x04", // 𠝵
+ 0x20776: "\x03\x01\x02\x01\x02\x02\x01\x01\x02\x02", // 𠝶
+ 0x20777: "\x03\x02\x05\x01\x01\x01\x05\x03\x04\x05\x03", // 𠝷
+ 0x20778: "\x05\x04\x05\x02\x03\x03\x01\x03\x04\x05\x03", // 𠝸
+ 0x20779: "\x02\x05\x01\x02\x01\x03\x04\x03\x02\x02\x02", // 𠝹
+ 0x2077a: "\x01\x02\x02\x01\x01\x01\x02\x03\x04\x02\x02", // 𠝺
+ 0x2077b: "\x01\x02\x02\x01\x01\x01\x03\x04\x05\x02\x02", // 𠝻
+ 0x2077c: "\x01\x02\x02\x01\x01\x01\x02\x03\x04\x05\x03", // 𠝼
+ 0x2077d: "\x05\x03\x03\x05\x04\x05\x05\x02\x05\x01\x01", // 𠝽
+ 0x2077e: "\x03\x05\x03\x04\x03\x04\x02\x05\x02\x02\x02", // 𠝾
+ 0x2077f: "\x02\x04\x03\x02\x05\x01\x01\x01\x03\x04\x02\x02", // 𠝿
+ 0x20780: "\x04\x04\x05\x03\x04\x05\x02\x02\x05\x02\x02\x02", // 𠞀
+ 0x20781: "\x01\x02\x01\x02\x01\x02\x05\x02\x03\x04\x02\x02", // 𠞁
+ 0x20782: "\x05\x01\x03\x04\x01\x04\x03\x01\x01\x02\x02\x02", // 𠞂
+ 0x20783: "\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03\x02\x02", // 𠞃
+ 0x20784: "\x03\x03\x02\x01\x05\x03\x01\x05\x03\x05\x02\x02", // 𠞄
+ 0x20785: "\x02\x05\x01\x02\x01\x03\x05\x03\x05\x04\x02\x02", // 𠞅
+ 0x20786: "\x03\x02\x05\x01\x01\x05\x04\x04\x04\x04\x02\x02", // 𠞆
+ 0x20787: "\x03\x02\x05\x03\x04\x01\x01\x05\x01\x05\x02\x02", // 𠞇
+ 0x20788: "\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01\x02\x02", // 𠞈
+ 0x20789: "\x01\x02\x05\x02\x02\x01\x01\x02\x03\x04\x02\x02", // 𠞉
+ 0x2078a: "\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01\x02\x02", // 𠞊
+ 0x2078b: "\x02\x05\x01\x01\x01\x02\x05\x01\x02\x02\x02\x02", // 𠞋
+ 0x2078c: "\x04\x01\x05\x04\x03\x02\x05\x02\x05\x01\x02\x02", // 𠞌
+ 0x2078d: "\x02\x05\x01\x02\x05\x01\x03\x05\x03\x03\x02\x02", // 𠞍
+ 0x2078e: "\x03\x05\x04\x03\x05\x04\x04\x04\x04\x04\x02\x02", // 𠞎
+ 0x2078f: "\x03\x01\x01\x02\x01\x03\x01\x01\x02\x01\x02\x02", // 𠞏
+ 0x20790: "\x01\x03\x01\x05\x02\x05\x01\x01\x02\x01\x02\x02", // 𠞐
+ 0x20791: "\x04\x01\x03\x04\x01\x01\x02\x04\x03\x01\x02\x02", // 𠞑
+ 0x20792: "\x01\x03\x04\x04\x03\x02\x05\x01\x01\x05\x02\x02", // 𠞒
+ 0x20793: "\x01\x01\x02\x01\x05\x05\x04\x02\x03\x04\x02\x02", // 𠞓
+ 0x20794: "\x03\x02\x03\x04\x03\x02\x05\x01\x01\x01\x02\x02", // 𠞔
+ 0x20795: "\x03\x01\x02\x05\x01\x01\x02\x01\x01\x05\x03\x04", // 𠞕
+ 0x20796: "\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x02\x02", // 𠞖
+ 0x20797: "\x01\x02\x01\x05\x04\x01\x02\x01\x05\x04\x02\x02", // 𠞗
+ 0x20798: "\x01\x02\x03\x04\x03\x04\x02\x05\x03\x04\x02\x02", // 𠞘
+ 0x20799: "\x03\x01\x02\x03\x04\x03\x04\x02\x03\x04\x02\x02", // 𠞙
+ 0x2079a: "\x03\x05\x04\x05\x05\x02\x05\x02\x02\x01\x02\x02", // 𠞚
+ 0x2079b: "\x04\x05\x01\x03\x05\x04\x01\x05\x04\x01\x02\x02", // 𠞛
+ 0x2079c: "\x05\x05\x05\x02\x05\x03\x01\x02\x03\x04\x02\x02", // 𠞜
+ 0x2079d: "\x01\x02\x01\x02\x05\x05\x05\x03\x05\x04\x02\x02", // 𠞝
+ 0x2079e: "\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01\x02\x02", // 𠞞
+ 0x2079f: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x02\x02", // 𠞟
+ 0x207a0: "\x05\x03\x03\x01\x02\x03\x04\x03\x01\x01\x03\x04", // 𠞠
+ 0x207a1: "\x02\x05\x01\x02\x04\x05\x02\x05\x01\x01\x02\x02", // 𠞡
+ 0x207a2: "\x01\x01\x02\x01\x04\x03\x01\x01\x02\x01\x05\x03", // 𠞢
+ 0x207a3: "\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01\x02\x02", // 𠞣
+ 0x207a4: "\x05\x05\x05\x02\x05\x02\x04\x01\x03\x04\x02\x02", // 𠞤
+ 0x207a5: "\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x02\x02", // 𠞥
+ 0x207a6: "\x01\x02\x01\x02\x01\x03\x04\x03\x04\x03\x04\x02\x02", // 𠞦
+ 0x207a7: "\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x05\x03", // 𠞧
+ 0x207a8: "\x05\x04\x01\x05\x04\x01\x03\x04\x02\x03\x04\x02\x02", // 𠞨
+ 0x207a9: "\x04\x01\x05\x05\x04\x04\x01\x03\x04\x01\x02\x02\x02", // 𠞩
+ 0x207aa: "\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04\x05\x03", // 𠞪
+ 0x207ab: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02\x02\x02", // 𠞫
+ 0x207ac: "\x04\x01\x03\x05\x02\x05\x01\x03\x05\x03\x04\x02\x02", // 𠞬
+ 0x207ad: "\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01\x02\x02", // 𠞭
+ 0x207ae: "\x01\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x02\x02", // 𠞮
+ 0x207af: "\x01\x04\x05\x02\x04\x01\x03\x04\x05\x01\x01\x02\x02", // 𠞯
+ 0x207b0: "\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04\x05\x03", // 𠞰
+ 0x207b1: "\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01\x02\x02", // 𠞱
+ 0x207b2: "\x01\x01\x02\x03\x04\x02\x01\x05\x04\x01\x03\x05\x03", // 𠞲
+ 0x207b3: "\x04\x03\x01\x03\x05\x01\x01\x03\x05\x01\x01\x02\x02", // 𠞳
+ 0x207b4: "\x03\x04\x04\x05\x01\x01\x03\x02\x05\x01\x05\x03\x04", // 𠞴
+ 0x207b5: "\x02\x05\x02\x02\x01\x03\x02\x01\x05\x03\x04\x02\x02", // 𠞵
+ 0x207b6: "\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01\x02\x02", // 𠞶
+ 0x207b7: "\x05\x01\x01\x01\x02\x01\x02\x05\x01\x02\x01\x02\x02", // 𠞷
+ 0x207b8: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x02\x02", // 𠞸
+ 0x207b9: "\x03\x04\x03\x01\x02\x03\x04\x04\x05\x04\x04\x02\x02", // 𠞹
+ 0x207ba: "\x01\x03\x05\x04\x02\x02\x04\x01\x03\x04\x02\x05\x01", // 𠞺
+ 0x207bb: "\x04\x01\x05\x05\x04\x04\x01\x03\x04\x01\x02\x05\x03", // 𠞻
+ 0x207bc: "\x03\x04\x01\x03\x03\x05\x04\x01\x04\x02\x02\x02\x02", // 𠞼
+ 0x207bd: "\x04\x03\x01\x03\x05\x01\x01\x02\x02\x05\x03\x05\x03", // 𠞽
+ 0x207be: "\x03\x03\x02\x03\x04\x01\x01\x02\x04\x03\x01\x02\x02", // 𠞾
+ 0x207bf: "\x05\x04\x05\x04\x02\x05\x01\x01\x01\x03\x04\x02\x02", // 𠞿
+ 0x207c0: "\x05\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𠟀
+ 0x207c1: "\x02\x05\x02\x03\x04\x01\x01\x02\x04\x03\x01\x02\x02", // 𠟁
+ 0x207c2: "\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01\x02\x02", // 𠟂
+ 0x207c3: "\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x02\x04\x02\x02", // 𠟃
+ 0x207c4: "\x03\x01\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x05\x03", // 𠟄
+ 0x207c5: "\x03\x01\x04\x03\x01\x04\x01\x05\x04\x01\x02\x01\x02\x02", // 𠟅
+ 0x207c6: "\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01\x02\x02", // 𠟆
+ 0x207c7: "\x04\x01\x03\x05\x04\x01\x05\x02\x01\x02\x03\x04\x02\x02", // 𠟇
+ 0x207c8: "\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04\x05\x03", // 𠟈
+ 0x207c9: "\x05\x01\x03\x05\x02\x01\x05\x02\x01\x05\x02\x01\x02\x02", // 𠟉
+ 0x207ca: "\x03\x04\x01\x02\x05\x01\x05\x04\x01\x05\x04\x01\x02\x02", // 𠟊
+ 0x207cb: "\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05\x02\x02", // 𠟋
+ 0x207cc: "\x01\x02\x01\x02\x04\x01\x04\x03\x01\x02\x05\x01\x02\x02", // 𠟌
+ 0x207cd: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01\x02\x02", // 𠟍
+ 0x207ce: "\x02\x05\x01\x02\x05\x01\x04\x03\x01\x05\x02\x03\x02\x02", // 𠟎
+ 0x207cf: "\x03\x04\x03\x04\x03\x04\x03\x04\x02\x05\x01\x01\x02\x02", // 𠟏
+ 0x207d0: "\x03\x04\x01\x05\x01\x01\x03\x02\x05\x01\x05\x03\x04\x04", // 𠟐
+ 0x207d1: "\x02\x05\x03\x04\x01\x04\x01\x01\x01\x02\x05\x01\x02\x02", // 𠟑
+ 0x207d2: "\x05\x03\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04\x02\x02", // 𠟒
+ 0x207d3: "\x02\x01\x02\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04\x02\x02", // 𠟓
+ 0x207d4: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x02\x02\x02\x02", // 𠟔
+ 0x207d5: "\x01\x02\x02\x01\x01\x01\x05\x04\x01\x02\x03\x04\x02\x02", // 𠟕
+ 0x207d6: "\x03\x04\x01\x02\x05\x01\x03\x05\x01\x01\x02\x02\x02\x02", // 𠟖
+ 0x207d7: "\x01\x02\x01\x02\x04\x05\x01\x02\x01\x02\x05\x01\x02\x02", // 𠟗
+ 0x207d8: "\x02\x05\x01\x01\x04\x05\x03\x05\x01\x02\x03\x04\x02\x02", // 𠟘
+ 0x207d9: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x01\x05\x04\x02\x02", // 𠟙
+ 0x207da: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x01\x02\x04\x02\x02", // 𠟚
+ 0x207db: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x04\x04\x02\x02", // 𠟛
+ 0x207dc: "\x01\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x02\x02", // 𠟜
+ 0x207dd: "\x01\x02\x02\x05\x04\x05\x04\x05\x04\x05\x04\x02\x02", // 𠟝
+ 0x207de: "\x02\x01\x02\x01\x02\x01\x02\x01\x02\x01\x02\x01\x02\x02", // 𠟞
+ 0x207df: "\x02\x05\x02\x02\x01\x04\x01\x01\x01\x02\x05\x01\x02\x02", // 𠟟
+ 0x207e0: "\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x02\x05\x02\x02", // 𠟠
+ 0x207e1: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04\x02\x02", // 𠟡
+ 0x207e2: "\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04\x02\x02", // 𠟢
+ 0x207e3: "\x05\x05\x04\x05\x05\x04\x01\x03\x04\x05\x03\x04\x02\x02", // 𠟣
+ 0x207e4: "\x04\x03\x01\x01\x01\x02\x04\x03\x01\x02\x05\x01\x02\x02", // 𠟤
+ 0x207e5: "\x02\x03\x04\x01\x03\x04\x03\x01\x02\x02\x05\x01\x02\x02", // 𠟥
+ 0x207e6: "\x01\x01\x02\x01\x01\x01\x02\x01\x04\x05\x04\x03\x04\x02\x02", // 𠟦
+ 0x207e7: "\x03\x05\x01\x03\x03\x05\x04\x01\x01\x01\x02\x05\x01\x02\x02", // 𠟧
+ 0x207e8: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x04\x01\x05\x04\x02\x02", // 𠟨
+ 0x207e9: "\x01\x02\x03\x04\x03\x04\x01\x02\x05\x02\x05\x01\x01\x02\x02", // 𠟩
+ 0x207ea: "\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x02\x03\x04\x02\x02", // 𠟪
+ 0x207eb: "\x02\x01\x02\x05\x03\x04\x03\x04\x01\x01\x02\x03\x04\x02\x02", // 𠟫
+ 0x207ec: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x03\x04\x02\x02", // 𠟬
+ 0x207ed: "\x02\x05\x01\x01\x01\x05\x01\x03\x02\x01\x02\x05\x02\x02", // 𠟭
+ 0x207ee: "\x03\x05\x02\x05\x03\x04\x03\x04\x01\x04\x03\x03\x04\x02\x02", // 𠟮
+ 0x207ef: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x02\x02", // 𠟯
+ 0x207f0: "\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x04\x02\x02", // 𠟰
+ 0x207f1: "\x05\x01\x01\x01\x02\x03\x04\x02\x05\x01\x02\x01\x01\x02\x02", // 𠟱
+ 0x207f2: "\x03\x02\x05\x03\x04\x03\x01\x02\x03\x04\x01\x01\x05\x02\x02", // 𠟲
+ 0x207f3: "\x02\x02\x01\x01\x02\x01\x05\x03\x05\x03\x01\x01\x03\x01\x01\x02", // 𠟳
+ 0x207f4: "\x01\x02\x03\x04\x03\x04\x03\x04\x02\x04\x01\x03\x04\x02\x02", // 𠟴
+ 0x207f5: "\x01\x05\x03\x02\x01\x01\x01\x03\x05\x03\x03\x03\x04\x02\x02", // 𠟵
+ 0x207f6: "\x04\x04\x05\x03\x04\x05\x01\x03\x05\x02\x02\x05\x02\x02\x02", // 𠟶
+ 0x207f7: "\x05\x01\x01\x02\x04\x01\x03\x04\x02\x05\x01\x02\x01\x02\x02", // 𠟷
+ 0x207f8: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x02\x05\x01\x02\x02", // 𠟸
+ 0x207f9: "\x05\x03\x05\x04\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𠟹
+ 0x207fa: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x03\x02\x05\x02\x02\x02\x02", // 𠟺
+ 0x207fb: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x02\x02", // 𠟻
+ 0x207fc: "\x04\x01\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04\x02\x02", // 𠟼
+ 0x207fd: "\x01\x02\x01\x02\x04\x04\x05\x03\x01\x02\x01\x02\x05\x01\x02\x02", // 𠟽
+ 0x207fe: "\x05\x05\x05\x03\x02\x01\x05\x01\x01\x01\x02\x03\x04\x02\x02", // 𠟾
+ 0x207ff: "\x05\x05\x05\x03\x02\x01\x01\x05\x01\x01\x01\x02\x03\x04\x05\x03", // 𠟿
+ 0x20800: "\x03\x01\x04\x03\x01\x04\x01\x05\x03\x04\x01\x05\x03\x04\x02\x02", // 𠠀
+ 0x20801: "\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x04\x04\x04\x04\x02\x02", // 𠠁
+ 0x20802: "\x03\x05\x01\x03\x05\x03\x03\x03\x05\x02\x05\x02\x02\x01\x02\x02", // 𠠂
+ 0x20803: "\x03\x04\x03\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x02\x02", // 𠠃
+ 0x20804: "\x01\x02\x01\x02\x01\x03\x04\x02\x04\x03\x03\x05\x04\x01\x02\x02", // 𠠄
+ 0x20805: "\x01\x02\x05\x01\x02\x03\x04\x01\x02\x05\x01\x02\x03\x04\x02\x02", // 𠠅
+ 0x20806: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x01\x04\x04\x04\x04\x02\x02", // 𠠆
+ 0x20807: "\x03\x05\x04\x05\x03\x01\x02\x01\x05\x05\x01\x02\x01\x02\x02", // 𠠇
+ 0x20808: "\x01\x02\x01\x02\x03\x04\x01\x05\x01\x01\x03\x02\x05\x01\x02\x02", // 𠠈
+ 0x20809: "\x05\x03\x02\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04\x02\x02", // 𠠉
+ 0x2080a: "\x02\x05\x04\x03\x01\x02\x05\x02\x02\x02\x01\x02\x05\x01\x01\x01", // 𠠊
+ 0x2080b: "\x02\x01\x03\x05\x04\x05\x04\x02\x05\x01\x01\x01\x03\x04\x02\x02", // 𠠋
+ 0x2080c: "\x05\x05\x05\x02\x05\x03\x04\x01\x03\x05\x02\x04\x01\x03\x04\x02\x02", // 𠠌
+ 0x2080d: "\x03\x01\x02\x03\x04\x03\x05\x03\x03\x04\x02\x04\x01\x03\x04\x02\x02", // 𠠍
+ 0x2080e: "\x04\x01\x03\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04\x02\x02", // 𠠎
+ 0x2080f: "\x01\x03\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04\x02\x02", // 𠠏
+ 0x20810: "\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04\x05\x03\x04", // 𠠐
+ 0x20811: "\x03\x01\x04\x03\x01\x04\x05\x01\x01\x05\x04\x05\x02\x02\x02", // 𠠑
+ 0x20812: "\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x03\x01\x01\x02\x02\x02", // 𠠒
+ 0x20813: "\x04\x03\x03\x04\x04\x03\x03\x04\x03\x04\x02\x04\x01\x03\x04\x02\x02", // 𠠓
+ 0x20814: "\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x05\x03", // 𠠔
+ 0x20815: "\x01\x02\x02\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04\x02\x02", // 𠠕
+ 0x20816: "\x04\x04\x05\x03\x04\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x02\x02", // 𠠖
+ 0x20817: "\x05\x05\x05\x02\x05\x03\x04\x01\x05\x04\x04\x05\x04\x04\x05\x02\x02", // 𠠗
+ 0x20818: "\x01\x01\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x03\x04\x02\x02", // 𠠘
+ 0x20819: "\x04\x04\x05\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04\x02\x02", // 𠠙
+ 0x2081a: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x02\x02", // 𠠚
+ 0x2081b: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x02\x02", // 𠠛
+ 0x2081c: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x03\x01\x01\x02\x05\x02\x02\x02", // 𠠜
+ 0x2081d: "\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01\x02\x02", // 𠠝
+ 0x2081e: "\x05\x05\x01\x03\x05\x03\x03\x03\x04\x02\x05\x01\x02\x01\x04\x02\x02", // 𠠞
+ 0x2081f: "\x04\x01\x04\x03\x01\x03\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04\x02\x02", // 𠠟
+ 0x20820: "\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x05\x03\x04", // 𠠠
+ 0x20821: "\x02\x05\x01\x01\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04\x02\x02", // 𠠡
+ 0x20822: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05\x03", // 𠠢
+ 0x20823: "\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x05\x05\x04\x02\x03\x04\x02\x02", // 𠠣
+ 0x20824: "\x03\x05\x02\x05\x02\x01\x01\x05\x03\x05\x03\x05\x02\x05\x01\x03\x05\x02\x02", // 𠠤
+ 0x20825: "\x03\x05\x02\x05\x02\x01\x01\x05\x03\x05\x03\x05\x02\x05\x01\x03\x05\x04\x02\x02", // 𠠥
+ 0x20826: "\x01\x02\x05\x01\x02\x05\x01\x02\x01\x02\x02\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 𠠦
+ 0x20827: "\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x01\x04\x03\x03\x04\x02\x02", // 𠠧
+ 0x20828: "\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01\x02\x02", // 𠠨
+ 0x20829: "\x02\x05\x01\x02\x01\x03\x05\x04\x02\x05\x01\x04\x03\x01\x02\x05\x01\x01\x02\x02", // 𠠩
+ 0x2082a: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x05\x03", // 𠠪
+ 0x2082b: "\x01\x02\x05\x04\x01\x02\x05\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x02\x02", // 𠠫
+ 0x2082c: "\x03\x01\x04\x03\x01\x04\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x02\x02", // 𠠬
+ 0x2082d: "\x04\x05\x02\x03\x04\x05\x03\x03\x02\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x01", // 𠠭
+ 0x2082e: "\x05\x01\x03\x04\x03\x01\x01\x01\x02\x04\x03\x01\x01\x01\x03\x04\x03\x01\x01\x01\x02\x02\x02", // 𠠮
+ 0x2082f: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x04\x05\x02\x05\x01\x01\x01\x02\x02", // 𠠯
+ 0x20830: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x02\x02", // 𠠰
+ 0x20831: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x03\x04\x01\x02\x02", // 𠠱
+ 0x20832: "\x03\x05\x03", // 𠠲
+ 0x20833: "\x05\x02\x05\x03", // 𠠳
+ 0x20834: "\x03\x05\x03\x05", // 𠠴
+ 0x20835: "\x03\x05\x05\x03", // 𠠵
+ 0x20836: "\x03\x01\x05\x05\x03", // 𠠶
+ 0x20837: "\x05\x03\x05\x05\x03", // 𠠷
+ 0x20838: "\x01\x02\x03\x05\x03", // 𠠸
+ 0x20839: "\x04\x05\x03\x05\x05\x03", // 𠠹
+ 0x2083a: "\x01\x01\x03\x05\x05\x03", // 𠠺
+ 0x2083b: "\x03\x03\x05\x04\x05\x03", // 𠠻
+ 0x2083c: "\x04\x01\x03\x04\x05\x03", // 𠠼
+ 0x2083d: "\x04\x03\x03\x04\x05\x03", // 𠠽
+ 0x2083e: "\x05\x03\x05\x02\x01\x05", // 𠠾
+ 0x2083f: "\x01\x03\x05\x03\x05\x03", // 𠠿
+ 0x20840: "\x01\x03\x05\x04\x05\x03", // 𠡀
+ 0x20841: "\x01\x05\x02\x03\x05\x03", // 𠡁
+ 0x20842: "\x05\x01\x05\x03\x02\x05\x03", // 𠡂
+ 0x20843: "\x05\x03\x01\x03\x01\x02\x01", // 𠡃
+ 0x20844: "\x05\x03\x02\x05\x04\x05\x03", // 𠡄
+ 0x20845: "\x01\x05\x02\x01\x05\x03", // 𠡅
+ 0x20846: "\x04\x01\x05\x05\x04\x05\x03", // 𠡆
+ 0x20847: "\x05\x04\x02\x05\x01\x05\x03", // 𠡇
+ 0x20848: "\x03\x02\x05\x01\x01\x05\x03", // 𠡈
+ 0x20849: "\x01\x02\x02\x05\x01\x05\x03", // 𠡉
+ 0x2084a: "\x01\x03\x04\x04\x03\x05\x03", // 𠡊
+ 0x2084b: "\x02\x05\x02\x05\x01\x05\x03", // 𠡋
+ 0x2084c: "\x04\x01\x05\x03\x05\x05\x03", // 𠡌
+ 0x2084d: "\x05\x04\x01\x02\x01\x05\x03", // 𠡍
+ 0x2084e: "\x02\x05\x01\x01\x01\x05\x03", // 𠡎
+ 0x2084f: "\x03\x01\x01\x02\x01\x05\x03", // 𠡏
+ 0x20850: "\x05\x03\x02\x05\x01\x01\x05", // 𠡐
+ 0x20851: "\x04\x04\x01\x03\x05\x04\x05\x03", // 𠡑
+ 0x20852: "\x03\x02\x05\x01\x05\x01\x05\x03", // 𠡒
+ 0x20853: "\x04\x04\x05\x05\x03\x01\x05\x03", // 𠡓
+ 0x20854: "\x05\x05\x05\x01\x05\x03\x05\x03", // 𠡔
+ 0x20855: "\x01\x03\x05\x01\x02\x01\x05\x03", // 𠡕
+ 0x20856: "\x04\x01\x03\x04\x02\x02\x05\x03", // 𠡖
+ 0x20857: "\x01\x02\x05\x01\x02\x05\x05\x03", // 𠡗
+ 0x20858: "\x05\x03\x01\x03\x02\x01\x02\x01", // 𠡘
+ 0x20859: "\x05\x03\x01\x02\x03\x04\x02\x04", // 𠡙
+ 0x2085a: "\x01\x02\x05\x01\x01\x01\x05\x03", // 𠡚
+ 0x2085b: "\x02\x05\x01\x03\x04\x01\x05\x03", // 𠡛
+ 0x2085c: "\x04\x01\x05\x04\x03\x05\x05\x03", // 𠡜
+ 0x2085d: "\x05\x05\x05\x03\x05\x04\x05\x03", // 𠡝
+ 0x2085e: "\x03\x02\x05\x01\x01\x03\x05\x05\x03", // 𠡞
+ 0x2085f: "\x01\x02\x04\x01\x03\x04\x04\x05\x03", // 𠡟
+ 0x20860: "\x01\x04\x03\x01\x02\x03\x04\x05\x03", // 𠡠
+ 0x20861: "\x02\x01\x03\x05\x04\x05\x04\x05\x03", // 𠡡
+ 0x20862: "\x05\x05\x05\x01\x03\x05\x04\x05\x03", // 𠡢
+ 0x20863: "\x01\x02\x05\x01\x01\x03\x04\x05\x03", // 𠡣
+ 0x20864: "\x04\x01\x05\x04\x03\x02\x05\x05\x03", // 𠡤
+ 0x20865: "\x05\x03\x03\x02\x01\x02\x01\x03\x04", // 𠡥
+ 0x20866: "\x03\x01\x05\x03\x05\x03\x01\x01\x02", // 𠡦
+ 0x20867: "\x04\x01\x03\x04\x02\x05\x01\x05\x03", // 𠡧
+ 0x20868: "\x05\x01\x03\x03\x01\x01\x05\x05\x03", // 𠡨
+ 0x20869: "\x03\x01\x02\x03\x04\x02\x02\x05\x03", // 𠡩
+ 0x2086a: "\x03\x05\x02\x05\x01\x02\x01\x05\x03", // 𠡪
+ 0x2086b: "\x05\x01\x01\x02\x04\x01\x03\x04\x05\x03", // 𠡫
+ 0x2086c: "\x03\x02\x01\x02\x01\x01\x02\x01\x05\x03", // 𠡬
+ 0x2086d: "\x01\x02\x01\x03\x05\x03\x05\x04\x05\x03", // 𠡭
+ 0x2086e: "\x03\x05\x01\x01\x03\x05\x01\x01\x05\x03", // 𠡮
+ 0x2086f: "\x01\x02\x05\x01\x05\x01\x01\x02\x05\x03", // 𠡯
+ 0x20870: "\x05\x01\x03\x05\x02\x02\x05\x02\x05\x03", // 𠡰
+ 0x20871: "\x02\x04\x03\x02\x05\x01\x01\x01\x05\x03", // 𠡱
+ 0x20872: "\x01\x03\x03\x04\x01\x05\x03\x04\x05\x03", // 𠡲
+ 0x20873: "\x01\x03\x02\x05\x02\x05\x01\x01\x05\x03", // 𠡳
+ 0x20874: "\x03\x01\x02\x03\x04\x03\x05\x03\x05\x03", // 𠡴
+ 0x20875: "\x03\x01\x02\x01\x03\x05\x03\x03\x05\x03", // 𠡵
+ 0x20876: "\x04\x03\x01\x01\x03\x04\x05\x03\x05\x03", // 𠡶
+ 0x20877: "\x05\x03\x05\x03\x05\x03\x01\x02\x03\x04", // 𠡷
+ 0x20878: "\x01\x02\x05\x01\x05\x01\x01\x02\x05\x03", // 𠡸
+ 0x20879: "\x02\x01\x01\x03\x05\x04\x05\x04\x05\x03", // 𠡹
+ 0x2087a: "\x01\x02\x01\x05\x04\x05\x02\x05\x03", // 𠡺
+ 0x2087b: "\x03\x05\x03\x03\x04\x04\x05\x04\x04\x05\x03", // 𠡻
+ 0x2087c: "\x04\x03\x01\x03\x02\x05\x01\x01\x01\x05\x03", // 𠡼
+ 0x2087d: "\x04\x01\x02\x05\x01\x01\x02\x03\x04\x05\x03", // 𠡽
+ 0x2087e: "\x01\x01\x02\x01\x02\x04\x01\x03\x04\x05\x03", // 𠡾
+ 0x2087f: "\x05\x01\x03\x02\x05\x01\x01\x02\x01\x05\x03", // 𠡿
+ 0x20880: "\x01\x02\x02\x01\x02\x05\x01\x02\x01\x05\x03", // 𠢀
+ 0x20881: "\x04\x03\x01\x01\x03\x04\x01\x05\x04\x05\x03", // 𠢁
+ 0x20882: "\x01\x02\x01\x03\x02\x05\x03\x05\x03\x05\x03", // 𠢂
+ 0x20883: "\x02\x05\x01\x01\x01\x03\x05\x03\x03\x05\x03", // 𠢃
+ 0x20884: "\x04\x03\x01\x02\x05\x01\x01\x02\x01\x05\x03", // 𠢄
+ 0x20885: "\x02\x01\x05\x03\x01\x05\x04\x01\x03\x04\x05\x03", // 𠢅
+ 0x20886: "\x04\x04\x05\x03\x01\x02\x01\x02\x05\x01\x05\x03", // 𠢆
+ 0x20887: "\x01\x02\x02\x05\x01\x01\x01\x02\x03\x01\x05\x03", // 𠢇
+ 0x20888: "\x03\x02\x01\x01\x05\x01\x01\x01\x02\x01\x05\x03", // 𠢈
+ 0x20889: "\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01\x05\x03", // 𠢉
+ 0x2088a: "\x01\x03\x02\x05\x01\x01\x04\x05\x03\x05\x05\x03", // 𠢊
+ 0x2088b: "\x03\x05\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𠢋
+ 0x2088c: "\x01\x01\x01\x03\x04\x05\x03\x02\x05\x01\x05\x03", // 𠢌
+ 0x2088d: "\x02\x01\x05\x03\x01\x05\x04\x01\x03\x04\x05\x03", // 𠢍
+ 0x2088e: "\x02\x02\x05\x01\x01\x02\x05\x01\x02\x01\x05\x03", // 𠢎
+ 0x2088f: "\x03\x04\x03\x01\x02\x03\x04\x01\x03\x04\x05\x03", // 𠢏
+ 0x20890: "\x01\x05\x02\x03\x03\x01\x03\x04\x01\x03\x05\x03", // 𠢐
+ 0x20891: "\x01\x03\x01\x01\x05\x03\x04\x01\x02\x04\x05\x03", // 𠢑
+ 0x20892: "\x03\x05\x02\x05\x03\x04\x01\x05\x01\x05\x05\x03", // 𠢒
+ 0x20893: "\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x04\x05\x03", // 𠢓
+ 0x20894: "\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05\x05\x03", // 𠢔
+ 0x20895: "\x01\x02\x01\x04\x01\x05\x03\x03\x01\x03\x04\x05\x03", // 𠢕
+ 0x20896: "\x04\x01\x03\x04\x03\x05\x02\x05\x01\x03\x05\x05\x03", // 𠢖
+ 0x20897: "\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01\x05\x03", // 𠢗
+ 0x20898: "\x01\x03\x02\x05\x01\x01\x04\x05\x01\x03\x04\x05\x03", // 𠢘
+ 0x20899: "\x03\x01\x04\x03\x01\x04\x05\x04\x02\x05\x01\x05\x03", // 𠢙
+ 0x2089a: "\x04\x03\x01\x01\x03\x04\x02\x05\x01\x01\x01\x05\x03", // 𠢚
+ 0x2089b: "\x05\x01\x05\x03\x04\x04\x03\x04\x05\x05\x04", // 𠢛
+ 0x2089c: "\x05\x04\x01\x05\x04\x01\x03\x04\x02\x03\x04\x05\x03", // 𠢜
+ 0x2089d: "\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04\x05\x03", // 𠢝
+ 0x2089e: "\x01\x02\x01\x03\x05\x04\x02\x05\x01\x01\x01\x05\x03", // 𠢞
+ 0x2089f: "\x02\x05\x01\x01\x01\x05\x03\x01\x02\x01\x03\x05\x04", // 𠢟
+ 0x208a0: "\x01\x02\x05\x02\x03\x04\x01\x02\x05\x02\x03\x04\x05\x03", // 𠢠
+ 0x208a1: "\x03\x01\x04\x03\x01\x04\x03\x04\x01\x02\x05\x01\x05\x03", // 𠢡
+ 0x208a2: "\x05\x04\x05\x02\x03\x01\x02\x03\x04\x05\x05\x04\x05\x03", // 𠢢
+ 0x208a3: "\x05\x03\x04\x03\x05\x03\x02\x05\x01\x02\x02\x01\x03\x04", // 𠢣
+ 0x208a4: "\x01\x03\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04\x05\x03", // 𠢤
+ 0x208a5: "\x05\x01\x05\x03\x02\x02\x05\x01\x01\x01\x03\x04\x05\x03", // 𠢥
+ 0x208a6: "\x01\x02\x05\x01\x02\x03\x04\x05\x03\x01\x02\x01\x02\x01", // 𠢦
+ 0x208a7: "\x03\x03\x05\x04\x01\x04\x04\x03\x01\x01\x03\x04\x05\x03", // 𠢧
+ 0x208a8: "\x01\x03\x02\x05\x01\x01\x04\x05\x03\x04\x03\x04\x05\x03", // 𠢨
+ 0x208a9: "\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05\x05\x03", // 𠢩
+ 0x208aa: "\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04\x05\x03", // 𠢪
+ 0x208ab: "\x01\x04\x03\x01\x02\x03\x04\x05\x03\x01\x02\x01\x02\x01", // 𠢫
+ 0x208ac: "\x03\x01\x01\x02\x02\x02\x02\x01\x04\x04\x04\x04\x05\x03", // 𠢬
+ 0x208ad: "\x01\x03\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04\x05\x03", // 𠢭
+ 0x208ae: "\x02\x05\x01\x02\x01\x04\x05\x02\x05\x01\x02\x01\x05\x03", // 𠢮
+ 0x208af: "\x05\x04\x01\x05\x04\x01\x03\x04\x02\x04\x04\x04\x05\x03", // 𠢯
+ 0x208b0: "\x03\x05\x02\x05\x02\x01\x01\x05\x04\x04\x04\x04\x05\x03", // 𠢰
+ 0x208b1: "\x01\x02\x03\x04\x01\x02\x03\x04\x01\x01\x02\x03\x04\x05\x03", // 𠢱
+ 0x208b2: "\x03\x05\x03\x05\x01\x01\x02\x03\x05\x03\x01\x01\x02\x05\x03", // 𠢲
+ 0x208b3: "\x01\x02\x03\x04\x03\x04\x01\x02\x05\x02\x05\x01\x01\x05\x03", // 𠢳
+ 0x208b4: "\x03\x05\x02\x05\x01\x01\x02\x01\x01\x04\x04\x04\x04\x05\x03", // 𠢴
+ 0x208b5: "\x01\x02\x03\x04\x01\x02\x03\x04\x01\x01\x02\x03\x04\x05\x03", // 𠢵
+ 0x208b6: "\x05\x05\x05\x03\x02\x01\x01\x05\x01\x01\x01\x02\x03\x04\x05\x03", // 𠢶
+ 0x208b7: "\x01\x03\x04\x03\x04\x02\x03\x04\x05\x03\x02\x05\x01\x02\x03\x04\x01", // 𠢷
+ 0x208b8: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x05\x03", // 𠢸
+ 0x208b9: "\x04\x01\x03\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04\x05\x03", // 𠢹
+ 0x208ba: "\x03\x04\x01\x02\x05\x01\x01\x02\x03\x04\x04\x03\x01\x01\x03\x04\x05\x03", // 𠢺
+ 0x208bb: "\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x01\x01\x05\x03", // 𠢻
+ 0x208bc: "\x05\x04\x02\x05\x01\x01\x01\x05\x01\x03\x02\x01\x02\x05\x05\x03", // 𠢼
+ 0x208bd: "\x01\x02\x02\x02\x05\x01\x01\x01\x02\x02\x01\x01\x02\x05\x03", // 𠢽
+ 0x208be: "\x01\x02\x05\x01\x01\x02\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03", // 𠢾
+ 0x208bf: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x05\x03", // 𠢿
+ 0x208c0: "\x05\x01\x05\x01\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x01\x01\x05\x03", // 𠣀
+ 0x208c1: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x04\x03\x01\x02\x03\x04\x05\x03", // 𠣁
+ 0x208c2: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04\x05\x03", // 𠣂
+ 0x208c3: "\x05\x01\x05\x01\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x01\x01\x05\x03", // 𠣃
+ 0x208c4: "\x03\x05\x02\x05\x01\x01\x05\x01\x05\x03\x05\x02\x05\x01\x03\x05\x04\x05\x03", // 𠣄
+ 0x208c5: "\x01\x02\x01\x02\x03\x02\x05\x01\x05\x01\x04\x01\x04\x03\x01\x01\x02\x05\x03", // 𠣅
+ 0x208c6: "\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x01\x04\x03\x03\x04\x05\x03", // 𠣆
+ 0x208c7: "\x02\x04\x03\x03\x05\x03\x01\x01\x03\x04\x01\x01\x03\x04\x01\x02\x05\x01\x01\x01\x02", // 𠣇
+ 0x208c8: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x03\x05\x05\x03", // 𠣈
+ 0x208c9: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x03\x02\x05\x02\x02\x03\x05\x02\x05\x01\x03\x05\x05\x03", // 𠣉
+ 0x208ca: "\x03\x01\x01\x01\x02\x01\x01\x01\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x04\x05\x04\x04\x05\x03", // 𠣊
+ 0x208cb: "\x02\x01\x01\x01\x02\x01\x01\x01\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x03\x04\x01\x05\x03", // 𠣋
+ 0x208cc: "\x03\x05\x01\x03", // 𠣌
+ 0x208cd: "\x03\x05\x01\x01\x02", // 𠣍
+ 0x208ce: "\x03\x05\x05\x05\x04", // 𠣎
+ 0x208cf: "\x03\x05\x02\x01\x02\x01", // 𠣏
+ 0x208d0: "\x03\x05\x04\x01\x03", // 𠣐
+ 0x208d1: "\x03\x05\x01\x01\x03\x05", // 𠣑
+ 0x208d2: "\x03\x05\x03\x02\x01\x01", // 𠣒
+ 0x208d3: "\x03\x05\x01\x01\x05\x04", // 𠣓
+ 0x208d4: "\x03\x01\x05\x03\x05\x03\x03", // 𠣔
+ 0x208d5: "\x03\x05\x04\x01\x01\x02\x01", // 𠣕
+ 0x208d6: "\x03\x05\x04\x01\x05\x05\x04", // 𠣖
+ 0x208d7: "\x03\x05\x01\x02\x01\x05\x04", // 𠣗
+ 0x208d8: "\x03\x05\x03\x03\x05\x04\x01\x04", // 𠣘
+ 0x208d9: "\x03\x05\x01\x02\x05\x01\x01\x01", // 𠣙
+ 0x208da: "\x03\x05\x01\x01\x02\x05\x01\x01", // 𠣚
+ 0x208db: "\x03\x05\x05\x04\x01\x02\x03\x04", // 𠣛
+ 0x208dc: "\x03\x05\x02\x05\x01\x02\x01\x04", // 𠣜
+ 0x208dd: "\x03\x05\x04\x01\x03\x05\x01\x01", // 𠣝
+ 0x208de: "\x03\x05\x01\x02\x05\x01\x01\x01\x02", // 𠣞
+ 0x208df: "\x03\x05\x05\x04\x03\x05\x03\x05\x04", // 𠣟
+ 0x208e0: "\x03\x04\x02\x01\x02\x05\x01\x02\x02", // 𠣠
+ 0x208e1: "\x03\x05\x03\x04\x02\x05\x01\x01\x01", // 𠣡
+ 0x208e2: "\x03\x05\x01\x01\x03\x05\x02\x05\x02", // 𠣢
+ 0x208e3: "\x01\x02\x01\x05\x03\x05\x03\x04\x05", // 𠣣
+ 0x208e4: "\x03\x05\x02\x05\x01\x01\x03\x04\x01\x05", // 𠣤
+ 0x208e5: "\x03\x05\x01\x03\x05\x03\x03\x04\x03\x04", // 𠣥
+ 0x208e6: "\x03\x05\x01\x02\x02\x01\x04\x03\x03\x04", // 𠣦
+ 0x208e7: "\x03\x05\x02\x03\x04\x03\x05\x02\x03\x04", // 𠣧
+ 0x208e8: "\x03\x05\x03\x05\x04\x03\x05\x03\x05\x04", // 𠣨
+ 0x208e9: "\x01\x02\x05\x01\x02\x03\x04\x03\x05\x01", // 𠣩
+ 0x208ea: "\x03\x05\x02\x05\x01\x03\x05\x02\x05\x01", // 𠣪
+ 0x208eb: "\x05\x03\x02\x05\x01\x03\x05\x02\x05\x01", // 𠣫
+ 0x208ec: "\x03\x05\x02\x05\x01\x01\x03\x04\x01\x05", // 𠣬
+ 0x208ed: "\x03\x05\x04\x01\x04\x03\x01\x02\x05\x01", // 𠣭
+ 0x208ee: "\x03\x05\x01\x03\x04\x04\x03\x01\x01\x01\x02", // 𠣮
+ 0x208ef: "\x03\x05\x01\x02\x01\x02\x02\x05\x01\x02\x01", // 𠣯
+ 0x208f0: "\x03\x05\x01\x02\x01\x03\x02\x05\x01\x01", // 𠣰
+ 0x208f1: "\x03\x05\x02\x01\x02\x05\x02\x02\x01\x01\x01", // 𠣱
+ 0x208f2: "\x03\x05\x01\x02\x02\x01\x02\x01\x05\x02", // 𠣲
+ 0x208f3: "\x02\x01\x02\x05\x01\x01\x01\x02\x03\x05\x04", // 𠣳
+ 0x208f4: "\x03\x05\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 𠣴
+ 0x208f5: "\x03\x05\x01\x02\x05\x01\x01\x02\x04\x01\x02\x01", // 𠣵
+ 0x208f6: "\x03\x05\x05\x01\x05\x02\x05\x01\x05\x03\x02\x02", // 𠣶
+ 0x208f7: "\x02\x01\x02\x01\x03\x05\x02\x05\x01\x03\x05\x04", // 𠣷
+ 0x208f8: "\x03\x05\x04\x01\x02\x05\x01\x02\x05\x01\x03\x05\x04", // 𠣸
+ 0x208f9: "\x03\x05\x05\x01\x01\x05\x04\x01\x05\x03\x05", // 𠣹
+ 0x208fa: "\x04\x01\x01\x05\x01\x02\x03\x04\x03\x05\x05\x01\x05", // 𠣺
+ 0x208fb: "\x01\x03\x04\x04\x03\x01\x01\x05\x03\x05\x05\x01\x05", // 𠣻
+ 0x208fc: "\x01\x03\x04\x01\x01\x02\x03\x04\x03\x05\x05\x01\x05", // 𠣼
+ 0x208fd: "\x03\x05\x01\x02\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 𠣽
+ 0x208fe: "\x03\x05\x03\x03\x02\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 𠣾
+ 0x208ff: "\x03\x05\x02\x01\x02\x05\x01\x01\x01\x05\x03\x05\x05\x04", // 𠣿
+ 0x20900: "\x03\x05\x02\x05\x01\x01\x01\x03\x05\x04\x03\x05\x03\x03", // 𠤀
+ 0x20901: "\x02\x05\x01\x02\x05\x01\x01\x01\x05\x03\x05\x05\x01\x05", // 𠤁
+ 0x20902: "\x03\x05\x03\x02\x05\x01\x01\x01\x03\x01\x01\x05\x01\x05", // 𠤂
+ 0x20903: "\x01\x03\x04\x04\x03\x01\x01\x02\x03\x04\x03\x05\x05\x01\x05", // 𠤃
+ 0x20904: "\x03\x05\x03\x01\x04\x03\x01\x04\x01\x02\x01\x04\x03\x01\x01\x02", // 𠤄
+ 0x20905: "\x03\x05\x01\x02\x01\x02\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 𠤅
+ 0x20906: "\x03\x05\x03\x03\x04\x04\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 𠤆
+ 0x20907: "\x03\x05\x03\x03\x02\x04\x01\x02\x05\x01\x02\x05\x01\x03\x05\x04", // 𠤇
+ 0x20908: "\x03\x05\x03\x04\x03\x04\x02\x03\x04\x03\x04\x02\x03\x04\x03\x04\x02", // 𠤈
+ 0x20909: "\x05\x05\x04\x05\x05\x04\x01\x05\x05\x04\x05\x05\x04\x05\x03\x05\x01", // 𠤉
+ 0x2090a: "\x03\x05\x04\x04\x05\x03\x05\x03\x02\x05\x01\x01\x01\x03\x05\x01\x05", // 𠤊
+ 0x2090b: "\x03\x05\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𠤋
+ 0x2090c: "\x03\x05\x03\x03\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 𠤌
+ 0x2090d: "\x03\x05\x01\x02\x02\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𠤍
+ 0x2090e: "\x03\x05", // 𠤎
+ 0x2090f: "\x01\x05\x01\x02", // 𠤏
+ 0x20910: "\x01\x05\x01\x03\x05", // 𠤐
+ 0x20911: "\x01\x05\x03\x01\x01\x03\x04", // 𠤑
+ 0x20912: "\x03\x04\x02\x01\x01\x01\x05", // 𠤒
+ 0x20913: "\x03\x05\x04\x04\x05\x03\x05", // 𠤓
+ 0x20914: "\x01\x05\x01\x02\x02\x01\x01", // 𠤔
+ 0x20915: "\x01\x05\x03\x01\x01\x03\x04", // 𠤕
+ 0x20916: "\x02\x01\x01\x03\x05\x01\x01\x02", // 𠤖
+ 0x20917: "\x01\x05\x03\x01\x01\x03\x04\x01\x05", // 𠤗
+ 0x20918: "\x01\x05\x05\x04\x03\x01\x01\x03\x04", // 𠤘
+ 0x20919: "\x03\x05\x03\x02\x05\x01\x01\x01\x05", // 𠤙
+ 0x2091a: "\x01\x05\x02\x05\x01\x01\x02\x05\x02", // 𠤚
+ 0x2091b: "\x01\x05\x02\x01\x05\x05\x01\x02\x01", // 𠤛
+ 0x2091c: "\x01\x02\x01\x03\x01\x01\x03\x04\x01\x05", // 𠤜
+ 0x2091d: "\x02\x04\x03\x04\x05\x01\x01\x03\x05", // 𠤝
+ 0x2091e: "\x03\x05\x02\x05\x01\x01\x04\x05\x05\x01\x01\x02", // 𠤞
+ 0x2091f: "\x01\x05\x02\x05\x01\x01\x04\x05\x01\x02", // 𠤟
+ 0x20920: "\x02\x04\x03\x04\x05\x02\x05\x01\x01\x05", // 𠤠
+ 0x20921: "\x01\x05\x01\x02\x03\x04\x01\x01\x03\x02", // 𠤡
+ 0x20922: "\x02\x01\x01\x01\x05\x03\x02\x01\x02\x01", // 𠤢
+ 0x20923: "\x03\x02\x05\x03\x04\x04\x05\x02\x01\x01\x01\x05", // 𠤣
+ 0x20924: "\x03\x05\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 𠤤
+ 0x20925: "\x02\x01\x01\x01\x05\x04\x05\x03\x05\x05\x04\x03\x05", // 𠤥
+ 0x20926: "\x02\x01\x01\x03\x05\x04\x04\x05\x03\x04\x05\x04\x03\x05", // 𠤦
+ 0x20927: "\x03\x05\x01\x02\x01\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 𠤧
+ 0x20928: "\x03\x05\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x01\x02", // 𠤨
+ 0x20929: "\x02\x05\x02\x02\x01\x05\x04\x02\x05\x01\x01\x03\x05\x03\x05\x03\x05", // 𠤩
+ 0x2092a: "\x01\x05\x01\x01\x03\x04\x05\x04\x01\x02\x01\x02\x05\x02\x05\x01\x01\x01", // 𠤪
+ 0x2092b: "\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x04\x05\x02\x01\x01\x01\x05", // 𠤫
+ 0x2092c: "\x05\x05", // 𠤬
+ 0x2092d: "\x01\x03\x04\x05", // 𠤭
+ 0x2092e: "\x01\x03\x04\x01\x05\x05", // 𠤮
+ 0x2092f: "\x01\x03\x02\x04\x05", // 𠤯
+ 0x20930: "\x01\x03\x05\x05\x04\x05", // 𠤰
+ 0x20931: "\x01\x01\x01\x03\x04\x05", // 𠤱
+ 0x20932: "\x01\x01\x05\x02\x05\x05", // 𠤲
+ 0x20933: "\x01\x01\x02\x02\x05\x01\x05", // 𠤳
+ 0x20934: "\x01\x02\x05\x01\x03\x04\x05", // 𠤴
+ 0x20935: "\x01\x03\x01\x01\x02\x01\x05", // 𠤵
+ 0x20936: "\x01\x04\x01\x01\x02\x05\x05", // 𠤶
+ 0x20937: "\x01\x03\x01\x05\x02\x05\x05", // 𠤷
+ 0x20938: "\x01\x03\x01\x01\x02\x05\x02\x05", // 𠤸
+ 0x20939: "\x01\x03\x04\x01\x01\x02\x01\x05", // 𠤹
+ 0x2093a: "\x01\x03\x03\x05\x03\x03\x04\x05", // 𠤺
+ 0x2093b: "\x01\x04\x03\x01\x02\x03\x04\x05", // 𠤻
+ 0x2093c: "\x01\x03\x02\x02\x03\x01\x03\x04\x05", // 𠤼
+ 0x2093d: "\x01\x02\x05\x03\x04\x03\x04\x01\x05", // 𠤽
+ 0x2093e: "\x01\x02\x05\x01\x03\x04\x01\x05\x05", // 𠤾
+ 0x2093f: "\x01\x03\x04\x01\x05\x02\x05\x01\x05", // 𠤿
+ 0x20940: "\x01\x01\x03\x02\x04\x02\x05\x01\x05", // 𠥀
+ 0x20941: "\x01\x03\x02\x05\x01\x01\x03\x04\x05", // 𠥁
+ 0x20942: "\x01\x01\x02\x03\x04\x03\x05\x04\x05", // 𠥂
+ 0x20943: "\x01\x03\x03\x01\x05\x02\x05\x02\x05", // 𠥃
+ 0x20944: "\x02\x01\x01\x01\x02\x01\x03\x05\x01", // 𠥄
+ 0x20945: "\x01\x02\x05\x01\x02\x05\x01\x02\x05", // 𠥅
+ 0x20946: "\x01\x02\x05\x02\x01\x01\x02\x01\x05", // 𠥆
+ 0x20947: "\x01\x04\x01\x01\x01\x02\x05\x01\x05", // 𠥇
+ 0x20948: "\x01\x01\x02\x01\x03\x05\x03\x04\x05", // 𠥈
+ 0x20949: "\x01\x03\x02\x05\x01\x01\x03\x01\x02\x05", // 𠥉
+ 0x2094a: "\x01\x01\x02\x02\x01\x01\x01\x03\x04\x05", // 𠥊
+ 0x2094b: "\x01\x04\x04\x01\x03\x02\x05\x01\x01\x05", // 𠥋
+ 0x2094c: "\x01\x03\x03\x02\x05\x03\x02\x05\x04\x05", // 𠥌
+ 0x2094d: "\x01\x05\x02\x01\x02\x05\x01\x02\x05", // 𠥍
+ 0x2094e: "\x01\x05\x02\x01\x02\x05\x01\x01\x05\x02\x05", // 𠥎
+ 0x2094f: "\x01\x01\x02\x05\x01\x02\x05\x01\x02\x01\x05", // 𠥏
+ 0x20950: "\x01\x03\x04\x01\x05\x01\x01\x03\x02\x05\x01\x05", // 𠥐
+ 0x20951: "\x01\x03\x02\x02\x03\x01\x03\x04\x01\x02\x03\x04\x05", // 𠥑
+ 0x20952: "\x01\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01\x05", // 𠥒
+ 0x20953: "\x01\x05\x02\x02\x01\x04\x05\x01\x03\x02", // 𠥓
+ 0x20954: "\x01\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01\x05", // 𠥔
+ 0x20955: "\x01\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01\x05", // 𠥕
+ 0x20956: "\x01\x01\x02\x02\x01\x03\x05\x04\x05\x02\x05\x02\x05", // 𠥖
+ 0x20957: "\x01\x03\x04\x04\x05\x01\x01\x05\x04\x05\x03\x04\x05", // 𠥗
+ 0x20958: "\x01\x05\x04\x05\x04\x02\x05\x01\x01\x01\x03\x04\x05", // 𠥘
+ 0x20959: "\x01\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x02\x04\x05", // 𠥙
+ 0x2095a: "\x01\x01\x02\x01\x04\x05\x05\x01\x05\x03\x05\x05\x04\x05", // 𠥚
+ 0x2095b: "\x01\x04\x03\x05\x01\x02\x02\x05\x01\x01\x05\x03\x04\x05", // 𠥛
+ 0x2095c: "\x01\x02\x05\x01\x01\x03\x05\x03\x04\x05\x03\x05\x03\x04\x05", // 𠥜
+ 0x2095d: "\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x03\x05\x05\x04\x05", // 𠥝
+ 0x2095e: "\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x01\x01\x02\x01\x05", // 𠥞
+ 0x2095f: "\x01\x01\x02\x02\x05\x01\x03\x04\x01\x01\x02\x04\x03\x01\x05", // 𠥟
+ 0x20960: "\x01\x01\x02\x01\x01\x02\x05\x01\x01\x01\x02\x05\x03\x04\x05", // 𠥠
+ 0x20961: "\x01\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 𠥡
+ 0x20962: "\x01\x03\x01\x01\x02\x02\x02\x02\x01\x03\x05\x04\x01\x05\x02\x05", // 𠥢
+ 0x20963: "\x01\x03\x02\x05\x01\x01\x01\x04\x04\x05\x03\x05\x04\x01\x05\x03\x05", // 𠥣
+ 0x20964: "\x01\x01\x02\x02\x01\x03\x02\x05\x01\x01\x02\x05\x03\x05\x01\x01\x05", // 𠥤
+ 0x20965: "\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05", // 𠥥
+ 0x20966: "\x01\x05\x04\x01\x05\x04\x01\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04\x05", // 𠥦
+ 0x20967: "\x01\x05\x02\x02\x01\x04\x05\x01\x03\x02\x01\x03\x02\x04\x02\x05\x01", // 𠥧
+ 0x20968: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x05", // 𠥨
+ 0x20969: "\x01\x05\x02\x02\x01\x04\x05\x01\x03\x02\x01\x02\x02\x01\x01\x01\x03\x04", // 𠥩
+ 0x2096a: "\x01\x05\x02\x02\x01\x04\x05\x01\x03\x02\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01", // 𠥪
+ 0x2096b: "\x01\x05\x02\x02\x01\x04\x05\x01\x03\x02\x03\x02\x05\x01\x01\x01\x04\x04\x05\x03\x05\x04\x01\x05\x03", // 𠥫
+ 0x2096c: "\x01\x05\x02\x02\x01\x04\x05\x01\x03\x02\x02\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x01\x05\x01\x01", // 𠥬
+ 0x2096d: "\x01\x05\x03\x05", // 𠥭
+ 0x2096e: "\x01\x02\x05\x03\x04\x05", // 𠥮
+ 0x2096f: "\x01\x03\x05\x01\x05\x05", // 𠥯
+ 0x20970: "\x01\x03\x05\x03\x05\x02\x05", // 𠥰
+ 0x20971: "\x01\x05\x02\x02\x05\x02\x05", // 𠥱
+ 0x20972: "\x01\x02\x05\x01\x03\x02\x05", // 𠥲
+ 0x20973: "\x01\x02\x04\x03\x01\x03\x05\x05", // 𠥳
+ 0x20974: "\x01\x04\x04\x01\x03\x04\x01\x05\x05", // 𠥴
+ 0x20975: "\x01\x04\x01\x01\x01\x02\x05\x01\x05", // 𠥵
+ 0x20976: "\x01\x02\x01\x05\x03\x01\x05\x03\x05\x05", // 𠥶
+ 0x20977: "\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05\x03\x05\x04", // 𠥷
+ 0x20978: "\x01\x02\x05\x01\x02\x05\x02\x04\x01\x03\x03\x02\x01\x05\x03\x01\x05\x03\x05\x05", // 𠥸
+ 0x20979: "\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05\x03\x02\x05\x01\x01\x05\x04\x04\x04\x04", // 𠥹
+ 0x2097a: "\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 𠥺
+ 0x2097b: "\x01\x02\x02\x01", // 𠥻
+ 0x2097c: "\x01\x02\x01\x02", // 𠥼
+ 0x2097d: "\x01\x02\x03\x04\x01", // 𠥽
+ 0x2097e: "\x03\x05\x04\x01\x02", // 𠥾
+ 0x2097f: "\x05\x05\x01\x02", // 𠥿
+ 0x20980: "\x02\x01\x01\x01\x02", // 𠦀
+ 0x20981: "\x05\x01\x02\x01\x02", // 𠦁
+ 0x20982: "\x04\x01\x03\x04\x01\x02", // 𠦂
+ 0x20983: "\x01\x02\x01\x02\x01\x02", // 𠦃
+ 0x20984: "\x01\x02\x01\x02\x01\x02", // 𠦄
+ 0x20985: "\x03\x01\x03\x03\x01\x02", // 𠦅
+ 0x20986: "\x02\x05\x01\x01\x01\x02", // 𠦆
+ 0x20987: "\x01\x03\x05\x03\x01\x02", // 𠦇
+ 0x20988: "\x01\x01\x03\x02\x01\x02", // 𠦈
+ 0x20989: "\x01\x02\x03\x03\x01\x02", // 𠦉
+ 0x2098a: "\x01\x01\x05\x04\x01\x02", // 𠦊
+ 0x2098b: "\x02\x01\x01\x03\x01\x02", // 𠦋
+ 0x2098c: "\x01\x02\x02\x01\x02\x02", // 𠦌
+ 0x2098d: "\x03\x04\x03\x04\x01\x02", // 𠦍
+ 0x2098e: "\x03\x04\x03\x04\x01\x02", // 𠦎
+ 0x2098f: "\x03\x04\x03\x04\x01\x02", // 𠦏
+ 0x20990: "\x01\x02\x03\x05\x03\x05", // 𠦐
+ 0x20991: "\x04\x01\x03\x04\x04\x02\x04", // 𠦑
+ 0x20992: "\x01\x02\x02\x01\x01\x01\x02", // 𠦒
+ 0x20993: "\x01\x04\x03\x03\x04\x01\x02", // 𠦓
+ 0x20994: "\x01\x02\x01\x02\x01\x02\x01", // 𠦔
+ 0x20995: "\x01\x02\x01\x03\x05\x01\x02", // 𠦕
+ 0x20996: "\x04\x04\x03\x01\x03\x01\x02", // 𠦖
+ 0x20997: "\x01\x02\x02\x05\x01\x05\x01", // 𠦗
+ 0x20998: "\x01\x02\x01\x03\x05\x04\x01\x02", // 𠦘
+ 0x20999: "\x01\x02\x05\x01\x01\x02\x03\x04", // 𠦙
+ 0x2099a: "\x05\x01\x02\x05\x03\x05\x03\x01", // 𠦚
+ 0x2099b: "\x03\x03\x01\x02\x01\x02\x01\x02", // 𠦛
+ 0x2099c: "\x01\x02\x02\x01\x01\x02\x02\x01", // 𠦜
+ 0x2099d: "\x01\x02\x02\x05\x01\x01\x01\x02", // 𠦝
+ 0x2099e: "\x02\x01\x01\x01\x05\x03\x01\x02", // 𠦞
+ 0x2099f: "\x01\x02\x05\x01\x01\x02\x05\x02", // 𠦟
+ 0x209a0: "\x01\x02\x03\x02\x05\x01\x01\x01", // 𠦠
+ 0x209a1: "\x01\x02\x01\x02\x02\x01\x01\x02", // 𠦡
+ 0x209a2: "\x01\x02\x05\x03\x05\x03\x05\x03", // 𠦢
+ 0x209a3: "\x02\x05\x01\x05\x02\x05\x01\x01\x01\x02", // 𠦣
+ 0x209a4: "\x02\x05\x02\x01\x02\x05\x01\x01\x01\x02", // 𠦤
+ 0x209a5: "\x04\x01\x03\x02\x05\x01\x05\x01\x01\x02", // 𠦥
+ 0x209a6: "\x01\x03\x02\x05\x01\x03\x05\x04\x01\x02", // 𠦦
+ 0x209a7: "\x01\x02\x01\x04\x03\x01\x01\x02\x01\x02", // 𠦧
+ 0x209a8: "\x03\x05\x05\x02\x03\x03\x05\x03\x01\x02", // 𠦨
+ 0x209a9: "\x01\x02\x01\x02\x03\x04\x03\x01\x03\x04", // 𠦩
+ 0x209aa: "\x01\x02\x01\x02\x01\x02\x01\x03\x04\x01\x02", // 𠦪
+ 0x209ab: "\x02\x05\x01\x01\x02\x02\x01\x01\x01\x01\x03", // 𠦫
+ 0x209ac: "\x03\x03\x04\x03\x04\x03\x04\x03\x04\x01\x02", // 𠦬
+ 0x209ad: "\x04\x04\x01\x03\x02\x05\x01\x05\x01\x01\x02", // 𠦭
+ 0x209ae: "\x01\x05\x04\x04\x04\x04\x01\x03\x04\x01\x02", // 𠦮
+ 0x209af: "\x04\x03\x01\x01\x02\x05\x01\x01\x05\x03\x04", // 𠦯
+ 0x209b0: "\x01\x02\x01\x02\x02\x01\x01\x01\x03\x05\x03\x04", // 𠦰
+ 0x209b1: "\x01\x02\x05\x01\x01\x02\x01\x02\x05\x01\x03\x04", // 𠦱
+ 0x209b2: "\x02\x01\x02\x05\x01\x01\x01\x02\x03\x01\x03\x02", // 𠦲
+ 0x209b3: "\x04\x01\x04\x03\x01\x03\x03\x03\x03\x03\x01\x02", // 𠦳
+ 0x209b4: "\x01\x01\x02\x02\x01\x05\x01\x02\x02\x01\x05\x01\x02", // 𠦴
+ 0x209b5: "\x01\x02\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x01\x02", // 𠦵
+ 0x209b6: "\x01\x02\x02\x01\x03\x02\x01\x01\x05\x01\x01\x01\x02", // 𠦶
+ 0x209b7: "\x02\x01\x02\x05\x01\x01\x01\x02\x05\x04\x01\x03\x02", // 𠦷
+ 0x209b8: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x03\x04\x01\x02", // 𠦸
+ 0x209b9: "\x01\x02\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 𠦹
+ 0x209ba: "\x02\x01\x01\x02\x05\x03\x04\x04\x03\x01\x01\x02", // 𠦺
+ 0x209bb: "\x04\x03\x01\x01\x02\x01\x02\x01\x03\x04\x03\x05\x04", // 𠦻
+ 0x209bc: "\x05\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02", // 𠦼
+ 0x209bd: "\x01\x02\x01\x02\x05\x01\x01\x02\x01\x04\x04\x05\x04\x04", // 𠦽
+ 0x209be: "\x01\x02\x02\x01\x02\x01\x02\x01\x02\x01\x02\x01\x02\x01", // 𠦾
+ 0x209bf: "\x03\x01\x02\x03\x04\x03\x05\x02\x03\x04\x03\x01\x03\x02", // 𠦿
+ 0x209c0: "\x03\x05\x03\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02", // 𠧀
+ 0x209c1: "\x01\x02\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x01\x02\x01", // 𠧁
+ 0x209c2: "\x01\x02\x02\x01\x02\x01\x03\x05\x02\x05\x01\x03\x01\x03\x04", // 𠧂
+ 0x209c3: "\x01\x02\x05\x01\x01\x02\x04\x03\x02\x05\x01\x01\x03\x01\x02", // 𠧃
+ 0x209c4: "\x02\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x01\x01\x01\x02", // 𠧄
+ 0x209c5: "\x02\x05\x05\x02\x05\x02\x05\x01\x03\x02\x05\x01\x01\x03\x01\x02", // 𠧅
+ 0x209c6: "\x04\x03\x01\x01\x02\x02\x01\x03\x04\x04\x01\x03\x04\x03\x04\x01\x02", // 𠧆
+ 0x209c7: "\x02\x01\x02\x05\x01\x01\x01\x02\x03\x02\x01\x05\x01\x01\x01\x03\x02", // 𠧇
+ 0x209c8: "\x01\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 𠧈
+ 0x209c9: "\x01\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x04\x01\x02", // 𠧉
+ 0x209ca: "\x03\x02\x05\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 𠧊
+ 0x209cb: "\x01\x02\x03\x05\x03\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𠧋
+ 0x209cc: "\x03\x01\x03\x02\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𠧌
+ 0x209cd: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02\x03\x01\x03\x02", // 𠧍
+ 0x209ce: "\x03\x04\x04\x03\x02\x05\x01\x03\x02\x05\x01\x05\x05\x04\x05\x05\x04\x01\x02", // 𠧎
+ 0x209cf: "\x03\x04\x04\x03\x02\x05\x01\x02\x05\x01\x05\x05\x04\x02\x05\x01\x02\x05\x01\x01\x02", // 𠧏
+ 0x209d0: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02", // 𠧐
+ 0x209d1: "\x03\x02\x01\x01\x01\x02\x02\x05\x01\x05\x01\x01\x03\x04\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02", // 𠧑
+ 0x209d2: "\x02\x01\x05", // 𠧒
+ 0x209d3: "\x02\x04\x05\x03\x04", // 𠧓
+ 0x209d4: "\x02\x01\x01\x03\x05\x04", // 𠧔
+ 0x209d5: "\x02\x01\x01\x05\x01\x03", // 𠧕
+ 0x209d6: "\x02\x01\x02\x05\x03\x04", // 𠧖
+ 0x209d7: "\x02\x01\x01\x01\x02\x05", // 𠧗
+ 0x209d8: "\x02\x01\x05\x03\x05\x04", // 𠧘
+ 0x209d9: "\x05\x03\x02\x05\x01\x02\x04", // 𠧙
+ 0x209da: "\x02\x01\x02\x05\x03\x04\x01", // 𠧚
+ 0x209db: "\x02\x01\x01\x05\x01\x03\x04", // 𠧛
+ 0x209dc: "\x02\x01\x02\x05\x05\x03\x01", // 𠧜
+ 0x209dd: "\x05\x01\x05\x04\x01\x03\x04", // 𠧝
+ 0x209de: "\x03\x04\x01\x05\x03\x04\x02\x04", // 𠧞
+ 0x209df: "\x02\x01\x02\x05\x03\x04\x01\x05", // 𠧟
+ 0x209e0: "\x02\x01\x02\x05\x05\x01\x01\x05", // 𠧠
+ 0x209e1: "\x02\x01\x02\x05\x01\x01\x01\x05", // 𠧡
+ 0x209e2: "\x02\x01\x02\x05\x01\x01\x01\x05", // 𠧢
+ 0x209e3: "\x02\x01\x01\x03\x03\x03\x01\x02", // 𠧣
+ 0x209e4: "\x02\x01\x02\x05\x03\x04\x01\x05", // 𠧤
+ 0x209e5: "\x01\x01\x02\x04\x01\x01\x02\x04", // 𠧥
+ 0x209e6: "\x04\x03\x01\x05\x05\x04\x02\x04", // 𠧦
+ 0x209e7: "\x02\x01\x03\x05\x03\x05\x04\x01", // 𠧧
+ 0x209e8: "\x03\x05\x04\x02\x05\x01\x02\x04", // 𠧨
+ 0x209e9: "\x03\x01\x05\x05\x04\x01\x04\x02\x04", // 𠧩
+ 0x209ea: "\x02\x01\x02\x05\x03\x04\x03\x04\x01", // 𠧪
+ 0x209eb: "\x02\x01\x02\x05\x01\x01\x03\x05\x04", // 𠧫
+ 0x209ec: "\x05\x01\x01\x03\x02\x05\x01\x02\x04", // 𠧬
+ 0x209ed: "\x01\x03\x04\x01\x02\x03\x04\x02\x04", // 𠧭
+ 0x209ee: "\x05\x01\x03\x03\x01\x01\x05\x02\x04", // 𠧮
+ 0x209ef: "\x02\x01\x02\x05\x03\x04\x01\x03\x04", // 𠧯
+ 0x209f0: "\x02\x01\x02\x05\x01\x01\x02\x05\x01", // 𠧰
+ 0x209f1: "\x02\x01\x02\x05\x03\x05\x04\x01\x05", // 𠧱
+ 0x209f2: "\x02\x01\x02\x05\x04\x03\x01\x01\x02", // 𠧲
+ 0x209f3: "\x02\x01\x02\x05\x01\x02\x03\x03\x03\x03", // 𠧳
+ 0x209f4: "\x02\x01\x02\x05\x03\x04\x03\x04\x01\x05", // 𠧴
+ 0x209f5: "\x02\x01\x02\x05\x03\x04\x01\x01\x03\x04", // 𠧵
+ 0x209f6: "\x02\x01\x04\x05\x03\x05\x02\x05\x03\x04", // 𠧶
+ 0x209f7: "\x02\x01\x02\x05\x03\x04\x03\x04\x01\x05", // 𠧷
+ 0x209f8: "\x02\x01\x02\x05\x04\x05\x04\x03\x04\x01", // 𠧸
+ 0x209f9: "\x02\x01\x02\x05\x01\x02\x03\x03\x03\x04", // 𠧹
+ 0x209fa: "\x02\x01\x02\x05\x01\x01\x02\x01\x03\x05\x04", // 𠧺
+ 0x209fb: "\x02\x01\x02\x05\x01\x01\x02\x03\x03\x03\x03", // 𠧻
+ 0x209fc: "\x02\x01\x02\x05\x05\x04\x03\x03\x05\x04", // 𠧼
+ 0x209fd: "\x02\x01\x03\x05\x03\x05\x04\x04\x03\x03\x04", // 𠧽
+ 0x209fe: "\x02\x01\x02\x05\x03\x05\x04\x01\x03\x05\x04", // 𠧾
+ 0x209ff: "\x02\x01\x02\x05\x03\x04\x03\x01\x01\x03\x04", // 𠧿
+ 0x20a00: "\x02\x01\x02\x05\x01\x01\x01\x05\x02\x05\x05\x05", // 𠨀
+ 0x20a01: "\x02\x01\x02\x05\x03\x04\x02\x05\x03\x05\x03\x04", // 𠨁
+ 0x20a02: "\x02\x01\x03\x05\x03\x03\x02\x01\x03\x05\x03\x03", // 𠨂
+ 0x20a03: "\x02\x05\x01\x02\x01\x05\x03\x03\x05\x04\x02\x04", // 𠨃
+ 0x20a04: "\x02\x01\x02\x05\x03\x04\x01\x02\x05\x02\x05\x01", // 𠨄
+ 0x20a05: "\x02\x01\x02\x05\x01\x01\x02\x05\x03\x05\x04\x01\x05", // 𠨅
+ 0x20a06: "\x02\x01\x02\x05\x03\x05\x01\x02\x01\x01\x02\x05\x03\x04", // 𠨆
+ 0x20a07: "\x02\x01\x02\x05\x05\x04\x05\x04\x05\x04\x01\x02\x03\x04", // 𠨇
+ 0x20a08: "\x02\x01\x02\x05\x03\x05\x02\x05\x01\x01\x01\x02\x05\x03\x04", // 𠨈
+ 0x20a09: "\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03\x05\x04\x02\x04", // 𠨉
+ 0x20a0a: "\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01\x03\x05\x04\x02\x04", // 𠨊
+ 0x20a0b: "\x02\x01\x02\x05\x03\x04\x03\x04\x01\x02\x01\x02\x05\x03\x04\x03\x04\x01\x02\x01\x02\x05\x03\x04\x03\x04\x01", // 𠨋
+ 0x20a0c: "\x02\x01\x02\x05\x03\x05\x04\x01\x02\x03\x04\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 𠨌
+ 0x20a0d: "\x05\x03\x05\x02", // 𠨍
+ 0x20a0e: "\x05\x05\x05\x05", // 𠨎
+ 0x20a0f: "\x05\x04\x05\x02", // 𠨏
+ 0x20a10: "\x01\x05\x05\x02", // 𠨐
+ 0x20a11: "\x04\x01\x05\x05\x02", // 𠨑
+ 0x20a12: "\x01\x05\x01\x05\x05\x02", // 𠨒
+ 0x20a13: "\x05\x02\x01\x05\x05\x02\x01\x05", // 𠨓
+ 0x20a14: "\x01\x02\x02\x01\x05\x01\x01", // 𠨔
+ 0x20a15: "\x05\x05\x05\x05\x05\x05", // 𠨕
+ 0x20a16: "\x05\x02\x04\x05\x02\x04", // 𠨖
+ 0x20a17: "\x03\x03\x01\x05\x05\x04", // 𠨗
+ 0x20a18: "\x04\x05\x04\x03\x04\x05\x02", // 𠨘
+ 0x20a19: "\x04\x05\x01\x02\x01\x05\x04\x05\x02", // 𠨙
+ 0x20a1a: "\x03\x04\x01\x03\x02\x05\x02\x05\x02", // 𠨚
+ 0x20a1b: "\x04\x01\x05\x04\x05\x04\x04\x05\x02", // 𠨛
+ 0x20a1c: "\x03\x05\x01\x03\x05\x05\x01\x03\x05", // 𠨜
+ 0x20a1d: "\x03\x05\x01\x04\x05\x04\x04\x05\x02", // 𠨝
+ 0x20a1e: "\x05\x03\x05\x01\x01\x05\x04\x05\x02", // 𠨞
+ 0x20a1f: "\x03\x04\x03\x01\x02\x03\x04\x01\x03\x04\x05\x05", // 𠨟
+ 0x20a20: "\x05\x01\x01\x05\x04\x05\x02\x03\x05\x04", // 𠨠
+ 0x20a21: "\x05\x02\x01\x03\x01\x02\x01\x03\x05\x03\x05\x02", // 𠨡
+ 0x20a22: "\x03\x05\x01\x03\x05\x05\x05\x04\x03\x05\x03\x05\x04", // 𠨢
+ 0x20a23: "\x03\x05\x03\x05\x02\x01\x02\x01\x05\x05\x01\x02\x01", // 𠨣
+ 0x20a24: "\x02\x05\x02\x02\x05\x02\x02\x05\x02\x03\x04\x05\x05", // 𠨤
+ 0x20a25: "\x03\x05\x03\x01\x02\x02\x01\x01\x01\x03\x05\x03\x05\x02", // 𠨥
+ 0x20a26: "\x01\x03\x02\x05\x01\x01\x04\x05\x03\x05\x01\x02\x01\x05\x04\x05\x02", // 𠨦
+ 0x20a27: "\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x01\x03\x04\x05\x05", // 𠨧
+ 0x20a28: "\x03\x02\x01\x01\x03\x02\x05\x01\x05\x01\x05\x01\x01\x01\x03\x04\x05\x05", // 𠨨
+ 0x20a29: "\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x01\x03\x04\x05\x05", // 𠨩
+ 0x20a2a: "\x03\x05\x01\x03\x05\x05\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 𠨪
+ 0x20a2b: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x03\x05\x04\x03\x05\x02\x04", // 𠨫
+ 0x20a2c: "\x03\x03\x03\x05", // 𠨬
+ 0x20a2d: "\x01\x03\x01\x01\x02", // 𠨭
+ 0x20a2e: "\x01\x03\x05\x01\x04", // 𠨮
+ 0x20a2f: "\x01\x03\x05\x02\x01", // 𠨯
+ 0x20a30: "\x01\x03\x05\x01\x05", // 𠨰
+ 0x20a31: "\x01\x03\x05\x02\x05", // 𠨱
+ 0x20a32: "\x05\x02\x02\x01\x03", // 𠨲
+ 0x20a33: "\x01\x03\x05\x02\x04", // 𠨳
+ 0x20a34: "\x01\x03\x03\x04\x03\x02", // 𠨴
+ 0x20a35: "\x01\x03\x01\x01\x01\x02", // 𠨵
+ 0x20a36: "\x01\x03\x01\x01\x03\x04", // 𠨶
+ 0x20a37: "\x01\x03\x01\x02\x05\x05", // 𠨷
+ 0x20a38: "\x01\x03\x03\x05\x03\x04", // 𠨸
+ 0x20a39: "\x01\x03\x01\x03\x05\x04", // 𠨹
+ 0x20a3a: "\x01\x03\x03\x01\x01\x02", // 𠨺
+ 0x20a3b: "\x01\x03\x03\x05\x05\x04", // 𠨻
+ 0x20a3c: "\x01\x03\x01\x01\x05\x02", // 𠨼
+ 0x20a3d: "\x01\x03\x01\x05\x01\x05", // 𠨽
+ 0x20a3e: "\x01\x03\x03\x01\x01\x02", // 𠨾
+ 0x20a3f: "\x01\x03\x03\x05\x01\x05", // 𠨿
+ 0x20a40: "\x01\x03\x05\x02\x05\x02\x02", // 𠩀
+ 0x20a41: "\x01\x03\x03\x05\x04\x04\x04", // 𠩁
+ 0x20a42: "\x01\x03\x01\x02\x01\x05\x04", // 𠩂
+ 0x20a43: "\x05\x02\x02\x05\x02\x01\x03", // 𠩃
+ 0x20a44: "\x01\x03\x04\x03\x03\x01\x02", // 𠩄
+ 0x20a45: "\x01\x03\x01\x05\x05\x04", // 𠩅
+ 0x20a46: "\x01\x03\x02\x01\x02\x01\x03\x05", // 𠩆
+ 0x20a47: "\x01\x03\x03\x05\x03\x03\x03", // 𠩇
+ 0x20a48: "\x01\x03\x04\x01\x01\x02\x01", // 𠩈
+ 0x20a49: "\x01\x03\x05\x02\x02\x05\x02", // 𠩉
+ 0x20a4a: "\x01\x03\x01\x05\x02\x05\x01\x01", // 𠩊
+ 0x20a4b: "\x01\x03\x04\x03\x01\x05\x02\x03", // 𠩋
+ 0x20a4c: "\x01\x03\x02\x05\x03\x03\x04\x01", // 𠩌
+ 0x20a4d: "\x01\x03\x02\x01\x02\x01\x05\x04", // 𠩍
+ 0x20a4e: "\x01\x03\x03\x01\x02\x01\x01\x01", // 𠩎
+ 0x20a4f: "\x01\x03\x02\x01\x01\x02\x03\x04", // 𠩏
+ 0x20a50: "\x01\x03\x01\x01\x01\x05\x03\x04", // 𠩐
+ 0x20a51: "\x01\x03\x05\x01\x01\x03\x03\x05", // 𠩑
+ 0x20a52: "\x01\x03\x02\x05\x01\x01\x05\x04", // 𠩒
+ 0x20a53: "\x01\x03\x03\x04\x01\x05\x03\x04", // 𠩓
+ 0x20a54: "\x01\x03\x04\x03\x03\x04\x03\x05", // 𠩔
+ 0x20a55: "\x01\x03\x04\x03\x01\x02\x03\x04", // 𠩕
+ 0x20a56: "\x04\x03\x01\x03\x05\x01\x01\x02", // 𠩖
+ 0x20a57: "\x01\x03\x04\x04\x01\x03\x05\x03\x04", // 𠩗
+ 0x20a58: "\x01\x03\x01\x03\x04\x03\x04\x03\x04", // 𠩘
+ 0x20a59: "\x01\x03\x03\x01\x02\x01\x05\x03\x04", // 𠩙
+ 0x20a5a: "\x01\x03\x01\x02\x05\x03\x05\x01\x01", // 𠩚
+ 0x20a5b: "\x01\x03\x02\x05\x03\x04\x03\x04\x01", // 𠩛
+ 0x20a5c: "\x01\x03\x03\x04\x03\x04\x01\x02\x01", // 𠩜
+ 0x20a5d: "\x01\x03\x01\x02\x01\x04\x01\x05\x03", // 𠩝
+ 0x20a5e: "\x01\x03\x03\x05\x01\x03\x05\x02\x01", // 𠩞
+ 0x20a5f: "\x01\x03\x01\x02\x03\x04\x03\x04\x01", // 𠩟
+ 0x20a60: "\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𠩠
+ 0x20a61: "\x01\x03\x03\x02\x03\x02\x05\x01\x01", // 𠩡
+ 0x20a62: "\x01\x03\x03\x01\x02\x01\x05\x04", // 𠩢
+ 0x20a63: "\x01\x03\x03\x04\x02\x05\x01\x03\x05", // 𠩣
+ 0x20a64: "\x01\x03\x02\x05\x01\x01\x02\x03\x04", // 𠩤
+ 0x20a65: "\x01\x03\x02\x05\x01\x01\x01\x02\x01", // 𠩥
+ 0x20a66: "\x01\x03\x04\x04\x02\x03\x05\x03\x04", // 𠩦
+ 0x20a67: "\x01\x03\x03\x04\x01\x05\x02\x01\x02\x01", // 𠩧
+ 0x20a68: "\x01\x03\x05\x03\x01\x05\x04\x05\x02\x01", // 𠩨
+ 0x20a69: "\x01\x03\x02\x05\x01\x01\x05\x01\x03\x04", // 𠩩
+ 0x20a6a: "\x01\x03\x01\x02\x05\x02\x03\x04\x02\x02", // 𠩪
+ 0x20a6b: "\x01\x03\x03\x02\x01\x05\x01\x01\x03\x05", // 𠩫
+ 0x20a6c: "\x01\x03\x01\x03\x04\x03\x04\x02\x03\x04", // 𠩬
+ 0x20a6d: "\x01\x03\x04\x01\x02\x05\x01\x05\x02\x01", // 𠩭
+ 0x20a6e: "\x01\x03\x01\x03\x03\x02\x05\x01\x01\x01", // 𠩮
+ 0x20a6f: "\x01\x03\x05\x04\x03\x02\x05\x01\x01\x02", // 𠩯
+ 0x20a70: "\x01\x03\x02\x05\x01\x02\x05\x01\x01\x02", // 𠩰
+ 0x20a71: "\x01\x03\x01\x02\x03\x04\x03\x05\x03\x04", // 𠩱
+ 0x20a72: "\x01\x03\x03\x02\x05\x01\x01\x03\x01\x02", // 𠩲
+ 0x20a73: "\x01\x03\x02\x01\x05\x03\x01\x05\x01\x05", // 𠩳
+ 0x20a74: "\x01\x03\x03\x02\x05\x01\x01\x03\x05\x04", // 𠩴
+ 0x20a75: "\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04", // 𠩵
+ 0x20a76: "\x01\x03\x02\x05\x01\x02\x01\x04\x01\x02", // 𠩶
+ 0x20a77: "\x01\x03\x02\x05\x01\x02\x01\x03\x01\x02", // 𠩷
+ 0x20a78: "\x01\x03\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𠩸
+ 0x20a79: "\x01\x03\x04\x04\x05\x04\x03\x03\x04\x05\x04", // 𠩹
+ 0x20a7a: "\x01\x01\x02\x03\x04\x03\x01\x03\x04\x01\x03", // 𠩺
+ 0x20a7b: "\x01\x03\x03\x02\x01\x01\x01\x03\x05\x05\x04", // 𠩻
+ 0x20a7c: "\x01\x03\x01\x01\x02\x03\x04\x03\x05\x03\x04", // 𠩼
+ 0x20a7d: "\x01\x03\x01\x05\x04\x03\x01\x02\x03\x04\x01", // 𠩽
+ 0x20a7e: "\x01\x03\x03\x01\x02\x03\x04\x04\x03\x03\x04", // 𠩾
+ 0x20a7f: "\x01\x03\x02\x05\x01\x01\x01\x02\x02\x01\x02", // 𠩿
+ 0x20a80: "\x01\x03\x02\x05\x01\x01\x02\x05\x01\x01\x02", // 𠪀
+ 0x20a81: "\x01\x03\x03\x01\x02\x03\x04\x03\x05\x03\x04", // 𠪁
+ 0x20a82: "\x01\x03\x04\x05\x01\x03\x02\x05\x01\x02\x02", // 𠪂
+ 0x20a83: "\x01\x03\x05\x02\x01\x03\x02\x05\x01\x01\x01", // 𠪃
+ 0x20a84: "\x01\x03\x01\x02\x01\x02\x02\x05\x01\x02\x01", // 𠪄
+ 0x20a85: "\x01\x03\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 𠪅
+ 0x20a86: "\x01\x03\x01\x02\x01\x01\x02\x01\x01\x02\x04", // 𠪆
+ 0x20a87: "\x01\x03\x03\x02\x01\x01\x05\x01\x01\x02\x05\x04", // 𠪇
+ 0x20a88: "\x01\x03\x03\x04\x01\x02\x05\x01\x02\x01\x02\x01", // 𠪈
+ 0x20a89: "\x01\x03\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01", // 𠪉
+ 0x20a8a: "\x01\x03\x03\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 𠪊
+ 0x20a8b: "\x01\x03\x02\x05\x01\x01\x02\x05\x01\x05\x02\x02", // 𠪋
+ 0x20a8c: "\x01\x03\x04\x01\x03\x02\x03\x04\x04\x03\x03\x04", // 𠪌
+ 0x20a8d: "\x01\x03\x03\x03\x02\x05\x03\x02\x05\x04\x05\x05", // 𠪍
+ 0x20a8e: "\x01\x03\x01\x03\x04\x04\x03\x02\x05\x01\x01\x05", // 𠪎
+ 0x20a8f: "\x01\x03\x03\x03\x03\x02\x05\x01\x01\x05\x03\x04", // 𠪏
+ 0x20a90: "\x01\x03\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 𠪐
+ 0x20a91: "\x01\x03\x01\x02\x01\x03\x05\x01\x02\x01\x03\x05\x04", // 𠪑
+ 0x20a92: "\x01\x03\x02\x05\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 𠪒
+ 0x20a93: "\x01\x03\x05\x03\x04\x05\x04\x05\x05\x04\x02\x03\x04", // 𠪓
+ 0x20a94: "\x01\x03\x03\x04\x04\x03\x01\x02\x02\x05\x01\x05\x04", // 𠪔
+ 0x20a95: "\x01\x02\x02\x04\x03\x01\x03\x05\x01\x02\x02\x03\x04", // 𠪕
+ 0x20a96: "\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x01", // 𠪖
+ 0x20a97: "\x01\x03\x04\x01\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 𠪗
+ 0x20a98: "\x01\x03\x05\x01\x01\x03\x05\x01\x01\x03\x05\x05\x04", // 𠪘
+ 0x20a99: "\x01\x03\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 𠪙
+ 0x20a9a: "\x01\x03\x01\x02\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 𠪚
+ 0x20a9b: "\x01\x03\x01\x02\x02\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 𠪛
+ 0x20a9c: "\x01\x03\x01\x02\x01\x02\x03\x04\x01\x01\x02\x04\x03\x01", // 𠪜
+ 0x20a9d: "\x01\x03\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x03\x04", // 𠪝
+ 0x20a9e: "\x01\x03\x03\x04\x03\x04\x03\x04\x03\x04\x02\x05\x01\x01", // 𠪞
+ 0x20a9f: "\x01\x03\x05\x01\x01\x05\x03\x04\x03\x01\x01\x02\x05\x02", // 𠪟
+ 0x20aa0: "\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x03\x05\x01\x01", // 𠪠
+ 0x20aa1: "\x01\x03\x05\x01\x03\x01\x02\x01\x03\x02\x05\x01\x01", // 𠪡
+ 0x20aa2: "\x01\x03\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x03\x04", // 𠪢
+ 0x20aa3: "\x01\x03\x01\x02\x02\x01\x02\x05\x01\x01\x03\x01\x03\x04", // 𠪣
+ 0x20aa4: "\x01\x03\x01\x02\x02\x01\x03\x04\x01\x02\x01\x01\x02\x01", // 𠪤
+ 0x20aa5: "\x01\x03\x03\x02\x05\x01\x01\x02\x03\x04\x02\x05\x03\x04", // 𠪥
+ 0x20aa6: "\x01\x03\x03\x04\x01\x02\x05\x01\x03\x01\x01\x02\x05\x02", // 𠪦
+ 0x20aa7: "\x01\x03\x05\x02\x01\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 𠪧
+ 0x20aa8: "\x01\x03\x02\x05\x01\x01\x02\x01\x01\x03\x04\x01\x02\x01", // 𠪨
+ 0x20aa9: "\x01\x03\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𠪩
+ 0x20aaa: "\x01\x03\x03\x03\x04\x03\x04\x03\x04\x03\x04\x01\x02\x01", // 𠪪
+ 0x20aab: "\x01\x03\x01\x02\x02\x05\x01\x01\x01\x05\x03\x01\x03\x04", // 𠪫
+ 0x20aac: "\x01\x03\x05\x01\x02\x02\x01\x01\x01\x02\x01\x05\x04", // 𠪬
+ 0x20aad: "\x01\x03\x05\x02\x02\x05\x02\x04\x01\x05\x03\x03\x01\x03\x04", // 𠪭
+ 0x20aae: "\x01\x03\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 𠪮
+ 0x20aaf: "\x01\x03\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 𠪯
+ 0x20ab0: "\x01\x03\x03\x02\x05\x01\x01\x02\x05\x03\x04\x04\x05\x04\x04", // 𠪰
+ 0x20ab1: "\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x05\x04\x04", // 𠪱
+ 0x20ab2: "\x01\x03\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01\x05\x03", // 𠪲
+ 0x20ab3: "\x01\x03\x02\x05\x02\x02\x01\x03\x02\x01\x01\x05\x05\x01\x01", // 𠪳
+ 0x20ab4: "\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x05\x02\x01\x03\x04", // 𠪴
+ 0x20ab5: "\x01\x03\x01\x02\x02\x01\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𠪵
+ 0x20ab6: "\x01\x03\x01\x03\x05\x04\x03\x05\x01\x02\x05\x01\x04\x03\x01", // 𠪶
+ 0x20ab7: "\x01\x03\x02\x05\x01\x01\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 𠪷
+ 0x20ab8: "\x01\x03\x01\x02\x02\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 𠪸
+ 0x20ab9: "\x01\x03\x01\x02\x05\x02\x02\x01\x04\x05\x01\x05\x05\x04", // 𠪹
+ 0x20aba: "\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x03\x05\x05\x03", // 𠪺
+ 0x20abb: "\x03\x03\x05\x02\x01\x05\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 𠪻
+ 0x20abc: "\x01\x03\x01\x02\x01\x04\x03\x01\x01\x02\x05\x01\x01\x05\x03\x04", // 𠪼
+ 0x20abd: "\x01\x03\x04\x01\x04\x03\x01\x02\x05\x01\x05\x01\x01\x03\x05\x04", // 𠪽
+ 0x20abe: "\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x04\x05\x04\x04", // 𠪾
+ 0x20abf: "\x01\x03\x01\x02\x01\x02\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x04", // 𠪿
+ 0x20ac0: "\x01\x03\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x01\x02\x01", // 𠫀
+ 0x20ac1: "\x01\x03\x01\x01\x02\x01\x01\x01\x02\x01\x01\x02\x03\x04\x02\x05\x01\x01", // 𠫁
+ 0x20ac2: "\x01\x03\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 𠫂
+ 0x20ac3: "\x01\x03\x01\x02\x01\x04\x03\x01\x01\x02\x04\x05\x03\x04\x01\x02\x03\x04", // 𠫃
+ 0x20ac4: "\x01\x03\x04\x03\x01\x01\x01\x02\x04\x03\x02\x05\x01\x03\x04\x04\x05\x04", // 𠫄
+ 0x20ac5: "\x01\x02\x02\x05\x04\x02\x05\x01\x01\x03\x02\x05\x01\x01\x05\x02\x01", // 𠫅
+ 0x20ac6: "\x01\x03\x02\x05\x01\x01\x05\x02\x01\x01\x02\x02\x05\x04\x02\x05\x01", // 𠫆
+ 0x20ac7: "\x01\x03\x01\x02\x02\x01\x01\x01\x01\x03\x02\x05\x02\x02\x01\x01\x04\x05\x04\x04", // 𠫇
+ 0x20ac8: "\x01\x03\x05\x05\x04\x04\x04\x04\x04\x03\x03\x04\x04\x03\x03\x04\x03\x01\x01\x05", // 𠫈
+ 0x20ac9: "\x01\x03\x01\x05\x02\x05\x01\x01\x01\x05\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𠫉
+ 0x20aca: "\x01\x03\x05\x01\x02\x02\x01\x01\x01\x01\x03\x02\x05\x02\x02\x01\x01\x04\x05\x04\x04", // 𠫊
+ 0x20acb: "\x01\x03\x01\x02\x02\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x02\x03\x04", // 𠫋
+ 0x20acc: "\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01\x01\x02\x01\x02\x03\x05\x05\x04", // 𠫌
+ 0x20acd: "\x01\x03\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𠫍
+ 0x20ace: "\x01\x03\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x01\x03\x04\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𠫎
+ 0x20acf: "\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01\x04\x01\x03\x04\x03\x04\x01\x02", // 𠫏
+ 0x20ad0: "\x01\x03\x03\x02\x05\x01\x01\x02\x05\x03\x04\x03\x02\x05\x01\x01\x02\x05\x03\x04\x03\x02\x05\x01\x01\x02\x05\x03\x04", // 𠫐
+ 0x20ad1: "\x01\x03\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𠫑
+ 0x20ad2: "\x01\x03\x03\x02\x05\x01\x01\x02\x05\x03\x04\x01\x03\x03\x02\x05\x01\x01\x02\x05\x03\x04\x01\x03\x03\x02\x05\x01\x01\x02\x05\x03\x04", // 𠫒
+ 0x20ad3: "\x01\x05\x04", // 𠫓
+ 0x20ad4: "\x01\x05\x04", // 𠫔
+ 0x20ad5: "\x05\x05\x04", // 𠫕
+ 0x20ad6: "\x05\x04\x05", // 𠫖
+ 0x20ad7: "\x03\x05\x05\x04", // 𠫗
+ 0x20ad8: "\x05\x04\x01\x02", // 𠫘
+ 0x20ad9: "\x05\x04\x03\x04\x05", // 𠫙
+ 0x20ada: "\x05\x04\x01\x01\x02", // 𠫚
+ 0x20adb: "\x05\x04\x01\x05\x04", // 𠫛
+ 0x20adc: "\x05\x04\x05\x05\x03", // 𠫜
+ 0x20add: "\x05\x04\x03\x02\x05", // 𠫝
+ 0x20ade: "\x05\x04\x05\x04\x03\x05", // 𠫞
+ 0x20adf: "\x03\x01\x02\x01\x05\x04", // 𠫟
+ 0x20ae0: "\x05\x04\x03\x05\x03\x05", // 𠫠
+ 0x20ae1: "\x05\x04\x01\x02\x03\x04", // 𠫡
+ 0x20ae2: "\x01\x01\x01\x02\x05\x04", // 𠫢
+ 0x20ae3: "\x05\x04\x02\x05\x03\x04", // 𠫣
+ 0x20ae4: "\x03\x04\x01\x03\x05\x04", // 𠫤
+ 0x20ae5: "\x03\x04\x03\x04\x05\x04", // 𠫥
+ 0x20ae6: "\x05\x04\x04\x05\x02\x05\x02", // 𠫦
+ 0x20ae7: "\x05\x04\x01\x02\x05\x03\x04", // 𠫧
+ 0x20ae8: "\x05\x04\x05\x04\x03\x05\x04", // 𠫨
+ 0x20ae9: "\x05\x04\x02\x05\x01\x02\x03\x04", // 𠫩
+ 0x20aea: "\x05\x04\x02\x05\x01\x01\x03\x04", // 𠫪
+ 0x20aeb: "\x05\x04\x05\x04\x05\x04\x01\x05", // 𠫫
+ 0x20aec: "\x05\x04\x05\x04\x05\x04\x05\x04", // 𠫬
+ 0x20aed: "\x05\x04\x01\x03\x04\x02\x03\x04", // 𠫭
+ 0x20aee: "\x05\x04\x02\x05\x01\x01\x03\x05", // 𠫮
+ 0x20aef: "\x05\x04\x05\x04\x05\x04\x03\x04", // 𠫯
+ 0x20af0: "\x05\x04\x05\x04\x05\x04\x01\x01\x01", // 𠫰
+ 0x20af1: "\x05\x04\x05\x04\x05\x04\x03\x02\x05", // 𠫱
+ 0x20af2: "\x03\x04\x01\x03\x05\x04\x05\x01\x02", // 𠫲
+ 0x20af3: "\x01\x02\x01\x05\x04\x03\x05\x05\x04", // 𠫳
+ 0x20af4: "\x01\x02\x01\x05\x04\x02\x03\x04\x03", // 𠫴
+ 0x20af5: "\x05\x04\x01\x03\x04\x02\x04\x04\x04", // 𠫵
+ 0x20af6: "\x05\x04\x02\x05\x01\x01\x02\x01\x01", // 𠫶
+ 0x20af7: "\x03\x04\x01\x03\x05\x04\x03\x05\x04", // 𠫷
+ 0x20af8: "\x05\x04\x02\x05\x04\x02\x05\x04\x02", // 𠫸
+ 0x20af9: "\x05\x04\x05\x04\x02\x05\x01\x01\x01\x02", // 𠫹
+ 0x20afa: "\x05\x04\x02\x05\x01\x02\x05\x01\x01\x02", // 𠫺
+ 0x20afb: "\x05\x04\x01\x03\x04\x02\x05\x02\x01\x01", // 𠫻
+ 0x20afc: "\x05\x04\x05\x04\x05\x04\x03\x02\x01\x01", // 𠫼
+ 0x20afd: "\x05\x04\x01\x03\x04\x01\x01\x01\x01\x01\x01", // 𠫽
+ 0x20afe: "\x01\x02\x01\x05\x04\x03\x05\x04\x03\x05\x04", // 𠫾
+ 0x20aff: "\x05\x04\x01\x03\x04\x01\x02\x05\x01\x01\x03\x04", // 𠫿
+ 0x20b00: "\x05\x04\x05\x04\x02\x05\x01\x02\x01\x01\x05\x04", // 𠬀
+ 0x20b01: "\x05\x04\x05\x04\x05\x04\x01\x03\x04\x01\x02\x01", // 𠬁
+ 0x20b02: "\x05\x04\x05\x04\x04\x05\x03\x05\x04\x01\x05\x02", // 𠬂
+ 0x20b03: "\x01\x02\x01\x05\x04\x01\x02\x05\x01\x01\x02\x04", // 𠬃
+ 0x20b04: "\x05\x04\x05\x04\x05\x04\x03\x05\x04\x01\x01\x01", // 𠬄
+ 0x20b05: "\x05\x04\x05\x04\x05\x04\x01\x03\x04\x01\x01\x01", // 𠬅
+ 0x20b06: "\x05\x04\x05\x04\x02\x03\x04\x05\x05\x04\x02\x03\x04", // 𠬆
+ 0x20b07: "\x01\x02\x01\x05\x04\x04\x01\x02\x05\x01\x02\x03\x04", // 𠬇
+ 0x20b08: "\x01\x02\x01\x05\x04\x03\x02\x05\x01\x01\x03\x01\x02", // 𠬈
+ 0x20b09: "\x01\x02\x01\x05\x04\x03\x04\x04\x03\x05\x01\x01\x02", // 𠬉
+ 0x20b0a: "\x05\x04\x04\x04\x04\x05\x04\x01\x03\x04\x03\x03\x03", // 𠬊
+ 0x20b0b: "\x05\x04\x05\x04\x02\x05\x01\x01\x03\x01\x01\x02\x01", // 𠬋
+ 0x20b0c: "\x04\x03\x01\x01\x03\x02\x05\x04\x03\x05\x03\x05\x04", // 𠬌
+ 0x20b0d: "\x05\x04\x03\x04\x03\x05\x04\x03\x05\x02\x05\x01\x03\x05", // 𠬍
+ 0x20b0e: "\x05\x04\x05\x04\x05\x04\x01\x05\x01\x01\x02\x05\x03\x01", // 𠬎
+ 0x20b0f: "\x05\x04\x03\x01\x01\x02\x02\x05\x04\x03\x01\x04\x01\x05", // 𠬏
+ 0x20b10: "\x05\x04\x05\x04\x05\x04\x03\x02\x01\x01\x03\x05\x04\x01", // 𠬐
+ 0x20b11: "\x01\x02\x01\x05\x04\x01\x02\x01\x05\x04\x01\x02\x01\x05\x04", // 𠬑
+ 0x20b12: "\x01\x02\x01\x05\x04\x02\x05\x05\x04\x05\x02\x05\x01\x01", // 𠬒
+ 0x20b13: "\x05\x04\x05\x04\x05\x04\x03\x04\x02\x03\x04\x02\x05\x01\x03\x05", // 𠬓
+ 0x20b14: "\x05\x04\x05\x04\x05\x04\x02\x05\x01\x01\x01\x05\x01\x03\x02\x01\x02\x05", // 𠬔
+ 0x20b15: "\x01\x02\x01\x05\x04\x04\x05\x02\x03\x04\x01\x02\x05\x01\x01\x02\x04", // 𠬕
+ 0x20b16: "\x01\x02\x01\x05\x04\x04\x05\x02\x03\x04\x01\x02\x05\x01\x01\x02\x04", // 𠬖
+ 0x20b17: "\x01\x03\x05\x04\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01\x05\x03\x04", // 𠬗
+ 0x20b18: "\x05\x04\x05\x04\x05\x04\x03\x02\x01\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𠬘
+ 0x20b19: "\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03\x01\x02\x05\x02\x03\x04\x03\x04", // 𠬙
+ 0x20b1a: "\x03\x05\x05\x04", // 𠬚
+ 0x20b1b: "\x05\x03\x05\x04", // 𠬛
+ 0x20b1c: "\x05\x04\x05\x05", // 𠬜
+ 0x20b1d: "\x05\x02\x05\x04", // 𠬝
+ 0x20b1e: "\x05\x03\x05\x04", // 𠬞
+ 0x20b1f: "\x05\x04\x05\x04", // 𠬟
+ 0x20b20: "\x04\x03\x05\x04", // 𠬠
+ 0x20b21: "\x01\x03\x01\x05\x04", // 𠬡
+ 0x20b22: "\x05\x02\x02\x05\x04", // 𠬢
+ 0x20b23: "\x01\x05\x05\x04", // 𠬣
+ 0x20b24: "\x05\x04\x01\x01\x02", // 𠬤
+ 0x20b25: "\x02\x05\x02\x05\x04", // 𠬥
+ 0x20b26: "\x03\x02\x05\x05\x04", // 𠬦
+ 0x20b27: "\x04\x01\x02\x05\x04", // 𠬧
+ 0x20b28: "\x05\x02\x04\x05\x04", // 𠬨
+ 0x20b29: "\x05\x02\x01\x03\x05\x04", // 𠬩
+ 0x20b2a: "\x03\x04\x04\x03\x05\x04", // 𠬪
+ 0x20b2b: "\x05\x05\x05\x01\x05\x04", // 𠬫
+ 0x20b2c: "\x03\x04\x03\x05\x05\x04", // 𠬬
+ 0x20b2d: "\x05\x04\x01\x03\x05\x04", // 𠬭
+ 0x20b2e: "\x05\x02\x01\x03\x05\x04", // 𠬮
+ 0x20b2f: "\x05\x04\x05\x05\x04\x02", // 𠬯
+ 0x20b30: "\x03\x04\x05\x03\x05\x04", // 𠬰
+ 0x20b31: "\x02\x05\x01\x05\x03\x05\x04", // 𠬱
+ 0x20b32: "\x01\x03\x04\x04\x03\x05\x04", // 𠬲
+ 0x20b33: "\x05\x03\x05\x05\x04\x05\x04", // 𠬳
+ 0x20b34: "\x05\x04\x04\x03\x01\x01\x01", // 𠬴
+ 0x20b35: "\x04\x03\x01\x02\x03\x05\x04", // 𠬵
+ 0x20b36: "\x05\x01\x01\x04\x05\x05\x04", // 𠬶
+ 0x20b37: "\x01\x03\x05\x01\x03\x05\x04", // 𠬷
+ 0x20b38: "\x02\x05\x05\x01\x05\x05\x04", // 𠬸
+ 0x20b39: "\x05\x04\x05\x05\x04\x02\x03\x04", // 𠬹
+ 0x20b3a: "\x05\x04\x05\x04\x01\x03\x01\x02", // 𠬺
+ 0x20b3b: "\x03\x01\x01\x02\x05\x03\x05\x04", // 𠬻
+ 0x20b3c: "\x01\x01\x02\x03\x01\x03\x05\x04", // 𠬼
+ 0x20b3d: "\x05\x04\x01\x01\x01\x02\x03\x04", // 𠬽
+ 0x20b3e: "\x05\x04\x05\x05\x04\x05\x05\x04", // 𠬾
+ 0x20b3f: "\x03\x02\x01\x02\x01\x05\x03\x05\x04", // 𠬿
+ 0x20b40: "\x05\x04\x05\x04\x05\x04\x02\x05\x01", // 𠭀
+ 0x20b41: "\x02\x05\x01\x01\x01\x03\x04\x05\x04", // 𠭁
+ 0x20b42: "\x05\x04\x01\x02\x01\x03\x05\x02\x01", // 𠭂
+ 0x20b43: "\x01\x02\x02\x05\x01\x02\x05\x05\x04", // 𠭃
+ 0x20b44: "\x01\x02\x05\x01\x02\x03\x04\x05\x04", // 𠭄
+ 0x20b45: "\x01\x03\x05\x04\x01\x02\x01\x02\x01", // 𠭅
+ 0x20b46: "\x05\x02\x02\x01\x02\x05\x01\x05\x04", // 𠭆
+ 0x20b47: "\x04\x01\x02\x05\x01\x02\x01\x05\x04", // 𠭇
+ 0x20b48: "\x05\x01\x02\x05\x01\x04\x05\x05\x04", // 𠭈
+ 0x20b49: "\x02\x01\x02\x05\x01\x01\x02\x05\x04", // 𠭉
+ 0x20b4a: "\x03\x02\x01\x01\x01\x05\x01\x01\x05\x04", // 𠭊
+ 0x20b4b: "\x05\x04\x05\x04\x05\x04\x05\x04\x05\x05", // 𠭋
+ 0x20b4c: "\x05\x04\x05\x04\x05\x04\x01\x02\x02\x01\x03\x05", // 𠭌
+ 0x20b4d: "\x01\x04\x05\x02\x04\x01\x03\x04\x05\x04", // 𠭍
+ 0x20b4e: "\x05\x04\x02\x05\x01\x05\x04\x02\x05\x01", // 𠭎
+ 0x20b4f: "\x02\x05\x02\x01\x02\x05\x01\x02\x05\x04", // 𠭏
+ 0x20b50: "\x01\x02\x01\x05\x04\x03\x02\x01\x02\x01", // 𠭐
+ 0x20b51: "\x05\x04\x01\x03\x04\x01\x02\x05\x01\x02", // 𠭑
+ 0x20b52: "\x02\x05\x01\x01\x02\x05\x01\x01\x05\x04", // 𠭒
+ 0x20b53: "\x02\x01\x02\x01\x02\x04\x03\x01\x05\x04", // 𠭓
+ 0x20b54: "\x03\x02\x05\x01\x05\x01\x01\x03\x05\x04", // 𠭔
+ 0x20b55: "\x01\x03\x04\x03\x04\x01\x02\x01\x05\x04", // 𠭕
+ 0x20b56: "\x03\x04\x04\x03\x01\x02\x02\x05\x01\x05\x04", // 𠭖
+ 0x20b57: "\x02\x01\x05\x03\x01\x01\x01\x03\x02\x05\x04", // 𠭗
+ 0x20b58: "\x02\x01\x03\x05\x04\x05\x04\x01\x01\x03\x02", // 𠭘
+ 0x20b59: "\x01\x05\x01\x02\x01\x03\x05\x01\x01\x05\x04", // 𠭙
+ 0x20b5a: "\x05\x04\x05\x04\x05\x04\x02\x05\x01\x05\x05", // 𠭚
+ 0x20b5b: "\x03\x02\x05\x03\x03\x04\x01\x05\x03\x05\x04", // 𠭛
+ 0x20b5c: "\x01\x05\x01\x02\x01\x02\x05\x01\x01\x05\x04", // 𠭜
+ 0x20b5d: "\x05\x01\x03\x05\x01\x03\x01\x03\x05\x04", // 𠭝
+ 0x20b5e: "\x05\x04\x05\x04\x05\x04\x02\x05\x01\x05\x02", // 𠭞
+ 0x20b5f: "\x03\x05\x04\x04\x04\x06\x05\x05\x04\x05\x04", // 𠭟
+ 0x20b60: "\x03\x05\x02\x05\x03\x05\x05\x01\x03\x05\x04", // 𠭠
+ 0x20b61: "\x03\x03\x04\x03\x04\x03\x04\x05\x03\x05\x04", // 𠭡
+ 0x20b62: "\x03\x05\x03\x05\x04\x05\x04\x01\x01\x03\x02", // 𠭢
+ 0x20b63: "\x05\x05\x01\x03\x05\x03\x03\x03\x04\x05\x04", // 𠭣
+ 0x20b64: "\x02\x05\x01\x03\x02\x05\x01\x03\x03\x05\x04", // 𠭤
+ 0x20b65: "\x05\x02\x02\x05\x02\x01\x01\x02\x03\x04\x05\x04", // 𠭥
+ 0x20b66: "\x03\x04\x03\x02\x01\x01\x05\x01\x01\x02\x05\x04", // 𠭦
+ 0x20b67: "\x03\x04\x04\x03\x01\x03\x04\x04\x01\x03\x05\x04", // 𠭧
+ 0x20b68: "\x05\x04\x05\x04\x05\x04\x01\x02\x02\x01\x03\x04", // 𠭨
+ 0x20b69: "\x01\x05\x04\x02\x05\x01\x01\x04\x05\x05\x04", // 𠭩
+ 0x20b6a: "\x01\x02\x02\x01\x01\x01\x03\x05\x01\x01\x05\x04", // 𠭪
+ 0x20b6b: "\x05\x04\x03\x05\x04\x05\x04\x01\x01\x02\x03\x04", // 𠭫
+ 0x20b6c: "\x05\x04\x03\x02\x05\x01\x01\x05\x04\x04\x04\x04", // 𠭬
+ 0x20b6d: "\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x05\x04", // 𠭭
+ 0x20b6e: "\x02\x01\x01\x03\x05\x04\x05\x04\x01\x01\x03\x02", // 𠭮
+ 0x20b6f: "\x02\x01\x05\x03\x01\x05\x02\x05\x01\x01\x01\x05\x04", // 𠭯
+ 0x20b70: "\x01\x01\x02\x03\x04\x03\x01\x03\x04\x01\x03\x05\x04", // 𠭰
+ 0x20b71: "\x01\x02\x05\x02\x02\x01\x03\x04\x01\x02\x01\x05\x04", // 𠭱
+ 0x20b72: "\x02\x05\x01\x01\x01\x03\x05\x03\x03\x03\x04\x05\x04", // 𠭲
+ 0x20b73: "\x04\x03\x01\x02\x05\x02\x03\x03\x03\x05\x04\x01\x01", // 𠭳
+ 0x20b74: "\x05\x04\x05\x04\x05\x04\x05\x04\x05\x02\x02\x05\x02", // 𠭴
+ 0x20b75: "\x05\x01\x05\x05\x01\x01\x05\x02\x05\x01\x05\x04", // 𠭵
+ 0x20b76: "\x04\x03\x01\x03\x05\x02\x02\x01\x05\x01\x03\x05\x04", // 𠭶
+ 0x20b77: "\x01\x02\x01\x03\x02\x03\x04\x03\x01\x03\x04\x05\x04", // 𠭷
+ 0x20b78: "\x02\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x05\x04", // 𠭸
+ 0x20b79: "\x02\x01\x02\x05\x01\x01\x01\x03\x04\x05\x04\x05\x04", // 𠭹
+ 0x20b7a: "\x05\x04\x05\x04\x01\x05\x03\x05\x04\x05\x04\x03\x04", // 𠭺
+ 0x20b7b: "\x04\x03\x01\x05\x02\x03\x05\x04\x03\x05\x01\x01\x02", // 𠭻
+ 0x20b7c: "\x02\x01\x01\x01\x05\x04\x05\x03\x05\x05\x01\x03\x05\x04", // 𠭼
+ 0x20b7d: "\x05\x04\x02\x05\x03\x04\x03\x05\x04\x02\x05\x02\x05\x02", // 𠭽
+ 0x20b7e: "\x05\x04\x03\x05\x02\x05\x02\x05\x04\x03\x05\x02\x05\x02", // 𠭾
+ 0x20b7f: "\x01\x03\x05\x03\x03\x02\x05\x01\x01\x02\x05\x02\x05\x04", // 𠭿
+ 0x20b80: "\x05\x04\x05\x04\x05\x04\x02\x05\x03\x05\x04\x02\x05\x01", // 𠮀
+ 0x20b81: "\x03\x04\x01\x02\x03\x05\x04\x02\x05\x02\x05\x05\x04", // 𠮁
+ 0x20b82: "\x01\x02\x02\x01\x03\x04\x02\x05\x03\x04\x01\x03\x05\x04", // 𠮂
+ 0x20b83: "\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x05\x04", // 𠮃
+ 0x20b84: "\x05\x04\x05\x04\x05\x04\x05\x04\x03\x04\x02\x05\x01\x03\x05", // 𠮄
+ 0x20b85: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x01\x02\x02\x05\x04", // 𠮅
+ 0x20b86: "\x05\x04\x05\x04\x02\x05\x01\x01\x01\x03\x04\x03\x01\x03\x04", // 𠮆
+ 0x20b87: "\x05\x04\x03\x05\x04\x02\x05\x02\x05\x04\x03\x05\x04\x02\x05\x02", // 𠮇
+ 0x20b88: "\x04\x05\x03\x01\x05\x03\x04\x03\x04\x02\x05\x01\x01\x01\x05\x04", // 𠮈
+ 0x20b89: "\x02\x01\x05\x03\x01\x03\x04\x03\x04\x02\x05\x01\x01\x01\x05\x04", // 𠮉
+ 0x20b8a: "\x02\x05\x01\x01\x01\x01\x02\x04\x01\x02\x02\x01\x01\x01\x05\x04", // 𠮊
+ 0x20b8b: "\x03\x01\x03\x04\x02\x01\x02\x01\x01\x02\x02\x01\x01\x01\x05\x04", // 𠮋
+ 0x20b8c: "\x05\x04\x05\x04\x05\x04\x05\x04\x03\x05\x03\x02\x01\x05\x01\x01", // 𠮌
+ 0x20b8d: "\x02\x05\x02\x01\x01\x02\x05\x02\x04\x04\x05\x04\x03\x03\x04\x05\x04", // 𠮍
+ 0x20b8e: "\x01\x02\x03\x04\x02\x05\x01\x03\x04\x02\x05\x01\x01\x05\x03\x05\x04", // 𠮎
+ 0x20b8f: "\x02\x01\x05\x03\x01\x05\x03\x04\x03\x04\x02\x05\x01\x01\x01\x05\x04", // 𠮏
+ 0x20b90: "\x05\x04\x05\x04\x05\x04\x05\x04\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01", // 𠮐
+ 0x20b91: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x04\x03\x01\x02\x03\x04\x05\x04", // 𠮑
+ 0x20b92: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x05\x04\x05\x04\x05\x04\x05\x04", // 𠮒
+ 0x20b93: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x05\x04", // 𠮓
+ 0x20b94: "\x05\x04\x01\x02\x05\x04\x01\x02\x05\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05", // 𠮔
+ 0x20b95: "\x01\x03\x02\x05\x01\x01\x04\x05\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x05\x04", // 𠮕
+ 0x20b96: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x05\x04\x05\x05", // 𠮖
+ 0x20b97: "\x03\x04\x04\x03\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x05\x04", // 𠮗
+ 0x20b98: "\x05\x04\x02\x05\x02\x02\x05\x01\x03\x02\x04\x02\x01\x01\x02\x05\x01\x02\x05\x01\x01\x05\x04", // 𠮘
+ 0x20b99: "\x02\x05\x01\x05", // 𠮙
+ 0x20b9a: "\x02\x05\x04\x01", // 𠮚
+ 0x20b9b: "\x01\x02\x05\x01", // 𠮛
+ 0x20b9c: "\x02\x05\x01\x05", // 𠮜
+ 0x20b9d: "\x02\x05\x01\x02", // 𠮝
+ 0x20b9e: "\x05\x02\x05\x01", // 𠮞
+ 0x20b9f: "\x02\x05\x01\x01\x05", // 𠮟
+ 0x20ba0: "\x02\x05\x01\x05\x03", // 𠮠
+ 0x20ba1: "\x02\x05\x01\x01\x01", // 𠮡
+ 0x20ba2: "\x05\x04\x02\x05\x01", // 𠮢
+ 0x20ba3: "\x03\x04\x02\x05\x01", // 𠮣
+ 0x20ba4: "\x02\x05\x01\x05\x05", // 𠮤
+ 0x20ba5: "\x03\x05\x02\x05\x01", // 𠮥
+ 0x20ba6: "\x04\x03\x02\x05\x01", // 𠮦
+ 0x20ba7: "\x02\x05\x01\x02\x02", // 𠮧
+ 0x20ba8: "\x02\x05\x01\x05\x03", // 𠮨
+ 0x20ba9: "\x02\x05\x01\x05\x02", // 𠮩
+ 0x20baa: "\x02\x05\x01\x05\x05", // 𠮪
+ 0x20bab: "\x03\x05\x04\x02\x05\x01", // 𠮫
+ 0x20bac: "\x02\x05\x01\x03\x05\x04", // 𠮬
+ 0x20bad: "\x02\x05\x01\x03\x05\x04", // 𠮭
+ 0x20bae: "\x03\x01\x03\x02\x05\x01", // 𠮮
+ 0x20baf: "\x05\x01\x05\x02\x05\x01", // 𠮯
+ 0x20bb0: "\x02\x05\x01\x05\x05\x05", // 𠮰
+ 0x20bb1: "\x02\x05\x01\x01\x01\x05", // 𠮱
+ 0x20bb2: "\x02\x05\x01\x01\x01\x05", // 𠮲
+ 0x20bb3: "\x02\x01\x01\x02\x05\x01", // 𠮳
+ 0x20bb4: "\x01\x02\x04\x02\x05\x01", // 𠮴
+ 0x20bb5: "\x02\x05\x01\x02\x01\x01", // 𠮵
+ 0x20bb6: "\x02\x05\x01\x03\x04\x02", // 𠮶
+ 0x20bb7: "\x01\x02\x01\x02\x05\x01", // 𠮷
+ 0x20bb8: "\x05\x04\x01\x02\x05\x01", // 𠮸
+ 0x20bb9: "\x02\x05\x01\x01\x02\x03", // 𠮹
+ 0x20bba: "\x02\x05\x01\x02\x03\x04", // 𠮺
+ 0x20bbb: "\x02\x05\x01\x03\x05\x04", // 𠮻
+ 0x20bbc: "\x02\x05\x01\x01\x02\x04", // 𠮼
+ 0x20bbd: "\x02\x05\x01\x01\x03\x02", // 𠮽
+ 0x20bbe: "\x02\x05\x01\x01\x03\x05", // 𠮾
+ 0x20bbf: "\x02\x05\x01\x02\x05\x02", // 𠮿
+ 0x20bc0: "\x02\x05\x01\x03\x02\x02", // 𠯀
+ 0x20bc1: "\x02\x05\x01\x04\x03\x04", // 𠯁
+ 0x20bc2: "\x02\x05\x01\x05\x02\x01", // 𠯂
+ 0x20bc3: "\x02\x05\x01\x05\x02\x02", // 𠯃
+ 0x20bc4: "\x02\x05\x01\x05\x03\x04", // 𠯄
+ 0x20bc5: "\x02\x05\x01\x01\x05\x04", // 𠯅
+ 0x20bc6: "\x02\x05\x01\x05\x03\x04", // 𠯆
+ 0x20bc7: "\x02\x05\x01\x05\x01\x05", // 𠯇
+ 0x20bc8: "\x02\x05\x01\x01\x03\x04", // 𠯈
+ 0x20bc9: "\x05\x03\x02\x05\x01\x01", // 𠯉
+ 0x20bca: "\x02\x05\x01\x01\x01\x02", // 𠯊
+ 0x20bcb: "\x02\x05\x01\x03\x05\x01\x05", // 𠯋
+ 0x20bcc: "\x03\x04\x01\x03\x02\x05\x01", // 𠯌
+ 0x20bcd: "\x02\x05\x01\x02\x05\x01\x01", // 𠯍
+ 0x20bce: "\x02\x05\x01\x05\x03\x01\x01", // 𠯎
+ 0x20bcf: "\x02\x05\x01\x03\x01\x01\x05", // 𠯏
+ 0x20bd0: "\x02\x05\x01\x02\x05\x01\x01", // 𠯐
+ 0x20bd1: "\x03\x05\x01\x05\x02\x05\x01", // 𠯑
+ 0x20bd2: "\x03\x02\x01\x05\x02\x05\x01", // 𠯒
+ 0x20bd3: "\x03\x03\x01\x02\x02\x05\x01", // 𠯓
+ 0x20bd4: "\x02\x05\x01\x01\x03\x05\x05", // 𠯔
+ 0x20bd5: "\x02\x05\x01\x01\x03\x05\x05", // 𠯕
+ 0x20bd6: "\x02\x05\x01\x03\x05\x01\x03", // 𠯖
+ 0x20bd7: "\x02\x05\x01\x01\x02\x05\x02", // 𠯗
+ 0x20bd8: "\x02\x05\x01\x01\x03\x05\x04", // 𠯘
+ 0x20bd9: "\x02\x05\x01\x02\x03\x04\x04", // 𠯙
+ 0x20bda: "\x02\x05\x01\x01\x03\x02\x05", // 𠯚
+ 0x20bdb: "\x01\x03\x01\x02\x02\x05\x01", // 𠯛
+ 0x20bdc: "\x02\x05\x01\x03\x05\x05\x04", // 𠯜
+ 0x20bdd: "\x02\x05\x01\x01\x05\x05\x04", // 𠯝
+ 0x20bde: "\x02\x05\x01\x01\x05\x05\x01", // 𠯞
+ 0x20bdf: "\x02\x05\x01\x02\x05\x03\x05", // 𠯟
+ 0x20be0: "\x02\x05\x01\x04\x03\x05\x04", // 𠯠
+ 0x20be1: "\x02\x05\x01\x02\x01\x01\x05", // 𠯡
+ 0x20be2: "\x02\x05\x01\x01\x03\x02\x02", // 𠯢
+ 0x20be3: "\x02\x05\x01\x04\x05\x04", // 𠯣
+ 0x20be4: "\x02\x05\x01\x01\x01\x03\x02", // 𠯤
+ 0x20be5: "\x02\x05\x01\x03\x05\x01\x02", // 𠯥
+ 0x20be6: "\x02\x05\x01\x01\x05\x05\x03", // 𠯦
+ 0x20be7: "\x02\x05\x01\x02\x05\x02\x01", // 𠯧
+ 0x20be8: "\x03\x05\x05\x03\x02\x05\x01", // 𠯨
+ 0x20be9: "\x02\x05\x01\x01\x02\x01\x05", // 𠯩
+ 0x20bea: "\x02\x05\x01\x01\x03\x05\x04", // 𠯪
+ 0x20beb: "\x02\x05\x01\x01\x05\x03\x04", // 𠯫
+ 0x20bec: "\x02\x05\x01\x02\x01\x03\x04", // 𠯬
+ 0x20bed: "\x02\x05\x01\x02\x05\x01\x01", // 𠯭
+ 0x20bee: "\x02\x05\x01\x02\x05\x02\x01", // 𠯮
+ 0x20bef: "\x02\x05\x01\x03\x02\x01\x05", // 𠯯
+ 0x20bf0: "\x02\x05\x01\x03\x02\x01\x02", // 𠯰
+ 0x20bf1: "\x02\x05\x01\x03\x04\x03\x04", // 𠯱
+ 0x20bf2: "\x02\x05\x01\x03\x05\x01\x01", // 𠯲
+ 0x20bf3: "\x03\x05\x03\x03\x02\x05\x01", // 𠯳
+ 0x20bf4: "\x02\x05\x01\x04\x01\x02\x04", // 𠯴
+ 0x20bf5: "\x02\x05\x01\x05\x01\x03\x04", // 𠯵
+ 0x20bf6: "\x05\x01\x05\x01\x02\x05\x01", // 𠯶
+ 0x20bf7: "\x02\x05\x01\x05\x03\x05\x04", // 𠯷
+ 0x20bf8: "\x02\x05\x01\x01\x03\x01\x02", // 𠯸
+ 0x20bf9: "\x02\x05\x01\x03\x02\x05\x03", // 𠯹
+ 0x20bfa: "\x04\x01\x03\x05\x02\x05\x01", // 𠯺
+ 0x20bfb: "\x02\x05\x01\x05\x05\x04\x05", // 𠯻
+ 0x20bfc: "\x02\x05\x01\x03\x02\x01\x02", // 𠯼
+ 0x20bfd: "\x02\x05\x01\x02\x01\x02\x01", // 𠯽
+ 0x20bfe: "\x02\x05\x01\x03\x02\x03\x05", // 𠯾
+ 0x20bff: "\x02\x05\x01\x04\x01\x03\x04", // 𠯿
+ 0x20c00: "\x02\x05\x01\x05\x01\x05\x02", // 𠰀
+ 0x20c01: "\x02\x05\x01\x01\x02\x01\x05", // 𠰁
+ 0x20c02: "\x02\x05\x01\x01\x01\x03\x05", // 𠰂
+ 0x20c03: "\x02\x05\x01\x03\x01\x02\x01", // 𠰃
+ 0x20c04: "\x02\x05\x01\x05\x04\x05\x02", // 𠰄
+ 0x20c05: "\x02\x05\x01\x03\x01\x01\x02", // 𠰅
+ 0x20c06: "\x02\x05\x01\x01\x05\x01\x05", // 𠰆
+ 0x20c07: "\x02\x05\x01\x04\x05\x01\x05", // 𠰇
+ 0x20c08: "\x02\x05\x01\x05\x01\x05\x05\x04", // 𠰈
+ 0x20c09: "\x02\x05\x01\x05\x03\x02\x05\x01", // 𠰉
+ 0x20c0a: "\x02\x05\x01\x05\x02\x01\x03\x04", // 𠰊
+ 0x20c0b: "\x02\x05\x01\x03\x02\x01\x02\x01", // 𠰋
+ 0x20c0c: "\x02\x05\x01\x01\x01\x02\x03\x04", // 𠰌
+ 0x20c0d: "\x02\x05\x01\x04\x01\x01\x02\x01", // 𠰍
+ 0x20c0e: "\x02\x05\x01\x05\x01\x03\x05\x04", // 𠰎
+ 0x20c0f: "\x02\x05\x01\x03\x04\x05\x04", // 𠰏
+ 0x20c10: "\x02\x05\x01\x01\x02\x05\x01\x05", // 𠰐
+ 0x20c11: "\x02\x05\x01\x01\x03\x01\x01\x02", // 𠰑
+ 0x20c12: "\x02\x05\x01\x03\x04\x02\x03\x04", // 𠰒
+ 0x20c13: "\x02\x05\x01\x03\x01\x02\x03\x04", // 𠰓
+ 0x20c14: "\x05\x05\x04\x01\x04\x02\x05\x01", // 𠰔
+ 0x20c15: "\x05\x02\x02\x05\x02\x02\x05\x01", // 𠰕
+ 0x20c16: "\x02\x05\x01\x01\x02\x01\x02\x05\x02", // 𠰖
+ 0x20c17: "\x02\x05\x01\x03\x03\x04\x01\x05", // 𠰗
+ 0x20c18: "\x02\x05\x01\x02\x05\x02\x02\x01", // 𠰘
+ 0x20c19: "\x02\x05\x01\x01\x01\x02\x02\x02", // 𠰙
+ 0x20c1a: "\x02\x05\x01\x04\x05\x02\x03\x04", // 𠰚
+ 0x20c1b: "\x02\x05\x02\x01\x02\x02\x05\x01", // 𠰛
+ 0x20c1c: "\x02\x05\x01\x03\x04\x03\x01\x02", // 𠰜
+ 0x20c1d: "\x02\x05\x03\x05\x01\x02\x05\x01", // 𠰝
+ 0x20c1e: "\x03\x01\x02\x05\x01\x02\x05\x01", // 𠰞
+ 0x20c1f: "\x05\x01\x05\x01\x01\x02\x05\x01", // 𠰟
+ 0x20c20: "\x02\x05\x01\x01\x05\x01\x05", // 𠰠
+ 0x20c21: "\x02\x05\x01\x04\x04\x05\x01\x05", // 𠰡
+ 0x20c22: "\x02\x05\x01\x04\x03\x01\x01\x02", // 𠰢
+ 0x20c23: "\x04\x05\x04\x03\x04\x02\x05\x01", // 𠰣
+ 0x20c24: "\x02\x05\x01\x04\x01\x05\x03\x02", // 𠰤
+ 0x20c25: "\x04\x03\x01\x01\x03\x02\x05\x01", // 𠰥
+ 0x20c26: "\x04\x05\x05\x03\x04\x02\x05\x01", // 𠰦
+ 0x20c27: "\x02\x05\x01\x01\x01\x02\x01\x04", // 𠰧
+ 0x20c28: "\x02\x05\x01\x01\x03\x03\x03\x05", // 𠰨
+ 0x20c29: "\x02\x05\x01\x03\x05\x01\x01\x02", // 𠰩
+ 0x20c2a: "\x02\x05\x01\x01\x02\x01\x02\x01", // 𠰪
+ 0x20c2b: "\x01\x01\x01\x03\x04\x02\x05\x01", // 𠰫
+ 0x20c2c: "\x02\x05\x01\x02\x05\x01\x02\x01", // 𠰬
+ 0x20c2d: "\x02\x05\x01\x03\x05\x03\x05\x02", // 𠰭
+ 0x20c2e: "\x02\x05\x01\x03\x01\x01\x02\x01", // 𠰮
+ 0x20c2f: "\x02\x05\x01\x03\x05\x03\x03\x04", // 𠰯
+ 0x20c30: "\x03\x02\x01\x05\x04\x02\x05\x01", // 𠰰
+ 0x20c31: "\x02\x05\x01\x01\x02\x02\x05\x02", // 𠰱
+ 0x20c32: "\x02\x05\x01\x01\x02\x03\x05\x04", // 𠰲
+ 0x20c33: "\x02\x05\x01\x01\x02\x05\x03\x04", // 𠰳
+ 0x20c34: "\x02\x05\x01\x01\x03\x02\x05\x01", // 𠰴
+ 0x20c35: "\x02\x05\x01\x01\x03\x04\x04\x03", // 𠰵
+ 0x20c36: "\x01\x05\x01\x01\x03\x02\x05\x01", // 𠰶
+ 0x20c37: "\x02\x05\x01\x02\x01\x05\x01\x03", // 𠰷
+ 0x20c38: "\x02\x05\x01\x02\x05\x05\x01\x01", // 𠰸
+ 0x20c39: "\x02\x05\x01\x03\x01\x05\x02\x05", // 𠰹
+ 0x20c3a: "\x02\x05\x01\x03\x02\x01\x05\x04", // 𠰺
+ 0x20c3b: "\x02\x05\x01\x03\x05\x04\x02\x04", // 𠰻
+ 0x20c3c: "\x02\x05\x01\x01\x02\x05\x02", // 𠰼
+ 0x20c3d: "\x02\x05\x01\x04\x04\x05\x03\x05", // 𠰽
+ 0x20c3e: "\x02\x05\x01\x05\x01\x03\x03\x05", // 𠰾
+ 0x20c3f: "\x02\x05\x01\x05\x02\x05\x03\x04", // 𠰿
+ 0x20c40: "\x02\x05\x01\x05\x03\x02\x05\x04", // 𠱀
+ 0x20c41: "\x02\x05\x01\x05\x02\x05\x03\x04", // 𠱁
+ 0x20c42: "\x02\x05\x01\x02\x01\x02\x05\x01", // 𠱂
+ 0x20c43: "\x02\x05\x01\x02\x05\x02\x05\x01", // 𠱃
+ 0x20c44: "\x02\x05\x01\x02\x05\x02\x02\x01", // 𠱄
+ 0x20c45: "\x02\x05\x01\x05\x04\x01\x02\x01", // 𠱅
+ 0x20c46: "\x02\x05\x01\x05\x03\x05\x02\x01", // 𠱆
+ 0x20c47: "\x02\x05\x01\x04\x04\x05\x03\x04", // 𠱇
+ 0x20c48: "\x02\x05\x01\x03\x01\x01\x03\x04", // 𠱈
+ 0x20c49: "\x02\x05\x01\x03\x04\x03\x03\x03", // 𠱉
+ 0x20c4a: "\x02\x05\x01\x03\x02\x01\x02\x01", // 𠱊
+ 0x20c4b: "\x02\x05\x01\x02\x05\x01\x02\x01", // 𠱋
+ 0x20c4c: "\x02\x05\x01\x01\x01\x01\x05\x04", // 𠱌
+ 0x20c4d: "\x02\x05\x01\x03\x05\x03\x05\x05", // 𠱍
+ 0x20c4e: "\x02\x05\x01\x03\x05\x03\x03\x01", // 𠱎
+ 0x20c4f: "\x02\x05\x01\x01\x03\x05\x01\x01", // 𠱏
+ 0x20c50: "\x02\x05\x01\x02\x05\x01\x05\x01\x03\x04", // 𠱐
+ 0x20c51: "\x02\x05\x01\x01\x03\x04\x02\x05\x01", // 𠱑
+ 0x20c52: "\x03\x01\x01\x02\x03\x04\x02\x05\x01", // 𠱒
+ 0x20c53: "\x02\x05\x01\x03\x05\x01\x03\x05\x05", // 𠱓
+ 0x20c54: "\x02\x05\x01\x04\x04\x05\x01\x02\x04", // 𠱔
+ 0x20c55: "\x02\x05\x01\x03\x05\x05\x04\x03\x05", // 𠱕
+ 0x20c56: "\x02\x05\x01\x03\x02\x05\x03\x04\x01", // 𠱖
+ 0x20c57: "\x04\x01\x02\x05\x01\x02\x05\x01\x01", // 𠱗
+ 0x20c58: "\x02\x05\x01\x04\x03\x01\x05\x02\x03", // 𠱘
+ 0x20c59: "\x02\x05\x01\x02\x01\x01\x02\x03\x04", // 𠱙
+ 0x20c5a: "\x02\x05\x01\x02\x01\x01\x01\x02\x04", // 𠱚
+ 0x20c5b: "\x05\x03\x02\x05\x03\x05\x02\x05\x01", // 𠱛
+ 0x20c5c: "\x02\x05\x01\x01\x03\x02\x05\x02\x01", // 𠱜
+ 0x20c5d: "\x02\x05\x01\x05\x04\x03\x05\x01\x01", // 𠱝
+ 0x20c5e: "\x02\x05\x01\x03\x05\x01\x02\x03\x04", // 𠱞
+ 0x20c5f: "\x02\x05\x01\x03\x05\x01\x02\x03\x04", // 𠱟
+ 0x20c60: "\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 𠱠
+ 0x20c61: "\x02\x05\x01\x02\x05\x01\x01\x02\x02", // 𠱡
+ 0x20c62: "\x02\x05\x01\x04\x04\x01\x01\x01\x02", // 𠱢
+ 0x20c63: "\x02\x05\x01\x05\x01\x05\x01\x02\x01", // 𠱣
+ 0x20c64: "\x02\x05\x01\x03\x01\x01\x02\x03\x04", // 𠱤
+ 0x20c65: "\x02\x05\x01\x01\x02\x01\x03\x02", // 𠱥
+ 0x20c66: "\x03\x02\x03\x04\x03\x04\x02\x05\x01", // 𠱦
+ 0x20c67: "\x03\x02\x03\x05\x03\x04\x02\x05\x01", // 𠱧
+ 0x20c68: "\x02\x05\x01\x05\x05\x02\x05\x02\x02", // 𠱨
+ 0x20c69: "\x01\x02\x05\x03\x05\x01\x02\x05\x01", // 𠱩
+ 0x20c6a: "\x02\x05\x01\x04\x01\x04\x03\x01\x02", // 𠱪
+ 0x20c6b: "\x04\x01\x04\x03\x01\x04\x02\x05\x01", // 𠱫
+ 0x20c6c: "\x02\x05\x01\x01\x01\x02\x02\x05\x01", // 𠱬
+ 0x20c6d: "\x05\x02\x03\x05\x02\x02\x02\x05\x01", // 𠱭
+ 0x20c6e: "\x02\x05\x01\x05\x04\x03\x05\x04\x01", // 𠱮
+ 0x20c6f: "\x02\x05\x01\x02\x05\x01\x01\x02\x01", // 𠱯
+ 0x20c70: "\x03\x05\x01\x01\x01\x02\x02\x05\x01", // 𠱰
+ 0x20c71: "\x02\x05\x01\x03\x05\x03\x03\x04\x01", // 𠱱
+ 0x20c72: "\x02\x05\x01\x05\x01\x01\x05\x01\x01", // 𠱲
+ 0x20c73: "\x02\x05\x01\x05\x01\x05\x05\x01\x05", // 𠱳
+ 0x20c74: "\x02\x05\x01\x03\x04\x01\x01\x02\x01", // 𠱴
+ 0x20c75: "\x02\x05\x04\x01\x02\x05\x01\x03\x04", // 𠱵
+ 0x20c76: "\x02\x05\x01\x04\x04\x05\x01\x01\x02", // 𠱶
+ 0x20c77: "\x02\x05\x01\x03\x05\x04\x02\x05\x01", // 𠱷
+ 0x20c78: "\x02\x05\x01\x01\x02\x05\x01\x02\x05", // 𠱸
+ 0x20c79: "\x02\x05\x01\x01\x02\x01\x03\x01\x05", // 𠱹
+ 0x20c7a: "\x02\x05\x01\x05\x02\x05\x03\x04\x01", // 𠱺
+ 0x20c7b: "\x02\x05\x01\x01\x02\x05\x02\x01\x01", // 𠱻
+ 0x20c7c: "\x02\x05\x01\x01\x02\x01\x03\x01\x05", // 𠱼
+ 0x20c7d: "\x02\x05\x01\x01\x03\x02\x01\x02\x01", // 𠱽
+ 0x20c7e: "\x02\x05\x01\x01\x02\x01\x01\x02\x04", // 𠱾
+ 0x20c7f: "\x02\x05\x01\x05\x03\x05\x03\x05\x03", // 𠱿
+ 0x20c80: "\x01\x02\x05\x01\x03\x04\x02\x05\x01", // 𠲀
+ 0x20c81: "\x02\x05\x01\x02\x05\x01\x05\x03\x04", // 𠲁
+ 0x20c82: "\x02\x05\x01\x02\x05\x01\x01\x03\x04", // 𠲂
+ 0x20c83: "\x02\x05\x01\x03\x05\x01\x05\x02", // 𠲃
+ 0x20c84: "\x02\x05\x01\x03\x05\x04\x05\x02", // 𠲄
+ 0x20c85: "\x02\x05\x01\x03\x05\x05\x02\x01\x05", // 𠲅
+ 0x20c86: "\x03\x01\x02\x03\x04\x01\x02\x05\x01", // 𠲆
+ 0x20c87: "\x02\x05\x01\x03\x04\x01\x03\x02\x04", // 𠲇
+ 0x20c88: "\x02\x05\x01\x03\x04\x02\x05\x03\x04", // 𠲈
+ 0x20c89: "\x02\x05\x01\x03\x02\x03\x01\x02\x01", // 𠲉
+ 0x20c8a: "\x02\x05\x01\x01\x02\x01\x03\x05\x04", // 𠲊
+ 0x20c8b: "\x02\x05\x01\x01\x02\x05\x02\x03\x04", // 𠲋
+ 0x20c8c: "\x02\x05\x01\x01\x03\x04\x05\x03\x04", // 𠲌
+ 0x20c8d: "\x02\x05\x01\x03\x01\x02\x01\x05\x04", // 𠲍
+ 0x20c8e: "\x02\x05\x01\x03\x02\x01\x05\x03\x04", // 𠲎
+ 0x20c8f: "\x02\x05\x01\x03\x02\x03\x01\x02\x01", // 𠲏
+ 0x20c90: "\x02\x05\x01\x03\x03\x03\x05\x01\x05", // 𠲐
+ 0x20c91: "\x04\x03\x01\x01\x03\x02\x05\x01\x05", // 𠲑
+ 0x20c92: "\x03\x04\x02\x04\x04\x04\x02\x05\x01", // 𠲒
+ 0x20c93: "\x02\x05\x01\x03\x05\x04\x01\x05\x02", // 𠲓
+ 0x20c94: "\x02\x05\x01\x04\x01\x03\x02\x03\x04", // 𠲔
+ 0x20c95: "\x02\x05\x01\x04\x01\x03\x01\x02\x01", // 𠲕
+ 0x20c96: "\x02\x05\x01\x04\x01\x03\x05\x03\x04", // 𠲖
+ 0x20c97: "\x02\x05\x01\x04\x01\x04\x03\x01\x02", // 𠲗
+ 0x20c98: "\x04\x03\x01\x01\x01\x02\x02\x05\x01", // 𠲘
+ 0x20c99: "\x02\x05\x01\x05\x01\x03\x03\x05\x04", // 𠲙
+ 0x20c9a: "\x02\x05\x01\x05\x02\x01\x05\x02\x01", // 𠲚
+ 0x20c9b: "\x02\x05\x01\x02\x05\x02\x05\x01\x01", // 𠲛
+ 0x20c9c: "\x02\x05\x01\x03\x05\x05\x01\x01\x02", // 𠲜
+ 0x20c9d: "\x02\x05\x01\x04\x05\x04\x01\x02\x04", // 𠲝
+ 0x20c9e: "\x02\x05\x01\x01\x02\x01\x01\x02\x01", // 𠲞
+ 0x20c9f: "\x02\x05\x01\x03\x02\x03\x01\x01\x02", // 𠲟
+ 0x20ca0: "\x02\x05\x01\x05\x02\x03\x01\x03\x04", // 𠲠
+ 0x20ca1: "\x02\x05\x01\x05\x03\x01\x05\x02\x01", // 𠲡
+ 0x20ca2: "\x02\x05\x01\x02\x05\x01\x02\x05\x02", // 𠲢
+ 0x20ca3: "\x02\x05\x01\x03\x02\x05\x02\x02\x01", // 𠲣
+ 0x20ca4: "\x02\x05\x01\x04\x04\x01\x05\x03\x01", // 𠲤
+ 0x20ca5: "\x02\x05\x01\x04\x05\x02\x04\x05", // 𠲥
+ 0x20ca6: "\x02\x05\x01\x01\x01\x03\x05\x03\x04", // 𠲦
+ 0x20ca7: "\x02\x05\x01\x01\x01\x02\x01\x05\x04", // 𠲧
+ 0x20ca8: "\x02\x05\x01\x04\x04\x01\x05\x02\x05", // 𠲨
+ 0x20ca9: "\x04\x01\x03\x04\x01\x02\x02\x05\x01", // 𠲩
+ 0x20caa: "\x02\x05\x01\x03\x05\x01\x03\x05\x05", // 𠲪
+ 0x20cab: "\x02\x05\x01\x05\x05\x02\x02\x05\x02", // 𠲫
+ 0x20cac: "\x02\x05\x01\x01\x02\x02\x05\x01\x02\x05", // 𠲬
+ 0x20cad: "\x02\x05\x01\x05\x05\x04\x03\x05\x03\x04", // 𠲭
+ 0x20cae: "\x02\x05\x01\x01\x05\x05\x05\x01\x02\x01", // 𠲮
+ 0x20caf: "\x04\x01\x05\x05\x04\x01\x04\x02\x05\x01", // 𠲯
+ 0x20cb0: "\x02\x05\x01\x05\x01\x01\x03\x02\x05\x01", // 𠲰
+ 0x20cb1: "\x03\x01\x01\x02\x03\x05\x04\x02\x05\x01", // 𠲱
+ 0x20cb2: "\x02\x05\x01\x04\x01\x03\x04\x03\x03\x03", // 𠲲
+ 0x20cb3: "\x02\x05\x01\x03\x02\x05\x01\x01\x01\x03", // 𠲳
+ 0x20cb4: "\x02\x05\x01\x01\x02\x01\x03\x05\x05\x04", // 𠲴
+ 0x20cb5: "\x02\x05\x01\x01\x02\x01\x05\x04\x05\x03", // 𠲵
+ 0x20cb6: "\x02\x05\x01\x03\x05\x02\x05\x01\x03\x05", // 𠲶
+ 0x20cb7: "\x02\x05\x01\x01\x02\x02\x01\x01\x01\x05", // 𠲷
+ 0x20cb8: "\x02\x05\x01\x02\x05\x01\x02\x01\x05\x03", // 𠲸
+ 0x20cb9: "\x02\x05\x01\x05\x01\x05\x04\x05\x04\x04", // 𠲹
+ 0x20cba: "\x02\x05\x01\x02\x05\x02\x03\x05\x05\x04", // 𠲺
+ 0x20cbb: "\x04\x04\x01\x03\x03\x01\x02\x02\x05\x01", // 𠲻
+ 0x20cbc: "\x02\x05\x01\x03\x02\x01\x01\x05\x01\x01", // 𠲼
+ 0x20cbd: "\x02\x05\x01\x03\x02\x05\x01\x05\x03\x02", // 𠲽
+ 0x20cbe: "\x02\x05\x01\x03\x05\x02\x05\x01\x01\x01", // 𠲾
+ 0x20cbf: "\x02\x05\x01\x01\x02\x05\x01\x02\x03\x04", // 𠲿
+ 0x20cc0: "\x02\x05\x01\x05\x04\x02\x05\x01\x01\x02", // 𠳀
+ 0x20cc1: "\x02\x05\x01\x02\x05\x01\x02\x03\x04\x01", // 𠳁
+ 0x20cc2: "\x02\x05\x01\x03\x05\x01\x05\x02\x05\x01", // 𠳂
+ 0x20cc3: "\x02\x05\x01\x01\x02\x01\x02\x05\x03\x04", // 𠳃
+ 0x20cc4: "\x01\x02\x03\x04\x03\x04\x01\x02\x05\x01", // 𠳄
+ 0x20cc5: "\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01", // 𠳅
+ 0x20cc6: "\x01\x01\x02\x01\x02\x05\x01\x05\x03\x04", // 𠳆
+ 0x20cc7: "\x02\x05\x01\x03\x03\x01\x02\x02\x05\x01", // 𠳇
+ 0x20cc8: "\x02\x05\x01\x03\x04\x01\x03\x02\x05\x01", // 𠳈
+ 0x20cc9: "\x02\x05\x01\x03\x05\x02\x05\x01\x01\x01", // 𠳉
+ 0x20cca: "\x01\x02\x05\x01\x02\x01\x02\x01\x05\x04", // 𠳊
+ 0x20ccb: "\x02\x05\x01\x02\x01\x02\x05\x01\x05\x01", // 𠳋
+ 0x20ccc: "\x01\x02\x01\x05\x04\x01\x02\x05\x01\x02", // 𠳌
+ 0x20ccd: "\x02\x05\x01\x01\x03\x02\x05\x02\x02\x01", // 𠳍
+ 0x20cce: "\x02\x05\x01\x03\x02\x05\x04\x03\x04", // 𠳎
+ 0x20ccf: "\x02\x05\x01\x01\x02\x01\x02\x01\x02\x01", // 𠳏
+ 0x20cd0: "\x02\x05\x01\x01\x01\x01\x03\x05\x02", // 𠳐
+ 0x20cd1: "\x02\x05\x01\x01\x02\x01\x03\x05\x05\x02", // 𠳑
+ 0x20cd2: "\x02\x05\x01\x01\x01\x03\x04\x02\x01\x01", // 𠳒
+ 0x20cd3: "\x02\x05\x01\x04\x01\x03\x01\x05\x01\x05", // 𠳓
+ 0x20cd4: "\x02\x05\x01\x03\x02\x01\x05\x01\x05", // 𠳔
+ 0x20cd5: "\x02\x05\x01\x01\x02\x01\x02\x03\x04\x03", // 𠳕
+ 0x20cd6: "\x02\x05\x01\x01\x02\x01\x03\x05\x04", // 𠳖
+ 0x20cd7: "\x02\x05\x01\x01\x02\x01\x04\x05\x03\x05", // 𠳗
+ 0x20cd8: "\x02\x05\x01\x03\x02\x02\x03\x01\x03\x04", // 𠳘
+ 0x20cd9: "\x05\x04\x02\x05\x01\x03\x02\x01\x05\x04", // 𠳙
+ 0x20cda: "\x02\x05\x01\x05\x01\x05\x03\x01\x03\x04", // 𠳚
+ 0x20cdb: "\x04\x04\x01\x03\x01\x03\x04\x02\x05\x01", // 𠳛
+ 0x20cdc: "\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 𠳜
+ 0x20cdd: "\x02\x05\x01\x01\x03\x02\x04\x02\x05\x01", // 𠳝
+ 0x20cde: "\x02\x05\x01\x01\x02\x01\x05\x04\x05\x02", // 𠳞
+ 0x20cdf: "\x02\x05\x01\x01\x01\x02\x01\x01\x03\x05", // 𠳟
+ 0x20ce0: "\x02\x05\x01\x01\x02\x01\x01\x01\x03\x05", // 𠳠
+ 0x20ce1: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02", // 𠳡
+ 0x20ce2: "\x02\x05\x01\x03\x05\x04\x05\x04\x03\x04", // 𠳢
+ 0x20ce3: "\x02\x05\x01\x02\x05\x02\x02\x01\x01\x02", // 𠳣
+ 0x20ce4: "\x02\x05\x01\x02\x01\x02\x01\x02\x03\x03", // 𠳤
+ 0x20ce5: "\x02\x05\x01\x02\x05\x02\x03\x04\x01\x02\x01", // 𠳥
+ 0x20ce6: "\x02\x05\x01\x02\x05\x02\x02\x01\x05\x04", // 𠳦
+ 0x20ce7: "\x02\x05\x01\x01\x05\x01\x05\x01\x01\x01", // 𠳧
+ 0x20ce8: "\x02\x05\x01\x03\x01\x05\x05\x04\x01\x04", // 𠳨
+ 0x20ce9: "\x02\x05\x01\x03\x02\x05\x03\x02\x05\x04", // 𠳩
+ 0x20cea: "\x02\x05\x01\x03\x05\x03\x03\x02\x05\x01", // 𠳪
+ 0x20ceb: "\x01\x02\x02\x05\x01\x03\x05\x01\x01\x02", // 𠳫
+ 0x20cec: "\x01\x02\x02\x05\x01\x01\x02\x02\x05\x01", // 𠳬
+ 0x20ced: "\x02\x05\x01\x01\x02\x02\x05\x01\x03\x05", // 𠳭
+ 0x20cee: "\x01\x03\x02\x05\x01\x02\x05\x02\x05\x01", // 𠳮
+ 0x20cef: "\x02\x05\x01\x01\x05\x02\x05\x01\x01\x05", // 𠳯
+ 0x20cf0: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x04", // 𠳰
+ 0x20cf1: "\x02\x05\x01\x02\x01\x02\x05\x03\x04\x01", // 𠳱
+ 0x20cf2: "\x02\x05\x01\x02\x05\x01\x01\x01\x01\x02", // 𠳲
+ 0x20cf3: "\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 𠳳
+ 0x20cf4: "\x02\x05\x01\x02\x05\x01\x02\x05\x03\x01", // 𠳴
+ 0x20cf5: "\x02\x05\x01\x02\x05\x01\x04\x01\x03\x04", // 𠳵
+ 0x20cf6: "\x02\x05\x01\x03\x01\x02\x03\x04\x03\x05", // 𠳶
+ 0x20cf7: "\x02\x05\x01\x03\x02\x01\x02\x01\x05\x04", // 𠳷
+ 0x20cf8: "\x02\x05\x01\x03\x05\x04\x01\x02\x03\x04", // 𠳸
+ 0x20cf9: "\x02\x05\x01\x04\x01\x03\x01\x02\x03\x04", // 𠳹
+ 0x20cfa: "\x02\x05\x01\x04\x01\x03\x04\x02\x05\x01", // 𠳺
+ 0x20cfb: "\x02\x05\x01\x04\x01\x03\x04\x02\x05\x01", // 𠳻
+ 0x20cfc: "\x02\x05\x01\x04\x04\x05\x01\x02\x03\x04", // 𠳼
+ 0x20cfd: "\x02\x05\x01\x04\x04\x05\x03\x04\x01\x02", // 𠳽
+ 0x20cfe: "\x02\x05\x01\x04\x05\x03\x04\x01\x01\x02", // 𠳾
+ 0x20cff: "\x02\x05\x01\x05\x01\x03\x03\x01\x01\x05", // 𠳿
+ 0x20d00: "\x02\x05\x01\x05\x01\x05\x05\x01\x05\x01", // 𠴀
+ 0x20d01: "\x02\x05\x01\x05\x01\x05\x05\x02\x05\x01", // 𠴁
+ 0x20d02: "\x02\x05\x01\x05\x03\x01\x05\x04\x05\x03", // 𠴂
+ 0x20d03: "\x02\x05\x01\x05\x04\x05\x04\x01\x03\x04", // 𠴃
+ 0x20d04: "\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05", // 𠴄
+ 0x20d05: "\x01\x01\x03\x04\x02\x03\x04\x02\x05\x01", // 𠴅
+ 0x20d06: "\x02\x05\x01\x01\x04\x05\x04\x04\x05\x04", // 𠴆
+ 0x20d07: "\x02\x05\x01\x03\x02\x01\x02\x01\x03\x04", // 𠴇
+ 0x20d08: "\x02\x05\x01\x04\x04\x05\x01\x03\x05\x04", // 𠴈
+ 0x20d09: "\x02\x05\x01\x05\x02\x01\x01\x03\x05", // 𠴉
+ 0x20d0a: "\x02\x05\x01\x02\x05\x01\x03\x02\x05\x01", // 𠴊
+ 0x20d0b: "\x02\x05\x01\x01\x02\x01\x03\x05\x05\x03", // 𠴋
+ 0x20d0c: "\x02\x05\x01\x05\x01\x01\x04\x03\x03\x04", // 𠴌
+ 0x20d0d: "\x02\x05\x01\x05\x03\x04\x04\x05\x04\x04", // 𠴍
+ 0x20d0e: "\x02\x05\x01\x04\x04\x01\x03\x01\x03\x04", // 𠴎
+ 0x20d0f: "\x02\x05\x01\x01\x02\x02\x04\x01\x05", // 𠴏
+ 0x20d10: "\x02\x05\x01\x04\x04\x02\x05\x02\x01\x01", // 𠴐
+ 0x20d11: "\x02\x05\x01\x01\x02\x02\x05\x03\x01", // 𠴑
+ 0x20d12: "\x02\x05\x01\x03\x02\x03\x04\x04\x05\x04", // 𠴒
+ 0x20d13: "\x02\x05\x01\x03\x02\x03\x05\x01\x05\x04", // 𠴓
+ 0x20d14: "\x02\x05\x01\x02\x05\x01\x01\x01\x02\x01", // 𠴔
+ 0x20d15: "\x02\x05\x01\x05\x03\x01\x02\x03\x04\x03", // 𠴕
+ 0x20d16: "\x02\x05\x01\x03\x02\x04\x01\x04\x03\x01", // 𠴖
+ 0x20d17: "\x02\x05\x01\x01\x02\x03\x04\x01\x02\x01", // 𠴗
+ 0x20d18: "\x02\x05\x01\x01\x02\x03\x04\x01\x02\x04", // 𠴘
+ 0x20d19: "\x02\x05\x01\x01\x02\x01\x05\x02\x01\x05", // 𠴙
+ 0x20d1a: "\x02\x05\x01\x03\x02\x03\x01\x02\x01\x01", // 𠴚
+ 0x20d1b: "\x02\x05\x01\x04\x04\x05\x03\x04\x05\x03", // 𠴛
+ 0x20d1c: "\x02\x05\x01\x01\x02\x01\x01\x02\x05\x04", // 𠴜
+ 0x20d1d: "\x02\x05\x01\x04\x04\x01\x01\x01\x02\x01", // 𠴝
+ 0x20d1e: "\x02\x05\x01\x03\x02\x04\x03\x01\x01\x02", // 𠴞
+ 0x20d1f: "\x02\x05\x01\x02\x01\x02\x01\x01\x01\x02", // 𠴟
+ 0x20d20: "\x02\x05\x01\x03\x04\x01\x02\x05\x03\x04", // 𠴠
+ 0x20d21: "\x02\x05\x01\x03\x02\x05\x01\x01\x03\x05", // 𠴡
+ 0x20d22: "\x02\x05\x01\x01\x02\x01\x05\x02\x01\x03", // 𠴢
+ 0x20d23: "\x02\x05\x01\x04\x03\x03\x05\x02\x05\x01", // 𠴣
+ 0x20d24: "\x02\x05\x01\x01\x02\x01\x04\x05\x04\x04", // 𠴤
+ 0x20d25: "\x02\x05\x01\x04\x04\x01\x03\x04\x03\x05", // 𠴥
+ 0x20d26: "\x03\x05\x02\x05\x01\x04\x01\x01\x02\x01", // 𠴦
+ 0x20d27: "\x02\x05\x01\x05\x04\x05\x04\x05\x04\x01\x01", // 𠴧
+ 0x20d28: "\x02\x05\x01\x04\x04\x05\x02\x05\x01\x05\x01", // 𠴨
+ 0x20d29: "\x02\x05\x01\x01\x02\x02\x01\x01\x01\x03\x04", // 𠴩
+ 0x20d2a: "\x02\x05\x01\x05\x01\x03\x02\x05\x02\x05\x04", // 𠴪
+ 0x20d2b: "\x02\x05\x01\x02\x01\x01\x02\x03\x04\x05\x04", // 𠴫
+ 0x20d2c: "\x02\x05\x01\x04\x01\x05\x04\x01\x02\x03\x04", // 𠴬
+ 0x20d2d: "\x02\x05\x01\x02\x05\x01\x01\x03\x05\x03\x03", // 𠴭
+ 0x20d2e: "\x02\x05\x01\x03\x05\x05\x03\x04\x05\x04\x04", // 𠴮
+ 0x20d2f: "\x02\x05\x01\x03\x01\x02\x03\x04\x03\x04\x01", // 𠴯
+ 0x20d30: "\x02\x05\x01\x03\x05\x04\x02\x04\x02\x05\x01", // 𠴰
+ 0x20d31: "\x02\x05\x01\x02\x05\x01\x02\x02\x05\x01\x01", // 𠴱
+ 0x20d32: "\x02\x05\x01\x02\x05\x03\x04\x02\x05\x01\x01", // 𠴲
+ 0x20d33: "\x02\x05\x01\x03\x04\x01\x03\x03\x05\x04\x01", // 𠴳
+ 0x20d34: "\x02\x05\x01\x01\x02\x05\x02\x04\x05\x04", // 𠴴
+ 0x20d35: "\x02\x05\x01\x05\x01\x01\x04\x05\x02\x05\x02", // 𠴵
+ 0x20d36: "\x02\x05\x01\x03\x05\x03\x04\x05\x02\x03\x05", // 𠴶
+ 0x20d37: "\x02\x05\x01\x03\x04\x01\x03\x05\x04\x05\x02", // 𠴷
+ 0x20d38: "\x04\x04\x01\x05\x03\x02\x05\x04\x02\x05\x01", // 𠴸
+ 0x20d39: "\x02\x05\x01\x04\x04\x01\x04\x01\x04\x03\x01", // 𠴹
+ 0x20d3a: "\x02\x05\x01\x03\x02\x05\x03\x04\x01\x03\x05", // 𠴺
+ 0x20d3b: "\x02\x05\x01\x05\x02\x03\x01\x05\x02\x05", // 𠴻
+ 0x20d3c: "\x02\x05\x01\x01\x05\x04\x01\x02\x01\x02\x02", // 𠴼
+ 0x20d3d: "\x02\x05\x01\x04\x01\x03\x05\x04\x03\x05\x04", // 𠴽
+ 0x20d3e: "\x02\x05\x01\x05\x02\x01\x01\x05\x02\x01\x01", // 𠴾
+ 0x20d3f: "\x02\x05\x01\x03\x02\x05\x01\x01\x02\x02\x01", // 𠴿
+ 0x20d40: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02", // 𠵀
+ 0x20d41: "\x03\x05\x01\x02\x01\x02\x05\x01\x02\x05\x01", // 𠵁
+ 0x20d42: "\x01\x02\x03\x04\x01\x02\x03\x04\x02\x05\x01", // 𠵂
+ 0x20d43: "\x02\x05\x01\x01\x03\x04\x04\x03\x01\x01\x02", // 𠵃
+ 0x20d44: "\x02\x05\x01\x02\x05\x02\x02\x01\x01\x01\x02", // 𠵄
+ 0x20d45: "\x02\x05\x01\x01\x02\x02\x03\x02\x03\x05", // 𠵅
+ 0x20d46: "\x02\x05\x01\x01\x02\x01\x02\x05\x01\x01", // 𠵆
+ 0x20d47: "\x02\x05\x01\x01\x03\x04\x01\x02\x05\x01\x02", // 𠵇
+ 0x20d48: "\x02\x05\x01\x05\x03\x01\x01\x01\x02\x03\x04", // 𠵈
+ 0x20d49: "\x02\x05\x01\x01\x02\x03\x04\x04\x01\x03\x05", // 𠵉
+ 0x20d4a: "\x04\x03\x01\x01\x02\x01\x01\x02\x02\x05\x01", // 𠵊
+ 0x20d4b: "\x02\x05\x01\x03\x02\x05\x01\x01\x01\x02\x01", // 𠵋
+ 0x20d4c: "\x02\x05\x01\x04\x04\x05\x02\x05\x01\x01\x01", // 𠵌
+ 0x20d4d: "\x01\x02\x03\x04\x03\x03\x01\x02\x02\x05\x01", // 𠵍
+ 0x20d4e: "\x02\x05\x01\x05\x03\x01\x01\x02\x02\x05\x01", // 𠵎
+ 0x20d4f: "\x02\x05\x01\x01\x03\x04\x01\x02\x05\x01\x05", // 𠵏
+ 0x20d50: "\x02\x05\x01\x04\x04\x02\x01\x02\x01\x05\x04", // 𠵐
+ 0x20d51: "\x02\x05\x01\x05\x01\x05\x02\x01\x02\x05\x01", // 𠵑
+ 0x20d52: "\x02\x05\x01\x04\x01\x03\x05\x03\x04\x01\x02", // 𠵒
+ 0x20d53: "\x03\x02\x05\x04\x01\x02\x02\x05\x04\x01\x02", // 𠵓
+ 0x20d54: "\x02\x05\x01\x04\x03\x01\x02\x02\x04\x03\x01", // 𠵔
+ 0x20d55: "\x02\x05\x01\x01\x02\x01\x03\x05\x01\x02\x01", // 𠵕
+ 0x20d56: "\x02\x05\x01\x01\x05\x03\x04\x01\x05\x03\x04", // 𠵖
+ 0x20d57: "\x02\x05\x01\x01\x05\x02\x04\x03\x01\x03\x05", // 𠵗
+ 0x20d58: "\x02\x05\x01\x05\x01\x01\x02\x02\x05\x01\x01", // 𠵘
+ 0x20d59: "\x02\x05\x01\x02\x05\x02\x03\x04\x01\x05\x04", // 𠵙
+ 0x20d5a: "\x02\x05\x01\x02\x05\x02\x01\x03\x01\x01\x02", // 𠵚
+ 0x20d5b: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x05", // 𠵛
+ 0x20d5c: "\x02\x05\x01\x02\x05\x04\x03\x01\x04\x01\x05", // 𠵜
+ 0x20d5d: "\x02\x05\x01\x01\x02\x01\x02\x01\x05\x02\x03", // 𠵝
+ 0x20d5e: "\x03\x01\x02\x01\x02\x05\x01\x03\x05\x03\x03", // 𠵞
+ 0x20d5f: "\x02\x05\x01\x03\x01\x02\x01\x01\x02\x03\x04", // 𠵟
+ 0x20d60: "\x02\x05\x01\x01\x01\x03\x02\x04\x02\x05\x01", // 𠵠
+ 0x20d61: "\x02\x05\x01\x01\x01\x03\x02\x01\x01\x03\x02", // 𠵡
+ 0x20d62: "\x02\x05\x01\x01\x01\x03\x02\x03\x04", // 𠵢
+ 0x20d63: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x05", // 𠵣
+ 0x20d64: "\x01\x02\x01\x02\x01\x05\x04\x02\x05\x01", // 𠵤
+ 0x20d65: "\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01", // 𠵥
+ 0x20d66: "\x01\x02\x05\x01\x02\x05\x01\x03\x01\x01\x02", // 𠵦
+ 0x20d67: "\x01\x03\x01\x02\x01\x05\x03\x04\x02\x05\x01", // 𠵧
+ 0x20d68: "\x02\x05\x01\x02\x05\x01\x01\x01\x01\x02\x04", // 𠵨
+ 0x20d69: "\x02\x05\x01\x02\x05\x01\x01\x01\x02\x03\x04", // 𠵩
+ 0x20d6a: "\x02\x05\x01\x02\x05\x01\x01\x02\x01\x03\x04", // 𠵪
+ 0x20d6b: "\x02\x05\x01\x02\x05\x01\x01\x03\x05\x05\x02", // 𠵫
+ 0x20d6c: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05\x04", // 𠵬
+ 0x20d6d: "\x02\x05\x01\x02\x05\x01\x05\x02\x05\x01\x01", // 𠵭
+ 0x20d6e: "\x02\x05\x01\x03\x01\x02\x01\x03\x01\x01\x02", // 𠵮
+ 0x20d6f: "\x02\x05\x01\x03\x01\x02\x02\x05\x01\x02\x02", // 𠵯
+ 0x20d70: "\x02\x05\x01\x03\x01\x02\x04\x03\x01\x03\x05", // 𠵰
+ 0x20d71: "\x02\x05\x01\x03\x02\x04\x01\x03\x05\x03\x04", // 𠵱
+ 0x20d72: "\x03\x03\x01\x02\x05\x01\x01\x02\x05\x01\x02", // 𠵲
+ 0x20d73: "\x03\x03\x01\x02\x05\x01\x05\x01\x02\x05\x04", // 𠵳
+ 0x20d74: "\x02\x05\x01\x03\x04\x01\x02\x05\x01\x05\x02", // 𠵴
+ 0x20d75: "\x03\x04\x01\x02\x05\x01\x04\x03\x01\x01\x02", // 𠵵
+ 0x20d76: "\x02\x05\x01\x03\x04\x05\x02\x05\x03\x05\x04", // 𠵶
+ 0x20d77: "\x02\x05\x01\x04\x01\x03\x04\x05\x04\x03\x05", // 𠵷
+ 0x20d78: "\x02\x05\x01\x05\x01\x05\x03\x05\x02\x03\x04", // 𠵸
+ 0x20d79: "\x02\x05\x01\x02\x05\x04\x03\x01\x02\x05\x02", // 𠵹
+ 0x20d7a: "\x02\x05\x01\x03\x04\x04\x03\x05\x02\x01\x05", // 𠵺
+ 0x20d7b: "\x02\x05\x01\x04\x04\x05\x01\x01\x02\x03\x04", // 𠵻
+ 0x20d7c: "\x02\x05\x01\x05\x02\x01\x02\x05\x02\x02\x01", // 𠵼
+ 0x20d7d: "\x02\x05\x01\x04\x04\x01\x01\x02\x01\x05\x04", // 𠵽
+ 0x20d7e: "\x02\x05\x01\x01\x02\x05\x01\x02\x01\x05\x02", // 𠵾
+ 0x20d7f: "\x02\x05\x01\x01\x02\x01\x05\x03\x02\x05\x04", // 𠵿
+ 0x20d80: "\x02\x05\x01\x04\x05\x03\x04\x01\x02\x03\x04", // 𠶀
+ 0x20d81: "\x02\x05\x01\x02\x02\x01\x01\x02\x01\x03\x04", // 𠶁
+ 0x20d82: "\x02\x05\x01\x03\x04\x03\x04\x03\x01\x03\x04", // 𠶂
+ 0x20d83: "\x02\x05\x01\x01\x01\x02\x01\x01\x01\x03\x05", // 𠶃
+ 0x20d84: "\x02\x05\x01\x05\x02\x01\x01\x02\x05\x01\x02", // 𠶄
+ 0x20d85: "\x02\x05\x01\x01\x02\x01\x05\x03\x02\x05\x01", // 𠶅
+ 0x20d86: "\x02\x05\x01\x03\x02\x01\x02\x04\x05\x04", // 𠶆
+ 0x20d87: "\x02\x05\x01\x02\x05\x02\x04\x05\x05\x03\x04", // 𠶇
+ 0x20d88: "\x02\x05\x01\x04\x05\x02\x04\x01\x02\x01", // 𠶈
+ 0x20d89: "\x02\x05\x01\x03\x02\x03\x01\x02\x01\x03\x05", // 𠶉
+ 0x20d8a: "\x02\x05\x01\x01\x02\x01\x05\x03\x02\x05\x04", // 𠶊
+ 0x20d8b: "\x02\x05\x01\x01\x02\x02\x03\x04\x03\x02", // 𠶋
+ 0x20d8c: "\x02\x05\x01\x03\x03\x01\x02\x04\x05\x04", // 𠶌
+ 0x20d8d: "\x02\x05\x01\x01\x02\x03\x04\x04\x05\x03\x05", // 𠶍
+ 0x20d8e: "\x02\x05\x01\x03\x03\x02\x05\x03\x02\x05\x04", // 𠶎
+ 0x20d8f: "\x02\x05\x01\x03\x01\x05\x01\x01\x02\x03\x04", // 𠶏
+ 0x20d90: "\x02\x05\x01\x03\x05\x05\x02\x04\x05\x04", // 𠶐
+ 0x20d91: "\x02\x05\x01\x04\x03\x01\x02\x03\x04\x05\x02", // 𠶑
+ 0x20d92: "\x02\x05\x01\x04\x04\x02\x02\x05\x01\x01\x01", // 𠶒
+ 0x20d93: "\x02\x05\x01\x01\x01\x02\x01\x03\x05\x03\x04", // 𠶓
+ 0x20d94: "\x02\x05\x01\x04\x04\x02\x05\x04\x01\x02\x01", // 𠶔
+ 0x20d95: "\x02\x05\x01\x04\x04\x01\x05\x03\x02\x05\x01", // 𠶕
+ 0x20d96: "\x02\x05\x01\x01\x02\x03\x04\x01\x01\x02\x01", // 𠶖
+ 0x20d97: "\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x01", // 𠶗
+ 0x20d98: "\x01\x02\x05\x01\x02\x01\x03\x05\x04\x02\x02", // 𠶘
+ 0x20d99: "\x02\x05\x01\x01\x02\x02\x01\x03\x02\x04", // 𠶙
+ 0x20d9a: "\x02\x05\x01\x05\x03\x01\x01\x02\x05\x01\x02", // 𠶚
+ 0x20d9b: "\x02\x05\x01\x04\x01\x02\x05\x01\x02\x03\x04", // 𠶛
+ 0x20d9c: "\x02\x05\x01\x03\x01\x01\x02\x05\x02\x02\x02", // 𠶜
+ 0x20d9d: "\x02\x05\x01\x01\x02\x05\x01\x05\x01\x01\x02", // 𠶝
+ 0x20d9e: "\x02\x05\x01\x04\x04\x02\x03\x01\x01\x02\x01", // 𠶞
+ 0x20d9f: "\x02\x05\x01\x01\x02\x01\x02\x05\x01\x01\x02", // 𠶟
+ 0x20da0: "\x02\x05\x01\x04\x04\x01\x05\x04\x02\x05\x01", // 𠶠
+ 0x20da1: "\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x02", // 𠶡
+ 0x20da2: "\x02\x05\x01\x04\x04\x01\x02\x05\x01\x02\x01", // 𠶢
+ 0x20da3: "\x02\x05\x01\x01\x02\x03\x04\x03\x01\x03\x04", // 𠶣
+ 0x20da4: "\x02\x05\x01\x02\x04\x03\x02\x05\x02\x05\x01", // 𠶤
+ 0x20da5: "\x02\x05\x01\x04\x04\x05\x03\x04\x05\x01\x05", // 𠶥
+ 0x20da6: "\x02\x05\x01\x04\x01\x03\x02\x05\x01\x02\x01", // 𠶦
+ 0x20da7: "\x02\x05\x01\x04\x01\x03\x02\x01\x02\x05\x01", // 𠶧
+ 0x20da8: "\x02\x05\x01\x03\x05\x04\x01\x04\x03\x03\x04", // 𠶨
+ 0x20da9: "\x02\x05\x01\x05\x01\x03\x03\x05\x01\x05\x04", // 𠶩
+ 0x20daa: "\x02\x05\x01\x02\x01\x05\x03\x01\x05\x05\x03", // 𠶪
+ 0x20dab: "\x02\x05\x01\x01\x03\x04\x05\x02\x05\x03\x04", // 𠶫
+ 0x20dac: "\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01", // 𠶬
+ 0x20dad: "\x02\x05\x01\x02\x05\x01\x01\x02\x05\x03\x01", // 𠶭
+ 0x20dae: "\x01\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01", // 𠶮
+ 0x20daf: "\x02\x05\x01\x01\x02\x01\x05\x02\x02\x05\x02", // 𠶯
+ 0x20db0: "\x03\x05\x04\x03\x05\x01\x02\x01\x02\x05\x01", // 𠶰
+ 0x20db1: "\x01\x03\x02\x05\x01\x03\x05\x04\x02\x05\x01", // 𠶱
+ 0x20db2: "\x02\x05\x01\x01\x03\x03\x01\x01\x02\x05\x02", // 𠶲
+ 0x20db3: "\x03\x05\x01\x03\x03\x05\x05\x04\x02\x05\x01", // 𠶳
+ 0x20db4: "\x02\x05\x01\x05\x02\x04\x01\x02\x05\x02", // 𠶴
+ 0x20db5: "\x02\x05\x01\x03\x05\x03\x02\x02\x01\x03\x04", // 𠶵
+ 0x20db6: "\x04\x05\x01\x03\x02\x05\x01\x01\x05\x03\x04", // 𠶶
+ 0x20db7: "\x04\x01\x04\x03\x01\x02\x05\x01\x02\x02\x05\x01", // 𠶷
+ 0x20db8: "\x02\x05\x01\x03\x04\x03\x04\x02\x05\x01\x05\x02", // 𠶸
+ 0x20db9: "\x02\x05\x01\x05\x05\x04\x04\x04\x04\x03\x01\x05", // 𠶹
+ 0x20dba: "\x02\x05\x01\x01\x02\x05\x03\x04\x02\x01\x05\x04", // 𠶺
+ 0x20dbb: "\x02\x05\x01\x02\x05\x01\x01\x02\x02\x01\x01\x01", // 𠶻
+ 0x20dbc: "\x02\x05\x01\x02\x05\x01\x01\x01\x05\x05\x05\x05", // 𠶼
+ 0x20dbd: "\x02\x05\x01\x05\x05\x04\x05\x05\x04\x01\x02\x02", // 𠶽
+ 0x20dbe: "\x02\x05\x01\x01\x02\x01\x02\x01\x02\x05\x01\x02", // 𠶾
+ 0x20dbf: "\x02\x05\x01\x01\x03\x04\x04\x03\x01\x01\x01\x02", // 𠶿
+ 0x20dc0: "\x02\x05\x01\x01\x03\x02\x05\x02\x02\x01\x03\x04", // 𠷀
+ 0x20dc1: "\x02\x05\x01\x04\x03\x01\x03\x05\x01\x01\x02\x02", // 𠷁
+ 0x20dc2: "\x02\x05\x01\x05\x04\x02\x05\x01\x04\x05\x04\x04", // 𠷂
+ 0x20dc3: "\x02\x05\x01\x04\x04\x05\x03\x04\x03\x04\x05\x04", // 𠷃
+ 0x20dc4: "\x02\x05\x01\x04\x01\x03\x03\x01\x01\x02\x05\x02", // 𠷄
+ 0x20dc5: "\x02\x05\x01\x01\x02\x01\x02\x05\x02\x02\x05\x02", // 𠷅
+ 0x20dc6: "\x02\x05\x01\x01\x02\x01\x02\x03\x01\x02\x01\x01", // 𠷆
+ 0x20dc7: "\x02\x05\x01\x04\x01\x05\x03\x03\x01\x05\x02\x05", // 𠷇
+ 0x20dc8: "\x02\x05\x01\x03\x03\x02\x05\x01\x01\x01\x01\x02", // 𠷈
+ 0x20dc9: "\x02\x05\x01\x05\x03\x02\x05\x01\x04\x05\x04", // 𠷉
+ 0x20dca: "\x02\x05\x01\x03\x02\x01\x02\x05\x01\x01\x03\x05", // 𠷊
+ 0x20dcb: "\x02\x05\x01\x01\x03\x02\x05\x01\x01\x05\x02\x01", // 𠷋
+ 0x20dcc: "\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04\x02\x02", // 𠷌
+ 0x20dcd: "\x02\x05\x01\x05\x01\x01\x02\x04\x01\x03\x04\x05", // 𠷍
+ 0x20dce: "\x05\x01\x05\x01\x02\x01\x01\x02\x01\x02\x05\x01", // 𠷎
+ 0x20dcf: "\x03\x05\x04\x02\x05\x01\x02\x02\x05\x02\x05\x01", // 𠷏
+ 0x20dd0: "\x02\x05\x01\x04\x04\x02\x01\x02\x05\x01\x01\x01", // 𠷐
+ 0x20dd1: "\x02\x05\x01\x05\x04\x03\x03\x04\x03\x05\x05\x04", // 𠷑
+ 0x20dd2: "\x02\x05\x01\x03\x03\x02\x04\x02\x05\x01\x01\x01", // 𠷒
+ 0x20dd3: "\x02\x05\x01\x02\x01\x01\x05\x02\x05\x01\x03\x04", // 𠷓
+ 0x20dd4: "\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x05", // 𠷔
+ 0x20dd5: "\x02\x05\x01\x03\x05\x01\x02\x05\x01\x02\x01\x04", // 𠷕
+ 0x20dd6: "\x02\x05\x01\x04\x04\x05\x03\x05\x03\x04\x05\x04", // 𠷖
+ 0x20dd7: "\x04\x01\x03\x04\x01\x03\x03\x03\x03\x02\x05\x01", // 𠷗
+ 0x20dd8: "\x02\x05\x01\x04\x03\x03\x04\x03\x01\x02\x03\x04", // 𠷘
+ 0x20dd9: "\x02\x05\x01\x02\x05\x01\x01\x01\x03\x01\x03\x04", // 𠷙
+ 0x20dda: "\x02\x05\x01\x02\x05\x01\x01\x01\x02\x01\x02\x01", // 𠷚
+ 0x20ddb: "\x02\x05\x01\x01\x03\x04\x05\x02\x05\x03\x05\x04", // 𠷛
+ 0x20ddc: "\x03\x04\x03\x04\x01\x02\x01\x03\x05\x02\x05\x01", // 𠷜
+ 0x20ddd: "\x02\x05\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01", // 𠷝
+ 0x20dde: "\x03\x05\x04\x03\x05\x02\x04\x01\x02\x02\x05\x01", // 𠷞
+ 0x20ddf: "\x02\x05\x01\x02\x05\x01\x02\x01\x03\x04\x03\x02", // 𠷟
+ 0x20de0: "\x01\x03\x02\x05\x01\x01\x05\x03\x04\x02\x05\x01", // 𠷠
+ 0x20de1: "\x01\x03\x02\x05\x01\x01\x03\x04\x01\x02\x05\x01", // 𠷡
+ 0x20de2: "\x02\x05\x01\x03\x01\x01\x02\x01\x02\x01\x01\x01\x02", // 𠷢
+ 0x20de3: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01\x04", // 𠷣
+ 0x20de4: "\x02\x05\x01\x03\x05\x01\x01\x03\x05\x05\x01\x05", // 𠷤
+ 0x20de5: "\x02\x05\x01\x04\x01\x02\x05\x01\x04\x05\x01\x02", // 𠷥
+ 0x20de6: "\x02\x05\x01\x03\x05\x02\x05\x01\x03\x05\x05\x03", // 𠷦
+ 0x20de7: "\x02\x05\x01\x01\x01\x04\x03\x03\x04\x05\x03\x04", // 𠷧
+ 0x20de8: "\x02\x05\x01\x03\x05\x01\x03\x02\x05\x01\x02\x02", // 𠷨
+ 0x20de9: "\x02\x05\x01\x04\x03\x01\x01\x02\x01\x05\x03\x04", // 𠷩
+ 0x20dea: "\x02\x05\x01\x04\x04\x05\x01\x02\x01\x02\x05\x01", // 𠷪
+ 0x20deb: "\x01\x02\x02\x05\x01\x02\x05\x01\x03\x05\x03\x04", // 𠷫
+ 0x20dec: "\x02\x05\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 𠷬
+ 0x20ded: "\x02\x05\x01\x05\x02\x02\x05\x01\x05\x04\x05\x02", // 𠷭
+ 0x20dee: "\x02\x05\x01\x01\x01\x02\x01\x05\x05\x04\x01\x04", // 𠷮
+ 0x20def: "\x02\x05\x01\x05\x02\x01\x03\x02\x05\x01\x01\x01", // 𠷯
+ 0x20df0: "\x02\x05\x01\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 𠷰
+ 0x20df1: "\x01\x01\x03\x04\x01\x02\x02\x01\x01\x02\x05\x01", // 𠷱
+ 0x20df2: "\x02\x05\x01\x05\x01\x01\x02\x05\x01\x01\x02\x04", // 𠷲
+ 0x20df3: "\x02\x05\x01\x01\x03\x05\x04\x02\x04\x02\x05\x01", // 𠷳
+ 0x20df4: "\x02\x05\x01\x03\x03\x02\x05\x05\x04\x03\x05\x04", // 𠷴
+ 0x20df5: "\x02\x05\x01\x05\x05\x04\x04\x04\x04\x01\x02\x04", // 𠷵
+ 0x20df6: "\x02\x05\x01\x03\x05\x04\x01\x03\x01\x01\x02\x01", // 𠷶
+ 0x20df7: "\x03\x01\x03\x04\x01\x01\x02\x01\x04\x02\x05\x01", // 𠷷
+ 0x20df8: "\x02\x05\x01\x01\x02\x01\x02\x05\x01\x04\x03\x01", // 𠷸
+ 0x20df9: "\x02\x05\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 𠷹
+ 0x20dfa: "\x02\x05\x01\x01\x02\x04\x05\x05\x02\x01\x05\x03", // 𠷺
+ 0x20dfb: "\x02\x05\x01\x01\x02\x05\x03\x05\x01\x01\x02\x04", // 𠷻
+ 0x20dfc: "\x02\x05\x01\x01\x03\x01\x02\x03\x04\x05\x03\x04", // 𠷼
+ 0x20dfd: "\x02\x05\x01\x02\x05\x01\x01\x02\x05\x02\x03\x04", // 𠷽
+ 0x20dfe: "\x02\x05\x01\x02\x05\x01\x01\x01\x02\x01\x05\x04", // 𠷾
+ 0x20dff: "\x02\x05\x01\x03\x01\x02\x01\x01\x04\x05\x04\x04", // 𠷿
+ 0x20e00: "\x02\x05\x01\x03\x05\x04\x04\x01\x03\x04\x03\x04", // 𠸀
+ 0x20e01: "\x02\x05\x01\x04\x04\x01\x03\x03\x03\x05\x03\x04", // 𠸁
+ 0x20e02: "\x02\x05\x01\x04\x04\x05\x03\x04\x01\x03\x04\x04", // 𠸂
+ 0x20e03: "\x02\x05\x01\x05\x01\x05\x05\x01\x05\x01\x03\x04", // 𠸃
+ 0x20e04: "\x02\x05\x01\x01\x02\x01\x02\x02\x05\x01\x03\x04", // 𠸄
+ 0x20e05: "\x02\x05\x01\x02\x05\x01\x01\x03\x05\x04\x05\x04", // 𠸅
+ 0x20e06: "\x04\x01\x03\x05\x03\x04\x01\x02\x01\x02\x05\x01", // 𠸆
+ 0x20e07: "\x02\x05\x01\x05\x01\x05\x05\x01\x05\x01\x03\x04", // 𠸇
+ 0x20e08: "\x02\x05\x01\x02\x05\x01\x01\x02\x01\x01\x02\x01", // 𠸈
+ 0x20e09: "\x02\x05\x01\x02\x05\x02\x03\x05\x04\x02\x05\x01", // 𠸉
+ 0x20e0a: "\x02\x05\x01\x01\x03\x04\x01\x02\x02\x01\x01\x01", // 𠸊
+ 0x20e0b: "\x02\x05\x01\x01\x02\x01\x02\x01\x02\x02\x05\x01", // 𠸋
+ 0x20e0c: "\x02\x05\x01\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 𠸌
+ 0x20e0d: "\x02\x05\x01\x04\x03\x01\x01\x02\x01\x01\x03\x04", // 𠸍
+ 0x20e0e: "\x02\x05\x01\x05\x03\x01\x05\x04\x03\x01\x01\x02", // 𠸎
+ 0x20e0f: "\x02\x05\x01\x01\x02\x01\x02\x05\x03\x02\x05\x01", // 𠸏
+ 0x20e10: "\x02\x05\x01\x04\x05\x02\x03\x04\x03\x04\x01\x05", // 𠸐
+ 0x20e11: "\x02\x05\x01\x05\x04\x03\x02\x05\x01\x01\x02\x02", // 𠸑
+ 0x20e12: "\x02\x05\x01\x03\x02\x02\x05\x01\x01\x02\x03\x04", // 𠸒
+ 0x20e13: "\x02\x05\x01\x01\x02\x01\x03\x01\x02\x02\x05\x01", // 𠸓
+ 0x20e14: "\x02\x05\x01\x01\x02\x02\x04\x01\x02\x05\x02", // 𠸔
+ 0x20e15: "\x02\x05\x01\x03\x05\x05\x04\x02\x05\x01\x01\x05", // 𠸕
+ 0x20e16: "\x02\x05\x01\x01\x02\x01\x02\x03\x04\x01\x05\x04", // 𠸖
+ 0x20e17: "\x04\x05\x02\x03\x04\x05\x03\x01\x02\x02\x05\x01", // 𠸗
+ 0x20e18: "\x02\x05\x01\x03\x02\x03\x04\x03\x04\x02\x05\x01", // 𠸘
+ 0x20e19: "\x01\x02\x02\x05\x01\x01\x01\x02\x01\x01\x03\x02", // 𠸙
+ 0x20e1a: "\x02\x05\x01\x01\x02\x02\x03\x05\x02\x05\x01", // 𠸚
+ 0x20e1b: "\x03\x05\x04\x02\x05\x01\x03\x01\x02\x01\x03\x05", // 𠸛
+ 0x20e1c: "\x03\x01\x02\x01\x03\x05\x03\x05\x04\x02\x05\x01", // 𠸜
+ 0x20e1d: "\x02\x05\x01\x02\x01\x05\x01\x01\x02\x01\x03\x04", // 𠸝
+ 0x20e1e: "\x02\x05\x01\x04\x03\x03\x04\x02\x01\x02\x05\x01", // 𠸞
+ 0x20e1f: "\x02\x05\x01\x01\x03\x02\x04\x02\x05\x02\x02\x01", // 𠸟
+ 0x20e20: "\x02\x05\x01\x04\x01\x03\x02\x03\x04\x02\x05\x01", // 𠸠
+ 0x20e21: "\x02\x05\x01\x04\x04\x01\x03\x02\x05\x02\x02\x01", // 𠸡
+ 0x20e22: "\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 𠸢
+ 0x20e23: "\x02\x05\x01\x05\x05\x04\x04\x04\x04\x01\x02\x01", // 𠸣
+ 0x20e24: "\x02\x05\x01\x03\x03\x02\x01\x02\x01\x01\x02\x04", // 𠸤
+ 0x20e25: "\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01\x01\x02", // 𠸥
+ 0x20e26: "\x02\x05\x01\x03\x01\x01\x03\x02\x05\x01\x01\x01", // 𠸦
+ 0x20e27: "\x02\x05\x01\x04\x04\x02\x03\x05\x04\x02\x05\x01", // 𠸧
+ 0x20e28: "\x02\x05\x01\x03\x02\x02\x05\x01\x01\x02\x01\x01", // 𠸨
+ 0x20e29: "\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𠸩
+ 0x20e2a: "\x02\x05\x01\x04\x04\x01\x03\x05\x04\x02\x05\x01", // 𠸪
+ 0x20e2b: "\x02\x05\x01\x01\x01\x01\x03\x04\x01\x01\x03\x04", // 𠸫
+ 0x20e2c: "\x02\x05\x01\x03\x02\x05\x01\x01\x04\x05\x05\x04", // 𠸬
+ 0x20e2d: "\x02\x05\x01\x01\x01\x02\x01\x03\x04\x02\x05\x01", // 𠸭
+ 0x20e2e: "\x02\x05\x01\x02\x01\x01\x05\x02\x05\x01\x01\x05", // 𠸮
+ 0x20e2f: "\x02\x05\x01\x01\x02\x05\x01\x01\x05\x03\x01\x05", // 𠸯
+ 0x20e30: "\x02\x05\x01\x05\x05\x04\x05\x03\x03\x05\x03\x04", // 𠸰
+ 0x20e31: "\x02\x05\x01\x02\x05\x01\x02\x01\x01\x02\x03\x04", // 𠸱
+ 0x20e32: "\x01\x05\x04\x05\x04\x02\x05\x03\x05\x02\x05\x01", // 𠸲
+ 0x20e33: "\x02\x05\x01\x05\x02\x01\x02\x05\x03\x04\x05", // 𠸳
+ 0x20e34: "\x02\x05\x01\x01\x01\x02\x01\x03\x04\x05\x03\x04", // 𠸴
+ 0x20e35: "\x02\x05\x01\x02\x05\x01\x01\x01\x01\x05\x05\x05", // 𠸵
+ 0x20e36: "\x02\x05\x01\x02\x05\x01\x01\x03\x04\x04\x04\x01\x05", // 𠸶
+ 0x20e37: "\x02\x05\x01\x04\x04\x01\x03\x04\x04\x03\x05\x02\x01", // 𠸷
+ 0x20e38: "\x02\x05\x01\x01\x03\x01\x01\x05\x03\x04\x02\x05\x01", // 𠸸
+ 0x20e39: "\x02\x05\x01\x01\x02\x05\x01\x01\x05\x03\x03\x03\x04", // 𠸹
+ 0x20e3a: "\x02\x05\x01\x04\x03\x01\x05\x02\x03\x04\x05\x04", // 𠸺
+ 0x20e3b: "\x02\x05\x01\x05\x01\x01\x01\x01\x02\x05\x04", // 𠸻
+ 0x20e3c: "\x02\x05\x01\x01\x05\x03\x01\x02\x04\x05\x04", // 𠸼
+ 0x20e3d: "\x02\x05\x01\x05\x01\x03\x03\x05\x04\x05\x04", // 𠸽
+ 0x20e3e: "\x02\x05\x01\x03\x05\x01\x01\x03\x04\x05\x04", // 𠸾
+ 0x20e3f: "\x02\x01\x02\x05\x01\x01\x03\x05\x05\x03\x02\x05\x01", // 𠸿
+ 0x20e40: "\x02\x05\x01\x05\x02\x01\x03\x05\x05\x04\x02\x03\x04", // 𠹀
+ 0x20e41: "\x02\x05\x01\x04\x04\x05\x03\x05\x03\x03\x05\x04\x04", // 𠹁
+ 0x20e42: "\x02\x05\x01\x04\x01\x03\x04\x01\x02\x01\x02\x01\x01\x05", // 𠹂
+ 0x20e43: "\x02\x05\x01\x02\x05\x01\x03\x05\x02\x05\x02\x02\x01", // 𠹃
+ 0x20e44: "\x02\x05\x01\x05\x04\x02\x05\x04\x03\x01\x01\x02\x01", // 𠹄
+ 0x20e45: "\x02\x05\x01\x01\x02\x02\x01\x03\x04\x02\x04\x04\x04", // 𠹅
+ 0x20e46: "\x02\x05\x01\x01\x02\x02\x01\x01\x01\x03\x05\x03\x05", // 𠹆
+ 0x20e47: "\x02\x05\x01\x03\x02\x05\x03\x04\x01\x01\x05\x01\x05", // 𠹇
+ 0x20e48: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x01\x01", // 𠹈
+ 0x20e49: "\x02\x04\x03\x04\x05\x02\x05\x01\x05\x02\x05\x01\x01", // 𠹉
+ 0x20e4a: "\x02\x05\x01\x01\x02\x01\x02\x02\x05\x01\x01\x01\x02", // 𠹊
+ 0x20e4b: "\x02\x05\x01\x04\x01\x03\x04\x01\x03\x01\x01\x03\x04", // 𠹋
+ 0x20e4c: "\x02\x05\x01\x05\x04\x03\x05\x04\x01\x01\x05\x01\x05", // 𠹌
+ 0x20e4d: "\x02\x05\x01\x04\x04\x05\x03\x04\x03\x04\x02\x05\x01", // 𠹍
+ 0x20e4e: "\x02\x05\x01\x03\x02\x01\x02\x03\x04\x04\x04\x04\x04", // 𠹎
+ 0x20e4f: "\x02\x05\x01\x04\x05\x04\x04\x02\x05\x01\x02\x01\x04", // 𠹏
+ 0x20e50: "\x02\x05\x01\x03\x04\x03\x04\x01\x02\x01\x03\x05\x04", // 𠹐
+ 0x20e51: "\x02\x05\x01\x03\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 𠹑
+ 0x20e52: "\x02\x05\x01\x04\x04\x05\x02\x05\x01\x03\x02\x05\x01", // 𠹒
+ 0x20e53: "\x02\x05\x01\x03\x05\x01\x03\x03\x01\x01\x02\x05\x02", // 𠹓
+ 0x20e54: "\x02\x05\x01\x04\x01\x03\x05\x01\x01\x02\x02\x05\x01", // 𠹔
+ 0x20e55: "\x02\x05\x01\x03\x04\x04\x03\x05\x03\x03\x03\x05\x04", // 𠹕
+ 0x20e56: "\x02\x05\x01\x05\x01\x03\x01\x02\x02\x01\x05\x03\x04", // 𠹖
+ 0x20e57: "\x02\x05\x01\x01\x02\x01\x03\x03\x01\x02\x02\x05\x01", // 𠹗
+ 0x20e58: "\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05\x04", // 𠹘
+ 0x20e59: "\x02\x05\x01\x01\x01\x01\x02\x05\x03\x03\x01\x01\x02", // 𠹙
+ 0x20e5a: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𠹚
+ 0x20e5b: "\x02\x05\x01\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 𠹛
+ 0x20e5c: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01\x02\x01", // 𠹜
+ 0x20e5d: "\x01\x02\x03\x04\x01\x02\x03\x04\x03\x05\x02\x05\x01", // 𠹝
+ 0x20e5e: "\x02\x05\x01\x03\x04\x01\x05\x02\x05\x01\x01\x03\x02", // 𠹞
+ 0x20e5f: "\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x02\x05\x01", // 𠹟
+ 0x20e60: "\x02\x05\x01\x03\x02\x01\x05\x01\x01\x01\x02\x03\x04", // 𠹠
+ 0x20e61: "\x02\x05\x01\x03\x02\x05\x01\x01\x01\x01\x01\x02\x01", // 𠹡
+ 0x20e62: "\x01\x02\x01\x02\x05\x01\x03\x05\x05\x04\x02\x05\x01", // 𠹢
+ 0x20e63: "\x02\x05\x01\x02\x05\x01\x01\x02\x01\x03\x01\x03\x04", // 𠹣
+ 0x20e64: "\x02\x05\x01\x01\x02\x01\x01\x02\x01\x04\x05\x04\x04", // 𠹤
+ 0x20e65: "\x02\x05\x01\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 𠹥
+ 0x20e66: "\x02\x05\x01\x01\x05\x01\x05\x05\x05\x04\x02\x03\x04", // 𠹦
+ 0x20e67: "\x04\x01\x04\x03\x02\x05\x01\x03\x04\x02\x05\x01", // 𠹧
+ 0x20e68: "\x03\x05\x05\x01\x03\x02\x05\x01\x03\x01\x02\x01\x01", // 𠹨
+ 0x20e69: "\x05\x01\x01\x03\x02\x05\x01\x02\x03\x03\x03\x03\x04", // 𠹩
+ 0x20e6a: "\x04\x01\x04\x03\x01\x02\x05\x01\x03\x05\x02\x05\x01", // 𠹪
+ 0x20e6b: "\x01\x02\x03\x04\x03\x04\x01\x02\x05\x02\x05\x01\x01", // 𠹫
+ 0x20e6c: "\x02\x05\x05\x02\x05\x02\x05\x01\x01\x01\x03\x05", // 𠹬
+ 0x20e6d: "\x02\x05\x01\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02", // 𠹭
+ 0x20e6e: "\x02\x05\x01\x02\x01\x02\x01\x01\x05\x03\x05\x01\x01\x02", // 𠹮
+ 0x20e6f: "\x02\x05\x01\x05\x02\x01\x05\x03\x05\x01\x02\x01", // 𠹯
+ 0x20e70: "\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04\x03\x04\x05\x04", // 𠹰
+ 0x20e71: "\x02\x05\x01\x04\x04\x01\x01\x05\x01\x05\x01\x02\x03\x04", // 𠹱
+ 0x20e72: "\x02\x05\x01\x04\x04\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 𠹲
+ 0x20e73: "\x02\x05\x01\x03\x05\x04\x01\x05\x02\x01\x02\x03\x04", // 𠹳
+ 0x20e74: "\x02\x05\x01\x05\x01\x01\x03\x02\x05\x01\x05\x02", // 𠹴
+ 0x20e75: "\x02\x05\x01\x02\x05\x01\x01\x04\x04\x05\x05\x03\x01", // 𠹵
+ 0x20e76: "\x02\x05\x01\x01\x03\x02\x05\x01\x01\x04\x03\x01\x02", // 𠹶
+ 0x20e77: "\x02\x05\x01\x05\x03\x01\x03\x01\x02\x01\x05\x03\x04", // 𠹷
+ 0x20e78: "\x02\x05\x01\x03\x04\x01\x05\x04\x01\x03\x05\x03\x04", // 𠹸
+ 0x20e79: "\x02\x05\x01\x03\x02\x03\x04\x01\x02\x05\x01\x02\x02", // 𠹹
+ 0x20e7a: "\x02\x05\x01\x01\x02\x01\x02\x05\x01\x01\x02\x01\x01", // 𠹺
+ 0x20e7b: "\x02\x05\x01\x03\x05\x01\x01\x03\x05\x01\x01\x03\x04", // 𠹻
+ 0x20e7c: "\x02\x05\x01\x04\x04\x05\x04\x01\x04\x03\x01\x01\x02", // 𠹼
+ 0x20e7d: "\x02\x05\x01\x01\x02\x02\x04\x01\x05\x03\x03\x04", // 𠹽
+ 0x20e7e: "\x03\x04\x04\x03\x04\x05\x05\x04\x05\x03\x02\x05\x01", // 𠹾
+ 0x20e7f: "\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x01", // 𠹿
+ 0x20e80: "\x02\x05\x01\x04\x04\x05\x04\x03\x03\x04\x02\x05\x01", // 𠺀
+ 0x20e81: "\x02\x05\x01\x05\x01\x05\x04\x01\x05\x01\x05\x04\x01", // 𠺁
+ 0x20e82: "\x02\x05\x01\x01\x03\x04\x01\x02\x02\x01\x05\x03\x04", // 𠺂
+ 0x20e83: "\x01\x02\x01\x01\x03\x01\x01\x05\x03\x04\x02\x05\x01", // 𠺃
+ 0x20e84: "\x02\x05\x01\x01\x03\x04\x04\x03\x02\x05\x01\x01\x05", // 𠺄
+ 0x20e85: "\x02\x05\x01\x01\x03\x05\x04\x02\x02\x04\x04\x04\x04", // 𠺅
+ 0x20e86: "\x02\x05\x01\x01\x03\x04\x01\x02\x01\x01\x01\x05\x04", // 𠺆
+ 0x20e87: "\x01\x02\x01\x02\x05\x01\x01\x02\x02\x01\x02\x05\x01", // 𠺇
+ 0x20e88: "\x02\x05\x01\x01\x02\x01\x02\x03\x01\x01\x02\x01\x02", // 𠺈
+ 0x20e89: "\x02\x05\x01\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02", // 𠺉
+ 0x20e8a: "\x02\x05\x01\x01\x02\x01\x02\x01\x02\x02\x01\x01\x01", // 𠺊
+ 0x20e8b: "\x02\x05\x01\x03\x01\x01\x02\x05\x02\x05\x01\x03\x04", // 𠺋
+ 0x20e8c: "\x02\x05\x01\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𠺌
+ 0x20e8d: "\x02\x05\x01\x03\x03\x02\x05\x01\x01\x01\x01\x03\x04", // 𠺍
+ 0x20e8e: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x01", // 𠺎
+ 0x20e8f: "\x02\x05\x01\x01\x02\x05\x04\x05\x04\x01\x05\x04\x01", // 𠺏
+ 0x20e90: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x03\x05", // 𠺐
+ 0x20e91: "\x02\x05\x01\x03\x01\x04\x03\x01\x04\x01\x03\x04\x04", // 𠺑
+ 0x20e92: "\x02\x05\x01\x03\x02\x05\x01\x01\x01\x04\x05\x04\x04", // 𠺒
+ 0x20e93: "\x02\x05\x01\x03\x04\x01\x01\x02\x04\x03\x01\x02\x02", // 𠺓
+ 0x20e94: "\x02\x05\x01\x03\x05\x01\x01\x02\x03\x05\x01\x01\x02", // 𠺔
+ 0x20e95: "\x02\x05\x01\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 𠺕
+ 0x20e96: "\x02\x05\x01\x04\x01\x02\x05\x01\x02\x01\x03\x05\x04", // 𠺖
+ 0x20e97: "\x02\x05\x01\x04\x03\x01\x02\x03\x04\x04\x05\x04", // 𠺗
+ 0x20e98: "\x02\x05\x01\x04\x04\x01\x04\x05\x01\x01\x05\x03\x04", // 𠺘
+ 0x20e99: "\x02\x05\x01\x05\x01\x01\x05\x03\x04\x04\x05\x04", // 𠺙
+ 0x20e9a: "\x02\x05\x01\x01\x01\x02\x01\x04\x03\x01\x01\x02\x01", // 𠺚
+ 0x20e9b: "\x01\x02\x01\x03\x01\x05\x03\x01\x03\x04\x02\x05\x01", // 𠺛
+ 0x20e9c: "\x02\x05\x01\x01\x02\x02\x01\x02\x01\x03\x03\x05", // 𠺜
+ 0x20e9d: "\x02\x05\x01\x01\x02\x03\x04\x03\x05\x04\x02\x05\x01", // 𠺝
+ 0x20e9e: "\x01\x04\x05\x02\x01\x03\x04\x01\x02\x01\x02\x05\x01", // 𠺞
+ 0x20e9f: "\x02\x05\x01\x04\x01\x03\x01\x02\x05\x01\x01\x01\x02", // 𠺟
+ 0x20ea0: "\x02\x05\x01\x04\x01\x04\x03\x01\x02\x05\x02\x02\x05", // 𠺠
+ 0x20ea1: "\x02\x05\x01\x04\x01\x05\x03\x03\x04\x03\x05\x03\x04", // 𠺡
+ 0x20ea2: "\x02\x05\x01\x04\x04\x05\x01\x03\x05\x03\x03\x03\x04", // 𠺢
+ 0x20ea3: "\x02\x05\x01\x05\x01\x01\x02\x04\x01\x03\x04\x02\x02", // 𠺣
+ 0x20ea4: "\x05\x02\x03\x05\x02\x03\x03\x03\x01\x02\x02\x05\x01", // 𠺤
+ 0x20ea5: "\x05\x03\x02\x05\x01\x03\x04\x04\x03\x04\x05\x05\x04", // 𠺥
+ 0x20ea6: "\x02\x05\x01\x03\x02\x01\x02\x02\x01\x02\x05\x01\x01", // 𠺦
+ 0x20ea7: "\x02\x05\x01\x03\x02\x02\x03\x05\x04\x01\x02\x03\x04", // 𠺧
+ 0x20ea8: "\x02\x05\x01\x01\x02\x02\x01\x01\x01\x04\x05\x04\x04", // 𠺨
+ 0x20ea9: "\x02\x05\x01\x04\x04\x01\x04\x01\x05\x04\x03\x02\x05", // 𠺩
+ 0x20eaa: "\x02\x05\x01\x03\x01\x01\x05\x04\x03\x01\x02\x03\x04", // 𠺪
+ 0x20eab: "\x02\x05\x01\x04\x03\x01\x02\x03\x04\x04\x04\x01\x02", // 𠺫
+ 0x20eac: "\x02\x05\x01\x01\x02\x01\x02\x01\x03\x04\x05\x01\x05", // 𠺬
+ 0x20ead: "\x02\x05\x01\x03\x02\x01\x01\x01\x03\x04\x01\x01\x02", // 𠺭
+ 0x20eae: "\x02\x05\x01\x02\x05\x01\x01\x01\x02\x01\x01\x02\x04", // 𠺮
+ 0x20eaf: "\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04\x04\x01\x05", // 𠺯
+ 0x20eb0: "\x02\x05\x01\x03\x01\x02\x03\x04\x03\x05\x02\x03\x04", // 𠺰
+ 0x20eb1: "\x02\x05\x01\x01\x02\x01\x03\x05\x04\x04\x05\x04\x04", // 𠺱
+ 0x20eb2: "\x02\x05\x01\x01\x02\x01\x01\x03\x01\x01\x05\x03\x04", // 𠺲
+ 0x20eb3: "\x02\x05\x01\x01\x03\x05\x04\x03\x05\x02\x05\x01\x01", // 𠺳
+ 0x20eb4: "\x02\x05\x01\x01\x02\x02\x03\x05\x04\x02\x05\x01", // 𠺴
+ 0x20eb5: "\x02\x05\x01\x01\x02\x02\x01\x01\x01\x01\x05\x03\x04", // 𠺵
+ 0x20eb6: "\x02\x05\x01\x05\x05\x04\x04\x04\x04\x02\x05\x03\x04", // 𠺶
+ 0x20eb7: "\x02\x05\x01\x04\x05\x02\x04\x02\x05\x01\x03\x05", // 𠺷
+ 0x20eb8: "\x02\x05\x01\x04\x04\x01\x05\x01\x01\x04\x05\x05\x04", // 𠺸
+ 0x20eb9: "\x02\x05\x01\x01\x02\x02\x01\x05\x01\x05\x03\x04", // 𠺹
+ 0x20eba: "\x02\x05\x01\x01\x02\x03\x04\x01\x02\x01\x01\x02\x01", // 𠺺
+ 0x20ebb: "\x02\x05\x01\x05\x05\x04\x04\x04\x04\x03\x05\x04", // 𠺻
+ 0x20ebc: "\x02\x05\x01\x04\x03\x01\x02\x03\x04\x03\x05\x03\x04", // 𠺼
+ 0x20ebd: "\x02\x05\x01\x03\x04\x01\x02\x03\x04\x03\x05\x05\x04", // 𠺽
+ 0x20ebe: "\x02\x05\x01\x01\x01\x02\x01\x03\x01\x01\x02\x03\x04", // 𠺾
+ 0x20ebf: "\x02\x05\x01\x01\x03\x03\x02\x05\x01\x01\x02\x03\x04", // 𠺿
+ 0x20ec0: "\x02\x05\x01\x03\x03\x02\x01\x02\x01\x02\x01\x03\x04", // 𠻀
+ 0x20ec1: "\x04\x03\x01\x01\x01\x03\x05\x05\x01\x02\x05\x01", // 𠻁
+ 0x20ec2: "\x02\x05\x01\x02\x05\x02\x04\x01\x01\x01\x02\x05\x01", // 𠻂
+ 0x20ec3: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x01\x01\x02", // 𠻃
+ 0x20ec4: "\x02\x05\x01\x01\x02\x02\x04\x01\x05\x03\x02\x05", // 𠻄
+ 0x20ec5: "\x02\x05\x01\x01\x03\x02\x05\x01\x03\x04\x05\x04", // 𠻅
+ 0x20ec6: "\x02\x05\x01\x05\x02\x01\x02\x05\x01\x01\x01\x02", // 𠻆
+ 0x20ec7: "\x02\x05\x01\x01\x02\x03\x04\x02\x05\x01\x01\x05\x03", // 𠻇
+ 0x20ec8: "\x02\x05\x01\x04\x04\x05\x02\x05\x01\x01\x05\x03\x01", // 𠻈
+ 0x20ec9: "\x02\x05\x01\x03\x01\x02\x02\x05\x01\x04\x05\x04", // 𠻉
+ 0x20eca: "\x02\x05\x01\x04\x01\x03\x01\x02\x02\x01\x02\x05\x02", // 𠻊
+ 0x20ecb: "\x02\x05\x01\x01\x02\x02\x01\x03\x02\x05\x01\x01\x02", // 𠻋
+ 0x20ecc: "\x05\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 𠻌
+ 0x20ecd: "\x02\x05\x01\x03\x05\x03\x02\x01\x05\x01\x01\x05\x04", // 𠻍
+ 0x20ece: "\x02\x05\x01\x04\x01\x03\x04\x01\x02\x02\x01\x01\x01", // 𠻎
+ 0x20ecf: "\x02\x05\x01\x01\x02\x01\x03\x02\x03\x04\x05\x03\x04", // 𠻏
+ 0x20ed0: "\x02\x05\x01\x01\x01\x02\x01\x03\x05\x04\x02\x05\x01", // 𠻐
+ 0x20ed1: "\x02\x05\x01\x03\x04\x01\x03\x02\x05\x02\x05\x02", // 𠻑
+ 0x20ed2: "\x02\x05\x01\x01\x03\x01\x03\x04\x02\x05\x01\x01\x05", // 𠻒
+ 0x20ed3: "\x02\x05\x01\x04\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 𠻓
+ 0x20ed4: "\x02\x05\x01\x01\x05\x03\x02\x01\x01\x03\x05\x03\x03\x04", // 𠻔
+ 0x20ed5: "\x02\x05\x01\x04\x04\x05\x01\x02\x02\x01\x01\x01\x05\x04", // 𠻕
+ 0x20ed6: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x03\x01\x01\x02\x01", // 𠻖
+ 0x20ed7: "\x02\x05\x01\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 𠻗
+ 0x20ed8: "\x02\x05\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𠻘
+ 0x20ed9: "\x02\x05\x01\x05\x04\x02\x05\x03\x04\x01\x02\x05\x01\x01", // 𠻙
+ 0x20eda: "\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01", // 𠻚
+ 0x20edb: "\x02\x05\x01\x03\x01\x02\x01\x02\x05\x01\x04\x05\x04", // 𠻛
+ 0x20edc: "\x02\x05\x01\x04\x01\x05\x05\x04\x04\x01\x03\x04\x01\x02", // 𠻜
+ 0x20edd: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x03\x03", // 𠻝
+ 0x20ede: "\x02\x05\x01\x04\x01\x03\x05\x01\x01\x02\x04\x01\x03\x04", // 𠻞
+ 0x20edf: "\x02\x05\x01\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04", // 𠻟
+ 0x20ee0: "\x02\x05\x01\x01\x02\x02\x01\x01\x01\x03\x04\x01\x05\x04", // 𠻠
+ 0x20ee1: "\x04\x05\x01\x01\x05\x03\x04\x03\x03\x01\x02\x02\x05\x01", // 𠻡
+ 0x20ee2: "\x02\x05\x01\x01\x04\x05\x02\x04\x01\x03\x04\x01\x01\x05", // 𠻢
+ 0x20ee3: "\x02\x05\x01\x01\x02\x05\x01\x02\x03\x04\x04\x05\x04", // 𠻣
+ 0x20ee4: "\x02\x05\x01\x04\x04\x05\x01\x02\x05\x01\x02\x01\x03\x04", // 𠻤
+ 0x20ee5: "\x02\x05\x01\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 𠻥
+ 0x20ee6: "\x02\x05\x01\x03\x02\x05\x03\x04\x01\x03\x05\x03\x05\x04", // 𠻦
+ 0x20ee7: "\x02\x05\x01\x01\x02\x03\x04\x03\x01\x02\x01\x02\x05\x01", // 𠻧
+ 0x20ee8: "\x02\x05\x01\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01", // 𠻨
+ 0x20ee9: "\x02\x05\x01\x04\x04\x05\x03\x05\x03\x04\x01\x05\x03\x04", // 𠻩
+ 0x20eea: "\x02\x05\x01\x04\x04\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 𠻪
+ 0x20eeb: "\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01\x04\x05\x04\x04", // 𠻫
+ 0x20eec: "\x02\x05\x01\x01\x02\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 𠻬
+ 0x20eed: "\x02\x05\x02\x02\x05\x01\x02\x02\x05\x03\x05\x02\x05\x01", // 𠻭
+ 0x20eee: "\x01\x03\x04\x03\x04\x02\x03\x04\x02\x05\x02\x05\x01\x01", // 𠻮
+ 0x20eef: "\x02\x05\x01\x01\x02\x01\x03\x03\x01\x02\x04\x05\x04\x04", // 𠻯
+ 0x20ef0: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x05\x01\x01\x01", // 𠻰
+ 0x20ef1: "\x02\x05\x01\x05\x02\x01\x02\x01\x03\x05\x03\x05\x04", // 𠻱
+ 0x20ef2: "\x02\x05\x01\x01\x02\x01\x03\x02\x03\x04\x03\x01\x03\x04", // 𠻲
+ 0x20ef3: "\x02\x05\x01\x01\x02\x05\x01\x02\x03\x04\x03\x01\x03\x04", // 𠻳
+ 0x20ef4: "\x02\x05\x01\x04\x05\x01\x01\x05\x04\x03\x05\x01\x01", // 𠻴
+ 0x20ef5: "\x02\x05\x01\x01\x02\x02\x01\x03\x04\x04\x01\x03\x02", // 𠻵
+ 0x20ef6: "\x02\x05\x01\x01\x02\x01\x02\x02\x05\x01\x01\x01\x02\x02", // 𠻶
+ 0x20ef7: "\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 𠻷
+ 0x20ef8: "\x01\x02\x05\x01\x02\x05\x01\x02\x02\x05\x01\x02\x05\x01", // 𠻸
+ 0x20ef9: "\x02\x05\x01\x04\x04\x01\x01\x01\x03\x04\x02\x04\x04\x04", // 𠻹
+ 0x20efa: "\x02\x05\x01\x01\x02\x01\x01\x02\x01\x05\x05\x01\x02\x01", // 𠻺
+ 0x20efb: "\x02\x05\x01\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x03", // 𠻻
+ 0x20efc: "\x02\x05\x01\x01\x02\x02\x01\x02\x05\x01\x04\x03\x01", // 𠻼
+ 0x20efd: "\x02\x05\x01\x01\x02\x03\x04\x03\x01\x05\x05\x04\x01\x04", // 𠻽
+ 0x20efe: "\x02\x05\x01\x04\x01\x05\x03\x05\x04\x01\x03\x01\x02\x01", // 𠻾
+ 0x20eff: "\x02\x05\x01\x04\x01\x03\x04\x01\x03\x03\x01\x01\x02\x01", // 𠻿
+ 0x20f00: "\x02\x05\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02", // 𠼀
+ 0x20f01: "\x02\x05\x01\x04\x01\x02\x02\x04\x03\x01\x03\x05\x03\x04", // 𠼁
+ 0x20f02: "\x02\x05\x01\x05\x02\x01\x02\x05\x01\x01\x02\x03\x04", // 𠼂
+ 0x20f03: "\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02\x02\x05\x01", // 𠼃
+ 0x20f04: "\x02\x05\x01\x01\x03\x04\x01\x02\x02\x01\x03\x04\x03\x04", // 𠼄
+ 0x20f05: "\x02\x05\x01\x02\x05\x01\x01\x03\x04\x02\x05\x01\x01\x05", // 𠼅
+ 0x20f06: "\x04\x04\x05\x05\x04\x05\x04\x05\x04\x05\x04\x02\x05\x01", // 𠼆
+ 0x20f07: "\x02\x05\x01\x05\x01\x03\x01\x04\x05\x02\x04\x01\x03\x04", // 𠼇
+ 0x20f08: "\x02\x05\x01\x01\x02\x01\x03\x01\x02\x03\x04\x05\x03\x01", // 𠼈
+ 0x20f09: "\x02\x05\x01\x01\x03\x01\x01\x05\x03\x04\x03\x05\x04\x01", // 𠼉
+ 0x20f0a: "\x02\x05\x01\x02\x05\x01\x02\x01\x04\x01\x03\x05\x03\x04", // 𠼊
+ 0x20f0b: "\x02\x05\x01\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01", // 𠼋
+ 0x20f0c: "\x02\x05\x01\x02\x05\x02\x01\x01\x02\x01\x03\x01\x03\x04", // 𠼌
+ 0x20f0d: "\x02\x05\x01\x03\x02\x05\x01\x01\x05\x03\x03\x01\x03\x04", // 𠼍
+ 0x20f0e: "\x02\x05\x01\x03\x02\x05\x01\x01\x04\x03\x01\x02\x03\x04", // 𠼎
+ 0x20f0f: "\x02\x05\x01\x03\x02\x01\x02\x02\x05\x01\x03\x01\x03\x04", // 𠼏
+ 0x20f10: "\x02\x05\x01\x03\x01\x02\x03\x04\x02\x02\x03\x01\x01\x02", // 𠼐
+ 0x20f11: "\x03\x01\x02\x01\x02\x05\x01\x03\x01\x02\x01\x02\x05\x01", // 𠼑
+ 0x20f12: "\x02\x05\x01\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x01", // 𠼒
+ 0x20f13: "\x02\x05\x01\x03\x05\x02\x05\x01\x01\x02\x05\x01\x01\x05", // 𠼓
+ 0x20f14: "\x02\x05\x01\x05\x04\x03\x04\x05\x02\x05\x01\x02\x05\x02", // 𠼔
+ 0x20f15: "\x02\x05\x01\x01\x02\x01\x03\x01\x01\x01\x02\x01\x01\x01", // 𠼕
+ 0x20f16: "\x02\x05\x01\x01\x02\x03\x04\x01\x02\x03\x04\x05\x03\x01", // 𠼖
+ 0x20f17: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02", // 𠼗
+ 0x20f18: "\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01", // 𠼘
+ 0x20f19: "\x02\x05\x01\x01\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04", // 𠼙
+ 0x20f1a: "\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04\x03\x01\x03\x04", // 𠼚
+ 0x20f1b: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x03\x01\x01\x01", // 𠼛
+ 0x20f1c: "\x02\x05\x01\x02\x05\x02\x02\x05\x03\x04\x03\x04\x01\x01", // 𠼜
+ 0x20f1d: "\x02\x05\x01\x03\x01\x02\x03\x04\x02\x02\x01\x02\x03\x04", // 𠼝
+ 0x20f1e: "\x03\x04\x01\x02\x05\x01\x01\x02\x01\x05\x05\x01\x02\x01", // 𠼞
+ 0x20f1f: "\x02\x05\x01\x03\x04\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 𠼟
+ 0x20f20: "\x02\x05\x01\x03\x05\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 𠼠
+ 0x20f21: "\x05\x01\x05\x01\x02\x01\x01\x02\x01\x02\x05\x01\x05\x04", // 𠼡
+ 0x20f22: "\x02\x05\x01\x05\x01\x05\x02\x05\x01\x02\x05\x01\x02\x01\x04", // 𠼢
+ 0x20f23: "\x02\x05\x01\x05\x04\x05\x04\x01\x02\x05\x03\x05\x01\x01", // 𠼣
+ 0x20f24: "\x02\x05\x01\x01\x02\x05\x01\x02\x05\x05\x04\x01\x02\x01", // 𠼤
+ 0x20f25: "\x02\x05\x01\x02\x01\x05\x03\x01\x05\x03\x05\x03\x03\x04", // 𠼥
+ 0x20f26: "\x02\x05\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 𠼦
+ 0x20f27: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x05\x02", // 𠼧
+ 0x20f28: "\x02\x05\x01\x02\x05\x01\x05\x02\x02\x05\x01\x02\x05\x01", // 𠼨
+ 0x20f29: "\x02\x05\x01\x02\x05\x02\x03\x04\x01\x02\x05\x01\x02\x02", // 𠼩
+ 0x20f2a: "\x02\x05\x01\x03\x01\x02\x03\x04\x03\x05\x04\x03\x05\x04", // 𠼪
+ 0x20f2b: "\x02\x05\x01\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x02", // 𠼫
+ 0x20f2c: "\x02\x05\x01\x04\x01\x04\x03\x02\x05\x03\x04\x02\x05\x01", // 𠼬
+ 0x20f2d: "\x02\x05\x01\x03\x01\x01\x02\x05\x02\x01\x02\x03\x04\x01", // 𠼭
+ 0x20f2e: "\x02\x05\x01\x03\x02\x04\x03\x05\x05\x05\x04\x04\x04\x04", // 𠼮
+ 0x20f2f: "\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01\x03\x01\x01\x02", // 𠼯
+ 0x20f30: "\x02\x05\x01\x01\x02\x03\x04\x01\x02\x05\x01\x01\x03\x04", // 𠼰
+ 0x20f31: "\x02\x05\x01\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 𠼱
+ 0x20f32: "\x02\x05\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𠼲
+ 0x20f33: "\x02\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x03\x01\x05", // 𠼳
+ 0x20f34: "\x02\x05\x01\x01\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𠼴
+ 0x20f35: "\x02\x05\x01\x03\x02\x04\x01\x02\x05\x01\x04\x05\x01\x02", // 𠼵
+ 0x20f36: "\x02\x05\x01\x01\x02\x01\x03\x02\x03\x04\x05\x02\x05\x04", // 𠼶
+ 0x20f37: "\x05\x04\x02\x05\x01\x01\x02\x01\x02\x05\x01\x05\x03\x04", // 𠼷
+ 0x20f38: "\x02\x05\x01\x03\x02\x01\x02\x05\x01\x01\x05\x03\x01\x05", // 𠼸
+ 0x20f39: "\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04\x03\x03\x01\x02", // 𠼹
+ 0x20f3a: "\x02\x05\x01\x04\x04\x02\x04\x03\x02\x05\x01\x01\x01\x02", // 𠼺
+ 0x20f3b: "\x02\x05\x01\x01\x02\x02\x01\x01\x01\x03\x04\x01\x02\x01", // 𠼻
+ 0x20f3c: "\x02\x05\x01\x01\x02\x02\x03\x04\x04\x03\x05\x02\x01", // 𠼼
+ 0x20f3d: "\x02\x05\x01\x03\x04\x04\x03\x02\x05\x01\x01\x01\x03\x05", // 𠼽
+ 0x20f3e: "\x02\x05\x01\x02\x05\x02\x04\x04\x05\x01\x01\x02\x03\x04", // 𠼾
+ 0x20f3f: "\x02\x05\x01\x04\x01\x03\x04\x02\x05\x01\x04\x05\x04\x04", // 𠼿
+ 0x20f40: "\x02\x05\x01\x03\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𠽀
+ 0x20f41: "\x02\x05\x01\x02\x01\x05\x03\x01\x05\x03\x05\x04\x03\x05", // 𠽁
+ 0x20f42: "\x02\x05\x01\x05\x01\x05\x04\x03\x02\x05\x01\x01\x01\x02", // 𠽂
+ 0x20f43: "\x02\x05\x01\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04", // 𠽃
+ 0x20f44: "\x02\x05\x01\x01\x02\x01\x04\x05\x03\x04\x01\x02\x03\x04", // 𠽄
+ 0x20f45: "\x02\x05\x01\x01\x01\x01\x03\x04\x03\x02\x01\x05\x01\x01", // 𠽅
+ 0x20f46: "\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01\x02\x05\x03\x04", // 𠽆
+ 0x20f47: "\x02\x05\x01\x04\x04\x01\x03\x02\x05\x01\x01\x01\x02\x01", // 𠽇
+ 0x20f48: "\x02\x05\x01\x04\x04\x01\x01\x05\x03\x04\x01\x05\x03\x04", // 𠽈
+ 0x20f49: "\x02\x05\x01\x04\x04\x01\x04\x05\x03\x04\x01\x02\x03\x04", // 𠽉
+ 0x20f4a: "\x02\x05\x01\x03\x01\x05\x05\x04\x01\x04\x03\x01\x03\x04", // 𠽊
+ 0x20f4b: "\x02\x05\x01\x01\x01\x02\x02\x01\x03\x02\x05\x01\x05", // 𠽋
+ 0x20f4c: "\x02\x05\x01\x01\x04\x05\x02\x04\x04\x04\x04\x05\x01\x01", // 𠽌
+ 0x20f4d: "\x02\x05\x01\x04\x04\x01\x03\x04\x04\x03\x03\x01\x02\x01", // 𠽍
+ 0x20f4e: "\x02\x05\x01\x04\x04\x01\x01\x03\x01\x02\x01\x01\x02\x01", // 𠽎
+ 0x20f4f: "\x02\x05\x01\x05\x02\x03\x05\x03\x02\x01\x05\x01\x01", // 𠽏
+ 0x20f50: "\x02\x05\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𠽐
+ 0x20f51: "\x02\x05\x01\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04", // 𠽑
+ 0x20f52: "\x02\x05\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𠽒
+ 0x20f53: "\x02\x05\x01\x04\x01\x03\x04\x02\x05\x01\x03\x05\x03\x04", // 𠽓
+ 0x20f54: "\x02\x05\x01\x05\x02\x01\x02\x01\x01\x02\x05\x01\x02\x03\x04", // 𠽔
+ 0x20f55: "\x02\x05\x01\x01\x02\x01\x01\x05\x01\x01\x02\x01\x03\x04", // 𠽕
+ 0x20f56: "\x02\x05\x01\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 𠽖
+ 0x20f57: "\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x01\x05\x03\x04", // 𠽗
+ 0x20f58: "\x02\x05\x01\x01\x01\x02\x03\x04\x03\x02\x05\x02\x05\x01", // 𠽘
+ 0x20f59: "\x02\x05\x01\x03\x02\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 𠽙
+ 0x20f5a: "\x01\x02\x05\x01\x02\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𠽚
+ 0x20f5b: "\x02\x05\x01\x05\x02\x03\x04\x04\x05\x01\x01\x05\x04", // 𠽛
+ 0x20f5c: "\x02\x05\x01\x04\x01\x04\x03\x01\x02\x05\x02\x02\x05\x01", // 𠽜
+ 0x20f5d: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02\x01\x03\x04", // 𠽝
+ 0x20f5e: "\x02\x05\x01\x04\x04\x01\x02\x05\x01\x01\x01\x05\x03\x05", // 𠽞
+ 0x20f5f: "\x02\x05\x01\x05\x04\x03\x03\x04\x02\x05\x01\x02\x01\x04", // 𠽟
+ 0x20f60: "\x01\x02\x02\x05\x01\x03\x02\x01\x01\x01\x03\x05\x05\x04", // 𠽠
+ 0x20f61: "\x02\x05\x01\x01\x02\x05\x01\x01\x02\x01\x04\x04\x05\x04\x04", // 𠽡
+ 0x20f62: "\x02\x05\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 𠽢
+ 0x20f63: "\x02\x05\x01\x05\x01\x03\x01\x01\x02\x03\x02\x01\x05\x01\x01", // 𠽣
+ 0x20f64: "\x02\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x01\x05\x03\x04", // 𠽤
+ 0x20f65: "\x02\x05\x01\x01\x02\x05\x02\x02\x01\x01\x02\x01\x01\x02\x01", // 𠽥
+ 0x20f66: "\x02\x05\x01\x04\x04\x01\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 𠽦
+ 0x20f67: "\x02\x05\x01\x01\x05\x04\x01\x02\x01\x01\x05\x04\x01\x02\x01", // 𠽧
+ 0x20f68: "\x02\x05\x01\x04\x04\x05\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 𠽨
+ 0x20f69: "\x02\x05\x01\x03\x01\x04\x03\x01\x04\x05\x01\x01\x01\x01\x02", // 𠽩
+ 0x20f6a: "\x02\x05\x01\x04\x04\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 𠽪
+ 0x20f6b: "\x02\x05\x01\x05\x01\x01\x02\x02\x05\x01\x01\x01\x05\x02\x03", // 𠽫
+ 0x20f6c: "\x02\x05\x01\x01\x01\x01\x02\x05\x01\x01\x01\x03\x04\x05\x04", // 𠽬
+ 0x20f6d: "\x02\x05\x01\x02\x05\x02\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 𠽭
+ 0x20f6e: "\x02\x05\x01\x01\x02\x01\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 𠽮
+ 0x20f6f: "\x02\x05\x01\x01\x02\x01\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 𠽯
+ 0x20f70: "\x02\x05\x01\x04\x04\x05\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 𠽰
+ 0x20f71: "\x02\x05\x01\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x05\x05", // 𠽱
+ 0x20f72: "\x02\x05\x01\x03\x04\x03\x01\x02\x03\x04\x02\x05\x02\x02\x01", // 𠽲
+ 0x20f73: "\x02\x05\x01\x01\x03\x04\x03\x04\x02\x03\x04\x02\x05\x01\x01", // 𠽳
+ 0x20f74: "\x02\x05\x01\x01\x03\x02\x05\x02\x02\x01\x03\x02\x05\x02\x02", // 𠽴
+ 0x20f75: "\x02\x05\x01\x03\x05\x04\x05\x05\x01\x02\x05\x01\x04\x03\x01", // 𠽵
+ 0x20f76: "\x02\x05\x01\x03\x01\x01\x05\x03\x01\x01\x05\x03\x01\x01\x05", // 𠽶
+ 0x20f77: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 𠽷
+ 0x20f78: "\x02\x05\x01\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𠽸
+ 0x20f79: "\x02\x05\x01\x05\x04\x03\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 𠽹
+ 0x20f7a: "\x01\x02\x05\x01\x02\x05\x02\x05\x01\x02\x05\x01\x01\x02\x01", // 𠽺
+ 0x20f7b: "\x02\x05\x01\x01\x02\x01\x02\x05\x01\x01\x02\x01\x02\x05\x01", // 𠽻
+ 0x20f7c: "\x02\x05\x01\x05\x03\x04\x02\x01\x02\x01\x05\x03\x04\x02\x01\x02\x01", // 𠽼
+ 0x20f7d: "\x02\x05\x01\x05\x01\x01\x03\x05\x02\x05\x01\x03\x04\x03\x04", // 𠽽
+ 0x20f7e: "\x02\x05\x01\x04\x03\x01\x02\x02\x04\x03\x01\x02\x05\x01\x01", // 𠽾
+ 0x20f7f: "\x02\x05\x01\x01\x02\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 𠽿
+ 0x20f80: "\x02\x05\x01\x04\x01\x05\x04\x03\x05\x04\x01\x03\x01\x03\x04", // 𠾀
+ 0x20f81: "\x02\x05\x01\x01\x02\x01\x03\x05\x01\x02\x01\x05\x03\x01\x01", // 𠾁
+ 0x20f82: "\x01\x03\x04\x03\x04\x02\x03\x04\x01\x02\x05\x02\x05\x01\x01", // 𠾂
+ 0x20f83: "\x04\x01\x05\x02\x05\x02\x02\x02\x05\x01\x03\x04\x02\x05\x01", // 𠾃
+ 0x20f84: "\x03\x04\x04\x03\x03\x04\x04\x03\x03\x05\x01\x02\x02\x05\x01", // 𠾄
+ 0x20f85: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 𠾅
+ 0x20f86: "\x02\x05\x01\x03\x01\x02\x03\x04\x03\x05\x03\x03\x01\x01\x02", // 𠾆
+ 0x20f87: "\x02\x05\x01\x01\x03\x01\x02\x05\x01\x04\x03\x01\x01\x02\x04", // 𠾇
+ 0x20f88: "\x02\x05\x01\x03\x05\x04\x01\x04\x01\x04\x03\x01\x02\x05\x01", // 𠾈
+ 0x20f89: "\x05\x01\x05\x01\x02\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04", // 𠾉
+ 0x20f8a: "\x02\x05\x01\x03\x03\x04\x03\x04\x03\x04\x03\x04\x01\x02\x01", // 𠾊
+ 0x20f8b: "\x02\x05\x01\x02\x01\x02\x01\x01\x05\x01\x02\x05\x01\x02\x03\x04", // 𠾋
+ 0x20f8c: "\x02\x05\x01\x04\x03\x01\x05\x02\x03\x03\x02\x01\x05\x01\x01", // 𠾌
+ 0x20f8d: "\x02\x05\x01\x04\x01\x05\x04\x01\x02\x02\x01\x01\x02\x03\x04", // 𠾍
+ 0x20f8e: "\x02\x05\x01\x01\x02\x02\x01\x02\x05\x01\x01\x03\x01\x03\x04", // 𠾎
+ 0x20f8f: "\x02\x05\x01\x01\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01", // 𠾏
+ 0x20f90: "\x02\x05\x01\x05\x02\x03\x05\x04\x01\x03\x01\x01\x02\x01", // 𠾐
+ 0x20f91: "\x02\x05\x01\x03\x03\x02\x03\x01\x01\x02\x01\x02\x01\x01\x01\x02", // 𠾑
+ 0x20f92: "\x02\x05\x01\x01\x05\x02\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 𠾒
+ 0x20f93: "\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01\x05\x03\x02\x05\x01", // 𠾓
+ 0x20f94: "\x02\x05\x01\x03\x01\x02\x03\x04\x04\x03\x02\x05\x01\x03\x05", // 𠾔
+ 0x20f95: "\x02\x05\x01\x05\x02\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 𠾕
+ 0x20f96: "\x02\x05\x01\x02\x05\x01\x01\x03\x04\x02\x05\x01\x02\x05\x01", // 𠾖
+ 0x20f97: "\x02\x05\x01\x05\x02\x04\x01\x03\x04\x05\x02\x03\x05\x03\x04", // 𠾗
+ 0x20f98: "\x02\x05\x01\x04\x04\x05\x03\x05\x04\x01\x01\x01\x02\x05\x01", // 𠾘
+ 0x20f99: "\x02\x05\x01\x04\x04\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 𠾙
+ 0x20f9a: "\x02\x05\x01\x05\x01\x05\x03\x02\x02\x05\x01\x01\x01\x03\x04", // 𠾚
+ 0x20f9b: "\x02\x05\x01\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04", // 𠾛
+ 0x20f9c: "\x02\x05\x01\x02\x01\x02\x01\x02\x01\x02\x01\x02\x01\x02\x01", // 𠾜
+ 0x20f9d: "\x02\x05\x01\x02\x05\x01\x01\x01\x01\x03\x02\x03\x01\x03\x04", // 𠾝
+ 0x20f9e: "\x02\x05\x01\x01\x02\x03\x04\x01\x02\x03\x04\x03\x05\x05\x03", // 𠾞
+ 0x20f9f: "\x02\x05\x01\x02\x05\x01\x02\x01\x03\x04\x01\x02\x05\x01\x02", // 𠾟
+ 0x20fa0: "\x02\x05\x01\x03\x04\x04\x03\x05\x03\x03\x03\x05\x02\x05\x01", // 𠾠
+ 0x20fa1: "\x02\x05\x01\x03\x01\x04\x03\x01\x04\x01\x02\x01\x01\x02\x04", // 𠾡
+ 0x20fa2: "\x02\x05\x01\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x04", // 𠾢
+ 0x20fa3: "\x02\x05\x01\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04", // 𠾣
+ 0x20fa4: "\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04\x02\x05\x01", // 𠾤
+ 0x20fa5: "\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x03\x04\x01\x05\x04", // 𠾥
+ 0x20fa6: "\x02\x05\x01\x02\x01\x01\x01\x02\x01\x01\x01\x04\x05\x04\x04", // 𠾦
+ 0x20fa7: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𠾧
+ 0x20fa8: "\x02\x05\x01\x02\x05\x02\x01\x02\x02\x01\x01\x03\x05\x03\x04", // 𠾨
+ 0x20fa9: "\x02\x05\x01\x02\x05\x02\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 𠾩
+ 0x20faa: "\x02\x05\x01\x02\x05\x02\x02\x01\x01\x03\x05\x03\x03\x03\x04", // 𠾪
+ 0x20fab: "\x02\x05\x01\x03\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𠾫
+ 0x20fac: "\x02\x05\x01\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x03\x04", // 𠾬
+ 0x20fad: "\x02\x05\x01\x01\x02\x02\x03\x01\x02\x03\x04\x05\x03\x01", // 𠾭
+ 0x20fae: "\x02\x05\x01\x04\x04\x05\x03\x04\x03\x02\x05\x01\x01\x01\x03", // 𠾮
+ 0x20faf: "\x02\x05\x01\x04\x04\x05\x03\x05\x02\x05\x01\x01\x02\x03\x04", // 𠾯
+ 0x20fb0: "\x02\x05\x01\x04\x04\x05\x03\x05\x04\x01\x05\x04\x01\x02\x01", // 𠾰
+ 0x20fb1: "\x02\x05\x01\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01", // 𠾱
+ 0x20fb2: "\x02\x05\x01\x01\x02\x01\x02\x01\x03\x04\x01\x05\x05\x03\x04", // 𠾲
+ 0x20fb3: "\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02", // 𠾳
+ 0x20fb4: "\x02\x05\x01\x01\x02\x03\x04\x01\x01\x01\x03\x04\x01\x01\x02", // 𠾴
+ 0x20fb5: "\x02\x05\x01\x01\x02\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 𠾵
+ 0x20fb6: "\x02\x05\x01\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x03\x04", // 𠾶
+ 0x20fb7: "\x02\x05\x01\x01\x02\x01\x04\x03\x01\x01\x02\x05\x02\x05\x04", // 𠾷
+ 0x20fb8: "\x02\x05\x01\x01\x02\x01\x02\x01\x03\x04\x05\x03\x02\x05\x01", // 𠾸
+ 0x20fb9: "\x03\x01\x03\x04\x02\x05\x01\x04\x01\x03\x04\x03\x04\x01\x02", // 𠾹
+ 0x20fba: "\x02\x05\x01\x04\x03\x01\x01\x02\x01\x04\x03\x01\x02\x05\x01", // 𠾺
+ 0x20fbb: "\x02\x05\x01\x04\x04\x01\x01\x02\x02\x01\x01\x01\x03\x04\x05", // 𠾻
+ 0x20fbc: "\x02\x05\x01\x05\x05\x04\x04\x04\x04\x03\x05\x05\x02\x01\x05", // 𠾼
+ 0x20fbd: "\x02\x05\x01\x05\x01\x01\x02\x02\x05\x01\x01\x01\x01\x02\x01", // 𠾽
+ 0x20fbe: "\x02\x05\x01\x04\x04\x01\x02\x05\x01\x01\x02\x02\x04\x03\x01", // 𠾾
+ 0x20fbf: "\x02\x05\x01\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𠾿
+ 0x20fc0: "\x02\x05\x01\x03\x01\x02\x03\x04\x02\x04\x03\x02\x05\x01\x01", // 𠿀
+ 0x20fc1: "\x02\x05\x01\x01\x02\x02\x01\x01\x01\x03\x04\x03\x05\x03\x04", // 𠿁
+ 0x20fc2: "\x02\x05\x01\x01\x02\x01\x03\x01\x02\x03\x02\x01\x05\x01\x01", // 𠿂
+ 0x20fc3: "\x02\x05\x01\x05\x03\x01\x01\x02\x02\x01\x01\x01\x02\x03\x04", // 𠿃
+ 0x20fc4: "\x02\x05\x01\x04\x04\x05\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𠿄
+ 0x20fc5: "\x02\x05\x01\x02\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𠿅
+ 0x20fc6: "\x02\x05\x01\x05\x04\x01\x03\x04\x01\x01\x01\x02\x03\x05\x04", // 𠿆
+ 0x20fc7: "\x02\x05\x01\x03\x05\x03\x05\x01\x01\x02\x05\x03\x03\x01\x01\x02", // 𠿇
+ 0x20fc8: "\x02\x05\x01\x03\x01\x02\x03\x04\x04\x03\x03\x04\x04\x05\x04\x04", // 𠿈
+ 0x20fc9: "\x01\x02\x05\x01\x01\x01\x02\x05\x02\x03\x05\x05\x04\x02\x05\x01", // 𠿉
+ 0x20fca: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x05\x02\x03\x05\x05\x04", // 𠿊
+ 0x20fcb: "\x02\x05\x01\x03\x02\x05\x03\x04\x03\x01\x02\x03\x04\x01\x01\x05", // 𠿋
+ 0x20fcc: "\x02\x05\x01\x03\x05\x04\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 𠿌
+ 0x20fcd: "\x02\x05\x01\x05\x01\x03\x01\x02\x02\x01\x03\x04\x03\x05\x05\x04", // 𠿍
+ 0x20fce: "\x02\x05\x01\x01\x02\x05\x01\x01\x05\x02\x02\x05\x03\x05\x01\x02", // 𠿎
+ 0x20fcf: "\x02\x05\x01\x04\x03\x01\x03\x05\x01\x01\x02\x02\x04\x04\x04\x04", // 𠿏
+ 0x20fd0: "\x02\x05\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01\x04\x01\x05\x03", // 𠿐
+ 0x20fd1: "\x02\x05\x01\x01\x03\x01\x02\x05\x01\x04\x05\x04\x04\x05\x03\x04", // 𠿑
+ 0x20fd2: "\x02\x05\x01\x02\x05\x01\x01\x03\x05\x03\x04\x05\x03\x05\x03\x04", // 𠿒
+ 0x20fd3: "\x02\x05\x01\x03\x01\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𠿓
+ 0x20fd4: "\x02\x05\x01\x05\x05\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04\x04", // 𠿔
+ 0x20fd5: "\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01\x04\x01\x03\x05", // 𠿕
+ 0x20fd6: "\x02\x05\x01\x02\x01\x05\x03\x01\x05\x02\x05\x02\x03\x05\x03\x04", // 𠿖
+ 0x20fd7: "\x02\x05\x01\x01\x01\x02\x01\x01\x01\x02\x01\x04\x05\x04\x03\x04", // 𠿗
+ 0x20fd8: "\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x02\x05", // 𠿘
+ 0x20fd9: "\x02\x05\x01\x01\x04\x05\x02\x04\x01\x03\x04\x03\x05\x05\x01\x05", // 𠿙
+ 0x20fda: "\x02\x05\x01\x01\x02\x01\x02\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 𠿚
+ 0x20fdb: "\x02\x05\x01\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x05\x03", // 𠿛
+ 0x20fdc: "\x02\x05\x01\x02\x05\x01\x01\x01\x02\x03\x04\x01\x05\x05\x04", // 𠿜
+ 0x20fdd: "\x02\x05\x01\x01\x02\x03\x04\x01\x02\x03\x04\x05\x02\x01\x03\x04", // 𠿝
+ 0x20fde: "\x02\x05\x01\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 𠿞
+ 0x20fdf: "\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x02\x05\x01", // 𠿟
+ 0x20fe0: "\x02\x05\x01\x02\x05\x01\x01\x02\x02\x01\x01\x01\x01\x05\x03\x04", // 𠿠
+ 0x20fe1: "\x04\x04\x05\x03\x05\x05\x04\x05\x04\x05\x04\x05\x04\x02\x05\x01", // 𠿡
+ 0x20fe2: "\x02\x05\x01\x04\x03\x01\x01\x02\x01\x04\x04\x01\x03\x05\x03\x04", // 𠿢
+ 0x20fe3: "\x02\x05\x01\x01\x02\x05\x02\x02\x01\x01\x02\x01\x03\x05\x03\x04", // 𠿣
+ 0x20fe4: "\x02\x05\x01\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04", // 𠿤
+ 0x20fe5: "\x02\x05\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x02\x05\x01\x01", // 𠿥
+ 0x20fe6: "\x01\x02\x05\x01\x02\x05\x02\x05\x01\x02\x05\x01\x03\x01\x02\x01", // 𠿦
+ 0x20fe7: "\x01\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01\x03\x04\x02\x05\x01", // 𠿧
+ 0x20fe8: "\x02\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04\x01\x01\x02", // 𠿨
+ 0x20fe9: "\x02\x05\x01\x01\x01\x02\x01\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 𠿩
+ 0x20fea: "\x02\x05\x01\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𠿪
+ 0x20feb: "\x02\x05\x01\x03\x01\x04\x03\x01\x04\x02\x04\x03\x02\x05\x01\x01", // 𠿫
+ 0x20fec: "\x02\x05\x01\x03\x02\x03\x02\x05\x03\x04\x01\x03\x05\x03\x05\x04", // 𠿬
+ 0x20fed: "\x02\x05\x01\x04\x04\x01\x02\x05\x01\x02\x04\x05\x02\x05\x01\x01", // 𠿭
+ 0x20fee: "\x02\x05\x01\x03\x04\x01\x05\x01\x01\x05\x04\x03\x05\x03\x04", // 𠿮
+ 0x20fef: "\x02\x05\x01\x02\x05\x02\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 𠿯
+ 0x20ff0: "\x02\x05\x01\x03\x04\x04\x05\x01\x01\x05\x04\x03\x01\x05\x03", // 𠿰
+ 0x20ff1: "\x02\x05\x01\x04\x03\x01\x03\x02\x05\x01\x01\x01\x04\x05\x04", // 𠿱
+ 0x20ff2: "\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x01\x02\x05\x01\x01\x01", // 𠿲
+ 0x20ff3: "\x02\x05\x01\x04\x01\x03\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 𠿳
+ 0x20ff4: "\x02\x05\x01\x01\x03\x02\x05\x01\x02\x05\x01\x01\x01\x01\x02\x04", // 𠿴
+ 0x20ff5: "\x02\x05\x01\x03\x04\x04\x03\x05\x03\x03\x05\x01\x01\x05\x03\x04", // 𠿵
+ 0x20ff6: "\x02\x05\x01\x04\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02", // 𠿶
+ 0x20ff7: "\x02\x05\x01\x05\x01\x01\x02\x02\x05\x01\x01\x04\x01\x02\x05\x02", // 𠿷
+ 0x20ff8: "\x02\x05\x01\x01\x02\x02\x02\x05\x01\x02\x05\x01\x01\x01\x05", // 𠿸
+ 0x20ff9: "\x02\x05\x01\x03\x02\x03\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𠿹
+ 0x20ffa: "\x02\x05\x01\x01\x02\x01\x02\x01\x03\x05\x04\x01\x05\x01\x03\x02", // 𠿺
+ 0x20ffb: "\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01\x01\x01\x03\x05", // 𠿻
+ 0x20ffc: "\x02\x05\x01\x03\x05\x05\x01\x01\x03\x01\x03\x04\x04\x04\x04\x04", // 𠿼
+ 0x20ffd: "\x02\x05\x01\x02\x05\x02\x02\x01\x01\x01\x02\x05\x01\x01\x02\x04", // 𠿽
+ 0x20ffe: "\x02\x05\x01\x04\x01\x03\x01\x03\x04\x04\x03\x02\x05\x01\x01\x05", // 𠿾
+ 0x20fff: "\x02\x05\x01\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01\x05\x03\x04", // 𠿿
+ 0x21000: "\x02\x05\x01\x04\x01\x02\x05\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 𡀀
+ 0x21001: "\x02\x05\x01\x01\x02\x03\x04\x03\x04\x01\x02\x05\x02\x05\x01\x01", // 𡀁
+ 0x21002: "\x02\x05\x01\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x01", // 𡀂
+ 0x21003: "\x02\x05\x01\x01\x02\x02\x01\x01\x01\x03\x04\x05\x04\x04\x01\x02", // 𡀃
+ 0x21004: "\x02\x05\x01\x01\x02\x01\x04\x05\x01\x02\x01\x05\x05\x01\x02\x01", // 𡀄
+ 0x21005: "\x02\x05\x01\x01\x02\x03\x04\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𡀅
+ 0x21006: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01\x01\x03\x02\x04", // 𡀆
+ 0x21007: "\x02\x05\x01\x01\x02\x01\x02\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𡀇
+ 0x21008: "\x02\x05\x01\x02\x05\x01\x04\x01\x03\x03\x01\x02\x01\x05\x04", // 𡀈
+ 0x21009: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x04\x05\x02\x05\x01\x01\x01", // 𡀉
+ 0x2100a: "\x02\x05\x01\x05\x01\x01\x02\x02\x05\x01\x01\x01\x01\x02\x01\x04", // 𡀊
+ 0x2100b: "\x02\x05\x01\x02\x05\x01\x01\x03\x04\x04\x03\x02\x05\x01\x01\x05", // 𡀋
+ 0x2100c: "\x02\x05\x01\x01\x02\x01\x02\x01\x03\x01\x02\x03\x03\x05\x03\x04", // 𡀌
+ 0x2100d: "\x02\x05\x01\x03\x04\x01\x03\x05\x01\x01\x02\x02\x04\x05\x04\x04", // 𡀍
+ 0x2100e: "\x02\x05\x01\x03\x03\x02\x02\x05\x02\x01\x03\x05\x03\x01\x03\x04", // 𡀎
+ 0x2100f: "\x02\x05\x01\x03\x03\x02\x02\x05\x02\x01\x02\x01\x03\x01\x03\x04", // 𡀏
+ 0x21010: "\x02\x05\x01\x01\x02\x03\x04\x05\x04\x05\x02\x03\x01\x02\x03\x04", // 𡀐
+ 0x21011: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x03\x03\x05\x04\x01\x04", // 𡀑
+ 0x21012: "\x02\x05\x01\x01\x05\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 𡀒
+ 0x21013: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x01\x02\x01", // 𡀓
+ 0x21014: "\x02\x05\x01\x02\x05\x01\x02\x01\x02\x01\x03\x05\x04\x02\x05\x01", // 𡀔
+ 0x21015: "\x02\x05\x01\x02\x05\x02\x01\x03\x04\x03\x03\x04\x04\x03\x03\x04", // 𡀕
+ 0x21016: "\x02\x05\x01\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x03\x04\x01", // 𡀖
+ 0x21017: "\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x01\x02\x04", // 𡀗
+ 0x21018: "\x02\x05\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x05\x03\x01", // 𡀘
+ 0x21019: "\x02\x05\x01\x04\x04\x05\x03\x04\x05\x01\x03\x05\x02\x02\x05\x02", // 𡀙
+ 0x2101a: "\x02\x05\x01\x05\x04\x03\x04\x03\x05\x04\x05\x05\x04\x02\x03\x04", // 𡀚
+ 0x2101b: "\x02\x05\x01\x01\x04\x05\x02\x04\x04\x04\x04\x03\x04\x03\x01\x02", // 𡀛
+ 0x2101c: "\x02\x05\x01\x03\x01\x04\x03\x01\x04\x01\x01\x02\x01\x01\x03\x02", // 𡀜
+ 0x2101d: "\x02\x05\x01\x03\x01\x02\x03\x04\x03\x04\x01\x05\x04\x05\x04\x04", // 𡀝
+ 0x2101e: "\x02\x05\x01\x01\x02\x03\x04\x02\x05\x01\x01\x02\x02\x01\x01\x01", // 𡀞
+ 0x2101f: "\x02\x05\x01\x04\x03\x01\x03\x05\x03\x03\x03\x04\x04\x04\x05\x04", // 𡀟
+ 0x21020: "\x02\x05\x01\x03\x02\x01\x02\x02\x01\x03\x02\x05\x01\x01\x02", // 𡀠
+ 0x21021: "\x02\x05\x01\x04\x04\x01\x05\x01\x05\x04\x01\x05\x01\x05\x04\x01", // 𡀡
+ 0x21022: "\x02\x05\x01\x02\x05\x02\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 𡀢
+ 0x21023: "\x02\x05\x01\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01\x05\x03", // 𡀣
+ 0x21024: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x01\x03\x01\x02\x04", // 𡀤
+ 0x21025: "\x02\x05\x01\x01\x02\x02\x03\x02\x05\x01\x01\x05\x02\x01\x05", // 𡀥
+ 0x21026: "\x02\x05\x01\x04\x04\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 𡀦
+ 0x21027: "\x02\x05\x01\x04\x04\x01\x02\x02\x05\x01\x02\x01\x01\x05\x03\x04", // 𡀧
+ 0x21028: "\x02\x05\x01\x04\x05\x02\x03\x04\x01\x02\x05\x01\x01\x02\x04", // 𡀨
+ 0x21029: "\x02\x05\x01\x01\x02\x02\x04\x04\x01\x03\x05\x04\x02\x05\x01", // 𡀩
+ 0x2102a: "\x05\x03\x02\x05\x01\x01\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01", // 𡀪
+ 0x2102b: "\x02\x05\x01\x04\x01\x02\x05\x02\x05\x01\x01\x03\x01\x02\x03\x04", // 𡀫
+ 0x2102c: "\x02\x05\x01\x01\x03\x02\x05\x01\x04\x01\x03\x04\x03\x04\x01\x02", // 𡀬
+ 0x2102d: "\x02\x05\x01\x03\x02\x01\x05\x01\x01\x02\x05\x01\x02\x01\x05\x03", // 𡀭
+ 0x2102e: "\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x01\x03\x05\x03\x04", // 𡀮
+ 0x2102f: "\x02\x05\x01\x03\x02\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04", // 𡀯
+ 0x21030: "\x02\x05\x01\x03\x02\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𡀰
+ 0x21031: "\x02\x05\x01\x02\x05\x01\x01\x05\x02\x01\x05\x03\x01\x05\x03\x05", // 𡀱
+ 0x21032: "\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01\x04\x01\x05\x03\x03\x04", // 𡀲
+ 0x21033: "\x02\x05\x01\x05\x01\x01\x03\x02\x05\x01\x04\x03\x01\x01\x01\x02", // 𡀳
+ 0x21034: "\x02\x05\x01\x01\x02\x01\x03\x02\x05\x01\x01\x05\x04\x04\x04\x04", // 𡀴
+ 0x21035: "\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01\x01\x03\x04\x01\x01\x05", // 𡀵
+ 0x21036: "\x02\x05\x01\x04\x04\x01\x01\x03\x03\x02\x05\x01\x01\x02\x03\x04", // 𡀶
+ 0x21037: "\x02\x05\x01\x03\x03\x01\x02\x02\x05\x01\x01\x01\x04\x05\x04", // 𡀷
+ 0x21038: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x02\x05\x01\x02\x05\x01", // 𡀸
+ 0x21039: "\x02\x05\x01\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x03\x04", // 𡀹
+ 0x2103a: "\x02\x05\x01\x05\x03\x05\x03\x05\x03\x02\x05\x01\x01\x01\x03\x04", // 𡀺
+ 0x2103b: "\x03\x01\x02\x01\x02\x05\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 𡀻
+ 0x2103c: "\x02\x05\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x05\x03\x01", // 𡀼
+ 0x2103d: "\x02\x05\x01\x01\x02\x01\x02\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 𡀽
+ 0x2103e: "\x02\x05\x01\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x04\x04\x04\x04", // 𡀾
+ 0x2103f: "\x02\x05\x01\x05\x01\x03\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 𡀿
+ 0x21040: "\x02\x05\x01\x05\x04\x02\x05\x04\x03\x01\x01\x02\x01\x03\x05\x03\x04", // 𡁀
+ 0x21041: "\x02\x05\x01\x04\x04\x05\x03\x01\x02\x01\x02\x05\x01\x02\x01\x05\x04", // 𡁁
+ 0x21042: "\x02\x05\x01\x05\x01\x03\x04\x01\x04\x03\x01\x01\x02\x04\x05\x04", // 𡁂
+ 0x21043: "\x02\x05\x01\x04\x04\x05\x05\x05\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𡁃
+ 0x21044: "\x02\x05\x01\x03\x05\x04\x05\x05\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𡁄
+ 0x21045: "\x02\x05\x01\x03\x05\x02\x05\x01\x03\x05\x03\x05\x02\x05\x01\x03\x05", // 𡁅
+ 0x21046: "\x02\x05\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x03\x01\x01\x02", // 𡁆
+ 0x21047: "\x02\x05\x01\x05\x05\x04\x04\x04\x04\x02\x01\x02\x05\x01\x01\x01\x02", // 𡁇
+ 0x21048: "\x02\x05\x01\x04\x01\x04\x03\x01\x01\x03\x04\x01\x04\x03\x01\x01\x02", // 𡁈
+ 0x21049: "\x02\x05\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x01\x02", // 𡁉
+ 0x2104a: "\x02\x05\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x04\x05\x05\x03\x01", // 𡁊
+ 0x2104b: "\x02\x05\x01\x03\x04\x04\x03\x01\x02\x01\x05\x01\x01\x04\x05\x04\x04", // 𡁋
+ 0x2104c: "\x02\x05\x01\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x03\x05\x03\x04", // 𡁌
+ 0x2104d: "\x02\x05\x01\x04\x04\x05\x03\x01\x02\x01\x02\x05\x01\x03\x05\x03\x04", // 𡁍
+ 0x2104e: "\x02\x05\x01\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 𡁎
+ 0x2104f: "\x02\x05\x01\x01\x02\x01\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 𡁏
+ 0x21050: "\x02\x05\x01\x01\x02\x01\x02\x03\x04\x03\x04\x02\x03\x04\x03\x04\x02", // 𡁐
+ 0x21051: "\x02\x05\x01\x01\x02\x05\x01\x01\x05\x02\x02\x05\x04\x03\x01\x01\x02", // 𡁑
+ 0x21052: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x03\x05\x05\x04", // 𡁒
+ 0x21053: "\x02\x05\x01\x01\x03\x02\x05\x02\x02\x01\x03\x04\x01\x05\x05\x04", // 𡁓
+ 0x21054: "\x02\x05\x01\x04\x03\x01\x02\x03\x04\x01\x01\x02\x01\x02\x05\x01\x01", // 𡁔
+ 0x21055: "\x02\x05\x01\x05\x04\x01\x05\x04\x01\x04\x01\x04\x03\x01\x05\x03\x01", // 𡁕
+ 0x21056: "\x02\x05\x01\x05\x02\x02\x01\x02\x01\x04\x03\x01\x01\x01\x02\x03\x04", // 𡁖
+ 0x21057: "\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01\x04\x01\x03\x05\x01", // 𡁗
+ 0x21058: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x02", // 𡁘
+ 0x21059: "\x02\x05\x01\x04\x04\x02\x05\x01\x01\x05\x04\x01\x05\x03\x05", // 𡁙
+ 0x2105a: "\x02\x05\x01\x04\x04\x01\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𡁚
+ 0x2105b: "\x02\x05\x01\x05\x03\x01\x01\x02\x05\x01\x02\x03\x04\x03\x01\x03\x04", // 𡁛
+ 0x2105c: "\x02\x05\x01\x04\x05\x02\x04\x02\x05\x01\x02\x02\x05\x02\x05\x01", // 𡁜
+ 0x2105d: "\x02\x05\x01\x03\x02\x01\x01\x02\x05\x01\x01\x05\x01\x01\x01\x03\x04", // 𡁝
+ 0x2105e: "\x02\x05\x01\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x02\x01\x05\x04", // 𡁞
+ 0x2105f: "\x02\x05\x01\x04\x04\x05\x01\x02\x03\x03\x02\x05\x01\x01\x01\x03\x04", // 𡁟
+ 0x21060: "\x02\x05\x01\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𡁠
+ 0x21061: "\x02\x05\x01\x05\x01\x01\x02\x02\x05\x01\x01\x03\x01\x02\x02\x05\x01", // 𡁡
+ 0x21062: "\x02\x05\x01\x01\x02\x02\x01\x01\x01\x02\x05\x01\x02\x05\x02\x02\x01", // 𡁢
+ 0x21063: "\x02\x05\x01\x01\x02\x01\x02\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𡁣
+ 0x21064: "\x02\x05\x01\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x04\x02\x05\x01", // 𡁤
+ 0x21065: "\x02\x05\x01\x02\x05\x01\x05\x01\x02\x01\x04\x05\x02\x05\x01\x01\x05", // 𡁥
+ 0x21066: "\x02\x05\x01\x01\x02\x02\x05\x01\x02\x05\x01\x04\x05\x02\x05\x01\x01", // 𡁦
+ 0x21067: "\x02\x05\x01\x01\x03\x05\x01\x03\x01\x02\x05\x01\x02\x05\x05\x03\x04", // 𡁧
+ 0x21068: "\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x01\x02\x04\x02\x05\x01", // 𡁨
+ 0x21069: "\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04\x01\x02\x01\x05\x02\x01\x03", // 𡁩
+ 0x2106a: "\x02\x05\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x02\x02", // 𡁪
+ 0x2106b: "\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x01\x05\x01\x01", // 𡁫
+ 0x2106c: "\x02\x05\x01\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x01\x05\x03\x04", // 𡁬
+ 0x2106d: "\x02\x05\x01\x04\x03\x01\x02\x03\x04\x03\x01\x01\x01\x02\x01\x01\x01", // 𡁭
+ 0x2106e: "\x02\x05\x01\x04\x04\x05\x03\x04\x02\x05\x05\x02\x05\x02\x05\x01", // 𡁮
+ 0x2106f: "\x02\x05\x01\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02\x04", // 𡁯
+ 0x21070: "\x02\x05\x01\x05\x05\x04\x04\x04\x04\x02\x05\x01\x05\x02\x05\x01\x01", // 𡁰
+ 0x21071: "\x02\x05\x01\x01\x02\x02\x05\x01\x02\x05\x05\x01\x05\x04\x04\x04\x04", // 𡁱
+ 0x21072: "\x02\x05\x01\x01\x02\x01\x04\x05\x02\x05\x01\x02\x01\x02\x01\x03\x04", // 𡁲
+ 0x21073: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x01\x03\x05\x04\x04", // 𡁳
+ 0x21074: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04\x01", // 𡁴
+ 0x21075: "\x02\x05\x01\x01\x02\x05\x01\x02\x05\x05\x04\x05\x05\x04\x02\x03\x04", // 𡁵
+ 0x21076: "\x02\x05\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03\x04", // 𡁶
+ 0x21077: "\x02\x05\x01\x01\x03\x05\x03\x03\x03\x04\x03\x05\x04\x04\x01\x02\x04", // 𡁷
+ 0x21078: "\x02\x05\x01\x05\x02\x02\x03\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 𡁸
+ 0x21079: "\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01\x03\x01\x02\x03\x04\x05\x03", // 𡁹
+ 0x2107a: "\x02\x05\x01\x04\x04\x01\x04\x01\x03\x04\x02\x05\x01\x03\x05\x03\x04", // 𡁺
+ 0x2107b: "\x02\x05\x01\x01\x02\x01\x02\x01\x03\x04\x02\x04\x03\x02\x05\x01\x01", // 𡁻
+ 0x2107c: "\x02\x05\x01\x04\x04\x01\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 𡁼
+ 0x2107d: "\x02\x05\x01\x01\x02\x03\x04\x01\x02\x02\x03\x04\x01\x02\x03\x04", // 𡁽
+ 0x2107e: "\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01\x03\x04\x02\x05\x01\x03\x05", // 𡁾
+ 0x2107f: "\x02\x05\x01\x01\x02\x02\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03", // 𡁿
+ 0x21080: "\x02\x05\x01\x01\x02\x03\x04\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 𡂀
+ 0x21081: "\x02\x05\x01\x04\x04\x02\x03\x01\x02\x05\x01\x01\x02\x01\x01\x05\x03", // 𡂁
+ 0x21082: "\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01", // 𡂂
+ 0x21083: "\x02\x05\x01\x01\x01\x05\x04\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 𡂃
+ 0x21084: "\x02\x05\x01\x05\x03\x02\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𡂄
+ 0x21085: "\x02\x05\x01\x02\x05\x02\x03\x02\x05\x03\x04\x01\x03\x04\x03\x05\x04", // 𡂅
+ 0x21086: "\x02\x05\x01\x01\x02\x03\x04\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 𡂆
+ 0x21087: "\x02\x05\x01\x02\x05\x01\x03\x02\x05\x03\x04\x01\x03\x04\x03\x05\x04", // 𡂇
+ 0x21088: "\x02\x05\x01\x03\x02\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 𡂈
+ 0x21089: "\x02\x05\x01\x01\x02\x01\x03\x03\x01\x02\x04\x01\x01\x01\x02\x05\x01", // 𡂉
+ 0x2108a: "\x02\x05\x01\x03\x04\x02\x05\x03\x04\x02\x05\x03\x04\x02\x05\x03\x04", // 𡂊
+ 0x2108b: "\x02\x05\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x04\x03\x03\x04", // 𡂋
+ 0x2108c: "\x02\x05\x01\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04\x02\x03\x04\x03", // 𡂌
+ 0x2108d: "\x02\x05\x01\x01\x03\x05\x04\x02\x05\x01\x03\x04\x02\x05\x02\x02\x01", // 𡂍
+ 0x2108e: "\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x01\x02\x04\x01\x03\x04", // 𡂎
+ 0x2108f: "\x02\x05\x01\x05\x05\x05\x02\x05\x03\x04\x01\x05\x04\x04\x05\x04\x04\x05", // 𡂏
+ 0x21090: "\x02\x05\x01\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𡂐
+ 0x21091: "\x02\x05\x01\x03\x03\x05\x04\x01\x04\x03\x05\x05\x04\x02\x05\x02\x02\x01", // 𡂑
+ 0x21092: "\x02\x05\x01\x03\x03\x01\x02\x03\x03\x01\x02\x02\x05\x01\x01\x01\x03\x04", // 𡂒
+ 0x21093: "\x02\x05\x01\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01\x04\x05\x04", // 𡂓
+ 0x21094: "\x02\x05\x01\x01\x03\x02\x01\x01\x02\x03\x04\x05\x03\x04\x04\x05\x04\x04", // 𡂔
+ 0x21095: "\x02\x05\x01\x01\x02\x01\x02\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 𡂕
+ 0x21096: "\x02\x05\x01\x01\x03\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𡂖
+ 0x21097: "\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x03\x05\x02\x05\x01", // 𡂗
+ 0x21098: "\x02\x05\x01\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x04\x04\x04\x04", // 𡂘
+ 0x21099: "\x02\x05\x01\x05\x01\x03\x02\x04\x01\x03\x04\x03\x01\x01\x02\x04\x05\x04", // 𡂙
+ 0x2109a: "\x02\x05\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x02\x05\x01\x01\x01", // 𡂚
+ 0x2109b: "\x02\x05\x01\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x05\x01\x04\x03\x01", // 𡂛
+ 0x2109c: "\x02\x05\x01\x05\x04\x05\x04\x05\x04\x05\x04\x01\x02\x05\x03\x05\x01\x01", // 𡂜
+ 0x2109d: "\x02\x05\x01\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𡂝
+ 0x2109e: "\x02\x05\x01\x01\x02\x01\x03\x04\x01\x02\x01\x03\x05\x04\x01\x01\x05\x04", // 𡂞
+ 0x2109f: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x03\x05\x05\x01\x05", // 𡂟
+ 0x210a0: "\x02\x05\x01\x01\x02\x01\x02\x03\x05\x04\x04\x05\x04\x01\x01\x02\x03\x04", // 𡂠
+ 0x210a1: "\x02\x05\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01\x03\x01\x03\x04", // 𡂡
+ 0x210a2: "\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x01\x02\x03\x04", // 𡂢
+ 0x210a3: "\x02\x05\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x01\x03\x02", // 𡂣
+ 0x210a4: "\x01\x02\x05\x01\x02\x05\x01\x01\x02\x02\x05\x01\x02\x05\x01\x03\x04\x05", // 𡂤
+ 0x210a5: "\x02\x05\x01\x02\x01\x02\x01\x03\x04\x02\x05\x01\x02\x03\x04\x01\x02\x01", // 𡂥
+ 0x210a6: "\x01\x02\x02\x02\x05\x01\x02\x05\x01\x01\x02\x05\x01\x03\x04\x02\x05\x01", // 𡂦
+ 0x210a7: "\x01\x02\x05\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01\x01\x04\x01\x05", // 𡂧
+ 0x210a8: "\x02\x05\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x02\x05\x01\x02\x05\x01", // 𡂨
+ 0x210a9: "\x02\x05\x01\x01\x03\x02\x05\x02\x02\x01\x03\x04\x01\x02\x02\x01\x01\x01", // 𡂩
+ 0x210aa: "\x02\x05\x01\x04\x01\x03\x01\x02\x02\x01\x04\x04\x04\x04\x04\x05\x04", // 𡂪
+ 0x210ab: "\x02\x05\x01\x01\x02\x02\x03\x05\x04\x01\x01\x01\x02\x04\x05\x04", // 𡂫
+ 0x210ac: "\x05\x01\x01\x03\x02\x05\x01\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01", // 𡂬
+ 0x210ad: "\x02\x05\x01\x04\x01\x03\x01\x02\x02\x01\x03\x04\x03\x04\x04\x05\x04", // 𡂭
+ 0x210ae: "\x02\x05\x01\x01\x01\x01\x02\x03\x04\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𡂮
+ 0x210af: "\x04\x01\x03\x04\x02\x05\x01\x04\x05\x01\x01\x05\x04\x03\x05\x01\x01", // 𡂯
+ 0x210b0: "\x02\x05\x01\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02\x05\x02", // 𡂰
+ 0x210b1: "\x02\x05\x01\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01\x05\x02", // 𡂱
+ 0x210b2: "\x02\x05\x01\x01\x01\x03\x04\x02\x01\x01\x03\x02\x01\x03\x05\x04\x02\x02", // 𡂲
+ 0x210b3: "\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01", // 𡂳
+ 0x210b4: "\x02\x05\x01\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 𡂴
+ 0x210b5: "\x02\x05\x01\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x03\x04\x03\x03\x03", // 𡂵
+ 0x210b6: "\x05\x01\x02\x01\x01\x02\x05\x01\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01", // 𡂶
+ 0x210b7: "\x02\x05\x01\x04\x04\x05\x02\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05\x04", // 𡂷
+ 0x210b8: "\x02\x05\x01\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x03\x04\x05\x02", // 𡂸
+ 0x210b9: "\x02\x05\x01\x04\x04\x05\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 𡂹
+ 0x210ba: "\x02\x05\x01\x04\x03\x01\x01\x02\x01\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𡂺
+ 0x210bb: "\x02\x05\x01\x04\x01\x03\x05\x02\x02\x01\x05\x04\x05\x04\x04\x03\x05\x04", // 𡂻
+ 0x210bc: "\x02\x05\x01\x02\x05\x02\x02\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𡂼
+ 0x210bd: "\x02\x05\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 𡂽
+ 0x210be: "\x02\x05\x01\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04\x02\x04\x01\x03\x04", // 𡂾
+ 0x210bf: "\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05\x03\x05\x03\x04", // 𡂿
+ 0x210c0: "\x02\x05\x01\x04\x01\x04\x03\x01\x03\x05\x03\x03\x03\x04\x03\x05\x05\x04", // 𡃀
+ 0x210c1: "\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 𡃁
+ 0x210c2: "\x02\x05\x01\x04\x04\x05\x03\x02\x01\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𡃂
+ 0x210c3: "\x02\x05\x01\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01\x02\x02\x01\x01\x01", // 𡃃
+ 0x210c4: "\x02\x05\x01\x01\x03\x04\x03\x04\x02\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𡃄
+ 0x210c5: "\x02\x05\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x01\x01\x02\x01\x04", // 𡃅
+ 0x210c6: "\x02\x05\x01\x05\x01\x03\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𡃆
+ 0x210c7: "\x02\x05\x01\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04\x01\x03\x02", // 𡃇
+ 0x210c8: "\x02\x05\x01\x05\x05\x04\x04\x04\x04\x01\x02\x02\x01\x02\x05\x01\x01\x02", // 𡃈
+ 0x210c9: "\x02\x05\x01\x05\x03\x02\x05\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𡃉
+ 0x210ca: "\x02\x05\x01\x03\x01\x02\x03\x04\x01\x03\x05\x04\x03\x05\x02\x05\x01\x01", // 𡃊
+ 0x210cb: "\x03\x04\x01\x02\x05\x01\x02\x02\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𡃋
+ 0x210cc: "\x02\x05\x01\x01\x03\x03\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𡃌
+ 0x210cd: "\x02\x05\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x02\x02", // 𡃍
+ 0x210ce: "\x02\x05\x01\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x03\x04\x01\x03\x04", // 𡃎
+ 0x210cf: "\x02\x05\x01\x05\x02\x01\x03\x01\x02\x01\x02\x05\x01\x01\x01\x02\x01", // 𡃏
+ 0x210d0: "\x02\x05\x01\x02\x05\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 𡃐
+ 0x210d1: "\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01", // 𡃑
+ 0x210d2: "\x02\x05\x01\x01\x02\x01\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 𡃒
+ 0x210d3: "\x02\x05\x01\x01\x02\x01\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 𡃓
+ 0x210d4: "\x02\x05\x01\x01\x02\x01\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 𡃔
+ 0x210d5: "\x02\x05\x01\x04\x04\x05\x03\x04\x03\x02\x05\x01\x01\x01\x03\x05\x01\x05", // 𡃕
+ 0x210d6: "\x02\x05\x01\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 𡃖
+ 0x210d7: "\x02\x05\x01\x01\x02\x03\x04\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 𡃗
+ 0x210d8: "\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 𡃘
+ 0x210d9: "\x02\x05\x01\x01\x02\x02\x02\x05\x02\x02\x01\x01\x03\x04\x05\x03\x04", // 𡃙
+ 0x210da: "\x02\x05\x01\x04\x01\x03\x02\x05\x01\x01\x02\x01\x01\x03\x04\x01\x02\x01", // 𡃚
+ 0x210db: "\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01\x04\x03\x01\x01\x02\x01\x05\x04", // 𡃛
+ 0x210dc: "\x02\x05\x01\x01\x03\x02\x05\x01\x04\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 𡃜
+ 0x210dd: "\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01\x03\x04\x01\x02\x05\x01\x02\x02", // 𡃝
+ 0x210de: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02\x02\x05\x01\x01", // 𡃞
+ 0x210df: "\x01\x02\x02\x05\x01\x02\x05\x01\x01\x04\x01\x02\x05\x01\x03\x05\x03\x04", // 𡃟
+ 0x210e0: "\x01\x02\x05\x01\x04\x03\x01\x03\x05\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01", // 𡃠
+ 0x210e1: "\x04\x01\x04\x03\x01\x03\x05\x04\x01\x01\x05\x01\x05\x01\x01\x01\x02\x05\x01", // 𡃡
+ 0x210e2: "\x02\x05\x01\x05\x01\x01\x05\x04\x01\x05\x03\x05\x02\x05\x01\x01\x01", // 𡃢
+ 0x210e3: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01\x01\x02\x05\x01\x01\x05\x03\x04", // 𡃣
+ 0x210e4: "\x02\x05\x01\x01\x02\x05\x01\x02\x03\x04\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 𡃤
+ 0x210e5: "\x02\x05\x01\x04\x01\x02\x05\x01\x02\x05\x01\x01\x02\x01\x02\x01\x01\x01\x02", // 𡃥
+ 0x210e6: "\x02\x05\x01\x05\x01\x01\x02\x02\x05\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𡃦
+ 0x210e7: "\x02\x05\x01\x02\x01\x05\x03\x01\x05\x02\x02\x05\x02\x01\x01\x03\x05\x03\x04", // 𡃧
+ 0x210e8: "\x02\x05\x01\x01\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01\x04\x05\x04\x04", // 𡃨
+ 0x210e9: "\x02\x05\x01\x04\x01\x02\x05\x02\x02\x01\x02\x04\x01\x03\x04\x03\x05\x03\x04", // 𡃩
+ 0x210ea: "\x02\x05\x01\x03\x02\x01\x01\x05\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𡃪
+ 0x210eb: "\x02\x05\x01\x02\x05\x01\x01\x03\x05\x01\x01\x03\x05\x01\x01\x03\x05\x05\x04", // 𡃫
+ 0x210ec: "\x04\x01\x05\x02\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01\x03\x04\x02\x05\x01", // 𡃬
+ 0x210ed: "\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x01\x03\x05\x03\x04\x02\x05\x01", // 𡃭
+ 0x210ee: "\x02\x05\x01\x04\x03\x01\x05\x01\x05\x01\x02\x01\x01\x02\x01\x02\x05\x01\x01", // 𡃮
+ 0x210ef: "\x04\x01\x03\x05\x01\x01\x02\x02\x05\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 𡃯
+ 0x210f0: "\x02\x05\x01\x02\x01\x05\x03\x01\x05\x02\x02\x04\x03\x01\x01\x05\x03\x04", // 𡃰
+ 0x210f1: "\x02\x05\x01\x02\x05\x02\x02\x01\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 𡃱
+ 0x210f2: "\x02\x05\x01\x03\x04\x01\x05\x01\x01\x05\x04\x03\x04\x04\x03\x05\x03\x01", // 𡃲
+ 0x210f3: "\x02\x05\x01\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x01\x03\x04", // 𡃳
+ 0x210f4: "\x02\x05\x01\x05\x02\x01\x03\x01\x02\x01\x02\x05\x01\x01\x04\x05\x04", // 𡃴
+ 0x210f5: "\x02\x05\x01\x01\x02\x01\x04\x01\x05\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 𡃵
+ 0x210f6: "\x02\x05\x01\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x03\x05\x03\x03", // 𡃶
+ 0x210f7: "\x02\x05\x01\x02\x05\x01\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x01", // 𡃷
+ 0x210f8: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𡃸
+ 0x210f9: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x01\x05\x03\x04", // 𡃹
+ 0x210fa: "\x02\x05\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05\x04\x05\x04", // 𡃺
+ 0x210fb: "\x02\x05\x01\x01\x02\x02\x03\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 𡃻
+ 0x210fc: "\x02\x05\x01\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 𡃼
+ 0x210fd: "\x02\x05\x01\x03\x02\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02", // 𡃽
+ 0x210fe: "\x02\x05\x01\x01\x02\x03\x04\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 𡃾
+ 0x210ff: "\x02\x05\x01\x01\x02\x01\x01\x02\x01\x04\x03\x01\x01\x01\x02\x04\x05\x04", // 𡃿
+ 0x21100: "\x02\x05\x01\x03\x02\x05\x01\x01\x02\x02\x02\x05\x02\x02\x01\x01\x02\x02", // 𡄀
+ 0x21101: "\x02\x05\x01\x04\x01\x03\x04\x01\x02\x05\x02\x05\x01\x01\x03\x01\x02\x03\x04", // 𡄁
+ 0x21102: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01\x01\x03\x02\x04\x01\x02\x01", // 𡄂
+ 0x21103: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𡄃
+ 0x21104: "\x02\x05\x01\x02\x01\x03\x05\x04\x05\x04\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𡄄
+ 0x21105: "\x02\x05\x01\x02\x05\x01\x02\x02\x05\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01", // 𡄅
+ 0x21106: "\x02\x05\x01\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x05\x02\x01", // 𡄆
+ 0x21107: "\x02\x05\x01\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04\x01\x03\x02\x05\x01", // 𡄇
+ 0x21108: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04\x04\x05\x04\x03\x04\x02\x05\x01", // 𡄈
+ 0x21109: "\x02\x05\x01\x02\x05\x01\x05\x01\x05\x01\x02\x01\x01\x02\x01\x03\x04\x03\x04", // 𡄉
+ 0x2110a: "\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x01\x05\x03\x05\x02\x05\x02\x02\x01", // 𡄊
+ 0x2110b: "\x02\x05\x01\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01", // 𡄋
+ 0x2110c: "\x03\x02\x05\x01\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01", // 𡄌
+ 0x2110d: "\x02\x05\x01\x03\x01\x04\x03\x01\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𡄍
+ 0x2110e: "\x02\x05\x01\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x05\x01\x01\x02\x05\x02", // 𡄎
+ 0x2110f: "\x02\x05\x01\x04\x04\x02\x01\x03\x01\x02\x05\x01\x05\x03\x04\x04\x05\x04\x04", // 𡄏
+ 0x21110: "\x02\x05\x01\x04\x01\x05\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02\x01", // 𡄐
+ 0x21111: "\x02\x05\x01\x03\x04\x03\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 𡄑
+ 0x21112: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04\x01\x02\x01\x03\x01\x05\x02\x05\x01", // 𡄒
+ 0x21113: "\x02\x05\x01\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 𡄓
+ 0x21114: "\x02\x05\x01\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04\x01\x02\x02\x01\x01\x01", // 𡄔
+ 0x21115: "\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01\x04\x03\x03\x04\x04\x03\x03\x04\x05\x04", // 𡄕
+ 0x21116: "\x02\x05\x01\x04\x01\x03\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01\x04\x05\x04\x04", // 𡄖
+ 0x21117: "\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 𡄗
+ 0x21118: "\x02\x05\x01\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x04\x03\x01\x02\x05\x01\x02", // 𡄘
+ 0x21119: "\x02\x05\x01\x01\x02\x02\x05\x01\x02\x05\x01\x04\x05\x02\x05\x01\x01\x01\x03\x04", // 𡄙
+ 0x2111a: "\x04\x01\x05\x02\x02\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x03\x04\x02\x05\x01", // 𡄚
+ 0x2111b: "\x02\x05\x01\x01\x03\x04\x04\x02\x05\x01\x02\x05\x01\x01\x03\x04\x04\x02\x05\x01", // 𡄛
+ 0x2111c: "\x01\x02\x01\x04\x05\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 𡄜
+ 0x2111d: "\x01\x02\x02\x01\x02\x05\x01\x01\x03\x02\x05\x01\x02\x05\x01\x01\x03\x02\x05\x01", // 𡄝
+ 0x2111e: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01\x01\x05\x01\x01\x05\x01\x01\x05\x05", // 𡄞
+ 0x2111f: "\x02\x05\x01\x01\x04\x05\x02\x04\x04\x04\x04\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 𡄟
+ 0x21120: "\x02\x05\x01\x03\x02\x05\x04\x04\x04\x05\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02", // 𡄠
+ 0x21121: "\x02\x05\x01\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01\x02\x03\x04", // 𡄡
+ 0x21122: "\x02\x05\x01\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 𡄢
+ 0x21123: "\x02\x05\x01\x05\x01\x05\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𡄣
+ 0x21124: "\x02\x05\x01\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04\x04\x05\x04", // 𡄤
+ 0x21125: "\x02\x05\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x03\x05\x03\x04", // 𡄥
+ 0x21126: "\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 𡄦
+ 0x21127: "\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01", // 𡄧
+ 0x21128: "\x02\x05\x01\x02\x05\x02\x05\x03\x01\x01\x02\x05\x01\x02\x03\x04\x03\x01\x03\x04", // 𡄨
+ 0x21129: "\x02\x05\x01\x03\x04\x04\x03\x05\x03\x03\x05\x01\x01\x05\x03\x04\x04\x05\x04\x04", // 𡄩
+ 0x2112a: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𡄪
+ 0x2112b: "\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 𡄫
+ 0x2112c: "\x03\x04\x01\x02\x05\x01\x01\x01\x05\x04\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 𡄬
+ 0x2112d: "\x02\x05\x01\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04\x01\x02\x02\x01\x01\x01", // 𡄭
+ 0x2112e: "\x02\x05\x01\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 𡄮
+ 0x2112f: "\x02\x05\x01\x03\x05\x01\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 𡄯
+ 0x21130: "\x04\x03\x01\x01\x01\x02\x04\x03\x01\x02\x05\x01\x04\x01\x03\x04\x03\x04\x01\x02", // 𡄰
+ 0x21131: "\x02\x05\x01\x01\x03\x02\x01\x01\x02\x03\x04\x05\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 𡄱
+ 0x21132: "\x05\x03\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01\x01\x02\x05\x01", // 𡄲
+ 0x21133: "\x02\x05\x01\x01\x02\x01\x02\x05\x02\x04\x01\x03\x04\x01\x03\x03\x01\x01\x02\x01", // 𡄳
+ 0x21134: "\x02\x05\x01\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x03\x05\x02\x05\x01", // 𡄴
+ 0x21135: "\x02\x05\x01\x01\x03\x01\x01\x03\x04\x05\x03\x05\x05\x04\x01\x02\x05\x03\x05\x01\x01", // 𡄵
+ 0x21136: "\x02\x05\x01\x04\x01\x04\x03\x04\x05\x02\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𡄶
+ 0x21137: "\x02\x05\x01\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 𡄷
+ 0x21138: "\x02\x05\x01\x05\x05\x05\x02\x05\x01\x05\x02\x01\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 𡄸
+ 0x21139: "\x02\x05\x01\x02\x05\x01\x03\x04\x04\x03\x05\x05\x04\x05\x04\x02\x05\x01\x02\x05\x01", // 𡄹
+ 0x2113a: "\x02\x05\x01\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x01\x04\x03\x03\x04", // 𡄺
+ 0x2113b: "\x01\x02\x01\x04\x05\x01\x02\x05\x01\x04\x03\x01\x01\x01\x03\x05\x03\x04\x02\x05\x01", // 𡄻
+ 0x2113c: "\x02\x05\x01\x02\x03\x04\x02\x05\x01\x01\x02\x03\x04\x02\x01\x05\x03\x01\x05\x03\x05", // 𡄼
+ 0x2113d: "\x02\x05\x01\x04\x04\x01\x04\x04\x05\x03\x02\x01\x05\x01\x01\x03\x05\x04\x04\x04\x04", // 𡄽
+ 0x2113e: "\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01", // 𡄾
+ 0x2113f: "\x02\x05\x01\x02\x05\x01\x01\x02\x05\x01\x02\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 𡄿
+ 0x21140: "\x02\x05\x01\x02\x01\x04\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x02\x05\x01", // 𡅀
+ 0x21141: "\x02\x05\x01\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x02\x05\x01\x01\x01\x02\x03\x04", // 𡅁
+ 0x21142: "\x02\x05\x01\x01\x02\x04\x05\x05\x02\x01\x03\x01\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𡅂
+ 0x21143: "\x02\x05\x01\x01\x03\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01\x01\x01", // 𡅃
+ 0x21144: "\x04\x01\x02\x05\x01\x04\x05\x01\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 𡅄
+ 0x21145: "\x02\x05\x01\x04\x04\x05\x03\x05\x04\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𡅅
+ 0x21146: "\x02\x05\x01\x01\x02\x02\x01\x03\x05\x01\x03\x01\x02\x05\x01\x02\x05\x05\x03\x04", // 𡅆
+ 0x21147: "\x02\x05\x01\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x02\x02\x01\x01\x01\x05\x04", // 𡅇
+ 0x21148: "\x02\x05\x01\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x05\x03\x01\x05\x03\x01\x01\x02", // 𡅈
+ 0x21149: "\x02\x05\x01\x03\x01\x04\x03\x01\x04\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01", // 𡅉
+ 0x2114a: "\x02\x05\x01\x01\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04\x04\x03\x01\x02\x03\x04", // 𡅊
+ 0x2114b: "\x02\x05\x01\x01\x02\x03\x04\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01", // 𡅋
+ 0x2114c: "\x02\x05\x01\x03\x01\x04\x03\x01\x04\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x01\x01", // 𡅌
+ 0x2114d: "\x02\x05\x01\x05\x05\x04\x04\x04\x04\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 𡅍
+ 0x2114e: "\x02\x05\x01\x03\x01\x04\x03\x01\x04\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x01", // 𡅎
+ 0x2114f: "\x02\x05\x01\x04\x05\x02\x04\x02\x05\x01\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01", // 𡅏
+ 0x21150: "\x01\x03\x03\x03\x04\x04\x05\x04\x04\x03\x01\x01\x01\x02\x04\x03\x01\x02\x05\x01", // 𡅐
+ 0x21151: "\x02\x05\x01\x02\x05\x01\x01\x02\x05\x02\x01\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𡅑
+ 0x21152: "\x02\x05\x01\x01\x02\x01\x01\x03\x02\x05\x01\x01\x04\x05\x04\x05\x04\x04\x03\x05\x04", // 𡅒
+ 0x21153: "\x02\x05\x01\x04\x01\x04\x03\x02\x05\x04\x03\x03\x04\x02\x05\x01\x01\x01\x02\x03\x04", // 𡅓
+ 0x21154: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x03\x03\x04\x04\x03\x01\x02\x05\x01\x05\x04", // 𡅔
+ 0x21155: "\x01\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01", // 𡅕
+ 0x21156: "\x03\x05\x04\x02\x05\x01\x04\x03\x01\x01\x01\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 𡅖
+ 0x21157: "\x02\x05\x01\x02\x03\x04\x03\x02\x05\x01\x01\x02\x03\x04\x02\x01\x05\x03\x01\x05\x03\x05", // 𡅗
+ 0x21158: "\x02\x05\x01\x03\x05\x04\x01\x05\x05\x05\x02\x05\x03\x04\x01\x05\x04\x04\x05\x04\x04\x05", // 𡅘
+ 0x21159: "\x02\x05\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𡅙
+ 0x2115a: "\x02\x05\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x02\x05\x01\x02\x05\x01\x03\x01\x02\x01", // 𡅚
+ 0x2115b: "\x02\x05\x01\x03\x05\x01\x05\x05\x01\x01\x05\x03\x05\x03\x05\x02\x05\x01\x03\x05\x04", // 𡅛
+ 0x2115c: "\x02\x05\x01\x02\x05\x01\x01\x05\x02\x02\x05\x02\x01\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 𡅜
+ 0x2115d: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x04\x01\x03\x03\x04\x04\x03\x01\x02\x05\x01\x05\x04", // 𡅝
+ 0x2115e: "\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01\x02\x05\x02\x02\x01", // 𡅞
+ 0x2115f: "\x04\x01\x05\x02\x05\x02\x02\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x03\x05\x02\x05\x01", // 𡅟
+ 0x21160: "\x02\x05\x01\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𡅠
+ 0x21161: "\x01\x02\x05\x01\x02\x05\x01\x01\x02\x02\x05\x01\x02\x05\x01\x01\x03\x05\x04\x02\x05\x01", // 𡅡
+ 0x21162: "\x02\x05\x01\x04\x05\x02\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 𡅢
+ 0x21163: "\x02\x05\x01\x03\x01\x04\x03\x01\x04\x05\x01\x01\x02\x03\x02\x01\x01\x05\x05\x02\x01\x02", // 𡅣
+ 0x21164: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01", // 𡅤
+ 0x21165: "\x02\x05\x01\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𡅥
+ 0x21166: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01\x05\x04\x03\x05\x04\x05\x04\x02\x05\x01", // 𡅦
+ 0x21167: "\x02\x05\x01\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𡅧
+ 0x21168: "\x02\x05\x01\x03\x01\x04\x03\x01\x04\x03\x05\x01\x03\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 𡅨
+ 0x21169: "\x02\x05\x01\x02\x05\x01\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01\x03\x05\x05\x02\x01\x05", // 𡅩
+ 0x2116a: "\x02\x05\x01\x01\x03\x03\x02\x05\x01\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𡅪
+ 0x2116b: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 𡅫
+ 0x2116c: "\x02\x05\x01\x04\x04\x02\x04\x01\x02\x05\x02\x02\x01\x02\x04\x01\x03\x04\x03\x05\x03\x04", // 𡅬
+ 0x2116d: "\x02\x05\x01\x05\x01\x01\x02\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x05\x03\x02\x01\x02", // 𡅭
+ 0x2116e: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x03\x03\x04\x04\x03\x01\x02\x02\x05\x01\x05\x04", // 𡅮
+ 0x2116f: "\x02\x05\x01\x03\x01\x02\x03\x04\x03\x04\x04\x03\x01\x02\x01\x05\x01\x01\x04\x05\x04\x04", // 𡅯
+ 0x21170: "\x02\x05\x01\x01\x02\x05\x01\x01\x02\x03\x04\x01\x02\x05\x01\x01\x02\x03\x04\x02\x05\x01\x01", // 𡅰
+ 0x21171: "\x02\x05\x01\x02\x05\x01\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x02\x05\x01", // 𡅱
+ 0x21172: "\x02\x05\x01\x01\x02\x01\x02\x03\x02\x05\x01\x05\x01\x04\x01\x04\x03\x01\x01\x02\x05\x02\x01", // 𡅲
+ 0x21173: "\x02\x05\x01\x01\x02\x02\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03", // 𡅳
+ 0x21174: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x03\x03\x04\x03\x01\x02\x02\x05\x01\x02\x01\x05\x04", // 𡅴
+ 0x21175: "\x02\x05\x01\x03\x04\x03\x01\x02\x03\x04\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 𡅵
+ 0x21176: "\x02\x05\x01\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𡅶
+ 0x21177: "\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01\x05\x03\x04", // 𡅷
+ 0x21178: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01", // 𡅸
+ 0x21179: "\x02\x05\x01\x04\x01\x02\x05\x01\x02\x03\x04\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 𡅹
+ 0x2117a: "\x02\x05\x01\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x01\x02\x02\x01\x01\x01\x05\x03\x04", // 𡅺
+ 0x2117b: "\x02\x05\x01\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05\x04\x02\x05\x01\x02\x05\x01", // 𡅻
+ 0x2117c: "\x02\x05\x01\x04\x01\x04\x03\x01\x01\x03\x04\x01\x01\x01\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 𡅼
+ 0x2117d: "\x02\x05\x01\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05\x04\x02\x05\x01\x02\x05\x01", // 𡅽
+ 0x2117e: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x03\x03\x04\x04\x03\x01\x02\x02\x05\x01\x02\x01\x05\x04", // 𡅾
+ 0x2117f: "\x02\x05\x01\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x02\x05\x01\x01\x02\x05\x01\x05\x02\x02", // 𡅿
+ 0x21180: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x02", // 𡆀
+ 0x21181: "\x02\x05\x01\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 𡆁
+ 0x21182: "\x02\x05\x01\x01\x01\x01\x03\x04\x02\x05\x01\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𡆂
+ 0x21183: "\x04\x03\x01\x01\x02\x01\x04\x03\x01\x02\x05\x01\x04\x03\x01\x01\x02\x01\x04\x03\x01\x02\x05\x01", // 𡆃
+ 0x21184: "\x02\x05\x01\x01\x02\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01", // 𡆄
+ 0x21185: "\x02\x05\x01\x03\x01\x04\x03\x01\x04\x01\x01\x02\x01\x02\x01\x03\x04\x05\x02\x03\x04\x03\x05\x04", // 𡆅
+ 0x21186: "\x02\x05\x01\x01\x02\x01\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𡆆
+ 0x21187: "\x02\x05\x01\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𡆇
+ 0x21188: "\x02\x05\x01\x04\x01\x05\x03\x03\x01\x03\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𡆈
+ 0x21189: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x03\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x05\x04", // 𡆉
+ 0x2118a: "\x05\x03\x02\x05\x01\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𡆊
+ 0x2118b: "\x02\x05\x01\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x03\x04\x04\x05\x05\x01\x01\x05\x04\x01\x02\x04", // 𡆋
+ 0x2118c: "\x02\x05\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 𡆌
+ 0x2118d: "\x02\x05\x01\x04\x01\x05\x03\x03\x01\x03\x01\x01\x03\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𡆍
+ 0x2118e: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 𡆎
+ 0x2118f: "\x02\x05\x01\x05\x01\x01\x02\x02\x05\x01\x01\x05\x05\x01\x05\x05\x01\x05\x01\x02\x01\x03\x03\x01\x02", // 𡆏
+ 0x21190: "\x01\x02\x02\x01\x02\x05\x01\x04\x03\x03\x04\x01\x02\x01\x01\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01", // 𡆐
+ 0x21191: "\x02\x05\x01\x02\x05\x02\x02\x05\x01\x02\x05\x01\x01\x03\x01\x02\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 𡆑
+ 0x21192: "\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x05\x01\x02\x01\x01\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01", // 𡆒
+ 0x21193: "\x02\x05\x01\x02\x04\x03\x05\x05\x03\x04\x04\x03\x05\x01\x05\x01\x02\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 𡆓
+ 0x21194: "\x02\x05\x01\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x02\x05\x01\x01\x02\x05\x01\x02", // 𡆔
+ 0x21195: "\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x05\x04\x04", // 𡆕
+ 0x21196: "\x02\x05\x01\x01\x02\x02\x01\x02\x05\x03\x05\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 𡆖
+ 0x21197: "\x02\x05\x01\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01\x04\x05\x04", // 𡆗
+ 0x21198: "\x02\x05\x01\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x04\x04\x04\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𡆘
+ 0x21199: "\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01\x03\x05\x02\x05\x01\x01\x05\x03\x05\x03\x05\x02\x05\x01\x03\x05\x04", // 𡆙
+ 0x2119a: "\x02\x05\x01\x03\x03\x02\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x01\x01\x02", // 𡆚
+ 0x2119b: "\x02\x05\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𡆛
+ 0x2119c: "\x02\x05\x01\x01\x02\x01\x02\x05\x01\x03\x02\x04\x01\x03\x04\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 𡆜
+ 0x2119d: "\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x02\x05\x03\x04\x03\x04", // 𡆝
+ 0x2119e: "\x02\x05\x01\x02\x01\x01\x02\x01\x01\x01\x02\x01\x02\x05\x05\x01\x05\x05\x01\x05\x01\x02\x01\x03\x03\x01\x02", // 𡆞
+ 0x2119f: "\x02\x05\x01\x03\x04\x04\x03\x05\x03\x03\x05\x01\x01\x05\x03\x04\x02\x01\x02\x01\x03\x05\x03\x05\x01\x03\x04\x03\x04\x05\x02", // 𡆟
+ 0x211a0: "\x02\x05\x05\x01", // 𡆠
+ 0x211a1: "\x02\x05\x04\x01", // 𡆡
+ 0x211a2: "\x02\x05\x05\x01", // 𡆢
+ 0x211a3: "\x02\x05\x03\x04\x01", // 𡆣
+ 0x211a4: "\x02\x05\x01\x01\x01", // 𡆤
+ 0x211a5: "\x02\x05\x02\x04\x01", // 𡆥
+ 0x211a6: "\x02\x05\x03\x04\x01", // 𡆦
+ 0x211a7: "\x02\x05\x02\x03\x04\x01", // 𡆧
+ 0x211a8: "\x02\x05\x01\x01\x01\x01", // 𡆨
+ 0x211a9: "\x02\x05\x05\x05\x04\x01", // 𡆩
+ 0x211aa: "\x02\x05\x01\x02\x02\x01", // 𡆪
+ 0x211ab: "\x02\x05\x02\x05\x02\x01", // 𡆫
+ 0x211ac: "\x02\x05\x01\x02\x01\x01", // 𡆬
+ 0x211ad: "\x02\x05\x01\x05\x03\x01", // 𡆭
+ 0x211ae: "\x02\x05\x01\x02\x01\x01", // 𡆮
+ 0x211af: "\x02\x05\x02\x05\x02\x01", // 𡆯
+ 0x211b0: "\x02\x05\x01\x01\x05\x01", // 𡆰
+ 0x211b1: "\x02\x05\x03\x03\x03\x01", // 𡆱
+ 0x211b2: "\x02\x05\x04\x01\x05\x01", // 𡆲
+ 0x211b3: "\x02\x05\x05\x01\x05\x01", // 𡆳
+ 0x211b4: "\x02\x05\x05\x02\x01\x01\x01", // 𡆴
+ 0x211b5: "\x02\x05\x01\x02\x05\x05\x01\x02\x01", // 𡆵
+ 0x211b6: "\x02\x05\x01\x02\x01\x03\x05\x01", // 𡆶
+ 0x211b7: "\x02\x05\x02\x05\x01\x01\x01", // 𡆷
+ 0x211b8: "\x02\x05\x01\x02\x01\x05\x01", // 𡆸
+ 0x211b9: "\x02\x05\x05\x04\x05\x02\x01", // 𡆹
+ 0x211ba: "\x02\x05\x03\x01\x01\x02\x01", // 𡆺
+ 0x211bb: "\x02\x05\x01\x05\x05\x04\x01", // 𡆻
+ 0x211bc: "\x02\x05\x03\x01\x02\x02\x01", // 𡆼
+ 0x211bd: "\x02\x05\x03\x04\x01\x05\x01", // 𡆽
+ 0x211be: "\x02\x05\x03\x04\x05\x04\x01", // 𡆾
+ 0x211bf: "\x02\x05\x03\x05\x01\x05\x01", // 𡆿
+ 0x211c0: "\x02\x05\x03\x05\x05\x04\x01", // 𡇀
+ 0x211c1: "\x02\x05\x04\x01\x05\x04\x01", // 𡇁
+ 0x211c2: "\x02\x05\x04\x03\x03\x04\x01", // 𡇂
+ 0x211c3: "\x02\x05\x05\x02\x01\x05\x01", // 𡇃
+ 0x211c4: "\x02\x05\x05\x04\x05\x04\x01", // 𡇄
+ 0x211c5: "\x02\x05\x04\x01\x05\x03\x01", // 𡇅
+ 0x211c6: "\x02\x05\x05\x01\x05\x01\x01", // 𡇆
+ 0x211c7: "\x02\x05\x03\x04\x05\x03\x01", // 𡇇
+ 0x211c8: "\x02\x05\x01\x03\x02\x05\x01\x01", // 𡇈
+ 0x211c9: "\x02\x05\x02\x05\x01\x01\x01\x01", // 𡇉
+ 0x211ca: "\x02\x05\x01\x03\x02\x05\x02\x01", // 𡇊
+ 0x211cb: "\x02\x05\x02\x04\x01\x03\x04\x01", // 𡇋
+ 0x211cc: "\x02\x05\x02\x05\x01\x01\x01\x01", // 𡇌
+ 0x211cd: "\x02\x05\x02\x05\x01\x02\x01\x01", // 𡇍
+ 0x211ce: "\x02\x05\x04\x01\x05\x05\x04\x01", // 𡇎
+ 0x211cf: "\x02\x05\x04\x03\x01\x05\x03\x01", // 𡇏
+ 0x211d0: "\x02\x05\x01\x02\x03\x04\x01\x01", // 𡇐
+ 0x211d1: "\x02\x05\x02\x05\x01\x05\x01\x01", // 𡇑
+ 0x211d2: "\x02\x05\x04\x03\x01\x02\x03\x04\x01", // 𡇒
+ 0x211d3: "\x02\x05\x01\x05\x04\x01\x02\x01\x01", // 𡇓
+ 0x211d4: "\x02\x05\x05\x03\x01\x05\x03\x01\x01", // 𡇔
+ 0x211d5: "\x02\x05\x03\x05\x01\x03\x05\x04\x01", // 𡇕
+ 0x211d6: "\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 𡇖
+ 0x211d7: "\x02\x05\x01\x05\x04\x03\x02\x05\x01", // 𡇗
+ 0x211d8: "\x02\x05\x03\x05\x04\x03\x05\x04\x01", // 𡇘
+ 0x211d9: "\x02\x05\x03\x05\x01\x02\x03\x04\x01", // 𡇙
+ 0x211da: "\x02\x05\x01\x03\x02\x05\x01\x01\x01", // 𡇚
+ 0x211db: "\x02\x05\x02\x01\x03\x04\x05\x04\x01", // 𡇛
+ 0x211dc: "\x02\x05\x03\x01\x02\x02\x05\x01\x01", // 𡇜
+ 0x211dd: "\x02\x05\x03\x02\x05\x01\x01\x01\x01", // 𡇝
+ 0x211de: "\x02\x05\x03\x04\x01\x02\x05\x01\x01", // 𡇞
+ 0x211df: "\x02\x05\x05\x05\x04\x05\x05\x04\x01", // 𡇟
+ 0x211e0: "\x02\x05\x03\x02\x05\x01\x01\x01\x05\x01", // 𡇠
+ 0x211e1: "\x02\x05\x03\x04\x02\x05\x01\x01\x01\x01", // 𡇡
+ 0x211e2: "\x02\x05\x01\x03\x02\x05\x01\x01\x01\x01", // 𡇢
+ 0x211e3: "\x02\x05\x03\x05\x01\x02\x02\x05\x01\x01", // 𡇣
+ 0x211e4: "\x04\x03\x02\x05\x01\x02\x02\x05\x01\x01", // 𡇤
+ 0x211e5: "\x02\x05\x03\x02\x01\x02\x01\x03\x04\x01", // 𡇥
+ 0x211e6: "\x02\x05\x01\x01\x02\x01\x05\x03\x01\x01", // 𡇦
+ 0x211e7: "\x02\x05\x01\x02\x05\x01\x04\x03\x01\x01", // 𡇧
+ 0x211e8: "\x02\x05\x02\x05\x01\x02\x01\x05\x03\x01", // 𡇨
+ 0x211e9: "\x02\x05\x02\x05\x02\x03\x02\x03\x05\x01", // 𡇩
+ 0x211ea: "\x02\x05\x03\x01\x02\x01\x02\x05\x01\x01", // 𡇪
+ 0x211eb: "\x02\x05\x03\x05\x04\x04\x04\x04\x04\x01", // 𡇫
+ 0x211ec: "\x02\x05\x04\x03\x01\x02\x01\x02\x01\x01", // 𡇬
+ 0x211ed: "\x02\x05\x05\x03\x01\x01\x05\x03\x01\x01", // 𡇭
+ 0x211ee: "\x02\x05\x05\x04\x02\x05\x01\x01\x02\x01", // 𡇮
+ 0x211ef: "\x02\x05\x01\x02\x05\x01\x02\x03\x04\x01", // 𡇯
+ 0x211f0: "\x02\x05\x01\x03\x04\x05\x04\x03\x05\x01", // 𡇰
+ 0x211f1: "\x02\x05\x01\x03\x02\x05\x01\x02\x05\x01\x01", // 𡇱
+ 0x211f2: "\x02\x05\x03\x04\x04\x03\x05\x02\x01\x05\x01", // 𡇲
+ 0x211f3: "\x02\x05\x03\x04\x01\x02\x05\x01\x05\x02\x01", // 𡇳
+ 0x211f4: "\x02\x05\x02\x01\x02\x01\x03\x05\x03\x04\x01", // 𡇴
+ 0x211f5: "\x02\x05\x04\x04\x05\x01\x03\x02\x05\x01\x01", // 𡇵
+ 0x211f6: "\x05\x04\x02\x05\x03\x04\x01\x02\x05\x01\x01", // 𡇶
+ 0x211f7: "\x04\x03\x02\x05\x03\x05\x04\x02\x05\x01\x01", // 𡇷
+ 0x211f8: "\x02\x05\x03\x01\x02\x02\x01\x01\x03\x05\x01", // 𡇸
+ 0x211f9: "\x02\x05\x03\x05\x02\x05\x01\x03\x05\x04\x01", // 𡇹
+ 0x211fa: "\x02\x05\x05\x04\x03\x05\x04\x04\x04\x04\x01", // 𡇺
+ 0x211fb: "\x02\x05\x04\x01\x03\x04\x03\x04\x01\x02\x01", // 𡇻
+ 0x211fc: "\x02\x05\x02\x05\x01\x01\x03\x05\x03\x04\x05\x01", // 𡇼
+ 0x211fd: "\x02\x05\x01\x02\x05\x02\x02\x01\x01\x02\x01\x01", // 𡇽
+ 0x211fe: "\x02\x05\x01\x02\x02\x01\x01\x05\x02\x05\x01\x01", // 𡇾
+ 0x211ff: "\x02\x05\x01\x02\x05\x01\x02\x03\x04\x02\x02\x01", // 𡇿
+ 0x21200: "\x02\x05\x01\x02\x01\x05\x05\x01\x02\x01\x01", // 𡈀
+ 0x21201: "\x02\x05\x03\x02\x05\x01\x01\x01\x01\x02\x01\x01", // 𡈁
+ 0x21202: "\x02\x05\x01\x02\x01\x04\x01\x03\x05\x03\x04\x01", // 𡈂
+ 0x21203: "\x02\x05\x02\x05\x01\x04\x01\x03\x05\x03\x04\x01", // 𡈃
+ 0x21204: "\x02\x05\x05\x04\x01\x03\x02\x05\x01\x02\x01\x01", // 𡈄
+ 0x21205: "\x02\x05\x01\x02\x02\x05\x01\x01\x03\x04\x03\x02", // 𡈅
+ 0x21206: "\x02\x05\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01", // 𡈆
+ 0x21207: "\x02\x05\x05\x04\x02\x05\x01\x01\x02\x02\x01\x01", // 𡈇
+ 0x21208: "\x02\x05\x03\x01\x02\x05\x01\x01\x02\x01\x01\x01", // 𡈈
+ 0x21209: "\x02\x05\x01\x02\x01\x02\x01\x03\x02\x05\x01\x01", // 𡈉
+ 0x2120a: "\x02\x05\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01", // 𡈊
+ 0x2120b: "\x01\x02\x05\x01\x02\x02\x05\x01\x02\x05\x05\x01\x02\x01", // 𡈋
+ 0x2120c: "\x02\x05\x01\x02\x01\x02\x02\x05\x03\x05\x02\x05\x01", // 𡈌
+ 0x2120d: "\x02\x05\x03\x04\x03\x04\x01\x02\x03\x04\x03\x04\x01", // 𡈍
+ 0x2120e: "\x02\x05\x03\x02\x05\x01\x01\x05\x04\x04\x04\x04\x01", // 𡈎
+ 0x2120f: "\x02\x05\x03\x01\x01\x05\x04\x03\x01\x02\x03\x04\x01", // 𡈏
+ 0x21210: "\x02\x05\x01\x02\x02\x03\x04\x01\x02\x05\x01\x01", // 𡈐
+ 0x21211: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05\x03\x04\x01", // 𡈑
+ 0x21212: "\x02\x05\x01\x03\x05\x04\x03\x05\x04\x05\x04\x04\x01", // 𡈒
+ 0x21213: "\x02\x05\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04\x01", // 𡈓
+ 0x21214: "\x02\x05\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01", // 𡈔
+ 0x21215: "\x02\x05\x04\x03\x01\x01\x03\x04\x02\x05\x01\x01\x01\x01", // 𡈕
+ 0x21216: "\x02\x05\x02\x01\x02\x01\x03\x02\x03\x02\x03\x03\x03\x01", // 𡈖
+ 0x21217: "\x02\x05\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x04\x01", // 𡈗
+ 0x21218: "\x02\x05\x04\x03\x01\x03\x02\x05\x01\x03\x05\x02\x05\x01", // 𡈘
+ 0x21219: "\x02\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x01", // 𡈙
+ 0x2121a: "\x02\x05\x04\x03\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𡈚
+ 0x2121b: "\x02\x05\x04\x04\x01\x03\x02\x04\x03\x01\x02\x03\x04\x01", // 𡈛
+ 0x2121c: "\x02\x05\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04\x01", // 𡈜
+ 0x2121d: "\x02\x05\x03\x02\x05\x01\x01\x02\x05\x02\x03\x03\x03\x01", // 𡈝
+ 0x2121e: "\x02\x05\x01\x03\x04\x04\x03\x01\x02\x01\x01\x02\x01\x01", // 𡈞
+ 0x2121f: "\x02\x05\x02\x05\x01\x01\x01\x05\x01\x01\x05\x03\x04\x01", // 𡈟
+ 0x21220: "\x02\x05\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x01", // 𡈠
+ 0x21221: "\x02\x05\x05\x05\x04\x04\x04\x04\x03\x05\x04\x04\x04\x01", // 𡈡
+ 0x21222: "\x02\x05\x04\x03\x01\x01\x03\x04\x05\x05\x04\x02\x03\x04\x01", // 𡈢
+ 0x21223: "\x02\x05\x03\x04\x04\x03\x02\x05\x02\x02\x01\x01\x02\x04\x02", // 𡈣
+ 0x21224: "\x04\x03\x02\x05\x01\x02\x01\x02\x05\x01\x03\x02\x03\x04\x01", // 𡈤
+ 0x21225: "\x02\x05\x01\x02\x01\x02\x01\x02\x01\x03\x02\x05\x01\x01\x01", // 𡈥
+ 0x21226: "\x02\x05\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05\x01", // 𡈦
+ 0x21227: "\x01\x02\x05\x01\x02\x05\x01\x02\x01\x05\x05\x01\x02\x01\x01", // 𡈧
+ 0x21228: "\x02\x05\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01", // 𡈨
+ 0x21229: "\x02\x05\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01\x01", // 𡈩
+ 0x2122a: "\x02\x05\x03\x02\x05\x01\x01\x03\x05\x02\x05\x02\x03\x03\x03\x01", // 𡈪
+ 0x2122b: "\x02\x05\x05\x04\x05\x02\x02\x05\x02\x05\x05\x04\x02\x03\x04\x01", // 𡈫
+ 0x2122c: "\x02\x05\x03\x02\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04\x01", // 𡈬
+ 0x2122d: "\x02\x05\x03\x05\x03\x04\x01\x01\x01\x02\x05\x01\x01\x03\x04\x04\x01", // 𡈭
+ 0x2122e: "\x02\x05\x01\x02\x01\x02\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01\x01", // 𡈮
+ 0x2122f: "\x01\x03\x02\x04\x02\x05\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04\x01", // 𡈯
+ 0x21230: "\x02\x05\x04\x01\x01\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01\x01", // 𡈰
+ 0x21231: "\x02\x05\x05\x04\x05\x02\x02\x05\x02\x03\x05\x05\x04\x02\x03\x04\x01", // 𡈱
+ 0x21232: "\x02\x05\x01\x03\x04\x01\x02\x05\x01\x03\x04\x01\x02\x05\x01\x03\x04\x01", // 𡈲
+ 0x21233: "\x02\x05\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x03\x01\x02\x03\x04\x01", // 𡈳
+ 0x21234: "\x02\x05\x02\x05\x01\x01\x01\x01\x02\x03\x04\x03\x05\x05\x04\x02\x03\x04\x01", // 𡈴
+ 0x21235: "\x02\x05\x01\x01\x02\x01\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04\x01", // 𡈵
+ 0x21236: "\x02\x05\x03\x04\x01\x02\x05\x03\x04\x01\x02\x05\x03\x04\x01\x02\x05\x03\x04\x01", // 𡈶
+ 0x21237: "\x02\x05\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x05\x05\x04\x02\x03\x04\x01", // 𡈷
+ 0x21238: "\x02\x05\x03\x05\x04\x01\x04\x01\x01\x01\x02\x05\x01\x03\x05\x05\x04\x02\x03\x04\x01", // 𡈸
+ 0x21239: "\x02\x05\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x01\x02\x03\x04\x01\x02\x03\x04\x01", // 𡈹
+ 0x2123a: "\x02\x05\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04\x01\x03\x04\x01\x02\x05\x01\x02\x02", // 𡈺
+ 0x2123b: "\x02\x05\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x04\x05\x04\x04\x01", // 𡈻
+ 0x2123c: "\x03\x01\x02\x01", // 𡈼
+ 0x2123d: "\x01\x02\x01\x04", // 𡈽
+ 0x2123e: "\x05\x01\x02\x01", // 𡈾
+ 0x2123f: "\x01\x02\x01\x01\x02", // 𡈿
+ 0x21240: "\x03\x04\x01\x02\x01", // 𡉀
+ 0x21241: "\x01\x02\x01\x05\x03", // 𡉁
+ 0x21242: "\x05\x03\x01\x02\x01", // 𡉂
+ 0x21243: "\x01\x02\x01\x01\x03", // 𡉃
+ 0x21244: "\x01\x03\x01\x02\x01", // 𡉄
+ 0x21245: "\x01\x02\x01\x02\x05", // 𡉅
+ 0x21246: "\x01\x02\x01\x05\x02", // 𡉆
+ 0x21247: "\x01\x02\x01\x03\x04", // 𡉇
+ 0x21248: "\x01\x02\x01\x01\x02\x01", // 𡉈
+ 0x21249: "\x01\x02\x01\x02\x05\x01", // 𡉉
+ 0x2124a: "\x01\x03\x05\x01\x02\x01", // 𡉊
+ 0x2124b: "\x01\x02\x01\x01\x03\x04", // 𡉋
+ 0x2124c: "\x01\x02\x01\x03\x05\x04", // 𡉌
+ 0x2124d: "\x01\x02\x01\x03\x05\x03", // 𡉍
+ 0x2124e: "\x01\x02\x01\x01\x02\x01", // 𡉎
+ 0x2124f: "\x01\x02\x01\x05\x01\x05", // 𡉏
+ 0x21250: "\x01\x02\x01\x01\x02\x01", // 𡉐
+ 0x21251: "\x01\x02\x01\x01\x03\x04", // 𡉑
+ 0x21252: "\x01\x02\x01\x03\x01\x05", // 𡉒
+ 0x21253: "\x01\x02\x01\x05\x03\x01", // 𡉓
+ 0x21254: "\x05\x03\x04\x01\x02\x01", // 𡉔
+ 0x21255: "\x01\x02\x01\x03\x05\x04", // 𡉕
+ 0x21256: "\x01\x02\x01\x05\x01\x05", // 𡉖
+ 0x21257: "\x01\x02\x01\x05\x02\x01", // 𡉗
+ 0x21258: "\x01\x01\x01\x02\x01\x02\x01", // 𡉘
+ 0x21259: "\x01\x05\x03\x05\x01\x02\x01", // 𡉙
+ 0x2125a: "\x05\x02\x02\x01\x01\x02\x01", // 𡉚
+ 0x2125b: "\x01\x02\x01\x03\x01\x01\x05", // 𡉛
+ 0x2125c: "\x01\x02\x01\x05\x01\x01\x02", // 𡉜
+ 0x2125d: "\x01\x01\x03\x02\x01\x02\x01", // 𡉝
+ 0x2125e: "\x01\x02\x01\x01\x03\x05\x04", // 𡉞
+ 0x2125f: "\x05\x02\x01\x03\x01\x02\x01", // 𡉟
+ 0x21260: "\x01\x02\x01\x01\x01\x02\x01", // 𡉠
+ 0x21261: "\x05\x02\x03\x04\x01\x02\x01", // 𡉡
+ 0x21262: "\x04\x03\x05\x04\x01\x02\x01", // 𡉢
+ 0x21263: "\x01\x02\x03\x04\x01\x02\x01", // 𡉣
+ 0x21264: "\x01\x03\x02\x04\x01\x02\x01", // 𡉤
+ 0x21265: "\x01\x02\x01\x02\x05\x01\x02", // 𡉥
+ 0x21266: "\x01\x02\x01\x03\x01\x01\x02", // 𡉦
+ 0x21267: "\x01\x02\x01\x03\x01\x03\x02", // 𡉧
+ 0x21268: "\x01\x02\x01\x01\x01\x03\x02", // 𡉨
+ 0x21269: "\x01\x02\x01\x01\x03\x04\x04", // 𡉩
+ 0x2126a: "\x01\x02\x01\x01\x05\x02\x03", // 𡉪
+ 0x2126b: "\x01\x05\x02\x05\x01\x02\x01", // 𡉫
+ 0x2126c: "\x01\x02\x01\x01\x05\x05\x04", // 𡉬
+ 0x2126d: "\x01\x02\x01\x02\x05\x01\x01", // 𡉭
+ 0x2126e: "\x02\x05\x05\x04\x01\x02\x01", // 𡉮
+ 0x2126f: "\x01\x02\x01\x03\x01\x01\x02", // 𡉯
+ 0x21270: "\x03\x04\x05\x02\x01\x02\x01", // 𡉰
+ 0x21271: "\x01\x02\x01\x02\x05\x01\x01", // 𡉱
+ 0x21272: "\x03\x05\x01\x01\x01\x02\x01", // 𡉲
+ 0x21273: "\x01\x02\x01\x03\x05\x05\x04", // 𡉳
+ 0x21274: "\x01\x02\x01\x03\x05\x01\x03", // 𡉴
+ 0x21275: "\x05\x01\x02\x01\x01\x02\x01", // 𡉵
+ 0x21276: "\x01\x02\x01\x05\x01\x05\x01", // 𡉶
+ 0x21277: "\x05\x02\x01\x05\x01\x02\x01", // 𡉷
+ 0x21278: "\x05\x04\x05\x02\x01\x02\x01", // 𡉸
+ 0x21279: "\x01\x02\x03\x02\x01\x02\x01", // 𡉹
+ 0x2127a: "\x01\x02\x01\x02\x05\x03\x04", // 𡉺
+ 0x2127b: "\x01\x02\x01\x03\x05\x01\x02", // 𡉻
+ 0x2127c: "\x03\x01\x03\x02\x01\x02\x01", // 𡉼
+ 0x2127d: "\x01\x02\x01\x04\x01\x03\x04", // 𡉽
+ 0x2127e: "\x01\x02\x01\x04\x05\x04\x04", // 𡉾
+ 0x2127f: "\x01\x02\x01\x01\x02\x03\x04", // 𡉿
+ 0x21280: "\x01\x02\x01\x01\x03\x04\x04", // 𡊀
+ 0x21281: "\x01\x02\x01\x03\x05\x05\x02", // 𡊁
+ 0x21282: "\x03\x05\x05\x02\x01\x02\x01", // 𡊂
+ 0x21283: "\x01\x03\x05\x04\x01\x02\x01", // 𡊃
+ 0x21284: "\x05\x04\x01\x03\x04\x01\x02\x01", // 𡊄
+ 0x21285: "\x05\x04\x01\x03\x02\x01\x02\x01", // 𡊅
+ 0x21286: "\x01\x02\x01\x01\x01\x02\x03\x04", // 𡊆
+ 0x21287: "\x01\x02\x01\x03\x01\x05\x02\x05", // 𡊇
+ 0x21288: "\x01\x02\x01\x05\x01\x05\x01\x02", // 𡊈
+ 0x21289: "\x01\x02\x01\x01\x01\x02\x03\x04", // 𡊉
+ 0x2128a: "\x01\x02\x01\x02\x05\x01\x05\x01", // 𡊊
+ 0x2128b: "\x01\x02\x01\x01\x02\x01\x05\x04", // 𡊋
+ 0x2128c: "\x01\x02\x01\x01\x03\x04\x01\x01", // 𡊌
+ 0x2128d: "\x01\x02\x01\x01\x02\x03\x05\x04", // 𡊍
+ 0x2128e: "\x03\x05\x03\x05\x02\x01\x02\x01", // 𡊎
+ 0x2128f: "\x05\x04\x02\x05\x02\x01\x02\x01", // 𡊏
+ 0x21290: "\x01\x02\x01\x02\x05\x02\x05", // 𡊐
+ 0x21291: "\x01\x02\x01\x03\x05\x02\x03\x04", // 𡊑
+ 0x21292: "\x01\x02\x01\x03\x04\x02\x03\x04", // 𡊒
+ 0x21293: "\x01\x02\x01\x05\x01\x05\x01\x02", // 𡊓
+ 0x21294: "\x01\x02\x01\x04\x01\x02\x05\x02", // 𡊔
+ 0x21295: "\x01\x02\x01\x01\x02\x01\x03\x04", // 𡊕
+ 0x21296: "\x01\x02\x01\x01\x02\x03\x04\x01", // 𡊖
+ 0x21297: "\x01\x02\x01\x05\x03\x02\x05\x01", // 𡊗
+ 0x21298: "\x01\x02\x01\x01\x03\x01\x03\x04", // 𡊘
+ 0x21299: "\x02\x05\x01\x05\x04\x01\x02\x01", // 𡊙
+ 0x2129a: "\x01\x02\x01\x03\x02\x05\x01\x01", // 𡊚
+ 0x2129b: "\x01\x02\x01\x01\x02\x01\x05\x04", // 𡊛
+ 0x2129c: "\x01\x02\x01\x01\x02\x02\x05\x01", // 𡊜
+ 0x2129d: "\x01\x05\x05\x04\x01\x02\x01", // 𡊝
+ 0x2129e: "\x01\x04\x03\x01\x02\x01\x02\x01", // 𡊞
+ 0x2129f: "\x01\x02\x01\x02\x05\x01\x01\x01", // 𡊟
+ 0x212a0: "\x01\x02\x01\x02\x05\x01\x01\x02", // 𡊠
+ 0x212a1: "\x01\x02\x01\x02\x05\x01\x02\x01", // 𡊡
+ 0x212a2: "\x01\x02\x01\x02\x05\x02\x05\x01", // 𡊢
+ 0x212a3: "\x03\x02\x01\x02\x01\x01\x02\x01", // 𡊣
+ 0x212a4: "\x01\x02\x01\x03\x05\x01\x01\x02", // 𡊤
+ 0x212a5: "\x03\x05\x01\x02\x01\x01\x02\x01", // 𡊥
+ 0x212a6: "\x01\x02\x01\x03\x05\x02\x05\x01", // 𡊦
+ 0x212a7: "\x01\x02\x01\x03\x05\x03\x05\x02", // 𡊧
+ 0x212a8: "\x01\x02\x01\x04\x01\x05\x05\x04", // 𡊨
+ 0x212a9: "\x01\x02\x01\x01\x01\x02\x01\x04", // 𡊩
+ 0x212aa: "\x01\x02\x01\x04\x03\x01\x03\x05", // 𡊪
+ 0x212ab: "\x01\x02\x01\x04\x04\x05\x03\x05", // 𡊫
+ 0x212ac: "\x01\x02\x01\x04\x05\x03\x05\x01", // 𡊬
+ 0x212ad: "\x04\x05\x04\x03\x04\x01\x02\x01", // 𡊭
+ 0x212ae: "\x01\x02\x01\x05\x03\x05\x03\x04", // 𡊮
+ 0x212af: "\x01\x02\x01\x05\x04\x01\x03\x02", // 𡊯
+ 0x212b0: "\x01\x02\x01\x02\x05\x01\x02\x01", // 𡊰
+ 0x212b1: "\x01\x02\x01\x05\x03\x02\x05\x01", // 𡊱
+ 0x212b2: "\x01\x02\x01\x04\x01\x01\x02\x01", // 𡊲
+ 0x212b3: "\x01\x02\x01\x03\x01\x01\x02\x01", // 𡊳
+ 0x212b4: "\x05\x01\x03\x01\x05\x01\x02\x01", // 𡊴
+ 0x212b5: "\x01\x03\x02\x05\x01\x01\x02\x01", // 𡊵
+ 0x212b6: "\x01\x02\x01\x03\x05\x01\x05\x02", // 𡊶
+ 0x212b7: "\x01\x01\x01\x02\x05\x03\x01\x02\x01", // 𡊷
+ 0x212b8: "\x01\x02\x01\x01\x01\x03\x05\x03\x04", // 𡊸
+ 0x212b9: "\x01\x02\x05\x02\x02\x01\x01\x02\x01", // 𡊹
+ 0x212ba: "\x04\x04\x01\x01\x01\x02\x01\x02\x01", // 𡊺
+ 0x212bb: "\x01\x02\x01\x01\x03\x05\x04\x02\x02", // 𡊻
+ 0x212bc: "\x01\x02\x01\x03\x05\x04\x01\x02\x01", // 𡊼
+ 0x212bd: "\x02\x05\x02\x03\x01\x02\x01\x02\x01", // 𡊽
+ 0x212be: "\x01\x02\x01\x04\x01\x03\x03\x01\x05", // 𡊾
+ 0x212bf: "\x01\x02\x01\x04\x01\x05\x04\x03\x05", // 𡊿
+ 0x212c0: "\x01\x02\x01\x04\x05\x02\x04\x05", // 𡋀
+ 0x212c1: "\x01\x02\x01\x04\x03\x01\x02\x05\x02", // 𡋁
+ 0x212c2: "\x01\x02\x01\x03\x01\x01\x02\x01\x02", // 𡋂
+ 0x212c3: "\x01\x02\x01\x01\x01\x01\x02\x03\x04", // 𡋃
+ 0x212c4: "\x01\x02\x01\x03\x04\x01\x01\x02\x01", // 𡋄
+ 0x212c5: "\x04\x04\x05\x05\x03\x01\x01\x02\x01", // 𡋅
+ 0x212c6: "\x04\x04\x01\x03\x05\x04\x01\x02\x01", // 𡋆
+ 0x212c7: "\x04\x01\x03\x04\x05\x03\x01\x02\x01", // 𡋇
+ 0x212c8: "\x04\x01\x03\x03\x01\x02\x01\x02\x01", // 𡋈
+ 0x212c9: "\x01\x02\x01\x04\x04\x05\x03\x05\x05", // 𡋉
+ 0x212ca: "\x01\x03\x04\x05\x03\x04\x01\x02\x01", // 𡋊
+ 0x212cb: "\x04\x04\x01\x03\x05\x04\x01\x02\x01", // 𡋋
+ 0x212cc: "\x01\x02\x01\x01\x02\x01\x01\x01\x02", // 𡋌
+ 0x212cd: "\x01\x02\x02\x01\x03\x04\x01\x02\x01", // 𡋍
+ 0x212ce: "\x01\x02\x01\x01\x02\x01\x03\x01\x05", // 𡋎
+ 0x212cf: "\x02\x05\x01\x02\x03\x04\x01\x02\x01", // 𡋏
+ 0x212d0: "\x02\x05\x01\x02\x05\x01\x01\x02\x01", // 𡋐
+ 0x212d1: "\x02\x05\x01\x02\x05\x01\x01\x02\x01", // 𡋑
+ 0x212d2: "\x01\x02\x01\x03\x02\x05\x02\x02\x01", // 𡋒
+ 0x212d3: "\x01\x02\x01\x03\x05\x04\x05\x02", // 𡋓
+ 0x212d4: "\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 𡋔
+ 0x212d5: "\x01\x02\x01\x03\x05\x02\x05\x01\x01", // 𡋕
+ 0x212d6: "\x05\x03\x01\x01\x01\x02\x01\x02\x01", // 𡋖
+ 0x212d7: "\x01\x02\x01\x03\x04\x01\x01\x05\x04", // 𡋗
+ 0x212d8: "\x02\x05\x01\x03\x04\x01\x01\x02\x01", // 𡋘
+ 0x212d9: "\x01\x02\x01\x02\x05\x02\x05\x01\x01", // 𡋙
+ 0x212da: "\x03\x02\x03\x01\x01\x02\x01\x02\x01", // 𡋚
+ 0x212db: "\x03\x04\x01\x02\x05\x01\x01\x02\x01", // 𡋛
+ 0x212dc: "\x03\x05\x03\x05\x04\x01\x01\x02\x01", // 𡋜
+ 0x212dd: "\x01\x02\x01\x03\x05\x04\x03\x05\x04", // 𡋝
+ 0x212de: "\x01\x02\x01\x03\x05\x04\x01\x05\x05", // 𡋞
+ 0x212df: "\x01\x02\x01\x04\x01\x03\x04\x03\x04", // 𡋟
+ 0x212e0: "\x01\x02\x01\x05\x04\x01\x02\x03\x04", // 𡋠
+ 0x212e1: "\x01\x02\x01\x05\x04\x03\x02\x03\x04", // 𡋡
+ 0x212e2: "\x05\x05\x04\x05\x05\x04\x01\x02\x01", // 𡋢
+ 0x212e3: "\x01\x02\x01\x01\x02\x01\x01\x02\x01", // 𡋣
+ 0x212e4: "\x01\x02\x01\x05\x01\x03\x04\x04\x04", // 𡋤
+ 0x212e5: "\x01\x02\x01\x01\x02\x01\x02\x05\x01", // 𡋥
+ 0x212e6: "\x01\x02\x01\x01\x03\x02\x05\x01\x01", // 𡋦
+ 0x212e7: "\x03\x04\x04\x03\x04\x05\x01\x02\x01", // 𡋧
+ 0x212e8: "\x01\x02\x01\x03\x01\x02\x01\x02\x01", // 𡋨
+ 0x212e9: "\x03\x03\x02\x01\x02\x01\x01\x02\x01", // 𡋩
+ 0x212ea: "\x02\x01\x02\x05\x05\x04\x01\x02\x01", // 𡋪
+ 0x212eb: "\x01\x02\x01\x01\x03\x05\x03\x05\x02", // 𡋫
+ 0x212ec: "\x01\x05\x04\x04\x04\x04\x01\x02\x01", // 𡋬
+ 0x212ed: "\x02\x01\x01\x01\x05\x04\x05\x01\x02\x01", // 𡋭
+ 0x212ee: "\x01\x02\x01\x01\x03\x04\x01\x05\x03\x04", // 𡋮
+ 0x212ef: "\x01\x02\x01\x01\x02\x04\x05\x05\x02\x01", // 𡋯
+ 0x212f0: "\x01\x02\x01\x03\x05\x01\x02\x01\x03\x05", // 𡋰
+ 0x212f1: "\x01\x02\x01\x01\x01\x02\x01\x01\x03\x02", // 𡋱
+ 0x212f2: "\x01\x02\x01\x05\x02\x05\x01\x01\x02\x01", // 𡋲
+ 0x212f3: "\x01\x02\x01\x02\x05\x01\x01\x01\x01\x05", // 𡋳
+ 0x212f4: "\x05\x02\x03\x03\x05\x04\x01\x02\x01", // 𡋴
+ 0x212f5: "\x02\x05\x01\x01\x01\x03\x04\x01\x02\x01", // 𡋵
+ 0x212f6: "\x01\x02\x01\x05\x01\x01\x01\x01\x02\x04", // 𡋶
+ 0x212f7: "\x04\x04\x01\x02\x03\x04\x03\x01\x02\x01", // 𡋷
+ 0x212f8: "\x01\x02\x01\x03\x03\x04\x03\x04\x01\x05", // 𡋸
+ 0x212f9: "\x02\x01\x03\x05\x04\x05\x04\x01\x02\x01", // 𡋹
+ 0x212fa: "\x01\x02\x01\x03\x01\x02\x01\x05\x04", // 𡋺
+ 0x212fb: "\x01\x02\x03\x04\x03\x04\x01\x01\x02\x01", // 𡋻
+ 0x212fc: "\x01\x02\x01\x01\x02\x01\x04\x05\x03\x05", // 𡋼
+ 0x212fd: "\x01\x02\x01\x01\x02\x01\x03\x02\x03\x04", // 𡋽
+ 0x212fe: "\x02\x05\x01\x05\x03\x02\x02\x01\x02\x01", // 𡋾
+ 0x212ff: "\x01\x02\x01\x02\x05\x01\x03\x02\x05\x01", // 𡋿
+ 0x21300: "\x01\x02\x01\x02\x05\x01\x05\x03\x02\x02", // 𡌀
+ 0x21301: "\x01\x01\x03\x02\x04\x02\x02\x01\x02\x01", // 𡌁
+ 0x21302: "\x04\x04\x01\x03\x05\x05\x03\x01\x02\x01", // 𡌂
+ 0x21303: "\x01\x02\x01\x03\x01\x02\x01\x02\x05\x01", // 𡌃
+ 0x21304: "\x01\x02\x01\x01\x02\x05\x01\x01\x01\x02", // 𡌄
+ 0x21305: "\x03\x02\x05\x01\x05\x03\x02\x01\x02\x01", // 𡌅
+ 0x21306: "\x03\x04\x01\x01\x02\x03\x04\x01\x02\x01", // 𡌆
+ 0x21307: "\x01\x02\x01\x01\x03\x02\x05\x01\x05\x03", // 𡌇
+ 0x21308: "\x01\x02\x01\x05\x01\x01\x03\x05\x02", // 𡌈
+ 0x21309: "\x01\x02\x01\x01\x02\x01\x03\x05\x02\x01", // 𡌉
+ 0x2130a: "\x01\x02\x04\x01\x03\x04\x04\x01\x02\x01", // 𡌊
+ 0x2130b: "\x01\x02\x01\x01\x02\x04\x01\x03\x04\x04", // 𡌋
+ 0x2130c: "\x05\x02\x03\x03\x01\x02\x01\x02\x01", // 𡌌
+ 0x2130d: "\x02\x05\x01\x03\x01\x03\x02\x01\x02\x01", // 𡌍
+ 0x2130e: "\x05\x03\x01\x01\x01\x03\x02\x01\x02\x01", // 𡌎
+ 0x2130f: "\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03", // 𡌏
+ 0x21310: "\x01\x02\x01\x03\x03\x02\x01\x02\x05\x01", // 𡌐
+ 0x21311: "\x01\x01\x03\x02\x03\x03\x03\x01\x02\x01", // 𡌑
+ 0x21312: "\x01\x01\x03\x02\x03\x03\x03\x01\x02\x01", // 𡌒
+ 0x21313: "\x02\x01\x02\x05\x03\x04\x01\x01\x02\x01", // 𡌓
+ 0x21314: "\x01\x02\x01\x02\x04\x03\x02\x05\x01\x01", // 𡌔
+ 0x21315: "\x01\x02\x01\x02\x05\x01\x01\x02\x05\x02", // 𡌕
+ 0x21316: "\x01\x02\x01\x03\x01\x02\x05\x01\x01\x02", // 𡌖
+ 0x21317: "\x01\x02\x01\x03\x02\x05\x01\x01\x03\x05", // 𡌗
+ 0x21318: "\x01\x02\x01\x03\x04\x01\x01\x02\x03\x04", // 𡌘
+ 0x21319: "\x01\x02\x01\x03\x05\x02\x05\x01\x05\x01", // 𡌙
+ 0x2131a: "\x01\x02\x01\x03\x04\x03\x04\x01\x02\x01", // 𡌚
+ 0x2131b: "\x02\x05\x01\x02\x01\x05\x04\x01\x02\x01", // 𡌛
+ 0x2131c: "\x01\x02\x01\x03\x04\x05\x02\x02\x05\x02", // 𡌜
+ 0x2131d: "\x01\x02\x01\x04\x05\x05\x05\x04\x05\x03", // 𡌝
+ 0x2131e: "\x01\x02\x01\x05\x01\x03\x05\x01\x02\x01", // 𡌞
+ 0x2131f: "\x01\x02\x01\x05\x01\x03\x05\x02\x05\x01", // 𡌟
+ 0x21320: "\x01\x02\x01\x03\x02\x03\x05\x01\x05\x04", // 𡌠
+ 0x21321: "\x01\x02\x01\x04\x03\x05\x01\x05\x02\x03", // 𡌡
+ 0x21322: "\x01\x02\x01\x03\x04\x04\x05\x02\x05\x01", // 𡌢
+ 0x21323: "\x01\x02\x01\x02\x05\x02\x02\x01\x01\x05", // 𡌣
+ 0x21324: "\x01\x02\x01\x01\x02\x01\x01\x03\x04\x04", // 𡌤
+ 0x21325: "\x01\x05\x05\x04\x05\x05\x04\x01\x02\x01", // 𡌥
+ 0x21326: "\x03\x01\x01\x01\x02\x01\x01\x01\x01\x02\x01", // 𡌦
+ 0x21327: "\x01\x02\x01\x04\x01\x05\x03\x03\x04\x04\x04", // 𡌧
+ 0x21328: "\x01\x02\x01\x02\x05\x01\x02\x01\x04\x01\x02", // 𡌨
+ 0x21329: "\x01\x02\x01\x02\x05\x03\x04\x02\x05\x01\x01", // 𡌩
+ 0x2132a: "\x03\x05\x04\x03\x05\x04\x05\x04\x01\x02\x01", // 𡌪
+ 0x2132b: "\x03\x04\x01\x01\x02\x02\x05\x01\x01\x02\x01", // 𡌫
+ 0x2132c: "\x01\x02\x01\x02\x05\x01\x04\x05\x01\x02\x01", // 𡌬
+ 0x2132d: "\x05\x04\x05\x04\x05\x04\x05\x04\x01\x02\x01", // 𡌭
+ 0x2132e: "\x01\x02\x01\x04\x01\x03\x02\x04\x02\x05\x01", // 𡌮
+ 0x2132f: "\x01\x05\x02\x03\x05\x02\x01\x02\x01", // 𡌯
+ 0x21330: "\x05\x03\x01\x05\x01\x03\x01\x05\x01\x02\x01", // 𡌰
+ 0x21331: "\x01\x02\x01\x03\x02\x03\x04\x03\x04\x01\x05", // 𡌱
+ 0x21332: "\x01\x02\x01\x01\x02\x01\x03\x05\x02\x05\x01", // 𡌲
+ 0x21333: "\x01\x02\x05\x01\x01\x05\x03\x04\x01\x02\x01", // 𡌳
+ 0x21334: "\x01\x02\x02\x05\x01\x01\x01\x05\x01\x02\x01", // 𡌴
+ 0x21335: "\x03\x04\x02\x05\x03\x04\x03\x04\x01\x02\x01", // 𡌵
+ 0x21336: "\x01\x02\x01\x04\x03\x01\x02\x02\x04\x03\x01", // 𡌶
+ 0x21337: "\x01\x02\x01\x05\x01\x03\x01\x01\x02\x05\x02", // 𡌷
+ 0x21338: "\x01\x02\x01\x02\x05\x01\x02\x01\x01\x03\x02", // 𡌸
+ 0x21339: "\x01\x02\x01\x02\x05\x01\x02\x01\x02\x03\x02", // 𡌹
+ 0x2133a: "\x01\x02\x01\x05\x04\x02\x05\x01\x02\x01\x04", // 𡌺
+ 0x2133b: "\x01\x02\x01\x04\x01\x03\x05\x01\x01\x03\x04", // 𡌻
+ 0x2133c: "\x04\x01\x05\x03\x03\x01\x03\x04\x01\x02\x01", // 𡌼
+ 0x2133d: "\x01\x02\x01\x04\x01\x03\x02\x01\x02\x05\x01", // 𡌽
+ 0x2133e: "\x01\x02\x01\x04\x02\x05\x02\x02\x01\x02\x01", // 𡌾
+ 0x2133f: "\x01\x02\x01\x04\x01\x02\x05\x01\x02\x03\x04", // 𡌿
+ 0x21340: "\x01\x02\x01\x03\x05\x01\x03\x04\x01\x05\x03", // 𡍀
+ 0x21341: "\x01\x02\x03\x04\x01\x02\x05\x04\x01\x02\x01", // 𡍁
+ 0x21342: "\x01\x03\x02\x04\x03\x04\x03\x04\x01\x02\x01", // 𡍂
+ 0x21343: "\x05\x02\x03\x02\x01\x02\x04\x01\x02\x01", // 𡍃
+ 0x21344: "\x01\x02\x01\x05\x01\x03\x01\x02\x02\x05\x01", // 𡍄
+ 0x21345: "\x01\x02\x01\x05\x02\x05\x03\x04\x01\x05\x02", // 𡍅
+ 0x21346: "\x01\x02\x01\x01\x02\x01\x02\x03\x05\x05\x03", // 𡍆
+ 0x21347: "\x01\x02\x01\x03\x02\x05\x01\x01\x03\x01\x02", // 𡍇
+ 0x21348: "\x01\x02\x01\x03\x02\x05\x01\x01\x02\x05\x02", // 𡍈
+ 0x21349: "\x01\x02\x01\x03\x05\x04\x02\x05\x01\x02\x01", // 𡍉
+ 0x2134a: "\x01\x02\x01\x05\x04\x01\x03\x02\x01\x02\x01", // 𡍊
+ 0x2134b: "\x01\x02\x01\x01\x03\x04\x01\x02\x01\x03\x02", // 𡍋
+ 0x2134c: "\x01\x02\x01\x01\x05\x03\x04\x01\x05\x03\x04", // 𡍌
+ 0x2134d: "\x01\x02\x01\x02\x01\x02\x01\x02\x01\x02\x01", // 𡍍
+ 0x2134e: "\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x02", // 𡍎
+ 0x2134f: "\x02\x01\x02\x05\x03\x05\x04\x01\x01\x02\x01", // 𡍏
+ 0x21350: "\x01\x02\x01\x02\x05\x03\x05\x04\x02\x04\x01", // 𡍐
+ 0x21351: "\x03\x04\x05\x02\x02\x05\x03\x04\x01\x02\x01", // 𡍑
+ 0x21352: "\x01\x02\x01\x03\x05\x03\x01\x01\x02\x05\x02", // 𡍒
+ 0x21353: "\x01\x02\x01\x04\x01\x03\x03\x05\x01\x05\x01", // 𡍓
+ 0x21354: "\x01\x02\x01\x04\x01\x03\x04\x03\x01\x01\x02", // 𡍔
+ 0x21355: "\x01\x02\x01\x04\x01\x05\x04\x01\x02\x03\x04", // 𡍕
+ 0x21356: "\x01\x02\x01\x05\x01\x01\x02\x04\x01\x03\x04", // 𡍖
+ 0x21357: "\x01\x02\x01\x05\x05\x05\x02\x05\x03\x04\x01", // 𡍗
+ 0x21358: "\x01\x02\x01\x03\x01\x01\x02\x05\x02\x02\x02", // 𡍘
+ 0x21359: "\x01\x02\x01\x01\x02\x02\x03\x05\x01\x01", // 𡍙
+ 0x2135a: "\x01\x02\x01\x01\x02\x03\x04\x01\x02\x03\x04", // 𡍚
+ 0x2135b: "\x01\x02\x01\x03\x04\x04\x03\x01\x01\x02\x01", // 𡍛
+ 0x2135c: "\x01\x02\x01\x05\x01\x01\x02\x02\x05\x01\x01", // 𡍜
+ 0x2135d: "\x01\x02\x01\x01\x02\x02\x02\x05\x03\x04", // 𡍝
+ 0x2135e: "\x01\x02\x01\x01\x01\x03\x04\x02\x04\x04\x04", // 𡍞
+ 0x2135f: "\x01\x02\x01\x01\x03\x02\x05\x01\x01\x03\x02", // 𡍟
+ 0x21360: "\x01\x02\x01\x04\x01\x02\x05\x01\x02\x01\x01", // 𡍠
+ 0x21361: "\x01\x02\x01\x01\x02\x01\x03\x05\x04\x05\x05", // 𡍡
+ 0x21362: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x04\x04", // 𡍢
+ 0x21363: "\x01\x02\x01\x04\x01\x02\x02\x03\x04\x05\x04", // 𡍣
+ 0x21364: "\x01\x02\x01\x03\x02\x01\x05\x01\x01\x01\x02\x01", // 𡍤
+ 0x21365: "\x01\x02\x01\x02\x01\x02\x01\x03\x05\x01\x02\x03\x04", // 𡍥
+ 0x21366: "\x01\x02\x01\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 𡍦
+ 0x21367: "\x01\x02\x01\x01\x02\x04\x05\x05\x02\x01\x05\x03", // 𡍧
+ 0x21368: "\x01\x02\x01\x04\x01\x03\x01\x02\x02\x01\x05\x04", // 𡍨
+ 0x21369: "\x01\x02\x01\x04\x01\x03\x04\x03\x01\x05\x02\x03", // 𡍩
+ 0x2136a: "\x01\x02\x01\x01\x01\x02\x03\x02\x01\x05\x01\x01", // 𡍪
+ 0x2136b: "\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x02\x02", // 𡍫
+ 0x2136c: "\x01\x02\x01\x03\x05\x02\x05\x03\x05\x02\x05\x01", // 𡍬
+ 0x2136d: "\x03\x05\x03\x05\x01\x01\x05\x03\x04\x01\x02\x01", // 𡍭
+ 0x2136e: "\x03\x03\x04\x03\x04\x03\x04\x03\x04\x01\x02\x01", // 𡍮
+ 0x2136f: "\x05\x01\x05\x02\x05\x03\x03\x04\x01\x01\x02\x01", // 𡍯
+ 0x21370: "\x01\x02\x01\x05\x04\x03\x03\x04\x03\x05\x05\x04", // 𡍰
+ 0x21371: "\x01\x05\x02\x01\x03\x01\x02\x01\x05\x01\x02\x01", // 𡍱
+ 0x21372: "\x01\x02\x01\x01\x03\x04\x01\x02\x02\x01\x01\x01", // 𡍲
+ 0x21373: "\x05\x04\x05\x02\x01\x05\x03\x05\x01\x02\x01", // 𡍳
+ 0x21374: "\x03\x01\x02\x05\x01\x02\x01\x03\x04\x01\x02\x01", // 𡍴
+ 0x21375: "\x05\x02\x05\x04\x03\x05\x03\x05\x04\x01\x02\x01", // 𡍵
+ 0x21376: "\x01\x05\x04\x01\x02\x01\x03\x05\x04\x01\x02\x01", // 𡍶
+ 0x21377: "\x01\x02\x01\x04\x04\x02\x01\x02\x05\x01\x01\x01", // 𡍷
+ 0x21378: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x01", // 𡍸
+ 0x21379: "\x01\x02\x01\x03\x01\x01\x03\x01\x01\x01\x01\x02", // 𡍹
+ 0x2137a: "\x03\x01\x02\x05\x01\x01\x02\x03\x04\x01\x02\x01", // 𡍺
+ 0x2137b: "\x01\x02\x01\x03\x05\x05\x04\x01\x05\x05\x04", // 𡍻
+ 0x2137c: "\x04\x01\x03\x04\x01\x01\x02\x03\x04\x01\x02\x01", // 𡍼
+ 0x2137d: "\x04\x03\x01\x03\x05\x01\x01\x02\x02\x01\x02\x01", // 𡍽
+ 0x2137e: "\x01\x02\x01\x05\x01\x03\x05\x04\x01\x05\x04\x01", // 𡍾
+ 0x2137f: "\x01\x02\x01\x01\x03\x02\x05\x01\x01\x05\x03\x01", // 𡍿
+ 0x21380: "\x05\x01\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01", // 𡎀
+ 0x21381: "\x01\x02\x01\x01\x02\x02\x05\x01\x03\x05\x04\x01", // 𡎁
+ 0x21382: "\x01\x03\x02\x05\x01\x03\x01\x03\x02\x01\x02\x01", // 𡎂
+ 0x21383: "\x01\x02\x01\x04\x03\x01\x01\x02\x04\x01\x02\x01", // 𡎃
+ 0x21384: "\x01\x03\x04\x05\x02\x05\x02\x02\x01\x01\x02\x01", // 𡎄
+ 0x21385: "\x01\x02\x01\x02\x05\x02\x01\x03\x04\x03\x03\x04", // 𡎅
+ 0x21386: "\x01\x02\x01\x03\x03\x01\x02\x02\x05\x01\x01\x01", // 𡎆
+ 0x21387: "\x01\x02\x01\x03\x05\x01\x03\x03\x01\x01\x03\x04", // 𡎇
+ 0x21388: "\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x02\x04", // 𡎈
+ 0x21389: "\x01\x02\x01\x03\x02\x05\x01\x01\x01\x02\x01", // 𡎉
+ 0x2138a: "\x01\x02\x02\x04\x04\x01\x05\x05\x01\x02\x01", // 𡎊
+ 0x2138b: "\x01\x02\x01\x01\x03\x02\x05\x01\x01\x05\x02\x01", // 𡎋
+ 0x2138c: "\x01\x02\x01\x01\x03\x04\x04\x02\x05\x02\x02\x01", // 𡎌
+ 0x2138d: "\x01\x02\x01\x02\x01\x05\x03\x01\x05\x02\x05\x02", // 𡎍
+ 0x2138e: "\x01\x02\x01\x02\x05\x01\x01\x02\x02\x01\x01\x01", // 𡎎
+ 0x2138f: "\x01\x02\x01\x03\x02\x05\x01\x01\x02\x05\x03\x04", // 𡎏
+ 0x21390: "\x01\x02\x01\x03\x05\x01\x02\x01\x05\x03\x01\x01", // 𡎐
+ 0x21391: "\x01\x02\x01\x04\x01\x04\x03\x01\x03\x03\x03\x03", // 𡎑
+ 0x21392: "\x04\x04\x01\x03\x01\x02\x02\x05\x01\x01\x02\x01", // 𡎒
+ 0x21393: "\x01\x02\x01\x04\x04\x04\x01\x02\x01\x04\x04\x04", // 𡎓
+ 0x21394: "\x01\x02\x01\x05\x01\x03\x01\x05\x04\x01\x02\x01", // 𡎔
+ 0x21395: "\x01\x02\x01\x01\x05\x02\x05\x01\x05\x04\x05\x02", // 𡎕
+ 0x21396: "\x01\x02\x01\x05\x04\x02\x05\x01\x01\x01\x03\x04", // 𡎖
+ 0x21397: "\x01\x02\x01\x05\x05\x05\x01\x03\x05\x04\x02\x02", // 𡎗
+ 0x21398: "\x01\x02\x01\x01\x02\x02\x02\x05\x01\x03\x04", // 𡎘
+ 0x21399: "\x02\x01\x02\x01\x03\x05\x04\x05\x04\x01\x02\x01", // 𡎙
+ 0x2139a: "\x01\x02\x01\x03\x05\x01\x03\x02\x05\x01\x02\x02", // 𡎚
+ 0x2139b: "\x01\x02\x01\x03\x04\x05\x03\x02\x05\x02\x02\x01", // 𡎛
+ 0x2139c: "\x01\x02\x01\x01\x02\x02\x05\x04\x03\x01\x01\x02", // 𡎜
+ 0x2139d: "\x01\x02\x01\x05\x04\x03\x03\x04\x01\x01\x03\x04", // 𡎝
+ 0x2139e: "\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𡎞
+ 0x2139f: "\x01\x02\x01\x03\x01\x02\x03\x04\x02\x05\x01\x01", // 𡎟
+ 0x213a0: "\x01\x02\x01\x05\x03\x05\x04\x02\x05\x02\x02\x01", // 𡎠
+ 0x213a1: "\x01\x02\x01\x01\x02\x02\x01\x01\x01\x02\x03\x04", // 𡎡
+ 0x213a2: "\x03\x04\x03\x04\x01\x02\x01\x03\x05\x04\x02\x04", // 𡎢
+ 0x213a3: "\x01\x02\x01\x02\x05\x01\x01\x05\x03\x02\x05\x01", // 𡎣
+ 0x213a4: "\x01\x02\x01\x04\x03\x01\x01\x02\x01\x01\x03\x04", // 𡎤
+ 0x213a5: "\x03\x05\x04\x02\x04\x03\x04\x03\x04\x01\x02\x01", // 𡎥
+ 0x213a6: "\x03\x04\x03\x04\x01\x02\x01\x03\x05\x04\x02\x04", // 𡎦
+ 0x213a7: "\x01\x02\x01\x03\x05\x03\x01\x05\x05\x04\x01\x04", // 𡎧
+ 0x213a8: "\x02\x05\x02\x02\x05\x02\x02\x05\x02\x01\x02\x01", // 𡎨
+ 0x213a9: "\x01\x02\x01\x01\x02\x05\x03\x04\x02\x01\x05\x04", // 𡎩
+ 0x213aa: "\x01\x02\x01\x02\x01\x05\x03\x01\x05\x01\x02\x01", // 𡎪
+ 0x213ab: "\x01\x02\x01\x03\x01\x02\x03\x04\x03\x04\x05\x02", // 𡎫
+ 0x213ac: "\x03\x04\x03\x04\x01\x02\x01\x02\x05\x01\x01\x01", // 𡎬
+ 0x213ad: "\x01\x02\x01\x05\x05\x01\x04\x01\x05\x04\x03\x05", // 𡎭
+ 0x213ae: "\x01\x02\x01\x05\x01\x03\x02\x04\x03\x03\x05\x04\x01", // 𡎮
+ 0x213af: "\x02\x05\x02\x02\x01\x02\x03\x03\x04\x04\x01\x02\x01", // 𡎯
+ 0x213b0: "\x01\x02\x01\x05\x01\x03\x04\x01\x04\x03\x01\x01\x02", // 𡎰
+ 0x213b1: "\x02\x01\x02\x05\x03\x03\x04\x01\x03\x04\x01\x02\x01", // 𡎱
+ 0x213b2: "\x04\x01\x02\x05\x01\x04\x05\x02\x05\x01\x01\x02\x01", // 𡎲
+ 0x213b3: "\x05\x01\x05\x04\x01\x05\x01\x05\x04\x01\x01\x02\x01", // 𡎳
+ 0x213b4: "\x01\x02\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𡎴
+ 0x213b5: "\x01\x02\x01\x02\x01\x02\x01\x03\x05\x01\x03\x02\x05\x01", // 𡎵
+ 0x213b6: "\x05\x02\x01\x03\x04\x03\x04\x03\x04\x01\x02\x01", // 𡎶
+ 0x213b7: "\x01\x02\x01\x02\x05\x01\x03\x05\x05\x04\x01\x02\x01", // 𡎷
+ 0x213b8: "\x01\x02\x02\x01\x02\x05\x01\x01\x03\x04\x01\x02\x01", // 𡎸
+ 0x213b9: "\x01\x02\x01\x05\x01\x01\x04\x05\x02\x05\x02\x05\x04", // 𡎹
+ 0x213ba: "\x04\x05\x02\x04\x02\x05\x01\x03\x05\x01\x02\x01", // 𡎺
+ 0x213bb: "\x01\x02\x01\x04\x01\x03\x03\x04\x03\x04\x01\x02\x01", // 𡎻
+ 0x213bc: "\x01\x03\x04\x03\x04\x02\x03\x04\x05\x03\x01\x02\x01", // 𡎼
+ 0x213bd: "\x01\x02\x01\x03\x04\x04\x03\x05\x04\x01\x02\x03\x04", // 𡎽
+ 0x213be: "\x01\x02\x01\x03\x05\x03\x05\x01\x01\x03\x05\x01\x01", // 𡎾
+ 0x213bf: "\x04\x01\x04\x03\x01\x05\x01\x03\x01\x05\x01\x02\x01", // 𡎿
+ 0x213c0: "\x01\x02\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x01", // 𡏀
+ 0x213c1: "\x01\x02\x01\x02\x05\x02\x05\x01\x01\x04\x05\x04", // 𡏁
+ 0x213c2: "\x01\x02\x01\x04\x01\x03\x02\x05\x01\x01\x02\x01\x01", // 𡏂
+ 0x213c3: "\x01\x02\x05\x01\x02\x05\x02\x01\x05\x04\x01\x02\x01", // 𡏃
+ 0x213c4: "\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01\x01\x02\x01", // 𡏄
+ 0x213c5: "\x04\x05\x01\x01\x05\x04\x05\x02\x01\x02\x01", // 𡏅
+ 0x213c6: "\x01\x02\x01\x04\x03\x01\x01\x02\x01\x03\x04\x03\x02", // 𡏆
+ 0x213c7: "\x05\x02\x01\x03\x05\x03\x03\x03\x04\x01\x02\x01", // 𡏇
+ 0x213c8: "\x01\x02\x01\x05\x02\x05\x03\x04\x01\x04\x04\x04\x04", // 𡏈
+ 0x213c9: "\x01\x02\x01\x04\x04\x05\x02\x05\x01\x01\x05\x03\x01", // 𡏉
+ 0x213ca: "\x01\x02\x01\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 𡏊
+ 0x213cb: "\x04\x04\x01\x01\x02\x05\x01\x01\x02\x04\x01\x02\x01", // 𡏋
+ 0x213cc: "\x01\x02\x01\x01\x03\x01\x01\x05\x03\x04\x01\x02\x04", // 𡏌
+ 0x213cd: "\x01\x02\x05\x01\x02\x02\x01\x03\x05\x03\x01\x02\x01", // 𡏍
+ 0x213ce: "\x01\x03\x04\x04\x03\x01\x02\x01\x03\x05\x05\x01\x05", // 𡏎
+ 0x213cf: "\x01\x02\x01\x01\x02\x02\x01\x03\x04\x02\x05\x03\x04", // 𡏏
+ 0x213d0: "\x01\x02\x05\x01\x02\x05\x03\x03\x01\x02\x01\x02\x01", // 𡏐
+ 0x213d1: "\x01\x01\x01\x03\x04\x03\x01\x02\x03\x04\x01\x02\x01", // 𡏑
+ 0x213d2: "\x01\x02\x03\x04\x05\x01\x01\x05\x03\x04\x01\x02\x01", // 𡏒
+ 0x213d3: "\x01\x02\x01\x03\x04\x04\x04\x04\x04\x05\x02\x01\x05", // 𡏓
+ 0x213d4: "\x02\x05\x01\x01\x03\x05\x03\x03\x03\x04\x01\x02\x01", // 𡏔
+ 0x213d5: "\x03\x01\x02\x02\x01\x01\x03\x05\x03\x04\x01\x02\x01", // 𡏕
+ 0x213d6: "\x01\x02\x01\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 𡏖
+ 0x213d7: "\x01\x02\x01\x01\x02\x01\x02\x03\x05\x04\x03\x05\x04", // 𡏗
+ 0x213d8: "\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x05\x04", // 𡏘
+ 0x213d9: "\x03\x02\x05\x03\x05\x04\x01\x01\x03\x04\x01\x02\x01", // 𡏙
+ 0x213da: "\x01\x02\x01\x03\x03\x02\x01\x05\x03\x01\x05\x03\x05", // 𡏚
+ 0x213db: "\x01\x02\x01\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04", // 𡏛
+ 0x213dc: "\x01\x02\x01\x03\x04\x03\x05\x04\x01\x03\x05\x03\x04", // 𡏜
+ 0x213dd: "\x01\x02\x01\x03\x05\x04\x01\x05\x02\x01\x02\x03\x04", // 𡏝
+ 0x213de: "\x01\x02\x01\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01", // 𡏞
+ 0x213df: "\x01\x02\x01\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02", // 𡏟
+ 0x213e0: "\x01\x02\x01\x03\x05\x01\x01\x03\x05\x03\x04\x05\x02", // 𡏠
+ 0x213e1: "\x01\x02\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05", // 𡏡
+ 0x213e2: "\x01\x02\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𡏢
+ 0x213e3: "\x01\x02\x01\x03\x02\x05\x01\x01\x01\x01\x03\x04\x04", // 𡏣
+ 0x213e4: "\x01\x02\x01\x04\x03\x01\x05\x02\x03\x04\x05\x04", // 𡏤
+ 0x213e5: "\x01\x02\x01\x01\x02\x01\x03\x03\x01\x02\x02\x05\x01", // 𡏥
+ 0x213e6: "\x01\x02\x01\x04\x03\x01\x01\x01\x03\x01\x02\x01", // 𡏦
+ 0x213e7: "\x01\x02\x01\x03\x02\x04\x01\x04\x03\x01\x02\x05\x01", // 𡏧
+ 0x213e8: "\x01\x02\x01\x02\x01\x02\x01\x03\x05\x03\x02\x05\x01\x01", // 𡏨
+ 0x213e9: "\x03\x02\x05\x01\x05\x01\x03\x04\x03\x04\x01\x02\x01", // 𡏩
+ 0x213ea: "\x01\x02\x01\x03\x04\x04\x03\x05\x04\x01\x02\x03\x04", // 𡏪
+ 0x213eb: "\x01\x02\x01\x01\x03\x05\x04\x02\x02\x01\x02\x03\x04", // 𡏫
+ 0x213ec: "\x04\x04\x01\x04\x01\x05\x04\x03\x02\x05\x01\x02\x01", // 𡏬
+ 0x213ed: "\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x01\x02\x03\x04", // 𡏭
+ 0x213ee: "\x01\x02\x01\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 𡏮
+ 0x213ef: "\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x01\x03\x04", // 𡏯
+ 0x213f0: "\x01\x02\x01\x04\x03\x01\x02\x03\x04\x05\x04\x01\x03\x02", // 𡏰
+ 0x213f1: "\x01\x02\x01\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 𡏱
+ 0x213f2: "\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x01\x05\x03\x05", // 𡏲
+ 0x213f3: "\x01\x02\x02\x01\x02\x05\x01\x03\x04\x04\x03\x01\x02\x01", // 𡏳
+ 0x213f4: "\x01\x02\x05\x01\x02\x03\x04\x03\x01\x03\x04\x01\x02\x01", // 𡏴
+ 0x213f5: "\x01\x03\x02\x05\x02\x02\x01\x05\x05\x04\x01\x02\x01", // 𡏵
+ 0x213f6: "\x01\x02\x01\x02\x04\x03\x01\x02\x05\x01\x01\x01\x03\x04", // 𡏶
+ 0x213f7: "\x01\x02\x01\x05\x01\x01\x01\x02\x01\x03\x05\x01\x02\x04", // 𡏷
+ 0x213f8: "\x05\x02\x01\x05\x05\x04\x01\x03\x04\x05\x02\x01\x02\x01", // 𡏸
+ 0x213f9: "\x05\x02\x01\x02\x01\x03\x04\x03\x05\x04\x01\x02\x01", // 𡏹
+ 0x213fa: "\x01\x02\x01\x05\x01\x03\x01\x02\x05\x02\x04\x04\x04\x04", // 𡏺
+ 0x213fb: "\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04\x01\x02", // 𡏻
+ 0x213fc: "\x01\x02\x01\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04", // 𡏼
+ 0x213fd: "\x01\x02\x01\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01", // 𡏽
+ 0x213fe: "\x01\x02\x01\x04\x04\x05\x01\x03\x04\x01\x02\x05\x01\x02", // 𡏾
+ 0x213ff: "\x01\x02\x01\x04\x01\x04\x03\x01\x02\x05\x01\x05\x02", // 𡏿
+ 0x21400: "\x04\x04\x01\x02\x05\x01\x01\x03\x05\x03\x03\x01\x02\x01", // 𡐀
+ 0x21401: "\x01\x02\x01\x04\x01\x04\x03\x04\x05\x02\x05\x01\x01\x01", // 𡐁
+ 0x21402: "\x04\x03\x01\x03\x05\x03\x03\x03\x04\x02\x02\x01\x02\x01", // 𡐂
+ 0x21403: "\x01\x02\x01\x02\x04\x03\x04\x05\x01\x01\x02\x05\x01\x05", // 𡐃
+ 0x21404: "\x01\x02\x01\x05\x02\x02\x05\x01\x05\x04\x04\x05\x05\x04", // 𡐄
+ 0x21405: "\x01\x02\x01\x01\x04\x05\x02\x04\x01\x03\x04\x05\x01\x01", // 𡐅
+ 0x21406: "\x01\x02\x01\x05\x02\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 𡐆
+ 0x21407: "\x01\x02\x01\x02\x05\x02\x03\x04\x01\x02\x05\x01\x02\x02", // 𡐇
+ 0x21408: "\x01\x02\x01\x03\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 𡐈
+ 0x21409: "\x01\x02\x01\x01\x02\x01\x04\x05\x02\x05\x01\x02\x01\x04", // 𡐉
+ 0x2140a: "\x01\x02\x05\x01\x01\x01\x02\x03\x05\x05\x04\x01\x02\x01", // 𡐊
+ 0x2140b: "\x01\x02\x01\x01\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01", // 𡐋
+ 0x2140c: "\x01\x02\x01\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 𡐌
+ 0x2140d: "\x02\x01\x05\x03\x01\x03\x02\x05\x01\x05\x04\x01\x02\x01", // 𡐍
+ 0x2140e: "\x01\x02\x01\x02\x05\x02\x02\x01\x01\x02\x01\x01\x02\x01", // 𡐎
+ 0x2140f: "\x03\x02\x01\x03\x01\x02\x01\x02\x05\x01\x01\x01\x02\x01", // 𡐏
+ 0x21410: "\x01\x02\x01\x03\x05\x01\x01\x03\x03\x03\x03\x05\x01\x01", // 𡐐
+ 0x21411: "\x01\x02\x01\x03\x05\x02\x05\x03\x05\x02\x05\x01\x01\x01", // 𡐑
+ 0x21412: "\x01\x02\x01\x04\x01\x02\x05\x01\x04\x05\x03\x01\x01\x05", // 𡐒
+ 0x21413: "\x01\x02\x01\x04\x01\x03\x05\x01\x01\x02\x04\x01\x03\x04", // 𡐓
+ 0x21414: "\x01\x02\x01\x04\x04\x05\x01\x02\x05\x01\x02\x01\x03\x04", // 𡐔
+ 0x21415: "\x01\x02\x01\x05\x05\x05\x03\x02\x05\x01\x01\x03\x01\x02", // 𡐕
+ 0x21416: "\x01\x02\x01\x01\x02\x05\x01\x02\x05\x05\x04\x01\x02\x01", // 𡐖
+ 0x21417: "\x01\x02\x01\x03\x05\x03\x05\x01\x01\x02\x04\x04\x01\x02", // 𡐗
+ 0x21418: "\x01\x02\x01\x04\x04\x01\x03\x02\x05\x01\x01\x01\x02\x01", // 𡐘
+ 0x21419: "\x01\x02\x01\x03\x03\x02\x02\x05\x01\x01\x01\x01\x02\x04", // 𡐙
+ 0x2141a: "\x01\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𡐚
+ 0x2141b: "\x01\x02\x01\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02", // 𡐛
+ 0x2141c: "\x03\x03\x04\x01\x02\x01\x02\x05\x02\x02\x05\x01\x01\x05", // 𡐜
+ 0x2141d: "\x01\x02\x01\x04\x01\x03\x05\x02\x02\x01\x04\x03\x03\x04", // 𡐝
+ 0x2141e: "\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04\x01\x02\x01", // 𡐞
+ 0x2141f: "\x01\x02\x01\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x05", // 𡐟
+ 0x21420: "\x03\x03\x01\x02\x02\x05\x01\x01\x01\x01\x02\x01\x01\x02\x01", // 𡐠
+ 0x21421: "\x01\x02\x01\x05\x01\x01\x02\x04\x01\x03\x04\x04\x05\x04", // 𡐡
+ 0x21422: "\x01\x02\x01\x02\x05\x01\x02\x01\x01\x02\x01\x02\x01\x03\x04", // 𡐢
+ 0x21423: "\x01\x02\x01\x03\x03\x02\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 𡐣
+ 0x21424: "\x01\x02\x01\x01\x01\x01\x02\x05\x03\x05\x05\x04\x02\x03\x04", // 𡐤
+ 0x21425: "\x01\x02\x01\x01\x01\x03\x04\x03\x01\x01\x01\x02\x01\x01\x01", // 𡐥
+ 0x21426: "\x01\x02\x01\x05\x02\x01\x03\x01\x02\x01\x03\x05\x04\x01", // 𡐦
+ 0x21427: "\x01\x02\x01\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 𡐧
+ 0x21428: "\x01\x02\x03\x04\x05\x04\x05\x02\x01\x02\x03\x04\x01\x02\x01", // 𡐨
+ 0x21429: "\x03\x05\x04\x04\x04\x03\x03\x04\x04\x03\x03\x04\x01\x02\x01", // 𡐩
+ 0x2142a: "\x02\x01\x01\x05\x01\x05\x02\x01\x01\x03\x01\x01\x02\x01\x02\x01", // 𡐪
+ 0x2142b: "\x01\x02\x01\x05\x05\x05\x02\x05\x03\x04\x02\x05\x02\x05\x01", // 𡐫
+ 0x2142c: "\x01\x02\x01\x01\x02\x01\x04\x05\x03\x02\x05\x01\x02\x01\x04", // 𡐬
+ 0x2142d: "\x01\x02\x01\x04\x03\x01\x02\x02\x04\x03\x01\x02\x05\x01\x01", // 𡐭
+ 0x2142e: "\x01\x02\x01\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04", // 𡐮
+ 0x2142f: "\x01\x02\x01\x01\x03\x01\x03\x02\x05\x01\x01\x01\x03\x05\x04", // 𡐯
+ 0x21430: "\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x01\x02\x01", // 𡐰
+ 0x21431: "\x03\x01\x02\x01\x02\x01\x02\x01\x01\x04\x03\x01\x01\x03\x02", // 𡐱
+ 0x21432: "\x05\x01\x05\x02\x05\x03\x03\x04\x01\x01\x02\x01\x01\x02\x01", // 𡐲
+ 0x21433: "\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04\x01\x02\x01", // 𡐳
+ 0x21434: "\x01\x02\x01\x04\x01\x02\x05\x02\x05\x01\x01\x03\x05\x04\x01", // 𡐴
+ 0x21435: "\x01\x02\x01\x04\x04\x01\x01\x02\x01\x02\x01\x04\x03\x01\x02", // 𡐵
+ 0x21436: "\x01\x02\x01\x01\x02\x01\x02\x05\x01\x04\x03\x01\x03\x03\x03", // 𡐶
+ 0x21437: "\x01\x03\x01\x02\x05\x01\x04\x03\x01\x01\x02\x04\x01\x02\x01", // 𡐷
+ 0x21438: "\x01\x02\x01\x02\x01\x05\x03\x01\x05\x03\x04\x01\x05\x03\x04", // 𡐸
+ 0x21439: "\x01\x02\x01\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x03\x04", // 𡐹
+ 0x2143a: "\x01\x02\x01\x01\x02\x01\x02\x03\x05\x03\x01\x01\x02\x05\x02", // 𡐺
+ 0x2143b: "\x01\x02\x01\x03\x01\x01\x03\x04\x02\x05\x01\x02\x05\x01\x01", // 𡐻
+ 0x2143c: "\x03\x04\x04\x03\x04\x03\x03\x04\x04\x03\x03\x04\x01\x02\x01", // 𡐼
+ 0x2143d: "\x01\x02\x01\x01\x02\x02\x04\x01\x05\x04\x01\x02\x03\x04", // 𡐽
+ 0x2143e: "\x01\x02\x01\x01\x02\x01\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 𡐾
+ 0x2143f: "\x01\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02\x04\x05\x04", // 𡐿
+ 0x21440: "\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x03\x04\x01\x02\x01", // 𡑀
+ 0x21441: "\x01\x02\x05\x01\x01\x01\x02\x03\x04\x03\x03\x03\x01\x02\x01", // 𡑁
+ 0x21442: "\x01\x02\x01\x01\x03\x02\x05\x02\x02\x01\x03\x02\x05\x02\x02", // 𡑂
+ 0x21443: "\x01\x03\x04\x03\x04\x02\x03\x04\x03\x01\x03\x04\x01\x02\x01", // 𡑃
+ 0x21444: "\x01\x02\x01\x02\x04\x03\x04\x05\x02\x05\x01\x03\x01\x01\x02", // 𡑄
+ 0x21445: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x04\x04\x01\x02\x01", // 𡑅
+ 0x21446: "\x01\x02\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x02\x01\x01", // 𡑆
+ 0x21447: "\x01\x02\x01\x02\x05\x01\x02\x05\x01\x04\x03\x01\x05\x02\x03", // 𡑇
+ 0x21448: "\x03\x01\x02\x01\x02\x01\x02\x01\x01\x03\x02\x05\x01\x05\x01", // 𡑈
+ 0x21449: "\x01\x02\x01\x03\x03\x02\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 𡑉
+ 0x2144a: "\x01\x02\x01\x03\x03\x04\x03\x04\x03\x04\x03\x04\x01\x02\x01", // 𡑊
+ 0x2144b: "\x01\x02\x01\x03\x05\x04\x04\x01\x03\x04\x04\x04\x04\x04\x04", // 𡑋
+ 0x2144c: "\x01\x02\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05\x03\x04", // 𡑌
+ 0x2144d: "\x01\x02\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x05\x03", // 𡑍
+ 0x2144e: "\x01\x02\x01\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04", // 𡑎
+ 0x2144f: "\x01\x02\x01\x05\x01\x05\x01\x02\x01\x01\x02\x01\x02\x05\x01", // 𡑏
+ 0x21450: "\x01\x02\x01\x05\x04\x05\x04\x05\x04\x03\x04\x02\x04\x04\x04", // 𡑐
+ 0x21451: "\x04\x04\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03\x01\x02\x01", // 𡑑
+ 0x21452: "\x01\x02\x01\x01\x02\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 𡑒
+ 0x21453: "\x01\x02\x01\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04", // 𡑓
+ 0x21454: "\x04\x01\x05\x03\x04\x01\x05\x03\x04\x01\x05\x03\x01\x02\x01", // 𡑔
+ 0x21455: "\x01\x02\x01\x02\x05\x03\x05\x01\x02\x03\x04\x01\x02\x03\x04", // 𡑕
+ 0x21456: "\x01\x02\x01\x05\x02\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 𡑖
+ 0x21457: "\x01\x02\x01\x03\x02\x04\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 𡑗
+ 0x21458: "\x03\x05\x01\x05\x03\x04\x01\x02\x05\x01\x02\x02\x01\x02\x01", // 𡑘
+ 0x21459: "\x01\x02\x01\x01\x03\x05\x04\x02\x05\x03\x04\x01\x02\x03\x04", // 𡑙
+ 0x2145a: "\x01\x02\x01\x04\x05\x01\x01\x02\x03\x04\x05\x04\x01\x02\x01", // 𡑚
+ 0x2145b: "\x01\x02\x01\x04\x04\x05\x03\x05\x03\x01\x02\x01\x02\x05\x01", // 𡑛
+ 0x2145c: "\x01\x02\x01\x01\x02\x02\x01\x01\x01\x05\x05\x04\x05\x05\x04", // 𡑜
+ 0x2145d: "\x01\x02\x01\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 𡑝
+ 0x2145e: "\x01\x02\x01\x04\x03\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 𡑞
+ 0x2145f: "\x01\x02\x01\x02\x05\x01\x02\x02\x05\x02\x05\x01\x04\x05\x04", // 𡑟
+ 0x21460: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x05\x03\x04\x01\x02\x01", // 𡑠
+ 0x21461: "\x01\x02\x01\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 𡑡
+ 0x21462: "\x01\x02\x01\x01\x02\x01\x02\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 𡑢
+ 0x21463: "\x01\x02\x01\x04\x04\x05\x03\x05\x05\x01\x03\x05\x02\x02\x05\x02", // 𡑣
+ 0x21464: "\x04\x01\x05\x02\x05\x01\x01\x02\x01\x03\x05\x01\x01\x03\x05\x04", // 𡑤
+ 0x21465: "\x01\x02\x01\x05\x01\x03\x05\x04\x01\x03\x04\x05\x02\x02\x05\x02", // 𡑥
+ 0x21466: "\x01\x02\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01\x04\x01\x05\x03", // 𡑦
+ 0x21467: "\x02\x01\x04\x05\x02\x05\x01\x01\x01\x03\x04\x05\x04\x01\x02\x01", // 𡑧
+ 0x21468: "\x01\x02\x01\x03\x04\x01\x05\x01\x01\x05\x04\x03\x05\x03\x04", // 𡑨
+ 0x21469: "\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x01\x03\x05\x03\x04", // 𡑩
+ 0x2146a: "\x01\x02\x01\x01\x02\x02\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 𡑪
+ 0x2146b: "\x04\x04\x05\x01\x03\x05\x03\x03\x03\x04\x01\x02\x01\x01\x02\x01", // 𡑫
+ 0x2146c: "\x01\x02\x01\x01\x03\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 𡑬
+ 0x2146d: "\x01\x02\x01\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𡑭
+ 0x2146e: "\x01\x02\x01\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x01\x02\x01", // 𡑮
+ 0x2146f: "\x01\x02\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 𡑯
+ 0x21470: "\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x03\x02\x03\x04\x01", // 𡑰
+ 0x21471: "\x01\x02\x01\x05\x01\x01\x03\x02\x05\x01\x04\x03\x01\x01\x01\x02", // 𡑱
+ 0x21472: "\x01\x02\x01\x01\x02\x03\x04\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 𡑲
+ 0x21473: "\x01\x02\x01\x05\x01\x01\x03\x02\x05\x01\x04\x03\x01\x01\x01\x02", // 𡑳
+ 0x21474: "\x01\x02\x01\x05\x01\x03\x01\x02\x02\x01\x03\x04\x03\x05\x05\x04", // 𡑴
+ 0x21475: "\x01\x02\x01\x01\x02\x02\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𡑵
+ 0x21476: "\x05\x02\x01\x03\x03\x05\x04\x04\x01\x02\x04\x03\x04\x01\x02\x01", // 𡑶
+ 0x21477: "\x01\x02\x01\x01\x02\x01\x02\x01\x03\x04\x04\x02\x05\x02\x02\x01", // 𡑷
+ 0x21478: "\x03\x02\x05\x01\x05\x01\x01\x03\x05\x03\x03\x03\x04\x01\x02\x01", // 𡑸
+ 0x21479: "\x01\x02\x01\x05\x01\x05\x01\x02\x01\x01\x02\x01\x04\x04\x04\x04", // 𡑹
+ 0x2147a: "\x01\x02\x01\x01\x01\x05\x04\x03\x05\x04\x01\x05\x02\x01\x02\x01", // 𡑺
+ 0x2147b: "\x01\x02\x03\x04\x04\x03\x01\x03\x05\x03\x03\x03\x04\x01\x02\x01", // 𡑻
+ 0x2147c: "\x01\x02\x05\x01\x01\x02\x01\x05\x04\x02\x01\x05\x04\x01\x02\x01", // 𡑼
+ 0x2147d: "\x01\x02\x01\x01\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x03\x04", // 𡑽
+ 0x2147e: "\x01\x02\x01\x02\x01\x05\x03\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 𡑾
+ 0x2147f: "\x01\x02\x01\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x02\x03\x04", // 𡑿
+ 0x21480: "\x02\x05\x03\x04\x01\x02\x05\x01\x02\x01\x01\x03\x04\x01\x02\x01", // 𡒀
+ 0x21481: "\x01\x02\x01\x03\x01\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𡒁
+ 0x21482: "\x01\x02\x01\x03\x02\x01\x05\x01\x01\x01\x02\x01\x03\x05\x05\x04", // 𡒂
+ 0x21483: "\x03\x02\x05\x04\x03\x01\x02\x03\x04\x01\x03\x04\x01\x02\x01", // 𡒃
+ 0x21484: "\x01\x02\x01\x04\x01\x02\x05\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 𡒄
+ 0x21485: "\x01\x02\x01\x04\x01\x03\x04\x01\x01\x02\x01\x02\x05\x02\x05\x01\x01", // 𡒅
+ 0x21486: "\x01\x02\x01\x04\x04\x05\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 𡒆
+ 0x21487: "\x01\x02\x01\x03\x04\x04\x04\x04\x04\x05\x02\x03\x05\x03\x05\x04", // 𡒇
+ 0x21488: "\x01\x02\x01\x05\x01\x03\x02\x04\x01\x03\x04\x05\x02\x02\x05\x02", // 𡒈
+ 0x21489: "\x01\x03\x05\x01\x03\x01\x02\x05\x01\x02\x05\x05\x03\x04\x01\x02\x01", // 𡒉
+ 0x2148a: "\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04\x01\x02\x01", // 𡒊
+ 0x2148b: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x03\x01\x03\x04\x01\x02\x01", // 𡒋
+ 0x2148c: "\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x05\x01\x04\x05\x04", // 𡒌
+ 0x2148d: "\x01\x02\x02\x01\x01\x01\x05\x04\x03\x02\x03\x03\x03\x04\x01\x02\x01", // 𡒍
+ 0x2148e: "\x01\x02\x01\x02\x04\x04\x01\x03\x04\x01\x01\x02\x03\x04\x01\x02\x01", // 𡒎
+ 0x2148f: "\x01\x02\x01\x05\x05\x05\x02\x05\x03\x04\x01\x03\x02\x04\x01\x03\x04\x05", // 𡒏
+ 0x21490: "\x05\x02\x01\x03\x05\x05\x04\x02\x03\x04\x03\x04\x05\x02\x01\x02\x01", // 𡒐
+ 0x21491: "\x02\x05\x02\x02\x05\x02\x02\x05\x02\x03\x05\x01\x02\x01\x01\x02\x01", // 𡒑
+ 0x21492: "\x03\x05\x04\x02\x05\x01\x01\x02\x01\x03\x05\x03\x03\x02\x05\x01\x02", // 𡒒
+ 0x21493: "\x01\x02\x05\x01\x02\x05\x03\x01\x01\x02\x05\x02\x02\x01\x01\x02\x01", // 𡒓
+ 0x21494: "\x01\x02\x01\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𡒔
+ 0x21495: "\x01\x02\x01\x03\x05\x04\x04\x04\x05\x01\x02\x05\x01\x02\x01\x03\x04", // 𡒕
+ 0x21496: "\x04\x04\x01\x04\x05\x01\x01\x05\x04\x01\x05\x03\x05\x01\x02\x01", // 𡒖
+ 0x21497: "\x04\x04\x01\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04\x01\x02\x01", // 𡒗
+ 0x21498: "\x01\x02\x01\x05\x02\x03\x05\x03\x01\x01\x02\x05\x02\x01\x02\x01", // 𡒘
+ 0x21499: "\x01\x02\x04\x05\x05\x05\x04\x02\x03\x04\x04\x01\x05\x03\x01\x02\x01", // 𡒙
+ 0x2149a: "\x01\x02\x01\x01\x03\x04\x04\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𡒚
+ 0x2149b: "\x01\x02\x01\x05\x01\x03\x02\x04\x01\x03\x04\x03\x01\x01\x02\x01\x02", // 𡒛
+ 0x2149c: "\x01\x02\x01\x01\x03\x04\x03\x04\x03\x04\x02\x05\x02\x02\x01\x01\x01", // 𡒜
+ 0x2149d: "\x01\x02\x01\x01\x02\x01\x02\x03\x04\x01\x05\x01\x01\x03\x02\x05\x01", // 𡒝
+ 0x2149e: "\x01\x02\x01\x03\x01\x04\x03\x01\x04\x02\x01\x05\x03\x01\x05\x03\x05", // 𡒞
+ 0x2149f: "\x03\x04\x01\x01\x02\x03\x04\x02\x05\x01\x01\x02\x01\x01\x01\x02\x01", // 𡒟
+ 0x214a0: "\x01\x02\x01\x03\x02\x05\x04\x03\x01\x02\x03\x04\x01\x03\x05\x03\x04", // 𡒠
+ 0x214a1: "\x01\x02\x01\x01\x02\x01\x02\x05\x01\x04\x03\x01\x05\x03\x02\x05\x04", // 𡒡
+ 0x214a2: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x05\x03\x02\x05\x04\x01\x02\x01", // 𡒢
+ 0x214a3: "\x01\x02\x01\x01\x02\x02\x01\x02\x05\x01\x03\x04\x04\x03\x01\x02\x01", // 𡒣
+ 0x214a4: "\x01\x02\x01\x01\x03\x05\x01\x03\x01\x02\x05\x01\x02\x05\x05\x03\x04", // 𡒤
+ 0x214a5: "\x01\x03\x05\x01\x03\x01\x02\x05\x01\x02\x05\x05\x03\x04\x02\x01\x01", // 𡒥
+ 0x214a6: "\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04\x04\x01\x02\x01", // 𡒦
+ 0x214a7: "\x01\x02\x01\x02\x05\x01\x01\x03\x05\x02\x01\x02\x01\x03\x03\x01\x02", // 𡒧
+ 0x214a8: "\x01\x02\x01\x04\x04\x05\x01\x02\x03\x03\x02\x05\x01\x01\x01\x03\x04", // 𡒨
+ 0x214a9: "\x01\x02\x01\x04\x05\x03\x05\x04\x02\x04\x02\x05\x01\x01\x02\x03\x04", // 𡒩
+ 0x214aa: "\x03\x04\x03\x04\x01\x02\x01\x04\x03\x01\x03\x04\x02\x05\x02\x02\x01", // 𡒪
+ 0x214ab: "\x01\x02\x01\x01\x02\x03\x04\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01", // 𡒫
+ 0x214ac: "\x01\x02\x01\x03\x01\x04\x03\x01\x04\x01\x02\x02\x01\x01\x01\x03\x04", // 𡒬
+ 0x214ad: "\x01\x02\x01\x03\x02\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 𡒭
+ 0x214ae: "\x02\x05\x01\x01\x02\x02\x05\x01\x01\x01\x03\x05\x03\x03\x01\x02\x01", // 𡒮
+ 0x214af: "\x01\x02\x01\x01\x02\x01\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 𡒯
+ 0x214b0: "\x03\x02\x05\x01\x05\x01\x05\x05\x01\x03\x05\x03\x03\x03\x04\x01\x02\x01", // 𡒰
+ 0x214b1: "\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01\x03\x01\x03\x04\x01\x02\x01", // 𡒱
+ 0x214b2: "\x01\x02\x01\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x01\x02\x01", // 𡒲
+ 0x214b3: "\x01\x02\x01\x03\x02\x05\x01\x01\x01\x04\x04\x05\x03\x05\x04\x01\x05\x03", // 𡒳
+ 0x214b4: "\x03\x02\x05\x01\x01\x05\x01\x01\x01\x03\x05\x03\x03\x03\x04\x01\x02\x01", // 𡒴
+ 0x214b5: "\x01\x02\x01\x04\x04\x05\x02\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05\x04", // 𡒵
+ 0x214b6: "\x01\x02\x01\x04\x03\x01\x01\x02\x01\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𡒶
+ 0x214b7: "\x01\x02\x01\x04\x01\x03\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 𡒷
+ 0x214b8: "\x01\x02\x01\x05\x01\x03\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𡒸
+ 0x214b9: "\x01\x02\x01\x01\x02\x01\x02\x01\x02\x01\x05\x04\x02\x05\x01\x02\x01\x04", // 𡒹
+ 0x214ba: "\x01\x02\x01\x03\x01\x04\x03\x01\x04\x03\x05\x01\x03\x02\x05\x01\x02\x02", // 𡒺
+ 0x214bb: "\x01\x02\x01\x03\x03\x01\x02\x03\x03\x01\x02\x02\x05\x01\x01\x01\x03\x04", // 𡒻
+ 0x214bc: "\x01\x02\x01\x02\x05\x01\x02\x05\x02\x05\x01\x03\x05\x05\x04\x01\x02\x01", // 𡒼
+ 0x214bd: "\x01\x02\x01\x05\x02\x01\x02\x01\x05\x02\x01\x02\x01\x05\x02\x01\x02\x01", // 𡒽
+ 0x214be: "\x01\x02\x01\x02\x01\x05\x03\x01\x05\x03\x02\x01\x02\x01\x01\x05\x03\x04", // 𡒾
+ 0x214bf: "\x03\x02\x05\x01\x05\x01\x05\x01\x01\x03\x05\x03\x03\x03\x04\x01\x02\x01", // 𡒿
+ 0x214c0: "\x01\x02\x01\x01\x02\x03\x02\x05\x01\x01\x01\x05\x01\x03\x02\x01\x02\x05", // 𡓀
+ 0x214c1: "\x01\x02\x01\x02\x05\x02\x02\x01\x05\x04\x02\x05\x01\x01\x03\x05\x03\x05", // 𡓁
+ 0x214c2: "\x01\x02\x01\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01\x05\x02", // 𡓂
+ 0x214c3: "\x01\x02\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01", // 𡓃
+ 0x214c4: "\x01\x02\x01\x01\x02\x02\x03\x05\x04\x01\x01\x01\x02\x04\x05\x04", // 𡓄
+ 0x214c5: "\x01\x02\x01\x01\x02\x02\x05\x02\x03\x04\x04\x05\x01\x01\x05\x04", // 𡓅
+ 0x214c6: "\x03\x01\x04\x03\x01\x04\x04\x01\x04\x03\x01\x03\x04\x03\x04\x01\x02\x01", // 𡓆
+ 0x214c7: "\x01\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01", // 𡓇
+ 0x214c8: "\x01\x02\x01\x03\x01\x02\x03\x04\x01\x03\x05\x04\x03\x05\x02\x05\x01\x01", // 𡓈
+ 0x214c9: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x03\x03\x05\x01\x01\x01\x02\x01", // 𡓉
+ 0x214ca: "\x01\x02\x01\x04\x01\x03\x05\x04\x03\x03\x04\x05\x01\x05\x03\x05\x05\x04", // 𡓊
+ 0x214cb: "\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x01\x03\x03\x01\x01\x05", // 𡓋
+ 0x214cc: "\x01\x02\x01\x04\x03\x01\x02\x03\x04\x05\x02\x03\x04\x05\x04\x03\x01\x03\x04", // 𡓌
+ 0x214cd: "\x01\x02\x01\x05\x05\x05\x02\x05\x03\x04\x01\x05\x01\x01\x05\x01\x01\x05", // 𡓍
+ 0x214ce: "\x01\x02\x01\x03\x03\x02\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x01\x02", // 𡓎
+ 0x214cf: "\x01\x02\x01\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02\x05\x02", // 𡓏
+ 0x214d0: "\x01\x02\x01\x01\x02\x05\x01\x02\x05\x01\x01\x02\x02\x05\x01\x02\x05\x01\x01", // 𡓐
+ 0x214d1: "\x01\x02\x01\x04\x01\x02\x05\x01\x02\x05\x01\x01\x02\x01\x02\x01\x01\x01\x02", // 𡓑
+ 0x214d2: "\x01\x02\x01\x01\x02\x05\x01\x02\x03\x04\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 𡓒
+ 0x214d3: "\x03\x02\x01\x05\x01\x01\x03\x04\x03\x02\x01\x01\x05\x01\x01\x01\x02\x01", // 𡓓
+ 0x214d4: "\x01\x02\x01\x04\x01\x03\x04\x01\x02\x05\x02\x05\x01\x01\x03\x01\x02\x03\x04", // 𡓔
+ 0x214d5: "\x01\x02\x01\x03\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x05\x03", // 𡓕
+ 0x214d6: "\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05\x01\x03\x05\x05\x03\x04", // 𡓖
+ 0x214d7: "\x05\x02\x01\x03\x01\x02\x01\x03\x05\x04\x01\x04\x05\x04\x01\x02\x01", // 𡓗
+ 0x214d8: "\x01\x02\x01\x01\x04\x05\x02\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𡓘
+ 0x214d9: "\x01\x02\x01\x02\x02\x04\x03\x01\x05\x04\x01\x01\x02\x02\x01\x05\x02\x05\x04", // 𡓙
+ 0x214da: "\x02\x05\x02\x03\x04\x04\x03\x05\x03\x03\x05\x01\x01\x05\x03\x04\x01\x02\x01", // 𡓚
+ 0x214db: "\x03\x04\x03\x04\x02\x05\x01\x04\x04\x05\x01\x02\x01\x02\x05\x01\x01\x02\x01", // 𡓛
+ 0x214dc: "\x01\x02\x01\x04\x01\x03\x01\x02\x03\x04\x03\x04\x01\x02\x05\x02\x05\x01\x01", // 𡓜
+ 0x214dd: "\x02\x01\x04\x05\x01\x03\x04\x03\x04\x02\x05\x01\x01\x01\x05\x04\x01\x02\x01", // 𡓝
+ 0x214de: "\x01\x02\x01\x03\x01\x04\x03\x01\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𡓞
+ 0x214df: "\x01\x02\x01\x01\x02\x05\x01\x02\x03\x04\x03\x01\x03\x04\x01\x02\x01\x02\x01", // 𡓟
+ 0x214e0: "\x01\x02\x01\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x01\x02\x05\x01\x01", // 𡓠
+ 0x214e1: "\x01\x02\x01\x03\x05\x03\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𡓡
+ 0x214e2: "\x04\x03\x03\x04\x03\x05\x03\x02\x01\x05\x01\x01\x03\x04\x03\x04\x01\x02\x01", // 𡓢
+ 0x214e3: "\x01\x02\x01\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x02", // 𡓣
+ 0x214e4: "\x01\x02\x01\x03\x02\x01\x05\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𡓤
+ 0x214e5: "\x01\x02\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x01\x05\x03\x04", // 𡓥
+ 0x214e6: "\x01\x02\x01\x03\x05\x02\x05\x01\x01\x05\x01\x05\x03\x05\x02\x05\x01\x03\x05\x04", // 𡓦
+ 0x214e7: "\x04\x03\x03\x04\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04\x01\x02\x01", // 𡓧
+ 0x214e8: "\x01\x02\x01\x03\x04\x03\x04\x01\x02\x01\x01\x02\x01\x03\x04\x03\x04\x01\x02\x01", // 𡓨
+ 0x214e9: "\x04\x01\x05\x05\x04\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x01\x02\x01", // 𡓩
+ 0x214ea: "\x02\x04\x03\x04\x05\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x01", // 𡓪
+ 0x214eb: "\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x05\x03\x01", // 𡓫
+ 0x214ec: "\x03\x02\x05\x01\x05\x01\x05\x01\x05\x05\x01\x03\x05\x03\x03\x03\x04\x01\x02\x01", // 𡓬
+ 0x214ed: "\x05\x01\x05\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x02\x01", // 𡓭
+ 0x214ee: "\x02\x05\x02\x03\x02\x05\x01\x01\x03\x05\x05\x04\x03\x04\x03\x04\x01\x02\x01", // 𡓮
+ 0x214ef: "\x01\x02\x01\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𡓯
+ 0x214f0: "\x01\x02\x01\x02\x01\x05\x03\x01\x05\x03\x02\x04\x01\x01\x01\x02\x01\x01\x01\x05", // 𡓰
+ 0x214f1: "\x05\x05\x05\x02\x05\x01\x05\x02\x01\x05\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02\x01", // 𡓱
+ 0x214f2: "\x01\x02\x01\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 𡓲
+ 0x214f3: "\x01\x02\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01", // 𡓳
+ 0x214f4: "\x01\x02\x01\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x01\x02\x01\x02\x01\x03\x04", // 𡓴
+ 0x214f5: "\x03\x02\x01\x01\x05\x01\x01\x03\x04\x03\x02\x01\x01\x05\x01\x01\x03\x04\x01\x02\x01", // 𡓵
+ 0x214f6: "\x02\x05\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x02\x05\x01\x02\x05\x01\x01\x02\x01", // 𡓶
+ 0x214f7: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x03\x01\x02\x01\x02\x05\x01\x01\x01\x02\x01", // 𡓷
+ 0x214f8: "\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x05\x04\x05\x04\x05\x04\x01\x02\x01", // 𡓸
+ 0x214f9: "\x01\x02\x01\x05\x01\x03\x01\x02\x01\x02\x05\x02\x02\x01\x04\x01\x04\x03\x01\x01\x02", // 𡓹
+ 0x214fa: "\x01\x02\x01\x05\x01\x03\x04\x01\x04\x03\x01\x03\x05\x04\x01\x01\x05\x01\x05\x01\x01\x01", // 𡓺
+ 0x214fb: "\x01\x02\x01\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x03\x05\x03\x05\x04", // 𡓻
+ 0x214fc: "\x02\x01\x02\x01\x03\x04\x03\x04\x02\x05\x01\x03\x04\x03\x04\x02\x05\x01\x01\x02\x01", // 𡓼
+ 0x214fd: "\x01\x02\x01\x01\x02\x01\x02\x03\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𡓽
+ 0x214fe: "\x01\x02\x01\x04\x05\x02\x04\x02\x05\x01\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01", // 𡓾
+ 0x214ff: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x01", // 𡓿
+ 0x21500: "\x01\x03\x02\x05\x01\x01\x04\x05\x04\x05\x04\x04\x03\x05\x04\x03\x05\x04\x01\x02\x01", // 𡔀
+ 0x21501: "\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x01\x02\x01", // 𡔁
+ 0x21502: "\x04\x04\x05\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01\x03\x04\x04\x03\x01\x02\x01", // 𡔂
+ 0x21503: "\x01\x02\x01\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𡔃
+ 0x21504: "\x01\x02\x01\x03\x01\x04\x03\x01\x04\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 𡔄
+ 0x21505: "\x03\x04\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x02\x04\x03\x01\x01\x03\x04\x01\x02\x01", // 𡔅
+ 0x21506: "\x04\x04\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01\x01\x01\x01\x02\x01", // 𡔆
+ 0x21507: "\x04\x03\x01\x02\x03\x04\x01\x03\x04\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04\x01\x02\x01", // 𡔇
+ 0x21508: "\x01\x03\x04\x03\x05\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x01\x02\x01", // 𡔈
+ 0x21509: "\x01\x02\x01\x01\x02\x05\x04\x01\x02\x05\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05", // 𡔉
+ 0x2150a: "\x04\x01\x02\x05\x01\x02\x05\x01\x01\x02\x01\x02\x01\x01\x01\x02\x05\x03\x01\x01\x01\x02\x01", // 𡔊
+ 0x2150b: "\x01\x02\x01\x04\x01\x02\x05\x01\x02\x05\x01\x01\x04\x03\x01\x01\x01\x02\x02\x01\x05\x04", // 𡔋
+ 0x2150c: "\x02\x05\x05\x02\x01\x02\x05\x02\x04\x03\x01\x02\x05\x02\x04\x03\x01\x03\x04\x01\x02\x01", // 𡔌
+ 0x2150d: "\x01\x02\x01\x04\x04\x05\x03\x04\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𡔍
+ 0x2150e: "\x01\x02\x01\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x03\x04\x04", // 𡔎
+ 0x2150f: "\x04\x01\x03\x05\x05\x05\x02\x05\x01\x05\x02\x01\x05\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02\x01", // 𡔏
+ 0x21510: "\x01\x02\x01\x01\x01\x01\x02\x05\x03\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𡔐
+ 0x21511: "\x01\x02\x01\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 𡔑
+ 0x21512: "\x01\x02\x01\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 𡔒
+ 0x21513: "\x01\x02\x01\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 𡔓
+ 0x21514: "\x01\x02\x01\x01\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 𡔔
+ 0x21515: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x01\x02\x01", // 𡔕
+ 0x21516: "\x01\x02\x01\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x03\x01\x03\x04", // 𡔖
+ 0x21517: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x01\x02\x01", // 𡔗
+ 0x21518: "\x01\x02\x01\x02\x05\x02\x05\x01\x03\x05\x02\x01\x02\x01\x02\x05\x02\x05\x01\x03\x05\x02\x02\x05\x02\x05\x01\x03\x05\x02", // 𡔘
+ 0x21519: "\x01\x02\x01\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05", // 𡔙
+ 0x2151a: "\x01\x02\x01\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x01\x02\x01\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05", // 𡔚
+ 0x2151b: "\x05\x03\x01\x02\x01", // 𡔛
+ 0x2151c: "\x01\x02\x01\x05\x01\x03", // 𡔜
+ 0x2151d: "\x01\x02\x01\x05\x05\x01\x02\x03", // 𡔝
+ 0x2151e: "\x04\x01\x05\x01\x01\x02\x01", // 𡔞
+ 0x2151f: "\x03\x02\x03\x05\x03\x01\x02\x01", // 𡔟
+ 0x21520: "\x01\x02\x01\x02\x05\x01\x03\x02\x02", // 𡔠
+ 0x21521: "\x01\x02\x01\x03\x04\x03\x04\x03\x04", // 𡔡
+ 0x21522: "\x01\x02\x01\x02\x05\x01\x05\x01\x03\x04", // 𡔢
+ 0x21523: "\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𡔣
+ 0x21524: "\x01\x02\x01\x02\x05\x01\x02\x05\x04\x01", // 𡔤
+ 0x21525: "\x01\x02\x01\x01\x02\x02\x01\x02\x02\x01", // 𡔥
+ 0x21526: "\x01\x02\x01\x02\x05\x01\x01\x02\x02\x01", // 𡔦
+ 0x21527: "\x01\x02\x01\x02\x05\x01\x04\x05\x03\x05", // 𡔧
+ 0x21528: "\x04\x03\x01\x01\x03\x04\x03\x01\x02\x01", // 𡔨
+ 0x21529: "\x01\x02\x01\x04\x05\x02\x05\x01\x01\x05", // 𡔩
+ 0x2152a: "\x01\x02\x01\x04\x05\x02\x05\x01\x01\x02\x01", // 𡔪
+ 0x2152b: "\x01\x02\x01\x04\x05\x02\x05\x03\x04\x01\x01", // 𡔫
+ 0x2152c: "\x01\x02\x01\x05\x02\x05\x01\x01\x02\x01\x01", // 𡔬
+ 0x2152d: "\x01\x02\x01\x03\x01\x01\x01\x02\x01\x01\x01", // 𡔭
+ 0x2152e: "\x01\x02\x01\x02\x05\x02\x05\x01\x03\x05\x05\x04", // 𡔮
+ 0x2152f: "\x01\x02\x01\x02\x05\x01\x01\x02\x01\x02\x05\x01", // 𡔯
+ 0x21530: "\x01\x02\x01\x02\x05\x02\x02\x01\x05\x02\x01\x03\x04", // 𡔰
+ 0x21531: "\x01\x02\x01\x04\x05\x02\x05\x01\x02\x01\x01\x03\x04", // 𡔱
+ 0x21532: "\x01\x02\x01\x02\x05\x01\x02\x01\x05\x05\x01\x02\x01", // 𡔲
+ 0x21533: "\x01\x02\x01\x04\x05\x01\x02\x01\x05\x05\x01\x02\x01", // 𡔳
+ 0x21534: "\x01\x02\x01\x04\x05\x03\x04\x05\x04\x02\x05\x01\x01", // 𡔴
+ 0x21535: "\x01\x02\x01\x04\x05\x03\x04\x04\x03\x05\x02\x01\x05", // 𡔵
+ 0x21536: "\x01\x02\x01\x02\x05\x01\x02\x01\x05\x05\x01\x02\x01\x01", // 𡔶
+ 0x21537: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x05\x02\x02\x05\x04", // 𡔷
+ 0x21538: "\x01\x02\x01\x04\x05\x01\x03\x05\x04\x03\x05\x01\x02\x01", // 𡔸
+ 0x21539: "\x01\x02\x01\x04\x05\x01\x02\x01\x02\x05\x01\x04\x03\x01", // 𡔹
+ 0x2153a: "\x01\x02\x01\x04\x05\x01\x02\x01\x02\x05\x01\x01\x02\x04", // 𡔺
+ 0x2153b: "\x01\x02\x01\x04\x05\x03\x03\x03\x01\x05\x02\x05\x01\x01", // 𡔻
+ 0x2153c: "\x01\x02\x01\x02\x05\x01\x04\x05\x03\x04\x05\x02\x01\x02\x01", // 𡔼
+ 0x2153d: "\x01\x02\x01\x05\x02\x05\x01\x02\x01\x02\x05\x01\x01\x02\x04", // 𡔽
+ 0x2153e: "\x01\x02\x01\x04\x05\x01\x02\x05\x01\x02\x01\x05\x05\x01\x02\x01", // 𡔾
+ 0x2153f: "\x01\x02\x01\x04\x05\x03\x05\x01\x01\x01\x03\x04\x01\x01\x03\x04", // 𡔿
+ 0x21540: "\x01\x02\x01\x03\x05\x01\x02\x05\x01\x01\x01\x02\x04\x04\x04\x04", // 𡕀
+ 0x21541: "\x01\x02\x01\x01\x02\x02\x05\x01\x03\x05\x01\x02\x02\x05\x01\x03\x05", // 𡕁
+ 0x21542: "\x01\x02\x01\x02\x05\x01\x02\x01\x05\x05\x01\x02\x03\x04\x05\x02\x01", // 𡕂
+ 0x21543: "\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x03\x04\x05\x02\x04\x03\x01", // 𡕃
+ 0x21544: "\x01\x02\x01\x04\x05\x03\x05\x01\x02\x01\x02\x05\x01\x01\x04\x03\x01", // 𡕄
+ 0x21545: "\x01\x02\x01\x04\x05\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 𡕅
+ 0x21546: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x01\x03\x05\x03\x04\x02\x05\x01", // 𡕆
+ 0x21547: "\x01\x02\x01\x02\x05\x01\x01\x02\x01\x02\x05\x01\x01\x02\x01\x02\x05\x01", // 𡕇
+ 0x21548: "\x01\x02\x01\x02\x05\x01\x02\x01\x05\x05\x01\x02\x02\x05\x03\x04\x01\x01", // 𡕈
+ 0x21549: "\x01\x02\x01\x02\x05\x01\x04\x05\x05\x04\x03\x03\x04\x02\x05\x01\x05\x02", // 𡕉
+ 0x2154a: "\x01\x02\x01\x02\x05\x01\x04\x05\x01\x03\x03\x02\x05\x01\x01\x02\x03\x04", // 𡕊
+ 0x2154b: "\x01\x02\x01\x05\x05\x01\x05\x01\x02\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 𡕋
+ 0x2154c: "\x01\x02\x01\x05\x01\x01\x02\x02\x05\x01\x01\x04\x01\x02\x05\x01\x04\x03\x01", // 𡕌
+ 0x2154d: "\x01\x02\x01\x02\x05\x01\x02\x01\x05\x05\x01\x02\x01\x02\x01\x02\x05\x01\x01", // 𡕍
+ 0x2154e: "\x01\x02\x01\x04\x05\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01", // 𡕎
+ 0x2154f: "\x01\x02\x01\x04\x05\x02\x01\x05\x05\x01\x02\x01\x05\x04\x05\x04\x05\x04\x01\x02\x03\x04", // 𡕏
+ 0x21550: "\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04\x03\x05\x01\x02\x01\x02\x05\x01", // 𡕐
+ 0x21551: "\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04\x03\x05\x01\x01\x03\x05\x01\x01", // 𡕑
+ 0x21552: "\x01\x05\x02", // 𡕒
+ 0x21553: "\x03\x05\x04\x03\x02", // 𡕓
+ 0x21554: "\x05\x03\x03\x05\x04", // 𡕔
+ 0x21555: "\x03\x05\x04\x05\x02\x01", // 𡕕
+ 0x21556: "\x03\x05\x04\x01\x01\x02", // 𡕖
+ 0x21557: "\x03\x05\x04\x03\x03\x03\x02", // 𡕗
+ 0x21558: "\x03\x05\x04\x03\x01\x01\x02", // 𡕘
+ 0x21559: "\x03\x05\x04\x03\x05\x01\x01", // 𡕙
+ 0x2155a: "\x03\x05\x04\x02\x05\x01\x01\x03\x05", // 𡕚
+ 0x2155b: "\x03\x05\x04\x01\x02\x02\x01\x04\x03\x03\x04", // 𡕛
+ 0x2155c: "\x03\x05\x04\x03\x03\x03\x05\x02\x02\x05\x02", // 𡕜
+ 0x2155d: "\x03\x05\x04\x04\x03\x03\x04\x04\x03\x01\x02\x03\x04", // 𡕝
+ 0x2155e: "\x03\x05\x04\x03\x05\x04", // 𡕞
+ 0x2155f: "\x01\x02\x01\x03\x05\x04", // 𡕟
+ 0x21560: "\x01\x01\x03\x05\x03\x05\x04", // 𡕠
+ 0x21561: "\x05\x01\x03\x05\x03\x05\x04", // 𡕡
+ 0x21562: "\x01\x04\x03\x03\x04\x03\x05\x04", // 𡕢
+ 0x21563: "\x01\x02\x01\x01\x01\x03\x05\x04", // 𡕣
+ 0x21564: "\x01\x01\x01\x03\x04\x03\x05\x04", // 𡕤
+ 0x21565: "\x02\x05\x01\x01\x01\x03\x05\x04", // 𡕥
+ 0x21566: "\x02\x05\x01\x02\x01\x03\x05\x03\x05\x04", // 𡕦
+ 0x21567: "\x04\x01\x03\x05\x05\x04\x03\x05\x03\x05\x04", // 𡕧
+ 0x21568: "\x04\x01\x02\x05\x01\x02\x05\x01\x03\x05\x04", // 𡕨
+ 0x21569: "\x03\x02\x05\x03\x04\x01\x03\x05\x03\x05\x04", // 𡕩
+ 0x2156a: "\x05\x01\x05\x05\x01\x01\x05\x03\x05\x04", // 𡕪
+ 0x2156b: "\x03\x05\x02\x05\x03\x04\x03\x05\x03\x05\x04", // 𡕫
+ 0x2156c: "\x05\x04\x03\x05\x03\x05\x04\x04\x01\x03\x05", // 𡕬
+ 0x2156d: "\x02\x05\x02\x05\x01\x02\x05\x01\x01\x03\x05\x04", // 𡕭
+ 0x2156e: "\x01\x02\x01\x05\x04\x01\x02\x01\x03\x05\x03\x05\x04", // 𡕮
+ 0x2156f: "\x03\x02\x01\x01\x05\x05\x04\x05\x01\x01\x03\x05\x04", // 𡕯
+ 0x21570: "\x03\x04\x04\x04\x04\x04\x05\x02\x03\x04\x03\x05\x04", // 𡕰
+ 0x21571: "\x03\x05\x02\x05\x03\x05\x02\x05\x01\x01\x03\x05\x04", // 𡕱
+ 0x21572: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x03\x05\x04", // 𡕲
+ 0x21573: "\x03\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x05\x04", // 𡕳
+ 0x21574: "\x03\x03\x02\x03\x05\x02\x05\x01\x02\x05\x01\x03\x05\x04", // 𡕴
+ 0x21575: "\x01\x03\x02\x05\x01\x01\x01\x03\x05\x04\x03\x04\x01\x05", // 𡕵
+ 0x21576: "\x02\x01\x01\x01\x05\x04\x04\x05\x05\x04\x03\x05\x03\x05\x04", // 𡕶
+ 0x21577: "\x03\x05\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x05\x04", // 𡕷
+ 0x21578: "\x04\x03\x01\x03\x02\x05\x01\x01\x02\x01\x01\x01\x05\x03\x05\x04", // 𡕸
+ 0x21579: "\x04\x04\x05\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x05\x04", // 𡕹
+ 0x2157a: "\x02\x05\x01\x01\x03\x05\x04\x02\x05\x02\x05\x05\x04\x03\x05\x04", // 𡕺
+ 0x2157b: "\x03\x02\x01\x01\x01\x03\x02\x05\x01\x01\x01\x05\x01\x01\x03\x05\x04", // 𡕻
+ 0x2157c: "\x03\x04\x04\x03\x01\x02\x01\x03\x05\x02\x01\x02\x01\x05\x01\x05\x03\x05\x04", // 𡕼
+ 0x2157d: "\x03\x04\x04\x03\x05\x01\x02\x02\x02\x01\x02\x01\x05\x01\x05\x03\x05\x04", // 𡕽
+ 0x2157e: "\x01\x03\x02\x05\x01\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01\x03\x05\x04", // 𡕾
+ 0x2157f: "\x01\x03\x02\x05\x01\x01\x01\x03\x05\x02\x05\x02\x05\x01\x05\x03\x05\x04", // 𡕿
+ 0x21580: "\x03\x02\x03\x04\x05\x01\x03\x02\x02\x02\x01\x02\x01\x05\x01\x05\x03\x05\x04", // 𡖀
+ 0x21581: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x04\x03\x01\x02\x03\x04\x03\x05\x04", // 𡖁
+ 0x21582: "\x02\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04\x02\x01\x02\x01\x05\x01\x05\x03\x05\x04", // 𡖂
+ 0x21583: "\x01\x03\x02\x05\x01\x01\x01\x03\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x05\x04", // 𡖃
+ 0x21584: "\x03\x05\x04\x02\x05", // 𡖄
+ 0x21585: "\x03\x05\x04\x03\x05", // 𡖅
+ 0x21586: "\x03\x05\x03\x05\x04", // 𡖆
+ 0x21587: "\x03\x05\x04\x03\x05\x04", // 𡖇
+ 0x21588: "\x05\x02\x01\x05\x02\x01", // 𡖈
+ 0x21589: "\x03\x05\x04\x05\x02\x04", // 𡖉
+ 0x2158a: "\x03\x05\x04\x05\x03\x01\x01", // 𡖊
+ 0x2158b: "\x03\x05\x04\x04\x04\x04\x04", // 𡖋
+ 0x2158c: "\x03\x05\x04\x02\x05\x01\x02", // 𡖌
+ 0x2158d: "\x04\x01\x04\x03\x04\x03\x05\x04", // 𡖍
+ 0x2158e: "\x03\x05\x04\x03\x05\x04\x05\x03", // 𡖎
+ 0x2158f: "\x03\x05\x04\x05\x05\x01\x01\x02", // 𡖏
+ 0x21590: "\x03\x05\x04\x03\x05\x04\x05\x02\x05", // 𡖐
+ 0x21591: "\x03\x05\x04\x03\x04\x05\x03\x05\x04", // 𡖑
+ 0x21592: "\x03\x05\x04\x03\x05\x04\x03\x05\x01\x01", // 𡖒
+ 0x21593: "\x03\x05\x04\x03\x05\x04\x04\x05\x03\x05", // 𡖓
+ 0x21594: "\x03\x05\x04\x03\x05\x04\x02\x05\x01\x01", // 𡖔
+ 0x21595: "\x03\x05\x04\x05\x02\x05\x02\x02\x05\x02", // 𡖕
+ 0x21596: "\x03\x05\x04\x05\x01\x01\x05\x04\x05\x02", // 𡖖
+ 0x21597: "\x03\x05\x04\x04\x04\x04\x03\x04\x01\x01", // 𡖗
+ 0x21598: "\x01\x02\x03\x04\x03\x04\x01\x03\x05\x04", // 𡖘
+ 0x21599: "\x03\x05\x04\x03\x05\x04\x03\x01\x03\x04", // 𡖙
+ 0x2159a: "\x03\x05\x04\x02\x05\x01\x01\x01\x03\x02", // 𡖚
+ 0x2159b: "\x03\x05\x04\x02\x05\x03\x04\x02\x05\x01", // 𡖛
+ 0x2159c: "\x03\x05\x04\x03\x05\x04\x03\x05\x05\x04", // 𡖜
+ 0x2159d: "\x03\x05\x04\x03\x05\x04\x02\x05\x02\x01\x01", // 𡖝
+ 0x2159e: "\x03\x05\x04\x03\x05\x04\x02\x01\x02\x05\x01", // 𡖞
+ 0x2159f: "\x03\x05\x04\x03\x05\x04\x04\x04\x05\x03\x05", // 𡖟
+ 0x215a0: "\x03\x05\x04\x03\x05\x04\x01\x03\x01\x02\x01", // 𡖠
+ 0x215a1: "\x02\x01\x02\x05\x01\x03\x05\x04\x03\x05\x04", // 𡖡
+ 0x215a2: "\x03\x05\x04\x03\x05\x04\x04\x04\x05\x03\x05", // 𡖢
+ 0x215a3: "\x03\x05\x04\x03\x05\x04\x02\x05\x05\x01\x01", // 𡖣
+ 0x215a4: "\x03\x05\x04\x03\x05\x04\x05\x04\x02\x05\x01", // 𡖤
+ 0x215a5: "\x03\x05\x04\x05\x01\x01\x05\x04\x05\x02", // 𡖥
+ 0x215a6: "\x03\x05\x04\x02\x04\x02\x05\x01\x02\x01\x05\x03", // 𡖦
+ 0x215a7: "\x03\x05\x04\x03\x05\x04\x01\x05\x04\x01\x02\x01", // 𡖧
+ 0x215a8: "\x03\x05\x04\x03\x05\x04\x04\x04\x05\x05\x03\x01", // 𡖨
+ 0x215a9: "\x05\x01\x01\x05\x01\x01\x03\x05\x04\x03\x05\x04", // 𡖩
+ 0x215aa: "\x03\x05\x04\x03\x05\x04\x01\x03\x02\x01\x02\x01", // 𡖪
+ 0x215ab: "\x03\x05\x04\x03\x05\x04\x03\x03\x05\x04\x01\x04", // 𡖫
+ 0x215ac: "\x03\x05\x04\x03\x05\x04\x03\x01\x02\x01\x03\x05", // 𡖬
+ 0x215ad: "\x03\x05\x04\x03\x05\x04\x03\x02\x05\x02\x01\x01", // 𡖭
+ 0x215ae: "\x03\x05\x04\x03\x05\x04\x01\x03\x04\x01\x01\x05", // 𡖮
+ 0x215af: "\x03\x05\x04\x03\x05\x04\x01\x02\x05\x01\x02\x03\x04", // 𡖯
+ 0x215b0: "\x03\x03\x03\x02\x01\x02\x01\x03\x05\x04\x03\x05\x04", // 𡖰
+ 0x215b1: "\x03\x05\x04\x03\x05\x04\x03\x02\x04\x03\x01\x01\x02", // 𡖱
+ 0x215b2: "\x03\x05\x04\x03\x05\x04\x03\x04\x04\x03\x05\x03\x01", // 𡖲
+ 0x215b3: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x03\x05\x04", // 𡖳
+ 0x215b4: "\x03\x05\x04\x04\x05\x05\x02\x02\x05\x02\x01\x03\x05", // 𡖴
+ 0x215b5: "\x04\x01\x03\x02\x03\x05\x04\x04\x02\x01\x02\x05\x01", // 𡖵
+ 0x215b6: "\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x04\x03\x05\x04", // 𡖶
+ 0x215b7: "\x03\x05\x04\x04\x04\x05\x01\x01\x01\x02\x01\x03\x04", // 𡖷
+ 0x215b8: "\x03\x05\x04\x04\x05\x03\x05\x02\x05\x02\x02\x01\x03\x04", // 𡖸
+ 0x215b9: "\x02\x04\x03\x04\x05\x02\x05\x01\x03\x05\x04\x03\x05\x04", // 𡖹
+ 0x215ba: "\x03\x05\x04\x02\x05\x01\x04\x01\x03\x02\x03\x05\x04\x04", // 𡖺
+ 0x215bb: "\x03\x05\x04\x03\x05\x04\x01\x02\x02\x05\x01\x01\x01\x01", // 𡖻
+ 0x215bc: "\x04\x03\x01\x02\x02\x04\x03\x01\x03\x05\x04\x03\x05\x04", // 𡖼
+ 0x215bd: "\x03\x05\x04\x03\x05\x04\x03\x01\x02\x05\x01\x01\x01\x05", // 𡖽
+ 0x215be: "\x03\x05\x04\x03\x05\x04\x01\x02\x02\x01\x01\x01\x03\x04", // 𡖾
+ 0x215bf: "\x03\x05\x04\x03\x05\x04\x02\x05\x01\x02\x02\x05\x02\x05\x01", // 𡖿
+ 0x215c0: "\x01\x02\x01\x03\x02\x05\x01\x01\x03\x05\x04\x03\x05\x04", // 𡗀
+ 0x215c1: "\x03\x05\x04\x03\x05\x04\x03\x02\x05\x01\x03\x01\x01\x03\x04", // 𡗁
+ 0x215c2: "\x04\x03\x01\x01\x01\x03\x01\x02\x01\x03\x05\x04\x03\x05\x04", // 𡗂
+ 0x215c3: "\x03\x05\x04\x04\x04\x04\x03\x05\x03\x03\x03\x05\x01\x03\x05\x01", // 𡗃
+ 0x215c4: "\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04\x03\x05\x04\x03\x05\x04", // 𡗄
+ 0x215c5: "\x03\x05\x04\x03\x05\x04\x04\x03\x01\x02\x03\x04\x04\x05\x04", // 𡗅
+ 0x215c6: "\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01\x03\x05\x04\x03\x05\x04", // 𡗆
+ 0x215c7: "\x05\x05\x05\x02\x05\x03\x04\x05\x01\x01\x05\x01\x01\x05\x03\x05\x04", // 𡗇
+ 0x215c8: "\x03\x05\x04\x03\x05\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 𡗈
+ 0x215c9: "\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05\x03\x05\x04\x03\x05\x04", // 𡗉
+ 0x215ca: "\x03\x05\x04\x03\x05\x04\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 𡗊
+ 0x215cb: "\x04\x01\x02\x05\x02\x05\x01\x01\x03\x01\x02\x03\x04\x03\x05\x04\x03\x05\x04", // 𡗋
+ 0x215cc: "\x03\x05\x04\x03\x05\x04\x04\x01\x05\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 𡗌
+ 0x215cd: "\x04\x03\x01\x01\x01\x03\x04\x04\x05\x01\x01\x05\x03\x04\x03\x05\x04\x03\x05\x04", // 𡗍
+ 0x215ce: "\x03\x05\x04\x03\x05\x04\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02\x02\x05\x01\x01", // 𡗎
+ 0x215cf: "\x02\x05\x01\x02\x05\x01\x01\x03\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04\x03\x05\x04\x03\x05\x04", // 𡗏
+ 0x215d0: "\x01\x02\x02\x02\x05\x02\x02\x01\x04\x05\x03\x05\x04\x01\x05\x01\x05", // 𡗐
+ 0x215d1: "\x02\x04\x03\x04\x05\x02\x05\x01\x03\x05\x04\x03\x05\x04\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 𡗑
+ 0x215d2: "\x05\x01\x03\x04", // 𡗒
+ 0x215d3: "\x01\x03\x04\x01", // 𡗓
+ 0x215d4: "\x01\x03\x04\x02", // 𡗔
+ 0x215d5: "\x01\x03\x04\x03\x04", // 𡗕
+ 0x215d6: "\x05\x02\x01\x03\x04", // 𡗖
+ 0x215d7: "\x01\x01\x01\x03\x04", // 𡗗
+ 0x215d8: "\x01\x01\x03\x04\x02", // 𡗘
+ 0x215d9: "\x01\x01\x03\x04\x05", // 𡗙
+ 0x215da: "\x01\x02\x05\x03\x04", // 𡗚
+ 0x215db: "\x03\x05\x01\x03\x04", // 𡗛
+ 0x215dc: "\x01\x03\x04\x04\x03", // 𡗜
+ 0x215dd: "\x01\x03\x04\x05\x01\x05", // 𡗝
+ 0x215de: "\x05\x05\x04\x01\x03\x04", // 𡗞
+ 0x215df: "\x01\x03\x04\x03\x04\x02", // 𡗟
+ 0x215e0: "\x03\x02\x05\x01\x03\x04", // 𡗠
+ 0x215e1: "\x01\x03\x04\x05\x02\x03", // 𡗡
+ 0x215e2: "\x01\x03\x04\x01\x05\x02", // 𡗢
+ 0x215e3: "\x01\x01\x03\x04\x01\x02", // 𡗣
+ 0x215e4: "\x01\x01\x03\x04\x03\x02", // 𡗤
+ 0x215e5: "\x01\x03\x04\x01\x05\x02\x05", // 𡗥
+ 0x215e6: "\x01\x03\x04\x03\x04\x03\x02", // 𡗦
+ 0x215e7: "\x01\x03\x04\x03\x01\x01\x02", // 𡗧
+ 0x215e8: "\x01\x03\x04\x01\x05\x05\x01", // 𡗨
+ 0x215e9: "\x04\x03\x03\x04\x01\x03\x04", // 𡗩
+ 0x215ea: "\x01\x03\x04\x04\x03\x05\x04", // 𡗪
+ 0x215eb: "\x01\x01\x01\x03\x04\x04\x04", // 𡗫
+ 0x215ec: "\x01\x05\x01\x05\x01\x03\x04", // 𡗬
+ 0x215ed: "\x01\x02\x05\x03\x04\x04\x04", // 𡗭
+ 0x215ee: "\x03\x04\x04\x03\x01\x03\x04", // 𡗮
+ 0x215ef: "\x03\x05\x05\x03\x01\x03\x04", // 𡗯
+ 0x215f0: "\x01\x03\x04\x01\x05\x05\x04", // 𡗰
+ 0x215f1: "\x01\x03\x04\x02\x01\x03\x04", // 𡗱
+ 0x215f2: "\x01\x03\x04\x03\x03\x01\x02", // 𡗲
+ 0x215f3: "\x03\x04\x05\x04\x01\x03\x04", // 𡗳
+ 0x215f4: "\x01\x03\x04\x04\x04\x01\x02", // 𡗴
+ 0x215f5: "\x01\x03\x04\x05\x01\x05\x02", // 𡗵
+ 0x215f6: "\x01\x01\x03\x04\x02\x01\x01", // 𡗶
+ 0x215f7: "\x01\x03\x04\x03\x03\x05\x04\x04", // 𡗷
+ 0x215f8: "\x01\x03\x04\x03\x01\x02\x01\x01", // 𡗸
+ 0x215f9: "\x01\x03\x04\x05\x04\x01\x03\x02", // 𡗹
+ 0x215fa: "\x04\x05\x04\x03\x01\x01\x03\x04", // 𡗺
+ 0x215fb: "\x05\x01\x05\x03\x02\x01\x03\x04", // 𡗻
+ 0x215fc: "\x01\x03\x04\x02\x01\x02\x01\x01\x05", // 𡗼
+ 0x215fd: "\x02\x05\x01\x03\x05\x01\x03\x04", // 𡗽
+ 0x215fe: "\x01\x02\x02\x01\x03\x04\x03\x02", // 𡗾
+ 0x215ff: "\x01\x02\x02\x02\x01\x01\x03\x04", // 𡗿
+ 0x21600: "\x01\x02\x05\x01\x02\x01\x03\x04", // 𡘀
+ 0x21601: "\x01\x03\x04\x01\x05\x03\x04\x05", // 𡘁
+ 0x21602: "\x01\x03\x04\x02\x01\x01\x03\x04", // 𡘂
+ 0x21603: "\x01\x03\x04\x02\x05\x02\x02\x01", // 𡘃
+ 0x21604: "\x01\x03\x04\x03\x02\x01\x02\x01", // 𡘄
+ 0x21605: "\x03\x05\x03\x04\x05\x01\x03\x04", // 𡘅
+ 0x21606: "\x01\x03\x04\x04\x03\x01\x01\x05", // 𡘆
+ 0x21607: "\x01\x03\x04\x01\x01\x02\x01\x04", // 𡘇
+ 0x21608: "\x02\x05\x01\x03\x04\x01\x03\x04", // 𡘈
+ 0x21609: "\x05\x01\x05\x03\x02\x01\x03\x04", // 𡘉
+ 0x2160a: "\x01\x03\x04\x02\x05\x01\x02\x01", // 𡘊
+ 0x2160b: "\x01\x03\x04\x01\x01\x03\x04\x01", // 𡘋
+ 0x2160c: "\x02\x01\x02\x01\x01\x05\x01\x03\x04", // 𡘌
+ 0x2160d: "\x01\x03\x04\x01\x02\x05\x01\x01\x01", // 𡘍
+ 0x2160e: "\x01\x03\x04\x03\x05\x03\x03\x03\x04", // 𡘎
+ 0x2160f: "\x01\x03\x04\x05\x03\x01\x05\x02\x01", // 𡘏
+ 0x21610: "\x01\x03\x04\x04\x01\x02\x05\x01\x01", // 𡘐
+ 0x21611: "\x03\x02\x01\x05\x01\x01\x01\x03\x04", // 𡘑
+ 0x21612: "\x01\x03\x04\x04\x02\x05\x01\x02\x01", // 𡘒
+ 0x21613: "\x03\x05\x01\x03\x03\x01\x01\x03\x04", // 𡘓
+ 0x21614: "\x04\x03\x02\x05\x03\x04\x01\x03\x04", // 𡘔
+ 0x21615: "\x01\x01\x01\x03\x04\x04\x05\x04", // 𡘕
+ 0x21616: "\x01\x02\x03\x04\x03\x04\x01\x03\x04", // 𡘖
+ 0x21617: "\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 𡘗
+ 0x21618: "\x01\x05\x03\x01\x05\x03\x01\x03\x04", // 𡘘
+ 0x21619: "\x01\x03\x04\x01\x03\x04\x01\x03\x04", // 𡘙
+ 0x2161a: "\x01\x03\x04\x04\x01\x03\x05\x03\x04", // 𡘚
+ 0x2161b: "\x01\x03\x04\x05\x03\x01\x05\x03\x01", // 𡘛
+ 0x2161c: "\x02\x05\x01\x02\x05\x01\x01\x03\x04", // 𡘜
+ 0x2161d: "\x01\x03\x04\x01\x02\x05\x01\x02\x03\x04", // 𡘝
+ 0x2161e: "\x05\x04\x01\x03\x04\x02\x05\x01\x02\x01", // 𡘞
+ 0x2161f: "\x01\x03\x04\x01\x02\x05\x05\x01\x05\x01", // 𡘟
+ 0x21620: "\x03\x02\x05\x03\x01\x01\x02\x01\x03\x04", // 𡘠
+ 0x21621: "\x01\x02\x02\x05\x01\x02\x05\x01\x03\x04", // 𡘡
+ 0x21622: "\x01\x01\x01\x02\x05\x03\x05\x01\x03\x04", // 𡘢
+ 0x21623: "\x01\x03\x04\x01\x03\x01\x05\x02\x05\x01", // 𡘣
+ 0x21624: "\x01\x03\x04\x04\x03\x02\x05\x01\x01\x05", // 𡘤
+ 0x21625: "\x01\x02\x01\x03\x02\x03\x04\x01\x03\x04", // 𡘥
+ 0x21626: "\x02\x05\x01\x03\x04\x02\x05\x01\x02\x02", // 𡘦
+ 0x21627: "\x01\x03\x04\x02\x01\x02\x01\x02\x03\x03", // 𡘧
+ 0x21628: "\x01\x03\x04\x02\x02\x05\x01\x01\x05\x04", // 𡘨
+ 0x21629: "\x03\x02\x01\x01\x05\x01\x01\x01\x03\x04", // 𡘩
+ 0x2162a: "\x01\x03\x04\x03\x02\x05\x01\x01\x01\x03", // 𡘪
+ 0x2162b: "\x01\x03\x04\x03\x04\x03\x04\x01\x02\x01", // 𡘫
+ 0x2162c: "\x03\x05\x02\x05\x01\x01\x05\x01\x03\x04", // 𡘬
+ 0x2162d: "\x01\x02\x01\x03\x03\x01\x02\x01\x03\x04", // 𡘭
+ 0x2162e: "\x01\x01\x02\x03\x04\x03\x01\x01\x03\x04", // 𡘮
+ 0x2162f: "\x04\x01\x03\x04\x02\x05\x01\x01\x03\x04", // 𡘯
+ 0x21630: "\x01\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 𡘰
+ 0x21631: "\x01\x01\x01\x02\x03\x05\x05\x01\x03\x04", // 𡘱
+ 0x21632: "\x01\x01\x02\x02\x01\x01\x02\x02\x01\x03\x04", // 𡘲
+ 0x21633: "\x01\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 𡘳
+ 0x21634: "\x01\x03\x04\x04\x03\x02\x05\x02\x03\x04", // 𡘴
+ 0x21635: "\x01\x03\x04\x02\x05\x02\x02\x01\x04\x03\x01", // 𡘵
+ 0x21636: "\x02\x05\x02\x03\x01\x03\x04\x01\x03\x04\x01\x02", // 𡘶
+ 0x21637: "\x01\x03\x04\x01\x02\x01\x01\x01\x05\x03\x04", // 𡘷
+ 0x21638: "\x03\x01\x03\x04\x01\x02\x05\x01\x02\x03\x04", // 𡘸
+ 0x21639: "\x01\x03\x04\x03\x02\x01\x01\x05\x01\x01\x05", // 𡘹
+ 0x2163a: "\x01\x03\x04\x04\x03\x01\x01\x02\x03\x05\x04", // 𡘺
+ 0x2163b: "\x03\x02\x05\x03\x04\x03\x04\x01\x01\x03\x04", // 𡘻
+ 0x2163c: "\x01\x05\x01\x01\x01\x05\x01\x03\x04", // 𡘼
+ 0x2163d: "\x01\x02\x03\x04\x01\x02\x03\x04\x01\x03\x04", // 𡘽
+ 0x2163e: "\x05\x02\x01\x03\x01\x03\x04\x04\x01\x03\x04", // 𡘾
+ 0x2163f: "\x03\x01\x01\x03\x04\x03\x03\x03\x05\x03\x04", // 𡘿
+ 0x21640: "\x04\x03\x02\x05\x02\x03\x04\x05\x01\x03\x04", // 𡙀
+ 0x21641: "\x01\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04", // 𡙁
+ 0x21642: "\x01\x03\x04\x05\x05\x05\x02\x05\x01\x02\x01", // 𡙂
+ 0x21643: "\x01\x03\x04\x01\x03\x04\x04\x01\x01\x02\x01", // 𡙃
+ 0x21644: "\x01\x03\x04\x01\x01\x01\x02\x05\x01\x01\x01", // 𡙄
+ 0x21645: "\x04\x03\x01\x01\x03\x04\x03\x02\x01\x02\x01", // 𡙅
+ 0x21646: "\x01\x03\x04\x03\x01\x02\x01\x05\x05\x02\x01\x02", // 𡙆
+ 0x21647: "\x03\x01\x02\x01\x02\x01\x02\x01\x01\x05\x01\x03\x04", // 𡙇
+ 0x21648: "\x01\x03\x04\x04\x03\x01\x01\x02\x05\x02\x05\x04", // 𡙈
+ 0x21649: "\x02\x01\x02\x05\x03\x04\x03\x04\x01\x01\x03\x04", // 𡙉
+ 0x2164a: "\x01\x05\x03\x02\x01\x01\x05\x01\x01\x01\x03\x04", // 𡙊
+ 0x2164b: "\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05\x04", // 𡙋
+ 0x2164c: "\x01\x03\x04\x05\x03\x05\x04\x02\x04\x01\x03\x04", // 𡙌
+ 0x2164d: "\x01\x03\x04\x03\x01\x01\x03\x02\x05\x01\x01\x01", // 𡙍
+ 0x2164e: "\x01\x01\x03\x04\x01\x01\x03\x04\x01\x01\x03\x04", // 𡙎
+ 0x2164f: "\x02\x01\x02\x05\x03\x03\x04\x04\x01\x01\x03\x04", // 𡙏
+ 0x21650: "\x01\x03\x04\x02\x05\x01\x01\x01\x03\x01\x03\x04", // 𡙐
+ 0x21651: "\x04\x01\x02\x05\x01\x01\x02\x03\x04\x01\x03\x04", // 𡙑
+ 0x21652: "\x01\x03\x04\x04\x01\x03\x04\x04\x01\x03\x04\x04", // 𡙒
+ 0x21653: "\x01\x03\x04\x04\x04\x01\x04\x03\x01\x03\x03\x03", // 𡙓
+ 0x21654: "\x01\x03\x04\x01\x03\x04\x01\x02\x01\x01\x02\x01", // 𡙔
+ 0x21655: "\x01\x03\x04\x04\x03\x01\x01\x02\x05\x03\x01\x01", // 𡙕
+ 0x21656: "\x03\x05\x02\x05\x01\x03\x05\x04\x05\x01\x03\x04", // 𡙖
+ 0x21657: "\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 𡙗
+ 0x21658: "\x01\x03\x04\x05\x05\x04\x05\x05\x04\x01\x03\x02", // 𡙘
+ 0x21659: "\x01\x03\x04\x03\x02\x05\x01\x01\x01\x01\x02\x01", // 𡙙
+ 0x2165a: "\x01\x02\x03\x04\x03\x05\x02\x03\x04\x01\x03\x04", // 𡙚
+ 0x2165b: "\x04\x03\x01\x05\x05\x04\x05\x05\x04\x01\x03\x04", // 𡙛
+ 0x2165c: "\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𡙜
+ 0x2165d: "\x03\x05\x05\x02\x01\x05\x02\x01\x03\x03\x01\x03\x04", // 𡙝
+ 0x2165e: "\x01\x03\x04\x02\x05\x01\x02\x01\x05\x01\x05\x01\x02\x01", // 𡙞
+ 0x2165f: "\x03\x05\x04\x05\x03\x04\x01\x05\x03\x05\x01\x03\x04", // 𡙟
+ 0x21660: "\x01\x02\x01\x02\x05\x05\x04\x05\x05\x04\x01\x03\x04", // 𡙠
+ 0x21661: "\x04\x03\x01\x01\x02\x01\x04\x04\x04\x04\x01\x03\x04", // 𡙡
+ 0x21662: "\x04\x03\x01\x02\x03\x04\x03\x05\x05\x03\x01\x03\x04", // 𡙢
+ 0x21663: "\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x05\x04", // 𡙣
+ 0x21664: "\x01\x03\x04\x04\x05\x01\x03\x04\x01\x03\x05\x03\x04", // 𡙤
+ 0x21665: "\x01\x03\x04\x05\x03\x03\x01\x03\x04\x02\x05\x03\x04", // 𡙥
+ 0x21666: "\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03\x01\x03\x04", // 𡙦
+ 0x21667: "\x01\x05\x01\x05\x03\x04\x01\x02\x02\x04\x01\x05", // 𡙧
+ 0x21668: "\x01\x03\x04\x04\x03\x01\x03\x04\x01\x05\x04\x02\x02", // 𡙨
+ 0x21669: "\x04\x01\x03\x02\x03\x04\x01\x03\x04\x03\x04\x03\x04", // 𡙩
+ 0x2166a: "\x04\x03\x02\x05\x02\x04\x01\x03\x04\x05\x01\x03\x04", // 𡙪
+ 0x2166b: "\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x01\x03\x04", // 𡙫
+ 0x2166c: "\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x01", // 𡙬
+ 0x2166d: "\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05\x01\x03\x04", // 𡙭
+ 0x2166e: "\x01\x03\x04\x01\x02\x05\x01\x01\x01\x02\x01\x05\x03\x04", // 𡙮
+ 0x2166f: "\x01\x03\x04\x04\x04\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 𡙯
+ 0x21670: "\x04\x01\x02\x05\x01\x05\x02\x01\x03\x05\x04\x01\x03\x04", // 𡙰
+ 0x21671: "\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x01\x03\x04", // 𡙱
+ 0x21672: "\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 𡙲
+ 0x21673: "\x01\x03\x04\x04\x03\x01\x01\x02\x03\x05\x03\x01\x01\x02", // 𡙳
+ 0x21674: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05\x01\x03\x04", // 𡙴
+ 0x21675: "\x01\x03\x04\x02\x05\x01\x01\x01\x05\x01\x01\x05\x03\x04", // 𡙵
+ 0x21676: "\x03\x01\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05", // 𡙶
+ 0x21677: "\x02\x05\x02\x02\x01\x01\x03\x02\x05\x02\x02\x01\x01\x03\x04", // 𡙷
+ 0x21678: "\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02\x03\x04", // 𡙸
+ 0x21679: "\x01\x01\x01\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x01\x02", // 𡙹
+ 0x2167a: "\x01\x03\x04\x01\x02\x02\x05\x01\x01\x05\x04\x05\x03\x01\x01", // 𡙺
+ 0x2167b: "\x01\x03\x04\x01\x02\x02\x01\x05\x01\x02\x03\x04\x01\x02\x03\x04", // 𡙻
+ 0x2167c: "\x05\x03\x01\x03\x04\x04\x03\x02\x05\x02\x04\x01\x03\x04", // 𡙼
+ 0x2167d: "\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x01\x03\x04", // 𡙽
+ 0x2167e: "\x03\x01\x02\x03\x04\x01\x03\x05\x03\x03\x03\x04\x01\x03\x04", // 𡙾
+ 0x2167f: "\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x01\x01\x05\x04", // 𡙿
+ 0x21680: "\x01\x02\x05\x01\x02\x04\x05\x01\x02\x05\x03\x04\x01\x03\x04", // 𡚀
+ 0x21681: "\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04\x01\x03\x04", // 𡚁
+ 0x21682: "\x03\x05\x01\x03\x04\x04\x03\x02\x05\x02\x04\x01\x03\x04", // 𡚂
+ 0x21683: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x05\x02\x05\x01\x03\x04", // 𡚃
+ 0x21684: "\x01\x03\x04\x02\x01\x02\x05\x01\x01\x01\x02\x01\x05\x03\x04", // 𡚄
+ 0x21685: "\x02\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x01\x03\x04", // 𡚅
+ 0x21686: "\x03\x03\x04\x03\x04\x03\x04\x03\x04\x01\x02\x01\x05\x01\x03\x04", // 𡚆
+ 0x21687: "\x02\x05\x02\x02\x01\x02\x01\x02\x05\x02\x02\x01\x05\x01\x03\x04", // 𡚇
+ 0x21688: "\x04\x03\x01\x02\x02\x04\x03\x01\x02\x05\x01\x01\x03\x01\x03\x04", // 𡚈
+ 0x21689: "\x01\x01\x01\x02\x01\x01\x01\x02\x01\x03\x04\x04\x05\x04\x03\x04", // 𡚉
+ 0x2168a: "\x01\x03\x04\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𡚊
+ 0x2168b: "\x02\x01\x01\x04\x03\x01\x02\x03\x04\x03\x05\x05\x03\x01\x03\x04", // 𡚋
+ 0x2168c: "\x01\x01\x03\x04\x01\x01\x03\x04\x01\x01\x03\x04\x01\x01\x03\x04", // 𡚌
+ 0x2168d: "\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01\x02\x01", // 𡚍
+ 0x2168e: "\x02\x05\x02\x02\x01\x01\x03\x05\x01\x03\x04\x01\x02\x05\x01\x02", // 𡚎
+ 0x2168f: "\x01\x03\x04\x04\x04\x03\x03\x01\x03\x04\x04\x04\x03\x03\x04\x01\x05", // 𡚏
+ 0x21690: "\x01\x01\x03\x02\x05\x01\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𡚐
+ 0x21691: "\x01\x01\x03\x04\x04\x03\x01\x03\x02\x05\x01\x01\x01\x04\x05\x04", // 𡚑
+ 0x21692: "\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x01\x05\x01\x01", // 𡚒
+ 0x21693: "\x01\x03\x04\x02\x01\x02\x01\x01\x03\x01\x01\x02\x03\x04\x05\x03\x04", // 𡚓
+ 0x21694: "\x01\x03\x04\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x04\x04\x04\x04", // 𡚔
+ 0x21695: "\x03\x01\x02\x03\x04\x03\x04\x04\x03\x02\x05\x02\x01\x01\x01\x03\x04", // 𡚕
+ 0x21696: "\x03\x02\x05\x01\x05\x01\x01\x03\x04\x05\x01\x01\x04\x05\x02\x05\x02", // 𡚖
+ 0x21697: "\x01\x03\x04\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01", // 𡚗
+ 0x21698: "\x03\x04\x04\x03\x01\x03\x04\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 𡚘
+ 0x21699: "\x01\x02\x02\x01\x02\x02\x01\x04\x05\x02\x05\x02\x02\x05\x01\x01\x01\x03\x04", // 𡚙
+ 0x2169a: "\x01\x03\x04\x01\x02\x05\x01\x02\x03\x04\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 𡚚
+ 0x2169b: "\x01\x03\x04\x01\x02\x05\x01\x02\x05\x05\x04\x05\x04\x05\x04\x05\x04\x01\x02\x01", // 𡚛
+ 0x2169c: "\x01\x03\x04\x02\x01\x02\x01\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𡚜
+ 0x2169d: "\x01\x03\x04\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𡚝
+ 0x2169e: "\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02\x04\x01\x02\x05\x01\x01\x05\x03\x04", // 𡚞
+ 0x2169f: "\x01\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𡚟
+ 0x216a0: "\x01\x03\x04\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𡚠
+ 0x216a1: "\x01\x02\x02\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x02\x03\x04\x01\x03\x04", // 𡚡
+ 0x216a2: "\x01\x03\x04\x01\x02\x02\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x02\x03\x04", // 𡚢
+ 0x216a3: "\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x01\x02\x03\x04\x01\x02\x03\x04\x01\x03\x04", // 𡚣
+ 0x216a4: "\x02\x05\x02\x02\x01\x01\x03\x04\x02\x05\x02\x02\x01\x01\x03\x04\x02\x05\x02\x02\x01\x01\x03\x04", // 𡚤
+ 0x216a5: "\x03\x05\x02\x05\x03\x04\x01\x03\x04\x01\x02\x01\x02\x01\x03\x05\x01\x03\x01\x02\x05\x01\x02\x05\x05\x03\x04", // 𡚥
+ 0x216a6: "\x05\x03\x01\x04", // 𡚦
+ 0x216a7: "\x05\x03\x01\x03\x05", // 𡚧
+ 0x216a8: "\x05\x03\x01\x03\x05", // 𡚨
+ 0x216a9: "\x05\x04\x05\x03\x01", // 𡚩
+ 0x216aa: "\x03\x05\x05\x03\x01", // 𡚪
+ 0x216ab: "\x05\x03\x01\x03\x05", // 𡚫
+ 0x216ac: "\x01\x01\x05\x03\x01", // 𡚬
+ 0x216ad: "\x05\x03\x01\x03\x04", // 𡚭
+ 0x216ae: "\x03\x05\x04\x05\x03\x01", // 𡚮
+ 0x216af: "\x05\x03\x01\x01\x01\x05", // 𡚯
+ 0x216b0: "\x03\x05\x04\x05\x03\x01", // 𡚰
+ 0x216b1: "\x05\x03\x01\x05\x01\x05", // 𡚱
+ 0x216b2: "\x05\x03\x01\x01\x03\x05", // 𡚲
+ 0x216b3: "\x05\x03\x01\x01\x02\x01", // 𡚳
+ 0x216b4: "\x02\x05\x02\x05\x03\x01", // 𡚴
+ 0x216b5: "\x05\x03\x01\x03\x05\x04", // 𡚵
+ 0x216b6: "\x03\x04\x05\x05\x03\x01", // 𡚶
+ 0x216b7: "\x03\x05\x04\x05\x03\x01", // 𡚷
+ 0x216b8: "\x05\x03\x01\x03\x05\x04", // 𡚸
+ 0x216b9: "\x05\x03\x01\x01\x03\x04", // 𡚹
+ 0x216ba: "\x05\x03\x01\x03\x05\x04", // 𡚺
+ 0x216bb: "\x05\x03\x01\x01\x03\x04", // 𡚻
+ 0x216bc: "\x05\x03\x01\x03\x05\x01\x05", // 𡚼
+ 0x216bd: "\x05\x02\x01\x01\x05\x03\x01", // 𡚽
+ 0x216be: "\x05\x03\x01\x03\x05\x05\x04", // 𡚾
+ 0x216bf: "\x05\x03\x01\x04\x05\x04\x04", // 𡚿
+ 0x216c0: "\x05\x03\x01\x01\x03\x05\x04", // 𡛀
+ 0x216c1: "\x05\x03\x01\x03\x05\x03\x03", // 𡛁
+ 0x216c2: "\x05\x03\x01\x05\x01\x01\x03", // 𡛂
+ 0x216c3: "\x05\x03\x01\x01\x03\x05\x04", // 𡛃
+ 0x216c4: "\x05\x03\x01\x05\x01\x03\x04", // 𡛄
+ 0x216c5: "\x05\x03\x01\x05\x01\x05\x02", // 𡛅
+ 0x216c6: "\x05\x03\x01\x05\x03\x03\x03", // 𡛆
+ 0x216c7: "\x05\x03\x01\x01\x03\x03\x04", // 𡛇
+ 0x216c8: "\x05\x03\x01\x03\x02\x03\x02", // 𡛈
+ 0x216c9: "\x03\x02\x01\x01\x05\x03\x01", // 𡛉
+ 0x216ca: "\x05\x03\x01\x03\x01\x01\x03", // 𡛊
+ 0x216cb: "\x05\x03\x01\x01\x01\x01\x05", // 𡛋
+ 0x216cc: "\x01\x01\x03\x04\x05\x03\x01", // 𡛌
+ 0x216cd: "\x01\x01\x05\x04\x05\x03\x01", // 𡛍
+ 0x216ce: "\x01\x02\x05\x02\x05\x03\x01", // 𡛎
+ 0x216cf: "\x05\x03\x01\x01\x05\x03\x04", // 𡛏
+ 0x216d0: "\x05\x03\x01\x03\x04\x03\x05", // 𡛐
+ 0x216d1: "\x03\x04\x05\x03\x05\x03\x01", // 𡛑
+ 0x216d2: "\x05\x04\x05\x04\x05\x03\x01", // 𡛒
+ 0x216d3: "\x05\x03\x01\x02\x05\x04\x01", // 𡛓
+ 0x216d4: "\x05\x03\x01\x01\x02\x01\x05", // 𡛔
+ 0x216d5: "\x05\x03\x01\x01\x03\x04\x04", // 𡛕
+ 0x216d6: "\x05\x03\x01\x01\x03\x05\x05", // 𡛖
+ 0x216d7: "\x01\x05\x01\x05\x05\x03\x01", // 𡛗
+ 0x216d8: "\x05\x03\x01\x01\x03\x05\x05", // 𡛘
+ 0x216d9: "\x05\x03\x01\x05\x05\x04\x05\x03", // 𡛙
+ 0x216da: "\x05\x03\x01\x03\x04\x03\x01\x02", // 𡛚
+ 0x216db: "\x05\x03\x01\x05\x02\x02\x05\x02", // 𡛛
+ 0x216dc: "\x05\x03\x01\x03\x05\x01\x05\x01", // 𡛜
+ 0x216dd: "\x02\x01\x03\x05\x04\x05\x03\x01", // 𡛝
+ 0x216de: "\x05\x03\x01\x05\x04\x01\x03\x02", // 𡛞
+ 0x216df: "\x05\x03\x01\x01\x05\x05\x03\x04", // 𡛟
+ 0x216e0: "\x05\x03\x01\x01\x02\x01\x05\x04", // 𡛠
+ 0x216e1: "\x05\x03\x01\x01\x03\x02\x05\x04", // 𡛡
+ 0x216e2: "\x05\x03\x01\x02\x05\x02\x01\x03", // 𡛢
+ 0x216e3: "\x05\x03\x01\x01\x03\x05\x05\x04", // 𡛣
+ 0x216e4: "\x04\x03\x01\x01\x02\x05\x03\x01", // 𡛤
+ 0x216e5: "\x05\x03\x01\x04\x04\x05\x03\x05", // 𡛥
+ 0x216e6: "\x05\x03\x01\x01\x02\x05\x03\x04", // 𡛦
+ 0x216e7: "\x05\x03\x01\x03\x04\x03\x03\x03", // 𡛧
+ 0x216e8: "\x05\x03\x01\x02\x01\x01\x02\x04", // 𡛨
+ 0x216e9: "\x05\x03\x01\x04\x01\x04\x03\x01", // 𡛩
+ 0x216ea: "\x05\x03\x01\x03\x05\x03\x03\x03", // 𡛪
+ 0x216eb: "\x05\x03\x01\x05\x02\x01\x03\x04", // 𡛫
+ 0x216ec: "\x05\x03\x02\x05\x04\x05\x03\x01", // 𡛬
+ 0x216ed: "\x05\x03\x01\x01\x01\x02\x03\x04", // 𡛭
+ 0x216ee: "\x05\x03\x01\x01\x03\x02\x05\x01", // 𡛮
+ 0x216ef: "\x05\x03\x01\x05\x01\x05\x03\x02", // 𡛯
+ 0x216f0: "\x05\x03\x01\x02\x05\x01\x03\x04", // 𡛰
+ 0x216f1: "\x05\x03\x01\x02\x05\x01\x03\x05", // 𡛱
+ 0x216f2: "\x05\x03\x01\x03\x02\x01\x05\x04", // 𡛲
+ 0x216f3: "\x05\x03\x01\x03\x02\x05\x01\x01", // 𡛳
+ 0x216f4: "\x05\x03\x01\x03\x03\x01\x02\x04", // 𡛴
+ 0x216f5: "\x01\x02\x01\x02\x01\x05\x03\x04", // 𡛵
+ 0x216f6: "\x05\x03\x01\x01\x02\x02\x01\x05", // 𡛶
+ 0x216f7: "\x05\x03\x01\x01\x02\x05\x02\x03", // 𡛷
+ 0x216f8: "\x05\x03\x01\x02\x05\x05\x01\x01", // 𡛸
+ 0x216f9: "\x03\x05\x04\x05\x04\x05\x03\x01", // 𡛹
+ 0x216fa: "\x05\x04\x05\x02\x03\x05\x03\x01", // 𡛺
+ 0x216fb: "\x05\x03\x01\x04\x05\x05\x03\x04", // 𡛻
+ 0x216fc: "\x05\x03\x01\x01\x01\x02\x01\x04", // 𡛼
+ 0x216fd: "\x02\x05\x01\x02\x01\x05\x03\x01", // 𡛽
+ 0x216fe: "\x05\x03\x01\x03\x05\x01\x01\x02", // 𡛾
+ 0x216ff: "\x05\x03\x01\x01\x03\x01\x02\x01", // 𡛿
+ 0x21700: "\x05\x04\x01\x03\x04\x05\x03\x01", // 𡜀
+ 0x21701: "\x05\x03\x01\x03\x03\x05\x04\x04", // 𡜁
+ 0x21702: "\x04\x04\x01\x01\x01\x05\x05\x03\x01", // 𡜂
+ 0x21703: "\x05\x03\x01\x02\x05\x03\x04\x03\x04", // 𡜃
+ 0x21704: "\x05\x03\x01\x02\x05\x01\x01\x05\x03", // 𡜄
+ 0x21705: "\x05\x03\x01\x03\x01\x03\x05\x03\x04", // 𡜅
+ 0x21706: "\x05\x03\x01\x03\x05\x05\x02\x01\x05", // 𡜆
+ 0x21707: "\x05\x03\x01\x01\x01\x03\x02\x02\x02", // 𡜇
+ 0x21708: "\x02\x04\x03\x04\x05\x01\x05\x03\x01", // 𡜈
+ 0x21709: "\x05\x03\x01\x03\x05\x01\x02\x03\x04", // 𡜉
+ 0x2170a: "\x05\x03\x01\x03\x01\x01\x02\x05\x02", // 𡜊
+ 0x2170b: "\x05\x03\x01\x04\x01\x05\x03\x02\x05", // 𡜋
+ 0x2170c: "\x01\x02\x04\x05\x01\x01\x05\x03\x01", // 𡜌
+ 0x2170d: "\x05\x03\x01\x03\x02\x05\x01\x01\x01", // 𡜍
+ 0x2170e: "\x03\x04\x05\x04\x03\x05\x05\x03\x01", // 𡜎
+ 0x2170f: "\x05\x03\x01\x05\x05\x05\x01\x05\x05", // 𡜏
+ 0x21710: "\x05\x03\x01\x01\x03\x04\x05\x03\x04", // 𡜐
+ 0x21711: "\x02\x05\x01\x01\x04\x01\x05\x03\x01", // 𡜑
+ 0x21712: "\x05\x03\x01\x01\x03\x02\x05\x02\x01", // 𡜒
+ 0x21713: "\x02\x05\x01\x02\x05\x01\x05\x03\x01", // 𡜓
+ 0x21714: "\x05\x03\x01\x02\x01\x01\x02\x03\x04", // 𡜔
+ 0x21715: "\x05\x03\x01\x02\x01\x02\x05\x01\x01", // 𡜕
+ 0x21716: "\x05\x03\x01\x01\x05\x02\x05\x01\x01", // 𡜖
+ 0x21717: "\x05\x03\x01\x05\x04\x02\x05\x01\x01", // 𡜗
+ 0x21718: "\x05\x03\x01\x03\x01\x02\x05\x03\x01", // 𡜘
+ 0x21719: "\x05\x03\x01\x03\x05\x04\x05\x02", // 𡜙
+ 0x2171a: "\x05\x03\x01\x01\x03\x02\x05\x02\x02", // 𡜚
+ 0x2171b: "\x02\x03\x04\x02\x05\x01\x05\x03\x01", // 𡜛
+ 0x2171c: "\x05\x03\x01\x02\x05\x02\x02\x01\x01", // 𡜜
+ 0x2171d: "\x02\x05\x01\x02\x05\x01\x05\x03\x01", // 𡜝
+ 0x2171e: "\x05\x03\x01\x03\x01\x05\x03\x05\x05", // 𡜞
+ 0x2171f: "\x03\x02\x01\x01\x02\x01\x05\x03\x01", // 𡜟
+ 0x21720: "\x05\x03\x01\x03\x05\x04\x01\x05\x02", // 𡜠
+ 0x21721: "\x04\x04\x01\x01\x01\x02\x05\x03\x01", // 𡜡
+ 0x21722: "\x05\x03\x01\x05\x01\x03\x05\x01\x03", // 𡜢
+ 0x21723: "\x05\x03\x01\x05\x05\x05\x01\x02\x01", // 𡜣
+ 0x21724: "\x05\x03\x01\x01\x02\x01\x05\x02\x05", // 𡜤
+ 0x21725: "\x05\x03\x01\x03\x02\x05\x01\x05\x01", // 𡜥
+ 0x21726: "\x01\x02\x01\x02\x01\x02\x05\x03\x01", // 𡜦
+ 0x21727: "\x05\x03\x01\x03\x02\x05\x03\x04\x01", // 𡜧
+ 0x21728: "\x05\x03\x01\x03\x02\x01\x02\x03\x04", // 𡜨
+ 0x21729: "\x01\x02\x01\x02\x05\x01\x05\x03\x01", // 𡜩
+ 0x2172a: "\x05\x03\x01\x05\x05\x05\x02\x05\x02", // 𡜪
+ 0x2172b: "\x05\x03\x01\x05\x04\x02\x05\x04\x01", // 𡜫
+ 0x2172c: "\x05\x03\x01\x03\x02\x05\x01\x01\x03", // 𡜬
+ 0x2172d: "\x02\x05\x01\x03\x04\x01\x05\x03\x01", // 𡜭
+ 0x2172e: "\x05\x03\x01\x03\x03\x01\x05\x02\x01\x05", // 𡜮
+ 0x2172f: "\x05\x03\x01\x01\x02\x02\x01\x01\x01\x05", // 𡜯
+ 0x21730: "\x02\x05\x03\x04\x03\x04\x01\x05\x03\x01", // 𡜰
+ 0x21731: "\x05\x03\x01\x05\x01\x05\x04\x05\x04\x04", // 𡜱
+ 0x21732: "\x05\x03\x01\x03\x01\x02\x01\x02\x05\x01", // 𡜲
+ 0x21733: "\x05\x03\x01\x01\x02\x05\x03\x05\x01\x01", // 𡜳
+ 0x21734: "\x05\x03\x01\x02\x05\x03\x04\x02\x05\x01", // 𡜴
+ 0x21735: "\x05\x03\x01\x01\x02\x05\x01\x01\x02\x04", // 𡜵
+ 0x21736: "\x05\x03\x01\x03\x05\x01\x05\x02\x05\x01", // 𡜶
+ 0x21737: "\x05\x03\x01\x04\x04\x05\x01\x02\x01\x05", // 𡜷
+ 0x21738: "\x02\x05\x03\x05\x02\x05\x01\x05\x03\x01", // 𡜸
+ 0x21739: "\x01\x05\x02\x03\x05\x02\x05\x03\x01", // 𡜹
+ 0x2173a: "\x05\x03\x01\x01\x02\x03\x04\x02\x05\x01", // 𡜺
+ 0x2173b: "\x05\x03\x01\x04\x04\x05\x01\x02\x03\x04", // 𡜻
+ 0x2173c: "\x05\x03\x01\x02\x05\x02\x02\x01\x01\x01", // 𡜼
+ 0x2173d: "\x02\x04\x03\x02\x05\x01\x01\x05\x03\x01", // 𡜽
+ 0x2173e: "\x05\x03\x01\x04\x01\x03\x05\x04\x05\x02", // 𡜾
+ 0x2173f: "\x05\x03\x01\x04\x01\x02\x05\x01\x02\x01", // 𡜿
+ 0x21740: "\x05\x03\x01\x01\x02\x05\x01\x01\x01\x02", // 𡝀
+ 0x21741: "\x01\x02\x05\x01\x02\x03\x04\x05\x03\x01", // 𡝁
+ 0x21742: "\x05\x03\x01\x05\x02\x01\x03\x01\x02\x01", // 𡝂
+ 0x21743: "\x05\x03\x01\x02\x01\x02\x01\x02\x03\x03", // 𡝃
+ 0x21744: "\x05\x03\x01\x01\x02\x01\x02\x01\x03\x04", // 𡝄
+ 0x21745: "\x05\x03\x01\x01\x02\x01\x02\x03\x05\x04", // 𡝅
+ 0x21746: "\x05\x03\x01\x02\x05\x03\x05\x02\x05\x01", // 𡝆
+ 0x21747: "\x05\x03\x01\x03\x04\x04\x03\x01\x02\x01", // 𡝇
+ 0x21748: "\x05\x03\x01\x01\x01\x03\x04\x05\x03\x01", // 𡝈
+ 0x21749: "\x01\x01\x03\x04\x05\x03\x01\x05\x03\x01", // 𡝉
+ 0x2174a: "\x05\x03\x01\x01\x02\x01\x03\x03\x01\x02", // 𡝊
+ 0x2174b: "\x05\x03\x01\x01\x02\x03\x04\x05\x03\x01", // 𡝋
+ 0x2174c: "\x01\x03\x01\x01\x05\x03\x04\x05\x03\x01", // 𡝌
+ 0x2174d: "\x05\x03\x01\x01\x03\x05\x03\x03\x03\x04", // 𡝍
+ 0x2174e: "\x02\x05\x01\x01\x01\x01\x02\x05\x03\x01", // 𡝎
+ 0x2174f: "\x05\x03\x01\x04\x04\x05\x01\x02\x05\x05", // 𡝏
+ 0x21750: "\x05\x03\x01\x03\x04\x01\x01\x02\x03\x04", // 𡝐
+ 0x21751: "\x03\x05\x01\x01\x05\x01\x05\x05\x03\x01", // 𡝑
+ 0x21752: "\x05\x03\x01\x04\x04\x02\x03\x01\x03\x04", // 𡝒
+ 0x21753: "\x05\x03\x01\x03\x05\x05\x04\x05\x03\x01", // 𡝓
+ 0x21754: "\x01\x02\x01\x05\x04\x05\x03\x05\x03\x01", // 𡝔
+ 0x21755: "\x05\x03\x01\x05\x02\x01\x05\x01\x01\x01", // 𡝕
+ 0x21756: "\x05\x03\x01\x05\x03\x04\x04\x05\x04\x04", // 𡝖
+ 0x21757: "\x05\x03\x01\x05\x01\x01\x03\x02\x05\x01", // 𡝗
+ 0x21758: "\x05\x03\x01\x05\x01\x01\x02\x05\x03\x04", // 𡝘
+ 0x21759: "\x05\x03\x01\x03\x04\x01\x01\x02\x03\x04", // 𡝙
+ 0x2175a: "\x05\x03\x01\x02\x05\x01\x03\x01\x02\x01", // 𡝚
+ 0x2175b: "\x05\x03\x01\x05\x04\x01\x01\x02\x05\x02", // 𡝛
+ 0x2175c: "\x05\x03\x01\x03\x03\x01\x02\x02\x05\x01", // 𡝜
+ 0x2175d: "\x04\x04\x01\x01\x01\x02\x01\x05\x03\x01", // 𡝝
+ 0x2175e: "\x03\x05\x04\x01\x05\x02\x01\x05\x05\x03\x01", // 𡝞
+ 0x2175f: "\x05\x03\x01\x03\x01\x02\x03\x04\x03\x01\x02", // 𡝟
+ 0x21760: "\x05\x01\x05\x04\x05\x02\x03\x04\x05\x03\x01", // 𡝠
+ 0x21761: "\x05\x01\x05\x03\x04\x02\x03\x04\x05\x03\x01", // 𡝡
+ 0x21762: "\x05\x03\x01\x03\x05\x01\x03\x01\x03\x04\x04", // 𡝢
+ 0x21763: "\x02\x04\x03\x04\x05\x02\x05\x01\x05\x03\x01", // 𡝣
+ 0x21764: "\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 𡝤
+ 0x21765: "\x05\x03\x01\x04\x01\x05\x04\x01\x02\x03\x04", // 𡝥
+ 0x21766: "\x05\x03\x01\x03\x04\x04\x03\x05\x02\x01\x05", // 𡝦
+ 0x21767: "\x03\x01\x01\x02\x05\x02\x02\x02\x05\x03\x01", // 𡝧
+ 0x21768: "\x03\x02\x01\x01\x02\x05\x01\x01\x05\x03\x01", // 𡝨
+ 0x21769: "\x05\x03\x01\x01\x02\x01\x02\x03\x01\x03\x04", // 𡝩
+ 0x2176a: "\x03\x05\x01\x05\x02\x05\x01\x01\x05\x03\x01", // 𡝪
+ 0x2176b: "\x04\x04\x01\x02\x01\x02\x05\x01\x05\x03\x01", // 𡝫
+ 0x2176c: "\x05\x03\x01\x04\x04\x05\x01\x01\x02\x01\x04", // 𡝬
+ 0x2176d: "\x05\x03\x01\x02\x05\x01\x01\x02\x05\x01\x01", // 𡝭
+ 0x2176e: "\x05\x03\x01\x04\x04\x05\x02\x05\x01\x01\x01", // 𡝮
+ 0x2176f: "\x05\x03\x01\x05\x01\x01\x02\x04\x01\x03\x04", // 𡝯
+ 0x21770: "\x05\x03\x01\x01\x02\x01\x04\x01\x04\x03\x01", // 𡝰
+ 0x21771: "\x05\x03\x01\x01\x02\x01\x02\x03\x05\x05\x03", // 𡝱
+ 0x21772: "\x05\x03\x01\x03\x05\x03\x03\x04\x05\x04\x04", // 𡝲
+ 0x21773: "\x05\x03\x01\x01\x02\x01\x02\x04\x05\x04", // 𡝳
+ 0x21774: "\x05\x03\x01\x01\x02\x01\x02\x01\x01\x03\x05", // 𡝴
+ 0x21775: "\x05\x03\x01\x04\x01\x03\x04\x03\x04\x01\x02", // 𡝵
+ 0x21776: "\x04\x01\x05\x03\x03\x01\x03\x04\x05\x03\x01", // 𡝶
+ 0x21777: "\x02\x04\x03\x04\x05\x04\x04\x05\x05\x03\x01", // 𡝷
+ 0x21778: "\x04\x03\x01\x01\x02\x01\x03\x05\x05\x03\x01", // 𡝸
+ 0x21779: "\x05\x03\x01\x05\x02\x01\x02\x05\x02\x02\x01", // 𡝹
+ 0x2177a: "\x05\x03\x01\x01\x01\x02\x01\x03\x01\x03\x04", // 𡝺
+ 0x2177b: "\x05\x03\x01\x01\x03\x04\x04\x03\x01\x01\x05", // 𡝻
+ 0x2177c: "\x05\x01\x03\x02\x04\x01\x03\x04\x05\x03\x01", // 𡝼
+ 0x2177d: "\x01\x02\x05\x01\x02\x05\x01\x02\x05\x03\x01", // 𡝽
+ 0x2177e: "\x05\x03\x01\x05\x04\x04\x03\x01\x01\x01\x02", // 𡝾
+ 0x2177f: "\x05\x03\x01\x01\x02\x01\x02\x01\x05\x02\x03", // 𡝿
+ 0x21780: "\x05\x03\x01\x02\x04\x03\x02\x05\x02\x05\x01", // 𡞀
+ 0x21781: "\x05\x03\x01\x01\x02\x01\x02\x03\x05\x03\x04", // 𡞁
+ 0x21782: "\x05\x03\x01\x01\x05\x01\x05\x03\x05\x01\x01", // 𡞂
+ 0x21783: "\x05\x03\x01\x03\x02\x05\x01\x01\x01\x03\x05", // 𡞃
+ 0x21784: "\x05\x03\x01\x03\x02\x01\x05\x01\x01\x01\x05", // 𡞄
+ 0x21785: "\x05\x05\x04\x04\x01\x05\x05\x04\x05\x03\x01", // 𡞅
+ 0x21786: "\x05\x03\x01\x03\x04\x01\x01\x02\x02\x05\x01", // 𡞆
+ 0x21787: "\x05\x03\x01\x03\x05\x01\x01\x03\x05\x01\x01", // 𡞇
+ 0x21788: "\x05\x03\x01\x03\x01\x02\x03\x04\x02\x05\x01", // 𡞈
+ 0x21789: "\x05\x03\x01\x03\x02\x05\x01\x01\x05\x03\x01", // 𡞉
+ 0x2178a: "\x05\x03\x01\x03\x01\x03\x04\x04\x03\x03\x04", // 𡞊
+ 0x2178b: "\x05\x03\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 𡞋
+ 0x2178c: "\x05\x03\x01\x03\x02\x05\x01\x01\x01\x03\x02", // 𡞌
+ 0x2178d: "\x05\x03\x01\x01\x02\x05\x01\x01\x02\x05\x04", // 𡞍
+ 0x2178e: "\x05\x03\x01\x01\x03\x02\x05\x02\x05\x01\x01", // 𡞎
+ 0x2178f: "\x05\x03\x01\x01\x03\x04\x01\x01\x02\x03\x04", // 𡞏
+ 0x21790: "\x05\x03\x01\x02\x05\x01\x01\x02\x02\x05\x01", // 𡞐
+ 0x21791: "\x05\x03\x01\x02\x05\x01\x02\x01\x01\x03\x02", // 𡞑
+ 0x21792: "\x05\x01\x01\x04\x05\x02\x05\x02\x05\x03\x01", // 𡞒
+ 0x21793: "\x05\x02\x01\x03\x01\x02\x03\x04\x05\x03\x01", // 𡞓
+ 0x21794: "\x05\x05\x02\x01\x02\x05\x01\x02\x05\x03\x01", // 𡞔
+ 0x21795: "\x05\x03\x01\x03\x05\x04\x02\x05\x01\x02\x01", // 𡞕
+ 0x21796: "\x05\x03\x01\x04\x01\x03\x03\x05\x01\x05\x04", // 𡞖
+ 0x21797: "\x05\x03\x01\x01\x01\x01\x03\x04\x01\x01\x02", // 𡞗
+ 0x21798: "\x05\x03\x01\x04\x01\x04\x03\x01\x05\x03\x01", // 𡞘
+ 0x21799: "\x05\x03\x01\x04\x01\x05\x02\x05\x01\x01\x01", // 𡞙
+ 0x2179a: "\x05\x03\x01\x02\x01\x02\x01\x03\x05\x04\x01", // 𡞚
+ 0x2179b: "\x05\x03\x01\x04\x04\x05\x03\x05\x01\x01\x02", // 𡞛
+ 0x2179c: "\x04\x03\x01\x02\x05\x03\x05\x01\x01\x05\x03\x01", // 𡞜
+ 0x2179d: "\x05\x03\x01\x04\x03\x01\x03\x02\x05\x01\x01\x01", // 𡞝
+ 0x2179e: "\x05\x03\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01", // 𡞞
+ 0x2179f: "\x04\x03\x01\x01\x03\x01\x03\x05\x04\x05\x03\x01", // 𡞟
+ 0x217a0: "\x04\x04\x01\x03\x01\x02\x02\x05\x01\x05\x03\x01", // 𡞠
+ 0x217a1: "\x05\x03\x01\x01\x01\x03\x04\x03\x04\x03\x04\x05", // 𡞡
+ 0x217a2: "\x05\x03\x01\x01\x02\x02\x05\x01\x03\x05\x02\x02", // 𡞢
+ 0x217a3: "\x01\x03\x01\x02\x05\x01\x05\x03\x04\x05\x03\x01", // 𡞣
+ 0x217a4: "\x05\x03\x01\x01\x02\x05\x01\x01\x02\x01\x05\x04", // 𡞤
+ 0x217a5: "\x05\x03\x01\x03\x05\x01\x03\x03\x01\x01\x03\x04", // 𡞥
+ 0x217a6: "\x05\x03\x01\x03\x05\x02\x05\x01\x01\x05\x02\x01", // 𡞦
+ 0x217a7: "\x05\x03\x01\x03\x04\x05\x02\x03\x05\x03\x05\x04", // 𡞧
+ 0x217a8: "\x05\x03\x01\x01\x02\x05\x01\x01\x02\x05\x03\x04", // 𡞨
+ 0x217a9: "\x05\x04\x02\x05\x01\x01\x01\x03\x04\x05\x03\x01", // 𡞩
+ 0x217aa: "\x05\x03\x01\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 𡞪
+ 0x217ab: "\x05\x03\x01\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 𡞫
+ 0x217ac: "\x05\x03\x01\x03\x05\x01\x03\x01\x03\x03\x04\x04", // 𡞬
+ 0x217ad: "\x05\x03\x01\x03\x02\x01\x05\x01\x01\x02\x05\x02", // 𡞭
+ 0x217ae: "\x05\x03\x01\x01\x05\x01\x05\x01\x02\x03\x04", // 𡞮
+ 0x217af: "\x05\x03\x01\x01\x02\x01\x02\x01\x02\x02\x05\x01", // 𡞯
+ 0x217b0: "\x05\x03\x01\x04\x03\x01\x05\x05\x04\x05\x05\x04", // 𡞰
+ 0x217b1: "\x05\x03\x01\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 𡞱
+ 0x217b2: "\x05\x03\x01\x03\x02\x01\x05\x01\x01\x02\x01\x05", // 𡞲
+ 0x217b3: "\x05\x03\x01\x05\x04\x03\x03\x04\x01\x01\x03\x04", // 𡞳
+ 0x217b4: "\x05\x03\x01\x01\x02\x01\x02\x01\x04\x03\x01\x02", // 𡞴
+ 0x217b5: "\x05\x03\x01\x03\x05\x02\x05\x03\x04\x01\x03\x04", // 𡞵
+ 0x217b6: "\x05\x03\x01\x04\x04\x05\x03\x05\x04\x01\x05\x03", // 𡞶
+ 0x217b7: "\x05\x03\x01\x05\x02\x05\x03\x04\x04\x04\x04\x04", // 𡞷
+ 0x217b8: "\x05\x03\x01\x01\x02\x05\x01\x02\x03\x04\x02\x02", // 𡞸
+ 0x217b9: "\x05\x03\x01\x05\x01\x01\x01\x01\x02\x05\x04", // 𡞹
+ 0x217ba: "\x01\x02\x02\x01\x01\x01\x02\x05\x01\x05\x03\x01", // 𡞺
+ 0x217bb: "\x05\x03\x01\x01\x02\x05\x02\x02\x01\x01\x02\x01", // 𡞻
+ 0x217bc: "\x05\x03\x01\x01\x03\x03\x02\x05\x01\x02\x03\x04", // 𡞼
+ 0x217bd: "\x05\x03\x01\x01\x02\x01\x03\x02\x03\x04\x05\x04", // 𡞽
+ 0x217be: "\x05\x03\x01\x01\x03\x02\x05\x02\x02\x05\x03\x01", // 𡞾
+ 0x217bf: "\x05\x03\x01\x05\x02\x02\x05\x01\x05\x04\x05\x02", // 𡞿
+ 0x217c0: "\x05\x03\x01\x01\x02\x01\x02\x03\x04\x01\x05\x04", // 𡟀
+ 0x217c1: "\x05\x03\x01\x01\x02\x02\x05\x01\x03\x01\x03\x04", // 𡟁
+ 0x217c2: "\x05\x03\x01\x05\x03\x04\x05\x03\x04\x01\x01\x05", // 𡟂
+ 0x217c3: "\x05\x03\x01\x01\x02\x01\x02\x03\x05\x04\x05\x05", // 𡟃
+ 0x217c4: "\x05\x03\x01\x02\x05\x01\x01\x04\x01\x04\x03\x01", // 𡟄
+ 0x217c5: "\x05\x03\x01\x05\x05\x04\x04\x04\x04\x03\x05\x04", // 𡟅
+ 0x217c6: "\x05\x03\x01\x03\x05\x05\x03\x02\x05\x02\x02\x01", // 𡟆
+ 0x217c7: "\x05\x03\x01\x05\x05\x01\x03\x05\x03\x03\x03\x04", // 𡟇
+ 0x217c8: "\x05\x03\x01\x03\x03\x01\x02\x02\x05\x01\x01\x01", // 𡟈
+ 0x217c9: "\x05\x03\x01\x03\x02\x05\x01\x02\x02\x01\x03\x05", // 𡟉
+ 0x217ca: "\x05\x03\x01\x03\x01\x02\x03\x04\x04\x03\x03\x04", // 𡟊
+ 0x217cb: "\x01\x01\x02\x03\x04\x03\x01\x03\x04\x05\x03\x01", // 𡟋
+ 0x217cc: "\x05\x03\x01\x01\x02\x01\x02\x05\x01\x05\x03\x01", // 𡟌
+ 0x217cd: "\x05\x03\x01\x01\x02\x02\x01\x02\x05\x01\x01\x02", // 𡟍
+ 0x217ce: "\x05\x03\x01\x02\x05\x01\x02\x05\x01\x02\x01\x04", // 𡟎
+ 0x217cf: "\x05\x03\x01\x02\x05\x02\x05\x01\x02\x01\x04\x01", // 𡟏
+ 0x217d0: "\x05\x03\x01\x03\x01\x02\x05\x01\x02\x01\x03\x04", // 𡟐
+ 0x217d1: "\x05\x03\x01\x03\x02\x05\x01\x03\x01\x01\x03\x04", // 𡟑
+ 0x217d2: "\x05\x03\x01\x04\x03\x01\x01\x03\x04\x05\x03\x01", // 𡟒
+ 0x217d3: "\x05\x03\x01\x04\x01\x02\x05\x01\x03\x05\x03\x04", // 𡟓
+ 0x217d4: "\x05\x03\x01\x01\x01\x03\x05\x03\x04\x02\x05\x01", // 𡟔
+ 0x217d5: "\x04\x01\x05\x03\x03\x01\x05\x02\x05\x05\x03\x01", // 𡟕
+ 0x217d6: "\x04\x04\x01\x04\x04\x05\x05\x03\x01\x05\x03\x01", // 𡟖
+ 0x217d7: "\x05\x03\x01\x05\x03\x01\x05\x03\x01\x01\x03\x04", // 𡟗
+ 0x217d8: "\x05\x03\x01\x05\x04\x01\x01\x03\x04\x05\x03\x01", // 𡟘
+ 0x217d9: "\x05\x03\x01\x02\x05\x01\x01\x03\x01\x01\x02\x01", // 𡟙
+ 0x217da: "\x05\x03\x01\x05\x03\x05\x04\x02\x05\x02\x02\x01", // 𡟚
+ 0x217db: "\x05\x03\x01\x05\x01\x03\x04\x03\x01\x01\x03\x02", // 𡟛
+ 0x217dc: "\x05\x03\x01\x04\x03\x01\x01\x02\x01\x05\x03\x01", // 𡟜
+ 0x217dd: "\x05\x03\x01\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 𡟝
+ 0x217de: "\x05\x03\x01\x03\x02\x02\x03\x05\x04\x03\x03\x03", // 𡟞
+ 0x217df: "\x05\x03\x01\x03\x05\x03\x03\x04\x04\x05\x04\x04", // 𡟟
+ 0x217e0: "\x05\x03\x01\x02\x05\x01\x01\x01\x05\x05\x05\x05", // 𡟠
+ 0x217e1: "\x05\x03\x01\x03\x01\x03\x04\x04\x03\x01\x01\x02", // 𡟡
+ 0x217e2: "\x05\x03\x01\x03\x01\x02\x03\x04\x03\x04\x05\x02", // 𡟢
+ 0x217e3: "\x05\x03\x01\x02\x01\x05\x03\x01\x05\x02\x05\x02", // 𡟣
+ 0x217e4: "\x05\x03\x01\x02\x05\x01\x05\x02\x05\x01\x01\x01", // 𡟤
+ 0x217e5: "\x05\x03\x01\x03\x02\x05\x01\x02\x05\x02\x01\x04", // 𡟥
+ 0x217e6: "\x05\x03\x01\x03\x03\x02\x05\x04\x01\x04\x05\x02", // 𡟦
+ 0x217e7: "\x05\x03\x01\x04\x05\x01\x01\x05\x01\x05\x02", // 𡟧
+ 0x217e8: "\x05\x02\x01\x03\x04\x03\x04\x03\x04\x05\x03\x01", // 𡟨
+ 0x217e9: "\x05\x03\x01\x05\x01\x03\x02\x04\x03\x03\x05\x04\x01", // 𡟩
+ 0x217ea: "\x05\x03\x01\x03\x02\x05\x01\x05\x01\x01\x02\x05\x02", // 𡟪
+ 0x217eb: "\x05\x03\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𡟫
+ 0x217ec: "\x05\x03\x01\x01\x03\x01\x04\x03\x03\x04\x05\x03\x04", // 𡟬
+ 0x217ed: "\x05\x03\x01\x05\x01\x03\x04\x01\x04\x03\x01\x01\x02", // 𡟭
+ 0x217ee: "\x03\x01\x02\x05\x01\x02\x05\x05\x01\x05\x05\x03\x01", // 𡟮
+ 0x217ef: "\x05\x03\x01\x02\x05\x01\x03\x04\x01\x04\x05\x04\x04", // 𡟯
+ 0x217f0: "\x05\x03\x01\x04\x05\x03\x05\x02\x05\x01\x03\x05\x04", // 𡟰
+ 0x217f1: "\x05\x03\x01\x01\x02\x01\x02\x03\x05\x02\x05\x01\x01", // 𡟱
+ 0x217f2: "\x05\x03\x01\x04\x04\x05\x03\x01\x01\x02\x02\x05\x01", // 𡟲
+ 0x217f3: "\x05\x03\x01\x05\x05\x01\x05\x05\x01\x05\x01\x02\x01", // 𡟳
+ 0x217f4: "\x05\x03\x01\x03\x02\x05\x01\x05\x01\x04\x05\x04", // 𡟴
+ 0x217f5: "\x05\x03\x01\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02", // 𡟵
+ 0x217f6: "\x05\x03\x01\x02\x05\x02\x03\x01\x02\x01\x05\x03\x04", // 𡟶
+ 0x217f7: "\x05\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04\x01\x02", // 𡟷
+ 0x217f8: "\x05\x03\x01\x03\x05\x05\x04\x05\x04\x01\x05\x04\x01", // 𡟸
+ 0x217f9: "\x05\x03\x01\x01\x05\x04\x01\x02\x01\x03\x01\x03\x04", // 𡟹
+ 0x217fa: "\x05\x03\x01\x01\x03\x02\x05\x01\x01\x01\x03\x05\x04", // 𡟺
+ 0x217fb: "\x05\x03\x01\x01\x02\x01\x02\x02\x05\x01\x03\x04\x01", // 𡟻
+ 0x217fc: "\x05\x03\x01\x05\x05\x01\x03\x05\x03\x03\x04\x03\x04", // 𡟼
+ 0x217fd: "\x05\x03\x01\x01\x01\x05\x02\x05\x01\x02\x01\x02\x01", // 𡟽
+ 0x217fe: "\x05\x03\x01\x04\x01\x03\x03\x01\x02\x01\x05\x04", // 𡟾
+ 0x217ff: "\x04\x03\x01\x01\x02\x01\x05\x03\x01\x01\x02\x05\x01", // 𡟿
+ 0x21800: "\x05\x03\x01\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 𡠀
+ 0x21801: "\x05\x03\x01\x05\x04\x04\x04\x02\x05\x01\x02\x01\x04", // 𡠁
+ 0x21802: "\x05\x03\x01\x01\x02\x02\x04\x03\x01\x02\x05\x01\x01", // 𡠂
+ 0x21803: "\x01\x01\x02\x03\x04\x01\x05\x05\x03\x04\x05\x03\x01", // 𡠃
+ 0x21804: "\x05\x03\x01\x03\x02\x05\x01\x01\x05\x04\x04\x04\x04", // 𡠄
+ 0x21805: "\x03\x01\x01\x03\x04\x03\x01\x01\x03\x04\x05\x03\x01", // 𡠅
+ 0x21806: "\x01\x02\x01\x04\x05\x01\x03\x05\x05\x04\x05\x03\x01", // 𡠆
+ 0x21807: "\x05\x03\x01\x01\x02\x05\x02\x02\x01\x04\x05\x04\x04", // 𡠇
+ 0x21808: "\x01\x02\x05\x03\x04\x01\x02\x05\x03\x04\x05\x03\x01", // 𡠈
+ 0x21809: "\x01\x05\x02\x03\x03\x01\x03\x04\x01\x03\x05\x03\x01", // 𡠉
+ 0x2180a: "\x05\x03\x01\x03\x02\x02\x03\x05\x04\x01\x02\x03\x04", // 𡠊
+ 0x2180b: "\x03\x02\x05\x01\x05\x01\x01\x02\x05\x02\x05\x03\x01", // 𡠋
+ 0x2180c: "\x05\x03\x01\x03\x02\x05\x03\x04\x01\x01\x05\x03\x05", // 𡠌
+ 0x2180d: "\x03\x05\x03\x03\x01\x02\x05\x02\x02\x01\x05\x03\x01", // 𡠍
+ 0x2180e: "\x05\x03\x01\x04\x03\x01\x01\x02\x01\x03\x05\x05\x04", // 𡠎
+ 0x2180f: "\x05\x03\x01\x05\x04\x05\x04\x05\x04\x01\x02\x03\x04", // 𡠏
+ 0x21810: "\x05\x03\x01\x05\x04\x05\x04\x02\x05\x01\x01\x01\x02", // 𡠐
+ 0x21811: "\x05\x03\x01\x01\x02\x05\x01\x05\x01\x01\x02\x03\x04", // 𡠑
+ 0x21812: "\x05\x03\x01\x05\x05\x04\x05\x05\x04\x03\x01\x02\x01", // 𡠒
+ 0x21813: "\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03\x01", // 𡠓
+ 0x21814: "\x05\x03\x01\x02\x01\x02\x01\x03\x05\x01\x01\x02\x02", // 𡠔
+ 0x21815: "\x05\x03\x01\x02\x05\x01\x01\x05\x01\x02\x01\x03\x04", // 𡠕
+ 0x21816: "\x05\x03\x01\x03\x02\x05\x01\x01\x01\x04\x01\x03\x04\x01\x02", // 𡠖
+ 0x21817: "\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04\x05\x03\x01", // 𡠗
+ 0x21818: "\x05\x03\x01\x02\x01\x02\x01\x01\x02\x01\x04\x05\x05\x03\x04", // 𡠘
+ 0x21819: "\x05\x03\x01\x05\x04\x02\x05\x01\x01\x02\x04\x05\x04", // 𡠙
+ 0x2181a: "\x05\x03\x01\x02\x05\x01\x01\x01\x02\x02\x01\x01\x02", // 𡠚
+ 0x2181b: "\x05\x03\x01\x02\x05\x01\x02\x05\x01\x02\x04\x05\x04\x04", // 𡠛
+ 0x2181c: "\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x04\x05\x03\x01", // 𡠜
+ 0x2181d: "\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05\x05\x03\x01", // 𡠝
+ 0x2181e: "\x05\x03\x01\x03\x01\x04\x03\x01\x04\x03\x02\x01\x02\x04", // 𡠞
+ 0x2181f: "\x05\x03\x01\x05\x01\x03\x03\x02\x05\x01\x02\x05\x02\x01\x04", // 𡠟
+ 0x21820: "\x05\x03\x01\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x01", // 𡠠
+ 0x21821: "\x05\x03\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x02\x02", // 𡠡
+ 0x21822: "\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03\x05\x03\x01", // 𡠢
+ 0x21823: "\x05\x03\x01\x05\x01\x01\x05\x04\x01\x05\x03\x05", // 𡠣
+ 0x21824: "\x05\x03\x01\x05\x01\x05\x02\x05\x01\x02\x05\x01\x02\x01\x04", // 𡠤
+ 0x21825: "\x05\x01\x05\x02\x05\x01\x02\x05\x01\x02\x01\x04\x05\x03\x01", // 𡠥
+ 0x21826: "\x01\x02\x01\x03\x05\x01\x02\x01\x03\x05\x04\x05\x03\x01", // 𡠦
+ 0x21827: "\x01\x02\x02\x01\x01\x01\x03\x04\x03\x05\x04\x05\x03\x01", // 𡠧
+ 0x21828: "\x05\x03\x01\x03\x01\x04\x03\x01\x04\x05\x01\x05\x02\x03", // 𡠨
+ 0x21829: "\x05\x03\x01\x01\x02\x05\x01\x02\x05\x05\x04\x01\x02\x01", // 𡠩
+ 0x2182a: "\x05\x03\x01\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04", // 𡠪
+ 0x2182b: "\x05\x03\x01\x02\x03\x04\x03\x01\x05\x05\x04\x01\x04", // 𡠫
+ 0x2182c: "\x05\x03\x01\x01\x02\x01\x03\x02\x03\x04\x03\x01\x03\x04", // 𡠬
+ 0x2182d: "\x05\x03\x01\x01\x04\x05\x02\x04\x01\x03\x04\x05\x01\x01", // 𡠭
+ 0x2182e: "\x05\x03\x01\x05\x02\x02\x05\x01\x05\x04\x04\x04\x04\x04", // 𡠮
+ 0x2182f: "\x05\x03\x01\x01\x01\x02\x01\x05\x03\x01\x03\x01\x03\x04", // 𡠯
+ 0x21830: "\x05\x03\x01\x02\x05\x02\x02\x05\x01\x01\x01\x05\x01\x05", // 𡠰
+ 0x21831: "\x05\x03\x01\x02\x05\x02\x03\x04\x01\x02\x05\x01\x02\x02", // 𡠱
+ 0x21832: "\x05\x03\x01\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 𡠲
+ 0x21833: "\x05\x03\x01\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x03", // 𡠳
+ 0x21834: "\x05\x03\x01\x03\x02\x05\x03\x05\x04\x01\x04\x05\x04\x04", // 𡠴
+ 0x21835: "\x05\x03\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𡠵
+ 0x21836: "\x05\x03\x01\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x04", // 𡠶
+ 0x21837: "\x01\x01\x02\x01\x02\x01\x03\x02\x05\x01\x05\x05\x03\x01", // 𡠷
+ 0x21838: "\x05\x03\x01\x01\x02\x01\x03\x05\x01\x02\x02\x01\x01\x01", // 𡠸
+ 0x21839: "\x05\x03\x01\x01\x02\x02\x01\x03\x05\x04\x05\x02\x05\x02", // 𡠹
+ 0x2183a: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x04\x05\x05\x03\x01", // 𡠺
+ 0x2183b: "\x05\x03\x01\x03\x01\x01\x02\x02\x05\x01\x04\x05\x04", // 𡠻
+ 0x2183c: "\x01\x02\x05\x01\x02\x03\x04\x03\x01\x03\x04\x05\x03\x01", // 𡠼
+ 0x2183d: "\x05\x03\x01\x01\x03\x02\x01\x01\x02\x03\x04\x05\x03\x04", // 𡠽
+ 0x2183e: "\x05\x03\x01\x02\x05\x02\x01\x02\x05\x01\x03\x01\x03\x04", // 𡠾
+ 0x2183f: "\x05\x03\x01\x03\x02\x05\x01\x01\x01\x05\x01\x02\x03\x04", // 𡠿
+ 0x21840: "\x05\x03\x01\x04\x03\x01\x01\x03\x04\x02\x05\x01\x01\x01", // 𡡀
+ 0x21841: "\x05\x03\x01\x03\x04\x03\x01\x02\x03\x04\x04\x05\x04\x04", // 𡡁
+ 0x21842: "\x05\x03\x01\x04\x03\x01\x01\x02\x01\x04\x05\x05\x03\x04", // 𡡂
+ 0x21843: "\x05\x03\x01\x04\x04\x05\x03\x05\x03\x04\x01\x05\x03\x04", // 𡡃
+ 0x21844: "\x05\x03\x01\x01\x02\x02\x01\x02\x01\x01\x03\x02\x05", // 𡡄
+ 0x21845: "\x05\x03\x01\x05\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𡡅
+ 0x21846: "\x05\x03\x01\x02\x05\x01\x01\x01\x05\x01\x01\x05\x03\x04", // 𡡆
+ 0x21847: "\x05\x03\x01\x04\x03\x01\x01\x02\x01\x02\x05\x02\x02\x01", // 𡡇
+ 0x21848: "\x05\x03\x01\x02\x05\x02\x03\x05\x01\x01\x03\x05\x01\x01", // 𡡈
+ 0x21849: "\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x05\x03\x01", // 𡡉
+ 0x2184a: "\x05\x03\x01\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 𡡊
+ 0x2184b: "\x03\x02\x01\x05\x01\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 𡡋
+ 0x2184c: "\x05\x03\x01\x01\x03\x04\x03\x04\x03\x04\x04\x05\x04\x04", // 𡡌
+ 0x2184d: "\x05\x03\x01\x04\x01\x05\x03\x02\x05\x01\x02\x01\x03\x04", // 𡡍
+ 0x2184e: "\x05\x03\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 𡡎
+ 0x2184f: "\x03\x01\x02\x03\x04\x02\x04\x03\x03\x05\x04\x01\x05\x03\x01", // 𡡏
+ 0x21850: "\x05\x03\x01\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 𡡐
+ 0x21851: "\x05\x03\x01\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𡡑
+ 0x21852: "\x05\x03\x01\x01\x02\x02\x01\x01\x01\x03\x04\x03\x03\x01\x02", // 𡡒
+ 0x21853: "\x03\x03\x03\x05\x03\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𡡓
+ 0x21854: "\x05\x03\x01\x02\x05\x01\x01\x01\x02\x02\x01\x01\x01\x05\x04", // 𡡔
+ 0x21855: "\x01\x03\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04\x05\x03\x01", // 𡡕
+ 0x21856: "\x05\x03\x01\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x01", // 𡡖
+ 0x21857: "\x05\x03\x01\x03\x04\x04\x03\x05\x04\x02\x05\x05\x04\x05\x04", // 𡡗
+ 0x21858: "\x01\x02\x01\x04\x03\x01\x01\x02\x05\x03\x01\x01\x05\x03\x01", // 𡡘
+ 0x21859: "\x05\x02\x01\x03\x01\x02\x01\x02\x05\x04\x01\x05\x03\x01", // 𡡙
+ 0x2185a: "\x03\x04\x03\x04\x02\x01\x03\x02\x05\x01\x01\x01\x05\x03\x01", // 𡡚
+ 0x2185b: "\x05\x03\x01\x01\x03\x05\x05\x03\x04\x02\x05\x02\x02\x01", // 𡡛
+ 0x2185c: "\x01\x02\x05\x01\x01\x01\x01\x02\x05\x01\x01\x01\x05\x03\x01", // 𡡜
+ 0x2185d: "\x05\x03\x01\x04\x03\x01\x02\x02\x04\x03\x01\x02\x05\x01\x01", // 𡡝
+ 0x2185e: "\x05\x03\x01\x03\x04\x04\x03\x04\x05\x03\x05\x04\x01\x05\x02", // 𡡞
+ 0x2185f: "\x05\x03\x01\x05\x03\x04\x02\x01\x02\x01\x05\x03\x04\x02\x01\x02\x01", // 𡡟
+ 0x21860: "\x05\x03\x01\x01\x05\x04\x03\x05\x04\x01\x03\x01\x03\x04", // 𡡠
+ 0x21861: "\x05\x03\x01\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x03\x04", // 𡡡
+ 0x21862: "\x05\x03\x01\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x03\x04", // 𡡢
+ 0x21863: "\x05\x03\x01\x01\x02\x02\x03\x05\x04\x03\x01\x02\x03\x04", // 𡡣
+ 0x21864: "\x05\x03\x01\x05\x05\x04\x05\x05\x04\x01\x03\x04\x05\x03\x04", // 𡡤
+ 0x21865: "\x05\x03\x01\x04\x04\x01\x01\x05\x01\x05\x01\x02\x03\x04", // 𡡥
+ 0x21866: "\x05\x03\x01\x05\x02\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 𡡦
+ 0x21867: "\x05\x03\x01\x03\x01\x01\x03\x04\x02\x05\x01\x02\x05\x01\x01", // 𡡧
+ 0x21868: "\x05\x03\x01\x04\x04\x05\x03\x05\x02\x05\x01\x01\x05\x03\x04", // 𡡨
+ 0x21869: "\x05\x03\x01\x04\x04\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 𡡩
+ 0x2186a: "\x05\x03\x01\x04\x04\x05\x03\x05\x01\x03\x01\x01\x05\x03\x04", // 𡡪
+ 0x2186b: "\x05\x03\x01\x04\x01\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 𡡫
+ 0x2186c: "\x05\x03\x01\x04\x01\x02\x05\x01\x05\x02\x01\x03\x01\x03\x04", // 𡡬
+ 0x2186d: "\x04\x03\x01\x01\x02\x01\x05\x03\x01\x01\x03\x03\x05\x01\x01", // 𡡭
+ 0x2186e: "\x05\x03\x01\x04\x04\x05\x05\x02\x01\x03\x02\x05\x01\x01\x01", // 𡡮
+ 0x2186f: "\x05\x03\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x05\x03", // 𡡯
+ 0x21870: "\x05\x03\x01\x01\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𡡰
+ 0x21871: "\x05\x03\x01\x01\x01\x02\x01\x01\x01\x02\x01\x03\x04\x01\x05", // 𡡱
+ 0x21872: "\x05\x03\x01\x01\x02\x02\x05\x01\x01\x01\x02\x03\x05\x01\x01", // 𡡲
+ 0x21873: "\x05\x03\x01\x01\x05\x02\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 𡡳
+ 0x21874: "\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x03\x04\x05\x03\x01", // 𡡴
+ 0x21875: "\x05\x03\x01\x01\x02\x01\x01\x01\x02\x03\x04\x03\x01\x03\x04", // 𡡵
+ 0x21876: "\x05\x03\x01\x01\x02\x01\x02\x04\x04\x05\x03\x05\x04\x05\x05", // 𡡶
+ 0x21877: "\x05\x03\x01\x01\x02\x01\x02\x01\x02\x01\x03\x05\x03\x05\x04", // 𡡷
+ 0x21878: "\x05\x03\x01\x02\x01\x02\x01\x03\x03\x05\x04\x01\x04\x02\x02", // 𡡸
+ 0x21879: "\x05\x03\x01\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04", // 𡡹
+ 0x2187a: "\x05\x03\x01\x02\x05\x03\x04\x02\x05\x03\x04\x02\x05\x03\x04", // 𡡺
+ 0x2187b: "\x05\x03\x01\x02\x05\x02\x05\x02\x01\x03\x02\x05\x01\x01\x01", // 𡡻
+ 0x2187c: "\x03\x02\x01\x05\x01\x01\x03\x04\x02\x05\x01\x02\x05\x03\x01", // 𡡼
+ 0x2187d: "\x05\x03\x01\x03\x04\x01\x02\x05\x01\x02\x05\x03\x05\x01\x02", // 𡡽
+ 0x2187e: "\x05\x03\x01\x03\x04\x03\x04\x02\x01\x03\x02\x05\x01\x01\x01", // 𡡾
+ 0x2187f: "\x05\x03\x01\x04\x01\x04\x03\x04\x05\x02\x05\x02\x02\x05\x01", // 𡡿
+ 0x21880: "\x05\x03\x01\x05\x01\x05\x05\x01\x05\x01\x02\x02\x01\x03\x04", // 𡢀
+ 0x21881: "\x01\x02\x02\x01\x01\x01\x03\x04\x05\x03\x01\x01\x05\x03\x01", // 𡢁
+ 0x21882: "\x01\x02\x01\x03\x05\x01\x02\x01\x05\x03\x01\x01\x05\x03\x01", // 𡢂
+ 0x21883: "\x05\x03\x01\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01", // 𡢃
+ 0x21884: "\x05\x03\x01\x05\x01\x01\x02\x02\x05\x01\x01\x04\x01\x03\x04", // 𡢄
+ 0x21885: "\x05\x03\x01\x01\x04\x05\x02\x04\x01\x03\x04\x01\x01\x05\x04", // 𡢅
+ 0x21886: "\x05\x03\x01\x05\x05\x05\x02\x05\x03\x04\x01\x04\x05\x04\x04", // 𡢆
+ 0x21887: "\x05\x03\x01\x01\x02\x01\x05\x05\x01\x02\x01\x04\x05\x04\x04", // 𡢇
+ 0x21888: "\x04\x04\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03\x05\x03\x01", // 𡢈
+ 0x21889: "\x05\x03\x01\x01\x03\x02\x05\x02\x02\x01\x03\x02\x05\x02\x02", // 𡢉
+ 0x2188a: "\x05\x03\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𡢊
+ 0x2188b: "\x05\x03\x01\x02\x01\x02\x01\x02\x01\x02\x01\x02\x01\x02\x01", // 𡢋
+ 0x2188c: "\x05\x03\x01\x04\x04\x05\x03\x04\x02\x05\x01\x01\x05\x03\x04", // 𡢌
+ 0x2188d: "\x05\x03\x01\x02\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 𡢍
+ 0x2188e: "\x03\x05\x02\x05\x01\x03\x05\x03\x01\x01\x02\x01\x05\x03\x01", // 𡢎
+ 0x2188f: "\x04\x03\x01\x02\x03\x04\x05\x03\x01\x03\x05\x04\x01\x03\x04", // 𡢏
+ 0x21890: "\x04\x03\x01\x02\x03\x04\x05\x03\x01\x03\x03\x01\x02\x05\x01", // 𡢐
+ 0x21891: "\x02\x05\x02\x02\x01\x05\x04\x05\x04\x05\x04\x05\x04\x05\x03\x01", // 𡢑
+ 0x21892: "\x05\x03\x01\x03\x01\x04\x03\x01\x04\x01\x02\x05\x01\x04\x03\x01", // 𡢒
+ 0x21893: "\x05\x03\x01\x01\x02\x05\x01\x01\x05\x02\x02\x05\x03\x04\x01\x02", // 𡢓
+ 0x21894: "\x03\x04\x05\x02\x05\x01\x05\x03\x01\x03\x05\x01\x01\x03\x05\x04", // 𡢔
+ 0x21895: "\x03\x02\x01\x05\x01\x01\x01\x02\x01\x03\x05\x05\x04\x05\x03\x01", // 𡢕
+ 0x21896: "\x01\x02\x05\x01\x01\x01\x02\x05\x02\x03\x05\x05\x04\x05\x03\x01", // 𡢖
+ 0x21897: "\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x05\x03\x01", // 𡢗
+ 0x21898: "\x05\x03\x01\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𡢘
+ 0x21899: "\x05\x03\x01\x02\x01\x05\x03\x01\x05\x03\x04\x04\x03\x01\x02\x04", // 𡢙
+ 0x2189a: "\x05\x03\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01\x04\x01\x05\x03", // 𡢚
+ 0x2189b: "\x03\x05\x05\x04\x05\x05\x04\x05\x05\x04\x02\x05\x02\x05\x03\x01", // 𡢛
+ 0x2189c: "\x04\x01\x03\x04\x05\x02\x04\x03\x05\x02\x03\x04\x05\x03\x01", // 𡢜
+ 0x2189d: "\x05\x03\x01\x03\x02\x01\x05\x01\x01\x01\x02\x01\x03\x01\x03\x04", // 𡢝
+ 0x2189e: "\x05\x03\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x05\x03\x01", // 𡢞
+ 0x2189f: "\x05\x03\x01\x01\x02\x03\x04\x01\x02\x03\x04\x05\x02\x01\x03\x04", // 𡢟
+ 0x218a0: "\x05\x03\x01\x04\x04\x05\x03\x05\x02\x05\x01\x02\x05\x02\x05\x01", // 𡢠
+ 0x218a1: "\x05\x03\x01\x05\x01\x01\x03\x02\x05\x01\x04\x03\x01\x01\x01\x02", // 𡢡
+ 0x218a2: "\x05\x03\x01\x02\x01\x05\x03\x01\x05\x02\x05\x01\x05\x01\x03\x04", // 𡢢
+ 0x218a3: "\x03\x04\x01\x02\x05\x01\x05\x03\x01\x03\x05\x01\x01\x03\x05\x04", // 𡢣
+ 0x218a4: "\x05\x03\x01\x02\x05\x01\x02\x02\x05\x02\x05\x01\x04\x05\x05\x04", // 𡢤
+ 0x218a5: "\x05\x03\x01\x04\x03\x01\x01\x02\x01\x02\x03\x04\x01\x02\x03\x04", // 𡢥
+ 0x218a6: "\x04\x01\x03\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03\x01", // 𡢦
+ 0x218a7: "\x05\x03\x01\x04\x01\x04\x03\x04\x05\x03\x04\x02\x05\x01\x01\x05", // 𡢧
+ 0x218a8: "\x05\x03\x01\x01\x02\x02\x01\x01\x01\x02\x05\x01\x01\x01\x02\x01", // 𡢨
+ 0x218a9: "\x05\x03\x01\x01\x03\x02\x05\x01\x03\x05\x01\x01\x03\x01\x03\x04", // 𡢩
+ 0x218aa: "\x05\x03\x01\x01\x02\x01\x02\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𡢪
+ 0x218ab: "\x05\x03\x01\x01\x02\x01\x02\x04\x03\x01\x05\x05\x04\x05\x05\x04", // 𡢫
+ 0x218ac: "\x05\x03\x01\x01\x02\x01\x02\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 𡢬
+ 0x218ad: "\x05\x03\x01\x03\x01\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𡢭
+ 0x218ae: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x05\x05\x04\x05\x03\x01", // 𡢮
+ 0x218af: "\x05\x03\x01\x01\x02\x02\x01\x05\x01\x01\x02\x01\x05\x03\x01", // 𡢯
+ 0x218b0: "\x05\x03\x01\x01\x02\x02\x05\x01\x02\x05\x05\x01\x05\x05\x03\x01", // 𡢰
+ 0x218b1: "\x05\x03\x01\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04\x02\x02", // 𡢱
+ 0x218b2: "\x05\x03\x01\x01\x02\x05\x02\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𡢲
+ 0x218b3: "\x05\x03\x01\x01\x03\x01\x02\x05\x01\x05\x03\x04\x04\x05\x04\x04", // 𡢳
+ 0x218b4: "\x05\x03\x01\x01\x03\x04\x04\x03\x02\x05\x01\x01\x04\x03\x03\x04", // 𡢴
+ 0x218b5: "\x05\x03\x01\x01\x04\x05\x02\x04\x01\x03\x04\x05\x05\x04\x05\x03", // 𡢵
+ 0x218b6: "\x05\x03\x01\x03\x02\x01\x05\x01\x01\x01\x02\x01\x03\x05\x05\x04", // 𡢶
+ 0x218b7: "\x05\x03\x01\x04\x04\x05\x03\x05\x05\x04\x05\x04\x05\x04\x05\x04", // 𡢷
+ 0x218b8: "\x05\x03\x01\x05\x01\x01\x02\x02\x05\x01\x01\x05\x04\x01\x03\x02", // 𡢸
+ 0x218b9: "\x05\x03\x01\x05\x03\x01\x05\x03\x01\x02\x05\x01\x02\x01\x05\x03", // 𡢹
+ 0x218ba: "\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01\x04\x01\x03\x03\x04", // 𡢺
+ 0x218bb: "\x05\x03\x01\x03\x02\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𡢻
+ 0x218bc: "\x05\x03\x01\x01\x02\x02\x03\x05\x01\x02\x05\x01\x01\x02\x04", // 𡢼
+ 0x218bd: "\x05\x03\x01\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x01", // 𡢽
+ 0x218be: "\x05\x03\x01\x01\x02\x03\x04\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 𡢾
+ 0x218bf: "\x05\x03\x01\x02\x05\x01\x02\x02\x01\x01\x03\x01\x01\x05\x03\x04", // 𡢿
+ 0x218c0: "\x05\x02\x04\x01\x03\x01\x03\x04\x03\x04\x03\x04\x05\x03\x01", // 𡣀
+ 0x218c1: "\x05\x03\x01\x05\x02\x01\x05\x02\x01\x05\x02\x01\x02\x05\x01\x01", // 𡣁
+ 0x218c2: "\x04\x01\x01\x02\x05\x01\x02\x03\x04\x03\x05\x03\x04\x05\x03\x01", // 𡣂
+ 0x218c3: "\x05\x03\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x02\x05\x01\x01", // 𡣃
+ 0x218c4: "\x05\x03\x01\x04\x04\x01\x05\x01\x05\x04\x01\x05\x01\x05\x04\x01", // 𡣄
+ 0x218c5: "\x01\x02\x01\x03\x02\x03\x04\x02\x05\x01\x01\x01\x03\x05\x05\x03\x01", // 𡣅
+ 0x218c6: "\x05\x03\x01\x03\x01\x01\x02\x02\x02\x02\x01\x03\x05\x04\x01\x05\x02", // 𡣆
+ 0x218c7: "\x05\x03\x01\x04\x01\x03\x01\x03\x04\x03\x04\x03\x04\x04\x05\x04\x04", // 𡣇
+ 0x218c8: "\x05\x03\x01\x02\x05\x02\x02\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 𡣈
+ 0x218c9: "\x03\x01\x02\x03\x04\x05\x03\x01\x02\x05\x01\x02\x01\x01\x05\x03\x04", // 𡣉
+ 0x218ca: "\x05\x03\x01\x03\x04\x04\x05\x04\x02\x05\x04\x03\x01\x01\x02\x01", // 𡣊
+ 0x218cb: "\x05\x03\x01\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04\x01\x02\x04", // 𡣋
+ 0x218cc: "\x05\x03\x01\x02\x01\x02\x01\x01\x01\x02\x04\x01\x01\x01\x02\x05\x01", // 𡣌
+ 0x218cd: "\x04\x01\x05\x02\x05\x01\x03\x05\x04\x01\x05\x03\x01\x05\x03\x01\x01", // 𡣍
+ 0x218ce: "\x04\x01\x04\x03\x01\x01\x01\x02\x03\x04\x03\x03\x01\x02\x05\x03\x01", // 𡣎
+ 0x218cf: "\x05\x03\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x03\x03", // 𡣏
+ 0x218d0: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x03\x02\x05\x04\x05\x03\x01", // 𡣐
+ 0x218d1: "\x05\x03\x01\x04\x04\x05\x01\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 𡣑
+ 0x218d2: "\x05\x03\x01\x01\x02\x05\x01\x02\x03\x04\x01\x02\x05\x01\x02\x03\x04", // 𡣒
+ 0x218d3: "\x05\x03\x01\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x05", // 𡣓
+ 0x218d4: "\x05\x03\x01\x03\x04\x01\x05\x05\x04\x02\x05\x04\x03\x01\x01\x02\x01", // 𡣔
+ 0x218d5: "\x05\x03\x01\x04\x04\x05\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𡣕
+ 0x218d6: "\x05\x03\x01\x02\x04\x03\x04\x05\x02\x05\x01\x04\x01\x03\x05\x03\x04", // 𡣖
+ 0x218d7: "\x05\x03\x01\x01\x02\x01\x02\x05\x01\x04\x03\x01\x05\x03\x02\x05\x01", // 𡣗
+ 0x218d8: "\x05\x03\x01\x02\x02\x04\x03\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 𡣘
+ 0x218d9: "\x05\x03\x01\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01", // 𡣙
+ 0x218da: "\x05\x03\x01\x04\x04\x05\x02\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 𡣚
+ 0x218db: "\x05\x03\x01\x04\x01\x01\x01\x02\x05\x01\x04\x03\x02\x05\x01\x03\x05", // 𡣛
+ 0x218dc: "\x05\x03\x01\x01\x03\x01\x02\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 𡣜
+ 0x218dd: "\x05\x03\x01\x05\x04\x01\x05\x04\x01\x04\x01\x03\x04\x03\x04\x01\x02", // 𡣝
+ 0x218de: "\x05\x03\x01\x01\x02\x02\x01\x01\x01\x05\x04\x03\x02\x03\x03\x03\x04", // 𡣞
+ 0x218df: "\x05\x03\x01\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x02\x01\x01\x01", // 𡣟
+ 0x218e0: "\x02\x05\x01\x02\x01\x05\x03\x02\x05\x01\x02\x01\x05\x03\x05\x03\x01", // 𡣠
+ 0x218e1: "\x05\x03\x01\x02\x05\x01\x02\x01\x05\x03\x02\x05\x01\x02\x01\x05\x03", // 𡣡
+ 0x218e2: "\x03\x01\x02\x05\x01\x01\x02\x01\x01\x03\x01\x02\x03\x04\x05\x03\x01", // 𡣢
+ 0x218e3: "\x05\x03\x01\x03\x04\x04\x03\x05\x01\x01\x03\x04\x02\x05\x01\x01\x01", // 𡣣
+ 0x218e4: "\x05\x03\x01\x03\x04\x01\x05\x04\x01\x02\x02\x05\x04\x03\x01\x01\x02", // 𡣤
+ 0x218e5: "\x05\x03\x01\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x05\x03\x01", // 𡣥
+ 0x218e6: "\x05\x03\x01\x05\x05\x04\x05\x05\x04\x01\x05\x05\x04\x05\x05\x04\x05", // 𡣦
+ 0x218e7: "\x05\x03\x01\x01\x03\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𡣧
+ 0x218e8: "\x05\x03\x01\x01\x02\x02\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 𡣨
+ 0x218e9: "\x04\x04\x01\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04\x05\x03\x01", // 𡣩
+ 0x218ea: "\x05\x03\x01\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01\x04\x05\x04", // 𡣪
+ 0x218eb: "\x05\x03\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x01", // 𡣫
+ 0x218ec: "\x05\x03\x01\x02\x05\x02\x02\x01\x01\x03\x02\x05\x02\x02\x01\x01\x03\x04", // 𡣬
+ 0x218ed: "\x05\x03\x01\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 𡣭
+ 0x218ee: "\x05\x03\x01\x01\x02\x01\x02\x03\x05\x04\x01\x05\x04\x01\x01\x02\x03\x04", // 𡣮
+ 0x218ef: "\x05\x03\x01\x02\x04\x03\x03\x02\x04\x01\x01\x01\x02\x01\x01\x05\x03\x04", // 𡣯
+ 0x218f0: "\x05\x03\x01\x01\x03\x04\x03\x04\x02\x03\x04\x01\x02\x05\x02\x05\x01\x01", // 𡣰
+ 0x218f1: "\x05\x03\x01\x02\x05\x02\x02\x01\x01\x02\x01\x02\x05\x01\x03\x05\x03\x04", // 𡣱
+ 0x218f2: "\x05\x03\x01\x04\x04\x05\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 𡣲
+ 0x218f3: "\x05\x03\x01\x01\x02\x02\x01\x01\x01\x02\x01\x01\x01\x01\x01\x05\x03\x04", // 𡣳
+ 0x218f4: "\x05\x03\x01\x01\x05\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𡣴
+ 0x218f5: "\x05\x03\x01\x01\x02\x05\x01\x02\x05\x03\x01\x01\x05\x05\x04\x02\x03\x04", // 𡣵
+ 0x218f6: "\x05\x03\x01\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𡣶
+ 0x218f7: "\x05\x03\x01\x01\x02\x05\x01\x01\x02\x04\x04\x01\x05\x03\x03\x01\x03\x04", // 𡣷
+ 0x218f8: "\x05\x03\x01\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x02\x05", // 𡣸
+ 0x218f9: "\x04\x01\x01\x01\x02\x05\x01\x04\x03\x03\x04\x04\x03\x03\x04\x05\x03\x01", // 𡣹
+ 0x218fa: "\x05\x03\x01\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 𡣺
+ 0x218fb: "\x05\x03\x01\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 𡣻
+ 0x218fc: "\x04\x01\x03\x04\x03\x04\x03\x01\x03\x05\x05\x02\x02\x05\x02\x05\x03\x01", // 𡣼
+ 0x218fd: "\x05\x03\x01\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x03\x02\x01\x05\x01\x01", // 𡣽
+ 0x218fe: "\x05\x03\x01\x01\x02\x01\x02\x05\x01\x01\x02\x03\x02\x01\x01\x05\x05\x02\x01\x02", // 𡣾
+ 0x218ff: "\x03\x02\x01\x01\x01\x02\x02\x05\x01\x05\x01\x01\x03\x04\x03\x04\x05\x03\x01", // 𡣿
+ 0x21900: "\x05\x03\x01\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x03\x02\x01\x02\x05", // 𡤀
+ 0x21901: "\x05\x03\x01\x04\x04\x05\x01\x01\x03\x05\x02\x05\x01\x01\x01\x04\x04\x04\x04", // 𡤁
+ 0x21902: "\x05\x03\x01\x03\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x05\x03", // 𡤂
+ 0x21903: "\x05\x03\x01\x01\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01", // 𡤃
+ 0x21904: "\x05\x03\x01\x01\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04", // 𡤄
+ 0x21905: "\x05\x03\x01\x04\x01\x04\x03\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𡤅
+ 0x21906: "\x05\x03\x01\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x02\x02\x01\x05\x03\x01", // 𡤆
+ 0x21907: "\x05\x03\x01\x02\x05\x02\x03\x03\x02\x02\x05\x02\x01\x03\x05\x03\x01\x03\x04", // 𡤇
+ 0x21908: "\x01\x02\x02\x01\x02\x05\x01\x02\x01\x01\x03\x05\x04\x04\x04\x04\x05\x03\x01", // 𡤈
+ 0x21909: "\x05\x03\x01\x02\x01\x02\x01\x02\x04\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𡤉
+ 0x2190a: "\x05\x03\x01\x03\x01\x02\x01\x04\x04\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 𡤊
+ 0x2190b: "\x05\x03\x01\x02\x01\x03\x05\x04\x05\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𡤋
+ 0x2190c: "\x05\x03\x01\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 𡤌
+ 0x2190d: "\x03\x01\x02\x03\x04\x05\x03\x01\x01\x03\x03\x02\x05\x01\x01\x02\x03\x04", // 𡤍
+ 0x2190e: "\x05\x03\x01\x03\x05\x02\x05\x01\x01\x05\x03\x05\x03\x05\x02\x05\x01\x03\x05", // 𡤎
+ 0x2190f: "\x05\x03\x01\x01\x02\x01\x02\x03\x02\x05\x01\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 𡤏
+ 0x21910: "\x05\x03\x01\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𡤐
+ 0x21911: "\x05\x03\x01\x01\x02\x01\x02\x01\x02\x03\x04\x03\x04\x01\x02\x05\x02\x05\x01\x01", // 𡤑
+ 0x21912: "\x05\x03\x01\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04\x01\x01\x02", // 𡤒
+ 0x21913: "\x05\x03\x01\x05\x04\x02\x05\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𡤓
+ 0x21914: "\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x05\x03\x01\x05\x04\x02\x05\x01", // 𡤔
+ 0x21915: "\x05\x03\x01\x01\x04\x05\x02\x04\x01\x03\x04\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 𡤕
+ 0x21916: "\x05\x03\x01\x01\x03\x01\x01\x03\x04\x05\x03\x05\x05\x04\x05\x04\x01\x05\x04\x01", // 𡤖
+ 0x21917: "\x05\x03\x01\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x03\x03\x04", // 𡤗
+ 0x21918: "\x05\x03\x01\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04\x04\x05\x04\x04", // 𡤘
+ 0x21919: "\x05\x03\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01", // 𡤙
+ 0x2191a: "\x05\x03\x01\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x01\x04\x03\x03\x04", // 𡤚
+ 0x2191b: "\x05\x03\x01\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04", // 𡤛
+ 0x2191c: "\x01\x02\x01\x04\x05\x01\x02\x05\x01\x04\x03\x01\x01\x01\x03\x05\x03\x04\x05\x03\x01", // 𡤜
+ 0x2191d: "\x05\x03\x01\x03\x01\x02\x01\x05\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𡤝
+ 0x2191e: "\x05\x03\x01\x03\x05\x02\x05\x01\x02\x05\x01\x01\x01\x01\x05\x05\x01\x01\x05\x01\x01", // 𡤞
+ 0x2191f: "\x05\x03\x01\x05\x02\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01", // 𡤟
+ 0x21920: "\x05\x03\x01\x04\x05\x02\x04\x02\x05\x01\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01", // 𡤠
+ 0x21921: "\x05\x03\x01\x05\x01\x01\x02\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x05\x03\x02\x01\x02", // 𡤡
+ 0x21922: "\x05\x03\x01\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𡤢
+ 0x21923: "\x05\x03\x01\x05\x05\x04\x04\x04\x04\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04", // 𡤣
+ 0x21924: "\x05\x03\x01\x01\x02\x01\x02\x03\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x03\x04", // 𡤤
+ 0x21925: "\x05\x03\x01\x03\x02\x02\x03\x01\x03\x04\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𡤥
+ 0x21926: "\x05\x03\x01\x01\x02\x01\x02\x01\x02\x01\x03\x05\x01\x02\x01\x03\x05\x04\x01\x01\x05\x04", // 𡤦
+ 0x21927: "\x05\x03\x01\x04\x04\x05\x01\x01\x02\x01\x03\x05\x02\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𡤧
+ 0x21928: "\x05\x05\x04\x02\x03\x04\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x02\x03\x04\x05\x03\x01", // 𡤨
+ 0x21929: "\x05\x03\x01\x02\x05\x01\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01\x03\x05\x05\x02\x01\x05", // 𡤩
+ 0x2192a: "\x05\x03\x01\x03\x01\x04\x03\x01\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 𡤪
+ 0x2192b: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x02\x05\x01\x02\x05\x03\x01", // 𡤫
+ 0x2192c: "\x05\x03\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𡤬
+ 0x2192d: "\x05\x03\x01\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𡤭
+ 0x2192e: "\x05\x03\x01\x01\x02\x01\x02\x01\x01\x02\x04\x01\x01\x01\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01", // 𡤮
+ 0x2192f: "\x05\x03\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 𡤯
+ 0x21930: "\x05\x03\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𡤰
+ 0x21931: "\x05\x03\x01\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 𡤱
+ 0x21932: "\x05\x03\x01\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x02\x05\x01\x01\x02\x05\x01\x05\x02\x02", // 𡤲
+ 0x21933: "\x03\x05\x02\x05\x01\x03\x05\x05\x03\x01\x03\x05\x02\x05\x01\x03\x05\x03\x05\x02\x05\x01\x03\x05", // 𡤳
+ 0x21934: "\x05\x03\x01\x01\x04\x05\x02\x04\x01\x03\x04\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01", // 𡤴
+ 0x21935: "\x05\x03\x01\x01\x02\x01\x04\x05\x01\x02\x05\x01\x04\x03\x01\x04\x01\x03\x05\x03\x04\x04\x05\x04\x04", // 𡤵
+ 0x21936: "\x05\x03\x01\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x05\x01\x05", // 𡤶
+ 0x21937: "\x05\x03\x01\x03\x01\x04\x03\x01\x04\x03\x04\x03\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 𡤷
+ 0x21938: "\x05\x03\x01\x01\x01\x01\x02\x02\x01\x01\x01\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01\x03\x05\x05\x02\x01\x05", // 𡤸
+ 0x21939: "\x05\x03\x01\x03\x05\x02\x05\x01\x03\x05\x04\x03\x05\x02\x05\x01\x03\x05\x04\x03\x05\x02\x05\x01\x03\x05\x04", // 𡤹
+ 0x2193a: "\x03\x05\x02\x05\x01\x03\x05\x04\x05\x03\x01\x03\x05\x02\x05\x01\x03\x05\x04\x03\x05\x02\x05\x01\x03\x05\x04", // 𡤺
+ 0x2193b: "\x05\x03\x01\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𡤻
+ 0x2193c: "\x05\x02\x01", // 𡤼
+ 0x2193d: "\x05\x02\x01\x01", // 𡤽
+ 0x2193e: "\x05\x02\x01\x01\x01", // 𡤾
+ 0x2193f: "\x05\x02\x01\x03\x04", // 𡤿
+ 0x21940: "\x05\x02\x01\x03\x04", // 𡥀
+ 0x21941: "\x05\x02\x01\x02\x02", // 𡥁
+ 0x21942: "\x01\x03\x05\x02\x01", // 𡥂
+ 0x21943: "\x05\x02\x01\x05\x03\x01", // 𡥃
+ 0x21944: "\x05\x02\x01\x02\x05\x01", // 𡥄
+ 0x21945: "\x01\x02\x01\x05\x02\x01", // 𡥅
+ 0x21946: "\x05\x02\x04\x01\x05\x02\x01", // 𡥆
+ 0x21947: "\x01\x02\x05\x02\x01\x03\x02", // 𡥇
+ 0x21948: "\x03\x04\x03\x04\x05\x02\x01", // 𡥈
+ 0x21949: "\x03\x04\x01\x03\x05\x02\x01", // 𡥉
+ 0x2194a: "\x05\x02\x01\x03\x01\x01\x05", // 𡥊
+ 0x2194b: "\x02\x01\x05\x03\x05\x02\x01", // 𡥋
+ 0x2194c: "\x05\x02\x01\x02\x05\x01\x01", // 𡥌
+ 0x2194d: "\x05\x04\x05\x04\x05\x02\x01", // 𡥍
+ 0x2194e: "\x02\x01\x02\x01\x01\x05\x05\x02\x01", // 𡥎
+ 0x2194f: "\x02\x05\x02\x03\x04\x01\x05\x02\x01", // 𡥏
+ 0x21950: "\x02\x05\x02\x03\x04\x05\x02\x01", // 𡥐
+ 0x21951: "\x05\x02\x01\x01\x02\x03\x04\x05", // 𡥑
+ 0x21952: "\x01\x01\x02\x03\x04\x05\x02\x01", // 𡥒
+ 0x21953: "\x05\x02\x01\x05\x05\x04\x01\x04", // 𡥓
+ 0x21954: "\x02\x05\x01\x02\x01\x05\x02\x01", // 𡥔
+ 0x21955: "\x02\x05\x01\x05\x03\x05\x02\x01", // 𡥕
+ 0x21956: "\x03\x02\x01\x05\x04\x05\x02\x01", // 𡥖
+ 0x21957: "\x05\x03\x03\x05\x04\x05\x02\x01", // 𡥗
+ 0x21958: "\x05\x05\x04\x01\x04\x05\x02\x01", // 𡥘
+ 0x21959: "\x05\x02\x01\x05\x03\x02\x05\x01", // 𡥙
+ 0x2195a: "\x05\x02\x01\x01\x02\x05\x01\x02", // 𡥚
+ 0x2195b: "\x05\x02\x01\x03\x01\x01\x02\x03\x04", // 𡥛
+ 0x2195c: "\x04\x04\x05\x05\x05\x05\x05\x02\x01", // 𡥜
+ 0x2195d: "\x05\x05\x04\x05\x05\x04\x05\x02\x01", // 𡥝
+ 0x2195e: "\x03\x04\x04\x03\x04\x05\x05\x02\x01", // 𡥞
+ 0x2195f: "\x01\x02\x05\x02\x02\x01\x05\x02\x01", // 𡥟
+ 0x21960: "\x05\x02\x01\x03\x02\x05\x02\x02\x01", // 𡥠
+ 0x21961: "\x05\x02\x01\x04\x01\x03\x04\x03\x04", // 𡥡
+ 0x21962: "\x05\x02\x01\x01\x03\x02\x04\x05\x02", // 𡥢
+ 0x21963: "\x02\x01\x02\x05\x01\x01\x05\x02\x01", // 𡥣
+ 0x21964: "\x05\x02\x01\x01\x01\x01\x02\x03\x04", // 𡥤
+ 0x21965: "\x05\x02\x01\x03\x05\x04\x03\x05\x04", // 𡥥
+ 0x21966: "\x05\x02\x01\x05\x02\x01\x05\x02\x01", // 𡥦
+ 0x21967: "\x05\x02\x01\x05\x01\x03\x04\x04\x04", // 𡥧
+ 0x21968: "\x05\x02\x01\x05\x02\x01\x02\x05\x01\x01", // 𡥨
+ 0x21969: "\x05\x02\x01\x04\x03\x05\x01\x05\x02\x03", // 𡥩
+ 0x2196a: "\x05\x02\x01\x04\x01\x01\x01\x02\x05\x01", // 𡥪
+ 0x2196b: "\x03\x04\x01\x01\x02\x05\x01\x05\x02\x01", // 𡥫
+ 0x2196c: "\x03\x01\x02\x03\x04\x02\x02\x05\x02\x01", // 𡥬
+ 0x2196d: "\x05\x02\x04\x03\x04\x04\x03\x05\x02\x01", // 𡥭
+ 0x2196e: "\x04\x01\x05\x03\x03\x01\x03\x04\x05\x02\x01", // 𡥮
+ 0x2196f: "\x04\x04\x02\x03\x05\x02\x05\x01\x05\x02\x01", // 𡥯
+ 0x21970: "\x05\x02\x01\x01\x02\x02\x05\x01\x01\x01\x01", // 𡥰
+ 0x21971: "\x05\x02\x01\x03\x05\x01\x02\x01\x02\x05\x01", // 𡥱
+ 0x21972: "\x03\x02\x01\x05\x01\x01\x03\x05\x05\x02\x01", // 𡥲
+ 0x21973: "\x02\x05\x01\x02\x02\x01\x03\x04\x05\x02\x01", // 𡥳
+ 0x21974: "\x05\x02\x01\x03\x02\x05\x01\x01\x01\x02\x01", // 𡥴
+ 0x21975: "\x05\x02\x01\x02\x05\x01\x01\x01\x05\x03\x05", // 𡥵
+ 0x21976: "\x05\x02\x01\x03\x02\x05\x01\x02\x05\x02\x01\x04", // 𡥶
+ 0x21977: "\x05\x01\x03\x05\x02\x01\x05\x01\x03\x05\x02\x01", // 𡥷
+ 0x21978: "\x05\x01\x03\x03\x01\x01\x05\x05\x03\x05\x02\x01", // 𡥸
+ 0x21979: "\x04\x01\x02\x05\x01\x05\x02\x01\x05\x01\x03\x04", // 𡥹
+ 0x2197a: "\x02\x05\x01\x03\x05\x05\x02\x02\x01\x05\x02\x01", // 𡥺
+ 0x2197b: "\x03\x01\x02\x03\x04\x04\x03\x03\x04\x05\x02\x01", // 𡥻
+ 0x2197c: "\x05\x02\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 𡥼
+ 0x2197d: "\x01\x01\x02\x03\x04\x03\x01\x03\x04\x05\x02\x01", // 𡥽
+ 0x2197e: "\x05\x02\x01\x02\x05\x01\x02\x02\x05\x02\x05\x01", // 𡥾
+ 0x2197f: "\x05\x02\x01\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𡥿
+ 0x21980: "\x05\x02\x01\x05\x02\x05\x01\x01\x03\x05\x01\x01", // 𡦀
+ 0x21981: "\x05\x05\x01\x03\x05\x03\x03\x03\x04\x05\x02\x01", // 𡦁
+ 0x21982: "\x04\x04\x05\x05\x02\x01\x04\x04\x05\x05\x02\x01", // 𡦂
+ 0x21983: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x05\x02\x01", // 𡦃
+ 0x21984: "\x03\x05\x04\x03\x05\x04\x03\x04\x04\x03\x05\x02\x01", // 𡦄
+ 0x21985: "\x05\x02\x01\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03", // 𡦅
+ 0x21986: "\x03\x02\x05\x01\x01\x03\x01\x02\x05\x03\x05\x02\x01", // 𡦆
+ 0x21987: "\x05\x02\x01\x02\x05\x01\x01\x03\x01\x03\x05\x01\x01", // 𡦇
+ 0x21988: "\x03\x04\x01\x05\x04\x05\x02\x01\x03\x03\x05\x04\x04", // 𡦈
+ 0x21989: "\x05\x02\x01\x02\x05\x01\x02\x01\x04\x04\x01\x03\x04", // 𡦉
+ 0x2198a: "\x01\x02\x01\x03\x05\x02\x01\x05\x02\x01\x05\x02\x01", // 𡦊
+ 0x2198b: "\x01\x02\x05\x01\x02\x05\x03\x01\x01\x01\x05\x02\x01", // 𡦋
+ 0x2198c: "\x05\x02\x01\x01\x02\x02\x04\x03\x01\x02\x05\x01\x01", // 𡦌
+ 0x2198d: "\x05\x02\x01\x04\x01\x03\x04\x01\x02\x02\x01\x01\x01", // 𡦍
+ 0x2198e: "\x05\x02\x01\x03\x01\x01\x05\x04\x03\x01\x02\x03\x04", // 𡦎
+ 0x2198f: "\x05\x02\x01\x05\x02\x01\x05\x02\x01\x02\x05\x01\x01", // 𡦏
+ 0x21990: "\x04\x03\x03\x04\x03\x05\x02\x05\x01\x01\x05\x02\x01", // 𡦐
+ 0x21991: "\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05\x05\x02\x01", // 𡦑
+ 0x21992: "\x05\x02\x01\x02\x05\x02\x02\x05\x01\x01\x01\x05\x01\x05", // 𡦒
+ 0x21993: "\x05\x02\x01\x02\x04\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 𡦓
+ 0x21994: "\x04\x01\x04\x03\x04\x05\x02\x05\x02\x05\x04\x05\x02\x01", // 𡦔
+ 0x21995: "\x05\x02\x01\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04", // 𡦕
+ 0x21996: "\x05\x02\x01\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04", // 𡦖
+ 0x21997: "\x05\x02\x01\x01\x02\x05\x01\x01\x02\x05\x04\x04\x04\x04", // 𡦗
+ 0x21998: "\x05\x02\x01\x01\x03\x02\x05\x02\x02\x01\x03\x02\x05\x02\x02", // 𡦘
+ 0x21999: "\x02\x05\x02\x02\x05\x02\x02\x05\x02\x04\x04\x05\x05\x02\x01", // 𡦙
+ 0x2199a: "\x04\x01\x02\x05\x01\x05\x02\x01\x01\x02\x05\x01\x02\x03\x04", // 𡦚
+ 0x2199b: "\x03\x01\x02\x01\x05\x03\x04\x04\x01\x02\x05\x01\x05\x02\x01", // 𡦛
+ 0x2199c: "\x05\x02\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𡦜
+ 0x2199d: "\x03\x05\x01\x02\x01\x02\x05\x01\x01\x02\x01\x03\x05\x02\x01", // 𡦝
+ 0x2199e: "\x05\x02\x01\x02\x01\x03\x05\x04\x05\x04\x04\x03\x01\x02\x03\x04", // 𡦞
+ 0x2199f: "\x04\x01\x02\x05\x01\x05\x02\x01\x03\x02\x05\x01\x01\x03\x01\x02", // 𡦟
+ 0x219a0: "\x03\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x05\x02\x01", // 𡦠
+ 0x219a1: "\x04\x01\x02\x05\x01\x05\x02\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 𡦡
+ 0x219a2: "\x03\x04\x04\x03\x05\x02\x01\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𡦢
+ 0x219a3: "\x02\x05\x02\x05\x02\x04\x01\x04\x03\x01\x01\x02\x05\x02\x01", // 𡦣
+ 0x219a4: "\x04\x03\x01\x02\x03\x04\x05\x03\x01\x03\x01\x03\x04\x05\x02\x01", // 𡦤
+ 0x219a5: "\x05\x01\x03\x03\x01\x01\x05\x05\x02\x01\x05\x02\x01\x05\x02\x01", // 𡦥
+ 0x219a6: "\x04\x01\x02\x02\x01\x01\x05\x02\x01\x03\x05\x04\x04\x03\x03\x04", // 𡦦
+ 0x219a7: "\x03\x01\x02\x03\x04\x05\x02\x01\x04\x01\x03\x04\x03\x04\x01\x02", // 𡦧
+ 0x219a8: "\x04\x01\x02\x05\x01\x05\x02\x01\x02\x01\x05\x03\x01\x05\x03\x05", // 𡦨
+ 0x219a9: "\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x05\x02\x01", // 𡦩
+ 0x219aa: "\x05\x02\x01\x05\x02\x01\x05\x02\x01\x05\x02\x01\x05\x02\x01\x05\x02\x01", // 𡦪
+ 0x219ab: "\x05\x02\x01\x03\x03\x01\x02\x03\x03\x01\x02\x02\x05\x01\x01\x01\x03\x04", // 𡦫
+ 0x219ac: "\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x01\x05\x02\x01", // 𡦬
+ 0x219ad: "\x03\x04\x01\x03\x05\x02\x01\x04\x01\x03\x05\x02\x02\x01\x05\x04\x04\x04\x04", // 𡦭
+ 0x219ae: "\x05\x02\x01\x01\x02\x02\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 𡦮
+ 0x219af: "\x02\x05\x02\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x05\x02\x01", // 𡦯
+ 0x219b0: "\x05\x02\x01\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x05\x02\x01", // 𡦰
+ 0x219b1: "\x04\x01\x03\x05\x02\x02\x01\x03\x05\x04\x04\x04\x04\x01\x02\x01\x03\x05\x02\x01", // 𡦱
+ 0x219b2: "\x01\x02\x01\x03\x05\x02\x01\x04\x01\x03\x05\x02\x02\x01\x01\x05\x04\x04\x04\x04", // 𡦲
+ 0x219b3: "\x01\x02\x01\x03\x05\x02\x01\x04\x01\x03\x05\x02\x02\x01\x03\x05\x04\x04\x04\x04", // 𡦳
+ 0x219b4: "\x03\x04\x03\x04\x05\x02\x01\x04\x01\x03\x05\x02\x02\x01\x03\x05\x04\x04\x04\x04", // 𡦴
+ 0x219b5: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x04\x04\x04\x04\x01\x02\x01\x03\x05\x02\x01", // 𡦵
+ 0x219b6: "\x05\x02\x01\x03\x03\x05\x04\x04\x03\x02\x05\x01\x01\x03\x05\x04\x04\x01\x02", // 𡦶
+ 0x219b7: "\x05\x02\x01\x05\x02\x01\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x05\x02\x01\x05\x02\x01", // 𡦷
+ 0x219b8: "\x03\x04\x01\x02\x05\x01\x02\x05\x02\x02\x01\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x05\x02\x01", // 𡦸
+ 0x219b9: "\x04\x03\x05\x05", // 𡦹
+ 0x219ba: "\x04\x04\x05\x05\x03", // 𡦺
+ 0x219bb: "\x04\x04\x05\x05\x05", // 𡦻
+ 0x219bc: "\x04\x04\x05\x03\x04", // 𡦼
+ 0x219bd: "\x04\x04\x05\x04\x01\x05", // 𡦽
+ 0x219be: "\x04\x04\x05\x02\x03\x05", // 𡦾
+ 0x219bf: "\x04\x04\x05\x03\x05\x01", // 𡦿
+ 0x219c0: "\x04\x04\x05\x05\x02\x05", // 𡧀
+ 0x219c1: "\x04\x04\x05\x05\x05\x01", // 𡧁
+ 0x219c2: "\x04\x04\x05\x01\x03\x05", // 𡧂
+ 0x219c3: "\x04\x04\x05\x01\x01\x02", // 𡧃
+ 0x219c4: "\x04\x04\x05\x03\x05\x04", // 𡧄
+ 0x219c5: "\x04\x04\x05\x01\x03\x02", // 𡧅
+ 0x219c6: "\x04\x04\x05\x01\x03\x05", // 𡧆
+ 0x219c7: "\x04\x04\x05\x01\x02\x01", // 𡧇
+ 0x219c8: "\x04\x04\x05\x01\x01\x05", // 𡧈
+ 0x219c9: "\x04\x04\x05\x01\x03\x05", // 𡧉
+ 0x219ca: "\x04\x04\x05\x01\x05\x03", // 𡧊
+ 0x219cb: "\x04\x04\x05\x03\x05\x05\x03", // 𡧋
+ 0x219cc: "\x04\x04\x05\x03\x05\x05\x04", // 𡧌
+ 0x219cd: "\x04\x04\x05\x01\x02\x05\x05", // 𡧍
+ 0x219ce: "\x04\x04\x05\x01\x02\x01\x05", // 𡧎
+ 0x219cf: "\x04\x04\x05\x03\x05\x01\x05", // 𡧏
+ 0x219d0: "\x04\x04\x05\x05\x01\x03\x04", // 𡧐
+ 0x219d1: "\x04\x04\x05\x05\x01\x03\x04", // 𡧑
+ 0x219d2: "\x04\x04\x05\x01\x03\x05\x04", // 𡧒
+ 0x219d3: "\x04\x04\x05\x02\x05\x01\x01", // 𡧓
+ 0x219d4: "\x04\x04\x05\x03\x05\x05\x04", // 𡧔
+ 0x219d5: "\x04\x04\x05\x05\x04\x05\x04", // 𡧕
+ 0x219d6: "\x04\x04\x05\x05\x02\x01\x03\x04", // 𡧖
+ 0x219d7: "\x04\x04\x05\x01\x05\x05\x04", // 𡧗
+ 0x219d8: "\x04\x04\x05\x01\x03\x05\x03\x03", // 𡧘
+ 0x219d9: "\x04\x04\x05\x03\x05\x03\x05\x02", // 𡧙
+ 0x219da: "\x04\x04\x05\x02\x05\x02\x05\x03", // 𡧚
+ 0x219db: "\x04\x04\x05\x03\x02\x01\x02\x04", // 𡧛
+ 0x219dc: "\x04\x04\x05\x03\x02\x03\x01\x05", // 𡧜
+ 0x219dd: "\x04\x04\x05\x05\x02\x05\x03\x04", // 𡧝
+ 0x219de: "\x04\x04\x05\x01\x03\x05\x03\x03", // 𡧞
+ 0x219df: "\x04\x04\x05\x02\x05\x01\x01\x01", // 𡧟
+ 0x219e0: "\x04\x04\x05\x01\x05\x01\x03\x04", // 𡧠
+ 0x219e1: "\x04\x04\x05\x01\x02\x01\x02\x01", // 𡧡
+ 0x219e2: "\x04\x04\x05\x01\x02\x01\x03\x04", // 𡧢
+ 0x219e3: "\x04\x04\x05\x01\x03\x02\x05\x01", // 𡧣
+ 0x219e4: "\x04\x04\x05\x01\x03\x05\x03\x03", // 𡧤
+ 0x219e5: "\x04\x04\x05\x02\x05\x01\x02\x05", // 𡧥
+ 0x219e6: "\x04\x04\x05\x03\x01\x01\x03\x04", // 𡧦
+ 0x219e7: "\x04\x04\x05\x03\x05\x04\x04\x01", // 𡧧
+ 0x219e8: "\x04\x04\x05\x02\x05\x02\x05\x02", // 𡧨
+ 0x219e9: "\x04\x04\x05\x01\x02\x01\x01\x02\x01", // 𡧩
+ 0x219ea: "\x04\x04\x05\x01\x02\x01\x03\x01\x05", // 𡧪
+ 0x219eb: "\x04\x04\x05\x03\x05\x04\x05\x04\x04", // 𡧫
+ 0x219ec: "\x04\x04\x05\x03\x04\x05\x03\x02\x05", // 𡧬
+ 0x219ed: "\x04\x04\x05\x03\x05\x01\x03\x05\x05", // 𡧭
+ 0x219ee: "\x04\x04\x05\x02\x05\x01\x01\x01\x05", // 𡧮
+ 0x219ef: "\x04\x04\x05\x02\x01\x01\x02\x03\x04", // 𡧯
+ 0x219f0: "\x04\x04\x05\x03\x01\x01\x02\x05\x02", // 𡧰
+ 0x219f1: "\x04\x04\x05\x01\x02\x01\x02\x05\x01", // 𡧱
+ 0x219f2: "\x04\x04\x05\x01\x02\x02\x05\x01\x02", // 𡧲
+ 0x219f3: "\x04\x04\x05\x01\x02\x05\x03\x05\x01", // 𡧳
+ 0x219f4: "\x04\x04\x05\x01\x03\x05\x03\x03\x04", // 𡧴
+ 0x219f5: "\x04\x04\x05\x04\x01\x05\x04\x01\x02", // 𡧵
+ 0x219f6: "\x04\x04\x05\x01\x03\x04\x02\x05\x01", // 𡧶
+ 0x219f7: "\x04\x04\x05\x05\x04\x03\x01\x01\x02", // 𡧷
+ 0x219f8: "\x04\x04\x05\x03\x05\x04\x02\x05\x02", // 𡧸
+ 0x219f9: "\x04\x04\x05\x02\x05\x01\x02\x01\x01", // 𡧹
+ 0x219fa: "\x04\x04\x05\x03\x02\x05\x01\x05\x01", // 𡧺
+ 0x219fb: "\x04\x04\x05\x03\x03\x01\x02\x05\x01", // 𡧻
+ 0x219fc: "\x04\x04\x05\x03\x04\x02\x05\x01\x01", // 𡧼
+ 0x219fd: "\x04\x04\x05\x04\x01\x05\x03\x02\x05", // 𡧽
+ 0x219fe: "\x04\x04\x05\x05\x02\x05\x02\x02\x01", // 𡧾
+ 0x219ff: "\x04\x04\x05\x05\x03\x01\x05\x03\x04", // 𡧿
+ 0x21a00: "\x04\x04\x05\x03\x04\x01\x01\x02\x03\x04", // 𡨀
+ 0x21a01: "\x04\x04\x05\x01\x02\x01\x03\x02\x03\x04", // 𡨁
+ 0x21a02: "\x04\x04\x05\x01\x02\x05\x01\x02\x05\x01", // 𡨂
+ 0x21a03: "\x04\x04\x05\x01\x02\x04\x01\x03\x04\x04", // 𡨃
+ 0x21a04: "\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04", // 𡨄
+ 0x21a05: "\x04\x04\x05\x05\x01\x03\x05\x02\x05\x01", // 𡨅
+ 0x21a06: "\x04\x04\x05\x03\x05\x04\x03\x05\x04\x01", // 𡨆
+ 0x21a07: "\x04\x04\x05\x03\x02\x05\x01\x01\x01\x05", // 𡨇
+ 0x21a08: "\x04\x04\x05\x01\x02\x05\x05\x01\x05\x01", // 𡨈
+ 0x21a09: "\x04\x04\x05\x05\x01\x03\x04\x03\x01\x05", // 𡨉
+ 0x21a0a: "\x04\x04\x05\x01\x02\x01\x04\x05\x05\x04", // 𡨊
+ 0x21a0b: "\x04\x04\x05\x02\x05\x01\x01\x01\x03\x04", // 𡨋
+ 0x21a0c: "\x04\x04\x05\x01\x02\x04\x02\x05\x01\x02", // 𡨌
+ 0x21a0d: "\x04\x04\x05\x03\x05\x01\x05\x05\x04", // 𡨍
+ 0x21a0e: "\x04\x04\x05\x04\x03\x03\x04\x01\x02\x04", // 𡨎
+ 0x21a0f: "\x04\x04\x05\x01\x02\x02\x01\x01\x03\x04", // 𡨏
+ 0x21a10: "\x04\x04\x05\x04\x03\x03\x04\x02\x05\x01", // 𡨐
+ 0x21a11: "\x04\x04\x05\x04\x05\x04\x03\x04\x05\x02", // 𡨑
+ 0x21a12: "\x04\x04\x05\x01\x01\x02\x01\x01\x03\x04", // 𡨒
+ 0x21a13: "\x04\x04\x05\x01\x02\x05\x01\x03\x02\x05", // 𡨓
+ 0x21a14: "\x04\x04\x05\x01\x03\x04\x03\x04\x01\x02", // 𡨔
+ 0x21a15: "\x04\x04\x05\x02\x05\x01\x01\x01\x03\x04", // 𡨕
+ 0x21a16: "\x04\x04\x05\x03\x01\x02\x03\x04\x02\x02", // 𡨖
+ 0x21a17: "\x04\x04\x05\x03\x02\x05\x01\x01\x01\x05", // 𡨗
+ 0x21a18: "\x04\x04\x05\x03\x02\x05\x01\x03\x05\x04", // 𡨘
+ 0x21a19: "\x04\x04\x05\x03\x04\x03\x04\x01\x02\x04", // 𡨙
+ 0x21a1a: "\x04\x04\x05\x03\x05\x02\x05\x01\x03\x05", // 𡨚
+ 0x21a1b: "\x04\x04\x05\x03\x05\x04\x01\x01\x01\x02", // 𡨛
+ 0x21a1c: "\x04\x04\x05\x04\x01\x03\x04\x04\x02\x04", // 𡨜
+ 0x21a1d: "\x04\x04\x05\x04\x03\x03\x04\x03\x05\x04", // 𡨝
+ 0x21a1e: "\x04\x04\x05\x05\x01\x01\x04\x05\x05\x04", // 𡨞
+ 0x21a1f: "\x04\x04\x05\x03\x01\x02\x01\x02\x05\x01", // 𡨟
+ 0x21a20: "\x04\x04\x05\x03\x04\x03\x04\x01\x02\x01", // 𡨠
+ 0x21a21: "\x04\x04\x05\x03\x05\x02\x05\x01\x03\x04", // 𡨡
+ 0x21a22: "\x04\x04\x05\x05\x01\x03\x01\x02\x02\x05\x01", // 𡨢
+ 0x21a23: "\x04\x04\x05\x03\x01\x02\x01\x02\x01\x05\x04", // 𡨣
+ 0x21a24: "\x04\x04\x05\x05\x04\x05\x04\x05\x04\x05\x04", // 𡨤
+ 0x21a25: "\x04\x04\x05\x01\x01\x03\x05\x03\x01\x03\x04", // 𡨥
+ 0x21a26: "\x04\x04\x05\x05\x01\x01\x04\x05\x02\x05\x02", // 𡨦
+ 0x21a27: "\x04\x04\x05\x04\x01\x03\x04\x03\x04\x01\x02", // 𡨧
+ 0x21a28: "\x04\x04\x05\x01\x03\x04\x04\x03\x03\x05\x04", // 𡨨
+ 0x21a29: "\x04\x04\x05\x03\x05\x01\x05\x02\x05\x01\x01", // 𡨩
+ 0x21a2a: "\x04\x04\x05\x04\x05\x04\x04\x03\x05\x01\x01", // 𡨪
+ 0x21a2b: "\x04\x04\x05\x04\x04\x05\x01\x01\x02\x03\x04", // 𡨫
+ 0x21a2c: "\x04\x04\x05\x05\x04\x02\x05\x02\x02\x01\x02", // 𡨬
+ 0x21a2d: "\x04\x04\x05\x01\x02\x03\x04\x03\x05\x05\x04", // 𡨭
+ 0x21a2e: "\x04\x04\x05\x01\x03\x02\x05\x01\x01\x03\x04", // 𡨮
+ 0x21a2f: "\x04\x04\x05\x03\x02\x01\x05\x01\x01\x01\x02", // 𡨯
+ 0x21a30: "\x04\x04\x05\x03\x01\x01\x01\x02\x01\x01\x01", // 𡨰
+ 0x21a31: "\x04\x04\x05\x03\x02\x01\x02\x01\x01\x02\x01", // 𡨱
+ 0x21a32: "\x04\x04\x05\x01\x01\x02\x01\x03\x05\x03\x04", // 𡨲
+ 0x21a33: "\x04\x04\x05\x01\x02\x01\x03\x03\x05\x03\x04", // 𡨳
+ 0x21a34: "\x04\x04\x05\x01\x03\x02\x05\x02\x02\x01\x02", // 𡨴
+ 0x21a35: "\x04\x04\x05\x01\x03\x04\x02\x05\x01\x01\x01", // 𡨵
+ 0x21a36: "\x04\x04\x05\x02\x05\x01\x01\x04\x03\x03\x04", // 𡨶
+ 0x21a37: "\x04\x04\x05\x03\x01\x02\x01\x03\x05\x03\x04", // 𡨷
+ 0x21a38: "\x04\x04\x05\x01\x02\x04\x04\x05\x05\x02\x01", // 𡨸
+ 0x21a39: "\x04\x04\x05\x01\x02\x04\x04\x04\x05\x01\x02", // 𡨹
+ 0x21a3a: "\x04\x04\x05\x01\x02\x04\x04\x05\x01\x02\x04", // 𡨺
+ 0x21a3b: "\x04\x04\x05\x03\x04\x04\x03\x05\x02\x01\x05", // 𡨻
+ 0x21a3c: "\x04\x04\x05\x04\x03\x03\x04\x04\x03\x03\x04", // 𡨼
+ 0x21a3d: "\x04\x04\x05\x02\x03\x04\x03\x02\x05\x01\x01\x01", // 𡨽
+ 0x21a3e: "\x04\x04\x05\x01\x02\x05\x02\x02\x01\x01\x02\x01", // 𡨾
+ 0x21a3f: "\x04\x04\x05\x03\x02\x05\x03\x04\x04\x03\x03\x04", // 𡨿
+ 0x21a40: "\x04\x04\x05\x05\x05\x01\x03\x05\x03\x03\x03\x04", // 𡩀
+ 0x21a41: "\x04\x04\x05\x04\x01\x04\x03\x01\x01\x02\x03\x04", // 𡩁
+ 0x21a42: "\x04\x04\x05\x01\x03\x02\x05\x02\x02\x01\x03\x04", // 𡩂
+ 0x21a43: "\x04\x04\x05\x04\x04\x02\x01\x02\x05\x04\x04\x01", // 𡩃
+ 0x21a44: "\x04\x04\x05\x03\x05\x02\x05\x01\x03\x05\x05\x03", // 𡩄
+ 0x21a45: "\x04\x04\x05\x04\x01\x04\x03\x01\x03\x05\x02\x05\x02", // 𡩅
+ 0x21a46: "\x01\x02\x05\x01\x02\x03\x04\x04\x04\x05\x03\x05", // 𡩆
+ 0x21a47: "\x04\x04\x05\x02\x05\x01\x01\x01\x05\x03\x02\x05", // 𡩇
+ 0x21a48: "\x04\x04\x05\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 𡩈
+ 0x21a49: "\x04\x04\x05\x04\x05\x04\x04\x02\x05\x01\x01\x01", // 𡩉
+ 0x21a4a: "\x04\x04\x05\x05\x02\x01\x02\x05\x03\x04\x05", // 𡩊
+ 0x21a4b: "\x04\x04\x05\x04\x05\x04\x04\x02\x05\x02\x01\x01", // 𡩋
+ 0x21a4c: "\x04\x04\x05\x05\x01\x01\x01\x01\x02\x05\x04", // 𡩌
+ 0x21a4d: "\x04\x04\x05\x05\x03\x01\x03\x05\x05\x03\x04", // 𡩍
+ 0x21a4e: "\x04\x04\x05\x04\x05\x04\x03\x04\x01\x02\x03\x04", // 𡩎
+ 0x21a4f: "\x04\x04\x05\x05\x02\x01\x03\x02\x05\x01\x01\x01", // 𡩏
+ 0x21a50: "\x04\x04\x05\x03\x01\x02\x01\x02\x05\x01\x02\x01", // 𡩐
+ 0x21a51: "\x04\x04\x05\x02\x05\x02\x02\x01\x03\x05\x03\x04", // 𡩑
+ 0x21a52: "\x04\x04\x05\x03\x01\x01\x03\x02\x05\x01\x01\x01", // 𡩒
+ 0x21a53: "\x04\x04\x05\x03\x05\x04\x02\x05\x01\x02\x01\x04", // 𡩓
+ 0x21a54: "\x04\x04\x05\x03\x02\x01\x05\x01\x01\x01\x03\x04", // 𡩔
+ 0x21a55: "\x04\x04\x05\x04\x02\x05\x01\x01\x01\x02\x03\x04", // 𡩕
+ 0x21a56: "\x04\x04\x05\x01\x02\x02\x05\x01\x01\x01\x03\x05", // 𡩖
+ 0x21a57: "\x04\x04\x05\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 𡩗
+ 0x21a58: "\x04\x04\x05\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 𡩘
+ 0x21a59: "\x04\x04\x05\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 𡩙
+ 0x21a5a: "\x04\x04\x05\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 𡩚
+ 0x21a5b: "\x04\x04\x05\x05\x03\x01\x01\x03\x02\x05\x01\x01", // 𡩛
+ 0x21a5c: "\x04\x04\x05\x01\x01\x02\x01\x02\x05\x02\x02\x01", // 𡩜
+ 0x21a5d: "\x04\x04\x05\x01\x02\x05\x04\x05\x04\x05\x01\x01", // 𡩝
+ 0x21a5e: "\x04\x04\x05\x03\x05\x05\x04\x01\x02\x01\x02\x01", // 𡩞
+ 0x21a5f: "\x04\x04\x05\x01\x03\x02\x01\x01\x05\x01\x01\x03\x04", // 𡩟
+ 0x21a60: "\x04\x04\x05\x05\x01\x01\x04\x05\x02\x05\x02\x05\x04", // 𡩠
+ 0x21a61: "\x04\x04\x05\x01\x02\x04\x05\x05\x05\x04\x02\x03\x04", // 𡩡
+ 0x21a62: "\x04\x04\x05\x03\x02\x02\x03\x05\x04\x01\x02\x03\x04", // 𡩢
+ 0x21a63: "\x04\x04\x05\x03\x05\x04\x01\x05\x02\x01\x02\x03\x04", // 𡩣
+ 0x21a64: "\x04\x04\x05\x03\x02\x01\x02\x02\x01\x02\x05\x01\x01", // 𡩤
+ 0x21a65: "\x04\x04\x05\x03\x04\x05\x04\x05\x04\x01\x05\x04\x01", // 𡩥
+ 0x21a66: "\x04\x04\x05\x01\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 𡩦
+ 0x21a67: "\x04\x04\x05\x01\x01\x02\x01\x03\x01\x01\x02\x05\x02", // 𡩧
+ 0x21a68: "\x04\x04\x05\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01", // 𡩨
+ 0x21a69: "\x04\x04\x05\x05\x02\x01\x03\x04\x01\x05\x02\x05\x01", // 𡩩
+ 0x21a6a: "\x04\x04\x05\x01\x02\x05\x01\x02\x05\x01\x02\x03\x04", // 𡩪
+ 0x21a6b: "\x04\x04\x05\x05\x01\x01\x03\x02\x05\x01\x05\x02", // 𡩫
+ 0x21a6c: "\x04\x04\x05\x04\x05\x04\x04\x02\x05\x02\x02\x01\x01", // 𡩬
+ 0x21a6d: "\x04\x04\x05\x03\x04\x03\x01\x02\x03\x04\x01\x01\x05", // 𡩭
+ 0x21a6e: "\x04\x04\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 𡩮
+ 0x21a6f: "\x04\x04\x05\x01\x03\x04\x04\x03\x02\x05\x01\x01\x05", // 𡩯
+ 0x21a70: "\x04\x04\x05\x01\x01\x02\x03\x04\x03\x05\x03\x05\x02", // 𡩰
+ 0x21a71: "\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x01\x01\x05", // 𡩱
+ 0x21a72: "\x04\x04\x05\x02\x05\x02\x02\x01\x01\x03\x05\x03\x04", // 𡩲
+ 0x21a73: "\x04\x04\x05\x02\x05\x01\x01\x01\x03\x04\x01\x02\x01", // 𡩳
+ 0x21a74: "\x04\x04\x05\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02", // 𡩴
+ 0x21a75: "\x04\x04\x05\x01\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 𡩵
+ 0x21a76: "\x04\x04\x05\x02\x05\x01\x01\x01\x02\x05\x01\x03\x04", // 𡩶
+ 0x21a77: "\x04\x04\x05\x02\x05\x01\x01\x04\x04\x05\x05\x03\x01", // 𡩷
+ 0x21a78: "\x04\x04\x05\x03\x01\x02\x03\x04\x02\x05\x01\x01\x05", // 𡩸
+ 0x21a79: "\x04\x04\x05\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01", // 𡩹
+ 0x21a7a: "\x04\x04\x05\x04\x04\x02\x01\x02\x05\x01\x02\x05\x01", // 𡩺
+ 0x21a7b: "\x04\x04\x05\x04\x04\x01\x05\x01\x01\x04\x05\x02\x05\x02", // 𡩻
+ 0x21a7c: "\x04\x04\x05\x01\x02\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 𡩼
+ 0x21a7d: "\x04\x04\x05\x05\x02\x01\x03\x01\x03\x05\x03\x03\x03\x04", // 𡩽
+ 0x21a7e: "\x04\x04\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 𡩾
+ 0x21a7f: "\x04\x04\x05\x05\x04\x05\x04\x05\x04\x05\x04\x01\x02\x01", // 𡩿
+ 0x21a80: "\x04\x04\x05\x03\x05\x04\x01\x04\x04\x05\x03\x05\x04\x01", // 𡪀
+ 0x21a81: "\x04\x04\x05\x05\x02\x01\x03\x03\x04\x01\x05\x02\x05\x01", // 𡪁
+ 0x21a82: "\x04\x04\x05\x03\x05\x04\x02\x05\x01\x01\x02\x01\x01", // 𡪂
+ 0x21a83: "\x04\x04\x05\x03\x04\x03\x01\x02\x03\x04\x01\x03\x01\x02", // 𡪃
+ 0x21a84: "\x04\x04\x05\x01\x02\x01\x02\x01\x03\x02\x05\x01\x01\x04", // 𡪄
+ 0x21a85: "\x04\x04\x05\x01\x02\x02\x01\x01\x01\x05\x04\x05\x02", // 𡪅
+ 0x21a86: "\x04\x04\x05\x04\x05\x04\x03\x04\x03\x02\x05\x01\x01\x01\x05", // 𡪆
+ 0x21a87: "\x04\x04\x05\x01\x02\x03\x02\x02\x03\x05\x04\x03\x03\x03", // 𡪇
+ 0x21a88: "\x04\x04\x05\x01\x02\x02\x01\x01\x01\x03\x04\x01\x02\x01", // 𡪈
+ 0x21a89: "\x04\x04\x05\x01\x02\x02\x01\x01\x01\x03\x05\x03\x05\x02", // 𡪉
+ 0x21a8a: "\x04\x04\x05\x02\x05\x01\x02\x02\x01\x01\x03\x05\x03\x04", // 𡪊
+ 0x21a8b: "\x04\x04\x05\x03\x04\x03\x04\x03\x04\x03\x04\x05\x03\x01", // 𡪋
+ 0x21a8c: "\x04\x04\x05\x01\x02\x01\x03\x05\x03\x04\x02\x01\x05\x04", // 𡪌
+ 0x21a8d: "\x04\x04\x05\x01\x02\x02\x05\x01\x01\x01\x04\x04\x04\x04", // 𡪍
+ 0x21a8e: "\x04\x04\x05\x01\x02\x03\x04\x01\x02\x03\x04\x03\x05\x04", // 𡪎
+ 0x21a8f: "\x04\x04\x05\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01", // 𡪏
+ 0x21a90: "\x04\x04\x05\x01\x03\x04\x04\x03\x01\x01\x02\x03\x05\x04", // 𡪐
+ 0x21a91: "\x04\x04\x05\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x05", // 𡪑
+ 0x21a92: "\x04\x04\x05\x02\x05\x02\x02\x05\x02\x02\x05\x01\x02\x01", // 𡪒
+ 0x21a93: "\x04\x04\x05\x03\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𡪓
+ 0x21a94: "\x04\x04\x05\x04\x01\x04\x03\x01\x01\x02\x01\x02\x03\x04", // 𡪔
+ 0x21a95: "\x04\x04\x05\x04\x05\x04\x04\x02\x05\x01\x02\x05\x01\x01", // 𡪕
+ 0x21a96: "\x04\x04\x05\x04\x05\x04\x03\x04\x03\x02\x05\x02\x02\x01", // 𡪖
+ 0x21a97: "\x04\x04\x05\x05\x02\x01\x03\x01\x03\x04\x01\x02\x05\x01", // 𡪗
+ 0x21a98: "\x04\x04\x05\x05\x02\x01\x03\x03\x04\x03\x01\x02\x03\x04", // 𡪘
+ 0x21a99: "\x04\x04\x05\x05\x03\x01\x02\x05\x01\x01\x03\x05\x01\x01", // 𡪙
+ 0x21a9a: "\x04\x04\x05\x05\x04\x05\x04\x05\x04\x05\x04\x05\x03\x01", // 𡪚
+ 0x21a9b: "\x04\x04\x05\x01\x02\x05\x05\x02\x05\x01\x01\x01\x03\x04", // 𡪛
+ 0x21a9c: "\x04\x04\x05\x04\x04\x01\x04\x05\x03\x04\x01\x02\x03\x04", // 𡪜
+ 0x21a9d: "\x04\x04\x05\x02\x01\x02\x05\x05\x02\x05\x02\x05\x01", // 𡪝
+ 0x21a9e: "\x04\x04\x05\x03\x05\x04\x02\x05\x01\x05\x04\x02\x05\x01", // 𡪞
+ 0x21a9f: "\x04\x04\x05\x04\x04\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 𡪟
+ 0x21aa0: "\x04\x04\x05\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𡪠
+ 0x21aa1: "\x04\x04\x05\x01\x02\x01\x02\x02\x03\x04\x03\x05\x03\x04", // 𡪡
+ 0x21aa2: "\x04\x04\x05\x03\x02\x05\x01\x01\x03\x05\x02\x05\x02\x05\x04", // 𡪢
+ 0x21aa3: "\x04\x04\x05\x03\x01\x01\x05\x03\x01\x01\x05\x03\x01\x01\x05", // 𡪣
+ 0x21aa4: "\x04\x04\x05\x01\x02\x01\x02\x01\x01\x02\x01\x02\x01\x01\x02", // 𡪤
+ 0x21aa5: "\x04\x04\x05\x04\x05\x04\x04\x02\x01\x02\x05\x01\x01\x03\x05", // 𡪥
+ 0x21aa6: "\x04\x04\x05\x04\x04\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 𡪦
+ 0x21aa7: "\x04\x04\x05\x05\x04\x05\x04\x05\x04\x05\x04\x01\x02\x03\x04", // 𡪧
+ 0x21aa8: "\x04\x04\x05\x01\x02\x02\x02\x05\x01\x01\x01\x03\x05\x05\x04", // 𡪨
+ 0x21aa9: "\x04\x04\x05\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 𡪩
+ 0x21aaa: "\x04\x04\x05\x01\x01\x02\x01\x03\x05\x02\x03\x04\x01\x03\x04", // 𡪪
+ 0x21aab: "\x04\x04\x05\x01\x02\x01\x02\x05\x01\x01\x02\x05\x01\x01\x05", // 𡪫
+ 0x21aac: "\x04\x04\x05\x01\x02\x02\x01\x01\x01\x03\x05\x04\x05\x02", // 𡪬
+ 0x21aad: "\x04\x04\x05\x02\x05\x01\x04\x01\x02\x05\x01\x03\x05\x03\x04", // 𡪭
+ 0x21aae: "\x04\x04\x05\x03\x05\x01\x03\x01\x01\x05\x03\x04\x01\x03\x02", // 𡪮
+ 0x21aaf: "\x04\x04\x05\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 𡪯
+ 0x21ab0: "\x04\x04\x05\x01\x02\x01\x03\x01\x05\x01\x02\x01\x03\x03\x05", // 𡪰
+ 0x21ab1: "\x04\x04\x05\x01\x03\x04\x04\x01\x03\x04\x04\x01\x03\x04\x04", // 𡪱
+ 0x21ab2: "\x04\x04\x05\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𡪲
+ 0x21ab3: "\x04\x04\x05\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𡪳
+ 0x21ab4: "\x04\x04\x05\x03\x02\x01\x03\x02\x05\x01\x01\x04\x01\x03\x04", // 𡪴
+ 0x21ab5: "\x04\x04\x05\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x05\x04", // 𡪵
+ 0x21ab6: "\x04\x04\x05\x05\x02\x01\x03\x04\x03\x03\x04\x04\x03\x03\x04", // 𡪶
+ 0x21ab7: "\x04\x04\x05\x05\x02\x01\x03\x05\x02\x01\x04\x05\x02\x05\x02", // 𡪷
+ 0x21ab8: "\x04\x04\x05\x05\x03\x01\x01\x03\x02\x05\x01\x01\x02\x01\x01", // 𡪸
+ 0x21ab9: "\x04\x04\x05\x05\x04\x01\x05\x04\x01\x03\x04\x02\x04\x04\x04", // 𡪹
+ 0x21aba: "\x04\x04\x05\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 𡪺
+ 0x21abb: "\x04\x04\x05\x02\x05\x01\x01\x05\x03\x01\x01\x02\x02\x05\x01", // 𡪻
+ 0x21abc: "\x04\x04\x05\x04\x01\x03\x05\x01\x01\x04\x03\x01\x02\x03\x04", // 𡪼
+ 0x21abd: "\x04\x04\x05\x03\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𡪽
+ 0x21abe: "\x04\x04\x05\x02\x05\x01\x01\x02\x05\x02\x01\x04\x04\x05\x04\x04", // 𡪾
+ 0x21abf: "\x04\x04\x05\x03\x02\x05\x03\x04\x03\x01\x02\x03\x04\x01\x03\x04", // 𡪿
+ 0x21ac0: "\x04\x04\x05\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x03\x04", // 𡫀
+ 0x21ac1: "\x04\x04\x05\x02\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𡫁
+ 0x21ac2: "\x04\x04\x05\x05\x05\x04\x04\x04\x04\x02\x05\x01\x03\x05\x04\x01", // 𡫂
+ 0x21ac3: "\x04\x04\x05\x04\x05\x04\x04\x02\x05\x02\x02\x01\x01\x01\x03\x04", // 𡫃
+ 0x21ac4: "\x04\x04\x05\x03\x05\x02\x05\x01\x01\x01\x03\x04\x03\x01\x03\x04", // 𡫄
+ 0x21ac5: "\x04\x04\x05\x01\x01\x03\x05\x02\x05\x01\x01\x01\x04\x03\x03\x04", // 𡫅
+ 0x21ac6: "\x04\x04\x05\x01\x02\x03\x04\x03\x04\x01\x02\x05\x02\x05\x01\x01", // 𡫆
+ 0x21ac7: "\x04\x04\x05\x04\x05\x04\x04\x02\x05\x02\x02\x01\x04\x05\x04\x04", // 𡫇
+ 0x21ac8: "\x04\x04\x05\x01\x02\x05\x02\x02\x01\x01\x02\x01\x01\x03\x04\x04", // 𡫈
+ 0x21ac9: "\x04\x04\x05\x01\x02\x01\x02\x02\x01\x01\x01\x01\x02\x01\x05\x04", // 𡫉
+ 0x21aca: "\x04\x04\x05\x01\x02\x05\x02\x02\x01\x04\x01\x04\x03\x01\x01\x02", // 𡫊
+ 0x21acb: "\x04\x04\x05\x02\x05\x01\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01", // 𡫋
+ 0x21acc: "\x04\x04\x05\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x04\x05\x03", // 𡫌
+ 0x21acd: "\x04\x04\x05\x04\x05\x04\x04\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 𡫍
+ 0x21ace: "\x04\x04\x05\x03\x02\x05\x01\x01\x01\x02\x03\x04\x03\x01\x03\x04", // 𡫎
+ 0x21acf: "\x04\x04\x05\x04\x04\x01\x05\x01\x01\x04\x05\x02\x05\x02\x05\x04", // 𡫏
+ 0x21ad0: "\x04\x04\x05\x04\x01\x04\x03\x01\x03\x05\x01\x01\x02\x02\x03\x04", // 𡫐
+ 0x21ad1: "\x04\x04\x05\x01\x02\x01\x03\x04\x01\x02\x01\x03\x05\x04\x01\x02\x01", // 𡫑
+ 0x21ad2: "\x04\x04\x05\x05\x02\x01\x03\x05\x01\x01\x04\x05\x02\x05\x02\x05\x04", // 𡫒
+ 0x21ad3: "\x04\x04\x05\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04\x01\x02\x01", // 𡫓
+ 0x21ad4: "\x04\x04\x05\x05\x02\x01\x03\x05\x01\x01\x04\x05\x02\x05\x01\x01\x01", // 𡫔
+ 0x21ad5: "\x04\x04\x05\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𡫕
+ 0x21ad6: "\x04\x04\x05\x02\x05\x02\x02\x01\x01\x02\x05\x01\x01\x03\x05\x03\x04", // 𡫖
+ 0x21ad7: "\x04\x04\x05\x02\x01\x01\x01\x02\x01\x01\x01\x03\x04\x01\x02\x03\x04", // 𡫗
+ 0x21ad8: "\x04\x04\x05\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x05\x03", // 𡫘
+ 0x21ad9: "\x04\x04\x05\x01\x02\x01\x01\x02\x01\x03\x04\x03\x04\x05\x04\x05\x04", // 𡫙
+ 0x21ada: "\x04\x04\x05\x01\x02\x05\x02\x02\x01\x01\x02\x01\x01\x01\x02\x03\x04", // 𡫚
+ 0x21adb: "\x04\x04\x05\x03\x02\x05\x01\x01\x01\x04\x05\x03\x05\x02\x05\x02\x05", // 𡫛
+ 0x21adc: "\x04\x04\x05\x01\x02\x02\x03\x04\x01\x02\x02\x03\x04\x03\x04", // 𡫜
+ 0x21add: "\x04\x04\x05\x01\x02\x03\x04\x01\x03\x04\x04\x03\x02\x05\x01\x01\x01", // 𡫝
+ 0x21ade: "\x04\x04\x05\x02\x05\x01\x02\x01\x02\x01\x03\x04\x01\x03\x05\x01\x01\x05\x05", // 𡫞
+ 0x21adf: "\x04\x04\x05\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x04", // 𡫟
+ 0x21ae0: "\x04\x04\x05\x03\x03\x02\x01\x05\x04\x03\x05\x04\x01\x03\x01\x03\x04", // 𡫠
+ 0x21ae1: "\x04\x04\x05\x03\x01\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01", // 𡫡
+ 0x21ae2: "\x04\x04\x05\x03\x01\x01\x02\x03\x04\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𡫢
+ 0x21ae3: "\x04\x04\x05\x01\x02\x05\x01\x01\x02\x04\x04\x01\x05\x03\x03\x01\x03\x04", // 𡫣
+ 0x21ae4: "\x04\x04\x05\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 𡫤
+ 0x21ae5: "\x04\x04\x05\x03\x05\x04\x02\x05\x01\x04\x04\x05\x03\x05\x04\x02\x05\x01", // 𡫥
+ 0x21ae6: "\x04\x04\x05\x03\x05\x04\x05\x05\x01\x03\x01\x01\x05\x03\x04\x01\x02\x04", // 𡫦
+ 0x21ae7: "\x04\x04\x05\x05\x02\x01\x03\x01\x05\x01\x01\x04\x05\x02\x05\x01\x01\x01", // 𡫧
+ 0x21ae8: "\x04\x04\x05\x04\x05\x04\x03\x04\x02\x05\x02\x02\x05\x01\x01\x01\x03\x05", // 𡫨
+ 0x21ae9: "\x04\x04\x05\x05\x01\x01\x05\x01\x01\x05\x01\x01\x05\x01\x01\x01\x03\x04", // 𡫩
+ 0x21aea: "\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x04\x01\x03\x02\x02\x01\x05\x04", // 𡫪
+ 0x21aeb: "\x04\x01\x03\x04\x02\x05\x01\x04\x04\x05\x01\x02\x05\x01\x02\x01\x03\x04", // 𡫫
+ 0x21aec: "\x04\x04\x05\x03\x01\x04\x03\x01\x04\x01\x02\x01\x04\x03\x01\x01\x02\x03\x04", // 𡫬
+ 0x21aed: "\x04\x04\x05\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04\x03\x01\x02\x03\x04", // 𡫭
+ 0x21aee: "\x04\x04\x05\x01\x02\x01\x01\x02\x01\x03\x05\x04\x03\x03\x04\x03\x04\x03\x04", // 𡫮
+ 0x21aef: "\x04\x04\x05\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 𡫯
+ 0x21af0: "\x04\x04\x05\x01\x03\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𡫰
+ 0x21af1: "\x04\x04\x05\x01\x03\x02\x05\x01\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 𡫱
+ 0x21af2: "\x04\x04\x05\x03\x01\x02\x01\x02\x05\x01\x04\x04\x05\x03\x05\x04\x02\x05\x01", // 𡫲
+ 0x21af3: "\x04\x04\x05\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x01\x02", // 𡫳
+ 0x21af4: "\x04\x04\x05\x01\x01\x01\x02\x02\x05\x01\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 𡫴
+ 0x21af5: "\x04\x04\x05\x04\x01\x03\x05\x03\x04\x02\x05\x02\x02\x01\x03\x01\x02\x03\x04", // 𡫵
+ 0x21af6: "\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x04\x04\x01\x01\x02\x01\x01\x03\x02", // 𡫶
+ 0x21af7: "\x04\x04\x05\x01\x01\x02\x01\x03\x05\x02\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𡫷
+ 0x21af8: "\x04\x04\x05\x04\x05\x04\x04\x02\x05\x02\x02\x01\x01\x02\x01\x02\x01\x02\x05\x01", // 𡫸
+ 0x21af9: "\x04\x04\x05\x04\x05\x04\x03\x04\x05\x02\x03\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 𡫹
+ 0x21afa: "\x04\x04\x05\x05\x02\x01\x03\x01\x02\x02\x02\x05\x02\x02\x01\x04\x05\x05\x04", // 𡫺
+ 0x21afb: "\x04\x04\x05\x05\x01\x05\x02\x05\x03\x03\x04\x01\x01\x02\x01\x01\x01\x02\x03\x04", // 𡫻
+ 0x21afc: "\x04\x04\x05\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x04\x01\x02\x01", // 𡫼
+ 0x21afd: "\x04\x04\x05\x05\x02\x01\x03\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x05\x03\x01", // 𡫽
+ 0x21afe: "\x04\x04\x05\x05\x02\x03\x05\x02\x03\x05\x04\x03\x04\x03\x04\x05\x02\x03\x05\x02\x03", // 𡫾
+ 0x21aff: "\x04\x04\x05\x01\x01\x02\x01\x03\x01\x01\x02\x05\x02\x03\x04\x01\x01\x02\x04\x03\x01", // 𡫿
+ 0x21b00: "\x04\x04\x05\x01\x01\x02\x01\x04\x04\x05\x01\x01\x02\x01\x04\x04\x05\x01\x01\x02\x01", // 𡬀
+ 0x21b01: "\x04\x04\x05\x01\x02\x01\x03\x03\x05\x01\x02\x01\x03\x03\x05\x01\x02\x01\x03\x03\x05", // 𡬁
+ 0x21b02: "\x04\x04\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x02\x02", // 𡬂
+ 0x21b03: "\x04\x04\x05\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05", // 𡬃
+ 0x21b04: "\x04\x04\x05\x05\x02\x01\x03\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x02\x05\x03\x04", // 𡬄
+ 0x21b05: "\x04\x04\x05\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𡬅
+ 0x21b06: "\x04\x04\x05\x04\x04\x02\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x02\x05\x01\x01\x01", // 𡬆
+ 0x21b07: "\x04\x04\x05\x05\x02\x01\x03\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x01\x03\x02\x04", // 𡬇
+ 0x21b08: "\x04\x04\x05\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01\x01\x01\x01\x02\x04", // 𡬈
+ 0x21b09: "\x03\x03\x01\x02\x02\x05\x01\x01\x01\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x01\x02\x01", // 𡬉
+ 0x21b0a: "\x04\x04\x05\x05\x02\x01\x03\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x03\x01\x03\x04", // 𡬊
+ 0x21b0b: "\x04\x04\x05\x05\x02\x01\x03\x03\x05\x02\x05\x02\x02\x01\x04\x05\x01\x02\x01\x02\x05\x01", // 𡬋
+ 0x21b0c: "\x04\x04\x05\x05\x02\x01\x03\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x02\x05\x01\x01\x01", // 𡬌
+ 0x21b0d: "\x04\x04\x05\x05\x02\x01\x03\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x04\x03\x01\x02\x03\x04", // 𡬍
+ 0x21b0e: "\x04\x04\x05\x04\x03\x01\x01\x01\x03\x05\x04\x03\x01\x01\x01\x03\x05\x04\x03\x01\x01\x01\x03\x05", // 𡬎
+ 0x21b0f: "\x04\x04\x05\x01\x01\x02\x01\x04\x04\x04\x05\x01\x01\x02\x01\x04\x04\x04\x05\x01\x01\x02\x01\x04", // 𡬏
+ 0x21b10: "\x04\x04\x05\x02\x05\x01\x01\x01\x04\x04\x05\x02\x05\x01\x01\x01\x04\x04\x05\x02\x05\x01\x01\x01", // 𡬐
+ 0x21b11: "\x04\x04\x05\x05\x02\x01\x03\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x01\x02\x05\x01\x02\x05\x01", // 𡬑
+ 0x21b12: "\x04\x04\x05\x05\x02\x01\x03\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x03\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 𡬒
+ 0x21b13: "\x04\x04\x05\x05\x02\x01\x03\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x05\x01\x01\x04\x05\x05\x04", // 𡬓
+ 0x21b14: "\x04\x04\x05\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𡬔
+ 0x21b15: "\x04\x04\x05\x04\x05\x04\x04\x01\x02\x01\x03\x03\x05\x01\x02\x01\x03\x03\x05\x01\x02\x01\x03\x03\x05", // 𡬕
+ 0x21b16: "\x04\x04\x05\x05\x02\x01\x03\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x04\x03\x03\x04\x04\x03\x03\x04", // 𡬖
+ 0x21b17: "\x04\x04\x05\x04\x05\x04\x04\x02\x05\x02\x02\x01\x01\x02\x01\x02\x01\x04\x05\x01\x02\x05\x01\x04\x03\x01", // 𡬗
+ 0x21b18: "\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03\x04\x04\x05\x02\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05\x04", // 𡬘
+ 0x21b19: "\x04\x04\x05\x05\x02\x01\x03\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x02\x05\x01\x01\x01\x03\x04\x02\x02", // 𡬙
+ 0x21b1a: "\x04\x04\x05\x03\x05\x04\x02\x05\x01\x04\x04\x05\x03\x05\x04\x02\x05\x01\x04\x04\x05\x03\x05\x04\x02\x05\x01", // 𡬚
+ 0x21b1b: "\x04\x04\x05\x04\x05\x04\x04\x04\x01\x04\x03\x01\x02\x05\x01\x02\x01\x04\x04\x01\x04\x03\x01\x02\x05\x01\x02\x01\x04", // 𡬛
+ 0x21b1c: "\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x04\x04\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x04\x04\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x04\x04", // 𡬜
+ 0x21b1d: "\x01\x02\x02\x04", // 𡬝
+ 0x21b1e: "\x05\x05\x05\x01\x02\x04", // 𡬞
+ 0x21b1f: "\x03\x01\x02\x03\x04\x01\x02\x04", // 𡬟
+ 0x21b20: "\x05\x01\x01\x05\x04\x01\x02\x04", // 𡬠
+ 0x21b21: "\x01\x05\x01\x05\x01\x02\x04", // 𡬡
+ 0x21b22: "\x05\x04\x05\x02\x03\x01\x02\x04", // 𡬢
+ 0x21b23: "\x02\x05\x01\x03\x05\x01\x02\x04", // 𡬣
+ 0x21b24: "\x02\x05\x01\x01\x02\x01\x02\x04", // 𡬤
+ 0x21b25: "\x02\x05\x02\x01\x01\x01\x02\x04", // 𡬥
+ 0x21b26: "\x03\x04\x01\x02\x01\x01\x02\x04", // 𡬦
+ 0x21b27: "\x02\x01\x01\x02\x03\x04\x01\x02\x04", // 𡬧
+ 0x21b28: "\x01\x01\x01\x02\x05\x03\x01\x02\x04", // 𡬨
+ 0x21b29: "\x02\x05\x01\x01\x03\x05\x01\x02\x04", // 𡬩
+ 0x21b2a: "\x03\x02\x05\x02\x02\x01\x01\x02\x04", // 𡬪
+ 0x21b2b: "\x03\x03\x05\x04\x01\x04\x01\x02\x04", // 𡬫
+ 0x21b2c: "\x02\x05\x02\x02\x01\x01\x01\x02\x04", // 𡬬
+ 0x21b2d: "\x01\x02\x05\x01\x02\x02\x01\x01\x02\x04", // 𡬭
+ 0x21b2e: "\x04\x04\x05\x02\x05\x01\x05\x01\x01\x02\x04", // 𡬮
+ 0x21b2f: "\x03\x02\x01\x01\x02\x05\x01\x01\x01\x02\x04", // 𡬯
+ 0x21b30: "\x03\x05\x01\x01\x01\x02\x04\x05\x01\x03\x04", // 𡬰
+ 0x21b31: "\x04\x01\x02\x05\x01\x02\x03\x04\x01\x02\x04", // 𡬱
+ 0x21b32: "\x05\x05\x05\x02\x05\x01\x01\x01\x01\x02\x04", // 𡬲
+ 0x21b33: "\x03\x04\x04\x03\x02\x05\x02\x02\x01\x01\x02\x04", // 𡬳
+ 0x21b34: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x04", // 𡬴
+ 0x21b35: "\x01\x02\x05\x02\x02\x01\x01\x02\x01\x01\x02\x04", // 𡬵
+ 0x21b36: "\x05\x01\x01\x01\x02\x01\x03\x05\x04\x01\x02\x04", // 𡬶
+ 0x21b37: "\x02\x05\x01\x01\x01\x03\x04\x02\x02\x01\x02\x04", // 𡬷
+ 0x21b38: "\x05\x05\x05\x03\x02\x01\x05\x01\x01\x01\x02\x04", // 𡬸
+ 0x21b39: "\x05\x05\x05\x01\x03\x02\x05\x01\x01\x01\x01\x02\x04", // 𡬹
+ 0x21b3a: "\x02\x05\x02\x02\x01\x01\x02\x01\x02\x01\x01\x02\x04", // 𡬺
+ 0x21b3b: "\x02\x05\x03\x04\x03\x04\x05\x01\x03\x04\x01\x02\x04", // 𡬻
+ 0x21b3c: "\x02\x05\x04\x03\x01\x02\x05\x02\x02\x02\x01\x02\x04", // 𡬼
+ 0x21b3d: "\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04\x01\x02\x04", // 𡬽
+ 0x21b3e: "\x01\x02\x03\x04\x01\x02\x05\x01\x04\x03\x01\x01\x02\x04", // 𡬾
+ 0x21b3f: "\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05\x01\x02\x04", // 𡬿
+ 0x21b40: "\x02\x05\x02\x02\x01\x01\x02\x01\x01\x02\x01\x01\x02\x04", // 𡭀
+ 0x21b41: "\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03\x01\x02\x04", // 𡭁
+ 0x21b42: "\x01\x02\x05\x02\x03\x04\x02\x05\x01\x01\x01\x01\x02\x04", // 𡭂
+ 0x21b43: "\x01\x02\x05\x03\x04\x01\x03\x01\x01\x05\x03\x04\x01\x02\x04", // 𡭃
+ 0x21b44: "\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05\x01\x02\x04", // 𡭄
+ 0x21b45: "\x04\x01\x02\x05\x01\x05\x02\x01\x03\x05\x05\x03\x01\x02\x04", // 𡭅
+ 0x21b46: "\x01\x02\x01\x02\x02\x05\x01\x01\x02\x02\x01\x01\x01\x02\x04", // 𡭆
+ 0x21b47: "\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04\x02\x05\x03\x04", // 𡭇
+ 0x21b48: "\x02\x05\x01\x02\x05\x01\x01\x02\x01\x01\x02\x01\x01\x02\x04", // 𡭈
+ 0x21b49: "\x04\x03\x01\x01\x02\x03\x02\x05\x01\x01\x01\x03\x01\x02\x04", // 𡭉
+ 0x21b4a: "\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x02\x05\x01\x01\x02\x04", // 𡭊
+ 0x21b4b: "\x01\x02\x05\x03\x04\x01\x01\x03\x01\x01\x05\x03\x04\x01\x02\x04", // 𡭋
+ 0x21b4c: "\x01\x02\x03\x04\x05\x02\x01\x03\x02\x05\x01\x01\x01\x01\x02\x04", // 𡭌
+ 0x21b4d: "\x03\x03\x05\x02\x01\x05\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04", // 𡭍
+ 0x21b4e: "\x05\x05\x05\x01\x03\x02\x05\x01\x01\x01\x04\x05\x04\x01\x02\x04", // 𡭎
+ 0x21b4f: "\x01\x02\x05\x01\x01\x02\x01\x04\x03\x01\x02\x02\x05\x01\x01\x02\x04", // 𡭏
+ 0x21b50: "\x03\x03\x01\x05\x02\x01\x05\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04", // 𡭐
+ 0x21b51: "\x03\x03\x02\x05\x05\x05\x01\x03\x02\x05\x01\x01\x01\x01\x01\x02\x01\x02\x04", // 𡭑
+ 0x21b52: "\x03\x04\x04\x03\x05\x01\x03\x02\x05\x01\x02\x02\x01\x02\x04\x05\x01\x02\x05\x01", // 𡭒
+ 0x21b53: "\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x01\x04\x03\x03\x04\x01\x02\x04", // 𡭓
+ 0x21b54: "\x02\x03\x04", // 𡭔
+ 0x21b55: "\x01\x02\x03\x04", // 𡭕
+ 0x21b56: "\x05\x02\x03\x04", // 𡭖
+ 0x21b57: "\x03\x04\x02\x03\x04", // 𡭗
+ 0x21b58: "\x05\x03\x02\x03\x04", // 𡭘
+ 0x21b59: "\x02\x03\x04\x02\x05\x01", // 𡭙
+ 0x21b5a: "\x01\x01\x01\x02\x03\x04", // 𡭚
+ 0x21b5b: "\x02\x03\x04\x01\x03\x02", // 𡭛
+ 0x21b5c: "\x04\x02\x05\x02\x03\x04", // 𡭜
+ 0x21b5d: "\x02\x03\x04\x03\x02\x03\x04", // 𡭝
+ 0x21b5e: "\x02\x03\x04\x04\x03\x03\x04", // 𡭞
+ 0x21b5f: "\x02\x03\x04\x03\x01\x03\x04", // 𡭟
+ 0x21b60: "\x02\x04\x03\x04\x05\x01\x05", // 𡭠
+ 0x21b61: "\x01\x03\x05\x03\x02\x03\x04", // 𡭡
+ 0x21b62: "\x02\x03\x04\x01\x02\x03\x04", // 𡭢
+ 0x21b63: "\x02\x03\x04\x02\x03\x04\x03", // 𡭣
+ 0x21b64: "\x02\x03\x04\x01\x01\x02\x01", // 𡭤
+ 0x21b65: "\x03\x05\x03\x03\x02\x03\x04\x03", // 𡭥
+ 0x21b66: "\x02\x03\x04\x01\x02\x03\x04\x01", // 𡭦
+ 0x21b67: "\x05\x02\x02\x05\x02\x02\x03\x04", // 𡭧
+ 0x21b68: "\x02\x05\x01\x01\x01\x02\x03\x04", // 𡭨
+ 0x21b69: "\x02\x03\x04\x05\x01\x01\x03\x04", // 𡭩
+ 0x21b6a: "\x02\x03\x04\x02\x05\x01\x01\x03\x05", // 𡭪
+ 0x21b6b: "\x03\x05\x04\x02\x03\x04\x01\x02\x04", // 𡭫
+ 0x21b6c: "\x02\x03\x04\x04\x02\x05\x01\x02\x03", // 𡭬
+ 0x21b6d: "\x02\x03\x04\x01\x02\x05\x01\x03\x04", // 𡭭
+ 0x21b6e: "\x02\x03\x04\x01\x03\x02\x05\x01\x01", // 𡭮
+ 0x21b6f: "\x02\x03\x04\x02\x03\x04\x02\x03\x04", // 𡭯
+ 0x21b70: "\x03\x04\x01\x05\x03\x04\x02\x03\x04", // 𡭰
+ 0x21b71: "\x05\x02\x02\x05\x02\x02\x03\x04\x03", // 𡭱
+ 0x21b72: "\x02\x03\x04\x03\x05\x02\x02\x05\x02", // 𡭲
+ 0x21b73: "\x01\x02\x01\x01\x02\x05\x02\x03\x04", // 𡭳
+ 0x21b74: "\x02\x03\x04\x02\x05\x01\x01\x02\x03\x04", // 𡭴
+ 0x21b75: "\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02", // 𡭵
+ 0x21b76: "\x02\x04\x03\x01\x02\x05\x01\x01\x01\x05", // 𡭶
+ 0x21b77: "\x02\x03\x04\x01\x03\x05\x03\x03\x03\x04", // 𡭷
+ 0x21b78: "\x02\x03\x04\x03\x02\x05\x01\x02\x05\x01", // 𡭸
+ 0x21b79: "\x04\x01\x05\x03\x03\x04\x02\x03\x04\x03", // 𡭹
+ 0x21b7a: "\x02\x03\x04\x03\x01\x03\x02\x05\x02\x02", // 𡭺
+ 0x21b7b: "\x02\x04\x03\x01\x03\x04\x01\x05\x02\x05", // 𡭻
+ 0x21b7c: "\x02\x03\x04\x02\x05\x01\x01\x03\x01\x02", // 𡭼
+ 0x21b7d: "\x02\x03\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 𡭽
+ 0x21b7e: "\x02\x03\x04\x03\x04\x04\x03\x05\x02\x01\x05", // 𡭾
+ 0x21b7f: "\x02\x04\x03\x04\x05\x02\x05\x01\x04\x05\x04", // 𡭿
+ 0x21b80: "\x02\x03\x04\x03\x02\x05\x03\x05\x02\x05\x01", // 𡮀
+ 0x21b81: "\x02\x03\x04\x02\x05\x01\x02\x01\x01\x03\x02", // 𡮁
+ 0x21b82: "\x02\x03\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 𡮂
+ 0x21b83: "\x01\x02\x01\x02\x02\x02\x05\x01\x02\x03\x04", // 𡮃
+ 0x21b84: "\x02\x03\x04\x04\x04\x05\x03\x05\x04\x05\x05", // 𡮄
+ 0x21b85: "\x03\x02\x01\x05\x01\x01\x03\x05\x02\x03\x04", // 𡮅
+ 0x21b86: "\x02\x03\x04\x05\x01\x01\x02\x02\x05\x01\x01", // 𡮆
+ 0x21b87: "\x04\x01\x03\x04\x03\x04\x01\x02\x02\x03\x04", // 𡮇
+ 0x21b88: "\x03\x04\x04\x03\x05\x02\x01\x05\x02\x03\x04", // 𡮈
+ 0x21b89: "\x05\x01\x01\x02\x02\x05\x01\x01\x02\x03\x04", // 𡮉
+ 0x21b8a: "\x02\x03\x04\x01\x02\x01\x05\x04\x05\x03\x04", // 𡮊
+ 0x21b8b: "\x02\x03\x04\x01\x02\x03\x04\x03\x01\x03\x04", // 𡮋
+ 0x21b8c: "\x02\x03\x04\x03\x03\x02\x05\x01\x02\x05\x04", // 𡮌
+ 0x21b8d: "\x02\x03\x04\x01\x02\x01\x05\x02\x02\x05\x02", // 𡮍
+ 0x21b8e: "\x04\x01\x03\x05\x04\x01\x02\x05\x01\x02\x03\x04", // 𡮎
+ 0x21b8f: "\x02\x03\x04\x03\x02\x03\x04\x03\x02\x03\x04\x03", // 𡮏
+ 0x21b90: "\x02\x03\x04\x02\x03\x04\x02\x03\x04\x02\x03\x04", // 𡮐
+ 0x21b91: "\x02\x03\x04\x03\x03\x04\x04\x03\x05\x02\x01\x05", // 𡮑
+ 0x21b92: "\x03\x01\x02\x03\x04\x05\x02\x01\x05\x02\x03\x04", // 𡮒
+ 0x21b93: "\x03\x01\x02\x02\x01\x01\x03\x05\x02\x03\x04\x03", // 𡮓
+ 0x21b94: "\x04\x03\x01\x01\x02\x01\x01\x03\x04\x02\x03\x04", // 𡮔
+ 0x21b95: "\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x01\x02", // 𡮕
+ 0x21b96: "\x02\x03\x04\x05\x04\x05\x02\x02\x05\x02\x03\x05", // 𡮖
+ 0x21b97: "\x02\x03\x04\x03\x01\x03\x02\x04\x04\x05\x04", // 𡮗
+ 0x21b98: "\x01\x02\x02\x01\x01\x01\x02\x03\x04\x02\x03\x04\x03", // 𡮘
+ 0x21b99: "\x05\x04\x03\x05\x04\x01\x01\x05\x01\x05\x02\x03\x04", // 𡮙
+ 0x21b9a: "\x02\x03\x04\x05\x04\x03\x05\x01\x02\x01\x02\x05\x01", // 𡮚
+ 0x21b9b: "\x02\x03\x04\x04\x04\x01\x02\x05\x01\x01\x01\x02\x01", // 𡮛
+ 0x21b9c: "\x03\x01\x04\x03\x01\x04\x03\x01\x03\x04\x02\x03\x04", // 𡮜
+ 0x21b9d: "\x02\x04\x03\x04\x05\x02\x05\x04\x03\x01\x02\x01\x01", // 𡮝
+ 0x21b9e: "\x04\x04\x05\x03\x01\x02\x01\x02\x05\x01\x02\x03\x04\x03", // 𡮞
+ 0x21b9f: "\x05\x04\x05\x04\x02\x03\x04\x05\x04\x05\x04\x02\x03\x04", // 𡮟
+ 0x21ba0: "\x03\x04\x02\x03\x04\x05\x02\x01\x03\x02\x05\x01\x01\x01", // 𡮠
+ 0x21ba1: "\x02\x03\x04\x02\x03\x04\x02\x02\x05\x01\x01\x01\x03\x05", // 𡮡
+ 0x21ba2: "\x02\x04\x03\x04\x05\x02\x05\x01\x04\x01\x02\x05\x01\x01", // 𡮢
+ 0x21ba3: "\x02\x03\x04\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x03", // 𡮣
+ 0x21ba4: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x03\x02\x03\x04", // 𡮤
+ 0x21ba5: "\x02\x03\x04\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x03", // 𡮥
+ 0x21ba6: "\x01\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x04\x03", // 𡮦
+ 0x21ba7: "\x02\x05\x03\x05\x02\x05\x01\x03\x05\x02\x01\x01\x02\x03\x04", // 𡮧
+ 0x21ba8: "\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x02\x03\x04", // 𡮨
+ 0x21ba9: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x03\x02\x03\x04\x03", // 𡮩
+ 0x21baa: "\x02\x03\x04\x01\x02\x02\x01\x01\x01\x03\x04\x03\x05\x03\x04", // 𡮪
+ 0x21bab: "\x03\x05\x04\x04\x01\x03\x04\x04\x04\x04\x04\x04\x02\x03\x04", // 𡮫
+ 0x21bac: "\x02\x03\x04\x05\x01\x01\x02\x02\x05\x01\x01\x04\x05\x04\x04", // 𡮬
+ 0x21bad: "\x05\x01\x05\x05\x01\x05\x01\x02\x02\x01\x03\x04\x02\x03\x04", // 𡮭
+ 0x21bae: "\x02\x03\x04\x05\x01\x01\x02\x02\x05\x01\x01\x04\x05\x04\x04", // 𡮮
+ 0x21baf: "\x02\x03\x04\x03\x03\x01\x02\x01\x02\x05\x01\x04\x05\x04", // 𡮯
+ 0x21bb0: "\x04\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x03\x04", // 𡮰
+ 0x21bb1: "\x03\x04\x01\x03\x05\x04\x02\x03\x04\x02\x05\x01\x01\x02\x03\x04", // 𡮱
+ 0x21bb2: "\x02\x03\x04\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x01\x02\x04", // 𡮲
+ 0x21bb3: "\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x02\x03\x04\x03", // 𡮳
+ 0x21bb4: "\x02\x03\x04\x03\x05\x01\x01\x02\x01\x01\x02\x02\x01\x01\x01\x03\x04", // 𡮴
+ 0x21bb5: "\x02\x04\x03\x02\x05\x02\x05\x01\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𡮵
+ 0x21bb6: "\x03\x01\x02\x05\x01\x01\x02\x01\x01\x02\x04\x03\x02\x05\x02\x05\x01", // 𡮶
+ 0x21bb7: "\x02\x03\x04\x01\x02\x05\x01\x02\x05\x05\x04\x02\x05\x01\x01\x01\x03\x04", // 𡮷
+ 0x21bb8: "\x05\x01\x05\x05\x01\x05\x01\x02\x02\x01\x03\x04\x02\x03\x04\x01\x03\x04", // 𡮸
+ 0x21bb9: "\x02\x03\x04\x03\x01\x02\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 𡮹
+ 0x21bba: "\x01\x02\x05\x01\x02\x05\x05\x04\x02\x05\x01\x01\x01\x03\x04\x02\x03\x04", // 𡮺
+ 0x21bbb: "\x01\x02\x05\x01\x02\x05\x03\x01\x01\x02\x05\x02\x02\x01\x02\x03\x04\x03", // 𡮻
+ 0x21bbc: "\x01\x02\x05\x01\x02\x05\x03\x01\x04\x04\x02\x05\x02\x02\x01\x02\x03\x04\x03", // 𡮼
+ 0x21bbd: "\x02\x03\x04\x01\x03\x04\x03\x03\x01\x02\x02\x05\x01\x01\x01\x04\x05\x04", // 𡮽
+ 0x21bbe: "\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05\x04\x05\x04\x02\x03\x04", // 𡮾
+ 0x21bbf: "\x03\x05\x02\x05\x01\x01\x05\x01\x05\x03\x05\x02\x05\x01\x03\x05\x04\x02\x03\x04\x03", // 𡮿
+ 0x21bc0: "\x01\x02\x03\x04\x03\x01\x01\x02\x05\x02\x01\x02\x03\x04\x04\x05\x03\x04\x04\x04\x04\x04\x05\x02\x01\x05\x03\x03\x03\x02\x03\x04", // 𡯀
+ 0x21bc1: "\x01\x03\x05", // 𡯁
+ 0x21bc2: "\x03\x05\x03\x05", // 𡯂
+ 0x21bc3: "\x01\x03\x05\x03", // 𡯃
+ 0x21bc4: "\x01\x03\x05\x05\x03", // 𡯄
+ 0x21bc5: "\x01\x03\x05\x05\x04", // 𡯅
+ 0x21bc6: "\x01\x03\x05\x05\x04", // 𡯆
+ 0x21bc7: "\x01\x03\x05\x02\x02", // 𡯇
+ 0x21bc8: "\x01\x03\x05\x03\x04", // 𡯈
+ 0x21bc9: "\x01\x03\x05\x05\x04", // 𡯉
+ 0x21bca: "\x01\x01\x03\x05\x04", // 𡯊
+ 0x21bcb: "\x01\x03\x05\x01\x01\x02", // 𡯋
+ 0x21bcc: "\x01\x03\x05\x03\x05\x04", // 𡯌
+ 0x21bcd: "\x01\x03\x05\x01\x05\x02", // 𡯍
+ 0x21bce: "\x01\x03\x05\x03\x03\x03", // 𡯎
+ 0x21bcf: "\x01\x03\x05\x04\x04\x01\x02", // 𡯏
+ 0x21bd0: "\x01\x03\x05\x01\x02\x03\x04", // 𡯐
+ 0x21bd1: "\x03\x04\x03\x05\x02\x05\x03\x04", // 𡯑
+ 0x21bd2: "\x03\x04\x03\x05\x02\x05\x01\x01", // 𡯒
+ 0x21bd3: "\x01\x03\x05\x03\x04\x03\x02", // 𡯓
+ 0x21bd4: "\x01\x03\x05\x03\x04\x03\x05", // 𡯔
+ 0x21bd5: "\x01\x03\x05\x03\x04\x05\x03", // 𡯕
+ 0x21bd6: "\x01\x03\x05\x03\x05\x03\x03", // 𡯖
+ 0x21bd7: "\x03\x04\x03\x05\x03\x04\x03\x02", // 𡯗
+ 0x21bd8: "\x01\x03\x05\x01\x03\x05\x04", // 𡯘
+ 0x21bd9: "\x01\x03\x05\x02\x05\x01\x01", // 𡯙
+ 0x21bda: "\x03\x04\x03\x05\x03\x05\x05\x01\x05", // 𡯚
+ 0x21bdb: "\x03\x04\x03\x05\x01\x03\x01\x02\x01", // 𡯛
+ 0x21bdc: "\x01\x03\x05\x04\x04\x05\x03\x04", // 𡯜
+ 0x21bdd: "\x01\x03\x05\x01\x03\x02\x05\x01", // 𡯝
+ 0x21bde: "\x01\x03\x05\x01\x02\x05\x03\x04", // 𡯞
+ 0x21bdf: "\x01\x03\x05\x04\x02\x05\x01\x01", // 𡯟
+ 0x21be0: "\x03\x04\x03\x05\x04\x04\x05\x03\x04", // 𡯠
+ 0x21be1: "\x01\x03\x05\x03\x05\x05\x01\x05", // 𡯡
+ 0x21be2: "\x01\x03\x05\x03\x01\x02\x02\x05\x01", // 𡯢
+ 0x21be3: "\x01\x03\x05\x05\x01\x01\x05\x03\x04", // 𡯣
+ 0x21be4: "\x03\x04\x01\x03\x05\x04\x01\x03\x05", // 𡯤
+ 0x21be5: "\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 𡯥
+ 0x21be6: "\x01\x03\x05\x03\x05\x01\x02\x03\x04", // 𡯦
+ 0x21be7: "\x03\x04\x03\x05\x02\x05\x01\x01\x01\x05", // 𡯧
+ 0x21be8: "\x01\x03\x05\x03\x04\x03\x04\x01\x02\x01", // 𡯨
+ 0x21be9: "\x01\x03\x05\x02\x04\x03\x02\x05\x01\x01", // 𡯩
+ 0x21bea: "\x01\x03\x05\x02\x05\x02\x01\x01\x02\x01", // 𡯪
+ 0x21beb: "\x03\x04\x03\x05\x03\x02\x05\x01\x01\x03\x04", // 𡯫
+ 0x21bec: "\x01\x03\x05\x03\x02\x05\x01\x01\x03\x04", // 𡯬
+ 0x21bed: "\x01\x03\x05\x05\x02\x03\x01\x01\x02\x01", // 𡯭
+ 0x21bee: "\x03\x04\x01\x03\x05\x04\x01\x03\x05\x04", // 𡯮
+ 0x21bef: "\x01\x03\x05\x04\x01\x02\x02\x01\x03\x04", // 𡯯
+ 0x21bf0: "\x01\x03\x05\x01\x01\x03\x02\x05\x03\x04", // 𡯰
+ 0x21bf1: "\x03\x04\x03\x05\x03\x02\x05\x01\x01\x03\x05", // 𡯱
+ 0x21bf2: "\x03\x04\x03\x05\x05\x02\x03\x01\x01\x02\x01", // 𡯲
+ 0x21bf3: "\x01\x03\x05\x04\x01\x04\x03\x01\x02\x05\x01", // 𡯳
+ 0x21bf4: "\x01\x03\x05\x02\x01\x02\x05\x01\x01\x01\x02", // 𡯴
+ 0x21bf5: "\x01\x03\x05\x03\x01\x02\x03\x04\x05\x03\x01", // 𡯵
+ 0x21bf6: "\x04\x01\x02\x05\x01\x02\x05\x02\x01\x03\x05\x04", // 𡯶
+ 0x21bf7: "\x03\x04\x03\x05\x04\x01\x04\x03\x01\x02\x05\x01", // 𡯷
+ 0x21bf8: "\x03\x04\x03\x05\x01\x03\x04\x02\x05\x01\x01\x05", // 𡯸
+ 0x21bf9: "\x01\x03\x05\x03\x02\x05\x01\x02\x01\x01\x05\x03\x04", // 𡯹
+ 0x21bfa: "\x01\x03\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𡯺
+ 0x21bfb: "\x01\x03\x05\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 𡯻
+ 0x21bfc: "\x01\x02\x01\x05\x04\x04\x04\x04\x01\x03\x05\x04", // 𡯼
+ 0x21bfd: "\x01\x03\x05\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 𡯽
+ 0x21bfe: "\x01\x03\x05\x04\x03\x01\x02\x05\x03\x05\x01\x01", // 𡯾
+ 0x21bff: "\x01\x03\x05\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 𡯿
+ 0x21c00: "\x01\x03\x05\x05\x03\x01\x05\x04\x03\x01\x01\x02", // 𡰀
+ 0x21c01: "\x01\x03\x05\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𡰁
+ 0x21c02: "\x03\x04\x03\x05\x02\x05\x01\x02\x01\x01\x05\x03\x04", // 𡰂
+ 0x21c03: "\x01\x03\x05\x03\x05\x04\x04\x03\x01\x01\x02\x05\x02", // 𡰃
+ 0x21c04: "\x01\x03\x05\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04", // 𡰄
+ 0x21c05: "\x01\x03\x05\x02\x05\x05\x04\x05\x02\x05\x01\x01", // 𡰅
+ 0x21c06: "\x01\x03\x05\x03\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 𡰆
+ 0x21c07: "\x05\x02\x02\x05\x02\x01\x01\x02\x03\x04\x03\x04\x03\x05", // 𡰇
+ 0x21c08: "\x03\x02\x05\x01\x01\x01\x01\x02\x03\x04\x01\x03\x05", // 𡰈
+ 0x21c09: "\x03\x04\x03\x05\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 𡰉
+ 0x21c0a: "\x03\x04\x03\x05\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01", // 𡰊
+ 0x21c0b: "\x01\x03\x05\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𡰋
+ 0x21c0c: "\x01\x03\x05\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 𡰌
+ 0x21c0d: "\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01\x01\x03\x05", // 𡰍
+ 0x21c0e: "\x01\x03\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𡰎
+ 0x21c0f: "\x01\x03\x05\x04\x04\x01\x04\x01\x02\x05\x01\x02\x03\x04", // 𡰏
+ 0x21c10: "\x02\x01\x05\x03\x01\x05\x02\x02\x05\x02\x01\x01\x01\x03\x05\x04", // 𡰐
+ 0x21c11: "\x01\x03\x05\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 𡰑
+ 0x21c12: "\x01\x03\x05\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𡰒
+ 0x21c13: "\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01\x01\x03\x05\x04", // 𡰓
+ 0x21c14: "\x04\x01\x02\x05\x01\x02\x05\x01\x02\x03\x04\x01\x03\x05\x04", // 𡰔
+ 0x21c15: "\x03\x04\x03\x05\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𡰕
+ 0x21c16: "\x01\x03\x05\x03\x04\x04\x03\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 𡰖
+ 0x21c17: "\x04\x01\x02\x05\x01\x04\x01\x02\x05\x01\x02\x03\x04\x01\x03\x05", // 𡰗
+ 0x21c18: "\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01\x01\x03\x05\x04", // 𡰘
+ 0x21c19: "\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x03\x04\x01\x03\x05\x04", // 𡰙
+ 0x21c1a: "\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02\x01\x03\x05\x04", // 𡰚
+ 0x21c1b: "\x03\x04\x03\x05\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01", // 𡰛
+ 0x21c1c: "\x04\x01\x02\x05\x01\x04\x01\x02\x05\x01\x02\x03\x04\x01\x03\x05\x04", // 𡰜
+ 0x21c1d: "\x01\x03\x05\x02\x01\x02\x01\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𡰝
+ 0x21c1e: "\x01\x03\x05\x01\x02\x02\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𡰞
+ 0x21c1f: "\x03\x04\x03\x05\x04\x01\x05\x02\x05\x01\x04\x03\x01\x01\x01\x02\x03\x05\x01\x01\x03\x05\x04", // 𡰟
+ 0x21c20: "\x01\x03\x05\x04\x01\x05\x02\x05\x01\x03\x05\x04\x01\x04\x03\x01\x01\x01\x02\x03\x05\x04", // 𡰠
+ 0x21c21: "\x03\x04\x03\x05\x03\x04\x04\x03\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x03\x04\x02\x05\x01", // 𡰡
+ 0x21c22: "\x01\x03\x05\x03\x04\x04\x03\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x03\x05\x02\x05\x01", // 𡰢
+ 0x21c23: "\x05\x01\x03", // 𡰣
+ 0x21c24: "\x04\x03\x05\x01\x03", // 𡰤
+ 0x21c25: "\x05\x01\x03\x01\x01", // 𡰥
+ 0x21c26: "\x05\x01\x03\x03\x04", // 𡰦
+ 0x21c27: "\x05\x01\x01\x03\x05", // 𡰧
+ 0x21c28: "\x05\x01\x03\x01\x02", // 𡰨
+ 0x21c29: "\x05\x01\x03\x05\x01\x01", // 𡰩
+ 0x21c2a: "\x05\x01\x03\x02\x05\x01", // 𡰪
+ 0x21c2b: "\x05\x01\x03\x05\x04\x04", // 𡰫
+ 0x21c2c: "\x05\x01\x03\x05\x01\x05", // 𡰬
+ 0x21c2d: "\x05\x01\x03\x03\x02\x05", // 𡰭
+ 0x21c2e: "\x02\x01\x02\x05\x01\x03", // 𡰮
+ 0x21c2f: "\x05\x01\x03\x02\x05\x02", // 𡰯
+ 0x21c30: "\x05\x01\x03\x04\x05\x02", // 𡰰
+ 0x21c31: "\x05\x01\x03\x01\x02\x01", // 𡰱
+ 0x21c32: "\x05\x01\x03\x05\x01\x03", // 𡰲
+ 0x21c33: "\x05\x01\x03\x05\x04\x01", // 𡰳
+ 0x21c34: "\x05\x01\x01\x03\x05", // 𡰴
+ 0x21c35: "\x05\x01\x03\x02\x01\x05\x04", // 𡰵
+ 0x21c36: "\x05\x01\x03\x02\x05\x01\x01", // 𡰶
+ 0x21c37: "\x05\x01\x03\x04\x04\x01\x02", // 𡰷
+ 0x21c38: "\x05\x01\x03\x01\x02\x05\x04", // 𡰸
+ 0x21c39: "\x05\x01\x03\x03\x02\x03\x03", // 𡰹
+ 0x21c3a: "\x05\x01\x03\x05\x01\x05\x03", // 𡰺
+ 0x21c3b: "\x05\x01\x03\x05\x01\x05\x04", // 𡰻
+ 0x21c3c: "\x05\x01\x03\x05\x02\x01\x05", // 𡰼
+ 0x21c3d: "\x05\x01\x03\x01\x03\x05\x04", // 𡰽
+ 0x21c3e: "\x05\x01\x03\x03\x05\x02\x03", // 𡰾
+ 0x21c3f: "\x05\x01\x03\x03\x04\x03\x05\x04", // 𡰿
+ 0x21c40: "\x04\x01\x02\x05\x01\x05\x01\x03", // 𡱀
+ 0x21c41: "\x05\x01\x03\x03\x01\x01\x03\x04", // 𡱁
+ 0x21c42: "\x05\x01\x03\x01\x03\x05\x03\x05", // 𡱂
+ 0x21c43: "\x05\x01\x03\x03\x05\x02\x05\x02", // 𡱃
+ 0x21c44: "\x05\x01\x03\x01\x01\x01\x05\x04", // 𡱄
+ 0x21c45: "\x05\x01\x03\x01\x02\x01\x05\x04", // 𡱅
+ 0x21c46: "\x05\x01\x03\x01\x02\x05\x03\x04", // 𡱆
+ 0x21c47: "\x05\x01\x03\x02\x01\x02\x05\x01", // 𡱇
+ 0x21c48: "\x05\x01\x03\x03\x05\x02\x05\x01", // 𡱈
+ 0x21c49: "\x05\x01\x01\x03\x05\x01\x01\x03", // 𡱉
+ 0x21c4a: "\x05\x01\x03\x05\x02\x05\x03\x04", // 𡱊
+ 0x21c4b: "\x02\x05\x01\x02\x01\x05\x01\x03", // 𡱋
+ 0x21c4c: "\x05\x01\x03\x01\x02\x05\x01\x01\x01", // 𡱌
+ 0x21c4d: "\x05\x01\x03\x04\x01\x05\x03\x03\x04", // 𡱍
+ 0x21c4e: "\x05\x01\x03\x02\x05\x03\x04\x03\x04", // 𡱎
+ 0x21c4f: "\x05\x01\x03\x05\x05\x04\x02\x03\x04", // 𡱏
+ 0x21c50: "\x05\x01\x03\x01\x05\x01\x05\x03\x04", // 𡱐
+ 0x21c51: "\x05\x01\x03\x05\x04\x03\x05\x04\x01", // 𡱑
+ 0x21c52: "\x05\x01\x03\x01\x02\x02\x01\x03\x04", // 𡱒
+ 0x21c53: "\x05\x01\x03\x01\x01\x05\x04\x03\x05", // 𡱓
+ 0x21c54: "\x05\x01\x03\x01\x01\x02\x05\x01\x01", // 𡱔
+ 0x21c55: "\x05\x01\x03\x01\x01\x01\x01\x01\x05", // 𡱕
+ 0x21c56: "\x05\x01\x03\x03\x01\x01\x02\x03\x04", // 𡱖
+ 0x21c57: "\x05\x01\x03\x01\x02\x02\x01\x05\x04", // 𡱗
+ 0x21c58: "\x05\x01\x03\x02\x04\x03\x01\x03\x05", // 𡱘
+ 0x21c59: "\x05\x01\x03\x05\x02\x03\x01\x03\x04", // 𡱙
+ 0x21c5a: "\x05\x01\x03\x03\x02\x03\x01\x03\x02", // 𡱚
+ 0x21c5b: "\x05\x01\x03\x04\x03\x01\x01\x03\x04", // 𡱛
+ 0x21c5c: "\x05\x01\x03\x03\x04\x01\x05\x03\x04", // 𡱜
+ 0x21c5d: "\x05\x01\x03\x04\x03\x01\x01\x01\x02", // 𡱝
+ 0x21c5e: "\x05\x01\x03\x04\x03\x01\x05\x02\x03", // 𡱞
+ 0x21c5f: "\x05\x01\x03\x05\x05\x05\x05\x02\x01", // 𡱟
+ 0x21c60: "\x01\x02\x01\x02\x05\x01\x05\x01\x03", // 𡱠
+ 0x21c61: "\x05\x01\x03\x01\x02\x02\x01\x01\x01", // 𡱡
+ 0x21c62: "\x05\x01\x03\x05\x04\x03\x01\x01\x03\x04", // 𡱢
+ 0x21c63: "\x05\x01\x03\x03\x03\x02\x05\x04\x05\x02", // 𡱣
+ 0x21c64: "\x05\x01\x03\x04\x04\x01\x03\x01\x01\x05", // 𡱤
+ 0x21c65: "\x05\x01\x03\x05\x04\x03\x05\x03\x05\x04", // 𡱥
+ 0x21c66: "\x05\x01\x03\x02\x01\x02\x01\x04\x05\x04", // 𡱦
+ 0x21c67: "\x05\x01\x03\x01\x01\x02\x01\x01\x03\x05", // 𡱧
+ 0x21c68: "\x04\x03\x05\x01\x03\x01\x02\x02\x05\x01", // 𡱨
+ 0x21c69: "\x01\x02\x01\x03\x01\x05\x05\x01\x03\x04", // 𡱩
+ 0x21c6a: "\x05\x01\x03\x04\x04\x02\x01\x02\x05\x04", // 𡱪
+ 0x21c6b: "\x05\x01\x03\x03\x01\x02\x01\x05\x03\x04", // 𡱫
+ 0x21c6c: "\x05\x01\x03\x03\x01\x01\x05\x05\x02\x01", // 𡱬
+ 0x21c6d: "\x05\x01\x03\x03\x01\x01\x05\x01\x01\x02", // 𡱭
+ 0x21c6e: "\x05\x01\x03\x04\x02\x05\x01\x02\x01\x01", // 𡱮
+ 0x21c6f: "\x05\x01\x03\x01\x01\x02\x01\x01\x03\x02", // 𡱯
+ 0x21c70: "\x05\x01\x03\x01\x03\x05\x03\x03\x03\x04", // 𡱰
+ 0x21c71: "\x05\x01\x03\x03\x03\x02\x03\x01\x03\x04", // 𡱱
+ 0x21c72: "\x05\x01\x03\x03\x04\x03\x04\x03\x03\x05", // 𡱲
+ 0x21c73: "\x05\x01\x03\x04\x04\x01\x02\x03\x04\x03", // 𡱳
+ 0x21c74: "\x05\x01\x03\x05\x05\x05\x02\x05\x03\x04", // 𡱴
+ 0x21c75: "\x05\x01\x03\x03\x01\x01\x05\x02\x03\x04", // 𡱵
+ 0x21c76: "\x05\x01\x03\x02\x05\x01\x03\x02\x05\x01", // 𡱶
+ 0x21c77: "\x05\x01\x03\x01\x02\x02\x01\x01\x01\x05", // 𡱷
+ 0x21c78: "\x02\x05\x03\x04\x02\x02\x05\x01\x03\x04", // 𡱸
+ 0x21c79: "\x05\x01\x03\x03\x03\x02\x01\x05\x05\x05", // 𡱹
+ 0x21c7a: "\x05\x01\x03\x03\x03\x02\x03\x05\x02\x05\x01", // 𡱺
+ 0x21c7b: "\x05\x01\x03\x01\x02\x01\x05\x05\x01\x02\x01", // 𡱻
+ 0x21c7c: "\x05\x01\x03\x02\x05\x01\x01\x01\x02\x03\x04", // 𡱼
+ 0x21c7d: "\x05\x01\x03\x03\x05\x03\x03\x04\x05\x04\x04", // 𡱽
+ 0x21c7e: "\x05\x01\x03\x01\x02\x02\x01\x01\x01\x05\x04", // 𡱾
+ 0x21c7f: "\x05\x01\x03\x02\x05\x01\x01\x03\x05\x03\x03", // 𡱿
+ 0x21c80: "\x05\x01\x03\x04\x04\x05\x03\x05\x01\x02\x01", // 𡲀
+ 0x21c81: "\x05\x01\x03\x03\x03\x02\x01\x03\x03\x04\x04", // 𡲁
+ 0x21c82: "\x02\x01\x02\x05\x01\x03\x02\x05\x01\x01\x01", // 𡲂
+ 0x21c83: "\x05\x01\x03\x01\x03\x01\x05\x04\x01\x02\x01", // 𡲃
+ 0x21c84: "\x05\x01\x03\x01\x01\x01\x03\x01\x01\x01\x02", // 𡲄
+ 0x21c85: "\x05\x01\x03\x01\x02\x03\x04\x01\x02\x05\x04", // 𡲅
+ 0x21c86: "\x05\x01\x03\x05\x02\x01\x03\x01\x02\x05\x04", // 𡲆
+ 0x21c87: "\x05\x01\x03\x02\x05\x01\x02\x05\x02\x01\x04", // 𡲇
+ 0x21c88: "\x05\x01\x03\x03\x01\x01\x02\x04\x01\x03\x04", // 𡲈
+ 0x21c89: "\x05\x01\x03\x03\x01\x01\x05\x02\x05\x01\x01", // 𡲉
+ 0x21c8a: "\x05\x01\x03\x03\x01\x01\x05\x03\x05\x01\x01", // 𡲊
+ 0x21c8b: "\x05\x01\x03\x03\x01\x01\x05\x05\x04\x05\x04", // 𡲋
+ 0x21c8c: "\x05\x01\x03\x01\x02\x01\x03\x02\x01\x02\x01", // 𡲌
+ 0x21c8d: "\x05\x01\x03\x02\x05\x01\x05\x05\x04\x05\x03", // 𡲍
+ 0x21c8e: "\x05\x01\x03\x03\x02\x05\x01\x01\x03\x01\x02", // 𡲎
+ 0x21c8f: "\x05\x01\x03\x03\x03\x02\x03\x05\x05\x01\x05", // 𡲏
+ 0x21c90: "\x05\x01\x03\x03\x04\x04\x03\x05\x02\x01\x05", // 𡲐
+ 0x21c91: "\x05\x01\x03\x05\x05\x05\x03\x01\x01\x03\x04", // 𡲑
+ 0x21c92: "\x05\x01\x03\x05\x05\x05\x05\x02\x02\x05\x02", // 𡲒
+ 0x21c93: "\x05\x01\x03\x01\x01\x01\x03\x01\x01\x01\x02", // 𡲓
+ 0x21c94: "\x05\x01\x03\x03\x01\x01\x03\x04\x03\x01\x01\x05", // 𡲔
+ 0x21c95: "\x05\x01\x03\x03\x03\x02\x02\x05\x01\x01\x05\x03", // 𡲕
+ 0x21c96: "\x05\x01\x03\x02\x05\x03\x04\x04\x04\x04\x04\x01", // 𡲖
+ 0x21c97: "\x05\x01\x03\x01\x03\x04\x04\x05\x02\x02\x05\x02", // 𡲗
+ 0x21c98: "\x05\x01\x03\x01\x01\x02\x01\x01\x02\x05\x03\x04", // 𡲘
+ 0x21c99: "\x05\x01\x03\x01\x02\x05\x02\x02\x01\x01\x02\x01", // 𡲙
+ 0x21c9a: "\x05\x01\x03\x04\x03\x01\x02\x05\x03\x05\x01\x01", // 𡲚
+ 0x21c9b: "\x05\x01\x03\x03\x03\x02\x03\x05\x04\x01\x05\x02", // 𡲛
+ 0x21c9c: "\x05\x01\x03\x03\x04\x03\x04\x02\x05\x01\x02\x02", // 𡲜
+ 0x21c9d: "\x05\x01\x03\x01\x02\x01\x02\x05\x01\x01\x05\x03", // 𡲝
+ 0x21c9e: "\x04\x03\x05\x01\x03\x03\x05\x01\x02\x02\x05\x01", // 𡲞
+ 0x21c9f: "\x05\x01\x03\x03\x03\x02\x03\x03\x05\x04\x01\x04", // 𡲟
+ 0x21ca0: "\x05\x01\x03\x02\x05\x01\x01\x05\x01\x03\x05\x04", // 𡲠
+ 0x21ca1: "\x02\x01\x02\x05\x01\x03\x05\x03\x03\x04\x01\x05", // 𡲡
+ 0x21ca2: "\x05\x01\x03\x01\x02\x01\x02\x05\x03\x02\x05\x01", // 𡲢
+ 0x21ca3: "\x05\x01\x03\x05\x02\x03\x05\x04\x01\x05\x02", // 𡲣
+ 0x21ca4: "\x05\x01\x03\x03\x01\x01\x05\x02\x05\x01\x01\x01", // 𡲤
+ 0x21ca5: "\x05\x01\x03\x03\x01\x01\x05\x03\x01\x01\x02\x01", // 𡲥
+ 0x21ca6: "\x05\x01\x03\x01\x02\x05\x01\x02\x04\x05\x04\x04", // 𡲦
+ 0x21ca7: "\x05\x01\x03\x03\x01\x01\x05\x01\x01\x02\x03\x04", // 𡲧
+ 0x21ca8: "\x05\x01\x03\x03\x01\x01\x05\x01\x02\x01\x05\x04", // 𡲨
+ 0x21ca9: "\x05\x01\x03\x01\x01\x02\x01\x01\x01\x05\x01\x05", // 𡲩
+ 0x21caa: "\x05\x01\x03\x03\x01\x01\x05\x05\x03\x05\x02\x01", // 𡲪
+ 0x21cab: "\x05\x01\x03\x03\x01\x01\x05\x01\x03\x02\x05\x02", // 𡲫
+ 0x21cac: "\x05\x01\x03\x01\x01\x02\x01\x01\x05\x02\x02\x05\x02", // 𡲬
+ 0x21cad: "\x05\x01\x03\x03\x01\x01\x05\x02\x05\x01\x01\x05\x03", // 𡲭
+ 0x21cae: "\x05\x01\x03\x03\x02\x05\x03\x04\x01\x01\x05\x01\x05", // 𡲮
+ 0x21caf: "\x05\x01\x03\x02\x03\x04\x03\x04\x01\x05\x03\x05\x04", // 𡲯
+ 0x21cb0: "\x05\x01\x03\x03\x03\x02\x03\x04\x01\x01\x02\x03\x04", // 𡲰
+ 0x21cb1: "\x05\x01\x03\x02\x03\x04\x03\x04\x01\x01\x03\x01\x02", // 𡲱
+ 0x21cb2: "\x05\x01\x03\x03\x03\x02\x05\x04\x03\x05\x03\x05\x04", // 𡲲
+ 0x21cb3: "\x05\x01\x03\x05\x01\x05\x04\x01\x05\x01\x05\x04\x01", // 𡲳
+ 0x21cb4: "\x05\x01\x03\x04\x03\x03\x04\x04\x03\x01\x02\x03\x04", // 𡲴
+ 0x21cb5: "\x05\x01\x03\x03\x04\x03\x04\x03\x04\x03\x04\x03\x05", // 𡲵
+ 0x21cb6: "\x05\x01\x03\x01\x01\x05\x01\x01\x05\x02\x02\x05\x02", // 𡲶
+ 0x21cb7: "\x05\x01\x03\x01\x02\x01\x02\x02\x03\x01\x02\x03\x04", // 𡲷
+ 0x21cb8: "\x05\x01\x03\x03\x01\x01\x05\x04\x03\x01\x02\x03\x04", // 𡲸
+ 0x21cb9: "\x05\x01\x03\x03\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 𡲹
+ 0x21cba: "\x05\x01\x03\x04\x01\x03\x04\x03\x04\x03\x05\x04\x01", // 𡲺
+ 0x21cbb: "\x05\x01\x03\x01\x02\x05\x01\x02\x05\x01\x02\x05\x02", // 𡲻
+ 0x21cbc: "\x05\x01\x03\x03\x01\x01\x05\x04\x01\x05\x03\x03\x04", // 𡲼
+ 0x21cbd: "\x05\x01\x03\x03\x02\x05\x01\x01\x01\x01\x05\x03\x05", // 𡲽
+ 0x21cbe: "\x05\x01\x03\x03\x03\x02\x03\x04\x04\x03\x05\x03\x01", // 𡲾
+ 0x21cbf: "\x05\x01\x03\x05\x02\x01\x03\x02\x05\x01\x01\x05\x03", // 𡲿
+ 0x21cc0: "\x05\x01\x03\x03\x01\x01\x05\x03\x05\x01\x03\x05\x05", // 𡳀
+ 0x21cc1: "\x05\x01\x03\x04\x03\x01\x02\x03\x04\x01\x03\x04\x04", // 𡳁
+ 0x21cc2: "\x05\x01\x03\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 𡳂
+ 0x21cc3: "\x05\x01\x03\x03\x01\x01\x05\x03\x04\x01\x01\x05\x04", // 𡳃
+ 0x21cc4: "\x05\x01\x03\x02\x05\x01\x04\x01\x02\x05\x02\x05\x01\x01", // 𡳄
+ 0x21cc5: "\x05\x01\x03\x03\x02\x05\x01\x01\x01\x05\x01\x05\x03\x05", // 𡳅
+ 0x21cc6: "\x05\x01\x03\x02\x01\x05\x03\x01\x05\x02\x05\x01\x01\x01", // 𡳆
+ 0x21cc7: "\x05\x01\x03\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 𡳇
+ 0x21cc8: "\x05\x01\x03\x04\x03\x03\x04\x04\x03\x03\x04\x01\x02\x01", // 𡳈
+ 0x21cc9: "\x05\x01\x03\x04\x03\x03\x04\x04\x03\x03\x04\x03\x05\x04", // 𡳉
+ 0x21cca: "\x05\x01\x03\x03\x01\x01\x05\x01\x01\x02\x01\x01\x03\x02", // 𡳊
+ 0x21ccb: "\x05\x01\x03\x01\x01\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 𡳋
+ 0x21ccc: "\x05\x01\x03\x03\x03\x02\x05\x04\x05\x02\x03\x03\x05\x04", // 𡳌
+ 0x21ccd: "\x05\x01\x03\x05\x05\x04\x04\x04\x04\x03\x05\x02\x05\x01", // 𡳍
+ 0x21cce: "\x05\x01\x03\x03\x01\x01\x05\x02\x05\x01\x03\x02\x05\x01", // 𡳎
+ 0x21ccf: "\x05\x01\x03\x03\x04\x01\x05\x03\x04\x03\x05\x02\x05\x01", // 𡳏
+ 0x21cd0: "\x05\x01\x03\x03\x03\x02\x03\x03\x05\x04\x01\x04\x03\x05\x04", // 𡳐
+ 0x21cd1: "\x05\x01\x03\x03\x03\x04\x03\x04\x03\x04\x03\x04\x01\x02\x01", // 𡳑
+ 0x21cd2: "\x05\x01\x03\x03\x01\x01\x05\x01\x02\x05\x01\x02\x01\x05\x02", // 𡳒
+ 0x21cd3: "\x05\x01\x03\x03\x01\x01\x05\x04\x04\x05\x01\x01\x02\x03\x04", // 𡳓
+ 0x21cd4: "\x05\x01\x03\x03\x01\x01\x05\x05\x04\x01\x03\x04\x03\x03\x03", // 𡳔
+ 0x21cd5: "\x05\x01\x03\x03\x01\x01\x05\x03\x01\x01\x01\x02\x01\x01\x01", // 𡳕
+ 0x21cd6: "\x05\x01\x03\x03\x01\x01\x05\x01\x02\x01\x02\x03\x02\x01\x05", // 𡳖
+ 0x21cd7: "\x05\x01\x03\x03\x01\x01\x05\x04\x03\x01\x02\x01\x05\x01\x03", // 𡳗
+ 0x21cd8: "\x05\x01\x03\x01\x02\x03\x04\x03\x04\x03\x04\x03\x04\x05\x02", // 𡳘
+ 0x21cd9: "\x05\x01\x03\x04\x01\x02\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 𡳙
+ 0x21cda: "\x05\x01\x03\x05\x02\x05\x01\x02\x05\x01\x01\x05\x03\x04\x01", // 𡳚
+ 0x21cdb: "\x05\x01\x03\x04\x03\x01\x02\x03\x04\x01\x02\x01\x02\x05\x01", // 𡳛
+ 0x21cdc: "\x05\x01\x03\x03\x01\x01\x05\x03\x01\x02\x03\x04\x05\x02\x01", // 𡳜
+ 0x21cdd: "\x05\x01\x03\x03\x01\x01\x05\x04\x01\x03\x04\x03\x04\x01\x02", // 𡳝
+ 0x21cde: "\x05\x01\x03\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 𡳞
+ 0x21cdf: "\x05\x01\x03\x05\x02\x05\x01\x03\x05\x01\x02\x05\x01\x01\x05", // 𡳟
+ 0x21ce0: "\x05\x01\x03\x01\x01\x03\x05\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𡳠
+ 0x21ce1: "\x05\x01\x03\x03\x04\x03\x04\x02\x01\x05\x02\x03\x05\x02\x02", // 𡳡
+ 0x21ce2: "\x05\x01\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01\x05\x02", // 𡳢
+ 0x21ce3: "\x01\x02\x01\x03\x02\x05\x01\x01\x05\x02\x05\x01\x03\x04", // 𡳣
+ 0x21ce4: "\x05\x01\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01\x05\x02", // 𡳤
+ 0x21ce5: "\x05\x01\x03\x01\x03\x02\x05\x01\x04\x01\x03\x04\x03\x04\x01\x02", // 𡳥
+ 0x21ce6: "\x05\x01\x03\x03\x01\x01\x05\x03\x04\x01\x02\x01\x05\x02\x01\x03", // 𡳦
+ 0x21ce7: "\x02\x05\x01\x02\x01\x05\x01\x03\x03\x01\x01\x03\x03\x01\x01\x02", // 𡳧
+ 0x21ce8: "\x05\x01\x03\x01\x02\x03\x04\x05\x04\x05\x04\x05\x04\x01\x02\x03\x04", // 𡳨
+ 0x21ce9: "\x05\x01\x03\x03\x01\x01\x05\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01", // 𡳩
+ 0x21cea: "\x05\x01\x03\x03\x01\x01\x05\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𡳪
+ 0x21ceb: "\x05\x01\x03\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x01", // 𡳫
+ 0x21cec: "\x05\x01\x03\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 𡳬
+ 0x21ced: "\x05\x01\x03\x01\x05\x01\x02\x03\x04\x05\x04\x05\x04\x05\x04\x01\x02\x03\x04", // 𡳭
+ 0x21cee: "\x05\x01\x03\x03\x01\x02\x03\x04\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𡳮
+ 0x21cef: "\x05\x01\x03\x01\x02\x03\x04\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 𡳯
+ 0x21cf0: "\x05\x01\x03\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01\x01\x02\x02\x05\x01", // 𡳰
+ 0x21cf1: "\x05\x01\x03\x03\x01\x01\x05\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𡳱
+ 0x21cf2: "\x05\x01\x03\x03\x01\x01\x05\x03\x04\x04\x03\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𡳲
+ 0x21cf3: "\x05\x01\x03\x03\x01\x01\x05\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𡳳
+ 0x21cf4: "\x04\x01\x05\x02\x05\x01\x03\x05\x04\x01\x01\x02\x02\x01\x05\x01\x03\x03\x05\x04", // 𡳴
+ 0x21cf5: "\x05\x01\x03\x04\x03\x01\x02\x03\x04\x05\x03\x01\x01\x02\x02\x02\x02\x05\x01\x01", // 𡳵
+ 0x21cf6: "\x01\x02\x02\x02\x02\x05\x01\x01\x05\x01\x03\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 𡳶
+ 0x21cf7: "\x05\x01\x03\x01\x02\x05\x02\x02\x01\x03\x03\x02\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 𡳷
+ 0x21cf8: "\x05\x01\x03\x03\x03\x02\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 𡳸
+ 0x21cf9: "\x05\x01\x03\x03\x01\x01\x05\x02\x05\x02\x02\x01\x05\x04\x02\x05\x01\x01\x03\x05\x03\x05", // 𡳹
+ 0x21cfa: "\x05\x01\x03\x03\x01\x01\x05\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 𡳺
+ 0x21cfb: "\x05\x01\x03\x02\x05\x01\x01\x01\x05\x01\x03\x02\x05\x01\x01\x01\x05\x01\x03\x02\x05\x01\x01\x01", // 𡳻
+ 0x21cfc: "\x01\x02\x02\x01\x03\x02\x01\x05\x01\x01\x02\x05\x01\x03\x02\x04\x01\x03\x04\x05\x02\x02\x05\x02", // 𡳼
+ 0x21cfd: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x01\x03\x01\x05\x04\x01\x02\x01", // 𡳽
+ 0x21cfe: "\x05\x02\x05", // 𡳾
+ 0x21cff: "\x02\x05\x01\x02\x01", // 𡳿
+ 0x21d00: "\x05\x02\x01\x01\x02", // 𡴀
+ 0x21d01: "\x05\x02\x03\x05\x05\x04", // 𡴁
+ 0x21d02: "\x05\x02\x03\x05\x02\x05", // 𡴂
+ 0x21d03: "\x01\x05\x01\x05\x02\x03", // 𡴃
+ 0x21d04: "\x05\x02\x03\x04\x05\x05", // 𡴄
+ 0x21d05: "\x05\x02\x03\x02\x05\x02", // 𡴅
+ 0x21d06: "\x05\x02\x03\x04\x01\x03\x04", // 𡴆
+ 0x21d07: "\x05\x02\x03\x01\x01\x01\x02", // 𡴇
+ 0x21d08: "\x01\x05\x05\x02\x02\x05\x02", // 𡴈
+ 0x21d09: "\x01\x05\x02\x05\x03\x05\x04", // 𡴉
+ 0x21d0a: "\x05\x02\x03\x01\x02\x05\x01", // 𡴊
+ 0x21d0b: "\x05\x02\x03\x05\x05\x04\x01\x04", // 𡴋
+ 0x21d0c: "\x03\x04\x01\x04\x03\x05\x02\x02", // 𡴌
+ 0x21d0d: "\x05\x02\x03\x01\x03\x01\x02\x01", // 𡴍
+ 0x21d0e: "\x05\x02\x03\x03\x02\x05\x01\x05\x01", // 𡴎
+ 0x21d0f: "\x05\x02\x03\x03\x04\x02\x05\x01\x01", // 𡴏
+ 0x21d10: "\x05\x02\x03\x02\x05\x01\x01\x01\x02", // 𡴐
+ 0x21d11: "\x05\x02\x03\x03\x04\x02\x05\x01\x02", // 𡴑
+ 0x21d12: "\x05\x02\x03\x01\x03\x04\x01\x05\x04", // 𡴒
+ 0x21d13: "\x03\x02\x05\x03\x04\x01\x05\x02\x05", // 𡴓
+ 0x21d14: "\x05\x02\x03\x01\x03\x04\x04\x05\x04", // 𡴔
+ 0x21d15: "\x02\x05\x02\x03\x01\x05\x05\x04\x01\x04", // 𡴕
+ 0x21d16: "\x05\x02\x03\x03\x04\x04\x03\x01\x01\x02", // 𡴖
+ 0x21d17: "\x05\x02\x03\x02\x05\x01\x03\x02\x05\x01", // 𡴗
+ 0x21d18: "\x03\x01\x03\x04\x04\x03\x01\x05\x02\x03", // 𡴘
+ 0x21d19: "\x05\x02\x03\x03\x02\x05\x01\x01\x01\x02", // 𡴙
+ 0x21d1a: "\x05\x02\x03\x05\x02\x03\x03\x04\x05\x03", // 𡴚
+ 0x21d1b: "\x05\x02\x03\x01\x02\x01\x05\x05\x04\x01\x04", // 𡴛
+ 0x21d1c: "\x05\x02\x03\x03\x04\x03\x04\x02\x05\x01\x01", // 𡴜
+ 0x21d1d: "\x05\x02\x03\x05\x02\x05\x04\x01\x03\x04\x01\x02", // 𡴝
+ 0x21d1e: "\x05\x02\x03\x01\x03\x04\x01\x02\x05\x04\x03\x05", // 𡴞
+ 0x21d1f: "\x05\x02\x03\x03\x04\x02\x01\x02\x01\x01\x01\x02", // 𡴟
+ 0x21d20: "\x05\x02\x03\x05\x02\x03\x05\x02\x02\x01\x02\x01", // 𡴠
+ 0x21d21: "\x05\x02\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01", // 𡴡
+ 0x21d22: "\x01\x05\x02\x05\x04\x03\x01\x02\x02\x04\x03\x01", // 𡴢
+ 0x21d23: "\x01\x05\x02\x05\x03\x04\x04\x03\x05\x01\x01\x02", // 𡴣
+ 0x21d24: "\x03\x04\x03\x04\x03\x02\x03\x04\x03\x04\x05\x02\x03", // 𡴤
+ 0x21d25: "\x05\x02\x03\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 𡴥
+ 0x21d26: "\x05\x02\x03\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𡴦
+ 0x21d27: "\x05\x02\x03\x02\x01\x02\x01\x01\x02\x02\x01\x03\x04\x04\x01\x05", // 𡴧
+ 0x21d28: "\x05\x02\x03\x05\x02\x03\x05\x02\x02\x05\x02\x03\x04\x01\x02", // 𡴨
+ 0x21d29: "\x05\x02\x03\x04\x01\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 𡴩
+ 0x21d2a: "\x05\x02\x03\x01\x03\x04\x05\x02\x03\x01\x03\x04\x05\x02\x02\x01\x03\x04", // 𡴪
+ 0x21d2b: "\x05\x02\x03\x04\x01\x03\x04\x05\x02\x03\x04\x01\x03\x04\x05\x02\x03\x04\x01\x03\x04", // 𡴫
+ 0x21d2c: "\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x05\x02\x03\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x05\x02\x02", // 𡴬
+ 0x21d2d: "\x02\x05\x02\x05", // 𡴭
+ 0x21d2e: "\x02\x05\x02\x05", // 𡴮
+ 0x21d2f: "\x02\x05\x02\x05", // 𡴯
+ 0x21d30: "\x02\x05\x02\x05\x05", // 𡴰
+ 0x21d31: "\x02\x05\x02\x05\x05", // 𡴱
+ 0x21d32: "\x03\x05\x05\x02\x05", // 𡴲
+ 0x21d33: "\x05\x02\x02\x05\x02", // 𡴳
+ 0x21d34: "\x03\x05\x02\x05\x02", // 𡴴
+ 0x21d35: "\x02\x05\x02\x01\x02", // 𡴵
+ 0x21d36: "\x02\x05\x02\x01\x02", // 𡴶
+ 0x21d37: "\x03\x04\x02\x05\x02", // 𡴷
+ 0x21d38: "\x03\x05\x02\x05\x02", // 𡴸
+ 0x21d39: "\x02\x05\x02\x05\x02", // 𡴹
+ 0x21d3a: "\x05\x02\x02\x05\x02", // 𡴺
+ 0x21d3b: "\x05\x03\x02\x05\x02", // 𡴻
+ 0x21d3c: "\x02\x05\x02\x05\x05", // 𡴼
+ 0x21d3d: "\x02\x05\x02\x05\x03", // 𡴽
+ 0x21d3e: "\x02\x05\x02\x05\x01\x05", // 𡴾
+ 0x21d3f: "\x02\x05\x02\x03\x05\x04", // 𡴿
+ 0x21d40: "\x02\x05\x02\x04\x01\x05", // 𡵀
+ 0x21d41: "\x03\x05\x04\x02\x05\x02", // 𡵁
+ 0x21d42: "\x02\x05\x02\x01\x03\x05", // 𡵂
+ 0x21d43: "\x02\x05\x02\x01\x01\x02", // 𡵃
+ 0x21d44: "\x02\x05\x02\x01\x01\x02", // 𡵄
+ 0x21d45: "\x02\x05\x02\x03\x02\x02", // 𡵅
+ 0x21d46: "\x02\x05\x02\x05\x01\x05", // 𡵆
+ 0x21d47: "\x02\x05\x02\x05\x02\x01", // 𡵇
+ 0x21d48: "\x02\x05\x02\x01\x03\x05", // 𡵈
+ 0x21d49: "\x02\x05\x02\x01\x03\x05", // 𡵉
+ 0x21d4a: "\x02\x05\x02\x02\x01\x05", // 𡵊
+ 0x21d4b: "\x02\x05\x02\x02\x01\x05", // 𡵋
+ 0x21d4c: "\x02\x05\x02\x03\x04\x04", // 𡵌
+ 0x21d4d: "\x04\x01\x05\x02\x05\x02", // 𡵍
+ 0x21d4e: "\x03\x05\x04\x02\x05\x02", // 𡵎
+ 0x21d4f: "\x02\x05\x02\x05\x05\x04", // 𡵏
+ 0x21d50: "\x02\x05\x02\x01\x03\x05", // 𡵐
+ 0x21d51: "\x05\x03\x04\x02\x05\x02", // 𡵑
+ 0x21d52: "\x05\x01\x05\x02\x05\x02", // 𡵒
+ 0x21d53: "\x02\x05\x02\x01\x03\x05\x04", // 𡵓
+ 0x21d54: "\x02\x05\x02\x01\x03\x05\x04", // 𡵔
+ 0x21d55: "\x03\x05\x04\x01\x02\x05\x02", // 𡵕
+ 0x21d56: "\x02\x05\x02\x04\x03\x03\x04", // 𡵖
+ 0x21d57: "\x02\x05\x02\x05\x01\x03\x04", // 𡵗
+ 0x21d58: "\x02\x05\x02\x03\x05\x01\x03", // 𡵘
+ 0x21d59: "\x02\x05\x02\x03\x05\x05\x02", // 𡵙
+ 0x21d5a: "\x02\x05\x02\x03\x04\x03\x02", // 𡵚
+ 0x21d5b: "\x02\x05\x02\x03\x04\x03\x04", // 𡵛
+ 0x21d5c: "\x02\x05\x02\x03\x01\x01\x02", // 𡵜
+ 0x21d5d: "\x02\x05\x02\x03\x04\x03\x04", // 𡵝
+ 0x21d5e: "\x02\x05\x02\x01\x01\x01\x02", // 𡵞
+ 0x21d5f: "\x02\x05\x02\x05\x02\x01\x05", // 𡵟
+ 0x21d60: "\x02\x05\x03\x04\x02\x05\x02", // 𡵠
+ 0x21d61: "\x04\x01\x03\x04\x02\x05\x02", // 𡵡
+ 0x21d62: "\x02\x05\x02\x01\x03\x05\x04", // 𡵢
+ 0x21d63: "\x03\x01\x02\x01\x02\x05\x02", // 𡵣
+ 0x21d64: "\x02\x05\x02\x01\x02\x05\x02", // 𡵤
+ 0x21d65: "\x02\x05\x02\x01\x05\x02\x03", // 𡵥
+ 0x21d66: "\x02\x05\x02\x01\x03\x05\x04", // 𡵦
+ 0x21d67: "\x02\x05\x02\x01\x01\x03\x05", // 𡵧
+ 0x21d68: "\x02\x05\x02\x02\x01\x05\x04", // 𡵨
+ 0x21d69: "\x02\x01\x02\x01\x02\x05\x02", // 𡵩
+ 0x21d6a: "\x03\x05\x04\x01\x02\x05\x02", // 𡵪
+ 0x21d6b: "\x02\x05\x02\x03\x02\x01\x05", // 𡵫
+ 0x21d6c: "\x02\x05\x02\x01\x02\x03\x04", // 𡵬
+ 0x21d6d: "\x01\x05\x02\x05\x02\x05\x02", // 𡵭
+ 0x21d6e: "\x02\x05\x02\x01\x05\x05\x04", // 𡵮
+ 0x21d6f: "\x02\x05\x02\x02\x03\x04\x03", // 𡵯
+ 0x21d70: "\x02\x05\x02\x02\x05\x03\x04", // 𡵰
+ 0x21d71: "\x02\x05\x02\x03\x03\x01\x02", // 𡵱
+ 0x21d72: "\x02\x05\x02\x03\x01\x03\x04", // 𡵲
+ 0x21d73: "\x02\x05\x02\x03\x05\x05\x03", // 𡵳
+ 0x21d74: "\x02\x05\x02\x03\x04\x05\x04", // 𡵴
+ 0x21d75: "\x02\x05\x02\x03\x05\x01\x02", // 𡵵
+ 0x21d76: "\x03\x05\x03\x03\x02\x05\x02", // 𡵶
+ 0x21d77: "\x02\x05\x02\x03\x05\x03\x05", // 𡵷
+ 0x21d78: "\x02\x05\x02\x05\x01\x03\x04", // 𡵸
+ 0x21d79: "\x03\x05\x03\x05\x02\x05\x02", // 𡵹
+ 0x21d7a: "\x02\x05\x02\x03\x05\x05\x04", // 𡵺
+ 0x21d7b: "\x02\x05\x02\x04\x01\x03\x05", // 𡵻
+ 0x21d7c: "\x02\x05\x02\x04\x03\x03\x04", // 𡵼
+ 0x21d7d: "\x05\x01\x02\x01\x02\x05\x02", // 𡵽
+ 0x21d7e: "\x05\x02\x01\x05\x02\x05\x02", // 𡵾
+ 0x21d7f: "\x05\x02\x05\x05\x05\x04\x05", // 𡵿
+ 0x21d80: "\x02\x05\x02\x02\x05\x03\x04", // 𡶀
+ 0x21d81: "\x02\x05\x02\x01\x05\x02\x05", // 𡶁
+ 0x21d82: "\x02\x05\x02\x01\x03\x01\x01", // 𡶂
+ 0x21d83: "\x02\x05\x02\x03\x05\x01\x03\x05", // 𡶃
+ 0x21d84: "\x02\x05\x02\x03\x05\x05\x01\x05", // 𡶄
+ 0x21d85: "\x02\x05\x02\x01\x02\x05\x01\x05", // 𡶅
+ 0x21d86: "\x02\x05\x02\x01\x02\x05\x01\x05", // 𡶆
+ 0x21d87: "\x04\x05\x04\x03\x04\x02\x05\x02", // 𡶇
+ 0x21d88: "\x02\x05\x02\x02\x05\x01\x03\x04", // 𡶈
+ 0x21d89: "\x02\x05\x02\x03\x04\x05\x04", // 𡶉
+ 0x21d8a: "\x02\x05\x02\x03\x01\x05\x02\x05", // 𡶊
+ 0x21d8b: "\x02\x05\x02\x05\x01\x03\x03\x05", // 𡶋
+ 0x21d8c: "\x02\x05\x02\x01\x03\x02\x05\x01", // 𡶌
+ 0x21d8d: "\x02\x05\x02\x03\x04\x04\x01\x05", // 𡶍
+ 0x21d8e: "\x02\x05\x02\x01\x01\x02\x03\x04", // 𡶎
+ 0x21d8f: "\x02\x05\x02\x05\x02\x02\x05\x02", // 𡶏
+ 0x21d90: "\x02\x05\x02\x05\x03\x02\x05\x01", // 𡶐
+ 0x21d91: "\x02\x05\x02\x01\x02\x02\x01\x01", // 𡶑
+ 0x21d92: "\x02\x05\x02\x05\x01\x05\x03\x02", // 𡶒
+ 0x21d93: "\x02\x05\x02\x05\x02\x05\x02", // 𡶓
+ 0x21d94: "\x02\x05\x02\x01\x03\x05\x03\x04", // 𡶔
+ 0x21d95: "\x05\x02\x01\x03\x04\x02\x05\x02", // 𡶕
+ 0x21d96: "\x02\x05\x02\x01\x03\x03\x04\x04", // 𡶖
+ 0x21d97: "\x02\x05\x02\x05\x01\x05\x01\x05", // 𡶗
+ 0x21d98: "\x05\x01\x05\x01\x05\x02\x05\x02", // 𡶘
+ 0x21d99: "\x02\x05\x02\x01\x03\x05\x03\x04", // 𡶙
+ 0x21d9a: "\x02\x05\x02\x02\x05\x01\x02\x01", // 𡶚
+ 0x21d9b: "\x02\x05\x02\x02\x01\x01\x02\x04", // 𡶛
+ 0x21d9c: "\x02\x05\x02\x03\x03\x01\x02\x04", // 𡶜
+ 0x21d9d: "\x02\x05\x02\x02\x05\x02\x05\x01", // 𡶝
+ 0x21d9e: "\x02\x05\x02\x03\x05\x04\x04\x04", // 𡶞
+ 0x21d9f: "\x02\x05\x02\x03\x05\x04\x05\x05", // 𡶟
+ 0x21da0: "\x03\x01\x04\x03\x01\x02\x05\x02", // 𡶠
+ 0x21da1: "\x02\x05\x02\x04\x03\x01\x01\x02", // 𡶡
+ 0x21da2: "\x02\x05\x02\x02\x05\x01\x03\x05", // 𡶢
+ 0x21da3: "\x02\x05\x02\x03\x04\x03\x05\x04", // 𡶣
+ 0x21da4: "\x02\x05\x02\x03\x05\x01\x01\x02", // 𡶤
+ 0x21da5: "\x02\x05\x02\x05\x03\x02\x05\x01", // 𡶥
+ 0x21da6: "\x02\x05\x02\x03\x02\x01\x02\x01", // 𡶦
+ 0x21da7: "\x02\x05\x02\x04\x01\x04\x03\x01", // 𡶧
+ 0x21da8: "\x02\x05\x02\x01\x03\x03\x01\x02", // 𡶨
+ 0x21da9: "\x02\x05\x02\x02\x01\x02\x05\x02", // 𡶩
+ 0x21daa: "\x01\x03\x02\x05\x01\x02\x05\x02", // 𡶪
+ 0x21dab: "\x02\x05\x02\x03\x02\x05\x01\x05\x01", // 𡶫
+ 0x21dac: "\x02\x05\x03\x04\x03\x04\x02\x05\x02", // 𡶬
+ 0x21dad: "\x02\x05\x02\x01\x01\x03\x02\x02\x02", // 𡶭
+ 0x21dae: "\x02\x05\x02\x04\x05\x03\x01\x01\x05", // 𡶮
+ 0x21daf: "\x02\x05\x02\x03\x02\x05\x03\x04\x01", // 𡶯
+ 0x21db0: "\x02\x05\x02\x01\x02\x01\x03\x01\x05", // 𡶰
+ 0x21db1: "\x02\x05\x02\x03\x04\x01\x03\x05\x04", // 𡶱
+ 0x21db2: "\x02\x05\x02\x05\x03\x01\x02\x03\x04", // 𡶲
+ 0x21db3: "\x05\x03\x03\x05\x04\x01\x02\x05\x02", // 𡶳
+ 0x21db4: "\x02\x05\x02\x04\x01\x04\x03\x01\x03", // 𡶴
+ 0x21db5: "\x02\x05\x02\x01\x02\x02\x01\x03\x04", // 𡶵
+ 0x21db6: "\x02\x05\x02\x03\x05\x04\x01\x05\x02", // 𡶶
+ 0x21db7: "\x02\x05\x02\x03\x05\x04\x01\x05\x02", // 𡶷
+ 0x21db8: "\x02\x05\x01\x02\x05\x02\x02\x05\x02", // 𡶸
+ 0x21db9: "\x02\x05\x02\x05\x05\x04\x01\x01\x05", // 𡶹
+ 0x21dba: "\x02\x05\x02\x03\x05\x01\x02\x05\x02", // 𡶺
+ 0x21dbb: "\x02\x05\x02\x04\x04\x05\x05\x02\x01", // 𡶻
+ 0x21dbc: "\x02\x05\x02\x01\x02\x05\x03\x05\x01", // 𡶼
+ 0x21dbd: "\x02\x05\x02\x05\x02\x05\x03\x04\x01", // 𡶽
+ 0x21dbe: "\x02\x05\x02\x01\x03\x02\x05\x01\x01", // 𡶾
+ 0x21dbf: "\x02\x05\x02\x02\x03\x04\x02\x03\x04", // 𡶿
+ 0x21dc0: "\x02\x04\x03\x01\x03\x05\x02\x05\x02", // 𡷀
+ 0x21dc1: "\x02\x05\x02\x03\x04\x04\x01\x03\x04", // 𡷁
+ 0x21dc2: "\x02\x05\x02\x03\x05\x04\x02\x05\x01", // 𡷂
+ 0x21dc3: "\x02\x05\x02\x03\x05\x01\x01\x05\x04", // 𡷃
+ 0x21dc4: "\x02\x05\x02\x03\x05\x01\x01\x02\x01", // 𡷄
+ 0x21dc5: "\x02\x05\x02\x01\x02\x01\x01\x02\x01", // 𡷅
+ 0x21dc6: "\x01\x02\x05\x01\x01\x01\x02\x05\x02", // 𡷆
+ 0x21dc7: "\x02\x05\x01\x02\x05\x01\x02\x05\x02", // 𡷇
+ 0x21dc8: "\x02\x05\x02\x02\x05\x02\x02\x05\x02", // 𡷈
+ 0x21dc9: "\x02\x05\x02\x03\x04\x04\x04\x03\x02", // 𡷉
+ 0x21dca: "\x03\x02\x05\x04\x01\x05\x02\x05\x02", // 𡷊
+ 0x21dcb: "\x02\x05\x02\x03\x04\x05\x04\x03\x05", // 𡷋
+ 0x21dcc: "\x02\x05\x02\x02\x05\x02\x02\x01\x01", // 𡷌
+ 0x21dcd: "\x02\x05\x02\x04\x04\x01\x01\x02\x01", // 𡷍
+ 0x21dce: "\x02\x05\x02\x04\x04\x05\x01\x01\x02", // 𡷎
+ 0x21dcf: "\x02\x05\x02\x05\x01\x01\x01\x01\x02", // 𡷏
+ 0x21dd0: "\x02\x05\x02\x05\x01\x01\x05\x03\x04", // 𡷐
+ 0x21dd1: "\x02\x05\x02\x01\x01\x03\x05\x03\x04", // 𡷑
+ 0x21dd2: "\x02\x01\x01\x01\x05\x01\x02\x05\x02", // 𡷒
+ 0x21dd3: "\x02\x05\x02\x01\x03\x04\x01\x03\x02", // 𡷓
+ 0x21dd4: "\x02\x05\x02\x03\x05\x01\x02\x03\x04", // 𡷔
+ 0x21dd5: "\x02\x05\x02\x05\x01\x03\x03\x01\x01\x05", // 𡷕
+ 0x21dd6: "\x02\x05\x02\x01\x02\x05\x01\x01\x01\x02", // 𡷖
+ 0x21dd7: "\x02\x05\x02\x04\x04\x05\x01\x01\x03\x05", // 𡷗
+ 0x21dd8: "\x02\x05\x02\x02\x05\x01\x05\x03\x02\x02", // 𡷘
+ 0x21dd9: "\x02\x05\x02\x05\x01\x01\x03\x05\x02", // 𡷙
+ 0x21dda: "\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01", // 𡷚
+ 0x21ddb: "\x02\x05\x02\x02\x05\x01\x01\x01\x01\x02", // 𡷛
+ 0x21ddc: "\x02\x05\x02\x01\x03\x04\x01\x01\x02\x01", // 𡷜
+ 0x21ddd: "\x02\x05\x02\x01\x02\x02\x01\x01\x01\x05", // 𡷝
+ 0x21dde: "\x02\x05\x02\x05\x01\x05\x04\x05\x04\x04", // 𡷞
+ 0x21ddf: "\x02\x05\x02\x01\x01\x02\x01\x01\x03\x02", // 𡷟
+ 0x21de0: "\x02\x05\x02\x01\x02\x01\x03\x05\x05\x04", // 𡷠
+ 0x21de1: "\x02\x05\x02\x02\x05\x01\x03\x05\x04\x01", // 𡷡
+ 0x21de2: "\x02\x05\x02\x04\x01\x05\x04\x05\x04\x04", // 𡷢
+ 0x21de3: "\x02\x05\x02\x03\x04\x01\x01\x02\x03\x04", // 𡷣
+ 0x21de4: "\x02\x05\x02\x02\x05\x01\x01\x01\x03\x04", // 𡷤
+ 0x21de5: "\x03\x01\x02\x01\x02\x05\x01\x02\x05\x02", // 𡷥
+ 0x21de6: "\x05\x01\x01\x05\x04\x05\x02\x02\x05\x02", // 𡷦
+ 0x21de7: "\x02\x05\x02\x02\x05\x01\x03\x04\x01\x05", // 𡷧
+ 0x21de8: "\x02\x05\x02\x01\x05\x05\x05\x01\x02\x01", // 𡷨
+ 0x21de9: "\x03\x01\x02\x03\x04\x03\x04\x01\x05\x02", // 𡷩
+ 0x21dea: "\x02\x05\x02\x02\x05\x02\x01\x01\x03\x04", // 𡷪
+ 0x21deb: "\x02\x05\x02\x01\x03\x05\x05\x03\x04", // 𡷫
+ 0x21dec: "\x02\x05\x02\x02\x05\x02\x03\x04\x01\x05", // 𡷬
+ 0x21ded: "\x02\x05\x02\x03\x05\x02\x05\x01\x03\x05", // 𡷭
+ 0x21dee: "\x02\x05\x02\x04\x01\x02\x05\x01\x05\x04", // 𡷮
+ 0x21def: "\x02\x05\x02\x01\x02\x03\x04\x03\x04\x01", // 𡷯
+ 0x21df0: "\x02\x05\x02\x01\x03\x01\x01\x05\x03\x04", // 𡷰
+ 0x21df1: "\x02\x05\x02\x05\x01\x03\x03\x01\x01\x05", // 𡷱
+ 0x21df2: "\x02\x05\x02\x01\x02\x01\x04\x01\x03\x05", // 𡷲
+ 0x21df3: "\x02\x05\x02\x01\x03\x05\x01\x01\x03\x04", // 𡷳
+ 0x21df4: "\x02\x05\x02\x02\x05\x02\x03\x04\x01\x05", // 𡷴
+ 0x21df5: "\x02\x05\x02\x02\x05\x01\x01\x02\x03\x04", // 𡷵
+ 0x21df6: "\x02\x05\x02\x02\x05\x02\x03\x04\x01\x02", // 𡷶
+ 0x21df7: "\x02\x05\x02\x05\x01\x03\x02\x05\x03\x04", // 𡷷
+ 0x21df8: "\x02\x05\x02\x01\x02\x01\x03\x05\x02\x01", // 𡷸
+ 0x21df9: "\x02\x05\x02\x02\x05\x01\x01\x01\x03\x05", // 𡷹
+ 0x21dfa: "\x01\x02\x02\x02\x03\x04\x02\x05\x02", // 𡷺
+ 0x21dfb: "\x02\x05\x02\x01\x02\x03\x04\x02\x05\x02", // 𡷻
+ 0x21dfc: "\x02\x05\x02\x01\x02\x03\x04\x02\x05\x02", // 𡷼
+ 0x21dfd: "\x02\x05\x02\x01\x02\x05\x01\x02\x03\x04", // 𡷽
+ 0x21dfe: "\x02\x05\x02\x01\x02\x05\x03\x05\x01\x01", // 𡷾
+ 0x21dff: "\x02\x05\x02\x02\x05\x01\x02\x01\x03\x04", // 𡷿
+ 0x21e00: "\x02\x05\x02\x02\x05\x03\x04\x02\x05\x01", // 𡸀
+ 0x21e01: "\x03\x01\x01\x02\x02\x01\x02\x05\x02", // 𡸁
+ 0x21e02: "\x02\x05\x02\x03\x04\x02\x02\x03\x04", // 𡸂
+ 0x21e03: "\x02\x05\x02\x03\x04\x01\x04\x04\x03\x01", // 𡸃
+ 0x21e04: "\x02\x05\x02\x03\x04\x03\x04\x01\x02\x01", // 𡸄
+ 0x21e05: "\x02\x05\x02\x05\x01\x05\x03\x01\x03\x04", // 𡸅
+ 0x21e06: "\x02\x05\x02\x05\x02\x01\x01\x02\x05\x02", // 𡸆
+ 0x21e07: "\x02\x05\x02\x03\x05\x04\x01\x02\x03\x04", // 𡸇
+ 0x21e08: "\x02\x05\x02\x02\x05\x01\x01\x04\x03\x01", // 𡸈
+ 0x21e09: "\x02\x05\x02\x03\x01\x02\x03\x04\x02\x02", // 𡸉
+ 0x21e0a: "\x02\x05\x02\x03\x05\x02\x05\x01\x03\x05", // 𡸊
+ 0x21e0b: "\x02\x05\x02\x02\x05\x03\x04\x03\x04\x01", // 𡸋
+ 0x21e0c: "\x02\x05\x02\x03\x02\x04\x01\x01\x02\x01", // 𡸌
+ 0x21e0d: "\x02\x05\x02\x02\x05\x02\x05\x01\x05\x04", // 𡸍
+ 0x21e0e: "\x02\x05\x02\x05\x01\x01\x05\x04\x05\x02", // 𡸎
+ 0x21e0f: "\x02\x05\x02\x03\x02\x04\x01\x04\x03\x01", // 𡸏
+ 0x21e10: "\x02\x05\x02\x05\x02\x03\x03\x05\x05\x03", // 𡸐
+ 0x21e11: "\x02\x05\x02\x02\x05\x01\x01\x03\x05\x03\x03", // 𡸑
+ 0x21e12: "\x02\x05\x02\x03\x05\x01\x03\x01\x03\x04\x04", // 𡸒
+ 0x21e13: "\x05\x02\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𡸓
+ 0x21e14: "\x02\x05\x02\x03\x05\x01\x02\x01\x01\x02\x01", // 𡸔
+ 0x21e15: "\x02\x05\x02\x04\x04\x05\x03\x05\x05\x01\x05", // 𡸕
+ 0x21e16: "\x02\x05\x02\x02\x05\x01\x01\x01\x02\x03\x04", // 𡸖
+ 0x21e17: "\x02\x05\x02\x01\x02\x05\x01\x01\x01\x02\x05", // 𡸗
+ 0x21e18: "\x02\x05\x02\x01\x02\x02\x01\x01\x01\x05\x04", // 𡸘
+ 0x21e19: "\x02\x05\x02\x02\x05\x03\x01\x02\x03\x04\x01", // 𡸙
+ 0x21e1a: "\x02\x05\x02\x01\x05\x03\x04\x01\x05\x03\x04", // 𡸚
+ 0x21e1b: "\x02\x05\x02\x03\x04\x01\x05\x03\x05\x03\x04", // 𡸛
+ 0x21e1c: "\x02\x05\x02\x01\x02\x02\x05\x01\x01\x01\x01", // 𡸜
+ 0x21e1d: "\x02\x05\x02\x04\x01\x03\x05\x03\x04\x01\x02", // 𡸝
+ 0x21e1e: "\x02\x05\x02\x03\x05\x03\x02\x01\x05\x01\x01", // 𡸞
+ 0x21e1f: "\x02\x05\x02\x05\x05\x05\x02\x05\x01\x02\x01", // 𡸟
+ 0x21e20: "\x02\x05\x02\x03\x02\x05\x01\x05\x01\x01\x02", // 𡸠
+ 0x21e21: "\x01\x03\x02\x05\x01\x02\x05\x01\x02\x05\x02", // 𡸡
+ 0x21e22: "\x02\x05\x02\x03\x02\x01\x05\x01\x01\x03\x05", // 𡸢
+ 0x21e23: "\x02\x05\x02\x03\x02\x01\x05\x01\x01\x03\x05", // 𡸣
+ 0x21e24: "\x02\x05\x02\x05\x02\x01\x03\x01\x05\x03\x04", // 𡸤
+ 0x21e25: "\x02\x05\x02\x04\x04\x05\x03\x05\x04\x05\x05", // 𡸥
+ 0x21e26: "\x02\x05\x02\x02\x05\x01\x01\x05\x01\x03\x04", // 𡸦
+ 0x21e27: "\x05\x01\x05\x01\x05\x02\x05\x02\x02\x05\x02", // 𡸧
+ 0x21e28: "\x02\x05\x02\x01\x02\x02\x01\x01\x01\x05\x04", // 𡸨
+ 0x21e29: "\x02\x05\x02\x04\x03\x01\x01\x03\x04\x05\x05", // 𡸩
+ 0x21e2a: "\x02\x05\x02\x01\x02\x05\x01\x05\x01\x01\x02", // 𡸪
+ 0x21e2b: "\x02\x05\x02\x03\x01\x01\x03\x03\x01\x01\x02", // 𡸫
+ 0x21e2c: "\x02\x05\x02\x03\x02\x05\x01\x05\x01\x05\x01", // 𡸬
+ 0x21e2d: "\x02\x01\x05\x05\x01\x02\x01\x02\x05\x02", // 𡸭
+ 0x21e2e: "\x02\x05\x02\x05\x01\x01\x02\x04\x01\x03\x04", // 𡸮
+ 0x21e2f: "\x02\x05\x02\x03\x04\x04\x03\x01\x02\x03\x04", // 𡸯
+ 0x21e30: "\x02\x05\x02\x04\x05\x01\x03\x04\x01\x05\x03", // 𡸰
+ 0x21e31: "\x02\x05\x02\x04\x03\x03\x04\x02\x05\x01\x01", // 𡸱
+ 0x21e32: "\x02\x05\x02\x01\x02\x05\x01\x01\x01\x02\x05", // 𡸲
+ 0x21e33: "\x02\x05\x02\x01\x02\x01\x02\x02\x01\x03\x05", // 𡸳
+ 0x21e34: "\x02\x05\x02\x03\x04\x01\x02\x05\x01\x03\x04", // 𡸴
+ 0x21e35: "\x02\x05\x02\x03\x04\x04\x03\x05\x01\x01\x02", // 𡸵
+ 0x21e36: "\x02\x05\x02\x04\x04\x05\x01\x01\x02\x03\x04", // 𡸶
+ 0x21e37: "\x02\x05\x02\x01\x02\x02\x01\x01\x01\x03\x04", // 𡸷
+ 0x21e38: "\x01\x02\x05\x01\x01\x02\x01\x04\x02\x05\x02", // 𡸸
+ 0x21e39: "\x02\x05\x02\x01\x02\x05\x02\x04\x01\x03\x04", // 𡸹
+ 0x21e3a: "\x02\x05\x02\x01\x01\x02\x01\x03\x05\x01\x01", // 𡸺
+ 0x21e3b: "\x02\x05\x02\x01\x02\x03\x04\x03\x04\x03\x02", // 𡸻
+ 0x21e3c: "\x02\x05\x02\x01\x02\x01\x02\x05\x01\x01\x02", // 𡸼
+ 0x21e3d: "\x02\x05\x02\x01\x02\x02\x05\x01\x01\x01\x01", // 𡸽
+ 0x21e3e: "\x02\x05\x02\x02\x05\x01\x02\x05\x01\x01\x05", // 𡸾
+ 0x21e3f: "\x02\x05\x02\x02\x05\x01\x02\x05\x02\x05\x02", // 𡸿
+ 0x21e40: "\x02\x05\x02\x03\x04\x05\x04\x03\x01\x03\x04", // 𡹀
+ 0x21e41: "\x03\x01\x02\x02\x01\x01\x01\x05\x02\x05\x02", // 𡹁
+ 0x21e42: "\x02\x05\x02\x03\x04\x04\x03\x04\x05\x01\x02", // 𡹂
+ 0x21e43: "\x02\x05\x02\x01\x02\x01\x03\x05\x03\x05\x04", // 𡹃
+ 0x21e44: "\x02\x05\x02\x01\x02\x01\x05\x05\x01\x02\x01", // 𡹄
+ 0x21e45: "\x01\x02\x01\x05\x05\x01\x02\x01\x02\x05\x02", // 𡹅
+ 0x21e46: "\x02\x05\x02\x01\x02\x01\x05\x05\x04\x01\x04", // 𡹆
+ 0x21e47: "\x02\x05\x02\x01\x02\x03\x04\x01\x02\x03\x04", // 𡹇
+ 0x21e48: "\x02\x05\x02\x01\x05\x01\x01\x02\x01\x03\x04", // 𡹈
+ 0x21e49: "\x02\x05\x02\x02\x01\x02\x01\x01\x02\x05\x04", // 𡹉
+ 0x21e4a: "\x02\x05\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 𡹊
+ 0x21e4b: "\x02\x05\x02\x02\x05\x01\x01\x04\x01\x03\x04", // 𡹋
+ 0x21e4c: "\x02\x05\x02\x02\x05\x01\x01\x03\x05\x01\x01", // 𡹌
+ 0x21e4d: "\x05\x02\x02\x02\x05\x01\x02\x02\x05\x01\x01", // 𡹍
+ 0x21e4e: "\x02\x05\x02\x02\x05\x02\x05\x01\x01\x01\x01", // 𡹎
+ 0x21e4f: "\x02\x05\x02\x02\x05\x05\x02\x02\x05\x02\x01", // 𡹏
+ 0x21e50: "\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𡹐
+ 0x21e51: "\x02\x05\x02\x03\x04\x04\x03\x01\x01\x02\x01", // 𡹑
+ 0x21e52: "\x02\x05\x02\x03\x04\x03\x04\x02\x05\x01\x01", // 𡹒
+ 0x21e53: "\x02\x05\x02\x03\x04\x04\x05\x04\x05\x04\x04", // 𡹓
+ 0x21e54: "\x02\x05\x02\x03\x05\x01\x01\x03\x05\x01\x01", // 𡹔
+ 0x21e55: "\x02\x05\x02\x04\x01\x03\x04\x05\x02\x03\x05", // 𡹕
+ 0x21e56: "\x02\x05\x02\x04\x03\x03\x04\x04\x03\x03\x04", // 𡹖
+ 0x21e57: "\x02\x05\x02\x04\x04\x05\x03\x04\x05\x01\x05", // 𡹗
+ 0x21e58: "\x04\x05\x01\x03\x03\x01\x03\x04\x02\x05\x02", // 𡹘
+ 0x21e59: "\x02\x05\x02\x05\x01\x01\x04\x05\x02\x05\x02", // 𡹙
+ 0x21e5a: "\x01\x02\x03\x04\x01\x02\x03\x04\x02\x05\x02", // 𡹚
+ 0x21e5b: "\x02\x05\x02\x01\x03\x04\x02\x05\x01\x01\x05", // 𡹛
+ 0x21e5c: "\x02\x05\x02\x03\x01\x02\x03\x04\x05\x03\x01", // 𡹜
+ 0x21e5d: "\x02\x05\x02\x04\x04\x05\x03\x04\x01\x02\x01", // 𡹝
+ 0x21e5e: "\x02\x05\x02\x04\x01\x02\x05\x01\x02\x03\x04", // 𡹞
+ 0x21e5f: "\x02\x05\x02\x01\x02\x03\x04\x04\x05\x03\x05", // 𡹟
+ 0x21e60: "\x02\x05\x02\x04\x04\x05\x02\x05\x01\x01\x01", // 𡹠
+ 0x21e61: "\x02\x05\x02\x04\x01\x02\x05\x01\x02\x03\x04", // 𡹡
+ 0x21e62: "\x02\x05\x02\x03\x03\x01\x02\x04\x05\x04", // 𡹢
+ 0x21e63: "\x02\x05\x02\x05\x02\x01\x02\x05\x01\x02", // 𡹣
+ 0x21e64: "\x02\x05\x02\x02\x05\x03\x01\x02\x03\x04\x01", // 𡹤
+ 0x21e65: "\x02\x05\x02\x03\x05\x03\x05\x02\x01\x02\x01", // 𡹥
+ 0x21e66: "\x02\x05\x02\x04\x04\x05\x01\x02\x01\x03\x04", // 𡹦
+ 0x21e67: "\x02\x05\x02\x02\x01\x01\x02\x03\x04\x05\x04", // 𡹧
+ 0x21e68: "\x02\x05\x02\x02\x05\x01\x01\x04\x05\x05\x04", // 𡹨
+ 0x21e69: "\x01\x02\x05\x01\x02\x05\x05\x04\x02\x05\x02", // 𡹩
+ 0x21e6a: "\x02\x05\x02\x01\x05\x02\x05\x01\x05\x04\x01", // 𡹪
+ 0x21e6b: "\x02\x05\x02\x03\x05\x01\x03\x02\x05\x02\x05\x01", // 𡹫
+ 0x21e6c: "\x02\x05\x02\x02\x05\x01\x02\x02\x05\x02\x05\x01", // 𡹬
+ 0x21e6d: "\x02\x05\x02\x04\x04\x05\x01\x05\x04\x01\x02\x01", // 𡹭
+ 0x21e6e: "\x02\x05\x02\x03\x04\x01\x02\x05\x01\x01\x03\x02", // 𡹮
+ 0x21e6f: "\x02\x05\x02\x02\x05\x02\x05\x01\x01\x05\x04", // 𡹯
+ 0x21e70: "\x02\x05\x02\x01\x02\x01\x02\x05\x04\x05\x02\x03", // 𡹰
+ 0x21e71: "\x02\x05\x02\x05\x05\x04\x04\x04\x04\x01\x01\x05", // 𡹱
+ 0x21e72: "\x02\x05\x02\x05\x02\x01\x03\x04\x03\x05\x04\x01", // 𡹲
+ 0x21e73: "\x02\x05\x02\x03\x05\x05\x04\x01\x05\x05\x04", // 𡹳
+ 0x21e74: "\x02\x05\x02\x03\x01\x01\x02\x02\x01\x02\x03\x04", // 𡹴
+ 0x21e75: "\x02\x05\x02\x03\x02\x05\x01\x03\x01\x01\x03\x04", // 𡹵
+ 0x21e76: "\x02\x05\x02\x01\x02\x05\x01\x01\x05\x03\x01\x05", // 𡹶
+ 0x21e77: "\x02\x05\x02\x05\x02\x03\x05\x04\x01\x05\x02", // 𡹷
+ 0x21e78: "\x02\x05\x02\x03\x05\x03\x03\x04\x04\x05\x04\x04", // 𡹸
+ 0x21e79: "\x01\x02\x02\x05\x01\x03\x05\x04\x01\x02\x05\x02", // 𡹹
+ 0x21e7a: "\x02\x05\x02\x02\x04\x03\x03\x05\x04\x01\x02\x02", // 𡹺
+ 0x21e7b: "\x02\x05\x02\x01\x03\x01\x02\x01\x01\x01\x05", // 𡹻
+ 0x21e7c: "\x02\x05\x02\x01\x03\x04\x01\x01\x01\x02\x05\x01", // 𡹼
+ 0x21e7d: "\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04\x05", // 𡹽
+ 0x21e7e: "\x02\x05\x02\x02\x05\x01\x01\x01\x02\x05\x03\x04", // 𡹾
+ 0x21e7f: "\x02\x05\x02\x01\x03\x04\x01\x02\x05\x04\x03\x05", // 𡹿
+ 0x21e80: "\x02\x05\x02\x04\x04\x05\x03\x05\x04\x02\x05\x01", // 𡺀
+ 0x21e81: "\x02\x05\x02\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 𡺁
+ 0x21e82: "\x02\x05\x02\x04\x05\x01\x03\x02\x05\x01\x02\x02", // 𡺂
+ 0x21e83: "\x02\x05\x02\x04\x01\x02\x03\x05\x04\x01\x02\x04", // 𡺃
+ 0x21e84: "\x02\x05\x02\x01\x02\x03\x04\x01\x01\x05\x03\x04", // 𡺄
+ 0x21e85: "\x02\x05\x02\x05\x01\x01\x01\x01\x02\x05\x04", // 𡺅
+ 0x21e86: "\x05\x02\x01\x03\x03\x05\x01\x01\x02\x05\x02", // 𡺆
+ 0x21e87: "\x02\x05\x02\x05\x02\x03\x02\x05\x01\x05\x01", // 𡺇
+ 0x21e88: "\x02\x05\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 𡺈
+ 0x21e89: "\x02\x05\x02\x01\x03\x02\x05\x01\x01\x02\x01\x01", // 𡺉
+ 0x21e8a: "\x02\x05\x02\x03\x04\x03\x04\x02\x05\x01\x01\x01", // 𡺊
+ 0x21e8b: "\x02\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𡺋
+ 0x21e8c: "\x02\x05\x02\x03\x05\x02\x05\x03\x04\x01\x03\x04", // 𡺌
+ 0x21e8d: "\x02\x05\x02\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𡺍
+ 0x21e8e: "\x02\x05\x02\x03\x05\x02\x05\x01\x03\x04\x04\x04", // 𡺎
+ 0x21e8f: "\x02\x05\x02\x03\x01\x01\x03\x04\x03\x05\x03\x04", // 𡺏
+ 0x21e90: "\x02\x05\x02\x01\x02\x01\x03\x02\x05\x01\x01", // 𡺐
+ 0x21e91: "\x02\x05\x02\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 𡺑
+ 0x21e92: "\x02\x05\x02\x01\x03\x05\x01\x05\x01\x05\x03\x04", // 𡺒
+ 0x21e93: "\x02\x05\x02\x01\x05\x03\x05\x03\x02\x05\x01\x01", // 𡺓
+ 0x21e94: "\x02\x05\x01\x01\x01\x02\x01\x03\x04\x02\x05\x02", // 𡺔
+ 0x21e95: "\x02\x05\x02\x02\x05\x01\x01\x01\x03\x04\x05\x03", // 𡺕
+ 0x21e96: "\x02\x05\x02\x02\x05\x05\x04\x05\x05\x04\x05\x02", // 𡺖
+ 0x21e97: "\x02\x05\x02\x03\x01\x01\x03\x02\x05\x01\x01\x01", // 𡺗
+ 0x21e98: "\x02\x05\x02\x03\x01\x02\x03\x04\x04\x03\x03\x04", // 𡺘
+ 0x21e99: "\x02\x05\x02\x03\x02\x05\x01\x01\x02\x05\x03\x04", // 𡺙
+ 0x21e9a: "\x02\x05\x02\x04\x03\x01\x02\x05\x03\x05\x01\x01", // 𡺚
+ 0x21e9b: "\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04\x02", // 𡺛
+ 0x21e9c: "\x02\x05\x02\x03\x04\x05\x03\x01\x05\x05\x04", // 𡺜
+ 0x21e9d: "\x02\x05\x02\x03\x05\x01\x03\x03\x01\x01\x03\x04", // 𡺝
+ 0x21e9e: "\x02\x05\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 𡺞
+ 0x21e9f: "\x02\x05\x02\x04\x04\x05\x01\x02\x05\x01\x01\x01", // 𡺟
+ 0x21ea0: "\x02\x05\x02\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 𡺠
+ 0x21ea1: "\x02\x05\x02\x05\x03\x05\x04\x02\x05\x02\x02\x01", // 𡺡
+ 0x21ea2: "\x02\x05\x02\x02\x05\x01\x01\x01\x03\x04\x02\x02", // 𡺢
+ 0x21ea3: "\x02\x05\x02\x04\x01\x02\x05\x01\x04\x05\x01\x02", // 𡺣
+ 0x21ea4: "\x02\x05\x02\x03\x05\x01\x02\x05\x01\x02\x01\x04", // 𡺤
+ 0x21ea5: "\x02\x05\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𡺥
+ 0x21ea6: "\x02\x05\x02\x05\x03\x05\x04\x02\x05\x02\x02\x01", // 𡺦
+ 0x21ea7: "\x03\x05\x05\x01\x01\x03\x01\x03\x04\x02\x05\x02", // 𡺧
+ 0x21ea8: "\x02\x05\x02\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 𡺨
+ 0x21ea9: "\x02\x05\x02\x02\x05\x05\x02\x05\x02\x05\x01", // 𡺩
+ 0x21eaa: "\x02\x05\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 𡺪
+ 0x21eab: "\x02\x05\x02\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01", // 𡺫
+ 0x21eac: "\x02\x05\x02\x04\x03\x01\x03\x04\x02\x05\x02\x02\x01", // 𡺬
+ 0x21ead: "\x02\x05\x02\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𡺭
+ 0x21eae: "\x02\x05\x02\x01\x03\x03\x05\x04\x01\x05\x02\x01\x05", // 𡺮
+ 0x21eaf: "\x02\x05\x02\x03\x05\x04\x01\x03\x01\x01\x02\x05\x02", // 𡺯
+ 0x21eb0: "\x02\x05\x02\x05\x02\x04\x01\x04\x03\x01\x01\x02", // 𡺰
+ 0x21eb1: "\x02\x05\x02\x05\x04\x05\x02\x03\x03\x05\x04\x05\x03", // 𡺱
+ 0x21eb2: "\x02\x05\x02\x05\x02\x05\x04\x03\x05\x03\x05\x04", // 𡺲
+ 0x21eb3: "\x02\x01\x03\x05\x03\x03\x01\x03\x05\x03\x03\x05\x02", // 𡺳
+ 0x21eb4: "\x02\x05\x02\x04\x04\x05\x03\x05\x05\x02\x02\x05\x02", // 𡺴
+ 0x21eb5: "\x02\x05\x02\x03\x04\x04\x03\x05\x03\x03\x01\x02\x03", // 𡺵
+ 0x21eb6: "\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x02\x05\x02", // 𡺶
+ 0x21eb7: "\x02\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x05\x04", // 𡺷
+ 0x21eb8: "\x02\x05\x02\x01\x02\x01\x03\x03\x05\x02\x05\x01\x01", // 𡺸
+ 0x21eb9: "\x02\x05\x02\x04\x03\x01\x01\x03\x04\x03\x01\x01\x02", // 𡺹
+ 0x21eba: "\x02\x05\x02\x03\x02\x05\x01\x01\x01\x03\x05\x01\x05", // 𡺺
+ 0x21ebb: "\x02\x05\x02\x01\x03\x02\x05\x01\x05\x04\x01\x02\x01", // 𡺻
+ 0x21ebc: "\x02\x05\x02\x03\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 𡺼
+ 0x21ebd: "\x02\x05\x02\x01\x02\x02\x04\x03\x01\x02\x05\x01\x01", // 𡺽
+ 0x21ebe: "\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02", // 𡺾
+ 0x21ebf: "\x02\x05\x02\x05\x02\x01\x02\x01\x03\x05\x03\x05\x04", // 𡺿
+ 0x21ec0: "\x02\x05\x02\x02\x05\x02\x03\x05\x04\x01\x01\x01\x02", // 𡻀
+ 0x21ec1: "\x02\x05\x02\x03\x02\x01\x01\x02\x05\x01\x01\x05\x04", // 𡻁
+ 0x21ec2: "\x02\x05\x02\x01\x01\x02\x01\x01\x03\x02\x05\x01\x01", // 𡻂
+ 0x21ec3: "\x02\x05\x02\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𡻃
+ 0x21ec4: "\x02\x05\x02\x02\x05\x01\x01\x01\x02\x01\x01\x02\x04", // 𡻄
+ 0x21ec5: "\x02\x05\x02\x03\x02\x05\x01\x01\x01\x05\x02\x05\x02", // 𡻅
+ 0x21ec6: "\x02\x05\x02\x03\x02\x05\x01\x01\x01\x03\x04\x01\x02", // 𡻆
+ 0x21ec7: "\x02\x05\x02\x03\x02\x05\x01\x01\x01\x01\x01\x01\x02", // 𡻇
+ 0x21ec8: "\x02\x05\x02\x01\x01\x01\x03\x04\x03\x01\x02\x03\x04", // 𡻈
+ 0x21ec9: "\x02\x05\x02\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01", // 𡻉
+ 0x21eca: "\x02\x05\x02\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 𡻊
+ 0x21ecb: "\x02\x05\x02\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01", // 𡻋
+ 0x21ecc: "\x02\x05\x02\x02\x05\x02\x01\x03\x01\x01\x05\x03\x04", // 𡻌
+ 0x21ecd: "\x02\x05\x02\x02\x05\x02\x03\x01\x02\x01\x05\x03\x04", // 𡻍
+ 0x21ece: "\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03", // 𡻎
+ 0x21ecf: "\x02\x05\x02\x03\x04\x03\x04\x01\x02\x05\x04\x03\x05", // 𡻏
+ 0x21ed0: "\x02\x05\x02\x03\x04\x05\x04\x05\x04\x01\x05\x04\x01", // 𡻐
+ 0x21ed1: "\x02\x05\x02\x04\x05\x01\x03\x05\x03\x03\x04\x03\x04", // 𡻑
+ 0x21ed2: "\x05\x04\x05\x02\x03\x03\x05\x04\x05\x03\x02\x05\x02", // 𡻒
+ 0x21ed3: "\x02\x05\x02\x03\x02\x04\x01\x04\x03\x01\x02\x05\x01", // 𡻓
+ 0x21ed4: "\x02\x05\x02\x04\x04\x01\x04\x05\x01\x01\x05\x03\x04", // 𡻔
+ 0x21ed5: "\x02\x05\x02\x01\x03\x01\x01\x02\x03\x04\x05\x03\x04", // 𡻕
+ 0x21ed6: "\x02\x05\x02\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𡻖
+ 0x21ed7: "\x02\x05\x02\x01\x05\x02\x05\x01\x01\x01\x05\x03\x04", // 𡻗
+ 0x21ed8: "\x02\x05\x02\x04\x03\x01\x01\x02\x01\x02\x05\x02\x02\x01", // 𡻘
+ 0x21ed9: "\x02\x05\x02\x04\x01\x02\x05\x01\x05\x02\x01\x05\x02", // 𡻙
+ 0x21eda: "\x02\x05\x02\x04\x01\x03\x05\x01\x01\x02\x04\x01\x03\x04", // 𡻚
+ 0x21edb: "\x02\x05\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02", // 𡻛
+ 0x21edc: "\x02\x05\x02\x04\x04\x05\x03\x05\x01\x05\x04\x01\x02\x01", // 𡻜
+ 0x21edd: "\x02\x05\x02\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 𡻝
+ 0x21ede: "\x02\x05\x02\x02\x05\x01\x02\x01\x01\x02\x02\x01\x01\x02", // 𡻞
+ 0x21edf: "\x02\x05\x02\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x04", // 𡻟
+ 0x21ee0: "\x02\x05\x02\x04\x01\x03\x01\x02\x02\x01\x04\x04\x04\x04", // 𡻠
+ 0x21ee1: "\x02\x05\x02\x03\x04\x01\x05\x01\x02\x05\x03\x05\x01\x01", // 𡻡
+ 0x21ee2: "\x02\x05\x02\x02\x05\x01\x02\x01\x04\x03\x01\x01\x02\x01", // 𡻢
+ 0x21ee3: "\x02\x05\x02\x03\x01\x02\x03\x04\x03\x05\x04\x03\x05\x04", // 𡻣
+ 0x21ee4: "\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x02\x05\x02", // 𡻤
+ 0x21ee5: "\x02\x05\x02\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04", // 𡻥
+ 0x21ee6: "\x02\x05\x02\x02\x05\x02\x02\x05\x02\x01\x03\x02\x05\x01", // 𡻦
+ 0x21ee7: "\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x02\x05\x02", // 𡻧
+ 0x21ee8: "\x02\x05\x02\x04\x01\x03\x05\x02\x05\x01\x03\x05\x03\x04", // 𡻨
+ 0x21ee9: "\x02\x05\x02\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 𡻩
+ 0x21eea: "\x02\x05\x02\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 𡻪
+ 0x21eeb: "\x02\x05\x02\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 𡻫
+ 0x21eec: "\x02\x05\x02\x04\x01\x05\x03\x03\x01\x03\x01\x01\x03\x04", // 𡻬
+ 0x21eed: "\x02\x05\x02\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 𡻭
+ 0x21eee: "\x02\x05\x02\x03\x05\x01\x03\x02\x05\x01\x05\x02\x01\x05", // 𡻮
+ 0x21eef: "\x02\x05\x02\x01\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04", // 𡻯
+ 0x21ef0: "\x02\x05\x02\x03\x05\x04\x01\x05\x04\x01\x01\x02\x03\x04", // 𡻰
+ 0x21ef1: "\x02\x05\x02\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 𡻱
+ 0x21ef2: "\x02\x05\x02\x01\x03\x04\x02\x05\x03\x05\x02\x05\x01", // 𡻲
+ 0x21ef3: "\x02\x05\x02\x04\x01\x02\x05\x01\x05\x02\x01\x05\x02", // 𡻳
+ 0x21ef4: "\x02\x05\x02\x05\x02\x01\x02\x01\x03\x05\x03\x05\x04", // 𡻴
+ 0x21ef5: "\x02\x05\x02\x03\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 𡻵
+ 0x21ef6: "\x02\x05\x02\x04\x04\x01\x01\x01\x02\x01\x03\x01\x03\x04", // 𡻶
+ 0x21ef7: "\x02\x05\x02\x01\x03\x02\x01\x01\x02\x03\x04\x05\x03\x04", // 𡻷
+ 0x21ef8: "\x02\x05\x02\x01\x02\x02\x01\x01\x01\x03\x04\x01\x02\x01", // 𡻸
+ 0x21ef9: "\x02\x05\x02\x01\x02\x01\x02\x03\x05\x04\x01\x01\x01\x02", // 𡻹
+ 0x21efa: "\x02\x05\x02\x01\x02\x02\x01\x03\x05\x04\x05\x02\x05\x02", // 𡻺
+ 0x21efb: "\x02\x05\x02\x02\x01\x05\x03\x01\x05\x03\x04\x03\x01\x02", // 𡻻
+ 0x21efc: "\x02\x05\x02\x02\x03\x04\x02\x05\x01\x02\x01\x01\x03\x02", // 𡻼
+ 0x21efd: "\x02\x05\x02\x02\x05\x01\x02\x01\x05\x03\x02\x03\x04\x01", // 𡻽
+ 0x21efe: "\x02\x05\x02\x02\x05\x04\x01\x03\x04\x01\x02\x05\x02", // 𡻾
+ 0x21eff: "\x02\x05\x02\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x02", // 𡻿
+ 0x21f00: "\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x01\x02", // 𡼀
+ 0x21f01: "\x02\x05\x02\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 𡼁
+ 0x21f02: "\x02\x05\x02\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 𡼂
+ 0x21f03: "\x02\x05\x02\x04\x04\x01\x05\x03\x02\x05\x04\x05\x03\x01", // 𡼃
+ 0x21f04: "\x02\x05\x02\x04\x04\x05\x03\x04\x01\x05\x04\x01\x02\x01", // 𡼄
+ 0x21f05: "\x02\x05\x02\x01\x02\x02\x01\x01\x01\x03\x05\x03\x05\x02", // 𡼅
+ 0x21f06: "\x02\x05\x02\x02\x01\x05\x03\x01\x05\x03\x05\x04\x03\x05", // 𡼆
+ 0x21f07: "\x02\x05\x02\x03\x02\x05\x03\x04\x01\x03\x04\x03\x05\x04", // 𡼇
+ 0x21f08: "\x02\x05\x02\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04", // 𡼈
+ 0x21f09: "\x03\x01\x02\x05\x01\x01\x02\x01\x01\x05\x03\x02\x05\x02", // 𡼉
+ 0x21f0a: "\x02\x05\x02\x05\x04\x05\x04\x05\x04\x05\x05\x04\x02\x03\x04", // 𡼊
+ 0x21f0b: "\x02\x05\x02\x01\x03\x04\x01\x02\x05\x01\x02\x02\x01\x05\x04", // 𡼋
+ 0x21f0c: "\x02\x05\x02\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x05\x05", // 𡼌
+ 0x21f0d: "\x02\x05\x02\x04\x04\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 𡼍
+ 0x21f0e: "\x02\x05\x02\x01\x02\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01", // 𡼎
+ 0x21f0f: "\x02\x05\x02\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01", // 𡼏
+ 0x21f10: "\x03\x05\x01\x05\x02\x05\x01\x01\x03\x01\x03\x04\x02\x05\x02", // 𡼐
+ 0x21f11: "\x02\x05\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x05", // 𡼑
+ 0x21f12: "\x02\x05\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 𡼒
+ 0x21f13: "\x02\x05\x02\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x03\x04", // 𡼓
+ 0x21f14: "\x02\x05\x02\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𡼔
+ 0x21f15: "\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x02\x05", // 𡼕
+ 0x21f16: "\x04\x01\x02\x05\x01\x05\x02\x01\x03\x01\x03\x04\x02\x05\x02", // 𡼖
+ 0x21f17: "\x02\x05\x02\x03\x02\x05\x01\x01\x01\x01\x01\x01\x01\x01\x02", // 𡼗
+ 0x21f18: "\x02\x05\x02\x02\x05\x02\x02\x05\x02\x03\x04\x03\x04\x01\x05", // 𡼘
+ 0x21f19: "\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04\x02\x01\x01\x05", // 𡼙
+ 0x21f1a: "\x02\x05\x01\x02\x05\x01\x02\x05\x02\x02\x05\x01\x02\x05\x01", // 𡼚
+ 0x21f1b: "\x02\x05\x02\x01\x03\x02\x05\x01\x01\x04\x05\x01\x05\x03\x04", // 𡼛
+ 0x21f1c: "\x02\x05\x02\x01\x01\x02\x01\x03\x05\x01\x01\x03\x05\x01\x01", // 𡼜
+ 0x21f1d: "\x02\x05\x02\x01\x02\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x04", // 𡼝
+ 0x21f1e: "\x02\x05\x02\x01\x02\x01\x03\x02\x05\x01\x01\x05\x02", // 𡼞
+ 0x21f1f: "\x02\x05\x02\x01\x02\x05\x02\x02\x01\x01\x03\x04\x05\x01\x05", // 𡼟
+ 0x21f20: "\x02\x05\x02\x05\x05\x04\x05\x05\x04\x01\x03\x04\x05\x03\x04", // 𡼠
+ 0x21f21: "\x02\x05\x02\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𡼡
+ 0x21f22: "\x02\x05\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04", // 𡼢
+ 0x21f23: "\x02\x05\x02\x05\x01\x01\x02\x03\x02\x01\x01\x05\x05\x02\x01\x02", // 𡼣
+ 0x21f24: "\x02\x05\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 𡼤
+ 0x21f25: "\x02\x05\x02\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x01\x01", // 𡼥
+ 0x21f26: "\x02\x05\x02\x04\x04\x05\x01\x01\x02\x03\x04\x03\x01\x03\x04", // 𡼦
+ 0x21f27: "\x02\x05\x02\x05\x01\x03\x02\x04\x01\x03\x04\x03\x01\x01\x02", // 𡼧
+ 0x21f28: "\x02\x05\x02\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04", // 𡼨
+ 0x21f29: "\x02\x05\x02\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x03\x04", // 𡼩
+ 0x21f2a: "\x02\x05\x02\x03\x01\x04\x03\x01\x04\x03\x04\x01\x02\x05\x01", // 𡼪
+ 0x21f2b: "\x02\x05\x02\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01", // 𡼫
+ 0x21f2c: "\x02\x05\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 𡼬
+ 0x21f2d: "\x02\x05\x02\x01\x03\x04\x01\x02\x05\x01\x02\x03\x05\x03\x04", // 𡼭
+ 0x21f2e: "\x02\x05\x02\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x03\x04", // 𡼮
+ 0x21f2f: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x05\x02", // 𡼯
+ 0x21f30: "\x02\x05\x02\x02\x05\x02\x02\x05\x01\x02\x05\x01\x01\x01\x05", // 𡼰
+ 0x21f31: "\x02\x05\x02\x02\x05\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01", // 𡼱
+ 0x21f32: "\x02\x05\x02\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x03\x04", // 𡼲
+ 0x21f33: "\x02\x05\x02\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𡼳
+ 0x21f34: "\x02\x05\x02\x03\x04\x03\x04\x02\x01\x03\x02\x05\x01\x01\x01", // 𡼴
+ 0x21f35: "\x02\x05\x02\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 𡼵
+ 0x21f36: "\x02\x05\x02\x05\x04\x05\x04\x05\x04\x03\x04\x02\x04\x04\x04", // 𡼶
+ 0x21f37: "\x02\x05\x02\x04\x03\x03\x04\x02\x05\x01\x01\x04\x03\x03\x04", // 𡼷
+ 0x21f38: "\x02\x05\x02\x03\x01\x04\x03\x01\x04\x05\x01\x01\x01\x01\x02", // 𡼸
+ 0x21f39: "\x02\x05\x02\x01\x02\x03\x04\x01\x02\x01\x03\x04\x03\x05\x04", // 𡼹
+ 0x21f3a: "\x02\x05\x02\x03\x01\x05\x05\x04\x01\x04\x01\x01\x02\x03\x04", // 𡼺
+ 0x21f3b: "\x03\x01\x02\x01\x02\x02\x01\x05\x02\x03\x02\x05\x01\x05\x01", // 𡼻
+ 0x21f3c: "\x02\x05\x02\x01\x02\x02\x05\x01\x01\x01\x02\x03\x05\x01\x01", // 𡼼
+ 0x21f3d: "\x02\x05\x02\x03\x04\x01\x05\x01\x01\x05\x04\x03\x05\x03\x04", // 𡼽
+ 0x21f3e: "\x02\x05\x02\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𡼾
+ 0x21f3f: "\x02\x05\x02\x04\x04\x05\x03\x05\x05\x01\x03\x05\x02\x02\x05\x02", // 𡼿
+ 0x21f40: "\x02\x05\x02\x03\x04\x04\x04\x04\x04\x05\x02\x03\x05\x03\x05\x04", // 𡽀
+ 0x21f41: "\x02\x05\x02\x03\x02\x05\x01\x01\x01\x04\x01\x04\x03\x01\x01\x02", // 𡽁
+ 0x21f42: "\x02\x05\x02\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04", // 𡽂
+ 0x21f43: "\x05\x02\x01\x03\x01\x02\x01\x01\x03\x01\x02\x01\x02\x05\x02", // 𡽃
+ 0x21f44: "\x02\x05\x02\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x03\x04", // 𡽄
+ 0x21f45: "\x02\x05\x02\x04\x05\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 𡽅
+ 0x21f46: "\x02\x05\x02\x04\x04\x05\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 𡽆
+ 0x21f47: "\x02\x05\x02\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𡽇
+ 0x21f48: "\x02\x05\x02\x05\x01\x03\x02\x04\x01\x03\x04\x05\x02\x02\x05\x02", // 𡽈
+ 0x21f49: "\x02\x05\x02\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01", // 𡽉
+ 0x21f4a: "\x02\x05\x02\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x01\x02\x01", // 𡽊
+ 0x21f4b: "\x02\x05\x02\x04\x05\x02\x04\x05\x01\x01\x02\x04\x01\x03\x04", // 𡽋
+ 0x21f4c: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x02\x05\x02", // 𡽌
+ 0x21f4d: "\x02\x05\x02\x02\x05\x01\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01", // 𡽍
+ 0x21f4e: "\x02\x05\x02\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x01\x01", // 𡽎
+ 0x21f4f: "\x02\x05\x02\x01\x03\x02\x05\x02\x02\x03\x05\x02\x05\x01\x03\x05", // 𡽏
+ 0x21f50: "\x02\x05\x02\x01\x03\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 𡽐
+ 0x21f51: "\x02\x05\x02\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𡽑
+ 0x21f52: "\x02\x05\x02\x01\x02\x03\x04\x01\x02\x05\x02\x01\x02\x03\x04\x01", // 𡽒
+ 0x21f53: "\x02\x05\x02\x02\x05\x02\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01", // 𡽓
+ 0x21f54: "\x02\x05\x02\x02\x05\x03\x04\x03\x04\x03\x04\x03\x04\x01\x02\x01", // 𡽔
+ 0x21f55: "\x02\x05\x02\x03\x02\x05\x01\x01\x01\x04\x01\x04\x03\x01\x01\x02", // 𡽕
+ 0x21f56: "\x02\x05\x02\x03\x05\x02\x05\x01\x01\x02\x05\x03\x03\x01\x01\x02", // 𡽖
+ 0x21f57: "\x02\x05\x02\x03\x04\x01\x02\x05\x01\x03\x04\x02\x05\x01\x03\x04", // 𡽗
+ 0x21f58: "\x02\x05\x02\x02\x05\x01\x02\x01\x02\x01\x03\x05\x04\x02\x05\x01", // 𡽘
+ 0x21f59: "\x02\x05\x02\x02\x05\x01\x01\x03\x05\x03\x04\x05\x03\x05\x03\x04", // 𡽙
+ 0x21f5a: "\x03\x04\x01\x01\x02\x03\x04\x02\x05\x02\x02\x05\x02\x02\x05\x02", // 𡽚
+ 0x21f5b: "\x02\x05\x02\x01\x03\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𡽛
+ 0x21f5c: "\x02\x05\x02\x03\x01\x02\x03\x04\x02\x02\x04\x01\x01\x01\x02\x05\x01", // 𡽜
+ 0x21f5d: "\x02\x05\x02\x01\x02\x01\x02\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 𡽝
+ 0x21f5e: "\x02\x05\x02\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x01\x02\x05\x01\x01", // 𡽞
+ 0x21f5f: "\x02\x05\x02\x04\x01\x03\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 𡽟
+ 0x21f60: "\x02\x05\x02\x05\x03\x02\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𡽠
+ 0x21f61: "\x02\x05\x02\x03\x05\x02\x05\x01\x03\x05\x03\x05\x02\x05\x01\x03\x05", // 𡽡
+ 0x21f62: "\x02\x05\x02\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𡽢
+ 0x21f63: "\x02\x05\x02\x01\x03\x02\x05\x01\x01\x03\x05\x04\x01\x01\x03\x04\x04", // 𡽣
+ 0x21f64: "\x02\x05\x02\x04\x03\x03\x04\x04\x03\x03\x04\x03\x05\x04\x01\x05\x02", // 𡽤
+ 0x21f65: "\x02\x05\x02\x03\x04\x03\x04\x01\x02\x01\x03\x01\x02\x01\x05\x03\x04", // 𡽥
+ 0x21f66: "\x02\x05\x02\x04\x01\x03\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 𡽦
+ 0x21f67: "\x02\x05\x02\x01\x03\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 𡽧
+ 0x21f68: "\x02\x05\x02\x01\x02\x02\x01\x01\x01\x05\x04\x03\x02\x03\x03\x03\x04", // 𡽨
+ 0x21f69: "\x02\x05\x02\x01\x02\x01\x02\x05\x01\x04\x05\x01\x05\x04\x01\x02\x01", // 𡽩
+ 0x21f6a: "\x02\x05\x02\x03\x03\x02\x01\x05\x05\x04\x02\x03\x04\x03\x01\x03\x04", // 𡽪
+ 0x21f6b: "\x02\x05\x02\x05\x03\x01\x01\x02\x05\x01\x02\x03\x04\x03\x01\x03\x04", // 𡽫
+ 0x21f6c: "\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04\x02\x05\x02", // 𡽬
+ 0x21f6d: "\x02\x05\x02\x05\x04\x05\x04\x05\x04\x03\x04\x05\x05\x04\x02\x03\x04", // 𡽭
+ 0x21f6e: "\x02\x05\x02\x01\x02\x01\x02\x05\x02\x05\x03\x04\x01\x04\x04\x04\x04", // 𡽮
+ 0x21f6f: "\x02\x05\x02\x03\x01\x02\x03\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𡽯
+ 0x21f70: "\x02\x05\x02\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𡽰
+ 0x21f71: "\x02\x05\x02\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03\x04", // 𡽱
+ 0x21f72: "\x02\x05\x02\x01\x02\x03\x04\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03", // 𡽲
+ 0x21f73: "\x02\x05\x02\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01", // 𡽳
+ 0x21f74: "\x02\x05\x02\x01\x03\x05\x01\x03\x01\x02\x05\x01\x02\x05\x05\x03\x04", // 𡽴
+ 0x21f75: "\x02\x05\x02\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x01\x02\x04", // 𡽵
+ 0x21f76: "\x02\x05\x02\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02", // 𡽶
+ 0x21f77: "\x02\x05\x02\x03\x02\x05\x01\x05\x01\x01\x02\x01\x03\x05\x01\x03\x05", // 𡽷
+ 0x21f78: "\x02\x05\x02\x03\x04\x04\x03\x01\x02\x01\x05\x01\x01\x04\x05\x04\x04", // 𡽸
+ 0x21f79: "\x02\x05\x02\x03\x04\x04\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𡽹
+ 0x21f7a: "\x03\x05\x03\x04\x01\x01\x01\x02\x05\x01\x01\x03\x04\x04\x02\x05\x02", // 𡽺
+ 0x21f7b: "\x02\x05\x02\x04\x04\x01\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02", // 𡽻
+ 0x21f7c: "\x02\x05\x02\x04\x04\x02\x04\x01\x05\x04\x01\x02\x02\x01\x02\x03\x04", // 𡽼
+ 0x21f7d: "\x02\x05\x02\x02\x05\x02\x04\x03\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 𡽽
+ 0x21f7e: "\x02\x05\x02\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01", // 𡽾
+ 0x21f7f: "\x02\x05\x02\x02\x05\x02\x02\x05\x02\x04\x04\x05\x01\x01\x02\x03\x04", // 𡽿
+ 0x21f80: "\x02\x05\x02\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x01\x05", // 𡾀
+ 0x21f81: "\x02\x05\x02\x04\x04\x01\x05\x04\x02\x05\x01\x01\x02\x04\x05\x04", // 𡾁
+ 0x21f82: "\x02\x05\x02\x01\x03\x02\x05\x01\x01\x04\x05\x02\x01\x02\x01\x02\x01\x05\x04", // 𡾂
+ 0x21f83: "\x02\x05\x02\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x01\x05\x03\x04", // 𡾃
+ 0x21f84: "\x02\x05\x02\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01\x03\x01\x03\x04", // 𡾄
+ 0x21f85: "\x02\x05\x02\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 𡾅
+ 0x21f86: "\x02\x05\x02\x03\x05\x04\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𡾆
+ 0x21f87: "\x02\x05\x02\x04\x01\x03\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04", // 𡾇
+ 0x21f88: "\x02\x05\x02\x04\x04\x05\x03\x05\x03\x02\x05\x01\x01\x01\x03\x05\x01\x05", // 𡾈
+ 0x21f89: "\x02\x05\x02\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x03\x01\x01\x02", // 𡾉
+ 0x21f8a: "\x02\x05\x02\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01", // 𡾊
+ 0x21f8b: "\x02\x05\x02\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01", // 𡾋
+ 0x21f8c: "\x02\x05\x02\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x04\x04\x04\x04", // 𡾌
+ 0x21f8d: "\x02\x05\x02\x03\x04\x02\x05\x01\x01\x03\x04\x02\x05\x01\x01\x02\x03\x04", // 𡾍
+ 0x21f8e: "\x01\x03\x04\x03\x03\x04\x02\x05\x01\x01\x01\x03\x05\x03\x03\x02\x05\x02", // 𡾎
+ 0x21f8f: "\x02\x05\x02\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01", // 𡾏
+ 0x21f90: "\x02\x05\x02\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𡾐
+ 0x21f91: "\x02\x05\x02\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x03\x01\x02\x01", // 𡾑
+ 0x21f92: "\x02\x05\x02\x03\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x03\x04", // 𡾒
+ 0x21f93: "\x02\x05\x02\x05\x01\x03\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𡾓
+ 0x21f94: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x02", // 𡾔
+ 0x21f95: "\x02\x05\x02\x02\x05\x02\x04\x04\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 𡾕
+ 0x21f96: "\x02\x05\x02\x01\x03\x02\x05\x01\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 𡾖
+ 0x21f97: "\x02\x05\x02\x02\x05\x02\x02\x05\x02\x01\x02\x02\x02\x05\x01\x03\x04", // 𡾗
+ 0x21f98: "\x02\x05\x02\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x02", // 𡾘
+ 0x21f99: "\x02\x05\x02\x01\x02\x05\x01\x02\x05\x01\x01\x02\x02\x05\x01\x02\x05\x01\x01", // 𡾙
+ 0x21f9a: "\x02\x05\x02\x04\x05\x04\x04\x04\x05\x04\x04\x04\x05\x04\x04\x01\x02\x03\x04", // 𡾚
+ 0x21f9b: "\x02\x05\x02\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x04\x03\x01\x01\x03\x02", // 𡾛
+ 0x21f9c: "\x02\x05\x02\x01\x04\x05\x02\x04\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𡾜
+ 0x21f9d: "\x02\x05\x02\x04\x01\x02\x05\x02\x02\x01\x02\x04\x01\x03\x04\x03\x05\x03\x04", // 𡾝
+ 0x21f9e: "\x02\x05\x02\x04\x03\x01\x01\x02\x01\x03\x01\x02\x03\x04\x01\x05\x05\x03\x04", // 𡾞
+ 0x21f9f: "\x02\x05\x02\x02\x01\x05\x03\x01\x05\x02\x02\x05\x02\x01\x01\x01\x05\x03\x04", // 𡾟
+ 0x21fa0: "\x02\x05\x02\x02\x01\x05\x03\x01\x05\x02\x02\x04\x03\x01\x01\x05\x03\x04", // 𡾠
+ 0x21fa1: "\x02\x05\x02\x02\x04\x03\x01\x03\x05\x02\x04\x03\x01\x03\x05\x02\x05\x01\x01", // 𡾡
+ 0x21fa2: "\x02\x05\x02\x04\x04\x05\x03\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x04\x04", // 𡾢
+ 0x21fa3: "\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𡾣
+ 0x21fa4: "\x02\x05\x02\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x05\x02\x01", // 𡾤
+ 0x21fa5: "\x02\x05\x02\x02\x05\x01\x01\x01\x01\x02\x03\x04\x03\x05\x05\x04\x02\x03\x04", // 𡾥
+ 0x21fa6: "\x02\x05\x02\x02\x05\x02\x03\x02\x05\x01\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 𡾦
+ 0x21fa7: "\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x05\x01\x01\x02\x02\x05\x01\x01", // 𡾧
+ 0x21fa8: "\x02\x05\x02\x04\x01\x02\x05\x02\x02\x01\x02\x04\x01\x03\x04\x03\x05\x03\x04", // 𡾨
+ 0x21fa9: "\x04\x01\x04\x03\x01\x03\x05\x04\x01\x01\x05\x01\x05\x01\x01\x01\x02\x05\x02", // 𡾩
+ 0x21faa: "\x02\x05\x02\x05\x01\x05\x01\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x01\x01", // 𡾪
+ 0x21fab: "\x02\x05\x02\x03\x01\x02\x03\x04\x05\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𡾫
+ 0x21fac: "\x02\x05\x02\x03\x01\x04\x03\x01\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𡾬
+ 0x21fad: "\x02\x05\x02\x04\x01\x03\x04\x01\x02\x05\x02\x05\x01\x01\x03\x01\x02\x03\x04", // 𡾭
+ 0x21fae: "\x02\x05\x02\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x01\x01\x01\x02", // 𡾮
+ 0x21faf: "\x02\x05\x02\x05\x02\x03\x04\x04\x03\x01\x02\x01\x05\x01\x01\x04\x05\x04\x04", // 𡾯
+ 0x21fb0: "\x02\x05\x02\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 𡾰
+ 0x21fb1: "\x02\x05\x02\x05\x01\x05\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𡾱
+ 0x21fb2: "\x02\x05\x02\x01\x02\x01\x02\x03\x02\x05\x01\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 𡾲
+ 0x21fb3: "\x02\x05\x02\x05\x05\x04\x04\x04\x04\x03\x02\x05\x03\x05\x04\x01\x04\x05\x04\x04", // 𡾳
+ 0x21fb4: "\x02\x05\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x03\x05\x03\x04", // 𡾴
+ 0x21fb5: "\x02\x05\x02\x03\x02\x05\x01\x01\x03\x05\x05\x04\x03\x02\x04\x01\x04\x03\x01", // 𡾵
+ 0x21fb6: "\x02\x05\x02\x04\x01\x03\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01\x04\x05\x04\x04", // 𡾶
+ 0x21fb7: "\x02\x05\x02\x01\x03\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01", // 𡾷
+ 0x21fb8: "\x02\x05\x02\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x05\x03\x01", // 𡾸
+ 0x21fb9: "\x02\x05\x02\x03\x02\x05\x01\x05\x01\x04\x01\x04\x03\x01\x01\x02\x01\x02\x03\x04", // 𡾹
+ 0x21fba: "\x02\x05\x02\x03\x04\x03\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 𡾺
+ 0x21fbb: "\x02\x05\x02\x01\x03\x05\x01\x03\x01\x02\x05\x01\x02\x05\x05\x03\x04", // 𡾻
+ 0x21fbc: "\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𡾼
+ 0x21fbd: "\x02\x05\x02\x05\x05\x04\x04\x04\x04\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𡾽
+ 0x21fbe: "\x02\x05\x02\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𡾾
+ 0x21fbf: "\x02\x05\x02\x01\x01\x01\x02\x02\x01\x01\x01\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 𡾿
+ 0x21fc0: "\x02\x05\x02\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x03\x04\x02\x05\x01", // 𡿀
+ 0x21fc1: "\x03\x01\x02\x03\x04\x05\x03\x01\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x02\x05\x02", // 𡿁
+ 0x21fc2: "\x02\x05\x02\x04\x04\x05\x01\x01\x02\x03\x04\x05\x05\x05\x02\x05\x01\x01\x02\x01\x01", // 𡿂
+ 0x21fc3: "\x02\x05\x02\x04\x04\x05\x03\x05\x04\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𡿃
+ 0x21fc4: "\x02\x05\x02\x01\x02\x02\x01\x03\x05\x01\x03\x01\x02\x05\x01\x02\x05\x05\x03\x04", // 𡿄
+ 0x21fc5: "\x02\x05\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𡿅
+ 0x21fc6: "\x02\x05\x02\x03\x02\x05\x01\x01\x03\x05\x05\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 𡿆
+ 0x21fc7: "\x02\x05\x02\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𡿇
+ 0x21fc8: "\x02\x05\x02\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x02\x03\x04", // 𡿈
+ 0x21fc9: "\x01\x02\x01\x02\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x02", // 𡿉
+ 0x21fca: "\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x02", // 𡿊
+ 0x21fcb: "\x02\x05\x02\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𡿋
+ 0x21fcc: "\x02\x05\x02\x02\x01\x01\x01\x02\x01\x01\x01\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04", // 𡿌
+ 0x21fcd: "\x02\x05\x02\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 𡿍
+ 0x21fce: "\x02\x05\x02\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𡿎
+ 0x21fcf: "\x02\x05\x02\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𡿏
+ 0x21fd0: "\x02\x05\x02\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01", // 𡿐
+ 0x21fd1: "\x02\x05\x02\x03\x05\x03\x05\x01\x01\x02\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 𡿑
+ 0x21fd2: "\x02\x05\x02\x01\x02\x02\x03\x02\x05\x01\x05\x01\x04\x01\x04\x03\x01\x01\x02\x05\x02\x01", // 𡿒
+ 0x21fd3: "\x02\x05\x02\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𡿓
+ 0x21fd4: "\x02\x05\x02\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 𡿔
+ 0x21fd5: "\x02\x05\x02\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x05\x05\x04", // 𡿕
+ 0x21fd6: "\x02\x05\x02\x01\x01\x01\x02\x05\x03\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𡿖
+ 0x21fd7: "\x02\x05\x02\x01\x02\x02\x03\x02\x05\x01\x05\x01\x04\x01\x04\x03\x01\x01\x02\x01\x02\x03\x04", // 𡿗
+ 0x21fd8: "\x02\x05\x02\x02\x05\x02\x05\x05\x04\x04\x04\x04\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𡿘
+ 0x21fd9: "\x02\x05\x02\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𡿙
+ 0x21fda: "\x02\x05\x02\x01\x02\x02\x03\x02\x05\x01\x01\x01\x02\x01\x02\x01\x05\x01\x05\x03\x05\x05\x04", // 𡿚
+ 0x21fdb: "\x02\x05\x02\x01\x03\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x02\x03\x04", // 𡿛
+ 0x21fdc: "\x02\x05\x02\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 𡿜
+ 0x21fdd: "\x02\x05\x02\x01\x02\x05\x01\x02\x04\x05\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 𡿝
+ 0x21fde: "\x02\x05\x02\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x05\x01\x05", // 𡿞
+ 0x21fdf: "\x02\x05\x02\x01\x02\x01\x02\x03\x02\x05\x01\x01\x01\x02\x01\x02\x01\x05\x01\x05\x03\x04\x03\x05\x04", // 𡿟
+ 0x21fe0: "\x02\x05\x02\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 𡿠
+ 0x21fe1: "\x02\x05\x02\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x03\x04\x01", // 𡿡
+ 0x21fe2: "\x02\x05\x02\x03\x02\x05\x01\x05\x01\x02\x01\x02\x01\x05\x01\x01\x04\x05\x02\x05\x02\x03\x05\x02\x05\x01\x03\x05", // 𡿢
+ 0x21fe3: "\x02\x05\x02\x04\x01\x01\x01\x02\x05\x01\x03\x05\x02\x05\x01\x01\x05\x01\x05\x03\x05\x02\x05\x01\x03\x05\x04", // 𡿣
+ 0x21fe4: "\x02\x01\x02\x01\x03\x04\x02\x05\x01\x01\x03\x04\x01\x02\x01\x02\x05\x02\x02\x05\x01\x02\x05\x02\x02\x05\x01", // 𡿤
+ 0x21fe5: "\x02\x05\x02\x01\x02\x03\x04\x03\x01\x01\x02\x05\x02\x01\x02\x03\x04\x04\x05\x03\x04\x04\x04\x04\x04\x05\x02\x01\x05\x03\x03\x03", // 𡿥
+ 0x21fe6: "\x03\x03\x03\x04\x04\x04", // 𡿦
+ 0x21fe7: "\x05\x05\x05\x01", // 𡿧
+ 0x21fe8: "\x05", // 𡿨
+ 0x21fe9: "\x05\x05\x05\x02\x05\x01", // 𡿩
+ 0x21fea: "\x05\x05\x05\x03\x05\x04", // 𡿪
+ 0x21feb: "\x04\x01\x05\x03\x02\x02", // 𡿫
+ 0x21fec: "\x03\x04\x05\x05\x05\x05", // 𡿬
+ 0x21fed: "\x05\x05\x05\x05\x05\x05", // 𡿭
+ 0x21fee: "\x01\x05\x04\x05\x05\x05", // 𡿮
+ 0x21fef: "\x02\x05\x01\x01\x05\x05\x05", // 𡿯
+ 0x21ff0: "\x01\x02\x01\x01\x05\x05\x05", // 𡿰
+ 0x21ff1: "\x01\x05\x05\x05\x03\x01\x02\x01", // 𡿱
+ 0x21ff2: "\x05\x05\x05\x03\x05\x01\x01\x02", // 𡿲
+ 0x21ff3: "\x05\x05\x05\x03\x05\x01\x01\x02", // 𡿳
+ 0x21ff4: "\x01\x02\x01\x01\x01\x05\x05\x05", // 𡿴
+ 0x21ff5: "\x05\x05\x05\x01\x02\x02\x05\x01", // 𡿵
+ 0x21ff6: "\x05\x05\x05\x01\x02\x03\x04\x01", // 𡿶
+ 0x21ff7: "\x05\x05\x05\x02\x05\x01\x02\x05\x01", // 𡿷
+ 0x21ff8: "\x05\x05\x05\x01\x02\x05\x03\x04\x01", // 𡿸
+ 0x21ff9: "\x05\x05\x05\x02\x05\x01\x05\x02\x02", // 𡿹
+ 0x21ffa: "\x05\x05\x05\x03\x02\x05\x03\x04\x01", // 𡿺
+ 0x21ffb: "\x03\x02\x05\x02\x02\x01\x05\x05\x05", // 𡿻
+ 0x21ffc: "\x05\x05\x05\x02\x05\x02\x02\x01\x01\x02", // 𡿼
+ 0x21ffd: "\x03\x03\x03\x02\x01\x02\x01\x05\x05\x05", // 𡿽
+ 0x21ffe: "\x05\x05\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 𡿾
+ 0x21fff: "\x01\x02\x05\x01\x01\x05\x05\x05\x05\x03\x04", // 𡿿
+ 0x22000: "\x05\x05\x05\x03\x02\x01\x01\x05\x01\x01\x05", // 𢀀
+ 0x22001: "\x05\x05\x05\x01\x03\x05\x04\x01\x03\x03\x04\x04", // 𢀁
+ 0x22002: "\x05\x05\x05\x02\x05\x03\x04\x03\x05\x02\x04\x01\x03\x04", // 𢀂
+ 0x22003: "\x01\x02\x01\x03\x05\x01\x02\x05\x01\x01\x01\x02\x05\x05\x05", // 𢀃
+ 0x22004: "\x03\x01\x01\x02\x05\x02\x05\x05\x05\x02\x05\x01\x05\x02\x01\x05", // 𢀄
+ 0x22005: "\x05\x05\x05\x02\x05\x03\x04\x03\x01\x02\x01\x05\x05\x02\x01\x02", // 𢀅
+ 0x22006: "\x05\x05\x05\x03\x05\x02\x05\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 𢀆
+ 0x22007: "\x05\x05\x05\x03\x02\x05\x03\x04\x01\x02\x01\x01\x01\x05\x03\x04\x03\x05", // 𢀇
+ 0x22008: "\x05\x05\x05\x02\x05\x03\x04\x01\x02\x02\x01\x01\x01\x05\x04\x05\x03\x05", // 𢀈
+ 0x22009: "\x05\x05\x05\x02\x05\x03\x04\x01\x02\x01\x01\x01\x05\x03\x02\x05\x02\x05\x01", // 𢀉
+ 0x2200a: "\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04\x02\x01\x05\x03\x01\x05\x03\x04", // 𢀊
+ 0x2200b: "\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04\x02\x01\x05\x03\x01\x05\x02\x05\x02", // 𢀋
+ 0x2200c: "\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 𢀌
+ 0x2200d: "\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x03\x04\x05\x05\x05\x02\x05\x01\x05\x02\x01\x05", // 𢀍
+ 0x2200e: "\x03\x02\x05\x01\x01\x05\x05\x05\x03\x02\x05\x01\x01\x05\x05\x05\x03\x02\x05\x01\x01\x05\x05\x05", // 𢀎
+ 0x2200f: "\x05\x05\x05\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x03\x02\x01\x05\x01\x01\x02\x05\x02\x01\x04", // 𢀏
+ 0x22010: "\x05\x05\x05\x02\x05\x03\x04\x01\x05\x05\x04\x02\x03\x04\x05\x05\x04\x02\x03\x04\x02\x01\x01\x01\x05\x03\x04\x03\x05", // 𢀐
+ 0x22011: "\x01\x02\x05\x01", // 𢀑
+ 0x22012: "\x01\x02\x01\x05", // 𢀒
+ 0x22013: "\x01\x02\x05\x01", // 𢀓
+ 0x22014: "\x01\x02\x01\x05", // 𢀔
+ 0x22015: "\x01\x02\x01\x05", // 𢀕
+ 0x22016: "\x05\x04\x01\x02\x01", // 𢀖
+ 0x22017: "\x01\x02\x01\x02\x05", // 𢀗
+ 0x22018: "\x01\x02\x01\x03\x02", // 𢀘
+ 0x22019: "\x01\x02\x01\x05\x02", // 𢀙
+ 0x2201a: "\x01\x02\x01\x01\x01\x01", // 𢀚
+ 0x2201b: "\x01\x02\x01\x02\x05\x01", // 𢀛
+ 0x2201c: "\x01\x02\x01\x05\x03\x01\x01", // 𢀜
+ 0x2201d: "\x01\x02\x04\x03\x01\x02\x03", // 𢀝
+ 0x2201e: "\x01\x02\x01\x05\x01\x01\x03", // 𢀞
+ 0x2201f: "\x05\x05\x04\x05\x03\x01\x02\x01", // 𢀟
+ 0x22020: "\x03\x01\x01\x03\x01\x03\x01\x02\x01", // 𢀠
+ 0x22021: "\x01\x03\x01\x02\x01\x01\x03\x01\x02\x01", // 𢀡
+ 0x22022: "\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 𢀢
+ 0x22023: "\x01\x02\x03\x04\x03\x04\x01\x05\x03\x05\x04", // 𢀣
+ 0x22024: "\x01\x02\x01\x03\x02\x01\x01\x01\x03\x05\x05\x04", // 𢀤
+ 0x22025: "\x01\x05\x01\x05\x01\x01\x01\x03\x05\x02", // 𢀥
+ 0x22026: "\x01\x05\x01\x05\x03\x05\x01\x03\x03\x03\x01\x02", // 𢀦
+ 0x22027: "\x01\x05\x01\x05\x03\x04\x01\x02\x05\x01\x02\x02", // 𢀧
+ 0x22028: "\x01\x05\x01\x05\x04\x05\x01\x01\x05\x04\x05\x02", // 𢀨
+ 0x22029: "\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x03\x01\x02\x01", // 𢀩
+ 0x2202a: "\x01\x02\x01\x01\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𢀪
+ 0x2202b: "\x01\x05\x05\x05\x01\x02\x01\x03\x02\x03\x01\x02\x01\x03\x05", // 𢀫
+ 0x2202c: "\x01\x05\x01\x05\x04\x05\x01\x01\x05\x04\x03\x05\x01\x01", // 𢀬
+ 0x2202d: "\x01\x05\x01\x05\x01\x02\x02\x05\x01\x01\x01\x02\x03\x05\x01\x01", // 𢀭
+ 0x2202e: "\x04\x01\x02\x05\x02\x05\x01\x01\x03\x01\x02\x03\x04\x01\x05\x01\x05", // 𢀮
+ 0x2202f: "\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x01\x02\x01", // 𢀯
+ 0x22030: "\x01\x02\x01\x02\x05\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x04\x01\x02\x01", // 𢀰
+ 0x22031: "\x01\x05\x01\x05\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x02\x03\x04", // 𢀱
+ 0x22032: "\x01\x05\x01\x05\x01\x02\x05\x01\x02\x03\x04\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 𢀲
+ 0x22033: "\x05\x01\x01\x05", // 𢀳
+ 0x22034: "\x03\x03\x05\x01\x05", // 𢀴
+ 0x22035: "\x05\x01\x05\x05\x01\x05", // 𢀵
+ 0x22036: "\x05\x01\x05\x05\x01\x05", // 𢀶
+ 0x22037: "\x05\x02\x05\x03\x04\x05\x01\x05", // 𢀷
+ 0x22038: "\x02\x01\x03\x05\x04\x05\x01\x05", // 𢀸
+ 0x22039: "\x03\x02\x05\x01\x05\x01\x05\x01\x05", // 𢀹
+ 0x2203a: "\x01\x01\x03\x04\x05\x02\x05\x01\x05", // 𢀺
+ 0x2203b: "\x04\x03\x01\x01\x03\x04\x05\x01\x05", // 𢀻
+ 0x2203c: "\x01\x02\x02\x01\x03\x04\x05\x02\x01\x05", // 𢀼
+ 0x2203d: "\x03\x03\x03\x02\x01\x02\x01\x05\x01\x05", // 𢀽
+ 0x2203e: "\x05\x02\x01\x01\x05\x03\x04\x05\x01\x05", // 𢀾
+ 0x2203f: "\x05\x02\x05\x03\x04\x01\x05\x02\x01\x05", // 𢀿
+ 0x22040: "\x01\x02\x02\x01\x03\x04\x03\x05\x05\x01\x05", // 𢁀
+ 0x22041: "\x01\x03\x05\x03\x03\x04\x03\x05\x05\x01\x05", // 𢁁
+ 0x22042: "\x01\x02\x02\x01\x01\x01\x03\x04\x05\x01\x05", // 𢁂
+ 0x22043: "\x02\x05\x02\x02\x05\x02\x03\x04\x05\x01\x05", // 𢁃
+ 0x22044: "\x01\x02\x01\x03\x01\x01\x03\x04\x05\x01\x05", // 𢁄
+ 0x22045: "\x05\x01\x05\x05\x01\x05\x03\x01\x03\x03\x01\x02", // 𢁅
+ 0x22046: "\x04\x01\x04\x03\x04\x05\x02\x05\x02\x05\x01\x05", // 𢁆
+ 0x22047: "\x05\x02\x01\x01\x01\x05\x03\x04\x05\x02\x01\x05", // 𢁇
+ 0x22048: "\x02\x05\x01\x01\x01\x02\x01\x03\x04\x05\x01\x05", // 𢁈
+ 0x22049: "\x05\x01\x05\x05\x01\x05\x01\x02\x02\x01\x03\x04", // 𢁉
+ 0x2204a: "\x05\x02\x01\x05\x01\x02\x01\x01\x01\x02\x01\x05\x04", // 𢁊
+ 0x2204b: "\x05\x02\x01\x05\x01\x02\x01\x01\x01\x02\x01\x05\x04", // 𢁋
+ 0x2204c: "\x05\x01\x05\x05\x01\x05\x01\x01\x02\x01\x01\x02\x01\x03\x04", // 𢁌
+ 0x2204d: "\x05\x02\x01\x05\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04", // 𢁍
+ 0x2204e: "\x05\x01\x05\x01\x02\x02\x02\x01\x05\x05\x05\x02\x05\x01\x01\x05\x03", // 𢁎
+ 0x2204f: "\x03\x01\x02\x01\x02\x05\x01\x03\x02\x05\x02\x02\x01\x05\x01\x05", // 𢁏
+ 0x22050: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x05\x01\x05", // 𢁐
+ 0x22051: "\x05\x02\x01\x05\x01\x02\x05\x01\x02\x03\x04\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 𢁑
+ 0x22052: "\x02\x05\x02\x03\x05", // 𢁒
+ 0x22053: "\x01\x03\x02\x05\x02", // 𢁓
+ 0x22054: "\x05\x04\x02\x05\x02", // 𢁔
+ 0x22055: "\x02\x05\x02\x03\x05\x04", // 𢁕
+ 0x22056: "\x02\x05\x02\x01\x03\x04", // 𢁖
+ 0x22057: "\x02\x05\x02\x01\x01\x02", // 𢁗
+ 0x22058: "\x02\x05\x02\x03\x03\x03", // 𢁘
+ 0x22059: "\x03\x05\x04\x02\x05\x02", // 𢁙
+ 0x2205a: "\x02\x05\x02\x01\x01\x01", // 𢁚
+ 0x2205b: "\x01\x03\x03\x02\x05\x02", // 𢁛
+ 0x2205c: "\x02\x05\x02\x01\x02\x04", // 𢁜
+ 0x2205d: "\x02\x05\x02\x02\x05\x02", // 𢁝
+ 0x2205e: "\x02\x05\x02\x03\x05\x03", // 𢁞
+ 0x2205f: "\x03\x05\x04\x02\x05\x02", // 𢁟
+ 0x22060: "\x02\x05\x02\x05\x01\x05", // 𢁠
+ 0x22061: "\x02\x05\x02\x05\x05\x04", // 𢁡
+ 0x22062: "\x02\x05\x02\x01\x01\x05", // 𢁢
+ 0x22063: "\x02\x05\x02\x04\x01\x05", // 𢁣
+ 0x22064: "\x02\x05\x02\x03\x05\x04", // 𢁤
+ 0x22065: "\x03\x05\x05\x03\x02\x05\x02", // 𢁥
+ 0x22066: "\x02\x05\x02\x01\x05\x01\x05", // 𢁦
+ 0x22067: "\x02\x05\x02\x03\x05\x03\x04", // 𢁧
+ 0x22068: "\x05\x01\x01\x03\x02\x05\x02", // 𢁨
+ 0x22069: "\x02\x05\x02\x02\x05\x03\x04", // 𢁩
+ 0x2206a: "\x02\x05\x02\x05\x01\x03\x04", // 𢁪
+ 0x2206b: "\x03\x04\x03\x04\x02\x05\x02", // 𢁫
+ 0x2206c: "\x02\x05\x02\x03\x03\x02\x04", // 𢁬
+ 0x2206d: "\x03\x04\x01\x01\x02\x05\x02", // 𢁭
+ 0x2206e: "\x02\x05\x02\x03\x04\x01\x05", // 𢁮
+ 0x2206f: "\x02\x05\x02\x02\x05\x01\x01", // 𢁯
+ 0x22070: "\x03\x04\x04\x03\x02\x05\x02", // 𢁰
+ 0x22071: "\x02\x05\x02\x03\x01\x03\x04", // 𢁱
+ 0x22072: "\x02\x05\x02\x05\x04\x03\x05", // 𢁲
+ 0x22073: "\x01\x03\x05\x04\x02\x05\x02", // 𢁳
+ 0x22074: "\x01\x05\x05\x04\x02\x05\x02", // 𢁴
+ 0x22075: "\x02\x05\x02\x02\x01\x05\x04", // 𢁵
+ 0x22076: "\x02\x05\x02\x02\x05\x05\x04", // 𢁶
+ 0x22077: "\x02\x05\x02\x03\x04\x05\x04", // 𢁷
+ 0x22078: "\x02\x05\x02\x04\x01\x05\x03", // 𢁸
+ 0x22079: "\x03\x02\x01\x01\x02\x05\x02", // 𢁹
+ 0x2207a: "\x03\x03\x01\x05\x02\x05\x02", // 𢁺
+ 0x2207b: "\x02\x05\x02\x01\x03\x02\x05\x02", // 𢁻
+ 0x2207c: "\x02\x05\x02\x04\x04\x05\x01\x02", // 𢁼
+ 0x2207d: "\x02\x05\x02\x04\x05\x04\x03\x04", // 𢁽
+ 0x2207e: "\x02\x05\x02\x05\x03\x02\x05\x01", // 𢁾
+ 0x2207f: "\x02\x05\x02\x01\x02\x01\x02\x01", // 𢁿
+ 0x22080: "\x02\x05\x02\x05\x01\x05\x03\x02", // 𢂀
+ 0x22081: "\x02\x05\x02\x03\x05\x02\x05\x01", // 𢂁
+ 0x22082: "\x03\x04\x01\x05\x04\x02\x05\x02", // 𢂂
+ 0x22083: "\x02\x05\x02\x03\x01\x02\x01\x01", // 𢂃
+ 0x22084: "\x02\x05\x02\x04\x01\x05\x05\x04", // 𢂄
+ 0x22085: "\x02\x05\x02\x05\x05\x04\x05\x03", // 𢂅
+ 0x22086: "\x02\x05\x02\x03\x02\x01\x02\x04", // 𢂆
+ 0x22087: "\x01\x04\x03\x04\x05\x02\x05\x02", // 𢂇
+ 0x22088: "\x02\x05\x02\x02\x05\x01\x01\x01", // 𢂈
+ 0x22089: "\x02\x05\x02\x01\x02\x05\x02\x01", // 𢂉
+ 0x2208a: "\x02\x05\x02\x05\x05\x04\x05\x03", // 𢂊
+ 0x2208b: "\x04\x01\x02\x05\x01\x02\x05\x02", // 𢂋
+ 0x2208c: "\x02\x05\x02\x03\x02\x01\x05\x04", // 𢂌
+ 0x2208d: "\x02\x05\x02\x03\x05\x02\x03", // 𢂍
+ 0x2208e: "\x02\x05\x02\x02\x05\x01\x02\x01", // 𢂎
+ 0x2208f: "\x01\x02\x05\x02\x01\x02\x05\x02", // 𢂏
+ 0x22090: "\x02\x05\x02\x05\x03\x05\x03\x05\x03", // 𢂐
+ 0x22091: "\x02\x05\x02\x01\x01\x02\x01\x05\x03\x04", // 𢂑
+ 0x22092: "\x02\x05\x02\x01\x05\x01\x05\x03\x04", // 𢂒
+ 0x22093: "\x02\x05\x02\x02\x05\x01\x02\x05\x01", // 𢂓
+ 0x22094: "\x02\x05\x02\x01\x02\x02\x01\x03\x04", // 𢂔
+ 0x22095: "\x02\x05\x02\x03\x05\x01\x03\x05\x05", // 𢂕
+ 0x22096: "\x02\x01\x01\x01\x05\x01\x02\x05\x02", // 𢂖
+ 0x22097: "\x03\x05\x01\x05\x02\x02\x05\x02", // 𢂗
+ 0x22098: "\x02\x05\x02\x03\x04\x01\x01\x02\x01", // 𢂘
+ 0x22099: "\x04\x01\x05\x04\x03\x02\x05\x02\x05\x02", // 𢂙
+ 0x2209a: "\x04\x01\x02\x05\x01\x01\x02\x05\x02", // 𢂚
+ 0x2209b: "\x01\x02\x05\x02\x03\x01\x03\x05\x04", // 𢂛
+ 0x2209c: "\x05\x01\x01\x03\x01\x03\x02\x05\x02", // 𢂜
+ 0x2209d: "\x02\x05\x02\x02\x05\x01\x01\x05\x03", // 𢂝
+ 0x2209e: "\x03\x04\x03\x04\x01\x03\x02\x05\x02", // 𢂞
+ 0x2209f: "\x05\x03\x05\x04\x05\x01\x02\x05\x02", // 𢂟
+ 0x220a0: "\x04\x01\x05\x03\x02\x05\x02\x05\x02", // 𢂠
+ 0x220a1: "\x02\x05\x02\x01\x02\x05\x01\x01\x01", // 𢂡
+ 0x220a2: "\x02\x05\x02\x01\x02\x01\x03\x01\x05", // 𢂢
+ 0x220a3: "\x02\x05\x02\x01\x03\x02\x05\x02\x01", // 𢂣
+ 0x220a4: "\x01\x02\x05\x02\x01\x03\x05\x04\x04", // 𢂤
+ 0x220a5: "\x02\x05\x02\x01\x03\x05\x04\x02\x02", // 𢂥
+ 0x220a6: "\x02\x01\x02\x05\x01\x01\x02\x05\x02", // 𢂦
+ 0x220a7: "\x02\x05\x02\x03\x02\x03\x01\x02\x01", // 𢂧
+ 0x220a8: "\x03\x03\x05\x03\x03\x05\x02\x05\x02", // 𢂨
+ 0x220a9: "\x02\x05\x02\x04\x01\x05\x05\x05\x05", // 𢂩
+ 0x220aa: "\x04\x01\x05\x05\x05\x05\x02\x05\x02", // 𢂪
+ 0x220ab: "\x05\x01\x01\x03\x03\x05\x02\x05\x02", // 𢂫
+ 0x220ac: "\x05\x03\x01\x05\x04\x03\x02\x05\x02", // 𢂬
+ 0x220ad: "\x05\x02\x05\x04\x05\x04\x02\x05\x02", // 𢂭
+ 0x220ae: "\x02\x05\x02\x03\x01\x02\x01\x03\x05", // 𢂮
+ 0x220af: "\x01\x02\x03\x04\x03\x04\x02\x05\x02", // 𢂯
+ 0x220b0: "\x02\x05\x02\x03\x05\x05\x01\x01\x02", // 𢂰
+ 0x220b1: "\x02\x05\x02\x02\x05\x01\x03\x05\x04\x01", // 𢂱
+ 0x220b2: "\x02\x05\x02\x03\x04\x03\x04\x02\x05\x01", // 𢂲
+ 0x220b3: "\x02\x05\x02\x03\x01\x05\x05\x04\x01\x04", // 𢂳
+ 0x220b4: "\x02\x05\x02\x01\x02\x01\x04\x05\x04\x04", // 𢂴
+ 0x220b5: "\x02\x05\x02\x01\x01\x03\x02\x05\x03\x04", // 𢂵
+ 0x220b6: "\x02\x05\x02\x02\x05\x03\x05\x02\x05\x01", // 𢂶
+ 0x220b7: "\x04\x01\x02\x05\x02\x03\x04\x01\x02\x05\x01", // 𢂷
+ 0x220b8: "\x01\x02\x02\x01\x03\x05\x01\x02\x05\x02", // 𢂸
+ 0x220b9: "\x02\x05\x02\x03\x02\x05\x01\x01\x03\x05", // 𢂹
+ 0x220ba: "\x02\x01\x03\x05\x04\x05\x04\x02\x05\x02", // 𢂺
+ 0x220bb: "\x02\x05\x02\x05\x03\x04\x04\x05\x04\x04", // 𢂻
+ 0x220bc: "\x01\x02\x01\x03\x03\x01\x02\x02\x05\x02", // 𢂼
+ 0x220bd: "\x02\x05\x02\x05\x01\x01\x03\x02\x05\x01", // 𢂽
+ 0x220be: "\x02\x05\x02\x01\x02\x01\x02\x04\x01\x05", // 𢂾
+ 0x220bf: "\x02\x05\x02\x01\x03\x04\x03\x04\x03\x04", // 𢂿
+ 0x220c0: "\x02\x05\x02\x01\x02\x03\x04\x03\x04\x01", // 𢃀
+ 0x220c1: "\x03\x02\x05\x02\x05\x03\x03\x02\x05\x02", // 𢃁
+ 0x220c2: "\x05\x03\x01\x05\x04\x03\x03\x02\x05\x02", // 𢃂
+ 0x220c3: "\x02\x05\x01\x01\x01\x05\x03\x02\x05\x02", // 𢃃
+ 0x220c4: "\x01\x02\x02\x01\x05\x04\x05\x02\x05\x02", // 𢃄
+ 0x220c5: "\x02\x05\x02\x04\x01\x03\x01\x02\x03\x04", // 𢃅
+ 0x220c6: "\x05\x01\x01\x03\x02\x05\x01\x02\x05\x02", // 𢃆
+ 0x220c7: "\x02\x05\x02\x02\x05\x01\x01\x02\x01\x01", // 𢃇
+ 0x220c8: "\x02\x05\x02\x01\x01\x02\x01\x01\x03\x02", // 𢃈
+ 0x220c9: "\x02\x05\x02\x02\x05\x01\x05\x03\x02\x02", // 𢃉
+ 0x220ca: "\x01\x03\x02\x05\x02\x05\x01\x02\x05\x01", // 𢃊
+ 0x220cb: "\x02\x05\x01\x02\x05\x01\x01\x02\x05\x02", // 𢃋
+ 0x220cc: "\x02\x01\x02\x01\x01\x05\x01\x03\x02\x05\x02", // 𢃌
+ 0x220cd: "\x02\x05\x02\x03\x02\x05\x01\x01\x03\x01\x02", // 𢃍
+ 0x220ce: "\x02\x05\x02\x01\x02\x05\x01\x01\x05\x03\x04", // 𢃎
+ 0x220cf: "\x02\x05\x02\x04\x04\x05\x01\x01\x02\x03\x04", // 𢃏
+ 0x220d0: "\x02\x05\x02\x04\x04\x05\x03\x05\x01\x02\x01", // 𢃐
+ 0x220d1: "\x02\x05\x02\x02\x05\x01\x01\x02\x05\x01\x01", // 𢃑
+ 0x220d2: "\x02\x05\x02\x04\x01\x03\x04\x03\x04\x01\x02", // 𢃒
+ 0x220d3: "\x02\x05\x02\x01\x02\x03\x04\x03\x05\x05\x04", // 𢃓
+ 0x220d4: "\x02\x05\x02\x04\x03\x03\x04\x04\x03\x03\x04", // 𢃔
+ 0x220d5: "\x02\x05\x02\x02\x05\x03\x04\x02\x05\x01\x01", // 𢃕
+ 0x220d6: "\x02\x05\x02\x03\x05\x01\x02\x01\x02\x05\x01", // 𢃖
+ 0x220d7: "\x02\x05\x02\x05\x02\x04\x01\x03\x04\x05\x02", // 𢃗
+ 0x220d8: "\x03\x05\x01\x03\x03\x01\x03\x04\x02\x05\x02", // 𢃘
+ 0x220d9: "\x02\x05\x02\x04\x04\x05\x02\x05\x01\x05\x01", // 𢃙
+ 0x220da: "\x02\x05\x02\x02\x05\x01\x01\x01\x05\x01\x05", // 𢃚
+ 0x220db: "\x01\x02\x02\x01\x01\x01\x03\x04\x02\x05\x02", // 𢃛
+ 0x220dc: "\x02\x05\x02\x01\x02\x02\x05\x01\x01\x01\x01", // 𢃜
+ 0x220dd: "\x02\x01\x01\x02\x03\x04\x05\x04\x02\x05\x02", // 𢃝
+ 0x220de: "\x02\x05\x02\x05\x01\x01\x04\x05\x02\x05\x02", // 𢃞
+ 0x220df: "\x02\x05\x02\x01\x02\x02\x01\x02\x05\x01\x01", // 𢃟
+ 0x220e0: "\x02\x05\x02\x02\x05\x03\x05\x04\x04\x04\x01", // 𢃠
+ 0x220e1: "\x02\x05\x02\x02\x05\x01\x01\x03\x05\x03\x03", // 𢃡
+ 0x220e2: "\x02\x05\x02\x01\x01\x02\x01\x02\x05\x01\x01", // 𢃢
+ 0x220e3: "\x02\x05\x02\x01\x02\x02\x01\x01\x01\x05\x04", // 𢃣
+ 0x220e4: "\x01\x02\x05\x01\x01\x05\x03\x04\x02\x05\x02", // 𢃤
+ 0x220e5: "\x01\x02\x05\x01\x02\x05\x05\x04\x02\x05\x02", // 𢃥
+ 0x220e6: "\x02\x05\x02\x02\x05\x01\x01\x01\x02\x03\x04", // 𢃦
+ 0x220e7: "\x02\x05\x02\x03\x05\x05\x04\x04\x05\x04\x04", // 𢃧
+ 0x220e8: "\x02\x05\x02\x04\x01\x03\x03\x01\x01\x03\x04", // 𢃨
+ 0x220e9: "\x02\x05\x02\x04\x03\x01\x01\x03\x04\x05\x05", // 𢃩
+ 0x220ea: "\x01\x02\x03\x04\x03\x04\x05\x04\x02\x05\x02", // 𢃪
+ 0x220eb: "\x02\x05\x02\x01\x01\x03\x04\x03\x04\x03\x04\x05", // 𢃫
+ 0x220ec: "\x04\x03\x01\x03\x05\x01\x01\x02\x02\x02\x05\x02", // 𢃬
+ 0x220ed: "\x02\x05\x02\x03\x05\x03\x03\x04\x04\x05\x04\x04", // 𢃭
+ 0x220ee: "\x02\x05\x02\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 𢃮
+ 0x220ef: "\x02\x05\x02\x05\x04\x03\x03\x04\x01\x01\x03\x04", // 𢃯
+ 0x220f0: "\x02\x05\x02\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 𢃰
+ 0x220f1: "\x02\x05\x02\x01\x02\x02\x01\x01\x01\x02\x03\x04", // 𢃱
+ 0x220f2: "\x02\x05\x02\x01\x02\x02\x01\x02\x05\x01\x01\x02", // 𢃲
+ 0x220f3: "\x05\x01\x01\x04\x05\x02\x05\x02\x05\x02\x01\x05", // 𢃳
+ 0x220f4: "\x01\x02\x05\x01\x02\x03\x04\x02\x02\x02\x05\x02", // 𢃴
+ 0x220f5: "\x03\x02\x01\x01\x05\x01\x01\x03\x05\x02\x05\x02", // 𢃵
+ 0x220f6: "\x02\x05\x02\x01\x01\x02\x01\x05\x05\x04\x01\x04", // 𢃶
+ 0x220f7: "\x02\x05\x02\x02\x05\x02\x02\x05\x02\x02\x05\x02", // 𢃷
+ 0x220f8: "\x02\x05\x02\x03\x01\x02\x03\x04\x04\x03\x03\x04", // 𢃸
+ 0x220f9: "\x02\x05\x02\x05\x03\x05\x03\x05\x04\x02\x05\x02", // 𢃹
+ 0x220fa: "\x03\x02\x05\x01\x01\x02\x05\x02\x03\x05\x05\x04", // 𢃺
+ 0x220fb: "\x01\x03\x05\x03\x03\x01\x03\x05\x04\x02\x05\x02", // 𢃻
+ 0x220fc: "\x02\x05\x02\x05\x02\x01\x03\x02\x05\x01\x01\x01", // 𢃼
+ 0x220fd: "\x02\x05\x02\x01\x02\x05\x02\x02\x01\x05\x03\x01", // 𢃽
+ 0x220fe: "\x02\x05\x02\x01\x03\x02\x05\x02\x02\x01\x03\x04", // 𢃾
+ 0x220ff: "\x02\x05\x02\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 𢃿
+ 0x22100: "\x01\x04\x05\x02\x05\x02\x01\x04\x05\x02\x05\x02", // 𢄀
+ 0x22101: "\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x05\x02", // 𢄁
+ 0x22102: "\x02\x05\x01\x01\x01\x05\x03\x04\x01\x02\x05\x02", // 𢄂
+ 0x22103: "\x02\x05\x02\x04\x04\x01\x03\x03\x03\x05\x03\x04", // 𢄃
+ 0x22104: "\x05\x02\x03\x01\x02\x05\x02\x02\x05\x01\x01\x01", // 𢄄
+ 0x22105: "\x02\x05\x02\x01\x01\x04\x03\x03\x04\x05\x03\x04", // 𢄅
+ 0x22106: "\x05\x02\x03\x05\x02\x03\x01\x04\x05\x02\x05\x02", // 𢄆
+ 0x22107: "\x03\x02\x05\x01\x01\x02\x05\x02\x03\x05\x05\x04", // 𢄇
+ 0x22108: "\x02\x05\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 𢄈
+ 0x22109: "\x01\x03\x05\x03\x05\x04\x04\x05\x04\x02\x05\x02", // 𢄉
+ 0x2210a: "\x02\x05\x02\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𢄊
+ 0x2210b: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x02\x05\x02", // 𢄋
+ 0x2210c: "\x02\x05\x02\x03\x04\x01\x02\x03\x05\x04\x03\x05\x05\x04", // 𢄌
+ 0x2210d: "\x02\x05\x02\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 𢄍
+ 0x2210e: "\x02\x05\x02\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03", // 𢄎
+ 0x2210f: "\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x02\x05\x02", // 𢄏
+ 0x22110: "\x02\x05\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 𢄐
+ 0x22111: "\x02\x05\x02\x04\x03\x01\x01\x03\x04\x02\x05\x02", // 𢄑
+ 0x22112: "\x02\x05\x02\x04\x05\x01\x03\x05\x04\x01\x05\x04\x01", // 𢄒
+ 0x22113: "\x02\x05\x02\x03\x02\x05\x01\x01\x05\x04\x04\x04\x04", // 𢄓
+ 0x22114: "\x03\x01\x01\x02\x02\x01\x03\x05\x04\x05\x02\x05\x02", // 𢄔
+ 0x22115: "\x03\x04\x04\x01\x03\x04\x04\x04\x05\x02\x02\x05\x02", // 𢄕
+ 0x22116: "\x02\x05\x01\x02\x01\x05\x03\x03\x03\x04\x02\x05\x02", // 𢄖
+ 0x22117: "\x03\x02\x05\x01\x01\x02\x05\x02\x02\x05\x02\x05\x01", // 𢄗
+ 0x22118: "\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04\x02\x05\x02", // 𢄘
+ 0x22119: "\x02\x05\x02\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𢄙
+ 0x2211a: "\x03\x02\x01\x01\x05\x01\x01\x03\x05\x04\x02\x05\x02", // 𢄚
+ 0x2211b: "\x02\x05\x02\x05\x01\x05\x05\x01\x01\x05\x02\x05\x01", // 𢄛
+ 0x2211c: "\x02\x05\x02\x05\x04\x02\x05\x04\x03\x01\x01\x02\x01", // 𢄜
+ 0x2211d: "\x03\x02\x05\x01\x01\x02\x05\x02\x03\x05\x05\x01\x05", // 𢄝
+ 0x2211e: "\x04\x03\x01\x02\x03\x04\x03\x01\x03\x04\x02\x05\x02", // 𢄞
+ 0x2211f: "\x02\x05\x02\x05\x04\x02\x05\x01\x01\x02\x04\x05\x04", // 𢄟
+ 0x22120: "\x02\x05\x02\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 𢄠
+ 0x22121: "\x01\x01\x02\x03\x04\x03\x01\x03\x04\x01\x03\x02\x05\x02", // 𢄡
+ 0x22122: "\x01\x02\x01\x03\x05\x01\x02\x01\x03\x05\x04\x02\x05\x02", // 𢄢
+ 0x22123: "\x02\x05\x02\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x01", // 𢄣
+ 0x22124: "\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02\x02\x05\x02", // 𢄤
+ 0x22125: "\x05\x01\x01\x03\x05\x02\x05\x02\x05\x01\x01\x02\x05\x02", // 𢄥
+ 0x22126: "\x02\x05\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𢄦
+ 0x22127: "\x04\x01\x05\x03\x03\x01\x03\x01\x01\x03\x04\x02\x05\x02", // 𢄧
+ 0x22128: "\x02\x05\x02\x04\x04\x05\x01\x02\x05\x01\x02\x01\x03\x04", // 𢄨
+ 0x22129: "\x02\x05\x02\x01\x02\x02\x01\x03\x05\x04\x05\x02\x05\x02", // 𢄩
+ 0x2212a: "\x02\x05\x02\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 𢄪
+ 0x2212b: "\x04\x01\x04\x03\x04\x05\x02\x05\x02\x01\x05\x01\x05", // 𢄫
+ 0x2212c: "\x01\x02\x04\x05\x02\x05\x02\x01\x02\x04\x05\x02\x05\x02", // 𢄬
+ 0x2212d: "\x02\x05\x02\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01", // 𢄭
+ 0x2212e: "\x05\x04\x05\x02\x02\x05\x03\x04\x03\x03\x03\x02\x05\x02", // 𢄮
+ 0x2212f: "\x02\x05\x02\x03\x01\x05\x05\x04\x01\x04\x03\x01\x03\x04", // 𢄯
+ 0x22130: "\x02\x05\x02\x03\x05\x04\x04\x03\x01\x02\x01\x02\x05\x01", // 𢄰
+ 0x22131: "\x02\x05\x02\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 𢄱
+ 0x22132: "\x04\x01\x05\x03\x03\x01\x05\x02\x01\x03\x04\x02\x05\x02", // 𢄲
+ 0x22133: "\x02\x05\x02\x01\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01", // 𢄳
+ 0x22134: "\x02\x05\x02\x04\x01\x03\x05\x04\x03\x05\x04\x03\x05\x03\x04", // 𢄴
+ 0x22135: "\x02\x05\x02\x03\x05\x02\x05\x01\x03\x05\x03\x03\x03\x04", // 𢄵
+ 0x22136: "\x02\x05\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x02\x01\x01", // 𢄶
+ 0x22137: "\x02\x05\x02\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 𢄷
+ 0x22138: "\x02\x05\x02\x02\x05\x01\x01\x01\x02\x02\x01\x01\x01\x05\x04", // 𢄸
+ 0x22139: "\x02\x05\x02\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 𢄹
+ 0x2213a: "\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 𢄺
+ 0x2213b: "\x02\x05\x02\x01\x02\x02\x01\x02\x05\x01\x01\x03\x01\x03\x04", // 𢄻
+ 0x2213c: "\x03\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04\x02\x05\x02", // 𢄼
+ 0x2213d: "\x02\x05\x02\x01\x01\x01\x02\x05\x01\x01\x01\x03\x04\x05\x04", // 𢄽
+ 0x2213e: "\x02\x05\x01\x01\x01\x01\x02\x05\x02\x03\x05\x04\x02\x05\x02", // 𢄾
+ 0x2213f: "\x01\x02\x05\x01\x02\x04\x05\x01\x03\x02\x05\x01\x02\x05\x02", // 𢄿
+ 0x22140: "\x02\x05\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 𢅀
+ 0x22141: "\x03\x04\x04\x03\x05\x02\x01\x03\x02\x05\x01\x01\x02\x05\x02", // 𢅁
+ 0x22142: "\x02\x05\x02\x05\x01\x05\x01\x02\x01\x01\x02\x01\x02\x05\x01", // 𢅂
+ 0x22143: "\x02\x05\x02\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x05", // 𢅃
+ 0x22144: "\x02\x05\x02\x02\x01\x01\x02\x01\x05\x04\x01\x03\x02\x05\x02", // 𢅄
+ 0x22145: "\x02\x05\x02\x01\x03\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04", // 𢅅
+ 0x22146: "\x02\x05\x02\x01\x02\x02\x02\x05\x01\x01\x03\x05\x01\x01", // 𢅆
+ 0x22147: "\x02\x05\x02\x02\x05\x02\x05\x02\x02\x05\x02\x03\x01\x01\x05", // 𢅇
+ 0x22148: "\x04\x01\x02\x05\x02\x04\x01\x02\x05\x02\x04\x01\x02\x05\x02", // 𢅈
+ 0x22149: "\x03\x02\x05\x01\x01\x02\x05\x02\x03\x02\x05\x01\x01\x03\x05", // 𢅉
+ 0x2214a: "\x03\x01\x01\x02\x02\x02\x02\x01\x04\x04\x04\x04\x02\x05\x02", // 𢅊
+ 0x2214b: "\x02\x05\x02\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𢅋
+ 0x2214c: "\x03\x03\x04\x04\x03\x05\x05\x05\x04\x04\x04\x04\x02\x05\x02", // 𢅌
+ 0x2214d: "\x01\x02\x01\x04\x05\x01\x03\x02\x05\x01\x01\x03\x04\x02\x05\x02", // 𢅍
+ 0x2214e: "\x02\x05\x02\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x03\x04", // 𢅎
+ 0x2214f: "\x02\x05\x02\x04\x01\x03\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 𢅏
+ 0x22150: "\x02\x05\x02\x03\x04\x01\x02\x05\x01\x03\x04\x02\x05\x01\x03\x04", // 𢅐
+ 0x22151: "\x02\x05\x02\x03\x05\x05\x01\x01\x03\x01\x03\x04\x04\x04\x04\x04", // 𢅑
+ 0x22152: "\x02\x05\x02\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 𢅒
+ 0x22153: "\x02\x01\x02\x01\x02\x05\x02\x02\x01\x01\x05\x03\x04\x02\x05\x02", // 𢅓
+ 0x22154: "\x02\x05\x02\x02\x01\x02\x01\x01\x02\x01\x03\x02\x05\x01\x01\x04", // 𢅔
+ 0x22155: "\x02\x05\x02\x04\x03\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 𢅕
+ 0x22156: "\x02\x05\x02\x04\x01\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 𢅖
+ 0x22157: "\x02\x05\x02\x02\x05\x05\x02\x05\x02\x05\x01\x04\x05\x04", // 𢅗
+ 0x22158: "\x02\x05\x02\x01\x02\x02\x02\x05\x02\x02\x01\x04\x05\x03\x05", // 𢅘
+ 0x22159: "\x02\x05\x02\x01\x02\x05\x02\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𢅙
+ 0x2215a: "\x02\x05\x02\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04\x02\x02", // 𢅚
+ 0x2215b: "\x04\x01\x04\x03\x04\x05\x02\x05\x02\x01\x03\x05\x04\x03\x03\x03", // 𢅛
+ 0x2215c: "\x05\x01\x01\x04\x05\x02\x05\x02\x05\x01\x01\x04\x05\x02\x05\x02", // 𢅜
+ 0x2215d: "\x05\x01\x03\x01\x02\x02\x01\x03\x04\x03\x05\x05\x04\x02\x05\x02", // 𢅝
+ 0x2215e: "\x03\x02\x05\x01\x01\x02\x05\x02\x05\x01\x01\x02\x04\x01\x03\x04", // 𢅞
+ 0x2215f: "\x02\x05\x02\x01\x05\x03\x01\x01\x03\x04\x05\x04\x05\x02\x01\x03\x04", // 𢅟
+ 0x22160: "\x01\x03\x02\x05\x01\x01\x03\x05\x04\x01\x01\x03\x04\x04\x02\x05\x02", // 𢅠
+ 0x22161: "\x02\x05\x02\x01\x02\x05\x01\x02\x05\x03\x01\x01\x02\x05\x02\x02\x01", // 𢅡
+ 0x22162: "\x02\x05\x02\x01\x03\x02\x05\x02\x04\x04\x05\x04\x03\x03\x04\x05\x04", // 𢅢
+ 0x22163: "\x02\x05\x02\x01\x02\x01\x02\x05\x01\x04\x05\x01\x05\x04\x01\x02\x01", // 𢅣
+ 0x22164: "\x02\x05\x02\x01\x02\x02\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 𢅤
+ 0x22165: "\x02\x05\x02\x01\x03\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x04", // 𢅥
+ 0x22166: "\x05\x01\x01\x04\x05\x02\x05\x02\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 𢅦
+ 0x22167: "\x02\x05\x02\x05\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x02\x05\x02", // 𢅧
+ 0x22168: "\x02\x05\x01\x01\x01\x02\x01\x03\x04\x05\x01\x01\x04\x05\x02\x05\x02", // 𢅨
+ 0x22169: "\x02\x05\x02\x02\x05\x02\x02\x01\x05\x04\x03\x05\x04\x01\x01\x05\x01\x05", // 𢅩
+ 0x2216a: "\x02\x05\x02\x01\x03\x02\x01\x01\x02\x03\x04\x04\x05\x04\x04\x05\x03\x04", // 𢅪
+ 0x2216b: "\x02\x05\x02\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 𢅫
+ 0x2216c: "\x03\x02\x05\x01\x01\x02\x05\x02\x01\x03\x02\x05\x01\x01\x01\x01\x03\x04", // 𢅬
+ 0x2216d: "\x02\x05\x02\x01\x02\x05\x01\x02\x03\x04\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 𢅭
+ 0x2216e: "\x01\x02\x01\x03\x05\x01\x02\x01\x04\x03\x03\x04\x04\x03\x03\x04\x02\x05\x02", // 𢅮
+ 0x2216f: "\x02\x05\x02\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x01\x02\x01", // 𢅯
+ 0x22170: "\x02\x05\x02\x05\x01\x01\x02\x02\x05\x01\x01\x03\x02\x01\x05\x01\x01\x03\x05", // 𢅰
+ 0x22171: "\x02\x05\x02\x05\x01\x05\x01\x02\x01\x01\x02\x01\x02\x05\x01\x04\x04\x04\x04", // 𢅱
+ 0x22172: "\x01\x02\x01\x04\x03\x01\x01\x02\x04\x03\x03\x04\x04\x03\x03\x04\x02\x05\x02", // 𢅲
+ 0x22173: "\x02\x05\x02\x04\x01\x04\x03\x01\x03\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 𢅳
+ 0x22174: "\x02\x05\x02\x01\x02\x02\x02\x05\x02\x02\x01\x04\x05\x02\x05\x01\x01\x01", // 𢅴
+ 0x22175: "\x02\x05\x01\x03\x01\x04\x03\x01\x04\x02\x05\x02\x02\x01\x01\x03\x05\x03\x04", // 𢅵
+ 0x22176: "\x02\x05\x02\x03\x01\x04\x03\x01\x04\x02\x05\x03\x04\x01\x01\x05\x05\x03\x04", // 𢅶
+ 0x22177: "\x01\x02\x02\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04\x02\x05\x02", // 𢅷
+ 0x22178: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x03\x01\x03\x04\x02\x05\x02", // 𢅸
+ 0x22179: "\x02\x05\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02", // 𢅹
+ 0x2217a: "\x05\x01\x01\x01\x01\x02\x02\x05\x01\x01\x04\x01\x03\x01\x02\x02\x01\x02\x05\x02", // 𢅺
+ 0x2217b: "\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𢅻
+ 0x2217c: "\x02\x05\x02\x01\x03\x02\x05\x01\x01\x01\x02\x01\x02\x01\x05\x01\x05\x03\x04\x03\x05\x04", // 𢅼
+ 0x2217d: "\x02\x05\x02\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x01\x04\x03\x03\x04", // 𢅽
+ 0x2217e: "\x02\x05\x02\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𢅾
+ 0x2217f: "\x02\x05\x02\x01\x03\x04\x01\x02\x02\x01\x01\x02\x03\x04\x01\x02\x02\x01\x01\x02\x03\x04", // 𢅿
+ 0x22180: "\x02\x05\x02\x02\x05\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04\x01\x03\x04\x01\x01\x02\x01", // 𢆀
+ 0x22181: "\x02\x05\x02\x03\x01\x04\x03\x01\x04\x04\x01\x03\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 𢆁
+ 0x22182: "\x02\x05\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x04\x01\x02\x05\x01\x01\x02\x02\x02\x02", // 𢆂
+ 0x22183: "\x02\x05\x02\x04\x03\x01\x03\x02\x05\x01\x01\x01\x02\x01\x02\x01\x05\x01\x05\x03\x04\x03\x05\x04", // 𢆃
+ 0x22184: "\x02\x05\x02\x01\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 𢆄
+ 0x22185: "\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x04\x02\x05\x02", // 𢆅
+ 0x22186: "\x02\x05\x02\x01\x02\x02\x02\x05\x01\x01\x01\x02\x01\x02\x01\x05\x01\x05\x03\x05\x03\x05\x04", // 𢆆
+ 0x22187: "\x03\x02\x05\x01\x01\x05\x04\x03\x03\x04\x02\x05\x02\x01\x02\x01\x04\x05\x01\x03\x02\x05\x01\x01\x02\x03\x04", // 𢆇
+ 0x22188: "\x03\x03\x02\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x01\x02\x01\x03\x03\x03\x05\x04\x04\x05\x04\x02\x05\x02", // 𢆈
+ 0x22189: "\x04\x03\x01\x01\x02", // 𢆉
+ 0x2218a: "\x01\x04\x03\x01\x02", // 𢆊
+ 0x2218b: "\x05\x04\x03\x05\x01\x01\x02", // 𢆋
+ 0x2218c: "\x02\x01\x01\x03\x01\x01\x02", // 𢆌
+ 0x2218d: "\x01\x01\x02\x05\x01\x01\x02", // 𢆍
+ 0x2218e: "\x01\x03\x04\x04\x03\x01\x01\x02", // 𢆎
+ 0x2218f: "\x03\x01\x01\x02\x04\x01\x01\x02", // 𢆏
+ 0x22190: "\x01\x03\x01\x01\x02\x01\x01\x02", // 𢆐
+ 0x22191: "\x03\x04\x03\x04\x03\x04\x01\x01\x02", // 𢆑
+ 0x22192: "\x02\x01\x01\x01\x01\x03\x01\x01\x02", // 𢆒
+ 0x22193: "\x01\x03\x02\x04\x01\x04\x03\x01\x02", // 𢆓
+ 0x22194: "\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 𢆔
+ 0x22195: "\x01\x04\x03\x01\x02\x03\x03\x05\x04", // 𢆕
+ 0x22196: "\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 𢆖
+ 0x22197: "\x04\x03\x01\x01\x03\x02\x05\x02\x01\x01", // 𢆗
+ 0x22198: "\x03\x01\x01\x02\x01\x02\x03\x05\x03\x04", // 𢆘
+ 0x22199: "\x05\x03\x05\x03\x01\x01\x03\x01\x01\x02", // 𢆙
+ 0x2219a: "\x01\x01\x03\x02\x01\x02\x05\x01\x02\x03\x04", // 𢆚
+ 0x2219b: "\x01\x01\x03\x01\x01\x02\x04\x03\x01\x01\x03\x02", // 𢆛
+ 0x2219c: "\x02\x05\x01\x01\x03\x05\x03\x04\x05\x01\x01\x02", // 𢆜
+ 0x2219d: "\x02\x05\x01\x01\x01\x02\x01\x03\x04\x01\x01\x02", // 𢆝
+ 0x2219e: "\x01\x01\x03\x01\x01\x02\x01\x02\x05\x01\x02\x03\x04", // 𢆞
+ 0x2219f: "\x01\x01\x02\x05\x02\x03\x01\x01\x03\x03\x01\x01\x02", // 𢆟
+ 0x221a0: "\x01\x03\x04\x03\x04\x02\x03\x04\x01\x04\x03\x01\x02", // 𢆠
+ 0x221a1: "\x03\x04\x04\x03\x05\x02\x01\x05\x03\x01\x02\x01\x02", // 𢆡
+ 0x221a2: "\x03\x05\x04\x01\x05\x01\x05\x04\x03\x01\x01\x03\x02", // 𢆢
+ 0x221a3: "\x04\x03\x01\x01\x03\x02\x04\x01\x03\x02\x03\x05\x04\x04", // 𢆣
+ 0x221a4: "\x04\x03\x01\x01\x03\x04\x05\x05\x03\x01\x01\x02\x01\x02", // 𢆤
+ 0x221a5: "\x01\x02\x02\x05\x04\x03\x01\x01\x02\x03\x01\x01\x02\x01\x02", // 𢆥
+ 0x221a6: "\x02\x05\x02\x02\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x03\x04", // 𢆦
+ 0x221a7: "\x01\x02\x01\x04\x03\x01\x01\x02\x01\x02\x03\x04\x03\x01\x03\x04", // 𢆧
+ 0x221a8: "\x01\x02\x03\x04\x03\x01\x03\x04\x01\x02\x01\x04\x03\x01\x01\x02", // 𢆨
+ 0x221a9: "\x03\x05\x04\x01\x05\x01\x05\x03\x01\x01\x03\x03\x01\x01\x02", // 𢆩
+ 0x221aa: "\x01\x02\x01\x04\x03\x01\x01\x02\x01\x02\x01\x02\x05\x01\x01\x02\x01\x01", // 𢆪
+ 0x221ab: "\x03\x01\x01\x02\x01\x02\x02\x01\x02\x01\x01\x03\x01\x02\x03\x03\x05\x03\x04", // 𢆫
+ 0x221ac: "\x01\x02\x05\x01\x02\x03\x04\x01\x02\x05\x01\x02\x03\x04\x01\x01\x03\x01\x01\x02", // 𢆬
+ 0x221ad: "\x05\x05\x05\x02\x05\x03\x04\x01\x05\x04\x04\x05\x04\x04\x05\x03\x01\x01\x02\x01\x02", // 𢆭
+ 0x221ae: "\x01\x04\x03\x01\x02\x01\x02\x01\x02\x01\x03\x05\x01\x03\x01\x02\x05\x01\x02\x05\x05\x03\x04", // 𢆮
+ 0x221af: "\x05\x05\x04\x02", // 𢆯
+ 0x221b0: "\x01\x05\x05\x04", // 𢆰
+ 0x221b1: "\x05\x05\x05\x04", // 𢆱
+ 0x221b2: "\x05\x05\x04\x05\x03", // 𢆲
+ 0x221b3: "\x05\x05\x04\x05\x02", // 𢆳
+ 0x221b4: "\x05\x05\x04\x05\x05", // 𢆴
+ 0x221b5: "\x05\x05\x04\x05\x01", // 𢆵
+ 0x221b6: "\x05\x05\x04\x05\x05\x04", // 𢆶
+ 0x221b7: "\x05\x05\x04\x02\x03\x04\x03", // 𢆷
+ 0x221b8: "\x05\x05\x04\x05\x05\x04\x05", // 𢆸
+ 0x221b9: "\x05\x05\x04\x01\x01\x05\x04", // 𢆹
+ 0x221ba: "\x01\x05\x03\x05\x05\x05\x04", // 𢆺
+ 0x221bb: "\x05\x05\x04\x05\x05\x04\x03\x05", // 𢆻
+ 0x221bc: "\x05\x05\x04\x05\x05\x04\x05\x04", // 𢆼
+ 0x221bd: "\x05\x05\x04\x02\x02\x03\x04\x03", // 𢆽
+ 0x221be: "\x03\x05\x05\x04\x03\x05\x05\x04", // 𢆾
+ 0x221bf: "\x03\x02\x05\x03\x04\x01\x05\x05\x04", // 𢆿
+ 0x221c0: "\x05\x05\x04\x05\x01\x03\x01\x02\x01", // 𢇀
+ 0x221c1: "\x05\x05\x04\x05\x05\x04\x04\x04\x04\x04", // 𢇁
+ 0x221c2: "\x05\x05\x04\x05\x05\x04\x01\x03\x02", // 𢇂
+ 0x221c3: "\x05\x05\x04\x03\x04\x05\x05\x04\x03\x04", // 𢇃
+ 0x221c4: "\x05\x05\x04\x04\x04\x01\x02\x03\x04\x03", // 𢇄
+ 0x221c5: "\x05\x05\x04\x05\x05\x04\x02\x01\x02\x01", // 𢇅
+ 0x221c6: "\x03\x02\x05\x03\x04\x01\x05\x05\x04\x02", // 𢇆
+ 0x221c7: "\x05\x05\x04\x05\x05\x04\x05\x03\x02\x01\x02", // 𢇇
+ 0x221c8: "\x05\x05\x04\x05\x05\x04\x01\x03\x04\x04\x03", // 𢇈
+ 0x221c9: "\x05\x05\x04\x05\x04\x05\x04\x01\x02\x04", // 𢇉
+ 0x221ca: "\x05\x03\x02\x05\x01\x05\x02\x05\x05\x04\x02", // 𢇊
+ 0x221cb: "\x05\x05\x04\x02\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 𢇋
+ 0x221cc: "\x03\x03\x02\x02\x01\x02\x01\x02\x01\x03\x04\x05\x05\x04", // 𢇌
+ 0x221cd: "\x05\x05\x04\x05\x05\x04\x01\x05\x05\x04\x05\x05\x04\x02\x01", // 𢇍
+ 0x221ce: "\x05\x05\x04\x01\x02\x01\x01\x03\x04\x01\x02\x05\x01\x02", // 𢇎
+ 0x221cf: "\x03\x03\x02\x04\x03\x03\x02\x04\x05\x05\x04\x05\x05\x04", // 𢇏
+ 0x221d0: "\x05\x05\x04\x03\x05\x02\x05\x01\x03\x05\x03\x03\x03\x04", // 𢇐
+ 0x221d1: "\x02\x05\x05\x04\x05\x05\x04\x05\x02\x05\x05\x04\x05\x05\x04", // 𢇑
+ 0x221d2: "\x05\x05\x04\x05\x05\x04\x01\x03\x04\x05\x03\x04\x02\x01\x05", // 𢇒
+ 0x221d3: "\x05\x05\x04\x05\x05\x04\x01\x03\x04\x05\x03\x04\x03\x01\x05", // 𢇓
+ 0x221d4: "\x05\x05\x04\x05\x03\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x03\x04", // 𢇔
+ 0x221d5: "\x02\x05\x05\x04\x05\x05\x04\x05\x02\x02\x05\x05\x04\x05\x05\x04\x05\x02", // 𢇕
+ 0x221d6: "\x05\x05\x04\x05\x05\x04\x04\x01\x03\x04\x05\x02\x03\x05\x03\x03\x01\x03\x04\x01\x01\x05", // 𢇖
+ 0x221d7: "\x04\x01\x03\x01\x02\x05", // 𢇗
+ 0x221d8: "\x04\x01\x03\x05\x03\x01", // 𢇘
+ 0x221d9: "\x04\x01\x03\x01\x05\x04", // 𢇙
+ 0x221da: "\x04\x01\x03\x05\x02\x05", // 𢇚
+ 0x221db: "\x04\x01\x03\x01\x01\x02", // 𢇛
+ 0x221dc: "\x04\x01\x03\x04\x01\x05", // 𢇜
+ 0x221dd: "\x04\x01\x03\x05\x05\x04", // 𢇝
+ 0x221de: "\x04\x01\x03\x02\x05\x01", // 𢇞
+ 0x221df: "\x04\x01\x03\x01\x03\x05", // 𢇟
+ 0x221e0: "\x04\x01\x03\x03\x01\x05", // 𢇠
+ 0x221e1: "\x04\x01\x03\x01\x01\x05", // 𢇡
+ 0x221e2: "\x04\x01\x03\x02\x05\x02", // 𢇢
+ 0x221e3: "\x04\x01\x03\x03\x05\x03\x04", // 𢇣
+ 0x221e4: "\x04\x01\x03\x02\x05\x03\x04", // 𢇤
+ 0x221e5: "\x04\x01\x03\x03\x05\x01\x02", // 𢇥
+ 0x221e6: "\x04\x01\x03\x03\x01\x02\x01", // 𢇦
+ 0x221e7: "\x04\x01\x03\x04\x05\x03\x05", // 𢇧
+ 0x221e8: "\x04\x01\x03\x01\x05\x05\x04", // 𢇨
+ 0x221e9: "\x04\x01\x03\x01\x01\x03\x02", // 𢇩
+ 0x221ea: "\x04\x01\x03\x01\x03\x05\x04", // 𢇪
+ 0x221eb: "\x04\x01\x03\x03\x04\x05\x04", // 𢇫
+ 0x221ec: "\x04\x01\x03\x01\x03\x05\x04", // 𢇬
+ 0x221ed: "\x04\x01\x03\x04\x04\x03\x04", // 𢇭
+ 0x221ee: "\x04\x01\x03\x02\x01\x05\x04", // 𢇮
+ 0x221ef: "\x04\x01\x03\x03\x02\x05\x04", // 𢇯
+ 0x221f0: "\x04\x01\x03\x05\x04\x03\x05", // 𢇰
+ 0x221f1: "\x04\x01\x03\x03\x04\x01\x05", // 𢇱
+ 0x221f2: "\x04\x01\x03\x03\x01\x02\x03\x04", // 𢇲
+ 0x221f3: "\x04\x01\x03\x05\x03\x02\x05\x04", // 𢇳
+ 0x221f4: "\x04\x01\x03\x01\x03\x02\x05\x02", // 𢇴
+ 0x221f5: "\x04\x01\x03\x02\x05\x05\x04\x01", // 𢇵
+ 0x221f6: "\x04\x01\x03\x02\x05\x01\x02\x01", // 𢇶
+ 0x221f7: "\x04\x01\x03\x01\x03\x03\x04\x04", // 𢇷
+ 0x221f8: "\x04\x01\x03\x01\x02\x02\x01\x05", // 𢇸
+ 0x221f9: "\x04\x01\x03\x03\x02\x01\x02\x01", // 𢇹
+ 0x221fa: "\x04\x01\x03\x02\x05\x02\x05\x01", // 𢇺
+ 0x221fb: "\x04\x01\x03\x03\x01\x01\x03\x04", // 𢇻
+ 0x221fc: "\x04\x01\x03\x03\x05\x01\x05\x05", // 𢇼
+ 0x221fd: "\x04\x01\x03\x01\x02\x01\x05\x04", // 𢇽
+ 0x221fe: "\x04\x01\x03\x01\x02\x02\x01\x01", // 𢇾
+ 0x221ff: "\x04\x01\x03\x05\x02\x02\x05\x02", // 𢇿
+ 0x22200: "\x04\x01\x03\x02\x02\x04\x03\x01", // 𢈀
+ 0x22201: "\x04\x01\x03\x03\x04\x02\x05\x01", // 𢈁
+ 0x22202: "\x04\x01\x03\x02\x05\x01\x05\x01", // 𢈂
+ 0x22203: "\x04\x01\x03\x02\x05\x02\x03\x05", // 𢈃
+ 0x22204: "\x04\x01\x03\x03\x02\x03\x01\x05", // 𢈄
+ 0x22205: "\x04\x01\x03\x03\x03\x05\x04\x04", // 𢈅
+ 0x22206: "\x04\x01\x03\x05\x03\x02\x05\x01", // 𢈆
+ 0x22207: "\x04\x01\x03\x03\x01\x02\x01\x03\x05", // 𢈇
+ 0x22208: "\x04\x01\x03\x03\x04\x01\x02\x05\x01", // 𢈈
+ 0x22209: "\x04\x01\x03\x02\x05\x01\x02\x05\x01", // 𢈉
+ 0x2220a: "\x04\x01\x03\x03\x01\x01\x02\x05\x02", // 𢈊
+ 0x2220b: "\x04\x01\x03\x05\x04\x03\x05\x04\x01", // 𢈋
+ 0x2220c: "\x04\x01\x03\x03\x05\x01\x03\x05\x05", // 𢈌
+ 0x2220d: "\x04\x01\x03\x04\x03\x01\x02\x03\x04", // 𢈍
+ 0x2220e: "\x04\x01\x03\x01\x02\x02\x01\x03\x04", // 𢈎
+ 0x2220f: "\x04\x01\x03\x05\x01\x01\x02\x03\x04", // 𢈏
+ 0x22210: "\x04\x01\x03\x01\x02\x02\x01\x03\x05", // 𢈐
+ 0x22211: "\x04\x01\x03\x03\x05\x03\x04\x05\x03", // 𢈑
+ 0x22212: "\x04\x01\x03\x01\x02\x01\x02\x03\x04", // 𢈒
+ 0x22213: "\x04\x01\x03\x01\x03\x02\x05\x01\x01", // 𢈓
+ 0x22214: "\x04\x01\x03\x02\x05\x01\x01\x03\x04", // 𢈔
+ 0x22215: "\x04\x01\x03\x03\x03\x03\x05\x03\x04", // 𢈕
+ 0x22216: "\x04\x01\x03\x01\x02\x05\x02\x01\x01", // 𢈖
+ 0x22217: "\x04\x01\x03\x02\x05\x01\x03\x04\x05", // 𢈗
+ 0x22218: "\x04\x01\x03\x05\x01\x02\x02\x03\x04", // 𢈘
+ 0x22219: "\x04\x01\x03\x01\x03\x04\x03\x04\x03\x04", // 𢈙
+ 0x2221a: "\x04\x01\x03\x02\x05\x01\x03\x02\x05\x01", // 𢈚
+ 0x2221b: "\x04\x01\x03\x02\x05\x01\x02\x03\x04\x01", // 𢈛
+ 0x2221c: "\x04\x01\x03\x05\x02\x01\x03\x01\x02\x01", // 𢈜
+ 0x2221d: "\x04\x01\x03\x01\x02\x04\x01\x03\x04\x04", // 𢈝
+ 0x2221e: "\x04\x01\x03\x02\x01\x02\x05\x05\x01\x01", // 𢈞
+ 0x2221f: "\x04\x01\x03\x05\x04\x03\x01\x01\x03\x04", // 𢈟
+ 0x22220: "\x04\x01\x03\x01\x02\x05\x01\x02\x03\x04", // 𢈠
+ 0x22221: "\x04\x01\x03\x05\x04\x03\x05\x03\x05\x04", // 𢈡
+ 0x22222: "\x04\x01\x03\x02\x05\x01\x02\x05\x01\x02", // 𢈢
+ 0x22223: "\x04\x01\x03\x03\x02\x05\x03\x05\x04\x01", // 𢈣
+ 0x22224: "\x04\x01\x03\x01\x05\x02\x05\x01\x01\x02", // 𢈤
+ 0x22225: "\x04\x01\x03\x02\x05\x01\x01\x01\x03\x05", // 𢈥
+ 0x22226: "\x04\x01\x03\x03\x05\x04\x01\x01\x01\x02", // 𢈦
+ 0x22227: "\x04\x01\x03\x04\x01\x02\x01\x02\x05\x04", // 𢈧
+ 0x22228: "\x04\x01\x03\x02\x01\x02\x01\x02\x03\x03", // 𢈨
+ 0x22229: "\x04\x01\x03\x01\x02\x01\x02\x01\x03\x04", // 𢈩
+ 0x2222a: "\x04\x01\x03\x01\x02\x05\x01\x02\x05\x01", // 𢈪
+ 0x2222b: "\x04\x01\x03\x01\x03\x01\x01\x05\x03\x04", // 𢈫
+ 0x2222c: "\x04\x01\x03\x01\x02\x02\x05\x01\x01\x01", // 𢈬
+ 0x2222d: "\x04\x01\x03\x02\x04\x03\x03\x05\x04\x01", // 𢈭
+ 0x2222e: "\x04\x01\x03\x02\x05\x01\x02\x01\x03\x04", // 𢈮
+ 0x2222f: "\x04\x01\x03\x03\x02\x05\x01\x01\x01\x03", // 𢈯
+ 0x22230: "\x04\x01\x03\x05\x01\x01\x03\x04\x01\x02", // 𢈰
+ 0x22231: "\x04\x01\x03\x03\x01\x02\x03\x04\x02\x02", // 𢈱
+ 0x22232: "\x04\x01\x03\x02\x05\x01\x01\x05\x02\x01", // 𢈲
+ 0x22233: "\x04\x01\x03\x03\x05\x05\x04\x04\x05\x04\x04", // 𢈳
+ 0x22234: "\x04\x01\x03\x04\x01\x02\x05\x01\x02\x03\x04", // 𢈴
+ 0x22235: "\x04\x01\x03\x04\x04\x05\x03\x05\x01\x02\x01", // 𢈵
+ 0x22236: "\x04\x01\x03\x02\x01\x05\x03\x01\x05\x03\x05", // 𢈶
+ 0x22237: "\x04\x01\x03\x02\x05\x01\x02\x01\x01\x03\x02", // 𢈷
+ 0x22238: "\x04\x01\x03\x03\x04\x01\x05\x04\x05\x04\x04", // 𢈸
+ 0x22239: "\x04\x01\x03\x03\x02\x05\x01\x05\x01\x01\x02", // 𢈹
+ 0x2223a: "\x04\x01\x03\x04\x01\x02\x05\x02\x05\x01\x01", // 𢈺
+ 0x2223b: "\x04\x01\x03\x01\x05\x01\x01\x02\x01\x03\x04", // 𢈻
+ 0x2223c: "\x04\x01\x03\x04\x01\x03\x04\x03\x04\x01\x02", // 𢈼
+ 0x2223d: "\x04\x01\x03\x01\x05\x03\x04\x01\x05\x03\x04", // 𢈽
+ 0x2223e: "\x04\x01\x03\x01\x02\x02\x01\x01\x01\x05\x04", // 𢈾
+ 0x2223f: "\x04\x01\x03\x01\x02\x05\x01\x01\x05\x03\x04", // 𢈿
+ 0x22240: "\x04\x01\x03\x01\x02\x05\x02\x04\x01\x03\x04", // 𢉀
+ 0x22241: "\x04\x01\x03\x03\x05\x01\x01\x03\x05\x01\x01", // 𢉁
+ 0x22242: "\x04\x01\x03\x04\x04\x05\x02\x05\x01\x05\x01", // 𢉂
+ 0x22243: "\x04\x01\x03\x03\x04\x01\x01\x02\x02\x05\x01", // 𢉃
+ 0x22244: "\x04\x01\x03\x03\x04\x01\x05\x03\x05\x03\x04", // 𢉄
+ 0x22245: "\x04\x01\x03\x03\x04\x01\x01\x02\x04\x03\x01", // 𢉅
+ 0x22246: "\x04\x01\x03\x05\x01\x01\x01\x01\x02\x05\x04", // 𢉆
+ 0x22247: "\x04\x01\x03\x03\x01\x03\x04\x02\x01\x03\x04", // 𢉇
+ 0x22248: "\x04\x01\x03\x01\x02\x01\x02\x05\x01\x05\x02", // 𢉈
+ 0x22249: "\x04\x01\x03\x01\x03\x04\x04\x03\x01\x02\x01", // 𢉉
+ 0x2224a: "\x04\x01\x03\x04\x01\x04\x03\x01\x05\x04", // 𢉊
+ 0x2224b: "\x04\x01\x03\x03\x01\x01\x02\x03\x05\x01\x01", // 𢉋
+ 0x2224c: "\x04\x01\x03\x02\x01\x01\x02\x03\x04\x05\x04", // 𢉌
+ 0x2224d: "\x04\x01\x03\x02\x01\x02\x01\x04\x04\x04\x04", // 𢉍
+ 0x2224e: "\x04\x01\x03\x05\x02\x01\x03\x01\x02\x05\x04", // 𢉎
+ 0x2224f: "\x04\x01\x03\x03\x04\x04\x03\x01\x03\x05\x04", // 𢉏
+ 0x22250: "\x04\x01\x03\x03\x01\x01\x05\x04\x04\x04\x04", // 𢉐
+ 0x22251: "\x04\x01\x03\x01\x01\x02\x01\x02\x05\x01\x01", // 𢉑
+ 0x22252: "\x04\x01\x03\x02\x04\x03\x02\x05\x02\x05\x01", // 𢉒
+ 0x22253: "\x04\x01\x03\x03\x01\x01\x02\x01\x02\x01\x05", // 𢉓
+ 0x22254: "\x04\x01\x03\x03\x02\x05\x04\x01\x02\x03\x04", // 𢉔
+ 0x22255: "\x04\x01\x03\x03\x05\x02\x05\x01\x03\x05\x04", // 𢉕
+ 0x22256: "\x04\x01\x03\x05\x02\x02\x01\x05\x04\x05\x04", // 𢉖
+ 0x22257: "\x04\x01\x03\x05\x02\x02\x05\x01\x05\x04\x01", // 𢉗
+ 0x22258: "\x04\x01\x03\x04\x03\x03\x04\x04\x03\x03\x04", // 𢉘
+ 0x22259: "\x04\x01\x03\x01\x02\x02\x01\x04\x03\x03\x04", // 𢉙
+ 0x2225a: "\x04\x01\x03\x03\x04\x04\x03\x05\x02\x01\x05", // 𢉚
+ 0x2225b: "\x04\x01\x03\x03\x05\x03\x03\x04\x04\x05\x04\x04", // 𢉛
+ 0x2225c: "\x04\x01\x03\x01\x02\x01\x03\x02\x05\x01\x01", // 𢉜
+ 0x2225d: "\x04\x01\x03\x02\x05\x01\x02\x01\x01\x05\x03\x04", // 𢉝
+ 0x2225e: "\x04\x01\x03\x03\x05\x01\x03\x02\x05\x01\x02\x02", // 𢉞
+ 0x2225f: "\x04\x01\x03\x03\x03\x02\x05\x01\x01\x05\x03\x04", // 𢉟
+ 0x22260: "\x04\x01\x03\x03\x02\x05\x01\x02\x05\x02\x01\x04", // 𢉠
+ 0x22261: "\x04\x01\x03\x03\x02\x05\x04\x03\x01\x01\x03\x04", // 𢉡
+ 0x22262: "\x04\x01\x03\x01\x02\x02\x05\x01\x03\x05\x04\x01", // 𢉢
+ 0x22263: "\x04\x01\x03\x03\x02\x02\x05\x01\x01\x02\x03\x04", // 𢉣
+ 0x22264: "\x04\x01\x03\x05\x03\x02\x05\x01\x01\x02\x03\x04", // 𢉤
+ 0x22265: "\x04\x01\x03\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 𢉥
+ 0x22266: "\x04\x01\x03\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 𢉦
+ 0x22267: "\x04\x01\x03\x01\x02\x01\x02\x02\x05\x01\x01\x01", // 𢉧
+ 0x22268: "\x04\x01\x03\x01\x02\x05\x01\x02\x03\x04\x02\x02", // 𢉨
+ 0x22269: "\x04\x01\x03\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 𢉩
+ 0x2226a: "\x04\x01\x03\x01\x02\x01\x02\x01\x05\x01\x02\x03\x04", // 𢉪
+ 0x2226b: "\x04\x01\x03\x05\x01\x01\x02\x05\x01\x02\x03\x04", // 𢉫
+ 0x2226c: "\x04\x01\x03\x01\x02\x05\x02\x02\x01\x01\x02\x01", // 𢉬
+ 0x2226d: "\x04\x01\x03\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 𢉭
+ 0x2226e: "\x04\x01\x03\x01\x02\x02\x01\x01\x01\x03\x05\x05", // 𢉮
+ 0x2226f: "\x04\x01\x03\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 𢉯
+ 0x22270: "\x04\x01\x03\x02\x05\x01\x02\x05\x01\x01\x02\x01", // 𢉰
+ 0x22271: "\x04\x01\x03\x01\x02\x02\x01\x02\x05\x01\x02\x01", // 𢉱
+ 0x22272: "\x04\x01\x03\x03\x05\x04\x01\x01\x01\x02\x05\x01", // 𢉲
+ 0x22273: "\x04\x01\x03\x01\x02\x02\x01\x03\x02\x05\x01", // 𢉳
+ 0x22274: "\x04\x01\x03\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 𢉴
+ 0x22275: "\x04\x01\x03\x02\x05\x02\x02\x05\x02\x02\x05\x02", // 𢉵
+ 0x22276: "\x04\x01\x03\x03\x02\x01\x02\x04\x01\x01\x03\x04", // 𢉶
+ 0x22277: "\x04\x01\x03\x04\x03\x01\x02\x05\x03\x05\x01\x01", // 𢉷
+ 0x22278: "\x04\x01\x03\x03\x03\x02\x01\x03\x04\x03\x03\x04", // 𢉸
+ 0x22279: "\x04\x01\x03\x04\x04\x05\x05\x04\x01\x02\x03\x04", // 𢉹
+ 0x2227a: "\x04\x01\x03\x05\x02\x02\x01\x02\x05\x01\x01\x01", // 𢉺
+ 0x2227b: "\x04\x01\x03\x05\x02\x02\x01\x05\x03\x02\x05\x01", // 𢉻
+ 0x2227c: "\x04\x01\x03\x05\x01\x01\x03\x04\x03\x05\x01\x01", // 𢉼
+ 0x2227d: "\x04\x01\x03\x01\x02\x03\x04\x01\x02\x02\x05\x01", // 𢉽
+ 0x2227e: "\x04\x01\x03\x02\x05\x05\x04\x05\x05\x04\x05\x02", // 𢉾
+ 0x2227f: "\x04\x01\x03\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𢉿
+ 0x22280: "\x04\x01\x03\x03\x03\x02\x01\x05\x03\x01\x05\x03\x05", // 𢊀
+ 0x22281: "\x04\x01\x03\x05\x02\x02\x01\x03\x05\x04\x04\x04\x04", // 𢊁
+ 0x22282: "\x04\x01\x03\x01\x01\x02\x01\x02\x05\x02\x05\x01\x01", // 𢊂
+ 0x22283: "\x04\x01\x03\x01\x03\x04\x03\x04\x03\x04\x01\x02\x01", // 𢊃
+ 0x22284: "\x04\x01\x03\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𢊄
+ 0x22285: "\x04\x01\x03\x03\x02\x05\x01\x05\x01\x04\x05\x04", // 𢊅
+ 0x22286: "\x04\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04", // 𢊆
+ 0x22287: "\x04\x01\x03\x05\x02\x02\x01\x04\x01\x03\x05\x03\x04", // 𢊇
+ 0x22288: "\x04\x01\x03\x04\x04\x05\x03\x04\x03\x04\x03\x05\x04", // 𢊈
+ 0x22289: "\x04\x01\x03\x03\x01\x02\x01\x02\x05\x02\x05\x01\x01", // 𢊉
+ 0x2228a: "\x04\x01\x03\x01\x03\x04\x04\x03\x02\x05\x01\x01\x05", // 𢊊
+ 0x2228b: "\x04\x01\x03\x01\x01\x02\x02\x01\x03\x04\x03\x05\x04", // 𢊋
+ 0x2228c: "\x04\x01\x03\x04\x01\x03\x04\x03\x04\x03\x05\x04\x01", // 𢊌
+ 0x2228d: "\x04\x01\x03\x01\x02\x05\x01\x04\x03\x01\x01\x02\x04", // 𢊍
+ 0x2228e: "\x04\x01\x03\x02\x01\x01\x01\x02\x01\x01\x01\x03\x04", // 𢊎
+ 0x2228f: "\x04\x01\x03\x01\x01\x01\x02\x05\x03\x03\x01\x01\x05", // 𢊏
+ 0x22290: "\x04\x01\x03\x03\x03\x02\x01\x05\x03\x01\x05\x03\x04", // 𢊐
+ 0x22291: "\x04\x01\x03\x01\x02\x02\x01\x03\x02\x05\x01\x01\x02", // 𢊑
+ 0x22292: "\x04\x01\x03\x03\x02\x01\x02\x03\x04\x04\x04\x04\x04", // 𢊒
+ 0x22293: "\x04\x01\x03\x02\x03\x04\x02\x03\x04\x02\x05\x01\x01", // 𢊓
+ 0x22294: "\x04\x01\x03\x03\x05\x02\x05\x03\x05\x03\x03\x03\x04", // 𢊔
+ 0x22295: "\x04\x01\x03\x03\x02\x05\x03\x03\x04\x01\x04\x05\x04\x04", // 𢊕
+ 0x22296: "\x04\x01\x03\x04\x04\x01\x04\x05\x03\x05\x01\x02\x03\x04", // 𢊖
+ 0x22297: "\x04\x01\x03\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x04", // 𢊗
+ 0x22298: "\x04\x01\x03\x01\x03\x01\x01\x03\x04\x05\x03\x05\x05\x04", // 𢊘
+ 0x22299: "\x04\x01\x03\x03\x04\x01\x05\x03\x04\x03\x05\x02\x05\x01", // 𢊙
+ 0x2229a: "\x04\x01\x03\x03\x03\x02\x02\x01\x02\x01\x02\x01\x03\x04", // 𢊚
+ 0x2229b: "\x04\x01\x03\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𢊛
+ 0x2229c: "\x04\x01\x03\x05\x01\x05\x01\x02\x01\x01\x01\x05\x03\x04", // 𢊜
+ 0x2229d: "\x04\x01\x03\x05\x02\x03\x04\x03\x03\x04\x04\x03\x03\x04", // 𢊝
+ 0x2229e: "\x04\x01\x03\x05\x04\x01\x05\x04\x01\x03\x04\x02\x05\x02", // 𢊞
+ 0x2229f: "\x04\x01\x03\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𢊟
+ 0x222a0: "\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x02\x05\x01", // 𢊠
+ 0x222a1: "\x04\x01\x03\x01\x03\x02\x04\x02\x05\x01\x01\x01\x03\x05", // 𢊡
+ 0x222a2: "\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x01\x01\x02", // 𢊢
+ 0x222a3: "\x04\x01\x03\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 𢊣
+ 0x222a4: "\x04\x01\x03\x02\x05\x02\x02\x01\x01\x01\x03\x05\x04\x04", // 𢊤
+ 0x222a5: "\x04\x01\x03\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x02", // 𢊥
+ 0x222a6: "\x04\x01\x03\x03\x04\x03\x04\x02\x05\x01\x03\x05\x03\x04", // 𢊦
+ 0x222a7: "\x04\x01\x03\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𢊧
+ 0x222a8: "\x04\x01\x03\x05\x03\x01\x05\x04\x05\x05\x04\x02\x03\x04", // 𢊨
+ 0x222a9: "\x04\x01\x03\x05\x04\x02\x05\x02\x02\x01\x01\x05\x03\x05", // 𢊩
+ 0x222aa: "\x04\x01\x03\x05\x01\x01\x03\x04\x04\x03\x01\x02\x03\x04", // 𢊪
+ 0x222ab: "\x04\x01\x03\x01\x02\x01\x04\x01\x04\x03\x01\x02\x05\x01", // 𢊫
+ 0x222ac: "\x04\x01\x03\x02\x05\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 𢊬
+ 0x222ad: "\x04\x01\x03\x04\x03\x01\x01\x03\x04\x04\x01\x03\x05\x03\x04", // 𢊭
+ 0x222ae: "\x04\x01\x03\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𢊮
+ 0x222af: "\x04\x01\x03\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04", // 𢊯
+ 0x222b0: "\x04\x01\x03\x01\x02\x02\x01\x03\x05\x04\x01\x03\x01\x03\x04", // 𢊰
+ 0x222b1: "\x04\x01\x03\x01\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 𢊱
+ 0x222b2: "\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04", // 𢊲
+ 0x222b3: "\x04\x01\x03\x02\x01\x02\x01\x01\x05\x01\x02\x05\x01\x02\x03\x04", // 𢊳
+ 0x222b4: "\x04\x01\x03\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 𢊴
+ 0x222b5: "\x04\x01\x03\x03\x02\x05\x01\x01\x02\x05\x01\x01\x03\x01\x02", // 𢊵
+ 0x222b6: "\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x03\x05\x04\x01", // 𢊶
+ 0x222b7: "\x04\x01\x03\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𢊷
+ 0x222b8: "\x04\x01\x03\x02\x05\x02\x02\x01\x01\x01\x03\x01\x02\x03\x04", // 𢊸
+ 0x222b9: "\x04\x01\x03\x05\x04\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𢊹
+ 0x222ba: "\x04\x01\x03\x01\x02\x01\x05\x02\x05\x01\x02\x05\x01\x02\x01", // 𢊺
+ 0x222bb: "\x04\x01\x03\x03\x02\x01\x01\x05\x01\x01\x03\x04\x02\x03\x04", // 𢊻
+ 0x222bc: "\x04\x01\x03\x03\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𢊼
+ 0x222bd: "\x04\x01\x03\x04\x03\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04", // 𢊽
+ 0x222be: "\x04\x01\x03\x03\x02\x01\x02\x04\x02\x05\x01\x01\x01\x03\x04", // 𢊾
+ 0x222bf: "\x04\x01\x03\x03\x04\x03\x04\x02\x05\x02\x02\x01\x03\x05\x04", // 𢊿
+ 0x222c0: "\x04\x01\x03\x02\x01\x02\x01\x03\x05\x04\x01\x01\x01\x02\x05\x01", // 𢋀
+ 0x222c1: "\x04\x01\x03\x02\x01\x02\x05\x01\x01\x01\x05\x03\x05\x05\x04", // 𢋁
+ 0x222c2: "\x04\x01\x03\x02\x05\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 𢋂
+ 0x222c3: "\x04\x01\x03\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 𢋃
+ 0x222c4: "\x04\x01\x03\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x02\x05", // 𢋄
+ 0x222c5: "\x04\x01\x03\x03\x04\x01\x03\x05\x01\x01\x02\x02\x03\x05\x03\x04", // 𢋅
+ 0x222c6: "\x04\x01\x03\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05\x03\x04", // 𢋆
+ 0x222c7: "\x04\x01\x03\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 𢋇
+ 0x222c8: "\x04\x01\x03\x03\x05\x02\x05\x01\x02\x01\x01\x03\x01\x02\x03\x04", // 𢋈
+ 0x222c9: "\x04\x01\x03\x03\x01\x02\x03\x04\x03\x05\x02\x03\x04\x05\x03\x01", // 𢋉
+ 0x222ca: "\x04\x01\x03\x04\x01\x05\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 𢋊
+ 0x222cb: "\x04\x01\x03\x03\x03\x02\x02\x05\x02\x01\x03\x05\x03\x01\x03\x04", // 𢋋
+ 0x222cc: "\x04\x01\x03\x03\x04\x03\x04\x02\x05\x01\x02\x05\x01\x03\x05\x04", // 𢋌
+ 0x222cd: "\x04\x01\x03\x01\x02\x02\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𢋍
+ 0x222ce: "\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 𢋎
+ 0x222cf: "\x04\x01\x03\x01\x03\x02\x05\x02\x02\x01\x01\x01\x01\x02\x03\x04", // 𢋏
+ 0x222d0: "\x04\x01\x03\x04\x01\x03\x04\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𢋐
+ 0x222d1: "\x04\x01\x03\x03\x01\x01\x02\x02\x02\x02\x01\x03\x05\x04\x01\x05\x02", // 𢋑
+ 0x222d2: "\x04\x01\x03\x02\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𢋒
+ 0x222d3: "\x04\x01\x03\x01\x02\x02\x01\x02\x05\x01\x03\x04\x04\x03\x01\x02\x01", // 𢋓
+ 0x222d4: "\x04\x01\x03\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 𢋔
+ 0x222d5: "\x04\x01\x03\x04\x03\x01\x02\x05\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 𢋕
+ 0x222d6: "\x04\x01\x03\x05\x01\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 𢋖
+ 0x222d7: "\x04\x01\x03\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01\x04\x03\x03\x04", // 𢋗
+ 0x222d8: "\x04\x01\x03\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𢋘
+ 0x222d9: "\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x02\x05\x01\x02\x01\x04", // 𢋙
+ 0x222da: "\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x04\x05\x03\x05\x04\x01", // 𢋚
+ 0x222db: "\x04\x01\x03\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02", // 𢋛
+ 0x222dc: "\x04\x01\x03\x03\x02\x05\x01\x01\x03\x01\x02\x02\x05\x01\x02\x01\x04", // 𢋜
+ 0x222dd: "\x04\x01\x03\x03\x02\x05\x01\x01\x03\x05\x05\x04\x01\x02\x03\x04", // 𢋝
+ 0x222de: "\x04\x01\x03\x03\x04\x04\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𢋞
+ 0x222df: "\x04\x01\x03\x05\x01\x02\x02\x01\x01\x05\x03\x05\x03\x01\x02\x03\x04", // 𢋟
+ 0x222e0: "\x04\x01\x04\x03\x04\x05\x02\x05\x02\x04\x01\x03\x03\x05\x01\x05\x04", // 𢋠
+ 0x222e1: "\x04\x01\x03\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01", // 𢋡
+ 0x222e2: "\x04\x01\x03\x01\x03\x04\x03\x04\x02\x03\x04\x01\x02\x05\x02\x05\x01\x01", // 𢋢
+ 0x222e3: "\x04\x01\x03\x01\x03\x02\x05\x01\x01\x04\x05\x04\x05\x04\x04\x03\x05\x04", // 𢋣
+ 0x222e4: "\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x04\x05\x04\x04\x03\x05\x04", // 𢋤
+ 0x222e5: "\x04\x01\x03\x03\x02\x01\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𢋥
+ 0x222e6: "\x04\x01\x03\x01\x02\x03\x04\x03\x04\x01\x02\x05\x02\x03\x04\x03\x04\x01", // 𢋦
+ 0x222e7: "\x04\x01\x03\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01", // 𢋧
+ 0x222e8: "\x04\x01\x03\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x01", // 𢋨
+ 0x222e9: "\x04\x01\x03\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01\x01\x05\x05\x04", // 𢋩
+ 0x222ea: "\x04\x01\x03\x05\x02\x02\x01\x03\x04\x03\x02\x01\x01\x05\x01\x01\x03\x04", // 𢋪
+ 0x222eb: "\x04\x01\x03\x05\x04\x01\x05\x04\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𢋫
+ 0x222ec: "\x04\x01\x03\x01\x02\x03\x04\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𢋬
+ 0x222ed: "\x04\x01\x03\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04\x05\x04", // 𢋭
+ 0x222ee: "\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x02\x05\x01\x01\x03\x01\x03\x04", // 𢋮
+ 0x222ef: "\x04\x01\x03\x03\x01\x05\x01\x01\x02\x03\x04\x03\x01\x05\x01\x01\x02\x03\x04", // 𢋯
+ 0x222f0: "\x04\x01\x03\x03\x01\x01\x02\x02\x02\x02\x01\x01\x02\x03\x04\x01\x02\x03\x04", // 𢋰
+ 0x222f1: "\x05\x02\x02\x05\x02\x04\x01\x03\x05\x02\x02\x01\x01\x05\x04\x04\x04\x04", // 𢋱
+ 0x222f2: "\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x04\x04\x05\x01\x02\x01\x03\x04", // 𢋲
+ 0x222f3: "\x04\x01\x03\x01\x02\x02\x01\x04\x04\x04\x04\x04\x01\x03\x04\x03\x04\x01\x02", // 𢋳
+ 0x222f4: "\x01\x02\x02\x01\x03\x05\x04\x05\x02\x05\x02\x04\x01\x03\x03\x05\x01\x05\x04", // 𢋴
+ 0x222f5: "\x04\x01\x03\x05\x02\x02\x01\x01\x02\x01\x02\x02\x05\x03\x01\x02\x03\x04\x01", // 𢋵
+ 0x222f6: "\x04\x01\x03\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x05\x02\x01", // 𢋶
+ 0x222f7: "\x04\x01\x03\x01\x02\x05\x01\x02\x03\x04\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 𢋷
+ 0x222f8: "\x04\x01\x03\x02\x01\x01\x01\x05\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 𢋸
+ 0x222f9: "\x04\x01\x03\x02\x01\x02\x01\x01\x02\x03\x04\x02\x01\x02\x01\x01\x02\x03\x04", // 𢋹
+ 0x222fa: "\x04\x01\x03\x05\x02\x02\x01\x03\x04\x04\x04\x04\x04\x05\x02\x01\x05\x05\x04", // 𢋺
+ 0x222fb: "\x04\x01\x03\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x03\x01\x03\x04", // 𢋻
+ 0x222fc: "\x04\x01\x03\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x04\x03\x01\x01\x05\x03\x04", // 𢋼
+ 0x222fd: "\x04\x01\x03\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x03\x05\x04\x05\x02", // 𢋽
+ 0x222fe: "\x04\x01\x03\x01\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x02\x05\x02\x05\x01\x01", // 𢋾
+ 0x222ff: "\x04\x01\x03\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01\x02\x03\x04", // 𢋿
+ 0x22300: "\x04\x01\x03\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04\x04\x01\x03\x05\x03\x04", // 𢌀
+ 0x22301: "\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𢌁
+ 0x22302: "\x04\x01\x03\x01\x03\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01\x03\x05\x04", // 𢌂
+ 0x22303: "\x04\x01\x03\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x03\x05\x03\x04", // 𢌃
+ 0x22304: "\x04\x01\x03\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𢌄
+ 0x22305: "\x04\x01\x03\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x01\x05\x02", // 𢌅
+ 0x22306: "\x04\x01\x03\x02\x05\x01\x01\x01\x02\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𢌆
+ 0x22307: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x04\x04\x04\x04\x04\x04\x01\x01\x02\x01\x05\x04", // 𢌇
+ 0x22308: "\x04\x01\x03\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𢌈
+ 0x22309: "\x04\x01\x03\x01\x03\x02\x05\x01\x01\x01\x03\x02\x01\x01\x05\x01\x01\x03\x04\x03\x05\x04", // 𢌉
+ 0x2230a: "\x04\x01\x03\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04\x01\x01\x02\x01\x01\x03\x02", // 𢌊
+ 0x2230b: "\x04\x01\x03\x01\x03\x04\x01\x02\x02\x01\x01\x02\x03\x04\x01\x02\x02\x01\x01\x02\x03\x04", // 𢌋
+ 0x2230c: "\x01\x01\x02\x01\x01\x03\x02\x04\x01\x03\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 𢌌
+ 0x2230d: "\x04\x01\x03\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 𢌍
+ 0x2230e: "\x04\x01\x03\x01\x02\x02\x03\x02\x05\x01\x05\x01\x04\x01\x04\x03\x01\x01\x02\x05\x02\x01", // 𢌎
+ 0x2230f: "\x04\x01\x03\x02\x04\x03\x02\x05\x02\x05\x01\x05\x02\x01\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 𢌏
+ 0x22310: "\x04\x01\x03\x01\x02\x05\x01\x02\x03\x04\x03\x01\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𢌐
+ 0x22311: "\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01\x02\x03\x04", // 𢌑
+ 0x22312: "\x04\x01\x03\x01\x02\x05\x03\x04\x01\x02\x05\x03\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05", // 𢌒
+ 0x22313: "\x04\x01\x03\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x01\x04\x03\x01\x01\x02\x02\x05\x01\x05\x02\x01\x05", // 𢌓
+ 0x22314: "\x04\x01\x03\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x03\x04\x01", // 𢌔
+ 0x22315: "\x04\x01\x03\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x05\x02\x02\x01\x02", // 𢌕
+ 0x22316: "\x04\x01\x03\x01\x02\x01\x01\x02\x02\x01\x01\x01\x03\x01\x02\x01\x01\x02\x02\x05\x02\x02\x01\x01\x04\x05\x04\x04", // 𢌖
+ 0x22317: "\x01\x02\x05\x04", // 𢌗
+ 0x22318: "\x03\x03\x03\x05\x04", // 𢌘
+ 0x22319: "\x03\x01\x02\x05\x04", // 𢌙
+ 0x2231a: "\x02\x05\x02\x05\x04", // 𢌚
+ 0x2231b: "\x01\x02\x01\x02\x01\x05\x04", // 𢌛
+ 0x2231c: "\x03\x01\x01\x03\x05\x04", // 𢌜
+ 0x2231d: "\x03\x04\x03\x03\x03\x05\x04", // 𢌝
+ 0x2231e: "\x02\x05\x05\x01\x05\x05\x04", // 𢌞
+ 0x2231f: "\x05\x04\x01\x05\x04\x01\x05\x04", // 𢌟
+ 0x22320: "\x01\x02\x05\x01\x01\x02\x04\x05\x04", // 𢌠
+ 0x22321: "\x02\x05\x04\x03\x02\x05\x01\x05\x04", // 𢌡
+ 0x22322: "\x03\x05\x04\x01\x01\x01\x02\x05\x04", // 𢌢
+ 0x22323: "\x03\x02\x03\x01\x02\x01\x01\x05\x04", // 𢌣
+ 0x22324: "\x05\x05\x01\x01\x01\x01\x02\x04", // 𢌤
+ 0x22325: "\x02\x05\x01\x03\x01\x02\x01\x05\x04", // 𢌥
+ 0x22326: "\x03\x01\x02\x01\x03\x01\x03\x04\x05\x04", // 𢌦
+ 0x22327: "\x02\x01\x02\x01\x02\x05\x01\x01\x05\x04", // 𢌧
+ 0x22328: "\x02\x01\x02\x01\x02\x05\x01\x01\x01\x05\x04", // 𢌨
+ 0x22329: "\x01\x02\x05\x02\x02\x01\x01\x02\x01\x05\x04", // 𢌩
+ 0x2232a: "\x02\x05\x01\x01\x01\x02\x01\x02\x01\x05\x04", // 𢌪
+ 0x2232b: "\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x05\x04", // 𢌫
+ 0x2232c: "\x01\x03\x05", // 𢌬
+ 0x2232d: "\x01\x03\x02\x04", // 𢌭
+ 0x2232e: "\x04\x01\x01\x03\x02", // 𢌮
+ 0x2232f: "\x03\x04\x01\x03\x02", // 𢌯
+ 0x22330: "\x01\x03\x03\x03\x04\x01", // 𢌰
+ 0x22331: "\x01\x05\x01\x01\x03\x02", // 𢌱
+ 0x22332: "\x02\x05\x02\x01\x03\x02", // 𢌲
+ 0x22333: "\x03\x05\x04\x04\x01\x03\x02", // 𢌳
+ 0x22334: "\x05\x01\x05\x05\x01\x05\x01\x03\x02", // 𢌴
+ 0x22335: "\x01\x05\x03\x04\x01\x03\x02", // 𢌵
+ 0x22336: "\x01\x02\x03\x04\x01\x03\x02", // 𢌶
+ 0x22337: "\x02\x05\x03\x04\x01\x03\x02", // 𢌷
+ 0x22338: "\x04\x01\x03\x04\x01\x03\x02", // 𢌸
+ 0x22339: "\x05\x04\x05\x04\x01\x03\x02", // 𢌹
+ 0x2233a: "\x02\x05\x03\x04\x01\x03\x02", // 𢌺
+ 0x2233b: "\x01\x02\x01\x03\x05\x01\x03\x02", // 𢌻
+ 0x2233c: "\x05\x02\x05\x03\x04\x01\x03\x02", // 𢌼
+ 0x2233d: "\x01\x03\x02\x02\x01\x03\x02\x02", // 𢌽
+ 0x2233e: "\x01\x03\x04\x04\x03\x01\x03\x02", // 𢌾
+ 0x2233f: "\x02\x05\x01\x02\x01\x01\x03\x02", // 𢌿
+ 0x22340: "\x02\x05\x01\x05\x01\x01\x03\x02", // 𢍀
+ 0x22341: "\x02\x05\x01\x02\x01\x01\x03\x02", // 𢍁
+ 0x22342: "\x03\x02\x05\x01\x01\x01\x01\x03\x02", // 𢍂
+ 0x22343: "\x03\x01\x03\x04\x01\x02\x01\x03\x02", // 𢍃
+ 0x22344: "\x03\x02\x05\x03\x04\x01\x01\x03\x02", // 𢍄
+ 0x22345: "\x03\x05\x02\x05\x03\x04\x01\x03\x02", // 𢍅
+ 0x22346: "\x01\x01\x01\x02\x05\x03\x01\x03\x02", // 𢍆
+ 0x22347: "\x01\x02\x01\x05\x01\x05\x01\x03\x02", // 𢍇
+ 0x22348: "\x01\x03\x05\x04\x03\x05\x01\x03\x02", // 𢍈
+ 0x22349: "\x03\x02\x05\x01\x05\x01\x01\x03\x02", // 𢍉
+ 0x2234a: "\x04\x03\x01\x01\x03\x04\x01\x03\x02", // 𢍊
+ 0x2234b: "\x04\x03\x02\x05\x01\x01\x01\x03\x02", // 𢍋
+ 0x2234c: "\x01\x02\x02\x03\x04\x01\x01\x03\x02", // 𢍌
+ 0x2234d: "\x03\x02\x05\x05\x03\x03\x04\x01\x01\x03\x02", // 𢍍
+ 0x2234e: "\x03\x01\x02\x01\x02\x05\x01\x01\x03\x02", // 𢍎
+ 0x2234f: "\x03\x04\x03\x01\x02\x03\x04\x01\x03\x02", // 𢍏
+ 0x22350: "\x01\x02\x01\x05\x05\x01\x02\x01\x03\x02", // 𢍐
+ 0x22351: "\x03\x02\x03\x02\x05\x01\x01\x01\x03\x02", // 𢍑
+ 0x22352: "\x03\x02\x03\x03\x03\x03\x04\x01\x03\x02", // 𢍒
+ 0x22353: "\x04\x01\x02\x05\x01\x01\x01\x01\x03\x02", // 𢍓
+ 0x22354: "\x04\x05\x03\x04\x02\x05\x01\x01\x01\x03\x02", // 𢍔
+ 0x22355: "\x04\x03\x01\x01\x03\x04\x05\x05\x01\x03\x02", // 𢍕
+ 0x22356: "\x03\x01\x02\x05\x01\x02\x01\x01\x03\x02\x02", // 𢍖
+ 0x22357: "\x01\x03\x05\x04\x03\x01\x03\x04\x01\x03\x02", // 𢍗
+ 0x22358: "\x03\x02\x05\x01\x01\x02\x02\x01\x01\x03\x02", // 𢍘
+ 0x22359: "\x03\x02\x05\x03\x04\x03\x04\x01\x01\x03\x02", // 𢍙
+ 0x2235a: "\x01\x02\x04\x05\x02\x05\x01\x02\x01\x01\x03\x02", // 𢍚
+ 0x2235b: "\x01\x01\x02\x03\x04\x03\x01\x03\x04\x01\x03\x02", // 𢍛
+ 0x2235c: "\x03\x05\x01\x02\x05\x03\x05\x01\x01\x01\x03\x02", // 𢍜
+ 0x2235d: "\x05\x05\x01\x03\x05\x03\x03\x03\x04\x01\x03\x02", // 𢍝
+ 0x2235e: "\x01\x01\x05\x04\x02\x05\x01\x02\x01\x01\x03\x02", // 𢍞
+ 0x2235f: "\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x03\x02", // 𢍟
+ 0x22360: "\x01\x02\x01\x01\x02\x01\x03\x05\x04\x01\x03\x02", // 𢍠
+ 0x22361: "\x04\x04\x01\x03\x04\x01\x02\x05\x01\x01\x03\x02", // 𢍡
+ 0x22362: "\x03\x02\x05\x04\x03\x01\x02\x03\x04\x01\x03\x02", // 𢍢
+ 0x22363: "\x01\x01\x02\x01\x05\x05\x04\x02\x03\x04\x01\x03\x02", // 𢍣
+ 0x22364: "\x01\x03\x04\x04\x03\x02\x05\x01\x01\x05\x01\x03\x02", // 𢍤
+ 0x22365: "\x04\x03\x01\x05\x02\x03\x03\x05\x01\x01\x01\x03\x02", // 𢍥
+ 0x22366: "\x01\x03\x04\x03\x04\x02\x05\x01\x02\x05\x01\x01\x03\x02", // 𢍦
+ 0x22367: "\x02\x05\x02\x02\x01\x04\x01\x03\x05\x03\x04\x01\x03\x02", // 𢍧
+ 0x22368: "\x04\x03\x01\x02\x03\x04\x01\x02\x01\x05\x04\x01\x03\x02", // 𢍨
+ 0x22369: "\x03\x04\x03\x04\x02\x05\x03\x04\x03\x04\x01\x01\x03\x02", // 𢍩
+ 0x2236a: "\x03\x05\x04\x04\x01\x02\x05\x01\x04\x03\x01\x01\x03\x02", // 𢍪
+ 0x2236b: "\x01\x05\x01\x03\x05\x01\x03\x02\x03\x04\x01\x01\x03\x02", // 𢍫
+ 0x2236c: "\x02\x05\x01\x05\x02\x02\x05\x01\x02\x05\x01\x01\x01\x03\x02", // 𢍬
+ 0x2236d: "\x02\x05\x02\x05\x01\x05\x04\x01\x03\x02\x05\x04\x01\x03\x02", // 𢍭
+ 0x2236e: "\x01\x02\x03\x04\x02\x05\x01\x03\x04\x02\x05\x01\x01\x01\x03\x02", // 𢍮
+ 0x2236f: "\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x01\x03\x02", // 𢍯
+ 0x22370: "\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02\x01\x03\x02", // 𢍰
+ 0x22371: "\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x01\x03\x02", // 𢍱
+ 0x22372: "\x03\x02\x01\x01\x01\x02\x05\x03\x05\x01\x01\x05\x01\x01\x01\x03\x02", // 𢍲
+ 0x22373: "\x01\x03\x02\x05\x01\x01\x01\x01\x02\x03\x05\x01\x01\x01\x01\x03\x02", // 𢍳
+ 0x22374: "\x05\x02\x02\x05\x01\x02\x01\x01\x02\x02\x05\x01\x02\x05\x01\x03\x02", // 𢍴
+ 0x22375: "\x01\x01\x02\x01\x05\x05\x04\x02\x03\x04\x05\x05\x04\x02\x03\x04\x01\x03\x02", // 𢍵
+ 0x22376: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x01\x03\x02", // 𢍶
+ 0x22377: "\x02\x01\x02\x01\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x02", // 𢍷
+ 0x22378: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x01\x02\x01\x03\x05\x02\x05\x01\x03\x01\x03\x04\x01\x03\x02", // 𢍸
+ 0x22379: "\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x01\x03\x02", // 𢍹
+ 0x2237a: "\x01\x05\x04", // 𢍺
+ 0x2237b: "\x01\x05\x05\x04", // 𢍻
+ 0x2237c: "\x01\x01\x05\x04", // 𢍼
+ 0x2237d: "\x01\x03\x05\x01\x05\x04", // 𢍽
+ 0x2237e: "\x01\x01\x01\x05\x05\x04", // 𢍾
+ 0x2237f: "\x05\x02\x01\x03\x01\x05\x04", // 𢍿
+ 0x22380: "\x01\x05\x04\x03\x05\x01\x01", // 𢎀
+ 0x22381: "\x01\x01\x03\x04\x05\x05\x04", // 𢎁
+ 0x22382: "\x01\x03\x04\x03\x04\x05\x04", // 𢎂
+ 0x22383: "\x01\x02\x05\x01\x01\x05\x04", // 𢎃
+ 0x22384: "\x01\x02\x05\x01\x02\x01\x05\x04", // 𢎄
+ 0x22385: "\x01\x05\x04\x03\x05\x02\x05\x01", // 𢎅
+ 0x22386: "\x01\x01\x05\x04\x01\x02\x01\x05\x04", // 𢎆
+ 0x22387: "\x01\x02\x01\x03\x01\x01\x02\x05\x04", // 𢎇
+ 0x22388: "\x01\x01\x02\x05\x01\x01\x01\x05\x04", // 𢎈
+ 0x22389: "\x01\x03\x01\x02\x03\x01\x02\x05\x04", // 𢎉
+ 0x2238a: "\x05\x04\x01\x02\x03\x04\x01\x05\x04", // 𢎊
+ 0x2238b: "\x01\x02\x03\x04\x02\x05\x01\x01\x05\x04", // 𢎋
+ 0x2238c: "\x01\x02\x02\x01\x01\x03\x02\x01\x05\x04", // 𢎌
+ 0x2238d: "\x03\x05\x05\x01\x01\x01\x01\x02\x01\x05\x04", // 𢎍
+ 0x2238e: "\x05\x04\x03\x05\x04\x01\x01\x01\x02\x01\x05\x04", // 𢎎
+ 0x2238f: "\x01\x01\x01\x05\x04\x01\x02\x05\x02\x03\x04\x03\x04", // 𢎏
+ 0x22390: "\x01\x03\x01\x01\x02\x05\x01\x01\x01\x03\x04\x05\x04", // 𢎐
+ 0x22391: "\x01\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04\x05\x04", // 𢎑
+ 0x22392: "\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01\x01\x05\x04", // 𢎒
+ 0x22393: "\x03\x05\x05\x01\x01\x03\x01\x03\x04\x04\x04\x04\x04\x01\x05\x04", // 𢎓
+ 0x22394: "\x01\x01\x02\x01\x02\x01\x05\x04\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 𢎔
+ 0x22395: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x05\x04", // 𢎕
+ 0x22396: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x01\x05\x04", // 𢎖
+ 0x22397: "\x05\x01\x05", // 𢎗
+ 0x22398: "\x05\x05", // 𢎘
+ 0x22399: "\x05\x05\x05\x05", // 𢎙
+ 0x2239a: "\x05\x01\x05\x04", // 𢎚
+ 0x2239b: "\x05\x01\x05\x04", // 𢎛
+ 0x2239c: "\x01\x02\x01\x05", // 𢎜
+ 0x2239d: "\x05\x01\x01\x05", // 𢎝
+ 0x2239e: "\x05\x01\x05\x05", // 𢎞
+ 0x2239f: "\x05\x02\x01\x05", // 𢎟
+ 0x223a0: "\x05\x01\x02\x05", // 𢎠
+ 0x223a1: "\x05\x01\x05\x04", // 𢎡
+ 0x223a2: "\x05\x01\x05\x03\x04", // 𢎢
+ 0x223a3: "\x03\x05\x01\x05\x02", // 𢎣
+ 0x223a4: "\x05\x01\x05\x05\x04", // 𢎤
+ 0x223a5: "\x05\x01\x05\x01\x01", // 𢎥
+ 0x223a6: "\x03\x04\x05\x01\x05", // 𢎦
+ 0x223a7: "\x05\x01\x05\x01\x05", // 𢎧
+ 0x223a8: "\x05\x01\x05\x02\x03", // 𢎨
+ 0x223a9: "\x05\x01\x05\x03\x05", // 𢎩
+ 0x223aa: "\x05\x01\x05\x03\x05", // 𢎪
+ 0x223ab: "\x05\x01\x05\x03\x05\x04", // 𢎫
+ 0x223ac: "\x05\x01\x05\x03\x04\x04", // 𢎬
+ 0x223ad: "\x05\x01\x05\x02\x05\x02", // 𢎭
+ 0x223ae: "\x05\x01\x05\x03\x04\x01", // 𢎮
+ 0x223af: "\x01\x05\x01\x05\x05\x03", // 𢎯
+ 0x223b0: "\x05\x01\x05\x01\x01\x05", // 𢎰
+ 0x223b1: "\x05\x02\x01\x05\x02\x03", // 𢎱
+ 0x223b2: "\x05\x01\x05\x03\x05\x01", // 𢎲
+ 0x223b3: "\x05\x01\x05\x01\x02\x01", // 𢎳
+ 0x223b4: "\x05\x01\x05\x01\x03\x04", // 𢎴
+ 0x223b5: "\x05\x01\x05\x03\x02\x02", // 𢎵
+ 0x223b6: "\x05\x01\x05\x03\x04\x01", // 𢎶
+ 0x223b7: "\x05\x01\x05\x04\x01\x05\x03", // 𢎷
+ 0x223b8: "\x05\x01\x05\x01\x05\x05\x01", // 𢎸
+ 0x223b9: "\x05\x01\x05\x05\x01\x03\x04", // 𢎹
+ 0x223ba: "\x05\x01\x05\x05\x05\x04\x02", // 𢎺
+ 0x223bb: "\x05\x01\x05\x05\x04\x05\x02", // 𢎻
+ 0x223bc: "\x05\x01\x05\x01\x02\x05\x04", // 𢎼
+ 0x223bd: "\x05\x01\x05\x03\x05\x04", // 𢎽
+ 0x223be: "\x05\x01\x05\x01\x01\x03\x04", // 𢎾
+ 0x223bf: "\x05\x01\x05\x03\x01\x03\x04", // 𢎿
+ 0x223c0: "\x05\x01\x05\x03\x04\x05\x04", // 𢏀
+ 0x223c1: "\x05\x01\x05\x01\x05\x05\x04", // 𢏁
+ 0x223c2: "\x05\x01\x05\x03\x03\x01\x02", // 𢏂
+ 0x223c3: "\x03\x05\x04\x05\x05\x01\x05", // 𢏃
+ 0x223c4: "\x05\x01\x05\x05\x01\x05\x02", // 𢏄
+ 0x223c5: "\x05\x01\x05\x04\x03\x03\x04", // 𢏅
+ 0x223c6: "\x05\x01\x05\x01\x02\x02\x05\x01", // 𢏆
+ 0x223c7: "\x05\x01\x05\x03\x02\x05\x01\x05", // 𢏇
+ 0x223c8: "\x05\x01\x05\x02\x05\x01\x05\x01", // 𢏈
+ 0x223c9: "\x05\x01\x05\x01\x03\x05\x04\x05", // 𢏉
+ 0x223ca: "\x05\x01\x05\x01\x04\x03\x01\x02", // 𢏊
+ 0x223cb: "\x05\x01\x05\x04\x04\x05\x03\x05", // 𢏋
+ 0x223cc: "\x05\x01\x05\x01\x03\x05\x03\x04", // 𢏌
+ 0x223cd: "\x05\x01\x05\x02\x01\x05\x01\x05", // 𢏍
+ 0x223ce: "\x05\x01\x05\x02\x05\x03\x05\x01", // 𢏎
+ 0x223cf: "\x05\x01\x05\x03\x04\x02\x03\x04", // 𢏏
+ 0x223d0: "\x05\x01\x05\x04\x05\x03\x05\x04", // 𢏐
+ 0x223d1: "\x05\x01\x05\x04\x03\x01\x01\x02", // 𢏑
+ 0x223d2: "\x03\x01\x05\x05\x01\x05\x03\x03", // 𢏒
+ 0x223d3: "\x05\x01\x05\x05\x04\x01\x03\x04", // 𢏓
+ 0x223d4: "\x03\x05\x02\x05\x01\x01\x05\x01\x05", // 𢏔
+ 0x223d5: "\x05\x01\x05\x02\x05\x01\x02\x05\x01", // 𢏕
+ 0x223d6: "\x05\x04\x01\x05\x04\x01\x05\x01\x05", // 𢏖
+ 0x223d7: "\x03\x01\x03\x01\x01\x02\x05\x01\x05", // 𢏗
+ 0x223d8: "\x01\x01\x02\x05\x01\x05\x01\x01\x02", // 𢏘
+ 0x223d9: "\x05\x01\x05\x04\x03\x01\x01\x01\x02", // 𢏙
+ 0x223da: "\x05\x01\x05\x01\x02\x01\x01\x02\x01", // 𢏚
+ 0x223db: "\x05\x01\x05\x05\x05\x04\x02\x03\x04", // 𢏛
+ 0x223dc: "\x05\x01\x05\x03\x05\x04\x03\x05\x04", // 𢏜
+ 0x223dd: "\x05\x01\x05\x05\x01\x05\x05\x01\x05", // 𢏝
+ 0x223de: "\x05\x01\x05\x05\x02\x05\x03\x04\x01", // 𢏞
+ 0x223df: "\x05\x01\x05\x05\x04\x02\x05\x03\x04", // 𢏟
+ 0x223e0: "\x05\x01\x05\x04\x04\x01\x01\x02\x01", // 𢏠
+ 0x223e1: "\x05\x01\x05\x03\x01\x02\x01\x03\x05", // 𢏡
+ 0x223e2: "\x02\x05\x01\x02\x02\x01\x05\x01\x05", // 𢏢
+ 0x223e3: "\x05\x01\x05\x02\x05\x01\x02\x02\x01", // 𢏣
+ 0x223e4: "\x05\x01\x05\x05\x04\x03\x05\x03\x05\x04", // 𢏤
+ 0x223e5: "\x05\x01\x05\x02\x05\x01\x01\x01\x01\x02", // 𢏥
+ 0x223e6: "\x05\x01\x05\x05\x04\x03\x01\x01\x03\x04", // 𢏦
+ 0x223e7: "\x05\x01\x05\x03\x05\x03\x05\x01\x01\x02", // 𢏧
+ 0x223e8: "\x01\x02\x01\x03\x03\x01\x02\x05\x01\x05", // 𢏨
+ 0x223e9: "\x05\x01\x05\x02\x05\x03\x03\x04\x01\x05", // 𢏩
+ 0x223ea: "\x01\x02\x01\x01\x01\x03\x04\x05\x01\x05", // 𢏪
+ 0x223eb: "\x05\x01\x05\x02\x05\x02\x01\x02\x05\x04", // 𢏫
+ 0x223ec: "\x05\x01\x05\x03\x04\x03\x04\x01\x02\x01", // 𢏬
+ 0x223ed: "\x05\x01\x05\x04\x01\x05\x04\x03\x02\x05", // 𢏭
+ 0x223ee: "\x05\x01\x05\x03\x01\x02\x01\x05\x05\x02\x01\x02", // 𢏮
+ 0x223ef: "\x05\x01\x05\x02\x01\x05\x03\x01\x05\x03\x05", // 𢏯
+ 0x223f0: "\x05\x01\x05\x03\x04\x04\x03\x05\x01\x01\x02", // 𢏰
+ 0x223f1: "\x05\x01\x05\x03\x02\x01\x05\x01\x01\x03\x05", // 𢏱
+ 0x223f2: "\x05\x01\x05\x04\x01\x05\x04\x01\x02\x03\x04", // 𢏲
+ 0x223f3: "\x05\x01\x05\x04\x03\x01\x01\x03\x02", // 𢏳
+ 0x223f4: "\x05\x01\x05\x03\x01\x02\x01\x02\x01\x02\x01\x01", // 𢏴
+ 0x223f5: "\x05\x01\x05\x01\x05\x01\x01\x02\x01\x03\x04", // 𢏵
+ 0x223f6: "\x05\x01\x05\x01\x02\x02\x05\x01\x01\x01\x05", // 𢏶
+ 0x223f7: "\x05\x01\x05\x05\x01\x03\x05\x02\x02\x05\x02", // 𢏷
+ 0x223f8: "\x05\x01\x05\x04\x01\x05\x05\x04\x02\x03\x04", // 𢏸
+ 0x223f9: "\x05\x01\x05\x04\x04\x05\x01\x02\x01\x03\x04", // 𢏹
+ 0x223fa: "\x05\x01\x05\x01\x02\x05\x03\x04\x05\x01\x05", // 𢏺
+ 0x223fb: "\x03\x05\x05\x01\x05\x01\x05\x01\x05\x03\x03", // 𢏻
+ 0x223fc: "\x05\x01\x05\x01\x02\x02\x01\x01\x02\x03\x04", // 𢏼
+ 0x223fd: "\x01\x05\x01\x05\x04\x04\x05\x01\x05\x03\x03", // 𢏽
+ 0x223fe: "\x05\x01\x05\x02\x01\x02\x01\x03\x05\x03\x04", // 𢏾
+ 0x223ff: "\x05\x01\x05\x04\x04\x05\x03\x05\x04\x05\x05", // 𢏿
+ 0x22400: "\x05\x01\x05\x05\x01\x05\x01\x02\x05\x03\x04\x01", // 𢐀
+ 0x22401: "\x05\x01\x05\x05\x05\x04\x02\x03\x04\x05\x01\x05", // 𢐁
+ 0x22402: "\x05\x01\x05\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 𢐂
+ 0x22403: "\x05\x01\x05\x03\x05\x01\x03\x02\x05\x01\x02\x02", // 𢐃
+ 0x22404: "\x05\x01\x05\x05\x05\x01\x03\x05\x03\x03\x03\x04", // 𢐄
+ 0x22405: "\x05\x01\x05\x03\x03\x03\x05\x01\x05\x03\x03\x03", // 𢐅
+ 0x22406: "\x05\x01\x05\x02\x05\x01\x02\x05\x01\x05\x01\x05", // 𢐆
+ 0x22407: "\x05\x01\x05\x01\x02\x01\x02\x02\x01\x02\x03\x04", // 𢐇
+ 0x22408: "\x05\x01\x05\x05\x01\x05\x01\x03\x02\x05\x01\x01", // 𢐈
+ 0x22409: "\x05\x01\x05\x01\x02\x01\x01\x05\x02\x05\x01\x01", // 𢐉
+ 0x2240a: "\x05\x01\x05\x04\x01\x04\x03\x04\x05\x05\x01\x05\x03", // 𢐊
+ 0x2240b: "\x05\x01\x05\x03\x03\x02\x01\x05\x03\x01\x05\x03\x05", // 𢐋
+ 0x2240c: "\x05\x01\x05\x01\x02\x05\x01\x02\x03\x04\x05\x01\x05", // 𢐌
+ 0x2240d: "\x05\x01\x05\x02\x05\x02\x01\x03\x05\x03\x01\x03\x04", // 𢐍
+ 0x2240e: "\x05\x01\x05\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 𢐎
+ 0x2240f: "\x05\x01\x05\x03\x03\x02\x01\x05\x03\x01\x05\x03\x04", // 𢐏
+ 0x22410: "\x05\x01\x05\x03\x05\x05\x04\x02\x03\x04\x05\x01\x05", // 𢐐
+ 0x22411: "\x05\x01\x05\x05\x01\x05\x02\x05\x03\x04\x03\x04\x01", // 𢐑
+ 0x22412: "\x05\x01\x05\x02\x05\x02\x03\x05\x01\x01\x03\x05\x01\x01", // 𢐒
+ 0x22413: "\x05\x01\x05\x01\x02\x01\x01\x01\x05\x03\x04\x05\x01\x05", // 𢐓
+ 0x22414: "\x05\x01\x05\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04", // 𢐔
+ 0x22415: "\x05\x01\x05\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 𢐕
+ 0x22416: "\x05\x01\x05\x02\x01\x02\x01\x02\x05\x01\x01\x01\x03\x02", // 𢐖
+ 0x22417: "\x05\x01\x05\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𢐗
+ 0x22418: "\x05\x01\x05\x05\x01\x05\x01\x02\x01\x01\x01\x05\x03\x04", // 𢐘
+ 0x22419: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04\x05\x01\x05", // 𢐙
+ 0x2241a: "\x05\x01\x05\x02\x05\x01\x02\x05\x01\x01\x05\x03\x04\x01", // 𢐚
+ 0x2241b: "\x05\x01\x05\x04\x04\x05\x01\x05\x01\x01\x02\x01\x03\x04", // 𢐛
+ 0x2241c: "\x05\x01\x05\x05\x01\x05\x01\x02\x05\x03\x04\x03\x04\x01", // 𢐜
+ 0x2241d: "\x05\x01\x05\x01\x03\x02\x05\x01\x01\x01\x02\x05\x01\x05", // 𢐝
+ 0x2241e: "\x05\x01\x05\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𢐞
+ 0x2241f: "\x05\x01\x05\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 𢐟
+ 0x22420: "\x05\x01\x05\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 𢐠
+ 0x22421: "\x05\x01\x05\x01\x02\x05\x03\x04\x01\x01\x02\x05\x03\x04\x01", // 𢐡
+ 0x22422: "\x05\x01\x05\x04\x01\x03\x05\x05\x04\x05\x04\x01\x05\x04\x01", // 𢐢
+ 0x22423: "\x05\x01\x05\x03\x05\x02\x05\x02\x01\x03\x05\x03\x03\x03\x04", // 𢐣
+ 0x22424: "\x05\x01\x05\x01\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01", // 𢐤
+ 0x22425: "\x05\x01\x05\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02\x05\x01\x05", // 𢐥
+ 0x22426: "\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x05\x01\x05", // 𢐦
+ 0x22427: "\x02\x01\x02\x01\x03\x05\x02\x05\x01\x03\x01\x03\x04\x05\x01\x05", // 𢐧
+ 0x22428: "\x05\x01\x05\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03\x05\x01\x05", // 𢐨
+ 0x22429: "\x05\x01\x05\x01\x02\x02\x01\x01\x01\x03\x02\x05\x01\x02\x01\x04", // 𢐩
+ 0x2242a: "\x05\x01\x05\x02\x05\x01\x02\x02\x01\x01\x03\x01\x01\x05\x03\x04", // 𢐪
+ 0x2242b: "\x05\x01\x05\x04\x03\x01\x02\x03\x04\x05\x01\x05\x03\x04\x04\x05", // 𢐫
+ 0x2242c: "\x05\x01\x05\x03\x05\x04\x04\x04\x01\x01\x01\x02\x05\x01\x05\x01\x05", // 𢐬
+ 0x2242d: "\x04\x02\x05\x01\x01\x02\x01\x01\x01\x02\x01\x05\x01\x05\x05\x01\x05", // 𢐭
+ 0x2242e: "\x05\x01\x05\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x05\x01\x05", // 𢐮
+ 0x2242f: "\x02\x01\x02\x01\x01\x02\x01\x03\x01\x02\x01\x05\x03\x04\x05\x01\x05", // 𢐯
+ 0x22430: "\x05\x01\x05\x01\x04\x05\x02\x04\x01\x03\x04\x01\x03\x02\x05\x02\x02", // 𢐰
+ 0x22431: "\x01\x02\x02\x01\x02\x01\x03\x01\x02\x01\x05\x03\x04\x05\x01\x05", // 𢐱
+ 0x22432: "\x05\x01\x05\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x05\x01\x05", // 𢐲
+ 0x22433: "\x05\x01\x05\x01\x02\x01\x02\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𢐳
+ 0x22434: "\x05\x01\x05\x03\x04\x03\x04\x02\x03\x04\x03\x04\x02\x03\x04\x03\x04\x02", // 𢐴
+ 0x22435: "\x05\x01\x05\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01\x04", // 𢐵
+ 0x22436: "\x05\x01\x05\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𢐶
+ 0x22437: "\x05\x01\x05\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01\x05\x01\x05", // 𢐷
+ 0x22438: "\x05\x01\x05\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 𢐸
+ 0x22439: "\x05\x01\x05\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01\x05\x01\x05", // 𢐹
+ 0x2243a: "\x05\x01\x05\x03\x01\x01\x02\x01\x02\x01\x02\x05\x02\x03\x05\x05\x04\x05\x01\x05", // 𢐺
+ 0x2243b: "\x05\x01\x05\x04\x01\x02\x05\x01\x02\x05\x01\x01\x02\x01\x02\x01\x01\x01\x02", // 𢐻
+ 0x2243c: "\x05\x01\x05\x01\x02\x01\x03\x02\x05\x01\x01\x04\x04\x03\x03\x04\x05\x01\x05", // 𢐼
+ 0x2243d: "\x02\x01\x02\x01\x01\x01\x02\x05\x01\x05\x02\x05\x03\x05\x04\x01\x01\x02\x01", // 𢐽
+ 0x2243e: "\x05\x01\x05\x01\x02\x03\x04\x03\x04\x01\x05\x05\x04\x02\x03\x04\x05\x01\x05", // 𢐾
+ 0x2243f: "\x05\x01\x05\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x01\x03\x05\x03\x04", // 𢐿
+ 0x22440: "\x05\x01\x05\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x04\x03\x01\x02\x03\x04", // 𢑀
+ 0x22441: "\x05\x01\x05\x01\x02\x01\x02\x05\x01\x01\x02\x03\x02\x01\x01\x05\x05\x02\x01\x02", // 𢑁
+ 0x22442: "\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02\x03\x05\x05\x04\x02\x03\x04\x05\x01\x05", // 𢑂
+ 0x22443: "\x05\x01\x05\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x02\x01", // 𢑃
+ 0x22444: "\x05\x01\x05\x03\x05\x04\x04\x03\x01\x01\x02\x05\x02\x03\x05\x05\x04\x02\x03\x04", // 𢑄
+ 0x22445: "\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x01\x05\x01\x05\x05\x01\x05", // 𢑅
+ 0x22446: "\x05\x01\x05\x02\x01\x02\x01\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𢑆
+ 0x22447: "\x05\x01\x05\x02\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x01\x05\x01\x01", // 𢑇
+ 0x22448: "\x05\x01\x05\x03\x05\x04\x01\x04\x01\x01\x01\x02\x05\x01\x03\x05\x05\x04\x02\x03\x04", // 𢑈
+ 0x22449: "\x03\x05\x04\x04\x04\x01\x01\x01\x02\x05\x01\x03\x05\x05\x04\x02\x03\x04\x05\x01\x05", // 𢑉
+ 0x2244a: "\x05\x01\x05\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 𢑊
+ 0x2244b: "\x01\x05\x03\x05\x01\x05\x03\x05\x05\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x05\x01\x05", // 𢑋
+ 0x2244c: "\x05\x01\x05\x04\x03\x01\x01\x02\x01\x04\x04\x04\x04\x04\x03\x01\x01\x02\x01\x01\x03\x04\x05\x01\x05", // 𢑌
+ 0x2244d: "\x05\x01\x05\x03\x01\x05\x05\x04\x01\x04\x05\x01\x05\x05\x01\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01\x05\x01\x05", // 𢑍
+ 0x2244e: "\x05\x01\x05\x03\x01\x05\x05\x04\x01\x04\x04\x01\x05\x04\x03\x02\x05\x05\x01\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01\x05\x01\x05", // 𢑎
+ 0x2244f: "\x03\x05\x03\x05\x01\x01", // 𢑏
+ 0x22450: "\x02\x03\x04\x05\x01\x01", // 𢑐
+ 0x22451: "\x05\x01\x01\x05\x01\x01", // 𢑑
+ 0x22452: "\x05\x01\x01\x05\x03\x01", // 𢑒
+ 0x22453: "\x05\x05\x01\x03\x05\x03\x04", // 𢑓
+ 0x22454: "\x05\x01\x01\x01\x05\x02\x05\x01", // 𢑔
+ 0x22455: "\x05\x01\x01\x01\x05\x03\x05\x03", // 𢑕
+ 0x22456: "\x05\x01\x01\x02\x05\x01\x01\x02", // 𢑖
+ 0x22457: "\x05\x01\x01\x03\x02\x04\x01\x03\x04", // 𢑗
+ 0x22458: "\x05\x01\x01\x05\x02\x02\x04\x01\x03\x04", // 𢑘
+ 0x22459: "\x05\x01\x01\x03\x05\x02\x05\x03\x04", // 𢑙
+ 0x2245a: "\x01\x05\x01\x02\x01\x03\x05\x01\x01", // 𢑚
+ 0x2245b: "\x05\x05\x01\x03\x03\x02\x03\x03\x04\x04", // 𢑛
+ 0x2245c: "\x05\x01\x01\x05\x02\x05\x01\x02\x01", // 𢑜
+ 0x2245d: "\x05\x01\x01\x05\x01\x01\x04\x05\x03\x05", // 𢑝
+ 0x2245e: "\x05\x05\x01\x03\x04\x03\x05\x02\x05\x02", // 𢑞
+ 0x2245f: "\x05\x01\x01\x04\x05\x03\x02\x01\x05\x03\x04", // 𢑟
+ 0x22460: "\x05\x01\x01\x05\x01\x01\x03\x02\x05\x03\x05", // 𢑠
+ 0x22461: "\x05\x05\x01\x01\x03\x03\x05\x03\x03\x03\x04", // 𢑡
+ 0x22462: "\x02\x05\x01\x01\x05\x01\x01\x03\x03\x02\x05\x02", // 𢑢
+ 0x22463: "\x05\x05\x01\x05\x04\x03\x03\x04\x01\x01\x03\x04", // 𢑣
+ 0x22464: "\x05\x01\x01\x04\x05\x01\x02\x05\x01\x02\x03\x04", // 𢑤
+ 0x22465: "\x05\x05\x04\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 𢑥
+ 0x22466: "\x05\x05\x01\x04\x05\x02\x05\x02\x05\x03\x02\x05\x01", // 𢑦
+ 0x22467: "\x05\x01\x01\x05\x01\x01\x01\x02\x05\x01\x02\x03\x04", // 𢑧
+ 0x22468: "\x05\x01\x01\x02\x05\x03\x04\x05\x01\x01\x02\x05\x03\x04", // 𢑨
+ 0x22469: "\x05\x05\x01\x03\x03\x02\x05\x02\x05\x01\x01\x02\x05\x02", // 𢑩
+ 0x2246a: "\x05\x01\x01\x03\x05\x03\x03\x03\x04\x03\x05\x02\x05\x01", // 𢑪
+ 0x2246b: "\x05\x01\x01\x05\x01\x01\x01\x02\x01\x03\x05\x01\x02\x01", // 𢑫
+ 0x2246c: "\x05\x01\x01\x05\x01\x01\x01\x03\x04\x03\x04\x02\x03\x04", // 𢑬
+ 0x2246d: "\x05\x05\x04\x05\x02\x05\x01\x02\x01\x03\x03\x02\x05\x02", // 𢑭
+ 0x2246e: "\x05\x01\x01\x05\x01\x01\x05\x03\x04\x03\x05\x03\x04\x03\x02", // 𢑮
+ 0x2246f: "\x05\x01\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x01\x02\x03\x04", // 𢑯
+ 0x22470: "\x05\x01\x02\x01\x01\x05\x01\x02\x01\x01\x05\x01\x01\x05\x01\x01", // 𢑰
+ 0x22471: "\x05\x01\x01\x04\x03\x01\x02\x03\x04\x03\x05\x05\x03\x01\x03\x04", // 𢑱
+ 0x22472: "\x05\x01\x01\x04\x03\x01\x02\x03\x04\x03\x04\x05\x05\x04\x02\x03\x04", // 𢑲
+ 0x22473: "\x05\x01\x01\x03\x05\x03\x03\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01\x04", // 𢑳
+ 0x22474: "\x05\x01\x01\x04\x03\x01\x02\x03\x04\x05\x05\x04\x02\x03\x04\x01\x03\x04", // 𢑴
+ 0x22475: "\x05\x01\x01\x05\x01\x01\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 𢑵
+ 0x22476: "\x05\x01\x01\x05\x01\x01\x04\x01\x03\x02\x05\x03\x04\x01\x03\x05\x03\x04", // 𢑶
+ 0x22477: "\x05\x05\x01\x04\x05\x02\x05\x03\x04\x04\x04\x04\x04\x01\x03\x03\x02\x05\x02", // 𢑷
+ 0x22478: "\x04\x01\x02\x05\x01\x04\x05\x02\x05\x01\x01\x01\x01\x03\x05\x04\x02\x05\x02", // 𢑸
+ 0x22479: "\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x01\x01\x02\x01\x05\x05\x01\x02\x01", // 𢑹
+ 0x2247a: "\x05\x01\x01\x03\x04\x02\x05\x03\x04\x04\x04\x04\x04\x01\x03\x03\x02\x05\x02", // 𢑺
+ 0x2247b: "\x05\x01\x01\x05\x01\x01\x04\x01\x03\x02\x05\x03\x04\x01\x03\x05\x05\x03\x04", // 𢑻
+ 0x2247c: "\x03\x05\x03\x03\x01\x03\x05\x03\x03\x03\x04\x04\x01\x01\x03\x05\x04\x02\x05\x02", // 𢑼
+ 0x2247d: "\x05\x01\x01\x05\x01\x01\x01\x03\x02\x04\x01\x03\x02\x04\x01\x03\x02\x04\x01\x03\x02\x04", // 𢑽
+ 0x2247e: "\x05\x01\x01\x02\x04\x01\x03\x04\x02\x05\x01\x01\x01\x02\x02\x01\x03\x04\x02\x04\x01\x03\x04", // 𢑾
+ 0x2247f: "\x05\x01\x01\x04\x05\x02\x05\x01\x02\x05\x01\x01\x02\x01\x01\x02\x05\x01\x03\x05\x05\x04\x01\x02\x03\x04", // 𢑿
+ 0x22480: "\x05\x03\x03\x03\x03", // 𢒀
+ 0x22481: "\x05\x03\x03\x03\x03", // 𢒁
+ 0x22482: "\x03\x05\x03\x03\x03", // 𢒂
+ 0x22483: "\x03\x04\x02\x03\x03\x03", // 𢒃
+ 0x22484: "\x01\x02\x01\x03\x03\x03", // 𢒄
+ 0x22485: "\x01\x02\x03\x03\x03\x01", // 𢒅
+ 0x22486: "\x04\x04\x02\x03\x03\x03", // 𢒆
+ 0x22487: "\x01\x01\x03\x05\x03\x03\x03", // 𢒇
+ 0x22488: "\x01\x01\x03\x02\x03\x03\x03", // 𢒈
+ 0x22489: "\x03\x03\x03\x02\x05\x01\x01\x01", // 𢒉
+ 0x2248a: "\x01\x03\x04\x01\x03\x03\x03\x03", // 𢒊
+ 0x2248b: "\x04\x05\x05\x03\x04\x03\x03\x03", // 𢒋
+ 0x2248c: "\x04\x01\x02\x05\x02\x03\x03\x03", // 𢒌
+ 0x2248d: "\x05\x01\x05\x03\x02\x03\x03\x03", // 𢒍
+ 0x2248e: "\x04\x05\x01\x01\x03\x05\x03\x03\x03", // 𢒎
+ 0x2248f: "\x03\x03\x03\x01\x02\x05\x01\x01\x02\x04", // 𢒏
+ 0x22490: "\x03\x04\x03\x04\x01\x02\x01\x03\x03\x03", // 𢒐
+ 0x22491: "\x03\x04\x03\x04\x01\x01\x02\x03\x03\x03", // 𢒑
+ 0x22492: "\x03\x04\x04\x03\x05\x02\x01\x03\x03\x03", // 𢒒
+ 0x22493: "\x05\x01\x01\x03\x05\x03\x03\x03\x03\x03", // 𢒓
+ 0x22494: "\x01\x03\x05\x03\x03\x04\x03\x04\x03\x03\x03", // 𢒔
+ 0x22495: "\x02\x01\x02\x01\x03\x05\x03\x04\x03\x03\x03", // 𢒕
+ 0x22496: "\x01\x02\x05\x01\x01\x05\x03\x04\x03\x03\x03", // 𢒖
+ 0x22497: "\x02\x05\x01\x01\x03\x05\x03\x03\x03\x03\x03", // 𢒗
+ 0x22498: "\x04\x03\x01\x01\x02\x01\x03\x05\x03\x03\x03", // 𢒘
+ 0x22499: "\x02\x05\x01\x01\x01\x02\x03\x04\x03\x03\x03", // 𢒙
+ 0x2249a: "\x05\x05\x01\x02\x04\x01\x03\x04\x03\x03\x03", // 𢒚
+ 0x2249b: "\x02\x01\x02\x05\x01\x01\x01\x02\x03\x03\x03", // 𢒛
+ 0x2249c: "\x02\x01\x05\x03\x01\x05\x03\x04\x03\x03\x03", // 𢒜
+ 0x2249d: "\x03\x05\x01\x02\x05\x01\x02\x05\x03\x03\x03", // 𢒝
+ 0x2249e: "\x01\x02\x05\x04\x03\x01\x02\x03\x04\x03\x03\x03", // 𢒞
+ 0x2249f: "\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x03\x03", // 𢒟
+ 0x224a0: "\x02\x05\x01\x01\x03\x05\x02\x05\x02\x03\x03\x03", // 𢒠
+ 0x224a1: "\x02\x05\x01\x02\x05\x01\x01\x02\x01\x03\x03\x03", // 𢒡
+ 0x224a2: "\x03\x01\x02\x01\x03\x05\x03\x03\x04\x03\x03\x03", // 𢒢
+ 0x224a3: "\x01\x03\x02\x05\x01\x01\x01\x03\x04\x03\x03\x03", // 𢒣
+ 0x224a4: "\x03\x03\x03\x02\x05\x01\x03\x05\x03\x03\x03\x04\x01", // 𢒤
+ 0x224a5: "\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03\x05\x02", // 𢒥
+ 0x224a6: "\x02\x01\x02\x05\x01\x02\x03\x03\x04\x04\x03\x03\x03", // 𢒦
+ 0x224a7: "\x02\x05\x01\x01\x03\x05\x03\x03\x03\x04\x03\x03\x03", // 𢒧
+ 0x224a8: "\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04\x03\x03\x03", // 𢒨
+ 0x224a9: "\x03\x03\x03\x03\x03\x02\x02\x01\x02\x01\x02\x01\x03\x04", // 𢒩
+ 0x224aa: "\x02\x01\x04\x05\x01\x03\x05\x03\x03\x03\x04\x03\x03\x03", // 𢒪
+ 0x224ab: "\x03\x03\x03\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04", // 𢒫
+ 0x224ac: "\x03\x03\x03\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x03\x04", // 𢒬
+ 0x224ad: "\x02\x01\x02\x05\x01\x01\x01\x02\x03\x03\x04\x04\x03\x03\x03", // 𢒭
+ 0x224ae: "\x02\x03\x04\x03\x03\x02\x05\x01\x01\x01\x03\x04\x03\x03\x03", // 𢒮
+ 0x224af: "\x02\x05\x01\x02\x01\x05\x03\x01\x05\x02\x05\x02\x03\x03\x03", // 𢒯
+ 0x224b0: "\x01\x03\x03\x05\x01\x01\x01\x02\x05\x01\x05\x03\x03\x03\x04", // 𢒰
+ 0x224b1: "\x02\x01\x02\x01\x01\x03\x01\x02\x03\x03\x05\x03\x04\x03\x03\x03", // 𢒱
+ 0x224b2: "\x04\x01\x03\x03\x03\x03\x03\x02\x02\x01\x02\x01\x02\x01\x03\x04", // 𢒲
+ 0x224b3: "\x02\x05\x01\x01\x04\x05\x03\x01\x02\x03\x04\x03\x03\x03\x05\x04", // 𢒳
+ 0x224b4: "\x01\x02\x03\x04\x03\x02\x05\x01\x01\x03\x05\x02\x05\x02\x03\x03\x03", // 𢒴
+ 0x224b5: "\x03\x02\x01\x01\x05\x05\x04\x05\x01\x01\x01\x04\x03\x03\x04\x03\x03\x03", // 𢒵
+ 0x224b6: "\x04\x01\x03\x04\x01\x03\x03\x03\x03\x03\x05\x02\x05\x02\x01\x03\x05\x03\x03\x03\x04", // 𢒶
+ 0x224b7: "\x03\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01", // 𢒷
+ 0x224b8: "\x01\x05\x03\x01\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x02\x01\x02\x01\x03\x03\x03", // 𢒸
+ 0x224b9: "\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x01\x02\x03\x05\x01\x02\x03\x05\x03\x03\x03", // 𢒹
+ 0x224ba: "\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x03\x01\x01\x01\x02\x01\x01\x01\x03\x03\x03", // 𢒺
+ 0x224bb: "\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x03\x04\x04\x05\x01\x02\x02\x01\x02\x05\x01\x01\x03\x03\x03", // 𢒻
+ 0x224bc: "\x03\x03\x02\x05", // 𢒼
+ 0x224bd: "\x03\x03\x02\x05", // 𢒽
+ 0x224be: "\x03\x03\x02\x05\x02", // 𢒾
+ 0x224bf: "\x03\x03\x02\x05\x05", // 𢒿
+ 0x224c0: "\x03\x03\x02\x01\x05\x04", // 𢓀
+ 0x224c1: "\x03\x03\x02\x01\x02\x01", // 𢓁
+ 0x224c2: "\x03\x03\x02\x01\x02\x01", // 𢓂
+ 0x224c3: "\x03\x03\x02\x03\x05\x04", // 𢓃
+ 0x224c4: "\x03\x03\x02\x01\x01\x03\x02", // 𢓄
+ 0x224c5: "\x03\x03\x02\x03\x04\x03\x04", // 𢓅
+ 0x224c6: "\x03\x03\x02\x01\x01\x03\x05", // 𢓆
+ 0x224c7: "\x03\x03\x02\x02\x05\x03\x04", // 𢓇
+ 0x224c8: "\x03\x03\x02\x03\x05\x01\x01", // 𢓈
+ 0x224c9: "\x03\x03\x02\x01\x03\x05\x04", // 𢓉
+ 0x224ca: "\x03\x03\x02\x02\x01\x02\x01", // 𢓊
+ 0x224cb: "\x03\x03\x02\x03\x05\x05\x02", // 𢓋
+ 0x224cc: "\x03\x03\x02\x04\x01\x03\x04", // 𢓌
+ 0x224cd: "\x03\x03\x02\x01\x01\x03\x04", // 𢓍
+ 0x224ce: "\x03\x03\x02\x01\x05\x05\x04", // 𢓎
+ 0x224cf: "\x03\x03\x02\x02\x05\x01\x01", // 𢓏
+ 0x224d0: "\x03\x03\x02\x03\x01\x01\x02", // 𢓐
+ 0x224d1: "\x03\x03\x02\x03\x05\x03\x04", // 𢓑
+ 0x224d2: "\x03\x03\x02\x02\x05\x02\x01\x01", // 𢓒
+ 0x224d3: "\x03\x03\x02\x03\x01\x02\x01\x01", // 𢓓
+ 0x224d4: "\x03\x03\x02\x04\x01\x04\x03\x01", // 𢓔
+ 0x224d5: "\x03\x03\x02\x02\x01\x02\x05\x01", // 𢓕
+ 0x224d6: "\x03\x03\x02\x01\x03\x02\x04\x01", // 𢓖
+ 0x224d7: "\x03\x03\x02\x02\x01\x02\x01\x01\x05", // 𢓗
+ 0x224d8: "\x03\x03\x02\x03\x05\x04\x04\x04", // 𢓘
+ 0x224d9: "\x03\x03\x02\x05\x01\x05\x03\x04", // 𢓙
+ 0x224da: "\x03\x03\x02\x05\x01\x03\x03\x05", // 𢓚
+ 0x224db: "\x03\x03\x02\x01\x01\x02\x03\x04", // 𢓛
+ 0x224dc: "\x03\x03\x02\x03\x05\x04\x02\x05\x01", // 𢓜
+ 0x224dd: "\x03\x03\x02\x03\x04\x01\x05\x03\x04", // 𢓝
+ 0x224de: "\x03\x03\x02\x05\x02\x05\x03\x04\x01", // 𢓞
+ 0x224df: "\x03\x03\x02\x04\x03\x04\x02\x04\x02", // 𢓟
+ 0x224e0: "\x03\x03\x02\x03\x01\x02\x01\x03\x05", // 𢓠
+ 0x224e1: "\x03\x03\x02\x01\x05\x01\x05\x03\x04", // 𢓡
+ 0x224e2: "\x03\x03\x02\x01\x03\x04\x01\x01\x05", // 𢓢
+ 0x224e3: "\x03\x03\x02\x01\x02\x05\x02\x03\x04", // 𢓣
+ 0x224e4: "\x03\x03\x02\x03\x05\x04\x01\x05\x02", // 𢓤
+ 0x224e5: "\x03\x03\x02\x02\x04\x03\x01\x03\x05", // 𢓥
+ 0x224e6: "\x03\x03\x02\x01\x01\x02\x01\x05\x02", // 𢓦
+ 0x224e7: "\x03\x03\x02\x01\x02\x01\x05\x02\x05", // 𢓧
+ 0x224e8: "\x03\x03\x02\x02\x05\x01\x03\x04\x01", // 𢓨
+ 0x224e9: "\x03\x03\x02\x03\x01\x02\x01\x02\x01", // 𢓩
+ 0x224ea: "\x03\x03\x02\x05\x04\x03\x01\x01\x03\x04", // 𢓪
+ 0x224eb: "\x03\x03\x02\x04\x01\x04\x03\x01\x01\x02", // 𢓫
+ 0x224ec: "\x03\x03\x02\x03\x04\x01\x03\x02\x05\x02", // 𢓬
+ 0x224ed: "\x03\x03\x02\x05\x04\x03\x05\x03\x05\x04", // 𢓭
+ 0x224ee: "\x03\x03\x02\x02\x04\x03\x03\x05\x04\x01", // 𢓮
+ 0x224ef: "\x03\x03\x02\x03\x05\x03\x01\x01\x02\x01", // 𢓯
+ 0x224f0: "\x03\x03\x02\x03\x04\x04\x03\x05\x03\x01", // 𢓰
+ 0x224f1: "\x03\x03\x02\x03\x05\x04\x01\x01\x01\x02", // 𢓱
+ 0x224f2: "\x03\x03\x02\x01\x02\x05\x01\x02\x05\x01", // 𢓲
+ 0x224f3: "\x03\x03\x02\x02\x05\x01\x02\x01\x01\x05", // 𢓳
+ 0x224f4: "\x03\x03\x02\x02\x05\x01\x01\x03\x05\x04", // 𢓴
+ 0x224f5: "\x03\x03\x02\x03\x01\x02\x03\x04\x05\x03", // 𢓵
+ 0x224f6: "\x03\x03\x02\x05\x04\x02\x05\x01\x01\x02", // 𢓶
+ 0x224f7: "\x03\x03\x02\x03\x01\x01\x02\x05\x02\x04", // 𢓷
+ 0x224f8: "\x03\x03\x02\x05\x02\x02\x01\x01\x02\x01", // 𢓸
+ 0x224f9: "\x03\x03\x02\x02\x05\x02\x03\x01\x03\x04", // 𢓹
+ 0x224fa: "\x03\x03\x02\x02\x01\x01\x02\x01\x03\x04", // 𢓺
+ 0x224fb: "\x03\x03\x02\x01\x03\x05\x03\x03\x03\x04", // 𢓻
+ 0x224fc: "\x03\x03\x02\x02\x05\x01\x01\x01\x03\x05", // 𢓼
+ 0x224fd: "\x03\x03\x02\x03\x03\x05\x04\x01\x03\x04", // 𢓽
+ 0x224fe: "\x03\x03\x02\x03\x04\x03\x04\x02\x05\x01", // 𢓾
+ 0x224ff: "\x03\x03\x02\x03\x05\x04\x04\x05\x04\x04", // 𢓿
+ 0x22500: "\x03\x03\x02\x05\x04\x04\x04\x05\x05\x04", // 𢔀
+ 0x22501: "\x03\x03\x02\x01\x02\x01\x03\x05\x03\x05\x04", // 𢔁
+ 0x22502: "\x03\x03\x02\x01\x03\x04\x02\x05\x01\x01\x05", // 𢔂
+ 0x22503: "\x03\x03\x02\x03\x03\x05\x01\x02\x03\x05\x04", // 𢔃
+ 0x22504: "\x03\x03\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 𢔄
+ 0x22505: "\x03\x03\x02\x01\x02\x05\x01\x01\x02\x03\x04", // 𢔅
+ 0x22506: "\x03\x03\x02\x04\x04\x01\x04\x01\x04\x03\x01", // 𢔆
+ 0x22507: "\x03\x03\x02\x03\x05\x03\x01\x01\x02\x05\x02", // 𢔇
+ 0x22508: "\x03\x03\x02\x05\x02\x04\x01\x03\x04\x05\x02", // 𢔈
+ 0x22509: "\x03\x03\x02\x01\x05\x05\x05\x03\x01\x02\x01", // 𢔉
+ 0x2250a: "\x03\x03\x02\x03\x01\x01\x03\x04\x02\x05\x01", // 𢔊
+ 0x2250b: "\x03\x03\x02\x01\x02\x03\x04\x03\x05\x05\x04", // 𢔋
+ 0x2250c: "\x03\x03\x02\x03\x02\x05\x01\x01\x03\x01\x02", // 𢔌
+ 0x2250d: "\x03\x03\x02\x03\x04\x03\x04\x03\x05\x01\x01", // 𢔍
+ 0x2250e: "\x03\x03\x02\x02\x05\x02\x04\x01\x01\x02\x01", // 𢔎
+ 0x2250f: "\x03\x03\x02\x03\x04\x04\x03\x04\x05\x05\x04", // 𢔏
+ 0x22510: "\x03\x03\x02\x03\x05\x02\x05\x01\x01\x01\x05", // 𢔐
+ 0x22511: "\x03\x03\x02\x04\x03\x01\x01\x03\x04\x05\x05", // 𢔑
+ 0x22512: "\x03\x03\x02\x02\x05\x01\x01\x02\x05\x01\x01", // 𢔒
+ 0x22513: "\x03\x03\x02\x01\x01\x01\x03\x04\x01\x01\x02", // 𢔓
+ 0x22514: "\x03\x03\x02\x05\x02\x02\x05\x01\x05\x04\x01", // 𢔔
+ 0x22515: "\x03\x03\x02\x02\x05\x01\x01\x01\x03\x05\x04", // 𢔕
+ 0x22516: "\x03\x03\x02\x03\x01\x01\x03\x04\x01\x01\x02", // 𢔖
+ 0x22517: "\x03\x03\x02\x03\x01\x03\x04\x02\x01\x02\x01", // 𢔗
+ 0x22518: "\x03\x03\x02\x03\x04\x01\x03\x05\x04\x05\x02", // 𢔘
+ 0x22519: "\x03\x03\x02\x04\x01\x03\x04\x03\x04\x01\x02", // 𢔙
+ 0x2251a: "\x03\x03\x02\x01\x01\x03\x05\x04\x01\x05\x03", // 𢔚
+ 0x2251b: "\x03\x03\x02\x01\x02\x01\x04\x03\x01\x01\x02", // 𢔛
+ 0x2251c: "\x03\x03\x02\x02\x03\x05\x04\x03\x03\x03", // 𢔜
+ 0x2251d: "\x03\x03\x02\x03\x01\x02\x01\x02\x01\x02\x01\x01", // 𢔝
+ 0x2251e: "\x03\x03\x02\x03\x01\x01\x02\x01\x02\x01\x03\x05", // 𢔞
+ 0x2251f: "\x03\x03\x02\x05\x04\x05\x02\x03\x01\x02\x03\x04", // 𢔟
+ 0x22520: "\x03\x03\x02\x02\x05\x01\x01\x01\x01\x02\x05\x04", // 𢔠
+ 0x22521: "\x03\x03\x02\x01\x05\x01\x05\x03\x02\x05\x01\x01", // 𢔡
+ 0x22522: "\x03\x03\x02\x03\x04\x01\x03\x05\x01\x01\x02\x02", // 𢔢
+ 0x22523: "\x03\x03\x02\x01\x01\x02\x03\x02\x01\x05\x01\x01", // 𢔣
+ 0x22524: "\x03\x03\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𢔤
+ 0x22525: "\x03\x03\x02\x02\x05\x01\x02\x01\x03\x05\x04\x01", // 𢔥
+ 0x22526: "\x03\x03\x02\x05\x01\x03\x04\x03\x01\x01\x01\x02", // 𢔦
+ 0x22527: "\x03\x03\x02\x05\x01\x03\x04\x03\x01\x01\x03\x02", // 𢔧
+ 0x22528: "\x03\x03\x02\x02\x05\x01\x03\x01\x05\x01\x02\x04", // 𢔨
+ 0x22529: "\x03\x03\x02\x02\x03\x04\x03\x04\x02\x01\x03\x04", // 𢔩
+ 0x2252a: "\x03\x03\x02\x01\x02\x01\x03\x02\x05\x01\x01", // 𢔪
+ 0x2252b: "\x03\x03\x02\x03\x01\x01\x02\x05\x02\x03\x05\x04", // 𢔫
+ 0x2252c: "\x03\x03\x02\x03\x01\x02\x01\x03\x05\x01\x01\x02", // 𢔬
+ 0x2252d: "\x03\x03\x02\x01\x03\x04\x01\x04\x03\x01\x01\x02", // 𢔭
+ 0x2252e: "\x03\x03\x02\x05\x04\x02\x05\x01\x01\x01\x01\x02", // 𢔮
+ 0x2252f: "\x03\x03\x02\x01\x02\x05\x01\x02\x03\x04\x02\x02", // 𢔯
+ 0x22530: "\x03\x03\x02\x05\x02\x01\x03\x02\x05\x01\x01\x01", // 𢔰
+ 0x22531: "\x03\x03\x02\x03\x04\x03\x04\x02\x05\x01\x05\x02", // 𢔱
+ 0x22532: "\x03\x03\x02\x01\x02\x01\x05\x02\x05\x01\x02\x05\x01\x02\x01", // 𢔲
+ 0x22533: "\x03\x03\x02\x04\x05\x04\x04\x02\x05\x01\x02\x01\x04", // 𢔳
+ 0x22534: "\x03\x03\x02\x01\x02\x05\x01\x02\x05\x01\x05\x02", // 𢔴
+ 0x22535: "\x03\x03\x02\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01", // 𢔵
+ 0x22536: "\x03\x03\x02\x02\x05\x01\x01\x01\x03\x05\x01\x02\x04", // 𢔶
+ 0x22537: "\x03\x03\x02\x03\x05\x03\x05\x02\x02\x01\x01\x02\x01", // 𢔷
+ 0x22538: "\x03\x03\x02\x01\x02\x05\x01\x02\x05\x03\x05\x01\x02", // 𢔸
+ 0x22539: "\x03\x03\x02\x01\x02\x05\x01\x02\x05\x02\x05\x03\x04", // 𢔹
+ 0x2253a: "\x03\x03\x02\x03\x05\x03\x02\x05\x02\x01\x02\x01", // 𢔺
+ 0x2253b: "\x03\x03\x02\x04\x04\x05\x01\x03\x05\x03\x03\x03\x04", // 𢔻
+ 0x2253c: "\x03\x03\x02\x02\x05\x01\x02\x01\x04\x03\x01\x03\x04", // 𢔼
+ 0x2253d: "\x03\x03\x02\x02\x05\x01\x01\x01\x02\x01\x01\x02\x04", // 𢔽
+ 0x2253e: "\x03\x03\x02\x03\x02\x05\x01\x01\x01\x03\x05\x05\x04", // 𢔾
+ 0x2253f: "\x03\x03\x02\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02", // 𢔿
+ 0x22540: "\x03\x03\x02\x03\x03\x01\x02\x02\x05\x01\x01\x01\x01", // 𢕀
+ 0x22541: "\x03\x03\x02\x01\x01\x02\x01\x01\x03\x02\x01\x01\x02", // 𢕁
+ 0x22542: "\x03\x03\x02\x01\x02\x05\x01\x01\x02\x01\x05\x03\x04", // 𢕂
+ 0x22543: "\x03\x03\x02\x02\x05\x01\x05\x01\x02\x02\x01\x01\x01", // 𢕃
+ 0x22544: "\x03\x03\x02\x02\x05\x02\x01\x05\x03\x03\x01\x03\x04", // 𢕄
+ 0x22545: "\x03\x03\x02\x02\x05\x02\x04\x01\x05\x03\x01\x01\x02", // 𢕅
+ 0x22546: "\x03\x03\x02\x03\x01\x02\x01\x01\x02\x04\x05\x04\x04", // 𢕆
+ 0x22547: "\x03\x03\x02\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04", // 𢕇
+ 0x22548: "\x03\x03\x02\x03\x04\x03\x04\x01\x02\x02\x01\x01\x01", // 𢕈
+ 0x22549: "\x03\x03\x02\x04\x03\x04\x04\x02\x05\x01\x02\x01\x04", // 𢕉
+ 0x2254a: "\x03\x03\x02\x03\x05\x02\x05\x01\x01\x03\x04\x01\x05", // 𢕊
+ 0x2254b: "\x03\x03\x02\x04\x04\x05\x01\x01\x03\x05\x01\x01\x02", // 𢕋
+ 0x2254c: "\x03\x03\x02\x05\x01\x03\x04\x01\x04\x03\x01\x01\x02", // 𢕌
+ 0x2254d: "\x03\x03\x02\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 𢕍
+ 0x2254e: "\x03\x03\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02", // 𢕎
+ 0x2254f: "\x03\x03\x02\x02\x05\x01\x02\x01\x01\x02\x01\x02\x01\x01\x02", // 𢕏
+ 0x22550: "\x03\x03\x02\x04\x01\x05\x03\x03\x01\x05\x02\x01\x03\x04", // 𢕐
+ 0x22551: "\x03\x03\x02\x04\x01\x05\x05\x04\x04\x01\x03\x04\x01\x02", // 𢕑
+ 0x22552: "\x03\x03\x02\x04\x01\x02\x05\x01\x02\x05\x01\x03\x05\x04", // 𢕒
+ 0x22553: "\x03\x03\x02\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 𢕓
+ 0x22554: "\x03\x03\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02", // 𢕔
+ 0x22555: "\x03\x03\x02\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 𢕕
+ 0x22556: "\x03\x03\x02\x01\x02\x05\x02\x02\x01\x01\x03\x04\x05\x05", // 𢕖
+ 0x22557: "\x03\x03\x02\x04\x04\x05\x01\x03\x04\x01\x02\x05\x01\x02", // 𢕗
+ 0x22558: "\x03\x03\x02\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𢕘
+ 0x22559: "\x03\x03\x02\x03\x05\x03\x05\x02\x01\x02\x05\x02\x02\x01", // 𢕙
+ 0x2255a: "\x03\x03\x02\x04\x04\x01\x02\x05\x01\x01\x01\x01\x02\x04", // 𢕚
+ 0x2255b: "\x03\x03\x02\x03\x05\x04\x01\x02\x05\x01\x01\x03\x05\x04", // 𢕛
+ 0x2255c: "\x03\x03\x02\x03\x01\x01\x02\x02\x01\x02\x01\x05\x02\x04", // 𢕜
+ 0x2255d: "\x03\x03\x02\x03\x05\x04\x01\x01\x01\x02\x04\x05\x04", // 𢕝
+ 0x2255e: "\x03\x03\x02\x01\x02\x02\x05\x01\x01\x01\x04\x05\x04\x04", // 𢕞
+ 0x2255f: "\x03\x03\x02\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04", // 𢕟
+ 0x22560: "\x03\x03\x02\x05\x04\x02\x05\x04\x03\x01\x01\x03\x04\x01", // 𢕠
+ 0x22561: "\x03\x03\x02\x01\x02\x05\x01\x02\x03\x04\x03\x01\x03\x04", // 𢕡
+ 0x22562: "\x03\x03\x02\x01\x02\x05\x01\x01\x01\x02\x03\x05\x03\x04", // 𢕢
+ 0x22563: "\x03\x03\x02\x01\x02\x05\x01\x01\x01\x02\x03\x01\x03\x04", // 𢕣
+ 0x22564: "\x03\x03\x02\x01\x02\x01\x02\x01\x03\x04\x03\x05\x01\x01", // 𢕤
+ 0x22565: "\x03\x03\x02\x01\x02\x01\x01\x01\x02\x03\x04\x01\x01\x02", // 𢕥
+ 0x22566: "\x03\x03\x02\x02\x03\x05\x04\x04\x05\x01\x01\x05\x03\x04", // 𢕦
+ 0x22567: "\x03\x03\x02\x01\x05\x01\x01\x03\x05\x03\x01\x03\x04", // 𢕧
+ 0x22568: "\x03\x03\x02\x03\x02\x05\x01\x01\x04\x05\x04\x01\x05\x03", // 𢕨
+ 0x22569: "\x03\x03\x02\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04", // 𢕩
+ 0x2256a: "\x03\x03\x02\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 𢕪
+ 0x2256b: "\x03\x03\x02\x01\x02\x01\x01\x01\x02\x03\x04\x03\x05\x03\x04", // 𢕫
+ 0x2256c: "\x03\x03\x02\x05\x03\x04\x02\x01\x02\x01\x05\x03\x04\x02\x01\x02\x01", // 𢕬
+ 0x2256d: "\x03\x03\x02\x01\x02\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 𢕭
+ 0x2256e: "\x03\x03\x02\x04\x01\x04\x03\x04\x05\x02\x05\x02\x02\x05\x01", // 𢕮
+ 0x2256f: "\x03\x03\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 𢕯
+ 0x22570: "\x03\x03\x02\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x02\x04", // 𢕰
+ 0x22571: "\x03\x03\x02\x02\x01\x02\x01\x02\x05\x01\x01\x02\x03\x04\x03", // 𢕱
+ 0x22572: "\x03\x03\x02\x05\x01\x01\x02\x04\x01\x03\x04\x03\x01\x03\x04", // 𢕲
+ 0x22573: "\x03\x03\x02\x01\x02\x01\x02\x01\x03\x04\x05\x01\x02\x05\x01", // 𢕳
+ 0x22574: "\x03\x03\x02\x01\x02\x02\x05\x01\x01\x01\x02\x03\x01\x03\x05", // 𢕴
+ 0x22575: "\x03\x03\x02\x01\x02\x02\x01\x03\x04\x05\x01\x05\x01\x01\x02", // 𢕵
+ 0x22576: "\x03\x03\x02\x01\x03\x02\x05\x01\x01\x04\x05\x01\x03\x05\x04", // 𢕶
+ 0x22577: "\x03\x03\x02\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04", // 𢕷
+ 0x22578: "\x03\x03\x02\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 𢕸
+ 0x22579: "\x03\x03\x02\x04\x01\x05\x04\x02\x05\x01\x02\x01\x03\x01\x03\x04", // 𢕹
+ 0x2257a: "\x03\x03\x02\x02\x01\x02\x01\x01\x03\x01\x02\x03\x03\x05\x03\x04", // 𢕺
+ 0x2257b: "\x03\x03\x02\x03\x05\x01\x03\x03\x05\x04\x01\x01\x01\x02\x05\x01", // 𢕻
+ 0x2257c: "\x03\x03\x02\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 𢕼
+ 0x2257d: "\x03\x03\x02\x03\x02\x05\x01\x01\x05\x02\x03\x04\x01\x05\x03\x04", // 𢕽
+ 0x2257e: "\x03\x03\x02\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 𢕾
+ 0x2257f: "\x03\x03\x02\x01\x02\x01\x05\x04\x02\x05\x01\x01\x03\x01\x03\x04", // 𢕿
+ 0x22580: "\x03\x03\x02\x05\x01\x01\x01\x01\x02\x02\x05\x01\x02\x05\x01\x02", // 𢖀
+ 0x22581: "\x03\x03\x02\x05\x02\x01\x02\x05\x01\x01\x01\x01\x02\x05\x02", // 𢖁
+ 0x22582: "\x03\x03\x02\x01\x02\x01\x02\x01\x03\x04\x02\x05\x01\x02\x05\x01", // 𢖂
+ 0x22583: "\x03\x03\x02\x02\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 𢖃
+ 0x22584: "\x03\x03\x02\x02\x05\x02\x02\x05\x01\x02\x01\x04\x03\x01\x03\x05", // 𢖄
+ 0x22585: "\x03\x03\x02\x02\x05\x02\x04\x01\x01\x01\x02\x05\x01\x01\x01\x02", // 𢖅
+ 0x22586: "\x03\x03\x02\x03\x05\x03\x05\x01\x01\x02\x05\x03\x03\x01\x01\x02", // 𢖆
+ 0x22587: "\x03\x03\x02\x04\x01\x03\x05\x02\x02\x01\x01\x05\x04\x04\x04\x04", // 𢖇
+ 0x22588: "\x03\x03\x02\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𢖈
+ 0x22589: "\x03\x03\x02\x01\x02\x05\x01\x02\x05\x03\x05\x01\x02\x03\x01\x03\x04", // 𢖉
+ 0x2258a: "\x03\x03\x02\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x01\x01\x05", // 𢖊
+ 0x2258b: "\x03\x03\x02\x01\x02\x01\x02\x05\x01\x02\x01\x01\x03\x02\x01\x01\x02", // 𢖋
+ 0x2258c: "\x03\x03\x02\x02\x05\x02\x01\x03\x02\x01\x01\x02\x03\x04\x05\x03\x04", // 𢖌
+ 0x2258d: "\x03\x03\x02\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x01\x02", // 𢖍
+ 0x2258e: "\x03\x03\x02\x01\x02\x05\x02\x02\x01\x01\x03\x04\x02\x05\x01\x05\x01", // 𢖎
+ 0x2258f: "\x03\x03\x02\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𢖏
+ 0x22590: "\x03\x03\x02\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x04\x04\x04\x04", // 𢖐
+ 0x22591: "\x03\x03\x02\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𢖑
+ 0x22592: "\x03\x03\x02\x01\x03\x02\x05\x01\x01\x04\x05\x04\x05\x04\x04\x03\x05\x04", // 𢖒
+ 0x22593: "\x03\x03\x02\x05\x01\x03\x03\x03\x02\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 𢖓
+ 0x22594: "\x03\x03\x02\x02\x05\x01\x01\x01\x02\x02\x01\x03\x04\x02\x04\x01\x03\x04", // 𢖔
+ 0x22595: "\x03\x03\x02\x05\x05\x04\x03\x05\x04\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 𢖕
+ 0x22596: "\x04\x03\x01\x02\x03\x04\x05\x03\x01\x03\x03\x02\x05\x05\x04\x03\x05\x04", // 𢖖
+ 0x22597: "\x01\x02\x05\x01\x02\x03\x04\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04", // 𢖗
+ 0x22598: "\x03\x03\x02\x04\x04\x05\x03\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x04\x04", // 𢖘
+ 0x22599: "\x03\x03\x02\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 𢖙
+ 0x2259a: "\x03\x03\x02\x02\x05\x01\x01\x05\x02\x02\x05\x02\x01\x03\x04\x02\x04\x04\x04", // 𢖚
+ 0x2259b: "\x03\x03\x02\x02\x03\x05\x04\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𢖛
+ 0x2259c: "\x03\x03\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01\x03\x01\x03\x04", // 𢖜
+ 0x2259d: "\x03\x03\x02\x03\x04\x03\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 𢖝
+ 0x2259e: "\x03\x03\x02\x03\x05\x02\x05\x01\x01\x05\x01\x05\x03\x05\x02\x05\x01\x03\x05\x04", // 𢖞
+ 0x2259f: "\x03\x03\x02\x03\x05\x04\x04\x03\x01\x01\x02\x05\x02\x03\x05\x05\x04\x02\x03\x04", // 𢖟
+ 0x225a0: "\x03\x03\x02\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x05\x03\x01", // 𢖠
+ 0x225a1: "\x03\x03\x02\x01\x02\x01\x05\x04\x05\x05\x04\x05\x05\x04\x01\x03\x02\x01\x01\x02", // 𢖡
+ 0x225a2: "\x03\x03\x02\x02\x05\x01\x02\x02\x01\x01\x03\x01\x01\x05\x03\x04\x03\x01\x03\x04", // 𢖢
+ 0x225a3: "\x03\x03\x02\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x01\x04\x03\x03\x04", // 𢖣
+ 0x225a4: "\x03\x03\x02\x02\x05\x01\x01\x01\x02\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𢖤
+ 0x225a5: "\x03\x03\x02\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x03\x01\x01\x01\x02\x01\x01\x01", // 𢖥
+ 0x225a6: "\x03\x03\x02\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𢖦
+ 0x225a7: "\x03\x03\x02\x01\x02\x05\x01\x02\x04\x05\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 𢖧
+ 0x225a8: "\x03\x03\x02\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x01\x02\x01\x02\x03\x03\x05\x04\x03\x05\x04\x02\x05\x02", // 𢖨
+ 0x225a9: "\x04\x05\x04", // 𢖩
+ 0x225aa: "\x04\x04\x02\x05", // 𢖪
+ 0x225ab: "\x05\x03\x04\x05\x04\x04", // 𢖫
+ 0x225ac: "\x04\x04\x02\x01\x05", // 𢖬
+ 0x225ad: "\x04\x04\x02\x05\x05", // 𢖭
+ 0x225ae: "\x05\x04\x05\x04\x03\x04", // 𢖮
+ 0x225af: "\x04\x04\x02\x03\x05", // 𢖯
+ 0x225b0: "\x05\x03\x04\x05\x04\x04", // 𢖰
+ 0x225b1: "\x04\x04\x02\x05\x03", // 𢖱
+ 0x225b2: "\x04\x04\x02\x03\x01\x05", // 𢖲
+ 0x225b3: "\x04\x04\x02\x01\x01\x02", // 𢖳
+ 0x225b4: "\x03\x01\x05\x04\x05\x04\x04", // 𢖴
+ 0x225b5: "\x04\x04\x02\x05\x03\x01", // 𢖵
+ 0x225b6: "\x01\x02\x01\x04\x05\x04\x04", // 𢖶
+ 0x225b7: "\x04\x04\x02\x01\x02\x01", // 𢖷
+ 0x225b8: "\x04\x04\x02\x05\x01\x05", // 𢖸
+ 0x225b9: "\x04\x04\x02\x02\x03\x04", // 𢖹
+ 0x225ba: "\x04\x04\x02\x01\x05\x04", // 𢖺
+ 0x225bb: "\x04\x05\x04\x04\x03\x05\x04", // 𢖻
+ 0x225bc: "\x01\x05\x04\x04\x05\x04\x04", // 𢖼
+ 0x225bd: "\x01\x02\x01\x04\x05\x04\x04", // 𢖽
+ 0x225be: "\x04\x04\x02\x03\x03\x05", // 𢖾
+ 0x225bf: "\x02\x03\x04\x04\x05\x04\x04", // 𢖿
+ 0x225c0: "\x02\x05\x01\x04\x05\x04\x04", // 𢗀
+ 0x225c1: "\x03\x04\x01\x04\x05\x04\x04", // 𢗁
+ 0x225c2: "\x05\x01\x05\x04\x05\x04\x04", // 𢗂
+ 0x225c3: "\x04\x04\x02\x01\x01\x05", // 𢗃
+ 0x225c4: "\x04\x04\x02\x01\x02\x04", // 𢗄
+ 0x225c5: "\x04\x04\x02\x03\x04\x05", // 𢗅
+ 0x225c6: "\x04\x04\x02\x01\x03\x04", // 𢗆
+ 0x225c7: "\x04\x04\x02\x03\x05\x04", // 𢗇
+ 0x225c8: "\x04\x05\x04\x03\x04\x01\x02", // 𢗈
+ 0x225c9: "\x04\x04\x02\x02\x05\x03\x04", // 𢗉
+ 0x225ca: "\x03\x04\x03\x02\x04\x05\x04\x04", // 𢗊
+ 0x225cb: "\x04\x04\x02\x03\x05\x01\x01", // 𢗋
+ 0x225cc: "\x04\x04\x02\x05\x02\x01\x05", // 𢗌
+ 0x225cd: "\x05\x02\x02\x01\x04\x05\x04\x04", // 𢗍
+ 0x225ce: "\x04\x04\x02\x03\x05\x05\x04", // 𢗎
+ 0x225cf: "\x01\x01\x03\x02\x04\x05\x04\x04", // 𢗏
+ 0x225d0: "\x04\x05\x03\x05\x04\x05\x04\x04", // 𢗐
+ 0x225d1: "\x04\x04\x02\x04\x05\x03\x05", // 𢗑
+ 0x225d2: "\x04\x04\x02\x03\x01\x01\x02", // 𢗒
+ 0x225d3: "\x01\x05\x01\x04\x05\x04\x04", // 𢗓
+ 0x225d4: "\x04\x04\x02\x01\x02\x05\x05", // 𢗔
+ 0x225d5: "\x04\x04\x02\x03\x05\x05\x04", // 𢗕
+ 0x225d6: "\x04\x04\x02\x03\x01\x02\x01", // 𢗖
+ 0x225d7: "\x04\x04\x02\x01\x03\x04\x04", // 𢗗
+ 0x225d8: "\x04\x04\x02\x03\x05\x03\x03", // 𢗘
+ 0x225d9: "\x04\x04\x02\x01\x02\x01\x05", // 𢗙
+ 0x225da: "\x04\x04\x02\x01\x03\x05\x04", // 𢗚
+ 0x225db: "\x04\x04\x02\x03\x04\x01\x02", // 𢗛
+ 0x225dc: "\x04\x04\x02\x05\x01\x03\x04", // 𢗜
+ 0x225dd: "\x04\x04\x02\x01\x05\x05\x01", // 𢗝
+ 0x225de: "\x04\x04\x02\x01\x03\x05\x04", // 𢗞
+ 0x225df: "\x04\x04\x02\x01\x03\x03\x05", // 𢗟
+ 0x225e0: "\x04\x04\x02\x01\x05\x05\x03", // 𢗠
+ 0x225e1: "\x04\x04\x02\x03\x01\x03\x04", // 𢗡
+ 0x225e2: "\x04\x04\x02\x03\x01\x03\x02", // 𢗢
+ 0x225e3: "\x01\x01\x02\x01\x04\x05\x04\x04", // 𢗣
+ 0x225e4: "\x01\x01\x03\x04\x04\x05\x04\x04", // 𢗤
+ 0x225e5: "\x01\x05\x04\x01\x04\x05\x04\x04", // 𢗥
+ 0x225e6: "\x01\x02\x03\x04\x04\x05\x04\x04", // 𢗦
+ 0x225e7: "\x01\x05\x05\x03\x04\x05\x04\x04", // 𢗧
+ 0x225e8: "\x02\x05\x03\x04\x04\x05\x04\x04", // 𢗨
+ 0x225e9: "\x03\x01\x02\x01\x04\x05\x04\x04", // 𢗩
+ 0x225ea: "\x03\x05\x01\x05\x04\x05\x04\x04", // 𢗪
+ 0x225eb: "\x01\x03\x02\x04\x04\x05\x04\x04", // 𢗫
+ 0x225ec: "\x01\x05\x02\x03\x04\x05\x04\x04", // 𢗬
+ 0x225ed: "\x02\x05\x01\x01\x04\x05\x04\x04", // 𢗭
+ 0x225ee: "\x04\x05\x04\x04\x03\x04\x05\x02", // 𢗮
+ 0x225ef: "\x03\x05\x01\x01\x04\x05\x04\x04", // 𢗯
+ 0x225f0: "\x04\x05\x04\x04\x04\x05\x04\x04", // 𢗰
+ 0x225f1: "\x05\x01\x01\x02\x04\x05\x04\x04", // 𢗱
+ 0x225f2: "\x04\x04\x02\x01\x01\x03\x04", // 𢗲
+ 0x225f3: "\x04\x04\x02\x03\x01\x01\x05", // 𢗳
+ 0x225f4: "\x04\x04\x02\x03\x04\x01\x05", // 𢗴
+ 0x225f5: "\x04\x04\x02\x05\x02\x01\x05", // 𢗵
+ 0x225f6: "\x04\x04\x02\x01\x02\x05\x01", // 𢗶
+ 0x225f7: "\x04\x04\x02\x02\x05\x03\x04", // 𢗷
+ 0x225f8: "\x04\x04\x02\x04\x04\x01\x02", // 𢗸
+ 0x225f9: "\x03\x03\x01\x02\x04\x05\x04\x04", // 𢗹
+ 0x225fa: "\x04\x05\x04\x03\x04\x04\x01\x05", // 𢗺
+ 0x225fb: "\x04\x01\x03\x04\x04\x05\x04\x04", // 𢗻
+ 0x225fc: "\x04\x04\x02\x04\x05\x01\x03", // 𢗼
+ 0x225fd: "\x04\x04\x02\x01\x05\x03\x05", // 𢗽
+ 0x225fe: "\x04\x04\x02\x03\x05\x05\x02", // 𢗾
+ 0x225ff: "\x04\x04\x02\x01\x01\x02\x03\x04", // 𢗿
+ 0x22600: "\x04\x04\x02\x01\x03\x03\x04\x04", // 𢘀
+ 0x22601: "\x02\x05\x01\x02\x02\x04\x05\x04\x04", // 𢘁
+ 0x22602: "\x03\x02\x05\x03\x01\x04\x05\x04\x04", // 𢘂
+ 0x22603: "\x04\x04\x02\x05\x05\x04\x01\x04", // 𢘃
+ 0x22604: "\x04\x04\x02\x02\x05\x03\x04\x01", // 𢘄
+ 0x22605: "\x05\x04\x05\x02\x03\x04\x05\x04\x04", // 𢘅
+ 0x22606: "\x04\x04\x02\x01\x02\x05\x01\x01", // 𢘆
+ 0x22607: "\x02\x05\x01\x01\x01\x04\x05\x04\x04", // 𢘇
+ 0x22608: "\x03\x04\x01\x04\x04\x02\x05\x02", // 𢘈
+ 0x22609: "\x04\x04\x02\x02\x05\x01\x01\x02", // 𢘉
+ 0x2260a: "\x04\x04\x02\x02\x05\x01\x01\x02", // 𢘊
+ 0x2260b: "\x03\x02\x01\x05\x04\x04\x05\x04\x04", // 𢘋
+ 0x2260c: "\x04\x04\x02\x05\x01\x05\x05\x04", // 𢘌
+ 0x2260d: "\x05\x01\x05\x03\x02\x04\x05\x04\x04", // 𢘍
+ 0x2260e: "\x04\x04\x02\x05\x01\x03\x05\x04", // 𢘎
+ 0x2260f: "\x04\x04\x02\x02\x05\x02\x05\x03", // 𢘏
+ 0x22610: "\x04\x04\x02\x03\x04\x01\x02\x01", // 𢘐
+ 0x22611: "\x01\x02\x05\x01\x02\x04\x05\x04\x04", // 𢘑
+ 0x22612: "\x05\x01\x03\x01\x05\x04\x05\x04\x04", // 𢘒
+ 0x22613: "\x05\x05\x04\x01\x04\x04\x05\x04\x04", // 𢘓
+ 0x22614: "\x03\x04\x01\x04\x04\x02\x05\x05", // 𢘔
+ 0x22615: "\x04\x04\x02\x05\x01\x05\x02\x03", // 𢘕
+ 0x22616: "\x02\x05\x01\x04\x05\x04\x04\x05\x02", // 𢘖
+ 0x22617: "\x03\x02\x05\x01\x02\x04\x05\x04\x04", // 𢘗
+ 0x22618: "\x04\x04\x02\x05\x01\x05\x02\x03", // 𢘘
+ 0x22619: "\x04\x04\x02\x01\x03\x05\x03\x04", // 𢘙
+ 0x2261a: "\x04\x04\x02\x04\x05\x03\x05\x04", // 𢘚
+ 0x2261b: "\x04\x04\x02\x03\x03\x01\x02\x04", // 𢘛
+ 0x2261c: "\x04\x04\x02\x05\x01\x02\x05\x01", // 𢘜
+ 0x2261d: "\x04\x04\x02\x04\x05\x02\x03\x04", // 𢘝
+ 0x2261e: "\x03\x05\x02\x03\x04\x04\x05\x04\x04", // 𢘞
+ 0x2261f: "\x04\x05\x04\x04\x01\x02\x05\x01\x02", // 𢘟
+ 0x22620: "\x02\x01\x01\x01\x05\x04\x05\x04\x04", // 𢘠
+ 0x22621: "\x03\x01\x01\x02\x01\x04\x05\x04\x04", // 𢘡
+ 0x22622: "\x03\x02\x01\x01\x05\x04\x05\x04\x04", // 𢘢
+ 0x22623: "\x03\x02\x05\x01\x01\x04\x05\x04\x04", // 𢘣
+ 0x22624: "\x04\x03\x01\x01\x02\x04\x05\x04\x04", // 𢘤
+ 0x22625: "\x04\x04\x02\x04\x01\x02\x05\x02", // 𢘥
+ 0x22626: "\x04\x04\x02\x05\x01\x02\x05\x04", // 𢘦
+ 0x22627: "\x04\x04\x02\x05\x01\x03\x03\x04", // 𢘧
+ 0x22628: "\x04\x04\x02\x05\x02\x02\x03\x04", // 𢘨
+ 0x22629: "\x04\x04\x02\x05\x03\x05\x02\x01", // 𢘩
+ 0x2262a: "\x04\x04\x02\x01\x03\x01\x02\x01", // 𢘪
+ 0x2262b: "\x01\x02\x01\x02\x01\x04\x05\x04\x04", // 𢘫
+ 0x2262c: "\x04\x04\x02\x03\x01\x05\x02\x05", // 𢘬
+ 0x2262d: "\x04\x04\x02\x03\x05\x01\x01\x02", // 𢘭
+ 0x2262e: "\x04\x04\x02\x04\x01\x04\x03\x01", // 𢘮
+ 0x2262f: "\x04\x04\x05\x03\x05\x04\x05\x04\x04", // 𢘯
+ 0x22630: "\x01\x02\x01\x05\x03\x04\x05\x04\x04", // 𢘰
+ 0x22631: "\x01\x03\x04\x05\x04\x04\x05\x03\x04", // 𢘱
+ 0x22632: "\x02\x05\x01\x03\x04\x04\x05\x04\x04", // 𢘲
+ 0x22633: "\x03\x01\x02\x03\x04\x04\x05\x04\x04", // 𢘳
+ 0x22634: "\x03\x05\x03\x05\x02\x04\x04\x05\x04\x04", // 𢘴
+ 0x22635: "\x03\x05\x04\x05\x02\x04\x04\x05\x04\x04", // 𢘵
+ 0x22636: "\x04\x04\x02\x05\x01\x01\x01\x01\x02", // 𢘶
+ 0x22637: "\x04\x04\x02\x02\x05\x01\x02\x01\x04", // 𢘷
+ 0x22638: "\x04\x04\x02\x03\x05\x04\x01\x05\x02", // 𢘸
+ 0x22639: "\x04\x04\x02\x03\x04\x01\x02\x03\x04", // 𢘹
+ 0x2263a: "\x04\x04\x02\x04\x03\x01\x02\x03\x04", // 𢘺
+ 0x2263b: "\x04\x03\x01\x02\x03\x04\x04\x05\x04\x04", // 𢘻
+ 0x2263c: "\x02\x05\x01\x01\x02\x02\x04\x05\x04\x04", // 𢘼
+ 0x2263d: "\x04\x04\x02\x02\x05\x01\x01\x05\x03", // 𢘽
+ 0x2263e: "\x04\x04\x02\x05\x03\x01\x02\x05\x01", // 𢘾
+ 0x2263f: "\x05\x02\x03\x05\x02\x03\x04\x05\x04\x04", // 𢘿
+ 0x22640: "\x04\x04\x02\x01\x02\x05\x02\x03\x04", // 𢙀
+ 0x22641: "\x04\x04\x01\x01\x01\x05\x04\x05\x04\x04", // 𢙁
+ 0x22642: "\x01\x02\x05\x02\x02\x01\x04\x05\x04\x04", // 𢙂
+ 0x22643: "\x04\x04\x02\x02\x05\x01\x01\x01\x05", // 𢙃
+ 0x22644: "\x01\x02\x02\x01\x03\x04\x04\x05\x04\x04", // 𢙄
+ 0x22645: "\x03\x04\x01\x02\x05\x01\x04\x05\x04\x04", // 𢙅
+ 0x22646: "\x04\x04\x02\x03\x02\x05\x01\x01\x01", // 𢙆
+ 0x22647: "\x04\x04\x02\x04\x01\x03\x05\x03\x04", // 𢙇
+ 0x22648: "\x04\x05\x04\x04\x02\x05\x01\x02\x05\x01", // 𢙈
+ 0x22649: "\x04\x04\x02\x05\x05\x05\x02\x05\x02", // 𢙉
+ 0x2264a: "\x04\x04\x02\x01\x01\x03\x05\x03\x04", // 𢙊
+ 0x2264b: "\x04\x04\x02\x03\x04\x03\x04\x01\x02", // 𢙋
+ 0x2264c: "\x05\x02\x01\x01\x02\x01\x04\x05\x04\x04", // 𢙌
+ 0x2264d: "\x02\x05\x02\x05\x01\x01\x04\x05\x04\x04", // 𢙍
+ 0x2264e: "\x05\x02\x05\x04\x05\x04\x04\x05\x04\x04", // 𢙎
+ 0x2264f: "\x05\x02\x01\x02\x03\x04\x04\x05\x04\x04", // 𢙏
+ 0x22650: "\x04\x04\x02\x04\x05\x03\x05\x03\x04", // 𢙐
+ 0x22651: "\x04\x04\x02\x05\x04\x04\x01\x03\x04", // 𢙑
+ 0x22652: "\x04\x04\x02\x01\x05\x03\x01\x03\x05", // 𢙒
+ 0x22653: "\x04\x04\x02\x03\x04\x01\x01\x05\x04", // 𢙓
+ 0x22654: "\x04\x04\x02\x04\x05\x02\x04\x05", // 𢙔
+ 0x22655: "\x04\x04\x02\x04\x01\x03\x02\x03\x04", // 𢙕
+ 0x22656: "\x04\x04\x02\x01\x02\x05\x03\x04\x01", // 𢙖
+ 0x22657: "\x04\x04\x02\x04\x01\x05\x05\x03\x01", // 𢙗
+ 0x22658: "\x04\x04\x02\x01\x02\x02\x01\x01\x01", // 𢙘
+ 0x22659: "\x04\x04\x02\x02\x05\x02\x01\x03\x05", // 𢙙
+ 0x2265a: "\x04\x04\x02\x03\x05\x05\x02\x01\x05", // 𢙚
+ 0x2265b: "\x04\x04\x02\x03\x05\x04\x02\x05\x01", // 𢙛
+ 0x2265c: "\x04\x04\x02\x03\x05\x01\x02\x05\x02", // 𢙜
+ 0x2265d: "\x04\x04\x02\x03\x01\x02\x01\x03\x05", // 𢙝
+ 0x2265e: "\x01\x02\x05\x01\x02\x05\x04\x05\x04\x04", // 𢙞
+ 0x2265f: "\x02\x05\x01\x05\x03\x04\x04\x05\x04\x04", // 𢙟
+ 0x22660: "\x03\x02\x05\x01\x01\x03\x04\x05\x04\x04", // 𢙠
+ 0x22661: "\x03\x03\x02\x01\x01\x02\x04\x05\x04\x04", // 𢙡
+ 0x22662: "\x01\x02\x01\x02\x05\x01\x04\x05\x04\x04", // 𢙢
+ 0x22663: "\x01\x02\x05\x02\x02\x01\x04\x05\x04\x04", // 𢙣
+ 0x22664: "\x02\x01\x01\x02\x03\x04\x04\x05\x04\x04", // 𢙤
+ 0x22665: "\x03\x02\x05\x03\x04\x01\x04\x05\x04\x04", // 𢙥
+ 0x22666: "\x03\x02\x05\x03\x04\x01\x04\x05\x04\x04", // 𢙦
+ 0x22667: "\x04\x04\x02\x02\x01\x02\x01\x03\x05", // 𢙧
+ 0x22668: "\x04\x04\x02\x01\x03\x02\x05\x02\x01", // 𢙨
+ 0x22669: "\x04\x04\x02\x01\x01\x01\x02\x03\x04", // 𢙩
+ 0x2266a: "\x04\x04\x02\x04\x05\x04\x01\x02\x04", // 𢙪
+ 0x2266b: "\x04\x04\x02\x02\x05\x01\x03\x04\x01", // 𢙫
+ 0x2266c: "\x04\x04\x02\x03\x02\x05\x01\x01\x03", // 𢙬
+ 0x2266d: "\x02\x03\x04\x01\x03\x04\x04\x05\x04\x04", // 𢙭
+ 0x2266e: "\x01\x03\x02\x01\x02\x01\x04\x05\x04\x04", // 𢙮
+ 0x2266f: "\x01\x03\x02\x05\x01\x01\x04\x05\x04\x04", // 𢙯
+ 0x22670: "\x05\x01\x05\x05\x05\x04\x04\x05\x04\x04", // 𢙰
+ 0x22671: "\x04\x04\x02\x01\x01\x02\x01\x01\x03\x02", // 𢙱
+ 0x22672: "\x04\x04\x02\x02\x05\x01\x03\x02\x05\x01", // 𢙲
+ 0x22673: "\x04\x04\x02\x05\x02\x01\x03\x01\x02\x01", // 𢙳
+ 0x22674: "\x01\x05\x03\x05\x04\x05\x04\x04\x03\x05\x04", // 𢙴
+ 0x22675: "\x04\x04\x02\x03\x04\x01\x03\x02\x05\x01", // 𢙵
+ 0x22676: "\x02\x05\x01\x01\x01\x01\x02\x04\x05\x04\x04", // 𢙶
+ 0x22677: "\x01\x02\x01\x05\x03\x01\x01\x04\x05\x04\x04", // 𢙷
+ 0x22678: "\x02\x05\x01\x01\x05\x03\x05\x04\x05\x04\x04", // 𢙸
+ 0x22679: "\x04\x04\x02\x03\x05\x03\x04\x03\x03\x04", // 𢙹
+ 0x2267a: "\x04\x04\x02\x01\x02\x01\x04\x05\x04\x04", // 𢙺
+ 0x2267b: "\x05\x01\x01\x01\x02\x04\x05\x04\x04\x05\x03", // 𢙻
+ 0x2267c: "\x04\x04\x02\x01\x05\x05\x05\x01\x02\x01", // 𢙼
+ 0x2267d: "\x03\x01\x05\x05\x04\x01\x04\x04\x05\x04\x04", // 𢙽
+ 0x2267e: "\x04\x04\x02\x01\x02\x05\x01\x01\x03\x04", // 𢙾
+ 0x2267f: "\x04\x04\x02\x02\x05\x02\x03\x04\x01\x05", // 𢙿
+ 0x22680: "\x04\x04\x02\x03\x02\x01\x02\x01\x05\x04", // 𢚀
+ 0x22681: "\x04\x04\x02\x05\x01\x05\x04\x05\x04\x04", // 𢚁
+ 0x22682: "\x04\x04\x02\x03\x04\x03\x04\x01\x02\x01", // 𢚂
+ 0x22683: "\x04\x04\x02\x03\x04\x04\x03\x01\x02\x04", // 𢚃
+ 0x22684: "\x04\x04\x02\x04\x04\x05\x03\x01\x01\x02", // 𢚄
+ 0x22685: "\x01\x02\x01\x03\x05\x05\x03\x04\x05\x04\x04", // 𢚅
+ 0x22686: "\x04\x04\x05\x02\x05\x01\x01\x01\x05\x03", // 𢚆
+ 0x22687: "\x04\x04\x02\x02\x05\x02\x01\x01\x02\x01", // 𢚇
+ 0x22688: "\x01\x02\x02\x01\x01\x03\x04\x02\x04\x04\x04", // 𢚈
+ 0x22689: "\x04\x04\x02\x02\x05\x01\x01\x01\x01\x05", // 𢚉
+ 0x2268a: "\x02\x05\x03\x05\x02\x05\x01\x04\x05\x04\x04", // 𢚊
+ 0x2268b: "\x04\x04\x02\x03\x02\x05\x01\x01\x03\x05", // 𢚋
+ 0x2268c: "\x04\x04\x02\x05\x01\x01\x03\x04\x03\x04", // 𢚌
+ 0x2268d: "\x04\x04\x02\x04\x04\x05\x01\x02\x04\x01", // 𢚍
+ 0x2268e: "\x01\x05\x04\x04\x04\x04\x04\x05\x04\x04", // 𢚎
+ 0x2268f: "\x02\x05\x02\x03\x04\x01\x05\x04\x05\x04\x04", // 𢚏
+ 0x22690: "\x03\x03\x02\x03\x01\x03\x04\x04\x05\x04\x04", // 𢚐
+ 0x22691: "\x04\x04\x01\x03\x05\x01\x01\x04\x05\x04\x04", // 𢚑
+ 0x22692: "\x03\x04\x01\x01\x02\x03\x04\x04\x05\x04\x04", // 𢚒
+ 0x22693: "\x05\x01\x05\x03\x01\x03\x04\x04\x05\x04\x04", // 𢚓
+ 0x22694: "\x04\x04\x02\x03\x04\x05\x04\x03\x05\x04", // 𢚔
+ 0x22695: "\x04\x04\x02\x02\x05\x01\x01\x05\x03\x04", // 𢚕
+ 0x22696: "\x04\x03\x05\x01\x05\x02\x03\x04\x05\x04\x04", // 𢚖
+ 0x22697: "\x04\x04\x02\x04\x04\x05\x01\x02\x03\x04", // 𢚗
+ 0x22698: "\x04\x04\x02\x04\x01\x01\x01\x02\x05\x01", // 𢚘
+ 0x22699: "\x04\x04\x02\x04\x01\x03\x04\x05\x02\x01", // 𢚙
+ 0x2269a: "\x04\x04\x01\x04\x01\x05\x04\x05\x04\x04", // 𢚚
+ 0x2269b: "\x04\x04\x02\x01\x02\x02\x05\x01\x03\x05", // 𢚛
+ 0x2269c: "\x04\x04\x02\x05\x04\x02\x05\x01\x02\x01", // 𢚜
+ 0x2269d: "\x04\x04\x02\x05\x04\x03\x01\x01\x03\x04", // 𢚝
+ 0x2269e: "\x04\x05\x02\x05\x01\x01\x01\x04\x05\x04\x04", // 𢚞
+ 0x2269f: "\x04\x01\x02\x05\x01\x05\x02\x04\x05\x04\x04", // 𢚟
+ 0x226a0: "\x04\x04\x05\x01\x02\x03\x04\x04\x05\x04\x04", // 𢚠
+ 0x226a1: "\x01\x02\x04\x01\x03\x04\x04\x04\x05\x04\x04", // 𢚡
+ 0x226a2: "\x05\x01\x05\x03\x01\x03\x04\x04\x05\x04\x04", // 𢚢
+ 0x226a3: "\x05\x02\x02\x05\x01\x05\x04\x04\x05\x04\x04", // 𢚣
+ 0x226a4: "\x01\x02\x03\x04\x02\x05\x01\x04\x05\x04\x04", // 𢚤
+ 0x226a5: "\x05\x04\x01\x01\x02\x01\x04\x04\x05\x04\x04", // 𢚥
+ 0x226a6: "\x01\x02\x04\x05\x05\x02\x01\x04\x05\x04\x04", // 𢚦
+ 0x226a7: "\x01\x03\x02\x05\x01\x01\x01\x04\x05\x04\x04", // 𢚧
+ 0x226a8: "\x03\x02\x01\x02\x05\x01\x02\x04\x05\x04\x04", // 𢚨
+ 0x226a9: "\x03\x04\x04\x03\x05\x01\x01\x04\x05\x04\x04", // 𢚩
+ 0x226aa: "\x05\x01\x03\x04\x03\x03\x04\x04\x05\x04\x04", // 𢚪
+ 0x226ab: "\x05\x01\x05\x02\x03\x05\x04\x04\x05\x04\x04", // 𢚫
+ 0x226ac: "\x04\x04\x02\x01\x03\x02\x04\x01\x02\x01", // 𢚬
+ 0x226ad: "\x04\x04\x02\x02\x05\x02\x02\x05\x03\x04", // 𢚭
+ 0x226ae: "\x04\x04\x02\x03\x01\x01\x03\x01\x01\x01", // 𢚮
+ 0x226af: "\x04\x04\x02\x03\x05\x03\x01\x01\x02\x01", // 𢚯
+ 0x226b0: "\x04\x04\x02\x05\x05\x05\x03\x04\x05\x02", // 𢚰
+ 0x226b1: "\x04\x03\x01\x03\x04\x05\x04\x04\x05\x04\x04", // 𢚱
+ 0x226b2: "\x04\x04\x02\x05\x01\x05\x03\x01\x03\x04", // 𢚲
+ 0x226b3: "\x01\x02\x03\x04\x01\x02\x04\x04\x05\x04\x04", // 𢚳
+ 0x226b4: "\x04\x04\x02\x05\x03\x04\x04\x05\x04\x04", // 𢚴
+ 0x226b5: "\x04\x04\x02\x03\x04\x04\x03\x05\x03\x03", // 𢚵
+ 0x226b6: "\x04\x04\x02\x03\x04\x04\x03\x05\x03\x01", // 𢚶
+ 0x226b7: "\x04\x04\x02\x01\x02\x05\x01\x01\x01\x02", // 𢚷
+ 0x226b8: "\x01\x01\x02\x01\x01\x03\x02\x04\x05\x04\x04", // 𢚸
+ 0x226b9: "\x04\x04\x02\x02\x05\x01\x01\x01\x01\x05", // 𢚹
+ 0x226ba: "\x04\x04\x02\x01\x01\x03\x04\x02\x05\x01", // 𢚺
+ 0x226bb: "\x04\x04\x02\x02\x05\x01\x03\x04\x03\x02", // 𢚻
+ 0x226bc: "\x04\x04\x02\x02\x05\x02\x03\x05\x04", // 𢚼
+ 0x226bd: "\x04\x04\x02\x04\x04\x01\x01\x02\x05\x05", // 𢚽
+ 0x226be: "\x04\x04\x02\x03\x05\x02\x05\x01\x03\x04", // 𢚾
+ 0x226bf: "\x03\x05\x04\x04\x05\x02\x04\x04\x05\x04\x04", // 𢚿
+ 0x226c0: "\x01\x02\x05\x01\x05\x01\x05\x04\x05\x04\x04", // 𢛀
+ 0x226c1: "\x03\x01\x01\x02\x05\x02\x02\x02\x04\x05\x04\x04", // 𢛁
+ 0x226c2: "\x02\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04\x04", // 𢛂
+ 0x226c3: "\x03\x05\x04\x02\x04\x02\x05\x01\x04\x05\x04\x04", // 𢛃
+ 0x226c4: "\x04\x04\x02\x01\x03\x01\x02\x01\x01\x02\x01", // 𢛄
+ 0x226c5: "\x04\x04\x02\x02\x05\x01\x02\x02\x05\x01\x01", // 𢛅
+ 0x226c6: "\x05\x01\x05\x04\x01\x05\x05\x04\x04\x05\x04\x04", // 𢛆
+ 0x226c7: "\x03\x05\x01\x02\x01\x02\x05\x01\x04\x05\x04\x04", // 𢛇
+ 0x226c8: "\x04\x04\x02\x02\x01\x02\x05\x01\x04\x05\x04\x04", // 𢛈
+ 0x226c9: "\x04\x04\x02\x03\x01\x02\x01\x02\x01\x02\x01\x01", // 𢛉
+ 0x226ca: "\x04\x04\x02\x03\x01\x02\x03\x04\x05\x03\x01", // 𢛊
+ 0x226cb: "\x05\x04\x03\x05\x04\x01\x02\x02\x04\x05\x04\x04", // 𢛋
+ 0x226cc: "\x04\x04\x02\x03\x05\x05\x04\x04\x05\x04\x04", // 𢛌
+ 0x226cd: "\x04\x04\x02\x03\x01\x01\x03\x04\x02\x05\x01", // 𢛍
+ 0x226ce: "\x04\x04\x02\x04\x03\x02\x05\x02\x03\x04", // 𢛎
+ 0x226cf: "\x04\x04\x02\x01\x02\x02\x01\x01\x01\x05\x04", // 𢛏
+ 0x226d0: "\x04\x04\x02\x04\x01\x05\x04\x01\x02\x03\x04", // 𢛐
+ 0x226d1: "\x01\x02\x01\x03\x05\x02\x05\x01\x04\x05\x04\x04", // 𢛑
+ 0x226d2: "\x04\x04\x02\x01\x02\x03\x04\x03\x05\x05\x04", // 𢛒
+ 0x226d3: "\x01\x02\x03\x04\x01\x02\x03\x04\x04\x05\x04\x04", // 𢛓
+ 0x226d4: "\x04\x04\x02\x01\x02\x05\x01\x01\x02\x03\x04", // 𢛔
+ 0x226d5: "\x04\x04\x02\x02\x05\x03\x01\x02\x03\x04\x01", // 𢛕
+ 0x226d6: "\x01\x02\x02\x01\x03\x04\x05\x05\x04\x05\x04\x04", // 𢛖
+ 0x226d7: "\x04\x04\x02\x04\x03\x01\x01\x03\x04\x05\x03", // 𢛗
+ 0x226d8: "\x04\x04\x02\x03\x04\x01\x03\x03\x05\x04\x01", // 𢛘
+ 0x226d9: "\x04\x04\x02\x04\x04\x05\x03\x05\x05\x01\x05", // 𢛙
+ 0x226da: "\x01\x03\x01\x01\x05\x03\x04\x04\x05\x04\x04", // 𢛚
+ 0x226db: "\x04\x04\x02\x03\x03\x02\x04\x01\x01\x02\x01", // 𢛛
+ 0x226dc: "\x04\x04\x01\x05\x01\x03\x01\x05\x04\x05\x04\x04", // 𢛜
+ 0x226dd: "\x02\x05\x01\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 𢛝
+ 0x226de: "\x04\x04\x02\x03\x02\x05\x01\x01\x03\x01\x02", // 𢛞
+ 0x226df: "\x04\x04\x02\x01\x02\x01\x05\x05\x01\x02\x01", // 𢛟
+ 0x226e0: "\x04\x04\x02\x03\x04\x01\x03\x05\x04\x05\x02", // 𢛠
+ 0x226e1: "\x04\x04\x02\x02\x05\x01\x01\x03\x05\x01\x01", // 𢛡
+ 0x226e2: "\x04\x04\x02\x01\x03\x03\x05\x04\x01\x04\x01", // 𢛢
+ 0x226e3: "\x04\x04\x01\x05\x01\x05\x01\x05\x04\x05\x04\x04", // 𢛣
+ 0x226e4: "\x01\x02\x05\x01\x01\x02\x05\x01\x04\x05\x04\x04", // 𢛤
+ 0x226e5: "\x05\x01\x03\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 𢛥
+ 0x226e6: "\x03\x05\x03\x03\x03\x05\x03\x04\x04\x05\x04\x04", // 𢛦
+ 0x226e7: "\x03\x02\x04\x01\x01\x01\x02\x01\x04\x05\x04\x04", // 𢛧
+ 0x226e8: "\x04\x04\x02\x04\x01\x05\x03\x03\x04\x04\x04", // 𢛨
+ 0x226e9: "\x05\x01\x01\x02\x02\x05\x01\x01\x02\x04\x04\x04", // 𢛩
+ 0x226ea: "\x03\x04\x01\x03\x05\x04\x05\x05\x04\x05\x04\x04", // 𢛪
+ 0x226eb: "\x04\x01\x01\x02\x05\x02\x02\x01\x04\x05\x04\x04", // 𢛫
+ 0x226ec: "\x04\x04\x05\x04\x05\x04\x03\x04\x04\x05\x04\x04", // 𢛬
+ 0x226ed: "\x05\x05\x03\x01\x05\x03\x05\x04\x05\x04\x04", // 𢛭
+ 0x226ee: "\x03\x01\x02\x01\x03\x01\x03\x04\x04\x05\x04\x04", // 𢛮
+ 0x226ef: "\x04\x04\x02\x01\x02\x05\x01\x02\x01\x05\x02", // 𢛯
+ 0x226f0: "\x04\x04\x02\x04\x03\x01\x02\x02\x04\x03\x01", // 𢛰
+ 0x226f1: "\x01\x02\x05\x02\x03\x04\x05\x03\x04\x05\x04\x04", // 𢛱
+ 0x226f2: "\x03\x01\x02\x01\x02\x02\x01\x01\x04\x05\x04\x04", // 𢛲
+ 0x226f3: "\x01\x03\x02\x05\x02\x02\x01\x01\x04\x05\x04\x04", // 𢛳
+ 0x226f4: "\x04\x04\x02\x05\x02\x01\x02\x05\x02\x02\x01", // 𢛴
+ 0x226f5: "\x04\x04\x02\x03\x03\x04\x04\x05\x01\x01\x02", // 𢛵
+ 0x226f6: "\x01\x02\x05\x01\x02\x05\x02\x04\x04\x05\x04\x04", // 𢛶
+ 0x226f7: "\x04\x04\x02\x03\x05\x01\x03\x04\x01\x05\x03", // 𢛷
+ 0x226f8: "\x04\x04\x02\x04\x04\x05\x01\x02\x02\x03\x04", // 𢛸
+ 0x226f9: "\x04\x04\x02\x04\x03\x02\x05\x01\x01\x03\x05", // 𢛹
+ 0x226fa: "\x04\x04\x02\x01\x02\x01\x03\x05\x05\x01\x05", // 𢛺
+ 0x226fb: "\x04\x04\x02\x01\x02\x02\x01\x03\x05\x01\x01", // 𢛻
+ 0x226fc: "\x04\x04\x02\x02\x01\x02\x02\x03\x04\x05\x04", // 𢛼
+ 0x226fd: "\x04\x04\x02\x02\x05\x01\x01\x02\x05\x01\x01", // 𢛽
+ 0x226fe: "\x04\x04\x02\x02\x05\x03\x05\x04\x04\x04\x01", // 𢛾
+ 0x226ff: "\x04\x04\x02\x02\x05\x01\x01\x03\x01\x03\x02", // 𢛿
+ 0x22700: "\x04\x04\x02\x01\x05\x01\x01\x02\x01\x03\x04", // 𢜀
+ 0x22701: "\x04\x04\x02\x03\x05\x04\x05\x04\x03\x04", // 𢜁
+ 0x22702: "\x04\x03\x01\x01\x03\x04\x05\x04\x04\x05\x04\x04", // 𢜂
+ 0x22703: "\x04\x04\x01\x01\x02\x02\x05\x01\x04\x05\x04\x04", // 𢜃
+ 0x22704: "\x03\x05\x01\x03\x03\x05\x05\x04\x04\x05\x04\x04", // 𢜄
+ 0x22705: "\x04\x04\x01\x03\x04\x01\x05\x04\x04\x05\x04\x04", // 𢜅
+ 0x22706: "\x04\x01\x03\x03\x02\x01\x02\x04\x04\x05\x04\x04", // 𢜆
+ 0x22707: "\x04\x04\x05\x02\x05\x01\x01\x01\x04\x05\x04\x04", // 𢜇
+ 0x22708: "\x01\x01\x02\x01\x01\x01\x02\x01\x04\x05\x04\x04", // 𢜈
+ 0x22709: "\x01\x02\x01\x03\x01\x02\x01\x01\x04\x05\x04\x04", // 𢜉
+ 0x2270a: "\x01\x02\x01\x02\x05\x01\x01\x01\x04\x05\x04\x04", // 𢜊
+ 0x2270b: "\x01\x02\x01\x02\x01\x02\x05\x01\x04\x05\x04\x04", // 𢜋
+ 0x2270c: "\x01\x02\x01\x05\x03\x02\x05\x01\x04\x05\x04\x04", // 𢜌
+ 0x2270d: "\x01\x01\x02\x01\x03\x05\x03\x03\x04\x05\x04\x04", // 𢜍
+ 0x2270e: "\x01\x01\x01\x02\x01\x01\x01\x02\x04\x05\x04\x04", // 𢜎
+ 0x2270f: "\x02\x05\x01\x01\x03\x05\x01\x01\x04\x05\x04\x04", // 𢜏
+ 0x22710: "\x04\x05\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𢜐
+ 0x22711: "\x03\x05\x01\x01\x04\x01\x03\x04\x04\x05\x04\x04", // 𢜑
+ 0x22712: "\x03\x04\x01\x02\x05\x01\x02\x02\x04\x05\x04\x04", // 𢜒
+ 0x22713: "\x03\x01\x02\x01\x03\x05\x03\x04\x04\x05\x04\x04", // 𢜓
+ 0x22714: "\x03\x01\x01\x03\x04\x02\x05\x01\x04\x05\x04\x04", // 𢜔
+ 0x22715: "\x03\x05\x03\x03\x03\x01\x03\x04\x04\x05\x04\x04", // 𢜕
+ 0x22716: "\x04\x01\x02\x05\x02\x05\x01\x05\x04\x05\x04\x04", // 𢜖
+ 0x22717: "\x04\x04\x02\x01\x01\x01\x03\x04\x01\x01\x02", // 𢜗
+ 0x22718: "\x04\x04\x02\x01\x03\x04\x01\x02\x01\x03\x02", // 𢜘
+ 0x22719: "\x04\x04\x02\x04\x01\x03\x05\x03\x04\x01\x02", // 𢜙
+ 0x2271a: "\x04\x04\x02\x04\x01\x05\x05\x04\x05\x05\x04", // 𢜚
+ 0x2271b: "\x03\x03\x01\x02\x03\x05\x03\x04\x04\x05\x04\x04", // 𢜛
+ 0x2271c: "\x04\x04\x02\x02\x01\x05\x03\x01\x05\x03\x05", // 𢜜
+ 0x2271d: "\x04\x04\x02\x01\x02\x05\x01\x05\x01\x01\x02", // 𢜝
+ 0x2271e: "\x04\x04\x02\x01\x03\x04\x03\x04\x02\x03\x04", // 𢜞
+ 0x2271f: "\x04\x04\x02\x02\x05\x04\x03\x01\x02\x05\x02", // 𢜟
+ 0x22720: "\x04\x04\x02\x02\x05\x01\x01\x03\x05\x01\x01", // 𢜠
+ 0x22721: "\x04\x04\x02\x04\x01\x04\x03\x01\x05\x03\x01", // 𢜡
+ 0x22722: "\x04\x04\x02\x03\x03\x02\x05\x03\x02\x05\x04", // 𢜢
+ 0x22723: "\x01\x02\x03\x04\x03\x02\x01\x05\x04\x05\x04\x04", // 𢜣
+ 0x22724: "\x01\x05\x02\x04\x05\x04\x05\x04\x04\x03\x05\x04", // 𢜤
+ 0x22725: "\x04\x04\x02\x03\x05\x04\x02\x04\x02\x05\x01", // 𢜥
+ 0x22726: "\x04\x03\x03\x04\x03\x03\x01\x02\x04\x05\x04\x04", // 𢜦
+ 0x22727: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x05\x04\x04", // 𢜧
+ 0x22728: "\x01\x02\x02\x01\x05\x01\x02\x03\x04\x04\x05\x04\x04", // 𢜨
+ 0x22729: "\x04\x04\x02\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 𢜩
+ 0x2272a: "\x04\x04\x02\x01\x02\x01\x02\x01\x03\x02\x05\x01", // 𢜪
+ 0x2272b: "\x04\x04\x02\x02\x03\x04\x03\x02\x05\x01\x01\x01", // 𢜫
+ 0x2272c: "\x04\x04\x02\x04\x01\x03\x01\x02\x02\x01\x05\x04", // 𢜬
+ 0x2272d: "\x04\x04\x02\x03\x04\x03\x04\x02\x05\x01\x05\x02", // 𢜭
+ 0x2272e: "\x04\x04\x02\x01\x02\x02\x01\x01\x01\x02\x03\x04", // 𢜮
+ 0x2272f: "\x01\x02\x02\x01\x01\x01\x02\x03\x04\x04\x05\x04\x04", // 𢜯
+ 0x22730: "\x04\x04\x02\x03\x04\x01\x02\x05\x01\x01\x03\x02", // 𢜰
+ 0x22731: "\x04\x04\x02\x02\x05\x01\x01\x02\x02\x01\x01\x01", // 𢜱
+ 0x22732: "\x04\x04\x02\x05\x03\x01\x05\x04\x03\x01\x01\x02", // 𢜲
+ 0x22733: "\x04\x04\x02\x01\x02\x01\x02\x05\x01\x04\x03\x01", // 𢜳
+ 0x22734: "\x04\x04\x02\x03\x05\x01\x03\x03\x01\x01\x03\x04", // 𢜴
+ 0x22735: "\x04\x04\x02\x03\x02\x05\x01\x03\x01\x01\x03\x04", // 𢜵
+ 0x22736: "\x04\x04\x02\x04\x04\x05\x04\x03\x03\x04\x05\x04", // 𢜶
+ 0x22737: "\x03\x02\x05\x02\x02\x01\x05\x03\x04\x04\x05\x04\x04", // 𢜷
+ 0x22738: "\x04\x04\x02\x05\x04\x05\x02\x03\x01\x02\x03\x04", // 𢜸
+ 0x22739: "\x02\x05\x01\x03\x03\x05\x01\x01\x01\x04\x05\x04\x04", // 𢜹
+ 0x2273a: "\x04\x04\x02\x04\x01\x02\x05\x01\x03\x05\x03\x04", // 𢜺
+ 0x2273b: "\x04\x04\x02\x03\x04\x04\x03\x02\x05\x02\x01\x01", // 𢜻
+ 0x2273c: "\x04\x04\x02\x03\x01\x02\x01\x02\x02\x01\x02\x03\x04", // 𢜼
+ 0x2273d: "\x04\x04\x02\x05\x04\x03\x03\x04\x01\x01\x03\x04", // 𢜽
+ 0x2273e: "\x04\x04\x02\x01\x01\x02\x01\x03\x04\x05\x03\x04", // 𢜾
+ 0x2273f: "\x04\x04\x02\x04\x04\x05\x01\x03\x05\x03\x03\x03\x04", // 𢜿
+ 0x22740: "\x04\x04\x02\x04\x04\x05\x03\x05\x01\x03\x04\x04", // 𢝀
+ 0x22741: "\x04\x04\x02\x03\x05\x04\x01\x01\x01\x02\x05\x01", // 𢝁
+ 0x22742: "\x04\x04\x02\x01\x01\x02\x01\x05\x05\x04\x01\x04", // 𢝂
+ 0x22743: "\x04\x01\x04\x03\x04\x05\x02\x05\x02\x04\x05\x04\x04", // 𢝃
+ 0x22744: "\x04\x04\x02\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 𢝄
+ 0x22745: "\x05\x01\x02\x01\x01\x05\x01\x05\x04\x04\x05\x04\x04", // 𢝅
+ 0x22746: "\x04\x04\x02\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𢝆
+ 0x22747: "\x04\x04\x02\x03\x01\x01\x02\x01\x03\x02\x05\x01", // 𢝇
+ 0x22748: "\x04\x04\x02\x02\x05\x01\x02\x02\x05\x02\x02\x01", // 𢝈
+ 0x22749: "\x04\x04\x02\x01\x03\x04\x01\x02\x02\x01\x01\x01", // 𢝉
+ 0x2274a: "\x01\x03\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04\x04", // 𢝊
+ 0x2274b: "\x04\x04\x02\x04\x01\x02\x05\x01\x04\x05\x03\x05", // 𢝋
+ 0x2274c: "\x04\x04\x02\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 𢝌
+ 0x2274d: "\x04\x04\x02\x04\x05\x04\x05\x04\x04\x05\x04\x04", // 𢝍
+ 0x2274e: "\x04\x04\x02\x01\x02\x05\x02\x01\x01\x02\x01\x05", // 𢝎
+ 0x2274f: "\x03\x02\x05\x03\x05\x01\x03\x05\x01\x04\x05\x04\x04", // 𢝏
+ 0x22750: "\x03\x03\x02\x01\x01\x02\x01\x01\x02\x04\x05\x04\x04", // 𢝐
+ 0x22751: "\x04\x03\x01\x04\x03\x03\x04\x03\x04\x04\x05\x04\x04", // 𢝑
+ 0x22752: "\x04\x04\x02\x01\x02\x01\x02\x01\x03\x05\x01\x01", // 𢝒
+ 0x22753: "\x04\x04\x02\x03\x02\x05\x01\x01\x02\x05\x03\x04", // 𢝓
+ 0x22754: "\x02\x05\x01\x01\x01\x03\x04\x02\x02\x04\x05\x04\x04", // 𢝔
+ 0x22755: "\x02\x05\x03\x05\x02\x05\x01\x03\x05\x04\x05\x04\x04", // 𢝕
+ 0x22756: "\x01\x02\x02\x01\x01\x01\x03\x04\x05\x04\x05\x04\x04", // 𢝖
+ 0x22757: "\x01\x04\x03\x01\x02\x03\x04\x02\x02\x04\x05\x04\x04", // 𢝗
+ 0x22758: "\x04\x04\x02\x03\x02\x01\x05\x01\x01\x01\x02\x01", // 𢝘
+ 0x22759: "\x04\x04\x02\x01\x03\x02\x04\x02\x05\x02\x02\x01", // 𢝙
+ 0x2275a: "\x04\x04\x02\x04\x04\x01\x03\x01\x02\x01\x03\x05", // 𢝚
+ 0x2275b: "\x04\x04\x02\x01\x01\x01\x02\x05\x03\x01\x03\x04", // 𢝛
+ 0x2275c: "\x04\x04\x02\x04\x01\x02\x05\x01\x04\x05\x01\x02", // 𢝜
+ 0x2275d: "\x02\x05\x01\x01\x01\x01\x02\x03\x04\x04\x05\x04\x04", // 𢝝
+ 0x2275e: "\x04\x04\x02\x01\x02\x02\x01\x01\x01\x05\x02", // 𢝞
+ 0x2275f: "\x04\x04\x02\x05\x03\x02\x05\x01\x03\x01\x01\x02", // 𢝟
+ 0x22760: "\x04\x04\x02\x05\x04\x05\x02\x03\x02\x01\x05\x04", // 𢝠
+ 0x22761: "\x04\x04\x02\x04\x01\x05\x03\x03\x01\x05\x02\x01", // 𢝡
+ 0x22762: "\x04\x04\x02\x05\x04\x02\x05\x01\x01\x01\x03\x04", // 𢝢
+ 0x22763: "\x04\x04\x02\x01\x01\x01\x03\x04\x02\x05\x01\x01", // 𢝣
+ 0x22764: "\x04\x04\x02\x03\x01\x02\x02\x01\x01\x03\x05\x01", // 𢝤
+ 0x22765: "\x04\x04\x02\x03\x01\x02\x03\x04\x02\x05\x03\x04", // 𢝥
+ 0x22766: "\x04\x03\x03\x04\x01\x02\x05\x03\x04\x04\x05\x04\x04", // 𢝦
+ 0x22767: "\x04\x04\x02\x05\x01\x01\x05\x03\x04\x04\x05\x04\x04", // 𢝧
+ 0x22768: "\x01\x02\x01\x02\x01\x02\x02\x05\x01\x04\x05\x04\x04", // 𢝨
+ 0x22769: "\x03\x03\x02\x01\x01\x03\x05\x03\x04\x04\x05\x04\x04", // 𢝩
+ 0x2276a: "\x03\x02\x01\x01\x01\x03\x05\x05\x04\x04\x05\x04\x04", // 𢝪
+ 0x2276b: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x04\x05\x04\x04", // 𢝫
+ 0x2276c: "\x01\x02\x01\x03\x02\x05\x01\x01\x04\x05\x04\x04", // 𢝬
+ 0x2276d: "\x01\x02\x01\x05\x05\x02\x05\x02\x03\x04\x05\x04\x04", // 𢝭
+ 0x2276e: "\x02\x05\x02\x02\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 𢝮
+ 0x2276f: "\x02\x05\x04\x01\x01\x01\x02\x05\x01\x04\x05\x04\x04", // 𢝯
+ 0x22770: "\x03\x01\x02\x01\x03\x05\x03\x03\x04\x04\x05\x04\x04", // 𢝰
+ 0x22771: "\x03\x03\x02\x04\x03\x01\x02\x03\x04\x04\x05\x04\x04", // 𢝱
+ 0x22772: "\x04\x03\x03\x04\x03\x01\x02\x03\x04\x04\x05\x04\x04", // 𢝲
+ 0x22773: "\x04\x04\x01\x01\x02\x02\x01\x03\x04\x04\x05\x04\x04", // 𢝳
+ 0x22774: "\x04\x04\x02\x01\x02\x05\x02\x02\x01\x04\x05\x04\x04", // 𢝴
+ 0x22775: "\x05\x03\x04\x03\x05\x03\x04\x03\x02\x04\x05\x04\x04", // 𢝵
+ 0x22776: "\x04\x04\x02\x01\x03\x02\x05\x02\x02\x05\x03\x01", // 𢝶
+ 0x22777: "\x04\x04\x02\x01\x05\x03\x05\x03\x02\x05\x01\x01", // 𢝷
+ 0x22778: "\x04\x04\x02\x02\x05\x05\x02\x05\x02\x05\x01", // 𢝸
+ 0x22779: "\x04\x04\x02\x03\x01\x04\x03\x01\x04\x01\x03\x04", // 𢝹
+ 0x2277a: "\x04\x04\x02\x03\x03\x01\x02\x02\x05\x01\x01\x01", // 𢝺
+ 0x2277b: "\x04\x04\x02\x03\x05\x03\x03\x02\x05\x01\x01\x01", // 𢝻
+ 0x2277c: "\x04\x04\x02\x05\x03\x02\x05\x01\x01\x05\x02\x01", // 𢝼
+ 0x2277d: "\x04\x04\x02\x05\x04\x05\x02\x03\x03\x01\x03\x04", // 𢝽
+ 0x2277e: "\x04\x04\x02\x03\x04\x04\x03\x01\x01\x02\x05\x02", // 𢝾
+ 0x2277f: "\x04\x04\x02\x05\x02\x02\x05\x02\x03\x04\x05\x02", // 𢝿
+ 0x22780: "\x03\x05\x05\x01\x01\x03\x01\x03\x04\x04\x05\x04\x04", // 𢞀
+ 0x22781: "\x04\x04\x02\x03\x05\x01\x02\x05\x01\x02\x01\x04", // 𢞁
+ 0x22782: "\x04\x04\x02\x03\x04\x05\x03\x02\x05\x02\x02\x01", // 𢞂
+ 0x22783: "\x04\x04\x02\x05\x05\x04\x04\x04\x04\x01\x02\x01", // 𢞃
+ 0x22784: "\x04\x04\x02\x01\x02\x01\x03\x03\x01\x02\x05\x01", // 𢞄
+ 0x22785: "\x04\x04\x02\x01\x02\x05\x02\x02\x01\x05\x03\x01", // 𢞅
+ 0x22786: "\x04\x04\x02\x04\x01\x04\x03\x01\x03\x03\x03\x03", // 𢞆
+ 0x22787: "\x04\x04\x02\x01\x02\x01\x02\x05\x04\x02\x05\x01", // 𢞇
+ 0x22788: "\x02\x05\x01\x02\x05\x01\x01\x02\x02\x04\x05\x04\x04", // 𢞈
+ 0x22789: "\x04\x04\x01\x02\x05\x01\x02\x05\x01\x04\x05\x04\x04", // 𢞉
+ 0x2278a: "\x04\x04\x02\x05\x02\x02\x05\x01\x05\x04\x05\x02", // 𢞊
+ 0x2278b: "\x04\x04\x02\x01\x01\x03\x04\x02\x05\x01\x04\x05\x04\x04", // 𢞋
+ 0x2278c: "\x04\x04\x02\x03\x02\x01\x01\x01\x05\x01\x01\x03\x05", // 𢞌
+ 0x2278d: "\x01\x02\x02\x05\x01\x02\x05\x05\x01\x05\x04\x05\x04\x04", // 𢞍
+ 0x2278e: "\x04\x04\x02\x01\x02\x02\x01\x03\x03\x05\x01\x01\x02", // 𢞎
+ 0x2278f: "\x04\x04\x02\x04\x04\x05\x02\x05\x01\x03\x02\x05\x01", // 𢞏
+ 0x22790: "\x04\x04\x02\x04\x04\x05\x03\x01\x02\x01\x02\x05\x01", // 𢞐
+ 0x22791: "\x04\x04\x02\x01\x03\x01\x02\x01\x01\x03\x01\x02\x01", // 𢞑
+ 0x22792: "\x03\x04\x01\x02\x03\x05\x04\x03\x05\x05\x04\x04\x05\x04\x04", // 𢞒
+ 0x22793: "\x04\x04\x02\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 𢞓
+ 0x22794: "\x05\x01\x05\x04\x01\x05\x01\x05\x04\x01\x04\x05\x04\x04", // 𢞔
+ 0x22795: "\x04\x04\x02\x04\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 𢞕
+ 0x22796: "\x04\x04\x02\x03\x01\x04\x03\x01\x04\x01\x01\x03\x04", // 𢞖
+ 0x22797: "\x04\x04\x02\x03\x02\x05\x03\x04\x01\x01\x05\x01\x05", // 𢞗
+ 0x22798: "\x01\x03\x02\x05\x01\x01\x03\x04\x01\x05\x04\x05\x04\x04", // 𢞘
+ 0x22799: "\x04\x04\x02\x05\x03\x01\x02\x05\x01\x03\x01\x01\x02", // 𢞙
+ 0x2279a: "\x01\x02\x02\x01\x01\x01\x04\x03\x03\x04\x04\x05\x04\x04", // 𢞚
+ 0x2279b: "\x04\x04\x02\x03\x05\x02\x05\x01\x01\x03\x04\x01\x05", // 𢞛
+ 0x2279c: "\x04\x04\x02\x05\x01\x03\x02\x04\x03\x03\x05\x04\x01", // 𢞜
+ 0x2279d: "\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x02\x04\x04\x04", // 𢞝
+ 0x2279e: "\x04\x04\x02\x04\x03\x01\x02\x03\x04\x04\x05\x04", // 𢞞
+ 0x2279f: "\x04\x04\x02\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 𢞟
+ 0x227a0: "\x04\x04\x02\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 𢞠
+ 0x227a1: "\x04\x04\x02\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01", // 𢞡
+ 0x227a2: "\x04\x01\x03\x05\x01\x01\x02\x03\x04\x04\x05\x04\x04", // 𢞢
+ 0x227a3: "\x03\x02\x01\x03\x05\x04\x04\x03\x03\x04\x04\x05\x04\x04", // 𢞣
+ 0x227a4: "\x03\x02\x05\x02\x02\x01\x05\x03\x04\x04\x04\x05\x04\x04", // 𢞤
+ 0x227a5: "\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04\x04\x05\x04\x04", // 𢞥
+ 0x227a6: "\x04\x04\x02\x03\x02\x01\x05\x01\x01\x02\x05\x01\x01", // 𢞦
+ 0x227a7: "\x04\x04\x02\x01\x02\x02\x01\x03\x05\x02\x05\x01\x01", // 𢞧
+ 0x227a8: "\x01\x02\x01\x02\x02\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 𢞨
+ 0x227a9: "\x04\x04\x05\x03\x01\x02\x01\x02\x05\x01\x04\x05\x04\x04", // 𢞩
+ 0x227aa: "\x03\x05\x03\x02\x05\x02\x04\x01\x01\x02\x01\x04\x05\x04\x04", // 𢞪
+ 0x227ab: "\x03\x02\x02\x05\x01\x01\x03\x05\x03\x03\x04\x05\x04\x04", // 𢞫
+ 0x227ac: "\x04\x04\x02\x03\x02\x05\x01\x01\x05\x04\x04\x04\x04", // 𢞬
+ 0x227ad: "\x03\x05\x03\x05\x02\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 𢞭
+ 0x227ae: "\x04\x04\x02\x02\x05\x03\x04\x02\x05\x02\x05\x01\x01", // 𢞮
+ 0x227af: "\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04\x04\x05\x04\x04", // 𢞯
+ 0x227b0: "\x05\x01\x05\x01\x05\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 𢞰
+ 0x227b1: "\x04\x01\x03\x04\x01\x03\x01\x01\x03\x04\x04\x05\x04\x04", // 𢞱
+ 0x227b2: "\x04\x04\x02\x04\x04\x05\x03\x05\x03\x01\x02\x01\x01", // 𢞲
+ 0x227b3: "\x04\x04\x02\x05\x02\x02\x05\x01\x05\x04\x02\x05\x02", // 𢞳
+ 0x227b4: "\x04\x04\x02\x02\x05\x01\x03\x04\x01\x04\x05\x04\x04", // 𢞴
+ 0x227b5: "\x05\x03\x04\x03\x05\x03\x04\x03\x02\x04\x05\x04\x03\x04", // 𢞵
+ 0x227b6: "\x04\x04\x02\x05\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 𢞶
+ 0x227b7: "\x04\x04\x02\x01\x03\x04\x04\x03\x02\x05\x01\x01\x05", // 𢞷
+ 0x227b8: "\x04\x04\x02\x01\x02\x05\x02\x03\x04\x03\x05\x05\x04", // 𢞸
+ 0x227b9: "\x04\x04\x02\x01\x04\x03\x02\x05\x01\x01\x01\x03\x04", // 𢞹
+ 0x227ba: "\x04\x04\x02\x01\x02\x02\x01\x03\x04\x02\x04\x04\x04", // 𢞺
+ 0x227bb: "\x04\x04\x02\x01\x02\x01\x02\x01\x03\x02\x05\x02\x01", // 𢞻
+ 0x227bc: "\x04\x04\x02\x03\x05\x04\x01\x05\x02\x01\x02\x03\x04", // 𢞼
+ 0x227bd: "\x04\x03\x01\x02\x03\x04\x03\x01\x03\x04\x04\x05\x04\x04", // 𢞽
+ 0x227be: "\x04\x01\x01\x03\x02\x04\x03\x01\x03\x04\x04\x05\x04\x04", // 𢞾
+ 0x227bf: "\x01\x02\x05\x01\x01\x05\x03\x03\x03\x04\x04\x05\x04\x04", // 𢞿
+ 0x227c0: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x05\x04\x04", // 𢟀
+ 0x227c1: "\x03\x03\x05\x04\x01\x04\x03\x05\x05\x04\x04\x05\x04\x04", // 𢟁
+ 0x227c2: "\x03\x02\x03\x05\x04\x01\x02\x03\x04\x04\x05\x04\x04", // 𢟂
+ 0x227c3: "\x01\x02\x01\x04\x05\x04\x04\x05\x05\x02\x03\x05\x02\x03", // 𢟃
+ 0x227c4: "\x01\x03\x02\x05\x02\x02\x04\x05\x04\x04\x05\x02\x01\x01", // 𢟄
+ 0x227c5: "\x03\x02\x02\x03\x05\x04\x03\x03\x03\x04\x05\x04\x04", // 𢟅
+ 0x227c6: "\x03\x05\x03\x02\x05\x01\x01\x02\x01\x01\x04\x05\x04\x04", // 𢟆
+ 0x227c7: "\x05\x03\x01\x01\x03\x01\x01\x03\x04\x05\x04\x05\x04\x04", // 𢟇
+ 0x227c8: "\x04\x04\x02\x01\x02\x01\x03\x05\x04\x04\x05\x04\x04", // 𢟈
+ 0x227c9: "\x04\x04\x02\x01\x02\x02\x03\x04\x01\x02\x05\x01", // 𢟉
+ 0x227ca: "\x04\x04\x02\x03\x01\x02\x02\x01\x01\x01\x05\x03\x04", // 𢟊
+ 0x227cb: "\x04\x04\x02\x03\x02\x05\x01\x05\x01\x04\x05\x04", // 𢟋
+ 0x227cc: "\x04\x04\x02\x03\x04\x01\x02\x03\x04\x03\x05\x05\x04", // 𢟌
+ 0x227cd: "\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x04\x05\x04\x04", // 𢟍
+ 0x227ce: "\x04\x04\x02\x03\x03\x02\x01\x02\x01\x02\x01\x03\x04", // 𢟎
+ 0x227cf: "\x04\x04\x02\x01\x03\x05\x04\x02\x02\x04\x04\x04\x04", // 𢟏
+ 0x227d0: "\x04\x04\x02\x01\x01\x02\x01\x03\x01\x01\x02\x03\x04", // 𢟐
+ 0x227d1: "\x04\x04\x02\x01\x02\x05\x01\x01\x01\x02\x01\x01\x02", // 𢟑
+ 0x227d2: "\x04\x04\x02\x05\x04\x02\x05\x01\x01\x03\x05\x03\x05", // 𢟒
+ 0x227d3: "\x04\x04\x02\x04\x04\x05\x04\x01\x04\x03\x01\x01\x02", // 𢟓
+ 0x227d4: "\x04\x04\x02\x05\x01\x01\x05\x03\x04\x04\x05\x04", // 𢟔
+ 0x227d5: "\x04\x04\x02\x05\x05\x04\x04\x04\x04\x02\x05\x03\x04", // 𢟕
+ 0x227d6: "\x04\x04\x02\x04\x04\x01\x05\x04\x04\x04\x05\x05\x04", // 𢟖
+ 0x227d7: "\x04\x04\x02\x04\x04\x01\x02\x05\x01\x01\x01\x02\x01", // 𢟗
+ 0x227d8: "\x04\x04\x02\x01\x02\x02\x01\x01\x01\x01\x05\x03\x04", // 𢟘
+ 0x227d9: "\x04\x04\x02\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02", // 𢟙
+ 0x227da: "\x04\x04\x02\x04\x01\x05\x02\x05\x01\x02\x05\x01\x01", // 𢟚
+ 0x227db: "\x01\x02\x02\x01\x01\x01\x04\x05\x04\x04\x05\x01\x05\x02", // 𢟛
+ 0x227dc: "\x01\x03\x02\x05\x01\x01\x01\x03\x05\x04\x04\x05\x04\x04", // 𢟜
+ 0x227dd: "\x04\x04\x02\x03\x03\x05\x01\x01\x05\x03\x05\x05\x04", // 𢟝
+ 0x227de: "\x04\x04\x02\x04\x01\x01\x02\x05\x01\x01\x02\x03\x04", // 𢟞
+ 0x227df: "\x04\x04\x02\x01\x03\x02\x05\x01\x01\x01\x05\x03\x04", // 𢟟
+ 0x227e0: "\x04\x04\x02\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𢟠
+ 0x227e1: "\x04\x04\x02\x02\x01\x02\x01\x03\x05\x02\x05\x01\x01\x02", // 𢟡
+ 0x227e2: "\x04\x04\x02\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 𢟢
+ 0x227e3: "\x04\x04\x02\x04\x03\x01\x01\x02\x01\x04\x05\x05\x03\x04", // 𢟣
+ 0x227e4: "\x01\x01\x02\x03\x04\x03\x01\x03\x04\x01\x03\x04\x05\x04\x04", // 𢟤
+ 0x227e5: "\x01\x02\x04\x05\x05\x02\x01\x03\x05\x05\x04\x04\x05\x04\x04", // 𢟥
+ 0x227e6: "\x04\x04\x02\x04\x01\x03\x05\x02\x05\x01\x03\x05\x03\x04", // 𢟦
+ 0x227e7: "\x04\x04\x02\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01", // 𢟧
+ 0x227e8: "\x04\x04\x02\x01\x02\x01\x02\x01\x03\x04\x04\x01\x03\x02", // 𢟨
+ 0x227e9: "\x04\x04\x02\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x01", // 𢟩
+ 0x227ea: "\x05\x01\x01\x05\x04\x01\x05\x03\x05\x04\x05\x04\x04", // 𢟪
+ 0x227eb: "\x04\x04\x02\x04\x04\x05\x02\x05\x01\x01\x04\x01\x03\x04", // 𢟫
+ 0x227ec: "\x05\x01\x03\x01\x01\x04\x03\x03\x04\x05\x04\x04\x05\x04\x04", // 𢟬
+ 0x227ed: "\x04\x04\x02\x04\x04\x05\x01\x01\x03\x05\x03\x01\x03\x04", // 𢟭
+ 0x227ee: "\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04\x04\x05\x04\x04", // 𢟮
+ 0x227ef: "\x01\x02\x01\x03\x05\x01\x02\x01\x03\x05\x04\x04\x05\x04\x04", // 𢟯
+ 0x227f0: "\x04\x04\x02\x04\x01\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 𢟰
+ 0x227f1: "\x04\x04\x02\x04\x03\x01\x01\x03\x04\x02\x04\x01\x03\x04", // 𢟱
+ 0x227f2: "\x01\x03\x01\x01\x05\x03\x04\x01\x02\x04\x04\x05\x04\x04", // 𢟲
+ 0x227f3: "\x04\x04\x02\x04\x01\x05\x05\x04\x04\x01\x03\x04\x01\x02", // 𢟳
+ 0x227f4: "\x04\x04\x02\x04\x01\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 𢟴
+ 0x227f5: "\x04\x04\x02\x03\x01\x01\x01\x02\x01\x01\x01\x01\x02\x01", // 𢟵
+ 0x227f6: "\x04\x04\x02\x02\x01\x05\x03\x01\x05\x03\x05\x03\x03\x04", // 𢟶
+ 0x227f7: "\x04\x04\x02\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 𢟷
+ 0x227f8: "\x04\x04\x02\x05\x01\x01\x01\x02\x01\x02\x05\x03\x04\x01", // 𢟸
+ 0x227f9: "\x04\x04\x02\x01\x03\x01\x01\x05\x03\x04\x01\x02\x04", // 𢟹
+ 0x227fa: "\x04\x04\x02\x05\x04\x01\x05\x04\x01\x03\x04\x02\x03\x04", // 𢟺
+ 0x227fb: "\x01\x02\x01\x03\x02\x03\x04\x03\x01\x03\x04\x04\x05\x04\x04", // 𢟻
+ 0x227fc: "\x04\x04\x02\x01\x02\x03\x04\x01\x02\x03\x04\x03\x05\x04", // 𢟼
+ 0x227fd: "\x02\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04\x04", // 𢟽
+ 0x227fe: "\x04\x04\x02\x01\x02\x01\x03\x01\x02\x01\x03\x01\x01\x05", // 𢟾
+ 0x227ff: "\x04\x04\x02\x02\x05\x02\x02\x01\x03\x03\x03\x05\x03\x04", // 𢟿
+ 0x22800: "\x04\x01\x04\x03\x02\x05\x03\x05\x02\x05\x01\x05\x04\x05\x04\x04", // 𢠀
+ 0x22801: "\x04\x04\x02\x01\x02\x04\x03\x01\x02\x05\x02\x05\x01\x01", // 𢠁
+ 0x22802: "\x04\x04\x02\x01\x02\x05\x01\x02\x03\x04\x03\x01\x03\x04", // 𢠂
+ 0x22803: "\x03\x05\x03\x04\x01\x02\x05\x01\x02\x03\x04\x04\x05\x04\x04", // 𢠃
+ 0x22804: "\x04\x04\x02\x02\x05\x02\x04\x04\x05\x01\x01\x02\x03\x04", // 𢠄
+ 0x22805: "\x04\x04\x02\x01\x01\x01\x03\x04\x03\x02\x01\x05\x01\x01", // 𢠅
+ 0x22806: "\x04\x04\x02\x05\x04\x02\x05\x01\x01\x02\x04\x05\x04", // 𢠆
+ 0x22807: "\x04\x04\x02\x04\x01\x01\x01\x02\x05\x01\x03\x01\x01\x02", // 𢠇
+ 0x22808: "\x04\x04\x02\x03\x04\x05\x03\x02\x05\x01\x01\x01\x03\x04", // 𢠈
+ 0x22809: "\x04\x04\x02\x03\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𢠉
+ 0x2280a: "\x04\x04\x02\x05\x04\x05\x04\x05\x04\x03\x04\x01\x01\x01", // 𢠊
+ 0x2280b: "\x04\x04\x02\x04\x04\x05\x04\x05\x04\x04\x04\x05\x04\x04", // 𢠋
+ 0x2280c: "\x04\x04\x02\x05\x01\x05\x05\x04\x02\x05\x01\x02\x01\x04", // 𢠌
+ 0x2280d: "\x04\x04\x02\x01\x02\x01\x02\x02\x05\x01\x01\x01\x02\x04", // 𢠍
+ 0x2280e: "\x04\x04\x02\x02\x05\x02\x02\x05\x01\x01\x01\x05\x01\x05", // 𢠎
+ 0x2280f: "\x04\x04\x02\x03\x04\x01\x02\x05\x01\x02\x05\x02\x02\x01", // 𢠏
+ 0x22810: "\x04\x04\x02\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𢠐
+ 0x22811: "\x04\x04\x02\x03\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 𢠑
+ 0x22812: "\x04\x03\x01\x02\x03\x04\x05\x03\x02\x05\x01\x04\x05\x04\x04", // 𢠒
+ 0x22813: "\x04\x01\x03\x05\x01\x01\x02\x04\x01\x03\x04\x04\x05\x04\x04", // 𢠓
+ 0x22814: "\x04\x01\x01\x03\x01\x02\x05\x01\x05\x03\x04\x04\x05\x04\x04", // 𢠔
+ 0x22815: "\x04\x04\x02\x01\x02\x01\x02\x05\x01\x01\x01\x04\x05\x04\x04", // 𢠕
+ 0x22816: "\x01\x02\x03\x04\x05\x03\x01\x01\x02\x03\x04\x04\x05\x04\x04", // 𢠖
+ 0x22817: "\x01\x03\x04\x03\x04\x02\x03\x04\x05\x03\x04\x04\x05\x04\x04", // 𢠗
+ 0x22818: "\x01\x02\x03\x04\x03\x05\x04\x01\x02\x03\x04\x04\x05\x04\x04", // 𢠘
+ 0x22819: "\x03\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04\x04\x05\x04\x04", // 𢠙
+ 0x2281a: "\x03\x02\x03\x04\x01\x03\x05\x01\x01\x02\x02\x04\x05\x04\x04", // 𢠚
+ 0x2281b: "\x01\x02\x01\x03\x05\x02\x01\x03\x01\x03\x04\x04\x05\x04\x04", // 𢠛
+ 0x2281c: "\x01\x02\x04\x05\x05\x02\x01\x03\x01\x03\x04\x04\x05\x04\x04", // 𢠜
+ 0x2281d: "\x02\x05\x01\x02\x05\x01\x01\x05\x03\x04\x01\x04\x05\x04\x04", // 𢠝
+ 0x2281e: "\x05\x02\x03\x05\x02\x03\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 𢠞
+ 0x2281f: "\x04\x04\x02\x01\x02\x01\x02\x01\x03\x05\x03\x03\x03\x04", // 𢠟
+ 0x22820: "\x04\x04\x02\x04\x04\x05\x01\x01\x03\x05\x02\x01\x05\x04", // 𢠠
+ 0x22821: "\x04\x04\x02\x04\x04\x05\x04\x03\x03\x04\x04\x03\x03\x04", // 𢠡
+ 0x22822: "\x04\x04\x02\x05\x01\x03\x01\x01\x02\x03\x04\x01\x02\x04", // 𢠢
+ 0x22823: "\x04\x04\x02\x05\x02\x01\x02\x05\x01\x01\x02\x03\x04", // 𢠣
+ 0x22824: "\x04\x04\x02\x05\x01\x05\x04\x03\x02\x05\x01\x01\x01\x02", // 𢠤
+ 0x22825: "\x04\x04\x02\x01\x02\x02\x05\x01\x01\x01\x02\x03\x01\x05", // 𢠥
+ 0x22826: "\x04\x04\x02\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𢠦
+ 0x22827: "\x04\x04\x02\x03\x02\x05\x03\x04\x01\x03\x04\x03\x05\x04", // 𢠧
+ 0x22828: "\x04\x04\x02\x03\x01\x05\x05\x04\x01\x04\x03\x01\x03\x04", // 𢠨
+ 0x22829: "\x04\x04\x02\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04", // 𢠩
+ 0x2282a: "\x04\x04\x02\x02\x05\x02\x02\x01\x01\x02\x01\x01\x02\x01", // 𢠪
+ 0x2282b: "\x04\x04\x02\x04\x01\x03\x01\x02\x02\x01\x04\x04\x04\x04", // 𢠫
+ 0x2282c: "\x05\x01\x03\x01\x03\x04\x02\x05\x01\x05\x04\x04\x05\x04\x04", // 𢠬
+ 0x2282d: "\x04\x04\x02\x04\x04\x05\x02\x01\x01\x02\x03\x04\x05\x04", // 𢠭
+ 0x2282e: "\x04\x04\x02\x02\x05\x01\x02\x05\x01\x02\x04\x01\x03\x04", // 𢠮
+ 0x2282f: "\x04\x04\x02\x04\x05\x01\x01\x05\x04\x03\x05\x01\x01", // 𢠯
+ 0x22830: "\x04\x04\x02\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04", // 𢠰
+ 0x22831: "\x01\x02\x01\x03\x02\x03\x04\x05\x03\x02\x05\x04\x04\x05\x04\x04", // 𢠱
+ 0x22832: "\x04\x04\x02\x04\x04\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 𢠲
+ 0x22833: "\x04\x04\x02\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04", // 𢠳
+ 0x22834: "\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02\x04\x05\x04\x04", // 𢠴
+ 0x22835: "\x04\x04\x02\x02\x04\x03\x02\x05\x02\x05\x01\x03\x01\x03\x04", // 𢠵
+ 0x22836: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x01\x02\x04\x05\x04\x04", // 𢠶
+ 0x22837: "\x04\x04\x02\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𢠷
+ 0x22838: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04\x04", // 𢠸
+ 0x22839: "\x04\x04\x02\x01\x02\x02\x01\x01\x01\x03\x04\x03\x03\x01\x02", // 𢠹
+ 0x2283a: "\x04\x04\x02\x05\x04\x03\x03\x04\x05\x01\x05\x03\x05\x05\x04", // 𢠺
+ 0x2283b: "\x04\x04\x02\x05\x01\x01\x02\x04\x01\x03\x04\x04\x05\x04", // 𢠻
+ 0x2283c: "\x04\x04\x02\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𢠼
+ 0x2283d: "\x04\x04\x02\x03\x05\x02\x05\x02\x01\x03\x05\x03\x03\x03\x04", // 𢠽
+ 0x2283e: "\x03\x02\x05\x01\x01\x01\x03\x01\x02\x02\x05\x01\x04\x05\x04\x04", // 𢠾
+ 0x2283f: "\x04\x04\x02\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04", // 𢠿
+ 0x22840: "\x04\x04\x02\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𢡀
+ 0x22841: "\x04\x04\x02\x03\x04\x01\x02\x05\x01\x05\x04\x01\x05\x04\x01", // 𢡁
+ 0x22842: "\x04\x04\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03\x04\x05\x04\x04", // 𢡂
+ 0x22843: "\x04\x01\x04\x03\x01\x02\x05\x01\x02\x02\x05\x01\x04\x05\x04\x04", // 𢡃
+ 0x22844: "\x04\x04\x02\x03\x01\x03\x04\x03\x01\x03\x04\x02\x05\x01\x01", // 𢡄
+ 0x22845: "\x04\x04\x02\x03\x01\x01\x01\x02\x01\x01\x01\x01\x02\x03\x04", // 𢡅
+ 0x22846: "\x01\x03\x05\x03\x03\x03\x04\x05\x01\x01\x05\x03\x04\x04\x05\x04\x04", // 𢡆
+ 0x22847: "\x04\x04\x02\x01\x02\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 𢡇
+ 0x22848: "\x05\x02\x02\x05\x02\x01\x01\x02\x03\x04\x05\x04\x04\x05\x04\x04", // 𢡈
+ 0x22849: "\x04\x04\x02\x05\x03\x04\x02\x01\x02\x01\x05\x03\x04\x02\x01\x02\x01", // 𢡉
+ 0x2284a: "\x04\x04\x02\x01\x01\x03\x04\x01\x01\x03\x04\x04\x05\x04\x04", // 𢡊
+ 0x2284b: "\x04\x04\x02\x03\x02\x05\x01\x01\x01\x01\x01\x01\x01\x01\x02", // 𢡋
+ 0x2284c: "\x04\x04\x02\x05\x05\x04\x01\x04\x02\x05\x01\x02\x05\x03\x01", // 𢡌
+ 0x2284d: "\x04\x04\x02\x01\x02\x02\x01\x01\x02\x05\x04\x03\x01\x02", // 𢡍
+ 0x2284e: "\x04\x04\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04\x04\x05\x04", // 𢡎
+ 0x2284f: "\x04\x04\x02\x04\x01\x03\x05\x04\x03\x05\x04\x03\x05\x03\x04", // 𢡏
+ 0x22850: "\x04\x04\x02\x04\x01\x03\x05\x03\x04\x01\x02\x02\x01\x01\x01", // 𢡐
+ 0x22851: "\x02\x05\x01\x01\x01\x02\x03\x04\x03\x01\x03\x04\x04\x05\x04\x04", // 𢡑
+ 0x22852: "\x04\x04\x02\x04\x01\x03\x05\x01\x01\x03\x04\x02\x01\x02\x01", // 𢡒
+ 0x22853: "\x04\x04\x02\x03\x05\x02\x05\x03\x04\x01\x05\x04\x04\x04\x04", // 𢡓
+ 0x22854: "\x03\x02\x05\x03\x04\x01\x03\x02\x05\x03\x04\x01\x04\x05\x04\x04", // 𢡔
+ 0x22855: "\x03\x02\x01\x05\x02\x05\x01\x01\x03\x05\x03\x03\x04\x05\x04\x04", // 𢡕
+ 0x22856: "\x04\x04\x02\x05\x04\x05\x04\x05\x04\x03\x04\x02\x04\x04\x04", // 𢡖
+ 0x22857: "\x01\x02\x01\x02\x02\x05\x01\x01\x03\x05\x01\x01\x04\x05\x04\x04", // 𢡗
+ 0x22858: "\x01\x02\x01\x02\x02\x02\x05\x01\x02\x01\x05\x04\x04\x05\x04\x04", // 𢡘
+ 0x22859: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x04\x05\x03\x04\x05\x04\x04", // 𢡙
+ 0x2285a: "\x04\x04\x02\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01", // 𢡚
+ 0x2285b: "\x04\x04\x01\x01\x02\x02\x01\x02\x05\x02\x05\x02\x04\x05\x04\x04", // 𢡛
+ 0x2285c: "\x04\x04\x02\x01\x02\x01\x01\x01\x02\x03\x04\x03\x05\x03\x04", // 𢡜
+ 0x2285d: "\x04\x04\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x03\x04", // 𢡝
+ 0x2285e: "\x04\x04\x02\x05\x01\x01\x02\x02\x05\x01\x01\x01\x01\x02\x01", // 𢡞
+ 0x2285f: "\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x03\x04\x04\x05\x04\x04", // 𢡟
+ 0x22860: "\x04\x04\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05\x03\x04", // 𢡠
+ 0x22861: "\x04\x04\x02\x01\x02\x01\x02\x05\x01\x01\x01\x04\x05\x04\x04", // 𢡡
+ 0x22862: "\x05\x02\x01\x03\x01\x02\x01\x03\x05\x04\x01\x04\x05\x04\x04", // 𢡢
+ 0x22863: "\x05\x02\x03\x04\x01\x01\x02\x03\x04\x03\x04\x02\x04\x04\x04", // 𢡣
+ 0x22864: "\x04\x04\x02\x01\x02\x02\x01\x01\x02\x05\x03\x04\x01\x01\x02", // 𢡤
+ 0x22865: "\x05\x01\x01\x02\x02\x05\x01\x01\x04\x01\x03\x04\x04\x05\x04\x04", // 𢡥
+ 0x22866: "\x04\x04\x02\x02\x05\x02\x04\x04\x05\x03\x05\x04\x02\x05\x01", // 𢡦
+ 0x22867: "\x04\x04\x02\x05\x05\x04\x05\x05\x04\x01\x03\x04\x05\x03\x04", // 𢡧
+ 0x22868: "\x04\x04\x02\x03\x02\x05\x01\x02\x01\x03\x05\x04\x04\x01\x02", // 𢡨
+ 0x22869: "\x04\x04\x02\x03\x01\x04\x03\x01\x04\x01\x02\x01\x01\x02\x04", // 𢡩
+ 0x2286a: "\x01\x02\x01\x01\x01\x05\x04\x01\x01\x02\x03\x04\x04\x05\x04\x04", // 𢡪
+ 0x2286b: "\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x04\x05\x04\x04", // 𢡫
+ 0x2286c: "\x02\x01\x02\x01\x02\x01\x02\x01\x02\x01\x02\x01\x04\x05\x04\x04", // 𢡬
+ 0x2286d: "\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x03\x04\x04\x05\x04\x04", // 𢡭
+ 0x2286e: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x03\x04\x04\x05\x04\x04", // 𢡮
+ 0x2286f: "\x03\x04\x01\x03\x03\x05\x04\x01\x03\x05\x05\x04\x04\x05\x04\x04", // 𢡯
+ 0x22870: "\x01\x01\x03\x04\x02\x05\x01\x01\x03\x05\x01\x01\x04\x05\x04\x04", // 𢡰
+ 0x22871: "\x01\x02\x01\x04\x05\x01\x03\x05\x03\x05\x05\x04\x04\x05\x04\x04", // 𢡱
+ 0x22872: "\x01\x02\x02\x01\x01\x01\x03\x01\x02\x02\x05\x01\x04\x05\x04\x04", // 𢡲
+ 0x22873: "\x01\x02\x01\x02\x01\x05\x02\x05\x02\x05\x01\x01\x04\x05\x04\x04", // 𢡳
+ 0x22874: "\x01\x02\x05\x01\x01\x02\x01\x04\x05\x04\x05\x02\x04\x05\x04\x04", // 𢡴
+ 0x22875: "\x01\x03\x02\x05\x02\x02\x01\x03\x02\x05\x02\x02\x04\x05\x04\x04", // 𢡵
+ 0x22876: "\x01\x03\x04\x04\x03\x01\x01\x02\x05\x01\x01\x02\x04\x05\x04\x04", // 𢡶
+ 0x22877: "\x01\x04\x01\x02\x03\x04\x03\x01\x03\x04\x01\x03\x04\x05\x04\x04", // 𢡷
+ 0x22878: "\x02\x05\x01\x01\x01\x04\x04\x01\x02\x03\x04\x03\x04\x05\x04\x04", // 𢡸
+ 0x22879: "\x03\x03\x02\x03\x01\x02\x05\x01\x01\x02\x01\x01\x04\x05\x04\x04", // 𢡹
+ 0x2287a: "\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04\x04\x05\x04\x04", // 𢡺
+ 0x2287b: "\x05\x01\x01\x02\x02\x05\x01\x01\x04\x01\x03\x04\x04\x05\x04\x04", // 𢡻
+ 0x2287c: "\x04\x04\x02\x01\x03\x02\x05\x02\x02\x01\x03\x02\x05\x02\x02", // 𢡼
+ 0x2287d: "\x04\x04\x02\x03\x04\x03\x04\x03\x04\x03\x04\x02\x05\x01\x01", // 𢡽
+ 0x2287e: "\x04\x04\x02\x04\x04\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01", // 𢡾
+ 0x2287f: "\x04\x04\x02\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04", // 𢡿
+ 0x22880: "\x04\x04\x02\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01", // 𢢀
+ 0x22881: "\x04\x04\x02\x05\x01\x03\x05\x02\x01\x05\x02\x01\x05\x02\x01", // 𢢁
+ 0x22882: "\x04\x04\x02\x05\x05\x04\x04\x04\x04\x01\x02\x01\x02\x05\x01", // 𢢂
+ 0x22883: "\x03\x01\x02\x03\x04\x04\x05\x04\x03\x04\x03\x04\x02\x04\x04\x04", // 𢢃
+ 0x22884: "\x04\x04\x02\x02\x05\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𢢄
+ 0x22885: "\x04\x04\x02\x01\x02\x02\x05\x01\x01\x01\x02\x03\x05\x01\x01", // 𢢅
+ 0x22886: "\x04\x04\x02\x04\x03\x01\x01\x01\x02\x04\x03\x01\x02\x05\x01", // 𢢆
+ 0x22887: "\x04\x04\x02\x02\x05\x01\x01\x01\x02\x02\x01\x01\x01\x05\x04", // 𢢇
+ 0x22888: "\x04\x04\x02\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x04\x04", // 𢢈
+ 0x22889: "\x04\x04\x01\x01\x02\x02\x01\x03\x02\x05\x01\x04\x05\x04\x04", // 𢢉
+ 0x2288a: "\x04\x04\x02\x05\x02\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 𢢊
+ 0x2288b: "\x04\x04\x02\x02\x05\x02\x04\x01\x04\x03\x01\x03\x03\x03\x03", // 𢢋
+ 0x2288c: "\x02\x04\x03\x02\x05\x02\x05\x01\x03\x01\x03\x04\x04\x05\x04\x04", // 𢢌
+ 0x2288d: "\x03\x05\x04\x04\x03\x01\x01\x01\x03\x05\x03\x04\x04\x05\x04\x04", // 𢢍
+ 0x2288e: "\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x04\x05\x04\x04", // 𢢎
+ 0x2288f: "\x04\x04\x02\x04\x03\x01\x02\x02\x04\x03\x01\x02\x05\x01\x01", // 𢢏
+ 0x22890: "\x03\x05\x03\x01\x02\x02\x02\x04\x05\x02\x05\x02\x04\x05\x04\x04", // 𢢐
+ 0x22891: "\x03\x02\x02\x03\x05\x04\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 𢢑
+ 0x22892: "\x04\x04\x02\x04\x04\x05\x03\x05\x04\x01\x03\x04\x03\x04\x01\x02", // 𢢒
+ 0x22893: "\x04\x04\x02\x04\x01\x05\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 𢢓
+ 0x22894: "\x04\x04\x02\x02\x05\x01\x01\x02\x05\x02\x02\x01\x04\x01\x05\x03", // 𢢔
+ 0x22895: "\x04\x04\x02\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x03\x04\x04", // 𢢕
+ 0x22896: "\x04\x04\x02\x01\x02\x01\x02\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 𢢖
+ 0x22897: "\x04\x04\x02\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 𢢗
+ 0x22898: "\x04\x04\x02\x04\x01\x03\x05\x02\x02\x01\x01\x05\x04\x04\x04\x04", // 𢢘
+ 0x22899: "\x04\x04\x02\x02\x01\x02\x05\x03\x04\x03\x04\x01\x01\x02\x03\x04", // 𢢙
+ 0x2289a: "\x04\x04\x02\x02\x05\x01\x01\x03\x05\x03\x04\x05\x03\x05\x03\x04", // 𢢚
+ 0x2289b: "\x04\x04\x02\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x05\x03", // 𢢛
+ 0x2289c: "\x04\x04\x02\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x02\x03\x04", // 𢢜
+ 0x2289d: "\x04\x04\x02\x04\x03\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04\x04", // 𢢝
+ 0x2289e: "\x01\x02\x05\x01\x01\x01\x02\x05\x02\x03\x05\x05\x04\x04\x05\x04\x04", // 𢢞
+ 0x2289f: "\x04\x04\x02\x05\x02\x02\x05\x02\x05\x02\x02\x05\x02\x05\x02\x02", // 𢢟
+ 0x228a0: "\x05\x02\x01\x03\x01\x02\x01\x01\x03\x01\x02\x01\x04\x05\x04\x04", // 𢢠
+ 0x228a1: "\x05\x02\x02\x05\x02\x04\x01\x05\x03\x03\x01\x03\x04\x04\x05\x04\x04", // 𢢡
+ 0x228a2: "\x01\x02\x01\x04\x05\x01\x01\x02\x01\x03\x05\x05\x04\x04\x05\x04\x04", // 𢢢
+ 0x228a3: "\x03\x05\x03\x05\x01\x01\x02\x05\x03\x03\x01\x01\x02\x04\x05\x04\x04", // 𢢣
+ 0x228a4: "\x02\x05\x01\x01\x03\x05\x01\x01\x01\x02\x02\x05\x01\x04\x05\x04\x04", // 𢢤
+ 0x228a5: "\x04\x04\x02\x02\x05\x01\x01\x01\x03\x04\x02\x02\x04\x05\x04\x04", // 𢢥
+ 0x228a6: "\x04\x01\x02\x05\x01\x02\x01\x05\x05\x04\x05\x05\x04\x04\x05\x04\x04", // 𢢦
+ 0x228a7: "\x05\x01\x05\x01\x02\x01\x01\x02\x01\x02\x05\x01\x04\x05\x04\x04", // 𢢧
+ 0x228a8: "\x02\x05\x01\x01\x02\x01\x01\x03\x05\x04\x01\x05\x02\x04\x05\x04\x04", // 𢢨
+ 0x228a9: "\x04\x04\x02\x01\x02\x02\x03\x05\x02\x05\x01\x03\x01\x03\x04", // 𢢩
+ 0x228aa: "\x04\x04\x02\x02\x05\x01\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01", // 𢢪
+ 0x228ab: "\x01\x02\x03\x04\x01\x01\x01\x03\x04\x02\x05\x01\x01\x04\x05\x04\x04", // 𢢫
+ 0x228ac: "\x04\x04\x02\x03\x04\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 𢢬
+ 0x228ad: "\x01\x01\x02\x01\x03\x04\x01\x02\x05\x01\x01\x02\x02\x04\x05\x04\x04", // 𢢭
+ 0x228ae: "\x04\x04\x02\x01\x02\x01\x02\x03\x04\x01\x02\x01\x01\x01\x05\x04", // 𢢮
+ 0x228af: "\x04\x04\x02\x02\x05\x02\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 𢢯
+ 0x228b0: "\x04\x04\x02\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x04", // 𢢰
+ 0x228b1: "\x03\x02\x02\x03\x01\x03\x04\x05\x04\x01\x05\x04\x01\x04\x05\x04\x04", // 𢢱
+ 0x228b2: "\x04\x04\x02\x01\x02\x01\x02\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 𢢲
+ 0x228b3: "\x04\x04\x02\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x02\x01\x01", // 𢢳
+ 0x228b4: "\x04\x04\x02\x03\x05\x05\x01\x01\x03\x01\x03\x04\x04\x04\x04\x04", // 𢢴
+ 0x228b5: "\x04\x04\x01\x01\x03\x03\x02\x05\x01\x01\x02\x03\x04\x04\x05\x04\x04", // 𢢵
+ 0x228b6: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x03\x05\x03\x04\x04\x05\x04\x04", // 𢢶
+ 0x228b7: "\x05\x03\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x05\x04\x04", // 𢢷
+ 0x228b8: "\x02\x05\x05\x02\x05\x02\x05\x01\x01\x05\x03\x05\x04\x05\x04\x04", // 𢢸
+ 0x228b9: "\x03\x01\x02\x01\x03\x01\x02\x03\x04\x02\x05\x01\x01\x04\x05\x04\x04", // 𢢹
+ 0x228ba: "\x04\x04\x02\x01\x02\x05\x01\x02\x02\x04\x05\x02\x05\x01\x01\x01", // 𢢺
+ 0x228bb: "\x04\x04\x02\x01\x02\x05\x02\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𢢻
+ 0x228bc: "\x04\x04\x02\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04\x02\x02", // 𢢼
+ 0x228bd: "\x04\x04\x02\x03\x04\x04\x03\x05\x03\x03\x05\x01\x01\x05\x03\x04", // 𢢽
+ 0x228be: "\x04\x04\x02\x04\x01\x03\x05\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𢢾
+ 0x228bf: "\x01\x02\x01\x04\x05\x05\x02\x01\x03\x05\x05\x04\x04\x05\x04\x04", // 𢢿
+ 0x228c0: "\x04\x04\x02\x01\x03\x02\x05\x01\x02\x05\x01\x01\x01\x01\x02\x04", // 𢣀
+ 0x228c1: "\x04\x04\x02\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04\x04", // 𢣁
+ 0x228c2: "\x04\x04\x02\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01\x05\x03\x04", // 𢣂
+ 0x228c3: "\x04\x04\x02\x01\x03\x02\x05\x01\x04\x01\x03\x04\x03\x04\x01\x02", // 𢣃
+ 0x228c4: "\x04\x04\x02\x02\x05\x01\x02\x02\x05\x02\x05\x01\x04\x05\x04", // 𢣄
+ 0x228c5: "\x04\x04\x02\x01\x02\x02\x04\x04\x01\x03\x05\x04\x02\x05\x01", // 𢣅
+ 0x228c6: "\x04\x04\x02\x02\x05\x02\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 𢣆
+ 0x228c7: "\x04\x04\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05\x03\x04", // 𢣇
+ 0x228c8: "\x04\x04\x02\x05\x05\x05\x03\x02\x05\x03\x04\x01\x03\x01\x03\x04", // 𢣈
+ 0x228c9: "\x02\x05\x01\x01\x05\x04\x04\x05\x02\x05\x01\x05\x01\x04\x05\x04\x04", // 𢣉
+ 0x228ca: "\x04\x04\x02\x03\x04\x04\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 𢣊
+ 0x228cb: "\x01\x02\x01\x02\x03\x05\x01\x02\x05\x01\x01\x02\x04\x04\x05\x04\x04", // 𢣋
+ 0x228cc: "\x04\x04\x02\x03\x04\x04\x04\x04\x04\x05\x02\x03\x05\x03\x05\x04", // 𢣌
+ 0x228cd: "\x03\x02\x01\x02\x01\x02\x03\x05\x03\x05\x01\x01\x02\x04\x05\x04\x04", // 𢣍
+ 0x228ce: "\x04\x04\x02\x05\x05\x04\x05\x05\x04\x01\x05\x05\x04\x05\x05\x04\x05", // 𢣎
+ 0x228cf: "\x04\x04\x02\x01\x02\x01\x02\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 𢣏
+ 0x228d0: "\x04\x04\x02\x04\x04\x05\x01\x02\x03\x03\x02\x05\x01\x01\x01\x03\x04", // 𢣐
+ 0x228d1: "\x04\x01\x04\x03\x01\x01\x03\x04\x01\x04\x03\x01\x01\x02\x04\x05\x04\x04", // 𢣑
+ 0x228d2: "\x04\x04\x02\x01\x01\x05\x04\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𢣒
+ 0x228d3: "\x01\x03\x02\x05\x02\x02\x01\x03\x04\x01\x05\x05\x04\x04\x05\x04\x04", // 𢣓
+ 0x228d4: "\x04\x04\x02\x03\x02\x05\x01\x01\x01\x04\x04\x05\x03\x05\x04\x01\x05\x03", // 𢣔
+ 0x228d5: "\x01\x05\x03\x01\x01\x03\x04\x05\x04\x05\x02\x01\x03\x04\x04\x05\x04\x04", // 𢣕
+ 0x228d6: "\x04\x04\x02\x01\x03\x01\x02\x01\x01\x03\x01\x02\x01\x04\x05\x04\x04", // 𢣖
+ 0x228d7: "\x04\x04\x02\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x05\x05\x04", // 𢣗
+ 0x228d8: "\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01\x04\x05\x04\x04", // 𢣘
+ 0x228d9: "\x04\x04\x05\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x01\x01\x02\x01", // 𢣙
+ 0x228da: "\x04\x04\x02\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𢣚
+ 0x228db: "\x04\x04\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01\x05\x03", // 𢣛
+ 0x228dc: "\x04\x04\x02\x03\x03\x03\x02\x01\x03\x04\x01\x02\x05\x01\x01\x01\x02", // 𢣜
+ 0x228dd: "\x04\x04\x02\x01\x03\x05\x03\x03\x03\x04\x01\x03\x05\x03\x03\x03\x04", // 𢣝
+ 0x228de: "\x01\x02\x01\x04\x05\x02\x05\x01\x02\x01\x04\x04\x05\x04\x04\x03\x05\x04", // 𢣞
+ 0x228df: "\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04\x02\x04\x04\x04", // 𢣟
+ 0x228e0: "\x03\x05\x04\x01\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 𢣠
+ 0x228e1: "\x01\x04\x03\x01\x02\x03\x04\x01\x04\x03\x01\x02\x03\x04\x04\x05\x04\x04", // 𢣡
+ 0x228e2: "\x02\x05\x01\x02\x01\x04\x05\x04\x04\x05\x03\x05\x03\x05\x03", // 𢣢
+ 0x228e3: "\x04\x04\x01\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04\x04\x05\x04\x04", // 𢣣
+ 0x228e4: "\x04\x04\x02\x03\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𢣤
+ 0x228e5: "\x04\x04\x02\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02\x04\x05\x04\x04", // 𢣥
+ 0x228e6: "\x04\x04\x02\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02", // 𢣦
+ 0x228e7: "\x04\x04\x02\x02\x01\x05\x03\x01\x05\x02\x02\x04\x03\x01\x01\x01\x05", // 𢣧
+ 0x228e8: "\x04\x04\x02\x02\x05\x02\x01\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04", // 𢣨
+ 0x228e9: "\x04\x04\x02\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x01\x05\x03\x04", // 𢣩
+ 0x228ea: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x03\x03\x03\x04\x05\x04\x04", // 𢣪
+ 0x228eb: "\x04\x01\x03\x02\x03\x04\x04\x05\x04\x04\x04\x05\x04\x04\x04\x05\x04\x04", // 𢣫
+ 0x228ec: "\x01\x02\x03\x04\x02\x05\x01\x02\x05\x02\x01\x02\x03\x04\x04\x05\x04\x04", // 𢣬
+ 0x228ed: "\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04\x04\x05\x04\x04", // 𢣭
+ 0x228ee: "\x02\x05\x01\x01\x04\x04\x05\x05\x03\x01\x03\x01\x03\x05\x04\x05\x04\x04", // 𢣮
+ 0x228ef: "\x01\x02\x01\x04\x05\x01\x01\x02\x03\x04\x03\x05\x05\x04\x04\x05\x04\x04", // 𢣯
+ 0x228f0: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x01\x05\x03\x04\x04\x05\x04\x04", // 𢣰
+ 0x228f1: "\x01\x02\x05\x01\x02\x03\x04\x01\x02\x05\x01\x02\x03\x04\x04\x05\x04\x04", // 𢣱
+ 0x228f2: "\x02\x05\x01\x02\x01\x05\x03\x04\x05\x04\x04\x02\x05\x01\x02\x01\x05\x03", // 𢣲
+ 0x228f3: "\x04\x05\x04\x04\x04\x05\x04\x04\x04\x05\x04\x04\x01\x03\x04\x05\x03\x04", // 𢣳
+ 0x228f4: "\x04\x04\x02\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04\x04\x03\x03\x04", // 𢣴
+ 0x228f5: "\x04\x04\x02\x01\x03\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x04", // 𢣵
+ 0x228f6: "\x04\x04\x02\x04\x03\x03\x04\x04\x03\x03\x04\x03\x05\x04\x01\x05\x02", // 𢣶
+ 0x228f7: "\x04\x04\x02\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𢣷
+ 0x228f8: "\x04\x04\x02\x04\x01\x01\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01", // 𢣸
+ 0x228f9: "\x04\x04\x02\x03\x02\x01\x01\x02\x05\x01\x01\x05\x01\x01\x01\x03\x04", // 𢣹
+ 0x228fa: "\x04\x04\x02\x05\x01\x01\x02\x01\x04\x04\x04\x04\x02\x05\x02\x02\x01", // 𢣺
+ 0x228fb: "\x04\x04\x02\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x03\x02\x05\x01", // 𢣻
+ 0x228fc: "\x04\x04\x02\x04\x04\x05\x03\x05\x04\x01\x05\x04\x01\x01\x02\x03\x04", // 𢣼
+ 0x228fd: "\x04\x01\x03\x02\x05\x01\x01\x03\x05\x04\x01\x01\x03\x04\x04\x04\x05\x04\x04", // 𢣽
+ 0x228fe: "\x04\x04\x02\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x03\x01\x01\x02", // 𢣾
+ 0x228ff: "\x04\x04\x02\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 𢣿
+ 0x22900: "\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x01\x03\x04\x04\x05\x04\x04", // 𢤀
+ 0x22901: "\x03\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x04\x05\x04\x04", // 𢤁
+ 0x22902: "\x03\x01\x02\x03\x04\x03\x05\x03\x03\x04\x02\x04\x01\x03\x04\x04\x05\x04\x04", // 𢤂
+ 0x22903: "\x02\x05\x01\x01\x01\x01\x02\x01\x02\x01\x03\x02\x05\x01\x05\x04\x05\x04\x04", // 𢤃
+ 0x22904: "\x04\x04\x02\x01\x02\x01\x02\x03\x02\x05\x03\x03\x04\x01\x04\x05\x04\x04", // 𢤄
+ 0x22905: "\x02\x01\x03\x05\x04\x01\x02\x02\x01\x03\x05\x04\x05\x02\x05\x02\x04\x05\x04\x04", // 𢤅
+ 0x22906: "\x04\x04\x02\x01\x03\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𢤆
+ 0x22907: "\x04\x04\x02\x02\x05\x02\x02\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𢤇
+ 0x22908: "\x04\x04\x02\x04\x01\x02\x05\x01\x02\x05\x01\x01\x02\x01\x02\x01\x01\x02", // 𢤈
+ 0x22909: "\x03\x01\x04\x03\x01\x04\x05\x01\x05\x01\x02\x01\x01\x02\x01\x04\x05\x04\x04", // 𢤉
+ 0x2290a: "\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01\x04\x05\x04\x04\x05\x04\x04", // 𢤊
+ 0x2290b: "\x04\x04\x02\x01\x02\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x01\x03\x04", // 𢤋
+ 0x2290c: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x01\x05\x02\x05\x01\x04\x05\x04\x04", // 𢤌
+ 0x2290d: "\x01\x02\x02\x01\x01\x02\x05\x03\x04\x03\x04\x01\x03\x04\x04\x04\x05\x04\x04", // 𢤍
+ 0x2290e: "\x01\x02\x01\x02\x05\x01\x01\x01\x02\x02\x01\x01\x01\x05\x04\x04\x05\x04\x04", // 𢤎
+ 0x2290f: "\x01\x01\x02\x05\x02\x02\x01\x01\x02\x05\x01\x02\x05\x01\x02\x04\x05\x04\x04", // 𢤏
+ 0x22910: "\x03\x05\x04\x05\x03\x03\x04\x01\x01\x02\x04\x03\x01\x02\x02\x04\x05\x04\x04", // 𢤐
+ 0x22911: "\x04\x04\x05\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01\x04\x05\x04\x04", // 𢤑
+ 0x22912: "\x03\x02\x01\x01\x05\x01\x01\x03\x02\x01\x01\x05\x01\x01\x02\x04\x05\x04\x04", // 𢤒
+ 0x22913: "\x04\x04\x02\x01\x04\x05\x02\x04\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01", // 𢤓
+ 0x22914: "\x01\x03\x05\x04\x01\x02\x02\x01\x03\x05\x04\x05\x02\x05\x02\x04\x05\x04\x04", // 𢤔
+ 0x22915: "\x02\x01\x03\x05\x04\x05\x04\x02\x01\x01\x01\x02\x01\x01\x01\x04\x05\x04\x04", // 𢤕
+ 0x22916: "\x02\x05\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01\x04\x05\x04\x04", // 𢤖
+ 0x22917: "\x04\x04\x02\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𢤗
+ 0x22918: "\x01\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x04\x05\x04\x04", // 𢤘
+ 0x22919: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x02\x05\x01\x05\x04\x04\x05\x04\x04", // 𢤙
+ 0x2291a: "\x04\x04\x02\x05\x04\x05\x04\x02\x05\x01\x01\x04\x01\x02\x01\x05\x03\x04", // 𢤚
+ 0x2291b: "\x04\x04\x02\x02\x05\x02\x02\x01\x05\x04\x02\x05\x01\x01\x03\x05\x03\x05", // 𢤛
+ 0x2291c: "\x04\x04\x02\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x03\x04\x05\x02", // 𢤜
+ 0x2291d: "\x04\x04\x02\x03\x01\x04\x03\x01\x04\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 𢤝
+ 0x2291e: "\x04\x04\x02\x01\x02\x05\x01\x02\x05\x05\x04\x02\x05\x01\x01\x01\x03\x04", // 𢤞
+ 0x2291f: "\x04\x04\x02\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x01\x01\x05\x03\x04", // 𢤟
+ 0x22920: "\x04\x04\x02\x01\x01\x03\x04\x01\x01\x03\x04\x01\x02\x05\x01\x01\x01\x02", // 𢤠
+ 0x22921: "\x04\x04\x02\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01", // 𢤡
+ 0x22922: "\x04\x04\x02\x01\x02\x01\x03\x04\x01\x02\x01\x03\x05\x04\x04\x04\x04\x04", // 𢤢
+ 0x22923: "\x04\x04\x02\x03\x01\x04\x03\x01\x04\x04\x03\x01\x02\x05\x01\x01\x02\x02", // 𢤣
+ 0x22924: "\x04\x04\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01\x04\x05\x04\x04", // 𢤤
+ 0x22925: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x01\x03\x05\x03\x04\x04\x05\x04\x04", // 𢤥
+ 0x22926: "\x04\x04\x02\x01\x02\x01\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𢤦
+ 0x22927: "\x03\x04\x04\x03\x05\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04\x04", // 𢤧
+ 0x22928: "\x04\x04\x02\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x02\x05\x01\x02\x01\x04", // 𢤨
+ 0x22929: "\x04\x04\x02\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 𢤩
+ 0x2292a: "\x04\x04\x02\x04\x04\x05\x04\x03\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 𢤪
+ 0x2292b: "\x04\x04\x02\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04\x01\x01\x02", // 𢤫
+ 0x2292c: "\x04\x04\x02\x03\x02\x01\x01\x01\x05\x03\x05\x01\x01\x01\x03\x04\x01\x01\x02", // 𢤬
+ 0x2292d: "\x04\x04\x02\x04\x01\x03\x04\x01\x02\x05\x02\x05\x01\x01\x03\x01\x02\x03\x04", // 𢤭
+ 0x2292e: "\x04\x04\x02\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x02\x05", // 𢤮
+ 0x2292f: "\x04\x04\x02\x02\x01\x03\x05\x04\x05\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𢤯
+ 0x22930: "\x02\x01\x03\x05\x04\x05\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01\x04\x05\x04\x04", // 𢤰
+ 0x22931: "\x04\x04\x02\x04\x01\x04\x03\x01\x03\x05\x04\x01\x01\x05\x01\x05\x01\x01\x01", // 𢤱
+ 0x22932: "\x04\x01\x04\x03\x01\x03\x05\x04\x01\x01\x05\x01\x05\x01\x01\x01\x04\x05\x04\x04", // 𢤲
+ 0x22933: "\x04\x04\x02\x03\x02\x01\x01\x05\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𢤳
+ 0x22934: "\x04\x01\x04\x03\x01\x01\x01\x03\x04\x04\x02\x04\x01\x04\x03\x01\x01\x01\x02", // 𢤴
+ 0x22935: "\x01\x02\x02\x01\x01\x01\x03\x04\x01\x02\x02\x01\x01\x01\x03\x04\x04\x05\x04\x04", // 𢤵
+ 0x22936: "\x01\x02\x01\x02\x05\x01\x02\x05\x01\x05\x04\x01\x02\x02\x05\x01\x04\x05\x04\x04", // 𢤶
+ 0x22937: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x05\x04\x04", // 𢤷
+ 0x22938: "\x04\x04\x02\x05\x02\x04\x03\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 𢤸
+ 0x22939: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x03\x01\x02\x02\x05\x01\x04\x05\x04\x04", // 𢤹
+ 0x2293a: "\x04\x04\x02\x01\x02\x01\x02\x01\x02\x05\x01\x01\x02\x01\x04\x04\x05\x04\x04", // 𢤺
+ 0x2293b: "\x04\x04\x02\x04\x03\x01\x01\x02\x01\x03\x01\x02\x03\x04\x05\x03\x05\x03\x04", // 𢤻
+ 0x2293c: "\x04\x04\x02\x01\x02\x01\x02\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 𢤼
+ 0x2293d: "\x04\x04\x02\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x01\x03\x04", // 𢤽
+ 0x2293e: "\x04\x04\x02\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x05\x02\x01", // 𢤾
+ 0x2293f: "\x01\x02\x05\x01\x02\x03\x04\x03\x05\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04\x04", // 𢤿
+ 0x22940: "\x01\x03\x02\x05\x01\x01\x04\x05\x04\x05\x04\x04\x03\x05\x04\x05\x04\x01\x02\x01", // 𢥀
+ 0x22941: "\x05\x02\x03\x05\x02\x03\x05\x02\x03\x02\x05\x01\x02\x01\x05\x04\x04\x05\x04\x04", // 𢥁
+ 0x22942: "\x04\x04\x02\x04\x03\x01\x01\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𢥂
+ 0x22943: "\x04\x04\x02\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 𢥃
+ 0x22944: "\x04\x04\x02\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x03\x01\x02\x03\x04", // 𢥄
+ 0x22945: "\x04\x04\x02\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x05\x01\x01\x02\x05\x02", // 𢥅
+ 0x22946: "\x04\x04\x02\x03\x01\x04\x03\x01\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05", // 𢥆
+ 0x22947: "\x04\x04\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x01\x05\x03\x04", // 𢥇
+ 0x22948: "\x04\x04\x02\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 𢥈
+ 0x22949: "\x04\x04\x02\x01\x02\x02\x04\x04\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 𢥉
+ 0x2294a: "\x04\x04\x02\x01\x02\x05\x01\x02\x05\x03\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 𢥊
+ 0x2294b: "\x04\x04\x02\x03\x05\x02\x05\x01\x01\x05\x01\x05\x03\x05\x02\x05\x01\x03\x05", // 𢥋
+ 0x2294c: "\x04\x04\x02\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x01\x01\x01\x02", // 𢥌
+ 0x2294d: "\x01\x02\x01\x05\x02\x05\x01\x03\x04\x01\x01\x02\x04\x03\x01\x02\x02\x04\x05\x04\x04", // 𢥍
+ 0x2294e: "\x04\x04\x02\x01\x02\x02\x05\x01\x02\x05\x01\x04\x05\x02\x05\x01\x01\x01\x03\x04", // 𢥎
+ 0x2294f: "\x04\x04\x02\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x02\x05\x01\x03\x02\x05\x01", // 𢥏
+ 0x22950: "\x04\x04\x02\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x04\x03\x01\x02\x03\x04", // 𢥐
+ 0x22951: "\x04\x04\x02\x02\x05\x01\x01\x01\x02\x02\x01\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 𢥑
+ 0x22952: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x03\x04\x03\x01\x02\x03\x04\x04\x05\x04\x04", // 𢥒
+ 0x22953: "\x04\x04\x02\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04", // 𢥓
+ 0x22954: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x03\x02\x05\x01\x01\x01\x04\x05\x04\x04", // 𢥔
+ 0x22955: "\x04\x04\x02\x03\x05\x04\x04\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𢥕
+ 0x22956: "\x04\x04\x02\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01\x02\x03\x04", // 𢥖
+ 0x22957: "\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01\x04\x05\x04\x04", // 𢥗
+ 0x22958: "\x04\x04\x02\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x03\x05\x02\x05\x01", // 𢥘
+ 0x22959: "\x01\x03\x02\x05\x01\x01\x04\x05\x04\x05\x04\x04\x03\x05\x04\x03\x05\x04\x01\x05\x02", // 𢥙
+ 0x2295a: "\x04\x04\x02\x03\x04\x04\x03\x02\x05\x02\x02\x01\x05\x01\x01\x05\x04\x01\x02\x04", // 𢥚
+ 0x2295b: "\x04\x04\x05\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x04\x04\x05\x04\x04", // 𢥛
+ 0x2295c: "\x04\x04\x05\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x04\x02\x04\x04\x04", // 𢥜
+ 0x2295d: "\x04\x04\x02\x01\x03\x02\x05\x01\x01\x01\x02\x01\x02\x01\x05\x01\x05\x03\x04\x03\x05\x04", // 𢥝
+ 0x2295e: "\x04\x04\x02\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𢥞
+ 0x2295f: "\x04\x04\x02\x02\x05\x01\x01\x05\x02\x02\x05\x02\x01\x03\x04\x04\x03\x01\x02\x03\x04", // 𢥟
+ 0x22960: "\x04\x04\x02\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𢥠
+ 0x22961: "\x04\x04\x02\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x01\x04\x03\x03\x04", // 𢥡
+ 0x22962: "\x04\x04\x02\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01", // 𢥢
+ 0x22963: "\x04\x04\x02\x03\x01\x04\x03\x01\x04\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x01\x01", // 𢥣
+ 0x22964: "\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04\x04", // 𢥤
+ 0x22965: "\x04\x04\x02\x04\x01\x01\x01\x02\x05\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04", // 𢥥
+ 0x22966: "\x04\x01\x02\x05\x01\x02\x05\x01\x01\x04\x03\x01\x01\x01\x02\x03\x01\x03\x04\x04\x05\x04\x04", // 𢥦
+ 0x22967: "\x01\x03\x03\x02\x05\x01\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04\x04", // 𢥧
+ 0x22968: "\x03\x05\x04\x02\x05\x01\x01\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04\x04", // 𢥨
+ 0x22969: "\x01\x02\x05\x01\x01\x01\x02\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x04\x05\x04\x04", // 𢥩
+ 0x2296a: "\x04\x04\x02\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𢥪
+ 0x2296b: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04\x04", // 𢥫
+ 0x2296c: "\x04\x04\x02\x01\x02\x05\x04\x01\x02\x05\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05", // 𢥬
+ 0x2296d: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x04\x05\x04\x04\x01\x03\x02\x05\x01\x01\x01\x03\x05\x04", // 𢥭
+ 0x2296e: "\x04\x01\x04\x03\x01\x03\x05\x04\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04\x04", // 𢥮
+ 0x2296f: "\x04\x04\x02\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x01\x03\x01\x01\x05\x03\x04", // 𢥯
+ 0x22970: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04\x04\x05\x04\x04", // 𢥰
+ 0x22971: "\x04\x04\x02\x01\x02\x05\x01\x01\x02\x03\x04\x01\x02\x05\x01\x01\x02\x03\x04\x02\x05\x01\x01", // 𢥱
+ 0x22972: "\x04\x01\x02\x05\x01\x02\x05\x01\x01\x02\x01\x02\x01\x01\x01\x02\x03\x01\x03\x04\x04\x05\x04\x04", // 𢥲
+ 0x22973: "\x04\x04\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02", // 𢥳
+ 0x22974: "\x04\x04\x02\x02\x05\x01\x02\x05\x01\x01\x03\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 𢥴
+ 0x22975: "\x04\x04\x02\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𢥵
+ 0x22976: "\x04\x04\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𢥶
+ 0x22977: "\x03\x02\x05\x01\x01\x01\x04\x05\x04\x04\x03\x05\x03\x01\x01\x03\x04\x05\x04\x05\x02\x01\x03\x04", // 𢥷
+ 0x22978: "\x04\x04\x02\x03\x01\x04\x03\x01\x04\x01\x02\x05\x01\x02\x05\x03\x01\x01\x02\x05\x02\x02\x01", // 𢥸
+ 0x22979: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04\x04", // 𢥹
+ 0x2297a: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04\x04", // 𢥺
+ 0x2297b: "\x04\x04\x02\x01\x04\x05\x02\x04\x01\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x01\x01", // 𢥻
+ 0x2297c: "\x04\x04\x02\x04\x04\x05\x03\x05\x01\x02\x01\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𢥼
+ 0x2297d: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01\x04\x05\x04\x04", // 𢥽
+ 0x2297e: "\x04\x04\x02\x05\x05\x01\x03\x05\x03\x03\x03\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𢥾
+ 0x2297f: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04\x04", // 𢥿
+ 0x22980: "\x01\x02\x01\x02\x02\x01\x01\x01\x03\x05\x04\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04\x04", // 𢦀
+ 0x22981: "\x01\x02\x01\x04\x05\x01\x02\x05\x01\x04\x03\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04\x04", // 𢦁
+ 0x22982: "\x04\x04\x02\x01\x02\x02\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 𢦂
+ 0x22983: "\x04\x04\x02\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x02\x05\x02\x02\x01", // 𢦃
+ 0x22984: "\x04\x04\x02\x03\x02\x04\x01\x01\x01\x02\x01\x04\x01\x01\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𢦄
+ 0x22985: "\x04\x04\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x03\x05\x04\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𢦅
+ 0x22986: "\x01\x02\x01\x04\x05\x01\x02\x05\x01\x04\x03\x01\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x03\x04\x04\x05\x04\x04", // 𢦆
+ 0x22987: "\x04\x04\x02\x05\x01\x03\x02\x04\x01\x03\x04\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x05\x04\x04", // 𢦇
+ 0x22988: "\x04\x04\x02\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x01\x04", // 𢦈
+ 0x22989: "\x02\x01\x02\x01\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05\x04\x05\x04\x04", // 𢦉
+ 0x2298a: "\x01\x02\x02\x01\x01\x01\x03\x04\x05\x01\x02\x02\x01\x01\x01\x03\x04\x05\x01\x02\x02\x01\x01\x01\x03\x04\x05\x04\x05\x04\x04", // 𢦊
+ 0x2298b: "\x01\x01\x02\x01\x03\x02\x05\x01\x01\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x04\x05\x04\x04", // 𢦋
+ 0x2298c: "\x01\x01\x05\x03\x04", // 𢦌
+ 0x2298d: "\x01\x05\x03\x03\x04", // 𢦍
+ 0x2298e: "\x03\x05\x01\x05\x03\x04", // 𢦎
+ 0x2298f: "\x01\x02\x01\x05\x03\x04", // 𢦏
+ 0x22990: "\x05\x01\x01\x05\x03\x04", // 𢦐
+ 0x22991: "\x01\x05\x03\x03\x03\x04", // 𢦑
+ 0x22992: "\x01\x01\x02\x01\x05\x03\x04", // 𢦒
+ 0x22993: "\x01\x03\x05\x03\x05\x03\x04", // 𢦓
+ 0x22994: "\x01\x02\x03\x01\x05\x03\x04", // 𢦔
+ 0x22995: "\x01\x05\x03\x04\x03\x03\x05", // 𢦕
+ 0x22996: "\x03\x05\x03\x01\x05\x03\x04", // 𢦖
+ 0x22997: "\x01\x05\x03\x04\x03\x05\x04", // 𢦗
+ 0x22998: "\x01\x05\x01\x01\x05\x03\x04", // 𢦘
+ 0x22999: "\x01\x05\x05\x04\x05\x03\x04", // 𢦙
+ 0x2299a: "\x01\x05\x03\x04\x05\x03\x01\x01", // 𢦚
+ 0x2299b: "\x01\x02\x01\x01\x03\x05\x03\x04", // 𢦛
+ 0x2299c: "\x03\x04\x03\x04\x01\x05\x03\x04", // 𢦜
+ 0x2299d: "\x05\x03\x05\x03\x01\x05\x03\x04", // 𢦝
+ 0x2299e: "\x01\x03\x03\x02\x04\x05\x03\x04", // 𢦞
+ 0x2299f: "\x01\x03\x04\x01\x05\x05\x03\x04", // 𢦟
+ 0x229a0: "\x01\x03\x05\x03\x03\x05\x03\x04", // 𢦠
+ 0x229a1: "\x01\x03\x01\x01\x02\x05\x03\x04", // 𢦡
+ 0x229a2: "\x02\x04\x03\x05\x01\x05\x03\x04", // 𢦢
+ 0x229a3: "\x01\x02\x05\x01\x01\x05\x03\x04", // 𢦣
+ 0x229a4: "\x03\x02\x01\x05\x01\x05\x03\x04", // 𢦤
+ 0x229a5: "\x01\x04\x01\x03\x04\x05\x03\x04", // 𢦥
+ 0x229a6: "\x01\x02\x05\x01\x01\x02\x05\x03\x04", // 𢦦
+ 0x229a7: "\x05\x04\x05\x02\x03\x01\x05\x03\x04", // 𢦧
+ 0x229a8: "\x01\x02\x05\x01\x01\x02\x05\x03\x04", // 𢦨
+ 0x229a9: "\x01\x03\x03\x01\x01\x02\x05\x03\x04", // 𢦩
+ 0x229aa: "\x01\x02\x05\x01\x02\x01\x05\x03\x04", // 𢦪
+ 0x229ab: "\x01\x03\x02\x02\x02\x01\x05\x03\x04", // 𢦫
+ 0x229ac: "\x01\x03\x04\x01\x05\x04\x05\x03\x04", // 𢦬
+ 0x229ad: "\x01\x01\x05\x05\x04\x05\x03\x04", // 𢦭
+ 0x229ae: "\x01\x02\x02\x05\x01\x01\x05\x03\x04", // 𢦮
+ 0x229af: "\x05\x04\x02\x05\x01\x01\x05\x03\x04", // 𢦯
+ 0x229b0: "\x01\x01\x02\x01\x02\x01\x05\x03\x04", // 𢦰
+ 0x229b1: "\x01\x01\x02\x05\x01\x01\x05\x03\x04", // 𢦱
+ 0x229b2: "\x01\x03\x03\x03\x01\x02\x05\x03\x04", // 𢦲
+ 0x229b3: "\x03\x04\x05\x01\x01\x01\x05\x03\x04", // 𢦳
+ 0x229b4: "\x01\x04\x01\x01\x02\x01\x05\x03\x04", // 𢦴
+ 0x229b5: "\x01\x05\x04\x05\x02\x03\x05\x03\x04", // 𢦵
+ 0x229b6: "\x01\x01\x02\x01\x03\x04\x05\x03\x04", // 𢦶
+ 0x229b7: "\x01\x02\x01\x04\x01\x05\x03\x05\x03\x04", // 𢦷
+ 0x229b8: "\x02\x05\x01\x02\x05\x01\x01\x05\x03\x04", // 𢦸
+ 0x229b9: "\x01\x03\x01\x02\x05\x03\x04\x05\x03\x04", // 𢦹
+ 0x229ba: "\x03\x04\x03\x04\x01\x01\x01\x05\x03\x04", // 𢦺
+ 0x229bb: "\x01\x05\x03\x04\x05\x05\x02\x05\x02\x03", // 𢦻
+ 0x229bc: "\x01\x02\x01\x03\x03\x02\x04\x05\x03\x04", // 𢦼
+ 0x229bd: "\x01\x03\x05\x03\x02\x05\x01\x05\x03\x04", // 𢦽
+ 0x229be: "\x01\x05\x05\x04\x01\x02\x01\x05\x03\x04", // 𢦾
+ 0x229bf: "\x01\x03\x01\x01\x05\x03\x04\x01\x05\x03\x04", // 𢦿
+ 0x229c0: "\x02\x05\x01\x01\x01\x01\x02\x01\x05\x03\x04", // 𢧀
+ 0x229c1: "\x02\x01\x02\x01\x02\x03\x03\x01\x05\x03\x04", // 𢧁
+ 0x229c2: "\x04\x01\x04\x03\x01\x02\x05\x01\x05\x03\x04", // 𢧂
+ 0x229c3: "\x05\x01\x01\x03\x02\x05\x01\x01\x05\x03\x04", // 𢧃
+ 0x229c4: "\x02\x05\x01\x01\x01\x02\x01\x01\x05\x03\x04", // 𢧄
+ 0x229c5: "\x03\x04\x01\x01\x02\x03\x04\x01\x05\x03\x04", // 𢧅
+ 0x229c6: "\x01\x03\x04\x01\x05\x02\x05\x01\x05\x03\x04", // 𢧆
+ 0x229c7: "\x01\x02\x01\x03\x04\x03\x05\x04\x05\x03\x04", // 𢧇
+ 0x229c8: "\x01\x03\x05\x03\x03\x04\x03\x04\x01\x05\x03\x04", // 𢧈
+ 0x229c9: "\x01\x02\x02\x01\x02\x05\x01\x01\x01\x05\x03\x04", // 𢧉
+ 0x229ca: "\x03\x05\x01\x03\x01\x02\x03\x04\x01\x05\x03\x04", // 𢧊
+ 0x229cb: "\x01\x02\x05\x01\x01\x05\x03\x04\x02\x05\x01\x01", // 𢧋
+ 0x229cc: "\x01\x02\x05\x01\x01\x01\x01\x02\x01\x05\x03\x04", // 𢧌
+ 0x229cd: "\x02\x01\x01\x01\x01\x02\x03\x04\x01\x05\x03\x04", // 𢧍
+ 0x229ce: "\x01\x02\x01\x02\x02\x01\x01\x01\x01\x05\x03\x04", // 𢧎
+ 0x229cf: "\x01\x01\x03\x04\x02\x04\x04\x04\x01\x05\x03\x04", // 𢧏
+ 0x229d0: "\x04\x03\x02\x05\x01\x01\x01\x02\x01\x05\x03\x04", // 𢧐
+ 0x229d1: "\x01\x02\x01\x02\x05\x01\x01\x02\x01\x05\x03\x04", // 𢧑
+ 0x229d2: "\x01\x03\x03\x04\x01\x05\x02\x05\x01\x05\x03\x04", // 𢧒
+ 0x229d3: "\x01\x03\x05\x03\x04\x01\x03\x05\x05\x03\x04", // 𢧓
+ 0x229d4: "\x01\x01\x01\x01\x03\x04\x02\x05\x01\x01\x05\x03\x04", // 𢧔
+ 0x229d5: "\x03\x03\x01\x02\x02\x05\x01\x01\x01\x01\x05\x03\x04", // 𢧕
+ 0x229d6: "\x01\x02\x01\x03\x02\x05\x01\x01\x01\x01\x05\x03\x04", // 𢧖
+ 0x229d7: "\x02\x01\x02\x05\x01\x01\x05\x03\x04\x01\x05\x03\x04", // 𢧗
+ 0x229d8: "\x02\x05\x01\x02\x02\x05\x02\x05\x01\x01\x05\x03\x04", // 𢧘
+ 0x229d9: "\x05\x04\x02\x05\x01\x01\x02\x05\x03\x01\x05\x03\x04", // 𢧙
+ 0x229da: "\x03\x01\x01\x02\x01\x02\x01\x03\x05\x05\x03\x04", // 𢧚
+ 0x229db: "\x02\x01\x02\x05\x01\x01\x05\x03\x01\x01\x05\x03\x04", // 𢧛
+ 0x229dc: "\x01\x02\x01\x02\x05\x01\x03\x01\x02\x01\x05\x03\x04", // 𢧜
+ 0x229dd: "\x02\x01\x05\x03\x02\x05\x01\x05\x01\x01\x05\x03\x04", // 𢧝
+ 0x229de: "\x01\x03\x04\x01\x03\x03\x05\x04\x01\x04\x05\x03\x04", // 𢧞
+ 0x229df: "\x01\x05\x01\x05\x03\x02\x04\x04\x04\x05\x03\x04", // 𢧟
+ 0x229e0: "\x02\x05\x01\x01\x05\x02\x05\x01\x01\x01\x05\x03\x04", // 𢧠
+ 0x229e1: "\x02\x01\x01\x01\x01\x02\x03\x04\x01\x03\x05\x03\x04", // 𢧡
+ 0x229e2: "\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04\x01\x05\x03\x04", // 𢧢
+ 0x229e3: "\x01\x02\x01\x04\x05\x03\x01\x02\x03\x04\x01\x05\x03\x04", // 𢧣
+ 0x229e4: "\x01\x03\x04\x01\x02\x05\x01\x03\x01\x02\x01\x05\x03\x04", // 𢧤
+ 0x229e5: "\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04\x01\x05\x03\x04", // 𢧥
+ 0x229e6: "\x01\x03\x01\x02\x05\x02\x02\x01\x05\x03\x01\x05\x03\x04", // 𢧦
+ 0x229e7: "\x01\x02\x05\x01\x02\x03\x04\x01\x01\x03\x02\x05\x03\x04", // 𢧧
+ 0x229e8: "\x01\x02\x01\x01\x01\x01\x03\x04\x02\x05\x01\x01\x05\x03\x04", // 𢧨
+ 0x229e9: "\x01\x05\x03\x04\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𢧩
+ 0x229ea: "\x04\x01\x03\x05\x01\x01\x02\x02\x05\x01\x01\x05\x03\x04", // 𢧪
+ 0x229eb: "\x02\x05\x01\x01\x01\x02\x02\x04\x03\x01\x01\x05\x03\x04", // 𢧫
+ 0x229ec: "\x01\x01\x02\x01\x02\x05\x02\x02\x05\x01\x01\x05\x03\x04", // 𢧬
+ 0x229ed: "\x01\x02\x01\x01\x05\x02\x05\x02\x05\x01\x01\x05\x03\x04", // 𢧭
+ 0x229ee: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x01\x05\x03\x04", // 𢧮
+ 0x229ef: "\x01\x03\x01\x02\x02\x02\x01\x04\x05\x04\x04\x05\x03\x04", // 𢧯
+ 0x229f0: "\x04\x05\x01\x02\x05\x01\x01\x01\x02\x05\x01\x05\x03\x04", // 𢧰
+ 0x229f1: "\x05\x04\x05\x04\x05\x04\x01\x02\x03\x04\x01\x05\x03\x04", // 𢧱
+ 0x229f2: "\x03\x01\x02\x01\x05\x03\x04\x02\x01\x02\x01\x03\x05\x01\x01", // 𢧲
+ 0x229f3: "\x04\x01\x03\x05\x01\x01\x02\x05\x01\x01\x02\x01\x05\x03\x04", // 𢧳
+ 0x229f4: "\x01\x02\x01\x04\x01\x05\x03\x03\x01\x03\x04\x01\x05\x03\x04", // 𢧴
+ 0x229f5: "\x02\x03\x04\x03\x01\x04\x01\x01\x01\x02\x01\x01\x05\x03\x04", // 𢧵
+ 0x229f6: "\x02\x01\x05\x03\x01\x05\x03\x04\x03\x01\x02\x01\x05\x03\x04", // 𢧶
+ 0x229f7: "\x02\x05\x01\x02\x05\x01\x01\x05\x03\x04\x01\x01\x05\x03\x04", // 𢧷
+ 0x229f8: "\x01\x01\x02\x01\x01\x05\x02\x05\x02\x05\x01\x01\x05\x03\x04", // 𢧸
+ 0x229f9: "\x02\x01\x02\x01\x02\x03\x03\x01\x02\x03\x04\x05\x03\x04", // 𢧹
+ 0x229fa: "\x01\x02\x01\x04\x05\x01\x03\x01\x02\x03\x04\x01\x05\x03\x04", // 𢧺
+ 0x229fb: "\x01\x02\x01\x03\x02\x05\x01\x01\x01\x04\x05\x01\x05\x03\x04", // 𢧻
+ 0x229fc: "\x02\x01\x02\x01\x04\x04\x05\x01\x01\x02\x03\x04\x05\x03\x04", // 𢧼
+ 0x229fd: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x01\x05\x03\x04", // 𢧽
+ 0x229fe: "\x02\x05\x02\x02\x05\x01\x01\x04\x03\x03\x04\x01\x05\x03\x04", // 𢧾
+ 0x229ff: "\x01\x03\x01\x02\x05\x01\x02\x05\x02\x05\x03\x04\x05\x03\x04", // 𢧿
+ 0x22a00: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x01\x05\x03\x04", // 𢨀
+ 0x22a01: "\x01\x05\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 𢨁
+ 0x22a02: "\x05\x05\x04\x05\x05\x04\x01\x01\x02\x01\x02\x01\x05\x03\x04", // 𢨂
+ 0x22a03: "\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04\x01\x05\x03\x04", // 𢨃
+ 0x22a04: "\x04\x03\x01\x01\x03\x04\x02\x05\x01\x01\x01\x01\x05\x03\x04", // 𢨄
+ 0x22a05: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x01\x05\x03\x04", // 𢨅
+ 0x22a06: "\x01\x02\x01\x03\x01\x01\x01\x02\x01\x01\x01\x05\x05\x03\x04", // 𢨆
+ 0x22a07: "\x01\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04\x05\x03\x04", // 𢨇
+ 0x22a08: "\x03\x04\x03\x04\x03\x04\x03\x04\x02\x05\x01\x01\x01\x05\x03\x04", // 𢨈
+ 0x22a09: "\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01\x01\x05\x03\x04", // 𢨉
+ 0x22a0a: "\x04\x01\x02\x05\x01\x05\x02\x01\x01\x02\x05\x01\x01\x05\x03\x04", // 𢨊
+ 0x22a0b: "\x01\x05\x03\x04\x02\x05\x01\x01\x01\x05\x03\x04\x02\x05\x01\x01", // 𢨋
+ 0x22a0c: "\x05\x04\x05\x02\x03\x02\x05\x03\x05\x02\x05\x01\x01\x05\x03\x04", // 𢨌
+ 0x22a0d: "\x03\x04\x01\x02\x05\x01\x02\x05\x03\x04\x01\x02\x01\x05\x03\x04", // 𢨍
+ 0x22a0e: "\x01\x02\x01\x05\x02\x03\x05\x02\x03\x01\x05\x02\x05\x05\x03\x04", // 𢨎
+ 0x22a0f: "\x01\x02\x02\x01\x05\x02\x05\x02\x02\x01\x01\x01\x05\x03\x03\x04", // 𢨏
+ 0x22a10: "\x02\x05\x01\x02\x05\x01\x05\x04\x02\x05\x01\x01\x01\x05\x03\x04", // 𢨐
+ 0x22a11: "\x01\x03\x05\x01\x03\x01\x02\x05\x01\x02\x05\x05\x03\x04\x01\x01", // 𢨑
+ 0x22a12: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01\x01\x05\x03\x04", // 𢨒
+ 0x22a13: "\x03\x05\x05\x01\x01\x03\x01\x03\x04\x04\x04\x04\x04\x01\x05\x03\x04", // 𢨓
+ 0x22a14: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x01\x05\x03\x04", // 𢨔
+ 0x22a15: "\x03\x05\x01\x03\x03\x05\x04\x01\x01\x01\x02\x05\x01\x01\x05\x03\x04", // 𢨕
+ 0x22a16: "\x01\x02\x05\x01\x02\x02\x01\x03\x02\x01\x05\x03\x04\x01\x05\x03\x04", // 𢨖
+ 0x22a17: "\x01\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x05\x03\x04", // 𢨗
+ 0x22a18: "\x02\x01\x05\x03\x01\x05\x03\x02\x04\x01\x01\x01\x02\x01\x01\x05\x03\x04", // 𢨘
+ 0x22a19: "\x01\x02\x02\x04\x03\x01\x02\x05\x01\x01\x04\x03\x03\x04\x01\x05\x03\x04", // 𢨙
+ 0x22a1a: "\x01\x01\x02\x01\x02\x05\x01\x02\x01\x01\x02\x01\x02\x01\x03\x04\x05\x03\x04", // 𢨚
+ 0x22a1b: "\x03\x03\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x04\x03\x01\x01\x05\x03\x04", // 𢨛
+ 0x22a1c: "\x01\x01\x02\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x05\x03\x04", // 𢨜
+ 0x22a1d: "\x01\x02\x02\x03\x05\x04\x04\x05\x04\x01\x01\x02\x03\x04\x01\x05\x03\x04", // 𢨝
+ 0x22a1e: "\x04\x01\x04\x03\x01\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04\x05\x03\x04", // 𢨞
+ 0x22a1f: "\x02\x01\x02\x05\x03\x05\x04\x02\x05\x01\x01\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 𢨟
+ 0x22a20: "\x03\x01\x04\x03\x01\x04\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x01\x05\x03\x04", // 𢨠
+ 0x22a21: "\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x01\x05\x03\x04", // 𢨡
+ 0x22a22: "\x01\x01\x02\x01\x05\x02\x03\x05\x02\x02\x01\x05\x02\x05\x02\x05\x01\x01\x05\x03\x04", // 𢨢
+ 0x22a23: "\x01\x02\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x05\x03\x04", // 𢨣
+ 0x22a24: "\x03\x05\x01\x03\x05", // 𢨤
+ 0x22a25: "\x01\x03\x05\x01\x03", // 𢨥
+ 0x22a26: "\x03\x05\x01\x03\x01\x02", // 𢨦
+ 0x22a27: "\x04\x05\x01\x03\x01\x01", // 𢨧
+ 0x22a28: "\x04\x05\x01\x03\x03\x04", // 𢨨
+ 0x22a29: "\x03\x05\x01\x03\x03\x05", // 𢨩
+ 0x22a2a: "\x03\x05\x01\x03\x05\x01\x05", // 𢨪
+ 0x22a2b: "\x04\x05\x01\x03\x01\x02\x01", // 𢨫
+ 0x22a2c: "\x03\x05\x01\x03\x01\x03\x02", // 𢨬
+ 0x22a2d: "\x03\x05\x01\x03\x05\x03\x01", // 𢨭
+ 0x22a2e: "\x04\x05\x01\x03\x03\x01\x02", // 𢨮
+ 0x22a2f: "\x03\x05\x01\x03\x03\x05\x01\x03", // 𢨯
+ 0x22a30: "\x04\x05\x01\x03\x03\x04\x03\x04", // 𢨰
+ 0x22a31: "\x04\x05\x01\x03\x03\x04\x05\x04", // 𢨱
+ 0x22a32: "\x03\x05\x01\x03\x04\x01\x05\x03", // 𢨲
+ 0x22a33: "\x04\x05\x01\x03\x04\x05\x01\x03", // 𢨳
+ 0x22a34: "\x03\x05\x01\x03\x05\x02\x01\x05", // 𢨴
+ 0x22a35: "\x04\x05\x01\x03\x03\x01\x01\x02", // 𢨵
+ 0x22a36: "\x04\x05\x01\x03\x04\x01\x04\x03\x01", // 𢨶
+ 0x22a37: "\x03\x05\x01\x03\x02\x05\x01\x01\x01", // 𢨷
+ 0x22a38: "\x03\x05\x01\x03\x04\x01\x01\x02\x01", // 𢨸
+ 0x22a39: "\x03\x05\x01\x03\x03\x01\x05\x02\x05", // 𢨹
+ 0x22a3a: "\x03\x05\x01\x03\x03\x05\x03\x05\x02", // 𢨺
+ 0x22a3b: "\x03\x05\x01\x03\x03\x01\x01\x03\x04", // 𢨻
+ 0x22a3c: "\x03\x05\x01\x03\x02\x02\x04\x03\x01", // 𢨼
+ 0x22a3d: "\x03\x05\x01\x03\x03\x04\x03\x01\x02", // 𢨽
+ 0x22a3e: "\x03\x05\x01\x03\x03\x01\x03\x04\x04", // 𢨾
+ 0x22a3f: "\x04\x05\x01\x03\x01\x02\x05\x03\x04", // 𢨿
+ 0x22a40: "\x04\x05\x01\x03\x02\x05\x04\x01\x04", // 𢩀
+ 0x22a41: "\x03\x05\x01\x03\x03\x05\x02\x05\x01", // 𢩁
+ 0x22a42: "\x04\x05\x01\x03\x05\x04\x03\x03\x04", // 𢩂
+ 0x22a43: "\x04\x05\x01\x03\x05\x05\x04\x05\x03", // 𢩃
+ 0x22a44: "\x03\x05\x01\x03\x04\x04\x01\x01\x02", // 𢩄
+ 0x22a45: "\x03\x05\x01\x03\x03\x04\x01\x02\x05\x01", // 𢩅
+ 0x22a46: "\x03\x05\x01\x03\x05\x01\x01\x05\x03\x04", // 𢩆
+ 0x22a47: "\x03\x05\x01\x03\x01\x02\x02\x01\x01\x01", // 𢩇
+ 0x22a48: "\x03\x05\x01\x03\x01\x05\x04\x01\x02\x01", // 𢩈
+ 0x22a49: "\x04\x05\x01\x03\x01\x02\x02\x01\x03\x04", // 𢩉
+ 0x22a4a: "\x04\x05\x01\x03\x02\x04\x03\x01\x03\x05", // 𢩊
+ 0x22a4b: "\x03\x05\x01\x03\x01\x02\x01\x02\x05\x01", // 𢩋
+ 0x22a4c: "\x04\x05\x01\x03\x02\x05\x03\x04\x03\x04", // 𢩌
+ 0x22a4d: "\x03\x05\x01\x03\x05\x04\x01\x02\x02\x05\x01", // 𢩍
+ 0x22a4e: "\x03\x05\x01\x03\x04\x04\x01\x02\x05\x01\x01", // 𢩎
+ 0x22a4f: "\x04\x05\x01\x03\x03\x01\x01\x02\x01\x02\x01", // 𢩏
+ 0x22a50: "\x04\x05\x01\x03\x03\x04\x04\x05\x02\x05\x02", // 𢩐
+ 0x22a51: "\x03\x05\x01\x03\x01\x02\x01\x03\x05\x03\x05\x04", // 𢩑
+ 0x22a52: "\x03\x05\x01\x03\x03\x05\x04\x01\x05\x02\x01\x05", // 𢩒
+ 0x22a53: "\x03\x05\x01\x03\x01\x02\x01\x04\x03\x01\x01\x02", // 𢩓
+ 0x22a54: "\x04\x05\x01\x03\x01\x02\x01\x05\x05\x01\x02\x01", // 𢩔
+ 0x22a55: "\x03\x05\x01\x03\x03\x05\x01\x03\x03\x05\x01\x03", // 𢩕
+ 0x22a56: "\x03\x05\x01\x03\x01\x01\x02\x03\x02\x01\x05\x01\x01", // 𢩖
+ 0x22a57: "\x05\x01\x03\x01\x01\x04\x05\x01\x03\x04\x05\x01\x03", // 𢩗
+ 0x22a58: "\x03\x05\x01\x03\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 𢩘
+ 0x22a59: "\x03\x05\x01\x03\x02\x05\x01\x03\x05\x01\x03\x02\x05\x01", // 𢩙
+ 0x22a5a: "\x04\x05\x01\x03\x02\x05\x01\x02\x02\x05\x01\x02\x05\x01", // 𢩚
+ 0x22a5b: "\x04\x05\x01\x03\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𢩛
+ 0x22a5c: "\x04\x05\x01\x03\x04\x01\x05\x03\x03\x01\x03\x01\x01\x03\x04", // 𢩜
+ 0x22a5d: "\x03\x05\x01\x03\x02\x05\x01\x03\x05\x01\x03\x03\x05\x01\x03", // 𢩝
+ 0x22a5e: "\x04\x05\x01\x03\x04\x01\x04\x03\x01\x01\x02\x03\x03\x02\x04", // 𢩞
+ 0x22a5f: "\x01\x03\x04\x03\x04\x03\x04\x04\x05\x01\x03\x02\x05\x01\x02\x02", // 𢩟
+ 0x22a60: "\x03\x05\x01\x03\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 𢩠
+ 0x22a61: "\x04\x05\x01\x03\x05\x01\x05\x04\x01\x03\x04\x03\x02\x05\x01\x01\x03\x04", // 𢩡
+ 0x22a62: "\x03\x05\x01\x03\x03\x05\x02\x05\x01\x01\x05\x01\x05\x03\x05\x02\x05\x01\x03\x05\x04", // 𢩢
+ 0x22a63: "\x04\x05\x01\x03\x04\x01\x05\x03\x01\x02\x02\x03\x05\x04\x01\x01\x01\x02\x04\x05\x04", // 𢩣
+ 0x22a64: "\x04\x05\x01\x03\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 𢩤
+ 0x22a65: "\x03\x01\x01\x03\x05", // 𢩥
+ 0x22a66: "\x05\x03\x01\x01\x02", // 𢩦
+ 0x22a67: "\x01\x02\x01\x05", // 𢩧
+ 0x22a68: "\x01\x02\x01\x01\x05", // 𢩨
+ 0x22a69: "\x01\x02\x01\x03\x04", // 𢩩
+ 0x22a6a: "\x01\x02\x01\x05\x02", // 𢩪
+ 0x22a6b: "\x01\x02\x01\x03\x05", // 𢩫
+ 0x22a6c: "\x03\x01\x01\x02\x02\x02", // 𢩬
+ 0x22a6d: "\x01\x02\x01\x01\x02\x04", // 𢩭
+ 0x22a6e: "\x01\x02\x01\x01\x05\x04", // 𢩮
+ 0x22a6f: "\x01\x02\x01\x05\x02\x01", // 𢩯
+ 0x22a70: "\x01\x02\x01\x03\x05\x02", // 𢩰
+ 0x22a71: "\x01\x02\x01\x01\x02\x03", // 𢩱
+ 0x22a72: "\x01\x02\x01\x05\x01\x02", // 𢩲
+ 0x22a73: "\x01\x02\x01\x02\x05\x02", // 𢩳
+ 0x22a74: "\x01\x02\x01\x05\x02\x04", // 𢩴
+ 0x22a75: "\x01\x02\x01\x05\x01\x05", // 𢩵
+ 0x22a76: "\x01\x02\x01\x03\x05\x03", // 𢩶
+ 0x22a77: "\x03\x01\x01\x02\x03\x01\x05", // 𢩷
+ 0x22a78: "\x03\x05\x04\x03\x01\x01\x02", // 𢩸
+ 0x22a79: "\x01\x02\x01\x01\x02\x04", // 𢩹
+ 0x22a7a: "\x01\x02\x01\x03\x01\x05", // 𢩺
+ 0x22a7b: "\x01\x02\x01\x03\x05\x04", // 𢩻
+ 0x22a7c: "\x01\x02\x01\x05\x05\x04", // 𢩼
+ 0x22a7d: "\x01\x02\x01\x05\x01\x05", // 𢩽
+ 0x22a7e: "\x01\x02\x01\x03\x05\x04", // 𢩾
+ 0x22a7f: "\x01\x02\x01\x01\x02\x01", // 𢩿
+ 0x22a80: "\x01\x02\x01\x02\x01\x05", // 𢪀
+ 0x22a81: "\x01\x02\x01\x01\x03\x05", // 𢪁
+ 0x22a82: "\x01\x02\x01\x01\x03\x04", // 𢪂
+ 0x22a83: "\x01\x02\x01\x01\x05\x05\x03", // 𢪃
+ 0x22a84: "\x01\x02\x01\x03\x05\x01\x02", // 𢪄
+ 0x22a85: "\x01\x02\x01\x03\x04\x05\x03", // 𢪅
+ 0x22a86: "\x01\x02\x01\x03\x05\x01\x05", // 𢪆
+ 0x22a87: "\x05\x02\x01\x03\x03\x01\x01\x02", // 𢪇
+ 0x22a88: "\x01\x02\x01\x02\x05\x01\x01", // 𢪈
+ 0x22a89: "\x01\x02\x01\x05\x01\x05\x02", // 𢪉
+ 0x22a8a: "\x01\x02\x01\x02\x01\x05\x04", // 𢪊
+ 0x22a8b: "\x01\x02\x01\x03\x01\x01\x02", // 𢪋
+ 0x22a8c: "\x01\x02\x01\x03\x05\x05\x04", // 𢪌
+ 0x22a8d: "\x01\x02\x01\x02\x03\x04\x04", // 𢪍
+ 0x22a8e: "\x01\x02\x01\x03\x02\x01\x05", // 𢪎
+ 0x22a8f: "\x01\x02\x01\x02\x05\x01\x01", // 𢪏
+ 0x22a90: "\x03\x01\x01\x02\x03\x04\x03\x04", // 𢪐
+ 0x22a91: "\x01\x02\x01\x01\x05\x03\x05", // 𢪑
+ 0x22a92: "\x03\x01\x01\x02\x03\x01\x01\x02", // 𢪒
+ 0x22a93: "\x01\x05\x01\x03\x01\x01\x02", // 𢪓
+ 0x22a94: "\x01\x02\x01\x01\x05\x05\x01", // 𢪔
+ 0x22a95: "\x01\x02\x01\x05\x01\x05\x01", // 𢪕
+ 0x22a96: "\x03\x01\x01\x02\x04\x01\x03\x04", // 𢪖
+ 0x22a97: "\x01\x02\x01\x03\x02\x02\x04", // 𢪗
+ 0x22a98: "\x03\x04\x05\x03\x03\x01\x01\x02", // 𢪘
+ 0x22a99: "\x03\x01\x01\x03\x01\x01\x01\x02", // 𢪙
+ 0x22a9a: "\x01\x02\x01\x04\x05\x03\x05", // 𢪚
+ 0x22a9b: "\x01\x02\x01\x03\x01\x03\x04", // 𢪛
+ 0x22a9c: "\x01\x02\x01\x01\x03\x05\x05", // 𢪜
+ 0x22a9d: "\x01\x02\x01\x01\x01\x03\x02", // 𢪝
+ 0x22a9e: "\x01\x02\x01\x01\x02\x01\x05", // 𢪞
+ 0x22a9f: "\x01\x02\x01\x01\x05\x01\x02", // 𢪟
+ 0x22aa0: "\x01\x02\x01\x02\x05\x01\x02", // 𢪠
+ 0x22aa1: "\x01\x02\x01\x03\x05\x02\x01", // 𢪡
+ 0x22aa2: "\x01\x02\x01\x03\x05\x03\x04", // 𢪢
+ 0x22aa3: "\x01\x02\x01\x03\x05\x03\x04", // 𢪣
+ 0x22aa4: "\x01\x02\x01\x03\x05\x03\x04", // 𢪤
+ 0x22aa5: "\x03\x01\x01\x02\x03\x05\x03\x03", // 𢪥
+ 0x22aa6: "\x01\x02\x01\x01\x03\x03\x05", // 𢪦
+ 0x22aa7: "\x01\x02\x01\x03\x01\x01\x02", // 𢪧
+ 0x22aa8: "\x01\x02\x01\x04\x05\x03\x05", // 𢪨
+ 0x22aa9: "\x01\x02\x01\x05\x03\x05\x04", // 𢪩
+ 0x22aaa: "\x01\x02\x01\x01\x02\x01\x05", // 𢪪
+ 0x22aab: "\x01\x02\x01\x05\x02\x01\x03", // 𢪫
+ 0x22aac: "\x01\x02\x01\x05\x02\x01\x05", // 𢪬
+ 0x22aad: "\x01\x02\x01\x03\x01\x02\x01", // 𢪭
+ 0x22aae: "\x01\x02\x01\x01\x02\x03\x04", // 𢪮
+ 0x22aaf: "\x01\x02\x01\x01\x03\x04\x04", // 𢪯
+ 0x22ab0: "\x01\x02\x01\x01\x03\x05\x04", // 𢪰
+ 0x22ab1: "\x01\x02\x01\x03\x05\x03\x03", // 𢪱
+ 0x22ab2: "\x01\x02\x01\x03\x05\x03\x05", // 𢪲
+ 0x22ab3: "\x03\x01\x01\x02\x03\x05\x04", // 𢪳
+ 0x22ab4: "\x01\x02\x01\x04\x01\x01\x03\x02", // 𢪴
+ 0x22ab5: "\x01\x02\x01\x05\x02\x01\x03\x04", // 𢪵
+ 0x22ab6: "\x01\x02\x01\x02\x05\x01\x01\x05", // 𢪶
+ 0x22ab7: "\x01\x02\x01\x02\x05\x01\x01\x01", // 𢪷
+ 0x22ab8: "\x03\x05\x04\x05\x05\x03\x01\x01\x02", // 𢪸
+ 0x22ab9: "\x01\x02\x01\x05\x02\x02\x03\x04", // 𢪹
+ 0x22aba: "\x01\x02\x01\x03\x01\x03\x04\x04", // 𢪺
+ 0x22abb: "\x05\x02\x05\x03\x04\x03\x01\x01\x02", // 𢪻
+ 0x22abc: "\x01\x02\x01\x03\x02\x05\x05\x04", // 𢪼
+ 0x22abd: "\x03\x04\x03\x04\x02\x03\x01\x01\x02", // 𢪽
+ 0x22abe: "\x01\x02\x01\x02\x05\x03\x05\x01", // 𢪾
+ 0x22abf: "\x01\x02\x02\x05\x01\x03\x01\x01\x02", // 𢪿
+ 0x22ac0: "\x01\x02\x01\x05\x04\x03\x01\x01\x02", // 𢫀
+ 0x22ac1: "\x01\x02\x01\x05\x02\x05\x03\x04", // 𢫁
+ 0x22ac2: "\x01\x02\x01\x05\x02\x02\x05\x04", // 𢫂
+ 0x22ac3: "\x01\x02\x01\x02\x05\x01\x05\x02", // 𢫃
+ 0x22ac4: "\x01\x02\x01\x01\x02\x03\x04\x05", // 𢫄
+ 0x22ac5: "\x01\x02\x01\x03\x01\x05\x01\x05", // 𢫅
+ 0x22ac6: "\x01\x02\x01\x01\x02\x03\x04\x01", // 𢫆
+ 0x22ac7: "\x01\x02\x01\x01\x02\x01\x05\x04", // 𢫇
+ 0x22ac8: "\x01\x02\x01\x01\x02\x02\x05\x01", // 𢫈
+ 0x22ac9: "\x01\x02\x01\x01\x03\x04\x05\x03", // 𢫉
+ 0x22aca: "\x01\x02\x01\x05\x04\x01\x02\x04", // 𢫊
+ 0x22acb: "\x01\x02\x01\x02\x02\x02\x05\x01", // 𢫋
+ 0x22acc: "\x01\x02\x01\x03\x02\x05\x02\x05", // 𢫌
+ 0x22acd: "\x01\x02\x01\x03\x05\x03\x03\x04", // 𢫍
+ 0x22ace: "\x01\x02\x01\x03\x05\x05\x01\x05", // 𢫎
+ 0x22acf: "\x01\x02\x01\x02\x05\x02\x05\x02", // 𢫏
+ 0x22ad0: "\x01\x02\x01\x02\x03\x04\x03\x04", // 𢫐
+ 0x22ad1: "\x01\x02\x01\x03\x05\x04\x02\x01", // 𢫑
+ 0x22ad2: "\x01\x02\x01\x05\x02\x05\x03\x04", // 𢫒
+ 0x22ad3: "\x01\x02\x01\x05\x03\x01\x05\x04", // 𢫓
+ 0x22ad4: "\x01\x02\x01\x04\x01\x05\x05\x04", // 𢫔
+ 0x22ad5: "\x01\x02\x01\x04\x05\x05\x03\x04", // 𢫕
+ 0x22ad6: "\x01\x02\x01\x01\x02\x03\x05\x04", // 𢫖
+ 0x22ad7: "\x03\x01\x01\x02\x03\x02\x05\x01\x01", // 𢫗
+ 0x22ad8: "\x01\x02\x01\x02\x01\x05\x01\x03", // 𢫘
+ 0x22ad9: "\x01\x02\x01\x03\x02\x01\x05\x04", // 𢫙
+ 0x22ada: "\x01\x02\x01\x01\x02\x01\x01\x05", // 𢫚
+ 0x22adb: "\x01\x02\x01\x01\x01\x02\x01\x04", // 𢫛
+ 0x22adc: "\x01\x02\x01\x03\x04\x02\x01\x01", // 𢫜
+ 0x22add: "\x01\x02\x01\x03\x05\x04\x04\x04", // 𢫝
+ 0x22ade: "\x01\x02\x01\x05\x04\x01\x02\x01", // 𢫞
+ 0x22adf: "\x01\x02\x01\x03\x02\x01\x02\x01", // 𢫟
+ 0x22ae0: "\x01\x02\x01\x05\x01\x05\x05\x04", // 𢫠
+ 0x22ae1: "\x01\x02\x01\x05\x03\x05\x02\x01", // 𢫡
+ 0x22ae2: "\x01\x02\x01\x03\x02\x05\x03\x04", // 𢫢
+ 0x22ae3: "\x01\x02\x01\x02\x01\x01\x01\x05", // 𢫣
+ 0x22ae4: "\x01\x02\x01\x03\x05\x03\x04\x05\x02", // 𢫤
+ 0x22ae5: "\x01\x02\x01\x03\x02\x05\x03\x04\x01", // 𢫥
+ 0x22ae6: "\x01\x02\x01\x01\x03\x02\x05\x01\x01", // 𢫦
+ 0x22ae7: "\x01\x02\x01\x04\x03\x04\x02\x04\x02", // 𢫧
+ 0x22ae8: "\x01\x02\x01\x01\x01\x03\x05\x03\x04", // 𢫨
+ 0x22ae9: "\x01\x02\x01\x03\x02\x01\x02\x03\x04", // 𢫩
+ 0x22aea: "\x03\x05\x01\x01\x05\x04\x03\x01\x01\x02", // 𢫪
+ 0x22aeb: "\x01\x02\x01\x05\x01\x01\x01\x01\x02", // 𢫫
+ 0x22aec: "\x01\x02\x01\x03\x04\x01\x02\x03\x04", // 𢫬
+ 0x22aed: "\x01\x02\x01\x02\x05\x03\x04\x03\x04", // 𢫭
+ 0x22aee: "\x01\x02\x01\x01\x02\x05\x04\x04\x01", // 𢫮
+ 0x22aef: "\x01\x02\x01\x03\x02\x01\x03\x04\x04", // 𢫯
+ 0x22af0: "\x03\x05\x04\x01\x05\x02\x03\x01\x01\x02", // 𢫰
+ 0x22af1: "\x01\x02\x01\x03\x03\x02\x01\x01\x02", // 𢫱
+ 0x22af2: "\x01\x02\x01\x01\x03\x03\x04\x01\x05", // 𢫲
+ 0x22af3: "\x01\x02\x01\x01\x03\x03\x01\x01\x02", // 𢫳
+ 0x22af4: "\x01\x01\x03\x05\x03\x04\x03\x01\x01\x02", // 𢫴
+ 0x22af5: "\x01\x02\x01\x02\x05\x01\x01\x01\x02", // 𢫵
+ 0x22af6: "\x03\x01\x01\x02\x03\x01\x01\x02\x01\x02", // 𢫶
+ 0x22af7: "\x01\x02\x01\x03\x03\x05\x02\x01\x05", // 𢫷
+ 0x22af8: "\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𢫸
+ 0x22af9: "\x01\x02\x01\x03\x04\x03\x04\x05\x04", // 𢫹
+ 0x22afa: "\x01\x02\x01\x05\x04\x03\x03\x02\x04", // 𢫺
+ 0x22afb: "\x01\x02\x01\x01\x01\x02\x01\x05\x04", // 𢫻
+ 0x22afc: "\x01\x02\x01\x02\x05\x01\x02\x01\x04", // 𢫼
+ 0x22afd: "\x01\x02\x01\x03\x03\x05\x01\x01\x03", // 𢫽
+ 0x22afe: "\x01\x02\x01\x04\x01\x02\x05\x01\x01", // 𢫾
+ 0x22aff: "\x01\x02\x01\x03\x04\x01\x03\x05\x04", // 𢫿
+ 0x22b00: "\x01\x02\x01\x01\x02\x01\x01\x02\x01", // 𢬀
+ 0x22b01: "\x01\x02\x01\x03\x04\x05\x04\x03\x05", // 𢬁
+ 0x22b02: "\x01\x02\x01\x04\x01\x03\x01\x02\x01", // 𢬂
+ 0x22b03: "\x01\x02\x01\x03\x05\x01\x05\x02", // 𢬃
+ 0x22b04: "\x01\x02\x01\x04\x01\x02\x05\x03\x04", // 𢬄
+ 0x22b05: "\x01\x02\x01\x02\x03\x04\x01\x03\x04", // 𢬅
+ 0x22b06: "\x01\x02\x01\x03\x04\x05\x02\x01\x01", // 𢬆
+ 0x22b07: "\x01\x02\x01\x04\x04\x05\x01\x02\x04", // 𢬇
+ 0x22b08: "\x01\x02\x01\x04\x03\x01\x01\x03\x04", // 𢬈
+ 0x22b09: "\x01\x02\x01\x03\x05\x01\x03\x01\x05", // 𢬉
+ 0x22b0a: "\x01\x02\x01\x04\x03\x01\x02\x03\x04", // 𢬊
+ 0x22b0b: "\x01\x02\x01\x03\x05\x04\x01\x02\x01", // 𢬋
+ 0x22b0c: "\x01\x02\x01\x01\x01\x03\x05\x04\x04", // 𢬌
+ 0x22b0d: "\x01\x02\x01\x01\x03\x01\x03\x04\x04", // 𢬍
+ 0x22b0e: "\x01\x02\x01\x01\x02\x05\x01\x01\x01", // 𢬎
+ 0x22b0f: "\x01\x02\x01\x05\x04\x05\x04\x05\x04", // 𢬏
+ 0x22b10: "\x01\x02\x01\x03\x05\x02\x05\x01\x01", // 𢬐
+ 0x22b11: "\x01\x02\x01\x02\x05\x01\x02\x02\x01", // 𢬑
+ 0x22b12: "\x01\x02\x01\x02\x05\x01\x01\x01\x05", // 𢬒
+ 0x22b13: "\x01\x02\x01\x03\x05\x04\x01\x05\x02", // 𢬓
+ 0x22b14: "\x01\x02\x01\x03\x02\x05\x02\x02\x01", // 𢬔
+ 0x22b15: "\x01\x02\x01\x03\x04\x03\x04\x01\x01", // 𢬕
+ 0x22b16: "\x01\x02\x01\x03\x04\x02\x01\x02\x01", // 𢬖
+ 0x22b17: "\x01\x02\x01\x03\x01\x01\x02\x03\x04", // 𢬗
+ 0x22b18: "\x01\x02\x01\x03\x05\x05\x02\x01\x05", // 𢬘
+ 0x22b19: "\x05\x04\x01\x05\x04\x01\x03\x01\x01\x02", // 𢬙
+ 0x22b1a: "\x03\x01\x01\x03\x02\x05\x01\x02\x05\x02", // 𢬚
+ 0x22b1b: "\x03\x01\x01\x02\x03\x04\x03\x01\x01\x02", // 𢬛
+ 0x22b1c: "\x01\x02\x01\x03\x01\x03\x05\x03\x04", // 𢬜
+ 0x22b1d: "\x01\x02\x01\x03\x04\x01\x02\x01\x04", // 𢬝
+ 0x22b1e: "\x01\x02\x01\x05\x01\x01\x05\x01\x01", // 𢬞
+ 0x22b1f: "\x01\x02\x01\x05\x04\x05\x02\x01\x01", // 𢬟
+ 0x22b20: "\x01\x02\x01\x04\x05\x02\x05\x03\x04", // 𢬠
+ 0x22b21: "\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 𢬡
+ 0x22b22: "\x01\x02\x01\x02\x05\x01\x02\x05\x02", // 𢬢
+ 0x22b23: "\x03\x01\x01\x02\x01\x02\x05\x03\x05\x01", // 𢬣
+ 0x22b24: "\x01\x02\x01\x01\x01\x01\x02\x01\x05", // 𢬤
+ 0x22b25: "\x01\x02\x01\x04\x04\x01\x01\x02\x01", // 𢬥
+ 0x22b26: "\x01\x02\x01\x04\x05\x02\x04\x05", // 𢬦
+ 0x22b27: "\x01\x02\x01\x03\x01\x01\x02\x01\x02", // 𢬧
+ 0x22b28: "\x01\x02\x01\x04\x04\x01\x05\x03\x01", // 𢬨
+ 0x22b29: "\x01\x02\x01\x03\x02\x01\x05\x03\x04", // 𢬩
+ 0x22b2a: "\x01\x02\x01\x04\x01\x04\x03\x01\x02", // 𢬪
+ 0x22b2b: "\x05\x02\x01\x01\x01\x05\x03\x04\x01\x02", // 𢬫
+ 0x22b2c: "\x05\x02\x01\x01\x01\x04\x03\x04\x05\x05", // 𢬬
+ 0x22b2d: "\x01\x02\x01\x04\x05\x04\x01\x02\x04", // 𢬭
+ 0x22b2e: "\x01\x02\x01\x01\x03\x01\x05\x03\x04", // 𢬮
+ 0x22b2f: "\x01\x02\x01\x03\x03\x01\x05\x02\x01\x05", // 𢬯
+ 0x22b30: "\x01\x02\x01\x02\x03\x04\x03\x05\x03\x01", // 𢬰
+ 0x22b31: "\x01\x02\x01\x01\x02\x01\x05\x04\x05\x03", // 𢬱
+ 0x22b32: "\x01\x02\x01\x03\x02\x01\x02\x05\x01\x02", // 𢬲
+ 0x22b33: "\x01\x02\x01\x03\x01\x02\x03\x04\x03\x05", // 𢬳
+ 0x22b34: "\x01\x02\x01\x01\x02\x02\x01\x01\x01\x05", // 𢬴
+ 0x22b35: "\x01\x02\x01\x01\x05\x04\x01\x03\x02", // 𢬵
+ 0x22b36: "\x01\x02\x01\x05\x01\x01\x04\x05\x05\x04", // 𢬶
+ 0x22b37: "\x01\x02\x01\x02\x05\x03\x04\x02\x05\x01", // 𢬷
+ 0x22b38: "\x01\x02\x01\x03\x05\x01\x05\x02\x05\x01", // 𢬸
+ 0x22b39: "\x01\x02\x01\x05\x01\x02\x01\x01\x02\x01", // 𢬹
+ 0x22b3a: "\x01\x02\x01\x03\x05\x03\x01\x02\x03\x04", // 𢬺
+ 0x22b3b: "\x01\x02\x01\x02\x05\x05\x02\x01\x01\x01", // 𢬻
+ 0x22b3c: "\x01\x02\x01\x02\x05\x01\x05\x02\x05\x01", // 𢬼
+ 0x22b3d: "\x01\x02\x01\x02\x05\x01\x01\x03\x01\x02", // 𢬽
+ 0x22b3e: "\x01\x02\x01\x03\x04\x01\x03\x02\x05\x01", // 𢬾
+ 0x22b3f: "\x01\x02\x01\x01\x01\x03\x02\x05\x03\x04", // 𢬿
+ 0x22b40: "\x01\x02\x01\x03\x01\x05\x02\x01\x03\x04", // 𢭀
+ 0x22b41: "\x01\x02\x01\x03\x05\x05\x04\x02\x03\x04", // 𢭁
+ 0x22b42: "\x01\x02\x01\x04\x04\x05\x03\x01\x01\x02", // 𢭂
+ 0x22b43: "\x01\x02\x01\x01\x02\x05\x01\x04\x03\x01", // 𢭃
+ 0x22b44: "\x01\x02\x01\x05\x01\x05\x04\x05\x04\x04", // 𢭄
+ 0x22b45: "\x01\x02\x01\x01\x01\x02\x04\x03\x03\x04", // 𢭅
+ 0x22b46: "\x01\x02\x01\x03\x01\x02\x03\x04\x05\x03", // 𢭆
+ 0x22b47: "\x01\x02\x01\x03\x02\x05\x03\x03\x04\x01", // 𢭇
+ 0x22b48: "\x01\x02\x01\x05\x01\x01\x01\x02\x05\x02", // 𢭈
+ 0x22b49: "\x01\x02\x01\x03\x01\x01\x02\x01\x02\x01", // 𢭉
+ 0x22b4a: "\x01\x02\x01\x03\x04\x04\x03\x01\x02\x01", // 𢭊
+ 0x22b4b: "\x01\x02\x01\x05\x04\x05\x03\x03\x01\x01\x02", // 𢭋
+ 0x22b4c: "\x01\x02\x01\x03\x05\x04\x02\x01\x02\x01", // 𢭌
+ 0x22b4d: "\x01\x02\x01\x02\x05\x02\x01\x02\x05\x02", // 𢭍
+ 0x22b4e: "\x01\x02\x01\x03\x05\x04\x01\x05\x02", // 𢭎
+ 0x22b4f: "\x01\x02\x01\x01\x01\x01\x03\x01\x02\x04", // 𢭏
+ 0x22b50: "\x01\x02\x01\x04\x04\x03\x04\x05\x05\x03", // 𢭐
+ 0x22b51: "\x01\x02\x01\x03\x01\x05\x05\x01\x03\x04", // 𢭑
+ 0x22b52: "\x01\x02\x01\x03\x04\x04\x01\x02\x03\x04", // 𢭒
+ 0x22b53: "\x01\x02\x01\x05\x05\x05\x03\x05\x01\x01", // 𢭓
+ 0x22b54: "\x01\x02\x01\x04\x04\x05\x03\x05\x03\x05", // 𢭔
+ 0x22b55: "\x01\x02\x01\x04\x04\x05\x03\x05\x03\x05", // 𢭕
+ 0x22b56: "\x01\x02\x01\x03\x05\x01\x03\x03\x01\x05", // 𢭖
+ 0x22b57: "\x01\x02\x01\x04\x05\x01\x01\x05\x03\x04", // 𢭗
+ 0x22b58: "\x01\x02\x01\x01\x03\x04\x01\x01\x02\x01", // 𢭘
+ 0x22b59: "\x01\x02\x01\x01\x02\x01\x05\x04\x05\x02", // 𢭙
+ 0x22b5a: "\x01\x02\x01\x05\x03\x02\x05\x02\x02\x01", // 𢭚
+ 0x22b5b: "\x01\x02\x01\x01\x03\x04\x03\x05\x04\x01", // 𢭛
+ 0x22b5c: "\x01\x02\x01\x01\x02\x01\x04\x05\x03\x05", // 𢭜
+ 0x22b5d: "\x01\x02\x01\x05\x03\x04\x04\x05\x04\x04", // 𢭝
+ 0x22b5e: "\x01\x02\x01\x02\x05\x02\x03\x04\x01\x05", // 𢭞
+ 0x22b5f: "\x01\x02\x01\x02\x05\x01\x01\x01\x05\x03", // 𢭟
+ 0x22b60: "\x01\x02\x01\x01\x05\x03\x01\x01\x03\x04", // 𢭠
+ 0x22b61: "\x01\x02\x01\x03\x01\x02\x05\x01\x01\x02", // 𢭡
+ 0x22b62: "\x01\x02\x01\x03\x02\x03\x01\x02\x01\x01", // 𢭢
+ 0x22b63: "\x01\x02\x01\x03\x02\x05\x04\x03\x01\x02", // 𢭣
+ 0x22b64: "\x01\x02\x01\x05\x03\x01\x01\x03\x01\x01\x02", // 𢭤
+ 0x22b65: "\x03\x01\x01\x02\x03\x05\x03\x01\x01\x01\x02", // 𢭥
+ 0x22b66: "\x01\x02\x01\x01\x02\x01\x03\x05\x02\x01", // 𢭦
+ 0x22b67: "\x01\x02\x01\x03\x04\x05\x02\x02\x05\x02", // 𢭧
+ 0x22b68: "\x01\x02\x01\x04\x05\x01\x05\x05\x04", // 𢭨
+ 0x22b69: "\x01\x02\x01\x04\x01\x03\x01\x02\x03\x04", // 𢭩
+ 0x22b6a: "\x01\x02\x01\x01\x02\x02\x05\x01\x03\x05", // 𢭪
+ 0x22b6b: "\x01\x02\x01\x05\x02\x01\x01\x03\x05", // 𢭫
+ 0x22b6c: "\x01\x02\x01\x03\x02\x04\x03\x01\x01\x02", // 𢭬
+ 0x22b6d: "\x01\x02\x01\x04\x03\x03\x04\x01\x02\x01", // 𢭭
+ 0x22b6e: "\x01\x02\x01\x05\x01\x05\x03\x01\x03\x04", // 𢭮
+ 0x22b6f: "\x01\x02\x01\x04\x04\x01\x05\x01\x03\x04", // 𢭯
+ 0x22b70: "\x01\x02\x01\x01\x02\x03\x04\x01\x02\x01", // 𢭰
+ 0x22b71: "\x01\x02\x01\x03\x02\x02\x05\x01\x01\x01", // 𢭱
+ 0x22b72: "\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𢭲
+ 0x22b73: "\x01\x02\x01\x01\x02\x05\x03\x05\x01\x01", // 𢭳
+ 0x22b74: "\x01\x02\x01\x04\x04\x02\x05\x01\x03\x04", // 𢭴
+ 0x22b75: "\x01\x02\x01\x05\x03\x01\x05\x04\x05\x03", // 𢭵
+ 0x22b76: "\x03\x01\x01\x02\x05\x01\x03\x03\x01\x01\x05", // 𢭶
+ 0x22b77: "\x01\x02\x01\x01\x02\x01\x04\x01\x03\x04", // 𢭷
+ 0x22b78: "\x01\x02\x01\x04\x01\x03\x05\x04\x05\x02", // 𢭸
+ 0x22b79: "\x01\x02\x01\x04\x01\x03\x04\x02\x05\x01", // 𢭹
+ 0x22b7a: "\x01\x02\x01\x03\x04\x04\x03\x05\x03\x03", // 𢭺
+ 0x22b7b: "\x01\x02\x01\x02\x05\x01\x03\x05\x03\x04", // 𢭻
+ 0x22b7c: "\x01\x02\x01\x05\x03\x01\x02\x03\x04\x03", // 𢭼
+ 0x22b7d: "\x01\x02\x01\x04\x04\x01\x04\x05\x03\x05", // 𢭽
+ 0x22b7e: "\x01\x02\x01\x01\x02\x02\x03\x05\x04", // 𢭾
+ 0x22b7f: "\x01\x02\x01\x04\x04\x01\x01\x02\x05\x02", // 𢭿
+ 0x22b80: "\x01\x02\x01\x04\x05\x02\x03\x04\x05\x03", // 𢮀
+ 0x22b81: "\x01\x02\x01\x04\x01\x05\x03\x03\x04\x04\x04", // 𢮁
+ 0x22b82: "\x01\x02\x01\x05\x01\x05\x04\x01\x05\x05\x04", // 𢮂
+ 0x22b83: "\x03\x01\x02\x03\x04\x03\x05\x03\x03\x01\x01\x02", // 𢮃
+ 0x22b84: "\x01\x02\x01\x03\x05\x01\x03\x01\x02\x03\x04", // 𢮄
+ 0x22b85: "\x01\x02\x01\x02\x05\x01\x02\x01\x01\x03\x02", // 𢮅
+ 0x22b86: "\x01\x02\x01\x02\x05\x01\x02\x01\x04\x01\x02", // 𢮆
+ 0x22b87: "\x01\x02\x01\x01\x02\x01\x05\x05\x04\x01\x04", // 𢮇
+ 0x22b88: "\x01\x02\x01\x03\x05\x05\x03\x04\x05\x04\x04", // 𢮈
+ 0x22b89: "\x01\x02\x01\x01\x03\x03\x04\x01\x05\x03\x04", // 𢮉
+ 0x22b8a: "\x01\x02\x01\x01\x02\x05\x01\x01\x01\x02\x05", // 𢮊
+ 0x22b8b: "\x01\x02\x01\x05\x02\x01\x01\x01\x05\x03\x04", // 𢮋
+ 0x22b8c: "\x01\x02\x01\x01\x02\x01\x02\x05\x01\x05\x03", // 𢮌
+ 0x22b8d: "\x01\x02\x01\x04\x04\x05\x03\x05\x05\x01\x05", // 𢮍
+ 0x22b8e: "\x01\x02\x01\x02\x01\x05\x03\x01\x05\x03\x04", // 𢮎
+ 0x22b8f: "\x03\x01\x01\x02\x04\x01\x04\x03\x01\x02\x05\x01", // 𢮏
+ 0x22b90: "\x01\x02\x01\x02\x04\x03\x02\x05\x02\x05\x01", // 𢮐
+ 0x22b91: "\x01\x02\x01\x05\x01\x01\x02\x04\x01\x03\x04", // 𢮑
+ 0x22b92: "\x01\x02\x01\x03\x02\x05\x01\x05\x01\x01\x02", // 𢮒
+ 0x22b93: "\x01\x02\x01\x03\x01\x01\x02\x05\x02\x02\x02", // 𢮓
+ 0x22b94: "\x01\x02\x01\x01\x01\x03\x05\x04\x01\x05\x03", // 𢮔
+ 0x22b95: "\x01\x02\x01\x04\x01\x05\x04\x01\x02\x03\x04", // 𢮕
+ 0x22b96: "\x01\x02\x01\x02\x05\x03\x01\x02\x03\x04\x01", // 𢮖
+ 0x22b97: "\x03\x05\x01\x01\x04\x05\x04\x04\x03\x01\x01\x02", // 𢮗
+ 0x22b98: "\x04\x04\x05\x03\x05\x04\x05\x05\x03\x01\x01\x02", // 𢮘
+ 0x22b99: "\x01\x02\x01\x04\x03\x01\x01\x03\x04\x05\x03", // 𢮙
+ 0x22b9a: "\x01\x02\x01\x02\x05\x01\x01\x03\x01\x03\x04", // 𢮚
+ 0x22b9b: "\x01\x02\x01\x01\x02\x05\x01\x01\x02\x01\x04", // 𢮛
+ 0x22b9c: "\x01\x02\x02\x01\x01\x01\x03\x04\x03\x01\x01\x02", // 𢮜
+ 0x22b9d: "\x01\x02\x02\x01\x01\x01\x05\x04\x03\x01\x01\x02", // 𢮝
+ 0x22b9e: "\x01\x02\x01\x04\x05\x04\x04\x03\x03\x02\x04", // 𢮞
+ 0x22b9f: "\x05\x02\x01\x05\x05\x05\x04\x05\x03\x01\x01\x02", // 𢮟
+ 0x22ba0: "\x01\x05\x01\x01\x05\x01\x03\x01\x01\x02", // 𢮠
+ 0x22ba1: "\x01\x02\x01\x03\x04\x04\x03\x01\x01\x01\x02", // 𢮡
+ 0x22ba2: "\x01\x02\x01\x05\x02\x01\x01\x05\x02\x01\x01", // 𢮢
+ 0x22ba3: "\x03\x03\x02\x04\x01\x04\x03\x01\x03\x01\x01\x02", // 𢮣
+ 0x22ba4: "\x01\x02\x01\x03\x04\x04\x03\x05\x02\x01\x05", // 𢮤
+ 0x22ba5: "\x01\x02\x01\x05\x04\x01\x03\x04\x02\x03\x04", // 𢮥
+ 0x22ba6: "\x01\x02\x01\x03\x04\x01\x02\x05\x01\x03\x04", // 𢮦
+ 0x22ba7: "\x01\x02\x01\x02\x05\x01\x02\x01\x01\x03\x02", // 𢮧
+ 0x22ba8: "\x01\x02\x01\x01\x02\x05\x01\x02\x01\x05\x04", // 𢮨
+ 0x22ba9: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x04\x04", // 𢮩
+ 0x22baa: "\x01\x02\x01\x04\x03\x01\x02\x02\x01\x03\x04", // 𢮪
+ 0x22bab: "\x01\x02\x01\x05\x03\x01\x05\x04\x05\x01\x05", // 𢮫
+ 0x22bac: "\x01\x02\x01\x05\x02\x02\x05\x02\x02\x03\x04", // 𢮬
+ 0x22bad: "\x01\x02\x01\x02\x05\x01\x01\x01\x01\x03\x04", // 𢮭
+ 0x22bae: "\x01\x02\x01\x01\x02\x02\x01\x01\x05\x01\x01", // 𢮮
+ 0x22baf: "\x01\x02\x01\x04\x01\x04\x01\x03\x05\x03\x04", // 𢮯
+ 0x22bb0: "\x01\x02\x01\x04\x01\x05\x03\x03\x04\x02\x02", // 𢮰
+ 0x22bb1: "\x01\x02\x01\x04\x04\x05\x01\x01\x02\x03\x04", // 𢮱
+ 0x22bb2: "\x01\x02\x01\x04\x03\x01\x01\x02\x01\x03\x05", // 𢮲
+ 0x22bb3: "\x01\x02\x01\x01\x02\x05\x02\x04\x01\x03\x04", // 𢮳
+ 0x22bb4: "\x01\x02\x01\x01\x04\x05\x02\x02\x02\x03\x05", // 𢮴
+ 0x22bb5: "\x01\x02\x01\x02\x05\x01\x01\x02\x05\x01\x01", // 𢮵
+ 0x22bb6: "\x01\x02\x01\x02\x05\x02\x03\x01\x01\x03\x04", // 𢮶
+ 0x22bb7: "\x01\x02\x01\x01\x02\x01\x02\x04\x01\x05\x03", // 𢮷
+ 0x22bb8: "\x01\x02\x01\x02\x01\x02\x05\x01\x01\x03\x04", // 𢮸
+ 0x22bb9: "\x01\x02\x01\x02\x05\x02\x01\x03\x01\x01\x02", // 𢮹
+ 0x22bba: "\x01\x02\x01\x02\x05\x01\x04\x05\x01\x03\x05", // 𢮺
+ 0x22bbb: "\x01\x02\x01\x01\x02\x01\x02\x03\x04\x01\x05", // 𢮻
+ 0x22bbc: "\x01\x02\x01\x03\x02\x01\x02\x01\x05\x02", // 𢮼
+ 0x22bbd: "\x01\x02\x01\x03\x03\x05\x01\x02\x01\x05\x04", // 𢮽
+ 0x22bbe: "\x01\x02\x01\x03\x01\x05\x02\x01\x03\x01\x05", // 𢮾
+ 0x22bbf: "\x01\x02\x01\x03\x01\x02\x02\x01\x01\x03\x05", // 𢮿
+ 0x22bc0: "\x01\x02\x01\x03\x01\x05\x02\x01\x01\x03\x05", // 𢯀
+ 0x22bc1: "\x01\x02\x01\x03\x01\x01\x05\x04\x04\x04\x04", // 𢯁
+ 0x22bc2: "\x01\x02\x01\x03\x05\x02\x05\x01\x03\x05\x04", // 𢯂
+ 0x22bc3: "\x01\x02\x01\x03\x01\x01\x02\x01\x05\x04\x05\x02", // 𢯃
+ 0x22bc4: "\x03\x05\x01\x03\x03\x01\x03\x04\x03\x01\x01\x02", // 𢯄
+ 0x22bc5: "\x01\x02\x01\x01\x02\x01\x03\x04\x01\x02\x01", // 𢯅
+ 0x22bc6: "\x01\x02\x01\x01\x05\x03\x04\x01\x05\x03\x04", // 𢯆
+ 0x22bc7: "\x01\x02\x01\x02\x05\x01\x05\x02\x05\x01\x01", // 𢯇
+ 0x22bc8: "\x01\x02\x01\x02\x05\x02\x05\x05\x04\x01\x04", // 𢯈
+ 0x22bc9: "\x01\x02\x01\x03\x04\x04\x03\x01\x01\x03\x04", // 𢯉
+ 0x22bca: "\x01\x02\x01\x03\x02\x05\x01\x01\x03\x05\x04", // 𢯊
+ 0x22bcb: "\x01\x02\x01\x03\x04\x03\x04\x03\x03\x01\x02", // 𢯋
+ 0x22bcc: "\x01\x02\x01\x03\x05\x05\x03\x03\x01\x01\x02", // 𢯌
+ 0x22bcd: "\x01\x02\x01\x05\x01\x03\x02\x05\x02\x02\x02", // 𢯍
+ 0x22bce: "\x01\x02\x01\x03\x04\x01\x03\x02\x05\x01\x01", // 𢯎
+ 0x22bcf: "\x01\x02\x01\x03\x03\x02\x05\x03\x02\x05\x04", // 𢯏
+ 0x22bd0: "\x01\x02\x01\x05\x03\x01\x01\x02\x02\x05\x01", // 𢯐
+ 0x22bd1: "\x01\x02\x01\x04\x04\x02\x05\x04\x01\x02\x01", // 𢯑
+ 0x22bd2: "\x01\x02\x01\x01\x02\x02\x01\x03\x02\x04", // 𢯒
+ 0x22bd3: "\x01\x02\x01\x01\x02\x02\x05\x02\x01\x05", // 𢯓
+ 0x22bd4: "\x01\x02\x01\x03\x01\x02\x02\x05\x01\x02\x02", // 𢯔
+ 0x22bd5: "\x01\x02\x01\x04\x04\x05\x02\x05\x01\x01\x01", // 𢯕
+ 0x22bd6: "\x01\x02\x01\x04\x04\x02\x01\x02\x01\x05\x04", // 𢯖
+ 0x22bd7: "\x01\x02\x01\x03\x01\x02\x03\x04\x05\x02\x01", // 𢯗
+ 0x22bd8: "\x01\x02\x01\x01\x02\x02\x03\x02\x03\x05", // 𢯘
+ 0x22bd9: "\x01\x02\x01\x03\x01\x01\x03\x04\x02\x05\x01", // 𢯙
+ 0x22bda: "\x01\x02\x01\x03\x04\x04\x03\x05\x02\x01\x05", // 𢯚
+ 0x22bdb: "\x01\x02\x01\x04\x04\x01\x04\x01\x04\x03\x01", // 𢯛
+ 0x22bdc: "\x01\x02\x01\x05\x05\x04\x04\x04\x04\x02\x04", // 𢯜
+ 0x22bdd: "\x01\x02\x01\x04\x04\x01\x04\x03\x01\x01\x02", // 𢯝
+ 0x22bde: "\x01\x02\x01\x01\x01\x02\x01\x02\x01\x05\x04", // 𢯞
+ 0x22bdf: "\x01\x02\x01\x01\x02\x01\x02\x05\x01\x01\x01", // 𢯟
+ 0x22be0: "\x01\x02\x01\x04\x04\x01\x05\x03\x02\x05\x04", // 𢯠
+ 0x22be1: "\x01\x02\x01\x04\x01\x05\x04\x02\x05\x01\x01", // 𢯡
+ 0x22be2: "\x01\x02\x01\x03\x03\x05\x01\x03\x03\x01\x02", // 𢯢
+ 0x22be3: "\x03\x01\x01\x02\x02\x05\x03\x04\x02\x05\x03\x04", // 𢯣
+ 0x22be4: "\x01\x02\x01\x02\x05\x01\x01\x03\x05\x05\x02", // 𢯤
+ 0x22be5: "\x01\x02\x01\x01\x02\x02\x01\x01\x03\x05", // 𢯥
+ 0x22be6: "\x01\x02\x01\x01\x03\x04\x03\x04\x02\x03\x04", // 𢯦
+ 0x22be7: "\x01\x02\x01\x03\x04\x03\x04\x03\x01\x03\x04", // 𢯧
+ 0x22be8: "\x01\x02\x01\x01\x02\x02\x01\x02\x05\x02", // 𢯨
+ 0x22be9: "\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x02\x02", // 𢯩
+ 0x22bea: "\x01\x02\x01\x04\x01\x03\x04\x03\x01\x05\x02\x03", // 𢯪
+ 0x22beb: "\x01\x02\x01\x03\x02\x01\x01\x01\x03\x05\x05\x04", // 𢯫
+ 0x22bec: "\x01\x02\x01\x01\x02\x05\x03\x04\x02\x01\x05\x04", // 𢯬
+ 0x22bed: "\x01\x02\x01\x04\x03\x01\x01\x03\x04\x02\x05\x02", // 𢯭
+ 0x22bee: "\x01\x02\x01\x02\x05\x01\x02\x01\x03\x05\x04\x01", // 𢯮
+ 0x22bef: "\x01\x02\x01\x02\x01\x05\x03\x01\x05\x02\x05\x02", // 𢯯
+ 0x22bf0: "\x01\x02\x01\x03\x03\x02\x05\x01\x01\x01\x01\x02", // 𢯰
+ 0x22bf1: "\x01\x02\x01\x04\x04\x05\x03\x04\x03\x04\x05\x04", // 𢯱
+ 0x22bf2: "\x02\x05\x01\x01\x01\x05\x04\x04\x04\x03\x01\x01\x02", // 𢯲
+ 0x22bf3: "\x01\x02\x01\x03\x04\x04\x03\x05\x01\x05\x05\x04", // 𢯳
+ 0x22bf4: "\x01\x02\x01\x04\x04\x05\x04\x01\x03\x04\x03\x04", // 𢯴
+ 0x22bf5: "\x01\x02\x01\x02\x05\x01\x01\x01\x05\x01\x03\x04", // 𢯵
+ 0x22bf6: "\x01\x02\x01\x04\x04\x05\x01\x05\x04\x01\x02\x01", // 𢯶
+ 0x22bf7: "\x01\x02\x01\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 𢯷
+ 0x22bf8: "\x01\x02\x01\x05\x04\x03\x03\x04\x03\x05\x05\x04", // 𢯸
+ 0x22bf9: "\x01\x02\x01\x01\x02\x02\x01\x02\x05\x01\x01\x02", // 𢯹
+ 0x22bfa: "\x01\x02\x01\x03\x02\x05\x01\x02\x05\x02\x01\x04", // 𢯺
+ 0x22bfb: "\x01\x02\x01\x04\x01\x03\x04\x02\x05\x01\x03\x05", // 𢯻
+ 0x22bfc: "\x01\x02\x01\x03\x03\x02\x04\x04\x01\x01\x01\x02", // 𢯼
+ 0x22bfd: "\x01\x02\x01\x01\x02\x01\x02\x02\x05\x01\x01\x01", // 𢯽
+ 0x22bfe: "\x01\x02\x01\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 𢯾
+ 0x22bff: "\x01\x02\x01\x01\x02\x01\x02\x03\x05\x05\x01\x05", // 𢯿
+ 0x22c00: "\x01\x02\x01\x01\x02\x01\x02\x03\x04\x02\x03\x04", // 𢰀
+ 0x22c01: "\x01\x02\x01\x01\x02\x05\x01\x02\x01\x01\x05\x04", // 𢰁
+ 0x22c02: "\x01\x02\x01\x03\x03\x01\x02\x01\x01\x02\x03\x04", // 𢰂
+ 0x22c03: "\x01\x02\x01\x04\x04\x05\x03\x05\x03\x01\x03\x04", // 𢰃
+ 0x22c04: "\x01\x02\x01\x03\x05\x01\x02\x05\x01\x01\x01\x02", // 𢰄
+ 0x22c05: "\x01\x02\x01\x05\x01\x05\x05\x01\x05\x01\x03\x04", // 𢰅
+ 0x22c06: "\x01\x02\x01\x01\x02\x01\x02\x03\x02\x01\x02\x04", // 𢰆
+ 0x22c07: "\x01\x02\x01\x03\x02\x05\x04\x03\x01\x01\x03\x04", // 𢰇
+ 0x22c08: "\x01\x02\x01\x03\x01\x02\x05\x01\x03\x02\x05\x01", // 𢰈
+ 0x22c09: "\x01\x02\x01\x04\x04\x05\x03\x05\x05\x04\x03\x05", // 𢰉
+ 0x22c0a: "\x01\x02\x01\x02\x05\x01\x02\x05\x01\x01\x02\x04", // 𢰊
+ 0x22c0b: "\x01\x02\x01\x02\x05\x01\x03\x02\x05\x02\x02\x01", // 𢰋
+ 0x22c0c: "\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x04\x04", // 𢰌
+ 0x22c0d: "\x01\x02\x01\x04\x01\x02\x05\x01\x04\x03\x03\x04", // 𢰍
+ 0x22c0e: "\x01\x02\x01\x01\x03\x02\x02\x01\x01\x01\x03\x02", // 𢰎
+ 0x22c0f: "\x01\x02\x01\x03\x04\x04\x03\x04\x05\x05\x02\x01", // 𢰏
+ 0x22c10: "\x01\x02\x01\x02\x05\x01\x01\x03\x04\x01\x02\x04", // 𢰐
+ 0x22c11: "\x01\x02\x01\x03\x02\x03\x05\x05\x02\x01\x03\x04", // 𢰑
+ 0x22c12: "\x01\x02\x01\x01\x03\x04\x04\x03\x03\x05\x04\x01", // 𢰒
+ 0x22c13: "\x01\x02\x01\x03\x03\x05\x04\x01\x04\x05\x02", // 𢰓
+ 0x22c14: "\x01\x02\x01\x03\x01\x02\x03\x04\x03\x04\x05\x02", // 𢰔
+ 0x22c15: "\x01\x02\x01\x05\x01\x05\x02\x05\x03\x05\x04\x01", // 𢰕
+ 0x22c16: "\x01\x02\x01\x03\x04\x01\x03\x02\x01\x05\x01\x01", // 𢰖
+ 0x22c17: "\x01\x02\x01\x01\x05\x04\x01\x02\x01\x05\x02", // 𢰗
+ 0x22c18: "\x01\x02\x01\x03\x02\x05\x03\x04\x01\x01\x03\x02", // 𢰘
+ 0x22c19: "\x01\x02\x01\x01\x05\x04\x01\x02\x01\x01\x02\x04", // 𢰙
+ 0x22c1a: "\x01\x02\x01\x01\x05\x01\x01\x03\x02\x05\x02\x02", // 𢰚
+ 0x22c1b: "\x01\x02\x01\x03\x05\x02\x02\x05\x02\x01\x03\x05", // 𢰛
+ 0x22c1c: "\x01\x02\x01\x04\x01\x02\x03\x04\x03\x05\x03\x04", // 𢰜
+ 0x22c1d: "\x01\x02\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 𢰝
+ 0x22c1e: "\x05\x01\x05\x01\x05\x03\x01\x03\x04\x03\x01\x01\x02", // 𢰞
+ 0x22c1f: "\x01\x02\x01\x01\x01\x01\x02\x05\x03\x01\x03\x02", // 𢰟
+ 0x22c20: "\x01\x02\x01\x02\x05\x05\x04\x05\x05\x04\x05\x02", // 𢰠
+ 0x22c21: "\x01\x02\x01\x03\x02\x05\x01\x03\x01\x01\x03\x04", // 𢰡
+ 0x22c22: "\x01\x02\x01\x04\x03\x01\x03\x02\x05\x01\x01\x01", // 𢰢
+ 0x22c23: "\x04\x03\x03\x04\x01\x02\x03\x04\x04\x03\x01\x01\x02", // 𢰣
+ 0x22c24: "\x01\x02\x01\x04\x01\x04\x03\x01\x02\x05\x01\x02", // 𢰤
+ 0x22c25: "\x01\x02\x01\x01\x02\x02\x05\x04\x02\x05\x01", // 𢰥
+ 0x22c26: "\x01\x02\x01\x01\x01\x01\x03\x04\x02\x05\x01\x01", // 𢰦
+ 0x22c27: "\x01\x02\x01\x04\x01\x05\x03\x03\x01\x05\x02\x01", // 𢰧
+ 0x22c28: "\x04\x04\x02\x01\x02\x05\x04\x04\x01\x03\x01\x01\x02", // 𢰨
+ 0x22c29: "\x01\x02\x01\x04\x03\x01\x05\x05\x04\x05\x05\x04", // 𢰩
+ 0x22c2a: "\x01\x02\x01\x04\x03\x01\x01\x03\x04\x02\x05\x01", // 𢰪
+ 0x22c2b: "\x01\x02\x01\x01\x02\x01\x03\x04\x01\x05\x03\x04", // 𢰫
+ 0x22c2c: "\x01\x02\x01\x01\x05\x01\x01\x02\x04\x01\x03\x04", // 𢰬
+ 0x22c2d: "\x01\x02\x01\x05\x04\x02\x05\x01\x01\x02\x05\x03", // 𢰭
+ 0x22c2e: "\x01\x02\x01\x01\x02\x02\x05\x01\x03\x05\x04\x01", // 𢰮
+ 0x22c2f: "\x01\x02\x01\x01\x02\x05\x01\x02\x03\x04\x04\x04", // 𢰯
+ 0x22c30: "\x01\x02\x01\x05\x04\x03\x03\x04\x01\x01\x01\x02", // 𢰰
+ 0x22c31: "\x01\x02\x01\x05\x04\x03\x03\x04\x03\x01\x01\x02", // 𢰱
+ 0x22c32: "\x01\x02\x01\x05\x02\x01\x03\x02\x05\x01\x01\x01", // 𢰲
+ 0x22c33: "\x01\x02\x01\x01\x02\x05\x02\x02\x01\x05\x03\x01", // 𢰳
+ 0x22c34: "\x01\x02\x01\x01\x02\x02\x05\x01\x03\x01\x03\x04", // 𢰴
+ 0x22c35: "\x01\x02\x01\x02\x01\x05\x03\x01\x05\x01\x01\x02", // 𢰵
+ 0x22c36: "\x01\x02\x01\x01\x02\x01\x02\x02\x05\x01\x03\x04", // 𢰶
+ 0x22c37: "\x01\x02\x01\x02\x01\x02\x05\x01\x04\x04\x04\x04", // 𢰷
+ 0x22c38: "\x01\x02\x01\x02\x05\x01\x02\x02\x05\x02\x05\x01", // 𢰸
+ 0x22c39: "\x01\x02\x01\x05\x05\x04\x04\x04\x04\x03\x05\x04", // 𢰹
+ 0x22c3a: "\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 𢰺
+ 0x22c3b: "\x01\x02\x01\x03\x02\x01\x05\x01\x01\x02\x01\x05", // 𢰻
+ 0x22c3c: "\x01\x02\x01\x03\x05\x01\x03\x04\x01\x03\x04\x04", // 𢰼
+ 0x22c3d: "\x01\x02\x01\x03\x05\x05\x01\x01\x04\x05\x04\x04", // 𢰽
+ 0x22c3e: "\x01\x02\x01\x05\x04\x02\x05\x01\x04\x05\x04\x04", // 𢰾
+ 0x22c3f: "\x03\x01\x01\x02\x02\x05\x01\x01\x01\x03\x01\x01\x02", // 𢰿
+ 0x22c40: "\x04\x03\x03\x04\x03\x01\x02\x03\x04\x03\x01\x01\x02", // 𢱀
+ 0x22c41: "\x01\x02\x01\x01\x02\x02\x02\x05\x01\x01\x01", // 𢱁
+ 0x22c42: "\x01\x02\x01\x01\x03\x04\x04\x03\x01\x01\x01\x02", // 𢱂
+ 0x22c43: "\x01\x02\x01\x03\x01\x02\x03\x04\x04\x04\x01\x02", // 𢱃
+ 0x22c44: "\x01\x02\x01\x03\x04\x04\x03\x05\x05\x04\x05\x04", // 𢱄
+ 0x22c45: "\x01\x02\x01\x04\x01\x03\x05\x01\x01\x03\x04\x05", // 𢱅
+ 0x22c46: "\x01\x02\x01\x04\x01\x03\x05\x03\x04\x02\x05\x01", // 𢱆
+ 0x22c47: "\x01\x02\x01\x04\x04\x05\x03\x05\x03\x04\x03\x04", // 𢱇
+ 0x22c48: "\x01\x02\x01\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 𢱈
+ 0x22c49: "\x01\x02\x01\x01\x03\x02\x04\x01\x02\x01\x02\x01", // 𢱉
+ 0x22c4a: "\x01\x02\x01\x04\x01\x02\x05\x01\x01\x02\x03\x04", // 𢱊
+ 0x22c4b: "\x01\x02\x01\x04\x01\x03\x01\x02\x02\x01\x05\x04", // 𢱋
+ 0x22c4c: "\x01\x02\x01\x05\x03\x02\x05\x01\x01\x02\x03\x04", // 𢱌
+ 0x22c4d: "\x01\x02\x01\x03\x05\x02\x05\x01\x03\x05\x05\x03", // 𢱍
+ 0x22c4e: "\x01\x02\x01\x03\x01\x01\x03\x01\x01\x01\x01\x02", // 𢱎
+ 0x22c4f: "\x01\x02\x01\x04\x01\x01\x01\x02\x05\x01\x01\x02", // 𢱏
+ 0x22c50: "\x01\x02\x01\x05\x03\x01\x03\x04\x01\x05\x03\x04", // 𢱐
+ 0x22c51: "\x01\x02\x01\x04\x04\x05\x03\x05\x03\x03\x02\x04", // 𢱑
+ 0x22c52: "\x01\x02\x01\x04\x03\x01\x01\x02\x01\x01\x03\x04", // 𢱒
+ 0x22c53: "\x01\x02\x01\x04\x04\x01\x03\x01\x02\x01\x03\x05", // 𢱓
+ 0x22c54: "\x01\x02\x01\x03\x04\x05\x03\x02\x05\x02\x02\x01", // 𢱔
+ 0x22c55: "\x01\x02\x01\x01\x03\x04\x01\x02\x02\x01\x01\x01", // 𢱕
+ 0x22c56: "\x01\x02\x01\x01\x02\x02\x01\x01\x01\x02\x03\x04", // 𢱖
+ 0x22c57: "\x01\x02\x01\x01\x02\x02\x01\x02\x02\x05\x01", // 𢱗
+ 0x22c58: "\x01\x02\x01\x04\x01\x04\x03\x01\x03\x03\x03\x03", // 𢱘
+ 0x22c59: "\x01\x02\x01\x05\x02\x01\x04\x01\x05\x03\x03\x04", // 𢱙
+ 0x22c5a: "\x01\x02\x01\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𢱚
+ 0x22c5b: "\x01\x02\x01\x04\x04\x01\x01\x02\x05\x03\x05\x01", // 𢱛
+ 0x22c5c: "\x01\x02\x01\x03\x03\x02\x01\x02\x01\x01\x02\x04", // 𢱜
+ 0x22c5d: "\x01\x02\x01\x01\x02\x02\x05\x02\x02\x05\x02", // 𢱝
+ 0x22c5e: "\x03\x01\x01\x02\x01\x02\x02\x05\x02\x02\x05\x02", // 𢱞
+ 0x22c5f: "\x01\x02\x01\x05\x02\x03\x01\x02\x05\x01\x02\x01\x04", // 𢱟
+ 0x22c60: "\x01\x02\x01\x01\x02\x05\x01\x02\x05\x01\x02\x03\x04", // 𢱠
+ 0x22c61: "\x01\x02\x01\x02\x04\x03\x02\x05\x01\x01\x01\x03\x04", // 𢱡
+ 0x22c62: "\x01\x02\x01\x01\x02\x04\x05\x05\x05\x04\x02\x03\x04", // 𢱢
+ 0x22c63: "\x01\x02\x01\x04\x01\x03\x04\x03\x04\x03\x05\x04\x01", // 𢱣
+ 0x22c64: "\x01\x02\x01\x04\x03\x01\x01\x03\x04\x04\x05\x04", // 𢱤
+ 0x22c65: "\x01\x02\x01\x05\x01\x01\x04\x05\x02\x05\x02\x05\x04", // 𢱥
+ 0x22c66: "\x01\x02\x01\x02\x05\x01\x01\x03\x05\x03\x03\x02\x02", // 𢱦
+ 0x22c67: "\x01\x02\x01\x03\x02\x05\x03\x04\x01\x01\x05\x01\x05", // 𢱧
+ 0x22c68: "\x01\x02\x01\x04\x01\x03\x04\x05\x05\x04\x02\x03\x04", // 𢱨
+ 0x22c69: "\x01\x02\x01\x02\x05\x01\x02\x01\x03\x05\x03\x05\x04", // 𢱩
+ 0x22c6a: "\x01\x02\x01\x01\x03\x02\x05\x01\x02\x05\x02\x05\x01", // 𢱪
+ 0x22c6b: "\x01\x02\x01\x02\x05\x02\x02\x01\x01\x02\x01\x02\x01", // 𢱫
+ 0x22c6c: "\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x03\x01\x01\x02", // 𢱬
+ 0x22c6d: "\x01\x02\x01\x01\x02\x01\x02\x02\x01\x03\x04\x01\x02", // 𢱭
+ 0x22c6e: "\x01\x02\x01\x04\x05\x04\x03\x04\x02\x05\x02\x02\x01", // 𢱮
+ 0x22c6f: "\x01\x02\x05\x01\x02\x05\x03\x01\x04\x04\x03\x01\x01\x02", // 𢱯
+ 0x22c70: "\x01\x02\x01\x03\x02\x05\x03\x05\x04\x01\x01\x03\x02", // 𢱰
+ 0x22c71: "\x01\x02\x01\x04\x04\x05\x01\x02\x05\x05\x01\x05\x01", // 𢱱
+ 0x22c72: "\x01\x02\x01\x03\x02\x01\x01\x05\x01\x01\x01\x03\x02", // 𢱲
+ 0x22c73: "\x01\x02\x01\x03\x05\x01\x02\x02\x01\x04\x03\x03\x04", // 𢱳
+ 0x22c74: "\x01\x02\x01\x01\x02\x01\x02\x02\x01\x01\x02\x03\x04", // 𢱴
+ 0x22c75: "\x01\x03\x05\x04\x02\x01\x01\x01\x05\x04\x03\x01\x01\x02", // 𢱵
+ 0x22c76: "\x01\x02\x01\x03\x01\x04\x03\x01\x04\x04\x05\x04\x04", // 𢱶
+ 0x22c77: "\x01\x02\x01\x01\x02\x01\x05\x01\x01\x04\x05\x05\x04", // 𢱷
+ 0x22c78: "\x01\x02\x01\x05\x01\x01\x05\x03\x04\x04\x05\x04", // 𢱸
+ 0x22c79: "\x01\x02\x01\x03\x04\x04\x03\x05\x03\x03\x01\x02\x04", // 𢱹
+ 0x22c7a: "\x01\x02\x01\x05\x03\x02\x05\x04\x05\x03\x02\x05\x04", // 𢱺
+ 0x22c7b: "\x01\x02\x01\x03\x02\x05\x01\x02\x01\x01\x03\x05\x04", // 𢱻
+ 0x22c7c: "\x01\x02\x01\x01\x02\x05\x02\x02\x01\x03\x01\x03\x02", // 𢱼
+ 0x22c7d: "\x01\x02\x01\x01\x03\x05\x04\x05\x05\x04\x05\x04\x04", // 𢱽
+ 0x22c7e: "\x01\x02\x01\x01\x02\x05\x02\x02\x01\x04\x03\x03\x04", // 𢱾
+ 0x22c7f: "\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04\x05\x03\x04", // 𢱿
+ 0x22c80: "\x01\x02\x01\x01\x03\x05\x04\x03\x05\x04\x05\x04\x04", // 𢲀
+ 0x22c81: "\x01\x02\x01\x04\x04\x05\x03\x05\x01\x05\x05\x04", // 𢲁
+ 0x22c82: "\x01\x02\x01\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04", // 𢲂
+ 0x22c83: "\x01\x02\x01\x01\x02\x01\x03\x03\x01\x02\x02\x05\x01", // 𢲃
+ 0x22c84: "\x01\x02\x01\x01\x02\x02\x01\x05\x04\x05\x02\x05\x02", // 𢲄
+ 0x22c85: "\x01\x02\x01\x01\x03\x04\x04\x03\x02\x05\x01\x01\x05", // 𢲅
+ 0x22c86: "\x01\x02\x01\x01\x02\x05\x02\x03\x04\x03\x01\x03\x04", // 𢲆
+ 0x22c87: "\x01\x02\x01\x05\x04\x03\x03\x04\x03\x01\x02\x03\x04", // 𢲇
+ 0x22c88: "\x01\x02\x01\x05\x01\x03\x03\x03\x02\x01\x02\x05\x04", // 𢲈
+ 0x22c89: "\x01\x02\x01\x05\x04\x03\x03\x04\x01\x01\x02\x03\x04", // 𢲉
+ 0x22c8a: "\x01\x02\x01\x01\x02\x01\x02\x05\x03\x05\x03\x05\x03", // 𢲊
+ 0x22c8b: "\x01\x02\x01\x02\x05\x01\x01\x04\x04\x05\x05\x03\x01", // 𢲋
+ 0x22c8c: "\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x01\x02\x04", // 𢲌
+ 0x22c8d: "\x01\x02\x01\x03\x05\x02\x05\x03\x04\x03\x05\x01\x01", // 𢲍
+ 0x22c8e: "\x01\x02\x01\x03\x03\x05\x04\x01\x04\x01\x03\x04\x04", // 𢲎
+ 0x22c8f: "\x01\x02\x01\x03\x04\x03\x01\x03\x02\x05\x01\x01\x01", // 𢲏
+ 0x22c90: "\x01\x02\x01\x03\x02\x05\x01\x05\x01\x01\x02\x05\x02", // 𢲐
+ 0x22c91: "\x01\x02\x01\x03\x01\x04\x03\x01\x04\x03\x01\x03\x04", // 𢲑
+ 0x22c92: "\x03\x01\x01\x02\x03\x05\x01\x03\x05\x04\x01\x05\x04\x01", // 𢲒
+ 0x22c93: "\x03\x02\x01\x05\x01\x01\x01\x03\x04\x03\x01\x01\x02", // 𢲓
+ 0x22c94: "\x01\x02\x01\x01\x01\x02\x01\x04\x03\x01\x01\x02\x01", // 𢲔
+ 0x22c95: "\x01\x02\x01\x05\x04\x03\x03\x04\x03\x01\x01\x03\x04", // 𢲕
+ 0x22c96: "\x01\x02\x01\x01\x02\x01\x05\x02\x05\x01\x01\x02\x01", // 𢲖
+ 0x22c97: "\x01\x02\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 𢲗
+ 0x22c98: "\x01\x02\x01\x04\x04\x05\x03\x05\x01\x03\x04\x04\x03", // 𢲘
+ 0x22c99: "\x01\x02\x01\x04\x05\x01\x03\x04\x01\x03\x05\x03\x04", // 𢲙
+ 0x22c9a: "\x01\x02\x01\x05\x01\x02\x05\x01\x05\x04\x02\x05\x01", // 𢲚
+ 0x22c9b: "\x01\x02\x01\x03\x03\x02\x01\x02\x01\x02\x01\x03\x04", // 𢲛
+ 0x22c9c: "\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02", // 𢲜
+ 0x22c9d: "\x05\x05\x04\x04\x04\x04\x01\x05\x02\x05\x03\x01\x01\x02", // 𢲝
+ 0x22c9e: "\x01\x02\x01\x01\x01\x01\x02\x05\x03\x03\x01\x01\x02", // 𢲞
+ 0x22c9f: "\x01\x02\x01\x04\x04\x05\x04\x01\x04\x03\x01\x01\x02", // 𢲟
+ 0x22ca0: "\x01\x02\x01\x01\x02\x02\x01\x01\x01\x04\x05\x03\x05", // 𢲠
+ 0x22ca1: "\x01\x02\x01\x03\x04\x01\x02\x05\x01\x03\x01\x01\x02", // 𢲡
+ 0x22ca2: "\x01\x02\x01\x05\x02\x03\x04\x01\x01\x02\x03\x04", // 𢲢
+ 0x22ca3: "\x01\x02\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05", // 𢲣
+ 0x22ca4: "\x03\x01\x01\x03\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 𢲤
+ 0x22ca5: "\x01\x02\x01\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02", // 𢲥
+ 0x22ca6: "\x01\x02\x01\x01\x02\x02\x01\x01\x01\x01\x05\x03\x04", // 𢲦
+ 0x22ca7: "\x01\x02\x01\x01\x02\x02\x04\x01\x05\x03\x03\x04", // 𢲧
+ 0x22ca8: "\x01\x02\x01\x04\x04\x01\x03\x01\x05\x05\x04\x01\x04", // 𢲨
+ 0x22ca9: "\x01\x02\x01\x05\x05\x04\x04\x04\x04\x03\x05\x04", // 𢲩
+ 0x22caa: "\x01\x02\x01\x01\x02\x01\x02\x05\x01\x01\x02\x01\x01", // 𢲪
+ 0x22cab: "\x01\x02\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𢲫
+ 0x22cac: "\x01\x02\x01\x01\x03\x05\x04\x03\x01\x01\x02\x03\x04", // 𢲬
+ 0x22cad: "\x01\x02\x01\x01\x02\x05\x03\x05\x01\x01\x05\x01\x05", // 𢲭
+ 0x22cae: "\x01\x02\x01\x01\x02\x02\x01\x01\x01\x02\x01\x02\x01", // 𢲮
+ 0x22caf: "\x01\x02\x01\x04\x04\x01\x01\x03\x04\x03\x04\x03\x04", // 𢲯
+ 0x22cb0: "\x01\x02\x01\x03\x05\x04\x01\x03\x05\x02\x05\x01\x01", // 𢲰
+ 0x22cb1: "\x03\x01\x01\x02\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01", // 𢲱
+ 0x22cb2: "\x01\x02\x01\x04\x05\x01\x01\x05\x04\x05\x02", // 𢲲
+ 0x22cb3: "\x01\x02\x01\x01\x02\x01\x03\x02\x03\x04\x03\x01\x03\x04", // 𢲳
+ 0x22cb4: "\x05\x01\x03\x01\x01\x02\x03\x04\x01\x02\x04\x03\x01\x01\x02", // 𢲴
+ 0x22cb5: "\x01\x02\x01\x01\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01", // 𢲵
+ 0x22cb6: "\x01\x02\x01\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01", // 𢲶
+ 0x22cb7: "\x01\x02\x01\x04\x04\x05\x03\x05\x04\x01\x03\x04\x03\x04", // 𢲷
+ 0x22cb8: "\x01\x02\x01\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01", // 𢲸
+ 0x22cb9: "\x01\x02\x01\x03\x01\x04\x03\x01\x04\x05\x04\x02\x05\x01", // 𢲹
+ 0x22cba: "\x01\x02\x01\x03\x01\x04\x03\x01\x04\x03\x04\x02\x03\x04", // 𢲺
+ 0x22cbb: "\x01\x02\x01\x04\x04\x05\x01\x02\x02\x01\x01\x01\x05\x04", // 𢲻
+ 0x22cbc: "\x01\x02\x01\x04\x04\x05\x03\x05\x01\x05\x04\x01\x02\x01", // 𢲼
+ 0x22cbd: "\x01\x02\x01\x03\x03\x02\x01\x05\x03\x01\x05\x02\x05\x02", // 𢲽
+ 0x22cbe: "\x01\x02\x01\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x03", // 𢲾
+ 0x22cbf: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x03\x05\x03\x01\x01\x02", // 𢲿
+ 0x22cc0: "\x01\x02\x01\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05", // 𢳀
+ 0x22cc1: "\x04\x01\x03\x03\x01\x01\x01\x02\x01\x01\x01\x03\x01\x01\x02", // 𢳁
+ 0x22cc2: "\x01\x02\x01\x02\x05\x01\x02\x01\x01\x02\x01\x02\x01\x01\x02", // 𢳂
+ 0x22cc3: "\x01\x02\x01\x01\x02\x01\x02\x01\x01\x05\x04\x04\x04\x04", // 𢳃
+ 0x22cc4: "\x01\x02\x01\x04\x01\x05\x03\x03\x01\x05\x02\x01\x03\x04", // 𢳄
+ 0x22cc5: "\x04\x01\x03\x03\x01\x01\x02\x05\x02\x02\x02\x03\x01\x01\x02", // 𢳅
+ 0x22cc6: "\x01\x02\x01\x01\x02\x01\x04\x01\x05\x03\x03\x01\x03\x04", // 𢳆
+ 0x22cc7: "\x01\x02\x01\x04\x01\x05\x03\x03\x01\x03\x01\x01\x03\x04", // 𢳇
+ 0x22cc8: "\x04\x01\x05\x03\x03\x01\x03\x01\x01\x03\x04\x03\x01\x01\x02", // 𢳈
+ 0x22cc9: "\x05\x05\x04\x04\x04\x04\x03\x05\x02\x05\x01\x03\x01\x01\x02", // 𢳉
+ 0x22cca: "\x01\x02\x01\x01\x02\x01\x03\x04\x01\x02\x01\x03\x05\x04", // 𢳊
+ 0x22ccb: "\x01\x02\x01\x04\x01\x03\x03\x02\x05\x01\x01\x03\x01\x02", // 𢳋
+ 0x22ccc: "\x01\x02\x01\x02\x01\x02\x01\x01\x02\x01\x04\x05\x05\x05", // 𢳌
+ 0x22ccd: "\x01\x02\x01\x01\x02\x05\x02\x02\x01\x01\x03\x04\x05\x05", // 𢳍
+ 0x22cce: "\x01\x02\x01\x01\x02\x01\x02\x01\x02\x01\x02\x03\x04\x01", // 𢳎
+ 0x22ccf: "\x01\x02\x01\x05\x05\x04\x02\x03\x04\x02\x05\x01\x02\x01", // 𢳏
+ 0x22cd0: "\x01\x02\x01\x02\x05\x02\x01\x03\x02\x05\x02\x02\x02\x02", // 𢳐
+ 0x22cd1: "\x01\x02\x01\x01\x02\x01\x02\x04\x05\x01\x01\x05\x03\x04", // 𢳑
+ 0x22cd2: "\x01\x02\x01\x01\x03\x01\x03\x04\x05\x03\x01\x05\x03\x04", // 𢳒
+ 0x22cd3: "\x01\x02\x01\x03\x01\x04\x03\x01\x04\x03\x01\x03\x03\x04", // 𢳓
+ 0x22cd4: "\x04\x04\x05\x03\x02\x01\x03\x02\x05\x01\x01\x03\x01\x01\x02", // 𢳔
+ 0x22cd5: "\x01\x02\x01\x02\x05\x02\x03\x04\x03\x04\x03\x05\x01\x01", // 𢳕
+ 0x22cd6: "\x01\x02\x01\x04\x04\x02\x01\x03\x03\x05\x04\x01\x04\x01", // 𢳖
+ 0x22cd7: "\x01\x02\x01\x01\x03\x05\x04\x03\x05\x04\x01\x02\x03\x04", // 𢳗
+ 0x22cd8: "\x01\x02\x01\x04\x01\x01\x01\x02\x05\x01\x04\x05\x04", // 𢳘
+ 0x22cd9: "\x01\x02\x01\x04\x04\x05\x03\x05\x03\x04\x01\x05\x03\x04", // 𢳙
+ 0x22cda: "\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x01\x02\x03\x04", // 𢳚
+ 0x22cdb: "\x01\x02\x01\x02\x01\x05\x03\x01\x05\x02\x05\x01\x01\x01", // 𢳛
+ 0x22cdc: "\x01\x02\x01\x03\x03\x02\x02\x01\x02\x01\x02\x01\x03\x04", // 𢳜
+ 0x22cdd: "\x01\x02\x01\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x03", // 𢳝
+ 0x22cde: "\x01\x02\x01\x01\x02\x02\x01\x01\x01\x02\x05\x02\x01\x01", // 𢳞
+ 0x22cdf: "\x01\x02\x01\x05\x04\x02\x05\x01\x01\x02\x04\x05\x04", // 𢳟
+ 0x22ce0: "\x01\x02\x01\x01\x02\x02\x01\x03\x04\x04\x01\x03\x02", // 𢳠
+ 0x22ce1: "\x01\x02\x01\x04\x04\x05\x02\x05\x01\x01\x04\x01\x03\x04", // 𢳡
+ 0x22ce2: "\x01\x02\x01\x02\x02\x03\x05\x02\x05\x01\x01\x01\x03\x05", // 𢳢
+ 0x22ce3: "\x01\x02\x01\x04\x01\x04\x03\x02\x05\x03\x05\x02\x05\x01", // 𢳣
+ 0x22ce4: "\x01\x02\x01\x04\x04\x05\x03\x05\x04\x01\x03\x05\x03\x04", // 𢳤
+ 0x22ce5: "\x01\x02\x01\x03\x01\x02\x01\x02\x05\x01\x04\x05\x04", // 𢳥
+ 0x22ce6: "\x01\x02\x01\x04\x04\x05\x03\x05\x03\x03\x03\x05\x03\x04", // 𢳦
+ 0x22ce7: "\x01\x02\x01\x04\x01\x03\x05\x01\x01\x02\x04\x01\x03\x04", // 𢳧
+ 0x22ce8: "\x01\x02\x01\x01\x01\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 𢳨
+ 0x22ce9: "\x01\x02\x01\x01\x02\x01\x03\x01\x02\x05\x01\x02\x02\x01", // 𢳩
+ 0x22cea: "\x01\x02\x01\x01\x02\x05\x01\x02\x03\x04\x04\x05\x04", // 𢳪
+ 0x22ceb: "\x01\x02\x01\x05\x01\x05\x01\x02\x01\x01\x01\x05\x03\x04", // 𢳫
+ 0x22cec: "\x01\x02\x01\x01\x04\x05\x02\x04\x01\x03\x04\x05\x01\x01", // 𢳬
+ 0x22ced: "\x01\x02\x01\x01\x02\x01\x02\x01\x02\x01\x03\x02\x05\x01", // 𢳭
+ 0x22cee: "\x01\x02\x01\x01\x02\x05\x01\x02\x03\x04\x03\x03\x01\x02", // 𢳮
+ 0x22cef: "\x01\x02\x01\x01\x02\x05\x01\x02\x03\x04\x03\x01\x03\x04", // 𢳯
+ 0x22cf0: "\x01\x02\x01\x05\x04\x03\x03\x04\x02\x05\x01\x02\x01\x04", // 𢳰
+ 0x22cf1: "\x01\x02\x01\x05\x02\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 𢳱
+ 0x22cf2: "\x01\x02\x01\x05\x01\x03\x04\x04\x01\x05\x03\x02\x05\x04", // 𢳲
+ 0x22cf3: "\x01\x02\x01\x02\x05\x02\x03\x04\x01\x02\x05\x01\x02\x02", // 𢳳
+ 0x22cf4: "\x01\x02\x01\x02\x01\x02\x01\x02\x03\x03\x01\x05\x03\x04", // 𢳴
+ 0x22cf5: "\x01\x02\x01\x02\x01\x05\x03\x01\x05\x01\x02\x01\x03\x04", // 𢳵
+ 0x22cf6: "\x01\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𢳶
+ 0x22cf7: "\x01\x02\x01\x03\x05\x02\x05\x03\x04\x02\x05\x02\x02\x01", // 𢳷
+ 0x22cf8: "\x01\x02\x01\x03\x04\x04\x03\x03\x01\x01\x02\x01\x02\x01", // 𢳸
+ 0x22cf9: "\x01\x02\x01\x03\x05\x01\x03\x01\x02\x05\x01\x01\x02\x04", // 𢳹
+ 0x22cfa: "\x01\x02\x01\x03\x01\x05\x05\x04\x01\x04\x03\x01\x03\x04", // 𢳺
+ 0x22cfb: "\x01\x02\x01\x03\x04\x04\x03\x04\x05\x01\x03\x05\x04\x04", // 𢳻
+ 0x22cfc: "\x01\x02\x01\x04\x05\x04\x03\x04\x04\x01\x03\x04\x03\x04", // 𢳼
+ 0x22cfd: "\x01\x02\x01\x03\x01\x02\x03\x04\x02\x02\x05\x04\x05\x04", // 𢳽
+ 0x22cfe: "\x01\x02\x01\x03\x01\x02\x05\x01\x01\x02\x01\x01\x05\x03", // 𢳾
+ 0x22cff: "\x01\x02\x01\x04\x01\x03\x01\x05\x01\x01\x02\x01\x03\x04", // 𢳿
+ 0x22d00: "\x01\x02\x01\x04\x04\x05\x03\x02\x01\x02\x05\x03\x04\x01", // 𢴀
+ 0x22d01: "\x01\x02\x01\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𢴁
+ 0x22d02: "\x01\x02\x01\x01\x04\x05\x01\x03\x02\x05\x01\x02\x02\x05", // 𢴂
+ 0x22d03: "\x01\x02\x01\x01\x05\x03\x02\x01\x01\x03\x05\x03\x03\x04", // 𢴃
+ 0x22d04: "\x01\x02\x01\x02\x05\x02\x02\x01\x05\x04\x01\x05\x04\x01", // 𢴄
+ 0x22d05: "\x01\x02\x01\x04\x01\x02\x05\x01\x04\x05\x03\x01\x01\x05", // 𢴅
+ 0x22d06: "\x01\x02\x01\x04\x04\x01\x01\x01\x02\x01\x02\x05\x01\x01", // 𢴆
+ 0x22d07: "\x01\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04", // 𢴇
+ 0x22d08: "\x01\x02\x01\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01", // 𢴈
+ 0x22d09: "\x01\x02\x01\x01\x02\x02\x03\x04\x01\x01\x02\x03\x04", // 𢴉
+ 0x22d0a: "\x01\x02\x01\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 𢴊
+ 0x22d0b: "\x01\x02\x01\x05\x05\x04\x04\x04\x04\x03\x05\x04\x04\x04", // 𢴋
+ 0x22d0c: "\x01\x02\x01\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01", // 𢴌
+ 0x22d0d: "\x01\x02\x01\x04\x04\x05\x01\x02\x05\x01\x02\x01\x03\x04", // 𢴍
+ 0x22d0e: "\x01\x02\x01\x03\x05\x01\x01\x04\x03\x02\x05\x01\x03\x05", // 𢴎
+ 0x22d0f: "\x01\x02\x01\x04\x04\x01\x03\x04\x04\x03\x03\x01\x02\x01", // 𢴏
+ 0x22d10: "\x01\x02\x01\x03\x01\x02\x03\x04\x03\x05\x04\x03\x05\x04", // 𢴐
+ 0x22d11: "\x01\x02\x01\x03\x04\x03\x01\x02\x03\x04\x04\x05\x04\x04", // 𢴑
+ 0x22d12: "\x01\x02\x01\x04\x01\x02\x05\x01\x05\x02\x04\x04\x04\x04", // 𢴒
+ 0x22d13: "\x01\x02\x01\x01\x03\x02\x04\x02\x05\x01\x01\x01\x03\x05", // 𢴓
+ 0x22d14: "\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x03\x05\x04", // 𢴔
+ 0x22d15: "\x01\x02\x01\x04\x04\x05\x01\x02\x05\x02\x02\x01\x01\x02", // 𢴕
+ 0x22d16: "\x01\x02\x01\x04\x05\x01\x03\x03\x01\x03\x04\x02\x05\x01", // 𢴖
+ 0x22d17: "\x01\x02\x01\x04\x04\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 𢴗
+ 0x22d18: "\x01\x02\x01\x03\x05\x03\x01\x01\x02\x01\x02\x05\x01\x01", // 𢴘
+ 0x22d19: "\x01\x02\x01\x02\x05\x01\x01\x03\x04\x03\x04\x02\x03\x04", // 𢴙
+ 0x22d1a: "\x01\x02\x01\x01\x01\x02\x02\x01\x03\x02\x05\x01\x05", // 𢴚
+ 0x22d1b: "\x01\x02\x01\x03\x03\x01\x02\x01\x02\x01\x01\x02\x05\x04", // 𢴛
+ 0x22d1c: "\x01\x02\x01\x03\x02\x05\x01\x01\x04\x01\x03\x04\x03\x05", // 𢴜
+ 0x22d1d: "\x03\x01\x01\x02\x01\x02\x02\x05\x02\x01\x01\x03\x05", // 𢴝
+ 0x22d1e: "\x03\x01\x01\x03\x02\x05\x02\x02\x01\x03\x02\x03\x04\x03\x04", // 𢴞
+ 0x22d1f: "\x01\x02\x01\x05\x02\x01\x02\x05\x01\x01\x02\x03\x04", // 𢴟
+ 0x22d20: "\x01\x02\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05\x03\x04", // 𢴠
+ 0x22d21: "\x01\x02\x01\x01\x02\x05\x01\x02\x05\x05\x04\x03\x01\x01\x02", // 𢴡
+ 0x22d22: "\x01\x02\x01\x01\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 𢴢
+ 0x22d23: "\x01\x02\x01\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𢴣
+ 0x22d24: "\x01\x02\x01\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x03\x04", // 𢴤
+ 0x22d25: "\x01\x02\x01\x01\x02\x05\x01\x01\x02\x01\x04\x04\x05\x04\x04", // 𢴥
+ 0x22d26: "\x01\x02\x01\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𢴦
+ 0x22d27: "\x01\x02\x01\x01\x01\x01\x02\x05\x01\x01\x01\x03\x04\x05\x04", // 𢴧
+ 0x22d28: "\x01\x02\x01\x04\x01\x04\x03\x04\x05\x02\x05\x02\x02\x05\x01", // 𢴨
+ 0x22d29: "\x01\x02\x01\x03\x01\x04\x03\x01\x04\x05\x01\x01\x01\x01\x02", // 𢴩
+ 0x22d2a: "\x01\x02\x01\x01\x02\x01\x01\x01\x02\x03\x04\x03\x05\x03\x04", // 𢴪
+ 0x22d2b: "\x01\x02\x01\x05\x05\x05\x02\x05\x03\x04\x03\x05\x01\x01\x02", // 𢴫
+ 0x22d2c: "\x01\x02\x01\x01\x01\x02\x01\x04\x01\x03\x04\x01\x01\x02\x01", // 𢴬
+ 0x22d2d: "\x05\x05\x04\x04\x04\x04\x03\x05\x05\x02\x01\x05\x03\x01\x01\x02", // 𢴭
+ 0x22d2e: "\x01\x02\x01\x02\x01\x05\x03\x01\x05\x02\x02\x05\x02\x01\x01", // 𢴮
+ 0x22d2f: "\x01\x02\x01\x02\x01\x02\x01\x01\x02\x01\x04\x03\x01\x02\x05\x01", // 𢴯
+ 0x22d30: "\x01\x02\x01\x05\x05\x04\x05\x05\x04\x01\x03\x04\x05\x03\x04", // 𢴰
+ 0x22d31: "\x01\x02\x01\x05\x04\x05\x04\x05\x04\x05\x05\x04\x02\x03\x04", // 𢴱
+ 0x22d32: "\x01\x02\x01\x01\x01\x01\x02\x05\x03\x05\x05\x04\x02\x03\x04", // 𢴲
+ 0x22d33: "\x04\x04\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03\x03\x01\x01\x02", // 𢴳
+ 0x22d34: "\x01\x02\x01\x02\x01\x03\x05\x04\x02\x02\x04\x01\x03\x05\x03\x04", // 𢴴
+ 0x22d35: "\x01\x02\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04", // 𢴵
+ 0x22d36: "\x01\x02\x01\x04\x01\x01\x02\x01\x01\x02\x05\x03\x05\x03\x04", // 𢴶
+ 0x22d37: "\x01\x03\x04\x04\x03\x01\x01\x02\x05\x03\x01\x01\x03\x01\x01\x02", // 𢴷
+ 0x22d38: "\x01\x02\x01\x03\x05\x01\x02\x01\x05\x03\x01\x01\x03\x01\x01\x05", // 𢴸
+ 0x22d39: "\x01\x02\x01\x03\x03\x04\x03\x04\x03\x04\x03\x04\x01\x02\x01", // 𢴹
+ 0x22d3a: "\x01\x03\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04\x03\x01\x01\x02", // 𢴺
+ 0x22d3b: "\x01\x02\x01\x01\x02\x03\x04\x01\x02\x03\x04\x02\x01\x05\x04", // 𢴻
+ 0x22d3c: "\x01\x02\x01\x03\x05\x03\x02\x01\x01\x05\x01\x01\x03\x05\x04", // 𢴼
+ 0x22d3d: "\x03\x01\x01\x02\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 𢴽
+ 0x22d3e: "\x01\x02\x01\x03\x01\x01\x01\x02\x01\x01\x01\x04\x05\x04\x04", // 𢴾
+ 0x22d3f: "\x01\x02\x01\x01\x02\x02\x05\x01\x01\x01\x02\x03\x05\x01\x01", // 𢴿
+ 0x22d40: "\x01\x02\x01\x03\x01\x04\x03\x01\x04\x03\x05\x02\x05\x01\x01", // 𢵀
+ 0x22d41: "\x01\x02\x01\x03\x05\x01\x01\x03\x05\x04\x03\x01\x02\x03\x04", // 𢵁
+ 0x22d42: "\x01\x02\x01\x03\x04\x02\x01\x05\x01\x01\x02\x01\x05\x04", // 𢵂
+ 0x22d43: "\x01\x02\x01\x02\x05\x01\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 𢵃
+ 0x22d44: "\x01\x02\x01\x03\x04\x03\x04\x03\x04\x03\x04\x02\x05\x01\x01", // 𢵄
+ 0x22d45: "\x01\x02\x01\x03\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𢵅
+ 0x22d46: "\x01\x02\x01\x01\x04\x05\x02\x04\x04\x04\x04\x01\x01\x05\x04", // 𢵆
+ 0x22d47: "\x01\x02\x01\x02\x01\x02\x01\x01\x02\x01\x04\x05\x05\x03\x04", // 𢵇
+ 0x22d48: "\x01\x02\x01\x04\x03\x01\x01\x02\x01\x04\x03\x01\x02\x05\x01", // 𢵈
+ 0x22d49: "\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x04\x05\x04", // 𢵉
+ 0x22d4a: "\x01\x02\x01\x04\x05\x02\x04\x01\x02\x05\x01\x04\x03\x01", // 𢵊
+ 0x22d4b: "\x01\x02\x01\x01\x02\x01\x03\x02\x05\x01\x01\x05\x02", // 𢵋
+ 0x22d4c: "\x01\x02\x01\x05\x02\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 𢵌
+ 0x22d4d: "\x01\x02\x01\x01\x03\x05\x04\x01\x03\x05\x04\x01\x02\x03\x04", // 𢵍
+ 0x22d4e: "\x01\x02\x01\x02\x01\x02\x01\x01\x01\x02\x04\x05\x05\x03\x04", // 𢵎
+ 0x22d4f: "\x01\x02\x01\x02\x01\x02\x01\x03\x03\x05\x04\x01\x04\x02\x02", // 𢵏
+ 0x22d50: "\x01\x02\x01\x03\x05\x01\x03\x03\x05\x04\x01\x01\x03\x04\x04", // 𢵐
+ 0x22d51: "\x01\x02\x01\x01\x02\x02\x01\x01\x01\x04\x03\x01\x01\x03\x04", // 𢵑
+ 0x22d52: "\x01\x02\x01\x01\x02\x01\x02\x01\x03\x04\x05\x03\x02\x05\x01", // 𢵒
+ 0x22d53: "\x01\x02\x01\x01\x02\x01\x02\x05\x01\x04\x03\x01\x03\x03\x03", // 𢵓
+ 0x22d54: "\x01\x02\x01\x05\x01\x03\x05\x02\x01\x05\x02\x01\x05\x02\x01", // 𢵔
+ 0x22d55: "\x01\x02\x01\x01\x02\x02\x05\x01\x01\x01\x02\x03\x01\x01\x02", // 𢵕
+ 0x22d56: "\x01\x02\x01\x01\x02\x01\x02\x02\x05\x01\x03\x05\x05\x01\x05", // 𢵖
+ 0x22d57: "\x01\x02\x01\x01\x02\x01\x02\x03\x05\x04\x03\x01\x02\x03\x04", // 𢵗
+ 0x22d58: "\x01\x02\x01\x01\x02\x01\x02\x03\x05\x03\x01\x01\x02\x05\x02", // 𢵘
+ 0x22d59: "\x01\x02\x01\x01\x02\x01\x02\x03\x05\x05\x03\x01\x02\x03\x04", // 𢵙
+ 0x22d5a: "\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x02\x01\x02\x05\x01", // 𢵚
+ 0x22d5b: "\x01\x02\x01\x01\x02\x01\x02\x03\x04\x04\x03\x01\x02\x03\x04", // 𢵛
+ 0x22d5c: "\x01\x02\x01\x03\x01\x01\x02\x03\x01\x01\x02\x03\x01\x01\x02", // 𢵜
+ 0x22d5d: "\x01\x02\x01\x03\x05\x03\x01\x02\x01\x02\x02\x05\x01\x02\x01", // 𢵝
+ 0x22d5e: "\x01\x02\x01\x03\x05\x01\x03\x03\x01\x01\x01\x02\x01\x01\x01", // 𢵞
+ 0x22d5f: "\x01\x02\x01\x02\x05\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𢵟
+ 0x22d60: "\x03\x05\x03\x05\x01\x01\x02\x05\x03\x01\x05\x02\x03\x01\x01\x02", // 𢵠
+ 0x22d61: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x03\x04\x03\x01\x01\x02", // 𢵡
+ 0x22d62: "\x01\x02\x01\x05\x01\x01\x02\x02\x05\x01\x01\x04\x01\x03\x04", // 𢵢
+ 0x22d63: "\x01\x02\x01\x01\x02\x01\x05\x05\x01\x02\x01\x04\x05\x04\x04", // 𢵣
+ 0x22d64: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x04\x04\x03\x01\x01\x02", // 𢵤
+ 0x22d65: "\x03\x01\x02\x03\x04\x02\x04\x03\x02\x05\x01\x01\x03\x01\x01\x02", // 𢵥
+ 0x22d66: "\x01\x02\x01\x03\x01\x01\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 𢵦
+ 0x22d67: "\x01\x02\x01\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01", // 𢵧
+ 0x22d68: "\x01\x02\x01\x04\x03\x01\x01\x02\x05\x02\x05\x04\x03\x01\x01\x02", // 𢵨
+ 0x22d69: "\x03\x01\x01\x03\x05\x02\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 𢵩
+ 0x22d6a: "\x01\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01\x04\x01\x03\x04", // 𢵪
+ 0x22d6b: "\x01\x02\x01\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x03\x04", // 𢵫
+ 0x22d6c: "\x03\x01\x01\x03\x05\x01\x05\x05\x01\x05\x01\x02\x02\x01\x03\x04", // 𢵬
+ 0x22d6d: "\x01\x02\x01\x01\x02\x02\x01\x03\x04\x03\x04\x02\x03\x04", // 𢵭
+ 0x22d6e: "\x01\x02\x01\x05\x04\x05\x02\x03\x02\x05\x03\x04\x02\x05\x01", // 𢵮
+ 0x22d6f: "\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𢵯
+ 0x22d70: "\x01\x02\x01\x05\x05\x04\x04\x04\x04\x03\x04\x01\x02\x05\x01", // 𢵰
+ 0x22d71: "\x01\x02\x01\x05\x01\x01\x02\x02\x05\x01\x01\x01\x01\x03\x02", // 𢵱
+ 0x22d72: "\x01\x02\x01\x02\x05\x01\x04\x01\x04\x03\x01\x03\x03\x03\x03", // 𢵲
+ 0x22d73: "\x01\x02\x01\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04", // 𢵳
+ 0x22d74: "\x01\x02\x01\x02\x01\x02\x01\x05\x01\x01\x04\x05\x02\x05\x02", // 𢵴
+ 0x22d75: "\x01\x02\x01\x01\x02\x02\x02\x05\x01\x01\x01\x02\x03\x04", // 𢵵
+ 0x22d76: "\x01\x02\x01\x03\x04\x01\x01\x02\x04\x03\x01\x01\x05\x02\x05", // 𢵶
+ 0x22d77: "\x01\x02\x01\x04\x04\x05\x01\x01\x01\x02\x02\x05\x01\x02\x02", // 𢵷
+ 0x22d78: "\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02\x03\x04", // 𢵸
+ 0x22d79: "\x01\x02\x01\x04\x01\x03\x04\x01\x03\x01\x05\x05\x04\x01\x04", // 𢵹
+ 0x22d7a: "\x01\x02\x01\x04\x04\x01\x01\x02\x02\x01\x01\x01\x03\x04\x05", // 𢵺
+ 0x22d7b: "\x01\x02\x01\x04\x04\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 𢵻
+ 0x22d7c: "\x01\x02\x01\x01\x02\x01\x02\x01\x03\x04\x01\x05\x05\x03\x04", // 𢵼
+ 0x22d7d: "\x01\x02\x01\x05\x02\x01\x02\x01\x01\x02\x05\x01\x02\x03\x04", // 𢵽
+ 0x22d7e: "\x01\x02\x01\x03\x04\x04\x03\x04\x01\x04\x03\x01\x02\x05\x01", // 𢵾
+ 0x22d7f: "\x03\x02\x05\x01\x01\x04\x01\x05\x03\x02\x01\x05\x04\x03\x01\x01\x02", // 𢵿
+ 0x22d80: "\x01\x02\x01\x02\x05\x02\x02\x01\x03\x01\x01\x01\x02\x01\x01\x01", // 𢶀
+ 0x22d81: "\x01\x02\x01\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x04\x01\x02", // 𢶁
+ 0x22d82: "\x01\x02\x01\x04\x05\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 𢶂
+ 0x22d83: "\x01\x02\x01\x04\x03\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𢶃
+ 0x22d84: "\x01\x02\x01\x01\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𢶄
+ 0x22d85: "\x01\x02\x01\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x03\x04\x01", // 𢶅
+ 0x22d86: "\x01\x02\x01\x02\x05\x01\x01\x03\x05\x03\x04\x05\x03\x05\x03\x04", // 𢶆
+ 0x22d87: "\x01\x02\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x05\x01\x03", // 𢶇
+ 0x22d88: "\x01\x02\x01\x05\x01\x05\x01\x02\x01\x01\x02\x01\x02\x05\x01", // 𢶈
+ 0x22d89: "\x01\x02\x01\x01\x04\x05\x02\x04\x01\x03\x04\x03\x05\x05\x01\x05", // 𢶉
+ 0x22d8a: "\x01\x02\x01\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x05\x01\x05", // 𢶊
+ 0x22d8b: "\x01\x02\x01\x01\x02\x01\x02\x05\x01\x03\x01\x02\x01\x05\x03\x04", // 𢶋
+ 0x22d8c: "\x01\x02\x01\x03\x01\x04\x03\x01\x04\x04\x04\x01\x02\x03\x04\x03", // 𢶌
+ 0x22d8d: "\x01\x02\x01\x01\x01\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𢶍
+ 0x22d8e: "\x01\x02\x01\x03\x04\x01\x01\x02\x04\x03\x01\x03\x03\x05\x04\x04", // 𢶎
+ 0x22d8f: "\x01\x02\x01\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04\x02\x02", // 𢶏
+ 0x22d90: "\x01\x02\x01\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x04\x03\x01", // 𢶐
+ 0x22d91: "\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x01\x03\x05\x03\x04", // 𢶑
+ 0x22d92: "\x01\x02\x01\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𢶒
+ 0x22d93: "\x01\x02\x01\x03\x02\x05\x01\x01\x01\x04\x01\x04\x03\x01\x01\x02", // 𢶓
+ 0x22d94: "\x01\x02\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01\x04\x01\x05\x03", // 𢶔
+ 0x22d95: "\x01\x02\x01\x04\x03\x01\x03\x05\x01\x01\x02\x02\x04\x04\x04\x04", // 𢶕
+ 0x22d96: "\x01\x02\x01\x03\x04\x01\x03\x05\x01\x01\x05\x05\x03\x05\x03\x04", // 𢶖
+ 0x22d97: "\x05\x02\x02\x05\x02\x04\x01\x05\x03\x03\x01\x03\x04\x03\x01\x01\x02", // 𢶗
+ 0x22d98: "\x01\x02\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x04\x05\x04", // 𢶘
+ 0x22d99: "\x01\x02\x01\x03\x02\x01\x05\x01\x01\x01\x02\x01\x03\x05\x05\x04", // 𢶙
+ 0x22d9a: "\x01\x02\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x03\x02", // 𢶚
+ 0x22d9b: "\x01\x02\x01\x05\x02\x01\x03\x05\x05\x04\x02\x03\x04\x01\x03\x02", // 𢶛
+ 0x22d9c: "\x04\x01\x05\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01\x03\x01\x01\x02", // 𢶜
+ 0x22d9d: "\x01\x02\x01\x05\x01\x01\x01\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 𢶝
+ 0x22d9e: "\x01\x02\x01\x03\x05\x05\x01\x01\x03\x01\x03\x04\x04\x04\x04\x04", // 𢶞
+ 0x22d9f: "\x03\x01\x01\x02\x02\x05\x02\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 𢶟
+ 0x22da0: "\x01\x02\x01\x03\x01\x04\x03\x01\x04\x02\x04\x03\x02\x05\x01\x01", // 𢶠
+ 0x22da1: "\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x03\x04\x03\x01\x01\x02", // 𢶡
+ 0x22da2: "\x01\x02\x01\x03\x02\x05\x02\x02\x01\x03\x05\x03\x03\x04\x03\x04", // 𢶢
+ 0x22da3: "\x01\x02\x01\x05\x04\x05\x04\x05\x04\x04\x05\x02\x05\x01\x01\x01", // 𢶣
+ 0x22da4: "\x01\x02\x01\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x02\x03\x05", // 𢶤
+ 0x22da5: "\x01\x02\x01\x04\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02", // 𢶥
+ 0x22da6: "\x01\x02\x01\x03\x05\x04\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𢶦
+ 0x22da7: "\x01\x02\x01\x04\x01\x04\x03\x01\x03\x05\x01\x01\x02\x02\x03\x04", // 𢶧
+ 0x22da8: "\x01\x02\x01\x04\x03\x01\x03\x05\x01\x01\x02\x02\x04\x03\x03\x04", // 𢶨
+ 0x22da9: "\x01\x02\x01\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x05\x03\x04", // 𢶩
+ 0x22daa: "\x01\x02\x01\x01\x02\x01\x01\x02\x05\x01\x01\x01\x02\x05\x03\x04", // 𢶪
+ 0x22dab: "\x01\x02\x01\x01\x02\x02\x01\x01\x01\x02\x05\x01\x03\x01\x02\x01", // 𢶫
+ 0x22dac: "\x01\x02\x01\x01\x02\x01\x02\x03\x05\x04\x05\x04\x01\x01\x01\x02", // 𢶬
+ 0x22dad: "\x01\x02\x01\x01\x02\x01\x02\x02\x05\x01\x01\x03\x05\x05\x01\x05", // 𢶭
+ 0x22dae: "\x01\x02\x01\x02\x05\x02\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𢶮
+ 0x22daf: "\x01\x02\x01\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𢶯
+ 0x22db0: "\x01\x02\x01\x01\x02\x01\x02\x03\x05\x03\x03\x04\x04\x05\x04\x04", // 𢶰
+ 0x22db1: "\x01\x02\x01\x03\x02\x05\x01\x01\x03\x01\x03\x04\x01\x02\x03\x04", // 𢶱
+ 0x22db2: "\x01\x02\x01\x03\x01\x02\x03\x04\x04\x03\x03\x04\x04\x05\x04\x04", // 𢶲
+ 0x22db3: "\x01\x02\x01\x01\x01\x05\x04\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 𢶳
+ 0x22db4: "\x01\x02\x01\x04\x03\x01\x05\x05\x04\x05\x05\x04\x04\x05\x04\x04", // 𢶴
+ 0x22db5: "\x01\x02\x01\x05\x01\x03\x02\x04\x01\x03\x04\x05\x02\x02\x05\x02", // 𢶵
+ 0x22db6: "\x01\x02\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 𢶶
+ 0x22db7: "\x01\x02\x01\x03\x05\x03\x05\x01\x01\x02\x05\x03\x03\x01\x01\x02", // 𢶷
+ 0x22db8: "\x01\x02\x01\x04\x01\x02\x05\x02\x05\x01\x01\x03\x01\x02\x03\x04", // 𢶸
+ 0x22db9: "\x01\x02\x01\x02\x05\x01\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 𢶹
+ 0x22dba: "\x01\x02\x01\x04\x04\x05\x03\x04\x03\x05\x03\x02\x01\x05\x01\x01", // 𢶺
+ 0x22dbb: "\x01\x02\x01\x01\x02\x02\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𢶻
+ 0x22dbc: "\x01\x02\x01\x02\x05\x02\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 𢶼
+ 0x22dbd: "\x01\x02\x01\x05\x02\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01", // 𢶽
+ 0x22dbe: "\x01\x02\x01\x03\x01\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𢶾
+ 0x22dbf: "\x01\x02\x01\x03\x03\x01\x02\x02\x05\x01\x01\x01\x04\x05\x04", // 𢶿
+ 0x22dc0: "\x01\x02\x01\x03\x04\x01\x02\x05\x01\x01\x02\x02\x04\x05\x04\x04", // 𢷀
+ 0x22dc1: "\x01\x02\x01\x03\x05\x01\x01\x01\x02\x02\x05\x04\x03\x01\x01\x02", // 𢷁
+ 0x22dc2: "\x01\x02\x01\x02\x01\x03\x05\x04\x05\x04\x04\x03\x01\x02\x03\x04", // 𢷂
+ 0x22dc3: "\x01\x02\x01\x05\x01\x01\x02\x02\x05\x01\x01\x04\x01\x02\x05\x02", // 𢷃
+ 0x22dc4: "\x01\x02\x01\x04\x04\x01\x01\x03\x01\x04\x03\x03\x04\x05\x03\x04", // 𢷄
+ 0x22dc5: "\x01\x02\x01\x02\x05\x01\x02\x01\x02\x01\x03\x05\x04\x02\x05\x01", // 𢷅
+ 0x22dc6: "\x03\x01\x01\x03\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 𢷆
+ 0x22dc7: "\x01\x02\x01\x01\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x03\x04", // 𢷇
+ 0x22dc8: "\x01\x02\x01\x04\x04\x05\x03\x05\x05\x01\x03\x05\x02\x02\x05\x02", // 𢷈
+ 0x22dc9: "\x01\x02\x01\x04\x01\x04\x03\x01\x03\x01\x01\x05\x03\x01\x01\x05", // 𢷉
+ 0x22dca: "\x01\x02\x01\x04\x03\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 𢷊
+ 0x22dcb: "\x01\x02\x01\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04\x01\x02\x04", // 𢷋
+ 0x22dcc: "\x01\x02\x01\x01\x02\x01\x04\x05\x01\x03\x02\x05\x01\x01\x02\x03\x04", // 𢷌
+ 0x22dcd: "\x01\x02\x01\x03\x04\x04\x03\x01\x02\x01\x05\x01\x01\x04\x05\x04\x04", // 𢷍
+ 0x22dce: "\x01\x02\x01\x05\x02\x03\x05\x02\x03\x05\x02\x02\x01\x03\x04\x01\x02", // 𢷎
+ 0x22dcf: "\x01\x02\x01\x03\x02\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 𢷏
+ 0x22dd0: "\x01\x02\x01\x01\x02\x04\x05\x02\x05\x01\x02\x01\x05\x04\x02\x01\x03\x04", // 𢷐
+ 0x22dd1: "\x01\x02\x01\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x04\x04\x04\x04", // 𢷑
+ 0x22dd2: "\x01\x02\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 𢷒
+ 0x22dd3: "\x01\x02\x01\x01\x02\x01\x03\x02\x03\x04\x01\x02\x01\x03\x02\x03\x04", // 𢷓
+ 0x22dd4: "\x01\x02\x01\x04\x01\x05\x03\x03\x01\x01\x03\x04\x01\x02\x05\x01\x02", // 𢷔
+ 0x22dd5: "\x01\x02\x01\x03\x04\x04\x03\x05\x03\x03\x03\x02\x05\x01\x01\x03\x05", // 𢷕
+ 0x22dd6: "\x01\x02\x01\x05\x05\x04\x05\x05\x04\x01\x05\x05\x04\x05\x05\x04\x05", // 𢷖
+ 0x22dd7: "\x01\x02\x01\x01\x02\x02\x01\x01\x01\x05\x04\x03\x02\x03\x04\x03\x04", // 𢷗
+ 0x22dd8: "\x01\x02\x01\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x03\x01\x01\x02", // 𢷘
+ 0x22dd9: "\x01\x02\x01\x03\x01\x04\x03\x01\x04\x04\x04\x05\x03\x05\x01\x02\x01", // 𢷙
+ 0x22dda: "\x01\x02\x01\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01\x02\x02", // 𢷚
+ 0x22ddb: "\x01\x02\x01\x01\x04\x05\x02\x04\x01\x03\x04\x03\x05\x04\x03\x05\x04", // 𢷛
+ 0x22ddc: "\x01\x02\x01\x01\x02\x05\x01\x02\x03\x04\x01\x02\x05\x01\x02\x03\x04", // 𢷜
+ 0x22ddd: "\x01\x02\x01\x03\x05\x01\x01\x02\x03\x05\x01\x01\x02\x04\x05\x04\x04", // 𢷝
+ 0x22dde: "\x01\x02\x01\x01\x02\x02\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 𢷞
+ 0x22ddf: "\x01\x02\x01\x01\x02\x04\x05\x02\x05\x01\x02\x01\x05\x02\x01\x03\x04", // 𢷟
+ 0x22de0: "\x01\x02\x01\x03\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𢷠
+ 0x22de1: "\x01\x02\x01\x01\x02\x05\x03\x04\x01\x02\x05\x03\x04\x01\x02\x03\x04", // 𢷡
+ 0x22de2: "\x01\x02\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x05\x02", // 𢷢
+ 0x22de3: "\x01\x02\x01\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 𢷣
+ 0x22de4: "\x01\x02\x01\x04\x04\x05\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𢷤
+ 0x22de5: "\x01\x02\x01\x04\x03\x01\x02\x03\x04\x01\x02\x02\x01\x01\x01\x03\x04", // 𢷥
+ 0x22de6: "\x01\x02\x01\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x02", // 𢷦
+ 0x22de7: "\x01\x02\x01\x05\x03\x02\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𢷧
+ 0x22de8: "\x01\x02\x01\x03\x04\x01\x02\x05\x01\x03\x01\x01\x02\x03\x01\x01\x02", // 𢷨
+ 0x22de9: "\x01\x02\x01\x03\x01\x04\x03\x01\x04\x03\x02\x01\x02\x01\x05\x04", // 𢷩
+ 0x22dea: "\x01\x02\x01\x03\x02\x05\x01\x01\x03\x05\x05\x04\x04\x04\x01\x02", // 𢷪
+ 0x22deb: "\x01\x02\x01\x03\x05\x04\x01\x03\x01\x01\x02\x05\x02\x04\x05\x04", // 𢷫
+ 0x22dec: "\x01\x02\x01\x01\x01\x05\x02\x05\x01\x02\x01\x02\x05\x01\x01\x02\x04", // 𢷬
+ 0x22ded: "\x01\x02\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05\x03\x04", // 𢷭
+ 0x22dee: "\x01\x02\x01\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x01\x02\x04", // 𢷮
+ 0x22def: "\x01\x02\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05\x01\x03\x04", // 𢷯
+ 0x22df0: "\x01\x02\x01\x01\x02\x05\x01\x01\x01\x02\x01\x05\x05\x05\x01\x02\x01", // 𢷰
+ 0x22df1: "\x01\x02\x01\x04\x01\x03\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 𢷱
+ 0x22df2: "\x01\x02\x01\x03\x02\x01\x01\x02\x05\x01\x01\x05\x01\x01\x01\x03\x04", // 𢷲
+ 0x22df3: "\x01\x02\x01\x03\x05\x02\x05\x03\x04\x02\x05\x01\x01\x01\x03\x05\x04", // 𢷳
+ 0x22df4: "\x01\x02\x01\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x05", // 𢷴
+ 0x22df5: "\x01\x02\x01\x03\x01\x01\x02\x02\x02\x02\x01\x03\x05\x04\x01\x05\x02", // 𢷵
+ 0x22df6: "\x01\x02\x01\x03\x05\x04\x05\x03\x03\x04\x01\x01\x02\x04\x03\x01\x02\x02", // 𢷶
+ 0x22df7: "\x01\x02\x01\x03\x01\x04\x03\x01\x04\x01\x02\x01\x03\x02\x05\x01\x01\x04", // 𢷷
+ 0x22df8: "\x01\x02\x01\x03\x03\x02\x02\x05\x02\x01\x03\x01\x02\x01\x03\x01\x03\x04", // 𢷸
+ 0x22df9: "\x01\x02\x01\x04\x01\x03\x02\x05\x01\x01\x02\x01\x01\x03\x05\x01\x02\x01", // 𢷹
+ 0x22dfa: "\x01\x02\x01\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𢷺
+ 0x22dfb: "\x01\x02\x01\x05\x05\x04\x04\x04\x04\x05\x05\x01\x03\x05\x03\x03\x03\x04", // 𢷻
+ 0x22dfc: "\x01\x02\x01\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x03\x01\x02\x01", // 𢷼
+ 0x22dfd: "\x01\x02\x01\x05\x01\x01\x05\x04\x01\x05\x03\x04\x01\x02\x03\x04", // 𢷽
+ 0x22dfe: "\x01\x02\x01\x01\x03\x02\x01\x01\x02\x03\x04\x05\x03\x04\x04\x05\x04\x04", // 𢷾
+ 0x22dff: "\x01\x02\x01\x02\x03\x04\x03\x01\x04\x01\x01\x01\x02\x01\x01\x05\x03\x04", // 𢷿
+ 0x22e00: "\x01\x02\x01\x01\x02\x01\x01\x01\x02\x03\x04\x05\x01\x01\x02\x04\x01\x03\x04", // 𢸀
+ 0x22e01: "\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x01\x03\x04\x03\x01\x01\x02", // 𢸁
+ 0x22e02: "\x01\x02\x01\x03\x02\x01\x01\x05\x05\x04\x05\x01\x01\x01\x04\x03\x03\x04", // 𢸂
+ 0x22e03: "\x01\x02\x01\x02\x05\x02\x02\x01\x01\x02\x01\x02\x05\x01\x03\x05\x03\x04", // 𢸃
+ 0x22e04: "\x01\x02\x01\x04\x03\x01\x03\x05\x01\x01\x02\x02\x05\x04\x01\x05\x04\x01", // 𢸄
+ 0x22e05: "\x01\x02\x01\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x03\x04\x01\x03\x04", // 𢸅
+ 0x22e06: "\x01\x02\x01\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x04\x03\x01\x01\x02", // 𢸆
+ 0x22e07: "\x02\x05\x02\x02\x01\x05\x04\x03\x05\x04\x01\x01\x05\x01\x05\x03\x01\x01\x02", // 𢸇
+ 0x22e08: "\x01\x02\x01\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01\x03\x05\x03\x04", // 𢸈
+ 0x22e09: "\x01\x02\x01\x02\x01\x05\x03\x01\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 𢸉
+ 0x22e0a: "\x01\x02\x01\x01\x03\x02\x05\x01\x05\x02\x01\x05\x04\x01\x03\x05\x03\x04", // 𢸊
+ 0x22e0b: "\x01\x02\x01\x01\x02\x01\x02\x01\x03\x04\x02\x04\x03\x02\x05\x02\x05\x01", // 𢸋
+ 0x22e0c: "\x01\x02\x01\x03\x01\x01\x03\x05\x02\x03\x02\x05\x01\x01\x02\x05\x02", // 𢸌
+ 0x22e0d: "\x01\x02\x01\x01\x04\x05\x02\x04\x01\x03\x04\x01\x03\x01\x01\x05\x03\x04", // 𢸍
+ 0x22e0e: "\x01\x02\x01\x04\x04\x05\x02\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05\x04", // 𢸎
+ 0x22e0f: "\x01\x02\x01\x04\x03\x01\x01\x03\x04\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02", // 𢸏
+ 0x22e10: "\x01\x02\x01\x03\x05\x01\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𢸐
+ 0x22e11: "\x01\x02\x01\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01\x03\x01\x03\x04", // 𢸑
+ 0x22e12: "\x01\x02\x01\x01\x02\x05\x01\x02\x05\x05\x04\x02\x05\x01\x01\x01\x03\x04", // 𢸒
+ 0x22e13: "\x01\x02\x01\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01", // 𢸓
+ 0x22e14: "\x01\x02\x01\x03\x03\x05\x04\x01\x04\x03\x05\x05\x04\x02\x05\x02\x02\x01", // 𢸔
+ 0x22e15: "\x01\x02\x01\x03\x01\x04\x03\x01\x04\x03\x05\x04\x05\x04\x01\x01\x01\x02", // 𢸕
+ 0x22e16: "\x01\x02\x01\x03\x03\x05\x04\x04\x03\x03\x05\x04\x04\x03\x03\x05\x04\x04", // 𢸖
+ 0x22e17: "\x01\x02\x01\x03\x04\x04\x03\x01\x02\x04\x02\x01\x05\x03\x01\x05\x03\x05", // 𢸗
+ 0x22e18: "\x01\x02\x01\x04\x04\x05\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 𢸘
+ 0x22e19: "\x01\x02\x01\x04\x04\x05\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 𢸙
+ 0x22e1a: "\x01\x02\x01\x01\x02\x02\x03\x05\x04\x01\x01\x01\x02\x04\x05\x04", // 𢸚
+ 0x22e1b: "\x01\x02\x01\x04\x01\x01\x01\x02\x05\x01\x03\x05\x01\x02\x01\x02\x05\x01", // 𢸛
+ 0x22e1c: "\x01\x02\x01\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02\x05\x02", // 𢸜
+ 0x22e1d: "\x01\x02\x01\x04\x04\x01\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01", // 𢸝
+ 0x22e1e: "\x01\x02\x01\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01\x05\x02", // 𢸞
+ 0x22e1f: "\x01\x02\x01\x03\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 𢸟
+ 0x22e20: "\x01\x02\x01\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x03\x04", // 𢸠
+ 0x22e21: "\x01\x02\x01\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𢸡
+ 0x22e22: "\x01\x02\x01\x03\x01\x04\x03\x01\x04\x05\x05\x01\x03\x05\x03\x03\x03\x04", // 𢸢
+ 0x22e23: "\x01\x02\x01\x04\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05\x03\x04", // 𢸣
+ 0x22e24: "\x01\x02\x01\x04\x03\x01\x01\x02\x01\x03\x01\x02\x03\x04\x01\x05\x05\x03\x04", // 𢸤
+ 0x22e25: "\x01\x02\x01\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x01\x03\x04\x05\x04", // 𢸥
+ 0x22e26: "\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04", // 𢸦
+ 0x22e27: "\x01\x02\x01\x03\x05\x01\x02\x01\x04\x03\x03\x04\x04\x03\x03\x04\x03\x01\x01\x02", // 𢸧
+ 0x22e28: "\x01\x02\x01\x01\x02\x05\x01\x02\x04\x05\x01\x03\x02\x05\x01\x01\x02\x03\x04", // 𢸨
+ 0x22e29: "\x01\x02\x01\x01\x05\x04\x01\x02\x01\x01\x01\x01\x03\x04\x03\x01\x02\x03\x04", // 𢸩
+ 0x22e2a: "\x01\x02\x01\x04\x05\x04\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𢸪
+ 0x22e2b: "\x01\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x02\x03\x04", // 𢸫
+ 0x22e2c: "\x01\x02\x01\x04\x01\x02\x05\x02\x02\x01\x02\x04\x01\x03\x04\x03\x05\x03\x04", // 𢸬
+ 0x22e2d: "\x04\x01\x04\x03\x01\x03\x05\x04\x01\x01\x05\x01\x05\x01\x01\x01\x03\x01\x01\x02", // 𢸭
+ 0x22e2e: "\x01\x02\x01\x03\x01\x01\x02\x02\x02\x02\x01\x01\x02\x03\x04\x01\x02\x03\x04", // 𢸮
+ 0x22e2f: "\x01\x02\x01\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x01\x03\x04", // 𢸯
+ 0x22e30: "\x01\x02\x01\x01\x05\x04\x01\x02\x01\x01\x05\x04\x01\x02\x01\x02\x05\x01\x01", // 𢸰
+ 0x22e31: "\x01\x02\x01\x01\x02\x01\x03\x05\x01\x02\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 𢸱
+ 0x22e32: "\x01\x02\x01\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x01\x02\x05\x01\x01", // 𢸲
+ 0x22e33: "\x01\x02\x01\x01\x02\x01\x02\x05\x01\x01\x02\x03\x02\x01\x01\x05\x05\x02\x01\x02", // 𢸳
+ 0x22e34: "\x01\x02\x01\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x03\x02\x01\x05\x01\x01", // 𢸴
+ 0x22e35: "\x01\x02\x01\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x01\x02\x01", // 𢸵
+ 0x22e36: "\x01\x02\x01\x02\x05\x01\x01\x01\x02\x02\x01\x01\x01\x05\x04\x05\x04\x05\x04", // 𢸶
+ 0x22e37: "\x01\x02\x01\x05\x01\x05\x05\x01\x05\x01\x02\x02\x01\x03\x04\x04\x05\x04", // 𢸷
+ 0x22e38: "\x01\x02\x01\x01\x02\x05\x01\x04\x03\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𢸸
+ 0x22e39: "\x01\x02\x01\x01\x03\x02\x05\x01\x01\x04\x04\x05\x03\x05\x04\x01\x02\x03\x04", // 𢸹
+ 0x22e3a: "\x01\x02\x01\x01\x02\x01\x02\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 𢸺
+ 0x22e3b: "\x01\x02\x01\x02\x02\x04\x03\x01\x02\x05\x01\x01\x01\x02\x02\x01\x01\x05\x04", // 𢸻
+ 0x22e3c: "\x01\x02\x01\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x05\x01\x01\x02\x05\x02", // 𢸼
+ 0x22e3d: "\x01\x02\x01\x03\x01\x04\x03\x01\x04\x03\x05\x04\x01\x05\x04\x01\x01\x01\x02", // 𢸽
+ 0x22e3e: "\x01\x02\x01\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x01\x03\x04", // 𢸾
+ 0x22e3f: "\x01\x02\x01\x03\x01\x04\x03\x01\x04\x01\x03\x01\x01\x01\x02\x01\x01\x01\x05", // 𢸿
+ 0x22e40: "\x01\x02\x01\x03\x01\x02\x03\x04\x01\x02\x05\x01\x02\x03\x04\x03\x05\x03\x04", // 𢹀
+ 0x22e41: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x05\x03\x01\x05\x03\x05\x03\x01\x01\x02", // 𢹁
+ 0x22e42: "\x01\x02\x01\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x02\x05", // 𢹂
+ 0x22e43: "\x01\x02\x01\x03\x05\x03\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x03\x04", // 𢹃
+ 0x22e44: "\x01\x02\x01\x05\x02\x03\x05\x02\x03\x05\x02\x02\x03\x04\x03\x04\x01\x01\x02", // 𢹄
+ 0x22e45: "\x01\x02\x01\x04\x04\x01\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 𢹅
+ 0x22e46: "\x01\x02\x01\x04\x01\x01\x01\x02\x05\x01\x01\x05\x03\x05\x03\x02\x05\x01\x01", // 𢹆
+ 0x22e47: "\x01\x02\x01\x02\x05\x04\x03\x01\x02\x01\x01\x01\x03\x04\x04\x04\x04\x04\x04", // 𢹇
+ 0x22e48: "\x01\x02\x01\x03\x01\x04\x03\x01\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05", // 𢹈
+ 0x22e49: "\x01\x02\x01\x03\x01\x02\x03\x04\x05\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𢹉
+ 0x22e4a: "\x01\x02\x01\x04\x03\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05\x03\x04", // 𢹊
+ 0x22e4b: "\x01\x02\x01\x03\x03\x05\x04\x01\x04\x03\x05\x05\x04\x03\x02\x05\x02\x02\x01", // 𢹋
+ 0x22e4c: "\x01\x02\x01\x05\x01\x03\x02\x04\x01\x03\x04\x03\x01\x01\x02\x04\x05\x04", // 𢹌
+ 0x22e4d: "\x01\x02\x01\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x04\x03\x01\x01\x05\x03\x04", // 𢹍
+ 0x22e4e: "\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x02\x02\x02\x01\x02\x01\x05\x01\x05\x03\x05\x04", // 𢹎
+ 0x22e4f: "\x03\x02\x01\x01\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x04\x03\x01\x01\x02", // 𢹏
+ 0x22e50: "\x01\x02\x01\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x01\x02\x03\x04", // 𢹐
+ 0x22e51: "\x01\x02\x01\x04\x04\x05\x03\x05\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 𢹑
+ 0x22e52: "\x01\x02\x01\x04\x01\x01\x01\x02\x05\x01\x04\x03\x03\x04\x04\x03\x03\x04\x05\x04", // 𢹒
+ 0x22e53: "\x01\x02\x01\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01\x02\x03\x04", // 𢹓
+ 0x22e54: "\x01\x02\x01\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 𢹔
+ 0x22e55: "\x01\x02\x01\x01\x02\x01\x02\x03\x04\x01\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01", // 𢹕
+ 0x22e56: "\x01\x02\x01\x04\x03\x01\x03\x02\x05\x01\x01\x01\x01\x02\x05\x01\x01\x05\x03\x04", // 𢹖
+ 0x22e57: "\x01\x02\x01\x01\x02\x01\x04\x03\x01\x01\x01\x02\x03\x01\x03\x04\x04\x05\x04", // 𢹗
+ 0x22e58: "\x01\x02\x01\x02\x01\x02\x01\x03\x05\x02\x05\x01\x03\x01\x03\x04\x03\x01\x01\x02", // 𢹘
+ 0x22e59: "\x01\x02\x01\x04\x03\x03\x04\x04\x03\x03\x04\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 𢹙
+ 0x22e5a: "\x01\x02\x01\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x05\x01\x01\x04\x05\x05\x04", // 𢹚
+ 0x22e5b: "\x01\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x01\x01\x01\x02", // 𢹛
+ 0x22e5c: "\x01\x02\x01\x01\x02\x02\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𢹜
+ 0x22e5d: "\x01\x02\x01\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 𢹝
+ 0x22e5e: "\x01\x02\x01\x04\x05\x01\x03\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 𢹞
+ 0x22e5f: "\x01\x02\x01\x02\x01\x01\x02\x04\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𢹟
+ 0x22e60: "\x01\x02\x01\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x02\x04\x03\x01", // 𢹠
+ 0x22e61: "\x01\x02\x01\x02\x05\x01\x02\x01\x02\x01\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01", // 𢹡
+ 0x22e62: "\x01\x02\x01\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 𢹢
+ 0x22e63: "\x01\x02\x01\x03\x01\x01\x03\x04\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 𢹣
+ 0x22e64: "\x01\x02\x01\x01\x02\x01\x02\x01\x03\x04\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03", // 𢹤
+ 0x22e65: "\x01\x02\x01\x01\x03\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x04\x04\x01\x02\x01", // 𢹥
+ 0x22e66: "\x01\x02\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x03\x05\x03\x04", // 𢹦
+ 0x22e67: "\x01\x02\x01\x01\x02\x05\x03\x05\x01\x01\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 𢹧
+ 0x22e68: "\x01\x02\x01\x05\x05\x04\x04\x04\x04\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 𢹨
+ 0x22e69: "\x01\x02\x01\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 𢹩
+ 0x22e6a: "\x01\x02\x01\x04\x03\x01\x02\x03\x04\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 𢹪
+ 0x22e6b: "\x01\x01\x01\x02\x05\x03\x03\x01\x01\x02\x04\x04\x05\x04\x05\x04\x03\x04\x02\x05\x02", // 𢹫
+ 0x22e6c: "\x01\x02\x01\x05\x05\x05\x02\x05\x01\x05\x02\x01\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 𢹬
+ 0x22e6d: "\x05\x05\x05\x02\x05\x01\x05\x02\x01\x05\x03\x02\x04\x01\x01\x01\x02\x01\x03\x01\x01\x02", // 𢹭
+ 0x22e6e: "\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x01\x02\x01", // 𢹮
+ 0x22e6f: "\x01\x02\x01\x02\x05\x01\x01\x05\x02\x02\x05\x02\x01\x03\x04\x04\x03\x01\x02\x03\x04", // 𢹯
+ 0x22e70: "\x01\x02\x01\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x01\x04\x03\x03\x04", // 𢹰
+ 0x22e71: "\x01\x02\x01\x03\x01\x04\x03\x01\x04\x05\x01\x01\x02\x03\x02\x01\x01\x05\x05\x02\x01\x02", // 𢹱
+ 0x22e72: "\x01\x02\x01\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x05\x01\x01\x03\x02\x05\x01", // 𢹲
+ 0x22e73: "\x01\x02\x01\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04\x02\x05\x02\x02\x01", // 𢹳
+ 0x22e74: "\x01\x02\x01\x02\x05\x05\x04\x05\x05\x04\x05\x02\x02\x05\x05\x04\x05\x05\x04\x05\x04", // 𢹴
+ 0x22e75: "\x01\x02\x01\x01\x02\x01\x02\x05\x02\x04\x01\x03\x04\x01\x03\x03\x01\x01\x02\x01", // 𢹵
+ 0x22e76: "\x01\x02\x01\x05\x01\x01\x02\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x04\x04\x04\x04", // 𢹶
+ 0x22e77: "\x01\x02\x01\x04\x04\x05\x03\x05\x04\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𢹷
+ 0x22e78: "\x01\x02\x01\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x02\x02\x01\x01\x01\x05\x04", // 𢹸
+ 0x22e79: "\x01\x02\x01\x01\x02\x01\x02\x01\x02\x05\x01\x02\x05\x03\x01\x01\x02\x05\x02\x02\x01", // 𢹹
+ 0x22e7a: "\x01\x02\x01\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 𢹺
+ 0x22e7b: "\x01\x02\x01\x03\x02\x05\x01\x01\x01\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𢹻
+ 0x22e7c: "\x01\x02\x01\x04\x01\x03\x04\x03\x04\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𢹼
+ 0x22e7d: "\x01\x02\x01\x03\x01\x04\x03\x01\x04\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x01", // 𢹽
+ 0x22e7e: "\x01\x02\x01\x03\x02\x05\x01\x05\x01\x02\x01\x02\x01\x05\x01\x01\x04\x05\x02\x05\x02", // 𢹾
+ 0x22e7f: "\x01\x02\x01\x04\x05\x02\x04\x02\x05\x01\x02\x02\x01\x01\x01\x02\x05\x01\x04\x03\x01", // 𢹿
+ 0x22e80: "\x01\x02\x01\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 𢺀
+ 0x22e81: "\x01\x02\x01\x01\x02\x05\x02\x02\x01\x03\x03\x02\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 𢺁
+ 0x22e82: "\x01\x02\x01\x02\x01\x05\x03\x01\x05\x01\x02\x01\x04\x03\x01\x01\x01\x02\x04\x05\x04", // 𢺂
+ 0x22e83: "\x01\x02\x01\x01\x02\x01\x02\x02\x05\x02\x05\x05\x04\x02\x03\x04\x02\x05\x01\x02\x01\x04", // 𢺃
+ 0x22e84: "\x01\x02\x01\x05\x01\x01\x02\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x05\x02\x02\x01\x02", // 𢺄
+ 0x22e85: "\x01\x02\x01\x03\x01\x04\x03\x01\x04\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 𢺅
+ 0x22e86: "\x01\x02\x01\x04\x01\x05\x02\x05\x01\x03\x05\x04\x01\x04\x01\x04\x03\x01\x03\x05\x04", // 𢺆
+ 0x22e87: "\x01\x02\x01\x01\x02\x01\x02\x03\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x03\x04", // 𢺇
+ 0x22e88: "\x01\x02\x01\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04", // 𢺈
+ 0x22e89: "\x01\x02\x01\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𢺉
+ 0x22e8a: "\x01\x02\x01\x01\x02\x01\x02\x03\x04\x04\x03\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𢺊
+ 0x22e8b: "\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x03\x01\x01\x02", // 𢺋
+ 0x22e8c: "\x01\x02\x01\x01\x03\x04\x01\x02\x02\x01\x01\x02\x03\x04\x01\x02\x02\x01\x01\x02\x03\x04", // 𢺌
+ 0x22e8d: "\x01\x02\x01\x01\x02\x02\x05\x05\x05\x02\x05\x03\x04\x01\x05\x04\x04\x05\x04\x04\x05", // 𢺍
+ 0x22e8e: "\x01\x02\x01\x03\x05\x01\x01\x05\x05\x05\x02\x05\x03\x04\x01\x05\x04\x04\x05\x04\x04\x05", // 𢺎
+ 0x22e8f: "\x01\x02\x01\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x03\x04\x01\x03\x04\x03\x01\x01\x02", // 𢺏
+ 0x22e90: "\x01\x02\x01\x01\x02\x01\x02\x01\x02\x01\x03\x05\x01\x02\x01\x03\x05\x04\x01\x01\x05\x04", // 𢺐
+ 0x22e91: "\x01\x02\x01\x04\x01\x05\x02\x05\x01\x03\x05\x04\x01\x04\x03\x01\x01\x01\x02\x03\x05\x04", // 𢺑
+ 0x22e92: "\x01\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x01\x01\x03\x04\x01\x01\x02", // 𢺒
+ 0x22e93: "\x01\x02\x01\x01\x04\x05\x02\x04\x04\x04\x04\x04\x04\x01\x03\x04\x04\x03\x03\x01\x02\x01", // 𢺓
+ 0x22e94: "\x01\x02\x01\x04\x04\x05\x01\x01\x02\x01\x03\x05\x02\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𢺔
+ 0x22e95: "\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x02\x01\x02\x01\x05\x01\x05\x03\x05\x03\x05\x04", // 𢺕
+ 0x22e96: "\x01\x02\x01\x02\x05\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 𢺖
+ 0x22e97: "\x01\x02\x01\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 𢺗
+ 0x22e98: "\x01\x02\x01\x02\x05\x01\x02\x05\x01\x01\x03\x01\x02\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 𢺘
+ 0x22e99: "\x01\x02\x01\x03\x01\x04\x03\x01\x04\x01\x02\x05\x01\x02\x05\x03\x01\x01\x02\x05\x02\x02\x01", // 𢺙
+ 0x22e9a: "\x01\x02\x01\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𢺚
+ 0x22e9b: "\x01\x02\x01\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 𢺛
+ 0x22e9c: "\x01\x02\x01\x03\x01\x04\x03\x01\x04\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𢺜
+ 0x22e9d: "\x01\x02\x01\x01\x02\x02\x05\x05\x04\x04\x04\x04\x02\x05\x03\x04\x01\x02\x05\x02\x02\x01", // 𢺝
+ 0x22e9e: "\x01\x02\x01\x01\x04\x05\x02\x04\x01\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x01\x01", // 𢺞
+ 0x22e9f: "\x01\x02\x01\x05\x01\x03\x04\x03\x01\x01\x01\x02\x04\x03\x01\x01\x01\x02\x04\x03\x01\x01\x01\x02", // 𢺟
+ 0x22ea0: "\x01\x02\x01\x04\x01\x03\x05\x05\x05\x02\x05\x01\x05\x02\x01\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 𢺠
+ 0x22ea1: "\x01\x02\x01\x05\x01\x03\x02\x04\x01\x03\x04\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 𢺡
+ 0x22ea2: "\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 𢺢
+ 0x22ea3: "\x01\x02\x01\x03\x01\x04\x03\x01\x04\x03\x04\x04\x03\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𢺣
+ 0x22ea4: "\x01\x02\x01\x01\x02\x02\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 𢺤
+ 0x22ea5: "\x01\x02\x01\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x05\x04", // 𢺥
+ 0x22ea6: "\x01\x02\x01\x04\x04\x05\x05\x02\x03\x05\x02\x02\x03\x05\x03\x04\x03\x04\x05\x02\x03\x05\x02\x02", // 𢺦
+ 0x22ea7: "\x01\x02\x01\x04\x01\x05\x02\x05\x02\x02\x01\x03\x05\x01\x01\x04\x03\x01\x01\x01\x02\x03\x05\x04", // 𢺧
+ 0x22ea8: "\x01\x02\x01\x01\x01\x01\x03\x04\x02\x05\x01\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𢺨
+ 0x22ea9: "\x01\x02\x01\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x02", // 𢺩
+ 0x22eaa: "\x01\x02\x01\x01\x03\x01\x01\x05\x03\x04\x01\x03\x01\x01\x05\x03\x04\x01\x03\x01\x01\x05\x03\x04", // 𢺪
+ 0x22eab: "\x01\x02\x01\x02\x05\x01\x01\x02\x05\x01\x01\x04\x05\x05\x03\x04\x04\x04\x05\x01\x02\x01\x03\x04", // 𢺫
+ 0x22eac: "\x01\x02\x01\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x02\x05\x03\x04\x01\x02\x05\x01\x05\x02\x02", // 𢺬
+ 0x22ead: "\x01\x02\x01\x01\x02\x02\x01\x01\x01\x03\x01\x02\x01\x01\x03\x02\x05\x02\x02\x01\x01\x04\x05\x04\x04", // 𢺭
+ 0x22eae: "\x01\x02\x01\x03\x01\x04\x03\x01\x04\x01\x02\x05\x01\x02\x05\x03\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 𢺮
+ 0x22eaf: "\x01\x02\x01\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x05\x01\x05", // 𢺯
+ 0x22eb0: "\x01\x02\x01\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x03\x04\x01", // 𢺰
+ 0x22eb1: "\x01\x02\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x04\x05\x01\x02\x03\x04\x01\x02\x03\x04\x04\x04\x04\x04", // 𢺱
+ 0x22eb2: "\x01\x02\x01\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x02\x05\x01\x03\x04", // 𢺲
+ 0x22eb3: "\x01\x02\x01\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x01\x04", // 𢺳
+ 0x22eb4: "\x01\x02\x01\x01\x02\x03\x04\x03\x01\x01\x02\x05\x02\x01\x02\x03\x04\x04\x05\x03\x04\x04\x04\x04\x04\x05\x02\x01\x05\x03\x03\x03", // 𢺴
+ 0x22eb5: "\x01\x05\x01\x02\x05\x04", // 𢺵
+ 0x22eb6: "\x01\x02\x05\x04\x02\x05\x02", // 𢺶
+ 0x22eb7: "\x01\x02\x05\x02\x01\x02\x05\x04", // 𢺷
+ 0x22eb8: "\x01\x02\x05\x04\x01\x02\x05\x04", // 𢺸
+ 0x22eb9: "\x03\x04\x05\x03\x01\x02\x05\x04", // 𢺹
+ 0x22eba: "\x01\x02\x05\x04\x03\x05\x05\x03", // 𢺺
+ 0x22ebb: "\x01\x01\x03\x04\x01\x02\x05\x04", // 𢺻
+ 0x22ebc: "\x03\x03\x01\x02\x01\x02\x05\x04", // 𢺼
+ 0x22ebd: "\x03\x04\x03\x04\x01\x02\x05\x04", // 𢺽
+ 0x22ebe: "\x03\x05\x01\x05\x01\x01\x02\x05\x04", // 𢺾
+ 0x22ebf: "\x01\x02\x02\x01\x05\x01\x02\x05\x04", // 𢺿
+ 0x22ec0: "\x05\x01\x02\x01\x01\x01\x02\x05\x04", // 𢻀
+ 0x22ec1: "\x03\x05\x02\x05\x03\x05\x01\x02\x05\x04", // 𢻁
+ 0x22ec2: "\x03\x01\x01\x02\x05\x02\x01\x02\x05\x04", // 𢻂
+ 0x22ec3: "\x02\x01\x01\x02\x03\x04\x01\x02\x05\x04", // 𢻃
+ 0x22ec4: "\x03\x05\x01\x03\x03\x05\x01\x02\x05\x04", // 𢻄
+ 0x22ec5: "\x02\x05\x01\x02\x02\x01\x01\x02\x05\x04", // 𢻅
+ 0x22ec6: "\x03\x04\x01\x02\x05\x01\x01\x02\x05\x04", // 𢻆
+ 0x22ec7: "\x03\x05\x04\x02\x05\x01\x01\x02\x05\x04", // 𢻇
+ 0x22ec8: "\x01\x02\x05\x04\x03\x05\x04\x03\x05\x04", // 𢻈
+ 0x22ec9: "\x04\x01\x05\x03\x03\x04\x01\x02\x05\x04", // 𢻉
+ 0x22eca: "\x01\x02\x05\x01\x02\x05\x01\x01\x02\x05\x04", // 𢻊
+ 0x22ecb: "\x01\x02\x05\x04\x02\x05\x01\x02\x05\x01", // 𢻋
+ 0x22ecc: "\x02\x05\x01\x05\x02\x01\x05\x01\x02\x05\x04", // 𢻌
+ 0x22ecd: "\x05\x04\x05\x01\x01\x05\x04\x01\x02\x05\x04", // 𢻍
+ 0x22ece: "\x01\x02\x02\x01\x03\x05\x04\x01\x01\x02\x05\x04", // 𢻎
+ 0x22ecf: "\x01\x02\x01\x04\x03\x01\x01\x02\x01\x02\x05\x04", // 𢻏
+ 0x22ed0: "\x04\x03\x01\x01\x02\x01\x03\x05\x01\x02\x05\x04", // 𢻐
+ 0x22ed1: "\x04\x03\x03\x04\x04\x03\x03\x04\x01\x02\x05\x04", // 𢻑
+ 0x22ed2: "\x02\x04\x03\x02\x05\x02\x05\x01\x01\x02\x05\x04", // 𢻒
+ 0x22ed3: "\x04\x01\x02\x05\x01\x05\x02\x01\x01\x02\x05\x04", // 𢻓
+ 0x22ed4: "\x02\x05\x01\x01\x01\x02\x03\x04\x01\x02\x05\x04", // 𢻔
+ 0x22ed5: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x05\x04", // 𢻕
+ 0x22ed6: "\x02\x05\x01\x01\x01\x02\x01\x03\x04\x01\x02\x05\x04", // 𢻖
+ 0x22ed7: "\x01\x01\x02\x03\x02\x01\x05\x01\x01\x01\x02\x05\x04", // 𢻗
+ 0x22ed8: "\x04\x01\x03\x01\x02\x01\x01\x02\x01\x01\x02\x05\x04", // 𢻘
+ 0x22ed9: "\x05\x04\x02\x05\x01\x01\x02\x03\x04\x01\x02\x05\x04", // 𢻙
+ 0x22eda: "\x05\x04\x05\x04\x05\x04\x01\x02\x03\x04\x01\x02\x05\x04", // 𢻚
+ 0x22edb: "\x02\x01\x02\x05\x04\x05\x04\x03\x04\x01\x01\x02\x05\x04", // 𢻛
+ 0x22edc: "\x04\x04\x05\x01\x01\x01\x02\x02\x05\x01\x01\x02\x05\x04", // 𢻜
+ 0x22edd: "\x01\x02\x01\x03\x05\x01\x02\x01\x03\x05\x04\x01\x02\x05\x04", // 𢻝
+ 0x22ede: "\x03\x02\x05\x01\x01\x01\x03\x05\x01\x02\x01\x01\x02\x05\x04", // 𢻞
+ 0x22edf: "\x04\x04\x05\x04\x03\x03\x04\x04\x03\x03\x04\x01\x02\x05\x04", // 𢻟
+ 0x22ee0: "\x03\x05\x01\x03\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02\x05\x04", // 𢻠
+ 0x22ee1: "\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01\x01\x02\x05\x04", // 𢻡
+ 0x22ee2: "\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04\x01\x02\x05\x04", // 𢻢
+ 0x22ee3: "\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x01\x02\x05\x04", // 𢻣
+ 0x22ee4: "\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01\x01\x02\x05\x04", // 𢻤
+ 0x22ee5: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x01\x02\x05\x04", // 𢻥
+ 0x22ee6: "\x01\x02\x03\x04\x01\x02\x03\x04\x02\x05\x03\x05\x04\x01\x02\x05\x04", // 𢻦
+ 0x22ee7: "\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04\x01\x02\x05\x04", // 𢻧
+ 0x22ee8: "\x03\x01\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01\x01\x02\x05\x04", // 𢻨
+ 0x22ee9: "\x03\x02\x05\x01\x01\x03\x01\x02\x01\x02\x01\x02\x01\x01\x01\x02\x05\x04", // 𢻩
+ 0x22eea: "\x02\x05\x01\x02\x05\x01\x01\x03\x04\x04\x02\x05\x01\x02\x05\x01\x01\x02\x05\x04", // 𢻪
+ 0x22eeb: "\x05\x02\x05\x02\x01\x05\x04", // 𢻫
+ 0x22eec: "\x04\x01\x05\x03\x01\x03\x04", // 𢻬
+ 0x22eed: "\x03\x05\x04\x02\x01\x05\x04", // 𢻭
+ 0x22eee: "\x05\x02\x04\x03\x01\x03\x04", // 𢻮
+ 0x22eef: "\x03\x01\x03\x04\x05\x02\x01", // 𢻯
+ 0x22ef0: "\x05\x01\x05\x02\x01\x05\x04", // 𢻰
+ 0x22ef1: "\x05\x02\x05\x03\x01\x03\x04", // 𢻱
+ 0x22ef2: "\x03\x04\x05\x02\x01\x05\x04", // 𢻲
+ 0x22ef3: "\x01\x01\x03\x04\x02\x01\x05\x04", // 𢻳
+ 0x22ef4: "\x01\x05\x02\x05\x02\x01\x05\x04", // 𢻴
+ 0x22ef5: "\x01\x02\x05\x02\x02\x01\x05\x04", // 𢻵
+ 0x22ef6: "\x03\x04\x01\x05\x02\x01\x05\x04", // 𢻶
+ 0x22ef7: "\x05\x02\x01\x05\x02\x01\x05\x04", // 𢻷
+ 0x22ef8: "\x03\x05\x04\x01\x02\x01\x05\x04", // 𢻸
+ 0x22ef9: "\x01\x05\x01\x05\x03\x01\x03\x04", // 𢻹
+ 0x22efa: "\x03\x02\x03\x02\x03\x01\x03\x04", // 𢻺
+ 0x22efb: "\x03\x05\x01\x03\x02\x01\x05\x04", // 𢻻
+ 0x22efc: "\x04\x05\x03\x05\x02\x01\x05\x04", // 𢻼
+ 0x22efd: "\x01\x05\x05\x04\x02\x01\x05\x04", // 𢻽
+ 0x22efe: "\x01\x02\x03\x05\x03\x01\x03\x04", // 𢻾
+ 0x22eff: "\x02\x01\x05\x04\x03\x05\x01\x01", // 𢻿
+ 0x22f00: "\x04\x05\x03\x05\x02\x01\x05\x04", // 𢼀
+ 0x22f01: "\x02\x01\x01\x05\x03\x01\x03\x04", // 𢼁
+ 0x22f02: "\x03\x04\x03\x04\x03\x01\x03\x04", // 𢼂
+ 0x22f03: "\x03\x05\x05\x04\x03\x01\x03\x04", // 𢼃
+ 0x22f04: "\x04\x05\x01\x03\x03\x01\x03\x04", // 𢼄
+ 0x22f05: "\x05\x04\x05\x04\x03\x01\x03\x04", // 𢼅
+ 0x22f06: "\x01\x02\x05\x02\x03\x01\x03\x04", // 𢼆
+ 0x22f07: "\x03\x05\x01\x01\x03\x01\x03\x04", // 𢼇
+ 0x22f08: "\x04\x05\x03\x05\x03\x01\x03\x04", // 𢼈
+ 0x22f09: "\x05\x04\x02\x05\x01\x03\x01\x03\x04", // 𢼉
+ 0x22f0a: "\x04\x04\x05\x01\x05\x03\x01\x03\x04", // 𢼊
+ 0x22f0b: "\x01\x02\x05\x02\x03\x03\x01\x03\x04", // 𢼋
+ 0x22f0c: "\x03\x05\x05\x01\x05\x02\x01\x05\x04", // 𢼌
+ 0x22f0d: "\x05\x02\x02\x05\x02\x02\x01\x05\x04", // 𢼍
+ 0x22f0e: "\x03\x01\x02\x01\x01\x02\x01\x05\x04", // 𢼎
+ 0x22f0f: "\x03\x01\x05\x02\x05\x03\x01\x03\x04", // 𢼏
+ 0x22f10: "\x04\x05\x03\x05\x04\x02\x01\x05\x04", // 𢼐
+ 0x22f11: "\x01\x05\x01\x05\x03\x01\x03\x04", // 𢼑
+ 0x22f12: "\x03\x05\x02\x05\x01\x02\x01\x05\x04", // 𢼒
+ 0x22f13: "\x02\x05\x01\x01\x02\x03\x01\x03\x04", // 𢼓
+ 0x22f14: "\x01\x02\x05\x01\x02\x03\x01\x03\x04", // 𢼔
+ 0x22f15: "\x03\x05\x01\x05\x01\x03\x01\x03\x04", // 𢼕
+ 0x22f16: "\x05\x01\x02\x01\x01\x02\x01\x05\x04", // 𢼖
+ 0x22f17: "\x01\x01\x02\x03\x04\x02\x01\x05\x04", // 𢼗
+ 0x22f18: "\x01\x02\x02\x01\x02\x03\x01\x03\x04", // 𢼘
+ 0x22f19: "\x02\x05\x01\x03\x05\x03\x01\x03\x04", // 𢼙
+ 0x22f1a: "\x04\x05\x01\x03\x05\x03\x01\x03\x04", // 𢼚
+ 0x22f1b: "\x03\x05\x04\x02\x05\x01\x02\x01\x05\x04", // 𢼛
+ 0x22f1c: "\x04\x01\x03\x02\x03\x04\x03\x01\x03\x04", // 𢼜
+ 0x22f1d: "\x04\x03\x01\x01\x01\x03\x02\x01\x05\x04", // 𢼝
+ 0x22f1e: "\x05\x01\x03\x02\x05\x02\x02\x01\x05\x04", // 𢼞
+ 0x22f1f: "\x05\x02\x01\x01\x02\x01\x02\x01\x05\x04", // 𢼟
+ 0x22f20: "\x03\x04\x05\x03\x05\x03\x01\x03\x04", // 𢼠
+ 0x22f21: "\x03\x01\x01\x02\x03\x04\x03\x01\x03\x04", // 𢼡
+ 0x22f22: "\x03\x04\x01\x02\x03\x04\x02\x01\x05\x04", // 𢼢
+ 0x22f23: "\x01\x02\x01\x02\x05\x01\x02\x01\x05\x04", // 𢼣
+ 0x22f24: "\x03\x01\x02\x02\x05\x01\x02\x01\x05\x04", // 𢼤
+ 0x22f25: "\x03\x05\x03\x03\x05\x03\x03\x01\x03\x04", // 𢼥
+ 0x22f26: "\x01\x02\x02\x01\x03\x04\x02\x01\x05\x04", // 𢼦
+ 0x22f27: "\x01\x02\x05\x01\x02\x05\x02\x01\x05\x04", // 𢼧
+ 0x22f28: "\x03\x05\x01\x03\x05\x05\x02\x01\x05\x04", // 𢼨
+ 0x22f29: "\x04\x03\x01\x01\x03\x02\x02\x01\x05\x04", // 𢼩
+ 0x22f2a: "\x01\x05\x01\x05\x02\x01\x03\x01\x03\x04", // 𢼪
+ 0x22f2b: "\x03\x04\x03\x04\x03\x04\x03\x01\x03\x04", // 𢼫
+ 0x22f2c: "\x03\x04\x03\x04\x03\x04\x02\x01\x05\x04", // 𢼬
+ 0x22f2d: "\x01\x02\x02\x01\x03\x04\x03\x01\x03\x04", // 𢼭
+ 0x22f2e: "\x03\x05\x01\x03\x05\x05\x03\x01\x03\x04", // 𢼮
+ 0x22f2f: "\x02\x04\x03\x01\x03\x05\x02\x01\x05\x04", // 𢼯
+ 0x22f30: "\x02\x05\x01\x02\x02\x01\x02\x01\x05\x04", // 𢼰
+ 0x22f31: "\x02\x05\x03\x04\x03\x04\x02\x01\x05\x04", // 𢼱
+ 0x22f32: "\x03\x01\x01\x02\x03\x04\x02\x01\x05\x04", // 𢼲
+ 0x22f33: "\x01\x01\x01\x02\x01\x05\x03\x01\x03\x04", // 𢼳
+ 0x22f34: "\x02\x04\x03\x01\x03\x05\x03\x01\x03\x04", // 𢼴
+ 0x22f35: "\x04\x01\x05\x03\x03\x04\x03\x01\x03\x04", // 𢼵
+ 0x22f36: "\x04\x03\x01\x01\x03\x02\x03\x01\x03\x04", // 𢼶
+ 0x22f37: "\x05\x01\x05\x01\x03\x02\x03\x01\x03\x04", // 𢼷
+ 0x22f38: "\x02\x05\x02\x01\x03\x05\x03\x01\x03\x04", // 𢼸
+ 0x22f39: "\x01\x02\x05\x01\x01\x02\x04\x02\x01\x05\x04", // 𢼹
+ 0x22f3a: "\x01\x02\x01\x03\x03\x01\x02\x02\x01\x05\x04", // 𢼺
+ 0x22f3b: "\x03\x04\x04\x03\x05\x03\x01\x02\x01\x05\x04", // 𢼻
+ 0x22f3c: "\x02\x04\x03\x02\x05\x01\x01\x02\x01\x05\x04", // 𢼼
+ 0x22f3d: "\x03\x04\x03\x04\x02\x05\x01\x02\x01\x05\x04", // 𢼽
+ 0x22f3e: "\x02\x01\x02\x05\x01\x02\x02\x02\x01\x05\x04", // 𢼾
+ 0x22f3f: "\x05\x01\x01\x03\x05\x01\x01\x02\x01\x05\x04", // 𢼿
+ 0x22f40: "\x01\x03\x04\x04\x03\x03\x04\x02\x01\x05\x04", // 𢽀
+ 0x22f41: "\x01\x02\x01\x02\x01\x01\x02\x02\x01\x05\x04", // 𢽁
+ 0x22f42: "\x02\x01\x05\x04\x04\x05\x01\x01\x05\x03\x04", // 𢽂
+ 0x22f43: "\x02\x05\x02\x01\x01\x02\x01\x02\x01\x05\x04", // 𢽃
+ 0x22f44: "\x03\x01\x02\x01\x05\x04\x02\x01\x05\x04", // 𢽄
+ 0x22f45: "\x05\x02\x02\x05\x02\x05\x03\x02\x01\x05\x04", // 𢽅
+ 0x22f46: "\x02\x04\x03\x05\x02\x03\x05\x03\x01\x03\x04", // 𢽆
+ 0x22f47: "\x01\x04\x03\x01\x03\x04\x05\x03\x01\x03\x04", // 𢽇
+ 0x22f48: "\x03\x01\x02\x03\x04\x03\x05\x03\x01\x03\x04", // 𢽈
+ 0x22f49: "\x04\x04\x05\x01\x01\x03\x05\x03\x01\x03\x04", // 𢽉
+ 0x22f4a: "\x01\x02\x05\x01\x01\x02\x04\x03\x01\x03\x04", // 𢽊
+ 0x22f4b: "\x02\x01\x02\x05\x01\x02\x02\x03\x01\x03\x04", // 𢽋
+ 0x22f4c: "\x03\x04\x05\x02\x05\x02\x01\x03\x01\x03\x04", // 𢽌
+ 0x22f4d: "\x03\x01\x02\x01\x02\x05\x01\x03\x01\x03\x04", // 𢽍
+ 0x22f4e: "\x02\x05\x01\x01\x01\x01\x02\x03\x01\x03\x04", // 𢽎
+ 0x22f4f: "\x05\x01\x01\x03\x02\x05\x01\x03\x01\x03\x04", // 𢽏
+ 0x22f50: "\x02\x04\x03\x03\x05\x04\x01\x03\x01\x03\x04", // 𢽐
+ 0x22f51: "\x04\x03\x04\x05\x05\x02\x01\x03\x01\x03\x04", // 𢽑
+ 0x22f52: "\x04\x01\x02\x05\x01\x02\x01\x03\x01\x03\x04", // 𢽒
+ 0x22f53: "\x01\x02\x01\x01\x02\x03\x04\x03\x01\x03\x04", // 𢽓
+ 0x22f54: "\x01\x02\x01\x02\x05\x01\x05\x03\x01\x03\x04", // 𢽔
+ 0x22f55: "\x02\x05\x01\x01\x01\x03\x05\x02\x01\x05\x04", // 𢽕
+ 0x22f56: "\x05\x01\x01\x04\x05\x05\x04\x02\x01\x05\x04", // 𢽖
+ 0x22f57: "\x02\x05\x02\x02\x01\x02\x01\x03\x01\x03\x04", // 𢽗
+ 0x22f58: "\x05\x02\x02\x05\x02\x03\x05\x03\x01\x03\x04", // 𢽘
+ 0x22f59: "\x05\x01\x03\x03\x01\x01\x05\x03\x01\x03\x04", // 𢽙
+ 0x22f5a: "\x01\x03\x05\x03\x03\x04\x03\x04\x02\x01\x05\x04", // 𢽚
+ 0x22f5b: "\x02\x05\x01\x02\x01\x04\x01\x02\x03\x01\x03\x04", // 𢽛
+ 0x22f5c: "\x05\x01\x03\x02\x05\x03\x04\x02\x01\x05\x04", // 𢽜
+ 0x22f5d: "\x03\x02\x04\x01\x01\x01\x02\x01\x02\x01\x05\x04", // 𢽝
+ 0x22f5e: "\x01\x02\x01\x04\x03\x01\x01\x02\x02\x01\x05\x04", // 𢽞
+ 0x22f5f: "\x01\x03\x04\x03\x04\x02\x03\x04\x03\x01\x03\x04", // 𢽟
+ 0x22f60: "\x02\x05\x02\x01\x03\x01\x02\x01\x03\x01\x03\x04", // 𢽠
+ 0x22f61: "\x02\x05\x02\x01\x03\x02\x05\x01\x03\x01\x03\x04", // 𢽡
+ 0x22f62: "\x02\x05\x01\x01\x02\x05\x01\x01\x02\x01\x05\x04", // 𢽢
+ 0x22f63: "\x03\x05\x03\x02\x01\x05\x01\x01\x02\x01\x05\x04", // 𢽣
+ 0x22f64: "\x05\x01\x01\x01\x02\x02\x05\x01\x03\x01\x03\x04", // 𢽤
+ 0x22f65: "\x03\x02\x03\x04\x03\x04\x01\x05\x02\x01\x05\x04", // 𢽥
+ 0x22f66: "\x04\x04\x05\x03\x05\x01\x02\x01\x02\x01\x05\x04", // 𢽦
+ 0x22f67: "\x03\x05\x01\x02\x01\x02\x05\x01\x02\x01\x05\x04", // 𢽧
+ 0x22f68: "\x03\x05\x03\x03\x04\x05\x04\x04\x02\x01\x05\x04", // 𢽨
+ 0x22f69: "\x03\x05\x01\x01\x03\x05\x01\x01\x02\x01\x05\x04", // 𢽩
+ 0x22f6a: "\x05\x01\x01\x04\x05\x02\x05\x02\x02\x01\x05\x04", // 𢽪
+ 0x22f6b: "\x04\x01\x05\x04\x01\x02\x03\x04\x02\x01\x05\x04", // 𢽫
+ 0x22f6c: "\x01\x02\x05\x01\x01\x02\x03\x04\x03\x01\x03\x04", // 𢽬
+ 0x22f6d: "\x02\x01\x02\x05\x01\x01\x01\x05\x02\x01\x05\x04", // 𢽭
+ 0x22f6e: "\x04\x01\x03\x05\x04\x02\x03\x04\x03\x01\x03\x04", // 𢽮
+ 0x22f6f: "\x04\x01\x03\x05\x04\x04\x04\x04\x03\x01\x03\x04", // 𢽯
+ 0x22f70: "\x05\x01\x01\x04\x05\x02\x05\x02\x03\x01\x03\x04", // 𢽰
+ 0x22f71: "\x01\x03\x04\x02\x05\x01\x01\x05\x03\x01\x03\x04", // 𢽱
+ 0x22f72: "\x03\x05\x01\x03\x01\x03\x04\x04\x03\x01\x03\x04", // 𢽲
+ 0x22f73: "\x01\x02\x03\x05\x01\x02\x03\x05\x03\x01\x03\x04", // 𢽳
+ 0x22f74: "\x01\x03\x05\x03\x03\x04\x03\x04\x03\x01\x03\x04", // 𢽴
+ 0x22f75: "\x02\x05\x01\x01\x03\x05\x01\x01\x03\x01\x03\x04", // 𢽵
+ 0x22f76: "\x03\x05\x03\x02\x01\x05\x01\x01\x03\x01\x03\x04", // 𢽶
+ 0x22f77: "\x05\x01\x03\x02\x05\x03\x04\x03\x01\x03\x04", // 𢽷
+ 0x22f78: "\x02\x05\x02\x03\x05\x01\x01\x02\x03\x01\x03\x04", // 𢽸
+ 0x22f79: "\x03\x05\x01\x05\x02\x05\x01\x01\x03\x01\x03\x04", // 𢽹
+ 0x22f7a: "\x04\x01\x05\x05\x04\x04\x04\x04\x03\x01\x03\x04", // 𢽺
+ 0x22f7b: "\x04\x03\x03\x04\x04\x03\x03\x04\x03\x01\x03\x04", // 𢽻
+ 0x22f7c: "\x05\x02\x01\x05\x03\x04\x03\x04\x03\x01\x03\x04", // 𢽼
+ 0x22f7d: "\x01\x03\x04\x01\x02\x05\x01\x02\x03\x01\x03\x04", // 𢽽
+ 0x22f7e: "\x04\x04\x03\x04\x05\x05\x02\x01\x02\x01\x05\x04", // 𢽾
+ 0x22f7f: "\x03\x04\x04\x03\x01\x02\x02\x05\x01\x02\x01\x05\x04", // 𢽿
+ 0x22f80: "\x01\x02\x01\x03\x02\x05\x01\x01\x02\x01\x05\x04", // 𢾀
+ 0x22f81: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x02\x01\x05\x04", // 𢾁
+ 0x22f82: "\x05\x01\x03\x01\x05\x01\x02\x03\x04\x02\x01\x05\x04", // 𢾂
+ 0x22f83: "\x02\x01\x02\x05\x03\x04\x03\x04\x01\x02\x01\x05\x04", // 𢾃
+ 0x22f84: "\x03\x04\x01\x03\x05\x01\x01\x02\x02\x03\x01\x03\x04", // 𢾄
+ 0x22f85: "\x04\x01\x03\x01\x02\x02\x01\x05\x04\x03\x01\x03\x04", // 𢾅
+ 0x22f86: "\x01\x05\x01\x05\x03\x02\x05\x01\x01\x02\x01\x05\x04", // 𢾆
+ 0x22f87: "\x01\x02\x05\x01\x02\x05\x01\x02\x01\x02\x01\x05\x04", // 𢾇
+ 0x22f88: "\x05\x02\x02\x05\x02\x03\x05\x03\x03\x02\x01\x05\x04", // 𢾈
+ 0x22f89: "\x04\x01\x04\x03\x01\x01\x02\x03\x04\x03\x01\x03\x04", // 𢾉
+ 0x22f8a: "\x04\x01\x02\x05\x01\x04\x05\x01\x02\x02\x01\x05\x04", // 𢾊
+ 0x22f8b: "\x02\x05\x02\x01\x03\x04\x03\x03\x04\x02\x01\x05\x04", // 𢾋
+ 0x22f8c: "\x03\x02\x01\x05\x01\x01\x01\x02\x01\x02\x01\x05\x04", // 𢾌
+ 0x22f8d: "\x05\x02\x02\x05\x02\x04\x01\x05\x03\x02\x01\x05\x04", // 𢾍
+ 0x22f8e: "\x01\x01\x01\x03\x04\x02\x05\x01\x01\x02\x01\x05\x04", // 𢾎
+ 0x22f8f: "\x04\x04\x05\x03\x05\x04\x02\x05\x01\x02\x01\x05\x04", // 𢾏
+ 0x22f90: "\x04\x04\x05\x04\x03\x03\x04\x05\x04\x02\x01\x05\x04", // 𢾐
+ 0x22f91: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x05\x04", // 𢾑
+ 0x22f92: "\x04\x04\x05\x01\x02\x01\x02\x05\x01\x02\x01\x05\x04", // 𢾒
+ 0x22f93: "\x03\x02\x05\x01\x01\x03\x04\x04\x04\x02\x01\x05\x04", // 𢾓
+ 0x22f94: "\x02\x05\x01\x01\x01\x02\x01\x05\x04\x05\x01\x03\x04", // 𢾔
+ 0x22f95: "\x05\x02\x02\x05\x02\x04\x01\x05\x03\x03\x01\x03\x04", // 𢾕
+ 0x22f96: "\x04\x01\x03\x01\x02\x02\x01\x05\x04\x02\x01\x05\x04", // 𢾖
+ 0x22f97: "\x04\x03\x01\x02\x03\x04\x01\x03\x04\x03\x01\x03\x04", // 𢾗
+ 0x22f98: "\x01\x02\x01\x02\x01\x03\x01\x03\x04\x04\x05\x04", // 𢾘
+ 0x22f99: "\x02\x05\x01\x01\x01\x03\x05\x03\x03\x02\x01\x05\x04", // 𢾙
+ 0x22f9a: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x01\x03\x04", // 𢾚
+ 0x22f9b: "\x04\x01\x02\x05\x01\x04\x03\x01\x02\x03\x01\x03\x04", // 𢾛
+ 0x22f9c: "\x01\x01\x01\x03\x04\x02\x05\x01\x01\x03\x01\x03\x04", // 𢾜
+ 0x22f9d: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x03\x01\x03\x04", // 𢾝
+ 0x22f9e: "\x05\x01\x05\x01\x05\x02\x05\x01\x01\x03\x01\x03\x04", // 𢾞
+ 0x22f9f: "\x03\x02\x05\x01\x01\x01\x02\x03\x04\x03\x01\x03\x04", // 𢾟
+ 0x22fa0: "\x02\x01\x02\x01\x02\x05\x02\x05\x01\x02\x01\x05\x04", // 𢾠
+ 0x22fa1: "\x02\x05\x02\x01\x03\x04\x03\x03\x04\x03\x01\x03\x04", // 𢾡
+ 0x22fa2: "\x03\x04\x04\x03\x04\x05\x05\x02\x01\x03\x01\x03\x04", // 𢾢
+ 0x22fa3: "\x01\x05\x04\x01\x02\x03\x04\x03\x01\x03\x04", // 𢾣
+ 0x22fa4: "\x01\x02\x02\x01\x01\x01\x03\x05\x05\x03\x01\x03\x04", // 𢾤
+ 0x22fa5: "\x03\x05\x01\x03\x02\x05\x01\x01\x01\x02\x01\x05\x04", // 𢾥
+ 0x22fa6: "\x03\x01\x01\x02\x02\x01\x02\x03\x04\x02\x01\x05\x04", // 𢾦
+ 0x22fa7: "\x05\x02\x05\x03\x04\x01\x04\x04\x04\x04\x02\x01\x05\x04", // 𢾧
+ 0x22fa8: "\x03\x01\x02\x03\x04\x03\x05\x03\x01\x03\x02\x01\x05\x04", // 𢾨
+ 0x22fa9: "\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01\x02\x01\x05\x04", // 𢾩
+ 0x22faa: "\x05\x04\x05\x04\x05\x04\x01\x02\x03\x04\x02\x01\x05\x04", // 𢾪
+ 0x22fab: "\x05\x02\x03\x01\x02\x05\x01\x02\x01\x04\x02\x01\x05\x04", // 𢾫
+ 0x22fac: "\x04\x01\x04\x03\x01\x03\x04\x03\x03\x04\x02\x01\x05\x04", // 𢾬
+ 0x22fad: "\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04\x03\x01\x03\x04", // 𢾭
+ 0x22fae: "\x04\x04\x05\x02\x05\x01\x03\x02\x05\x01\x02\x01\x05\x04", // 𢾮
+ 0x22faf: "\x01\x03\x01\x01\x05\x03\x04\x01\x02\x04\x02\x01\x05\x04", // 𢾯
+ 0x22fb0: "\x02\x05\x02\x01\x05\x05\x04\x02\x03\x04\x03\x01\x03\x04", // 𢾰
+ 0x22fb1: "\x03\x02\x05\x03\x04\x01\x01\x05\x01\x05\x02\x01\x05\x04", // 𢾱
+ 0x22fb2: "\x05\x01\x05\x04\x01\x05\x01\x05\x04\x01\x02\x01\x05\x04", // 𢾲
+ 0x22fb3: "\x01\x02\x01\x02\x02\x05\x01\x01\x01\x02\x03\x01\x03\x04", // 𢾳
+ 0x22fb4: "\x01\x03\x04\x01\x02\x01\x02\x03\x01\x02\x02\x01\x05\x04", // 𢾴
+ 0x22fb5: "\x01\x03\x04\x01\x03\x04\x01\x02\x05\x01\x02\x01\x05\x04", // 𢾵
+ 0x22fb6: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x04\x03\x01\x03\x04", // 𢾶
+ 0x22fb7: "\x02\x05\x02\x01\x03\x05\x04\x02\x05\x01\x03\x01\x03\x04", // 𢾷
+ 0x22fb8: "\x01\x02\x02\x01\x01\x01\x03\x05\x03\x04\x02\x01\x05\x04", // 𢾸
+ 0x22fb9: "\x03\x05\x01\x03\x05\x01\x01\x01\x01\x02\x03\x01\x03\x04", // 𢾹
+ 0x22fba: "\x01\x03\x01\x01\x01\x02\x01\x01\x01\x05\x03\x01\x03\x04", // 𢾺
+ 0x22fbb: "\x01\x02\x01\x01\x01\x02\x01\x01\x01\x05\x02\x01\x05\x04", // 𢾻
+ 0x22fbc: "\x05\x01\x05\x04\x01\x05\x01\x05\x04\x01\x03\x01\x03\x04", // 𢾼
+ 0x22fbd: "\x03\x01\x02\x02\x01\x01\x03\x05\x03\x04\x02\x01\x05\x04", // 𢾽
+ 0x22fbe: "\x01\x02\x05\x01\x01\x02\x04\x01\x05\x03\x03\x01\x03\x04", // 𢾾
+ 0x22fbf: "\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x02\x01\x05\x04", // 𢾿
+ 0x22fc0: "\x01\x05\x03\x04\x02\x05\x01\x02\x05\x01\x02\x01\x05\x04", // 𢿀
+ 0x22fc1: "\x02\x05\x02\x03\x04\x03\x04\x02\x05\x01\x02\x01\x05\x04", // 𢿁
+ 0x22fc2: "\x01\x01\x02\x03\x04\x03\x01\x03\x04\x01\x03\x01\x01\x02", // 𢿂
+ 0x22fc3: "\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04\x03\x01\x03\x04", // 𢿃
+ 0x22fc4: "\x01\x01\x02\x03\x04\x03\x01\x03\x04\x01\x02\x01\x02\x01", // 𢿄
+ 0x22fc5: "\x03\x02\x02\x02\x01\x05\x04\x02\x05\x01\x02\x01\x02\x01", // 𢿅
+ 0x22fc6: "\x05\x02\x02\x05\x02\x01\x01\x02\x03\x04\x02\x01\x05\x04", // 𢿆
+ 0x22fc7: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x02\x01\x05\x04", // 𢿇
+ 0x22fc8: "\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03\x02\x01\x05\x04", // 𢿈
+ 0x22fc9: "\x03\x02\x05\x01\x01\x02\x03\x04\x03\x03\x03\x02\x01\x05\x04", // 𢿉
+ 0x22fca: "\x02\x01\x05\x04\x01\x05\x02\x05\x01\x02\x01\x02\x01\x05\x04", // 𢿊
+ 0x22fcb: "\x01\x02\x05\x02\x03\x04\x03\x01\x03\x04\x01\x02\x01\x02\x01", // 𢿋
+ 0x22fcc: "\x03\x05\x02\x05\x03\x04\x02\x05\x01\x01\x01\x02\x01\x05\x04", // 𢿌
+ 0x22fcd: "\x01\x01\x02\x03\x04\x03\x01\x03\x04\x01\x03\x02\x01\x05\x04", // 𢿍
+ 0x22fce: "\x03\x02\x05\x01\x01\x01\x01\x01\x01\x01\x03\x02\x01\x05\x04", // 𢿎
+ 0x22fcf: "\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04\x02\x01\x05\x04", // 𢿏
+ 0x22fd0: "\x05\x05\x04\x01\x02\x01\x04\x03\x01\x01\x02\x03\x01\x03\x04", // 𢿐
+ 0x22fd1: "\x02\x01\x02\x05\x03\x04\x01\x02\x05\x05\x04\x02\x01\x05\x04", // 𢿑
+ 0x22fd2: "\x05\x05\x02\x01\x02\x05\x01\x01\x01\x03\x04\x02\x01\x05\x04", // 𢿒
+ 0x22fd3: "\x02\x01\x04\x05\x02\x05\x01\x01\x01\x03\x04\x03\x01\x03\x04", // 𢿓
+ 0x22fd4: "\x03\x05\x02\x05\x02\x02\x05\x02\x02\x03\x04\x03\x01\x03\x04", // 𢿔
+ 0x22fd5: "\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04\x02\x01\x05\x04", // 𢿕
+ 0x22fd6: "\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04\x03\x01\x03\x04", // 𢿖
+ 0x22fd7: "\x02\x05\x02\x03\x04\x01\x02\x05\x01\x02\x02\x03\x01\x03\x04", // 𢿗
+ 0x22fd8: "\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01\x02\x01\x05\x04", // 𢿘
+ 0x22fd9: "\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01\x03\x01\x03\x05", // 𢿙
+ 0x22fda: "\x05\x04\x05\x04\x03\x03\x01\x02\x02\x05\x02\x02\x01\x05\x04", // 𢿚
+ 0x22fdb: "\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x04\x03\x01\x03\x04", // 𢿛
+ 0x22fdc: "\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04\x03\x01\x03\x04", // 𢿜
+ 0x22fdd: "\x02\x01\x02\x05\x03\x04\x02\x05\x05\x04\x02\x01\x05\x04", // 𢿝
+ 0x22fde: "\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04\x02\x01\x05\x04", // 𢿞
+ 0x22fdf: "\x05\x01\x05\x01\x02\x01\x01\x02\x01\x02\x05\x01\x02\x01\x05\x04", // 𢿟
+ 0x22fe0: "\x01\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04\x02\x01\x05\x04", // 𢿠
+ 0x22fe1: "\x02\x01\x04\x05\x01\x02\x05\x01\x01\x01\x03\x04\x02\x01\x05\x04", // 𢿡
+ 0x22fe2: "\x03\x04\x04\x05\x05\x04\x02\x05\x05\x04\x05\x04\x02\x01\x05\x04", // 𢿢
+ 0x22fe3: "\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05\x02\x01\x05\x04", // 𢿣
+ 0x22fe4: "\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01\x02\x01\x05\x04", // 𢿤
+ 0x22fe5: "\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x02\x01\x05\x04", // 𢿥
+ 0x22fe6: "\x02\x04\x03\x04\x05\x02\x05\x01\x01\x05\x02\x03\x03\x01\x03\x04", // 𢿦
+ 0x22fe7: "\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x03\x04\x02\x01\x05\x04", // 𢿧
+ 0x22fe8: "\x01\x02\x03\x04\x01\x02\x03\x04\x03\x05\x01\x01\x02\x01\x05\x04", // 𢿨
+ 0x22fe9: "\x02\x01\x02\x01\x01\x01\x02\x03\x05\x02\x05\x01\x02\x01\x05\x04", // 𢿩
+ 0x22fea: "\x04\x01\x04\x03\x04\x05\x02\x05\x02\x02\x05\x01\x02\x01\x05\x04", // 𢿪
+ 0x22feb: "\x01\x02\x05\x01\x02\x03\x04\x02\x01\x05\x04\x01\x02\x01\x02\x01", // 𢿫
+ 0x22fec: "\x03\x02\x05\x01\x01\x02\x05\x03\x04\x03\x03\x03\x03\x01\x03\x04", // 𢿬
+ 0x22fed: "\x03\x05\x01\x03\x03\x01\x03\x04\x02\x01\x02\x05\x01\x01\x01\x02", // 𢿭
+ 0x22fee: "\x03\x04\x04\x03\x05\x01\x02\x05\x05\x04\x01\x02\x02\x01\x05\x04", // 𢿮
+ 0x22fef: "\x01\x02\x02\x02\x05\x01\x02\x01\x01\x03\x02\x03\x01\x03\x04", // 𢿯
+ 0x22ff0: "\x01\x02\x01\x04\x05\x03\x04\x03\x01\x02\x03\x04\x03\x01\x03\x04", // 𢿰
+ 0x22ff1: "\x01\x02\x03\x04\x01\x02\x03\x04\x02\x05\x01\x01\x03\x01\x03\x04", // 𢿱
+ 0x22ff2: "\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05\x03\x01\x03\x04", // 𢿲
+ 0x22ff3: "\x03\x04\x04\x03\x05\x04\x02\x05\x05\x04\x05\x04\x03\x01\x03\x04", // 𢿳
+ 0x22ff4: "\x03\x04\x01\x02\x05\x01\x05\x04\x01\x05\x04\x01\x03\x01\x03\x04", // 𢿴
+ 0x22ff5: "\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x03\x04\x03\x01\x03\x04", // 𢿵
+ 0x22ff6: "\x02\x01\x04\x05\x01\x03\x04\x03\x04\x02\x05\x01\x03\x01\x03\x04", // 𢿶
+ 0x22ff7: "\x01\x02\x04\x01\x03\x04\x01\x02\x04\x01\x03\x04\x02\x01\x05\x04", // 𢿷
+ 0x22ff8: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x02\x03\x04\x02\x01\x05\x04", // 𢿸
+ 0x22ff9: "\x03\x04\x04\x02\x05\x02\x01\x01\x02\x03\x04\x02\x01\x05\x04", // 𢿹
+ 0x22ffa: "\x05\x04\x05\x04\x05\x04\x05\x04\x02\x05\x01\x01\x02\x01\x05\x04", // 𢿺
+ 0x22ffb: "\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02\x03\x01\x03\x04", // 𢿻
+ 0x22ffc: "\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04\x03\x01\x03\x04", // 𢿼
+ 0x22ffd: "\x02\x04\x03\x04\x05\x02\x05\x01\x01\x05\x02\x03\x03\x01\x03\x04", // 𢿽
+ 0x22ffe: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x02\x01\x05\x04", // 𢿾
+ 0x22fff: "\x01\x02\x03\x04\x03\x04\x01\x02\x05\x02\x05\x01\x01\x02\x01\x05\x04", // 𢿿
+ 0x23000: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x01\x02\x01\x05\x04", // 𣀀
+ 0x23001: "\x03\x05\x01\x03\x03\x05\x04\x01\x01\x01\x02\x05\x01\x02\x01\x05\x04", // 𣀁
+ 0x23002: "\x02\x05\x01\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01\x02\x01\x05\x04", // 𣀂
+ 0x23003: "\x04\x01\x03\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04\x02\x01\x05\x04", // 𣀃
+ 0x23004: "\x05\x01\x01\x03\x02\x05\x01\x02\x01\x02\x01\x01\x01\x02\x02\x01\x05\x04", // 𣀄
+ 0x23005: "\x02\x02\x04\x03\x01\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04", // 𣀅
+ 0x23006: "\x05\x01\x01\x03\x02\x05\x01\x04\x03\x01\x01\x01\x02\x03\x01\x03\x04", // 𣀆
+ 0x23007: "\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02\x02\x01\x05\x04", // 𣀇
+ 0x23008: "\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04\x03\x01\x03\x04", // 𣀈
+ 0x23009: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x03\x01\x03\x04", // 𣀉
+ 0x2300a: "\x04\x01\x03\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04\x03\x01\x03\x04", // 𣀊
+ 0x2300b: "\x01\x02\x01\x02\x02\x01\x01\x01\x02\x05\x02\x03\x05\x03\x01\x03\x04", // 𣀋
+ 0x2300c: "\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 𣀌
+ 0x2300d: "\x01\x02\x04\x05\x02\x04\x01\x03\x04\x02\x05\x03\x04\x02\x01\x05\x04", // 𣀍
+ 0x2300e: "\x03\x04\x04\x03\x05\x02\x02\x05\x02\x02\x03\x04\x05\x02\x01\x05\x04", // 𣀎
+ 0x2300f: "\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x02\x01\x01\x02\x01\x05\x04", // 𣀏
+ 0x23010: "\x03\x02\x05\x01\x01\x01\x01\x02\x01\x04\x03\x01\x01\x02\x03\x01\x03\x04", // 𣀐
+ 0x23011: "\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04\x02\x01\x05\x04", // 𣀑
+ 0x23012: "\x01\x02\x02\x01\x01\x01\x05\x04\x03\x02\x03\x04\x03\x04\x02\x01\x05\x04", // 𣀒
+ 0x23013: "\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04\x02\x01\x05\x04", // 𣀓
+ 0x23014: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x01\x03\x02\x02\x01\x05\x04", // 𣀔
+ 0x23015: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x02\x01\x05\x04", // 𣀕
+ 0x23016: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x03\x05\x02\x05\x01\x02\x01\x05\x04", // 𣀖
+ 0x23017: "\x01\x05\x02\x03\x03\x01\x03\x04\x01\x03\x01\x03\x04\x03\x04\x02\x03\x04", // 𣀗
+ 0x23018: "\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04\x03\x01\x03\x04", // 𣀘
+ 0x23019: "\x01\x02\x03\x04\x01\x02\x03\x04\x02\x05\x03\x04\x03\x04\x02\x01\x05\x04", // 𣀙
+ 0x2301a: "\x04\x03\x01\x02\x05\x01\x01\x04\x05\x01\x02\x01\x02\x01\x03\x01\x03\x04", // 𣀚
+ 0x2301b: "\x02\x05\x01\x01\x01\x02\x02\x01\x03\x04\x02\x04\x01\x03\x04\x02\x01\x05\x04", // 𣀛
+ 0x2301c: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x01\x05\x04", // 𣀜
+ 0x2301d: "\x03\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x03\x04\x02\x01\x05\x04", // 𣀝
+ 0x2301e: "\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x04\x05\x04\x04\x02\x01\x05\x04", // 𣀞
+ 0x2301f: "\x05\x02\x01\x05\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01\x03\x01\x03\x04", // 𣀟
+ 0x23020: "\x02\x05\x01\x01\x01\x02\x02\x01\x03\x04\x02\x04\x01\x03\x04\x03\x01\x03\x04", // 𣀠
+ 0x23021: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x03\x01\x03\x04", // 𣀡
+ 0x23022: "\x04\x01\x01\x01\x02\x05\x01\x04\x03\x03\x04\x04\x03\x03\x04\x03\x01\x03\x04", // 𣀢
+ 0x23023: "\x01\x03\x01\x02\x05\x01\x05\x03\x04\x03\x05\x03\x05\x01\x01\x02\x02\x01\x05\x04", // 𣀣
+ 0x23024: "\x04\x01\x02\x05\x02\x02\x01\x02\x04\x01\x03\x04\x03\x05\x03\x04\x02\x01\x05\x04", // 𣀤
+ 0x23025: "\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01\x02\x01\x05\x04", // 𣀥
+ 0x23026: "\x04\x01\x02\x05\x01\x02\x05\x01\x01\x02\x01\x02\x01\x01\x01\x02\x02\x01\x05\x04", // 𣀦
+ 0x23027: "\x01\x02\x03\x04\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x02\x01\x05\x04", // 𣀧
+ 0x23028: "\x01\x02\x05\x01\x05\x03\x04\x05\x01\x01\x02\x05\x01\x04\x02\x01\x05\x04", // 𣀨
+ 0x23029: "\x04\x01\x02\x05\x02\x02\x01\x02\x04\x01\x03\x04\x03\x05\x03\x04\x03\x01\x03\x04", // 𣀩
+ 0x2302a: "\x01\x02\x05\x01\x01\x05\x03\x04\x04\x04\x02\x02\x05\x01\x05\x01\x02\x01\x05\x04", // 𣀪
+ 0x2302b: "\x04\x01\x03\x01\x02\x03\x02\x01\x02\x03\x05\x01\x02\x02\x01\x01\x02\x01\x05\x04", // 𣀫
+ 0x2302c: "\x02\x05\x01\x02\x05\x01\x01\x03\x04\x04\x02\x05\x01\x02\x05\x01\x03\x01\x03\x04", // 𣀬
+ 0x2302d: "\x03\x02\x01\x01\x05\x01\x01\x02\x01\x02\x05\x01\x01\x05\x03\x01\x03\x01\x03\x04", // 𣀭
+ 0x2302e: "\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x01\x03\x05\x03\x04\x02\x01\x05\x04", // 𣀮
+ 0x2302f: "\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x01\x02\x02\x01\x01\x01\x02\x01\x05\x04", // 𣀯
+ 0x23030: "\x04\x03\x01\x02\x03\x04\x01\x02\x02\x01\x01\x02\x02\x02\x01\x03\x04\x02\x01\x05\x04", // 𣀰
+ 0x23031: "\x04\x03\x01\x02\x03\x04\x01\x02\x02\x01\x01\x02\x01\x02\x01\x03\x04\x03\x01\x03\x04", // 𣀱
+ 0x23032: "\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04\x02\x01\x05\x04", // 𣀲
+ 0x23033: "\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 𣀳
+ 0x23034: "\x02\x04\x03\x02\x05\x02\x05\x01\x03\x01\x03\x04\x04\x05\x02\x05\x01\x01\x05\x01\x05\x01", // 𣀴
+ 0x23035: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x02\x01\x05\x04", // 𣀵
+ 0x23036: "\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04\x02\x01\x05\x04", // 𣀶
+ 0x23037: "\x01\x02\x05\x04\x01\x02\x05\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x02\x01\x05\x04", // 𣀷
+ 0x23038: "\x01\x02\x02\x02\x05\x02\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x01\x04\x03\x01\x03\x04", // 𣀸
+ 0x23039: "\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04\x03\x01\x03\x04", // 𣀹
+ 0x2303a: "\x02\x01\x02\x01\x02\x05\x02\x05\x05\x04\x02\x03\x04\x02\x05\x01\x02\x01\x04\x02\x01\x05\x04", // 𣀺
+ 0x2303b: "\x05\x01\x03\x02\x04\x01\x03\x04\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04\x02\x01\x05\x04", // 𣀻
+ 0x2303c: "\x05\x01\x03\x02\x04\x01\x03\x04\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04\x03\x01\x03\x04", // 𣀼
+ 0x2303d: "\x04\x03\x02\x05\x02\x04\x03\x03\x01\x03\x04\x03\x01\x01\x05\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 𣀽
+ 0x2303e: "\x01\x02\x05\x01\x01\x05\x03\x04\x01\x02\x05\x01\x01\x05\x03\x04\x03\x05\x03\x05\x01\x01\x02\x02\x01\x05\x04", // 𣀾
+ 0x2303f: "\x03\x05\x04\x03\x05\x04\x01\x03\x05\x04\x01\x03\x05\x04\x02\x05\x02\x02\x05\x02\x04\x03\x03\x04\x03\x01\x03\x04", // 𣀿
+ 0x23040: "\x01\x03\x01\x02\x05\x01\x05\x03\x04\x01\x03\x01\x02\x05\x01\x05\x03\x04\x03\x05\x03\x05\x01\x01\x02\x02\x01\x05\x04", // 𣁀
+ 0x23041: "\x03\x04\x04\x01\x03\x04", // 𣁁
+ 0x23042: "\x02\x04\x03\x04\x01\x03\x04", // 𣁂
+ 0x23043: "\x04\x01\x03\x04\x05\x02\x03\x04", // 𣁃
+ 0x23044: "\x04\x01\x03\x04\x03\x01\x01\x02", // 𣁄
+ 0x23045: "\x04\x01\x05\x03\x04\x01\x03\x04", // 𣁅
+ 0x23046: "\x04\x01\x03\x04\x04\x05\x04\x03\x04", // 𣁆
+ 0x23047: "\x04\x01\x03\x04\x01\x02\x01\x02\x01", // 𣁇
+ 0x23048: "\x04\x01\x03\x04\x03\x05\x05\x01\x05", // 𣁈
+ 0x23049: "\x04\x05\x04\x03\x04\x04\x01\x03\x04", // 𣁉
+ 0x2304a: "\x04\x03\x01\x01\x03\x02\x04\x01\x03\x04", // 𣁊
+ 0x2304b: "\x02\x05\x02\x01\x03\x05\x03\x01\x03\x04", // 𣁋
+ 0x2304c: "\x04\x01\x03\x04\x02\x05\x01\x01\x01\x02", // 𣁌
+ 0x2304d: "\x03\x04\x04\x03\x04\x05\x04\x01\x03\x04", // 𣁍
+ 0x2304e: "\x04\x01\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 𣁎
+ 0x2304f: "\x03\x04\x01\x01\x02\x03\x04\x04\x01\x03\x04", // 𣁏
+ 0x23050: "\x04\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𣁐
+ 0x23051: "\x04\x01\x03\x04\x03\x02\x04\x01\x01\x02\x01", // 𣁑
+ 0x23052: "\x01\x02\x02\x01\x02\x03\x04\x04\x01\x03\x04", // 𣁒
+ 0x23053: "\x03\x02\x05\x01\x01\x01\x05\x04\x01\x03\x04", // 𣁓
+ 0x23054: "\x04\x01\x03\x04\x02\x05\x01\x01\x05\x01\x05", // 𣁔
+ 0x23055: "\x04\x01\x03\x04\x04\x01\x03\x04\x04\x01\x03\x04", // 𣁕
+ 0x23056: "\x01\x02\x02\x05\x01\x01\x01\x02\x04\x01\x03\x04", // 𣁖
+ 0x23057: "\x02\x05\x02\x01\x03\x04\x03\x03\x04\x04\x01\x03\x04", // 𣁗
+ 0x23058: "\x04\x05\x04\x02\x05\x01\x02\x02\x05\x02\x05\x01", // 𣁘
+ 0x23059: "\x01\x02\x01\x02\x03\x02\x01\x02\x01\x04\x01\x03\x04", // 𣁙
+ 0x2305a: "\x04\x01\x03\x04\x05\x01\x01\x05\x04\x05\x02", // 𣁚
+ 0x2305b: "\x01\x01\x02\x03\x04\x03\x01\x03\x04\x01\x03\x03\x01\x03\x04", // 𣁛
+ 0x2305c: "\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04\x04\x01\x03\x04", // 𣁜
+ 0x2305d: "\x03\x04\x04\x03\x01\x02\x03\x04\x04\x01\x03\x04\x03\x03\x03", // 𣁝
+ 0x2305e: "\x01\x02\x01\x03\x05\x01\x02\x01\x03\x05\x04\x04\x01\x03\x04", // 𣁞
+ 0x2305f: "\x01\x01\x02\x03\x04\x03\x01\x03\x04\x01\x03\x04\x01\x03\x04", // 𣁟
+ 0x23060: "\x04\x05\x04\x04\x01\x03\x05\x01\x01\x02\x05\x01\x01\x02", // 𣁠
+ 0x23061: "\x04\x05\x04\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 𣁡
+ 0x23062: "\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04\x04\x01\x03\x04", // 𣁢
+ 0x23063: "\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02\x04\x01\x03\x04", // 𣁣
+ 0x23064: "\x01\x01\x01\x03\x04\x02\x05\x01\x01\x04\x01\x03\x04\x04\x01\x03\x04", // 𣁤
+ 0x23065: "\x04\x05\x04\x01\x02\x05\x01\x02\x05\x03\x01\x01\x02\x05\x02\x02\x01", // 𣁥
+ 0x23066: "\x04\x01\x03\x04\x01\x01\x02\x01\x02\x01\x05\x04\x03\x04\x01\x01\x02\x01", // 𣁦
+ 0x23067: "\x04\x01\x01\x01\x02\x05\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x01\x03\x04", // 𣁧
+ 0x23068: "\x01\x03\x02\x05\x01\x01\x04\x05\x01\x02\x01\x03\x02\x05\x01\x01\x04\x01\x03\x04", // 𣁨
+ 0x23069: "\x01\x02\x03\x04\x04\x01\x03\x04\x01\x02\x03\x04\x04\x05\x05\x01\x01\x05\x04\x05\x04", // 𣁩
+ 0x2306a: "\x04\x01\x03\x04\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x04\x05\x02\x05\x01\x01\x01", // 𣁪
+ 0x2306b: "\x04\x01\x03\x04\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x02\x05\x02\x02\x01", // 𣁫
+ 0x2306c: "\x05\x01\x01\x02", // 𣁬
+ 0x2306d: "\x05\x03\x05\x04\x04\x01\x02", // 𣁭
+ 0x2306e: "\x03\x01\x01\x02\x04\x04\x01\x02", // 𣁮
+ 0x2306f: "\x04\x04\x01\x02\x01\x01\x03\x05", // 𣁯
+ 0x23070: "\x04\x04\x01\x02\x03\x03\x01\x02", // 𣁰
+ 0x23071: "\x02\x05\x01\x01\x02\x04\x04\x01\x03", // 𣁱
+ 0x23072: "\x04\x04\x01\x02\x03\x05\x04\x04\x04", // 𣁲
+ 0x23073: "\x01\x01\x02\x02\x05\x01\x04\x04\x01\x02", // 𣁳
+ 0x23074: "\x03\x04\x01\x02\x05\x01\x04\x04\x01\x02", // 𣁴
+ 0x23075: "\x04\x03\x01\x01\x01\x03\x04\x04\x01\x02", // 𣁵
+ 0x23076: "\x04\x04\x01\x02\x03\x04\x01\x05\x03\x04", // 𣁶
+ 0x23077: "\x03\x04\x04\x03\x01\x02\x04\x04\x04\x01\x02", // 𣁷
+ 0x23078: "\x01\x02\x01\x01\x01\x05\x04\x04\x04\x01\x02", // 𣁸
+ 0x23079: "\x04\x04\x01\x02\x01\x02\x05\x03\x05\x01\x01", // 𣁹
+ 0x2307a: "\x03\x04\x05\x03\x05\x01\x05\x04\x04\x01\x02", // 𣁺
+ 0x2307b: "\x04\x04\x01\x02\x03\x05\x04\x04\x01\x02\x04", // 𣁻
+ 0x2307c: "\x04\x01\x03\x05\x04\x01\x05\x03\x04\x04\x01\x02", // 𣁼
+ 0x2307d: "\x03\x02\x05\x01\x02\x01\x03\x05\x04\x04\x01\x02", // 𣁽
+ 0x2307e: "\x04\x04\x01\x02\x04\x04\x01\x02\x04\x04\x01\x02", // 𣁾
+ 0x2307f: "\x04\x04\x01\x02\x01\x03\x03\x04\x01\x05\x03\x04", // 𣁿
+ 0x23080: "\x01\x03\x03\x04\x01\x05\x03\x04\x04\x04\x01\x02", // 𣂀
+ 0x23081: "\x04\x01\x03\x03\x04\x01\x05\x03\x04\x04\x04\x01\x02", // 𣂁
+ 0x23082: "\x04\x01\x03\x04\x02\x05\x01\x02\x01\x04\x04\x04\x01\x02", // 𣂂
+ 0x23083: "\x01\x02\x01\x03\x02\x05\x01\x01\x04\x04\x01\x02", // 𣂃
+ 0x23084: "\x02\x05\x01\x02\x02\x05\x02\x05\x01\x04\x04\x01\x02", // 𣂄
+ 0x23085: "\x04\x01\x04\x03\x01\x03\x05\x04\x01\x04\x04\x01\x02", // 𣂅
+ 0x23086: "\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03\x04\x04\x01\x02", // 𣂆
+ 0x23087: "\x04\x04\x01\x02\x01\x03\x02\x01\x01\x01\x02\x01\x01\x01", // 𣂇
+ 0x23088: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x04\x04\x01\x02", // 𣂈
+ 0x23089: "\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01\x04\x04\x01\x02", // 𣂉
+ 0x2308a: "\x05\x01\x03\x01\x01\x02\x03\x04\x01\x02\x04\x04\x04\x01\x02", // 𣂊
+ 0x2308b: "\x04\x05\x01\x03\x04\x04\x01\x02\x03\x01\x02\x01\x02\x05\x01", // 𣂋
+ 0x2308c: "\x04\x04\x01\x02\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 𣂌
+ 0x2308d: "\x01\x02\x01\x04\x05\x01\x03\x05\x03\x05\x01\x01\x02\x04\x04\x01\x02", // 𣂍
+ 0x2308e: "\x04\x04\x01\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04\x04\x04\x01\x02", // 𣂎
+ 0x2308f: "\x01\x01\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x03\x04\x04\x04\x01\x02", // 𣂏
+ 0x23090: "\x01\x01\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04\x04\x04\x01\x02", // 𣂐
+ 0x23091: "\x03\x03\x01\x02", // 𣂑
+ 0x23092: "\x05\x03\x03\x03\x01\x02", // 𣂒
+ 0x23093: "\x03\x03\x01\x02\x01\x02\x01", // 𣂓
+ 0x23094: "\x03\x02\x01\x05\x03\x03\x01\x02", // 𣂔
+ 0x23095: "\x01\x01\x03\x02\x03\x03\x01\x02", // 𣂕
+ 0x23096: "\x01\x01\x03\x02\x03\x03\x01\x02", // 𣂖
+ 0x23097: "\x01\x01\x03\x02\x03\x03\x01\x02", // 𣂗
+ 0x23098: "\x01\x02\x03\x04\x03\x03\x01\x02", // 𣂘
+ 0x23099: "\x03\x03\x01\x02\x03\x03\x01\x02\x04", // 𣂙
+ 0x2309a: "\x05\x02\x05\x02\x03\x03\x03\x01\x02", // 𣂚
+ 0x2309b: "\x03\x01\x01\x02\x03\x04\x03\x03\x01\x02", // 𣂛
+ 0x2309c: "\x01\x02\x05\x01\x02\x05\x03\x03\x01\x02", // 𣂜
+ 0x2309d: "\x03\x03\x01\x02\x03\x02\x05\x02\x05\x01", // 𣂝
+ 0x2309e: "\x04\x05\x01\x01\x05\x03\x04\x03\x03\x01\x02", // 𣂞
+ 0x2309f: "\x02\x05\x02\x01\x05\x02\x03\x03\x03\x01\x02", // 𣂟
+ 0x230a0: "\x03\x03\x03\x02\x01\x02\x01\x03\x03\x01\x02", // 𣂠
+ 0x230a1: "\x01\x03\x05\x03\x03\x04\x03\x04\x03\x03\x01\x02", // 𣂡
+ 0x230a2: "\x02\x01\x02\x05\x01\x01\x01\x05\x03\x03\x01\x02", // 𣂢
+ 0x230a3: "\x02\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02", // 𣂣
+ 0x230a4: "\x03\x05\x01\x01\x03\x05\x01\x01\x03\x03\x01\x02", // 𣂤
+ 0x230a5: "\x01\x03\x03\x04\x01\x05\x03\x04\x03\x03\x01\x02", // 𣂥
+ 0x230a6: "\x01\x03\x04\x01\x02\x05\x01\x02\x03\x03\x01\x02", // 𣂦
+ 0x230a7: "\x01\x05\x03\x04\x01\x05\x03\x04\x03\x03\x01\x02", // 𣂧
+ 0x230a8: "\x02\x05\x01\x01\x03\x05\x03\x03\x03\x03\x01\x02", // 𣂨
+ 0x230a9: "\x03\x01\x02\x01\x02\x02\x01\x01\x03\x03\x01\x02", // 𣂩
+ 0x230aa: "\x01\x02\x01\x05\x05\x01\x02\x01\x03\x03\x01\x02", // 𣂪
+ 0x230ab: "\x02\x05\x02\x01\x01\x02\x03\x04\x03\x03\x01\x02", // 𣂫
+ 0x230ac: "\x03\x05\x03\x03\x03\x01\x02\x01\x01\x02\x05\x02", // 𣂬
+ 0x230ad: "\x03\x04\x04\x03\x01\x01\x05\x03\x03\x01\x02\x04", // 𣂭
+ 0x230ae: "\x03\x04\x01\x03\x05\x01\x01\x02\x02\x03\x03\x01\x02", // 𣂮
+ 0x230af: "\x02\x01\x02\x01\x05\x02\x02\x05\x02\x03\x03\x01\x02", // 𣂯
+ 0x230b0: "\x02\x05\x01\x01\x03\x05\x03\x04\x05\x03\x03\x01\x02", // 𣂰
+ 0x230b1: "\x01\x02\x05\x05\x04\x05\x05\x04\x05\x03\x03\x01\x02", // 𣂱
+ 0x230b2: "\x02\x05\x02\x01\x02\x01\x05\x02\x03\x03\x03\x01\x02", // 𣂲
+ 0x230b3: "\x04\x01\x02\x05\x01\x04\x05\x01\x02\x03\x03\x01\x02", // 𣂳
+ 0x230b4: "\x03\x03\x01\x02\x04\x01\x02\x05\x01\x04\x05\x01\x02", // 𣂴
+ 0x230b5: "\x05\x05\x01\x03\x05\x03\x03\x03\x04\x03\x03\x01\x02", // 𣂵
+ 0x230b6: "\x02\x01\x02\x01\x03\x01\x01\x02\x05\x02\x03\x03\x01\x02", // 𣂶
+ 0x230b7: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x03\x03\x01\x02", // 𣂷
+ 0x230b8: "\x02\x01\x02\x05\x01\x01\x02\x01\x02\x01\x03\x03\x01\x02", // 𣂸
+ 0x230b9: "\x02\x05\x02\x03\x04\x03\x04\x05\x02\x03\x03\x03\x01\x02", // 𣂹
+ 0x230ba: "\x04\x01\x04\x03\x01\x01\x01\x02\x03\x04\x03\x03\x01\x02", // 𣂺
+ 0x230bb: "\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05\x03\x03\x01\x02", // 𣂻
+ 0x230bc: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x03\x03\x01\x02", // 𣂼
+ 0x230bd: "\x02\x05\x01\x02\x05\x01\x01\x05\x03\x04\x01\x03\x03\x01\x02", // 𣂽
+ 0x230be: "\x05\x05\x04\x05\x05\x04\x01\x02\x01\x02\x01\x03\x03\x01\x02", // 𣂾
+ 0x230bf: "\x02\x05\x02\x02\x01\x03\x02\x01\x05\x03\x04\x03\x03\x01\x02", // 𣂿
+ 0x230c0: "\x03\x04\x03\x04\x03\x04\x03\x04\x02\x05\x01\x01\x03\x03\x01\x02", // 𣃀
+ 0x230c1: "\x05\x01\x03\x03\x02\x05\x01\x02\x05\x02\x01\x04\x03\x03\x01\x02", // 𣃁
+ 0x230c2: "\x05\x01\x01\x01\x02\x01\x02\x05\x01\x02\x01\x01\x03\x03\x01\x02", // 𣃂
+ 0x230c3: "\x03\x05\x04\x05\x03\x01\x02\x05\x01\x04\x03\x01\x03\x03\x01\x02", // 𣃃
+ 0x230c4: "\x01\x02\x02\x01\x01\x02\x01\x02\x05\x01\x01\x03\x03\x01\x02", // 𣃄
+ 0x230c5: "\x03\x03\x01\x02\x04\x05\x03\x04\x03\x05\x02\x05\x01\x03\x05\x04", // 𣃅
+ 0x230c6: "\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01\x03\x03\x01\x02", // 𣃆
+ 0x230c7: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x03\x03\x01\x02", // 𣃇
+ 0x230c8: "\x01\x02\x01\x02\x01\x02\x01\x03\x02\x05\x01\x01\x03\x03\x01\x02", // 𣃈
+ 0x230c9: "\x03\x03\x01\x02\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x01\x02\x01", // 𣃉
+ 0x230ca: "\x02\x05\x01\x01\x01\x03\x03\x01\x02\x03\x03\x01\x02\x03\x03\x01\x02", // 𣃊
+ 0x230cb: "\x03\x05\x04\x05\x04\x03\x04\x01\x01\x02\x04\x03\x01\x03\x03\x01\x02", // 𣃋
+ 0x230cc: "\x04\x03\x03\x04\x04\x03\x03\x04\x03\x05\x04\x01\x05\x02\x03\x03\x01\x02", // 𣃌
+ 0x230cd: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x03\x02\x03\x03\x01\x02", // 𣃍
+ 0x230ce: "\x04\x01\x04\x03\x01\x01\x02\x04\x01\x01\x01\x02\x05\x01\x03\x03\x01\x02", // 𣃎
+ 0x230cf: "\x05\x01\x01\x02\x01\x04\x04\x04\x04\x02\x05\x02\x02\x01\x03\x03\x01\x02", // 𣃏
+ 0x230d0: "\x03\x03\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x05\x04\x05\x03", // 𣃐
+ 0x230d1: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x03\x02\x05\x01\x01\x04\x03\x03\x01\x02", // 𣃑
+ 0x230d2: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x01\x03\x03\x01\x02\x03\x03\x01\x02", // 𣃒
+ 0x230d3: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02", // 𣃓
+ 0x230d4: "\x05\x05\x04\x05\x05\x04\x02\x01\x05\x05\x04\x05\x05\x04\x02\x01\x03\x03\x01\x02", // 𣃔
+ 0x230d5: "\x01\x02\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02", // 𣃕
+ 0x230d6: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x03\x01\x02", // 𣃖
+ 0x230d7: "\x04\x01\x05\x03\x05\x03", // 𣃗
+ 0x230d8: "\x04\x01\x05\x03\x03\x04\x02", // 𣃘
+ 0x230d9: "\x01\x03\x04\x04\x01\x05\x03", // 𣃙
+ 0x230da: "\x04\x01\x05\x03\x04\x01\x03\x05", // 𣃚
+ 0x230db: "\x04\x01\x05\x03\x04\x03\x03\x04", // 𣃛
+ 0x230dc: "\x04\x04\x01\x02\x04\x01\x05\x03", // 𣃜
+ 0x230dd: "\x04\x01\x05\x03\x02\x05\x01\x03\x04", // 𣃝
+ 0x230de: "\x01\x03\x04\x01\x02\x04\x01\x05\x03", // 𣃞
+ 0x230df: "\x01\x02\x01\x04\x05\x04\x01\x05\x03", // 𣃟
+ 0x230e0: "\x04\x01\x05\x03\x03\x04\x04\x05\x04", // 𣃠
+ 0x230e1: "\x04\x01\x05\x03\x04\x01\x05\x05\x04", // 𣃡
+ 0x230e2: "\x04\x01\x05\x03\x03\x04\x04\x01\x05", // 𣃢
+ 0x230e3: "\x04\x01\x05\x03\x05\x03\x02\x05\x04", // 𣃣
+ 0x230e4: "\x05\x03\x02\x05\x04\x04\x01\x05\x03", // 𣃤
+ 0x230e5: "\x04\x01\x05\x03\x03\x01\x02\x03\x04", // 𣃥
+ 0x230e6: "\x04\x01\x05\x03\x03\x01\x03\x05\x03\x03", // 𣃦
+ 0x230e7: "\x04\x01\x05\x03\x03\x01\x02\x05\x01\x01", // 𣃧
+ 0x230e8: "\x04\x01\x05\x03\x03\x01\x03\x04\x03\x04", // 𣃨
+ 0x230e9: "\x04\x01\x05\x03\x03\x01\x03\x05\x02\x03", // 𣃩
+ 0x230ea: "\x01\x03\x05\x02\x01\x01\x04\x01\x05\x03", // 𣃪
+ 0x230eb: "\x04\x01\x05\x03\x02\x05\x02\x02\x05\x02", // 𣃫
+ 0x230ec: "\x04\x01\x05\x03\x03\x01\x03\x01\x03\x02", // 𣃬
+ 0x230ed: "\x04\x01\x05\x03\x03\x01\x03\x04\x03\x02", // 𣃭
+ 0x230ee: "\x04\x01\x05\x03\x03\x01\x03\x05\x01\x05", // 𣃮
+ 0x230ef: "\x04\x01\x05\x03\x03\x01\x03\x05\x04\x01", // 𣃯
+ 0x230f0: "\x04\x01\x05\x03\x03\x01\x02\x05\x03\x04", // 𣃰
+ 0x230f1: "\x04\x01\x05\x03\x01\x01\x01\x02\x01\x05", // 𣃱
+ 0x230f2: "\x04\x01\x05\x03\x03\x01\x03\x05\x04\x04", // 𣃲
+ 0x230f3: "\x04\x01\x05\x03\x03\x01\x02\x05\x05\x04\x01", // 𣃳
+ 0x230f4: "\x04\x01\x05\x03\x03\x01\x02\x05\x03\x04\x01", // 𣃴
+ 0x230f5: "\x04\x01\x05\x03\x03\x01\x02\x05\x01\x01\x02", // 𣃵
+ 0x230f6: "\x04\x01\x05\x03\x03\x04\x04\x04\x05\x02", // 𣃶
+ 0x230f7: "\x04\x01\x05\x03\x02\x01\x02\x05\x03\x04\x01", // 𣃷
+ 0x230f8: "\x02\x05\x01\x01\x04\x04\x05\x04\x01\x05\x03", // 𣃸
+ 0x230f9: "\x04\x01\x05\x03\x03\x01\x05\x01\x05\x01\x05", // 𣃹
+ 0x230fa: "\x04\x01\x05\x03\x03\x04\x03\x04\x02\x05\x01", // 𣃺
+ 0x230fb: "\x04\x01\x05\x03\x03\x01\x02\x05\x01\x01\x02", // 𣃻
+ 0x230fc: "\x04\x01\x05\x03\x03\x01\x03\x03\x05\x04\x01\x04", // 𣃼
+ 0x230fd: "\x04\x01\x05\x03\x03\x01\x03\x05\x04\x03\x05\x04", // 𣃽
+ 0x230fe: "\x04\x01\x05\x03\x01\x03\x04\x02\x05\x01\x01\x05", // 𣃾
+ 0x230ff: "\x04\x01\x05\x03\x03\x01\x05\x02\x01\x01\x03\x05", // 𣃿
+ 0x23100: "\x04\x01\x05\x03\x03\x01\x03\x04\x01\x01\x02\x01", // 𣄀
+ 0x23101: "\x04\x01\x05\x03\x03\x04\x04\x03\x04\x05\x05\x04", // 𣄁
+ 0x23102: "\x04\x01\x05\x03\x01\x05\x01\x01\x02\x01\x03\x04", // 𣄂
+ 0x23103: "\x04\x01\x05\x03\x01\x02\x02\x01\x01\x01\x03\x04", // 𣄃
+ 0x23104: "\x04\x01\x05\x03\x01\x02\x01\x02\x03\x03\x01\x02", // 𣄄
+ 0x23105: "\x04\x01\x05\x03\x03\x04\x01\x01\x02\x02\x05\x01", // 𣄅
+ 0x23106: "\x04\x01\x05\x03\x03\x01\x04\x01\x03\x05\x03\x04", // 𣄆
+ 0x23107: "\x04\x01\x05\x03\x03\x04\x01\x02\x05\x01\x02\x02", // 𣄇
+ 0x23108: "\x04\x01\x05\x03\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 𣄈
+ 0x23109: "\x04\x01\x05\x03\x03\x01\x01\x02\x05\x03\x05\x01\x01", // 𣄉
+ 0x2310a: "\x04\x01\x05\x03\x03\x01\x01\x05\x04\x04\x04\x04", // 𣄊
+ 0x2310b: "\x01\x01\x02\x01\x03\x02\x05\x01\x01\x04\x01\x05\x03", // 𣄋
+ 0x2310c: "\x04\x01\x05\x03\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 𣄌
+ 0x2310d: "\x04\x01\x05\x03\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 𣄍
+ 0x2310e: "\x04\x01\x05\x03\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 𣄎
+ 0x2310f: "\x04\x01\x05\x03\x05\x04\x01\x03\x04\x02\x05\x01\x02\x01", // 𣄏
+ 0x23110: "\x04\x01\x05\x03\x03\x01\x04\x04\x05\x03\x05\x02\x05\x02", // 𣄐
+ 0x23111: "\x04\x01\x05\x03\x03\x01\x01\x03\x04\x02\x05\x01\x01\x05", // 𣄑
+ 0x23112: "\x04\x01\x05\x03\x03\x04\x04\x04\x01\x03\x02\x01\x02\x01", // 𣄒
+ 0x23113: "\x04\x01\x05\x03\x03\x01\x04\x03\x01\x04\x03\x01\x01\x05", // 𣄓
+ 0x23114: "\x04\x01\x05\x03\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 𣄔
+ 0x23115: "\x04\x01\x05\x03\x03\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 𣄕
+ 0x23116: "\x04\x01\x05\x03\x03\x01\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𣄖
+ 0x23117: "\x04\x01\x05\x03\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 𣄗
+ 0x23118: "\x04\x01\x05\x03\x03\x01\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01", // 𣄘
+ 0x23119: "\x04\x01\x05\x03\x03\x01\x02\x05\x01\x01\x02\x04\x03\x01\x03\x05", // 𣄙
+ 0x2311a: "\x04\x01\x05\x03\x04\x03\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 𣄚
+ 0x2311b: "\x04\x01\x05\x03\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𣄛
+ 0x2311c: "\x04\x01\x05\x03\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𣄜
+ 0x2311d: "\x04\x01\x05\x03\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 𣄝
+ 0x2311e: "\x04\x01\x05\x03\x03\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05\x03\x04", // 𣄞
+ 0x2311f: "\x04\x01\x05\x03\x01\x02\x05\x01\x02\x04\x05\x02\x01\x05\x05\x01\x02\x01", // 𣄟
+ 0x23120: "\x04\x01\x05\x03\x03\x01\x01\x03\x04\x04\x01\x03\x04\x04\x01\x03\x04\x04", // 𣄠
+ 0x23121: "\x04\x01\x05\x03\x03\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04", // 𣄡
+ 0x23122: "\x04\x01\x05\x03\x03\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𣄢
+ 0x23123: "\x04\x01\x05\x03\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 𣄣
+ 0x23124: "\x04\x01\x05\x03\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01", // 𣄤
+ 0x23125: "\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𣄥
+ 0x23126: "\x04\x01\x05\x03\x03\x01\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x04\x04\x04\x04", // 𣄦
+ 0x23127: "\x04\x01\x05\x03\x03\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04", // 𣄧
+ 0x23128: "\x04\x01\x05\x03\x03\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02", // 𣄨
+ 0x23129: "\x04\x01\x05\x03\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𣄩
+ 0x2312a: "\x04\x01\x05\x03\x03\x01\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x01\x04\x03\x03\x04", // 𣄪
+ 0x2312b: "\x04\x01\x05\x03\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𣄫
+ 0x2312c: "\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 𣄬
+ 0x2312d: "\x01\x05\x03\x05\x03\x03", // 𣄭
+ 0x2312e: "\x01\x05\x03\x05\x02\x05\x01", // 𣄮
+ 0x2312f: "\x03\x03\x05\x01\x05\x03\x05", // 𣄯
+ 0x23130: "\x01\x05\x03\x05\x01\x02\x05\x01\x02", // 𣄰
+ 0x23131: "\x01\x05\x03\x05\x01\x02\x01\x01\x02\x01", // 𣄱
+ 0x23132: "\x01\x05\x03\x05\x03\x05\x01\x03\x05\x05", // 𣄲
+ 0x23133: "\x01\x01\x03\x05\x03\x05\x04\x01\x05\x02", // 𣄳
+ 0x23134: "\x01\x05\x03\x05\x04\x01\x02\x05\x01\x02\x03\x04", // 𣄴
+ 0x23135: "\x04\x01\x02\x05\x01\x02\x03\x04\x01\x05\x03\x05", // 𣄵
+ 0x23136: "\x04\x01\x02\x05\x01\x01\x02\x03\x04\x01\x05\x03\x05", // 𣄶
+ 0x23137: "\x01\x05\x03\x05\x04\x01\x02\x05\x01\x01\x02\x03\x04", // 𣄷
+ 0x23138: "\x01\x05\x03\x05\x02\x05\x01\x02\x02\x05\x02\x05\x01", // 𣄸
+ 0x23139: "\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01\x01\x05\x03\x05", // 𣄹
+ 0x2313a: "\x01\x05\x03\x05\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04", // 𣄺
+ 0x2313b: "\x02\x05\x01\x01\x05", // 𣄻
+ 0x2313c: "\x01\x02\x05\x01\x01", // 𣄼
+ 0x2313d: "\x05\x02\x05\x01\x01", // 𣄽
+ 0x2313e: "\x02\x05\x01\x01\x01\x01", // 𣄾
+ 0x2313f: "\x02\x05\x01\x01\x01\x02", // 𣄿
+ 0x23140: "\x04\x01\x02\x05\x01\x01", // 𣅀
+ 0x23141: "\x02\x05\x01\x01\x03\x04", // 𣅁
+ 0x23142: "\x02\x05\x01\x01\x04\x01", // 𣅂
+ 0x23143: "\x02\x05\x01\x01\x02\x04", // 𣅃
+ 0x23144: "\x02\x05\x01\x01\x05\x04", // 𣅄
+ 0x23145: "\x02\x05\x01\x01\x05\x03", // 𣅅
+ 0x23146: "\x01\x03\x04\x02\x05\x01\x01", // 𣅆
+ 0x23147: "\x02\x05\x01\x01\x04\x01\x05", // 𣅇
+ 0x23148: "\x03\x05\x04\x02\x05\x01\x01", // 𣅈
+ 0x23149: "\x02\x05\x01\x01\x05\x03\x04", // 𣅉
+ 0x2314a: "\x02\x05\x01\x01\x02\x05\x01", // 𣅊
+ 0x2314b: "\x02\x05\x01\x01\x04\x03\x01", // 𣅋
+ 0x2314c: "\x03\x01\x02\x02\x05\x01\x01", // 𣅌
+ 0x2314d: "\x02\x05\x02\x05\x01\x01\x01", // 𣅍
+ 0x2314e: "\x03\x04\x01\x02\x05\x01\x01", // 𣅎
+ 0x2314f: "\x02\x05\x01\x01\x05\x03\x05", // 𣅏
+ 0x23150: "\x02\x05\x01\x01\x01\x03\x04", // 𣅐
+ 0x23151: "\x04\x03\x01\x02\x05\x01\x01", // 𣅑
+ 0x23152: "\x02\x05\x01\x01\x03\x01\x05", // 𣅒
+ 0x23153: "\x02\x05\x01\x01\x05\x03\x01", // 𣅓
+ 0x23154: "\x02\x05\x01\x01\x05\x01\x03\x04", // 𣅔
+ 0x23155: "\x02\x05\x01\x01\x03\x02\x02", // 𣅕
+ 0x23156: "\x02\x05\x01\x01\x04\x01\x05", // 𣅖
+ 0x23157: "\x02\x05\x01\x01\x05\x01\x05", // 𣅗
+ 0x23158: "\x02\x05\x01\x01\x01\x01\x05", // 𣅘
+ 0x23159: "\x02\x05\x01\x01\x01\x01\x05", // 𣅙
+ 0x2315a: "\x02\x05\x01\x01\x02\x05\x03\x04", // 𣅚
+ 0x2315b: "\x01\x03\x03\x02\x02\x05\x01\x01", // 𣅛
+ 0x2315c: "\x01\x05\x01\x05\x02\x05\x01\x01", // 𣅜
+ 0x2315d: "\x02\x05\x01\x01\x03\x04\x05\x04", // 𣅝
+ 0x2315e: "\x03\x02\x05\x01\x03\x02\x05\x01\x01", // 𣅞
+ 0x2315f: "\x02\x05\x01\x01\x04\x05\x03\x05", // 𣅟
+ 0x23160: "\x02\x05\x01\x01\x03\x01\x01\x05", // 𣅠
+ 0x23161: "\x02\x05\x01\x01\x05\x01\x03\x04", // 𣅡
+ 0x23162: "\x02\x05\x01\x01\x03\x05\x01\x02", // 𣅢
+ 0x23163: "\x02\x05\x01\x01\x02\x05\x01\x01", // 𣅣
+ 0x23164: "\x02\x05\x01\x01\x01\x03\x04\x04", // 𣅤
+ 0x23165: "\x02\x05\x01\x01\x01\x05\x05\x01", // 𣅥
+ 0x23166: "\x01\x03\x03\x04\x02\x05\x01\x01", // 𣅦
+ 0x23167: "\x02\x05\x01\x01\x02\x05\x01\x01", // 𣅧
+ 0x23168: "\x01\x01\x02\x01\x02\x05\x01\x01", // 𣅨
+ 0x23169: "\x05\x02\x01\x03\x02\x05\x01\x01", // 𣅩
+ 0x2316a: "\x02\x05\x01\x01\x01\x05\x01\x05", // 𣅪
+ 0x2316b: "\x02\x05\x01\x01\x03\x01\x01\x02", // 𣅫
+ 0x2316c: "\x02\x05\x01\x01\x03\x01\x03\x05", // 𣅬
+ 0x2316d: "\x02\x05\x01\x01\x03\x04\x04\x04", // 𣅭
+ 0x2316e: "\x02\x05\x01\x01\x03\x01\x03\x02", // 𣅮
+ 0x2316f: "\x01\x02\x02\x05\x01\x01\x02\x01", // 𣅯
+ 0x23170: "\x01\x02\x01\x05\x02\x05\x01\x01", // 𣅰
+ 0x23171: "\x02\x03\x04\x01\x02\x05\x01\x01", // 𣅱
+ 0x23172: "\x03\x01\x05\x02\x02\x05\x01\x01", // 𣅲
+ 0x23173: "\x02\x05\x01\x01\x05\x01\x03\x04", // 𣅳
+ 0x23174: "\x02\x05\x01\x01\x05\x02\x01\x01", // 𣅴
+ 0x23175: "\x02\x05\x01\x01\x04\x05\x04\x04", // 𣅵
+ 0x23176: "\x02\x05\x01\x01\x04\x01\x03\x04", // 𣅶
+ 0x23177: "\x02\x05\x01\x01\x02\x05\x01\x03\x05", // 𣅷
+ 0x23178: "\x02\x05\x01\x01\x04\x04\x05\x03\x05", // 𣅸
+ 0x23179: "\x02\x05\x01\x01\x04\x01\x01\x03\x02", // 𣅹
+ 0x2317a: "\x02\x05\x01\x01\x05\x05\x04\x05\x03", // 𣅺
+ 0x2317b: "\x02\x05\x01\x01\x02\x05\x02\x05\x01", // 𣅻
+ 0x2317c: "\x02\x05\x01\x01\x02\x05\x01\x01\x02", // 𣅼
+ 0x2317d: "\x02\x05\x01\x01\x05\x02\x02\x05\x02", // 𣅽
+ 0x2317e: "\x02\x05\x02\x01\x01\x02\x05\x01\x01", // 𣅾
+ 0x2317f: "\x02\x05\x01\x01\x05\x04\x02\x05\x01", // 𣅿
+ 0x23180: "\x02\x05\x01\x01\x02\x05\x02\x01\x01", // 𣆀
+ 0x23181: "\x05\x02\x01\x03\x04\x02\x05\x01\x01", // 𣆁
+ 0x23182: "\x02\x05\x01\x01\x04\x01\x05\x05\x04", // 𣆂
+ 0x23183: "\x02\x05\x01\x01\x01\x03\x05\x01\x01", // 𣆃
+ 0x23184: "\x02\x05\x01\x01\x05\x03\x05\x03\x03", // 𣆄
+ 0x23185: "\x02\x05\x01\x01\x03\x04\x05\x04", // 𣆅
+ 0x23186: "\x02\x05\x01\x01\x03\x02\x05\x01\x01", // 𣆆
+ 0x23187: "\x01\x01\x02\x03\x04\x02\x05\x01\x01", // 𣆇
+ 0x23188: "\x02\x05\x01\x01\x01\x03\x05\x03\x04", // 𣆈
+ 0x23189: "\x02\x05\x01\x01\x02\x05\x01\x01\x02", // 𣆉
+ 0x2318a: "\x02\x05\x01\x02\x01\x02\x05\x01\x01", // 𣆊
+ 0x2318b: "\x02\x05\x01\x01\x03\x01\x02\x03\x04", // 𣆋
+ 0x2318c: "\x03\x05\x04\x05\x05\x02\x05\x01\x01", // 𣆌
+ 0x2318d: "\x02\x05\x01\x01\x04\x01\x05\x03\x05", // 𣆍
+ 0x2318e: "\x02\x05\x01\x01\x03\x05\x01\x01\x02", // 𣆎
+ 0x2318f: "\x02\x05\x01\x01\x01\x03\x02\x04\x01", // 𣆏
+ 0x23190: "\x02\x05\x01\x01\x02\x01\x05\x01\x03", // 𣆐
+ 0x23191: "\x03\x05\x03\x05\x01\x02\x05\x01\x01", // 𣆑
+ 0x23192: "\x02\x05\x01\x01\x01\x03\x04\x05\x03\x04", // 𣆒
+ 0x23193: "\x02\x05\x01\x01\x05\x01\x03\x01\x02\x01", // 𣆓
+ 0x23194: "\x02\x05\x01\x01\x03\x03\x05\x04\x01\x04", // 𣆔
+ 0x23195: "\x05\x03\x05\x03\x05\x03\x02\x05\x01\x01", // 𣆕
+ 0x23196: "\x02\x05\x01\x01\x04\x01\x05\x03\x02\x05", // 𣆖
+ 0x23197: "\x02\x05\x01\x01\x03\x04\x01\x02\x05\x01", // 𣆗
+ 0x23198: "\x02\x05\x01\x01\x01\x02\x05\x01\x03\x04", // 𣆘
+ 0x23199: "\x02\x05\x01\x01\x04\x04\x01\x01\x01\x02", // 𣆙
+ 0x2319a: "\x02\x05\x01\x01\x03\x05\x04\x03\x05\x04", // 𣆚
+ 0x2319b: "\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01", // 𣆛
+ 0x2319c: "\x02\x05\x01\x01\x02\x05\x01\x02\x01", // 𣆜
+ 0x2319d: "\x02\x05\x01\x01\x01\x03\x02\x05\x02\x02", // 𣆝
+ 0x2319e: "\x02\x05\x01\x01\x01\x01\x02\x01\x02\x01", // 𣆞
+ 0x2319f: "\x02\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01", // 𣆟
+ 0x231a0: "\x02\x05\x01\x01\x05\x02\x05\x02\x05\x04", // 𣆠
+ 0x231a1: "\x02\x05\x01\x01\x03\x05\x01\x03\x05\x05", // 𣆡
+ 0x231a2: "\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01", // 𣆢
+ 0x231a3: "\x02\x05\x01\x01\x02\x05\x01\x02\x01\x04", // 𣆣
+ 0x231a4: "\x02\x04\x03\x01\x03\x05\x02\x05\x01\x01", // 𣆤
+ 0x231a5: "\x02\x04\x03\x01\x03\x05\x02\x05\x01\x01", // 𣆥
+ 0x231a6: "\x02\x05\x01\x01\x03\x01\x01\x02\x03\x04", // 𣆦
+ 0x231a7: "\x02\x05\x01\x01\x01\x03\x05\x01\x03\x05", // 𣆧
+ 0x231a8: "\x02\x02\x05\x01\x01\x03\x05\x01\x01\x02", // 𣆨
+ 0x231a9: "\x02\x05\x02\x02\x01\x01\x02\x05\x01\x01", // 𣆩
+ 0x231aa: "\x02\x05\x01\x01\x02\x05\x01\x05\x02\x02", // 𣆪
+ 0x231ab: "\x03\x02\x01\x05\x01\x01\x02\x05\x01\x01", // 𣆫
+ 0x231ac: "\x02\x05\x01\x01\x04\x01\x05\x05\x05\x05", // 𣆬
+ 0x231ad: "\x02\x05\x01\x01\x01\x03\x04\x05\x03\x04", // 𣆭
+ 0x231ae: "\x02\x05\x01\x01\x04\x01\x03\x01\x02\x01", // 𣆮
+ 0x231af: "\x02\x05\x01\x01\x03\x03\x02\x01\x01\x02", // 𣆯
+ 0x231b0: "\x02\x05\x01\x01\x01\x05\x01\x05\x03\x04", // 𣆰
+ 0x231b1: "\x02\x05\x01\x01\x01\x03\x02\x05\x02\x01", // 𣆱
+ 0x231b2: "\x02\x05\x01\x01\x05\x01\x01\x04\x05\x05\x04", // 𣆲
+ 0x231b3: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x03\x04", // 𣆳
+ 0x231b4: "\x02\x05\x01\x01\x03\x02\x01\x02\x01\x05\x04", // 𣆴
+ 0x231b5: "\x02\x05\x01\x01\x03\x02\x01\x01\x05\x01\x01", // 𣆵
+ 0x231b6: "\x03\x05\x02\x05\x01\x03\x05\x02\x05\x01\x01", // 𣆶
+ 0x231b7: "\x02\x05\x01\x01\x01\x02\x01\x01\x02\x01\x05", // 𣆷
+ 0x231b8: "\x05\x01\x01\x02\x05\x01\x01\x05\x01\x05\x04", // 𣆸
+ 0x231b9: "\x02\x05\x01\x01\x04\x05\x02\x05\x01\x01\x01", // 𣆹
+ 0x231ba: "\x02\x05\x01\x01\x02\x04\x03\x03\x05\x04\x01", // 𣆺
+ 0x231bb: "\x02\x05\x01\x01\x05\x01\x05\x01\x02\x05\x01", // 𣆻
+ 0x231bc: "\x03\x05\x02\x05\x01\x01\x05\x01\x01\x03\x02", // 𣆼
+ 0x231bd: "\x02\x05\x01\x01\x01\x03\x01\x02\x01\x01\x02", // 𣆽
+ 0x231be: "\x03\x05\x03\x05\x03\x04\x02\x05\x01\x01", // 𣆾
+ 0x231bf: "\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x05", // 𣆿
+ 0x231c0: "\x03\x02\x01\x01\x05\x01\x01\x02\x05\x01\x01", // 𣇀
+ 0x231c1: "\x02\x05\x01\x01\x01\x05\x05\x05\x01\x02\x01", // 𣇁
+ 0x231c2: "\x02\x05\x01\x01\x02\x05\x02\x03\x04\x04\x05", // 𣇂
+ 0x231c3: "\x04\x03\x01\x01\x03\x04\x02\x02\x05\x01\x01", // 𣇃
+ 0x231c4: "\x02\x05\x01\x01\x01\x02\x01\x03\x03\x01\x02", // 𣇄
+ 0x231c5: "\x02\x05\x01\x01\x01\x02\x01\x05\x05\x01\x02", // 𣇅
+ 0x231c6: "\x02\x05\x01\x01\x04\x04\x05\x01\x02\x03\x04", // 𣇆
+ 0x231c7: "\x03\x02\x01\x05\x05\x04\x02\x05\x01\x01\x01", // 𣇇
+ 0x231c8: "\x02\x05\x01\x01\x01\x05\x03\x04\x01\x03\x05", // 𣇈
+ 0x231c9: "\x02\x05\x01\x01\x05\x01\x01\x03\x02\x05\x01", // 𣇉
+ 0x231ca: "\x02\x05\x01\x01\x01\x03\x02\x04\x02\x05\x01", // 𣇊
+ 0x231cb: "\x02\x05\x01\x01\x04\x03\x02\x05\x01\x03\x05", // 𣇋
+ 0x231cc: "\x02\x05\x01\x01\x01\x02\x01\x04\x05\x04\x04", // 𣇌
+ 0x231cd: "\x02\x05\x01\x01\x01\x03\x04\x03\x04\x03\x04", // 𣇍
+ 0x231ce: "\x02\x05\x01\x01\x01\x05\x01\x05\x05\x01\x05", // 𣇎
+ 0x231cf: "\x02\x05\x01\x01\x01\x02\x03\x04\x02\x05\x01", // 𣇏
+ 0x231d0: "\x02\x05\x01\x01\x01\x02\x01\x03\x05\x03\x04", // 𣇐
+ 0x231d1: "\x02\x02\x05\x01\x01\x03\x02\x01\x01\x01\x02", // 𣇑
+ 0x231d2: "\x02\x05\x01\x01\x02\x05\x01\x03\x01\x02\x01", // 𣇒
+ 0x231d3: "\x02\x05\x01\x01\x05\x01\x03\x02\x01\x02\x05", // 𣇓
+ 0x231d4: "\x02\x05\x01\x01\x03\x05\x04\x01\x01\x01\x02", // 𣇔
+ 0x231d5: "\x02\x05\x01\x01\x03\x01\x02\x01\x05\x03\x04", // 𣇕
+ 0x231d6: "\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01", // 𣇖
+ 0x231d7: "\x02\x05\x01\x01\x01\x03\x05\x01\x01\x05\x04", // 𣇗
+ 0x231d8: "\x03\x01\x02\x03\x04\x02\x02\x02\x05\x01\x01", // 𣇘
+ 0x231d9: "\x03\x02\x05\x01\x01\x03\x05\x02\x05\x01\x01", // 𣇙
+ 0x231da: "\x02\x05\x01\x01\x05\x04\x02\x03\x04\x05\x04", // 𣇚
+ 0x231db: "\x02\x05\x01\x01\x04\x01\x04\x03\x01\x01\x02", // 𣇛
+ 0x231dc: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x04", // 𣇜
+ 0x231dd: "\x02\x05\x01\x01\x04\x01\x03\x04\x04\x05\x04", // 𣇝
+ 0x231de: "\x02\x05\x01\x01\x03\x04\x01\x01\x02\x03\x04", // 𣇞
+ 0x231df: "\x02\x05\x01\x01\x04\x04\x05\x03\x01\x01\x02", // 𣇟
+ 0x231e0: "\x02\x05\x01\x01\x05\x03\x01\x01\x02\x05\x04", // 𣇠
+ 0x231e1: "\x02\x05\x01\x01\x05\x01\x05\x04\x05\x04\x04", // 𣇡
+ 0x231e2: "\x02\x05\x01\x01\x04\x03\x02\x05\x02\x03\x04", // 𣇢
+ 0x231e3: "\x02\x05\x01\x01\x01\x02\x02\x05\x01\x01\x01\x05", // 𣇣
+ 0x231e4: "\x02\x05\x01\x01\x03\x05\x03\x03\x04\x05\x04\x04", // 𣇤
+ 0x231e5: "\x02\x05\x01\x01\x01\x02\x05\x05\x01\x05\x01", // 𣇥
+ 0x231e6: "\x02\x05\x01\x01\x03\x01\x02\x01\x02\x01\x02\x01\x01", // 𣇦
+ 0x231e7: "\x02\x05\x01\x01\x03\x05\x04\x01\x04\x03\x03\x04", // 𣇧
+ 0x231e8: "\x02\x05\x01\x01\x05\x01\x01\x02\x04\x01\x03\x04", // 𣇨
+ 0x231e9: "\x01\x02\x01\x05\x05\x01\x02\x01\x02\x05\x01\x01", // 𣇩
+ 0x231ea: "\x02\x05\x01\x01\x01\x02\x02\x01\x04\x03\x03\x04", // 𣇪
+ 0x231eb: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x03\x04", // 𣇫
+ 0x231ec: "\x02\x05\x01\x01\x04\x04\x05\x03\x05\x05\x01\x05", // 𣇬
+ 0x231ed: "\x02\x05\x01\x01\x03\x03\x02\x03\x01\x01\x02\x01", // 𣇭
+ 0x231ee: "\x01\x02\x03\x04\x03\x02\x01\x05\x02\x05\x01\x01", // 𣇮
+ 0x231ef: "\x02\x05\x01\x01\x03\x05\x01\x03\x03\x05\x01\x03", // 𣇯
+ 0x231f0: "\x02\x05\x01\x01\x01\x02\x03\x04\x01\x02\x03\x04", // 𣇰
+ 0x231f1: "\x02\x05\x02\x05\x01\x01\x02\x05\x02\x05\x01\x01", // 𣇱
+ 0x231f2: "\x02\x05\x01\x01\x03\x05\x01\x05\x02\x05\x01\x01", // 𣇲
+ 0x231f3: "\x02\x05\x01\x01\x01\x02\x02\x01\x01\x01\x03\x04", // 𣇳
+ 0x231f4: "\x02\x05\x01\x01\x03\x05\x01\x01\x04\x01\x03\x04", // 𣇴
+ 0x231f5: "\x02\x05\x01\x01\x02\x05\x01\x01\x03\x05\x01\x01", // 𣇵
+ 0x231f6: "\x05\x01\x01\x05\x01\x01\x04\x05\x02\x05\x01\x01", // 𣇶
+ 0x231f7: "\x02\x05\x01\x01\x01\x02\x01\x02\x04\x01\x05\x03", // 𣇷
+ 0x231f8: "\x01\x02\x01\x02\x01\x02\x03\x04\x02\x05\x01\x01", // 𣇸
+ 0x231f9: "\x04\x04\x01\x05\x01\x05\x01\x05\x02\x05\x01\x01", // 𣇹
+ 0x231fa: "\x02\x05\x01\x02\x02\x01\x03\x04\x02\x05\x01\x01", // 𣇺
+ 0x231fb: "\x03\x05\x01\x05\x03\x01\x03\x04\x02\x05\x01\x01", // 𣇻
+ 0x231fc: "\x02\x05\x01\x01\x04\x04\x05\x01\x01\x02\x03\x04", // 𣇼
+ 0x231fd: "\x02\x05\x01\x01\x05\x04\x05\x04\x05\x04\x05\x04", // 𣇽
+ 0x231fe: "\x02\x05\x01\x01\x01\x02\x01\x03\x05\x03\x05\x04", // 𣇾
+ 0x231ff: "\x02\x05\x01\x01\x01\x02\x03\x04\x02\x05\x01\x01", // 𣇿
+ 0x23200: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x05\x01\x05", // 𣈀
+ 0x23201: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x03\x04", // 𣈁
+ 0x23202: "\x02\x05\x01\x01\x03\x05\x01\x01\x01\x01\x02\x01", // 𣈂
+ 0x23203: "\x02\x05\x01\x01\x03\x04\x04\x03\x05\x02\x01\x05", // 𣈃
+ 0x23204: "\x02\x05\x01\x01\x03\x04\x04\x03\x01\x02\x03\x04", // 𣈄
+ 0x23205: "\x01\x02\x03\x04\x01\x02\x03\x04\x02\x05\x01\x01", // 𣈅
+ 0x23206: "\x01\x02\x05\x01\x02\x05\x01\x01\x02\x05\x01\x01", // 𣈆
+ 0x23207: "\x01\x03\x02\x04\x02\x05\x01\x01\x03\x05\x01\x01", // 𣈇
+ 0x23208: "\x02\x05\x01\x01\x05\x02\x01\x03\x03\x03\x01\x02", // 𣈈
+ 0x23209: "\x02\x01\x01\x02\x03\x04\x05\x04\x02\x05\x01\x01", // 𣈉
+ 0x2320a: "\x03\x01\x02\x01\x03\x01\x03\x04\x02\x05\x01\x01", // 𣈊
+ 0x2320b: "\x02\x05\x01\x01\x04\x01\x03\x02\x03\x05\x04\x04", // 𣈋
+ 0x2320c: "\x04\x01\x03\x04\x01\x02\x03\x04\x02\x05\x01\x01", // 𣈌
+ 0x2320d: "\x02\x05\x01\x01\x04\x04\x05\x02\x05\x01\x01\x01", // 𣈍
+ 0x2320e: "\x02\x05\x01\x01\x04\x05\x03\x04\x01\x02\x03\x04", // 𣈎
+ 0x2320f: "\x02\x05\x01\x01\x01\x02\x02\x01\x02\x05\x01\x01", // 𣈏
+ 0x23210: "\x02\x05\x01\x01\x04\x01\x03\x04\x01\x01\x02\x01", // 𣈐
+ 0x23211: "\x02\x05\x01\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 𣈑
+ 0x23212: "\x02\x05\x01\x01\x01\x02\x02\x01\x01\x01\x03\x04", // 𣈒
+ 0x23213: "\x02\x05\x01\x01\x01\x02\x01\x05\x03\x02\x05\x04", // 𣈓
+ 0x23214: "\x02\x05\x01\x01\x04\x01\x03\x02\x01\x02\x05\x01", // 𣈔
+ 0x23215: "\x02\x05\x01\x01\x01\x02\x03\x04\x03\x01\x03\x04", // 𣈕
+ 0x23216: "\x02\x05\x01\x01\x01\x01\x01\x03\x04\x01\x01\x02", // 𣈖
+ 0x23217: "\x02\x05\x01\x01\x01\x01\x02\x04\x02\x05\x01\x01", // 𣈗
+ 0x23218: "\x02\x05\x01\x01\x04\x01\x03\x02\x01\x02\x05\x01", // 𣈘
+ 0x23219: "\x02\x05\x01\x01\x03\x02\x01\x03\x05\x04\x02\x02", // 𣈙
+ 0x2321a: "\x02\x05\x01\x01\x05\x02\x01\x03\x01\x03\x04\x04", // 𣈚
+ 0x2321b: "\x02\x05\x01\x01\x03\x01\x02\x02\x05\x01\x02\x02", // 𣈛
+ 0x2321c: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x01\x02\x04", // 𣈜
+ 0x2321d: "\x02\x05\x01\x01\x04\x01\x03\x04\x01\x01\x01\x02", // 𣈝
+ 0x2321e: "\x02\x05\x01\x01\x04\x04\x05\x03\x04\x01\x02\x01", // 𣈞
+ 0x2321f: "\x02\x05\x01\x01\x01\x03\x05\x03\x03\x05\x01\x02", // 𣈟
+ 0x23220: "\x02\x05\x01\x01\x05\x04\x01\x03\x04\x01\x03\x02", // 𣈠
+ 0x23221: "\x02\x05\x01\x01\x01\x02\x01\x03\x04\x01\x03\x04", // 𣈡
+ 0x23222: "\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x01\x02", // 𣈢
+ 0x23223: "\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01\x01\x05", // 𣈣
+ 0x23224: "\x05\x02\x03\x05\x02\x03\x05\x02\x02\x02\x05\x01\x01", // 𣈤
+ 0x23225: "\x02\x05\x01\x01\x03\x04\x01\x03\x05\x01\x01\x02\x02", // 𣈥
+ 0x23226: "\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𣈦
+ 0x23227: "\x02\x05\x01\x01\x03\x03\x02\x05\x02\x02\x01\x01\x01", // 𣈧
+ 0x23228: "\x02\x05\x01\x01\x03\x01\x04\x03\x01\x04\x01\x01\x02", // 𣈨
+ 0x23229: "\x02\x05\x01\x01\x05\x04\x03\x03\x04\x03\x04\x03\x04", // 𣈩
+ 0x2322a: "\x03\x02\x05\x01\x05\x01\x02\x05\x02\x02\x05\x01\x01", // 𣈪
+ 0x2322b: "\x02\x05\x01\x01\x02\x05\x01\x01\x04\x01\x04\x03\x01", // 𣈫
+ 0x2322c: "\x02\x05\x01\x01\x05\x05\x01\x03\x05\x03\x03\x03\x04", // 𣈬
+ 0x2322d: "\x02\x05\x01\x01\x03\x02\x05\x01\x02\x05\x02\x01\x04", // 𣈭
+ 0x2322e: "\x02\x05\x01\x01\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𣈮
+ 0x2322f: "\x02\x05\x01\x01\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 𣈯
+ 0x23230: "\x02\x05\x01\x01\x01\x02\x02\x04\x01\x02\x05\x02", // 𣈰
+ 0x23231: "\x02\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x03\x03", // 𣈱
+ 0x23232: "\x02\x05\x01\x01\x05\x02\x01\x03\x02\x05\x01\x01\x01", // 𣈲
+ 0x23233: "\x02\x05\x01\x01\x03\x05\x02\x05\x01\x03\x05\x05\x03", // 𣈳
+ 0x23234: "\x02\x05\x01\x01\x01\x02\x01\x02\x02\x05\x01\x02\x01", // 𣈴
+ 0x23235: "\x02\x05\x01\x01\x03\x02\x01\x05\x01\x01\x03\x04", // 𣈵
+ 0x23236: "\x02\x05\x01\x01\x04\x04\x02\x01\x02\x05\x04\x04\x01", // 𣈶
+ 0x23237: "\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x01\x02\x01", // 𣈷
+ 0x23238: "\x02\x05\x01\x01\x04\x03\x01\x01\x02\x01\x01\x03\x04", // 𣈸
+ 0x23239: "\x02\x05\x01\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01", // 𣈹
+ 0x2323a: "\x02\x05\x01\x01\x01\x02\x05\x02\x02\x01\x03\x05\x01", // 𣈺
+ 0x2323b: "\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x05\x03\x04", // 𣈻
+ 0x2323c: "\x02\x05\x01\x01\x03\x05\x01\x02\x05\x01\x02\x01\x04", // 𣈼
+ 0x2323d: "\x02\x05\x01\x01\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 𣈽
+ 0x2323e: "\x02\x05\x01\x01\x02\x05\x01\x02\x01\x03\x01\x01\x02", // 𣈾
+ 0x2323f: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x05\x03\x01\x05", // 𣈿
+ 0x23240: "\x02\x05\x01\x01\x02\x05\x02\x05\x04\x03\x05\x05\x04", // 𣉀
+ 0x23241: "\x02\x05\x01\x01\x03\x04\x04\x03\x02\x05\x02\x01\x01", // 𣉁
+ 0x23242: "\x02\x05\x01\x01\x03\x04\x01\x02\x05\x01\x01\x03\x02", // 𣉂
+ 0x23243: "\x02\x05\x01\x01\x03\x02\x01\x05\x01\x01\x02\x01\x05", // 𣉃
+ 0x23244: "\x03\x01\x01\x02\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 𣉄
+ 0x23245: "\x02\x05\x01\x01\x01\x01\x01\x03\x04\x01\x01\x03\x04", // 𣉅
+ 0x23246: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 𣉆
+ 0x23247: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x04\x02\x02", // 𣉇
+ 0x23248: "\x03\x05\x01\x05\x02\x05\x01\x01\x05\x03\x02\x05\x01", // 𣉈
+ 0x23249: "\x02\x05\x01\x01\x05\x04\x03\x03\x04\x01\x01\x03\x04", // 𣉉
+ 0x2324a: "\x02\x05\x01\x01\x01\x02\x01\x04\x03\x01\x01\x03\x05", // 𣉊
+ 0x2324b: "\x02\x05\x01\x01\x01\x02\x05\x02\x02\x01\x05\x03\x01", // 𣉋
+ 0x2324c: "\x02\x05\x01\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01", // 𣉌
+ 0x2324d: "\x02\x05\x01\x01\x02\x05\x01\x02\x01\x01\x05\x03\x04", // 𣉍
+ 0x2324e: "\x02\x05\x01\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 𣉎
+ 0x2324f: "\x02\x05\x01\x01\x01\x02\x02\x03\x04\x04\x05\x04", // 𣉏
+ 0x23250: "\x02\x05\x01\x01\x01\x02\x03\x04\x04\x04\x05\x04", // 𣉐
+ 0x23251: "\x03\x05\x05\x05\x05\x02\x05\x01\x01\x02\x05\x01\x01", // 𣉑
+ 0x23252: "\x02\x05\x01\x01\x04\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 𣉒
+ 0x23253: "\x02\x05\x01\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x01", // 𣉓
+ 0x23254: "\x02\x05\x01\x01\x04\x05\x04\x04\x02\x05\x01\x02\x01\x04", // 𣉔
+ 0x23255: "\x02\x05\x01\x01\x05\x04\x05\x04\x05\x04\x01\x02\x03\x04", // 𣉕
+ 0x23256: "\x02\x05\x01\x01\x04\x03\x03\x04\x01\x02\x05\x01\x01\x01", // 𣉖
+ 0x23257: "\x02\x05\x01\x01\x02\x05\x01\x03\x04\x02\x05\x02\x02\x01", // 𣉗
+ 0x23258: "\x05\x04\x03\x05\x04\x01\x01\x05\x01\x05\x02\x05\x01\x01", // 𣉘
+ 0x23259: "\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04\x02\x05\x01\x01", // 𣉙
+ 0x2325a: "\x02\x05\x01\x01\x05\x02\x01\x03\x04\x03\x01\x01\x01\x02", // 𣉚
+ 0x2325b: "\x02\x05\x01\x01\x01\x02\x02\x01\x01\x01\x03\x03\x01\x02", // 𣉛
+ 0x2325c: "\x02\x05\x01\x01\x03\x04\x01\x02\x03\x05\x04\x03\x05\x05\x04", // 𣉜
+ 0x2325d: "\x02\x05\x01\x01\x03\x05\x03\x03\x01\x01\x03\x05\x03\x04", // 𣉝
+ 0x2325e: "\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 𣉞
+ 0x2325f: "\x02\x05\x01\x01\x01\x02\x01\x03\x03\x05\x02\x05\x01\x01", // 𣉟
+ 0x23260: "\x03\x02\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 𣉠
+ 0x23261: "\x02\x05\x01\x01\x01\x01\x02\x03\x01\x02\x01\x05\x04", // 𣉡
+ 0x23262: "\x02\x05\x01\x01\x04\x03\x01\x02\x03\x04\x04\x05\x05\x04", // 𣉢
+ 0x23263: "\x04\x05\x05\x03\x04\x01\x02\x05\x01\x01\x02\x05\x01\x01", // 𣉣
+ 0x23264: "\x02\x05\x01\x01\x04\x01\x01\x01\x02\x05\x01\x03\x02\x02", // 𣉤
+ 0x23265: "\x02\x05\x01\x01\x03\x03\x05\x01\x01\x05\x03\x05\x05\x04", // 𣉥
+ 0x23266: "\x02\x05\x01\x01\x03\x01\x02\x01\x05\x05\x02\x01\x02", // 𣉦
+ 0x23267: "\x02\x05\x01\x01\x03\x01\x04\x03\x01\x04\x03\x01\x03\x04", // 𣉧
+ 0x23268: "\x02\x05\x01\x01\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𣉨
+ 0x23269: "\x01\x02\x01\x05\x05\x01\x02\x01\x03\x04\x02\x05\x01\x01", // 𣉩
+ 0x2326a: "\x02\x05\x01\x01\x01\x02\x01\x02\x04\x01\x05\x03\x02\x05", // 𣉪
+ 0x2326b: "\x02\x05\x01\x01\x01\x02\x03\x04\x04\x03\x01\x01\x01\x02", // 𣉫
+ 0x2326c: "\x02\x05\x01\x01\x02\x05\x01\x01\x04\x04\x05\x05\x02\x01", // 𣉬
+ 0x2326d: "\x03\x02\x05\x04\x03\x01\x02\x03\x04\x01\x02\x05\x01\x01", // 𣉭
+ 0x2326e: "\x02\x05\x01\x01\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 𣉮
+ 0x2326f: "\x04\x04\x01\x03\x04\x01\x01\x02\x03\x04\x02\x05\x01\x01", // 𣉯
+ 0x23270: "\x02\x05\x01\x01\x04\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 𣉰
+ 0x23271: "\x02\x05\x01\x01\x05\x02\x02\x05\x02\x01\x03\x04\x01\x02", // 𣉱
+ 0x23272: "\x02\x05\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𣉲
+ 0x23273: "\x02\x05\x01\x01\x02\x05\x02\x02\x01\x01\x02\x01\x05\x04", // 𣉳
+ 0x23274: "\x02\x05\x01\x01\x01\x02\x03\x04\x01\x05\x04\x01\x02\x01", // 𣉴
+ 0x23275: "\x02\x05\x01\x01\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03", // 𣉵
+ 0x23276: "\x02\x05\x01\x01\x01\x01\x01\x02\x03\x04\x03\x01\x01\x05", // 𣉶
+ 0x23277: "\x02\x05\x01\x01\x03\x05\x03\x03\x04\x05\x02\x04\x05", // 𣉷
+ 0x23278: "\x02\x05\x01\x01\x04\x01\x01\x01\x02\x05\x01\x05\x01\x05", // 𣉸
+ 0x23279: "\x02\x05\x01\x01\x03\x03\x02\x03\x04\x01\x01\x02\x03\x04", // 𣉹
+ 0x2327a: "\x02\x05\x01\x01\x01\x03\x05\x03\x03\x03\x01\x01\x03\x04", // 𣉺
+ 0x2327b: "\x03\x01\x01\x03\x04\x02\x05\x01\x01\x01\x02\x02\x05\x01\x01", // 𣉻
+ 0x2327c: "\x02\x05\x01\x01\x04\x03\x01\x01\x02\x01\x02\x05\x02\x02\x01", // 𣉼
+ 0x2327d: "\x02\x05\x01\x01\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 𣉽
+ 0x2327e: "\x02\x05\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 𣉾
+ 0x2327f: "\x02\x05\x01\x01\x01\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01", // 𣉿
+ 0x23280: "\x02\x05\x01\x01\x01\x02\x02\x04\x01\x05\x04\x03\x02\x05", // 𣊀
+ 0x23281: "\x01\x02\x01\x04\x01\x05\x03\x03\x01\x03\x04\x02\x05\x01\x01", // 𣊁
+ 0x23282: "\x02\x05\x01\x01\x04\x01\x04\x03\x01\x03\x04\x03\x04\x03\x04", // 𣊂
+ 0x23283: "\x05\x04\x05\x02\x03\x03\x01\x03\x04\x05\x03\x02\x05\x01\x01", // 𣊃
+ 0x23284: "\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01", // 𣊄
+ 0x23285: "\x03\x02\x05\x01\x01\x01\x03\x04\x01\x05\x02\x02\x05\x01\x01", // 𣊅
+ 0x23286: "\x03\x02\x05\x01\x01\x01\x03\x05\x05\x03\x02\x02\x05\x01\x01", // 𣊆
+ 0x23287: "\x02\x05\x01\x01\x04\x04\x05\x01\x02\x05\x01\x02\x01\x03\x04", // 𣊇
+ 0x23288: "\x02\x05\x01\x01\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 𣊈
+ 0x23289: "\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x03\x04\x05\x03\x04", // 𣊉
+ 0x2328a: "\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x01\x02\x03\x04\x01", // 𣊊
+ 0x2328b: "\x02\x05\x01\x01\x01\x01\x02\x03\x01\x01\x03\x04\x02\x05\x01", // 𣊋
+ 0x2328c: "\x02\x05\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𣊌
+ 0x2328d: "\x02\x05\x01\x01\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04", // 𣊍
+ 0x2328e: "\x02\x05\x01\x01\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04", // 𣊎
+ 0x2328f: "\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01\x02\x05\x01\x01\x01", // 𣊏
+ 0x23290: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x01\x01\x05\x03\x04", // 𣊐
+ 0x23291: "\x02\x01\x05\x03\x01\x05\x03\x05\x04\x03\x05\x02\x05\x01\x01", // 𣊑
+ 0x23292: "\x02\x05\x01\x01\x01\x02\x01\x03\x04\x01\x02\x01\x01\x02\x04", // 𣊒
+ 0x23293: "\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04\x02\x05\x01\x01", // 𣊓
+ 0x23294: "\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x02\x05\x01\x01", // 𣊔
+ 0x23295: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x05\x01\x01\x05\x03\x04", // 𣊕
+ 0x23296: "\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x04", // 𣊖
+ 0x23297: "\x02\x05\x01\x01\x03\x03\x02\x03\x01\x01\x02\x01\x01\x05\x02", // 𣊗
+ 0x23298: "\x02\x05\x01\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𣊘
+ 0x23299: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02", // 𣊙
+ 0x2329a: "\x02\x05\x01\x01\x01\x03\x04\x03\x04\x03\x04\x03\x04\x01\x02", // 𣊚
+ 0x2329b: "\x01\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x01\x01", // 𣊛
+ 0x2329c: "\x02\x05\x01\x01\x03\x05\x05\x01\x01\x04\x03\x04\x03\x04", // 𣊜
+ 0x2329d: "\x02\x05\x01\x01\x01\x02\x01\x01\x02\x02\x01\x01\x02\x03\x04", // 𣊝
+ 0x2329e: "\x02\x05\x01\x01\x04\x03\x03\x04\x04\x03\x03\x04\x03\x05\x03\x04", // 𣊞
+ 0x2329f: "\x02\x05\x01\x01\x01\x02\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 𣊟
+ 0x232a0: "\x02\x05\x01\x01\x01\x02\x05\x02\x02\x01\x01\x01\x04\x03\x03\x04", // 𣊠
+ 0x232a1: "\x02\x05\x01\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x02\x03\x04", // 𣊡
+ 0x232a2: "\x02\x05\x01\x01\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 𣊢
+ 0x232a3: "\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x02\x01\x02\x05\x01\x01", // 𣊣
+ 0x232a4: "\x02\x05\x01\x01\x03\x05\x02\x05\x01\x01\x03\x01\x01\x05\x03\x04", // 𣊤
+ 0x232a5: "\x02\x05\x01\x01\x01\x03\x01\x02\x02\x01\x03\x04\x04\x03\x03\x04", // 𣊥
+ 0x232a6: "\x03\x04\x03\x04\x03\x04\x03\x04\x02\x05\x01\x01\x02\x05\x01\x01", // 𣊦
+ 0x232a7: "\x02\x05\x01\x01\x03\x05\x01\x01\x02\x05\x01\x01\x03\x05\x01\x01", // 𣊧
+ 0x232a8: "\x05\x02\x03\x05\x02\x03\x05\x02\x02\x01\x03\x04\x02\x05\x01\x01", // 𣊨
+ 0x232a9: "\x02\x05\x01\x01\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 𣊩
+ 0x232aa: "\x02\x05\x01\x01\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 𣊪
+ 0x232ab: "\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01", // 𣊫
+ 0x232ac: "\x02\x05\x01\x01\x03\x04\x04\x03\x04\x05\x03\x05\x04\x01\x05\x02", // 𣊬
+ 0x232ad: "\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01", // 𣊭
+ 0x232ae: "\x01\x02\x01\x04\x03\x01\x01\x02\x05\x03\x01\x01\x02\x05\x01\x01", // 𣊮
+ 0x232af: "\x02\x05\x01\x01\x01\x04\x05\x02\x04\x01\x03\x04\x01\x01\x05\x04", // 𣊯
+ 0x232b0: "\x02\x05\x01\x01\x01\x02\x01\x03\x04\x01\x02\x05\x01\x02\x02\x01", // 𣊰
+ 0x232b1: "\x02\x05\x01\x01\x05\x01\x01\x02\x02\x05\x01\x01\x03\x04\x05\x03", // 𣊱
+ 0x232b2: "\x02\x05\x01\x01\x03\x01\x01\x02\x02\x02\x02\x01\x04\x04\x04\x04", // 𣊲
+ 0x232b3: "\x02\x05\x01\x01\x03\x01\x02\x05\x01\x02\x01\x01\x04\x04\x04\x04", // 𣊳
+ 0x232b4: "\x02\x05\x01\x01\x01\x02\x02\x01\x03\x04\x01\x01\x01\x01\x01\x02", // 𣊴
+ 0x232b5: "\x02\x05\x01\x01\x01\x03\x02\x05\x02\x02\x01\x03\x02\x05\x02\x02", // 𣊵
+ 0x232b6: "\x02\x05\x01\x01\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04", // 𣊶
+ 0x232b7: "\x02\x05\x01\x01\x03\x05\x03\x03\x02\x05\x01\x01\x03\x05\x03\x03", // 𣊷
+ 0x232b8: "\x03\x05\x03\x03\x02\x05\x01\x01\x05\x01\x01\x03\x03\x02\x05\x02", // 𣊸
+ 0x232b9: "\x02\x05\x01\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𣊹
+ 0x232ba: "\x02\x05\x01\x01\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01", // 𣊺
+ 0x232bb: "\x02\x05\x01\x01\x05\x02\x02\x05\x02\x01\x03\x04\x01\x02\x03\x04", // 𣊻
+ 0x232bc: "\x01\x01\x03\x02\x02\x05\x01\x01\x01\x02\x05\x01\x01\x02\x01\x01", // 𣊼
+ 0x232bd: "\x05\x01\x05\x01\x05\x02\x05\x01\x01\x03\x01\x03\x04\x02\x05\x02", // 𣊽
+ 0x232be: "\x02\x05\x01\x01\x02\x01\x01\x01\x02\x01\x01\x01\x04\x05\x04\x04", // 𣊾
+ 0x232bf: "\x02\x05\x01\x01\x01\x02\x02\x05\x01\x01\x01\x02\x03\x05\x01\x01", // 𣊿
+ 0x232c0: "\x04\x04\x05\x03\x01\x01\x02\x02\x05\x01\x01\x03\x01\x01\x02\x01", // 𣋀
+ 0x232c1: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x02\x01\x01\x01\x05\x04", // 𣋁
+ 0x232c2: "\x02\x05\x01\x01\x01\x02\x02\x05\x01\x01\x01\x02\x03\x05\x01\x01", // 𣋂
+ 0x232c3: "\x02\x05\x01\x01\x03\x04\x04\x05\x01\x01\x03\x02\x05\x01\x02\x02", // 𣋃
+ 0x232c4: "\x01\x02\x02\x01\x02\x05\x01\x01\x04\x01\x02\x05\x01\x05\x02\x01", // 𣋄
+ 0x232c5: "\x01\x02\x02\x01\x02\x05\x01\x02\x01\x01\x01\x05\x02\x05\x01\x01", // 𣋅
+ 0x232c6: "\x02\x05\x01\x01\x05\x01\x01\x02\x02\x05\x01\x01\x01\x01\x02\x01", // 𣋆
+ 0x232c7: "\x02\x05\x01\x01\x01\x03\x05\x03\x03\x04\x05\x04\x01\x02\x04", // 𣋇
+ 0x232c8: "\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x02\x02\x05\x01\x01", // 𣋈
+ 0x232c9: "\x02\x05\x01\x01\x03\x02\x05\x03\x04\x03\x01\x02\x03\x04\x01\x03\x04", // 𣋉
+ 0x232ca: "\x02\x05\x01\x01\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 𣋊
+ 0x232cb: "\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𣋋
+ 0x232cc: "\x02\x05\x01\x01\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x01\x05", // 𣋌
+ 0x232cd: "\x02\x05\x01\x01\x02\x05\x02\x02\x01\x03\x05\x04\x01\x05\x02\x01\x05", // 𣋍
+ 0x232ce: "\x02\x05\x02\x02\x05\x02\x02\x05\x02\x02\x05\x01\x01\x02\x05\x01\x01", // 𣋎
+ 0x232cf: "\x02\x05\x01\x01\x02\x05\x01\x02\x02\x01\x01\x03\x01\x01\x05\x03\x04", // 𣋏
+ 0x232d0: "\x02\x05\x01\x01\x03\x05\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01\x04", // 𣋐
+ 0x232d1: "\x02\x05\x01\x01\x01\x02\x02\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 𣋑
+ 0x232d2: "\x02\x05\x01\x01\x01\x02\x01\x02\x05\x04\x03\x03\x04\x01\x01\x03\x04", // 𣋒
+ 0x232d3: "\x02\x05\x01\x01\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x01\x05", // 𣋓
+ 0x232d4: "\x02\x05\x01\x01\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x01\x05", // 𣋔
+ 0x232d5: "\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x01\x01\x03\x04\x01\x01\x02", // 𣋕
+ 0x232d6: "\x02\x05\x01\x01\x02\x05\x02\x02\x01\x03\x01\x01\x01\x02\x01\x01\x01", // 𣋖
+ 0x232d7: "\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01", // 𣋗
+ 0x232d8: "\x02\x05\x01\x01\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𣋘
+ 0x232d9: "\x02\x05\x01\x01\x05\x01\x03\x01\x02\x02\x01\x03\x04\x03\x05\x05\x04", // 𣋙
+ 0x232da: "\x02\x05\x01\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05\x03\x04", // 𣋚
+ 0x232db: "\x02\x05\x01\x01\x01\x02\x02\x04\x04\x01\x03\x05\x04\x02\x05\x01", // 𣋛
+ 0x232dc: "\x02\x05\x01\x01\x01\x02\x03\x04\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 𣋜
+ 0x232dd: "\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 𣋝
+ 0x232de: "\x02\x05\x01\x01\x01\x02\x01\x02\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 𣋞
+ 0x232df: "\x02\x05\x01\x01\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x05\x05\x04", // 𣋟
+ 0x232e0: "\x02\x05\x01\x01\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01", // 𣋠
+ 0x232e1: "\x02\x05\x01\x01\x02\x02\x04\x03\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 𣋡
+ 0x232e2: "\x02\x05\x01\x01\x01\x02\x02\x05\x01\x03\x05\x01\x02\x02\x05\x01\x03\x05", // 𣋢
+ 0x232e3: "\x02\x05\x01\x01\x01\x02\x05\x01\x02\x05\x03\x01\x01\x02\x05\x02\x02\x01", // 𣋣
+ 0x232e4: "\x03\x04\x01\x02\x05\x02\x01\x03\x04\x01\x02\x05\x02\x01\x02\x05\x01\x01", // 𣋤
+ 0x232e5: "\x02\x05\x01\x01\x04\x03\x05\x01\x05\x02\x03\x04\x03\x05\x01\x05\x02\x03", // 𣋥
+ 0x232e6: "\x02\x05\x01\x01\x05\x02\x02\x05\x02\x01\x03\x04\x03\x04\x03\x04\x01\x02", // 𣋦
+ 0x232e7: "\x05\x04\x05\x02\x01\x02\x01\x05\x04\x05\x02\x01\x02\x01\x02\x05\x01\x01", // 𣋧
+ 0x232e8: "\x01\x01\x01\x03\x04\x02\x05\x01\x01\x03\x02\x05\x01\x01\x04\x05\x05\x04", // 𣋨
+ 0x232e9: "\x02\x05\x01\x01\x04\x01\x04\x03\x01\x01\x03\x01\x02\x05\x01\x02\x03\x04", // 𣋩
+ 0x232ea: "\x02\x05\x01\x01\x04\x04\x05\x01\x02\x03\x03\x02\x05\x01\x01\x01\x03\x04", // 𣋪
+ 0x232eb: "\x04\x04\x01\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02\x02\x05\x01\x01", // 𣋫
+ 0x232ec: "\x02\x05\x01\x01\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 𣋬
+ 0x232ed: "\x02\x05\x01\x01\x02\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03", // 𣋭
+ 0x232ee: "\x02\x05\x01\x01\x03\x01\x01\x02\x01\x02\x01\x05\x03\x01\x05\x01\x01\x05", // 𣋮
+ 0x232ef: "\x03\x05\x01\x05\x02\x05\x01\x01\x01\x02\x01\x02\x01\x05\x01\x03\x02\x05", // 𣋯
+ 0x232f0: "\x02\x05\x01\x01\x01\x02\x02\x01\x03\x04\x02\x04\x01\x03\x04\x03\x05\x04", // 𣋰
+ 0x232f1: "\x02\x05\x01\x01\x03\x02\x01\x01\x02\x05\x01\x01\x05\x01\x01\x01\x03\x04", // 𣋱
+ 0x232f2: "\x02\x05\x01\x01\x05\x05\x05\x02\x05\x03\x04\x01\x05\x04\x04\x05\x04\x04\x05", // 𣋲
+ 0x232f3: "\x02\x05\x01\x01\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x04\x04\x04\x04", // 𣋳
+ 0x232f4: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x04\x03\x03\x04\x02\x05\x01\x01", // 𣋴
+ 0x232f5: "\x02\x05\x01\x01\x03\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x03\x04", // 𣋵
+ 0x232f6: "\x02\x05\x01\x01\x04\x04\x05\x03\x05\x03\x02\x05\x01\x01\x01\x03\x05\x01\x05", // 𣋶
+ 0x232f7: "\x02\x05\x01\x01\x04\x01\x03\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04", // 𣋷
+ 0x232f8: "\x02\x05\x01\x01\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x05\x03\x04", // 𣋸
+ 0x232f9: "\x02\x05\x01\x01\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04\x01\x03\x02", // 𣋹
+ 0x232fa: "\x02\x05\x01\x01\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𣋺
+ 0x232fb: "\x02\x05\x01\x01\x01\x02\x02\x02\x05\x02\x02\x01\x01\x03\x04\x05\x03\x04", // 𣋻
+ 0x232fc: "\x02\x05\x01\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01", // 𣋼
+ 0x232fd: "\x02\x05\x01\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x02\x02", // 𣋽
+ 0x232fe: "\x02\x05\x01\x01\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x03\x04", // 𣋾
+ 0x232ff: "\x04\x01\x03\x05\x04\x03\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x01\x01", // 𣋿
+ 0x23300: "\x02\x05\x01\x01\x04\x03\x01\x01\x02\x01\x03\x01\x02\x03\x04\x05\x03\x05\x03\x04", // 𣌀
+ 0x23301: "\x02\x05\x01\x01\x01\x03\x05\x03\x03\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01", // 𣌁
+ 0x23302: "\x02\x05\x01\x01\x01\x03\x05\x03\x03\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01", // 𣌂
+ 0x23303: "\x01\x02\x05\x01\x01\x01\x01\x02\x03\x04\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 𣌃
+ 0x23304: "\x02\x05\x01\x01\x03\x04\x04\x03\x02\x05\x02\x02\x01\x05\x01\x01\x05\x04\x05\x03", // 𣌄
+ 0x23305: "\x02\x05\x01\x01\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 𣌅
+ 0x23306: "\x02\x05\x01\x01\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 𣌆
+ 0x23307: "\x03\x04\x05\x02\x01\x01\x02\x01\x03\x04\x05\x02\x01\x01\x02\x01\x02\x05\x01\x01", // 𣌇
+ 0x23308: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 𣌈
+ 0x23309: "\x02\x05\x01\x01\x02\x01\x05\x03\x01\x05\x03\x02\x04\x01\x01\x01\x02\x01\x01\x01\x05", // 𣌉
+ 0x2330a: "\x02\x05\x01\x01\x01\x04\x05\x02\x04\x01\x03\x04\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 𣌊
+ 0x2330b: "\x02\x05\x01\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x03\x05\x03\x04", // 𣌋
+ 0x2330c: "\x02\x05\x01\x01\x03\x01\x01\x02\x01\x03\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𣌌
+ 0x2330d: "\x02\x05\x01\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01", // 𣌍
+ 0x2330e: "\x02\x05\x01\x01\x01\x02\x01\x03\x04\x03\x03\x02\x02\x05\x02\x01\x03\x05\x03\x01\x03\x05", // 𣌎
+ 0x2330f: "\x02\x05\x01\x01\x01\x01\x02\x04\x02\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𣌏
+ 0x23310: "\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x02\x01\x05\x01\x05\x01\x02\x01\x02\x05\x01\x01", // 𣌐
+ 0x23311: "\x02\x05\x01\x01\x02\x05\x01\x01\x05\x02\x02\x05\x02\x01\x03\x04\x04\x03\x01\x02\x03\x04", // 𣌑
+ 0x23312: "\x02\x05\x01\x01\x03\x05\x03\x03\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x01\x02\x04", // 𣌒
+ 0x23313: "\x02\x05\x01\x01\x02\x01\x02\x01\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𣌓
+ 0x23314: "\x02\x05\x01\x01\x04\x04\x05\x03\x05\x04\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𣌔
+ 0x23315: "\x02\x05\x01\x01\x01\x02\x02\x03\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𣌕
+ 0x23316: "\x02\x05\x01\x01\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𣌖
+ 0x23317: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𣌗
+ 0x23318: "\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x05\x01\x01\x02\x01\x02\x01\x01\x01\x02\x02\x01\x05\x04", // 𣌘
+ 0x23319: "\x02\x05\x01\x01\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 𣌙
+ 0x2331a: "\x02\x05\x01\x01\x01\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x03\x04", // 𣌚
+ 0x2331b: "\x02\x05\x01\x01\x01\x05\x04\x05\x04\x05\x04\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𣌛
+ 0x2331c: "\x02\x05\x01\x01\x03\x01\x01\x02\x01\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 𣌜
+ 0x2331d: "\x02\x05\x01\x01\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 𣌝
+ 0x2331e: "\x04\x03\x01\x02\x02\x04\x03\x01\x02\x05\x01\x01\x04\x03\x01\x01\x01\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 𣌞
+ 0x2331f: "\x02\x05\x01\x01\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x03\x04\x01", // 𣌟
+ 0x23320: "\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x01\x01\x03\x04\x02\x05\x01\x01", // 𣌠
+ 0x23321: "\x02\x02\x05\x01\x01\x05\x04", // 𣌡
+ 0x23322: "\x02\x05\x01\x01\x02\x03\x04", // 𣌢
+ 0x23323: "\x03\x02\x05\x01\x01\x03\x04\x05", // 𣌣
+ 0x23324: "\x02\x05\x01\x01\x02\x03\x04\x03", // 𣌤
+ 0x23325: "\x02\x05\x01\x01\x03\x05\x05\x03", // 𣌥
+ 0x23326: "\x02\x05\x01\x01\x05\x01\x01\x02", // 𣌦
+ 0x23327: "\x02\x05\x02\x02\x01\x02\x05\x01\x01", // 𣌧
+ 0x23328: "\x02\x05\x01\x01\x02\x03\x05\x01\x01", // 𣌨
+ 0x23329: "\x02\x05\x02\x05\x01\x01\x03\x04\x05", // 𣌩
+ 0x2332a: "\x02\x05\x01\x01\x04\x01\x05\x03\x04", // 𣌪
+ 0x2332b: "\x02\x05\x01\x01\x02\x01\x01\x01\x05", // 𣌫
+ 0x2332c: "\x02\x05\x01\x01\x02\x05\x03\x05\x01", // 𣌬
+ 0x2332d: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x01", // 𣌭
+ 0x2332e: "\x02\x05\x01\x01\x04\x03\x04\x02\x04\x02", // 𣌮
+ 0x2332f: "\x02\x05\x01\x01\x01\x02\x03\x04\x03\x05", // 𣌯
+ 0x23330: "\x02\x05\x01\x01\x03\x05\x01\x01\x05\x03", // 𣌰
+ 0x23331: "\x02\x05\x01\x02\x02\x01\x02\x03\x04\x03", // 𣌱
+ 0x23332: "\x02\x05\x01\x01\x05\x01\x05\x01\x03\x02", // 𣌲
+ 0x23333: "\x05\x05\x04\x05\x05\x04\x02\x05\x01\x01", // 𣌳
+ 0x23334: "\x02\x05\x01\x02\x02\x01\x03\x05\x01\x01", // 𣌴
+ 0x23335: "\x02\x05\x01\x02\x02\x01\x03\x05\x04", // 𣌵
+ 0x23336: "\x03\x04\x05\x04\x02\x05\x01\x02\x02\x01", // 𣌶
+ 0x23337: "\x02\x05\x01\x01\x04\x01\x05\x03\x01\x02\x01", // 𣌷
+ 0x23338: "\x02\x05\x01\x01\x05\x01\x01\x05\x04\x05\x02", // 𣌸
+ 0x23339: "\x02\x05\x01\x02\x02\x01\x01\x03\x02\x04\x01", // 𣌹
+ 0x2333a: "\x02\x05\x01\x02\x02\x01\x02\x05\x01\x05\x02", // 𣌺
+ 0x2333b: "\x02\x05\x01\x01\x03\x04\x03\x01\x02\x03\x04\x02", // 𣌻
+ 0x2333c: "\x01\x02\x05\x01\x02\x01\x03\x04\x02\x05\x01\x01", // 𣌼
+ 0x2333d: "\x01\x02\x05\x01\x02\x01\x01\x02\x02\x04\x03\x01", // 𣌽
+ 0x2333e: "\x02\x05\x01\x01\x02\x01\x02\x05\x01\x01\x02\x03\x04", // 𣌾
+ 0x2333f: "\x02\x05\x01\x01\x03\x05\x04\x02\x04\x02\x05\x01\x01", // 𣌿
+ 0x23340: "\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x04", // 𣍀
+ 0x23341: "\x05\x01\x03\x03\x01\x01\x05\x02\x05\x01\x02\x02\x01", // 𣍁
+ 0x23342: "\x03\x04\x03\x04\x02\x05\x01\x02\x05\x01\x02\x02\x01", // 𣍂
+ 0x23343: "\x01\x02\x05\x04\x03\x01\x02\x03\x04\x02\x05\x01\x01\x02", // 𣍃
+ 0x23344: "\x04\x03\x05\x01\x02\x02\x05\x01\x01\x01\x05\x03\x04", // 𣍄
+ 0x23345: "\x01\x01\x02\x01\x03\x05\x03\x04\x02\x05\x01\x02\x02\x01", // 𣍅
+ 0x23346: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04\x02\x05\x01\x01", // 𣍆
+ 0x23347: "\x01\x02\x05\x01\x01\x03\x04\x01\x02\x02\x01\x01\x01\x05\x04", // 𣍇
+ 0x23348: "\x01\x01\x01\x02\x01\x01\x01\x02\x02\x05\x01\x01\x04\x03\x01", // 𣍈
+ 0x23349: "\x02\x05\x01\x01\x04\x01\x02\x05\x01\x05\x02\x01\x05\x02", // 𣍉
+ 0x2334a: "\x02\x05\x01\x01\x03\x05\x03\x04\x05\x05\x01\x03\x04\x04\x04", // 𣍊
+ 0x2334b: "\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01\x01\x02\x04", // 𣍋
+ 0x2334c: "\x01\x03\x05\x04\x01\x03\x05\x04\x01\x03\x05\x04\x02\x05\x01\x01", // 𣍌
+ 0x2334d: "\x04\x05\x03\x05\x02\x05\x01\x03\x05\x04\x02\x05\x01\x02\x02\x01", // 𣍍
+ 0x2334e: "\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01\x01\x01\x03\x05", // 𣍎
+ 0x2334f: "\x01\x02\x05\x01\x01\x03\x04\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01", // 𣍏
+ 0x23350: "\x03\x05\x03\x03\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𣍐
+ 0x23351: "\x02\x05\x01\x01\x05\x05\x04\x03\x02\x05\x01\x01\x02\x05\x02\x01\x05\x04", // 𣍑
+ 0x23352: "\x02\x05\x03\x04\x02\x05\x01\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x01", // 𣍒
+ 0x23353: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𣍓
+ 0x23354: "\x03\x02\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01", // 𣍔
+ 0x23355: "\x02\x05\x01\x02\x02\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 𣍕
+ 0x23356: "\x01\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x02\x03\x04", // 𣍖
+ 0x23357: "\x03\x04\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04\x02\x05\x01\x02\x02\x01", // 𣍗
+ 0x23358: "\x01\x02\x05\x01\x01\x02\x03\x04\x01\x02\x05\x01\x01\x02\x03\x04\x02\x05\x01\x01", // 𣍘
+ 0x23359: "\x01\x02\x05\x01\x01\x03\x04\x04\x01\x03\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 𣍙
+ 0x2335a: "\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x05\x05\x04\x04\x04\x04\x01\x02\x01\x03\x04\x03\x05\x04", // 𣍚
+ 0x2335b: "\x01\x02\x05\x01\x01\x03\x04\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04\x01\x02\x05\x01\x01\x01\x02", // 𣍛
+ 0x2335c: "\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04", // 𣍜
+ 0x2335d: "\x03\x02\x05\x01\x01", // 𣍝
+ 0x2335e: "\x03\x05\x01\x01\x03\x04", // 𣍞
+ 0x2335f: "\x04\x05\x01\x03\x05\x01\x01", // 𣍟
+ 0x23360: "\x03\x05\x01\x01\x01\x03\x05", // 𣍠
+ 0x23361: "\x01\x03\x05\x03\x05\x01\x01", // 𣍡
+ 0x23362: "\x03\x04\x05\x03\x05\x01\x01", // 𣍢
+ 0x23363: "\x01\x03\x05\x03\x05\x01\x01", // 𣍣
+ 0x23364: "\x02\x05\x03\x04\x03\x05\x01\x01", // 𣍤
+ 0x23365: "\x03\x05\x01\x01\x04\x04\x05\x03\x05", // 𣍥
+ 0x23366: "\x03\x05\x01\x01\x02\x05\x01\x03\x05", // 𣍦
+ 0x23367: "\x05\x02\x02\x05\x02\x03\x05\x01\x01", // 𣍧
+ 0x23368: "\x03\x05\x01\x01\x03\x05\x02\x03\x04", // 𣍨
+ 0x23369: "\x03\x05\x01\x01\x03\x01\x02\x03\x04", // 𣍩
+ 0x2336a: "\x03\x05\x01\x01\x01\x02\x05\x03\x04", // 𣍪
+ 0x2336b: "\x03\x05\x01\x01\x01\x05\x05\x03\x04", // 𣍫
+ 0x2336c: "\x03\x05\x01\x01\x03\x05\x02\x05\x01", // 𣍬
+ 0x2336d: "\x03\x05\x01\x01\x01\x02\x05\x03\x03\x01", // 𣍭
+ 0x2336e: "\x03\x05\x01\x01\x04\x03\x01\x05\x02\x02", // 𣍮
+ 0x2336f: "\x03\x05\x01\x01\x04\x05\x01\x05\x01\x02", // 𣍯
+ 0x23370: "\x03\x05\x01\x01\x01\x04\x03\x01\x03\x04", // 𣍰
+ 0x23371: "\x03\x05\x01\x01\x04\x04\x05\x01\x03\x05\x04", // 𣍱
+ 0x23372: "\x03\x05\x01\x01\x01\x02\x05\x01\x05\x03\x01", // 𣍲
+ 0x23373: "\x01\x03\x03\x05\x01\x01\x01\x02\x05\x01\x02", // 𣍳
+ 0x23374: "\x03\x05\x01\x01\x01\x03\x05\x04\x05\x01\x05", // 𣍴
+ 0x23375: "\x03\x05\x01\x01\x04\x01\x03\x04\x02\x05\x01", // 𣍵
+ 0x23376: "\x03\x05\x01\x01\x03\x04\x05\x02\x03\x05\x04", // 𣍶
+ 0x23377: "\x03\x05\x01\x01\x01\x02\x05\x02\x03\x04\x03\x04", // 𣍷
+ 0x23378: "\x02\x05\x04\x03\x01\x02\x03\x04\x03\x05\x01\x01", // 𣍸
+ 0x23379: "\x03\x05\x01\x01\x04\x03\x03\x04\x01\x03\x02", // 𣍹
+ 0x2337a: "\x03\x05\x01\x01\x02\x03\x04\x03\x01\x01\x02\x01", // 𣍺
+ 0x2337b: "\x03\x05\x01\x01\x01\x02\x05\x01\x01\x05\x03\x04", // 𣍻
+ 0x2337c: "\x03\x05\x01\x02\x01\x02\x05\x01\x03\x05\x01\x01", // 𣍼
+ 0x2337d: "\x03\x05\x01\x01\x02\x01\x02\x05\x03\x05\x04\x01", // 𣍽
+ 0x2337e: "\x03\x05\x01\x01\x01\x02\x05\x02\x04\x04\x04\x04", // 𣍾
+ 0x2337f: "\x03\x05\x01\x01\x01\x03\x04\x03\x04\x02\x03\x04", // 𣍿
+ 0x23380: "\x03\x05\x01\x01\x04\x01\x03\x02\x01\x02\x05\x01", // 𣎀
+ 0x23381: "\x02\x05\x04\x03\x01\x02\x05\x01\x03\x05\x01\x01", // 𣎁
+ 0x23382: "\x03\x05\x01\x01\x05\x05\x05\x02\x05\x01\x01\x02", // 𣎂
+ 0x23383: "\x03\x05\x01\x01\x02\x04\x03\x02\x05\x02\x05\x01", // 𣎃
+ 0x23384: "\x03\x05\x01\x01\x04\x04\x02\x01\x02\x05\x04\x04\x01", // 𣎄
+ 0x23385: "\x03\x05\x01\x01\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 𣎅
+ 0x23386: "\x04\x01\x05\x02\x05\x01\x03\x05\x01\x01\x03\x05\x04", // 𣎆
+ 0x23387: "\x03\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 𣎇
+ 0x23388: "\x03\x05\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x04", // 𣎈
+ 0x23389: "\x01\x03\x02\x05\x01\x01\x01\x03\x05\x05\x03\x04", // 𣎉
+ 0x2338a: "\x03\x05\x01\x01\x05\x02\x01\x03\x02\x05\x01\x01\x01", // 𣎊
+ 0x2338b: "\x03\x02\x05\x01\x01\x01\x02\x03\x04\x03\x05\x01\x01", // 𣎋
+ 0x2338c: "\x03\x05\x01\x01\x04\x03\x01\x02\x03\x04\x01\x03\x02", // 𣎌
+ 0x2338d: "\x01\x02\x02\x05\x01\x01\x01\x02\x03\x01\x03\x05\x01\x01", // 𣎍
+ 0x2338e: "\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04\x03\x04\x03\x04", // 𣎎
+ 0x2338f: "\x02\x05\x01\x02\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01", // 𣎏
+ 0x23390: "\x03\x05\x01\x01\x02\x05\x02\x01\x03\x04\x03\x04\x03\x04", // 𣎐
+ 0x23391: "\x03\x05\x01\x01\x04\x04\x05\x01\x02\x02\x02\x05\x03\x05", // 𣎑
+ 0x23392: "\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04\x02\x05\x01\x02\x01", // 𣎒
+ 0x23393: "\x03\x05\x01\x01\x04\x01\x05\x03\x03\x01\x05\x02\x01\x03\x04", // 𣎓
+ 0x23394: "\x03\x05\x01\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 𣎔
+ 0x23395: "\x03\x05\x03\x05\x01\x01\x02\x05\x02\x02\x01\x02\x05\x03\x04", // 𣎕
+ 0x23396: "\x03\x05\x01\x01\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04", // 𣎖
+ 0x23397: "\x03\x05\x01\x01\x03\x02\x05\x03\x03\x04\x01\x04\x05\x04\x04", // 𣎗
+ 0x23398: "\x04\x01\x04\x03\x03\x05\x01\x01\x02\x05\x01\x02\x05\x01\x01", // 𣎘
+ 0x23399: "\x03\x05\x01\x01\x01\x02\x01\x02\x04\x04\x05\x04\x01\x05\x03", // 𣎙
+ 0x2339a: "\x03\x05\x01\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𣎚
+ 0x2339b: "\x03\x05\x01\x01\x05\x04\x05\x02\x03\x02\x05\x03\x05\x02\x05\x01", // 𣎛
+ 0x2339c: "\x03\x05\x01\x01\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𣎜
+ 0x2339d: "\x03\x05\x01\x01\x04\x03\x01\x02\x03\x04\x05\x05\x04\x02\x03\x04", // 𣎝
+ 0x2339e: "\x05\x02\x01\x05\x03\x05\x01\x01\x01\x02\x01\x03\x04\x03\x05\x04", // 𣎞
+ 0x2339f: "\x03\x05\x01\x01\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04", // 𣎟
+ 0x233a0: "\x01\x02\x02\x05\x01\x01\x01\x02\x03\x05\x01\x01\x03\x05\x01\x01", // 𣎠
+ 0x233a1: "\x03\x05\x01\x01\x03\x05\x01\x01\x04\x04\x05\x01\x02\x01\x03\x04", // 𣎡
+ 0x233a2: "\x03\x05\x01\x01\x01\x02\x02\x05\x01\x01\x01\x02\x03\x05\x01\x01", // 𣎢
+ 0x233a3: "\x03\x05\x01\x01\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x03\x04", // 𣎣
+ 0x233a4: "\x03\x05\x01\x01\x04\x05\x05\x04\x01\x02\x02\x01\x02\x05\x01\x01\x02", // 𣎤
+ 0x233a5: "\x01\x03\x03\x05\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 𣎥
+ 0x233a6: "\x03\x05\x01\x01\x02\x05\x01\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 𣎦
+ 0x233a7: "\x03\x05\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01\x04\x03\x03\x04", // 𣎧
+ 0x233a8: "\x03\x05\x01\x01\x01\x02\x02\x03\x05\x03\x03\x04\x04\x05\x04\x04", // 𣎨
+ 0x233a9: "\x01\x03\x02\x05\x01\x01\x03\x05\x04\x01\x01\x03\x04\x04\x03\x05\x01\x01", // 𣎩
+ 0x233aa: "\x03\x05\x01\x01\x04\x01\x02\x05\x01\x04\x05\x02\x05\x01\x02\x05\x01\x01", // 𣎪
+ 0x233ab: "\x03\x05\x01\x01\x02\x05\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04", // 𣎫
+ 0x233ac: "\x01\x03\x03\x05\x01\x01\x04\x04\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 𣎬
+ 0x233ad: "\x03\x05\x01\x01\x03\x04\x03\x04\x03\x05\x01\x01\x02\x05\x01\x02\x02\x01", // 𣎭
+ 0x233ae: "\x03\x05\x01\x01\x04\x03\x01\x01\x02\x01\x03\x01\x02\x03\x04\x01\x05\x05\x03\x04", // 𣎮
+ 0x233af: "\x03\x05\x01\x01\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01", // 𣎯
+ 0x233b0: "\x03\x05\x01\x01\x01\x02\x02\x03\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𣎰
+ 0x233b1: "\x03\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01\x04\x01\x03\x05\x01\x03\x03\x01\x01\x03\x04", // 𣎱
+ 0x233b2: "\x03\x05\x01\x01\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𣎲
+ 0x233b3: "\x01\x02\x03\x05", // 𣎳
+ 0x233b4: "\x01\x02\x03\x04", // 𣎴
+ 0x233b5: "\x05\x02\x02\x03\x04", // 𣎵
+ 0x233b6: "\x01\x02\x03\x04\x01", // 𣎶
+ 0x233b7: "\x01\x02\x03\x04\x05", // 𣎷
+ 0x233b8: "\x01\x02\x03\x04\x05\x02", // 𣎸
+ 0x233b9: "\x01\x02\x03\x04\x05\x05", // 𣎹
+ 0x233ba: "\x01\x05\x05\x02\x03\x04", // 𣎺
+ 0x233bb: "\x02\x05\x01\x02\x03\x04", // 𣎻
+ 0x233bc: "\x05\x04\x01\x02\x03\x04", // 𣎼
+ 0x233bd: "\x01\x05\x01\x02\x03\x04", // 𣎽
+ 0x233be: "\x04\x05\x01\x02\x03\x04", // 𣎾
+ 0x233bf: "\x05\x05\x01\x02\x03\x04", // 𣎿
+ 0x233c0: "\x01\x02\x03\x04\x02\x02", // 𣏀
+ 0x233c1: "\x01\x05\x02\x01\x02\x03\x04", // 𣏁
+ 0x233c2: "\x03\x04\x01\x02\x03\x04\x04", // 𣏂
+ 0x233c3: "\x01\x05\x01\x01\x02\x03\x04", // 𣏃
+ 0x233c4: "\x01\x02\x01\x01\x02\x03\x04", // 𣏄
+ 0x233c5: "\x01\x02\x01\x01\x02\x03\x04", // 𣏅
+ 0x233c6: "\x01\x02\x03\x04\x03\x03\x05", // 𣏆
+ 0x233c7: "\x01\x02\x03\x04\x01\x05\x04", // 𣏇
+ 0x233c8: "\x01\x02\x03\x04\x03\x05\x04", // 𣏈
+ 0x233c9: "\x05\x03\x04\x01\x02\x03\x04", // 𣏉
+ 0x233ca: "\x01\x02\x03\x04\x03\x05\x01", // 𣏊
+ 0x233cb: "\x01\x05\x04\x01\x02\x03\x04", // 𣏋
+ 0x233cc: "\x01\x02\x03\x04\x05\x01\x05", // 𣏌
+ 0x233cd: "\x05\x02\x01\x01\x02\x03\x04", // 𣏍
+ 0x233ce: "\x01\x02\x03\x04\x04\x03\x02", // 𣏎
+ 0x233cf: "\x01\x05\x04\x01\x02\x03\x04", // 𣏏
+ 0x233d0: "\x01\x02\x03\x04\x03\x05\x04", // 𣏐
+ 0x233d1: "\x01\x02\x03\x04\x02\x05\x02", // 𣏑
+ 0x233d2: "\x01\x02\x03\x04\x03\x05\x04", // 𣏒
+ 0x233d3: "\x01\x02\x03\x04\x01\x01\x05", // 𣏓
+ 0x233d4: "\x02\x01\x02\x01\x01\x02\x03\x04", // 𣏔
+ 0x233d5: "\x01\x02\x03\x04\x01\x02\x03\x05", // 𣏕
+ 0x233d6: "\x01\x02\x03\x04\x05\x01\x05\x02", // 𣏖
+ 0x233d7: "\x05\x04\x05\x02\x01\x02\x03\x04", // 𣏗
+ 0x233d8: "\x01\x02\x03\x04\x03\x02\x05\x04", // 𣏘
+ 0x233d9: "\x01\x02\x03\x04\x03\x01\x01\x05", // 𣏙
+ 0x233da: "\x01\x02\x03\x04\x03\x05\x01\x05", // 𣏚
+ 0x233db: "\x01\x02\x03\x04\x01\x05\x02\x04", // 𣏛
+ 0x233dc: "\x01\x02\x03\x04\x01\x02\x05\x05", // 𣏜
+ 0x233dd: "\x01\x02\x03\x04\x04\x05\x03\x05", // 𣏝
+ 0x233de: "\x01\x02\x03\x04\x01\x03\x05\x04", // 𣏞
+ 0x233df: "\x01\x02\x03\x05\x01\x02\x03\x05", // 𣏟
+ 0x233e0: "\x01\x02\x03\x04\x03\x04\x03\x04", // 𣏠
+ 0x233e1: "\x01\x02\x03\x04\x02\x01\x03\x04", // 𣏡
+ 0x233e2: "\x01\x02\x03\x04\x01\x01\x05\x04", // 𣏢
+ 0x233e3: "\x01\x02\x03\x04\x04\x01\x02\x04", // 𣏣
+ 0x233e4: "\x01\x02\x03\x04\x03\x04\x03\x04", // 𣏤
+ 0x233e5: "\x01\x02\x03\x04\x04\x01\x03\x04", // 𣏥
+ 0x233e6: "\x04\x03\x03\x04\x01\x02\x03\x04", // 𣏦
+ 0x233e7: "\x01\x02\x03\x04\x05\x01\x03\x04", // 𣏧
+ 0x233e8: "\x01\x02\x03\x04\x01\x01\x03\x02", // 𣏨
+ 0x233e9: "\x01\x05\x03\x04\x01\x02\x03\x04", // 𣏩
+ 0x233ea: "\x01\x02\x03\x04\x05\x04\x05\x04", // 𣏪
+ 0x233eb: "\x01\x02\x03\x04\x03\x05\x05\x03", // 𣏫
+ 0x233ec: "\x01\x02\x03\x04\x02\x05\x01\x01", // 𣏬
+ 0x233ed: "\x01\x02\x03\x04\x05\x05\x02\x01", // 𣏭
+ 0x233ee: "\x03\x01\x02\x05\x01\x02\x03\x04", // 𣏮
+ 0x233ef: "\x01\x02\x03\x04\x03\x05\x03\x04", // 𣏯
+ 0x233f0: "\x03\x05\x05\x03\x01\x02\x03\x04", // 𣏰
+ 0x233f1: "\x01\x02\x03\x04\x03\x01\x01\x05", // 𣏱
+ 0x233f2: "\x01\x05\x01\x01\x02\x01\x02\x03\x04", // 𣏲
+ 0x233f3: "\x01\x02\x03\x04\x01\x05\x05\x04", // 𣏳
+ 0x233f4: "\x01\x02\x03\x04\x03\x02\x01\x01", // 𣏴
+ 0x233f5: "\x01\x02\x03\x04\x03\x05\x01\x01", // 𣏵
+ 0x233f6: "\x01\x02\x03\x04\x02\x05\x03\x04", // 𣏶
+ 0x233f7: "\x02\x05\x05\x04\x01\x02\x03\x04", // 𣏷
+ 0x233f8: "\x01\x02\x03\x04\x03\x03\x01\x02", // 𣏸
+ 0x233f9: "\x01\x02\x03\x04\x04\x03\x03\x04", // 𣏹
+ 0x233fa: "\x01\x02\x03\x04\x05\x02\x01\x05", // 𣏺
+ 0x233fb: "\x05\x03\x03\x04\x01\x02\x03\x04", // 𣏻
+ 0x233fc: "\x01\x02\x02\x01\x01\x02\x03\x04", // 𣏼
+ 0x233fd: "\x01\x02\x03\x04\x02\x01\x05\x04", // 𣏽
+ 0x233fe: "\x01\x02\x03\x04\x01\x05\x03\x04", // 𣏾
+ 0x233ff: "\x01\x02\x03\x04\x01\x01\x03\x04", // 𣏿
+ 0x23400: "\x01\x02\x03\x04\x04\x01\x03\x04", // 𣐀
+ 0x23401: "\x01\x02\x04\x05\x01\x02\x03\x04", // 𣐁
+ 0x23402: "\x01\x01\x05\x04\x01\x02\x03\x04", // 𣐂
+ 0x23403: "\x01\x03\x05\x05\x01\x02\x03\x04", // 𣐃
+ 0x23404: "\x01\x02\x03\x04\x02\x05\x01\x02", // 𣐄
+ 0x23405: "\x01\x02\x03\x04\x03\x01\x02\x01", // 𣐅
+ 0x23406: "\x01\x02\x03\x04\x01\x05\x05\x03", // 𣐆
+ 0x23407: "\x03\x01\x02\x01\x01\x02\x03\x04", // 𣐇
+ 0x23408: "\x01\x02\x03\x04\x01\x02\x05\x02\x03", // 𣐈
+ 0x23409: "\x05\x01\x03\x01\x05\x01\x02\x03\x04", // 𣐉
+ 0x2340a: "\x01\x02\x03\x04\x05\x01\x03\x03\x05", // 𣐊
+ 0x2340b: "\x01\x02\x03\x04\x01\x05\x05\x03\x04", // 𣐋
+ 0x2340c: "\x01\x02\x03\x04\x05\x02\x01\x03\x04", // 𣐌
+ 0x2340d: "\x01\x02\x03\x04\x03\x04\x01\x02\x01", // 𣐍
+ 0x2340e: "\x01\x02\x03\x04\x01\x05\x05\x04", // 𣐎
+ 0x2340f: "\x01\x02\x03\x04\x02\x05\x05\x04\x01", // 𣐏
+ 0x23410: "\x01\x02\x03\x04\x03\x04\x02\x03\x04", // 𣐐
+ 0x23411: "\x01\x02\x03\x04\x02\x01\x02\x01\x01\x05", // 𣐑
+ 0x23412: "\x01\x02\x03\x04\x02\x05\x02\x05\x01", // 𣐒
+ 0x23413: "\x01\x02\x03\x04\x05\x01\x03\x01\x01", // 𣐓
+ 0x23414: "\x01\x02\x03\x04\x05\x01\x01\x05\x04", // 𣐔
+ 0x23415: "\x01\x02\x03\x04\x05\x04\x01\x02\x01", // 𣐕
+ 0x23416: "\x01\x02\x03\x04\x04\x05\x01\x03\x05", // 𣐖
+ 0x23417: "\x03\x02\x03\x05\x03\x01\x02\x03\x04", // 𣐗
+ 0x23418: "\x01\x02\x03\x04\x04\x04\x01\x01\x02", // 𣐘
+ 0x23419: "\x01\x02\x03\x04\x04\x01\x05\x05\x04", // 𣐙
+ 0x2341a: "\x01\x02\x03\x04\x02\x04\x05\x03\x04", // 𣐚
+ 0x2341b: "\x01\x02\x03\x04\x01\x05\x05\x04\x01", // 𣐛
+ 0x2341c: "\x01\x02\x03\x04\x05\x01\x05\x05\x04", // 𣐜
+ 0x2341d: "\x01\x02\x03\x04\x01\x02\x05\x02\x05", // 𣐝
+ 0x2341e: "\x01\x02\x03\x04\x01\x03\x02\x05\x01", // 𣐞
+ 0x2341f: "\x01\x02\x01\x05\x03\x01\x02\x03\x04", // 𣐟
+ 0x23420: "\x01\x02\x03\x04\x03\x05\x04\x01\x04", // 𣐠
+ 0x23421: "\x01\x02\x03\x04\x05\x01\x05\x01\x05", // 𣐡
+ 0x23422: "\x01\x02\x03\x04\x05\x04\x05\x01\x05", // 𣐢
+ 0x23423: "\x01\x02\x03\x04\x01\x02\x03\x04\x03", // 𣐣
+ 0x23424: "\x01\x02\x03\x04\x02\x02\x05\x01\x01", // 𣐤
+ 0x23425: "\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 𣐥
+ 0x23426: "\x03\x05\x04\x05\x04\x01\x02\x03\x04", // 𣐦
+ 0x23427: "\x01\x02\x03\x04\x03\x03\x05\x03\x04", // 𣐧
+ 0x23428: "\x01\x02\x03\x04\x05\x03\x01\x05\x03", // 𣐨
+ 0x23429: "\x03\x02\x05\x01\x01\x01\x02\x03\x04", // 𣐩
+ 0x2342a: "\x01\x02\x03\x04\x03\x01\x03\x05\x04", // 𣐪
+ 0x2342b: "\x01\x02\x05\x03\x04\x01\x02\x03\x04", // 𣐫
+ 0x2342c: "\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 𣐬
+ 0x2342d: "\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 𣐭
+ 0x2342e: "\x02\x05\x03\x04\x01\x01\x02\x03\x04", // 𣐮
+ 0x2342f: "\x05\x02\x02\x05\x02\x01\x02\x03\x04", // 𣐯
+ 0x23430: "\x01\x02\x03\x04\x03\x04\x03\x01\x05", // 𣐰
+ 0x23431: "\x05\x04\x05\x03\x04\x01\x02\x03\x04", // 𣐱
+ 0x23432: "\x01\x02\x03\x04\x02\x05\x01\x05\x02", // 𣐲
+ 0x23433: "\x01\x02\x03\x04\x02\x05\x01\x03\x04", // 𣐳
+ 0x23434: "\x01\x02\x03\x04\x03\x02\x01\x02\x01", // 𣐴
+ 0x23435: "\x01\x02\x03\x04\x01\x05\x01\x02\x02\x05", // 𣐵
+ 0x23436: "\x01\x02\x03\x04\x02\x05\x03\x04\x02\x05", // 𣐶
+ 0x23437: "\x02\x05\x03\x04\x04\x05\x01\x02\x03\x04", // 𣐷
+ 0x23438: "\x01\x02\x03\x04\x01\x02\x05\x03\x04\x01", // 𣐸
+ 0x23439: "\x01\x02\x03\x04\x02\x01\x01\x02\x03\x04", // 𣐹
+ 0x2343a: "\x01\x05\x01\x03\x05\x01\x03\x02\x03\x04", // 𣐺
+ 0x2343b: "\x05\x01\x01\x05\x03\x04\x01\x02\x03\x04", // 𣐻
+ 0x2343c: "\x01\x02\x03\x04\x04\x01\x03\x01\x01\x02", // 𣐼
+ 0x2343d: "\x04\x01\x04\x03\x01\x01\x01\x02\x03\x04", // 𣐽
+ 0x2343e: "\x01\x02\x03\x04\x03\x02\x01\x02\x03\x04", // 𣐾
+ 0x2343f: "\x01\x02\x03\x04\x04\x01\x03\x05\x03\x04", // 𣐿
+ 0x23440: "\x01\x02\x03\x04\x02\x05\x01\x05\x01\x03\x04", // 𣑀
+ 0x23441: "\x01\x02\x03\x04\x01\x05\x04\x03\x05", // 𣑁
+ 0x23442: "\x01\x02\x03\x04\x03\x04\x04\x03\x01\x05", // 𣑂
+ 0x23443: "\x04\x04\x01\x03\x05\x04\x01\x02\x03\x04", // 𣑃
+ 0x23444: "\x04\x04\x05\x01\x03\x05\x01\x02\x03\x04", // 𣑄
+ 0x23445: "\x02\x01\x01\x05\x01\x02\x03\x04\x02\x05\x01", // 𣑅
+ 0x23446: "\x01\x02\x03\x04\x03\x04\x01\x03\x05\x04", // 𣑆
+ 0x23447: "\x01\x02\x03\x04\x05\x05\x04\x02\x03\x04", // 𣑇
+ 0x23448: "\x01\x02\x03\x04\x03\x05\x04\x01\x05\x03", // 𣑈
+ 0x23449: "\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01", // 𣑉
+ 0x2344a: "\x01\x02\x03\x04\x01\x03\x02\x01\x02\x01", // 𣑊
+ 0x2344b: "\x01\x02\x03\x04\x04\x04\x05\x01\x02\x04", // 𣑋
+ 0x2344c: "\x01\x02\x03\x04\x05\x05\x03\x02\x05\x01", // 𣑌
+ 0x2344d: "\x02\x05\x05\x04\x05\x01\x02\x03\x04", // 𣑍
+ 0x2344e: "\x01\x04\x03\x01\x02\x03\x04\x01\x02\x04", // 𣑎
+ 0x2344f: "\x01\x02\x03\x04\x04\x01\x02\x05\x03\x04", // 𣑏
+ 0x23450: "\x01\x02\x03\x04\x02\x05\x01\x02\x05\x02", // 𣑐
+ 0x23451: "\x01\x02\x03\x04\x04\x04\x05\x05\x02\x01", // 𣑑
+ 0x23452: "\x01\x02\x03\x04\x04\x04\x05\x03\x05\x05", // 𣑒
+ 0x23453: "\x01\x02\x03\x04\x01\x02\x01\x01\x02\x04", // 𣑓
+ 0x23454: "\x01\x02\x03\x04\x05\x04\x01\x02\x03\x04", // 𣑔
+ 0x23455: "\x01\x02\x03\x04\x05\x02\x05\x03\x04\x01", // 𣑕
+ 0x23456: "\x01\x02\x03\x04\x01\x03\x04\x01\x02\x01", // 𣑖
+ 0x23457: "\x01\x02\x03\x04\x05\x03\x04\x01\x02\x04", // 𣑗
+ 0x23458: "\x01\x03\x05\x04\x01\x05\x01\x02\x03\x04", // 𣑘
+ 0x23459: "\x01\x02\x03\x04\x01\x01\x02\x05\x02\x05", // 𣑙
+ 0x2345a: "\x01\x02\x03\x04\x05\x04\x05\x04\x05\x04", // 𣑚
+ 0x2345b: "\x01\x02\x03\x04\x01\x02\x05\x01\x01\x02", // 𣑛
+ 0x2345c: "\x01\x01\x02\x03\x04\x02\x05\x02\x01\x01", // 𣑜
+ 0x2345d: "\x01\x02\x03\x04\x02\x05\x01\x02\x03\x01", // 𣑝
+ 0x2345e: "\x02\x03\x02\x05\x01\x01\x01\x02\x03\x04", // 𣑞
+ 0x2345f: "\x01\x02\x03\x04\x02\x05\x03\x01\x03\x01", // 𣑟
+ 0x23460: "\x03\x04\x01\x02\x05\x01\x01\x02\x03\x04", // 𣑠
+ 0x23461: "\x03\x02\x01\x05\x03\x04\x01\x02\x03\x04", // 𣑡
+ 0x23462: "\x01\x02\x03\x04\x03\x05\x02\x05\x01\x01", // 𣑢
+ 0x23463: "\x01\x02\x03\x04\x03\x05\x04\x01\x02\x04", // 𣑣
+ 0x23464: "\x01\x02\x03\x04\x03\x05\x03\x04\x05\x02", // 𣑤
+ 0x23465: "\x01\x02\x03\x04\x01\x02\x01\x03\x01\x02", // 𣑥
+ 0x23466: "\x01\x02\x01\x03\x05\x04\x01\x02\x03\x04", // 𣑦
+ 0x23467: "\x01\x02\x01\x05\x03\x04\x01\x02\x03\x04", // 𣑧
+ 0x23468: "\x01\x03\x05\x03\x05\x01\x01\x02\x03\x04", // 𣑨
+ 0x23469: "\x01\x02\x03\x04\x02\x05\x02\x05\x01\x01", // 𣑩
+ 0x2346a: "\x01\x02\x03\x04\x04\x05\x03\x05\x02\x01", // 𣑪
+ 0x2346b: "\x01\x02\x03\x04\x03\x05\x01\x02\x03\x04", // 𣑫
+ 0x2346c: "\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02", // 𣑬
+ 0x2346d: "\x01\x02\x03\x04\x02\x05\x02\x02\x01\x01", // 𣑭
+ 0x2346e: "\x01\x02\x03\x04\x03\x03\x05\x04\x01\x04", // 𣑮
+ 0x2346f: "\x01\x02\x03\x04\x03\x04\x01\x05\x03\x04", // 𣑯
+ 0x23470: "\x01\x02\x03\x04\x03\x04\x02\x04\x04\x04", // 𣑰
+ 0x23471: "\x04\x04\x01\x03\x05\x04\x01\x02\x03\x04", // 𣑱
+ 0x23472: "\x01\x02\x03\x04\x03\x05\x01\x02\x05\x02", // 𣑲
+ 0x23473: "\x01\x02\x03\x04\x01\x01\x01\x02\x03\x04", // 𣑳
+ 0x23474: "\x01\x02\x03\x04\x04\x04\x01\x01\x02\x01", // 𣑴
+ 0x23475: "\x01\x02\x03\x04\x05\x01\x01\x01\x01\x02", // 𣑵
+ 0x23476: "\x01\x02\x03\x04\x04\x05\x02\x04\x05", // 𣑶
+ 0x23477: "\x01\x02\x03\x04\x02\x03\x04\x01\x03\x04", // 𣑷
+ 0x23478: "\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 𣑸
+ 0x23479: "\x01\x02\x03\x04\x02\x05\x02\x02\x05\x02", // 𣑹
+ 0x2347a: "\x01\x02\x03\x04\x02\x05\x01\x02\x01\x04", // 𣑺
+ 0x2347b: "\x01\x02\x03\x04\x03\x01\x01\x02\x01\x02", // 𣑻
+ 0x2347c: "\x05\x02\x02\x03\x04\x05\x02\x02\x03\x04", // 𣑼
+ 0x2347d: "\x01\x02\x03\x04\x01\x02\x03\x04\x03\x05", // 𣑽
+ 0x2347e: "\x02\x01\x01\x01\x02\x03\x04\x02\x05\x01", // 𣑾
+ 0x2347f: "\x01\x02\x03\x04\x03\x04\x04\x03\x05\x01\x05", // 𣑿
+ 0x23480: "\x01\x02\x03\x04\x03\x01\x05\x02\x01\x03\x04", // 𣒀
+ 0x23481: "\x01\x02\x03\x04\x04\x03\x03\x04\x01\x03\x02", // 𣒁
+ 0x23482: "\x01\x02\x03\x04\x04\x01\x04\x03\x01\x05\x02", // 𣒂
+ 0x23483: "\x01\x02\x03\x04\x03\x03\x02\x03\x05\x05\x04", // 𣒃
+ 0x23484: "\x01\x02\x03\x04\x02\x01\x02\x01\x01\x05\x01\x01", // 𣒄
+ 0x23485: "\x01\x02\x03\x04\x03\x04\x01\x03\x02\x05\x01", // 𣒅
+ 0x23486: "\x01\x02\x03\x04\x01\x02\x01\x04\x05\x03\x05", // 𣒆
+ 0x23487: "\x01\x02\x03\x04\x03\x01\x02\x03\x04\x03\x05", // 𣒇
+ 0x23488: "\x01\x02\x03\x04\x05\x02\x02\x01\x01\x02\x01", // 𣒈
+ 0x23489: "\x01\x02\x03\x04\x02\x01\x02\x01\x05\x03\x05\x04", // 𣒉
+ 0x2348a: "\x01\x03\x02\x05\x01\x05\x04\x01\x02\x03\x04", // 𣒊
+ 0x2348b: "\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x01", // 𣒋
+ 0x2348c: "\x01\x02\x03\x04\x02\x05\x01\x02\x05\x03\x04", // 𣒌
+ 0x2348d: "\x01\x02\x03\x04\x03\x02\x01\x02\x05\x01\x02", // 𣒍
+ 0x2348e: "\x01\x02\x03\x04\x01\x03\x05\x04\x02\x05\x02", // 𣒎
+ 0x2348f: "\x01\x02\x03\x04\x04\x01\x03\x04\x04\x02\x04", // 𣒏
+ 0x23490: "\x04\x04\x05\x01\x02\x03\x04\x01\x02\x03\x04", // 𣒐
+ 0x23491: "\x01\x02\x03\x04\x04\x04\x01\x01\x02\x03\x04", // 𣒑
+ 0x23492: "\x01\x02\x03\x04\x04\x01\x03\x04\x05\x02", // 𣒒
+ 0x23493: "\x04\x03\x03\x04\x05\x01\x05\x01\x02\x03\x04", // 𣒓
+ 0x23494: "\x01\x02\x03\x04\x04\x04\x05\x03\x05\x03\x05", // 𣒔
+ 0x23495: "\x04\x04\x01\x04\x01\x03\x04\x01\x02\x03\x04", // 𣒕
+ 0x23496: "\x01\x02\x03\x04\x01\x02\x02\x05\x01\x03\x05", // 𣒖
+ 0x23497: "\x01\x02\x03\x04\x01\x02\x01\x05\x04\x05\x02", // 𣒗
+ 0x23498: "\x01\x02\x03\x04\x01\x02\x01\x05\x05\x01\x05", // 𣒘
+ 0x23499: "\x01\x02\x03\x04\x01\x02\x03\x04\x02\x05\x01", // 𣒙
+ 0x2349a: "\x01\x02\x05\x01\x01\x02\x05\x01\x02\x03\x04", // 𣒚
+ 0x2349b: "\x01\x02\x05\x01\x02\x03\x04\x01\x02\x03\x04", // 𣒛
+ 0x2349c: "\x01\x02\x03\x04\x01\x02\x03\x04\x03\x02\x02", // 𣒜
+ 0x2349d: "\x01\x02\x03\x04\x05\x02\x04\x01\x05\x04\x01", // 𣒝
+ 0x2349e: "\x01\x02\x03\x04\x01\x02\x05\x01\x01\x01\x02", // 𣒞
+ 0x2349f: "\x01\x02\x03\x04\x01\x03\x03\x01\x01\x03\x04", // 𣒟
+ 0x234a0: "\x01\x01\x02\x03\x04\x02\x05\x01\x02\x02\x01", // 𣒠
+ 0x234a1: "\x01\x02\x03\x04\x03\x03\x03\x01\x02\x03\x04", // 𣒡
+ 0x234a2: "\x01\x02\x03\x04\x01\x02\x01\x02\x05\x03\x01", // 𣒢
+ 0x234a3: "\x01\x02\x03\x04\x01\x02\x01\x02\x04\x01\x05", // 𣒣
+ 0x234a4: "\x01\x02\x03\x04\x03\x01\x02\x01\x05\x01\x05", // 𣒤
+ 0x234a5: "\x01\x02\x03\x04\x03\x05\x04\x03\x05\x01\x01", // 𣒥
+ 0x234a6: "\x01\x02\x03\x04\x03\x02\x02\x05\x01\x01\x01", // 𣒦
+ 0x234a7: "\x03\x01\x02\x01\x01\x03\x05\x01\x02\x03\x04", // 𣒧
+ 0x234a8: "\x01\x02\x03\x04\x02\x05\x01\x01\x01\x01\x05", // 𣒨
+ 0x234a9: "\x01\x02\x03\x04\x02\x05\x03\x04\x02\x05\x01", // 𣒩
+ 0x234aa: "\x01\x02\x03\x04\x02\x05\x05\x01\x05\x01\x01", // 𣒪
+ 0x234ab: "\x03\x01\x05\x05\x04\x01\x04\x01\x02\x03\x04", // 𣒫
+ 0x234ac: "\x01\x02\x03\x04\x01\x05\x01\x02\x03\x04\x01", // 𣒬
+ 0x234ad: "\x01\x01\x02\x01\x01\x02\x03\x04\x05\x03\x04", // 𣒭
+ 0x234ae: "\x01\x02\x03\x02\x01\x02\x03\x04\x01\x02\x01", // 𣒮
+ 0x234af: "\x01\x02\x03\x04\x01\x02\x05\x05\x01\x05\x01", // 𣒯
+ 0x234b0: "\x01\x02\x03\x04\x03\x01\x02\x05\x02\x01\x01", // 𣒰
+ 0x234b1: "\x01\x02\x03\x04\x02\x05\x01\x03\x05\x03\x04", // 𣒱
+ 0x234b2: "\x01\x02\x03\x04\x04\x04\x05\x03\x01\x01\x02", // 𣒲
+ 0x234b3: "\x01\x02\x01\x01\x02\x03\x04\x01\x01\x02\x01", // 𣒳
+ 0x234b4: "\x01\x02\x03\x04\x03\x01\x02\x03\x04\x05\x03", // 𣒴
+ 0x234b5: "\x01\x02\x03\x04\x05\x01\x05\x03\x01\x03\x04", // 𣒵
+ 0x234b6: "\x01\x02\x03\x04\x01\x02\x03\x04\x05\x02\x01", // 𣒶
+ 0x234b7: "\x04\x01\x03\x03\x05\x01\x03\x01\x02\x03\x04", // 𣒷
+ 0x234b8: "\x01\x02\x03\x04\x01\x03\x05\x01\x01\x02\x01", // 𣒸
+ 0x234b9: "\x01\x02\x03\x04\x02\x03\x04\x03\x05\x03\x01", // 𣒹
+ 0x234ba: "\x01\x02\x03\x04\x05\x01\x03\x01\x02\x03\x04", // 𣒺
+ 0x234bb: "\x01\x02\x03\x04\x03\x01\x01\x05\x01\x02\x01", // 𣒻
+ 0x234bc: "\x03\x02\x02\x03\x01\x03\x04\x01\x02\x03\x04", // 𣒼
+ 0x234bd: "\x01\x02\x03\x04\x01\x03\x02\x01\x02\x01\x03\x05", // 𣒽
+ 0x234be: "\x01\x02\x03\x04\x01\x02\x02\x03\x05\x04", // 𣒾
+ 0x234bf: "\x04\x04\x01\x03\x05\x03\x04\x01\x02\x03\x04", // 𣒿
+ 0x234c0: "\x04\x01\x04\x03\x01\x01\x02\x01\x02\x03\x04", // 𣓀
+ 0x234c1: "\x01\x01\x03\x04\x01\x01\x03\x04\x01\x02\x03\x04", // 𣓁
+ 0x234c2: "\x01\x02\x03\x04\x03\x05\x04\x02\x05\x01\x02\x01", // 𣓂
+ 0x234c3: "\x01\x02\x03\x04\x01\x02\x01\x02\x02\x05\x03\x04", // 𣓃
+ 0x234c4: "\x01\x02\x03\x04\x04\x01\x03\x02\x01\x02\x01\x01\x05", // 𣓄
+ 0x234c5: "\x01\x02\x03\x04\x03\x05\x01\x03\x01\x02\x03\x04", // 𣓅
+ 0x234c6: "\x01\x02\x03\x04\x03\x04\x04\x03\x03\x01\x02\x01", // 𣓆
+ 0x234c7: "\x01\x02\x01\x01\x02\x01\x02\x02\x01\x02\x03\x04", // 𣓇
+ 0x234c8: "\x01\x02\x03\x04\x01\x02\x05\x02\x03\x04\x03\x04", // 𣓈
+ 0x234c9: "\x01\x02\x03\x04\x01\x05\x01\x01\x02\x01\x03\x04", // 𣓉
+ 0x234ca: "\x01\x02\x03\x04\x01\x02\x05\x01\x05\x01\x01\x02", // 𣓊
+ 0x234cb: "\x01\x02\x03\x04\x01\x02\x01\x02\x01\x05\x01\x05", // 𣓋
+ 0x234cc: "\x01\x02\x03\x04\x03\x05\x04\x02\x04\x02\x05\x01", // 𣓌
+ 0x234cd: "\x01\x02\x03\x04\x02\x05\x01\x01\x03\x05\x01\x01", // 𣓍
+ 0x234ce: "\x01\x02\x03\x04\x01\x02\x02\x03\x01\x03\x04", // 𣓎
+ 0x234cf: "\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04", // 𣓏
+ 0x234d0: "\x01\x02\x03\x04\x04\x04\x01\x02\x05\x01\x02\x01", // 𣓐
+ 0x234d1: "\x01\x02\x04\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 𣓑
+ 0x234d2: "\x01\x02\x03\x04\x01\x02\x01\x02\x03\x05\x05\x04", // 𣓒
+ 0x234d3: "\x01\x02\x03\x04\x03\x05\x02\x05\x01\x01\x01\x05", // 𣓓
+ 0x234d4: "\x05\x01\x05\x03\x05\x02\x03\x04\x01\x02\x03\x04", // 𣓔
+ 0x234d5: "\x01\x02\x03\x04\x01\x02\x03\x04\x03\x05\x05\x04", // 𣓕
+ 0x234d6: "\x01\x02\x03\x04\x03\x05\x01\x03\x03\x05\x04\x01", // 𣓖
+ 0x234d7: "\x01\x02\x03\x04\x03\x05\x03\x03\x02\x05\x01\x01", // 𣓗
+ 0x234d8: "\x01\x02\x03\x04\x04\x05\x04\x04\x05\x01\x03\x05", // 𣓘
+ 0x234d9: "\x01\x02\x03\x04\x04\x01\x03\x02\x04\x04\x04\x04", // 𣓙
+ 0x234da: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x01\x05", // 𣓚
+ 0x234db: "\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x01\x05", // 𣓛
+ 0x234dc: "\x01\x02\x03\x04\x05\x02\x01\x02\x01\x01\x02\x03\x04", // 𣓜
+ 0x234dd: "\x01\x02\x05\x01\x02\x02\x04\x05\x01\x02\x03\x04", // 𣓝
+ 0x234de: "\x03\x01\x01\x03\x03\x05\x01\x01\x01\x02\x03\x04", // 𣓞
+ 0x234df: "\x01\x02\x02\x05\x01\x02\x02\x01\x01\x02\x03\x04", // 𣓟
+ 0x234e0: "\x01\x02\x03\x04\x03\x05\x01\x03\x03\x05\x01\x03", // 𣓠
+ 0x234e1: "\x01\x02\x03\x04\x03\x02\x05\x01\x03\x02\x05\x01", // 𣓡
+ 0x234e2: "\x01\x01\x03\x05\x01\x01\x03\x05\x01\x02\x03\x04", // 𣓢
+ 0x234e3: "\x01\x02\x03\x04\x01\x03\x04\x03\x01\x05\x02\x03", // 𣓣
+ 0x234e4: "\x01\x02\x03\x04\x01\x02\x01\x02\x02\x01\x03\x05", // 𣓤
+ 0x234e5: "\x04\x04\x01\x05\x04\x05\x02\x03\x01\x02\x03\x04", // 𣓥
+ 0x234e6: "\x01\x02\x03\x04\x04\x04\x01\x03\x04\x05\x04", // 𣓦
+ 0x234e7: "\x01\x02\x05\x01\x02\x01\x05\x04\x01\x02\x03\x04", // 𣓧
+ 0x234e8: "\x02\x01\x02\x05\x03\x05\x04\x01\x01\x02\x03\x04", // 𣓨
+ 0x234e9: "\x01\x02\x03\x04\x05\x05\x05\x02\x05\x01\x02\x01", // 𣓩
+ 0x234ea: "\x01\x05\x04\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 𣓪
+ 0x234eb: "\x04\x01\x03\x04\x01\x02\x05\x01\x01\x02\x03\x04", // 𣓫
+ 0x234ec: "\x04\x04\x01\x03\x02\x05\x01\x01\x01\x02\x03\x04", // 𣓬
+ 0x234ed: "\x01\x02\x03\x04\x04\x04\x01\x02\x05\x01\x01\x01", // 𣓭
+ 0x234ee: "\x04\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04", // 𣓮
+ 0x234ef: "\x03\x05\x01\x03\x04\x01\x05\x03\x01\x02\x03\x04", // 𣓯
+ 0x234f0: "\x04\x01\x03\x04\x03\x01\x03\x04\x01\x02\x03\x04", // 𣓰
+ 0x234f1: "\x01\x02\x03\x04\x04\x01\x04\x03\x01\x05\x02", // 𣓱
+ 0x234f2: "\x01\x02\x03\x04\x04\x01\x04\x03\x04\x05\x05\x03", // 𣓲
+ 0x234f3: "\x04\x03\x03\x04\x04\x03\x03\x04\x01\x02\x03\x04", // 𣓳
+ 0x234f4: "\x01\x02\x03\x04\x01\x02\x03\x04\x03\x04\x03\x02", // 𣓴
+ 0x234f5: "\x01\x01\x01\x02\x01\x01\x01\x02\x01\x02\x03\x04", // 𣓵
+ 0x234f6: "\x01\x02\x03\x04\x05\x02\x01\x02\x05\x02\x02\x01", // 𣓶
+ 0x234f7: "\x01\x02\x01\x04\x05\x02\x05\x01\x01\x02\x03\x04", // 𣓷
+ 0x234f8: "\x01\x02\x03\x04\x01\x01\x02\x01\x02\x01\x05\x04", // 𣓸
+ 0x234f9: "\x01\x02\x03\x04\x01\x02\x01\x05\x04\x05\x02", // 𣓹
+ 0x234fa: "\x01\x03\x02\x01\x01\x01\x02\x05\x01\x02\x03\x04", // 𣓺
+ 0x234fb: "\x01\x02\x03\x04\x01\x01\x02\x01\x03\x05\x03\x04", // 𣓻
+ 0x234fc: "\x01\x02\x04\x05\x01\x02\x03\x04\x01\x02\x03\x04", // 𣓼
+ 0x234fd: "\x01\x02\x03\x04\x03\x01\x05\x02\x01\x01\x03\x05", // 𣓽
+ 0x234fe: "\x01\x02\x03\x04\x02\x05\x01\x01\x03\x05\x03\x03", // 𣓾
+ 0x234ff: "\x01\x02\x03\x04\x01\x02\x01\x02\x04\x05\x05\x03", // 𣓿
+ 0x23500: "\x01\x02\x03\x04\x01\x02\x01\x02\x04\x05\x04\x04", // 𣔀
+ 0x23501: "\x01\x02\x03\x04\x01\x02\x01\x02\x03\x04\x01\x05", // 𣔁
+ 0x23502: "\x01\x02\x03\x04\x02\x05\x01\x01\x03\x05\x01\x01", // 𣔂
+ 0x23503: "\x01\x02\x03\x04\x02\x01\x05\x01\x01\x05\x03\x01", // 𣔃
+ 0x23504: "\x01\x02\x03\x04\x01\x02\x01\x02\x03\x05\x05\x03", // 𣔄
+ 0x23505: "\x01\x02\x03\x04\x03\x03\x01\x02\x04\x05\x04", // 𣔅
+ 0x23506: "\x01\x02\x03\x04\x03\x02\x01\x02\x01\x05\x02", // 𣔆
+ 0x23507: "\x03\x01\x01\x03\x04\x02\x05\x01\x01\x02\x03\x04", // 𣔇
+ 0x23508: "\x01\x02\x03\x04\x03\x02\x01\x05\x01\x01\x01\x02", // 𣔈
+ 0x23509: "\x01\x02\x03\x04\x03\x01\x01\x01\x02\x01\x01\x01", // 𣔉
+ 0x2350a: "\x01\x02\x03\x04\x05\x04\x01\x03\x04\x02\x05\x01", // 𣔊
+ 0x2350b: "\x01\x02\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𣔋
+ 0x2350c: "\x01\x02\x03\x04\x03\x05\x04\x01\x02\x03\x04", // 𣔌
+ 0x2350d: "\x03\x01\x05\x05\x04\x01\x04\x01\x01\x02\x03\x04", // 𣔍
+ 0x2350e: "\x01\x02\x03\x04\x01\x02\x02\x05\x01\x01\x02\x02", // 𣔎
+ 0x2350f: "\x01\x02\x03\x04\x01\x03\x04\x04\x03\x01\x01\x02", // 𣔏
+ 0x23510: "\x01\x02\x03\x04\x04\x03\x02\x05\x02\x03\x04", // 𣔐
+ 0x23511: "\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x04\x04", // 𣔑
+ 0x23512: "\x01\x02\x03\x04\x03\x01\x01\x03\x03\x05\x01\x01", // 𣔒
+ 0x23513: "\x01\x02\x03\x04\x03\x03\x02\x05\x03\x02\x05\x04", // 𣔓
+ 0x23514: "\x01\x02\x03\x04\x03\x04\x04\x03\x01\x01\x03\x02", // 𣔔
+ 0x23515: "\x03\x04\x03\x05\x04\x01\x05\x02\x01\x02\x03\x04", // 𣔕
+ 0x23516: "\x01\x02\x03\x04\x05\x02\x01\x01\x05\x02\x01\x01", // 𣔖
+ 0x23517: "\x05\x04\x02\x05\x01\x01\x02\x03\x04\x03\x05\x04", // 𣔗
+ 0x23518: "\x01\x02\x01\x01\x02\x01\x05\x03\x01\x02\x03\x04", // 𣔘
+ 0x23519: "\x01\x02\x03\x04\x03\x03\x01\x02\x03\x05\x03\x04", // 𣔙
+ 0x2351a: "\x03\x05\x01\x01\x05\x02\x05\x04\x01\x02\x03\x04", // 𣔚
+ 0x2351b: "\x01\x02\x03\x04\x04\x04\x05\x03\x04\x01\x03\x05", // 𣔛
+ 0x2351c: "\x01\x02\x03\x04\x05\x05\x05\x03\x05\x04\x02\x02", // 𣔜
+ 0x2351d: "\x01\x02\x03\x04\x01\x05\x02\x05\x04\x05\x04", // 𣔝
+ 0x2351e: "\x01\x02\x03\x04\x05\x02\x01\x03\x03\x05\x04\x04", // 𣔞
+ 0x2351f: "\x01\x02\x03\x04\x01\x02\x02\x01\x03\x02\x04", // 𣔟
+ 0x23520: "\x01\x02\x03\x04\x01\x02\x02\x03\x03\x01\x02", // 𣔠
+ 0x23521: "\x01\x02\x03\x04\x01\x02\x01\x05\x03\x02\x05\x04", // 𣔡
+ 0x23522: "\x01\x02\x03\x04\x03\x02\x03\x05\x04\x03\x05\x04", // 𣔢
+ 0x23523: "\x02\x05\x01\x01\x02\x03\x04\x01\x01\x02\x01\x04", // 𣔣
+ 0x23524: "\x01\x02\x03\x04\x03\x02\x01\x02\x05\x01\x03\x04", // 𣔤
+ 0x23525: "\x01\x02\x03\x04\x03\x03\x02\x01\x02\x01\x02\x01", // 𣔥
+ 0x23526: "\x01\x02\x03\x04\x01\x03\x01\x02\x01\x01\x02\x01", // 𣔦
+ 0x23527: "\x01\x02\x03\x04\x05\x03\x01\x01\x03\x02\x05\x01", // 𣔧
+ 0x23528: "\x01\x02\x03\x04\x02\x01\x02\x01\x02\x05\x01\x01", // 𣔨
+ 0x23529: "\x01\x02\x05\x01\x02\x03\x04\x01\x03\x02\x05\x02", // 𣔩
+ 0x2352a: "\x01\x02\x03\x04\x03\x01\x02\x02\x01\x01\x03\x05", // 𣔪
+ 0x2352b: "\x01\x02\x03\x04\x03\x01\x01\x02\x01\x01\x02\x01", // 𣔫
+ 0x2352c: "\x01\x02\x03\x04\x03\x02\x05\x03\x04\x01\x03\x02", // 𣔬
+ 0x2352d: "\x01\x02\x03\x04\x01\x02\x01\x03\x05\x01\x02\x01", // 𣔭
+ 0x2352e: "\x01\x02\x03\x04\x01\x02\x01\x01\x05\x05\x03\x04", // 𣔮
+ 0x2352f: "\x01\x02\x03\x04\x01\x02\x05\x02\x04\x01\x03\x04", // 𣔯
+ 0x23530: "\x01\x02\x03\x04\x01\x02\x01\x02\x04\x05\x04", // 𣔰
+ 0x23531: "\x01\x02\x03\x04\x04\x04\x05\x03\x04\x03\x04\x05\x04", // 𣔱
+ 0x23532: "\x01\x02\x03\x04\x02\x05\x02\x05\x01\x04\x05\x04", // 𣔲
+ 0x23533: "\x01\x02\x03\x04\x04\x01\x03\x04\x03\x01\x05\x02\x03", // 𣔳
+ 0x23534: "\x01\x02\x03\x04\x02\x05\x01\x02\x01\x04\x05\x04", // 𣔴
+ 0x23535: "\x03\x05\x02\x05\x01\x01\x05\x01\x05\x01\x02\x03\x04", // 𣔵
+ 0x23536: "\x01\x02\x03\x04\x01\x02\x01\x02\x04\x04\x01\x05\x05", // 𣔶
+ 0x23537: "\x01\x02\x03\x04\x03\x05\x01\x01\x01\x03\x04\x03\x02", // 𣔷
+ 0x23538: "\x01\x02\x03\x04\x01\x03\x02\x05\x03\x04\x03\x04\x01", // 𣔸
+ 0x23539: "\x01\x02\x03\x04\x03\x05\x01\x03\x03\x01\x01\x03\x04", // 𣔹
+ 0x2353a: "\x01\x02\x03\x04\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 𣔺
+ 0x2353b: "\x01\x02\x03\x04\x04\x04\x05\x03\x05\x01\x03\x04\x04", // 𣔻
+ 0x2353c: "\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x01\x01\x02", // 𣔼
+ 0x2353d: "\x05\x04\x03\x03\x04\x01\x01\x03\x04\x01\x02\x03\x04", // 𣔽
+ 0x2353e: "\x01\x02\x03\x04\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 𣔾
+ 0x2353f: "\x01\x02\x05\x01\x02\x05\x03\x01\x01\x01\x02\x03\x04", // 𣔿
+ 0x23540: "\x01\x02\x03\x04\x05\x04\x05\x04\x05\x04\x01\x01\x02", // 𣕀
+ 0x23541: "\x05\x03\x01\x01\x02\x01\x01\x02\x01\x01\x02\x03\x04", // 𣕁
+ 0x23542: "\x01\x02\x03\x04\x04\x03\x01\x01\x03\x04\x02\x05\x02", // 𣕂
+ 0x23543: "\x01\x02\x03\x04\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𣕃
+ 0x23544: "\x01\x02\x03\x04\x03\x05\x01\x03\x02\x05\x02\x05\x01", // 𣕄
+ 0x23545: "\x01\x02\x03\x04\x03\x01\x02\x01\x03\x05\x05\x01\x05", // 𣕅
+ 0x23546: "\x01\x02\x03\x04\x03\x05\x01\x05\x02\x05\x02\x02\x01", // 𣕆
+ 0x23547: "\x02\x04\x03\x03\x05\x04\x01\x02\x02\x01\x02\x03\x04", // 𣕇
+ 0x23548: "\x01\x02\x03\x04\x01\x02\x01\x02\x02\x05\x01\x01\x01", // 𣕈
+ 0x23549: "\x01\x02\x03\x04\x01\x02\x01\x02\x03\x05\x02\x05\x01", // 𣕉
+ 0x2354a: "\x01\x02\x03\x04\x03\x01\x03\x04\x02\x04\x01\x03\x04", // 𣕊
+ 0x2354b: "\x01\x02\x03\x04\x05\x01\x03\x03\x05\x03\x05\x01\x01", // 𣕋
+ 0x2354c: "\x01\x02\x03\x04\x03\x05\x02\x05\x01\x03\x01\x03\x04", // 𣕌
+ 0x2354d: "\x01\x02\x03\x04\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 𣕍
+ 0x2354e: "\x01\x02\x03\x04\x02\x05\x01\x02\x01\x01\x02\x03\x04", // 𣕎
+ 0x2354f: "\x04\x01\x02\x05\x01\x02\x01\x05\x04\x01\x02\x03\x04", // 𣕏
+ 0x23550: "\x05\x02\x03\x05\x02\x03\x05\x02\x02\x01\x02\x03\x04", // 𣕐
+ 0x23551: "\x01\x02\x03\x04\x05\x01\x01\x02\x01\x01\x02\x03\x04", // 𣕑
+ 0x23552: "\x01\x02\x03\x04\x01\x02\x05\x01\x04\x03\x01\x05\x04", // 𣕒
+ 0x23553: "\x01\x01\x02\x05\x03\x04\x01\x01\x02\x01\x02\x03\x04", // 𣕓
+ 0x23554: "\x01\x02\x01\x03\x01\x02\x02\x05\x01\x01\x02\x03\x04", // 𣕔
+ 0x23555: "\x01\x02\x03\x04\x03\x02\x01\x05\x01\x01\x01\x02\x01", // 𣕕
+ 0x23556: "\x01\x02\x03\x04\x03\x03\x02\x05\x01\x01\x01\x01\x02", // 𣕖
+ 0x23557: "\x01\x02\x03\x04\x04\x03\x01\x01\x02\x01\x03\x03\x05", // 𣕗
+ 0x23558: "\x01\x02\x03\x04\x05\x04\x02\x05\x01\x01\x02\x03\x04", // 𣕘
+ 0x23559: "\x04\x03\x01\x05\x04\x01\x02\x03\x04\x03\x04\x05\x04", // 𣕙
+ 0x2355a: "\x01\x02\x03\x04\x01\x02\x01\x02\x01\x03\x05\x03\x04", // 𣕚
+ 0x2355b: "\x01\x02\x03\x04\x04\x01\x05\x04\x02\x05\x02\x01\x01", // 𣕛
+ 0x2355c: "\x01\x02\x03\x04\x04\x03\x05\x05\x04\x05\x05\x04", // 𣕜
+ 0x2355d: "\x01\x02\x03\x04\x04\x04\x01\x05\x03\x04\x01\x02\x01", // 𣕝
+ 0x2355e: "\x01\x02\x03\x04\x04\x03\x01\x01\x02\x01\x05\x03\x01", // 𣕞
+ 0x2355f: "\x04\x01\x04\x03\x01\x01\x02\x03\x04\x01\x02\x03\x04", // 𣕟
+ 0x23560: "\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x03\x04", // 𣕠
+ 0x23561: "\x05\x01\x01\x01\x02\x01\x03\x05\x04\x01\x02\x03\x04", // 𣕡
+ 0x23562: "\x01\x02\x03\x04\x01\x02\x03\x04\x01\x03\x02\x01\x05", // 𣕢
+ 0x23563: "\x01\x02\x04\x05\x01\x02\x02\x05\x01\x01\x02\x03\x04", // 𣕣
+ 0x23564: "\x01\x02\x05\x01\x03\x04\x01\x02\x05\x01\x02\x03\x04", // 𣕤
+ 0x23565: "\x01\x03\x02\x05\x01\x01\x05\x03\x04\x01\x02\x03\x04", // 𣕥
+ 0x23566: "\x01\x02\x03\x04\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 𣕦
+ 0x23567: "\x01\x02\x03\x04\x05\x03\x02\x05\x01\x01\x02\x03\x04", // 𣕧
+ 0x23568: "\x01\x02\x03\x04\x01\x03\x02\x04\x02\x05\x01\x02\x01", // 𣕨
+ 0x23569: "\x01\x02\x03\x04\x01\x02\x05\x01\x01\x05\x05\x03\x01", // 𣕩
+ 0x2356a: "\x01\x02\x03\x04\x05\x04\x01\x02\x01\x01\x02\x03\x04", // 𣕪
+ 0x2356b: "\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x02\x03\x04", // 𣕫
+ 0x2356c: "\x01\x02\x03\x04\x01\x01\x02\x01\x05\x05\x04\x01\x04", // 𣕬
+ 0x2356d: "\x01\x02\x03\x04\x01\x01\x03\x02\x02\x02\x01\x02\x01", // 𣕭
+ 0x2356e: "\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x02\x03\x04", // 𣕮
+ 0x2356f: "\x01\x02\x03\x04\x01\x02\x03\x04\x03\x04\x01\x05\x04", // 𣕯
+ 0x23570: "\x01\x01\x02\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04", // 𣕰
+ 0x23571: "\x01\x02\x03\x04\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 𣕱
+ 0x23572: "\x01\x02\x03\x04\x04\x04\x02\x01\x02\x05\x01\x01\x01", // 𣕲
+ 0x23573: "\x01\x02\x03\x04\x02\x05\x04\x03\x01\x02\x03\x04\x01", // 𣕳
+ 0x23574: "\x01\x02\x03\x04\x02\x05\x02\x01\x03\x04\x03\x03\x04", // 𣕴
+ 0x23575: "\x01\x02\x03\x04\x01\x02\x01\x02\x03\x04\x01\x05\x04", // 𣕵
+ 0x23576: "\x01\x02\x03\x04\x02\x05\x01\x02\x01\x04\x01\x05\x03", // 𣕶
+ 0x23577: "\x01\x05\x01\x02\x03\x04\x02\x05\x01\x01\x02\x03\x04", // 𣕷
+ 0x23578: "\x01\x02\x03\x04\x01\x02\x01\x02\x01\x02\x05\x02\x05", // 𣕸
+ 0x23579: "\x01\x02\x03\x04\x02\x01\x05\x01\x01\x02\x01\x03\x04", // 𣕹
+ 0x2357a: "\x01\x02\x03\x04\x01\x02\x01\x02\x02\x05\x01\x03\x05", // 𣕺
+ 0x2357b: "\x01\x02\x03\x04\x03\x01\x01\x03\x02\x05\x01\x01\x01", // 𣕻
+ 0x2357c: "\x03\x02\x05\x01\x01\x01\x03\x05\x03\x01\x02\x03\x04", // 𣕼
+ 0x2357d: "\x01\x02\x03\x04\x01\x02\x03\x04\x03\x05\x02\x05\x01", // 𣕽
+ 0x2357e: "\x01\x02\x03\x04\x01\x02\x03\x04\x04\x05\x04\x03\x04", // 𣕾
+ 0x2357f: "\x01\x02\x04\x05\x05\x02\x02\x05\x02\x01\x02\x03\x04", // 𣕿
+ 0x23580: "\x01\x02\x03\x04\x01\x02\x05\x03\x04\x02\x01\x05\x04", // 𣖀
+ 0x23581: "\x01\x02\x03\x04\x01\x03\x04\x04\x02\x05\x02\x02\x01", // 𣖁
+ 0x23582: "\x01\x02\x03\x04\x01\x03\x04\x04\x03\x01\x01\x01\x02", // 𣖂
+ 0x23583: "\x02\x05\x02\x01\x03\x02\x05\x02\x02\x01\x02\x03\x04", // 𣖃
+ 0x23584: "\x03\x01\x02\x03\x02\x01\x05\x01\x01\x01\x02\x03\x04", // 𣖄
+ 0x23585: "\x01\x02\x03\x04\x03\x03\x04\x01\x04\x03\x01\x01\x02", // 𣖅
+ 0x23586: "\x01\x02\x03\x04\x03\x05\x02\x05\x01\x01\x05\x02\x01", // 𣖆
+ 0x23587: "\x04\x01\x02\x05\x03\x05\x02\x05\x01\x01\x02\x03\x04", // 𣖇
+ 0x23588: "\x04\x01\x02\x05\x03\x05\x04\x01\x05\x01\x02\x03\x04", // 𣖈
+ 0x23589: "\x01\x02\x03\x04\x04\x04\x05\x03\x04\x01\x02\x03\x04", // 𣖉
+ 0x2358a: "\x01\x02\x03\x04\x05\x05\x05\x01\x03\x05\x04\x02\x02", // 𣖊
+ 0x2358b: "\x01\x02\x03\x04\x01\x02\x01\x02\x05\x01\x05\x03\x04", // 𣖋
+ 0x2358c: "\x01\x02\x03\x04\x01\x02\x05\x04\x02\x05\x01\x03\x04", // 𣖌
+ 0x2358d: "\x01\x02\x03\x04\x01\x03\x02\x04\x01\x02\x01\x02\x01", // 𣖍
+ 0x2358e: "\x01\x02\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 𣖎
+ 0x2358f: "\x01\x02\x03\x04\x03\x01\x01\x02\x03\x05\x05\x01\x05", // 𣖏
+ 0x23590: "\x01\x02\x03\x04\x03\x02\x05\x01\x01\x04\x05\x04", // 𣖐
+ 0x23591: "\x01\x02\x03\x04\x03\x05\x03\x01\x01\x02\x01\x02\x01", // 𣖑
+ 0x23592: "\x01\x02\x03\x04\x04\x05\x03\x04\x01\x03\x05\x04\x04", // 𣖒
+ 0x23593: "\x01\x02\x03\x04\x01\x01\x02\x01\x03\x05\x03\x05\x04", // 𣖓
+ 0x23594: "\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x05\x02\x01", // 𣖔
+ 0x23595: "\x01\x02\x03\x04\x05\x01\x03\x04\x03\x01\x01\x03\x02", // 𣖕
+ 0x23596: "\x01\x02\x03\x04\x01\x02\x01\x01\x02\x01\x01\x02\x04", // 𣖖
+ 0x23597: "\x01\x02\x03\x04\x05\x01\x03\x03\x05\x04\x05\x04", // 𣖗
+ 0x23598: "\x01\x02\x03\x04\x05\x05\x04\x04\x04\x04\x01\x02\x01", // 𣖘
+ 0x23599: "\x01\x02\x03\x04\x04\x03\x01\x01\x02\x01\x01\x03\x04", // 𣖙
+ 0x2359a: "\x01\x02\x03\x04\x01\x02\x02\x05\x03\x02\x05\x01", // 𣖚
+ 0x2359b: "\x04\x01\x03\x04\x03\x04\x01\x02\x01\x01\x02\x03\x04", // 𣖛
+ 0x2359c: "\x01\x02\x03\x04\x02\x05\x01\x02\x01\x02\x05\x01\x01", // 𣖜
+ 0x2359d: "\x01\x02\x03\x04\x01\x02\x02\x03\x02\x01\x02\x01", // 𣖝
+ 0x2359e: "\x01\x02\x03\x04\x04\x01\x03\x05\x03\x04\x02\x05\x01", // 𣖞
+ 0x2359f: "\x01\x02\x03\x04\x04\x01\x01\x01\x02\x05\x01\x01\x02", // 𣖟
+ 0x235a0: "\x01\x02\x03\x04\x01\x02\x02\x05\x02\x02\x05\x02", // 𣖠
+ 0x235a1: "\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x04\x02\x02", // 𣖡
+ 0x235a2: "\x01\x01\x02\x03\x04\x04\x01\x03\x04\x03\x04\x01\x02", // 𣖢
+ 0x235a3: "\x01\x02\x03\x04\x03\x04\x05\x02\x01\x05\x02\x03", // 𣖣
+ 0x235a4: "\x01\x03\x04\x03\x04\x02\x03\x04\x05\x04\x02\x05\x01", // 𣖤
+ 0x235a5: "\x01\x02\x03\x04\x01\x02\x02\x05\x01\x03\x01\x01\x02", // 𣖥
+ 0x235a6: "\x05\x04\x05\x02\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 𣖦
+ 0x235a7: "\x01\x02\x03\x04\x02\x01\x02\x01\x03\x05\x01\x02\x03\x04", // 𣖧
+ 0x235a8: "\x01\x02\x03\x04\x01\x02\x01\x02\x02\x01\x02\x01\x01\x05", // 𣖨
+ 0x235a9: "\x01\x02\x03\x04\x03\x04\x04\x03\x01\x02\x05\x03\x04", // 𣖩
+ 0x235aa: "\x01\x02\x03\x04\x02\x01\x05\x03\x01\x05\x01\x02\x03\x04", // 𣖪
+ 0x235ab: "\x01\x02\x01\x02\x05\x01\x03\x05\x05\x04\x01\x02\x03\x04", // 𣖫
+ 0x235ac: "\x01\x02\x03\x04\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04", // 𣖬
+ 0x235ad: "\x01\x02\x03\x04\x01\x05\x05\x04\x05\x05\x04\x01\x02\x01", // 𣖭
+ 0x235ae: "\x01\x02\x03\x04\x02\x05\x01\x03\x04\x02\x05\x02\x02\x01", // 𣖮
+ 0x235af: "\x01\x02\x03\x04\x03\x01\x02\x03\x01\x02\x04\x05\x04\x04", // 𣖯
+ 0x235b0: "\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x01\x05\x01\x05", // 𣖰
+ 0x235b1: "\x01\x02\x03\x04\x02\x05\x02\x05\x04\x03\x05\x03\x05\x04", // 𣖱
+ 0x235b2: "\x01\x02\x03\x04\x04\x01\x03\x04\x01\x02\x01\x02\x01\x01\x05", // 𣖲
+ 0x235b3: "\x01\x02\x03\x04\x02\x01\x05\x03\x01\x05\x03\x01\x03\x04", // 𣖳
+ 0x235b4: "\x02\x01\x02\x05\x03\x05\x04\x01\x05\x01\x02\x03\x04", // 𣖴
+ 0x235b5: "\x01\x02\x03\x04\x04\x01\x03\x03\x04\x03\x04\x01\x02\x01", // 𣖵
+ 0x235b6: "\x05\x04\x05\x02\x03\x03\x05\x04\x05\x03\x01\x02\x03\x04", // 𣖶
+ 0x235b7: "\x01\x02\x03\x04\x04\x01\x03\x04\x03\x04\x03\x05\x04\x01", // 𣖷
+ 0x235b8: "\x01\x02\x03\x04\x04\x01\x03\x04\x01\x04\x03\x01\x01\x02", // 𣖸
+ 0x235b9: "\x01\x02\x03\x04\x05\x03\x01\x02\x05\x01\x03\x01\x01\x02", // 𣖹
+ 0x235ba: "\x01\x02\x03\x04\x04\x01\x05\x03\x03\x01\x03\x05\x03\x04", // 𣖺
+ 0x235bb: "\x01\x02\x03\x04\x01\x03\x02\x05\x01\x02\x05\x02\x02\x01", // 𣖻
+ 0x235bc: "\x01\x02\x03\x04\x03\x05\x02\x05\x01\x01\x03\x05\x01\x05", // 𣖼
+ 0x235bd: "\x01\x02\x03\x04\x05\x01\x01\x04\x05\x02\x05\x02\x05\x04", // 𣖽
+ 0x235be: "\x01\x02\x03\x04\x01\x02\x02\x01\x03\x03\x05\x01\x01\x02", // 𣖾
+ 0x235bf: "\x01\x02\x03\x04\x01\x02\x05\x01\x01\x01\x03\x04\x05\x04", // 𣖿
+ 0x235c0: "\x01\x02\x03\x04\x02\x01\x02\x01\x03\x05\x03\x05\x04", // 𣗀
+ 0x235c1: "\x01\x03\x02\x05\x01\x01\x02\x03\x04\x03\x01\x02\x05\x01", // 𣗁
+ 0x235c2: "\x01\x02\x03\x04\x01\x03\x04\x03\x04\x01\x01\x02\x03\x04", // 𣗂
+ 0x235c3: "\x01\x02\x03\x04\x01\x03\x05\x03\x03\x03\x04\x01\x02\x01", // 𣗃
+ 0x235c4: "\x01\x02\x03\x04\x01\x02\x02\x04\x01\x05\x03\x02\x05", // 𣗄
+ 0x235c5: "\x01\x02\x02\x03\x04\x01\x01\x03\x04\x03\x04\x02\x03\x04", // 𣗅
+ 0x235c6: "\x03\x03\x05\x04\x01\x04\x01\x03\x04\x04\x01\x02\x03\x04", // 𣗆
+ 0x235c7: "\x01\x02\x03\x04\x01\x02\x05\x03\x05\x01\x04\x04\x04\x04", // 𣗇
+ 0x235c8: "\x01\x02\x03\x04\x04\x04\x05\x05\x03\x01\x01\x02\x03\x04", // 𣗈
+ 0x235c9: "\x01\x02\x03\x04\x04\x05\x01\x03\x03\x02\x05\x02\x05\x01", // 𣗉
+ 0x235ca: "\x01\x02\x03\x04\x01\x02\x02\x01\x02\x05\x03\x04\x03\x04", // 𣗊
+ 0x235cb: "\x01\x02\x03\x04\x02\x04\x03\x04\x05\x02\x05\x01\x03\x05", // 𣗋
+ 0x235cc: "\x01\x02\x03\x04\x04\x03\x01\x02\x03\x04\x04\x05\x04", // 𣗌
+ 0x235cd: "\x01\x02\x03\x04\x03\x01\x01\x02\x02\x01\x01\x01\x03\x04", // 𣗍
+ 0x235ce: "\x01\x02\x03\x04\x01\x02\x01\x02\x03\x04\x01\x01\x02\x01", // 𣗎
+ 0x235cf: "\x01\x02\x03\x04\x02\x05\x02\x03\x05\x04\x01\x01\x01\x02", // 𣗏
+ 0x235d0: "\x01\x02\x03\x04\x02\x05\x01\x03\x01\x02\x01\x05\x02", // 𣗐
+ 0x235d1: "\x01\x02\x03\x04\x05\x02\x01\x02\x05\x01\x01\x01\x02", // 𣗑
+ 0x235d2: "\x01\x02\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02", // 𣗒
+ 0x235d3: "\x01\x01\x02\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01", // 𣗓
+ 0x235d4: "\x01\x02\x03\x04\x05\x01\x01\x05\x03\x04\x04\x05\x04", // 𣗔
+ 0x235d5: "\x01\x02\x03\x04\x05\x01\x05\x05\x01\x05\x03\x01\x02\x01", // 𣗕
+ 0x235d6: "\x01\x02\x03\x04\x01\x02\x05\x02\x02\x01\x01\x02\x03\x04", // 𣗖
+ 0x235d7: "\x01\x02\x03\x04\x01\x02\x03\x04\x05\x01\x03\x05\x01\x05", // 𣗗
+ 0x235d8: "\x01\x02\x03\x04\x01\x01\x01\x03\x04\x02\x04\x01\x03\x04", // 𣗘
+ 0x235d9: "\x01\x02\x03\x04\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𣗙
+ 0x235da: "\x01\x02\x03\x04\x01\x02\x03\x04\x01\x03\x04\x03\x01\x02", // 𣗚
+ 0x235db: "\x01\x02\x03\x04\x01\x02\x03\x04\x03\x05\x04\x02\x05\x01", // 𣗛
+ 0x235dc: "\x01\x01\x02\x01\x01\x01\x02\x01\x03\x04\x01\x02\x03\x04", // 𣗜
+ 0x235dd: "\x01\x02\x03\x04\x01\x01\x02\x01\x04\x03\x01\x01\x02\x01", // 𣗝
+ 0x235de: "\x01\x02\x05\x01\x02\x04\x05\x01\x02\x05\x01\x02\x03\x04", // 𣗞
+ 0x235df: "\x01\x02\x03\x04\x01\x03\x04\x04\x03\x01\x01\x02\x03\x04", // 𣗟
+ 0x235e0: "\x01\x02\x03\x04\x01\x02\x02\x01\x01\x01\x03\x04\x04\x04", // 𣗠
+ 0x235e1: "\x01\x02\x03\x04\x01\x02\x03\x04\x01\x03\x05\x02\x01\x05", // 𣗡
+ 0x235e2: "\x01\x02\x03\x04\x05\x01\x05\x01\x02\x01\x01\x02\x03\x04", // 𣗢
+ 0x235e3: "\x01\x02\x03\x04\x01\x02\x03\x04\x05\x03\x04\x03\x01\x03\x04", // 𣗣
+ 0x235e4: "\x01\x02\x03\x04\x02\x05\x01\x01\x04\x04\x05\x05\x03\x01", // 𣗤
+ 0x235e5: "\x01\x02\x05\x01\x02\x03\x04\x01\x02\x05\x01\x02\x03\x04", // 𣗥
+ 0x235e6: "\x01\x02\x03\x04\x01\x02\x01\x02\x04\x05\x04\x01\x05\x03", // 𣗦
+ 0x235e7: "\x01\x02\x05\x01\x02\x03\x04\x05\x04\x02\x05\x01\x01\x02", // 𣗧
+ 0x235e8: "\x01\x02\x03\x04\x02\x05\x01\x01\x03\x02\x05\x01\x02\x02", // 𣗨
+ 0x235e9: "\x01\x02\x03\x04\x01\x02\x01\x02\x01\x02\x01\x03\x01\x05", // 𣗩
+ 0x235ea: "\x01\x02\x03\x04\x01\x02\x01\x02\x03\x04\x01\x02\x03\x04", // 𣗪
+ 0x235eb: "\x01\x02\x03\x04\x02\x01\x02\x01\x05\x04\x01\x03\x04\x01", // 𣗫
+ 0x235ec: "\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x01\x03\x04\x04", // 𣗬
+ 0x235ed: "\x01\x02\x03\x04\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01", // 𣗭
+ 0x235ee: "\x01\x02\x03\x04\x03\x04\x01\x05\x03\x04\x04\x04\x04\x04", // 𣗮
+ 0x235ef: "\x01\x02\x03\x04\x03\x04\x01\x02\x05\x01\x03\x01\x01\x02", // 𣗯
+ 0x235f0: "\x03\x04\x05\x03\x05\x01\x01\x05\x03\x04\x01\x02\x03\x04", // 𣗰
+ 0x235f1: "\x03\x01\x02\x03\x04\x02\x02\x01\x02\x03\x04\x01\x02\x04", // 𣗱
+ 0x235f2: "\x01\x02\x04\x01\x03\x04\x04\x01\x01\x02\x01\x02\x03\x04", // 𣗲
+ 0x235f3: "\x01\x02\x03\x04\x01\x02\x05\x01\x04\x03\x01\x01\x02\x04", // 𣗳
+ 0x235f4: "\x02\x01\x02\x05\x04\x05\x04\x03\x04\x01\x01\x02\x03\x04", // 𣗴
+ 0x235f5: "\x01\x02\x03\x04\x02\x05\x02\x02\x01\x01\x02\x01\x02\x01", // 𣗵
+ 0x235f6: "\x01\x02\x03\x04\x02\x05\x02\x02\x01\x02\x03\x03\x04\x04", // 𣗶
+ 0x235f7: "\x03\x04\x03\x01\x02\x03\x04\x01\x03\x04\x01\x02\x03\x04", // 𣗷
+ 0x235f8: "\x03\x05\x02\x05\x03\x04\x01\x05\x01\x05\x01\x02\x03\x04", // 𣗸
+ 0x235f9: "\x01\x02\x03\x04\x04\x03\x01\x01\x02\x01\x04\x05\x04\x04", // 𣗹
+ 0x235fa: "\x05\x04\x02\x05\x01\x01\x02\x03\x04\x01\x02\x02\x05\x01", // 𣗺
+ 0x235fb: "\x05\x04\x02\x05\x01\x01\x02\x03\x04\x03\x01\x01\x03\x04", // 𣗻
+ 0x235fc: "\x01\x02\x03\x04\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𣗼
+ 0x235fd: "\x01\x02\x03\x04\x03\x05\x02\x05\x03\x04\x01\x05\x03\x05", // 𣗽
+ 0x235fe: "\x03\x04\x01\x02\x05\x01\x02\x02\x03\x01\x01\x02\x03\x04", // 𣗾
+ 0x235ff: "\x01\x02\x03\x04\x04\x05\x02\x04\x02\x05\x01\x01\x01", // 𣗿
+ 0x23600: "\x01\x02\x03\x04\x03\x02\x02\x03\x05\x04\x03\x03\x03", // 𣘀
+ 0x23601: "\x01\x02\x03\x04\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02", // 𣘁
+ 0x23602: "\x01\x02\x01\x05\x04\x03\x01\x01\x03\x04\x01\x02\x03\x04", // 𣘂
+ 0x23603: "\x01\x02\x03\x04\x01\x02\x02\x04\x01\x05\x03\x03\x04", // 𣘃
+ 0x23604: "\x01\x02\x03\x04\x04\x01\x01\x01\x02\x05\x01\x03\x01\x05", // 𣘄
+ 0x23605: "\x01\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x05\x04", // 𣘅
+ 0x23606: "\x01\x02\x03\x04\x05\x05\x04\x04\x04\x04\x02\x05\x03\x04", // 𣘆
+ 0x23607: "\x01\x02\x03\x04\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01", // 𣘇
+ 0x23608: "\x03\x01\x01\x02\x03\x04\x03\x04\x01\x02\x05\x01\x02\x02", // 𣘈
+ 0x23609: "\x01\x02\x03\x04\x03\x05\x03\x03\x04\x04\x05\x02\x05\x01", // 𣘉
+ 0x2360a: "\x01\x02\x03\x04\x03\x03\x02\x01\x02\x01\x02\x01\x03\x04", // 𣘊
+ 0x2360b: "\x01\x02\x03\x04\x04\x01\x03\x05\x04\x02\x05\x01\x01\x02", // 𣘋
+ 0x2360c: "\x01\x02\x03\x04\x04\x05\x02\x04\x02\x05\x01\x03\x05", // 𣘌
+ 0x2360d: "\x01\x02\x03\x04\x04\x01\x03\x01\x02\x05\x01\x01\x01\x02", // 𣘍
+ 0x2360e: "\x01\x02\x03\x04\x04\x03\x01\x01\x02\x01\x03\x05\x05\x04", // 𣘎
+ 0x2360f: "\x04\x04\x05\x03\x04\x03\x04\x02\x05\x01\x01\x03\x02\x04", // 𣘏
+ 0x23610: "\x01\x04\x03\x01\x02\x03\x04\x01\x04\x03\x01\x02\x03\x04", // 𣘐
+ 0x23611: "\x03\x05\x03\x05\x04\x05\x01\x02\x03\x04\x01\x02\x03\x04", // 𣘑
+ 0x23612: "\x01\x02\x02\x05\x01\x01\x01\x05\x03\x04\x01\x02\x03\x04", // 𣘒
+ 0x23613: "\x01\x02\x03\x04\x02\x05\x02\x02\x01\x01\x02\x01\x05\x04", // 𣘓
+ 0x23614: "\x01\x02\x03\x04\x04\x04\x05\x02\x05\x01\x01\x01\x03\x04", // 𣘔
+ 0x23615: "\x01\x02\x03\x04\x04\x04\x05\x05\x01\x01\x04\x05\x02\x05\x02", // 𣘕
+ 0x23616: "\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x01\x02\x03\x04", // 𣘖
+ 0x23617: "\x01\x02\x03\x04\x01\x01\x02\x01\x02\x01\x03\x02\x05\x01\x05", // 𣘗
+ 0x23618: "\x01\x02\x03\x04\x01\x02\x01\x02\x04\x01\x04\x03\x01\x01\x02", // 𣘘
+ 0x23619: "\x01\x02\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01\x05\x02", // 𣘙
+ 0x2361a: "\x01\x02\x03\x04\x04\x01\x05\x05\x04\x04\x01\x03\x04\x01\x02", // 𣘚
+ 0x2361b: "\x01\x02\x03\x04\x03\x02\x05\x01\x01\x03\x05\x05\x01\x03\x05", // 𣘛
+ 0x2361c: "\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x05\x04\x02\x05\x01", // 𣘜
+ 0x2361d: "\x01\x02\x03\x04\x01\x02\x05\x02\x02\x01\x01\x03\x04\x05\x05", // 𣘝
+ 0x2361e: "\x01\x02\x03\x04\x03\x04\x01\x05\x01\x02\x05\x03\x05\x01\x01", // 𣘞
+ 0x2361f: "\x03\x02\x05\x01\x02\x01\x01\x05\x01\x05\x04\x01\x02\x03\x04", // 𣘟
+ 0x23620: "\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x01\x02\x05\x01\x02", // 𣘠
+ 0x23621: "\x01\x02\x03\x04\x01\x02\x01\x02\x04\x04\x01\x02\x03\x04\x03", // 𣘡
+ 0x23622: "\x01\x02\x01\x04\x01\x05\x03\x03\x01\x03\x04\x01\x02\x03\x04", // 𣘢
+ 0x23623: "\x01\x02\x03\x04\x01\x03\x01\x01\x05\x03\x04\x03\x05\x04\x01", // 𣘣
+ 0x23624: "\x01\x02\x03\x04\x03\x05\x04\x01\x05\x04\x01\x01\x02\x03\x04", // 𣘤
+ 0x23625: "\x01\x02\x03\x04\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x03", // 𣘥
+ 0x23626: "\x01\x03\x01\x01\x03\x04\x05\x03\x05\x05\x04\x01\x02\x03\x04", // 𣘦
+ 0x23627: "\x01\x02\x03\x04\x03\x01\x05\x03\x01\x05\x03\x02\x01\x02\x04", // 𣘧
+ 0x23628: "\x01\x02\x03\x04\x04\x01\x01\x02\x05\x01\x02\x03\x05\x03\x04", // 𣘨
+ 0x23629: "\x01\x02\x03\x04\x03\x03\x02\x02\x01\x02\x01\x02\x01\x03\x04", // 𣘩
+ 0x2362a: "\x01\x02\x03\x04\x01\x02\x02\x01\x01\x01\x03\x05\x03\x05\x02", // 𣘪
+ 0x2362b: "\x02\x05\x01\x01\x02\x03\x04\x02\x01\x05\x03\x01\x05\x03\x05", // 𣘫
+ 0x2362c: "\x01\x01\x02\x03\x04\x03\x01\x03\x04\x04\x01\x03\x01\x02\x03\x04", // 𣘬
+ 0x2362d: "\x01\x02\x03\x04\x02\x01\x05\x03\x01\x05\x02\x05\x01\x01\x02", // 𣘭
+ 0x2362e: "\x01\x02\x03\x04\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04", // 𣘮
+ 0x2362f: "\x01\x02\x05\x01\x02\x04\x05\x01\x03\x05\x04\x01\x02\x03\x04", // 𣘯
+ 0x23630: "\x01\x02\x03\x04\x04\x04\x02\x01\x03\x03\x05\x04\x01\x04\x01", // 𣘰
+ 0x23631: "\x01\x02\x03\x04\x03\x03\x02\x02\x05\x01\x01\x01\x01\x02\x04", // 𣘱
+ 0x23632: "\x01\x02\x03\x04\x01\x02\x03\x04\x04\x01\x04\x03\x01\x01\x02", // 𣘲
+ 0x23633: "\x03\x05\x03\x05\x01\x01\x02\x04\x04\x01\x02\x01\x02\x03\x04", // 𣘳
+ 0x23634: "\x01\x02\x03\x04\x03\x01\x01\x05\x05\x01\x01\x05\x03\x04", // 𣘴
+ 0x23635: "\x01\x02\x03\x04\x03\x01\x02\x03\x04\x03\x05\x04\x03\x05\x04", // 𣘵
+ 0x23636: "\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x01\x03\x04\x01\x02", // 𣘶
+ 0x23637: "\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x01\x01\x05\x03\x04", // 𣘷
+ 0x23638: "\x01\x02\x03\x04\x02\x05\x01\x01\x02\x01\x01\x04\x04\x04\x04", // 𣘸
+ 0x23639: "\x01\x02\x03\x04\x04\x04\x05\x01\x02\x05\x01\x02\x01\x03\x04", // 𣘹
+ 0x2363a: "\x01\x02\x03\x04\x03\x01\x02\x02\x01\x01\x02\x05\x02\x05\x01", // 𣘺
+ 0x2363b: "\x01\x02\x03\x04\x01\x02\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 𣘻
+ 0x2363c: "\x04\x05\x01\x03\x02\x05\x01\x03\x01\x03\x04\x01\x02\x03\x04", // 𣘼
+ 0x2363d: "\x01\x02\x03\x04\x02\x03\x04\x03\x03\x05\x02\x05\x01\x03\x05", // 𣘽
+ 0x2363e: "\x01\x04\x03\x01\x02\x03\x04\x04\x05\x01\x03\x02\x05\x01\x01", // 𣘾
+ 0x2363f: "\x04\x04\x05\x03\x04\x03\x04\x01\x02\x05\x01\x01\x02\x03\x04", // 𣘿
+ 0x23640: "\x01\x02\x03\x04\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04", // 𣙀
+ 0x23641: "\x01\x02\x03\x04\x02\x01\x05\x03\x01\x05\x02\x05\x01\x01\x01", // 𣙁
+ 0x23642: "\x04\x03\x01\x01\x03\x04\x05\x04\x02\x05\x01\x01\x02\x03\x04", // 𣙂
+ 0x23643: "\x01\x02\x03\x04\x04\x01\x03\x01\x02\x02\x01\x04\x03\x03\x04", // 𣙃
+ 0x23644: "\x01\x02\x03\x04\x04\x04\x01\x01\x02\x03\x04\x03\x04\x01\x05", // 𣙄
+ 0x23645: "\x03\x05\x01\x03\x02\x05\x01\x01\x05\x03\x04\x01\x02\x03\x04", // 𣙅
+ 0x23646: "\x01\x02\x03\x04\x01\x05\x04\x01\x02\x02\x01\x01\x02\x03\x04", // 𣙆
+ 0x23647: "\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02\x03\x04", // 𣙇
+ 0x23648: "\x01\x02\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x02\x03\x04", // 𣙈
+ 0x23649: "\x01\x02\x03\x04\x01\x03\x04\x03\x04\x03\x04\x02\x05\x03\x04", // 𣙉
+ 0x2364a: "\x01\x02\x03\x04\x01\x02\x01\x02\x02\x05\x01\x02\x03\x04\x01", // 𣙊
+ 0x2364b: "\x01\x02\x03\x04\x02\x05\x02\x02\x05\x04\x03\x01\x02\x05\x02", // 𣙋
+ 0x2364c: "\x01\x02\x03\x04\x02\x05\x02\x03\x04\x01\x01\x02\x04\x03\x01", // 𣙌
+ 0x2364d: "\x01\x02\x03\x04\x02\x05\x02\x02\x05\x01\x01\x01\x05\x01\x05", // 𣙍
+ 0x2364e: "\x01\x02\x03\x04\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01", // 𣙎
+ 0x2364f: "\x01\x02\x03\x04\x02\x01\x02\x05\x02\x02\x01\x01\x02\x03\x04", // 𣙏
+ 0x23650: "\x01\x02\x03\x04\x02\x05\x01\x02\x05\x01\x01\x02\x05\x02\x05", // 𣙐
+ 0x23651: "\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04\x01\x03\x04", // 𣙑
+ 0x23652: "\x01\x02\x03\x04\x02\x05\x01\x01\x05\x01\x03\x02\x01\x02\x05", // 𣙒
+ 0x23653: "\x01\x02\x03\x04\x03\x04\x04\x03\x01\x02\x03\x04\x03\x03\x03", // 𣙓
+ 0x23654: "\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x02\x01\x02\x03\x04", // 𣙔
+ 0x23655: "\x01\x02\x03\x04\x03\x01\x05\x05\x04\x01\x04\x03\x01\x03\x04", // 𣙕
+ 0x23656: "\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x01\x02\x05\x02\x05", // 𣙖
+ 0x23657: "\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04\x01\x02\x03\x04", // 𣙗
+ 0x23658: "\x01\x02\x03\x04\x01\x02\x02\x03\x01\x03\x01\x01\x03\x04", // 𣙘
+ 0x23659: "\x01\x02\x03\x04\x01\x02\x05\x01\x02\x03\x04\x03\x01\x03\x04", // 𣙙
+ 0x2365a: "\x01\x02\x03\x04\x03\x04\x05\x04\x02\x05\x01\x01\x02\x01\x01", // 𣙚
+ 0x2365b: "\x01\x02\x03\x04\x04\x01\x03\x04\x02\x05\x01\x03\x05\x04\x01", // 𣙛
+ 0x2365c: "\x01\x02\x03\x04\x04\x04\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 𣙜
+ 0x2365d: "\x01\x02\x03\x04\x05\x01\x03\x03\x03\x02\x01\x02\x02\x01\x05", // 𣙝
+ 0x2365e: "\x01\x02\x03\x04\x01\x02\x05\x01\x04\x03\x01\x04\x04\x01\x02", // 𣙞
+ 0x2365f: "\x01\x02\x03\x04\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x02", // 𣙟
+ 0x23660: "\x01\x02\x03\x04\x02\x05\x02\x02\x01\x01\x03\x04\x03\x03\x04", // 𣙠
+ 0x23661: "\x01\x02\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𣙡
+ 0x23662: "\x01\x02\x03\x04\x02\x05\x04\x03\x01\x01\x03\x04\x05\x05\x01", // 𣙢
+ 0x23663: "\x01\x02\x03\x04\x04\x04\x05\x02\x05\x01\x01\x04\x01\x03\x04", // 𣙣
+ 0x23664: "\x04\x01\x01\x03\x01\x02\x05\x01\x05\x03\x04\x01\x02\x03\x04", // 𣙤
+ 0x23665: "\x01\x02\x03\x04\x04\x03\x01\x01\x02\x01\x02\x05\x02\x02\x01", // 𣙥
+ 0x23666: "\x01\x02\x03\x04\x04\x01\x03\x04\x01\x01\x02\x01\x01\x02\x04", // 𣙦
+ 0x23667: "\x01\x02\x03\x04\x02\x05\x01\x01\x01\x05\x01\x01\x05\x03\x04", // 𣙧
+ 0x23668: "\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x05\x03\x02\x05\x04", // 𣙨
+ 0x23669: "\x01\x02\x03\x04\x02\x05\x02\x04\x04\x05\x01\x01\x02\x03\x04", // 𣙩
+ 0x2366a: "\x01\x02\x03\x04\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04", // 𣙪
+ 0x2366b: "\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x04\x01\x04\x03\x01", // 𣙫
+ 0x2366c: "\x01\x02\x05\x02\x02\x01\x01\x02\x03\x04\x01\x05\x01\x05", // 𣙬
+ 0x2366d: "\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x05\x03\x02\x05\x01", // 𣙭
+ 0x2366e: "\x01\x02\x03\x04\x04\x01\x03\x04\x03\x02\x01\x01\x02\x03\x04", // 𣙮
+ 0x2366f: "\x01\x02\x03\x04\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𣙯
+ 0x23670: "\x05\x01\x03\x01\x05\x05\x04\x05\x04\x05\x04\x01\x02\x03\x04", // 𣙰
+ 0x23671: "\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x03\x05\x02\x05\x01", // 𣙱
+ 0x23672: "\x01\x02\x01\x04\x05\x03\x01\x01\x02\x05\x02\x01\x02\x03\x04", // 𣙲
+ 0x23673: "\x01\x02\x03\x04\x02\x05\x01\x02\x01\x03\x04\x01\x02\x03\x04", // 𣙳
+ 0x23674: "\x01\x02\x03\x04\x01\x03\x05\x04\x03\x04\x03\x04\x02\x05\x01", // 𣙴
+ 0x23675: "\x01\x02\x03\x04\x04\x04\x01\x02\x05\x01\x01\x01\x01\x02\x04", // 𣙵
+ 0x23676: "\x01\x02\x03\x04\x05\x01\x05\x03\x02\x02\x05\x01\x02\x02\x01", // 𣙶
+ 0x23677: "\x01\x02\x03\x04\x01\x02\x02\x01\x03\x04\x04\x01\x03\x02", // 𣙷
+ 0x23678: "\x03\x01\x01\x02\x03\x04\x01\x02\x02\x05\x02\x02\x05\x02", // 𣙸
+ 0x23679: "\x01\x02\x05\x01\x02\x03\x04\x02\x05\x01\x01\x01\x05\x03\x05", // 𣙹
+ 0x2367a: "\x01\x02\x03\x04\x03\x02\x05\x03\x04\x01\x03\x04\x03\x05\x04", // 𣙺
+ 0x2367b: "\x01\x02\x03\x04\x01\x02\x01\x02\x01\x02\x02\x01\x01\x01\x05\x04", // 𣙻
+ 0x2367c: "\x05\x04\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x01\x02\x03\x04", // 𣙼
+ 0x2367d: "\x01\x02\x03\x04\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04", // 𣙽
+ 0x2367e: "\x01\x02\x03\x04\x03\x02\x05\x04\x03\x01\x02\x03\x04\x01\x01\x05", // 𣙾
+ 0x2367f: "\x01\x02\x03\x04\x05\x01\x05\x03\x02\x02\x05\x01\x01\x01\x03\x04", // 𣙿
+ 0x23680: "\x01\x02\x03\x04\x02\x01\x02\x01\x01\x05\x03\x05\x03\x05\x01\x01\x02", // 𣚀
+ 0x23681: "\x01\x02\x03\x04\x02\x01\x02\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 𣚁
+ 0x23682: "\x01\x02\x03\x04\x04\x01\x05\x03\x01\x03\x04\x01\x02\x05\x01\x02", // 𣚂
+ 0x23683: "\x01\x02\x03\x04\x01\x01\x01\x02\x05\x03\x05\x05\x04\x02\x03\x04", // 𣚃
+ 0x23684: "\x01\x02\x02\x01\x01\x01\x03\x04\x03\x03\x01\x02\x01\x02\x03\x04", // 𣚄
+ 0x23685: "\x01\x02\x03\x04\x01\x02\x02\x05\x01\x01\x01\x05\x04\x05\x04\x04", // 𣚅
+ 0x23686: "\x01\x02\x03\x04\x01\x05\x02\x05\x01\x05\x02\x05\x01\x05\x02\x05", // 𣚆
+ 0x23687: "\x01\x02\x05\x01\x02\x04\x05\x03\x05\x05\x01\x05\x01\x02\x03\x04", // 𣚇
+ 0x23688: "\x01\x02\x03\x04\x05\x04\x05\x04\x05\x04\x03\x04\x02\x04\x04\x04", // 𣚈
+ 0x23689: "\x01\x02\x03\x04\x05\x01\x01\x05\x01\x01\x03\x04\x02\x04\x04\x04", // 𣚉
+ 0x2368a: "\x01\x02\x03\x04\x01\x03\x02\x05\x02\x02\x01\x03\x02\x05\x02\x02", // 𣚊
+ 0x2368b: "\x01\x02\x03\x04\x01\x02\x01\x02\x01\x02\x02\x01\x01\x01\x05\x02", // 𣚋
+ 0x2368c: "\x01\x02\x03\x04\x04\x01\x04\x03\x04\x05\x02\x05\x02\x02\x05\x01", // 𣚌
+ 0x2368d: "\x01\x02\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01\x02\x02\x05\x01", // 𣚍
+ 0x2368e: "\x01\x02\x03\x04\x05\x04\x05\x04\x05\x04\x05\x05\x04\x02\x03\x04", // 𣚎
+ 0x2368f: "\x04\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 𣚏
+ 0x23690: "\x01\x02\x03\x04\x01\x02\x05\x01\x01\x02\x03\x05\x04\x04\x04\x04", // 𣚐
+ 0x23691: "\x01\x02\x03\x04\x05\x01\x05\x01\x02\x01\x01\x02\x01\x02\x05\x01", // 𣚑
+ 0x23692: "\x01\x02\x03\x04\x01\x01\x02\x01\x01\x01\x02\x01\x05\x02\x01\x05", // 𣚒
+ 0x23693: "\x01\x02\x03\x04\x05\x05\x04\x04\x04\x04\x05\x04\x02\x05\x01\x01", // 𣚓
+ 0x23694: "\x01\x02\x03\x04\x03\x02\x01\x05\x01\x01\x03\x05\x04\x04\x04\x04", // 𣚔
+ 0x23695: "\x01\x02\x03\x04\x02\x05\x01\x01\x03\x05\x04\x01\x01\x03\x04\x04", // 𣚕
+ 0x23696: "\x01\x02\x03\x04\x01\x02\x01\x02\x01\x03\x04\x02\x05\x01\x01\x05", // 𣚖
+ 0x23697: "\x03\x03\x05\x04\x01\x04\x04\x03\x01\x01\x03\x04\x01\x02\x03\x04", // 𣚗
+ 0x23698: "\x04\x04\x01\x01\x03\x01\x02\x05\x01\x05\x03\x04\x01\x02\x03\x04", // 𣚘
+ 0x23699: "\x01\x02\x03\x04\x03\x02\x01\x05\x01\x05\x03\x04\x01\x05\x03\x04", // 𣚙
+ 0x2369a: "\x01\x02\x03\x04\x05\x01\x03\x03\x02\x05\x01\x02\x05\x02\x01\x04", // 𣚚
+ 0x2369b: "\x01\x02\x03\x04\x02\x01\x05\x03\x01\x05\x02\x02\x05\x02\x01\x01", // 𣚛
+ 0x2369c: "\x01\x02\x03\x04\x01\x02\x01\x02\x03\x05\x05\x04\x04\x05\x04\x04", // 𣚜
+ 0x2369d: "\x01\x02\x03\x04\x01\x02\x01\x01\x02\x05\x04\x01\x03\x05\x03\x04", // 𣚝
+ 0x2369e: "\x01\x02\x03\x04\x04\x03\x01\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 𣚞
+ 0x2369f: "\x01\x02\x03\x04\x05\x03\x04\x05\x03\x04\x02\x01\x02\x01\x02\x01\x02\x01", // 𣚟
+ 0x236a0: "\x01\x02\x03\x04\x02\x02\x04\x03\x01\x04\x03\x02\x05\x02\x03\x04", // 𣚠
+ 0x236a1: "\x01\x02\x03\x04\x03\x01\x01\x01\x02\x01\x01\x01\x01\x02\x03\x04", // 𣚡
+ 0x236a2: "\x01\x02\x03\x04\x01\x02\x05\x01\x02\x01\x05\x04\x04\x05\x04", // 𣚢
+ 0x236a3: "\x01\x02\x03\x04\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 𣚣
+ 0x236a4: "\x02\x05\x01\x01\x02\x05\x01\x01\x02\x03\x04\x03\x03\x03\x05\x04", // 𣚤
+ 0x236a5: "\x01\x02\x03\x04\x01\x02\x01\x02\x01\x05\x04\x03\x05\x04\x01", // 𣚥
+ 0x236a6: "\x01\x02\x03\x04\x05\x01\x05\x02\x05\x01\x02\x05\x01\x02\x01\x04", // 𣚦
+ 0x236a7: "\x02\x05\x01\x01\x05\x03\x03\x01\x01\x02\x05\x02\x01\x02\x03\x04", // 𣚧
+ 0x236a8: "\x01\x02\x02\x01\x01\x02\x03\x04\x01\x02\x02\x01\x01\x02\x03\x04", // 𣚨
+ 0x236a9: "\x03\x05\x01\x03\x02\x05\x01\x01\x02\x02\x05\x01\x01\x02\x03\x04", // 𣚩
+ 0x236aa: "\x01\x02\x03\x04\x04\x01\x03\x02\x03\x04\x01\x01\x02\x01\x02\x01", // 𣚪
+ 0x236ab: "\x01\x02\x03\x04\x04\x04\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 𣚫
+ 0x236ac: "\x01\x02\x03\x04\x05\x05\x04\x04\x04\x04\x01\x02\x01\x02\x05\x01", // 𣚬
+ 0x236ad: "\x01\x02\x03\x04\x01\x02\x01\x02\x03\x05\x04\x03\x01\x02\x03\x04", // 𣚭
+ 0x236ae: "\x01\x02\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x03\x04", // 𣚮
+ 0x236af: "\x01\x02\x01\x04\x05\x01\x02\x05\x01\x02\x03\x04\x03\x05\x05\x04", // 𣚯
+ 0x236b0: "\x01\x02\x03\x04\x04\x03\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01", // 𣚰
+ 0x236b1: "\x04\x03\x01\x03\x02\x05\x01\x05\x04\x02\x05\x01\x01\x02\x03\x04", // 𣚱
+ 0x236b2: "\x01\x02\x03\x04\x04\x01\x03\x03\x02\x01\x05\x01\x01\x03\x04", // 𣚲
+ 0x236b3: "\x01\x02\x03\x04\x04\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𣚳
+ 0x236b4: "\x01\x02\x03\x04\x04\x03\x01\x02\x02\x04\x03\x01\x02\x05\x01\x01", // 𣚴
+ 0x236b5: "\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04\x04\x03\x03\x04", // 𣚵
+ 0x236b6: "\x01\x02\x03\x04\x01\x01\x02\x01\x01\x01\x02\x01\x03\x04\x01\x05", // 𣚶
+ 0x236b7: "\x01\x02\x03\x04\x01\x02\x02\x05\x01\x02\x01\x02\x01\x02\x03\x03", // 𣚷
+ 0x236b8: "\x01\x02\x03\x04\x01\x02\x01\x04\x01\x03\x05\x03\x04\x05\x03\x04", // 𣚸
+ 0x236b9: "\x01\x02\x03\x04\x05\x02\x05\x03\x04\x02\x05\x03\x05\x02\x05\x01", // 𣚹
+ 0x236ba: "\x01\x01\x02\x03\x04\x01\x03\x05\x05\x03\x04\x05\x05\x04\x01\x04", // 𣚺
+ 0x236bb: "\x01\x02\x02\x01\x01\x01\x02\x03\x04\x03\x05\x02\x05\x01\x03\x05", // 𣚻
+ 0x236bc: "\x01\x02\x03\x04\x01\x02\x05\x01\x01\x04\x04\x05\x05\x03\x01\x05", // 𣚼
+ 0x236bd: "\x01\x02\x03\x04\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01", // 𣚽
+ 0x236be: "\x01\x02\x03\x04\x05\x01\x01\x02\x02\x05\x01\x01\x04\x01\x03\x04", // 𣚾
+ 0x236bf: "\x01\x02\x03\x04\x02\x04\x03\x02\x05\x02\x05\x01\x03\x01\x03\x04", // 𣚿
+ 0x236c0: "\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x05\x01\x01\x02\x01\x01", // 𣛀
+ 0x236c1: "\x02\x05\x03\x04\x02\x05\x03\x04\x02\x05\x03\x04\x01\x02\x03\x04", // 𣛁
+ 0x236c2: "\x01\x02\x03\x04\x01\x02\x01\x02\x04\x04\x05\x01\x01\x02\x03\x04", // 𣛂
+ 0x236c3: "\x01\x02\x03\x04\x01\x02\x01\x02\x02\x05\x03\x01\x02\x03\x04\x01", // 𣛃
+ 0x236c4: "\x01\x02\x03\x04\x02\x05\x02\x03\x05\x01\x02\x05\x01\x02\x01\x04", // 𣛄
+ 0x236c5: "\x01\x02\x03\x04\x01\x02\x03\x04\x02\x01\x02\x01\x03\x05\x04\x01", // 𣛅
+ 0x236c6: "\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x01\x02\x01\x01\x02\x04", // 𣛆
+ 0x236c7: "\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02\x03\x04\x01\x02\x05\x01", // 𣛇
+ 0x236c8: "\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x01\x01\x02\x05\x02\x05", // 𣛈
+ 0x236c9: "\x01\x02\x03\x04\x03\x04\x04\x01\x03\x04\x02\x05\x03\x05\x01\x02", // 𣛉
+ 0x236ca: "\x03\x05\x05\x03\x01\x02\x01\x01\x01\x05\x03\x04\x01\x02\x03\x04", // 𣛊
+ 0x236cb: "\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02\x03\x04\x01\x02\x05\x01", // 𣛋
+ 0x236cc: "\x01\x03\x04\x03\x04\x02\x03\x04\x03\x04\x01\x02\x05\x01\x02\x02", // 𣛌
+ 0x236cd: "\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x03\x04\x01\x03\x05\x05", // 𣛍
+ 0x236ce: "\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x04\x05\x04", // 𣛎
+ 0x236cf: "\x01\x02\x03\x04\x03\x01\x05\x05\x04\x01\x04\x01\x05\x05\x04", // 𣛏
+ 0x236d0: "\x01\x02\x03\x04\x03\x01\x01\x02\x05\x03\x05\x05\x04\x02\x03\x04", // 𣛐
+ 0x236d1: "\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x04\x03\x03\x04", // 𣛑
+ 0x236d2: "\x01\x02\x03\x04\x01\x01\x02\x03\x04\x05\x04\x02\x05\x01\x01\x01", // 𣛒
+ 0x236d3: "\x01\x02\x03\x04\x01\x03\x02\x04\x01\x02\x01\x01\x01\x05\x03\x04", // 𣛓
+ 0x236d4: "\x01\x02\x03\x04\x02\x01\x02\x05\x01\x01\x01\x02\x01\x05\x03\x04", // 𣛔
+ 0x236d5: "\x02\x05\x01\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x03\x04", // 𣛕
+ 0x236d6: "\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x01\x02\x01\x03\x01\x05", // 𣛖
+ 0x236d7: "\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x03\x05\x04\x02\x05\x01", // 𣛗
+ 0x236d8: "\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x03\x03\x01\x01\x03\x04", // 𣛘
+ 0x236d9: "\x04\x03\x01\x03\x02\x05\x01\x01\x04\x01\x03\x04\x01\x02\x03\x04", // 𣛙
+ 0x236da: "\x01\x02\x03\x04\x04\x05\x04\x04\x04\x05\x04\x04\x04\x05\x04\x04", // 𣛚
+ 0x236db: "\x01\x02\x03\x04\x05\x01\x01\x01\x02\x01\x02\x05\x01\x02\x01\x01", // 𣛛
+ 0x236dc: "\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02\x03\x04", // 𣛜
+ 0x236dd: "\x01\x02\x03\x04\x03\x03\x02\x03\x03\x01\x02\x02\x05\x01\x01\x01", // 𣛝
+ 0x236de: "\x01\x02\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x03\x04", // 𣛞
+ 0x236df: "\x01\x02\x03\x04\x02\x04\x03\x04\x05\x02\x05\x01\x03\x01\x01\x02", // 𣛟
+ 0x236e0: "\x01\x02\x03\x04\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𣛠
+ 0x236e1: "\x01\x02\x03\x04\x04\x04\x05\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𣛡
+ 0x236e2: "\x01\x02\x03\x04\x05\x01\x03\x03\x01\x01\x05\x02\x05\x01\x01\x01", // 𣛢
+ 0x236e3: "\x01\x02\x03\x04\x05\x01\x01\x02\x02\x05\x01\x01\x01\x01\x03\x02", // 𣛣
+ 0x236e4: "\x02\x05\x01\x01\x01\x02\x03\x04\x01\x03\x04\x03\x04\x02\x03\x04", // 𣛤
+ 0x236e5: "\x01\x02\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x04\x05\x04\x04", // 𣛥
+ 0x236e6: "\x01\x02\x03\x04\x04\x04\x01\x04\x01\x05\x03\x03\x01\x05\x02\x01", // 𣛦
+ 0x236e7: "\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04", // 𣛧
+ 0x236e8: "\x01\x02\x03\x04\x01\x02\x02\x05\x01\x01\x01\x02\x03\x05\x01\x01", // 𣛨
+ 0x236e9: "\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x03\x04\x01\x01\x02\x01", // 𣛩
+ 0x236ea: "\x01\x02\x03\x04\x03\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𣛪
+ 0x236eb: "\x01\x02\x03\x04\x02\x05\x01\x02\x05\x01\x02\x02\x04\x03\x03\x04", // 𣛫
+ 0x236ec: "\x01\x02\x03\x04\x03\x05\x03\x05\x01\x01\x05\x04\x05\x02", // 𣛬
+ 0x236ed: "\x01\x02\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01\x05\x02", // 𣛭
+ 0x236ee: "\x01\x02\x03\x04\x01\x03\x05\x05\x03\x04\x02\x05\x02\x02\x01", // 𣛮
+ 0x236ef: "\x01\x02\x03\x04\x04\x04\x01\x03\x05\x03\x04\x02\x05\x02\x02\x01", // 𣛯
+ 0x236f0: "\x01\x02\x03\x04\x01\x02\x01\x02\x01\x02\x01\x03\x02\x05\x01\x01", // 𣛰
+ 0x236f1: "\x01\x02\x03\x04\x04\x04\x05\x03\x05\x03\x05\x03\x02\x01\x05\x01\x01", // 𣛱
+ 0x236f2: "\x01\x02\x03\x04\x01\x04\x05\x02\x04\x01\x03\x04\x03\x04\x03\x01\x02", // 𣛲
+ 0x236f3: "\x01\x02\x01\x02\x03\x05\x02\x05\x01\x01\x05\x01\x05\x01\x02\x03\x04", // 𣛳
+ 0x236f4: "\x01\x02\x03\x04\x01\x03\x01\x02\x05\x01\x05\x03\x04\x04\x05\x04\x04", // 𣛴
+ 0x236f5: "\x01\x02\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01\x05\x03\x02\x05\x04", // 𣛵
+ 0x236f6: "\x01\x02\x03\x04\x03\x05\x05\x01\x01\x03\x01\x03\x04\x04\x04\x04\x04", // 𣛶
+ 0x236f7: "\x01\x02\x03\x04\x01\x05\x03\x04\x01\x05\x03\x04\x02\x05\x02\x02\x01", // 𣛷
+ 0x236f8: "\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x04\x01\x01\x03\x05\x03\x04", // 𣛸
+ 0x236f9: "\x01\x02\x03\x04\x02\x05\x02\x01\x03\x02\x05\x02\x02\x04\x05\x04", // 𣛹
+ 0x236fa: "\x01\x02\x03\x04\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x05\x02", // 𣛺
+ 0x236fb: "\x01\x02\x03\x04\x03\x02\x01\x05\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 𣛻
+ 0x236fc: "\x01\x02\x03\x04\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x04\x03\x01", // 𣛼
+ 0x236fd: "\x01\x02\x03\x04\x03\x01\x02\x03\x04\x01\x02\x01\x05\x05\x01\x02\x01", // 𣛽
+ 0x236fe: "\x01\x02\x03\x04\x05\x04\x05\x02\x01\x02\x03\x04\x03\x05\x05\x04", // 𣛾
+ 0x236ff: "\x01\x02\x03\x04\x05\x04\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𣛿
+ 0x23700: "\x01\x02\x03\x04\x03\x01\x03\x04\x02\x01\x03\x04\x01\x05\x05\x03\x04", // 𣜀
+ 0x23701: "\x01\x02\x03\x04\x02\x01\x02\x01\x01\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 𣜁
+ 0x23702: "\x01\x02\x03\x04\x01\x01\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𣜂
+ 0x23703: "\x01\x02\x03\x04\x04\x03\x01\x02\x05\x03\x05\x01\x01\x04\x04\x04\x04", // 𣜃
+ 0x23704: "\x04\x01\x05\x02\x05\x01\x03\x05\x04\x01\x01\x02\x03\x04\x03\x05\x04", // 𣜄
+ 0x23705: "\x02\x05\x02\x01\x03\x02\x05\x02\x02\x04\x05\x04\x01\x02\x03\x04", // 𣜅
+ 0x23706: "\x01\x02\x03\x04\x04\x03\x01\x01\x02\x01\x04\x01\x01\x01\x02\x05\x01", // 𣜆
+ 0x23707: "\x01\x02\x03\x04\x01\x02\x05\x02\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𣜇
+ 0x23708: "\x03\x04\x01\x01\x02\x05\x04\x01\x02\x03\x04\x05\x04\x01\x02\x03\x04", // 𣜈
+ 0x23709: "\x01\x02\x03\x04\x01\x02\x02\x01\x01\x04\x05\x01\x05\x04\x01\x02\x01", // 𣜉
+ 0x2370a: "\x01\x02\x03\x04\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01\x02", // 𣜊
+ 0x2370b: "\x01\x02\x05\x01\x02\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𣜋
+ 0x2370c: "\x01\x02\x03\x04\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05", // 𣜌
+ 0x2370d: "\x02\x05\x01\x01\x05\x02\x01\x05\x03\x01\x05\x03\x05\x01\x02\x03\x04", // 𣜍
+ 0x2370e: "\x01\x02\x03\x04\x01\x02\x01\x02\x02\x04\x03\x03\x05\x04\x01\x02\x02", // 𣜎
+ 0x2370f: "\x01\x02\x03\x04\x04\x04\x05\x04\x05\x04\x03\x04\x02\x05\x02\x01\x01", // 𣜏
+ 0x23710: "\x01\x02\x03\x04\x04\x01\x04\x03\x01\x03\x05\x04\x01\x01\x03\x05\x04", // 𣜐
+ 0x23711: "\x01\x02\x03\x04\x04\x03\x01\x05\x05\x04\x05\x05\x04\x04\x04\x04\x04", // 𣜑
+ 0x23712: "\x01\x02\x03\x04\x04\x03\x01\x01\x02\x01\x02\x02\x01\x01\x01\x05\x04", // 𣜒
+ 0x23713: "\x01\x02\x03\x04\x05\x04\x05\x02\x03\x01\x02\x03\x04\x03\x04\x01\x05", // 𣜓
+ 0x23714: "\x01\x02\x03\x04\x05\x01\x01\x03\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𣜔
+ 0x23715: "\x01\x02\x03\x04\x01\x02\x03\x04\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 𣜕
+ 0x23716: "\x01\x02\x03\x04\x05\x04\x05\x04\x05\x04\x04\x05\x02\x05\x01\x01\x01", // 𣜖
+ 0x23717: "\x01\x02\x03\x04\x05\x04\x05\x04\x05\x04\x03\x01\x02\x03\x04\x05\x03", // 𣜗
+ 0x23718: "\x01\x02\x03\x04\x05\x01\x01\x03\x02\x05\x01\x04\x03\x01\x01\x01\x02", // 𣜘
+ 0x23719: "\x01\x02\x03\x04\x01\x02\x05\x03\x05\x01\x01\x04\x03\x04\x02\x04\x02", // 𣜙
+ 0x2371a: "\x01\x02\x03\x04\x01\x01\x01\x03\x04\x02\x05\x01\x01\x04\x05\x04\x04", // 𣜚
+ 0x2371b: "\x01\x02\x03\x04\x02\x05\x01\x01\x02\x05\x02\x01\x04\x04\x05\x04", // 𣜛
+ 0x2371c: "\x01\x02\x03\x04\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𣜜
+ 0x2371d: "\x01\x02\x03\x04\x05\x01\x01\x02\x02\x05\x01\x01\x01\x01\x02\x01\x04", // 𣜝
+ 0x2371e: "\x01\x02\x03\x04\x03\x05\x04\x01\x02\x03\x04\x03\x05\x04\x02\x05\x01", // 𣜞
+ 0x2371f: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x01\x02\x03\x04", // 𣜟
+ 0x23720: "\x01\x02\x03\x04\x01\x02\x05\x01\x02\x05\x05\x01\x05\x04\x04\x04\x04", // 𣜠
+ 0x23721: "\x01\x02\x03\x04\x01\x03\x05\x03\x03\x03\x04\x02\x05\x01\x02\x01\x04", // 𣜡
+ 0x23722: "\x02\x05\x01\x01\x01\x02\x03\x04\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𣜢
+ 0x23723: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x04\x05\x03\x05", // 𣜣
+ 0x23724: "\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x04\x04\x01\x02\x03\x04\x03", // 𣜤
+ 0x23725: "\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x03\x04\x01\x02\x03\x04", // 𣜥
+ 0x23726: "\x04\x03\x01\x03\x02\x05\x01\x01\x01\x04\x05\x04\x01\x02\x03\x04", // 𣜦
+ 0x23727: "\x01\x02\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x05\x03\x04", // 𣜧
+ 0x23728: "\x05\x04\x02\x05\x01\x01\x02\x03\x04\x04\x03\x01\x01\x03\x04\x05\x05", // 𣜨
+ 0x23729: "\x01\x02\x03\x04\x01\x01\x02\x03\x04\x05\x04\x04\x03\x01\x02\x03\x04", // 𣜩
+ 0x2372a: "\x01\x02\x03\x04\x01\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x03\x04", // 𣜪
+ 0x2372b: "\x03\x01\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02\x03\x04", // 𣜫
+ 0x2372c: "\x01\x02\x03\x04\x03\x04\x04\x03\x04\x05\x04\x05\x04\x04\x03\x05\x04", // 𣜬
+ 0x2372d: "\x01\x02\x03\x04\x04\x05\x01\x02\x05\x01\x01\x02\x02\x04\x04\x04\x04", // 𣜭
+ 0x2372e: "\x01\x02\x03\x04\x04\x04\x01\x03\x02\x05\x01\x01\x01\x02\x03\x04\x03", // 𣜮
+ 0x2372f: "\x01\x02\x03\x04\x01\x02\x01\x02\x04\x04\x05\x01\x02\x05\x01\x01\x01", // 𣜯
+ 0x23730: "\x01\x02\x03\x04\x04\x01\x03\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 𣜰
+ 0x23731: "\x03\x01\x01\x02\x03\x04\x02\x05\x02\x03\x04\x01\x02\x05\x01\x02\x02", // 𣜱
+ 0x23732: "\x01\x02\x03\x04\x03\x03\x01\x02\x02\x05\x01\x01\x01\x04\x05\x04", // 𣜲
+ 0x23733: "\x01\x02\x03\x04\x01\x02\x02\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𣜳
+ 0x23734: "\x01\x02\x03\x04\x03\x04\x01\x02\x05\x01\x01\x02\x02\x04\x05\x04\x04", // 𣜴
+ 0x23735: "\x01\x02\x03\x04\x02\x05\x01\x01\x05\x02\x01\x05\x03\x01\x05\x03\x05", // 𣜵
+ 0x23736: "\x01\x02\x03\x04\x02\x05\x01\x01\x03\x05\x03\x04\x05\x04\x05\x04", // 𣜶
+ 0x23737: "\x01\x02\x03\x04\x03\x01\x02\x03\x04\x04\x03\x03\x04\x04\x05\x04\x04", // 𣜷
+ 0x23738: "\x01\x02\x03\x04\x02\x05\x01\x01\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 𣜸
+ 0x23739: "\x05\x04\x05\x04\x05\x04\x01\x02\x03\x04\x04\x03\x05\x01\x05\x02\x03", // 𣜹
+ 0x2373a: "\x01\x02\x03\x04\x01\x02\x03\x04\x04\x05\x05\x01\x03\x05\x02\x01\x05", // 𣜺
+ 0x2373b: "\x01\x04\x03\x01\x02\x03\x04\x01\x03\x01\x01\x05\x03\x04\x01\x02\x04", // 𣜻
+ 0x2373c: "\x01\x02\x03\x04\x05\x05\x03\x04\x05\x01\x01\x05\x04\x05\x02", // 𣜼
+ 0x2373d: "\x05\x04\x05\x04\x05\x04\x01\x02\x03\x04\x01\x03\x05\x03\x04", // 𣜽
+ 0x2373e: "\x01\x01\x02\x03\x04\x04\x04\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 𣜾
+ 0x2373f: "\x01\x02\x03\x04\x01\x02\x01\x02\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 𣜿
+ 0x23740: "\x01\x02\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01\x05\x03", // 𣝀
+ 0x23741: "\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x03\x02\x05\x01\x01\x03\x01\x02", // 𣝁
+ 0x23742: "\x01\x02\x03\x04\x01\x01\x05\x04\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𣝂
+ 0x23743: "\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x04\x04\x05\x03\x05\x01\x02\x01", // 𣝃
+ 0x23744: "\x01\x02\x03\x04\x01\x02\x05\x01\x02\x04\x05\x02\x01\x05\x05\x01\x02\x01", // 𣝄
+ 0x23745: "\x01\x02\x03\x04\x01\x05\x03\x01\x01\x03\x04\x05\x04\x05\x02\x01\x03\x04", // 𣝅
+ 0x23746: "\x01\x05\x03\x01\x01\x03\x04\x05\x04\x05\x02\x01\x03\x04\x01\x02\x03\x04", // 𣝆
+ 0x23747: "\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 𣝇
+ 0x23748: "\x01\x02\x03\x04\x01\x02\x01\x02\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 𣝈
+ 0x23749: "\x01\x02\x03\x04\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x01\x02\x04", // 𣝉
+ 0x2374a: "\x01\x02\x03\x04\x03\x05\x02\x05\x01\x03\x05\x03\x05\x02\x05\x01\x03\x05", // 𣝊
+ 0x2374b: "\x01\x02\x03\x04\x02\x05\x02\x02\x01\x02\x03\x03\x04\x04\x04\x05\x04", // 𣝋
+ 0x2374c: "\x01\x02\x03\x04\x01\x02\x05\x01\x02\x05\x05\x04\x05\x05\x04\x02\x03\x04", // 𣝌
+ 0x2374d: "\x01\x02\x03\x04\x01\x02\x01\x02\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 𣝍
+ 0x2374e: "\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x04\x03\x03\x04\x04\x03\x03\x04", // 𣝎
+ 0x2374f: "\x01\x02\x03\x04\x01\x02\x01\x02\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 𣝏
+ 0x23750: "\x01\x02\x05\x01\x02\x04\x05\x03\x02\x01\x05\x01\x01\x01\x02\x03\x04", // 𣝐
+ 0x23751: "\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04\x01\x02\x03\x04", // 𣝑
+ 0x23752: "\x01\x02\x03\x04\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01\x01\x02\x03\x04", // 𣝒
+ 0x23753: "\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x03\x05\x04\x01\x01\x03\x04\x04", // 𣝓
+ 0x23754: "\x01\x02\x03\x04\x01\x02\x01\x04\x05\x01\x03\x02\x05\x01\x01\x02\x03\x04", // 𣝔
+ 0x23755: "\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x01\x05\x03\x04\x01\x05\x03\x04", // 𣝕
+ 0x23756: "\x03\x05\x05\x02\x01\x02\x05\x01\x01\x01\x02\x01\x03\x04\x01\x01\x02\x03\x04", // 𣝖
+ 0x23757: "\x01\x02\x03\x04\x03\x05\x04\x01\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01", // 𣝗
+ 0x23758: "\x01\x02\x03\x04\x01\x02\x01\x02\x03\x05\x04\x01\x05\x02\x04\x05\x04", // 𣝘
+ 0x23759: "\x01\x02\x03\x04\x02\x05\x02\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𣝙
+ 0x2375a: "\x01\x03\x02\x05\x02\x02\x01\x03\x04\x01\x05\x05\x04\x01\x02\x03\x04", // 𣝚
+ 0x2375b: "\x01\x02\x03\x04\x02\x01\x05\x03\x01\x05\x02\x02\x05\x02\x01\x01\x03\x04", // 𣝛
+ 0x2375c: "\x05\x04\x02\x05\x01\x01\x02\x03\x04\x03\x05\x01\x03\x02\x05\x01\x02\x02", // 𣝜
+ 0x2375d: "\x01\x02\x01\x04\x05\x03\x05\x03\x05\x05\x04\x01\x02\x05\x01\x02\x03\x04", // 𣝝
+ 0x2375e: "\x01\x02\x05\x01\x02\x03\x04\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 𣝞
+ 0x2375f: "\x03\x01\x02\x03\x04\x03\x05\x05\x01\x01\x04\x05\x04\x04\x01\x02\x03\x04", // 𣝟
+ 0x23760: "\x01\x02\x03\x04\x04\x01\x01\x01\x01\x02\x05\x03\x05\x05\x04\x02\x03\x04", // 𣝠
+ 0x23761: "\x01\x02\x03\x04\x04\x03\x01\x01\x01\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 𣝡
+ 0x23762: "\x01\x02\x03\x04\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x01\x03\x04", // 𣝢
+ 0x23763: "\x01\x02\x03\x04\x02\x05\x02\x02\x01\x05\x01\x01\x02\x01\x01\x01\x02\x04", // 𣝣
+ 0x23764: "\x01\x02\x03\x04\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x04\x05\x04", // 𣝤
+ 0x23765: "\x01\x02\x03\x04\x05\x04\x05\x02\x03\x01\x02\x03\x04\x03\x05\x02\x01\x04", // 𣝥
+ 0x23766: "\x01\x02\x03\x04\x05\x04\x01\x05\x04\x01\x04\x01\x03\x04\x03\x04\x01\x02", // 𣝦
+ 0x23767: "\x01\x02\x03\x04\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𣝧
+ 0x23768: "\x04\x04\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x01\x02\x03\x04", // 𣝨
+ 0x23769: "\x01\x02\x03\x04\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x01\x02\x03\x04", // 𣝩
+ 0x2376a: "\x01\x02\x03\x04\x01\x02\x03\x04\x04\x05\x05\x01\x01\x05\x04\x01\x02\x04", // 𣝪
+ 0x2376b: "\x01\x02\x03\x04\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03\x04", // 𣝫
+ 0x2376c: "\x01\x02\x03\x04\x01\x02\x05\x01\x02\x03\x04\x01\x02\x05\x01\x02\x03\x04", // 𣝬
+ 0x2376d: "\x01\x02\x05\x02\x02\x01\x01\x02\x03\x04\x02\x05\x03\x04\x02\x05\x01\x01", // 𣝭
+ 0x2376e: "\x01\x02\x05\x01\x02\x03\x04\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04", // 𣝮
+ 0x2376f: "\x01\x02\x05\x02\x03\x04\x01\x02\x05\x02\x03\x04\x01\x02\x05\x02\x03\x04", // 𣝯
+ 0x23770: "\x01\x02\x03\x04\x01\x02\x01\x02\x03\x01\x01\x02\x05\x02\x05\x04\x05\x02", // 𣝰
+ 0x23771: "\x01\x02\x03\x04\x02\x01\x02\x01\x02\x05\x02\x02\x01\x01\x03\x05\x03\x04", // 𣝱
+ 0x23772: "\x01\x02\x03\x04\x03\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𣝲
+ 0x23773: "\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x02\x05\x03\x04\x01\x05\x01\x05", // 𣝳
+ 0x23774: "\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x03\x04\x01\x03\x04\x01\x01\x02", // 𣝴
+ 0x23775: "\x01\x02\x03\x04\x05\x05\x04\x04\x04\x04\x05\x05\x01\x02\x04\x01\x03\x04", // 𣝵
+ 0x23776: "\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x01\x03\x02", // 𣝶
+ 0x23777: "\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04\x01\x02\x03\x04", // 𣝷
+ 0x23778: "\x01\x02\x03\x04\x01\x02\x01\x02\x04\x01\x03\x01\x02\x02\x01\x02\x05\x02", // 𣝸
+ 0x23779: "\x01\x02\x03\x04\x01\x02\x03\x04\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𣝹
+ 0x2377a: "\x01\x02\x03\x04\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x03\x04", // 𣝺
+ 0x2377b: "\x01\x02\x03\x04\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 𣝻
+ 0x2377c: "\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x04\x05\x03\x05\x02\x05\x02\x05", // 𣝼
+ 0x2377d: "\x01\x02\x03\x04\x01\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04\x05", // 𣝽
+ 0x2377e: "\x01\x02\x03\x04\x01\x02\x01\x02\x01\x01\x01\x03\x04\x03\x01\x02\x03\x04", // 𣝾
+ 0x2377f: "\x01\x02\x03\x04\x01\x03\x04\x03\x04\x02\x03\x04\x01\x02\x05\x05\x01\x05", // 𣝿
+ 0x23780: "\x01\x02\x03\x04\x01\x03\x02\x05\x02\x02\x01\x01\x01\x02\x05\x01\x01\x01", // 𣞀
+ 0x23781: "\x01\x02\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x01\x02\x03\x04", // 𣞁
+ 0x23782: "\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x05\x01\x01\x04\x05\x02\x05\x02", // 𣞂
+ 0x23783: "\x02\x05\x01\x01\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 𣞃
+ 0x23784: "\x01\x01\x02\x03\x04\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𣞄
+ 0x23785: "\x02\x05\x01\x01\x01\x02\x03\x04\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04", // 𣞅
+ 0x23786: "\x05\x02\x03\x05\x02\x03\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04", // 𣞆
+ 0x23787: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 𣞇
+ 0x23788: "\x01\x02\x05\x01\x02\x02\x05\x03\x01\x01\x02\x05\x02\x01\x01\x02\x03\x04", // 𣞈
+ 0x23789: "\x01\x02\x05\x01\x02\x04\x05\x03\x01\x01\x02\x05\x02\x01\x01\x02\x03\x04", // 𣞉
+ 0x2378a: "\x03\x01\x01\x02\x03\x04\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x02\x04", // 𣞊
+ 0x2378b: "\x01\x02\x03\x04\x01\x03\x04\x03\x04\x02\x03\x04\x02\x05\x02\x05\x01\x01", // 𣞋
+ 0x2378c: "\x01\x02\x03\x04\x03\x02\x05\x01\x01\x04\x05\x01\x03\x04\x04\x01\x05\x03", // 𣞌
+ 0x2378d: "\x01\x02\x03\x04\x02\x05\x02\x02\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 𣞍
+ 0x2378e: "\x01\x02\x03\x04\x01\x02\x02\x02\x02\x03\x01\x04\x02\x05\x02\x02\x01", // 𣞎
+ 0x2378f: "\x02\x05\x02\x02\x05\x02\x02\x05\x02\x01\x03\x02\x05\x01\x01\x02\x03\x04", // 𣞏
+ 0x23790: "\x01\x02\x03\x04\x04\x04\x05\x03\x02\x01\x05\x01\x01\x03\x05\x04\x04\x04\x04", // 𣞐
+ 0x23791: "\x01\x02\x03\x04\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x01\x05\x05\x04", // 𣞑
+ 0x23792: "\x01\x02\x03\x04\x01\x02\x05\x01\x01\x02\x04\x04\x01\x05\x03\x03\x01\x03\x04", // 𣞒
+ 0x23793: "\x01\x02\x03\x04\x01\x02\x01\x02\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05", // 𣞓
+ 0x23794: "\x01\x02\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x05\x03\x04", // 𣞔
+ 0x23795: "\x01\x02\x03\x04\x01\x02\x01\x02\x01\x02\x01\x03\x05\x01\x02\x01\x03\x05\x04", // 𣞕
+ 0x23796: "\x01\x02\x03\x04\x01\x02\x03\x04\x02\x05\x04\x03\x03\x04\x04\x03\x03\x04\x01", // 𣞖
+ 0x23797: "\x01\x02\x03\x04\x03\x05\x04\x05\x03\x03\x04\x01\x01\x02\x04\x03\x01\x02\x02", // 𣞗
+ 0x23798: "\x01\x02\x03\x04\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x05", // 𣞘
+ 0x23799: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x05\x04\x05\x04\x05\x04\x01\x02\x03\x04", // 𣞙
+ 0x2379a: "\x01\x02\x03\x04\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x03\x01\x02\x01", // 𣞚
+ 0x2379b: "\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x01\x03\x04\x05\x02\x03\x05\x03\x05\x04", // 𣞛
+ 0x2379c: "\x01\x02\x03\x04\x01\x01\x01\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x01\x02", // 𣞜
+ 0x2379d: "\x01\x02\x03\x04\x01\x01\x01\x03\x04\x03\x02\x01\x05\x01\x01\x04\x05\x04\x04", // 𣞝
+ 0x2379e: "\x01\x02\x03\x04\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x02\x05\x02\x05\x04", // 𣞞
+ 0x2379f: "\x05\x04\x02\x05\x01\x01\x02\x03\x04\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 𣞟
+ 0x237a0: "\x01\x02\x03\x04\x03\x04\x04\x03\x05\x03\x03\x03\x02\x01\x05\x01\x01\x03\x05", // 𣞠
+ 0x237a1: "\x01\x02\x03\x04\x03\x03\x05\x04\x01\x04\x03\x04\x05\x02\x03\x04\x03\x05\x04", // 𣞡
+ 0x237a2: "\x01\x02\x03\x04\x01\x02\x01\x02\x01\x03\x01\x02\x02\x01\x04\x04\x04\x04", // 𣞢
+ 0x237a3: "\x03\x01\x01\x02\x02\x02\x02\x01\x01\x02\x03\x04\x04\x01\x05\x01\x02\x03\x04", // 𣞣
+ 0x237a4: "\x01\x01\x02\x02\x01\x01\x02\x02\x01\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04", // 𣞤
+ 0x237a5: "\x01\x02\x03\x04\x01\x01\x02\x03\x04\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𣞥
+ 0x237a6: "\x01\x02\x03\x04\x01\x02\x01\x02\x01\x04\x05\x02\x02\x02\x02\x05\x01\x02\x01", // 𣞦
+ 0x237a7: "\x01\x02\x03\x04\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x02\x05\x03\x04", // 𣞧
+ 0x237a8: "\x01\x02\x03\x04\x01\x02\x01\x02\x05\x01\x03\x01\x01\x02\x03\x04\x01\x02\x04", // 𣞨
+ 0x237a9: "\x01\x02\x03\x04\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01", // 𣞩
+ 0x237aa: "\x01\x02\x03\x04\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x01", // 𣞪
+ 0x237ab: "\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 𣞫
+ 0x237ac: "\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x01\x02\x05\x03\x04\x04\x05\x04", // 𣞬
+ 0x237ad: "\x01\x02\x03\x04\x03\x05\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x05\x04", // 𣞭
+ 0x237ae: "\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x04\x01\x02\x05\x02\x04\x05\x04", // 𣞮
+ 0x237af: "\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𣞯
+ 0x237b0: "\x01\x02\x05\x04\x03\x01\x02\x03\x04\x05\x04\x05\x04\x05\x04\x01\x02\x03\x04", // 𣞰
+ 0x237b1: "\x01\x02\x03\x04\x01\x03\x04\x03\x04\x02\x03\x04\x01\x02\x05\x02\x05\x01\x01", // 𣞱
+ 0x237b2: "\x01\x02\x03\x04\x02\x05\x02\x02\x01\x01\x02\x01\x02\x05\x01\x03\x05\x03\x04", // 𣞲
+ 0x237b3: "\x01\x02\x03\x04\x03\x01\x02\x01\x02\x05\x01\x02\x01\x01\x01\x02\x01\x01\x01", // 𣞳
+ 0x237b4: "\x03\x01\x02\x03\x04\x02\x02\x01\x02\x03\x04\x05\x01\x03\x01\x02\x02\x05\x01", // 𣞴
+ 0x237b5: "\x05\x04\x05\x04\x05\x04\x01\x02\x03\x04\x01\x02\x02\x01\x01\x01\x03\x05\x05", // 𣞵
+ 0x237b6: "\x01\x02\x03\x04\x01\x01\x03\x04\x01\x01\x03\x04\x01\x02\x05\x01\x01\x01\x02", // 𣞶
+ 0x237b7: "\x01\x02\x03\x04\x01\x02\x01\x02\x03\x02\x05\x03\x03\x04\x01\x04\x05\x04\x04", // 𣞷
+ 0x237b8: "\x01\x02\x03\x04\x01\x02\x02\x05\x01\x02\x05\x01\x01\x02\x05\x02\x05\x01\x01", // 𣞸
+ 0x237b9: "\x01\x02\x03\x04\x02\x05\x01\x01\x01\x01\x03\x04\x01\x02\x05\x01\x01\x01\x02", // 𣞹
+ 0x237ba: "\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x02\x01\x03\x04\x02\x04\x01\x03\x04", // 𣞺
+ 0x237bb: "\x01\x02\x03\x04\x02\x05\x02\x02\x01\x05\x04\x03\x05\x04\x01\x01\x05\x01\x05", // 𣞻
+ 0x237bc: "\x01\x02\x03\x04\x04\x03\x01\x01\x02\x01\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𣞼
+ 0x237bd: "\x01\x02\x03\x04\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01\x05\x02", // 𣞽
+ 0x237be: "\x01\x02\x03\x04\x01\x02\x02\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 𣞾
+ 0x237bf: "\x01\x02\x03\x04\x03\x05\x04\x03\x01\x01\x02\x05\x02\x05\x05\x04\x02\x03\x04", // 𣞿
+ 0x237c0: "\x01\x02\x03\x04\x01\x02\x02\x03\x05\x04\x01\x01\x01\x02\x04\x05\x04", // 𣟀
+ 0x237c1: "\x01\x02\x03\x04\x05\x02\x01\x03\x01\x02\x01\x02\x05\x01\x01\x01\x02\x01", // 𣟁
+ 0x237c2: "\x01\x02\x03\x04\x04\x04\x05\x02\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 𣟂
+ 0x237c3: "\x01\x02\x03\x04\x01\x02\x02\x02\x05\x02\x02\x01\x04\x05\x01\x03\x05\x04", // 𣟃
+ 0x237c4: "\x01\x02\x03\x04\x01\x02\x05\x01\x02\x04\x05\x01\x03\x02\x05\x01\x01\x02\x03\x04", // 𣟄
+ 0x237c5: "\x01\x02\x03\x04\x04\x01\x05\x02\x05\x01\x05\x03\x01\x03\x05\x01\x01\x03\x05\x04", // 𣟅
+ 0x237c6: "\x01\x02\x03\x04\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04\x04\x05\x04", // 𣟆
+ 0x237c7: "\x01\x02\x03\x04\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03\x02\x05\x02\x02\x01", // 𣟇
+ 0x237c8: "\x01\x02\x03\x04\x01\x02\x03\x04\x01\x03\x04\x03\x03\x04\x04\x03\x03\x04\x02\x02", // 𣟈
+ 0x237c9: "\x03\x03\x02\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x01\x02\x01\x02\x03\x04", // 𣟉
+ 0x237ca: "\x01\x02\x03\x04\x04\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05\x03\x04", // 𣟊
+ 0x237cb: "\x01\x02\x03\x04\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x04\x01\x03\x05\x03\x04", // 𣟋
+ 0x237cc: "\x01\x02\x03\x04\x01\x02\x01\x01\x01\x02\x03\x04\x05\x01\x01\x02\x04\x01\x03\x04", // 𣟌
+ 0x237cd: "\x01\x02\x03\x04\x01\x02\x01\x01\x01\x02\x03\x04\x05\x04\x04\x03\x01\x02\x03\x04", // 𣟍
+ 0x237ce: "\x01\x02\x03\x04\x04\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x05\x03\x04", // 𣟎
+ 0x237cf: "\x01\x02\x05\x01\x02\x04\x05\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 𣟏
+ 0x237d0: "\x01\x02\x03\x04\x04\x01\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𣟐
+ 0x237d1: "\x01\x02\x03\x04\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01\x01\x02\x04", // 𣟑
+ 0x237d2: "\x01\x01\x02\x02\x01\x01\x02\x02\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04", // 𣟒
+ 0x237d3: "\x01\x02\x03\x04\x03\x05\x01\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𣟓
+ 0x237d4: "\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 𣟔
+ 0x237d5: "\x01\x02\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04\x01\x02\x03\x04", // 𣟕
+ 0x237d6: "\x01\x02\x03\x04\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x01\x03\x02\x05\x01", // 𣟖
+ 0x237d7: "\x01\x02\x03\x04\x05\x05\x01\x04\x03\x01\x02\x03\x04\x03\x05\x05\x03\x01\x03\x02", // 𣟗
+ 0x237d8: "\x01\x02\x02\x05\x01\x02\x05\x01\x04\x05\x03\x01\x01\x02\x05\x02\x01\x02\x03\x04", // 𣟘
+ 0x237d9: "\x01\x02\x03\x04\x05\x01\x05\x05\x01\x05\x01\x02\x02\x01\x03\x04\x04\x05\x04", // 𣟙
+ 0x237da: "\x01\x02\x03\x04\x04\x01\x04\x03\x01\x03\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 𣟚
+ 0x237db: "\x01\x02\x03\x04\x01\x02\x02\x01\x02\x05\x01\x02\x01\x01\x01\x05\x04\x04\x04\x04", // 𣟛
+ 0x237dc: "\x01\x02\x03\x04\x01\x02\x03\x04\x04\x01\x03\x04\x05\x01\x01\x05\x04\x01\x02\x04", // 𣟜
+ 0x237dd: "\x01\x02\x03\x04\x02\x01\x02\x01\x02\x05\x02\x02\x01\x03\x01\x02\x01\x05\x03\x04", // 𣟝
+ 0x237de: "\x01\x02\x03\x04\x01\x02\x01\x02\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x01", // 𣟞
+ 0x237df: "\x01\x02\x03\x04\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01", // 𣟟
+ 0x237e0: "\x01\x02\x03\x04\x02\x05\x01\x01\x01\x05\x02\x03\x04\x03\x05\x05\x04\x02\x03\x04", // 𣟠
+ 0x237e1: "\x01\x02\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x05\x01\x01\x02\x05\x02", // 𣟡
+ 0x237e2: "\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x01\x03\x01\x01\x01\x02\x01\x01\x01\x05", // 𣟢
+ 0x237e3: "\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x03\x05\x04\x01\x05\x04\x01\x01\x01\x02", // 𣟣
+ 0x237e4: "\x01\x02\x03\x04\x03\x05\x03\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𣟤
+ 0x237e5: "\x01\x02\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01\x02\x05\x01\x02\x04\x05\x04\x04", // 𣟥
+ 0x237e6: "\x01\x02\x02\x01\x01\x02\x02\x01\x01\x02\x04\x01\x05\x04\x01\x02\x03\x04", // 𣟦
+ 0x237e7: "\x01\x02\x03\x04\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x04\x04\x05\x04", // 𣟧
+ 0x237e8: "\x01\x02\x03\x04\x03\x02\x01\x01\x05\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𣟨
+ 0x237e9: "\x01\x02\x03\x04\x03\x01\x02\x03\x04\x03\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𣟩
+ 0x237ea: "\x01\x02\x03\x04\x01\x01\x01\x02\x03\x04\x01\x05\x01\x01\x05\x03\x04\x01\x02\x04", // 𣟪
+ 0x237eb: "\x01\x02\x03\x04\x01\x02\x02\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x01\x01", // 𣟫
+ 0x237ec: "\x01\x02\x03\x04\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x05\x01\x01\x02\x03\x04", // 𣟬
+ 0x237ed: "\x01\x02\x03\x04\x02\x05\x01\x02\x05\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𣟭
+ 0x237ee: "\x05\x04\x05\x02\x03\x01\x02\x03\x04\x03\x02\x05\x03\x04\x01\x03\x04\x03\x05\x04", // 𣟮
+ 0x237ef: "\x01\x02\x03\x04\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 𣟯
+ 0x237f0: "\x03\x02\x01\x01\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x04\x01\x02\x03\x04", // 𣟰
+ 0x237f1: "\x01\x02\x03\x04\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04\x01\x01\x01\x02", // 𣟱
+ 0x237f2: "\x01\x02\x03\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x01\x01\x01\x02", // 𣟲
+ 0x237f3: "\x01\x02\x03\x04\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04\x04\x05\x05\x04", // 𣟳
+ 0x237f4: "\x01\x02\x03\x04\x03\x05\x01\x03\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 𣟴
+ 0x237f5: "\x01\x02\x03\x04\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x04\x03\x01\x01\x05\x03\x04", // 𣟵
+ 0x237f6: "\x01\x02\x01\x02\x03\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02\x03\x04", // 𣟶
+ 0x237f7: "\x01\x02\x03\x04\x02\x01\x02\x02\x05\x03\x04\x03\x04\x03\x04\x03\x04\x03\x01\x03\x04", // 𣟷
+ 0x237f8: "\x01\x02\x03\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x04\x03\x01\x02\x03\x04", // 𣟸
+ 0x237f9: "\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 𣟹
+ 0x237fa: "\x01\x02\x03\x04\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x03\x01\x03\x04", // 𣟺
+ 0x237fb: "\x01\x02\x03\x04\x04\x01\x04\x03\x04\x05\x02\x05\x01\x02\x05\x01\x02\x04\x05\x04\x04", // 𣟻
+ 0x237fc: "\x05\x04\x02\x05\x01\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 𣟼
+ 0x237fd: "\x05\x04\x02\x05\x01\x01\x02\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x05\x03", // 𣟽
+ 0x237fe: "\x03\x05\x04\x04\x03\x01\x01\x02\x05\x02\x03\x05\x05\x04\x02\x03\x04\x01\x02\x03\x04", // 𣟾
+ 0x237ff: "\x01\x02\x03\x04\x01\x02\x02\x03\x02\x05\x01\x01\x04\x01\x03\x04\x01\x02\x03\x04", // 𣟿
+ 0x23800: "\x01\x02\x05\x01\x02\x04\x05\x03\x05\x04\x03\x03\x04\x02\x05\x01\x01\x01\x02\x03\x04", // 𣠀
+ 0x23801: "\x01\x02\x05\x02\x02\x01\x01\x02\x03\x04\x04\x01\x03\x04\x01\x03\x03\x01\x01\x02\x01", // 𣠁
+ 0x23802: "\x01\x02\x03\x04\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 𣠂
+ 0x23803: "\x01\x02\x03\x04\x01\x02\x01\x02\x05\x01\x04\x03\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 𣠃
+ 0x23804: "\x01\x02\x03\x04\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 𣠄
+ 0x23805: "\x01\x02\x03\x04\x01\x02\x01\x02\x04\x01\x01\x02\x05\x01\x02\x05\x02\x05\x02\x02\x01", // 𣠅
+ 0x23806: "\x01\x02\x05\x01\x02\x03\x04\x01\x02\x05\x01\x02\x03\x04\x01\x02\x05\x01\x02\x03\x04", // 𣠆
+ 0x23807: "\x01\x02\x03\x04\x01\x02\x01\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 𣠇
+ 0x23808: "\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x03\x04\x04\x05\x02\x05\x01\x01\x01\x02\x04", // 𣠈
+ 0x23809: "\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x02\x05\x02\x02\x01\x01\x03\x01\x05\x03\x04", // 𣠉
+ 0x2380a: "\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x02\x05\x02\x02\x01\x03\x01\x01\x02\x01\x02", // 𣠊
+ 0x2380b: "\x03\x02\x05\x01\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x01\x02\x03\x04", // 𣠋
+ 0x2380c: "\x01\x02\x03\x04\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𣠌
+ 0x2380d: "\x01\x02\x03\x04\x02\x05\x02\x03\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𣠍
+ 0x2380e: "\x05\x04\x02\x05\x01\x01\x02\x03\x04\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 𣠎
+ 0x2380f: "\x05\x04\x02\x05\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x02\x01\x01\x01\x05\x04", // 𣠏
+ 0x23810: "\x01\x02\x03\x04\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x05\x02\x02", // 𣠐
+ 0x23811: "\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x03\x05\x04\x01\x01\x01\x02\x04\x05\x04", // 𣠑
+ 0x23812: "\x04\x04\x05\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x03\x01\x01\x02\x03\x04", // 𣠒
+ 0x23813: "\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 𣠓
+ 0x23814: "\x01\x02\x05\x01\x02\x04\x05\x02\x05\x01\x03\x05\x03\x03\x03\x04\x01\x01\x02\x03\x04", // 𣠔
+ 0x23815: "\x01\x01\x02\x03\x04\x01\x03\x05\x03\x03\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01", // 𣠕
+ 0x23816: "\x01\x01\x02\x03\x04\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 𣠖
+ 0x23817: "\x01\x02\x03\x04\x03\x02\x05\x01\x05\x01\x02\x01\x02\x01\x05\x01\x01\x04\x05\x02\x05\x02", // 𣠗
+ 0x23818: "\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x03\x02\x05\x01\x01\x04\x01\x03\x04\x01\x02", // 𣠘
+ 0x23819: "\x01\x02\x03\x04\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x01\x04\x03\x03\x04", // 𣠙
+ 0x2381a: "\x01\x02\x03\x04\x01\x04\x05\x02\x04\x01\x03\x04\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 𣠚
+ 0x2381b: "\x04\x01\x03\x04\x03\x04\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02\x03\x04", // 𣠛
+ 0x2381c: "\x01\x02\x03\x04\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01\x04\x03\x03\x04", // 𣠜
+ 0x2381d: "\x01\x02\x03\x04\x01\x02\x01\x02\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𣠝
+ 0x2381e: "\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01\x01\x02\x03\x04", // 𣠞
+ 0x2381f: "\x01\x02\x03\x04\x01\x05\x03\x05\x01\x05\x03\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𣠟
+ 0x23820: "\x01\x02\x03\x04\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x01\x02\x01", // 𣠠
+ 0x23821: "\x01\x02\x03\x04\x03\x05\x04\x01\x04\x01\x01\x01\x02\x05\x01\x03\x05\x05\x04\x02\x03\x04", // 𣠡
+ 0x23822: "\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𣠢
+ 0x23823: "\x01\x02\x03\x04\x04\x04\x05\x02\x05\x01\x02\x01\x01\x02\x05\x02\x02\x01\x04\x05\x04\x04", // 𣠣
+ 0x23824: "\x01\x02\x03\x04\x03\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 𣠤
+ 0x23825: "\x01\x02\x03\x04\x04\x01\x03\x04\x03\x04\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𣠥
+ 0x23826: "\x01\x02\x03\x04\x04\x04\x05\x01\x01\x02\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𣠦
+ 0x23827: "\x01\x02\x03\x04\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x03\x04\x04\x05\x03\x01\x01\x02", // 𣠧
+ 0x23828: "\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x01\x02\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 𣠨
+ 0x23829: "\x01\x02\x03\x04\x01\x02\x01\x02\x01\x02\x05\x01\x02\x05\x03\x01\x01\x02\x05\x02\x02\x01", // 𣠩
+ 0x2382a: "\x01\x02\x03\x04\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x01\x04\x03\x03\x04", // 𣠪
+ 0x2382b: "\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x03\x04\x04\x05\x05\x01\x01\x05\x04\x05\x02", // 𣠫
+ 0x2382c: "\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04", // 𣠬
+ 0x2382d: "\x01\x02\x03\x04\x02\x05\x05\x04\x05\x05\x04\x05\x02\x02\x05\x05\x04\x05\x05\x04\x05\x02", // 𣠭
+ 0x2382e: "\x01\x01\x02\x02\x01\x01\x02\x02\x01\x03\x04\x04\x01\x05\x01\x02\x03\x04\x01\x02\x03\x04", // 𣠮
+ 0x2382f: "\x01\x02\x03\x04\x04\x01\x03\x05\x01\x03\x02\x05\x02\x02\x01\x01\x05\x04\x03\x05\x03\x04", // 𣠯
+ 0x23830: "\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01", // 𣠰
+ 0x23831: "\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x01", // 𣠱
+ 0x23832: "\x01\x02\x03\x04\x04\x05\x02\x04\x02\x05\x01\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01", // 𣠲
+ 0x23833: "\x05\x04\x05\x02\x03\x01\x02\x03\x04\x03\x05\x01\x03\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 𣠳
+ 0x23834: "\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x02\x05\x02\x02\x05\x05\x04\x04\x01\x03\x04", // 𣠴
+ 0x23835: "\x01\x02\x03\x04\x03\x05\x04\x01\x02\x03\x04\x04\x05\x05\x01\x01\x05\x04\x01\x02\x04", // 𣠵
+ 0x23836: "\x03\x01\x01\x02\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 𣠶
+ 0x23837: "\x01\x02\x03\x04\x02\x01\x02\x01\x02\x05\x02\x05\x05\x04\x02\x03\x04\x02\x05\x01\x02\x01\x04", // 𣠷
+ 0x23838: "\x01\x02\x03\x04\x05\x01\x01\x02\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x05\x02\x02\x01\x02", // 𣠸
+ 0x23839: "\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x01\x03\x04\x05\x05\x04\x02\x03\x04", // 𣠹
+ 0x2383a: "\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 𣠺
+ 0x2383b: "\x01\x02\x03\x04\x01\x02\x05\x01\x02\x04\x05\x02\x01\x01\x01\x02\x01\x01\x01\x01\x02\x03\x04", // 𣠻
+ 0x2383c: "\x01\x02\x03\x04\x05\x01\x01\x02\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 𣠼
+ 0x2383d: "\x01\x02\x03\x04\x01\x02\x05\x02\x02\x01\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x01\x01", // 𣠽
+ 0x2383e: "\x01\x02\x03\x04\x04\x01\x05\x02\x05\x01\x04\x03\x01\x01\x01\x02\x03\x05\x04\x01\x05\x03\x04", // 𣠾
+ 0x2383f: "\x01\x02\x05\x01\x02\x05\x03\x01\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x01\x02\x03\x04", // 𣠿
+ 0x23840: "\x01\x02\x03\x04\x02\x01\x02\x01\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𣡀
+ 0x23841: "\x01\x02\x03\x04\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x01\x03\x04", // 𣡁
+ 0x23842: "\x01\x02\x03\x04\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01", // 𣡂
+ 0x23843: "\x01\x02\x03\x04\x05\x01\x03\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01\x03\x05\x03\x04", // 𣡃
+ 0x23844: "\x01\x02\x03\x04\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x03\x04\x01\x03\x04\x03\x01\x01\x02", // 𣡄
+ 0x23845: "\x01\x02\x03\x04\x03\x01\x01\x02\x02\x02\x03\x05\x04\x01\x04\x03\x01\x01\x01\x02\x03\x05\x04", // 𣡅
+ 0x23846: "\x01\x02\x01\x04\x05\x01\x02\x01\x05\x05\x01\x02\x01\x05\x04\x05\x04\x05\x04\x01\x02\x03\x04", // 𣡆
+ 0x23847: "\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x03\x04\x05\x01\x03\x01\x01\x02\x03\x04\x01\x02\x04", // 𣡇
+ 0x23848: "\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x04\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 𣡈
+ 0x23849: "\x05\x04\x05\x04\x05\x04\x01\x02\x03\x04\x03\x02\x05\x03\x04\x03\x01\x02\x03\x04\x01\x03\x04", // 𣡉
+ 0x2384a: "\x01\x02\x03\x04\x01\x02\x01\x02\x01\x02\x01\x03\x05\x01\x02\x01\x03\x05\x04\x01\x01\x05\x04", // 𣡊
+ 0x2384b: "\x01\x02\x03\x04\x01\x02\x02\x01\x03\x04\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𣡋
+ 0x2384c: "\x01\x02\x03\x04\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x03\x04\x04", // 𣡌
+ 0x2384d: "\x01\x02\x05\x02\x03\x04\x01\x02\x05\x02\x03\x04\x01\x02\x05\x02\x03\x04\x01\x02\x05\x02\x03\x04", // 𣡍
+ 0x2384e: "\x01\x02\x03\x04\x03\x04\x04\x04\x04\x04\x05\x02\x01\x05\x01\x01\x01\x03\x04\x03\x01\x02\x03\x04", // 𣡎
+ 0x2384f: "\x01\x02\x05\x01\x02\x02\x05\x02\x05\x01\x02\x05\x01\x02\x05\x01\x03\x05\x04\x01\x01\x02\x03\x04", // 𣡏
+ 0x23850: "\x01\x02\x03\x04\x04\x04\x05\x03\x05\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x03\x05\x02\x05\x01", // 𣡐
+ 0x23851: "\x01\x02\x03\x04\x01\x02\x03\x04\x03\x05\x04\x01\x02\x03\x04\x04\x05\x05\x01\x01\x05\x04\x05\x02", // 𣡑
+ 0x23852: "\x01\x02\x03\x04\x02\x01\x02\x01\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03", // 𣡒
+ 0x23853: "\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x01\x02\x05\x01\x02\x05\x03\x01\x01\x02\x05\x02\x02\x01", // 𣡓
+ 0x23854: "\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x05", // 𣡔
+ 0x23855: "\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04", // 𣡕
+ 0x23856: "\x01\x02\x05\x01\x02\x04\x05\x01\x03\x02\x05\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x02\x03\x04", // 𣡖
+ 0x23857: "\x02\x05\x01\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x03\x04", // 𣡗
+ 0x23858: "\x01\x02\x03\x04\x01\x02\x05\x01\x01\x02\x03\x04\x01\x02\x05\x01\x01\x02\x03\x04\x02\x05\x01\x01", // 𣡘
+ 0x23859: "\x02\x05\x01\x01\x01\x02\x03\x04\x01\x02\x05\x01\x02\x03\x04\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 𣡙
+ 0x2385a: "\x02\x05\x01\x01\x01\x02\x03\x04\x01\x02\x05\x01\x02\x03\x04\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 𣡚
+ 0x2385b: "\x01\x02\x03\x04\x01\x02\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x01\x05\x01\x01\x05", // 𣡛
+ 0x2385c: "\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x03\x04\x04\x05\x05\x01\x01\x05\x04\x01\x01\x03\x02", // 𣡜
+ 0x2385d: "\x01\x03\x02\x04\x02\x05\x02\x02\x01\x03\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x03\x04", // 𣡝
+ 0x2385e: "\x01\x02\x03\x04\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x01\x03\x03\x05\x04\x01\x01\x01\x02\x05\x01", // 𣡞
+ 0x2385f: "\x01\x02\x03\x04\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x04\x05\x02\x05\x04\x01", // 𣡟
+ 0x23860: "\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 𣡠
+ 0x23861: "\x01\x02\x03\x04\x03\x01\x01\x02\x05\x02\x01\x02\x03\x04\x04\x05\x05\x01\x01\x05\x04\x01\x02\x04", // 𣡡
+ 0x23862: "\x01\x02\x03\x04\x01\x01\x01\x03\x04\x02\x05\x01\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𣡢
+ 0x23863: "\x01\x02\x03\x04\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x02\x05\x01\x01\x02\x05\x01\x05\x02\x02", // 𣡣
+ 0x23864: "\x01\x02\x03\x04\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 𣡤
+ 0x23865: "\x04\x01\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x04\x05\x01\x02\x03\x04\x01\x02\x03\x04", // 𣡥
+ 0x23866: "\x01\x02\x05\x01\x02\x02\x05\x02\x05\x01\x02\x05\x01\x05\x01\x05\x03\x04\x03\x04\x01\x01\x02\x03\x04", // 𣡦
+ 0x23867: "\x01\x02\x03\x04\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x03\x01\x01\x02\x05\x02", // 𣡧
+ 0x23868: "\x01\x02\x03\x04\x03\x03\x03\x01\x02\x03\x04\x02\x05\x02\x02\x01\x05\x01\x01\x05\x04\x05\x02", // 𣡨
+ 0x23869: "\x01\x02\x03\x04\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x05\x01\x05", // 𣡩
+ 0x2386a: "\x01\x02\x05\x01\x02\x04\x05\x02\x05\x01\x02\x05\x01\x05\x01\x05\x01\x02\x01\x03\x04\x03\x04\x01\x02\x03\x04", // 𣡪
+ 0x2386b: "\x01\x02\x03\x04\x02\x05\x01\x05\x02\x02\x01\x03\x03\x04\x04\x04\x04\x04\x05\x02\x01\x05\x01\x02\x04", // 𣡫
+ 0x2386c: "\x01\x02\x03\x04\x04\x05\x01\x03\x02\x04\x01\x03\x04\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 𣡬
+ 0x2386d: "\x01\x02\x03\x04\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x04\x05\x02\x05\x01\x01\x01", // 𣡭
+ 0x2386e: "\x01\x02\x03\x04\x01\x02\x03\x04\x03\x05\x04\x01\x02\x03\x04\x04\x05\x05\x01\x01\x05\x04\x01\x02\x04", // 𣡮
+ 0x2386f: "\x02\x05\x02\x02\x01\x01\x02\x01\x05\x04\x01\x02\x03\x04\x05\x05\x04\x05\x05\x04\x01\x03\x04\x05\x03\x04", // 𣡯
+ 0x23870: "\x03\x04\x02\x05\x01\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x03\x04", // 𣡰
+ 0x23871: "\x01\x02\x03\x04\x03\x05\x04\x01\x02\x03\x04\x04\x05\x02\x05\x02\x02\x01\x05\x01\x01\x05\x04\x01\x02\x04", // 𣡱
+ 0x23872: "\x01\x02\x03\x04\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x04\x04\x04\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𣡲
+ 0x23873: "\x03\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x03\x04\x03\x05\x04\x03\x05\x04\x01\x02\x01\x02\x05\x01", // 𣡳
+ 0x23874: "\x01\x02\x03\x04\x03\x05\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x02", // 𣡴
+ 0x23875: "\x01\x02\x03\x04\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x01\x02\x03\x04", // 𣡵
+ 0x23876: "\x01\x02\x03\x04\x01\x02\x05\x01\x02\x05\x03\x01\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x02\x05\x02\x02\x01", // 𣡶
+ 0x23877: "\x01\x02\x05\x02\x02\x01\x02\x01\x02\x05\x03\x04\x03\x04\x01\x02\x01\x02\x05\x03\x04\x03\x04\x01\x01\x02\x03\x04", // 𣡷
+ 0x23878: "\x01\x02\x03\x04\x03\x01\x01\x02\x05\x02\x01\x02\x03\x04\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x05\x01\x02\x04", // 𣡸
+ 0x23879: "\x01\x02\x03\x04\x04\x01\x03\x01\x02\x02\x01\x01\x01\x01\x01\x02\x01\x01\x03\x02\x05\x02\x02\x01\x01\x04\x05\x04\x04", // 𣡹
+ 0x2387a: "\x02\x05\x01\x02\x01\x01\x02\x03\x04\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x02\x01", // 𣡺
+ 0x2387b: "\x01\x02\x03\x04\x02\x01\x02\x01\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𣡻
+ 0x2387c: "\x02\x01\x02\x05\x03\x04\x03\x04\x01\x02\x01\x02\x05\x03\x04\x03\x04\x01\x02\x01\x02\x05\x03\x04\x03\x04\x01\x01\x02\x03\x04", // 𣡼
+ 0x2387d: "\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04", // 𣡽
+ 0x2387e: "\x02\x05\x01\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x03\x04", // 𣡾
+ 0x2387f: "\x01\x02\x03\x04\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x04\x05\x01\x02\x03\x04\x01\x02\x03\x04\x01\x03\x04\x04\x03\x03\x04", // 𣡿
+ 0x23880: "\x05\x02\x03\x05\x03\x04", // 𣢀
+ 0x23881: "\x05\x01\x03\x03\x05\x03\x04", // 𣢁
+ 0x23882: "\x05\x01\x03\x03\x05\x03\x04", // 𣢂
+ 0x23883: "\x02\x01\x02\x01\x03\x05\x03\x04", // 𣢃
+ 0x23884: "\x05\x05\x04\x03\x05\x03\x04", // 𣢄
+ 0x23885: "\x04\x01\x05\x03\x05\x03\x04", // 𣢅
+ 0x23886: "\x03\x01\x05\x03\x05\x03\x04", // 𣢆
+ 0x23887: "\x05\x01\x05\x03\x05\x03\x04", // 𣢇
+ 0x23888: "\x01\x02\x01\x03\x05\x03\x04", // 𣢈
+ 0x23889: "\x03\x02\x01\x05\x03\x05\x03\x04", // 𣢉
+ 0x2388a: "\x03\x05\x03\x03\x03\x05\x03\x04", // 𣢊
+ 0x2388b: "\x01\x05\x01\x05\x03\x05\x03\x04", // 𣢋
+ 0x2388c: "\x04\x05\x03\x05\x03\x05\x03\x04", // 𣢌
+ 0x2388d: "\x03\x04\x01\x05\x03\x05\x03\x04", // 𣢍
+ 0x2388e: "\x03\x05\x01\x05\x03\x05\x03\x04", // 𣢎
+ 0x2388f: "\x03\x04\x05\x03\x03\x05\x03\x04", // 𣢏
+ 0x23890: "\x03\x05\x03\x04\x03\x05\x03\x04", // 𣢐
+ 0x23891: "\x05\x02\x02\x01\x03\x05\x03\x04", // 𣢑
+ 0x23892: "\x02\x03\x04\x03\x03\x05\x03\x04", // 𣢒
+ 0x23893: "\x01\x02\x02\x01\x03\x05\x03\x04", // 𣢓
+ 0x23894: "\x03\x05\x01\x03\x05\x03\x04", // 𣢔
+ 0x23895: "\x01\x05\x03\x05\x03\x05\x03\x04", // 𣢕
+ 0x23896: "\x04\x05\x01\x03\x03\x05\x03\x04", // 𣢖
+ 0x23897: "\x02\x05\x01\x01\x02\x03\x05\x03\x04", // 𣢗
+ 0x23898: "\x02\x05\x01\x01\x02\x03\x05\x03\x04", // 𣢘
+ 0x23899: "\x02\x01\x02\x01\x01\x05\x03\x05\x03\x04", // 𣢙
+ 0x2389a: "\x03\x03\x05\x04\x04\x03\x05\x03\x04", // 𣢚
+ 0x2389b: "\x03\x05\x01\x03\x05\x03\x05\x03\x04", // 𣢛
+ 0x2389c: "\x05\x05\x04\x05\x03\x03\x05\x03\x04", // 𣢜
+ 0x2389d: "\x03\x04\x01\x05\x04\x03\x05\x03\x04", // 𣢝
+ 0x2389e: "\x05\x01\x03\x01\x05\x03\x05\x03\x04", // 𣢞
+ 0x2389f: "\x01\x02\x02\x01\x01\x03\x05\x03\x04", // 𣢟
+ 0x238a0: "\x04\x05\x04\x03\x04\x03\x05\x03\x04", // 𣢠
+ 0x238a1: "\x03\x01\x01\x02\x01\x03\x05\x03\x04", // 𣢡
+ 0x238a2: "\x05\x05\x04\x05\x03\x03\x05\x03\x04", // 𣢢
+ 0x238a3: "\x05\x01\x01\x05\x04\x03\x05\x03\x04", // 𣢣
+ 0x238a4: "\x02\x01\x02\x05\x01\x03\x05\x03\x04", // 𣢤
+ 0x238a5: "\x03\x02\x01\x02\x01\x03\x05\x03\x04", // 𣢥
+ 0x238a6: "\x04\x01\x04\x03\x01\x03\x05\x03\x04", // 𣢦
+ 0x238a7: "\x02\x05\x01\x01\x03\x04\x03\x05\x03\x04", // 𣢧
+ 0x238a8: "\x03\x03\x01\x02\x05\x01\x03\x05\x03\x04", // 𣢨
+ 0x238a9: "\x05\x03\x05\x03\x05\x03\x03\x05\x03\x04", // 𣢩
+ 0x238aa: "\x03\x05\x01\x03\x05\x05\x03\x05\x03\x04", // 𣢪
+ 0x238ab: "\x05\x02\x01\x01\x02\x01\x03\x05\x03\x04", // 𣢫
+ 0x238ac: "\x01\x03\x03\x04\x01\x05\x03\x05\x03\x04", // 𣢬
+ 0x238ad: "\x01\x03\x02\x05\x03\x04\x03\x05\x03\x04", // 𣢭
+ 0x238ae: "\x01\x02\x02\x05\x01\x02\x05\x03\x05\x03\x04", // 𣢮
+ 0x238af: "\x03\x01\x02\x02\x05\x01\x03\x05\x03\x04", // 𣢯
+ 0x238b0: "\x02\x01\x01\x02\x03\x04\x03\x05\x03\x04", // 𣢰
+ 0x238b1: "\x02\x05\x01\x05\x05\x05\x03\x05\x03\x04", // 𣢱
+ 0x238b2: "\x03\x04\x03\x04\x01\x05\x03\x05\x03\x04", // 𣢲
+ 0x238b3: "\x03\x01\x02\x01\x05\x03\x03\x05\x03\x04", // 𣢳
+ 0x238b4: "\x03\x01\x01\x01\x03\x02\x03\x05\x03\x04", // 𣢴
+ 0x238b5: "\x03\x05\x01\x03\x05\x04\x03\x05\x03\x04", // 𣢵
+ 0x238b6: "\x01\x05\x04\x01\x02\x01\x03\x05\x03\x04", // 𣢶
+ 0x238b7: "\x03\x05\x04\x02\x05\x01\x03\x05\x03\x04", // 𣢷
+ 0x238b8: "\x03\x05\x01\x01\x03\x04\x03\x05\x03\x04", // 𣢸
+ 0x238b9: "\x01\x01\x01\x02\x03\x04\x03\x05\x03\x04", // 𣢹
+ 0x238ba: "\x03\x04\x01\x05\x02\x05\x01\x03\x05\x03\x04", // 𣢺
+ 0x238bb: "\x02\x01\x01\x02\x05\x03\x04\x03\x05\x03\x04", // 𣢻
+ 0x238bc: "\x03\x02\x05\x01\x01\x01\x05\x03\x05\x03\x04", // 𣢼
+ 0x238bd: "\x02\x05\x02\x03\x04\x01\x05\x03\x05\x03\x04", // 𣢽
+ 0x238be: "\x03\x05\x01\x01\x02\x03\x04\x03\x05\x03\x04", // 𣢾
+ 0x238bf: "\x04\x01\x02\x05\x01\x02\x01\x03\x05\x03\x04", // 𣢿
+ 0x238c0: "\x01\x01\x03\x05\x03\x04\x02\x05\x02\x01\x01", // 𣣀
+ 0x238c1: "\x05\x01\x05\x03\x03\x01\x02\x03\x05\x03\x04", // 𣣁
+ 0x238c2: "\x01\x04\x03\x01\x02\x05\x01\x03\x05\x03\x04", // 𣣂
+ 0x238c3: "\x01\x03\x05\x02\x02\x05\x02\x03\x05\x03\x04", // 𣣃
+ 0x238c4: "\x01\x02\x05\x01\x02\x05\x01\x03\x05\x03\x04", // 𣣄
+ 0x238c5: "\x01\x05\x03\x01\x02\x03\x04\x03\x05\x03\x04", // 𣣅
+ 0x238c6: "\x02\x05\x01\x03\x01\x02\x01\x03\x05\x03\x04", // 𣣆
+ 0x238c7: "\x02\x01\x01\x01\x01\x03\x04\x03\x05\x03\x04", // 𣣇
+ 0x238c8: "\x03\x04\x01\x05\x04\x05\x04\x04\x03\x05\x03\x04", // 𣣈
+ 0x238c9: "\x03\x02\x01\x05\x01\x01\x03\x05\x03\x05\x03\x04", // 𣣉
+ 0x238ca: "\x02\x01\x02\x01\x01\x05\x02\x05\x01\x03\x05\x03\x04", // 𣣊
+ 0x238cb: "\x01\x02\x01\x03\x05\x03\x05\x04\x03\x05\x03\x04", // 𣣋
+ 0x238cc: "\x01\x03\x05\x04\x01\x05\x01\x01\x03\x05\x03\x04", // 𣣌
+ 0x238cd: "\x02\x01\x05\x03\x01\x05\x03\x05\x03\x05\x03\x04", // 𣣍
+ 0x238ce: "\x01\x05\x04\x03\x05\x04\x01\x03\x05\x03\x04", // 𣣎
+ 0x238cf: "\x03\x05\x01\x05\x02\x05\x01\x01\x03\x05\x03\x04", // 𣣏
+ 0x238d0: "\x01\x02\x01\x02\x01\x02\x05\x02\x03\x05\x03\x04", // 𣣐
+ 0x238d1: "\x04\x05\x04\x03\x04\x01\x02\x01\x03\x05\x03\x04", // 𣣑
+ 0x238d2: "\x03\x03\x01\x02\x02\x05\x01\x01\x03\x05\x03\x04", // 𣣒
+ 0x238d3: "\x03\x05\x03\x04\x03\x05\x03\x04\x03\x05\x03\x04", // 𣣓
+ 0x238d4: "\x04\x03\x01\x02\x01\x02\x05\x01\x03\x05\x03\x04", // 𣣔
+ 0x238d5: "\x02\x01\x05\x03\x01\x05\x03\x04\x03\x05\x03\x04", // 𣣕
+ 0x238d6: "\x05\x02\x04\x01\x03\x04\x05\x04\x03\x05\x03\x04", // 𣣖
+ 0x238d7: "\x02\x05\x02\x01\x01\x02\x03\x04\x03\x05\x03\x04", // 𣣗
+ 0x238d8: "\x02\x05\x01\x01\x02\x05\x01\x01\x03\x05\x03\x04", // 𣣘
+ 0x238d9: "\x01\x02\x04\x05\x01\x02\x03\x04\x03\x05\x03\x04", // 𣣙
+ 0x238da: "\x01\x03\x04\x02\x05\x01\x01\x05\x03\x05\x03\x04", // 𣣚
+ 0x238db: "\x03\x05\x03\x04\x03\x05\x03\x04\x04\x03\x03\x04", // 𣣛
+ 0x238dc: "\x05\x05\x04\x04\x04\x04\x05\x03\x03\x05\x03\x04", // 𣣜
+ 0x238dd: "\x03\x02\x05\x01\x01\x01\x05\x05\x02\x03\x05\x03\x04", // 𣣝
+ 0x238de: "\x04\x05\x01\x02\x05\x01\x01\x01\x02\x03\x05\x03\x04", // 𣣞
+ 0x238df: "\x04\x04\x05\x03\x05\x04\x02\x05\x01\x03\x05\x03\x04", // 𣣟
+ 0x238e0: "\x03\x02\x05\x01\x03\x01\x01\x03\x04\x03\x05\x03\x04", // 𣣠
+ 0x238e1: "\x03\x05\x01\x03\x03\x01\x01\x03\x04\x03\x05\x03\x04", // 𣣡
+ 0x238e2: "\x03\x02\x04\x01\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 𣣢
+ 0x238e3: "\x05\x01\x03\x01\x02\x02\x01\x03\x04\x03\x05\x03\x04", // 𣣣
+ 0x238e4: "\x05\x01\x05\x01\x05\x02\x05\x01\x01\x03\x05\x03\x04", // 𣣤
+ 0x238e5: "\x01\x03\x04\x04\x02\x05\x02\x02\x01\x03\x05\x03\x04", // 𣣥
+ 0x238e6: "\x02\x05\x01\x05\x05\x05\x05\x05\x05\x03\x05\x03\x04", // 𣣦
+ 0x238e7: "\x02\x01\x02\x05\x03\x04\x03\x04\x01\x03\x05\x03\x04", // 𣣧
+ 0x238e8: "\x03\x01\x02\x03\x04\x03\x04\x05\x02\x03\x05\x03\x04", // 𣣨
+ 0x238e9: "\x01\x03\x04\x04\x01\x02\x05\x01\x01\x03\x05\x03\x04", // 𣣩
+ 0x238ea: "\x03\x03\x01\x02\x03\x02\x05\x01\x01\x03\x05\x03\x04", // 𣣪
+ 0x238eb: "\x04\x03\x01\x02\x05\x03\x05\x01\x01\x03\x05\x03\x04", // 𣣫
+ 0x238ec: "\x01\x01\x02\x05\x01\x01\x01\x03\x04\x03\x05\x03\x04", // 𣣬
+ 0x238ed: "\x01\x03\x01\x02\x05\x01\x01\x01\x02\x03\x05\x03\x04", // 𣣭
+ 0x238ee: "\x03\x01\x01\x02\x02\x01\x02\x05\x02\x03\x05\x03\x04", // 𣣮
+ 0x238ef: "\x03\x05\x05\x02\x05\x02\x02\x05\x02\x03\x05\x03\x04", // 𣣯
+ 0x238f0: "\x01\x01\x03\x05\x03\x04\x02\x01\x03\x05\x04\x03\x05", // 𣣰
+ 0x238f1: "\x04\x01\x04\x03\x01\x02\x05\x01\x02\x03\x05\x03\x04", // 𣣱
+ 0x238f2: "\x05\x03\x05\x03\x05\x03\x03\x05\x04\x01\x03\x05\x03\x04", // 𣣲
+ 0x238f3: "\x03\x05\x04\x04\x03\x01\x01\x02\x05\x02\x03\x05\x03\x04", // 𣣳
+ 0x238f4: "\x02\x05\x02\x02\x01\x02\x04\x01\x03\x04\x03\x05\x03\x04", // 𣣴
+ 0x238f5: "\x04\x03\x01\x01\x01\x02\x04\x04\x04\x04\x03\x05\x03\x04", // 𣣵
+ 0x238f6: "\x04\x04\x05\x03\x01\x02\x01\x02\x05\x01\x03\x05\x03\x04", // 𣣶
+ 0x238f7: "\x05\x02\x03\x01\x02\x05\x01\x02\x01\x04\x03\x05\x03\x04", // 𣣷
+ 0x238f8: "\x02\x01\x02\x05\x03\x04\x03\x04\x01\x05\x03\x05\x03\x04", // 𣣸
+ 0x238f9: "\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01\x03\x05\x03\x04", // 𣣹
+ 0x238fa: "\x01\x03\x02\x05\x01\x01\x01\x03\x05\x04\x03\x05\x03\x04", // 𣣺
+ 0x238fb: "\x05\x04\x02\x05\x04\x03\x01\x01\x02\x01\x03\x05\x03\x04", // 𣣻
+ 0x238fc: "\x04\x03\x01\x03\x04\x02\x05\x02\x02\x01\x03\x05\x03\x04", // 𣣼
+ 0x238fd: "\x03\x04\x01\x02\x01\x01\x02\x04\x03\x01\x03\x05\x03\x04", // 𣣽
+ 0x238fe: "\x01\x03\x01\x02\x01\x05\x05\x01\x02\x01\x03\x05\x03\x04", // 𣣾
+ 0x238ff: "\x01\x02\x01\x04\x05\x05\x04\x02\x05\x01\x03\x05\x03\x04", // 𣣿
+ 0x23900: "\x01\x02\x01\x01\x01\x03\x02\x05\x02\x02\x03\x05\x03\x04", // 𣤀
+ 0x23901: "\x01\x02\x05\x01\x01\x05\x03\x03\x03\x04\x03\x05\x03\x04", // 𣤁
+ 0x23902: "\x01\x02\x01\x02\x02\x01\x01\x02\x03\x04\x03\x05\x03\x04", // 𣤂
+ 0x23903: "\x01\x05\x01\x01\x02\x03\x04\x03\x05\x03\x04\x05\x03", // 𣤃
+ 0x23904: "\x04\x04\x05\x03\x04\x03\x04\x02\x05\x01\x03\x05\x03\x04", // 𣤄
+ 0x23905: "\x05\x01\x03\x01\x02\x02\x05\x01\x05\x04\x03\x05\x03\x04", // 𣤅
+ 0x23906: "\x01\x02\x01\x01\x01\x02\x01\x01\x01\x05\x03\x05\x03\x04", // 𣤆
+ 0x23907: "\x04\x05\x03\x02\x04\x01\x01\x01\x02\x01\x03\x05\x03\x04", // 𣤇
+ 0x23908: "\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x05\x03\x04", // 𣤈
+ 0x23909: "\x03\x04\x01\x05\x02\x05\x01\x01\x01\x03\x04\x03\x05\x03\x04", // 𣤉
+ 0x2390a: "\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01\x03\x05\x03\x04", // 𣤊
+ 0x2390b: "\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01\x03\x05\x03\x04", // 𣤋
+ 0x2390c: "\x05\x04\x05\x04\x05\x04\x05\x04\x02\x05\x01\x03\x05\x03\x04", // 𣤌
+ 0x2390d: "\x03\x05\x04\x01\x04\x01\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 𣤍
+ 0x2390e: "\x02\x04\x03\x03\x05\x04\x01\x03\x05\x03\x04\x04\x05\x04", // 𣤎
+ 0x2390f: "\x03\x04\x01\x03\x03\x05\x04\x01\x04\x02\x02\x03\x05\x03\x04", // 𣤏
+ 0x23910: "\x01\x02\x05\x01\x01\x05\x03\x04\x02\x05\x01\x03\x05\x03\x04", // 𣤐
+ 0x23911: "\x03\x02\x01\x05\x01\x01\x01\x02\x05\x01\x02\x03\x05\x03\x04", // 𣤑
+ 0x23912: "\x03\x02\x01\x05\x01\x01\x03\x05\x02\x05\x01\x03\x05\x03\x04", // 𣤒
+ 0x23913: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x03\x05\x03\x04", // 𣤓
+ 0x23914: "\x01\x03\x03\x04\x01\x03\x05\x01\x01\x02\x02\x03\x05\x03\x04", // 𣤔
+ 0x23915: "\x05\x04\x05\x04\x01\x02\x05\x03\x05\x01\x01\x03\x05\x03\x04", // 𣤕
+ 0x23916: "\x01\x02\x05\x01\x01\x01\x02\x03\x05\x05\x04\x03\x05\x03\x04", // 𣤖
+ 0x23917: "\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05\x03\x04", // 𣤗
+ 0x23918: "\x01\x02\x02\x01\x01\x01\x03\x04\x03\x03\x01\x02\x03\x05\x03\x04", // 𣤘
+ 0x23919: "\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01\x03\x05\x03\x04", // 𣤙
+ 0x2391a: "\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04\x03\x05\x03\x04", // 𣤚
+ 0x2391b: "\x01\x03\x04\x04\x01\x03\x04\x04\x01\x03\x04\x04\x03\x05\x03\x04", // 𣤛
+ 0x2391c: "\x05\x04\x05\x04\x05\x04\x05\x04\x01\x02\x03\x04\x03\x05\x03\x04", // 𣤜
+ 0x2391d: "\x02\x01\x05\x03\x03\x04\x03\x04\x02\x05\x01\x01\x03\x05\x03\x04", // 𣤝
+ 0x2391e: "\x02\x05\x01\x01\x04\x03\x01\x02\x02\x04\x03\x01\x03\x05\x03\x04", // 𣤞
+ 0x2391f: "\x01\x02\x01\x04\x05\x03\x04\x02\x05\x01\x01\x05\x03\x05\x03\x04", // 𣤟
+ 0x23920: "\x02\x01\x02\x01\x01\x03\x01\x02\x03\x03\x05\x03\x04\x03\x05\x03\x04", // 𣤠
+ 0x23921: "\x03\x02\x05\x03\x04\x03\x01\x02\x03\x04\x01\x03\x04\x03\x05\x03\x04", // 𣤡
+ 0x23922: "\x01\x02\x05\x01\x01\x01\x02\x05\x02\x03\x05\x03\x04\x03\x05\x03\x04", // 𣤢
+ 0x23923: "\x03\x05\x04\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05\x03\x04", // 𣤣
+ 0x23924: "\x04\x01\x03\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04\x03\x05\x03\x04", // 𣤤
+ 0x23925: "\x05\x03\x05\x03\x05\x03\x02\x05\x01\x01\x01\x03\x04\x03\x05\x03\x04", // 𣤥
+ 0x23926: "\x02\x01\x02\x05\x05\x01\x01\x05\x01\x01\x02\x01\x04\x03\x05\x03\x04", // 𣤦
+ 0x23927: "\x02\x01\x04\x05\x03\x04\x03\x04\x02\x05\x01\x01\x01\x03\x05\x03\x04", // 𣤧
+ 0x23928: "\x01\x02\x01\x02\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04\x03\x05\x03\x04", // 𣤨
+ 0x23929: "\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x05\x03\x04", // 𣤩
+ 0x2392a: "\x05\x04\x01\x05\x04\x01\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x03\x04", // 𣤪
+ 0x2392b: "\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04\x03\x05\x03\x04", // 𣤫
+ 0x2392c: "\x02\x01\x02\x01\x01\x03\x04\x03\x04\x02\x03\x04\x03\x04\x02\x03\x05\x03\x04", // 𣤬
+ 0x2392d: "\x01\x03\x01\x02\x05\x01\x05\x03\x04\x05\x05\x04\x02\x03\x04\x03\x05\x03\x04", // 𣤭
+ 0x2392e: "\x01\x03\x01\x02\x05\x01\x05\x03\x04\x04\x05\x04\x04\x01\x01\x03\x05\x03\x04", // 𣤮
+ 0x2392f: "\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x05\x03\x04", // 𣤯
+ 0x23930: "\x03\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x03\x04\x03\x05\x03\x04", // 𣤰
+ 0x23931: "\x03\x05\x02\x05\x01\x01\x05\x01\x05\x03\x05\x02\x05\x01\x03\x05\x04\x03\x05\x03\x04", // 𣤱
+ 0x23932: "\x01\x02\x05\x01\x02\x05\x01\x01\x02\x02\x05\x01\x02\x05\x01\x01\x03\x05\x03\x04", // 𣤲
+ 0x23933: "\x01\x02\x02\x05\x01\x01\x01\x01\x03\x03\x02\x05\x03\x02\x05\x04\x03\x05\x03\x04", // 𣤳
+ 0x23934: "\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x04\x03\x01\x01\x05\x03\x04\x03\x05\x03\x04", // 𣤴
+ 0x23935: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x05\x03\x01\x03\x05\x03\x04", // 𣤵
+ 0x23936: "\x01\x02\x01\x03\x04\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01\x03\x05\x03\x04", // 𣤶
+ 0x23937: "\x01\x02\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x01\x02\x03\x04\x03\x05\x03\x04", // 𣤷
+ 0x23938: "\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04\x03\x05\x03\x04", // 𣤸
+ 0x23939: "\x04\x03\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04\x03\x05\x03\x04", // 𣤹
+ 0x2393a: "\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x05\x03\x04", // 𣤺
+ 0x2393b: "\x05\x01\x03\x01\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x02\x01\x02\x01\x03\x05\x03\x04", // 𣤻
+ 0x2393c: "\x01\x02\x01\x01\x02\x01\x05\x05\x01\x02\x01\x02\x01\x05\x05\x01\x02\x01\x03\x05\x03\x04", // 𣤼
+ 0x2393d: "\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x03\x05\x03\x04\x03\x05\x03\x04", // 𣤽
+ 0x2393e: "\x02\x01\x02\x01\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04\x03\x05\x03\x04", // 𣤾
+ 0x2393f: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x02\x02\x01\x02\x04\x01\x03\x04\x03\x05\x03\x04", // 𣤿
+ 0x23940: "\x05\x01\x03\x02\x04\x01\x03\x04\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04\x03\x05\x03\x04", // 𣥀
+ 0x23941: "\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x05\x03\x04", // 𣥁
+ 0x23942: "\x02\x03\x03", // 𣥂
+ 0x23943: "\x02\x01\x02\x01\x05", // 𣥃
+ 0x23944: "\x01\x02\x01\x02\x01", // 𣥄
+ 0x23945: "\x02\x01\x02\x01\x01\x05", // 𣥅
+ 0x23946: "\x03\x03\x02\x01\x02\x01", // 𣥆
+ 0x23947: "\x02\x01\x02\x01\x05\x01\x02", // 𣥇
+ 0x23948: "\x02\x01\x02\x01\x02\x05\x02", // 𣥈
+ 0x23949: "\x05\x01\x03\x02\x01\x02\x01", // 𣥉
+ 0x2394a: "\x04\x01\x05\x02\x01\x02\x01", // 𣥊
+ 0x2394b: "\x03\x02\x01\x01\x02\x01\x01", // 𣥋
+ 0x2394c: "\x02\x01\x02\x01\x02\x01\x01", // 𣥌
+ 0x2394d: "\x02\x01\x02\x01\x03\x03\x01\x02", // 𣥍
+ 0x2394e: "\x02\x01\x02\x01\x01\x01\x03\x02", // 𣥎
+ 0x2394f: "\x02\x01\x02\x01\x03\x05\x03\x04", // 𣥏
+ 0x23950: "\x02\x01\x02\x01\x03\x04\x03\x04", // 𣥐
+ 0x23951: "\x02\x01\x02\x01\x03\x05\x04\x02", // 𣥑
+ 0x23952: "\x05\x02\x01\x02\x01\x02\x01", // 𣥒
+ 0x23953: "\x02\x01\x02\x05\x02\x01\x02\x01", // 𣥓
+ 0x23954: "\x01\x02\x05\x01\x02\x01\x02\x01", // 𣥔
+ 0x23955: "\x02\x01\x02\x01\x02\x01\x02\x01", // 𣥕
+ 0x23956: "\x02\x01\x02\x01\x02\x01\x02\x01", // 𣥖
+ 0x23957: "\x02\x01\x02\x01\x02\x01\x02\x01", // 𣥗
+ 0x23958: "\x02\x01\x02\x01\x05\x02\x01\x05", // 𣥘
+ 0x23959: "\x02\x05\x03\x04\x02\x01\x02\x01", // 𣥙
+ 0x2395a: "\x03\x01\x03\x04\x02\x01\x02\x01", // 𣥚
+ 0x2395b: "\x01\x02\x01\x02\x01\x03\x05\x04", // 𣥛
+ 0x2395c: "\x02\x01\x02\x01\x02\x05\x01\x01", // 𣥜
+ 0x2395d: "\x03\x05\x05\x03\x02\x01\x02\x01", // 𣥝
+ 0x2395e: "\x02\x01\x02\x01\x01\x01\x03\x02", // 𣥞
+ 0x2395f: "\x02\x01\x02\x01\x01\x01\x03\x02", // 𣥟
+ 0x23960: "\x02\x01\x02\x01\x02\x01\x02\x01", // 𣥠
+ 0x23961: "\x02\x01\x02\x01\x03\x01\x01\x05", // 𣥡
+ 0x23962: "\x04\x01\x04\x03\x01\x02\x01\x02\x01", // 𣥢
+ 0x23963: "\x02\x01\x02\x01\x05\x03\x02\x05\x04", // 𣥣
+ 0x23964: "\x02\x01\x02\x01\x02\x05\x01\x02\x01", // 𣥤
+ 0x23965: "\x02\x01\x02\x01\x01\x05\x03\x01\x02", // 𣥥
+ 0x23966: "\x02\x01\x02\x01\x05\x01\x01\x05\x03\x04", // 𣥦
+ 0x23967: "\x02\x01\x02\x01\x02\x05\x01\x02\x05\x01", // 𣥧
+ 0x23968: "\x02\x01\x02\x01\x01\x05\x03\x05\x05\x04", // 𣥨
+ 0x23969: "\x02\x01\x02\x01\x01\x01\x01\x02\x03\x03", // 𣥩
+ 0x2396a: "\x02\x01\x02\x01\x03\x05\x03\x03\x01\x02", // 𣥪
+ 0x2396b: "\x02\x01\x02\x01\x02\x01\x01\x05\x01\x05\x02", // 𣥫
+ 0x2396c: "\x02\x01\x02\x01\x05\x03\x03\x03\x05\x04", // 𣥬
+ 0x2396d: "\x02\x01\x02\x01\x01\x01\x02\x01\x01\x02", // 𣥭
+ 0x2396e: "\x02\x01\x02\x01\x01\x02\x01\x01\x02\x01", // 𣥮
+ 0x2396f: "\x02\x01\x02\x01\x01\x03\x02\x05\x01\x01", // 𣥯
+ 0x23970: "\x02\x01\x02\x01\x03\x02\x02\x01\x05\x04", // 𣥰
+ 0x23971: "\x02\x01\x02\x01\x01\x02\x05\x01\x03\x04", // 𣥱
+ 0x23972: "\x03\x03\x03\x01\x02\x01\x02\x01\x02\x01", // 𣥲
+ 0x23973: "\x03\x04\x01\x01\x02\x03\x04\x02\x01\x02\x01", // 𣥳
+ 0x23974: "\x02\x01\x02\x01\x02\x05\x01\x05\x03\x05\x03", // 𣥴
+ 0x23975: "\x01\x02\x01\x02\x01\x03\x01\x01\x02\x03\x04", // 𣥵
+ 0x23976: "\x02\x01\x02\x01\x02\x05\x01\x01\x02\x03\x03", // 𣥶
+ 0x23977: "\x02\x01\x02\x01\x03\x05\x04\x02\x05\x01\x02", // 𣥷
+ 0x23978: "\x02\x01\x02\x01\x05\x04\x02\x05\x01\x01\x01", // 𣥸
+ 0x23979: "\x02\x01\x02\x01\x02\x01\x01\x02\x03\x04\x05\x04", // 𣥹
+ 0x2397a: "\x02\x04\x03\x04\x03\x02\x05\x01\x02\x01\x02\x01", // 𣥺
+ 0x2397b: "\x02\x01\x02\x01\x01\x02\x01\x03\x05\x03\x05\x04", // 𣥻
+ 0x2397c: "\x02\x01\x02\x01\x02\x05\x01\x02\x05\x01\x05\x02", // 𣥼
+ 0x2397d: "\x02\x01\x02\x01\x01\x01\x02\x01\x05\x05\x04\x01\x04", // 𣥽
+ 0x2397e: "\x02\x01\x02\x01\x02\x05\x03\x04\x02\x05\x01\x01", // 𣥾
+ 0x2397f: "\x02\x01\x02\x01\x01\x01\x01\x01\x01\x02\x03\x03", // 𣥿
+ 0x23980: "\x01\x02\x02\x01\x01\x05\x04\x02\x01\x02\x01", // 𣦀
+ 0x23981: "\x02\x01\x02\x01\x02\x01\x02\x01\x03\x04\x03\x04", // 𣦁
+ 0x23982: "\x01\x02\x05\x01\x02\x01\x03\x05\x02\x01\x02\x01", // 𣦂
+ 0x23983: "\x02\x01\x02\x01\x03\x03\x05\x04\x01\x04\x05\x03", // 𣦃
+ 0x23984: "\x02\x01\x02\x01\x03\x04\x02\x02\x05\x02\x01\x01", // 𣦄
+ 0x23985: "\x02\x01\x02\x01\x04\x04\x05\x01\x01\x02\x03\x04", // 𣦅
+ 0x23986: "\x01\x03\x02\x01\x02\x01\x01\x02\x05\x01\x03\x04", // 𣦆
+ 0x23987: "\x02\x01\x02\x01\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 𣦇
+ 0x23988: "\x02\x01\x02\x01\x01\x02\x01\x03\x02\x05\x01\x01\x04", // 𣦈
+ 0x23989: "\x02\x01\x02\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01", // 𣦉
+ 0x2398a: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04", // 𣦊
+ 0x2398b: "\x02\x01\x02\x01\x03\x05\x01\x01\x01\x01\x05\x02", // 𣦋
+ 0x2398c: "\x02\x01\x02\x01\x05\x04\x03\x03\x04\x01\x01\x03\x04", // 𣦌
+ 0x2398d: "\x04\x04\x05\x02\x05\x01\x01\x01\x01\x02\x01\x02\x01", // 𣦍
+ 0x2398e: "\x01\x02\x01\x02\x01\x02\x04\x03\x02\x05\x02\x05\x01", // 𣦎
+ 0x2398f: "\x01\x01\x02\x01\x02\x01\x01\x02\x02\x02\x01\x05\x04", // 𣦏
+ 0x23990: "\x02\x01\x02\x01\x02\x05\x02\x02\x01\x01\x02\x01\x02\x01", // 𣦐
+ 0x23991: "\x03\x02\x05\x01\x01\x05\x04\x04\x04\x04\x02\x01\x02\x01", // 𣦑
+ 0x23992: "\x02\x01\x02\x01\x04\x01\x03\x04\x03\x04\x02\x05\x01\x01", // 𣦒
+ 0x23993: "\x01\x02\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𣦓
+ 0x23994: "\x01\x02\x05\x01\x01\x01\x02\x03\x01\x03\x04\x02\x01\x02\x01", // 𣦔
+ 0x23995: "\x02\x01\x02\x01\x02\x05\x01\x01\x02\x01\x01\x02\x01\x02\x01", // 𣦕
+ 0x23996: "\x02\x01\x02\x05\x01\x01\x01\x02\x02\x01\x02\x01\x02\x03\x03", // 𣦖
+ 0x23997: "\x02\x01\x02\x01\x02\x05\x03\x04\x03\x04\x03\x04\x03\x04\x01", // 𣦗
+ 0x23998: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x02\x01\x02\x01", // 𣦘
+ 0x23999: "\x02\x01\x02\x01\x02\x05\x01\x01\x01\x02\x01\x02\x01\x02\x01", // 𣦙
+ 0x2399a: "\x01\x03\x02\x04\x02\x01\x02\x01\x01\x02\x05\x01\x02\x03\x04", // 𣦚
+ 0x2399b: "\x03\x02\x02\x04\x03\x02\x05\x02\x05\x01\x01\x02\x01\x02\x01", // 𣦛
+ 0x2399c: "\x02\x01\x02\x01\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 𣦜
+ 0x2399d: "\x02\x01\x02\x01\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x02\x04", // 𣦝
+ 0x2399e: "\x01\x03\x02\x05\x01\x01\x04\x05\x02\x01\x02\x01\x02\x01\x05\x04", // 𣦞
+ 0x2399f: "\x02\x01\x02\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𣦟
+ 0x239a0: "\x02\x01\x02\x01\x05\x01\x03\x01\x02\x01\x03\x02\x05\x01\x01", // 𣦠
+ 0x239a1: "\x02\x01\x02\x01\x01\x02\x01\x02\x01\x02\x01\x03\x02\x05\x01\x01\x04", // 𣦡
+ 0x239a2: "\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x02\x01\x02\x01", // 𣦢
+ 0x239a3: "\x02\x05\x02\x02\x05\x02\x02\x05\x02\x02\x01\x02\x01\x02\x01\x02\x01", // 𣦣
+ 0x239a4: "\x04\x01\x02\x05\x01\x05\x02\x01\x03\x01\x03\x04\x01\x02\x01\x02\x01", // 𣦤
+ 0x239a5: "\x01\x02\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 𣦥
+ 0x239a6: "\x02\x01\x02\x01\x01\x03\x01\x02\x03\x03\x05\x03\x04\x02\x05\x01\x01\x01", // 𣦦
+ 0x239a7: "\x02\x01\x02\x01\x01\x03\x01\x02\x03\x03\x05\x03\x04\x05\x02\x02\x05\x02", // 𣦧
+ 0x239a8: "\x03\x02\x05\x01\x05\x01\x02\x01\x02\x01\x01\x03\x04\x03\x04\x02\x03\x04", // 𣦨
+ 0x239a9: "\x02\x01\x02\x01\x01\x02\x01\x02\x05\x01\x04\x03\x01\x05\x01\x02\x05\x04", // 𣦩
+ 0x239aa: "\x05\x04\x05\x04\x01\x02\x05\x01\x02\x05\x05\x04\x05\x04\x02\x01\x02\x01", // 𣦪
+ 0x239ab: "\x02\x01\x02\x01\x01\x03\x01\x02\x03\x03\x05\x03\x04\x03\x05\x01\x05\x02", // 𣦫
+ 0x239ac: "\x02\x01\x02\x01\x01\x03\x01\x01\x02\x03\x04\x05\x03\x04\x05\x02\x02\x05\x02", // 𣦬
+ 0x239ad: "\x02\x01\x02\x01\x01\x03\x01\x02\x03\x03\x05\x03\x04\x02\x05\x02\x02\x05\x02", // 𣦭
+ 0x239ae: "\x04\x01\x03\x04\x03\x04\x01\x02\x02\x01\x02\x01\x01\x03\x01\x02\x03\x03\x05\x03\x04", // 𣦮
+ 0x239af: "\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x05\x04\x05\x04\x05\x04\x02\x01\x02\x01", // 𣦯
+ 0x239b0: "\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01\x01\x02\x05\x01\x03\x04", // 𣦰
+ 0x239b1: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x02\x01\x02\x01", // 𣦱
+ 0x239b2: "\x02\x01\x02\x01\x04\x01\x03\x04\x03\x04\x03\x05\x04\x01\x01\x02\x05\x04\x04\x01\x04\x03\x01", // 𣦲
+ 0x239b3: "\x02\x01\x02\x01\x04\x01\x03\x04\x03\x04\x02\x05\x01\x01\x01\x01\x02\x05\x04\x04\x01\x04\x03\x01", // 𣦳
+ 0x239b4: "\x03\x01\x03\x04\x02\x01\x02\x01\x03\x01\x03\x04\x02\x01\x02\x01\x03\x01\x03\x04\x02\x01\x02\x01", // 𣦴
+ 0x239b5: "\x02\x01\x02\x05\x01", // 𣦵
+ 0x239b6: "\x01\x05\x05", // 𣦶
+ 0x239b7: "\x02\x01\x03\x05\x04\x05", // 𣦷
+ 0x239b8: "\x02\x01\x03\x05\x04\x03\x04", // 𣦸
+ 0x239b9: "\x01\x03\x05\x04\x03\x04", // 𣦹
+ 0x239ba: "\x01\x03\x05\x04\x05\x03", // 𣦺
+ 0x239bb: "\x02\x01\x02\x05\x01\x05\x04", // 𣦻
+ 0x239bc: "\x02\x01\x03\x05\x04\x05\x04", // 𣦼
+ 0x239bd: "\x01\x03\x05\x04\x03\x05", // 𣦽
+ 0x239be: "\x01\x03\x05\x04\x05\x05", // 𣦾
+ 0x239bf: "\x01\x03\x05\x04\x01\x01\x02", // 𣦿
+ 0x239c0: "\x01\x03\x05\x04\x03\x05\x04", // 𣧀
+ 0x239c1: "\x01\x03\x05\x04\x01\x01\x05", // 𣧁
+ 0x239c2: "\x01\x03\x05\x04\x01\x03\x04", // 𣧂
+ 0x239c3: "\x01\x03\x05\x04\x03\x01\x05", // 𣧃
+ 0x239c4: "\x05\x05\x05\x01\x03\x05\x04", // 𣧄
+ 0x239c5: "\x01\x03\x05\x04\x01\x02\x01", // 𣧅
+ 0x239c6: "\x01\x03\x05\x04\x01\x05\x04", // 𣧆
+ 0x239c7: "\x01\x03\x05\x04\x03\x05\x04", // 𣧇
+ 0x239c8: "\x01\x03\x05\x04\x02\x05\x02", // 𣧈
+ 0x239c9: "\x01\x03\x05\x04\x03\x05\x05\x04", // 𣧉
+ 0x239ca: "\x01\x03\x05\x04\x05\x02\x01\x01", // 𣧊
+ 0x239cb: "\x01\x03\x05\x04\x03\x05\x03\x04", // 𣧋
+ 0x239cc: "\x01\x03\x05\x04\x01\x05\x03\x04", // 𣧌
+ 0x239cd: "\x01\x03\x05\x04\x02\x05\x03\x04", // 𣧍
+ 0x239ce: "\x01\x03\x05\x04\x05\x01\x03\x04", // 𣧎
+ 0x239cf: "\x01\x03\x05\x04\x02\x01\x05\x04", // 𣧏
+ 0x239d0: "\x01\x03\x05\x04\x02\x01\x02\x01", // 𣧐
+ 0x239d1: "\x01\x03\x05\x04\x03\x04\x05\x02", // 𣧑
+ 0x239d2: "\x01\x03\x05\x04\x01\x01\x02\x02", // 𣧒
+ 0x239d3: "\x01\x03\x05\x04\x05\x02\x05\x02", // 𣧓
+ 0x239d4: "\x01\x03\x05\x04\x03\x05\x05\x04", // 𣧔
+ 0x239d5: "\x02\x01\x03\x05\x04\x03\x01\x03\x04", // 𣧕
+ 0x239d6: "\x01\x03\x05\x04\x02\x03\x04\x04", // 𣧖
+ 0x239d7: "\x01\x03\x05\x04\x01\x03\x05\x04", // 𣧗
+ 0x239d8: "\x01\x03\x05\x04\x03\x01\x01\x02", // 𣧘
+ 0x239d9: "\x01\x03\x05\x04\x03\x01\x01\x02", // 𣧙
+ 0x239da: "\x03\x05\x01\x01\x01\x03\x05\x04", // 𣧚
+ 0x239db: "\x01\x03\x05\x04\x04\x03\x03\x04", // 𣧛
+ 0x239dc: "\x01\x03\x05\x04\x05\x02\x01\x05", // 𣧜
+ 0x239dd: "\x01\x03\x05\x04\x02\x05\x03\x04\x01", // 𣧝
+ 0x239de: "\x01\x03\x05\x04\x03\x01\x01\x03\x04", // 𣧞
+ 0x239df: "\x01\x03\x05\x04\x05\x01\x05\x01\x05", // 𣧟
+ 0x239e0: "\x01\x03\x05\x04\x03\x04\x02\x04\x04", // 𣧠
+ 0x239e1: "\x01\x03\x05\x04\x01\x05\x05\x03\x04", // 𣧡
+ 0x239e2: "\x01\x03\x05\x04\x04\x05\x02\x03\x04", // 𣧢
+ 0x239e3: "\x01\x03\x05\x04\x01\x01\x02\x03\x04", // 𣧣
+ 0x239e4: "\x01\x03\x05\x04\x01\x02\x05\x01\x02", // 𣧤
+ 0x239e5: "\x01\x03\x05\x04\x05\x05\x04\x05\x03", // 𣧥
+ 0x239e6: "\x01\x03\x05\x04\x01\x03\x02\x05\x02", // 𣧦
+ 0x239e7: "\x01\x03\x05\x04\x01\x03\x03\x04\x04", // 𣧧
+ 0x239e8: "\x01\x03\x05\x04\x03\x02\x05\x02\x03", // 𣧨
+ 0x239e9: "\x01\x03\x05\x04\x03\x05\x04\x04\x04", // 𣧩
+ 0x239ea: "\x01\x03\x05\x04\x05\x02\x02\x05\x02", // 𣧪
+ 0x239eb: "\x01\x03\x05\x04\x03\x01\x02\x01\x01", // 𣧫
+ 0x239ec: "\x01\x03\x05\x04\x03\x05\x02\x05\x01", // 𣧬
+ 0x239ed: "\x01\x03\x05\x04\x03\x02\x01\x02\x01", // 𣧭
+ 0x239ee: "\x02\x01\x03\x05\x04\x01\x02\x05\x01", // 𣧮
+ 0x239ef: "\x01\x03\x05\x04\x03\x04\x03\x01\x02", // 𣧯
+ 0x239f0: "\x01\x03\x05\x04\x01\x02\x05\x03\x04", // 𣧰
+ 0x239f1: "\x01\x03\x05\x04\x02\x05\x02\x02\x01", // 𣧱
+ 0x239f2: "\x01\x03\x05\x04\x04\x03\x01\x02\x03\x04", // 𣧲
+ 0x239f3: "\x01\x03\x05\x04\x03\x05\x04\x02\x05\x01", // 𣧳
+ 0x239f4: "\x01\x03\x05\x04\x02\x05\x01\x01\x03\x04", // 𣧴
+ 0x239f5: "\x01\x03\x05\x04\x01\x03\x01\x05\x03\x04", // 𣧵
+ 0x239f6: "\x01\x03\x05\x04\x03\x04\x04\x03\x05\x04", // 𣧶
+ 0x239f7: "\x01\x03\x05\x04\x03\x05\x01\x02\x03\x04", // 𣧷
+ 0x239f8: "\x01\x03\x05\x04\x01\x01\x03\x05\x03\x04", // 𣧸
+ 0x239f9: "\x01\x03\x05\x04\x01\x02\x02\x01\x01\x01", // 𣧹
+ 0x239fa: "\x01\x03\x05\x04\x02\x05\x01\x01\x02\x02", // 𣧺
+ 0x239fb: "\x01\x03\x05\x04\x03\x05\x03\x04\x03\x04", // 𣧻
+ 0x239fc: "\x01\x03\x05\x04\x03\x05\x01\x03\x05\x05", // 𣧼
+ 0x239fd: "\x01\x03\x05\x04\x05\x05\x05\x02\x05\x02", // 𣧽
+ 0x239fe: "\x01\x03\x05\x04\x05\x01\x01\x05\x03\x04", // 𣧾
+ 0x239ff: "\x01\x03\x05\x04\x01\x03\x05\x04\x02\x02", // 𣧿
+ 0x23a00: "\x01\x03\x02\x04\x01\x03\x05\x04\x01\x05", // 𣨀
+ 0x23a01: "\x01\x03\x05\x04\x01\x02\x05\x02\x03\x04", // 𣨁
+ 0x23a02: "\x01\x03\x05\x04\x01\x05\x04\x01\x02\x01", // 𣨂
+ 0x23a03: "\x01\x03\x05\x04\x02\x05\x01\x01\x02\x04", // 𣨃
+ 0x23a04: "\x02\x01\x03\x05\x04\x03\x04\x01\x02\x05\x01", // 𣨄
+ 0x23a05: "\x01\x03\x05\x04\x03\x04\x04\x03\x01\x02\x04", // 𣨅
+ 0x23a06: "\x01\x03\x05\x04\x03\x02\x05\x01\x01\x03\x05", // 𣨆
+ 0x23a07: "\x01\x03\x05\x04\x01\x03\x01\x05\x02\x05\x01", // 𣨇
+ 0x23a08: "\x01\x03\x05\x04\x01\x02\x05\x01\x01\x02\x04", // 𣨈
+ 0x23a09: "\x01\x03\x05\x04\x04\x01\x02\x05\x01\x05\x02", // 𣨉
+ 0x23a0a: "\x01\x03\x05\x04\x01\x02\x01\x03\x02\x01\x05", // 𣨊
+ 0x23a0b: "\x01\x03\x05\x04\x01\x02\x01\x03\x03\x01\x02", // 𣨋
+ 0x23a0c: "\x01\x03\x05\x04\x04\x01\x01\x01\x02\x05\x01", // 𣨌
+ 0x23a0d: "\x01\x03\x05\x04\x03\x05\x03\x05\x01\x01\x02", // 𣨍
+ 0x23a0e: "\x01\x03\x05\x04\x03\x04\x03\x04\x01\x02\x01", // 𣨎
+ 0x23a0f: "\x02\x01\x03\x05\x04\x02\x05\x05\x01\x05\x05\x04", // 𣨏
+ 0x23a10: "\x01\x03\x05\x04\x03\x02\x03\x01\x02\x01\x01", // 𣨐
+ 0x23a11: "\x01\x02\x01\x04\x05\x01\x03\x05\x04\x01\x05", // 𣨑
+ 0x23a12: "\x01\x03\x05\x04\x03\x05\x05\x04\x02\x03\x04", // 𣨒
+ 0x23a13: "\x01\x03\x05\x04\x03\x01\x02\x01\x02\x05\x01", // 𣨓
+ 0x23a14: "\x01\x03\x05\x04\x03\x02\x03\x02\x05\x01\x01", // 𣨔
+ 0x23a15: "\x01\x03\x05\x04\x02\x05\x01\x03\x02\x05\x01", // 𣨕
+ 0x23a16: "\x02\x01\x03\x05\x04\x03\x03\x02\x02\x05\x01\x01\x01", // 𣨖
+ 0x23a17: "\x01\x02\x03\x04\x03\x03\x01\x02\x01\x03\x05\x04", // 𣨗
+ 0x23a18: "\x01\x03\x05\x04\x01\x02\x01\x02\x03\x01\x03\x04", // 𣨘
+ 0x23a19: "\x01\x03\x05\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 𣨙
+ 0x23a1a: "\x01\x03\x05\x04\x04\x01\x05\x04\x01\x02\x03\x04", // 𣨚
+ 0x23a1b: "\x01\x03\x05\x04\x04\x01\x03\x04\x03\x04\x01\x02", // 𣨛
+ 0x23a1c: "\x01\x03\x05\x04\x04\x01\x03\x02\x03\x05\x04\x04", // 𣨜
+ 0x23a1d: "\x01\x03\x05\x04\x04\x01\x05\x03\x03\x04\x04\x04", // 𣨝
+ 0x23a1e: "\x01\x03\x05\x04\x01\x01\x01\x03\x04\x01\x01\x02", // 𣨞
+ 0x23a1f: "\x01\x03\x05\x04\x02\x05\x01\x01\x03\x05\x03\x03", // 𣨟
+ 0x23a20: "\x01\x03\x05\x04\x01\x02\x01\x02\x04\x05\x04\x04", // 𣨠
+ 0x23a21: "\x01\x03\x05\x04\x03\x02\x01\x02\x01\x02\x05\x02", // 𣨡
+ 0x23a22: "\x01\x03\x05\x04\x05\x01\x03\x05\x02\x02\x05\x02", // 𣨢
+ 0x23a23: "\x01\x03\x05\x04\x04\x01\x02\x05\x01\x02\x03\x04", // 𣨣
+ 0x23a24: "\x01\x03\x05\x04\x01\x02\x05\x01\x01\x05\x03\x04", // 𣨤
+ 0x23a25: "\x01\x03\x05\x04\x03\x05\x01\x01\x03\x05\x01\x01", // 𣨥
+ 0x23a26: "\x02\x01\x02\x05\x01\x03\x04\x03\x04\x01\x05\x03\x04", // 𣨦
+ 0x23a27: "\x01\x03\x05\x04\x04\x01\x05\x04\x02\x05\x01\x01", // 𣨧
+ 0x23a28: "\x01\x03\x05\x04\x02\x05\x02\x05\x01\x01\x05\x04", // 𣨨
+ 0x23a29: "\x01\x03\x05\x04\x04\x04\x05\x02\x05\x01\x01\x01", // 𣨩
+ 0x23a2a: "\x01\x03\x05\x04\x02\x05\x01\x01\x01\x02\x03\x04", // 𣨪
+ 0x23a2b: "\x01\x03\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𣨫
+ 0x23a2c: "\x01\x03\x05\x04\x04\x03\x03\x04\x04\x03\x03\x04", // 𣨬
+ 0x23a2d: "\x01\x03\x05\x04\x04\x04\x05\x02\x05\x01\x05\x01", // 𣨭
+ 0x23a2e: "\x01\x03\x05\x04\x03\x04\x04\x03\x03\x01\x02\x01", // 𣨮
+ 0x23a2f: "\x02\x01\x03\x05\x04\x03\x05\x01\x05\x02\x05\x01\x01", // 𣨯
+ 0x23a30: "\x01\x02\x01\x03\x01\x05\x01\x03\x05\x04\x03\x05", // 𣨰
+ 0x23a31: "\x01\x03\x05\x04\x02\x05\x01\x02\x02\x05\x02\x05\x01", // 𣨱
+ 0x23a32: "\x01\x03\x05\x04\x04\x01\x03\x01\x02\x02\x01\x05\x04", // 𣨲
+ 0x23a33: "\x01\x03\x05\x04\x01\x02\x02\x01\x03\x04\x05\x02", // 𣨳
+ 0x23a34: "\x01\x03\x05\x04\x01\x02\x02\x01\x01\x01\x02\x03\x04", // 𣨴
+ 0x23a35: "\x01\x03\x05\x04\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 𣨵
+ 0x23a36: "\x01\x03\x05\x04\x05\x05\x01\x03\x05\x03\x03\x03\x04", // 𣨶
+ 0x23a37: "\x02\x01\x03\x05\x04\x02\x05\x01\x02\x02\x05\x02\x05\x01", // 𣨷
+ 0x23a38: "\x01\x03\x05\x04\x05\x05\x05\x01\x03\x05\x04\x02\x02", // 𣨸
+ 0x23a39: "\x01\x03\x05\x04\x04\x01\x04\x03\x01\x03\x03\x03\x03", // 𣨹
+ 0x23a3a: "\x01\x03\x05\x04\x02\x05\x05\x04\x05\x02\x05\x01\x01", // 𣨺
+ 0x23a3b: "\x04\x01\x02\x05\x01\x04\x05\x01\x03\x05\x04\x01\x05", // 𣨻
+ 0x23a3c: "\x01\x03\x05\x04\x01\x02\x02\x02\x04\x05\x02\x05\x02", // 𣨼
+ 0x23a3d: "\x01\x03\x05\x04\x01\x02\x01\x02\x02\x05\x01\x03\x04", // 𣨽
+ 0x23a3e: "\x01\x03\x05\x04\x02\x05\x01\x01\x03\x01\x01\x02\x01", // 𣨾
+ 0x23a3f: "\x01\x03\x05\x04\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 𣨿
+ 0x23a40: "\x01\x03\x05\x04\x04\x05\x01\x03\x02\x05\x01\x02\x02", // 𣩀
+ 0x23a41: "\x01\x03\x05\x04\x03\x05\x01\x02\x01\x03\x03\x01\x02", // 𣩁
+ 0x23a42: "\x01\x02\x01\x03\x03\x01\x02\x01\x03\x05\x04\x03\x05", // 𣩂
+ 0x23a43: "\x01\x03\x05\x04\x05\x01\x01\x05\x04\x05\x02", // 𣩃
+ 0x23a44: "\x01\x03\x05\x04\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 𣩄
+ 0x23a45: "\x01\x03\x05\x04\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 𣩅
+ 0x23a46: "\x01\x03\x05\x04\x04\x05\x02\x05\x01\x01\x04\x01\x03\x04", // 𣩆
+ 0x23a47: "\x04\x01\x03\x03\x02\x01\x02\x04\x01\x03\x05\x04\x01\x05", // 𣩇
+ 0x23a48: "\x01\x03\x05\x04\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01", // 𣩈
+ 0x23a49: "\x01\x02\x01\x04\x05\x01\x03\x05\x04\x01\x05\x04\x03\x01", // 𣩉
+ 0x23a4a: "\x01\x03\x05\x04\x03\x05\x04\x01\x05\x02\x01\x02\x03\x04", // 𣩊
+ 0x23a4b: "\x01\x03\x05\x04\x01\x01\x02\x03\x04\x03\x01\x02\x01\x01", // 𣩋
+ 0x23a4c: "\x01\x03\x05\x04\x02\x01\x01\x01\x05\x04\x03\x01\x01\x02", // 𣩌
+ 0x23a4d: "\x01\x03\x05\x04\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 𣩍
+ 0x23a4e: "\x01\x03\x05\x04\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x04", // 𣩎
+ 0x23a4f: "\x01\x03\x05\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05", // 𣩏
+ 0x23a50: "\x01\x03\x05\x04\x04\x04\x05\x03\x02\x01\x03\x02\x05\x01\x01", // 𣩐
+ 0x23a51: "\x01\x03\x05\x04\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𣩑
+ 0x23a52: "\x01\x03\x05\x04\x01\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01", // 𣩒
+ 0x23a53: "\x01\x03\x05\x04\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 𣩓
+ 0x23a54: "\x01\x03\x05\x04\x05\x05\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𣩔
+ 0x23a55: "\x02\x01\x03\x05\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𣩕
+ 0x23a56: "\x03\x04\x04\x03\x02\x05\x02\x01\x01\x01\x03\x05\x04\x03\x05", // 𣩖
+ 0x23a57: "\x01\x03\x05\x04\x05\x02\x01\x03\x03\x05\x04\x04\x01\x02\x04", // 𣩗
+ 0x23a58: "\x01\x03\x05\x04\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04", // 𣩘
+ 0x23a59: "\x01\x03\x05\x04\x01\x02\x01\x02\x01\x01\x05\x04\x04\x04\x04", // 𣩙
+ 0x23a5a: "\x01\x03\x05\x04\x01\x02\x02\x01\x01\x01\x02\x01\x02\x05\x01", // 𣩚
+ 0x23a5b: "\x01\x03\x05\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 𣩛
+ 0x23a5c: "\x01\x03\x05\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05", // 𣩜
+ 0x23a5d: "\x01\x03\x05\x04\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04", // 𣩝
+ 0x23a5e: "\x01\x03\x05\x04\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x01\x01", // 𣩞
+ 0x23a5f: "\x01\x03\x05\x04\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 𣩟
+ 0x23a60: "\x01\x03\x05\x04\x01\x02\x02\x01\x01\x01\x03\x04\x03\x03\x01\x02", // 𣩠
+ 0x23a61: "\x01\x03\x05\x04\x02\x05\x01\x01\x01\x02\x02\x01\x01\x01\x05\x04", // 𣩡
+ 0x23a62: "\x01\x03\x05\x04\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 𣩢
+ 0x23a63: "\x01\x03\x05\x04\x01\x02\x01\x02\x04\x01\x05\x04\x01\x02\x03\x04", // 𣩣
+ 0x23a64: "\x01\x03\x05\x04\x01\x02\x01\x05\x05\x01\x02\x01\x04\x05\x04\x04", // 𣩤
+ 0x23a65: "\x01\x03\x05\x04\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𣩥
+ 0x23a66: "\x01\x03\x05\x04\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 𣩦
+ 0x23a67: "\x01\x03\x05\x04\x04\x03\x01\x01\x01\x02\x04\x03\x01\x02\x05\x01", // 𣩧
+ 0x23a68: "\x01\x03\x05\x04\x01\x02\x01\x02\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 𣩨
+ 0x23a69: "\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x01\x03\x05\x04", // 𣩩
+ 0x23a6a: "\x01\x03\x05\x04\x02\x01\x02\x01\x01\x03\x01\x02\x03\x03\x05\x03\x04", // 𣩪
+ 0x23a6b: "\x01\x02\x03\x04\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x02\x03\x04", // 𣩫
+ 0x23a6c: "\x01\x03\x05\x04\x01\x02\x05\x02\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𣩬
+ 0x23a6d: "\x03\x04\x03\x04\x02\x05\x01\x03\x05\x03\x04\x01\x03\x05\x04\x01\x05", // 𣩭
+ 0x23a6e: "\x01\x03\x05\x04\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𣩮
+ 0x23a6f: "\x01\x03\x05\x04\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x04\x04\x04\x04", // 𣩯
+ 0x23a70: "\x01\x03\x05\x04\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𣩰
+ 0x23a71: "\x01\x03\x05\x04\x01\x02\x01\x02\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 𣩱
+ 0x23a72: "\x01\x03\x05\x04\x01\x02\x02\x01\x02\x05\x01\x03\x04\x04\x03\x01\x02\x01", // 𣩲
+ 0x23a73: "\x01\x03\x05\x04\x01\x05\x03\x05\x01\x05\x03\x04\x02\x05\x01\x01", // 𣩳
+ 0x23a74: "\x05\x01\x05\x05\x04\x02\x05\x01\x02\x01\x04\x01\x03\x05\x04\x01\x05", // 𣩴
+ 0x23a75: "\x01\x03\x05\x04\x04\x04\x05\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𣩵
+ 0x23a76: "\x01\x03\x05\x04\x05\x04\x03\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𣩶
+ 0x23a77: "\x01\x03\x05\x04\x01\x02\x01\x02\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𣩷
+ 0x23a78: "\x01\x03\x02\x05\x01\x04\x01\x03\x04\x03\x04\x01\x02\x01\x03\x05\x04\x03\x05", // 𣩸
+ 0x23a79: "\x01\x03\x05\x04\x04\x01\x02\x05\x02\x02\x01\x02\x04\x01\x03\x04\x03\x05\x03\x04", // 𣩹
+ 0x23a7a: "\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x04\x05\x01\x03\x05\x04\x01\x05", // 𣩺
+ 0x23a7b: "\x02\x01\x03\x05\x04\x04\x01\x02\x05\x02\x02\x01\x02\x04\x01\x03\x04\x03\x05\x03\x04", // 𣩻
+ 0x23a7c: "\x01\x03\x05\x04\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 𣩼
+ 0x23a7d: "\x01\x03\x05\x04\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 𣩽
+ 0x23a7e: "\x01\x02\x01\x02\x03\x04\x01\x02\x05\x01\x01\x02\x01\x02\x04\x05\x01\x03\x05\x04\x01\x05", // 𣩾
+ 0x23a7f: "\x01\x03\x05\x04\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𣩿
+ 0x23a80: "\x01\x03\x05\x04\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𣪀
+ 0x23a81: "\x01\x03\x05\x04\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 𣪁
+ 0x23a82: "\x03\x05\x04\x01\x03\x05\x05\x04", // 𣪂
+ 0x23a83: "\x05\x01\x03\x05\x03\x05\x05\x04", // 𣪃
+ 0x23a84: "\x03\x05\x03\x04\x03\x05\x05\x04", // 𣪄
+ 0x23a85: "\x01\x02\x01\x02\x01\x03\x05\x05\x04", // 𣪅
+ 0x23a86: "\x02\x05\x01\x01\x05\x03\x05\x05\x04", // 𣪆
+ 0x23a87: "\x01\x02\x02\x05\x01\x03\x05\x05\x04", // 𣪇
+ 0x23a88: "\x03\x05\x04\x03\x05\x04\x03\x05\x05\x04", // 𣪈
+ 0x23a89: "\x02\x05\x01\x05\x01\x03\x03\x05\x05\x04", // 𣪉
+ 0x23a8a: "\x01\x02\x01\x04\x05\x01\x03\x05\x05\x04", // 𣪊
+ 0x23a8b: "\x01\x02\x04\x01\x03\x04\x04\x03\x05\x05\x04", // 𣪋
+ 0x23a8c: "\x01\x02\x05\x01\x04\x03\x01\x03\x05\x05\x04", // 𣪌
+ 0x23a8d: "\x05\x01\x03\x03\x05\x03\x05\x03\x05\x05\x04", // 𣪍
+ 0x23a8e: "\x01\x02\x01\x02\x05\x01\x01\x03\x05\x05\x04", // 𣪎
+ 0x23a8f: "\x05\x01\x01\x03\x05\x01\x01\x03\x05\x05\x04", // 𣪏
+ 0x23a90: "\x05\x01\x05\x05\x01\x01\x05\x03\x05\x05\x04", // 𣪐
+ 0x23a91: "\x01\x05\x01\x01\x02\x03\x04\x03\x05\x05\x04", // 𣪑
+ 0x23a92: "\x01\x02\x01\x04\x05\x01\x05\x03\x05\x05\x04", // 𣪒
+ 0x23a93: "\x02\x05\x01\x03\x05\x04\x01\x03\x05\x05\x04", // 𣪓
+ 0x23a94: "\x03\x05\x01\x03\x01\x01\x05\x03\x05\x05\x04", // 𣪔
+ 0x23a95: "\x03\x02\x05\x01\x01\x05\x04\x03\x05\x05\x04", // 𣪕
+ 0x23a96: "\x03\x04\x03\x01\x02\x03\x04\x03\x05\x05\x04", // 𣪖
+ 0x23a97: "\x01\x02\x01\x02\x05\x02\x01\x03\x05\x05\x04", // 𣪗
+ 0x23a98: "\x03\x02\x05\x01\x01\x03\x05\x03\x05\x05\x04", // 𣪘
+ 0x23a99: "\x02\x01\x02\x05\x01\x01\x01\x02\x03\x05\x05\x04", // 𣪙
+ 0x23a9a: "\x01\x02\x02\x01\x02\x05\x01\x01\x03\x05\x05\x04", // 𣪚
+ 0x23a9b: "\x01\x02\x01\x04\x05\x02\x05\x01\x03\x05\x05\x04", // 𣪛
+ 0x23a9c: "\x03\x01\x02\x02\x01\x01\x03\x05\x03\x05\x05\x04", // 𣪜
+ 0x23a9d: "\x01\x02\x01\x04\x05\x01\x02\x01\x03\x05\x05\x04", // 𣪝
+ 0x23a9e: "\x03\x02\x05\x01\x01\x01\x03\x02\x03\x05\x05\x04", // 𣪞
+ 0x23a9f: "\x01\x05\x04\x03\x05\x04\x01\x03\x05\x05\x04", // 𣪟
+ 0x23aa0: "\x01\x02\x05\x01\x01\x01\x02\x05\x02\x03\x05\x05\x04", // 𣪠
+ 0x23aa1: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x03\x05\x05\x04", // 𣪡
+ 0x23aa2: "\x04\x01\x02\x05\x01\x04\x05\x01\x02\x03\x05\x05\x04", // 𣪢
+ 0x23aa3: "\x05\x01\x01\x03\x05\x03\x03\x03\x04\x03\x05\x05\x04", // 𣪣
+ 0x23aa4: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04\x05\x03", // 𣪤
+ 0x23aa5: "\x01\x02\x01\x04\x05\x01\x03\x05\x05\x04\x02\x05\x01", // 𣪥
+ 0x23aa6: "\x03\x01\x01\x03\x02\x05\x01\x01\x01\x03\x05\x05\x04", // 𣪦
+ 0x23aa7: "\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x05\x05\x04", // 𣪧
+ 0x23aa8: "\x01\x02\x01\x04\x05\x01\x01\x03\x04\x03\x05\x05\x04", // 𣪨
+ 0x23aa9: "\x03\x04\x03\x04\x01\x02\x03\x05\x04\x03\x05\x05\x04", // 𣪩
+ 0x23aaa: "\x04\x01\x03\x04\x01\x01\x02\x05\x01\x03\x05\x05\x04", // 𣪪
+ 0x23aab: "\x05\x01\x03\x01\x03\x04\x01\x03\x04\x03\x05\x05\x04", // 𣪫
+ 0x23aac: "\x01\x02\x01\x04\x05\x03\x01\x01\x02\x03\x05\x05\x04", // 𣪬
+ 0x23aad: "\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05\x05\x04", // 𣪭
+ 0x23aae: "\x04\x04\x05\x04\x01\x04\x03\x01\x01\x02\x03\x05\x05\x04", // 𣪮
+ 0x23aaf: "\x04\x04\x05\x02\x05\x01\x03\x02\x05\x01\x03\x05\x05\x04", // 𣪯
+ 0x23ab0: "\x03\x05\x04\x05\x05\x02\x05\x02\x02\x01\x03\x05\x05\x04", // 𣪰
+ 0x23ab1: "\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01\x03\x05\x05\x04", // 𣪱
+ 0x23ab2: "\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x03\x05\x05\x04", // 𣪲
+ 0x23ab3: "\x01\x02\x01\x04\x05\x01\x03\x05\x03\x04\x03\x05\x05\x04", // 𣪳
+ 0x23ab4: "\x05\x05\x04\x05\x03\x05\x03\x03\x03\x04\x03\x05\x05\x04", // 𣪴
+ 0x23ab5: "\x05\x01\x03\x01\x02\x02\x01\x05\x03\x04\x03\x05\x05\x04", // 𣪵
+ 0x23ab6: "\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03\x03\x05\x05\x04", // 𣪶
+ 0x23ab7: "\x03\x02\x01\x05\x01\x01\x03\x01\x02\x01\x03\x05\x05\x04", // 𣪷
+ 0x23ab8: "\x01\x02\x01\x04\x05\x03\x01\x02\x02\x05\x01\x03\x05\x05\x04", // 𣪸
+ 0x23ab9: "\x01\x02\x01\x04\x05\x01\x05\x02\x02\x05\x02\x03\x05\x05\x04", // 𣪹
+ 0x23aba: "\x01\x02\x04\x05\x01\x05\x05\x04\x02\x03\x04\x03\x05\x05\x04", // 𣪺
+ 0x23abb: "\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04\x03\x05\x05\x04", // 𣪻
+ 0x23abc: "\x02\x04\x03\x04\x05\x02\x05\x01\x01\x05\x02\x03\x03\x05\x05\x04", // 𣪼
+ 0x23abd: "\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01\x03\x05\x05\x04", // 𣪽
+ 0x23abe: "\x05\x01\x05\x01\x02\x01\x01\x02\x01\x02\x05\x01\x03\x05\x05\x04", // 𣪾
+ 0x23abf: "\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x03\x04\x03\x05\x05\x04", // 𣪿
+ 0x23ac0: "\x01\x02\x01\x04\x05\x03\x01\x02\x01\x02\x05\x01\x03\x05\x05\x04", // 𣫀
+ 0x23ac1: "\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x04\x03\x05\x05\x04", // 𣫁
+ 0x23ac2: "\x01\x02\x04\x05\x01\x01\x02\x05\x01\x01\x01\x02\x03\x05\x05\x04", // 𣫂
+ 0x23ac3: "\x01\x02\x01\x04\x05\x03\x04\x04\x03\x05\x02\x01\x03\x05\x05\x04", // 𣫃
+ 0x23ac4: "\x01\x02\x03\x04\x01\x02\x03\x04\x02\x05\x01\x01\x03\x05\x05\x04", // 𣫄
+ 0x23ac5: "\x01\x02\x01\x04\x05\x03\x05\x03\x05\x01\x01\x02\x03\x05\x05\x04", // 𣫅
+ 0x23ac6: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04\x01\x02\x01\x02\x01", // 𣫆
+ 0x23ac7: "\x01\x02\x01\x04\x05\x03\x05\x01\x01\x02\x03\x04\x03\x05\x05\x04", // 𣫇
+ 0x23ac8: "\x01\x02\x01\x04\x05\x01\x02\x05\x03\x05\x01\x01\x03\x05\x05\x04", // 𣫈
+ 0x23ac9: "\x01\x02\x01\x04\x05\x03\x01\x02\x03\x04\x03\x05\x05\x04\x05\x03", // 𣫉
+ 0x23aca: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04\x01\x02\x02\x05\x01", // 𣫊
+ 0x23acb: "\x02\x01\x04\x05\x03\x04\x04\x03\x01\x02\x03\x04\x03\x05\x05\x04", // 𣫋
+ 0x23acc: "\x01\x02\x01\x04\x05\x01\x03\x04\x04\x03\x05\x02\x01\x03\x05\x05\x04", // 𣫌
+ 0x23acd: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x03\x05\x05\x04", // 𣫍
+ 0x23ace: "\x01\x02\x01\x04\x05\x01\x01\x02\x05\x01\x02\x03\x04\x03\x05\x05\x04", // 𣫎
+ 0x23acf: "\x03\x02\x01\x05\x01\x01\x04\x01\x01\x01\x02\x05\x01\x03\x05\x05\x04", // 𣫏
+ 0x23ad0: "\x01\x02\x01\x05\x01\x02\x01\x02\x05\x01\x01\x02\x04\x03\x05\x05\x04", // 𣫐
+ 0x23ad1: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x01\x03\x02\x03\x05\x05\x04", // 𣫑
+ 0x23ad2: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04\x01\x05\x05\x05\x01\x02\x01", // 𣫒
+ 0x23ad3: "\x01\x02\x01\x04\x05\x01\x01\x02\x03\x04\x01\x02\x03\x04\x03\x05\x05\x04", // 𣫓
+ 0x23ad4: "\x01\x02\x01\x04\x05\x01\x01\x03\x05\x03\x03\x04\x03\x04\x03\x05\x05\x04", // 𣫔
+ 0x23ad5: "\x02\x05\x01\x02\x01\x05\x01\x03\x01\x02\x02\x01\x03\x04\x03\x05\x05\x04", // 𣫕
+ 0x23ad6: "\x04\x01\x04\x03\x01\x01\x02\x01\x03\x05\x03\x03\x03\x04\x03\x05\x05\x04", // 𣫖
+ 0x23ad7: "\x01\x02\x01\x04\x05\x02\x05\x01\x04\x03\x01\x02\x03\x04\x03\x05\x05\x04", // 𣫗
+ 0x23ad8: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04\x03\x05\x04\x03\x05\x02\x04", // 𣫘
+ 0x23ad9: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04\x02\x05\x01\x01\x01\x02\x03\x04", // 𣫙
+ 0x23ada: "\x04\x01\x04\x03\x01\x01\x01\x02\x01\x03\x05\x03\x03\x03\x04\x03\x05\x05\x04", // 𣫚
+ 0x23adb: "\x04\x01\x02\x02\x01\x01\x04\x05\x01\x03\x05\x03\x03\x03\x04\x03\x05\x05\x04", // 𣫛
+ 0x23adc: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04\x02\x01\x02\x05\x01\x01\x01\x02", // 𣫜
+ 0x23add: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04\x04\x04\x05\x03\x04\x01\x02\x01", // 𣫝
+ 0x23ade: "\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x03\x02\x01\x05\x01\x01\x03\x05\x05\x04", // 𣫞
+ 0x23adf: "\x05\x01\x05\x01\x02\x01\x01\x02\x01\x05\x04\x01\x05\x04\x01\x03\x05\x05\x04", // 𣫟
+ 0x23ae0: "\x01\x02\x04\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x05\x05\x04", // 𣫠
+ 0x23ae1: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x03\x05\x04\x01\x05\x02\x03\x05\x05\x04", // 𣫡
+ 0x23ae2: "\x03\x01\x04\x03\x01\x04\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x03\x05\x05\x04", // 𣫢
+ 0x23ae3: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04\x01\x02\x02\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 𣫣
+ 0x23ae4: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 𣫤
+ 0x23ae5: "\x01\x03\x01\x01\x03\x04\x05\x03\x05\x05\x04\x04\x01\x03\x05\x01\x01\x02\x04\x01\x03\x04", // 𣫥
+ 0x23ae6: "\x01\x02\x05\x01\x01\x01\x02\x03\x05\x05\x04\x02\x01\x05\x03\x01\x05\x03\x05\x04\x03\x05", // 𣫦
+ 0x23ae7: "\x01\x02\x01\x02\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01\x03\x05\x05\x04", // 𣫧
+ 0x23ae8: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04\x03\x04\x01\x02\x05\x02\x02\x01\x02\x05\x02\x02\x01", // 𣫨
+ 0x23ae9: "\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x03\x02\x01\x05\x01\x01\x01\x02\x03\x04\x03\x05\x05\x04", // 𣫩
+ 0x23aea: "\x01\x02\x01\x04\x05\x03\x01\x02\x03\x04\x03\x05\x05\x04\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𣫪
+ 0x23aeb: "\x01\x03\x01\x01\x03\x04\x05\x03\x05\x05\x04\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 𣫫
+ 0x23aec: "\x05\x05\x02\x02\x01", // 𣫬
+ 0x23aed: "\x04\x01\x05\x05\x04\x01\x04", // 𣫭
+ 0x23aee: "\x05\x02\x01\x05\x05\x04\x01\x04", // 𣫮
+ 0x23aef: "\x05\x05\x02\x01\x05\x05\x02\x01", // 𣫯
+ 0x23af0: "\x05\x05\x04\x01\x04\x05\x02\x01\x05", // 𣫰
+ 0x23af1: "\x01\x01\x05\x04\x05\x05\x02\x01", // 𣫱
+ 0x23af2: "\x05\x05\x04\x01\x04\x03\x02\x01\x05", // 𣫲
+ 0x23af3: "\x05\x05\x02\x01\x02\x05\x02\x02\x01", // 𣫳
+ 0x23af4: "\x01\x02\x01\x01\x02\x01\x05\x05\x02\x01", // 𣫴
+ 0x23af5: "\x01\x03\x04\x01\x01\x02\x01\x05\x05\x02\x01", // 𣫵
+ 0x23af6: "\x02\x03\x04\x01\x01\x02\x01\x05\x05\x02\x01", // 𣫶
+ 0x23af7: "\x03\x01\x05\x05\x04\x01\x04\x04\x03\x01\x01\x02", // 𣫷
+ 0x23af8: "\x03\x01\x05\x05\x04\x01\x04\x01\x02\x02\x01\x05", // 𣫸
+ 0x23af9: "\x02\x05\x01\x01\x02\x01\x01\x02\x01\x05\x05\x02\x01", // 𣫹
+ 0x23afa: "\x04\x01\x05\x05\x04\x01\x04\x04\x01\x05\x04\x03\x05\x04\x01", // 𣫺
+ 0x23afb: "\x05\x05\x02\x01\x02\x05\x01\x01\x02\x03\x04\x05\x03\x01", // 𣫻
+ 0x23afc: "\x03\x01\x05\x05\x04\x01\x04\x04\x04\x05\x03\x05\x04\x05\x05", // 𣫼
+ 0x23afd: "\x03\x01\x02\x03\x04\x01\x03\x05\x05\x03\x04\x05\x05\x03\x01", // 𣫽
+ 0x23afe: "\x03\x01\x05\x05\x04\x01\x04\x04\x04\x05\x03\x04\x03\x04\x02\x05\x01", // 𣫾
+ 0x23aff: "\x04\x03\x01\x02\x03\x04\x01\x03\x05\x05\x03\x04\x05\x05\x04\x01\x04", // 𣫿
+ 0x23b00: "\x01\x03\x04\x03\x04\x02\x03\x04\x01\x03\x05\x05\x03\x04\x02\x05\x04\x01\x04", // 𣬀
+ 0x23b01: "\x03\x01\x05\x05\x04\x01\x04\x01\x02\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 𣬁
+ 0x23b02: "\x01\x05\x01\x05\x01\x01\x02", // 𣬂
+ 0x23b03: "\x01\x05\x01\x05\x03\x05\x05", // 𣬃
+ 0x23b04: "\x01\x05\x01\x05\x03\x05\x05\x03", // 𣬄
+ 0x23b05: "\x01\x05\x01\x05\x01\x05\x01\x05", // 𣬅
+ 0x23b06: "\x01\x05\x01\x05\x01\x03\x05\x04", // 𣬆
+ 0x23b07: "\x01\x05\x03\x05\x03\x05\x05\x03", // 𣬇
+ 0x23b08: "\x03\x02\x05\x03\x04\x01\x01\x05\x01\x05", // 𣬈
+ 0x23b09: "\x03\x02\x05\x03\x04\x01\x01\x05\x01\x05", // 𣬉
+ 0x23b0a: "\x01\x05\x01\x05\x01\x01\x02\x01\x01\x02", // 𣬊
+ 0x23b0b: "\x03\x05\x02\x05\x02\x02\x01\x01\x05\x01\x05", // 𣬋
+ 0x23b0c: "\x03\x02\x05\x03\x04\x04\x05\x01\x05\x01\x05", // 𣬌
+ 0x23b0d: "\x01\x02\x01\x02\x02\x05\x01\x02\x01\x01\x05\x01\x05", // 𣬍
+ 0x23b0e: "\x03\x05\x02\x05\x01\x01\x05\x01\x05\x05\x01\x03\x04", // 𣬎
+ 0x23b0f: "\x02\x01\x01\x01\x05\x02\x05\x02\x02\x01\x01\x05\x01\x05", // 𣬏
+ 0x23b10: "\x03\x05\x02\x05\x01\x01\x05\x01\x05\x02\x05\x01\x03\x04", // 𣬐
+ 0x23b11: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05", // 𣬑
+ 0x23b12: "\x03\x05\x02\x05\x01\x01\x05\x01\x05\x01\x02\x05\x01\x03\x04", // 𣬒
+ 0x23b13: "\x01\x05\x01\x05\x03\x04\x03\x04\x03\x04\x03\x04\x01\x03\x02", // 𣬓
+ 0x23b14: "\x03\x05\x02\x05\x02\x01\x01\x05\x01\x05\x01\x02\x05\x01\x03\x04", // 𣬔
+ 0x23b15: "\x03\x05\x02\x05\x01\x01\x05\x01\x05\x01\x02\x05\x01\x02\x05\x01", // 𣬕
+ 0x23b16: "\x03\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x01\x05\x01\x05\x01\x05\x01\x05", // 𣬖
+ 0x23b17: "\x01\x05\x01\x05\x02\x05\x01\x02\x01\x01\x05\x01\x05\x04\x03\x03\x04\x01\x03\x02", // 𣬗
+ 0x23b18: "\x01\x05\x01\x05\x02\x05\x02\x02\x01\x01\x05\x01\x05\x04\x03\x03\x04\x01\x03\x02", // 𣬘
+ 0x23b19: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05\x01\x05\x04\x01\x04\x03\x01\x02\x05\x01\x03\x05", // 𣬙
+ 0x23b1a: "\x03\x05\x02\x05\x01\x01\x05\x01\x05\x03\x05\x02\x05\x01\x03\x05\x04\x03\x05\x02\x05\x01\x03\x05\x04", // 𣬚
+ 0x23b1b: "\x03\x01\x01\x05", // 𣬛
+ 0x23b1c: "\x03\x01\x01\x05\x03\x05", // 𣬜
+ 0x23b1d: "\x03\x01\x01\x05\x05\x02", // 𣬝
+ 0x23b1e: "\x03\x01\x01\x05\x05\x03", // 𣬞
+ 0x23b1f: "\x03\x01\x01\x05\x02\x02", // 𣬟
+ 0x23b20: "\x03\x01\x01\x05\x03\x05", // 𣬠
+ 0x23b21: "\x05\x05\x05\x03\x01\x01\x05", // 𣬡
+ 0x23b22: "\x03\x01\x01\x05\x02\x05\x02", // 𣬢
+ 0x23b23: "\x03\x01\x01\x05\x02\x05\x01", // 𣬣
+ 0x23b24: "\x03\x01\x01\x05\x05\x02", // 𣬤
+ 0x23b25: "\x03\x01\x01\x05\x05\x02\x01", // 𣬥
+ 0x23b26: "\x02\x05\x01\x03\x01\x01\x05", // 𣬦
+ 0x23b27: "\x03\x01\x01\x05\x02\x05\x01", // 𣬧
+ 0x23b28: "\x03\x01\x01\x05\x03\x05\x04", // 𣬨
+ 0x23b29: "\x03\x04\x05\x03\x03\x01\x01\x05", // 𣬩
+ 0x23b2a: "\x01\x02\x05\x02\x03\x01\x01\x05", // 𣬪
+ 0x23b2b: "\x03\x01\x01\x05\x03\x04\x03\x02", // 𣬫
+ 0x23b2c: "\x03\x01\x01\x05\x03\x05\x05\x04", // 𣬬
+ 0x23b2d: "\x02\x05\x01\x01\x03\x01\x01\x05", // 𣬭
+ 0x23b2e: "\x01\x03\x05\x05\x03\x01\x01\x05", // 𣬮
+ 0x23b2f: "\x03\x01\x01\x05\x04\x04\x01\x02", // 𣬯
+ 0x23b30: "\x03\x01\x01\x05\x02\x05\x01\x01", // 𣬰
+ 0x23b31: "\x03\x01\x01\x05\x03\x04\x03\x04", // 𣬱
+ 0x23b32: "\x03\x01\x01\x05\x03\x01\x03\x04", // 𣬲
+ 0x23b33: "\x03\x01\x01\x05\x03\x01\x01\x02", // 𣬳
+ 0x23b34: "\x03\x01\x01\x05\x03\x05\x03\x04", // 𣬴
+ 0x23b35: "\x04\x01\x05\x03\x03\x01\x01\x05", // 𣬵
+ 0x23b36: "\x03\x01\x01\x05\x05\x02\x01\x05", // 𣬶
+ 0x23b37: "\x05\x02\x01\x05\x03\x01\x01\x05", // 𣬷
+ 0x23b38: "\x05\x03\x02\x05\x01\x03\x01\x01\x05", // 𣬸
+ 0x23b39: "\x03\x04\x01\x05\x04\x03\x01\x01\x05", // 𣬹
+ 0x23b3a: "\x03\x01\x01\x02\x01\x03\x01\x01\x05", // 𣬺
+ 0x23b3b: "\x05\x02\x05\x03\x04\x03\x01\x01\x05", // 𣬻
+ 0x23b3c: "\x03\x01\x01\x05\x05\x03\x02\x05\x04", // 𣬼
+ 0x23b3d: "\x03\x01\x01\x05\x01\x03\x05\x03\x04", // 𣬽
+ 0x23b3e: "\x01\x03\x02\x04\x01\x03\x01\x01\x05", // 𣬾
+ 0x23b3f: "\x03\x01\x01\x05\x01\x03\x02\x01\x01", // 𣬿
+ 0x23b40: "\x03\x05\x05\x01\x05\x03\x01\x01\x05", // 𣭀
+ 0x23b41: "\x02\x01\x02\x01\x01\x05\x03\x01\x01\x05", // 𣭁
+ 0x23b42: "\x02\x05\x01\x03\x04\x03\x01\x01\x05", // 𣭂
+ 0x23b43: "\x02\x05\x03\x04\x01\x03\x01\x01\x05", // 𣭃
+ 0x23b44: "\x05\x03\x01\x05\x04\x03\x01\x01\x05", // 𣭄
+ 0x23b45: "\x05\x04\x05\x02\x03\x03\x01\x01\x05", // 𣭅
+ 0x23b46: "\x03\x01\x01\x05\x05\x04\x02\x05\x01", // 𣭆
+ 0x23b47: "\x03\x01\x01\x05\x05\x05\x04\x01\x04", // 𣭇
+ 0x23b48: "\x03\x01\x01\x05\x04\x05\x04\x03\x04", // 𣭈
+ 0x23b49: "\x03\x01\x01\x05\x04\x01\x04\x03\x01", // 𣭉
+ 0x23b4a: "\x03\x01\x01\x05\x01\x03\x02\x05\x01", // 𣭊
+ 0x23b4b: "\x03\x01\x01\x05\x05\x03\x02\x05\x01", // 𣭋
+ 0x23b4c: "\x03\x01\x01\x05\x01\x01\x01\x03\x02", // 𣭌
+ 0x23b4d: "\x03\x01\x01\x05\x01\x02\x03\x05\x04", // 𣭍
+ 0x23b4e: "\x03\x01\x01\x05\x01\x02\x02\x05\x01", // 𣭎
+ 0x23b4f: "\x03\x01\x01\x05\x01\x03\x02\x05\x01", // 𣭏
+ 0x23b50: "\x03\x01\x01\x05\x01\x01\x02\x03\x04", // 𣭐
+ 0x23b51: "\x03\x01\x01\x05\x05\x02\x02\x05\x02", // 𣭑
+ 0x23b52: "\x03\x01\x01\x05\x02\x05\x01\x01\x01", // 𣭒
+ 0x23b53: "\x03\x01\x01\x05\x02\x05\x01\x03\x04", // 𣭓
+ 0x23b54: "\x03\x01\x01\x05\x03\x04\x01\x05\x04", // 𣭔
+ 0x23b55: "\x03\x01\x01\x05\x03\x04\x03\x03\x03", // 𣭕
+ 0x23b56: "\x02\x05\x01\x01\x05\x03\x01\x01\x05", // 𣭖
+ 0x23b57: "\x03\x01\x01\x05\x02\x05\x01\x05\x04", // 𣭗
+ 0x23b58: "\x05\x01\x05\x03\x02\x03\x01\x01\x05", // 𣭘
+ 0x23b59: "\x03\x01\x01\x05\x05\x01\x03\x03\x05", // 𣭙
+ 0x23b5a: "\x03\x01\x01\x05\x03\x05\x05\x01\x05", // 𣭚
+ 0x23b5b: "\x03\x01\x01\x05\x03\x04\x05\x04", // 𣭛
+ 0x23b5c: "\x03\x01\x01\x05\x05\x04\x01\x05\x04\x01", // 𣭜
+ 0x23b5d: "\x03\x01\x01\x05\x03\x04\x01\x02\x05\x01", // 𣭝
+ 0x23b5e: "\x03\x01\x01\x05\x01\x02\x02\x01\x01\x01", // 𣭞
+ 0x23b5f: "\x03\x01\x02\x01\x03\x05\x03\x01\x01\x05", // 𣭟
+ 0x23b60: "\x05\x03\x01\x02\x05\x01\x03\x01\x01\x05", // 𣭠
+ 0x23b61: "\x03\x01\x02\x01\x03\x05\x03\x01\x01\x05", // 𣭡
+ 0x23b62: "\x01\x02\x01\x03\x01\x05\x03\x01\x01\x05", // 𣭢
+ 0x23b63: "\x03\x03\x05\x02\x01\x01\x03\x01\x01\x05", // 𣭣
+ 0x23b64: "\x03\x01\x01\x05\x01\x05\x03\x05\x01\x02", // 𣭤
+ 0x23b65: "\x03\x01\x01\x05\x05\x01\x03\x04\x04\x04", // 𣭥
+ 0x23b66: "\x03\x01\x01\x05\x02\x05\x01\x02\x01\x04", // 𣭦
+ 0x23b67: "\x03\x01\x01\x05\x03\x05\x04\x03\x05\x04", // 𣭧
+ 0x23b68: "\x03\x01\x01\x05\x03\x05\x04\x02\x05\x01", // 𣭨
+ 0x23b69: "\x03\x01\x01\x05\x03\x02\x01\x03\x04\x04", // 𣭩
+ 0x23b6a: "\x03\x01\x01\x05\x03\x01\x02\x02\x05\x01", // 𣭪
+ 0x23b6b: "\x03\x05\x04\x03\x03\x03\x03\x01\x01\x05", // 𣭫
+ 0x23b6c: "\x03\x01\x01\x05\x03\x05\x04\x02\x03\x04", // 𣭬
+ 0x23b6d: "\x01\x01\x01\x02\x05\x03\x03\x01\x01\x05", // 𣭭
+ 0x23b6e: "\x04\x03\x01\x01\x03\x04\x03\x01\x01\x05", // 𣭮
+ 0x23b6f: "\x03\x01\x01\x05\x01\x05\x01\x05\x03\x04", // 𣭯
+ 0x23b70: "\x05\x04\x03\x01\x01\x02\x03\x01\x01\x05", // 𣭰
+ 0x23b71: "\x03\x01\x01\x05\x02\x04\x03\x03\x05\x04\x01", // 𣭱
+ 0x23b72: "\x05\x04\x02\x05\x01\x01\x02\x03\x01\x01\x05", // 𣭲
+ 0x23b73: "\x01\x02\x04\x01\x03\x04\x04\x03\x01\x01\x05", // 𣭳
+ 0x23b74: "\x03\x01\x01\x05\x01\x02\x05\x01\x02\x03\x04", // 𣭴
+ 0x23b75: "\x01\x02\x05\x01\x02\x03\x04\x03\x01\x01\x05", // 𣭵
+ 0x23b76: "\x01\x03\x04\x03\x04\x03\x04\x03\x01\x01\x05", // 𣭶
+ 0x23b77: "\x01\x02\x04\x05\x05\x02\x01\x03\x01\x01\x05", // 𣭷
+ 0x23b78: "\x02\x05\x01\x01\x01\x01\x02\x03\x01\x01\x05", // 𣭸
+ 0x23b79: "\x03\x01\x03\x04\x01\x01\x02\x03\x01\x01\x05", // 𣭹
+ 0x23b7a: "\x03\x05\x01\x03\x05\x03\x04\x03\x01\x01\x05", // 𣭺
+ 0x23b7b: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x01\x05", // 𣭻
+ 0x23b7c: "\x05\x01\x03\x02\x05\x03\x04\x03\x01\x01\x05", // 𣭼
+ 0x23b7d: "\x01\x03\x01\x01\x05\x03\x04\x03\x01\x01\x05", // 𣭽
+ 0x23b7e: "\x03\x01\x01\x05\x01\x02\x05\x01\x01\x02\x04", // 𣭾
+ 0x23b7f: "\x03\x01\x01\x05\x01\x01\x02\x01\x01\x03\x02", // 𣭿
+ 0x23b80: "\x03\x01\x02\x03\x04\x02\x02\x03\x01\x01\x05", // 𣮀
+ 0x23b81: "\x03\x01\x01\x05\x03\x01\x02\x03\x04\x05\x03", // 𣮁
+ 0x23b82: "\x03\x01\x01\x05\x03\x01\x02\x03\x04\x02\x02", // 𣮂
+ 0x23b83: "\x03\x01\x01\x05\x02\x05\x01\x01\x02\x03\x04", // 𣮃
+ 0x23b84: "\x03\x01\x01\x05\x03\x04\x04\x03\x05\x03\x01", // 𣮄
+ 0x23b85: "\x03\x01\x01\x05\x04\x04\x01\x02\x03\x04\x03", // 𣮅
+ 0x23b86: "\x04\x03\x02\x05\x01\x03\x05\x03\x01\x01\x05", // 𣮆
+ 0x23b87: "\x02\x05\x01\x05\x01\x03\x04\x03\x01\x01\x05", // 𣮇
+ 0x23b88: "\x05\x01\x03\x05\x02\x02\x05\x02\x03\x01\x01\x05", // 𣮈
+ 0x23b89: "\x01\x03\x04\x03\x04\x02\x03\x04\x03\x01\x01\x05", // 𣮉
+ 0x23b8a: "\x02\x05\x01\x01\x01\x01\x02\x04\x03\x01\x01\x05", // 𣮊
+ 0x23b8b: "\x03\x01\x02\x03\x04\x03\x05\x03\x03\x01\x01\x05", // 𣮋
+ 0x23b8c: "\x01\x05\x01\x01\x02\x01\x03\x04\x03\x01\x01\x05", // 𣮌
+ 0x23b8d: "\x03\x01\x01\x05\x04\x01\x04\x03\x01\x05\x03\x01", // 𣮍
+ 0x23b8e: "\x03\x01\x01\x05\x02\x05\x01\x01\x01\x05\x01\x05", // 𣮎
+ 0x23b8f: "\x03\x01\x01\x05\x01\x05\x03\x04\x01\x05\x03\x04", // 𣮏
+ 0x23b90: "\x03\x01\x01\x05\x03\x02\x05\x01\x01\x03\x01\x02", // 𣮐
+ 0x23b91: "\x03\x01\x01\x05\x02\x05\x01\x01\x02\x05\x01\x01", // 𣮑
+ 0x23b92: "\x04\x01\x03\x05\x01\x01\x03\x04\x03\x01\x01\x05", // 𣮒
+ 0x23b93: "\x03\x01\x01\x05\x04\x05\x03\x05\x01\x02\x03\x04", // 𣮓
+ 0x23b94: "\x02\x05\x01\x01\x01\x02\x03\x04\x03\x01\x01\x05", // 𣮔
+ 0x23b95: "\x03\x05\x04\x03\x01\x02\x03\x04\x03\x01\x01\x05", // 𣮕
+ 0x23b96: "\x01\x05\x02\x03\x03\x01\x03\x04\x03\x01\x01\x05", // 𣮖
+ 0x23b97: "\x03\x01\x01\x05\x01\x03\x02\x05\x02\x05\x01\x01", // 𣮗
+ 0x23b98: "\x03\x01\x01\x05\x04\x01\x02\x05\x01\x02\x03\x04", // 𣮘
+ 0x23b99: "\x03\x01\x01\x05\x04\x01\x05\x03\x03\x01\x03\x04", // 𣮙
+ 0x23b9a: "\x03\x01\x01\x05\x03\x01\x01\x03\x01\x01\x01\x02", // 𣮚
+ 0x23b9b: "\x03\x01\x01\x05\x01\x01\x02\x01\x03\x05\x01\x01", // 𣮛
+ 0x23b9c: "\x03\x01\x01\x05\x02\x04\x03\x02\x05\x02\x05\x01", // 𣮜
+ 0x23b9d: "\x01\x01\x01\x02\x01\x01\x01\x02\x03\x01\x01\x05", // 𣮝
+ 0x23b9e: "\x03\x01\x01\x05\x03\x04\x01\x01\x02\x02\x05\x01", // 𣮞
+ 0x23b9f: "\x05\x04\x01\x03\x04\x01\x01\x01\x03\x01\x01\x05", // 𣮟
+ 0x23ba0: "\x01\x02\x02\x01\x02\x05\x01\x01\x03\x01\x01\x05", // 𣮠
+ 0x23ba1: "\x01\x03\x04\x01\x02\x01\x03\x02\x03\x01\x01\x05", // 𣮡
+ 0x23ba2: "\x04\x01\x02\x05\x01\x05\x02\x01\x03\x01\x01\x05", // 𣮢
+ 0x23ba3: "\x03\x01\x01\x05\x04\x01\x03\x05\x01\x01\x03\x04", // 𣮣
+ 0x23ba4: "\x03\x01\x01\x05\x04\x04\x05\x01\x01\x02\x03\x04", // 𣮤
+ 0x23ba5: "\x04\x05\x03\x04\x01\x02\x03\x04\x03\x01\x01\x05", // 𣮥
+ 0x23ba6: "\x01\x03\x04\x01\x01\x02\x03\x04\x03\x01\x01\x05", // 𣮦
+ 0x23ba7: "\x04\x03\x01\x02\x02\x04\x03\x01\x03\x01\x01\x05", // 𣮧
+ 0x23ba8: "\x03\x01\x01\x05\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𣮨
+ 0x23ba9: "\x03\x01\x01\x05\x04\x03\x01\x02\x05\x03\x05\x01\x01", // 𣮩
+ 0x23baa: "\x05\x04\x05\x02\x03\x01\x02\x03\x04\x03\x01\x01\x05", // 𣮪
+ 0x23bab: "\x05\x01\x02\x01\x01\x05\x01\x05\x04\x03\x01\x01\x05", // 𣮫
+ 0x23bac: "\x03\x01\x01\x05\x04\x04\x05\x03\x04\x03\x04\x05\x04", // 𣮬
+ 0x23bad: "\x04\x01\x04\x03\x01\x01\x02\x03\x04\x03\x01\x01\x05", // 𣮭
+ 0x23bae: "\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x01\x01\x05", // 𣮮
+ 0x23baf: "\x04\x04\x05\x03\x04\x03\x04\x05\x04\x03\x01\x01\x05", // 𣮯
+ 0x23bb0: "\x02\x05\x01\x01\x01\x01\x02\x03\x04\x03\x01\x01\x05", // 𣮰
+ 0x23bb1: "\x05\x01\x02\x01\x01\x05\x01\x05\x04\x03\x01\x01\x05", // 𣮱
+ 0x23bb2: "\x03\x01\x01\x05\x01\x03\x01\x02\x01\x03\x05\x04\x01", // 𣮲
+ 0x23bb3: "\x02\x05\x02\x01\x02\x01\x03\x01\x05\x03\x01\x01\x05", // 𣮳
+ 0x23bb4: "\x03\x01\x01\x05\x03\x05\x04\x01\x01\x01\x02\x05\x01", // 𣮴
+ 0x23bb5: "\x03\x02\x01\x05\x01\x01\x03\x04\x03\x01\x01\x05", // 𣮵
+ 0x23bb6: "\x03\x01\x01\x05\x02\x05\x01\x01\x03\x01\x01\x02\x01", // 𣮶
+ 0x23bb7: "\x03\x01\x01\x05\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 𣮷
+ 0x23bb8: "\x04\x04\x05\x04\x03\x03\x04\x05\x04\x03\x01\x01\x05", // 𣮸
+ 0x23bb9: "\x03\x01\x01\x05\x04\x03\x01\x03\x02\x05\x01\x01\x01", // 𣮹
+ 0x23bba: "\x03\x01\x01\x05\x04\x03\x01\x01\x02\x01\x01\x03\x04", // 𣮺
+ 0x23bbb: "\x03\x01\x01\x05\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 𣮻
+ 0x23bbc: "\x03\x01\x01\x05\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 𣮼
+ 0x23bbd: "\x03\x01\x01\x05\x02\x05\x02\x05\x05\x04\x02\x03\x04", // 𣮽
+ 0x23bbe: "\x01\x02\x01\x04\x03\x01\x02\x03\x04\x03\x01\x01\x05", // 𣮾
+ 0x23bbf: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x03\x01\x01\x05", // 𣮿
+ 0x23bc0: "\x03\x01\x01\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 𣯀
+ 0x23bc1: "\x03\x01\x01\x05\x03\x02\x01\x05\x01\x01\x03\x04", // 𣯁
+ 0x23bc2: "\x03\x01\x01\x05\x03\x02\x02\x05\x01\x01\x02\x03\x04", // 𣯂
+ 0x23bc3: "\x04\x01\x03\x05\x03\x04\x02\x05\x01\x03\x01\x01\x05", // 𣯃
+ 0x23bc4: "\x03\x01\x01\x05\x01\x02\x05\x01\x01\x05\x03\x01\x05", // 𣯄
+ 0x23bc5: "\x01\x03\x04\x03\x03\x04\x04\x03\x03\x04\x03\x01\x01\x05", // 𣯅
+ 0x23bc6: "\x01\x02\x01\x03\x01\x05\x02\x05\x01\x01\x03\x01\x01\x05", // 𣯆
+ 0x23bc7: "\x04\x03\x01\x01\x02\x01\x04\x04\x04\x04\x03\x01\x01\x05", // 𣯇
+ 0x23bc8: "\x01\x02\x01\x02\x03\x04\x01\x02\x05\x01\x03\x01\x01\x05", // 𣯈
+ 0x23bc9: "\x02\x05\x02\x02\x01\x02\x04\x01\x03\x04\x03\x01\x01\x05", // 𣯉
+ 0x23bca: "\x03\x01\x01\x05\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03", // 𣯊
+ 0x23bcb: "\x03\x01\x01\x05\x01\x03\x01\x01\x05\x03\x04\x01\x02\x04", // 𣯋
+ 0x23bcc: "\x04\x04\x01\x02\x03\x04\x03\x05\x03\x01\x03\x01\x01\x05", // 𣯌
+ 0x23bcd: "\x03\x01\x01\x05\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02", // 𣯍
+ 0x23bce: "\x02\x05\x01\x01\x02\x05\x02\x02\x01\x03\x01\x01\x05", // 𣯎
+ 0x23bcf: "\x03\x01\x01\x05\x01\x02\x01\x02\x01\x02\x02\x01\x01\x01", // 𣯏
+ 0x23bd0: "\x03\x01\x01\x05\x05\x05\x05\x01\x03\x02\x05\x01\x01\x01", // 𣯐
+ 0x23bd1: "\x03\x01\x01\x05\x03\x02\x05\x01\x01\x04\x04\x04\x04", // 𣯑
+ 0x23bd2: "\x03\x01\x01\x05\x03\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 𣯒
+ 0x23bd3: "\x04\x01\x04\x03\x01\x04\x01\x04\x03\x01\x03\x01\x01\x05", // 𣯓
+ 0x23bd4: "\x03\x01\x01\x05\x04\x04\x05\x03\x04\x03\x04\x02\x05\x01", // 𣯔
+ 0x23bd5: "\x01\x02\x04\x01\x03\x04\x01\x02\x05\x04\x03\x01\x01\x05", // 𣯕
+ 0x23bd6: "\x03\x01\x01\x05\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 𣯖
+ 0x23bd7: "\x03\x01\x01\x05\x01\x03\x01\x02\x02\x01\x02\x05\x01\x01", // 𣯗
+ 0x23bd8: "\x03\x01\x01\x05\x03\x01\x01\x05\x04\x03\x01\x02\x03\x04", // 𣯘
+ 0x23bd9: "\x03\x01\x01\x05\x03\x04\x01\x05\x01\x01\x03\x02\x05\x01", // 𣯙
+ 0x23bda: "\x03\x01\x01\x05\x01\x02\x02\x03\x04\x01\x02\x05\x01", // 𣯚
+ 0x23bdb: "\x01\x05\x02\x03\x03\x01\x03\x04\x01\x03\x03\x01\x01\x05", // 𣯛
+ 0x23bdc: "\x03\x01\x01\x05\x03\x02\x01\x05\x01\x01\x02\x05\x04", // 𣯜
+ 0x23bdd: "\x03\x02\x05\x01\x01\x01\x03\x01\x01\x05\x03\x01\x01\x05", // 𣯝
+ 0x23bde: "\x04\x01\x04\x03\x01\x04\x01\x04\x03\x01\x03\x01\x01\x05", // 𣯞
+ 0x23bdf: "\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03\x03\x01\x01\x05", // 𣯟
+ 0x23be0: "\x04\x03\x01\x01\x01\x05\x03\x01\x01\x05\x03\x01\x01\x05", // 𣯠
+ 0x23be1: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05\x03\x01\x01\x05", // 𣯡
+ 0x23be2: "\x03\x01\x01\x05\x04\x04\x01\x02\x03\x04\x03\x05\x03\x01", // 𣯢
+ 0x23be3: "\x03\x01\x01\x05\x01\x02\x02\x01\x02\x05\x03\x04\x03\x04", // 𣯣
+ 0x23be4: "\x03\x01\x01\x05\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 𣯤
+ 0x23be5: "\x03\x01\x01\x05\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01", // 𣯥
+ 0x23be6: "\x03\x02\x05\x01\x01\x01\x05\x01\x05\x03\x05\x03\x01\x01\x05", // 𣯦
+ 0x23be7: "\x03\x01\x01\x05\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𣯧
+ 0x23be8: "\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04\x03\x01\x01\x05", // 𣯨
+ 0x23be9: "\x03\x01\x01\x05\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04", // 𣯩
+ 0x23bea: "\x03\x01\x01\x05\x03\x03\x02\x02\x01\x02\x01\x02\x01\x03\x04", // 𣯪
+ 0x23beb: "\x03\x01\x01\x05\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 𣯫
+ 0x23bec: "\x01\x02\x01\x02\x01\x03\x04\x04\x01\x03\x02\x03\x01\x01\x05", // 𣯬
+ 0x23bed: "\x03\x01\x01\x05\x01\x02\x01\x03\x05\x01\x02\x01\x03\x05\x04", // 𣯭
+ 0x23bee: "\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01\x03\x01\x01\x05", // 𣯮
+ 0x23bef: "\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x03\x01\x01\x05", // 𣯯
+ 0x23bf0: "\x05\x04\x01\x05\x04\x01\x01\x02\x04\x03\x01\x03\x01\x01\x05", // 𣯰
+ 0x23bf1: "\x05\x02\x04\x01\x04\x03\x01\x02\x05\x01\x03\x01\x01\x05", // 𣯱
+ 0x23bf2: "\x03\x01\x01\x05\x03\x05\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 𣯲
+ 0x23bf3: "\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04\x03\x01\x01\x05", // 𣯳
+ 0x23bf4: "\x03\x01\x01\x05\x02\x05\x01\x01\x01\x02\x02\x01\x01\x02", // 𣯴
+ 0x23bf5: "\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01\x03\x01\x01\x05", // 𣯵
+ 0x23bf6: "\x03\x01\x01\x05\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 𣯶
+ 0x23bf7: "\x01\x01\x02\x03\x04\x02\x01\x05\x04\x01\x03\x03\x01\x01\x05", // 𣯷
+ 0x23bf8: "\x04\x04\x01\x01\x05\x01\x05\x01\x02\x03\x04\x03\x01\x01\x05", // 𣯸
+ 0x23bf9: "\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01\x03\x01\x01\x05", // 𣯹
+ 0x23bfa: "\x05\x04\x05\x04\x05\x04\x03\x04\x02\x04\x04\x04\x03\x01\x01\x05", // 𣯺
+ 0x23bfb: "\x01\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04\x03\x01\x01\x05", // 𣯻
+ 0x23bfc: "\x01\x02\x05\x02\x02\x01\x04\x03\x01\x02\x03\x04\x03\x01\x01\x05", // 𣯼
+ 0x23bfd: "\x04\x03\x01\x02\x02\x04\x03\x01\x02\x05\x01\x01\x03\x01\x01\x05", // 𣯽
+ 0x23bfe: "\x03\x01\x01\x05\x03\x04\x01\x02\x05\x01\x05\x04\x01\x05\x04\x01", // 𣯾
+ 0x23bff: "\x03\x01\x01\x05\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𣯿
+ 0x23c00: "\x03\x01\x01\x05\x05\x04\x03\x03\x04\x05\x01\x05\x03\x05\x05\x04", // 𣰀
+ 0x23c01: "\x03\x01\x01\x05\x01\x02\x01\x02\x04\x04\x05\x01\x01\x02\x03\x04", // 𣰁
+ 0x23c02: "\x03\x01\x01\x05\x03\x05\x04\x01\x01\x03\x04\x04\x04\x04\x04\x04", // 𣰂
+ 0x23c03: "\x03\x01\x01\x05\x01\x03\x02\x05\x02\x02\x01\x03\x02\x05\x02\x02", // 𣰃
+ 0x23c04: "\x01\x03\x02\x05\x02\x02\x01\x03\x02\x05\x02\x02\x03\x01\x01\x05", // 𣰄
+ 0x23c05: "\x03\x04\x01\x02\x05\x01\x05\x04\x01\x05\x04\x01\x03\x01\x01\x05", // 𣰅
+ 0x23c06: "\x03\x01\x01\x05\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 𣰆
+ 0x23c07: "\x03\x01\x01\x05\x05\x04\x05\x02\x03\x02\x05\x03\x04\x02\x05\x01", // 𣰇
+ 0x23c08: "\x03\x01\x01\x05\x05\x05\x04\x05\x05\x04\x01\x03\x04\x05\x03\x04", // 𣰈
+ 0x23c09: "\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04\x03\x01\x01\x05", // 𣰉
+ 0x23c0a: "\x02\x05\x01\x02\x02\x01\x01\x03\x01\x01\x05\x03\x04\x03\x01\x01\x05", // 𣰊
+ 0x23c0b: "\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x04\x03\x01\x01\x05", // 𣰋
+ 0x23c0c: "\x01\x02\x01\x02\x02\x05\x01\x01\x03\x05\x03\x04\x05\x03\x01\x01\x05", // 𣰌
+ 0x23c0d: "\x02\x05\x01\x01\x01\x04\x03\x03\x04\x04\x03\x03\x04\x03\x01\x01\x05", // 𣰍
+ 0x23c0e: "\x03\x01\x01\x05\x03\x01\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x02", // 𣰎
+ 0x23c0f: "\x03\x01\x01\x05\x02\x05\x02\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𣰏
+ 0x23c10: "\x01\x02\x04\x01\x03\x04\x04\x04\x01\x03\x05\x03\x04\x03\x01\x01\x05", // 𣰐
+ 0x23c11: "\x03\x01\x01\x05\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x01", // 𣰑
+ 0x23c12: "\x03\x01\x01\x05\x03\x03\x02\x02\x05\x02\x01\x03\x05\x03\x01\x03\x04", // 𣰒
+ 0x23c13: "\x03\x01\x01\x05\x03\x03\x02\x01\x05\x04\x03\x05\x03\x01\x03\x04", // 𣰓
+ 0x23c14: "\x03\x01\x01\x05\x01\x03\x02\x05\x02\x02\x01\x01\x01\x03\x01\x01\x05", // 𣰔
+ 0x23c15: "\x03\x01\x01\x05\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 𣰕
+ 0x23c16: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x03\x02\x03\x01\x01\x05", // 𣰖
+ 0x23c17: "\x03\x02\x05\x01\x01\x03\x01\x01\x05\x03\x01\x01\x05\x03\x01\x01\x05", // 𣰗
+ 0x23c18: "\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04\x03\x03\x03\x03\x01\x01\x05", // 𣰘
+ 0x23c19: "\x03\x01\x01\x05\x01\x02\x03\x04\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 𣰙
+ 0x23c1a: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x01\x03\x02\x03\x01\x01\x05", // 𣰚
+ 0x23c1b: "\x01\x02\x01\x02\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01\x03\x01\x01\x05", // 𣰛
+ 0x23c1c: "\x03\x01\x01\x05\x04\x01\x02\x01\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05", // 𣰜
+ 0x23c1d: "\x05\x01\x03\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01\x03\x01\x01\x05", // 𣰝
+ 0x23c1e: "\x03\x01\x01\x05\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𣰞
+ 0x23c1f: "\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01\x03\x01\x03\x04\x03\x01\x01\x05", // 𣰟
+ 0x23c20: "\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x01\x03\x04\x03\x01\x01\x05", // 𣰠
+ 0x23c21: "\x02\x05\x03\x05\x02\x05\x01\x02\x05\x03\x05\x02\x05\x01\x03\x01\x01\x05", // 𣰡
+ 0x23c22: "\x05\x01\x03\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01\x03\x01\x01\x05", // 𣰢
+ 0x23c23: "\x02\x05\x02\x02\x01\x01\x01\x02\x05\x02\x02\x01\x01\x01\x03\x01\x01\x05", // 𣰣
+ 0x23c24: "\x03\x01\x01\x05\x04\x03\x01\x02\x03\x04\x04\x04\x05\x01\x01\x02\x03\x04", // 𣰤
+ 0x23c25: "\x03\x01\x01\x05\x01\x02\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 𣰥
+ 0x23c26: "\x03\x01\x01\x05\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01", // 𣰦
+ 0x23c27: "\x02\x05\x01\x01\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x01\x01\x05", // 𣰧
+ 0x23c28: "\x04\x04\x05\x01\x02\x03\x03\x02\x05\x01\x01\x01\x03\x04\x03\x01\x01\x05", // 𣰨
+ 0x23c29: "\x03\x01\x01\x05\x05\x05\x05\x03\x02\x01\x05\x01\x01\x01\x02\x03\x04", // 𣰩
+ 0x23c2a: "\x03\x01\x01\x05\x03\x03\x02\x01\x05\x04\x03\x05\x04\x01\x03\x01\x03\x04", // 𣰪
+ 0x23c2b: "\x05\x05\x05\x02\x05\x03\x04\x01\x05\x04\x04\x05\x04\x04\x05\x03\x01\x01\x05", // 𣰫
+ 0x23c2c: "\x03\x01\x01\x05\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𣰬
+ 0x23c2d: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x03\x01\x01\x05", // 𣰭
+ 0x23c2e: "\x02\x01\x02\x05\x03\x04\x03\x04\x01\x04\x03\x01\x02\x03\x04\x03\x01\x01\x05", // 𣰮
+ 0x23c2f: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01\x03\x01\x01\x05", // 𣰯
+ 0x23c30: "\x01\x01\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x03\x04\x03\x01\x01\x05", // 𣰰
+ 0x23c31: "\x02\x05\x02\x01\x02\x05\x01\x02\x01\x01\x03\x01\x01\x05\x01\x03\x02\x05\x01\x01", // 𣰱
+ 0x23c32: "\x05\x04\x05\x02\x03\x02\x05\x03\x05\x02\x05\x01\x02\x03\x04\x03\x03\x01\x01\x05", // 𣰲
+ 0x23c33: "\x03\x01\x01\x05\x03\x01\x04\x03\x01\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05", // 𣰳
+ 0x23c34: "\x03\x01\x04\x03\x01\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x01\x01\x05", // 𣰴
+ 0x23c35: "\x03\x01\x01\x05\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01\x01\x01", // 𣰵
+ 0x23c36: "\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04\x03\x01\x01\x05", // 𣰶
+ 0x23c37: "\x03\x01\x01\x05\x03\x04\x03\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 𣰷
+ 0x23c38: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x04\x05\x03\x01\x01\x05", // 𣰸
+ 0x23c39: "\x03\x01\x01\x05\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x03\x04\x04\x04\x04\x04", // 𣰹
+ 0x23c3a: "\x01\x02\x01\x04\x05\x01\x02\x05\x01\x04\x03\x01\x05\x03\x02\x05\x04\x03\x01\x01\x05", // 𣰺
+ 0x23c3b: "\x02\x01\x02\x01\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x01\x01\x05", // 𣰻
+ 0x23c3c: "\x03\x01\x01\x05\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01", // 𣰼
+ 0x23c3d: "\x03\x01\x01\x05\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𣰽
+ 0x23c3e: "\x03\x01\x01\x05\x01\x02\x01\x02\x01\x03\x05\x01\x03\x01\x02\x05\x01\x02\x05\x05\x03\x04", // 𣰾
+ 0x23c3f: "\x01\x02\x05\x04\x01\x02\x05\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x03\x01\x01\x05", // 𣰿
+ 0x23c40: "\x03\x01\x01\x05\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𣱀
+ 0x23c41: "\x03\x01\x01\x05\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01\x04\x05\x02\x05\x01\x01\x01\x01", // 𣱁
+ 0x23c42: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x03\x05\x04\x03\x01\x01\x05", // 𣱂
+ 0x23c43: "\x03\x01\x01\x05\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x04\x05\x02\x05\x01\x01\x01\x01", // 𣱃
+ 0x23c44: "\x01\x02\x05\x01\x02\x05\x03\x01\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x02\x05\x02\x02\x01\x03\x01\x01\x05", // 𣱄
+ 0x23c45: "\x04\x01\x05\x05\x01\x05\x01\x05", // 𣱅
+ 0x23c46: "\x04\x05\x01\x03\x03\x05\x01\x05", // 𣱆
+ 0x23c47: "\x05\x01\x02\x05\x01\x03\x05\x01\x05", // 𣱇
+ 0x23c48: "\x05\x01\x05\x01\x05\x05\x02\x01\x05", // 𣱈
+ 0x23c49: "\x01\x01\x05\x04\x05\x01\x05\x01\x05", // 𣱉
+ 0x23c4a: "\x01\x02\x03\x04\x03\x05\x01\x05\x01", // 𣱊
+ 0x23c4b: "\x03\x05\x01\x05\x01\x01\x03\x04\x05\x05\x04", // 𣱋
+ 0x23c4c: "\x01\x02\x05\x01\x02\x02\x01\x03\x05\x01\x05", // 𣱌
+ 0x23c4d: "\x02\x05\x02\x02\x01\x03\x05\x03\x05\x01\x05", // 𣱍
+ 0x23c4e: "\x03\x05\x01\x05\x01\x03\x01\x02\x01\x03\x05", // 𣱎
+ 0x23c4f: "\x05\x04\x05\x02\x03\x03\x05\x03\x03\x03\x05\x01\x05", // 𣱏
+ 0x23c50: "\x03\x05\x01\x05\x01\x01\x02\x05\x03\x05\x01\x01\x02\x01", // 𣱐
+ 0x23c51: "\x03\x05\x01\x05\x01\x03\x05\x01\x02\x05\x03\x05\x01\x01\x02\x01", // 𣱑
+ 0x23c52: "\x03\x05\x01\x05\x01\x05\x01\x05\x02\x05\x03\x03\x04\x01\x01\x02\x01", // 𣱒
+ 0x23c53: "\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x03\x05\x01\x05\x01", // 𣱓
+ 0x23c54: "\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04\x01\x03\x03\x05\x01\x05", // 𣱔
+ 0x23c55: "\x03\x01\x01\x05\x05\x03", // 𣱕
+ 0x23c56: "\x03\x01\x01\x05\x04\x01", // 𣱖
+ 0x23c57: "\x03\x01\x01\x05\x01\x05\x03", // 𣱗
+ 0x23c58: "\x03\x01\x01\x05\x05\x03\x01", // 𣱘
+ 0x23c59: "\x03\x01\x01\x05\x03\x05\x01\x01", // 𣱙
+ 0x23c5a: "\x03\x01\x01\x05\x01\x03\x05\x04", // 𣱚
+ 0x23c5b: "\x03\x01\x01\x05\x04\x03\x03\x04", // 𣱛
+ 0x23c5c: "\x03\x01\x01\x05\x02\x05\x03\x04\x01", // 𣱜
+ 0x23c5d: "\x03\x01\x01\x05\x01\x05\x02\x03\x04", // 𣱝
+ 0x23c5e: "\x03\x01\x01\x05\x02\x01\x03\x05\x04", // 𣱞
+ 0x23c5f: "\x03\x01\x01\x05\x02\x05\x01\x02\x01", // 𣱟
+ 0x23c60: "\x03\x01\x01\x05\x04\x01\x04\x03\x01", // 𣱠
+ 0x23c61: "\x03\x05\x02\x05\x01\x01\x03\x01\x01\x05", // 𣱡
+ 0x23c62: "\x03\x01\x01\x05\x02\x05\x01\x01\x03\x05\x03\x03", // 𣱢
+ 0x23c63: "\x03\x01\x01\x05\x02\x05\x01\x02\x03\x04\x01", // 𣱣
+ 0x23c64: "\x03\x01\x01\x05\x02\x01\x05\x03\x01\x05\x03\x05", // 𣱤
+ 0x23c65: "\x03\x01\x01\x05\x04\x03\x01\x02\x03\x04\x05\x02", // 𣱥
+ 0x23c66: "\x03\x01\x01\x05\x03\x05\x05\x03\x02\x05\x02\x02\x01", // 𣱦
+ 0x23c67: "\x03\x01\x01\x05\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𣱧
+ 0x23c68: "\x03\x01\x01\x05\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 𣱨
+ 0x23c69: "\x03\x01\x01\x05\x04\x03\x01\x02\x03\x04\x02\x05\x01\x01", // 𣱩
+ 0x23c6a: "\x03\x01\x01\x05\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 𣱪
+ 0x23c6b: "\x03\x01\x01\x05\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 𣱫
+ 0x23c6c: "\x03\x04\x01\x03\x02\x05\x02\x03\x01\x01\x05\x04\x03\x01\x02\x03\x04", // 𣱬
+ 0x23c6d: "\x03\x01\x01\x05\x04\x01\x02\x05\x02\x05\x01\x01\x03\x01\x02\x03\x04", // 𣱭
+ 0x23c6e: "\x03\x01\x01\x05\x01\x02\x05\x01\x01\x01\x02\x01\x05\x05\x05\x01\x02\x01", // 𣱮
+ 0x23c6f: "\x03\x01\x01\x05\x04\x03\x01\x02\x03\x04\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 𣱯
+ 0x23c70: "\x03\x01\x01\x05\x03\x04\x03\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 𣱰
+ 0x23c71: "\x02\x03\x03\x04", // 𣱱
+ 0x23c72: "\x02\x05\x03\x04\x01", // 𣱲
+ 0x23c73: "\x01\x02\x05\x03\x04", // 𣱳
+ 0x23c74: "\x04\x04\x01\x05", // 𣱴
+ 0x23c75: "\x04\x01\x02\x05\x03\x04", // 𣱵
+ 0x23c76: "\x04\x04\x01\x02\x04", // 𣱶
+ 0x23c77: "\x01\x03\x02\x05\x03\x04", // 𣱷
+ 0x23c78: "\x02\x05\x03\x04\x03\x04", // 𣱸
+ 0x23c79: "\x03\x05\x02\x04\x01\x03\x04", // 𣱹
+ 0x23c7a: "\x02\x05\x03\x04\x03\x04", // 𣱺
+ 0x23c7b: "\x02\x05\x03\x04\x03\x05", // 𣱻
+ 0x23c7c: "\x04\x04\x01\x05\x03", // 𣱼
+ 0x23c7d: "\x04\x04\x01\x05\x03", // 𣱽
+ 0x23c7e: "\x04\x04\x01\x05\x02", // 𣱾
+ 0x23c7f: "\x04\x04\x01\x03\x04", // 𣱿
+ 0x23c80: "\x04\x04\x01\x03\x03\x03", // 𣲀
+ 0x23c81: "\x04\x04\x01\x02\x01\x05", // 𣲁
+ 0x23c82: "\x05\x05\x05\x02\x05\x03\x04", // 𣲂
+ 0x23c83: "\x04\x04\x01\x03\x01\x05", // 𣲃
+ 0x23c84: "\x04\x04\x01\x05\x03\x04", // 𣲄
+ 0x23c85: "\x04\x04\x01\x01\x05\x01", // 𣲅
+ 0x23c86: "\x04\x04\x01\x05\x01\x05", // 𣲆
+ 0x23c87: "\x04\x04\x01\x01\x01\x02", // 𣲇
+ 0x23c88: "\x04\x05\x05\x03\x04\x02\x02", // 𣲈
+ 0x23c89: "\x02\x05\x03\x04\x01\x02\x04", // 𣲉
+ 0x23c8a: "\x02\x01\x05\x02\x05\x03\x04", // 𣲊
+ 0x23c8b: "\x04\x04\x01\x03\x05\x04", // 𣲋
+ 0x23c8c: "\x04\x04\x01\x05\x01\x02", // 𣲌
+ 0x23c8d: "\x04\x04\x01\x01\x03\x05", // 𣲍
+ 0x23c8e: "\x03\x04\x01\x05\x02\x05\x03\x04", // 𣲎
+ 0x23c8f: "\x04\x04\x01\x02\x01\x05\x04", // 𣲏
+ 0x23c90: "\x04\x04\x01\x01\x05\x02\x04", // 𣲐
+ 0x23c91: "\x04\x04\x01\x01\x05\x05\x04", // 𣲑
+ 0x23c92: "\x04\x04\x01\x03\x02\x05\x03", // 𣲒
+ 0x23c93: "\x04\x04\x01\x02\x01\x03\x04", // 𣲓
+ 0x23c94: "\x04\x04\x01\x01\x03\x04\x01", // 𣲔
+ 0x23c95: "\x04\x04\x01\x02\x05\x01\x01", // 𣲕
+ 0x23c96: "\x04\x04\x01\x03\x03\x05\x04", // 𣲖
+ 0x23c97: "\x04\x04\x01\x01\x01\x05\x02", // 𣲗
+ 0x23c98: "\x04\x04\x01\x01\x01\x03\x05", // 𣲘
+ 0x23c99: "\x04\x04\x01\x02\x05\x03\x04", // 𣲙
+ 0x23c9a: "\x04\x04\x01\x03\x02\x01\x01", // 𣲚
+ 0x23c9b: "\x03\x04\x03\x01\x02\x05\x03\x04", // 𣲛
+ 0x23c9c: "\x01\x01\x03\x02\x02\x05\x03\x04", // 𣲜
+ 0x23c9d: "\x03\x04\x03\x04\x02\x05\x03\x04", // 𣲝
+ 0x23c9e: "\x04\x04\x01\x01\x02\x01\x05", // 𣲞
+ 0x23c9f: "\x04\x04\x01\x01\x02\x02\x01", // 𣲟
+ 0x23ca0: "\x04\x04\x01\x01\x03\x05\x04", // 𣲠
+ 0x23ca1: "\x04\x04\x01\x02\x03\x04\x04", // 𣲡
+ 0x23ca2: "\x04\x04\x01\x03\x05\x03\x04", // 𣲢
+ 0x23ca3: "\x04\x04\x01\x03\x03\x05\x05", // 𣲣
+ 0x23ca4: "\x04\x04\x01\x03\x04\x03\x02", // 𣲤
+ 0x23ca5: "\x04\x04\x01\x03\x05\x04\x01", // 𣲥
+ 0x23ca6: "\x02\x05\x03\x04\x02\x03\x04\x03", // 𣲦
+ 0x23ca7: "\x04\x04\x01\x04\x03\x03\x04", // 𣲧
+ 0x23ca8: "\x04\x04\x01\x01\x05\x02\x03", // 𣲨
+ 0x23ca9: "\x04\x04\x01\x05\x02\x01\x05", // 𣲩
+ 0x23caa: "\x04\x04\x01\x01\x05\x03\x05", // 𣲪
+ 0x23cab: "\x04\x04\x01\x05\x01\x01\x03", // 𣲫
+ 0x23cac: "\x04\x04\x01\x03\x01\x01\x02", // 𣲬
+ 0x23cad: "\x04\x04\x01\x03\x01\x01\x05", // 𣲭
+ 0x23cae: "\x01\x03\x02\x04\x02\x05\x03\x04", // 𣲮
+ 0x23caf: "\x02\x05\x03\x04\x05\x02\x01\x05", // 𣲯
+ 0x23cb0: "\x02\x05\x03\x04\x01\x02\x05\x04", // 𣲰
+ 0x23cb1: "\x04\x03\x03\x04\x02\x05\x03\x04", // 𣲱
+ 0x23cb2: "\x04\x04\x01\x03\x01\x02\x03\x04", // 𣲲
+ 0x23cb3: "\x04\x04\x01\x01\x02\x05\x01\x05", // 𣲳
+ 0x23cb4: "\x05\x01\x05\x03\x02\x02\x05\x03\x04", // 𣲴
+ 0x23cb5: "\x04\x04\x01\x02\x05\x01\x03\x04", // 𣲵
+ 0x23cb6: "\x04\x04\x01\x02\x05\x03\x05\x01", // 𣲶
+ 0x23cb7: "\x04\x04\x01\x02\x05\x05\x04\x01", // 𣲷
+ 0x23cb8: "\x04\x04\x01\x02\x05\x02\x05\x03", // 𣲸
+ 0x23cb9: "\x04\x04\x01\x02\x05\x02\x01\x01", // 𣲹
+ 0x23cba: "\x04\x04\x01\x05\x01\x02\x05\x04", // 𣲺
+ 0x23cbb: "\x04\x04\x01\x05\x01\x03\x03\x05", // 𣲻
+ 0x23cbc: "\x04\x04\x01\x04\x04\x05\x03\x05", // 𣲼
+ 0x23cbd: "\x04\x04\x01\x04\x04\x05\x03\x05", // 𣲽
+ 0x23cbe: "\x04\x04\x01\x05\x04\x01\x02\x01", // 𣲾
+ 0x23cbf: "\x04\x04\x01\x03\x02\x05\x05\x04", // 𣲿
+ 0x23cc0: "\x04\x04\x01\x02\x05\x01\x01\x02", // 𣳀
+ 0x23cc1: "\x04\x04\x01\x03\x04\x04\x01\x05", // 𣳁
+ 0x23cc2: "\x01\x02\x02\x05\x01\x02\x05\x03\x04", // 𣳂
+ 0x23cc3: "\x04\x04\x01\x01\x05\x01\x02\x01", // 𣳃
+ 0x23cc4: "\x04\x04\x01\x02\x05\x01\x02\x01", // 𣳄
+ 0x23cc5: "\x04\x04\x01\x03\x04\x02\x03\x04", // 𣳅
+ 0x23cc6: "\x04\x01\x05\x05\x01\x02\x05\x03\x04", // 𣳆
+ 0x23cc7: "\x04\x04\x01\x01\x03\x01\x02\x01", // 𣳇
+ 0x23cc8: "\x04\x04\x01\x03\x02\x02\x05\x02", // 𣳈
+ 0x23cc9: "\x02\x05\x03\x04\x02\x05\x03\x05\x01", // 𣳉
+ 0x23cca: "\x04\x04\x01\x01\x05\x01\x02\x01", // 𣳊
+ 0x23ccb: "\x04\x04\x01\x01\x02\x05\x02\x01", // 𣳋
+ 0x23ccc: "\x04\x04\x01\x04\x01\x05\x03\x05", // 𣳌
+ 0x23ccd: "\x04\x04\x01\x04\x01\x04\x03\x05", // 𣳍
+ 0x23cce: "\x04\x04\x01\x01\x03\x02\x04\x01", // 𣳎
+ 0x23ccf: "\x04\x04\x01\x01\x01\x02\x05\x04", // 𣳏
+ 0x23cd0: "\x04\x04\x01\x01\x05\x03\x01\x05", // 𣳐
+ 0x23cd1: "\x04\x04\x01\x02\x05\x01\x01\x02", // 𣳑
+ 0x23cd2: "\x04\x04\x01\x02\x05\x02\x05\x04", // 𣳒
+ 0x23cd3: "\x04\x04\x01\x02\x01\x01\x02\x04", // 𣳓
+ 0x23cd4: "\x04\x04\x01\x03\x05\x01\x01\x02", // 𣳔
+ 0x23cd5: "\x01\x01\x02\x03\x04\x02\x05\x03\x04", // 𣳕
+ 0x23cd6: "\x02\x05\x03\x04\x01\x02\x02\x05\x01", // 𣳖
+ 0x23cd7: "\x02\x05\x03\x04\x05\x05\x04\x01\x04", // 𣳗
+ 0x23cd8: "\x04\x04\x01\x01\x02\x02\x02\x01", // 𣳘
+ 0x23cd9: "\x04\x04\x01\x01\x03\x01\x01\x02", // 𣳙
+ 0x23cda: "\x04\x04\x01\x02\x05\x01\x05\x04", // 𣳚
+ 0x23cdb: "\x04\x04\x01\x03\x02\x05\x03\x04", // 𣳛
+ 0x23cdc: "\x04\x04\x01\x03\x05\x03\x05\x05", // 𣳜
+ 0x23cdd: "\x04\x04\x01\x04\x01\x03\x01\x02", // 𣳝
+ 0x23cde: "\x04\x04\x01\x04\x05\x03\x05\x01", // 𣳞
+ 0x23cdf: "\x04\x04\x01\x05\x02\x01\x03\x04", // 𣳟
+ 0x23ce0: "\x04\x04\x01\x05\x05\x04\x01\x04", // 𣳠
+ 0x23ce1: "\x04\x04\x01\x01\x03\x05\x03\x04", // 𣳡
+ 0x23ce2: "\x04\x04\x01\x03\x05\x04\x02\x04", // 𣳢
+ 0x23ce3: "\x02\x05\x03\x04\x05\x01\x03\x03\x05", // 𣳣
+ 0x23ce4: "\x04\x04\x01\x02\x05\x01\x01\x02\x01", // 𣳤
+ 0x23ce5: "\x04\x04\x01\x04\x01\x03\x03\x01\x05", // 𣳥
+ 0x23ce6: "\x04\x04\x01\x03\x02\x05\x03\x04\x01", // 𣳦
+ 0x23ce7: "\x04\x04\x01\x02\x05\x01\x05\x05\x05", // 𣳧
+ 0x23ce8: "\x04\x04\x01\x03\x02\x05\x01\x05\x01", // 𣳨
+ 0x23ce9: "\x04\x04\x01\x01\x01\x03\x05\x03\x04", // 𣳩
+ 0x23cea: "\x04\x04\x01\x01\x02\x05\x01\x03\x04", // 𣳪
+ 0x23ceb: "\x04\x04\x01\x05\x02\x02\x01\x01\x02\x01", // 𣳫
+ 0x23cec: "\x04\x04\x01\x03\x01\x01\x02\x05\x02", // 𣳬
+ 0x23ced: "\x04\x04\x01\x03\x04\x04\x03\x05\x04", // 𣳭
+ 0x23cee: "\x04\x04\x01\x02\x05\x01\x02\x05\x01", // 𣳮
+ 0x23cef: "\x04\x04\x01\x05\x05\x04\x05\x05\x04", // 𣳯
+ 0x23cf0: "\x04\x04\x01\x01\x02\x03\x04\x01\x02", // 𣳰
+ 0x23cf1: "\x04\x04\x01\x01\x01\x01\x02\x05\x03", // 𣳱
+ 0x23cf2: "\x04\x04\x01\x02\x05\x05\x02\x01\x01", // 𣳲
+ 0x23cf3: "\x01\x02\x05\x02\x02\x01\x02\x05\x03\x04", // 𣳳
+ 0x23cf4: "\x04\x04\x01\x03\x01\x02\x01\x02\x01", // 𣳴
+ 0x23cf5: "\x04\x04\x01\x05\x04\x05\x04\x05\x04", // 𣳵
+ 0x23cf6: "\x04\x04\x01\x01\x03\x02\x04\x01\x02", // 𣳶
+ 0x23cf7: "\x04\x04\x01\x03\x05\x02\x02\x01\x01", // 𣳷
+ 0x23cf8: "\x04\x04\x01\x03\x05\x05\x02\x03\x05", // 𣳸
+ 0x23cf9: "\x04\x04\x01\x01\x03\x04\x01\x01\x02", // 𣳹
+ 0x23cfa: "\x04\x04\x01\x05\x05\x05\x02\x05\x02", // 𣳺
+ 0x23cfb: "\x03\x02\x05\x01\x01\x01\x02\x05\x03\x04", // 𣳻
+ 0x23cfc: "\x04\x04\x01\x03\x05\x01\x02\x03\x04", // 𣳼
+ 0x23cfd: "\x04\x04\x01\x03\x05\x01\x02\x05\x02", // 𣳽
+ 0x23cfe: "\x04\x03\x01\x01\x03\x04\x02\x04\x01\x03\x04", // 𣳾
+ 0x23cff: "\x04\x04\x01\x04\x04\x05\x01\x01\x02", // 𣳿
+ 0x23d00: "\x04\x04\x01\x05\x03\x05\x03\x05\x03", // 𣴀
+ 0x23d01: "\x04\x04\x01\x04\x02\x05\x05\x01\x01\x02", // 𣴁
+ 0x23d02: "\x04\x04\x01\x03\x05\x03\x05\x05\x04", // 𣴂
+ 0x23d03: "\x04\x04\x01\x04\x01\x05\x03\x03\x04", // 𣴃
+ 0x23d04: "\x04\x04\x01\x04\x05\x03\x05\x05\x04", // 𣴄
+ 0x23d05: "\x04\x04\x01\x05\x01\x03\x01\x01\x02", // 𣴅
+ 0x23d06: "\x04\x04\x01\x05\x04\x01\x05\x04\x01", // 𣴆
+ 0x23d07: "\x04\x04\x01\x01\x03\x01\x03\x04\x04", // 𣴇
+ 0x23d08: "\x04\x04\x01\x01\x05\x01\x02\x02\x02", // 𣴈
+ 0x23d09: "\x04\x04\x01\x02\x05\x01\x01\x05\x04", // 𣴉
+ 0x23d0a: "\x04\x04\x01\x03\x05\x05\x02\x01\x05", // 𣴊
+ 0x23d0b: "\x04\x04\x01\x03\x03\x05\x01\x01\x05", // 𣴋
+ 0x23d0c: "\x04\x04\x01\x05\x05\x04\x01\x03\x04", // 𣴌
+ 0x23d0d: "\x04\x04\x01\x05\x05\x04\x02\x03\x04", // 𣴍
+ 0x23d0e: "\x04\x03\x01\x01\x02\x01\x02\x05\x03\x04", // 𣴎
+ 0x23d0f: "\x04\x05\x05\x03\x04\x04\x05\x05\x03\x04", // 𣴏
+ 0x23d10: "\x01\x02\x01\x03\x01\x05\x02\x05\x03\x04", // 𣴐
+ 0x23d11: "\x04\x04\x01\x01\x05\x04\x03\x02\x05", // 𣴑
+ 0x23d12: "\x04\x04\x01\x02\x03\x04\x01\x03\x04", // 𣴒
+ 0x23d13: "\x04\x04\x01\x03\x02\x03\x01\x01\x02", // 𣴓
+ 0x23d14: "\x04\x04\x01\x04\x01\x03\x01\x01\x02", // 𣴔
+ 0x23d15: "\x04\x04\x01\x04\x03\x03\x04\x03\x05", // 𣴕
+ 0x23d16: "\x04\x04\x01\x05\x05\x05\x03\x05\x04", // 𣴖
+ 0x23d17: "\x04\x04\x01\x03\x05\x04\x02\x05\x02", // 𣴗
+ 0x23d18: "\x04\x04\x01\x04\x04\x01\x01\x03\x04", // 𣴘
+ 0x23d19: "\x04\x04\x01\x03\x05\x04\x03\x05\x04", // 𣴙
+ 0x23d1a: "\x04\x04\x01\x05\x03\x05\x03\x05\x03", // 𣴚
+ 0x23d1b: "\x04\x04\x01\x01\x01\x03\x05\x03\x04", // 𣴛
+ 0x23d1c: "\x04\x04\x01\x01\x02\x01\x03\x01\x05", // 𣴜
+ 0x23d1d: "\x02\x05\x03\x04\x03\x04\x01\x05\x03\x04", // 𣴝
+ 0x23d1e: "\x04\x04\x01\x03\x05\x05\x03\x01\x02\x01", // 𣴞
+ 0x23d1f: "\x04\x04\x01\x03\x02\x05\x01\x01\x03\x05", // 𣴟
+ 0x23d20: "\x04\x04\x01\x03\x05\x01\x05\x02\x05\x01", // 𣴠
+ 0x23d21: "\x04\x04\x01\x03\x02\x05\x01\x01\x01\x05", // 𣴡
+ 0x23d22: "\x04\x04\x01\x03\x02\x05\x01\x01\x01\x02", // 𣴢
+ 0x23d23: "\x04\x04\x01\x05\x02\x01\x03\x01\x02\x01", // 𣴣
+ 0x23d24: "\x04\x04\x01\x01\x05\x05\x04\x05\x03\x04", // 𣴤
+ 0x23d25: "\x04\x04\x01\x03\x05\x03\x01\x01\x02\x01", // 𣴥
+ 0x23d26: "\x04\x04\x01\x04\x05\x05\x01\x05\x05\x04", // 𣴦
+ 0x23d27: "\x04\x04\x01\x05\x01\x02\x01\x01\x02\x01", // 𣴧
+ 0x23d28: "\x04\x04\x01\x01\x03\x02\x05\x01\x01\x01", // 𣴨
+ 0x23d29: "\x04\x04\x01\x04\x04\x05\x01\x02\x05\x05", // 𣴩
+ 0x23d2a: "\x04\x04\x01\x02\x05\x01\x01\x03\x01\x02", // 𣴪
+ 0x23d2b: "\x04\x04\x01\x05\x01\x02\x05\x01\x05\x04", // 𣴫
+ 0x23d2c: "\x04\x04\x01\x02\x05\x05\x01\x05\x05\x04", // 𣴬
+ 0x23d2d: "\x04\x04\x01\x01\x02\x01\x02\x03\x04\x05", // 𣴭
+ 0x23d2e: "\x04\x04\x01\x01\x01\x02\x01\x05\x03\x04", // 𣴮
+ 0x23d2f: "\x04\x04\x01\x02\x01\x02\x01\x02\x05\x02", // 𣴯
+ 0x23d30: "\x04\x04\x01\x01\x03\x04\x01\x02\x01\x02", // 𣴰
+ 0x23d31: "\x04\x04\x01\x02\x01\x02\x01\x01\x01\x02", // 𣴱
+ 0x23d32: "\x03\x04\x03\x04\x02\x05\x01\x02\x05\x03\x04", // 𣴲
+ 0x23d33: "\x02\x05\x03\x04\x03\x04\x03\x04\x01\x02\x01", // 𣴳
+ 0x23d34: "\x03\x01\x05\x05\x04\x01\x04\x02\x05\x03\x04", // 𣴴
+ 0x23d35: "\x04\x04\x01\x02\x05\x05\x01\x05\x01\x01", // 𣴵
+ 0x23d36: "\x04\x04\x01\x03\x04\x03\x04\x01\x02\x01", // 𣴶
+ 0x23d37: "\x04\x04\x01\x01\x02\x01\x02\x03\x04\x03", // 𣴷
+ 0x23d38: "\x04\x04\x01\x02\x01\x04\x05\x01\x03\x05", // 𣴸
+ 0x23d39: "\x04\x04\x01\x04\x01\x05\x05\x04\x03\x05", // 𣴹
+ 0x23d3a: "\x04\x04\x01\x02\x05\x02\x05\x03\x04\x01", // 𣴺
+ 0x23d3b: "\x04\x04\x01\x05\x01\x03\x02\x01\x02\x01", // 𣴻
+ 0x23d3c: "\x04\x04\x01\x03\x02\x05\x01\x01\x03\x04", // 𣴼
+ 0x23d3d: "\x04\x04\x01\x02\x05\x02\x04\x03\x03\x04", // 𣴽
+ 0x23d3e: "\x04\x04\x01\x03\x02\x03\x01\x05\x02\x05", // 𣴾
+ 0x23d3f: "\x04\x04\x01\x04\x01\x03\x03\x01\x01\x02", // 𣴿
+ 0x23d40: "\x04\x04\x01\x02\x05\x01\x01\x01\x02\x01", // 𣵀
+ 0x23d41: "\x04\x04\x01\x03\x02\x03\x02\x05\x01\x01", // 𣵁
+ 0x23d42: "\x04\x04\x01\x03\x04\x01\x05\x02\x05\x03\x04", // 𣵂
+ 0x23d43: "\x04\x04\x01\x04\x03\x01\x01\x03\x02\x02", // 𣵃
+ 0x23d44: "\x04\x04\x01\x04\x01\x03\x01\x02\x03\x04", // 𣵄
+ 0x23d45: "\x04\x04\x01\x04\x01\x05\x02\x04\x04\x04", // 𣵅
+ 0x23d46: "\x04\x04\x01\x04\x04\x05\x03\x05\x03\x05", // 𣵆
+ 0x23d47: "\x04\x04\x01\x04\x04\x05\x03\x05\x03\x05", // 𣵇
+ 0x23d48: "\x04\x04\x01\x04\x04\x05\x01\x02\x01\x05", // 𣵈
+ 0x23d49: "\x04\x04\x01\x04\x01\x02\x02\x01\x03\x04", // 𣵉
+ 0x23d4a: "\x04\x04\x01\x05\x02\x01\x01\x01\x05\x02", // 𣵊
+ 0x23d4b: "\x04\x04\x01\x01\x01\x03\x05\x01\x01\x02", // 𣵋
+ 0x23d4c: "\x04\x04\x01\x05\x01\x01\x02\x05\x03\x04", // 𣵌
+ 0x23d4d: "\x04\x04\x01\x01\x01\x03\x05\x01\x01\x01", // 𣵍
+ 0x23d4e: "\x04\x04\x01\x01\x02\x03\x04\x05\x02\x01", // 𣵎
+ 0x23d4f: "\x04\x04\x01\x05\x01\x01\x01\x02\x03\x04", // 𣵏
+ 0x23d50: "\x04\x04\x01\x01\x02\x05\x01\x01\x01\x02", // 𣵐
+ 0x23d51: "\x04\x04\x01\x01\x05\x03\x03\x01\x03\x04", // 𣵑
+ 0x23d52: "\x04\x04\x01\x01\x02\x01\x03\x05\x04\x04", // 𣵒
+ 0x23d53: "\x04\x04\x01\x02\x05\x01\x03\x05\x03\x03", // 𣵓
+ 0x23d54: "\x04\x04\x01\x02\x01\x02\x05\x01\x02\x01", // 𣵔
+ 0x23d55: "\x04\x04\x01\x02\x01\x05\x02\x01\x03\x04", // 𣵕
+ 0x23d56: "\x04\x04\x01\x02\x05\x01\x01\x01\x03\x04", // 𣵖
+ 0x23d57: "\x04\x04\x01\x02\x05\x01\x03\x01\x03\x04", // 𣵗
+ 0x23d58: "\x04\x04\x01\x02\x05\x02\x01\x01\x03\x05", // 𣵘
+ 0x23d59: "\x04\x04\x01\x02\x05\x02\x03\x02\x01\x05", // 𣵙
+ 0x23d5a: "\x04\x04\x01\x03\x01\x03\x04\x02\x03\x04", // 𣵚
+ 0x23d5b: "\x04\x04\x01\x03\x01\x02\x03\x04\x05\x03", // 𣵛
+ 0x23d5c: "\x04\x04\x01\x03\x01\x03\x04\x02\x05\x02", // 𣵜
+ 0x23d5d: "\x04\x04\x01\x05\x03\x02\x05\x04\x02\x04", // 𣵝
+ 0x23d5e: "\x04\x04\x01\x01\x01\x03\x04\x02\x05\x01", // 𣵞
+ 0x23d5f: "\x04\x04\x01\x01\x03\x04\x02\x05\x03\x04", // 𣵟
+ 0x23d60: "\x04\x04\x01\x01\x03\x05\x03\x03\x03\x04", // 𣵠
+ 0x23d61: "\x04\x04\x01\x02\x05\x01\x01\x01\x01\x02", // 𣵡
+ 0x23d62: "\x04\x04\x01\x02\x05\x01\x02\x05\x01\x01", // 𣵢
+ 0x23d63: "\x04\x04\x01\x03\x02\x01\x02\x05\x01\x02", // 𣵣
+ 0x23d64: "\x04\x04\x01\x03\x02\x02\x05\x01\x01\x01", // 𣵤
+ 0x23d65: "\x04\x04\x01\x03\x05\x02\x02\x05\x01\x01", // 𣵥
+ 0x23d66: "\x04\x04\x01\x03\x05\x02\x05\x01\x02\x01", // 𣵦
+ 0x23d67: "\x04\x04\x01\x04\x01\x01\x01\x02\x05\x01", // 𣵧
+ 0x23d68: "\x04\x04\x01\x01\x02\x05\x05\x01\x05\x01", // 𣵨
+ 0x23d69: "\x04\x04\x01\x01\x03\x04\x04\x03\x03\x04", // 𣵩
+ 0x23d6a: "\x04\x04\x01\x02\x05\x01\x01\x01\x05\x03", // 𣵪
+ 0x23d6b: "\x04\x04\x01\x04\x05\x03\x04\x01\x03\x04", // 𣵫
+ 0x23d6c: "\x04\x04\x01\x05\x01\x05\x05\x01\x01\x05", // 𣵬
+ 0x23d6d: "\x04\x04\x01\x05\x02\x02\x01\x01\x02\x01", // 𣵭
+ 0x23d6e: "\x04\x04\x01\x01\x01\x01\x03\x05\x02", // 𣵮
+ 0x23d6f: "\x02\x05\x01\x03\x05\x03\x04\x02\x05\x03\x04", // 𣵯
+ 0x23d70: "\x04\x04\x01\x04\x01\x03\x04\x02\x05\x01", // 𣵰
+ 0x23d71: "\x04\x04\x01\x01\x02\x01\x01\x01\x02\x01", // 𣵱
+ 0x23d72: "\x04\x04\x01\x03\x02\x04\x03\x01\x01\x02", // 𣵲
+ 0x23d73: "\x05\x04\x02\x05\x01\x01\x02\x02\x05\x03\x04", // 𣵳
+ 0x23d74: "\x04\x04\x01\x02\x05\x01\x03\x04\x04\x05", // 𣵴
+ 0x23d75: "\x04\x04\x01\x02\x05\x02\x03\x05\x04", // 𣵵
+ 0x23d76: "\x04\x04\x01\x02\x05\x01\x03\x05\x03\x04", // 𣵶
+ 0x23d77: "\x04\x04\x01\x01\x02\x02\x01\x01\x05\x02", // 𣵷
+ 0x23d78: "\x04\x04\x01\x03\x01\x04\x03\x01\x04\x03\x05", // 𣵸
+ 0x23d79: "\x04\x04\x01\x01\x05\x01\x05\x01\x02\x01", // 𣵹
+ 0x23d7a: "\x04\x04\x01\x05\x02\x03\x01\x05\x02\x05", // 𣵺
+ 0x23d7b: "\x04\x04\x01\x05\x02\x04\x04\x05\x03\x05", // 𣵻
+ 0x23d7c: "\x04\x04\x01\x02\x05\x01\x01\x01\x01\x01\x02", // 𣵼
+ 0x23d7d: "\x04\x04\x01\x01\x02\x01\x02\x03\x01\x03\x04", // 𣵽
+ 0x23d7e: "\x04\x04\x01\x01\x02\x01\x05\x05\x01\x02\x01", // 𣵾
+ 0x23d7f: "\x04\x04\x01\x03\x02\x02\x05\x01\x03\x02\x05", // 𣵿
+ 0x23d80: "\x04\x04\x01\x02\x05\x01\x01\x03\x05\x01\x01", // 𣶀
+ 0x23d81: "\x04\x04\x01\x01\x02\x03\x04\x03\x02\x01\x05", // 𣶁
+ 0x23d82: "\x04\x04\x01\x03\x03\x02\x04\x01\x01\x02\x01", // 𣶂
+ 0x23d83: "\x04\x04\x01\x01\x02\x02\x05\x01\x01\x01\x02", // 𣶃
+ 0x23d84: "\x04\x04\x01\x05\x05\x05\x02\x05\x01\x02\x02", // 𣶄
+ 0x23d85: "\x04\x04\x01\x05\x01\x03\x04\x01\x04\x03\x01", // 𣶅
+ 0x23d86: "\x04\x04\x01\x04\x04\x05\x03\x05\x05\x01\x05", // 𣶆
+ 0x23d87: "\x04\x04\x01\x01\x02\x05\x01\x01\x02\x05\x01", // 𣶇
+ 0x23d88: "\x04\x04\x01\x02\x05\x04\x03\x01\x04\x01\x05", // 𣶈
+ 0x23d89: "\x04\x04\x01\x03\x05\x01\x03\x04\x04\x01\x02", // 𣶉
+ 0x23d8a: "\x04\x04\x01\x05\x02\x01\x03\x02\x05\x01\x01", // 𣶊
+ 0x23d8b: "\x04\x04\x01\x03\x05\x04\x01\x04\x03\x03\x04", // 𣶋
+ 0x23d8c: "\x04\x04\x01\x03\x05\x01\x05\x03\x01\x03\x04", // 𣶌
+ 0x23d8d: "\x04\x04\x01\x05\x02\x01\x03\x01\x03\x04\x04", // 𣶍
+ 0x23d8e: "\x04\x04\x01\x02\x05\x02\x03\x02\x05\x01\x01", // 𣶎
+ 0x23d8f: "\x04\x04\x01\x01\x05\x01\x01\x02\x01\x03\x04", // 𣶏
+ 0x23d90: "\x04\x04\x01\x01\x03\x04\x03\x05\x03\x05\x02", // 𣶐
+ 0x23d91: "\x04\x04\x01\x04\x01\x03\x04\x05\x02\x03\x05", // 𣶑
+ 0x23d92: "\x03\x01\x02\x01\x05\x05\x02\x01\x02", // 𣶒
+ 0x23d93: "\x04\x04\x01\x02\x01\x02\x05\x03\x05\x04\x01", // 𣶓
+ 0x23d94: "\x04\x04\x01\x01\x05\x04\x03\x02\x05\x03\x04", // 𣶔
+ 0x23d95: "\x04\x04\x01\x01\x05\x02\x01\x02\x01\x01\x05", // 𣶕
+ 0x23d96: "\x04\x04\x01\x01\x05\x05\x05\x03\x01\x02\x01", // 𣶖
+ 0x23d97: "\x04\x04\x01\x03\x04\x04\x05\x02\x05\x03\x04", // 𣶗
+ 0x23d98: "\x04\x04\x01\x03\x05\x03\x05\x04\x03\x05\x04", // 𣶘
+ 0x23d99: "\x02\x05\x03\x04\x02\x05\x03\x04\x03\x05\x03\x04", // 𣶙
+ 0x23d9a: "\x03\x02\x02\x05\x01\x03\x02\x05\x02\x05\x03\x04", // 𣶚
+ 0x23d9b: "\x04\x04\x01\x02\x05\x03\x04\x03\x05\x03\x04", // 𣶛
+ 0x23d9c: "\x04\x04\x01\x03\x02\x02\x05\x01\x05\x05\x05", // 𣶜
+ 0x23d9d: "\x04\x04\x01\x01\x02\x01\x02\x05\x01\x01\x01", // 𣶝
+ 0x23d9e: "\x04\x04\x01\x02\x05\x01\x02\x05\x02\x01\x01", // 𣶞
+ 0x23d9f: "\x04\x04\x01\x02\x05\x02\x03\x04\x04\x01\x05", // 𣶟
+ 0x23da0: "\x04\x04\x01\x01\x05\x03\x04\x02\x04\x04\x04", // 𣶠
+ 0x23da1: "\x04\x04\x01\x02\x05\x02\x01\x03\x05\x04\x01", // 𣶡
+ 0x23da2: "\x04\x04\x01\x01\x01\x03\x05\x04\x01\x05\x03", // 𣶢
+ 0x23da3: "\x04\x04\x01\x01\x02\x05\x01\x02\x01\x05\x04", // 𣶣
+ 0x23da4: "\x04\x04\x01\x02\x05\x01\x03\x04\x02\x05\x01", // 𣶤
+ 0x23da5: "\x04\x04\x01\x01\x02\x01\x01\x03\x02\x05\x01", // 𣶥
+ 0x23da6: "\x04\x04\x01\x02\x05\x01\x03\x02\x05\x01\x01", // 𣶦
+ 0x23da7: "\x04\x04\x01\x03\x04\x05\x02\x03\x03\x05\x04", // 𣶧
+ 0x23da8: "\x04\x04\x01\x01\x03\x02\x05\x01\x02\x01\x04", // 𣶨
+ 0x23da9: "\x04\x04\x01\x01\x02\x05\x01\x02\x01\x05\x02", // 𣶩
+ 0x23daa: "\x04\x04\x01\x02\x05\x01\x01\x01\x01\x02\x01", // 𣶪
+ 0x23dab: "\x04\x04\x01\x04\x05\x03\x05\x02\x05\x01\x01", // 𣶫
+ 0x23dac: "\x04\x04\x01\x05\x02\x02\x05\x01\x05\x04\x01", // 𣶬
+ 0x23dad: "\x04\x04\x01\x02\x01\x05\x03\x01\x05\x05\x03", // 𣶭
+ 0x23dae: "\x04\x04\x01\x01\x03\x04\x03\x01\x05\x02\x03", // 𣶮
+ 0x23daf: "\x04\x04\x01\x05\x01\x01\x02\x02\x05\x01\x01", // 𣶯
+ 0x23db0: "\x04\x04\x01\x05\x02\x01\x02\x05\x01\x02", // 𣶰
+ 0x23db1: "\x04\x04\x01\x03\x01\x01\x03\x04\x02\x05\x01", // 𣶱
+ 0x23db2: "\x04\x04\x01\x01\x02\x03\x04\x02\x03\x04\x03", // 𣶲
+ 0x23db3: "\x04\x04\x01\x03\x05\x04\x01\x01\x02\x01\x04", // 𣶳
+ 0x23db4: "\x04\x04\x01\x03\x05\x01\x01\x02\x05\x01\x02", // 𣶴
+ 0x23db5: "\x04\x04\x01\x02\x01\x02\x01\x02\x01\x03\x04", // 𣶵
+ 0x23db6: "\x04\x04\x01\x03\x04\x04\x03\x01\x02\x03\x04", // 𣶶
+ 0x23db7: "\x02\x05\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04", // 𣶷
+ 0x23db8: "\x04\x04\x01\x03\x01\x05\x01\x01\x02\x03\x04", // 𣶸
+ 0x23db9: "\x04\x04\x01\x03\x03\x02\x04\x01\x01\x01\x02", // 𣶹
+ 0x23dba: "\x04\x04\x01\x04\x04\x05\x02\x05\x01\x01\x01", // 𣶺
+ 0x23dbb: "\x04\x04\x01\x02\x05\x01\x02\x01\x05\x04", // 𣶻
+ 0x23dbc: "\x04\x04\x01\x01\x02\x01\x02\x03\x05\x05\x03", // 𣶼
+ 0x23dbd: "\x04\x04\x01\x01\x02\x01\x02\x01\x01\x05\x04", // 𣶽
+ 0x23dbe: "\x04\x04\x01\x01\x05\x03\x04\x02\x04\x04\x04", // 𣶾
+ 0x23dbf: "\x04\x04\x01\x02\x02\x01\x02\x01\x01\x01\x02", // 𣶿
+ 0x23dc0: "\x04\x04\x01\x04\x01\x03\x02\x01\x02\x05\x01", // 𣷀
+ 0x23dc1: "\x04\x04\x01\x04\x04\x05\x03\x05\x05\x05\x05", // 𣷁
+ 0x23dc2: "\x04\x04\x01\x04\x04\x05\x01\x01\x02\x01\x04", // 𣷂
+ 0x23dc3: "\x04\x04\x01\x04\x03\x01\x01\x03\x04\x05\x03", // 𣷃
+ 0x23dc4: "\x04\x04\x01\x04\x01\x03\x05\x01\x01\x03\x04", // 𣷄
+ 0x23dc5: "\x04\x04\x01\x04\x04\x05\x05\x04\x02\x05\x01", // 𣷅
+ 0x23dc6: "\x04\x04\x01\x04\x04\x05\x03\x05\x01\x02\x01", // 𣷆
+ 0x23dc7: "\x04\x04\x01\x04\x03\x03\x04\x04\x04\x04\x04", // 𣷇
+ 0x23dc8: "\x04\x04\x01\x05\x01\x01\x02\x05\x01\x01\x02", // 𣷈
+ 0x23dc9: "\x04\x04\x01\x05\x02\x02\x05\x01\x05\x04\x01", // 𣷉
+ 0x23dca: "\x04\x04\x01\x01\x03\x05\x04\x04\x04\x01\x02", // 𣷊
+ 0x23dcb: "\x04\x04\x01\x05\x03\x02\x05\x01\x02\x01\x04", // 𣷋
+ 0x23dcc: "\x04\x04\x01\x01\x02\x05\x02\x04\x01\x03\x04", // 𣷌
+ 0x23dcd: "\x04\x04\x01\x05\x01\x03\x02\x05\x01\x01\x01", // 𣷍
+ 0x23dce: "\x04\x04\x01\x01\x02\x01\x02\x03\x05\x01\x01", // 𣷎
+ 0x23dcf: "\x04\x04\x01\x01\x02\x01\x02\x03\x04\x01\x05", // 𣷏
+ 0x23dd0: "\x04\x04\x01\x02\x05\x01\x01\x02\x01\x03\x04", // 𣷐
+ 0x23dd1: "\x04\x04\x01\x02\x01\x05\x01\x01\x05\x03\x01", // 𣷑
+ 0x23dd2: "\x04\x04\x01\x05\x05\x03\x04\x01\x01\x02\x01", // 𣷒
+ 0x23dd3: "\x04\x04\x01\x03\x01\x02\x03\x04\x02\x05\x01", // 𣷓
+ 0x23dd4: "\x04\x04\x01\x03\x05\x01\x03\x04\x01\x05\x03", // 𣷔
+ 0x23dd5: "\x04\x04\x01\x05\x05\x04\x04\x04\x04\x05\x04", // 𣷕
+ 0x23dd6: "\x04\x01\x03\x02\x03\x04\x03\x04\x02\x05\x03\x04", // 𣷖
+ 0x23dd7: "\x01\x02\x02\x01\x01\x01\x05\x04\x02\x05\x03\x04", // 𣷗
+ 0x23dd8: "\x02\x05\x03\x04\x01\x02\x03\x04\x02\x05\x03\x04", // 𣷘
+ 0x23dd9: "\x03\x05\x01\x03\x03\x01\x03\x04\x02\x05\x03\x04", // 𣷙
+ 0x23dda: "\x01\x03\x04\x03\x04\x03\x04\x02\x04\x01\x03\x04", // 𣷚
+ 0x23ddb: "\x02\x05\x01\x02\x01\x03\x05\x04\x02\x05\x03\x04", // 𣷛
+ 0x23ddc: "\x02\x05\x03\x04\x02\x05\x03\x04\x03\x01\x03\x04", // 𣷜
+ 0x23ddd: "\x04\x04\x01\x01\x02\x01\x02\x02\x01\x03\x05", // 𣷝
+ 0x23dde: "\x04\x04\x01\x01\x02\x02\x01\x01\x02\x03\x04", // 𣷞
+ 0x23ddf: "\x04\x04\x01\x01\x03\x04\x04\x03\x01\x01\x02", // 𣷟
+ 0x23de0: "\x04\x04\x01\x02\x05\x01\x01\x03\x05\x01\x01", // 𣷠
+ 0x23de1: "\x04\x04\x01\x02\x05\x01\x02\x04\x05\x04\x04", // 𣷡
+ 0x23de2: "\x04\x04\x01\x02\x05\x01\x05\x03\x05\x01\x01", // 𣷢
+ 0x23de3: "\x04\x04\x01\x02\x05\x04\x03\x01\x02\x05\x02", // 𣷣
+ 0x23de4: "\x04\x04\x01\x02\x05\x05\x01\x02\x05\x01\x01", // 𣷤
+ 0x23de5: "\x04\x04\x01\x03\x01\x01\x03\x03\x05\x01\x01", // 𣷥
+ 0x23de6: "\x04\x04\x01\x03\x04\x04\x03\x01\x02\x03\x04", // 𣷦
+ 0x23de7: "\x04\x04\x01\x04\x01\x03\x02\x04\x02\x05\x01", // 𣷧
+ 0x23de8: "\x04\x04\x01\x04\x03\x01\x01\x03\x05\x02\x02", // 𣷨
+ 0x23de9: "\x04\x04\x01\x04\x03\x04\x04\x03\x05\x01\x01", // 𣷩
+ 0x23dea: "\x04\x04\x01\x02\x05\x02\x04\x01\x01\x02\x01", // 𣷪
+ 0x23deb: "\x04\x04\x01\x04\x01\x05\x03\x03\x01\x03\x04", // 𣷫
+ 0x23dec: "\x04\x04\x01\x04\x03\x01\x05\x03\x04\x02\x02", // 𣷬
+ 0x23ded: "\x04\x04\x01\x03\x03\x02\x05\x03\x02\x05\x04", // 𣷭
+ 0x23dee: "\x04\x04\x01\x01\x03\x02\x05\x01\x01\x03\x02", // 𣷮
+ 0x23def: "\x04\x04\x01\x03\x03\x01\x02\x04\x05\x04", // 𣷯
+ 0x23df0: "\x04\x04\x01\x02\x05\x02\x01\x03\x02\x05\x01", // 𣷰
+ 0x23df1: "\x04\x04\x01\x03\x02\x01\x02\x05\x01\x03\x04", // 𣷱
+ 0x23df2: "\x04\x04\x01\x03\x03\x05\x01\x03\x03\x01\x02", // 𣷲
+ 0x23df3: "\x04\x04\x01\x04\x01\x03\x03\x05\x01\x05\x04", // 𣷳
+ 0x23df4: "\x04\x04\x01\x01\x01\x02\x01\x03\x05\x03\x04", // 𣷴
+ 0x23df5: "\x04\x04\x01\x01\x01\x02\x05\x01\x02\x03\x04", // 𣷵
+ 0x23df6: "\x04\x04\x01\x02\x01\x02\x05\x05\x05\x04\x01", // 𣷶
+ 0x23df7: "\x04\x04\x01\x04\x01\x02\x02\x03\x04\x05\x04", // 𣷷
+ 0x23df8: "\x04\x04\x01\x01\x02\x01\x02\x04\x05\x04", // 𣷸
+ 0x23df9: "\x04\x04\x01\x03\x01\x03\x04\x02\x05\x03\x04", // 𣷹
+ 0x23dfa: "\x04\x04\x01\x05\x03\x03\x05\x03\x03\x05\x04", // 𣷺
+ 0x23dfb: "\x04\x04\x01\x01\x02\x05\x02\x05\x01\x01\x01", // 𣷻
+ 0x23dfc: "\x04\x04\x01\x01\x02\x05\x01\x01\x02\x01\x05\x04", // 𣷼
+ 0x23dfd: "\x04\x04\x01\x03\x02\x05\x01\x01\x04\x05\x05\x04", // 𣷽
+ 0x23dfe: "\x04\x04\x01\x01\x02\x05\x01\x01\x01\x02\x03\x05", // 𣷾
+ 0x23dff: "\x04\x04\x01\x01\x03\x01\x02\x01\x03\x05\x04\x01", // 𣷿
+ 0x23e00: "\x04\x04\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 𣸀
+ 0x23e01: "\x04\x04\x01\x05\x01\x01\x01\x01\x02\x03\x03\x03", // 𣸁
+ 0x23e02: "\x04\x04\x01\x01\x01\x02\x01\x03\x04\x05\x03\x04", // 𣸂
+ 0x23e03: "\x04\x04\x01\x01\x02\x01\x02\x01\x02\x03\x05\x04", // 𣸃
+ 0x23e04: "\x04\x04\x01\x03\x05\x04\x02\x04\x02\x05\x01\x01", // 𣸄
+ 0x23e05: "\x04\x04\x01\x01\x02\x01\x03\x01\x02\x02\x05\x01", // 𣸅
+ 0x23e06: "\x04\x04\x01\x01\x02\x01\x02\x02\x01\x02\x01\x01\x05", // 𣸆
+ 0x23e07: "\x04\x04\x01\x03\x02\x01\x02\x05\x01\x01\x03\x04", // 𣸇
+ 0x23e08: "\x04\x04\x01\x04\x04\x05\x04\x03\x03\x04\x05\x04", // 𣸈
+ 0x23e09: "\x04\x04\x01\x01\x02\x01\x04\x03\x01\x01\x01\x02", // 𣸉
+ 0x23e0a: "\x04\x04\x01\x03\x04\x01\x05\x01\x01\x05\x04", // 𣸊
+ 0x23e0b: "\x04\x04\x01\x02\x05\x01\x02\x01\x01\x03\x04\x04", // 𣸋
+ 0x23e0c: "\x04\x04\x01\x02\x03\x04\x03\x01\x02\x05\x01\x02", // 𣸌
+ 0x23e0d: "\x04\x04\x01\x05\x04\x03\x03\x04\x03\x05\x05\x04", // 𣸍
+ 0x23e0e: "\x04\x04\x01\x02\x01\x02\x05\x01\x02\x02\x05\x04", // 𣸎
+ 0x23e0f: "\x04\x04\x01\x05\x03\x01\x05\x04\x03\x01\x01\x05", // 𣸏
+ 0x23e10: "\x02\x05\x03\x04\x01\x03\x02\x05\x01\x02\x05\x03\x04", // 𣸐
+ 0x23e11: "\x04\x04\x01\x01\x02\x03\x04\x03\x01\x02\x03\x04", // 𣸑
+ 0x23e12: "\x04\x04\x01\x01\x03\x04\x01\x04\x03\x01\x01\x02", // 𣸒
+ 0x23e13: "\x04\x04\x01\x05\x04\x05\x04\x05\x04\x04\x03\x01", // 𣸓
+ 0x23e14: "\x04\x04\x01\x03\x05\x01\x03\x01\x01\x02\x03\x04", // 𣸔
+ 0x23e15: "\x01\x01\x03\x02\x03\x02\x05\x01\x01\x02\x05\x03\x04", // 𣸕
+ 0x23e16: "\x04\x04\x01\x03\x01\x03\x04\x04\x03\x01\x01\x02", // 𣸖
+ 0x23e17: "\x01\x01\x02\x03\x04\x03\x01\x03\x04\x02\x05\x03\x04", // 𣸗
+ 0x23e18: "\x04\x04\x01\x04\x04\x05\x03\x05\x04\x05\x04", // 𣸘
+ 0x23e19: "\x04\x04\x01\x02\x05\x01\x02\x05\x02\x02\x01\x01", // 𣸙
+ 0x23e1a: "\x04\x04\x01\x02\x05\x01\x02\x01\x04\x05\x02\x05", // 𣸚
+ 0x23e1b: "\x04\x04\x01\x02\x04\x03\x03\x05\x04\x01\x02\x02", // 𣸛
+ 0x23e1c: "\x04\x04\x01\x02\x05\x01\x01\x01\x03\x05\x05\x03", // 𣸜
+ 0x23e1d: "\x04\x04\x01\x01\x02\x01\x05\x04\x01\x05\x04\x01", // 𣸝
+ 0x23e1e: "\x01\x04\x03\x01\x02\x02\x05\x03\x04\x02\x05\x03\x04", // 𣸞
+ 0x23e1f: "\x04\x04\x01\x05\x05\x05\x01\x03\x05\x04\x02\x02", // 𣸟
+ 0x23e20: "\x04\x04\x01\x05\x05\x04\x01\x03\x05\x04\x02\x02", // 𣸠
+ 0x23e21: "\x04\x04\x01\x01\x02\x01\x04\x03\x01\x02\x03\x04", // 𣸡
+ 0x23e22: "\x04\x04\x01\x01\x05\x03\x05\x04\x05\x04\x03\x04", // 𣸢
+ 0x23e23: "\x04\x04\x01\x01\x02\x01\x02\x02\x02\x05\x03\x04", // 𣸣
+ 0x23e24: "\x04\x04\x01\x02\x05\x02\x02\x01\x04\x01\x05\x03", // 𣸤
+ 0x23e25: "\x04\x04\x01\x04\x01\x04\x03\x01\x03\x03\x03\x03", // 𣸥
+ 0x23e26: "\x04\x04\x01\x04\x05\x01\x01\x03\x05\x05\x03\x01", // 𣸦
+ 0x23e27: "\x04\x04\x01\x04\x05\x03\x04\x01\x03\x04\x04\x03", // 𣸧
+ 0x23e28: "\x04\x04\x01\x01\x02\x02\x04\x05\x04\x03\x03\x04", // 𣸨
+ 0x23e29: "\x04\x04\x01\x03\x03\x01\x02\x02\x05\x01\x01\x01", // 𣸩
+ 0x23e2a: "\x04\x04\x01\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 𣸪
+ 0x23e2b: "\x04\x04\x01\x05\x04\x05\x04\x05\x04\x01\x02\x01", // 𣸫
+ 0x23e2c: "\x04\x04\x01\x02\x05\x01\x01\x05\x03\x02\x05\x01", // 𣸬
+ 0x23e2d: "\x04\x04\x01\x02\x05\x01\x01\x04\x01\x04\x03\x01", // 𣸭
+ 0x23e2e: "\x04\x04\x01\x03\x04\x01\x05\x04\x01\x01\x05\x04", // 𣸮
+ 0x23e2f: "\x04\x04\x01\x01\x02\x03\x04\x03\x01\x05\x02\x01", // 𣸯
+ 0x23e30: "\x04\x04\x01\x01\x03\x02\x05\x01\x02\x05\x01\x05", // 𣸰
+ 0x23e31: "\x04\x04\x01\x01\x02\x01\x02\x03\x05\x04\x05\x05", // 𣸱
+ 0x23e32: "\x04\x04\x01\x01\x01\x01\x02\x05\x03\x01\x03\x04", // 𣸲
+ 0x23e33: "\x04\x04\x01\x01\x03\x04\x04\x01\x03\x05\x03\x04", // 𣸳
+ 0x23e34: "\x04\x04\x01\x01\x02\x03\x04\x04\x04\x05\x03\x05", // 𣸴
+ 0x23e35: "\x04\x04\x01\x01\x03\x01\x05\x03\x01\x05\x03\x04", // 𣸵
+ 0x23e36: "\x04\x04\x01\x01\x03\x05\x04\x01\x01\x05\x03\x04", // 𣸶
+ 0x23e37: "\x04\x04\x01\x01\x03\x04\x04\x03\x02\x05\x03\x04", // 𣸷
+ 0x23e38: "\x04\x04\x01\x01\x01\x03\x04\x02\x04\x01\x03\x04", // 𣸸
+ 0x23e39: "\x04\x04\x01\x05\x01\x03\x04\x03\x01\x01\x03\x02", // 𣸹
+ 0x23e3a: "\x04\x04\x01\x01\x03\x02\x05\x01\x01\x02\x03\x04", // 𣸺
+ 0x23e3b: "\x04\x04\x01\x01\x02\x01\x02\x01\x03\x05\x03\x04", // 𣸻
+ 0x23e3c: "\x04\x04\x01\x01\x03\x02\x05\x01\x01\x04\x04\x04", // 𣸼
+ 0x23e3d: "\x04\x04\x01\x01\x02\x01\x02\x01\x03\x04\x01\x02", // 𣸽
+ 0x23e3e: "\x04\x04\x01\x02\x01\x02\x05\x01\x04\x04\x04\x04", // 𣸾
+ 0x23e3f: "\x04\x04\x01\x01\x02\x01\x02\x02\x05\x01\x03\x05", // 𣸿
+ 0x23e40: "\x04\x04\x01\x01\x02\x01\x02\x03\x03\x05\x01\x01", // 𣹀
+ 0x23e41: "\x04\x04\x01\x03\x02\x05\x01\x01\x03\x05\x05\x03", // 𣹁
+ 0x23e42: "\x04\x04\x01\x03\x02\x01\x01\x01\x03\x05\x05\x04", // 𣹂
+ 0x23e43: "\x04\x04\x01\x03\x05\x05\x03\x02\x05\x02\x02\x01", // 𣹃
+ 0x23e44: "\x04\x04\x01\x03\x04\x04\x03\x03\x05\x01\x01\x02", // 𣹄
+ 0x23e45: "\x04\x03\x01\x02\x05\x01\x01\x02\x02\x02\x05\x03\x04", // 𣹅
+ 0x23e46: "\x04\x04\x01\x01\x03\x04\x04\x02\x05\x02\x02\x01", // 𣹆
+ 0x23e47: "\x04\x04\x01\x02\x03\x04\x03\x01\x02\x05\x01\x02", // 𣹇
+ 0x23e48: "\x04\x04\x01\x02\x05\x01\x01\x03\x02\x05\x01\x01", // 𣹈
+ 0x23e49: "\x04\x04\x01\x02\x05\x03\x04\x02\x05\x02\x02\x01", // 𣹉
+ 0x23e4a: "\x04\x04\x01\x03\x03\x05\x04\x01\x04\x03\x03\x03", // 𣹊
+ 0x23e4b: "\x04\x04\x01\x03\x02\x05\x01\x01\x01\x05\x03\x05", // 𣹋
+ 0x23e4c: "\x04\x04\x01\x04\x03\x03\x04\x03\x01\x02\x03\x04", // 𣹌
+ 0x23e4d: "\x04\x04\x01\x05\x01\x05\x02\x05\x03\x05\x04\x01", // 𣹍
+ 0x23e4e: "\x04\x04\x01\x05\x01\x05\x05\x01\x05\x01\x03\x04", // 𣹎
+ 0x23e4f: "\x04\x04\x01\x05\x02\x01\x05\x02\x01\x05\x02\x01", // 𣹏
+ 0x23e50: "\x04\x04\x01\x01\x02\x05\x01\x01\x05\x03\x01\x05", // 𣹐
+ 0x23e51: "\x04\x04\x01\x02\x05\x01\x02\x05\x01\x02\x01\x04", // 𣹑
+ 0x23e52: "\x04\x04\x01\x03\x05\x03\x03\x02\x05\x01\x02\x01", // 𣹒
+ 0x23e53: "\x04\x04\x01\x01\x02\x02\x05\x04\x02\x05\x01", // 𣹓
+ 0x23e54: "\x04\x04\x01\x02\x05\x02\x05\x01\x04\x05\x04", // 𣹔
+ 0x23e55: "\x04\x04\x01\x03\x03\x02\x05\x01\x01\x01\x01\x02", // 𣹕
+ 0x23e56: "\x04\x04\x01\x01\x03\x05\x04\x02\x05\x01\x01\x01", // 𣹖
+ 0x23e57: "\x04\x04\x01\x01\x01\x02\x01\x03\x04\x03\x03\x03", // 𣹗
+ 0x23e58: "\x04\x04\x01\x03\x03\x02\x01\x02\x01\x01\x02\x04", // 𣹘
+ 0x23e59: "\x04\x04\x01\x01\x03\x02\x05\x01\x01\x05\x02", // 𣹙
+ 0x23e5a: "\x04\x04\x01\x03\x02\x05\x02\x05\x01\x01\x03\x02", // 𣹚
+ 0x23e5b: "\x02\x05\x03\x04\x03\x02\x05\x01\x01\x01\x01\x02\x01", // 𣹛
+ 0x23e5c: "\x04\x04\x01\x05\x01\x01\x05\x04\x05\x02", // 𣹜
+ 0x23e5d: "\x04\x04\x01\x05\x02\x02\x04\x03\x03\x05\x04\x01", // 𣹝
+ 0x23e5e: "\x04\x04\x01\x04\x05\x01\x03\x05\x03\x03\x04\x03\x04", // 𣹞
+ 0x23e5f: "\x04\x04\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𣹟
+ 0x23e60: "\x04\x04\x01\x04\x05\x03\x05\x02\x05\x01\x03\x05\x04", // 𣹠
+ 0x23e61: "\x04\x04\x01\x01\x02\x01\x03\x01\x05\x02\x05\x01\x01", // 𣹡
+ 0x23e62: "\x04\x04\x01\x05\x04\x02\x05\x04\x03\x01\x01\x02\x01", // 𣹢
+ 0x23e63: "\x04\x04\x01\x05\x03\x05\x03\x05\x03\x02\x01\x02\x01", // 𣹣
+ 0x23e64: "\x04\x04\x01\x05\x03\x01\x02\x05\x01\x03\x01\x01\x02", // 𣹤
+ 0x23e65: "\x04\x04\x01\x03\x02\x01\x01\x02\x01\x03\x05\x01\x01", // 𣹥
+ 0x23e66: "\x04\x04\x01\x04\x04\x05\x05\x01\x01\x04\x05\x05\x04", // 𣹦
+ 0x23e67: "\x04\x04\x01\x04\x04\x05\x03\x05\x03\x01\x02\x01\x01", // 𣹧
+ 0x23e68: "\x04\x04\x01\x05\x02\x02\x01\x01\x05\x02\x03\x02\x02", // 𣹨
+ 0x23e69: "\x04\x04\x01\x05\x03\x05\x03\x05\x03\x03\x05\x04\x01", // 𣹩
+ 0x23e6a: "\x04\x04\x01\x04\x01\x05\x03\x03\x01\x03\x01\x01\x05", // 𣹪
+ 0x23e6b: "\x04\x04\x01\x04\x01\x03\x01\x02\x05\x01\x01\x01\x02", // 𣹫
+ 0x23e6c: "\x01\x02\x01\x04\x05\x01\x02\x05\x03\x04\x03\x05\x05\x04", // 𣹬
+ 0x23e6d: "\x04\x04\x01\x01\x05\x04\x03\x02\x05\x02\x05\x03\x04", // 𣹭
+ 0x23e6e: "\x04\x04\x01\x03\x02\x05\x03\x04\x01\x01\x05\x01\x05", // 𣹮
+ 0x23e6f: "\x04\x04\x01\x03\x05\x02\x05\x01\x01\x03\x05\x01\x05", // 𣹯
+ 0x23e70: "\x04\x04\x01\x05\x01\x01\x04\x05\x02\x05\x02\x05\x04", // 𣹰
+ 0x23e71: "\x04\x04\x01\x03\x04\x01\x02\x05\x01\x03\x05\x03\x04", // 𣹱
+ 0x23e72: "\x04\x04\x01\x05\x01\x03\x04\x01\x04\x03\x01\x01\x02", // 𣹲
+ 0x23e73: "\x02\x05\x03\x04\x01\x05\x04\x03\x02\x05\x02\x05\x03\x04", // 𣹳
+ 0x23e74: "\x04\x04\x01\x03\x01\x01\x02\x01\x02\x05\x01\x01\x01", // 𣹴
+ 0x23e75: "\x04\x04\x01\x02\x05\x02\x01\x02\x02\x01\x01\x01\x05", // 𣹵
+ 0x23e76: "\x04\x04\x01\x03\x04\x03\x04\x01\x02\x01\x03\x05\x04", // 𣹶
+ 0x23e77: "\x04\x04\x01\x01\x02\x05\x01\x01\x02\x04\x02\x05\x02", // 𣹷
+ 0x23e78: "\x04\x04\x01\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04", // 𣹸
+ 0x23e79: "\x01\x03\x01\x04\x03\x03\x04\x05\x03\x04\x01\x01\x01\x01\x01", // 𣹹
+ 0x23e7a: "\x04\x04\x01\x02\x05\x01\x05\x05\x05\x02\x05\x03\x04", // 𣹺
+ 0x23e7b: "\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x02\x05\x03\x04", // 𣹻
+ 0x23e7c: "\x04\x04\x01\x01\x02\x02\x01\x01\x01\x02\x05\x01\x01", // 𣹼
+ 0x23e7d: "\x04\x04\x01\x02\x05\x01\x01\x02\x01\x01\x01\x02\x01", // 𣹽
+ 0x23e7e: "\x04\x04\x01\x04\x01\x02\x05\x01\x02\x05\x01\x01\x02", // 𣹾
+ 0x23e7f: "\x04\x04\x01\x04\x01\x04\x03\x02\x05\x04\x01\x05\x03", // 𣹿
+ 0x23e80: "\x04\x04\x01\x02\x05\x02\x01\x02\x01\x03\x05\x04\x01", // 𣺀
+ 0x23e81: "\x04\x04\x01\x01\x03\x01\x03\x05\x01\x01\x05\x03\x04", // 𣺁
+ 0x23e82: "\x04\x04\x01\x02\x05\x01\x01\x04\x04\x05\x05\x03\x01", // 𣺂
+ 0x23e83: "\x04\x04\x01\x05\x04\x05\x04\x05\x04\x02\x05\x01\x01", // 𣺃
+ 0x23e84: "\x04\x04\x01\x04\x01\x04\x03\x01\x04\x01\x04\x03\x01", // 𣺄
+ 0x23e85: "\x04\x04\x01\x03\x02\x01\x05\x01\x01\x03\x05\x03\x03", // 𣺅
+ 0x23e86: "\x04\x04\x01\x03\x05\x02\x05\x01\x02\x01\x01\x03\x02", // 𣺆
+ 0x23e87: "\x04\x04\x01\x01\x01\x02\x03\x04\x01\x02\x02\x01\x01", // 𣺇
+ 0x23e88: "\x04\x04\x01\x03\x02\x01\x03\x04\x01\x02\x05\x01\x02", // 𣺈
+ 0x23e89: "\x04\x04\x01\x04\x05\x01\x02\x03\x04\x01\x02\x03\x04", // 𣺉
+ 0x23e8a: "\x04\x04\x01\x04\x04\x05\x01\x03\x05\x03\x03\x03\x04", // 𣺊
+ 0x23e8b: "\x04\x04\x01\x01\x02\x01\x02\x01\x02\x05\x03\x05\x01", // 𣺋
+ 0x23e8c: "\x04\x04\x01\x01\x02\x02\x01\x01\x01\x02\x03\x04\x03", // 𣺌
+ 0x23e8d: "\x04\x04\x01\x05\x04\x03\x03\x04\x03\x01\x01\x03\x04", // 𣺍
+ 0x23e8e: "\x04\x04\x01\x05\x01\x01\x04\x05\x02\x05\x02\x05\x04", // 𣺎
+ 0x23e8f: "\x04\x04\x01\x01\x02\x02\x01\x02\x05\x02\x03\x03\x04", // 𣺏
+ 0x23e90: "\x04\x04\x01\x02\x05\x01\x01\x01\x03\x01\x01\x03\x04", // 𣺐
+ 0x23e91: "\x04\x04\x01\x04\x04\x05\x03\x04\x03\x04\x02\x05\x02", // 𣺑
+ 0x23e92: "\x04\x04\x01\x04\x01\x03\x04\x04\x01\x03\x05\x03\x04", // 𣺒
+ 0x23e93: "\x04\x04\x01\x04\x01\x02\x05\x01\x03\x04\x05\x03\x04", // 𣺓
+ 0x23e94: "\x04\x04\x01\x01\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 𣺔
+ 0x23e95: "\x04\x04\x01\x01\x02\x05\x01\x01\x01\x02\x01\x01\x02", // 𣺕
+ 0x23e96: "\x04\x04\x01\x01\x02\x02\x01\x03\x04\x02\x04\x04\x04", // 𣺖
+ 0x23e97: "\x04\x04\x01\x01\x02\x05\x02\x02\x01\x04\x03\x03\x04", // 𣺗
+ 0x23e98: "\x04\x04\x01\x05\x01\x03\x01\x02\x05\x01\x01\x02\x04", // 𣺘
+ 0x23e99: "\x04\x04\x01\x01\x02\x02\x01\x03\x04\x02\x05\x02\x01", // 𣺙
+ 0x23e9a: "\x04\x04\x01\x01\x03\x04\x01\x03\x01\x01\x05\x03\x04", // 𣺚
+ 0x23e9b: "\x04\x04\x01\x01\x02\x01\x02\x03\x05\x04\x01\x05\x02", // 𣺛
+ 0x23e9c: "\x04\x04\x01\x01\x02\x01\x02\x05\x02\x05\x03\x04\x01", // 𣺜
+ 0x23e9d: "\x04\x04\x01\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04", // 𣺝
+ 0x23e9e: "\x04\x04\x01\x01\x02\x01\x02\x02\x05\x01\x01\x01\x02", // 𣺞
+ 0x23e9f: "\x04\x04\x01\x02\x03\x04\x03\x05\x04\x01\x05\x04\x01", // 𣺟
+ 0x23ea0: "\x04\x04\x01\x02\x05\x01\x01\x01\x03\x04\x01\x02\x03", // 𣺠
+ 0x23ea1: "\x04\x04\x01\x03\x01\x02\x02\x01\x01\x01\x05\x01\x01", // 𣺡
+ 0x23ea2: "\x04\x04\x01\x03\x02\x03\x05\x04\x01\x02\x03\x04", // 𣺢
+ 0x23ea3: "\x04\x04\x01\x03\x03\x01\x02\x05\x01\x05\x02\x01\x05", // 𣺣
+ 0x23ea4: "\x04\x04\x01\x05\x05\x05\x02\x05\x01\x02\x01\x02\x02", // 𣺤
+ 0x23ea5: "\x04\x04\x01\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03", // 𣺥
+ 0x23ea6: "\x04\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𣺦
+ 0x23ea7: "\x04\x04\x01\x03\x04\x04\x03\x04\x05\x01\x02\x05\x02", // 𣺧
+ 0x23ea8: "\x04\x04\x01\x03\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 𣺨
+ 0x23ea9: "\x04\x03\x01\x05\x02\x03\x03\x05\x01\x01\x02\x05\x03\x04", // 𣺩
+ 0x23eaa: "\x02\x05\x03\x04\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𣺪
+ 0x23eab: "\x04\x04\x01\x03\x02\x02\x03\x05\x04\x03\x03\x03", // 𣺫
+ 0x23eac: "\x04\x04\x01\x01\x02\x01\x02\x04\x01\x05\x03\x02\x05", // 𣺬
+ 0x23ead: "\x04\x04\x01\x01\x03\x01\x02\x05\x03\x04\x05\x03\x04", // 𣺭
+ 0x23eae: "\x04\x04\x01\x01\x03\x04\x01\x02\x01\x01\x01\x05\x04", // 𣺮
+ 0x23eaf: "\x04\x04\x01\x02\x05\x01\x01\x01\x02\x02\x04\x03\x01", // 𣺯
+ 0x23eb0: "\x04\x04\x01\x02\x05\x01\x02\x04\x03\x03\x05\x04\x01", // 𣺰
+ 0x23eb1: "\x04\x04\x01\x03\x01\x04\x03\x01\x04\x05\x01\x01\x03", // 𣺱
+ 0x23eb2: "\x04\x04\x01\x04\x03\x01\x02\x03\x04\x03\x05\x05\x04", // 𣺲
+ 0x23eb3: "\x04\x04\x01\x05\x01\x03\x02\x04\x01\x03\x04\x02\x02", // 𣺳
+ 0x23eb4: "\x04\x04\x01\x05\x04\x05\x04\x05\x04\x03\x02\x01\x01", // 𣺴
+ 0x23eb5: "\x04\x04\x01\x05\x05\x01\x03\x05\x03\x03\x04\x03\x04", // 𣺵
+ 0x23eb6: "\x01\x05\x02\x03\x03\x01\x03\x04\x01\x03\x02\x05\x03\x04", // 𣺶
+ 0x23eb7: "\x04\x04\x01\x03\x05\x03\x04\x05\x02\x02\x05\x01\x01", // 𣺷
+ 0x23eb8: "\x04\x04\x01\x04\x03\x01\x01\x01\x02\x04\x03\x03\x04", // 𣺸
+ 0x23eb9: "\x04\x04\x01\x05\x01\x03\x01\x02\x02\x01\x05\x03\x04", // 𣺹
+ 0x23eba: "\x04\x04\x01\x03\x03\x02\x01\x02\x01\x02\x01\x03\x04", // 𣺺
+ 0x23ebb: "\x04\x04\x01\x02\x05\x01\x03\x04\x02\x05\x02\x02\x01", // 𣺻
+ 0x23ebc: "\x04\x04\x01\x02\x04\x03\x04\x05\x02\x05\x01\x03\x05", // 𣺼
+ 0x23ebd: "\x04\x04\x01\x02\x05\x02\x02\x01\x01\x02\x01\x05\x04", // 𣺽
+ 0x23ebe: "\x04\x04\x01\x01\x02\x02\x05\x03\x01\x02\x05\x01", // 𣺾
+ 0x23ebf: "\x04\x04\x01\x02\x05\x02\x03\x05\x04\x01\x01\x01\x02", // 𣺿
+ 0x23ec0: "\x04\x04\x01\x05\x05\x04\x04\x04\x04\x02\x05\x03\x04", // 𣻀
+ 0x23ec1: "\x04\x04\x01\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02", // 𣻁
+ 0x23ec2: "\x04\x04\x01\x01\x02\x01\x03\x03\x01\x02\x02\x05\x01", // 𣻂
+ 0x23ec3: "\x04\x04\x01\x03\x02\x04\x01\x04\x03\x01\x02\x05\x01", // 𣻃
+ 0x23ec4: "\x04\x04\x01\x03\x03\x02\x03\x04\x01\x01\x02\x03\x04", // 𣻄
+ 0x23ec5: "\x01\x02\x01\x02\x05\x01\x04\x04\x01\x02\x03\x04\x03", // 𣻅
+ 0x23ec6: "\x04\x04\x01\x05\x02\x01\x03\x05\x05\x04\x02\x03\x04", // 𣻆
+ 0x23ec7: "\x04\x04\x01\x05\x01\x01\x05\x03\x04\x04\x05\x04", // 𣻇
+ 0x23ec8: "\x04\x04\x01\x03\x02\x01\x01\x01\x03\x04\x01\x01\x02", // 𣻈
+ 0x23ec9: "\x04\x04\x01\x01\x02\x02\x01\x05\x04\x05\x02\x05\x02", // 𣻉
+ 0x23eca: "\x01\x05\x02\x03\x03\x01\x03\x04\x03\x04\x02\x04\x01\x03\x04", // 𣻊
+ 0x23ecb: "\x04\x04\x01\x02\x01\x02\x05\x01\x02\x02\x01\x05\x04", // 𣻋
+ 0x23ecc: "\x04\x04\x01\x04\x03\x01\x01\x02\x01\x02\x05\x03\x04", // 𣻌
+ 0x23ecd: "\x04\x04\x01\x03\x05\x02\x05\x01\x01\x05\x04\x04\x04\x04", // 𣻍
+ 0x23ece: "\x04\x04\x01\x04\x04\x05\x01\x01\x03\x05\x03\x01\x03\x04", // 𣻎
+ 0x23ecf: "\x04\x04\x01\x03\x02\x05\x01\x01\x01\x05\x01\x02\x03\x04", // 𣻏
+ 0x23ed0: "\x04\x04\x01\x02\x01\x05\x03\x01\x05\x02\x05\x01\x01\x01", // 𣻐
+ 0x23ed1: "\x04\x04\x01\x03\x04\x01\x02\x03\x05\x04\x03\x05\x05\x04", // 𣻑
+ 0x23ed2: "\x04\x04\x01\x04\x01\x05\x03\x03\x01\x03\x04\x01\x05\x04", // 𣻒
+ 0x23ed3: "\x04\x04\x01\x04\x01\x05\x03\x03\x01\x03\x01\x01\x02\x01", // 𣻓
+ 0x23ed4: "\x04\x04\x01\x01\x02\x05\x02\x02\x01\x01\x04\x03\x03\x04", // 𣻔
+ 0x23ed5: "\x04\x04\x01\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05", // 𣻕
+ 0x23ed6: "\x04\x04\x01\x02\x03\x04\x03\x03\x05\x02\x05\x01\x03\x05", // 𣻖
+ 0x23ed7: "\x04\x04\x01\x03\x01\x02\x03\x04\x03\x05\x04\x03\x05\x04", // 𣻗
+ 0x23ed8: "\x04\x04\x01\x01\x02\x03\x04\x02\x04\x03\x03\x05\x04\x01", // 𣻘
+ 0x23ed9: "\x04\x04\x01\x03\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 𣻙
+ 0x23eda: "\x04\x04\x01\x03\x03\x02\x01\x02\x03\x05\x04\x01\x01\x02", // 𣻚
+ 0x23edb: "\x04\x04\x01\x01\x01\x01\x03\x04\x03\x02\x01\x05\x01\x01", // 𣻛
+ 0x23edc: "\x04\x04\x01\x03\x01\x04\x03\x01\x04\x03\x02\x01\x02\x04", // 𣻜
+ 0x23edd: "\x04\x04\x01\x01\x02\x05\x02\x02\x01\x01\x03\x04\x05\x05", // 𣻝
+ 0x23ede: "\x04\x04\x01\x02\x05\x01\x02\x01\x01\x02\x01\x01\x02\x04", // 𣻞
+ 0x23edf: "\x04\x04\x01\x01\x03\x01\x02\x05\x01\x02\x05\x05\x03\x04", // 𣻟
+ 0x23ee0: "\x04\x04\x01\x03\x04\x01\x01\x02\x03\x04\x04\x04\x01\x02", // 𣻠
+ 0x23ee1: "\x04\x04\x01\x01\x02\x01\x02\x04\x05\x01\x01\x05\x03\x04", // 𣻡
+ 0x23ee2: "\x04\x04\x01\x05\x04\x02\x05\x01\x01\x02\x04\x05\x04", // 𣻢
+ 0x23ee3: "\x02\x05\x03\x04\x02\x01\x02\x01\x02\x03\x03\x02\x05\x03\x04", // 𣻣
+ 0x23ee4: "\x02\x05\x03\x04\x04\x01\x05\x04\x03\x02\x05\x02\x05\x03\x04", // 𣻤
+ 0x23ee5: "\x04\x04\x01\x03\x02\x01\x01\x05\x01\x01\x02\x05\x01\x01", // 𣻥
+ 0x23ee6: "\x04\x04\x01\x03\x04\x01\x05\x01\x02\x05\x03\x05\x01\x01", // 𣻦
+ 0x23ee7: "\x04\x04\x01\x01\x02\x01\x03\x04\x01\x05\x04\x05\x04\x04", // 𣻧
+ 0x23ee8: "\x04\x04\x01\x05\x01\x03\x03\x01\x01\x05\x02\x05\x03\x04", // 𣻨
+ 0x23ee9: "\x04\x04\x01\x03\x01\x01\x03\x04\x02\x05\x01\x05\x02", // 𣻩
+ 0x23eea: "\x04\x04\x01\x01\x02\x01\x03\x02\x03\x04\x03\x01\x03\x04", // 𣻪
+ 0x23eeb: "\x04\x04\x01\x02\x05\x01\x01\x01\x05\x04\x01\x05\x04\x01", // 𣻫
+ 0x23eec: "\x04\x04\x01\x05\x04\x03\x03\x04\x04\x03\x01\x02\x03\x04", // 𣻬
+ 0x23eed: "\x04\x04\x01\x05\x03\x05\x03\x05\x03\x02\x05\x02\x02\x01", // 𣻭
+ 0x23eee: "\x03\x02\x05\x01\x01\x02\x05\x03\x04\x02\x05\x02\x02\x05\x02", // 𣻮
+ 0x23eef: "\x01\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04\x02\x05\x03\x04", // 𣻯
+ 0x23ef0: "\x04\x04\x01\x04\x04\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𣻰
+ 0x23ef1: "\x04\x04\x01\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01", // 𣻱
+ 0x23ef2: "\x04\x04\x01\x02\x05\x01\x02\x01\x02\x05\x02\x05\x01\x01", // 𣻲
+ 0x23ef3: "\x04\x04\x01\x01\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𣻳
+ 0x23ef4: "\x04\x04\x01\x01\x02\x01\x01\x02\x05\x04\x01\x03\x05\x03\x04", // 𣻴
+ 0x23ef5: "\x04\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x05", // 𣻵
+ 0x23ef6: "\x04\x04\x01\x02\x01\x02\x05\x03\x05\x04\x01\x01\x02\x01", // 𣻶
+ 0x23ef7: "\x04\x04\x01\x05\x01\x03\x01\x01\x02\x03\x04\x01\x02\x04", // 𣻷
+ 0x23ef8: "\x04\x04\x01\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x02", // 𣻸
+ 0x23ef9: "\x04\x04\x01\x01\x02\x05\x01\x02\x05\x05\x04\x01\x02\x01", // 𣻹
+ 0x23efa: "\x04\x04\x01\x01\x02\x02\x01\x01\x01\x03\x04\x01\x02\x01", // 𣻺
+ 0x23efb: "\x04\x04\x01\x01\x02\x01\x02\x04\x04\x05\x01\x01\x03\x05", // 𣻻
+ 0x23efc: "\x04\x04\x01\x04\x01\x02\x05\x01\x04\x05\x03\x01\x01\x05", // 𣻼
+ 0x23efd: "\x04\x04\x01\x03\x05\x01\x01\x01\x05\x05\x05\x01\x02\x01", // 𣻽
+ 0x23efe: "\x04\x04\x01\x02\x05\x01\x01\x01\x02\x01\x02\x03\x04\x03", // 𣻾
+ 0x23eff: "\x04\x04\x01\x01\x02\x01\x02\x04\x01\x04\x03\x01\x01\x02", // 𣻿
+ 0x23f00: "\x04\x04\x01\x04\x01\x03\x01\x05\x03\x05\x04\x03\x03\x03", // 𣼀
+ 0x23f01: "\x04\x04\x01\x04\x03\x01\x01\x01\x02\x04\x05\x05\x03\x04", // 𣼁
+ 0x23f02: "\x04\x04\x01\x04\x04\x05\x01\x03\x04\x02\x05\x01\x01\x01", // 𣼂
+ 0x23f03: "\x04\x04\x01\x04\x03\x01\x01\x03\x04\x01\x01\x02\x03\x04", // 𣼃
+ 0x23f04: "\x04\x04\x01\x04\x01\x03\x05\x02\x02\x01\x01\x03\x05\x04", // 𣼄
+ 0x23f05: "\x04\x04\x01\x04\x01\x05\x05\x04\x03\x05\x01\x02\x03\x04", // 𣼅
+ 0x23f06: "\x04\x04\x01\x04\x01\x02\x05\x02\x02\x01\x01\x02\x03\x04", // 𣼆
+ 0x23f07: "\x04\x04\x01\x05\x01\x03\x05\x02\x04\x01\x03\x04\x05\x02", // 𣼇
+ 0x23f08: "\x04\x04\x01\x05\x02\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 𣼈
+ 0x23f09: "\x04\x04\x01\x05\x01\x03\x01\x05\x04\x01\x02\x01\x02\x02", // 𣼉
+ 0x23f0a: "\x04\x04\x01\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04", // 𣼊
+ 0x23f0b: "\x04\x04\x01\x01\x05\x03\x01\x02\x03\x04\x03\x05\x03\x04", // 𣼋
+ 0x23f0c: "\x04\x04\x01\x01\x01\x02\x01\x05\x05\x04\x03\x05\x01\x01", // 𣼌
+ 0x23f0d: "\x04\x04\x01\x02\x05\x02\x03\x04\x01\x02\x05\x01\x02\x02", // 𣼍
+ 0x23f0e: "\x04\x04\x01\x02\x03\x04\x03\x01\x04\x01\x01\x01\x02\x01", // 𣼎
+ 0x23f0f: "\x04\x04\x01\x01\x02\x01\x02\x05\x02\x05\x03\x04\x05\x02", // 𣼏
+ 0x23f10: "\x04\x04\x01\x05\x01\x01\x02\x02\x05\x01\x01\x01\x01\x01", // 𣼐
+ 0x23f11: "\x04\x04\x01\x01\x02\x01\x02\x02\x05\x01\x01\x02\x03\x04", // 𣼑
+ 0x23f12: "\x04\x04\x01\x01\x02\x01\x02\x03\x05\x05\x04\x02\x03\x04", // 𣼒
+ 0x23f13: "\x04\x04\x01\x02\x03\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 𣼓
+ 0x23f14: "\x04\x04\x01\x02\x05\x01\x01\x03\x04\x04\x03\x05\x02\x01", // 𣼔
+ 0x23f15: "\x04\x04\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x02", // 𣼕
+ 0x23f16: "\x04\x04\x01\x03\x01\x02\x03\x04\x02\x02\x01\x02\x03\x04", // 𣼖
+ 0x23f17: "\x04\x04\x01\x04\x05\x01\x02\x05\x01\x01\x04\x01\x03\x04", // 𣼗
+ 0x23f18: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04\x02\x05\x03\x04", // 𣼘
+ 0x23f19: "\x03\x02\x05\x01\x01\x05\x01\x01\x03\x05\x04\x02\x05\x03\x04", // 𣼙
+ 0x23f1a: "\x04\x04\x01\x01\x02\x02\x01\x01\x01\x02\x05\x02\x01\x01", // 𣼚
+ 0x23f1b: "\x04\x04\x01\x01\x02\x02\x01\x02\x05\x02\x04\x01\x03\x04", // 𣼛
+ 0x23f1c: "\x04\x04\x01\x01\x03\x04\x03\x02\x01\x05\x01\x01\x05", // 𣼜
+ 0x23f1d: "\x04\x04\x01\x03\x02\x02\x02\x01\x05\x04\x01\x02\x03\x04", // 𣼝
+ 0x23f1e: "\x04\x04\x01\x03\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 𣼞
+ 0x23f1f: "\x04\x04\x01\x04\x01\x03\x05\x02\x02\x01\x02\x05\x03\x04", // 𣼟
+ 0x23f20: "\x04\x04\x01\x04\x01\x05\x05\x04\x04\x01\x03\x04\x03\x05", // 𣼠
+ 0x23f21: "\x04\x04\x01\x04\x04\x05\x05\x04\x04\x04\x05\x02\x05\x02", // 𣼡
+ 0x23f22: "\x04\x04\x01\x05\x04\x01\x05\x04\x01\x03\x04\x01\x05\x04", // 𣼢
+ 0x23f23: "\x04\x04\x01\x05\x01\x03\x01\x02\x05\x02\x03\x04\x03\x04", // 𣼣
+ 0x23f24: "\x04\x04\x01\x01\x02\x01\x01\x02\x01\x01\x03\x02\x05\x01", // 𣼤
+ 0x23f25: "\x04\x04\x01\x01\x02\x02\x05\x02\x01\x03\x01\x02\x01", // 𣼥
+ 0x23f26: "\x04\x04\x01\x02\x05\x01\x01\x05\x04\x05\x04\x01\x01\x02", // 𣼦
+ 0x23f27: "\x04\x04\x01\x04\x01\x05\x05\x04\x04\x01\x03\x04\x01\x02", // 𣼧
+ 0x23f28: "\x04\x04\x01\x05\x01\x03\x01\x02\x02\x05\x01\x01\x03\x02", // 𣼨
+ 0x23f29: "\x04\x04\x01\x05\x02\x03\x04\x04\x05\x01\x01\x05\x04", // 𣼩
+ 0x23f2a: "\x03\x04\x04\x04\x01\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 𣼪
+ 0x23f2b: "\x04\x04\x01\x02\x05\x01\x01\x02\x01\x01\x05\x04\x05\x02", // 𣼫
+ 0x23f2c: "\x04\x04\x01\x02\x05\x01\x01\x01\x02\x01\x03\x03\x01\x02", // 𣼬
+ 0x23f2d: "\x04\x04\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𣼭
+ 0x23f2e: "\x04\x04\x01\x02\x05\x01\x01\x01\x02\x01\x03\x04\x03\x05", // 𣼮
+ 0x23f2f: "\x04\x04\x01\x01\x02\x01\x04\x01\x04\x03\x01\x02\x05\x01", // 𣼯
+ 0x23f30: "\x04\x04\x01\x01\x01\x02\x01\x01\x03\x02\x04\x05\x04\x04", // 𣼰
+ 0x23f31: "\x04\x04\x01\x03\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𣼱
+ 0x23f32: "\x04\x04\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𣼲
+ 0x23f33: "\x04\x04\x01\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04", // 𣼳
+ 0x23f34: "\x04\x04\x01\x01\x02\x05\x01\x01\x01\x02\x03\x05\x03\x04", // 𣼴
+ 0x23f35: "\x04\x04\x01\x01\x02\x01\x02\x03\x01\x02\x03\x04\x02\x02", // 𣼵
+ 0x23f36: "\x04\x04\x01\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01", // 𣼶
+ 0x23f37: "\x04\x04\x01\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x03", // 𣼷
+ 0x23f38: "\x04\x04\x01\x01\x03\x02\x05\x01\x01\x01\x01\x05\x03\x04", // 𣼸
+ 0x23f39: "\x04\x04\x01\x02\x05\x01\x01\x01\x05\x01\x01\x05\x03\x04", // 𣼹
+ 0x23f3a: "\x04\x04\x01\x03\x02\x05\x03\x04\x01\x03\x04\x03\x05\x04", // 𣼺
+ 0x23f3b: "\x04\x04\x01\x01\x04\x05\x02\x04\x01\x03\x04\x01\x01\x02", // 𣼻
+ 0x23f3c: "\x04\x04\x01\x05\x02\x01\x02\x05\x01\x01\x02\x03\x04", // 𣼼
+ 0x23f3d: "\x04\x04\x01\x04\x05\x01\x01\x05\x04\x03\x05\x01\x01", // 𣼽
+ 0x23f3e: "\x04\x04\x01\x01\x02\x02\x01\x01\x01\x03\x05\x03\x05\x02", // 𣼾
+ 0x23f3f: "\x01\x05\x04\x02\x05\x03\x04\x03\x01\x05\x05\x04\x01\x04", // 𣼿
+ 0x23f40: "\x04\x04\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04\x03\x02", // 𣽀
+ 0x23f41: "\x04\x04\x01\x02\x05\x02\x02\x01\x01\x03\x05\x03\x03\x03\x04", // 𣽁
+ 0x23f42: "\x04\x04\x01\x01\x03\x04\x03\x01\x02\x01\x05\x05\x02\x01\x02", // 𣽂
+ 0x23f43: "\x04\x04\x01\x03\x05\x01\x03\x03\x05\x01\x02\x01\x02\x05\x01", // 𣽃
+ 0x23f44: "\x04\x04\x01\x01\x03\x04\x03\x03\x04\x04\x03\x03\x04\x02\x02", // 𣽄
+ 0x23f45: "\x04\x04\x01\x01\x02\x02\x01\x01\x01\x03\x01\x02\x02\x05\x01", // 𣽅
+ 0x23f46: "\x04\x04\x01\x03\x01\x04\x03\x01\x04\x01\x02\x01\x03\x05\x04", // 𣽆
+ 0x23f47: "\x04\x04\x01\x01\x02\x01\x02\x01\x02\x02\x01\x01\x01\x05\x04", // 𣽇
+ 0x23f48: "\x04\x04\x01\x01\x03\x02\x05\x02\x02\x01\x03\x02\x05\x02\x02", // 𣽈
+ 0x23f49: "\x04\x04\x01\x01\x02\x05\x01\x01\x02\x03\x05\x04\x04\x04\x04", // 𣽉
+ 0x23f4a: "\x04\x04\x01\x02\x01\x04\x05\x01\x03\x04\x03\x04\x02\x05\x01", // 𣽊
+ 0x23f4b: "\x04\x04\x01\x02\x05\x01\x01\x01\x03\x01\x02\x01\x02\x05\x01", // 𣽋
+ 0x23f4c: "\x04\x04\x01\x03\x05\x03\x02\x01\x05\x01\x01\x03\x05\x03\x04", // 𣽌
+ 0x23f4d: "\x04\x04\x01\x03\x02\x05\x01\x01\x01\x01\x02\x03\x03\x03\x04", // 𣽍
+ 0x23f4e: "\x04\x04\x01\x03\x02\x05\x01\x01\x01\x01\x01\x01\x01\x01\x02", // 𣽎
+ 0x23f4f: "\x04\x04\x01\x01\x02\x01\x05\x05\x01\x02\x01\x04\x05\x04\x04", // 𣽏
+ 0x23f50: "\x04\x04\x01\x01\x02\x02\x01\x01\x02\x05\x04\x03\x01\x01\x02", // 𣽐
+ 0x23f51: "\x04\x04\x01\x01\x03\x04\x01\x02\x01\x03\x02\x04\x05\x04", // 𣽑
+ 0x23f52: "\x04\x04\x01\x01\x02\x02\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 𣽒
+ 0x23f53: "\x04\x04\x01\x05\x04\x01\x05\x04\x01\x03\x04\x02\x04\x04\x04", // 𣽓
+ 0x23f54: "\x04\x04\x01\x05\x01\x05\x02\x05\x03\x03\x04\x01\x01\x02\x01", // 𣽔
+ 0x23f55: "\x04\x04\x01\x01\x02\x03\x04\x01\x02\x03\x04\x03\x05\x05\x04", // 𣽕
+ 0x23f56: "\x04\x04\x01\x03\x02\x01\x05\x01\x05\x03\x04\x01\x05\x03\x04", // 𣽖
+ 0x23f57: "\x04\x04\x01\x01\x01\x02\x01\x01\x03\x05\x03\x03\x04\x03\x04", // 𣽗
+ 0x23f58: "\x04\x04\x01\x04\x01\x03\x05\x04\x01\x05\x02\x01\x02\x03\x04", // 𣽘
+ 0x23f59: "\x04\x04\x01\x02\x05\x01\x01\x01\x05\x03\x05\x04\x04\x04\x04", // 𣽙
+ 0x23f5a: "\x04\x04\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05\x03\x04", // 𣽚
+ 0x23f5b: "\x04\x04\x01\x03\x01\x04\x03\x01\x04\x03\x04\x01\x02\x05\x01", // 𣽛
+ 0x23f5c: "\x04\x04\x01\x03\x02\x05\x01\x01\x01\x03\x03\x01\x01\x03\x04", // 𣽜
+ 0x23f5d: "\x04\x04\x01\x01\x02\x01\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𣽝
+ 0x23f5e: "\x04\x04\x01\x02\x05\x01\x01\x03\x05\x04\x02\x04\x02\x05\x01", // 𣽞
+ 0x23f5f: "\x04\x04\x01\x01\x02\x01\x01\x01\x02\x03\x04\x03\x05\x03\x04", // 𣽟
+ 0x23f60: "\x04\x04\x01\x02\x05\x01\x02\x01\x01\x03\x02\x02\x01\x05\x04", // 𣽠
+ 0x23f61: "\x04\x04\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 𣽡
+ 0x23f62: "\x04\x04\x01\x04\x01\x04\x03\x01\x02\x05\x01\x02\x02\x05\x01", // 𣽢
+ 0x23f63: "\x04\x04\x01\x03\x03\x02\x01\x02\x02\x01\x03\x04\x01\x01\x02", // 𣽣
+ 0x23f64: "\x04\x04\x01\x03\x01\x04\x03\x01\x04\x01\x02\x05\x02\x03\x04", // 𣽤
+ 0x23f65: "\x04\x04\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𣽥
+ 0x23f66: "\x04\x04\x01\x01\x03\x01\x02\x05\x01\x05\x03\x04\x05\x03\x01", // 𣽦
+ 0x23f67: "\x04\x04\x01\x04\x04\x05\x03\x02\x05\x01\x01\x04\x05\x05\x04", // 𣽧
+ 0x23f68: "\x03\x03\x05\x04\x01\x04\x04\x03\x01\x01\x03\x04\x02\x04\x01\x03\x04", // 𣽨
+ 0x23f69: "\x04\x04\x01\x04\x01\x05\x03\x03\x01\x01\x05\x04\x03\x02\x05", // 𣽩
+ 0x23f6a: "\x04\x04\x01\x05\x05\x05\x05\x02\x01\x03\x02\x05\x01\x01\x01", // 𣽪
+ 0x23f6b: "\x04\x04\x01\x01\x02\x01\x02\x03\x05\x05\x04\x04\x05\x04\x04", // 𣽫
+ 0x23f6c: "\x04\x04\x01\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x04\x04", // 𣽬
+ 0x23f6d: "\x04\x04\x01\x02\x05\x03\x04\x02\x05\x01\x02\x05\x02\x02\x01", // 𣽭
+ 0x23f6e: "\x04\x04\x01\x05\x03\x01\x03\x04\x04\x03\x01\x01\x02\x05\x02", // 𣽮
+ 0x23f6f: "\x04\x04\x01\x03\x02\x05\x01\x01\x01\x03\x02\x05\x02\x01\x01", // 𣽯
+ 0x23f70: "\x04\x04\x01\x03\x03\x05\x04\x01\x04\x03\x01\x02\x02\x05\x01", // 𣽰
+ 0x23f71: "\x04\x04\x01\x04\x01\x05\x04\x05\x04\x05\x04\x02\x05\x01\x01", // 𣽱
+ 0x23f72: "\x04\x04\x01\x04\x01\x05\x05\x04\x04\x05\x03\x01\x01\x02", // 𣽲
+ 0x23f73: "\x04\x04\x01\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04\x03\x05", // 𣽳
+ 0x23f74: "\x04\x04\x01\x02\x05\x01\x02\x05\x01\x02\x01\x03\x05\x04\x01", // 𣽴
+ 0x23f75: "\x04\x04\x01\x02\x05\x02\x05\x04\x05\x04\x01\x02\x03\x04\x01", // 𣽵
+ 0x23f76: "\x04\x04\x01\x05\x01\x03\x03\x01\x01\x05\x05\x02\x02\x05\x02", // 𣽶
+ 0x23f77: "\x04\x04\x01\x02\x05\x03\x04\x02\x05\x01\x01\x03\x05\x03\x03", // 𣽷
+ 0x23f78: "\x04\x04\x01\x04\x04\x05\x03\x04\x03\x01\x02\x01\x02\x05\x01", // 𣽸
+ 0x23f79: "\x04\x04\x01\x04\x04\x05\x04\x05\x04\x04\x02\x05\x02\x01\x01", // 𣽹
+ 0x23f7a: "\x04\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x05", // 𣽺
+ 0x23f7b: "\x04\x04\x01\x05\x02\x02\x05\x01\x02\x01\x01\x05\x03\x04", // 𣽻
+ 0x23f7c: "\x04\x04\x01\x01\x03\x04\x04\x01\x03\x04\x04\x01\x03\x04\x04", // 𣽼
+ 0x23f7d: "\x04\x04\x01\x01\x02\x03\x04\x01\x02\x03\x04\x03\x05\x04\x01", // 𣽽
+ 0x23f7e: "\x04\x04\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x03\x05", // 𣽾
+ 0x23f7f: "\x04\x04\x01\x03\x01\x02\x03\x04\x02\x05\x01\x03\x01\x02\x01", // 𣽿
+ 0x23f80: "\x04\x04\x01\x01\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01\x05", // 𣾀
+ 0x23f81: "\x04\x04\x01\x01\x02\x01\x02\x01\x02\x02\x01\x01\x01\x03\x04", // 𣾁
+ 0x23f82: "\x04\x04\x01\x05\x02\x01\x05\x03\x05\x03\x02\x05\x01\x01", // 𣾂
+ 0x23f83: "\x04\x04\x01\x01\x03\x01\x02\x05\x01\x05\x03\x04\x01\x03\x05", // 𣾃
+ 0x23f84: "\x04\x04\x01\x03\x02\x05\x01\x01\x01\x03\x02\x03\x04\x03\x04", // 𣾄
+ 0x23f85: "\x04\x04\x01\x02\x01\x02\x01\x03\x03\x05\x04\x01\x04\x02\x02", // 𣾅
+ 0x23f86: "\x04\x04\x01\x04\x01\x03\x01\x02\x01\x02\x01\x03\x02\x05\x01", // 𣾆
+ 0x23f87: "\x04\x04\x01\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x03\x04", // 𣾇
+ 0x23f88: "\x04\x04\x01\x04\x04\x05\x04\x05\x04\x04\x02\x05\x02\x02\x01", // 𣾈
+ 0x23f89: "\x04\x04\x01\x04\x04\x05\x05\x02\x01\x03\x02\x05\x01\x01\x01", // 𣾉
+ 0x23f8a: "\x04\x04\x01\x04\x04\x05\x03\x05\x02\x05\x01\x01\x01\x03\x05", // 𣾊
+ 0x23f8b: "\x04\x04\x01\x04\x04\x05\x03\x05\x01\x03\x01\x01\x05\x03\x04", // 𣾋
+ 0x23f8c: "\x04\x04\x01\x04\x01\x04\x03\x02\x05\x04\x03\x01\x01\x01\x02", // 𣾌
+ 0x23f8d: "\x04\x04\x01\x01\x02\x02\x01\x01\x01\x04\x03\x01\x01\x03\x04", // 𣾍
+ 0x23f8e: "\x04\x04\x01\x05\x02\x02\x05\x01\x05\x04\x01\x04\x04\x04\x04", // 𣾎
+ 0x23f8f: "\x04\x04\x01\x01\x01\x02\x01\x01\x03\x04\x01\x02\x05\x01\x02", // 𣾏
+ 0x23f90: "\x04\x04\x01\x01\x02\x03\x04\x01\x03\x04\x01\x02\x05\x01\x02", // 𣾐
+ 0x23f91: "\x04\x04\x01\x01\x02\x02\x01\x01\x02\x05\x01\x01\x01\x02\x01", // 𣾑
+ 0x23f92: "\x04\x04\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04\x05\x03\x04", // 𣾒
+ 0x23f93: "\x04\x04\x01\x01\x02\x02\x05\x01\x02\x05\x01\x01\x05\x03\x04", // 𣾓
+ 0x23f94: "\x04\x04\x01\x01\x01\x02\x01\x01\x01\x02\x01\x03\x04\x01\x05", // 𣾔
+ 0x23f95: "\x04\x04\x01\x01\x02\x03\x04\x01\x02\x03\x04\x02\x05\x03\x04", // 𣾕
+ 0x23f96: "\x04\x04\x01\x01\x02\x01\x02\x01\x02\x01\x03\x05\x03\x05\x04", // 𣾖
+ 0x23f97: "\x04\x04\x01\x01\x01\x02\x01\x05\x05\x04\x02\x03\x04\x05\x03", // 𣾗
+ 0x23f98: "\x04\x04\x01\x01\x02\x01\x02\x01\x03\x04\x01\x02\x01\x03\x02", // 𣾘
+ 0x23f99: "\x04\x04\x01\x02\x05\x03\x04\x01\x02\x05\x02\x04\x01\x03\x04", // 𣾙
+ 0x23f9a: "\x04\x04\x01\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01\x03\x05", // 𣾚
+ 0x23f9b: "\x04\x04\x01\x01\x02\x01\x02\x01\x05\x02\x05\x01\x05\x04\x01", // 𣾛
+ 0x23f9c: "\x04\x04\x01\x02\x05\x03\x04\x02\x05\x03\x04\x02\x05\x03\x04", // 𣾜
+ 0x23f9d: "\x04\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x01", // 𣾝
+ 0x23f9e: "\x04\x04\x01\x02\x05\x02\x02\x01\x01\x03\x05\x03\x03\x03\x04", // 𣾞
+ 0x23f9f: "\x04\x04\x01\x01\x02\x01\x02\x02\x05\x01\x02\x02\x05\x01\x01", // 𣾟
+ 0x23fa0: "\x04\x04\x01\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x03\x04", // 𣾠
+ 0x23fa1: "\x04\x04\x01\x03\x05\x01\x03\x01\x02\x05\x02\x04\x01\x03\x04", // 𣾡
+ 0x23fa2: "\x02\x01\x01\x02\x05\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𣾢
+ 0x23fa3: "\x04\x04\x01\x01\x03\x04\x04\x03\x01\x01\x02\x04\x05\x04", // 𣾣
+ 0x23fa4: "\x04\x04\x01\x01\x05\x03\x04\x01\x05\x03\x04\x04\x04\x04\x04", // 𣾤
+ 0x23fa5: "\x04\x04\x01\x02\x01\x02\x01\x03\x03\x05\x04\x01\x04\x05\x03", // 𣾥
+ 0x23fa6: "\x04\x04\x01\x02\x04\x03\x04\x05\x02\x05\x01\x03\x01\x01\x05", // 𣾦
+ 0x23fa7: "\x04\x04\x01\x02\x05\x05\x04\x05\x05\x04\x05\x02\x05\x02\x01", // 𣾧
+ 0x23fa8: "\x04\x04\x01\x03\x04\x03\x04\x02\x01\x03\x02\x05\x01\x01\x01", // 𣾨
+ 0x23fa9: "\x04\x04\x01\x04\x01\x03\x05\x01\x01\x02\x04\x03\x01\x02\x03\x04", // 𣾩
+ 0x23faa: "\x04\x04\x01\x04\x01\x04\x03\x04\x05\x02\x05\x02\x02\x05\x01", // 𣾪
+ 0x23fab: "\x04\x04\x01\x04\x05\x04\x04\x04\x05\x04\x04\x04\x05\x04\x04", // 𣾫
+ 0x23fac: "\x04\x04\x01\x05\x01\x01\x02\x02\x05\x01\x01\x01\x01\x03\x05", // 𣾬
+ 0x23fad: "\x04\x04\x01\x05\x01\x05\x01\x02\x01\x01\x02\x01\x02\x05\x01", // 𣾭
+ 0x23fae: "\x04\x04\x01\x05\x01\x03\x01\x03\x05\x03\x05\x03\x05\x05\x04", // 𣾮
+ 0x23faf: "\x04\x04\x01\x05\x04\x05\x04\x05\x04\x01\x03\x04\x01\x02\x01", // 𣾯
+ 0x23fb0: "\x04\x04\x01\x01\x03\x04\x03\x04\x03\x04\x02\x04\x01\x03\x04", // 𣾰
+ 0x23fb1: "\x04\x04\x01\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x04\x04", // 𣾱
+ 0x23fb2: "\x04\x04\x01\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x05\x04", // 𣾲
+ 0x23fb3: "\x04\x04\x01\x01\x04\x05\x02\x04\x04\x04\x04\x03\x02\x03\x05", // 𣾳
+ 0x23fb4: "\x04\x04\x01\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 𣾴
+ 0x23fb5: "\x04\x04\x01\x05\x05\x04\x04\x04\x04\x03\x05\x05\x02\x01\x05", // 𣾵
+ 0x23fb6: "\x04\x04\x01\x05\x02\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 𣾶
+ 0x23fb7: "\x04\x04\x01\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 𣾷
+ 0x23fb8: "\x04\x04\x01\x01\x02\x01\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 𣾸
+ 0x23fb9: "\x04\x04\x01\x03\x05\x02\x05\x01\x03\x05\x04\x04\x05\x04", // 𣾹
+ 0x23fba: "\x04\x04\x01\x05\x01\x01\x02\x02\x05\x01\x01\x01\x01\x03\x02", // 𣾺
+ 0x23fbb: "\x04\x04\x01\x02\x05\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 𣾻
+ 0x23fbc: "\x04\x04\x01\x01\x02\x01\x02\x01\x03\x04\x01\x05\x05\x03\x04", // 𣾼
+ 0x23fbd: "\x04\x04\x01\x03\x01\x01\x05\x03\x01\x01\x05\x03\x01\x01\x05", // 𣾽
+ 0x23fbe: "\x04\x04\x01\x02\x03\x04\x03\x04\x01\x04\x03\x01\x02\x05\x01", // 𣾾
+ 0x23fbf: "\x04\x04\x01\x02\x05\x01\x02\x05\x01\x02\x01\x01\x05\x03\x04", // 𣾿
+ 0x23fc0: "\x04\x04\x01\x01\x02\x05\x01\x01\x02\x04\x03\x04\x02\x04\x01\x03\x04", // 𣿀
+ 0x23fc1: "\x04\x04\x01\x04\x03\x02\x05\x02\x03\x04\x03\x05\x03\x04", // 𣿁
+ 0x23fc2: "\x04\x04\x01\x05\x02\x01\x03\x01\x02\x01\x02\x05\x01\x01", // 𣿂
+ 0x23fc3: "\x04\x04\x01\x05\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𣿃
+ 0x23fc4: "\x04\x04\x01\x02\x05\x02\x01\x03\x01\x02\x03\x03\x05\x03\x04", // 𣿄
+ 0x23fc5: "\x04\x04\x01\x01\x02\x01\x02\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𣿅
+ 0x23fc6: "\x04\x04\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x05", // 𣿆
+ 0x23fc7: "\x04\x04\x01\x03\x01\x02\x03\x04\x03\x04\x01\x05\x04\x05\x04\x04", // 𣿇
+ 0x23fc8: "\x04\x04\x01\x04\x04\x05\x03\x05\x04\x01\x03\x04\x03\x04\x01\x02", // 𣿈
+ 0x23fc9: "\x04\x04\x01\x04\x01\x01\x01\x02\x05\x01\x01\x05\x02\x05\x01\x01", // 𣿉
+ 0x23fca: "\x04\x04\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04\x03\x01\x03\x04", // 𣿊
+ 0x23fcb: "\x04\x04\x01\x01\x04\x05\x02\x04\x01\x03\x04\x03\x04\x03\x01\x02", // 𣿋
+ 0x23fcc: "\x04\x04\x01\x02\x05\x01\x01\x03\x05\x03\x04\x05\x04\x05\x04", // 𣿌
+ 0x23fcd: "\x04\x04\x01\x05\x01\x01\x02\x04\x01\x03\x04\x02\x05\x02\x02\x01", // 𣿍
+ 0x23fce: "\x04\x04\x01\x01\x02\x01\x02\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 𣿎
+ 0x23fcf: "\x04\x04\x01\x01\x02\x03\x05\x01\x02\x03\x05\x03\x05\x02\x05\x01", // 𣿏
+ 0x23fd0: "\x04\x04\x01\x02\x05\x01\x01\x01\x03\x04\x01\x01\x03\x05\x03\x04", // 𣿐
+ 0x23fd1: "\x04\x04\x01\x01\x02\x02\x01\x03\x04\x02\x05\x01\x05\x02\x01\x05", // 𣿑
+ 0x23fd2: "\x04\x04\x01\x03\x02\x05\x01\x01\x01\x04\x01\x04\x03\x01\x01\x02", // 𣿒
+ 0x23fd3: "\x04\x04\x01\x02\x05\x02\x02\x01\x03\x01\x01\x01\x02\x01\x01\x01", // 𣿓
+ 0x23fd4: "\x04\x04\x01\x01\x03\x04\x04\x03\x01\x01\x01\x02\x04\x05\x04", // 𣿔
+ 0x23fd5: "\x04\x04\x01\x04\x01\x03\x05\x02\x02\x01\x01\x05\x04\x04\x04\x04", // 𣿕
+ 0x23fd6: "\x04\x04\x01\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04\x02\x02", // 𣿖
+ 0x23fd7: "\x04\x04\x01\x05\x02\x02\x05\x02\x04\x01\x05\x03\x03\x01\x03\x04", // 𣿗
+ 0x23fd8: "\x04\x04\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 𣿘
+ 0x23fd9: "\x04\x04\x01\x01\x02\x05\x02\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𣿙
+ 0x23fda: "\x04\x04\x01\x02\x01\x02\x05\x03\x04\x03\x04\x01\x01\x02\x03\x04", // 𣿚
+ 0x23fdb: "\x04\x04\x01\x01\x02\x02\x01\x01\x01\x03\x05\x01\x05\x02\x05\x01", // 𣿛
+ 0x23fdc: "\x04\x04\x01\x04\x03\x03\x04\x03\x01\x02\x03\x04\x04\x05\x04\x04", // 𣿜
+ 0x23fdd: "\x04\x04\x01\x01\x02\x01\x02\x01\x02\x01\x01\x02\x01\x01\x02\x04", // 𣿝
+ 0x23fde: "\x04\x04\x01\x04\x01\x02\x05\x01\x01\x02\x01\x01\x03\x05\x03\x04", // 𣿞
+ 0x23fdf: "\x04\x04\x01\x04\x04\x05\x04\x05\x02\x03\x04\x02\x05\x01\x05\x04", // 𣿟
+ 0x23fe0: "\x04\x04\x01\x05\x03\x04\x05\x03\x04\x01\x02\x05\x02\x05\x01\x01", // 𣿠
+ 0x23fe1: "\x04\x04\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x04", // 𣿡
+ 0x23fe2: "\x04\x04\x01\x01\x02\x02\x01\x03\x04\x01\x02\x05\x01\x01\x01\x02", // 𣿢
+ 0x23fe3: "\x04\x04\x01\x01\x02\x01\x01\x02\x01\x05\x03\x04\x02\x05\x02\x02\x01", // 𣿣
+ 0x23fe4: "\x04\x04\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x03\x05\x04", // 𣿤
+ 0x23fe5: "\x04\x04\x01\x05\x04\x05\x02\x03\x03\x01\x03\x04\x02\x05\x01\x01", // 𣿥
+ 0x23fe6: "\x04\x04\x01\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𣿦
+ 0x23fe7: "\x04\x04\x01\x05\x04\x05\x02\x03\x03\x05\x04\x02\x05\x01\x01\x01", // 𣿧
+ 0x23fe8: "\x04\x04\x01\x03\x05\x03\x05\x01\x01\x02\x04\x03\x01\x01\x01\x02", // 𣿨
+ 0x23fe9: "\x04\x04\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x01\x02\x01", // 𣿩
+ 0x23fea: "\x04\x04\x01\x04\x03\x01\x03\x02\x05\x01\x01\x01\x04\x05\x04", // 𣿪
+ 0x23feb: "\x04\x04\x01\x05\x04\x05\x04\x05\x04\x04\x05\x02\x05\x01\x01\x01", // 𣿫
+ 0x23fec: "\x04\x04\x01\x01\x04\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05", // 𣿬
+ 0x23fed: "\x04\x04\x01\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01\x05\x03\x04", // 𣿭
+ 0x23fee: "\x04\x04\x01\x01\x02\x01\x02\x05\x04\x03\x03\x04\x01\x01\x03\x04", // 𣿮
+ 0x23fef: "\x04\x04\x01\x01\x02\x01\x02\x05\x01\x01\x04\x05\x01\x02\x05\x04", // 𣿯
+ 0x23ff0: "\x04\x04\x01\x02\x01\x04\x05\x03\x04\x03\x04\x02\x05\x01\x01\x01", // 𣿰
+ 0x23ff1: "\x04\x04\x01\x04\x01\x02\x02\x05\x01\x01\x05\x04\x04\x04\x04", // 𣿱
+ 0x23ff2: "\x04\x04\x01\x05\x01\x03\x02\x04\x01\x03\x04\x05\x02\x02\x05\x02", // 𣿲
+ 0x23ff3: "\x04\x04\x01\x01\x03\x04\x04\x03\x02\x05\x01\x01\x04\x03\x03\x04", // 𣿳
+ 0x23ff4: "\x04\x04\x01\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 𣿴
+ 0x23ff5: "\x04\x04\x01\x04\x04\x05\x03\x05\x01\x01\x02\x01\x03\x05\x03\x04", // 𣿵
+ 0x23ff6: "\x04\x04\x01\x04\x04\x05\x01\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𣿶
+ 0x23ff7: "\x04\x04\x01\x01\x03\x01\x01\x02\x03\x04\x05\x03\x04\x01\x02\x01", // 𣿷
+ 0x23ff8: "\x04\x04\x01\x05\x01\x01\x02\x02\x05\x01\x01\x04\x01\x02\x05\x02", // 𣿸
+ 0x23ff9: "\x04\x04\x01\x02\x05\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04\x01", // 𣿹
+ 0x23ffa: "\x04\x04\x01\x03\x05\x04\x01\x01\x02\x05\x02\x02\x01\x05\x03\x01", // 𣿺
+ 0x23ffb: "\x04\x04\x01\x01\x02\x01\x02\x04\x04\x05\x02\x03\x04\x02\x03\x04", // 𣿻
+ 0x23ffc: "\x04\x04\x01\x02\x01\x05\x03\x03\x04\x03\x04\x02\x05\x01\x01\x01", // 𣿼
+ 0x23ffd: "\x04\x04\x01\x02\x05\x01\x01\x01\x03\x04\x01\x01\x01\x05\x03\x04", // 𣿽
+ 0x23ffe: "\x04\x04\x01\x03\x02\x04\x04\x05\x01\x03\x04\x01\x02\x05\x01\x02", // 𣿾
+ 0x23fff: "\x04\x04\x01\x03\x04\x01\x01\x02\x04\x03\x01\x03\x03\x05\x04\x04", // 𣿿
+ 0x24000: "\x04\x04\x01\x03\x02\x05\x03\x04\x03\x01\x02\x03\x04\x01\x01\x05", // 𤀀
+ 0x24001: "\x03\x02\x05\x01\x01\x02\x05\x03\x04\x02\x05\x03\x04\x02\x05\x03\x04", // 𤀁
+ 0x24002: "\x04\x04\x01\x01\x02\x02\x03\x05\x02\x05\x01\x03\x01\x03\x04", // 𤀂
+ 0x24003: "\x04\x04\x01\x02\x01\x05\x03\x01\x05\x04\x01\x01\x01\x02\x05\x01", // 𤀃
+ 0x24004: "\x04\x04\x01\x02\x05\x01\x01\x03\x05\x01\x01\x02\x05\x02\x02\x01", // 𤀄
+ 0x24005: "\x04\x04\x01\x02\x05\x01\x02\x05\x01\x01\x03\x04\x01\x02\x05\x01", // 𤀅
+ 0x24006: "\x04\x04\x01\x02\x05\x02\x04\x01\x04\x03\x01\x04\x01\x04\x03\x01", // 𤀆
+ 0x24007: "\x04\x04\x01\x03\x01\x05\x05\x04\x01\x04\x05\x05\x04\x02\x03\x04", // 𤀇
+ 0x24008: "\x04\x04\x01\x03\x02\x05\x03\x04\x04\x04\x04\x04\x01\x01\x03\x04", // 𤀈
+ 0x24009: "\x04\x04\x01\x03\x04\x01\x02\x05\x01\x02\x05\x04\x03\x01\x01\x02", // 𤀉
+ 0x2400a: "\x04\x04\x01\x03\x04\x04\x03\x05\x03\x03\x05\x01\x01\x05\x03\x04", // 𤀊
+ 0x2400b: "\x04\x04\x01\x04\x04\x05\x01\x03\x02\x01\x01\x05\x01\x01\x03\x04", // 𤀋
+ 0x2400c: "\x04\x04\x01\x01\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x01\x01", // 𤀌
+ 0x2400d: "\x04\x04\x01\x01\x04\x05\x02\x04\x04\x04\x04\x03\x04\x03\x03\x03", // 𤀍
+ 0x2400e: "\x04\x04\x01\x02\x05\x02\x02\x01\x01\x03\x04\x04\x03\x01\x01\x02", // 𤀎
+ 0x2400f: "\x04\x04\x01\x04\x01\x01\x01\x02\x05\x01\x01\x01\x02\x01\x05\x04", // 𤀏
+ 0x24010: "\x04\x04\x01\x01\x02\x02\x04\x01\x04\x03\x04\x05\x02\x05\x02", // 𤀐
+ 0x24011: "\x04\x04\x01\x04\x04\x05\x04\x05\x04\x03\x04\x02\x05\x02\x01\x01", // 𤀑
+ 0x24012: "\x04\x04\x01\x03\x04\x01\x02\x05\x01\x01\x02\x02\x04\x05\x04\x04", // 𤀒
+ 0x24013: "\x04\x04\x01\x04\x05\x02\x04\x05\x05\x01\x02\x04\x01\x03\x04", // 𤀓
+ 0x24014: "\x04\x04\x01\x03\x04\x04\x05\x01\x01\x05\x04\x03\x05\x03\x04", // 𤀔
+ 0x24015: "\x04\x04\x01\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x01\x02\x01", // 𤀕
+ 0x24016: "\x04\x04\x01\x02\x05\x02\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𤀖
+ 0x24017: "\x04\x04\x01\x03\x01\x02\x01\x03\x05\x02\x05\x01\x03\x02\x05\x01", // 𤀗
+ 0x24018: "\x04\x04\x01\x01\x02\x02\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𤀘
+ 0x24019: "\x04\x04\x01\x02\x05\x01\x03\x02\x05\x01\x01\x05\x04\x04\x04\x04", // 𤀙
+ 0x2401a: "\x04\x04\x01\x01\x02\x02\x04\x02\x05\x03\x04\x01\x02\x03\x04", // 𤀚
+ 0x2401b: "\x04\x04\x01\x05\x01\x03\x03\x05\x01\x03\x04\x03\x04\x02\x03\x04", // 𤀛
+ 0x2401c: "\x04\x04\x01\x02\x05\x01\x01\x01\x01\x01\x02\x01\x02\x05\x01\x01", // 𤀜
+ 0x2401d: "\x04\x04\x01\x01\x01\x02\x01\x05\x05\x04\x02\x03\x04\x05\x02", // 𤀝
+ 0x2401e: "\x04\x04\x01\x01\x02\x02\x01\x02\x01\x03\x02\x05\x01\x01", // 𤀞
+ 0x2401f: "\x04\x04\x01\x04\x03\x01\x05\x05\x04\x05\x05\x04\x01\x02\x01", // 𤀟
+ 0x24020: "\x04\x04\x01\x01\x02\x02\x05\x01\x02\x05\x05\x01\x05\x04\x04\x04\x04", // 𤀠
+ 0x24021: "\x04\x04\x01\x04\x03\x01\x01\x02\x01\x02\x02\x01\x01\x01\x05\x04", // 𤀡
+ 0x24022: "\x04\x04\x01\x01\x02\x01\x05\x04\x04\x04\x05\x03\x05\x01\x02\x01", // 𤀢
+ 0x24023: "\x04\x04\x01\x02\x05\x01\x01\x01\x03\x04\x04\x03\x01\x01\x03\x05\x04", // 𤀣
+ 0x24024: "\x04\x04\x01\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x01\x03\x02", // 𤀤
+ 0x24025: "\x04\x04\x01\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x01\x01\x03\x02", // 𤀥
+ 0x24026: "\x04\x04\x01\x01\x02\x05\x01\x02\x03\x04\x02\x02\x01\x03\x02\x05\x01", // 𤀦
+ 0x24027: "\x04\x04\x01\x03\x05\x02\x05\x01\x03\x05\x03\x05\x02\x05\x01\x03\x05", // 𤀧
+ 0x24028: "\x04\x04\x01\x04\x04\x05\x03\x05\x03\x04\x01\x03\x05\x01\x01\x02\x02", // 𤀨
+ 0x24029: "\x01\x02\x05\x01\x02\x05\x03\x01\x01\x02\x05\x02\x02\x01\x02\x05\x03\x04", // 𤀩
+ 0x2402a: "\x04\x04\x01\x05\x03\x02\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𤀪
+ 0x2402b: "\x04\x04\x01\x04\x01\x04\x03\x01\x01\x03\x04\x01\x04\x03\x01\x01\x02", // 𤀫
+ 0x2402c: "\x04\x04\x01\x04\x03\x01\x02\x03\x04\x01\x01\x02\x02\x01\x01\x03\x04", // 𤀬
+ 0x2402d: "\x04\x04\x01\x02\x05\x01\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x04", // 𤀭
+ 0x2402e: "\x04\x04\x01\x04\x01\x05\x04\x05\x04\x01\x02\x03\x04\x01\x02\x03\x04", // 𤀮
+ 0x2402f: "\x04\x04\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x04", // 𤀯
+ 0x24030: "\x04\x04\x01\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 𤀰
+ 0x24031: "\x04\x04\x01\x01\x03\x04\x02\x01\x02\x01\x01\x01\x02\x04\x05\x04", // 𤀱
+ 0x24032: "\x04\x01\x04\x03\x01\x01\x03\x02\x05\x03\x04\x04\x01\x04\x03\x01\x01\x02", // 𤀲
+ 0x24033: "\x04\x04\x01\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x02\x01\x01\x01", // 𤀳
+ 0x24034: "\x04\x04\x01\x03\x02\x05\x01\x01\x01\x05\x01\x03\x05\x03\x03\x03\x04", // 𤀴
+ 0x24035: "\x04\x04\x01\x05\x01\x01\x02\x02\x05\x01\x01\x03\x03\x02\x01\x01\x02", // 𤀵
+ 0x24036: "\x04\x04\x01\x02\x01\x05\x03\x01\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 𤀶
+ 0x24037: "\x04\x04\x01\x05\x01\x01\x01\x01\x02\x01\x05\x04\x03\x05\x04\x01", // 𤀷
+ 0x24038: "\x04\x04\x01\x01\x03\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𤀸
+ 0x24039: "\x04\x04\x01\x02\x01\x05\x03\x01\x03\x04\x03\x04\x02\x05\x01\x01\x01", // 𤀹
+ 0x2403a: "\x04\x04\x01\x01\x02\x01\x02\x05\x01\x04\x03\x01\x05\x03\x02\x05\x01", // 𤀺
+ 0x2403b: "\x04\x04\x01\x05\x02\x03\x05\x02\x02\x04\x05\x03\x05\x01\x02\x03\x04", // 𤀻
+ 0x2403c: "\x04\x04\x01\x05\x05\x04\x04\x04\x04\x05\x01\x01\x02\x04\x01\x03\x04", // 𤀼
+ 0x2403d: "\x04\x04\x01\x05\x05\x04\x04\x04\x04\x01\x03\x04\x01\x02\x05\x01\x02", // 𤀽
+ 0x2403e: "\x04\x04\x01\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x02\x01\x02", // 𤀾
+ 0x2403f: "\x04\x04\x01\x04\x04\x05\x01\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04", // 𤀿
+ 0x24040: "\x04\x04\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x03\x03\x03", // 𤁀
+ 0x24041: "\x04\x04\x01\x04\x01\x05\x05\x02\x01\x03\x01\x03\x04\x03\x01\x01\x02", // 𤁁
+ 0x24042: "\x04\x04\x01\x04\x04\x05\x05\x05\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𤁂
+ 0x24043: "\x04\x04\x01\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04\x02\x05\x02", // 𤁃
+ 0x24044: "\x04\x04\x01\x01\x03\x02\x05\x01\x01\x02\x01\x01\x03\x05\x01\x02\x01", // 𤁄
+ 0x24045: "\x04\x04\x01\x01\x02\x01\x02\x05\x01\x04\x03\x01\x05\x04\x01\x02\x01", // 𤁅
+ 0x24046: "\x04\x04\x01\x02\x05\x02\x02\x01\x04\x01\x02\x05\x01\x03\x05\x03\x04", // 𤁆
+ 0x24047: "\x04\x04\x01\x01\x02\x01\x02\x04\x04\x05\x03\x04\x03\x04\x02\x05\x01", // 𤁇
+ 0x24048: "\x04\x04\x01\x03\x01\x04\x03\x01\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𤁈
+ 0x24049: "\x04\x04\x01\x01\x02\x02\x01\x02\x05\x01\x03\x04\x04\x03\x01\x02\x01", // 𤁉
+ 0x2404a: "\x04\x04\x01\x02\x01\x02\x01\x02\x05\x02\x02\x01\x01\x03\x03\x04\x04", // 𤁊
+ 0x2404b: "\x04\x04\x01\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x02\x01\x02\x01", // 𤁋
+ 0x2404c: "\x04\x04\x01\x03\x02\x05\x03\x04\x03\x01\x02\x03\x04\x01\x02\x01\x02", // 𤁌
+ 0x2404d: "\x04\x04\x01\x05\x01\x03\x02\x01\x02\x01\x05\x01\x03\x02\x01\x02\x01", // 𤁍
+ 0x2404e: "\x04\x04\x01\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x04\x03\x01\x02", // 𤁎
+ 0x2404f: "\x04\x04\x01\x01\x01\x01\x02\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01", // 𤁏
+ 0x24050: "\x04\x04\x01\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x04\x02\x05\x01", // 𤁐
+ 0x24051: "\x04\x04\x01\x02\x05\x02\x02\x05\x01\x01\x01\x03\x05\x05\x03\x04", // 𤁑
+ 0x24052: "\x04\x04\x01\x03\x05\x03\x01\x01\x03\x04\x05\x04\x05\x02\x01\x03\x04", // 𤁒
+ 0x24053: "\x04\x04\x01\x01\x01\x02\x01\x03\x05\x04\x04\x03\x01\x01\x02\x05\x02", // 𤁓
+ 0x24054: "\x04\x04\x01\x03\x02\x05\x01\x01\x03\x05\x05\x04\x04\x04\x01\x02", // 𤁔
+ 0x24055: "\x04\x04\x01\x04\x01\x04\x03\x01\x01\x03\x01\x02\x05\x01\x02\x03\x04", // 𤁕
+ 0x24056: "\x04\x04\x01\x04\x05\x02\x03\x04\x02\x05\x01\x01\x01\x02\x03\x04", // 𤁖
+ 0x24057: "\x04\x04\x01\x05\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x02\x05\x02", // 𤁗
+ 0x24058: "\x04\x04\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05\x02\x05\x01\x02", // 𤁘
+ 0x24059: "\x01\x02\x01\x03\x04\x04\x04\x01\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 𤁙
+ 0x2405a: "\x04\x04\x01\x03\x03\x02\x02\x05\x02\x01\x01\x03\x05\x03\x01\x03\x04", // 𤁚
+ 0x2405b: "\x04\x04\x01\x01\x02\x01\x03\x02\x05\x01\x01\x05\x03\x05\x02\x01", // 𤁛
+ 0x2405c: "\x04\x04\x01\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x01\x01\x02", // 𤁜
+ 0x2405d: "\x04\x04\x01\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x02\x01\x04", // 𤁝
+ 0x2405e: "\x04\x04\x01\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04\x02\x05\x03\x04", // 𤁞
+ 0x2405f: "\x04\x04\x01\x01\x02\x01\x05\x01\x05\x05\x01\x01\x05\x02\x05\x01", // 𤁟
+ 0x24060: "\x04\x04\x01\x03\x05\x04\x04\x03\x01\x01\x02\x05\x02\x04\x05\x04", // 𤁠
+ 0x24061: "\x04\x04\x01\x01\x02\x01\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 𤁡
+ 0x24062: "\x04\x04\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x01\x05\x03\x04", // 𤁢
+ 0x24063: "\x04\x04\x01\x02\x05\x02\x02\x01\x05\x04\x03\x05\x04\x01\x01\x05\x01\x05", // 𤁣
+ 0x24064: "\x04\x04\x01\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x01\x03\x04", // 𤁤
+ 0x24065: "\x04\x04\x01\x01\x01\x03\x04\x01\x01\x03\x04\x01\x02\x05\x01\x01\x01\x02", // 𤁥
+ 0x24066: "\x04\x04\x01\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04\x01\x05\x05\x04", // 𤁦
+ 0x24067: "\x04\x04\x01\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𤁧
+ 0x24068: "\x04\x04\x01\x02\x05\x01\x01\x01\x03\x02\x01\x01\x02\x05\x01\x01\x05\x04", // 𤁨
+ 0x24069: "\x04\x04\x01\x03\x03\x01\x02\x03\x03\x01\x02\x02\x05\x01\x01\x01\x03\x04", // 𤁩
+ 0x2406a: "\x04\x04\x01\x01\x01\x02\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𤁪
+ 0x2406b: "\x04\x04\x01\x03\x05\x05\x03\x03\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𤁫
+ 0x2406c: "\x04\x04\x01\x01\x02\x01\x02\x03\x02\x05\x03\x03\x04\x01\x04\x05\x04\x04", // 𤁬
+ 0x2406d: "\x04\x04\x01\x01\x02\x05\x01\x01\x05\x03\x04\x03\x05\x03\x05\x01\x01\x02", // 𤁭
+ 0x2406e: "\x04\x04\x01\x01\x02\x01\x02\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 𤁮
+ 0x2406f: "\x04\x04\x01\x05\x05\x05\x02\x05\x03\x04\x01\x05\x04\x04\x05\x04\x04\x05", // 𤁯
+ 0x24070: "\x04\x04\x01\x03\x01\x01\x03\x04\x02\x05\x01\x02\x05\x01\x01\x01\x01\x02", // 𤁰
+ 0x24071: "\x04\x04\x01\x01\x02\x01\x02\x03\x05\x04\x01\x05\x04\x01\x01\x02\x03\x04", // 𤁱
+ 0x24072: "\x04\x04\x01\x03\x03\x02\x01\x05\x04\x03\x05\x04\x01\x03\x01\x03\x04", // 𤁲
+ 0x24073: "\x04\x04\x01\x01\x04\x05\x02\x04\x01\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 𤁳
+ 0x24074: "\x04\x04\x01\x02\x01\x05\x03\x01\x05\x01\x03\x05\x03\x03\x03\x04\x02\x02", // 𤁴
+ 0x24075: "\x04\x04\x01\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x03\x02\x05\x01", // 𤁵
+ 0x24076: "\x04\x04\x01\x03\x04\x04\x03\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𤁶
+ 0x24077: "\x04\x04\x01\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01\x04\x05\x04", // 𤁷
+ 0x24078: "\x04\x04\x01\x01\x02\x01\x02\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 𤁸
+ 0x24079: "\x04\x04\x01\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x01\x03\x02\x03\x04", // 𤁹
+ 0x2407a: "\x04\x04\x01\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x03\x01\x02\x01", // 𤁺
+ 0x2407b: "\x04\x04\x01\x03\x02\x05\x01\x01\x01\x04\x04\x05\x03\x05\x04\x01\x05\x03", // 𤁻
+ 0x2407c: "\x04\x04\x01\x01\x05\x03\x01\x01\x03\x04\x05\x04\x04\x03\x01\x02\x03\x04", // 𤁼
+ 0x2407d: "\x04\x04\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x02\x05\x01\x01\x01", // 𤁽
+ 0x2407e: "\x04\x04\x01\x04\x03\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𤁾
+ 0x2407f: "\x04\x04\x01\x05\x01\x01\x01\x02\x01\x02\x05\x01\x02\x01\x03\x05\x04\x01", // 𤁿
+ 0x24080: "\x04\x04\x01\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04\x01\x01\x03\x04", // 𤂀
+ 0x24081: "\x04\x04\x01\x05\x05\x04\x04\x04\x04\x01\x02\x01\x04\x05\x03\x01\x01\x02", // 𤂁
+ 0x24082: "\x04\x04\x01\x04\x01\x01\x01\x02\x05\x01\x03\x05\x01\x02\x01\x02\x05\x01", // 𤂂
+ 0x24083: "\x04\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04\x03\x05\x03\x04\x01\x03\x04", // 𤂃
+ 0x24084: "\x04\x04\x01\x02\x05\x01\x01\x01\x05\x01\x03\x02\x01\x02\x05\x02\x02", // 𤂄
+ 0x24085: "\x04\x04\x01\x01\x01\x02\x01\x03\x05\x01\x01\x03\x04\x04\x03\x01\x02\x04", // 𤂅
+ 0x24086: "\x04\x04\x01\x03\x04\x04\x03\x05\x02\x01\x02\x01\x05\x03\x01\x05\x03\x05", // 𤂆
+ 0x24087: "\x04\x04\x01\x01\x02\x01\x02\x05\x05\x04\x05\x05\x04\x05\x02\x01\x05\x02\x01", // 𤂇
+ 0x24088: "\x04\x04\x01\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x01\x02\x03\x04", // 𤂈
+ 0x24089: "\x04\x04\x01\x01\x02\x03\x04\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04", // 𤂉
+ 0x2408a: "\x04\x04\x01\x05\x05\x01\x05\x05\x01\x05\x01\x02\x01\x03\x03\x01\x02", // 𤂊
+ 0x2408b: "\x04\x04\x01\x01\x02\x01\x02\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 𤂋
+ 0x2408c: "\x04\x04\x01\x01\x02\x01\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𤂌
+ 0x2408d: "\x04\x04\x01\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 𤂍
+ 0x2408e: "\x04\x04\x01\x05\x01\x03\x02\x04\x01\x03\x04\x01\x02\x05\x03\x04\x03\x04", // 𤂎
+ 0x2408f: "\x04\x04\x01\x05\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x04\x04\x04\x04", // 𤂏
+ 0x24090: "\x04\x04\x01\x01\x02\x05\x01\x02\x05\x05\x04\x02\x05\x01\x01\x01\x03\x04", // 𤂐
+ 0x24091: "\x04\x04\x01\x01\x02\x03\x04\x01\x02\x03\x04\x01\x03\x01\x01\x05\x03\x04", // 𤂑
+ 0x24092: "\x04\x04\x01\x02\x05\x03\x04\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04", // 𤂒
+ 0x24093: "\x04\x04\x01\x02\x01\x05\x03\x03\x04\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𤂓
+ 0x24094: "\x04\x04\x01\x02\x01\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𤂔
+ 0x24095: "\x04\x04\x01\x05\x01\x01\x02\x02\x05\x01\x01\x04\x04\x01\x01\x01\x03\x05", // 𤂕
+ 0x24096: "\x04\x04\x01\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x03\x04\x03\x03\x03", // 𤂖
+ 0x24097: "\x04\x04\x01\x02\x01\x01\x02\x01\x01\x01\x02\x01\x02\x04\x01\x02\x05\x02", // 𤂗
+ 0x24098: "\x04\x04\x01\x01\x02\x01\x02\x01\x03\x01\x02\x05\x01\x02\x05\x05\x03\x04", // 𤂘
+ 0x24099: "\x04\x04\x01\x01\x02\x01\x02\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04", // 𤂙
+ 0x2409a: "\x04\x04\x01\x03\x04\x04\x03\x05\x03\x03\x03\x02\x01\x05\x01\x01\x03\x05", // 𤂚
+ 0x2409b: "\x04\x04\x01\x03\x02\x02\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 𤂛
+ 0x2409c: "\x04\x04\x01\x03\x03\x05\x04\x04\x03\x03\x05\x04\x04\x03\x03\x05\x04\x04", // 𤂜
+ 0x2409d: "\x04\x04\x01\x01\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04\x02\x05\x03\x04", // 𤂝
+ 0x2409e: "\x05\x01\x03\x04\x03\x03\x04\x02\x05\x01\x01\x03\x05\x03\x03\x02\x05\x03\x04", // 𤂞
+ 0x2409f: "\x01\x02\x05\x01\x02\x05\x03\x01\x01\x02\x05\x02\x05\x01\x01\x02\x05\x03\x04", // 𤂟
+ 0x240a0: "\x04\x04\x01\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01\x01\x02\x01\x05\x04", // 𤂠
+ 0x240a1: "\x04\x04\x01\x02\x01\x02\x01\x01\x02\x01\x03\x04\x01\x02\x05\x01\x01\x05\x04", // 𤂡
+ 0x240a2: "\x04\x04\x01\x01\x02\x02\x04\x03\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05", // 𤂢
+ 0x240a3: "\x04\x04\x01\x01\x02\x01\x02\x05\x01\x01\x04\x03\x01\x02\x03\x04\x03\x02", // 𤂣
+ 0x240a4: "\x04\x04\x01\x01\x03\x04\x03\x01\x01\x02\x03\x01\x01\x02\x03\x01\x01\x02", // 𤂤
+ 0x240a5: "\x04\x04\x01\x03\x01\x01\x03\x04\x02\x05\x01\x02\x05\x01\x01\x01\x01\x05", // 𤂥
+ 0x240a6: "\x04\x04\x01\x04\x03\x01\x02\x05\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𤂦
+ 0x240a7: "\x04\x04\x01\x01\x02\x02\x03\x05\x04\x01\x01\x01\x02\x04\x05\x04", // 𤂧
+ 0x240a8: "\x04\x04\x01\x01\x02\x03\x04\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 𤂨
+ 0x240a9: "\x04\x04\x01\x03\x01\x02\x01\x03\x05\x01\x02\x01\x03\x02\x05\x01\x01", // 𤂩
+ 0x240aa: "\x04\x04\x01\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x01\x01\x05\x03\x04", // 𤂪
+ 0x240ab: "\x04\x04\x01\x02\x05\x01\x01\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 𤂫
+ 0x240ac: "\x04\x04\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01", // 𤂬
+ 0x240ad: "\x04\x04\x01\x01\x02\x05\x03\x05\x01\x01\x04\x01\x03\x04\x03\x04\x01\x02", // 𤂭
+ 0x240ae: "\x04\x04\x01\x01\x03\x03\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𤂮
+ 0x240af: "\x04\x04\x01\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 𤂯
+ 0x240b0: "\x04\x04\x01\x01\x05\x03\x01\x02\x03\x04\x05\x01\x01\x02\x04\x01\x03\x04", // 𤂰
+ 0x240b1: "\x04\x04\x01\x03\x01\x02\x03\x04\x03\x05\x03\x03\x04\x02\x04\x01\x03\x04", // 𤂱
+ 0x240b2: "\x04\x04\x01\x03\x05\x03\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04", // 𤂲
+ 0x240b3: "\x04\x04\x01\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x01\x03\x04\x05\x04", // 𤂳
+ 0x240b4: "\x04\x04\x01\x02\x01\x05\x03\x01\x05\x02\x02\x05\x02\x01\x01\x01\x05\x03\x04", // 𤂴
+ 0x240b5: "\x04\x04\x01\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04\x05\x05\x04\x02\x03\x04", // 𤂵
+ 0x240b6: "\x04\x04\x01\x05\x01\x01\x02\x02\x05\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𤂶
+ 0x240b7: "\x04\x04\x01\x05\x01\x01\x02\x02\x05\x01\x01\x04\x01\x05\x03\x03\x04\x04\x04", // 𤂷
+ 0x240b8: "\x04\x04\x01\x04\x01\x02\x05\x01\x02\x05\x01\x01\x02\x01\x02\x01\x01\x01\x02", // 𤂸
+ 0x240b9: "\x04\x04\x01\x01\x02\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 𤂹
+ 0x240ba: "\x04\x04\x01\x01\x02\x05\x01\x02\x05\x03\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 𤂺
+ 0x240bb: "\x04\x04\x01\x05\x04\x05\x02\x03\x05\x02\x05\x02\x01\x03\x05\x03\x03\x03\x04", // 𤂻
+ 0x240bc: "\x03\x02\x05\x01\x01\x01\x04\x04\x05\x01\x03\x05\x03\x03\x03\x04\x02\x05\x03\x04", // 𤂼
+ 0x240bd: "\x04\x04\x01\x02\x05\x01\x01\x05\x05\x04\x02\x03\x04\x05\x05\x04\x02\x03\x04", // 𤂽
+ 0x240be: "\x04\x04\x01\x01\x03\x04\x02\x01\x02\x01\x01\x03\x01\x02\x03\x03\x05\x03\x04", // 𤂾
+ 0x240bf: "\x04\x04\x01\x05\x01\x05\x05\x01\x05\x01\x02\x02\x01\x03\x04\x04\x05\x04", // 𤂿
+ 0x240c0: "\x04\x04\x01\x01\x02\x01\x01\x01\x02\x03\x04\x05\x01\x01\x02\x04\x01\x03\x04", // 𤃀
+ 0x240c1: "\x04\x04\x01\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x01\x02\x01", // 𤃁
+ 0x240c2: "\x04\x04\x01\x01\x02\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04", // 𤃂
+ 0x240c3: "\x04\x04\x01\x04\x01\x05\x03\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 𤃃
+ 0x240c4: "\x05\x03\x01\x03\x04\x03\x03\x04\x02\x05\x01\x01\x03\x05\x03\x03\x02\x05\x03\x04", // 𤃄
+ 0x240c5: "\x04\x04\x01\x02\x05\x01\x01\x01\x04\x05\x02\x04\x04\x04\x04\x01\x01\x05\x04", // 𤃅
+ 0x240c6: "\x04\x04\x01\x04\x04\x05\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 𤃆
+ 0x240c7: "\x04\x04\x01\x01\x02\x02\x01\x02\x05\x01\x02\x01\x01\x03\x05\x04\x04\x04\x04", // 𤃇
+ 0x240c8: "\x04\x04\x01\x01\x02\x05\x01\x02\x04\x05\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 𤃈
+ 0x240c9: "\x04\x04\x01\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x04\x05\x04\x04", // 𤃉
+ 0x240ca: "\x04\x04\x01\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x02\x01\x02\x01\x02", // 𤃊
+ 0x240cb: "\x04\x04\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𤃋
+ 0x240cc: "\x04\x04\x01\x01\x02\x05\x01\x04\x03\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𤃌
+ 0x240cd: "\x04\x04\x01\x01\x04\x05\x02\x04\x01\x03\x04\x03\x01\x01\x01\x02\x01\x01\x01", // 𤃍
+ 0x240ce: "\x04\x04\x01\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x01\x02\x01", // 𤃎
+ 0x240cf: "\x04\x04\x01\x01\x02\x05\x01\x02\x03\x04\x03\x01\x03\x04\x01\x03\x02\x05\x01", // 𤃏
+ 0x240d0: "\x04\x04\x01\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04\x02\x05\x01\x02\x01", // 𤃐
+ 0x240d1: "\x04\x04\x01\x02\x05\x01\x01\x05\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𤃑
+ 0x240d2: "\x04\x04\x01\x02\x01\x05\x03\x01\x05\x01\x03\x04\x03\x04\x02\x05\x01\x01\x01", // 𤃒
+ 0x240d3: "\x04\x04\x01\x01\x02\x01\x02\x02\x01\x02\x01\x02\x01\x02\x01\x02\x01\x02\x01", // 𤃓
+ 0x240d4: "\x04\x04\x01\x02\x01\x05\x03\x01\x05\x03\x05\x04\x03\x05\x02\x05\x01\x01\x01", // 𤃔
+ 0x240d5: "\x04\x04\x01\x01\x02\x01\x03\x05\x01\x05\x05\x01\x01\x05\x02\x05\x01\x05\x04", // 𤃕
+ 0x240d6: "\x04\x04\x01\x01\x03\x04\x04\x03\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𤃖
+ 0x240d7: "\x04\x04\x01\x03\x02\x01\x01\x02\x05\x03\x04\x05\x01\x01\x02\x05\x02\x02\x01", // 𤃗
+ 0x240d8: "\x04\x04\x01\x03\x02\x01\x01\x05\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𤃘
+ 0x240d9: "\x04\x04\x01\x03\x02\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x02\x01\x02", // 𤃙
+ 0x240da: "\x04\x04\x01\x03\x05\x04\x04\x04\x05\x01\x03\x02\x01\x01\x05\x01\x01\x03\x04", // 𤃚
+ 0x240db: "\x04\x04\x01\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04\x03\x03\x05\x04\x04", // 𤃛
+ 0x240dc: "\x04\x04\x01\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04\x04\x05\x04", // 𤃜
+ 0x240dd: "\x04\x04\x01\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x01", // 𤃝
+ 0x240de: "\x04\x04\x01\x02\x05\x01\x01\x01\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04", // 𤃞
+ 0x240df: "\x04\x04\x01\x04\x01\x05\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02\x01", // 𤃟
+ 0x240e0: "\x04\x04\x01\x03\x04\x01\x05\x01\x01\x05\x04\x03\x04\x04\x03\x05\x03\x01", // 𤃠
+ 0x240e1: "\x04\x04\x01\x03\x05\x03\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𤃡
+ 0x240e2: "\x04\x04\x01\x04\x01\x03\x04\x01\x02\x05\x02\x05\x01\x01\x03\x01\x02\x03\x04", // 𤃢
+ 0x240e3: "\x04\x04\x01\x01\x03\x05\x03\x03\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𤃣
+ 0x240e4: "\x04\x04\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05\x04\x05\x04", // 𤃤
+ 0x240e5: "\x04\x04\x01\x01\x02\x02\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 𤃥
+ 0x240e6: "\x04\x04\x01\x01\x02\x02\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01", // 𤃦
+ 0x240e7: "\x04\x04\x01\x01\x02\x01\x01\x02\x01\x04\x03\x01\x01\x01\x02\x04\x05\x04", // 𤃧
+ 0x240e8: "\x04\x04\x01\x04\x03\x03\x04\x04\x03\x03\x04\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 𤃨
+ 0x240e9: "\x04\x04\x01\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 𤃩
+ 0x240ea: "\x04\x04\x01\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x04\x03\x01\x01\x05\x03\x04", // 𤃪
+ 0x240eb: "\x04\x04\x01\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x01\x03\x05\x04\x01\x05", // 𤃫
+ 0x240ec: "\x04\x04\x01\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04\x01\x02\x01\x03\x02\x03\x04", // 𤃬
+ 0x240ed: "\x04\x04\x01\x02\x05\x02\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 𤃭
+ 0x240ee: "\x04\x04\x01\x03\x05\x04\x05\x03\x01\x02\x01\x05\x05\x01\x02\x01\x03\x03\x01\x02", // 𤃮
+ 0x240ef: "\x04\x04\x01\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x03\x03\x05\x04\x01\x04", // 𤃯
+ 0x240f0: "\x04\x04\x01\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x05\x05\x04\x02\x03\x04", // 𤃰
+ 0x240f1: "\x04\x04\x01\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x04\x03\x01\x02\x03\x04", // 𤃱
+ 0x240f2: "\x04\x04\x01\x01\x02\x01\x04\x03\x01\x01\x03\x05\x04\x05\x05\x04\x02\x03\x04", // 𤃲
+ 0x240f3: "\x04\x04\x01\x04\x01\x05\x03\x03\x01\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 𤃳
+ 0x240f4: "\x04\x04\x01\x01\x02\x01\x02\x02\x01\x02\x01\x01\x03\x01\x02\x03\x03\x05\x03\x04", // 𤃴
+ 0x240f5: "\x04\x04\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 𤃵
+ 0x240f6: "\x04\x04\x01\x01\x02\x02\x05\x01\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 𤃶
+ 0x240f7: "\x04\x04\x01\x05\x01\x01\x02\x02\x05\x01\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 𤃷
+ 0x240f8: "\x04\x04\x01\x01\x04\x05\x02\x04\x01\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01\x02", // 𤃸
+ 0x240f9: "\x04\x04\x01\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x01\x03\x02\x05\x01", // 𤃹
+ 0x240fa: "\x04\x04\x01\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 𤃺
+ 0x240fb: "\x05\x03\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x03\x04", // 𤃻
+ 0x240fc: "\x04\x04\x01\x01\x03\x01\x02\x05\x01\x02\x05\x05\x03\x04\x02\x05\x03\x04\x03\x04", // 𤃼
+ 0x240fd: "\x04\x04\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x03\x03\x05\x01\x01", // 𤃽
+ 0x240fe: "\x04\x04\x01\x03\x01\x04\x03\x01\x04\x05\x01\x01\x05\x03\x04\x02\x05\x02\x02\x01", // 𤃾
+ 0x240ff: "\x04\x04\x01\x01\x02\x02\x02\x05\x02\x02\x01\x04\x05\x03\x02\x01\x05\x03\x04", // 𤃿
+ 0x24100: "\x04\x04\x01\x01\x02\x02\x03\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𤄀
+ 0x24101: "\x04\x04\x01\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04\x02\x05\x01\x02\x01\x04", // 𤄁
+ 0x24102: "\x04\x04\x01\x04\x03\x01\x01\x02\x01\x04\x04\x04\x04\x04\x03\x01\x01\x01\x03\x04", // 𤄂
+ 0x24103: "\x04\x04\x01\x05\x01\x01\x02\x02\x05\x01\x01\x04\x04\x01\x03\x01\x02\x02\x05\x01", // 𤄃
+ 0x24104: "\x04\x04\x01\x01\x02\x03\x04\x03\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𤄄
+ 0x24105: "\x04\x04\x01\x04\x01\x01\x01\x02\x05\x01\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01", // 𤄅
+ 0x24106: "\x04\x04\x01\x01\x03\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04\x05\x03", // 𤄆
+ 0x24107: "\x04\x04\x01\x05\x01\x01\x02\x02\x05\x01\x01\x04\x01\x04\x03\x04\x05\x02\x05\x02", // 𤄇
+ 0x24108: "\x01\x02\x05\x01\x02\x05\x03\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x03\x04", // 𤄈
+ 0x24109: "\x04\x04\x01\x01\x02\x01\x05\x02\x05\x01\x03\x04\x01\x01\x02\x04\x03\x01\x02\x02", // 𤄉
+ 0x2410a: "\x04\x04\x01\x01\x03\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x01", // 𤄊
+ 0x2410b: "\x04\x04\x01\x05\x05\x04\x04\x04\x04\x03\x02\x05\x03\x03\x04\x01\x04\x05\x04\x04", // 𤄋
+ 0x2410c: "\x01\x02\x01\x03\x03\x01\x02\x04\x04\x01\x01\x03\x01\x04\x03\x03\x04\x05\x03\x04", // 𤄌
+ 0x2410d: "\x04\x04\x01\x01\x02\x05\x03\x05\x01\x01\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 𤄍
+ 0x2410e: "\x04\x04\x01\x02\x01\x01\x02\x01\x01\x01\x02\x01\x02\x03\x02\x01\x05\x01\x01\x03\x05", // 𤄎
+ 0x2410f: "\x04\x04\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x05\x04\x02\x03\x04", // 𤄏
+ 0x24110: "\x04\x04\x01\x01\x04\x05\x02\x04\x01\x03\x04\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 𤄐
+ 0x24111: "\x04\x04\x01\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x01\x03\x02\x02\x01\x05\x04", // 𤄑
+ 0x24112: "\x04\x04\x01\x03\x01\x04\x03\x01\x04\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x01\x01", // 𤄒
+ 0x24113: "\x04\x04\x01\x01\x02\x01\x02\x01\x02\x02\x01\x01\x01\x05\x04\x03\x02\x03\x04\x03\x04", // 𤄓
+ 0x24114: "\x04\x04\x01\x02\x05\x02\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x01\x05\x03\x04", // 𤄔
+ 0x24115: "\x04\x04\x01\x04\x01\x05\x03\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 𤄕
+ 0x24116: "\x04\x04\x01\x04\x01\x03\x04\x03\x04\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𤄖
+ 0x24117: "\x04\x04\x01\x02\x05\x01\x01\x05\x02\x02\x05\x02\x01\x03\x04\x04\x03\x01\x02\x03\x04", // 𤄗
+ 0x24118: "\x04\x04\x01\x04\x04\x05\x03\x05\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x05\x04", // 𤄘
+ 0x24119: "\x04\x04\x01\x03\x01\x04\x03\x01\x04\x05\x01\x01\x02\x03\x02\x01\x01\x05\x05\x02\x01\x02", // 𤄙
+ 0x2411a: "\x04\x04\x01\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x01\x04\x03\x03\x04", // 𤄚
+ 0x2411b: "\x04\x04\x01\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𤄛
+ 0x2411c: "\x04\x04\x01\x04\x03\x01\x02\x03\x04\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 𤄜
+ 0x2411d: "\x04\x04\x01\x02\x05\x01\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01\x01\x02\x01\x05\x04", // 𤄝
+ 0x2411e: "\x04\x04\x01\x04\x01\x05\x02\x05\x02\x02\x01\x03\x05\x04\x01\x05\x03\x01\x03\x05\x04", // 𤄞
+ 0x2411f: "\x04\x04\x01\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x03\x04\x03\x04\x02\x05\x01", // 𤄟
+ 0x24120: "\x04\x04\x01\x01\x02\x01\x02\x04\x04\x05\x01\x02\x03\x03\x02\x05\x01\x01\x01\x03\x04", // 𤄠
+ 0x24121: "\x04\x04\x01\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x02\x05\x01\x02\x05\x01\x01\x05", // 𤄡
+ 0x24122: "\x04\x04\x01\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x01\x02\x04\x05\x04", // 𤄢
+ 0x24123: "\x04\x04\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x02\x01\x05\x03\x04", // 𤄣
+ 0x24124: "\x04\x04\x01\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 𤄤
+ 0x24125: "\x02\x05\x03\x04\x02\x05\x01\x01\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x04\x04\x04\x04", // 𤄥
+ 0x24126: "\x04\x04\x01\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 𤄦
+ 0x24127: "\x04\x04\x01\x02\x05\x01\x01\x01\x03\x04\x03\x05\x04\x04\x04\x01\x01\x01\x02\x05\x01", // 𤄧
+ 0x24128: "\x04\x04\x01\x02\x05\x03\x04\x03\x04\x01\x03\x04\x03\x03\x04\x04\x03\x03\x04\x02\x02", // 𤄨
+ 0x24129: "\x04\x04\x01\x02\x05\x03\x04\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 𤄩
+ 0x2412a: "\x04\x04\x01\x03\x04\x03\x01\x02\x03\x04\x01\x01\x02\x02\x01\x02\x01\x05\x03\x02\x05\x04", // 𤄪
+ 0x2412b: "\x04\x04\x01\x04\x01\x05\x03\x03\x01\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 𤄫
+ 0x2412c: "\x04\x04\x01\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𤄬
+ 0x2412d: "\x04\x04\x01\x02\x05\x01\x01\x01\x02\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𤄭
+ 0x2412e: "\x04\x04\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05\x03\x05\x04\x03\x05\x04", // 𤄮
+ 0x2412f: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05\x04\x04\x01\x01\x01\x02\x01\x02\x05\x01\x01", // 𤄯
+ 0x24130: "\x04\x04\x01\x04\x01\x04\x03\x01\x03\x03\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𤄰
+ 0x24131: "\x04\x04\x01\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 𤄱
+ 0x24132: "\x04\x04\x01\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01", // 𤄲
+ 0x24133: "\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x03\x04", // 𤄳
+ 0x24134: "\x04\x04\x01\x01\x01\x03\x04\x02\x05\x03\x05\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𤄴
+ 0x24135: "\x04\x04\x01\x01\x01\x03\x04\x01\x01\x03\x04\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𤄵
+ 0x24136: "\x04\x04\x01\x01\x02\x01\x02\x03\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x03\x04", // 𤄶
+ 0x24137: "\x04\x04\x01\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𤄷
+ 0x24138: "\x04\x04\x01\x05\x01\x01\x02\x01\x04\x04\x04\x04\x02\x05\x02\x02\x01\x04\x03\x03\x04", // 𤄸
+ 0x24139: "\x04\x04\x01\x04\x03\x01\x02\x03\x04\x01\x03\x04\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𤄹
+ 0x2413a: "\x04\x04\x01\x03\x02\x05\x01\x01\x01\x04\x04\x05\x03\x05\x04\x01\x05\x03\x04\x05\x04", // 𤄺
+ 0x2413b: "\x04\x04\x01\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x01\x03\x04\x05\x01\x05", // 𤄻
+ 0x2413c: "\x04\x04\x01\x05\x01\x01\x01\x02\x01\x04\x04\x04\x04\x02\x05\x02\x02\x01\x04\x03\x03\x04", // 𤄼
+ 0x2413d: "\x04\x04\x01\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x01\x02\x01\x04", // 𤄽
+ 0x2413e: "\x04\x04\x01\x04\x03\x01\x01\x02\x01\x04\x04\x04\x04\x04\x03\x01\x01\x02\x01\x01\x03\x04", // 𤄾
+ 0x2413f: "\x04\x04\x01\x01\x02\x03\x04\x03\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x03\x04", // 𤄿
+ 0x24140: "\x04\x04\x01\x04\x01\x05\x02\x05\x01\x03\x05\x01\x01\x04\x03\x01\x01\x01\x02\x03\x05\x04", // 𤅀
+ 0x24141: "\x04\x04\x01\x03\x02\x05\x01\x01\x03\x02\x01\x01\x05\x01\x01\x01\x03\x01\x01\x05\x03\x04", // 𤅁
+ 0x24142: "\x04\x04\x01\x03\x05\x03\x01\x02\x05\x01\x02\x03\x04\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 𤅂
+ 0x24143: "\x04\x04\x01\x03\x01\x04\x03\x01\x04\x04\x01\x04\x03\x01\x03\x05\x01\x01\x02\x02\x03\x04", // 𤅃
+ 0x24144: "\x04\x04\x01\x03\x01\x04\x03\x01\x04\x04\x01\x03\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 𤅄
+ 0x24145: "\x04\x04\x01\x01\x01\x02\x02\x01\x01\x02\x02\x01\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04", // 𤅅
+ 0x24146: "\x04\x04\x01\x03\x02\x05\x01\x01\x01\x02\x03\x04\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𤅆
+ 0x24147: "\x04\x04\x01\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04", // 𤅇
+ 0x24148: "\x04\x04\x01\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𤅈
+ 0x24149: "\x04\x04\x01\x01\x04\x05\x02\x04\x04\x04\x04\x04\x05\x01\x01\x05\x04\x03\x05\x01\x01", // 𤅉
+ 0x2414a: "\x04\x04\x01\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x03\x04\x04", // 𤅊
+ 0x2414b: "\x04\x04\x01\x04\x04\x05\x03\x05\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𤅋
+ 0x2414c: "\x04\x04\x01\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x01\x03\x01\x01\x02\x01\x02\x01\x05", // 𤅌
+ 0x2414d: "\x04\x04\x01\x01\x02\x05\x01\x01\x02\x03\x04\x01\x02\x05\x01\x01\x02\x03\x04\x02\x05\x01\x01", // 𤅍
+ 0x2414e: "\x04\x04\x01\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𤅎
+ 0x2414f: "\x04\x04\x01\x03\x01\x01\x02\x01\x04\x01\x04\x03\x01\x03\x01\x01\x02\x01\x04\x01\x04\x03\x01", // 𤅏
+ 0x24150: "\x04\x04\x01\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 𤅐
+ 0x24151: "\x04\x04\x01\x01\x02\x01\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 𤅑
+ 0x24152: "\x04\x04\x01\x01\x04\x05\x02\x04\x01\x03\x04\x05\x04\x05\x04\x05\x04\x03\x04\x02\x04\x04\x04", // 𤅒
+ 0x24153: "\x04\x04\x01\x02\x03\x04\x03\x02\x05\x01\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𤅓
+ 0x24154: "\x04\x04\x01\x03\x01\x04\x03\x01\x04\x01\x01\x01\x02\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01", // 𤅔
+ 0x24155: "\x04\x04\x01\x03\x01\x04\x03\x01\x04\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 𤅕
+ 0x24156: "\x04\x04\x01\x01\x02\x01\x02\x02\x01\x02\x01\x02\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𤅖
+ 0x24157: "\x04\x04\x01\x04\x01\x05\x02\x05\x01\x03\x05\x01\x01\x04\x01\x01\x01\x02\x05\x01\x03\x05\x04", // 𤅗
+ 0x24158: "\x04\x04\x01\x04\x01\x05\x02\x05\x01\x03\x05\x01\x01\x04\x03\x01\x01\x01\x02\x03\x05\x01\x01", // 𤅘
+ 0x24159: "\x04\x04\x01\x02\x05\x01\x02\x05\x01\x01\x03\x01\x02\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 𤅙
+ 0x2415a: "\x04\x04\x01\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x04\x05\x02\x05\x01\x01\x01", // 𤅚
+ 0x2415b: "\x04\x04\x01\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x01\x03\x01\x01\x05\x03\x04", // 𤅛
+ 0x2415c: "\x04\x04\x01\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04\x03\x05\x01\x02\x05\x01\x02\x01\x04", // 𤅜
+ 0x2415d: "\x04\x04\x01\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x05\x02\x02\x05\x02", // 𤅝
+ 0x2415e: "\x04\x04\x01\x01\x02\x02\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𤅞
+ 0x2415f: "\x04\x04\x01\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x01\x02\x01\x03\x05\x04\x02\x05\x01", // 𤅟
+ 0x24160: "\x04\x04\x01\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𤅠
+ 0x24161: "\x04\x04\x01\x03\x02\x05\x01\x01\x01\x01\x01\x01\x01\x01\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𤅡
+ 0x24162: "\x04\x04\x01\x01\x02\x01\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02", // 𤅢
+ 0x24163: "\x04\x04\x01\x04\x01\x03\x02\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01\x04\x05\x02\x05\x01\x01\x01", // 𤅣
+ 0x24164: "\x04\x04\x01\x01\x02\x01\x01\x01\x05\x04\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𤅤
+ 0x24165: "\x04\x04\x01\x03\x04\x04\x03\x02\x05\x02\x02\x01\x03\x04\x04\x04\x04\x04\x05\x02\x01\x05\x05\x04", // 𤅥
+ 0x24166: "\x04\x04\x01\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x02\x05\x01\x01\x02\x05\x01\x05\x02\x02", // 𤅦
+ 0x24167: "\x04\x04\x01\x01\x01\x01\x03\x04\x02\x05\x01\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𤅧
+ 0x24168: "\x04\x04\x01\x01\x02\x03\x04\x05\x02\x02\x01\x03\x03\x04\x04\x04\x04\x04\x05\x02\x01\x05\x05\x04", // 𤅨
+ 0x24169: "\x04\x04\x01\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𤅩
+ 0x2416a: "\x04\x04\x01\x03\x04\x04\x03\x02\x05\x02\x02\x01\x03\x04\x04\x04\x04\x04\x05\x02\x01\x05\x01\x02\x04", // 𤅪
+ 0x2416b: "\x04\x04\x01\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x03\x04\x01\x05\x04", // 𤅫
+ 0x2416c: "\x04\x04\x01\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𤅬
+ 0x2416d: "\x04\x04\x01\x04\x01\x02\x05\x01\x02\x05\x01\x05\x01\x05\x01\x02\x01\x03\x04\x03\x04\x03\x05\x03\x04", // 𤅭
+ 0x2416e: "\x04\x04\x01\x01\x02\x01\x04\x05\x01\x02\x05\x01\x04\x03\x01\x01\x01\x03\x05\x03\x04\x04\x05\x04\x04", // 𤅮
+ 0x2416f: "\x04\x04\x01\x01\x02\x03\x04\x05\x02\x02\x01\x03\x02\x05\x03\x04\x04\x04\x04\x04\x01\x01\x05\x05\x04", // 𤅯
+ 0x24170: "\x04\x04\x01\x03\x01\x04\x03\x01\x04\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02", // 𤅰
+ 0x24171: "\x04\x04\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x02\x05\x02\x02\x01", // 𤅱
+ 0x24172: "\x04\x04\x01\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𤅲
+ 0x24173: "\x04\x04\x01\x01\x05\x03\x04\x02\x05\x01\x01\x01\x05\x03\x04\x02\x05\x01\x01\x03\x05\x03\x05\x01\x01\x02", // 𤅳
+ 0x24174: "\x04\x04\x01\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04\x03\x01\x01\x05\x04\x03\x01\x02\x03\x04", // 𤅴
+ 0x24175: "\x04\x04\x01\x02\x05\x05\x04\x05\x02\x05\x01\x01\x01\x03\x01\x02\x01\x02\x05\x01\x01\x04\x05\x04", // 𤅵
+ 0x24176: "\x04\x04\x01\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x03\x01\x03\x04", // 𤅶
+ 0x24177: "\x04\x04\x01\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x03\x04\x01", // 𤅷
+ 0x24178: "\x04\x04\x01\x01\x02\x05\x01\x02\x05\x03\x01\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x02\x05\x02\x02\x01", // 𤅸
+ 0x24179: "\x04\x04\x01\x02\x05\x02\x02\x01\x01\x03\x04\x02\x05\x02\x02\x01\x01\x03\x04\x02\x05\x02\x02\x01\x01\x03\x04", // 𤅹
+ 0x2417a: "\x04\x04\x01\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 𤅺
+ 0x2417b: "\x04\x04\x01\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x05\x02\x02\x02\x05\x01\x05\x02\x01\x05", // 𤅻
+ 0x2417c: "\x04\x04\x01\x01\x02\x02\x01\x02\x05\x01\x04\x03\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𤅼
+ 0x2417d: "\x04\x04\x01\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𤅽
+ 0x2417e: "\x04\x04\x01\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01\x01\x02\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 𤅾
+ 0x2417f: "\x04\x04\x01\x01\x01\x01\x02\x02\x01\x01\x01\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01\x01\x03\x04\x04\x02\x05\x02\x02\x01", // 𤅿
+ 0x24180: "\x04\x04\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𤆀
+ 0x24181: "\x03\x02\x05\x01\x01\x02\x05\x03\x04\x03\x02\x05\x01\x01\x02\x05\x03\x04\x03\x02\x05\x01\x01\x02\x05\x03\x04\x03\x02\x05\x01\x01\x02\x05\x03\x04", // 𤆁
+ 0x24182: "\x04\x03\x03\x04\x01", // 𤆂
+ 0x24183: "\x05\x04\x04\x03\x03\x04", // 𤆃
+ 0x24184: "\x05\x03\x04\x03\x03\x04", // 𤆄
+ 0x24185: "\x03\x04\x04\x03\x03\x04", // 𤆅
+ 0x24186: "\x05\x04\x04\x03\x03\x04", // 𤆆
+ 0x24187: "\x04\x03\x03\x04\x03\x05", // 𤆇
+ 0x24188: "\x04\x03\x03\x04\x05\x03", // 𤆈
+ 0x24189: "\x01\x02\x04\x03\x03\x04", // 𤆉
+ 0x2418a: "\x04\x03\x03\x04\x02\x04", // 𤆊
+ 0x2418b: "\x03\x04\x04\x04\x04\x04", // 𤆋
+ 0x2418c: "\x04\x03\x03\x04\x05\x04", // 𤆌
+ 0x2418d: "\x01\x03\x04\x04\x03\x03\x04", // 𤆍
+ 0x2418e: "\x01\x02\x01\x04\x03\x03\x04", // 𤆎
+ 0x2418f: "\x04\x03\x03\x04\x01\x01\x05", // 𤆏
+ 0x24190: "\x03\x05\x04\x04\x04\x04\x04", // 𤆐
+ 0x24191: "\x04\x03\x03\x04\x03\x02\x02", // 𤆑
+ 0x24192: "\x03\x05\x02\x04\x04\x04\x04", // 𤆒
+ 0x24193: "\x04\x03\x03\x04\x04\x01\x03", // 𤆓
+ 0x24194: "\x05\x01\x05\x04\x04\x04\x04", // 𤆔
+ 0x24195: "\x05\x03\x04\x04\x04\x04\x04", // 𤆕
+ 0x24196: "\x01\x01\x02\x04\x04\x04\x04", // 𤆖
+ 0x24197: "\x02\x05\x01\x04\x04\x04\x04", // 𤆗
+ 0x24198: "\x04\x03\x03\x04\x03\x05\x04", // 𤆘
+ 0x24199: "\x02\x05\x05\x04\x03\x03\x04", // 𤆙
+ 0x2419a: "\x04\x03\x03\x04\x03\x01\x05", // 𤆚
+ 0x2419b: "\x02\x01\x05\x04\x04\x04\x04", // 𤆛
+ 0x2419c: "\x04\x03\x03\x04\x01\x01\x01", // 𤆜
+ 0x2419d: "\x04\x03\x03\x04\x02\x01\x05\x04", // 𤆝
+ 0x2419e: "\x04\x03\x03\x04\x03\x05\x03\x03", // 𤆞
+ 0x2419f: "\x04\x03\x03\x04\x03\x05\x03\x04", // 𤆟
+ 0x241a0: "\x04\x03\x03\x04\x01\x03\x05\x04", // 𤆠
+ 0x241a1: "\x04\x03\x03\x04\x03\x05\x05\x01", // 𤆡
+ 0x241a2: "\x04\x03\x03\x04\x03\x04\x03\x05", // 𤆢
+ 0x241a3: "\x04\x03\x03\x04\x03\x05\x05\x04", // 𤆣
+ 0x241a4: "\x04\x03\x03\x04\x04\x05\x03\x05", // 𤆤
+ 0x241a5: "\x04\x03\x03\x04\x03\x05\x01\x01", // 𤆥
+ 0x241a6: "\x04\x03\x03\x04\x01\x01\x02\x01", // 𤆦
+ 0x241a7: "\x04\x03\x03\x04\x01\x02\x01\x04", // 𤆧
+ 0x241a8: "\x05\x02\x05\x01\x04\x04\x04\x04", // 𤆨
+ 0x241a9: "\x04\x03\x03\x04\x02\x05\x03\x04", // 𤆩
+ 0x241aa: "\x02\x05\x01\x02\x04\x04\x04\x04", // 𤆪
+ 0x241ab: "\x03\x05\x03\x05\x04\x04\x04\x04", // 𤆫
+ 0x241ac: "\x03\x01\x01\x05\x04\x04\x04\x04", // 𤆬
+ 0x241ad: "\x04\x03\x03\x04\x03\x01\x03\x02", // 𤆭
+ 0x241ae: "\x04\x03\x03\x04\x01\x01\x03\x04", // 𤆮
+ 0x241af: "\x01\x02\x01\x03\x04\x03\x03\x04", // 𤆯
+ 0x241b0: "\x01\x02\x03\x04\x04\x03\x03\x04", // 𤆰
+ 0x241b1: "\x01\x02\x05\x02\x04\x03\x03\x04", // 𤆱
+ 0x241b2: "\x02\x05\x03\x04\x04\x03\x03\x04", // 𤆲
+ 0x241b3: "\x04\x03\x03\x04\x02\x05\x05\x04", // 𤆳
+ 0x241b4: "\x01\x05\x04\x04\x03\x03\x04", // 𤆴
+ 0x241b5: "\x04\x03\x03\x04\x05\x02\x01\x05", // 𤆵
+ 0x241b6: "\x04\x03\x03\x04\x03\x05\x05\x03", // 𤆶
+ 0x241b7: "\x04\x03\x03\x04\x03\x02\x03\x05", // 𤆷
+ 0x241b8: "\x04\x03\x03\x04\x04\x05\x04\x04", // 𤆸
+ 0x241b9: "\x04\x03\x03\x04\x01\x05\x02\x03", // 𤆹
+ 0x241ba: "\x04\x03\x03\x04\x05\x02\x01\x05", // 𤆺
+ 0x241bb: "\x04\x03\x03\x04\x01\x05\x05\x03", // 𤆻
+ 0x241bc: "\x04\x03\x03\x04\x04\x05\x01\x02", // 𤆼
+ 0x241bd: "\x04\x03\x03\x04\x05\x03\x02\x01\x02", // 𤆽
+ 0x241be: "\x04\x03\x03\x04\x05\x01\x03\x01\x01", // 𤆾
+ 0x241bf: "\x04\x03\x03\x04\x05\x01\x02\x05\x04", // 𤆿
+ 0x241c0: "\x02\x05\x05\x01\x01\x04\x03\x03\x04", // 𤇀
+ 0x241c1: "\x04\x03\x03\x04\x02\x05\x01\x01\x01", // 𤇁
+ 0x241c2: "\x04\x03\x03\x04\x05\x04\x01\x02\x01", // 𤇂
+ 0x241c3: "\x04\x03\x03\x04\x01\x03\x01\x05\x03", // 𤇃
+ 0x241c4: "\x04\x03\x03\x04\x04\x02\x05\x03\x04", // 𤇄
+ 0x241c5: "\x04\x03\x03\x04\x02\x05\x01\x01\x01", // 𤇅
+ 0x241c6: "\x04\x03\x03\x04\x02\x05\x05\x01\x01", // 𤇆
+ 0x241c7: "\x04\x03\x01\x01\x02\x04\x03\x03\x04", // 𤇇
+ 0x241c8: "\x01\x03\x02\x05\x01\x04\x03\x03\x04", // 𤇈
+ 0x241c9: "\x04\x03\x03\x04\x01\x03\x05\x05\x03", // 𤇉
+ 0x241ca: "\x04\x03\x03\x04\x01\x04\x03\x01\x02", // 𤇊
+ 0x241cb: "\x04\x03\x03\x04\x01\x01\x02\x03\x04", // 𤇋
+ 0x241cc: "\x04\x03\x03\x04\x01\x02\x02\x05\x01", // 𤇌
+ 0x241cd: "\x01\x02\x03\x05\x04\x04\x04\x04\x04", // 𤇍
+ 0x241ce: "\x04\x03\x03\x04\x05\x03\x05\x03\x04", // 𤇎
+ 0x241cf: "\x05\x02\x05\x03\x04\x04\x04\x04\x04", // 𤇏
+ 0x241d0: "\x02\x02\x05\x01\x05\x04\x04\x04\x04", // 𤇐
+ 0x241d1: "\x02\x04\x03\x04\x05\x04\x03\x03\x04", // 𤇑
+ 0x241d2: "\x04\x03\x03\x04\x03\x05\x03\x05\x01", // 𤇒
+ 0x241d3: "\x04\x01\x01\x02\x01\x04\x04\x04\x04", // 𤇓
+ 0x241d4: "\x04\x03\x03\x04\x03\x05\x03\x05\x04", // 𤇔
+ 0x241d5: "\x03\x01\x02\x03\x04\x04\x04\x04\x04", // 𤇕
+ 0x241d6: "\x04\x03\x03\x04\x05\x04\x02\x05\x01", // 𤇖
+ 0x241d7: "\x03\x05\x05\x01\x05\x04\x04\x04\x04", // 𤇗
+ 0x241d8: "\x03\x05\x04\x05\x05\x04\x04\x04\x04", // 𤇘
+ 0x241d9: "\x04\x03\x03\x04\x02\x05\x01\x01\x01", // 𤇙
+ 0x241da: "\x04\x03\x03\x04\x03\x03\x01\x02\x04", // 𤇚
+ 0x241db: "\x04\x03\x03\x04\x04\x05\x01\x03\x05", // 𤇛
+ 0x241dc: "\x04\x03\x03\x04\x05\x01\x05\x01\x05", // 𤇜
+ 0x241dd: "\x05\x01\x05\x03\x02\x04\x03\x03\x04", // 𤇝
+ 0x241de: "\x05\x03\x02\x05\x01\x04\x03\x03\x04", // 𤇞
+ 0x241df: "\x01\x03\x04\x01\x05\x04\x04\x04\x04", // 𤇟
+ 0x241e0: "\x03\x04\x03\x01\x02\x04\x04\x04\x04", // 𤇠
+ 0x241e1: "\x03\x05\x01\x05\x01\x04\x04\x04\x04", // 𤇡
+ 0x241e2: "\x04\x03\x03\x04\x03\x02\x05\x01\x01", // 𤇢
+ 0x241e3: "\x04\x03\x03\x04\x03\x01\x01\x02\x01", // 𤇣
+ 0x241e4: "\x04\x03\x03\x04\x01\x02\x01\x01\x05", // 𤇤
+ 0x241e5: "\x04\x03\x03\x04\x04\x01\x04\x03\x01", // 𤇥
+ 0x241e6: "\x04\x03\x03\x04\x01\x03\x05\x03\x04", // 𤇦
+ 0x241e7: "\x04\x03\x03\x04\x03\x02\x01\x02\x01", // 𤇧
+ 0x241e8: "\x04\x03\x03\x04\x01\x03\x02\x04\x01", // 𤇨
+ 0x241e9: "\x04\x03\x03\x04\x04\x05\x04\x03\x04", // 𤇩
+ 0x241ea: "\x04\x03\x03\x04\x03\x04\x03\x03\x03", // 𤇪
+ 0x241eb: "\x03\x01\x02\x03\x04\x04\x03\x03\x04", // 𤇫
+ 0x241ec: "\x02\x01\x02\x01\x03\x05\x04\x03\x03\x04", // 𤇬
+ 0x241ed: "\x04\x03\x03\x04\x01\x03\x05\x03\x04", // 𤇭
+ 0x241ee: "\x04\x03\x03\x04\x03\x04\x05\x04", // 𤇮
+ 0x241ef: "\x04\x01\x04\x03\x03\x04\x03\x05\x03\x04", // 𤇯
+ 0x241f0: "\x03\x02\x01\x05\x03\x04\x04\x03\x03\x04", // 𤇰
+ 0x241f1: "\x04\x03\x03\x04\x05\x05\x05\x02\x05\x02", // 𤇱
+ 0x241f2: "\x03\x02\x01\x01\x02\x01\x04\x03\x03\x04", // 𤇲
+ 0x241f3: "\x04\x03\x03\x04\x01\x03\x01\x05\x03\x04", // 𤇳
+ 0x241f4: "\x01\x02\x02\x05\x01\x02\x05\x04\x04\x04\x04", // 𤇴
+ 0x241f5: "\x04\x04\x05\x03\x05\x04\x04\x03\x03\x04", // 𤇵
+ 0x241f6: "\x04\x03\x03\x04\x05\x02\x05\x03\x04\x01", // 𤇶
+ 0x241f7: "\x04\x05\x02\x03\x04\x04\x03\x03\x04", // 𤇷
+ 0x241f8: "\x01\x02\x05\x01\x02\x05\x04\x04\x04\x04", // 𤇸
+ 0x241f9: "\x04\x03\x03\x04\x01\x05\x03\x05\x01\x02", // 𤇹
+ 0x241fa: "\x04\x03\x03\x04\x03\x05\x04\x01\x05\x02", // 𤇺
+ 0x241fb: "\x04\x03\x03\x04\x02\x04\x03\x05\x01\x01", // 𤇻
+ 0x241fc: "\x04\x03\x03\x04\x04\x04\x05\x05\x03\x01", // 𤇼
+ 0x241fd: "\x04\x03\x03\x04\x01\x01\x03\x05\x03\x04", // 𤇽
+ 0x241fe: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05", // 𤇾
+ 0x241ff: "\x04\x03\x03\x04\x04\x03\x01\x02\x03\x04", // 𤇿
+ 0x24200: "\x04\x01\x01\x02\x03\x04\x04\x04\x04\x04", // 𤈀
+ 0x24201: "\x04\x03\x03\x04\x04\x04\x05\x01\x02\x04", // 𤈁
+ 0x24202: "\x01\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𤈂
+ 0x24203: "\x04\x03\x03\x04\x01\x02\x05\x02\x01\x04", // 𤈃
+ 0x24204: "\x04\x03\x03\x04\x01\x02\x01\x02\x05\x01", // 𤈄
+ 0x24205: "\x01\x01\x02\x01\x04\x01\x04\x04\x04\x04", // 𤈅
+ 0x24206: "\x04\x03\x03\x04\x01\x02\x05\x01\x03\x04", // 𤈆
+ 0x24207: "\x04\x03\x03\x04\x01\x02\x05\x03\x05\x01", // 𤈇
+ 0x24208: "\x01\x02\x02\x01\x03\x04\x04\x03\x03\x04", // 𤈈
+ 0x24209: "\x01\x02\x02\x01\x03\x04\x04\x04\x04\x04", // 𤈉
+ 0x2420a: "\x04\x03\x03\x04\x01\x03\x02\x05\x02\x01", // 𤈊
+ 0x2420b: "\x04\x03\x03\x04\x02\x05\x01\x01\x03\x05", // 𤈋
+ 0x2420c: "\x02\x05\x01\x01\x05\x03\x04\x04\x04\x04", // 𤈌
+ 0x2420d: "\x04\x03\x03\x04\x03\x02\x05\x02\x05\x01", // 𤈍
+ 0x2420e: "\x04\x03\x03\x04\x03\x05\x02\x05\x01\x01", // 𤈎
+ 0x2420f: "\x04\x03\x03\x04\x03\x01\x02\x02\x05\x01", // 𤈏
+ 0x24210: "\x04\x03\x03\x04\x03\x01\x01\x02\x03\x04", // 𤈐
+ 0x24211: "\x04\x03\x03\x04\x02\x05\x01\x01\x01\x05", // 𤈑
+ 0x24212: "\x04\x03\x03\x04\x03\x01\x01\x02\x05\x02", // 𤈒
+ 0x24213: "\x04\x03\x03\x04\x05\x01\x05\x02\x01\x01", // 𤈓
+ 0x24214: "\x01\x02\x01\x05\x01\x05\x04\x04\x04\x04", // 𤈔
+ 0x24215: "\x03\x05\x04\x03\x05\x04\x04\x04\x04\x04", // 𤈕
+ 0x24216: "\x03\x05\x05\x02\x01\x05\x04\x04\x04\x04", // 𤈖
+ 0x24217: "\x05\x01\x01\x05\x01\x01\x04\x04\x04\x04", // 𤈗
+ 0x24218: "\x04\x03\x03\x04\x01\x03\x05\x04\x02\x02", // 𤈘
+ 0x24219: "\x04\x03\x03\x04\x01\x05\x01\x05\x03\x04", // 𤈙
+ 0x2421a: "\x03\x04\x04\x03\x04\x05\x04\x03\x03\x04", // 𤈚
+ 0x2421b: "\x04\x03\x03\x04\x02\x04\x03\x01\x03\x05", // 𤈛
+ 0x2421c: "\x04\x03\x03\x04\x01\x05\x04\x01\x02\x01", // 𤈜
+ 0x2421d: "\x04\x03\x03\x04\x01\x02\x02\x03\x04", // 𤈝
+ 0x2421e: "\x04\x03\x03\x04\x01\x01\x01\x02\x03\x04", // 𤈞
+ 0x2421f: "\x05\x03\x01\x02\x05\x01\x04\x03\x03\x04", // 𤈟
+ 0x24220: "\x04\x03\x03\x04\x05\x01\x01\x01\x01\x02", // 𤈠
+ 0x24221: "\x04\x03\x03\x04\x02\x05\x02\x01\x03\x05", // 𤈡
+ 0x24222: "\x03\x02\x01\x02\x03\x04\x04\x03\x03\x04", // 𤈢
+ 0x24223: "\x03\x01\x01\x02\x05\x02\x04\x03\x03\x04", // 𤈣
+ 0x24224: "\x04\x03\x03\x04\x03\x05\x03\x04\x05\x02", // 𤈤
+ 0x24225: "\x04\x03\x03\x04\x03\x02\x05\x01\x01\x01\x05", // 𤈥
+ 0x24226: "\x04\x03\x03\x04\x05\x01\x03\x03\x01\x01\x05", // 𤈦
+ 0x24227: "\x04\x03\x03\x04\x03\x03\x02\x03\x05\x05\x04", // 𤈧
+ 0x24228: "\x01\x02\x02\x01\x01\x01\x05\x04\x03\x03\x04", // 𤈨
+ 0x24229: "\x04\x03\x01\x01\x02\x01\x03\x04\x03\x03\x04", // 𤈩
+ 0x2422a: "\x04\x03\x03\x04\x01\x01\x03\x02\x05\x03\x04", // 𤈪
+ 0x2422b: "\x05\x01\x03\x01\x01\x04\x03\x03\x04\x05\x04", // 𤈫
+ 0x2422c: "\x04\x03\x03\x04\x02\x05\x02\x02\x01\x05\x04", // 𤈬
+ 0x2422d: "\x02\x01\x04\x05\x03\x05\x04\x04\x03\x03\x04", // 𤈭
+ 0x2422e: "\x01\x01\x02\x01\x04\x03\x03\x04\x05\x03\x04", // 𤈮
+ 0x2422f: "\x04\x03\x03\x04\x03\x03\x04\x03\x04\x01\x05", // 𤈯
+ 0x24230: "\x04\x03\x03\x04\x03\x02\x03\x04\x03\x04\x01\x05", // 𤈰
+ 0x24231: "\x02\x01\x02\x05\x01\x01\x01\x04\x03\x03\x04", // 𤈱
+ 0x24232: "\x01\x03\x01\x02\x02\x01\x01\x04\x03\x03\x04", // 𤈲
+ 0x24233: "\x02\x05\x01\x01\x01\x05\x04\x04\x03\x03\x04", // 𤈳
+ 0x24234: "\x02\x01\x02\x05\x05\x01\x01\x04\x03\x03\x04", // 𤈴
+ 0x24235: "\x04\x03\x03\x04\x02\x05\x01\x02\x05\x01\x01", // 𤈵
+ 0x24236: "\x04\x03\x03\x04\x02\x05\x01\x02\x05\x03\x04", // 𤈶
+ 0x24237: "\x04\x03\x03\x04\x03\x04\x01\x04\x04\x03\x01", // 𤈷
+ 0x24238: "\x04\x03\x03\x04\x01\x02\x02\x05\x01\x05\x03", // 𤈸
+ 0x24239: "\x02\x05\x02\x04\x03\x03\x04\x04\x03\x03\x04", // 𤈹
+ 0x2423a: "\x04\x03\x03\x04\x04\x03\x03\x04\x03\x05\x04", // 𤈺
+ 0x2423b: "\x04\x03\x03\x04\x04\x04\x05\x01\x03\x05\x04", // 𤈻
+ 0x2423c: "\x04\x03\x03\x04\x04\x01\x04\x03\x01\x01\x02", // 𤈼
+ 0x2423d: "\x04\x03\x03\x04\x04\x01\x02\x05\x01\x05\x02", // 𤈽
+ 0x2423e: "\x04\x04\x01\x03\x05\x03\x04\x04\x03\x03\x04", // 𤈾
+ 0x2423f: "\x01\x02\x04\x01\x03\x04\x04\x04\x04\x04\x04", // 𤈿
+ 0x24240: "\x01\x02\x03\x04\x01\x01\x02\x04\x03\x03\x04", // 𤉀
+ 0x24241: "\x04\x03\x03\x01\x01\x02\x05\x01\x02\x02\x01", // 𤉁
+ 0x24242: "\x05\x01\x03\x03\x01\x01\x05\x04\x04\x04\x04", // 𤉂
+ 0x24243: "\x04\x03\x03\x04\x05\x03\x04\x04\x05\x04\x04", // 𤉃
+ 0x24244: "\x01\x03\x05\x03\x03\x03\x04\x04\x04\x04\x04", // 𤉄
+ 0x24245: "\x05\x01\x01\x03\x02\x05\x01\x04\x03\x03\x04", // 𤉅
+ 0x24246: "\x04\x03\x03\x04\x02\x05\x01\x01\x02\x05\x02", // 𤉆
+ 0x24247: "\x04\x03\x03\x04\x02\x05\x01\x05\x01\x03\x04", // 𤉇
+ 0x24248: "\x04\x03\x03\x04\x02\x05\x01\x02\x05\x01\x05", // 𤉈
+ 0x24249: "\x03\x01\x02\x03\x04\x02\x02\x04\x04\x04\x04", // 𤉉
+ 0x2424a: "\x04\x03\x03\x04\x02\x05\x01\x01\x01\x02\x01", // 𤉊
+ 0x2424b: "\x05\x02\x01\x01\x05\x03\x04\x04\x04\x04\x04", // 𤉋
+ 0x2424c: "\x03\x01\x02\x03\x04\x02\x02\x04\x03\x03\x04", // 𤉌
+ 0x2424d: "\x04\x03\x03\x04\x04\x04\x05\x03\x01\x01\x02", // 𤉍
+ 0x2424e: "\x05\x03\x02\x05\x01\x05\x03\x04\x03\x03\x04", // 𤉎
+ 0x2424f: "\x02\x05\x01\x01\x01\x05\x03\x04\x04\x04\x04", // 𤉏
+ 0x24250: "\x05\x02\x02\x05\x02\x01\x05\x04\x04\x04\x04", // 𤉐
+ 0x24251: "\x04\x03\x03\x04\x01\x02\x05\x05\x01\x05\x01", // 𤉑
+ 0x24252: "\x04\x03\x03\x04\x03\x04\x04\x03\x05\x03\x03", // 𤉒
+ 0x24253: "\x01\x03\x04\x03\x03\x04\x02\x05\x01\x02\x01", // 𤉓
+ 0x24254: "\x04\x03\x03\x04\x03\x02\x03\x01\x02\x01\x01", // 𤉔
+ 0x24255: "\x02\x05\x01\x02\x01\x01\x03\x04\x03\x03\x04", // 𤉕
+ 0x24256: "\x04\x03\x03\x04\x01\x02\x05\x01\x01\x01\x02", // 𤉖
+ 0x24257: "\x04\x03\x03\x04\x01\x02\x01\x03\x05\x02\x01", // 𤉗
+ 0x24258: "\x04\x03\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 𤉘
+ 0x24259: "\x04\x03\x03\x04\x05\x01\x01\x03\x02\x05\x01", // 𤉙
+ 0x2425a: "\x04\x03\x03\x04\x02\x05\x01\x03\x05\x03\x04", // 𤉚
+ 0x2425b: "\x04\x03\x03\x04\x03\x04\x03\x04\x01\x02\x01", // 𤉛
+ 0x2425c: "\x04\x03\x03\x04\x04\x01\x03\x01\x02\x03\x04", // 𤉜
+ 0x2425d: "\x04\x03\x03\x04\x05\x01\x05\x03\x02\x05\x01", // 𤉝
+ 0x2425e: "\x05\x02\x03\x04\x03\x03\x04\x04\x03\x03\x04", // 𤉞
+ 0x2425f: "\x01\x01\x01\x02\x05\x03\x04\x04\x03\x03\x04", // 𤉟
+ 0x24260: "\x04\x04\x01\x04\x05\x03\x05\x04\x04\x04\x04", // 𤉠
+ 0x24261: "\x02\x05\x02\x05\x01\x03\x05\x04\x04\x04\x04", // 𤉡
+ 0x24262: "\x03\x05\x02\x05\x02\x01\x03\x05\x04\x04\x04\x04", // 𤉢
+ 0x24263: "\x04\x03\x03\x04\x05\x05\x05\x02\x05\x01\x02\x01", // 𤉣
+ 0x24264: "\x04\x03\x03\x04\x04\x03\x02\x05\x02\x03\x04", // 𤉤
+ 0x24265: "\x03\x05\x04\x03\x05\x04\x02\x02\x04\x04\x04\x04", // 𤉥
+ 0x24266: "\x04\x03\x03\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 𤉦
+ 0x24267: "\x03\x04\x03\x04\x04\x03\x03\x04\x03\x01\x03\x04", // 𤉧
+ 0x24268: "\x01\x02\x05\x01\x01\x04\x03\x03\x04\x05\x03\x04", // 𤉨
+ 0x24269: "\x05\x05\x05\x03\x05\x04\x02\x02\x04\x04\x04\x04", // 𤉩
+ 0x2426a: "\x04\x03\x03\x04\x04\x01\x05\x03\x03\x04\x04\x04", // 𤉪
+ 0x2426b: "\x04\x03\x03\x04\x01\x01\x01\x03\x04\x05\x03\x04", // 𤉫
+ 0x2426c: "\x04\x03\x03\x04\x04\x01\x05\x04\x01\x02\x03\x04", // 𤉬
+ 0x2426d: "\x02\x01\x02\x01\x02\x05\x01\x01\x04\x03\x03\x04", // 𤉭
+ 0x2426e: "\x04\x03\x03\x04\x04\x01\x03\x02\x04\x02\x05\x01", // 𤉮
+ 0x2426f: "\x03\x05\x02\x05\x03\x04\x03\x04\x04\x03\x03\x04", // 𤉯
+ 0x24270: "\x04\x05\x01\x03\x03\x01\x03\x04\x04\x03\x03\x04", // 𤉰
+ 0x24271: "\x03\x02\x05\x02\x02\x01\x01\x05\x04\x04\x04\x04", // 𤉱
+ 0x24272: "\x01\x02\x03\x04\x02\x05\x01\x01\x04\x03\x03\x04", // 𤉲
+ 0x24273: "\x04\x03\x03\x04\x04\x04\x05\x01\x01\x02\x03\x04", // 𤉳
+ 0x24274: "\x04\x03\x03\x04\x03\x05\x04\x01\x02\x05\x01\x01", // 𤉴
+ 0x24275: "\x02\x05\x01\x03\x05\x02\x05\x01\x04\x03\x03\x04", // 𤉵
+ 0x24276: "\x04\x03\x03\x04\x03\x04\x01\x03\x02\x05\x01\x01", // 𤉶
+ 0x24277: "\x03\x05\x04\x04\x01\x03\x04\x04\x04\x03\x03\x04", // 𤉷
+ 0x24278: "\x04\x03\x03\x04\x05\x01\x03\x01\x02\x02\x05\x01", // 𤉸
+ 0x24279: "\x01\x02\x05\x01\x01\x05\x03\x04\x04\x03\x03\x04", // 𤉹
+ 0x2427a: "\x05\x04\x01\x03\x04\x03\x03\x04\x03\x01\x03\x04", // 𤉺
+ 0x2427b: "\x04\x03\x03\x04\x01\x02\x02\x01\x01\x03\x01\x02", // 𤉻
+ 0x2427c: "\x04\x03\x03\x04\x04\x03\x01\x01\x03\x04\x05\x05", // 𤉼
+ 0x2427d: "\x04\x01\x03\x02\x01\x02\x05\x01\x04\x04\x04\x04", // 𤉽
+ 0x2427e: "\x04\x03\x03\x04\x04\x05\x03\x05\x01\x02\x03\x04", // 𤉾
+ 0x2427f: "\x04\x01\x04\x03\x01\x02\x05\x01\x04\x04\x04\x04", // 𤉿
+ 0x24280: "\x04\x03\x03\x04\x04\x04\x03\x04\x05\x05\x02\x01", // 𤊀
+ 0x24281: "\x04\x04\x01\x02\x01\x02\x05\x01\x04\x04\x04\x04", // 𤊁
+ 0x24282: "\x04\x03\x03\x04\x05\x04\x05\x02\x04\x05\x04", // 𤊂
+ 0x24283: "\x04\x03\x03\x04\x04\x04\x05\x02\x05\x01\x01\x01", // 𤊃
+ 0x24284: "\x04\x03\x03\x04\x01\x02\x02\x01\x01\x01\x03\x04", // 𤊄
+ 0x24285: "\x05\x02\x02\x05\x01\x05\x04\x01\x04\x04\x04\x04", // 𤊅
+ 0x24286: "\x01\x02\x05\x02\x02\x01\x04\x01\x04\x03\x03\x04", // 𤊆
+ 0x24287: "\x01\x01\x02\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 𤊇
+ 0x24288: "\x04\x03\x03\x04\x01\x02\x01\x02\x03\x05\x05\x03", // 𤊈
+ 0x24289: "\x04\x03\x03\x04\x02\x05\x01\x01\x03\x05\x01\x01", // 𤊉
+ 0x2428a: "\x04\x03\x03\x04\x01\x02\x01\x02\x04\x01\x05\x03", // 𤊊
+ 0x2428b: "\x04\x03\x03\x04\x02\x05\x01\x01\x04\x01\x03\x04", // 𤊋
+ 0x2428c: "\x02\x05\x01\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𤊌
+ 0x2428d: "\x04\x03\x03\x04\x01\x02\x01\x02\x03\x04\x03\x02", // 𤊍
+ 0x2428e: "\x04\x03\x03\x04\x02\x05\x01\x02\x02\x05\x01\x01", // 𤊎
+ 0x2428f: "\x03\x05\x01\x01\x03\x05\x01\x01\x04\x03\x03\x04", // 𤊏
+ 0x24290: "\x04\x03\x03\x04\x03\x04\x04\x03\x04\x05\x05\x04", // 𤊐
+ 0x24291: "\x03\x03\x01\x02\x03\x05\x03\x04\x04\x04\x04\x04", // 𤊑
+ 0x24292: "\x04\x03\x03\x04\x05\x05\x01\x02\x04\x01\x03\x04", // 𤊒
+ 0x24293: "\x04\x03\x03\x04\x03\x02\x01\x05\x01\x01\x03\x05", // 𤊓
+ 0x24294: "\x04\x03\x03\x04\x03\x01\x05\x01\x01\x02\x03\x04", // 𤊔
+ 0x24295: "\x04\x03\x03\x04\x03\x04\x04\x03\x01\x02\x03\x04", // 𤊕
+ 0x24296: "\x04\x03\x03\x04\x01\x03\x04\x01\x01\x01\x03\x04", // 𤊖
+ 0x24297: "\x01\x02\x01\x05\x05\x01\x02\x01\x04\x03\x03\x04", // 𤊗
+ 0x24298: "\x03\x01\x02\x01\x03\x05\x03\x03\x04\x03\x03\x04", // 𤊘
+ 0x24299: "\x03\x02\x04\x01\x01\x01\x02\x01\x04\x03\x03\x04", // 𤊙
+ 0x2429a: "\x04\x03\x03\x04\x03\x04\x04\x03\x03\x05\x01\x01", // 𤊚
+ 0x2429b: "\x04\x03\x03\x04\x05\x02\x01\x01\x05\x02\x01\x01", // 𤊛
+ 0x2429c: "\x05\x04\x02\x05\x01\x01\x03\x04\x04\x03\x03\x04", // 𤊜
+ 0x2429d: "\x03\x05\x02\x05\x03\x02\x05\x03\x04\x04\x04\x04", // 𤊝
+ 0x2429e: "\x04\x03\x03\x04\x01\x02\x01\x01\x01\x05\x03\x04", // 𤊞
+ 0x2429f: "\x04\x03\x03\x04\x04\x04\x05\x01\x02\x01\x03\x04", // 𤊟
+ 0x242a0: "\x04\x03\x03\x04\x01\x03\x02\x05\x01\x01\x03\x02", // 𤊠
+ 0x242a1: "\x04\x03\x03\x04\x01\x01\x01\x03\x04\x01\x01\x02", // 𤊡
+ 0x242a2: "\x04\x03\x03\x04\x02\x05\x01\x01\x01\x01\x02\x04", // 𤊢
+ 0x242a3: "\x03\x01\x01\x02\x03\x04\x01\x03\x04\x03\x03\x04", // 𤊣
+ 0x242a4: "\x04\x03\x03\x04\x02\x05\x02\x01\x03\x02\x05\x01", // 𤊤
+ 0x242a5: "\x04\x03\x03\x04\x01\x02\x01\x03\x05\x03\x05\x04", // 𤊥
+ 0x242a6: "\x04\x03\x03\x04\x04\x01\x05\x03\x03\x01\x03\x04", // 𤊦
+ 0x242a7: "\x04\x03\x03\x04\x01\x02\x02\x05\x01\x01\x01\x01", // 𤊧
+ 0x242a8: "\x04\x03\x03\x04\x01\x02\x05\x01\x01\x05\x03\x04", // 𤊨
+ 0x242a9: "\x04\x03\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04", // 𤊩
+ 0x242aa: "\x04\x03\x03\x04\x02\x02\x01\x01\x02\x01\x03\x04", // 𤊪
+ 0x242ab: "\x04\x03\x03\x04\x01\x02\x01\x05\x01\x02\x05\x04", // 𤊫
+ 0x242ac: "\x04\x03\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01", // 𤊬
+ 0x242ad: "\x04\x03\x03\x04\x04\x01\x03\x01\x01\x02\x03\x04", // 𤊭
+ 0x242ae: "\x05\x04\x01\x03\x04\x03\x03\x04\x03\x01\x03\x04", // 𤊮
+ 0x242af: "\x03\x05\x04\x01\x01\x05\x02\x05\x04\x04\x04\x04", // 𤊯
+ 0x242b0: "\x04\x03\x03\x04\x04\x01\x02\x02\x03\x04\x05\x04", // 𤊰
+ 0x242b1: "\x03\x05\x02\x05\x03\x04\x03\x05\x04\x04\x04\x04", // 𤊱
+ 0x242b2: "\x04\x03\x03\x04\x05\x05\x05\x03\x02\x05\x03\x04\x01", // 𤊲
+ 0x242b3: "\x04\x03\x03\x04\x05\x01\x02\x01\x01\x03\x05\x05\x04", // 𤊳
+ 0x242b4: "\x04\x03\x03\x04\x03\x01\x01\x02\x01\x03\x02\x05\x01", // 𤊴
+ 0x242b5: "\x04\x03\x03\x04\x03\x02\x05\x01\x01\x01\x05\x05\x02", // 𤊵
+ 0x242b6: "\x04\x03\x03\x04\x01\x02\x05\x01\x02\x03\x04\x02\x02", // 𤊶
+ 0x242b7: "\x04\x03\x03\x04\x02\x01\x01\x01\x05\x03\x05\x04\x01", // 𤊷
+ 0x242b8: "\x01\x03\x01\x02\x05\x01\x05\x03\x04\x04\x03\x03\x04", // 𤊸
+ 0x242b9: "\x04\x03\x03\x04\x01\x02\x04\x05\x05\x02\x01\x05\x03", // 𤊹
+ 0x242ba: "\x04\x03\x03\x04\x05\x05\x01\x03\x05\x03\x03\x03\x04", // 𤊺
+ 0x242bb: "\x04\x03\x03\x04\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 𤊻
+ 0x242bc: "\x04\x03\x03\x04\x04\x03\x03\x04\x01\x02\x02\x01\x01", // 𤊼
+ 0x242bd: "\x01\x03\x04\x04\x03\x02\x05\x01\x01\x04\x03\x03\x04", // 𤊽
+ 0x242be: "\x02\x01\x02\x01\x02\x05\x01\x01\x01\x04\x03\x03\x04", // 𤊾
+ 0x242bf: "\x04\x03\x03\x04\x01\x01\x02\x03\x02\x01\x05\x01\x01", // 𤊿
+ 0x242c0: "\x04\x03\x03\x04\x02\x05\x01\x01\x01\x01\x03\x04\x04", // 𤋀
+ 0x242c1: "\x02\x05\x01\x01\x01\x03\x05\x03\x03\x04\x04\x04\x04", // 𤋁
+ 0x242c2: "\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x03\x03\x04", // 𤋂
+ 0x242c3: "\x04\x03\x01\x02\x05\x03\x05\x01\x01\x04\x04\x04\x04", // 𤋃
+ 0x242c4: "\x05\x04\x05\x02\x03\x03\x01\x03\x04\x04\x03\x03\x04", // 𤋄
+ 0x242c5: "\x03\x02\x05\x05\x05\x01\x05\x01\x05\x04\x03\x03\x04", // 𤋅
+ 0x242c6: "\x01\x03\x04\x03\x03\x04\x04\x03\x03\x04\x05\x03\x04", // 𤋆
+ 0x242c7: "\x02\x05\x01\x01\x01\x03\x05\x01\x05\x04\x04\x04\x04", // 𤋇
+ 0x242c8: "\x02\x01\x01\x02\x04\x03\x01\x03\x04\x04\x04\x04\x04", // 𤋈
+ 0x242c9: "\x04\x03\x03\x04\x02\x05\x01\x01\x04\x01\x05\x05\x04", // 𤋉
+ 0x242ca: "\x04\x03\x03\x04\x05\x01\x03\x04\x03\x01\x01\x03\x02", // 𤋊
+ 0x242cb: "\x04\x03\x03\x04\x04\x01\x03\x04\x03\x04\x01\x03\x04", // 𤋋
+ 0x242cc: "\x04\x03\x01\x03\x05\x03\x03\x03\x04\x04\x04\x04\x04", // 𤋌
+ 0x242cd: "\x04\x03\x03\x04\x04\x03\x03\x04\x02\x05\x01\x03\x04", // 𤋍
+ 0x242ce: "\x04\x03\x01\x03\x05\x01\x01\x02\x02\x04\x03\x03\x04", // 𤋎
+ 0x242cf: "\x04\x03\x03\x04\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 𤋏
+ 0x242d0: "\x01\x02\x03\x04\x05\x03\x02\x05\x01\x04\x04\x04\x04", // 𤋐
+ 0x242d1: "\x04\x03\x03\x04\x01\x02\x01\x01\x02\x01\x01\x02\x01", // 𤋑
+ 0x242d2: "\x01\x01\x01\x02\x02\x01\x02\x05\x01\x04\x04\x04\x04", // 𤋒
+ 0x242d3: "\x04\x03\x03\x04\x01\x03\x04\x02\x05\x01\x01\x05\x04", // 𤋓
+ 0x242d4: "\x01\x02\x01\x02\x05\x01\x01\x02\x02\x04\x03\x03\x04", // 𤋔
+ 0x242d5: "\x01\x02\x02\x01\x01\x01\x01\x03\x04\x04\x04\x04\x04", // 𤋕
+ 0x242d6: "\x04\x03\x03\x04\x01\x05\x04\x01\x02\x01\x03\x05\x04", // 𤋖
+ 0x242d7: "\x02\x05\x01\x01\x03\x05\x02\x05\x01\x04\x03\x03\x04", // 𤋗
+ 0x242d8: "\x04\x03\x03\x04\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 𤋘
+ 0x242d9: "\x04\x03\x03\x04\x01\x02\x01\x02\x02\x05\x01\x02\x01", // 𤋙
+ 0x242da: "\x02\x05\x01\x05\x01\x03\x04\x04\x05\x04\x03\x03\x04", // 𤋚
+ 0x242db: "\x04\x03\x03\x04\x02\x01\x05\x03\x01\x03\x02\x05\x01", // 𤋛
+ 0x242dc: "\x02\x05\x01\x01\x05\x03\x02\x05\x01\x04\x03\x03\x04", // 𤋜
+ 0x242dd: "\x03\x05\x01\x01\x01\x05\x01\x05\x04\x03\x03\x04", // 𤋝
+ 0x242de: "\x03\x02\x05\x01\x01\x03\x01\x01\x05\x04\x04\x04\x04", // 𤋞
+ 0x242df: "\x04\x03\x03\x04\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 𤋟
+ 0x242e0: "\x04\x03\x03\x04\x03\x04\x04\x03\x02\x05\x02\x02\x01", // 𤋠
+ 0x242e1: "\x04\x03\x03\x04\x03\x02\x05\x01\x01\x01\x01\x03\x04", // 𤋡
+ 0x242e2: "\x04\x03\x03\x04\x05\x05\x04\x04\x04\x04\x03\x05\x04", // 𤋢
+ 0x242e3: "\x03\x05\x05\x01\x01\x01\x03\x04\x04\x04\x04\x04\x04", // 𤋣
+ 0x242e4: "\x03\x05\x02\x05\x01\x03\x01\x01\x05\x04\x04\x04\x04", // 𤋤
+ 0x242e5: "\x03\x05\x02\x05\x01\x03\x01\x03\x04\x04\x04\x04\x04", // 𤋥
+ 0x242e6: "\x03\x01\x02\x03\x04\x04\x03\x03\x04\x04\x04\x04\x04", // 𤋦
+ 0x242e7: "\x03\x05\x01\x01\x02\x01\x02\x05\x01\x04\x04\x04\x04", // 𤋧
+ 0x242e8: "\x04\x03\x03\x04\x01\x03\x01\x02\x01\x05\x02\x01\x01", // 𤋨
+ 0x242e9: "\x04\x03\x03\x04\x02\x04\x03\x04\x05\x04\x01\x03\x04", // 𤋩
+ 0x242ea: "\x04\x03\x03\x04\x02\x05\x01\x01\x05\x02\x02\x05\x02", // 𤋪
+ 0x242eb: "\x04\x03\x03\x04\x02\x05\x02\x02\x05\x02\x02\x05\x02", // 𤋫
+ 0x242ec: "\x04\x03\x03\x04\x02\x05\x02\x02\x05\x02\x03\x05\x04", // 𤋬
+ 0x242ed: "\x04\x03\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x01", // 𤋭
+ 0x242ee: "\x01\x02\x05\x01\x02\x05\x05\x01\x05\x04\x04\x04\x04", // 𤋮
+ 0x242ef: "\x01\x03\x04\x04\x03\x02\x05\x01\x01\x04\x04\x04\x04", // 𤋯
+ 0x242f0: "\x02\x05\x01\x01\x02\x01\x01\x05\x03\x04\x04\x04\x04", // 𤋰
+ 0x242f1: "\x03\x01\x02\x05\x01\x01\x02\x01\x01\x04\x04\x04\x04", // 𤋱
+ 0x242f2: "\x04\x03\x03\x04\x01\x02\x02\x01\x02\x05\x03\x04", // 𤋲
+ 0x242f3: "\x03\x05\x02\x05\x03\x04\x03\x04\x01\x04\x03\x03\x04", // 𤋳
+ 0x242f4: "\x05\x05\x05\x01\x03\x05\x04\x02\x02\x04\x03\x03\x04", // 𤋴
+ 0x242f5: "\x04\x03\x03\x04\x03\x03\x02\x01\x02\x01\x01\x02\x04", // 𤋵
+ 0x242f6: "\x04\x03\x03\x04\x01\x02\x02\x03\x04\x04\x05\x04", // 𤋶
+ 0x242f7: "\x04\x03\x03\x04\x01\x01\x01\x03\x04\x01\x01\x03\x04", // 𤋷
+ 0x242f8: "\x04\x03\x03\x04\x01\x01\x01\x02\x05\x03\x01\x03\x04", // 𤋸
+ 0x242f9: "\x04\x03\x03\x04\x01\x02\x03\x04\x01\x02\x02\x05\x01", // 𤋹
+ 0x242fa: "\x04\x03\x03\x04\x02\x05\x02\x05\x01\x01\x01\x03\x04", // 𤋺
+ 0x242fb: "\x04\x03\x03\x04\x04\x04\x01\x03\x03\x03\x05\x03\x04", // 𤋻
+ 0x242fc: "\x04\x03\x03\x04\x01\x02\x02\x01\x02\x02\x05\x01", // 𤋼
+ 0x242fd: "\x04\x03\x03\x04\x02\x05\x01\x02\x01\x03\x04\x03\x02", // 𤋽
+ 0x242fe: "\x04\x03\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 𤋾
+ 0x242ff: "\x04\x03\x03\x04\x01\x02\x02\x05\x02\x02\x05\x02", // 𤋿
+ 0x24300: "\x04\x03\x03\x04\x03\x05\x05\x01\x01\x04\x05\x04\x04", // 𤌀
+ 0x24301: "\x04\x03\x03\x04\x03\x04\x04\x03\x02\x05\x02\x01\x01", // 𤌁
+ 0x24302: "\x04\x03\x03\x04\x05\x01\x01\x01\x02\x05\x03\x05\x03", // 𤌂
+ 0x24303: "\x04\x03\x03\x04\x01\x03\x01\x02\x01\x03\x05\x04\x01", // 𤌃
+ 0x24304: "\x04\x03\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01", // 𤌄
+ 0x24305: "\x04\x03\x03\x04\x05\x02\x03\x05\x04\x01\x05\x02", // 𤌅
+ 0x24306: "\x04\x03\x03\x04\x05\x01\x03\x01\x05\x04\x01\x02\x01", // 𤌆
+ 0x24307: "\x01\x02\x02\x05\x01\x02\x05\x05\x01\x05\x04\x03\x03\x04", // 𤌇
+ 0x24308: "\x03\x02\x03\x05\x04\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𤌈
+ 0x24309: "\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03\x04\x04\x04\x04", // 𤌉
+ 0x2430a: "\x04\x04\x05\x04\x01\x04\x03\x01\x01\x02\x04\x04\x04\x04", // 𤌊
+ 0x2430b: "\x04\x03\x03\x04\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𤌋
+ 0x2430c: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x01\x01\x03\x02", // 𤌌
+ 0x2430d: "\x04\x03\x03\x04\x04\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 𤌍
+ 0x2430e: "\x01\x01\x05\x01\x01\x02\x02\x05\x01\x01\x04\x03\x03\x04", // 𤌎
+ 0x2430f: "\x04\x03\x03\x04\x03\x05\x05\x04\x05\x04\x01\x05\x04\x01", // 𤌏
+ 0x24310: "\x04\x03\x03\x04\x05\x04\x02\x05\x04\x03\x01\x01\x02\x01", // 𤌐
+ 0x24311: "\x03\x02\x01\x01\x05\x05\x04\x05\x01\x01\x01\x04\x03\x03\x04", // 𤌑
+ 0x24312: "\x04\x03\x03\x04\x02\x05\x02\x02\x01\x01\x02\x01\x01\x02\x01", // 𤌒
+ 0x24313: "\x04\x03\x03\x04\x01\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 𤌓
+ 0x24314: "\x02\x05\x03\x04\x03\x04\x01\x03\x04\x04\x04\x04\x04\x04", // 𤌔
+ 0x24315: "\x04\x03\x03\x04\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01", // 𤌕
+ 0x24316: "\x04\x03\x03\x04\x02\x05\x01\x02\x01\x05\x05\x04\x01\x04", // 𤌖
+ 0x24317: "\x04\x03\x03\x04\x02\x05\x02\x02\x01\x01\x02\x01\x02\x01", // 𤌗
+ 0x24318: "\x04\x03\x03\x04\x01\x02\x04\x05\x05\x05\x04\x02\x03\x04", // 𤌘
+ 0x24319: "\x04\x03\x03\x04\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 𤌙
+ 0x2431a: "\x04\x03\x03\x04\x01\x02\x01\x02\x02\x05\x02\x05\x01\x01", // 𤌚
+ 0x2431b: "\x04\x03\x03\x04\x05\x01\x01\x01\x01\x02\x05\x03\x05\x03", // 𤌛
+ 0x2431c: "\x04\x03\x03\x04\x04\x03\x03\x04\x01\x02\x05\x03\x04\x01", // 𤌜
+ 0x2431d: "\x03\x05\x02\x05\x02\x03\x05\x02\x05\x02\x04\x04\x04\x04", // 𤌝
+ 0x2431e: "\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 𤌞
+ 0x2431f: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x03\x01\x02\x03\x04", // 𤌟
+ 0x24320: "\x04\x03\x03\x04\x04\x03\x03\x04\x03\x05\x04\x01\x05\x02", // 𤌠
+ 0x24321: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x03\x01\x03\x04", // 𤌡
+ 0x24322: "\x04\x03\x03\x04\x01\x03\x02\x05\x02\x02\x04\x03\x03\x04", // 𤌢
+ 0x24323: "\x04\x03\x03\x04\x01\x02\x05\x02\x02\x01\x01\x02\x03\x04", // 𤌣
+ 0x24324: "\x04\x03\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x05\x04", // 𤌤
+ 0x24325: "\x04\x03\x03\x04\x01\x03\x04\x04\x03\x02\x05\x01\x01\x05", // 𤌥
+ 0x24326: "\x04\x03\x03\x04\x01\x02\x05\x01\x02\x05\x03\x05\x01\x02", // 𤌦
+ 0x24327: "\x04\x03\x03\x04\x05\x04\x05\x04\x05\x04\x01\x02\x03\x04", // 𤌧
+ 0x24328: "\x05\x01\x03\x03\x01\x01\x05\x05\x02\x01\x04\x03\x03\x04", // 𤌨
+ 0x24329: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x04\x04\x04", // 𤌩
+ 0x2432a: "\x04\x03\x03\x04\x01\x02\x05\x02\x02\x01\x04\x03\x03\x04", // 𤌪
+ 0x2432b: "\x04\x03\x03\x04\x01\x02\x01\x04\x05\x01\x03\x02\x05\x01", // 𤌫
+ 0x2432c: "\x04\x03\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𤌬
+ 0x2432d: "\x04\x03\x03\x04\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 𤌭
+ 0x2432e: "\x05\x02\x05\x01\x01\x01\x05\x01\x05\x04\x03\x03\x04", // 𤌮
+ 0x2432f: "\x04\x03\x03\x04\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04", // 𤌯
+ 0x24330: "\x04\x03\x03\x04\x02\x05\x01\x01\x01\x04\x03\x01\x01\x02", // 𤌰
+ 0x24331: "\x04\x03\x03\x04\x02\x05\x01\x01\x01\x02\x02\x01\x03\x04", // 𤌱
+ 0x24332: "\x05\x01\x01\x02\x01\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𤌲
+ 0x24333: "\x04\x03\x03\x04\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04", // 𤌳
+ 0x24334: "\x04\x03\x03\x04\x03\x05\x04\x01\x05\x02\x01\x02\x03\x04", // 𤌴
+ 0x24335: "\x04\x03\x03\x04\x03\x04\x04\x03\x03\x02\x05\x03\x04\x01", // 𤌵
+ 0x24336: "\x04\x03\x03\x04\x05\x04\x03\x05\x04\x01\x01\x05\x01\x05", // 𤌶
+ 0x24337: "\x04\x03\x03\x04\x01\x02\x01\x01\x02\x01\x04\x05\x04\x04", // 𤌷
+ 0x24338: "\x04\x03\x03\x04\x01\x02\x01\x02\x02\x05\x01\x01\x01\x02", // 𤌸
+ 0x24339: "\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04\x04\x03\x03\x04", // 𤌹
+ 0x2433a: "\x02\x01\x02\x01\x03\x03\x05\x04\x01\x04\x04\x03\x03\x04", // 𤌺
+ 0x2433b: "\x04\x03\x03\x04\x02\x05\x01\x02\x02\x05\x01\x02\x05\x01", // 𤌻
+ 0x2433c: "\x04\x03\x03\x04\x03\x02\x05\x01\x01\x01\x01\x01\x02\x01", // 𤌼
+ 0x2433d: "\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03\x04\x03\x03\x04", // 𤌽
+ 0x2433e: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x04\x03\x03\x04", // 𤌾
+ 0x2433f: "\x04\x03\x03\x04\x04\x01\x03\x04\x01\x03\x01\x01\x03\x04", // 𤌿
+ 0x24340: "\x04\x03\x03\x04\x04\x03\x03\x04\x03\x02\x05\x02\x05\x01", // 𤍀
+ 0x24341: "\x03\x04\x01\x02\x03\x04\x03\x05\x05\x04\x04\x04\x04\x04", // 𤍁
+ 0x24342: "\x01\x03\x04\x03\x04\x02\x03\x04\x05\x03\x04\x04\x04\x04", // 𤍂
+ 0x24343: "\x04\x03\x03\x04\x04\x04\x01\x03\x01\x05\x05\x04\x01\x04", // 𤍃
+ 0x24344: "\x04\x03\x03\x04\x04\x05\x02\x04\x02\x05\x01\x01\x01", // 𤍄
+ 0x24345: "\x04\x03\x03\x04\x01\x03\x05\x04\x02\x02\x04\x04\x04\x04", // 𤍅
+ 0x24346: "\x04\x03\x03\x04\x01\x02\x05\x01\x01\x01\x02\x01\x03\x05", // 𤍆
+ 0x24347: "\x04\x03\x03\x04\x01\x03\x01\x01\x05\x03\x04\x01\x02\x04", // 𤍇
+ 0x24348: "\x04\x03\x03\x04\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 𤍈
+ 0x24349: "\x04\x03\x03\x04\x02\x05\x02\x04\x01\x01\x01\x02\x05\x01", // 𤍉
+ 0x2434a: "\x04\x03\x03\x04\x01\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 𤍊
+ 0x2434b: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x05\x04\x04\x04\x04", // 𤍋
+ 0x2434c: "\x01\x02\x01\x05\x02\x01\x03\x05\x01\x01\x04\x03\x03\x04", // 𤍌
+ 0x2434d: "\x04\x01\x01\x02\x02\x01\x01\x02\x02\x01\x04\x04\x04\x04", // 𤍍
+ 0x2434e: "\x04\x03\x03\x04\x04\x05\x01\x01\x05\x04\x05\x02", // 𤍎
+ 0x2434f: "\x04\x03\x03\x04\x04\x03\x01\x05\x05\x04\x05\x05\x04", // 𤍏
+ 0x24350: "\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x04\x03\x03\x04", // 𤍐
+ 0x24351: "\x04\x03\x03\x04\x05\x05\x04\x04\x04\x04\x03\x05\x04\x04\x04", // 𤍑
+ 0x24352: "\x04\x03\x03\x04\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 𤍒
+ 0x24353: "\x02\x05\x01\x01\x02\x01\x01\x05\x04\x05\x02\x04\x03\x03\x04", // 𤍓
+ 0x24354: "\x04\x03\x03\x04\x04\x03\x03\x04\x05\x02\x05\x01\x02\x05\x01", // 𤍔
+ 0x24355: "\x01\x02\x03\x04\x01\x02\x05\x03\x05\x01\x01\x04\x03\x03\x04", // 𤍕
+ 0x24356: "\x04\x03\x03\x04\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02", // 𤍖
+ 0x24357: "\x04\x03\x03\x04\x01\x02\x04\x05\x05\x02\x01\x03\x01\x03\x04", // 𤍗
+ 0x24358: "\x04\x04\x05\x01\x01\x03\x05\x02\x05\x01\x01\x04\x03\x03\x04", // 𤍘
+ 0x24359: "\x03\x05\x04\x01\x01\x01\x02\x04\x03\x03\x04\x04\x03\x03\x04", // 𤍙
+ 0x2435a: "\x04\x03\x03\x04\x02\x05\x02\x02\x01\x05\x02\x03\x05\x02\x02", // 𤍚
+ 0x2435b: "\x04\x03\x03\x04\x04\x03\x01\x01\x02\x04\x03\x03\x04\x05\x04", // 𤍛
+ 0x2435c: "\x04\x03\x03\x04\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 𤍜
+ 0x2435d: "\x04\x03\x03\x04\x05\x04\x03\x03\x04\x04\x03\x01\x02\x03\x04", // 𤍝
+ 0x2435e: "\x04\x03\x03\x04\x01\x02\x02\x01\x01\x02\x02\x01\x01", // 𤍞
+ 0x2435f: "\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04\x04\x04\x04\x04", // 𤍟
+ 0x24360: "\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04\x04\x04\x04\x04", // 𤍠
+ 0x24361: "\x04\x03\x03\x04\x03\x03\x04\x03\x04\x03\x04\x03\x04\x01\x05", // 𤍡
+ 0x24362: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04\x01\x02\x01", // 𤍢
+ 0x24363: "\x04\x03\x03\x04\x04\x01\x05\x03\x04\x01\x05\x03\x01\x02\x01", // 𤍣
+ 0x24364: "\x04\x03\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02", // 𤍤
+ 0x24365: "\x01\x02\x05\x01\x02\x05\x03\x05\x02\x05\x01\x04\x04\x04\x04", // 𤍥
+ 0x24366: "\x04\x03\x03\x04\x03\x05\x01\x03\x02\x05\x01\x03\x05\x04\x01", // 𤍦
+ 0x24367: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x01\x01\x03\x02\x04", // 𤍧
+ 0x24368: "\x04\x01\x02\x05\x01\x05\x02\x01\x03\x05\x04\x04\x03\x03\x04", // 𤍨
+ 0x24369: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x04\x01\x04\x03\x01", // 𤍩
+ 0x2436a: "\x04\x03\x03\x04\x04\x01\x02\x05\x01\x05\x02\x01\x05\x02", // 𤍪
+ 0x2436b: "\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 𤍫
+ 0x2436c: "\x04\x03\x03\x04\x01\x02\x01\x02\x02\x04\x03\x01\x05\x03\x04", // 𤍬
+ 0x2436d: "\x04\x03\x03\x04\x01\x02\x05\x02\x02\x01\x05\x02\x05\x03\x04", // 𤍭
+ 0x2436e: "\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05\x04\x03\x03\x04", // 𤍮
+ 0x2436f: "\x04\x03\x03\x04\x01\x02\x02\x05\x01\x01\x01\x02\x03\x01\x05", // 𤍯
+ 0x24370: "\x01\x02\x05\x03\x05\x01\x01\x02\x02\x01\x01\x04\x04\x04\x04", // 𤍰
+ 0x24371: "\x01\x04\x05\x02\x04\x01\x03\x04\x05\x01\x01\x04\x04\x04\x04", // 𤍱
+ 0x24372: "\x04\x03\x03\x04\x02\x05\x01\x02\x05\x01\x02\x04\x05\x04\x04", // 𤍲
+ 0x24373: "\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 𤍳
+ 0x24374: "\x04\x03\x03\x04\x02\x05\x01\x01\x01\x03\x01\x01\x05\x03\x04", // 𤍴
+ 0x24375: "\x05\x02\x01\x03\x03\x05\x04\x04\x01\x02\x04\x04\x03\x03\x04", // 𤍵
+ 0x24376: "\x04\x03\x03\x04\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 𤍶
+ 0x24377: "\x04\x03\x03\x04\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x01", // 𤍷
+ 0x24378: "\x04\x03\x03\x04\x03\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 𤍸
+ 0x24379: "\x03\x05\x05\x01\x01\x03\x01\x02\x01\x03\x05\x04\x04\x04\x04", // 𤍹
+ 0x2437a: "\x04\x03\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x02\x01\x05", // 𤍺
+ 0x2437b: "\x05\x03\x01\x04\x03\x01\x05\x01\x01\x02\x02\x04\x04\x04\x04", // 𤍻
+ 0x2437c: "\x04\x03\x03\x04\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x02", // 𤍼
+ 0x2437d: "\x01\x02\x01\x03\x04\x01\x02\x01\x03\x05\x04\x04\x03\x03\x04", // 𤍽
+ 0x2437e: "\x01\x02\x03\x04\x01\x02\x03\x04\x01\x03\x04\x04\x03\x03\x04", // 𤍾
+ 0x2437f: "\x04\x03\x03\x04\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04", // 𤍿
+ 0x24380: "\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x04\x03\x03\x04", // 𤎀
+ 0x24381: "\x05\x05\x05\x01\x03\x02\x05\x01\x01\x02\x02\x04\x03\x03\x04", // 𤎁
+ 0x24382: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x05\x03\x04\x04\x04\x04", // 𤎂
+ 0x24383: "\x04\x03\x03\x04\x01\x02\x01\x01\x02\x01\x01\x03\x02\x05\x01", // 𤎃
+ 0x24384: "\x04\x03\x03\x04\x01\x02\x01\x02\x01\x01\x05\x04\x04\x04\x04", // 𤎄
+ 0x24385: "\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04\x04\x03\x03\x04", // 𤎅
+ 0x24386: "\x04\x03\x03\x04\x02\x01\x02\x05\x03\x05\x04\x01\x01\x02\x01", // 𤎆
+ 0x24387: "\x03\x03\x02\x01\x02\x01\x01\x02\x01\x05\x02\x04\x03\x03\x04", // 𤎇
+ 0x24388: "\x04\x03\x03\x04\x03\x05\x02\x05\x03\x04\x01\x03\x05\x04", // 𤎈
+ 0x24389: "\x04\x01\x04\x03\x01\x03\x05\x01\x02\x02\x01\x04\x04\x04\x04", // 𤎉
+ 0x2438a: "\x04\x03\x03\x04\x04\x03\x03\x04\x01\x02\x05\x01\x02\x03\x04", // 𤎊
+ 0x2438b: "\x04\x03\x03\x04\x05\x04\x01\x05\x04\x01\x01\x03\x04\x01\x02", // 𤎋
+ 0x2438c: "\x04\x03\x03\x04\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x01", // 𤎌
+ 0x2438d: "\x04\x03\x03\x04\x02\x05\x01\x02\x05\x01\x01\x05\x03\x04\x01", // 𤎍
+ 0x2438e: "\x04\x03\x03\x04\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04", // 𤎎
+ 0x2438f: "\x04\x03\x03\x04\x02\x05\x02\x02\x01\x03\x02\x03\x04\x03\x04", // 𤎏
+ 0x24390: "\x04\x03\x03\x04\x01\x01\x02\x02\x01\x03\x02\x05\x01\x05", // 𤎐
+ 0x24391: "\x04\x03\x03\x04\x03\x02\x05\x03\x04\x01\x03\x04\x03\x05\x04", // 𤎑
+ 0x24392: "\x04\x03\x03\x04\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04", // 𤎒
+ 0x24393: "\x01\x01\x02\x01\x02\x05\x01\x01\x05\x01\x01\x04\x03\x03\x04", // 𤎓
+ 0x24394: "\x04\x03\x03\x04\x04\x03\x01\x01\x02\x01\x04\x05\x05\x03\x04", // 𤎔
+ 0x24395: "\x04\x03\x03\x04\x03\x04\x03\x01\x02\x03\x04\x04\x05\x04\x04", // 𤎕
+ 0x24396: "\x04\x03\x03\x04\x04\x01\x03\x05\x01\x01\x02\x04\x01\x03\x04", // 𤎖
+ 0x24397: "\x01\x02\x01\x02\x01\x03\x03\x05\x02\x05\x01\x04\x04\x04\x04", // 𤎗
+ 0x24398: "\x05\x03\x02\x05\x01\x01\x01\x03\x05\x03\x03\x04\x04\x04\x04", // 𤎘
+ 0x24399: "\x04\x03\x03\x04\x03\x05\x02\x05\x01\x01\x02\x05\x01\x01\x02", // 𤎙
+ 0x2439a: "\x02\x05\x02\x04\x03\x03\x04\x02\x05\x01\x01\x04\x03\x03\x04", // 𤎚
+ 0x2439b: "\x04\x03\x03\x04\x04\x04\x01\x03\x04\x04\x03\x03\x01\x02\x01", // 𤎛
+ 0x2439c: "\x04\x03\x03\x04\x04\x05\x01\x01\x05\x04\x03\x05\x01\x01", // 𤎜
+ 0x2439d: "\x01\x03\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 𤎝
+ 0x2439e: "\x04\x03\x03\x04\x05\x05\x05\x02\x05\x03\x04\x03\x05\x01\x01\x02", // 𤎞
+ 0x2439f: "\x04\x04\x05\x01\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x03\x04", // 𤎟
+ 0x243a0: "\x04\x03\x03\x04\x02\x01\x02\x01\x02\x01\x02\x01\x02\x01\x02\x01", // 𤎠
+ 0x243a1: "\x03\x05\x04\x01\x04\x03\x03\x04\x03\x05\x03\x02\x01\x05\x01\x01", // 𤎡
+ 0x243a2: "\x03\x05\x04\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04", // 𤎢
+ 0x243a3: "\x04\x03\x03\x04\x01\x02\x01\x02\x01\x03\x04\x02\x05\x01\x01\x05", // 𤎣
+ 0x243a4: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x05\x03\x02\x03\x04\x03", // 𤎤
+ 0x243a5: "\x03\x02\x05\x01\x01\x02\x05\x02\x04\x03\x03\x04\x04\x03\x03\x04", // 𤎥
+ 0x243a6: "\x03\x04\x01\x03\x03\x05\x04\x01\x03\x01\x03\x04\x04\x04\x04\x04", // 𤎦
+ 0x243a7: "\x05\x01\x05\x01\x02\x01\x01\x02\x01\x02\x05\x01\x04\x03\x03\x04", // 𤎧
+ 0x243a8: "\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04\x04\x03\x03\x04", // 𤎨
+ 0x243a9: "\x05\x02\x04\x03\x01\x03\x05\x03\x03\x03\x04\x04\x03\x03\x04", // 𤎩
+ 0x243aa: "\x01\x02\x01\x01\x02\x05\x01\x02\x05\x01\x02\x01\x04\x03\x03\x04", // 𤎪
+ 0x243ab: "\x04\x03\x03\x04\x04\x03\x03\x04\x01\x02\x02\x01\x04\x03\x03\x04", // 𤎫
+ 0x243ac: "\x04\x03\x03\x04\x04\x03\x01\x05\x02\x03\x04\x03\x03\x04\x05\x04", // 𤎬
+ 0x243ad: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x01\x02\x05\x02\x05\x01\x01", // 𤎭
+ 0x243ae: "\x01\x02\x01\x03\x05\x01\x02\x01\x05\x03\x01\x01\x04\x03\x03\x04", // 𤎮
+ 0x243af: "\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01\x04\x03\x03\x04", // 𤎯
+ 0x243b0: "\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01\x04\x04\x04\x04", // 𤎰
+ 0x243b1: "\x04\x03\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x02\x05", // 𤎱
+ 0x243b2: "\x04\x03\x03\x04\x02\x05\x01\x01\x01\x02\x05\x01\x01\x02\x01\x01", // 𤎲
+ 0x243b3: "\x04\x03\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x02\x05\x01\x01", // 𤎳
+ 0x243b4: "\x02\x01\x02\x01\x03\x03\x05\x04\x01\x04\x05\x03\x04\x04\x04\x04", // 𤎴
+ 0x243b5: "\x02\x01\x02\x01\x03\x03\x05\x04\x01\x04\x02\x02\x04\x03\x03\x04", // 𤎵
+ 0x243b6: "\x04\x03\x03\x04\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04", // 𤎶
+ 0x243b7: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x04\x03\x03\x04\x05\x03\x04", // 𤎷
+ 0x243b8: "\x02\x02\x05\x02\x04\x03\x03\x04\x02\x02\x05\x02\x04\x03\x03\x04", // 𤎸
+ 0x243b9: "\x04\x01\x02\x01\x02\x05\x01\x02\x05\x05\x01\x05\x04\x04\x04\x04", // 𤎹
+ 0x243ba: "\x04\x03\x03\x04\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x03\x04", // 𤎺
+ 0x243bb: "\x04\x03\x03\x04\x01\x02\x02\x05\x01\x01\x02\x03\x02\x03\x04", // 𤎻
+ 0x243bc: "\x04\x01\x02\x05\x01\x02\x03\x04\x01\x03\x05\x04\x04\x03\x03\x04", // 𤎼
+ 0x243bd: "\x04\x03\x03\x04\x05\x05\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𤎽
+ 0x243be: "\x05\x05\x05\x01\x03\x02\x05\x01\x01\x01\x02\x02\x04\x03\x03\x04", // 𤎾
+ 0x243bf: "\x01\x02\x01\x02\x05\x01\x01\x02\x01\x02\x05\x01\x04\x04\x04\x04", // 𤎿
+ 0x243c0: "\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x03\x04\x03\x03\x04", // 𤏀
+ 0x243c1: "\x04\x04\x01\x01\x02\x05\x01\x02\x05\x05\x01\x05\x04\x04\x04\x04", // 𤏁
+ 0x243c2: "\x04\x03\x03\x04\x04\x01\x02\x05\x01\x05\x02\x01\x04\x04\x04\x04", // 𤏂
+ 0x243c3: "\x04\x03\x03\x04\x04\x03\x03\x04\x01\x03\x04\x01\x02\x02\x05\x01", // 𤏃
+ 0x243c4: "\x04\x04\x01\x04\x03\x01\x03\x05\x01\x01\x02\x02\x04\x04\x04\x04", // 𤏄
+ 0x243c5: "\x04\x01\x02\x05\x01\x02\x03\x04\x01\x03\x05\x04\x04\x04\x04\x04", // 𤏅
+ 0x243c6: "\x04\x03\x03\x04\x01\x01\x01\x02\x03\x01\x03\x04\x01\x02\x03\x04", // 𤏆
+ 0x243c7: "\x01\x02\x03\x04\x04\x04\x05\x01\x01\x02\x03\x04\x04\x04\x04\x04", // 𤏇
+ 0x243c8: "\x04\x03\x03\x04\x01\x02\x01\x04\x05\x01\x02\x05\x01\x04\x03\x01", // 𤏈
+ 0x243c9: "\x04\x03\x03\x04\x01\x02\x01\x02\x01\x03\x04\x05\x01\x02\x05\x01", // 𤏉
+ 0x243ca: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x05\x03\x04\x04\x04\x04", // 𤏊
+ 0x243cb: "\x04\x03\x03\x04\x05\x04\x03\x03\x04\x05\x01\x05\x03\x05\x05\x04", // 𤏋
+ 0x243cc: "\x04\x03\x03\x04\x01\x02\x02\x01\x01\x01\x05\x04\x04\x03\x03\x04", // 𤏌
+ 0x243cd: "\x01\x02\x01\x03\x01\x02\x05\x01\x01\x02\x01\x01\x04\x03\x03\x04", // 𤏍
+ 0x243ce: "\x04\x03\x03\x04\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01", // 𤏎
+ 0x243cf: "\x04\x03\x03\x04\x02\x05\x01\x02\x01\x01\x03\x01\x01\x05\x03\x04", // 𤏏
+ 0x243d0: "\x04\x03\x03\x04\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01", // 𤏐
+ 0x243d1: "\x04\x03\x03\x04\x01\x02\x01\x02\x03\x01\x05\x01\x01\x01\x01\x02", // 𤏑
+ 0x243d2: "\x02\x05\x01\x01\x02\x05\x01\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 𤏒
+ 0x243d3: "\x04\x03\x03\x04\x03\x02\x05\x03\x04\x03\x01\x02\x03\x04\x01\x05", // 𤏓
+ 0x243d4: "\x04\x03\x03\x04\x03\x02\x05\x01\x01\x03\x01\x02\x01\x02\x05\x01", // 𤏔
+ 0x243d5: "\x05\x05\x05\x02\x05\x02\x05\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 𤏕
+ 0x243d6: "\x04\x03\x03\x04\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01", // 𤏖
+ 0x243d7: "\x04\x03\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04", // 𤏗
+ 0x243d8: "\x04\x03\x03\x04\x01\x02\x05\x01\x01\x05\x03\x04\x04\x05\x04\x04", // 𤏘
+ 0x243d9: "\x04\x03\x03\x04\x01\x03\x02\x05\x02\x02\x01\x03\x02\x05\x02\x02", // 𤏙
+ 0x243da: "\x04\x03\x03\x04\x01\x03\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𤏚
+ 0x243db: "\x03\x02\x01\x02\x02\x01\x03\x03\x05\x01\x01\x02\x04\x03\x03\x04", // 𤏛
+ 0x243dc: "\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04\x04\x03\x03\x04", // 𤏜
+ 0x243dd: "\x03\x05\x04\x01\x04\x03\x03\x04\x01\x02\x01\x03\x05\x01\x02\x01", // 𤏝
+ 0x243de: "\x04\x03\x03\x04\x04\x03\x03\x04\x03\x05\x04\x01\x05\x02\x05\x05", // 𤏞
+ 0x243df: "\x04\x03\x03\x04\x05\x04\x05\x04\x05\x04\x03\x04\x02\x04\x04\x04", // 𤏟
+ 0x243e0: "\x01\x01\x03\x04\x03\x01\x01\x02\x02\x02\x02\x01\x04\x04\x04\x04", // 𤏠
+ 0x243e1: "\x01\x02\x05\x02\x03\x04\x01\x02\x05\x02\x03\x04\x04\x03\x03\x04", // 𤏡
+ 0x243e2: "\x04\x03\x03\x04\x05\x02\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 𤏢
+ 0x243e3: "\x04\x03\x03\x04\x04\x01\x01\x01\x02\x05\x01\x03\x03\x01\x02\x04", // 𤏣
+ 0x243e4: "\x03\x01\x02\x03\x04\x03\x04\x01\x03\x02\x05\x02\x04\x04\x04\x04", // 𤏤
+ 0x243e5: "\x04\x03\x03\x04\x03\x02\x04\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 𤏥
+ 0x243e6: "\x04\x03\x03\x04\x01\x01\x01\x02\x05\x03\x05\x05\x04\x02\x03\x04", // 𤏦
+ 0x243e7: "\x04\x03\x03\x04\x03\x01\x04\x03\x01\x04\x03\x04\x01\x02\x05\x01", // 𤏧
+ 0x243e8: "\x04\x03\x03\x04\x03\x01\x02\x03\x04\x03\x04\x01\x03\x02\x05\x02", // 𤏨
+ 0x243e9: "\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04\x05\x03\x04\x04\x04\x04", // 𤏩
+ 0x243ea: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x05\x03", // 𤏪
+ 0x243eb: "\x04\x03\x03\x04\x03\x01\x04\x03\x01\x04\x05\x01\x01\x01\x01\x02", // 𤏫
+ 0x243ec: "\x04\x03\x03\x04\x03\x04\x04\x05\x01\x01\x03\x02\x05\x01\x02\x02", // 𤏬
+ 0x243ed: "\x04\x03\x03\x04\x04\x03\x03\x04\x03\x05\x03\x02\x01\x05\x01\x01", // 𤏭
+ 0x243ee: "\x04\x03\x03\x04\x02\x04\x03\x02\x05\x02\x05\x01\x03\x01\x03\x04", // 𤏮
+ 0x243ef: "\x04\x03\x03\x04\x05\x01\x05\x02\x05\x03\x03\x04\x01\x01\x02\x01", // 𤏯
+ 0x243f0: "\x04\x03\x03\x04\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04", // 𤏰
+ 0x243f1: "\x04\x03\x03\x04\x01\x02\x02\x01\x02\x02\x01\x01\x01\x05\x04", // 𤏱
+ 0x243f2: "\x04\x03\x03\x04\x04\x03\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01", // 𤏲
+ 0x243f3: "\x04\x03\x03\x04\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𤏳
+ 0x243f4: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01\x04\x03\x03\x04", // 𤏴
+ 0x243f5: "\x04\x03\x03\x04\x02\x05\x02\x02\x01\x01\x03\x04\x04\x03\x01\x01\x02", // 𤏵
+ 0x243f6: "\x04\x03\x03\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x01\x05", // 𤏶
+ 0x243f7: "\x04\x05\x01\x02\x03\x04\x01\x02\x03\x04\x01\x03\x04\x04\x03\x03\x04", // 𤏷
+ 0x243f8: "\x04\x03\x03\x04\x01\x02\x01\x02\x01\x02\x01\x03\x02\x05\x01\x01", // 𤏸
+ 0x243f9: "\x03\x02\x02\x01\x02\x01\x03\x05\x03\x05\x01\x01\x02\x04\x04\x04\x04", // 𤏹
+ 0x243fa: "\x05\x02\x02\x05\x02\x04\x01\x05\x03\x03\x01\x03\x04\x04\x04\x04\x04", // 𤏺
+ 0x243fb: "\x04\x01\x04\x03\x01\x01\x02\x04\x03\x03\x04\x04\x03\x03\x04\x05\x04", // 𤏻
+ 0x243fc: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x01\x02\x01\x04\x03\x03\x04", // 𤏼
+ 0x243fd: "\x04\x03\x03\x04\x04\x03\x01\x01\x01\x02\x04\x01\x04\x03\x01\x01\x02", // 𤏽
+ 0x243fe: "\x04\x03\x03\x04\x01\x01\x03\x02\x02\x02\x01\x02\x05\x03\x05\x01\x01", // 𤏾
+ 0x243ff: "\x01\x02\x05\x01\x02\x05\x05\x04\x02\x05\x01\x01\x01\x04\x03\x03\x04", // 𤏿
+ 0x24400: "\x04\x03\x03\x04\x01\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x01\x01", // 𤐀
+ 0x24401: "\x02\x05\x02\x02\x01\x02\x01\x03\x02\x05\x02\x02\x01\x04\x03\x03\x04", // 𤐁
+ 0x24402: "\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01\x05\x03\x04\x04\x04\x04", // 𤐂
+ 0x24403: "\x04\x03\x03\x04\x03\x05\x03\x05\x01\x01\x02\x05\x03\x03\x01\x01\x02", // 𤐃
+ 0x24404: "\x04\x03\x03\x04\x04\x03\x01\x03\x05\x01\x01\x02\x02\x04\x04\x04\x04", // 𤐄
+ 0x24405: "\x04\x01\x03\x04\x01\x05\x02\x02\x01\x01\x05\x01\x05\x04\x04\x04\x04", // 𤐅
+ 0x24406: "\x04\x03\x03\x04\x05\x01\x01\x03\x02\x05\x01\x04\x03\x01\x01\x01\x02", // 𤐆
+ 0x24407: "\x04\x03\x03\x04\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x01\x05", // 𤐇
+ 0x24408: "\x01\x02\x01\x03\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x03\x03\x04", // 𤐈
+ 0x24409: "\x04\x03\x03\x04\x01\x03\x01\x02\x05\x01\x05\x03\x04\x04\x05\x04\x04", // 𤐉
+ 0x2440a: "\x04\x03\x03\x04\x01\x04\x05\x02\x04\x01\x03\x04\x03\x05\x05\x01\x05", // 𤐊
+ 0x2440b: "\x04\x03\x03\x04\x02\x05\x02\x02\x01\x03\x05\x04\x03\x01\x02\x03\x04", // 𤐋
+ 0x2440c: "\x04\x03\x03\x04\x01\x02\x01\x02\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 𤐌
+ 0x2440d: "\x02\x05\x02\x02\x01\x01\x02\x01\x02\x05\x01\x01\x01\x04\x04\x04\x04", // 𤐍
+ 0x2440e: "\x04\x03\x03\x04\x03\x01\x04\x03\x01\x04\x04\x02\x05\x02\x05\x01\x01", // 𤐎
+ 0x2440f: "\x03\x02\x05\x01\x01\x03\x01\x02\x03\x04\x05\x01\x05\x04\x03\x03\x04", // 𤐏
+ 0x24410: "\x04\x03\x03\x04\x03\x05\x01\x03\x03\x05\x04\x01\x01\x01\x02\x05\x01", // 𤐐
+ 0x24411: "\x04\x03\x03\x04\x03\x05\x05\x01\x01\x03\x01\x03\x04\x04\x04\x04\x04", // 𤐑
+ 0x24412: "\x04\x03\x03\x04\x01\x05\x03\x04\x01\x05\x03\x04\x02\x05\x02\x02\x01", // 𤐒
+ 0x24413: "\x04\x03\x03\x04\x04\x04\x01\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04", // 𤐓
+ 0x24414: "\x04\x03\x03\x04\x04\x03\x03\x04\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 𤐔
+ 0x24415: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 𤐕
+ 0x24416: "\x04\x03\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 𤐖
+ 0x24417: "\x04\x03\x03\x04\x01\x03\x04\x04\x03\x02\x05\x01\x01\x04\x03\x03\x04", // 𤐗
+ 0x24418: "\x04\x03\x03\x04\x02\x05\x01\x01\x01\x05\x02\x03\x04\x03\x05\x05\x04", // 𤐘
+ 0x24419: "\x04\x03\x03\x04\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 𤐙
+ 0x2441a: "\x04\x03\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05\x03\x04", // 𤐚
+ 0x2441b: "\x04\x03\x03\x04\x05\x01\x01\x02\x02\x05\x01\x01\x04\x01\x02\x05\x02", // 𤐛
+ 0x2441c: "\x04\x03\x03\x04\x02\x05\x02\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𤐜
+ 0x2441d: "\x04\x03\x03\x04\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x01", // 𤐝
+ 0x2441e: "\x04\x03\x03\x04\x04\x03\x03\x04\x01\x02\x01\x02\x01\x02\x02\x05\x01", // 𤐞
+ 0x2441f: "\x04\x03\x03\x04\x01\x03\x03\x05\x01\x01\x02\x05\x03\x05\x02\x05\x01", // 𤐟
+ 0x24420: "\x04\x03\x03\x04\x04\x05\x02\x04\x05\x05\x01\x02\x04\x01\x03\x04", // 𤐠
+ 0x24421: "\x04\x03\x03\x04\x01\x02\x01\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𤐡
+ 0x24422: "\x04\x03\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 𤐢
+ 0x24423: "\x04\x03\x03\x04\x02\x05\x01\x01\x01\x05\x01\x03\x02\x01\x02\x05", // 𤐣
+ 0x24424: "\x04\x03\x03\x04\x01\x02\x02\x05\x01\x02\x05\x05\x01\x05\x04\x04\x04\x04", // 𤐤
+ 0x24425: "\x04\x03\x03\x04\x04\x03\x03\x04\x01\x02\x02\x04\x05\x04\x03\x03\x04", // 𤐥
+ 0x24426: "\x01\x03\x04\x03\x04\x01\x02\x05\x01\x01\x01\x05\x03\x04\x04\x03\x03\x04", // 𤐦
+ 0x24427: "\x03\x01\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x01\x04\x03\x03\x04", // 𤐧
+ 0x24428: "\x04\x03\x03\x04\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𤐨
+ 0x24429: "\x04\x03\x03\x04\x01\x02\x01\x02\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 𤐩
+ 0x2442a: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04\x03\x05\x04\x01\x05\x02", // 𤐪
+ 0x2442b: "\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x01\x04\x03\x03\x04", // 𤐫
+ 0x2442c: "\x03\x05\x04\x01\x04\x03\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x03\x04", // 𤐬
+ 0x2442d: "\x04\x03\x03\x04\x01\x01\x05\x02\x05\x01\x02\x01\x02\x05\x01\x01\x02\x04", // 𤐭
+ 0x2442e: "\x05\x04\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x03\x04\x04\x03\x03\x04", // 𤐮
+ 0x2442f: "\x04\x03\x03\x04\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02", // 𤐯
+ 0x24430: "\x04\x03\x03\x04\x02\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𤐰
+ 0x24431: "\x01\x03\x02\x05\x02\x02\x01\x03\x04\x01\x05\x05\x04\x04\x03\x03\x04", // 𤐱
+ 0x24432: "\x04\x03\x03\x04\x02\x05\x01\x01\x01\x02\x02\x01\x03\x04\x03\x01\x01\x02", // 𤐲
+ 0x24433: "\x03\x04\x03\x04\x01\x03\x03\x05\x04\x01\x03\x01\x03\x04\x04\x04\x04\x04", // 𤐳
+ 0x24434: "\x04\x03\x03\x04\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x04\x04\x04\x04", // 𤐴
+ 0x24435: "\x04\x03\x03\x04\x01\x02\x01\x02\x05\x01\x04\x03\x01\x05\x03\x02\x05\x01", // 𤐵
+ 0x24436: "\x04\x03\x03\x04\x04\x01\x02\x05\x01\x04\x05\x01\x03\x05\x03\x03\x03\x04", // 𤐶
+ 0x24437: "\x04\x03\x03\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x01\x02\x01", // 𤐷
+ 0x24438: "\x03\x01\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𤐸
+ 0x24439: "\x04\x03\x03\x04\x04\x03\x01\x03\x04\x02\x05\x02\x02\x01\x04\x05\x04", // 𤐹
+ 0x2443a: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x04\x03\x03\x04\x04\x03\x03\x04", // 𤐺
+ 0x2443b: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x03\x04\x01\x01\x02\x02\x02\x01", // 𤐻
+ 0x2443c: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x01\x03\x04\x01\x02\x02\x01\x05", // 𤐼
+ 0x2443d: "\x04\x03\x03\x04\x01\x02\x01\x02\x05\x01\x04\x05\x01\x05\x04\x01\x02\x01", // 𤐽
+ 0x2443e: "\x04\x03\x03\x04\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04\x04", // 𤐾
+ 0x2443f: "\x01\x02\x05\x03\x05\x01\x01\x03\x01\x02\x01\x02\x05\x01\x04\x04\x04\x04", // 𤐿
+ 0x24440: "\x03\x04\x04\x03\x01\x02\x05\x03\x05\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 𤑀
+ 0x24441: "\x04\x03\x03\x04\x03\x01\x01\x02\x04\x03\x03\x04\x04\x04\x05\x05\x03\x01", // 𤑁
+ 0x24442: "\x01\x03\x04\x03\x03\x04\x04\x03\x03\x04\x03\x05\x04\x01\x01\x05\x03\x04", // 𤑂
+ 0x24443: "\x03\x05\x04\x01\x04\x03\x03\x04\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 𤑃
+ 0x24444: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x04\x04\x04\x04", // 𤑄
+ 0x24445: "\x03\x02\x01\x02\x05\x01\x01\x04\x04\x05\x05\x03\x01\x05\x04\x04\x04\x04", // 𤑅
+ 0x24446: "\x04\x03\x03\x04\x01\x02\x02\x01\x02\x05\x01\x03\x04\x04\x03\x01\x02\x01", // 𤑆
+ 0x24447: "\x02\x05\x03\x04\x04\x05\x01\x02\x03\x04\x01\x02\x03\x04\x04\x03\x03\x04", // 𤑇
+ 0x24448: "\x04\x03\x03\x04\x03\x03\x02\x02\x05\x02\x01\x01\x02\x01\x03\x01\x03\x04", // 𤑈
+ 0x24449: "\x04\x03\x03\x04\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 𤑉
+ 0x2444a: "\x03\x03\x03\x02\x01\x02\x01\x03\x05\x04\x01\x01\x01\x02\x04\x04\x04\x04", // 𤑊
+ 0x2444b: "\x04\x03\x03\x04\x04\x03\x03\x04\x01\x02\x01\x02\x04\x05\x04\x03\x03\x04", // 𤑋
+ 0x2444c: "\x01\x03\x04\x01\x02\x01\x03\x05\x01\x01\x03\x05\x01\x01\x04\x04\x04\x04", // 𤑌
+ 0x2444d: "\x04\x03\x03\x04\x03\x02\x01\x01\x02\x05\x01\x01\x05\x01\x01\x01\x03\x04", // 𤑍
+ 0x2444e: "\x03\x02\x05\x01\x01\x05\x04\x04\x04\x04\x02\x05\x01\x01\x01\x05\x01\x05", // 𤑎
+ 0x2444f: "\x04\x05\x02\x04\x01\x02\x05\x01\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𤑏
+ 0x24450: "\x04\x05\x02\x04\x01\x02\x05\x01\x02\x05\x01\x02\x01\x04\x03\x03\x04", // 𤑐
+ 0x24451: "\x04\x03\x03\x04\x03\x05\x02\x05\x01\x03\x05\x03\x05\x02\x05\x01\x03\x05", // 𤑑
+ 0x24452: "\x01\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x01\x04\x03\x03\x04", // 𤑒
+ 0x24453: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x01\x02\x05\x02\x05\x01\x01\x03\x01\x05", // 𤑓
+ 0x24454: "\x01\x02\x01\x02\x01\x02\x01\x03\x05\x01\x02\x01\x03\x05\x04\x04\x03\x03\x04", // 𤑔
+ 0x24455: "\x04\x03\x03\x04\x03\x01\x02\x05\x04\x03\x01\x02\x01\x01\x05\x03\x04\x04\x04\x04", // 𤑕
+ 0x24456: "\x04\x04\x05\x01\x02\x03\x04\x01\x02\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04", // 𤑖
+ 0x24457: "\x03\x05\x04\x01\x04\x03\x03\x04\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 𤑗
+ 0x24458: "\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04\x02\x04\x01\x03\x04\x04\x03\x03\x04", // 𤑘
+ 0x24459: "\x04\x03\x03\x04\x04\x01\x03\x04\x03\x01\x05\x01\x02\x02\x01\x04\x04\x04\x04", // 𤑙
+ 0x2445a: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x01\x01\x02\x01\x04", // 𤑚
+ 0x2445b: "\x04\x03\x03\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01\x05\x03\x04\x04\x04\x04", // 𤑛
+ 0x2445c: "\x05\x01\x05\x01\x02\x01\x03\x02\x05\x01\x01\x04\x05\x01\x05\x04\x04\x04\x04", // 𤑜
+ 0x2445d: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x02\x05\x01\x02\x01", // 𤑝
+ 0x2445e: "\x04\x03\x03\x04\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 𤑞
+ 0x2445f: "\x04\x03\x03\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01", // 𤑟
+ 0x24460: "\x03\x02\x01\x05\x01\x01\x01\x02\x01\x02\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 𤑠
+ 0x24461: "\x04\x03\x03\x04\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 𤑡
+ 0x24462: "\x04\x03\x03\x04\x01\x02\x01\x02\x03\x02\x05\x03\x03\x04\x01\x04\x05\x04\x04", // 𤑢
+ 0x24463: "\x04\x03\x03\x04\x01\x02\x05\x03\x04\x01\x02\x05\x03\x04\x01\x02\x05\x03\x04", // 𤑣
+ 0x24464: "\x01\x03\x03\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x04\x03\x03\x04", // 𤑤
+ 0x24465: "\x04\x03\x03\x04\x02\x05\x01\x01\x05\x02\x02\x05\x02\x03\x04\x01\x01\x01\x02", // 𤑥
+ 0x24466: "\x04\x03\x03\x04\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01\x04\x05\x04", // 𤑦
+ 0x24467: "\x04\x03\x03\x04\x04\x04\x05\x02\x05\x01\x01\x01\x02\x02\x01\x01\x01\x05\x04", // 𤑧
+ 0x24468: "\x05\x01\x05\x01\x02\x01\x03\x02\x05\x01\x01\x04\x05\x01\x05\x04\x03\x03\x04", // 𤑨
+ 0x24469: "\x03\x05\x04\x04\x04\x03\x03\x04\x05\x01\x01\x03\x02\x05\x01\x04\x04\x04\x04", // 𤑩
+ 0x2446a: "\x03\x05\x04\x04\x05\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01\x04\x04\x04\x04", // 𤑪
+ 0x2446b: "\x04\x03\x03\x04\x01\x02\x02\x03\x05\x04\x01\x01\x01\x02\x04\x05\x04", // 𤑫
+ 0x2446c: "\x04\x03\x03\x04\x03\x01\x02\x03\x04\x03\x05\x03\x03\x04\x02\x04\x01\x03\x04", // 𤑬
+ 0x2446d: "\x04\x03\x03\x04\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01", // 𤑭
+ 0x2446e: "\x04\x03\x03\x04\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04\x03\x01\x01\x02", // 𤑮
+ 0x2446f: "\x04\x03\x03\x04\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x02\x02", // 𤑯
+ 0x24470: "\x03\x05\x02\x05\x01\x02\x01\x01\x03\x04\x02\x05\x02\x05\x01\x04\x04\x04\x04", // 𤑰
+ 0x24471: "\x04\x03\x03\x04\x05\x04\x01\x05\x04\x01\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 𤑱
+ 0x24472: "\x04\x03\x03\x04\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02\x05\x02", // 𤑲
+ 0x24473: "\x04\x03\x03\x04\x01\x02\x01\x02\x05\x01\x01\x02\x03\x02\x01\x01\x05\x05\x02\x01\x02", // 𤑳
+ 0x24474: "\x04\x03\x03\x04\x04\x01\x02\x05\x01\x02\x05\x01\x01\x02\x01\x02\x01\x01\x01\x02", // 𤑴
+ 0x24475: "\x05\x01\x05\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03\x05\x01\x05\x04\x03\x03\x04", // 𤑵
+ 0x24476: "\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02\x04\x03\x03\x04\x04\x03\x03\x04", // 𤑶
+ 0x24477: "\x04\x03\x03\x04\x05\x01\x01\x02\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x05", // 𤑷
+ 0x24478: "\x04\x03\x03\x04\x01\x02\x05\x01\x02\x05\x03\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 𤑸
+ 0x24479: "\x05\x05\x05\x04\x03\x03\x04\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 𤑹
+ 0x2447a: "\x04\x03\x03\x04\x04\x05\x02\x05\x01\x01\x01\x05\x01\x03\x02\x01\x02\x05", // 𤑺
+ 0x2447b: "\x04\x03\x03\x04\x02\x05\x01\x01\x01\x02\x01\x02\x01\x01\x02\x02\x01\x01", // 𤑻
+ 0x2447c: "\x04\x03\x03\x04\x02\x05\x01\x01\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x01\x05", // 𤑼
+ 0x2447d: "\x02\x05\x01\x04\x03\x01\x04\x03\x03\x04\x02\x05\x01\x04\x03\x01\x04\x03\x03\x04", // 𤑽
+ 0x2447e: "\x05\x02\x04\x03\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04\x04\x03\x03\x04", // 𤑾
+ 0x2447f: "\x04\x03\x03\x04\x01\x02\x02\x01\x01\x01\x05\x05\x04\x05\x05\x04\x04\x04\x04\x04", // 𤑿
+ 0x24480: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x01\x02\x05\x02\x05\x01\x01\x04\x01\x03\x05", // 𤒀
+ 0x24481: "\x04\x03\x03\x04\x02\x05\x01\x01\x05\x02\x02\x05\x02\x01\x03\x04\x02\x04\x04\x04", // 𤒁
+ 0x24482: "\x02\x01\x02\x01\x02\x05\x01\x01\x04\x03\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𤒂
+ 0x24483: "\x04\x03\x03\x04\x02\x05\x01\x01\x01\x02\x02\x01\x01\x02\x02\x01\x01\x02", // 𤒃
+ 0x24484: "\x04\x03\x03\x04\x04\x01\x04\x03\x01\x03\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 𤒄
+ 0x24485: "\x04\x03\x03\x04\x03\x02\x05\x01\x02\x05\x03\x04\x01\x05\x05\x01\x01\x05\x01\x01", // 𤒅
+ 0x24486: "\x04\x01\x02\x05\x01\x02\x05\x01\x04\x03\x01\x01\x02\x03\x05\x04\x04\x03\x03\x04", // 𤒆
+ 0x24487: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04\x01\x02\x03\x04", // 𤒇
+ 0x24488: "\x04\x03\x03\x04\x01\x02\x02\x01\x02\x05\x01\x02\x01\x01\x01\x05\x04\x04\x04\x04", // 𤒈
+ 0x24489: "\x01\x05\x03\x04\x02\x05\x01\x01\x01\x05\x03\x04\x02\x05\x01\x01\x04\x04\x04\x04", // 𤒉
+ 0x2448a: "\x04\x03\x03\x04\x01\x02\x03\x04\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 𤒊
+ 0x2448b: "\x04\x03\x03\x04\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01\x04\x04\x04\x04", // 𤒋
+ 0x2448c: "\x04\x03\x03\x04\x02\x05\x01\x02\x05\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𤒌
+ 0x2448d: "\x02\x05\x01\x02\x02\x01\x04\x03\x03\x04\x02\x05\x01\x02\x02\x01\x04\x03\x03\x04", // 𤒍
+ 0x2448e: "\x04\x03\x03\x04\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x05\x02\x01", // 𤒎
+ 0x2448f: "\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 𤒏
+ 0x24490: "\x03\x02\x05\x03\x05\x04\x04\x05\x01\x02\x03\x04\x01\x02\x03\x04\x04\x03\x03\x04", // 𤒐
+ 0x24491: "\x04\x03\x03\x04\x01\x02\x02\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 𤒑
+ 0x24492: "\x01\x02\x02\x05\x01\x02\x05\x01\x04\x03\x01\x01\x02\x03\x05\x04\x04\x03\x03\x04", // 𤒒
+ 0x24493: "\x01\x05\x03\x04\x02\x05\x01\x01\x01\x05\x03\x04\x02\x05\x01\x01\x04\x03\x03\x04", // 𤒓
+ 0x24494: "\x04\x03\x03\x04\x05\x05\x04\x04\x04\x04\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 𤒔
+ 0x24495: "\x04\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x04\x04\x04\x04", // 𤒕
+ 0x24496: "\x01\x02\x05\x01\x01\x02\x03\x04\x01\x02\x05\x01\x01\x02\x03\x04\x04\x03\x03\x04", // 𤒖
+ 0x24497: "\x03\x05\x04\x01\x04\x03\x03\x04\x01\x02\x05\x02\x03\x04\x01\x02\x05\x02\x03\x04", // 𤒗
+ 0x24498: "\x04\x03\x03\x04\x03\x01\x04\x03\x01\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𤒘
+ 0x24499: "\x03\x04\x03\x03\x03\x04\x01\x02\x05\x01\x05\x02\x01\x03\x05\x04\x04\x04\x04\x04", // 𤒙
+ 0x2449a: "\x04\x03\x03\x04\x04\x04\x01\x02\x05\x01\x02\x02\x01\x01\x03\x01\x01\x05\x03\x04", // 𤒚
+ 0x2449b: "\x04\x03\x03\x04\x01\x01\x01\x02\x03\x04\x01\x03\x01\x01\x05\x03\x04\x01\x02\x04", // 𤒛
+ 0x2449c: "\x01\x02\x05\x01\x01\x05\x03\x04\x01\x02\x05\x01\x01\x05\x03\x04\x04\x04\x04\x04", // 𤒜
+ 0x2449d: "\x03\x02\x05\x01\x01\x01\x04\x04\x05\x01\x03\x05\x03\x03\x03\x04\x04\x03\x03\x04", // 𤒝
+ 0x2449e: "\x05\x04\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x04\x03\x03\x04\x04\x03\x03\x04", // 𤒞
+ 0x2449f: "\x04\x03\x03\x04\x03\x01\x02\x03\x04\x05\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𤒟
+ 0x244a0: "\x04\x03\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 𤒠
+ 0x244a1: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x03\x05\x03\x04\x04\x03\x03\x04", // 𤒡
+ 0x244a2: "\x04\x03\x03\x04\x04\x01\x03\x04\x01\x02\x05\x02\x05\x01\x01\x03\x01\x02\x03\x04", // 𤒢
+ 0x244a3: "\x03\x05\x04\x01\x04\x03\x03\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x01\x05", // 𤒣
+ 0x244a4: "\x04\x03\x03\x04\x01\x02\x02\x01\x01\x01\x05\x05\x04\x05\x05\x04\x05\x03\x02\x02\x01", // 𤒤
+ 0x244a5: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x03\x01\x03\x04\x04\x03\x03\x04", // 𤒥
+ 0x244a6: "\x04\x03\x03\x04\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x03\x01\x03\x04", // 𤒦
+ 0x244a7: "\x03\x05\x04\x01\x04\x03\x03\x04\x01\x03\x04\x04\x03\x02\x05\x01\x01\x04\x03\x03\x04", // 𤒧
+ 0x244a8: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x02\x05\x01\x02\x05\x01", // 𤒨
+ 0x244a9: "\x04\x03\x03\x04\x05\x04\x01\x05\x04\x01\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 𤒩
+ 0x244aa: "\x04\x03\x03\x04\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x01\x03\x04\x03\x05\x04", // 𤒪
+ 0x244ab: "\x04\x03\x03\x04\x02\x05\x01\x01\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x01\x05", // 𤒫
+ 0x244ac: "\x04\x03\x03\x04\x01\x02\x01\x02\x01\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x01\x01", // 𤒬
+ 0x244ad: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x05\x02\x05\x01\x01\x01\x03\x04\x04\x04\x04\x04", // 𤒭
+ 0x244ae: "\x03\x02\x05\x01\x05\x01\x05\x01\x04\x03\x01\x03\x05\x03\x03\x03\x04\x04\x03\x03\x04", // 𤒮
+ 0x244af: "\x04\x03\x03\x04\x03\x04\x03\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 𤒯
+ 0x244b0: "\x04\x03\x03\x04\x03\x05\x02\x05\x01\x01\x05\x03\x05\x03\x05\x02\x05\x01\x03\x05\x04", // 𤒰
+ 0x244b1: "\x04\x03\x03\x04\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01\x02\x03\x04", // 𤒱
+ 0x244b2: "\x04\x03\x03\x04\x04\x01\x03\x02\x05\x01\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x01", // 𤒲
+ 0x244b3: "\x04\x03\x03\x04\x04\x03\x03\x04\x01\x03\x02\x04\x01\x03\x02\x04\x02\x05\x01\x02\x01", // 𤒳
+ 0x244b4: "\x04\x03\x03\x04\x04\x04\x01\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x04\x04\x04\x04", // 𤒴
+ 0x244b5: "\x04\x04\x01\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04\x04\x04\x04\x04", // 𤒵
+ 0x244b6: "\x04\x03\x03\x04\x01\x02\x01\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 𤒶
+ 0x244b7: "\x04\x03\x03\x04\x01\x02\x01\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 𤒷
+ 0x244b8: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01\x04\x04\x04\x04", // 𤒸
+ 0x244b9: "\x04\x03\x03\x04\x02\x05\x01\x02\x01\x01\x02\x01\x02\x01\x01\x02\x01\x02\x01\x01\x02", // 𤒹
+ 0x244ba: "\x04\x03\x03\x04\x02\x05\x01\x01\x05\x02\x02\x05\x02\x01\x03\x04\x04\x03\x01\x02\x03\x04", // 𤒺
+ 0x244bb: "\x04\x03\x03\x04\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 𤒻
+ 0x244bc: "\x04\x01\x03\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04", // 𤒼
+ 0x244bd: "\x04\x03\x03\x04\x01\x02\x01\x02\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𤒽
+ 0x244be: "\x04\x03\x03\x04\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x01\x04\x03\x03\x04", // 𤒾
+ 0x244bf: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 𤒿
+ 0x244c0: "\x04\x03\x03\x04\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x02", // 𤓀
+ 0x244c1: "\x04\x03\x03\x04\x05\x01\x01\x02\x02\x05\x01\x01\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01", // 𤓁
+ 0x244c2: "\x04\x03\x03\x04\x01\x02\x01\x02\x03\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𤓂
+ 0x244c3: "\x04\x03\x03\x04\x03\x01\x04\x03\x01\x04\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01", // 𤓃
+ 0x244c4: "\x04\x03\x03\x04\x01\x02\x03\x04\x04\x05\x03\x04\x04\x04\x04\x04\x05\x02\x01\x05\x05\x04", // 𤓄
+ 0x244c5: "\x02\x05\x02\x04\x03\x01\x04\x03\x03\x04\x04\x03\x03\x04\x05\x01\x03\x01\x03\x05\x03\x05", // 𤓅
+ 0x244c6: "\x04\x03\x03\x04\x01\x02\x02\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01", // 𤓆
+ 0x244c7: "\x04\x03\x03\x04\x01\x01\x02\x01\x03\x05\x02\x05\x03\x04\x02\x05\x01\x01\x01\x03\x05\x04", // 𤓇
+ 0x244c8: "\x04\x03\x03\x04\x01\x02\x01\x02\x03\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x03\x04", // 𤓈
+ 0x244c9: "\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x04\x03\x03\x04", // 𤓉
+ 0x244ca: "\x04\x03\x03\x04\x02\x05\x01\x01\x05\x02\x02\x05\x02\x01\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 𤓊
+ 0x244cb: "\x04\x03\x03\x04\x03\x02\x05\x01\x01\x01\x04\x04\x05\x03\x04\x04\x01\x05\x03\x04\x05\x04", // 𤓋
+ 0x244cc: "\x04\x03\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𤓌
+ 0x244cd: "\x04\x03\x03\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x03\x04\x01\x01\x02\x04\x03\x01", // 𤓍
+ 0x244ce: "\x04\x03\x03\x04\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 𤓎
+ 0x244cf: "\x03\x05\x04\x01\x04\x03\x03\x04\x04\x01\x03\x05\x02\x02\x01\x05\x04\x05\x04\x04\x04\x04\x04", // 𤓏
+ 0x244d0: "\x02\x05\x01\x01\x01\x02\x01\x03\x04\x01\x02\x02\x01\x01\x01\x04\x03\x03\x04\x04\x04\x04\x04", // 𤓐
+ 0x244d1: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x01\x02\x05\x01\x01\x03\x05\x03\x03\x04\x04\x04\x04", // 𤓑
+ 0x244d2: "\x04\x03\x03\x04\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x03\x01\x01\x01\x02\x01\x01\x01", // 𤓒
+ 0x244d3: "\x04\x03\x03\x04\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𤓓
+ 0x244d4: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04\x01\x03\x04", // 𤓔
+ 0x244d5: "\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x04\x05\x04\x03\x03\x04\x04\x03\x03\x04", // 𤓕
+ 0x244d6: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x04\x03\x03\x04", // 𤓖
+ 0x244d7: "\x04\x03\x03\x04\x01\x02\x05\x01\x01\x02\x03\x04\x01\x02\x05\x01\x01\x02\x03\x04\x02\x05\x01\x01", // 𤓗
+ 0x244d8: "\x01\x02\x01\x02\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03\x04\x04\x04\x04", // 𤓘
+ 0x244d9: "\x04\x03\x03\x04\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 𤓙
+ 0x244da: "\x04\x03\x03\x04\x04\x03\x01\x01\x02\x01\x03\x01\x02\x03\x04\x01\x05\x05\x03\x04\x04\x04\x04\x04", // 𤓚
+ 0x244db: "\x04\x03\x03\x04\x02\x04\x03\x01\x03\x05\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𤓛
+ 0x244dc: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𤓜
+ 0x244dd: "\x04\x03\x03\x04\x01\x02\x01\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02", // 𤓝
+ 0x244de: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x01\x04\x03\x03\x04", // 𤓞
+ 0x244df: "\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x04\x03\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04", // 𤓟
+ 0x244e0: "\x04\x03\x03\x04\x02\x05\x02\x05\x03\x04\x04\x04\x04\x04\x01\x02\x05\x01\x01\x02\x05\x01\x05\x02\x02", // 𤓠
+ 0x244e1: "\x04\x03\x03\x04\x03\x04\x04\x03\x02\x05\x02\x02\x01\x03\x04\x04\x04\x04\x04\x05\x02\x01\x05\x05\x04", // 𤓡
+ 0x244e2: "\x04\x03\x03\x04\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 𤓢
+ 0x244e3: "\x04\x03\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04\x02\x05\x02\x02\x01\x05\x01\x01\x05\x04\x01\x02\x04", // 𤓣
+ 0x244e4: "\x02\x01\x05\x03\x01\x05\x03\x05\x04\x03\x05\x02\x01\x05\x03\x01\x05\x03\x05\x04\x03\x05\x04\x03\x03\x04", // 𤓤
+ 0x244e5: "\x04\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x04\x05\x01\x02\x03\x04\x01\x02\x03\x04\x04\x04\x04\x04", // 𤓥
+ 0x244e6: "\x04\x03\x03\x04\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x04\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𤓦
+ 0x244e7: "\x04\x03\x03\x04\x04\x03\x03\x04\x01\x02\x05\x04\x01\x02\x05\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05", // 𤓧
+ 0x244e8: "\x01\x02\x02\x01\x02\x05\x01\x02\x01\x01\x01\x05\x04\x04\x04\x04\x01\x04\x05\x02\x04\x01\x03\x04\x05\x01\x01", // 𤓨
+ 0x244e9: "\x04\x03\x03\x04\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x03\x01\x03\x04", // 𤓩
+ 0x244ea: "\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x04\x03\x03\x04", // 𤓪
+ 0x244eb: "\x03\x02\x05\x01\x05\x01\x05\x01\x05\x01\x05\x01\x05\x01\x05\x04\x03\x03\x04\x04\x03\x01\x03\x05\x03\x03\x03\x04\x05", // 𤓫
+ 0x244ec: "\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 𤓬
+ 0x244ed: "\x04\x03\x03\x04\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x03\x04\x02\x05\x02\x02\x01\x05\x01\x01\x05\x04\x01\x02\x04", // 𤓭
+ 0x244ee: "\x01\x02\x03\x04\x03\x01\x01\x02\x05\x02\x01\x02\x03\x04\x04\x05\x03\x04\x04\x04\x04\x04\x05\x02\x01\x05\x03\x03\x03\x04\x03\x03\x04", // 𤓮
+ 0x244ef: "\x01\x02\x03\x04", // 𤓯
+ 0x244f0: "\x03\x03\x05\x04", // 𤓰
+ 0x244f1: "\x03\x03\x02\x04\x05", // 𤓱
+ 0x244f2: "\x03\x03\x02\x04\x05\x02\x04", // 𤓲
+ 0x244f3: "\x03\x04\x04\x03\x01\x05", // 𤓳
+ 0x244f4: "\x03\x04\x04\x03\x05\x05\x04", // 𤓴
+ 0x244f5: "\x03\x03\x02\x04\x03\x05\x04", // 𤓵
+ 0x244f6: "\x03\x03\x02\x04\x03\x05\x05\x04", // 𤓶
+ 0x244f7: "\x03\x03\x02\x04\x05\x01\x05\x04", // 𤓷
+ 0x244f8: "\x03\x04\x04\x03\x05\x01\x01\x01", // 𤓸
+ 0x244f9: "\x03\x03\x02\x04\x01\x05\x03\x04", // 𤓹
+ 0x244fa: "\x03\x03\x02\x04\x04\x04\x01\x02", // 𤓺
+ 0x244fb: "\x03\x04\x04\x03\x01\x01\x03\x04", // 𤓻
+ 0x244fc: "\x03\x03\x02\x04\x03\x05\x05\x03", // 𤓼
+ 0x244fd: "\x03\x04\x04\x03\x05\x02\x01\x03\x04", // 𤓽
+ 0x244fe: "\x03\x04\x04\x03\x04\x05\x01\x03\x04", // 𤓾
+ 0x244ff: "\x03\x04\x04\x03\x05\x01\x05\x05\x04", // 𤓿
+ 0x24500: "\x03\x03\x02\x04\x05\x03\x01\x05\x04", // 𤔀
+ 0x24501: "\x03\x04\x04\x03\x01\x02\x03\x04\x05", // 𤔁
+ 0x24502: "\x03\x04\x04\x03\x05\x01\x05\x05\x04", // 𤔂
+ 0x24503: "\x03\x04\x04\x03\x05\x04\x05\x02\x03", // 𤔃
+ 0x24504: "\x03\x04\x04\x03\x01\x02\x05\x01\x02", // 𤔄
+ 0x24505: "\x03\x03\x02\x04\x03\x01\x01\x03\x04", // 𤔅
+ 0x24506: "\x03\x04\x04\x03\x03\x05\x01\x01\x02", // 𤔆
+ 0x24507: "\x03\x04\x04\x03\x01\x05\x01\x01\x02", // 𤔇
+ 0x24508: "\x03\x03\x02\x04\x02\x05\x01\x01\x01", // 𤔈
+ 0x24509: "\x03\x03\x02\x04\x02\x05\x01\x02\x01", // 𤔉
+ 0x2450a: "\x03\x04\x04\x03\x05\x03\x01\x02\x01", // 𤔊
+ 0x2450b: "\x03\x03\x02\x04\x01\x05\x01\x05", // 𤔋
+ 0x2450c: "\x03\x04\x04\x03\x01\x02\x01\x05\x01\x01", // 𤔌
+ 0x2450d: "\x03\x04\x04\x03\x05\x04\x05\x02\x03\x04", // 𤔍
+ 0x2450e: "\x01\x02\x01\x02\x05\x01\x03\x03\x02\x04", // 𤔎
+ 0x2450f: "\x03\x03\x02\x04\x03\x01\x01\x02\x03\x04", // 𤔏
+ 0x24510: "\x03\x04\x04\x03\x04\x05\x05\x05\x04\x05\x04", // 𤔐
+ 0x24511: "\x03\x03\x02\x04\x02\x05\x01\x03\x02\x05\x01", // 𤔑
+ 0x24512: "\x03\x04\x04\x03\x01\x05\x04\x01\x01\x01\x02", // 𤔒
+ 0x24513: "\x03\x04\x04\x03\x04\x05\x02\x05\x01\x03\x05", // 𤔓
+ 0x24514: "\x03\x04\x04\x03\x05\x04\x02\x05\x05\x04\x05\x04", // 𤔔
+ 0x24515: "\x05\x05\x03\x03\x04\x04\x03\x04\x01\x01\x02\x01", // 𤔕
+ 0x24516: "\x02\x05\x01\x01\x01\x02\x03\x04\x03\x03\x02\x04", // 𤔖
+ 0x24517: "\x02\x05\x03\x05\x01\x02\x01\x01\x03\x03\x02\x04", // 𤔗
+ 0x24518: "\x03\x04\x04\x03\x03\x02\x01\x01\x05\x01\x01\x01", // 𤔘
+ 0x24519: "\x03\x03\x02\x04\x03\x03\x02\x04\x03\x03\x02\x04", // 𤔙
+ 0x2451a: "\x04\x05\x01\x03\x02\x05\x03\x04\x03\x03\x02\x04", // 𤔚
+ 0x2451b: "\x01\x02\x02\x01\x01\x01\x05\x04\x03\x03\x02\x04", // 𤔛
+ 0x2451c: "\x03\x03\x02\x04\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 𤔜
+ 0x2451d: "\x02\x05\x01\x01\x02\x05\x02\x01\x04\x03\x03\x02\x04", // 𤔝
+ 0x2451e: "\x03\x04\x04\x03\x02\x05\x01\x03\x05\x03\x05\x05\x04", // 𤔞
+ 0x2451f: "\x04\x01\x03\x04\x01\x03\x02\x05\x02\x03\x03\x02\x04", // 𤔟
+ 0x24520: "\x03\x04\x04\x03\x04\x05\x05\x02\x03\x03\x01\x03\x04", // 𤔠
+ 0x24521: "\x03\x04\x04\x03\x04\x03\x05\x05\x05\x04\x04\x04\x04", // 𤔡
+ 0x24522: "\x03\x03\x02\x04\x04\x05\x04\x04\x02\x05\x01\x02\x01\x04", // 𤔢
+ 0x24523: "\x03\x04\x04\x03\x03\x02\x01\x01\x05\x01\x01\x02\x05\x04", // 𤔣
+ 0x24524: "\x03\x04\x04\x03\x04\x05\x03\x01\x02\x01\x03\x01\x03\x04", // 𤔤
+ 0x24525: "\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01\x01\x02\x03\x04", // 𤔥
+ 0x24526: "\x03\x04\x04\x03\x02\x05\x01\x02\x05\x03\x05\x02\x05\x01", // 𤔦
+ 0x24527: "\x03\x04\x04\x03\x05\x01\x02\x05\x05\x04\x05\x04\x01\x01\x05", // 𤔧
+ 0x24528: "\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x03\x03\x02\x04", // 𤔨
+ 0x24529: "\x03\x03\x02\x04\x02\x05\x01\x02\x05\x01\x01\x05\x03\x04\x01", // 𤔩
+ 0x2452a: "\x03\x04\x04\x03\x05\x05\x04\x05\x05\x04\x05\x05\x04\x05\x04", // 𤔪
+ 0x2452b: "\x03\x04\x04\x03\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 𤔫
+ 0x2452c: "\x03\x04\x04\x03\x02\x05\x01\x02\x05\x02\x02\x05\x01\x05\x04", // 𤔬
+ 0x2452d: "\x03\x04\x04\x03\x05\x05\x04\x05\x05\x04\x05\x05\x04\x01\x02", // 𤔭
+ 0x2452e: "\x03\x03\x02\x04\x02\x05\x02\x01\x01\x02\x03\x04\x02\x01\x05\x04", // 𤔮
+ 0x2452f: "\x03\x03\x02\x04\x03\x01\x04\x03\x01\x04\x05\x01\x01\x01\x01\x02", // 𤔯
+ 0x24530: "\x03\x04\x04\x03\x05\x01\x03\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 𤔰
+ 0x24531: "\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01\x02\x05\x01\x02\x02\x01", // 𤔱
+ 0x24532: "\x03\x04\x04\x03\x05\x04\x02\x05\x05\x04\x05\x04\x05\x01\x02\x05\x01", // 𤔲
+ 0x24533: "\x03\x04\x04\x03\x01\x04\x03\x01\x02\x03\x04\x05\x05\x04\x02\x03\x04", // 𤔳
+ 0x24534: "\x03\x04\x04\x03\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x05\x05\x02", // 𤔴
+ 0x24535: "\x03\x04\x04\x03\x02\x05\x02\x02\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 𤔵
+ 0x24536: "\x03\x03\x02\x04\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x01\x02\x01", // 𤔶
+ 0x24537: "\x05\x03\x05\x04\x02\x05\x02\x02\x01\x03\x04\x04\x03\x05\x01\x01\x02", // 𤔷
+ 0x24538: "\x03\x04\x04\x03\x04\x05\x03\x05\x05\x01\x01\x05\x04\x01\x02\x04", // 𤔸
+ 0x24539: "\x03\x04\x04\x03\x01\x03\x02\x04\x03\x04\x02\x01\x03\x02\x04\x03\x04\x02", // 𤔹
+ 0x2453a: "\x03\x04\x04\x03\x05\x04\x02\x05\x01\x02\x02\x01\x02\x04\x05\x01\x02\x05\x01", // 𤔺
+ 0x2453b: "\x01\x02\x02\x02\x05\x02\x02\x01\x04\x05\x03\x05\x04\x03\x03\x02\x04", // 𤔻
+ 0x2453c: "\x05\x01\x02\x03\x04\x04\x03\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01", // 𤔼
+ 0x2453d: "\x03\x03\x02\x04\x01\x02\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 𤔽
+ 0x2453e: "\x01\x02\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04\x03\x03\x02\x04", // 𤔾
+ 0x2453f: "\x03\x04\x04\x03\x05\x01\x03\x02\x02\x02\x01\x02\x01\x05\x01\x05\x03\x05\x04", // 𤔿
+ 0x24540: "\x03\x04\x04\x03\x05\x05\x04\x05\x05\x04\x05\x05\x04\x04\x04\x05\x05\x03\x01", // 𤕀
+ 0x24541: "\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02\x03\x04\x04\x03\x02\x05\x01\x05\x01", // 𤕁
+ 0x24542: "\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03", // 𤕂
+ 0x24543: "\x03\x04\x04\x03\x04\x05\x04\x03\x01\x02\x03\x04\x03\x05\x05\x03\x01\x03\x04\x04", // 𤕃
+ 0x24544: "\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01\x03\x05", // 𤕄
+ 0x24545: "\x03\x04\x04\x03\x05\x04\x02\x05\x05\x04\x05\x04\x03\x05\x03\x01\x01\x02\x05\x02", // 𤕅
+ 0x24546: "\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02\x05\x05\x05\x02\x05\x01\x05\x02\x01\x05", // 𤕆
+ 0x24547: "\x03\x04\x04\x03\x05\x03\x01\x03\x04\x04\x03\x05\x03\x01\x03\x04\x04\x03\x05\x03\x01", // 𤕇
+ 0x24548: "\x03\x04\x04\x03\x02\x05\x01\x03\x02\x05\x01\x05\x05\x05\x05\x02\x02\x05\x01\x03\x02\x05\x01", // 𤕈
+ 0x24549: "\x03\x03\x02\x04\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x04\x05\x04\x03\x03\x04", // 𤕉
+ 0x2454a: "\x03\x03\x02\x04\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x04\x05\x02\x05\x01\x01\x01", // 𤕊
+ 0x2454b: "\x02\x04\x03\x03\x05\x05\x03\x04\x04\x03\x05\x01\x05\x01\x02\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 𤕋
+ 0x2454c: "\x03\x04\x04\x03\x05\x04\x02\x05\x05\x04\x05\x04\x01\x02\x05\x01\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 𤕌
+ 0x2454d: "\x03\x04\x04\x03\x02\x05\x01\x03\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x01\x02", // 𤕍
+ 0x2454e: "\x03\x04\x03\x04\x01\x01\x02", // 𤕎
+ 0x2454f: "\x03\x04\x03\x04\x02\x05\x02", // 𤕏
+ 0x24550: "\x01\x02\x04\x05\x03\x04\x03\x04", // 𤕐
+ 0x24551: "\x03\x04\x03\x04\x01\x01\x03\x02", // 𤕑
+ 0x24552: "\x03\x04\x03\x04\x01\x02\x05\x01\x02", // 𤕒
+ 0x24553: "\x03\x04\x03\x04\x01\x05\x02\x03\x05\x02", // 𤕓
+ 0x24554: "\x02\x05\x01\x03\x01\x05\x03\x04\x03\x04", // 𤕔
+ 0x24555: "\x03\x04\x03\x04\x02\x05\x01\x05\x02\x01\x05", // 𤕕
+ 0x24556: "\x03\x04\x03\x04\x01\x02\x02\x01\x01\x01\x05\x04", // 𤕖
+ 0x24557: "\x03\x04\x03\x04\x03\x02\x01\x05\x01\x01\x05\x04", // 𤕗
+ 0x24558: "\x03\x04\x03\x04\x02\x05\x02\x02\x05\x02\x03\x05\x04", // 𤕘
+ 0x24559: "\x03\x04\x03\x04\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𤕙
+ 0x2455a: "\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x04\x03\x04", // 𤕚
+ 0x2455b: "\x03\x04\x03\x04\x04\x03\x01\x01\x01\x03\x03\x05\x03\x01\x01\x02", // 𤕛
+ 0x2455c: "\x03\x04\x01\x03\x04", // 𤕜
+ 0x2455d: "\x03\x04\x03\x04\x02\x01\x05\x04", // 𤕝
+ 0x2455e: "\x03\x04\x03\x04\x04\x04\x05\x01\x02", // 𤕞
+ 0x2455f: "\x03\x04\x03\x04\x05\x02\x01\x03\x04", // 𤕟
+ 0x24560: "\x03\x04\x03\x04\x04\x04\x05\x01\x02\x04", // 𤕠
+ 0x24561: "\x01\x03\x05\x04\x03\x04\x03\x04\x03\x04", // 𤕡
+ 0x24562: "\x03\x04\x03\x04\x03\x01\x03\x04\x05\x03\x01", // 𤕢
+ 0x24563: "\x02\x05\x03\x04\x03\x04\x03\x04\x03\x04\x01\x05", // 𤕣
+ 0x24564: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x03\x04", // 𤕤
+ 0x24565: "\x03\x04\x03\x04\x01\x05\x02\x05\x01\x01\x01\x03\x05", // 𤕥
+ 0x24566: "\x02\x05\x01\x02\x05\x01\x05\x01\x05\x01\x02\x01\x03\x04\x03\x04", // 𤕦
+ 0x24567: "\x02\x05\x01\x02\x05\x01\x03\x04\x01\x02\x01\x03\x04\x03\x04", // 𤕧
+ 0x24568: "\x03\x04\x04\x03\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𤕨
+ 0x24569: "\x01\x02\x03\x04\x03\x06\x04\x03\x04\x01\x02\x03\x04\x05\x04\x05\x05", // 𤕩
+ 0x2456a: "\x02\x05\x01\x01\x05", // 𤕪
+ 0x2456b: "\x01\x03\x05\x01\x03", // 𤕫
+ 0x2456c: "\x05\x02\x01\x03\x01", // 𤕬
+ 0x2456d: "\x05\x02\x01\x03\x05\x04", // 𤕭
+ 0x2456e: "\x05\x02\x01\x03\x05\x02\x05", // 𤕮
+ 0x2456f: "\x05\x02\x01\x03\x02\x05\x03\x04", // 𤕯
+ 0x24570: "\x05\x02\x01\x03\x02\x01\x02\x05", // 𤕰
+ 0x24571: "\x05\x02\x01\x03\x05\x01\x05\x04", // 𤕱
+ 0x24572: "\x05\x02\x01\x03\x02\x05\x01\x01\x01", // 𤕲
+ 0x24573: "\x05\x02\x01\x03\x01\x03\x03\x04\x04", // 𤕳
+ 0x24574: "\x05\x02\x01\x03\x03\x01\x05\x02\x05", // 𤕴
+ 0x24575: "\x05\x02\x01\x03\x03\x04\x01\x05\x04", // 𤕵
+ 0x24576: "\x05\x02\x01\x03\x03\x05\x04\x01\x03\x04", // 𤕶
+ 0x24577: "\x05\x02\x01\x03\x03\x04\x01\x05\x03\x04", // 𤕷
+ 0x24578: "\x05\x02\x01\x03\x04\x01\x03\x01\x02\x01", // 𤕸
+ 0x24579: "\x05\x02\x01\x03\x01\x02\x05\x02\x03\x04", // 𤕹
+ 0x2457a: "\x01\x03\x05\x01\x03\x03\x01\x01\x03\x04", // 𤕺
+ 0x2457b: "\x05\x02\x01\x03\x01\x02\x05\x01\x02\x05\x01", // 𤕻
+ 0x2457c: "\x05\x02\x01\x03\x03\x01\x03\x01\x01\x03\x04", // 𤕼
+ 0x2457d: "\x05\x02\x01\x03\x03\x04\x03\x01\x02\x03\x04", // 𤕽
+ 0x2457e: "\x05\x02\x01\x03\x01\x02\x04\x01\x03\x04\x04", // 𤕾
+ 0x2457f: "\x05\x02\x01\x03\x05\x01\x02\x01\x01\x02\x01", // 𤕿
+ 0x24580: "\x05\x02\x01\x03\x03\x05\x04\x01\x01\x01\x02", // 𤖀
+ 0x24581: "\x05\x02\x01\x03\x02\x01\x02\x01\x01\x01\x02", // 𤖁
+ 0x24582: "\x05\x02\x01\x03\x01\x02\x05\x01\x02\x03\x04", // 𤖂
+ 0x24583: "\x05\x02\x01\x03\x02\x05\x01\x01\x02\x01\x01", // 𤖃
+ 0x24584: "\x05\x02\x01\x03\x02\x01\x04\x05\x01\x01\x03\x02", // 𤖄
+ 0x24585: "\x05\x02\x01\x03\x03\x05\x04\x01\x02\x05\x03\x04", // 𤖅
+ 0x24586: "\x05\x02\x01\x03\x01\x05\x03\x04\x01\x05\x03\x04", // 𤖆
+ 0x24587: "\x05\x02\x01\x03\x02\x05\x01\x01\x01\x02\x03\x04", // 𤖇
+ 0x24588: "\x05\x02\x01\x03\x02\x01\x03\x05\x04\x01\x03\x04", // 𤖈
+ 0x24589: "\x05\x02\x01\x03\x03\x01\x05\x01\x01\x02\x03\x04", // 𤖉
+ 0x2458a: "\x05\x02\x01\x03\x02\x01\x04\x05\x01\x01\x03\x04", // 𤖊
+ 0x2458b: "\x05\x02\x01\x03\x01\x01\x02\x05\x01\x02\x05\x05", // 𤖋
+ 0x2458c: "\x05\x02\x01\x03\x04\x01\x05\x03\x03\x01\x05\x02\x05", // 𤖌
+ 0x2458d: "\x05\x02\x01\x03\x03\x05\x04\x05\x03\x01\x01\x02\x01", // 𤖍
+ 0x2458e: "\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x01\x02\x05", // 𤖎
+ 0x2458f: "\x05\x02\x01\x03\x04\x01\x03\x04\x01\x03\x01\x01\x03\x04", // 𤖏
+ 0x24590: "\x05\x02\x01\x03\x01\x02\x02\x01\x03\x03\x05\x01\x01\x02", // 𤖐
+ 0x24591: "\x05\x02\x01\x03\x04\x01\x03\x01\x02\x05\x01\x01\x02\x04", // 𤖑
+ 0x24592: "\x05\x02\x01\x03\x05\x04\x05\x04\x05\x04\x01\x02\x03\x04", // 𤖒
+ 0x24593: "\x05\x02\x01\x03\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𤖓
+ 0x24594: "\x05\x02\x01\x03\x01\x03\x01\x02\x05\x01\x02\x05\x05\x03\x04", // 𤖔
+ 0x24595: "\x05\x02\x01\x03\x03\x05\x04\x01\x01\x02\x05\x03\x05\x01\x01", // 𤖕
+ 0x24596: "\x05\x02\x01\x03\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04", // 𤖖
+ 0x24597: "\x05\x02\x01\x03\x05\x03\x04\x02\x01\x02\x01\x05\x03\x04\x02\x01\x02\x01", // 𤖗
+ 0x24598: "\x05\x02\x01\x03\x01\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 𤖘
+ 0x24599: "\x05\x02\x01\x03\x01\x02\x05\x03\x05\x01\x01\x02\x05\x02\x02\x01", // 𤖙
+ 0x2459a: "\x05\x02\x01\x03\x03\x01\x03\x04\x03\x01\x03\x04\x01\x01\x01\x01\x01", // 𤖚
+ 0x2459b: "\x05\x02\x01\x03\x03\x05\x04\x04\x01\x02\x04\x02\x05\x01\x01\x01", // 𤖛
+ 0x2459c: "\x05\x02\x01\x03\x01\x04\x05\x02\x04\x01\x03\x04\x03\x04\x01\x05\x04", // 𤖜
+ 0x2459d: "\x05\x02\x01\x03\x03\x05\x01\x03\x03\x05\x04\x01\x01\x01\x02\x05\x01", // 𤖝
+ 0x2459e: "\x05\x02\x01\x03\x02\x05\x01\x01\x02\x02\x01\x01\x01\x01\x05\x03\x04", // 𤖞
+ 0x2459f: "\x05\x02\x01\x03\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 𤖟
+ 0x245a0: "\x05\x02\x01\x03\x01\x03\x04\x03\x04\x02\x03\x04\x01\x02\x05\x02\x05\x01\x01", // 𤖠
+ 0x245a1: "\x05\x02\x01\x03\x04\x04\x05\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 𤖡
+ 0x245a2: "\x05\x02\x01\x03\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 𤖢
+ 0x245a3: "\x05\x02\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x04\x01\x02\x05\x02\x05\x01\x01", // 𤖣
+ 0x245a4: "\x05\x02\x01\x03\x01\x02\x05\x02\x02\x01\x02\x05\x02\x02\x01\x02\x05\x02\x02\x01\x01\x03\x04", // 𤖤
+ 0x245a5: "\x05\x02\x01\x03\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x02\x04\x03\x01", // 𤖥
+ 0x245a6: "\x05\x02\x01\x03\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x03\x04\x01", // 𤖦
+ 0x245a7: "\x05\x02\x01\x03\x01\x03\x04\x03\x04\x02\x03\x04\x01\x03\x04\x03\x04\x02\x03\x04\x04\x01\x02\x05\x02\x05\x01\x01", // 𤖧
+ 0x245a8: "\x03\x02\x01\x05\x05", // 𤖨
+ 0x245a9: "\x03\x02\x01\x05\x05\x03\x01", // 𤖩
+ 0x245aa: "\x03\x02\x01\x05\x05\x02\x05", // 𤖪
+ 0x245ab: "\x03\x02\x01\x05\x03\x05\x04", // 𤖫
+ 0x245ac: "\x03\x02\x01\x05\x03\x05\x05\x04", // 𤖬
+ 0x245ad: "\x03\x02\x01\x05\x03\x05\x05\x03", // 𤖭
+ 0x245ae: "\x03\x02\x01\x05\x03\x05\x05\x04", // 𤖮
+ 0x245af: "\x03\x02\x01\x05\x01\x03\x02\x04", // 𤖯
+ 0x245b0: "\x03\x02\x01\x05\x05\x01\x05\x04", // 𤖰
+ 0x245b1: "\x03\x02\x01\x05\x03\x01\x02\x03\x04", // 𤖱
+ 0x245b2: "\x03\x02\x01\x05\x01\x02\x02\x05\x01", // 𤖲
+ 0x245b3: "\x03\x02\x01\x05\x01\x04\x03\x01\x02", // 𤖳
+ 0x245b4: "\x03\x02\x01\x05\x03\x03\x01\x02\x04", // 𤖴
+ 0x245b5: "\x03\x02\x01\x05\x03\x05\x02\x05\x01", // 𤖵
+ 0x245b6: "\x03\x02\x01\x05\x01\x02\x05\x03\x04", // 𤖶
+ 0x245b7: "\x03\x02\x01\x05\x05\x03\x02\x05\x04", // 𤖷
+ 0x245b8: "\x03\x02\x01\x05\x04\x01\x01\x02\x01", // 𤖸
+ 0x245b9: "\x03\x02\x01\x05\x04\x01\x04\x03\x01", // 𤖹
+ 0x245ba: "\x03\x02\x01\x05\x01\x03\x05\x04\x02\x02", // 𤖺
+ 0x245bb: "\x03\x02\x01\x05\x03\x05\x04\x03\x05\x04", // 𤖻
+ 0x245bc: "\x03\x02\x01\x05\x03\x03\x03\x05\x03\x04", // 𤖼
+ 0x245bd: "\x03\x02\x01\x05\x03\x02\x05\x02\x05\x01", // 𤖽
+ 0x245be: "\x03\x02\x01\x05\x02\x05\x01\x02\x05\x01", // 𤖾
+ 0x245bf: "\x03\x02\x01\x05\x03\x02\x03\x05\x01\x05", // 𤖿
+ 0x245c0: "\x03\x02\x01\x05\x04\x05\x01\x01\x05\x03\x04", // 𤗀
+ 0x245c1: "\x03\x02\x01\x05\x02\x05\x01\x02\x01\x03\x04", // 𤗁
+ 0x245c2: "\x03\x02\x01\x05\x01\x02\x04\x01\x03\x04\x04", // 𤗂
+ 0x245c3: "\x03\x02\x01\x05\x01\x02\x05\x01\x01\x02\x04", // 𤗃
+ 0x245c4: "\x03\x02\x01\x05\x03\x02\x05\x03\x05\x04\x01", // 𤗄
+ 0x245c5: "\x03\x02\x01\x05\x05\x04\x03\x05\x01\x01\x05", // 𤗅
+ 0x245c6: "\x03\x02\x01\x05\x03\x01\x05\x05\x04\x01\x04", // 𤗆
+ 0x245c7: "\x03\x02\x01\x05\x04\x04\x05\x03\x05\x01\x02\x01", // 𤗇
+ 0x245c8: "\x03\x02\x01\x05\x04\x01\x04\x03\x01\x05\x03\x01", // 𤗈
+ 0x245c9: "\x03\x02\x01\x05\x03\x05\x05\x04\x04\x05\x04\x04", // 𤗉
+ 0x245ca: "\x03\x02\x01\x05\x04\x01\x05\x04\x01\x02\x03\x04", // 𤗊
+ 0x245cb: "\x03\x02\x01\x05\x03\x01\x01\x01\x02\x01\x01\x01", // 𤗋
+ 0x245cc: "\x03\x02\x01\x05\x03\x05\x04\x02\x05\x01\x02\x01", // 𤗌
+ 0x245cd: "\x03\x02\x01\x05\x04\x04\x05\x03\x05\x04\x05\x05", // 𤗍
+ 0x245ce: "\x03\x02\x01\x05\x01\x03\x04\x02\x05\x01\x01\x05", // 𤗎
+ 0x245cf: "\x03\x02\x01\x05\x04\x01\x04\x03\x01\x02\x05\x01", // 𤗏
+ 0x245d0: "\x03\x02\x01\x05\x03\x05\x01\x03\x04\x01\x05\x03", // 𤗐
+ 0x245d1: "\x03\x02\x01\x05\x02\x01\x05\x03\x01\x05\x03\x05", // 𤗑
+ 0x245d2: "\x03\x02\x01\x05\x04\x01\x03\x05\x04\x01\x05\x03", // 𤗒
+ 0x245d3: "\x03\x02\x01\x05\x05\x02\x01\x01\x01\x05\x03\x04", // 𤗓
+ 0x245d4: "\x04\x01\x04\x03\x01\x01\x01\x02\x03\x02\x01\x05", // 𤗔
+ 0x245d5: "\x03\x02\x01\x05\x01\x02\x05\x03\x01\x05\x03\x05", // 𤗕
+ 0x245d6: "\x03\x02\x01\x05\x05\x02\x01\x02\x05\x02\x02\x01", // 𤗖
+ 0x245d7: "\x03\x02\x01\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 𤗗
+ 0x245d8: "\x03\x02\x01\x05\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 𤗘
+ 0x245d9: "\x03\x02\x01\x05\x04\x01\x03\x04\x03\x01\x05\x02\x03", // 𤗙
+ 0x245da: "\x03\x02\x01\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 𤗚
+ 0x245db: "\x03\x02\x01\x05\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 𤗛
+ 0x245dc: "\x03\x02\x01\x05\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 𤗜
+ 0x245dd: "\x03\x01\x02\x05\x03\x02\x01\x05\x01\x01\x03\x04", // 𤗝
+ 0x245de: "\x03\x01\x02\x05\x04\x01\x02\x05\x01\x04\x05\x01\x02", // 𤗞
+ 0x245df: "\x04\x01\x04\x03\x01\x01\x02\x03\x04\x03\x02\x01\x05", // 𤗟
+ 0x245e0: "\x03\x02\x01\x05\x03\x01\x02\x03\x04\x03\x04\x05\x02", // 𤗠
+ 0x245e1: "\x01\x02\x01\x03\x02\x05\x01\x01\x03\x02\x01\x05", // 𤗡
+ 0x245e2: "\x03\x02\x01\x05\x03\x03\x02\x01\x05\x03\x01\x05\x03\x05", // 𤗢
+ 0x245e3: "\x03\x02\x01\x05\x01\x01\x02\x01\x02\x05\x01\x02\x03\x04", // 𤗣
+ 0x245e4: "\x03\x02\x01\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𤗤
+ 0x245e5: "\x03\x02\x01\x05\x01\x02\x01\x02\x01\x02\x01\x02\x03\x04", // 𤗥
+ 0x245e6: "\x03\x02\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𤗦
+ 0x245e7: "\x03\x02\x01\x05\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𤗧
+ 0x245e8: "\x03\x02\x01\x05\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01", // 𤗨
+ 0x245e9: "\x03\x02\x01\x05\x02\x01\x02\x01\x03\x05\x03\x05\x01\x01\x02", // 𤗩
+ 0x245ea: "\x03\x02\x01\x05\x04\x01\x05\x05\x04\x04\x01\x03\x04\x01\x02", // 𤗪
+ 0x245eb: "\x03\x02\x01\x05\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 𤗫
+ 0x245ec: "\x03\x02\x01\x05\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 𤗬
+ 0x245ed: "\x03\x02\x01\x05\x02\x01\x05\x03\x01\x05\x03\x04\x03\x01\x02", // 𤗭
+ 0x245ee: "\x03\x02\x01\x05\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𤗮
+ 0x245ef: "\x03\x02\x01\x05\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𤗯
+ 0x245f0: "\x03\x02\x01\x05\x01\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01", // 𤗰
+ 0x245f1: "\x03\x02\x01\x05\x02\x05\x01\x01\x01\x02\x05\x01\x01\x02\x04", // 𤗱
+ 0x245f2: "\x03\x02\x01\x05\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 𤗲
+ 0x245f3: "\x03\x02\x01\x05\x05\x04\x03\x03\x04\x05\x01\x05\x03\x05\x05\x04", // 𤗳
+ 0x245f4: "\x03\x02\x01\x05\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𤗴
+ 0x245f5: "\x03\x02\x01\x05\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 𤗵
+ 0x245f6: "\x03\x02\x01\x05\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04", // 𤗶
+ 0x245f7: "\x03\x02\x01\x05\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 𤗷
+ 0x245f8: "\x03\x02\x01\x05\x01\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 𤗸
+ 0x245f9: "\x03\x02\x01\x05\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 𤗹
+ 0x245fa: "\x03\x02\x01\x05\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 𤗺
+ 0x245fb: "\x03\x02\x01\x05\x03\x05\x01\x03\x03\x05\x04\x01\x01\x01\x02\x05\x01", // 𤗻
+ 0x245fc: "\x03\x02\x01\x05\x01\x02\x03\x04\x03\x04\x01\x02\x05\x02\x05\x01\x01", // 𤗼
+ 0x245fd: "\x03\x02\x01\x05\x01\x02\x01\x02\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 𤗽
+ 0x245fe: "\x03\x02\x01\x05\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x01\x02\x01", // 𤗾
+ 0x245ff: "\x03\x02\x01\x05\x01\x02\x01\x02\x05\x01\x04\x05\x01\x05\x04\x01\x02\x01", // 𤗿
+ 0x24600: "\x03\x02\x01\x05\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 𤘀
+ 0x24601: "\x03\x02\x01\x05\x01\x02\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 𤘁
+ 0x24602: "\x03\x02\x01\x05\x01\x02\x02\x02\x05\x02\x02\x01\x04\x05\x03\x05\x04", // 𤘂
+ 0x24603: "\x03\x02\x01\x05\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 𤘃
+ 0x24604: "\x03\x02\x01\x05\x01\x02\x01\x02\x05\x03\x05\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𤘄
+ 0x24605: "\x01\x05\x02\x03\x05\x02\x01", // 𤘅
+ 0x24606: "\x01\x05\x02\x03\x01\x05\x02\x03", // 𤘆
+ 0x24607: "\x01\x05\x02\x03\x02\x01\x02\x05\x01", // 𤘇
+ 0x24608: "\x01\x05\x02\x03\x03\x02\x01\x05\x01\x01", // 𤘈
+ 0x24609: "\x01\x05\x02\x03\x02\x05\x03\x05\x01\x01", // 𤘉
+ 0x2460a: "\x01\x05\x02\x03\x03\x04\x05\x03\x05\x02", // 𤘊
+ 0x2460b: "\x01\x05\x02\x03\x03\x01\x02\x01\x05\x03\x04", // 𤘋
+ 0x2460c: "\x01\x05\x02\x03\x01\x03\x04\x01\x02\x05\x01\x02", // 𤘌
+ 0x2460d: "\x01\x05\x02\x03\x02\x01\x01\x05\x01\x05\x02", // 𤘍
+ 0x2460e: "\x01\x05\x02\x03\x05\x02\x01\x02\x05\x01\x05\x01", // 𤘎
+ 0x2460f: "\x01\x05\x02\x03\x03\x05\x01\x05\x02\x05\x01\x01", // 𤘏
+ 0x24610: "\x01\x05\x02\x03\x03\x02\x05\x01\x02\x05\x02\x01\x04", // 𤘐
+ 0x24611: "\x01\x05\x02\x03\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 𤘑
+ 0x24612: "\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04\x01\x05\x02\x03", // 𤘒
+ 0x24613: "\x01\x05\x02\x03\x04\x04\x05\x04\x05\x04\x04\x02\x05\x02\x02\x01\x01\x02", // 𤘓
+ 0x24614: "\x01\x03\x01\x01\x02", // 𤘔
+ 0x24615: "\x03\x01\x02\x01\x05\x05", // 𤘕
+ 0x24616: "\x03\x01\x02\x01\x01\x02", // 𤘖
+ 0x24617: "\x03\x01\x02\x01\x05\x05", // 𤘗
+ 0x24618: "\x03\x01\x02\x01\x02\x05\x01", // 𤘘
+ 0x24619: "\x03\x01\x02\x01\x05\x03\x01", // 𤘙
+ 0x2461a: "\x03\x01\x02\x01\x01\x05\x04", // 𤘚
+ 0x2461b: "\x03\x01\x02\x01\x03\x01\x05", // 𤘛
+ 0x2461c: "\x03\x01\x02\x01\x01\x03\x05\x04", // 𤘜
+ 0x2461d: "\x03\x05\x05\x03\x03\x01\x01\x02", // 𤘝
+ 0x2461e: "\x03\x01\x02\x01\x05\x03\x04\x04", // 𤘞
+ 0x2461f: "\x03\x01\x02\x01\x03\x05\x01\x01", // 𤘟
+ 0x24620: "\x03\x01\x02\x01\x01\x01\x03\x04", // 𤘠
+ 0x24621: "\x03\x01\x02\x01\x03\x04\x01\x05", // 𤘡
+ 0x24622: "\x03\x01\x02\x01\x01\x03\x02\x04", // 𤘢
+ 0x24623: "\x03\x01\x02\x01\x04\x05\x03\x05", // 𤘣
+ 0x24624: "\x01\x05\x01\x05\x03\x01\x01\x02", // 𤘤
+ 0x24625: "\x03\x01\x02\x01\x01\x05\x01\x05", // 𤘥
+ 0x24626: "\x03\x01\x02\x01\x03\x04\x03\x02", // 𤘦
+ 0x24627: "\x03\x01\x01\x02\x03\x01\x01\x02", // 𤘧
+ 0x24628: "\x03\x04\x04\x05\x03\x01\x01\x02", // 𤘨
+ 0x24629: "\x05\x04\x05\x04\x03\x01\x01\x02", // 𤘩
+ 0x2462a: "\x03\x01\x02\x01\x03\x05\x04\x01", // 𤘪
+ 0x2462b: "\x03\x01\x02\x01\x01\x05\x02\x05", // 𤘫
+ 0x2462c: "\x03\x01\x02\x01\x01\x02\x03\x04", // 𤘬
+ 0x2462d: "\x03\x01\x02\x01\x04\x03\x03\x04", // 𤘭
+ 0x2462e: "\x01\x03\x02\x04\x03\x01\x01\x02", // 𤘮
+ 0x2462f: "\x03\x01\x02\x01\x03\x05\x03\x04", // 𤘯
+ 0x24630: "\x04\x05\x03\x05\x03\x01\x01\x02", // 𤘰
+ 0x24631: "\x03\x01\x02\x01\x01\x02\x03\x05", // 𤘱
+ 0x24632: "\x03\x01\x02\x01\x01\x03\x04\x04", // 𤘲
+ 0x24633: "\x03\x01\x02\x01\x01\x05\x05\x04", // 𤘳
+ 0x24634: "\x03\x01\x02\x01\x02\x01\x05\x04", // 𤘴
+ 0x24635: "\x02\x05\x01\x01\x03\x01\x01\x02", // 𤘵
+ 0x24636: "\x03\x01\x02\x01\x03\x01\x01\x02", // 𤘶
+ 0x24637: "\x03\x01\x02\x01\x03\x05\x03\x05", // 𤘷
+ 0x24638: "\x03\x01\x02\x01\x05\x02\x02\x05\x04", // 𤘸
+ 0x24639: "\x03\x01\x02\x01\x01\x03\x02\x04\x01", // 𤘹
+ 0x2463a: "\x03\x01\x02\x01\x04\x04\x05\x03\x05", // 𤘺
+ 0x2463b: "\x03\x01\x02\x01\x03\x02\x05\x03\x04", // 𤘻
+ 0x2463c: "\x03\x01\x02\x01\x02\x05\x02\x01\x01", // 𤘼
+ 0x2463d: "\x03\x01\x02\x01\x03\x05\x02\x05\x01", // 𤘽
+ 0x2463e: "\x03\x01\x02\x01\x01\x04\x03\x01\x02", // 𤘾
+ 0x2463f: "\x02\x01\x01\x01\x05\x03\x01\x01\x02", // 𤘿
+ 0x24640: "\x03\x01\x02\x01\x01\x03\x05\x01\x05", // 𤙀
+ 0x24641: "\x03\x01\x02\x01\x03\x04\x03\x03\x03", // 𤙁
+ 0x24642: "\x03\x01\x02\x01\x01\x02\x05\x02\x03", // 𤙂
+ 0x24643: "\x03\x01\x02\x01\x01\x02\x03\x04\x01", // 𤙃
+ 0x24644: "\x05\x03\x02\x05\x01\x03\x01\x01\x02", // 𤙄
+ 0x24645: "\x03\x01\x02\x01\x01\x03\x02\x05\x02", // 𤙅
+ 0x24646: "\x03\x01\x02\x01\x01\x05\x05\x01\x01", // 𤙆
+ 0x24647: "\x03\x01\x02\x01\x02\x05\x01\x01\x02", // 𤙇
+ 0x24648: "\x03\x01\x02\x01\x03\x01\x01\x03\x04", // 𤙈
+ 0x24649: "\x03\x01\x02\x01\x02\x05\x02\x01\x01", // 𤙉
+ 0x2464a: "\x03\x01\x02\x01\x03\x05\x01\x01\x01", // 𤙊
+ 0x2464b: "\x03\x05\x04\x04\x05\x03\x01\x01\x02", // 𤙋
+ 0x2464c: "\x03\x01\x02\x01\x05\x01\x03\x01\x05", // 𤙌
+ 0x2464d: "\x03\x01\x02\x01\x05\x02\x03\x05\x02", // 𤙍
+ 0x2464e: "\x03\x01\x02\x01\x05\x03\x02\x05\x04", // 𤙎
+ 0x2464f: "\x01\x02\x01\x05\x04\x03\x01\x01\x02", // 𤙏
+ 0x24650: "\x03\x01\x02\x01\x02\x01\x01\x02\x04", // 𤙐
+ 0x24651: "\x03\x01\x02\x01\x03\x05\x04\x02\x05\x01", // 𤙑
+ 0x24652: "\x03\x01\x02\x01\x05\x03\x05\x03\x05\x03", // 𤙒
+ 0x24653: "\x03\x01\x02\x01\x02\x05\x01\x02\x05\x01", // 𤙓
+ 0x24654: "\x03\x01\x02\x01\x03\x04\x01\x05\x03\x04", // 𤙔
+ 0x24655: "\x03\x01\x02\x01\x02\x05\x01\x02\x01\x04", // 𤙕
+ 0x24656: "\x03\x04\x01\x02\x05\x01\x03\x01\x01\x02", // 𤙖
+ 0x24657: "\x03\x01\x02\x01\x05\x01\x05\x05\x01\x05", // 𤙗
+ 0x24658: "\x05\x02\x03\x01\x03\x04\x03\x01\x01\x02", // 𤙘
+ 0x24659: "\x03\x01\x02\x01\x03\x05\x01\x03\x05\x05", // 𤙙
+ 0x2465a: "\x03\x01\x02\x01\x03\x01\x03\x01\x01\x05", // 𤙚
+ 0x2465b: "\x03\x01\x02\x01\x03\x04\x01\x01\x02\x03\x04", // 𤙛
+ 0x2465c: "\x03\x01\x02\x01\x02\x04\x03\x03\x05\x04\x01", // 𤙜
+ 0x2465d: "\x03\x01\x02\x01\x02\x05\x01\x05\x02\x01\x05", // 𤙝
+ 0x2465e: "\x03\x01\x02\x01\x01\x05\x01\x05\x01\x02\x01", // 𤙞
+ 0x2465f: "\x04\x05\x02\x03\x04\x05\x03\x03\x01\x01\x02", // 𤙟
+ 0x24660: "\x03\x01\x02\x01\x01\x02\x04\x01\x03\x04\x04", // 𤙠
+ 0x24661: "\x03\x01\x02\x01\x04\x01\x04\x03\x01\x01\x02", // 𤙡
+ 0x24662: "\x03\x01\x02\x01\x02\x01\x02\x01\x01\x01\x02", // 𤙢
+ 0x24663: "\x03\x04\x04\x05\x02\x05\x01\x03\x01\x01\x02", // 𤙣
+ 0x24664: "\x03\x01\x02\x01\x03\x04\x04\x03\x05\x02\x01", // 𤙤
+ 0x24665: "\x03\x01\x02\x01\x01\x02\x02\x05\x01\x03\x05", // 𤙥
+ 0x24666: "\x03\x01\x02\x01\x01\x03\x05\x03\x03\x03\x04", // 𤙦
+ 0x24667: "\x03\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 𤙧
+ 0x24668: "\x03\x01\x02\x01\x01\x02\x05\x01\x02\x03\x04", // 𤙨
+ 0x24669: "\x03\x01\x02\x01\x03\x01\x05\x05\x04\x01\x04", // 𤙩
+ 0x2466a: "\x03\x01\x02\x01\x03\x04\x04\x03\x05\x03\x03", // 𤙪
+ 0x2466b: "\x03\x01\x02\x01\x04\x01\x02\x05\x01\x01\x01", // 𤙫
+ 0x2466c: "\x03\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𤙬
+ 0x2466d: "\x03\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 𤙭
+ 0x2466e: "\x03\x01\x02\x01\x01\x02\x01\x03\x02\x03\x04", // 𤙮
+ 0x2466f: "\x03\x01\x02\x01\x01\x02\x02\x04\x05\x05\x03", // 𤙯
+ 0x24670: "\x03\x01\x02\x01\x02\x05\x01\x01\x01\x01\x02\x04", // 𤙰
+ 0x24671: "\x03\x01\x02\x01\x03\x04\x01\x01\x02\x02\x05\x01", // 𤙱
+ 0x24672: "\x03\x01\x01\x02\x05\x02\x02\x02\x03\x01\x01\x02", // 𤙲
+ 0x24673: "\x03\x01\x02\x01\x03\x05\x04\x02\x05\x01\x02\x01", // 𤙳
+ 0x24674: "\x03\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x02", // 𤙴
+ 0x24675: "\x03\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𤙵
+ 0x24676: "\x03\x01\x02\x01\x01\x05\x01\x01\x02\x01\x03\x04", // 𤙶
+ 0x24677: "\x03\x01\x02\x01\x04\x04\x05\x01\x01\x02\x03\x04", // 𤙷
+ 0x24678: "\x03\x01\x02\x01\x01\x02\x01\x02\x05\x01\x03\x05", // 𤙸
+ 0x24679: "\x03\x01\x02\x01\x03\x05\x03\x03\x04\x05\x04\x04", // 𤙹
+ 0x2467a: "\x04\x01\x04\x03\x04\x05\x03\x05\x03\x01\x01\x02", // 𤙺
+ 0x2467b: "\x04\x03\x01\x01\x03\x04\x05\x05\x03\x01\x01\x02", // 𤙻
+ 0x2467c: "\x01\x03\x02\x05\x01\x01\x05\x03\x03\x01\x01\x02", // 𤙼
+ 0x2467d: "\x03\x01\x02\x01\x02\x04\x03\x02\x05\x02\x05\x01", // 𤙽
+ 0x2467e: "\x03\x01\x02\x01\x03\x01\x01\x03\x03\x01\x01\x02", // 𤙾
+ 0x2467f: "\x03\x01\x02\x01\x03\x02\x01\x02\x01\x02\x05\x02", // 𤙿
+ 0x24680: "\x03\x01\x02\x01\x03\x04\x04\x03\x01\x02\x03\x04", // 𤚀
+ 0x24681: "\x03\x04\x01\x03\x02\x05\x01\x01\x03\x01\x01\x02", // 𤚁
+ 0x24682: "\x03\x04\x02\x01\x03\x05\x02\x03\x04\x02\x03\x04", // 𤚂
+ 0x24683: "\x03\x01\x02\x01\x04\x01\x03\x03\x05\x01\x05\x01", // 𤚃
+ 0x24684: "\x03\x01\x02\x01\x05\x02\x01\x01\x05\x02\x01\x01", // 𤚄
+ 0x24685: "\x05\x04\x03\x01\x01\x02\x05\x04\x03\x01\x01\x02", // 𤚅
+ 0x24686: "\x03\x01\x02\x01\x05\x02\x01\x03\x02\x05\x04", // 𤚆
+ 0x24687: "\x03\x01\x02\x01\x04\x03\x01\x01\x02\x01\x05\x04", // 𤚇
+ 0x24688: "\x03\x01\x02\x01\x02\x05\x02\x02\x03\x04\x05\x04", // 𤚈
+ 0x24689: "\x01\x02\x02\x01\x01\x01\x05\x04\x03\x01\x01\x02", // 𤚉
+ 0x2468a: "\x03\x01\x02\x01\x01\x05\x04\x01\x02\x03\x04", // 𤚊
+ 0x2468b: "\x03\x01\x02\x01\x03\x04\x01\x05\x04\x05\x04\x04", // 𤚋
+ 0x2468c: "\x05\x01\x03\x01\x01\x05\x01\x01\x03\x01\x01\x02", // 𤚌
+ 0x2468d: "\x03\x01\x02\x01\x05\x02\x03\x01\x02\x05\x01\x02\x01\x04", // 𤚍
+ 0x2468e: "\x03\x01\x02\x01\x03\x04\x01\x03\x05\x01\x01\x02\x02", // 𤚎
+ 0x2468f: "\x03\x01\x02\x01\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𤚏
+ 0x24690: "\x03\x01\x02\x01\x01\x02\x01\x02\x02\x05\x01\x02\x01", // 𤚐
+ 0x24691: "\x03\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x01\x02\x04", // 𤚑
+ 0x24692: "\x03\x01\x02\x01\x04\x01\x02\x05\x01\x01\x02\x03\x04", // 𤚒
+ 0x24693: "\x03\x01\x02\x01\x03\x01\x03\x04\x01\x03\x04\x01\x03\x04", // 𤚓
+ 0x24694: "\x03\x01\x02\x01\x04\x04\x05\x04\x03\x03\x04\x05\x04", // 𤚔
+ 0x24695: "\x03\x01\x02\x01\x01\x02\x05\x02\x02\x01\x01\x02\x01", // 𤚕
+ 0x24696: "\x03\x01\x02\x01\x04\x03\x01\x01\x02\x01\x05\x03\x01", // 𤚖
+ 0x24697: "\x03\x01\x02\x01\x04\x04\x05\x01\x02\x05\x01\x01\x01", // 𤚗
+ 0x24698: "\x03\x01\x02\x01\x01\x02\x05\x02\x02\x01\x05\x03\x01", // 𤚘
+ 0x24699: "\x03\x01\x02\x01\x03\x05\x02\x05\x03\x04\x01\x03\x04", // 𤚙
+ 0x2469a: "\x03\x01\x02\x01\x01\x01\x02\x01\x05\x05\x04\x01\x04", // 𤚚
+ 0x2469b: "\x03\x01\x02\x01\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 𤚛
+ 0x2469c: "\x02\x01\x02\x01\x02\x03\x04\x05\x04\x03\x01\x01\x02", // 𤚜
+ 0x2469d: "\x03\x01\x02\x01\x03\x02\x05\x01\x01\x01\x01\x02\x01", // 𤚝
+ 0x2469e: "\x03\x01\x02\x01\x03\x02\x05\x02\x02\x01\x02\x05\x02", // 𤚞
+ 0x2469f: "\x03\x01\x02\x01\x03\x03\x02\x01\x02\x01\x01\x02\x04", // 𤚟
+ 0x246a0: "\x03\x01\x02\x01\x03\x04\x05\x02\x03\x05\x03\x05\x04", // 𤚠
+ 0x246a1: "\x03\x01\x02\x01\x04\x01\x03\x01\x02\x02\x01\x05\x04", // 𤚡
+ 0x246a2: "\x03\x01\x02\x01\x04\x01\x04\x03\x04\x05\x02\x05\x02", // 𤚢
+ 0x246a3: "\x03\x01\x02\x01\x04\x04\x05\x01\x02\x01\x01\x02\x01", // 𤚣
+ 0x246a4: "\x03\x01\x02\x01\x05\x02\x01\x03\x02\x05\x01\x01\x01", // 𤚤
+ 0x246a5: "\x05\x04\x03\x01\x01\x02\x03\x04\x04\x05\x02\x05\x01", // 𤚥
+ 0x246a6: "\x03\x01\x02\x01\x01\x02\x02\x05\x01\x01\x02\x03\x04", // 𤚦
+ 0x246a7: "\x02\x05\x01\x03\x01\x05\x04\x04\x05\x03\x01\x01\x02", // 𤚧
+ 0x246a8: "\x03\x01\x02\x01\x01\x03\x01\x01\x05\x03\x04\x05\x04", // 𤚨
+ 0x246a9: "\x03\x01\x02\x01\x01\x01\x01\x03\x04\x03\x01\x02\x03\x04", // 𤚩
+ 0x246aa: "\x03\x01\x02\x01\x03\x02\x05\x03\x04\x01\x01\x05\x01\x05", // 𤚪
+ 0x246ab: "\x03\x01\x02\x01\x04\x01\x03\x05\x01\x01\x02\x02\x05\x01", // 𤚫
+ 0x246ac: "\x03\x01\x02\x01\x03\x04\x01\x05\x01\x01\x03\x02\x05\x01", // 𤚬
+ 0x246ad: "\x03\x01\x02\x01\x03\x05\x04\x04\x03\x01\x01\x02\x05\x02", // 𤚭
+ 0x246ae: "\x03\x01\x02\x01\x04\x01\x02\x05\x01\x02\x05\x01\x01\x02", // 𤚮
+ 0x246af: "\x03\x01\x02\x01\x03\x02\x05\x01\x01\x01\x01\x03\x04\x04", // 𤚯
+ 0x246b0: "\x03\x01\x02\x01\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03", // 𤚰
+ 0x246b1: "\x03\x01\x02\x01\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01", // 𤚱
+ 0x246b2: "\x01\x02\x01\x04\x05\x03\x01\x02\x01\x03\x05\x05\x04", // 𤚲
+ 0x246b3: "\x03\x01\x02\x01\x02\x01\x05\x03\x01\x05\x04\x01\x03\x04", // 𤚳
+ 0x246b4: "\x03\x01\x02\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𤚴
+ 0x246b5: "\x03\x01\x02\x01\x01\x05\x04\x03\x02\x05\x02\x05\x01", // 𤚵
+ 0x246b6: "\x03\x05\x04\x04\x04\x04\x03\x05\x03\x03\x03\x01\x01\x02", // 𤚶
+ 0x246b7: "\x05\x04\x03\x01\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 𤚷
+ 0x246b8: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x03\x01\x01\x02", // 𤚸
+ 0x246b9: "\x01\x02\x01\x05\x01\x01\x03\x02\x05\x01\x03\x01\x01\x02", // 𤚹
+ 0x246ba: "\x03\x01\x02\x01\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 𤚺
+ 0x246bb: "\x03\x01\x02\x01\x03\x01\x01\x02\x03\x04\x01\x02\x05\x01", // 𤚻
+ 0x246bc: "\x01\x02\x01\x04\x05\x01\x03\x05\x05\x04\x03\x01\x01\x02", // 𤚼
+ 0x246bd: "\x03\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 𤚽
+ 0x246be: "\x03\x01\x02\x01\x01\x03\x01\x01\x05\x03\x04\x01\x02\x04", // 𤚾
+ 0x246bf: "\x03\x01\x02\x01\x01\x03\x01\x01\x02\x01\x02\x01\x05\x05\x04", // 𤚿
+ 0x246c0: "\x03\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x01\x02\x04", // 𤛀
+ 0x246c1: "\x03\x01\x02\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 𤛁
+ 0x246c2: "\x03\x01\x02\x01\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𤛂
+ 0x246c3: "\x03\x01\x02\x01\x03\x05\x02\x03\x04\x03\x05\x02\x03\x04", // 𤛃
+ 0x246c4: "\x03\x01\x02\x01\x04\x01\x03\x04\x01\x02\x02\x01\x01\x01", // 𤛄
+ 0x246c5: "\x03\x01\x02\x01\x04\x01\x05\x05\x04\x02\x05\x01\x02\x01", // 𤛅
+ 0x246c6: "\x01\x05\x02\x03\x03\x01\x03\x05\x01\x03\x03\x01\x01\x02", // 𤛆
+ 0x246c7: "\x03\x01\x02\x01\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 𤛇
+ 0x246c8: "\x03\x04\x01\x02\x05\x01\x03\x01\x01\x02\x03\x01\x01\x02", // 𤛈
+ 0x246c9: "\x05\x02\x01\x05\x05\x05\x04\x05\x05\x04\x03\x01\x01\x02", // 𤛉
+ 0x246ca: "\x03\x01\x02\x01\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01", // 𤛊
+ 0x246cb: "\x03\x01\x02\x01\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x01", // 𤛋
+ 0x246cc: "\x03\x01\x02\x01\x05\x01\x03\x01\x01\x02\x03\x04\x01\x02\x04", // 𤛌
+ 0x246cd: "\x03\x01\x02\x01\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𤛍
+ 0x246ce: "\x03\x01\x05\x05\x04\x01\x04\x03\x01\x03\x04\x03\x01\x01\x02", // 𤛎
+ 0x246cf: "\x03\x01\x02\x01\x02\x01\x05\x03\x01\x05\x02\x05\x01\x01\x01", // 𤛏
+ 0x246d0: "\x03\x01\x02\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 𤛐
+ 0x246d1: "\x03\x01\x02\x01\x04\x01\x03\x05\x01\x01\x02\x05\x01\x01\x02", // 𤛑
+ 0x246d2: "\x03\x01\x02\x01\x05\x01\x05\x05\x01\x01\x05\x02\x05\x01", // 𤛒
+ 0x246d3: "\x01\x02\x01\x04\x05\x03\x05\x03\x05\x05\x04\x03\x01\x01\x02", // 𤛓
+ 0x246d4: "\x03\x01\x02\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 𤛔
+ 0x246d5: "\x03\x01\x02\x01\x01\x02\x05\x01\x01\x01\x02\x03\x01\x01\x02", // 𤛕
+ 0x246d6: "\x01\x02\x01\x03\x02\x03\x04\x03\x05\x05\x04\x03\x01\x01\x02", // 𤛖
+ 0x246d7: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04\x03\x01\x01\x02", // 𤛗
+ 0x246d8: "\x03\x01\x02\x01\x01\x02\x02\x01\x03\x04\x04\x01\x03\x02", // 𤛘
+ 0x246d9: "\x02\x02\x05\x01\x01\x01\x01\x01\x02\x05\x04\x03\x01\x01\x02", // 𤛙
+ 0x246da: "\x03\x01\x01\x02\x03\x01\x01\x02\x01\x03\x05\x03\x03\x03\x04", // 𤛚
+ 0x246db: "\x03\x01\x02\x01\x03\x02\x02\x03\x05\x04\x03\x05\x04\x01", // 𤛛
+ 0x246dc: "\x03\x01\x02\x01\x04\x03\x01\x01\x02\x01\x05\x03\x01\x02\x02", // 𤛜
+ 0x246dd: "\x04\x04\x05\x03\x02\x01\x03\x02\x05\x01\x01\x03\x01\x01\x02", // 𤛝
+ 0x246de: "\x03\x01\x02\x01\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x03", // 𤛞
+ 0x246df: "\x03\x01\x02\x01\x02\x01\x02\x01\x03\x05\x03\x05\x01\x01\x02", // 𤛟
+ 0x246e0: "\x03\x01\x02\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 𤛠
+ 0x246e1: "\x03\x01\x02\x01\x05\x04\x05\x04\x05\x04\x05\x05\x04\x02\x03\x04", // 𤛡
+ 0x246e2: "\x03\x01\x02\x01\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𤛢
+ 0x246e3: "\x03\x01\x02\x01\x03\x04\x01\x02\x05\x01\x05\x04\x01\x05\x04\x01", // 𤛣
+ 0x246e4: "\x03\x01\x02\x01\x05\x04\x05\x04\x05\x04\x03\x04\x02\x04\x04\x04", // 𤛤
+ 0x246e5: "\x03\x01\x02\x01\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04", // 𤛥
+ 0x246e6: "\x03\x01\x02\x01\x01\x03\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04", // 𤛦
+ 0x246e7: "\x03\x01\x02\x01\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04", // 𤛧
+ 0x246e8: "\x03\x01\x02\x01\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04", // 𤛨
+ 0x246e9: "\x03\x01\x02\x01\x05\x02\x01\x03\x01\x02\x01\x03\x05\x04\x01", // 𤛩
+ 0x246ea: "\x03\x01\x02\x01\x01\x02\x01\x03\x03\x05\x01\x02\x01\x03\x03\x05", // 𤛪
+ 0x246eb: "\x03\x01\x02\x01\x02\x01\x02\x01\x01\x01\x02\x01\x03\x01\x01\x02", // 𤛫
+ 0x246ec: "\x03\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𤛬
+ 0x246ed: "\x03\x01\x01\x02\x03\x01\x01\x02\x03\x01\x01\x02\x03\x01\x01\x02", // 𤛭
+ 0x246ee: "\x03\x01\x02\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x05\x03", // 𤛮
+ 0x246ef: "\x03\x01\x02\x01\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 𤛯
+ 0x246f0: "\x03\x01\x02\x01\x05\x01\x01\x03\x02\x05\x01\x04\x03\x01\x01\x01\x02", // 𤛰
+ 0x246f1: "\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x03\x01\x01\x02", // 𤛱
+ 0x246f2: "\x03\x01\x02\x01\x02\x05\x02\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𤛲
+ 0x246f3: "\x03\x01\x02\x01\x03\x05\x03\x05\x01\x01\x02\x05\x03\x03\x01\x01\x02", // 𤛳
+ 0x246f4: "\x03\x01\x02\x01\x05\x01\x05\x01\x02\x01\x01\x02\x01\x02\x05\x01", // 𤛴
+ 0x246f5: "\x03\x01\x02\x01\x03\x04\x04\x04\x04\x04\x05\x02\x03\x04\x03\x05\x04", // 𤛵
+ 0x246f6: "\x03\x01\x02\x01\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𤛶
+ 0x246f7: "\x03\x01\x02\x01\x01\x02\x03\x04\x03\x04\x01\x02\x05\x02\x05\x01\x01", // 𤛷
+ 0x246f8: "\x03\x01\x02\x01\x01\x03\x01\x02\x05\x01\x05\x03\x04\x04\x05\x04\x04", // 𤛸
+ 0x246f9: "\x03\x01\x02\x01\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𤛹
+ 0x246fa: "\x03\x01\x02\x01\x03\x01\x02\x03\x04\x05\x03\x03\x04\x02\x04\x01\x03\x04", // 𤛺
+ 0x246fb: "\x03\x01\x02\x01\x01\x02\x01\x02\x01\x03\x01\x02\x05\x01\x02\x05\x05\x03\x04", // 𤛻
+ 0x246fc: "\x03\x01\x02\x01\x03\x01\x02\x03\x04\x03\x05\x03\x04\x02\x04\x01\x03\x04", // 𤛼
+ 0x246fd: "\x03\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x04\x05\x02\x01\x02\x01\x01\x02\x05\x04", // 𤛽
+ 0x246fe: "\x03\x01\x02\x01\x01\x03\x02\x05\x01\x01\x04\x05\x04\x05\x04\x04\x03\x05\x04", // 𤛾
+ 0x246ff: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x03\x05\x03\x03\x01\x01\x02", // 𤛿
+ 0x24700: "\x03\x01\x02\x01\x04\x01\x02\x05\x01\x02\x05\x01\x01\x04\x03\x01\x01\x01\x02", // 𤜀
+ 0x24701: "\x03\x04\x03\x01\x01\x02\x01\x03\x01\x02\x05\x01\x05\x03\x04\x04\x05\x04\x04", // 𤜁
+ 0x24702: "\x03\x03\x02\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x01\x02\x03\x01\x01\x02", // 𤜂
+ 0x24703: "\x03\x01\x02\x01\x04\x01\x02\x05\x01\x02\x05\x01\x01\x02\x01\x02\x01\x01\x01\x02", // 𤜃
+ 0x24704: "\x03\x01\x02\x01\x04\x01\x02\x05\x02\x02\x01\x02\x04\x01\x03\x04\x03\x05\x03\x04", // 𤜄
+ 0x24705: "\x03\x01\x02\x01\x01\x04\x05\x02\x04\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𤜅
+ 0x24706: "\x03\x01\x02\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01\x01\x01", // 𤜆
+ 0x24707: "\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01\x05\x01\x05\x03\x05\x02\x05\x01\x03\x05\x04", // 𤜇
+ 0x24708: "\x03\x01\x02\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 𤜈
+ 0x24709: "\x03\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x05\x03\x01", // 𤜉
+ 0x2470a: "\x03\x01\x02\x01\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x04\x01\x01\x01\x02\x05\x01", // 𤜊
+ 0x2470b: "\x03\x01\x02\x01\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x04\x01\x01\x01\x02\x05\x01", // 𤜋
+ 0x2470c: "\x03\x01\x02\x01\x02\x05\x01\x01\x05\x02\x02\x05\x02\x01\x03\x04\x04\x03\x01\x02\x03\x04", // 𤜌
+ 0x2470d: "\x03\x01\x02\x01\x02\x01\x02\x01\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𤜍
+ 0x2470e: "\x03\x01\x02\x01\x01\x03\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01\x01\x01", // 𤜎
+ 0x2470f: "\x03\x01\x02\x01\x01\x03\x03\x02\x01\x05\x01\x01\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 𤜏
+ 0x24710: "\x03\x01\x02\x01\x01\x02\x01\x02\x01\x03\x05\x01\x03\x01\x02\x05\x01\x02\x05\x05\x03\x04", // 𤜐
+ 0x24711: "\x03\x01\x02\x01\x02\x05\x02\x02\x01\x05\x04\x03\x05\x04\x01\x01\x05\x01\x05\x04\x04\x04\x04", // 𤜑
+ 0x24712: "\x03\x01\x02\x01\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𤜒
+ 0x24713: "\x03\x01\x02\x01\x05\x05\x05\x02\x05\x01\x02\x05\x01\x01\x01\x01\x05\x05\x01\x01\x05\x01\x01", // 𤜓
+ 0x24714: "\x02\x05\x01\x01\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04\x03\x01\x02\x03\x04\x03\x01\x01\x02", // 𤜔
+ 0x24715: "\x01\x02\x01\x04\x05\x03\x01\x01\x02\x01\x02\x05\x02\x02\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 𤜕
+ 0x24716: "\x03\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 𤜖
+ 0x24717: "\x03\x01\x02\x01\x01\x01\x01\x03\x04\x02\x05\x01\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𤜗
+ 0x24718: "\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x03\x01\x01\x02", // 𤜘
+ 0x24719: "\x03\x01\x02\x01\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x03\x04\x01", // 𤜙
+ 0x2471a: "\x03\x05\x03\x01", // 𤜚
+ 0x2471b: "\x03\x05\x03\x05\x05", // 𤜛
+ 0x2471c: "\x03\x05\x03\x05\x03", // 𤜜
+ 0x2471d: "\x03\x05\x03\x03\x05", // 𤜝
+ 0x2471e: "\x03\x05\x03\x03\x04", // 𤜞
+ 0x2471f: "\x03\x05\x03\x05\x02", // 𤜟
+ 0x24720: "\x03\x05\x03\x05\x03", // 𤜠
+ 0x24721: "\x03\x05\x03\x05\x02", // 𤜡
+ 0x24722: "\x03\x05\x03\x05\x01\x02", // 𤜢
+ 0x24723: "\x03\x05\x03\x05\x02\x05", // 𤜣
+ 0x24724: "\x03\x05\x03\x03\x01\x05", // 𤜤
+ 0x24725: "\x03\x05\x03\x03\x04\x04", // 𤜥
+ 0x24726: "\x03\x05\x03\x03\x05\x04", // 𤜦
+ 0x24727: "\x02\x05\x02\x01\x03\x04\x04", // 𤜧
+ 0x24728: "\x03\x05\x03\x03\x01\x05", // 𤜨
+ 0x24729: "\x03\x05\x03\x03\x05\x03", // 𤜩
+ 0x2472a: "\x03\x05\x03\x04\x01\x05", // 𤜪
+ 0x2472b: "\x03\x05\x03\x05\x04\x04", // 𤜫
+ 0x2472c: "\x03\x05\x03\x02\x05\x02", // 𤜬
+ 0x2472d: "\x03\x05\x03\x05\x02\x01", // 𤜭
+ 0x2472e: "\x03\x05\x03\x01\x02\x04", // 𤜮
+ 0x2472f: "\x03\x05\x03\x03\x05\x05\x04", // 𤜯
+ 0x24730: "\x03\x05\x03\x03\x04\x01\x05", // 𤜰
+ 0x24731: "\x03\x05\x03\x05\x02\x01\x05", // 𤜱
+ 0x24732: "\x01\x02\x05\x02\x01\x03\x04\x04", // 𤜲
+ 0x24733: "\x03\x05\x03\x01\x02\x05\x02", // 𤜳
+ 0x24734: "\x03\x05\x03\x04\x05\x03\x05", // 𤜴
+ 0x24735: "\x03\x05\x03\x01\x01\x03\x02", // 𤜵
+ 0x24736: "\x03\x05\x03\x03\x03\x02\x04", // 𤜶
+ 0x24737: "\x03\x05\x03\x01\x05\x05\x01", // 𤜷
+ 0x24738: "\x03\x05\x03\x01\x03\x05\x05", // 𤜸
+ 0x24739: "\x01\x03\x04\x04\x03\x05\x03\x04", // 𤜹
+ 0x2473a: "\x03\x05\x03\x03\x02\x01\x02\x01", // 𤜺
+ 0x2473b: "\x03\x05\x03\x01\x05\x01\x05", // 𤜻
+ 0x2473c: "\x03\x05\x03\x03\x05\x01\x01", // 𤜼
+ 0x2473d: "\x03\x05\x03\x02\x05\x03\x04", // 𤜽
+ 0x2473e: "\x03\x05\x03\x05\x01\x01\x02", // 𤜾
+ 0x2473f: "\x03\x05\x03\x05\x05\x02\x03", // 𤜿
+ 0x24740: "\x03\x05\x03\x04\x01\x03\x04\x04", // 𤝀
+ 0x24741: "\x03\x05\x03\x01\x03\x04\x04", // 𤝁
+ 0x24742: "\x03\x05\x03\x01\x02\x03\x05", // 𤝂
+ 0x24743: "\x03\x05\x03\x01\x05\x05\x04", // 𤝃
+ 0x24744: "\x03\x05\x03\x03\x01\x01\x05", // 𤝄
+ 0x24745: "\x03\x05\x03\x03\x04\x05\x04", // 𤝅
+ 0x24746: "\x03\x05\x03\x03\x05\x03\x04", // 𤝆
+ 0x24747: "\x03\x05\x03\x03\x05\x04\x04", // 𤝇
+ 0x24748: "\x03\x05\x03\x03\x05\x05\x04", // 𤝈
+ 0x24749: "\x03\x05\x03\x05\x04\x05\x02", // 𤝉
+ 0x2474a: "\x03\x05\x03\x03\x05\x01\x02", // 𤝊
+ 0x2474b: "\x03\x05\x03\x04\x01\x03\x04", // 𤝋
+ 0x2474c: "\x03\x05\x03\x01\x01\x03\x05", // 𤝌
+ 0x2474d: "\x03\x05\x03\x02\x05\x01\x01", // 𤝍
+ 0x2474e: "\x03\x05\x03\x02\x05\x03\x04", // 𤝎
+ 0x2474f: "\x03\x05\x03\x05\x04\x01\x03\x02", // 𤝏
+ 0x24750: "\x03\x05\x03\x02\x05\x01\x01\x05", // 𤝐
+ 0x24751: "\x03\x05\x03\x03\x04\x05\x04", // 𤝑
+ 0x24752: "\x03\x05\x03\x05\x02\x02\x05\x02", // 𤝒
+ 0x24753: "\x03\x05\x03\x02\x01\x02\x05\x01", // 𤝓
+ 0x24754: "\x03\x05\x03\x03\x02\x01\x02\x04", // 𤝔
+ 0x24755: "\x03\x05\x03\x05\x05\x04\x01\x04", // 𤝕
+ 0x24756: "\x03\x05\x03\x02\x05\x01\x03\x04", // 𤝖
+ 0x24757: "\x03\x05\x03\x02\x05\x01\x02\x01", // 𤝗
+ 0x24758: "\x03\x05\x03\x03\x04\x03\x01\x02", // 𤝘
+ 0x24759: "\x03\x05\x03\x01\x05\x01\x05", // 𤝙
+ 0x2475a: "\x03\x05\x03\x02\x05\x01\x01\x02", // 𤝚
+ 0x2475b: "\x03\x05\x03\x04\x04\x05\x03\x05", // 𤝛
+ 0x2475c: "\x03\x05\x03\x01\x03\x03\x04\x04", // 𤝜
+ 0x2475d: "\x03\x05\x03\x03\x04\x02\x03\x04", // 𤝝
+ 0x2475e: "\x03\x05\x03\x01\x02\x03\x05\x04", // 𤝞
+ 0x2475f: "\x05\x01\x05\x03\x02\x01\x03\x04\x04", // 𤝟
+ 0x24760: "\x03\x05\x03\x05\x01\x05\x02", // 𤝠
+ 0x24761: "\x03\x02\x05\x01\x01\x01\x03\x04\x04", // 𤝡
+ 0x24762: "\x03\x05\x03\x05\x04\x01\x01\x02", // 𤝢
+ 0x24763: "\x03\x05\x03\x02\x04\x05\x03\x04", // 𤝣
+ 0x24764: "\x03\x05\x03\x03\x05\x01\x03\x05", // 𤝤
+ 0x24765: "\x03\x05\x03\x03\x05\x04\x02\x04", // 𤝥
+ 0x24766: "\x03\x05\x03\x03\x02\x01\x02\x03", // 𤝦
+ 0x24767: "\x03\x05\x03\x03\x02\x03\x05\x04", // 𤝧
+ 0x24768: "\x03\x05\x03\x04\x04\x05\x03\x05", // 𤝨
+ 0x24769: "\x03\x05\x03\x05\x04\x05\x02\x03", // 𤝩
+ 0x2476a: "\x03\x05\x03\x04\x03\x01\x01\x02", // 𤝪
+ 0x2476b: "\x03\x05\x03\x02\x05\x02\x01\x01", // 𤝫
+ 0x2476c: "\x03\x05\x03\x03\x05\x01\x05\x01", // 𤝬
+ 0x2476d: "\x03\x05\x03\x02\x01\x02\x01\x03\x05", // 𤝭
+ 0x2476e: "\x03\x05\x02\x03\x01\x03\x04\x04", // 𤝮
+ 0x2476f: "\x03\x05\x03\x03\x02\x01\x03\x04\x04", // 𤝯
+ 0x24770: "\x03\x05\x03\x03\x04\x01\x02\x05\x01", // 𤝰
+ 0x24771: "\x03\x05\x03\x02\x05\x01\x03\x04\x01", // 𤝱
+ 0x24772: "\x03\x05\x03\x02\x05\x01\x01\x01\x03\x04", // 𤝲
+ 0x24773: "\x03\x05\x03\x03\x02\x05\x01\x01\x03", // 𤝳
+ 0x24774: "\x03\x05\x03\x04\x03\x01\x01\x03\x02", // 𤝴
+ 0x24775: "\x03\x05\x03\x02\x05\x02\x01\x01\x02\x01", // 𤝵
+ 0x24776: "\x02\x05\x02\x01\x01\x02\x01\x01\x03\x04\x04", // 𤝶
+ 0x24777: "\x03\x05\x03\x03\x05\x04\x01\x05\x02", // 𤝷
+ 0x24778: "\x03\x05\x03\x04\x03\x01\x02\x03\x04", // 𤝸
+ 0x24779: "\x03\x05\x03\x03\x01\x01\x02\x03\x04", // 𤝹
+ 0x2477a: "\x03\x05\x03\x05\x01\x03\x01\x02\x01", // 𤝺
+ 0x2477b: "\x03\x05\x03\x03\x05\x04\x03\x05\x04", // 𤝻
+ 0x2477c: "\x03\x05\x04\x03\x02\x05\x01\x01\x01", // 𤝼
+ 0x2477d: "\x03\x05\x03\x05\x01\x01\x01\x01\x02", // 𤝽
+ 0x2477e: "\x03\x05\x03\x05\x05\x05\x02\x05\x02", // 𤝾
+ 0x2477f: "\x03\x05\x03\x01\x01\x01\x02\x01\x05", // 𤝿
+ 0x24780: "\x03\x05\x03\x01\x05\x04\x03\x05", // 𤞀
+ 0x24781: "\x03\x05\x03\x05\x05\x02\x05\x02\x02", // 𤞁
+ 0x24782: "\x03\x05\x03\x01\x05\x04\x01\x02\x01", // 𤞂
+ 0x24783: "\x03\x05\x03\x02\x05\x02\x03\x05\x04", // 𤞃
+ 0x24784: "\x03\x05\x03\x04\x03\x01\x05\x03\x05", // 𤞄
+ 0x24785: "\x03\x05\x03\x03\x03\x03\x05\x03\x04", // 𤞅
+ 0x24786: "\x03\x05\x03\x03\x01\x03\x03\x01\x02", // 𤞆
+ 0x24787: "\x03\x05\x03\x01\x02\x01\x01\x02\x01", // 𤞇
+ 0x24788: "\x03\x05\x03\x01\x03\x02\x01\x02\x01", // 𤞈
+ 0x24789: "\x03\x05\x03\x01\x03\x04\x05\x03\x04", // 𤞉
+ 0x2478a: "\x03\x05\x03\x01\x03\x05\x04\x02\x02", // 𤞊
+ 0x2478b: "\x03\x05\x03\x02\x05\x01\x01\x01\x02", // 𤞋
+ 0x2478c: "\x03\x05\x03\x04\x04\x05\x03\x01\x05", // 𤞌
+ 0x2478d: "\x03\x05\x03\x05\x01\x01\x02\x05\x02", // 𤞍
+ 0x2478e: "\x03\x05\x03\x05\x04\x01\x02\x03\x04", // 𤞎
+ 0x2478f: "\x03\x05\x03\x01\x02\x05\x03\x05\x01", // 𤞏
+ 0x24790: "\x03\x05\x03\x01\x03\x02\x05\x02\x01", // 𤞐
+ 0x24791: "\x03\x05\x03\x02\x05\x02\x05\x01\x01", // 𤞑
+ 0x24792: "\x03\x05\x03\x01\x02\x02\x01\x03\x04", // 𤞒
+ 0x24793: "\x03\x05\x03\x03\x01\x02\x01\x03\x05", // 𤞓
+ 0x24794: "\x03\x05\x03\x01\x01\x02\x01\x05\x04", // 𤞔
+ 0x24795: "\x03\x05\x03\x01\x02\x05\x02\x01\x01", // 𤞕
+ 0x24796: "\x03\x05\x03\x01\x01\x01\x02\x03\x04", // 𤞖
+ 0x24797: "\x03\x05\x03\x03\x02\x03\x01\x01\x02", // 𤞗
+ 0x24798: "\x03\x05\x03\x03\x02\x03\x01\x02\x01", // 𤞘
+ 0x24799: "\x03\x05\x03\x03\x04\x04\x03\x01\x02\x04", // 𤞙
+ 0x2479a: "\x03\x05\x03\x02\x04\x03\x03\x05\x04\x01", // 𤞚
+ 0x2479b: "\x05\x02\x01\x03\x01\x02\x01\x01\x03\x04\x04", // 𤞛
+ 0x2479c: "\x03\x05\x03\x01\x03\x02\x04\x02\x05\x01", // 𤞜
+ 0x2479d: "\x03\x05\x03\x03\x04\x04\x03\x05\x03\x03", // 𤞝
+ 0x2479e: "\x03\x05\x03\x03\x04\x03\x04\x02\x05\x01", // 𤞞
+ 0x2479f: "\x03\x05\x03\x01\x02\x05\x01\x04\x03\x01", // 𤞟
+ 0x247a0: "\x03\x05\x03\x03\x04\x01\x02\x03\x05\x04", // 𤞠
+ 0x247a1: "\x03\x05\x03\x01\x05\x02\x03\x05\x02", // 𤞡
+ 0x247a2: "\x03\x05\x03\x02\x01\x02\x01\x01\x01\x02", // 𤞢
+ 0x247a3: "\x05\x04\x03\x05\x04\x01\x01\x03\x04\x04", // 𤞣
+ 0x247a4: "\x03\x05\x03\x01\x02\x02\x04\x03\x01\x03", // 𤞤
+ 0x247a5: "\x03\x05\x03\x02\x05\x01\x01\x02\x03\x04", // 𤞥
+ 0x247a6: "\x03\x05\x03\x03\x01\x05\x05\x04\x01\x04", // 𤞦
+ 0x247a7: "\x03\x05\x03\x02\x05\x01\x02\x03\x04\x01", // 𤞧
+ 0x247a8: "\x03\x05\x03\x01\x02\x05\x01\x01\x02\x04", // 𤞨
+ 0x247a9: "\x03\x05\x03\x02\x05\x01\x01\x01\x05\x03", // 𤞩
+ 0x247aa: "\x03\x05\x03\x02\x05\x01\x03\x02\x05\x01", // 𤞪
+ 0x247ab: "\x03\x05\x03\x01\x01\x03\x02\x05\x03\x04", // 𤞫
+ 0x247ac: "\x03\x05\x03\x01\x01\x02\x01\x01\x03\x02", // 𤞬
+ 0x247ad: "\x03\x05\x03\x02\x05\x01\x01\x01\x03\x05", // 𤞭
+ 0x247ae: "\x04\x04\x05\x03\x04\x03\x04\x01\x03\x04\x04", // 𤞮
+ 0x247af: "\x03\x05\x03\x05\x01\x02\x01\x01\x02\x01", // 𤞯
+ 0x247b0: "\x03\x05\x03\x01\x02\x04\x01\x03\x04\x04", // 𤞰
+ 0x247b1: "\x03\x05\x03\x01\x03\x05\x03\x03\x03\x04", // 𤞱
+ 0x247b2: "\x03\x05\x03\x03\x04\x04\x03\x05\x02\x01", // 𤞲
+ 0x247b3: "\x03\x05\x03\x03\x05\x01\x05\x02\x05\x01", // 𤞳
+ 0x247b4: "\x03\x05\x03\x03\x05\x03\x05\x01\x01\x02", // 𤞴
+ 0x247b5: "\x03\x05\x03\x04\x04\x05\x01\x01\x03\x05", // 𤞵
+ 0x247b6: "\x03\x05\x03\x04\x05\x03\x04\x01\x01\x02", // 𤞶
+ 0x247b7: "\x01\x02\x03\x04\x01\x02\x01\x01\x03\x04\x04", // 𤞷
+ 0x247b8: "\x03\x05\x03\x01\x02\x05\x05\x01\x05\x01", // 𤞸
+ 0x247b9: "\x03\x05\x03\x03\x02\x01\x01\x02\x02\x02", // 𤞹
+ 0x247ba: "\x03\x05\x03\x03\x01\x02\x01\x02\x05\x01", // 𤞺
+ 0x247bb: "\x03\x05\x03\x03\x04\x04\x05\x02\x05\x01", // 𤞻
+ 0x247bc: "\x03\x05\x03\x04\x01\x03\x04\x02\x05\x01", // 𤞼
+ 0x247bd: "\x03\x05\x03\x01\x02\x02\x04\x01\x05", // 𤞽
+ 0x247be: "\x03\x05\x03\x02\x05\x01\x01\x01\x02\x01", // 𤞾
+ 0x247bf: "\x03\x05\x03\x01\x01\x02\x01\x03\x04\x04", // 𤞿
+ 0x247c0: "\x03\x02\x05\x01\x01\x01\x05\x01\x03\x04\x04", // 𤟀
+ 0x247c1: "\x03\x05\x03\x05\x03\x04\x02\x05\x02\x01", // 𤟁
+ 0x247c2: "\x03\x05\x03\x04\x01\x05\x03\x05\x01\x01", // 𤟂
+ 0x247c3: "\x03\x05\x03\x01\x05\x01\x01\x02\x01\x03\x04", // 𤟃
+ 0x247c4: "\x03\x05\x03\x04\x04\x05\x03\x05\x01\x02\x01", // 𤟄
+ 0x247c5: "\x03\x05\x03\x03\x05\x03\x02\x01\x05\x01\x01", // 𤟅
+ 0x247c6: "\x03\x05\x03\x03\x04\x01\x02\x03\x05\x04\x02\x02", // 𤟆
+ 0x247c7: "\x03\x05\x03\x04\x03\x03\x04\x04\x03\x03\x04", // 𤟇
+ 0x247c8: "\x03\x05\x03\x01\x02\x05\x01\x01\x02\x03\x04", // 𤟈
+ 0x247c9: "\x03\x05\x03\x02\x05\x02\x01\x03\x01\x01\x02", // 𤟉
+ 0x247ca: "\x03\x05\x03\x04\x04\x05\x03\x05\x04\x05\x05", // 𤟊
+ 0x247cb: "\x03\x05\x03\x04\x01\x03\x04\x03\x04\x05\x03", // 𤟋
+ 0x247cc: "\x05\x02\x01\x03\x03\x05\x04\x01\x01\x03\x04\x04", // 𤟌
+ 0x247cd: "\x03\x05\x03\x02\x05\x01\x01\x03\x05\x03\x03", // 𤟍
+ 0x247ce: "\x03\x05\x03\x05\x01\x03\x05\x02\x02\x05\x02", // 𤟎
+ 0x247cf: "\x02\x01\x01\x02\x03\x04\x05\x04\x01\x03\x04\x04", // 𤟏
+ 0x247d0: "\x01\x03\x01\x01\x01\x02\x05\x03\x01\x03\x04\x04", // 𤟐
+ 0x247d1: "\x03\x05\x03\x03\x05\x01\x03\x01\x03\x04\x04", // 𤟑
+ 0x247d2: "\x05\x02\x01\x03\x03\x05\x04\x01\x01\x03\x04\x04", // 𤟒
+ 0x247d3: "\x01\x02\x02\x01\x02\x05\x02\x01\x03\x04\x04", // 𤟓
+ 0x247d4: "\x03\x05\x03\x01\x02\x01\x01\x01\x05\x03\x04", // 𤟔
+ 0x247d5: "\x03\x05\x03\x02\x05\x01\x05\x03\x05\x01\x01", // 𤟕
+ 0x247d6: "\x03\x05\x03\x03\x04\x04\x03\x01\x02\x03\x04", // 𤟖
+ 0x247d7: "\x03\x05\x03\x03\x04\x04\x03\x04\x05\x05\x04", // 𤟗
+ 0x247d8: "\x03\x05\x03\x05\x01\x01\x02\x04\x01\x03\x04", // 𤟘
+ 0x247d9: "\x03\x05\x04\x01\x04\x03\x03\x04\x01\x03\x04\x04", // 𤟙
+ 0x247da: "\x03\x05\x03\x03\x02\x01\x01\x05\x01\x01\x05\x04", // 𤟚
+ 0x247db: "\x03\x05\x03\x03\x05\x02\x05\x01\x03\x05\x04", // 𤟛
+ 0x247dc: "\x02\x01\x05\x03\x01\x05\x02\x05\x01\x01\x03\x04\x04", // 𤟜
+ 0x247dd: "\x03\x05\x03\x02\x01\x05\x03\x01\x05\x02\x05\x02", // 𤟝
+ 0x247de: "\x04\x01\x03\x04\x03\x04\x02\x05\x01\x01\x03\x04\x04", // 𤟞
+ 0x247df: "\x03\x05\x03\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 𤟟
+ 0x247e0: "\x03\x05\x03\x05\x02\x01\x03\x04\x03\x05\x04\x01", // 𤟠
+ 0x247e1: "\x03\x05\x03\x03\x02\x05\x01\x01\x01\x01\x02\x01", // 𤟡
+ 0x247e2: "\x03\x03\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04\x04", // 𤟢
+ 0x247e3: "\x03\x05\x03\x05\x03\x05\x04\x02\x05\x02\x02\x01", // 𤟣
+ 0x247e4: "\x03\x05\x03\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 𤟤
+ 0x247e5: "\x03\x05\x03\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 𤟥
+ 0x247e6: "\x03\x05\x03\x01\x03\x02\x05\x02\x02\x01\x03\x04", // 𤟦
+ 0x247e7: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 𤟧
+ 0x247e8: "\x03\x05\x03\x01\x02\x01\x01\x02\x05\x01\x03\x02", // 𤟨
+ 0x247e9: "\x02\x05\x01\x02\x05\x01\x02\x01\x04\x01\x03\x04\x04", // 𤟩
+ 0x247ea: "\x03\x05\x03\x04\x04\x05\x03\x05\x01\x03\x04\x04", // 𤟪
+ 0x247eb: "\x03\x05\x03\x04\x04\x05\x04\x03\x03\x04\x05\x04", // 𤟫
+ 0x247ec: "\x03\x05\x03\x01\x02\x02\x02\x01\x01\x02\x03\x04", // 𤟬
+ 0x247ed: "\x03\x05\x02\x05\x01\x01\x05\x01\x05\x01\x03\x04\x04", // 𤟭
+ 0x247ee: "\x02\x05\x02\x01\x03\x02\x05\x02\x02\x01\x03\x04\x04", // 𤟮
+ 0x247ef: "\x03\x05\x03\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 𤟯
+ 0x247f0: "\x03\x05\x03\x01\x02\x05\x01\x02\x03\x04\x02\x02", // 𤟰
+ 0x247f1: "\x03\x05\x03\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 𤟱
+ 0x247f2: "\x03\x05\x03\x04\x03\x01\x01\x02\x01\x05\x03\x01", // 𤟲
+ 0x247f3: "\x03\x05\x03\x03\x05\x02\x05\x01\x03\x05\x05\x03", // 𤟳
+ 0x247f4: "\x01\x03\x04\x04\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 𤟴
+ 0x247f5: "\x03\x05\x01\x03\x02\x05\x01\x01\x01\x01\x03\x04\x04", // 𤟵
+ 0x247f6: "\x02\x05\x01\x05\x01\x03\x05\x01\x01\x01\x03\x04\x04", // 𤟶
+ 0x247f7: "\x03\x05\x03\x01\x03\x02\x04\x01\x02\x01\x02\x01", // 𤟷
+ 0x247f8: "\x03\x05\x03\x02\x05\x01\x01\x02\x03\x01\x03\x04", // 𤟸
+ 0x247f9: "\x03\x05\x03\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𤟹
+ 0x247fa: "\x03\x05\x03\x02\x05\x01\x02\x01\x01\x03\x05\x04", // 𤟺
+ 0x247fb: "\x03\x05\x03\x01\x01\x01\x02\x05\x03\x01\x03\x02", // 𤟻
+ 0x247fc: "\x03\x05\x03\x03\x05\x04\x01\x01\x01\x02\x05\x01", // 𤟼
+ 0x247fd: "\x03\x05\x03\x04\x01\x05\x03\x03\x01\x05\x02\x05", // 𤟽
+ 0x247fe: "\x03\x05\x03\x04\x01\x04\x03\x04\x05\x02\x05\x02", // 𤟾
+ 0x247ff: "\x03\x05\x03\x04\x04\x05\x01\x02\x05\x01\x01\x01", // 𤟿
+ 0x24800: "\x03\x05\x03\x05\x02\x02\x05\x01\x05\x04\x05\x02", // 𤠀
+ 0x24801: "\x03\x05\x03\x04\x03\x01\x03\x02\x05\x01\x01\x01", // 𤠁
+ 0x24802: "\x03\x05\x03\x01\x02\x02\x05\x04\x02\x05\x01", // 𤠂
+ 0x24803: "\x03\x05\x03\x01\x05\x05\x05\x01\x02\x01\x05\x03", // 𤠃
+ 0x24804: "\x03\x05\x03\x03\x04\x04\x03\x01\x02\x05\x01\x02", // 𤠄
+ 0x24805: "\x03\x05\x03\x01\x03\x02\x04\x02\x05\x02\x02\x01", // 𤠅
+ 0x24806: "\x03\x05\x03\x04\x01\x02\x05\x01\x03\x05\x03\x04", // 𤠆
+ 0x24807: "\x03\x05\x03\x01\x02\x02\x01\x02\x05\x01\x01\x02", // 𤠇
+ 0x24808: "\x03\x05\x03\x03\x02\x01\x05\x01\x01\x01\x03\x02", // 𤠈
+ 0x24809: "\x03\x05\x03\x01\x02\x02\x02\x05\x01\x03\x04", // 𤠉
+ 0x2480a: "\x04\x04\x05\x01\x02\x05\x01\x01\x01\x01\x03\x04\x04", // 𤠊
+ 0x2480b: "\x03\x05\x03\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 𤠋
+ 0x2480c: "\x03\x05\x03\x02\x01\x02\x01\x03\x05\x01\x02\x03\x04", // 𤠌
+ 0x2480d: "\x03\x05\x03\x03\x03\x05\x04\x01\x04\x03\x05\x05\x04", // 𤠍
+ 0x2480e: "\x03\x05\x03\x02\x05\x01\x02\x01\x03\x05\x03\x05\x04", // 𤠎
+ 0x2480f: "\x03\x05\x03\x05\x03\x04\x05\x03\x04\x02\x01\x02\x01", // 𤠏
+ 0x24810: "\x03\x05\x03\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 𤠐
+ 0x24811: "\x03\x05\x03\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 𤠑
+ 0x24812: "\x03\x05\x03\x03\x02\x05\x01\x05\x01\x01\x03\x04\x04", // 𤠒
+ 0x24813: "\x03\x05\x03\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04", // 𤠓
+ 0x24814: "\x03\x05\x03\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𤠔
+ 0x24815: "\x03\x05\x03\x04\x01\x05\x05\x04\x02\x05\x01\x02\x01", // 𤠕
+ 0x24816: "\x03\x05\x03\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 𤠖
+ 0x24817: "\x03\x05\x03\x05\x04\x03\x05\x04\x01\x01\x05\x01\x05", // 𤠗
+ 0x24818: "\x03\x05\x03\x04\x05\x04\x04\x02\x05\x01\x02\x01\x04", // 𤠘
+ 0x24819: "\x03\x05\x03\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02", // 𤠙
+ 0x2481a: "\x03\x05\x03\x01\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 𤠚
+ 0x2481b: "\x03\x05\x03\x01\x02\x02\x03\x04\x05\x03\x02\x05", // 𤠛
+ 0x2481c: "\x03\x05\x03\x04\x01\x03\x03\x01\x02\x01\x05\x04", // 𤠜
+ 0x2481d: "\x03\x05\x03\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01", // 𤠝
+ 0x2481e: "\x03\x05\x03\x03\x02\x05\x03\x04\x01\x01\x05\x01\x05", // 𤠞
+ 0x2481f: "\x03\x05\x03\x01\x02\x01\x02\x03\x04\x01\x02\x05\x01", // 𤠟
+ 0x24820: "\x03\x05\x03\x04\x01\x02\x05\x01\x01\x03\x05\x03\x04", // 𤠠
+ 0x24821: "\x03\x05\x03\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 𤠡
+ 0x24822: "\x02\x05\x01\x02\x05\x01\x02\x01\x04\x01\x03\x04\x04", // 𤠢
+ 0x24823: "\x03\x05\x03\x03\x02\x02\x05\x01\x03\x01\x01\x03\x04", // 𤠣
+ 0x24824: "\x03\x05\x03\x01\x02\x01\x02\x04\x01\x05\x03\x02\x05", // 𤠤
+ 0x24825: "\x03\x05\x03\x05\x02\x03\x05\x02\x03\x03\x03\x01\x02", // 𤠥
+ 0x24826: "\x03\x05\x03\x02\x05\x02\x01\x03\x05\x03\x01\x03\x05", // 𤠦
+ 0x24827: "\x03\x05\x03\x05\x04\x02\x05\x01\x02\x01\x04\x02\x02", // 𤠧
+ 0x24828: "\x01\x02\x01\x02\x01\x02\x05\x02\x03\x04\x01\x03\x04\x04", // 𤠨
+ 0x24829: "\x03\x02\x05\x01\x01\x01\x04\x01\x05\x03\x04\x01\x03\x04\x04", // 𤠩
+ 0x2482a: "\x05\x05\x05\x02\x05\x01\x01\x02\x01\x01\x01\x03\x04\x04", // 𤠪
+ 0x2482b: "\x03\x05\x03\x01\x02\x05\x02\x02\x01\x01\x02\x03\x04", // 𤠫
+ 0x2482c: "\x03\x05\x03\x01\x03\x02\x05\x01\x02\x05\x02\x05\x01", // 𤠬
+ 0x2482d: "\x03\x05\x03\x03\x02\x05\x01\x01\x01\x03\x01\x02\x04", // 𤠭
+ 0x2482e: "\x03\x05\x03\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03", // 𤠮
+ 0x2482f: "\x03\x05\x03\x04\x01\x03\x05\x01\x01\x02\x02\x05\x01", // 𤠯
+ 0x24830: "\x03\x05\x03\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01", // 𤠰
+ 0x24831: "\x03\x05\x03\x01\x02\x01\x05\x04\x03\x01\x01\x03\x04", // 𤠱
+ 0x24832: "\x03\x05\x03\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 𤠲
+ 0x24833: "\x03\x05\x03\x01\x02\x01\x02\x01\x03\x04\x05\x01\x05", // 𤠳
+ 0x24834: "\x03\x05\x03\x05\x02\x04\x04\x05\x01\x01\x03\x05", // 𤠴
+ 0x24835: "\x03\x05\x03\x01\x01\x01\x05\x03\x03\x01\x01\x05", // 𤠵
+ 0x24836: "\x03\x05\x03\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 𤠶
+ 0x24837: "\x05\x02\x03\x01\x02\x05\x01\x02\x01\x04\x01\x03\x04\x04", // 𤠷
+ 0x24838: "\x03\x05\x03\x04\x05\x01\x01\x05\x04\x05\x02", // 𤠸
+ 0x24839: "\x03\x05\x03\x01\x02\x02\x01\x03\x05\x04\x05\x02\x05\x02", // 𤠹
+ 0x2483a: "\x03\x05\x03\x02\x05\x01\x02\x01\x01\x02\x02\x01\x01\x02", // 𤠺
+ 0x2483b: "\x03\x05\x03\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01", // 𤠻
+ 0x2483c: "\x01\x02\x01\x04\x05\x03\x05\x03\x05\x05\x04\x01\x03\x04\x04", // 𤠼
+ 0x2483d: "\x03\x05\x03\x01\x03\x02\x01\x01\x02\x03\x04\x05\x03\x04", // 𤠽
+ 0x2483e: "\x03\x05\x03\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 𤠾
+ 0x2483f: "\x03\x05\x03\x01\x02\x05\x01\x02\x05\x05\x04\x01\x02\x01", // 𤠿
+ 0x24840: "\x03\x05\x03\x04\x03\x01\x01\x02\x01\x04\x05\x05\x03\x04", // 𤡀
+ 0x24841: "\x03\x05\x03\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04", // 𤡁
+ 0x24842: "\x03\x05\x03\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 𤡂
+ 0x24843: "\x03\x05\x03\x01\x02\x05\x01\x02\x03\x04\x03\x05\x03\x04", // 𤡃
+ 0x24844: "\x03\x05\x03\x01\x02\x05\x01\x01\x01\x02\x03\x01\x03\x04", // 𤡄
+ 0x24845: "\x03\x05\x03\x05\x04\x05\x04\x05\x04\x03\x04\x02\x04\x04", // 𤡅
+ 0x24846: "\x03\x05\x03\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04", // 𤡆
+ 0x24847: "\x03\x05\x03\x04\x01\x02\x05\x01\x04\x05\x03\x01\x01\x05", // 𤡇
+ 0x24848: "\x03\x05\x03\x04\x01\x01\x01\x02\x05\x01\x03\x01\x01\x02", // 𤡈
+ 0x24849: "\x03\x05\x03\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𤡉
+ 0x2484a: "\x03\x05\x03\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 𤡊
+ 0x2484b: "\x03\x05\x03\x01\x02\x05\x01\x01\x01\x02\x03\x05\x03\x04", // 𤡋
+ 0x2484c: "\x03\x04\x03\x05\x01\x01\x02\x02\x05\x01\x01\x01\x05\x03", // 𤡌
+ 0x2484d: "\x03\x05\x03\x04\x01\x03\x01\x02\x02\x01\x04\x04\x04\x04", // 𤡍
+ 0x2484e: "\x04\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x03\x04\x04", // 𤡎
+ 0x2484f: "\x03\x05\x03\x01\x02\x01\x01\x01\x05\x04\x03\x01\x03\x04", // 𤡏
+ 0x24850: "\x03\x05\x03\x01\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01", // 𤡐
+ 0x24851: "\x03\x05\x03\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 𤡑
+ 0x24852: "\x03\x05\x03\x02\x05\x01\x01\x02\x01\x01\x05\x04\x05\x02", // 𤡒
+ 0x24853: "\x03\x05\x03\x02\x05\x01\x02\x05\x01\x01\x05\x03\x04\x01", // 𤡓
+ 0x24854: "\x03\x05\x03\x03\x02\x05\x01\x01\x01\x05\x01\x02\x03\x04", // 𤡔
+ 0x24855: "\x03\x05\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𤡕
+ 0x24856: "\x03\x05\x03\x04\x01\x01\x01\x02\x05\x01\x04\x05\x04", // 𤡖
+ 0x24857: "\x03\x05\x03\x04\x04\x05\x04\x03\x03\x04\x04\x03\x03\x04", // 𤡗
+ 0x24858: "\x03\x05\x03\x05\x01\x01\x03\x05\x01\x01\x03\x05\x05\x04", // 𤡘
+ 0x24859: "\x03\x05\x03\x05\x04\x05\x04\x05\x04\x03\x04\x01\x01\x01", // 𤡙
+ 0x2485a: "\x03\x04\x03\x05\x01\x01\x05\x04\x01\x05\x03\x05", // 𤡚
+ 0x2485b: "\x03\x04\x03\x04\x04\x05\x01\x02\x05\x02\x02\x01\x01\x02", // 𤡛
+ 0x2485c: "\x01\x02\x02\x01\x01\x02\x05\x03\x04\x03\x04\x01\x03\x04\x04", // 𤡜
+ 0x2485d: "\x03\x05\x03\x03\x01\x01\x01\x02\x01\x01\x01\x01\x02\x01", // 𤡝
+ 0x2485e: "\x03\x05\x03\x01\x02\x01\x02\x05\x01\x01\x02\x01\x03\x04", // 𤡞
+ 0x2485f: "\x03\x05\x03\x02\x05\x01\x02\x05\x01\x02\x04\x05\x04\x04", // 𤡟
+ 0x24860: "\x03\x05\x03\x02\x05\x01\x01\x01\x03\x01\x01\x05\x03\x04", // 𤡠
+ 0x24861: "\x03\x05\x03\x03\x02\x01\x05\x01\x01\x03\x05\x03\x04\x05", // 𤡡
+ 0x24862: "\x03\x05\x03\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 𤡢
+ 0x24863: "\x03\x05\x03\x02\x01\x05\x03\x01\x05\x02\x02\x05\x02\x01\x01", // 𤡣
+ 0x24864: "\x03\x05\x03\x01\x03\x02\x05\x02\x02\x01\x03\x02\x05\x02\x02", // 𤡤
+ 0x24865: "\x03\x05\x03\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x01\x01", // 𤡥
+ 0x24866: "\x03\x05\x03\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04", // 𤡦
+ 0x24867: "\x03\x05\x03\x04\x05\x04\x04\x04\x05\x04\x04\x04\x05\x04\x04", // 𤡧
+ 0x24868: "\x03\x05\x03\x05\x05\x04\x04\x04\x04\x05\x05\x04\x02\x03\x04", // 𤡨
+ 0x24869: "\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02\x01\x03\x04\x04", // 𤡩
+ 0x2486a: "\x03\x05\x03\x05\x02\x01\x03\x01\x02\x01\x03\x05\x04\x01", // 𤡪
+ 0x2486b: "\x03\x05\x03\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04", // 𤡫
+ 0x2486c: "\x03\x05\x03\x01\x02\x01\x04\x05\x01\x02\x05\x01\x04\x03\x01", // 𤡬
+ 0x2486d: "\x03\x05\x03\x01\x02\x01\x02\x05\x01\x04\x03\x01\x03\x03\x03", // 𤡭
+ 0x2486e: "\x03\x05\x03\x03\x05\x04\x01\x01\x03\x04\x04\x04\x04\x04\x04", // 𤡮
+ 0x2486f: "\x03\x05\x03\x03\x02\x01\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𤡯
+ 0x24870: "\x03\x05\x03\x01\x01\x02\x01\x04\x01\x03\x04\x01\x01\x02\x01", // 𤡰
+ 0x24871: "\x03\x05\x03\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𤡱
+ 0x24872: "\x03\x05\x03\x05\x01\x01\x02\x02\x05\x01\x01\x01\x01\x03\x02", // 𤡲
+ 0x24873: "\x03\x05\x03\x01\x02\x05\x01\x01\x02\x03\x04\x03\x01\x03\x04", // 𤡳
+ 0x24874: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01\x04\x01\x03\x04\x04", // 𤡴
+ 0x24875: "\x03\x05\x01\x03\x03\x02\x04\x01\x01\x01\x02\x01\x01\x03\x04\x04", // 𤡵
+ 0x24876: "\x03\x05\x03\x01\x02\x01\x02\x01\x02\x03\x04\x03\x04\x01\x02", // 𤡶
+ 0x24877: "\x03\x05\x03\x04\x04\x01\x01\x05\x01\x05\x01\x02\x03\x04", // 𤡷
+ 0x24878: "\x03\x05\x03\x03\x05\x02\x05\x01\x03\x05\x03\x03\x03\x04", // 𤡸
+ 0x24879: "\x03\x05\x03\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02", // 𤡹
+ 0x2487a: "\x03\x05\x03\x04\x04\x05\x04\x05\x04\x04\x02\x05\x02\x01\x01", // 𤡺
+ 0x2487b: "\x03\x05\x03\x01\x02\x05\x01\x01\x02\x03\x04\x03\x05\x03\x04", // 𤡻
+ 0x2487c: "\x03\x05\x03\x01\x02\x01\x05\x05\x01\x02\x02\x05\x01\x02\x01", // 𤡼
+ 0x2487d: "\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x03\x04\x01\x03\x04\x04", // 𤡽
+ 0x2487e: "\x01\x02\x01\x05\x05\x01\x02\x01\x04\x05\x04\x04\x01\x03\x04\x04", // 𤡾
+ 0x2487f: "\x03\x01\x04\x03\x01\x04\x03\x04\x01\x02\x05\x01\x01\x03\x04\x04", // 𤡿
+ 0x24880: "\x03\x05\x03\x01\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01", // 𤢀
+ 0x24881: "\x03\x05\x03\x01\x02\x02\x02\x05\x01\x02\x05\x01\x03\x02", // 𤢁
+ 0x24882: "\x03\x05\x03\x01\x02\x05\x02\x02\x01\x04\x03\x01\x02\x03\x04", // 𤢂
+ 0x24883: "\x03\x05\x03\x01\x03\x02\x05\x01\x02\x05\x03\x05\x02\x05\x02", // 𤢃
+ 0x24884: "\x03\x05\x03\x02\x04\x03\x02\x05\x02\x05\x01\x03\x01\x03\x04", // 𤢄
+ 0x24885: "\x03\x05\x03\x03\x05\x04\x01\x01\x03\x04\x04\x04\x03\x03\x04", // 𤢅
+ 0x24886: "\x03\x05\x03\x04\x04\x05\x04\x05\x04\x04\x02\x05\x01\x01\x02", // 𤢆
+ 0x24887: "\x03\x05\x03\x03\x01\x04\x03\x01\x04\x05\x01\x01\x01\x01\x02", // 𤢇
+ 0x24888: "\x03\x05\x03\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 𤢈
+ 0x24889: "\x03\x05\x03\x01\x05\x04\x03\x05\x04\x01\x03\x01\x03\x04", // 𤢉
+ 0x2488a: "\x03\x05\x03\x02\x05\x01\x02\x01\x02\x01\x03\x05\x04\x02\x05\x01", // 𤢊
+ 0x2488b: "\x03\x05\x03\x01\x03\x05\x04\x03\x01\x03\x04\x01\x02\x02\x02\x01", // 𤢋
+ 0x2488c: "\x03\x05\x03\x03\x04\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 𤢌
+ 0x2488d: "\x03\x05\x03\x01\x03\x01\x02\x01\x03\x05\x04\x01\x04\x05\x04", // 𤢍
+ 0x2488e: "\x03\x05\x03\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x01\x02\x01", // 𤢎
+ 0x2488f: "\x03\x05\x03\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 𤢏
+ 0x24890: "\x03\x05\x03\x04\x01\x05\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 𤢐
+ 0x24891: "\x03\x05\x03\x01\x02\x01\x02\x05\x04\x03\x03\x04\x01\x01\x03\x04", // 𤢑
+ 0x24892: "\x03\x05\x03\x04\x01\x03\x05\x02\x02\x01\x01\x05\x04\x04\x04\x04", // 𤢒
+ 0x24893: "\x03\x05\x03\x02\x01\x05\x03\x01\x05\x01\x03\x05\x03\x03\x03\x04", // 𤢓
+ 0x24894: "\x03\x05\x03\x02\x05\x01\x01\x03\x05\x03\x04\x05\x03\x05\x03\x04", // 𤢔
+ 0x24895: "\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x01\x03\x04\x04", // 𤢕
+ 0x24896: "\x03\x05\x03\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 𤢖
+ 0x24897: "\x03\x05\x03\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x01", // 𤢗
+ 0x24898: "\x03\x05\x03\x03\x05\x04\x01\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 𤢘
+ 0x24899: "\x03\x05\x03\x01\x03\x04\x04\x03\x02\x05\x01\x01\x04\x03\x03\x04", // 𤢙
+ 0x2489a: "\x05\x04\x05\x04\x02\x05\x01\x01\x02\x05\x02\x01\x04\x01\x03\x04\x04", // 𤢚
+ 0x2489b: "\x03\x05\x03\x04\x01\x04\x03\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 𤢛
+ 0x2489c: "\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04\x01\x03\x04\x04", // 𤢜
+ 0x2489d: "\x05\x02\x02\x05\x02\x04\x01\x05\x03\x03\x01\x03\x04\x01\x03\x04\x04", // 𤢝
+ 0x2489e: "\x03\x05\x03\x02\x05\x01\x01\x02\x05\x02\x02\x01\x04\x01\x05\x03", // 𤢞
+ 0x2489f: "\x03\x05\x03\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 𤢟
+ 0x248a0: "\x03\x05\x03\x02\x05\x02\x02\x05\x01\x01\x03\x05\x02\x01\x02\x01", // 𤢠
+ 0x248a1: "\x03\x05\x03\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05", // 𤢡
+ 0x248a2: "\x03\x05\x03\x04\x01\x02\x05\x01\x02\x01\x04\x01\x03\x05\x03\x04", // 𤢢
+ 0x248a3: "\x03\x05\x03\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 𤢣
+ 0x248a4: "\x03\x05\x03\x04\x01\x02\x05\x02\x05\x01\x01\x03\x01\x02\x03\x04", // 𤢤
+ 0x248a5: "\x03\x05\x03\x01\x02\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𤢥
+ 0x248a6: "\x03\x05\x03\x03\x04\x04\x03\x01\x02\x01\x05\x01\x01\x04\x05\x04\x04", // 𤢦
+ 0x248a7: "\x03\x05\x03\x04\x05\x03\x02\x01\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𤢧
+ 0x248a8: "\x03\x05\x03\x01\x02\x01\x02\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 𤢨
+ 0x248a9: "\x03\x05\x03\x05\x02\x01\x03\x01\x02\x01\x03\x05\x04\x01\x04\x05\x04", // 𤢩
+ 0x248aa: "\x03\x05\x03\x05\x05\x05\x02\x05\x03\x04\x05\x04\x04\x05\x04\x04\x05", // 𤢪
+ 0x248ab: "\x03\x05\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04\x01\x02\x01\x03\x02", // 𤢫
+ 0x248ac: "\x03\x05\x03\x01\x02\x01\x02\x05\x01\x04\x05\x01\x05\x04\x01\x02\x01", // 𤢬
+ 0x248ad: "\x03\x05\x03\x04\x01\x02\x05\x01\x04\x05\x01\x03\x05\x03\x03\x03\x04", // 𤢭
+ 0x248ae: "\x03\x05\x03\x04\x03\x01\x01\x01\x02\x01\x03\x04\x04\x01\x03\x04\x04", // 𤢮
+ 0x248af: "\x03\x05\x03\x04\x03\x03\x04\x04\x03\x03\x04\x03\x05\x04\x01\x05\x02", // 𤢯
+ 0x248b0: "\x03\x05\x03\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x01\x05\x03", // 𤢰
+ 0x248b1: "\x03\x05\x03\x04\x04\x05\x03\x04\x05\x04\x05\x04\x04\x05\x04\x04\x05", // 𤢱
+ 0x248b2: "\x03\x05\x03\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x01\x05\x03\x04", // 𤢲
+ 0x248b3: "\x03\x05\x03\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02", // 𤢳
+ 0x248b4: "\x03\x05\x03\x03\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x03\x04", // 𤢴
+ 0x248b5: "\x03\x05\x03\x01\x03\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𤢵
+ 0x248b6: "\x03\x05\x03\x04\x04\x05\x03\x05\x03\x02\x05\x01\x01\x01\x03\x05\x01\x05", // 𤢶
+ 0x248b7: "\x03\x05\x03\x01\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 𤢷
+ 0x248b8: "\x03\x05\x03\x04\x04\x05\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 𤢸
+ 0x248b9: "\x03\x05\x03\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01", // 𤢹
+ 0x248ba: "\x03\x05\x03\x01\x02\x01\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𤢺
+ 0x248bb: "\x03\x05\x03\x01\x02\x02\x01\x03\x05\x04\x05\x02\x05\x02\x04\x05\x04\x04", // 𤢻
+ 0x248bc: "\x03\x05\x03\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01\x04\x05\x04", // 𤢼
+ 0x248bd: "\x03\x05\x03\x03\x03\x01\x02\x03\x03\x01\x02\x02\x05\x01\x01\x01\x03\x04", // 𤢽
+ 0x248be: "\x03\x05\x03\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x02\x02", // 𤢾
+ 0x248bf: "\x03\x05\x03\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01", // 𤢿
+ 0x248c0: "\x03\x05\x03\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x03\x04\x05\x02", // 𤣀
+ 0x248c1: "\x03\x05\x03\x02\x05\x01\x02\x02\x01\x04\x05\x01\x02\x05\x01\x04\x03\x01", // 𤣁
+ 0x248c2: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x01\x03\x04\x04", // 𤣂
+ 0x248c3: "\x03\x05\x03\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01", // 𤣃
+ 0x248c4: "\x03\x05\x03\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x04\x04\x04\x04", // 𤣄
+ 0x248c5: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x01\x03\x04\x04", // 𤣅
+ 0x248c6: "\x03\x05\x03\x01\x02\x02\x01\x01\x01\x05\x05\x04\x05\x05\x04\x04\x04\x04\x04", // 𤣆
+ 0x248c7: "\x03\x05\x03\x01\x02\x02\x01\x02\x02\x01\x04\x05\x02\x05\x02\x04\x05\x04\x04", // 𤣇
+ 0x248c8: "\x03\x05\x03\x01\x02\x02\x01\x01\x01\x05\x05\x04\x05\x05\x04\x03\x04\x03\x04", // 𤣈
+ 0x248c9: "\x01\x04\x05\x01\x02\x01\x02\x05\x01\x02\x05\x04\x03\x01\x01\x02\x01\x03\x04\x04", // 𤣉
+ 0x248ca: "\x03\x05\x03\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04\x01\x03\x04\x04", // 𤣊
+ 0x248cb: "\x03\x05\x03\x01\x04\x05\x02\x04\x01\x03\x04\x04\x03\x01\x02\x02\x04\x03\x01", // 𤣋
+ 0x248cc: "\x03\x05\x03\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x05\x02\x01", // 𤣌
+ 0x248cd: "\x03\x05\x03\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 𤣍
+ 0x248ce: "\x03\x05\x03\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x05\x03\x01", // 𤣎
+ 0x248cf: "\x02\x01\x05\x03\x01\x05\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x03\x04\x04", // 𤣏
+ 0x248d0: "\x03\x05\x03\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x02\x01", // 𤣐
+ 0x248d1: "\x03\x05\x03\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x03\x05\x02\x05\x01", // 𤣑
+ 0x248d2: "\x03\x05\x03\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01", // 𤣒
+ 0x248d3: "\x03\x05\x03\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𤣓
+ 0x248d4: "\x03\x05\x03\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x01\x02\x01", // 𤣔
+ 0x248d5: "\x03\x05\x03\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𤣕
+ 0x248d6: "\x03\x05\x03\x01\x01\x01\x02\x02\x01\x01\x01\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 𤣖
+ 0x248d7: "\x03\x05\x03\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x01\x02\x01\x04", // 𤣗
+ 0x248d8: "\x04\x05\x02\x05\x01\x01\x04\x01\x03\x04\x03\x05\x03\x01\x02\x01\x03\x02\x05\x01\x01", // 𤣘
+ 0x248d9: "\x03\x05\x03\x04\x03\x01\x03\x02\x05\x01\x01\x04\x05\x01\x02\x01\x02\x01\x03\x01\x03\x04", // 𤣙
+ 0x248da: "\x03\x05\x03\x02\x05\x01\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01\x03\x05\x05\x02\x01\x05", // 𤣚
+ 0x248db: "\x03\x05\x03\x04\x04\x05\x03\x05\x03\x03\x05\x04\x04\x03\x03\x05\x04\x04\x03\x03\x05\x04\x04", // 𤣛
+ 0x248dc: "\x03\x05\x03\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x01\x03\x01\x01\x05\x03\x04", // 𤣜
+ 0x248dd: "\x03\x05\x03\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04\x02\x05\x01\x02\x01\x04", // 𤣝
+ 0x248de: "\x03\x05\x03\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𤣞
+ 0x248df: "\x03\x05\x03\x01\x02\x05\x01\x02\x05\x03\x01\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 𤣟
+ 0x248e0: "\x03\x05\x03\x02\x05\x01\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x02\x05\x01", // 𤣠
+ 0x248e1: "\x03\x05\x03\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04\x01\x02\x02\x05\x01\x01\x01\x01", // 𤣡
+ 0x248e2: "\x03\x05\x03\x01\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 𤣢
+ 0x248e3: "\x03\x05\x03\x02\x05\x01\x02\x05\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x02\x05\x01", // 𤣣
+ 0x248e4: "\x03\x05\x03\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x03\x04\x01", // 𤣤
+ 0x248e5: "\x04\x01\x05\x05", // 𤣥
+ 0x248e6: "\x04\x01\x05\x05\x01\x03\x05\x04", // 𤣦
+ 0x248e7: "\x04\x01\x05\x05\x04\x02\x05\x02\x03\x01\x02\x01", // 𤣧
+ 0x248e8: "\x04\x01\x05\x05\x04\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 𤣨
+ 0x248e9: "\x01\x01\x02\x01", // 𤣩
+ 0x248ea: "\x01\x01\x02\x03\x05\x01", // 𤣪
+ 0x248eb: "\x01\x01\x02\x01\x05", // 𤣫
+ 0x248ec: "\x03\x05\x01\x01\x02\x01\x04", // 𤣬
+ 0x248ed: "\x01\x01\x02\x01\x05\x01\x02", // 𤣭
+ 0x248ee: "\x01\x01\x02\x01\x03\x01\x05", // 𤣮
+ 0x248ef: "\x01\x01\x02\x01\x03\x01\x05", // 𤣯
+ 0x248f0: "\x01\x01\x02\x01\x01\x02\x01", // 𤣰
+ 0x248f1: "\x01\x01\x02\x01\x05\x01\x05", // 𤣱
+ 0x248f2: "\x01\x01\x02\x01\x05\x01\x02", // 𤣲
+ 0x248f3: "\x01\x01\x02\x01\x03\x01\x02", // 𤣳
+ 0x248f4: "\x04\x01\x05\x01\x01\x02\x01", // 𤣴
+ 0x248f5: "\x01\x01\x02\x01\x03\x05\x04", // 𤣵
+ 0x248f6: "\x01\x01\x02\x01\x04\x02\x05\x02", // 𤣶
+ 0x248f7: "\x01\x01\x02\x01\x05\x03\x01", // 𤣷
+ 0x248f8: "\x01\x01\x02\x01\x01\x03\x04", // 𤣸
+ 0x248f9: "\x01\x01\x02\x01\x05\x01\x01\x03", // 𤣹
+ 0x248fa: "\x01\x01\x02\x01\x03\x03\x02\x04", // 𤣺
+ 0x248fb: "\x01\x01\x02\x01\x03\x05\x05\x04", // 𤣻
+ 0x248fc: "\x02\x05\x03\x04\x01\x01\x02\x01\x04", // 𤣼
+ 0x248fd: "\x01\x01\x02\x01\x02\x05\x01\x01", // 𤣽
+ 0x248fe: "\x01\x01\x02\x01\x01\x03\x05\x04", // 𤣾
+ 0x248ff: "\x01\x01\x02\x01\x01\x01\x03\x02", // 𤣿
+ 0x24900: "\x01\x01\x02\x01\x01\x05\x02\x05", // 𤤀
+ 0x24901: "\x01\x01\x02\x01\x04\x01\x05\x03", // 𤤁
+ 0x24902: "\x01\x01\x02\x01\x05\x04\x05\x02", // 𤤂
+ 0x24903: "\x01\x01\x02\x01\x02\x01\x01\x01", // 𤤃
+ 0x24904: "\x01\x01\x02\x01\x03\x05\x05\x04", // 𤤄
+ 0x24905: "\x01\x01\x02\x01\x03\x05\x03\x03", // 𤤅
+ 0x24906: "\x01\x01\x02\x01\x03\x03\x01\x02", // 𤤆
+ 0x24907: "\x01\x01\x02\x01\x01\x01\x03\x04", // 𤤇
+ 0x24908: "\x01\x01\x02\x01\x01\x05\x05\x04", // 𤤈
+ 0x24909: "\x01\x01\x02\x01\x02\x03\x04\x03", // 𤤉
+ 0x2490a: "\x01\x01\x02\x01\x05\x03\x05\x03", // 𤤊
+ 0x2490b: "\x03\x01\x03\x04\x01\x01\x02\x01\x04", // 𤤋
+ 0x2490c: "\x01\x01\x02\x01\x04\x05\x03\x05", // 𤤌
+ 0x2490d: "\x01\x01\x02\x01\x01\x05\x03\x05", // 𤤍
+ 0x2490e: "\x03\x04\x03\x04\x01\x01\x02\x01\x04", // 𤤎
+ 0x2490f: "\x01\x01\x02\x01\x05\x01\x02\x05\x04", // 𤤏
+ 0x24910: "\x01\x01\x02\x01\x03\x03\x01\x02\x04", // 𤤐
+ 0x24911: "\x01\x01\x02\x01\x01\x02\x01\x05\x02", // 𤤑
+ 0x24912: "\x01\x01\x02\x01\x01\x03\x03\x04\x04", // 𤤒
+ 0x24913: "\x01\x01\x02\x01\x05\x02\x01\x01\x02", // 𤤓
+ 0x24914: "\x01\x01\x02\x01\x04\x01\x04\x03\x01", // 𤤔
+ 0x24915: "\x01\x01\x02\x01\x03\x02\x01\x02\x04", // 𤤕
+ 0x24916: "\x01\x01\x02\x01\x05\x01\x05\x03\x02", // 𤤖
+ 0x24917: "\x01\x01\x02\x01\x05\x01\x03\x03\x05", // 𤤗
+ 0x24918: "\x02\x01\x01\x01\x05\x01\x01\x02\x01", // 𤤘
+ 0x24919: "\x01\x01\x02\x01\x04\x01\x02\x02\x01\x04", // 𤤙
+ 0x2491a: "\x01\x01\x02\x01\x04\x05\x02\x05\x02", // 𤤚
+ 0x2491b: "\x01\x01\x02\x01\x04\x01\x01\x02\x01", // 𤤛
+ 0x2491c: "\x01\x01\x02\x01\x01\x02\x01\x03\x05", // 𤤜
+ 0x2491d: "\x01\x01\x02\x01\x01\x02\x05\x03\x04", // 𤤝
+ 0x2491e: "\x01\x01\x02\x01\x01\x01\x03\x05\x04", // 𤤞
+ 0x2491f: "\x01\x01\x02\x01\x01\x03\x02\x05\x01", // 𤤟
+ 0x24920: "\x01\x01\x02\x01\x02\x05\x01\x03\x04", // 𤤠
+ 0x24921: "\x01\x01\x02\x01\x02\x05\x04\x03\x01", // 𤤡
+ 0x24922: "\x01\x01\x02\x01\x02\x05\x05\x03\x01", // 𤤢
+ 0x24923: "\x01\x01\x02\x01\x03\x01\x03\x05\x04", // 𤤣
+ 0x24924: "\x01\x01\x02\x01\x03\x01\x02\x03\x04", // 𤤤
+ 0x24925: "\x01\x01\x02\x01\x03\x01\x01\x03\x04", // 𤤥
+ 0x24926: "\x01\x01\x02\x01\x02\x05\x01\x02\x01", // 𤤦
+ 0x24927: "\x01\x01\x02\x01\x02\x05\x01\x02\x01", // 𤤧
+ 0x24928: "\x01\x01\x02\x01\x02\x05\x05\x01\x01", // 𤤨
+ 0x24929: "\x01\x01\x02\x01\x03\x01\x05\x02\x05", // 𤤩
+ 0x2492a: "\x01\x01\x02\x01\x03\x05\x01\x01\x02", // 𤤪
+ 0x2492b: "\x01\x01\x02\x01\x03\x05\x04\x02\x04", // 𤤫
+ 0x2492c: "\x01\x01\x02\x01\x05\x05\x04\x05\x03", // 𤤬
+ 0x2492d: "\x01\x01\x02\x01\x02\x05\x01\x03\x04", // 𤤭
+ 0x2492e: "\x01\x01\x02\x01\x03\x05\x04\x04\x04", // 𤤮
+ 0x2492f: "\x01\x01\x02\x01\x04\x05\x05\x03\x04", // 𤤯
+ 0x24930: "\x01\x01\x02\x01\x01\x03\x02\x05\x02", // 𤤰
+ 0x24931: "\x01\x01\x02\x01\x03\x02\x05\x05\x04", // 𤤱
+ 0x24932: "\x01\x01\x02\x01\x01\x02\x01\x03\x05", // 𤤲
+ 0x24933: "\x01\x01\x02\x01\x05\x04\x03\x04", // 𤤳
+ 0x24934: "\x01\x01\x02\x01\x04\x01\x01\x02\x01\x04", // 𤤴
+ 0x24935: "\x01\x01\x02\x01\x03\x03\x01\x01\x01\x02", // 𤤵
+ 0x24936: "\x01\x02\x01\x03\x05\x04\x01\x01\x02\x01\x04", // 𤤶
+ 0x24937: "\x01\x01\x02\x01\x03\x02\x05\x01\x05\x01", // 𤤷
+ 0x24938: "\x01\x01\x02\x01\x03\x05\x01\x02\x03\x04", // 𤤸
+ 0x24939: "\x01\x01\x02\x01\x01\x02\x05\x02\x03\x04", // 𤤹
+ 0x2493a: "\x01\x01\x02\x01\x02\x05\x01\x01\x05\x03", // 𤤺
+ 0x2493b: "\x01\x01\x02\x01\x05\x03\x01\x01\x02\x01", // 𤤻
+ 0x2493c: "\x01\x01\x02\x01\x05\x05\x05\x02\x05\x02", // 𤤼
+ 0x2493d: "\x01\x01\x02\x01\x03\x04\x02\x04\x04\x04", // 𤤽
+ 0x2493e: "\x01\x01\x02\x01\x04\x04\x01\x01\x01\x02", // 𤤾
+ 0x2493f: "\x01\x01\x02\x01\x01\x03\x02\x05\x01\x01", // 𤤿
+ 0x24940: "\x01\x01\x02\x01\x03\x05\x04\x03\x05\x04", // 𤥀
+ 0x24941: "\x01\x01\x02\x01\x03\x05\x04\x02\x05\x01", // 𤥁
+ 0x24942: "\x01\x01\x02\x01\x04\x01\x03\x02\x03\x04", // 𤥂
+ 0x24943: "\x01\x01\x02\x01\x04\x04\x05\x05\x03\x01", // 𤥃
+ 0x24944: "\x01\x01\x02\x01\x04\x03\x01\x02\x03\x04", // 𤥄
+ 0x24945: "\x01\x01\x02\x01\x04\x03\x04\x02\x04\x02", // 𤥅
+ 0x24946: "\x01\x01\x02\x01\x01\x02\x05\x02\x01\x01", // 𤥆
+ 0x24947: "\x01\x01\x02\x01\x01\x05\x04\x01\x02\x01", // 𤥇
+ 0x24948: "\x01\x01\x02\x01\x05\x01\x03\x02\x05\x02", // 𤥈
+ 0x24949: "\x01\x01\x02\x01\x01\x02\x01\x02\x05\x03", // 𤥉
+ 0x2494a: "\x01\x01\x02\x01\x04\x04\x02\x05\x03\x04", // 𤥊
+ 0x2494b: "\x01\x01\x02\x01\x03\x05\x01\x05\x02", // 𤥋
+ 0x2494c: "\x01\x01\x02\x01\x03\x05\x04\x05\x02", // 𤥌
+ 0x2494d: "\x01\x01\x02\x01\x03\x05\x04\x03\x03\x03", // 𤥍
+ 0x2494e: "\x01\x01\x02\x01\x04\x03\x03\x04\x05\x04", // 𤥎
+ 0x2494f: "\x05\x03\x01\x02\x05\x01\x01\x01\x02\x01\x04", // 𤥏
+ 0x24950: "\x01\x01\x02\x01\x01\x02\x01\x02\x05\x01", // 𤥐
+ 0x24951: "\x01\x01\x02\x01\x04\x01\x05\x05\x03\x01", // 𤥑
+ 0x24952: "\x01\x01\x02\x01\x01\x02\x05\x03\x05\x01", // 𤥒
+ 0x24953: "\x03\x04\x01\x02\x05\x01\x01\x01\x02\x01\x04", // 𤥓
+ 0x24954: "\x03\x05\x01\x03\x05\x04\x01\x01\x02\x01\x04", // 𤥔
+ 0x24955: "\x01\x01\x02\x01\x03\x05\x01\x03\x05\x05", // 𤥕
+ 0x24956: "\x01\x01\x02\x01\x03\x01\x01\x02\x01\x02\x01", // 𤥖
+ 0x24957: "\x01\x01\x02\x01\x01\x03\x01\x05\x02\x05\x01", // 𤥗
+ 0x24958: "\x01\x01\x02\x01\x03\x05\x03\x04\x05\x05\x04", // 𤥘
+ 0x24959: "\x01\x01\x02\x01\x01\x04\x03\x03\x04\x05\x04", // 𤥙
+ 0x2495a: "\x01\x01\x02\x01\x02\x05\x01\x01\x01\x01\x02", // 𤥚
+ 0x2495b: "\x01\x01\x02\x01\x02\x05\x01\x01\x01\x01\x05", // 𤥛
+ 0x2495c: "\x01\x01\x02\x01\x02\x05\x05\x01\x05\x05\x04", // 𤥜
+ 0x2495d: "\x01\x01\x02\x01\x01\x02\x01\x03\x05\x02\x01", // 𤥝
+ 0x2495e: "\x01\x01\x02\x01\x03\x03\x02\x03\x05\x05\x04", // 𤥞
+ 0x2495f: "\x01\x01\x02\x01\x02\x05\x01\x01\x05\x03\x04", // 𤥟
+ 0x24960: "\x01\x01\x02\x01\x04\x04\x05\x01\x03\x05\x04", // 𤥠
+ 0x24961: "\x01\x01\x02\x01\x04\x01\x05\x04\x01\x03\x02", // 𤥡
+ 0x24962: "\x01\x01\x02\x01\x03\x01\x01\x02\x02\x05\x01", // 𤥢
+ 0x24963: "\x01\x01\x02\x01\x01\x02\x02\x05\x01\x03\x05", // 𤥣
+ 0x24964: "\x01\x01\x02\x01\x04\x04\x05\x01\x02\x03\x04", // 𤥤
+ 0x24965: "\x01\x01\x02\x01\x04\x01\x03\x02\x04\x05\x04", // 𤥥
+ 0x24966: "\x01\x01\x02\x01\x04\x01\x03\x01\x02\x01\x04", // 𤥦
+ 0x24967: "\x01\x01\x02\x01\x01\x02\x01\x03\x01\x02\x01", // 𤥧
+ 0x24968: "\x01\x01\x02\x01\x01\x03\x05\x03\x03\x03\x04", // 𤥨
+ 0x24969: "\x01\x01\x02\x01\x02\x01\x05\x02\x01\x03\x04", // 𤥩
+ 0x2496a: "\x01\x01\x02\x01\x02\x05\x01\x01\x03\x02\x01", // 𤥪
+ 0x2496b: "\x01\x01\x02\x01\x03\x04\x03\x04\x02\x05\x01", // 𤥫
+ 0x2496c: "\x01\x01\x02\x01\x03\x01\x03\x05\x03\x03\x03", // 𤥬
+ 0x2496d: "\x01\x01\x02\x01\x01\x02\x05\x01\x01\x01\x02", // 𤥭
+ 0x2496e: "\x01\x01\x02\x01\x02\x03\x04\x03\x02\x05\x01", // 𤥮
+ 0x2496f: "\x01\x01\x02\x01\x02\x05\x01\x01\x02\x03\x04", // 𤥯
+ 0x24970: "\x01\x01\x02\x01\x03\x02\x05\x01\x01\x03\x05", // 𤥰
+ 0x24971: "\x01\x01\x02\x01\x03\x02\x05\x03\x04\x05\x04", // 𤥱
+ 0x24972: "\x01\x02\x04\x01\x03\x04\x04\x01\x01\x02\x01\x04", // 𤥲
+ 0x24973: "\x01\x01\x02\x01\x02\x05\x01\x02\x03\x04\x01", // 𤥳
+ 0x24974: "\x01\x01\x02\x01\x01\x02\x01\x04\x05\x04\x04", // 𤥴
+ 0x24975: "\x01\x01\x02\x01\x01\x03\x04\x03\x04\x03\x04", // 𤥵
+ 0x24976: "\x01\x01\x02\x01\x05\x01\x01\x03\x05\x02", // 𤥶
+ 0x24977: "\x01\x01\x02\x01\x02\x01\x05\x04\x01\x02\x01", // 𤥷
+ 0x24978: "\x01\x01\x02\x01\x02\x01\x05\x04\x05\x02", // 𤥸
+ 0x24979: "\x03\x01\x02\x03\x04\x05\x03\x01\x01\x02\x01\x04", // 𤥹
+ 0x2497a: "\x01\x01\x02\x01\x03\x05\x02\x05\x01\x03\x04", // 𤥺
+ 0x2497b: "\x01\x01\x02\x01\x03\x02\x01\x02\x01\x05\x04", // 𤥻
+ 0x2497c: "\x01\x01\x02\x01\x03\x05\x05\x04\x04\x05\x04\x04", // 𤥼
+ 0x2497d: "\x01\x01\x02\x01\x04\x01\x05\x03\x03\x04\x04\x04", // 𤥽
+ 0x2497e: "\x01\x01\x02\x01\x03\x05\x01\x03\x01\x02\x03\x04", // 𤥾
+ 0x2497f: "\x01\x01\x02\x01\x04\x01\x03\x02\x03\x05\x04\x04", // 𤥿
+ 0x24980: "\x05\x01\x05\x03\x05\x02\x03\x04\x01\x01\x02\x01\x04", // 𤦀
+ 0x24981: "\x01\x02\x05\x01\x02\x05\x05\x04\x01\x01\x02\x01\x04", // 𤦁
+ 0x24982: "\x01\x02\x05\x01\x01\x05\x03\x04\x01\x01\x02\x01\x04", // 𤦂
+ 0x24983: "\x01\x03\x04\x03\x04\x02\x03\x04\x01\x01\x02\x01\x04", // 𤦃
+ 0x24984: "\x01\x01\x02\x01\x05\x05\x05\x02\x05\x01\x01\x05", // 𤦄
+ 0x24985: "\x02\x01\x01\x01\x02\x01\x01\x01\x01\x01\x02\x01", // 𤦅
+ 0x24986: "\x01\x01\x02\x01\x05\x03\x03\x02\x01\x05\x01\x01", // 𤦆
+ 0x24987: "\x01\x01\x02\x01\x02\x05\x04\x03\x01\x02\x05\x02", // 𤦇
+ 0x24988: "\x01\x01\x02\x01\x01\x02\x01\x02\x03\x05\x05\x03", // 𤦈
+ 0x24989: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x01\x02\x01", // 𤦉
+ 0x2498a: "\x01\x01\x02\x01\x02\x05\x03\x04\x02\x05\x01\x01", // 𤦊
+ 0x2498b: "\x01\x01\x02\x01\x03\x01\x05\x01\x01\x02\x03\x04", // 𤦋
+ 0x2498c: "\x01\x01\x02\x01\x04\x04\x05\x02\x05\x01\x01\x01", // 𤦌
+ 0x2498d: "\x01\x01\x02\x01\x03\x02\x03\x05\x01\x02\x05\x02", // 𤦍
+ 0x2498e: "\x01\x01\x02\x01\x03\x04\x01\x02\x05\x01\x02\x02", // 𤦎
+ 0x2498f: "\x01\x01\x02\x01\x03\x05\x03\x03\x04\x05\x04\x04", // 𤦏
+ 0x24990: "\x01\x01\x02\x01\x01\x03\x01\x02\x01\x01\x02\x01", // 𤦐
+ 0x24991: "\x01\x01\x02\x01\x03\x02\x05\x03\x04\x01\x05\x04", // 𤦑
+ 0x24992: "\x01\x02\x05\x01\x01\x05\x03\x04\x01\x01\x02\x01", // 𤦒
+ 0x24993: "\x01\x01\x02\x01\x04\x04\x05\x01\x03\x05\x03\x03", // 𤦓
+ 0x24994: "\x01\x01\x02\x01\x04\x03\x01\x01\x03\x04\x05\x05", // 𤦔
+ 0x24995: "\x01\x01\x02\x01\x05\x02\x01\x02\x05\x02\x02\x01", // 𤦕
+ 0x24996: "\x01\x01\x02\x01\x01\x01\x02\x01\x03\x01\x01\x05", // 𤦖
+ 0x24997: "\x01\x01\x02\x01\x01\x01\x02\x01\x02\x05\x03\x04", // 𤦗
+ 0x24998: "\x01\x01\x02\x01\x01\x02\x02\x01\x02\x05\x01\x01", // 𤦘
+ 0x24999: "\x01\x01\x02\x01\x01\x02\x01\x02\x03\x02\x01\x05", // 𤦙
+ 0x2499a: "\x01\x01\x02\x01\x02\x05\x01\x01\x01\x01\x03\x04", // 𤦚
+ 0x2499b: "\x01\x01\x02\x01\x02\x05\x01\x01\x03\x05\x01\x01", // 𤦛
+ 0x2499c: "\x01\x01\x02\x01\x03\x04\x01\x01\x02\x02\x05\x01", // 𤦜
+ 0x2499d: "\x01\x01\x02\x01\x03\x02\x05\x01\x01\x02\x05\x02", // 𤦝
+ 0x2499e: "\x01\x01\x02\x01\x03\x02\x05\x01\x05\x01\x01\x02", // 𤦞
+ 0x2499f: "\x01\x02\x02\x01\x01\x01\x05\x04\x01\x01\x02\x01\x04", // 𤦟
+ 0x249a0: "\x01\x01\x02\x01\x01\x01\x02\x01\x03\x04\x03\x02", // 𤦠
+ 0x249a1: "\x02\x05\x01\x01\x02\x01\x01\x01\x02\x01\x05\x01\x04", // 𤦡
+ 0x249a2: "\x01\x02\x02\x01\x01\x01\x03\x04\x01\x01\x02\x01", // 𤦢
+ 0x249a3: "\x01\x01\x02\x01\x02\x01\x05\x03\x01\x05\x03\x04", // 𤦣
+ 0x249a4: "\x01\x01\x02\x01\x03\x02\x01\x05\x01\x01\x03\x05", // 𤦤
+ 0x249a5: "\x01\x01\x02\x01\x03\x02\x01\x05\x01\x01\x05\x03", // 𤦥
+ 0x249a6: "\x01\x01\x02\x01\x03\x05\x05\x03\x01\x01\x02\x01", // 𤦦
+ 0x249a7: "\x01\x01\x02\x01\x01\x02\x01\x02\x04\x05\x04", // 𤦧
+ 0x249a8: "\x03\x02\x01\x01\x01\x01\x03\x02\x01\x01\x02\x01\x04", // 𤦨
+ 0x249a9: "\x01\x01\x02\x01\x01\x02\x01\x05\x05\x01\x02\x01", // 𤦩
+ 0x249aa: "\x01\x01\x02\x01\x01\x02\x05\x01\x01\x02\x03\x04", // 𤦪
+ 0x249ab: "\x01\x01\x02\x01\x01\x02\x01\x03\x05\x03\x05\x04", // 𤦫
+ 0x249ac: "\x01\x01\x02\x01\x03\x04\x01\x05\x04\x05\x04\x04", // 𤦬
+ 0x249ad: "\x01\x01\x02\x01\x01\x01\x02\x01\x03\x05\x01\x01", // 𤦭
+ 0x249ae: "\x01\x01\x02\x01\x04\x04\x01\x05\x04\x02\x05\x01", // 𤦮
+ 0x249af: "\x01\x01\x02\x01\x05\x01\x01\x01\x01\x02\x03\x03\x03", // 𤦯
+ 0x249b0: "\x01\x01\x02\x01\x03\x05\x04\x05\x05\x04\x02\x03\x04", // 𤦰
+ 0x249b1: "\x01\x01\x02\x01\x05\x04\x02\x05\x03\x04\x05\x04\x01", // 𤦱
+ 0x249b2: "\x01\x01\x02\x01\x01\x05\x01\x05\x01\x02\x03\x04", // 𤦲
+ 0x249b3: "\x01\x01\x02\x01\x03\x05\x01\x02\x05\x01\x01\x01\x02", // 𤦳
+ 0x249b4: "\x01\x01\x02\x01\x03\x04\x03\x04\x02\x05\x01\x01\x05", // 𤦴
+ 0x249b5: "\x01\x01\x02\x01\x01\x02\x05\x01\x01\x05\x03\x01\x05", // 𤦵
+ 0x249b6: "\x01\x01\x02\x01\x03\x05\x04\x01\x03\x01\x01\x02\x01", // 𤦶
+ 0x249b7: "\x01\x01\x02\x01\x03\x03\x02\x04\x04\x01\x01\x01\x02", // 𤦷
+ 0x249b8: "\x01\x01\x02\x01\x03\x02\x02\x05\x01\x01\x02\x03\x04", // 𤦸
+ 0x249b9: "\x01\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𤦹
+ 0x249ba: "\x01\x01\x02\x01\x04\x01\x04\x03\x01\x02\x05\x01\x02", // 𤦺
+ 0x249bb: "\x01\x01\x02\x01\x04\x01\x02\x05\x01\x04\x05\x03\x05", // 𤦻
+ 0x249bc: "\x02\x05\x01\x01\x01\x04\x05\x04\x04\x01\x01\x02\x01\x04", // 𤦼
+ 0x249bd: "\x01\x01\x02\x01\x04\x01\x05\x03\x03\x01\x05\x02\x01", // 𤦽
+ 0x249be: "\x01\x01\x02\x01\x01\x01\x03\x05\x03\x04\x05\x03\x01", // 𤦾
+ 0x249bf: "\x01\x01\x02\x01\x01\x01\x03\x05\x03\x04\x02\x05\x01", // 𤦿
+ 0x249c0: "\x01\x01\x02\x01\x01\x02\x02\x01\x01\x01\x02\x03\x04", // 𤧀
+ 0x249c1: "\x01\x01\x02\x01\x05\x01\x03\x04\x03\x01\x02\x03\x04", // 𤧁
+ 0x249c2: "\x01\x01\x02\x01\x01\x01\x02\x01\x03\x04\x01\x05\x04", // 𤧂
+ 0x249c3: "\x01\x01\x02\x01\x01\x01\x01\x02\x05\x03\x01\x03\x04", // 𤧃
+ 0x249c4: "\x01\x01\x02\x01\x01\x02\x05\x02\x02\x01\x05\x03\x01", // 𤧄
+ 0x249c5: "\x01\x01\x02\x01\x05\x01\x03\x04\x03\x01\x01\x03\x02", // 𤧅
+ 0x249c6: "\x01\x01\x02\x01\x01\x01\x02\x01\x01\x02\x03\x04\x01", // 𤧆
+ 0x249c7: "\x01\x01\x02\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 𤧇
+ 0x249c8: "\x01\x01\x02\x01\x01\x02\x02\x01\x03\x04\x05\x01\x05", // 𤧈
+ 0x249c9: "\x01\x01\x02\x01\x01\x01\x02\x01\x05\x04\x02\x03\x04", // 𤧉
+ 0x249ca: "\x01\x01\x02\x01\x01\x03\x04\x01\x02\x01\x01\x02\x01", // 𤧊
+ 0x249cb: "\x01\x01\x02\x01\x01\x03\x02\x05\x02\x02\x05\x03\x01", // 𤧋
+ 0x249cc: "\x01\x01\x02\x01\x01\x02\x01\x02\x03\x05\x04\x05\x05", // 𤧌
+ 0x249cd: "\x01\x01\x02\x01\x01\x02\x01\x02\x03\x04\x01\x05\x04", // 𤧍
+ 0x249ce: "\x01\x01\x02\x01\x05\x01\x01\x01\x02\x01\x03\x03\x03", // 𤧎
+ 0x249cf: "\x01\x01\x02\x01\x03\x04\x04\x03\x01\x02\x01\x02\x01", // 𤧏
+ 0x249d0: "\x01\x01\x02\x01\x03\x01\x02\x03\x04\x04\x03\x03\x04", // 𤧐
+ 0x249d1: "\x01\x01\x02\x01\x03\x05\x01\x02\x05\x01\x02\x01\x04", // 𤧑
+ 0x249d2: "\x01\x01\x02\x01\x03\x05\x05\x03\x02\x05\x02\x02\x01", // 𤧒
+ 0x249d3: "\x01\x01\x02\x01\x03\x05\x02\x05\x01\x02\x01\x05\x03", // 𤧓
+ 0x249d4: "\x01\x01\x02\x01\x03\x05\x02\x05\x01\x03\x05\x05\x03", // 𤧔
+ 0x249d5: "\x01\x01\x02\x01\x01\x02\x05\x02\x02\x01\x01\x02\x01", // 𤧕
+ 0x249d6: "\x01\x01\x02\x01\x02\x05\x01\x02\x01\x01\x05\x03\x04", // 𤧖
+ 0x249d7: "\x01\x01\x02\x01\x02\x05\x01\x02\x02\x05\x02\x05\x01", // 𤧗
+ 0x249d8: "\x01\x01\x02\x01\x03\x01\x02\x03\x04\x02\x05\x01\x01", // 𤧘
+ 0x249d9: "\x01\x01\x02\x01\x03\x02\x01\x05\x01\x01\x03\x04", // 𤧙
+ 0x249da: "\x01\x01\x02\x01\x03\x05\x03\x03\x04\x04\x05\x04\x04", // 𤧚
+ 0x249db: "\x01\x01\x02\x01\x04\x01\x04\x03\x04\x05\x02\x05\x02", // 𤧛
+ 0x249dc: "\x01\x01\x02\x01\x05\x05\x05\x02\x05\x01\x01\x05\x03", // 𤧜
+ 0x249dd: "\x01\x01\x02\x01\x03\x02\x05\x01\x03\x01\x01\x03\x04", // 𤧝
+ 0x249de: "\x01\x01\x02\x01\x04\x03\x01\x01\x02\x01\x01\x03\x04", // 𤧞
+ 0x249df: "\x01\x01\x02\x01\x04\x01\x02\x05\x01\x04\x05\x01\x02", // 𤧟
+ 0x249e0: "\x01\x01\x02\x01\x04\x01\x02\x01\x02\x05\x01\x02\x01\x04", // 𤧠
+ 0x249e1: "\x01\x01\x02\x01\x01\x02\x01\x03\x05\x04\x05\x02", // 𤧡
+ 0x249e2: "\x01\x01\x02\x01\x02\x01\x01\x03\x05\x04\x05\x02", // 𤧢
+ 0x249e3: "\x01\x01\x02\x01\x05\x01\x01\x01\x01\x02\x05\x04", // 𤧣
+ 0x249e4: "\x05\x01\x03\x02\x05\x01\x02\x01\x04\x01\x01\x02\x01\x04", // 𤧤
+ 0x249e5: "\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x01\x02\x01\x04", // 𤧥
+ 0x249e6: "\x01\x01\x02\x01\x04\x03\x01\x02\x03\x04\x04\x03\x03\x04", // 𤧦
+ 0x249e7: "\x03\x01\x02\x01\x02\x01\x03\x05\x05\x04\x01\x01\x02\x01\x04", // 𤧧
+ 0x249e8: "\x01\x01\x02\x01\x05\x01\x01\x05\x04\x05\x02", // 𤧨
+ 0x249e9: "\x02\x05\x01\x01\x01\x04\x05\x04\x04\x01\x01\x02\x01\x04", // 𤧩
+ 0x249ea: "\x01\x01\x02\x01\x04\x04\x05\x03\x05\x01\x03\x04\x04\x03", // 𤧪
+ 0x249eb: "\x01\x01\x02\x01\x03\x02\x05\x01\x05\x01\x04\x05\x04", // 𤧫
+ 0x249ec: "\x01\x02\x02\x01\x01\x01\x04\x05\x04\x04\x01\x01\x02\x01\x04", // 𤧬
+ 0x249ed: "\x01\x01\x02\x01\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03", // 𤧭
+ 0x249ee: "\x01\x01\x02\x01\x01\x03\x05\x04\x02\x02\x01\x02\x03\x04", // 𤧮
+ 0x249ef: "\x01\x01\x02\x01\x03\x02\x05\x03\x04\x03\x05\x03\x05\x04", // 𤧯
+ 0x249f0: "\x01\x01\x02\x01\x01\x01\x02\x01\x03\x04\x01\x05\x01\x05", // 𤧰
+ 0x249f1: "\x01\x01\x02\x01\x05\x04\x02\x05\x03\x05\x04\x02\x05\x01", // 𤧱
+ 0x249f2: "\x01\x01\x02\x01\x01\x01\x02\x01\x03\x04\x05\x02\x01\x05", // 𤧲
+ 0x249f3: "\x01\x01\x02\x01\x01\x02\x02\x01\x02\x01\x03\x03\x05", // 𤧳
+ 0x249f4: "\x01\x01\x02\x01\x01\x02\x02\x01\x03\x04\x02\x04\x04\x04", // 𤧴
+ 0x249f5: "\x01\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 𤧵
+ 0x249f6: "\x01\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x05\x04", // 𤧶
+ 0x249f7: "\x01\x01\x02\x01\x05\x01\x03\x01\x02\x02\x01\x05\x03\x04", // 𤧷
+ 0x249f8: "\x01\x01\x02\x01\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 𤧸
+ 0x249f9: "\x01\x01\x02\x01\x04\x03\x01\x05\x05\x04\x05\x05\x04", // 𤧹
+ 0x249fa: "\x01\x01\x02\x01\x04\x04\x05\x01\x02\x05\x05\x01\x05\x01", // 𤧺
+ 0x249fb: "\x01\x01\x02\x01\x04\x01\x03\x03\x01\x02\x01\x05\x04", // 𤧻
+ 0x249fc: "\x01\x01\x02\x01\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 𤧼
+ 0x249fd: "\x01\x01\x02\x01\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 𤧽
+ 0x249fe: "\x01\x01\x02\x01\x04\x01\x05\x03\x03\x05\x05\x02\x01\x05", // 𤧾
+ 0x249ff: "\x01\x01\x02\x01\x04\x01\x03\x04\x01\x03\x02\x05\x02\x02", // 𤧿
+ 0x24a00: "\x01\x01\x02\x01\x01\x03\x04\x02\x05\x01\x02\x01\x01\x02", // 𤨀
+ 0x24a01: "\x01\x01\x02\x01\x01\x02\x02\x04\x03\x01\x02\x05\x01\x01", // 𤨁
+ 0x24a02: "\x01\x01\x02\x01\x01\x03\x03\x05\x01\x01\x04\x05\x04", // 𤨂
+ 0x24a03: "\x01\x01\x02\x01\x01\x02\x02\x01\x01\x03\x04\x02\x05\x01", // 𤨃
+ 0x24a04: "\x01\x01\x02\x01\x01\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 𤨄
+ 0x24a05: "\x01\x01\x02\x01\x02\x05\x01\x01\x01\x02\x01\x01\x02\x04", // 𤨅
+ 0x24a06: "\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04\x03\x01\x03\x05", // 𤨆
+ 0x24a07: "\x01\x01\x02\x01\x02\x01\x05\x03\x01\x05\x03\x01\x01\x02", // 𤨇
+ 0x24a08: "\x01\x01\x02\x01\x02\x05\x02\x02\x05\x01\x02\x05\x02\x02", // 𤨈
+ 0x24a09: "\x01\x01\x02\x01\x02\x05\x02\x01\x03\x05\x03\x01\x03\x04", // 𤨉
+ 0x24a0a: "\x01\x01\x02\x01\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04", // 𤨊
+ 0x24a0b: "\x01\x01\x02\x01\x03\x01\x04\x03\x01\x04\x03\x04\x01\x05", // 𤨋
+ 0x24a0c: "\x01\x01\x02\x01\x03\x02\x05\x03\x04\x01\x04\x05\x04\x04", // 𤨌
+ 0x24a0d: "\x01\x01\x02\x01\x01\x01\x02\x01\x04\x05\x05\x03\x05\x03", // 𤨍
+ 0x24a0e: "\x01\x01\x02\x01\x04\x04\x05\x01\x03\x05\x03\x03\x03\x04", // 𤨎
+ 0x24a0f: "\x01\x01\x02\x01\x05\x05\x05\x02\x05\x01\x01\x01\x03\x04", // 𤨏
+ 0x24a10: "\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01\x01\x01\x02\x01\x04", // 𤨐
+ 0x24a11: "\x01\x01\x02\x01\x01\x02\x02\x03\x04\x01\x02\x05\x01", // 𤨑
+ 0x24a12: "\x01\x01\x02\x01\x02\x05\x01\x03\x04\x01\x04\x05\x04\x04", // 𤨒
+ 0x24a13: "\x01\x01\x02\x01\x01\x02\x01\x02\x03\x04\x01\x02\x03\x04", // 𤨓
+ 0x24a14: "\x01\x01\x02\x01\x02\x05\x02\x02\x01\x01\x05\x03\x05\x03\x04", // 𤨔
+ 0x24a15: "\x01\x01\x02\x01\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x03", // 𤨕
+ 0x24a16: "\x01\x01\x02\x01\x03\x05\x01\x03\x02\x05\x01\x05\x02\x01\x05", // 𤨖
+ 0x24a17: "\x02\x01\x02\x05\x05\x01\x01\x01\x02\x03\x04\x01\x01\x02\x01\x04", // 𤨗
+ 0x24a18: "\x01\x01\x02\x01\x04\x01\x03\x04\x04\x01\x04\x03\x01\x01\x02", // 𤨘
+ 0x24a19: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x03\x01\x01\x02\x01\x04", // 𤨙
+ 0x24a1a: "\x01\x01\x02\x01\x04\x05\x04\x03\x04\x02\x05\x01\x02\x01\x04", // 𤨚
+ 0x24a1b: "\x01\x01\x02\x01\x02\x01\x02\x01\x01\x02\x01\x03\x02\x01\x01", // 𤨛
+ 0x24a1c: "\x01\x01\x02\x01\x03\x04\x03\x04\x02\x05\x01\x01\x03\x04\x05", // 𤨜
+ 0x24a1d: "\x01\x01\x02\x01\x01\x01\x02\x01\x03\x04\x04\x05\x04\x03\x04", // 𤨝
+ 0x24a1e: "\x01\x01\x02\x01\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 𤨞
+ 0x24a1f: "\x01\x01\x02\x01\x01\x03\x02\x01\x01\x02\x03\x04\x05\x03\x04", // 𤨟
+ 0x24a20: "\x01\x01\x02\x01\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x01", // 𤨠
+ 0x24a21: "\x01\x01\x02\x01\x04\x05\x01\x01\x05\x04\x03\x05\x01\x01", // 𤨡
+ 0x24a22: "\x01\x01\x02\x01\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𤨢
+ 0x24a23: "\x01\x02\x04\x01\x03\x04\x04\x03\x01\x03\x04\x01\x01\x02\x01", // 𤨣
+ 0x24a24: "\x01\x01\x02\x01\x03\x01\x04\x03\x01\x04\x03\x04\x03\x03\x03", // 𤨤
+ 0x24a25: "\x01\x01\x02\x01\x04\x04\x05\x01\x03\x04\x01\x02\x05\x01\x02", // 𤨥
+ 0x24a26: "\x01\x01\x02\x01\x03\x05\x03\x01\x03\x04\x01\x02\x05\x01\x02", // 𤨦
+ 0x24a27: "\x01\x01\x02\x01\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 𤨧
+ 0x24a28: "\x01\x01\x02\x01\x03\x01\x05\x05\x04\x01\x04\x03\x01\x03\x04", // 𤨨
+ 0x24a29: "\x01\x01\x02\x01\x04\x03\x01\x01\x02\x01\x03\x05\x02\x01\x01", // 𤨩
+ 0x24a2a: "\x01\x01\x02\x01\x02\x01\x03\x05\x04\x05\x04\x01\x02\x03\x04", // 𤨪
+ 0x24a2b: "\x01\x01\x02\x01\x04\x01\x03\x05\x01\x01\x02\x04\x05\x04\x04", // 𤨫
+ 0x24a2c: "\x01\x01\x02\x01\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01", // 𤨬
+ 0x24a2d: "\x01\x01\x02\x01\x04\x01\x03\x05\x01\x01\x02\x05\x01\x01\x02", // 𤨭
+ 0x24a2e: "\x01\x01\x02\x01\x01\x02\x02\x01\x03\x05\x04\x05\x02\x05\x02", // 𤨮
+ 0x24a2f: "\x01\x01\x02\x01\x01\x03\x04\x02\x05\x01\x01\x02\x05\x01\x02", // 𤨯
+ 0x24a30: "\x01\x01\x02\x01\x01\x02\x02\x01\x04\x05\x03\x05\x04\x05\x05", // 𤨰
+ 0x24a31: "\x01\x01\x02\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01\x02\x01", // 𤨱
+ 0x24a32: "\x01\x01\x02\x01\x02\x05\x02\x04\x04\x05\x01\x01\x02\x03\x04", // 𤨲
+ 0x24a33: "\x01\x01\x02\x01\x01\x02\x01\x02\x01\x02\x05\x01\x01\x02\x04", // 𤨳
+ 0x24a34: "\x01\x01\x02\x01\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 𤨴
+ 0x24a35: "\x01\x01\x02\x01\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 𤨵
+ 0x24a36: "\x01\x01\x02\x01\x01\x02\x02\x01\x03\x04\x02\x04\x01\x03\x04", // 𤨶
+ 0x24a37: "\x01\x01\x02\x01\x01\x02\x02\x02\x05\x01\x01\x02\x03\x04", // 𤨷
+ 0x24a38: "\x01\x01\x02\x01\x01\x02\x02\x01\x02\x05\x02\x04\x04\x04\x04", // 𤨸
+ 0x24a39: "\x01\x01\x02\x01\x01\x04\x05\x02\x04\x01\x03\x04\x01\x01\x02", // 𤨹
+ 0x24a3a: "\x01\x01\x02\x01\x04\x05\x03\x05\x03\x04\x03\x01\x02\x03\x04", // 𤨺
+ 0x24a3b: "\x01\x02\x01\x04\x05\x02\x05\x01\x02\x05\x01\x01\x01\x02\x01", // 𤨻
+ 0x24a3c: "\x01\x01\x02\x01\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02", // 𤨼
+ 0x24a3d: "\x03\x04\x04\x03\x01\x02\x03\x04\x03\x03\x03\x01\x01\x02\x01\x04", // 𤨽
+ 0x24a3e: "\x01\x01\x02\x01\x02\x05\x02\x02\x05\x01\x01\x01\x05\x01\x05", // 𤨾
+ 0x24a3f: "\x01\x01\x02\x01\x05\x02\x01\x03\x03\x05\x04\x04\x01\x02\x04", // 𤨿
+ 0x24a40: "\x01\x01\x02\x01\x01\x02\x02\x01\x03\x05\x04\x01\x03\x01\x03\x04", // 𤩀
+ 0x24a41: "\x01\x01\x02\x01\x02\x01\x05\x03\x01\x05\x03\x05\x03\x03\x04", // 𤩁
+ 0x24a42: "\x01\x01\x02\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x05\x03", // 𤩂
+ 0x24a43: "\x01\x01\x02\x01\x02\x05\x03\x04\x01\x03\x04\x02\x05\x01\x01\x05", // 𤩃
+ 0x24a44: "\x01\x01\x02\x01\x05\x01\x05\x05\x01\x05\x01\x02\x02\x01\x03\x04", // 𤩄
+ 0x24a45: "\x01\x01\x02\x01\x02\x01\x04\x05\x01\x03\x04\x03\x04\x02\x05\x01", // 𤩅
+ 0x24a46: "\x01\x01\x02\x01\x03\x05\x02\x05\x02\x02\x01\x01\x03\x03\x04\x04", // 𤩆
+ 0x24a47: "\x01\x01\x02\x01\x05\x01\x05\x01\x02\x01\x01\x02\x01\x02\x05\x01", // 𤩇
+ 0x24a48: "\x01\x01\x02\x01\x05\x01\x05\x01\x02\x01\x01\x02\x01\x02\x05\x01", // 𤩈
+ 0x24a49: "\x01\x01\x02\x01\x05\x01\x02\x05\x01\x02\x05\x03\x05\x02\x05\x01", // 𤩉
+ 0x24a4a: "\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 𤩊
+ 0x24a4b: "\x01\x01\x02\x01\x02\x01\x01\x02\x05\x03\x04\x03\x04\x02\x05\x01", // 𤩋
+ 0x24a4c: "\x01\x01\x02\x01\x04\x04\x01\x01\x02\x02\x01\x01\x01\x03\x04\x05", // 𤩌
+ 0x24a4d: "\x01\x01\x02\x01\x01\x01\x02\x01\x03\x04\x01\x05\x01\x01\x03\x04", // 𤩍
+ 0x24a4e: "\x01\x01\x02\x01\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01", // 𤩎
+ 0x24a4f: "\x01\x01\x02\x01\x03\x01\x02\x03\x04\x02\x05\x01\x03\x01\x02\x01", // 𤩏
+ 0x24a50: "\x01\x01\x02\x01\x01\x02\x02\x01\x01\x01\x03\x04\x03\x03\x01\x02", // 𤩐
+ 0x24a51: "\x01\x01\x02\x01\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01\x03\x05", // 𤩑
+ 0x24a52: "\x01\x01\x02\x01\x01\x02\x02\x01\x01\x01\x03\x04\x01\x02\x03\x04", // 𤩒
+ 0x24a53: "\x01\x01\x02\x01\x04\x03\x01\x02\x02\x04\x03\x01\x02\x05\x01\x01", // 𤩓
+ 0x24a54: "\x01\x01\x02\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𤩔
+ 0x24a55: "\x01\x01\x02\x01\x04\x03\x01\x01\x02\x01\x04\x03\x01\x02\x05\x01", // 𤩕
+ 0x24a56: "\x01\x01\x02\x01\x01\x02\x01\x04\x05\x01\x02\x05\x01\x02\x02\x01", // 𤩖
+ 0x24a57: "\x01\x01\x02\x01\x01\x02\x05\x02\x02\x01\x04\x03\x01\x02\x03\x04", // 𤩗
+ 0x24a58: "\x01\x01\x02\x01\x01\x01\x02\x01\x01\x02\x05\x01\x01\x02\x03\x04", // 𤩘
+ 0x24a59: "\x01\x01\x02\x01\x01\x01\x02\x01\x01\x01\x02\x01\x04\x05\x04\x04", // 𤩙
+ 0x24a5a: "\x01\x01\x02\x01\x01\x02\x05\x01\x01\x02\x05\x02\x03\x05\x05\x04", // 𤩚
+ 0x24a5b: "\x01\x01\x02\x01\x02\x05\x01\x01\x01\x02\x02\x01\x01\x01\x05\x04", // 𤩛
+ 0x24a5c: "\x01\x01\x02\x01\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01", // 𤩜
+ 0x24a5d: "\x01\x01\x02\x01\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 𤩝
+ 0x24a5e: "\x01\x01\x02\x01\x03\x05\x02\x05\x03\x04\x01\x03\x05\x03\x05\x04", // 𤩞
+ 0x24a5f: "\x01\x01\x02\x01\x01\x01\x02\x01\x05\x01\x01\x02\x02\x05\x01\x01", // 𤩟
+ 0x24a60: "\x01\x01\x02\x01\x01\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01", // 𤩠
+ 0x24a61: "\x01\x01\x02\x01\x02\x01\x02\x05\x01\x03\x04\x03\x04\x02\x05\x01", // 𤩡
+ 0x24a62: "\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x04\x01\x03\x04\x01\x02", // 𤩢
+ 0x24a63: "\x01\x01\x02\x01\x03\x04\x03\x04\x02\x01\x03\x02\x05\x01\x01\x01", // 𤩣
+ 0x24a64: "\x02\x01\x02\x05\x05\x01\x01\x05\x03\x05\x03\x04\x01\x01\x02\x01\x04", // 𤩤
+ 0x24a65: "\x01\x01\x02\x01\x03\x04\x04\x03\x04\x05\x03\x05\x04\x01\x05\x02", // 𤩥
+ 0x24a66: "\x01\x01\x02\x01\x01\x01\x01\x02\x05\x03\x05\x05\x04\x02\x03\x04", // 𤩦
+ 0x24a67: "\x01\x01\x02\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 𤩧
+ 0x24a68: "\x01\x01\x02\x01\x05\x04\x05\x04\x05\x04\x03\x04\x02\x04\x04\x04", // 𤩨
+ 0x24a69: "\x01\x01\x02\x01\x02\x05\x01\x01\x05\x02\x01\x05\x03\x01\x05\x01", // 𤩩
+ 0x24a6a: "\x01\x01\x02\x01\x03\x05\x02\x05\x02\x01\x03\x05\x03\x03\x03\x04", // 𤩪
+ 0x24a6b: "\x01\x01\x02\x01\x02\x05\x02\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𤩫
+ 0x24a6c: "\x01\x01\x02\x01\x05\x05\x03\x04\x05\x01\x01\x02\x01\x01\x05\x02", // 𤩬
+ 0x24a6d: "\x01\x01\x02\x01\x02\x05\x01\x01\x05\x02\x01\x05\x03\x01\x05\x03\x05", // 𤩭
+ 0x24a6e: "\x01\x01\x02\x01\x01\x02\x05\x01\x01\x02\x01\x05\x04\x03\x05\x05\x04", // 𤩮
+ 0x24a6f: "\x01\x02\x05\x01\x01\x02\x01\x05\x04\x03\x05\x05\x04\x01\x01\x02\x01\x04", // 𤩯
+ 0x24a70: "\x01\x01\x02\x01\x02\x01\x02\x05\x03\x04\x03\x04\x01\x01\x02\x03\x04", // 𤩰
+ 0x24a71: "\x05\x01\x03\x01\x02\x02\x01\x03\x04\x03\x05\x05\x04\x01\x01\x02\x01\x04", // 𤩱
+ 0x24a72: "\x01\x01\x02\x01\x01\x02\x01\x02\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 𤩲
+ 0x24a73: "\x01\x01\x02\x01\x01\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 𤩳
+ 0x24a74: "\x01\x01\x02\x01\x05\x01\x03\x01\x02\x02\x01\x03\x04\x03\x05\x05\x04", // 𤩴
+ 0x24a75: "\x01\x01\x02\x01\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x04", // 𤩵
+ 0x24a76: "\x01\x01\x02\x01\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x02\x03\x04", // 𤩶
+ 0x24a77: "\x01\x01\x02\x01\x04\x04\x05\x01\x03\x04\x03\x04\x02\x05\x01\x01\x01", // 𤩷
+ 0x24a78: "\x01\x01\x02\x01\x01\x02\x01\x02\x05\x04\x03\x03\x04\x01\x01\x03\x04", // 𤩸
+ 0x24a79: "\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x01\x01\x02\x01", // 𤩹
+ 0x24a7a: "\x01\x01\x02\x01\x04\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01\x05\x03\x04", // 𤩺
+ 0x24a7b: "\x01\x01\x02\x01\x04\x01\x03\x03\x01\x01\x02\x01\x02\x04\x05\x04", // 𤩻
+ 0x24a7c: "\x01\x01\x02\x01\x01\x03\x01\x02\x01\x03\x05\x04\x01\x04\x05\x04", // 𤩼
+ 0x24a7d: "\x01\x01\x02\x01\x01\x02\x02\x05\x04\x03\x01\x01\x02\x01\x03\x04\x04", // 𤩽
+ 0x24a7e: "\x01\x01\x02\x01\x01\x02\x01\x05\x05\x01\x02\x01\x02\x05\x01\x02\x01", // 𤩾
+ 0x24a7f: "\x01\x01\x02\x01\x01\x02\x01\x02\x03\x05\x03\x03\x04\x04\x05\x04\x04", // 𤩿
+ 0x24a80: "\x01\x01\x02\x01\x03\x04\x04\x04\x04\x04\x05\x02\x03\x05\x03\x05\x04", // 𤪀
+ 0x24a81: "\x01\x01\x02\x01\x02\x05\x02\x02\x01\x04\x01\x02\x05\x01\x02\x03\x04", // 𤪁
+ 0x24a82: "\x01\x01\x02\x01\x03\x04\x01\x03\x05\x01\x01\x02\x02\x04\x05\x04\x04", // 𤪂
+ 0x24a83: "\x01\x01\x02\x01\x01\x03\x04\x04\x03\x02\x05\x01\x01\x04\x03\x03\x04", // 𤪃
+ 0x24a84: "\x01\x01\x02\x01\x02\x05\x02\x02\x01\x01\x03\x04\x02\x05\x01\x01\x05", // 𤪄
+ 0x24a85: "\x01\x01\x02\x01\x03\x05\x04\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 𤪅
+ 0x24a86: "\x01\x01\x02\x01\x05\x01\x01\x02\x01\x04\x05\x05\x04\x03\x01\x01\x02", // 𤪆
+ 0x24a87: "\x02\x01\x02\x05\x03\x04\x03\x04\x01\x01\x02\x03\x04\x01\x01\x02\x01\x04", // 𤪇
+ 0x24a88: "\x02\x01\x02\x02\x02\x05\x04\x03\x01\x01\x02\x05\x02\x01\x01\x02\x01", // 𤪈
+ 0x24a89: "\x04\x05\x05\x03\x04\x04\x01\x01\x02\x01\x03\x05\x04\x01\x01\x02\x01", // 𤪉
+ 0x24a8a: "\x01\x01\x02\x01\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x04\x05\x04", // 𤪊
+ 0x24a8b: "\x01\x02\x05\x01\x02\x05\x03\x01\x01\x02\x05\x02\x02\x01\x01\x01\x02\x01\x04", // 𤪋
+ 0x24a8c: "\x01\x01\x02\x01\x01\x02\x02\x01\x01\x01\x03\x04\x05\x05\x04\x02\x03\x04", // 𤪌
+ 0x24a8d: "\x01\x01\x02\x01\x05\x02\x01\x05\x05\x05\x04\x05\x05\x04\x03\x01\x01\x02", // 𤪍
+ 0x24a8e: "\x02\x01\x02\x05\x03\x04\x03\x04\x01\x05\x03\x05\x03\x04\x01\x01\x02\x01\x04", // 𤪎
+ 0x24a8f: "\x01\x01\x02\x01\x04\x03\x03\x04\x04\x03\x03\x04\x03\x05\x04\x01\x05\x02", // 𤪏
+ 0x24a90: "\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04\x01\x01\x02\x01\x04", // 𤪐
+ 0x24a91: "\x01\x01\x02\x01\x01\x02\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 𤪑
+ 0x24a92: "\x01\x01\x02\x01\x03\x02\x05\x03\x04\x04\x04\x04\x04\x01\x01\x02\x03\x04", // 𤪒
+ 0x24a93: "\x01\x01\x02\x01\x04\x04\x05\x04\x01\x03\x04\x03\x04\x02\x05\x01\x01\x01", // 𤪓
+ 0x24a94: "\x01\x01\x02\x01\x03\x01\x04\x03\x01\x04\x04\x04\x05\x02\x05\x01\x05\x01", // 𤪔
+ 0x24a95: "\x01\x01\x02\x01\x03\x01\x01\x02\x02\x02\x02\x01\x03\x05\x04\x01\x05\x02", // 𤪕
+ 0x24a96: "\x01\x01\x02\x01\x02\x05\x02\x01\x05\x05\x04\x02\x03\x04\x03\x01\x03\x04", // 𤪖
+ 0x24a97: "\x01\x01\x02\x01\x04\x01\x02\x05\x01\x04\x05\x01\x03\x05\x03\x03\x03\x04", // 𤪗
+ 0x24a98: "\x01\x01\x02\x01\x01\x02\x01\x02\x05\x01\x04\x03\x01\x05\x03\x02\x05\x01", // 𤪘
+ 0x24a99: "\x01\x01\x02\x01\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𤪙
+ 0x24a9a: "\x01\x01\x02\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03\x04", // 𤪚
+ 0x24a9b: "\x01\x01\x02\x01\x02\x05\x01\x02\x05\x01\x04\x01\x03\x04\x03\x04\x01\x02", // 𤪛
+ 0x24a9c: "\x01\x01\x02\x01\x01\x02\x01\x02\x04\x04\x05\x03\x04\x03\x04\x02\x05\x01", // 𤪜
+ 0x24a9d: "\x01\x01\x02\x01\x03\x01\x05\x05\x04\x01\x04\x01\x05\x04\x03\x02\x05", // 𤪝
+ 0x24a9e: "\x01\x01\x02\x01\x03\x04\x04\x03\x04\x05\x02\x05\x01\x01\x01\x03\x05\x04", // 𤪞
+ 0x24a9f: "\x01\x01\x02\x01\x03\x02\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 𤪟
+ 0x24aa0: "\x01\x01\x02\x01\x03\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𤪠
+ 0x24aa1: "\x05\x01\x01\x03\x02\x05\x01\x05\x01\x01\x03\x02\x05\x01\x01\x01\x02\x01\x04", // 𤪡
+ 0x24aa2: "\x01\x01\x02\x01\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x03\x05\x05\x04", // 𤪢
+ 0x24aa3: "\x01\x01\x02\x01\x01\x02\x02\x01\x02\x05\x01\x03\x04\x04\x03\x01\x02\x01", // 𤪣
+ 0x24aa4: "\x01\x01\x02\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x01\x02\x03\x04", // 𤪤
+ 0x24aa5: "\x01\x01\x02\x01\x04\x04\x05\x04\x05\x04\x04\x02\x05\x02\x02\x01\x01\x02", // 𤪥
+ 0x24aa6: "\x01\x01\x02\x01\x01\x05\x03\x01\x01\x03\x04\x05\x04\x05\x02\x01\x03\x04", // 𤪦
+ 0x24aa7: "\x01\x01\x02\x01\x03\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𤪧
+ 0x24aa8: "\x01\x01\x02\x01\x02\x01\x02\x01\x03\x02\x05\x01\x01\x05\x04\x04\x01\x03\x04", // 𤪨
+ 0x24aa9: "\x01\x01\x02\x01\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x03\x01\x02\x01", // 𤪩
+ 0x24aaa: "\x01\x01\x02\x01\x03\x01\x04\x03\x01\x04\x05\x05\x01\x03\x05\x03\x03\x03\x04", // 𤪪
+ 0x24aab: "\x01\x01\x02\x01\x05\x05\x04\x05\x05\x04\x01\x02\x05\x01\x01\x01\x05\x03\x04", // 𤪫
+ 0x24aac: "\x01\x01\x02\x01\x01\x02\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x01\x03\x04", // 𤪬
+ 0x24aad: "\x03\x02\x01\x01\x03\x01\x01\x02\x05\x02\x05\x01\x01\x04\x05\x01\x01\x02\x01\x04", // 𤪭
+ 0x24aae: "\x01\x01\x02\x01\x04\x01\x03\x02\x05\x01\x01\x02\x01\x01\x03\x05\x01\x02\x01", // 𤪮
+ 0x24aaf: "\x01\x01\x02\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x01", // 𤪯
+ 0x24ab0: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x03\x05\x03\x04\x01\x01\x02\x01\x04", // 𤪰
+ 0x24ab1: "\x01\x01\x02\x01\x03\x01\x04\x03\x01\x04\x03\x02\x02\x03\x05\x04\x03\x03\x03", // 𤪱
+ 0x24ab2: "\x01\x01\x02\x01\x01\x03\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𤪲
+ 0x24ab3: "\x01\x01\x02\x01\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 𤪳
+ 0x24ab4: "\x01\x01\x02\x01\x01\x01\x02\x01\x01\x01\x02\x01\x03\x04\x04\x05\x04\x03\x04", // 𤪴
+ 0x24ab5: "\x01\x01\x02\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01\x03\x05\x03\x05\x03\x04", // 𤪵
+ 0x24ab6: "\x01\x01\x02\x01\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x04\x02\x04\x04\x04", // 𤪶
+ 0x24ab7: "\x01\x01\x02\x01\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𤪷
+ 0x24ab8: "\x01\x01\x02\x01\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𤪸
+ 0x24ab9: "\x01\x01\x02\x01\x02\x05\x02\x02\x01\x01\x02\x01\x02\x05\x01\x03\x05\x03\x04", // 𤪹
+ 0x24aba: "\x01\x01\x02\x01\x04\x04\x05\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 𤪺
+ 0x24abb: "\x01\x01\x02\x01\x02\x01\x04\x05\x01\x05\x03\x04\x03\x04\x02\x05\x01\x01\x01", // 𤪻
+ 0x24abc: "\x01\x01\x02\x01\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 𤪼
+ 0x24abd: "\x01\x01\x02\x01\x02\x01\x05\x03\x01\x05\x03\x04\x03\x04\x02\x05\x01\x01\x01", // 𤪽
+ 0x24abe: "\x01\x01\x02\x01\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x01\x01\x02\x01\x04", // 𤪾
+ 0x24abf: "\x01\x01\x02\x01\x04\x01\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x03\x05\x03\x04", // 𤪿
+ 0x24ac0: "\x02\x01\x04\x05\x01\x03\x04\x03\x04\x02\x05\x01\x01\x01\x05\x04\x01\x01\x02\x01\x04", // 𤫀
+ 0x24ac1: "\x01\x01\x02\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x02\x05\x01\x02\x01\x04", // 𤫁
+ 0x24ac2: "\x01\x01\x02\x01\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x01\x03\x04", // 𤫂
+ 0x24ac3: "\x01\x01\x02\x01\x01\x02\x01\x02\x01\x02\x05\x01\x01\x02\x01\x04\x04\x05\x04\x04", // 𤫃
+ 0x24ac4: "\x01\x01\x02\x01\x03\x03\x02\x03\x05\x02\x05\x01\x02\x01\x01\x03\x04\x01\x01\x02", // 𤫄
+ 0x24ac5: "\x01\x01\x02\x01\x03\x02\x01\x05\x01\x01\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𤫅
+ 0x24ac6: "\x03\x04\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x01\x02\x01\x04", // 𤫆
+ 0x24ac7: "\x01\x01\x02\x01\x01\x02\x02\x01\x02\x05\x01\x02\x01\x01\x03\x05\x04\x04\x04\x04", // 𤫇
+ 0x24ac8: "\x01\x01\x02\x01\x03\x05\x03\x05\x01\x01\x05\x04\x05\x02\x04\x05\x04\x04", // 𤫈
+ 0x24ac9: "\x01\x01\x02\x01\x04\x01\x01\x01\x02\x05\x01\x04\x03\x03\x04\x04\x03\x03\x04\x05\x04", // 𤫉
+ 0x24aca: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x01", // 𤫊
+ 0x24acb: "\x01\x01\x02\x01\x05\x01\x01\x02\x01\x03\x05\x02\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𤫋
+ 0x24acc: "\x01\x01\x02\x01\x03\x02\x01\x01\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x04", // 𤫌
+ 0x24acd: "\x01\x01\x01\x02\x01\x01\x01\x02\x01\x03\x04\x03\x04\x01\x02\x01\x01\x02\x04\x03\x01", // 𤫍
+ 0x24ace: "\x01\x01\x02\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x02\x05\x01\x02\x05\x01", // 𤫎
+ 0x24acf: "\x03\x05\x03\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x01\x02\x01\x04", // 𤫏
+ 0x24ad0: "\x01\x01\x02\x01\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04\x04\x05\x04", // 𤫐
+ 0x24ad1: "\x01\x01\x02\x01\x01\x04\x05\x02\x04\x01\x03\x04\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 𤫑
+ 0x24ad2: "\x01\x01\x01\x02\x01\x01\x01\x02\x01\x03\x04\x03\x04\x04\x05\x04\x01\x02\x01\x02\x01", // 𤫒
+ 0x24ad3: "\x01\x01\x02\x01\x04\x01\x01\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𤫓
+ 0x24ad4: "\x05\x05\x05\x02\x05\x01\x05\x02\x01\x05\x03\x02\x04\x01\x01\x01\x02\x01\x01\x01\x02\x01\x04", // 𤫔
+ 0x24ad5: "\x01\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x02\x01\x02\x01\x05\x01\x05\x03\x04\x03\x05\x04", // 𤫕
+ 0x24ad6: "\x01\x01\x02\x01\x04\x04\x05\x01\x01\x02\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𤫖
+ 0x24ad7: "\x01\x01\x02\x01\x02\x01\x05\x03\x01\x05\x03\x02\x04\x01\x01\x01\x02\x01\x03\x05\x05\x03", // 𤫗
+ 0x24ad8: "\x01\x01\x02\x01\x01\x03\x02\x05\x01\x01\x04\x05\x03\x05\x02\x01\x02\x01\x01\x05\x03\x05\x04", // 𤫘
+ 0x24ad9: "\x01\x01\x02\x01\x04\x01\x01\x01\x02\x05\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04", // 𤫙
+ 0x24ada: "\x01\x01\x02\x01\x04\x01\x03\x04\x05\x02\x02\x05\x02\x01\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𤫚
+ 0x24adb: "\x01\x01\x02\x01\x02\x05\x02\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01\x04\x01\x03\x05\x03\x04", // 𤫛
+ 0x24adc: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x01\x01\x02\x01\x04", // 𤫜
+ 0x24add: "\x01\x01\x02\x01\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x02\x01\x02\x01", // 𤫝
+ 0x24ade: "\x01\x01\x02\x01\x04\x04\x05\x01\x01\x02\x01\x03\x05\x02\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𤫞
+ 0x24adf: "\x01\x01\x02\x01\x01\x02\x05\x04\x01\x02\x05\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05", // 𤫟
+ 0x24ae0: "\x01\x01\x02\x01\x02\x05\x01\x02\x05\x01\x01\x03\x01\x02\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 𤫠
+ 0x24ae1: "\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x03\x01\x01\x02\x05\x02", // 𤫡
+ 0x24ae2: "\x01\x01\x02\x01\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x01\x02\x01\x03\x05\x04\x02\x05\x01", // 𤫢
+ 0x24ae3: "\x01\x01\x02\x01\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x05\x05\x04", // 𤫣
+ 0x24ae4: "\x01\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 𤫤
+ 0x24ae5: "\x01\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x03\x01\x01\x02\x05\x02", // 𤫥
+ 0x24ae6: "\x01\x01\x02\x01\x01\x04\x05\x02\x04\x01\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x01\x01", // 𤫦
+ 0x24ae7: "\x01\x01\x02\x01\x01\x02\x02\x02\x05\x02\x02\x01\x01\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𤫧
+ 0x24ae8: "\x01\x01\x02\x01\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𤫨
+ 0x24ae9: "\x01\x01\x02\x01\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x03\x04\x01", // 𤫩
+ 0x24aea: "\x03\x01\x05\x03\x03\x05\x04\x04", // 𤫪
+ 0x24aeb: "\x03\x04\x05\x03\x03\x03\x05\x04\x04", // 𤫫
+ 0x24aec: "\x03\x03\x05\x04\x04\x01\x01\x01\x02", // 𤫬
+ 0x24aed: "\x03\x03\x05\x04\x04\x01\x05\x02\x05", // 𤫭
+ 0x24aee: "\x03\x03\x05\x04\x04\x03\x05\x01\x01", // 𤫮
+ 0x24aef: "\x04\x05\x03\x05\x03\x03\x05\x04\x04", // 𤫯
+ 0x24af0: "\x03\x03\x05\x04\x04\x05\x01\x05\x03\x02", // 𤫰
+ 0x24af1: "\x03\x05\x02\x05\x01\x03\x03\x05\x04\x04", // 𤫱
+ 0x24af2: "\x03\x04\x01\x05\x04\x03\x03\x05\x04\x04", // 𤫲
+ 0x24af3: "\x03\x03\x05\x04\x04\x05\x04\x02\x05\x01", // 𤫳
+ 0x24af4: "\x03\x01\x01\x03\x04\x03\x03\x05\x04\x04", // 𤫴
+ 0x24af5: "\x03\x03\x05\x04\x04\x03\x01\x02\x02\x05\x01", // 𤫵
+ 0x24af6: "\x01\x02\x01\x02\x05\x01\x03\x03\x05\x04\x04", // 𤫶
+ 0x24af7: "\x01\x02\x05\x02\x03\x04\x03\x03\x05\x04\x04", // 𤫷
+ 0x24af8: "\x03\x03\x05\x04\x04\x01\x03\x04\x01\x01\x05", // 𤫸
+ 0x24af9: "\x04\x01\x03\x04\x03\x04\x03\x03\x05\x04\x04", // 𤫹
+ 0x24afa: "\x03\x03\x05\x04\x04\x03\x05\x05\x04\x02\x03\x04", // 𤫺
+ 0x24afb: "\x02\x01\x02\x01\x02\x03\x03\x03\x03\x05\x04\x04", // 𤫻
+ 0x24afc: "\x03\x03\x05\x04\x04\x04\x03\x05\x01\x05\x02\x03", // 𤫼
+ 0x24afd: "\x03\x03\x05\x04\x04\x02\x05\x01\x01\x01\x03\x05", // 𤫽
+ 0x24afe: "\x03\x03\x05\x04\x04\x02\x04\x03\x03\x05\x04\x01", // 𤫾
+ 0x24aff: "\x03\x04\x01\x01\x02\x03\x04\x03\x03\x05\x04\x04", // 𤫿
+ 0x24b00: "\x03\x03\x05\x04\x04\x03\x04\x01\x01\x02\x03\x04", // 𤬀
+ 0x24b01: "\x02\x05\x01\x01\x01\x02\x03\x04\x03\x03\x05\x04\x04", // 𤬁
+ 0x24b02: "\x02\x01\x01\x02\x03\x04\x05\x04\x03\x03\x05\x04\x04", // 𤬂
+ 0x24b03: "\x04\x01\x04\x03\x01\x02\x05\x01\x03\x03\x05\x04\x04", // 𤬃
+ 0x24b04: "\x01\x03\x04\x04\x03\x01\x01\x05\x03\x03\x05\x04\x04", // 𤬄
+ 0x24b05: "\x03\x03\x05\x04\x04\x01\x02\x01\x01\x01\x05\x03\x04", // 𤬅
+ 0x24b06: "\x02\x05\x01\x01\x02\x05\x01\x01\x03\x03\x05\x04\x04", // 𤬆
+ 0x24b07: "\x03\x04\x04\x03\x05\x05\x04\x02\x03\x04\x03\x03\x05\x04\x04", // 𤬇
+ 0x24b08: "\x03\x02\x05\x01\x03\x01\x01\x03\x04\x03\x03\x05\x04\x04", // 𤬈
+ 0x24b09: "\x05\x04\x03\x03\x04\x01\x01\x03\x04\x03\x03\x05\x04\x04", // 𤬉
+ 0x24b0a: "\x03\x03\x05\x04\x04\x04\x05\x01\x03\x02\x05\x01\x02\x02", // 𤬊
+ 0x24b0b: "\x03\x03\x05\x04\x04\x02\x05\x01\x02\x02\x05\x02\x05\x01", // 𤬋
+ 0x24b0c: "\x05\x05\x01\x03\x05\x03\x03\x03\x04\x03\x03\x05\x04\x04", // 𤬌
+ 0x24b0d: "\x03\x05\x04\x01\x03\x01\x01\x02\x05\x02\x03\x03\x05\x04\x04", // 𤬍
+ 0x24b0e: "\x03\x03\x05\x04\x04\x01\x02\x02\x01\x03\x05\x04\x05\x02\x05\x02", // 𤬎
+ 0x24b0f: "\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01\x03\x03\x05\x04\x04", // 𤬏
+ 0x24b10: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x03\x03\x05\x04\x04", // 𤬐
+ 0x24b11: "\x03\x03\x05\x04\x04\x03\x03\x05\x04\x04\x03\x03\x05\x04\x04", // 𤬑
+ 0x24b12: "\x03\x03\x05\x04\x04\x02\x05\x03\x04\x01\x02\x05\x02\x02\x01", // 𤬒
+ 0x24b13: "\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04\x03\x03\x05\x04\x04", // 𤬓
+ 0x24b14: "\x03\x03\x05\x04\x04\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02", // 𤬔
+ 0x24b15: "\x03\x03\x05\x04\x04\x03\x05\x01\x05\x02\x05\x01\x03\x02\x05", // 𤬕
+ 0x24b16: "\x03\x05\x04\x01\x03\x03\x05\x04\x04\x03\x05\x05\x04\x02\x03\x04", // 𤬖
+ 0x24b17: "\x01\x02\x01\x04\x05\x02\x01\x05\x05\x01\x02\x01\x03\x03\x05\x04\x04", // 𤬗
+ 0x24b18: "\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x04\x03\x01\x03\x03\x05\x04\x04", // 𤬘
+ 0x24b19: "\x03\x03\x05\x04\x04\x01\x02\x03\x04\x02\x05\x01\x02\x02\x05\x02\x05\x01", // 𤬙
+ 0x24b1a: "\x03\x03\x05\x04\x04\x04\x01\x03\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 𤬚
+ 0x24b1b: "\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01\x03\x03\x05\x04\x04", // 𤬛
+ 0x24b1c: "\x03\x03\x05\x04\x04\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 𤬜
+ 0x24b1d: "\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x03\x03\x05\x04\x04", // 𤬝
+ 0x24b1e: "\x03\x03\x05\x04\x04\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 𤬞
+ 0x24b1f: "\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x04\x03\x03\x04\x03\x03\x05\x04\x04", // 𤬟
+ 0x24b20: "\x03\x03\x05\x04\x04\x02\x01\x02\x01\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𤬠
+ 0x24b21: "\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x01\x04\x03\x03\x04\x03\x03\x05\x04\x04", // 𤬡
+ 0x24b22: "\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x01\x03\x04\x01\x01\x05\x03\x03\x05\x04\x04", // 𤬢
+ 0x24b23: "\x03\x02\x01\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x01\x01\x03\x04\x01\x01\x05\x03\x03\x05\x04\x04", // 𤬣
+ 0x24b24: "\x05\x05\x01\x03\x05\x03\x03\x03\x04\x03\x03\x05\x04\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𤬤
+ 0x24b25: "\x04\x01\x02\x05\x01\x02\x05\x01\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01\x03\x03\x05\x04\x04\x04\x01\x03\x05\x03\x04", // 𤬥
+ 0x24b26: "\x04\x05\x01\x05\x05\x04", // 𤬦
+ 0x24b27: "\x01\x05\x05\x04\x01\x02", // 𤬧
+ 0x24b28: "\x01\x05\x05\x04\x03\x05\x04", // 𤬨
+ 0x24b29: "\x01\x05\x04\x01\x05\x05\x04", // 𤬩
+ 0x24b2a: "\x01\x02\x01\x01\x05\x05\x04", // 𤬪
+ 0x24b2b: "\x01\x05\x05\x04\x05\x01\x02", // 𤬫
+ 0x24b2c: "\x04\x03\x03\x04\x01\x05\x05\x04", // 𤬬
+ 0x24b2d: "\x01\x03\x02\x04\x01\x05\x05\x04", // 𤬭
+ 0x24b2e: "\x01\x05\x05\x04\x01\x05\x05\x04", // 𤬮
+ 0x24b2f: "\x01\x05\x05\x04\x03\x04\x01\x05", // 𤬯
+ 0x24b30: "\x03\x04\x01\x05\x01\x05\x05\x04", // 𤬰
+ 0x24b31: "\x01\x05\x05\x04\x03\x05\x03\x03", // 𤬱
+ 0x24b32: "\x01\x05\x05\x04\x02\x05\x03\x04", // 𤬲
+ 0x24b33: "\x01\x02\x01\x03\x05\x01\x05\x05\x04", // 𤬳
+ 0x24b34: "\x02\x05\x01\x05\x01\x01\x05\x05\x04", // 𤬴
+ 0x24b35: "\x03\x05\x01\x05\x01\x01\x05\x05\x04", // 𤬵
+ 0x24b36: "\x03\x05\x01\x01\x02\x01\x05\x05\x04", // 𤬶
+ 0x24b37: "\x05\x02\x02\x05\x02\x01\x05\x05\x04", // 𤬷
+ 0x24b38: "\x01\x05\x05\x04\x03\x01\x01\x02\x01", // 𤬸
+ 0x24b39: "\x01\x03\x01\x05\x05\x04\x05\x03\x04", // 𤬹
+ 0x24b3a: "\x02\x05\x01\x03\x04\x01\x05\x05\x04", // 𤬺
+ 0x24b3b: "\x01\x05\x05\x04\x03\x04\x01\x05\x04", // 𤬻
+ 0x24b3c: "\x05\x02\x02\x05\x02\x01\x05\x05\x04", // 𤬼
+ 0x24b3d: "\x04\x04\x05\x03\x05\x01\x05\x05\x04", // 𤬽
+ 0x24b3e: "\x03\x05\x01\x02\x03\x04\x01\x05\x05\x04", // 𤬾
+ 0x24b3f: "\x01\x02\x01\x01\x02\x01\x01\x05\x05\x04", // 𤬿
+ 0x24b40: "\x05\x03\x04\x05\x03\x05\x01\x05\x05\x04", // 𤭀
+ 0x24b41: "\x02\x05\x01\x02\x05\x01\x01\x05\x05\x04", // 𤭁
+ 0x24b42: "\x03\x03\x05\x04\x01\x04\x01\x05\x05\x04", // 𤭂
+ 0x24b43: "\x01\x03\x02\x05\x02\x02\x01\x05\x05\x04", // 𤭃
+ 0x24b44: "\x02\x05\x01\x01\x02\x01\x01\x05\x05\x04", // 𤭄
+ 0x24b45: "\x01\x05\x05\x04\x04\x03\x01\x01\x03\x02", // 𤭅
+ 0x24b46: "\x01\x05\x05\x04\x02\x05\x01\x02\x05\x01", // 𤭆
+ 0x24b47: "\x03\x01\x02\x02\x05\x01\x01\x05\x05\x04", // 𤭇
+ 0x24b48: "\x03\x04\x01\x05\x03\x04\x01\x05\x05\x04", // 𤭈
+ 0x24b49: "\x04\x01\x05\x05\x05\x05\x01\x05\x05\x04", // 𤭉
+ 0x24b4a: "\x04\x04\x01\x01\x02\x01\x01\x05\x05\x04", // 𤭊
+ 0x24b4b: "\x02\x05\x01\x01\x02\x01\x01\x05\x05\x04", // 𤭋
+ 0x24b4c: "\x04\x03\x05\x01\x05\x02\x03\x01\x05\x05\x04", // 𤭌
+ 0x24b4d: "\x01\x05\x05\x04\x03\x02\x05\x01\x01\x03\x04", // 𤭍
+ 0x24b4e: "\x01\x01\x02\x01\x02\x01\x05\x04\x01\x05\x05\x04", // 𤭎
+ 0x24b4f: "\x03\x04\x03\x04\x02\x05\x01\x01\x05\x05\x04", // 𤭏
+ 0x24b50: "\x03\x01\x05\x05\x04\x01\x04\x01\x05\x05\x04", // 𤭐
+ 0x24b51: "\x01\x02\x05\x01\x02\x05\x01\x01\x05\x05\x04", // 𤭑
+ 0x24b52: "\x04\x05\x01\x01\x05\x04\x01\x05\x05\x04", // 𤭒
+ 0x24b53: "\x01\x05\x05\x05\x01\x02\x01\x01\x05\x05\x04", // 𤭓
+ 0x24b54: "\x01\x02\x05\x01\x01\x01\x02\x01\x05\x05\x04", // 𤭔
+ 0x24b55: "\x01\x05\x04\x03\x02\x05\x01\x05\x05\x04", // 𤭕
+ 0x24b56: "\x01\x05\x05\x04\x01\x02\x01\x01\x01\x05\x04", // 𤭖
+ 0x24b57: "\x01\x02\x02\x01\x01\x01\x05\x01\x05\x05\x04", // 𤭗
+ 0x24b58: "\x03\x01\x02\x05\x01\x02\x05\x01\x05\x05\x04", // 𤭘
+ 0x24b59: "\x01\x05\x05\x04\x03\x04\x04\x05\x02\x05\x01", // 𤭙
+ 0x24b5a: "\x01\x05\x05\x04\x03\x01\x02\x01\x02\x05\x01", // 𤭚
+ 0x24b5b: "\x02\x05\x04\x03\x01\x02\x05\x02\x01\x05\x05\x04", // 𤭛
+ 0x24b5c: "\x03\x01\x02\x03\x04\x03\x05\x03\x01\x05\x05\x04", // 𤭜
+ 0x24b5d: "\x01\x02\x01\x03\x05\x01\x02\x01\x01\x05\x05\x04", // 𤭝
+ 0x24b5e: "\x04\x01\x02\x05\x01\x05\x02\x01\x01\x05\x05\x04", // 𤭞
+ 0x24b5f: "\x03\x02\x05\x01\x05\x01\x01\x02\x01\x05\x05\x04", // 𤭟
+ 0x24b60: "\x01\x02\x05\x01\x02\x05\x05\x04\x01\x05\x05\x04", // 𤭠
+ 0x24b61: "\x01\x02\x02\x01\x01\x01\x05\x04\x01\x05\x05\x04", // 𤭡
+ 0x24b62: "\x04\x01\x03\x04\x03\x04\x01\x02\x01\x05\x05\x04", // 𤭢
+ 0x24b63: "\x01\x02\x02\x01\x01\x01\x03\x04\x01\x05\x05\x04", // 𤭣
+ 0x24b64: "\x03\x04\x04\x03\x05\x02\x01\x05\x01\x05\x05\x04", // 𤭤
+ 0x24b65: "\x01\x02\x01\x02\x01\x02\x05\x01\x01\x05\x05\x04", // 𤭥
+ 0x24b66: "\x01\x02\x02\x01\x01\x01\x03\x04\x01\x05\x05\x04", // 𤭦
+ 0x24b67: "\x01\x05\x01\x05\x03\x02\x05\x01\x01\x01\x05\x05\x04", // 𤭧
+ 0x24b68: "\x01\x03\x01\x02\x01\x03\x05\x04\x01\x01\x05\x05\x04", // 𤭨
+ 0x24b69: "\x01\x02\x01\x05\x02\x01\x03\x05\x04\x01\x05\x05\x04", // 𤭩
+ 0x24b6a: "\x01\x02\x03\x04\x02\x05\x01\x01\x01\x01\x05\x05\x04", // 𤭪
+ 0x24b6b: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x05\x05\x04", // 𤭫
+ 0x24b6c: "\x03\x01\x01\x02\x05\x02\x01\x02\x01\x01\x05\x05\x04", // 𤭬
+ 0x24b6d: "\x03\x02\x02\x05\x01\x01\x02\x03\x04\x01\x05\x05\x04", // 𤭭
+ 0x24b6e: "\x03\x01\x02\x05\x01\x01\x02\x01\x01\x01\x05\x05\x04", // 𤭮
+ 0x24b6f: "\x01\x05\x05\x04\x03\x02\x05\x01\x01\x02\x05\x03\x04", // 𤭯
+ 0x24b70: "\x04\x03\x03\x04\x03\x01\x02\x03\x04\x01\x05\x05\x04", // 𤭰
+ 0x24b71: "\x01\x02\x02\x05\x01\x03\x05\x01\x01\x01\x05\x05\x04", // 𤭱
+ 0x24b72: "\x02\x05\x01\x01\x01\x05\x04\x04\x01\x05\x05\x04", // 𤭲
+ 0x24b73: "\x02\x05\x05\x05\x04\x05\x05\x04\x01\x01\x05\x05\x04", // 𤭳
+ 0x24b74: "\x01\x02\x02\x01\x05\x01\x02\x03\x04\x01\x05\x05\x04", // 𤭴
+ 0x24b75: "\x01\x05\x05\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 𤭵
+ 0x24b76: "\x03\x05\x03\x04\x05\x02\x05\x01\x01\x01\x05\x05\x04", // 𤭶
+ 0x24b77: "\x01\x05\x05\x04\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 𤭷
+ 0x24b78: "\x05\x01\x03\x04\x03\x01\x01\x03\x02\x01\x05\x05\x04", // 𤭸
+ 0x24b79: "\x02\x05\x01\x03\x04\x02\x05\x02\x02\x01\x01\x05\x05\x04", // 𤭹
+ 0x24b7a: "\x02\x05\x02\x02\x01\x01\x02\x01\x02\x01\x01\x05\x05\x04", // 𤭺
+ 0x24b7b: "\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x05\x05\x04", // 𤭻
+ 0x24b7c: "\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01\x01\x05\x05\x04", // 𤭼
+ 0x24b7d: "\x05\x02\x02\x05\x02\x01\x01\x02\x03\x04\x01\x05\x05\x04", // 𤭽
+ 0x24b7e: "\x01\x02\x05\x02\x02\x01\x01\x01\x02\x01\x01\x05\x05\x04", // 𤭾
+ 0x24b7f: "\x01\x02\x02\x01\x01\x01\x05\x04\x04\x04\x01\x05\x05\x04", // 𤭿
+ 0x24b80: "\x01\x02\x01\x02\x05\x05\x04\x05\x05\x04\x01\x05\x05\x04", // 𤮀
+ 0x24b81: "\x01\x03\x02\x05\x02\x02\x04\x03\x03\x04\x01\x05\x05\x04", // 𤮁
+ 0x24b82: "\x01\x05\x05\x04\x04\x01\x03\x05\x01\x01\x02\x02\x05\x01", // 𤮂
+ 0x24b83: "\x01\x05\x05\x04\x02\x05\x01\x03\x04\x02\x05\x02\x02\x01", // 𤮃
+ 0x24b84: "\x01\x05\x05\x04\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𤮄
+ 0x24b85: "\x01\x02\x01\x03\x05\x01\x02\x01\x03\x05\x04\x01\x05\x05\x04", // 𤮅
+ 0x24b86: "\x02\x01\x05\x03\x01\x05\x02\x02\x05\x02\x01\x01\x01\x05\x05\x04", // 𤮆
+ 0x24b87: "\x04\x01\x03\x05\x01\x01\x02\x05\x01\x01\x02\x01\x05\x05\x04", // 𤮇
+ 0x24b88: "\x01\x02\x05\x01\x01\x01\x02\x03\x05\x05\x04\x01\x05\x05\x04", // 𤮈
+ 0x24b89: "\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04\x01\x05\x05\x04", // 𤮉
+ 0x24b8a: "\x04\x01\x03\x05\x01\x01\x02\x04\x01\x03\x04\x01\x05\x05\x04", // 𤮊
+ 0x24b8b: "\x02\x05\x01\x02\x05\x01\x01\x05\x03\x04\x01\x01\x05\x05\x04", // 𤮋
+ 0x24b8c: "\x01\x05\x05\x04\x01\x02\x01\x04\x01\x04\x03\x01\x05\x03\x01", // 𤮌
+ 0x24b8d: "\x01\x05\x05\x04\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04", // 𤮍
+ 0x24b8e: "\x05\x04\x05\x04\x05\x04\x05\x05\x04\x02\x03\x04\x01\x05\x05\x04", // 𤮎
+ 0x24b8f: "\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04\x01\x05\x05\x04", // 𤮏
+ 0x24b90: "\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x02\x04\x01\x05\x05\x04", // 𤮐
+ 0x24b91: "\x01\x05\x05\x04\x02\x01\x01\x01\x02\x01\x01\x01\x04\x05\x04\x04", // 𤮑
+ 0x24b92: "\x01\x05\x05\x04\x05\x01\x03\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 𤮒
+ 0x24b93: "\x01\x02\x02\x01\x01\x01\x03\x04\x03\x03\x01\x02\x01\x05\x05\x04", // 𤮓
+ 0x24b94: "\x05\x01\x05\x02\x05\x03\x05\x04\x01\x01\x02\x01\x01\x05\x05\x04", // 𤮔
+ 0x24b95: "\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04\x01\x05\x05\x04", // 𤮕
+ 0x24b96: "\x01\x05\x04\x04\x03\x01\x01\x03\x02\x05\x01\x05\x05\x04", // 𤮖
+ 0x24b97: "\x01\x05\x05\x04\x02\x05\x01\x02\x01\x02\x01\x03\x05\x04\x02\x05\x01", // 𤮗
+ 0x24b98: "\x03\x05\x04\x01\x05\x04\x01\x02\x05\x01\x04\x03\x01\x01\x05\x05\x04", // 𤮘
+ 0x24b99: "\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x04\x03\x01\x01\x05\x05\x04", // 𤮙
+ 0x24b9a: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x01\x01\x05\x05\x04", // 𤮚
+ 0x24b9b: "\x01\x02\x05\x01\x01\x01\x02\x05\x02\x03\x05\x05\x04\x01\x05\x05\x04", // 𤮛
+ 0x24b9c: "\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01\x01\x05\x05\x04", // 𤮜
+ 0x24b9d: "\x02\x01\x05\x03\x01\x05\x03\x05\x03\x05\x01\x01\x02\x01\x05\x05\x04", // 𤮝
+ 0x24b9e: "\x02\x05\x02\x03\x02\x05\x01\x01\x03\x05\x05\x04\x01\x05\x05\x04", // 𤮞
+ 0x24b9f: "\x01\x05\x05\x04\x01\x02\x01\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 𤮟
+ 0x24ba0: "\x01\x05\x05\x04\x01\x02\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 𤮠
+ 0x24ba1: "\x01\x02\x01\x02\x04\x04\x05\x03\x05\x01\x05\x05\x04\x02\x05\x01\x03\x04", // 𤮡
+ 0x24ba2: "\x04\x01\x03\x03\x01\x01\x02\x02\x02\x02\x01\x04\x04\x04\x04\x01\x05\x05\x04", // 𤮢
+ 0x24ba3: "\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x05\x05\x04", // 𤮣
+ 0x24ba4: "\x02\x01\x01\x03\x05\x04\x04\x05\x03\x04\x01\x05\x05\x04\x02\x05\x01\x03\x04", // 𤮤
+ 0x24ba5: "\x01\x05\x05\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05\x03\x05\x03\x04", // 𤮥
+ 0x24ba6: "\x02\x05\x01\x01\x01\x04\x05\x02\x04\x01\x03\x04\x01\x01\x05\x04\x01\x05\x05\x04", // 𤮦
+ 0x24ba7: "\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01\x01\x05\x05\x04", // 𤮧
+ 0x24ba8: "\x04\x01\x04\x03\x01\x03\x05\x04\x01\x01\x05\x01\x05\x01\x01\x01\x01\x05\x05\x04", // 𤮨
+ 0x24ba9: "\x04\x01\x02\x05\x01\x02\x05\x01\x01\x03\x04\x03\x04\x01\x01\x02\x01\x05\x05\x04", // 𤮩
+ 0x24baa: "\x02\x01\x01\x01\x05\x04\x05\x03\x05\x01\x05\x05\x04\x04\x03\x03\x04\x01\x03\x02", // 𤮪
+ 0x24bab: "\x03\x01\x01\x02\x05\x02\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02\x01\x05\x05\x04", // 𤮫
+ 0x24bac: "\x03\x01\x01\x02\x01\x02\x01\x03\x04\x04\x03\x03\x01\x01\x02\x01\x02\x01\x01\x05\x05\x04", // 𤮬
+ 0x24bad: "\x03\x05\x02\x05\x01\x01\x05\x01\x05\x03\x05\x02\x05\x01\x03\x05\x04\x01\x05\x05\x04", // 𤮭
+ 0x24bae: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x05\x05\x04", // 𤮮
+ 0x24baf: "\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x01\x05\x01\x01\x01\x05\x05\x04", // 𤮯
+ 0x24bb0: "\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x03\x05\x02\x05\x01\x01\x05\x05\x04", // 𤮰
+ 0x24bb1: "\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01\x01\x05\x05\x04", // 𤮱
+ 0x24bb2: "\x05\x05\x05\x02\x05\x01\x05\x02\x01\x05\x03\x02\x04\x01\x01\x01\x02\x01\x01\x05\x05\x04", // 𤮲
+ 0x24bb3: "\x01\x05\x05\x04\x02\x01\x02\x01\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𤮳
+ 0x24bb4: "\x01\x02\x02\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x01\x05\x05\x04", // 𤮴
+ 0x24bb5: "\x01\x03\x02\x05\x02\x02\x01\x03\x04\x01\x05\x05\x04\x01\x02\x01\x02\x05\x01\x04\x03\x01", // 𤮵
+ 0x24bb6: "\x04\x01\x01\x01\x02\x05\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04\x01\x05\x05\x04", // 𤮶
+ 0x24bb7: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x01\x05\x05\x01\x02\x02\x05\x01\x02\x01\x01\x05\x05\x04", // 𤮷
+ 0x24bb8: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01\x01\x05\x05\x04", // 𤮸
+ 0x24bb9: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x03\x04\x01\x01\x05\x05\x04", // 𤮹
+ 0x24bba: "\x02\x01\x01\x01\x02", // 𤮺
+ 0x24bbb: "\x01\x01\x02\x01\x02\x02\x01\x01", // 𤮻
+ 0x24bbc: "\x01\x05\x04\x01\x02\x02\x01\x01", // 𤮼
+ 0x24bbd: "\x01\x02\x02\x01\x01\x01\x01\x02", // 𤮽
+ 0x24bbe: "\x01\x03\x05\x01\x02\x02\x01\x01", // 𤮾
+ 0x24bbf: "\x01\x02\x02\x01\x01\x01\x03\x05", // 𤮿
+ 0x24bc0: "\x01\x02\x02\x01\x01\x01\x01\x02", // 𤯀
+ 0x24bc1: "\x03\x05\x01\x05\x01\x02\x02\x01\x01", // 𤯁
+ 0x24bc2: "\x01\x02\x02\x01\x01\x01\x03\x04\x04", // 𤯂
+ 0x24bc3: "\x01\x02\x03\x04\x01\x02\x02\x01\x01", // 𤯃
+ 0x24bc4: "\x01\x02\x02\x01\x01\x03\x05\x01\x05", // 𤯄
+ 0x24bc5: "\x01\x02\x02\x01\x01\x01\x02\x01\x02\x01", // 𤯅
+ 0x24bc6: "\x01\x02\x02\x01\x01\x04\x01\x01\x01\x02\x05\x01", // 𤯆
+ 0x24bc7: "\x01\x02\x02\x01\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 𤯇
+ 0x24bc8: "\x01\x02\x02\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01\x04", // 𤯈
+ 0x24bc9: "\x01\x02\x02\x01\x01\x01\x03\x05\x05\x01\x03\x05\x03\x03\x03", // 𤯉
+ 0x24bca: "\x01\x02\x02\x03\x04\x01\x02\x03\x04\x01\x02\x02\x01\x01", // 𤯊
+ 0x24bcb: "\x01\x02\x02\x01\x01\x04\x01\x03\x01\x02\x02\x01\x04\x04\x04\x04", // 𤯋
+ 0x24bcc: "\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x01\x02\x02\x01\x01", // 𤯌
+ 0x24bcd: "\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x01\x02\x02\x01\x01", // 𤯍
+ 0x24bce: "\x04\x01\x03\x03\x01\x02\x03\x05\x03\x01\x02\x03\x05\x01\x02\x02\x01\x01", // 𤯎
+ 0x24bcf: "\x01\x02\x02\x01\x01\x01\x02\x03\x04\x01\x02\x02\x01\x01\x01\x02\x03\x04", // 𤯏
+ 0x24bd0: "\x01\x02\x02\x01\x01\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x03\x02\x01\x05\x01\x01", // 𤯐
+ 0x24bd1: "\x01\x02\x02\x01\x01\x01\x03\x04\x05\x04\x01\x02\x05\x02\x05\x01\x01\x03\x01\x02\x03\x04", // 𤯑
+ 0x24bd2: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04\x03\x01\x02\x03\x04\x03\x04\x04\x03\x01\x02\x01\x02\x02\x01\x01", // 𤯒
+ 0x24bd3: "\x05\x02\x01\x02\x01", // 𤯓
+ 0x24bd4: "\x01\x03\x01\x01\x02\x01", // 𤯔
+ 0x24bd5: "\x03\x01\x01\x02\x01\x05\x03\x01", // 𤯕
+ 0x24bd6: "\x05\x03\x04\x03\x01\x01\x02\x01", // 𤯖
+ 0x24bd7: "\x01\x03\x04\x03\x01\x01\x02\x01", // 𤯗
+ 0x24bd8: "\x03\x01\x01\x02\x01\x04\x04\x01\x02", // 𤯘
+ 0x24bd9: "\x03\x01\x01\x02\x01\x01\x02\x05\x04", // 𤯙
+ 0x24bda: "\x01\x03\x02\x04\x03\x01\x01\x02\x01", // 𤯚
+ 0x24bdb: "\x03\x01\x01\x02\x01\x03\x01\x03\x04", // 𤯛
+ 0x24bdc: "\x03\x01\x01\x02\x01\x05\x03\x05\x03", // 𤯜
+ 0x24bdd: "\x03\x01\x01\x02\x01\x03\x05\x01\x01", // 𤯝
+ 0x24bde: "\x03\x01\x01\x02\x01\x02\x05\x02\x01", // 𤯞
+ 0x24bdf: "\x03\x01\x01\x02\x01\x05\x05\x04\x01\x04", // 𤯟
+ 0x24be0: "\x02\x05\x01\x03\x04\x01\x03\x01\x01\x02\x01", // 𤯠
+ 0x24be1: "\x03\x01\x01\x02\x01\x01\x02\x05\x02\x03\x04", // 𤯡
+ 0x24be2: "\x05\x04\x05\x04\x05\x04\x03\x01\x01\x02\x01", // 𤯢
+ 0x24be3: "\x03\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01", // 𤯣
+ 0x24be4: "\x03\x04\x01\x02\x05\x01\x03\x01\x01\x02\x01", // 𤯤
+ 0x24be5: "\x05\x03\x01\x02\x05\x01\x03\x01\x01\x02\x01", // 𤯥
+ 0x24be6: "\x04\x05\x02\x03\x04\x05\x03\x03\x01\x01\x02\x01", // 𤯦
+ 0x24be7: "\x05\x02\x01\x02\x01\x02\x05\x03\x05\x02\x05\x01", // 𤯧
+ 0x24be8: "\x03\x01\x01\x02\x01\x01\x01\x02\x01\x01\x03\x02", // 𤯨
+ 0x24be9: "\x01\x01\x02\x01\x01\x03\x02\x03\x01\x01\x02\x01", // 𤯩
+ 0x24bea: "\x03\x01\x01\x02\x01\x03\x01\x02\x03\x04\x05\x03", // 𤯪
+ 0x24beb: "\x03\x01\x01\x02\x01\x03\x01\x02\x01\x05\x03\x04", // 𤯫
+ 0x24bec: "\x03\x01\x01\x02\x01\x02\x05\x03\x05\x02\x05\x01\x01", // 𤯬
+ 0x24bed: "\x04\x03\x01\x02\x02\x04\x03\x01\x03\x01\x01\x02\x01", // 𤯭
+ 0x24bee: "\x03\x01\x01\x02\x01\x02\x01\x05\x03\x01\x05\x03\x05", // 𤯮
+ 0x24bef: "\x05\x03\x01\x05\x04\x02\x05\x01\x03\x01\x01\x02\x01", // 𤯯
+ 0x24bf0: "\x03\x01\x01\x02\x01\x04\x01\x03\x03\x05\x01\x05\x04", // 𤯰
+ 0x24bf1: "\x01\x03\x04\x01\x02\x05\x01\x02\x03\x01\x01\x02\x01", // 𤯱
+ 0x24bf2: "\x05\x02\x03\x05\x04\x01\x05\x02\x03\x01\x01\x02\x01", // 𤯲
+ 0x24bf3: "\x01\x02\x05\x03\x04\x02\x01\x03\x05\x04\x03\x01\x01\x02\x01", // 𤯳
+ 0x24bf4: "\x03\x04\x04\x03\x05\x03\x03\x03\x04\x03\x01\x01\x02\x01", // 𤯴
+ 0x24bf5: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x03\x01\x01\x02\x01", // 𤯵
+ 0x24bf6: "\x02\x02\x01\x01\x02\x01\x03\x04\x01\x01\x02\x03\x01\x01\x02\x01", // 𤯶
+ 0x24bf7: "\x03\x04\x04\x03\x04\x05\x03\x05\x04\x01\x05\x02\x03\x01\x01\x02\x01", // 𤯷
+ 0x24bf8: "\x03\x01\x01\x02\x01\x03\x01\x04\x03\x01\x04\x03\x05\x01\x01\x05\x03", // 𤯸
+ 0x24bf9: "\x04\x03\x01\x01\x02\x01\x03\x05\x03\x03\x03\x04\x03\x01\x01\x02\x01", // 𤯹
+ 0x24bfa: "\x03\x01\x01\x02\x01\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01\x05\x03", // 𤯺
+ 0x24bfb: "\x03\x01\x01\x02\x01\x01\x02\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 𤯻
+ 0x24bfc: "\x02\x02\x04\x03\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04\x03\x01\x01\x02\x01", // 𤯼
+ 0x24bfd: "\x05\x01\x05\x03\x02\x01\x02\x05\x03\x04\x02\x01\x05\x04\x03\x01\x01\x02\x01", // 𤯽
+ 0x24bfe: "\x01\x02\x01\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04\x03\x01\x01\x02\x01", // 𤯾
+ 0x24bff: "\x04\x01\x03\x03\x05\x01\x05\x04\x04\x01\x04\x03\x01\x03\x03\x01\x01\x02\x01", // 𤯿
+ 0x24c00: "\x01\x04\x03\x03\x04\x04\x03\x03\x04\x05\x03\x05\x04\x01\x05\x02\x05\x02\x01\x02\x01", // 𤰀
+ 0x24c01: "\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04\x01\x01\x02\x03\x01\x01\x02\x01", // 𤰁
+ 0x24c02: "\x03\x01\x01\x02\x01\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 𤰂
+ 0x24c03: "\x03\x02\x01\x01\x01\x02\x02", // 𤰃
+ 0x24c04: "\x05\x03\x03\x05\x01\x01\x02", // 𤰄
+ 0x24c05: "\x03\x05\x04\x03\x05\x01\x01\x02", // 𤰅
+ 0x24c06: "\x03\x02\x01\x01\x01\x01\x02\x02", // 𤰆
+ 0x24c07: "\x01\x02\x02\x01\x03\x03\x05\x01\x01\x02", // 𤰇
+ 0x24c08: "\x02\x01\x02\x01\x03\x05\x03\x05\x01\x01\x02", // 𤰈
+ 0x24c09: "\x02\x05\x01\x02\x01\x03\x04\x02\x05\x01\x01\x02", // 𤰉
+ 0x24c0a: "\x01\x02\x05\x02\x02\x01\x05\x03\x01\x03\x05\x01\x01\x02", // 𤰊
+ 0x24c0b: "\x02\x05\x01\x02\x01\x04\x01\x03\x05\x01\x01\x02\x05\x01\x01\x02", // 𤰋
+ 0x24c0c: "\x03\x05\x01\x01\x02\x03\x05\x01\x01\x02\x03\x05\x01\x01\x02", // 𤰌
+ 0x24c0d: "\x01\x02\x02\x01\x03\x04\x02\x05\x02\x03\x04\x01\x02\x05\x01\x01\x02\x04", // 𤰍
+ 0x24c0e: "\x04\x01\x02\x05\x01\x05\x02\x01\x04\x01\x03\x05\x01\x01\x02\x05\x01\x01\x02", // 𤰎
+ 0x24c0f: "\x05\x04\x02\x05\x01\x01\x02\x05\x04\x02\x05\x01\x01\x02\x01\x02\x02\x03\x02\x03\x05", // 𤰏
+ 0x24c10: "\x02\x02\x04\x03\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x02\x05\x01\x01\x02\x04", // 𤰐
+ 0x24c11: "\x01\x05\x04\x02\x05\x01\x03\x05\x04\x01\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x04", // 𤰑
+ 0x24c12: "\x03\x04\x02\x05\x04\x03\x01\x02", // 𤰒
+ 0x24c13: "\x01\x02\x05\x01\x02\x01", // 𤰓
+ 0x24c14: "\x01\x02\x05\x01\x02\x01", // 𤰔
+ 0x24c15: "\x02\x05\x01\x02\x01\x05\x05", // 𤰕
+ 0x24c16: "\x02\x05\x01\x02\x01\x05\x04", // 𤰖
+ 0x24c17: "\x03\x01\x02\x05\x01\x02\x01", // 𤰗
+ 0x24c18: "\x02\x05\x01\x02\x01\x02\x04", // 𤰘
+ 0x24c19: "\x03\x05\x02\x05\x01\x02\x01", // 𤰙
+ 0x24c1a: "\x03\x05\x02\x05\x01\x02\x01", // 𤰚
+ 0x24c1b: "\x05\x03\x02\x05\x01\x02\x01", // 𤰛
+ 0x24c1c: "\x02\x05\x01\x02\x01\x05\x04", // 𤰜
+ 0x24c1d: "\x02\x05\x01\x02\x01\x05\x05\x05", // 𤰝
+ 0x24c1e: "\x02\x05\x01\x02\x01\x04\x01\x02", // 𤰞
+ 0x24c1f: "\x02\x05\x01\x02\x01\x01\x01\x02", // 𤰟
+ 0x24c20: "\x02\x05\x01\x02\x01\x01\x01\x02", // 𤰠
+ 0x24c21: "\x04\x01\x05\x02\x05\x01\x02\x01", // 𤰡
+ 0x24c22: "\x02\x05\x01\x02\x01\x03\x01\x05", // 𤰢
+ 0x24c23: "\x02\x05\x01\x02\x01\x01\x01\x05", // 𤰣
+ 0x24c24: "\x02\x05\x01\x02\x01\x01\x01\x02", // 𤰤
+ 0x24c25: "\x02\x05\x01\x02\x01\x01\x02\x04", // 𤰥
+ 0x24c26: "\x02\x05\x01\x02\x01\x03\x01\x05", // 𤰦
+ 0x24c27: "\x03\x05\x04\x02\x05\x01\x02\x01", // 𤰧
+ 0x24c28: "\x02\x05\x01\x02\x01\x05\x01\x03", // 𤰨
+ 0x24c29: "\x02\x05\x01\x02\x01\x05\x04\x05\x02", // 𤰩
+ 0x24c2a: "\x02\x05\x01\x02\x01\x03\x05\x05\x03", // 𤰪
+ 0x24c2b: "\x05\x02\x02\x01\x02\x05\x01\x02\x01", // 𤰫
+ 0x24c2c: "\x02\x05\x01\x02\x01\x02\x03\x04\x03", // 𤰬
+ 0x24c2d: "\x01\x02\x05\x01\x02\x01\x05\x03\x04", // 𤰭
+ 0x24c2e: "\x02\x05\x01\x02\x01\x05\x01\x03\x04", // 𤰮
+ 0x24c2f: "\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𤰯
+ 0x24c30: "\x02\x05\x01\x02\x01\x03\x03\x02\x04", // 𤰰
+ 0x24c31: "\x01\x02\x02\x05\x01\x02\x01\x02\x01", // 𤰱
+ 0x24c32: "\x03\x02\x05\x01\x02\x01\x03\x03\x02\x04", // 𤰲
+ 0x24c33: "\x01\x01\x03\x04\x02\x05\x01\x02\x01", // 𤰳
+ 0x24c34: "\x02\x05\x01\x02\x01\x01\x01\x05\x01", // 𤰴
+ 0x24c35: "\x02\x05\x01\x02\x01\x01\x03\x04\x05", // 𤰵
+ 0x24c36: "\x02\x05\x01\x01\x02\x05\x01\x01\x02", // 𤰶
+ 0x24c37: "\x02\x05\x01\x01\x02\x05\x02\x01\x05", // 𤰷
+ 0x24c38: "\x04\x01\x05\x04\x02\x05\x01\x02\x01", // 𤰸
+ 0x24c39: "\x02\x05\x01\x02\x01\x04\x03\x03\x04", // 𤰹
+ 0x24c3a: "\x01\x03\x02\x04\x02\x05\x01\x02\x01", // 𤰺
+ 0x24c3b: "\x01\x02\x02\x01\x02\x05\x01\x02\x01", // 𤰻
+ 0x24c3c: "\x02\x05\x01\x02\x01\x03\x01\x01\x02", // 𤰼
+ 0x24c3d: "\x02\x05\x01\x02\x01\x03\x02\x01\x05", // 𤰽
+ 0x24c3e: "\x02\x05\x01\x02\x01\x03\x05\x01\x01", // 𤰾
+ 0x24c3f: "\x02\x05\x01\x02\x01\x03\x05\x03\x03", // 𤰿
+ 0x24c40: "\x02\x05\x01\x02\x01\x03\x04\x03\x04", // 𤱀
+ 0x24c41: "\x02\x05\x01\x02\x01\x01\x01\x03\x04", // 𤱁
+ 0x24c42: "\x02\x05\x01\x02\x01\x01\x01\x05\x04", // 𤱂
+ 0x24c43: "\x02\x05\x01\x02\x01\x01\x02\x03\x04", // 𤱃
+ 0x24c44: "\x02\x05\x01\x02\x01\x02\x05\x03\x04", // 𤱄
+ 0x24c45: "\x02\x05\x01\x02\x01\x02\x05\x03\x04", // 𤱅
+ 0x24c46: "\x02\x05\x01\x02\x01\x02\x05\x05\x04", // 𤱆
+ 0x24c47: "\x03\x04\x03\x04\x02\x05\x01\x02\x01", // 𤱇
+ 0x24c48: "\x04\x01\x02\x05\x01\x02\x01\x02\x04", // 𤱈
+ 0x24c49: "\x02\x05\x01\x02\x01\x05\x01\x03\x04", // 𤱉
+ 0x24c4a: "\x05\x04\x05\x04\x02\x05\x01\x02\x01", // 𤱊
+ 0x24c4b: "\x02\x05\x01\x01\x02\x02\x05\x01\x01", // 𤱋
+ 0x24c4c: "\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01", // 𤱌
+ 0x24c4d: "\x02\x05\x01\x02\x01\x05\x01\x02\x05\x04", // 𤱍
+ 0x24c4e: "\x02\x05\x01\x02\x01\x05\x05\x04\x05\x03", // 𤱎
+ 0x24c4f: "\x02\x05\x01\x02\x01\x03\x01\x02\x03\x04", // 𤱏
+ 0x24c50: "\x02\x05\x01\x02\x01\x05\x02\x01\x03\x04", // 𤱐
+ 0x24c51: "\x01\x02\x02\x05\x01\x02\x01\x05\x03\x04", // 𤱑
+ 0x24c52: "\x01\x02\x01\x03\x05\x02\x05\x01\x02\x01", // 𤱒
+ 0x24c53: "\x02\x05\x01\x01\x02\x02\x05\x01\x01\x02", // 𤱓
+ 0x24c54: "\x04\x01\x02\x05\x01\x02\x01\x03\x05\x04", // 𤱔
+ 0x24c55: "\x02\x05\x01\x02\x01\x05\x01\x05\x01\x05", // 𤱕
+ 0x24c56: "\x03\x02\x05\x01\x02\x01\x01\x02\x05\x05", // 𤱖
+ 0x24c57: "\x02\x05\x01\x02\x01\x04\x01\x04\x03\x01", // 𤱗
+ 0x24c58: "\x02\x05\x01\x02\x01\x05\x03\x03\x01\x05", // 𤱘
+ 0x24c59: "\x02\x05\x01\x02\x01\x01\x02\x03\x04\x01", // 𤱙
+ 0x24c5a: "\x03\x05\x05\x01\x01\x02\x05\x01\x02\x01", // 𤱚
+ 0x24c5b: "\x02\x05\x01\x02\x01\x03\x01\x02\x03\x04", // 𤱛
+ 0x24c5c: "\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 𤱜
+ 0x24c5d: "\x02\x05\x01\x02\x01\x03\x04\x01\x02\x01", // 𤱝
+ 0x24c5e: "\x02\x05\x01\x02\x01\x03\x05\x04\x04\x04", // 𤱞
+ 0x24c5f: "\x02\x05\x01\x02\x01\x05\x02\x02\x05\x02", // 𤱟
+ 0x24c60: "\x02\x05\x01\x02\x01\x05\x03\x02\x05\x01", // 𤱠
+ 0x24c61: "\x05\x04\x02\x05\x01\x02\x01\x05\x02\x05", // 𤱡
+ 0x24c62: "\x02\x05\x01\x01\x02\x03\x02\x01\x05\x04", // 𤱢
+ 0x24c63: "\x02\x05\x02\x01\x01\x02\x05\x01\x01\x02", // 𤱣
+ 0x24c64: "\x02\x05\x01\x02\x01\x04\x04\x05\x01\x02", // 𤱤
+ 0x24c65: "\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x05", // 𤱥
+ 0x24c66: "\x02\x05\x01\x02\x01\x04\x03\x03\x04\x03\x05", // 𤱦
+ 0x24c67: "\x02\x05\x01\x02\x01\x03\x05\x01\x02\x03\x04", // 𤱧
+ 0x24c68: "\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 𤱨
+ 0x24c69: "\x02\x05\x01\x02\x01\x03\x04\x01\x05\x03\x04", // 𤱩
+ 0x24c6a: "\x05\x01\x01\x01\x01\x02\x02\x05\x01\x02\x01", // 𤱪
+ 0x24c6b: "\x02\x05\x01\x02\x01\x03\x05\x01\x03\x04", // 𤱫
+ 0x24c6c: "\x02\x05\x01\x02\x01\x03\x05\x02\x05\x01\x01", // 𤱬
+ 0x24c6d: "\x03\x04\x04\x01\x03\x04\x02\x05\x01\x02\x01", // 𤱭
+ 0x24c6e: "\x03\x02\x05\x01\x02\x01\x03\x03\x05\x03\x04", // 𤱮
+ 0x24c6f: "\x02\x05\x01\x02\x01\x03\x05\x01\x03\x05\x05", // 𤱯
+ 0x24c70: "\x02\x05\x01\x02\x01\x03\x03\x03\x05\x03\x04", // 𤱰
+ 0x24c71: "\x01\x02\x01\x02\x05\x01\x02\x01\x05\x03\x04", // 𤱱
+ 0x24c72: "\x02\x05\x01\x02\x01\x01\x02\x01\x05\x02\x05", // 𤱲
+ 0x24c73: "\x02\x05\x01\x02\x01\x02\x04\x03\x01\x03\x05", // 𤱳
+ 0x24c74: "\x02\x05\x01\x02\x01\x03\x01\x02\x01\x01\x01", // 𤱴
+ 0x24c75: "\x04\x03\x01\x01\x03\x04\x02\x05\x01\x02\x01", // 𤱵
+ 0x24c76: "\x04\x01\x02\x05\x01\x02\x01\x01\x03\x04\x04", // 𤱶
+ 0x24c77: "\x02\x05\x01\x02\x01\x05\x03\x05\x03\x05\x03", // 𤱷
+ 0x24c78: "\x05\x04\x02\x05\x03\x04\x02\x05\x01\x02\x01", // 𤱸
+ 0x24c79: "\x05\x05\x05\x01\x02\x05\x01\x02\x01\x01\x02", // 𤱹
+ 0x24c7a: "\x01\x01\x02\x02\x03\x04\x02\x05\x01\x02\x01", // 𤱺
+ 0x24c7b: "\x02\x05\x01\x02\x01\x01\x02\x02\x05\x01\x02\x05", // 𤱻
+ 0x24c7c: "\x02\x05\x01\x02\x01\x01\x03\x01\x01\x05\x03\x04", // 𤱼
+ 0x24c7d: "\x05\x05\x05\x02\x05\x01\x02\x01\x01\x01\x03\x04", // 𤱽
+ 0x24c7e: "\x05\x05\x05\x02\x05\x01\x02\x01\x05\x01\x03\x04", // 𤱾
+ 0x24c7f: "\x01\x02\x04\x05\x02\x05\x01\x02\x01\x01\x03\x02", // 𤱿
+ 0x24c80: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x01\x05", // 𤲀
+ 0x24c81: "\x02\x05\x01\x02\x01\x05\x04\x03\x04\x02\x05\x02", // 𤲁
+ 0x24c82: "\x02\x05\x01\x02\x01\x03\x04\x03\x02\x01\x02\x04", // 𤲂
+ 0x24c83: "\x02\x05\x01\x02\x01\x01\x01\x02\x02\x01\x01\x02", // 𤲃
+ 0x24c84: "\x03\x02\x05\x01\x02\x01\x03\x02\x03\x03\x03\x04", // 𤲄
+ 0x24c85: "\x01\x02\x02\x01\x03\x04\x02\x05\x01\x01\x05", // 𤲅
+ 0x24c86: "\x02\x05\x01\x02\x01\x01\x03\x01\x01\x05\x03\x04", // 𤲆
+ 0x24c87: "\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 𤲇
+ 0x24c88: "\x02\x05\x01\x02\x01\x03\x05\x02\x05\x01\x03\x05", // 𤲈
+ 0x24c89: "\x02\x05\x01\x02\x01\x01\x03\x04\x02\x05\x01\x01", // 𤲉
+ 0x24c8a: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 𤲊
+ 0x24c8b: "\x02\x05\x01\x02\x01\x03\x05\x05\x04\x03\x05\x04", // 𤲋
+ 0x24c8c: "\x01\x01\x02\x01\x01\x03\x02\x02\x05\x01\x02\x01", // 𤲌
+ 0x24c8d: "\x02\x05\x01\x01\x02\x01\x03\x04\x03\x04\x03\x04", // 𤲍
+ 0x24c8e: "\x02\x05\x01\x02\x01\x03\x01\x03\x04\x02\x03\x04", // 𤲎
+ 0x24c8f: "\x02\x05\x01\x02\x01\x04\x04\x05\x03\x05\x03\x05", // 𤲏
+ 0x24c90: "\x02\x05\x01\x02\x01\x01\x02\x02\x01\x05\x03\x04", // 𤲐
+ 0x24c91: "\x05\x05\x05\x02\x05\x01\x02\x01\x04\x04\x05\x01\x02", // 𤲑
+ 0x24c92: "\x02\x05\x01\x02\x01\x03\x01\x01\x03\x03\x01\x01\x02", // 𤲒
+ 0x24c93: "\x02\x05\x01\x02\x01\x01\x03\x04\x03\x04\x02\x03\x04", // 𤲓
+ 0x24c94: "\x02\x05\x01\x02\x01\x03\x02\x01\x02\x01\x01\x02\x04", // 𤲔
+ 0x24c95: "\x02\x05\x01\x02\x01\x03\x04\x01\x02\x05\x01\x02\x02", // 𤲕
+ 0x24c96: "\x02\x05\x01\x02\x01\x01\x01\x03\x04\x02\x04\x04\x04", // 𤲖
+ 0x24c97: "\x01\x02\x05\x01\x02\x05\x05\x04\x02\x05\x01\x02\x01", // 𤲗
+ 0x24c98: "\x02\x05\x01\x02\x01\x01\x02\x01\x01\x01\x05\x03\x04", // 𤲘
+ 0x24c99: "\x05\x04\x01\x03\x04\x05\x05\x05\x02\x05\x01\x02\x01", // 𤲙
+ 0x24c9a: "\x02\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x03\x04", // 𤲚
+ 0x24c9b: "\x05\x04\x05\x04\x05\x04\x03\x04\x02\x05\x01\x02\x01", // 𤲛
+ 0x24c9c: "\x02\x05\x01\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 𤲜
+ 0x24c9d: "\x01\x03\x04\x03\x04\x02\x03\x04\x02\x05\x01\x02\x01", // 𤲝
+ 0x24c9e: "\x03\x04\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 𤲞
+ 0x24c9f: "\x02\x05\x01\x02\x01\x01\x01\x02\x01\x02\x05\x01\x01", // 𤲟
+ 0x24ca0: "\x02\x05\x01\x02\x01\x04\x01\x03\x04\x03\x04\x01\x02", // 𤲠
+ 0x24ca1: "\x02\x05\x01\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 𤲡
+ 0x24ca2: "\x01\x02\x01\x05\x05\x01\x02\x01\x02\x05\x01\x02\x01", // 𤲢
+ 0x24ca3: "\x02\x05\x01\x02\x01\x01\x05\x01\x01\x02\x01\x03\x04", // 𤲣
+ 0x24ca4: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x02", // 𤲤
+ 0x24ca5: "\x02\x05\x01\x01\x04\x05\x02\x05\x02\x05\x01\x01\x02", // 𤲥
+ 0x24ca6: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x01\x03\x02", // 𤲦
+ 0x24ca7: "\x02\x05\x01\x02\x01\x03\x01\x02\x01\x03\x01\x03\x04", // 𤲧
+ 0x24ca8: "\x02\x05\x01\x02\x01\x04\x03\x01\x01\x03\x04\x05\x05", // 𤲨
+ 0x24ca9: "\x02\x05\x01\x02\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 𤲩
+ 0x24caa: "\x02\x05\x01\x02\x01\x01\x02\x01\x03\x05\x03\x05\x04", // 𤲪
+ 0x24cab: "\x02\x05\x01\x02\x01\x03\x04\x04\x03\x01\x01\x03\x05\x04", // 𤲫
+ 0x24cac: "\x02\x05\x01\x02\x01\x01\x03\x02\x05\x02\x02\x01\x03\x04", // 𤲬
+ 0x24cad: "\x02\x05\x01\x02\x01\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 𤲭
+ 0x24cae: "\x02\x05\x01\x02\x01\x05\x01\x05\x01\x02\x01\x01\x02\x01", // 𤲮
+ 0x24caf: "\x05\x01\x01\x02\x01\x01\x01\x01\x02\x05\x01\x02\x01\x01", // 𤲯
+ 0x24cb0: "\x02\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 𤲰
+ 0x24cb1: "\x01\x02\x01\x02\x01\x05\x02\x03\x04\x02\x05\x01\x02\x01", // 𤲱
+ 0x24cb2: "\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04\x01\x02\x01", // 𤲲
+ 0x24cb3: "\x02\x05\x01\x02\x01\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𤲳
+ 0x24cb4: "\x02\x05\x01\x02\x01\x02\x05\x03\x04\x02\x05\x01\x02\x01", // 𤲴
+ 0x24cb5: "\x02\x05\x01\x02\x01\x03\x03\x02\x01\x02\x01\x01\x02\x04", // 𤲵
+ 0x24cb6: "\x02\x05\x01\x02\x01\x05\x03\x02\x05\x01\x02\x01\x05\x03", // 𤲶
+ 0x24cb7: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x04\x02\x05\x01\x02\x01", // 𤲷
+ 0x24cb8: "\x01\x02\x01\x02\x05\x05\x04\x05\x05\x04\x02\x05\x01\x02\x01", // 𤲸
+ 0x24cb9: "\x02\x05\x01\x02\x01\x05\x01\x05\x04\x01\x05\x01\x05\x04\x01", // 𤲹
+ 0x24cba: "\x02\x05\x01\x02\x01\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04", // 𤲺
+ 0x24cbb: "\x02\x05\x01\x02\x01\x01\x01\x02\x02\x03\x04\x02\x04\x04\x04", // 𤲻
+ 0x24cbc: "\x02\x05\x01\x02\x01\x01\x05\x03\x04\x02\x05\x01\x01\x05\x03", // 𤲼
+ 0x24cbd: "\x01\x03\x02\x05\x01\x01\x02\x05\x01\x02\x01\x03\x05\x03\x05", // 𤲽
+ 0x24cbe: "\x01\x02\x01\x05\x05\x01\x02\x01\x04\x01\x02\x05\x01\x02\x01", // 𤲾
+ 0x24cbf: "\x05\x01\x01\x01\x02\x01\x01\x02\x02\x05\x01\x02\x01\x02\x01", // 𤲿
+ 0x24cc0: "\x05\x05\x04\x05\x05\x04\x01\x02\x05\x01\x02\x01\x05\x03\x04", // 𤳀
+ 0x24cc1: "\x02\x05\x01\x02\x01\x03\x01\x02\x01\x01\x03\x05\x02\x03\x04", // 𤳁
+ 0x24cc2: "\x02\x05\x01\x02\x01\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04", // 𤳂
+ 0x24cc3: "\x02\x05\x01\x02\x01\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04", // 𤳃
+ 0x24cc4: "\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01\x01\x02\x01\x05\x04", // 𤳄
+ 0x24cc5: "\x02\x05\x01\x01\x02\x02\x05\x01\x01\x02\x02\x05\x01\x01\x02", // 𤳅
+ 0x24cc6: "\x02\x05\x01\x02\x01\x05\x03\x01\x03\x04\x03\x04\x02\x03\x04", // 𤳆
+ 0x24cc7: "\x01\x03\x04\x03\x04\x02\x03\x04\x02\x05\x01\x02\x01\x05\x03", // 𤳇
+ 0x24cc8: "\x02\x05\x01\x02\x01\x03\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 𤳈
+ 0x24cc9: "\x02\x05\x01\x02\x01\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𤳉
+ 0x24cca: "\x05\x05\x05\x02\x05\x01\x02\x01\x03\x01\x01\x03\x03\x01\x01\x02", // 𤳊
+ 0x24ccb: "\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x02\x05\x01\x02\x01", // 𤳋
+ 0x24ccc: "\x02\x05\x01\x02\x01\x04\x01\x03\x01\x02\x02\x01\x04\x04\x04\x04", // 𤳌
+ 0x24ccd: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x01\x02\x05\x01\x01\x05", // 𤳍
+ 0x24cce: "\x02\x05\x01\x02\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𤳎
+ 0x24ccf: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x01", // 𤳏
+ 0x24cd0: "\x02\x05\x01\x02\x01\x04\x01\x03\x01\x02\x02\x01\x04\x04\x04\x04", // 𤳐
+ 0x24cd1: "\x02\x05\x01\x02\x01\x05\x04\x05\x04\x05\x04\x03\x04\x02\x03\x04", // 𤳑
+ 0x24cd2: "\x02\x05\x01\x02\x01\x05\x04\x05\x04\x05\x04\x03\x04\x02\x04\x04\x04", // 𤳒
+ 0x24cd3: "\x01\x03\x05\x04\x02\x02\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 𤳓
+ 0x24cd4: "\x03\x03\x05\x04\x01\x04\x04\x03\x01\x01\x03\x04\x02\x05\x01\x02\x01", // 𤳔
+ 0x24cd5: "\x05\x01\x05\x04\x03\x01\x02\x03\x04\x05\x01\x05\x02\x05\x01\x02\x01", // 𤳕
+ 0x24cd6: "\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x01\x02\x01\x05\x04", // 𤳖
+ 0x24cd7: "\x01\x02\x01\x05\x04\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 𤳗
+ 0x24cd8: "\x02\x05\x01\x01\x02\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 𤳘
+ 0x24cd9: "\x02\x05\x01\x02\x01\x01\x02\x01\x02\x04\x04\x05\x03\x05\x04\x05\x05", // 𤳙
+ 0x24cda: "\x02\x05\x01\x02\x01\x05\x01\x01\x01\x02\x01\x03\x05\x04\x01\x02\x04", // 𤳚
+ 0x24cdb: "\x01\x02\x01\x05\x04\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 𤳛
+ 0x24cdc: "\x02\x05\x01\x02\x01\x01\x03\x02\x05\x02\x02\x01\x03\x02\x05\x02\x02", // 𤳜
+ 0x24cdd: "\x02\x05\x01\x02\x01\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x02", // 𤳝
+ 0x24cde: "\x03\x04\x04\x03\x05\x04\x02\x05\x05\x04\x05\x04\x02\x05\x01\x02\x01", // 𤳞
+ 0x24cdf: "\x02\x05\x01\x02\x01\x01\x04\x05\x02\x04\x01\x03\x04\x01\x01\x05\x04", // 𤳟
+ 0x24ce0: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x01\x03\x05\x02\x05\x01\x01", // 𤳠
+ 0x24ce1: "\x01\x01\x02\x03\x04\x01\x03\x05\x05\x03\x04\x02\x05\x01\x02\x01", // 𤳡
+ 0x24ce2: "\x02\x05\x01\x02\x01\x05\x03\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𤳢
+ 0x24ce3: "\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x01\x02\x02\x01\x01\x02", // 𤳣
+ 0x24ce4: "\x05\x05\x05\x02\x05\x01\x02\x01\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04", // 𤳤
+ 0x24ce5: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x01\x02\x03\x04\x01\x02\x03\x04", // 𤳥
+ 0x24ce6: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x01\x03\x04", // 𤳦
+ 0x24ce7: "\x02\x05\x01\x03\x02\x05\x01\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 𤳧
+ 0x24ce8: "\x02\x05\x01\x02\x01\x04\x05\x02\x04\x05\x05\x01\x02\x04\x01\x03\x04", // 𤳨
+ 0x24ce9: "\x02\x05\x01\x02\x01\x04\x03\x03\x04\x04\x03\x03\x04\x03\x05\x04\x01\x05\x02", // 𤳩
+ 0x24cea: "\x01\x03\x02\x05\x01\x01\x03\x05\x04\x01\x01\x03\x04\x04\x02\x05\x01\x02\x01", // 𤳪
+ 0x24ceb: "\x05\x05\x05\x02\x05\x01\x02\x01\x05\x01\x03\x03\x01\x01\x03\x03\x01\x01\x02", // 𤳫
+ 0x24cec: "\x02\x05\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x03\x05\x02\x05\x01", // 𤳬
+ 0x24ced: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x01\x01\x02\x01\x03\x05\x04\x05\x05", // 𤳭
+ 0x24cee: "\x03\x03\x05\x04\x01\x04\x04\x03\x03\x04\x05\x03\x05\x04\x02\x05\x01\x02\x01", // 𤳮
+ 0x24cef: "\x05\x05\x05\x02\x05\x01\x02\x01\x04\x01\x03\x01\x02\x02\x01\x04\x04\x04\x04", // 𤳯
+ 0x24cf0: "\x05\x01\x03\x03\x01\x01\x05\x05\x01\x03\x04\x01\x02\x05\x01\x02\x01\x05\x02", // 𤳰
+ 0x24cf1: "\x02\x05\x01\x02\x01\x04\x01\x03\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 𤳱
+ 0x24cf2: "\x05\x05\x05\x02\x05\x01\x02\x01\x04\x01\x03\x01\x05\x01\x01\x02\x01\x03\x04", // 𤳲
+ 0x24cf3: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01", // 𤳳
+ 0x24cf4: "\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02", // 𤳴
+ 0x24cf5: "\x02\x05\x01\x01\x02\x02\x05\x01\x01\x02\x02\x05\x01\x01\x02\x02\x05\x01\x01\x02", // 𤳵
+ 0x24cf6: "\x02\x05\x01\x02\x01\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x03\x01\x02\x01", // 𤳶
+ 0x24cf7: "\x02\x05\x02\x02\x01\x05\x04\x02\x05\x01\x01\x03\x05\x03\x05\x02\x05\x01\x02\x01", // 𤳷
+ 0x24cf8: "\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01\x05\x04\x02\x05\x01\x01\x03\x05\x03\x05", // 𤳸
+ 0x24cf9: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01", // 𤳹
+ 0x24cfa: "\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 𤳺
+ 0x24cfb: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 𤳻
+ 0x24cfc: "\x05\x04\x01\x03\x04\x02\x05\x01\x02\x01\x04\x01\x03\x01\x02\x02\x01\x04\x04\x04\x04", // 𤳼
+ 0x24cfd: "\x02\x05\x01\x02\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01\x01\x01", // 𤳽
+ 0x24cfe: "\x01\x02\x01\x02\x02\x01\x01\x01\x01\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x01\x01", // 𤳾
+ 0x24cff: "\x03\x04\x04\x03\x05\x01\x02\x05\x01\x02\x02\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 𤳿
+ 0x24d00: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 𤴀
+ 0x24d01: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x04\x04\x05\x05\x05\x01", // 𤴁
+ 0x24d02: "\x02\x05\x01\x02\x01\x03\x05\x04\x02\x05\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𤴂
+ 0x24d03: "\x02\x05\x01\x02\x01\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04\x04\x04\x04\x04", // 𤴃
+ 0x24d04: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x01\x03\x04\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01", // 𤴄
+ 0x24d05: "\x05\x05\x05\x02\x05\x01\x02\x01\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 𤴅
+ 0x24d06: "\x02\x05\x01\x02\x01\x03\x01\x04\x03\x01\x04\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 𤴆
+ 0x24d07: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01", // 𤴇
+ 0x24d08: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 𤴈
+ 0x24d09: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x04\x05\x02\x05\x01\x01\x01\x04\x05\x01\x02", // 𤴉
+ 0x24d0a: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x03\x01\x01\x02\x05\x02\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01", // 𤴊
+ 0x24d0b: "\x03\x04\x04\x03\x05\x01\x04\x04\x05\x05\x04\x01\x02\x04\x01\x02\x05\x01\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 𤴋
+ 0x24d0c: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x01\x03\x01\x01\x05\x03\x04\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01", // 𤴌
+ 0x24d0d: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x04\x05\x02\x05\x01\x01\x01\x04\x04\x05\x01\x02", // 𤴍
+ 0x24d0e: "\x03\x04\x04\x03\x05\x01\x02\x05\x01\x02\x02\x01\x02\x04\x01\x02\x05\x01\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 𤴎
+ 0x24d0f: "\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𤴏
+ 0x24d10: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x02\x05\x01\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01", // 𤴐
+ 0x24d11: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x01", // 𤴑
+ 0x24d12: "\x02\x05\x01\x02\x01\x02\x02\x05\x01\x05\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x02\x05\x01\x02\x01", // 𤴒
+ 0x24d13: "\x01\x02\x01\x03\x04", // 𤴓
+ 0x24d14: "\x05\x02\x01\x02\x01", // 𤴔
+ 0x24d15: "\x01\x05\x02\x01\x03\x04", // 𤴕
+ 0x24d16: "\x01\x05\x04\x02\x01\x03\x04", // 𤴖
+ 0x24d17: "\x05\x02\x03\x05\x01\x01\x02\x01\x03\x04", // 𤴗
+ 0x24d18: "\x03\x04\x05\x01\x01\x02\x01\x03\x04", // 𤴘
+ 0x24d19: "\x03\x02\x05\x03\x05\x04\x01\x05\x02\x01\x03\x04", // 𤴙
+ 0x24d1a: "\x01\x02\x05\x01\x02\x03\x04\x05\x02\x01\x03\x04", // 𤴚
+ 0x24d1b: "\x01\x02\x05\x01\x02\x01\x05\x04\x01\x02\x01\x03\x04", // 𤴛
+ 0x24d1c: "\x01\x02\x03\x04\x05\x02\x01\x03\x04\x01\x02\x03\x04", // 𤴜
+ 0x24d1d: "\x01\x02\x05\x01\x01\x02\x01\x04\x05\x02\x01\x03\x04", // 𤴝
+ 0x24d1e: "\x01\x02\x01\x02\x05\x02\x02\x01\x05\x04\x02\x01\x03\x04", // 𤴞
+ 0x24d1f: "\x01\x02\x02\x01\x03\x05\x04\x05\x02\x05\x02\x05\x02\x01\x03\x04", // 𤴟
+ 0x24d20: "\x05\x02\x01\x03\x03\x05\x04\x04\x01\x02\x04\x05\x02\x01\x03\x04", // 𤴠
+ 0x24d21: "\x01\x02\x04\x05\x02\x05\x01\x02\x01\x05\x04\x02\x01\x03\x04", // 𤴡
+ 0x24d22: "\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04\x05\x02\x01\x03\x04", // 𤴢
+ 0x24d23: "\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x05\x02\x01\x03\x04", // 𤴣
+ 0x24d24: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05\x02\x01\x03\x04", // 𤴤
+ 0x24d25: "\x04\x01\x03\x04\x01\x05", // 𤴥
+ 0x24d26: "\x04\x01\x03\x04\x01\x03\x05", // 𤴦
+ 0x24d27: "\x04\x01\x03\x04\x01\x03\x04", // 𤴧
+ 0x24d28: "\x04\x01\x03\x04\x01\x05\x04", // 𤴨
+ 0x24d29: "\x04\x01\x03\x04\x01\x02\x04", // 𤴩
+ 0x24d2a: "\x04\x01\x03\x04\x01\x03\x05", // 𤴪
+ 0x24d2b: "\x04\x01\x03\x04\x01\x01\x02", // 𤴫
+ 0x24d2c: "\x04\x01\x03\x04\x01\x05\x03", // 𤴬
+ 0x24d2d: "\x04\x01\x03\x04\x01\x03\x04", // 𤴭
+ 0x24d2e: "\x04\x01\x03\x04\x01\x03\x02", // 𤴮
+ 0x24d2f: "\x04\x01\x03\x04\x01\x03\x05\x04", // 𤴯
+ 0x24d30: "\x04\x01\x03\x04\x01\x01\x03\x05", // 𤴰
+ 0x24d31: "\x04\x01\x03\x04\x01\x03\x01\x05", // 𤴱
+ 0x24d32: "\x04\x01\x03\x04\x01\x01\x01\x02", // 𤴲
+ 0x24d33: "\x04\x01\x03\x04\x01\x05\x02\x01", // 𤴳
+ 0x24d34: "\x04\x01\x03\x04\x01\x05\x03\x05", // 𤴴
+ 0x24d35: "\x04\x01\x03\x04\x01\x01\x05\x04", // 𤴵
+ 0x24d36: "\x04\x01\x03\x04\x01\x01\x02\x01", // 𤴶
+ 0x24d37: "\x04\x01\x03\x04\x01\x01\x02\x03\x04", // 𤴷
+ 0x24d38: "\x04\x01\x03\x04\x01\x03\x01\x01\x05", // 𤴸
+ 0x24d39: "\x04\x01\x03\x04\x01\x01\x02\x05\x02", // 𤴹
+ 0x24d3a: "\x04\x01\x03\x04\x01\x04\x05\x03\x05", // 𤴺
+ 0x24d3b: "\x04\x01\x03\x04\x01\x01\x03\x04\x04", // 𤴻
+ 0x24d3c: "\x04\x01\x03\x04\x01\x03\x05\x03\x04", // 𤴼
+ 0x24d3d: "\x04\x01\x03\x04\x01\x03\x04\x01\x05", // 𤴽
+ 0x24d3e: "\x04\x01\x03\x04\x01\x03\x03\x01\x02", // 𤴾
+ 0x24d3f: "\x04\x01\x03\x04\x01\x02\x05\x01\x01", // 𤴿
+ 0x24d40: "\x04\x01\x03\x04\x01\x01\x05\x03\x05", // 𤵀
+ 0x24d41: "\x04\x01\x03\x04\x01\x02\x01\x02\x01", // 𤵁
+ 0x24d42: "\x04\x01\x03\x04\x01\x04\x05\x04\x04", // 𤵂
+ 0x24d43: "\x04\x01\x03\x04\x01\x03\x01\x01\x02", // 𤵃
+ 0x24d44: "\x04\x01\x03\x04\x01\x01\x03\x05\x04", // 𤵄
+ 0x24d45: "\x04\x01\x03\x04\x01\x03\x04\x05\x02", // 𤵅
+ 0x24d46: "\x04\x01\x03\x04\x01\x03\x05\x05\x04", // 𤵆
+ 0x24d47: "\x04\x01\x03\x04\x01\x03\x05\x05\x03", // 𤵇
+ 0x24d48: "\x04\x01\x03\x04\x01\x05\x04\x05\x02", // 𤵈
+ 0x24d49: "\x04\x01\x03\x04\x01\x01\x03\x04\x04", // 𤵉
+ 0x24d4a: "\x04\x01\x03\x04\x01\x01\x05\x02\x05", // 𤵊
+ 0x24d4b: "\x04\x01\x03\x04\x01\x01\x05\x05\x04", // 𤵋
+ 0x24d4c: "\x04\x01\x03\x04\x01\x02\x03\x04\x03", // 𤵌
+ 0x24d4d: "\x04\x01\x03\x04\x01\x03\x01\x01\x02", // 𤵍
+ 0x24d4e: "\x04\x01\x03\x04\x01\x03\x01\x03\x05", // 𤵎
+ 0x24d4f: "\x04\x01\x03\x04\x01\x03\x04\x03\x05", // 𤵏
+ 0x24d50: "\x04\x01\x03\x04\x01\x03\x05\x03\x03", // 𤵐
+ 0x24d51: "\x04\x01\x03\x04\x01\x03\x05\x03\x04", // 𤵑
+ 0x24d52: "\x04\x01\x03\x04\x01\x04\x01\x03\x04", // 𤵒
+ 0x24d53: "\x04\x01\x03\x04\x01\x05\x02\x05\x04", // 𤵓
+ 0x24d54: "\x04\x01\x03\x04\x01\x05\x04\x03\x05", // 𤵔
+ 0x24d55: "\x04\x01\x03\x04\x01\x03\x04\x01\x05", // 𤵕
+ 0x24d56: "\x04\x01\x03\x04\x01\x02\x05\x01\x01", // 𤵖
+ 0x24d57: "\x04\x01\x03\x04\x01\x01\x03\x02\x05\x02", // 𤵗
+ 0x24d58: "\x04\x01\x03\x04\x01\x04\x05\x04\x03\x04", // 𤵘
+ 0x24d59: "\x04\x01\x03\x04\x01\x03\x01\x01\x02\x01", // 𤵙
+ 0x24d5a: "\x04\x01\x03\x04\x01\x03\x01\x05\x02\x05", // 𤵚
+ 0x24d5b: "\x04\x01\x03\x04\x01\x01\x03\x02\x04\x01", // 𤵛
+ 0x24d5c: "\x04\x01\x03\x04\x01\x03\x05\x02\x03\x04", // 𤵜
+ 0x24d5d: "\x04\x01\x03\x04\x01\x05\x05\x04\x01\x04", // 𤵝
+ 0x24d5e: "\x04\x01\x03\x04\x01\x03\x04\x01\x02\x01", // 𤵞
+ 0x24d5f: "\x04\x01\x03\x04\x01\x05\x02\x02\x05\x04", // 𤵟
+ 0x24d60: "\x04\x01\x03\x04\x01\x03\x05\x03\x05\x02", // 𤵠
+ 0x24d61: "\x04\x01\x03\x04\x01\x03\x04\x03\x01\x02", // 𤵡
+ 0x24d62: "\x04\x01\x03\x04\x01\x03\x02\x01\x02\x01", // 𤵢
+ 0x24d63: "\x04\x01\x03\x04\x01\x01\x04\x03\x01\x02", // 𤵣
+ 0x24d64: "\x04\x01\x03\x04\x01\x05\x01\x05\x01\x05", // 𤵤
+ 0x24d65: "\x04\x01\x03\x04\x01\x03\x01\x02\x03\x04", // 𤵥
+ 0x24d66: "\x04\x01\x03\x04\x01\x01\x02\x03\x04\x05", // 𤵦
+ 0x24d67: "\x04\x01\x03\x04\x01\x05\x01\x02\x05\x04", // 𤵧
+ 0x24d68: "\x04\x01\x03\x04\x01\x05\x01\x01\x03\x04", // 𤵨
+ 0x24d69: "\x04\x01\x03\x04\x01\x03\x02\x05\x02\x05", // 𤵩
+ 0x24d6a: "\x04\x01\x03\x04\x01\x05\x03\x02\x05\x01", // 𤵪
+ 0x24d6b: "\x04\x01\x03\x04\x01\x01\x01\x02\x03\x04", // 𤵫
+ 0x24d6c: "\x04\x01\x03\x04\x01\x01\x03\x05\x04\x04", // 𤵬
+ 0x24d6d: "\x04\x01\x03\x04\x01\x02\x05\x01\x01\x02", // 𤵭
+ 0x24d6e: "\x04\x01\x03\x04\x01\x03\x04\x04\x03\x04", // 𤵮
+ 0x24d6f: "\x04\x01\x03\x04\x01\x03\x05\x03\x02\x05", // 𤵯
+ 0x24d70: "\x04\x01\x03\x04\x01\x03\x05\x05\x01\x01", // 𤵰
+ 0x24d71: "\x04\x01\x03\x04\x01\x02\x05\x01\x05\x03", // 𤵱
+ 0x24d72: "\x04\x01\x03\x04\x01\x03\x04\x02\x03\x04", // 𤵲
+ 0x24d73: "\x04\x01\x03\x04\x01\x01\x02\x03\x04\x01", // 𤵳
+ 0x24d74: "\x04\x01\x03\x04\x01\x03\x02\x01\x02\x01", // 𤵴
+ 0x24d75: "\x04\x01\x03\x04\x01\x05\x01\x01\x03\x04", // 𤵵
+ 0x24d76: "\x04\x01\x03\x04\x01\x02\x01\x05\x01\x05", // 𤵶
+ 0x24d77: "\x04\x01\x03\x04\x01\x05\x02\x01\x03\x05\x04", // 𤵷
+ 0x24d78: "\x04\x01\x03\x04\x01\x03\x05\x04\x01\x05\x02", // 𤵸
+ 0x24d79: "\x04\x01\x03\x04\x01\x01\x02\x01\x02\x05\x01", // 𤵹
+ 0x24d7a: "\x04\x01\x03\x04\x01\x02\x05\x01\x01\x05\x03", // 𤵺
+ 0x24d7b: "\x04\x01\x03\x04\x01\x03\x04\x05\x01\x03\x05", // 𤵻
+ 0x24d7c: "\x04\x01\x03\x04\x01\x03\x02\x05\x02\x05\x01", // 𤵼
+ 0x24d7d: "\x04\x01\x03\x04\x01\x01\x02\x01\x02\x03\x04", // 𤵽
+ 0x24d7e: "\x04\x01\x03\x04\x01\x04\x04\x05\x03\x01\x05", // 𤵾
+ 0x24d7f: "\x04\x01\x03\x04\x01\x01\x02\x05\x03\x04\x05", // 𤵿
+ 0x24d80: "\x04\x01\x03\x04\x01\x04\x01\x03\x04\x03\x04", // 𤶀
+ 0x24d81: "\x04\x01\x03\x04\x01\x01\x02\x01\x03\x01\x05", // 𤶁
+ 0x24d82: "\x04\x01\x03\x04\x01\x05\x02\x01\x02\x05\x01", // 𤶂
+ 0x24d83: "\x04\x01\x03\x04\x01\x03\x04\x01\x05\x03\x04", // 𤶃
+ 0x24d84: "\x04\x01\x03\x04\x01\x03\x02\x01\x01\x02\x01", // 𤶄
+ 0x24d85: "\x04\x01\x03\x04\x01\x02\x03\x01\x01\x03\x04", // 𤶅
+ 0x24d86: "\x04\x01\x03\x04\x01\x05\x05\x05\x02\x05\x02", // 𤶆
+ 0x24d87: "\x04\x01\x03\x04\x01\x03\x05\x02\x05\x01\x01", // 𤶇
+ 0x24d88: "\x04\x01\x03\x04\x01\x01\x02\x05\x03\x05\x01", // 𤶈
+ 0x24d89: "\x04\x01\x03\x04\x01\x02\x05\x01\x01\x02\x04", // 𤶉
+ 0x24d8a: "\x04\x01\x03\x04\x01\x03\x04\x04\x01\x05\x04", // 𤶊
+ 0x24d8b: "\x04\x01\x03\x04\x01\x03\x05\x05\x02\x01\x05", // 𤶋
+ 0x24d8c: "\x04\x01\x03\x04\x01\x04\x03\x03\x04\x05\x04", // 𤶌
+ 0x24d8d: "\x04\x01\x03\x04\x01\x05\x01\x01\x05\x01\x01", // 𤶍
+ 0x24d8e: "\x04\x01\x03\x04\x01\x03\x01\x01\x02\x03\x04", // 𤶎
+ 0x24d8f: "\x04\x01\x03\x04\x01\x02\x04\x03\x01\x03\x05", // 𤶏
+ 0x24d90: "\x04\x01\x03\x04\x01\x01\x03\x02\x05\x02\x01", // 𤶐
+ 0x24d91: "\x04\x01\x03\x04\x01\x02\x05\x01\x03\x04\x01", // 𤶑
+ 0x24d92: "\x04\x01\x03\x04\x01\x05\x03\x04\x05\x04", // 𤶒
+ 0x24d93: "\x04\x01\x03\x04\x01\x04\x01\x02\x05\x01\x01", // 𤶓
+ 0x24d94: "\x04\x01\x03\x04\x01\x03\x05\x04\x02\x03\x04", // 𤶔
+ 0x24d95: "\x04\x01\x03\x04\x01\x01\x01\x03\x04\x02\x05\x01", // 𤶕
+ 0x24d96: "\x04\x01\x03\x04\x01\x03\x04\x04\x03\x05\x02\x01", // 𤶖
+ 0x24d97: "\x04\x01\x03\x04\x01\x05\x04\x03\x01\x01\x03\x04", // 𤶗
+ 0x24d98: "\x04\x01\x03\x04\x01\x04\x01\x01\x01\x02\x05\x01", // 𤶘
+ 0x24d99: "\x04\x01\x03\x04\x01\x03\x02\x03\x01\x02\x01\x01", // 𤶙
+ 0x24d9a: "\x04\x01\x03\x04\x01\x02\x05\x01\x01\x01\x02\x01", // 𤶚
+ 0x24d9b: "\x04\x01\x03\x04\x01\x02\x05\x01\x05\x02\x01\x05", // 𤶛
+ 0x24d9c: "\x04\x01\x03\x04\x01\x05\x02\x01\x03\x01\x02\x01", // 𤶜
+ 0x24d9d: "\x04\x01\x03\x04\x01\x05\x03\x04\x04\x05\x04\x04", // 𤶝
+ 0x24d9e: "\x04\x01\x03\x04\x01\x03\x05\x04\x01\x01\x01\x02", // 𤶞
+ 0x24d9f: "\x04\x01\x03\x04\x01\x01\x03\x04\x04\x03\x05\x04", // 𤶟
+ 0x24da0: "\x04\x01\x03\x04\x01\x03\x04\x01\x01\x02\x03\x04", // 𤶠
+ 0x24da1: "\x04\x01\x03\x04\x01\x03\x05\x04\x01\x01\x02\x04", // 𤶡
+ 0x24da2: "\x04\x01\x03\x04\x01\x04\x05\x02\x05\x01\x01\x01", // 𤶢
+ 0x24da3: "\x04\x01\x03\x04\x01\x03\x03\x02\x03\x05\x05\x04", // 𤶣
+ 0x24da4: "\x04\x01\x03\x04\x01\x03\x05\x02\x03\x04\x05\x04", // 𤶤
+ 0x24da5: "\x04\x01\x03\x04\x01\x01\x03\x03\x01\x01\x03\x04", // 𤶥
+ 0x24da6: "\x04\x01\x03\x04\x01\x01\x01\x02\x01\x01\x03\x02", // 𤶦
+ 0x24da7: "\x04\x01\x03\x04\x01\x02\x05\x01\x02\x05\x03\x04", // 𤶧
+ 0x24da8: "\x04\x01\x03\x04\x01\x02\x05\x01\x01\x01\x01\x05", // 𤶨
+ 0x24da9: "\x04\x01\x03\x04\x01\x01\x02\x04\x01\x03\x04\x04", // 𤶩
+ 0x24daa: "\x04\x01\x03\x04\x01\x02\x01\x02\x01\x01\x01\x02", // 𤶪
+ 0x24dab: "\x04\x01\x03\x04\x01\x03\x05\x04\x01\x02\x03\x04", // 𤶫
+ 0x24dac: "\x04\x01\x03\x04\x01\x01\x02\x05\x01\x02\x03\x04", // 𤶬
+ 0x24dad: "\x04\x01\x03\x04\x01\x02\x05\x01\x01\x02\x03\x04", // 𤶭
+ 0x24dae: "\x04\x01\x03\x04\x01\x01\x02\x05\x03\x04\x01\x05", // 𤶮
+ 0x24daf: "\x04\x01\x03\x04\x01\x01\x02\x05\x03\x04\x05\x04", // 𤶯
+ 0x24db0: "\x04\x01\x03\x04\x01\x01\x03\x02\x05\x02\x02\x01", // 𤶰
+ 0x24db1: "\x04\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02", // 𤶱
+ 0x24db2: "\x04\x01\x03\x04\x01\x02\x05\x01\x01\x01\x02\x01", // 𤶲
+ 0x24db3: "\x04\x01\x03\x04\x01\x03\x01\x02\x01\x02\x05\x01", // 𤶳
+ 0x24db4: "\x04\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03", // 𤶴
+ 0x24db5: "\x04\x01\x03\x04\x01\x03\x05\x03\x03\x02\x05\x02", // 𤶵
+ 0x24db6: "\x04\x01\x03\x04\x01\x04\x04\x01\x01\x01\x02\x01", // 𤶶
+ 0x24db7: "\x04\x01\x03\x04\x01\x05\x01\x01\x03\x02\x05\x01", // 𤶷
+ 0x24db8: "\x04\x01\x03\x04\x01\x05\x01\x01\x03\x05\x02", // 𤶸
+ 0x24db9: "\x04\x01\x03\x04\x01\x05\x01\x03\x05\x02\x05\x01", // 𤶹
+ 0x24dba: "\x04\x01\x03\x04\x01\x02\x05\x01\x03\x05\x03\x04", // 𤶺
+ 0x24dbb: "\x04\x01\x03\x04\x01\x02\x05\x01\x01\x01\x03\x05", // 𤶻
+ 0x24dbc: "\x04\x01\x03\x04\x01\x01\x02\x02\x04\x01\x05", // 𤶼
+ 0x24dbd: "\x04\x01\x03\x04\x01\x01\x02\x04\x05\x05\x02\x01", // 𤶽
+ 0x24dbe: "\x04\x01\x03\x04\x01\x04\x01\x03\x04\x02\x05\x01", // 𤶾
+ 0x24dbf: "\x04\x01\x03\x04\x01\x02\x05\x01\x01\x05\x02\x01", // 𤶿
+ 0x24dc0: "\x04\x01\x03\x04\x01\x01\x03\x05\x01\x01\x02\x01", // 𤷀
+ 0x24dc1: "\x04\x01\x03\x04\x01\x01\x03\x02\x04\x01\x02\x01", // 𤷁
+ 0x24dc2: "\x04\x01\x03\x04\x01\x03\x05\x01\x01\x05\x02\x01\x05", // 𤷂
+ 0x24dc3: "\x04\x01\x03\x04\x01\x01\x05\x03\x04\x01\x05\x03\x04", // 𤷃
+ 0x24dc4: "\x04\x01\x03\x04\x01\x04\x03\x01\x01\x03\x04\x05\x05", // 𤷄
+ 0x24dc5: "\x04\x01\x03\x04\x01\x03\x02\x01\x05\x01\x01\x03\x05", // 𤷅
+ 0x24dc6: "\x04\x01\x03\x04\x01\x01\x02\x05\x01\x01\x02\x03\x04", // 𤷆
+ 0x24dc7: "\x04\x01\x03\x04\x01\x01\x02\x05\x01\x01\x05\x03\x04", // 𤷇
+ 0x24dc8: "\x04\x01\x03\x04\x01\x01\x03\x04\x01\x01\x02\x03\x04", // 𤷈
+ 0x24dc9: "\x04\x01\x03\x04\x01\x05\x02\x02\x05\x01\x05\x04\x01", // 𤷉
+ 0x24dca: "\x04\x01\x03\x04\x01\x03\x05\x04\x01\x01\x03\x05\x04", // 𤷊
+ 0x24dcb: "\x04\x01\x03\x04\x01\x01\x03\x05\x04\x03\x01\x01\x05", // 𤷋
+ 0x24dcc: "\x04\x01\x03\x04\x01\x01\x02\x05\x01\x02\x05\x05\x04", // 𤷌
+ 0x24dcd: "\x04\x01\x03\x04\x01\x01\x02\x02\x01\x01\x01\x03\x04", // 𤷍
+ 0x24dce: "\x04\x01\x03\x04\x01\x03\x02\x05\x01\x05\x01\x01\x02", // 𤷎
+ 0x24dcf: "\x04\x01\x03\x04\x01\x03\x04\x04\x03\x01\x01\x02\x01", // 𤷏
+ 0x24dd0: "\x04\x01\x03\x04\x01\x04\x01\x05\x02\x05\x01\x01\x01", // 𤷐
+ 0x24dd1: "\x04\x01\x03\x04\x01\x03\x05\x04\x02\x04\x02\x05\x01", // 𤷑
+ 0x24dd2: "\x04\x01\x03\x04\x01\x02\x05\x01\x02\x01\x04\x01\x02", // 𤷒
+ 0x24dd3: "\x04\x01\x03\x04\x01\x03\x03\x01\x02\x03\x05\x03\x04", // 𤷓
+ 0x24dd4: "\x04\x01\x03\x04\x01\x03\x04\x01\x02\x05\x01\x02\x02", // 𤷔
+ 0x24dd5: "\x04\x01\x03\x04\x01\x03\x04\x04\x03\x01\x02\x03\x04", // 𤷕
+ 0x24dd6: "\x04\x01\x03\x04\x01\x01\x02\x01\x03\x05\x03\x05\x04", // 𤷖
+ 0x24dd7: "\x04\x01\x03\x04\x01\x04\x03\x02\x05\x02\x03\x04", // 𤷗
+ 0x24dd8: "\x04\x01\x03\x04\x01\x02\x01\x02\x05\x01\x01\x01\x02", // 𤷘
+ 0x24dd9: "\x04\x01\x03\x04\x01\x02\x05\x01\x01\x01\x01\x02\x04", // 𤷙
+ 0x24dda: "\x04\x01\x03\x04\x01\x05\x01\x01\x02\x04\x01\x03\x04", // 𤷚
+ 0x24ddb: "\x04\x01\x03\x04\x01\x02\x04\x03\x02\x05\x02\x05\x01", // 𤷛
+ 0x24ddc: "\x04\x01\x03\x04\x01\x03\x04\x01\x05\x01\x01\x05\x04", // 𤷜
+ 0x24ddd: "\x04\x01\x03\x04\x01\x03\x02\x01\x02\x01\x02\x05\x02", // 𤷝
+ 0x24dde: "\x04\x01\x03\x04\x01\x03\x05\x01\x01\x04\x05\x04\x04", // 𤷞
+ 0x24ddf: "\x04\x01\x03\x04\x01\x01\x02\x01\x04\x01\x04\x03\x01", // 𤷟
+ 0x24de0: "\x04\x01\x03\x04\x01\x01\x02\x03\x04\x03\x01\x03\x04", // 𤷠
+ 0x24de1: "\x04\x01\x03\x04\x01\x02\x01\x05\x03\x01\x05\x03\x05", // 𤷡
+ 0x24de2: "\x04\x01\x03\x04\x01\x02\x05\x01\x01\x01\x01\x03\x04", // 𤷢
+ 0x24de3: "\x04\x01\x03\x04\x01\x03\x01\x02\x01\x02\x02\x01\x01", // 𤷣
+ 0x24de4: "\x04\x01\x03\x04\x01\x03\x04\x01\x03\x02\x05\x01\x01", // 𤷤
+ 0x24de5: "\x04\x01\x03\x04\x01\x03\x04\x05\x04\x03\x05\x04\x01", // 𤷥
+ 0x24de6: "\x04\x01\x03\x04\x01\x04\x01\x02\x05\x01\x02\x03\x04", // 𤷦
+ 0x24de7: "\x04\x01\x03\x04\x01\x04\x04\x05\x03\x05\x04\x05\x05", // 𤷧
+ 0x24de8: "\x04\x01\x03\x04\x01\x05\x02\x01\x01\x05\x02\x01\x01", // 𤷨
+ 0x24de9: "\x04\x01\x03\x04\x01\x04\x04\x01\x05\x04\x02\x05\x01", // 𤷩
+ 0x24dea: "\x04\x01\x03\x04\x01\x05\x02\x01\x02\x05\x02\x02\x01", // 𤷪
+ 0x24deb: "\x04\x01\x03\x04\x01\x01\x02\x05\x02\x03\x04\x02\x02", // 𤷫
+ 0x24dec: "\x04\x01\x03\x04\x01\x03\x05\x04\x03\x01\x01\x02\x01", // 𤷬
+ 0x24ded: "\x04\x01\x03\x04\x01\x03\x02\x05\x01\x01\x03\x05\x04", // 𤷭
+ 0x24dee: "\x04\x01\x03\x04\x01\x03\x03\x02\x04\x01\x01\x02\x01", // 𤷮
+ 0x24def: "\x04\x01\x03\x04\x01\x05\x01\x03\x02\x05\x02\x02\x02", // 𤷯
+ 0x24df0: "\x04\x01\x03\x04\x01\x01\x01\x01\x03\x04\x01\x01\x02", // 𤷰
+ 0x24df1: "\x04\x01\x03\x04\x01\x05\x01\x01\x02\x02\x05\x01\x01", // 𤷱
+ 0x24df2: "\x04\x01\x03\x04\x01\x05\x02\x01\x03\x01\x02\x03\x04", // 𤷲
+ 0x24df3: "\x04\x01\x03\x04\x01\x02\x05\x02\x01\x03\x02\x05\x01", // 𤷳
+ 0x24df4: "\x04\x01\x03\x04\x01\x03\x02\x04\x01\x03\x05\x03\x04", // 𤷴
+ 0x24df5: "\x04\x01\x03\x04\x01\x01\x02\x01\x05\x03\x02\x05\x04", // 𤷵
+ 0x24df6: "\x04\x01\x03\x04\x01\x01\x01\x02\x01\x03\x05\x03\x04", // 𤷶
+ 0x24df7: "\x04\x01\x03\x04\x01\x01\x01\x05\x02\x05\x02\x02\x01", // 𤷷
+ 0x24df8: "\x04\x01\x03\x04\x01\x03\x03\x05\x04\x04\x05\x02", // 𤷸
+ 0x24df9: "\x04\x01\x03\x04\x01\x04\x05\x04\x04\x03\x05\x05\x04", // 𤷹
+ 0x24dfa: "\x04\x01\x03\x04\x01\x03\x01\x01\x02\x01\x02\x01\x05\x04", // 𤷺
+ 0x24dfb: "\x04\x01\x03\x04\x01\x05\x05\x05\x03\x02\x05\x03\x04\x01", // 𤷻
+ 0x24dfc: "\x04\x01\x03\x04\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 𤷼
+ 0x24dfd: "\x04\x01\x03\x04\x01\x03\x04\x03\x04\x02\x05\x01\x05\x02", // 𤷽
+ 0x24dfe: "\x04\x01\x03\x04\x01\x01\x01\x03\x04\x03\x04\x03\x04\x05", // 𤷾
+ 0x24dff: "\x04\x01\x03\x04\x01\x04\x04\x05\x03\x05\x01\x03\x04\x04", // 𤷿
+ 0x24e00: "\x04\x01\x03\x04\x01\x05\x02\x01\x03\x04\x03\x05\x04\x01", // 𤸀
+ 0x24e01: "\x04\x01\x03\x04\x01\x05\x05\x01\x03\x05\x03\x03\x03\x04", // 𤸁
+ 0x24e02: "\x04\x01\x03\x04\x01\x01\x03\x02\x05\x02\x02\x01\x03\x04", // 𤸂
+ 0x24e03: "\x04\x01\x03\x04\x01\x04\x04\x05\x04\x03\x03\x04\x05\x04", // 𤸃
+ 0x24e04: "\x04\x01\x03\x04\x01\x02\x02\x05\x02\x02\x01\x02\x05\x03\x04", // 𤸄
+ 0x24e05: "\x04\x01\x03\x04\x01\x05\x01\x05\x01\x05\x02\x05\x01\x01", // 𤸅
+ 0x24e06: "\x04\x01\x03\x04\x01\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 𤸆
+ 0x24e07: "\x04\x01\x03\x04\x01\x03\x05\x04\x01\x03\x01\x01\x02\x01", // 𤸇
+ 0x24e08: "\x04\x01\x03\x04\x01\x04\x03\x01\x02\x05\x03\x04\x01\x01", // 𤸈
+ 0x24e09: "\x04\x01\x03\x04\x01\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 𤸉
+ 0x24e0a: "\x04\x01\x03\x04\x01\x05\x04\x02\x05\x01\x04\x05\x04\x04", // 𤸊
+ 0x24e0b: "\x04\x01\x03\x04\x01\x02\x05\x01\x01\x03\x04\x03\x02", // 𤸋
+ 0x24e0c: "\x04\x01\x03\x04\x01\x03\x04\x01\x02\x01\x01\x01\x05\x04", // 𤸌
+ 0x24e0d: "\x04\x01\x03\x04\x01\x03\x05\x04\x05\x05\x04\x02\x03\x04", // 𤸍
+ 0x24e0e: "\x04\x01\x03\x04\x01\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 𤸎
+ 0x24e0f: "\x04\x01\x03\x04\x01\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 𤸏
+ 0x24e10: "\x04\x01\x03\x04\x01\x03\x04\x04\x02\x05\x01\x01\x05\x04", // 𤸐
+ 0x24e11: "\x04\x01\x03\x04\x01\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 𤸑
+ 0x24e12: "\x04\x01\x03\x04\x01\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𤸒
+ 0x24e13: "\x04\x01\x03\x04\x01\x01\x05\x04\x01\x02\x01\x03\x01\x03\x04", // 𤸓
+ 0x24e14: "\x04\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 𤸔
+ 0x24e15: "\x04\x01\x03\x04\x01\x03\x01\x02\x01\x02\x01\x04\x05\x04", // 𤸕
+ 0x24e16: "\x04\x01\x03\x04\x01\x04\x01\x02\x05\x01\x03\x05\x03\x04", // 𤸖
+ 0x24e17: "\x04\x01\x03\x04\x01\x03\x02\x01\x02\x04\x01\x03\x04\x04", // 𤸗
+ 0x24e18: "\x04\x01\x03\x04\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𤸘
+ 0x24e19: "\x04\x01\x03\x04\x01\x01\x03\x04\x04\x02\x05\x02\x02\x01", // 𤸙
+ 0x24e1a: "\x04\x01\x03\x04\x01\x01\x01\x02\x01\x05\x05\x04\x01\x04", // 𤸚
+ 0x24e1b: "\x04\x01\x03\x04\x01\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 𤸛
+ 0x24e1c: "\x04\x01\x03\x04\x01\x04\x03\x01\x01\x01\x03\x04\x03\x02", // 𤸜
+ 0x24e1d: "\x04\x01\x03\x04\x01\x05\x04\x02\x05\x01\x01\x02\x05\x03", // 𤸝
+ 0x24e1e: "\x04\x01\x03\x04\x01\x01\x01\x01\x02\x05\x03\x01\x03\x02", // 𤸞
+ 0x24e1f: "\x04\x01\x03\x04\x01\x01\x02\x01\x01\x02\x01\x01\x02\x04", // 𤸟
+ 0x24e20: "\x04\x01\x03\x04\x01\x01\x02\x01\x02\x02\x05\x01\x02\x01", // 𤸠
+ 0x24e21: "\x04\x01\x03\x04\x01\x01\x02\x02\x02\x05\x01\x03\x04", // 𤸡
+ 0x24e22: "\x04\x01\x03\x04\x01\x02\x05\x02\x02\x05\x02\x02\x05\x02", // 𤸢
+ 0x24e23: "\x04\x01\x03\x04\x01\x03\x01\x02\x01\x02\x02\x01\x05\x02", // 𤸣
+ 0x24e24: "\x04\x01\x03\x04\x01\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𤸤
+ 0x24e25: "\x04\x01\x03\x04\x01\x04\x01\x02\x05\x01\x04\x05\x01\x02", // 𤸥
+ 0x24e26: "\x04\x01\x03\x04\x01\x05\x02\x01\x05\x02\x01\x05\x02\x01", // 𤸦
+ 0x24e27: "\x04\x01\x03\x04\x01\x04\x04\x05\x01\x02\x05\x01\x01\x01", // 𤸧
+ 0x24e28: "\x04\x01\x03\x04\x01\x03\x04\x01\x05\x03\x04\x02\x03\x04", // 𤸨
+ 0x24e29: "\x04\x01\x03\x04\x01\x03\x05\x02\x05\x01\x03\x05\x05\x03", // 𤸩
+ 0x24e2a: "\x04\x01\x03\x04\x01\x01\x01\x01\x02\x05\x03\x03\x01\x01\x02", // 𤸪
+ 0x24e2b: "\x04\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𤸫
+ 0x24e2c: "\x04\x01\x03\x04\x01\x04\x01\x02\x05\x01\x01\x03\x05\x03\x04", // 𤸬
+ 0x24e2d: "\x04\x01\x03\x04\x01\x03\x03\x02\x01\x02\x01\x02\x01\x03\x04", // 𤸭
+ 0x24e2e: "\x04\x01\x03\x04\x01\x05\x01\x03\x02\x04\x03\x03\x05\x04\x01", // 𤸮
+ 0x24e2f: "\x04\x01\x03\x04\x01\x05\x04\x05\x04\x05\x04\x01\x02\x03\x04", // 𤸯
+ 0x24e30: "\x04\x01\x03\x04\x01\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𤸰
+ 0x24e31: "\x04\x01\x03\x04\x01\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 𤸱
+ 0x24e32: "\x04\x01\x03\x04\x01\x05\x02\x05\x03\x04\x01\x04\x04\x04\x04", // 𤸲
+ 0x24e33: "\x04\x01\x03\x04\x01\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 𤸳
+ 0x24e34: "\x04\x01\x03\x04\x01\x01\x02\x04\x05\x05\x05\x04\x02\x03\x04", // 𤸴
+ 0x24e35: "\x04\x01\x03\x04\x01\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 𤸵
+ 0x24e36: "\x04\x01\x03\x04\x01\x01\x02\x02\x01\x03\x03\x05\x01\x01\x02", // 𤸶
+ 0x24e37: "\x04\x01\x03\x04\x01\x05\x01\x01\x03\x02\x05\x01\x02\x05\x02", // 𤸷
+ 0x24e38: "\x04\x01\x03\x04\x01\x04\x03\x01\x03\x04\x02\x05\x02\x02\x01", // 𤸸
+ 0x24e39: "\x04\x01\x03\x04\x01\x04\x03\x03\x04\x04\x03\x03\x04\x02\x02", // 𤸹
+ 0x24e3a: "\x04\x01\x03\x04\x01\x04\x01\x05\x03\x03\x04\x03\x05\x03\x04", // 𤸺
+ 0x24e3b: "\x04\x01\x03\x04\x01\x05\x03\x01\x05\x04\x03\x01\x01\x02", // 𤸻
+ 0x24e3c: "\x04\x01\x03\x04\x01\x03\x02\x05\x01\x01\x05\x04\x04\x04\x04", // 𤸼
+ 0x24e3d: "\x04\x01\x03\x04\x01\x04\x03\x01\x02\x03\x04\x04\x05\x04\x04", // 𤸽
+ 0x24e3e: "\x04\x01\x03\x04\x01\x05\x04\x05\x04\x05\x04\x03\x05\x04\x01", // 𤸾
+ 0x24e3f: "\x04\x01\x03\x04\x01\x05\x02\x02\x05\x02\x03\x05\x05\x04\x05", // 𤸿
+ 0x24e40: "\x04\x01\x03\x04\x01\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 𤹀
+ 0x24e41: "\x04\x01\x03\x04\x01\x02\x05\x01\x03\x05\x03\x03\x03\x04\x01", // 𤹁
+ 0x24e42: "\x04\x01\x03\x04\x01\x04\x03\x01\x01\x02\x01\x04\x04\x04\x04", // 𤹂
+ 0x24e43: "\x04\x01\x03\x04\x01\x01\x03\x04\x04\x03\x02\x05\x01\x01\x05", // 𤹃
+ 0x24e44: "\x04\x01\x03\x04\x01\x02\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 𤹄
+ 0x24e45: "\x04\x01\x03\x04\x01\x05\x05\x04\x05\x05\x04\x01\x02\x03\x04", // 𤹅
+ 0x24e46: "\x04\x01\x03\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𤹆
+ 0x24e47: "\x04\x01\x03\x04\x01\x03\x01\x02\x03\x04\x05\x04\x02\x05\x01", // 𤹇
+ 0x24e48: "\x04\x01\x03\x04\x01\x01\x02\x03\x04\x01\x02\x03\x04\x03\x05", // 𤹈
+ 0x24e49: "\x04\x01\x03\x04\x01\x01\x03\x02\x05\x01\x01\x01\x03\x05\x04", // 𤹉
+ 0x24e4a: "\x04\x01\x03\x04\x01\x02\x03\x04\x03\x02\x05\x01\x02\x01\x04", // 𤹊
+ 0x24e4b: "\x04\x01\x03\x04\x01\x03\x01\x02\x03\x04\x05\x01\x05\x01\x05", // 𤹋
+ 0x24e4c: "\x04\x01\x03\x04\x01\x03\x02\x05\x01\x05\x01\x01\x02\x05\x02", // 𤹌
+ 0x24e4d: "\x04\x01\x03\x04\x01\x05\x04\x03\x05\x04\x01\x01\x05\x01\x05", // 𤹍
+ 0x24e4e: "\x04\x01\x03\x04\x01\x05\x05\x04\x05\x05\x04\x04\x04\x04\x04", // 𤹎
+ 0x24e4f: "\x04\x01\x03\x04\x01\x05\x05\x04\x05\x05\x04\x04\x05\x04\x04", // 𤹏
+ 0x24e50: "\x04\x01\x03\x04\x01\x01\x03\x05\x04\x02\x02\x04\x04\x04\x04", // 𤹐
+ 0x24e51: "\x04\x01\x03\x04\x01\x03\x02\x03\x04\x04\x05\x04\x05\x04\x04", // 𤹑
+ 0x24e52: "\x04\x01\x03\x04\x01\x04\x05\x02\x03\x04\x01\x02\x01\x05\x04", // 𤹒
+ 0x24e53: "\x04\x01\x03\x04\x01\x05\x01\x01\x03\x02\x05\x01\x05\x02", // 𤹓
+ 0x24e54: "\x04\x01\x03\x04\x01\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03", // 𤹔
+ 0x24e55: "\x04\x01\x03\x04\x01\x02\x05\x01\x03\x04\x01\x04\x05\x04\x04", // 𤹕
+ 0x24e56: "\x04\x01\x03\x04\x01\x01\x02\x05\x01\x01\x01\x02\x01\x01\x02", // 𤹖
+ 0x24e57: "\x04\x01\x03\x04\x01\x03\x04\x05\x04\x05\x04\x01\x05\x04\x01", // 𤹗
+ 0x24e58: "\x04\x01\x03\x04\x01\x01\x03\x01\x01\x05\x03\x04\x01\x02\x04", // 𤹘
+ 0x24e59: "\x04\x01\x03\x04\x01\x04\x05\x02\x04\x02\x05\x01\x03\x05", // 𤹙
+ 0x24e5a: "\x04\x01\x03\x04\x01\x01\x02\x02\x01\x01\x01\x01\x05\x03\x04", // 𤹚
+ 0x24e5b: "\x04\x01\x03\x04\x01\x01\x02\x02\x01\x01\x01\x04\x05\x04\x04", // 𤹛
+ 0x24e5c: "\x04\x01\x03\x04\x01\x04\x04\x05\x02\x05\x01\x03\x02\x05\x01", // 𤹜
+ 0x24e5d: "\x04\x01\x03\x04\x01\x02\x05\x01\x01\x01\x02\x02\x01\x01\x02", // 𤹝
+ 0x24e5e: "\x04\x01\x03\x04\x01\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01", // 𤹞
+ 0x24e5f: "\x04\x01\x03\x04\x01\x04\x01\x04\x03\x02\x05\x03\x05\x02\x05\x01", // 𤹟
+ 0x24e60: "\x04\x01\x03\x04\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𤹠
+ 0x24e61: "\x04\x01\x03\x04\x01\x01\x02\x05\x03\x01\x05\x02\x05\x01\x01\x01", // 𤹡
+ 0x24e62: "\x04\x01\x03\x04\x01\x02\x01\x01\x01\x05\x01\x03\x02\x05\x02\x02", // 𤹢
+ 0x24e63: "\x04\x01\x03\x04\x01\x02\x01\x05\x03\x01\x05\x03\x04\x03\x01\x02", // 𤹣
+ 0x24e64: "\x04\x01\x03\x04\x01\x04\x03\x01\x01\x03\x04\x02\x04\x01\x03\x04", // 𤹤
+ 0x24e65: "\x04\x01\x03\x04\x01\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04", // 𤹥
+ 0x24e66: "\x04\x01\x03\x04\x01\x02\x05\x01\x04\x01\x02\x05\x02\x05\x01\x01", // 𤹦
+ 0x24e67: "\x04\x01\x03\x04\x01\x04\x05\x04\x04\x02\x05\x02\x02\x01\x01\x02", // 𤹧
+ 0x24e68: "\x04\x01\x03\x04\x01\x01\x02\x05\x01\x01\x01\x02\x04\x05\x05\x04", // 𤹨
+ 0x24e69: "\x04\x01\x03\x04\x01\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𤹩
+ 0x24e6a: "\x04\x01\x03\x04\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 𤹪
+ 0x24e6b: "\x04\x01\x03\x04\x01\x03\x01\x02\x05\x01\x02\x05\x01\x03\x05\x04", // 𤹫
+ 0x24e6c: "\x04\x01\x03\x04\x01\x03\x03\x02\x02\x05\x01\x01\x01\x01\x02\x04", // 𤹬
+ 0x24e6d: "\x04\x01\x03\x04\x01\x05\x04\x01\x05\x04\x01\x03\x04\x02\x03\x04", // 𤹭
+ 0x24e6e: "\x04\x01\x03\x04\x01\x05\x04\x05\x04\x05\x04\x03\x04\x02\x03\x04", // 𤹮
+ 0x24e6f: "\x04\x01\x03\x04\x01\x05\x04\x02\x05\x01\x01\x02\x04\x05\x04\x04", // 𤹯
+ 0x24e70: "\x04\x01\x03\x04\x01\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x02", // 𤹰
+ 0x24e71: "\x04\x01\x03\x04\x01\x01\x02\x01\x01\x01\x05\x04\x05\x01\x05\x04", // 𤹱
+ 0x24e72: "\x04\x01\x03\x04\x01\x01\x02\x02\x01\x03\x04\x02\x05\x01\x02\x01", // 𤹲
+ 0x24e73: "\x04\x01\x03\x04\x01\x01\x02\x03\x04\x01\x02\x03\x04\x02\x05\x02", // 𤹳
+ 0x24e74: "\x04\x01\x03\x04\x01\x01\x02\x03\x05\x01\x02\x03\x05\x05\x03\x01", // 𤹴
+ 0x24e75: "\x04\x01\x03\x04\x01\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04", // 𤹵
+ 0x24e76: "\x04\x01\x03\x04\x01\x01\x02\x05\x02\x04\x01\x03\x04\x01\x03\x04", // 𤹶
+ 0x24e77: "\x04\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𤹷
+ 0x24e78: "\x04\x01\x03\x04\x01\x03\x05\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 𤹸
+ 0x24e79: "\x04\x01\x03\x04\x01\x03\x05\x02\x05\x02\x02\x01\x01\x02\x05\x04", // 𤹹
+ 0x24e7a: "\x04\x01\x03\x04\x01\x04\x03\x01\x01\x02\x01\x02\x05\x02\x02\x01", // 𤹺
+ 0x24e7b: "\x04\x01\x03\x04\x01\x05\x05\x05\x02\x01\x02\x01\x02\x01\x02\x01", // 𤹻
+ 0x24e7c: "\x04\x01\x03\x04\x01\x02\x01\x05\x03\x01\x05\x03\x05\x03\x03\x03", // 𤹼
+ 0x24e7d: "\x04\x01\x03\x04\x01\x04\x01\x01\x01\x02\x05\x01\x02\x05\x03\x04", // 𤹽
+ 0x24e7e: "\x04\x01\x03\x04\x01\x02\x05\x01\x01\x03\x01\x05\x05\x04\x01\x04", // 𤹾
+ 0x24e7f: "\x04\x01\x03\x04\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𤹿
+ 0x24e80: "\x04\x01\x03\x04\x01\x04\x01\x04\x03\x01\x04\x01\x03\x05\x03\x04", // 𤺀
+ 0x24e81: "\x04\x01\x03\x04\x01\x02\x05\x01\x01\x01\x03\x05\x05\x03\x04", // 𤺁
+ 0x24e82: "\x04\x01\x03\x04\x01\x01\x03\x04\x04\x03\x02\x05\x01\x01\x03\x04", // 𤺂
+ 0x24e83: "\x04\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x04\x01\x03\x04\x01\x02", // 𤺃
+ 0x24e84: "\x04\x01\x03\x04\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𤺄
+ 0x24e85: "\x04\x01\x03\x04\x01\x05\x02\x02\x05\x02\x01\x01\x02\x03\x04\x05\x04", // 𤺅
+ 0x24e86: "\x04\x01\x03\x04\x01\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 𤺆
+ 0x24e87: "\x04\x01\x03\x04\x01\x03\x03\x02\x03\x05\x01\x03\x02\x05\x01\x02\x02", // 𤺇
+ 0x24e88: "\x04\x01\x03\x04\x01\x05\x01\x03\x01\x02\x01\x03\x02\x05\x01\x01", // 𤺈
+ 0x24e89: "\x04\x01\x03\x04\x01\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04", // 𤺉
+ 0x24e8a: "\x04\x01\x03\x04\x01\x01\x02\x02\x01\x01\x01\x03\x04\x03\x03\x01\x02", // 𤺊
+ 0x24e8b: "\x04\x01\x03\x04\x01\x01\x02\x05\x01\x01\x01\x02\x03\x04\x03\x03\x03", // 𤺋
+ 0x24e8c: "\x04\x01\x03\x04\x01\x05\x04\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 𤺌
+ 0x24e8d: "\x04\x01\x03\x04\x01\x01\x02\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 𤺍
+ 0x24e8e: "\x04\x01\x03\x04\x01\x03\x02\x01\x05\x01\x01\x03\x05\x04\x04\x04\x04", // 𤺎
+ 0x24e8f: "\x04\x01\x03\x04\x01\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 𤺏
+ 0x24e90: "\x04\x01\x03\x04\x01\x03\x05\x03\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 𤺐
+ 0x24e91: "\x04\x01\x03\x04\x01\x05\x04\x05\x04\x05\x04\x03\x04\x02\x04\x04\x04", // 𤺑
+ 0x24e92: "\x04\x01\x03\x04\x01\x02\x01\x02\x01\x01\x05\x04\x01\x01\x01\x02\x05\x01", // 𤺒
+ 0x24e93: "\x04\x01\x03\x04\x01\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04", // 𤺓
+ 0x24e94: "\x04\x01\x03\x04\x01\x01\x02\x02\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 𤺔
+ 0x24e95: "\x04\x01\x03\x04\x01\x05\x01\x05\x03\x02\x02\x05\x01\x01\x01\x03\x04", // 𤺕
+ 0x24e96: "\x04\x01\x03\x04\x01\x05\x01\x01\x02\x02\x05\x01\x01\x04\x01\x03\x04", // 𤺖
+ 0x24e97: "\x04\x01\x03\x04\x01\x01\x03\x04\x03\x03\x04\x04\x03\x03\x04\x02\x02", // 𤺗
+ 0x24e98: "\x04\x01\x03\x04\x01\x01\x02\x01\x05\x05\x01\x02\x01\x03\x05\x03\x04", // 𤺘
+ 0x24e99: "\x04\x01\x03\x04\x01\x02\x01\x02\x01\x02\x01\x02\x01\x02\x01\x02\x01", // 𤺙
+ 0x24e9a: "\x04\x01\x03\x04\x01\x01\x01\x01\x02\x05\x03\x05\x05\x04\x02\x03\x04", // 𤺚
+ 0x24e9b: "\x04\x01\x03\x04\x01\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04", // 𤺛
+ 0x24e9c: "\x04\x01\x03\x04\x01\x05\x01\x05\x01\x02\x01\x02\x01\x02\x05\x01", // 𤺜
+ 0x24e9d: "\x04\x01\x03\x04\x01\x02\x01\x05\x03\x01\x05\x03\x05\x01\x03\x05", // 𤺝
+ 0x24e9e: "\x04\x01\x03\x04\x01\x02\x01\x05\x03\x01\x05\x02\x02\x04\x03\x01", // 𤺞
+ 0x24e9f: "\x04\x01\x03\x04\x01\x05\x04\x01\x05\x04\x01\x03\x04\x02\x04\x04\x04", // 𤺟
+ 0x24ea0: "\x04\x01\x03\x04\x01\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x02", // 𤺠
+ 0x24ea1: "\x04\x01\x03\x04\x01\x01\x02\x05\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 𤺡
+ 0x24ea2: "\x04\x01\x03\x04\x01\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04", // 𤺢
+ 0x24ea3: "\x04\x01\x03\x04\x01\x01\x02\x03\x04\x01\x02\x03\x04\x04\x04\x04\x04", // 𤺣
+ 0x24ea4: "\x04\x01\x03\x04\x01\x01\x03\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04", // 𤺤
+ 0x24ea5: "\x04\x01\x03\x04\x01\x03\x01\x04\x03\x01\x04\x03\x04\x01\x02\x05\x01", // 𤺥
+ 0x24ea6: "\x04\x01\x03\x04\x01\x04\x03\x01\x01\x03\x04\x01\x02\x01\x02\x05\x01", // 𤺦
+ 0x24ea7: "\x04\x01\x03\x04\x01\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𤺧
+ 0x24ea8: "\x04\x01\x03\x04\x01\x03\x04\x01\x05\x01\x01\x03\x02\x05\x01\x02\x02", // 𤺨
+ 0x24ea9: "\x04\x01\x03\x04\x01\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04\x05\x03", // 𤺩
+ 0x24eaa: "\x04\x01\x03\x04\x01\x04\x03\x01\x01\x01\x02\x04\x03\x01\x02\x05\x01", // 𤺪
+ 0x24eab: "\x04\x01\x03\x04\x01\x04\x05\x04\x04\x04\x05\x04\x04\x04\x05\x04\x04", // 𤺫
+ 0x24eac: "\x04\x01\x03\x04\x01\x01\x02\x01\x02\x05\x01\x04\x03\x01\x03\x03\x03", // 𤺬
+ 0x24ead: "\x04\x01\x03\x04\x01\x03\x01\x04\x03\x01\x04\x05\x01\x01\x01\x01\x02", // 𤺭
+ 0x24eae: "\x04\x01\x03\x04\x01\x04\x05\x01\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 𤺮
+ 0x24eaf: "\x04\x01\x03\x04\x01\x05\x01\x01\x02\x02\x05\x01\x01\x04\x05\x04\x04", // 𤺯
+ 0x24eb0: "\x04\x01\x03\x04\x01\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x03\x04", // 𤺰
+ 0x24eb1: "\x04\x01\x03\x04\x01\x03\x05\x04\x04\x01\x03\x04\x04\x04\x04\x04\x04", // 𤺱
+ 0x24eb2: "\x04\x01\x03\x04\x01\x02\x04\x03\x02\x05\x02\x05\x01\x03\x01\x03\x04", // 𤺲
+ 0x24eb3: "\x04\x01\x03\x04\x01\x05\x01\x03\x02\x04\x01\x03\x04\x03\x01\x01\x02", // 𤺳
+ 0x24eb4: "\x04\x01\x03\x04\x01\x01\x02\x01\x04\x03\x01\x01\x02\x05\x02\x05\x04", // 𤺴
+ 0x24eb5: "\x04\x01\x03\x04\x01\x02\x05\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 𤺵
+ 0x24eb6: "\x04\x01\x03\x04\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x04", // 𤺶
+ 0x24eb7: "\x04\x01\x03\x04\x01\x01\x02\x03\x04\x05\x02\x02\x05\x01\x05\x04\x01", // 𤺷
+ 0x24eb8: "\x04\x01\x03\x04\x01\x03\x05\x03\x02\x05\x01\x02\x01\x01\x05\x03\x04", // 𤺸
+ 0x24eb9: "\x04\x01\x03\x04\x01\x05\x02\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 𤺹
+ 0x24eba: "\x04\x01\x03\x04\x01\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 𤺺
+ 0x24ebb: "\x04\x01\x03\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x02\x05", // 𤺻
+ 0x24ebc: "\x04\x01\x03\x04\x01\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03\x05\x03", // 𤺼
+ 0x24ebd: "\x04\x01\x03\x04\x01\x05\x01\x01\x03\x02\x05\x01\x04\x03\x01\x01\x01\x02", // 𤺽
+ 0x24ebe: "\x04\x01\x03\x04\x01\x03\x02\x05\x03\x04\x03\x01\x02\x03\x04\x01\x03\x04", // 𤺾
+ 0x24ebf: "\x04\x01\x03\x04\x01\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x05\x03", // 𤺿
+ 0x24ec0: "\x04\x01\x03\x04\x01\x02\x01\x02\x01\x01\x03\x01\x02\x03\x03\x05\x03\x04", // 𤻀
+ 0x24ec1: "\x04\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x04\x01\x04\x03\x01\x01\x02", // 𤻁
+ 0x24ec2: "\x04\x01\x03\x04\x01\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 𤻂
+ 0x24ec3: "\x04\x01\x03\x04\x01\x02\x05\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 𤻃
+ 0x24ec4: "\x04\x01\x03\x04\x01\x04\x03\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 𤻄
+ 0x24ec5: "\x04\x01\x03\x04\x01\x03\x04\x04\x03\x04\x05\x04\x05\x04\x04\x03\x05\x04", // 𤻅
+ 0x24ec6: "\x04\x01\x03\x04\x01\x01\x01\x03\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𤻆
+ 0x24ec7: "\x04\x01\x03\x04\x01\x01\x02\x03\x04\x01\x02\x03\x04\x05\x02\x01\x03\x04", // 𤻇
+ 0x24ec8: "\x04\x01\x03\x04\x01\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 𤻈
+ 0x24ec9: "\x04\x01\x03\x04\x01\x03\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𤻉
+ 0x24eca: "\x04\x01\x03\x04\x01\x03\x01\x02\x03\x04\x03\x05\x01\x03\x02\x05\x03\x04", // 𤻊
+ 0x24ecb: "\x04\x01\x03\x04\x01\x02\x05\x01\x01\x01\x03\x04\x01\x02\x05\x01\x02\x02", // 𤻋
+ 0x24ecc: "\x04\x01\x03\x04\x01\x02\x05\x05\x02\x05\x02\x05\x01\x04\x05\x04", // 𤻌
+ 0x24ecd: "\x04\x01\x03\x04\x01\x03\x04\x01\x03\x05\x01\x01\x02\x02\x03\x05\x03\x04", // 𤻍
+ 0x24ece: "\x04\x01\x03\x04\x01\x01\x02\x03\x04\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 𤻎
+ 0x24ecf: "\x04\x01\x03\x04\x01\x03\x02\x01\x05\x01\x01\x01\x02\x01\x03\x05\x05\x04", // 𤻏
+ 0x24ed0: "\x04\x01\x03\x04\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05\x03\x04", // 𤻐
+ 0x24ed1: "\x04\x01\x03\x04\x01\x04\x01\x03\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 𤻑
+ 0x24ed2: "\x04\x01\x03\x04\x01\x01\x03\x02\x05\x01\x04\x01\x03\x04\x03\x04\x01\x02", // 𤻒
+ 0x24ed3: "\x01\x02\x02\x01\x01\x01\x03\x04\x04\x01\x03\x04\x01\x01\x02\x05\x03\x04", // 𤻓
+ 0x24ed4: "\x04\x01\x03\x04\x01\x01\x02\x02\x01\x02\x01\x03\x02\x05\x01\x01", // 𤻔
+ 0x24ed5: "\x04\x01\x03\x04\x01\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𤻕
+ 0x24ed6: "\x04\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02", // 𤻖
+ 0x24ed7: "\x04\x01\x03\x04\x01\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x04\x04\x04\x04", // 𤻗
+ 0x24ed8: "\x04\x01\x03\x04\x01\x03\x04\x04\x03\x01\x02\x01\x05\x01\x01\x04\x05\x04\x04", // 𤻘
+ 0x24ed9: "\x04\x01\x03\x04\x01\x02\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𤻙
+ 0x24eda: "\x04\x01\x03\x04\x01\x01\x02\x03\x05\x01\x02\x03\x05\x02\x05\x03\x04\x03\x04", // 𤻚
+ 0x24edb: "\x04\x01\x03\x04\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03\x04", // 𤻛
+ 0x24edc: "\x04\x01\x03\x04\x01\x01\x02\x01\x02\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 𤻜
+ 0x24edd: "\x04\x01\x03\x04\x01\x04\x04\x05\x04\x05\x04\x04\x02\x05\x02\x02\x01\x01\x02", // 𤻝
+ 0x24ede: "\x04\x01\x03\x04\x01\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𤻞
+ 0x24edf: "\x04\x01\x03\x04\x01\x01\x02\x02\x02\x05\x02\x02\x01\x04\x05\x03\x05\x04", // 𤻟
+ 0x24ee0: "\x04\x01\x03\x04\x01\x01\x02\x02\x01\x03\x04\x03\x04\x02\x05\x01\x02\x01\x04", // 𤻠
+ 0x24ee1: "\x04\x01\x03\x04\x01\x01\x02\x01\x02\x05\x01\x04\x05\x01\x05\x04\x01\x02\x01", // 𤻡
+ 0x24ee2: "\x04\x01\x03\x04\x01\x01\x03\x01\x01\x03\x04\x05\x03\x05\x02\x05\x01\x05\x04", // 𤻢
+ 0x24ee3: "\x04\x01\x03\x04\x01\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x02\x05\x01\x01", // 𤻣
+ 0x24ee4: "\x04\x01\x03\x04\x01\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 𤻤
+ 0x24ee5: "\x04\x01\x03\x04\x01\x03\x01\x04\x03\x01\x04\x04\x04\x05\x02\x05\x01\x05\x01", // 𤻥
+ 0x24ee6: "\x04\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x04\x05\x04\x04\x01\x05\x03\x04", // 𤻦
+ 0x24ee7: "\x04\x01\x03\x04\x01\x03\x03\x05\x04\x01\x04\x03\x05\x05\x04\x01\x02\x03\x04", // 𤻧
+ 0x24ee8: "\x04\x01\x03\x04\x01\x04\x01\x04\x03\x01\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 𤻨
+ 0x24ee9: "\x04\x01\x03\x04\x01\x05\x04\x02\x05\x01\x01\x03\x05\x03\x05\x04\x04\x04\x04", // 𤻩
+ 0x24eea: "\x04\x01\x03\x04\x01\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02", // 𤻪
+ 0x24eeb: "\x04\x01\x03\x04\x01\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x01\x02\x04", // 𤻫
+ 0x24eec: "\x04\x01\x03\x04\x01\x04\x01\x04\x03\x01\x01\x03\x01\x02\x05\x01\x02\x03\x04", // 𤻬
+ 0x24eed: "\x04\x01\x03\x04\x01\x04\x01\x01\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01", // 𤻭
+ 0x24eee: "\x04\x01\x03\x04\x01\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01\x04\x05\x04\x04", // 𤻮
+ 0x24eef: "\x04\x01\x03\x04\x01\x03\x02\x01\x01\x05\x01\x01\x01\x03\x05\x05\x03\x04", // 𤻯
+ 0x24ef0: "\x04\x01\x03\x04\x01\x01\x02\x02\x01\x02\x01\x03\x04\x04\x02\x05\x01\x01\x05\x04", // 𤻰
+ 0x24ef1: "\x04\x01\x03\x04\x01\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 𤻱
+ 0x24ef2: "\x04\x01\x03\x04\x01\x03\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x03\x04", // 𤻲
+ 0x24ef3: "\x04\x01\x03\x04\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01", // 𤻳
+ 0x24ef4: "\x04\x01\x03\x04\x01\x03\x05\x04\x01\x04\x03\x01\x01\x03\x04\x02\x04\x01\x03\x04", // 𤻴
+ 0x24ef5: "\x04\x01\x03\x04\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x01\x05\x03\x04", // 𤻵
+ 0x24ef6: "\x04\x01\x03\x04\x01\x05\x05\x04\x04\x04\x04\x03\x05\x01\x03\x02\x05\x01\x02\x02", // 𤻶
+ 0x24ef7: "\x04\x01\x03\x04\x01\x03\x03\x05\x04\x01\x04\x03\x05\x05\x04\x02\x05\x02\x02\x01", // 𤻷
+ 0x24ef8: "\x04\x01\x03\x04\x01\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x03\x01\x02\x01", // 𤻸
+ 0x24ef9: "\x04\x01\x03\x04\x01\x01\x02\x01\x02\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x04", // 𤻹
+ 0x24efa: "\x04\x01\x03\x04\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01\x03\x01\x03\x04", // 𤻺
+ 0x24efb: "\x04\x01\x03\x04\x01\x01\x02\x02\x02\x05\x02\x02\x01\x01\x03\x04\x05\x03\x04", // 𤻻
+ 0x24efc: "\x04\x01\x03\x04\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01", // 𤻼
+ 0x24efd: "\x04\x01\x03\x04\x01\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𤻽
+ 0x24efe: "\x04\x01\x03\x04\x01\x05\x01\x05\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 𤻾
+ 0x24eff: "\x04\x01\x03\x04\x01\x05\x01\x01\x05\x04\x01\x05\x03\x05\x01\x02\x03\x04", // 𤻿
+ 0x24f00: "\x04\x01\x03\x04\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x02\x03\x04", // 𤼀
+ 0x24f01: "\x04\x01\x03\x04\x01\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x02\x05\x01\x01\x01", // 𤼁
+ 0x24f02: "\x04\x01\x03\x04\x01\x04\x04\x05\x03\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x04\x04", // 𤼂
+ 0x24f03: "\x04\x01\x03\x04\x01\x04\x01\x04\x03\x01\x03\x05\x04\x01\x01\x05\x01\x05\x01\x01\x01", // 𤼃
+ 0x24f04: "\x04\x01\x03\x04\x01\x03\x02\x01\x01\x01\x02\x05\x03\x04\x05\x01\x01\x04\x01\x03\x04", // 𤼄
+ 0x24f05: "\x04\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x01\x03\x04\x04\x02\x05\x01\x02\x05\x01", // 𤼅
+ 0x24f06: "\x04\x01\x03\x04\x01\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04\x05\x05\x04\x02\x03\x04", // 𤼆
+ 0x24f07: "\x04\x01\x03\x04\x01\x01\x02\x02\x01\x03\x04\x01\x02\x05\x01\x02\x02\x01\x03\x04\x04", // 𤼇
+ 0x24f08: "\x04\x01\x03\x04\x01\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x01\x03\x04", // 𤼈
+ 0x24f09: "\x04\x01\x03\x04\x01\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04\x04\x05\x04\x04", // 𤼉
+ 0x24f0a: "\x04\x01\x03\x04\x01\x03\x02\x01\x05\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𤼊
+ 0x24f0b: "\x04\x01\x03\x04\x01\x03\x04\x03\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 𤼋
+ 0x24f0c: "\x04\x01\x03\x04\x01\x05\x04\x01\x05\x04\x01\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 𤼌
+ 0x24f0d: "\x04\x01\x03\x04\x01\x01\x02\x03\x04\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x01", // 𤼍
+ 0x24f0e: "\x04\x01\x03\x04\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x02\x05\x02\x02\x01", // 𤼎
+ 0x24f0f: "\x04\x01\x03\x04\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x03\x05\x03\x04", // 𤼏
+ 0x24f10: "\x04\x01\x03\x04\x01\x02\x01\x02\x01\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𤼐
+ 0x24f11: "\x04\x01\x03\x04\x01\x01\x02\x03\x04\x01\x02\x03\x04\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01", // 𤼑
+ 0x24f12: "\x04\x01\x03\x04\x01\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x03\x05\x02\x05\x01", // 𤼒
+ 0x24f13: "\x04\x01\x03\x04\x01\x01\x02\x02\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01", // 𤼓
+ 0x24f14: "\x04\x01\x03\x04\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x04\x04\x05\x04\x05\x04\x04", // 𤼔
+ 0x24f15: "\x04\x01\x03\x04\x01\x01\x02\x02\x01\x01\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05\x03\x04", // 𤼕
+ 0x24f16: "\x04\x01\x03\x04\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𤼖
+ 0x24f17: "\x04\x01\x03\x04\x01\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x02\x05\x01\x02\x01\x03\x04", // 𤼗
+ 0x24f18: "\x04\x01\x03\x04\x01\x04\x01\x05\x02\x05\x01\x03\x05\x04\x01\x04\x03\x01\x01\x01\x02\x03\x05\x04", // 𤼘
+ 0x24f19: "\x04\x01\x03\x04\x01\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04", // 𤼙
+ 0x24f1a: "\x04\x01\x03\x04\x01\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𤼚
+ 0x24f1b: "\x04\x01\x03\x04\x01\x05\x04\x02\x05\x01\x01\x03\x05\x03\x05\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 𤼛
+ 0x24f1c: "\x04\x01\x03\x04\x01\x03\x02\x05\x01\x01\x03\x01\x02\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𤼜
+ 0x24f1d: "\x04\x01\x03\x04\x01\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x01\x03\x01\x01\x05\x03\x04", // 𤼝
+ 0x24f1e: "\x04\x01\x03\x04\x01\x03\x02\x01\x05\x01\x01\x02\x05\x04\x01\x02\x02\x04\x01\x05\x03\x03\x04", // 𤼞
+ 0x24f1f: "\x04\x01\x03\x04\x01\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𤼟
+ 0x24f20: "\x04\x01\x03\x04\x01\x05\x05\x01\x03\x05\x03\x03\x03\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𤼠
+ 0x24f21: "\x04\x01\x03\x04\x01\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𤼡
+ 0x24f22: "\x04\x01\x03\x04\x01\x02\x01\x02\x01\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x05\x03\x04", // 𤼢
+ 0x24f23: "\x04\x01\x03\x04\x01\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x04\x05\x04\x04", // 𤼣
+ 0x24f24: "\x04\x01\x03\x04\x01\x02\x05\x02\x02\x01\x01\x03\x04\x02\x05\x02\x02\x01\x01\x03\x04\x02\x05\x02\x02\x01\x01\x03\x04", // 𤼤
+ 0x24f25: "\x05\x04\x03\x03\x04\x05\x05", // 𤼥
+ 0x24f26: "\x05\x04\x03\x03\x04\x05\x04", // 𤼦
+ 0x24f27: "\x05\x04\x03\x03\x04\x02\x01\x05\x04", // 𤼧
+ 0x24f28: "\x05\x04\x03\x03\x04\x01\x02\x03\x04", // 𤼨
+ 0x24f29: "\x05\x04\x03\x03\x04\x03\x01\x01\x03\x04", // 𤼩
+ 0x24f2a: "\x05\x04\x03\x03\x04\x05\x04\x01\x03\x02", // 𤼪
+ 0x24f2b: "\x05\x04\x03\x03\x04\x05\x04\x01\x03\x05", // 𤼫
+ 0x24f2c: "\x05\x04\x03\x03\x04\x02\x01\x02\x01\x05\x04", // 𤼬
+ 0x24f2d: "\x05\x04\x03\x03\x04\x02\x05\x01\x02\x01\x04", // 𤼭
+ 0x24f2e: "\x05\x04\x03\x03\x04\x03\x04\x04\x03\x01\x05", // 𤼮
+ 0x24f2f: "\x05\x04\x03\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 𤼯
+ 0x24f30: "\x05\x04\x03\x03\x04\x05\x01\x05\x02\x05\x01\x01", // 𤼰
+ 0x24f31: "\x01\x02\x01\x02\x05\x04\x03\x03\x04\x03\x05\x04", // 𤼱
+ 0x24f32: "\x05\x04\x03\x03\x04\x05\x01\x05\x03\x01\x03\x04", // 𤼲
+ 0x24f33: "\x05\x04\x03\x03\x04\x01\x02\x01\x03\x04\x01\x01\x02", // 𤼳
+ 0x24f34: "\x05\x04\x03\x03\x04\x01\x02\x01\x05\x04\x01\x03\x02", // 𤼴
+ 0x24f35: "\x05\x04\x03\x03\x04\x05\x01\x05\x03\x01\x01\x03\x04", // 𤼵
+ 0x24f36: "\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01\x05\x03", // 𤼶
+ 0x24f37: "\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01\x01\x03\x02", // 𤼷
+ 0x24f38: "\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01\x02\x01\x01", // 𤼸
+ 0x24f39: "\x05\x04\x03\x03\x04\x02\x05\x01\x01\x01\x03\x04\x03\x01\x03\x04", // 𤼹
+ 0x24f3a: "\x05\x04\x03\x03\x04\x02\x05\x01\x01\x01\x03\x04\x03\x05\x05\x04", // 𤼺
+ 0x24f3b: "\x05\x04\x03\x03\x04\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𤼻
+ 0x24f3c: "\x05\x04\x03\x03\x04\x05\x03\x01\x02\x05\x01\x04\x03\x01\x05\x04", // 𤼼
+ 0x24f3d: "\x03\x02\x05\x01\x01\x02", // 𤼽
+ 0x24f3e: "\x03\x02\x05\x01\x01\x05", // 𤼾
+ 0x24f3f: "\x03\x02\x05\x01\x01\x02\x01", // 𤼿
+ 0x24f40: "\x03\x02\x05\x01\x01\x05\x02", // 𤽀
+ 0x24f41: "\x03\x02\x05\x01\x01\x01\x02", // 𤽁
+ 0x24f42: "\x03\x02\x05\x01\x01\x01\x01\x02", // 𤽂
+ 0x24f43: "\x03\x02\x05\x01\x01\x03\x02\x02", // 𤽃
+ 0x24f44: "\x03\x02\x05\x01\x01\x02\x03\x04", // 𤽄
+ 0x24f45: "\x03\x02\x05\x01\x01\x01\x03\x05", // 𤽅
+ 0x24f46: "\x03\x02\x05\x01\x01\x02\x01\x02", // 𤽆
+ 0x24f47: "\x03\x02\x05\x01\x01\x03\x02\x05", // 𤽇
+ 0x24f48: "\x03\x02\x05\x01\x01\x04\x03\x03\x04", // 𤽈
+ 0x24f49: "\x03\x02\x05\x01\x01\x03\x05\x05\x03", // 𤽉
+ 0x24f4a: "\x03\x02\x05\x01\x01\x01\x05\x01\x05", // 𤽊
+ 0x24f4b: "\x03\x02\x05\x01\x01\x05\x05\x05\x01", // 𤽋
+ 0x24f4c: "\x03\x02\x05\x01\x01\x01\x02\x05\x02", // 𤽌
+ 0x24f4d: "\x03\x02\x05\x01\x01\x03\x01\x01\x05", // 𤽍
+ 0x24f4e: "\x03\x02\x05\x01\x01\x01\x01\x05\x04", // 𤽎
+ 0x24f4f: "\x03\x02\x05\x01\x01\x01\x05\x03\x05", // 𤽏
+ 0x24f50: "\x03\x02\x05\x01\x01\x02\x01\x05\x04", // 𤽐
+ 0x24f51: "\x03\x02\x05\x01\x01\x01\x02\x05\x04", // 𤽑
+ 0x24f52: "\x03\x02\x05\x01\x01\x01\x03\x02\x02", // 𤽒
+ 0x24f53: "\x03\x02\x05\x01\x01\x02\x01\x01\x01", // 𤽓
+ 0x24f54: "\x03\x02\x05\x01\x01\x02\x03\x04\x01", // 𤽔
+ 0x24f55: "\x03\x02\x05\x01\x01\x04\x01\x03\x05", // 𤽕
+ 0x24f56: "\x03\x02\x05\x01\x01\x01\x03\x03\x03", // 𤽖
+ 0x24f57: "\x03\x02\x05\x01\x01\x01\x05\x01", // 𤽗
+ 0x24f58: "\x03\x02\x05\x01\x01\x01\x03\x04\x05\x03", // 𤽘
+ 0x24f59: "\x03\x02\x05\x01\x01\x02\x05\x01\x02\x01", // 𤽙
+ 0x24f5a: "\x03\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 𤽚
+ 0x24f5b: "\x03\x02\x05\x01\x01\x03\x05\x03\x05\x01\x01", // 𤽛
+ 0x24f5c: "\x03\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 𤽜
+ 0x24f5d: "\x03\x02\x05\x01\x01\x04\x03\x01\x01\x02", // 𤽝
+ 0x24f5e: "\x04\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 𤽞
+ 0x24f5f: "\x03\x02\x05\x01\x01\x01\x03\x04\x03\x02", // 𤽟
+ 0x24f60: "\x03\x04\x03\x04\x01\x03\x02\x05\x01\x01", // 𤽠
+ 0x24f61: "\x03\x02\x05\x01\x01\x03\x03\x05\x04\x04", // 𤽡
+ 0x24f62: "\x03\x02\x05\x01\x01\x01\x02\x01\x02\x01", // 𤽢
+ 0x24f63: "\x04\x05\x04\x03\x04\x03\x02\x05\x01\x01", // 𤽣
+ 0x24f64: "\x02\x01\x02\x01\x01\x05\x03\x02\x05\x01\x01", // 𤽤
+ 0x24f65: "\x03\x02\x05\x01\x01\x03\x05\x04\x02\x05\x01", // 𤽥
+ 0x24f66: "\x03\x02\x05\x01\x01\x03\x01\x01\x02\x05\x02", // 𤽦
+ 0x24f67: "\x03\x02\x05\x01\x01\x01\x02\x02\x02\x02\x01", // 𤽧
+ 0x24f68: "\x03\x02\x05\x01\x01\x01\x03\x05\x04\x01\x05", // 𤽨
+ 0x24f69: "\x01\x05\x03\x01\x03\x04\x03\x02\x05\x01\x01", // 𤽩
+ 0x24f6a: "\x03\x02\x05\x01\x01\x03\x02\x05\x01\x03\x05", // 𤽪
+ 0x24f6b: "\x03\x02\x05\x01\x01\x01\x03\x04\x01\x01\x01", // 𤽫
+ 0x24f6c: "\x03\x02\x05\x01\x01\x01\x03\x04\x03\x04\x03\x04", // 𤽬
+ 0x24f6d: "\x03\x02\x05\x01\x01\x05\x04\x03\x04\x03\x05\x04", // 𤽭
+ 0x24f6e: "\x03\x02\x05\x01\x01\x04\x01\x04\x03\x01\x01\x02", // 𤽮
+ 0x24f6f: "\x03\x02\x05\x01\x01\x01\x01\x01\x03\x01\x02\x04", // 𤽯
+ 0x24f70: "\x03\x02\x05\x01\x01\x01\x02\x03\x04\x05\x03\x04", // 𤽰
+ 0x24f71: "\x03\x02\x05\x01\x01\x02\x05\x01\x02\x01\x03\x04", // 𤽱
+ 0x24f72: "\x03\x02\x05\x01\x01\x02\x05\x01\x02\x01\x05\x03", // 𤽲
+ 0x24f73: "\x03\x02\x05\x01\x01\x03\x02\x02\x02\x05\x01\x01", // 𤽳
+ 0x24f74: "\x03\x02\x05\x01\x01\x01\x02\x01\x03\x05\x02\x01", // 𤽴
+ 0x24f75: "\x03\x02\x05\x01\x01\x01\x02\x01\x03\x05\x05\x03", // 𤽵
+ 0x24f76: "\x03\x02\x05\x01\x01\x05\x01\x03\x03\x01\x01\x05", // 𤽶
+ 0x24f77: "\x03\x02\x05\x01\x01\x01\x03\x05\x05\x03\x04", // 𤽷
+ 0x24f78: "\x03\x02\x05\x01\x01\x05\x02\x01\x03\x01\x02\x01", // 𤽸
+ 0x24f79: "\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x01\x02", // 𤽹
+ 0x24f7a: "\x03\x02\x05\x01\x01\x05\x01\x01\x02\x04\x01\x03\x04", // 𤽺
+ 0x24f7b: "\x03\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x02\x01", // 𤽻
+ 0x24f7c: "\x03\x02\x05\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𤽼
+ 0x24f7d: "\x04\x03\x01\x02\x02\x04\x03\x01\x03\x02\x05\x01\x01", // 𤽽
+ 0x24f7e: "\x03\x02\x05\x01\x01\x02\x01\x05\x03\x01\x05\x03\x05", // 𤽾
+ 0x24f7f: "\x03\x02\x05\x01\x01\x03\x04\x01\x05\x04\x05\x04\x04", // 𤽿
+ 0x24f80: "\x03\x02\x05\x01\x01\x01\x01\x02\x01\x02\x05\x03\x04", // 𤾀
+ 0x24f81: "\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x01\x02", // 𤾁
+ 0x24f82: "\x03\x02\x05\x01\x01\x04\x04\x05\x03\x05\x04\x05\x05", // 𤾂
+ 0x24f83: "\x03\x02\x05\x01\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 𤾃
+ 0x24f84: "\x01\x01\x03\x04\x02\x05\x01\x01\x03\x02\x05\x01\x01", // 𤾄
+ 0x24f85: "\x03\x02\x05\x01\x01\x02\x01\x01\x01\x02\x01\x01\x01", // 𤾅
+ 0x24f86: "\x03\x02\x05\x01\x01\x03\x02\x01\x05\x01\x01\x03\x05", // 𤾆
+ 0x24f87: "\x03\x02\x05\x01\x01\x03\x02\x01\x05\x01\x01\x03\x05", // 𤾇
+ 0x24f88: "\x03\x02\x05\x01\x01\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 𤾈
+ 0x24f89: "\x03\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 𤾉
+ 0x24f8a: "\x05\x01\x05\x01\x02\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 𤾊
+ 0x24f8b: "\x01\x03\x02\x05\x01\x01\x03\x05\x01\x01\x02\x01\x01\x02", // 𤾋
+ 0x24f8c: "\x03\x02\x05\x01\x01\x02\x05\x03\x04\x05\x03\x02\x05\x01", // 𤾌
+ 0x24f8d: "\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x04\x04\x01\x02", // 𤾍
+ 0x24f8e: "\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x01\x01\x02", // 𤾎
+ 0x24f8f: "\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x02\x03\x04", // 𤾏
+ 0x24f90: "\x03\x02\x05\x01\x01\x01\x01\x01\x02\x01\x02\x01\x03\x05", // 𤾐
+ 0x24f91: "\x03\x02\x05\x01\x01\x01\x04\x03\x01\x01\x02\x02\x01\x01", // 𤾑
+ 0x24f92: "\x03\x02\x05\x01\x01\x02\x05\x01\x02\x01\x04\x05\x03\x05", // 𤾒
+ 0x24f93: "\x01\x03\x02\x05\x01\x01\x01\x02\x03\x04\x01\x02\x03\x04", // 𤾓
+ 0x24f94: "\x03\x02\x05\x01\x01\x01\x02\x02\x04\x05\x01\x02\x03\x04", // 𤾔
+ 0x24f95: "\x04\x01\x04\x03\x01\x04\x01\x04\x03\x01\x03\x02\x05\x01\x01", // 𤾕
+ 0x24f96: "\x03\x02\x05\x01\x01\x01\x03\x01\x01\x05\x03\x04\x01\x02\x04", // 𤾖
+ 0x24f97: "\x02\x04\x03\x01\x03\x05\x03\x02\x05\x01\x01\x01\x01\x02\x01", // 𤾗
+ 0x24f98: "\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x02\x05\x02\x05\x01", // 𤾘
+ 0x24f99: "\x03\x02\x05\x01\x01\x03\x04\x01\x05\x01\x01\x03\x02\x05\x01", // 𤾙
+ 0x24f9a: "\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 𤾚
+ 0x24f9b: "\x03\x02\x05\x01\x01\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 𤾛
+ 0x24f9c: "\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x04\x05\x04\x01\x05\x03", // 𤾜
+ 0x24f9d: "\x03\x02\x05\x01\x01\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05", // 𤾝
+ 0x24f9e: "\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x03\x02\x05\x01\x01", // 𤾞
+ 0x24f9f: "\x03\x02\x05\x01\x01\x04\x01\x01\x01\x02\x05\x01\x03\x01\x01\x02", // 𤾟
+ 0x24fa0: "\x03\x02\x05\x01\x01\x02\x05\x01\x02\x05\x02\x05\x01\x01\x01\x02", // 𤾠
+ 0x24fa1: "\x03\x02\x05\x01\x01\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04", // 𤾡
+ 0x24fa2: "\x03\x02\x05\x01\x01\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 𤾢
+ 0x24fa3: "\x03\x02\x05\x01\x01\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 𤾣
+ 0x24fa4: "\x03\x02\x05\x01\x01\x04\x05\x04\x04\x01\x04\x03\x04\x05\x02\x05\x02", // 𤾤
+ 0x24fa5: "\x03\x02\x05\x01\x01\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𤾥
+ 0x24fa6: "\x03\x02\x05\x01\x01\x05\x01\x05\x01\x02\x01\x01\x02\x01\x02\x05\x01", // 𤾦
+ 0x24fa7: "\x03\x02\x05\x01\x01\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x02\x03\x04", // 𤾧
+ 0x24fa8: "\x03\x02\x05\x01\x01\x01\x04\x05\x02\x04\x01\x03\x04\x03\x04\x01\x05\x04", // 𤾨
+ 0x24fa9: "\x01\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01", // 𤾩
+ 0x24faa: "\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𤾪
+ 0x24fab: "\x03\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𤾫
+ 0x24fac: "\x03\x02\x05\x01\x01\x01\x02\x01\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 𤾬
+ 0x24fad: "\x03\x02\x05\x01\x01\x01\x01\x02\x01\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01", // 𤾭
+ 0x24fae: "\x03\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x03\x02\x03\x04\x04\x05\x04", // 𤾮
+ 0x24faf: "\x03\x02\x05\x01\x01\x04\x04\x01\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04", // 𤾯
+ 0x24fb0: "\x03\x02\x05\x01\x01\x03\x05\x03\x01\x01\x03\x04\x05\x04\x05\x02\x01\x03\x04", // 𤾰
+ 0x24fb1: "\x03\x02\x05\x01\x01\x04\x04\x05\x04\x05\x04\x04\x02\x05\x02\x02\x01\x01\x02", // 𤾱
+ 0x24fb2: "\x03\x02\x05\x01\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04\x01\x02", // 𤾲
+ 0x24fb3: "\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x01\x02\x01", // 𤾳
+ 0x24fb4: "\x03\x02\x05\x01\x01\x01\x02\x01\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x01\x02", // 𤾴
+ 0x24fb5: "\x03\x02\x05\x01\x01\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04\x01\x03\x02", // 𤾵
+ 0x24fb6: "\x03\x02\x05\x01\x01\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 𤾶
+ 0x24fb7: "\x03\x02\x05\x01\x01\x01\x02\x01\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 𤾷
+ 0x24fb8: "\x03\x02\x05\x01\x01\x01\x02\x02\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04", // 𤾸
+ 0x24fb9: "\x03\x02\x05\x01\x01\x01\x02\x02\x01\x03\x04\x03\x04\x03\x04\x03\x04\x01\x01\x02", // 𤾹
+ 0x24fba: "\x03\x02\x05\x01\x01\x01\x01\x02\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 𤾺
+ 0x24fbb: "\x03\x02\x05\x01\x01\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 𤾻
+ 0x24fbc: "\x03\x02\x05\x01\x01\x01\x02\x01\x02\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x01\x05", // 𤾼
+ 0x24fbd: "\x03\x02\x05\x01\x01\x03\x04\x04\x03\x02\x05\x02\x02\x01\x05\x01\x01\x05\x04\x05\x02", // 𤾽
+ 0x24fbe: "\x03\x02\x05\x01\x01\x02\x05\x02\x03\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x03\x04", // 𤾾
+ 0x24fbf: "\x03\x05\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01\x03\x02\x05\x01\x01\x03\x04\x01\x05\x03\x04", // 𤾿
+ 0x24fc0: "\x03\x02\x05\x01\x01\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 𤿀
+ 0x24fc1: "\x03\x02\x05\x01\x01\x02\x03\x04\x03\x02\x05\x01\x01\x02\x03\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 𤿁
+ 0x24fc2: "\x03\x02\x05\x01\x01\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x01\x02\x01\x04", // 𤿂
+ 0x24fc3: "\x03\x02\x05\x01\x01\x03\x04\x04\x03\x04\x05\x03\x04\x04\x04\x04\x04\x05\x02\x01\x05\x01\x02\x04", // 𤿃
+ 0x24fc4: "\x03\x02\x05\x01\x01\x05\x05\x05\x05\x03\x02\x05\x01\x01\x05\x05\x05\x05\x03\x02\x05\x01\x01\x05\x05\x05\x05", // 𤿄
+ 0x24fc5: "\x03\x02\x05\x01\x01\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x03\x04\x01", // 𤿅
+ 0x24fc6: "\x05\x03\x02\x05\x04\x01\x02", // 𤿆
+ 0x24fc7: "\x05\x03\x02\x05\x04\x05\x03", // 𤿇
+ 0x24fc8: "\x03\x05\x04\x05\x03\x02\x05\x04", // 𤿈
+ 0x24fc9: "\x05\x03\x02\x05\x04\x03\x05\x04", // 𤿉
+ 0x24fca: "\x01\x01\x02\x05\x03\x02\x05\x04", // 𤿊
+ 0x24fcb: "\x05\x03\x02\x05\x04\x01\x02\x03", // 𤿋
+ 0x24fcc: "\x02\x05\x01\x05\x03\x02\x05\x04", // 𤿌
+ 0x24fcd: "\x05\x03\x02\x05\x04\x01\x01\x02", // 𤿍
+ 0x24fce: "\x01\x05\x01\x05\x05\x03\x02\x05\x04", // 𤿎
+ 0x24fcf: "\x02\x05\x03\x04\x05\x03\x02\x05\x04", // 𤿏
+ 0x24fd0: "\x01\x01\x03\x02\x05\x03\x02\x05\x04", // 𤿐
+ 0x24fd1: "\x03\x04\x03\x05\x05\x03\x02\x05\x04", // 𤿑
+ 0x24fd2: "\x05\x03\x02\x05\x04\x02\x05\x03\x04", // 𤿒
+ 0x24fd3: "\x03\x04\x03\x04\x05\x03\x02\x05\x04", // 𤿓
+ 0x24fd4: "\x03\x05\x04\x01\x05\x03\x02\x05\x04", // 𤿔
+ 0x24fd5: "\x05\x01\x05\x01\x05\x05\x03\x02\x05\x04", // 𤿕
+ 0x24fd6: "\x01\x01\x02\x03\x04\x05\x03\x02\x05\x04", // 𤿖
+ 0x24fd7: "\x05\x03\x02\x05\x04\x01\x01\x02\x03\x04", // 𤿗
+ 0x24fd8: "\x03\x05\x02\x05\x01\x05\x03\x02\x05\x04", // 𤿘
+ 0x24fd9: "\x02\x01\x02\x01\x01\x05\x05\x03\x02\x05\x04", // 𤿙
+ 0x24fda: "\x02\x05\x01\x01\x01\x05\x03\x02\x05\x04", // 𤿚
+ 0x24fdb: "\x05\x03\x02\x05\x04\x01\x02\x02\x05\x01", // 𤿛
+ 0x24fdc: "\x01\x02\x01\x05\x04\x05\x03\x02\x05\x04", // 𤿜
+ 0x24fdd: "\x02\x01\x02\x05\x01\x05\x03\x02\x05\x04", // 𤿝
+ 0x24fde: "\x01\x02\x02\x05\x01\x05\x03\x02\x05\x04", // 𤿞
+ 0x24fdf: "\x03\x05\x02\x05\x01\x01\x05\x03\x02\x05\x04", // 𤿟
+ 0x24fe0: "\x01\x02\x01\x02\x05\x01\x05\x03\x02\x05\x04", // 𤿠
+ 0x24fe1: "\x03\x05\x01\x03\x05\x05\x05\x03\x02\x05\x04", // 𤿡
+ 0x24fe2: "\x01\x02\x05\x03\x05\x01\x05\x03\x02\x05\x04", // 𤿢
+ 0x24fe3: "\x02\x05\x02\x01\x01\x02\x05\x03\x02\x05\x04", // 𤿣
+ 0x24fe4: "\x03\x01\x04\x03\x01\x04\x05\x03\x02\x05\x04", // 𤿤
+ 0x24fe5: "\x03\x05\x05\x02\x01\x01\x05\x03\x02\x05\x04", // 𤿥
+ 0x24fe6: "\x05\x03\x02\x05\x04\x03\x05\x04\x03\x05\x04", // 𤿦
+ 0x24fe7: "\x02\x05\x01\x01\x01\x01\x02\x05\x03\x02\x05\x04", // 𤿧
+ 0x24fe8: "\x02\x04\x03\x03\x05\x04\x01\x05\x03\x02\x05\x04", // 𤿨
+ 0x24fe9: "\x03\x01\x02\x01\x02\x05\x01\x05\x03\x02\x05\x04", // 𤿩
+ 0x24fea: "\x03\x01\x02\x05\x01\x01\x02\x05\x03\x02\x05\x04", // 𤿪
+ 0x24feb: "\x04\x03\x02\x05\x01\x03\x05\x05\x03\x02\x05\x04", // 𤿫
+ 0x24fec: "\x05\x03\x02\x05\x04\x01\x01\x02\x01\x01\x03\x02", // 𤿬
+ 0x24fed: "\x05\x03\x02\x05\x04\x01\x02\x05\x01\x01\x02\x04", // 𤿭
+ 0x24fee: "\x02\x05\x01\x05\x02\x01\x01\x05\x03\x02\x05\x04", // 𤿮
+ 0x24fef: "\x03\x05\x02\x05\x01\x03\x05\x05\x03\x02\x05\x04", // 𤿯
+ 0x24ff0: "\x01\x01\x02\x01\x01\x03\x02\x05\x03\x02\x05\x04", // 𤿰
+ 0x24ff1: "\x02\x05\x01\x05\x03\x02\x02\x05\x03\x02\x05\x04", // 𤿱
+ 0x24ff2: "\x01\x01\x02\x01\x03\x05\x04\x05\x03\x02\x05\x04", // 𤿲
+ 0x24ff3: "\x01\x02\x05\x01\x02\x05\x05\x04\x05\x03\x02\x05\x04", // 𤿳
+ 0x24ff4: "\x05\x01\x01\x02\x04\x01\x03\x04\x05\x03\x02\x05\x04", // 𤿴
+ 0x24ff5: "\x05\x04\x05\x04\x05\x04\x05\x04\x05\x03\x02\x05\x04", // 𤿵
+ 0x24ff6: "\x02\x05\x01\x02\x02\x01\x03\x04\x05\x03\x02\x05\x04", // 𤿶
+ 0x24ff7: "\x03\x05\x03\x02\x01\x05\x01\x01\x05\x03\x02\x05\x04", // 𤿷
+ 0x24ff8: "\x05\x03\x02\x05\x04\x01\x02\x02\x01\x02\x05\x01\x01", // 𤿸
+ 0x24ff9: "\x01\x02\x01\x04\x03\x01\x01\x02\x05\x03\x02\x05\x04", // 𤿹
+ 0x24ffa: "\x01\x02\x02\x01\x01\x01\x03\x04\x05\x03\x02\x05\x04", // 𤿺
+ 0x24ffb: "\x02\x01\x01\x01\x02\x01\x01\x01\x05\x03\x02\x05\x04", // 𤿻
+ 0x24ffc: "\x02\x04\x03\x02\x05\x02\x05\x01\x05\x03\x02\x05\x04", // 𤿼
+ 0x24ffd: "\x02\x05\x03\x04\x02\x05\x01\x01\x05\x03\x02\x05\x04", // 𤿽
+ 0x24ffe: "\x03\x02\x05\x01\x01\x03\x01\x02\x05\x03\x02\x05\x04", // 𤿾
+ 0x24fff: "\x05\x02\x01\x01\x05\x02\x01\x01\x05\x03\x02\x05\x04", // 𤿿
+ 0x25000: "\x01\x02\x01\x04\x03\x01\x01\x01\x02\x05\x03\x02\x05\x04", // 𥀀
+ 0x25001: "\x01\x02\x01\x03\x02\x05\x01\x01\x05\x03\x02\x05\x04", // 𥀁
+ 0x25002: "\x01\x02\x01\x01\x02\x01\x01\x02\x04\x05\x03\x02\x05\x04", // 𥀂
+ 0x25003: "\x03\x02\x05\x01\x03\x01\x01\x03\x04\x05\x03\x02\x05\x04", // 𥀃
+ 0x25004: "\x03\x05\x01\x03\x03\x01\x01\x03\x04\x05\x03\x02\x05\x04", // 𥀄
+ 0x25005: "\x02\x01\x01\x03\x05\x04\x05\x03\x04\x05\x03\x02\x05\x04", // 𥀅
+ 0x25006: "\x04\x01\x03\x04\x01\x03\x03\x03\x03\x05\x03\x02\x05\x04", // 𥀆
+ 0x25007: "\x01\x02\x02\x05\x04\x03\x01\x01\x02\x05\x03\x02\x05\x04", // 𥀇
+ 0x25008: "\x01\x01\x02\x03\x02\x01\x05\x01\x01\x05\x03\x02\x05\x04", // 𥀈
+ 0x25009: "\x03\x01\x02\x03\x04\x03\x04\x05\x02\x05\x03\x02\x05\x04", // 𥀉
+ 0x2500a: "\x05\x03\x02\x05\x04\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 𥀊
+ 0x2500b: "\x05\x03\x02\x05\x04\x05\x02\x02\x01\x02\x05\x01\x02\x01", // 𥀋
+ 0x2500c: "\x05\x03\x02\x05\x04\x01\x02\x02\x05\x04\x02\x05\x01", // 𥀌
+ 0x2500d: "\x05\x04\x03\x05\x04\x01\x01\x05\x01\x05\x05\x03\x02\x05\x04", // 𥀍
+ 0x2500e: "\x01\x02\x01\x04\x05\x01\x05\x03\x02\x05\x04\x03\x05\x05\x04", // 𥀎
+ 0x2500f: "\x04\x01\x03\x04\x03\x04\x01\x02\x03\x04\x05\x03\x02\x05\x04", // 𥀏
+ 0x25010: "\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04\x05\x03\x02\x05\x04", // 𥀐
+ 0x25011: "\x05\x03\x02\x05\x04\x05\x02\x02\x01\x02\x05\x02\x05\x01\x01", // 𥀑
+ 0x25012: "\x05\x03\x02\x05\x04\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01", // 𥀒
+ 0x25013: "\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01\x05\x03\x02\x05\x04", // 𥀓
+ 0x25014: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x05\x03\x02\x05\x04", // 𥀔
+ 0x25015: "\x02\x05\x01\x02\x01\x01\x02\x02\x01\x01\x02\x05\x03\x02\x05\x04", // 𥀕
+ 0x25016: "\x05\x03\x02\x05\x04\x02\x05\x01\x02\x01\x02\x05\x02\x05\x01\x01", // 𥀖
+ 0x25017: "\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04\x05\x03\x02\x05\x04", // 𥀗
+ 0x25018: "\x05\x04\x01\x05\x04\x01\x05\x03\x02\x05\x04\x05\x03\x02\x05\x04", // 𥀘
+ 0x25019: "\x02\x05\x03\x04\x03\x04\x05\x03\x02\x05\x04\x05\x03\x02\x05\x04", // 𥀙
+ 0x2501a: "\x02\x05\x01\x01\x03\x02\x05\x02\x05\x01\x01\x05\x03\x02\x05\x04", // 𥀚
+ 0x2501b: "\x05\x03\x02\x05\x04\x01\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01", // 𥀛
+ 0x2501c: "\x05\x03\x02\x05\x04\x02\x05\x01\x01\x03\x02\x05\x02\x05\x01\x01", // 𥀜
+ 0x2501d: "\x05\x03\x02\x05\x04\x04\x04\x05\x03\x02\x01\x03\x02\x05\x01\x01", // 𥀝
+ 0x2501e: "\x04\x03\x01\x01\x02\x01\x03\x05\x02\x01\x01\x05\x03\x02\x05\x04", // 𥀞
+ 0x2501f: "\x03\x04\x03\x04\x03\x04\x03\x04\x02\x05\x01\x01\x05\x03\x02\x05\x04", // 𥀟
+ 0x25020: "\x05\x03\x02\x05\x04\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𥀠
+ 0x25021: "\x05\x04\x01\x03\x05\x04\x01\x01\x05\x01\x05\x01\x05\x03\x02\x05\x04", // 𥀡
+ 0x25022: "\x01\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04\x05\x03\x02\x05\x04", // 𥀢
+ 0x25023: "\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x05\x03\x02\x05\x04", // 𥀣
+ 0x25024: "\x05\x03\x02\x05\x04\x02\x05\x01\x01\x02\x05\x02\x02\x01\x04\x01\x05\x03", // 𥀤
+ 0x25025: "\x01\x02\x01\x02\x02\x05\x01\x01\x03\x05\x03\x04\x05\x05\x03\x02\x05\x04", // 𥀥
+ 0x25026: "\x02\x05\x01\x01\x03\x05\x04\x01\x03\x05\x03\x03\x03\x05\x03\x02\x05\x04", // 𥀦
+ 0x25027: "\x05\x04\x02\x05\x01\x01\x04\x01\x05\x04\x03\x02\x05\x05\x03\x02\x05\x04", // 𥀧
+ 0x25028: "\x05\x03\x02\x05\x04\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𥀨
+ 0x25029: "\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01\x05\x03\x02\x05\x04", // 𥀩
+ 0x2502a: "\x05\x03\x02\x05\x04\x04\x01\x05\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𥀪
+ 0x2502b: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x03\x02\x05\x02\x02\x05\x03\x02\x05\x04", // 𥀫
+ 0x2502c: "\x01\x03\x02\x05\x01\x01\x03\x05\x04\x01\x01\x03\x04\x04\x05\x03\x02\x05\x04", // 𥀬
+ 0x2502d: "\x05\x03\x02\x05\x04\x01\x04\x05\x02\x04\x01\x03\x04\x01\x03\x02\x05\x02\x02", // 𥀭
+ 0x2502e: "\x03\x05\x01\x01\x05\x05\x05\x03\x02\x05\x03\x05\x04\x01\x05\x03\x02\x05\x04", // 𥀮
+ 0x2502f: "\x05\x03\x02\x05\x04\x02\x01\x02\x01\x02\x05\x02\x02\x01\x01\x03\x04\x05\x03\x04", // 𥀯
+ 0x25030: "\x05\x05\x05\x02\x05\x03\x04\x01\x05\x04\x04\x05\x04\x04\x05\x05\x03\x02\x05\x04", // 𥀰
+ 0x25031: "\x04\x01\x03\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04\x05\x03\x02\x05\x04", // 𥀱
+ 0x25032: "\x05\x03\x02\x05\x04\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𥀲
+ 0x25033: "\x05\x03\x02\x05\x04\x01\x02\x03\x04\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 𥀳
+ 0x25034: "\x02\x05\x01\x02\x05\x01\x01\x03\x04\x04\x02\x05\x01\x02\x05\x01\x05\x03\x02\x05\x04", // 𥀴
+ 0x25035: "\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01\x05\x03\x02\x05\x04", // 𥀵
+ 0x25036: "\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04\x05\x03\x02\x05\x04", // 𥀶
+ 0x25037: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x05\x03\x02\x05\x04\x03\x02\x05\x01\x01\x03\x01\x02", // 𥀷
+ 0x25038: "\x05\x03\x02\x05\x04\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x03\x04\x02\x05\x01\x01", // 𥀸
+ 0x25039: "\x02\x01\x02\x01\x02\x05\x02\x05\x05\x04\x02\x03\x04\x02\x05\x01\x02\x01\x04\x05\x03\x02\x05\x04", // 𥀹
+ 0x2503a: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x05\x03\x02\x05\x04", // 𥀺
+ 0x2503b: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x05\x03\x02\x05\x04\x01\x03\x02\x01\x01\x02\x03\x04\x05\x03\x04", // 𥀻
+ 0x2503c: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x05\x03\x02\x05\x04\x05\x02\x03\x05\x04\x01\x03\x01\x01\x02\x01", // 𥀼
+ 0x2503d: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x05\x03\x02\x05\x04\x01\x03\x02\x01\x01\x02\x03\x04\x04\x05\x04\x04\x05\x03\x04", // 𥀽
+ 0x2503e: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x05\x03\x02\x05\x04\x05\x05\x03\x04\x05\x01\x01\x05\x04\x05\x02\x03\x02\x05\x02\x05\x01", // 𥀾
+ 0x2503f: "\x02\x05\x02\x02\x01\x01\x05", // 𥀿
+ 0x25040: "\x05\x03\x02\x05\x02\x02\x01", // 𥁀
+ 0x25041: "\x01\x02\x01\x02\x05\x02\x02\x01", // 𥁁
+ 0x25042: "\x05\x02\x01\x02\x05\x02\x02\x01", // 𥁂
+ 0x25043: "\x04\x01\x05\x02\x05\x02\x02\x01", // 𥁃
+ 0x25044: "\x01\x01\x05\x02\x05\x02\x02\x01", // 𥁄
+ 0x25045: "\x05\x03\x01\x02\x05\x02\x02\x01", // 𥁅
+ 0x25046: "\x01\x05\x02\x03\x02\x05\x02\x02\x01", // 𥁆
+ 0x25047: "\x04\x04\x01\x02\x02\x05\x02\x02\x01", // 𥁇
+ 0x25048: "\x01\x02\x05\x04\x02\x05\x02\x02\x01", // 𥁈
+ 0x25049: "\x05\x05\x02\x01\x02\x05\x02\x02\x01", // 𥁉
+ 0x2504a: "\x01\x03\x05\x04\x02\x05\x02\x02\x01", // 𥁊
+ 0x2504b: "\x01\x03\x04\x01\x02\x05\x02\x02\x01", // 𥁋
+ 0x2504c: "\x03\x04\x01\x05\x02\x05\x02\x02\x01", // 𥁌
+ 0x2504d: "\x02\x05\x02\x02\x01\x05\x01\x03\x04", // 𥁍
+ 0x2504e: "\x03\x05\x01\x01\x02\x02\x05\x02\x02\x01", // 𥁎
+ 0x2504f: "\x05\x03\x02\x05\x01\x02\x05\x02\x02\x01", // 𥁏
+ 0x25050: "\x05\x04\x02\x05\x01\x02\x05\x02\x02\x01", // 𥁐
+ 0x25051: "\x04\x05\x04\x03\x04\x02\x05\x02\x02\x01", // 𥁑
+ 0x25052: "\x05\x05\x04\x05\x03\x02\x05\x02\x02\x01", // 𥁒
+ 0x25053: "\x01\x03\x02\x05\x01\x02\x05\x02\x02\x01", // 𥁓
+ 0x25054: "\x02\x05\x02\x02\x01\x03\x04\x05\x04", // 𥁔
+ 0x25055: "\x02\x05\x03\x04\x01\x02\x05\x02\x02\x01", // 𥁕
+ 0x25056: "\x02\x05\x01\x03\x02\x02\x05\x02\x02\x01", // 𥁖
+ 0x25057: "\x04\x04\x05\x03\x05\x02\x05\x02\x02\x01", // 𥁗
+ 0x25058: "\x01\x05\x03\x03\x04\x02\x05\x02\x02\x01", // 𥁘
+ 0x25059: "\x03\x02\x05\x02\x01\x02\x05\x02\x02\x01", // 𥁙
+ 0x2505a: "\x03\x05\x04\x05\x03\x02\x05\x02\x02\x01", // 𥁚
+ 0x2505b: "\x05\x04\x05\x02\x03\x02\x05\x02\x02\x01", // 𥁛
+ 0x2505c: "\x05\x01\x05\x02\x03\x02\x05\x02\x02\x01", // 𥁜
+ 0x2505d: "\x05\x02\x01\x03\x04\x02\x05\x02\x02\x01", // 𥁝
+ 0x2505e: "\x05\x01\x01\x01\x02\x01\x02\x05\x02\x02\x01", // 𥁞
+ 0x2505f: "\x01\x03\x05\x04\x02\x02\x02\x05\x02\x02\x01", // 𥁟
+ 0x25060: "\x04\x03\x01\x01\x03\x04\x02\x05\x02\x02\x01", // 𥁠
+ 0x25061: "\x04\x04\x01\x01\x01\x05\x02\x05\x02\x02\x01", // 𥁡
+ 0x25062: "\x03\x01\x03\x04\x03\x02\x02\x05\x02\x02\x01", // 𥁢
+ 0x25063: "\x04\x01\x03\x05\x05\x03\x02\x05\x02\x02\x01", // 𥁣
+ 0x25064: "\x04\x04\x01\x05\x03\x04\x02\x05\x02\x02\x01", // 𥁤
+ 0x25065: "\x05\x01\x05\x05\x01\x05\x02\x05\x02\x02\x01", // 𥁥
+ 0x25066: "\x01\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 𥁦
+ 0x25067: "\x03\x04\x01\x01\x05\x04\x02\x05\x02\x02\x01", // 𥁧
+ 0x25068: "\x05\x03\x01\x05\x02\x01\x02\x05\x02\x02\x01", // 𥁨
+ 0x25069: "\x04\x04\x01\x03\x01\x05\x02\x05\x02\x02\x01", // 𥁩
+ 0x2506a: "\x05\x04\x05\x02\x03\x04\x02\x05\x02\x02\x01", // 𥁪
+ 0x2506b: "\x01\x01\x01\x05\x03\x02\x05\x02\x02\x01", // 𥁫
+ 0x2506c: "\x03\x02\x05\x01\x01\x05\x04\x02\x05\x02\x02\x01", // 𥁬
+ 0x2506d: "\x04\x04\x01\x04\x05\x03\x05\x02\x05\x02\x02\x01", // 𥁭
+ 0x2506e: "\x03\x02\x01\x03\x01\x03\x04\x02\x05\x02\x02\x01", // 𥁮
+ 0x2506f: "\x02\x05\x01\x02\x01\x03\x04\x02\x05\x02\x02\x01", // 𥁯
+ 0x25070: "\x02\x05\x03\x05\x02\x05\x01\x02\x05\x02\x02\x01", // 𥁰
+ 0x25071: "\x05\x04\x05\x02\x01\x03\x04\x02\x05\x02\x02\x01", // 𥁱
+ 0x25072: "\x04\x04\x01\x02\x03\x04\x03\x02\x05\x02\x02\x01", // 𥁲
+ 0x25073: "\x04\x04\x01\x03\x05\x05\x03\x02\x05\x02\x02\x01", // 𥁳
+ 0x25074: "\x02\x05\x01\x03\x05\x03\x03\x02\x05\x02\x02\x01", // 𥁴
+ 0x25075: "\x04\x04\x01\x02\x05\x01\x02\x02\x05\x02\x02\x01", // 𥁵
+ 0x25076: "\x01\x02\x01\x05\x02\x05\x01\x02\x05\x02\x02\x01", // 𥁶
+ 0x25077: "\x04\x04\x01\x03\x04\x05\x04\x02\x05\x02\x02\x01", // 𥁷
+ 0x25078: "\x04\x03\x01\x01\x03\x04\x05\x05\x02\x05\x02\x02\x01", // 𥁸
+ 0x25079: "\x01\x02\x03\x04\x01\x02\x03\x04\x02\x05\x02\x02\x01", // 𥁹
+ 0x2507a: "\x03\x05\x01\x01\x04\x05\x03\x05\x02\x05\x02\x02\x01", // 𥁺
+ 0x2507b: "\x02\x05\x01\x01\x04\x05\x03\x05\x02\x05\x02\x02\x01", // 𥁻
+ 0x2507c: "\x04\x04\x01\x03\x05\x01\x05\x01\x02\x05\x02\x02\x01", // 𥁼
+ 0x2507d: "\x02\x01\x01\x02\x03\x04\x05\x04\x02\x05\x02\x02\x01", // 𥁽
+ 0x2507e: "\x03\x05\x01\x01\x01\x03\x04\x04\x02\x05\x02\x02\x01", // 𥁾
+ 0x2507f: "\x04\x01\x03\x04\x01\x02\x05\x01\x02\x05\x02\x02\x01", // 𥁿
+ 0x25080: "\x03\x05\x01\x01\x03\x05\x01\x01\x02\x05\x02\x02\x01", // 𥂀
+ 0x25081: "\x01\x02\x01\x03\x01\x02\x05\x01\x02\x05\x02\x02\x01", // 𥂁
+ 0x25082: "\x05\x04\x05\x02\x03\x03\x05\x03\x02\x05\x02\x02\x01", // 𥂂
+ 0x25083: "\x03\x03\x02\x03\x05\x04\x01\x05\x02\x02\x05\x02\x02\x01", // 𥂃
+ 0x25084: "\x02\x05\x01\x01\x01\x03\x02\x01\x05\x02\x05\x02\x02\x01", // 𥂄
+ 0x25085: "\x01\x02\x02\x01\x03\x04\x05\x01\x05\x02\x05\x02\x02\x01", // 𥂅
+ 0x25086: "\x04\x04\x01\x01\x01\x01\x05\x03\x04\x02\x05\x02\x02\x01", // 𥂆
+ 0x25087: "\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01\x01\x05\x01\x05", // 𥂇
+ 0x25088: "\x04\x04\x01\x01\x02\x05\x01\x01\x02\x04\x02\x05\x02\x02\x01", // 𥂈
+ 0x25089: "\x01\x05\x02\x05\x04\x01\x03\x05\x03\x04\x02\x05\x02\x02\x01", // 𥂉
+ 0x2508a: "\x01\x02\x01\x05\x04\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 𥂊
+ 0x2508b: "\x04\x04\x01\x03\x04\x01\x01\x02\x03\x04\x02\x05\x02\x02\x01", // 𥂋
+ 0x2508c: "\x01\x02\x03\x04\x03\x05\x04\x02\x05\x01\x02\x05\x02\x02\x01", // 𥂌
+ 0x2508d: "\x02\x05\x01\x02\x05\x01\x01\x03\x04\x04\x02\x05\x02\x02\x01", // 𥂍
+ 0x2508e: "\x01\x02\x01\x04\x03\x01\x01\x02\x05\x04\x02\x05\x02\x02\x01", // 𥂎
+ 0x2508f: "\x03\x03\x05\x04\x01\x04\x01\x03\x05\x04\x02\x05\x02\x02\x01", // 𥂏
+ 0x25090: "\x03\x03\x05\x04\x01\x04\x01\x03\x04\x04\x02\x05\x02\x02\x01", // 𥂐
+ 0x25091: "\x03\x04\x03\x01\x02\x03\x04\x03\x03\x03\x02\x05\x02\x02\x01", // 𥂑
+ 0x25092: "\x05\x04\x03\x02\x01\x05\x01\x01\x02\x02\x05\x02\x02\x01", // 𥂒
+ 0x25093: "\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x02\x05\x02\x02\x01", // 𥂓
+ 0x25094: "\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03\x02\x05\x02\x02\x01", // 𥂔
+ 0x25095: "\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04\x02\x05\x02\x02\x01", // 𥂕
+ 0x25096: "\x04\x04\x01\x05\x01\x01\x02\x04\x01\x03\x04\x02\x05\x02\x02\x01", // 𥂖
+ 0x25097: "\x02\x05\x03\x05\x02\x05\x01\x03\x05\x01\x01\x02\x05\x02\x02\x01", // 𥂗
+ 0x25098: "\x01\x02\x05\x03\x05\x01\x01\x04\x05\x03\x05\x02\x05\x02\x02\x01", // 𥂘
+ 0x25099: "\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x02\x02\x01", // 𥂙
+ 0x2509a: "\x04\x01\x04\x03\x01\x01\x02\x03\x01\x03\x04\x02\x05\x02\x02\x01", // 𥂚
+ 0x2509b: "\x05\x01\x01\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 𥂛
+ 0x2509c: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 𥂜
+ 0x2509d: "\x03\x04\x04\x03\x01\x02\x05\x03\x05\x01\x01\x02\x05\x02\x02\x01", // 𥂝
+ 0x2509e: "\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x02\x05\x02\x02\x01", // 𥂞
+ 0x2509f: "\x03\x03\x05\x04\x01\x04\x03\x05\x02\x05\x01\x02\x05\x02\x02\x01", // 𥂟
+ 0x250a0: "\x01\x02\x05\x01\x02\x05\x01\x03\x02\x05\x01\x02\x05\x02\x02\x01", // 𥂠
+ 0x250a1: "\x04\x01\x02\x05\x01\x02\x02\x05\x02\x05\x01\x02\x05\x02\x02\x01", // 𥂡
+ 0x250a2: "\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04\x02\x05\x02\x02\x01", // 𥂢
+ 0x250a3: "\x04\x01\x02\x05\x01\x05\x02\x01\x05\x02\x02\x05\x02\x02\x01", // 𥂣
+ 0x250a4: "\x03\x05\x01\x01\x02\x02\x05\x01\x05\x01\x01\x02\x05\x02\x02\x01", // 𥂤
+ 0x250a5: "\x02\x01\x03\x05\x04\x01\x05\x03\x04\x01\x05\x03\x04\x02\x05\x02\x02\x01", // 𥂥
+ 0x250a6: "\x04\x01\x02\x05\x01\x05\x02\x01\x03\x01\x03\x04\x02\x05\x02\x02\x01", // 𥂦
+ 0x250a7: "\x01\x02\x05\x03\x05\x01\x01\x01\x03\x02\x05\x01\x02\x05\x02\x02\x01", // 𥂧
+ 0x250a8: "\x05\x04\x01\x05\x04\x01\x03\x04\x01\x02\x05\x01\x02\x05\x02\x02\x01", // 𥂨
+ 0x250a9: "\x01\x02\x02\x05\x01\x03\x05\x03\x01\x01\x02\x05\x02\x02\x05\x02\x02\x01", // 𥂩
+ 0x250aa: "\x01\x02\x02\x01\x03\x05\x01\x01\x03\x01\x03\x04\x02\x05\x02\x02\x01", // 𥂪
+ 0x250ab: "\x01\x03\x05\x04\x01\x05\x03\x04\x01\x05\x03\x04\x02\x05\x02\x02\x01", // 𥂫
+ 0x250ac: "\x04\x01\x02\x05\x03\x04\x02\x05\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 𥂬
+ 0x250ad: "\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x01\x02\x05\x02\x02\x01", // 𥂭
+ 0x250ae: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x02\x05\x02\x02\x01", // 𥂮
+ 0x250af: "\x01\x02\x02\x01\x02\x01\x02\x05\x01\x01\x01\x02\x05\x02\x02\x01", // 𥂯
+ 0x250b0: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x02\x05\x01\x02\x05\x02\x02\x01", // 𥂰
+ 0x250b1: "\x01\x03\x04\x04\x03\x01\x01\x02\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 𥂱
+ 0x250b2: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 𥂲
+ 0x250b3: "\x04\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x02\x02\x01", // 𥂳
+ 0x250b4: "\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x03\x04\x02\x05\x02\x02\x01", // 𥂴
+ 0x250b5: "\x04\x04\x01\x05\x01\x01\x01\x01\x02\x03\x03\x03\x02\x05\x02\x02\x01", // 𥂵
+ 0x250b6: "\x04\x01\x02\x05\x05\x02\x02\x05\x03\x04\x01\x02\x05\x02\x02\x01", // 𥂶
+ 0x250b7: "\x03\x01\x02\x01\x02\x05\x01\x01\x05\x01\x05\x02\x05\x02\x02\x01", // 𥂷
+ 0x250b8: "\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x05\x03\x03\x02\x05\x02\x02\x01", // 𥂸
+ 0x250b9: "\x01\x02\x05\x03\x05\x01\x01\x01\x03\x03\x05\x01\x01\x02\x05\x02\x02\x01", // 𥂹
+ 0x250ba: "\x02\x05\x01\x01\x03\x05\x03\x03\x04\x03\x01\x03\x04\x02\x05\x02\x02\x01", // 𥂺
+ 0x250bb: "\x03\x03\x05\x04\x04\x05\x05\x01\x03\x05\x03\x03\x03\x04\x02\x05\x02\x02\x01", // 𥂻
+ 0x250bc: "\x03\x03\x02\x04\x05\x05\x01\x03\x05\x03\x03\x03\x04\x02\x05\x02\x02\x01", // 𥂼
+ 0x250bd: "\x03\x04\x04\x03\x05\x04\x02\x05\x05\x04\x05\x04\x05\x02\x05\x02\x02\x01", // 𥂽
+ 0x250be: "\x03\x04\x05\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04\x02\x05\x02\x02\x01", // 𥂾
+ 0x250bf: "\x01\x02\x01\x02\x03\x05\x04\x01\x04\x03\x01\x01\x02\x02\x05\x02\x02\x01", // 𥂿
+ 0x250c0: "\x04\x01\x02\x05\x03\x04\x03\x04\x02\x05\x05\x04\x01\x02\x05\x02\x02\x01", // 𥃀
+ 0x250c1: "\x01\x02\x01\x04\x03\x01\x01\x02\x05\x05\x04\x02\x03\x04\x02\x05\x02\x02\x01", // 𥃁
+ 0x250c2: "\x04\x01\x02\x05\x03\x04\x03\x04\x01\x02\x05\x01\x05\x02\x02\x05\x02\x02\x01", // 𥃂
+ 0x250c3: "\x03\x05\x03\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03\x02\x05\x02\x02\x01", // 𥃃
+ 0x250c4: "\x01\x02\x05\x03\x05\x01\x01\x03\x05\x05\x04\x02\x03\x04\x02\x05\x02\x02\x01", // 𥃄
+ 0x250c5: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x05\x04\x02\x05\x02\x02\x01", // 𥃅
+ 0x250c6: "\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01\x02\x05\x02\x02\x01", // 𥃆
+ 0x250c7: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 𥃇
+ 0x250c8: "\x02\x01\x05\x03\x01\x05\x02\x05\x03\x04\x04\x04\x04\x04\x01\x02\x05\x02\x02\x01", // 𥃈
+ 0x250c9: "\x01\x02\x05\x01\x02\x05\x03\x01\x01\x01\x04\x05\x04\x03\x04\x02\x05\x02\x02\x01", // 𥃉
+ 0x250ca: "\x05\x05\x04\x01\x03\x04\x04\x03\x01\x01\x02\x03\x01\x03\x04\x02\x05\x02\x02\x01", // 𥃊
+ 0x250cb: "\x03\x04\x01\x02\x05\x01\x02\x05\x02\x02\x01\x02\x01\x05\x03\x01\x05\x01\x05\x01", // 𥃋
+ 0x250cc: "\x04\x01\x04\x03\x01\x01\x02\x01\x03\x04\x03\x04\x02\x03\x04\x02\x05\x02\x02\x01", // 𥃌
+ 0x250cd: "\x05\x05\x03\x01\x02\x01\x04\x03\x01\x01\x02\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 𥃍
+ 0x250ce: "\x05\x05\x04\x01\x03\x04\x04\x03\x01\x01\x02\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 𥃎
+ 0x250cf: "\x03\x05\x04\x01\x02\x01\x04\x03\x01\x01\x02\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 𥃏
+ 0x250d0: "\x04\x01\x02\x01\x02\x05\x03\x04\x03\x04\x02\x05\x05\x04\x01\x02\x05\x02\x02\x01", // 𥃐
+ 0x250d1: "\x03\x03\x05\x04\x01\x04\x02\x05\x02\x02\x01\x03\x04\x05\x02\x03\x04\x03\x05\x04", // 𥃑
+ 0x250d2: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x05\x03\x04\x01\x05\x03\x04\x02\x05\x02\x02\x01", // 𥃒
+ 0x250d3: "\x02\x01\x05\x03\x01\x05\x02\x05\x01\x04\x03\x01\x04\x04\x05\x01\x02\x02\x05\x02\x02\x01", // 𥃓
+ 0x250d4: "\x03\x02\x01\x01\x02\x05\x03\x04\x05\x01\x01\x03\x02\x01\x05\x01\x01\x02\x05\x02\x02\x01", // 𥃔
+ 0x250d5: "\x01\x02\x01\x04\x05\x02\x01\x05\x05\x01\x02\x01\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 𥃕
+ 0x250d6: "\x03\x02\x01\x01\x03\x02\x01\x01\x01\x01\x05\x05\x01\x01\x05\x01\x01\x02\x05\x02\x02\x01", // 𥃖
+ 0x250d7: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x05\x03\x04\x01\x05\x03\x04\x02\x05\x02\x02\x01", // 𥃗
+ 0x250d8: "\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x04\x05\x04\x03\x03\x04\x02\x05\x02\x02\x01", // 𥃘
+ 0x250d9: "\x04\x03\x01\x01\x02\x01\x02\x05\x02\x02\x01\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𥃙
+ 0x250da: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x03\x05\x04\x01\x04\x03\x05\x05\x04\x02\x05\x02\x02\x01", // 𥃚
+ 0x250db: "\x03\x03\x05\x04\x01\x04\x03\x05\x05\x04\x02\x05\x02\x02\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 𥃛
+ 0x250dc: "\x03\x02\x01\x01\x03\x02\x01\x01\x02\x04\x01\x03\x04\x05\x01\x01\x05\x01\x01\x02\x05\x02\x02\x01", // 𥃜
+ 0x250dd: "\x03\x02\x01\x01\x05\x03\x02\x05\x01\x05\x01\x01\x01\x02\x05\x03\x05\x01\x01\x02\x05\x02\x02\x01", // 𥃝
+ 0x250de: "\x05\x01\x01\x02\x01\x04\x04\x04\x04\x02\x05\x02\x02\x01\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 𥃞
+ 0x250df: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x02\x02\x01", // 𥃟
+ 0x250e0: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01\x04\x03\x01\x03\x04\x02\x05\x02\x02\x01", // 𥃠
+ 0x250e1: "\x01\x02\x05\x01\x02\x05\x03\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x02\x05\x02\x02\x01", // 𥃡
+ 0x250e2: "\x03\x05\x02\x05\x01\x01\x05\x03\x05\x03\x05\x02\x05\x01\x03\x05\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01", // 𥃢
+ 0x250e3: "\x04\x03\x01\x01\x02\x01\x02\x05\x02\x02\x01\x04\x03\x01\x01\x02\x01\x02\x05\x02\x02\x01\x04\x03\x01\x01\x02\x01\x02\x05\x02\x02\x01", // 𥃣
+ 0x250e4: "\x02\x05\x01\x01\x01\x05", // 𥃤
+ 0x250e5: "\x02\x05\x01\x01\x01\x05", // 𥃥
+ 0x250e6: "\x03\x04\x02\x05\x01\x01\x01", // 𥃦
+ 0x250e7: "\x02\x05\x01\x01\x01\x05\x02", // 𥃧
+ 0x250e8: "\x02\x05\x01\x01\x01\x02\x04", // 𥃨
+ 0x250e9: "\x02\x05\x01\x01\x01\x01\x05", // 𥃩
+ 0x250ea: "\x02\x05\x01\x01\x01\x01\x02", // 𥃪
+ 0x250eb: "\x02\x05\x01\x01\x01\x05\x04", // 𥃫
+ 0x250ec: "\x02\x05\x01\x01\x01\x05\x02", // 𥃬
+ 0x250ed: "\x01\x02\x02\x05\x01\x01\x01", // 𥃭
+ 0x250ee: "\x03\x04\x02\x05\x01\x01\x01", // 𥃮
+ 0x250ef: "\x02\x05\x01\x01\x01\x03\x05", // 𥃯
+ 0x250f0: "\x04\x01\x02\x05\x01\x01\x01", // 𥃰
+ 0x250f1: "\x02\x05\x01\x01\x01\x03\x04", // 𥃱
+ 0x250f2: "\x02\x05\x01\x01\x01\x01\x03\x02", // 𥃲
+ 0x250f3: "\x02\x05\x01\x01\x01\x01\x01\x05", // 𥃳
+ 0x250f4: "\x02\x05\x01\x01\x01\x05\x01\x02", // 𥃴
+ 0x250f5: "\x02\x05\x01\x01\x01\x03\x05\x04", // 𥃵
+ 0x250f6: "\x02\x05\x01\x01\x01\x03\x03\x05", // 𥃶
+ 0x250f7: "\x02\x05\x01\x01\x01\x01\x02\x04", // 𥃷
+ 0x250f8: "\x02\x05\x01\x01\x01\x05\x02\x05", // 𥃸
+ 0x250f9: "\x02\x05\x01\x01\x01\x03\x02\x02", // 𥃹
+ 0x250fa: "\x02\x05\x01\x01\x01\x01\x03\x05", // 𥃺
+ 0x250fb: "\x02\x03\x04\x02\x05\x01\x01\x01", // 𥃻
+ 0x250fc: "\x02\x05\x01\x01\x01\x03\x05\x04", // 𥃼
+ 0x250fd: "\x02\x05\x01\x01\x01\x01\x02\x01", // 𥃽
+ 0x250fe: "\x02\x05\x01\x01\x01\x01\x02\x01", // 𥃾
+ 0x250ff: "\x02\x05\x01\x01\x01\x01\x02\x01", // 𥃿
+ 0x25100: "\x02\x05\x01\x01\x01\x02\x01\x05", // 𥄀
+ 0x25101: "\x02\x05\x01\x01\x01\x05\x03\x04", // 𥄁
+ 0x25102: "\x01\x02\x02\x05\x01\x01\x01\x01", // 𥄂
+ 0x25103: "\x03\x04\x04\x03\x02\x05\x01\x01\x01", // 𥄃
+ 0x25104: "\x02\x05\x01\x01\x01\x03\x03\x02\x04", // 𥄄
+ 0x25105: "\x02\x05\x01\x01\x01\x03\x05\x01\x03", // 𥄅
+ 0x25106: "\x02\x05\x01\x01\x01\x01\x05\x05\x04", // 𥄆
+ 0x25107: "\x03\x05\x01\x05\x02\x05\x01\x01\x01", // 𥄇
+ 0x25108: "\x04\x01\x03\x04\x02\x05\x01\x01\x01", // 𥄈
+ 0x25109: "\x02\x05\x01\x01\x01\x05\x05\x05\x05", // 𥄉
+ 0x2510a: "\x02\x05\x01\x01\x01\x01\x03\x02\x02", // 𥄊
+ 0x2510b: "\x02\x05\x01\x01\x01\x02\x05\x03\x04", // 𥄋
+ 0x2510c: "\x02\x05\x01\x01\x01\x03\x05\x01\x02", // 𥄌
+ 0x2510d: "\x02\x05\x01\x01\x01\x03\x04\x03\x02", // 𥄍
+ 0x2510e: "\x02\x05\x01\x01\x01\x02\x01\x05\x04", // 𥄎
+ 0x2510f: "\x02\x05\x01\x01\x01\x01\x02\x05\x04", // 𥄏
+ 0x25110: "\x02\x05\x01\x01\x01\x04\x01\x03\x04", // 𥄐
+ 0x25111: "\x02\x05\x01\x01\x01\x01\x01\x03\x04", // 𥄑
+ 0x25112: "\x02\x05\x01\x01\x01\x03\x02\x01\x05", // 𥄒
+ 0x25113: "\x01\x03\x02\x04\x02\x05\x01\x01\x01", // 𥄓
+ 0x25114: "\x02\x05\x01\x01\x01\x01\x02\x05\x02", // 𥄔
+ 0x25115: "\x02\x01\x02\x01\x02\x05\x01\x01\x01", // 𥄕
+ 0x25116: "\x02\x05\x01\x01\x01\x03\x05\x01\x02", // 𥄖
+ 0x25117: "\x02\x05\x01\x01\x01\x05\x04\x04\x04", // 𥄗
+ 0x25118: "\x03\x05\x03\x05\x02\x05\x01\x01\x01", // 𥄘
+ 0x25119: "\x02\x05\x01\x01\x01\x01\x02\x03\x05", // 𥄙
+ 0x2511a: "\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 𥄚
+ 0x2511b: "\x02\x05\x01\x01\x01\x05\x04\x05\x02", // 𥄛
+ 0x2511c: "\x02\x05\x01\x01\x01\x05\x04\x01\x02", // 𥄜
+ 0x2511d: "\x02\x05\x01\x01\x01\x01\x02\x05\x02", // 𥄝
+ 0x2511e: "\x02\x05\x01\x01\x01\x02\x05\x05\x04", // 𥄞
+ 0x2511f: "\x03\x04\x05\x03\x02\x05\x01\x01\x01", // 𥄟
+ 0x25120: "\x02\x05\x01\x01\x01\x05\x05\x04\x05", // 𥄠
+ 0x25121: "\x02\x05\x01\x01\x01\x02\x05\x01\x02", // 𥄡
+ 0x25122: "\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 𥄢
+ 0x25123: "\x02\x05\x01\x01\x01\x04\x03\x03\x04", // 𥄣
+ 0x25124: "\x03\x05\x01\x02\x05\x01\x01\x01", // 𥄤
+ 0x25125: "\x03\x01\x01\x05\x02\x05\x01\x01\x01", // 𥄥
+ 0x25126: "\x02\x05\x01\x01\x01\x04\x01\x03\x05", // 𥄦
+ 0x25127: "\x02\x05\x01\x01\x01\x04\x04\x04\x04", // 𥄧
+ 0x25128: "\x02\x05\x01\x01\x01\x05\x02\x01\x01", // 𥄨
+ 0x25129: "\x02\x05\x01\x01\x01\x05\x05\x04\x05", // 𥄩
+ 0x2512a: "\x01\x02\x05\x01\x02\x05\x01\x01\x01", // 𥄪
+ 0x2512b: "\x02\x05\x01\x01\x01\x03\x05\x04", // 𥄫
+ 0x2512c: "\x02\x05\x01\x01\x01\x01\x02\x05\x01", // 𥄬
+ 0x2512d: "\x02\x05\x01\x01\x01\x03\x01\x01\x02", // 𥄭
+ 0x2512e: "\x02\x05\x01\x01\x01\x03\x01\x02\x01", // 𥄮
+ 0x2512f: "\x02\x05\x01\x01\x01\x03\x04\x04\x05", // 𥄯
+ 0x25130: "\x02\x05\x01\x01\x01\x03\x02\x01\x01", // 𥄰
+ 0x25131: "\x05\x01\x05\x03\x02\x02\x05\x01\x01\x01", // 𥄱
+ 0x25132: "\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01", // 𥄲
+ 0x25133: "\x02\x05\x02\x02\x01\x02\x05\x03\x04", // 𥄳
+ 0x25134: "\x02\x05\x01\x01\x01\x04\x04\x05\x03\x05", // 𥄴
+ 0x25135: "\x02\x05\x01\x01\x01\x01\x02\x03\x05\x04", // 𥄵
+ 0x25136: "\x02\x05\x01\x01\x01\x05\x01\x02\x05\x01", // 𥄶
+ 0x25137: "\x02\x05\x01\x01\x01\x01\x05\x01\x05", // 𥄷
+ 0x25138: "\x02\x05\x01\x01\x01\x03\x05\x03\x05\x02", // 𥄸
+ 0x25139: "\x02\x05\x01\x01\x01\x03\x05\x05\x01\x05", // 𥄹
+ 0x2513a: "\x02\x05\x01\x01\x01\x03\x04\x01\x01\x02", // 𥄺
+ 0x2513b: "\x02\x05\x01\x01\x01\x04\x04\x05\x03\x05", // 𥄻
+ 0x2513c: "\x02\x05\x01\x01\x01\x03\x03\x05\x04\x04", // 𥄼
+ 0x2513d: "\x01\x01\x01\x02\x05\x01\x01\x01\x05\x04", // 𥄽
+ 0x2513e: "\x05\x02\x02\x01\x03\x02\x05\x01\x01\x01", // 𥄾
+ 0x2513f: "\x02\x05\x01\x01\x01\x05\x01\x03\x01\x01", // 𥄿
+ 0x25140: "\x02\x05\x01\x01\x01\x02\x02\x05\x03\x04", // 𥅀
+ 0x25141: "\x02\x05\x01\x01\x01\x03\x01\x02\x01\x01", // 𥅁
+ 0x25142: "\x02\x05\x01\x01\x01\x03\x02\x05\x02\x05", // 𥅂
+ 0x25143: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01", // 𥅃
+ 0x25144: "\x05\x03\x01\x05\x04\x02\x05\x01\x01\x01", // 𥅄
+ 0x25145: "\x02\x05\x01\x01\x01\x01\x01\x02\x05\x02", // 𥅅
+ 0x25146: "\x02\x05\x01\x01\x01\x02\x05\x02\x01\x01", // 𥅆
+ 0x25147: "\x02\x05\x01\x01\x01\x03\x03\x02\x05\x03", // 𥅇
+ 0x25148: "\x02\x05\x01\x01\x01\x04\x01\x04\x03\x01", // 𥅈
+ 0x25149: "\x03\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 𥅉
+ 0x2514a: "\x02\x05\x01\x01\x01\x01\x03\x02\x04\x01", // 𥅊
+ 0x2514b: "\x02\x05\x01\x01\x01\x01\x02\x02\x01\x05", // 𥅋
+ 0x2514c: "\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01", // 𥅌
+ 0x2514d: "\x03\x04\x01\x05\x04\x02\x05\x01\x01\x01", // 𥅍
+ 0x2514e: "\x02\x05\x01\x01\x01\x03\x04\x01\x01\x05", // 𥅎
+ 0x2514f: "\x02\x05\x01\x01\x01\x01\x02\x05\x01\x01", // 𥅏
+ 0x25150: "\x01\x05\x03\x05\x04\x02\x05\x01\x01\x01", // 𥅐
+ 0x25151: "\x02\x05\x01\x01\x01\x02\x05\x01\x05\x01", // 𥅑
+ 0x25152: "\x02\x05\x01\x01\x01\x03\x01\x02\x05\x02", // 𥅒
+ 0x25153: "\x02\x05\x01\x01\x01\x03\x01\x05\x02\x05", // 𥅓
+ 0x25154: "\x02\x05\x01\x01\x01\x03\x02\x01\x02\x01", // 𥅔
+ 0x25155: "\x03\x03\x05\x01\x01\x02\x05\x01\x01\x01", // 𥅕
+ 0x25156: "\x02\x05\x01\x01\x01\x04\x01\x01\x02\x01", // 𥅖
+ 0x25157: "\x02\x05\x01\x01\x01\x05\x03\x02\x05\x04", // 𥅗
+ 0x25158: "\x02\x05\x01\x01\x01\x03\x05\x02\x03\x04", // 𥅘
+ 0x25159: "\x02\x05\x01\x01\x01\x01\x02\x05\x03\x04", // 𥅙
+ 0x2515a: "\x02\x05\x01\x01\x01\x01\x03\x04\x01\x01\x05", // 𥅚
+ 0x2515b: "\x02\x05\x01\x01\x01\x01\x03\x01\x05\x03\x04", // 𥅛
+ 0x2515c: "\x02\x05\x01\x01\x01\x01\x03\x01\x05\x03\x04", // 𥅜
+ 0x2515d: "\x01\x01\x03\x01\x01\x02\x02\x05\x01\x01\x01", // 𥅝
+ 0x2515e: "\x02\x05\x01\x01\x01\x01\x01\x02\x01\x05\x04", // 𥅞
+ 0x2515f: "\x02\x05\x01\x01\x01\x04\x01\x03\x04\x03\x04", // 𥅟
+ 0x25160: "\x02\x05\x01\x01\x01\x03\x03\x01\x02\x05\x01", // 𥅠
+ 0x25161: "\x02\x05\x01\x01\x01\x01\x03\x02\x05\x02\x02", // 𥅡
+ 0x25162: "\x02\x05\x01\x01\x01\x03\x04\x05\x02\x05\x04", // 𥅢
+ 0x25163: "\x02\x05\x01\x01\x01\x05\x01\x03\x01\x02\x01", // 𥅣
+ 0x25164: "\x01\x02\x01\x02\x05\x05\x01\x01\x05\x03\x04", // 𥅤
+ 0x25165: "\x02\x05\x01\x01\x01\x04\x04\x05\x05\x03\x01", // 𥅥
+ 0x25166: "\x02\x05\x01\x01\x01\x03\x01\x01\x02\x03\x04", // 𥅦
+ 0x25167: "\x02\x05\x01\x01\x01\x03\x02\x05\x02\x02\x01", // 𥅧
+ 0x25168: "\x02\x05\x01\x01\x01\x01\x02\x05\x01\x01\x01", // 𥅨
+ 0x25169: "\x02\x05\x01\x01\x01\x03\x02\x01\x05\x03\x04", // 𥅩
+ 0x2516a: "\x02\x05\x01\x01\x01\x05\x02\x03\x01\x03\x04", // 𥅪
+ 0x2516b: "\x02\x05\x02\x02\x01\x05\x03\x05\x03\x05\x03", // 𥅫
+ 0x2516c: "\x02\x05\x01\x01\x01\x03\x05\x01\x01\x05\x04", // 𥅬
+ 0x2516d: "\x02\x05\x01\x01\x01\x01\x01\x02\x05\x01\x01", // 𥅭
+ 0x2516e: "\x01\x03\x05\x04\x02\x02\x02\x05\x01\x01\x01", // 𥅮
+ 0x2516f: "\x02\x05\x01\x01\x01\x01\x01\x03\x05\x03\x04", // 𥅯
+ 0x25170: "\x01\x02\x01\x02\x05\x01\x01\x01\x05\x03\x04", // 𥅰
+ 0x25171: "\x05\x02\x03\x02\x01\x03\x02\x05\x01\x01\x01", // 𥅱
+ 0x25172: "\x02\x05\x01\x01\x01\x03\x01\x01\x02\x03\x04", // 𥅲
+ 0x25173: "\x02\x05\x01\x01\x01\x01\x01\x03\x01\x01\x02", // 𥅳
+ 0x25174: "\x02\x05\x01\x01\x01\x01\x04\x03\x01\x03\x04", // 𥅴
+ 0x25175: "\x02\x01\x02\x01\x03\x04\x02\x05\x01\x01\x01", // 𥅵
+ 0x25176: "\x02\x01\x02\x05\x01\x01\x01\x01\x01\x03\x02", // 𥅶
+ 0x25177: "\x02\x03\x04\x03\x04\x01\x02\x05\x01\x01\x01", // 𥅷
+ 0x25178: "\x02\x05\x01\x01\x01\x03\x01\x02\x01\x02\x01", // 𥅸
+ 0x25179: "\x02\x05\x01\x01\x01\x03\x05\x04\x02\x05\x02", // 𥅹
+ 0x2517a: "\x02\x05\x01\x01\x01\x03\x05\x05\x02\x01\x05", // 𥅺
+ 0x2517b: "\x02\x05\x01\x01\x01\x04\x01\x05\x04\x03\x05", // 𥅻
+ 0x2517c: "\x02\x05\x01\x01\x01\x04\x03\x01\x02\x03\x04", // 𥅼
+ 0x2517d: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01", // 𥅽
+ 0x2517e: "\x02\x05\x01\x01\x01\x04\x01\x03\x01\x02\x01", // 𥅾
+ 0x2517f: "\x02\x05\x01\x01\x01\x01\x02\x01\x03\x05\x04", // 𥅿
+ 0x25180: "\x02\x05\x01\x01\x01\x04\x04\x01\x01\x02\x01", // 𥆀
+ 0x25181: "\x02\x05\x01\x01\x01\x01\x03\x05\x04\x02\x02", // 𥆁
+ 0x25182: "\x02\x05\x01\x01\x01\x03\x02\x03\x01\x02\x01", // 𥆂
+ 0x25183: "\x02\x05\x01\x01\x01\x05\x03\x01\x02\x05\x01", // 𥆃
+ 0x25184: "\x02\x05\x01\x01\x01\x02\x04\x03\x01\x03\x05", // 𥆄
+ 0x25185: "\x01\x02\x01\x02\x05\x01\x02\x05\x01\x01\x01", // 𥆅
+ 0x25186: "\x02\x05\x01\x01\x01\x01\x05\x04\x03\x02\x05", // 𥆆
+ 0x25187: "\x01\x02\x02\x01\x03\x04\x02\x05\x01\x01\x01", // 𥆇
+ 0x25188: "\x02\x05\x01\x01\x01\x01\x02\x02\x01\x01\x05", // 𥆈
+ 0x25189: "\x02\x05\x01\x01\x01\x03\x02\x03\x05\x05\x04", // 𥆉
+ 0x2518a: "\x02\x05\x01\x01\x01\x02\x01\x02\x01\x05\x04", // 𥆊
+ 0x2518b: "\x02\x05\x01\x01\x01\x01\x03\x05\x03\x03\x03\x04", // 𥆋
+ 0x2518c: "\x02\x05\x01\x01\x01\x03\x05\x03\x05\x01\x01\x02", // 𥆌
+ 0x2518d: "\x02\x05\x01\x01\x01\x01\x02\x02\x01\x01\x01\x05", // 𥆍
+ 0x2518e: "\x02\x05\x01\x01\x01\x05\x05\x04\x04\x04\x04\x05", // 𥆎
+ 0x2518f: "\x02\x05\x01\x01\x01\x01\x03\x05\x05\x03\x04", // 𥆏
+ 0x25190: "\x02\x05\x01\x01\x01\x01\x02\x05\x01\x02\x05\x01", // 𥆐
+ 0x25191: "\x02\x05\x01\x01\x01\x03\x01\x02\x01\x05\x04", // 𥆑
+ 0x25192: "\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x03\x05", // 𥆒
+ 0x25193: "\x02\x05\x01\x01\x01\x03\x02\x02\x05\x01\x01\x02", // 𥆓
+ 0x25194: "\x02\x05\x01\x01\x01\x01\x02\x01\x03\x05\x02\x01", // 𥆔
+ 0x25195: "\x04\x01\x02\x05\x01\x04\x05\x02\x05\x01\x01\x01", // 𥆕
+ 0x25196: "\x02\x05\x01\x01\x01\x01\x02\x05\x01\x04\x03\x01", // 𥆖
+ 0x25197: "\x01\x03\x04\x02\x05\x01\x01\x01\x02\x01\x05\x04", // 𥆗
+ 0x25198: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x04", // 𥆘
+ 0x25199: "\x02\x05\x01\x01\x01\x01\x03\x05\x03\x03\x03\x04", // 𥆙
+ 0x2519a: "\x02\x05\x01\x01\x01\x04\x04\x01\x01\x01\x02\x01", // 𥆚
+ 0x2519b: "\x03\x03\x02\x03\x05\x05\x04\x02\x05\x01\x01\x01", // 𥆛
+ 0x2519c: "\x02\x05\x01\x01\x01\x03\x03\x02\x04\x01\x01\x02\x01", // 𥆜
+ 0x2519d: "\x04\x04\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01", // 𥆝
+ 0x2519e: "\x02\x05\x02\x02\x01\x02\x01\x03\x02\x05\x02\x02\x01", // 𥆞
+ 0x2519f: "\x02\x05\x01\x01\x01\x04\x03\x02\x05\x01\x03\x05", // 𥆟
+ 0x251a0: "\x02\x05\x01\x01\x01\x03\x05\x01\x05\x02\x05\x01", // 𥆠
+ 0x251a1: "\x02\x05\x01\x01\x01\x03\x04\x01\x05\x02\x05\x01", // 𥆡
+ 0x251a2: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 𥆢
+ 0x251a3: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x05\x04", // 𥆣
+ 0x251a4: "\x02\x05\x01\x01\x02\x01\x01\x02\x05\x01\x01\x01", // 𥆤
+ 0x251a5: "\x02\x05\x01\x01\x01\x01\x02\x01\x02\x01\x03\x04", // 𥆥
+ 0x251a6: "\x02\x05\x01\x01\x01\x01\x03\x05\x01\x01\x02\x01", // 𥆦
+ 0x251a7: "\x02\x05\x01\x01\x01\x04\x02\x05\x01\x01\x02\x01", // 𥆧
+ 0x251a8: "\x02\x05\x01\x01\x01\x04\x01\x05\x04\x03\x02\x05", // 𥆨
+ 0x251a9: "\x02\x05\x01\x01\x01\x02\x02\x05\x01\x01\x03\x05", // 𥆩
+ 0x251aa: "\x02\x05\x01\x01\x01\x01\x02\x03\x04\x02\x05\x01", // 𥆪
+ 0x251ab: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x02\x03\x04", // 𥆫
+ 0x251ac: "\x02\x05\x01\x01\x01\x03\x04\x04\x03\x05\x02\x01", // 𥆬
+ 0x251ad: "\x02\x05\x01\x01\x01\x01\x02\x01\x01\x01\x03\x04", // 𥆭
+ 0x251ae: "\x02\x05\x01\x01\x01\x01\x02\x01\x02\x01\x01\x05", // 𥆮
+ 0x251af: "\x02\x05\x01\x01\x01\x01\x05\x03\x05\x01\x02\x01", // 𥆯
+ 0x251b0: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x03\x02\x05", // 𥆰
+ 0x251b1: "\x02\x05\x01\x01\x01\x02\x05\x02\x03\x04\x04\x05", // 𥆱
+ 0x251b2: "\x02\x05\x01\x01\x01\x03\x05\x03\x03\x02\x05\x02", // 𥆲
+ 0x251b3: "\x04\x01\x03\x04\x04\x02\x04\x02\x05\x01\x01\x01", // 𥆳
+ 0x251b4: "\x01\x03\x04\x04\x01\x02\x04\x02\x05\x01\x01\x01", // 𥆴
+ 0x251b5: "\x02\x05\x01\x01\x01\x04\x03\x03\x04\x01\x03\x02", // 𥆵
+ 0x251b6: "\x02\x05\x01\x01\x01\x03\x04\x04\x03\x01\x01\x02", // 𥆶
+ 0x251b7: "\x02\x05\x01\x01\x01\x05\x01\x01\x04\x05\x05\x04", // 𥆷
+ 0x251b8: "\x02\x05\x01\x01\x01\x05\x03\x01\x05\x01\x03\x04", // 𥆸
+ 0x251b9: "\x02\x05\x01\x01\x01\x02\x05\x02\x03\x05\x04", // 𥆹
+ 0x251ba: "\x02\x05\x01\x01\x01\x01\x02\x05\x03\x05\x01\x01", // 𥆺
+ 0x251bb: "\x02\x05\x01\x01\x01\x02\x05\x01\x03\x02\x05\x01", // 𥆻
+ 0x251bc: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x02\x01\x01", // 𥆼
+ 0x251bd: "\x02\x05\x01\x01\x01\x02\x05\x01\x03\x04\x04\x05", // 𥆽
+ 0x251be: "\x02\x05\x01\x01\x01\x05\x03\x04\x04\x05\x04\x04", // 𥆾
+ 0x251bf: "\x02\x05\x01\x01\x01\x01\x02\x04\x01\x03\x04\x04", // 𥆿
+ 0x251c0: "\x02\x05\x01\x01\x01\x01\x02\x02\x04\x01\x05", // 𥇀
+ 0x251c1: "\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x02\x01", // 𥇁
+ 0x251c2: "\x02\x05\x01\x01\x01\x02\x05\x01\x05\x03\x02\x02", // 𥇂
+ 0x251c3: "\x02\x05\x01\x01\x01\x03\x05\x03\x04\x03\x03\x04", // 𥇃
+ 0x251c4: "\x02\x05\x01\x01\x01\x05\x04\x02\x05\x01\x01\x01", // 𥇄
+ 0x251c5: "\x03\x05\x02\x05\x01\x03\x05\x02\x05\x01\x01\x01", // 𥇅
+ 0x251c6: "\x02\x05\x01\x01\x01\x04\x03\x01\x02\x03\x04\x05", // 𥇆
+ 0x251c7: "\x02\x05\x01\x01\x01\x04\x04\x01\x02\x03\x04\x03", // 𥇇
+ 0x251c8: "\x02\x05\x01\x01\x01\x02\x05\x01\x05\x02\x05\x01", // 𥇈
+ 0x251c9: "\x02\x05\x01\x01\x01\x04\x03\x01\x01\x02\x01\x03\x05", // 𥇉
+ 0x251ca: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x05\x01\x05", // 𥇊
+ 0x251cb: "\x02\x05\x01\x01\x01\x04\x01\x05\x02\x05\x01\x01\x01", // 𥇋
+ 0x251cc: "\x02\x05\x01\x01\x01\x03\x05\x03\x02\x01\x05\x01\x01", // 𥇌
+ 0x251cd: "\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x02", // 𥇍
+ 0x251ce: "\x02\x05\x01\x01\x01\x05\x01\x05\x03\x01\x02\x03\x04", // 𥇎
+ 0x251cf: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x04\x03\x03\x04", // 𥇏
+ 0x251d0: "\x02\x05\x01\x01\x01\x03\x03\x01\x02\x04\x05\x04", // 𥇐
+ 0x251d1: "\x02\x05\x01\x01\x01\x01\x02\x05\x02\x03\x04\x03\x04", // 𥇑
+ 0x251d2: "\x02\x05\x01\x01\x01\x04\x01\x04\x03\x01\x05\x03\x01", // 𥇒
+ 0x251d3: "\x02\x05\x01\x01\x01\x04\x04\x05\x01\x02\x01\x03\x04", // 𥇓
+ 0x251d4: "\x02\x05\x01\x01\x01\x01\x02\x01\x01\x01\x05\x03\x04", // 𥇔
+ 0x251d5: "\x02\x05\x01\x01\x01\x03\x01\x01\x02\x05\x02\x02\x02", // 𥇕
+ 0x251d6: "\x03\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x01\x01", // 𥇖
+ 0x251d7: "\x02\x05\x01\x01\x01\x05\x01\x03\x02\x05\x01\x02\x01", // 𥇗
+ 0x251d8: "\x02\x05\x01\x01\x01\x02\x05\x03\x01\x02\x03\x04\x01", // 𥇘
+ 0x251d9: "\x01\x02\x05\x01\x01\x05\x03\x04\x02\x05\x01\x01\x01", // 𥇙
+ 0x251da: "\x02\x05\x01\x01\x01\x01\x03\x04\x01\x02\x05\x01\x02", // 𥇚
+ 0x251db: "\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x04", // 𥇛
+ 0x251dc: "\x02\x05\x01\x01\x01\x04\x01\x02\x05\x01\x05\x02\x01", // 𥇜
+ 0x251dd: "\x02\x05\x01\x01\x01\x01\x03\x04\x04\x03\x01\x01\x02", // 𥇝
+ 0x251de: "\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x01", // 𥇞
+ 0x251df: "\x02\x05\x01\x01\x01\x04\x01\x03\x04\x03\x04\x05\x03", // 𥇟
+ 0x251e0: "\x03\x05\x04\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01", // 𥇠
+ 0x251e1: "\x02\x05\x02\x02\x01\x01\x03\x04\x04\x03\x01\x01\x02", // 𥇡
+ 0x251e2: "\x02\x05\x01\x01\x01\x01\x05\x01\x02\x03\x03\x01\x02", // 𥇢
+ 0x251e3: "\x02\x05\x01\x01\x01\x05\x01\x03\x05\x02\x02\x05\x02", // 𥇣
+ 0x251e4: "\x02\x05\x01\x01\x01\x05\x01\x03\x02\x05\x01\x02\x01", // 𥇤
+ 0x251e5: "\x02\x05\x01\x01\x01\x03\x04\x01\x02\x05\x01\x03\x04", // 𥇥
+ 0x251e6: "\x02\x05\x01\x01\x01\x01\x02\x03\x04\x03\x03\x01\x02", // 𥇦
+ 0x251e7: "\x02\x05\x01\x01\x01\x01\x03\x04\x01\x01\x02\x03\x04", // 𥇧
+ 0x251e8: "\x02\x01\x05\x03\x04\x03\x03\x04\x02\x05\x01\x01\x01", // 𥇨
+ 0x251e9: "\x02\x05\x01\x01\x01\x03\x02\x01\x05\x01\x01\x01\x05", // 𥇩
+ 0x251ea: "\x02\x05\x01\x01\x01\x03\x01\x01\x01\x02\x01\x01\x01", // 𥇪
+ 0x251eb: "\x02\x05\x01\x01\x01\x04\x03\x01\x02\x05\x03\x04", // 𥇫
+ 0x251ec: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x02\x03\x04", // 𥇬
+ 0x251ed: "\x02\x05\x01\x01\x01\x03\x01\x01\x03\x04\x02\x05\x01", // 𥇭
+ 0x251ee: "\x03\x04\x03\x04\x02\x02\x01\x03\x02\x05\x01\x01\x01", // 𥇮
+ 0x251ef: "\x02\x05\x01\x01\x01\x03\x05\x03\x03\x03\x05\x03\x03", // 𥇯
+ 0x251f0: "\x02\x05\x01\x01\x01\x03\x05\x03\x03\x04\x05\x04\x04", // 𥇰
+ 0x251f1: "\x02\x05\x01\x01\x01\x04\x01\x05\x04\x01\x02\x03\x04", // 𥇱
+ 0x251f2: "\x04\x04\x01\x05\x03\x02\x05\x04\x02\x05\x01\x01\x01", // 𥇲
+ 0x251f3: "\x02\x05\x01\x01\x01\x05\x01\x01\x04\x05\x02\x05\x02", // 𥇳
+ 0x251f4: "\x02\x05\x01\x01\x01\x05\x02\x01\x03\x03\x03\x01\x02", // 𥇴
+ 0x251f5: "\x02\x05\x01\x01\x01\x05\x01\x03\x01\x02\x01\x05\x02", // 𥇵
+ 0x251f6: "\x02\x05\x01\x01\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 𥇶
+ 0x251f7: "\x02\x05\x01\x01\x01\x02\x05\x02\x01\x03\x02\x05\x01", // 𥇷
+ 0x251f8: "\x02\x05\x01\x01\x01\x03\x02\x01\x02\x01\x02\x05\x02", // 𥇸
+ 0x251f9: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x01\x02\x04", // 𥇹
+ 0x251fa: "\x02\x05\x01\x01\x01\x05\x02\x01\x03\x01\x03\x04\x04", // 𥇺
+ 0x251fb: "\x02\x05\x01\x01\x01\x04\x04\x05\x02\x05\x01\x02\x01", // 𥇻
+ 0x251fc: "\x02\x05\x01\x01\x01\x01\x03\x02\x05\x01\x01\x03\x02", // 𥇼
+ 0x251fd: "\x03\x04\x04\x03\x05\x02\x01\x05\x02\x05\x01\x01\x01", // 𥇽
+ 0x251fe: "\x02\x05\x01\x01\x01\x03\x01\x01\x05\x03\x01\x01\x05", // 𥇾
+ 0x251ff: "\x02\x05\x01\x01\x01\x01\x02\x05\x01\x01\x05\x03\x04", // 𥇿
+ 0x25200: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x01\x03\x04", // 𥈀
+ 0x25201: "\x02\x05\x01\x01\x01\x03\x05\x05\x02\x04\x05\x04", // 𥈁
+ 0x25202: "\x02\x05\x01\x01\x01\x05\x02\x02\x05\x01\x05\x04\x01", // 𥈂
+ 0x25203: "\x02\x05\x01\x01\x01\x04\x04\x05\x03\x04\x03\x04\x05\x04", // 𥈃
+ 0x25204: "\x01\x02\x02\x01\x03\x04\x05\x01\x05\x02\x05\x01\x01\x01", // 𥈄
+ 0x25205: "\x02\x05\x01\x01\x01\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 𥈅
+ 0x25206: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 𥈆
+ 0x25207: "\x02\x05\x01\x01\x01\x01\x03\x02\x05\x02\x02\x01\x03\x04", // 𥈇
+ 0x25208: "\x02\x05\x01\x01\x01\x03\x05\x02\x05\x01\x04\x04\x04\x04", // 𥈈
+ 0x25209: "\x02\x05\x01\x01\x01\x03\x05\x02\x05\x03\x04\x01\x03\x04", // 𥈉
+ 0x2520a: "\x02\x05\x01\x01\x01\x01\x01\x02\x03\x02\x01\x05\x01\x01", // 𥈊
+ 0x2520b: "\x02\x05\x01\x01\x01\x03\x02\x05\x01\x02\x05\x02\x01\x04", // 𥈋
+ 0x2520c: "\x02\x05\x01\x01\x01\x03\x02\x02\x03\x05\x04\x03\x03\x03", // 𥈌
+ 0x2520d: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x03\x05\x04", // 𥈍
+ 0x2520e: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 𥈎
+ 0x2520f: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x01\x03\x04", // 𥈏
+ 0x25210: "\x02\x05\x01\x01\x01\x02\x01\x02\x01\x01\x05\x01\x02\x03\x04", // 𥈐
+ 0x25211: "\x02\x05\x01\x01\x01\x03\x05\x01\x03\x03\x01\x01\x03\x04", // 𥈑
+ 0x25212: "\x02\x05\x01\x01\x01\x05\x05\x04\x05\x05\x04\x01\x03\x02", // 𥈒
+ 0x25213: "\x02\x05\x01\x01\x01\x02\x05\x01\x02\x02\x05\x02\x05\x01", // 𥈓
+ 0x25214: "\x02\x05\x01\x01\x01\x01\x02\x05\x01\x01\x05\x03\x01\x05", // 𥈔
+ 0x25215: "\x02\x05\x01\x01\x01\x03\x05\x01\x05\x02\x05\x02\x02\x01", // 𥈕
+ 0x25216: "\x02\x05\x01\x01\x01\x01\x03\x04\x04\x03\x01\x01\x01\x02", // 𥈖
+ 0x25217: "\x02\x05\x01\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𥈗
+ 0x25218: "\x02\x05\x01\x01\x01\x04\x01\x02\x05\x01\x01\x02\x03\x04", // 𥈘
+ 0x25219: "\x02\x05\x01\x01\x01\x01\x02\x05\x01\x02\x03\x04\x02\x02", // 𥈙
+ 0x2521a: "\x02\x05\x01\x01\x01\x04\x01\x03\x03\x04\x04\x05\x04", // 𥈚
+ 0x2521b: "\x02\x05\x01\x01\x01\x04\x01\x03\x04\x02\x05\x01\x01\x01", // 𥈛
+ 0x2521c: "\x01\x02\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x01\x03\x04", // 𥈜
+ 0x2521d: "\x02\x05\x01\x01\x01\x03\x05\x03\x03\x04\x04\x05\x04\x04", // 𥈝
+ 0x2521e: "\x02\x05\x01\x01\x01\x01\x02\x02\x01\x02\x05\x02\x05\x02", // 𥈞
+ 0x2521f: "\x02\x05\x01\x01\x01\x04\x04\x05\x04\x03\x03\x04\x05\x04", // 𥈟
+ 0x25220: "\x02\x01\x05\x03\x01\x03\x04\x03\x04\x02\x05\x01\x01\x01", // 𥈠
+ 0x25221: "\x02\x05\x01\x01\x01\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 𥈡
+ 0x25222: "\x02\x05\x01\x01\x01\x04\x03\x01\x01\x02\x01\x01\x03\x04", // 𥈢
+ 0x25223: "\x02\x05\x01\x01\x01\x01\x02\x01\x02\x01\x02\x05\x01\x01", // 𥈣
+ 0x25224: "\x02\x05\x01\x01\x01\x02\x01\x05\x01\x01\x02\x01\x03\x04", // 𥈤
+ 0x25225: "\x02\x05\x01\x01\x01\x04\x04\x02\x05\x01\x01\x05\x03\x04", // 𥈥
+ 0x25226: "\x02\x05\x01\x01\x01\x03\x04\x04\x03\x02\x05\x02\x01\x01", // 𥈦
+ 0x25227: "\x02\x05\x01\x01\x01\x03\x01\x01\x03\x02\x05\x01\x01\x01", // 𥈧
+ 0x25228: "\x02\x05\x01\x01\x01\x03\x02\x01\x01\x01\x03\x05\x05\x04", // 𥈨
+ 0x25229: "\x02\x05\x01\x01\x01\x01\x02\x02\x01\x03\x04\x05\x01\x05", // 𥈩
+ 0x2522a: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x01\x01\x03\x02", // 𥈪
+ 0x2522b: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x01\x03\x05\x04", // 𥈫
+ 0x2522c: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𥈬
+ 0x2522d: "\x02\x05\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x01\x05", // 𥈭
+ 0x2522e: "\x02\x05\x01\x01\x01\x02\x05\x02\x02\x01\x04\x01\x05\x03", // 𥈮
+ 0x2522f: "\x02\x05\x01\x01\x01\x03\x02\x02\x05\x01\x01\x02\x01\x01", // 𥈯
+ 0x25230: "\x02\x05\x01\x01\x01\x04\x04\x01\x01\x02\x02\x01\x03\x04", // 𥈰
+ 0x25231: "\x02\x05\x01\x01\x01\x05\x03\x05\x04\x02\x05\x02\x02\x01", // 𥈱
+ 0x25232: "\x02\x05\x01\x01\x01\x03\x05\x05\x01\x01\x04\x05\x04\x04", // 𥈲
+ 0x25233: "\x02\x05\x01\x01\x01\x04\x04\x05\x03\x04\x01\x03\x04\x04", // 𥈳
+ 0x25234: "\x02\x05\x01\x01\x01\x02\x01\x05\x03\x01\x05\x01\x05\x01", // 𥈴
+ 0x25235: "\x02\x05\x01\x01\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 𥈵
+ 0x25236: "\x02\x05\x01\x01\x01\x01\x02\x02\x05\x04\x03\x01\x01\x02", // 𥈶
+ 0x25237: "\x01\x02\x04\x05\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 𥈷
+ 0x25238: "\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x02\x03\x04", // 𥈸
+ 0x25239: "\x02\x05\x01\x01\x01\x04\x04\x05\x03\x04\x01\x05\x02\x03", // 𥈹
+ 0x2523a: "\x02\x05\x01\x01\x01\x03\x04\x04\x03\x02\x02\x05\x01\x01", // 𥈺
+ 0x2523b: "\x02\x05\x01\x01\x01\x01\x02\x02\x01\x03\x04\x01\x02\x01", // 𥈻
+ 0x2523c: "\x03\x03\x05\x04\x01\x04\x03\x05\x05\x04\x02\x05\x01\x01\x01", // 𥈼
+ 0x2523d: "\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x02\x05\x01\x01\x01", // 𥈽
+ 0x2523e: "\x02\x05\x01\x01\x01\x04\x04\x05\x03\x05\x02\x05\x01\x01\x01", // 𥈾
+ 0x2523f: "\x02\x05\x01\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𥈿
+ 0x25240: "\x02\x05\x01\x01\x01\x02\x05\x02\x02\x01\x02\x03\x03\x04\x04", // 𥉀
+ 0x25241: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x01\x03\x04\x03\x02", // 𥉁
+ 0x25242: "\x02\x05\x01\x01\x01\x01\x02\x01\x02\x04\x01\x05\x03\x02\x05", // 𥉂
+ 0x25243: "\x05\x04\x03\x05\x04\x01\x01\x05\x01\x05\x02\x05\x01\x01\x01", // 𥉃
+ 0x25244: "\x02\x05\x01\x01\x01\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01", // 𥉄
+ 0x25245: "\x02\x05\x01\x01\x01\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𥉅
+ 0x25246: "\x02\x01\x01\x01\x01\x02\x03\x04\x05\x04\x02\x05\x01\x01\x01", // 𥉆
+ 0x25247: "\x02\x05\x01\x01\x01\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01", // 𥉇
+ 0x25248: "\x02\x05\x01\x01\x01\x03\x02\x02\x03\x05\x04\x03\x05\x04\x01", // 𥉈
+ 0x25249: "\x02\x05\x01\x01\x01\x03\x02\x02\x03\x05\x04\x01\x02\x03\x04", // 𥉉
+ 0x2524a: "\x02\x05\x01\x01\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𥉊
+ 0x2524b: "\x02\x05\x01\x01\x01\x04\x03\x01\x01\x03\x04\x02\x04\x01\x03\x04", // 𥉋
+ 0x2524c: "\x02\x05\x01\x01\x01\x01\x02\x01\x02\x03\x04\x01\x02\x05\x01", // 𥉌
+ 0x2524d: "\x02\x05\x01\x01\x01\x05\x02\x03\x01\x02\x05\x01\x02\x01\x04", // 𥉍
+ 0x2524e: "\x02\x05\x01\x01\x01\x03\x03\x02\x02\x05\x01\x01\x01\x03\x05", // 𥉎
+ 0x2524f: "\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 𥉏
+ 0x25250: "\x02\x05\x01\x01\x01\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04", // 𥉐
+ 0x25251: "\x02\x05\x01\x01\x01\x04\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 𥉑
+ 0x25252: "\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 𥉒
+ 0x25253: "\x02\x05\x01\x01\x01\x04\x05\x04\x03\x04\x02\x05\x02\x02\x01", // 𥉓
+ 0x25254: "\x01\x02\x02\x01\x01\x01\x04\x03\x03\x04\x02\x05\x01\x01\x01", // 𥉔
+ 0x25255: "\x02\x05\x01\x01\x01\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 𥉕
+ 0x25256: "\x02\x05\x01\x01\x01\x01\x02\x01\x01\x02\x01\x04\x05\x04\x04", // 𥉖
+ 0x25257: "\x02\x05\x01\x01\x01\x05\x04\x01\x05\x04\x01\x03\x01\x01\x05", // 𥉗
+ 0x25258: "\x02\x05\x01\x01\x01\x03\x03\x02\x01\x05\x03\x01\x05\x03\x05", // 𥉘
+ 0x25259: "\x02\x05\x01\x01\x01\x01\x02\x01\x03\x01\x05\x02\x05\x01\x01", // 𥉙
+ 0x2525a: "\x02\x05\x01\x01\x01\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𥉚
+ 0x2525b: "\x02\x05\x01\x01\x01\x04\x04\x05\x02\x05\x01\x01\x05\x03\x01", // 𥉛
+ 0x2525c: "\x02\x05\x01\x01\x01\x01\x01\x01\x03\x04\x03\x01\x02\x03\x04", // 𥉜
+ 0x2525d: "\x02\x05\x01\x01\x01\x05\x05\x01\x05\x05\x01\x05\x01\x02\x01", // 𥉝
+ 0x2525e: "\x02\x05\x01\x01\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01", // 𥉞
+ 0x2525f: "\x02\x05\x01\x01\x01\x03\x03\x05\x04\x01\x04\x03\x05\x05\x04", // 𥉟
+ 0x25260: "\x05\x04\x05\x02\x03\x03\x05\x04\x05\x03\x02\x05\x01\x01\x01", // 𥉠
+ 0x25261: "\x02\x05\x01\x01\x01\x04\x04\x05\x03\x04\x03\x04\x03\x05\x04", // 𥉡
+ 0x25262: "\x02\x05\x01\x01\x01\x01\x02\x01\x05\x05\x01\x02\x01\x01\x02\x01", // 𥉢
+ 0x25263: "\x02\x05\x01\x01\x01\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03", // 𥉣
+ 0x25264: "\x02\x05\x01\x01\x01\x04\x03\x03\x04\x05\x01\x01\x05\x03\x04", // 𥉤
+ 0x25265: "\x02\x05\x01\x01\x01\x04\x03\x01\x05\x02\x03\x04\x05\x04", // 𥉥
+ 0x25266: "\x02\x05\x01\x01\x01\x05\x01\x05\x01\x05\x02\x05\x01\x01\x01", // 𥉦
+ 0x25267: "\x02\x05\x01\x01\x01\x05\x01\x05\x04\x01\x05\x01\x05\x04\x01", // 𥉧
+ 0x25268: "\x02\x05\x01\x01\x01\x03\x03\x03\x02\x05\x01\x01\x01\x03\x05", // 𥉨
+ 0x25269: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05\x02\x05\x01\x01\x01", // 𥉩
+ 0x2526a: "\x02\x05\x01\x01\x01\x04\x04\x01\x03\x04\x05\x05\x04\x01\x04", // 𥉪
+ 0x2526b: "\x02\x05\x01\x01\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05", // 𥉫
+ 0x2526c: "\x02\x05\x01\x01\x01\x01\x03\x05\x04\x02\x02\x04\x04\x04\x04", // 𥉬
+ 0x2526d: "\x02\x05\x01\x01\x01\x01\x02\x01\x03\x03\x01\x02\x02\x05\x01", // 𥉭
+ 0x2526e: "\x02\x05\x01\x01\x01\x04\x03\x01\x05\x02\x03\x03\x05\x01\x01", // 𥉮
+ 0x2526f: "\x02\x05\x01\x01\x01\x01\x02\x03\x04\x01\x02\x01\x01\x02\x01", // 𥉯
+ 0x25270: "\x02\x05\x01\x01\x01\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01", // 𥉰
+ 0x25271: "\x02\x05\x01\x01\x01\x01\x03\x04\x03\x02\x01\x05\x01\x01\x05", // 𥉱
+ 0x25272: "\x02\x05\x01\x01\x01\x05\x01\x03\x01\x02\x02\x01\x05\x03\x04", // 𥉲
+ 0x25273: "\x02\x05\x01\x01\x01\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 𥉳
+ 0x25274: "\x02\x05\x01\x01\x01\x04\x04\x05\x04\x05\x04\x03\x04\x02\x05\x02", // 𥉴
+ 0x25275: "\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x02\x05\x01\x01\x01", // 𥉵
+ 0x25276: "\x02\x05\x01\x01\x01\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05", // 𥉶
+ 0x25277: "\x02\x05\x01\x01\x01\x01\x03\x02\x01\x01\x02\x03\x04\x05\x03\x04", // 𥉷
+ 0x25278: "\x02\x05\x01\x01\x01\x01\x02\x05\x01\x02\x05\x05\x04\x01\x02\x01", // 𥉸
+ 0x25279: "\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 𥉹
+ 0x2527a: "\x02\x05\x01\x01\x01\x04\x04\x05\x03\x05\x01\x05\x04\x01\x02\x01", // 𥉺
+ 0x2527b: "\x02\x05\x01\x01\x01\x03\x05\x04\x01\x05\x04\x01\x01\x02\x03\x04", // 𥉻
+ 0x2527c: "\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x05\x01\x02\x03\x04", // 𥉼
+ 0x2527d: "\x02\x05\x01\x01\x01\x04\x01\x03\x05\x01\x01\x02\x04\x01\x03\x04", // 𥉽
+ 0x2527e: "\x02\x05\x01\x01\x01\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 𥉾
+ 0x2527f: "\x02\x05\x01\x01\x01\x01\x03\x02\x04\x02\x05\x01\x01\x01\x03\x05", // 𥉿
+ 0x25280: "\x02\x05\x01\x01\x01\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 𥊀
+ 0x25281: "\x02\x05\x01\x01\x01\x04\x04\x05\x01\x02\x02\x01\x01\x01\x05\x04", // 𥊁
+ 0x25282: "\x02\x05\x01\x01\x01\x03\x03\x02\x02\x01\x02\x01\x02\x01\x03\x04", // 𥊂
+ 0x25283: "\x03\x04\x03\x04\x02\x05\x02\x02\x01\x04\x05\x02\x05\x01\x01\x01", // 𥊃
+ 0x25284: "\x02\x01\x02\x01\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x01\x01", // 𥊄
+ 0x25285: "\x02\x05\x01\x01\x01\x02\x05\x02\x01\x03\x01\x02\x01\x01\x02\x01", // 𥊅
+ 0x25286: "\x02\x05\x01\x01\x01\x04\x01\x03\x01\x05\x01\x01\x02\x01\x03\x04", // 𥊆
+ 0x25287: "\x01\x02\x05\x01\x02\x05\x03\x01\x01\x01\x02\x05\x01\x01\x01", // 𥊇
+ 0x25288: "\x02\x05\x01\x01\x01\x03\x01\x02\x03\x04\x02\x02\x01\x02\x03\x04", // 𥊈
+ 0x25289: "\x02\x05\x01\x01\x01\x04\x04\x05\x03\x04\x03\x04\x01\x02\x05\x01", // 𥊉
+ 0x2528a: "\x02\x05\x01\x01\x01\x01\x02\x01\x02\x02\x03\x04\x03\x04\x01\x02", // 𥊊
+ 0x2528b: "\x02\x05\x01\x01\x01\x03\x04\x04\x03\x02\x05\x01\x01\x01\x03\x05", // 𥊋
+ 0x2528c: "\x02\x05\x01\x01\x01\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 𥊌
+ 0x2528d: "\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04\x02\x05\x01\x01\x01", // 𥊍
+ 0x2528e: "\x02\x05\x01\x01\x01\x01\x01\x01\x03\x04\x03\x02\x01\x05\x01\x01", // 𥊎
+ 0x2528f: "\x02\x05\x01\x01\x01\x01\x02\x01\x03\x03\x05\x02\x05\x01\x01\x01", // 𥊏
+ 0x25290: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x04\x04\x05\x05\x02\x01", // 𥊐
+ 0x25291: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 𥊑
+ 0x25292: "\x02\x05\x01\x01\x01\x03\x05\x04\x01\x01\x01\x02\x04\x05\x04", // 𥊒
+ 0x25293: "\x02\x05\x01\x01\x01\x04\x01\x04\x03\x01\x03\x03\x01\x01\x02\x01", // 𥊓
+ 0x25294: "\x02\x05\x01\x01\x01\x04\x01\x04\x03\x02\x05\x03\x04\x02\x05\x01", // 𥊔
+ 0x25295: "\x02\x05\x01\x01\x01\x03\x02\x02\x02\x01\x05\x04\x03\x05\x04\x01", // 𥊕
+ 0x25296: "\x02\x05\x01\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𥊖
+ 0x25297: "\x02\x05\x01\x01\x01\x04\x04\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 𥊗
+ 0x25298: "\x02\x05\x01\x01\x01\x04\x04\x05\x01\x03\x04\x01\x02\x05\x01\x02", // 𥊘
+ 0x25299: "\x02\x05\x01\x01\x01\x03\x02\x05\x03\x04\x01\x03\x04\x03\x05\x04", // 𥊙
+ 0x2529a: "\x02\x05\x01\x01\x01\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04", // 𥊚
+ 0x2529b: "\x02\x05\x01\x01\x01\x04\x01\x05\x03\x05\x01\x01\x01\x01\x02\x01", // 𥊛
+ 0x2529c: "\x02\x05\x01\x01\x01\x04\x01\x01\x01\x02\x05\x01\x05\x01\x03\x04", // 𥊜
+ 0x2529d: "\x02\x05\x01\x01\x01\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04", // 𥊝
+ 0x2529e: "\x02\x05\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x05\x03\x04\x01", // 𥊞
+ 0x2529f: "\x05\x02\x01\x03\x02\x05\x01\x01\x01\x05\x03\x04\x04\x05\x04\x04", // 𥊟
+ 0x252a0: "\x02\x05\x01\x01\x01\x02\x05\x02\x04\x04\x05\x01\x01\x02\x03\x04", // 𥊠
+ 0x252a1: "\x02\x05\x01\x01\x01\x01\x02\x05\x01\x01\x01\x02\x03\x05\x03\x04", // 𥊡
+ 0x252a2: "\x01\x02\x02\x05\x01\x01\x01\x01\x02\x04\x03\x02\x05\x02\x05\x01", // 𥊢
+ 0x252a3: "\x02\x04\x03\x02\x05\x02\x05\x01\x01\x02\x02\x05\x01\x01\x01\x01", // 𥊣
+ 0x252a4: "\x02\x05\x01\x01\x01\x03\x03\x02\x02\x05\x01\x01\x01\x01\x02\x04", // 𥊤
+ 0x252a5: "\x02\x05\x01\x01\x01\x05\x02\x03\x05\x03\x02\x01\x05\x01\x01", // 𥊥
+ 0x252a6: "\x02\x05\x01\x01\x01\x05\x04\x05\x02\x03\x03\x05\x04\x05\x03", // 𥊦
+ 0x252a7: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04\x02\x05\x01\x01\x01", // 𥊧
+ 0x252a8: "\x01\x02\x03\x04\x01\x01\x02\x03\x04\x05\x04\x02\x05\x01\x01\x01", // 𥊨
+ 0x252a9: "\x02\x05\x01\x01\x01\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 𥊩
+ 0x252aa: "\x02\x05\x01\x01\x01\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04", // 𥊪
+ 0x252ab: "\x02\x05\x01\x01\x01\x05\x05\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𥊫
+ 0x252ac: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x02\x02\x01\x01\x01\x05\x03\x04", // 𥊬
+ 0x252ad: "\x02\x05\x01\x01\x01\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x02\x04", // 𥊭
+ 0x252ae: "\x02\x05\x01\x01\x01\x05\x01\x01\x01\x02\x01\x02\x05\x01\x02\x01\x01", // 𥊮
+ 0x252af: "\x02\x05\x01\x01\x01\x01\x01\x01\x02\x05\x03\x05\x05\x04\x02\x03\x04", // 𥊯
+ 0x252b0: "\x02\x05\x01\x01\x01\x02\x04\x03\x04\x05\x02\x05\x01\x02\x01\x03\x04", // 𥊰
+ 0x252b1: "\x02\x05\x01\x01\x01\x01\x03\x05\x05\x03\x04\x02\x05\x02\x02\x01", // 𥊱
+ 0x252b2: "\x02\x05\x01\x01\x01\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x03\x04", // 𥊲
+ 0x252b3: "\x02\x05\x01\x01\x01\x04\x03\x01\x01\x02\x01\x04\x03\x01\x02\x05\x01", // 𥊳
+ 0x252b4: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x02\x02\x01\x01\x01\x05\x04", // 𥊴
+ 0x252b5: "\x02\x05\x01\x01\x01\x05\x01\x01\x02\x04\x01\x03\x04\x04\x05\x04", // 𥊵
+ 0x252b6: "\x02\x05\x01\x01\x01\x03\x05\x04\x01\x01\x03\x04\x04\x04\x04\x04\x04", // 𥊶
+ 0x252b7: "\x02\x05\x04\x03\x01\x02\x01\x01\x01\x03\x04\x04\x02\x05\x01\x01\x01", // 𥊷
+ 0x252b8: "\x02\x05\x01\x01\x01\x01\x03\x02\x05\x02\x02\x01\x01\x04\x05\x04\x04", // 𥊸
+ 0x252b9: "\x04\x01\x03\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01", // 𥊹
+ 0x252ba: "\x02\x05\x01\x01\x01\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04", // 𥊺
+ 0x252bb: "\x02\x05\x01\x01\x01\x05\x04\x05\x04\x05\x04\x05\x05\x04\x02\x03\x04", // 𥊻
+ 0x252bc: "\x02\x05\x01\x01\x01\x02\x04\x03\x04\x05\x02\x05\x01\x01\x05\x02\x03", // 𥊼
+ 0x252bd: "\x02\x05\x02\x02\x01\x02\x04\x01\x03\x04\x04\x03\x05\x01\x05\x02\x03", // 𥊽
+ 0x252be: "\x01\x02\x01\x02\x05\x01\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𥊾
+ 0x252bf: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 𥊿
+ 0x252c0: "\x02\x05\x01\x01\x01\x01\x05\x01\x02\x01\x03\x05\x01\x01\x05\x04", // 𥋀
+ 0x252c1: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x04\x05\x02\x05\x01\x01\x05", // 𥋁
+ 0x252c2: "\x02\x05\x01\x01\x01\x03\x05\x02\x05\x02\x02\x01\x03\x04\x03\x05\x04", // 𥋂
+ 0x252c3: "\x02\x05\x01\x01\x01\x01\x03\x02\x05\x02\x02\x01\x03\x02\x05\x02\x02", // 𥋃
+ 0x252c4: "\x02\x05\x01\x01\x01\x01\x02\x05\x02\x02\x01\x01\x01\x04\x03\x03\x04", // 𥋄
+ 0x252c5: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x01", // 𥋅
+ 0x252c6: "\x02\x05\x01\x01\x01\x04\x01\x02\x05\x01\x05\x02\x01\x03\x01\x03\x04", // 𥋆
+ 0x252c7: "\x02\x05\x01\x01\x01\x02\x04\x03\x04\x05\x02\x05\x01\x03\x01\x01\x02", // 𥋇
+ 0x252c8: "\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05\x02\x05\x01\x01\x01", // 𥋈
+ 0x252c9: "\x02\x05\x01\x01\x01\x05\x04\x01\x05\x04\x01\x01\x02\x02\x01\x01\x01", // 𥋉
+ 0x252ca: "\x02\x05\x01\x01\x01\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 𥋊
+ 0x252cb: "\x02\x05\x01\x01\x01\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01", // 𥋋
+ 0x252cc: "\x02\x05\x01\x01\x01\x01\x02\x02\x01\x02\x05\x01\x01\x03\x01\x03\x04", // 𥋌
+ 0x252cd: "\x02\x05\x01\x01\x01\x03\x03\x04\x03\x04\x03\x04\x03\x04\x01\x02\x01", // 𥋍
+ 0x252ce: "\x02\x05\x01\x01\x01\x03\x04\x03\x04\x02\x01\x03\x02\x05\x01\x01\x01", // 𥋎
+ 0x252cf: "\x02\x05\x01\x01\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05\x03\x04", // 𥋏
+ 0x252d0: "\x02\x05\x01\x01\x01\x04\x04\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01", // 𥋐
+ 0x252d1: "\x02\x05\x01\x01\x01\x05\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 𥋑
+ 0x252d2: "\x02\x05\x01\x01\x01\x03\x01\x01\x03\x04\x02\x05\x01\x02\x05\x01\x01", // 𥋒
+ 0x252d3: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x03\x04", // 𥋓
+ 0x252d4: "\x02\x05\x01\x01\x01\x02\x05\x02\x01\x01\x01\x02\x01\x03\x01\x03\x04", // 𥋔
+ 0x252d5: "\x02\x05\x01\x01\x01\x04\x04\x01\x03\x05\x03\x04\x02\x05\x02\x02\x01", // 𥋕
+ 0x252d6: "\x02\x05\x01\x01\x01\x02\x01\x05\x03\x01\x05\x02\x02\x04\x03\x01", // 𥋖
+ 0x252d7: "\x02\x05\x01\x01\x01\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04", // 𥋗
+ 0x252d8: "\x02\x05\x01\x01\x01\x03\x01\x04\x03\x01\x04\x02\x04\x03\x02\x05\x01\x01", // 𥋘
+ 0x252d9: "\x02\x05\x01\x01\x01\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x02\x03\x04", // 𥋙
+ 0x252da: "\x02\x01\x02\x01\x02\x05\x02\x02\x01\x01\x05\x03\x04\x02\x05\x01\x01\x01", // 𥋚
+ 0x252db: "\x02\x05\x01\x01\x01\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 𥋛
+ 0x252dc: "\x05\x02\x01\x03\x02\x05\x01\x01\x01\x04\x04\x05\x03\x05\x03\x04\x05\x04", // 𥋜
+ 0x252dd: "\x02\x05\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𥋝
+ 0x252de: "\x02\x05\x01\x01\x01\x01\x04\x05\x02\x04\x04\x04\x04\x03\x04\x04\x05\x04", // 𥋞
+ 0x252df: "\x02\x05\x01\x01\x01\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01\x05\x03\x04", // 𥋟
+ 0x252e0: "\x02\x05\x01\x01\x01\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04\x02\x02", // 𥋠
+ 0x252e1: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x04\x05\x05\x01\x05\x05\x01\x05", // 𥋡
+ 0x252e2: "\x02\x05\x01\x01\x01\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x04", // 𥋢
+ 0x252e3: "\x02\x05\x01\x01\x01\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𥋣
+ 0x252e4: "\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x02\x01\x01\x02\x05\x01\x01\x01", // 𥋤
+ 0x252e5: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x05\x02\x05\x01\x03\x05\x04", // 𥋥
+ 0x252e6: "\x02\x05\x01\x01\x01\x04\x01\x03\x05\x02\x02\x01\x05\x04\x05\x04\x03\x05", // 𥋦
+ 0x252e7: "\x02\x05\x01\x01\x01\x03\x05\x05\x01\x01\x03\x01\x03\x04\x04\x04\x04\x04", // 𥋧
+ 0x252e8: "\x02\x05\x01\x01\x01\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x03\x05", // 𥋨
+ 0x252e9: "\x04\x04\x05\x01\x03\x04\x03\x04\x02\x05\x01\x05\x04\x02\x05\x01\x01\x01", // 𥋩
+ 0x252ea: "\x03\x03\x02\x02\x05\x02\x01\x03\x05\x03\x01\x03\x04\x02\x05\x01\x01\x01", // 𥋪
+ 0x252eb: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x04\x04\x05\x01\x02\x01\x03\x04", // 𥋫
+ 0x252ec: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x04\x05\x03\x05\x02\x05\x02\x05", // 𥋬
+ 0x252ed: "\x02\x05\x01\x01\x01\x02\x05\x02\x02\x01\x01\x03\x04\x04\x03\x01\x01\x02", // 𥋭
+ 0x252ee: "\x02\x05\x01\x01\x01\x03\x05\x04\x03\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 𥋮
+ 0x252ef: "\x02\x05\x01\x01\x01\x03\x05\x04\x01\x05\x04\x04\x01\x01\x01\x02\x05\x01", // 𥋯
+ 0x252f0: "\x02\x05\x01\x01\x01\x04\x04\x05\x01\x03\x02\x01\x05\x01\x01\x03\x04", // 𥋰
+ 0x252f1: "\x02\x05\x01\x01\x01\x04\x04\x05\x04\x05\x04\x03\x04\x02\x05\x02\x02\x01", // 𥋱
+ 0x252f2: "\x02\x05\x01\x01\x01\x04\x01\x03\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 𥋲
+ 0x252f3: "\x02\x05\x01\x01\x01\x02\x05\x02\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𥋳
+ 0x252f4: "\x02\x05\x01\x01\x01\x01\x02\x03\x04\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 𥋴
+ 0x252f5: "\x02\x05\x01\x01\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05\x03\x04", // 𥋵
+ 0x252f6: "\x02\x05\x01\x01\x01\x04\x01\x02\x05\x02\x05\x01\x01\x03\x01\x02\x03\x04", // 𥋶
+ 0x252f7: "\x02\x05\x01\x01\x01\x01\x02\x02\x04\x04\x01\x03\x05\x04\x02\x05\x01", // 𥋷
+ 0x252f8: "\x02\x05\x01\x01\x01\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x01", // 𥋸
+ 0x252f9: "\x02\x05\x01\x01\x01\x01\x02\x04\x02\x05\x01\x01\x01\x05\x01\x05\x01\x05", // 𥋹
+ 0x252fa: "\x02\x05\x01\x01\x01\x04\x04\x05\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01", // 𥋺
+ 0x252fb: "\x02\x05\x01\x01\x01\x02\x05\x03\x04\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𥋻
+ 0x252fc: "\x02\x05\x01\x01\x01\x03\x04\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 𥋼
+ 0x252fd: "\x02\x05\x01\x01\x01\x02\x05\x02\x02\x01\x02\x01\x02\x05\x01\x01\x01\x02", // 𥋽
+ 0x252fe: "\x02\x05\x01\x01\x01\x01\x02\x02\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𥋾
+ 0x252ff: "\x02\x05\x01\x01\x01\x01\x02\x01\x03\x02\x03\x04\x01\x02\x01\x03\x02\x03\x04", // 𥋿
+ 0x25300: "\x02\x05\x01\x01\x01\x04\x04\x05\x03\x05\x04\x01\x05\x04\x01\x01\x02\x03\x04", // 𥌀
+ 0x25301: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x04\x04\x04\x04", // 𥌁
+ 0x25302: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x04\x04\x05\x03\x05\x04\x01\x05\x03", // 𥌂
+ 0x25303: "\x02\x05\x01\x01\x01\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𥌃
+ 0x25304: "\x02\x01\x04\x05\x01\x02\x05\x01\x01\x01\x03\x04\x05\x04\x02\x05\x01\x01\x01", // 𥌄
+ 0x25305: "\x01\x03\x02\x05\x01\x01\x03\x05\x04\x01\x01\x03\x04\x04\x02\x05\x01\x01\x01", // 𥌅
+ 0x25306: "\x02\x05\x01\x01\x01\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 𥌆
+ 0x25307: "\x02\x05\x01\x01\x01\x03\x01\x01\x02\x02\x02\x02\x01\x03\x05\x04\x01\x05\x02", // 𥌇
+ 0x25308: "\x02\x05\x01\x01\x01\x01\x02\x05\x01\x02\x05\x03\x01\x01\x02\x05\x02\x02\x01", // 𥌈
+ 0x25309: "\x02\x05\x01\x01\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02", // 𥌉
+ 0x2530a: "\x04\x01\x04\x03\x01\x01\x03\x02\x05\x01\x01\x01\x04\x01\x04\x03\x01\x01\x02", // 𥌊
+ 0x2530b: "\x02\x05\x01\x01\x01\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x03\x05\x04", // 𥌋
+ 0x2530c: "\x02\x05\x01\x01\x01\x04\x03\x03\x04\x04\x03\x03\x04\x03\x05\x04\x01\x05\x02", // 𥌌
+ 0x2530d: "\x02\x05\x01\x01\x01\x04\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𥌍
+ 0x2530e: "\x02\x05\x01\x01\x01\x01\x04\x05\x02\x04\x01\x03\x04\x01\x03\x02\x05\x02\x02", // 𥌎
+ 0x2530f: "\x05\x02\x01\x03\x02\x05\x01\x01\x01\x04\x05\x02\x05\x01\x01\x04\x01\x03\x04", // 𥌏
+ 0x25310: "\x02\x05\x01\x01\x01\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 𥌐
+ 0x25311: "\x02\x05\x01\x01\x01\x02\x01\x04\x05\x01\x03\x04\x03\x04\x02\x05\x01\x01\x01", // 𥌑
+ 0x25312: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x05\x03\x02\x05\x04\x02\x05\x01\x01\x01", // 𥌒
+ 0x25313: "\x02\x05\x01\x01\x01\x02\x05\x02\x02\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 𥌓
+ 0x25314: "\x02\x05\x01\x01\x01\x03\x05\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𥌔
+ 0x25315: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x03\x02\x05\x04\x02\x05\x01\x01\x01", // 𥌕
+ 0x25316: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 𥌖
+ 0x25317: "\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x04\x05\x03\x05\x02\x05\x02\x05", // 𥌗
+ 0x25318: "\x02\x05\x01\x01\x01\x04\x03\x01\x03\x05\x03\x03\x03\x04\x02\x05\x01\x01\x01", // 𥌘
+ 0x25319: "\x05\x02\x01\x03\x02\x05\x01\x01\x01\x04\x01\x03\x01\x02\x05\x01\x01\x01\x02", // 𥌙
+ 0x2531a: "\x02\x05\x01\x01\x01\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𥌚
+ 0x2531b: "\x02\x05\x01\x01\x01\x03\x01\x02\x03\x04\x03\x05\x03\x03\x04\x02\x04\x01\x03\x04", // 𥌛
+ 0x2531c: "\x02\x05\x01\x01\x01\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x04\x04\x04\x04", // 𥌜
+ 0x2531d: "\x02\x05\x01\x01\x01\x03\x02\x01\x01\x05\x05\x04\x05\x01\x01\x01\x04\x03\x03\x04", // 𥌝
+ 0x2531e: "\x02\x05\x01\x01\x01\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x03\x04\x01\x03\x04", // 𥌞
+ 0x2531f: "\x02\x01\x01\x03\x01\x01\x03\x04\x03\x04\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 𥌟
+ 0x25320: "\x02\x05\x01\x01\x01\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 𥌠
+ 0x25321: "\x02\x05\x01\x01\x01\x02\x05\x02\x02\x01\x01\x02\x01\x02\x05\x01\x03\x05\x03\x04", // 𥌡
+ 0x25322: "\x02\x05\x01\x01\x01\x04\x04\x05\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 𥌢
+ 0x25323: "\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x02\x05\x02\x03\x05\x05\x04\x02\x03\x04", // 𥌣
+ 0x25324: "\x02\x05\x01\x01\x01\x03\x05\x01\x01\x02\x03\x04\x05\x01\x01\x02\x04\x01\x03\x04", // 𥌤
+ 0x25325: "\x02\x05\x01\x01\x01\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x03\x04", // 𥌥
+ 0x25326: "\x02\x05\x01\x01\x01\x01\x01\x03\x04\x01\x01\x03\x04\x01\x02\x05\x01\x01\x01\x02", // 𥌦
+ 0x25327: "\x02\x05\x01\x01\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01", // 𥌧
+ 0x25328: "\x02\x05\x01\x01\x01\x04\x03\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𥌨
+ 0x25329: "\x02\x05\x01\x01\x01\x03\x03\x02\x01\x03\x02\x05\x02\x02\x01\x01\x04\x05\x04\x04", // 𥌩
+ 0x2532a: "\x02\x05\x01\x01\x01\x01\x02\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x01\x03\x04", // 𥌪
+ 0x2532b: "\x02\x05\x01\x01\x01\x03\x01\x04\x03\x01\x04\x05\x05\x01\x03\x05\x03\x03\x03\x04", // 𥌫
+ 0x2532c: "\x02\x05\x01\x01\x01\x04\x01\x03\x02\x05\x01\x01\x02\x01\x01\x03\x04\x01\x02\x01", // 𥌬
+ 0x2532d: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x05\x02\x03\x04\x03\x05\x05\x04\x02\x03\x04", // 𥌭
+ 0x2532e: "\x02\x05\x01\x01\x01\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 𥌮
+ 0x2532f: "\x02\x05\x01\x01\x01\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x01\x05\x05\x04", // 𥌯
+ 0x25330: "\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04", // 𥌰
+ 0x25331: "\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x02\x05\x01\x01\x01\x05\x01\x05\x01\x05", // 𥌱
+ 0x25332: "\x02\x05\x01\x01\x01\x04\x01\x02\x05\x01\x02\x05\x01\x01\x02\x01\x02\x01\x01\x01\x02", // 𥌲
+ 0x25333: "\x02\x05\x01\x01\x01\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01", // 𥌳
+ 0x25334: "\x02\x05\x01\x01\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x02\x05\x01\x02\x01\x04", // 𥌴
+ 0x25335: "\x01\x02\x02\x01\x02\x05\x01\x03\x04\x04\x03\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 𥌵
+ 0x25336: "\x02\x05\x01\x01\x01\x03\x02\x01\x01\x05\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𥌶
+ 0x25337: "\x02\x05\x01\x01\x01\x04\x04\x05\x01\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x04\x04", // 𥌷
+ 0x25338: "\x02\x05\x01\x01\x01\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x03\x02\x01\x05\x01\x01", // 𥌸
+ 0x25339: "\x02\x05\x01\x01\x01\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x05\x01\x01\x02\x05\x02", // 𥌹
+ 0x2533a: "\x02\x05\x01\x01\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02", // 𥌺
+ 0x2533b: "\x02\x05\x01\x01\x01\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 𥌻
+ 0x2533c: "\x02\x05\x01\x01\x01\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 𥌼
+ 0x2533d: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x05\x03\x01", // 𥌽
+ 0x2533e: "\x02\x05\x01\x01\x01\x04\x01\x03\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01\x04\x05\x04\x04", // 𥌾
+ 0x2533f: "\x02\x05\x01\x01\x01\x01\x02\x03\x04\x01\x01\x02\x03\x04\x05\x01\x01\x02\x04\x01\x03\x04", // 𥌿
+ 0x25340: "\x02\x05\x01\x01\x01\x03\x04\x03\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 𥍀
+ 0x25341: "\x03\x02\x05\x01\x05\x01\x02\x01\x02\x01\x05\x01\x01\x04\x05\x02\x05\x02\x02\x05\x01\x01\x01", // 𥍁
+ 0x25342: "\x02\x05\x01\x01\x01\x01\x02\x02\x01\x02\x05\x01\x02\x01\x01\x01\x05\x04\x04\x04\x04", // 𥍂
+ 0x25343: "\x02\x05\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x01\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𥍃
+ 0x25344: "\x02\x05\x01\x01\x01\x02\x04\x03\x01\x03\x05\x04\x04\x05\x01\x02\x04\x02\x05\x01\x01\x01", // 𥍄
+ 0x25345: "\x03\x04\x01\x01\x02\x01\x03\x04\x01\x02\x02\x01\x03\x04\x02\x05\x01\x01\x01\x01\x01\x02", // 𥍅
+ 0x25346: "\x02\x05\x01\x01\x01\x04\x01\x01\x01\x02\x05\x01\x04\x03\x03\x04\x04\x03\x03\x04\x05\x04", // 𥍆
+ 0x25347: "\x02\x05\x01\x01\x01\x01\x02\x02\x02\x05\x02\x02\x01\x04\x05\x01\x03\x05\x04\x03\x05", // 𥍇
+ 0x25348: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x01\x02\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𥍈
+ 0x25349: "\x02\x05\x01\x01\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01", // 𥍉
+ 0x2534a: "\x02\x01\x02\x01\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01", // 𥍊
+ 0x2534b: "\x02\x05\x01\x01\x01\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x03\x05\x02\x05\x01", // 𥍋
+ 0x2534c: "\x02\x05\x01\x01\x01\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x01\x04\x03\x03\x04", // 𥍌
+ 0x2534d: "\x02\x05\x01\x01\x01\x01\x02\x02\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01", // 𥍍
+ 0x2534e: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x02\x05\x02\x01\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𥍎
+ 0x2534f: "\x02\x05\x01\x01\x01\x04\x01\x01\x01\x02\x05\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04", // 𥍏
+ 0x25350: "\x02\x05\x01\x01\x01\x01\x02\x02\x03\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x03\x04", // 𥍐
+ 0x25351: "\x02\x05\x01\x01\x01\x01\x02\x05\x01\x01\x01\x02\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 𥍑
+ 0x25352: "\x02\x05\x01\x01\x01\x03\x01\x04\x03\x01\x04\x01\x03\x01\x02\x05\x01\x05\x03\x04\x04\x05\x04\x04", // 𥍒
+ 0x25353: "\x02\x05\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x03\x01\x02\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 𥍓
+ 0x25354: "\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 𥍔
+ 0x25355: "\x02\x05\x01\x01\x01\x02\x04\x03\x01\x03\x05\x01\x04\x05\x02\x04\x01\x03\x04\x02\x04\x03\x03\x05\x04\x01", // 𥍕
+ 0x25356: "\x02\x05\x01\x01\x01\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 𥍖
+ 0x25357: "\x02\x05\x01\x01\x01\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x02\x05\x01\x01\x02\x05\x01\x05\x02\x02", // 𥍗
+ 0x25358: "\x02\x05\x01\x01\x01\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 𥍘
+ 0x25359: "\x02\x05\x01\x01\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 𥍙
+ 0x2535a: "\x02\x05\x01\x01\x01\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x03\x05\x04", // 𥍚
+ 0x2535b: "\x02\x05\x01\x01\x01\x02\x05\x02\x02\x05\x01\x02\x05\x01\x01\x03\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 𥍛
+ 0x2535c: "\x02\x05\x01\x01\x01\x01\x02\x02\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𥍜
+ 0x2535d: "\x05\x04\x05\x02\x03\x01", // 𥍝
+ 0x2535e: "\x05\x04\x05\x02\x03\x05\x03\x04", // 𥍞
+ 0x2535f: "\x05\x04\x05\x02\x03\x03\x05\x05\x04", // 𥍟
+ 0x25360: "\x05\x04\x05\x02\x03\x03\x05\x01\x05", // 𥍠
+ 0x25361: "\x05\x04\x05\x02\x03\x03\x02\x05\x01\x01", // 𥍡
+ 0x25362: "\x05\x04\x05\x02\x03\x03\x01\x05\x02\x05", // 𥍢
+ 0x25363: "\x05\x04\x05\x02\x03\x02\x05\x01\x01\x05", // 𥍣
+ 0x25364: "\x05\x04\x05\x02\x03\x05\x04\x05\x02\x03", // 𥍤
+ 0x25365: "\x05\x04\x05\x02\x03\x01\x03\x05\x03\x04", // 𥍥
+ 0x25366: "\x05\x04\x05\x02\x03\x03\x01\x02\x05\x02", // 𥍦
+ 0x25367: "\x05\x04\x05\x02\x03\x05\x05\x05\x03\x05\x04", // 𥍧
+ 0x25368: "\x05\x04\x05\x02\x03\x03\x05\x01\x03\x05\x05", // 𥍨
+ 0x25369: "\x05\x04\x05\x02\x03\x02\x05\x01\x02\x05\x01", // 𥍩
+ 0x2536a: "\x05\x04\x05\x02\x03\x03\x04\x04\x03\x05\x03\x03", // 𥍪
+ 0x2536b: "\x05\x04\x05\x02\x03\x04\x05\x01\x01\x05\x03\x04", // 𥍫
+ 0x2536c: "\x05\x04\x05\x02\x03\x05\x04\x03\x05\x03\x05\x04", // 𥍬
+ 0x2536d: "\x05\x04\x05\x02\x03\x01\x02\x01\x03\x03\x01\x02", // 𥍭
+ 0x2536e: "\x05\x04\x05\x02\x03\x03\x05\x04\x01\x01\x01\x02", // 𥍮
+ 0x2536f: "\x05\x04\x05\x02\x03\x05\x01\x01\x04\x05\x05\x04", // 𥍯
+ 0x25370: "\x05\x04\x05\x02\x03\x01\x02\x01\x02\x03\x05\x04", // 𥍰
+ 0x25371: "\x05\x04\x05\x02\x03\x03\x01\x02\x01\x02\x05\x01", // 𥍱
+ 0x25372: "\x05\x04\x05\x02\x03\x01\x02\x03\x04\x02\x05\x03\x04", // 𥍲
+ 0x25373: "\x05\x04\x05\x02\x03\x01\x02\x03\x04\x05\x02\x01\x01", // 𥍳
+ 0x25374: "\x05\x04\x05\x02\x03\x02\x05\x01\x01\x03\x05\x03\x03", // 𥍴
+ 0x25375: "\x05\x04\x05\x02\x03\x03\x04\x01\x05\x04\x05\x04\x04", // 𥍵
+ 0x25376: "\x05\x04\x05\x02\x03\x03\x05\x01\x03\x03\x01\x01\x03\x04", // 𥍶
+ 0x25377: "\x05\x04\x05\x02\x03\x03\x05\x03\x03\x04\x04\x05\x04\x04", // 𥍷
+ 0x25378: "\x05\x04\x05\x02\x03\x04\x01\x05\x03\x03\x01\x05\x02\x05", // 𥍸
+ 0x25379: "\x05\x04\x05\x02\x03\x05\x01\x01\x01\x01\x02\x05\x04", // 𥍹
+ 0x2537a: "\x05\x04\x05\x02\x03\x03\x04\x05\x02\x03\x05\x03\x05\x04", // 𥍺
+ 0x2537b: "\x05\x04\x05\x02\x03\x01\x02\x05\x01\x01\x05\x03\x01\x05", // 𥍻
+ 0x2537c: "\x05\x04\x05\x02\x03\x01\x02\x01\x02\x02\x05\x01\x03\x04", // 𥍼
+ 0x2537d: "\x05\x04\x05\x02\x03\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𥍽
+ 0x2537e: "\x05\x04\x05\x02\x03\x01\x05\x01\x05\x03\x02\x05\x01\x01", // 𥍾
+ 0x2537f: "\x05\x04\x05\x02\x03\x03\x03\x01\x02\x02\x05\x01\x01\x01", // 𥍿
+ 0x25380: "\x05\x04\x05\x02\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𥎀
+ 0x25381: "\x05\x04\x05\x02\x03\x01\x02\x03\x04\x02\x01\x02\x05\x01", // 𥎁
+ 0x25382: "\x05\x04\x05\x02\x03\x01\x02\x01\x02\x01\x02\x02\x01\x01\x01", // 𥎂
+ 0x25383: "\x05\x04\x05\x02\x03\x03\x01\x01\x05\x04\x03\x01\x02\x03\x04", // 𥎃
+ 0x25384: "\x05\x04\x05\x02\x03\x03\x04\x01\x05\x01\x01\x03\x02\x05\x01", // 𥎄
+ 0x25385: "\x05\x04\x05\x02\x03\x02\x05\x02\x02\x01\x02\x03\x03\x04\x04", // 𥎅
+ 0x25386: "\x05\x04\x05\x02\x03\x04\x04\x05\x03\x01\x02\x01\x02\x05\x01", // 𥎆
+ 0x25387: "\x05\x04\x05\x02\x03\x02\x01\x02\x02\x05\x01\x01\x03\x04\x05", // 𥎇
+ 0x25388: "\x05\x04\x05\x02\x03\x03\x05\x04\x01\x02\x05\x03\x05\x01\x01", // 𥎈
+ 0x25389: "\x05\x04\x05\x02\x03\x03\x05\x04\x02\x05\x01\x01\x01\x03\x04", // 𥎉
+ 0x2538a: "\x05\x04\x05\x02\x03\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01", // 𥎊
+ 0x2538b: "\x05\x04\x05\x02\x03\x03\x02\x05\x03\x05\x04\x01\x04\x05\x04\x04", // 𥎋
+ 0x2538c: "\x05\x04\x05\x02\x03\x03\x05\x04\x01\x01\x01\x02\x04\x05\x04", // 𥎌
+ 0x2538d: "\x05\x04\x05\x02\x03\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𥎍
+ 0x2538e: "\x05\x04\x05\x02\x03\x03\x05\x03\x05\x01\x01\x02\x05\x03\x03\x01\x01\x02", // 𥎎
+ 0x2538f: "\x05\x04\x05\x02\x03\x03\x04\x03\x04\x03\x04\x03\x04\x02\x05\x01\x01", // 𥎏
+ 0x25390: "\x05\x04\x05\x02\x03\x02\x05\x03\x05\x02\x05\x01\x05\x02\x02\x05\x02", // 𥎐
+ 0x25391: "\x05\x04\x05\x02\x03\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x01", // 𥎑
+ 0x25392: "\x05\x04\x05\x02\x03\x02\x05\x01\x01\x03\x05\x01\x01\x04\x05\x04\x04", // 𥎒
+ 0x25393: "\x05\x04\x05\x02\x03\x02\x05\x01\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01", // 𥎓
+ 0x25394: "\x05\x04\x05\x02\x03\x01\x03\x05\x03\x03\x03\x04\x02\x05\x01\x02\x01\x04", // 𥎔
+ 0x25395: "\x05\x04\x05\x02\x03\x02\x05\x03\x05\x02\x05\x01\x01\x03\x04\x05\x03\x04", // 𥎕
+ 0x25396: "\x05\x04\x05\x02\x03\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𥎖
+ 0x25397: "\x05\x04\x05\x02\x03\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 𥎗
+ 0x25398: "\x05\x04\x05\x02\x03\x01\x04\x05\x02\x04\x01\x03\x04\x01\x03\x02\x05\x02\x02", // 𥎘
+ 0x25399: "\x05\x04\x05\x02\x03\x02\x05\x01\x02\x01\x04\x05\x04\x04\x02\x05\x01\x01\x01", // 𥎙
+ 0x2539a: "\x05\x04\x05\x02\x03\x01\x02\x02\x01\x02\x05\x01\x03\x04\x04\x03\x01\x02\x01", // 𥎚
+ 0x2539b: "\x05\x04\x05\x02\x03\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x05", // 𥎛
+ 0x2539c: "\x05\x04\x05\x02\x03\x02\x05\x03\x05\x02\x05\x01\x02\x03\x04\x01\x01\x03\x04", // 𥎜
+ 0x2539d: "\x05\x04\x05\x02\x03\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x03\x04", // 𥎝
+ 0x2539e: "\x05\x04\x05\x02\x03\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𥎞
+ 0x2539f: "\x05\x04\x05\x02\x03\x03\x01\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02", // 𥎟
+ 0x253a0: "\x05\x04\x05\x02\x03\x03\x05\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 𥎠
+ 0x253a1: "\x05\x04\x05\x02\x03\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𥎡
+ 0x253a2: "\x05\x04\x05\x02\x03\x01\x02\x03\x04\x04\x05\x01\x02\x03\x04\x01\x02\x03\x04\x04\x04\x04\x04", // 𥎢
+ 0x253a3: "\x05\x04\x05\x02\x03\x04\x04\x05\x03\x04\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05", // 𥎣
+ 0x253a4: "\x05\x04\x05\x02\x03\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x04\x05\x01\x02\x03\x04\x01\x02\x03\x04\x01\x03\x04\x04\x03\x03\x04", // 𥎤
+ 0x253a5: "\x05\x04\x05\x02\x03\x04\x01\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x04\x05\x01\x02\x03\x04\x01\x02\x03\x04\x01\x03\x04\x04\x03\x03\x04", // 𥎥
+ 0x253a6: "\x01\x03\x03\x01\x01\x03\x04", // 𥎦
+ 0x253a7: "\x03\x01\x01\x03\x04\x01\x02", // 𥎧
+ 0x253a8: "\x01\x02\x01\x03\x01\x01\x03\x04", // 𥎨
+ 0x253a9: "\x02\x01\x02\x01\x03\x01\x01\x03\x04", // 𥎩
+ 0x253aa: "\x03\x01\x01\x03\x04\x03\x01\x03\x04", // 𥎪
+ 0x253ab: "\x05\x03\x05\x03\x03\x01\x01\x03\x04", // 𥎫
+ 0x253ac: "\x03\x01\x01\x03\x04\x01\x05\x01\x05", // 𥎬
+ 0x253ad: "\x03\x01\x01\x03\x04\x02\x05\x01\x01", // 𥎭
+ 0x253ae: "\x03\x01\x01\x03\x04\x03\x03\x05\x04", // 𥎮
+ 0x253af: "\x03\x01\x01\x03\x04\x03\x05\x03\x04", // 𥎯
+ 0x253b0: "\x03\x01\x01\x03\x04\x01\x02\x01\x05\x04", // 𥎰
+ 0x253b1: "\x03\x01\x01\x03\x04\x01\x03\x03\x04\x04", // 𥎱
+ 0x253b2: "\x05\x01\x03\x01\x01\x03\x04\x02\x01\x05", // 𥎲
+ 0x253b3: "\x03\x01\x01\x03\x04\x05\x05\x04\x01\x04", // 𥎳
+ 0x253b4: "\x03\x01\x01\x03\x04\x02\x05\x01\x02\x01", // 𥎴
+ 0x253b5: "\x03\x01\x01\x03\x04\x01\x02\x05\x01\x02", // 𥎵
+ 0x253b6: "\x03\x01\x01\x03\x04\x02\x05\x01\x01\x01", // 𥎶
+ 0x253b7: "\x03\x01\x01\x03\x04\x03\x02\x05\x01\x01", // 𥎷
+ 0x253b8: "\x03\x01\x01\x03\x04\x04\x01\x05\x05\x04", // 𥎸
+ 0x253b9: "\x03\x01\x01\x03\x04\x01\x05\x04\x01\x02\x01", // 𥎹
+ 0x253ba: "\x03\x01\x01\x03\x04\x03\x04\x01\x05\x03\x04", // 𥎺
+ 0x253bb: "\x03\x03\x05\x04\x01\x04\x03\x01\x01\x03\x04", // 𥎻
+ 0x253bc: "\x02\x01\x02\x01\x01\x03\x03\x01\x01\x03\x04", // 𥎼
+ 0x253bd: "\x03\x01\x01\x03\x04\x02\x05\x02\x01\x03\x04", // 𥎽
+ 0x253be: "\x03\x01\x01\x03\x04\x03\x05\x01\x03\x05\x05", // 𥎾
+ 0x253bf: "\x03\x01\x01\x03\x04\x02\x05\x01\x01\x01\x02", // 𥎿
+ 0x253c0: "\x03\x04\x03\x04\x03\x04\x03\x01\x01\x03\x04", // 𥏀
+ 0x253c1: "\x03\x01\x01\x03\x04\x02\x01\x02\x01\x01\x05", // 𥏁
+ 0x253c2: "\x03\x04\x03\x04\x01\x03\x03\x01\x01\x03\x04", // 𥏂
+ 0x253c3: "\x03\x01\x01\x03\x04\x02\x05\x01\x01\x01\x05", // 𥏃
+ 0x253c4: "\x03\x01\x01\x03\x04\x01\x03\x02\x05\x01\x01", // 𥏄
+ 0x253c5: "\x03\x01\x01\x03\x04\x02\x05\x01\x01\x01\x02", // 𥏅
+ 0x253c6: "\x03\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01", // 𥏆
+ 0x253c7: "\x04\x03\x01\x01\x03\x04\x03\x01\x01\x03\x04", // 𥏇
+ 0x253c8: "\x03\x05\x01\x05\x05\x04\x03\x01\x01\x03\x04", // 𥏈
+ 0x253c9: "\x04\x01\x01\x05\x01\x05\x03\x01\x01\x03\x04", // 𥏉
+ 0x253ca: "\x03\x01\x01\x03\x04\x05\x04\x01\x05\x04\x01", // 𥏊
+ 0x253cb: "\x03\x01\x02\x01\x03\x05\x03\x01\x01\x03\x04", // 𥏋
+ 0x253cc: "\x03\x01\x01\x03\x04\x03\x01\x02\x01\x03\x05", // 𥏌
+ 0x253cd: "\x03\x01\x01\x03\x04\x03\x05\x04\x02\x05\x01", // 𥏍
+ 0x253ce: "\x03\x01\x01\x03\x04\x03\x01\x02\x01\x05\x04", // 𥏎
+ 0x253cf: "\x01\x03\x01\x01\x03\x04\x05\x02\x05\x01\x05\x04", // 𥏏
+ 0x253d0: "\x03\x01\x01\x03\x04\x03\x01\x02\x03\x04\x03\x05", // 𥏐
+ 0x253d1: "\x01\x05\x03\x01\x01\x03\x04\x05\x04\x03\x05\x04", // 𥏑
+ 0x253d2: "\x03\x01\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01", // 𥏒
+ 0x253d3: "\x03\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x02", // 𥏓
+ 0x253d4: "\x03\x01\x01\x03\x04\x04\x01\x04\x03\x01\x01\x02", // 𥏔
+ 0x253d5: "\x03\x01\x01\x03\x04\x04\x04\x05\x01\x03\x05\x04", // 𥏕
+ 0x253d6: "\x03\x01\x01\x03\x04\x05\x04\x03\x01\x01\x03\x04", // 𥏖
+ 0x253d7: "\x03\x01\x01\x03\x04\x03\x01\x02\x03\x04\x05\x03", // 𥏗
+ 0x253d8: "\x03\x01\x01\x03\x04\x05\x01\x03\x05\x02\x02\x05\x02", // 𥏘
+ 0x253d9: "\x03\x01\x01\x03\x04\x04\x03\x01\x01\x03\x04\x05\x05", // 𥏙
+ 0x253da: "\x01\x05\x03\x01\x01\x03\x04\x05\x01\x01\x02\x05\x02", // 𥏚
+ 0x253db: "\x04\x01\x04\x03\x01\x03\x01\x01\x03\x04\x05\x03\x04", // 𥏛
+ 0x253dc: "\x03\x01\x01\x03\x04\x01\x03\x04\x01\x02\x05\x01\x02", // 𥏜
+ 0x253dd: "\x03\x01\x01\x03\x04\x01\x02\x01\x05\x05\x01\x02\x01", // 𥏝
+ 0x253de: "\x03\x01\x01\x03\x04\x05\x04\x05\x04\x05\x04\x05\x04", // 𥏞
+ 0x253df: "\x03\x01\x01\x03\x04\x04\x03\x02\x05\x02\x03\x04", // 𥏟
+ 0x253e0: "\x03\x01\x01\x03\x04\x03\x02\x05\x01\x01\x03\x01\x02", // 𥏠
+ 0x253e1: "\x03\x01\x01\x03\x04\x04\x01\x04\x03\x01\x05\x03\x01", // 𥏡
+ 0x253e2: "\x03\x01\x01\x03\x04\x01\x03\x04\x04\x03\x01\x01\x02", // 𥏢
+ 0x253e3: "\x03\x01\x01\x03\x04\x01\x03\x04\x04\x03\x01\x01\x02", // 𥏣
+ 0x253e4: "\x03\x01\x01\x03\x04\x01\x03\x04\x04\x03\x01\x01\x05", // 𥏤
+ 0x253e5: "\x03\x01\x01\x03\x04\x02\x01\x02\x05\x01\x01\x01\x02", // 𥏥
+ 0x253e6: "\x03\x01\x01\x03\x04\x02\x05\x01\x01\x01\x01\x01\x05", // 𥏦
+ 0x253e7: "\x03\x01\x01\x03\x04\x02\x05\x01\x03\x04\x01\x02\x01", // 𥏧
+ 0x253e8: "\x03\x01\x01\x03\x04\x03\x05\x01\x02\x01\x02\x05\x01", // 𥏨
+ 0x253e9: "\x03\x01\x01\x03\x04\x05\x01\x05\x03\x03\x05\x04\x04", // 𥏩
+ 0x253ea: "\x03\x01\x01\x03\x04\x01\x05\x01\x05\x03\x02\x05\x01\x01", // 𥏪
+ 0x253eb: "\x03\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 𥏫
+ 0x253ec: "\x02\x05\x01\x01\x01\x03\x05\x03\x03\x03\x01\x01\x03\x04", // 𥏬
+ 0x253ed: "\x03\x01\x01\x03\x04\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 𥏭
+ 0x253ee: "\x03\x01\x01\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 𥏮
+ 0x253ef: "\x03\x01\x01\x03\x04\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 𥏯
+ 0x253f0: "\x05\x01\x01\x03\x01\x02\x01\x03\x01\x01\x03\x04\x03\x05", // 𥏰
+ 0x253f1: "\x03\x01\x01\x03\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𥏱
+ 0x253f2: "\x03\x01\x01\x03\x04\x03\x04\x01\x05\x01\x01\x03\x02\x05\x01", // 𥏲
+ 0x253f3: "\x01\x03\x04\x03\x04\x02\x03\x04\x05\x04\x03\x01\x01\x03\x04", // 𥏳
+ 0x253f4: "\x03\x01\x01\x03\x04\x02\x05\x01\x01\x02\x02\x01\x01\x01\x05", // 𥏴
+ 0x253f5: "\x03\x01\x01\x03\x04\x03\x05\x03\x05\x02\x02\x05\x01\x02\x01", // 𥏵
+ 0x253f6: "\x01\x05\x03\x01\x01\x03\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 𥏶
+ 0x253f7: "\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x03\x01\x01\x03\x04", // 𥏷
+ 0x253f8: "\x03\x01\x01\x03\x04\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 𥏸
+ 0x253f9: "\x03\x01\x01\x03\x04\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 𥏹
+ 0x253fa: "\x03\x01\x01\x03\x04\x04\x03\x01\x01\x01\x03\x01\x02\x01", // 𥏺
+ 0x253fb: "\x03\x01\x01\x03\x04\x03\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 𥏻
+ 0x253fc: "\x03\x01\x01\x03\x04\x02\x05\x01\x03\x02\x05\x01\x01\x01\x01\x05", // 𥏼
+ 0x253fd: "\x03\x01\x01\x03\x04\x02\x01\x05\x03\x01\x05\x03\x04\x03\x01\x02", // 𥏽
+ 0x253fe: "\x03\x01\x01\x03\x04\x02\x05\x01\x03\x02\x01\x02\x01\x01\x01\x05", // 𥏾
+ 0x253ff: "\x03\x01\x01\x03\x04\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01", // 𥏿
+ 0x25400: "\x03\x01\x01\x03\x04\x01\x02\x02\x01\x01\x01\x03\x04\x03\x03\x01\x02", // 𥐀
+ 0x25401: "\x03\x01\x01\x03\x04\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 𥐁
+ 0x25402: "\x02\x01\x01\x03\x01\x01\x03\x04\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𥐂
+ 0x25403: "\x03\x01\x01\x03\x04\x02\x01\x02\x01\x05\x01\x02\x01\x01\x01\x01\x05", // 𥐃
+ 0x25404: "\x04\x03\x01\x02\x02\x04\x03\x01\x02\x05\x01\x01\x03\x01\x01\x03\x04", // 𥐄
+ 0x25405: "\x03\x01\x01\x03\x04\x04\x03\x01\x02\x02\x04\x03\x01\x02\x05\x01\x01", // 𥐅
+ 0x25406: "\x03\x01\x01\x03\x04\x01\x02\x05\x01\x04\x03\x01\x04\x03\x01\x01\x02", // 𥐆
+ 0x25407: "\x03\x01\x01\x03\x04\x01\x02\x05\x01\x04\x03\x01\x05\x01\x01\x05\x03\x04", // 𥐇
+ 0x25408: "\x03\x01\x01\x03\x04\x04\x03\x01\x02\x03\x04\x05\x03\x01\x03\x01\x03\x04", // 𥐈
+ 0x25409: "\x05\x01\x01\x05\x03\x04\x03\x01\x01\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 𥐉
+ 0x2540a: "\x03\x01\x01\x03\x04\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x03\x04", // 𥐊
+ 0x2540b: "\x03\x01\x01\x03\x04\x01\x02\x05\x01\x04\x03\x01\x01\x02\x02\x03\x04", // 𥐋
+ 0x2540c: "\x03\x01\x01\x03\x04\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01", // 𥐌
+ 0x2540d: "\x03\x01\x01\x03\x04\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x01\x04\x03\x01", // 𥐍
+ 0x2540e: "\x03\x01\x01\x03\x04\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02", // 𥐎
+ 0x2540f: "\x03\x01\x01\x03\x04\x01\x02\x05\x01\x04\x03\x01\x05\x01\x03\x05\x02\x05\x01", // 𥐏
+ 0x25410: "\x03\x01\x01\x03\x04\x01\x02\x05\x01\x04\x03\x01\x04\x01\x03\x04\x02\x05\x01\x03\x05\x03\x04", // 𥐐
+ 0x25411: "\x03\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x05\x03\x01", // 𥐑
+ 0x25412: "\x03\x01\x01\x03\x04\x01\x02\x05\x01\x04\x03\x01\x02\x05\x05\x04\x05\x02\x05\x01\x01", // 𥐒
+ 0x25413: "\x03\x01\x01\x03\x04\x02\x01\x02\x01\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𥐓
+ 0x25414: "\x03\x01\x01\x03\x04\x01\x02\x05\x01\x04\x03\x01\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01", // 𥐔
+ 0x25415: "\x01\x03\x02\x05\x01\x05", // 𥐕
+ 0x25416: "\x01\x03\x01\x02\x05\x01", // 𥐖
+ 0x25417: "\x01\x03\x02\x05\x01\x05\x05", // 𥐗
+ 0x25418: "\x01\x03\x01\x01\x02\x05\x01", // 𥐘
+ 0x25419: "\x01\x03\x02\x05\x01\x03\x05", // 𥐙
+ 0x2541a: "\x01\x03\x02\x05\x01\x02\x04", // 𥐚
+ 0x2541b: "\x01\x03\x02\x05\x01\x05\x03", // 𥐛
+ 0x2541c: "\x01\x03\x02\x05\x01\x03\x05", // 𥐜
+ 0x2541d: "\x01\x03\x02\x05\x01\x03\x05\x04", // 𥐝
+ 0x2541e: "\x01\x03\x02\x05\x01\x04\x01\x05", // 𥐞
+ 0x2541f: "\x01\x03\x02\x05\x01\x04\x03\x04", // 𥐟
+ 0x25420: "\x01\x03\x02\x05\x01\x03\x05\x04", // 𥐠
+ 0x25421: "\x01\x03\x02\x05\x01\x01\x01\x02", // 𥐡
+ 0x25422: "\x01\x03\x02\x05\x01\x02\x05\x02", // 𥐢
+ 0x25423: "\x01\x03\x02\x05\x01\x03\x02\x02", // 𥐣
+ 0x25424: "\x01\x03\x02\x05\x01\x03\x04\x05", // 𥐤
+ 0x25425: "\x01\x03\x02\x05\x01\x03\x03\x05", // 𥐥
+ 0x25426: "\x01\x03\x02\x05\x01\x05\x01\x05", // 𥐦
+ 0x25427: "\x01\x03\x02\x05\x01\x01\x03\x02", // 𥐧
+ 0x25428: "\x01\x03\x02\x05\x01\x05\x02\x05", // 𥐨
+ 0x25429: "\x01\x03\x02\x05\x01\x03\x05\x01\x01", // 𥐩
+ 0x2542a: "\x01\x03\x02\x05\x01\x01\x03\x05\x04", // 𥐪
+ 0x2542b: "\x01\x03\x02\x05\x01\x03\x01\x02\x01", // 𥐫
+ 0x2542c: "\x01\x03\x02\x05\x01\x03\x01\x01\x05", // 𥐬
+ 0x2542d: "\x01\x03\x02\x05\x01\x03\x01\x01\x02", // 𥐭
+ 0x2542e: "\x01\x03\x02\x05\x01\x05\x01\x03\x04", // 𥐮
+ 0x2542f: "\x01\x03\x02\x05\x01\x01\x01\x05\x04", // 𥐯
+ 0x25430: "\x01\x03\x02\x05\x01\x01\x03\x04\x05", // 𥐰
+ 0x25431: "\x01\x03\x02\x05\x01\x04\x05\x03\x05", // 𥐱
+ 0x25432: "\x01\x03\x02\x05\x01\x03\x03\x05\x04", // 𥐲
+ 0x25433: "\x01\x03\x02\x05\x01\x01\x02\x05\x01", // 𥐳
+ 0x25434: "\x01\x03\x02\x05\x01\x01\x03\x02\x04", // 𥐴
+ 0x25435: "\x01\x03\x02\x05\x01\x01\x03\x05\x05", // 𥐵
+ 0x25436: "\x01\x03\x02\x05\x01\x01\x03\x05\x04", // 𥐶
+ 0x25437: "\x01\x03\x02\x05\x01\x03\x05\x03\x04", // 𥐷
+ 0x25438: "\x01\x03\x02\x05\x01\x05\x04\x03\x05", // 𥐸
+ 0x25439: "\x01\x03\x02\x05\x01\x01\x01\x03\x02", // 𥐹
+ 0x2543a: "\x01\x03\x02\x05\x01\x01\x05\x05\x04", // 𥐺
+ 0x2543b: "\x01\x03\x02\x05\x01\x02\x05\x03\x04", // 𥐻
+ 0x2543c: "\x01\x03\x02\x05\x01\x02\x05\x05\x04", // 𥐼
+ 0x2543d: "\x01\x03\x02\x05\x01\x03\x01\x01\x05", // 𥐽
+ 0x2543e: "\x01\x03\x02\x05\x01\x03\x05\x05\x04", // 𥐾
+ 0x2543f: "\x01\x03\x02\x05\x01\x04\x04\x01\x02", // 𥐿
+ 0x25440: "\x01\x03\x02\x05\x01\x04\x05\x03\x05", // 𥑀
+ 0x25441: "\x01\x03\x02\x05\x01\x05\x02\x01\x05", // 𥑁
+ 0x25442: "\x01\x03\x02\x05\x01\x02\x01\x05\x04", // 𥑂
+ 0x25443: "\x01\x03\x02\x05\x01\x04\x01\x02\x04", // 𥑃
+ 0x25444: "\x01\x03\x02\x05\x01\x01\x02\x01\x05", // 𥑄
+ 0x25445: "\x01\x03\x02\x05\x01\x03\x01\x03\x05", // 𥑅
+ 0x25446: "\x01\x03\x02\x05\x01\x05\x03\x02\x05\x01", // 𥑆
+ 0x25447: "\x01\x03\x02\x05\x01\x03\x01\x01\x03\x04", // 𥑇
+ 0x25448: "\x01\x03\x02\x05\x01\x04\x01\x03\x01\x02", // 𥑈
+ 0x25449: "\x01\x03\x02\x05\x01\x03\x03\x05\x05", // 𥑉
+ 0x2544a: "\x01\x03\x02\x05\x01\x05\x01\x03\x05\x04", // 𥑊
+ 0x2544b: "\x01\x03\x02\x05\x01\x05\x04\x01\x02\x01", // 𥑋
+ 0x2544c: "\x01\x03\x02\x05\x01\x05\x03\x01\x05\x04", // 𥑌
+ 0x2544d: "\x01\x03\x02\x05\x01\x04\x03\x01\x01\x02", // 𥑍
+ 0x2544e: "\x01\x03\x02\x05\x01\x02\x05\x02\x05\x01", // 𥑎
+ 0x2544f: "\x01\x03\x02\x05\x01\x02\x05\x01\x03\x04", // 𥑏
+ 0x25450: "\x01\x03\x02\x05\x01\x02\x05\x01\x01\x02", // 𥑐
+ 0x25451: "\x01\x03\x02\x05\x01\x05\x05\x04\x05\x03", // 𥑑
+ 0x25452: "\x01\x03\x02\x05\x01\x03\x04\x02\x03\x04", // 𥑒
+ 0x25453: "\x01\x03\x02\x05\x01\x05\x02\x02\x03\x05", // 𥑓
+ 0x25454: "\x01\x03\x02\x05\x01\x03\x03\x05\x04\x04", // 𥑔
+ 0x25455: "\x01\x03\x02\x05\x01\x01\x03\x05\x04\x04", // 𥑕
+ 0x25456: "\x01\x03\x02\x05\x01\x04\x05\x04\x03\x04", // 𥑖
+ 0x25457: "\x01\x03\x02\x05\x01\x01\x05\x05\x04\x01", // 𥑗
+ 0x25458: "\x01\x03\x02\x05\x01\x01\x01\x02\x03\x04", // 𥑘
+ 0x25459: "\x01\x02\x01\x05\x03\x01\x03\x02\x05\x01", // 𥑙
+ 0x2545a: "\x01\x03\x02\x05\x01\x03\x02\x05\x03\x04", // 𥑚
+ 0x2545b: "\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01", // 𥑛
+ 0x2545c: "\x01\x03\x02\x05\x01\x01\x03\x02\x04\x01", // 𥑜
+ 0x2545d: "\x01\x03\x02\x05\x01\x05\x02\x05\x03\x04", // 𥑝
+ 0x2545e: "\x01\x03\x02\x05\x01\x02\x05\x01\x03\x04", // 𥑞
+ 0x2545f: "\x01\x02\x01\x04\x05\x01\x03\x02\x05\x01", // 𥑟
+ 0x25460: "\x01\x03\x02\x05\x01\x01\x02\x02\x01\x01", // 𥑠
+ 0x25461: "\x01\x03\x02\x05\x01\x01\x02\x03\x04\x04", // 𥑡
+ 0x25462: "\x01\x03\x02\x05\x01\x01\x03\x02\x05\x02", // 𥑢
+ 0x25463: "\x01\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 𥑣
+ 0x25464: "\x01\x03\x02\x05\x01\x02\x05\x01\x02\x01", // 𥑤
+ 0x25465: "\x01\x03\x02\x05\x01\x03\x01\x01\x02\x01", // 𥑥
+ 0x25466: "\x03\x01\x01\x02\x01\x01\x03\x02\x05\x01", // 𥑦
+ 0x25467: "\x03\x02\x01\x02\x04\x01\x03\x02\x05\x01", // 𥑧
+ 0x25468: "\x01\x03\x02\x05\x01\x03\x02\x05\x03\x04", // 𥑨
+ 0x25469: "\x01\x03\x02\x05\x01\x03\x02\x05\x05\x04", // 𥑩
+ 0x2546a: "\x01\x03\x02\x05\x01\x03\x05\x03\x04\x05", // 𥑪
+ 0x2546b: "\x01\x03\x02\x05\x01\x04\x04\x05\x03\x04", // 𥑫
+ 0x2546c: "\x01\x03\x02\x05\x01\x03\x05\x03\x05\x01", // 𥑬
+ 0x2546d: "\x01\x03\x02\x05\x01\x01\x05\x01\x05", // 𥑭
+ 0x2546e: "\x01\x03\x02\x05\x01\x01\x02\x02\x05\x01", // 𥑮
+ 0x2546f: "\x01\x03\x02\x05\x01\x04\x04\x05\x02\x05\x05", // 𥑯
+ 0x25470: "\x01\x03\x02\x05\x01\x01\x03\x01\x02\x01", // 𥑰
+ 0x25471: "\x01\x02\x01\x05\x03\x01\x03\x02\x05\x01", // 𥑱
+ 0x25472: "\x01\x03\x02\x05\x01\x02\x05\x01\x01\x01", // 𥑲
+ 0x25473: "\x01\x03\x02\x05\x01\x01\x01\x03\x05\x03\x04", // 𥑳
+ 0x25474: "\x01\x03\x02\x05\x01\x04\x01\x03\x05\x03\x04", // 𥑴
+ 0x25475: "\x01\x03\x02\x05\x01\x03\x02\x05\x01\x05\x01", // 𥑵
+ 0x25476: "\x01\x03\x02\x05\x01\x03\x01\x01\x02\x03\x04", // 𥑶
+ 0x25477: "\x01\x03\x02\x05\x01\x02\x05\x01\x01\x03\x04", // 𥑷
+ 0x25478: "\x01\x03\x02\x05\x01\x03\x03\x05\x04\x01\x04", // 𥑸
+ 0x25479: "\x01\x03\x02\x05\x01\x01\x03\x04\x01\x01\x05", // 𥑹
+ 0x2547a: "\x01\x03\x02\x05\x01\x04\x03\x01\x05\x02\x03", // 𥑺
+ 0x2547b: "\x01\x03\x02\x05\x01\x03\x01\x02\x01\x03\x05", // 𥑻
+ 0x2547c: "\x03\x02\x01\x05\x03\x04\x01\x03\x02\x05\x01", // 𥑼
+ 0x2547d: "\x01\x03\x02\x05\x01\x03\x03\x05\x02\x01\x05", // 𥑽
+ 0x2547e: "\x01\x03\x02\x05\x01\x01\x02\x01\x03\x02", // 𥑾
+ 0x2547f: "\x01\x03\x02\x05\x01\x01\x03\x03\x05\x01\x01", // 𥑿
+ 0x25480: "\x01\x03\x02\x05\x01\x04\x04\x01\x01\x01\x02", // 𥒀
+ 0x25481: "\x01\x03\x02\x05\x01\x04\x03\x04\x02\x04\x02", // 𥒁
+ 0x25482: "\x01\x03\x02\x05\x01\x01\x03\x05\x04\x02\x02", // 𥒂
+ 0x25483: "\x01\x03\x02\x05\x01\x01\x02\x01\x05\x02\x05", // 𥒃
+ 0x25484: "\x01\x03\x02\x05\x01\x04\x03\x01\x02\x03\x04", // 𥒄
+ 0x25485: "\x01\x03\x02\x05\x01\x01\x02\x05\x01\x03\x04", // 𥒅
+ 0x25486: "\x01\x03\x02\x05\x01\x04\x03\x01\x01\x03\x04", // 𥒆
+ 0x25487: "\x01\x03\x02\x05\x01\x04\x04\x05\x05\x03\x01", // 𥒇
+ 0x25488: "\x01\x03\x02\x05\x01\x04\x04\x05\x03\x01\x05", // 𥒈
+ 0x25489: "\x01\x03\x02\x05\x01\x05\x04\x01\x05\x04\x01", // 𥒉
+ 0x2548a: "\x01\x03\x02\x05\x01\x03\x05\x04\x02\x05\x01", // 𥒊
+ 0x2548b: "\x01\x03\x02\x05\x01\x03\x01\x01\x02\x05\x02", // 𥒋
+ 0x2548c: "\x01\x03\x02\x05\x01\x03\x02\x05\x02\x02\x01", // 𥒌
+ 0x2548d: "\x01\x03\x02\x05\x01\x03\x05\x05\x02\x01\x05", // 𥒍
+ 0x2548e: "\x01\x03\x02\x05\x01\x01\x01\x01\x05\x03\x04", // 𥒎
+ 0x2548f: "\x01\x03\x02\x05\x01\x02\x05\x01\x01\x03\x04", // 𥒏
+ 0x25490: "\x01\x02\x01\x01\x02\x01\x01\x03\x02\x05\x01", // 𥒐
+ 0x25491: "\x01\x03\x02\x05\x01\x01\x03\x01\x01\x02\x01", // 𥒑
+ 0x25492: "\x01\x03\x02\x05\x01\x01\x03\x02\x01\x02\x01", // 𥒒
+ 0x25493: "\x01\x03\x02\x05\x01\x01\x05\x04\x01\x02\x01", // 𥒓
+ 0x25494: "\x01\x03\x02\x05\x01\x02\x01\x02\x01\x05\x04", // 𥒔
+ 0x25495: "\x01\x03\x02\x05\x01\x03\x02\x05\x01\x01\x01", // 𥒕
+ 0x25496: "\x01\x03\x02\x05\x01\x03\x03\x01\x02\x05\x01", // 𥒖
+ 0x25497: "\x01\x03\x02\x05\x01\x03\x04\x04\x03\x05\x04", // 𥒗
+ 0x25498: "\x01\x03\x02\x05\x01\x03\x05\x02\x05\x01\x01", // 𥒘
+ 0x25499: "\x01\x03\x02\x05\x01\x03\x05\x03\x03\x05\x04", // 𥒙
+ 0x2549a: "\x01\x03\x02\x05\x01\x03\x05\x03\x04\x05\x02", // 𥒚
+ 0x2549b: "\x01\x03\x02\x05\x01\x03\x05\x04\x01\x05\x04", // 𥒛
+ 0x2549c: "\x01\x03\x02\x05\x01\x04\x01\x02\x05\x03\x04", // 𥒜
+ 0x2549d: "\x01\x03\x02\x05\x01\x04\x01\x05\x04\x03\x05", // 𥒝
+ 0x2549e: "\x01\x03\x02\x05\x01\x04\x03\x01\x01\x01\x02", // 𥒞
+ 0x2549f: "\x04\x04\x01\x05\x01\x05\x01\x03\x02\x05\x01", // 𥒟
+ 0x254a0: "\x05\x01\x01\x01\x02\x01\x01\x03\x02\x05\x01", // 𥒠
+ 0x254a1: "\x01\x03\x02\x05\x01\x05\x02\x05\x03\x04\x01", // 𥒡
+ 0x254a2: "\x01\x03\x02\x05\x01\x05\x03\x05\x03\x05\x03", // 𥒢
+ 0x254a3: "\x01\x03\x02\x05\x01\x05\x04\x01\x03\x05\x04", // 𥒣
+ 0x254a4: "\x01\x03\x02\x05\x01\x05\x05\x05\x02\x05\x02", // 𥒤
+ 0x254a5: "\x01\x03\x02\x05\x01\x03\x05\x04\x03\x05\x04", // 𥒥
+ 0x254a6: "\x01\x03\x02\x05\x01\x01\x02\x01\x05\x02\x05", // 𥒦
+ 0x254a7: "\x01\x03\x02\x05\x01\x05\x04\x02\x01\x03\x04", // 𥒧
+ 0x254a8: "\x01\x03\x02\x05\x01\x03\x04\x02\x04\x04\x04", // 𥒨
+ 0x254a9: "\x01\x03\x02\x05\x01\x02\x04\x01\x02\x03\x04", // 𥒩
+ 0x254aa: "\x01\x03\x02\x05\x01\x04\x04\x05\x03\x01\x01\x02", // 𥒪
+ 0x254ab: "\x01\x03\x02\x05\x01\x03\x04\x04\x03\x05\x02\x01", // 𥒫
+ 0x254ac: "\x01\x03\x02\x05\x01\x04\x04\x05\x01\x02\x03\x04", // 𥒬
+ 0x254ad: "\x01\x03\x02\x05\x01\x02\x05\x01\x02\x01\x03\x04", // 𥒭
+ 0x254ae: "\x01\x03\x02\x05\x01\x05\x01\x03\x03\x01\x01\x05", // 𥒮
+ 0x254af: "\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x02\x01", // 𥒯
+ 0x254b0: "\x01\x03\x02\x05\x01\x01\x02\x05\x01\x01\x02\x04", // 𥒰
+ 0x254b1: "\x01\x03\x02\x05\x01\x01\x01\x03\x02\x03\x03\x03", // 𥒱
+ 0x254b2: "\x01\x03\x02\x05\x01\x05\x04\x03\x01\x01\x03\x04", // 𥒲
+ 0x254b3: "\x04\x04\x05\x01\x03\x02\x05\x01\x04\x01\x03\x05", // 𥒳
+ 0x254b4: "\x01\x03\x02\x05\x01\x01\x02\x01\x02\x03\x04\x05", // 𥒴
+ 0x254b5: "\x01\x03\x02\x05\x01\x02\x05\x01\x05\x02\x01\x05", // 𥒵
+ 0x254b6: "\x01\x03\x02\x05\x01\x03\x05\x05\x04\x02\x03\x04", // 𥒶
+ 0x254b7: "\x01\x03\x02\x05\x01\x01\x01\x01\x03\x05\x02", // 𥒷
+ 0x254b8: "\x01\x03\x02\x05\x01\x01\x02\x04\x01\x03\x04\x04", // 𥒸
+ 0x254b9: "\x01\x03\x02\x05\x01\x04\x01\x03\x01\x02\x01\x04", // 𥒹
+ 0x254ba: "\x01\x03\x02\x05\x01\x01\x02\x01\x04\x05\x04\x04", // 𥒺
+ 0x254bb: "\x01\x03\x02\x05\x01\x02\x05\x01\x05\x03\x02\x02", // 𥒻
+ 0x254bc: "\x01\x03\x02\x05\x01\x02\x01\x02\x01\x02\x03\x03", // 𥒼
+ 0x254bd: "\x01\x02\x01\x05\x01\x01\x03\x01\x03\x02\x05\x01", // 𥒽
+ 0x254be: "\x01\x03\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01", // 𥒾
+ 0x254bf: "\x01\x03\x02\x05\x01\x02\x01\x02\x01\x01\x05\x03", // 𥒿
+ 0x254c0: "\x01\x03\x02\x05\x01\x02\x05\x01\x01\x01\x03\x05", // 𥓀
+ 0x254c1: "\x01\x03\x02\x05\x01\x03\x02\x05\x03\x05\x04\x01", // 𥓁
+ 0x254c2: "\x01\x03\x02\x05\x01\x03\x04\x04\x05\x02\x05\x01", // 𥓂
+ 0x254c3: "\x01\x03\x02\x05\x01\x03\x05\x04\x01\x02\x03\x04", // 𥓃
+ 0x254c4: "\x01\x03\x02\x05\x01\x02\x05\x01\x01\x02\x01\x01", // 𥓄
+ 0x254c5: "\x01\x03\x02\x05\x01\x02\x05\x01\x03\x02\x05\x01", // 𥓅
+ 0x254c6: "\x01\x03\x02\x05\x01\x05\x04\x01\x03\x02\x05\x01", // 𥓆
+ 0x254c7: "\x03\x05\x04\x02\x01\x02\x01\x01\x03\x02\x05\x01", // 𥓇
+ 0x254c8: "\x01\x03\x02\x05\x01\x01\x02\x01\x02\x02\x01\x02", // 𥓈
+ 0x254c9: "\x01\x03\x02\x05\x01\x01\x03\x05\x05\x03\x04", // 𥓉
+ 0x254ca: "\x01\x02\x03\x04\x03\x03\x01\x02\x01\x03\x02\x05\x01", // 𥓊
+ 0x254cb: "\x01\x03\x02\x05\x01\x03\x02\x01\x05\x01\x01\x03\x05", // 𥓋
+ 0x254cc: "\x01\x03\x02\x05\x01\x04\x03\x01\x01\x02\x01\x03\x05", // 𥓌
+ 0x254cd: "\x02\x01\x01\x02\x03\x04\x05\x04\x01\x03\x02\x05\x01", // 𥓍
+ 0x254ce: "\x01\x03\x02\x05\x01\x03\x05\x01\x03\x01\x03\x04\x04", // 𥓎
+ 0x254cf: "\x01\x03\x02\x05\x01\x05\x01\x01\x02\x04\x01\x03\x04", // 𥓏
+ 0x254d0: "\x01\x03\x02\x05\x01\x01\x05\x01\x01\x02\x01\x03\x04", // 𥓐
+ 0x254d1: "\x01\x03\x02\x05\x01\x03\x04\x01\x02\x03\x04\x02\x02", // 𥓑
+ 0x254d2: "\x01\x03\x02\x05\x01\x03\x05\x03\x02\x01\x05\x01\x01", // 𥓒
+ 0x254d3: "\x01\x03\x02\x05\x01\x02\x05\x01\x02\x01\x04\x01\x02", // 𥓓
+ 0x254d4: "\x01\x03\x02\x05\x01\x03\x01\x02\x03\x04\x05\x03\x01", // 𥓔
+ 0x254d5: "\x01\x03\x02\x05\x01\x03\x04\x04\x03\x03\x01\x02\x01", // 𥓕
+ 0x254d6: "\x01\x03\x02\x05\x01\x02\x05\x01\x01\x01\x02\x03\x04", // 𥓖
+ 0x254d7: "\x01\x03\x02\x05\x01\x05\x04\x05\x04\x05\x04\x01\x01", // 𥓗
+ 0x254d8: "\x01\x03\x02\x05\x01\x02\x05\x01\x01\x03\x05\x03\x03", // 𥓘
+ 0x254d9: "\x01\x02\x03\x04\x01\x02\x03\x04\x01\x03\x02\x05\x01", // 𥓙
+ 0x254da: "\x01\x03\x02\x05\x01\x02\x01\x05\x03\x01\x05\x03\x05", // 𥓚
+ 0x254db: "\x01\x03\x02\x05\x01\x01\x01\x05\x05\x04\x05\x03\x04", // 𥓛
+ 0x254dc: "\x01\x03\x02\x05\x01\x01\x03\x04\x03\x04\x02\x03\x04", // 𥓜
+ 0x254dd: "\x01\x03\x02\x05\x01\x01\x02\x05\x01\x01\x02\x03\x04", // 𥓝
+ 0x254de: "\x01\x03\x02\x05\x01\x05\x02\x04\x01\x03\x04\x05\x02", // 𥓞
+ 0x254df: "\x01\x03\x02\x05\x01\x01\x02\x05\x01\x02\x05\x02\x05", // 𥓟
+ 0x254e0: "\x01\x03\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x04", // 𥓠
+ 0x254e1: "\x01\x03\x02\x05\x01\x02\x04\x03\x02\x05\x02\x05\x01", // 𥓡
+ 0x254e2: "\x01\x03\x02\x05\x01\x02\x01\x02\x01\x02\x01\x03\x04", // 𥓢
+ 0x254e3: "\x01\x03\x02\x05\x01\x02\x05\x01\x01\x04\x05\x03\x05", // 𥓣
+ 0x254e4: "\x01\x03\x02\x05\x01\x02\x05\x02\x03\x05\x05\x01\x05", // 𥓤
+ 0x254e5: "\x01\x03\x02\x05\x01\x02\x05\x01\x01\x02\x05\x01\x01", // 𥓥
+ 0x254e6: "\x01\x03\x02\x05\x01\x03\x02\x01\x05\x01\x01\x02\x05", // 𥓦
+ 0x254e7: "\x03\x01\x02\x01\x03\x01\x01\x02\x01\x03\x02\x05\x01", // 𥓧
+ 0x254e8: "\x01\x03\x02\x05\x01\x01\x01\x03\x02\x03\x01\x01\x02", // 𥓨
+ 0x254e9: "\x01\x03\x02\x05\x01\x01\x02\x01\x01\x03\x02\x05\x01", // 𥓩
+ 0x254ea: "\x01\x03\x02\x05\x01\x01\x02\x01\x03\x04\x01\x02\x01", // 𥓪
+ 0x254eb: "\x01\x03\x02\x05\x01\x01\x05\x04\x01\x02\x01\x02\x02", // 𥓫
+ 0x254ec: "\x01\x05\x04\x01\x02\x01\x02\x02\x01\x03\x02\x05\x01", // 𥓬
+ 0x254ed: "\x01\x03\x02\x05\x01\x03\x02\x05\x01\x05\x01\x01\x02", // 𥓭
+ 0x254ee: "\x01\x03\x02\x05\x01\x03\x05\x03\x01\x01\x02\x05\x02", // 𥓮
+ 0x254ef: "\x01\x03\x02\x05\x01\x04\x01\x03\x05\x04\x01\x05\x03", // 𥓯
+ 0x254f0: "\x01\x03\x02\x05\x01\x04\x04\x05\x03\x04\x05\x01\x05", // 𥓰
+ 0x254f1: "\x01\x03\x02\x05\x01\x05\x05\x05\x01\x02\x01\x02\x01", // 𥓱
+ 0x254f2: "\x01\x03\x02\x05\x01\x05\x05\x05\x02\x05\x01\x02\x01", // 𥓲
+ 0x254f3: "\x01\x03\x02\x05\x01\x03\x03\x02\x05\x03\x02\x05\x04", // 𥓳
+ 0x254f4: "\x01\x03\x02\x05\x01\x04\x01\x05\x03\x03\x01\x03\x04", // 𥓴
+ 0x254f5: "\x01\x03\x02\x05\x01\x04\x01\x03\x03\x05\x01\x05\x04", // 𥓵
+ 0x254f6: "\x01\x03\x02\x05\x01\x03\x05\x04\x02\x05\x01\x02\x01", // 𥓶
+ 0x254f7: "\x01\x03\x02\x05\x01\x04\x01\x03\x05\x01\x01\x03\x04", // 𥓷
+ 0x254f8: "\x01\x03\x02\x05\x01\x04\x05\x02\x03\x04\x03\x03\x03", // 𥓸
+ 0x254f9: "\x01\x03\x02\x05\x01\x01\x03\x02\x03\x01\x01\x03\x04", // 𥓹
+ 0x254fa: "\x05\x04\x05\x02\x03\x03\x01\x03\x04\x01\x03\x02\x05\x01", // 𥓺
+ 0x254fb: "\x01\x03\x02\x05\x01\x03\x04\x05\x02\x03\x04\x03\x05\x04", // 𥓻
+ 0x254fc: "\x01\x03\x02\x05\x01\x01\x05\x01\x05\x01\x02\x03\x04", // 𥓼
+ 0x254fd: "\x01\x03\x02\x05\x01\x02\x01\x02\x01\x01\x05\x01\x02\x03\x04", // 𥓽
+ 0x254fe: "\x01\x03\x02\x05\x01\x03\x01\x02\x03\x02\x01\x05\x01\x01", // 𥓾
+ 0x254ff: "\x01\x03\x02\x05\x01\x01\x03\x01\x02\x01\x03\x05\x04\x01", // 𥓿
+ 0x25500: "\x01\x03\x02\x05\x01\x03\x05\x04\x01\x01\x01\x02\x05\x01", // 𥔀
+ 0x25501: "\x01\x03\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 𥔁
+ 0x25502: "\x01\x03\x02\x05\x01\x04\x04\x02\x01\x02\x05\x04\x04\x01", // 𥔂
+ 0x25503: "\x01\x03\x02\x05\x01\x01\x03\x01\x05\x03\x01\x05\x03\x04", // 𥔃
+ 0x25504: "\x01\x03\x02\x05\x01\x03\x02\x01\x05\x01\x01\x01\x02\x01", // 𥔄
+ 0x25505: "\x01\x03\x02\x05\x01\x02\x05\x01\x02\x01\x03\x04\x03\x02", // 𥔅
+ 0x25506: "\x01\x03\x02\x05\x01\x02\x05\x03\x04\x03\x04\x03\x04\x01", // 𥔆
+ 0x25507: "\x01\x03\x02\x05\x01\x01\x03\x04\x03\x05\x04\x02\x05\x01", // 𥔇
+ 0x25508: "\x01\x03\x02\x05\x01\x01\x03\x04\x01\x04\x03\x01\x01\x02", // 𥔈
+ 0x25509: "\x01\x03\x02\x05\x01\x04\x04\x05\x03\x04\x03\x04\x05\x04", // 𥔉
+ 0x2550a: "\x01\x03\x02\x05\x01\x05\x01\x05\x01\x05\x04\x01\x02\x01", // 𥔊
+ 0x2550b: "\x01\x03\x02\x05\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 𥔋
+ 0x2550c: "\x01\x03\x02\x05\x01\x01\x02\x05\x01\x01\x05\x03\x01\x05", // 𥔌
+ 0x2550d: "\x01\x03\x02\x05\x01\x03\x01\x02\x03\x04\x04\x03\x03\x04", // 𥔍
+ 0x2550e: "\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x02\x05\x01\x02", // 𥔎
+ 0x2550f: "\x01\x01\x02\x01\x02\x05\x01\x02\x01\x01\x03\x02\x05\x01", // 𥔏
+ 0x25510: "\x01\x03\x02\x05\x01\x01\x03\x04\x04\x02\x05\x02\x02\x01", // 𥔐
+ 0x25511: "\x01\x03\x02\x05\x01\x04\x04\x05\x04\x03\x03\x04\x05\x04", // 𥔑
+ 0x25512: "\x01\x03\x02\x05\x01\x04\x05\x01\x01\x03\x05\x01\x02\x04", // 𥔒
+ 0x25513: "\x01\x03\x02\x05\x01\x01\x02\x02\x05\x01\x03\x05\x01\x01", // 𥔓
+ 0x25514: "\x01\x03\x02\x05\x01\x05\x01\x03\x04\x03\x01\x02\x03\x04", // 𥔔
+ 0x25515: "\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x04\x04\x04\x04", // 𥔕
+ 0x25516: "\x01\x03\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x03\x01", // 𥔖
+ 0x25517: "\x01\x03\x02\x05\x01\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 𥔗
+ 0x25518: "\x01\x03\x02\x05\x01\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𥔘
+ 0x25519: "\x01\x03\x02\x05\x01\x01\x02\x02\x03\x05\x04\x05\x05", // 𥔙
+ 0x2551a: "\x01\x03\x02\x05\x01\x03\x04\x01\x02\x05\x01\x01\x01\x02", // 𥔚
+ 0x2551b: "\x01\x03\x02\x05\x01\x03\x04\x04\x03\x01\x01\x03\x05\x04", // 𥔛
+ 0x2551c: "\x01\x03\x02\x05\x01\x03\x01\x02\x03\x04\x02\x05\x01\x01", // 𥔜
+ 0x2551d: "\x01\x03\x02\x05\x01\x03\x01\x02\x05\x01\x01\x02\x03\x04", // 𥔝
+ 0x2551e: "\x01\x03\x02\x05\x01\x03\x04\x05\x03\x02\x05\x02\x02\x01", // 𥔞
+ 0x2551f: "\x01\x03\x02\x05\x01\x03\x02\x05\x01\x01\x01\x02\x03\x04", // 𥔟
+ 0x25520: "\x01\x03\x02\x05\x01\x03\x03\x03\x05\x03\x04\x02\x05\x01", // 𥔠
+ 0x25521: "\x01\x03\x02\x05\x01\x03\x01\x02\x03\x04\x02\x05\x01\x01", // 𥔡
+ 0x25522: "\x01\x03\x02\x05\x01\x03\x02\x01\x01\x05\x01\x01\x03\x04", // 𥔢
+ 0x25523: "\x01\x03\x02\x05\x01\x04\x03\x01\x01\x02\x01\x05\x03\x01", // 𥔣
+ 0x25524: "\x01\x03\x02\x05\x01\x05\x01\x03\x01\x02\x02\x01\x03\x04", // 𥔤
+ 0x25525: "\x01\x03\x02\x05\x01\x05\x05\x05\x02\x05\x03\x05\x04\x01", // 𥔥
+ 0x25526: "\x01\x03\x02\x05\x01\x01\x03\x02\x04\x02\x05\x02\x02\x01", // 𥔦
+ 0x25527: "\x01\x03\x02\x05\x01\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𥔧
+ 0x25528: "\x01\x03\x02\x05\x01\x02\x05\x03\x04\x01\x03\x02\x05\x01", // 𥔨
+ 0x25529: "\x01\x03\x02\x05\x01\x03\x05\x03\x04\x01\x03\x02\x05\x01", // 𥔩
+ 0x2552a: "\x01\x03\x02\x05\x01\x05\x04\x05\x04\x05\x04\x03\x02\x02", // 𥔪
+ 0x2552b: "\x01\x03\x02\x05\x01\x01\x01\x02\x01\x02\x01\x02\x03\x04", // 𥔫
+ 0x2552c: "\x01\x03\x02\x05\x01\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 𥔬
+ 0x2552d: "\x01\x03\x02\x05\x01\x02\x04\x03\x02\x05\x01\x01\x01\x03\x04", // 𥔭
+ 0x2552e: "\x01\x03\x02\x05\x01\x02\x01\x05\x03\x01\x05\x04\x01\x03\x04", // 𥔮
+ 0x2552f: "\x01\x03\x02\x05\x01\x02\x05\x02\x05\x01\x01\x04\x05\x05\x04", // 𥔯
+ 0x25530: "\x01\x03\x02\x05\x01\x03\x04\x04\x03\x05\x03\x03\x03\x05\x04", // 𥔰
+ 0x25531: "\x01\x03\x02\x05\x01\x03\x05\x01\x03\x05\x04\x01\x05\x04\x01", // 𥔱
+ 0x25532: "\x01\x03\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x05", // 𥔲
+ 0x25533: "\x01\x02\x01\x04\x05\x01\x01\x03\x02\x05\x01\x03\x05\x05\x04", // 𥔳
+ 0x25534: "\x01\x03\x02\x05\x01\x03\x01\x01\x02\x01\x01\x03\x02\x05\x01", // 𥔴
+ 0x25535: "\x01\x03\x02\x05\x01\x01\x02\x01\x02\x05\x05\x04\x05\x05\x04", // 𥔵
+ 0x25536: "\x01\x03\x02\x05\x01\x04\x03\x01\x01\x02\x01\x03\x05\x05\x04", // 𥔶
+ 0x25537: "\x01\x03\x02\x05\x01\x04\x01\x03\x01\x02\x02\x01\x02\x05\x02", // 𥔷
+ 0x25538: "\x01\x03\x02\x05\x01\x01\x02\x02\x01\x03\x04\x02\x04\x04\x04", // 𥔸
+ 0x25539: "\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x05\x04", // 𥔹
+ 0x2553a: "\x01\x03\x02\x05\x01\x03\x04\x04\x03\x04\x05\x01\x02\x05\x04", // 𥔺
+ 0x2553b: "\x04\x05\x02\x04\x02\x05\x01\x01\x02\x01\x03\x02\x05\x01", // 𥔻
+ 0x2553c: "\x01\x02\x01\x04\x05\x01\x03\x05\x05\x04\x01\x03\x02\x05\x01", // 𥔼
+ 0x2553d: "\x01\x03\x02\x05\x01\x01\x02\x02\x03\x04\x01\x02\x05\x01", // 𥔽
+ 0x2553e: "\x01\x03\x02\x05\x01\x01\x02\x02\x04\x01\x05\x03\x02\x05", // 𥔾
+ 0x2553f: "\x01\x03\x02\x05\x01\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01", // 𥔿
+ 0x25540: "\x01\x03\x02\x05\x01\x03\x04\x05\x04\x05\x04\x01\x05\x04\x01", // 𥕀
+ 0x25541: "\x01\x03\x02\x05\x01\x04\x01\x03\x04\x01\x02\x02\x01\x01\x01", // 𥕁
+ 0x25542: "\x01\x03\x02\x05\x01\x04\x01\x03\x04\x03\x04\x02\x05\x01\x01", // 𥕂
+ 0x25543: "\x01\x03\x02\x05\x01\x05\x04\x05\x04\x05\x04\x04\x04\x04\x04", // 𥕃
+ 0x25544: "\x01\x03\x02\x05\x01\x01\x02\x01\x02\x05\x01\x01\x02\x01\x01", // 𥕄
+ 0x25545: "\x01\x03\x02\x05\x01\x04\x04\x05\x03\x04\x02\x05\x01\x01\x01", // 𥕅
+ 0x25546: "\x01\x03\x02\x05\x01\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04", // 𥕆
+ 0x25547: "\x01\x03\x02\x05\x01\x01\x02\x05\x02\x02\x05\x03\x04\x01\x05", // 𥕇
+ 0x25548: "\x01\x03\x02\x05\x01\x03\x03\x01\x03\x05\x04\x04\x05\x04", // 𥕈
+ 0x25549: "\x01\x03\x02\x05\x01\x01\x03\x01\x02\x02\x01\x02\x05\x01\x01", // 𥕉
+ 0x2554a: "\x01\x03\x02\x05\x01\x01\x02\x02\x01\x03\x04\x01\x03\x02", // 𥕊
+ 0x2554b: "\x01\x03\x02\x05\x01\x03\x02\x01\x01\x05\x01\x01\x02\x05\x04", // 𥕋
+ 0x2554c: "\x01\x03\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02", // 𥕌
+ 0x2554d: "\x01\x03\x02\x05\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 𥕍
+ 0x2554e: "\x01\x03\x02\x05\x01\x04\x01\x03\x05\x01\x01\x02\x04\x01\x03\x04", // 𥕎
+ 0x2554f: "\x01\x03\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x05\x03\x04\x01", // 𥕏
+ 0x25550: "\x01\x03\x02\x05\x01\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01", // 𥕐
+ 0x25551: "\x01\x03\x02\x05\x01\x02\x01\x05\x03\x01\x05\x02\x05\x01\x01\x01", // 𥕑
+ 0x25552: "\x01\x03\x02\x05\x01\x04\x01\x03\x01\x02\x02\x01\x02\x05\x01\x01", // 𥕒
+ 0x25553: "\x01\x03\x02\x05\x01\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x04", // 𥕓
+ 0x25554: "\x01\x03\x02\x05\x01\x03\x05\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 𥕔
+ 0x25555: "\x01\x03\x02\x05\x01\x02\x01\x05\x03\x01\x05\x03\x04\x03\x01\x02", // 𥕕
+ 0x25556: "\x01\x03\x02\x05\x01\x04\x01\x02\x05\x01\x05\x02\x01\x05\x02", // 𥕖
+ 0x25557: "\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x01\x03\x02\x05\x01", // 𥕗
+ 0x25558: "\x01\x03\x02\x05\x01\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 𥕘
+ 0x25559: "\x01\x03\x04\x02\x05\x01\x03\x01\x01\x02\x01\x01\x03\x02\x05\x01", // 𥕙
+ 0x2555a: "\x01\x03\x02\x05\x01\x04\x03\x03\x04\x04\x03\x03\x04\x03\x05\x04", // 𥕚
+ 0x2555b: "\x01\x03\x02\x05\x01\x01\x02\x02\x01\x01\x01\x03\x04\x01\x02\x01", // 𥕛
+ 0x2555c: "\x01\x03\x02\x05\x01\x01\x02\x02\x04\x04\x05\x01\x01\x03\x05", // 𥕜
+ 0x2555d: "\x01\x03\x02\x05\x01\x04\x03\x01\x02\x03\x04\x01\x03\x02\x05\x01", // 𥕝
+ 0x2555e: "\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02", // 𥕞
+ 0x2555f: "\x01\x03\x02\x05\x01\x05\x01\x03\x01\x04\x05\x02\x04\x04\x04\x04", // 𥕟
+ 0x25560: "\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x02\x05\x01\x01\x05", // 𥕠
+ 0x25561: "\x01\x03\x02\x05\x01\x01\x02\x02\x01\x01\x01\x03\x05\x03\x05\x02", // 𥕡
+ 0x25562: "\x01\x03\x02\x05\x01\x01\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01", // 𥕢
+ 0x25563: "\x01\x03\x02\x05\x01\x03\x03\x02\x02\x05\x01\x01\x01\x01\x02\x04", // 𥕣
+ 0x25564: "\x01\x03\x02\x05\x01\x04\x03\x01\x01\x02\x01\x02\x05\x02\x02\x01", // 𥕤
+ 0x25565: "\x01\x03\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 𥕥
+ 0x25566: "\x01\x03\x02\x05\x01\x04\x01\x03\x04\x02\x05\x01\x03\x05\x03\x04", // 𥕦
+ 0x25567: "\x01\x03\x02\x05\x01\x01\x02\x02\x01\x03\x05\x04\x05\x02\x05\x02", // 𥕧
+ 0x25568: "\x01\x03\x02\x05\x01\x05\x02\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 𥕨
+ 0x25569: "\x01\x03\x02\x05\x01\x01\x02\x01\x02\x05\x04\x01\x02\x01\x03\x04", // 𥕩
+ 0x2556a: "\x01\x03\x02\x05\x01\x01\x02\x01\x02\x01\x01\x03\x04\x05\x02\x01", // 𥕪
+ 0x2556b: "\x01\x03\x02\x05\x01\x03\x03\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𥕫
+ 0x2556c: "\x01\x03\x02\x05\x01\x03\x04\x04\x03\x03\x01\x01\x02\x01\x02\x01", // 𥕬
+ 0x2556d: "\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x01\x03\x02\x05\x01", // 𥕭
+ 0x2556e: "\x01\x03\x02\x05\x01\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 𥕮
+ 0x2556f: "\x01\x03\x02\x05\x01\x04\x04\x05\x03\x02\x01\x03\x02\x05\x01\x01", // 𥕯
+ 0x25570: "\x01\x03\x02\x05\x01\x02\x01\x05\x03\x01\x05\x02\x02\x05\x02\x01\x01", // 𥕰
+ 0x25571: "\x01\x03\x02\x05\x01\x01\x02\x01\x02\x05\x01\x04\x03\x01\x03\x03\x03", // 𥕱
+ 0x25572: "\x01\x03\x02\x05\x01\x01\x03\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04", // 𥕲
+ 0x25573: "\x01\x03\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04\x01\x03\x02\x05\x01", // 𥕳
+ 0x25574: "\x01\x03\x02\x05\x01\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 𥕴
+ 0x25575: "\x01\x03\x02\x05\x01\x01\x02\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 𥕵
+ 0x25576: "\x01\x03\x02\x05\x01\x01\x02\x02\x01\x01\x01\x03\x04\x03\x03\x01\x02", // 𥕶
+ 0x25577: "\x01\x03\x02\x05\x01\x01\x03\x02\x05\x02\x02\x01\x03\x02\x05\x02\x02", // 𥕷
+ 0x25578: "\x01\x03\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x01\x01\x05\x04", // 𥕸
+ 0x25579: "\x01\x03\x02\x05\x01\x03\x01\x01\x05\x03\x01\x01\x05\x03\x01\x01\x05", // 𥕹
+ 0x2557a: "\x01\x03\x02\x05\x01\x05\x04\x05\x04\x05\x04\x03\x04\x02\x04\x04\x04", // 𥕺
+ 0x2557b: "\x01\x03\x02\x05\x01\x03\x01\x01\x02\x02\x02\x02\x01\x04\x04\x04\x04", // 𥕻
+ 0x2557c: "\x01\x03\x02\x05\x01\x03\x04\x01\x05\x01\x02\x05\x03\x05\x01\x01", // 𥕼
+ 0x2557d: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x03\x03\x03\x01\x03\x02\x05\x01", // 𥕽
+ 0x2557e: "\x01\x03\x02\x05\x01\x01\x02\x01\x02\x01\x03\x04\x02\x05\x02\x03\x04", // 𥕾
+ 0x2557f: "\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x01\x03\x02\x05\x01", // 𥕿
+ 0x25580: "\x01\x03\x02\x05\x01\x01\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 𥖀
+ 0x25581: "\x01\x03\x02\x05\x01\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x02\x04", // 𥖁
+ 0x25582: "\x01\x03\x02\x05\x01\x04\x01\x03\x05\x02\x02\x01\x05\x01\x03\x05\x04", // 𥖂
+ 0x25583: "\x01\x03\x02\x05\x01\x04\x03\x01\x05\x05\x04\x05\x05\x04\x05\x03\x01", // 𥖃
+ 0x25584: "\x01\x03\x02\x05\x01\x04\x03\x01\x01\x02\x01\x01\x01\x03\x05\x03\x04", // 𥖄
+ 0x25585: "\x01\x03\x02\x05\x01\x01\x04\x05\x02\x04\x01\x03\x04\x01\x01\x05\x04", // 𥖅
+ 0x25586: "\x01\x03\x02\x05\x01\x05\x01\x01\x02\x02\x05\x01\x01\x01\x01\x03\x02", // 𥖆
+ 0x25587: "\x01\x03\x02\x05\x01\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04", // 𥖇
+ 0x25588: "\x01\x03\x02\x05\x01\x01\x02\x01\x02\x04\x03\x01\x01\x02\x01\x03\x05", // 𥖈
+ 0x25589: "\x01\x03\x02\x05\x01\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x03\x04", // 𥖉
+ 0x2558a: "\x01\x03\x02\x05\x01\x02\x05\x01\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 𥖊
+ 0x2558b: "\x01\x03\x02\x05\x01\x02\x01\x02\x01\x02\x01\x02\x01\x02\x01\x02\x01", // 𥖋
+ 0x2558c: "\x01\x03\x02\x05\x01\x03\x03\x04\x03\x04\x03\x04\x03\x04\x01\x02\x01", // 𥖌
+ 0x2558d: "\x04\x04\x01\x01\x02\x05\x01\x02\x03\x04\x02\x02\x01\x03\x02\x05\x01", // 𥖍
+ 0x2558e: "\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x03\x04\x01\x03\x02\x05\x01", // 𥖎
+ 0x2558f: "\x01\x03\x02\x05\x01\x05\x05\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𥖏
+ 0x25590: "\x01\x03\x02\x05\x01\x05\x02\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 𥖐
+ 0x25591: "\x05\x01\x03\x03\x01\x01\x05\x01\x03\x02\x05\x01\x05\x03\x02\x05\x04", // 𥖑
+ 0x25592: "\x01\x03\x02\x05\x01\x04\x04\x02\x03\x05\x02\x05\x01\x01\x05\x02\x01", // 𥖒
+ 0x25593: "\x01\x03\x02\x05\x01\x05\x03\x02\x05\x04\x02\x05\x01\x03\x02\x05\x01", // 𥖓
+ 0x25594: "\x01\x03\x02\x05\x01\x01\x02\x03\x04\x01\x05\x03\x04\x01\x05\x03\x04", // 𥖔
+ 0x25595: "\x02\x05\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x05\x03\x02\x05\x04", // 𥖕
+ 0x25596: "\x01\x03\x02\x05\x01\x05\x03\x02\x05\x04\x01\x02\x01\x05\x02\x01\x05", // 𥖖
+ 0x25597: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x03\x05\x05\x04\x01\x03\x02\x05\x01", // 𥖗
+ 0x25598: "\x01\x03\x02\x05\x01\x01\x02\x02\x01\x01\x01\x03\x05\x05\x01\x05\x03\x04", // 𥖘
+ 0x25599: "\x01\x03\x02\x05\x01\x02\x05\x01\x01\x02\x02\x01\x01\x01\x01\x05\x03\x04", // 𥖙
+ 0x2559a: "\x01\x03\x02\x05\x01\x04\x04\x05\x03\x05\x05\x01\x03\x05\x02\x02\x05\x02", // 𥖚
+ 0x2559b: "\x01\x03\x02\x05\x01\x01\x02\x01\x02\x01\x02\x01\x03\x02\x05\x01\x01\x04", // 𥖛
+ 0x2559c: "\x01\x03\x02\x05\x01\x01\x02\x03\x04\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 𥖜
+ 0x2559d: "\x01\x03\x02\x05\x01\x04\x01\x03\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 𥖝
+ 0x2559e: "\x03\x04\x04\x03\x05\x03\x03\x05\x01\x01\x05\x03\x04\x01\x03\x02\x05\x01", // 𥖞
+ 0x2559f: "\x01\x03\x02\x05\x01\x01\x04\x05\x02\x04\x01\x03\x04\x03\x04\x04\x05\x04", // 𥖟
+ 0x255a0: "\x01\x03\x02\x05\x01\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 𥖠
+ 0x255a1: "\x05\x05\x03\x03\x02\x05\x01\x01\x01\x05\x05\x02\x01\x03\x02\x05\x01", // 𥖡
+ 0x255a2: "\x01\x03\x02\x05\x01\x01\x02\x01\x02\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 𥖢
+ 0x255a3: "\x01\x03\x02\x05\x01\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𥖣
+ 0x255a4: "\x01\x03\x02\x05\x01\x02\x05\x01\x02\x02\x05\x02\x05\x01\x04\x05\x04", // 𥖤
+ 0x255a5: "\x01\x02\x03\x04\x03\x05\x04\x01\x02\x03\x04\x04\x05\x01\x03\x02\x05\x01", // 𥖥
+ 0x255a6: "\x01\x03\x02\x05\x01\x03\x04\x04\x03\x04\x05\x04\x05\x04\x04\x03\x05\x04", // 𥖦
+ 0x255a7: "\x01\x03\x02\x05\x01\x03\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𥖧
+ 0x255a8: "\x01\x03\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 𥖨
+ 0x255a9: "\x01\x03\x02\x05\x01\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𥖩
+ 0x255aa: "\x01\x03\x02\x05\x01\x02\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𥖪
+ 0x255ab: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x05\x03\x02\x05\x04\x01\x03\x02\x05\x01", // 𥖫
+ 0x255ac: "\x01\x03\x02\x05\x01\x04\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05", // 𥖬
+ 0x255ad: "\x01\x03\x02\x05\x01\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01", // 𥖭
+ 0x255ae: "\x01\x03\x02\x05\x01\x05\x04\x01\x05\x04\x01\x04\x01\x03\x04\x03\x04\x01\x02", // 𥖮
+ 0x255af: "\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x03\x04\x04\x05\x01\x03\x02\x05\x01", // 𥖯
+ 0x255b0: "\x01\x03\x02\x05\x01\x01\x02\x01\x02\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 𥖰
+ 0x255b1: "\x01\x03\x02\x05\x01\x02\x05\x02\x04\x01\x02\x02\x01\x01\x02\x05\x02\x05\x01", // 𥖱
+ 0x255b2: "\x01\x03\x02\x05\x01\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 𥖲
+ 0x255b3: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x03\x05\x05\x04\x01\x03\x02\x05\x01", // 𥖳
+ 0x255b4: "\x01\x03\x02\x05\x01\x03\x04\x03\x04\x03\x04\x03\x04\x03\x01\x01\x02\x05\x02", // 𥖴
+ 0x255b5: "\x01\x03\x02\x05\x01\x03\x04\x04\x03\x01\x02\x01\x05\x01\x01\x04\x05\x04\x04", // 𥖵
+ 0x255b6: "\x01\x03\x02\x05\x01\x04\x04\x05\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𥖶
+ 0x255b7: "\x01\x03\x02\x05\x01\x03\x05\x01\x03\x01\x05\x03\x05\x01\x02\x01\x02\x05\x01", // 𥖷
+ 0x255b8: "\x01\x02\x03\x04\x03\x02\x05\x01\x01\x03\x05\x05\x04\x01\x03\x02\x05\x01", // 𥖸
+ 0x255b9: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x02\x05\x01\x01\x03\x02\x05\x01", // 𥖹
+ 0x255ba: "\x01\x03\x02\x05\x01\x05\x03\x02\x05\x04\x04\x03\x01\x01\x02\x01\x01\x03\x04", // 𥖺
+ 0x255bb: "\x01\x03\x02\x05\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01\x03\x01\x03\x04", // 𥖻
+ 0x255bc: "\x01\x03\x02\x05\x01\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 𥖼
+ 0x255bd: "\x01\x03\x02\x05\x01\x04\x04\x05\x03\x02\x01\x05\x01\x01\x03\x05\x04\x04\x04\x04", // 𥖽
+ 0x255be: "\x01\x03\x02\x05\x01\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01\x04\x05\x04", // 𥖾
+ 0x255bf: "\x01\x03\x02\x05\x01\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𥖿
+ 0x255c0: "\x01\x03\x02\x05\x01\x01\x02\x01\x02\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 𥗀
+ 0x255c1: "\x01\x03\x02\x05\x01\x03\x01\x04\x03\x01\x04\x01\x02\x01\x03\x02\x05\x01\x01", // 𥗁
+ 0x255c2: "\x01\x03\x02\x05\x01\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x03\x01\x01\x02", // 𥗂
+ 0x255c3: "\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x01\x01", // 𥗃
+ 0x255c4: "\x01\x03\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05\x03\x05\x03\x04", // 𥗄
+ 0x255c5: "\x01\x03\x02\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x04\x03\x01", // 𥗅
+ 0x255c6: "\x01\x03\x02\x05\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01", // 𥗆
+ 0x255c7: "\x01\x03\x02\x05\x01\x01\x01\x03\x04\x01\x01\x03\x04\x01\x02\x05\x01\x01\x01\x02", // 𥗇
+ 0x255c8: "\x01\x03\x02\x05\x01\x01\x02\x03\x04\x01\x02\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 𥗈
+ 0x255c9: "\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01", // 𥗉
+ 0x255ca: "\x01\x03\x02\x05\x01\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𥗊
+ 0x255cb: "\x01\x03\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x04\x02\x04\x01\x03\x04", // 𥗋
+ 0x255cc: "\x01\x03\x02\x05\x01\x02\x01\x05\x03\x01\x05\x01\x03\x05\x03\x03\x03\x04\x02\x02", // 𥗌
+ 0x255cd: "\x01\x03\x02\x05\x01\x03\x01\x02\x03\x04\x03\x05\x03\x03\x04\x02\x04\x01\x03\x04", // 𥗍
+ 0x255ce: "\x01\x03\x02\x05\x01\x03\x01\x02\x03\x04\x01\x03\x05\x04\x03\x05\x02\x05\x01\x01", // 𥗎
+ 0x255cf: "\x01\x03\x02\x05\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x01\x01\x02\x01\x04", // 𥗏
+ 0x255d0: "\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01", // 𥗐
+ 0x255d1: "\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x04\x05\x01\x03\x02\x05\x01", // 𥗑
+ 0x255d2: "\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𥗒
+ 0x255d3: "\x01\x03\x02\x05\x01\x01\x02\x05\x01\x02\x03\x04\x05\x03\x02\x05\x01\x01\x01\x03\x04", // 𥗓
+ 0x255d4: "\x01\x03\x02\x05\x01\x01\x02\x02\x04\x04\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 𥗔
+ 0x255d5: "\x01\x03\x02\x05\x01\x01\x02\x02\x01\x02\x05\x01\x02\x01\x01\x03\x05\x04\x04\x04\x04", // 𥗕
+ 0x255d6: "\x01\x03\x02\x05\x01\x03\x01\x04\x03\x01\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𥗖
+ 0x255d7: "\x01\x03\x02\x05\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x01\x03\x05\x03\x04", // 𥗗
+ 0x255d8: "\x01\x03\x02\x05\x01\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04\x03\x01\x01\x02", // 𥗘
+ 0x255d9: "\x01\x03\x02\x05\x01\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x05\x02\x01", // 𥗙
+ 0x255da: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04\x04\x05\x04\x03\x04\x01\x03\x02\x05\x01", // 𥗚
+ 0x255db: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x05\x03\x04\x01\x05\x03\x04\x01\x03\x02\x05\x01", // 𥗛
+ 0x255dc: "\x01\x03\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x01\x05\x03\x04", // 𥗜
+ 0x255dd: "\x01\x03\x02\x05\x01\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 𥗝
+ 0x255de: "\x01\x03\x02\x05\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x02\x05\x01\x03\x02\x05\x01", // 𥗞
+ 0x255df: "\x01\x03\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 𥗟
+ 0x255e0: "\x01\x03\x02\x05\x01\x01\x03\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04\x05\x03", // 𥗠
+ 0x255e1: "\x01\x03\x02\x05\x01\x04\x01\x03\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01\x04\x05\x04\x04", // 𥗡
+ 0x255e2: "\x01\x03\x02\x05\x01\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x01\x01\x03\x05\x03\x04", // 𥗢
+ 0x255e3: "\x01\x02\x01\x04\x05\x01\x02\x05\x01\x04\x03\x01\x05\x03\x02\x05\x04\x01\x03\x02\x05\x01", // 𥗣
+ 0x255e4: "\x01\x02\x05\x01\x02\x04\x05\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01", // 𥗤
+ 0x255e5: "\x01\x03\x02\x05\x01\x03\x01\x04\x03\x01\x04\x02\x05\x02\x02\x01\x01\x03\x04\x05\x03\x04", // 𥗥
+ 0x255e6: "\x01\x03\x02\x05\x01\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𥗦
+ 0x255e7: "\x04\x01\x02\x05\x01\x04\x05\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01", // 𥗧
+ 0x255e8: "\x01\x03\x02\x05\x01\x01\x02\x02\x02\x05\x01\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 𥗨
+ 0x255e9: "\x01\x03\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x05\x02\x03\x05\x05\x04\x03\x01\x01\x02", // 𥗩
+ 0x255ea: "\x01\x03\x02\x05\x01\x01\x02\x01\x02\x01\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x01\x01", // 𥗪
+ 0x255eb: "\x01\x03\x02\x05\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𥗫
+ 0x255ec: "\x01\x03\x02\x05\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x01\x02\x01", // 𥗬
+ 0x255ed: "\x01\x03\x02\x05\x01\x04\x01\x03\x04\x03\x04\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𥗭
+ 0x255ee: "\x01\x03\x02\x05\x01\x05\x01\x01\x02\x02\x05\x01\x01\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04", // 𥗮
+ 0x255ef: "\x01\x03\x02\x05\x01\x04\x01\x05\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01\x01\x05\x05\x04", // 𥗯
+ 0x255f0: "\x01\x03\x02\x05\x01\x03\x02\x01\x01\x02\x05\x05\x04\x05\x01\x01\x01\x03\x01\x01\x05\x03\x04", // 𥗰
+ 0x255f1: "\x04\x01\x03\x04\x03\x04\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x01\x03\x02\x05\x01", // 𥗱
+ 0x255f2: "\x01\x03\x02\x05\x01\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x01\x03\x02\x05\x01", // 𥗲
+ 0x255f3: "\x01\x03\x02\x05\x01\x04\x04\x05\x03\x05\x04\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𥗳
+ 0x255f4: "\x01\x03\x02\x05\x01\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𥗴
+ 0x255f5: "\x01\x03\x02\x05\x01\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04\x01\x03\x02\x05\x01", // 𥗵
+ 0x255f6: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x05\x05\x04\x01\x03\x02\x05\x01", // 𥗶
+ 0x255f7: "\x01\x03\x02\x05\x01\x05\x01\x03\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01\x03\x05\x03\x04", // 𥗷
+ 0x255f8: "\x01\x03\x02\x05\x01\x03\x02\x01\x01\x03\x02\x05\x03\x04\x05\x01\x01\x01\x03\x01\x01\x05\x03\x04", // 𥗸
+ 0x255f9: "\x01\x03\x02\x05\x01\x01\x02\x02\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x02\x03\x04", // 𥗹
+ 0x255fa: "\x01\x03\x02\x05\x01\x01\x02\x02\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 𥗺
+ 0x255fb: "\x01\x03\x02\x05\x01\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 𥗻
+ 0x255fc: "\x01\x03\x02\x05\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 𥗼
+ 0x255fd: "\x01\x03\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 𥗽
+ 0x255fe: "\x01\x03\x02\x05\x01\x01\x02\x05\x01\x02\x04\x05\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 𥗾
+ 0x255ff: "\x01\x03\x02\x05\x01\x02\x05\x02\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𥗿
+ 0x25600: "\x01\x03\x02\x05\x01\x02\x05\x01\x01\x04\x04\x05\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 𥘀
+ 0x25601: "\x01\x03\x02\x05\x01\x01\x02\x01\x02\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𥘁
+ 0x25602: "\x01\x03\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x03\x01\x03\x04", // 𥘂
+ 0x25603: "\x01\x03\x02\x05\x01\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x03\x04\x01", // 𥘃
+ 0x25604: "\x01\x03\x02\x05\x01\x01\x02\x03\x04\x03\x01\x01\x02\x05\x02\x01\x02\x03\x04\x04\x05\x03\x04\x04\x04\x04\x04\x05\x02\x01\x05\x03\x03\x03", // 𥘄
+ 0x25605: "\x01\x02\x03\x05", // 𥘅
+ 0x25606: "\x04\x05\x02\x04\x05", // 𥘆
+ 0x25607: "\x04\x05\x02\x04\x03\x05", // 𥘇
+ 0x25608: "\x01\x05\x01\x01\x02\x03\x04", // 𥘈
+ 0x25609: "\x04\x05\x02\x04\x05\x03", // 𥘉
+ 0x2560a: "\x04\x05\x02\x04\x05\x02", // 𥘊
+ 0x2560b: "\x04\x05\x02\x04\x05\x03", // 𥘋
+ 0x2560c: "\x04\x05\x02\x04\x03\x05", // 𥘌
+ 0x2560d: "\x04\x05\x02\x04\x05\x03\x04", // 𥘍
+ 0x2560e: "\x04\x05\x02\x04\x03\x03\x03", // 𥘎
+ 0x2560f: "\x04\x05\x02\x04\x01\x01\x02", // 𥘏
+ 0x25610: "\x01\x05\x01\x01\x01\x02\x03\x04", // 𥘐
+ 0x25611: "\x04\x05\x02\x04\x01\x02\x04", // 𥘑
+ 0x25612: "\x04\x05\x02\x04\x01\x05\x04", // 𥘒
+ 0x25613: "\x04\x05\x02\x04\x05\x04\x04", // 𥘓
+ 0x25614: "\x04\x05\x02\x04\x01\x02\x03", // 𥘔
+ 0x25615: "\x04\x05\x02\x04\x01\x01\x03\x02", // 𥘕
+ 0x25616: "\x01\x01\x02\x03\x04\x03\x05\x03\x04", // 𥘖
+ 0x25617: "\x04\x05\x02\x04\x02\x05\x01\x01", // 𥘗
+ 0x25618: "\x04\x05\x02\x04\x03\x05\x04\x01", // 𥘘
+ 0x25619: "\x04\x05\x02\x04\x04\x03\x03\x04", // 𥘙
+ 0x2561a: "\x04\x05\x02\x04\x04\x05\x04\x04", // 𥘚
+ 0x2561b: "\x04\x05\x02\x04\x01\x01\x02\x01", // 𥘛
+ 0x2561c: "\x04\x05\x02\x04\x03\x05\x04", // 𥘜
+ 0x2561d: "\x04\x05\x02\x04\x02\x05\x03\x04", // 𥘝
+ 0x2561e: "\x04\x05\x02\x04\x03\x04\x01\x05", // 𥘞
+ 0x2561f: "\x04\x05\x02\x04\x01\x01\x05\x04", // 𥘟
+ 0x25620: "\x04\x05\x02\x04\x01\x02\x02\x01", // 𥘠
+ 0x25621: "\x04\x05\x02\x04\x01\x05\x05\x01", // 𥘡
+ 0x25622: "\x04\x05\x02\x04\x01\x05\x05\x04", // 𥘢
+ 0x25623: "\x02\x01\x02\x01\x01\x01\x02\x03\x04", // 𥘣
+ 0x25624: "\x04\x05\x02\x04\x02\x03\x04\x03", // 𥘤
+ 0x25625: "\x04\x05\x02\x04\x03\x01\x03\x02", // 𥘥
+ 0x25626: "\x01\x01\x02\x03\x04\x03\x01\x03\x04", // 𥘦
+ 0x25627: "\x04\x05\x02\x04\x03\x05\x01\x02", // 𥘧
+ 0x25628: "\x04\x05\x02\x04\x03\x05\x03\x03", // 𥘨
+ 0x25629: "\x04\x05\x02\x04\x03\x05\x04\x01", // 𥘩
+ 0x2562a: "\x04\x05\x02\x04\x03\x01\x01\x02", // 𥘪
+ 0x2562b: "\x04\x05\x02\x04\x01\x02\x05\x01\x02", // 𥘫
+ 0x2562c: "\x04\x05\x02\x04\x05\x01\x05\x03\x02", // 𥘬
+ 0x2562d: "\x04\x05\x02\x04\x04\x01\x01\x02\x01", // 𥘭
+ 0x2562e: "\x04\x05\x02\x04\x03\x05\x02\x05\x01", // 𥘮
+ 0x2562f: "\x04\x05\x02\x04\x01\x01\x02\x03\x04", // 𥘯
+ 0x25630: "\x04\x05\x02\x04\x02\x05\x01\x05\x01", // 𥘰
+ 0x25631: "\x01\x02\x03\x02\x02\x05\x01\x03\x05", // 𥘱
+ 0x25632: "\x01\x02\x03\x02\x02\x05\x01\x01\x01", // 𥘲
+ 0x25633: "\x04\x05\x02\x04\x01\x05\x05\x04", // 𥘳
+ 0x25634: "\x04\x05\x02\x04\x01\x04\x03\x01\x02", // 𥘴
+ 0x25635: "\x04\x05\x02\x04\x02\x05\x01\x01", // 𥘵
+ 0x25636: "\x04\x05\x02\x04\x03\x04\x05\x03\x05", // 𥘶
+ 0x25637: "\x04\x05\x02\x04\x02\x03\x04\x03\x05", // 𥘷
+ 0x25638: "\x04\x05\x02\x04\x04\x01\x04\x03\x01", // 𥘸
+ 0x25639: "\x04\x05\x02\x04\x01\x05\x01\x05", // 𥘹
+ 0x2563a: "\x04\x05\x02\x04\x01\x02\x01\x02\x01", // 𥘺
+ 0x2563b: "\x04\x05\x02\x04\x01\x03\x02\x04\x01", // 𥘻
+ 0x2563c: "\x04\x05\x02\x04\x03\x04\x03\x03\x03", // 𥘼
+ 0x2563d: "\x01\x01\x02\x03\x04\x04\x03\x01\x01\x02", // 𥘽
+ 0x2563e: "\x01\x03\x04\x04\x03\x01\x01\x02\x03\x04", // 𥘾
+ 0x2563f: "\x01\x01\x01\x03\x04\x01\x01\x02\x03\x04", // 𥘿
+ 0x25640: "\x04\x05\x02\x04\x01\x03\x01\x02\x01", // 𥙀
+ 0x25641: "\x04\x05\x02\x04\x03\x01\x05\x02\x05", // 𥙁
+ 0x25642: "\x04\x05\x02\x04\x03\x02\x01\x02\x01", // 𥙂
+ 0x25643: "\x04\x05\x02\x04\x03\x02\x05\x01\x01", // 𥙃
+ 0x25644: "\x04\x05\x02\x04\x03\x04\x02\x03\x04", // 𥙄
+ 0x25645: "\x04\x05\x02\x04\x04\x01\x02\x05\x02", // 𥙅
+ 0x25646: "\x04\x05\x02\x04\x04\x01\x05\x05\x04", // 𥙆
+ 0x25647: "\x04\x05\x02\x04\x04\x04\x05\x03\x05", // 𥙇
+ 0x25648: "\x04\x05\x02\x04\x05\x01\x05\x05\x04", // 𥙈
+ 0x25649: "\x04\x05\x02\x04\x05\x04\x02\x05\x01", // 𥙉
+ 0x2564a: "\x05\x04\x03\x03\x04\x01\x01\x02\x03\x04", // 𥙊
+ 0x2564b: "\x04\x05\x02\x04\x05\x02\x02\x05\x02", // 𥙋
+ 0x2564c: "\x01\x01\x02\x03\x04\x03\x05\x02\x03", // 𥙌
+ 0x2564d: "\x01\x02\x03\x04\x02\x05\x01\x01\x02", // 𥙍
+ 0x2564e: "\x04\x05\x02\x04\x03\x03\x03\x05\x03\x04", // 𥙎
+ 0x2564f: "\x01\x02\x03\x02\x02\x05\x02\x03\x04\x02", // 𥙏
+ 0x25650: "\x04\x05\x02\x04\x03\x03\x01\x02\x05\x01", // 𥙐
+ 0x25651: "\x04\x05\x02\x04\x02\x04\x03\x01\x03\x05", // 𥙑
+ 0x25652: "\x04\x05\x02\x04\x01\x02\x01\x05\x04\x05", // 𥙒
+ 0x25653: "\x04\x05\x02\x04\x02\x05\x01\x01\x02\x05", // 𥙓
+ 0x25654: "\x04\x05\x02\x04\x04\x04\x05\x05\x03\x01", // 𥙔
+ 0x25655: "\x04\x05\x02\x04\x01\x02\x01\x03\x01\x05", // 𥙕
+ 0x25656: "\x04\x05\x02\x04\x01\x02\x02\x01\x03\x04", // 𥙖
+ 0x25657: "\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01", // 𥙗
+ 0x25658: "\x04\x05\x02\x04\x01\x02\x05\x03\x05\x01", // 𥙘
+ 0x25659: "\x04\x05\x02\x04\x02\x05\x01\x02\x05\x02", // 𥙙
+ 0x2565a: "\x04\x05\x02\x04\x03\x01\x03\x03\x01\x02", // 𥙚
+ 0x2565b: "\x04\x05\x02\x04\x03\x02\x01\x01\x02\x01", // 𥙛
+ 0x2565c: "\x04\x05\x02\x04\x03\x02\x01\x03\x05\x04", // 𥙜
+ 0x2565d: "\x01\x01\x02\x03\x04\x03\x01\x02\x01\x03\x05", // 𥙝
+ 0x2565e: "\x04\x05\x02\x04\x01\x02\x01\x01\x02\x01", // 𥙞
+ 0x2565f: "\x04\x05\x02\x04\x01\x02\x02\x01\x01\x01", // 𥙟
+ 0x25660: "\x04\x05\x02\x04\x01\x03\x02\x01\x02\x01", // 𥙠
+ 0x25661: "\x04\x05\x02\x04\x03\x01\x03\x05\x04\x01", // 𥙡
+ 0x25662: "\x04\x05\x02\x04\x03\x02\x05\x01\x05\x01", // 𥙢
+ 0x25663: "\x04\x05\x02\x04\x03\x05\x02\x05\x01\x01", // 𥙣
+ 0x25664: "\x04\x05\x02\x04\x01\x05\x01\x05\x01\x05", // 𥙤
+ 0x25665: "\x04\x05\x02\x04\x05\x01\x05\x01\x02\x01", // 𥙥
+ 0x25666: "\x05\x03\x01\x02\x05\x01\x01\x01\x02\x03\x04", // 𥙦
+ 0x25667: "\x04\x05\x02\x04\x03\x05\x02\x03\x04\x05", // 𥙧
+ 0x25668: "\x04\x05\x02\x04\x03\x05\x01\x02\x03\x04", // 𥙨
+ 0x25669: "\x04\x05\x02\x04\x05\x04\x03\x04\x05", // 𥙩
+ 0x2566a: "\x04\x05\x02\x04\x04\x03\x01\x01\x02\x05", // 𥙪
+ 0x2566b: "\x04\x05\x02\x04\x01\x02\x05\x03\x05\x01\x01", // 𥙫
+ 0x2566c: "\x04\x05\x02\x04\x02\x04\x03\x03\x05\x04\x01", // 𥙬
+ 0x2566d: "\x04\x05\x02\x04\x01\x02\x03\x04\x01\x02\x01", // 𥙭
+ 0x2566e: "\x04\x05\x02\x04\x01\x03\x05\x03\x03\x03\x04", // 𥙮
+ 0x2566f: "\x04\x05\x02\x04\x05\x03\x01\x02\x02\x05\x01", // 𥙯
+ 0x25670: "\x04\x05\x02\x04\x03\x01\x01\x05\x01\x02\x01", // 𥙰
+ 0x25671: "\x04\x05\x02\x04\x03\x05\x01\x05\x02\x05\x01", // 𥙱
+ 0x25672: "\x04\x05\x02\x04\x02\x05\x03\x04\x01\x02\x01", // 𥙲
+ 0x25673: "\x01\x02\x03\x02\x01\x02\x05\x01\x01\x02\x04", // 𥙳
+ 0x25674: "\x04\x05\x02\x04\x01\x02\x05\x01\x01\x03\x04", // 𥙴
+ 0x25675: "\x04\x05\x02\x04\x03\x05\x02\x05\x01\x03\x05", // 𥙵
+ 0x25676: "\x04\x05\x02\x04\x01\x02\x02\x01\x01\x02", // 𥙶
+ 0x25677: "\x04\x05\x02\x04\x01\x02\x05\x01\x01\x02\x04", // 𥙷
+ 0x25678: "\x04\x05\x02\x04\x05\x01\x05\x05\x01\x01\x05", // 𥙸
+ 0x25679: "\x04\x05\x02\x04\x01\x02\x04\x01\x03\x04\x04", // 𥙹
+ 0x2567a: "\x04\x05\x02\x04\x02\x01\x02\x01\x02\x03\x03", // 𥙺
+ 0x2567b: "\x04\x05\x02\x04\x04\x05\x03\x04\x02\x05\x01", // 𥙻
+ 0x2567c: "\x01\x01\x02\x03\x04\x01\x02\x01\x03\x02\x03\x04", // 𥙼
+ 0x2567d: "\x04\x05\x02\x04\x01\x03\x04\x03\x04\x01\x02", // 𥙽
+ 0x2567e: "\x04\x05\x02\x04\x03\x01\x02\x03\x04\x05\x03", // 𥙾
+ 0x2567f: "\x04\x05\x02\x04\x03\x04\x03\x04\x02\x05\x01", // 𥙿
+ 0x25680: "\x04\x05\x02\x04\x03\x04\x04\x03\x05\x02\x01", // 𥚀
+ 0x25681: "\x04\x05\x02\x04\x05\x03\x01\x02\x02\x05\x01", // 𥚁
+ 0x25682: "\x04\x05\x02\x04\x05\x04\x03\x04\x03\x05\x04", // 𥚂
+ 0x25683: "\x04\x05\x02\x04\x02\x05\x01\x01\x02\x01\x01", // 𥚃
+ 0x25684: "\x04\x05\x02\x04\x01\x02\x05\x01\x03\x04\x05", // 𥚄
+ 0x25685: "\x04\x05\x02\x04\x01\x02\x02\x01\x01\x01\x05", // 𥚅
+ 0x25686: "\x04\x05\x02\x04\x05\x03\x04\x04\x05\x04\x04", // 𥚆
+ 0x25687: "\x04\x05\x02\x04\x03\x01\x02\x02\x05\x01\x05", // 𥚇
+ 0x25688: "\x04\x05\x02\x04\x02\x05\x01\x02\x01\x01\x03\x02", // 𥚈
+ 0x25689: "\x04\x05\x02\x04\x05\x05\x05\x02\x05\x01\x02\x01", // 𥚉
+ 0x2568a: "\x04\x05\x02\x04\x01\x02\x01\x03\x05\x01\x02\x01", // 𥚊
+ 0x2568b: "\x05\x02\x02\x05\x02\x01\x01\x02\x03\x04\x01\x03\x05", // 𥚋
+ 0x2568c: "\x01\x02\x03\x02\x02\x05\x01\x01\x01\x02\x03\x04", // 𥚌
+ 0x2568d: "\x04\x05\x02\x04\x05\x01\x03\x03\x05\x02\x05\x01", // 𥚍
+ 0x2568e: "\x04\x05\x02\x04\x04\x04\x05\x01\x01\x02\x03\x04", // 𥚎
+ 0x2568f: "\x04\x05\x02\x04\x04\x01\x03\x05\x01\x01\x03\x04", // 𥚏
+ 0x25690: "\x04\x05\x02\x04\x04\x05\x04\x03\x04\x01\x02\x01", // 𥚐
+ 0x25691: "\x04\x05\x02\x04\x05\x01\x03\x01\x02\x02\x05\x01", // 𥚑
+ 0x25692: "\x04\x05\x02\x04\x01\x03\x04\x03\x04\x02\x03\x04", // 𥚒
+ 0x25693: "\x04\x05\x02\x04\x01\x03\x04\x04\x03\x01\x01\x05", // 𥚓
+ 0x25694: "\x04\x05\x02\x04\x02\x01\x01\x02\x03\x04\x05\x04", // 𥚔
+ 0x25695: "\x04\x05\x02\x04\x02\x05\x01\x01\x02\x05\x01\x01", // 𥚕
+ 0x25696: "\x04\x05\x02\x04\x03\x04\x04\x03\x01\x02\x03\x04", // 𥚖
+ 0x25697: "\x04\x05\x02\x04\x03\x04\x01\x02\x05\x01\x02\x02", // 𥚗
+ 0x25698: "\x04\x03\x01\x05\x02\x03\x02\x02\x01\x01\x02\x03\x04", // 𥚘
+ 0x25699: "\x04\x05\x02\x04\x01\x03\x04\x01\x02\x01\x03\x02", // 𥚙
+ 0x2569a: "\x04\x05\x02\x04\x02\x01\x05\x03\x01\x05\x03\x05", // 𥚚
+ 0x2569b: "\x04\x05\x02\x04\x02\x05\x01\x01\x01\x05\x03\x05", // 𥚛
+ 0x2569c: "\x04\x05\x02\x04\x02\x05\x01\x01\x01\x05\x01\x05", // 𥚜
+ 0x2569d: "\x04\x05\x02\x04\x02\x05\x01\x05\x02\x05\x01\x01", // 𥚝
+ 0x2569e: "\x04\x05\x02\x04\x03\x02\x01\x05\x01\x01\x02", // 𥚞
+ 0x2569f: "\x04\x05\x02\x04\x03\x02\x05\x01\x02\x02\x05\x01", // 𥚟
+ 0x256a0: "\x04\x05\x02\x04\x04\x01\x02\x05\x01\x05\x02\x01", // 𥚠
+ 0x256a1: "\x04\x03\x03\x04\x04\x03\x03\x04\x01\x01\x02\x03\x04", // 𥚡
+ 0x256a2: "\x05\x02\x02\x05\x02\x04\x04\x05\x01\x01\x02\x03\x04", // 𥚢
+ 0x256a3: "\x04\x05\x02\x04\x05\x03\x01\x02\x01\x02\x05\x01", // 𥚣
+ 0x256a4: "\x04\x05\x02\x04\x03\x04\x01\x01\x02\x03\x04\x05", // 𥚤
+ 0x256a5: "\x04\x05\x02\x04\x03\x01\x02\x03\x04\x02\x02\x05", // 𥚥
+ 0x256a6: "\x04\x05\x02\x04\x03\x05\x01\x03\x03\x01\x01\x03\x04", // 𥚦
+ 0x256a7: "\x04\x05\x02\x04\x01\x02\x01\x02\x05\x01\x04\x03\x01", // 𥚧
+ 0x256a8: "\x04\x05\x02\x04\x01\x03\x01\x02\x01\x03\x05\x04\x01", // 𥚨
+ 0x256a9: "\x04\x05\x02\x04\x05\x02\x01\x03\x04\x03\x05\x04\x01", // 𥚩
+ 0x256aa: "\x05\x04\x02\x05\x04\x05\x04\x03\x02\x01\x01\x02\x03\x04", // 𥚪
+ 0x256ab: "\x04\x05\x02\x04\x03\x04\x01\x02\x05\x01\x01\x03\x02", // 𥚫
+ 0x256ac: "\x04\x05\x02\x04\x03\x05\x03\x01\x01\x02\x01\x02\x01", // 𥚬
+ 0x256ad: "\x04\x05\x02\x04\x04\x01\x03\x05\x03\x04\x02\x05\x01", // 𥚭
+ 0x256ae: "\x04\x05\x02\x04\x01\x02\x02\x01\x01\x01\x03\x04\x05", // 𥚮
+ 0x256af: "\x04\x05\x02\x04\x02\x05\x01\x01\x03\x05\x03\x03\x05", // 𥚯
+ 0x256b0: "\x04\x05\x02\x04\x04\x04\x05\x03\x05\x04\x02\x05\x01", // 𥚰
+ 0x256b1: "\x04\x05\x02\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 𥚱
+ 0x256b2: "\x04\x05\x02\x04\x01\x02\x05\x01\x02\x03\x04\x02\x02", // 𥚲
+ 0x256b3: "\x04\x05\x02\x04\x01\x03\x02\x04\x02\x05\x02\x01\x01", // 𥚳
+ 0x256b4: "\x04\x05\x02\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𥚴
+ 0x256b5: "\x04\x05\x02\x04\x05\x02\x01\x03\x02\x05\x01\x01\x01", // 𥚵
+ 0x256b6: "\x04\x05\x02\x04\x02\x05\x01\x01\x02\x02\x01\x01\x01", // 𥚶
+ 0x256b7: "\x04\x05\x02\x04\x02\x05\x01\x02\x01\x03\x05\x04\x01", // 𥚷
+ 0x256b8: "\x04\x05\x02\x04\x02\x05\x01\x02\x01\x01\x05\x03\x04", // 𥚸
+ 0x256b9: "\x04\x05\x02\x04\x03\x05\x01\x03\x02\x05\x01\x02\x02", // 𥚹
+ 0x256ba: "\x04\x05\x02\x04\x01\x05\x03\x05\x03\x02\x05\x01\x01", // 𥚺
+ 0x256bb: "\x04\x05\x02\x04\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 𥚻
+ 0x256bc: "\x04\x05\x02\x04\x02\x05\x03\x04\x01\x01\x02\x01\x04", // 𥚼
+ 0x256bd: "\x04\x05\x02\x04\x03\x02\x05\x01\x02\x02\x05\x01\x01", // 𥚽
+ 0x256be: "\x04\x05\x02\x04\x03\x04\x05\x02\x03\x04\x03\x05\x04", // 𥚾
+ 0x256bf: "\x04\x05\x02\x04\x04\x03\x01\x01\x03\x04\x05\x03\x01", // 𥚿
+ 0x256c0: "\x04\x05\x02\x04\x05\x01\x01\x04\x05\x03\x05\x05\x04", // 𥛀
+ 0x256c1: "\x05\x02\x02\x05\x02\x01\x01\x02\x03\x04\x05\x02\x01\x05", // 𥛁
+ 0x256c2: "\x04\x05\x02\x04\x01\x03\x02\x05\x01\x03\x05\x01\x01", // 𥛂
+ 0x256c3: "\x04\x05\x02\x04\x01\x05\x01\x02\x01\x03\x05\x01\x01", // 𥛃
+ 0x256c4: "\x04\x05\x02\x04\x01\x02\x02\x05\x01\x01\x01\x01\x03", // 𥛄
+ 0x256c5: "\x04\x05\x02\x04\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 𥛅
+ 0x256c6: "\x04\x05\x02\x04\x05\x01\x01\x04\x05\x02\x05\x02\x05\x04", // 𥛆
+ 0x256c7: "\x04\x05\x02\x04\x05\x01\x05\x01\x02\x01\x01\x02\x01", // 𥛇
+ 0x256c8: "\x04\x05\x02\x04\x05\x01\x05\x01\x02\x01\x01\x02\x01", // 𥛈
+ 0x256c9: "\x04\x05\x02\x04\x03\x01\x01\x03\x01\x01\x01\x01\x02\x05", // 𥛉
+ 0x256ca: "\x04\x05\x02\x04\x03\x05\x01\x03\x05\x04\x01\x05\x04\x01", // 𥛊
+ 0x256cb: "\x04\x05\x02\x04\x05\x04\x05\x04\x05\x04\x01\x02\x03\x04", // 𥛋
+ 0x256cc: "\x04\x05\x02\x04\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𥛌
+ 0x256cd: "\x04\x05\x02\x04\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𥛍
+ 0x256ce: "\x04\x05\x02\x04\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04", // 𥛎
+ 0x256cf: "\x04\x05\x02\x04\x03\x01\x01\x02\x02\x01\x01\x01\x03\x04", // 𥛏
+ 0x256d0: "\x04\x05\x02\x04\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 𥛐
+ 0x256d1: "\x04\x05\x02\x04\x01\x03\x01\x01\x05\x03\x04\x01\x02\x04", // 𥛑
+ 0x256d2: "\x04\x05\x02\x04\x01\x03\x02\x05\x01\x02\x05\x02\x05\x01", // 𥛒
+ 0x256d3: "\x02\x01\x01\x01\x01\x02\x03\x04\x03\x04\x01\x01\x02\x03\x04", // 𥛓
+ 0x256d4: "\x04\x05\x02\x04\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01", // 𥛔
+ 0x256d5: "\x04\x05\x02\x04\x03\x03\x02\x01\x05\x03\x01\x05\x03\x04", // 𥛕
+ 0x256d6: "\x01\x01\x02\x03\x02\x03\x02\x05\x01\x01\x01\x03\x01\x02\x04", // 𥛖
+ 0x256d7: "\x04\x05\x02\x04\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01", // 𥛗
+ 0x256d8: "\x04\x05\x02\x04\x02\x05\x01\x02\x01\x01\x02\x02\x01\x01\x02", // 𥛘
+ 0x256d9: "\x04\x05\x02\x04\x03\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 𥛙
+ 0x256da: "\x04\x05\x02\x04\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01", // 𥛚
+ 0x256db: "\x04\x05\x01\x02\x05\x03\x05\x01\x01\x02\x01\x01\x01\x02\x03\x04", // 𥛛
+ 0x256dc: "\x04\x05\x02\x04\x02\x01\x05\x03\x01\x05\x02\x05\x01\x01\x01", // 𥛜
+ 0x256dd: "\x04\x05\x02\x04\x03\x05\x04\x01\x01\x01\x02\x04\x05\x04", // 𥛝
+ 0x256de: "\x04\x05\x02\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05", // 𥛞
+ 0x256df: "\x04\x05\x02\x04\x03\x04\x04\x03\x02\x05\x01\x01\x01\x03\x05", // 𥛟
+ 0x256e0: "\x01\x02\x03\x04\x03\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 𥛠
+ 0x256e1: "\x04\x05\x02\x04\x02\x01\x02\x05\x03\x05\x04\x01\x01\x02\x01", // 𥛡
+ 0x256e2: "\x04\x05\x02\x04\x02\x05\x02\x04\x04\x05\x01\x01\x02\x03\x04", // 𥛢
+ 0x256e3: "\x04\x05\x02\x04\x01\x02\x02\x01\x03\x05\x04\x05\x02\x05\x02", // 𥛣
+ 0x256e4: "\x01\x05\x01\x01\x02\x03\x04\x05\x03\x02\x05\x01\x01\x01\x03\x04", // 𥛤
+ 0x256e5: "\x04\x05\x02\x04\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04", // 𥛥
+ 0x256e6: "\x04\x05\x02\x04\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 𥛦
+ 0x256e7: "\x04\x05\x02\x04\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 𥛧
+ 0x256e8: "\x04\x05\x02\x04\x03\x03\x02\x02\x01\x02\x01\x02\x01\x03\x04", // 𥛨
+ 0x256e9: "\x04\x05\x02\x04\x04\x01\x03\x03\x02\x01\x05\x01\x01\x03\x04", // 𥛩
+ 0x256ea: "\x04\x05\x02\x04\x04\x01\x03\x05\x02\x02\x01\x05\x04\x05\x04", // 𥛪
+ 0x256eb: "\x04\x05\x02\x04\x04\x04\x01\x05\x03\x04\x04\x01\x02\x03\x04", // 𥛫
+ 0x256ec: "\x02\x01\x01\x01\x01\x02\x03\x04\x05\x04\x04\x03\x01\x02\x03\x04", // 𥛬
+ 0x256ed: "\x04\x05\x02\x04\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04\x05", // 𥛭
+ 0x256ee: "\x04\x05\x02\x04\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 𥛮
+ 0x256ef: "\x04\x05\x02\x04\x05\x04\x05\x02\x03\x02\x05\x03\x05\x02\x05\x01", // 𥛯
+ 0x256f0: "\x04\x05\x02\x04\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 𥛰
+ 0x256f1: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x03\x03\x03\x01\x01\x02\x03\x04", // 𥛱
+ 0x256f2: "\x04\x05\x02\x04\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 𥛲
+ 0x256f3: "\x04\x05\x02\x04\x02\x01\x05\x03\x01\x05\x02\x02\x05\x02\x01\x01", // 𥛳
+ 0x256f4: "\x01\x02\x03\x04\x02\x05\x01\x02\x01\x01\x02\x01\x02\x01\x03\x04", // 𥛴
+ 0x256f5: "\x04\x05\x02\x04\x01\x02\x01\x02\x01\x01\x02\x01\x02\x01\x01\x02", // 𥛵
+ 0x256f6: "\x04\x05\x02\x04\x04\x03\x01\x01\x02\x01\x04\x03\x01\x02\x05\x01", // 𥛶
+ 0x256f7: "\x04\x05\x02\x04\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 𥛷
+ 0x256f8: "\x04\x05\x02\x04\x01\x02\x05\x01\x01\x02\x01\x04\x04\x05\x04\x04", // 𥛸
+ 0x256f9: "\x04\x05\x02\x04\x05\x01\x03\x02\x04\x01\x03\x04\x03\x01\x01\x02", // 𥛹
+ 0x256fa: "\x04\x05\x02\x04\x01\x05\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 𥛺
+ 0x256fb: "\x04\x05\x02\x04\x01\x02\x01\x02\x05\x01\x04\x03\x01\x03\x03\x03", // 𥛻
+ 0x256fc: "\x04\x05\x02\x04\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01", // 𥛼
+ 0x256fd: "\x04\x05\x02\x04\x01\x02\x01\x05\x02\x05\x01\x02\x05\x01\x02\x01", // 𥛽
+ 0x256fe: "\x04\x05\x02\x04\x03\x04\x03\x04\x03\x04\x03\x04\x02\x05\x01\x01", // 𥛾
+ 0x256ff: "\x04\x05\x02\x04\x05\x01\x05\x02\x05\x03\x03\x04\x01\x01\x02\x01", // 𥛿
+ 0x25700: "\x05\x01\x03\x03\x01\x01\x05\x04\x05\x02\x04\x02\x05\x01\x01\x01", // 𥜀
+ 0x25701: "\x04\x05\x02\x04\x01\x02\x02\x01\x01\x01\x04\x03\x01\x01\x03\x04", // 𥜁
+ 0x25702: "\x01\x05\x01\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x05\x04", // 𥜂
+ 0x25703: "\x04\x05\x02\x04\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 𥜃
+ 0x25704: "\x05\x05\x04\x04\x04\x04\x05\x01\x05\x03\x01\x03\x04\x01\x01\x02\x03\x04", // 𥜄
+ 0x25705: "\x04\x05\x02\x04\x02\x01\x05\x03\x01\x05\x01\x03\x05\x03\x03\x03\x04", // 𥜅
+ 0x25706: "\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04\x04\x01\x05\x04\x03\x02\x05", // 𥜆
+ 0x25707: "\x04\x05\x02\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 𥜇
+ 0x25708: "\x04\x05\x02\x04\x01\x02\x01\x02\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 𥜈
+ 0x25709: "\x04\x05\x02\x04\x05\x01\x01\x03\x02\x05\x01\x04\x03\x01\x01\x01\x02", // 𥜉
+ 0x2570a: "\x04\x05\x02\x04\x03\x02\x05\x03\x04\x03\x01\x02\x03\x04\x01\x01\x05", // 𥜊
+ 0x2570b: "\x04\x05\x02\x04\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 𥜋
+ 0x2570c: "\x04\x05\x02\x04\x03\x02\x05\x03\x04\x03\x01\x02\x03\x04\x01\x03\x04", // 𥜌
+ 0x2570d: "\x04\x05\x02\x04\x01\x02\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𥜍
+ 0x2570e: "\x04\x05\x02\x04\x01\x02\x03\x04\x03\x04\x01\x02\x05\x02\x05\x01\x01", // 𥜎
+ 0x2570f: "\x04\x05\x02\x04\x02\x05\x01\x01\x04\x05\x03\x05\x04\x04\x04\x04\x04", // 𥜏
+ 0x25710: "\x04\x05\x02\x04\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𥜐
+ 0x25711: "\x04\x05\x02\x04\x01\x02\x02\x05\x01\x05\x04\x01\x02\x05\x01\x02\x01", // 𥜑
+ 0x25712: "\x04\x05\x02\x04\x01\x03\x02\x05\x01\x01\x03\x05\x04\x01\x01\x03\x04\x04", // 𥜒
+ 0x25713: "\x04\x05\x02\x04\x01\x02\x05\x01\x02\x05\x03\x01\x01\x02\x05\x02\x02\x01", // 𥜓
+ 0x25714: "\x04\x05\x02\x04\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𥜔
+ 0x25715: "\x04\x05\x02\x04\x01\x02\x05\x01\x02\x03\x04\x01\x02\x05\x01\x02\x03\x04", // 𥜕
+ 0x25716: "\x01\x02\x05\x01\x02\x03\x04\x05\x04\x03\x01\x01\x03\x04\x01\x01\x02\x03\x04", // 𥜖
+ 0x25717: "\x04\x05\x02\x04\x01\x04\x05\x02\x04\x01\x03\x04\x01\x03\x02\x05\x02\x02", // 𥜗
+ 0x25718: "\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 𥜘
+ 0x25719: "\x04\x04\x01\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02\x01\x01\x02\x03\x04", // 𥜙
+ 0x2571a: "\x04\x05\x02\x04\x01\x03\x02\x05\x01\x01\x04\x05\x04\x05\x04\x04\x03\x05\x04", // 𥜚
+ 0x2571b: "\x04\x03\x01\x02\x03\x04\x01\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𥜛
+ 0x2571c: "\x04\x05\x02\x04\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 𥜜
+ 0x2571d: "\x04\x05\x02\x04\x01\x02\x01\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𥜝
+ 0x2571e: "\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04\x03\x02\x01\x05\x01\x01\x02\x01\x05", // 𥜞
+ 0x2571f: "\x01\x01\x02\x03\x04\x04\x01\x03\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04", // 𥜟
+ 0x25720: "\x01\x01\x02\x03\x04\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 𥜠
+ 0x25721: "\x04\x05\x02\x04\x03\x05\x02\x03\x04\x01\x01\x02\x01\x02\x05\x01\x01\x02\x01\x01", // 𥜡
+ 0x25722: "\x04\x05\x02\x04\x04\x01\x03\x05\x05\x04\x05\x05\x04\x05\x01\x01\x03\x02\x05\x01", // 𥜢
+ 0x25723: "\x01\x01\x02\x03\x04\x01\x02\x01\x03\x05\x01\x05\x01\x02\x01\x01\x02\x01\x02\x05\x01", // 𥜣
+ 0x25724: "\x04\x05\x02\x04\x02\x05\x01\x01\x01\x03\x04\x01\x05\x03\x04\x01\x05\x03\x04\x05", // 𥜤
+ 0x25725: "\x04\x05\x02\x04\x02\x01\x01\x01\x05\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 𥜥
+ 0x25726: "\x01\x01\x02\x03\x04\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x02\x01", // 𥜦
+ 0x25727: "\x01\x01\x02\x03\x04\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 𥜧
+ 0x25728: "\x04\x05\x02\x04\x01\x01\x01\x02\x01\x01\x01\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 𥜨
+ 0x25729: "\x01\x01\x02\x03\x04\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x01\x02\x02\x05\x01\x01\x01", // 𥜩
+ 0x2572a: "\x04\x05\x02\x04\x01\x01\x01\x02\x02\x01\x01\x01\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 𥜪
+ 0x2572b: "\x04\x05\x02\x04\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x05\x03\x01\x01", // 𥜫
+ 0x2572c: "\x01\x01\x02\x03\x04\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x01\x02\x01", // 𥜬
+ 0x2572d: "\x04\x05\x02\x04\x04\x01\x02\x05\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01\x05\x02\x02", // 𥜭
+ 0x2572e: "\x04\x05\x02\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x05\x01\x01\x03\x02\x05\x01", // 𥜮
+ 0x2572f: "\x01\x01\x02\x03\x04\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x02\x05\x01\x01\x05\x02\x01", // 𥜯
+ 0x25730: "\x04\x05\x02\x04\x01\x02\x05\x04\x01\x02\x05\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05", // 𥜰
+ 0x25731: "\x05\x02\x02\x05\x02\x01\x01\x02\x03\x04\x01\x05\x02\x05\x01\x01\x01\x05\x03\x04\x03\x05\x04", // 𥜱
+ 0x25732: "\x04\x05\x02\x04\x02\x01\x02\x01\x02\x05\x02\x05\x05\x04\x02\x03\x04\x02\x05\x01\x02\x01\x04", // 𥜲
+ 0x25733: "\x04\x05\x02\x04\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x03\x04\x01\x03\x04\x03\x01\x01\x02", // 𥜳
+ 0x25734: "\x04\x05\x02\x04\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𥜴
+ 0x25735: "\x04\x05\x02\x04\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𥜵
+ 0x25736: "\x04\x05\x02\x04\x04\x03\x01\x03\x02\x05\x01\x01\x01\x02\x01\x02\x01\x05\x01\x05\x03\x04\x03\x05\x04", // 𥜶
+ 0x25737: "\x05\x04\x05\x04\x05\x04\x03\x02\x01\x01\x02\x03\x04\x01\x05\x02\x05\x01\x01\x01\x05\x03\x04\x03\x05\x04", // 𥜷
+ 0x25738: "\x01\x01\x02\x03\x04\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x02\x05\x01\x01\x02\x05\x01\x05\x02\x02", // 𥜸
+ 0x25739: "\x05\x01\x05\x01\x02\x01\x01\x02\x01\x01\x01\x02\x03\x04\x01\x05\x02\x05\x01\x01\x01\x05\x03\x04\x03\x05\x04", // 𥜹
+ 0x2573a: "\x02\x05\x02\x04\x04\x05\x01\x01\x02\x03\x04\x05\x04\x01\x05\x04\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𥜺
+ 0x2573b: "\x03\x02\x05\x02\x01\x04", // 𥜻
+ 0x2573c: "\x03\x04\x04\x03\x02\x05\x05\x04", // 𥜼
+ 0x2573d: "\x02\x01\x02\x05\x03\x04\x02\x05\x05\x04", // 𥜽
+ 0x2573e: "\x02\x01\x01\x03\x04\x05\x02\x02\x05\x02\x01\x04", // 𥜾
+ 0x2573f: "\x05\x05\x05\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𥜿
+ 0x25740: "\x03\x02\x05\x01\x02\x05\x02\x01\x04\x05\x02\x05", // 𥝀
+ 0x25741: "\x05\x05\x05\x02\x05\x03\x04\x01\x02\x05\x02\x01\x04", // 𥝁
+ 0x25742: "\x02\x05\x01\x01\x02\x05\x02\x01\x04\x01\x03\x05\x05", // 𥝂
+ 0x25743: "\x05\x01\x05\x03\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𥝃
+ 0x25744: "\x05\x02\x02\x01\x02\x02\x05\x03\x04\x01\x02\x05\x02\x01\x04", // 𥝄
+ 0x25745: "\x03\x02\x01\x05\x01\x01\x02\x05\x03\x04\x01\x02\x05\x05\x04", // 𥝅
+ 0x25746: "\x02\x05\x01\x01\x03\x02\x01\x05\x01\x01\x02\x05\x02\x01\x04", // 𥝆
+ 0x25747: "\x03\x02\x01\x01\x05\x01\x01\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𥝇
+ 0x25748: "\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x02\x05\x05\x04", // 𥝈
+ 0x25749: "\x02\x05\x01\x01\x02\x05\x02\x01\x04\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𥝉
+ 0x2574a: "\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x03\x02\x05\x01\x02\x05\x02\x01\x04", // 𥝊
+ 0x2574b: "\x03\x02\x01\x01\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x05\x01\x01\x02\x05\x05\x04", // 𥝋
+ 0x2574c: "\x03\x01\x02\x03\x04", // 𥝌
+ 0x2574d: "\x03\x01\x02\x03\x04\x01", // 𥝍
+ 0x2574e: "\x03\x01\x02\x03\x04\x05", // 𥝎
+ 0x2574f: "\x03\x01\x02\x03\x04\x05", // 𥝏
+ 0x25750: "\x03\x01\x02\x03\x04\x05\x04", // 𥝐
+ 0x25751: "\x03\x01\x02\x03\x04\x01\x05", // 𥝑
+ 0x25752: "\x03\x01\x02\x03\x04\x02\x04", // 𥝒
+ 0x25753: "\x03\x01\x02\x03\x04\x01\x05", // 𥝓
+ 0x25754: "\x03\x01\x02\x03\x04\x05\x02\x01", // 𥝔
+ 0x25755: "\x03\x01\x02\x03\x04\x04\x01\x05", // 𥝕
+ 0x25756: "\x03\x01\x02\x03\x04\x03\x01\x05", // 𥝖
+ 0x25757: "\x03\x01\x02\x03\x04\x05\x01\x05", // 𥝗
+ 0x25758: "\x03\x01\x02\x03\x04\x03\x05\x04", // 𥝘
+ 0x25759: "\x03\x01\x02\x03\x04\x05\x01\x05", // 𥝙
+ 0x2575a: "\x03\x01\x02\x03\x04\x01\x03\x04", // 𥝚
+ 0x2575b: "\x03\x01\x02\x03\x04\x01\x03\x04", // 𥝛
+ 0x2575c: "\x03\x01\x02\x03\x04\x01\x01\x05", // 𥝜
+ 0x2575d: "\x03\x01\x02\x03\x04\x01\x01\x02", // 𥝝
+ 0x2575e: "\x03\x01\x02\x03\x04\x03\x03\x03", // 𥝞
+ 0x2575f: "\x03\x01\x02\x03\x04\x01\x02\x01", // 𥝟
+ 0x25760: "\x03\x01\x02\x03\x04\x03\x05\x04", // 𥝠
+ 0x25761: "\x03\x01\x02\x03\x04\x05\x01\x02", // 𥝡
+ 0x25762: "\x03\x01\x02\x03\x04\x03\x05\x03", // 𥝢
+ 0x25763: "\x03\x01\x02\x03\x04\x01\x03\x02\x04", // 𥝣
+ 0x25764: "\x03\x01\x02\x03\x04\x03\x05\x03\x03", // 𥝤
+ 0x25765: "\x03\x01\x02\x03\x04\x03\x05\x04", // 𥝥
+ 0x25766: "\x03\x01\x02\x03\x04\x05\x02\x01\x01", // 𥝦
+ 0x25767: "\x03\x01\x02\x03\x04\x05\x02\x01\x05", // 𥝧
+ 0x25768: "\x03\x01\x02\x03\x04\x03\x04\x04\x04", // 𥝨
+ 0x25769: "\x03\x04\x04\x03\x03\x01\x02\x03\x04", // 𥝩
+ 0x2576a: "\x03\x01\x02\x03\x04\x01\x05\x03\x05", // 𥝪
+ 0x2576b: "\x03\x01\x02\x03\x04\x03\x01\x01\x02", // 𥝫
+ 0x2576c: "\x03\x01\x02\x03\x04\x03\x01\x01\x05", // 𥝬
+ 0x2576d: "\x03\x01\x02\x03\x04\x05\x01\x03\x04", // 𥝭
+ 0x2576e: "\x03\x01\x02\x03\x04\x01\x05\x05\x04", // 𥝮
+ 0x2576f: "\x03\x01\x02\x03\x04\x01\x01\x03\x02", // 𥝯
+ 0x25770: "\x03\x01\x02\x03\x04\x01\x02\x03\x04", // 𥝰
+ 0x25771: "\x03\x01\x02\x03\x04\x05\x04\x05\x02", // 𥝱
+ 0x25772: "\x03\x01\x02\x03\x04\x05\x04\x03\x05", // 𥝲
+ 0x25773: "\x03\x01\x02\x03\x04\x03\x05\x04\x01", // 𥝳
+ 0x25774: "\x03\x01\x02\x03\x04\x04\x05\x03\x05", // 𥝴
+ 0x25775: "\x03\x01\x02\x03\x04\x03\x04\x03\x02", // 𥝵
+ 0x25776: "\x03\x01\x02\x03\x04\x03\x05\x05\x04", // 𥝶
+ 0x25777: "\x03\x01\x02\x03\x04\x01\x01\x03\x02", // 𥝷
+ 0x25778: "\x03\x01\x02\x03\x04\x02\x05\x03\x04", // 𥝸
+ 0x25779: "\x03\x01\x02\x03\x04\x03\x03\x01\x02", // 𥝹
+ 0x2577a: "\x03\x01\x02\x03\x04\x03\x04\x01\x02", // 𥝺
+ 0x2577b: "\x03\x01\x02\x03\x04\x03\x05\x05\x04", // 𥝻
+ 0x2577c: "\x03\x01\x02\x03\x04\x05\x01\x05\x02", // 𥝼
+ 0x2577d: "\x03\x01\x02\x03\x04\x01\x02\x01\x05", // 𥝽
+ 0x2577e: "\x03\x01\x02\x03\x04\x01\x03\x03\x01\x05", // 𥝾
+ 0x2577f: "\x03\x01\x02\x03\x04\x05\x03\x02\x05\x01", // 𥝿
+ 0x25780: "\x03\x01\x02\x03\x04\x03\x01\x05\x02\x05", // 𥞀
+ 0x25781: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x02", // 𥞁
+ 0x25782: "\x03\x01\x02\x03\x04\x03\x02\x01\x02\x04", // 𥞂
+ 0x25783: "\x03\x01\x02\x03\x04\x05\x02\x02\x05\x02", // 𥞃
+ 0x25784: "\x03\x01\x02\x03\x04\x03\x02\x01\x05", // 𥞄
+ 0x25785: "\x03\x01\x02\x03\x04\x02\x01\x02\x01\x01\x05", // 𥞅
+ 0x25786: "\x03\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 𥞆
+ 0x25787: "\x03\x01\x02\x03\x04\x03\x05\x02\x05\x02", // 𥞇
+ 0x25788: "\x03\x01\x02\x03\x04\x01\x02\x02\x01\x01", // 𥞈
+ 0x25789: "\x03\x01\x02\x03\x04\x03\x04\x03\x01\x02", // 𥞉
+ 0x2578a: "\x03\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 𥞊
+ 0x2578b: "\x03\x01\x02\x03\x04\x01\x02\x01\x05\x04", // 𥞋
+ 0x2578c: "\x03\x01\x02\x03\x04\x01\x02\x02\x01\x01", // 𥞌
+ 0x2578d: "\x03\x01\x02\x03\x04\x01\x02\x05\x01\x02", // 𥞍
+ 0x2578e: "\x03\x01\x02\x03\x04\x01\x03\x02\x05\x02", // 𥞎
+ 0x2578f: "\x03\x01\x02\x03\x04\x02\x05\x01\x03\x05", // 𥞏
+ 0x25790: "\x03\x01\x02\x03\x04\x02\x05\x01\x05\x01", // 𥞐
+ 0x25791: "\x03\x01\x02\x03\x04\x04\x01\x02\x05\x02", // 𥞑
+ 0x25792: "\x03\x01\x02\x03\x04\x04\x04\x05\x03\x05", // 𥞒
+ 0x25793: "\x03\x01\x02\x03\x04\x05\x01\x03\x01\x01", // 𥞓
+ 0x25794: "\x03\x01\x02\x03\x04\x05\x01\x05\x01\x05", // 𥞔
+ 0x25795: "\x03\x01\x02\x03\x04\x05\x02\x02\x03\x05", // 𥞕
+ 0x25796: "\x03\x01\x02\x03\x04\x03\x05\x01\x01\x02", // 𥞖
+ 0x25797: "\x03\x01\x02\x03\x04\x01\x02\x05\x03\x04", // 𥞗
+ 0x25798: "\x03\x01\x02\x03\x04\x01\x03\x02\x05\x02\x01", // 𥞘
+ 0x25799: "\x03\x01\x02\x03\x04\x03\x04\x05\x03\x02\x05", // 𥞙
+ 0x2579a: "\x03\x01\x02\x03\x04\x05\x03\x01\x02\x05\x01", // 𥞚
+ 0x2579b: "\x03\x01\x02\x03\x04\x03\x05\x01\x02\x03\x04", // 𥞛
+ 0x2579c: "\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 𥞜
+ 0x2579d: "\x03\x01\x02\x03\x04\x03\x04\x05\x02\x03\x05", // 𥞝
+ 0x2579e: "\x03\x01\x02\x03\x04\x04\x01\x02\x05\x01\x01", // 𥞞
+ 0x2579f: "\x03\x01\x02\x03\x04\x04\x04\x01\x01\x01\x02", // 𥞟
+ 0x257a0: "\x03\x01\x02\x03\x04\x01\x02\x01\x03\x01\x05", // 𥞠
+ 0x257a1: "\x03\x01\x02\x03\x04\x02\x05\x01\x02\x05\x02", // 𥞡
+ 0x257a2: "\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 𥞢
+ 0x257a3: "\x01\x02\x01\x02\x05\x01\x03\x01\x02\x03\x04", // 𥞣
+ 0x257a4: "\x01\x02\x01\x04\x05\x01\x03\x01\x02\x03\x04", // 𥞤
+ 0x257a5: "\x01\x03\x05\x04\x02\x02\x03\x01\x02\x03\x04", // 𥞥
+ 0x257a6: "\x03\x01\x02\x03\x04\x01\x04\x03\x01\x03\x04", // 𥞦
+ 0x257a7: "\x03\x01\x02\x03\x04\x03\x03\x02\x01\x01\x02", // 𥞧
+ 0x257a8: "\x03\x01\x02\x03\x04\x04\x01\x05\x03\x03\x04", // 𥞨
+ 0x257a9: "\x03\x01\x02\x03\x04\x04\x03\x01\x01\x03\x02", // 𥞩
+ 0x257aa: "\x03\x01\x02\x03\x04\x04\x03\x01\x02\x03\x04", // 𥞪
+ 0x257ab: "\x03\x01\x02\x03\x04\x04\x03\x01\x02\x03\x04", // 𥞫
+ 0x257ac: "\x03\x01\x02\x03\x04\x04\x04\x05\x05\x03\x01", // 𥞬
+ 0x257ad: "\x03\x01\x02\x03\x04\x05\x01\x03\x01\x02\x01", // 𥞭
+ 0x257ae: "\x03\x01\x02\x03\x04\x05\x03\x05\x03\x05\x03", // 𥞮
+ 0x257af: "\x03\x01\x02\x03\x04\x04\x01\x04\x03\x01\x02", // 𥞯
+ 0x257b0: "\x03\x01\x02\x03\x04\x05\x01\x01\x01\x01\x02", // 𥞰
+ 0x257b1: "\x01\x02\x01\x05\x02\x03\x01\x02\x03\x04", // 𥞱
+ 0x257b2: "\x03\x01\x02\x03\x04\x02\x05\x01\x05\x03\x02\x02", // 𥞲
+ 0x257b3: "\x03\x01\x02\x03\x04\x01\x02\x04\x05\x05\x02\x01", // 𥞳
+ 0x257b4: "\x03\x01\x02\x03\x04\x03\x01\x02\x01\x02\x05\x01", // 𥞴
+ 0x257b5: "\x03\x01\x02\x03\x04\x01\x03\x04\x03\x04\x03\x04", // 𥞵
+ 0x257b6: "\x03\x01\x02\x03\x04\x01\x03\x02\x04\x02\x05\x01", // 𥞶
+ 0x257b7: "\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x03\x05", // 𥞷
+ 0x257b8: "\x03\x01\x02\x03\x04\x03\x05\x01\x05\x02\x05\x01", // 𥞸
+ 0x257b9: "\x04\x04\x01\x05\x03\x04\x04\x03\x01\x02\x03\x04", // 𥞹
+ 0x257ba: "\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 𥞺
+ 0x257bb: "\x03\x01\x02\x03\x04\x04\x03\x02\x05\x02\x03\x04", // 𥞻
+ 0x257bc: "\x03\x01\x02\x03\x04\x03\x05\x04\x02\x05\x01\x01", // 𥞼
+ 0x257bd: "\x03\x01\x02\x03\x04\x04\x01\x04\x03\x01\x01\x02", // 𥞽
+ 0x257be: "\x03\x01\x02\x03\x04\x05\x01\x01\x02\x05\x03\x04", // 𥞾
+ 0x257bf: "\x03\x01\x02\x03\x04\x02\x02\x04\x01\x02\x05\x02", // 𥞿
+ 0x257c0: "\x03\x01\x02\x03\x04\x01\x01\x02\x01\x03\x05\x04", // 𥟀
+ 0x257c1: "\x03\x01\x02\x03\x04\x01\x02\x05\x03\x05\x01\x01", // 𥟁
+ 0x257c2: "\x03\x01\x02\x03\x04\x01\x04\x03\x01\x02\x03\x04", // 𥟂
+ 0x257c3: "\x02\x01\x05\x03\x02\x05\x01\x03\x01\x02\x03\x04", // 𥟃
+ 0x257c4: "\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x05\x03", // 𥟄
+ 0x257c5: "\x03\x01\x03\x02\x01\x05\x01\x01\x02\x03\x04", // 𥟅
+ 0x257c6: "\x03\x01\x02\x03\x04\x04\x01\x04\x03\x05\x02\x01", // 𥟆
+ 0x257c7: "\x03\x01\x02\x03\x04\x01\x02\x04\x01\x03\x04\x04", // 𥟇
+ 0x257c8: "\x03\x01\x02\x03\x04\x01\x02\x05\x01\x02\x03\x04", // 𥟈
+ 0x257c9: "\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x03\x05", // 𥟉
+ 0x257ca: "\x03\x01\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01", // 𥟊
+ 0x257cb: "\x03\x01\x02\x03\x04\x04\x01\x05\x04\x01\x03\x02", // 𥟋
+ 0x257cc: "\x03\x01\x02\x03\x04\x01\x02\x02\x03\x05\x04", // 𥟌
+ 0x257cd: "\x03\x01\x02\x03\x04\x03\x01\x01\x01\x02\x01\x01\x01", // 𥟍
+ 0x257ce: "\x03\x01\x02\x03\x04\x04\x03\x01\x01\x03\x04\x05\x03", // 𥟎
+ 0x257cf: "\x03\x01\x02\x03\x04\x01\x03\x04\x01\x02\x05\x01\x02", // 𥟏
+ 0x257d0: "\x03\x01\x02\x03\x04\x04\x04\x05\x01\x02\x01\x03\x04", // 𥟐
+ 0x257d1: "\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x04\x01\x02", // 𥟑
+ 0x257d2: "\x03\x01\x02\x03\x04\x05\x04\x05\x04\x05\x04\x05\x04", // 𥟒
+ 0x257d3: "\x03\x01\x02\x03\x04\x04\x04\x05\x02\x05\x01\x05\x01", // 𥟓
+ 0x257d4: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x05\x01\x03\x04", // 𥟔
+ 0x257d5: "\x03\x01\x02\x03\x04\x01\x02\x01\x02\x03\x05\x03\x04", // 𥟕
+ 0x257d6: "\x03\x01\x02\x03\x04\x03\x05\x03\x03\x04\x02\x03\x04", // 𥟖
+ 0x257d7: "\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x01\x03\x02", // 𥟗
+ 0x257d8: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x03\x05\x03\x03", // 𥟘
+ 0x257d9: "\x02\x05\x01\x01\x05\x03\x03\x03\x03\x01\x02\x03\x04", // 𥟙
+ 0x257da: "\x03\x01\x02\x03\x04\x04\x05\x04\x03\x04\x01\x02\x01", // 𥟚
+ 0x257db: "\x03\x01\x02\x03\x04\x03\x04\x05\x02\x01\x03\x05\x04", // 𥟛
+ 0x257dc: "\x05\x05\x05\x03\x05\x04\x02\x02\x03\x01\x02\x03\x04", // 𥟜
+ 0x257dd: "\x03\x01\x02\x03\x04\x03\x04\x04\x03\x01\x01\x03\x02", // 𥟝
+ 0x257de: "\x03\x01\x02\x03\x04\x03\x04\x04\x03\x05\x01\x03\x02", // 𥟞
+ 0x257df: "\x02\x05\x01\x01\x01\x03\x03\x03\x03\x01\x02\x03\x04", // 𥟟
+ 0x257e0: "\x03\x01\x02\x03\x04\x01\x05\x03\x05\x02\x05\x01\x01", // 𥟠
+ 0x257e1: "\x03\x01\x02\x03\x04\x04\x04\x05\x01\x01\x02\x03\x04", // 𥟡
+ 0x257e2: "\x03\x01\x02\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04", // 𥟢
+ 0x257e3: "\x03\x01\x02\x03\x04\x04\x01\x04\x03\x01\x05\x03\x01", // 𥟣
+ 0x257e4: "\x03\x01\x02\x03\x04\x05\x01\x01\x02\x04\x01\x03\x04", // 𥟤
+ 0x257e5: "\x03\x01\x02\x03\x04\x01\x05\x03\x04\x01\x05\x03\x04", // 𥟥
+ 0x257e6: "\x03\x01\x02\x03\x04\x02\x02\x03\x04\x02\x04\x04\x04", // 𥟦
+ 0x257e7: "\x03\x01\x02\x03\x04\x02\x01\x01\x02\x03\x04\x05\x04", // 𥟧
+ 0x257e8: "\x03\x01\x02\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𥟨
+ 0x257e9: "\x03\x01\x02\x03\x04\x03\x04\x04\x03\x01\x02\x03\x04", // 𥟩
+ 0x257ea: "\x03\x01\x02\x03\x04\x01\x02\x02\x03\x01\x01\x05", // 𥟪
+ 0x257eb: "\x02\x01\x02\x05\x03\x05\x04\x01\x03\x01\x02\x03\x04", // 𥟫
+ 0x257ec: "\x03\x01\x02\x03\x04\x02\x03\x04\x03\x05\x01\x01\x02", // 𥟬
+ 0x257ed: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01\x01\x03\x04", // 𥟭
+ 0x257ee: "\x03\x01\x02\x03\x04\x02\x05\x01\x05\x02\x05\x01\x01", // 𥟮
+ 0x257ef: "\x03\x01\x02\x03\x04\x03\x05\x01\x02\x01\x01\x02\x01", // 𥟯
+ 0x257f0: "\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x03\x04\x01", // 𥟰
+ 0x257f1: "\x03\x01\x02\x03\x04\x03\x01\x05\x01\x01\x02\x03\x04", // 𥟱
+ 0x257f2: "\x03\x03\x02\x01\x02\x03\x04\x04\x03\x01\x02\x03\x04", // 𥟲
+ 0x257f3: "\x03\x01\x02\x03\x04\x03\x04\x04\x03\x01\x01\x02\x04", // 𥟳
+ 0x257f4: "\x03\x01\x02\x03\x04\x03\x05\x01\x05\x02\x05\x01\x01", // 𥟴
+ 0x257f5: "\x03\x01\x02\x03\x04\x03\x05\x04\x01\x02\x05\x01\x01", // 𥟵
+ 0x257f6: "\x03\x01\x02\x03\x04\x04\x04\x05\x03\x05\x04\x05\x05", // 𥟶
+ 0x257f7: "\x03\x01\x02\x03\x04\x05\x02\x01\x01\x05\x02\x01\x01", // 𥟷
+ 0x257f8: "\x05\x05\x05\x02\x05\x01\x02\x02\x03\x01\x02\x03\x04", // 𥟸
+ 0x257f9: "\x03\x01\x02\x03\x04\x03\x05\x01\x02\x05\x01\x03\x04", // 𥟹
+ 0x257fa: "\x03\x01\x02\x03\x04\x03\x05\x01\x03\x02\x05\x02\x02", // 𥟺
+ 0x257fb: "\x03\x01\x02\x03\x04\x03\x05\x04\x03\x05\x04\x02\x02", // 𥟻
+ 0x257fc: "\x03\x01\x02\x03\x04\x01\x02\x02\x01\x03\x02\x04", // 𥟼
+ 0x257fd: "\x03\x01\x02\x03\x04\x05\x01\x03\x01\x05\x04\x01\x02\x01", // 𥟽
+ 0x257fe: "\x03\x01\x02\x03\x04\x01\x02\x01\x02\x01\x02\x02\x05\x01", // 𥟾
+ 0x257ff: "\x03\x05\x04\x03\x05\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 𥟿
+ 0x25800: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x03\x01\x01\x02\x01", // 𥠀
+ 0x25801: "\x03\x01\x02\x03\x04\x02\x05\x01\x02\x02\x05\x02\x05\x01", // 𥠁
+ 0x25802: "\x03\x01\x02\x03\x04\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 𥠂
+ 0x25803: "\x03\x01\x02\x03\x04\x02\x05\x05\x04\x05\x05\x04\x05\x02", // 𥠃
+ 0x25804: "\x03\x01\x02\x03\x04\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 𥠄
+ 0x25805: "\x03\x01\x02\x03\x04\x03\x05\x02\x05\x03\x04\x01\x03\x04", // 𥠅
+ 0x25806: "\x03\x01\x02\x03\x04\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 𥠆
+ 0x25807: "\x03\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x03\x03\x03", // 𥠇
+ 0x25808: "\x03\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x05\x02", // 𥠈
+ 0x25809: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x04\x02\x02", // 𥠉
+ 0x2580a: "\x03\x01\x02\x03\x04\x05\x04\x05\x02\x03\x01\x02\x03\x04", // 𥠊
+ 0x2580b: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x02\x02\x01\x01\x01", // 𥠋
+ 0x2580c: "\x03\x04\x01\x02\x05\x02\x02\x01\x05\x03\x01\x02\x03\x04", // 𥠌
+ 0x2580d: "\x03\x01\x02\x03\x04\x01\x03\x02\x04\x03\x01\x01\x02\x01", // 𥠍
+ 0x2580e: "\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𥠎
+ 0x2580f: "\x03\x01\x02\x03\x04\x01\x02\x01\x02\x01\x03\x05\x03\x04", // 𥠏
+ 0x25810: "\x03\x01\x02\x03\x04\x03\x04\x03\x02\x05\x01\x01\x01\x02", // 𥠐
+ 0x25811: "\x03\x01\x02\x03\x04\x04\x04\x05\x03\x05\x04\x02\x05\x01", // 𥠑
+ 0x25812: "\x03\x01\x02\x03\x04\x04\x01\x04\x03\x04\x05\x02\x05\x02", // 𥠒
+ 0x25813: "\x03\x01\x02\x03\x04\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 𥠓
+ 0x25814: "\x03\x01\x02\x03\x04\x01\x01\x01\x03\x04\x02\x05\x01\x01", // 𥠔
+ 0x25815: "\x03\x01\x02\x03\x04\x03\x04\x01\x03\x05\x01\x01\x02\x02", // 𥠕
+ 0x25816: "\x03\x01\x02\x03\x04\x03\x05\x03\x03\x04\x02\x04\x04\x04", // 𥠖
+ 0x25817: "\x03\x01\x02\x03\x04\x03\x01\x02\x05\x01\x01\x02\x03\x04", // 𥠗
+ 0x25818: "\x03\x01\x02\x03\x04\x03\x02\x05\x01\x01\x02\x05\x03\x04", // 𥠘
+ 0x25819: "\x03\x01\x02\x03\x04\x01\x02\x02\x02\x05\x01\x01\x01", // 𥠙
+ 0x2581a: "\x03\x01\x02\x03\x04\x01\x02\x02\x02\x05\x01\x03\x04", // 𥠚
+ 0x2581b: "\x03\x01\x02\x03\x04\x01\x02\x05\x03\x04\x03\x01\x03\x04", // 𥠛
+ 0x2581c: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 𥠜
+ 0x2581d: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x03\x01\x01\x03\x04", // 𥠝
+ 0x2581e: "\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x03\x04\x02\x05\x02", // 𥠞
+ 0x2581f: "\x03\x02\x05\x01\x01\x01\x01\x02\x01\x03\x01\x02\x03\x04", // 𥠟
+ 0x25820: "\x03\x04\x02\x05\x01\x02\x02\x01\x05\x03\x01\x02\x03\x04", // 𥠠
+ 0x25821: "\x03\x01\x02\x03\x04\x03\x05\x03\x03\x04\x04\x05\x04\x04", // 𥠡
+ 0x25822: "\x03\x01\x02\x03\x04\x03\x05\x04\x03\x05\x01\x01\x02\x01", // 𥠢
+ 0x25823: "\x03\x01\x02\x03\x04\x04\x01\x02\x05\x01\x04\x05\x01\x02", // 𥠣
+ 0x25824: "\x04\x01\x02\x05\x03\x03\x04\x04\x01\x03\x01\x02\x03\x04", // 𥠤
+ 0x25825: "\x03\x01\x02\x03\x04\x04\x01\x05\x03\x03\x01\x05\x02\x05", // 𥠥
+ 0x25826: "\x03\x01\x02\x03\x04\x04\x03\x01\x01\x02\x01\x01\x03\x04", // 𥠦
+ 0x25827: "\x03\x01\x02\x03\x04\x05\x01\x03\x04\x03\x01\x01\x01\x02", // 𥠧
+ 0x25828: "\x03\x01\x02\x03\x04\x05\x03\x01\x03\x05\x04\x03\x05\x04", // 𥠨
+ 0x25829: "\x03\x01\x02\x03\x04\x05\x04\x01\x03\x04\x02\x04\x04\x04", // 𥠩
+ 0x2582a: "\x05\x04\x05\x02\x03\x03\x01\x03\x04\x03\x01\x02\x03\x04", // 𥠪
+ 0x2582b: "\x03\x01\x02\x03\x04\x05\x03\x01\x01\x05\x01\x02\x05\x01", // 𥠫
+ 0x2582c: "\x03\x01\x02\x03\x04\x01\x01\x01\x03\x04\x01\x01\x03\x04", // 𥠬
+ 0x2582d: "\x03\x01\x02\x05\x01\x01\x02\x01\x01\x03\x01\x02\x03\x04", // 𥠭
+ 0x2582e: "\x03\x01\x02\x03\x04\x01\x02\x02\x05\x04\x03\x01\x01\x02", // 𥠮
+ 0x2582f: "\x03\x01\x02\x03\x04\x01\x02\x02\x02\x01\x02\x05\x01", // 𥠯
+ 0x25830: "\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x03\x05\x04", // 𥠰
+ 0x25831: "\x03\x01\x02\x03\x04\x03\x03\x02\x01\x05\x03\x01\x05\x03\x05", // 𥠱
+ 0x25832: "\x03\x01\x02\x03\x04\x01\x02\x05\x02\x02\x01\x01\x02\x03\x04", // 𥠲
+ 0x25833: "\x03\x01\x02\x03\x04\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01", // 𥠳
+ 0x25834: "\x03\x01\x02\x03\x04\x03\x04\x04\x04\x04\x05\x02\x01\x05", // 𥠴
+ 0x25835: "\x03\x01\x02\x03\x04\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 𥠵
+ 0x25836: "\x03\x01\x02\x03\x04\x01\x03\x01\x01\x01\x02\x01\x01\x01\x05", // 𥠶
+ 0x25837: "\x03\x01\x02\x03\x04\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 𥠷
+ 0x25838: "\x03\x01\x02\x03\x04\x01\x02\x02\x03\x04\x05\x03\x02\x05", // 𥠸
+ 0x25839: "\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02\x01\x02\x03\x04", // 𥠹
+ 0x2583a: "\x03\x01\x02\x03\x04\x02\x05\x03\x04\x01\x02\x05\x02\x02\x01", // 𥠺
+ 0x2583b: "\x03\x01\x02\x03\x04\x01\x03\x05\x04\x03\x05\x02\x05\x01\x01", // 𥠻
+ 0x2583c: "\x01\x01\x01\x03\x04\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04", // 𥠼
+ 0x2583d: "\x03\x01\x02\x03\x04\x01\x05\x04\x01\x02\x01\x03\x01\x03\x04", // 𥠽
+ 0x2583e: "\x03\x01\x02\x03\x04\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01", // 𥠾
+ 0x2583f: "\x03\x01\x02\x03\x04\x03\x02\x02\x03\x05\x04\x03\x05\x04\x01", // 𥠿
+ 0x25840: "\x05\x01\x05\x03\x02\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04", // 𥡀
+ 0x25841: "\x03\x01\x02\x03\x04\x04\x05\x04\x03\x04\x03\x04\x02\x03\x04", // 𥡁
+ 0x25842: "\x03\x01\x02\x03\x04\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𥡂
+ 0x25843: "\x03\x01\x02\x03\x04\x01\x02\x01\x02\x04\x01\x05\x03\x02\x05", // 𥡃
+ 0x25844: "\x03\x01\x02\x03\x04\x03\x05\x02\x05\x01\x02\x05\x01\x01\x05", // 𥡄
+ 0x25845: "\x03\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x03\x04\x01\x02", // 𥡅
+ 0x25846: "\x03\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x03\x03\x03\x03", // 𥡆
+ 0x25847: "\x03\x01\x02\x03\x04\x03\x05\x01\x03\x05\x04\x01\x05\x04\x01", // 𥡇
+ 0x25848: "\x03\x01\x02\x03\x04\x03\x02\x05\x01\x05\x01\x04\x05\x04", // 𥡈
+ 0x25849: "\x03\x01\x02\x03\x04\x05\x03\x01\x04\x03\x02\x05\x01\x03\x05", // 𥡉
+ 0x2584a: "\x03\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x03\x04\x05\x04", // 𥡊
+ 0x2584b: "\x03\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x01\x03\x05\x04", // 𥡋
+ 0x2584c: "\x03\x01\x02\x03\x04\x03\x05\x02\x05\x01\x02\x05\x01\x01\x05", // 𥡌
+ 0x2584d: "\x03\x01\x02\x03\x04\x01\x02\x02\x04\x01\x05\x05\x05\x05", // 𥡍
+ 0x2584e: "\x03\x01\x02\x03\x04\x04\x03\x02\x05\x02\x04\x01\x03\x04", // 𥡎
+ 0x2584f: "\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01", // 𥡏
+ 0x25850: "\x03\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x04\x01\x05\x03", // 𥡐
+ 0x25851: "\x03\x01\x02\x03\x04\x03\x05\x04\x03\x05\x01\x02\x03\x04\x01", // 𥡑
+ 0x25852: "\x03\x01\x02\x03\x04\x04\x01\x03\x04\x01\x02\x02\x01\x01\x01", // 𥡒
+ 0x25853: "\x03\x01\x02\x03\x04\x04\x03\x01\x02\x03\x04\x03\x05\x03\x03", // 𥡓
+ 0x25854: "\x03\x01\x02\x03\x04\x04\x05\x04\x03\x04\x04\x04\x05\x03\x05", // 𥡔
+ 0x25855: "\x03\x01\x02\x03\x04\x05\x01\x01\x02\x02\x05\x01\x01\x03\x04", // 𥡕
+ 0x25856: "\x03\x01\x02\x03\x04\x05\x01\x03\x02\x04\x01\x03\x04\x01\x02", // 𥡖
+ 0x25857: "\x03\x01\x02\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𥡗
+ 0x25858: "\x03\x01\x02\x03\x04\x01\x02\x02\x01\x03\x02\x05\x01\x01\x02", // 𥡘
+ 0x25859: "\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04\x03\x01\x02\x03\x04", // 𥡙
+ 0x2585a: "\x03\x01\x02\x03\x04\x04\x03\x01\x02\x03\x04\x03\x05\x05\x04", // 𥡚
+ 0x2585b: "\x01\x02\x01\x04\x05\x01\x03\x05\x05\x04\x03\x01\x02\x03\x04", // 𥡛
+ 0x2585c: "\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 𥡜
+ 0x2585d: "\x03\x01\x05\x01\x01\x02\x03\x04\x03\x01\x05\x01\x01\x02\x03\x04", // 𥡝
+ 0x2585e: "\x03\x01\x02\x03\x04\x01\x03\x05\x04\x03\x05\x02\x05\x01\x01", // 𥡞
+ 0x2585f: "\x03\x01\x02\x03\x04\x01\x01\x01\x03\x04\x03\x02\x01\x05\x01\x01", // 𥡟
+ 0x25860: "\x03\x01\x02\x03\x04\x01\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04", // 𥡠
+ 0x25861: "\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x04\x03\x01\x02\x03\x04", // 𥡡
+ 0x25862: "\x03\x01\x02\x03\x04\x04\x01\x05\x05\x04\x04\x01\x03\x04\x01\x02", // 𥡢
+ 0x25863: "\x03\x01\x02\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01", // 𥡣
+ 0x25864: "\x03\x01\x02\x03\x04\x01\x02\x05\x03\x05\x01\x01\x04\x04\x04\x04", // 𥡤
+ 0x25865: "\x03\x01\x02\x03\x04\x03\x02\x05\x03\x03\x04\x01\x04\x05\x04\x04", // 𥡥
+ 0x25866: "\x03\x01\x02\x03\x04\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01", // 𥡦
+ 0x25867: "\x03\x01\x02\x03\x04\x02\x01\x05\x03\x01\x05\x02\x05\x01\x01\x01", // 𥡧
+ 0x25868: "\x03\x01\x02\x03\x04\x01\x02\x05\x01\x01\x02\x04\x04\x01\x05\x03", // 𥡨
+ 0x25869: "\x03\x01\x02\x03\x04\x01\x02\x01\x03\x05\x01\x02\x01\x03\x05\x04", // 𥡩
+ 0x2586a: "\x03\x01\x02\x03\x04\x05\x04\x01\x05\x04\x01\x04\x01\x04\x03\x01", // 𥡪
+ 0x2586b: "\x03\x01\x02\x03\x04\x04\x04\x05\x03\x05\x01\x05\x04\x01\x02\x01", // 𥡫
+ 0x2586c: "\x03\x01\x02\x03\x04\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04", // 𥡬
+ 0x2586d: "\x03\x01\x02\x01\x02\x02\x01\x01\x03\x01\x02\x03\x04\x05\x03\x01", // 𥡭
+ 0x2586e: "\x01\x02\x01\x04\x05\x01\x03\x01\x02\x03\x04\x05\x03\x02\x05\x01", // 𥡮
+ 0x2586f: "\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x01\x02\x03\x04", // 𥡯
+ 0x25870: "\x05\x04\x02\x05\x04\x03\x01\x02\x03\x04\x01\x03\x01\x02\x03\x04", // 𥡰
+ 0x25871: "\x03\x01\x02\x03\x04\x01\x02\x05\x03\x05\x01\x01\x04\x04\x04\x04", // 𥡱
+ 0x25872: "\x03\x01\x02\x03\x04\x04\x01\x03\x05\x01\x01\x02\x05\x01\x01\x02", // 𥡲
+ 0x25873: "\x03\x01\x02\x03\x04\x01\x05\x03\x04\x02\x01\x01\x02\x05\x01\x01", // 𥡳
+ 0x25874: "\x03\x01\x02\x03\x04\x01\x03\x05\x04\x02\x01\x01\x02\x05\x01\x01", // 𥡴
+ 0x25875: "\x03\x01\x02\x03\x04\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04", // 𥡵
+ 0x25876: "\x03\x01\x02\x03\x04\x02\x05\x02\x04\x04\x05\x01\x01\x02\x03\x04", // 𥡶
+ 0x25877: "\x03\x01\x02\x03\x04\x01\x02\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 𥡷
+ 0x25878: "\x03\x01\x02\x03\x04\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 𥡸
+ 0x25879: "\x03\x01\x02\x03\x04\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04", // 𥡹
+ 0x2587a: "\x03\x01\x02\x03\x04\x03\x01\x02\x05\x03\x04\x02\x05\x02\x05\x01", // 𥡺
+ 0x2587b: "\x03\x02\x05\x01\x01\x02\x03\x04\x03\x03\x03\x03\x01\x02\x03\x04", // 𥡻
+ 0x2587c: "\x03\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x03\x02\x05\x02\x02", // 𥡼
+ 0x2587d: "\x03\x01\x02\x03\x04\x03\x05\x02\x05\x01\x01\x01\x05\x03\x05\x04", // 𥡽
+ 0x2587e: "\x03\x01\x02\x03\x04\x03\x05\x02\x05\x03\x04\x03\x05\x01\x01\x02", // 𥡾
+ 0x2587f: "\x03\x01\x02\x03\x04\x03\x05\x03\x05\x01\x01\x02\x04\x04\x01\x02", // 𥡿
+ 0x25880: "\x03\x01\x02\x03\x04\x04\x03\x01\x02\x03\x04\x03\x05\x02\x05\x01", // 𥢀
+ 0x25881: "\x03\x01\x02\x03\x04\x05\x03\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 𥢁
+ 0x25882: "\x03\x01\x02\x03\x04\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04", // 𥢂
+ 0x25883: "\x03\x01\x02\x03\x04\x04\x04\x05\x05\x02\x05\x02\x02\x01\x01\x02", // 𥢃
+ 0x25884: "\x03\x01\x02\x03\x04\x03\x02\x05\x05\x04\x01\x03\x04\x03\x05\x04", // 𥢄
+ 0x25885: "\x03\x01\x02\x03\x04\x05\x04\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𥢅
+ 0x25886: "\x03\x01\x02\x03\x04\x05\x04\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𥢆
+ 0x25887: "\x03\x01\x02\x03\x04\x01\x02\x01\x02\x01\x02\x05\x01\x02\x03\x04", // 𥢇
+ 0x25888: "\x03\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x01\x05\x03\x04", // 𥢈
+ 0x25889: "\x01\x02\x01\x04\x05\x03\x01\x02\x03\x04\x01\x02\x05\x02\x03\x04", // 𥢉
+ 0x2588a: "\x03\x01\x02\x03\x04\x01\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 𥢊
+ 0x2588b: "\x03\x01\x02\x03\x04\x01\x02\x01\x05\x02\x05\x01\x02\x05\x01\x02\x01", // 𥢋
+ 0x2588c: "\x03\x01\x02\x03\x04\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 𥢌
+ 0x2588d: "\x03\x01\x02\x03\x04\x01\x02\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 𥢍
+ 0x2588e: "\x03\x01\x02\x03\x04\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x02\x04", // 𥢎
+ 0x2588f: "\x03\x01\x02\x03\x04\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 𥢏
+ 0x25890: "\x03\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x04\x01\x03\x04\x01\x02", // 𥢐
+ 0x25891: "\x03\x01\x02\x03\x04\x01\x03\x05\x04\x03\x05\x04\x03\x04\x02\x05\x01", // 𥢑
+ 0x25892: "\x03\x01\x02\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x05\x03", // 𥢒
+ 0x25893: "\x03\x01\x02\x03\x04\x03\x05\x04\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𥢓
+ 0x25894: "\x03\x01\x02\x03\x04\x01\x03\x05\x04\x02\x01\x02\x05\x01\x01\x01\x02", // 𥢔
+ 0x25895: "\x03\x01\x02\x03\x04\x01\x02\x05\x02\x02\x01\x04\x03\x01\x02\x03\x04", // 𥢕
+ 0x25896: "\x03\x01\x02\x03\x04\x02\x05\x01\x02\x03\x04\x01\x03\x01\x02\x03\x04", // 𥢖
+ 0x25897: "\x03\x01\x02\x03\x04\x01\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01", // 𥢗
+ 0x25898: "\x03\x01\x02\x03\x04\x05\x01\x03\x02\x04\x01\x03\x04\x01\x01\x05\x04", // 𥢘
+ 0x25899: "\x01\x02\x01\x03\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𥢙
+ 0x2589a: "\x03\x01\x02\x03\x04\x01\x04\x05\x02\x04\x01\x03\x04\x01\x01\x05\x04", // 𥢚
+ 0x2589b: "\x03\x01\x02\x03\x04\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04", // 𥢛
+ 0x2589c: "\x03\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x01\x02\x01\x01\x02\x04", // 𥢜
+ 0x2589d: "\x01\x02\x05\x02\x02\x01\x03\x01\x02\x03\x04\x03\x03\x03\x05\x03\x04", // 𥢝
+ 0x2589e: "\x01\x02\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04\x03\x01\x02\x03\x04", // 𥢞
+ 0x2589f: "\x03\x01\x02\x03\x04\x01\x02\x02\x05\x01\x01\x02\x02\x03\x01\x02", // 𥢟
+ 0x258a0: "\x03\x01\x02\x03\x04\x01\x03\x02\x05\x02\x02\x01\x03\x02\x05\x02\x02", // 𥢠
+ 0x258a1: "\x03\x01\x02\x03\x04\x01\x03\x04\x03\x04\x03\x04\x03\x04\x01\x03\x04", // 𥢡
+ 0x258a2: "\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𥢢
+ 0x258a3: "\x03\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x02\x03\x04\x03\x03\x03", // 𥢣
+ 0x258a4: "\x03\x01\x02\x03\x04\x03\x03\x04\x03\x04\x03\x04\x03\x04\x01\x02\x01", // 𥢤
+ 0x258a5: "\x03\x01\x02\x03\x04\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𥢥
+ 0x258a6: "\x03\x01\x02\x03\x04\x03\x05\x04\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𥢦
+ 0x258a7: "\x03\x01\x02\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05\x03\x04", // 𥢧
+ 0x258a8: "\x03\x01\x02\x03\x04\x05\x01\x03\x05\x02\x01\x05\x02\x01\x05\x02\x01", // 𥢨
+ 0x258a9: "\x03\x01\x02\x03\x04\x05\x04\x01\x05\x04\x01\x03\x04\x02\x04\x04\x04", // 𥢩
+ 0x258aa: "\x03\x01\x02\x03\x04\x01\x01\x01\x02\x05\x03\x05\x05\x04\x02\x03\x04", // 𥢪
+ 0x258ab: "\x03\x01\x02\x03\x04\x04\x04\x05\x01\x01\x02\x01\x02\x05\x01\x02\x02", // 𥢫
+ 0x258ac: "\x03\x01\x02\x03\x04\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04", // 𥢬
+ 0x258ad: "\x03\x01\x02\x03\x04\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04", // 𥢭
+ 0x258ae: "\x01\x02\x01\x05\x04\x05\x04\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04", // 𥢮
+ 0x258af: "\x03\x01\x02\x03\x04\x03\x05\x04\x04\x01\x03\x04\x04\x04\x04\x04\x04", // 𥢯
+ 0x258b0: "\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01", // 𥢰
+ 0x258b1: "\x03\x01\x02\x03\x04\x01\x03\x05\x05\x03\x04\x02\x05\x02\x02\x01", // 𥢱
+ 0x258b2: "\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x01\x03\x05\x05\x03\x04", // 𥢲
+ 0x258b3: "\x03\x01\x02\x03\x04\x04\x04\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 𥢳
+ 0x258b4: "\x03\x01\x02\x03\x04\x01\x04\x05\x02\x04\x01\x03\x04\x03\x04\x01\x05\x04", // 𥢴
+ 0x258b5: "\x04\x01\x05\x02\x05\x01\x03\x05\x04\x01\x03\x01\x02\x03\x04\x03\x05\x04", // 𥢵
+ 0x258b6: "\x03\x01\x02\x03\x04\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𥢶
+ 0x258b7: "\x03\x01\x02\x03\x04\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x01\x02\x01", // 𥢷
+ 0x258b8: "\x03\x01\x02\x03\x04\x01\x02\x01\x02\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 𥢸
+ 0x258b9: "\x03\x01\x02\x03\x04\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x03\x04", // 𥢹
+ 0x258ba: "\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x04\x01\x02\x05\x02\x05\x01\x01", // 𥢺
+ 0x258bb: "\x03\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 𥢻
+ 0x258bc: "\x03\x01\x02\x03\x04\x01\x02\x05\x02\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𥢼
+ 0x258bd: "\x03\x01\x02\x03\x04\x02\x01\x03\x05\x04\x05\x04\x04\x03\x01\x02\x03\x04", // 𥢽
+ 0x258be: "\x03\x01\x02\x03\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01\x04\x04\x04\x04", // 𥢾
+ 0x258bf: "\x03\x01\x02\x03\x04\x01\x02\x05\x01\x04\x01\x02\x05\x01\x04\x05\x01\x02", // 𥢿
+ 0x258c0: "\x03\x01\x02\x03\x04\x02\x03\x04\x03\x02\x05\x01\x01\x02\x03\x03\x03\x03", // 𥣀
+ 0x258c1: "\x03\x01\x02\x03\x04\x03\x04\x04\x03\x04\x05\x04\x05\x04\x04\x03\x05\x04", // 𥣁
+ 0x258c2: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x03\x01\x02\x03\x04", // 𥣂
+ 0x258c3: "\x03\x04\x01\x02\x05\x02\x02\x01\x03\x05\x03\x05\x01\x03\x01\x02\x03\x04", // 𥣃
+ 0x258c4: "\x03\x01\x02\x03\x04\x03\x02\x05\x03\x04\x03\x01\x02\x03\x04\x01\x01\x05", // 𥣄
+ 0x258c5: "\x03\x01\x02\x03\x04\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05", // 𥣅
+ 0x258c6: "\x03\x01\x02\x03\x04\x01\x01\x03\x04\x01\x01\x03\x04\x03\x01\x02\x03\x04", // 𥣆
+ 0x258c7: "\x03\x01\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x01\x04\x03\x03\x04", // 𥣇
+ 0x258c8: "\x03\x01\x02\x03\x04\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x02\x03\x04", // 𥣈
+ 0x258c9: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x03\x01\x01\x02\x01\x02\x05\x03\x04", // 𥣉
+ 0x258ca: "\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x01\x02\x05\x03\x05\x01\x05\x04", // 𥣊
+ 0x258cb: "\x03\x01\x02\x03\x04\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 𥣋
+ 0x258cc: "\x03\x01\x02\x03\x04\x02\x05\x02\x03\x05\x01\x01\x02\x03\x05\x01\x01\x02", // 𥣌
+ 0x258cd: "\x03\x01\x02\x03\x04\x03\x04\x05\x04\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𥣍
+ 0x258ce: "\x03\x01\x02\x03\x04\x03\x05\x04\x04\x05\x04\x01\x02\x05\x01\x04\x03\x01", // 𥣎
+ 0x258cf: "\x03\x01\x02\x03\x04\x04\x03\x01\x05\x05\x04\x05\x05\x04\x04\x04\x04\x04", // 𥣏
+ 0x258d0: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 𥣐
+ 0x258d1: "\x03\x01\x02\x03\x04\x01\x02\x02\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𥣑
+ 0x258d2: "\x03\x01\x02\x03\x04\x03\x04\x01\x02\x05\x01\x01\x02\x02\x04\x05\x04\x04", // 𥣒
+ 0x258d3: "\x03\x01\x02\x03\x04\x04\x03\x01\x05\x05\x04\x05\x05\x04\x04\x05\x04\x04", // 𥣓
+ 0x258d4: "\x03\x01\x02\x03\x04\x05\x01\x03\x04\x03\x01\x01\x01\x02\x04\x05\x04", // 𥣔
+ 0x258d5: "\x03\x01\x02\x03\x04\x04\x03\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 𥣕
+ 0x258d6: "\x03\x01\x02\x03\x04\x01\x05\x03\x01\x01\x03\x04\x05\x04\x05\x02\x01\x03\x04", // 𥣖
+ 0x258d7: "\x03\x01\x02\x03\x04\x04\x04\x05\x04\x05\x04\x04\x02\x05\x02\x02\x01\x01\x02", // 𥣗
+ 0x258d8: "\x03\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x03\x05\x04\x01\x01\x03\x04\x04", // 𥣘
+ 0x258d9: "\x03\x01\x02\x03\x04\x01\x02\x02\x01\x01\x01\x05\x04\x03\x02\x03\x04\x03\x04", // 𥣙
+ 0x258da: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x01\x03\x04\x03\x01\x02\x03\x04", // 𥣚
+ 0x258db: "\x03\x01\x02\x03\x04\x01\x02\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 𥣛
+ 0x258dc: "\x03\x01\x02\x03\x04\x03\x02\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 𥣜
+ 0x258dd: "\x03\x01\x02\x03\x04\x04\x05\x01\x03\x02\x05\x01\x02\x02\x03\x01\x02\x03\x04", // 𥣝
+ 0x258de: "\x03\x01\x02\x03\x04\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𥣞
+ 0x258df: "\x03\x01\x02\x03\x04\x03\x05\x03\x02\x01\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𥣟
+ 0x258e0: "\x03\x04\x01\x01\x02\x03\x05\x04\x05\x04\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04", // 𥣠
+ 0x258e1: "\x03\x01\x02\x03\x04\x05\x01\x03\x02\x04\x01\x03\x04\x03\x05\x04\x01\x05\x02", // 𥣡
+ 0x258e2: "\x03\x01\x02\x03\x04\x01\x02\x01\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 𥣢
+ 0x258e3: "\x03\x01\x02\x03\x04\x02\x04\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05\x04\x04", // 𥣣
+ 0x258e4: "\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x03\x02\x05\x01\x01\x02\x05\x03\x04", // 𥣤
+ 0x258e5: "\x03\x01\x02\x03\x04\x03\x05\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04", // 𥣥
+ 0x258e6: "\x03\x01\x02\x03\x04\x05\x01\x03\x04\x01\x04\x03\x01\x01\x02\x04\x05\x04", // 𥣦
+ 0x258e7: "\x03\x01\x02\x03\x04\x05\x03\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𥣧
+ 0x258e8: "\x03\x01\x02\x03\x04\x05\x01\x01\x05\x01\x01\x05\x01\x05\x02\x05\x04\x01\x05", // 𥣨
+ 0x258e9: "\x03\x01\x02\x03\x04\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x01\x05\x03\x04", // 𥣩
+ 0x258ea: "\x03\x01\x02\x03\x04\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𥣪
+ 0x258eb: "\x03\x01\x02\x03\x04\x02\x01\x02\x01\x02\x05\x02\x02\x01\x01\x03\x04\x05\x03\x04", // 𥣫
+ 0x258ec: "\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01", // 𥣬
+ 0x258ed: "\x03\x01\x02\x03\x04\x01\x03\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𥣭
+ 0x258ee: "\x03\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x05\x01\x01\x05\x04\x05\x02", // 𥣮
+ 0x258ef: "\x03\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x04\x05\x04\x05\x04\x04\x03\x05\x04", // 𥣯
+ 0x258f0: "\x03\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x04\x04\x05\x03\x05\x04\x01\x05\x03", // 𥣰
+ 0x258f1: "\x03\x01\x02\x03\x04\x01\x03\x04\x03\x04\x02\x03\x04\x01\x02\x05\x02\x05\x01\x01", // 𥣱
+ 0x258f2: "\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x03\x01\x02\x03\x04", // 𥣲
+ 0x258f3: "\x03\x01\x02\x03\x04\x04\x04\x05\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 𥣳
+ 0x258f4: "\x03\x01\x02\x03\x04\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 𥣴
+ 0x258f5: "\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x03\x05\x03\x03\x04\x02\x04\x01\x03\x04", // 𥣵
+ 0x258f6: "\x03\x01\x02\x03\x04\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 𥣶
+ 0x258f7: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x03\x04\x01\x02\x01\x03\x01\x02\x03\x04", // 𥣷
+ 0x258f8: "\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x01\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 𥣸
+ 0x258f9: "\x03\x01\x02\x03\x04\x04\x01\x04\x03\x01\x03\x05\x01\x02\x02\x01\x04\x04\x04\x04", // 𥣹
+ 0x258fa: "\x03\x01\x02\x03\x04\x04\x03\x01\x05\x01\x02\x02\x01\x04\x04\x04\x04\x01\x02\x01", // 𥣺
+ 0x258fb: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04", // 𥣻
+ 0x258fc: "\x03\x01\x02\x03\x04\x05\x02\x02\x05\x02\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𥣼
+ 0x258fd: "\x03\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x01\x02\x05\x01\x02", // 𥣽
+ 0x258fe: "\x03\x01\x02\x03\x04\x03\x04\x03\x01\x02\x01\x02\x01\x03\x05\x04\x01\x02\x01\x05\x04", // 𥣾
+ 0x258ff: "\x03\x01\x02\x03\x04\x01\x01\x02\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 𥣿
+ 0x25900: "\x03\x01\x02\x03\x04\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 𥤀
+ 0x25901: "\x03\x01\x02\x03\x04\x04\x01\x02\x05\x01\x02\x05\x01\x01\x02\x01\x02\x01\x01\x01\x02", // 𥤁
+ 0x25902: "\x03\x01\x02\x03\x04\x04\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05\x03\x04", // 𥤂
+ 0x25903: "\x03\x01\x02\x03\x04\x05\x03\x01\x04\x05\x02\x04\x01\x03\x04\x01\x03\x02\x05\x02\x02", // 𥤃
+ 0x25904: "\x03\x01\x02\x03\x04\x04\x03\x01\x02\x03\x04\x01\x01\x02\x02\x01\x01\x01\x01\x03\x04", // 𥤄
+ 0x25905: "\x03\x01\x02\x03\x04\x04\x03\x01\x02\x03\x04\x01\x01\x02\x02\x01\x02\x05\x03\x05\x04", // 𥤅
+ 0x25906: "\x03\x01\x02\x03\x04\x01\x02\x01\x02\x04\x01\x03\x05\x02\x02\x01\x01\x05\x04\x04\x04\x04", // 𥤆
+ 0x25907: "\x03\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 𥤇
+ 0x25908: "\x03\x01\x02\x03\x04\x03\x04\x03\x01\x02\x03\x04\x01\x02\x02\x01\x03\x05\x04\x05\x04", // 𥤈
+ 0x25909: "\x03\x01\x02\x03\x04\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02", // 𥤉
+ 0x2590a: "\x03\x01\x02\x03\x04\x02\x01\x02\x01\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𥤊
+ 0x2590b: "\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01\x03\x01\x02\x03\x04", // 𥤋
+ 0x2590c: "\x03\x01\x02\x03\x04\x05\x04\x01\x05\x04\x01\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 𥤌
+ 0x2590d: "\x03\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x04\x04\x05\x03\x04\x02\x05\x01\x04\x05\x04", // 𥤍
+ 0x2590e: "\x03\x01\x02\x03\x04\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x04\x05\x04\x03\x03\x04", // 𥤎
+ 0x2590f: "\x03\x01\x02\x03\x04\x01\x02\x03\x04\x02\x05\x02\x02\x01\x05\x01\x01\x05\x04\x01\x02\x04", // 𥤏
+ 0x25910: "\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x01\x02\x01", // 𥤐
+ 0x25911: "\x03\x01\x02\x03\x04\x03\x04\x03\x01\x02\x03\x04\x01\x01\x02\x02\x01\x01\x02\x01\x02\x01\x02", // 𥤑
+ 0x25912: "\x03\x01\x02\x03\x04\x03\x05\x03\x02\x01\x01\x05\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𥤒
+ 0x25913: "\x03\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x04\x04\x05\x03\x04\x04\x01\x05\x03\x04\x05\x04", // 𥤓
+ 0x25914: "\x03\x04\x01\x02\x03\x05\x02\x02\x03\x01\x02\x03\x04\x01\x03\x02\x04\x01\x02\x05\x01\x02\x03\x04", // 𥤔
+ 0x25915: "\x03\x01\x02\x03\x04\x01\x02\x05\x01\x02\x03\x04\x03\x01\x02\x03\x04\x01\x02\x05\x01\x02\x03\x04", // 𥤕
+ 0x25916: "\x03\x01\x04\x03\x01\x04\x03\x04\x01\x02\x05\x02\x02\x01\x02\x05\x01\x02\x02\x03\x01\x02\x03\x04", // 𥤖
+ 0x25917: "\x03\x01\x02\x03\x04\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𥤗
+ 0x25918: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𥤘
+ 0x25919: "\x03\x01\x02\x03\x04\x02\x01\x02\x01\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𥤙
+ 0x2591a: "\x03\x01\x02\x03\x04\x03\x05\x02\x05\x01\x02\x05\x03\x04\x01\x05\x05\x01\x01\x05\x01\x01\x04\x04\x04\x04", // 𥤚
+ 0x2591b: "\x03\x01\x02\x03\x04\x03\x05\x02\x05\x01\x02\x05\x01\x01\x01\x05\x05\x01\x01\x05\x01\x01\x04\x04\x04\x04", // 𥤛
+ 0x2591c: "\x03\x01\x02\x03\x04\x01\x02\x01\x02\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 𥤜
+ 0x2591d: "\x03\x01\x02\x03\x04\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 𥤝
+ 0x2591e: "\x03\x01\x02\x03\x04\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x03\x04\x01", // 𥤞
+ 0x2591f: "\x03\x01\x02\x03\x04\x01\x02\x05\x01\x02\x05\x03\x01\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x02\x05\x02\x02\x01", // 𥤟
+ 0x25920: "\x03\x01\x02\x03\x04\x05\x01\x01\x05\x01\x01\x04\x04\x04\x04\x01\x02\x02\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𥤠
+ 0x25921: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x01\x02\x03\x04", // 𥤡
+ 0x25922: "\x03\x01\x05\x03\x05", // 𥤢
+ 0x25923: "\x04\x04\x05\x03\x05\x05\x02", // 𥤣
+ 0x25924: "\x04\x04\x05\x03\x05\x03\x05", // 𥤤
+ 0x25925: "\x04\x04\x05\x03\x04\x01\x05", // 𥤥
+ 0x25926: "\x04\x04\x05\x03\x04\x05\x04", // 𥤦
+ 0x25927: "\x04\x04\x05\x03\x05\x01\x02\x01", // 𥤧
+ 0x25928: "\x04\x04\x05\x03\x05\x05\x03\x01", // 𥤨
+ 0x25929: "\x04\x04\x05\x03\x05\x04\x01\x05", // 𥤩
+ 0x2592a: "\x04\x04\x05\x03\x05\x05\x02\x01", // 𥤪
+ 0x2592b: "\x04\x04\x05\x03\x05\x01\x05\x01", // 𥤫
+ 0x2592c: "\x04\x02\x05\x03\x04\x01\x03\x02", // 𥤬
+ 0x2592d: "\x04\x04\x05\x03\x05\x03\x01\x05", // 𥤭
+ 0x2592e: "\x04\x04\x05\x03\x05\x01\x03\x04", // 𥤮
+ 0x2592f: "\x04\x04\x05\x03\x04\x03\x05\x04", // 𥤯
+ 0x25930: "\x04\x04\x05\x03\x05\x01\x03\x02", // 𥤰
+ 0x25931: "\x04\x04\x05\x03\x05\x01\x01\x02", // 𥤱
+ 0x25932: "\x04\x04\x05\x03\x04\x01\x02\x04", // 𥤲
+ 0x25933: "\x04\x04\x05\x03\x04\x05\x03\x04", // 𥤳
+ 0x25934: "\x04\x04\x05\x03\x05\x01\x01\x03\x02", // 𥤴
+ 0x25935: "\x04\x04\x05\x03\x05\x01\x02\x05\x05", // 𥤵
+ 0x25936: "\x04\x04\x05\x03\x05\x03\x01\x01\x05", // 𥤶
+ 0x25937: "\x04\x04\x05\x03\x05\x04\x05\x03\x05", // 𥤷
+ 0x25938: "\x04\x04\x05\x03\x05\x01\x01\x03\x05", // 𥤸
+ 0x25939: "\x04\x04\x05\x03\x05\x03\x04\x03\x04", // 𥤹
+ 0x2593a: "\x04\x04\x05\x03\x05\x03\x01\x01\x02", // 𥤺
+ 0x2593b: "\x04\x04\x05\x03\x05\x01\x05\x01\x05", // 𥤻
+ 0x2593c: "\x04\x04\x05\x03\x05\x02\x05\x03\x04", // 𥤼
+ 0x2593d: "\x04\x04\x05\x03\x05\x03\x05\x03\x03", // 𥤽
+ 0x2593e: "\x05\x02\x01\x05\x04\x04\x05\x03\x05", // 𥤾
+ 0x2593f: "\x04\x04\x05\x03\x05\x03\x05\x01\x02", // 𥤿
+ 0x25940: "\x04\x04\x05\x03\x04\x04\x01\x03\x04", // 𥥀
+ 0x25941: "\x04\x04\x05\x03\x05\x01\x01\x03\x04", // 𥥁
+ 0x25942: "\x04\x04\x05\x03\x05\x01\x01\x03\x04", // 𥥂
+ 0x25943: "\x04\x04\x05\x03\x05\x03\x05\x01\x01", // 𥥃
+ 0x25944: "\x04\x04\x05\x03\x04\x03\x04\x05\x03", // 𥥄
+ 0x25945: "\x04\x04\x05\x03\x04\x05\x02\x01\x05", // 𥥅
+ 0x25946: "\x04\x04\x05\x03\x04\x05\x05\x04\x05", // 𥥆
+ 0x25947: "\x04\x04\x05\x03\x05\x01\x02\x03\x05\x04", // 𥥇
+ 0x25948: "\x04\x04\x05\x03\x05\x05\x01\x05\x05\x04", // 𥥈
+ 0x25949: "\x04\x04\x05\x03\x05\x02\x05\x01\x02\x01", // 𥥉
+ 0x2594a: "\x04\x04\x05\x03\x05\x02\x05\x02\x02\x01", // 𥥊
+ 0x2594b: "\x04\x04\x05\x03\x05\x03\x04\x01\x05\x04", // 𥥋
+ 0x2594c: "\x04\x04\x05\x03\x05\x03\x01\x01\x03\x04", // 𥥌
+ 0x2594d: "\x04\x04\x05\x03\x05\x01\x03\x04\x04\x03", // 𥥍
+ 0x2594e: "\x04\x04\x05\x03\x05\x02\x05\x01\x02\x02", // 𥥎
+ 0x2594f: "\x04\x04\x05\x03\x05\x05\x02\x02\x05\x02", // 𥥏
+ 0x25950: "\x04\x04\x05\x03\x05\x02\x05\x01\x01\x01", // 𥥐
+ 0x25951: "\x04\x04\x05\x03\x05\x01\x02\x03\x04\x01", // 𥥑
+ 0x25952: "\x04\x04\x05\x03\x05\x01\x03\x05\x03\x03", // 𥥒
+ 0x25953: "\x04\x04\x05\x03\x05\x01\x01\x02\x03\x04", // 𥥓
+ 0x25954: "\x04\x04\x05\x03\x05\x01\x03\x02\x05\x01", // 𥥔
+ 0x25955: "\x04\x04\x05\x03\x04\x05\x01\x03\x03\x05", // 𥥕
+ 0x25956: "\x04\x04\x05\x03\x05\x01\x02\x02\x05\x01", // 𥥖
+ 0x25957: "\x04\x04\x05\x03\x05\x02\x05\x01\x01\x05", // 𥥗
+ 0x25958: "\x04\x04\x05\x03\x05\x01\x01\x02\x03\x04", // 𥥘
+ 0x25959: "\x04\x04\x05\x03\x05\x01\x02\x01\x05\x03", // 𥥙
+ 0x2595a: "\x04\x04\x05\x03\x05\x02\x05\x01\x02\x02", // 𥥚
+ 0x2595b: "\x04\x04\x05\x03\x05\x01\x03\x03\x04\x04", // 𥥛
+ 0x2595c: "\x04\x04\x05\x03\x04\x03\x01\x03\x05\x04", // 𥥜
+ 0x2595d: "\x04\x04\x05\x03\x04\x03\x05\x01\x01\x02", // 𥥝
+ 0x2595e: "\x04\x04\x05\x03\x05\x05\x02\x01\x05\x04", // 𥥞
+ 0x2595f: "\x04\x04\x05\x03\x04\x01\x05\x05\x04", // 𥥟
+ 0x25960: "\x04\x04\x05\x03\x05\x03\x05\x01\x03\x05\x05", // 𥥠
+ 0x25961: "\x04\x04\x05\x03\x05\x01\x02\x02\x01\x03\x04", // 𥥡
+ 0x25962: "\x04\x04\x05\x03\x05\x01\x02\x01\x02\x01\x04", // 𥥢
+ 0x25963: "\x04\x04\x05\x03\x05\x01\x02\x05\x01\x01\x01", // 𥥣
+ 0x25964: "\x04\x04\x05\x03\x05\x03\x05\x04\x01\x05\x02", // 𥥤
+ 0x25965: "\x04\x04\x05\x03\x05\x01\x02\x05\x01\x03\x04", // 𥥥
+ 0x25966: "\x04\x04\x05\x03\x05\x05\x04\x04\x03\x03\x04", // 𥥦
+ 0x25967: "\x04\x04\x05\x03\x05\x01\x02\x01\x03\x01\x05", // 𥥧
+ 0x25968: "\x04\x04\x05\x03\x05\x05\x01\x01\x05\x01\x01", // 𥥨
+ 0x25969: "\x04\x04\x05\x03\x05\x03\x02\x05\x02\x05\x01", // 𥥩
+ 0x2596a: "\x04\x04\x05\x03\x05\x04\x03\x01\x02\x03\x04", // 𥥪
+ 0x2596b: "\x04\x04\x05\x03\x05\x01\x02\x05\x01\x01\x02", // 𥥫
+ 0x2596c: "\x04\x04\x05\x03\x05\x05\x03\x04\x05\x04\x04", // 𥥬
+ 0x2596d: "\x04\x04\x05\x03\x05\x01\x02\x01\x02\x05\x01", // 𥥭
+ 0x2596e: "\x04\x04\x05\x03\x05\x05\x05\x04\x02\x03\x04", // 𥥮
+ 0x2596f: "\x04\x04\x05\x03\x04\x01\x02\x02\x01\x01\x01", // 𥥯
+ 0x25970: "\x04\x04\x05\x03\x04\x01\x03\x04\x05\x03\x04", // 𥥰
+ 0x25971: "\x04\x04\x05\x03\x04\x01\x03\x05\x04\x03\x05", // 𥥱
+ 0x25972: "\x04\x04\x05\x03\x04\x03\x01\x02\x01\x02\x01", // 𥥲
+ 0x25973: "\x04\x04\x05\x03\x04\x03\x03\x05\x04\x01\x04", // 𥥳
+ 0x25974: "\x04\x04\x05\x03\x04\x04\x01\x03\x05\x03\x04", // 𥥴
+ 0x25975: "\x04\x04\x05\x03\x04\x04\x04\x01\x01\x02\x01", // 𥥵
+ 0x25976: "\x04\x04\x05\x03\x05\x03\x01\x02\x01\x05\x04", // 𥥶
+ 0x25977: "\x04\x04\x05\x03\x05\x01\x02\x05\x01\x04\x03\x01", // 𥥷
+ 0x25978: "\x04\x04\x05\x03\x05\x03\x04\x01\x01\x02\x03\x04", // 𥥸
+ 0x25979: "\x04\x04\x05\x03\x05\x01\x03\x01\x05\x02\x05\x01", // 𥥹
+ 0x2597a: "\x04\x04\x05\x03\x05\x05\x01\x05\x01\x02\x05\x01", // 𥥺
+ 0x2597b: "\x04\x04\x05\x03\x05\x01\x05\x05\x05\x01\x02\x01", // 𥥻
+ 0x2597c: "\x04\x04\x05\x03\x05\x02\x05\x02\x01\x01\x02\x02", // 𥥼
+ 0x2597d: "\x04\x04\x05\x03\x05\x01\x02\x04\x01\x03\x04\x04", // 𥥽
+ 0x2597e: "\x04\x04\x05\x03\x05\x02\x05\x01\x03\x05\x04\x01", // 𥥾
+ 0x2597f: "\x04\x04\x05\x03\x05\x03\x05\x04\x04\x03\x03\x04", // 𥥿
+ 0x25980: "\x04\x04\x05\x03\x05\x02\x05\x01\x01\x01\x03\x05", // 𥦀
+ 0x25981: "\x04\x04\x05\x03\x05\x05\x04\x02\x05\x01\x01\x02", // 𥦁
+ 0x25982: "\x04\x04\x05\x03\x05\x02\x05\x01\x05\x03\x02\x02", // 𥦂
+ 0x25983: "\x04\x04\x05\x03\x05\x05\x01\x03\x01\x02\x03\x04", // 𥦃
+ 0x25984: "\x04\x04\x05\x03\x05\x05\x01\x05\x03\x01\x03\x04", // 𥦄
+ 0x25985: "\x04\x04\x05\x03\x05\x05\x02\x01\x01\x05\x02", // 𥦅
+ 0x25986: "\x04\x04\x05\x03\x05\x01\x02\x01\x03\x05\x05\x04", // 𥦆
+ 0x25987: "\x04\x04\x05\x03\x05\x03\x05\x02\x02\x05\x01\x01", // 𥦇
+ 0x25988: "\x04\x04\x05\x03\x05\x01\x02\x05\x01\x02\x03\x04", // 𥦈
+ 0x25989: "\x04\x04\x05\x03\x04\x03\x01\x02\x03\x04\x02\x02", // 𥦉
+ 0x2598a: "\x04\x04\x05\x03\x05\x03\x04\x03\x04\x01\x02\x01", // 𥦊
+ 0x2598b: "\x04\x04\x05\x03\x05\x04\x04\x02\x03\x05\x05\x03", // 𥦋
+ 0x2598c: "\x04\x04\x05\x03\x05\x01\x01\x02\x01\x01\x03\x02", // 𥦌
+ 0x2598d: "\x04\x04\x05\x03\x05\x02\x05\x01\x01\x01\x03\x02", // 𥦍
+ 0x2598e: "\x04\x04\x05\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 𥦎
+ 0x2598f: "\x04\x04\x05\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 𥦏
+ 0x25990: "\x04\x04\x05\x03\x05\x01\x02\x02\x02\x05\x01\x01", // 𥦐
+ 0x25991: "\x04\x04\x05\x03\x05\x01\x02\x03\x04\x03\x04\x01", // 𥦑
+ 0x25992: "\x04\x04\x05\x03\x04\x03\x02\x05\x01\x01\x03\x05", // 𥦒
+ 0x25993: "\x04\x04\x05\x03\x05\x03\x04\x03\x01\x02\x03\x04", // 𥦓
+ 0x25994: "\x04\x04\x05\x03\x04\x01\x02\x01\x03\x05\x03\x04", // 𥦔
+ 0x25995: "\x04\x04\x05\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 𥦕
+ 0x25996: "\x04\x04\x05\x03\x04\x02\x05\x01\x04\x04\x01\x02", // 𥦖
+ 0x25997: "\x04\x04\x05\x03\x04\x02\x05\x01\x04\x05\x04\x04", // 𥦗
+ 0x25998: "\x04\x04\x05\x03\x04\x03\x04\x04\x03\x05\x02\x01", // 𥦘
+ 0x25999: "\x04\x04\x05\x03\x04\x03\x05\x02\x05\x01\x03\x05", // 𥦙
+ 0x2599a: "\x02\x01\x01\x03\x05\x04\x04\x05\x03\x04\x03\x05", // 𥦚
+ 0x2599b: "\x04\x04\x05\x03\x05\x01\x02\x01\x01\x02\x01\x02\x04", // 𥦛
+ 0x2599c: "\x04\x04\x05\x03\x05\x03\x05\x01\x01\x03\x05\x01\x01", // 𥦜
+ 0x2599d: "\x04\x04\x05\x03\x05\x01\x02\x03\x04\x01\x02\x03\x04", // 𥦝
+ 0x2599e: "\x04\x04\x05\x03\x05\x01\x02\x05\x01\x02\x05\x05\x04", // 𥦞
+ 0x2599f: "\x04\x04\x05\x03\x05\x02\x05\x01\x02\x02\x01\x03\x04", // 𥦟
+ 0x259a0: "\x04\x04\x05\x03\x05\x04\x04\x01\x04\x01\x01\x02\x01", // 𥦠
+ 0x259a1: "\x04\x04\x05\x03\x05\x01\x02\x02\x01\x01\x01\x05\x04", // 𥦡
+ 0x259a2: "\x04\x04\x05\x03\x05\x01\x05\x02\x03\x05\x02", // 𥦢
+ 0x259a3: "\x04\x04\x05\x03\x04\x03\x02\x01\x05\x01\x01\x05", // 𥦣
+ 0x259a4: "\x04\x04\x05\x03\x05\x01\x02\x01\x01\x01\x02\x03\x04", // 𥦤
+ 0x259a5: "\x04\x04\x05\x03\x05\x03\x01\x02\x01\x03\x05\x03\x04", // 𥦥
+ 0x259a6: "\x04\x04\x05\x03\x05\x02\x05\x01\x01\x05\x03\x05\x04", // 𥦦
+ 0x259a7: "\x04\x04\x05\x03\x05\x03\x03\x05\x04\x01\x04\x02\x02", // 𥦧
+ 0x259a8: "\x04\x04\x05\x03\x05\x03\x04\x01\x01\x02\x04\x03\x01", // 𥦨
+ 0x259a9: "\x04\x04\x05\x03\x05\x01\x03\x04\x02\x05\x01\x01\x05", // 𥦩
+ 0x259aa: "\x04\x04\x05\x03\x05\x01\x05\x01\x02\x05\x05", // 𥦪
+ 0x259ab: "\x04\x04\x05\x03\x04\x02\x05\x01\x03\x03\x05\x04\x04", // 𥦫
+ 0x259ac: "\x04\x04\x05\x03\x05\x03\x04\x02\x05\x03\x05\x04\x01", // 𥦬
+ 0x259ad: "\x04\x04\x05\x03\x05\x01\x02\x01\x04\x03\x01\x01\x02", // 𥦭
+ 0x259ae: "\x04\x04\x05\x03\x05\x02\x05\x01\x02\x05\x02\x05\x01", // 𥦮
+ 0x259af: "\x04\x04\x05\x03\x05\x03\x01\x01\x01\x02\x01\x01\x01", // 𥦯
+ 0x259b0: "\x04\x04\x05\x03\x05\x03\x05\x04\x01\x02\x01\x02\x01", // 𥦰
+ 0x259b1: "\x04\x04\x05\x03\x05\x03\x05\x02\x05\x01\x03\x05\x04", // 𥦱
+ 0x259b2: "\x04\x04\x05\x03\x05\x01\x01\x03\x05\x03\x01\x03\x04", // 𥦲
+ 0x259b3: "\x04\x04\x05\x03\x04\x01\x02\x01\x05\x05\x01\x02\x01", // 𥦳
+ 0x259b4: "\x04\x04\x05\x03\x04\x02\x02\x05\x01\x01\x01\x03\x04", // 𥦴
+ 0x259b5: "\x04\x04\x05\x03\x05\x03\x05\x01\x01\x03\x01\x03\x04", // 𥦵
+ 0x259b6: "\x03\x05\x03\x02\x01\x05\x01\x01\x04\x04\x05\x03\x05", // 𥦶
+ 0x259b7: "\x04\x04\x05\x03\x04\x04\x04\x01\x05\x01\x05\x05\x04", // 𥦷
+ 0x259b8: "\x04\x04\x05\x03\x05\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 𥦸
+ 0x259b9: "\x04\x04\x05\x03\x05\x03\x05\x04\x03\x05\x01\x01\x02\x02", // 𥦹
+ 0x259ba: "\x04\x04\x05\x03\x05\x03\x05\x02\x05\x03\x04\x01\x03\x04", // 𥦺
+ 0x259bb: "\x04\x04\x05\x03\x05\x02\x05\x03\x04\x03\x05\x02\x05\x02", // 𥦻
+ 0x259bc: "\x04\x04\x05\x03\x05\x01\x03\x02\x05\x01\x01\x02\x03\x04", // 𥦼
+ 0x259bd: "\x04\x04\x05\x03\x05\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 𥦽
+ 0x259be: "\x04\x04\x05\x03\x05\x05\x05\x04\x01\x04\x04\x05\x04\x04", // 𥦾
+ 0x259bf: "\x04\x04\x05\x03\x04\x04\x04\x02\x01\x02\x01\x02\x05\x01", // 𥦿
+ 0x259c0: "\x04\x04\x05\x03\x04\x02\x05\x02\x01\x01\x02\x01\x01\x02", // 𥧀
+ 0x259c1: "\x04\x04\x05\x03\x04\x04\x03\x02\x05\x01\x04\x05\x04\x04", // 𥧁
+ 0x259c2: "\x04\x04\x05\x03\x04\x01\x02\x01\x02\x05\x03\x04\x02\x02", // 𥧂
+ 0x259c3: "\x04\x04\x05\x03\x04\x05\x02\x01\x03\x01\x02\x05\x03\x04", // 𥧃
+ 0x259c4: "\x04\x04\x05\x03\x05\x02\x05\x01\x01\x02\x05\x01\x01\x05", // 𥧄
+ 0x259c5: "\x04\x04\x05\x03\x05\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 𥧅
+ 0x259c6: "\x04\x04\x05\x03\x05\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𥧆
+ 0x259c7: "\x04\x04\x05\x03\x05\x03\x01\x02\x03\x04\x04\x04\x01\x02", // 𥧇
+ 0x259c8: "\x04\x04\x05\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x03", // 𥧈
+ 0x259c9: "\x04\x04\x05\x03\x04\x03\x05\x04\x05\x05\x04\x05\x04\x04", // 𥧉
+ 0x259ca: "\x04\x04\x05\x03\x05\x05\x01\x03\x01\x05\x04\x01\x02\x01", // 𥧊
+ 0x259cb: "\x04\x04\x05\x03\x04\x05\x01\x03\x04\x03\x01\x01\x03\x02", // 𥧋
+ 0x259cc: "\x04\x04\x05\x03\x04\x05\x02\x01\x03\x01\x01\x02\x03\x04", // 𥧌
+ 0x259cd: "\x04\x04\x05\x03\x04\x05\x02\x01\x03\x02\x05\x01\x01\x01", // 𥧍
+ 0x259ce: "\x04\x04\x05\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x01", // 𥧎
+ 0x259cf: "\x04\x04\x05\x03\x05\x01\x02\x01\x03\x02\x05\x01\x01", // 𥧏
+ 0x259d0: "\x02\x01\x01\x01\x05\x04\x04\x05\x03\x05\x02\x05\x01\x03\x05", // 𥧐
+ 0x259d1: "\x04\x04\x05\x03\x04\x03\x05\x02\x05\x01\x01\x01\x05\x03\x04", // 𥧑
+ 0x259d2: "\x04\x04\x05\x03\x05\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01", // 𥧒
+ 0x259d3: "\x04\x04\x05\x03\x05\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𥧓
+ 0x259d4: "\x04\x04\x05\x03\x05\x03\x01\x01\x05\x04\x03\x01\x02\x03\x04", // 𥧔
+ 0x259d5: "\x04\x04\x05\x03\x05\x04\x04\x01\x01\x05\x04\x03\x02\x05", // 𥧕
+ 0x259d6: "\x04\x04\x05\x03\x05\x03\x05\x01\x02\x02\x01\x01\x01\x05\x04", // 𥧖
+ 0x259d7: "\x04\x04\x05\x03\x05\x03\x05\x01\x02\x01\x04\x03\x01\x01\x02", // 𥧗
+ 0x259d8: "\x04\x04\x05\x03\x05\x01\x03\x02\x05\x02\x05\x01\x01\x02\x01", // 𥧘
+ 0x259d9: "\x04\x04\x05\x03\x05\x01\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 𥧙
+ 0x259da: "\x04\x04\x05\x03\x05\x05\x03\x01\x03\x04\x03\x04\x01\x02\x01", // 𥧚
+ 0x259db: "\x04\x04\x05\x03\x05\x01\x03\x05\x04\x01\x05\x04\x05\x04\x04", // 𥧛
+ 0x259dc: "\x04\x04\x05\x03\x05\x01\x03\x02\x05\x01\x01\x01\x03\x05\x04", // 𥧜
+ 0x259dd: "\x04\x04\x05\x03\x05\x04\x04\x02\x01\x02\x05\x01\x02\x05\x01", // 𥧝
+ 0x259de: "\x04\x04\x05\x03\x05\x02\x01\x02\x01\x01\x02\x03\x04\x05\x04", // 𥧞
+ 0x259df: "\x04\x04\x05\x03\x05\x01\x02\x01\x01\x02\x01\x04\x05\x04\x04", // 𥧟
+ 0x259e0: "\x04\x04\x05\x03\x05\x03\x05\x04\x01\x05\x02\x05\x01\x02\x01", // 𥧠
+ 0x259e1: "\x04\x04\x05\x03\x04\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𥧡
+ 0x259e2: "\x04\x04\x05\x03\x05\x01\x02\x02\x01\x01\x01\x03\x01\x01\x05", // 𥧢
+ 0x259e3: "\x04\x04\x05\x03\x04\x01\x02\x02\x03\x04\x01\x02\x03\x04", // 𥧣
+ 0x259e4: "\x04\x04\x05\x03\x04\x02\x05\x01\x01\x02\x03\x04\x01\x03\x04", // 𥧤
+ 0x259e5: "\x04\x04\x05\x03\x05\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 𥧥
+ 0x259e6: "\x04\x04\x05\x03\x04\x04\x04\x02\x03\x01\x02\x01\x02\x05\x01", // 𥧦
+ 0x259e7: "\x04\x04\x05\x03\x04\x04\x05\x04\x03\x04\x02\x05\x02\x02\x01", // 𥧧
+ 0x259e8: "\x04\x04\x05\x03\x04\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𥧨
+ 0x259e9: "\x04\x04\x05\x03\x04\x05\x05\x04\x04\x04\x04\x02\x05\x03\x04", // 𥧩
+ 0x259ea: "\x01\x01\x02\x01\x01\x03\x02\x04\x04\x05\x03\x04\x01\x02\x01", // 𥧪
+ 0x259eb: "\x04\x04\x05\x03\x04\x04\x05\x01\x01\x05\x04\x05\x02", // 𥧫
+ 0x259ec: "\x04\x04\x05\x03\x05\x01\x02\x05\x01\x02\x05\x05\x04\x01\x02\x01", // 𥧬
+ 0x259ed: "\x04\x04\x05\x03\x05\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 𥧭
+ 0x259ee: "\x04\x04\x05\x03\x05\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01", // 𥧮
+ 0x259ef: "\x04\x04\x05\x03\x05\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 𥧯
+ 0x259f0: "\x04\x04\x05\x03\x05\x01\x03\x04\x01\x01\x05\x03\x03\x05\x04\x04", // 𥧰
+ 0x259f1: "\x04\x04\x05\x03\x05\x04\x01\x03\x05\x01\x01\x03\x05\x01\x01\x02", // 𥧱
+ 0x259f2: "\x04\x04\x05\x03\x05\x04\x04\x01\x05\x01\x01\x04\x05\x02\x05\x02", // 𥧲
+ 0x259f3: "\x04\x04\x05\x03\x05\x02\x01\x02\x01\x01\x01\x02\x04\x04\x04\x04", // 𥧳
+ 0x259f4: "\x04\x04\x05\x03\x05\x04\x04\x02\x05\x05\x01\x02\x04\x01\x03\x04", // 𥧴
+ 0x259f5: "\x04\x04\x05\x03\x05\x04\x04\x02\x02\x05\x01\x01\x01\x02\x03\x04", // 𥧵
+ 0x259f6: "\x04\x04\x05\x03\x05\x04\x04\x02\x01\x02\x02\x01\x02\x05\x01\x01", // 𥧶
+ 0x259f7: "\x04\x04\x05\x03\x05\x03\x01\x02\x01\x02\x05\x01\x01\x02\x03\x04", // 𥧷
+ 0x259f8: "\x04\x04\x05\x03\x05\x04\x03\x03\x04\x01\x02\x05\x01\x02\x05\x01", // 𥧸
+ 0x259f9: "\x04\x04\x05\x03\x04\x03\x04\x04\x03\x03\x02\x01\x01\x05\x01\x01", // 𥧹
+ 0x259fa: "\x04\x04\x05\x03\x05\x01\x02\x02\x01\x01\x01\x05\x04\x02\x05\x01", // 𥧺
+ 0x259fb: "\x04\x04\x05\x03\x05\x01\x05\x03\x02\x01\x01\x03\x05\x03\x03\x04", // 𥧻
+ 0x259fc: "\x04\x04\x05\x03\x05\x04\x04\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𥧼
+ 0x259fd: "\x04\x04\x05\x03\x05\x03\x03\x02\x01\x02\x05\x04\x01\x02\x03\x04", // 𥧽
+ 0x259fe: "\x04\x04\x05\x03\x04\x05\x03\x01\x01\x02\x03\x04\x03\x05\x03\x04", // 𥧾
+ 0x259ff: "\x04\x04\x05\x03\x05\x01\x02\x01\x03\x04\x04\x03\x04\x05\x05\x04", // 𥧿
+ 0x25a00: "\x04\x04\x05\x05\x01\x05\x05\x04\x02\x05\x01\x02\x01\x04", // 𥨀
+ 0x25a01: "\x04\x04\x05\x03\x05\x05\x02\x01\x02\x01\x03\x05\x01\x02\x01", // 𥨁
+ 0x25a02: "\x04\x04\x05\x03\x05\x03\x02\x05\x01\x01\x01\x03\x03\x01\x03\x04", // 𥨂
+ 0x25a03: "\x04\x04\x05\x03\x05\x03\x02\x05\x01\x01\x01\x03\x03\x05\x05\x04", // 𥨃
+ 0x25a04: "\x04\x04\x05\x03\x04\x01\x02\x01\x02\x05\x01\x01\x03\x01\x03\x04", // 𥨄
+ 0x25a05: "\x04\x04\x05\x03\x04\x01\x02\x01\x03\x02\x03\x04\x03\x01\x03\x04", // 𥨅
+ 0x25a06: "\x04\x04\x05\x03\x04\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04", // 𥨆
+ 0x25a07: "\x04\x04\x05\x03\x04\x02\x05\x01\x01\x01\x03\x04\x03\x01\x03\x04", // 𥨇
+ 0x25a08: "\x04\x04\x05\x03\x04\x02\x05\x01\x03\x02\x01\x05\x01\x01\x02", // 𥨈
+ 0x25a09: "\x04\x04\x05\x03\x04\x05\x02\x01\x03\x04\x01\x01\x01\x02\x05\x01", // 𥨉
+ 0x25a0a: "\x04\x04\x05\x03\x05\x05\x02\x01\x03\x05\x01\x01\x04\x05\x05\x04", // 𥨊
+ 0x25a0b: "\x04\x04\x05\x03\x04\x01\x05\x02\x03\x01\x01\x02\x01\x01\x03\x02", // 𥨋
+ 0x25a0c: "\x04\x04\x05\x03\x04\x01\x02\x01\x05\x02\x05\x01\x02\x05\x01\x02\x01", // 𥨌
+ 0x25a0d: "\x04\x04\x05\x03\x05\x03\x03\x02\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 𥨍
+ 0x25a0e: "\x04\x04\x05\x03\x05\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 𥨎
+ 0x25a0f: "\x02\x01\x01\x01\x05\x04\x04\x05\x03\x05\x05\x04\x03\x05\x03\x05\x04", // 𥨏
+ 0x25a10: "\x04\x04\x05\x03\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x02\x02", // 𥨐
+ 0x25a11: "\x04\x04\x05\x03\x05\x03\x03\x02\x05\x03\x02\x05\x04\x01\x02\x03\x04", // 𥨑
+ 0x25a12: "\x04\x04\x05\x03\x05\x05\x02\x02\x05\x02\x01\x01\x02\x03\x04\x05\x04", // 𥨒
+ 0x25a13: "\x04\x04\x05\x03\x05\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x04", // 𥨓
+ 0x25a14: "\x04\x04\x05\x03\x05\x01\x02\x01\x03\x01\x05\x01\x02\x01\x03\x01\x05", // 𥨔
+ 0x25a15: "\x04\x04\x05\x03\x05\x04\x04\x02\x02\x05\x01\x01\x03\x01\x01\x02\x01", // 𥨕
+ 0x25a16: "\x04\x04\x05\x03\x05\x03\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𥨖
+ 0x25a17: "\x04\x04\x05\x03\x05\x03\x02\x01\x05\x01\x01\x01\x01\x01\x03\x02", // 𥨗
+ 0x25a18: "\x04\x04\x05\x03\x05\x03\x01\x02\x01\x02\x05\x01\x01\x01\x02\x03\x04", // 𥨘
+ 0x25a19: "\x04\x04\x05\x03\x04\x04\x04\x01\x02\x05\x05\x02\x05\x02\x05\x01", // 𥨙
+ 0x25a1a: "\x04\x04\x05\x03\x05\x03\x02\x05\x01\x01\x01\x03\x03\x05\x03\x05\x02", // 𥨚
+ 0x25a1b: "\x04\x04\x05\x03\x04\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 𥨛
+ 0x25a1c: "\x01\x02\x01\x05\x04\x01\x03\x02\x04\x04\x05\x03\x04\x01\x03\x04\x04", // 𥨜
+ 0x25a1d: "\x04\x04\x05\x03\x04\x03\x03\x02\x04\x04\x05\x04\x03\x03\x04\x05\x04", // 𥨝
+ 0x25a1e: "\x04\x04\x05\x03\x04\x05\x04\x01\x05\x04\x01\x03\x04\x02\x04\x04\x04", // 𥨞
+ 0x25a1f: "\x04\x04\x05\x03\x04\x05\x05\x04\x04\x04\x04\x03\x05\x05\x02\x01\x05", // 𥨟
+ 0x25a20: "\x04\x04\x05\x03\x05\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x02\x02\x01", // 𥨠
+ 0x25a21: "\x04\x04\x05\x03\x05\x03\x03\x02\x04\x04\x05\x03\x04\x03\x04\x03\x03\x03", // 𥨡
+ 0x25a22: "\x04\x04\x05\x03\x05\x02\x05\x02\x04\x04\x05\x01\x01\x02\x03\x04\x05\x04", // 𥨢
+ 0x25a23: "\x04\x04\x05\x03\x05\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x02\x05", // 𥨣
+ 0x25a24: "\x04\x04\x05\x03\x04\x01\x03\x04\x04\x03\x02\x05\x01\x01\x04\x03\x03\x04", // 𥨤
+ 0x25a25: "\x04\x04\x05\x03\x04\x03\x02\x01\x05\x01\x01\x03\x05\x02\x04\x04\x04\x04", // 𥨥
+ 0x25a26: "\x04\x04\x05\x03\x04\x03\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𥨦
+ 0x25a27: "\x04\x04\x05\x03\x04\x04\x03\x01\x02\x03\x04\x05\x03\x01\x03\x01\x03\x04", // 𥨧
+ 0x25a28: "\x04\x04\x05\x03\x04\x01\x02\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𥨨
+ 0x25a29: "\x04\x04\x05\x03\x04\x03\x02\x05\x04\x03\x01\x02\x03\x04\x01\x03\x04", // 𥨩
+ 0x25a2a: "\x04\x04\x05\x03\x05\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x05\x02\x01\x05", // 𥨪
+ 0x25a2b: "\x04\x04\x05\x03\x05\x03\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𥨫
+ 0x25a2c: "\x04\x04\x05\x03\x05\x02\x05\x01\x01\x01\x01\x02\x02\x01\x01\x01\x05\x01\x01", // 𥨬
+ 0x25a2d: "\x04\x04\x05\x03\x05\x04\x03\x01\x01\x01\x02\x04\x05\x04\x04\x04\x05\x04\x04", // 𥨭
+ 0x25a2e: "\x04\x04\x05\x03\x05\x01\x02\x01\x03\x02\x01\x01\x01\x02\x01\x03\x02\x01\x01", // 𥨮
+ 0x25a2f: "\x04\x04\x05\x03\x05\x03\x05\x03\x01\x01\x03\x04\x05\x04\x05\x02\x01\x03\x04", // 𥨯
+ 0x25a30: "\x04\x04\x05\x03\x05\x04\x04\x02\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 𥨰
+ 0x25a31: "\x04\x04\x05\x03\x05\x03\x01\x01\x02\x03\x04\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𥨱
+ 0x25a32: "\x04\x04\x05\x03\x05\x05\x02\x01\x03\x02\x05\x02\x02\x01\x03\x05\x05\x03\x01", // 𥨲
+ 0x25a33: "\x04\x04\x05\x03\x05\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x02\x05\x01\x01\x02", // 𥨳
+ 0x25a34: "\x04\x04\x05\x03\x05\x01\x02\x01\x04\x03\x01\x01\x02\x01\x03\x04\x04\x03\x03\x04", // 𥨴
+ 0x25a35: "\x04\x04\x05\x03\x05\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x02\x02\x05\x02\x05\x01", // 𥨵
+ 0x25a36: "\x04\x04\x05\x03\x05\x03\x05\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x03\x04", // 𥨶
+ 0x25a37: "\x04\x04\x05\x03\x05\x05\x02\x01\x03\x02\x01\x02\x05\x03\x04\x02\x05\x02\x05\x01", // 𥨷
+ 0x25a38: "\x04\x04\x05\x03\x05\x03\x01\x01\x02\x03\x04\x02\x05\x01\x02\x02\x05\x02\x05\x01", // 𥨸
+ 0x25a39: "\x04\x04\x05\x03\x04\x03\x01\x02\x03\x04\x03\x05\x03\x03\x04\x02\x04\x01\x03\x04", // 𥨹
+ 0x25a3a: "\x04\x04\x05\x03\x04\x05\x02\x02\x05\x02\x04\x03\x01\x02\x03\x04\x03\x01\x03\x04", // 𥨺
+ 0x25a3b: "\x04\x04\x05\x03\x05\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 𥨻
+ 0x25a3c: "\x04\x04\x05\x03\x05\x03\x01\x04\x03\x01\x04\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05", // 𥨼
+ 0x25a3d: "\x04\x04\x05\x03\x05\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x04\x04\x04\x04\x04", // 𥨽
+ 0x25a3e: "\x04\x04\x05\x03\x04\x04\x01\x04\x03\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𥨾
+ 0x25a3f: "\x04\x04\x05\x03\x05\x04\x04\x01\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x03\x04", // 𥨿
+ 0x25a40: "\x04\x04\x05\x03\x05\x01\x02\x05\x01\x02\x04\x05\x01\x03\x02\x05\x01\x01\x02\x03\x04", // 𥩀
+ 0x25a41: "\x04\x04\x05\x03\x05\x03\x01\x04\x03\x01\x04\x01\x02\x01\x04\x03\x01\x01\x02\x03\x04", // 𥩁
+ 0x25a42: "\x04\x04\x05\x03\x05\x01\x02\x05\x02\x02\x01\x04\x03\x01\x02\x03\x04\x03\x01\x03\x04", // 𥩂
+ 0x25a43: "\x04\x04\x05\x03\x05\x01\x02\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 𥩃
+ 0x25a44: "\x04\x04\x05\x03\x04\x01\x02\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x01\x02\x04", // 𥩄
+ 0x25a45: "\x04\x04\x05\x03\x04\x03\x01\x04\x03\x01\x04\x03\x05\x01\x02\x01\x04\x03\x01\x01\x02", // 𥩅
+ 0x25a46: "\x04\x04\x05\x03\x04\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x01\x03\x04", // 𥩆
+ 0x25a47: "\x04\x04\x05\x03\x04\x04\x04\x02\x01\x03\x01\x02\x05\x01\x05\x03\x04\x04\x05\x04\x04", // 𥩇
+ 0x25a48: "\x04\x04\x05\x03\x05\x03\x04\x03\x01\x02\x03\x04\x02\x05\x05\x02\x05\x02\x05\x01", // 𥩈
+ 0x25a49: "\x04\x04\x05\x03\x04\x01\x05\x02\x03\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x01", // 𥩉
+ 0x25a4a: "\x04\x04\x05\x03\x05\x01\x02\x01\x03\x01\x05\x01\x02\x01\x03\x01\x05\x01\x02\x01\x03\x01\x05", // 𥩊
+ 0x25a4b: "\x04\x04\x05\x03\x05\x01\x02\x01\x03\x05\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𥩋
+ 0x25a4c: "\x04\x04\x05\x03\x05\x01\x02\x01\x04\x04\x05\x03\x05\x01\x02\x01\x04\x04\x05\x03\x05\x01\x02\x01", // 𥩌
+ 0x25a4d: "\x04\x04\x05\x03\x04\x01\x05\x02\x03\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01", // 𥩍
+ 0x25a4e: "\x04\x04\x05\x03\x05\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x02\x05\x01\x01\x03\x01\x02", // 𥩎
+ 0x25a4f: "\x04\x04\x05\x03\x05\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𥩏
+ 0x25a50: "\x04\x04\x05\x03\x05\x01\x02\x01\x03\x05\x02\x05\x03\x05\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𥩐
+ 0x25a51: "\x04\x04\x05\x03\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x02\x05\x01\x01\x01\x02", // 𥩑
+ 0x25a52: "\x04\x04\x05\x03\x05\x05\x02\x01\x03\x01\x02\x05\x02\x02\x01\x04\x05\x04\x03\x03\x04\x04\x03\x03\x04", // 𥩒
+ 0x25a53: "\x04\x04\x05\x03\x05\x01\x02\x02\x01\x04\x03\x01\x02\x03\x04\x02\x01\x02\x05\x03\x04\x02\x05\x02\x05\x01", // 𥩓
+ 0x25a54: "\x04\x04\x05\x03\x05\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x03\x04\x01", // 𥩔
+ 0x25a55: "\x04\x01\x04\x03\x01\x03\x05", // 𥩕
+ 0x25a56: "\x04\x01\x04\x03\x01\x02\x04", // 𥩖
+ 0x25a57: "\x04\x01\x04\x03\x01\x01\x03\x05", // 𥩗
+ 0x25a58: "\x04\x01\x04\x03\x01\x03\x05\x01", // 𥩘
+ 0x25a59: "\x04\x01\x04\x03\x01\x05\x01\x02\x05", // 𥩙
+ 0x25a5a: "\x04\x01\x04\x03\x01\x04\x01\x05\x05", // 𥩚
+ 0x25a5b: "\x04\x01\x04\x03\x01\x04\x01\x03\x04", // 𥩛
+ 0x25a5c: "\x04\x01\x04\x03\x01\x03\x02\x01\x05", // 𥩜
+ 0x25a5d: "\x04\x01\x04\x03\x01\x03\x01\x01\x02", // 𥩝
+ 0x25a5e: "\x04\x01\x04\x03\x01\x03\x05\x05\x04", // 𥩞
+ 0x25a5f: "\x04\x01\x04\x03\x01\x04\x04\x05\x01", // 𥩟
+ 0x25a60: "\x01\x02\x01\x02\x01\x04\x01\x04\x03\x01", // 𥩠
+ 0x25a61: "\x04\x01\x04\x03\x01\x01\x05\x05\x03\x04", // 𥩡
+ 0x25a62: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01", // 𥩢
+ 0x25a63: "\x04\x01\x04\x03\x01\x04\x01\x01\x02\x01", // 𥩣
+ 0x25a64: "\x04\x01\x04\x03\x01\x01\x02\x05\x01\x02", // 𥩤
+ 0x25a65: "\x04\x01\x04\x03\x01\x05\x01\x03\x01\x05", // 𥩥
+ 0x25a66: "\x04\x01\x04\x03\x01\x03\x02\x01\x05\x04", // 𥩦
+ 0x25a67: "\x04\x01\x04\x03\x01\x03\x05\x04\x05\x02", // 𥩧
+ 0x25a68: "\x04\x01\x04\x03\x01\x01\x01\x02\x01\x04", // 𥩨
+ 0x25a69: "\x04\x01\x04\x03\x01\x01\x02\x02\x01\x01", // 𥩩
+ 0x25a6a: "\x04\x01\x04\x03\x01\x01\x02\x02\x05\x01", // 𥩪
+ 0x25a6b: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02", // 𥩫
+ 0x25a6c: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02", // 𥩬
+ 0x25a6d: "\x04\x01\x04\x03\x01\x01\x05\x02\x05\x01", // 𥩭
+ 0x25a6e: "\x04\x01\x04\x03\x01\x03\x05\x02\x05\x01", // 𥩮
+ 0x25a6f: "\x04\x01\x04\x03\x01\x05\x03\x05\x02\x01", // 𥩯
+ 0x25a70: "\x04\x01\x04\x03\x01\x01\x05\x01\x05", // 𥩰
+ 0x25a71: "\x04\x01\x04\x03\x01\x03\x02\x01\x05\x03\x04", // 𥩱
+ 0x25a72: "\x04\x01\x04\x03\x01\x04\x01\x05\x03\x03\x04", // 𥩲
+ 0x25a73: "\x04\x01\x04\x03\x01\x01\x02\x01\x01\x02\x04", // 𥩳
+ 0x25a74: "\x01\x03\x02\x01\x02\x01\x04\x01\x04\x03\x01", // 𥩴
+ 0x25a75: "\x04\x01\x04\x03\x01\x04\x03\x01\x01\x03\x02", // 𥩵
+ 0x25a76: "\x04\x01\x04\x03\x01\x02\x05\x01\x02\x05\x01", // 𥩶
+ 0x25a77: "\x04\x01\x04\x03\x01\x03\x01\x03\x05\x03\x04", // 𥩷
+ 0x25a78: "\x04\x01\x04\x03\x01\x01\x02\x01\x01\x02\x04", // 𥩸
+ 0x25a79: "\x04\x01\x04\x03\x01\x03\x02\x05\x02\x02\x01", // 𥩹
+ 0x25a7a: "\x04\x01\x04\x03\x01\x01\x04\x03\x01\x03\x04", // 𥩺
+ 0x25a7b: "\x04\x01\x04\x03\x01\x03\x04\x01\x02\x05\x01", // 𥩻
+ 0x25a7c: "\x04\x01\x04\x03\x01\x03\x04\x01\x05\x03\x04", // 𥩼
+ 0x25a7d: "\x04\x01\x04\x03\x01\x04\x04\x05\x01\x02\x04", // 𥩽
+ 0x25a7e: "\x04\x01\x04\x03\x01\x01\x02\x04\x05\x05\x02\x01", // 𥩾
+ 0x25a7f: "\x04\x01\x05\x03\x05\x04\x04\x04\x01\x04\x03\x01", // 𥩿
+ 0x25a80: "\x04\x01\x04\x03\x01\x01\x02\x05\x01\x01\x02\x04", // 𥪀
+ 0x25a81: "\x04\x01\x04\x03\x01\x02\x05\x01\x02\x01\x01\x05", // 𥪁
+ 0x25a82: "\x04\x01\x04\x03\x01\x01\x03\x04\x03\x04\x03\x04", // 𥪂
+ 0x25a83: "\x04\x01\x04\x03\x01\x03\x05\x05\x02\x02\x05\x02", // 𥪃
+ 0x25a84: "\x04\x01\x04\x03\x01\x05\x02\x03\x02\x05\x02", // 𥪄
+ 0x25a85: "\x04\x01\x04\x03\x01\x02\x05\x01\x03\x05\x03\x04", // 𥪅
+ 0x25a86: "\x04\x01\x04\x03\x01\x01\x02\x04\x01\x03\x04\x04", // 𥪆
+ 0x25a87: "\x04\x01\x04\x03\x01\x02\x05\x01\x03\x05\x01\x01", // 𥪇
+ 0x25a88: "\x04\x01\x04\x03\x01\x03\x05\x03\x03\x03\x05\x04", // 𥪈
+ 0x25a89: "\x04\x01\x04\x03\x01\x03\x04\x03\x04\x02\x05\x01", // 𥪉
+ 0x25a8a: "\x04\x01\x04\x03\x01\x05\x01\x03\x05\x02\x02\x05\x02", // 𥪊
+ 0x25a8b: "\x04\x01\x04\x03\x01\x05\x05\x01\x02\x04\x01\x03\x04", // 𥪋
+ 0x25a8c: "\x04\x01\x04\x03\x01\x01\x01\x03\x04\x02\x04\x04\x04", // 𥪌
+ 0x25a8d: "\x04\x01\x04\x03\x01\x03\x01\x02\x03\x04\x05\x03\x01", // 𥪍
+ 0x25a8e: "\x04\x01\x04\x03\x01\x02\x05\x01\x02\x01\x04\x01\x02", // 𥪎
+ 0x25a8f: "\x04\x01\x04\x03\x01\x01\x02\x02\x01\x01\x01\x05\x04", // 𥪏
+ 0x25a90: "\x04\x01\x04\x03\x01\x03\x04\x01\x05\x03\x04\x03\x04", // 𥪐
+ 0x25a91: "\x04\x01\x04\x03\x01\x03\x04\x01\x05\x03\x01\x01\x02", // 𥪑
+ 0x25a92: "\x04\x01\x04\x03\x01\x05\x01\x03\x02\x05\x01\x02\x02", // 𥪒
+ 0x25a93: "\x04\x01\x04\x03\x01\x01\x02\x02\x01\x01\x01\x03\x04", // 𥪓
+ 0x25a94: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05\x03\x03", // 𥪔
+ 0x25a95: "\x04\x01\x04\x03\x01\x03\x01\x05\x01\x01\x02\x03\x04", // 𥪕
+ 0x25a96: "\x04\x01\x04\x03\x01\x03\x02\x01\x05\x01\x01\x05", // 𥪖
+ 0x25a97: "\x04\x01\x04\x03\x01\x04\x04\x05\x01\x01\x02\x03\x04", // 𥪗
+ 0x25a98: "\x04\x01\x04\x03\x01\x01\x02\x02\x01\x01\x01\x03\x05\x05", // 𥪘
+ 0x25a99: "\x04\x01\x04\x03\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𥪙
+ 0x25a9a: "\x04\x01\x04\x03\x01\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 𥪚
+ 0x25a9b: "\x01\x02\x01\x02\x01\x03\x01\x03\x04\x04\x01\x04\x03\x01", // 𥪛
+ 0x25a9c: "\x04\x01\x04\x03\x01\x04\x01\x02\x05\x01\x04\x05\x01\x02", // 𥪜
+ 0x25a9d: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05\x02\x05\x01\x02", // 𥪝
+ 0x25a9e: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05\x02\x05\x03\x04", // 𥪞
+ 0x25a9f: "\x04\x01\x04\x03\x01\x04\x01\x04\x03\x04\x05\x02\x05\x02", // 𥪟
+ 0x25aa0: "\x04\x01\x04\x03\x01\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 𥪠
+ 0x25aa1: "\x01\x02\x05\x01\x02\x05\x03\x01\x01\x04\x01\x04\x03\x01", // 𥪡
+ 0x25aa2: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01\x03\x04", // 𥪢
+ 0x25aa3: "\x04\x01\x04\x03\x01\x05\x04\x01\x01\x02\x01\x03\x05\x04", // 𥪣
+ 0x25aa4: "\x04\x01\x04\x03\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 𥪤
+ 0x25aa5: "\x04\x01\x04\x03\x01\x03\x05\x05\x02\x03\x05\x02\x03", // 𥪥
+ 0x25aa6: "\x04\x01\x04\x03\x01\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04", // 𥪦
+ 0x25aa7: "\x04\x01\x04\x03\x01\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 𥪧
+ 0x25aa8: "\x01\x02\x05\x01\x02\x05\x03\x03\x01\x02\x04\x01\x04\x03\x01", // 𥪨
+ 0x25aa9: "\x04\x01\x04\x03\x01\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𥪩
+ 0x25aaa: "\x04\x01\x04\x03\x01\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 𥪪
+ 0x25aab: "\x04\x01\x04\x03\x01\x01\x02\x02\x03\x05\x04\x03\x05\x04", // 𥪫
+ 0x25aac: "\x04\x01\x04\x03\x01\x05\x05\x01\x03\x03\x02\x04\x01\x03\x04", // 𥪬
+ 0x25aad: "\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02\x04\x01\x04\x03\x01", // 𥪭
+ 0x25aae: "\x04\x01\x04\x03\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02", // 𥪮
+ 0x25aaf: "\x04\x01\x04\x03\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 𥪯
+ 0x25ab0: "\x04\x01\x04\x03\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05", // 𥪰
+ 0x25ab1: "\x04\x01\x03\x05\x03\x01\x05\x02\x01\x03\x04\x04\x01\x04\x03\x01", // 𥪱
+ 0x25ab2: "\x04\x01\x04\x03\x01\x01\x01\x01\x02\x05\x03\x05\x05\x04\x02\x03\x04", // 𥪲
+ 0x25ab3: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x02\x01\x01\x01\x05\x04", // 𥪳
+ 0x25ab4: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x03\x05\x04\x01\x05\x02", // 𥪴
+ 0x25ab5: "\x01\x01\x02\x03\x02\x01\x05\x01\x01\x04\x01\x04\x03\x01\x05\x03\x01", // 𥪵
+ 0x25ab6: "\x04\x01\x04\x03\x01\x03\x04\x03\x04\x03\x04\x03\x04\x02\x05\x01\x01", // 𥪶
+ 0x25ab7: "\x05\x01\x05\x04\x03\x01\x02\x03\x04\x05\x01\x05\x04\x01\x04\x03\x01", // 𥪷
+ 0x25ab8: "\x04\x01\x04\x03\x01\x03\x01\x04\x03\x01\x04\x01\x02\x01\x01\x02\x04", // 𥪸
+ 0x25ab9: "\x04\x01\x04\x03\x01\x05\x02\x01\x03\x01\x02\x01\x02\x05\x01\x01", // 𥪹
+ 0x25aba: "\x04\x01\x04\x03\x01\x02\x01\x02\x01\x01\x02\x01\x03\x01\x02\x05\x03\x04", // 𥪺
+ 0x25abb: "\x01\x02\x02\x01\x01\x01\x01\x03\x05\x03\x03\x03\x04\x01\x04\x03\x01", // 𥪻
+ 0x25abc: "\x04\x01\x04\x03\x01\x02\x05\x01\x02\x04\x01\x04\x03\x01\x02\x05\x01\x02", // 𥪼
+ 0x25abd: "\x04\x01\x04\x03\x01\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x01", // 𥪽
+ 0x25abe: "\x04\x01\x04\x03\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𥪾
+ 0x25abf: "\x04\x01\x04\x03\x01\x01\x02\x01\x02\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𥪿
+ 0x25ac0: "\x04\x01\x04\x03\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𥫀
+ 0x25ac1: "\x04\x01\x04\x03\x01\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𥫁
+ 0x25ac2: "\x03\x05\x02\x05\x01\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𥫂
+ 0x25ac3: "\x04\x01\x04\x03\x01\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01\x05\x03\x04", // 𥫃
+ 0x25ac4: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05\x01\x05\x04\x01\x03\x05\x03\x04", // 𥫄
+ 0x25ac5: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01\x02\x05\x01\x01\x04\x01\x04\x03\x01", // 𥫅
+ 0x25ac6: "\x04\x01\x04\x03\x01\x02\x05\x04\x03\x01\x02\x03\x04\x01\x02\x02\x01\x03\x04", // 𥫆
+ 0x25ac7: "\x04\x01\x04\x03\x01\x03\x05\x04\x01\x02\x01\x02\x01\x02\x05\x04\x03\x01\x02", // 𥫇
+ 0x25ac8: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x05\x01\x01\x01\x01\x02\x02\x01\x03\x04", // 𥫈
+ 0x25ac9: "\x04\x01\x04\x03\x01\x04\x01\x02\x05\x01\x02\x05\x01\x01\x02\x01\x02\x01\x01\x01\x02", // 𥫉
+ 0x25aca: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 𥫊
+ 0x25acb: "\x05\x02\x02\x05\x02\x04\x01\x04\x03\x01\x05\x02\x02\x05\x02\x04\x01\x04\x03\x01", // 𥫋
+ 0x25acc: "\x04\x01\x04\x03\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01", // 𥫌
+ 0x25acd: "\x04\x01\x04\x03\x01\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04\x01\x02\x01", // 𥫍
+ 0x25ace: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01\x05\x04\x02\x05\x01\x01\x01\x03\x04", // 𥫎
+ 0x25acf: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05\x01\x03\x02\x05\x01\x01\x01\x03\x05\x04", // 𥫏
+ 0x25ad0: "\x04\x01\x04\x03\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x03\x04\x02\x05\x01", // 𥫐
+ 0x25ad1: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x03\x02\x05\x03\x03\x04\x01\x04\x05\x04\x04", // 𥫑
+ 0x25ad2: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x04\x05\x04\x04", // 𥫒
+ 0x25ad3: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x05\x04\x05\x04\x05\x04\x05\x04\x05\x04\x05\x04", // 𥫓
+ 0x25ad4: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x03\x05\x04\x01\x05\x02\x02\x05\x01\x01\x01\x03\x04", // 𥫔
+ 0x25ad5: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x02\x05\x01\x05\x04\x05\x04\x05\x04\x05\x04", // 𥫕
+ 0x25ad6: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x03\x04\x03\x04", // 𥫖
+ 0x25ad7: "\x03\x01\x04\x03\x01\x04", // 𥫗
+ 0x25ad8: "\x03\x01\x04\x03\x01\x04\x02", // 𥫘
+ 0x25ad9: "\x03\x01\x04\x03\x01\x04\x01\x02", // 𥫙
+ 0x25ada: "\x03\x01\x04\x03\x01\x04\x02\x05", // 𥫚
+ 0x25adb: "\x03\x01\x04\x03\x01\x04\x05\x04", // 𥫛
+ 0x25adc: "\x03\x01\x04\x03\x01\x04\x03\x04", // 𥫜
+ 0x25add: "\x03\x01\x04\x03\x01\x04\x01\x05\x04", // 𥫝
+ 0x25ade: "\x03\x01\x04\x03\x01\x04\x05\x02\x01", // 𥫞
+ 0x25adf: "\x03\x01\x04\x03\x01\x04\x05\x01\x05", // 𥫟
+ 0x25ae0: "\x03\x01\x04\x03\x01\x04\x01\x03\x02", // 𥫠
+ 0x25ae1: "\x03\x01\x04\x03\x01\x04\x01\x01\x05", // 𥫡
+ 0x25ae2: "\x03\x01\x04\x03\x01\x04\x03\x04\x04", // 𥫢
+ 0x25ae3: "\x03\x01\x04\x03\x01\x04\x01\x05\x01", // 𥫣
+ 0x25ae4: "\x03\x01\x04\x03\x01\x04\x05\x01\x05", // 𥫤
+ 0x25ae5: "\x03\x01\x04\x03\x01\x04\x03\x01\x05", // 𥫥
+ 0x25ae6: "\x03\x01\x04\x03\x01\x04\x01\x02\x01", // 𥫦
+ 0x25ae7: "\x03\x01\x02\x03\x01\x05\x03\x01\x02", // 𥫧
+ 0x25ae8: "\x03\x01\x04\x03\x01\x04\x03\x02\x02", // 𥫨
+ 0x25ae9: "\x03\x01\x04\x03\x01\x04\x03\x05\x04", // 𥫩
+ 0x25aea: "\x03\x01\x04\x03\x01\x04\x02\x03\x04", // 𥫪
+ 0x25aeb: "\x03\x01\x04\x03\x01\x04\x01\x02\x04", // 𥫫
+ 0x25aec: "\x03\x01\x04\x03\x01\x04\x03\x01\x05", // 𥫬
+ 0x25aed: "\x03\x01\x04\x03\x01\x04\x05\x03\x01", // 𥫭
+ 0x25aee: "\x03\x01\x02\x03\x01\x02\x03\x01\x02", // 𥫮
+ 0x25aef: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02", // 𥫯
+ 0x25af0: "\x03\x01\x04\x03\x01\x04\x04\x01\x03\x04", // 𥫰
+ 0x25af1: "\x03\x01\x04\x03\x01\x04\x01\x05\x02\x05", // 𥫱
+ 0x25af2: "\x03\x01\x04\x03\x01\x04\x01\x03\x01\x02", // 𥫲
+ 0x25af3: "\x03\x01\x04\x03\x01\x04\x04\x01\x03\x05", // 𥫳
+ 0x25af4: "\x03\x01\x04\x03\x01\x04\x04\x01\x02\x05\x02", // 𥫴
+ 0x25af5: "\x03\x01\x04\x03\x01\x04\x01\x03\x04\x04", // 𥫵
+ 0x25af6: "\x03\x01\x04\x03\x01\x04\x01\x01\x03\x02", // 𥫶
+ 0x25af7: "\x03\x01\x04\x03\x01\x04\x03\x05\x03\x05", // 𥫷
+ 0x25af8: "\x03\x01\x04\x03\x01\x04\x02\x05\x03\x04", // 𥫸
+ 0x25af9: "\x03\x01\x04\x03\x01\x04\x04\x05\x03\x05", // 𥫹
+ 0x25afa: "\x03\x01\x04\x03\x01\x04\x04\x05\x03\x05", // 𥫺
+ 0x25afb: "\x03\x01\x04\x03\x01\x04\x01\x05\x02\x04", // 𥫻
+ 0x25afc: "\x03\x01\x04\x03\x01\x04\x03\x05\x04\x01", // 𥫼
+ 0x25afd: "\x03\x01\x04\x03\x01\x04\x03\x05\x01\x05", // 𥫽
+ 0x25afe: "\x03\x01\x04\x03\x01\x04\x04\x01\x03\x04", // 𥫾
+ 0x25aff: "\x03\x01\x04\x03\x01\x04\x03\x05\x01\x03", // 𥫿
+ 0x25b00: "\x03\x01\x04\x03\x01\x04\x01\x01\x05\x04", // 𥬀
+ 0x25b01: "\x03\x01\x04\x03\x01\x04\x05\x01\x01\x02", // 𥬁
+ 0x25b02: "\x03\x01\x04\x03\x01\x04\x01\x03\x02\x02", // 𥬂
+ 0x25b03: "\x03\x01\x04\x03\x01\x04\x02\x03\x03\x04", // 𥬃
+ 0x25b04: "\x03\x01\x04\x03\x01\x04\x03\x01\x01\x02", // 𥬄
+ 0x25b05: "\x03\x01\x04\x03\x01\x04\x03\x05\x01\x01", // 𥬅
+ 0x25b06: "\x03\x01\x04\x03\x01\x04\x01\x01\x03\x02", // 𥬆
+ 0x25b07: "\x03\x01\x04\x03\x01\x04\x01\x03\x04\x04", // 𥬇
+ 0x25b08: "\x03\x01\x04\x03\x01\x04\x03\x04\x03\x04", // 𥬈
+ 0x25b09: "\x03\x01\x04\x03\x01\x04\x03\x05\x05\x04", // 𥬉
+ 0x25b0a: "\x03\x01\x04\x03\x01\x04\x03\x03\x01\x02", // 𥬊
+ 0x25b0b: "\x03\x01\x04\x03\x01\x04\x03\x04\x01\x05", // 𥬋
+ 0x25b0c: "\x03\x01\x04\x03\x01\x04\x04\x04\x05\x03\x05", // 𥬌
+ 0x25b0d: "\x03\x01\x04\x03\x01\x04\x03\x02\x02\x05\x02", // 𥬍
+ 0x25b0e: "\x03\x01\x04\x03\x01\x04\x01\x01\x02\x03\x04", // 𥬎
+ 0x25b0f: "\x03\x01\x04\x03\x01\x04\x03\x04\x03\x01\x02", // 𥬏
+ 0x25b10: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x02", // 𥬐
+ 0x25b11: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x03\x05", // 𥬑
+ 0x25b12: "\x03\x01\x04\x03\x01\x04\x01\x03\x03\x04\x04", // 𥬒
+ 0x25b13: "\x03\x01\x04\x03\x01\x04\x05\x05\x04\x05\x03", // 𥬓
+ 0x25b14: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x05\x04", // 𥬔
+ 0x25b15: "\x03\x01\x04\x03\x01\x04\x02\x05\x02\x01\x01", // 𥬕
+ 0x25b16: "\x03\x01\x04\x03\x01\x04\x05\x01\x03\x05\x04", // 𥬖
+ 0x25b17: "\x03\x01\x04\x03\x01\x04\x01\x05\x03\x05", // 𥬗
+ 0x25b18: "\x03\x01\x04\x03\x01\x04\x03\x01\x01\x03\x04", // 𥬘
+ 0x25b19: "\x03\x01\x04\x03\x01\x04\x01\x05\x05\x01", // 𥬙
+ 0x25b1a: "\x03\x01\x04\x03\x01\x04\x03\x01\x02\x01\x01", // 𥬚
+ 0x25b1b: "\x03\x01\x04\x03\x01\x04\x03\x02\x01\x02\x01", // 𥬛
+ 0x25b1c: "\x03\x01\x04\x03\x01\x04\x03\x05\x05\x01", // 𥬜
+ 0x25b1d: "\x03\x01\x04\x03\x01\x04\x03\x02\x05\x01\x01", // 𥬝
+ 0x25b1e: "\x03\x01\x04\x03\x01\x04\x03\x05\x02\x03\x04", // 𥬞
+ 0x25b1f: "\x03\x01\x04\x03\x01\x04\x01\x01\x01\x03\x04", // 𥬟
+ 0x25b20: "\x03\x01\x04\x03\x01\x04\x03\x05\x05\x01\x01", // 𥬠
+ 0x25b21: "\x03\x01\x04\x03\x01\x04\x01\x03\x02\x05\x01", // 𥬡
+ 0x25b22: "\x03\x01\x04\x03\x01\x04\x01\x03\x01\x02\x01", // 𥬢
+ 0x25b23: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x05\x03", // 𥬣
+ 0x25b24: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x01\x05", // 𥬤
+ 0x25b25: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01", // 𥬥
+ 0x25b26: "\x03\x01\x04\x03\x01\x04\x05\x05\x01\x04\x04", // 𥬦
+ 0x25b27: "\x03\x01\x04\x03\x01\x04\x03\x04\x02\x01\x01", // 𥬧
+ 0x25b28: "\x03\x01\x04\x03\x01\x04\x03\x02\x01\x02\x01", // 𥬨
+ 0x25b29: "\x03\x01\x04\x03\x01\x04\x05\x01\x03\x03\x05", // 𥬩
+ 0x25b2a: "\x03\x01\x04\x03\x01\x04\x01\x01\x03\x05\x03\x04", // 𥬪
+ 0x25b2b: "\x03\x01\x04\x03\x01\x04\x03\x05\x04\x01\x05\x02", // 𥬫
+ 0x25b2c: "\x03\x01\x04\x03\x01\x04\x05\x01\x01\x02\x05\x02", // 𥬬
+ 0x25b2d: "\x03\x01\x04\x03\x01\x04\x01\x03\x05\x04\x02\x02", // 𥬭
+ 0x25b2e: "\x03\x01\x04\x03\x01\x04\x04\x04\x01\x01\x02\x01", // 𥬮
+ 0x25b2f: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x03\x01\x05", // 𥬯
+ 0x25b30: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x02\x02", // 𥬰
+ 0x25b31: "\x03\x01\x04\x03\x01\x04\x04\x01\x05\x04\x03\x05", // 𥬱
+ 0x25b32: "\x03\x01\x04\x03\x01\x04\x03\x05\x01\x02\x03\x04", // 𥬲
+ 0x25b33: "\x03\x01\x04\x03\x01\x04\x02\x01\x02\x01\x01\x05", // 𥬳
+ 0x25b34: "\x03\x01\x04\x03\x01\x04\x04\x03\x01\x01\x02", // 𥬴
+ 0x25b35: "\x03\x01\x04\x03\x01\x04\x01\x03\x02\x05\x02\x02", // 𥬵
+ 0x25b36: "\x03\x01\x04\x03\x01\x04\x01\x01\x02\x01\x03\x05", // 𥬶
+ 0x25b37: "\x03\x01\x04\x03\x01\x04\x02\x01\x01\x01\x02\x04", // 𥬷
+ 0x25b38: "\x03\x01\x04\x03\x01\x04\x05\x03\x01\x02\x03\x04", // 𥬸
+ 0x25b39: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x01\x03\x04", // 𥬹
+ 0x25b3a: "\x03\x01\x04\x03\x01\x04\x02\x05\x02\x01\x03\x04", // 𥬺
+ 0x25b3b: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x05\x01\x05", // 𥬻
+ 0x25b3c: "\x03\x01\x04\x03\x01\x04\x03\x05\x03\x03\x02\x02", // 𥬼
+ 0x25b3d: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x03\x04", // 𥬽
+ 0x25b3e: "\x03\x01\x04\x03\x01\x04\x03\x05\x04\x01\x03\x05", // 𥬾
+ 0x25b3f: "\x03\x01\x04\x03\x01\x04\x03\x05\x02\x01\x01", // 𥬿
+ 0x25b40: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x03\x05\x04", // 𥭀
+ 0x25b41: "\x03\x01\x04\x03\x01\x04\x04\x03\x01\x02\x03\x04", // 𥭁
+ 0x25b42: "\x03\x01\x04\x03\x01\x04\x04\x04\x02\x03\x05\x04", // 𥭂
+ 0x25b43: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x03\x02\x02", // 𥭃
+ 0x25b44: "\x03\x01\x04\x03\x01\x04\x05\x03\x03\x03\x01\x02", // 𥭄
+ 0x25b45: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x02\x05\x01", // 𥭅
+ 0x25b46: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x02", // 𥭆
+ 0x25b47: "\x03\x01\x04\x03\x01\x04\x03\x01\x02\x03\x03\x03", // 𥭇
+ 0x25b48: "\x03\x01\x04\x03\x01\x04\x03\x02\x05\x02\x05\x01", // 𥭈
+ 0x25b49: "\x03\x01\x04\x03\x01\x04\x03\x04\x01\x01\x05\x04", // 𥭉
+ 0x25b4a: "\x03\x01\x04\x03\x01\x04\x02\x05\x03\x04\x03\x04", // 𥭊
+ 0x25b4b: "\x03\x01\x04\x03\x01\x04\x03\x05\x04\x03\x05\x04", // 𥭋
+ 0x25b4c: "\x03\x01\x04\x03\x01\x04\x04\x04\x05\x03\x01\x05", // 𥭌
+ 0x25b4d: "\x03\x01\x04\x03\x01\x04\x02\x03\x04\x01\x03\x04", // 𥭍
+ 0x25b4e: "\x03\x01\x04\x03\x01\x04\x04\x04\x01\x04\x01\x05", // 𥭎
+ 0x25b4f: "\x03\x01\x04\x03\x01\x04\x05\x04\x03\x01\x01\x02", // 𥭏
+ 0x25b50: "\x03\x01\x04\x03\x01\x04\x03\x04\x04\x03\x01\x02\x04", // 𥭐
+ 0x25b51: "\x03\x01\x04\x03\x01\x04\x01\x02\x04\x01\x03\x04\x04", // 𥭑
+ 0x25b52: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x05\x02\x05\x01", // 𥭒
+ 0x25b53: "\x03\x01\x04\x03\x01\x04\x04\x03\x03\x04\x03\x05\x04", // 𥭓
+ 0x25b54: "\x03\x01\x04\x03\x01\x04\x02\x01\x02\x05\x01\x02\x02", // 𥭔
+ 0x25b55: "\x03\x01\x04\x03\x01\x04\x01\x05\x02\x03\x05\x02", // 𥭕
+ 0x25b56: "\x03\x01\x04\x03\x01\x04\x03\x05\x04\x01\x03\x05\x04", // 𥭖
+ 0x25b57: "\x03\x01\x04\x03\x01\x04\x03\x05\x04\x01\x01\x01\x02", // 𥭗
+ 0x25b58: "\x03\x01\x04\x03\x01\x04\x03\x04\x01\x03\x02\x05\x02", // 𥭘
+ 0x25b59: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x01\x01\x01\x05", // 𥭙
+ 0x25b5a: "\x03\x01\x04\x03\x01\x04\x04\x01\x05\x02\x05\x01", // 𥭚
+ 0x25b5b: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x03\x05\x01\x01", // 𥭛
+ 0x25b5c: "\x03\x01\x04\x03\x01\x04\x05\x01\x05\x04\x05\x04\x04", // 𥭜
+ 0x25b5d: "\x03\x01\x04\x03\x01\x04\x05\x03\x01\x02\x03\x04\x03", // 𥭝
+ 0x25b5e: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x03\x05\x04\x01", // 𥭞
+ 0x25b5f: "\x03\x01\x04\x03\x01\x04\x05\x04\x03\x05\x03\x05\x04", // 𥭟
+ 0x25b60: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x01\x02\x05\x01", // 𥭠
+ 0x25b61: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x04\x05\x04\x04", // 𥭡
+ 0x25b62: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x01\x01\x05", // 𥭢
+ 0x25b63: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x03\x04\x05", // 𥭣
+ 0x25b64: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x02\x01", // 𥭤
+ 0x25b65: "\x03\x01\x04\x03\x01\x04\x03\x02\x05\x01\x02\x01\x04", // 𥭥
+ 0x25b66: "\x03\x01\x04\x03\x01\x04\x03\x05\x03\x03\x03\x01\x02", // 𥭦
+ 0x25b67: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x02\x01", // 𥭧
+ 0x25b68: "\x03\x01\x04\x03\x01\x04\x03\x02\x05\x01\x01\x03\x05", // 𥭨
+ 0x25b69: "\x03\x01\x04\x03\x01\x04\x02\x01\x02\x05\x02\x05\x01", // 𥭩
+ 0x25b6a: "\x03\x01\x04\x03\x01\x04\x03\x02\x05\x03\x02\x05\x04", // 𥭪
+ 0x25b6b: "\x03\x01\x04\x03\x01\x04\x05\x02\x03\x05\x02\x03\x04", // 𥭫
+ 0x25b6c: "\x03\x01\x04\x03\x01\x04\x03\x05\x04\x01\x03\x01\x05", // 𥭬
+ 0x25b6d: "\x03\x01\x04\x03\x01\x04\x03\x04\x03\x04\x01\x02\x01", // 𥭭
+ 0x25b6e: "\x03\x01\x04\x03\x01\x04\x02\x05\x03\x05\x02\x05\x01", // 𥭮
+ 0x25b6f: "\x03\x01\x04\x03\x01\x04\x01\x01\x02\x01\x03\x01\x05", // 𥭯
+ 0x25b70: "\x03\x01\x04\x03\x01\x04\x03\x05\x04\x01\x02\x03\x04", // 𥭰
+ 0x25b71: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x05\x01\x05", // 𥭱
+ 0x25b72: "\x03\x01\x04\x03\x01\x04\x04\x04\x05\x03\x01\x01\x02", // 𥭲
+ 0x25b73: "\x03\x01\x04\x03\x01\x04\x03\x05\x03\x04\x03\x03\x04", // 𥭳
+ 0x25b74: "\x03\x01\x04\x03\x01\x04\x04\x01\x04\x03\x01\x01\x02", // 𥭴
+ 0x25b75: "\x03\x01\x04\x03\x01\x04\x05\x01\x01\x03\x05\x02", // 𥭵
+ 0x25b76: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x04\x01\x05", // 𥭶
+ 0x25b77: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x03\x04\x05", // 𥭷
+ 0x25b78: "\x03\x01\x04\x03\x01\x04\x03\x02\x02\x01\x02\x05\x04", // 𥭸
+ 0x25b79: "\x03\x01\x04\x03\x01\x04\x04\x05\x03\x05\x03\x05\x04", // 𥭹
+ 0x25b7a: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x05\x01\x02\x03", // 𥭺
+ 0x25b7b: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x03\x02\x05\x01", // 𥭻
+ 0x25b7c: "\x03\x01\x04\x03\x01\x04\x05\x01\x01\x02\x05\x03\x04", // 𥭼
+ 0x25b7d: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x01\x03\x04", // 𥭽
+ 0x25b7e: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x05\x01\x02", // 𥭾
+ 0x25b7f: "\x03\x01\x04\x03\x01\x04\x02\x05\x02\x01\x01\x05\x04", // 𥭿
+ 0x25b80: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x03\x05\x04", // 𥮀
+ 0x25b81: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x03\x05\x05\x04", // 𥮁
+ 0x25b82: "\x03\x01\x04\x03\x01\x04\x03\x01\x01\x03\x02\x05\x01", // 𥮂
+ 0x25b83: "\x03\x01\x04\x03\x01\x04\x03\x02\x01\x05\x02\x05\x02", // 𥮃
+ 0x25b84: "\x03\x01\x04\x03\x01\x04\x03\x05\x01\x01\x05\x01\x05", // 𥮄
+ 0x25b85: "\x03\x01\x04\x03\x01\x04\x01\x01\x02\x01\x01\x03\x04", // 𥮅
+ 0x25b86: "\x03\x01\x04\x03\x01\x04\x03\x02\x01\x02\x05\x01\x02", // 𥮆
+ 0x25b87: "\x03\x01\x04\x03\x01\x04\x01\x01\x01\x03\x05\x02", // 𥮇
+ 0x25b88: "\x03\x01\x04\x03\x01\x04\x03\x04\x01\x02\x01\x03\x02", // 𥮈
+ 0x25b89: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x01\x01\x02\x04", // 𥮉
+ 0x25b8a: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x01\x02\x01", // 𥮊
+ 0x25b8b: "\x03\x01\x04\x03\x01\x04\x03\x02\x01\x02\x03\x04\x01", // 𥮋
+ 0x25b8c: "\x01\x02\x02\x01\x03\x01\x04\x03\x01\x04\x01\x01\x02", // 𥮌
+ 0x25b8d: "\x03\x01\x04\x03\x01\x04\x03\x04\x04\x03\x01\x01\x02\x01", // 𥮍
+ 0x25b8e: "\x03\x01\x04\x03\x01\x04\x01\x03\x04\x04\x01\x03\x02", // 𥮎
+ 0x25b8f: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x02\x01\x03\x04", // 𥮏
+ 0x25b90: "\x03\x01\x04\x03\x01\x04\x03\x05\x01\x02\x01\x02\x05\x01", // 𥮐
+ 0x25b91: "\x03\x01\x04\x03\x01\x04\x03\x05\x04\x02\x04\x02\x05\x01", // 𥮑
+ 0x25b92: "\x03\x01\x04\x03\x01\x04\x04\x04\x01\x02\x01\x02\x05\x01", // 𥮒
+ 0x25b93: "\x03\x01\x04\x03\x01\x04\x04\x04\x01\x05\x04\x01\x03\x02", // 𥮓
+ 0x25b94: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x01\x02\x01\x05\x04", // 𥮔
+ 0x25b95: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x04\x01\x03\x05", // 𥮕
+ 0x25b96: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x05\x01\x01\x01\x01", // 𥮖
+ 0x25b97: "\x03\x01\x04\x03\x01\x04\x03\x05\x04\x03\x01\x02\x03\x04", // 𥮗
+ 0x25b98: "\x03\x01\x04\x03\x01\x04\x03\x04\x01\x05\x04\x05\x04\x04", // 𥮘
+ 0x25b99: "\x03\x01\x04\x03\x01\x04\x03\x03\x05\x04\x01\x04\x02\x02", // 𥮙
+ 0x25b9a: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x02\x02\x02\x02", // 𥮚
+ 0x25b9b: "\x03\x01\x04\x03\x01\x04\x03\x05\x03\x02\x01\x05\x01\x01", // 𥮛
+ 0x25b9c: "\x03\x01\x04\x03\x01\x04\x05\x01\x05\x03\x05\x02\x03\x04", // 𥮜
+ 0x25b9d: "\x03\x01\x04\x03\x01\x04\x05\x01\x03\x05\x02\x02\x05\x02", // 𥮝
+ 0x25b9e: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x03\x02\x05", // 𥮞
+ 0x25b9f: "\x03\x01\x04\x03\x01\x04\x01\x05\x02\x01\x01\x02\x05", // 𥮟
+ 0x25ba0: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x02\x01\x02\x05\x01", // 𥮠
+ 0x25ba1: "\x03\x01\x04\x03\x01\x04\x03\x04\x01\x02\x05\x01\x05\x02", // 𥮡
+ 0x25ba2: "\x03\x01\x04\x03\x01\x04\x05\x02\x01\x01\x05\x02\x01\x01", // 𥮢
+ 0x25ba3: "\x03\x01\x04\x03\x01\x04\x02\x05\x03\x04\x01\x02\x03\x04", // 𥮣
+ 0x25ba4: "\x03\x01\x04\x03\x01\x04\x05\x01\x01\x02\x04\x01\x03\x04", // 𥮤
+ 0x25ba5: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x03\x03\x01\x02", // 𥮥
+ 0x25ba6: "\x03\x01\x04\x03\x01\x04\x02\x05\x04\x05\x04\x03\x04\x01", // 𥮦
+ 0x25ba7: "\x03\x01\x04\x03\x01\x04\x01\x05\x04\x01\x02\x03\x04\x05", // 𥮧
+ 0x25ba8: "\x03\x01\x04\x03\x01\x04\x03\x05\x05\x04\x04\x05\x04\x04", // 𥮨
+ 0x25ba9: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x02\x03\x04\x03\x04", // 𥮩
+ 0x25baa: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x05\x03\x05\x04\x01", // 𥮪
+ 0x25bab: "\x03\x01\x04\x03\x01\x04\x02\x05\x04\x03\x01\x02\x03\x04", // 𥮫
+ 0x25bac: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x03\x05\x03\x03", // 𥮬
+ 0x25bad: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x03\x04\x01\x02\x01", // 𥮭
+ 0x25bae: "\x03\x01\x04\x03\x01\x04\x01\x02\x04\x05\x01\x02\x03\x04", // 𥮮
+ 0x25baf: "\x03\x01\x04\x03\x01\x04\x03\x02\x01\x02\x04\x01\x03\x04", // 𥮯
+ 0x25bb0: "\x03\x01\x04\x03\x01\x04\x05\x01\x05\x03\x03\x05\x04\x04", // 𥮰
+ 0x25bb1: "\x03\x01\x04\x03\x01\x04\x05\x01\x03\x01\x02\x01\x05\x04", // 𥮱
+ 0x25bb2: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x01\x01\x05\x03\x04", // 𥮲
+ 0x25bb3: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x05\x05\x01\x02\x01", // 𥮳
+ 0x25bb4: "\x03\x01\x04\x03\x01\x04\x03\x02\x02\x03\x05\x04\x04\x04", // 𥮴
+ 0x25bb5: "\x03\x01\x04\x03\x01\x04\x04\x04\x05\x01\x01\x02\x03\x04", // 𥮵
+ 0x25bb6: "\x03\x01\x04\x03\x01\x04\x04\x05\x02\x05\x01\x01\x02\x01", // 𥮶
+ 0x25bb7: "\x03\x01\x04\x03\x01\x04\x04\x03\x01\x01\x03\x02\x05\x01", // 𥮷
+ 0x25bb8: "\x03\x01\x04\x03\x01\x04\x05\x01\x02\x05\x01\x02\x01\x04", // 𥮸
+ 0x25bb9: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x01\x05\x03\x04", // 𥮹
+ 0x25bba: "\x03\x01\x04\x03\x01\x04\x05\x02\x01\x02\x01\x05\x02", // 𥮺
+ 0x25bbb: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x01\x02\x04\x02\x02", // 𥮻
+ 0x25bbc: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x03\x05\x05\x01\x05", // 𥮼
+ 0x25bbd: "\x03\x01\x04\x03\x01\x04\x03\x05\x03\x01\x01\x02\x05\x02", // 𥮽
+ 0x25bbe: "\x03\x01\x04\x03\x01\x04\x05\x04\x01\x03\x04\x03\x03\x03", // 𥮾
+ 0x25bbf: "\x03\x01\x04\x03\x01\x04\x03\x01\x01\x05\x04\x04\x04\x04", // 𥮿
+ 0x25bc0: "\x03\x01\x04\x03\x01\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𥯀
+ 0x25bc1: "\x03\x01\x04\x03\x01\x04\x03\x03\x02\x03\x01\x01\x02\x01", // 𥯁
+ 0x25bc2: "\x03\x01\x04\x03\x01\x04\x03\x03\x02\x04\x01\x01\x02\x01", // 𥯂
+ 0x25bc3: "\x03\x01\x04\x03\x01\x04\x01\x03\x04\x02\x05\x01\x01\x05", // 𥯃
+ 0x25bc4: "\x03\x01\x04\x03\x01\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𥯄
+ 0x25bc5: "\x03\x01\x04\x03\x01\x04\x01\x03\x01\x02\x01\x01\x02\x01", // 𥯅
+ 0x25bc6: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x03\x05\x05\x04", // 𥯆
+ 0x25bc7: "\x03\x01\x04\x03\x01\x04\x03\x04\x04\x03\x05\x02\x01\x05", // 𥯇
+ 0x25bc8: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x03\x03\x05\x04", // 𥯈
+ 0x25bc9: "\x03\x01\x04\x03\x01\x04\x05\x03\x01\x01\x03\x02\x05\x01", // 𥯉
+ 0x25bca: "\x03\x01\x04\x03\x01\x04\x04\x01\x03\x02\x03\x05\x04\x04", // 𥯊
+ 0x25bcb: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x03\x05\x01\x01", // 𥯋
+ 0x25bcc: "\x03\x01\x04\x03\x01\x04\x03\x01\x01\x03\x04\x02\x05\x01", // 𥯌
+ 0x25bcd: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x03\x01\x03\x04", // 𥯍
+ 0x25bce: "\x03\x01\x04\x03\x01\x04\x04\x01\x03\x02\x01\x02\x05\x01", // 𥯎
+ 0x25bcf: "\x03\x01\x04\x03\x01\x04\x03\x02\x01\x02\x02\x01\x03\x04", // 𥯏
+ 0x25bd0: "\x03\x01\x04\x03\x01\x04\x05\x01\x01\x01\x02\x05\x03\x04", // 𥯐
+ 0x25bd1: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x02\x02\x01\x01\x02\x01", // 𥯑
+ 0x25bd2: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x02\x05\x01\x05\x03\x04", // 𥯒
+ 0x25bd3: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x01\x01\x01\x03\x05\x05", // 𥯓
+ 0x25bd4: "\x03\x01\x04\x03\x01\x04\x03\x02\x05\x01\x02\x05\x02\x01\x04", // 𥯔
+ 0x25bd5: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 𥯕
+ 0x25bd6: "\x03\x01\x04\x03\x01\x04\x04\x01\x03\x01\x02\x02\x01\x05\x04", // 𥯖
+ 0x25bd7: "\x03\x01\x04\x03\x01\x04\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 𥯗
+ 0x25bd8: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x01\x01\x01\x05\x02", // 𥯘
+ 0x25bd9: "\x03\x01\x04\x03\x01\x04\x01\x05\x05\x05\x01\x02\x01\x05\x03", // 𥯙
+ 0x25bda: "\x03\x01\x04\x03\x01\x04\x04\x04\x02\x03\x05\x04\x02\x05\x01", // 𥯚
+ 0x25bdb: "\x03\x01\x04\x03\x01\x04\x04\x04\x01\x03\x05\x04\x02\x05\x01", // 𥯛
+ 0x25bdc: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x01\x01\x05\x03\x04", // 𥯜
+ 0x25bdd: "\x03\x01\x04\x03\x01\x04\x04\x04\x05\x03\x05\x01\x03\x04\x04", // 𥯝
+ 0x25bde: "\x03\x01\x04\x03\x01\x04\x04\x01\x03\x05\x03\x01\x05\x02\x01", // 𥯞
+ 0x25bdf: "\x03\x01\x04\x03\x01\x04\x03\x01\x01\x02\x01\x01\x01\x01\x02", // 𥯟
+ 0x25be0: "\x03\x01\x04\x03\x01\x04\x04\x04\x01\x03\x03\x03\x05\x03\x04", // 𥯠
+ 0x25be1: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x01\x01\x05\x01\x05", // 𥯡
+ 0x25be2: "\x03\x01\x04\x03\x01\x04\x04\x01\x02\x05\x01\x04\x05\x01\x02", // 𥯢
+ 0x25be3: "\x03\x01\x04\x03\x01\x04\x02\x05\x03\x04\x01\x03\x04\x05\x03\x04", // 𥯣
+ 0x25be4: "\x03\x01\x04\x03\x01\x04\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 𥯤
+ 0x25be5: "\x03\x01\x04\x03\x01\x04\x01\x01\x02\x03\x02\x01\x05\x01\x01", // 𥯥
+ 0x25be6: "\x03\x01\x04\x03\x01\x04\x05\x01\x01\x01\x01\x02\x05\x04", // 𥯦
+ 0x25be7: "\x03\x01\x04\x03\x01\x04\x03\x01\x02\x01\x01\x04\x05\x04", // 𥯧
+ 0x25be8: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 𥯨
+ 0x25be9: "\x03\x01\x04\x03\x01\x04\x01\x03\x02\x05\x01\x03\x03\x01\x02", // 𥯩
+ 0x25bea: "\x03\x01\x04\x03\x01\x04\x01\x01\x01\x03\x04\x03\x01\x03\x04", // 𥯪
+ 0x25beb: "\x03\x01\x04\x03\x01\x04\x05\x04\x03\x03\x04\x01\x01\x03\x04", // 𥯫
+ 0x25bec: "\x03\x01\x04\x03\x01\x04\x01\x03\x02\x05\x02\x02\x01\x03\x04", // 𥯬
+ 0x25bed: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x03\x01\x02\x01\x01", // 𥯭
+ 0x25bee: "\x03\x01\x04\x03\x01\x04\x03\x02\x01\x05\x01\x01\x03\x04", // 𥯮
+ 0x25bef: "\x03\x01\x04\x03\x01\x04\x04\x01\x03\x02\x05\x01\x01\x03\x04", // 𥯯
+ 0x25bf0: "\x03\x01\x04\x03\x01\x04\x05\x03\x05\x04\x02\x05\x02\x02\x01", // 𥯰
+ 0x25bf1: "\x03\x01\x04\x03\x01\x04\x05\x01\x02\x05\x01\x04\x05\x04\x04", // 𥯱
+ 0x25bf2: "\x03\x01\x04\x03\x01\x04\x04\x01\x02\x05\x01\x01\x02\x03\x04", // 𥯲
+ 0x25bf3: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x05\x01\x01\x01\x05", // 𥯳
+ 0x25bf4: "\x03\x01\x04\x03\x01\x04\x04\x04\x05\x04\x03\x03\x04\x05\x04", // 𥯴
+ 0x25bf5: "\x05\x01\x01\x03\x05\x03\x03\x03\x04\x03\x01\x02\x03\x01\x02", // 𥯵
+ 0x25bf6: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x02\x01\x02\x02\x05\x01", // 𥯶
+ 0x25bf7: "\x03\x01\x04\x03\x01\x04\x03\x05\x04\x01\x03\x05\x02\x05\x01", // 𥯷
+ 0x25bf8: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x04\x01\x01\x02\x01", // 𥯸
+ 0x25bf9: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x03\x05\x04\x01\x03\x02", // 𥯹
+ 0x25bfa: "\x03\x01\x04\x03\x01\x04\x01\x03\x04\x04\x03\x01\x02\x03\x04", // 𥯺
+ 0x25bfb: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x03\x02\x01\x05", // 𥯻
+ 0x25bfc: "\x03\x01\x04\x03\x01\x04\x04\x05\x03\x03\x02\x03\x05\x05\x04", // 𥯼
+ 0x25bfd: "\x03\x01\x04\x03\x01\x04\x04\x01\x04\x03\x01\x02\x05\x01\x02", // 𥯽
+ 0x25bfe: "\x03\x01\x04\x03\x01\x04\x04\x04\x05\x03\x01\x02\x02\x05\x01", // 𥯾
+ 0x25bff: "\x03\x01\x04\x03\x01\x04\x01\x01\x05\x04\x02\x05\x02\x01\x01", // 𥯿
+ 0x25c00: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x05\x02\x05\x01\x01\x01", // 𥰀
+ 0x25c01: "\x03\x01\x04\x03\x01\x04\x04\x01\x05\x03\x03\x01\x01\x02\x01", // 𥰁
+ 0x25c02: "\x03\x01\x04\x03\x01\x04\x04\x03\x03\x04\x03\x01\x02\x03\x04", // 𥰂
+ 0x25c03: "\x03\x01\x04\x03\x01\x04\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 𥰃
+ 0x25c04: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x03\x05\x02\x05\x01", // 𥰄
+ 0x25c05: "\x03\x01\x04\x03\x01\x04\x04\x04\x01\x04\x03\x01\x01\x03\x02", // 𥰅
+ 0x25c06: "\x03\x01\x04\x03\x01\x04\x04\x01\x04\x03\x04\x05\x02\x05\x02", // 𥰆
+ 0x25c07: "\x03\x01\x04\x03\x01\x04\x04\x01\x01\x01\x02\x05\x01\x01\x02", // 𥰇
+ 0x25c08: "\x03\x01\x04\x03\x01\x04\x03\x02\x02\x05\x01\x01\x01\x02\x01", // 𥰈
+ 0x25c09: "\x03\x01\x04\x03\x01\x04\x03\x02\x01\x01\x03\x01\x01\x03\x04", // 𥰉
+ 0x25c0a: "\x03\x01\x04\x03\x01\x04\x03\x04\x01\x02\x05\x01\x01\x02\x04", // 𥰊
+ 0x25c0b: "\x03\x01\x04\x03\x01\x04\x04\x04\x05\x03\x05\x04\x02\x05\x01", // 𥰋
+ 0x25c0c: "\x03\x01\x04\x03\x01\x04\x04\x03\x03\x04\x04\x01\x05\x05\x04", // 𥰌
+ 0x25c0d: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x01\x02\x03\x04\x02\x02", // 𥰍
+ 0x25c0e: "\x03\x01\x04\x03\x01\x04\x01\x05\x03\x04\x02\x05\x02\x02\x01", // 𥰎
+ 0x25c0f: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x03\x05\x04\x01\x05\x02", // 𥰏
+ 0x25c10: "\x03\x01\x04\x03\x01\x04\x05\x01\x01\x05\x04\x01\x02\x05\x02", // 𥰐
+ 0x25c11: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x03\x04\x01\x05\x01\x05", // 𥰑
+ 0x25c12: "\x03\x01\x04\x03\x01\x04\x02\x05\x03\x04\x03\x02\x01\x05\x04", // 𥰒
+ 0x25c13: "\x03\x01\x04\x03\x01\x04\x02\x05\x03\x04\x01\x03\x05\x03\x04", // 𥰓
+ 0x25c14: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 𥰔
+ 0x25c15: "\x03\x01\x04\x03\x01\x04\x02\x05\x02\x02\x01\x01\x05\x01\x05", // 𥰕
+ 0x25c16: "\x03\x01\x04\x03\x01\x04\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𥰖
+ 0x25c17: "\x03\x01\x04\x03\x01\x04\x03\x02\x05\x01\x01\x05\x02\x01\x05", // 𥰗
+ 0x25c18: "\x03\x01\x04\x03\x01\x04\x05\x04\x03\x05\x04\x01\x01\x05\x01\x05", // 𥰘
+ 0x25c19: "\x03\x01\x04\x03\x01\x04\x02\x05\x02\x01\x03\x05\x03\x01\x03\x04", // 𥰙
+ 0x25c1a: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x01\x01\x01\x02\x03\x04\x03", // 𥰚
+ 0x25c1b: "\x03\x01\x04\x03\x01\x04\x04\x04\x01\x03\x04\x04\x03\x05\x02\x01", // 𥰛
+ 0x25c1c: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x03\x04\x01\x05\x03\x04", // 𥰜
+ 0x25c1d: "\x03\x01\x04\x03\x01\x04\x03\x02\x05\x01\x01\x01\x04\x05\x04\x04", // 𥰝
+ 0x25c1e: "\x03\x01\x04\x03\x01\x04\x03\x02\x01\x01\x05\x01\x01\x02\x05\x04", // 𥰞
+ 0x25c1f: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x02\x05\x01\x03\x05\x03\x04", // 𥰟
+ 0x25c20: "\x03\x01\x04\x03\x01\x04\x04\x01\x05\x03\x03\x01\x03\x05\x03\x04", // 𥰠
+ 0x25c21: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x02\x03\x04\x03\x01\x03\x04", // 𥰡
+ 0x25c22: "\x03\x01\x04\x03\x01\x04\x03\x05\x01\x03\x05\x04\x01\x05\x04\x01", // 𥰢
+ 0x25c23: "\x03\x01\x04\x03\x01\x04\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 𥰣
+ 0x25c24: "\x03\x01\x04\x03\x01\x04\x04\x04\x01\x01\x05\x04\x03\x02\x05", // 𥰤
+ 0x25c25: "\x03\x01\x04\x03\x01\x04\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04", // 𥰥
+ 0x25c26: "\x03\x01\x04\x03\x01\x04\x05\x01\x03\x03\x03\x02\x01\x02\x05\x04", // 𥰦
+ 0x25c27: "\x03\x01\x04\x03\x01\x04\x03\x02\x01\x03\x04\x01\x02\x05\x01\x02", // 𥰧
+ 0x25c28: "\x03\x01\x04\x03\x01\x04\x04\x03\x03\x04\x04\x03\x03\x04\x02\x02", // 𥰨
+ 0x25c29: "\x03\x01\x04\x03\x01\x04\x03\x02\x01\x01\x05\x01\x01\x01\x03\x02", // 𥰩
+ 0x25c2a: "\x03\x01\x04\x03\x01\x04\x05\x03\x01\x02\x05\x01\x03\x01\x01\x05", // 𥰪
+ 0x25c2b: "\x03\x01\x04\x03\x01\x04\x01\x03\x04\x03\x04\x03\x04\x02\x05\x01", // 𥰫
+ 0x25c2c: "\x03\x01\x04\x03\x01\x04\x03\x05\x01\x02\x01\x04\x03\x01\x01\x02", // 𥰬
+ 0x25c2d: "\x03\x01\x04\x03\x01\x04\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01", // 𥰭
+ 0x25c2e: "\x03\x01\x04\x03\x01\x04\x05\x03\x02\x05\x01\x01\x02\x05\x01\x02", // 𥰮
+ 0x25c2f: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02", // 𥰯
+ 0x25c30: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x03\x04\x01\x01\x03\x02", // 𥰰
+ 0x25c31: "\x03\x01\x04\x03\x01\x04\x04\x05\x04\x04\x02\x05\x01\x02\x01\x04", // 𥰱
+ 0x25c32: "\x03\x01\x04\x03\x01\x04\x04\x03\x03\x04\x01\x02\x02\x01\x03\x04", // 𥰲
+ 0x25c33: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x01\x01\x01\x02\x03\x05\x04", // 𥰳
+ 0x25c34: "\x03\x01\x04\x03\x01\x04\x03\x05\x02\x05\x01\x01\x03\x05\x01\x05", // 𥰴
+ 0x25c35: "\x03\x01\x04\x03\x01\x04\x04\x01\x04\x03\x01\x02\x02", // 𥰵
+ 0x25c36: "\x03\x01\x04\x03\x01\x04\x04\x04\x05\x03\x01\x02\x01\x02\x05\x01", // 𥰶
+ 0x25c37: "\x03\x01\x04\x03\x01\x04\x03\x05\x04\x05\x05\x02\x05\x01\x02\x01", // 𥰷
+ 0x25c38: "\x03\x01\x04\x03\x01\x04\x01\x05\x04\x05\x04\x01\x02\x05\x01\x01", // 𥰸
+ 0x25c39: "\x03\x01\x04\x03\x01\x04\x03\x05\x04\x01\x04\x01\x03\x04\x03\x04", // 𥰹
+ 0x25c3a: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x03\x05\x04\x03\x05\x05\x04", // 𥰺
+ 0x25c3b: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01", // 𥰻
+ 0x25c3c: "\x03\x01\x04\x03\x01\x04\x01\x02\x04\x05\x05\x05\x04\x02\x03\x04", // 𥰼
+ 0x25c3d: "\x03\x01\x04\x03\x01\x04\x03\x03\x02\x01\x05\x03\x01\x05\x03\x04", // 𥰽
+ 0x25c3e: "\x03\x01\x04\x03\x01\x04\x04\x04\x05\x03\x05\x03\x01\x02\x01\x01", // 𥰾
+ 0x25c3f: "\x03\x01\x04\x03\x01\x04\x03\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 𥰿
+ 0x25c40: "\x03\x01\x04\x03\x01\x04\x04\x04\x01\x01\x03\x04\x01\x01\x05", // 𥱀
+ 0x25c41: "\x03\x01\x04\x03\x01\x04\x02\x05\x03\x05\x02\x05\x01\x01\x03\x04", // 𥱁
+ 0x25c42: "\x03\x01\x04\x03\x01\x04\x05\x01\x01\x01\x01\x02\x02\x05\x03\x04", // 𥱂
+ 0x25c43: "\x03\x01\x04\x03\x01\x04\x03\x05\x02\x05\x01\x03\x05\x04\x05\x04", // 𥱃
+ 0x25c44: "\x03\x01\x04\x03\x01\x04\x01\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 𥱄
+ 0x25c45: "\x03\x01\x04\x03\x01\x04\x02\x05\x03\x04\x03\x04\x01\x01\x03\x02", // 𥱅
+ 0x25c46: "\x03\x01\x04\x03\x01\x04\x04\x01\x04\x03\x01\x05\x04\x01\x02\x01", // 𥱆
+ 0x25c47: "\x03\x01\x04\x03\x01\x04\x01\x03\x02\x05\x02\x02\x04\x03\x03\x04", // 𥱇
+ 0x25c48: "\x03\x01\x04\x03\x01\x04\x03\x02\x05\x01\x01\x01\x03\x01\x02\x04", // 𥱈
+ 0x25c49: "\x03\x01\x04\x03\x01\x04\x03\x05\x03\x04\x05\x01\x01\x05\x03\x04", // 𥱉
+ 0x25c4a: "\x03\x01\x04\x03\x01\x04\x04\x01\x03\x01\x02\x02\x01\x02\x05\x02", // 𥱊
+ 0x25c4b: "\x03\x01\x04\x03\x01\x04\x04\x04\x01\x05\x03\x04\x01\x02\x03\x04", // 𥱋
+ 0x25c4c: "\x03\x01\x04\x03\x01\x04\x03\x02\x02\x05\x01\x03\x01\x01\x03\x04", // 𥱌
+ 0x25c4d: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x01\x01\x01\x02\x03\x05\x04", // 𥱍
+ 0x25c4e: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x01\x05\x02\x05\x02\x01\x01", // 𥱎
+ 0x25c4f: "\x03\x01\x04\x03\x01\x04\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01", // 𥱏
+ 0x25c50: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x05\x01\x01\x02\x01\x01", // 𥱐
+ 0x25c51: "\x03\x01\x04\x03\x01\x04\x04\x03\x01\x01\x02\x01\x03\x05\x05\x04", // 𥱑
+ 0x25c52: "\x03\x01\x04\x03\x01\x04\x04\x04\x01\x01\x02\x03\x04\x03\x04\x01", // 𥱒
+ 0x25c53: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x01\x02\x05\x03\x04\x01", // 𥱓
+ 0x25c54: "\x03\x01\x04\x03\x01\x04\x01\x01\x05\x03\x04\x02\x05\x02\x02\x01", // 𥱔
+ 0x25c55: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x01\x01\x01\x03\x04\x05\x04", // 𥱕
+ 0x25c56: "\x03\x01\x04\x03\x01\x04\x05\x02\x01\x03\x05\x05\x04\x02\x03\x04", // 𥱖
+ 0x25c57: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x03\x04\x01\x03\x05\x03\x04", // 𥱗
+ 0x25c58: "\x03\x01\x04\x03\x01\x04\x01\x03\x05\x04\x01\x05\x01\x02\x03\x04", // 𥱘
+ 0x25c59: "\x03\x01\x04\x03\x01\x04\x01\x03\x02\x05\x02\x02\x03\x01\x03\x04", // 𥱙
+ 0x25c5a: "\x03\x01\x04\x03\x01\x04\x05\x01\x05\x01\x05\x02\x05\x02\x02\x01", // 𥱚
+ 0x25c5b: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x01\x02\x05\x03\x05\x01", // 𥱛
+ 0x25c5c: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x01\x01\x01\x02\x01\x05", // 𥱜
+ 0x25c5d: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x01\x03\x03\x01\x02\x05", // 𥱝
+ 0x25c5e: "\x03\x01\x04\x03\x01\x04\x04\x03\x01\x02\x03\x04\x03\x03\x05\x04", // 𥱞
+ 0x25c5f: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x03\x04\x01\x01\x02\x05\x01", // 𥱟
+ 0x25c60: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x03\x01\x02\x01\x02\x05\x01", // 𥱠
+ 0x25c61: "\x03\x01\x04\x03\x01\x04\x02\x05\x02\x02\x01\x01\x03\x05\x03\x04", // 𥱡
+ 0x25c62: "\x03\x01\x04\x03\x01\x04\x02\x05\x02\x02\x01\x03\x02\x01\x05\x04", // 𥱢
+ 0x25c63: "\x03\x01\x04\x03\x01\x04\x03\x04\x01\x02\x05\x01\x03\x04\x03\x04", // 𥱣
+ 0x25c64: "\x03\x01\x04\x03\x01\x04\x03\x02\x02\x03\x01\x03\x04\x03\x03\x03", // 𥱤
+ 0x25c65: "\x03\x01\x04\x03\x01\x04\x05\x02\x03\x05\x04\x01\x02\x03\x04", // 𥱥
+ 0x25c66: "\x03\x01\x04\x03\x01\x04\x05\x05\x04\x04\x04\x04\x04\x04\x01\x02", // 𥱦
+ 0x25c67: "\x03\x01\x04\x03\x01\x04\x01\x01\x01\x03\x04\x03\x01\x02\x03\x04", // 𥱧
+ 0x25c68: "\x03\x01\x04\x03\x01\x04\x01\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 𥱨
+ 0x25c69: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x04\x03\x01\x01\x02\x03\x04", // 𥱩
+ 0x25c6a: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x04\x05\x02\x05\x01\x01", // 𥱪
+ 0x25c6b: "\x03\x01\x04\x03\x01\x04\x01\x03\x04\x01\x02\x01\x01\x01\x05\x04", // 𥱫
+ 0x25c6c: "\x03\x01\x04\x03\x01\x04\x04\x01\x01\x01\x02\x05\x01\x05\x01\x05", // 𥱬
+ 0x25c6d: "\x03\x01\x04\x03\x01\x04\x03\x02\x01\x02\x01\x01\x01\x05\x03\x04", // 𥱭
+ 0x25c6e: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x03\x04\x04\x03\x05\x03\x01", // 𥱮
+ 0x25c6f: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x02\x01\x01\x02\x04", // 𥱯
+ 0x25c70: "\x03\x01\x04\x03\x01\x04\x03\x03\x02\x01\x02\x01\x02\x01\x03\x04", // 𥱰
+ 0x25c71: "\x03\x01\x04\x03\x01\x04\x04\x01\x04\x03\x01\x02\x01\x02\x05\x01", // 𥱱
+ 0x25c72: "\x03\x01\x04\x03\x01\x04\x02\x01\x05\x03\x01\x05\x04\x01\x03\x04", // 𥱲
+ 0x25c73: "\x03\x01\x04\x03\x01\x04\x04\x05\x01\x01\x05\x04\x05\x02", // 𥱳
+ 0x25c74: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 𥱴
+ 0x25c75: "\x03\x01\x04\x03\x01\x04\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01", // 𥱵
+ 0x25c76: "\x03\x01\x04\x03\x01\x04\x01\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04", // 𥱶
+ 0x25c77: "\x03\x01\x04\x03\x01\x04\x03\x04\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 𥱷
+ 0x25c78: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 𥱸
+ 0x25c79: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x04", // 𥱹
+ 0x25c7a: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x02\x02\x01\x01\x03\x04\x05\x05", // 𥱺
+ 0x25c7b: "\x03\x01\x04\x03\x01\x04\x03\x04\x01\x01\x02\x03\x04\x04\x05\x04", // 𥱻
+ 0x25c7c: "\x03\x01\x04\x03\x01\x04\x04\x04\x01\x03\x02\x05\x01\x01\x03\x01\x02", // 𥱼
+ 0x25c7d: "\x03\x01\x04\x03\x01\x04\x02\x05\x04\x03\x01\x01\x03\x04\x05\x05\x01", // 𥱽
+ 0x25c7e: "\x03\x01\x04\x03\x01\x04\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01", // 𥱾
+ 0x25c7f: "\x03\x01\x04\x03\x01\x04\x02\x01\x05\x03\x01\x05\x03\x05\x04\x03\x05", // 𥱿
+ 0x25c80: "\x03\x01\x04\x03\x01\x04\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 𥲀
+ 0x25c81: "\x03\x01\x04\x03\x01\x04\x01\x03\x02\x05\x02\x02\x01\x05\x05\x04", // 𥲁
+ 0x25c82: "\x03\x01\x04\x03\x01\x04\x04\x04\x01\x03\x01\x01\x03\x03\x01\x01\x02", // 𥲂
+ 0x25c83: "\x03\x01\x04\x03\x01\x04\x04\x04\x05\x01\x01\x03\x05\x03\x01\x03\x04", // 𥲃
+ 0x25c84: "\x03\x01\x04\x03\x01\x04\x04\x04\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 𥲄
+ 0x25c85: "\x03\x01\x04\x03\x01\x04\x05\x01\x05\x05\x01\x01\x05\x04\x05\x04\x04", // 𥲅
+ 0x25c86: "\x03\x01\x04\x03\x01\x04\x05\x04\x02\x05\x01\x01\x02\x04\x05\x04", // 𥲆
+ 0x25c87: "\x03\x01\x04\x03\x01\x04\x03\x02\x05\x01\x01\x01\x03\x04\x05\x03\x05", // 𥲇
+ 0x25c88: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04", // 𥲈
+ 0x25c89: "\x03\x01\x04\x03\x01\x04\x02\x01\x05\x03\x01\x05\x03\x04\x03\x01\x02", // 𥲉
+ 0x25c8a: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x01\x01\x01\x03\x05\x03\x05\x02", // 𥲊
+ 0x25c8b: "\x03\x01\x04\x03\x01\x04\x03\x03\x02\x04\x01\x05\x05\x04\x01\x01\x02", // 𥲋
+ 0x25c8c: "\x03\x01\x04\x03\x01\x04\x04\x04\x01\x05\x02\x04\x01\x03\x04\x05\x02", // 𥲌
+ 0x25c8d: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01", // 𥲍
+ 0x25c8e: "\x03\x01\x04\x03\x01\x04\x05\x02\x01\x02\x01\x03\x05\x01\x02\x01", // 𥲎
+ 0x25c8f: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x03\x02\x03\x05\x05\x04", // 𥲏
+ 0x25c90: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x01\x05\x02\x01\x02\x05\x01", // 𥲐
+ 0x25c91: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 𥲑
+ 0x25c92: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x05\x01\x01\x03\x01\x02\x03\x04", // 𥲒
+ 0x25c93: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x01\x01\x02\x05\x03\x04\x01\x01\x02\x01", // 𥲓
+ 0x25c94: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x01\x02\x05\x01\x01\x02\x01\x01", // 𥲔
+ 0x25c95: "\x03\x01\x04\x03\x01\x04\x02\x01\x02\x01\x01\x05\x05\x05\x04\x02\x03\x04", // 𥲕
+ 0x25c96: "\x03\x01\x04\x03\x01\x04\x02\x01\x02\x05\x01\x02\x02\x03\x01\x03\x04", // 𥲖
+ 0x25c97: "\x03\x01\x04\x03\x01\x04\x05\x02\x04\x04\x05\x01\x02\x01\x03\x04", // 𥲗
+ 0x25c98: "\x03\x01\x04\x03\x01\x04\x05\x03\x01\x05\x04\x04\x01\x03\x05\x03\x04", // 𥲘
+ 0x25c99: "\x03\x01\x04\x03\x01\x04\x01\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02", // 𥲙
+ 0x25c9a: "\x03\x01\x04\x03\x01\x04\x04\x04\x01\x04\x04\x05\x01\x01\x02\x03\x04", // 𥲚
+ 0x25c9b: "\x03\x01\x04\x03\x01\x04\x05\x05\x04\x04\x04\x04\x03\x02\x01\x02\x04", // 𥲛
+ 0x25c9c: "\x03\x01\x04\x03\x01\x04\x02\x01\x05\x03\x01\x05\x02\x05\x02\x02\x01", // 𥲜
+ 0x25c9d: "\x03\x01\x04\x03\x01\x04\x05\x01\x01\x05\x01\x01\x05\x03\x02\x05\x04", // 𥲝
+ 0x25c9e: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x01\x02\x05\x02\x05\x01\x01", // 𥲞
+ 0x25c9f: "\x03\x01\x04\x03\x01\x04\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x04", // 𥲟
+ 0x25ca0: "\x03\x01\x04\x03\x01\x04\x04\x01\x05\x03\x05\x04\x01\x01\x01\x02\x01", // 𥲠
+ 0x25ca1: "\x03\x01\x04\x03\x01\x04\x04\x04\x05\x03\x05\x03\x04\x05\x04\x04\x05\x04\x04", // 𥲡
+ 0x25ca2: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x03\x04\x01\x02\x03\x04\x01", // 𥲢
+ 0x25ca3: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x03\x04\x03\x03\x01\x02", // 𥲣
+ 0x25ca4: "\x03\x01\x04\x03\x01\x04\x02\x01\x05\x03\x01\x05\x02\x02\x05\x02\x01\x01", // 𥲤
+ 0x25ca5: "\x03\x01\x04\x03\x01\x04\x03\x04\x01\x02\x05\x01\x02\x05\x02\x02\x01", // 𥲥
+ 0x25ca6: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x02\x02\x01\x01\x03\x04\x04\x03", // 𥲦
+ 0x25ca7: "\x03\x01\x04\x03\x01\x04\x03\x01\x02\x03\x04\x02\x02\x01\x02\x03\x04", // 𥲧
+ 0x25ca8: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x03\x04\x03\x01\x01\x05", // 𥲨
+ 0x25ca9: "\x03\x01\x04\x03\x01\x04\x01\x03\x04\x04\x03\x01\x01\x03\x03\x04", // 𥲩
+ 0x25caa: "\x03\x01\x04\x03\x01\x04\x01\x01\x02\x03\x04\x03\x01\x03\x04\x01\x03", // 𥲪
+ 0x25cab: "\x03\x01\x04\x03\x01\x04\x04\x03\x01\x02\x05\x01\x01\x02\x02\x05\x03", // 𥲫
+ 0x25cac: "\x03\x01\x04\x03\x01\x04\x04\x01\x05\x03\x03\x01\x03\x05\x01\x05\x04", // 𥲬
+ 0x25cad: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x01\x03\x05\x04\x05\x02\x05\x02", // 𥲭
+ 0x25cae: "\x03\x01\x04\x03\x01\x04\x04\x01\x02\x05\x01\x02\x05\x01\x01\x02\x02", // 𥲮
+ 0x25caf: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x03\x05\x02\x01\x03\x01\x03\x04", // 𥲯
+ 0x25cb0: "\x03\x01\x04\x03\x01\x04\x04\x01\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 𥲰
+ 0x25cb1: "\x03\x01\x04\x03\x01\x04\x04\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𥲱
+ 0x25cb2: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x01\x01\x01\x03\x04\x03\x03\x03", // 𥲲
+ 0x25cb3: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x05\x01\x01\x04\x05\x02\x05\x02", // 𥲳
+ 0x25cb4: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01", // 𥲴
+ 0x25cb5: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x04\x03\x01\x02\x02\x04\x03\x01", // 𥲵
+ 0x25cb6: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x01\x01\x01\x03\x04\x01\x01\x02", // 𥲶
+ 0x25cb7: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x05\x04\x03\x03\x04\x01\x01\x02", // 𥲷
+ 0x25cb8: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x03\x04\x02\x04\x04\x04", // 𥲸
+ 0x25cb9: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x05\x04\x02\x05\x01\x01", // 𥲹
+ 0x25cba: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x02", // 𥲺
+ 0x25cbb: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x01\x03\x04\x05\x01\x05", // 𥲻
+ 0x25cbc: "\x03\x01\x04\x03\x01\x04\x03\x02\x01\x02\x05\x03\x04\x02\x01\x05\x04", // 𥲼
+ 0x25cbd: "\x03\x01\x04\x03\x01\x04\x03\x04\x03\x04\x01\x02\x01\x04\x05\x04", // 𥲽
+ 0x25cbe: "\x03\x01\x04\x03\x01\x04\x03\x05\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 𥲾
+ 0x25cbf: "\x03\x01\x04\x03\x01\x04\x05\x03\x03\x05\x03\x03\x03\x04\x03\x03\x03", // 𥲿
+ 0x25cc0: "\x03\x01\x04\x03\x01\x04\x05\x01\x03\x01\x01\x02\x03\x04\x01\x02\x04", // 𥳀
+ 0x25cc1: "\x03\x01\x04\x03\x01\x04\x02\x01\x05\x03\x01\x05\x02\x02\x05\x02\x01\x01", // 𥳁
+ 0x25cc2: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x01\x03\x05\x04\x02\x05\x01", // 𥳂
+ 0x25cc3: "\x03\x01\x04\x03\x01\x04\x04\x05\x01\x03\x02\x05\x01\x03\x01\x03\x04", // 𥳃
+ 0x25cc4: "\x03\x01\x04\x03\x01\x04\x04\x04\x05\x01\x02\x05\x01\x02\x01\x03\x04", // 𥳄
+ 0x25cc5: "\x03\x01\x04\x03\x01\x04\x04\x01\x01\x01\x02\x05\x01\x04\x05\x04", // 𥳅
+ 0x25cc6: "\x03\x01\x04\x03\x01\x04\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04", // 𥳆
+ 0x25cc7: "\x03\x01\x04\x03\x01\x04\x03\x03\x02\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 𥳇
+ 0x25cc8: "\x03\x01\x04\x03\x01\x04\x03\x01\x01\x05\x03\x03\x01\x01\x05\x03\x01\x01\x05", // 𥳈
+ 0x25cc9: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x03\x02\x05\x01\x01\x05\x02", // 𥳉
+ 0x25cca: "\x03\x01\x04\x03\x01\x04\x05\x04\x03\x03\x04\x05\x01\x05\x03\x05\x05\x04", // 𥳊
+ 0x25ccb: "\x03\x01\x04\x03\x01\x04\x05\x04\x05\x04\x05\x04\x03\x04\x02\x04\x04\x04", // 𥳋
+ 0x25ccc: "\x03\x01\x04\x03\x01\x04\x05\x02\x03\x05\x04\x01\x03\x01\x01\x02\x01", // 𥳌
+ 0x25ccd: "\x03\x01\x04\x03\x01\x04\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04", // 𥳍
+ 0x25cce: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x03\x05\x04\x02\x05\x01\x02\x01\x04", // 𥳎
+ 0x25ccf: "\x03\x01\x04\x03\x01\x04\x05\x05\x04\x05\x05\x04\x01\x03\x04\x05\x03\x04", // 𥳏
+ 0x25cd0: "\x03\x01\x04\x03\x01\x04\x05\x01\x01\x02\x02\x05\x01\x01\x01\x01\x03\x02", // 𥳐
+ 0x25cd1: "\x03\x01\x04\x03\x01\x04\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x01\x01", // 𥳑
+ 0x25cd2: "\x03\x01\x04\x03\x01\x04\x04\x04\x01\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 𥳒
+ 0x25cd3: "\x03\x01\x04\x03\x01\x04\x03\x01\x02\x03\x04\x02\x04\x03\x03\x05\x04\x01", // 𥳓
+ 0x25cd4: "\x03\x01\x04\x03\x01\x04\x05\x02\x01\x03\x01\x02\x01\x03\x05\x04\x01", // 𥳔
+ 0x25cd5: "\x03\x01\x04\x03\x01\x04\x03\x04\x01\x01\x02\x02\x05\x01\x05\x04\x05\x02", // 𥳕
+ 0x25cd6: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01", // 𥳖
+ 0x25cd7: "\x03\x01\x04\x03\x01\x04\x03\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𥳗
+ 0x25cd8: "\x03\x01\x04\x03\x01\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𥳘
+ 0x25cd9: "\x03\x01\x04\x03\x01\x04\x02\x05\x02\x05\x02\x01\x03\x02\x05\x02\x02\x01", // 𥳙
+ 0x25cda: "\x03\x01\x04\x03\x01\x04\x03\x05\x04\x01\x01\x03\x04\x04\x04\x04\x04\x04", // 𥳚
+ 0x25cdb: "\x03\x01\x04\x03\x01\x04\x04\x01\x02\x05\x01\x02\x03\x04\x01\x03\x05\x04", // 𥳛
+ 0x25cdc: "\x03\x01\x04\x03\x01\x04\x05\x02\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 𥳜
+ 0x25cdd: "\x03\x01\x04\x03\x01\x04\x04\x05\x04\x04\x04\x05\x04\x04\x04\x05\x04\x04", // 𥳝
+ 0x25cde: "\x03\x01\x04\x03\x01\x04\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 𥳞
+ 0x25cdf: "\x03\x01\x04\x03\x01\x04\x03\x02\x04\x01\x01\x01\x02\x01\x04\x05\x04", // 𥳟
+ 0x25ce0: "\x03\x01\x04\x03\x01\x04\x02\x01\x05\x03\x01\x05\x03\x05\x04\x05\x04", // 𥳠
+ 0x25ce1: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 𥳡
+ 0x25ce2: "\x03\x01\x04\x03\x01\x04\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x03\x04", // 𥳢
+ 0x25ce3: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x02\x02\x01\x01\x01\x05\x04", // 𥳣
+ 0x25ce4: "\x03\x01\x04\x03\x01\x04\x01\x03\x05\x03\x03\x04\x03\x04\x04\x05\x04", // 𥳤
+ 0x25ce5: "\x03\x01\x04\x03\x01\x04\x04\x04\x05\x04\x05\x04\x04\x03\x05\x01\x01\x02", // 𥳥
+ 0x25ce6: "\x03\x01\x04\x03\x01\x04\x02\x04\x03\x02\x05\x02\x05\x01\x02\x03\x04\x03", // 𥳦
+ 0x25ce7: "\x03\x01\x04\x03\x01\x04\x01\x01\x02\x01\x02\x01\x02\x01\x02\x01\x03\x04", // 𥳧
+ 0x25ce8: "\x03\x01\x04\x03\x01\x04\x05\x01\x03\x03\x05\x02\x05\x01\x03\x05\x05\x04", // 𥳨
+ 0x25ce9: "\x03\x01\x04\x03\x01\x04\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01\x02\x02", // 𥳩
+ 0x25cea: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x01\x03\x02\x04\x05\x04", // 𥳪
+ 0x25ceb: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x02\x01\x03\x04\x03\x05\x04\x01", // 𥳫
+ 0x25cec: "\x03\x01\x04\x03\x01\x04\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𥳬
+ 0x25ced: "\x03\x01\x04\x03\x01\x04\x02\x01\x02\x01\x03\x03\x05\x04\x01\x04\x05\x03", // 𥳭
+ 0x25cee: "\x03\x01\x04\x03\x01\x04\x05\x04\x05\x04\x05\x04\x05\x05\x04\x02\x03\x04", // 𥳮
+ 0x25cef: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01", // 𥳯
+ 0x25cf0: "\x03\x01\x04\x03\x01\x04\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x02\x04", // 𥳰
+ 0x25cf1: "\x03\x01\x04\x03\x01\x04\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05", // 𥳱
+ 0x25cf2: "\x03\x01\x04\x03\x01\x04\x05\x02\x02\x05\x01\x01\x04\x01\x04\x03\x01", // 𥳲
+ 0x25cf3: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 𥳳
+ 0x25cf4: "\x03\x01\x04\x03\x01\x04\x03\x04\x01\x03\x03\x05\x04\x01\x03\x05\x05\x04", // 𥳴
+ 0x25cf5: "\x03\x01\x04\x03\x01\x04\x05\x05\x04\x04\x04\x04\x05\x03\x05\x02\x01\x05", // 𥳵
+ 0x25cf6: "\x03\x01\x04\x03\x01\x04\x02\x04\x03\x04\x05\x02\x05\x01\x03\x01\x01\x02", // 𥳶
+ 0x25cf7: "\x03\x01\x04\x03\x01\x04\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x02", // 𥳷
+ 0x25cf8: "\x03\x01\x04\x03\x01\x04\x03\x04\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 𥳸
+ 0x25cf9: "\x03\x01\x04\x03\x01\x04\x03\x04\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𥳹
+ 0x25cfa: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x03\x05\x03\x03\x04\x04\x05\x04\x04", // 𥳺
+ 0x25cfb: "\x03\x01\x04\x03\x01\x04\x04\x04\x01\x01\x01\x02\x01\x05\x05\x04\x01\x04", // 𥳻
+ 0x25cfc: "\x03\x01\x04\x03\x01\x04\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01\x01\x02", // 𥳼
+ 0x25cfd: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x01\x01\x01\x03\x04\x03\x05\x03\x04", // 𥳽
+ 0x25cfe: "\x03\x01\x04\x03\x01\x04\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x01\x01", // 𥳾
+ 0x25cff: "\x03\x01\x04\x03\x01\x04\x03\x05\x02\x05\x01\x03\x05\x04\x04\x05\x04", // 𥳿
+ 0x25d00: "\x03\x01\x04\x03\x01\x04\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x01", // 𥴀
+ 0x25d01: "\x03\x01\x04\x03\x01\x04\x04\x01\x02\x05\x01\x02\x05\x01\x01\x02\x01\x01", // 𥴁
+ 0x25d02: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x01\x01\x01\x02\x02\x01\x01\x02", // 𥴂
+ 0x25d03: "\x03\x01\x04\x03\x01\x04\x01\x01\x03\x05\x03\x04\x02\x05\x01\x01\x01\x02", // 𥴃
+ 0x25d04: "\x03\x01\x04\x03\x01\x04\x04\x05\x03\x05\x02\x01\x02\x05\x01\x01\x01\x02", // 𥴄
+ 0x25d05: "\x03\x01\x04\x03\x01\x04\x04\x03\x01\x02\x03\x04\x01\x02\x05\x03\x05\x01", // 𥴅
+ 0x25d06: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x04\x03\x01\x01\x02\x05\x02\x05\x04", // 𥴆
+ 0x25d07: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x01\x01\x01\x03\x04\x01\x01\x02", // 𥴇
+ 0x25d08: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x01\x05\x03\x04\x01\x05\x03\x04", // 𥴈
+ 0x25d09: "\x03\x01\x04\x03\x01\x04\x03\x05\x05\x04\x03\x05\x05\x04\x02\x05\x01\x01", // 𥴉
+ 0x25d0a: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 𥴊
+ 0x25d0b: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x02\x02\x01\x01\x01\x03\x05\x03\x04", // 𥴋
+ 0x25d0c: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x01\x03\x04\x01\x02\x03\x04", // 𥴌
+ 0x25d0d: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x05\x04\x03\x03\x04\x01\x01\x02", // 𥴍
+ 0x25d0e: "\x03\x01\x04\x03\x01\x04\x02\x05\x03\x04\x01\x03\x05\x03\x03\x03\x04", // 𥴎
+ 0x25d0f: "\x03\x01\x04\x03\x01\x04\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x04\x04", // 𥴏
+ 0x25d10: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01", // 𥴐
+ 0x25d11: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x03\x05\x01\x01\x03\x01\x01\x02\x01", // 𥴑
+ 0x25d12: "\x03\x01\x02\x03\x01\x02\x03\x01\x02\x03\x01\x02\x03\x01\x02\x03\x01\x02", // 𥴒
+ 0x25d13: "\x03\x01\x04\x03\x01\x04\x03\x03\x04\x03\x04\x03\x04\x03\x04\x01\x02\x01", // 𥴓
+ 0x25d14: "\x03\x01\x04\x03\x01\x04\x03\x04\x03\x04\x02\x01\x03\x02\x05\x01\x01\x01", // 𥴔
+ 0x25d15: "\x03\x01\x04\x03\x01\x04\x03\x05\x03\x04\x03\x01\x02\x05\x03\x05\x01\x01", // 𥴕
+ 0x25d16: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x03\x02\x05\x01\x01\x03\x01\x02", // 𥴖
+ 0x25d17: "\x03\x01\x04\x03\x01\x04\x05\x05\x04\x04\x04\x04\x04\x01\x05\x04\x03\x05", // 𥴗
+ 0x25d18: "\x03\x01\x04\x03\x01\x04\x05\x03\x01\x01\x02\x02\x01\x01\x01\x02\x03\x04", // 𥴘
+ 0x25d19: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x02\x01\x02\x05\x01\x01\x01\x02", // 𥴙
+ 0x25d1a: "\x03\x01\x04\x03\x01\x04\x03\x02\x05\x01\x01\x01\x01\x01\x01\x01\x01\x02", // 𥴚
+ 0x25d1b: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𥴛
+ 0x25d1c: "\x03\x01\x04\x03\x01\x04\x04\x01\x01\x01\x02\x05\x01\x05\x03\x02\x05\x01", // 𥴜
+ 0x25d1d: "\x03\x01\x04\x03\x01\x04\x03\x04\x01\x05\x01\x01\x05\x04\x05\x02", // 𥴝
+ 0x25d1e: "\x03\x01\x04\x03\x01\x04\x02\x05\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01", // 𥴞
+ 0x25d1f: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 𥴟
+ 0x25d20: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x01\x03\x04\x02\x05\x03\x04", // 𥴠
+ 0x25d21: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01", // 𥴡
+ 0x25d22: "\x03\x01\x04\x03\x01\x04\x03\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𥴢
+ 0x25d23: "\x03\x01\x04\x03\x01\x04\x03\x03\x05\x04\x01\x04\x03\x05\x04\x01\x01\x01\x02", // 𥴣
+ 0x25d24: "\x03\x01\x04\x03\x01\x04\x03\x05\x04\x01\x05\x01\x01\x01\x01\x02\x05\x04", // 𥴤
+ 0x25d25: "\x03\x01\x04\x03\x01\x04\x05\x01\x01\x02\x02\x05\x01\x01\x05\x04\x01\x03\x02", // 𥴥
+ 0x25d26: "\x03\x01\x04\x03\x01\x04\x04\x03\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 𥴦
+ 0x25d27: "\x03\x01\x04\x03\x01\x04\x02\x01\x05\x03\x01\x05\x01\x03\x05\x03\x03\x03\x04", // 𥴧
+ 0x25d28: "\x03\x01\x04\x03\x01\x04\x03\x04\x04\x03\x04\x05\x04\x05\x04\x04\x03\x05\x04", // 𥴨
+ 0x25d29: "\x03\x01\x04\x03\x01\x04\x05\x02\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𥴩
+ 0x25d2a: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x02\x05\x02\x01\x04\x04\x05\x04", // 𥴪
+ 0x25d2b: "\x03\x01\x04\x03\x01\x04\x05\x01\x03\x01\x02\x02\x01\x03\x04\x03\x05\x05\x04", // 𥴫
+ 0x25d2c: "\x03\x01\x04\x03\x01\x04\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 𥴬
+ 0x25d2d: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 𥴭
+ 0x25d2e: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 𥴮
+ 0x25d2f: "\x03\x01\x04\x03\x01\x04\x04\x01\x03\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𥴯
+ 0x25d30: "\x03\x01\x04\x03\x01\x04\x04\x01\x04\x03\x01\x01\x01\x02\x01\x03\x05\x01\x01", // 𥴰
+ 0x25d31: "\x03\x01\x04\x03\x01\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x04\x04\x04\x04", // 𥴱
+ 0x25d32: "\x03\x01\x04\x03\x01\x04\x05\x01\x05\x01\x05\x03\x01\x03\x04\x04\x05\x04\x04", // 𥴲
+ 0x25d33: "\x03\x01\x04\x03\x01\x04\x05\x01\x05\x03\x05\x04\x03\x05\x04\x04\x05\x04\x04", // 𥴳
+ 0x25d34: "\x03\x01\x04\x03\x01\x04\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x02\x05\x01", // 𥴴
+ 0x25d35: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 𥴵
+ 0x25d36: "\x03\x01\x04\x03\x01\x04\x03\x05\x04\x01\x05\x02\x02\x05\x01\x01\x01\x03\x04", // 𥴶
+ 0x25d37: "\x03\x01\x04\x03\x01\x04\x02\x01\x03\x05\x04\x05\x04\x04\x03\x01\x02\x03\x04", // 𥴷
+ 0x25d38: "\x03\x01\x04\x03\x01\x04\x02\x05\x02\x02\x01\x04\x05\x01\x03\x04\x05\x03\x04", // 𥴸
+ 0x25d39: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x02\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𥴹
+ 0x25d3a: "\x03\x01\x04\x03\x01\x04\x04\x03\x01\x05\x05\x04\x05\x05\x04\x04\x05\x04\x04", // 𥴺
+ 0x25d3b: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x03\x04\x01\x05\x01\x01\x03\x02\x05\x01", // 𥴻
+ 0x25d3c: "\x03\x01\x04\x03\x01\x04\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x02\x03\x04", // 𥴼
+ 0x25d3d: "\x03\x01\x04\x03\x01\x04\x04\x04\x01\x03\x02\x02\x03\x05\x04\x01\x02\x03\x04", // 𥴽
+ 0x25d3e: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 𥴾
+ 0x25d3f: "\x03\x01\x04\x03\x01\x04\x01\x03\x05\x02\x02\x01\x01\x02\x01\x02\x05\x01", // 𥴿
+ 0x25d40: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x02\x05\x02\x02\x01\x04\x01\x05\x03", // 𥵀
+ 0x25d41: "\x03\x01\x04\x03\x01\x04\x05\x01\x01\x02\x04\x01\x03\x04\x02\x05\x02\x02\x01", // 𥵁
+ 0x25d42: "\x03\x01\x04\x03\x01\x04\x02\x01\x05\x03\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 𥵂
+ 0x25d43: "\x03\x01\x04\x03\x01\x04\x01\x05\x03\x04\x01\x05\x03\x04\x02\x05\x02\x02\x01", // 𥵃
+ 0x25d44: "\x03\x01\x04\x03\x01\x04\x04\x04\x01\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 𥵄
+ 0x25d45: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x03\x05\x03\x03\x04\x04\x05\x04\x04", // 𥵅
+ 0x25d46: "\x03\x01\x04\x03\x01\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 𥵆
+ 0x25d47: "\x03\x01\x04\x03\x01\x04\x01\x01\x02\x01\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 𥵇
+ 0x25d48: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x03\x01\x02\x05\x01\x02\x05\x02\x02\x01", // 𥵈
+ 0x25d49: "\x03\x01\x04\x03\x01\x04\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x01", // 𥵉
+ 0x25d4a: "\x03\x01\x04\x03\x01\x04\x03\x04\x01\x02\x05\x02\x04\x03\x01\x01\x02\x05\x01\x01", // 𥵊
+ 0x25d4b: "\x03\x01\x04\x03\x01\x04\x03\x04\x01\x02\x05\x02\x02\x01\x03\x05\x03\x05\x01", // 𥵋
+ 0x25d4c: "\x03\x01\x04\x03\x01\x04\x03\x04\x03\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𥵌
+ 0x25d4d: "\x03\x01\x04\x03\x01\x04\x03\x05\x03\x03\x02\x05\x01\x05\x01\x01\x02\x05\x02", // 𥵍
+ 0x25d4e: "\x03\x01\x04\x03\x01\x04\x03\x02\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𥵎
+ 0x25d4f: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x03\x05\x01\x01\x03\x04\x01\x01\x02\x01", // 𥵏
+ 0x25d50: "\x03\x01\x04\x03\x01\x04\x01\x03\x04\x04\x03\x02\x05\x01\x01\x04\x03\x03\x04", // 𥵐
+ 0x25d51: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x04\x05\x03\x04\x02\x05\x02\x05", // 𥵑
+ 0x25d52: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x04\x05\x02\x05\x01\x01\x01\x03\x05", // 𥵒
+ 0x25d53: "\x03\x01\x04\x03\x01\x04\x03\x02\x01\x05\x01\x01\x01\x02\x01\x03\x05\x05\x04", // 𥵓
+ 0x25d54: "\x03\x01\x04\x03\x01\x04\x01\x03\x02\x05\x01\x03\x02\x05\x01\x01\x03\x01\x02", // 𥵔
+ 0x25d55: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x05\x03\x02\x05\x01\x04\x04\x04\x04", // 𥵕
+ 0x25d56: "\x03\x01\x04\x03\x01\x04\x03\x05\x01\x01\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 𥵖
+ 0x25d57: "\x03\x01\x04\x03\x01\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05\x03\x04", // 𥵗
+ 0x25d58: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x03\x02\x01\x03\x05\x04\x02\x02", // 𥵘
+ 0x25d59: "\x03\x01\x04\x03\x01\x04\x02\x05\x02\x02\x01\x02\x01\x02\x05\x01\x01\x01\x02", // 𥵙
+ 0x25d5a: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01\x05\x03", // 𥵚
+ 0x25d5b: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x02\x01\x01\x03\x01\x01\x05\x03\x04", // 𥵛
+ 0x25d5c: "\x03\x01\x04\x03\x01\x04\x03\x02\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 𥵜
+ 0x25d5d: "\x03\x01\x04\x03\x01\x04\x03\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𥵝
+ 0x25d5e: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03\x04", // 𥵞
+ 0x25d5f: "\x03\x01\x04\x03\x01\x04\x02\x05\x02\x02\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 𥵟
+ 0x25d60: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x04\x05\x03\x01\x02\x03\x04\x03\x05\x05\x04", // 𥵠
+ 0x25d61: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01", // 𥵡
+ 0x25d62: "\x03\x01\x04\x03\x01\x04\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x01\x02\x04", // 𥵢
+ 0x25d63: "\x03\x01\x04\x03\x01\x04\x04\x01\x04\x03\x01\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 𥵣
+ 0x25d64: "\x03\x01\x04\x03\x01\x04\x05\x05\x04\x04\x04\x04\x02\x01\x02\x05\x01\x01\x01\x02", // 𥵤
+ 0x25d65: "\x03\x01\x04\x03\x01\x04\x04\x04\x01\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04", // 𥵥
+ 0x25d66: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x01\x01\x05\x04\x02\x04\x03\x03\x05\x04\x01", // 𥵦
+ 0x25d67: "\x03\x01\x04\x03\x01\x04\x05\x01\x01\x02\x01\x04\x04\x04\x04\x02\x05\x02\x02\x01", // 𥵧
+ 0x25d68: "\x03\x01\x04\x03\x01\x04\x03\x02\x05\x01\x01\x01\x04\x04\x05\x03\x05\x04\x01\x05\x03", // 𥵨
+ 0x25d69: "\x03\x01\x04\x03\x01\x04\x04\x05\x02\x03\x04\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 𥵩
+ 0x25d6a: "\x03\x01\x04\x03\x01\x04\x04\x01\x04\x03\x01\x05\x01\x03\x04\x03\x01\x01\x03\x02", // 𥵪
+ 0x25d6b: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x01\x01\x01\x05\x04\x03\x02\x03\x04\x03\x04", // 𥵫
+ 0x25d6c: "\x03\x01\x04\x03\x01\x04\x04\x01\x03\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 𥵬
+ 0x25d6d: "\x03\x01\x04\x03\x01\x04\x04\x01\x02\x02\x01\x01\x02\x05\x03\x04\x01\x01\x02\x01", // 𥵭
+ 0x25d6e: "\x03\x01\x04\x03\x01\x04\x05\x05\x04\x04\x04\x04\x03\x04\x01\x05\x04\x05\x04\x04", // 𥵮
+ 0x25d6f: "\x03\x01\x04\x03\x01\x04\x01\x03\x05\x03\x03\x01\x05\x01\x01\x05\x02\x01\x03\x04", // 𥵯
+ 0x25d70: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𥵰
+ 0x25d71: "\x03\x01\x04\x03\x01\x04\x01\x03\x04\x04\x03\x01\x01\x02\x03\x05\x03\x01\x01\x02", // 𥵱
+ 0x25d72: "\x03\x01\x04\x03\x01\x04\x02\x05\x03\x05\x04\x03\x03\x04\x04\x03\x03\x04\x02\x02", // 𥵲
+ 0x25d73: "\x03\x01\x04\x03\x01\x04\x05\x04\x01\x05\x04\x01\x04\x01\x04\x03\x01\x05\x03\x01", // 𥵳
+ 0x25d74: "\x03\x01\x04\x03\x01\x04\x03\x01\x05\x05\x04\x01\x04\x03\x01\x03\x04\x04\x05\x04\x04", // 𥵴
+ 0x25d75: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x04\x02\x05\x02", // 𥵵
+ 0x25d76: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x02\x01\x03\x04\x03\x01\x02\x02\x05\x01", // 𥵶
+ 0x25d77: "\x03\x01\x04\x03\x01\x04\x03\x04\x04\x03\x05\x03\x03\x02\x05\x01\x01\x02\x01\x01", // 𥵷
+ 0x25d78: "\x03\x01\x04\x03\x01\x04\x03\x02\x05\x01\x01\x01\x04\x05\x03\x05\x02\x05\x02\x05", // 𥵸
+ 0x25d79: "\x03\x01\x04\x03\x01\x04\x05\x05\x04\x04\x04\x04\x04\x04\x05\x01\x01\x02\x03\x04", // 𥵹
+ 0x25d7a: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x01\x03\x04\x02\x05\x01\x02\x03\x04", // 𥵺
+ 0x25d7b: "\x03\x01\x04\x03\x01\x04\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𥵻
+ 0x25d7c: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x03\x04\x01\x03\x04\x01\x03\x02\x05\x01", // 𥵼
+ 0x25d7d: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x05\x05\x01\x05\x05\x01\x01\x05\x02\x05\x01", // 𥵽
+ 0x25d7e: "\x03\x01\x04\x03\x01\x04\x03\x01\x02\x03\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𥵾
+ 0x25d7f: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 𥵿
+ 0x25d80: "\x03\x01\x04\x03\x01\x04\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x01\x05", // 𥶀
+ 0x25d81: "\x03\x01\x04\x03\x01\x04\x04\x01\x04\x03\x01\x01\x03\x01\x02\x05\x01\x02\x03\x04", // 𥶁
+ 0x25d82: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x01\x01\x01\x03\x04\x03\x05\x04\x03\x05\x04", // 𥶂
+ 0x25d83: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x02\x05\x02\x02\x01\x04\x05\x03\x05\x04", // 𥶃
+ 0x25d84: "\x03\x01\x04\x03\x01\x04\x05\x03\x01\x01\x02\x05\x01\x02\x03\x04\x03\x01\x03\x04", // 𥶄
+ 0x25d85: "\x03\x01\x04\x03\x01\x04\x04\x04\x01\x01\x02\x01\x05\x02\x05\x01\x02\x05\x01\x02\x01", // 𥶅
+ 0x25d86: "\x03\x01\x04\x03\x01\x04\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x03\x02\x05\x01", // 𥶆
+ 0x25d87: "\x03\x01\x04\x03\x01\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01", // 𥶇
+ 0x25d88: "\x03\x01\x04\x03\x01\x04\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03\x05\x03\x02\x05\x04", // 𥶈
+ 0x25d89: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x01\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 𥶉
+ 0x25d8a: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x01\x03\x04\x05\x05\x02\x05\x02\x02\x01", // 𥶊
+ 0x25d8b: "\x03\x01\x04\x03\x01\x04\x02\x05\x02\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 𥶋
+ 0x25d8c: "\x03\x01\x04\x03\x01\x04\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 𥶌
+ 0x25d8d: "\x03\x01\x04\x03\x01\x04\x05\x05\x04\x04\x04\x04\x03\x04\x04\x03\x01\x01\x03\x05\x04", // 𥶍
+ 0x25d8e: "\x03\x01\x04\x03\x01\x04\x04\x04\x01\x04\x04\x01\x03\x05\x03\x04\x02\x05\x02\x02\x01", // 𥶎
+ 0x25d8f: "\x03\x01\x04\x03\x01\x04\x04\x01\x01\x01\x02\x05\x01\x03\x05\x01\x02\x01\x02\x05\x01", // 𥶏
+ 0x25d90: "\x03\x01\x04\x03\x01\x04\x05\x02\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𥶐
+ 0x25d91: "\x03\x01\x04\x03\x01\x04\x04\x03\x01\x01\x02\x01\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𥶑
+ 0x25d92: "\x03\x01\x04\x03\x01\x04\x04\x03\x03\x04\x04\x03\x03\x04\x03\x05\x04\x01\x05\x02", // 𥶒
+ 0x25d93: "\x03\x01\x04\x03\x01\x04\x02\x05\x02\x02\x01\x05\x04\x03\x05\x04\x01\x01\x05\x01\x05", // 𥶓
+ 0x25d94: "\x03\x01\x04\x03\x01\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x04\x04\x04\x04", // 𥶔
+ 0x25d95: "\x03\x01\x04\x03\x01\x04\x03\x05\x01\x03\x01\x05\x03\x05\x03\x01\x02\x02\x05\x01", // 𥶕
+ 0x25d96: "\x03\x01\x04\x03\x01\x04\x02\x05\x02\x02\x01\x04\x03\x03\x04\x04\x03\x03\x04\x02\x02", // 𥶖
+ 0x25d97: "\x03\x01\x04\x03\x01\x04\x01\x05\x03\x01\x01\x03\x04\x03\x04\x04\x03\x01\x02\x03\x04", // 𥶗
+ 0x25d98: "\x03\x01\x04\x03\x01\x04\x04\x04\x05\x03\x02\x01\x05\x01\x01\x03\x05\x04\x04\x04\x04", // 𥶘
+ 0x25d99: "\x03\x01\x04\x03\x01\x04\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 𥶙
+ 0x25d9a: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x02\x01\x03\x04\x03\x01\x02\x01\x02\x05\x01", // 𥶚
+ 0x25d9b: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 𥶛
+ 0x25d9c: "\x03\x01\x04\x03\x01\x04\x05\x03\x01\x01\x02\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 𥶜
+ 0x25d9d: "\x03\x01\x04\x03\x01\x04\x05\x02\x01\x03\x03\x05\x04\x04\x01\x02\x04\x01\x03\x01\x02", // 𥶝
+ 0x25d9e: "\x03\x01\x04\x03\x01\x04\x04\x04\x01\x04\x05\x01\x01\x05\x03\x04\x02\x05\x02\x02\x01", // 𥶞
+ 0x25d9f: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x03\x04\x02\x04\x04\x04", // 𥶟
+ 0x25da0: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 𥶠
+ 0x25da1: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x01\x01\x01\x02\x03\x04\x01\x02\x05\x01\x02\x02", // 𥶡
+ 0x25da2: "\x03\x01\x04\x03\x01\x04\x05\x05\x05\x02\x05\x03\x04\x01\x03\x05\x02\x04\x01\x03\x04", // 𥶢
+ 0x25da3: "\x03\x01\x04\x03\x01\x04\x04\x04\x05\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 𥶣
+ 0x25da4: "\x03\x01\x04\x03\x01\x04\x03\x01\x01\x02\x03\x04\x02\x05\x01\x02\x02\x05\x02\x05\x01", // 𥶤
+ 0x25da5: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x05\x04\x02\x05\x01\x01\x02\x04\x05\x04", // 𥶥
+ 0x25da6: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𥶦
+ 0x25da7: "\x03\x01\x04\x03\x01\x04\x04\x04\x05\x03\x05\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 𥶧
+ 0x25da8: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x01\x04\x04\x05\x01\x01\x05\x04\x05\x02", // 𥶨
+ 0x25da9: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x03\x04\x03\x03\x03", // 𥶩
+ 0x25daa: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x03\x04\x03\x04\x03\x04\x03\x04\x02\x05\x01\x01", // 𥶪
+ 0x25dab: "\x03\x01\x04\x03\x01\x04\x05\x03\x01\x03\x04\x03\x04\x02\x01\x03\x02\x05\x01\x01\x01", // 𥶫
+ 0x25dac: "\x03\x01\x04\x03\x01\x04\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x01\x04\x04\x04\x04", // 𥶬
+ 0x25dad: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 𥶭
+ 0x25dae: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𥶮
+ 0x25daf: "\x03\x02\x05\x01\x01\x03\x05\x05\x04\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x01", // 𥶯
+ 0x25db0: "\x03\x01\x04\x03\x01\x04\x05\x01\x03\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𥶰
+ 0x25db1: "\x03\x01\x04\x03\x01\x04\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 𥶱
+ 0x25db2: "\x03\x01\x04\x03\x01\x04\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01", // 𥶲
+ 0x25db3: "\x03\x01\x04\x03\x01\x04\x05\x05\x04\x04\x04\x04\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 𥶳
+ 0x25db4: "\x03\x01\x04\x03\x01\x04\x05\x02\x01\x03\x01\x02\x01\x03\x05\x04\x01\x01\x02\x01", // 𥶴
+ 0x25db5: "\x03\x01\x04\x03\x01\x04\x03\x02\x01\x05\x01\x01\x04\x03\x01\x02\x03\x04\x03\x05\x05\x04", // 𥶵
+ 0x25db6: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04\x03\x01\x02\x03\x04", // 𥶶
+ 0x25db7: "\x03\x01\x04\x03\x01\x04\x05\x01\x05\x05\x01\x05\x01\x02\x02\x01\x03\x04\x04\x05\x04", // 𥶷
+ 0x25db8: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04\x01\x05\x05\x04", // 𥶸
+ 0x25db9: "\x03\x01\x04\x03\x01\x04\x01\x01\x02\x01\x03\x05\x01\x01\x03\x04\x04\x03\x05\x01\x01\x02", // 𥶹
+ 0x25dba: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x01\x01\x01\x03\x04\x01\x05\x04\x01\x02\x03\x04", // 𥶺
+ 0x25dbb: "\x03\x01\x04\x03\x01\x04\x05\x02\x04\x03\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 𥶻
+ 0x25dbc: "\x03\x01\x04\x03\x01\x04\x05\x02\x04\x03\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 𥶼
+ 0x25dbd: "\x03\x01\x04\x03\x01\x04\x03\x03\x02\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x01\x02", // 𥶽
+ 0x25dbe: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x01\x01\x02\x03\x04\x05\x01\x01\x02\x04\x01\x03\x04", // 𥶾
+ 0x25dbf: "\x03\x01\x04\x03\x01\x04\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x03\x02\x01\x05\x01\x01", // 𥶿
+ 0x25dc0: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x01\x02\x05\x01\x02\x01\x01\x01\x05\x04\x04\x04\x04", // 𥷀
+ 0x25dc1: "\x03\x01\x04\x03\x01\x04\x04\x01\x04\x03\x01\x01\x03\x05\x03\x04\x01\x04\x03\x01\x01\x02", // 𥷁
+ 0x25dc2: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x02\x05\x01\x03\x04\x02\x05\x01\x01\x01\x03\x02", // 𥷂
+ 0x25dc3: "\x03\x01\x04\x03\x01\x04\x05\x02\x01\x03\x03\x05\x04\x04\x01\x02\x04\x01\x02\x03\x04", // 𥷃
+ 0x25dc4: "\x03\x01\x04\x03\x01\x04\x03\x04\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𥷄
+ 0x25dc5: "\x03\x01\x04\x03\x01\x04\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x04\x03\x03\x04", // 𥷅
+ 0x25dc6: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x04\x05\x01\x05\x05\x04\x02\x03\x04\x03\x05\x05\x04", // 𥷆
+ 0x25dc7: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x05\x01\x01\x03\x04\x04\x02\x05\x01\x02\x05\x01", // 𥷇
+ 0x25dc8: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𥷈
+ 0x25dc9: "\x03\x01\x04\x03\x01\x04\x03\x03\x02\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x02", // 𥷉
+ 0x25dca: "\x03\x01\x04\x03\x01\x04\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04\x04\x05\x04", // 𥷊
+ 0x25dcb: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02", // 𥷋
+ 0x25dcc: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04\x04\x05\x04\x04", // 𥷌
+ 0x25dcd: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x02\x05\x01\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 𥷍
+ 0x25dce: "\x03\x01\x04\x03\x01\x04\x02\x01\x02\x01\x02\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𥷎
+ 0x25dcf: "\x03\x01\x04\x03\x01\x04\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x05\x01\x01\x02\x05\x02", // 𥷏
+ 0x25dd0: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x02\x05\x02\x02\x01\x01\x03\x04\x04\x03\x01\x01\x02", // 𥷐
+ 0x25dd1: "\x03\x01\x04\x03\x01\x04\x01\x03\x01\x02\x05\x01\x05\x03\x04\x03\x05\x03\x05\x01\x01\x02", // 𥷑
+ 0x25dd2: "\x03\x01\x04\x03\x01\x04\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 𥷒
+ 0x25dd3: "\x03\x01\x04\x03\x01\x04\x03\x04\x04\x05\x01\x01\x05\x04\x03\x04\x04\x03\x05\x03\x01", // 𥷓
+ 0x25dd4: "\x03\x01\x04\x03\x01\x04\x03\x02\x01\x01\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x04", // 𥷔
+ 0x25dd5: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x01\x01\x01\x03\x04\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 𥷕
+ 0x25dd6: "\x03\x01\x04\x03\x01\x04\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02\x01\x05\x05\x04", // 𥷖
+ 0x25dd7: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x01\x01\x02\x03\x04\x05\x01\x01\x02\x04\x01\x03\x04", // 𥷗
+ 0x25dd8: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𥷘
+ 0x25dd9: "\x03\x01\x04\x03\x01\x04\x02\x05\x02\x02\x01\x01\x03\x04\x03\x03\x04\x04\x03\x03\x04\x02\x02", // 𥷙
+ 0x25dda: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04\x01\x01\x01\x02\x05\x01", // 𥷚
+ 0x25ddb: "\x03\x01\x04\x03\x01\x04\x04\x01\x02\x05\x01\x02\x03\x04\x01\x03\x05\x04\x02\x05\x01\x01\x01", // 𥷛
+ 0x25ddc: "\x03\x01\x04\x03\x01\x04\x03\x02\x04\x01\x01\x01\x02\x01\x03\x05\x01\x02\x05\x01\x02\x01\x04", // 𥷜
+ 0x25ddd: "\x03\x01\x04\x03\x01\x04\x05\x01\x03\x01\x02\x02\x01\x03\x04\x03\x05\x05\x04\x03\x05\x04\x01", // 𥷝
+ 0x25dde: "\x03\x01\x04\x03\x01\x04\x02\x05\x05\x05\x04\x02\x03\x04\x05\x05\x04\x02\x03\x04\x01\x03\x04", // 𥷞
+ 0x25ddf: "\x03\x01\x04\x03\x01\x04\x02\x05\x03\x04\x02\x05\x03\x04\x03\x05\x03\x04\x02\x05\x02\x02\x01", // 𥷟
+ 0x25de0: "\x03\x01\x04\x03\x01\x04\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x03\x04\x04\x04\x04\x04\x01", // 𥷠
+ 0x25de1: "\x03\x01\x04\x03\x01\x04\x04\x03\x03\x04\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 𥷡
+ 0x25de2: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x05\x02\x05\x01\x03\x04\x01\x01\x02\x04\x03\x01\x02\x02", // 𥷢
+ 0x25de3: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x02\x05\x01\x03\x04\x02\x05\x01\x01\x05\x03\x05\x04", // 𥷣
+ 0x25de4: "\x03\x01\x04\x03\x01\x04\x01\x03\x04\x04\x03\x01\x01\x02\x03\x05\x04\x01\x01\x01\x02\x05\x01", // 𥷤
+ 0x25de5: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x04\x03\x01\x02\x03\x04", // 𥷥
+ 0x25de6: "\x03\x01\x04\x03\x01\x04\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x02\x05\x01\x01\x01\x02", // 𥷦
+ 0x25de7: "\x03\x01\x04\x03\x01\x04\x04\x04\x01\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𥷧
+ 0x25de8: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01", // 𥷨
+ 0x25de9: "\x03\x01\x04\x03\x01\x04\x04\x01\x03\x04\x03\x04\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𥷩
+ 0x25dea: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x01\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 𥷪
+ 0x25deb: "\x03\x01\x04\x03\x01\x04\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x01\x02\x05\x01", // 𥷫
+ 0x25dec: "\x03\x01\x04\x03\x01\x04\x02\x01\x02\x01\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𥷬
+ 0x25ded: "\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x01\x02\x03\x04\x02\x05\x03\x04\x03\x04\x03\x01\x03\x04", // 𥷭
+ 0x25dee: "\x03\x01\x04\x03\x01\x04\x03\x04\x04\x03\x02\x05\x02\x02\x01\x05\x01\x01\x05\x04\x01\x02\x04", // 𥷮
+ 0x25def: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x01\x02\x02\x01\x03\x04\x02\x05\x01\x01\x01\x01\x01\x02", // 𥷯
+ 0x25df0: "\x03\x01\x04\x03\x01\x04\x04\x04\x01\x01\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 𥷰
+ 0x25df1: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x02\x02\x01\x03\x03\x02\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 𥷱
+ 0x25df2: "\x03\x01\x04\x03\x01\x04\x03\x03\x02\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x03\x04", // 𥷲
+ 0x25df3: "\x03\x01\x04\x03\x01\x04\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x01\x05", // 𥷳
+ 0x25df4: "\x03\x01\x04\x03\x01\x04\x01\x03\x04\x04\x03\x01\x01\x01\x02\x03\x05\x04\x01\x01\x01\x02\x05\x01", // 𥷴
+ 0x25df5: "\x03\x01\x04\x03\x01\x04\x04\x01\x05\x02\x05\x02\x02\x01\x01\x02\x02\x01\x01\x01\x01\x05\x01\x05", // 𥷵
+ 0x25df6: "\x03\x01\x04\x03\x01\x04\x04\x01\x05\x02\x05\x02\x02\x01\x03\x05\x04\x01\x05\x03\x01\x03\x05\x04", // 𥷶
+ 0x25df7: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 𥷷
+ 0x25df8: "\x03\x01\x04\x03\x01\x04\x03\x01\x01\x02\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x02\x05\x01\x01", // 𥷸
+ 0x25df9: "\x03\x01\x02\x03\x01\x02\x03\x01\x02\x03\x01\x02\x03\x01\x02\x03\x01\x02\x03\x01\x02\x03\x01\x02", // 𥷹
+ 0x25dfa: "\x03\x01\x04\x03\x01\x04\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 𥷺
+ 0x25dfb: "\x03\x01\x04\x03\x01\x04\x01\x04\x05\x02\x04\x04\x04\x04\x04\x03\x01\x02\x03\x04\x04\x05\x04", // 𥷻
+ 0x25dfc: "\x03\x01\x04\x03\x01\x04\x04\x01\x02\x05\x01\x02\x03\x04\x01\x03\x05\x04\x02\x05\x01\x02\x01\x03\x04", // 𥷼
+ 0x25dfd: "\x03\x01\x04\x03\x01\x04\x05\x01\x03\x01\x02\x02\x01\x03\x04\x03\x05\x05\x04\x02\x05\x03\x04\x03\x04", // 𥷽
+ 0x25dfe: "\x03\x01\x04\x03\x01\x04\x02\x05\x02\x02\x01\x05\x04\x03\x05\x04\x01\x01\x05\x01\x05\x04\x04\x04\x04", // 𥷾
+ 0x25dff: "\x03\x01\x04\x03\x01\x04\x05\x05\x05\x02\x05\x01\x02\x01\x04\x01\x03\x01\x02\x02\x01\x04\x04\x04\x04", // 𥷿
+ 0x25e00: "\x03\x01\x04\x03\x01\x04\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x01\x02\x01\x04", // 𥸀
+ 0x25e01: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𥸁
+ 0x25e02: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x05\x01\x01\x03\x05\x01\x01\x02\x05\x01\x01\x03\x05\x05\x04", // 𥸂
+ 0x25e03: "\x03\x01\x04\x03\x01\x04\x03\x02\x01\x05\x01\x01\x01\x02\x01\x04\x03\x01\x02\x03\x04\x03\x05\x05\x04", // 𥸃
+ 0x25e04: "\x03\x01\x04\x03\x01\x04\x04\x01\x01\x01\x02\x05\x01\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x01", // 𥸄
+ 0x25e05: "\x03\x01\x04\x03\x01\x04\x03\x02\x05\x01\x01\x01\x04\x04\x05\x03\x05\x02\x05\x02\x05\x04\x05\x04", // 𥸅
+ 0x25e06: "\x03\x01\x04\x03\x01\x04\x03\x05\x01\x01\x05\x05\x05\x02\x05\x03\x04\x01\x05\x04\x04\x05\x04\x04\x05", // 𥸆
+ 0x25e07: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x05\x01\x01\x03\x02\x05\x01\x03\x05\x04\x01\x03\x05\x05\x04", // 𥸇
+ 0x25e08: "\x03\x01\x04\x03\x01\x04\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𥸈
+ 0x25e09: "\x03\x01\x04\x03\x01\x04\x04\x01\x04\x03\x01\x03\x05\x04\x01\x01\x05\x01\x05\x01\x01\x01\x01\x02\x03\x04", // 𥸉
+ 0x25e0a: "\x03\x01\x04\x03\x01\x04\x04\x01\x04\x03\x01\x03\x05\x03\x03\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𥸊
+ 0x25e0b: "\x03\x01\x04\x03\x01\x04\x03\x02\x01\x05\x01\x01\x01\x02\x01\x03\x05\x05\x04\x04\x03\x01\x02\x03\x04", // 𥸋
+ 0x25e0c: "\x03\x01\x04\x03\x01\x04\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𥸌
+ 0x25e0d: "\x03\x01\x04\x03\x01\x04\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 𥸍
+ 0x25e0e: "\x03\x01\x04\x03\x01\x04\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𥸎
+ 0x25e0f: "\x03\x01\x04\x03\x01\x04\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x03\x05\x04\x01\x05\x03\x01\x03\x05\x04", // 𥸏
+ 0x25e10: "\x03\x01\x04\x03\x01\x04\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x01\x02\x01\x03\x05\x04\x02\x05\x01", // 𥸐
+ 0x25e11: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x03\x05\x02\x05\x01", // 𥸑
+ 0x25e12: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 𥸒
+ 0x25e13: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01", // 𥸓
+ 0x25e14: "\x03\x01\x04\x03\x01\x04\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03\x04", // 𥸔
+ 0x25e15: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 𥸕
+ 0x25e16: "\x03\x01\x04\x03\x01\x04\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x02\x05\x01\x01\x02\x05\x01\x05\x02\x02", // 𥸖
+ 0x25e17: "\x03\x01\x04\x03\x01\x04\x04\x04\x01\x01\x02\x05\x04\x01\x02\x05\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05", // 𥸗
+ 0x25e18: "\x03\x01\x04\x03\x01\x04\x04\x04\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𥸘
+ 0x25e19: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x01\x02\x01\x04\x01\x04\x03\x01\x03\x05\x04\x01\x01\x05\x01\x05\x01\x01\x01", // 𥸙
+ 0x25e1a: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𥸚
+ 0x25e1b: "\x03\x01\x04\x03\x01\x04\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x02\x05\x01\x02\x01\x03\x04", // 𥸛
+ 0x25e1c: "\x03\x01\x04\x03\x01\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05\x05\x05\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𥸜
+ 0x25e1d: "\x03\x01\x04\x03\x01\x04\x04\x01\x01\x01\x02\x05\x01\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𥸝
+ 0x25e1e: "\x03\x01\x04\x03\x01\x04\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x02\x02\x01\x01\x01\x03\x04", // 𥸞
+ 0x25e1f: "\x03\x01\x04\x03\x01\x04\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x04\x04\x05\x01\x02\x01\x03\x04", // 𥸟
+ 0x25e20: "\x03\x01\x04\x03\x01\x04\x01\x02\x05\x01\x02\x04\x05\x02\x05\x01\x01\x02\x05\x01\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01", // 𥸠
+ 0x25e21: "\x03\x01\x04\x03\x01\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x03\x05\x04\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𥸡
+ 0x25e22: "\x03\x01\x04\x03\x01\x04\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𥸢
+ 0x25e23: "\x03\x01\x04\x03\x01\x04\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x05\x01\x03\x03\x05\x04\x01\x01\x01\x02\x05\x01", // 𥸣
+ 0x25e24: "\x03\x01\x04\x03\x01\x04\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𥸤
+ 0x25e25: "\x05\x04\x03\x01\x02\x03\x04", // 𥸥
+ 0x25e26: "\x05\x04\x03\x01\x02\x03\x04", // 𥸦
+ 0x25e27: "\x04\x03\x01\x02\x03\x04\x01\x02", // 𥸧
+ 0x25e28: "\x05\x04\x03\x01\x02\x03\x04\x01", // 𥸨
+ 0x25e29: "\x04\x03\x01\x02\x03\x04\x05\x04", // 𥸩
+ 0x25e2a: "\x04\x03\x01\x02\x03\x04\x03\x04", // 𥸪
+ 0x25e2b: "\x03\x03\x05\x04\x03\x01\x02\x03\x04", // 𥸫
+ 0x25e2c: "\x04\x03\x01\x02\x03\x04\x05\x02", // 𥸬
+ 0x25e2d: "\x04\x03\x01\x02\x03\x04\x01\x03\x02", // 𥸭
+ 0x25e2e: "\x01\x02\x01\x04\x03\x01\x02\x03\x04", // 𥸮
+ 0x25e2f: "\x04\x03\x01\x02\x03\x04\x01\x05\x03", // 𥸯
+ 0x25e30: "\x04\x03\x01\x02\x03\x04\x01\x01\x02", // 𥸰
+ 0x25e31: "\x04\x03\x01\x02\x03\x04\x03\x03\x05", // 𥸱
+ 0x25e32: "\x04\x03\x01\x02\x03\x04\x05\x01\x05", // 𥸲
+ 0x25e33: "\x04\x03\x01\x02\x03\x04\x01\x02\x05\x04", // 𥸳
+ 0x25e34: "\x04\x03\x01\x02\x03\x04\x01\x02\x05\x05", // 𥸴
+ 0x25e35: "\x04\x03\x01\x02\x03\x04\x01\x05\x02\x05", // 𥸵
+ 0x25e36: "\x04\x03\x01\x02\x03\x04\x01\x01\x03\x02", // 𥸶
+ 0x25e37: "\x04\x03\x01\x02\x03\x04\x03\x05\x03\x04", // 𥸷
+ 0x25e38: "\x04\x03\x01\x02\x03\x04\x05\x01\x03\x04", // 𥸸
+ 0x25e39: "\x04\x03\x01\x02\x03\x04\x04\x01\x03\x04", // 𥸹
+ 0x25e3a: "\x04\x03\x01\x02\x03\x04\x03\x02\x01\x05", // 𥸺
+ 0x25e3b: "\x04\x03\x01\x02\x03\x04\x03\x05\x02\x01", // 𥸻
+ 0x25e3c: "\x04\x03\x01\x02\x03\x04\x03\x05\x03\x04", // 𥸼
+ 0x25e3d: "\x04\x03\x01\x02\x03\x04\x03\x01\x01\x05", // 𥸽
+ 0x25e3e: "\x04\x03\x01\x02\x03\x04\x03\x05\x05\x02", // 𥸾
+ 0x25e3f: "\x05\x02\x01\x05\x04\x03\x01\x02\x03\x04", // 𥸿
+ 0x25e40: "\x04\x03\x01\x02\x03\x04\x04\x05\x04\x04", // 𥹀
+ 0x25e41: "\x04\x03\x01\x02\x03\x04\x03\x01\x02\x01\x01", // 𥹁
+ 0x25e42: "\x04\x03\x01\x02\x03\x04\x01\x03\x02\x04\x01", // 𥹂
+ 0x25e43: "\x04\x03\x01\x02\x03\x04\x03\x02\x01\x02\x04", // 𥹃
+ 0x25e44: "\x02\x01\x04\x05\x03\x04\x03\x01\x02\x03\x04", // 𥹄
+ 0x25e45: "\x04\x03\x01\x02\x03\x04\x04\x05\x04\x03\x04", // 𥹅
+ 0x25e46: "\x04\x03\x01\x02\x03\x04\x05\x01\x03\x01\x05", // 𥹆
+ 0x25e47: "\x04\x03\x01\x02\x03\x04\x05\x04\x01\x03\x02", // 𥹇
+ 0x25e48: "\x04\x03\x01\x02\x03\x04\x04\x04\x05\x03\x05", // 𥹈
+ 0x25e49: "\x04\x03\x01\x02\x03\x04\x02\x05\x05\x04\x01", // 𥹉
+ 0x25e4a: "\x04\x03\x01\x02\x03\x04\x02\x05\x03\x05\x01", // 𥹊
+ 0x25e4b: "\x04\x03\x01\x02\x03\x04\x05\x04\x02\x05\x01", // 𥹋
+ 0x25e4c: "\x05\x03\x02\x05\x01\x04\x03\x01\x02\x03\x04", // 𥹌
+ 0x25e4d: "\x04\x03\x01\x02\x03\x04\x04\x04\x05\x01\x02", // 𥹍
+ 0x25e4e: "\x04\x03\x01\x02\x03\x04\x04\x03\x01\x01\x02", // 𥹎
+ 0x25e4f: "\x01\x03\x05\x04\x05\x04\x04\x03\x01\x02\x03\x04", // 𥹏
+ 0x25e50: "\x02\x01\x05\x03\x03\x04\x03\x01\x02\x03\x04", // 𥹐
+ 0x25e51: "\x04\x03\x01\x02\x03\x04\x01\x02\x02\x01\x05", // 𥹑
+ 0x25e52: "\x04\x03\x01\x02\x03\x04\x01\x04\x03\x01\x02", // 𥹒
+ 0x25e53: "\x04\x03\x01\x02\x03\x04\x01\x02\x01\x05\x04", // 𥹓
+ 0x25e54: "\x04\x03\x01\x02\x03\x04\x01\x03\x05\x04\x04", // 𥹔
+ 0x25e55: "\x04\x03\x01\x02\x03\x04\x03\x04\x01\x05\x04", // 𥹕
+ 0x25e56: "\x04\x03\x01\x02\x03\x04\x05\x03\x02\x05\x04", // 𥹖
+ 0x25e57: "\x04\x03\x01\x02\x03\x04\x05\x02\x05\x02\x05", // 𥹗
+ 0x25e58: "\x04\x03\x01\x02\x03\x04\x01\x02\x05\x03\x04", // 𥹘
+ 0x25e59: "\x04\x03\x01\x02\x03\x04\x05\x03\x02\x05\x01", // 𥹙
+ 0x25e5a: "\x04\x03\x01\x02\x03\x04\x01\x02\x05\x01\x01\x01", // 𥹚
+ 0x25e5b: "\x03\x05\x03\x01\x03\x04\x04\x03\x01\x02\x03\x04", // 𥹛
+ 0x25e5c: "\x04\x03\x01\x02\x03\x04\x04\x01\x03\x04\x03\x04", // 𥹜
+ 0x25e5d: "\x04\x03\x01\x02\x03\x04\x03\x02\x05\x02\x05\x01", // 𥹝
+ 0x25e5e: "\x04\x03\x01\x02\x03\x04\x02\x05\x01\x01\x05\x03", // 𥹞
+ 0x25e5f: "\x02\x01\x02\x05\x05\x04\x04\x03\x01\x02\x03\x04", // 𥹟
+ 0x25e60: "\x04\x03\x01\x02\x03\x04\x03\x05\x04\x03\x05\x04", // 𥹠
+ 0x25e61: "\x05\x03\x01\x02\x05\x01\x04\x03\x01\x02\x03\x04", // 𥹡
+ 0x25e62: "\x04\x03\x01\x02\x03\x04\x01\x02\x02\x01\x01\x01", // 𥹢
+ 0x25e63: "\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x02\x01", // 𥹣
+ 0x25e64: "\x04\x03\x01\x02\x03\x04\x02\x05\x02\x02\x01\x01", // 𥹤
+ 0x25e65: "\x04\x03\x01\x02\x03\x04\x02\x04\x03\x05\x01\x01", // 𥹥
+ 0x25e66: "\x04\x04\x01\x03\x05\x04\x04\x03\x01\x02\x03\x04", // 𥹦
+ 0x25e67: "\x04\x03\x01\x02\x03\x04\x05\x01\x01\x01\x01\x02", // 𥹧
+ 0x25e68: "\x04\x03\x01\x02\x03\x04\x01\x01\x02\x01\x05\x04", // 𥹨
+ 0x25e69: "\x04\x03\x01\x02\x03\x04\x01\x02\x01\x01\x02\x04", // 𥹩
+ 0x25e6a: "\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 𥹪
+ 0x25e6b: "\x04\x03\x01\x02\x03\x04\x04\x03\x01\x02\x03\x04", // 𥹫
+ 0x25e6c: "\x04\x03\x01\x02\x03\x04\x01\x02\x01\x03\x01\x05", // 𥹬
+ 0x25e6d: "\x04\x04\x01\x05\x03\x04\x04\x03\x01\x02\x03\x04", // 𥹭
+ 0x25e6e: "\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 𥹮
+ 0x25e6f: "\x04\x03\x01\x02\x03\x04\x01\x01\x01\x02\x03\x04", // 𥹯
+ 0x25e70: "\x04\x03\x01\x02\x03\x04\x05\x03\x01\x03\x05\x04", // 𥹰
+ 0x25e71: "\x04\x03\x01\x02\x03\x04\x05\x05\x04\x05\x03", // 𥹱
+ 0x25e72: "\x04\x03\x01\x02\x03\x04\x03\x05\x02\x05\x01\x03\x05", // 𥹲
+ 0x25e73: "\x04\x03\x01\x02\x03\x04\x04\x04\x05\x01\x01\x03\x05", // 𥹳
+ 0x25e74: "\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01\x02\x03\x03", // 𥹴
+ 0x25e75: "\x04\x03\x01\x02\x03\x04\x01\x02\x05\x01\x02\x03\x04", // 𥹵
+ 0x25e76: "\x04\x03\x01\x02\x03\x04\x02\x04\x03\x03\x05\x04\x01", // 𥹶
+ 0x25e77: "\x04\x03\x01\x02\x03\x04\x04\x01\x05\x04\x03\x02\x05", // 𥹷
+ 0x25e78: "\x04\x03\x01\x02\x03\x04\x01\x02\x04\x05\x05\x02\x01", // 𥹸
+ 0x25e79: "\x05\x01\x03\x03\x01\x01\x05\x04\x03\x01\x02\x03\x04", // 𥹹
+ 0x25e7a: "\x04\x01\x03\x05\x01\x01\x02\x04\x03\x01\x02\x03\x04", // 𥹺
+ 0x25e7b: "\x04\x03\x01\x02\x03\x04\x04\x01\x05\x04\x01\x03\x02", // 𥹻
+ 0x25e7c: "\x04\x03\x01\x02\x03\x04\x05\x04\x05\x02\x01\x03\x04", // 𥹼
+ 0x25e7d: "\x04\x03\x01\x02\x03\x04\x03\x04\x04\x03\x01\x02\x04", // 𥹽
+ 0x25e7e: "\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x01\x01\x02", // 𥹾
+ 0x25e7f: "\x04\x03\x01\x02\x03\x04\x04\x03\x03\x04\x01\x02\x01", // 𥹿
+ 0x25e80: "\x04\x03\x01\x02\x03\x04\x04\x03\x05\x01\x05\x02\x03", // 𥺀
+ 0x25e81: "\x04\x03\x01\x02\x03\x04\x04\x01\x03\x01\x02\x01\x04", // 𥺁
+ 0x25e82: "\x04\x03\x01\x02\x03\x04\x02\x05\x03\x05\x02\x05\x01", // 𥺂
+ 0x25e83: "\x04\x03\x01\x02\x03\x04\x01\x02\x01\x04\x05\x04\x04", // 𥺃
+ 0x25e84: "\x04\x03\x01\x02\x03\x04\x01\x02\x01\x03\x05\x02\x01", // 𥺄
+ 0x25e85: "\x04\x03\x01\x02\x03\x04\x01\x01\x01\x03\x01\x02\x04", // 𥺅
+ 0x25e86: "\x04\x03\x01\x02\x03\x04\x02\x05\x01\x03\x01\x02\x01", // 𥺆
+ 0x25e87: "\x04\x03\x01\x02\x03\x04\x04\x03\x01\x02\x03\x04\x05", // 𥺇
+ 0x25e88: "\x04\x03\x01\x02\x03\x04\x01\x02\x01\x03\x03\x01\x02", // 𥺈
+ 0x25e89: "\x04\x03\x01\x02\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 𥺉
+ 0x25e8a: "\x04\x03\x01\x02\x03\x04\x03\x01\x02\x01\x02\x05\x01", // 𥺊
+ 0x25e8b: "\x05\x02\x02\x05\x02\x03\x04\x04\x03\x01\x02\x03\x04", // 𥺋
+ 0x25e8c: "\x04\x03\x01\x02\x03\x04\x03\x04\x01\x01\x02\x03\x04", // 𥺌
+ 0x25e8d: "\x04\x03\x01\x02\x03\x04\x04\x05\x03\x04\x01\x01\x02", // 𥺍
+ 0x25e8e: "\x04\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𥺎
+ 0x25e8f: "\x04\x03\x01\x02\x03\x04\x02\x05\x01\x03\x05\x03\x04", // 𥺏
+ 0x25e90: "\x04\x03\x01\x02\x03\x04\x02\x05\x01\x03\x03\x01\x02", // 𥺐
+ 0x25e91: "\x04\x03\x01\x02\x03\x04\x05\x01\x01\x04\x05\x05\x04", // 𥺑
+ 0x25e92: "\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x01\x05", // 𥺒
+ 0x25e93: "\x04\x03\x01\x02\x03\x04\x02\x05\x01\x03\x02\x05\x01", // 𥺓
+ 0x25e94: "\x02\x05\x01\x03\x05\x03\x04\x04\x03\x01\x02\x03\x04", // 𥺔
+ 0x25e95: "\x04\x03\x01\x02\x03\x04\x01\x02\x01\x05\x02\x01\x05", // 𥺕
+ 0x25e96: "\x04\x03\x01\x02\x03\x04\x01\x03\x02\x04\x02\x05\x01", // 𥺖
+ 0x25e97: "\x04\x03\x01\x02\x03\x04\x01\x02\x05\x02\x02\x01\x01", // 𥺗
+ 0x25e98: "\x04\x03\x01\x02\x03\x04\x03\x01\x01\x01\x02\x01\x01\x01", // 𥺘
+ 0x25e99: "\x04\x03\x01\x02\x03\x04\x01\x02\x01\x03\x05\x03\x05\x04", // 𥺙
+ 0x25e9a: "\x04\x03\x01\x02\x03\x04\x01\x02\x03\x04\x03\x03\x01\x02", // 𥺚
+ 0x25e9b: "\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x04\x01\x02", // 𥺛
+ 0x25e9c: "\x04\x04\x01\x05\x01\x03\x01\x05\x04\x03\x01\x02\x03\x04", // 𥺜
+ 0x25e9d: "\x04\x03\x01\x02\x03\x04\x03\x05\x01\x02\x01\x02\x05\x01", // 𥺝
+ 0x25e9e: "\x04\x03\x01\x02\x03\x04\x04\x01\x05\x04\x03\x05\x04\x01", // 𥺞
+ 0x25e9f: "\x02\x01\x01\x01\x02\x01\x01\x01\x04\x03\x01\x02\x03\x04", // 𥺟
+ 0x25ea0: "\x01\x02\x05\x01\x02\x02\x04\x05\x04\x03\x01\x02\x03\x04", // 𥺠
+ 0x25ea1: "\x04\x03\x01\x02\x03\x04\x05\x02\x03\x01\x05\x02\x05", // 𥺡
+ 0x25ea2: "\x04\x03\x01\x02\x03\x04\x03\x05\x04\x02\x05\x01\x02\x01", // 𥺢
+ 0x25ea3: "\x04\x03\x01\x02\x03\x04\x05\x02\x01\x01\x05\x02\x01\x01", // 𥺣
+ 0x25ea4: "\x02\x01\x01\x02\x03\x04\x05\x04\x04\x03\x01\x02\x03\x04", // 𥺤
+ 0x25ea5: "\x04\x03\x01\x02\x03\x04\x04\x04\x05\x02\x05\x01\x01\x01", // 𥺥
+ 0x25ea6: "\x04\x03\x01\x02\x03\x04\x04\x01\x03\x02\x01\x02\x05\x01", // 𥺦
+ 0x25ea7: "\x04\x03\x01\x02\x03\x04\x04\x01\x03\x05\x01\x01\x03\x04", // 𥺧
+ 0x25ea8: "\x04\x03\x01\x02\x03\x04\x04\x01\x03\x01\x02\x02\x05\x01", // 𥺨
+ 0x25ea9: "\x04\x03\x01\x02\x03\x04\x04\x03\x01\x05\x05\x04\x02\x04", // 𥺩
+ 0x25eaa: "\x04\x03\x01\x02\x03\x04\x04\x01\x03\x04\x03\x05\x01\x01", // 𥺪
+ 0x25eab: "\x04\x03\x01\x02\x03\x04\x01\x04\x03\x01\x02\x03\x04\x05", // 𥺫
+ 0x25eac: "\x04\x03\x01\x02\x03\x04\x05\x02\x01\x02\x05\x02\x02\x01", // 𥺬
+ 0x25ead: "\x04\x03\x01\x02\x03\x04\x01\x03\x04\x04\x03\x01\x01\x05", // 𥺭
+ 0x25eae: "\x04\x03\x01\x02\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01", // 𥺮
+ 0x25eaf: "\x04\x03\x01\x02\x03\x04\x01\x02\x01\x02\x03\x05\x05\x03", // 𥺯
+ 0x25eb0: "\x04\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x03\x04", // 𥺰
+ 0x25eb1: "\x04\x03\x01\x02\x03\x04\x02\x01\x01\x02\x03\x04\x05\x04", // 𥺱
+ 0x25eb2: "\x04\x03\x01\x02\x03\x04\x03\x04\x04\x03\x05\x01\x01\x02", // 𥺲
+ 0x25eb3: "\x04\x03\x01\x02\x03\x04\x02\x05\x01\x05\x03\x05\x04\x01", // 𥺳
+ 0x25eb4: "\x04\x03\x01\x02\x03\x04\x03\x04\x01\x05\x04\x05\x04\x04", // 𥺴
+ 0x25eb5: "\x04\x03\x01\x02\x03\x04\x03\x05\x05\x04\x02\x05\x01\x01", // 𥺵
+ 0x25eb6: "\x04\x03\x01\x02\x03\x04\x05\x01\x03\x03\x01\x01\x03\x04", // 𥺶
+ 0x25eb7: "\x04\x03\x01\x02\x03\x04\x05\x01\x03\x05\x02\x02\x05\x02", // 𥺷
+ 0x25eb8: "\x04\x03\x01\x02\x03\x04\x05\x02\x01\x05\x02\x05\x01\x01", // 𥺸
+ 0x25eb9: "\x04\x03\x01\x02\x03\x04\x04\x04\x05\x03\x05\x04\x05\x05", // 𥺹
+ 0x25eba: "\x04\x03\x01\x02\x03\x04\x02\x05\x02\x04\x01\x04\x03\x01", // 𥺺
+ 0x25ebb: "\x04\x03\x01\x02\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𥺻
+ 0x25ebc: "\x04\x03\x01\x02\x03\x04\x01\x02\x01\x05\x05\x01\x02\x01", // 𥺼
+ 0x25ebd: "\x04\x03\x01\x02\x03\x04\x03\x04\x01\x02\x05\x01\x02\x02", // 𥺽
+ 0x25ebe: "\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01\x02\x05\x01\x01", // 𥺾
+ 0x25ebf: "\x04\x03\x01\x02\x03\x04\x01\x03\x04\x01\x02\x05\x01\x02", // 𥺿
+ 0x25ec0: "\x04\x03\x01\x02\x03\x04\x03\x05\x04\x02\x04\x02\x05\x01", // 𥻀
+ 0x25ec1: "\x04\x03\x01\x02\x03\x04\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 𥻁
+ 0x25ec2: "\x04\x03\x01\x02\x03\x04\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 𥻂
+ 0x25ec3: "\x04\x03\x01\x02\x03\x04\x01\x02\x05\x01\x02\x03\x04\x02\x02", // 𥻃
+ 0x25ec4: "\x04\x03\x01\x02\x03\x04\x01\x05\x03\x05\x03\x02\x05\x01\x01", // 𥻄
+ 0x25ec5: "\x04\x03\x01\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 𥻅
+ 0x25ec6: "\x02\x01\x02\x05\x03\x04\x03\x04\x01\x04\x03\x01\x02\x03\x04", // 𥻆
+ 0x25ec7: "\x04\x03\x01\x02\x03\x04\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 𥻇
+ 0x25ec8: "\x04\x03\x01\x02\x03\x04\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 𥻈
+ 0x25ec9: "\x04\x03\x01\x02\x03\x04\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 𥻉
+ 0x25eca: "\x01\x05\x03\x01\x01\x03\x04\x05\x04\x04\x03\x01\x02\x03\x04", // 𥻊
+ 0x25ecb: "\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02\x03\x05", // 𥻋
+ 0x25ecc: "\x01\x02\x05\x01\x02\x03\x04\x02\x02\x04\x03\x01\x02\x03\x04", // 𥻌
+ 0x25ecd: "\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x02\x05\x01\x01", // 𥻍
+ 0x25ece: "\x04\x03\x01\x02\x03\x04\x01\x02\x02\x01\x03\x04\x01\x02\x01", // 𥻎
+ 0x25ecf: "\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 𥻏
+ 0x25ed0: "\x04\x03\x01\x02\x03\x04\x05\x01\x03\x04\x03\x01\x02\x03\x04", // 𥻐
+ 0x25ed1: "\x04\x03\x01\x02\x03\x04\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𥻑
+ 0x25ed2: "\x04\x03\x01\x02\x03\x04\x03\x05\x04\x04\x03\x01\x02\x03\x04", // 𥻒
+ 0x25ed3: "\x04\x03\x01\x02\x03\x04\x01\x01\x03\x05\x03\x04\x02\x05\x01", // 𥻓
+ 0x25ed4: "\x04\x03\x01\x02\x03\x04\x01\x01\x02\x02\x01\x01\x03\x02\x02", // 𥻔
+ 0x25ed5: "\x04\x03\x01\x02\x03\x04\x04\x03\x03\x04\x01\x01\x02\x03\x04", // 𥻕
+ 0x25ed6: "\x04\x03\x01\x02\x03\x04\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 𥻖
+ 0x25ed7: "\x04\x03\x01\x02\x03\x04\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 𥻗
+ 0x25ed8: "\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02\x05\x05\x05", // 𥻘
+ 0x25ed9: "\x04\x03\x01\x02\x03\x04\x04\x03\x01\x01\x02\x01\x01\x03\x04", // 𥻙
+ 0x25eda: "\x04\x03\x01\x02\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 𥻚
+ 0x25edb: "\x04\x03\x01\x02\x03\x04\x01\x02\x05\x03\x05\x01\x01\x02\x01", // 𥻛
+ 0x25edc: "\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x01\x03\x04\x04", // 𥻜
+ 0x25edd: "\x04\x03\x01\x02\x03\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𥻝
+ 0x25ede: "\x04\x03\x01\x02\x03\x04\x04\x04\x05\x03\x05\x04\x02\x05\x01", // 𥻞
+ 0x25edf: "\x04\x03\x01\x02\x03\x04\x01\x03\x02\x05\x02\x02\x01\x03\x04", // 𥻟
+ 0x25ee0: "\x04\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x03\x04\x03", // 𥻠
+ 0x25ee1: "\x04\x03\x01\x02\x03\x04\x05\x02\x01\x03\x02\x05\x01\x01\x01", // 𥻡
+ 0x25ee2: "\x04\x03\x01\x02\x03\x04\x02\x05\x01\x03\x02\x05\x01\x01\x01", // 𥻢
+ 0x25ee3: "\x04\x03\x01\x02\x03\x04\x01\x02\x01\x01\x02\x01\x01\x02\x04", // 𥻣
+ 0x25ee4: "\x04\x03\x01\x02\x03\x04\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03", // 𥻤
+ 0x25ee5: "\x04\x03\x01\x02\x03\x04\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𥻥
+ 0x25ee6: "\x03\x04\x01\x02\x03\x05\x04\x03\x05\x05\x04\x04\x03\x01\x02\x03\x04", // 𥻦
+ 0x25ee7: "\x04\x03\x01\x02\x03\x04\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 𥻧
+ 0x25ee8: "\x04\x03\x01\x02\x03\x04\x01\x02\x04\x05\x05\x05\x04\x02\x03\x04", // 𥻨
+ 0x25ee9: "\x04\x03\x01\x02\x03\x04\x04\x05\x02\x05\x01\x01\x04\x01\x03\x04", // 𥻩
+ 0x25eea: "\x04\x03\x01\x02\x03\x04\x02\x01\x01\x02\x01\x01\x02\x01\x03\x04", // 𥻪
+ 0x25eeb: "\x05\x04\x03\x01\x02\x03\x04\x01\x05\x04\x03\x01\x02\x03\x04\x01", // 𥻫
+ 0x25eec: "\x04\x03\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𥻬
+ 0x25eed: "\x04\x03\x01\x02\x03\x04\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03", // 𥻭
+ 0x25eee: "\x04\x03\x01\x02\x03\x04\x04\x04\x05\x04\x01\x04\x03\x01\x01\x02", // 𥻮
+ 0x25eef: "\x04\x03\x01\x02\x03\x04\x02\x05\x01\x05\x01\x02\x02\x01\x01\x01", // 𥻯
+ 0x25ef0: "\x04\x03\x01\x02\x03\x04\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01", // 𥻰
+ 0x25ef1: "\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𥻱
+ 0x25ef2: "\x04\x03\x01\x02\x03\x04\x03\x04\x01\x05\x01\x01\x03\x02\x05\x01", // 𥻲
+ 0x25ef3: "\x01\x02\x01\x01\x01\x02\x03\x04\x03\x04\x04\x03\x01\x02\x03\x04", // 𥻳
+ 0x25ef4: "\x01\x03\x02\x05\x01\x01\x01\x03\x05\x04\x04\x03\x01\x02\x03\x04", // 𥻴
+ 0x25ef5: "\x04\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x01\x01\x02\x04", // 𥻵
+ 0x25ef6: "\x04\x03\x01\x02\x03\x04\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 𥻶
+ 0x25ef7: "\x04\x03\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x03\x04\x01\x02", // 𥻷
+ 0x25ef8: "\x04\x03\x01\x02\x03\x04\x02\x05\x02\x02\x01\x01\x02\x03\x04\x01", // 𥻸
+ 0x25ef9: "\x04\x03\x01\x02\x03\x04\x01\x02\x02\x03\x04\x01\x02\x03\x04", // 𥻹
+ 0x25efa: "\x04\x03\x01\x02\x03\x04\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04", // 𥻺
+ 0x25efb: "\x04\x03\x01\x02\x03\x04\x05\x05\x04\x04\x04\x04\x02\x05\x03\x04", // 𥻻
+ 0x25efc: "\x04\x03\x01\x02\x03\x04\x03\x02\x05\x01\x01\x05\x04\x04\x04\x04", // 𥻼
+ 0x25efd: "\x04\x03\x01\x02\x03\x04\x01\x03\x04\x04\x01\x02\x01\x02\x05\x01", // 𥻽
+ 0x25efe: "\x04\x03\x01\x02\x03\x04\x04\x03\x01\x02\x03\x04\x03\x05\x04", // 𥻾
+ 0x25eff: "\x04\x03\x01\x02\x03\x04\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 𥻿
+ 0x25f00: "\x04\x03\x01\x02\x03\x04\x01\x03\x02\x01\x01\x02\x03\x04\x05\x03\x04", // 𥼀
+ 0x25f01: "\x04\x03\x01\x02\x03\x04\x04\x01\x05\x05\x04\x04\x01\x03\x04\x01\x02", // 𥼁
+ 0x25f02: "\x04\x03\x01\x02\x03\x04\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𥼂
+ 0x25f03: "\x04\x03\x01\x02\x03\x04\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𥼃
+ 0x25f04: "\x04\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x04\x03\x01\x02\x03\x04", // 𥼄
+ 0x25f05: "\x01\x05\x02\x03\x03\x01\x03\x04\x01\x03\x04\x03\x01\x02\x03\x04", // 𥼅
+ 0x25f06: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04\x04\x03\x01\x02\x03\x04", // 𥼆
+ 0x25f07: "\x04\x03\x01\x02\x03\x04\x05\x04\x03\x03\x04\x02\x05\x02\x02\x05\x02", // 𥼇
+ 0x25f08: "\x04\x03\x01\x02\x03\x04\x05\x04\x03\x03\x04\x02\x05\x02\x05\x02\x03", // 𥼈
+ 0x25f09: "\x04\x03\x01\x02\x03\x04\x01\x02\x02\x01\x03\x04\x02\x05\x02\x01\x01", // 𥼉
+ 0x25f0a: "\x04\x03\x01\x02\x03\x04\x04\x01\x03\x03\x02\x05\x01\x01\x03\x01\x02", // 𥼊
+ 0x25f0b: "\x01\x01\x02\x03\x04\x03\x01\x03\x04\x01\x03\x04\x03\x01\x02\x03\x04", // 𥼋
+ 0x25f0c: "\x04\x03\x01\x02\x03\x04\x04\x01\x03\x01\x02\x02\x01\x04\x04\x04\x04", // 𥼌
+ 0x25f0d: "\x04\x03\x01\x02\x03\x04\x04\x04\x05\x03\x02\x01\x03\x02\x05\x01\x01", // 𥼍
+ 0x25f0e: "\x04\x03\x01\x02\x03\x04\x04\x03\x01\x01\x02\x01\x01\x02\x01\x02\x04", // 𥼎
+ 0x25f0f: "\x04\x03\x01\x02\x03\x04\x01\x02\x05\x01\x01\x01\x02\x03\x01\x01\x02", // 𥼏
+ 0x25f10: "\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x05\x01\x01\x01\x02\x03\x04", // 𥼐
+ 0x25f11: "\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x04\x03\x01\x02\x03\x04", // 𥼑
+ 0x25f12: "\x03\x02\x05\x01\x01\x01\x03\x01\x03\x05\x04\x04\x03\x01\x02\x03\x04", // 𥼒
+ 0x25f13: "\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01\x03\x05\x02\x05\x01\x01\x02", // 𥼓
+ 0x25f14: "\x04\x03\x01\x02\x03\x04\x04\x04\x01\x01\x02\x03\x04\x03\x03\x01\x02", // 𥼔
+ 0x25f15: "\x04\x03\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x04\x01\x04\x03\x01", // 𥼕
+ 0x25f16: "\x04\x03\x01\x02\x03\x04\x03\x01\x05\x05\x04\x01\x04\x03\x01\x03\x04", // 𥼖
+ 0x25f17: "\x04\x03\x01\x02\x03\x04\x05\x05\x01\x03\x05\x01\x02\x02\x01\x05\x03\x05", // 𥼗
+ 0x25f18: "\x04\x03\x01\x02\x03\x04\x05\x05\x04\x05\x05\x04\x01\x03\x04\x05\x03\x04", // 𥼘
+ 0x25f19: "\x04\x03\x01\x02\x03\x04\x05\x01\x01\x02\x04\x01\x03\x04\x04\x04\x04\x04", // 𥼙
+ 0x25f1a: "\x04\x03\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 𥼚
+ 0x25f1b: "\x03\x01\x01\x05\x03\x01\x01\x05\x03\x01\x01\x05\x04\x03\x01\x02\x03\x04", // 𥼛
+ 0x25f1c: "\x04\x03\x01\x02\x03\x04\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 𥼜
+ 0x25f1d: "\x04\x03\x01\x02\x03\x04\x03\x04\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 𥼝
+ 0x25f1e: "\x04\x03\x01\x02\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x04\x04\x04\x04", // 𥼞
+ 0x25f1f: "\x04\x03\x01\x02\x03\x04\x02\x05\x02\x02\x01\x03\x02\x03\x04\x03\x04", // 𥼟
+ 0x25f20: "\x04\x03\x01\x02\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01\x02\x03\x04", // 𥼠
+ 0x25f21: "\x04\x03\x01\x02\x03\x04\x03\x05\x01\x03\x05\x01\x02\x02\x01\x05\x03\x05", // 𥼡
+ 0x25f22: "\x04\x03\x01\x02\x03\x04\x01\x02\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04", // 𥼢
+ 0x25f23: "\x04\x03\x01\x02\x03\x04\x03\x01\x01\x02\x02\x02\x02\x01\x04\x04\x04\x04", // 𥼣
+ 0x25f24: "\x04\x03\x01\x02\x03\x04\x01\x02\x02\x01\x01\x01\x03\x04\x03\x03\x01\x02", // 𥼤
+ 0x25f25: "\x04\x03\x01\x02\x03\x04\x01\x02\x05\x01\x02\x01\x03\x05\x04\x04\x04\x04", // 𥼥
+ 0x25f26: "\x04\x03\x01\x02\x03\x04\x01\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x01", // 𥼦
+ 0x25f27: "\x04\x03\x01\x02\x03\x04\x01\x02\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04", // 𥼧
+ 0x25f28: "\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02\x04\x03\x01\x02\x03\x04", // 𥼨
+ 0x25f29: "\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𥼩
+ 0x25f2a: "\x04\x03\x01\x02\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x02\x05\x01\x01", // 𥼪
+ 0x25f2b: "\x04\x03\x01\x02\x03\x04\x03\x05\x04\x03\x05\x04\x04\x03\x01\x02\x03\x04", // 𥼫
+ 0x25f2c: "\x04\x03\x01\x02\x03\x04\x04\x03\x01\x02\x03\x04\x04\x03\x01\x02\x03\x04", // 𥼬
+ 0x25f2d: "\x04\x03\x01\x02\x03\x04\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 𥼭
+ 0x25f2e: "\x04\x03\x01\x02\x03\x04\x05\x05\x04\x04\x04\x04\x04\x03\x01\x02\x03\x04", // 𥼮
+ 0x25f2f: "\x04\x03\x01\x02\x03\x04\x02\x05\x04\x03\x01\x01\x02\x01\x04\x04\x04\x04", // 𥼯
+ 0x25f30: "\x04\x03\x01\x02\x03\x04\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 𥼰
+ 0x25f31: "\x04\x03\x01\x02\x03\x04\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 𥼱
+ 0x25f32: "\x04\x03\x01\x02\x03\x04\x01\x02\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 𥼲
+ 0x25f33: "\x04\x03\x01\x02\x03\x04\x01\x02\x01\x05\x05\x01\x02\x01\x04\x05\x04\x04", // 𥼳
+ 0x25f34: "\x04\x03\x01\x02\x03\x04\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01", // 𥼴
+ 0x25f35: "\x04\x03\x01\x02\x03\x04\x01\x03\x05\x05\x03\x04\x02\x05\x02\x02\x01", // 𥼵
+ 0x25f36: "\x04\x03\x01\x02\x03\x04\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 𥼶
+ 0x25f37: "\x04\x03\x01\x02\x03\x04\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 𥼷
+ 0x25f38: "\x04\x03\x01\x02\x03\x04\x01\x04\x05\x02\x04\x01\x03\x04\x03\x04\x04\x05\x04", // 𥼸
+ 0x25f39: "\x04\x03\x01\x02\x03\x04\x03\x02\x01\x05\x01\x01\x01\x02\x01\x03\x05\x05\x04", // 𥼹
+ 0x25f3a: "\x04\x03\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x04\x01\x04\x03\x01\x01\x02", // 𥼺
+ 0x25f3b: "\x04\x03\x01\x02\x03\x04\x04\x01\x03\x05\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𥼻
+ 0x25f3c: "\x04\x03\x01\x02\x03\x04\x01\x02\x05\x01\x01\x02\x04\x04\x01\x05\x03\x03\x01\x03\x04", // 𥼼
+ 0x25f3d: "\x04\x03\x01\x02\x03\x04\x05\x04\x03\x04\x05\x02\x05\x01\x02\x05\x01\x02\x01", // 𥼽
+ 0x25f3e: "\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 𥼾
+ 0x25f3f: "\x01\x02\x05\x01\x02\x05\x04\x04\x05\x05\x03\x01\x04\x03\x01\x02\x03\x04", // 𥼿
+ 0x25f40: "\x05\x02\x02\x05\x02\x04\x03\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𥽀
+ 0x25f41: "\x04\x03\x01\x02\x03\x04\x03\x04\x04\x05\x01\x01\x05\x04\x03\x05\x03\x04", // 𥽁
+ 0x25f42: "\x03\x01\x01\x05\x01\x01\x01\x02\x01\x03\x05\x05\x04\x04\x03\x01\x02\x03\x04", // 𥽂
+ 0x25f43: "\x04\x03\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x01\x03\x05\x04\x01\x05", // 𥽃
+ 0x25f44: "\x04\x03\x01\x02\x03\x04\x05\x05\x04\x04\x04\x04\x04\x01\x02\x05\x01\x03\x05", // 𥽄
+ 0x25f45: "\x04\x03\x01\x02\x03\x04\x04\x01\x03\x04\x01\x03\x02\x05\x01\x01\x03\x01\x02", // 𥽅
+ 0x25f46: "\x04\x03\x01\x02\x03\x04\x02\x01\x03\x05\x04\x05\x04\x04\x03\x01\x02\x03\x04", // 𥽆
+ 0x25f47: "\x04\x03\x01\x02\x03\x04\x01\x03\x01\x02\x05\x01\x05\x03\x04\x04\x05\x04\x04", // 𥽇
+ 0x25f48: "\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01", // 𥽈
+ 0x25f49: "\x04\x03\x01\x02\x03\x04\x02\x05\x02\x02\x01\x01\x03\x04\x04\x03\x01\x01\x02", // 𥽉
+ 0x25f4a: "\x04\x03\x01\x02\x03\x04\x03\x04\x03\x01\x02\x03\x04\x05\x04\x05\x04\x05\x05", // 𥽊
+ 0x25f4b: "\x04\x03\x01\x02\x03\x04\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 𥽋
+ 0x25f4c: "\x04\x03\x01\x02\x03\x04\x04\x03\x01\x03\x02\x05\x01\x01\x01\x04\x05\x04", // 𥽌
+ 0x25f4d: "\x04\x03\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 𥽍
+ 0x25f4e: "\x04\x03\x01\x02\x03\x04\x05\x03\x01\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 𥽎
+ 0x25f4f: "\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01\x04\x03\x01\x02\x03\x04", // 𥽏
+ 0x25f50: "\x01\x02\x05\x01\x02\x05\x03\x04\x01\x02\x05\x01\x02\x02\x04\x03\x01\x02\x03\x04", // 𥽐
+ 0x25f51: "\x04\x03\x01\x02\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x04\x03\x01\x02\x03\x04", // 𥽑
+ 0x25f52: "\x04\x03\x01\x02\x03\x04\x01\x02\x02\x02\x01\x01\x02\x02\x02\x01\x01\x02\x03\x04", // 𥽒
+ 0x25f53: "\x04\x03\x01\x02\x03\x04\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x03\x05\x04", // 𥽓
+ 0x25f54: "\x04\x03\x01\x02\x03\x04\x05\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x02\x05\x02", // 𥽔
+ 0x25f55: "\x04\x03\x01\x02\x03\x04\x04\x04\x05\x03\x05\x04\x04\x05\x04\x01\x01\x02\x03\x04", // 𥽕
+ 0x25f56: "\x04\x03\x01\x02\x03\x04\x05\x05\x04\x05\x05\x04\x01\x05\x05\x04\x05\x05\x04\x05", // 𥽖
+ 0x25f57: "\x04\x03\x01\x02\x03\x04\x03\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x03\x04", // 𥽗
+ 0x25f58: "\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01\x02\x05\x02\x02\x01\x01\x03\x04\x05\x03\x04", // 𥽘
+ 0x25f59: "\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x03\x02\x05\x01\x01\x01\x01\x03\x04\x04", // 𥽙
+ 0x25f5a: "\x01\x02\x01\x02\x02\x05\x01\x01\x01\x02\x05\x03\x02\x05\x04\x04\x03\x01\x02\x03\x04", // 𥽚
+ 0x25f5b: "\x04\x03\x01\x02\x03\x04\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x03\x04\x03\x04\x01", // 𥽛
+ 0x25f5c: "\x04\x03\x01\x02\x03\x04\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 𥽜
+ 0x25f5d: "\x04\x03\x01\x02\x03\x04\x04\x01\x03\x05\x01\x02\x02\x05\x04\x05\x04\x04\x03\x05\x04", // 𥽝
+ 0x25f5e: "\x04\x03\x01\x02\x03\x04\x02\x05\x04\x03\x01\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01", // 𥽞
+ 0x25f5f: "\x04\x03\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x04\x05\x04\x05\x04\x04\x03\x05\x04", // 𥽟
+ 0x25f60: "\x05\x05\x04\x05\x05\x04\x01\x05\x05\x04\x05\x05\x04\x05\x04\x03\x01\x02\x03\x04\x05", // 𥽠
+ 0x25f61: "\x03\x04\x05\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 𥽡
+ 0x25f62: "\x04\x03\x01\x02\x03\x04\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x03\x04\x01\x03\x04", // 𥽢
+ 0x25f63: "\x04\x03\x01\x02\x03\x04\x01\x04\x05\x02\x04\x04\x04\x04\x05\x01\x01\x04\x03\x03\x04", // 𥽣
+ 0x25f64: "\x01\x02\x05\x04\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 𥽤
+ 0x25f65: "\x04\x03\x01\x02\x03\x04\x01\x04\x05\x02\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𥽥
+ 0x25f66: "\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x05\x02\x03\x05\x05\x04\x04\x03\x01\x02\x03\x04", // 𥽦
+ 0x25f67: "\x03\x01\x04\x03\x01\x04\x01\x03\x04\x04\x03\x01\x01\x02\x03\x04\x04\x03\x01\x02\x03\x04", // 𥽧
+ 0x25f68: "\x04\x03\x01\x02\x03\x04\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x01\x03\x02\x05\x01", // 𥽨
+ 0x25f69: "\x04\x03\x01\x02\x03\x04\x05\x01\x03\x02\x04\x01\x03\x04\x03\x01\x01\x02\x04\x05\x04", // 𥽩
+ 0x25f6a: "\x04\x03\x01\x02\x03\x04\x03\x01\x04\x03\x01\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𥽪
+ 0x25f6b: "\x04\x03\x01\x02\x03\x04\x01\x02\x02\x01\x02\x05\x01\x02\x01\x01\x03\x05\x04\x04\x04\x04", // 𥽫
+ 0x25f6c: "\x04\x03\x01\x02\x03\x04\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 𥽬
+ 0x25f6d: "\x04\x03\x01\x02\x03\x04\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 𥽭
+ 0x25f6e: "\x04\x03\x01\x02\x03\x04\x01\x04\x05\x02\x04\x01\x03\x04\x05\x01\x05\x05\x01\x05\x05\x01\x05", // 𥽮
+ 0x25f6f: "\x04\x03\x01\x02\x03\x04\x01\x04\x05\x02\x04\x01\x03\x04\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 𥽯
+ 0x25f70: "\x04\x03\x01\x02\x03\x04\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x04\x03\x01\x02\x03\x04", // 𥽰
+ 0x25f71: "\x03\x02\x01\x05\x01\x01\x04\x03\x01\x02\x03\x04\x04\x01\x04\x03\x01\x03\x03\x01\x01\x02\x01", // 𥽱
+ 0x25f72: "\x02\x02\x04\x03\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04\x04\x03\x01\x02\x03\x04", // 𥽲
+ 0x25f73: "\x03\x02\x01\x01\x04\x03\x01\x02\x03\x04\x05\x01\x01\x04\x05\x02\x05\x01\x01\x02\x02\x01\x01\x01", // 𥽳
+ 0x25f74: "\x04\x03\x01\x02\x03\x04\x04\x04\x05\x03\x05\x04\x02\x05\x01\x04\x04\x05\x03\x05\x04\x02\x05\x01", // 𥽴
+ 0x25f75: "\x04\x03\x01\x02\x03\x04\x05\x05\x04\x04\x04\x04\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 𥽵
+ 0x25f76: "\x04\x03\x01\x02\x03\x04\x01\x02\x05\x02\x02\x01\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x03\x04", // 𥽶
+ 0x25f77: "\x04\x03\x01\x02\x03\x04\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 𥽷
+ 0x25f78: "\x04\x03\x01\x02\x03\x04\x05\x05\x04\x04\x04\x04\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04", // 𥽸
+ 0x25f79: "\x01\x02\x05\x02\x02\x01\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 𥽹
+ 0x25f7a: "\x04\x03\x01\x02\x03\x04\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𥽺
+ 0x25f7b: "\x04\x03\x01\x02\x03\x04\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𥽻
+ 0x25f7c: "\x04\x03\x01\x02\x03\x04\x01\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𥽼
+ 0x25f7d: "\x02\x01\x02\x05\x03\x04\x03\x04\x01\x04\x03\x01\x02\x03\x04\x04\x01\x04\x03\x01\x03\x03\x01\x01\x02\x01", // 𥽽
+ 0x25f7e: "\x04\x03\x01\x02\x03\x04\x01\x02\x05\x01\x01\x02\x03\x04\x01\x02\x05\x01\x01\x02\x03\x04\x02\x05\x01\x01", // 𥽾
+ 0x25f7f: "\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x03\x02\x01\x05\x01\x01\x03\x05\x05\x04\x04\x03\x01\x02\x03\x04", // 𥽿
+ 0x25f80: "\x04\x03\x01\x02\x03\x04\x01\x02\x05\x02\x02\x01\x05\x03\x01\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 𥾀
+ 0x25f81: "\x04\x03\x01\x02\x03\x04\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x02\x05\x01\x01\x02\x05\x01\x05\x02\x02", // 𥾁
+ 0x25f82: "\x04\x03\x01\x02\x03\x04\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x03\x04\x01", // 𥾂
+ 0x25f83: "\x04\x03\x01\x02\x03\x04\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x01\x04", // 𥾃
+ 0x25f84: "\x02\x01\x02\x05\x03\x04\x03\x04\x01\x02\x01\x02\x05\x03\x04\x03\x04\x01\x02\x01\x02\x05\x03\x04\x03\x04\x01\x04\x03\x01\x02\x03\x04", // 𥾄
+ 0x25f85: "\x05\x05\x04\x04\x04\x04\x01\x02", // 𥾅
+ 0x25f86: "\x05\x05\x04\x04\x04\x04\x05\x05", // 𥾆
+ 0x25f87: "\x05\x05\x04\x04\x04\x04\x05\x02", // 𥾇
+ 0x25f88: "\x03\x05\x05\x05\x04\x02\x03\x04", // 𥾈
+ 0x25f89: "\x05\x05\x04\x04\x04\x04\x03\x05", // 𥾉
+ 0x25f8a: "\x05\x05\x04\x04\x04\x04\x03\x05", // 𥾊
+ 0x25f8b: "\x05\x05\x04\x04\x04\x04\x05\x03", // 𥾋
+ 0x25f8c: "\x05\x05\x04\x04\x04\x04\x05\x02\x01", // 𥾌
+ 0x25f8d: "\x05\x05\x04\x04\x04\x04\x01\x01\x02", // 𥾍
+ 0x25f8e: "\x05\x05\x04\x04\x04\x04\x01\x03\x02", // 𥾎
+ 0x25f8f: "\x05\x05\x04\x04\x04\x04\x05\x01\x05", // 𥾏
+ 0x25f90: "\x05\x05\x04\x04\x04\x04\x01\x05\x04", // 𥾐
+ 0x25f91: "\x05\x05\x04\x04\x04\x04\x03\x01\x05", // 𥾑
+ 0x25f92: "\x05\x05\x04\x04\x04\x04\x01\x01\x02", // 𥾒
+ 0x25f93: "\x05\x05\x04\x04\x04\x04\x03\x04\x02", // 𥾓
+ 0x25f94: "\x05\x05\x04\x04\x04\x04\x02\x05\x03", // 𥾔
+ 0x25f95: "\x05\x05\x04\x04\x04\x04\x01\x03\x05", // 𥾕
+ 0x25f96: "\x05\x05\x04\x04\x04\x04\x03\x02\x05", // 𥾖
+ 0x25f97: "\x05\x05\x04\x04\x04\x04\x02\x03\x04", // 𥾗
+ 0x25f98: "\x05\x05\x04\x04\x04\x04\x01\x02\x01", // 𥾘
+ 0x25f99: "\x05\x05\x04\x04\x04\x04\x01\x05\x02\x04", // 𥾙
+ 0x25f9a: "\x05\x05\x04\x04\x04\x04\x04\x05\x03\x05", // 𥾚
+ 0x25f9b: "\x05\x05\x04\x04\x04\x04\x01\x05\x05\x03", // 𥾛
+ 0x25f9c: "\x03\x04\x05\x02\x05\x05\x04\x02\x03\x04", // 𥾜
+ 0x25f9d: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x05", // 𥾝
+ 0x25f9e: "\x05\x05\x04\x04\x04\x04\x03\x05\x03\x05", // 𥾞
+ 0x25f9f: "\x01\x01\x03\x02\x05\x05\x04\x02\x03\x04", // 𥾟
+ 0x25fa0: "\x05\x05\x04\x04\x04\x04\x05\x03\x04\x04", // 𥾠
+ 0x25fa1: "\x05\x05\x04\x04\x04\x04\x03\x05\x01\x01", // 𥾡
+ 0x25fa2: "\x05\x05\x04\x04\x04\x04\x03\x05\x01\x01", // 𥾢
+ 0x25fa3: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x04", // 𥾣
+ 0x25fa4: "\x05\x05\x04\x04\x04\x04\x05\x04\x05\x04", // 𥾤
+ 0x25fa5: "\x03\x04\x03\x04\x05\x05\x04\x02\x03\x04", // 𥾥
+ 0x25fa6: "\x05\x05\x04\x04\x04\x04\x01\x01\x03\x02", // 𥾦
+ 0x25fa7: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x02", // 𥾧
+ 0x25fa8: "\x05\x05\x04\x04\x04\x04\x03\x01\x01\x05", // 𥾨
+ 0x25fa9: "\x01\x03\x05\x04\x05\x05\x04\x02\x03\x04", // 𥾩
+ 0x25faa: "\x05\x05\x04\x04\x04\x04\x03\x04\x04\x04", // 𥾪
+ 0x25fab: "\x05\x05\x04\x04\x04\x04\x03\x01\x01\x02", // 𥾫
+ 0x25fac: "\x05\x05\x04\x04\x04\x04\x01\x05\x05\x04", // 𥾬
+ 0x25fad: "\x05\x05\x04\x04\x04\x04\x03\x03\x02\x04", // 𥾭
+ 0x25fae: "\x05\x05\x04\x04\x04\x04\x01\x05\x03\x04", // 𥾮
+ 0x25faf: "\x05\x05\x04\x04\x04\x04\x05\x01\x05\x02", // 𥾯
+ 0x25fb0: "\x05\x05\x04\x04\x04\x04\x01\x02\x02\x01", // 𥾰
+ 0x25fb1: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x05", // 𥾱
+ 0x25fb2: "\x05\x05\x04\x04\x04\x04\x02\x01\x05\x04", // 𥾲
+ 0x25fb3: "\x05\x05\x04\x04\x04\x04\x01\x05\x03\x05", // 𥾳
+ 0x25fb4: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x05", // 𥾴
+ 0x25fb5: "\x05\x05\x04\x04\x04\x04\x01\x03\x05\x04", // 𥾵
+ 0x25fb6: "\x05\x05\x04\x04\x04\x04\x03\x05\x01\x01", // 𥾶
+ 0x25fb7: "\x05\x05\x04\x04\x04\x04\x03\x01\x03\x02", // 𥾷
+ 0x25fb8: "\x05\x05\x04\x04\x04\x04\x03\x05\x03\x03", // 𥾸
+ 0x25fb9: "\x05\x05\x04\x04\x04\x04\x03\x01\x01\x02", // 𥾹
+ 0x25fba: "\x05\x05\x04\x04\x04\x04\x03\x04\x03\x04", // 𥾺
+ 0x25fbb: "\x04\x01\x03\x04\x05\x05\x04\x02\x03\x04", // 𥾻
+ 0x25fbc: "\x05\x05\x04\x04\x04\x04\x04\x01\x05\x02", // 𥾼
+ 0x25fbd: "\x05\x05\x04\x04\x04\x04\x04\x01\x02\x04", // 𥾽
+ 0x25fbe: "\x05\x05\x04\x04\x04\x04\x03\x02\x02\x04", // 𥾾
+ 0x25fbf: "\x05\x05\x04\x04\x04\x04\x03\x01\x01\x02", // 𥾿
+ 0x25fc0: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01", // 𥿀
+ 0x25fc1: "\x05\x05\x04\x04\x04\x04\x01\x01\x02\x01", // 𥿁
+ 0x25fc2: "\x05\x05\x04\x04\x04\x04\x04\x05\x04\x04", // 𥿂
+ 0x25fc3: "\x05\x03\x02\x05\x01\x05\x05\x04\x02\x03\x04", // 𥿃
+ 0x25fc4: "\x05\x05\x04\x04\x04\x04\x03\x05\x01\x05\x01", // 𥿄
+ 0x25fc5: "\x03\x01\x01\x03\x04\x05\x05\x04\x02\x03\x04", // 𥿅
+ 0x25fc6: "\x05\x05\x04\x04\x04\x04\x05\x01\x02\x05\x01", // 𥿆
+ 0x25fc7: "\x05\x05\x04\x04\x04\x04\x05\x02\x01\x03\x04", // 𥿇
+ 0x25fc8: "\x05\x05\x04\x04\x04\x04\x03\x01\x03\x05\x04", // 𥿈
+ 0x25fc9: "\x05\x05\x04\x04\x04\x04\x01\x01\x02\x03\x04", // 𥿉
+ 0x25fca: "\x05\x05\x04\x04\x04\x04\x03\x03\x01\x02\x04", // 𥿊
+ 0x25fcb: "\x05\x05\x04\x04\x04\x04\x05\x04\x01\x03\x02", // 𥿋
+ 0x25fcc: "\x05\x05\x04\x04\x04\x04\x05\x05\x04\x05\x03", // 𥿌
+ 0x25fcd: "\x05\x05\x04\x04\x04\x04\x01\x02\x02\x05\x01", // 𥿍
+ 0x25fce: "\x05\x05\x04\x04\x04\x04\x03\x05\x04\x05\x05", // 𥿎
+ 0x25fcf: "\x05\x01\x05\x03\x02\x05\x05\x04\x02\x03\x04", // 𥿏
+ 0x25fd0: "\x05\x05\x04\x04\x04\x04\x03\x04\x01\x01\x05", // 𥿐
+ 0x25fd1: "\x05\x05\x04\x04\x04\x04\x03\x05\x01\x02\x02", // 𥿑
+ 0x25fd2: "\x05\x05\x04\x04\x04\x04\x04\x05\x03\x05\x01", // 𥿒
+ 0x25fd3: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x05\x01", // 𥿓
+ 0x25fd4: "\x05\x05\x04\x02\x03\x04\x01\x02\x01\x03\x04", // 𥿔
+ 0x25fd5: "\x05\x05\x04\x04\x04\x04\x02\x01\x02\x05\x01", // 𥿕
+ 0x25fd6: "\x05\x05\x04\x04\x04\x04\x02\x05\x03\x05\x01", // 𥿖
+ 0x25fd7: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x03\x04", // 𥿗
+ 0x25fd8: "\x05\x05\x04\x04\x04\x04\x03\x01\x02\x03\x04", // 𥿘
+ 0x25fd9: "\x05\x05\x04\x04\x04\x04\x03\x01\x01\x01\x03", // 𥿙
+ 0x25fda: "\x01\x02\x01\x05\x03\x05\x05\x04\x02\x03\x04", // 𥿚
+ 0x25fdb: "\x05\x05\x04\x04\x04\x04\x02\x05\x02\x01\x01", // 𥿛
+ 0x25fdc: "\x05\x05\x04\x04\x04\x04\x03\x01\x02\x03\x04", // 𥿜
+ 0x25fdd: "\x03\x02\x01\x05\x04\x05\x05\x04\x02\x03\x04", // 𥿝
+ 0x25fde: "\x05\x05\x04\x04\x04\x04\x03\x02\x05\x02\x05", // 𥿞
+ 0x25fdf: "\x02\x05\x02\x03\x04\x05\x05\x04\x02\x03\x04", // 𥿟
+ 0x25fe0: "\x05\x05\x04\x02\x03\x04\x01\x03\x02\x05\x02", // 𥿠
+ 0x25fe1: "\x05\x05\x04\x04\x04\x04\x05\x01\x03\x01\x05", // 𥿡
+ 0x25fe2: "\x05\x05\x04\x04\x04\x04\x04\x05\x03\x05\x04", // 𥿢
+ 0x25fe3: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x01\x05", // 𥿣
+ 0x25fe4: "\x05\x05\x04\x04\x04\x04\x03\x02\x01\x02\x01", // 𥿤
+ 0x25fe5: "\x05\x05\x04\x04\x04\x04\x03\x02\x01\x02\x01", // 𥿥
+ 0x25fe6: "\x05\x05\x04\x04\x04\x04\x03\x03\x05\x04\x01\x04", // 𥿦
+ 0x25fe7: "\x05\x05\x04\x04\x04\x04\x03\x02\x05\x02\x05\x01", // 𥿧
+ 0x25fe8: "\x05\x05\x04\x04\x04\x04\x03\x05\x04\x02\x05\x01", // 𥿨
+ 0x25fe9: "\x01\x01\x03\x05\x03\x04\x05\x05\x04\x02\x03\x04", // 𥿩
+ 0x25fea: "\x05\x05\x04\x04\x04\x04\x03\x04\x05\x03\x02\x05", // 𥿪
+ 0x25feb: "\x05\x05\x04\x04\x04\x04\x03\x05\x04\x03\x05\x04", // 𥿫
+ 0x25fec: "\x05\x05\x04\x04\x04\x04\x04\x03\x01\x05\x02\x03", // 𥿬
+ 0x25fed: "\x05\x05\x04\x04\x04\x04\x03\x04\x01\x03\x05\x04", // 𥿭
+ 0x25fee: "\x05\x05\x04\x04\x04\x04\x01\x01\x02\x01\x05\x04", // 𥿮
+ 0x25fef: "\x05\x05\x04\x04\x04\x04\x03\x03\x03\x05\x03\x04", // 𥿯
+ 0x25ff0: "\x05\x05\x04\x04\x04\x04\x05\x03\x01\x02\x03\x04", // 𥿰
+ 0x25ff1: "\x05\x05\x04\x04\x04\x04\x05\x03\x05\x02\x01", // 𥿱
+ 0x25ff2: "\x05\x05\x04\x04\x04\x04\x05\x01\x05\x02\x01\x01", // 𥿲
+ 0x25ff3: "\x05\x05\x04\x04\x04\x04\x03\x02\x05\x03\x04\x01", // 𥿳
+ 0x25ff4: "\x05\x05\x04\x04\x04\x04\x03\x05\x01\x02\x03\x04", // 𥿴
+ 0x25ff5: "\x05\x05\x04\x04\x04\x04\x05\x04\x03\x01\x01\x02", // 𥿵
+ 0x25ff6: "\x05\x05\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02", // 𥿶
+ 0x25ff7: "\x05\x05\x04\x04\x04\x04\x05\x03\x04\x05\x03\x04", // 𥿷
+ 0x25ff8: "\x05\x05\x04\x04\x04\x04\x03\x05\x04\x02\x05\x02", // 𥿸
+ 0x25ff9: "\x05\x05\x04\x04\x04\x04\x04\x01\x03\x02\x03\x04", // 𥿹
+ 0x25ffa: "\x05\x05\x04\x04\x04\x04\x04\x01\x05\x05\x03\x01", // 𥿺
+ 0x25ffb: "\x05\x05\x04\x02\x03\x04\x03\x05\x02\x05\x01\x01", // 𥿻
+ 0x25ffc: "\x05\x05\x04\x04\x04\x04\x04\x01\x05\x03\x02\x05", // 𥿼
+ 0x25ffd: "\x05\x05\x04\x04\x04\x04\x04\x04\x05\x05\x03\x01", // 𥿽
+ 0x25ffe: "\x05\x05\x04\x04\x04\x04\x04\x04\x05\x01\x02\x04", // 𥿾
+ 0x25fff: "\x04\x01\x04\x03\x04\x05\x05\x05\x04\x02\x03\x04", // 𥿿
+ 0x26000: "\x04\x04\x05\x05\x03\x01\x05\x05\x04\x02\x03\x04", // 𦀀
+ 0x26001: "\x05\x05\x04\x04\x04\x04\x05\x04\x05\x04\x05\x04", // 𦀁
+ 0x26002: "\x01\x02\x01\x05\x05\x04\x02\x03\x04\x05\x03\x04", // 𦀂
+ 0x26003: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x02\x05\x02", // 𦀃
+ 0x26004: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x03\x05\x01", // 𦀄
+ 0x26005: "\x05\x05\x04\x04\x04\x04\x03\x01\x01\x02\x01\x02", // 𦀅
+ 0x26006: "\x05\x05\x04\x04\x04\x04\x03\x05\x02\x05\x01\x01", // 𦀆
+ 0x26007: "\x05\x05\x04\x04\x04\x04\x01\x03\x04\x01\x02\x01", // 𦀇
+ 0x26008: "\x05\x05\x04\x04\x04\x04\x03\x01\x02\x01\x03\x05", // 𦀈
+ 0x26009: "\x05\x05\x04\x04\x04\x04\x03\x05\x01\x02\x03\x04", // 𦀉
+ 0x2600a: "\x05\x05\x04\x04\x04\x04\x01\x05\x01\x05\x03\x04", // 𦀊
+ 0x2600b: "\x05\x05\x04\x04\x04\x04\x04\x01\x02\x05\x03\x04", // 𦀋
+ 0x2600c: "\x05\x05\x04\x02\x03\x04\x05\x03\x01\x02\x05\x01", // 𦀌
+ 0x2600d: "\x05\x05\x04\x04\x04\x04\x01\x03\x02\x01\x02\x01", // 𦀍
+ 0x2600e: "\x05\x05\x04\x04\x04\x04\x01\x03\x05\x04\x02\x02", // 𦀎
+ 0x2600f: "\x05\x05\x04\x04\x04\x04\x05\x02\x03\x01\x03\x04", // 𦀏
+ 0x26010: "\x05\x05\x04\x04\x04\x04\x04\x01\x03\x01\x02\x01", // 𦀐
+ 0x26011: "\x05\x05\x04\x04\x04\x04\x04\x01\x03\x04\x02\x02", // 𦀑
+ 0x26012: "\x02\x05\x01\x01\x05\x05\x04\x04\x04\x04\x01\x01\x02", // 𦀒
+ 0x26013: "\x05\x05\x04\x04\x04\x04\x04\x01\x04\x03\x01\x01\x02", // 𦀓
+ 0x26014: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x01\x01\x05", // 𦀔
+ 0x26015: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x05\x02\x01\x05", // 𦀕
+ 0x26016: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x05\x04\x05\x03", // 𦀖
+ 0x26017: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x03\x02\x03\x04", // 𦀗
+ 0x26018: "\x05\x05\x04\x04\x04\x04\x01\x05\x03\x05\x01\x02\x01", // 𦀘
+ 0x26019: "\x05\x05\x04\x04\x04\x04\x03\x02\x05\x03\x05\x04\x01", // 𦀙
+ 0x2601a: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x03\x01\x02\x01", // 𦀚
+ 0x2601b: "\x05\x05\x04\x04\x04\x04\x04\x04\x01\x02\x03\x04\x03", // 𦀛
+ 0x2601c: "\x05\x05\x04\x04\x04\x04\x05\x02\x01\x03\x01\x02\x01", // 𦀜
+ 0x2601d: "\x05\x05\x04\x04\x04\x04\x02\x05\x03\x05\x02\x05\x01", // 𦀝
+ 0x2601e: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x05\x01\x05\x01", // 𦀞
+ 0x2601f: "\x04\x04\x01\x02\x03\x04\x03\x05\x05\x04\x02\x03\x04", // 𦀟
+ 0x26020: "\x05\x05\x04\x04\x04\x04\x04\x01\x05\x04\x03\x02\x05", // 𦀠
+ 0x26021: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x01\x02\x05\x01", // 𦀡
+ 0x26022: "\x05\x05\x04\x04\x04\x04\x03\x01\x05\x02\x01\x03\x04", // 𦀢
+ 0x26023: "\x03\x05\x05\x04\x05\x05\x04\x05\x05\x04\x02\x03\x04", // 𦀣
+ 0x26024: "\x02\x05\x01\x01\x01\x03\x04\x05\x05\x04\x02\x03\x04", // 𦀤
+ 0x26025: "\x03\x02\x01\x05\x01\x01\x01\x05\x05\x04\x02\x03\x04", // 𦀥
+ 0x26026: "\x05\x05\x04\x04\x04\x04\x03\x05\x01\x05\x02\x05\x02", // 𦀦
+ 0x26027: "\x05\x03\x02\x05\x01\x05\x03\x05\x05\x04\x02\x03\x04", // 𦀧
+ 0x26028: "\x05\x05\x04\x04\x04\x04\x05\x01\x01\x03\x05\x02", // 𦀨
+ 0x26029: "\x05\x05\x04\x04\x04\x04\x05\x02\x01\x05\x04\x05\x04", // 𦀩
+ 0x2602a: "\x05\x05\x04\x04\x04\x04\x03\x02\x03\x02\x05\x01\x01", // 𦀪
+ 0x2602b: "\x05\x05\x04\x04\x04\x04\x04\x01\x03\x01\x03\x04\x04", // 𦀫
+ 0x2602c: "\x05\x05\x04\x04\x04\x04\x04\x05\x01\x01\x05\x03\x04", // 𦀬
+ 0x2602d: "\x05\x05\x04\x04\x04\x04\x04\x03\x03\x04\x02\x05\x01", // 𦀭
+ 0x2602e: "\x05\x05\x04\x04\x04\x04\x04\x01\x03\x04\x01\x05\x02", // 𦀮
+ 0x2602f: "\x05\x05\x04\x04\x04\x04\x05\x01\x03\x05\x02\x05\x01", // 𦀯
+ 0x26030: "\x05\x05\x04\x04\x04\x04\x01\x03\x02\x04\x01\x02\x01", // 𦀰
+ 0x26031: "\x05\x01\x01\x05\x02\x03\x04\x05\x05\x04\x02\x03\x04", // 𦀱
+ 0x26032: "\x05\x05\x04\x04\x04\x04\x05\x01\x01\x03\x02\x05\x01", // 𦀲
+ 0x26033: "\x05\x05\x04\x04\x04\x04\x01\x01\x01\x03\x01\x02\x04", // 𦀳
+ 0x26034: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x02\x04\x01\x05", // 𦀴
+ 0x26035: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x02", // 𦀵
+ 0x26036: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01\x03\x04\x01", // 𦀶
+ 0x26037: "\x05\x05\x04\x04\x04\x04\x05\x04\x03\x05\x03\x05\x04", // 𦀷
+ 0x26038: "\x05\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x03\x05", // 𦀸
+ 0x26039: "\x05\x05\x04\x04\x04\x04\x01\x02\x03\x04\x01\x02\x04", // 𦀹
+ 0x2603a: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x01\x01\x01\x02", // 𦀺
+ 0x2603b: "\x05\x05\x04\x04\x04\x04\x05\x01\x05\x03\x01\x03\x04", // 𦀻
+ 0x2603c: "\x05\x05\x04\x04\x04\x04\x02\x05\x02\x02\x05\x03\x04", // 𦀼
+ 0x2603d: "\x05\x05\x04\x04\x04\x04\x03\x01\x02\x01\x02\x05\x01", // 𦀽
+ 0x2603e: "\x05\x05\x04\x04\x04\x04\x04\x01\x03\x01\x02\x03\x04", // 𦀾
+ 0x2603f: "\x05\x05\x04\x04\x04\x04\x05\x01\x03\x03\x01\x01\x05", // 𦀿
+ 0x26040: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01\x01\x03\x04", // 𦁀
+ 0x26041: "\x05\x05\x04\x04\x04\x04\x04\x04\x02\x05\x02\x01\x01", // 𦁁
+ 0x26042: "\x05\x05\x04\x04\x04\x04\x03\x02\x04\x03\x01\x01\x02", // 𦁂
+ 0x26043: "\x05\x05\x04\x04\x04\x04\x03\x05\x02\x05\x01\x02\x01", // 𦁃
+ 0x26044: "\x05\x05\x04\x04\x04\x04\x01\x03\x01\x01\x05\x03\x04", // 𦁄
+ 0x26045: "\x05\x05\x04\x04\x04\x04\x04\x05\x02\x03\x04\x05\x03", // 𦁅
+ 0x26046: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x01\x02\x01\x05\x04", // 𦁆
+ 0x26047: "\x05\x05\x04\x04\x04\x04\x03\x04\x01\x01\x04\x05\x04\x04", // 𦁇
+ 0x26048: "\x05\x05\x04\x04\x04\x04\x04\x04\x05\x03\x05\x01\x02\x01", // 𦁈
+ 0x26049: "\x05\x05\x04\x04\x04\x04\x04\x01\x04\x03\x01\x05\x03\x01", // 𦁉
+ 0x2604a: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x01\x02\x01\x02\x04", // 𦁊
+ 0x2604b: "\x04\x01\x04\x03\x01\x05\x05\x04\x02\x03\x04\x05\x03\x04", // 𦁋
+ 0x2604c: "\x05\x05\x04\x04\x04\x04\x03\x04\x01\x05\x01\x01\x05\x04", // 𦁌
+ 0x2604d: "\x05\x05\x04\x04\x04\x04\x03\x04\x04\x03\x03\x01\x02\x01", // 𦁍
+ 0x2604e: "\x05\x05\x04\x04\x04\x04\x01\x02\x02\x01\x02\x05\x01\x01", // 𦁎
+ 0x2604f: "\x05\x05\x04\x04\x04\x04\x01\x03\x04\x02\x05\x01\x01\x05", // 𦁏
+ 0x26050: "\x05\x05\x04\x04\x04\x04\x05\x01\x03\x05\x02\x02\x05\x02", // 𦁐
+ 0x26051: "\x05\x05\x04\x04\x04\x04\x01\x03\x04\x04\x03\x01\x01\x02", // 𦁑
+ 0x26052: "\x02\x05\x04\x03\x01\x05\x05\x04\x02\x03\x04\x03\x04\x05", // 𦁒
+ 0x26053: "\x01\x03\x04\x03\x04\x05\x05\x04\x02\x03\x04\x05\x03\x04", // 𦁓
+ 0x26054: "\x05\x05\x04\x04\x04\x04\x01\x01\x03\x04\x04\x05\x04\x04", // 𦁔
+ 0x26055: "\x05\x05\x04\x04\x04\x04\x03\x05\x03\x03\x04\x05\x04\x04", // 𦁕
+ 0x26056: "\x05\x05\x04\x04\x04\x04\x04\x04\x05\x02\x05\x01\x02\x01", // 𦁖
+ 0x26057: "\x05\x05\x04\x04\x04\x04\x02\x01\x02\x01\x02\x03\x03", // 𦁗
+ 0x26058: "\x01\x03\x05\x04\x03\x01\x03\x04\x05\x05\x04\x02\x03\x04", // 𦁘
+ 0x26059: "\x05\x05\x04\x04\x04\x04\x04\x01\x03\x04\x05\x04\x03\x05", // 𦁙
+ 0x2605a: "\x05\x05\x04\x04\x04\x04\x02\x05\x05\x04\x05\x05\x04\x05", // 𦁚
+ 0x2605b: "\x05\x05\x04\x04\x04\x04\x04\x01\x05\x04\x01\x02\x03\x04", // 𦁛
+ 0x2605c: "\x05\x05\x04\x04\x04\x04\x01\x02\x02\x01\x01\x02\x03\x04", // 𦁜
+ 0x2605d: "\x01\x02\x03\x04\x05\x02\x01\x03\x05\x05\x04\x02\x03\x04", // 𦁝
+ 0x2605e: "\x04\x05\x04\x04\x04\x05\x04\x04\x05\x05\x04\x02\x03\x04", // 𦁞
+ 0x2605f: "\x05\x05\x04\x04\x04\x04\x03\x03\x01\x02\x01\x05\x03\x04", // 𦁟
+ 0x26060: "\x05\x05\x04\x02\x03\x04\x02\x05\x01\x01\x03\x05\x01\x01", // 𦁠
+ 0x26061: "\x05\x05\x04\x04\x04\x04\x02\x01\x02\x01\x02\x01\x03\x04", // 𦁡
+ 0x26062: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x01\x01\x05\x03\x04", // 𦁢
+ 0x26063: "\x05\x05\x04\x04\x04\x04\x05\x02\x01\x03\x03\x05\x04\x04", // 𦁣
+ 0x26064: "\x05\x05\x04\x04\x04\x04\x03\x04\x01\x05\x04\x05\x04\x04", // 𦁤
+ 0x26065: "\x05\x05\x04\x04\x04\x04\x01\x03\x04\x02\x05\x02\x02\x02", // 𦁥
+ 0x26066: "\x05\x05\x04\x04\x04\x04\x04\x01\x03\x02\x01\x02\x05\x01", // 𦁦
+ 0x26067: "\x05\x05\x04\x04\x04\x04\x05\x02\x01\x02\x05\x02\x02\x01", // 𦁧
+ 0x26068: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x01\x03\x04\x04\x04", // 𦁨
+ 0x26069: "\x05\x05\x04\x04\x04\x04\x01\x03\x01\x02\x01\x01\x02\x01", // 𦁩
+ 0x2606a: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x03\x05\x01\x02\x01", // 𦁪
+ 0x2606b: "\x01\x02\x02\x01\x01\x01\x05\x04\x05\x05\x04\x02\x03\x04", // 𦁫
+ 0x2606c: "\x01\x02\x02\x01\x02\x05\x01\x01\x05\x05\x04\x02\x03\x04", // 𦁬
+ 0x2606d: "\x05\x05\x04\x04\x04\x04\x02\x01\x05\x03\x01\x05\x05\x04", // 𦁭
+ 0x2606e: "\x05\x05\x04\x04\x04\x04\x03\x05\x01\x01\x03\x05\x01\x01", // 𦁮
+ 0x2606f: "\x05\x05\x04\x04\x04\x04\x03\x05\x03\x04\x03\x05\x03\x04", // 𦁯
+ 0x26070: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x01\x01\x03\x02", // 𦁰
+ 0x26071: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x02\x05\x01\x03\x05", // 𦁱
+ 0x26072: "\x05\x05\x04\x04\x04\x04\x02\x01\x05\x03\x01\x05\x03\x05", // 𦁲
+ 0x26073: "\x05\x05\x04\x04\x04\x04\x03\x01\x02\x03\x04\x05\x02\x01", // 𦁳
+ 0x26074: "\x05\x05\x04\x04\x04\x04\x03\x02\x01\x01\x05\x01\x01\x02", // 𦁴
+ 0x26075: "\x05\x05\x04\x04\x04\x04\x03\x05\x03\x02\x01\x05\x01\x01", // 𦁵
+ 0x26076: "\x05\x05\x04\x04\x04\x04\x04\x01\x03\x05\x01\x01\x03\x04", // 𦁶
+ 0x26077: "\x05\x05\x04\x04\x04\x04\x04\x01\x05\x03\x01\x03\x05\x04", // 𦁷
+ 0x26078: "\x05\x05\x04\x04\x04\x04\x03\x04\x01\x02\x05\x01\x05\x02", // 𦁸
+ 0x26079: "\x05\x05\x04\x04\x04\x04\x04\x01\x03\x02\x03\x05\x04\x04", // 𦁹
+ 0x2607a: "\x05\x05\x04\x04\x04\x04\x05\x01\x01\x02\x02\x05\x01\x01", // 𦁺
+ 0x2607b: "\x05\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x01\x02\x01", // 𦁻
+ 0x2607c: "\x05\x05\x04\x04\x04\x04\x01\x02\x03\x04\x03\x01\x03\x04", // 𦁼
+ 0x2607d: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01\x01\x01\x02\x01", // 𦁽
+ 0x2607e: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x02\x05\x01\x03\x04", // 𦁾
+ 0x2607f: "\x05\x05\x04\x04\x04\x04\x05\x03\x01\x01\x02\x02\x05\x01", // 𦁿
+ 0x26080: "\x05\x05\x04\x04\x04\x04\x04\x01\x03\x01\x02\x02\x01\x05\x04", // 𦂀
+ 0x26081: "\x05\x05\x04\x04\x04\x04\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 𦂁
+ 0x26082: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x03\x04\x04\x05\x01\x02", // 𦂂
+ 0x26083: "\x05\x05\x04\x04\x04\x04\x04\x01\x02\x05\x01\x04\x05\x01\x02", // 𦂃
+ 0x26084: "\x05\x05\x04\x04\x04\x04\x01\x05\x03\x05\x03\x02\x05\x01\x01", // 𦂄
+ 0x26085: "\x05\x05\x04\x04\x04\x04\x05\x04\x02\x05\x01\x01\x02\x03\x04", // 𦂅
+ 0x26086: "\x05\x05\x04\x04\x04\x04\x02\x05\x02\x05\x01\x01\x05\x04", // 𦂆
+ 0x26087: "\x05\x05\x04\x04\x04\x04\x02\x01\x05\x03\x01\x05\x03\x01\x03\x04", // 𦂇
+ 0x26088: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x01\x03\x05\x04\x01", // 𦂈
+ 0x26089: "\x05\x05\x04\x04\x04\x04\x01\x01\x02\x03\x02\x01\x05\x01\x01", // 𦂉
+ 0x2608a: "\x05\x05\x04\x04\x04\x04\x04\x01\x02\x05\x01\x01\x03\x05\x04", // 𦂊
+ 0x2608b: "\x05\x05\x04\x04\x04\x04\x05\x01\x03\x01\x05\x01\x02\x03\x04", // 𦂋
+ 0x2608c: "\x01\x02\x01\x01\x02\x01\x01\x02\x04\x05\x05\x04\x02\x03\x04", // 𦂌
+ 0x2608d: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x02\x01\x03\x02\x05\x01", // 𦂍
+ 0x2608e: "\x03\x01\x02\x03\x04\x04\x03\x03\x04\x05\x05\x04\x02\x03\x04", // 𦂎
+ 0x2608f: "\x05\x05\x04\x04\x04\x04\x04\x03\x03\x04\x03\x01\x02\x03\x04", // 𦂏
+ 0x26090: "\x05\x05\x04\x04\x04\x04\x03\x05\x01\x03\x03\x01\x01\x03\x04", // 𦂐
+ 0x26091: "\x05\x05\x04\x04\x04\x04\x03\x05\x04\x01\x02\x01\x02\x05\x01", // 𦂑
+ 0x26092: "\x05\x05\x04\x04\x04\x04\x04\x03\x01\x03\x05\x01\x01\x02\x02", // 𦂒
+ 0x26093: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x02\x05\x01\x05\x03\x02", // 𦂓
+ 0x26094: "\x05\x05\x04\x04\x04\x04\x03\x05\x02\x05\x01\x03\x05\x05\x03", // 𦂔
+ 0x26095: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𦂕
+ 0x26096: "\x05\x05\x04\x04\x04\x04\x03\x02\x05\x01\x02\x01\x01\x03\x02", // 𦂖
+ 0x26097: "\x02\x04\x03\x03\x05\x04\x01\x02\x02\x05\x05\x04\x02\x03\x04", // 𦂗
+ 0x26098: "\x05\x05\x04\x04\x04\x04\x01\x05\x01\x05\x01\x02\x03\x04", // 𦂘
+ 0x26099: "\x05\x05\x04\x04\x04\x04\x04\x03\x01\x01\x03\x04\x01\x02\x01", // 𦂙
+ 0x2609a: "\x05\x05\x04\x04\x04\x04\x03\x01\x02\x04\x03\x03\x05\x04\x01", // 𦂚
+ 0x2609b: "\x05\x05\x04\x04\x04\x04\x04\x01\x05\x03\x03\x01\x05\x02\x05", // 𦂛
+ 0x2609c: "\x05\x05\x04\x04\x04\x04\x03\x01\x03\x04\x04\x03\x01\x01\x02", // 𦂜
+ 0x2609d: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x05\x03\x05\x04\x01", // 𦂝
+ 0x2609e: "\x03\x05\x04\x05\x05\x04\x02\x03\x04\x05\x05\x04\x02\x03\x04", // 𦂞
+ 0x2609f: "\x03\x05\x01\x03\x03\x05\x04\x04\x04\x05\x05\x04\x02\x03\x04", // 𦂟
+ 0x260a0: "\x05\x05\x04\x04\x04\x04\x04\x01\x02\x05\x01\x01\x02\x03\x04", // 𦂠
+ 0x260a1: "\x05\x05\x04\x04\x04\x04\x01\x03\x04\x04\x03\x01\x01\x01\x02", // 𦂡
+ 0x260a2: "\x05\x05\x04\x04\x04\x04\x03\x02\x05\x01\x02\x01\x01\x03\x02", // 𦂢
+ 0x260a3: "\x05\x05\x04\x04\x04\x04\x02\x05\x05\x04\x05\x05\x04\x05\x02", // 𦂣
+ 0x260a4: "\x05\x05\x04\x04\x04\x04\x05\x01\x03\x04\x03\x01\x01\x03\x02", // 𦂤
+ 0x260a5: "\x05\x05\x04\x04\x04\x04\x01\x03\x02\x05\x01\x02\x05\x03\x04", // 𦂥
+ 0x260a6: "\x05\x05\x04\x04\x04\x04\x04\x04\x05\x03\x05\x04\x02\x05\x01", // 𦂦
+ 0x260a7: "\x05\x05\x04\x04\x04\x04\x04\x05\x01\x01\x05\x04\x05\x02", // 𦂧
+ 0x260a8: "\x05\x05\x04\x04\x04\x04\x04\x04\x05\x01\x03\x02\x05\x01\x01", // 𦂨
+ 0x260a9: "\x05\x05\x04\x04\x04\x04\x05\x01\x01\x01\x01\x02\x05\x04", // 𦂩
+ 0x260aa: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x01\x01\x02\x04\x05\x03", // 𦂪
+ 0x260ab: "\x05\x05\x04\x04\x04\x04\x01\x02\x02\x01\x01\x01\x05\x02", // 𦂫
+ 0x260ac: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x02\x02\x01\x01\x05\x05", // 𦂬
+ 0x260ad: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x02\x01\x02\x05\x01\x02", // 𦂭
+ 0x260ae: "\x05\x05\x04\x04\x04\x04\x02\x05\x03\x04\x04\x04\x04\x04\x01", // 𦂮
+ 0x260af: "\x05\x05\x04\x04\x04\x04\x03\x05\x02\x05\x02\x01\x03\x04\x04\x04", // 𦂯
+ 0x260b0: "\x05\x05\x04\x04\x04\x04\x03\x02\x01\x01\x01\x01\x05\x05\x04", // 𦂰
+ 0x260b1: "\x05\x05\x04\x04\x04\x04\x03\x05\x01\x02\x05\x01\x02\x01\x04", // 𦂱
+ 0x260b2: "\x05\x05\x04\x04\x04\x04\x01\x04\x03\x02\x05\x02\x03\x04", // 𦂲
+ 0x260b3: "\x01\x02\x05\x01\x02\x05\x03\x01\x04\x05\x05\x04\x02\x03\x04", // 𦂳
+ 0x260b4: "\x05\x05\x04\x04\x04\x04\x02\x05\x03\x04\x03\x04\x02\x05\x02", // 𦂴
+ 0x260b5: "\x05\x05\x04\x04\x04\x04\x03\x03\x02\x04\x03\x01\x04\x05", // 𦂵
+ 0x260b6: "\x05\x05\x04\x04\x04\x04\x04\x01\x04\x03\x01\x02\x05\x01\x02", // 𦂶
+ 0x260b7: "\x05\x05\x04\x04\x04\x04\x05\x01\x05\x02\x05\x03\x05\x04\x01", // 𦂷
+ 0x260b8: "\x05\x05\x04\x02\x03\x04\x03\x02\x05\x01\x01\x04\x04\x05\x04", // 𦂸
+ 0x260b9: "\x05\x05\x04\x02\x03\x04\x05\x03\x04\x03\x05\x03\x04\x03\x02", // 𦂹
+ 0x260ba: "\x05\x05\x04\x04\x04\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 𦂺
+ 0x260bb: "\x05\x05\x04\x04\x04\x04\x03\x03\x02\x05\x01\x01\x01\x01\x02", // 𦂻
+ 0x260bc: "\x05\x05\x04\x04\x04\x04\x01\x02\x02\x01\x01\x01\x03\x04\x05", // 𦂼
+ 0x260bd: "\x05\x05\x04\x04\x04\x04\x04\x04\x05\x03\x04\x01\x03\x04\x04", // 𦂽
+ 0x260be: "\x05\x05\x04\x04\x04\x04\x03\x01\x01\x03\x04\x04\x05\x04", // 𦂾
+ 0x260bf: "\x05\x05\x04\x04\x04\x04\x01\x02\x04\x05\x05\x02\x01\x05\x03", // 𦂿
+ 0x260c0: "\x05\x05\x04\x04\x04\x04\x03\x03\x02\x01\x02\x01\x01\x02\x04", // 𦃀
+ 0x260c1: "\x05\x05\x04\x04\x04\x04\x03\x04\x03\x04\x02\x05\x01\x05\x02", // 𦃁
+ 0x260c2: "\x01\x02\x02\x05\x01\x02\x05\x03\x01\x04\x05\x05\x04\x02\x03\x04", // 𦃂
+ 0x260c3: "\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x05\x05\x04\x02\x03\x04", // 𦃃
+ 0x260c4: "\x05\x05\x04\x04\x04\x04\x01\x03\x01\x01\x01\x02\x01\x01\x01\x05", // 𦃄
+ 0x260c5: "\x01\x01\x02\x01\x05\x05\x04\x02\x03\x04\x03\x05\x04\x02\x05\x01", // 𦃅
+ 0x260c6: "\x01\x02\x04\x05\x05\x05\x04\x02\x03\x04\x03\x05\x04\x02\x05\x01", // 𦃆
+ 0x260c7: "\x05\x05\x04\x04\x04\x04\x03\x03\x02\x01\x05\x03\x01\x05\x03\x05", // 𦃇
+ 0x260c8: "\x05\x05\x04\x04\x04\x04\x03\x02\x01\x01\x05\x01\x01\x02\x05\x04", // 𦃈
+ 0x260c9: "\x05\x05\x04\x04\x04\x04\x03\x01\x03\x04\x04\x03\x01\x05\x02\x03", // 𦃉
+ 0x260ca: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x02\x02\x01\x01\x02\x03\x04", // 𦃊
+ 0x260cb: "\x05\x05\x04\x04\x04\x04\x03\x02\x05\x03\x04\x01\x01\x05\x03\x05", // 𦃋
+ 0x260cc: "\x05\x05\x04\x04\x04\x04\x05\x01\x01\x04\x05\x02\x05\x02\x05\x04", // 𦃌
+ 0x260cd: "\x05\x05\x04\x04\x04\x04\x03\x02\x05\x03\x05\x04\x01\x01\x03\x02", // 𦃍
+ 0x260ce: "\x05\x05\x04\x04\x04\x04\x01\x02\x02\x01\x01\x01\x01\x05\x03\x04", // 𦃎
+ 0x260cf: "\x05\x05\x04\x04\x04\x04\x03\x04\x01\x02\x03\x05\x04\x03\x05\x05\x04", // 𦃏
+ 0x260d0: "\x05\x05\x04\x04\x04\x04\x04\x05\x04\x04\x02\x05\x01\x02\x01\x04", // 𦃐
+ 0x260d1: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x02\x04\x01\x05\x03\x02\x05", // 𦃑
+ 0x260d2: "\x05\x05\x04\x04\x04\x04\x05\x02\x02\x05\x02\x01\x01\x02\x03\x04", // 𦃒
+ 0x260d3: "\x05\x05\x04\x04\x04\x04\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 𦃓
+ 0x260d4: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𦃔
+ 0x260d5: "\x05\x05\x04\x04\x04\x04\x03\x05\x04\x03\x05\x02\x04\x04\x05\x04\x04", // 𦃕
+ 0x260d6: "\x05\x05\x04\x04\x04\x04\x04\x03\x03\x04\x04\x03\x03\x04\x02\x02", // 𦃖
+ 0x260d7: "\x04\x03\x01\x05\x02\x03\x03\x05\x01\x01\x05\x05\x04\x02\x03\x04", // 𦃗
+ 0x260d8: "\x05\x05\x04\x04\x04\x04\x05\x01\x03\x04\x01\x04\x03\x01\x01\x02", // 𦃘
+ 0x260d9: "\x02\x05\x01\x01\x01\x02\x02\x01\x03\x04\x05\x05\x04\x02\x03\x04", // 𦃙
+ 0x260da: "\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x05\x05\x04\x02\x03\x04", // 𦃚
+ 0x260db: "\x05\x05\x04\x04\x04\x04\x03\x04\x03\x04\x02\x05\x01\x05\x02", // 𦃛
+ 0x260dc: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x02\x03\x05\x02\x05\x01\x01", // 𦃜
+ 0x260dd: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x02\x05\x05\x04\x02\x03\x04", // 𦃝
+ 0x260de: "\x05\x05\x04\x04\x04\x04\x03\x02\x05\x03\x04\x01\x04\x05\x04\x04", // 𦃞
+ 0x260df: "\x03\x04\x04\x03\x05\x05\x04\x04\x04\x04\x05\x05\x04\x02\x03\x04", // 𦃟
+ 0x260e0: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01", // 𦃠
+ 0x260e1: "\x05\x05\x04\x04\x04\x04\x03\x05\x04\x05\x05\x04\x02\x03\x04", // 𦃡
+ 0x260e2: "\x01\x03\x01\x02\x05\x01\x02\x05\x05\x04\x05\x05\x04\x02\x03\x04", // 𦃢
+ 0x260e3: "\x05\x05\x04\x04\x04\x04\x01\x03\x02\x05\x01\x02\x05\x02\x05\x01", // 𦃣
+ 0x260e4: "\x05\x04\x05\x02\x03\x03\x05\x04\x05\x03\x05\x05\x04\x02\x03\x04", // 𦃤
+ 0x260e5: "\x05\x05\x04\x04\x04\x04\x03\x05\x01\x01\x02\x05\x02\x03\x02\x05", // 𦃥
+ 0x260e6: "\x01\x02\x02\x05\x01\x02\x05\x01\x04\x05\x05\x05\x04\x02\x03\x04", // 𦃦
+ 0x260e7: "\x05\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01", // 𦃧
+ 0x260e8: "\x05\x05\x04\x04\x04\x04\x03\x02\x01\x05\x01\x01\x01\x02\x03\x04", // 𦃨
+ 0x260e9: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x01\x03\x04\x03\x05\x04", // 𦃩
+ 0x260ea: "\x05\x05\x04\x04\x04\x04\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01", // 𦃪
+ 0x260eb: "\x05\x05\x04\x04\x04\x04\x03\x05\x05\x05\x04\x01\x04\x03\x02\x05", // 𦃫
+ 0x260ec: "\x05\x05\x04\x04\x04\x04\x03\x02\x02\x03\x05\x04\x02\x05\x01\x01", // 𦃬
+ 0x260ed: "\x05\x05\x04\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x02\x05\x02", // 𦃭
+ 0x260ee: "\x05\x05\x04\x04\x04\x04\x01\x02\x02\x04\x01\x05\x03\x03\x04", // 𦃮
+ 0x260ef: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x01\x05\x03\x02\x05\x04", // 𦃯
+ 0x260f0: "\x05\x05\x04\x04\x04\x04\x02\x05\x02\x02\x01\x02\x05\x01\x01\x05", // 𦃰
+ 0x260f1: "\x05\x05\x04\x04\x04\x04\x03\x01\x03\x04\x04\x03\x01\x01\x01\x02", // 𦃱
+ 0x260f2: "\x05\x05\x04\x04\x04\x04\x04\x04\x05\x01\x03\x05\x03\x03\x03\x04", // 𦃲
+ 0x260f3: "\x05\x05\x04\x04\x04\x04\x04\x01\x03\x02\x03\x04\x04\x05\x04\x04", // 𦃳
+ 0x260f4: "\x05\x05\x04\x04\x04\x04\x05\x01\x05\x01\x05\x02\x05\x01\x02\x01", // 𦃴
+ 0x260f5: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x03\x05\x04\x04\x05\x04\x04", // 𦃵
+ 0x260f6: "\x05\x05\x04\x04\x04\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05", // 𦃶
+ 0x260f7: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x01\x01\x03\x01\x03\x02\x05", // 𦃷
+ 0x260f8: "\x05\x05\x04\x04\x04\x04\x01\x02\x02\x01\x01\x01\x04\x03\x03\x04", // 𦃸
+ 0x260f9: "\x05\x05\x04\x04\x04\x04\x03\x04\x01\x05\x01\x01\x03\x02\x05\x01", // 𦃹
+ 0x260fa: "\x05\x05\x04\x04\x04\x04\x03\x02\x02\x05\x01\x03\x01\x01\x03\x04", // 𦃺
+ 0x260fb: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01\x03\x04\x01\x05\x03\x04", // 𦃻
+ 0x260fc: "\x05\x05\x04\x04\x04\x04\x04\x05\x02\x05\x01\x01\x04\x01\x03\x04", // 𦃼
+ 0x260fd: "\x05\x05\x04\x04\x04\x04\x05\x05\x05\x02\x05\x01\x05\x02\x01\x05", // 𦃽
+ 0x260fe: "\x05\x05\x04\x04\x04\x04\x01\x03\x05\x04\x02\x02\x04\x04\x04\x04", // 𦃾
+ 0x260ff: "\x05\x05\x04\x04\x04\x04\x02\x05\x02\x02\x01\x01\x02\x01\x05\x04", // 𦃿
+ 0x26100: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𦄀
+ 0x26101: "\x05\x05\x04\x04\x04\x04\x05\x01\x01\x05\x03\x04\x04\x05\x04", // 𦄁
+ 0x26102: "\x05\x05\x04\x04\x04\x04\x01\x02\x02\x01\x03\x05\x04\x05\x02\x05\x02", // 𦄂
+ 0x26103: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x03\x03\x01\x02\x02\x05\x01", // 𦄃
+ 0x26104: "\x05\x05\x04\x04\x04\x04\x05\x01\x01\x03\x02\x05\x01\x05\x02", // 𦄄
+ 0x26105: "\x05\x05\x04\x04\x04\x04\x01\x03\x01\x04\x03\x03\x04\x05\x03\x04", // 𦄅
+ 0x26106: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x02\x05\x01\x01\x02\x01\x01", // 𦄆
+ 0x26107: "\x05\x05\x04\x04\x04\x04\x04\x04\x01\x02\x05\x01\x01\x01\x02\x01", // 𦄇
+ 0x26108: "\x05\x05\x04\x04\x04\x04\x03\x04\x01\x01\x02\x04\x03\x01\x02\x02", // 𦄈
+ 0x26109: "\x01\x03\x02\x01\x01\x02\x03\x04\x05\x03\x04\x05\x05\x04\x02\x03\x04", // 𦄉
+ 0x2610a: "\x03\x05\x01\x03\x03\x01\x03\x04\x02\x05\x01\x05\x05\x04\x02\x03\x04", // 𦄊
+ 0x2610b: "\x05\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𦄋
+ 0x2610c: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x03\x05\x01\x02\x01\x03\x05\x04", // 𦄌
+ 0x2610d: "\x05\x05\x04\x04\x04\x04\x01\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04", // 𦄍
+ 0x2610e: "\x05\x05\x04\x04\x04\x04\x04\x04\x05\x01\x02\x02\x01\x01\x01\x05\x04", // 𦄎
+ 0x2610f: "\x05\x05\x04\x04\x04\x04\x01\x02\x03\x04\x02\x04\x03\x03\x05\x04\x01", // 𦄏
+ 0x26110: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x05\x05\x04\x02\x03\x04", // 𦄐
+ 0x26111: "\x05\x05\x04\x04\x04\x04\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x01", // 𦄑
+ 0x26112: "\x05\x05\x04\x04\x04\x04\x01\x03\x05\x01\x03\x02\x05\x01\x02\x02\x05", // 𦄒
+ 0x26113: "\x05\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x03\x05\x05\x01\x03\x05", // 𦄓
+ 0x26114: "\x05\x05\x04\x04\x04\x04\x04\x04\x05\x03\x05\x01\x05\x04\x01\x02\x01", // 𦄔
+ 0x26115: "\x05\x05\x04\x04\x04\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01\x02\x01", // 𦄕
+ 0x26116: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x02\x05\x01\x01\x03\x04\x04\x04", // 𦄖
+ 0x26117: "\x05\x05\x04\x04\x04\x04\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𦄗
+ 0x26118: "\x05\x05\x04\x04\x04\x04\x03\x04\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 𦄘
+ 0x26119: "\x05\x05\x04\x04\x04\x04\x03\x01\x04\x03\x01\x04\x01\x02\x01\x02\x01", // 𦄙
+ 0x2611a: "\x05\x05\x04\x04\x04\x04\x03\x03\x03\x02\x01\x03\x04\x03\x04\x03\x04", // 𦄚
+ 0x2611b: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 𦄛
+ 0x2611c: "\x05\x05\x04\x04\x04\x04\x01\x01\x01\x02\x05\x03\x01\x01\x02\x03\x04", // 𦄜
+ 0x2611d: "\x05\x05\x04\x04\x04\x04\x04\x01\x03\x01\x02\x02\x01\x04\x04\x04\x04", // 𦄝
+ 0x2611e: "\x05\x05\x04\x04\x04\x04\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01", // 𦄞
+ 0x2611f: "\x05\x05\x04\x02\x03\x04\x03\x03\x03\x05\x01\x03\x02\x05\x01\x02\x02", // 𦄟
+ 0x26120: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x03\x04\x05\x05\x04\x02\x03\x04", // 𦄠
+ 0x26121: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x03", // 𦄡
+ 0x26122: "\x05\x05\x04\x04\x04\x04\x04\x01\x03\x05\x01\x01\x02\x05\x01\x01\x02", // 𦄢
+ 0x26123: "\x05\x05\x04\x04\x04\x04\x04\x01\x03\x05\x02\x05\x01\x03\x05\x03\x04", // 𦄣
+ 0x26124: "\x05\x05\x04\x04\x04\x04\x01\x03\x01\x02\x05\x01\x02\x05\x05\x03\x04", // 𦄤
+ 0x26125: "\x05\x05\x04\x04\x04\x04\x05\x04\x05\x04\x01\x02\x01\x04\x05\x04\x04", // 𦄥
+ 0x26126: "\x05\x05\x04\x04\x04\x04\x05\x02\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 𦄦
+ 0x26127: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01", // 𦄧
+ 0x26128: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x04\x05\x05\x05\x04\x02\x03\x04", // 𦄨
+ 0x26129: "\x05\x05\x04\x04\x04\x04\x01\x02\x02\x01\x02\x05\x01\x01\x05\x03\x04", // 𦄩
+ 0x2612a: "\x05\x05\x04\x04\x04\x04\x05\x01\x03\x02\x04\x03\x01\x03\x04\x01\x01", // 𦄪
+ 0x2612b: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x02\x03\x04\x04\x03\x05\x03\x01", // 𦄫
+ 0x2612c: "\x05\x05\x04\x04\x04\x04\x02\x05\x02\x02\x05\x01\x01\x01\x05\x03\x05", // 𦄬
+ 0x2612d: "\x05\x05\x04\x04\x04\x04\x03\x01\x02\x03\x04\x05\x03\x04\x05\x05\x04", // 𦄭
+ 0x2612e: "\x05\x05\x04\x04\x04\x04\x03\x04\x04\x03\x04\x05\x02\x05\x01\x05\x01", // 𦄮
+ 0x2612f: "\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04\x05\x05\x04\x02\x03\x04", // 𦄯
+ 0x26130: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x01\x05\x03\x04\x01", // 𦄰
+ 0x26131: "\x05\x05\x04\x04\x04\x04\x03\x02\x01\x02\x05\x03\x04\x02\x01\x05\x04", // 𦄱
+ 0x26132: "\x05\x05\x04\x04\x04\x04\x04\x04\x05\x03\x02\x01\x02\x05\x03\x04\x01", // 𦄲
+ 0x26133: "\x05\x01\x01\x04\x03\x01\x02\x03\x04\x03\x04\x05\x05\x04\x02\x03\x04", // 𦄳
+ 0x26134: "\x05\x05\x04\x04\x04\x04\x04\x01\x03\x04\x03\x02\x01\x01\x02\x03\x04", // 𦄴
+ 0x26135: "\x05\x05\x04\x04\x04\x04\x03\x04\x03\x01\x02\x03\x04\x04\x05\x04\x04", // 𦄵
+ 0x26136: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01\x02\x02\x03\x04\x03\x02", // 𦄶
+ 0x26137: "\x05\x05\x04\x04\x04\x04\x05\x04\x02\x05\x01\x01\x02\x04\x05\x04", // 𦄷
+ 0x26138: "\x05\x05\x04\x04\x04\x04\x04\x01\x01\x01\x02\x05\x01\x03\x04\x05\x04", // 𦄸
+ 0x26139: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x02", // 𦄹
+ 0x2613a: "\x05\x05\x04\x04\x04\x04\x04\x05\x01\x01\x05\x04\x03\x05\x01\x01", // 𦄺
+ 0x2613b: "\x05\x05\x04\x04\x04\x04\x05\x05\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𦄻
+ 0x2613c: "\x05\x05\x04\x04\x04\x04\x03\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𦄼
+ 0x2613d: "\x05\x05\x04\x04\x04\x04\x04\x04\x01\x01\x05\x01\x05\x01\x02\x03\x04", // 𦄽
+ 0x2613e: "\x05\x05\x04\x04\x04\x04\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 𦄾
+ 0x2613f: "\x05\x05\x04\x04\x04\x04\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𦄿
+ 0x26140: "\x05\x05\x04\x04\x04\x04\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04", // 𦅀
+ 0x26141: "\x05\x05\x04\x04\x04\x04\x01\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01\x04", // 𦅁
+ 0x26142: "\x05\x05\x04\x04\x04\x04\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04", // 𦅂
+ 0x26143: "\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 𦅃
+ 0x26144: "\x05\x05\x04\x04\x04\x04\x04\x01\x05\x04\x03\x05\x04\x01\x03\x01\x03\x04", // 𦅄
+ 0x26145: "\x05\x05\x04\x04\x04\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𦅅
+ 0x26146: "\x05\x05\x04\x04\x04\x04\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x03\x04", // 𦅆
+ 0x26147: "\x05\x05\x04\x04\x04\x04\x01\x02\x02\x05\x01\x02\x05\x01\x01\x05\x03\x04", // 𦅇
+ 0x26148: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x02\x05\x01\x04\x03\x01\x03\x03\x03", // 𦅈
+ 0x26149: "\x05\x05\x04\x04\x04\x04\x05\x01\x03\x03\x02\x05\x01\x02\x05\x02\x01\x04", // 𦅉
+ 0x2614a: "\x05\x05\x04\x04\x04\x04\x03\x04\x03\x04\x03\x04\x03\x04\x02\x05\x01\x01", // 𦅊
+ 0x2614b: "\x05\x05\x04\x04\x04\x04\x01\x01\x03\x04\x01\x01\x03\x04\x04\x05\x04\x04", // 𦅋
+ 0x2614c: "\x05\x05\x04\x04\x04\x04\x04\x03\x01\x01\x03\x04\x05\x05\x04\x02\x03\x04", // 𦅌
+ 0x2614d: "\x05\x05\x04\x04\x04\x04\x05\x04\x05\x04\x05\x04\x05\x05\x04\x02\x03\x04", // 𦅍
+ 0x2614e: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x01\x02\x01\x03\x05\x04\x04\x04\x04", // 𦅎
+ 0x2614f: "\x05\x05\x04\x04\x04\x04\x01\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01", // 𦅏
+ 0x26150: "\x02\x01\x01\x05\x05\x04\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𦅐
+ 0x26151: "\x05\x05\x04\x04\x04\x04\x03\x03\x02\x03\x03\x01\x02\x02\x05\x01\x01\x01", // 𦅑
+ 0x26152: "\x05\x05\x04\x04\x04\x04\x05\x04\x05\x04\x05\x04\x03\x04\x02\x04\x04\x04", // 𦅒
+ 0x26153: "\x03\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04\x05\x05\x04\x02\x03\x04", // 𦅓
+ 0x26154: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x05\x05\x04\x02\x03\x04", // 𦅔
+ 0x26155: "\x01\x02\x04\x05\x05\x05\x04\x02\x03\x04\x02\x01\x02\x05\x01\x01\x01\x02", // 𦅕
+ 0x26156: "\x05\x05\x04\x04\x04\x04\x03\x04\x01\x02\x05\x01\x05\x04\x01\x05\x04\x01", // 𦅖
+ 0x26157: "\x05\x05\x04\x04\x04\x04\x04\x03\x01\x01\x02\x01\x04\x01\x03\x05\x03\x04", // 𦅗
+ 0x26158: "\x05\x05\x04\x04\x04\x04\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01", // 𦅘
+ 0x26159: "\x05\x05\x04\x04\x04\x04\x01\x04\x05\x02\x04\x01\x03\x04\x04\x01\x03\x04", // 𦅙
+ 0x2615a: "\x03\x05\x04\x04\x03\x01\x01\x02\x02\x05\x01\x03\x05\x05\x04\x02\x03\x04", // 𦅚
+ 0x2615b: "\x05\x05\x04\x04\x04\x04\x05\x01\x01\x01\x02\x01\x03\x05\x04\x01\x02\x04", // 𦅛
+ 0x2615c: "\x05\x05\x04\x04\x04\x04\x04\x04\x05\x01\x03\x02\x05\x02\x02\x01\x01\x02", // 𦅜
+ 0x2615d: "\x05\x05\x04\x04\x04\x04\x04\x03\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01", // 𦅝
+ 0x2615e: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x04\x01\x03\x05\x03\x04\x05\x03\x04", // 𦅞
+ 0x2615f: "\x05\x05\x04\x04\x04\x04\x01\x03\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 𦅟
+ 0x26160: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x02\x01\x01\x02\x01\x02\x01\x01\x02", // 𦅠
+ 0x26161: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x03\x04", // 𦅡
+ 0x26162: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x02\x03\x05\x03\x03\x04\x05\x04\x04", // 𦅢
+ 0x26163: "\x05\x05\x04\x04\x04\x04\x02\x05\x02\x01\x03\x01\x02\x01\x03\x01\x03\x04", // 𦅣
+ 0x26164: "\x05\x05\x04\x04\x04\x04\x05\x01\x01\x02\x02\x05\x01\x01\x04\x01\x03\x04", // 𦅤
+ 0x26165: "\x05\x05\x04\x04\x04\x04\x03\x05\x02\x05\x01\x02\x01\x02\x05\x01\x01\x05", // 𦅥
+ 0x26166: "\x05\x05\x04\x04\x04\x04\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01", // 𦅦
+ 0x26167: "\x05\x05\x04\x04\x04\x04\x02\x02\x04\x03\x01\x04\x03\x02\x05\x02\x03\x04", // 𦅧
+ 0x26168: "\x03\x03\x03\x05\x05\x04\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𦅨
+ 0x26169: "\x05\x05\x04\x04\x04\x04\x03\x04\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01", // 𦅩
+ 0x2616a: "\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x05\x05\x04\x02\x03\x04", // 𦅪
+ 0x2616b: "\x01\x01\x02\x01\x05\x05\x04\x02\x03\x04\x03\x04\x01\x02\x05\x01\x05\x02", // 𦅫
+ 0x2616c: "\x01\x03\x04\x04\x03\x01\x01\x02\x05\x03\x04\x04\x05\x05\x04\x02\x03\x04", // 𦅬
+ 0x2616d: "\x05\x05\x04\x04\x04\x04\x05\x02\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 𦅭
+ 0x2616e: "\x05\x05\x04\x04\x04\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x01\x02", // 𦅮
+ 0x2616f: "\x05\x05\x04\x04\x04\x04\x03\x01\x04\x03\x01\x04\x01\x02\x01\x01\x02\x04", // 𦅯
+ 0x26170: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 𦅰
+ 0x26171: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x01\x04\x03\x01\x01\x02\x03\x04", // 𦅱
+ 0x26172: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x02\x01\x03\x04\x01\x05\x05\x03\x04", // 𦅲
+ 0x26173: "\x05\x05\x04\x04\x04\x04\x03\x02\x05\x03\x03\x04\x04\x01\x01\x03\x01\x02", // 𦅳
+ 0x26174: "\x05\x01\x03\x03\x01\x01\x05\x05\x05\x04\x04\x04\x04\x03\x05\x01\x05\x01", // 𦅴
+ 0x26175: "\x05\x05\x04\x04\x04\x04\x02\x01\x02\x01\x01\x03\x01\x02\x03\x03\x05\x03\x04", // 𦅵
+ 0x26176: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x02\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 𦅶
+ 0x26177: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x02\x01\x02\x01\x03\x02\x05\x01\x01\x04", // 𦅷
+ 0x26178: "\x03\x05\x04\x04\x03\x01\x01\x02\x05\x02\x02\x01\x03\x05\x05\x04\x02\x03\x04", // 𦅸
+ 0x26179: "\x03\x05\x04\x04\x04\x01\x04\x03\x01\x02\x05\x01\x03\x05\x05\x04\x02\x03\x04", // 𦅹
+ 0x2617a: "\x05\x05\x04\x04\x04\x04\x03\x05\x01\x03\x01\x03\x04\x04\x02\x05\x02\x02\x01", // 𦅺
+ 0x2617b: "\x01\x01\x02\x01\x05\x05\x04\x02\x03\x04\x03\x04\x04\x03\x01\x01\x03\x05\x04", // 𦅻
+ 0x2617c: "\x05\x05\x04\x04\x04\x04\x03\x05\x01\x03\x03\x05\x04\x01\x01\x01\x02\x05\x01", // 𦅼
+ 0x2617d: "\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x03\x04\x05\x05\x04\x02\x03\x04", // 𦅽
+ 0x2617e: "\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x03\x04\x05\x05\x04\x02\x03\x04", // 𦅾
+ 0x2617f: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 𦅿
+ 0x26180: "\x05\x05\x04\x04\x04\x04\x04\x03\x01\x01\x02\x01\x04\x04\x01\x03\x05\x03\x04", // 𦆀
+ 0x26181: "\x04\x01\x05\x02\x05\x01\x03\x05\x04\x01\x05\x05\x04\x02\x03\x04\x03\x05\x04", // 𦆁
+ 0x26182: "\x05\x05\x04\x04\x04\x04\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 𦆂
+ 0x26183: "\x05\x05\x04\x04\x04\x04\x01\x03\x01\x02\x05\x01\x05\x03\x04\x03\x05\x03\x04", // 𦆃
+ 0x26184: "\x05\x05\x04\x04\x04\x04\x01\x01\x02\x01\x01\x01\x02\x01\x04\x05\x04\x03\x04", // 𦆄
+ 0x26185: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01\x02\x05\x02\x02\x01\x04\x01\x05\x03", // 𦆅
+ 0x26186: "\x05\x05\x04\x04\x04\x04\x04\x01\x03\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 𦆆
+ 0x26187: "\x05\x05\x04\x04\x04\x04\x02\x01\x02\x01\x01\x01\x02\x04\x03\x01\x02\x05\x01", // 𦆇
+ 0x26188: "\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x02\x05", // 𦆈
+ 0x26189: "\x05\x05\x04\x04\x04\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x04\x04\x04\x04", // 𦆉
+ 0x2618a: "\x05\x05\x04\x04\x04\x04\x02\x02\x05\x01\x01\x01\x02\x05\x01\x01\x02\x01\x01", // 𦆊
+ 0x2618b: "\x05\x05\x04\x04\x04\x04\x01\x02\x03\x04\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𦆋
+ 0x2618c: "\x05\x05\x04\x04\x04\x04\x04\x01\x05\x04\x05\x04\x05\x04\x05\x04\x01\x03\x04", // 𦆌
+ 0x2618d: "\x05\x05\x04\x04\x04\x04\x04\x01\x03\x01\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 𦆍
+ 0x2618e: "\x05\x05\x04\x04\x04\x04\x02\x05\x02\x02\x01\x01\x03\x04\x04\x03\x01\x01\x02", // 𦆎
+ 0x2618f: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x02\x01\x01\x02\x03\x04\x01\x02\x05\x01", // 𦆏
+ 0x26190: "\x05\x05\x04\x04\x04\x04\x01\x02\x02\x01\x02\x05\x02\x05\x05\x04\x05\x05\x04", // 𦆐
+ 0x26191: "\x05\x05\x04\x04\x04\x04\x01\x03\x02\x05\x04\x03\x01\x02\x01\x01\x01\x02\x01", // 𦆑
+ 0x26192: "\x05\x05\x04\x04\x04\x04\x03\x02\x05\x03\x04\x03\x01\x02\x03\x04\x01\x01\x05", // 𦆒
+ 0x26193: "\x05\x05\x04\x04\x04\x04\x03\x03\x02\x02\x05\x02\x01\x03\x05\x03\x01\x03\x04", // 𦆓
+ 0x26194: "\x05\x05\x04\x04\x04\x04\x03\x04\x04\x03\x04\x05\x04\x05\x04\x04\x03\x05\x04", // 𦆔
+ 0x26195: "\x05\x05\x04\x02\x03\x04\x01\x02\x05\x01\x01\x01\x02\x05\x05\x04\x02\x03\x04", // 𦆕
+ 0x26196: "\x05\x05\x04\x04\x04\x04\x01\x03\x04\x04\x03\x02\x05\x01\x01\x04\x03\x03\x04", // 𦆖
+ 0x26197: "\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x05\x05\x04\x02\x03\x04\x03\x05\x04", // 𦆗
+ 0x26198: "\x05\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x03\x02\x01\x05\x01\x01\x03\x05", // 𦆘
+ 0x26199: "\x05\x05\x04\x04\x04\x04\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x01", // 𦆙
+ 0x2619a: "\x05\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x01\x03\x05\x03\x04", // 𦆚
+ 0x2619b: "\x05\x05\x04\x04\x04\x04\x03\x04\x04\x04\x04\x04\x05\x02\x03\x05\x03\x05\x04", // 𦆛
+ 0x2619c: "\x05\x05\x04\x04\x04\x04\x01\x02\x02\x01\x01\x01\x05\x04\x03\x02\x03\x03\x03\x04", // 𦆜
+ 0x2619d: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04\x01\x02\x04", // 𦆝
+ 0x2619e: "\x05\x05\x04\x04\x04\x04\x03\x01\x01\x02\x02\x02\x02\x01\x03\x05\x04\x01\x05\x02", // 𦆞
+ 0x2619f: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 𦆟
+ 0x261a0: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x05", // 𦆠
+ 0x261a1: "\x05\x05\x04\x04\x04\x04\x01\x03\x04\x03\x03\x04\x04\x03\x03\x04\x03\x01\x01\x05", // 𦆡
+ 0x261a2: "\x05\x05\x04\x04\x04\x04\x02\x05\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04\x02\x02", // 𦆢
+ 0x261a3: "\x05\x05\x04\x04\x04\x04\x05\x01\x03\x04\x01\x04\x03\x01\x01\x02\x04\x05\x05\x04", // 𦆣
+ 0x261a4: "\x05\x05\x04\x04\x04\x04\x03\x04\x04\x03\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𦆤
+ 0x261a5: "\x05\x05\x04\x04\x04\x04\x04\x04\x05\x05\x04\x04\x03\x02\x05\x01\x02\x01\x04", // 𦆥
+ 0x261a6: "\x05\x05\x04\x04\x04\x04\x01\x05\x03\x01\x01\x03\x04\x05\x04\x05\x02\x01\x03\x04", // 𦆦
+ 0x261a7: "\x05\x05\x04\x04\x04\x04\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x03\x01\x02\x01", // 𦆧
+ 0x261a8: "\x05\x05\x04\x04\x04\x04\x01\x03\x01\x02\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𦆨
+ 0x261a9: "\x03\x03\x02\x04\x03\x03\x02\x04\x05\x05\x04\x04\x04\x04\x05\x05\x04\x02\x03\x04", // 𦆩
+ 0x261aa: "\x05\x05\x04\x04\x04\x04\x04\x01\x02\x05\x01\x01\x01\x02\x03\x04\x03\x05\x03\x04", // 𦆪
+ 0x261ab: "\x01\x02\x01\x04\x03\x01\x02\x02\x04\x03\x01\x04\x04\x01\x02\x05\x05\x04\x02\x03\x04", // 𦆫
+ 0x261ac: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x02\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04", // 𦆬
+ 0x261ad: "\x05\x05\x04\x04\x04\x04\x04\x04\x05\x04\x05\x04\x04\x02\x05\x02\x02\x01\x01\x02", // 𦆭
+ 0x261ae: "\x05\x05\x04\x04\x04\x04\x02\x05\x02\x01\x05\x05\x04\x02\x03\x04\x03\x01\x03\x04", // 𦆮
+ 0x261af: "\x05\x05\x04\x04\x04\x04\x04\x04\x05\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𦆯
+ 0x261b0: "\x05\x02\x03\x03\x04\x03\x04\x05\x02\x03\x03\x03\x01\x02\x05\x05\x04\x02\x03\x04", // 𦆰
+ 0x261b1: "\x05\x05\x04\x04\x04\x04\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x01\x02\x03\x04", // 𦆱
+ 0x261b2: "\x05\x05\x04\x04\x04\x04\x04\x01\x03\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 𦆲
+ 0x261b3: "\x05\x05\x04\x04\x04\x04\x04\x03\x02\x05\x01\x03\x05\x04\x03\x02\x05\x01\x03\x05", // 𦆳
+ 0x261b4: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x04\x04\x04\x04", // 𦆴
+ 0x261b5: "\x05\x05\x04\x04\x04\x04\x03\x05\x02\x05\x01\x03\x05\x03\x05\x02\x05\x01\x03\x05", // 𦆵
+ 0x261b6: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x02\x01\x02\x01\x04\x01\x01\x01\x02\x05\x01", // 𦆶
+ 0x261b7: "\x05\x05\x04\x04\x04\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01\x02\x05\x02\x01\x01", // 𦆷
+ 0x261b8: "\x05\x05\x04\x04\x04\x04\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02\x04\x05\x04", // 𦆸
+ 0x261b9: "\x05\x05\x04\x04\x04\x04\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x01\x02\x04", // 𦆹
+ 0x261ba: "\x05\x05\x04\x04\x04\x04\x03\x04\x04\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𦆺
+ 0x261bb: "\x05\x05\x04\x04\x04\x04\x05\x05\x05\x02\x05\x03\x04\x01\x05\x04\x04\x05\x04\x04\x05", // 𦆻
+ 0x261bc: "\x05\x05\x04\x04\x04\x04\x04\x04\x05\x02\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05\x04", // 𦆼
+ 0x261bd: "\x01\x02\x04\x05\x05\x05\x04\x02\x03\x04\x04\x01\x05\x05\x04\x04\x01\x03\x04\x01\x02", // 𦆽
+ 0x261be: "\x01\x01\x02\x01\x05\x05\x04\x02\x03\x04\x04\x01\x05\x05\x04\x04\x01\x03\x04\x01\x02", // 𦆾
+ 0x261bf: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01\x01\x02\x02\x01\x03\x04\x02\x04\x01\x03\x04", // 𦆿
+ 0x261c0: "\x05\x05\x04\x04\x04\x04\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 𦇀
+ 0x261c1: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x01\x01\x02\x04\x04\x01\x05\x03\x03\x01\x03\x04", // 𦇁
+ 0x261c2: "\x02\x01\x02\x01\x01\x03\x04\x02\x05\x02\x05\x05\x04\x02\x03\x04\x02\x05\x01\x02\x01\x04", // 𦇂
+ 0x261c3: "\x05\x05\x04\x04\x04\x04\x03\x01\x04\x03\x01\x04\x01\x02\x01\x03\x02\x05\x01\x01", // 𦇃
+ 0x261c4: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01", // 𦇄
+ 0x261c5: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x01\x02\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𦇅
+ 0x261c6: "\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01\x03\x01\x03\x04\x05\x05\x04\x02\x03\x04", // 𦇆
+ 0x261c7: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05\x01\x02\x01", // 𦇇
+ 0x261c8: "\x05\x05\x04\x04\x04\x04\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x03\x01\x02\x01", // 𦇈
+ 0x261c9: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x02\x02\x01\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 𦇉
+ 0x261ca: "\x05\x05\x04\x04\x04\x04\x02\x04\x03\x01\x03\x05\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 𦇊
+ 0x261cb: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x02\x05\x01\x01\x04\x03\x01\x02\x03\x04\x03\x02", // 𦇋
+ 0x261cc: "\x05\x05\x04\x04\x04\x04\x03\x04\x04\x03\x02\x05\x02\x02\x01\x01\x01\x03\x05\x04\x04", // 𦇌
+ 0x261cd: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x04\x05\x05\x05\x04\x02\x03\x04\x03\x05\x05\x04", // 𦇍
+ 0x261ce: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x02\x03\x02\x05\x03\x03\x04\x01\x04\x05\x04\x04", // 𦇎
+ 0x261cf: "\x05\x05\x04\x04\x04\x04\x02\x05\x02\x02\x01\x01\x02\x01\x02\x05\x01\x03\x05\x03\x04", // 𦇏
+ 0x261d0: "\x05\x05\x04\x04\x04\x04\x03\x02\x01\x01\x05\x05\x04\x05\x01\x01\x01\x04\x03\x03\x04", // 𦇐
+ 0x261d1: "\x05\x05\x04\x04\x04\x04\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x03\x01\x01\x02", // 𦇑
+ 0x261d2: "\x05\x05\x04\x04\x04\x04\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01", // 𦇒
+ 0x261d3: "\x05\x05\x04\x04\x04\x04\x05\x05\x04\x05\x05\x04\x01\x05\x05\x04\x05\x05\x04\x02\x01", // 𦇓
+ 0x261d4: "\x05\x05\x04\x04\x04\x04\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 𦇔
+ 0x261d5: "\x05\x05\x04\x04\x04\x04\x01\x02\x03\x04\x01\x02\x03\x04\x03\x05\x04\x01\x03\x01\x03\x04", // 𦇕
+ 0x261d6: "\x05\x05\x04\x04\x04\x04\x02\x01\x02\x01\x02\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𦇖
+ 0x261d7: "\x05\x05\x04\x04\x04\x04\x05\x01\x05\x05\x01\x05\x01\x02\x02\x01\x03\x04\x04\x05\x04", // 𦇗
+ 0x261d8: "\x05\x05\x04\x04\x04\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x03\x01\x02\x03\x04", // 𦇘
+ 0x261d9: "\x05\x05\x04\x04\x04\x04\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04\x01\x01\x02", // 𦇙
+ 0x261da: "\x05\x01\x01\x04\x03\x01\x02\x03\x04\x01\x03\x02\x01\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 𦇚
+ 0x261db: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x01\x02\x03\x04\x05\x03\x02\x05\x01\x01\x01\x03\x04", // 𦇛
+ 0x261dc: "\x05\x05\x04\x04\x04\x04\x02\x05\x02\x03\x05\x01\x01\x02\x02\x05\x02\x03\x05\x01\x01\x02", // 𦇜
+ 0x261dd: "\x05\x05\x04\x04\x04\x04\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x05\x05\x04\x02\x03\x04", // 𦇝
+ 0x261de: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04", // 𦇞
+ 0x261df: "\x05\x05\x04\x04\x04\x04\x01\x03\x03\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𦇟
+ 0x261e0: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x02\x01\x02\x05\x01\x01\x02\x01\x04\x04\x05\x04\x04", // 𦇠
+ 0x261e1: "\x05\x05\x04\x04\x04\x04\x05\x05\x04\x05\x05\x04\x01\x02\x05\x05\x04\x05\x05\x04\x05\x02", // 𦇡
+ 0x261e2: "\x05\x05\x04\x04\x04\x04\x01\x05\x04\x01\x02\x01\x01\x05\x04\x01\x02\x01\x02\x05\x01\x01", // 𦇢
+ 0x261e3: "\x05\x05\x04\x04\x04\x04\x03\x02\x01\x01\x05\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𦇣
+ 0x261e4: "\x05\x05\x04\x04\x04\x04\x05\x01\x05\x01\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x01\x01", // 𦇤
+ 0x261e5: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x03\x05\x04\x05\x05\x04\x04\x04\x04", // 𦇥
+ 0x261e6: "\x05\x05\x04\x02\x03\x04\x01\x03\x04\x03\x04\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𦇦
+ 0x261e7: "\x05\x05\x04\x04\x04\x04\x02\x05\x02\x02\x01\x01\x03\x04\x03\x03\x04\x04\x03\x03\x04\x02\x02", // 𦇧
+ 0x261e8: "\x04\x01\x05\x05\x02\x01\x02\x05\x01\x01\x01\x01\x02\x03\x04\x03\x05\x05\x04\x02\x03\x04", // 𦇨
+ 0x261e9: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x02\x04\x01\x03\x05\x02\x02\x01\x01\x05\x04\x04\x04\x04", // 𦇩
+ 0x261ea: "\x05\x05\x04\x04\x04\x04\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x01\x03\x04\x05\x03\x04", // 𦇪
+ 0x261eb: "\x05\x05\x04\x04\x04\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x01\x01\x01\x02", // 𦇫
+ 0x261ec: "\x05\x05\x04\x04\x04\x04\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02", // 𦇬
+ 0x261ed: "\x05\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x04\x04\x05\x03\x04\x02\x05\x01\x04\x05\x04", // 𦇭
+ 0x261ee: "\x05\x05\x04\x04\x04\x04\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𦇮
+ 0x261ef: "\x05\x05\x04\x02\x03\x04\x05\x01\x05\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𦇯
+ 0x261f0: "\x05\x05\x04\x04\x04\x04\x01\x03\x02\x01\x01\x02\x03\x04\x05\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 𦇰
+ 0x261f1: "\x05\x05\x04\x04\x04\x04\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x02\x02\x01\x01\x01\x05\x04", // 𦇱
+ 0x261f2: "\x05\x05\x04\x04\x04\x04\x03\x04\x04\x03\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x02\x01", // 𦇲
+ 0x261f3: "\x05\x05\x04\x04\x04\x04\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x01\x04\x03\x03\x04", // 𦇳
+ 0x261f4: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x02\x01\x03\x05\x01\x03\x01\x02\x05\x01\x02\x05\x05\x03\x04", // 𦇴
+ 0x261f5: "\x02\x05\x05\x04\x05\x05\x04\x05\x02\x02\x05\x02\x05\x05\x04\x04\x04\x04\x05\x05\x04\x02\x03\x04", // 𦇵
+ 0x261f6: "\x05\x05\x04\x04\x04\x04\x03\x02\x01\x01\x05\x01\x01\x03\x04\x02\x05\x01\x05\x01\x04\x05\x04", // 𦇶
+ 0x261f7: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01\x05", // 𦇷
+ 0x261f8: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x02\x02\x01\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x03\x04", // 𦇸
+ 0x261f9: "\x05\x05\x04\x04\x04\x04\x05\x04\x05\x02\x03\x02\x05\x03\x05\x02\x05\x01\x05\x05\x04\x02\x03\x04", // 𦇹
+ 0x261fa: "\x05\x05\x04\x04\x04\x04\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x03\x01\x01\x01\x02\x01\x01\x01", // 𦇺
+ 0x261fb: "\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x05\x05\x04\x02\x03\x04\x03\x04\x04\x03\x01\x01\x03\x05\x04", // 𦇻
+ 0x261fc: "\x05\x05\x04\x04\x04\x04\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04\x02\x05\x01\x02\x01\x04", // 𦇼
+ 0x261fd: "\x05\x05\x04\x04\x04\x04\x04\x01\x05\x02\x05\x01\x03\x05\x01\x01\x04\x03\x01\x01\x01\x02\x03\x05\x01\x01", // 𦇽
+ 0x261fe: "\x05\x05\x04\x04\x04\x04\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x01\x03\x03\x05\x04\x01\x01\x01\x02\x05\x01", // 𦇾
+ 0x261ff: "\x05\x05\x04\x04\x04\x04\x03\x05\x02\x05\x01\x03\x05\x03\x05\x02\x05\x01\x03\x05\x03\x05\x02\x05\x01\x03\x05", // 𦇿
+ 0x26200: "\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x05\x05\x04\x02\x03\x04\x02\x01\x02\x05\x01\x01\x04\x04\x05\x01\x02", // 𦈀
+ 0x26201: "\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x05\x05\x04\x02\x03\x04\x04\x01\x05\x05\x04\x04\x01\x03\x04\x01\x02", // 𦈁
+ 0x26202: "\x05\x05\x04\x04\x04\x04\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 𦈂
+ 0x26203: "\x05\x05\x04\x04\x04\x04\x01\x02\x05\x01\x02\x04\x05\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 𦈃
+ 0x26204: "\x05\x05\x04\x04\x04\x04\x05\x05\x05\x02\x05\x03\x04\x01\x01\x02\x01\x03\x05\x01\x03\x05\x05\x05\x04\x02\x03\x04", // 𦈄
+ 0x26205: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x04\x04\x05\x02\x05\x01\x01\x01", // 𦈅
+ 0x26206: "\x05\x05\x04\x04\x04\x04\x04\x01\x03\x04\x04\x04\x05\x01\x01\x02\x01\x03\x01\x01\x02\x05\x02\x02\x05\x01\x01\x01\x03\x04", // 𦈆
+ 0x26207: "\x03\x02\x01\x01\x05\x04\x05\x02\x03\x05\x01\x01\x05\x05\x04\x02\x03\x04\x02\x05\x03\x05\x02\x05\x01\x05\x05\x04\x02\x03\x04", // 𦈇
+ 0x26208: "\x05\x05\x01\x03\x03\x01\x02\x04", // 𦈈
+ 0x26209: "\x05\x05\x01\x04\x05\x01\x05\x01\x02", // 𦈉
+ 0x2620a: "\x05\x05\x01\x01\x02\x03\x04\x03\x04\x01", // 𦈊
+ 0x2620b: "\x05\x05\x01\x01\x02\x05\x03\x05\x01\x01", // 𦈋
+ 0x2620c: "\x05\x05\x01\x01\x02\x05\x01\x02\x03\x04", // 𦈌
+ 0x2620d: "\x05\x05\x01\x01\x03\x05\x04\x02\x01\x02\x01", // 𦈍
+ 0x2620e: "\x05\x05\x01\x04\x03\x02\x05\x01\x01\x01\x02", // 𦈎
+ 0x2620f: "\x05\x05\x01\x03\x05\x01\x05\x02\x05\x01\x01", // 𦈏
+ 0x26210: "\x05\x05\x01\x01\x05\x01\x02\x04\x05\x04", // 𦈐
+ 0x26211: "\x05\x05\x01\x01\x02\x05\x02\x02\x01\x01\x02\x01", // 𦈑
+ 0x26212: "\x05\x05\x01\x05\x04\x02\x05\x01\x01\x02\x03\x04", // 𦈒
+ 0x26213: "\x05\x05\x01\x02\x05\x01\x02\x01\x01\x05\x03\x04", // 𦈓
+ 0x26214: "\x05\x05\x01\x02\x05\x05\x04\x05\x02\x05\x01\x01", // 𦈔
+ 0x26215: "\x05\x05\x01\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 𦈕
+ 0x26216: "\x05\x05\x01\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 𦈖
+ 0x26217: "\x05\x05\x01\x01\x02\x01\x01\x01\x02\x01\x01\x01\x05", // 𦈗
+ 0x26218: "\x05\x05\x01\x01\x02\x02\x03\x04\x01\x02\x05\x01", // 𦈘
+ 0x26219: "\x05\x05\x01\x01\x02\x02\x01\x01\x01\x05\x04\x05\x04", // 𦈙
+ 0x2621a: "\x05\x05\x01\x01\x03\x02\x01\x01\x02\x03\x04\x05\x03\x04", // 𦈚
+ 0x2621b: "\x05\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x01\x01\x05\x04", // 𦈛
+ 0x2621c: "\x05\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02\x03\x04", // 𦈜
+ 0x2621d: "\x05\x05\x01\x05\x01\x05\x05\x01\x05\x01\x02\x02\x01\x03\x04", // 𦈝
+ 0x2621e: "\x05\x05\x01\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 𦈞
+ 0x2621f: "\x05\x05\x01\x01\x02\x03\x04\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 𦈟
+ 0x26220: "\x05\x05\x01\x03\x04\x04\x03\x01\x02\x01\x05\x01\x01\x04\x05\x04\x04", // 𦈠
+ 0x26221: "\x05\x05\x01\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02", // 𦈡
+ 0x26222: "\x03\x01\x01\x02\x01\x05", // 𦈢
+ 0x26223: "\x03\x01\x01\x02\x05\x02\x01\x01\x05", // 𦈣
+ 0x26224: "\x03\x01\x01\x02\x05\x02\x03\x01\x05", // 𦈤
+ 0x26225: "\x03\x01\x01\x02\x05\x02\x01\x01\x02", // 𦈥
+ 0x26226: "\x03\x01\x01\x02\x05\x02\x04\x03\x03\x04", // 𦈦
+ 0x26227: "\x03\x01\x01\x02\x05\x02\x01\x03\x02\x04", // 𦈧
+ 0x26228: "\x03\x01\x01\x02\x05\x02\x01\x01\x03\x02", // 𦈨
+ 0x26229: "\x01\x02\x01\x03\x05\x03\x01\x01\x02\x05\x02", // 𦈩
+ 0x2622a: "\x03\x01\x01\x02\x05\x02\x01\x03\x05\x04\x04", // 𦈪
+ 0x2622b: "\x03\x01\x01\x02\x05\x02\x05\x01\x02\x05\x04", // 𦈫
+ 0x2622c: "\x02\x01\x02\x01\x01\x05\x03\x01\x01\x02\x05\x02", // 𦈬
+ 0x2622d: "\x03\x01\x01\x02\x05\x02\x01\x02\x03\x05\x04", // 𦈭
+ 0x2622e: "\x03\x01\x01\x02\x05\x02\x01\x02\x05\x02\x01", // 𦈮
+ 0x2622f: "\x02\x05\x01\x02\x05\x01\x03\x01\x01\x02\x05\x02", // 𦈯
+ 0x26230: "\x03\x01\x01\x02\x05\x02\x01\x02\x01\x01\x02\x01", // 𦈰
+ 0x26231: "\x01\x01\x03\x05\x03\x04\x03\x01\x01\x02\x05\x02", // 𦈱
+ 0x26232: "\x03\x01\x01\x02\x05\x02\x04\x01\x05\x03\x03\x04", // 𦈲
+ 0x26233: "\x04\x04\x01\x05\x02\x05\x03\x01\x01\x02\x05\x02", // 𦈳
+ 0x26234: "\x03\x01\x01\x02\x05\x02\x03\x04\x04\x03\x05\x02\x01", // 𦈴
+ 0x26235: "\x03\x01\x01\x02\x05\x02\x01\x05\x05\x05\x01\x02\x01", // 𦈵
+ 0x26236: "\x03\x01\x01\x02\x05\x02\x01\x03\x02\x04\x02\x05\x01", // 𦈶
+ 0x26237: "\x03\x01\x01\x02\x05\x02\x04\x01\x05\x04\x03\x02\x05", // 𦈷
+ 0x26238: "\x03\x01\x01\x02\x05\x02\x01\x02\x05\x01\x01\x05\x03\x04", // 𦈸
+ 0x26239: "\x02\x04\x03\x04\x05\x02\x05\x01\x03\x01\x01\x02\x05\x02", // 𦈹
+ 0x2623a: "\x03\x01\x01\x02\x05\x02\x03\x05\x01\x02\x01\x02\x05\x01", // 𦈺
+ 0x2623b: "\x03\x01\x01\x02\x05\x02\x01\x05\x03\x04\x01\x05\x03\x04", // 𦈻
+ 0x2623c: "\x03\x01\x02\x01\x02\x01\x02\x01\x01\x03\x01\x01\x02\x05\x02", // 𦈼
+ 0x2623d: "\x03\x01\x01\x02\x05\x02\x03\x04\x04\x03\x04\x05\x05\x04", // 𦈽
+ 0x2623e: "\x03\x01\x01\x02\x05\x02\x02\x01\x05\x03\x03\x01\x01\x02", // 𦈾
+ 0x2623f: "\x03\x01\x01\x02\x05\x02\x03\x02\x05\x01\x01\x02\x05\x02", // 𦈿
+ 0x26240: "\x03\x01\x01\x02\x05\x02\x03\x02\x05\x01\x02\x01\x01\x05", // 𦉀
+ 0x26241: "\x03\x01\x01\x02\x05\x02\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 𦉁
+ 0x26242: "\x03\x01\x01\x02\x05\x02\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𦉂
+ 0x26243: "\x03\x01\x01\x02\x05\x02\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 𦉃
+ 0x26244: "\x03\x01\x01\x02\x05\x02\x02\x01\x05\x03\x01\x05\x01\x01\x02", // 𦉄
+ 0x26245: "\x03\x01\x01\x02\x05\x02\x02\x05\x01\x02\x05\x01\x01\x01\x05", // 𦉅
+ 0x26246: "\x03\x01\x01\x02\x05\x02\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 𦉆
+ 0x26247: "\x03\x01\x01\x02\x05\x02\x05\x01\x03\x04\x03\x01\x01\x03\x02", // 𦉇
+ 0x26248: "\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x03\x01\x01\x02\x05\x02", // 𦉈
+ 0x26249: "\x03\x01\x01\x02\x05\x02\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 𦉉
+ 0x2624a: "\x03\x01\x01\x02\x05\x02\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 𦉊
+ 0x2624b: "\x03\x01\x01\x02\x01\x02\x01\x02\x01\x05\x03\x01\x05\x03\x01\x01\x02", // 𦉋
+ 0x2624c: "\x03\x01\x01\x02\x05\x02\x02\x01\x05\x03\x01\x05\x03\x01\x01\x02", // 𦉌
+ 0x2624d: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x01\x01\x02\x05\x02", // 𦉍
+ 0x2624e: "\x03\x01\x01\x02\x05\x02\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𦉎
+ 0x2624f: "\x03\x01\x01\x02\x05\x02\x01\x04\x05\x02\x04\x01\x03\x04\x01\x01\x05", // 𦉏
+ 0x26250: "\x03\x01\x01\x02\x05\x02\x04\x03\x01\x01\x03\x02\x01\x05\x05\x04", // 𦉐
+ 0x26251: "\x03\x01\x01\x02\x01\x02\x01\x02\x01\x05\x03\x01\x05\x03\x04\x03\x01\x02", // 𦉑
+ 0x26252: "\x03\x01\x01\x02\x05\x02\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 𦉒
+ 0x26253: "\x03\x01\x01\x02\x05\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𦉓
+ 0x26254: "\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02\x05\x05\x05\x05\x02\x01\x05", // 𦉔
+ 0x26255: "\x03\x01\x01\x02\x05\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 𦉕
+ 0x26256: "\x03\x01\x01\x02\x05\x02\x03\x03\x04\x03\x04\x03\x04\x03\x04\x01\x02\x01", // 𦉖
+ 0x26257: "\x03\x01\x01\x02\x05\x02\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 𦉗
+ 0x26258: "\x03\x01\x01\x02\x05\x02\x02\x04\x03\x04\x05\x02\x05\x01\x01\x05\x02\x03", // 𦉘
+ 0x26259: "\x03\x01\x01\x02\x05\x02\x04\x01\x03\x05\x02\x02\x01\x01\x05\x04\x04\x04\x04", // 𦉙
+ 0x2625a: "\x01\x02\x03\x04\x03\x01\x01\x02\x05\x02\x01\x02\x03\x04\x05\x01\x02\x05\x01", // 𦉚
+ 0x2625b: "\x03\x01\x01\x02\x05\x02\x02\x01\x05\x03\x01\x05\x02\x05\x02\x02\x01\x01\x02", // 𦉛
+ 0x2625c: "\x03\x01\x01\x02\x05\x02\x03\x05\x01\x03\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 𦉜
+ 0x2625d: "\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x04\x05\x03\x01\x01\x02\x05\x02", // 𦉝
+ 0x2625e: "\x01\x02\x05\x01\x02\x05\x03\x01\x01\x02\x05\x02\x02\x01\x03\x01\x01\x02\x05\x02", // 𦉞
+ 0x2625f: "\x03\x01\x01\x02\x05\x02\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𦉟
+ 0x26260: "\x01\x02\x03\x04\x03\x01\x01\x02\x05\x02\x01\x02\x03\x04\x04\x05\x05\x01\x02\x05\x01", // 𦉠
+ 0x26261: "\x03\x01\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x04\x05\x02\x04\x01\x03\x04\x01\x01\x05\x04", // 𦉡
+ 0x26262: "\x03\x01\x01\x02\x05\x02\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 𦉢
+ 0x26263: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x03\x01\x01\x02\x05\x02", // 𦉣
+ 0x26264: "\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x03\x04\x04\x05\x03\x01\x01\x02\x05\x02\x01\x02\x04", // 𦉤
+ 0x26265: "\x05\x05\x05\x02\x05\x01\x05\x02\x01\x05\x03\x02\x04\x01\x01\x01\x02\x01\x03\x01\x01\x02\x05\x02", // 𦉥
+ 0x26266: "\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x03\x01\x01\x02\x05\x02", // 𦉦
+ 0x26267: "\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x03\x04\x04\x03\x01\x01\x02\x05\x02", // 𦉧
+ 0x26268: "\x04\x01\x03\x05\x05\x05\x02\x05\x01\x05\x02\x01\x05\x03\x02\x04\x01\x01\x01\x02\x01\x03\x01\x01\x02\x05\x02", // 𦉨
+ 0x26269: "\x02\x05\x01\x02\x01\x03\x01\x01\x02\x05\x02\x02\x05\x01\x02\x01\x02\x05\x02\x01\x02\x02\x05\x02\x05\x01\x01\x02\x05\x01\x02\x01", // 𦉩
+ 0x2626a: "\x02\x05\x03\x05", // 𦉪
+ 0x2626b: "\x02\x05\x02\x02", // 𦉫
+ 0x2626c: "\x02\x05\x02\x02\x01\x01\x02", // 𦉬
+ 0x2626d: "\x02\x05\x01\x03\x01\x05", // 𦉭
+ 0x2626e: "\x02\x05\x03\x04\x01\x05", // 𦉮
+ 0x2626f: "\x02\x05\x03\x04\x03\x04\x01", // 𦉯
+ 0x26270: "\x02\x05\x04\x03\x01", // 𦉰
+ 0x26271: "\x02\x05\x02\x02\x01\x01\x05", // 𦉱
+ 0x26272: "\x04\x05\x03\x05\x01\x02", // 𦉲
+ 0x26273: "\x02\x05\x05\x04\x05\x04", // 𦉳
+ 0x26274: "\x02\x05\x02\x02\x01\x01\x02", // 𦉴
+ 0x26275: "\x02\x05\x02\x02\x01\x03\x05", // 𦉵
+ 0x26276: "\x02\x05\x02\x02\x01\x03\x05", // 𦉶
+ 0x26277: "\x02\x05\x02\x02\x01\x01\x02\x01", // 𦉷
+ 0x26278: "\x02\x05\x03\x04\x03\x04\x04\x01\x05", // 𦉸
+ 0x26279: "\x02\x05\x02\x02\x01\x03\x05\x04", // 𦉹
+ 0x2627a: "\x02\x05\x03\x04\x03\x04\x04\x01\x05", // 𦉺
+ 0x2627b: "\x02\x05\x05\x04\x05\x04\x01\x01\x02", // 𦉻
+ 0x2627c: "\x02\x05\x02\x02\x01\x01\x03\x04", // 𦉼
+ 0x2627d: "\x02\x05\x03\x04\x03\x04\x04\x01\x05", // 𦉽
+ 0x2627e: "\x02\x05\x02\x02\x01\x04\x01\x05", // 𦉾
+ 0x2627f: "\x02\x05\x03\x05\x01\x01\x05", // 𦉿
+ 0x26280: "\x02\x05\x03\x04\x04\x01\x05", // 𦊀
+ 0x26281: "\x02\x05\x02\x02\x01\x01\x05\x03\x05", // 𦊁
+ 0x26282: "\x02\x05\x02\x02\x01\x01\x05\x05\x01", // 𦊂
+ 0x26283: "\x02\x05\x02\x02\x01\x03\x04\x01\x05", // 𦊃
+ 0x26284: "\x02\x05\x02\x02\x01\x01\x01\x02\x01", // 𦊄
+ 0x26285: "\x04\x05\x03\x04\x01\x03\x04\x04", // 𦊅
+ 0x26286: "\x02\x05\x02\x02\x01\x02\x01\x02\x01", // 𦊆
+ 0x26287: "\x04\x05\x03\x05\x04\x01\x03\x04", // 𦊇
+ 0x26288: "\x02\x05\x02\x02\x01\x03\x05\x04\x01", // 𦊈
+ 0x26289: "\x02\x05\x02\x02\x01\x05\x02\x05", // 𦊉
+ 0x2628a: "\x02\x05\x02\x02\x01\x01\x01\x03\x04", // 𦊊
+ 0x2628b: "\x02\x05\x03\x04\x01\x02\x03\x04", // 𦊋
+ 0x2628c: "\x02\x05\x05\x04\x02\x05\x01\x01", // 𦊌
+ 0x2628d: "\x02\x05\x03\x04\x03\x04\x01\x05\x05\x01", // 𦊍
+ 0x2628e: "\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 𦊎
+ 0x2628f: "\x02\x05\x02\x02\x01\x05\x05\x04\x01\x04", // 𦊏
+ 0x26290: "\x02\x05\x02\x02\x01\x01\x05\x01\x05", // 𦊐
+ 0x26291: "\x02\x05\x02\x02\x01\x03\x05\x03\x05\x02", // 𦊑
+ 0x26292: "\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01", // 𦊒
+ 0x26293: "\x02\x05\x02\x02\x01\x03\x04\x01\x05\x05", // 𦊓
+ 0x26294: "\x02\x05\x02\x02\x01\x02\x05\x05\x04\x01", // 𦊔
+ 0x26295: "\x02\x05\x03\x04\x02\x05\x01\x01\x01", // 𦊕
+ 0x26296: "\x02\x05\x03\x04\x01\x02\x02\x05\x01", // 𦊖
+ 0x26297: "\x02\x05\x05\x04\x03\x05\x04\x05\x05", // 𦊗
+ 0x26298: "\x02\x05\x03\x04\x03\x04\x03\x01\x02\x03\x04", // 𦊘
+ 0x26299: "\x04\x05\x03\x05\x01\x02\x02\x05\x01", // 𦊙
+ 0x2629a: "\x02\x05\x02\x02\x01\x01\x02\x03\x04\x01", // 𦊚
+ 0x2629b: "\x02\x05\x02\x02\x01\x05\x01\x02\x05\x01", // 𦊛
+ 0x2629c: "\x02\x05\x02\x02\x01\x03\x01\x02\x03\x04", // 𦊜
+ 0x2629d: "\x02\x05\x03\x04\x03\x04\x04\x01\x01\x02\x01", // 𦊝
+ 0x2629e: "\x02\x05\x03\x04\x03\x04\x05\x01\x05\x01\x05", // 𦊞
+ 0x2629f: "\x02\x05\x03\x04\x03\x04\x01\x02\x02\x05\x01", // 𦊟
+ 0x262a0: "\x02\x05\x03\x04\x03\x04\x03\x05\x05\x01\x05", // 𦊠
+ 0x262a1: "\x02\x05\x03\x04\x03\x04\x03\x03\x05\x04\x04", // 𦊡
+ 0x262a2: "\x02\x05\x02\x02\x01\x04\x01\x04\x03\x01", // 𦊢
+ 0x262a3: "\x02\x05\x03\x04\x02\x05\x01\x01\x05", // 𦊣
+ 0x262a4: "\x02\x05\x02\x02\x01\x02\x05\x02\x05\x02", // 𦊤
+ 0x262a5: "\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01", // 𦊥
+ 0x262a6: "\x02\x05\x03\x04\x04\x05\x05\x01\x05", // 𦊦
+ 0x262a7: "\x02\x05\x05\x04\x01\x01\x02\x03\x04", // 𦊧
+ 0x262a8: "\x02\x05\x03\x04\x02\x05\x01\x01\x01", // 𦊨
+ 0x262a9: "\x02\x05\x03\x04\x03\x04\x02\x05\x01\x01\x01", // 𦊩
+ 0x262aa: "\x02\x05\x03\x04\x03\x04\x03\x04\x01\x02\x05\x01", // 𦊪
+ 0x262ab: "\x02\x05\x02\x02\x01\x02\x04\x03\x01\x03\x05", // 𦊫
+ 0x262ac: "\x02\x05\x03\x04\x04\x01\x03\x05\x03\x04", // 𦊬
+ 0x262ad: "\x02\x05\x03\x04\x03\x04\x01\x02\x05\x01", // 𦊭
+ 0x262ae: "\x02\x05\x03\x04\x03\x04\x04\x03\x01\x02\x03\x04", // 𦊮
+ 0x262af: "\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 𦊯
+ 0x262b0: "\x02\x05\x03\x04\x05\x04\x02\x05\x01\x01", // 𦊰
+ 0x262b1: "\x02\x05\x03\x04\x01\x02\x01\x01\x02\x01", // 𦊱
+ 0x262b2: "\x02\x05\x02\x02\x01\x03\x05\x04\x02\x05\x01", // 𦊲
+ 0x262b3: "\x02\x05\x02\x02\x01\x04\x05\x05\x01\x05", // 𦊳
+ 0x262b4: "\x02\x05\x02\x02\x01\x03\x04\x01\x02\x05\x01", // 𦊴
+ 0x262b5: "\x02\x05\x02\x02\x01\x01\x02\x03\x04\x03\x05", // 𦊵
+ 0x262b6: "\x02\x05\x03\x04\x03\x04\x04\x01\x03\x05\x03\x04", // 𦊶
+ 0x262b7: "\x02\x05\x02\x02\x01\x01\x05\x03\x05\x03\x04", // 𦊷
+ 0x262b8: "\x02\x05\x02\x02\x01\x04\x01\x02\x05\x01\x01", // 𦊸
+ 0x262b9: "\x02\x05\x03\x04\x03\x05\x04\x02\x05\x01", // 𦊹
+ 0x262ba: "\x02\x05\x02\x02\x01\x01\x01\x01\x02\x01\x05", // 𦊺
+ 0x262bb: "\x02\x05\x05\x04\x01\x05\x01\x02\x03\x04", // 𦊻
+ 0x262bc: "\x02\x05\x02\x02\x01\x02\x05\x01\x03\x02\x05\x01", // 𦊼
+ 0x262bd: "\x02\x05\x02\x02\x01\x01\x03\x05\x03\x03\x03\x04", // 𦊽
+ 0x262be: "\x02\x05\x02\x02\x01\x01\x03\x02\x04\x02\x05\x01", // 𦊾
+ 0x262bf: "\x02\x05\x02\x02\x01\x01\x03\x01\x05\x02\x05\x01", // 𦊿
+ 0x262c0: "\x02\x05\x03\x04\x02\x05\x01\x02\x05\x01\x01", // 𦋀
+ 0x262c1: "\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x01\x02", // 𦋁
+ 0x262c2: "\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02\x04", // 𦋂
+ 0x262c3: "\x02\x05\x03\x04\x02\x05\x01\x01\x01\x01\x02", // 𦋃
+ 0x262c4: "\x02\x05\x03\x04\x03\x04\x03\x04\x04\x03\x05\x02\x01", // 𦋄
+ 0x262c5: "\x02\x05\x02\x02\x01\x03\x05\x01\x02\x01\x01\x02\x01", // 𦋅
+ 0x262c6: "\x02\x05\x02\x02\x01\x05\x02\x01\x03\x03\x05\x04\x04", // 𦋆
+ 0x262c7: "\x02\x05\x03\x04\x02\x01\x02\x05\x01\x01\x01\x02", // 𦋇
+ 0x262c8: "\x02\x05\x02\x02\x01\x01\x05\x03\x04\x01\x05\x03\x04", // 𦋈
+ 0x262c9: "\x02\x05\x02\x02\x01\x03\x05\x01\x01\x05\x02\x05\x04", // 𦋉
+ 0x262ca: "\x02\x05\x02\x02\x01\x01\x02\x02\x01\x01\x01\x03\x04", // 𦋊
+ 0x262cb: "\x02\x05\x02\x02\x01\x03\x01\x01\x05\x03\x01\x01\x05", // 𦋋
+ 0x262cc: "\x02\x05\x05\x04\x03\x02\x01\x05\x01\x01\x03\x05", // 𦋌
+ 0x262cd: "\x02\x05\x02\x02\x01\x03\x02\x01\x01\x05\x01\x01\x05", // 𦋍
+ 0x262ce: "\x02\x05\x02\x02\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 𦋎
+ 0x262cf: "\x02\x05\x02\x02\x01\x05\x01\x01\x02\x04\x01\x03\x04", // 𦋏
+ 0x262d0: "\x04\x05\x03\x05\x02\x01\x02\x05\x01\x01\x01\x02", // 𦋐
+ 0x262d1: "\x02\x05\x03\x04\x03\x04\x01\x03\x02\x04\x02\x05\x01", // 𦋑
+ 0x262d2: "\x02\x05\x02\x02\x01\x03\x05\x04\x04\x03\x03\x01\x02", // 𦋒
+ 0x262d3: "\x02\x05\x02\x02\x01\x04\x03\x01\x01\x03\x04\x05\x05", // 𦋓
+ 0x262d4: "\x02\x05\x03\x04\x05\x01\x01\x02\x04\x01\x03\x04", // 𦋔
+ 0x262d5: "\x02\x05\x03\x04\x03\x04\x03\x03\x02\x05\x03\x02\x05\x04", // 𦋕
+ 0x262d6: "\x02\x05\x03\x04\x03\x04\x05\x04\x05\x04\x05\x04\x05\x04", // 𦋖
+ 0x262d7: "\x02\x05\x03\x04\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04", // 𦋗
+ 0x262d8: "\x02\x05\x03\x04\x03\x04\x01\x02\x02\x05\x01\x01\x01\x05", // 𦋘
+ 0x262d9: "\x02\x05\x03\x04\x03\x04\x01\x03\x04\x02\x05\x01\x01\x05", // 𦋙
+ 0x262da: "\x02\x05\x03\x04\x03\x04\x02\x01\x02\x05\x01\x01\x01\x02", // 𦋚
+ 0x262db: "\x02\x05\x03\x04\x03\x04\x03\x01\x01\x01\x02\x01\x01\x01", // 𦋛
+ 0x262dc: "\x02\x05\x03\x04\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𦋜
+ 0x262dd: "\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x01\x02\x04", // 𦋝
+ 0x262de: "\x02\x05\x02\x02\x01\x02\x04\x03\x03\x05\x04\x01\x02\x02", // 𦋞
+ 0x262df: "\x02\x05\x03\x04\x03\x04\x05\x05\x04\x02\x03\x04\x03\x04\x05", // 𦋟
+ 0x262e0: "\x02\x05\x02\x02\x01\x04\x04\x05\x01\x02\x05\x01\x01\x01", // 𦋠
+ 0x262e1: "\x02\x05\x02\x02\x01\x01\x02\x02\x01\x01\x01\x02\x03\x04", // 𦋡
+ 0x262e2: "\x02\x05\x05\x04\x03\x04\x01\x03\x05\x01\x01\x05\x05", // 𦋢
+ 0x262e3: "\x02\x05\x02\x02\x01\x05\x02\x02\x05\x01\x05\x04\x05\x02", // 𦋣
+ 0x262e4: "\x02\x05\x02\x02\x01\x04\x01\x05\x03\x03\x01\x05\x02\x05", // 𦋤
+ 0x262e5: "\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x03\x05\x04", // 𦋥
+ 0x262e6: "\x02\x05\x02\x02\x01\x01\x03\x05\x05\x02\x02\x05\x02", // 𦋦
+ 0x262e7: "\x02\x05\x03\x04\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01", // 𦋧
+ 0x262e8: "\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 𦋨
+ 0x262e9: "\x02\x05\x03\x04\x05\x05\x04\x04\x04\x04\x03\x05\x04", // 𦋩
+ 0x262ea: "\x02\x05\x02\x02\x01\x01\x02\x03\x02\x01\x05\x05\x04", // 𦋪
+ 0x262eb: "\x02\x05\x03\x04\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 𦋫
+ 0x262ec: "\x02\x05\x03\x04\x03\x04\x04\x01\x01\x01\x02\x05\x01\x05\x03", // 𦋬
+ 0x262ed: "\x02\x05\x03\x04\x03\x04\x05\x01\x05\x05\x01\x05\x01\x03\x04", // 𦋭
+ 0x262ee: "\x02\x05\x03\x04\x03\x04\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 𦋮
+ 0x262ef: "\x02\x05\x02\x02\x01\x03\x03\x05\x04\x04\x03\x03\x05\x04\x04", // 𦋯
+ 0x262f0: "\x02\x05\x02\x02\x01\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 𦋰
+ 0x262f1: "\x02\x05\x03\x04\x01\x02\x01\x01\x02\x05\x02\x05\x01\x02", // 𦋱
+ 0x262f2: "\x02\x05\x02\x02\x01\x03\x05\x04\x03\x05\x04\x03\x05\x05\x04", // 𦋲
+ 0x262f3: "\x02\x05\x02\x02\x01\x02\x05\x02\x02\x01\x01\x02\x01\x02\x01", // 𦋳
+ 0x262f4: "\x02\x05\x02\x02\x01\x03\x05\x04\x03\x03\x04\x04\x03\x03\x04", // 𦋴
+ 0x262f5: "\x02\x05\x03\x04\x04\x04\x01\x03\x04\x04\x03\x05\x02\x01", // 𦋵
+ 0x262f6: "\x02\x05\x02\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01", // 𦋶
+ 0x262f7: "\x02\x05\x02\x02\x01\x02\x05\x01\x01\x05\x02\x03\x01\x03\x04", // 𦋷
+ 0x262f8: "\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x05", // 𦋸
+ 0x262f9: "\x02\x05\x02\x02\x01\x02\x05\x02\x02\x01\x02\x05\x02\x02\x01", // 𦋹
+ 0x262fa: "\x02\x05\x02\x02\x01\x04\x03\x03\x04\x04\x03\x03\x04\x02\x02", // 𦋺
+ 0x262fb: "\x02\x05\x03\x04\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𦋻
+ 0x262fc: "\x02\x05\x03\x04\x03\x04\x05\x04\x03\x05\x04\x01\x01\x05\x01\x05", // 𦋼
+ 0x262fd: "\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01\x01", // 𦋽
+ 0x262fe: "\x02\x05\x02\x02\x01\x02\x01\x05\x03\x01\x05\x02\x05\x01\x01\x01", // 𦋾
+ 0x262ff: "\x02\x05\x02\x02\x01\x01\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01", // 𦋿
+ 0x26300: "\x02\x05\x02\x02\x01\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 𦌀
+ 0x26301: "\x02\x05\x02\x02\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 𦌁
+ 0x26302: "\x02\x05\x02\x02\x01\x02\x05\x01\x02\x01\x01\x01\x02\x02\x01\x01\x02", // 𦌂
+ 0x26303: "\x02\x05\x02\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x01\x02", // 𦌃
+ 0x26304: "\x02\x05\x05\x04\x05\x04\x02\x05\x02\x02\x01\x02\x05\x01\x01", // 𦌄
+ 0x26305: "\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x03\x05\x01\x05\x01", // 𦌅
+ 0x26306: "\x02\x05\x03\x04\x03\x02\x01\x01\x05\x01\x01\x01\x02\x03\x04", // 𦌆
+ 0x26307: "\x02\x05\x02\x02\x01\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04", // 𦌇
+ 0x26308: "\x02\x05\x02\x02\x01\x01\x02\x01\x04\x01\x04\x03\x01\x05\x03\x01", // 𦌈
+ 0x26309: "\x02\x05\x02\x02\x01\x01\x02\x05\x01\x02\x03\x04\x03\x01\x03\x04", // 𦌉
+ 0x2630a: "\x02\x05\x02\x02\x01\x01\x02\x05\x01\x02\x03\x04\x03\x05\x03\x04", // 𦌊
+ 0x2630b: "\x02\x05\x02\x02\x01\x05\x02\x01\x05\x01\x03\x04\x01\x02\x01", // 𦌋
+ 0x2630c: "\x02\x05\x03\x04\x01\x02\x02\x01\x03\x04\x02\x05\x01\x01\x05", // 𦌌
+ 0x2630d: "\x02\x05\x03\x04\x05\x01\x03\x01\x01\x02\x03\x04\x01\x02\x04", // 𦌍
+ 0x2630e: "\x02\x05\x03\x04\x02\x05\x01\x01\x01\x02\x01\x02\x01\x01\x02", // 𦌎
+ 0x2630f: "\x02\x05\x03\x04\x03\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 𦌏
+ 0x26310: "\x02\x05\x03\x04\x03\x04\x04\x04\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𦌐
+ 0x26311: "\x02\x05\x03\x04\x03\x04\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 𦌑
+ 0x26312: "\x02\x05\x02\x02\x01\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 𦌒
+ 0x26313: "\x02\x05\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04\x03\x01\x01\x05", // 𦌓
+ 0x26314: "\x02\x05\x02\x02\x01\x05\x01\x05\x05\x01\x05\x01\x02\x02\x01\x03\x04", // 𦌔
+ 0x26315: "\x02\x05\x02\x02\x01\x02\x05\x01\x02\x01\x02\x01\x03\x05\x04\x02\x05\x01", // 𦌕
+ 0x26316: "\x02\x05\x02\x02\x01\x04\x03\x01\x03\x05\x03\x03\x04\x01\x02\x05\x04", // 𦌖
+ 0x26317: "\x02\x05\x02\x02\x01\x04\x03\x03\x04\x04\x03\x03\x04\x03\x05\x03\x04", // 𦌗
+ 0x26318: "\x02\x05\x03\x04\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𦌘
+ 0x26319: "\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02\x03\x01\x03\x04", // 𦌙
+ 0x2631a: "\x02\x05\x02\x02\x01\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x03\x04", // 𦌚
+ 0x2631b: "\x04\x05\x03\x05\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𦌛
+ 0x2631c: "\x02\x05\x03\x04\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𦌜
+ 0x2631d: "\x02\x05\x03\x04\x03\x04\x03\x05\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𦌝
+ 0x2631e: "\x02\x05\x03\x04\x03\x04\x01\x03\x04\x03\x03\x04\x04\x03\x03\x04\x02\x02", // 𦌞
+ 0x2631f: "\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04\x05\x05\x01\x02\x04\x01\x03\x04", // 𦌟
+ 0x26320: "\x02\x05\x02\x02\x01\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 𦌠
+ 0x26321: "\x02\x05\x02\x02\x01\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𦌡
+ 0x26322: "\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x04\x03\x05\x01\x05\x02\x03", // 𦌢
+ 0x26323: "\x02\x05\x02\x02\x01\x04\x03\x03\x04\x04\x03\x03\x04\x03\x04\x01\x05\x04", // 𦌣
+ 0x26324: "\x02\x05\x03\x04\x03\x04\x04\x01\x04\x03\x01\x03\x05\x04\x02\x02\x01\x05\x04", // 𦌤
+ 0x26325: "\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x02", // 𦌥
+ 0x26326: "\x02\x05\x02\x02\x01\x04\x01\x02\x05\x01\x02\x03\x04\x03\x03\x05\x04\x04", // 𦌦
+ 0x26327: "\x02\x05\x02\x02\x01\x04\x04\x01\x04\x03\x03\x04\x04\x03\x03\x04\x02\x02", // 𦌧
+ 0x26328: "\x02\x05\x03\x04\x03\x04\x05\x01\x02\x01\x01\x05\x01\x05\x04\x04\x03\x03\x04", // 𦌨
+ 0x26329: "\x02\x05\x02\x02\x01\x01\x03\x04\x04\x03\x01\x01\x01\x02\x05\x03\x05\x04", // 𦌩
+ 0x2632a: "\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x04\x03\x03\x04\x04\x03\x03\x04", // 𦌪
+ 0x2632b: "\x02\x05\x02\x02\x01\x03\x03\x02\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x02", // 𦌫
+ 0x2632c: "\x02\x05\x02\x02\x01\x03\x01\x01\x02\x02\x02\x02\x01\x03\x05\x04\x01\x05\x02", // 𦌬
+ 0x2632d: "\x02\x05\x02\x02\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x01\x02", // 𦌭
+ 0x2632e: "\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 𦌮
+ 0x2632f: "\x02\x05\x03\x04\x02\x05\x01\x02\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𦌯
+ 0x26330: "\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x01\x03\x04\x01\x02\x05\x01\x02", // 𦌰
+ 0x26331: "\x02\x05\x03\x04\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x01\x02", // 𦌱
+ 0x26332: "\x02\x05\x03\x04\x03\x04\x05\x04\x03\x05\x04\x01\x01\x05\x01\x05\x04\x04\x04\x04", // 𦌲
+ 0x26333: "\x02\x05\x03\x04\x03\x04\x03\x01\x01\x02\x02\x02\x02\x01\x03\x05\x04\x01\x05\x02", // 𦌳
+ 0x26334: "\x02\x05\x03\x04\x03\x04\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𦌴
+ 0x26335: "\x02\x05\x02\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01", // 𦌵
+ 0x26336: "\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x02\x05\x03\x04", // 𦌶
+ 0x26337: "\x02\x05\x02\x02\x01\x01\x02\x01\x02\x05\x03\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𦌷
+ 0x26338: "\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x03\x04", // 𦌸
+ 0x26339: "\x02\x05\x02\x02\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x01\x03\x02", // 𦌹
+ 0x2633a: "\x05\x01\x01\x03\x02\x05\x01\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 𦌺
+ 0x2633b: "\x02\x05\x02\x02\x01\x05\x01\x05\x05\x01\x05\x01\x02\x02\x01\x03\x04\x04\x05\x04", // 𦌻
+ 0x2633c: "\x02\x05\x03\x04\x04\x01\x04\x03\x01\x03\x05\x04\x01\x01\x05\x01\x01\x05\x01\x01\x01", // 𦌼
+ 0x2633d: "\x02\x05\x02\x02\x01\x03\x04\x04\x01\x01\x01\x02\x05\x01\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 𦌽
+ 0x2633e: "\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 𦌾
+ 0x2633f: "\x02\x05\x02\x02\x01\x01\x02\x05\x04\x01\x02\x05\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 𦌿
+ 0x26340: "\x02\x05\x02\x02\x01\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𦍀
+ 0x26341: "\x02\x05\x02\x02\x01\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x05\x05\x04\x02\x03\x04", // 𦍁
+ 0x26342: "\x02\x05\x02\x02\x01\x02\x05\x01\x02\x01\x02\x01\x05\x01\x05\x05\x01\x05\x01\x02\x02\x01\x03\x04", // 𦍂
+ 0x26343: "\x02\x05\x03\x04\x03\x04\x05\x05\x04\x04\x04\x04\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 𦍃
+ 0x26344: "\x02\x05\x02\x02\x01\x02\x05\x01\x01\x02\x05\x01\x01\x04\x01\x03\x05\x02\x02\x01\x05\x04\x05\x04", // 𦍄
+ 0x26345: "\x02\x05\x03\x04\x02\x05\x01\x02\x01\x02\x01\x05\x01\x05\x05\x01\x05\x01\x02\x02\x01\x03\x04", // 𦍅
+ 0x26346: "\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x02\x05\x02\x02\x01\x01\x02\x01\x02\x05\x01\x03\x05\x03\x04", // 𦍆
+ 0x26347: "\x02\x05\x02\x02\x01\x01\x03\x01\x01\x05\x03\x04\x03\x02\x05\x01\x01\x01\x04\x04\x05\x03\x05\x04\x01\x05\x03", // 𦍇
+ 0x26348: "\x02\x05\x02\x02\x01\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x01\x02", // 𦍈
+ 0x26349: "\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01\x04\x01\x04\x03\x01\x02\x05\x01\x02", // 𦍉
+ 0x2634a: "\x02\x05\x03\x04\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x01\x02", // 𦍊
+ 0x2634b: "\x02\x01\x02\x01\x01\x01\x02", // 𦍋
+ 0x2634c: "\x04\x03\x01\x01\x02\x01", // 𦍌
+ 0x2634d: "\x04\x03\x01\x01\x03", // 𦍍
+ 0x2634e: "\x04\x03\x01\x01\x01\x02\x03\x04", // 𦍎
+ 0x2634f: "\x04\x03\x01\x01\x01\x03\x03\x04", // 𦍏
+ 0x26350: "\x03\x04\x04\x03\x01\x01\x01\x02", // 𦍐
+ 0x26351: "\x04\x03\x01\x01\x02\x01\x03\x05\x04", // 𦍑
+ 0x26352: "\x01\x02\x01\x04\x03\x01\x01\x01\x02", // 𦍒
+ 0x26353: "\x04\x03\x01\x01\x01\x03\x03\x01\x05", // 𦍓
+ 0x26354: "\x04\x03\x01\x01\x01\x03\x05\x02\x05", // 𦍔
+ 0x26355: "\x03\x05\x03\x04\x03\x01\x01\x01\x02", // 𦍕
+ 0x26356: "\x04\x03\x01\x01\x03\x03\x05\x04", // 𦍖
+ 0x26357: "\x04\x03\x01\x01\x01\x03\x05\x04\x05\x02", // 𦍗
+ 0x26358: "\x04\x03\x01\x01\x01\x03\x01\x01\x03\x05", // 𦍘
+ 0x26359: "\x01\x03\x05\x04\x04\x03\x01\x01\x01\x02", // 𦍙
+ 0x2635a: "\x02\x01\x02\x01\x02\x01\x04\x03\x03\x04", // 𦍚
+ 0x2635b: "\x04\x03\x01\x01\x02\x01\x04\x05\x05\x05", // 𦍛
+ 0x2635c: "\x04\x03\x01\x01\x01\x03\x03\x05\x02\x03", // 𦍜
+ 0x2635d: "\x04\x03\x01\x01\x01\x03\x01\x05\x05\x04", // 𦍝
+ 0x2635e: "\x04\x03\x01\x01\x01\x03\x01\x05\x05\x01", // 𦍞
+ 0x2635f: "\x02\x01\x02\x01\x01\x02\x05\x02\x01\x01", // 𦍟
+ 0x26360: "\x04\x03\x01\x01\x01\x03\x01\x03\x05\x03", // 𦍠
+ 0x26361: "\x04\x03\x01\x01\x02\x01\x04\x01\x03\x04", // 𦍡
+ 0x26362: "\x04\x01\x03\x04\x04\x03\x01\x01\x01\x02", // 𦍢
+ 0x26363: "\x04\x03\x01\x01\x01\x03\x01\x05\x02\x05", // 𦍣
+ 0x26364: "\x04\x03\x01\x01\x01\x03\x03\x05\x01\x01", // 𦍤
+ 0x26365: "\x04\x03\x01\x01\x01\x03\x03\x01\x05\x02\x05", // 𦍥
+ 0x26366: "\x04\x03\x01\x01\x01\x03\x05\x02\x02\x05\x02", // 𦍦
+ 0x26367: "\x02\x01\x02\x01\x03\x05\x04\x03\x01\x01\x01\x02", // 𦍧
+ 0x26368: "\x04\x03\x01\x01\x01\x03\x03\x05\x03\x04\x05", // 𦍨
+ 0x26369: "\x04\x03\x01\x01\x01\x03\x01\x02\x02\x05\x01", // 𦍩
+ 0x2636a: "\x04\x03\x01\x01\x01\x03\x03\x04\x03\x03\x03", // 𦍪
+ 0x2636b: "\x04\x03\x01\x01\x01\x03\x04\x01\x05\x05\x04", // 𦍫
+ 0x2636c: "\x01\x02\x02\x05\x01\x04\x03\x01\x01\x01\x02", // 𦍬
+ 0x2636d: "\x04\x03\x01\x01\x01\x03\x01\x05\x05\x04", // 𦍭
+ 0x2636e: "\x02\x01\x02\x01\x01\x02\x01\x05\x02\x01\x01", // 𦍮
+ 0x2636f: "\x04\x03\x01\x01\x02\x01\x05\x03\x01\x05\x04", // 𦍯
+ 0x26370: "\x04\x03\x01\x01\x02\x01\x03\x04\x01\x03\x02", // 𦍰
+ 0x26371: "\x04\x03\x01\x01\x01\x03\x01\x03\x05\x04\x04", // 𦍱
+ 0x26372: "\x02\x01\x03\x05\x04\x04\x03\x01\x01\x01\x02", // 𦍲
+ 0x26373: "\x04\x03\x01\x01\x01\x03\x03\x03\x05\x04\x04", // 𦍳
+ 0x26374: "\x04\x03\x01\x01\x01\x03\x03\x05\x02\x03\x04", // 𦍴
+ 0x26375: "\x04\x03\x01\x01\x01\x03\x03\x05\x02\x05\x01", // 𦍵
+ 0x26376: "\x04\x03\x01\x01\x02\x01\x03\x05\x04\x03\x05", // 𦍶
+ 0x26377: "\x04\x03\x01\x01\x01\x03\x05\x03\x02\x05\x04", // 𦍷
+ 0x26378: "\x04\x03\x01\x01\x02\x01\x01\x03\x01\x02\x04", // 𦍸
+ 0x26379: "\x03\x05\x04\x03\x05\x04\x04\x03\x01\x01\x01\x02", // 𦍹
+ 0x2637a: "\x04\x03\x01\x01\x01\x03\x04\x04\x05\x05\x02\x01", // 𦍺
+ 0x2637b: "\x04\x03\x01\x01\x01\x03\x02\x05\x01\x02\x05\x01", // 𦍻
+ 0x2637c: "\x04\x03\x01\x01\x01\x03\x01\x02\x05\x01\x01\x01", // 𦍼
+ 0x2637d: "\x05\x01\x01\x05\x01\x01\x04\x03\x01\x01\x01\x02", // 𦍽
+ 0x2637e: "\x04\x03\x01\x01\x01\x03\x03\x02\x05\x01\x01\x01", // 𦍾
+ 0x2637f: "\x04\x03\x01\x01\x01\x03\x03\x05\x01\x05\x05\x04", // 𦍿
+ 0x26380: "\x04\x03\x01\x01\x01\x03\x02\x05\x01\x01\x03\x04", // 𦎀
+ 0x26381: "\x04\x03\x01\x01\x01\x03\x01\x02\x01\x02\x05\x01", // 𦎁
+ 0x26382: "\x04\x03\x01\x01\x01\x03\x01\x03\x02\x05\x02\x02", // 𦎂
+ 0x26383: "\x01\x03\x04\x04\x03\x01\x01\x01\x03\x03\x05\x04", // 𦎃
+ 0x26384: "\x04\x03\x01\x01\x01\x03\x01\x03\x05\x04\x03\x05", // 𦎄
+ 0x26385: "\x04\x03\x01\x01\x02\x01\x03\x04\x05\x04\x05\x04", // 𦎅
+ 0x26386: "\x04\x03\x01\x01\x01\x03\x03\x05\x04\x04\x01\x02\x04", // 𦎆
+ 0x26387: "\x04\x03\x01\x01\x01\x03\x01\x03\x05\x03\x03\x03\x04", // 𦎇
+ 0x26388: "\x04\x03\x01\x01\x01\x03\x03\x05\x03\x05\x01\x01\x02", // 𦎈
+ 0x26389: "\x04\x03\x01\x01\x01\x03\x05\x01\x02\x01\x01\x02\x01", // 𦎉
+ 0x2638a: "\x04\x03\x01\x01\x01\x03\x03\x02\x05\x01\x01\x03\x04", // 𦎊
+ 0x2638b: "\x04\x03\x01\x01\x01\x03\x03\x04\x04\x03\x05\x03\x03", // 𦎋
+ 0x2638c: "\x04\x03\x01\x01\x01\x03\x03\x04\x04\x05\x02\x05\x01", // 𦎌
+ 0x2638d: "\x04\x03\x01\x01\x02\x01\x04\x01\x01\x01\x02\x05\x01", // 𦎍
+ 0x2638e: "\x04\x03\x01\x01\x01\x03\x01\x02\x05\x01\x01\x02\x04", // 𦎎
+ 0x2638f: "\x04\x03\x01\x01\x01\x03\x01\x02\x05\x01\x02\x03\x04", // 𦎏
+ 0x26390: "\x04\x03\x01\x01\x01\x03\x02\x05\x01\x01\x02\x01\x01", // 𦎐
+ 0x26391: "\x04\x03\x01\x01\x01\x03\x02\x05\x01\x02\x05\x01", // 𦎑
+ 0x26392: "\x03\x02\x05\x01\x01\x01\x03\x04\x03\x01\x01\x01\x02", // 𦎒
+ 0x26393: "\x04\x03\x01\x01\x01\x03\x04\x01\x05\x04\x03\x02\x05", // 𦎓
+ 0x26394: "\x04\x03\x01\x01\x01\x03\x03\x02\x05\x01\x01\x03\x05", // 𦎔
+ 0x26395: "\x04\x03\x01\x01\x02\x01\x01\x02\x02\x05\x03\x01", // 𦎕
+ 0x26396: "\x04\x03\x01\x01\x03\x01\x02\x05\x01\x02\x03\x04", // 𦎖
+ 0x26397: "\x04\x03\x01\x01\x01\x03\x01\x05\x03\x04\x01\x05\x03\x04", // 𦎗
+ 0x26398: "\x04\x03\x01\x01\x01\x03\x01\x02\x05\x01\x01\x05\x03\x04", // 𦎘
+ 0x26399: "\x04\x03\x01\x01\x02\x01\x03\x04\x02\x05\x01\x02\x05\x01", // 𦎙
+ 0x2639a: "\x03\x04\x04\x03\x01\x01\x01\x03\x03\x05\x03\x01\x01\x02", // 𦎚
+ 0x2639b: "\x04\x03\x01\x01\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01", // 𦎛
+ 0x2639c: "\x04\x03\x01\x01\x01\x03\x01\x03\x05\x03\x03\x04\x03\x04", // 𦎜
+ 0x2639d: "\x02\x05\x01\x01\x01\x01\x03\x04\x04\x03\x01\x01\x01\x02", // 𦎝
+ 0x2639e: "\x04\x03\x01\x01\x01\x03\x03\x04\x04\x03\x05\x02\x01\x05", // 𦎞
+ 0x2639f: "\x04\x03\x01\x01\x02\x01\x04\x04\x04\x04\x04\x03\x03\x04", // 𦎟
+ 0x263a0: "\x04\x03\x01\x01\x01\x03\x05\x01\x03\x01\x02\x02\x05\x01", // 𦎠
+ 0x263a1: "\x04\x03\x01\x01\x02\x01\x01\x03\x04\x03\x01\x01\x02\x01", // 𦎡
+ 0x263a2: "\x04\x03\x01\x01\x01\x03\x01\x05\x02\x05\x01\x05\x04\x01", // 𦎢
+ 0x263a3: "\x04\x03\x01\x01\x01\x03\x01\x02\x05\x03\x05\x01\x01\x02\x01", // 𦎣
+ 0x263a4: "\x04\x03\x01\x01\x01\x03\x05\x04\x05\x02\x03\x01\x02\x03\x04", // 𦎤
+ 0x263a5: "\x04\x03\x01\x01\x01\x03\x01\x05\x03\x05\x03\x02\x05\x01\x01", // 𦎥
+ 0x263a6: "\x05\x04\x05\x02\x03\x03\x01\x03\x04\x04\x03\x01\x01\x01\x02", // 𦎦
+ 0x263a7: "\x04\x01\x02\x05\x01\x02\x05\x01\x01\x02\x01\x02\x01\x01\x01\x02", // 𦎧
+ 0x263a8: "\x05\x02\x01\x03\x02\x05\x01\x01\x01\x04\x03\x01\x01\x01\x02", // 𦎨
+ 0x263a9: "\x04\x03\x01\x01\x01\x03\x04\x04\x05\x01\x02\x01\x02\x05\x01", // 𦎩
+ 0x263aa: "\x04\x03\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 𦎪
+ 0x263ab: "\x04\x01\x02\x05\x01\x02\x05\x01\x01\x04\x03\x01\x01\x01\x02", // 𦎫
+ 0x263ac: "\x04\x03\x01\x01\x01\x03\x02\x05\x01\x01\x03\x01\x01\x02\x01", // 𦎬
+ 0x263ad: "\x04\x03\x01\x01\x01\x03\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 𦎭
+ 0x263ae: "\x04\x03\x01\x01\x01\x03\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 𦎮
+ 0x263af: "\x01\x02\x01\x04\x05\x01\x04\x03\x01\x01\x01\x02\x03\x05\x05\x04", // 𦎯
+ 0x263b0: "\x04\x03\x01\x01\x01\x03\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01", // 𦎰
+ 0x263b1: "\x04\x03\x01\x01\x01\x03\x04\x04\x05\x03\x01\x02\x01\x02\x05\x01", // 𦎱
+ 0x263b2: "\x04\x03\x01\x01\x01\x03\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 𦎲
+ 0x263b3: "\x04\x03\x01\x01\x01\x03\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𦎳
+ 0x263b4: "\x04\x03\x01\x01\x01\x03\x04\x03\x01\x01\x02\x01\x04\x04\x04\x04", // 𦎴
+ 0x263b5: "\x04\x03\x01\x01\x01\x03\x05\x04\x02\x05\x01\x01\x03\x05\x03\x05", // 𦎵
+ 0x263b6: "\x04\x03\x01\x01\x02\x01\x03\x01\x01\x03\x04\x02\x01\x01\x03\x05", // 𦎶
+ 0x263b7: "\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04\x04\x03\x01\x01\x01\x02", // 𦎷
+ 0x263b8: "\x04\x03\x01\x01\x01\x03\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𦎸
+ 0x263b9: "\x04\x03\x01\x01\x01\x03\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 𦎹
+ 0x263ba: "\x04\x03\x01\x01\x01\x03\x01\x02\x01\x02\x01\x05\x05\x05\x01\x02\x01", // 𦎺
+ 0x263bb: "\x04\x03\x01\x01\x01\x03\x01\x02\x01\x02\x04\x04\x05\x01\x01\x03\x05", // 𦎻
+ 0x263bc: "\x01\x02\x01\x04\x05\x03\x05\x03\x05\x05\x04\x04\x03\x01\x01\x01\x02", // 𦎼
+ 0x263bd: "\x04\x03\x01\x01\x01\x03\x01\x02\x02\x02\x05\x01\x01\x01\x03\x05", // 𦎽
+ 0x263be: "\x04\x03\x01\x01\x01\x03\x05\x01\x03\x02\x04\x01\x03\x04\x01\x05\x02", // 𦎾
+ 0x263bf: "\x04\x03\x01\x01\x02\x01\x01\x03\x04\x03\x05\x01\x01\x03\x05\x01\x01", // 𦎿
+ 0x263c0: "\x04\x03\x01\x01\x01\x03\x01\x03\x02\x04\x02\x05\x01\x01\x01\x03\x05", // 𦏀
+ 0x263c1: "\x04\x03\x01\x01\x02\x01\x03\x01\x02\x03\x04\x05\x03\x05\x03\x04", // 𦏁
+ 0x263c2: "\x04\x03\x01\x01\x01\x03\x03\x05\x03\x05\x04\x01\x03\x05\x02\x05\x01", // 𦏂
+ 0x263c3: "\x05\x04\x05\x02\x03\x03\x01\x03\x04\x05\x03\x04\x03\x01\x01\x01\x02", // 𦏃
+ 0x263c4: "\x04\x03\x01\x01\x02\x01\x01\x03\x04\x01\x02\x01\x02\x05\x01\x01\x01", // 𦏄
+ 0x263c5: "\x04\x03\x01\x01\x01\x03\x01\x03\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04", // 𦏅
+ 0x263c6: "\x04\x03\x01\x01\x01\x03\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𦏆
+ 0x263c7: "\x04\x03\x01\x01\x01\x02\x04\x03\x01\x01\x01\x02\x03\x05\x04\x03\x05\x04", // 𦏇
+ 0x263c8: "\x04\x03\x01\x01\x01\x03\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04", // 𦏈
+ 0x263c9: "\x04\x03\x01\x01\x01\x03\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𦏉
+ 0x263ca: "\x04\x03\x01\x01\x01\x03\x02\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05\x04", // 𦏊
+ 0x263cb: "\x04\x03\x01\x01\x01\x03\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01", // 𦏋
+ 0x263cc: "\x04\x03\x01\x01\x01\x03\x01\x03\x02\x05\x02\x02\x01\x03\x02\x05\x02\x02", // 𦏌
+ 0x263cd: "\x04\x03\x01\x01\x01\x03\x05\x01\x05\x02\x05\x03\x03\x04\x01\x01\x02\x01", // 𦏍
+ 0x263ce: "\x04\x01\x01\x03\x04\x03\x01\x01\x02\x01\x04\x03\x01\x02\x05\x01", // 𦏎
+ 0x263cf: "\x04\x03\x01\x01\x01\x03\x04\x03\x01\x02\x02\x04\x03\x01\x02\x05\x01\x01", // 𦏏
+ 0x263d0: "\x03\x04\x01\x02\x05\x01\x04\x03\x01\x01\x01\x02\x04\x03\x01\x01\x01\x02", // 𦏐
+ 0x263d1: "\x04\x03\x01\x01\x01\x03\x05\x05\x04\x05\x05\x04\x01\x03\x04\x05\x03\x04", // 𦏑
+ 0x263d2: "\x04\x03\x01\x01\x02\x01\x01\x03\x04\x01\x02\x02\x02\x05\x01\x02\x01", // 𦏒
+ 0x263d3: "\x05\x01\x01\x03\x02\x05\x01\x04\x03\x01\x01\x01\x02\x01\x02\x03\x04\x01", // 𦏓
+ 0x263d4: "\x04\x03\x01\x01\x01\x03\x01\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01", // 𦏔
+ 0x263d5: "\x04\x03\x01\x01\x01\x03\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 𦏕
+ 0x263d6: "\x04\x03\x01\x01\x01\x03\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 𦏖
+ 0x263d7: "\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x04\x03\x01\x01\x02\x01\x04\x04\x04\x04", // 𦏗
+ 0x263d8: "\x04\x03\x01\x01\x01\x03\x03\x05\x03\x05\x01\x01\x02\x05\x03\x03\x01\x01\x02", // 𦏘
+ 0x263d9: "\x02\x01\x02\x01\x01\x01\x02\x01\x02\x05\x02\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𦏙
+ 0x263da: "\x02\x01\x02\x01\x01\x01\x02\x05\x01\x05\x02\x05\x03\x03\x04\x01\x01\x02\x01", // 𦏚
+ 0x263db: "\x04\x03\x01\x01\x01\x03\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 𦏛
+ 0x263dc: "\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04\x04\x03\x01\x01\x01\x02", // 𦏜
+ 0x263dd: "\x04\x01\x05\x01\x04\x03\x01\x01\x01\x03\x03\x05\x01\x01\x04\x03\x01\x01\x01\x02", // 𦏝
+ 0x263de: "\x04\x01\x05\x02\x05\x01\x03\x05\x04\x01\x04\x03\x01\x01\x01\x02\x03\x05\x04\x04", // 𦏞
+ 0x263df: "\x04\x03\x01\x01\x02\x01\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 𦏟
+ 0x263e0: "\x04\x03\x01\x01\x02\x01\x04\x04\x04\x04\x04\x03\x01\x01\x02\x01\x04\x03\x03\x04", // 𦏠
+ 0x263e1: "\x01\x02\x01\x02\x01\x02\x01\x03\x01\x02\x01\x05\x03\x04\x03\x05\x01\x05", // 𦏡
+ 0x263e2: "\x04\x03\x01\x01\x01\x03\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𦏢
+ 0x263e3: "\x04\x03\x01\x01\x01\x03\x03\x01\x04\x03\x01\x04\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 𦏣
+ 0x263e4: "\x04\x03\x01\x01\x01\x03\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02", // 𦏤
+ 0x263e5: "\x04\x03\x01\x01\x01\x03\x01\x03\x02\x05\x02\x02\x02\x05\x01\x02\x05\x01\x01\x03\x04", // 𦏥
+ 0x263e6: "\x04\x03\x01\x01\x01\x03\x02\x05\x02\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 𦏦
+ 0x263e7: "\x04\x01\x02\x05\x01\x02\x05\x01\x01\x04\x03\x01\x01\x01\x02\x05\x05\x02\x05\x02\x03", // 𦏧
+ 0x263e8: "\x04\x03\x01\x01\x01\x03\x04\x01\x02\x05\x02\x02\x01\x02\x04\x01\x03\x04\x03\x05\x03\x04", // 𦏨
+ 0x263e9: "\x04\x03\x01\x01\x01\x03\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x01", // 𦏩
+ 0x263ea: "\x04\x03\x01\x01\x01\x03\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 𦏪
+ 0x263eb: "\x04\x03\x01\x01\x01\x03\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x01\x01\x05", // 𦏫
+ 0x263ec: "\x04\x03\x01\x01\x01\x02\x04\x01\x01\x01\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01\x04\x04\x04\x04", // 𦏬
+ 0x263ed: "\x04\x03\x01\x01\x01\x03\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01\x04\x03\x01\x01\x01\x02", // 𦏭
+ 0x263ee: "\x04\x03\x01\x01\x01\x02\x03\x04\x01\x02\x05\x01\x03\x04\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𦏮
+ 0x263ef: "\x04\x03\x01\x01\x01\x02\x04\x01\x01\x01\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01", // 𦏯
+ 0x263f0: "\x04\x03\x01\x01\x01\x03\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x03\x04\x01", // 𦏰
+ 0x263f1: "\x04\x03\x01\x01\x01\x03\x05\x05\x04\x04\x03\x01\x01\x01\x03\x05\x05\x04\x04\x03\x01\x01\x01\x03\x05\x05\x04", // 𦏱
+ 0x263f2: "\x05\x03\x03\x03\x05\x03\x03\x03", // 𦏲
+ 0x263f3: "\x05\x04\x01\x05\x04\x01\x05", // 𦏳
+ 0x263f4: "\x05\x04\x01\x05\x04\x01\x01\x01\x02", // 𦏴
+ 0x263f5: "\x05\x04\x01\x05\x04\x01\x01\x05\x04", // 𦏵
+ 0x263f6: "\x05\x04\x01\x05\x04\x01\x03\x04\x05", // 𦏶
+ 0x263f7: "\x01\x03\x04\x05\x04\x01\x05\x04\x01", // 𦏷
+ 0x263f8: "\x05\x04\x01\x05\x04\x01\x05\x02\x05", // 𦏸
+ 0x263f9: "\x05\x04\x01\x05\x04\x01\x01\x01\x02", // 𦏹
+ 0x263fa: "\x01\x02\x01\x05\x04\x01\x05\x04\x01", // 𦏺
+ 0x263fb: "\x05\x04\x01\x05\x04\x01\x01\x01\x05", // 𦏻
+ 0x263fc: "\x01\x02\x01\x05\x04\x01\x05\x04\x01", // 𦏼
+ 0x263fd: "\x05\x04\x01\x05\x04\x01\x01\x02\x04", // 𦏽
+ 0x263fe: "\x03\x04\x01\x05\x04\x01\x05\x04\x01", // 𦏾
+ 0x263ff: "\x02\x05\x02\x05\x04\x01\x05\x04\x01", // 𦏿
+ 0x26400: "\x05\x04\x01\x05\x04\x01\x04\x01\x05", // 𦐀
+ 0x26401: "\x05\x02\x05\x05\x04\x01\x05\x04\x01", // 𦐁
+ 0x26402: "\x05\x04\x01\x05\x04\x01\x01\x05\x03\x04", // 𦐂
+ 0x26403: "\x05\x01\x01\x03\x05\x04\x01\x05\x04\x01", // 𦐃
+ 0x26404: "\x04\x01\x03\x05\x05\x04\x01\x05\x04\x01", // 𦐄
+ 0x26405: "\x05\x04\x01\x05\x04\x01\x03\x05\x05\x04", // 𦐅
+ 0x26406: "\x05\x04\x01\x05\x04\x01\x05\x02\x01\x05", // 𦐆
+ 0x26407: "\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 𦐇
+ 0x26408: "\x03\x04\x05\x03\x05\x04\x01\x05\x04\x01", // 𦐈
+ 0x26409: "\x05\x02\x02\x01\x05\x04\x01\x05\x04\x01", // 𦐉
+ 0x2640a: "\x05\x04\x01\x05\x04\x01\x03\x05\x01\x05", // 𦐊
+ 0x2640b: "\x05\x01\x03\x04\x05\x04\x01\x05\x04\x01", // 𦐋
+ 0x2640c: "\x05\x04\x01\x05\x04\x01\x01\x03\x05\x04", // 𦐌
+ 0x2640d: "\x05\x04\x01\x05\x04\x01\x05\x01\x03\x04", // 𦐍
+ 0x2640e: "\x03\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 𦐎
+ 0x2640f: "\x05\x04\x01\x05\x04\x01\x03\x05\x04", // 𦐏
+ 0x26410: "\x05\x04\x01\x05\x04\x01\x04\x01\x03\x04", // 𦐐
+ 0x26411: "\x04\x01\x03\x04\x05\x04\x01\x05\x04\x01", // 𦐑
+ 0x26412: "\x05\x04\x01\x05\x04\x01\x03\x01\x03\x02", // 𦐒
+ 0x26413: "\x05\x04\x01\x05\x04\x01\x01\x03\x05\x04", // 𦐓
+ 0x26414: "\x05\x04\x01\x05\x04\x01\x01\x02\x03\x04", // 𦐔
+ 0x26415: "\x05\x04\x01\x05\x04\x01\x01\x02\x02\x01\x05", // 𦐕
+ 0x26416: "\x05\x04\x01\x05\x04\x01\x02\x05\x01\x03\x04", // 𦐖
+ 0x26417: "\x05\x04\x01\x05\x04\x01\x01\x03\x05\x04\x04", // 𦐗
+ 0x26418: "\x05\x04\x01\x05\x04\x01\x02\x05\x02\x01\x01", // 𦐘
+ 0x26419: "\x05\x04\x01\x05\x04\x01\x03\x05\x05\x01\x05", // 𦐙
+ 0x2641a: "\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01", // 𦐚
+ 0x2641b: "\x03\x05\x02\x05\x01\x05\x04\x01\x05\x04\x01", // 𦐛
+ 0x2641c: "\x05\x04\x01\x05\x04\x01\x01\x04\x03\x01\x02", // 𦐜
+ 0x2641d: "\x03\x01\x01\x03\x04\x05\x04\x01\x05\x04\x01", // 𦐝
+ 0x2641e: "\x01\x02\x02\x01\x05\x05\x04\x01\x05\x04\x01", // 𦐞
+ 0x2641f: "\x05\x04\x01\x05\x04\x01\x01\x05\x03\x05\x03", // 𦐟
+ 0x26420: "\x05\x04\x01\x05\x04\x01\x03\x05\x01\x05\x04", // 𦐠
+ 0x26421: "\x05\x01\x05\x03\x02\x05\x04\x01\x05\x04\x01", // 𦐡
+ 0x26422: "\x05\x03\x02\x05\x04\x05\x04\x01\x05\x04\x01", // 𦐢
+ 0x26423: "\x05\x04\x01\x05\x04\x01\x03\x01\x01\x02\x03\x04", // 𦐣
+ 0x26424: "\x04\x01\x05\x03\x03\x04\x05\x04\x01\x05\x04\x01", // 𦐤
+ 0x26425: "\x05\x04\x01\x05\x04\x01\x03\x05\x02\x05\x01\x01", // 𦐥
+ 0x26426: "\x05\x04\x01\x05\x04\x01\x03\x05\x04\x02\x05\x01", // 𦐦
+ 0x26427: "\x05\x04\x01\x05\x04\x01\x01\x01\x03\x01\x01\x02", // 𦐧
+ 0x26428: "\x03\x01\x01\x02\x03\x04\x05\x04\x01\x05\x04\x01", // 𦐨
+ 0x26429: "\x05\x04\x01\x05\x04\x01\x03\x03\x05\x04\x01\x04", // 𦐩
+ 0x2642a: "\x05\x04\x01\x05\x04\x01\x02\x05\x01\x01\x05\x03", // 𦐪
+ 0x2642b: "\x01\x02\x01\x02\x02\x01\x05\x04\x01\x05\x04\x01", // 𦐫
+ 0x2642c: "\x05\x04\x01\x05\x04\x01\x03\x04\x01\x02\x05\x01", // 𦐬
+ 0x2642d: "\x05\x04\x01\x05\x04\x01\x05\x03\x04\x05\x03\x04", // 𦐭
+ 0x2642e: "\x05\x01\x01\x05\x01\x01\x04\x01\x02\x05\x01\x01", // 𦐮
+ 0x2642f: "\x05\x01\x01\x05\x01\x01\x02\x05\x03\x04\x01\x01", // 𦐯
+ 0x26430: "\x01\x02\x01\x01\x02\x01\x05\x04\x01\x05\x04\x01", // 𦐰
+ 0x26431: "\x05\x01\x01\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 𦐱
+ 0x26432: "\x05\x04\x01\x05\x04\x01\x04\x05\x02\x05\x01\x01", // 𦐲
+ 0x26433: "\x01\x05\x03\x05\x04\x05\x05\x04\x01\x05\x04\x01", // 𦐳
+ 0x26434: "\x01\x03\x01\x05\x03\x04\x05\x04\x01\x05\x04\x01", // 𦐴
+ 0x26435: "\x04\x03\x01\x01\x03\x02\x05\x04\x01\x05\x04\x01", // 𦐵
+ 0x26436: "\x02\x03\x04\x03\x03\x02\x05\x04\x01\x05\x04\x01", // 𦐶
+ 0x26437: "\x05\x04\x01\x05\x04\x01\x03\x02\x05\x02\x02\x01", // 𦐷
+ 0x26438: "\x01\x03\x02\x04\x02\x05\x01\x05\x04\x01\x05\x04\x01", // 𦐸
+ 0x26439: "\x05\x04\x01\x05\x04\x01\x04\x01\x04\x03\x01\x01\x02", // 𦐹
+ 0x2643a: "\x02\x04\x03\x03\x05\x04\x01\x05\x04\x01\x05\x04\x01", // 𦐺
+ 0x2643b: "\x03\x02\x02\x03\x01\x03\x04\x05\x04\x01\x05\x04\x01", // 𦐻
+ 0x2643c: "\x01\x02\x01\x04\x05\x04\x04\x05\x04\x01\x05\x04\x01", // 𦐼
+ 0x2643d: "\x02\x05\x01\x03\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 𦐽
+ 0x2643e: "\x01\x02\x05\x01\x02\x03\x04\x05\x04\x01\x05\x04\x01", // 𦐾
+ 0x2643f: "\x05\x04\x01\x05\x04\x01\x03\x01\x02\x01\x05\x04", // 𦐿
+ 0x26440: "\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01\x03\x05", // 𦑀
+ 0x26441: "\x05\x04\x01\x05\x04\x01\x05\x04\x03\x04\x03\x05\x04", // 𦑁
+ 0x26442: "\x05\x04\x03\x04\x03\x05\x04\x05\x04\x01\x05\x04\x01", // 𦑂
+ 0x26443: "\x01\x02\x05\x01\x01\x03\x04\x05\x04\x01\x05\x04\x01", // 𦑃
+ 0x26444: "\x05\x04\x01\x05\x04\x01\x01\x03\x01\x01\x03\x04\x05", // 𦑄
+ 0x26445: "\x01\x02\x05\x02\x03\x04\x03\x04\x05\x04\x01\x05\x04\x01", // 𦑅
+ 0x26446: "\x01\x03\x05\x05\x03\x04\x05\x04\x01\x05\x04\x01", // 𦑆
+ 0x26447: "\x02\x05\x03\x04\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 𦑇
+ 0x26448: "\x05\x04\x01\x05\x04\x01\x01\x05\x01\x01\x02\x01\x03\x04", // 𦑈
+ 0x26449: "\x02\x05\x01\x01\x03\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 𦑉
+ 0x2644a: "\x05\x04\x01\x05\x04\x01\x01\x01\x02\x01\x03\x05\x01\x01", // 𦑊
+ 0x2644b: "\x04\x01\x03\x04\x03\x04\x01\x02\x05\x04\x01\x05\x04\x01", // 𦑋
+ 0x2644c: "\x05\x04\x01\x05\x04\x01\x01\x02\x05\x01\x01\x05\x03\x04", // 𦑌
+ 0x2644d: "\x01\x02\x05\x01\x01\x05\x03\x04\x05\x04\x01\x05\x04\x01", // 𦑍
+ 0x2644e: "\x05\x04\x01\x05\x04\x01\x01\x03\x04\x02\x05\x01\x01\x05", // 𦑎
+ 0x2644f: "\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𦑏
+ 0x26450: "\x05\x04\x01\x05\x04\x01\x01\x02\x05\x01\x02\x01\x05\x04", // 𦑐
+ 0x26451: "\x04\x04\x02\x01\x03\x01\x02\x01\x05\x04\x01\x05\x04\x01", // 𦑑
+ 0x26452: "\x04\x03\x01\x04\x03\x01\x01\x03\x05\x04\x01\x05\x04\x01", // 𦑒
+ 0x26453: "\x01\x01\x02\x01\x01\x01\x02\x01\x05\x04\x01\x05\x04\x01", // 𦑓
+ 0x26454: "\x03\x04\x02\x05\x01\x05\x03\x01\x05\x04\x01\x05\x04\x01", // 𦑔
+ 0x26455: "\x05\x04\x01\x05\x04\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 𦑕
+ 0x26456: "\x05\x04\x01\x05\x04\x01\x01\x01\x02\x01\x02\x05\x01\x01", // 𦑖
+ 0x26457: "\x04\x05\x01\x03\x05\x04\x01\x05\x04\x01\x05\x01\x03\x04", // 𦑗
+ 0x26458: "\x01\x03\x01\x02\x05\x01\x05\x03\x04\x05\x04\x01\x05\x04\x01", // 𦑘
+ 0x26459: "\x05\x05\x01\x03\x05\x03\x03\x03\x04\x05\x04\x01\x05\x04\x01", // 𦑙
+ 0x2645a: "\x05\x04\x01\x05\x04\x01\x03\x05\x01\x03\x03\x01\x01\x03\x04", // 𦑚
+ 0x2645b: "\x05\x04\x01\x05\x04\x01\x03\x04\x04\x03\x01\x01\x03\x05\x04", // 𦑛
+ 0x2645c: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x04\x01\x05\x04\x01", // 𦑜
+ 0x2645d: "\x03\x01\x02\x05\x01\x01\x02\x01\x01\x05\x04\x01\x05\x04\x01", // 𦑝
+ 0x2645e: "\x05\x04\x01\x05\x04\x01\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 𦑞
+ 0x2645f: "\x05\x04\x01\x05\x04\x01\x03\x05\x04\x01\x01\x01\x02\x05\x01", // 𦑟
+ 0x26460: "\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01\x01\x01\x02\x01", // 𦑠
+ 0x26461: "\x02\x05\x01\x01\x01\x02\x01\x03\x04\x05\x04\x01\x05\x04\x01", // 𦑡
+ 0x26462: "\x01\x01\x02\x01\x05\x05\x04\x01\x04\x05\x04\x01\x05\x04\x01", // 𦑢
+ 0x26463: "\x05\x04\x01\x05\x04\x01\x03\x01\x02\x03\x02\x01\x05\x01\x01", // 𦑣
+ 0x26464: "\x03\x02\x05\x01\x03\x01\x01\x03\x04\x05\x04\x01\x05\x04\x01", // 𦑤
+ 0x26465: "\x05\x04\x01\x05\x04\x01\x01\x02\x01\x03\x02\x05\x01\x01\x04", // 𦑥
+ 0x26466: "\x04\x03\x01\x03\x05\x01\x01\x02\x02\x05\x04\x01\x05\x04\x01", // 𦑦
+ 0x26467: "\x05\x04\x01\x05\x04\x01\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 𦑧
+ 0x26468: "\x03\x04\x05\x02\x03\x05\x03\x05\x04\x05\x04\x01\x05\x04\x01", // 𦑨
+ 0x26469: "\x05\x04\x01\x05\x04\x01\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 𦑩
+ 0x2646a: "\x03\x01\x02\x03\x02\x01\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 𦑪
+ 0x2646b: "\x05\x01\x03\x04\x03\x01\x02\x03\x04\x05\x04\x01\x05\x04\x01", // 𦑫
+ 0x2646c: "\x02\x05\x01\x02\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 𦑬
+ 0x2646d: "\x01\x02\x05\x01\x02\x05\x01\x02\x01\x05\x04\x01\x05\x04\x01", // 𦑭
+ 0x2646e: "\x05\x04\x01\x05\x04\x01\x04\x05\x01\x03\x02\x05\x01\x02\x02", // 𦑮
+ 0x2646f: "\x05\x04\x01\x05\x04\x01\x01\x05\x01\x01\x02\x01\x03\x04", // 𦑯
+ 0x26470: "\x05\x04\x01\x05\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𦑰
+ 0x26471: "\x04\x05\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04\x01\x05\x04\x01", // 𦑱
+ 0x26472: "\x02\x05\x02\x02\x01\x02\x04\x01\x03\x04\x05\x04\x01\x05\x04\x01", // 𦑲
+ 0x26473: "\x02\x01\x02\x01\x03\x03\x05\x04\x01\x04\x05\x04\x01\x05\x04\x01", // 𦑳
+ 0x26474: "\x05\x04\x03\x05\x01\x01\x01\x05\x01\x05\x05\x04\x01\x05\x04\x01", // 𦑴
+ 0x26475: "\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04\x05\x04\x01\x05\x04\x01", // 𦑵
+ 0x26476: "\x05\x04\x01\x05\x04\x01\x02\x05\x02\x02\x01\x02\x04\x01\x03\x04", // 𦑶
+ 0x26477: "\x05\x04\x01\x05\x04\x01\x01\x02\x05\x01\x01\x02\x04\x01\x05\x03", // 𦑷
+ 0x26478: "\x03\x03\x02\x04\x04\x01\x03\x01\x03\x04\x05\x04\x01\x05\x04\x01", // 𦑸
+ 0x26479: "\x03\x02\x01\x05\x01\x01\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 𦑹
+ 0x2647a: "\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01\x05\x04\x01\x05\x04\x01", // 𦑺
+ 0x2647b: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x05\x04\x01\x05\x04\x01", // 𦑻
+ 0x2647c: "\x05\x04\x01\x05\x04\x01\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 𦑼
+ 0x2647d: "\x01\x03\x02\x05\x01\x02\x05\x02\x05\x01\x05\x04\x01\x05\x04\x01", // 𦑽
+ 0x2647e: "\x05\x04\x01\x05\x04\x01\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01", // 𦑾
+ 0x2647f: "\x05\x04\x01\x05\x04\x01\x04\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 𦑿
+ 0x26480: "\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01\x05\x04\x01\x05\x04\x01", // 𦒀
+ 0x26481: "\x05\x04\x01\x05\x04\x01\x04\x03\x01\x01\x01\x03\x01\x02\x01", // 𦒁
+ 0x26482: "\x04\x03\x01\x05\x02\x03\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 𦒂
+ 0x26483: "\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x05\x04\x01\x05\x04\x01", // 𦒃
+ 0x26484: "\x05\x04\x01\x05\x04\x01\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x01", // 𦒄
+ 0x26485: "\x05\x04\x01\x05\x04\x01\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𦒅
+ 0x26486: "\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 𦒆
+ 0x26487: "\x05\x01\x05\x02\x05\x01\x02\x05\x01\x03\x05\x05\x04\x05\x04\x01\x05\x04\x01", // 𦒇
+ 0x26488: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x02\x05\x04\x01\x05\x04\x01", // 𦒈
+ 0x26489: "\x02\x04\x03\x01\x03\x05\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01", // 𦒉
+ 0x2648a: "\x05\x04\x01\x05\x04\x01\x01\x02\x05\x01\x01\x02\x04\x04\x01\x05\x03", // 𦒊
+ 0x2648b: "\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04\x01\x05\x04\x01\x05\x04\x01", // 𦒋
+ 0x2648c: "\x03\x02\x05\x01\x01\x03\x01\x01\x02\x01\x02\x05\x04\x01\x05\x04\x01", // 𦒌
+ 0x2648d: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01\x05\x04\x01\x05\x04\x01", // 𦒍
+ 0x2648e: "\x05\x04\x01\x05\x04\x01\x01\x02\x05\x01\x01\x02\x01\x04\x04\x05\x04\x04", // 𦒎
+ 0x2648f: "\x05\x04\x01\x05\x04\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 𦒏
+ 0x26490: "\x05\x04\x01\x05\x04\x01\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04", // 𦒐
+ 0x26491: "\x05\x04\x05\x02\x03\x02\x05\x03\x05\x02\x05\x01\x05\x04\x01\x05\x04\x01", // 𦒑
+ 0x26492: "\x05\x04\x01\x05\x04\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 𦒒
+ 0x26493: "\x05\x04\x01\x05\x04\x01\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 𦒓
+ 0x26494: "\x05\x04\x01\x05\x04\x01\x05\x04\x05\x02\x03\x02\x05\x03\x05\x02\x05\x01", // 𦒔
+ 0x26495: "\x02\x01\x02\x01\x03\x03\x05\x04\x01\x04\x02\x02\x05\x04\x01\x05\x04\x01", // 𦒕
+ 0x26496: "\x05\x04\x01\x05\x04\x01\x02\x05\x01\x02\x01\x01\x02\x01\x02\x01\x03\x04", // 𦒖
+ 0x26497: "\x05\x04\x01\x05\x04\x01\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𦒗
+ 0x26498: "\x01\x02\x05\x02\x02\x01\x01\x03\x04\x05\x01\x05\x05\x04\x01\x05\x04\x01", // 𦒘
+ 0x26499: "\x01\x02\x02\x01\x01\x01\x03\x04\x03\x05\x05\x04\x05\x04\x01\x05\x04\x01", // 𦒙
+ 0x2649a: "\x05\x04\x01\x05\x04\x01\x02\x04\x03\x02\x05\x02\x05\x01\x03\x01\x03\x04", // 𦒚
+ 0x2649b: "\x05\x04\x01\x05\x04\x01\x05\x01\x05\x01\x02\x01\x01\x02\x01\x02\x05\x01", // 𦒛
+ 0x2649c: "\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01\x05\x04\x01\x05\x04\x01", // 𦒜
+ 0x2649d: "\x01\x03\x01\x02\x05\x01\x05\x03\x04\x04\x05\x04\x04\x05\x04\x01\x05\x04\x01", // 𦒝
+ 0x2649e: "\x05\x04\x01\x05\x04\x01\x05\x01\x05\x05\x01\x01\x05\x02\x05\x01", // 𦒞
+ 0x2649f: "\x04\x03\x01\x05\x02\x03\x03\x02\x01\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 𦒟
+ 0x264a0: "\x05\x04\x01\x05\x04\x01\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 𦒠
+ 0x264a1: "\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02\x05\x04\x01\x05\x04\x01", // 𦒡
+ 0x264a2: "\x03\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02\x05\x04\x01\x05\x04\x01", // 𦒢
+ 0x264a3: "\x03\x02\x05\x01\x05\x01\x01\x03\x04\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01", // 𦒣
+ 0x264a4: "\x05\x04\x01\x05\x04\x01\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𦒤
+ 0x264a5: "\x03\x04\x05\x04\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01\x01\x01\x03\x04\x04", // 𦒥
+ 0x264a6: "\x05\x04\x01\x05\x04\x01\x05\x05\x05\x02\x05\x03\x04\x01\x05\x04\x04\x05\x04\x04\x05", // 𦒦
+ 0x264a7: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04\x01\x05\x04\x01", // 𦒧
+ 0x264a8: "\x05\x04\x01\x05\x04\x01\x04\x04\x05\x02\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05\x04", // 𦒨
+ 0x264a9: "\x05\x05\x05\x02\x05\x03\x04\x01\x05\x04\x04\x05\x04\x04\x05\x05\x04\x01\x05\x04\x01", // 𦒩
+ 0x264aa: "\x04\x03\x03\x04\x04\x03\x03\x04\x03\x05\x04\x01\x05\x02\x05\x04\x01\x05\x04\x01", // 𦒪
+ 0x264ab: "\x05\x01\x05\x05\x01\x01\x05\x02\x05\x01\x03\x05\x05\x04\x05\x04\x01\x05\x04\x01", // 𦒫
+ 0x264ac: "\x02\x05\x02\x02\x01\x01\x02\x01\x02\x05\x01\x03\x05\x03\x04\x05\x04\x01\x05\x04\x01", // 𦒬
+ 0x264ad: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x01\x03\x04\x01\x02\x01\x05\x04\x01\x05\x04\x01", // 𦒭
+ 0x264ae: "\x04\x01\x04\x03\x01\x03\x05\x04\x01\x01\x05\x01\x05\x01\x01\x01\x05\x04\x01\x05\x04\x01", // 𦒮
+ 0x264af: "\x05\x01\x05\x01\x02\x01\x01\x02\x01\x02\x05\x01\x03\x05\x05\x04\x05\x04\x01\x05\x04\x01", // 𦒯
+ 0x264b0: "\x01\x01\x01\x03\x04\x02\x04\x01\x03\x04\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𦒰
+ 0x264b1: "\x01\x02\x01\x03\x01\x02", // 𦒱
+ 0x264b2: "\x01\x02\x01\x03\x01\x05\x03\x05", // 𦒲
+ 0x264b3: "\x01\x02\x01\x03\x01\x02\x01", // 𦒳
+ 0x264b4: "\x01\x02\x01\x03\x03\x05\x02\x05\x02", // 𦒴
+ 0x264b5: "\x01\x02\x01\x03\x03\x05\x02\x05\x01", // 𦒵
+ 0x264b6: "\x01\x02\x01\x03\x03\x05\x03\x03", // 𦒶
+ 0x264b7: "\x01\x02\x01\x03\x03\x01\x01\x05", // 𦒷
+ 0x264b8: "\x01\x02\x01\x03\x01\x05\x03\x05\x03\x03", // 𦒸
+ 0x264b9: "\x01\x02\x01\x03\x03\x05\x04\x01\x03\x04", // 𦒹
+ 0x264ba: "\x01\x02\x01\x03\x01\x05\x02\x05\x01\x05\x04", // 𦒺
+ 0x264bb: "\x01\x02\x01\x03\x02\x01\x02\x05\x01", // 𦒻
+ 0x264bc: "\x01\x02\x01\x03\x01\x05\x04\x01\x01\x02\x01", // 𦒼
+ 0x264bd: "\x01\x02\x01\x03\x01\x05\x05\x01\x02\x05\x01", // 𦒽
+ 0x264be: "\x01\x02\x01\x03\x01\x05\x02\x01\x02\x05\x01", // 𦒾
+ 0x264bf: "\x01\x02\x01\x03\x03\x05\x02\x05\x01\x01\x01", // 𦒿
+ 0x264c0: "\x01\x02\x01\x03\x01\x05\x01\x05\x02\x05\x01\x01", // 𦓀
+ 0x264c1: "\x01\x02\x01\x03\x01\x05\x05\x01\x03\x05\x01\x02\x05\x01", // 𦓁
+ 0x264c2: "\x01\x02\x01\x03\x03\x05\x02\x05\x01\x01\x03\x05\x02\x05\x01", // 𦓂
+ 0x264c3: "\x01\x02\x01\x03\x05\x01\x05\x01\x02\x01\x01\x02\x01\x02\x05\x01", // 𦓃
+ 0x264c4: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x01\x02\x01\x03\x01\x05", // 𦓄
+ 0x264c5: "\x01\x02\x01\x03\x03\x05\x01\x02\x02\x03\x04\x01\x02\x03\x04", // 𦓅
+ 0x264c6: "\x01\x02\x01\x03\x05\x01\x02\x01\x01\x01\x05\x05\x02\x05\x01", // 𦓆
+ 0x264c7: "\x01\x02\x01\x03\x03\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 𦓇
+ 0x264c8: "\x01\x02\x01\x03\x03\x05\x01\x02\x01\x03\x01\x05\x01\x02\x01\x03\x03\x05", // 𦓈
+ 0x264c9: "\x01\x02\x01\x03\x03\x05\x02\x05\x01\x02\x01\x02\x01\x03\x05\x04\x02\x05\x01", // 𦓉
+ 0x264ca: "\x01\x02\x01\x03\x03\x05\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𦓊
+ 0x264cb: "\x01\x02\x01\x03\x01\x05\x01\x02\x01\x03\x03\x05\x01\x02\x01\x03\x01\x05\x01\x02\x01\x03\x03\x05", // 𦓋
+ 0x264cc: "\x03\x01\x02\x03\x04\x05\x03\x01\x03\x02\x05\x01\x01\x03\x05\x05\x04\x01\x02\x01\x03\x01\x05", // 𦓌
+ 0x264cd: "\x01\x02\x01\x03\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x03\x02\x01\x01", // 𦓍
+ 0x264ce: "\x01\x03\x02\x05\x02\x02\x02\x02", // 𦓎
+ 0x264cf: "\x03\x05\x01\x03\x02\x05\x02\x02", // 𦓏
+ 0x264d0: "\x03\x02\x05\x02\x02", // 𦓐
+ 0x264d1: "\x01\x03\x02\x05\x02\x02\x03\x05", // 𦓑
+ 0x264d2: "\x04\x03\x03\x04\x01\x03\x02\x05\x02\x02", // 𦓒
+ 0x264d3: "\x01\x05\x05\x04\x01\x03\x02\x05\x02\x02", // 𦓓
+ 0x264d4: "\x01\x03\x02\x05\x02\x02\x01\x03\x02\x05\x02\x02", // 𦓔
+ 0x264d5: "\x01\x03\x02\x05\x02\x02\x02\x05\x01\x01\x05\x03", // 𦓕
+ 0x264d6: "\x01\x03\x02\x05\x02\x02\x05\x03\x04\x04\x05\x04\x04", // 𦓖
+ 0x264d7: "\x02\x05\x02\x01\x03\x02\x05\x02\x02\x01\x03\x03\x04\x04", // 𦓗
+ 0x264d8: "\x01\x03\x02\x05\x02\x02\x01\x03\x02\x05\x02\x02\x03\x03\x03", // 𦓘
+ 0x264d9: "\x03\x03\x05\x02\x01\x05\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 𦓙
+ 0x264da: "\x03\x03\x01\x05\x05\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 𦓚
+ 0x264db: "\x03\x05\x01\x03\x05\x05\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 𦓛
+ 0x264dc: "\x01\x02\x01\x03\x03\x05\x01\x03\x02\x05\x02\x02\x01\x03\x04", // 𦓜
+ 0x264dd: "\x03\x03\x01\x05\x02\x01\x05\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 𦓝
+ 0x264de: "\x02\x05\x02\x01\x03\x02\x05\x02\x02\x01\x02\x05\x01\x01\x02\x04", // 𦓞
+ 0x264df: "\x03\x05\x04\x04\x04\x03\x03\x04\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 𦓟
+ 0x264e0: "\x01\x02\x05\x01\x02\x05\x03\x04\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 𦓠
+ 0x264e1: "\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x01\x03\x02\x05\x02\x02", // 𦓡
+ 0x264e2: "\x01\x03\x02\x05\x02\x02\x01\x03\x02\x05\x02\x02\x01\x03\x02\x05\x02\x02\x01\x03\x04\x04", // 𦓢
+ 0x264e3: "\x02\x05\x02\x01\x03\x02\x05\x02\x02\x04\x01\x03\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 𦓣
+ 0x264e4: "\x03\x01\x01\x02\x03\x04", // 𦓤
+ 0x264e5: "\x03\x01\x01\x02\x03\x04\x05\x02", // 𦓥
+ 0x264e6: "\x03\x01\x01\x02\x03\x04\x02\x04", // 𦓦
+ 0x264e7: "\x01\x01\x01\x02\x03\x04\x03\x04", // 𦓧
+ 0x264e8: "\x03\x01\x01\x02\x03\x04\x05\x01\x05", // 𦓨
+ 0x264e9: "\x01\x05\x04\x03\x01\x01\x02\x03\x04", // 𦓩
+ 0x264ea: "\x03\x01\x01\x02\x03\x04\x02\x01\x05", // 𦓪
+ 0x264eb: "\x03\x01\x03\x04\x01\x01\x01\x02\x03\x04", // 𦓫
+ 0x264ec: "\x03\x01\x01\x02\x03\x04\x01\x04\x03\x01\x02", // 𦓬
+ 0x264ed: "\x03\x01\x01\x02\x03\x04\x03\x05\x03\x03\x04", // 𦓭
+ 0x264ee: "\x03\x01\x01\x02\x03\x04\x01\x01\x03\x02\x04", // 𦓮
+ 0x264ef: "\x03\x01\x01\x02\x03\x04\x01\x02\x01\x01\x02\x01", // 𦓯
+ 0x264f0: "\x03\x01\x01\x02\x03\x04\x03\x04\x01\x01\x02\x01", // 𦓰
+ 0x264f1: "\x03\x01\x01\x02\x03\x04\x03\x05\x04\x02\x05\x01", // 𦓱
+ 0x264f2: "\x01\x01\x01\x02\x03\x04\x05\x03\x01\x02\x05\x01", // 𦓲
+ 0x264f3: "\x01\x01\x01\x02\x03\x04\x01\x02\x02\x01\x03\x04", // 𦓳
+ 0x264f4: "\x03\x01\x01\x02\x03\x04\x02\x04\x03\x03\x05\x04\x01", // 𦓴
+ 0x264f5: "\x03\x01\x01\x02\x03\x04\x02\x05\x01\x01\x02\x01\x01", // 𦓵
+ 0x264f6: "\x01\x01\x01\x02\x03\x04\x01\x03\x01\x01\x05\x03\x04", // 𦓶
+ 0x264f7: "\x03\x01\x01\x02\x03\x04\x01\x02\x01\x02\x01\x01\x05\x04", // 𦓷
+ 0x264f8: "\x03\x01\x01\x02\x03\x04\x03\x02\x05\x01\x01\x03\x01\x02", // 𦓸
+ 0x264f9: "\x03\x01\x01\x02\x03\x04\x01\x03\x04\x03\x04\x02\x03\x04", // 𦓹
+ 0x264fa: "\x03\x01\x01\x02\x03\x04\x03\x04\x04\x03\x05\x01\x01\x02", // 𦓺
+ 0x264fb: "\x03\x01\x01\x02\x03\x04\x02\x05\x01\x01\x03\x05\x03\x03", // 𦓻
+ 0x264fc: "\x03\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01\x05\x01\x05", // 𦓼
+ 0x264fd: "\x03\x01\x01\x02\x03\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 𦓽
+ 0x264fe: "\x03\x01\x01\x02\x03\x04\x02\x05\x03\x01\x02\x03\x04\x01", // 𦓾
+ 0x264ff: "\x01\x01\x01\x02\x03\x04\x01\x02\x02\x01\x01\x01\x03\x04", // 𦓿
+ 0x26500: "\x03\x01\x01\x02\x03\x04\x05\x01\x01\x05\x04\x05\x04", // 𦔀
+ 0x26501: "\x03\x01\x01\x02\x03\x04\x03\x05\x01\x03\x03\x05\x05\x04", // 𦔁
+ 0x26502: "\x03\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 𦔂
+ 0x26503: "\x03\x01\x01\x02\x03\x04\x01\x02\x01\x02\x02\x05\x01\x03\x04", // 𦔃
+ 0x26504: "\x03\x01\x01\x02\x03\x04\x02\x03\x04\x03\x02\x05\x01\x01\x01", // 𦔄
+ 0x26505: "\x03\x01\x01\x02\x03\x04\x04\x04\x05\x03\x05\x01\x03\x04\x04", // 𦔅
+ 0x26506: "\x03\x01\x01\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 𦔆
+ 0x26507: "\x01\x01\x01\x02\x03\x04\x05\x04\x05\x02\x03\x01\x02\x03\x04", // 𦔇
+ 0x26508: "\x01\x01\x01\x02\x03\x04\x02\x05\x01\x01\x03\x01\x01\x03\x04", // 𦔈
+ 0x26509: "\x03\x01\x01\x02\x03\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𦔉
+ 0x2650a: "\x03\x01\x01\x02\x03\x04\x03\x02\x05\x01\x02\x05\x02\x01\x04", // 𦔊
+ 0x2650b: "\x03\x01\x01\x02\x03\x04\x01\x02\x01\x02\x01\x02\x02\x01\x01\x01", // 𦔋
+ 0x2650c: "\x03\x01\x01\x02\x03\x04\x01\x02\x01\x01\x05\x02\x05\x01\x01", // 𦔌
+ 0x2650d: "\x03\x01\x01\x02\x03\x04\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 𦔍
+ 0x2650e: "\x03\x01\x01\x02\x03\x04\x02\x05\x01\x02\x01\x03\x05\x03\x05\x04", // 𦔎
+ 0x2650f: "\x03\x01\x01\x02\x03\x04\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 𦔏
+ 0x26510: "\x03\x01\x01\x02\x03\x04\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𦔐
+ 0x26511: "\x03\x01\x01\x02\x03\x04\x04\x01\x05\x04\x03\x02\x05\x02\x05\x01", // 𦔑
+ 0x26512: "\x03\x01\x01\x02\x03\x04\x04\x03\x01\x05\x05\x04\x05\x05\x04", // 𦔒
+ 0x26513: "\x03\x01\x01\x02\x03\x04\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 𦔓
+ 0x26514: "\x03\x01\x01\x02\x03\x04\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 𦔔
+ 0x26515: "\x03\x01\x01\x02\x03\x04\x03\x02\x05\x03\x04\x01\x03\x05\x03\x05\x04", // 𦔕
+ 0x26516: "\x01\x01\x01\x02\x03\x04\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 𦔖
+ 0x26517: "\x03\x01\x01\x02\x03\x04\x04\x01\x03\x05\x02\x02\x01\x05\x04\x05\x04", // 𦔗
+ 0x26518: "\x03\x01\x01\x02\x03\x04\x05\x01\x01\x01\x02\x01\x03\x05\x01\x02\x04", // 𦔘
+ 0x26519: "\x01\x01\x01\x02\x03\x04\x05\x01\x01\x05\x04\x01\x05\x03\x05", // 𦔙
+ 0x2651a: "\x03\x01\x01\x02\x03\x04\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04", // 𦔚
+ 0x2651b: "\x03\x01\x01\x02\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𦔛
+ 0x2651c: "\x03\x01\x01\x02\x03\x04\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 𦔜
+ 0x2651d: "\x03\x01\x01\x02\x03\x04\x04\x01\x04\x03\x04\x05\x02\x05\x02\x02\x05\x01", // 𦔝
+ 0x2651e: "\x03\x01\x01\x02\x03\x04\x04\x01\x05\x04\x03\x05\x04\x01\x03\x05\x04", // 𦔞
+ 0x2651f: "\x03\x01\x01\x02\x03\x04\x03\x04\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 𦔟
+ 0x26520: "\x03\x01\x01\x02\x03\x04\x01\x02\x01\x02\x03\x02\x05\x01\x01\x03\x01\x02", // 𦔠
+ 0x26521: "\x03\x01\x01\x02\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x02\x05\x01\x01", // 𦔡
+ 0x26522: "\x03\x01\x01\x02\x03\x04\x05\x04\x05\x04\x05\x04\x05\x04\x02\x05\x01\x01", // 𦔢
+ 0x26523: "\x03\x01\x01\x02\x03\x04\x01\x03\x05\x05\x03\x04\x05\x05\x04\x01\x04", // 𦔣
+ 0x26524: "\x03\x01\x01\x02\x03\x04\x01\x03\x05\x05\x03\x04\x02\x05\x02\x02\x01", // 𦔤
+ 0x26525: "\x03\x01\x01\x02\x03\x04\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 𦔥
+ 0x26526: "\x03\x01\x01\x02\x03\x04\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𦔦
+ 0x26527: "\x01\x01\x01\x02\x03\x04\x02\x05\x01\x01\x02\x05\x02\x01\x04\x04\x05\x04\x04", // 𦔧
+ 0x26528: "\x03\x01\x01\x02\x03\x04\x02\x05\x01\x01\x02\x05\x02\x02\x01\x04\x01\x05\x03", // 𦔨
+ 0x26529: "\x03\x01\x01\x02\x03\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x04\x04\x04\x04", // 𦔩
+ 0x2652a: "\x03\x01\x01\x02\x03\x04\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 𦔪
+ 0x2652b: "\x03\x01\x01\x02\x03\x04\x05\x04\x01\x05\x04\x01\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 𦔫
+ 0x2652c: "\x03\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𦔬
+ 0x2652d: "\x03\x01\x01\x02\x03\x04\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x03\x01\x01\x01\x02\x01\x01\x01", // 𦔭
+ 0x2652e: "\x01\x02\x02\x01\x01\x01\x05", // 𦔮
+ 0x2652f: "\x03\x05\x01\x02\x02\x01\x01\x01", // 𦔯
+ 0x26530: "\x03\x05\x01\x02\x02\x01\x01\x01", // 𦔰
+ 0x26531: "\x03\x05\x01\x02\x02\x01\x01\x01", // 𦔱
+ 0x26532: "\x01\x02\x02\x01\x01\x01\x01\x05", // 𦔲
+ 0x26533: "\x01\x02\x02\x01\x01\x01\x05\x03", // 𦔳
+ 0x26534: "\x03\x04\x01\x02\x02\x01\x01\x01", // 𦔴
+ 0x26535: "\x03\x04\x01\x02\x02\x01\x01\x01", // 𦔵
+ 0x26536: "\x01\x02\x02\x01\x01\x01\x05\x05", // 𦔶
+ 0x26537: "\x01\x02\x02\x01\x01\x01\x05\x05\x04", // 𦔷
+ 0x26538: "\x01\x02\x02\x01\x01\x01\x01\x02\x01", // 𦔸
+ 0x26539: "\x01\x02\x02\x01\x01\x01\x05\x04\x04", // 𦔹
+ 0x2653a: "\x01\x02\x02\x01\x01\x01\x02\x05\x02", // 𦔺
+ 0x2653b: "\x01\x02\x02\x01\x01\x01\x02\x05\x01", // 𦔻
+ 0x2653c: "\x01\x02\x02\x01\x01\x01\x02\x01\x05\x04", // 𦔼
+ 0x2653d: "\x01\x02\x02\x01\x01\x01\x03\x01\x02\x01", // 𦔽
+ 0x2653e: "\x01\x02\x02\x01\x01\x01\x01\x01\x03\x04", // 𦔾
+ 0x2653f: "\x01\x02\x02\x01\x01\x01\x01\x01\x03\x04", // 𦔿
+ 0x26540: "\x01\x02\x02\x01\x01\x01\x01\x05\x05\x03", // 𦕀
+ 0x26541: "\x05\x01\x01\x05\x01\x02\x02\x01\x01\x01", // 𦕁
+ 0x26542: "\x01\x02\x03\x04\x01\x02\x02\x01\x01\x01", // 𦕂
+ 0x26543: "\x01\x02\x02\x01\x01\x01\x03\x05\x04\x01", // 𦕃
+ 0x26544: "\x01\x02\x02\x01\x01\x01\x03\x03\x01\x02", // 𦕄
+ 0x26545: "\x01\x02\x02\x01\x01\x01\x03\x05\x05\x02", // 𦕅
+ 0x26546: "\x01\x02\x02\x01\x01\x01\x01\x05\x02\x03", // 𦕆
+ 0x26547: "\x01\x02\x02\x01\x01\x01\x01\x05\x05\x04", // 𦕇
+ 0x26548: "\x01\x02\x02\x01\x01\x01\x02\x03\x04\x03", // 𦕈
+ 0x26549: "\x02\x03\x04\x03\x01\x02\x02\x01\x01\x01", // 𦕉
+ 0x2654a: "\x01\x02\x02\x01\x01\x01\x02\x05\x01\x05", // 𦕊
+ 0x2654b: "\x01\x02\x02\x01\x01\x01\x02\x05\x05\x04", // 𦕋
+ 0x2654c: "\x03\x05\x01\x05\x01\x02\x02\x01\x01\x01", // 𦕌
+ 0x2654d: "\x01\x02\x02\x01\x01\x01\x04\x05\x03\x05", // 𦕍
+ 0x2654e: "\x01\x02\x02\x01\x01\x01\x03\x05\x01\x05", // 𦕎
+ 0x2654f: "\x01\x02\x02\x01\x01\x01\x02\x05\x01\x02", // 𦕏
+ 0x26550: "\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01", // 𦕐
+ 0x26551: "\x01\x02\x02\x01\x01\x01\x03\x05\x01\x05\x01", // 𦕑
+ 0x26552: "\x01\x02\x02\x01\x01\x01\x02\x01\x02\x05\x01", // 𦕒
+ 0x26553: "\x01\x02\x01\x03\x05\x01\x02\x02\x01\x01\x01", // 𦕓
+ 0x26554: "\x01\x02\x02\x01\x01\x01\x03\x05\x05\x01\x03", // 𦕔
+ 0x26555: "\x03\x05\x04\x05\x05\x01\x02\x02\x01\x01\x01", // 𦕕
+ 0x26556: "\x01\x02\x02\x01\x01\x01\x03\x02\x01\x02\x01", // 𦕖
+ 0x26557: "\x01\x02\x02\x01\x01\x01\x03\x01\x02\x03\x04", // 𦕗
+ 0x26558: "\x01\x02\x02\x01\x01\x01\x03\x05\x01\x01\x02", // 𦕘
+ 0x26559: "\x01\x02\x02\x01\x01\x01\x03\x05\x02\x05\x01", // 𦕙
+ 0x2655a: "\x01\x02\x02\x01\x01\x01\x05\x01\x05\x03\x02", // 𦕚
+ 0x2655b: "\x01\x02\x02\x01\x01\x01\x05\x01\x05\x01\x05", // 𦕛
+ 0x2655c: "\x01\x02\x02\x01\x01\x01\x01\x01\x02\x03\x04", // 𦕜
+ 0x2655d: "\x01\x02\x02\x01\x01\x01\x01\x01\x02\x03\x04", // 𦕝
+ 0x2655e: "\x01\x02\x02\x01\x01\x01\x03\x04\x01\x01\x05", // 𦕞
+ 0x2655f: "\x01\x02\x02\x01\x01\x01\x04\x05\x05\x03\x04", // 𦕟
+ 0x26560: "\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x03\x04", // 𦕠
+ 0x26561: "\x02\x01\x01\x02\x02\x01\x01\x01\x01\x01\x03\x02", // 𦕡
+ 0x26562: "\x02\x01\x01\x02\x02\x01\x01\x01\x03\x01\x02\x01", // 𦕢
+ 0x26563: "\x01\x02\x02\x01\x01\x01\x03\x02\x01\x05\x05\x04", // 𦕣
+ 0x26564: "\x01\x02\x02\x01\x01\x01\x02\x04\x03\x01\x03\x05", // 𦕤
+ 0x26565: "\x01\x01\x02\x01\x05\x03\x01\x02\x02\x01\x01\x01", // 𦕥
+ 0x26566: "\x01\x02\x02\x01\x01\x01\x03\x04\x03\x04\x03\x04", // 𦕦
+ 0x26567: "\x01\x02\x02\x01\x01\x01\x01\x01\x03\x05\x03\x04", // 𦕧
+ 0x26568: "\x01\x02\x02\x01\x01\x01\x05\x01\x01\x05\x03\x04", // 𦕨
+ 0x26569: "\x01\x02\x02\x01\x01\x01\x01\x02\x05\x03\x05\x01", // 𦕩
+ 0x2656a: "\x01\x03\x02\x04\x01\x02\x02\x01\x01\x01\x05\x04", // 𦕪
+ 0x2656b: "\x01\x02\x02\x01\x01\x01\x03\x04\x02\x01\x02\x01", // 𦕫
+ 0x2656c: "\x01\x02\x02\x01\x01\x01\x03\x05\x04\x05\x02", // 𦕬
+ 0x2656d: "\x01\x02\x02\x01\x01\x01\x05\x05\x05\x01\x02\x01", // 𦕭
+ 0x2656e: "\x01\x02\x02\x01\x01\x01\x03\x02\x05\x01\x01\x05", // 𦕮
+ 0x2656f: "\x01\x02\x02\x01\x01\x01\x05\x05\x05\x01\x03\x04", // 𦕯
+ 0x26570: "\x01\x02\x02\x01\x01\x01\x03\x05\x01\x02\x03\x04", // 𦕰
+ 0x26571: "\x01\x02\x02\x01\x01\x01\x05\x05\x04\x02\x03\x04", // 𦕱
+ 0x26572: "\x01\x02\x02\x01\x01\x01\x03\x04\x01\x02\x05\x01", // 𦕲
+ 0x26573: "\x01\x02\x02\x01\x01\x01\x01\x02\x01\x03\x03\x05", // 𦕳
+ 0x26574: "\x01\x01\x02\x01\x05\x03\x01\x02\x02\x01\x01\x01", // 𦕴
+ 0x26575: "\x01\x02\x02\x01\x01\x01\x04\x04\x05\x03\x01\x01\x02", // 𦕵
+ 0x26576: "\x01\x02\x02\x01\x01\x01\x01\x02\x01\x03\x03\x01\x02", // 𦕶
+ 0x26577: "\x01\x02\x02\x01\x01\x01\x01\x02\x01\x02\x05\x03\x04", // 𦕷
+ 0x26578: "\x01\x02\x02\x01\x01\x01\x02\x05\x01\x01\x02\x01\x01", // 𦕸
+ 0x26579: "\x01\x02\x02\x01\x01\x01\x04\x04\x05\x01\x03\x05\x04", // 𦕹
+ 0x2657a: "\x04\x01\x02\x05\x01\x04\x05\x01\x02\x02\x01\x01\x01", // 𦕺
+ 0x2657b: "\x01\x02\x02\x01\x01\x01\x03\x02\x05\x03\x03\x04\x01", // 𦕻
+ 0x2657c: "\x01\x02\x02\x01\x01\x01\x01\x03\x01\x05\x02\x05\x01", // 𦕼
+ 0x2657d: "\x01\x02\x02\x01\x01\x01\x03\x02\x02\x05\x01\x01\x02", // 𦕽
+ 0x2657e: "\x01\x02\x02\x01\x01\x01\x03\x05\x01\x05\x02\x05\x01", // 𦕾
+ 0x2657f: "\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01\x05", // 𦕿
+ 0x26580: "\x01\x02\x02\x01\x01\x01\x03\x04\x04\x03\x05\x02\x01", // 𦖀
+ 0x26581: "\x01\x02\x02\x01\x01\x01\x03\x04\x01\x03\x02\x05\x02", // 𦖁
+ 0x26582: "\x01\x02\x02\x01\x01\x01\x01\x02\x01\x05\x05\x01\x02", // 𦖂
+ 0x26583: "\x01\x02\x02\x01\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 𦖃
+ 0x26584: "\x01\x02\x02\x01\x01\x01\x03\x05\x02\x05\x02\x01\x05", // 𦖄
+ 0x26585: "\x01\x02\x02\x01\x01\x01\x05\x01\x02\x01\x01\x02\x01", // 𦖅
+ 0x26586: "\x01\x02\x02\x01\x01\x01\x05\x03\x04\x04\x05\x04\x04", // 𦖆
+ 0x26587: "\x01\x02\x02\x01\x01\x01\x02\x05\x01\x05\x03\x02\x02", // 𦖇
+ 0x26588: "\x01\x02\x02\x01\x01\x01\x01\x03\x04\x02\x05\x01\x01\x05", // 𦖈
+ 0x26589: "\x01\x02\x02\x01\x01\x01\x02\x05\x04\x03\x01\x04\x01\x05", // 𦖉
+ 0x2658a: "\x01\x02\x02\x01\x01\x01\x01\x03\x04\x01\x02\x05\x01\x02", // 𦖊
+ 0x2658b: "\x01\x02\x02\x01\x01\x01\x03\x01\x02\x01\x02\x01\x02\x01\x01", // 𦖋
+ 0x2658c: "\x01\x02\x02\x01\x01\x01\x02\x05\x01\x02\x02\x01\x03\x04", // 𦖌
+ 0x2658d: "\x01\x02\x02\x01\x01\x01\x02\x05\x01\x01\x01\x02\x03\x04", // 𦖍
+ 0x2658e: "\x01\x02\x02\x01\x01\x01\x01\x03\x04\x01\x05\x05\x03\x04", // 𦖎
+ 0x2658f: "\x01\x02\x02\x01\x01\x01\x03\x04\x03\x04\x03\x04\x03\x04", // 𦖏
+ 0x26590: "\x01\x02\x02\x01\x01\x01\x03\x01\x01\x02\x01\x02\x01\x05\x02", // 𦖐
+ 0x26591: "\x01\x02\x02\x01\x01\x01\x04\x04\x05\x02\x05\x01\x01\x01", // 𦖑
+ 0x26592: "\x01\x02\x02\x01\x01\x01\x04\x01\x03\x04\x03\x04\x01\x02", // 𦖒
+ 0x26593: "\x01\x02\x02\x01\x01\x01\x04\x04\x05\x03\x05\x01\x01\x05", // 𦖓
+ 0x26594: "\x01\x02\x02\x01\x01\x01\x01\x03\x04\x04\x03\x01\x01\x05", // 𦖔
+ 0x26595: "\x01\x02\x02\x01\x01\x01\x03\x01\x01\x01\x02\x01\x01\x01", // 𦖕
+ 0x26596: "\x01\x02\x02\x01\x01\x01\x02\x01\x05\x03\x01\x05\x03\x05", // 𦖖
+ 0x26597: "\x03\x04\x04\x03\x01\x02\x03\x04\x01\x02\x02\x01\x01\x01", // 𦖗
+ 0x26598: "\x01\x02\x02\x01\x01\x01\x03\x04\x01\x01\x02\x02\x05\x01", // 𦖘
+ 0x26599: "\x01\x02\x02\x01\x01\x01\x03\x02\x01\x05\x01\x01\x01\x05", // 𦖙
+ 0x2659a: "\x01\x02\x02\x01\x01\x01\x03\x02\x01\x05\x01\x01\x05\x04", // 𦖚
+ 0x2659b: "\x01\x02\x02\x01\x01\x01\x03\x02\x05\x01\x02\x01\x01\x05", // 𦖛
+ 0x2659c: "\x01\x02\x01\x05\x02\x01\x03\x04\x01\x02\x02\x01\x01\x01", // 𦖜
+ 0x2659d: "\x01\x02\x05\x02\x03\x04\x02\x02\x01\x02\x02\x01\x01\x01", // 𦖝
+ 0x2659e: "\x03\x05\x01\x05\x02\x05\x01\x01\x01\x02\x02\x01\x01\x01", // 𦖞
+ 0x2659f: "\x01\x02\x02\x01\x01\x01\x03\x05\x03\x03\x04\x05\x04\x04", // 𦖟
+ 0x265a0: "\x01\x02\x02\x01\x01\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 𦖠
+ 0x265a1: "\x01\x02\x02\x01\x01\x01\x03\x02\x05\x01\x01\x03\x05\x04", // 𦖡
+ 0x265a2: "\x01\x02\x02\x01\x01\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 𦖢
+ 0x265a3: "\x01\x02\x02\x01\x01\x01\x03\x05\x01\x02\x05\x03\x05\x01\x01", // 𦖣
+ 0x265a4: "\x01\x02\x02\x01\x01\x01\x02\x05\x01\x01\x03\x01\x01\x02\x01", // 𦖤
+ 0x265a5: "\x02\x01\x02\x05\x01\x02\x02\x05\x04\x01\x02\x02\x01\x01\x01", // 𦖥
+ 0x265a6: "\x01\x02\x02\x01\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𦖦
+ 0x265a7: "\x01\x02\x02\x01\x01\x01\x01\x02\x05\x01\x01\x05\x03\x01\x05", // 𦖧
+ 0x265a8: "\x01\x02\x05\x01\x02\x03\x04\x02\x02\x01\x02\x02\x01\x01\x01", // 𦖨
+ 0x265a9: "\x01\x03\x02\x05\x02\x02\x01\x03\x04\x01\x02\x02\x01\x01\x01", // 𦖩
+ 0x265aa: "\x01\x02\x02\x01\x01\x01\x04\x04\x05\x03\x04\x03\x04\x05\x04", // 𦖪
+ 0x265ab: "\x05\x01\x05\x01\x05\x02\x05\x01\x01\x01\x02\x02\x01\x01\x01", // 𦖫
+ 0x265ac: "\x01\x02\x02\x01\x01\x01\x03\x05\x01\x05\x02\x05\x02\x02\x01", // 𦖬
+ 0x265ad: "\x01\x02\x02\x01\x01\x01\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 𦖭
+ 0x265ae: "\x01\x02\x02\x01\x01\x01\x04\x01\x05\x03\x03\x01\x05\x02\x05", // 𦖮
+ 0x265af: "\x01\x02\x02\x01\x01\x01\x04\x03\x05\x05\x05\x04\x04\x04\x04", // 𦖯
+ 0x265b0: "\x01\x02\x02\x01\x01\x01\x05\x04\x01\x02\x05\x01\x02\x03\x04", // 𦖰
+ 0x265b1: "\x01\x02\x02\x01\x01\x01\x01\x02\x01\x02\x05\x01\x05\x03\x04", // 𦖱
+ 0x265b2: "\x01\x02\x02\x01\x01\x01\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 𦖲
+ 0x265b3: "\x01\x02\x02\x01\x01\x01\x03\x02\x01\x05\x01\x01\x02\x01\x05", // 𦖳
+ 0x265b4: "\x03\x03\x02\x03\x04\x03\x04\x03\x04\x01\x02\x02\x01\x01\x01", // 𦖴
+ 0x265b5: "\x01\x02\x02\x01\x01\x01\x03\x04\x04\x03\x01\x01\x03\x05\x04", // 𦖵
+ 0x265b6: "\x01\x02\x02\x01\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04", // 𦖶
+ 0x265b7: "\x02\x05\x01\x02\x01\x04\x05\x04\x04\x01\x02\x02\x01\x01\x01", // 𦖷
+ 0x265b8: "\x01\x02\x02\x01\x01\x01\x03\x04\x05\x02\x03\x04\x03\x05\x04", // 𦖸
+ 0x265b9: "\x01\x02\x02\x01\x01\x01\x03\x05\x04\x05\x05\x04\x04\x04\x04", // 𦖹
+ 0x265ba: "\x01\x02\x02\x01\x01\x01\x04\x03\x01\x05\x05\x04\x05\x05\x04", // 𦖺
+ 0x265bb: "\x01\x02\x02\x01\x01\x01\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 𦖻
+ 0x265bc: "\x01\x02\x02\x01\x01\x01\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01", // 𦖼
+ 0x265bd: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x01\x02\x02\x01\x01\x01", // 𦖽
+ 0x265be: "\x01\x02\x02\x01\x01\x01\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 𦖾
+ 0x265bf: "\x01\x02\x02\x01\x01\x01\x01\x02\x01\x02\x03\x04\x01\x02\x05\x01", // 𦖿
+ 0x265c0: "\x01\x02\x02\x01\x01\x01\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 𦗀
+ 0x265c1: "\x01\x05\x02\x05\x01\x01\x01\x05\x03\x04\x01\x02\x02\x01\x01\x01", // 𦗁
+ 0x265c2: "\x01\x02\x02\x01\x01\x01\x01\x03\x02\x05\x02\x02\x04\x05\x04\x04", // 𦗂
+ 0x265c3: "\x01\x02\x02\x01\x01\x01\x04\x05\x04\x03\x04\x02\x05\x02\x02\x01", // 𦗃
+ 0x265c4: "\x01\x02\x02\x01\x01\x01\x04\x03\x01\x05\x02\x03\x04\x05\x04", // 𦗄
+ 0x265c5: "\x01\x02\x02\x01\x01\x01\x04\x03\x01\x01\x02\x01\x03\x05\x05\x04", // 𦗅
+ 0x265c6: "\x01\x02\x02\x01\x01\x01\x01\x03\x04\x04\x03\x02\x05\x01\x01\x05", // 𦗆
+ 0x265c7: "\x01\x02\x02\x01\x01\x01\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 𦗇
+ 0x265c8: "\x01\x02\x02\x01\x01\x01\x02\x05\x02\x01\x03\x05\x03\x01\x03\x04", // 𦗈
+ 0x265c9: "\x01\x02\x02\x01\x01\x01\x01\x02\x01\x02\x01\x02\x02\x01\x01\x02", // 𦗉
+ 0x265ca: "\x03\x01\x01\x03\x04\x04\x01\x01\x02\x01\x01\x02\x02\x01\x01\x01", // 𦗊
+ 0x265cb: "\x01\x02\x02\x01\x01\x01\x04\x04\x05\x03\x04\x03\x04\x02\x05\x01", // 𦗋
+ 0x265cc: "\x01\x02\x02\x01\x01\x01\x03\x03\x04\x04\x03\x02\x01\x05\x01\x01", // 𦗌
+ 0x265cd: "\x01\x02\x02\x01\x01\x01\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03", // 𦗍
+ 0x265ce: "\x01\x02\x02\x01\x01\x01\x03\x05\x04\x05\x05\x02\x05\x01\x02\x01", // 𦗎
+ 0x265cf: "\x01\x02\x02\x01\x01\x01\x04\x05\x01\x01\x05\x04\x05\x02", // 𦗏
+ 0x265d0: "\x01\x02\x02\x01\x01\x01\x04\x01\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 𦗐
+ 0x265d1: "\x01\x02\x02\x01\x01\x01\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01", // 𦗑
+ 0x265d2: "\x01\x02\x02\x01\x01\x01\x04\x01\x02\x05\x01\x05\x02\x01\x05\x02", // 𦗒
+ 0x265d3: "\x01\x02\x02\x01\x01\x01\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 𦗓
+ 0x265d4: "\x01\x02\x02\x01\x01\x01\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 𦗔
+ 0x265d5: "\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x01\x02\x02\x01\x01\x01", // 𦗕
+ 0x265d6: "\x01\x02\x02\x01\x01\x01\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 𦗖
+ 0x265d7: "\x01\x02\x02\x01\x01\x01\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01", // 𦗗
+ 0x265d8: "\x01\x02\x02\x01\x01\x01\x05\x04\x01\x02\x01\x02\x02\x05\x01\x03\x04", // 𦗘
+ 0x265d9: "\x01\x02\x01\x03\x05\x01\x02\x01\x03\x05\x04\x01\x02\x02\x01\x01\x01", // 𦗙
+ 0x265da: "\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02\x01\x02\x02\x01\x01\x01", // 𦗚
+ 0x265db: "\x01\x02\x02\x01\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 𦗛
+ 0x265dc: "\x01\x02\x02\x01\x01\x01\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04", // 𦗜
+ 0x265dd: "\x01\x02\x02\x01\x01\x01\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02", // 𦗝
+ 0x265de: "\x01\x02\x02\x01\x01\x01\x04\x04\x05\x01\x03\x04\x01\x02\x05\x01\x02", // 𦗞
+ 0x265df: "\x01\x02\x02\x01\x01\x01\x01\x03\x02\x05\x02\x02\x01\x01\x04\x05\x04\x04", // 𦗟
+ 0x265e0: "\x01\x02\x02\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 𦗠
+ 0x265e1: "\x01\x02\x02\x01\x01\x01\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 𦗡
+ 0x265e2: "\x01\x02\x02\x01\x01\x01\x04\x03\x01\x01\x02\x01\x04\x03\x01\x02\x05\x01", // 𦗢
+ 0x265e3: "\x01\x02\x02\x01\x01\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𦗣
+ 0x265e4: "\x04\x01\x04\x03\x01\x03\x05\x04\x01\x05\x01\x05\x01\x02\x02\x01\x01\x01", // 𦗤
+ 0x265e5: "\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04\x01\x02\x02\x01\x01\x01", // 𦗥
+ 0x265e6: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x01\x05\x01\x02\x02\x01\x01\x01", // 𦗦
+ 0x265e7: "\x01\x02\x02\x01\x01\x01\x03\x01\x04\x03\x01\x04\x03\x04\x01\x02\x05\x01", // 𦗧
+ 0x265e8: "\x01\x02\x02\x01\x01\x01\x03\x01\x01\x05\x03\x01\x01\x05\x03\x01\x01\x05", // 𦗨
+ 0x265e9: "\x01\x02\x02\x01\x01\x01\x01\x02\x05\x02\x02\x01\x01\x01\x04\x03\x03\x04", // 𦗩
+ 0x265ea: "\x01\x02\x02\x01\x01\x01\x01\x02\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 𦗪
+ 0x265eb: "\x01\x02\x02\x01\x01\x01\x01\x02\x01\x02\x01\x02\x05\x02\x04\x01\x03\x04", // 𦗫
+ 0x265ec: "\x01\x02\x02\x01\x01\x01\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01", // 𦗬
+ 0x265ed: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x03\x03\x03\x01\x02\x02\x01\x01\x01", // 𦗭
+ 0x265ee: "\x01\x02\x02\x01\x01\x01\x02\x01\x02\x01\x02\x01\x02\x01\x02\x01\x02\x01", // 𦗮
+ 0x265ef: "\x01\x02\x02\x01\x01\x01\x03\x05\x01\x03\x03\x05\x01\x02\x01\x02\x05\x01", // 𦗯
+ 0x265f0: "\x01\x02\x02\x01\x01\x01\x04\x04\x05\x01\x03\x02\x05\x02\x02\x01\x01\x02", // 𦗰
+ 0x265f1: "\x01\x01\x02\x03\x04\x01\x03\x05\x05\x03\x04\x01\x02\x02\x01\x01\x01", // 𦗱
+ 0x265f2: "\x01\x02\x02\x01\x01\x01\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 𦗲
+ 0x265f3: "\x01\x02\x02\x01\x01\x01\x02\x05\x01\x02\x02\x01\x01\x03\x01\x01\x05\x03\x04", // 𦗳
+ 0x265f4: "\x01\x02\x02\x01\x01\x01\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x01\x02\x01", // 𦗴
+ 0x265f5: "\x01\x02\x02\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 𦗵
+ 0x265f6: "\x03\x02\x01\x01\x05\x01\x01\x02\x04\x05\x02\x05\x01\x01\x02\x02\x01\x01\x01", // 𦗶
+ 0x265f7: "\x05\x02\x02\x05\x02\x04\x01\x05\x03\x03\x01\x03\x04\x01\x02\x02\x01\x01\x01", // 𦗷
+ 0x265f8: "\x01\x02\x02\x01\x01\x01\x03\x03\x02\x02\x05\x02\x01\x03\x05\x03\x01\x03\x04", // 𦗸
+ 0x265f9: "\x01\x02\x02\x01\x01\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 𦗹
+ 0x265fa: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x01\x02\x02\x01\x01\x01", // 𦗺
+ 0x265fb: "\x01\x02\x02\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x04\x05\x04", // 𦗻
+ 0x265fc: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x01\x02\x02\x01\x01\x01", // 𦗼
+ 0x265fd: "\x01\x02\x02\x01\x01\x01\x04\x01\x03\x04\x01\x03\x02\x05\x01\x01\x03\x05\x04", // 𦗽
+ 0x265fe: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x02\x02\x05\x01\x01\x02\x02\x01\x01\x01", // 𦗾
+ 0x265ff: "\x01\x02\x02\x03\x05\x01\x01\x03\x05\x01\x01\x02\x02\x01\x02\x02\x01\x01\x01", // 𦗿
+ 0x26600: "\x01\x02\x02\x01\x01\x01\x01\x05\x03\x01\x01\x03\x04\x05\x04\x05\x02\x01\x03\x04", // 𦘀
+ 0x26601: "\x01\x02\x02\x01\x01\x01\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x02\x01\x01\x01", // 𦘁
+ 0x26602: "\x01\x02\x02\x01\x01\x01\x05\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x02\x05\x02", // 𦘂
+ 0x26603: "\x01\x02\x01\x02\x03\x05\x01\x01\x03\x05\x01\x01\x05\x04\x01\x02\x02\x01\x01\x01", // 𦘃
+ 0x26604: "\x01\x02\x02\x01\x01\x01\x04\x01\x04\x03\x01\x01\x02\x01\x03\x05\x03\x03\x03\x04", // 𦘄
+ 0x26605: "\x01\x02\x02\x01\x01\x01\x04\x01\x03\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04", // 𦘅
+ 0x26606: "\x01\x02\x02\x01\x01\x01\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𦘆
+ 0x26607: "\x01\x02\x02\x01\x01\x01\x03\x03\x02\x02\x05\x02\x01\x01\x01\x02\x01\x03\x01\x03\x04", // 𦘇
+ 0x26608: "\x01\x02\x02\x01\x01\x01\x03\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x03\x04", // 𦘈
+ 0x26609: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x01\x05\x02\x05\x01\x01\x02\x02\x01\x01\x01", // 𦘉
+ 0x2660a: "\x01\x02\x02\x01\x01\x01\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 𦘊
+ 0x2660b: "\x01\x02\x02\x01\x01\x01\x03\x02\x01\x01\x05\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𦘋
+ 0x2660c: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x01\x05\x02\x05\x01\x01\x01\x02\x02\x01\x01\x01", // 𦘌
+ 0x2660d: "\x01\x02\x02\x01\x01\x01\x05\x01\x01\x02\x02\x05\x01\x01\x05\x04\x03\x03\x04\x01\x01\x03\x04", // 𦘍
+ 0x2660e: "\x01\x02\x02\x01\x01\x01\x01\x03\x04\x03\x04\x01\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𦘎
+ 0x2660f: "\x01\x02\x01\x02\x02\x01\x01\x01\x01\x01\x02\x01\x01\x03\x02\x05\x02\x02\x01\x01\x04\x05\x04\x04", // 𦘏
+ 0x26610: "\x01\x02\x02\x01\x01\x01\x01\x02\x05\x04\x01\x02\x05\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 𦘐
+ 0x26611: "\x01\x02\x02\x01\x01\x01\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 𦘑
+ 0x26612: "\x05\x01\x01\x01\x02", // 𦘒
+ 0x26613: "\x05\x01\x01\x01\x01\x02\x05\x03", // 𦘓
+ 0x26614: "\x05\x01\x01\x01\x02\x03\x03\x03", // 𦘔
+ 0x26615: "\x05\x01\x01\x01\x02\x01\x02\x05\x03\x04\x01", // 𦘕
+ 0x26616: "\x02\x01\x03\x05\x04\x05\x01\x01\x01\x01\x02", // 𦘖
+ 0x26617: "\x03\x01\x01\x03\x04\x05\x01\x01\x01\x01\x02", // 𦘗
+ 0x26618: "\x05\x01\x01\x01\x02\x01\x02\x05\x02\x05\x01\x01", // 𦘘
+ 0x26619: "\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x05\x02", // 𦘙
+ 0x2661a: "\x05\x01\x01\x01\x02\x01\x02\x05\x03\x04\x05\x02", // 𦘚
+ 0x2661b: "\x05\x01\x01\x01\x02\x04\x05\x04\x04\x05\x02\x04", // 𦘛
+ 0x2661c: "\x05\x01\x01\x01\x02\x01\x04\x05\x04\x04\x05\x02\x04", // 𦘜
+ 0x2661d: "\x05\x01\x01\x01\x02\x02\x05\x04\x05\x04\x04\x05\x02", // 𦘝
+ 0x2661e: "\x05\x01\x01\x02\x04\x01\x03\x04\x05\x01\x01\x01\x01\x02", // 𦘞
+ 0x2661f: "\x03\x05\x01\x03\x02\x01\x05\x04\x05\x01\x01\x01\x01\x02", // 𦘟
+ 0x26620: "\x05\x01\x01\x01\x01\x02\x01\x02\x01\x03\x02\x05\x01\x01\x04", // 𦘠
+ 0x26621: "\x05\x01\x01\x02\x02\x05\x04\x05\x04\x04\x05\x02\x04", // 𦘡
+ 0x26622: "\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x04\x05\x05\x03\x04", // 𦘢
+ 0x26623: "\x05\x01\x01\x01\x02\x01\x02\x05\x01\x02\x01\x01\x05\x03\x01\x01", // 𦘣
+ 0x26624: "\x05\x01\x01\x02\x03\x02\x01\x01\x05\x05\x02\x01\x02\x02\x05\x01\x03\x04", // 𦘤
+ 0x26625: "\x04\x05\x01\x03\x02\x05\x01\x01\x05\x03\x04\x05\x01\x01\x01\x01\x02", // 𦘥
+ 0x26626: "\x04\x05\x01\x03\x02\x05\x01\x03\x01\x03\x04\x05\x01\x01\x01\x01\x02", // 𦘦
+ 0x26627: "\x05\x01\x03\x03\x01\x01\x05\x05\x01\x01\x01\x02\x01\x02\x05\x01\x02\x01\x01", // 𦘧
+ 0x26628: "\x05\x01\x01\x01\x01\x02\x03\x05\x03\x03\x05\x01\x01\x01\x01\x02\x03\x05\x03\x03", // 𦘨
+ 0x26629: "\x03\x05\x04\x01\x03\x04", // 𦘩
+ 0x2662a: "\x03\x05\x04\x01\x03\x05", // 𦘪
+ 0x2662b: "\x04\x05\x02\x05\x03\x04\x03\x04", // 𦘫
+ 0x2662c: "\x05\x04\x02\x05\x03\x04\x03\x04", // 𦘬
+ 0x2662d: "\x03\x05\x04\x01\x01\x02", // 𦘭
+ 0x2662e: "\x03\x05\x04\x01\x05\x05", // 𦘮
+ 0x2662f: "\x03\x05\x04\x01\x05\x04", // 𦘯
+ 0x26630: "\x03\x05\x01\x01\x01\x05", // 𦘰
+ 0x26631: "\x03\x05\x01\x01\x02\x04", // 𦘱
+ 0x26632: "\x03\x05\x04\x01\x03\x04", // 𦘲
+ 0x26633: "\x03\x05\x04\x01\x05\x05", // 𦘳
+ 0x26634: "\x03\x05\x04\x01\x03\x01\x05", // 𦘴
+ 0x26635: "\x03\x05\x04\x01\x01\x03\x05", // 𦘵
+ 0x26636: "\x03\x05\x04\x01\x03\x02\x02", // 𦘶
+ 0x26637: "\x03\x05\x04\x01\x05\x05\x04", // 𦘷
+ 0x26638: "\x03\x05\x04\x01\x02\x01\x05", // 𦘸
+ 0x26639: "\x03\x05\x01\x01\x02\x05\x02", // 𦘹
+ 0x2663a: "\x03\x05\x04\x01\x05\x01\x05", // 𦘺
+ 0x2663b: "\x04\x01\x05\x02\x05\x03\x04\x03\x04", // 𦘻
+ 0x2663c: "\x01\x01\x05\x03\x05\x01\x01", // 𦘼
+ 0x2663d: "\x02\x05\x03\x04\x03\x04\x05\x03\x01", // 𦘽
+ 0x2663e: "\x02\x05\x03\x04\x03\x04\x03\x05\x04", // 𦘾
+ 0x2663f: "\x03\x05\x04\x01\x03\x05\x05\x04", // 𦘿
+ 0x26640: "\x03\x05\x04\x01\x03\x03\x05\x04", // 𦙀
+ 0x26641: "\x03\x05\x04\x01\x01\x05\x05\x01", // 𦙁
+ 0x26642: "\x01\x03\x02\x04\x02\x05\x03\x04\x03\x04", // 𦙂
+ 0x26643: "\x02\x05\x01\x05\x03\x05\x04\x01", // 𦙃
+ 0x26644: "\x03\x04\x05\x02\x03\x05\x04\x01", // 𦙄
+ 0x26645: "\x03\x05\x04\x01\x03\x05\x01\x03", // 𦙅
+ 0x26646: "\x03\x05\x04\x01\x03\x05\x01\x05", // 𦙆
+ 0x26647: "\x03\x05\x04\x01\x03\x05\x01\x01", // 𦙇
+ 0x26648: "\x03\x05\x04\x01\x03\x05\x01\x02", // 𦙈
+ 0x26649: "\x03\x05\x04\x01\x05\x04\x03\x05", // 𦙉
+ 0x2664a: "\x04\x03\x03\x04\x03\x05\x04\x01", // 𦙊
+ 0x2664b: "\x03\x05\x04\x01\x03\x01\x03\x05", // 𦙋
+ 0x2664c: "\x05\x05\x04\x02\x05\x01\x01\x05", // 𦙌
+ 0x2664d: "\x03\x05\x05\x04\x03\x05\x04\x01", // 𦙍
+ 0x2664e: "\x04\x05\x02\x01\x02\x05\x01\x01", // 𦙎
+ 0x2664f: "\x03\x05\x01\x01\x02\x05\x02\x05", // 𦙏
+ 0x26650: "\x03\x05\x04\x01\x03\x04\x01\x05", // 𦙐
+ 0x26651: "\x03\x05\x03\x03\x03\x05\x04\x01", // 𦙑
+ 0x26652: "\x03\x05\x04\x01\x04\x04\x01\x02", // 𦙒
+ 0x26653: "\x03\x05\x04\x01\x01\x03\x05\x04", // 𦙓
+ 0x26654: "\x03\x04\x04\x03\x03\x05\x04\x01", // 𦙔
+ 0x26655: "\x03\x05\x04\x01\x03\x05\x05\x03", // 𦙕
+ 0x26656: "\x01\x01\x03\x04\x03\x05\x04\x01", // 𦙖
+ 0x26657: "\x03\x05\x01\x01\x01\x02\x05\x01", // 𦙗
+ 0x26658: "\x03\x05\x04\x01\x01\x05\x05\x04", // 𦙘
+ 0x26659: "\x03\x05\x01\x01\x02\x05\x03\x04", // 𦙙
+ 0x2665a: "\x03\x01\x01\x03\x03\x05\x01\x01", // 𦙚
+ 0x2665b: "\x03\x05\x04\x01\x03\x02\x05\x05", // 𦙛
+ 0x2665c: "\x03\x05\x04\x01\x03\x03\x05\x05", // 𦙜
+ 0x2665d: "\x03\x05\x01\x01\x03\x04\x01\x02", // 𦙝
+ 0x2665e: "\x03\x05\x01\x01\x03\x04\x05\x02", // 𦙞
+ 0x2665f: "\x04\x01\x03\x04\x03\x05\x04\x01", // 𦙟
+ 0x26660: "\x03\x05\x04\x01\x05\x01\x05\x01", // 𦙠
+ 0x26661: "\x02\x01\x02\x01\x02\x05\x03\x04\x03\x04", // 𦙡
+ 0x26662: "\x02\x05\x03\x04\x03\x04\x05\x01\x05\x02", // 𦙢
+ 0x26663: "\x03\x05\x01\x01\x01\x02\x03\x04", // 𦙣
+ 0x26664: "\x03\x05\x01\x01\x03\x01\x01\x05", // 𦙤
+ 0x26665: "\x03\x05\x01\x01\x05\x02\x01\x05", // 𦙥
+ 0x26666: "\x03\x05\x01\x01\x04\x05\x04\x04", // 𦙦
+ 0x26667: "\x02\x05\x03\x04\x03\x04\x02\x03\x04\x03", // 𦙧
+ 0x26668: "\x03\x05\x04\x01\x05\x01\x05\x02", // 𦙨
+ 0x26669: "\x01\x02\x01\x03\x02\x05\x03\x04\x03\x04", // 𦙩
+ 0x2666a: "\x03\x05\x01\x01\x03\x02\x05\x01\x01", // 𦙪
+ 0x2666b: "\x03\x05\x04\x01\x01\x02\x01\x02\x01", // 𦙫
+ 0x2666c: "\x03\x05\x04\x01\x05\x02\x01\x03\x04", // 𦙬
+ 0x2666d: "\x03\x05\x04\x01\x03\x05\x04\x04\x04", // 𦙭
+ 0x2666e: "\x03\x05\x04\x01\x04\x04\x05\x03\x04", // 𦙮
+ 0x2666f: "\x03\x02\x01\x05\x04\x03\x05\x04\x01", // 𦙯
+ 0x26670: "\x03\x05\x04\x01\x03\x02\x01\x02\x01", // 𦙰
+ 0x26671: "\x03\x05\x04\x01\x02\x05\x02\x02\x01", // 𦙱
+ 0x26672: "\x05\x03\x02\x05\x01\x02\x05\x03\x04\x03\x04", // 𦙲
+ 0x26673: "\x03\x05\x04\x01\x03\x01\x02\x03\x04", // 𦙳
+ 0x26674: "\x03\x05\x04\x01\x04\x01\x01\x02\x01", // 𦙴
+ 0x26675: "\x03\x05\x04\x05\x05\x03\x05\x04\x01", // 𦙵
+ 0x26676: "\x03\x05\x04\x01\x01\x02\x02\x05\x01", // 𦙶
+ 0x26677: "\x03\x05\x04\x01\x05\x01\x03\x03\x05", // 𦙷
+ 0x26678: "\x03\x05\x04\x01\x03\x05\x01\x01\x02", // 𦙸
+ 0x26679: "\x03\x05\x04\x01\x05\x01\x03\x03\x04", // 𦙹
+ 0x2667a: "\x05\x03\x02\x05\x01\x03\x05\x04\x01", // 𦙺
+ 0x2667b: "\x03\x05\x04\x01\x01\x04\x03\x03\x04", // 𦙻
+ 0x2667c: "\x02\x01\x02\x01\x01\x05\x03\x05\x04\x01", // 𦙼
+ 0x2667d: "\x03\x05\x01\x01\x03\x05\x03\x05\x01", // 𦙽
+ 0x2667e: "\x03\x05\x01\x01\x05\x04\x01\x02\x01", // 𦙾
+ 0x2667f: "\x03\x05\x04\x01\x02\x05\x01\x03\x05", // 𦙿
+ 0x26680: "\x03\x05\x04\x01\x05\x01\x02\x05\x04", // 𦚀
+ 0x26681: "\x03\x05\x04\x01\x01\x03\x04\x05\x04", // 𦚁
+ 0x26682: "\x03\x05\x04\x01\x03\x05\x04\x05\x04", // 𦚂
+ 0x26683: "\x03\x05\x04\x01\x05\x02\x02\x03\x05", // 𦚃
+ 0x26684: "\x03\x05\x04\x01\x01\x03\x04\x01\x02", // 𦚄
+ 0x26685: "\x03\x05\x04\x02\x04\x03\x05\x04\x01", // 𦚅
+ 0x26686: "\x02\x05\x03\x04\x03\x04\x05\x03\x02\x05\x04", // 𦚆
+ 0x26687: "\x05\x04\x05\x02\x03\x02\x05\x03\x04\x03\x04", // 𦚇
+ 0x26688: "\x03\x05\x04\x01\x01\x03\x02\x05\x01", // 𦚈
+ 0x26689: "\x01\x03\x04\x04\x03\x03\x05\x04\x01", // 𦚉
+ 0x2668a: "\x03\x05\x01\x01\x02\x05\x01\x01\x05", // 𦚊
+ 0x2668b: "\x02\x05\x02\x02\x01\x02\x05\x01\x01", // 𦚋
+ 0x2668c: "\x03\x01\x05\x01\x03\x03\x05\x04\x01", // 𦚌
+ 0x2668d: "\x04\x01\x02\x03\x04\x03\x05\x04\x01", // 𦚍
+ 0x2668e: "\x04\x01\x04\x03\x01\x03\x05\x04\x01", // 𦚎
+ 0x2668f: "\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 𦚏
+ 0x26690: "\x03\x05\x01\x01\x04\x04\x05\x03\x05", // 𦚐
+ 0x26691: "\x03\x05\x01\x01\x03\x03\x05\x04\x01", // 𦚑
+ 0x26692: "\x02\x05\x03\x04\x03\x04\x01\x02\x01\x05\x04", // 𦚒
+ 0x26693: "\x02\x05\x03\x04\x03\x04\x03\x04\x01\x01\x02", // 𦚓
+ 0x26694: "\x03\x05\x04\x01\x05\x03\x02\x05\x01", // 𦚔
+ 0x26695: "\x03\x05\x01\x01\x01\x02\x02\x01\x01", // 𦚕
+ 0x26696: "\x03\x05\x01\x01\x03\x04\x05\x04", // 𦚖
+ 0x26697: "\x03\x05\x01\x01\x01\x02\x05\x02\x05", // 𦚗
+ 0x26698: "\x03\x02\x01\x02\x01\x02\x05\x03\x04\x03\x04", // 𦚘
+ 0x26699: "\x03\x04\x02\x05\x03\x04\x03\x04\x01\x02\x01", // 𦚙
+ 0x2669a: "\x03\x05\x04\x01\x02\x01\x02\x01\x01\x05", // 𦚚
+ 0x2669b: "\x02\x01\x03\x05\x04\x02\x05\x03\x04\x03\x04", // 𦚛
+ 0x2669c: "\x03\x05\x04\x01\x01\x01\x02\x03\x04", // 𦚜
+ 0x2669d: "\x03\x05\x04\x01\x04\x01\x02\x05\x03\x04", // 𦚝
+ 0x2669e: "\x03\x05\x04\x01\x01\x01\x01\x02\x01\x05", // 𦚞
+ 0x2669f: "\x03\x05\x04\x01\x01\x02\x02\x05\x01\x02\x05", // 𦚟
+ 0x266a0: "\x03\x05\x04\x01\x01\x02\x05\x01\x02\x05", // 𦚠
+ 0x266a1: "\x03\x05\x04\x01\x03\x02\x05\x02\x02\x01", // 𦚡
+ 0x266a2: "\x03\x05\x04\x01\x02\x05\x01\x01\x01\x05", // 𦚢
+ 0x266a3: "\x03\x05\x04\x01\x05\x01\x01\x05\x03\x04", // 𦚣
+ 0x266a4: "\x03\x05\x04\x01\x02\x05\x01\x01\x03\x04", // 𦚤
+ 0x266a5: "\x03\x05\x04\x01\x03\x01\x01\x02\x05\x02", // 𦚥
+ 0x266a6: "\x03\x05\x04\x01\x05\x02\x05\x03\x04\x01", // 𦚦
+ 0x266a7: "\x03\x05\x04\x01\x03\x05\x02\x05\x01\x01", // 𦚧
+ 0x266a8: "\x01\x01\x01\x02\x05\x03\x02\x05\x03\x04\x03\x04", // 𦚨
+ 0x266a9: "\x03\x05\x04\x01\x03\x05\x01\x02\x03\x04", // 𦚩
+ 0x266aa: "\x03\x05\x04\x01\x05\x01\x05\x01\x03\x02", // 𦚪
+ 0x266ab: "\x03\x05\x04\x01\x04\x01\x01\x01\x03\x04", // 𦚫
+ 0x266ac: "\x03\x05\x04\x01\x01\x02\x03\x04\x01\x02", // 𦚬
+ 0x266ad: "\x03\x05\x04\x01\x02\x05\x01\x02\x01\x04", // 𦚭
+ 0x266ae: "\x03\x02\x03\x01\x02\x01\x02\x05\x03\x04\x03\x04", // 𦚮
+ 0x266af: "\x03\x05\x04\x01\x05\x04\x02\x05\x01\x01", // 𦚯
+ 0x266b0: "\x03\x05\x01\x01\x05\x03\x05\x03\x05\x03", // 𦚰
+ 0x266b1: "\x03\x05\x01\x01\x01\x02\x01\x03\x03\x05", // 𦚱
+ 0x266b2: "\x03\x05\x04\x01\x05\x04\x05\x02\x01\x01", // 𦚲
+ 0x266b3: "\x03\x05\x04\x01\x04\x01\x05\x04\x03\x05", // 𦚳
+ 0x266b4: "\x01\x02\x02\x01\x03\x04\x03\x05\x04\x01", // 𦚴
+ 0x266b5: "\x03\x05\x04\x01\x01\x02\x05\x03\x05\x01", // 𦚵
+ 0x266b6: "\x03\x04\x01\x02\x05\x01\x03\x05\x04\x01", // 𦚶
+ 0x266b7: "\x03\x04\x01\x02\x05\x01\x02\x05\x03\x04\x03\x04", // 𦚷
+ 0x266b8: "\x03\x05\x04\x01\x01\x02\x05\x01\x01\x01", // 𦚸
+ 0x266b9: "\x03\x05\x01\x01\x01\x02\x05\x04\x04\x01", // 𦚹
+ 0x266ba: "\x03\x05\x04\x01\x02\x01\x02\x01\x05\x04", // 𦚺
+ 0x266bb: "\x03\x05\x04\x01\x02\x05\x02\x02\x01\x01", // 𦚻
+ 0x266bc: "\x03\x05\x01\x01\x02\x05\x01\x02\x02\x01", // 𦚼
+ 0x266bd: "\x03\x05\x04\x01\x02\x05\x01\x05\x01\x05", // 𦚽
+ 0x266be: "\x04\x01\x03\x04\x05\x02\x02\x05\x01\x01", // 𦚾
+ 0x266bf: "\x03\x05\x01\x01\x04\x03\x01\x02\x05\x02", // 𦚿
+ 0x266c0: "\x03\x05\x01\x01\x04\x03\x03\x04\x05\x04", // 𦛀
+ 0x266c1: "\x03\x05\x04\x01\x05\x05\x05\x02\x05\x02", // 𦛁
+ 0x266c2: "\x02\x05\x04\x05\x04\x04\x02\x05\x03\x04\x03\x04", // 𦛂
+ 0x266c3: "\x02\x05\x03\x04\x03\x04\x03\x05\x04\x02\x05\x01", // 𦛃
+ 0x266c4: "\x04\x01\x03\x04\x05\x02\x02\x05\x03\x04\x03\x04", // 𦛄
+ 0x266c5: "\x02\x05\x03\x04\x03\x04\x04\x04\x05\x05\x03\x01", // 𦛅
+ 0x266c6: "\x05\x02\x05\x03\x04\x01\x02\x05\x03\x04\x03\x04", // 𦛆
+ 0x266c7: "\x04\x01\x05\x01\x03\x04\x02\x05\x03\x04\x03\x04", // 𦛇
+ 0x266c8: "\x03\x05\x01\x01\x02\x05\x01\x01\x05\x03", // 𦛈
+ 0x266c9: "\x03\x05\x01\x01\x02\x05\x01\x02\x05\x02", // 𦛉
+ 0x266ca: "\x03\x05\x01\x01\x01\x03\x02\x05\x02\x01", // 𦛊
+ 0x266cb: "\x03\x05\x01\x01\x01\x02\x01\x02\x05\x01", // 𦛋
+ 0x266cc: "\x03\x05\x01\x01\x05\x01\x01\x01\x01\x02", // 𦛌
+ 0x266cd: "\x03\x05\x01\x01\x01\x02\x05\x02\x01\x01", // 𦛍
+ 0x266ce: "\x03\x05\x04\x01\x02\x05\x02\x02\x05\x02", // 𦛎
+ 0x266cf: "\x03\x05\x04\x01\x01\x03\x04\x01\x02\x01", // 𦛏
+ 0x266d0: "\x03\x05\x04\x01\x03\x03\x05\x02\x01\x05", // 𦛐
+ 0x266d1: "\x03\x05\x01\x01\x05\x01\x05\x02\x01\x01", // 𦛑
+ 0x266d2: "\x03\x05\x04\x01\x01\x03\x02\x05\x01\x01", // 𦛒
+ 0x266d3: "\x03\x05\x04\x01\x03\x02\x01\x01\x05\x01\x01", // 𦛓
+ 0x266d4: "\x03\x05\x04\x01\x03\x01\x05\x02\x01\x03\x04", // 𦛔
+ 0x266d5: "\x03\x05\x04\x01\x01\x02\x01\x05\x04\x05\x03", // 𦛕
+ 0x266d6: "\x03\x05\x04\x01\x01\x02\x02\x01\x01\x01\x05", // 𦛖
+ 0x266d7: "\x03\x05\x04\x01\x02\x05\x01\x03\x02\x05\x01", // 𦛗
+ 0x266d8: "\x03\x05\x04\x01\x01\x02\x01\x03\x05\x03\x04", // 𦛘
+ 0x266d9: "\x03\x05\x04\x01\x01\x03\x05\x05\x03\x04", // 𦛙
+ 0x266da: "\x03\x05\x04\x01\x02\x05\x03\x04\x02\x05\x01", // 𦛚
+ 0x266db: "\x03\x05\x04\x01\x04\x01\x04\x03\x01\x01\x02", // 𦛛
+ 0x266dc: "\x03\x05\x04\x01\x03\x04\x01\x05\x02\x05\x01", // 𦛜
+ 0x266dd: "\x03\x04\x01\x01\x02\x03\x04\x02\x05\x03\x04\x03\x04", // 𦛝
+ 0x266de: "\x03\x05\x04\x01\x02\x05\x01\x05\x02\x01\x05", // 𦛞
+ 0x266df: "\x03\x05\x04\x01\x01\x02\x05\x01\x01\x03\x04", // 𦛟
+ 0x266e0: "\x03\x05\x04\x01\x02\x05\x01\x01\x01\x02\x01", // 𦛠
+ 0x266e1: "\x03\x05\x04\x01\x03\x05\x03\x04\x03\x03\x04", // 𦛡
+ 0x266e2: "\x03\x05\x01\x01\x02\x05\x01\x01\x02\x01\x01", // 𦛢
+ 0x266e3: "\x03\x05\x04\x01\x01\x02\x01\x02\x01\x03\x04", // 𦛣
+ 0x266e4: "\x03\x05\x04\x01\x03\x02\x05\x01\x01\x03\x04", // 𦛤
+ 0x266e5: "\x03\x05\x04\x01\x03\x04\x04\x01\x01\x01\x02", // 𦛥
+ 0x266e6: "\x03\x05\x04\x01\x03\x05\x03\x03\x05\x03\x03", // 𦛦
+ 0x266e7: "\x03\x05\x04\x01\x03\x05\x04\x04\x03\x03\x04", // 𦛧
+ 0x266e8: "\x03\x05\x01\x01\x01\x02\x02\x04\x05\x05\x03", // 𦛨
+ 0x266e9: "\x03\x05\x04\x01\x03\x01\x02\x01\x02\x05\x01", // 𦛩
+ 0x266ea: "\x03\x05\x04\x01\x03\x01\x01\x03\x04\x05\x02", // 𦛪
+ 0x266eb: "\x05\x03\x05\x02\x05\x04\x01\x03\x05\x04\x01", // 𦛫
+ 0x266ec: "\x05\x03\x05\x05\x04\x05\x04\x03\x05\x04\x01", // 𦛬
+ 0x266ed: "\x03\x05\x04\x01\x02\x05\x01\x01\x02\x05\x02", // 𦛭
+ 0x266ee: "\x03\x05\x04\x01\x03\x02\x05\x01\x01\x03\x05", // 𦛮
+ 0x266ef: "\x01\x03\x02\x05\x01\x05\x04\x02\x05\x01\x01", // 𦛯
+ 0x266f0: "\x03\x05\x01\x01\x03\x01\x05\x04\x05\x04", // 𦛰
+ 0x266f1: "\x03\x05\x01\x01\x03\x04\x03\x04\x02\x05\x01", // 𦛱
+ 0x266f2: "\x03\x05\x01\x01\x03\x05\x03\x05\x01\x01\x02", // 𦛲
+ 0x266f3: "\x03\x05\x04\x01\x03\x05\x05\x02\x02\x05\x02", // 𦛳
+ 0x266f4: "\x03\x05\x04\x01\x03\x05\x05\x02\x05\x02\x03", // 𦛴
+ 0x266f5: "\x03\x05\x01\x01\x05\x03\x05\x04\x02\x05\x01", // 𦛵
+ 0x266f6: "\x02\x05\x03\x04\x03\x04\x01\x02\x01\x05\x04\x05\x02", // 𦛶
+ 0x266f7: "\x02\x05\x03\x04\x03\x04\x03\x03\x04\x04\x01\x02\x04", // 𦛷
+ 0x266f8: "\x03\x05\x01\x01\x05\x04\x02\x05\x01\x01\x02", // 𦛸
+ 0x266f9: "\x01\x01\x02\x01\x02\x05\x03\x04\x03\x04\x05\x03\x04", // 𦛹
+ 0x266fa: "\x03\x05\x01\x01\x02\x05\x01\x05\x03\x02\x02", // 𦛺
+ 0x266fb: "\x03\x05\x01\x01\x01\x02\x03\x04\x01\x02\x04", // 𦛻
+ 0x266fc: "\x03\x05\x01\x01\x03\x02\x01\x02\x01\x03\x04", // 𦛼
+ 0x266fd: "\x03\x05\x01\x01\x02\x05\x01\x03\x04\x04\x05", // 𦛽
+ 0x266fe: "\x03\x05\x01\x01\x04\x04\x02\x05\x02\x01\x01", // 𦛾
+ 0x266ff: "\x03\x05\x01\x01\x01\x02\x02\x04\x01\x05", // 𦛿
+ 0x26700: "\x03\x05\x01\x01\x02\x05\x01\x01\x03\x04\x04", // 𦜀
+ 0x26701: "\x02\x05\x03\x04\x03\x04\x03\x05\x04\x01\x01\x01\x02", // 𦜁
+ 0x26702: "\x03\x05\x04\x01\x03\x05\x04\x03\x05\x04\x01", // 𦜂
+ 0x26703: "\x03\x05\x04\x01\x02\x05\x01\x01\x01\x03\x04", // 𦜃
+ 0x26704: "\x03\x05\x04\x01\x02\x05\x01\x01\x03\x05\x04", // 𦜄
+ 0x26705: "\x03\x05\x01\x01\x01\x01\x01\x03\x05\x02", // 𦜅
+ 0x26706: "\x03\x05\x04\x01\x05\x02\x04\x01\x03\x04\x05\x02", // 𦜆
+ 0x26707: "\x03\x05\x04\x01\x05\x01\x03\x05\x02\x02\x05\x02", // 𦜇
+ 0x26708: "\x03\x05\x04\x01\x04\x01\x05\x04\x01\x02\x03\x04", // 𦜈
+ 0x26709: "\x03\x05\x01\x01\x02\x05\x01\x01\x02\x01\x02", // 𦜉
+ 0x2670a: "\x03\x05\x04\x01\x04\x05\x03\x05\x01\x02\x03\x04", // 𦜊
+ 0x2670b: "\x03\x05\x04\x01\x03\x01\x01\x02\x05\x02\x02\x02", // 𦜋
+ 0x2670c: "\x03\x05\x04\x01\x01\x02\x05\x01\x02\x05\x05\x04", // 𦜌
+ 0x2670d: "\x03\x05\x04\x01\x04\x01\x05\x03\x03\x01\x03\x04", // 𦜍
+ 0x2670e: "\x03\x05\x04\x01\x05\x02\x01\x01\x01\x05\x03\x04", // 𦜎
+ 0x2670f: "\x03\x05\x04\x01\x03\x05\x01\x03\x01\x03\x04\x04", // 𦜏
+ 0x26710: "\x03\x05\x04\x01\x04\x04\x05\x02\x05\x01\x05\x01", // 𦜐
+ 0x26711: "\x03\x05\x01\x03\x03\x01\x03\x04\x02\x05\x03\x04\x03\x04", // 𦜑
+ 0x26712: "\x03\x05\x04\x01\x01\x04\x03\x03\x04\x03\x05\x04", // 𦜒
+ 0x26713: "\x03\x05\x04\x01\x03\x03\x01\x02\x03\x05\x03\x04", // 𦜓
+ 0x26714: "\x03\x05\x04\x01\x01\x02\x01\x04\x03\x01\x02\x03\x04", // 𦜔
+ 0x26715: "\x03\x05\x04\x01\x05\x02\x05\x03\x04\x01\x05\x05", // 𦜕
+ 0x26716: "\x03\x05\x04\x01\x01\x02\x01\x05\x05\x01\x02\x01", // 𦜖
+ 0x26717: "\x03\x01\x01\x02\x05\x02\x02\x02\x03\x05\x04\x01", // 𦜗
+ 0x26718: "\x03\x05\x04\x01\x03\x04\x04\x03\x05\x02\x01\x05", // 𦜘
+ 0x26719: "\x03\x05\x04\x01\x01\x01\x02\x01\x04\x05\x04\x04", // 𦜙
+ 0x2671a: "\x01\x02\x05\x04\x05\x04\x05\x04\x03\x05\x04\x01", // 𦜚
+ 0x2671b: "\x03\x05\x04\x01\x03\x05\x01\x03\x03\x05\x03\x05", // 𦜛
+ 0x2671c: "\x01\x02\x05\x01\x02\x05\x05\x04\x02\x05\x03\x04\x03\x04", // 𦜜
+ 0x2671d: "\x03\x05\x01\x01\x04\x01\x03\x04\x03\x02\x01\x01", // 𦜝
+ 0x2671e: "\x03\x05\x01\x01\x03\x04\x01\x02\x02\x01\x03\x04", // 𦜞
+ 0x2671f: "\x03\x05\x04\x01\x04\x01\x03\x02\x04\x02\x05\x01", // 𦜟
+ 0x26720: "\x03\x05\x04\x01\x02\x05\x01\x02\x01\x01\x03\x02", // 𦜠
+ 0x26721: "\x03\x05\x04\x01\x03\x05\x04\x04\x04\x03\x03\x04", // 𦜡
+ 0x26722: "\x03\x05\x04\x01\x04\x01\x03\x04\x03\x05\x01\x01", // 𦜢
+ 0x26723: "\x03\x05\x04\x01\x01\x02\x01\x03\x05\x01\x02\x01", // 𦜣
+ 0x26724: "\x03\x05\x04\x01\x01\x03\x01\x01\x03\x05\x01\x01", // 𦜤
+ 0x26725: "\x03\x05\x04\x01\x02\x05\x02\x03\x04\x01\x05\x04", // 𦜥
+ 0x26726: "\x03\x05\x04\x01\x02\x05\x01\x02\x04\x05\x04\x04", // 𦜦
+ 0x26727: "\x03\x05\x04\x01\x02\x05\x02\x01\x05\x02\x01\x05", // 𦜧
+ 0x26728: "\x03\x05\x04\x01\x02\x01\x02\x01\x03\x05\x04\x01", // 𦜨
+ 0x26729: "\x03\x05\x04\x01\x03\x05\x03\x03\x04\x05\x04\x04", // 𦜩
+ 0x2672a: "\x03\x05\x04\x01\x01\x02\x02\x01\x01\x02\x03\x04", // 𦜪
+ 0x2672b: "\x03\x05\x01\x01\x01\x02\x02\x01\x01\x02\x03\x04", // 𦜫
+ 0x2672c: "\x03\x05\x04\x01\x01\x02\x01\x02\x02\x05\x03\x04", // 𦜬
+ 0x2672d: "\x03\x05\x01\x01\x01\x03\x04\x01\x02\x01\x03\x02", // 𦜭
+ 0x2672e: "\x03\x05\x01\x01\x01\x03\x04\x04\x03\x01\x01\x05", // 𦜮
+ 0x2672f: "\x03\x05\x01\x01\x01\x05\x02\x05\x04\x04\x04\x04", // 𦜯
+ 0x26730: "\x03\x05\x01\x01\x02\x01\x02\x05\x01\x01\x01\x02", // 𦜰
+ 0x26731: "\x03\x05\x01\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 𦜱
+ 0x26732: "\x03\x05\x01\x01\x03\x04\x04\x05\x01\x01\x05\x04", // 𦜲
+ 0x26733: "\x03\x05\x01\x01\x03\x05\x01\x01\x03\x05\x01\x01", // 𦜳
+ 0x26734: "\x03\x05\x01\x01\x03\x05\x05\x04\x02\x05\x01\x01", // 𦜴
+ 0x26735: "\x03\x05\x04\x01\x03\x05\x04\x02\x04\x02\x05\x01", // 𦜵
+ 0x26736: "\x03\x05\x04\x01\x04\x01\x03\x05\x04\x01\x05\x03", // 𦜶
+ 0x26737: "\x03\x05\x01\x01\x04\x04\x02\x01\x02\x05\x01\x01", // 𦜷
+ 0x26738: "\x03\x05\x01\x01\x04\x04\x05\x01\x03\x05\x03\x03", // 𦜸
+ 0x26739: "\x03\x05\x01\x03\x02\x01\x05\x04\x03\x05\x04\x01", // 𦜹
+ 0x2673a: "\x03\x05\x04\x01\x05\x01\x01\x01\x03\x03\x04\x04", // 𦜺
+ 0x2673b: "\x03\x05\x04\x01\x05\x02\x01\x01\x05\x02\x01\x01", // 𦜻
+ 0x2673c: "\x03\x05\x01\x01\x05\x05\x01\x03\x03\x02\x05\x02", // 𦜼
+ 0x2673d: "\x02\x05\x03\x04\x03\x04\x01\x03\x04\x02\x05\x01\x01\x05", // 𦜽
+ 0x2673e: "\x03\x01\x01\x02\x05\x02\x02\x02\x02\x05\x03\x04\x03\x04", // 𦜾
+ 0x2673f: "\x02\x05\x03\x04\x03\x04\x03\x05\x03\x02\x01\x05\x01\x01", // 𦜿
+ 0x26740: "\x03\x05\x01\x01\x01\x03\x04\x01\x01\x02\x03\x04", // 𦝀
+ 0x26741: "\x03\x05\x04\x01\x01\x02\x02\x01\x01\x01\x03\x04", // 𦝁
+ 0x26742: "\x03\x05\x01\x01\x03\x02\x05\x01\x01\x03\x05\x04", // 𦝂
+ 0x26743: "\x03\x05\x01\x01\x01\x02\x03\x04\x01\x02\x03\x04", // 𦝃
+ 0x26744: "\x03\x05\x01\x01\x01\x02\x01\x03\x04\x03\x05\x04", // 𦝄
+ 0x26745: "\x03\x05\x01\x01\x03\x04\x05\x03\x04\x05\x04\x04", // 𦝅
+ 0x26746: "\x03\x05\x01\x01\x05\x02\x01\x03\x01\x02\x03\x04", // 𦝆
+ 0x26747: "\x03\x05\x01\x01\x04\x04\x02\x02\x05\x01\x01\x01", // 𦝇
+ 0x26748: "\x03\x05\x01\x01\x02\x05\x01\x01\x01\x03\x03\x04", // 𦝈
+ 0x26749: "\x03\x05\x01\x01\x04\x01\x03\x03\x05\x01\x05\x04", // 𦝉
+ 0x2674a: "\x03\x05\x01\x01\x01\x05\x02\x05\x04\x05\x04", // 𦝊
+ 0x2674b: "\x03\x05\x01\x01\x05\x01\x01\x02\x02\x05\x01\x01", // 𦝋
+ 0x2674c: "\x03\x05\x01\x01\x04\x04\x01\x01\x02\x01\x05\x04", // 𦝌
+ 0x2674d: "\x05\x02\x01\x03\x01\x02\x03\x04\x02\x05\x03\x04\x03\x04", // 𦝍
+ 0x2674e: "\x04\x04\x01\x01\x02\x01\x05\x04\x02\x05\x03\x04\x03\x04", // 𦝎
+ 0x2674f: "\x03\x05\x04\x01\x01\x02\x05\x01\x02\x01\x05\x04", // 𦝏
+ 0x26750: "\x03\x05\x04\x01\x01\x03\x04\x03\x05\x03\x05\x02", // 𦝐
+ 0x26751: "\x03\x05\x04\x01\x04\x01\x05\x04\x03\x05\x04\x01", // 𦝑
+ 0x26752: "\x03\x05\x04\x01\x01\x02\x02\x01\x01\x01\x05\x04", // 𦝒
+ 0x26753: "\x03\x05\x04\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 𦝓
+ 0x26754: "\x03\x05\x04\x01\x03\x01\x01\x03\x04\x02\x05\x01", // 𦝔
+ 0x26755: "\x05\x04\x03\x05\x04\x01\x02\x05\x01\x02\x05\x01", // 𦝕
+ 0x26756: "\x03\x05\x04\x01\x02\x05\x01\x05\x02\x05\x01\x01", // 𦝖
+ 0x26757: "\x03\x05\x04\x01\x05\x02\x03\x02\x01\x02\x04", // 𦝗
+ 0x26758: "\x02\x05\x03\x04\x03\x04\x03\x04\x01\x01\x03\x04\x05\x05", // 𦝘
+ 0x26759: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x03\x04\x03\x04", // 𦝙
+ 0x2675a: "\x03\x05\x04\x01\x05\x03\x05\x04\x02\x05\x02\x02\x01", // 𦝚
+ 0x2675b: "\x03\x05\x04\x01\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 𦝛
+ 0x2675c: "\x03\x05\x04\x01\x01\x01\x01\x02\x05\x03\x01\x03\x04", // 𦝜
+ 0x2675d: "\x03\x05\x04\x01\x03\x05\x02\x05\x03\x04\x01\x03\x04", // 𦝝
+ 0x2675e: "\x03\x05\x04\x01\x04\x01\x02\x05\x01\x04\x05\x01\x02", // 𦝞
+ 0x2675f: "\x03\x05\x04\x01\x01\x03\x02\x05\x01\x01\x02\x01\x01", // 𦝟
+ 0x26760: "\x04\x01\x05\x02\x05\x01\x03\x05\x04\x01\x03\x05\x04", // 𦝠
+ 0x26761: "\x03\x05\x04\x01\x03\x04\x01\x02\x05\x01\x01\x03\x02", // 𦝡
+ 0x26762: "\x03\x05\x04\x01\x05\x04\x03\x03\x04\x01\x01\x03\x04", // 𦝢
+ 0x26763: "\x03\x05\x04\x01\x04\x04\x05\x03\x05\x04\x02\x05\x01", // 𦝣
+ 0x26764: "\x03\x05\x04\x01\x04\x03\x01\x02\x02\x04\x03\x01", // 𦝤
+ 0x26765: "\x03\x05\x04\x01\x01\x01\x02\x03\x02\x01\x05\x01\x01", // 𦝥
+ 0x26766: "\x03\x05\x04\x01\x01\x03\x01\x02\x01\x03\x05\x04\x01", // 𦝦
+ 0x26767: "\x03\x05\x04\x01\x01\x02\x02\x01\x01\x01\x03\x05\x05", // 𦝧
+ 0x26768: "\x03\x05\x04\x01\x01\x05\x01\x05\x03\x02\x05\x01\x01", // 𦝨
+ 0x26769: "\x03\x05\x04\x01\x02\x05\x01\x02\x01\x03\x05\x04\x01", // 𦝩
+ 0x2676a: "\x03\x05\x04\x01\x01\x02\x05\x03\x05\x01\x01\x02\x01", // 𦝪
+ 0x2676b: "\x01\x02\x05\x02\x02\x01\x05\x03\x01\x03\x05\x04\x01", // 𦝫
+ 0x2676c: "\x03\x05\x04\x01\x04\x04\x05\x03\x05\x01\x03\x04\x04", // 𦝬
+ 0x2676d: "\x03\x02\x05\x01\x05\x01\x02\x05\x02\x03\x05\x04\x01", // 𦝭
+ 0x2676e: "\x03\x05\x04\x01\x05\x01\x05\x01\x05\x02\x05\x01\x01", // 𦝮
+ 0x2676f: "\x03\x05\x04\x01\x01\x03\x04\x04\x03\x01\x01\x01\x02", // 𦝯
+ 0x26770: "\x03\x05\x04\x01\x03\x05\x03\x03\x04\x04\x05\x04\x04", // 𦝰
+ 0x26771: "\x03\x05\x04\x01\x03\x04\x01\x02\x05\x03\x05\x01\x01", // 𦝱
+ 0x26772: "\x03\x05\x04\x01\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 𦝲
+ 0x26773: "\x03\x05\x04\x01\x02\x05\x01\x01\x01\x01\x03\x04\x04", // 𦝳
+ 0x26774: "\x03\x05\x04\x01\x03\x04\x01\x02\x01\x01\x01\x05\x04", // 𦝴
+ 0x26775: "\x03\x05\x04\x01\x03\x04\x01\x02\x03\x04\x02\x05\x01", // 𦝵
+ 0x26776: "\x03\x05\x04\x01\x02\x05\x02\x02\x05\x02\x02\x05\x02", // 𦝶
+ 0x26777: "\x03\x05\x04\x01\x05\x01\x03\x04\x03\x01\x01\x03\x02", // 𦝷
+ 0x26778: "\x01\x02\x03\x03\x03\x03\x05\x04\x01\x03\x05\x03\x03", // 𦝸
+ 0x26779: "\x03\x05\x01\x01\x04\x02\x05\x03\x04\x01\x02\x03\x04", // 𦝹
+ 0x2677a: "\x03\x05\x04\x01\x04\x03\x01\x01\x02\x01\x01\x03\x04", // 𦝺
+ 0x2677b: "\x03\x05\x04\x01\x04\x04\x05\x01\x02\x05\x01\x01\x01", // 𦝻
+ 0x2677c: "\x03\x05\x04\x01\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 𦝼
+ 0x2677d: "\x01\x03\x02\x04\x01\x02\x01\x02\x01\x03\x05\x04\x01", // 𦝽
+ 0x2677e: "\x03\x05\x04\x01\x05\x01\x05\x02\x05\x03\x04\x03\x04", // 𦝾
+ 0x2677f: "\x03\x05\x04\x01\x02\x01\x02\x05\x01\x04\x04\x04\x04", // 𦝿
+ 0x26780: "\x03\x05\x04\x01\x05\x04\x02\x05\x01\x03\x01\x03\x04", // 𦞀
+ 0x26781: "\x03\x05\x04\x01\x01\x02\x01\x02\x05\x01\x05\x03\x04", // 𦞁
+ 0x26782: "\x03\x05\x01\x01\x01\x02\x02\x03\x04\x01\x02\x05\x01", // 𦞂
+ 0x26783: "\x03\x05\x01\x01\x01\x03\x04\x04\x03\x02\x04\x04\x04", // 𦞃
+ 0x26784: "\x02\x05\x02\x02\x05\x02\x02\x05\x02\x03\x05\x04\x01", // 𦞄
+ 0x26785: "\x02\x05\x03\x04\x04\x04\x04\x04\x01\x03\x05\x04\x01", // 𦞅
+ 0x26786: "\x03\x05\x01\x01\x03\x02\x01\x05\x01\x01\x01\x02\x01", // 𦞆
+ 0x26787: "\x03\x05\x04\x01\x03\x02\x05\x01\x02\x05\x02\x01\x04", // 𦞇
+ 0x26788: "\x03\x05\x01\x01\x03\x02\x05\x01\x03\x01\x01\x03\x04", // 𦞈
+ 0x26789: "\x02\x05\x03\x04\x03\x04\x01\x05\x03\x05\x03\x02\x05\x01\x01", // 𦞉
+ 0x2678a: "\x02\x05\x03\x04\x03\x04\x04\x03\x01\x01\x03\x04\x02\x05\x02", // 𦞊
+ 0x2678b: "\x05\x01\x01\x05\x01\x01\x01\x05\x03\x02\x05\x03\x04\x03\x04", // 𦞋
+ 0x2678c: "\x03\x05\x01\x01\x04\x04\x02\x01\x02\x05\x01\x01\x01", // 𦞌
+ 0x2678d: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x05\x03\x04\x03\x04", // 𦞍
+ 0x2678e: "\x03\x05\x01\x01\x04\x01\x04\x03\x01\x03\x03\x03\x03", // 𦞎
+ 0x2678f: "\x01\x03\x01\x05\x03\x01\x05\x03\x04\x02\x05\x03\x04\x03\x04", // 𦞏
+ 0x26790: "\x03\x05\x01\x01\x02\x01\x05\x03\x01\x05\x01\x05\x01", // 𦞐
+ 0x26791: "\x03\x05\x01\x01\x01\x03\x02\x04\x02\x05\x02\x02\x01", // 𦞑
+ 0x26792: "\x03\x05\x01\x01\x03\x03\x02\x01\x02\x01\x01\x02\x04", // 𦞒
+ 0x26793: "\x03\x05\x01\x01\x04\x04\x01\x03\x03\x03\x05\x03\x04", // 𦞓
+ 0x26794: "\x03\x05\x01\x01\x04\x04\x02\x02\x04\x03\x01\x03\x05", // 𦞔
+ 0x26795: "\x03\x05\x04\x01\x03\x05\x01\x03\x03\x01\x01\x03\x04", // 𦞕
+ 0x26796: "\x03\x05\x04\x01\x03\x01\x01\x03\x02\x05\x01\x01\x01", // 𦞖
+ 0x26797: "\x03\x05\x04\x01\x02\x05\x02\x02\x01\x01\x03\x05\x04", // 𦞗
+ 0x26798: "\x02\x05\x03\x04\x03\x04\x05\x01\x01\x01\x01\x02\x05\x04", // 𦞘
+ 0x26799: "\x03\x05\x04\x01\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𦞙
+ 0x2679a: "\x03\x05\x04\x01\x05\x01\x03\x02\x04\x03\x03\x05\x04\x01", // 𦞚
+ 0x2679b: "\x03\x05\x04\x01\x03\x04\x01\x05\x01\x01\x03\x02\x05\x01", // 𦞛
+ 0x2679c: "\x03\x05\x04\x01\x03\x02\x05\x01\x01\x01\x04\x05\x04\x04", // 𦞜
+ 0x2679d: "\x03\x05\x04\x01\x03\x01\x01\x05\x04\x03\x01\x02\x03\x04", // 𦞝
+ 0x2679e: "\x03\x05\x04\x01\x05\x04\x02\x05\x04\x03\x01\x01\x02\x01", // 𦞞
+ 0x2679f: "\x03\x05\x04\x01\x04\x05\x04\x03\x04\x02\x05\x02\x02\x01", // 𦞟
+ 0x267a0: "\x03\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02", // 𦞠
+ 0x267a1: "\x03\x05\x04\x01\x05\x05\x05\x02\x05\x01\x05\x02\x01\x05", // 𦞡
+ 0x267a2: "\x03\x05\x04\x01\x02\x05\x01\x03\x05\x03\x03\x03\x04\x01", // 𦞢
+ 0x267a3: "\x03\x05\x04\x01\x04\x05\x04\x04\x02\x05\x01\x02\x01\x04", // 𦞣
+ 0x267a4: "\x03\x05\x04\x01\x04\x04\x05\x04\x01\x04\x03\x01\x01\x02", // 𦞤
+ 0x267a5: "\x03\x05\x04\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x01", // 𦞥
+ 0x267a6: "\x03\x05\x04\x01\x04\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 𦞦
+ 0x267a7: "\x03\x05\x04\x01\x03\x05\x03\x05\x02\x02\x05\x01\x02\x01", // 𦞧
+ 0x267a8: "\x03\x05\x04\x01\x04\x04\x05\x02\x05\x01\x03\x02\x05\x01", // 𦞨
+ 0x267a9: "\x03\x02\x01\x01\x05\x05\x04\x05\x01\x01\x03\x05\x04\x01", // 𦞩
+ 0x267aa: "\x03\x05\x04\x01\x05\x02\x05\x03\x04\x01\x04\x04\x04\x04", // 𦞪
+ 0x267ab: "\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x03\x05\x04\x01", // 𦞫
+ 0x267ac: "\x03\x05\x04\x01\x02\x01\x05\x03\x01\x05\x03\x01\x03\x04", // 𦞬
+ 0x267ad: "\x03\x05\x04\x01\x04\x04\x05\x03\x05\x03\x03\x05\x04\x04", // 𦞭
+ 0x267ae: "\x03\x05\x01\x01\x04\x03\x01\x05\x02\x03\x04\x05\x04", // 𦞮
+ 0x267af: "\x03\x05\x04\x01\x01\x02\x01\x03\x01\x05\x02\x05\x01\x01", // 𦞯
+ 0x267b0: "\x03\x05\x04\x01\x01\x02\x05\x02\x02\x01\x01\x02\x03\x04", // 𦞰
+ 0x267b1: "\x02\x05\x03\x04\x03\x04\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𦞱
+ 0x267b2: "\x03\x05\x04\x01\x05\x02\x03\x01\x02\x05\x01\x02\x01\x04", // 𦞲
+ 0x267b3: "\x03\x05\x01\x01\x04\x04\x05\x03\x04\x03\x04\x02\x05\x01", // 𦞳
+ 0x267b4: "\x03\x05\x01\x01\x01\x03\x04\x04\x03\x02\x05\x01\x01\x05", // 𦞴
+ 0x267b5: "\x03\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04\x01\x02", // 𦞵
+ 0x267b6: "\x03\x05\x04\x01\x01\x02\x05\x01\x02\x05\x01\x03\x05\x04", // 𦞶
+ 0x267b7: "\x03\x05\x04\x01\x04\x04\x05\x02\x05\x01\x01\x05\x03\x01", // 𦞷
+ 0x267b8: "\x03\x05\x04\x01\x04\x03\x01\x01\x03\x02\x04\x05\x04", // 𦞸
+ 0x267b9: "\x03\x05\x04\x01\x01\x03\x01\x01\x05\x03\x04\x01\x02\x04", // 𦞹
+ 0x267ba: "\x03\x05\x04\x01\x02\x05\x02\x01\x03\x05\x03\x01\x03\x04", // 𦞺
+ 0x267bb: "\x03\x05\x04\x01\x01\x02\x01\x02\x02\x05\x01\x01\x01\x02", // 𦞻
+ 0x267bc: "\x03\x05\x04\x01\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02", // 𦞼
+ 0x267bd: "\x03\x05\x04\x01\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01", // 𦞽
+ 0x267be: "\x03\x05\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03", // 𦞾
+ 0x267bf: "\x03\x05\x01\x01\x03\x04\x04\x03\x05\x04\x03\x01\x01\x02", // 𦞿
+ 0x267c0: "\x04\x01\x05\x02\x05\x01\x03\x05\x04\x01\x03\x05\x04\x04", // 𦟀
+ 0x267c1: "\x04\x01\x05\x02\x05\x03\x05\x02\x05\x01\x03\x05\x01\x01", // 𦟁
+ 0x267c2: "\x03\x05\x01\x01\x04\x03\x01\x02\x03\x04\x04\x05\x04", // 𦟂
+ 0x267c3: "\x03\x05\x01\x01\x05\x02\x01\x03\x04\x03\x01\x01\x01\x02", // 𦟃
+ 0x267c4: "\x03\x05\x01\x01\x05\x04\x05\x04\x05\x04\x01\x02\x03\x04", // 𦟄
+ 0x267c5: "\x03\x05\x01\x01\x05\x04\x05\x04\x05\x04\x01\x02\x03\x04", // 𦟅
+ 0x267c6: "\x01\x02\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01", // 𦟆
+ 0x267c7: "\x03\x05\x01\x01\x03\x01\x02\x02\x01\x01\x03\x05\x03\x04", // 𦟇
+ 0x267c8: "\x03\x05\x01\x01\x04\x04\x05\x01\x01\x01\x02\x02\x05\x01", // 𦟈
+ 0x267c9: "\x03\x05\x01\x01\x04\x01\x03\x04\x01\x01\x02\x02\x01\x01", // 𦟉
+ 0x267ca: "\x03\x05\x01\x01\x01\x02\x05\x03\x05\x01\x01\x05\x01\x05", // 𦟊
+ 0x267cb: "\x03\x05\x01\x01\x03\x02\x04\x01\x04\x03\x01\x02\x05\x01", // 𦟋
+ 0x267cc: "\x03\x05\x01\x01\x05\x01\x03\x01\x02\x02\x01\x05\x03\x04", // 𦟌
+ 0x267cd: "\x03\x05\x01\x01\x01\x02\x02\x04\x01\x05\x03\x03\x04", // 𦟍
+ 0x267ce: "\x04\x03\x01\x01\x01\x03\x01\x02\x01\x02\x05\x03\x04\x03\x04", // 𦟎
+ 0x267cf: "\x03\x05\x01\x01\x04\x01\x03\x01\x02\x05\x01\x01\x01\x02", // 𦟏
+ 0x267d0: "\x03\x05\x01\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𦟐
+ 0x267d1: "\x03\x05\x01\x01\x03\x02\x01\x03\x04\x01\x02\x05\x01\x02", // 𦟑
+ 0x267d2: "\x01\x05\x02\x05\x03\x05\x01\x01\x03\x05\x01\x03\x05\x05", // 𦟒
+ 0x267d3: "\x03\x05\x01\x01\x05\x01\x02\x05\x04\x02\x05\x01\x01", // 𦟓
+ 0x267d4: "\x03\x05\x04\x01\x01\x05\x04\x01\x02\x01\x03\x05\x04", // 𦟔
+ 0x267d5: "\x03\x05\x04\x01\x01\x03\x03\x05\x01\x05\x02\x05\x01\x01", // 𦟕
+ 0x267d6: "\x02\x05\x03\x04\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𦟖
+ 0x267d7: "\x03\x05\x01\x01\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𦟗
+ 0x267d8: "\x03\x05\x04\x01\x04\x04\x05\x01\x02\x05\x01\x02\x01\x03\x04", // 𦟘
+ 0x267d9: "\x03\x05\x04\x01\x01\x03\x05\x03\x03\x03\x04\x04\x04\x04\x04", // 𦟙
+ 0x267da: "\x03\x05\x01\x01\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x04\x03\x01", // 𦟚
+ 0x267db: "\x03\x05\x04\x01\x04\x01\x03\x05\x01\x01\x03\x05\x01\x01\x02", // 𦟛
+ 0x267dc: "\x03\x05\x04\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𦟜
+ 0x267dd: "\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x03\x05\x04\x01", // 𦟝
+ 0x267de: "\x03\x05\x01\x01\x03\x02\x05\x01\x01\x01\x04\x01\x03\x04\x01\x02", // 𦟞
+ 0x267df: "\x03\x05\x04\x01\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05", // 𦟟
+ 0x267e0: "\x03\x05\x04\x01\x01\x03\x02\x01\x01\x02\x03\x04\x05\x03\x04", // 𦟠
+ 0x267e1: "\x03\x02\x05\x01\x01\x01\x05\x01\x05\x03\x05\x02\x05\x03\x04\x03\x04", // 𦟡
+ 0x267e2: "\x03\x05\x04\x01\x01\x03\x05\x03\x03\x03\x04\x02\x05\x01\x01", // 𦟢
+ 0x267e3: "\x03\x05\x04\x01\x03\x02\x05\x03\x04\x01\x03\x05\x03\x05\x04", // 𦟣
+ 0x267e4: "\x03\x05\x04\x01\x04\x03\x01\x01\x01\x03\x05\x02\x01\x01", // 𦟤
+ 0x267e5: "\x03\x05\x04\x01\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 𦟥
+ 0x267e6: "\x02\x05\x03\x04\x03\x04\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x04", // 𦟦
+ 0x267e7: "\x03\x05\x04\x01\x01\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 𦟧
+ 0x267e8: "\x03\x05\x01\x01\x04\x01\x03\x04\x05\x02\x03\x04\x03\x05\x04", // 𦟨
+ 0x267e9: "\x03\x05\x04\x01\x01\x03\x04\x03\x02\x01\x01\x05\x01\x01\x05", // 𦟩
+ 0x267ea: "\x03\x05\x04\x01\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 𦟪
+ 0x267eb: "\x03\x05\x04\x01\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𦟫
+ 0x267ec: "\x03\x05\x04\x01\x01\x02\x03\x04\x03\x04\x03\x04\x03\x03\x03", // 𦟬
+ 0x267ed: "\x03\x05\x04\x01\x05\x03\x05\x01\x01\x05\x01\x01\x05\x01\x01", // 𦟭
+ 0x267ee: "\x03\x05\x01\x01\x01\x02\x02\x01\x03\x04\x04\x01\x03\x02", // 𦟮
+ 0x267ef: "\x03\x05\x04\x01\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x03", // 𦟯
+ 0x267f0: "\x03\x05\x04\x01\x02\x01\x05\x03\x01\x05\x02\x05\x01\x01\x01", // 𦟰
+ 0x267f1: "\x03\x05\x01\x01\x04\x04\x05\x03\x02\x01\x03\x02\x05\x01\x01", // 𦟱
+ 0x267f2: "\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01\x01", // 𦟲
+ 0x267f3: "\x03\x05\x04\x01\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 𦟳
+ 0x267f4: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x01\x02\x05\x03\x04\x03\x04", // 𦟴
+ 0x267f5: "\x03\x05\x01\x01\x01\x02\x02\x03\x04\x04\x03\x05\x02\x01", // 𦟵
+ 0x267f6: "\x03\x05\x01\x01\x04\x03\x01\x02\x03\x04\x02\x01\x02\x05\x01", // 𦟶
+ 0x267f7: "\x03\x05\x01\x01\x01\x02\x01\x04\x01\x04\x03\x01\x02\x05\x01", // 𦟷
+ 0x267f8: "\x03\x05\x01\x01\x04\x04\x01\x04\x01\x03\x02\x03\x05\x04\x04", // 𦟸
+ 0x267f9: "\x03\x05\x01\x01\x02\x05\x02\x03\x04\x01\x02\x05\x01\x02\x02", // 𦟹
+ 0x267fa: "\x03\x05\x01\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01\x02\x04", // 𦟺
+ 0x267fb: "\x03\x05\x01\x01\x01\x01\x02\x02\x01\x03\x02\x05\x01\x05", // 𦟻
+ 0x267fc: "\x03\x05\x01\x01\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x03", // 𦟼
+ 0x267fd: "\x03\x05\x01\x01\x04\x04\x05\x04\x05\x04\x03\x04\x02\x05\x02", // 𦟽
+ 0x267fe: "\x03\x05\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 𦟾
+ 0x267ff: "\x03\x05\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𦟿
+ 0x26800: "\x03\x05\x04\x01\x02\x04\x03\x01\x02\x05\x02\x03\x03\x01\x02", // 𦠀
+ 0x26801: "\x03\x05\x04\x01\x04\x03\x03\x04\x01\x02\x05\x01\x02\x03\x04", // 𦠁
+ 0x26802: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x02\x05\x03\x04\x03\x04", // 𦠂
+ 0x26803: "\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x03\x05\x04\x01", // 𦠃
+ 0x26804: "\x03\x05\x04\x01\x05\x05\x04\x05\x05\x04\x01\x03\x04\x05\x03\x04", // 𦠄
+ 0x26805: "\x03\x05\x04\x01\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04", // 𦠅
+ 0x26806: "\x03\x05\x04\x01\x05\x01\x05\x05\x01\x05\x01\x02\x02\x01\x03\x04", // 𦠆
+ 0x26807: "\x03\x05\x04\x01\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𦠇
+ 0x26808: "\x03\x05\x04\x01\x05\x04\x05\x02\x03\x02\x05\x03\x05\x02\x05\x01", // 𦠈
+ 0x26809: "\x03\x05\x04\x01\x01\x02\x01\x04\x05\x01\x02\x05\x01\x04\x03\x01", // 𦠉
+ 0x2680a: "\x03\x05\x04\x01\x02\x01\x02\x01\x02\x01\x02\x01\x02\x01\x02\x01", // 𦠊
+ 0x2680b: "\x05\x04\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x03\x05\x04\x01", // 𦠋
+ 0x2680c: "\x03\x05\x04\x01\x01\x03\x02\x05\x02\x02\x01\x03\x02\x05\x02\x02", // 𦠌
+ 0x2680d: "\x03\x05\x04\x01\x02\x05\x01\x02\x05\x01\x04\x03\x01\x05\x02\x03", // 𦠍
+ 0x2680e: "\x03\x05\x04\x01\x01\x03\x04\x04\x01\x03\x04\x04\x01\x03\x04\x04", // 𦠎
+ 0x2680f: "\x03\x05\x04\x01\x01\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01", // 𦠏
+ 0x26810: "\x03\x05\x04\x01\x01\x02\x02\x01\x03\x05\x04\x01\x03\x01\x03\x04", // 𦠐
+ 0x26811: "\x03\x05\x04\x01\x01\x03\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04", // 𦠑
+ 0x26812: "\x01\x03\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04\x03\x05\x04\x01", // 𦠒
+ 0x26813: "\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01", // 𦠓
+ 0x26814: "\x03\x05\x04\x01\x02\x05\x02\x01\x01\x02\x03\x04\x03\x03\x01\x02", // 𦠔
+ 0x26815: "\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x02\x05\x01\x02\x05\x03\x04\x03\x04", // 𦠕
+ 0x26816: "\x03\x05\x04\x01\x01\x02\x05\x01\x02\x04\x05\x03\x05\x05\x01\x05", // 𦠖
+ 0x26817: "\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03\x05\x04\x01", // 𦠗
+ 0x26818: "\x04\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04\x03\x04\x02\x03\x04", // 𦠘
+ 0x26819: "\x03\x05\x04\x01\x02\x05\x02\x05\x02\x01\x03\x02\x05\x01\x01\x01", // 𦠙
+ 0x2681a: "\x03\x05\x04\x01\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 𦠚
+ 0x2681b: "\x03\x05\x01\x01\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01", // 𦠛
+ 0x2681c: "\x03\x05\x04\x01\x01\x02\x01\x02\x01\x01\x02\x01\x02\x01\x01\x02", // 𦠜
+ 0x2681d: "\x03\x05\x01\x01\x01\x02\x01\x05\x02\x05\x01\x02\x05\x01\x02\x01", // 𦠝
+ 0x2681e: "\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04\x03\x05\x04\x01", // 𦠞
+ 0x2681f: "\x03\x05\x04\x01\x02\x05\x02\x01\x01\x02\x05\x02\x03\x03\x01\x02", // 𦠟
+ 0x26820: "\x03\x05\x04\x01\x02\x05\x02\x01\x01\x05\x02\x03\x03\x03\x01\x02", // 𦠠
+ 0x26821: "\x03\x04\x03\x04\x03\x04\x03\x04\x02\x05\x01\x01\x02\x05\x01\x01", // 𦠡
+ 0x26822: "\x03\x05\x01\x01\x04\x01\x02\x05\x01\x02\x03\x04\x01\x03\x05\x04", // 𦠢
+ 0x26823: "\x03\x05\x01\x01\x04\x01\x05\x04\x02\x05\x01\x01\x03\x01\x03\x04", // 𦠣
+ 0x26824: "\x03\x05\x04\x01\x04\x05\x04\x04\x04\x05\x04\x04\x04\x05\x04\x04", // 𦠤
+ 0x26825: "\x03\x05\x04\x01\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x01\x01", // 𦠥
+ 0x26826: "\x03\x05\x01\x01\x05\x02\x01\x02\x01\x04\x01\x05\x04\x03\x02\x05", // 𦠦
+ 0x26827: "\x03\x05\x01\x01\x05\x04\x01\x05\x04\x01\x03\x04\x02\x04\x04\x04", // 𦠧
+ 0x26828: "\x03\x05\x04\x01\x05\x04\x05\x04\x05\x04\x03\x04\x02\x04\x04\x04", // 𦠨
+ 0x26829: "\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x05\x03\x04\x03\x04", // 𦠩
+ 0x2682a: "\x03\x04\x03\x04\x03\x04\x03\x04\x02\x05\x01\x01\x02\x05\x03\x04\x03\x04", // 𦠪
+ 0x2682b: "\x04\x05\x02\x03\x04\x05\x03\x03\x01\x01\x02\x01\x02\x05\x03\x04\x03\x04", // 𦠫
+ 0x2682c: "\x05\x04\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x02\x05\x03\x04\x03\x04", // 𦠬
+ 0x2682d: "\x03\x05\x01\x01\x01\x02\x02\x01\x01\x01\x03\x04\x03\x03\x01\x02", // 𦠭
+ 0x2682e: "\x01\x05\x04\x01\x02\x01\x01\x05\x04\x01\x02\x01\x02\x05\x01\x01", // 𦠮
+ 0x2682f: "\x03\x05\x01\x01\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04", // 𦠯
+ 0x26830: "\x04\x05\x01\x03\x02\x05\x01\x01\x02\x01\x02\x05\x01\x01\x01\x02", // 𦠰
+ 0x26831: "\x03\x05\x01\x01\x03\x01\x04\x03\x01\x04\x03\x02\x01\x05\x03\x04", // 𦠱
+ 0x26832: "\x03\x05\x01\x01\x01\x02\x01\x05\x05\x01\x02\x01\x04\x05\x04\x04", // 𦠲
+ 0x26833: "\x03\x05\x01\x01\x05\x01\x03\x05\x02\x01\x05\x02\x01\x05\x02\x01", // 𦠳
+ 0x26834: "\x03\x05\x01\x01\x01\x01\x02\x01\x01\x01\x02\x01\x03\x04\x04\x05", // 𦠴
+ 0x26835: "\x03\x05\x01\x01\x05\x02\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 𦠵
+ 0x26836: "\x01\x02\x01\x02\x01\x03\x04\x05\x03\x02\x05\x01\x02\x05\x03\x04\x03\x04", // 𦠶
+ 0x26837: "\x03\x02\x05\x03\x03\x04\x01\x05\x02\x01\x03\x04\x03\x05\x04\x01", // 𦠷
+ 0x26838: "\x03\x05\x04\x01\x04\x01\x03\x05\x04\x03\x05\x04\x03\x05\x03\x04", // 𦠸
+ 0x26839: "\x03\x05\x04\x01\x04\x03\x03\x04\x03\x05\x04\x01\x04\x03\x03\x04", // 𦠹
+ 0x2683a: "\x03\x05\x04\x01\x04\x03\x03\x04\x02\x05\x01\x01\x01\x05\x01\x05", // 𦠺
+ 0x2683b: "\x03\x05\x04\x01\x05\x01\x05\x03\x02\x02\x05\x01\x01\x01\x03\x04", // 𦠻
+ 0x2683c: "\x03\x05\x04\x01\x05\x05\x05\x02\x05\x03\x04\x03\x05\x01\x01\x02", // 𦠼
+ 0x2683d: "\x03\x05\x01\x01\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04", // 𦠽
+ 0x2683e: "\x03\x05\x04\x01\x02\x05\x01\x01\x02\x02\x01\x01\x01\x01\x05\x03\x04", // 𦠾
+ 0x2683f: "\x03\x05\x04\x01\x01\x01\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𦠿
+ 0x26840: "\x03\x05\x04\x01\x01\x03\x04\x03\x04\x03\x04\x02\x04\x01\x03\x04", // 𦡀
+ 0x26841: "\x03\x05\x04\x01\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x01\x02\x01", // 𦡁
+ 0x26842: "\x03\x05\x04\x01\x01\x02\x01\x02\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𦡂
+ 0x26843: "\x03\x05\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x01\x01", // 𦡃
+ 0x26844: "\x03\x05\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01\x05\x02", // 𦡄
+ 0x26845: "\x03\x05\x04\x01\x01\x01\x03\x02\x02\x02\x01\x02\x05\x03\x05\x01\x01", // 𦡅
+ 0x26846: "\x03\x05\x04\x01\x04\x04\x05\x03\x05\x05\x01\x03\x05\x02\x02\x05\x02", // 𦡆
+ 0x26847: "\x02\x05\x03\x04\x03\x04\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 𦡇
+ 0x26848: "\x04\x01\x05\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x03\x04\x03\x04", // 𦡈
+ 0x26849: "\x02\x05\x01\x01\x03\x05\x01\x01\x02\x05\x02\x02\x01\x03\x05\x01\x01", // 𦡉
+ 0x2684a: "\x03\x05\x01\x01\x02\x05\x01\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01", // 𦡊
+ 0x2684b: "\x03\x05\x01\x01\x01\x05\x02\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𦡋
+ 0x2684c: "\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x04\x05\x03\x05\x04\x01", // 𦡌
+ 0x2684d: "\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x03\x05\x04\x01", // 𦡍
+ 0x2684e: "\x03\x05\x04\x01\x02\x04\x03\x01\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𦡎
+ 0x2684f: "\x03\x05\x04\x01\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x01\x05", // 𦡏
+ 0x26850: "\x03\x05\x04\x01\x01\x02\x01\x02\x05\x01\x01\x01\x01\x02\x05\x04", // 𦡐
+ 0x26851: "\x03\x05\x04\x01\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x03\x05", // 𦡑
+ 0x26852: "\x03\x03\x02\x02\x05\x02\x01\x03\x05\x03\x01\x03\x04\x03\x05\x04\x01", // 𦡒
+ 0x26853: "\x03\x05\x04\x01\x05\x05\x05\x02\x05\x02\x02\x01\x03\x05\x01\x01\x02", // 𦡓
+ 0x26854: "\x03\x05\x04\x01\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05", // 𦡔
+ 0x26855: "\x03\x05\x04\x01\x01\x04\x05\x02\x04\x01\x03\x04\x03\x05\x05\x01\x05", // 𦡕
+ 0x26856: "\x02\x01\x02\x01\x01\x03\x01\x02\x03\x03\x05\x03\x04\x03\x05\x01\x01", // 𦡖
+ 0x26857: "\x03\x05\x04\x01\x03\x01\x02\x03\x04\x04\x03\x03\x04\x04\x05\x04\x04", // 𦡗
+ 0x26858: "\x03\x05\x04\x01\x03\x01\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x01", // 𦡘
+ 0x26859: "\x03\x05\x01\x01\x03\x04\x04\x04\x04\x04\x05\x02\x03\x04\x03\x05\x04", // 𦡙
+ 0x2685a: "\x04\x01\x05\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x01\x01", // 𦡚
+ 0x2685b: "\x02\x05\x03\x04\x03\x04\x01\x02\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x04", // 𦡛
+ 0x2685c: "\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x02\x05\x03\x04\x03\x04", // 𦡜
+ 0x2685d: "\x02\x05\x03\x04\x03\x04\x03\x04\x04\x03\x04\x05\x04\x05\x04\x04\x03\x05\x04", // 𦡝
+ 0x2685e: "\x03\x05\x01\x01\x01\x02\x03\x04\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 𦡞
+ 0x2685f: "\x02\x01\x01\x03\x05\x02\x05\x01\x01\x01\x02\x01\x03\x04\x03\x05\x04", // 𦡟
+ 0x26860: "\x01\x01\x02\x01\x01\x03\x02\x04\x01\x03\x04\x03\x04\x02\x05\x01\x01", // 𦡠
+ 0x26861: "\x03\x05\x01\x01\x01\x03\x02\x05\x01\x02\x05\x01\x01\x01\x01\x02\x04", // 𦡡
+ 0x26862: "\x03\x05\x01\x01\x01\x02\x02\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 𦡢
+ 0x26863: "\x03\x05\x01\x01\x04\x01\x02\x05\x02\x05\x01\x01\x03\x01\x02\x03\x04", // 𦡣
+ 0x26864: "\x03\x05\x01\x01\x04\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02", // 𦡤
+ 0x26865: "\x03\x05\x01\x01\x04\x04\x01\x05\x01\x05\x04\x01\x05\x01\x05\x04\x01", // 𦡥
+ 0x26866: "\x03\x05\x01\x01\x01\x02\x02\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𦡦
+ 0x26867: "\x03\x05\x01\x01\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x02\x03\x04", // 𦡧
+ 0x26868: "\x01\x02\x03\x05\x01\x02\x03\x05\x03\x05\x04\x01\x05\x03\x02\x05\x04", // 𦡨
+ 0x26869: "\x03\x05\x04\x01\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x05\x02", // 𦡩
+ 0x2686a: "\x03\x05\x04\x01\x03\x05\x04\x01\x05\x04\x01\x02\x05\x01\x04\x03\x01", // 𦡪
+ 0x2686b: "\x03\x05\x04\x01\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01\x05\x03\x04", // 𦡫
+ 0x2686c: "\x03\x05\x04\x01\x03\x04\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 𦡬
+ 0x2686d: "\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x04\x05\x02\x05\x03\x04\x03\x04", // 𦡭
+ 0x2686e: "\x03\x05\x01\x01\x04\x03\x01\x02\x02\x04\x03\x01\x02\x05\x01\x01", // 𦡮
+ 0x2686f: "\x03\x05\x01\x01\x01\x02\x01\x04\x03\x01\x01\x01\x02\x04\x05\x04", // 𦡯
+ 0x26870: "\x03\x05\x04\x01\x01\x02\x01\x02\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 𦡰
+ 0x26871: "\x03\x05\x04\x01\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𦡱
+ 0x26872: "\x03\x05\x04\x01\x04\x04\x05\x04\x05\x04\x04\x02\x05\x02\x02\x01\x01\x02", // 𦡲
+ 0x26873: "\x03\x05\x01\x01\x05\x05\x05\x02\x05\x03\x04\x03\x05\x02\x04\x04\x04\x04", // 𦡳
+ 0x26874: "\x03\x05\x04\x01\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 𦡴
+ 0x26875: "\x03\x05\x04\x01\x02\x05\x01\x03\x05\x03\x03\x03\x04\x01\x04\x05\x04\x04", // 𦡵
+ 0x26876: "\x03\x05\x04\x01\x01\x02\x05\x01\x02\x05\x03\x01\x01\x02\x05\x02\x02\x01", // 𦡶
+ 0x26877: "\x03\x05\x04\x01\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x01\x02\x04", // 𦡷
+ 0x26878: "\x03\x05\x04\x01\x01\x05\x03\x01\x01\x03\x04\x05\x04\x05\x02\x01\x03\x04", // 𦡸
+ 0x26879: "\x03\x05\x04\x01\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x04\x04\x04\x04", // 𦡹
+ 0x2687a: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x03\x05\x04\x01", // 𦡺
+ 0x2687b: "\x03\x05\x04\x01\x04\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05", // 𦡻
+ 0x2687c: "\x01\x05\x03\x01\x01\x03\x04\x05\x04\x05\x02\x01\x03\x04\x02\x05\x03\x04\x03\x04", // 𦡼
+ 0x2687d: "\x03\x05\x04\x01\x03\x05\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04", // 𦡽
+ 0x2687e: "\x01\x02\x02\x01\x01\x01\x03\x04\x05\x02\x05\x01\x02\x01\x03\x05\x04\x01", // 𦡾
+ 0x2687f: "\x03\x05\x04\x01\x05\x01\x01\x01\x01\x02\x02\x03\x04\x02\x05\x02\x02\x01", // 𦡿
+ 0x26880: "\x03\x05\x04\x01\x01\x02\x01\x02\x05\x01\x04\x05\x01\x05\x04\x01\x02\x01", // 𦢀
+ 0x26881: "\x03\x05\x04\x01\x01\x02\x01\x02\x03\x04\x01\x05\x01\x01\x03\x02\x05\x01", // 𦢁
+ 0x26882: "\x03\x05\x04\x01\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x01\x03\x04", // 𦢂
+ 0x26883: "\x03\x05\x04\x01\x01\x02\x01\x02\x01\x02\x01\x04\x01\x01\x01\x02\x05\x01", // 𦢃
+ 0x26884: "\x03\x05\x01\x01\x02\x01\x01\x01\x02\x01\x01\x01\x04\x01\x03\x05\x03\x04", // 𦢄
+ 0x26885: "\x03\x05\x04\x01\x04\x03\x03\x04\x05\x03\x05\x04\x02\x05\x01\x02\x01\x04", // 𦢅
+ 0x26886: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x02\x05\x03\x04\x03\x04", // 𦢆
+ 0x26887: "\x03\x05\x03\x01\x01\x03\x04\x05\x04\x05\x02\x01\x03\x04\x02\x05\x01\x01", // 𦢇
+ 0x26888: "\x03\x05\x04\x01\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𦢈
+ 0x26889: "\x03\x05\x01\x01\x04\x04\x05\x04\x05\x04\x03\x04\x02\x05\x01\x02\x01\x04", // 𦢉
+ 0x2688a: "\x03\x05\x04\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x04\x02\x04\x01\x03\x04", // 𦢊
+ 0x2688b: "\x03\x05\x01\x01\x04\x03\x01\x01\x02\x01\x04\x04\x04\x04\x01\x01\x01\x03\x04", // 𦢋
+ 0x2688c: "\x03\x05\x04\x01\x01\x02\x01\x02\x05\x03\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𦢌
+ 0x2688d: "\x03\x05\x04\x01\x05\x05\x04\x05\x05\x04\x01\x02\x05\x01\x02\x01\x05\x03\x04", // 𦢍
+ 0x2688e: "\x03\x05\x04\x01\x04\x01\x03\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04", // 𦢎
+ 0x2688f: "\x03\x05\x04\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01", // 𦢏
+ 0x26890: "\x03\x05\x04\x01\x01\x02\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04\x05\x04", // 𦢐
+ 0x26891: "\x03\x05\x04\x01\x01\x03\x02\x01\x01\x02\x03\x04\x05\x03\x04\x04\x05\x04", // 𦢑
+ 0x26892: "\x03\x05\x01\x01\x01\x02\x03\x04\x03\x04\x04\x05\x02\x05\x01\x01\x01\x03\x04", // 𦢒
+ 0x26893: "\x03\x05\x01\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x01", // 𦢓
+ 0x26894: "\x03\x05\x04\x01\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 𦢔
+ 0x26895: "\x03\x05\x04\x01\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x03\x05\x04\x01", // 𦢕
+ 0x26896: "\x01\x03\x05\x01\x03\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01\x03\x05\x04\x01", // 𦢖
+ 0x26897: "\x03\x05\x04\x01\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x01\x02\x03\x05\x04", // 𦢗
+ 0x26898: "\x03\x05\x04\x01\x01\x02\x01\x02\x04\x03\x01\x01\x03\x04\x02\x04\x01\x03\x04", // 𦢘
+ 0x26899: "\x03\x05\x04\x01\x01\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 𦢙
+ 0x2689a: "\x03\x05\x04\x01\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x03\x05\x04\x01", // 𦢚
+ 0x2689b: "\x03\x05\x04\x01\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 𦢛
+ 0x2689c: "\x03\x05\x04\x01\x02\x05\x02\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𦢜
+ 0x2689d: "\x03\x05\x04\x01\x04\x01\x03\x04\x01\x03\x02\x01\x01\x05\x01\x01\x02\x05\x04", // 𦢝
+ 0x2689e: "\x03\x05\x01\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01", // 𦢞
+ 0x2689f: "\x03\x05\x01\x01\x01\x02\x01\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 𦢟
+ 0x268a0: "\x03\x05\x01\x01\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𦢠
+ 0x268a1: "\x05\x01\x03\x01\x05\x04\x01\x02\x01\x03\x04\x03\x04\x03\x04\x02\x05\x01\x01", // 𦢡
+ 0x268a2: "\x03\x04\x03\x04\x03\x04\x02\x05\x01\x01\x05\x01\x03\x01\x05\x04\x01\x02\x01", // 𦢢
+ 0x268a3: "\x03\x05\x01\x01\x03\x04\x04\x03\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𦢣
+ 0x268a4: "\x03\x05\x04\x01\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𦢤
+ 0x268a5: "\x03\x05\x04\x01\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x02\x05", // 𦢥
+ 0x268a6: "\x03\x05\x04\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x02\x03\x04", // 𦢦
+ 0x268a7: "\x03\x05\x04\x01\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x02\x05\x01\x01\x01", // 𦢧
+ 0x268a8: "\x03\x05\x04\x01\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x03\x02\x01\x05\x01\x01", // 𦢨
+ 0x268a9: "\x03\x05\x04\x01\x01\x02\x01\x02\x05\x01\x01\x02\x03\x02\x01\x01\x05\x05\x02\x01\x02", // 𦢩
+ 0x268aa: "\x03\x05\x04\x01\x05\x02\x01\x03\x01\x02\x01\x03\x05\x04\x01\x04\x05\x04", // 𦢪
+ 0x268ab: "\x03\x05\x04\x01\x04\x01\x04\x03\x01\x02\x05\x04\x01\x01\x05\x01\x05\x01\x01\x01", // 𦢫
+ 0x268ac: "\x03\x05\x04\x01\x01\x02\x01\x02\x04\x05\x04\x04\x04\x05\x04\x04\x04\x05\x04\x04", // 𦢬
+ 0x268ad: "\x03\x05\x04\x01\x01\x02\x05\x01\x02\x04\x05\x03\x05\x05\x01\x05\x01\x02\x03\x04", // 𦢭
+ 0x268ae: "\x03\x05\x01\x01\x02\x05\x01\x02\x05\x01\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𦢮
+ 0x268af: "\x03\x05\x04\x01\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x01\x03\x04", // 𦢯
+ 0x268b0: "\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x01\x03\x04\x02\x05\x03\x04\x03\x04", // 𦢰
+ 0x268b1: "\x05\x01\x01\x03\x02\x05\x01\x03\x05\x01\x01\x04\x03\x01\x01\x01\x02\x03\x05\x04", // 𦢱
+ 0x268b2: "\x03\x05\x01\x01\x01\x02\x01\x02\x03\x01\x01\x02\x02\x02\x02\x01\x04\x04\x04\x04", // 𦢲
+ 0x268b3: "\x04\x05\x01\x03\x02\x05\x01\x01\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04", // 𦢳
+ 0x268b4: "\x03\x05\x01\x01\x04\x03\x02\x05\x01\x03\x05\x04\x04\x05\x03\x04\x01\x03\x04\x04", // 𦢴
+ 0x268b5: "\x03\x05\x01\x01\x04\x01\x03\x04\x01\x02\x05\x02\x05\x01\x01\x03\x01\x02\x03\x04", // 𦢵
+ 0x268b6: "\x03\x05\x01\x01\x03\x01\x02\x03\x04\x03\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𦢶
+ 0x268b7: "\x03\x05\x01\x01\x02\x05\x01\x02\x05\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𦢷
+ 0x268b8: "\x03\x05\x04\x01\x01\x02\x01\x02\x04\x04\x01\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 𦢸
+ 0x268b9: "\x03\x05\x04\x01\x04\x03\x01\x01\x02\x01\x04\x04\x04\x04\x01\x01\x02\x01\x01\x03\x04", // 𦢹
+ 0x268ba: "\x03\x05\x04\x01\x02\x05\x02\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 𦢺
+ 0x268bb: "\x03\x04\x03\x04\x04\x01\x03\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x03\x04\x03\x04", // 𦢻
+ 0x268bc: "\x04\x01\x05\x02\x05\x01\x03\x05\x04\x01\x02\x05\x01\x01\x01\x03\x04\x05\x01\x01\x03", // 𦢼
+ 0x268bd: "\x04\x04\x05\x03\x01\x02\x01\x02\x05\x01\x03\x04\x03\x04\x02\x05\x01\x02\x05\x03\x04\x03\x04", // 𦢽
+ 0x268be: "\x03\x05\x01\x01\x02\x05\x02\x03\x05\x03\x01\x01\x03\x04\x05\x04\x05\x02\x01\x03\x04", // 𦢾
+ 0x268bf: "\x03\x05\x04\x01\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x03\x05\x02\x05\x01", // 𦢿
+ 0x268c0: "\x03\x05\x04\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01", // 𦣀
+ 0x268c1: "\x03\x05\x04\x01\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x01\x04\x03\x03\x04", // 𦣁
+ 0x268c2: "\x03\x05\x01\x01\x02\x01\x01\x01\x02\x01\x01\x01\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 𦣂
+ 0x268c3: "\x03\x05\x01\x01\x02\x05\x01\x01\x05\x02\x02\x05\x02\x01\x03\x04\x04\x03\x01\x02\x03\x04", // 𦣃
+ 0x268c4: "\x04\x01\x05\x02\x05\x01\x03\x05\x01\x01\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x04", // 𦣄
+ 0x268c5: "\x03\x05\x04\x01\x03\x04\x04\x03\x02\x05\x02\x02\x01\x05\x01\x01\x05\x04\x01\x02\x04", // 𦣅
+ 0x268c6: "\x03\x05\x04\x01\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x03\x01\x01\x01\x02\x01\x01\x01", // 𦣆
+ 0x268c7: "\x03\x05\x04\x01\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𦣇
+ 0x268c8: "\x03\x05\x04\x01\x03\x01\x04\x03\x01\x04\x04\x04\x01\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 𦣈
+ 0x268c9: "\x04\x01\x05\x02\x05\x01\x03\x05\x04\x01\x03\x02\x01\x01\x05\x01\x01\x02\x05\x04\x03\x05\x04", // 𦣉
+ 0x268ca: "\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x03\x05\x04\x01", // 𦣊
+ 0x268cb: "\x03\x05\x04\x01\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04", // 𦣋
+ 0x268cc: "\x03\x05\x04\x01\x01\x01\x02\x02\x01\x01\x02\x02\x01\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04", // 𦣌
+ 0x268cd: "\x03\x05\x04\x01\x04\x03\x01\x01\x02\x01\x04\x04\x04\x04\x04\x03\x01\x01\x02\x01\x01\x03\x04", // 𦣍
+ 0x268ce: "\x03\x05\x01\x01\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𦣎
+ 0x268cf: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x03\x05\x04\x01", // 𦣏
+ 0x268d0: "\x03\x05\x04\x01\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04", // 𦣐
+ 0x268d1: "\x03\x05\x04\x01\x01\x02\x02\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x02\x03\x04", // 𦣑
+ 0x268d2: "\x03\x05\x04\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𦣒
+ 0x268d3: "\x01\x04\x03\x01\x02\x03\x04\x03\x05\x01\x02\x05\x01\x04\x03\x01\x03\x05\x01\x01\x03\x05\x01\x01", // 𦣓
+ 0x268d4: "\x04\x01\x05\x04\x02\x05\x02\x02\x01\x03\x05\x01\x01\x02\x05\x01\x01\x01\x02\x03\x04\x03\x05\x04", // 𦣔
+ 0x268d5: "\x03\x05\x01\x01\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𦣕
+ 0x268d6: "\x04\x01\x05\x02\x05\x01\x03\x05\x04\x01\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01\x03\x05\x04", // 𦣖
+ 0x268d7: "\x03\x05\x01\x01\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 𦣗
+ 0x268d8: "\x03\x05\x01\x01\x01\x02\x05\x01\x02\x04\x05\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 𦣘
+ 0x268d9: "\x03\x05\x01\x01\x02\x05\x01\x01\x04\x04\x05\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 𦣙
+ 0x268da: "\x01\x02\x02\x01\x02\x05\x01\x03\x04\x04\x03\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x03\x04\x03\x04", // 𦣚
+ 0x268db: "\x03\x05\x04\x01\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x04\x05\x04\x04", // 𦣛
+ 0x268dc: "\x03\x05\x04\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x05\x02\x01\x03\x04\x01\x03\x04\x01\x03\x01\x01\x03\x04", // 𦣜
+ 0x268dd: "\x01\x05\x01\x02\x02\x05", // 𦣝
+ 0x268de: "\x01\x02\x02\x05\x01\x02\x05", // 𦣞
+ 0x268df: "\x02\x05\x02\x01\x02\x05\x01\x02\x05", // 𦣟
+ 0x268e0: "\x01\x02\x05\x01\x02\x05\x03\x01\x02\x01", // 𦣠
+ 0x268e1: "\x01\x02\x05\x01\x02\x05\x03\x05\x05\x03", // 𦣡
+ 0x268e2: "\x01\x02\x05\x01\x02\x05\x01\x02\x05\x02", // 𦣢
+ 0x268e3: "\x01\x02\x05\x01\x02\x05\x01\x05\x03\x04", // 𦣣
+ 0x268e4: "\x01\x02\x02\x05\x01\x02\x05\x05\x01\x02\x05\x01", // 𦣤
+ 0x268e5: "\x01\x02\x05\x01\x02\x05\x04\x05\x04\x03\x04", // 𦣥
+ 0x268e6: "\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05", // 𦣦
+ 0x268e7: "\x01\x02\x05\x01\x02\x05\x02\x05\x02\x02\x01\x01", // 𦣧
+ 0x268e8: "\x01\x02\x05\x01\x02\x05\x03\x02\x03\x01\x02\x01", // 𦣨
+ 0x268e9: "\x01\x02\x05\x01\x02\x05\x05\x02\x01\x05\x02\x01", // 𦣩
+ 0x268ea: "\x01\x02\x05\x01\x02\x05\x03\x01\x02\x05\x01\x02\x05\x02\x02\x01", // 𦣪
+ 0x268eb: "\x01\x02\x05\x01\x02\x05\x01\x02\x02\x01\x01\x01\x03\x04", // 𦣫
+ 0x268ec: "\x01\x02\x05\x01\x02\x05\x03\x01\x02\x05\x01\x05\x03\x01", // 𦣬
+ 0x268ed: "\x04\x01\x04\x03\x04\x05\x02\x05\x02\x01\x02\x05\x01\x02\x05", // 𦣭
+ 0x268ee: "\x05\x02\x01\x03\x03\x05\x04\x04\x01\x02\x05\x01\x02\x05", // 𦣮
+ 0x268ef: "\x01\x02\x05\x01\x02\x05\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 𦣯
+ 0x268f0: "\x01\x02\x02\x05\x04\x03\x01\x01\x02\x01\x02\x05\x01\x02\x05\x02\x04", // 𦣰
+ 0x268f1: "\x01\x02\x05\x01\x02\x05\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𦣱
+ 0x268f2: "\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x03\x02\x05\x01\x01\x03\x05", // 𦣲
+ 0x268f3: "\x01\x02\x05\x01\x02\x05\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 𦣳
+ 0x268f4: "\x01\x02\x05\x01\x02\x05\x05\x04\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 𦣴
+ 0x268f5: "\x01\x02\x05\x01\x02\x05\x03\x01\x01\x02\x02\x02\x02\x01\x05\x02\x05\x01\x01\x03\x05\x04", // 𦣵
+ 0x268f6: "\x01\x02\x05\x01\x02\x05\x01\x02\x02\x05\x01\x04\x05\x04\x04\x02\x05\x01\x01\x01\x03\x04", // 𦣶
+ 0x268f7: "\x01\x02\x05\x01\x02\x05\x03\x01\x03\x04\x03\x04\x03\x04\x01\x02\x02\x05\x01\x01\x02\x02\x05\x01\x01\x02\x02\x05\x01", // 𦣷
+ 0x268f8: "\x03\x05\x02\x05\x01\x01\x05\x01\x05\x03\x05\x02\x05\x01\x03\x05\x04\x01\x02\x05\x01\x02\x05\x03\x01\x01\x02\x05\x02\x02\x01", // 𦣸
+ 0x268f9: "\x03\x04\x01\x01\x05\x02", // 𦣹
+ 0x268fa: "\x03\x02\x05\x01\x01\x01\x02", // 𦣺
+ 0x268fb: "\x01\x03\x02\x05\x01\x01\x01", // 𦣻
+ 0x268fc: "\x01\x03\x04\x01\x01\x05\x02", // 𦣼
+ 0x268fd: "\x01\x03\x02\x05\x01\x01\x01\x05", // 𦣽
+ 0x268fe: "\x03\x02\x05\x01\x01\x01\x01\x03\x05", // 𦣾
+ 0x268ff: "\x03\x02\x05\x01\x01\x01\x03\x04\x02", // 𦣿
+ 0x26900: "\x03\x02\x05\x01\x01\x01\x01\x03\x04", // 𦤀
+ 0x26901: "\x03\x02\x05\x01\x01\x01\x01\x03\x05\x04", // 𦤁
+ 0x26902: "\x03\x02\x05\x01\x01\x01\x03\x05\x05\x04", // 𦤂
+ 0x26903: "\x03\x02\x05\x01\x01\x01\x01\x01\x02\x01", // 𦤃
+ 0x26904: "\x02\x01\x02\x01\x03\x02\x05\x01\x01\x01", // 𦤄
+ 0x26905: "\x01\x02\x01\x02\x03\x02\x05\x01\x01\x01", // 𦤅
+ 0x26906: "\x03\x02\x05\x01\x01\x01\x01\x01\x05\x04", // 𦤆
+ 0x26907: "\x03\x02\x05\x01\x01\x01\x03\x03\x05\x04", // 𦤇
+ 0x26908: "\x03\x02\x05\x01\x01\x01\x03\x04\x03\x04", // 𦤈
+ 0x26909: "\x03\x02\x05\x01\x01\x01\x03\x04\x05\x04", // 𦤉
+ 0x2690a: "\x03\x02\x05\x01\x01\x01\x05\x02\x01\x01", // 𦤊
+ 0x2690b: "\x05\x02\x01\x03\x03\x02\x05\x01\x01\x01", // 𦤋
+ 0x2690c: "\x03\x02\x05\x01\x01\x01\x05\x03\x03\x03\x04", // 𦤌
+ 0x2690d: "\x03\x02\x05\x01\x01\x01\x01\x01\x02\x05\x02", // 𦤍
+ 0x2690e: "\x03\x02\x05\x01\x01\x01\x01\x02\x03\x04\x01", // 𦤎
+ 0x2690f: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01", // 𦤏
+ 0x26910: "\x03\x02\x05\x01\x01\x01\x01\x01\x02\x04\x03\x01", // 𦤐
+ 0x26911: "\x03\x02\x05\x01\x01\x01\x01\x03\x04\x01\x01\x02", // 𦤑
+ 0x26912: "\x03\x02\x05\x01\x01\x01\x01\x03\x04\x03\x03\x03", // 𦤒
+ 0x26913: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x01\x05\x02", // 𦤓
+ 0x26914: "\x03\x02\x05\x01\x01\x01\x04\x04\x05\x04\x01\x05\x03", // 𦤔
+ 0x26915: "\x03\x02\x05\x01\x01\x01\x01\x03\x04\x04\x05\x01\x03\x04", // 𦤕
+ 0x26916: "\x03\x02\x05\x01\x01\x01\x04\x01\x03\x04\x03\x04\x01\x02", // 𦤖
+ 0x26917: "\x03\x02\x05\x01\x01\x01\x01\x03\x04\x01\x01\x02\x03\x04", // 𦤗
+ 0x26918: "\x04\x01\x02\x05\x01\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01", // 𦤘
+ 0x26919: "\x03\x02\x05\x01\x01\x01\x01\x02\x03\x04\x05\x02\x02\x05\x02", // 𦤙
+ 0x2691a: "\x03\x02\x05\x01\x01\x01\x01\x03\x04\x04\x01\x03\x03\x04\x04", // 𦤚
+ 0x2691b: "\x03\x02\x05\x01\x01\x01\x03\x01\x01\x03\x01\x01\x01\x01\x02", // 𦤛
+ 0x2691c: "\x03\x02\x05\x01\x01\x01\x03\x02\x02\x03\x05\x04\x03\x03\x03", // 𦤜
+ 0x2691d: "\x03\x02\x05\x01\x01\x01\x04\x04\x05\x03\x05\x02\x05\x02\x05", // 𦤝
+ 0x2691e: "\x03\x05\x01\x03\x05\x05\x03\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 𦤞
+ 0x2691f: "\x03\x02\x05\x03\x04\x01\x03\x02\x05\x01\x01\x01\x01\x03\x04\x04", // 𦤟
+ 0x26920: "\x03\x02\x05\x01\x01\x01\x01\x03\x04\x04\x01\x03\x04\x03\x03\x04", // 𦤠
+ 0x26921: "\x03\x02\x05\x01\x01\x01\x01\x03\x04\x04\x02\x05\x01\x05\x02\x01\x05", // 𦤡
+ 0x26922: "\x04\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04\x01\x02\x05\x01\x02\x02", // 𦤢
+ 0x26923: "\x01\x02\x04\x05\x05\x02\x01\x03\x02\x05\x01\x01\x01\x01\x03\x04\x04", // 𦤣
+ 0x26924: "\x03\x02\x05\x01\x01\x01\x04\x04\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 𦤤
+ 0x26925: "\x03\x02\x05\x01\x01\x01\x04\x03\x01\x01\x01\x03\x05\x04\x01\x05\x04\x01", // 𦤥
+ 0x26926: "\x03\x02\x05\x01\x01\x01\x01\x03\x04\x04\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 𦤦
+ 0x26927: "\x03\x02\x05\x01\x01\x01\x01\x03\x04\x04\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 𦤧
+ 0x26928: "\x03\x02\x05\x01\x01\x01\x01\x03\x04\x04\x02\x05\x03\x04\x01\x02\x05\x02\x02\x01", // 𦤨
+ 0x26929: "\x03\x02\x05\x01\x01\x01\x04\x01\x03\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 𦤩
+ 0x2692a: "\x02\x05\x01\x01\x03\x05\x03\x04\x05\x03\x02\x05\x01\x01\x01\x01\x03\x04\x04", // 𦤪
+ 0x2692b: "\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02", // 𦤫
+ 0x2692c: "\x03\x02\x05\x01\x01\x01\x01\x03\x04\x04\x04\x04\x05\x03\x01\x02\x01\x02\x05\x01", // 𦤬
+ 0x2692d: "\x03\x02\x05\x01\x01\x01\x01\x03\x04\x04\x01\x03\x05\x04\x02\x02\x04\x04\x04\x04", // 𦤭
+ 0x2692e: "\x05\x01\x01\x05\x03\x04\x04\x05\x04\x03\x02\x05\x01\x01\x01\x01\x03\x04\x04", // 𦤮
+ 0x2692f: "\x03\x02\x05\x01\x01\x01\x01\x03\x04\x04\x01\x02\x02\x01\x01\x01\x03\x04\x05\x05\x03", // 𦤯
+ 0x26930: "\x03\x02\x05\x01\x01\x01\x01\x03\x04\x04\x03\x04\x04\x05\x02\x05\x01\x01\x01\x03\x04", // 𦤰
+ 0x26931: "\x03\x02\x05\x01\x01\x01\x01\x03\x04\x04\x01\x02\x05\x01\x02\x05\x05\x04\x05\x05\x04\x02\x03\x04", // 𦤱
+ 0x26932: "\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x02\x05\x01\x01\x01\x03\x05\x03\x02\x05\x01\x01\x01", // 𦤲
+ 0x26933: "\x01\x05\x04\x01\x01\x02\x01", // 𦤳
+ 0x26934: "\x03\x04\x01\x05\x02\x01\x02\x01", // 𦤴
+ 0x26935: "\x05\x04\x01\x05\x04\x01\x02\x01", // 𦤵
+ 0x26936: "\x01\x05\x04\x01\x02\x01\x03\x05\x04", // 𦤶
+ 0x26937: "\x01\x05\x04\x01\x02\x01\x03\x05\x04", // 𦤷
+ 0x26938: "\x03\x02\x02\x01\x05\x04\x01\x02\x01", // 𦤸
+ 0x26939: "\x01\x05\x04\x01\x02\x01\x01\x03\x02\x04", // 𦤹
+ 0x2693a: "\x01\x05\x04\x01\x02\x01\x02\x01\x05\x04", // 𦤺
+ 0x2693b: "\x03\x03\x05\x04\x04\x01\x05\x04\x01\x02\x01", // 𦤻
+ 0x2693c: "\x01\x02\x01\x04\x05\x01\x05\x04\x01\x02\x01", // 𦤼
+ 0x2693d: "\x01\x05\x04\x01\x02\x01\x05\x01\x03\x03\x05", // 𦤽
+ 0x2693e: "\x01\x05\x04\x01\x02\x01\x02\x05\x01\x01\x01", // 𦤾
+ 0x2693f: "\x01\x01\x01\x02\x04\x05\x01\x05\x04\x01\x02\x01", // 𦤿
+ 0x26940: "\x01\x05\x04\x01\x02\x01\x05\x04\x01\x03\x05\x04", // 𦥀
+ 0x26941: "\x02\x05\x02\x02\x01\x01\x02\x01\x05\x04\x01\x02\x01", // 𦥁
+ 0x26942: "\x01\x02\x01\x01\x02\x01\x04\x05\x01\x05\x04\x01\x02\x01", // 𦥂
+ 0x26943: "\x01\x05\x04\x01\x02\x01\x02\x05\x01\x02\x02\x01\x03\x04", // 𦥃
+ 0x26944: "\x01\x02\x02\x01\x01\x01\x03\x04\x01\x05\x04\x01\x02\x01", // 𦥄
+ 0x26945: "\x01\x05\x04\x01\x02\x01\x05\x04\x02\x05\x01\x01\x02\x03\x04", // 𦥅
+ 0x26946: "\x01\x01\x01\x02\x05\x04\x03\x03\x04\x01\x05\x04\x01\x02\x01", // 𦥆
+ 0x26947: "\x01\x05\x04\x01\x02\x01\x01\x01\x01\x03\x04\x01\x01\x03\x04", // 𦥇
+ 0x26948: "\x04\x03\x01\x01\x01\x02\x01\x04\x05\x01\x05\x04\x01\x02\x01", // 𦥈
+ 0x26949: "\x04\x04\x05\x01\x05\x04\x01\x02\x01\x01\x02\x05\x01\x02\x05\x01", // 𦥉
+ 0x2694a: "\x05\x02\x01\x03\x05\x05\x04\x02\x03\x04\x01\x05\x04\x01\x02\x01", // 𦥊
+ 0x2694b: "\x02\x01\x03\x05\x04\x03\x04\x03\x03\x03\x01\x05\x04\x01\x02\x01", // 𦥋
+ 0x2694c: "\x01\x05\x04\x01\x02\x01\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01", // 𦥌
+ 0x2694d: "\x01\x05\x04\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x05\x04", // 𦥍
+ 0x2694e: "\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04\x01\x05\x04\x01\x02\x01", // 𦥎
+ 0x2694f: "\x01\x05\x04\x01\x02\x01\x01\x05\x04\x01\x02\x01\x01\x05\x04\x01\x02\x01", // 𦥏
+ 0x26950: "\x05\x04\x02\x05\x01\x01\x02\x03\x04\x01\x05\x04\x01\x02\x01\x03\x05\x04", // 𦥐
+ 0x26951: "\x03\x02\x01\x01\x05\x01\x01", // 𦥑
+ 0x26952: "\x02\x01\x01\x05\x01\x05\x02", // 𦥒
+ 0x26953: "\x03\x02\x05\x03\x04\x01", // 𦥓
+ 0x26954: "\x03\x02\x01\x01\x05\x01\x01\x02", // 𦥔
+ 0x26955: "\x03\x02\x01\x05\x01\x01\x02\x05", // 𦥕
+ 0x26956: "\x05\x02\x03\x02\x01\x05\x01\x01", // 𦥖
+ 0x26957: "\x03\x02\x01\x05\x01\x01\x02\x05\x02", // 𦥗
+ 0x26958: "\x03\x02\x01\x01\x05\x01\x01\x01\x02\x04", // 𦥘
+ 0x26959: "\x03\x02\x01\x01\x05\x01\x01\x05\x03", // 𦥙
+ 0x2695a: "\x03\x02\x01\x05\x01\x01\x02\x01\x05", // 𦥚
+ 0x2695b: "\x03\x01\x02\x03\x02\x01\x01\x05\x01\x01", // 𦥛
+ 0x2695c: "\x03\x05\x04\x03\x02\x01\x05\x01\x01", // 𦥜
+ 0x2695d: "\x03\x03\x02\x04\x03\x02\x01\x05\x01\x01", // 𦥝
+ 0x2695e: "\x03\x02\x01\x05\x01\x01\x03\x05\x03\x04", // 𦥞
+ 0x2695f: "\x03\x02\x01\x05\x01\x01\x04\x05\x03\x05", // 𦥟
+ 0x26960: "\x03\x02\x01\x05\x01\x01\x05\x03\x05\x04", // 𦥠
+ 0x26961: "\x03\x02\x01\x05\x01\x01\x01\x02\x05\x02", // 𦥡
+ 0x26962: "\x03\x05\x03\x02\x01\x01\x05\x01\x01\x01", // 𦥢
+ 0x26963: "\x03\x02\x01\x05\x01\x01\x01\x03\x05\x04", // 𦥣
+ 0x26964: "\x03\x02\x01\x05\x01\x01\x02\x01\x05\x03", // 𦥤
+ 0x26965: "\x03\x02\x01\x05\x01\x01\x01\x02\x05\x02\x03", // 𦥥
+ 0x26966: "\x03\x02\x01\x05\x01\x01\x01\x01\x02\x03\x04", // 𦥦
+ 0x26967: "\x03\x02\x01\x05\x01\x01\x04\x05\x04", // 𦥧
+ 0x26968: "\x03\x02\x01\x05\x01\x01\x04\x04\x05\x03\x05", // 𦥨
+ 0x26969: "\x03\x02\x01\x05\x01\x01\x01\x03\x05\x04\x01", // 𦥩
+ 0x2696a: "\x03\x02\x01\x05\x01\x01\x02\x05\x01\x02\x01", // 𦥪
+ 0x2696b: "\x03\x01\x02\x03\x02\x01\x01\x05\x01\x01\x01", // 𦥫
+ 0x2696c: "\x03\x02\x01\x05\x01\x01\x03\x01\x02\x01\x01", // 𦥬
+ 0x2696d: "\x04\x03\x01\x05\x02\x03\x03\x02\x01\x05\x01\x01", // 𦥭
+ 0x2696e: "\x03\x05\x05\x01\x02\x03\x02\x01\x01\x05\x01\x01", // 𦥮
+ 0x2696f: "\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05", // 𦥯
+ 0x26970: "\x03\x02\x01\x05\x01\x01\x02\x04\x03\x01\x03\x05", // 𦥰
+ 0x26971: "\x03\x02\x01\x05\x01\x01\x03\x05\x04\x02\x05\x02", // 𦥱
+ 0x26972: "\x03\x01\x02\x01\x02\x01\x03\x02\x01\x05\x01\x01", // 𦥲
+ 0x26973: "\x03\x02\x01\x01\x05\x01\x01\x03\x04\x02\x05\x01\x05\x01", // 𦥳
+ 0x26974: "\x03\x04\x01\x02\x01\x03\x04\x03\x02\x01\x05\x01\x01", // 𦥴
+ 0x26975: "\x03\x05\x03\x02\x01\x05\x01\x01\x03\x05\x02\x05\x01", // 𦥵
+ 0x26976: "\x03\x02\x01\x05\x01\x01\x02\x05\x01\x02\x01\x05\x03", // 𦥶
+ 0x26977: "\x03\x02\x01\x01\x02\x05\x01\x01\x05\x01\x01\x01\x03\x04", // 𦥷
+ 0x26978: "\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x02", // 𦥸
+ 0x26979: "\x03\x02\x01\x01\x05\x01\x01\x01\x03\x04\x03\x01\x01\x02", // 𦥹
+ 0x2697a: "\x03\x02\x05\x01\x04\x01\x03\x03\x02\x01\x01\x05\x01\x01", // 𦥺
+ 0x2697b: "\x03\x02\x01\x05\x01\x01\x03\x01\x02\x01\x02\x01\x02\x01\x01", // 𦥻
+ 0x2697c: "\x02\x05\x01\x02\x03\x02\x01\x01\x01\x02\x05\x01\x01\x03\x04", // 𦥼
+ 0x2697d: "\x03\x01\x01\x02\x05\x03\x05\x04\x03\x02\x01\x05\x01\x01", // 𦥽
+ 0x2697e: "\x04\x03\x01\x05\x02\x03\x03\x02\x01\x01\x05\x01\x01\x01", // 𦥾
+ 0x2697f: "\x02\x04\x03\x01\x03\x05\x03\x05\x03\x02\x01\x05\x01\x01", // 𦥿
+ 0x26980: "\x03\x02\x01\x01\x05\x01\x01\x03\x02\x01\x01\x05\x01\x01\x02", // 𦦀
+ 0x26981: "\x03\x02\x01\x01\x05\x01\x01\x03\x02\x01\x01\x05\x01\x01\x05", // 𦦁
+ 0x26982: "\x03\x02\x01\x01\x05\x01\x01\x03\x05\x03\x02\x01\x05\x01\x01", // 𦦂
+ 0x26983: "\x01\x05\x02\x05\x01\x01\x03\x02\x01\x05\x01\x01\x03\x05", // 𦦃
+ 0x26984: "\x02\x05\x01\x01\x02\x05\x01\x01\x03\x02\x01\x05\x01\x01", // 𦦄
+ 0x26985: "\x03\x02\x01\x05\x01\x01\x01\x01\x01\x03\x04\x01\x01\x03\x04", // 𦦅
+ 0x26986: "\x03\x02\x01\x05\x01\x01\x01\x03\x04\x05\x05\x04\x02\x03\x04", // 𦦆
+ 0x26987: "\x03\x02\x01\x05\x01\x01\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 𦦇
+ 0x26988: "\x03\x02\x01\x05\x01\x01\x01\x01\x02\x03\x02\x01\x05\x01\x01", // 𦦈
+ 0x26989: "\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x01\x03\x04", // 𦦉
+ 0x2698a: "\x03\x02\x01\x01\x05\x01\x01\x01\x02\x05\x01\x02\x01\x05\x03", // 𦦊
+ 0x2698b: "\x03\x02\x01\x05\x01\x01\x03\x04\x02\x05\x01\x01\x01\x02\x01", // 𦦋
+ 0x2698c: "\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01\x05\x03\x02\x05\x01", // 𦦌
+ 0x2698d: "\x03\x02\x01\x05\x01\x01\x01\x02\x05\x02\x01\x01\x01\x02\x01", // 𦦍
+ 0x2698e: "\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x05\x01\x05", // 𦦎
+ 0x2698f: "\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x05\x01\x01", // 𦦏
+ 0x26990: "\x03\x02\x01\x05\x01\x01\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 𦦐
+ 0x26991: "\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x03\x05\x05\x03", // 𦦑
+ 0x26992: "\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x05\x03\x05\x04", // 𦦒
+ 0x26993: "\x03\x04\x01\x02\x05\x03\x05\x04\x03\x02\x01\x01\x02\x01\x01\x01", // 𦦓
+ 0x26994: "\x03\x02\x01\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𦦔
+ 0x26995: "\x01\x01\x02\x03\x02\x01\x05\x01\x01\x01\x03\x04\x03\x04\x03\x04", // 𦦕
+ 0x26996: "\x05\x04\x05\x04\x05\x04\x05\x04\x05\x03\x03\x02\x01\x05\x01\x01", // 𦦖
+ 0x26997: "\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x01\x02\x03\x04", // 𦦗
+ 0x26998: "\x01\x01\x02\x03\x02\x01\x05\x01\x01\x01\x05\x01\x01\x02\x01\x03\x04", // 𦦘
+ 0x26999: "\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04\x01\x01\x01\x02", // 𦦙
+ 0x2699a: "\x03\x02\x01\x01\x05\x01\x01\x03\x04\x03\x02\x01\x01\x05\x01\x01\x03\x04", // 𦦚
+ 0x2699b: "\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x03\x02\x01\x02\x01", // 𦦛
+ 0x2699c: "\x01\x01\x01\x03\x04\x03\x02\x01\x05\x01\x01\x03\x01\x02\x01\x02\x01", // 𦦜
+ 0x2699d: "\x03\x02\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x03\x04\x01\x02", // 𦦝
+ 0x2699e: "\x03\x02\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01\x04\x05\x03\x05\x01\x02", // 𦦞
+ 0x2699f: "\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x01\x03\x04\x05\x03", // 𦦟
+ 0x269a0: "\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x02\x05\x01\x01\x02", // 𦦠
+ 0x269a1: "\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x04\x05\x03\x05\x01\x02", // 𦦡
+ 0x269a2: "\x02\x04\x03\x02\x05\x02\x05\x01\x03\x01\x03\x04\x03\x02\x01\x05\x01\x01", // 𦦢
+ 0x269a3: "\x03\x02\x01\x05\x01\x01\x02\x05\x01\x01\x01\x02\x02\x01\x01\x01\x05\x04", // 𦦣
+ 0x269a4: "\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x02\x05\x01\x02\x02\x01", // 𦦤
+ 0x269a5: "\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x04\x05\x01\x02\x02\x01\x01", // 𦦥
+ 0x269a6: "\x03\x02\x01\x05\x01\x01\x03\x02\x01\x05\x01\x01\x03\x04\x04\x01\x05", // 𦦦
+ 0x269a7: "\x03\x05\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x02\x05\x03\x05\x01\x02", // 𦦧
+ 0x269a8: "\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 𦦨
+ 0x269a9: "\x03\x02\x01\x01\x03\x01\x01\x02\x05\x02\x05\x01\x01\x04\x05\x03\x05\x04\x05\x05", // 𦦩
+ 0x269aa: "\x03\x02\x01\x01\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01\x05\x01\x01\x01\x03\x04", // 𦦪
+ 0x269ab: "\x03\x02\x01\x01\x03\x02\x01\x01\x01\x01\x05\x05\x01\x01\x05\x01\x01\x01\x03\x04", // 𦦫
+ 0x269ac: "\x03\x02\x01\x01\x01\x02\x02\x05\x01\x05\x01\x01\x03\x05\x01\x01\x03\x03\x04", // 𦦬
+ 0x269ad: "\x03\x02\x01\x01\x05\x01\x01\x03\x02\x01\x01\x05\x01\x01\x03\x04\x04\x01\x05", // 𦦭
+ 0x269ae: "\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04\x03\x04\x01\x01\x02\x01", // 𦦮
+ 0x269af: "\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x03\x01\x01\x02\x01\x02\x01", // 𦦯
+ 0x269b0: "\x03\x02\x01\x05\x01\x01\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 𦦰
+ 0x269b1: "\x01\x01\x01\x03\x04\x03\x02\x01\x05\x01\x01\x01\x01\x02\x03\x02\x01\x05\x01\x01", // 𦦱
+ 0x269b2: "\x03\x05\x01\x01\x01\x05\x02\x05\x01\x01\x03\x02\x01\x01\x05\x01\x01\x01\x03\x04", // 𦦲
+ 0x269b3: "\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04\x04\x03\x02\x05\x01\x03\x05", // 𦦳
+ 0x269b4: "\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x01\x04\x05\x01\x02\x05\x01\x02\x01\x03\x04", // 𦦴
+ 0x269b5: "\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x01\x02\x03\x04\x03\x04\x05\x04", // 𦦵
+ 0x269b6: "\x03\x02\x01\x01\x02\x02\x05\x01\x05\x01\x01\x01\x02\x05\x01\x02\x05\x03\x03\x04\x04", // 𦦶
+ 0x269b7: "\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𦦷
+ 0x269b8: "\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x03\x05\x03\x03", // 𦦸
+ 0x269b9: "\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x05\x02\x03\x05\x05\x04\x03\x02\x01\x05\x01\x01", // 𦦹
+ 0x269ba: "\x01\x01\x01\x03\x04\x03\x02\x01\x05\x01\x01\x05\x01\x05\x01\x02\x01\x01\x02\x01\x02\x05\x01", // 𦦺
+ 0x269bb: "\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x04\x05\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𦦻
+ 0x269bc: "\x03\x02\x01\x01\x04\x03\x01\x02\x03\x04\x05\x01\x01\x04\x05\x04\x04\x05\x03\x04\x03\x04\x03\x05\x04", // 𦦼
+ 0x269bd: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x04\x04\x04\x04\x03\x02\x01\x05\x01\x01", // 𦦽
+ 0x269be: "\x01\x01\x01\x03\x04\x03\x02\x01\x05\x01\x01\x01\x02\x01\x05\x01\x02\x01\x02\x05\x01\x01\x02\x04", // 𦦾
+ 0x269bf: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x05\x03\x01\x03\x02\x01\x05\x01\x01\x03\x05", // 𦦿
+ 0x269c0: "\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x03\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𦧀
+ 0x269c1: "\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x04\x05\x03\x05\x04\x04\x03\x03\x04\x01\x01\x01\x03\x04\x01\x01\x02", // 𦧁
+ 0x269c2: "\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x01\x03\x04", // 𦧂
+ 0x269c3: "\x05\x01\x03\x04\x03\x01\x02\x03\x04\x05\x03\x01\x01\x02\x02\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x01\x05\x01\x01", // 𦧃
+ 0x269c4: "\x01\x02\x01\x03\x05\x02\x01\x02\x01\x01\x05\x02\x01\x01\x01\x02\x01\x03\x05\x02\x01\x02\x01\x01\x05\x02\x01\x01\x01\x01\x03\x02\x02\x01\x02\x01\x01\x05\x02\x01\x01\x01\x01\x03\x02", // 𦧄
+ 0x269c5: "\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x01\x03\x04\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x01\x03\x04\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x01\x03\x04", // 𦧅
+ 0x269c6: "\x01\x01\x02\x02\x05\x01\x01", // 𦧆
+ 0x269c7: "\x01\x01\x02\x02\x05\x01\x05\x02\x05", // 𦧇
+ 0x269c8: "\x01\x01\x02\x02\x05\x01\x03\x04\x01\x05", // 𦧈
+ 0x269c9: "\x01\x01\x02\x02\x05\x01\x01\x02\x05\x04", // 𦧉
+ 0x269ca: "\x01\x01\x02\x02\x05\x01\x05\x04\x03\x05", // 𦧊
+ 0x269cb: "\x03\x01\x02\x02\x05\x01\x03\x01\x01\x02", // 𦧋
+ 0x269cc: "\x01\x01\x02\x02\x05\x01\x03\x01\x03\x02", // 𦧌
+ 0x269cd: "\x03\x03\x02\x04\x03\x01\x02\x02\x05\x01", // 𦧍
+ 0x269ce: "\x03\x04\x01\x05\x01\x01\x02\x02\x05\x01", // 𦧎
+ 0x269cf: "\x01\x01\x02\x02\x05\x01\x01\x01\x03\x02", // 𦧏
+ 0x269d0: "\x05\x04\x01\x02\x01\x01\x02\x02\x05\x01", // 𦧐
+ 0x269d1: "\x01\x01\x02\x02\x05\x01\x04\x04\x05\x03\x05", // 𦧑
+ 0x269d2: "\x03\x01\x02\x02\x05\x01\x01\x02\x02\x05\x01", // 𦧒
+ 0x269d3: "\x01\x01\x02\x02\x05\x01\x03\x01\x05\x02\x05", // 𦧓
+ 0x269d4: "\x01\x01\x02\x02\x05\x01\x03\x03\x05\x04\x04", // 𦧔
+ 0x269d5: "\x03\x05\x01\x03\x03\x05\x01\x01\x02\x02\x05\x01", // 𦧕
+ 0x269d6: "\x01\x01\x02\x02\x05\x01\x01\x02\x05\x03\x04\x01", // 𦧖
+ 0x269d7: "\x03\x02\x05\x01\x01\x01\x01\x01\x02\x02\x05\x01", // 𦧗
+ 0x269d8: "\x02\x05\x03\x04\x03\x04\x03\x01\x02\x02\x05\x01", // 𦧘
+ 0x269d9: "\x03\x01\x02\x02\x05\x01\x03\x01\x01\x02\x03\x04", // 𦧙
+ 0x269da: "\x01\x01\x02\x02\x05\x01\x01\x01\x02\x02\x05\x01", // 𦧚
+ 0x269db: "\x03\x01\x02\x02\x05\x01\x03\x04\x01\x02\x05\x01", // 𦧛
+ 0x269dc: "\x03\x01\x02\x02\x05\x01\x01\x02\x05\x01\x03\x04", // 𦧜
+ 0x269dd: "\x01\x01\x02\x02\x05\x01\x03\x02\x01\x02\x01\x05\x04", // 𦧝
+ 0x269de: "\x03\x01\x02\x02\x05\x01\x02\x05\x03\x04\x02\x05\x01", // 𦧞
+ 0x269df: "\x01\x01\x02\x02\x05\x01\x02\x05\x03\x04\x02\x05\x01\x01", // 𦧟
+ 0x269e0: "\x03\x02\x05\x01\x01\x02\x05\x02\x03\x01\x02\x02\x05\x01", // 𦧠
+ 0x269e1: "\x04\x03\x03\x04\x04\x03\x03\x04\x01\x01\x02\x02\x05\x01", // 𦧡
+ 0x269e2: "\x01\x01\x02\x02\x05\x01\x04\x01\x05\x04\x01\x02\x03\x04", // 𦧢
+ 0x269e3: "\x01\x01\x02\x02\x05\x01\x03\x04\x01\x02\x05\x01\x02\x02", // 𦧣
+ 0x269e4: "\x01\x01\x02\x02\x05\x01\x01\x02\x02\x01\x01\x02\x03\x04", // 𦧤
+ 0x269e5: "\x02\x05\x03\x04\x02\x05\x01\x01\x01\x01\x02\x02\x05\x01", // 𦧥
+ 0x269e6: "\x01\x01\x02\x02\x05\x01\x03\x04\x04\x03\x04\x05\x05\x04", // 𦧦
+ 0x269e7: "\x01\x01\x02\x02\x05\x01\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 𦧧
+ 0x269e8: "\x04\x01\x02\x05\x01\x03\x02\x05\x01\x01\x01\x02\x02\x05\x01", // 𦧨
+ 0x269e9: "\x03\x01\x02\x02\x05\x01\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 𦧩
+ 0x269ea: "\x02\x05\x01\x01\x01\x02\x01\x03\x04\x01\x01\x02\x02\x05\x01", // 𦧪
+ 0x269eb: "\x01\x01\x02\x02\x05\x01\x05\x05\x01\x03\x05\x03\x03\x03\x04", // 𦧫
+ 0x269ec: "\x05\x05\x01\x03\x05\x03\x03\x03\x04\x03\x01\x02\x02\x05\x01", // 𦧬
+ 0x269ed: "\x01\x01\x02\x02\x05\x01\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 𦧭
+ 0x269ee: "\x01\x01\x02\x02\x05\x01\x04\x04\x05\x03\x01\x02\x01\x02\x05\x01", // 𦧮
+ 0x269ef: "\x03\x01\x02\x02\x05\x01\x03\x02\x05\x01\x01\x01\x04\x05\x04\x04", // 𦧯
+ 0x269f0: "\x03\x02\x05\x01\x01\x01\x04\x05\x04\x04\x01\x01\x02\x02\x05\x01", // 𦧰
+ 0x269f1: "\x01\x01\x02\x02\x05\x01\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01", // 𦧱
+ 0x269f2: "\x01\x01\x02\x02\x05\x01\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 𦧲
+ 0x269f3: "\x01\x01\x02\x02\x05\x01\x01\x03\x04\x03\x04\x03\x04\x02\x05\x03\x04", // 𦧳
+ 0x269f4: "\x01\x01\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 𦧴
+ 0x269f5: "\x01\x01\x02\x02\x05\x01\x01\x01\x02\x02\x05\x01\x01\x01\x02\x02\x05\x01", // 𦧵
+ 0x269f6: "\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x03\x04\x01\x01\x02\x02\x05\x01", // 𦧶
+ 0x269f7: "\x03\x01\x02\x02\x05\x01\x04\x01\x03\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 𦧷
+ 0x269f8: "\x03\x04\x01\x01\x02\x02\x05\x01\x05\x01\x05\x05\x01\x05\x01\x02\x02\x01\x03\x04", // 𦧸
+ 0x269f9: "\x01\x01\x02\x02\x05\x01\x01\x02\x01\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x01\x02", // 𦧹
+ 0x269fa: "\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x02\x03\x04\x05\x03\x02\x05\x01\x01\x01\x03\x04", // 𦧺
+ 0x269fb: "\x01\x01\x02\x02\x05\x01\x03\x05\x02\x05\x01\x01\x05\x01\x05\x03\x05\x02\x05\x01\x03\x05\x04", // 𦧻
+ 0x269fc: "\x01\x01\x02\x02\x05\x01\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 𦧼
+ 0x269fd: "\x03\x01\x02\x02\x05\x01\x05\x05\x01\x02\x04\x01\x03\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𦧽
+ 0x269fe: "\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02\x05\x01\x02", // 𦧾
+ 0x269ff: "\x04\x03\x03\x04\x04\x03\x03\x04\x03\x05\x04\x01\x05\x02\x05", // 𦧿
+ 0x26a00: "\x01\x02\x03\x04\x03\x05\x04\x01\x02\x03\x04\x01\x03\x05\x04\x01\x05\x02", // 𦨀
+ 0x26a01: "\x03\x04\x04\x03\x04\x05\x03\x05\x04\x01\x05\x02\x02\x05\x02\x04\x01\x01\x02\x01", // 𦨁
+ 0x26a02: "\x01\x02\x02\x01\x01\x01\x02\x03\x04\x03\x01\x01\x02\x02\x02\x02\x01\x03\x05\x04\x01\x05\x02", // 𦨂
+ 0x26a03: "\x01\x04\x03\x03\x04\x04\x03\x03\x04\x05\x03\x05\x04\x01\x05\x02\x05\x02\x01\x01\x02\x01", // 𦨃
+ 0x26a04: "\x01\x04\x03\x03\x04\x04\x03\x03\x04\x05\x03\x05\x04\x01\x05\x02\x02\x05\x02\x04\x01\x01\x02\x01", // 𦨄
+ 0x26a05: "\x01\x01\x02\x02\x01\x01\x02\x02\x01\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 𦨅
+ 0x26a06: "\x02\x01\x01\x03\x05\x04\x04\x05\x03\x05\x01\x05\x05\x04\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 𦨆
+ 0x26a07: "\x03\x03\x05\x04\x01\x04\x05", // 𦨇
+ 0x26a08: "\x03\x03\x05\x04\x01\x04\x03\x04", // 𦨈
+ 0x26a09: "\x03\x03\x05\x04\x01\x04\x02\x02", // 𦨉
+ 0x26a0a: "\x03\x03\x05\x04\x01\x04\x03\x05", // 𦨊
+ 0x26a0b: "\x03\x03\x05\x04\x01\x04\x05\x03", // 𦨋
+ 0x26a0c: "\x03\x03\x05\x04\x01\x04\x05\x05", // 𦨌
+ 0x26a0d: "\x03\x03\x05\x04\x01\x04\x01\x02", // 𦨍
+ 0x26a0e: "\x03\x03\x05\x04\x01\x04\x03\x01\x05", // 𦨎
+ 0x26a0f: "\x03\x03\x05\x04\x01\x04\x03\x01\x05", // 𦨏
+ 0x26a10: "\x03\x03\x05\x04\x01\x04\x01\x03\x04", // 𦨐
+ 0x26a11: "\x03\x03\x05\x04\x01\x04\x01\x02\x03", // 𦨑
+ 0x26a12: "\x03\x03\x05\x04\x01\x04\x01\x05\x04", // 𦨒
+ 0x26a13: "\x03\x03\x05\x04\x01\x04\x03\x05\x04", // 𦨓
+ 0x26a14: "\x03\x03\x05\x04\x01\x04\x05\x03\x04", // 𦨔
+ 0x26a15: "\x03\x03\x05\x04\x01\x04\x05\x02\x05\x04", // 𦨕
+ 0x26a16: "\x03\x03\x05\x04\x01\x04\x02\x03\x04\x03", // 𦨖
+ 0x26a17: "\x03\x03\x05\x04\x01\x04\x02\x01\x05\x04", // 𦨗
+ 0x26a18: "\x03\x03\x05\x04\x01\x04\x01\x01\x03\x02", // 𦨘
+ 0x26a19: "\x03\x03\x05\x04\x01\x04\x02\x05\x01\x01", // 𦨙
+ 0x26a1a: "\x03\x03\x05\x04\x01\x04\x01\x03\x04\x04", // 𦨚
+ 0x26a1b: "\x03\x03\x05\x04\x01\x04\x03\x05\x05\x04", // 𦨛
+ 0x26a1c: "\x03\x03\x05\x04\x01\x04\x01\x05\x03\x04", // 𦨜
+ 0x26a1d: "\x03\x03\x05\x04\x01\x04\x01\x05\x05\x01", // 𦨝
+ 0x26a1e: "\x03\x03\x05\x04\x01\x04\x01\x01\x03\x05", // 𦨞
+ 0x26a1f: "\x03\x03\x05\x04\x01\x04\x01\x02\x05\x04", // 𦨟
+ 0x26a20: "\x03\x03\x05\x04\x01\x04\x01\x05\x05\x04", // 𦨠
+ 0x26a21: "\x03\x03\x05\x04\x01\x04\x05\x01\x05\x03\x02", // 𦨡
+ 0x26a22: "\x03\x03\x05\x04\x01\x04\x03\x05\x01\x05\x01", // 𦨢
+ 0x26a23: "\x03\x03\x05\x04\x01\x04\x05\x03\x02\x05\x01", // 𦨣
+ 0x26a24: "\x04\x05\x05\x03\x04\x03\x03\x05\x04\x01\x04", // 𦨤
+ 0x26a25: "\x03\x03\x05\x04\x01\x04\x05\x02\x02\x05\x02", // 𦨥
+ 0x26a26: "\x05\x03\x02\x05\x01\x03\x03\x05\x04\x01\x04", // 𦨦
+ 0x26a27: "\x03\x03\x05\x04\x01\x04\x02\x05\x01\x01\x01", // 𦨧
+ 0x26a28: "\x03\x03\x05\x04\x01\x04\x03\x05\x04\x05\x05", // 𦨨
+ 0x26a29: "\x03\x03\x05\x04\x01\x04\x01\x03\x05\x03\x04", // 𦨩
+ 0x26a2a: "\x03\x03\x05\x04\x01\x04\x02\x05\x01\x01\x01", // 𦨪
+ 0x26a2b: "\x03\x03\x05\x04\x01\x04\x01\x04\x03\x01\x02", // 𦨫
+ 0x26a2c: "\x03\x03\x05\x04\x01\x04\x04\x05\x05\x03\x04", // 𦨬
+ 0x26a2d: "\x03\x03\x05\x04\x01\x04\x05\x03\x02\x05\x04", // 𦨭
+ 0x26a2e: "\x03\x03\x05\x04\x01\x04\x03\x02\x01\x05\x04", // 𦨮
+ 0x26a2f: "\x03\x03\x05\x04\x01\x04\x03\x01\x02\x02\x05\x01", // 𦨯
+ 0x26a30: "\x03\x03\x05\x04\x01\x04\x01\x02\x01\x05\x02", // 𦨰
+ 0x26a31: "\x03\x03\x05\x04\x01\x04\x05\x01\x01\x01\x01\x02", // 𦨱
+ 0x26a32: "\x03\x03\x05\x04\x01\x04\x04\x04\x01\x05\x05", // 𦨲
+ 0x26a33: "\x03\x03\x05\x04\x01\x04\x02\x05\x01\x01\x01\x03\x04", // 𦨳
+ 0x26a34: "\x03\x03\x05\x04\x01\x04\x02\x05\x01\x02\x05\x01", // 𦨴
+ 0x26a35: "\x03\x03\x05\x04\x01\x04\x03\x03\x02\x01\x01\x02", // 𦨵
+ 0x26a36: "\x03\x03\x05\x04\x01\x04\x03\x04\x01\x01\x03\x04", // 𦨶
+ 0x26a37: "\x03\x03\x05\x04\x01\x04\x03\x02\x01\x05\x03\x04", // 𦨷
+ 0x26a38: "\x03\x03\x05\x04\x01\x04\x03\x03\x05\x02\x01\x01", // 𦨸
+ 0x26a39: "\x03\x03\x05\x04\x01\x04\x03\x05\x01\x03\x05\x05", // 𦨹
+ 0x26a3a: "\x04\x05\x05\x03\x04\x03\x03\x05\x04\x01\x04\x05", // 𦨺
+ 0x26a3b: "\x03\x03\x05\x04\x01\x04\x02\x04\x03\x01\x03\x05", // 𦨻
+ 0x26a3c: "\x03\x03\x05\x04\x01\x04\x02\x05\x01\x05\x01\x03\x04", // 𦨼
+ 0x26a3d: "\x03\x03\x05\x04\x01\x04\x02\x05\x02\x03\x04\x01\x05", // 𦨽
+ 0x26a3e: "\x03\x03\x05\x04\x01\x04\x04\x01\x02\x05\x01\x05\x02", // 𦨾
+ 0x26a3f: "\x03\x03\x05\x04\x01\x04\x05\x01\x02\x01\x05\x04", // 𦨿
+ 0x26a40: "\x03\x03\x05\x04\x01\x04\x01\x03\x04\x03\x04\x03\x04", // 𦩀
+ 0x26a41: "\x03\x03\x05\x04\x01\x04\x03\x05\x04\x01\x02\x03\x04", // 𦩁
+ 0x26a42: "\x03\x03\x05\x04\x01\x04\x03\x01\x05\x02\x01\x03\x04", // 𦩂
+ 0x26a43: "\x03\x03\x05\x04\x01\x04\x04\x03\x02\x05\x01\x03\x05", // 𦩃
+ 0x26a44: "\x03\x03\x05\x04\x01\x04\x05\x01\x02\x01\x01\x02\x01", // 𦩄
+ 0x26a45: "\x03\x03\x05\x04\x01\x04\x02\x05\x01\x01\x01\x01\x02", // 𦩅
+ 0x26a46: "\x03\x03\x05\x04\x01\x04\x03\x01\x02\x01\x05\x03\x04", // 𦩆
+ 0x26a47: "\x03\x03\x05\x04\x01\x04\x05\x04\x02\x03\x04\x05\x04", // 𦩇
+ 0x26a48: "\x03\x03\x05\x04\x01\x04\x05\x04\x03\x01\x01\x03\x04", // 𦩈
+ 0x26a49: "\x05\x04\x03\x01\x01\x03\x04\x03\x03\x05\x04\x01\x04", // 𦩉
+ 0x26a4a: "\x03\x03\x05\x04\x01\x04\x03\x02\x01\x05\x01\x01\x03\x05", // 𦩊
+ 0x26a4b: "\x03\x03\x05\x04\x01\x04\x03\x01\x01\x01\x02\x01\x01\x01", // 𦩋
+ 0x26a4c: "\x03\x03\x05\x04\x01\x04\x01\x05\x01\x01\x02\x01\x03\x04", // 𦩌
+ 0x26a4d: "\x03\x03\x05\x04\x01\x04\x03\x05\x01\x02\x01\x02\x05\x01", // 𦩍
+ 0x26a4e: "\x03\x03\x05\x04\x01\x04\x04\x03\x03\x04\x01\x03\x01\x02", // 𦩎
+ 0x26a4f: "\x03\x03\x05\x04\x01\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𦩏
+ 0x26a50: "\x03\x03\x05\x04\x01\x04\x01\x03\x04\x04\x05\x02\x01\x05", // 𦩐
+ 0x26a51: "\x03\x03\x05\x04\x01\x04\x01\x03\x04\x03\x04\x02\x03\x04", // 𦩑
+ 0x26a52: "\x03\x03\x05\x04\x01\x04\x01\x02\x01\x05\x05\x01\x02\x01", // 𦩒
+ 0x26a53: "\x03\x03\x05\x04\x01\x04\x05\x04\x01\x03\x04\x01\x01\x01", // 𦩓
+ 0x26a54: "\x03\x03\x05\x04\x01\x04\x03\x01\x01\x03\x04\x03\x03\x03", // 𦩔
+ 0x26a55: "\x03\x03\x05\x04\x01\x04\x02\x01\x05\x03\x01\x05\x03\x05", // 𦩕
+ 0x26a56: "\x03\x03\x05\x04\x01\x04\x03\x02\x05\x01\x01\x03\x01\x02", // 𦩖
+ 0x26a57: "\x03\x03\x05\x04\x01\x04\x04\x03\x03\x04\x04\x03\x03\x04", // 𦩗
+ 0x26a58: "\x03\x03\x05\x04\x01\x04\x04\x04\x05\x01\x02\x01\x03\x04", // 𦩘
+ 0x26a59: "\x03\x03\x05\x04\x01\x04\x05\x02\x01\x01\x05\x02\x01\x01", // 𦩙
+ 0x26a5a: "\x03\x03\x05\x02\x01\x01\x02\x03\x04\x03\x01\x03\x04", // 𦩚
+ 0x26a5b: "\x03\x03\x05\x01\x04\x02\x05\x01\x01\x01\x01\x03\x04", // 𦩛
+ 0x26a5c: "\x03\x03\x05\x04\x01\x04\x04\x01\x04\x03\x01\x02\x05\x01", // 𦩜
+ 0x26a5d: "\x03\x03\x05\x04\x01\x04\x02\x05\x01\x02\x01\x03\x05\x04\x01", // 𦩝
+ 0x26a5e: "\x03\x03\x05\x04\x01\x04\x03\x04\x01\x03\x05\x01\x01\x02\x02", // 𦩞
+ 0x26a5f: "\x03\x03\x05\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 𦩟
+ 0x26a60: "\x03\x03\x05\x04\x01\x04\x02\x05\x01\x01\x03\x01\x01\x02\x01", // 𦩠
+ 0x26a61: "\x03\x03\x05\x04\x01\x04\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 𦩡
+ 0x26a62: "\x03\x03\x05\x04\x01\x04\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 𦩢
+ 0x26a63: "\x03\x03\x05\x04\x01\x04\x01\x01\x01\x02\x05\x03\x01\x03\x04", // 𦩣
+ 0x26a64: "\x03\x03\x05\x04\x01\x04\x04\x04\x05\x03\x05\x01\x03\x04\x04", // 𦩤
+ 0x26a65: "\x03\x03\x05\x04\x01\x04\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 𦩥
+ 0x26a66: "\x03\x03\x05\x04\x01\x04\x05\x01\x01\x01\x01\x02\x03\x03\x03", // 𦩦
+ 0x26a67: "\x05\x02\x01\x05\x02\x01\x05\x02\x01\x03\x03\x05\x04\x01\x04", // 𦩧
+ 0x26a68: "\x03\x03\x05\x04\x01\x04\x04\x04\x01\x05\x01\x01\x01\x01\x02", // 𦩨
+ 0x26a69: "\x03\x03\x05\x04\x01\x04\x04\x03\x01\x01\x03\x04\x05\x03\x01", // 𦩩
+ 0x26a6a: "\x03\x03\x05\x04\x01\x04\x05\x03\x02\x05\x01\x01\x02\x03\x04", // 𦩪
+ 0x26a6b: "\x03\x03\x05\x04\x01\x04\x04\x03\x01\x01\x03\x04\x02\x05\x02", // 𦩫
+ 0x26a6c: "\x03\x03\x05\x04\x01\x04\x01\x03\x01\x05\x03\x01\x05\x03\x04", // 𦩬
+ 0x26a6d: "\x03\x03\x05\x04\x01\x04\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 𦩭
+ 0x26a6e: "\x03\x03\x05\x04\x01\x04\x03\x04\x04\x03\x01\x01\x03\x05\x04", // 𦩮
+ 0x26a6f: "\x03\x03\x05\x04\x01\x04\x05\x01\x03\x02\x05\x01\x02\x02\x01", // 𦩯
+ 0x26a70: "\x03\x03\x05\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𦩰
+ 0x26a71: "\x03\x03\x05\x04\x01\x04\x04\x03\x01\x01\x03\x04\x01\x02\x01", // 𦩱
+ 0x26a72: "\x03\x03\x05\x04\x01\x04\x04\x03\x01\x02\x05\x03\x05\x01\x01", // 𦩲
+ 0x26a73: "\x03\x03\x05\x01\x04\x01\x02\x01\x03\x02\x05\x01\x01", // 𦩳
+ 0x26a74: "\x03\x03\x05\x04\x01\x04\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 𦩴
+ 0x26a75: "\x03\x03\x05\x04\x01\x04\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 𦩵
+ 0x26a76: "\x03\x03\x05\x04\x01\x04\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04", // 𦩶
+ 0x26a77: "\x03\x03\x05\x04\x01\x04\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01", // 𦩷
+ 0x26a78: "\x03\x03\x05\x04\x01\x04\x05\x01\x05\x04\x01\x05\x01\x05\x04\x01", // 𦩸
+ 0x26a79: "\x03\x03\x05\x04\x01\x04\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01", // 𦩹
+ 0x26a7a: "\x03\x03\x05\x04\x01\x04\x01\x02\x01\x03\x05\x04\x01\x02\x03\x04", // 𦩺
+ 0x26a7b: "\x01\x02\x02\x05\x01\x01\x01\x02\x03\x01\x03\x03\x05\x04\x01\x04", // 𦩻
+ 0x26a7c: "\x03\x03\x05\x04\x01\x04\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𦩼
+ 0x26a7d: "\x03\x03\x05\x04\x01\x04\x05\x05\x05\x01\x03\x02\x05\x01\x01\x01", // 𦩽
+ 0x26a7e: "\x03\x03\x05\x04\x01\x04\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02", // 𦩾
+ 0x26a7f: "\x03\x03\x05\x04\x01\x04\x03\x01\x03\x02\x01\x05\x01\x01\x02", // 𦩿
+ 0x26a80: "\x03\x03\x05\x04\x01\x04\x04\x01\x03\x05\x01\x01\x02\x02\x05\x01", // 𦪀
+ 0x26a81: "\x03\x03\x05\x04\x01\x04\x04\x04\x05\x03\x04\x03\x04\x03\x05\x04", // 𦪁
+ 0x26a82: "\x03\x03\x05\x02\x01\x03\x03\x02\x01\x02\x01\x02\x01\x03\x04", // 𦪂
+ 0x26a83: "\x03\x03\x05\x02\x01\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 𦪃
+ 0x26a84: "\x03\x03\x05\x04\x01\x04\x03\x02\x05\x01\x01\x01\x01\x01\x02\x01", // 𦪄
+ 0x26a85: "\x03\x03\x05\x04\x01\x04\x04\x01\x03\x03\x01\x02\x01\x05\x04", // 𦪅
+ 0x26a86: "\x03\x03\x05\x04\x01\x04\x01\x02\x02\x01\x01\x01\x03\x04\x01\x02\x01", // 𦪆
+ 0x26a87: "\x03\x03\x05\x04\x01\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 𦪇
+ 0x26a88: "\x01\x02\x01\x04\x01\x05\x03\x03\x01\x03\x04\x03\x03\x05\x04\x01\x04", // 𦪈
+ 0x26a89: "\x03\x03\x05\x04\x01\x04\x04\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𦪉
+ 0x26a8a: "\x03\x03\x05\x04\x01\x04\x01\x03\x02\x01\x01\x02\x03\x04\x05\x03\x04", // 𦪊
+ 0x26a8b: "\x03\x03\x05\x04\x01\x04\x04\x03\x01\x01\x02\x01\x03\x05\x02\x01\x01", // 𦪋
+ 0x26a8c: "\x03\x03\x05\x04\x01\x04\x04\x04\x05\x01\x03\x04\x01\x02\x05\x01\x02", // 𦪌
+ 0x26a8d: "\x03\x03\x05\x04\x01\x04\x02\x01\x02\x01\x01\x02\x05\x01\x04\x03\x01", // 𦪍
+ 0x26a8e: "\x03\x03\x05\x04\x01\x04\x03\x05\x04\x01\x01\x01\x02\x04\x05\x04", // 𦪎
+ 0x26a8f: "\x03\x03\x05\x04\x01\x04\x05\x04\x02\x05\x01\x01\x02\x04\x05\x04", // 𦪏
+ 0x26a90: "\x03\x03\x05\x02\x01\x03\x02\x05\x03\x03\x04\x01\x04\x05\x04\x04", // 𦪐
+ 0x26a91: "\x03\x03\x05\x04\x01\x04\x05\x04\x03\x03\x04\x05\x01\x05\x03\x05\x05\x04", // 𦪑
+ 0x26a92: "\x03\x03\x05\x04\x01\x04\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𦪒
+ 0x26a93: "\x03\x03\x05\x04\x01\x04\x05\x01\x01\x02\x03\x02\x01\x01\x05\x05\x02\x01\x02", // 𦪓
+ 0x26a94: "\x03\x03\x05\x04\x01\x04\x04\x01\x02\x05\x01\x05\x02\x01\x03\x01\x03\x04", // 𦪔
+ 0x26a95: "\x03\x03\x05\x04\x01\x04\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 𦪕
+ 0x26a96: "\x03\x03\x05\x04\x01\x04\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 𦪖
+ 0x26a97: "\x03\x03\x05\x04\x01\x04\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04", // 𦪗
+ 0x26a98: "\x03\x03\x05\x04\x01\x04\x01\x03\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04", // 𦪘
+ 0x26a99: "\x03\x03\x05\x04\x01\x04\x03\x04\x01\x02\x05\x01\x05\x04\x01\x05\x04\x01", // 𦪙
+ 0x26a9a: "\x03\x03\x05\x04\x01\x04\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x02\x04", // 𦪚
+ 0x26a9b: "\x03\x03\x05\x04\x01\x04\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 𦪛
+ 0x26a9c: "\x03\x03\x05\x04\x01\x04\x05\x04\x05\x04\x05\x04\x03\x04\x02\x04\x04\x04", // 𦪜
+ 0x26a9d: "\x03\x03\x05\x04\x01\x04\x04\x03\x01\x01\x03\x04\x05\x05\x04\x02\x03\x04", // 𦪝
+ 0x26a9e: "\x03\x03\x05\x04\x01\x04\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 𦪞
+ 0x26a9f: "\x03\x03\x05\x04\x01\x04\x01\x02\x01\x02\x05\x01\x04\x03\x01\x03\x03\x03", // 𦪟
+ 0x26aa0: "\x03\x03\x05\x04\x01\x04\x01\x02\x02\x01\x01\x02\x02\x01\x01\x02", // 𦪠
+ 0x26aa1: "\x03\x03\x05\x04\x01\x04\x02\x01\x05\x03\x01\x05\x02\x02\x04\x03\x01", // 𦪡
+ 0x26aa2: "\x03\x03\x05\x04\x01\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 𦪢
+ 0x26aa3: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x03\x03\x05\x04\x01\x04", // 𦪣
+ 0x26aa4: "\x03\x03\x05\x04\x01\x04\x03\x03\x05\x04\x01\x04\x03\x05\x04\x01\x05\x03", // 𦪤
+ 0x26aa5: "\x03\x03\x05\x04\x01\x04\x04\x04\x05\x03\x05\x03\x02\x03\x02\x05\x01\x01", // 𦪥
+ 0x26aa6: "\x03\x03\x05\x02\x01\x02\x04\x03\x04\x05\x02\x05\x01\x03\x01\x01\x02", // 𦪦
+ 0x26aa7: "\x03\x03\x05\x04\x01\x04\x01\x02\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 𦪧
+ 0x26aa8: "\x03\x03\x05\x01\x04\x02\x05\x01\x02\x01\x02\x01\x01\x02\x05\x01\x03\x04", // 𦪨
+ 0x26aa9: "\x03\x03\x05\x04\x01\x04\x01\x04\x05\x02\x04\x01\x03\x04\x03\x04\x01\x05\x04", // 𦪩
+ 0x26aaa: "\x03\x03\x05\x04\x01\x04\x03\x01\x04\x03\x01\x04\x03\x05\x04\x01\x01\x01\x02", // 𦪪
+ 0x26aab: "\x03\x03\x05\x04\x01\x04\x02\x01\x03\x05\x04\x05\x04\x04\x03\x01\x02\x03\x04", // 𦪫
+ 0x26aac: "\x03\x03\x05\x04\x01\x04\x02\x05\x01\x01\x03\x05\x03\x04\x05\x03\x05\x03\x04", // 𦪬
+ 0x26aad: "\x03\x03\x05\x04\x01\x04\x01\x02\x01\x04\x03\x01\x01\x01\x02\x04\x05\x04", // 𦪭
+ 0x26aae: "\x03\x03\x05\x04\x01\x04\x03\x04\x03\x04\x03\x04\x03\x04\x01\x03\x01\x02\x01", // 𦪮
+ 0x26aaf: "\x03\x03\x05\x04\x01\x04\x03\x05\x01\x03\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 𦪯
+ 0x26ab0: "\x05\x02\x02\x05\x02\x04\x01\x05\x03\x03\x01\x03\x04\x03\x03\x05\x04\x01\x04", // 𦪰
+ 0x26ab1: "\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x02\x05\x03\x01\x03\x03\x05\x04\x01\x04", // 𦪱
+ 0x26ab2: "\x03\x03\x05\x04\x01\x04\x05\x01\x01\x02\x03\x04\x03\x02\x01\x01\x05\x05\x02\x01\x02", // 𦪲
+ 0x26ab3: "\x03\x03\x05\x04\x01\x04\x04\x01\x02\x05\x01\x04\x05\x01\x03\x05\x03\x03\x03\x04", // 𦪳
+ 0x26ab4: "\x03\x03\x05\x04\x01\x04\x05\x05\x05\x02\x05\x03\x04\x03\x04\x04\x02\x04\x04\x05", // 𦪴
+ 0x26ab5: "\x03\x03\x05\x04\x01\x04\x03\x01\x04\x03\x01\x04\x01\x02\x02\x01\x01\x01\x03\x04", // 𦪵
+ 0x26ab6: "\x03\x03\x05\x04\x01\x04\x05\x05\x01\x03\x05\x03\x03\x03\x04\x02\x05\x01\x02\x01\x04", // 𦪶
+ 0x26ab7: "\x03\x03\x05\x04\x01\x04\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x01", // 𦪷
+ 0x26ab8: "\x03\x03\x05\x04\x01\x04\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𦪸
+ 0x26ab9: "\x03\x03\x05\x04\x01\x04\x03\x05\x05\x04\x03\x01\x02\x03\x04\x03\x02\x05\x02\x02\x01", // 𦪹
+ 0x26aba: "\x03\x03\x05\x04\x01\x04\x05\x01\x01\x02\x03\x04\x01\x03\x02\x01\x01\x05\x05\x02\x01\x02", // 𦪺
+ 0x26abb: "\x03\x03\x05\x02\x01\x04\x04\x05\x01\x02\x02\x02\x05\x01\x01\x01\x03\x05\x04", // 𦪻
+ 0x26abc: "\x03\x03\x05\x02\x01\x03\x01\x02\x03\x04\x01\x03\x05\x04\x03\x05\x02\x05\x01\x01", // 𦪼
+ 0x26abd: "\x03\x03\x05\x04\x01\x04\x04\x01\x04\x03\x01\x03\x05\x04\x01\x01\x05\x01\x05\x01\x01\x01", // 𦪽
+ 0x26abe: "\x03\x03\x05\x04\x01\x04\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 𦪾
+ 0x26abf: "\x04\x01\x04\x03\x01\x03\x05\x04\x01\x01\x05\x01\x05\x01\x01\x01\x03\x03\x05\x04\x01\x04", // 𦪿
+ 0x26ac0: "\x03\x03\x05\x04\x01\x04\x04\x03\x01\x01\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𦫀
+ 0x26ac1: "\x03\x03\x05\x04\x01\x04\x04\x03\x03\x04\x03\x05\x04\x05\x04\x04\x01\x01\x01\x02\x05\x01", // 𦫁
+ 0x26ac2: "\x03\x03\x05\x04\x01\x04\x04\x03\x03\x04\x03\x05\x04\x05\x04\x02\x05\x01\x01\x01\x03\x04", // 𦫂
+ 0x26ac3: "\x03\x03\x05\x04\x01\x04\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 𦫃
+ 0x26ac4: "\x03\x03\x05\x04\x01\x04\x01\x04\x05\x02\x04\x01\x03\x04\x04\x03\x01\x02\x02\x05\x02\x01\x01", // 𦫄
+ 0x26ac5: "\x03\x03\x05\x04\x01\x04\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 𦫅
+ 0x26ac6: "\x03\x03\x05\x04\x01\x04\x01\x03\x05\x03\x03\x03\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𦫆
+ 0x26ac7: "\x03\x03\x05\x04\x01\x04\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𦫇
+ 0x26ac8: "\x03\x03\x05\x04\x01\x04\x05\x05\x01\x03\x05\x03\x03\x03\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𦫈
+ 0x26ac9: "\x03\x03\x05\x04\x01\x04\x03\x05\x02\x05\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x01\x05\x05\x01\x01\x05\x01\x01", // 𦫉
+ 0x26aca: "\x03\x03\x05\x04\x01\x04\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x03\x04\x01", // 𦫊
+ 0x26acb: "\x04\x01\x05\x05\x01\x01\x05\x03\x04", // 𦫋
+ 0x26acc: "\x03\x01\x02\x03\x04\x05\x01\x01\x05\x03\x04", // 𦫌
+ 0x26acd: "\x04\x05\x01\x01\x05\x04\x01\x01\x03\x02", // 𦫍
+ 0x26ace: "\x03\x01\x01\x02\x03\x04\x05\x01\x01\x05\x03\x04", // 𦫎
+ 0x26acf: "\x04\x05\x01\x01\x05\x04\x04\x03\x01\x01\x03\x02", // 𦫏
+ 0x26ad0: "\x01\x03\x04\x04\x03\x01\x01\x05\x04\x05\x01\x01\x05\x03\x04", // 𦫐
+ 0x26ad1: "\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 𦫑
+ 0x26ad2: "\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04\x01\x02\x01\x05\x01\x01\x05\x03\x04", // 𦫒
+ 0x26ad3: "\x03\x05\x05\x02\x01\x05\x03\x05\x04", // 𦫓
+ 0x26ad4: "\x05\x04\x03\x03\x04\x03\x05\x05\x02\x01\x05", // 𦫔
+ 0x26ad5: "\x01\x01\x02\x03\x04\x03\x05\x05\x02\x01\x05", // 𦫕
+ 0x26ad6: "\x03\x05\x05\x02\x01\x05\x03\x02\x05\x01\x01", // 𦫖
+ 0x26ad7: "\x05\x03\x02\x05\x04\x03\x05\x05\x02\x01\x05", // 𦫗
+ 0x26ad8: "\x03\x05\x05\x02\x01\x05\x05\x03\x05\x04\x04", // 𦫘
+ 0x26ad9: "\x03\x02\x05\x01\x01\x03\x05\x05\x02\x01\x05", // 𦫙
+ 0x26ada: "\x01\x03\x04\x01\x01\x05\x03\x05\x05\x02\x01\x05", // 𦫚
+ 0x26adb: "\x01\x02\x04\x05\x05\x02\x01\x03\x05\x05\x02\x01\x05", // 𦫛
+ 0x26adc: "\x01\x03\x04\x04\x03\x03\x04\x03\x05\x05\x02\x01\x05", // 𦫜
+ 0x26add: "\x05\x04\x03\x05\x03\x05\x04\x03\x05\x05\x02\x01\x05", // 𦫝
+ 0x26ade: "\x01\x03\x04\x01\x03\x03\x03\x03\x03\x05\x05\x02\x01\x05", // 𦫞
+ 0x26adf: "\x04\x03\x03\x04\x04\x03\x03\x04\x03\x05\x05\x02\x01\x05", // 𦫟
+ 0x26ae0: "\x05\x02\x01\x01\x01\x05\x03\x04\x03\x05\x05\x02\x01\x05", // 𦫠
+ 0x26ae1: "\x01\x02\x02\x01\x01\x01\x03\x04\x03\x05\x05\x02\x01\x05", // 𦫡
+ 0x26ae2: "\x02\x04\x03\x02\x05\x02\x05\x01\x03\x05\x05\x02\x01\x05", // 𦫢
+ 0x26ae3: "\x01\x01\x03\x05\x04\x01\x05\x03\x03\x05\x05\x02\x01\x05", // 𦫣
+ 0x26ae4: "\x03\x05\x05\x02\x01\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𦫤
+ 0x26ae5: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x03\x05\x05\x02\x01\x05", // 𦫥
+ 0x26ae6: "\x03\x04\x04\x03\x01\x01\x03\x05\x04\x03\x05\x05\x02\x01\x05", // 𦫦
+ 0x26ae7: "\x04\x03\x01\x01\x02\x01\x01\x03\x04\x03\x05\x05\x02\x01\x05", // 𦫧
+ 0x26ae8: "\x04\x01\x03\x04\x01\x03\x03\x03\x03\x03\x05\x05\x02\x01\x05", // 𦫨
+ 0x26ae9: "\x02\x05\x01\x02\x05\x01\x01\x01\x05\x03\x05\x05\x02\x01\x05", // 𦫩
+ 0x26aea: "\x04\x04\x05\x03\x05\x03\x03\x05\x04\x04\x03\x05\x05\x02\x01\x05", // 𦫪
+ 0x26aeb: "\x03\x05\x05\x04\x05\x04\x01\x05\x04\x01\x03\x05\x05\x02\x01\x05", // 𦫫
+ 0x26aec: "\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04\x03\x05\x05\x02\x01\x05", // 𦫬
+ 0x26aed: "\x01\x05\x02\x05\x01\x01\x01\x05\x03\x04\x03\x05\x05\x02\x01\x05", // 𦫭
+ 0x26aee: "\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04\x03\x05\x05\x02\x01\x05", // 𦫮
+ 0x26aef: "\x03\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x05\x05\x02\x01\x05", // 𦫯
+ 0x26af0: "\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x03\x05\x04\x03\x05\x05\x02\x01\x05", // 𦫰
+ 0x26af1: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x03\x05\x05\x02\x01\x05", // 𦫱
+ 0x26af2: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x05\x03\x05\x02\x01\x05", // 𦫲
+ 0x26af3: "\x02\x01\x02\x01\x02", // 𦫳
+ 0x26af4: "\x01\x02\x01\x02\x05", // 𦫴
+ 0x26af5: "\x05\x01\x03\x02", // 𦫵
+ 0x26af6: "\x01\x02\x01\x02\x05\x02", // 𦫶
+ 0x26af7: "\x01\x02\x01\x02\x05\x05", // 𦫷
+ 0x26af8: "\x01\x02\x01\x02\x03\x04", // 𦫸
+ 0x26af9: "\x05\x02\x01\x03\x05\x02\x01\x02", // 𦫹
+ 0x26afa: "\x01\x02\x01\x02\x01\x03", // 𦫺
+ 0x26afb: "\x01\x02\x01\x02\x03\x02", // 𦫻
+ 0x26afc: "\x01\x02\x01\x02\x05\x02", // 𦫼
+ 0x26afd: "\x01\x02\x01\x02\x01\x01", // 𦫽
+ 0x26afe: "\x01\x02\x01\x02\x05\x05", // 𦫾
+ 0x26aff: "\x01\x02\x02\x05\x04", // 𦫿
+ 0x26b00: "\x01\x02\x01\x02\x01\x05", // 𦬀
+ 0x26b01: "\x01\x02\x01\x02\x01\x02\x03", // 𦬁
+ 0x26b02: "\x01\x02\x01\x02\x01\x03\x05", // 𦬂
+ 0x26b03: "\x01\x02\x01\x02\x03\x01\x05", // 𦬃
+ 0x26b04: "\x01\x02\x01\x02\x05\x03\x04", // 𦬄
+ 0x26b05: "\x01\x02\x01\x02\x02\x05\x01", // 𦬅
+ 0x26b06: "\x01\x02\x01\x02\x03\x04\x05", // 𦬆
+ 0x26b07: "\x01\x02\x01\x02\x01\x03\x02", // 𦬇
+ 0x26b08: "\x01\x02\x01\x02\x02\x01\x05", // 𦬈
+ 0x26b09: "\x01\x02\x01\x02\x03\x04\x05", // 𦬉
+ 0x26b0a: "\x01\x02\x01\x02\x05\x01\x05", // 𦬊
+ 0x26b0b: "\x01\x02\x01\x02\x01\x05\x03", // 𦬋
+ 0x26b0c: "\x01\x02\x01\x02\x05\x02\x03", // 𦬌
+ 0x26b0d: "\x01\x02\x01\x02\x01\x03\x05", // 𦬍
+ 0x26b0e: "\x01\x02\x01\x02\x05\x02\x05", // 𦬎
+ 0x26b0f: "\x01\x02\x01\x02\x05\x02\x03", // 𦬏
+ 0x26b10: "\x01\x02\x01\x02\x03\x05\x04", // 𦬐
+ 0x26b11: "\x01\x02\x02\x05\x03\x01", // 𦬑
+ 0x26b12: "\x01\x02\x02\x01\x01\x02", // 𦬒
+ 0x26b13: "\x01\x02\x01\x02\x01\x03\x05\x04", // 𦬓
+ 0x26b14: "\x01\x02\x01\x02\x03\x03\x02\x04", // 𦬔
+ 0x26b15: "\x01\x02\x01\x02\x02\x05\x01\x02", // 𦬕
+ 0x26b16: "\x01\x02\x01\x02\x03\x02\x03\x05", // 𦬖
+ 0x26b17: "\x01\x02\x01\x02\x01\x05\x03\x04", // 𦬗
+ 0x26b18: "\x01\x02\x01\x02\x03\x05\x05\x04", // 𦬘
+ 0x26b19: "\x01\x02\x01\x02\x03\x02\x02\x04", // 𦬙
+ 0x26b1a: "\x01\x02\x01\x02\x01\x05\x05\x01", // 𦬚
+ 0x26b1b: "\x01\x02\x01\x02\x01\x02\x05\x05", // 𦬛
+ 0x26b1c: "\x01\x02\x01\x02\x01\x05\x05\x04", // 𦬜
+ 0x26b1d: "\x01\x02\x01\x02\x01\x02\x01\x02\x05\x02", // 𦬝
+ 0x26b1e: "\x01\x02\x01\x02\x01\x01\x03\x04", // 𦬞
+ 0x26b1f: "\x05\x02\x03\x05\x02\x02\x01\x01\x03\x02", // 𦬟
+ 0x26b20: "\x01\x02\x02\x01\x03\x01\x02", // 𦬠
+ 0x26b21: "\x01\x02\x01\x02\x03\x05\x01\x02", // 𦬡
+ 0x26b22: "\x01\x02\x01\x02\x03\x02\x02\x01", // 𦬢
+ 0x26b23: "\x01\x02\x01\x02\x02\x05\x05\x04", // 𦬣
+ 0x26b24: "\x01\x02\x01\x02\x01\x05\x02\x04", // 𦬤
+ 0x26b25: "\x01\x02\x01\x02\x05\x03\x05\x02", // 𦬥
+ 0x26b26: "\x05\x02\x03\x05\x02\x02\x01\x03\x04\x04", // 𦬦
+ 0x26b27: "\x05\x02\x03\x05\x02\x02\x01\x03\x01\x02", // 𦬧
+ 0x26b28: "\x01\x02\x01\x02\x05\x01\x03\x04", // 𦬨
+ 0x26b29: "\x01\x02\x01\x02\x04\x01\x03\x04", // 𦬩
+ 0x26b2a: "\x01\x02\x01\x02\x04\x05\x01\x02", // 𦬪
+ 0x26b2b: "\x01\x02\x01\x02\x01\x03\x04\x04", // 𦬫
+ 0x26b2c: "\x01\x02\x01\x02\x01\x01\x02\x01", // 𦬬
+ 0x26b2d: "\x01\x02\x01\x02\x02\x05\x03\x04", // 𦬭
+ 0x26b2e: "\x01\x02\x01\x02\x04\x05\x03\x05", // 𦬮
+ 0x26b2f: "\x01\x02\x01\x02\x03\x02\x01\x02", // 𦬯
+ 0x26b30: "\x01\x02\x01\x02\x03\x01\x02\x01", // 𦬰
+ 0x26b31: "\x01\x02\x01\x02\x03\x01\x03\x02", // 𦬱
+ 0x26b32: "\x01\x02\x01\x02\x03\x02\x05\x01", // 𦬲
+ 0x26b33: "\x01\x02\x01\x02\x03\x02\x05\x05", // 𦬳
+ 0x26b34: "\x01\x02\x01\x02\x03\x02\x01\x05", // 𦬴
+ 0x26b35: "\x01\x02\x01\x02\x01\x02\x02\x01", // 𦬵
+ 0x26b36: "\x01\x02\x02\x03\x01\x01\x02", // 𦬶
+ 0x26b37: "\x01\x02\x01\x02\x03\x05\x02\x03", // 𦬷
+ 0x26b38: "\x01\x02\x01\x02\x01\x02\x03\x05\x04", // 𦬸
+ 0x26b39: "\x01\x02\x01\x02\x02\x05\x01\x01\x01", // 𦬹
+ 0x26b3a: "\x01\x02\x01\x02\x02\x05\x01\x03\x05", // 𦬺
+ 0x26b3b: "\x01\x02\x01\x02\x05\x03\x01\x05\x04", // 𦬻
+ 0x26b3c: "\x01\x02\x01\x02\x03\x01\x02\x03\x04", // 𦬼
+ 0x26b3d: "\x01\x02\x01\x02\x05\x02\x01\x03\x04", // 𦬽
+ 0x26b3e: "\x01\x02\x01\x02\x04\x01\x05\x05\x04", // 𦬾
+ 0x26b3f: "\x01\x02\x01\x02\x02\x01\x02\x05\x01", // 𦬿
+ 0x26b40: "\x01\x02\x01\x02\x05\x01\x03\x03\x05", // 𦭀
+ 0x26b41: "\x01\x02\x01\x02\x02\x05\x05\x04\x01", // 𦭁
+ 0x26b42: "\x01\x02\x01\x02\x04\x05\x01\x03\x05", // 𦭂
+ 0x26b43: "\x01\x02\x01\x02\x01\x03\x05\x01\x05", // 𦭃
+ 0x26b44: "\x01\x02\x01\x02\x01\x02\x05\x02\x03", // 𦭄
+ 0x26b45: "\x01\x02\x01\x02\x02\x03\x03\x04\x04", // 𦭅
+ 0x26b46: "\x01\x02\x01\x02\x03\x04\x04\x01\x05", // 𦭆
+ 0x26b47: "\x01\x02\x01\x02\x02\x03\x05\x05\x04", // 𦭇
+ 0x26b48: "\x01\x02\x01\x02\x01\x02\x01\x05\x04", // 𦭈
+ 0x26b49: "\x01\x02\x01\x02\x02\x05\x03\x05\x01", // 𦭉
+ 0x26b4a: "\x01\x02\x02\x03\x01\x03\x02\x04", // 𦭊
+ 0x26b4b: "\x01\x02\x01\x02\x01\x03\x05\x05\x03", // 𦭋
+ 0x26b4c: "\x01\x02\x02\x02\x01\x01\x02\x04", // 𦭌
+ 0x26b4d: "\x01\x02\x02\x05\x05\x02\x01\x01", // 𦭍
+ 0x26b4e: "\x01\x02\x02\x01\x02\x01\x05\x02", // 𦭎
+ 0x26b4f: "\x01\x02\x02\x03\x04\x03\x03\x03", // 𦭏
+ 0x26b50: "\x01\x02\x01\x02\x03\x03\x01\x02\x04", // 𦭐
+ 0x26b51: "\x01\x02\x01\x02\x04\x04\x01\x01\x02", // 𦭑
+ 0x26b52: "\x01\x02\x01\x02\x01\x02\x01\x02\x01", // 𦭒
+ 0x26b53: "\x01\x02\x01\x02\x01\x02\x02\x01\x05", // 𦭓
+ 0x26b54: "\x01\x02\x01\x02\x04\x05\x05\x03\x04", // 𦭔
+ 0x26b55: "\x01\x02\x01\x02\x05\x02\x05\x03\x04", // 𦭕
+ 0x26b56: "\x01\x02\x01\x02\x02\x05\x01\x01\x02", // 𦭖
+ 0x26b57: "\x01\x02\x01\x02\x02\x05\x02\x03\x04", // 𦭗
+ 0x26b58: "\x01\x02\x01\x02\x03\x05\x04\x05\x02", // 𦭘
+ 0x26b59: "\x01\x02\x01\x02\x05\x05\x04\x05\x02", // 𦭙
+ 0x26b5a: "\x01\x02\x01\x02\x05\x05\x03\x01\x02", // 𦭚
+ 0x26b5b: "\x01\x02\x01\x02\x03\x02\x03\x01\x02", // 𦭛
+ 0x26b5c: "\x01\x02\x01\x02\x02\x05\x01\x03\x04", // 𦭜
+ 0x26b5d: "\x01\x02\x01\x02\x02\x05\x02\x02\x01", // 𦭝
+ 0x26b5e: "\x01\x02\x02\x03\x01\x03\x05\x04", // 𦭞
+ 0x26b5f: "\x01\x02\x02\x03\x02\x05\x02\x05", // 𦭟
+ 0x26b60: "\x05\x02\x02\x05\x02\x02\x03\x04\x01\x05\x01", // 𦭠
+ 0x26b61: "\x01\x02\x02\x05\x01\x02\x05\x01", // 𦭡
+ 0x26b62: "\x01\x02\x01\x02\x01\x02\x05\x02\x01", // 𦭢
+ 0x26b63: "\x01\x02\x02\x02\x05\x02\x02\x02", // 𦭣
+ 0x26b64: "\x01\x02\x02\x02\x05\x03\x04\x01", // 𦭤
+ 0x26b65: "\x01\x02\x02\x03\x01\x05\x02\x05", // 𦭥
+ 0x26b66: "\x01\x02\x02\x04\x01\x01\x02\x01", // 𦭦
+ 0x26b67: "\x01\x02\x02\x01\x02\x05\x02\x05", // 𦭧
+ 0x26b68: "\x01\x02\x01\x02\x04\x05\x01\x01\x02", // 𦭨
+ 0x26b69: "\x01\x02\x01\x02\x02\x05\x01\x02\x01", // 𦭩
+ 0x26b6a: "\x01\x02\x02\x03\x05\x03\x04\x05", // 𦭪
+ 0x26b6b: "\x05\x02\x03\x05\x02\x02\x03\x04\x01\x05\x01", // 𦭫
+ 0x26b6c: "\x01\x02\x01\x04\x05\x02\x05\x02", // 𦭬
+ 0x26b6d: "\x01\x02\x01\x02\x01\x02\x01\x05\x02", // 𦭭
+ 0x26b6e: "\x01\x02\x01\x02\x01\x02\x05\x03\x04\x01", // 𦭮
+ 0x26b6f: "\x01\x02\x01\x02\x01\x02\x05\x03\x04\x05", // 𦭯
+ 0x26b70: "\x01\x02\x01\x02\x04\x04\x01\x05\x03\x01", // 𦭰
+ 0x26b71: "\x01\x02\x01\x02\x01\x04\x03\x01\x01\x02", // 𦭱
+ 0x26b72: "\x01\x02\x01\x02\x05\x01\x05\x05\x01\x05", // 𦭲
+ 0x26b73: "\x01\x02\x01\x02\x05\x04\x01\x05\x04\x01", // 𦭳
+ 0x26b74: "\x01\x02\x01\x02\x04\x03\x04\x02\x04\x02", // 𦭴
+ 0x26b75: "\x01\x02\x01\x02\x04\x03\x01\x01\x01\x02", // 𦭵
+ 0x26b76: "\x01\x02\x01\x02\x03\x01\x02\x01\x03\x05", // 𦭶
+ 0x26b77: "\x01\x02\x01\x02\x05\x04\x03\x01\x01\x02", // 𦭷
+ 0x26b78: "\x01\x02\x01\x02\x03\x03\x05\x04\x01\x04", // 𦭸
+ 0x26b79: "\x01\x02\x01\x02\x01\x03\x04\x03\x03\x04", // 𦭹
+ 0x26b7a: "\x01\x02\x01\x02\x05\x02\x05\x03\x05\x02", // 𦭺
+ 0x26b7b: "\x01\x02\x01\x02\x03\x02\x01\x05\x01\x01", // 𦭻
+ 0x26b7c: "\x01\x02\x01\x02\x03\x04\x04\x03\x05\x04", // 𦭼
+ 0x26b7d: "\x01\x02\x01\x02\x03\x02\x05\x01\x01\x03", // 𦭽
+ 0x26b7e: "\x01\x02\x01\x02\x03\x02\x05\x02\x02\x01", // 𦭾
+ 0x26b7f: "\x01\x02\x01\x02\x03\x02\x01\x05\x02\x03", // 𦭿
+ 0x26b80: "\x01\x02\x01\x02\x03\x05\x05\x04\x03\x05", // 𦮀
+ 0x26b81: "\x01\x02\x01\x02\x05\x05\x01\x03\x02", // 𦮁
+ 0x26b82: "\x01\x02\x01\x02\x01\x05\x02\x05\x01\x01", // 𦮂
+ 0x26b83: "\x01\x02\x01\x02\x02\x02\x01\x01\x01\x05", // 𦮃
+ 0x26b84: "\x01\x02\x01\x02\x02\x05\x03\x05\x01\x01", // 𦮄
+ 0x26b85: "\x05\x02\x03\x05\x02\x02\x01\x05\x02\x02\x05\x02", // 𦮅
+ 0x26b86: "\x01\x02\x01\x02\x01\x02\x05\x01\x01\x05\x04", // 𦮆
+ 0x26b87: "\x01\x02\x01\x02\x01\x05\x01\x02\x03\x04", // 𦮇
+ 0x26b88: "\x01\x02\x01\x02\x01\x03\x01\x05\x05\x04", // 𦮈
+ 0x26b89: "\x01\x02\x01\x02\x01\x02\x05\x01\x03\x02", // 𦮉
+ 0x26b8a: "\x01\x02\x01\x02\x05\x01\x05\x02\x01\x01", // 𦮊
+ 0x26b8b: "\x01\x02\x01\x02\x04\x01\x05\x05\x05\x05", // 𦮋
+ 0x26b8c: "\x01\x02\x02\x05\x04\x03\x05\x04\x01", // 𦮌
+ 0x26b8d: "\x01\x02\x01\x02\x03\x05\x01\x02\x05\x02", // 𦮍
+ 0x26b8e: "\x01\x02\x01\x02\x01\x02\x02\x01\x03\x04", // 𦮎
+ 0x26b8f: "\x01\x02\x01\x02\x02\x05\x02\x05\x02\x05", // 𦮏
+ 0x26b90: "\x01\x02\x01\x02\x05\x05\x04\x01\x03\x04", // 𦮐
+ 0x26b91: "\x01\x02\x01\x02\x05\x01\x01\x02\x05\x01", // 𦮑
+ 0x26b92: "\x01\x02\x01\x02\x01\x01\x02\x01\x05\x02", // 𦮒
+ 0x26b93: "\x01\x02\x01\x02\x03\x04\x03\x04\x02\x02", // 𦮓
+ 0x26b94: "\x01\x02\x02\x03\x05\x04\x01\x05\x02", // 𦮔
+ 0x26b95: "\x01\x02\x02\x03\x04\x02\x04\x04\x04", // 𦮕
+ 0x26b96: "\x01\x02\x01\x02\x01\x01\x02\x03\x05\x04", // 𦮖
+ 0x26b97: "\x01\x02\x01\x02\x02\x05\x05\x03\x01\x01", // 𦮗
+ 0x26b98: "\x01\x02\x01\x02\x05\x03\x01\x03\x01\x02", // 𦮘
+ 0x26b99: "\x01\x02\x01\x02\x03\x04\x05\x02\x05\x02\x02\x05\x02\x05", // 𦮙
+ 0x26b9a: "\x01\x02\x01\x02\x02\x04\x03\x01\x05\x04", // 𦮚
+ 0x26b9b: "\x01\x02\x01\x02\x04\x04\x01\x03\x05\x04", // 𦮛
+ 0x26b9c: "\x01\x02\x01\x02\x04\x05\x04\x04\x01\x02", // 𦮜
+ 0x26b9d: "\x01\x02\x01\x02\x04\x04\x02\x04\x01\x05", // 𦮝
+ 0x26b9e: "\x01\x02\x01\x02\x04\x01\x05\x02\x03\x04", // 𦮞
+ 0x26b9f: "\x01\x02\x01\x02\x04\x04\x01\x04\x03\x04", // 𦮟
+ 0x26ba0: "\x01\x02\x01\x02\x01\x03\x01\x05\x03\x04", // 𦮠
+ 0x26ba1: "\x01\x02\x01\x02\x05\x04\x02\x04\x04\x04", // 𦮡
+ 0x26ba2: "\x01\x02\x01\x02\x01\x02\x01\x03\x05\x04", // 𦮢
+ 0x26ba3: "\x01\x02\x01\x02\x02\x05\x01\x01\x01\x02", // 𦮣
+ 0x26ba4: "\x01\x02\x01\x02\x03\x05\x04\x05\x04\x04", // 𦮤
+ 0x26ba5: "\x01\x02\x01\x02\x02\x05\x01\x01\x03\x04", // 𦮥
+ 0x26ba6: "\x01\x02\x01\x02\x03\x05\x03\x05\x02", // 𦮦
+ 0x26ba7: "\x01\x02\x01\x02\x03\x05\x04\x01\x01\x02", // 𦮧
+ 0x26ba8: "\x01\x02\x01\x02\x05\x05\x05\x01\x02\x01", // 𦮨
+ 0x26ba9: "\x01\x02\x01\x02\x03\x02\x04\x05\x04", // 𦮩
+ 0x26baa: "\x01\x02\x01\x02\x03\x02\x03\x05\x05\x03", // 𦮪
+ 0x26bab: "\x01\x02\x01\x02\x03\x04\x04\x01\x03\x04", // 𦮫
+ 0x26bac: "\x01\x02\x01\x02\x03\x02\x03\x03\x01\x02", // 𦮬
+ 0x26bad: "\x01\x02\x01\x02\x03\x04\x02\x05\x03\x04", // 𦮭
+ 0x26bae: "\x01\x02\x01\x02\x04\x01\x03\x01\x03\x04", // 𦮮
+ 0x26baf: "\x01\x02\x01\x02\x03\x05\x01\x01\x02\x02", // 𦮯
+ 0x26bb0: "\x01\x02\x02\x04\x01\x03\x02\x03\x04", // 𦮰
+ 0x26bb1: "\x01\x02\x02\x03\x05\x01\x01\x02\x01", // 𦮱
+ 0x26bb2: "\x01\x02\x02\x04\x05\x02\x04\x05", // 𦮲
+ 0x26bb3: "\x01\x02\x01\x02\x03\x04\x02\x01\x02\x01", // 𦮳
+ 0x26bb4: "\x01\x02\x02\x03\x01\x01\x02\x01\x02", // 𦮴
+ 0x26bb5: "\x01\x02\x01\x02\x05\x01\x01\x02\x03\x04", // 𦮵
+ 0x26bb6: "\x01\x02\x02\x02\x05\x01\x03\x05\x03\x03", // 𦮶
+ 0x26bb7: "\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x04", // 𦮷
+ 0x26bb8: "\x01\x02\x01\x02\x05\x04\x03\x01\x01\x03\x04", // 𦮸
+ 0x26bb9: "\x01\x02\x01\x02\x01\x03\x04\x05\x02\x01\x05", // 𦮹
+ 0x26bba: "\x01\x02\x01\x02\x03\x01\x02\x03\x04\x05\x04", // 𦮺
+ 0x26bbb: "\x01\x02\x01\x02\x02\x05\x01\x03\x05\x04\x01", // 𦮻
+ 0x26bbc: "\x01\x02\x01\x02\x05\x01\x05\x04\x05\x04\x04", // 𦮼
+ 0x26bbd: "\x01\x02\x01\x02\x03\x01\x02\x01\x02\x05\x01", // 𦮽
+ 0x26bbe: "\x01\x02\x01\x02\x01\x02\x01\x02\x05\x03\x04", // 𦮾
+ 0x26bbf: "\x01\x02\x01\x02\x03\x05\x02\x05\x01\x05\x03", // 𦮿
+ 0x26bc0: "\x01\x02\x01\x02\x03\x05\x05\x03\x01\x02\x01", // 𦯀
+ 0x26bc1: "\x01\x02\x01\x02\x02\x05\x01\x05\x02\x05\x01", // 𦯁
+ 0x26bc2: "\x01\x02\x02\x04\x01\x03\x04\x02\x03\x04", // 𦯂
+ 0x26bc3: "\x01\x02\x01\x02\x05\x01\x03\x05\x02\x05\x01", // 𦯃
+ 0x26bc4: "\x01\x02\x01\x02\x01\x03\x01\x05\x02\x05\x01", // 𦯄
+ 0x26bc5: "\x01\x02\x01\x02\x04\x01\x03\x05\x04\x05\x02", // 𦯅
+ 0x26bc6: "\x01\x02\x01\x02\x05\x01\x05\x01\x02\x05\x01", // 𦯆
+ 0x26bc7: "\x01\x02\x01\x02\x04\x01\x02\x05\x01\x03\x05", // 𦯇
+ 0x26bc8: "\x01\x02\x01\x02\x05\x01\x01\x04\x05\x05\x04", // 𦯈
+ 0x26bc9: "\x01\x02\x01\x02\x03\x02\x03\x02\x05\x01\x01", // 𦯉
+ 0x26bca: "\x01\x02\x01\x02\x04\x04\x01\x05\x01\x03\x04", // 𦯊
+ 0x26bcb: "\x01\x02\x01\x02\x01\x02\x01\x05\x03\x01\x01", // 𦯋
+ 0x26bcc: "\x01\x02\x01\x02\x03\x04\x05\x04\x05\x04\x04", // 𦯌
+ 0x26bcd: "\x01\x02\x01\x02\x01\x02\x02\x01\x01\x01\x05", // 𦯍
+ 0x26bce: "\x01\x02\x01\x02\x03\x02\x05\x03\x05\x04\x01", // 𦯎
+ 0x26bcf: "\x01\x02\x01\x02\x05\x03\x01\x01\x03\x05\x05\x03", // 𦯏
+ 0x26bd0: "\x01\x02\x02\x03\x02\x05\x03\x02\x05\x01", // 𦯐
+ 0x26bd1: "\x01\x02\x01\x02\x03\x02\x05\x01\x01\x01\x02", // 𦯑
+ 0x26bd2: "\x01\x02\x01\x02\x03\x02\x03\x05\x05\x02", // 𦯒
+ 0x26bd3: "\x01\x02\x01\x02\x05\x02\x02\x05\x01\x01\x01", // 𦯓
+ 0x26bd4: "\x01\x02\x01\x02\x04\x03\x05\x01\x05\x02\x03", // 𦯔
+ 0x26bd5: "\x01\x02\x01\x02\x04\x04\x05\x01\x02\x03\x04", // 𦯕
+ 0x26bd6: "\x01\x02\x01\x02\x02\x05\x01\x01\x01\x02\x01", // 𦯖
+ 0x26bd7: "\x01\x02\x02\x01\x01\x02\x05\x02\x05\x01", // 𦯗
+ 0x26bd8: "\x01\x02\x01\x02\x01\x04\x03\x03\x04\x05\x04", // 𦯘
+ 0x26bd9: "\x01\x02\x01\x02\x01\x02\x01\x01\x05\x02\x03", // 𦯙
+ 0x26bda: "\x01\x02\x01\x02\x03\x05\x01\x05\x02\x05\x01", // 𦯚
+ 0x26bdb: "\x01\x02\x01\x02\x02\x05\x03\x04\x01\x03\x02", // 𦯛
+ 0x26bdc: "\x01\x02\x01\x02\x03\x02\x05\x01\x01\x03\x05", // 𦯜
+ 0x26bdd: "\x01\x02\x01\x02\x02\x01\x02\x01\x02\x03\x04", // 𦯝
+ 0x26bde: "\x01\x02\x01\x02\x01\x03\x02\x05\x01\x01\x02", // 𦯞
+ 0x26bdf: "\x01\x02\x01\x02\x03\x05\x04\x01\x01\x01\x05", // 𦯟
+ 0x26be0: "\x01\x02\x01\x02\x03\x01\x02\x02\x05\x01\x05", // 𦯠
+ 0x26be1: "\x01\x02\x01\x02\x05\x01\x05\x04\x05\x04\x04", // 𦯡
+ 0x26be2: "\x01\x02\x01\x02\x01\x03\x05\x04\x05\x01\x05", // 𦯢
+ 0x26be3: "\x01\x02\x01\x02\x03\x02\x02\x05\x01\x01\x01", // 𦯣
+ 0x26be4: "\x05\x02\x03\x05\x02\x02\x01\x03\x04\x02\x01\x01", // 𦯤
+ 0x26be5: "\x05\x02\x03\x05\x02\x02\x04\x04\x05\x01\x05\x05\x01", // 𦯥
+ 0x26be6: "\x05\x02\x03\x05\x02\x02\x03\x02\x05\x01\x01\x03\x05", // 𦯦
+ 0x26be7: "\x01\x02\x02\x04\x01\x05\x04\x01\x02\x03\x04", // 𦯧
+ 0x26be8: "\x01\x02\x01\x02\x05\x04\x01\x02\x01\x03\x02", // 𦯨
+ 0x26be9: "\x01\x02\x01\x02\x05\x04\x05\x04\x03\x05\x04", // 𦯩
+ 0x26bea: "\x01\x02\x01\x02\x01\x02\x03\x04\x03\x05\x04", // 𦯪
+ 0x26beb: "\x01\x02\x01\x02\x04\x04\x01\x01\x05\x05\x04", // 𦯫
+ 0x26bec: "\x01\x02\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 𦯬
+ 0x26bed: "\x01\x02\x01\x02\x02\x05\x01\x05\x01\x05", // 𦯭
+ 0x26bee: "\x01\x02\x01\x02\x01\x03\x04\x03\x01\x01\x05", // 𦯮
+ 0x26bef: "\x01\x02\x01\x02\x02\x05\x03\x04\x03\x04\x01", // 𦯯
+ 0x26bf0: "\x01\x02\x01\x02\x01\x03\x01\x03\x02\x05\x01", // 𦯰
+ 0x26bf1: "\x01\x02\x01\x02\x03\x02\x01\x02\x05\x01\x02\x05", // 𦯱
+ 0x26bf2: "\x01\x02\x01\x02\x03\x05\x05\x03\x01\x03\x05", // 𦯲
+ 0x26bf3: "\x01\x02\x01\x02\x03\x05\x05\x03\x01\x03\x02", // 𦯳
+ 0x26bf4: "\x01\x02\x01\x02\x05\x01\x03\x05\x03\x03\x04", // 𦯴
+ 0x26bf5: "\x01\x02\x01\x02\x03\x02\x05\x01\x01\x03\x05", // 𦯵
+ 0x26bf6: "\x01\x02\x02\x02\x05\x03\x04\x02\x05\x01", // 𦯶
+ 0x26bf7: "\x01\x02\x01\x02\x05\x03\x01\x02\x03\x04\x03", // 𦯷
+ 0x26bf8: "\x01\x02\x01\x02\x05\x01\x05\x01\x03\x01\x02", // 𦯸
+ 0x26bf9: "\x01\x02\x01\x02\x04\x04\x01\x04\x05\x04\x04", // 𦯹
+ 0x26bfa: "\x01\x02\x01\x02\x04\x01\x04\x03\x05\x03\x01", // 𦯺
+ 0x26bfb: "\x01\x02\x01\x02\x04\x04\x01\x04\x01\x03\x04", // 𦯻
+ 0x26bfc: "\x01\x02\x01\x02\x04\x05\x03\x05\x01\x01\x02", // 𦯼
+ 0x26bfd: "\x01\x02\x01\x02\x04\x05\x04\x04\x05\x03\x01", // 𦯽
+ 0x26bfe: "\x01\x02\x01\x02\x04\x01\x05\x05\x02\x05\x01", // 𦯾
+ 0x26bff: "\x01\x02\x01\x02\x01\x01\x03\x05\x01\x02\x04", // 𦯿
+ 0x26c00: "\x01\x02\x01\x02\x01\x02\x01\x03\x04\x03\x05\x04", // 𦰀
+ 0x26c01: "\x01\x02\x01\x02\x01\x02\x03\x04\x05\x02\x01", // 𦰁
+ 0x26c02: "\x01\x02\x01\x02\x01\x02\x01\x04\x03\x03\x04", // 𦰂
+ 0x26c03: "\x01\x02\x01\x02\x01\x03\x04\x01\x01\x03\x02", // 𦰃
+ 0x26c04: "\x01\x02\x01\x02\x01\x02\x01\x03\x04\x01\x05", // 𦰄
+ 0x26c05: "\x01\x02\x01\x02\x01\x03\x01\x05\x02\x05\x01", // 𦰅
+ 0x26c06: "\x01\x02\x01\x02\x05\x03\x02\x05\x02\x02\x01", // 𦰆
+ 0x26c07: "\x01\x02\x01\x02\x02\x05\x01\x01\x05\x03\x01", // 𦰇
+ 0x26c08: "\x01\x02\x01\x02\x02\x05\x01\x03\x04\x04\x04", // 𦰈
+ 0x26c09: "\x01\x02\x01\x02\x02\x05\x01\x02\x05\x01\x05", // 𦰉
+ 0x26c0a: "\x01\x02\x01\x02\x04\x05\x03\x05\x05\x02\x01", // 𦰊
+ 0x26c0b: "\x01\x02\x01\x02\x02\x05\x02\x02\x01\x03\x05", // 𦰋
+ 0x26c0c: "\x01\x02\x01\x02\x02\x05\x01\x01\x01\x02\x01", // 𦰌
+ 0x26c0d: "\x01\x02\x01\x02\x03\x05\x04\x02\x04\x04\x04", // 𦰍
+ 0x26c0e: "\x01\x02\x01\x02\x03\x01\x03\x04\x03\x05\x04", // 𦰎
+ 0x26c0f: "\x01\x02\x01\x02\x03\x05\x04\x01\x02\x03\x04", // 𦰏
+ 0x26c10: "\x01\x02\x01\x02\x03\x02\x03\x04\x01\x05\x04", // 𦰐
+ 0x26c11: "\x01\x02\x01\x02\x03\x05\x04\x05\x03\x05\x04", // 𦰑
+ 0x26c12: "\x01\x02\x01\x02\x03\x02\x01\x03\x02\x05\x01", // 𦰒
+ 0x26c13: "\x01\x02\x01\x02\x05\x03\x01\x05\x05\x03\x01", // 𦰓
+ 0x26c14: "\x01\x02\x01\x02\x03\x05\x04\x01\x02\x03\x04", // 𦰔
+ 0x26c15: "\x01\x02\x01\x02\x05\x03\x01\x01\x02\x03\x04", // 𦰕
+ 0x26c16: "\x01\x02\x01\x02\x01\x02\x01\x01\x03\x05\x05\x03", // 𦰖
+ 0x26c17: "\x01\x02\x01\x02\x01\x02\x02\x01\x05\x01\x02", // 𦰗
+ 0x26c18: "\x01\x02\x01\x02\x01\x03\x03\x05\x01\x05\x01", // 𦰘
+ 0x26c19: "\x01\x02\x01\x02\x01\x05\x01\x05\x01\x03\x02", // 𦰙
+ 0x26c1a: "\x01\x02\x02\x04\x04\x01\x03\x01\x03\x04", // 𦰚
+ 0x26c1b: "\x01\x02\x01\x02\x04\x04\x01\x03\x05\x05\x03", // 𦰛
+ 0x26c1c: "\x01\x02\x02\x05\x02\x03\x01\x05\x02\x05", // 𦰜
+ 0x26c1d: "\x01\x02\x01\x02\x02\x05\x01\x02\x01\x01\x05", // 𦰝
+ 0x26c1e: "\x01\x02\x01\x02\x03\x02\x02\x02\x01\x05\x04", // 𦰞
+ 0x26c1f: "\x01\x02\x02\x05\x02\x01\x01\x03\x05", // 𦰟
+ 0x26c20: "\x01\x02\x02\x03\x04\x05\x04\x01\x03\x02", // 𦰠
+ 0x26c21: "\x01\x02\x01\x02\x05\x01\x01\x03\x05\x02", // 𦰡
+ 0x26c22: "\x01\x02\x02\x03\x05\x01\x01\x05\x02", // 𦰢
+ 0x26c23: "\x01\x02\x02\x03\x02\x03\x05\x01\x05\x04", // 𦰣
+ 0x26c24: "\x01\x02\x02\x04\x04\x05\x03\x01\x01\x02", // 𦰤
+ 0x26c25: "\x01\x02\x02\x03\x01\x01\x03\x05\x02", // 𦰥
+ 0x26c26: "\x01\x02\x02\x05\x01\x05\x03\x01\x03\x04", // 𦰦
+ 0x26c27: "\x01\x02\x01\x02\x01\x05\x04\x01\x02\x03\x04", // 𦰧
+ 0x26c28: "\x01\x02\x02\x01\x02\x05\x01\x01\x05\x04", // 𦰨
+ 0x26c29: "\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 𦰩
+ 0x26c2a: "\x01\x02\x01\x02\x04\x04\x01\x02\x05\x03\x04\x01", // 𦰪
+ 0x26c2b: "\x01\x02\x01\x02\x04\x04\x01\x05\x01\x03\x01\x05", // 𦰫
+ 0x26c2c: "\x01\x02\x01\x02\x03\x02\x05\x01\x01\x02\x05\x02", // 𦰬
+ 0x26c2d: "\x01\x02\x01\x02\x01\x05\x02\x05\x04\x05\x04", // 𦰭
+ 0x26c2e: "\x01\x02\x01\x02\x01\x03\x04\x03\x05\x05\x01\x05", // 𦰮
+ 0x26c2f: "\x01\x02\x01\x02\x05\x03\x01\x05\x04\x02\x05\x01", // 𦰯
+ 0x26c30: "\x01\x02\x01\x02\x05\x03\x01\x03\x05\x02\x05\x01", // 𦰰
+ 0x26c31: "\x01\x02\x01\x02\x02\x04\x03\x02\x05\x02\x05\x01", // 𦰱
+ 0x26c32: "\x01\x02\x01\x02\x02\x05\x01\x01\x01\x01\x01\x02", // 𦰲
+ 0x26c33: "\x01\x02\x01\x02\x01\x02\x03\x04\x01\x05\x02\x03", // 𦰳
+ 0x26c34: "\x01\x02\x01\x02\x05\x01\x05\x03\x05\x02\x03\x04", // 𦰴
+ 0x26c35: "\x01\x02\x01\x02\x03\x05\x04\x03\x05\x04\x02\x02", // 𦰵
+ 0x26c36: "\x01\x02\x01\x02\x01\x02\x01\x03\x05\x02\x05\x01", // 𦰶
+ 0x26c37: "\x01\x02\x01\x02\x04\x05\x04\x03\x04\x02\x05\x02", // 𦰷
+ 0x26c38: "\x01\x02\x01\x02\x01\x03\x05\x04\x04\x05\x04\x04", // 𦰸
+ 0x26c39: "\x01\x02\x01\x02\x03\x04\x04\x03\x04\x05\x05\x04", // 𦰹
+ 0x26c3a: "\x01\x02\x01\x02\x03\x02\x05\x01\x05\x01\x01\x02", // 𦰺
+ 0x26c3b: "\x01\x02\x01\x02\x01\x02\x03\x04\x03\x05\x03\x04", // 𦰻
+ 0x26c3c: "\x01\x02\x01\x02\x05\x02\x03\x01\x02\x01\x01", // 𦰼
+ 0x26c3d: "\x01\x02\x01\x02\x01\x02\x01\x05\x03\x02\x05\x04", // 𦰽
+ 0x26c3e: "\x01\x02\x01\x02\x05\x03\x01\x03\x05\x05\x01\x05", // 𦰾
+ 0x26c3f: "\x01\x02\x01\x02\x03\x02\x03\x05\x04\x03\x05\x04", // 𦰿
+ 0x26c40: "\x01\x02\x01\x02\x01\x05\x04\x03\x05\x04\x01", // 𦱀
+ 0x26c41: "\x01\x02\x01\x02\x05\x01\x05\x04\x01\x05\x05\x04", // 𦱁
+ 0x26c42: "\x01\x02\x01\x02\x01\x02\x05\x01\x01\x05\x03\x04", // 𦱂
+ 0x26c43: "\x01\x02\x01\x02\x01\x01\x02\x02\x05\x02\x02\x01", // 𦱃
+ 0x26c44: "\x01\x02\x01\x02\x03\x05\x03\x03\x03\x05\x04\x04", // 𦱄
+ 0x26c45: "\x01\x02\x01\x02\x05\x01\x03\x01\x02\x02\x05\x01", // 𦱅
+ 0x26c46: "\x01\x02\x02\x05\x02\x04\x04\x05\x03\x05", // 𦱆
+ 0x26c47: "\x01\x02\x01\x02\x04\x04\x05\x03\x05\x01\x02\x01", // 𦱇
+ 0x26c48: "\x01\x02\x01\x02\x04\x04\x01\x01\x02\x03\x05\x04", // 𦱈
+ 0x26c49: "\x01\x02\x01\x02\x03\x02\x01\x01\x05\x01\x01\x05", // 𦱉
+ 0x26c4a: "\x01\x02\x01\x02\x03\x04\x04\x03\x05\x01\x01\x02", // 𦱊
+ 0x26c4b: "\x01\x02\x01\x02\x04\x01\x05\x02\x05\x01\x01\x01", // 𦱋
+ 0x26c4c: "\x01\x02\x01\x02\x02\x05\x04\x03\x01\x02\x05\x02", // 𦱌
+ 0x26c4d: "\x01\x02\x01\x02\x01\x02\x03\x05\x01\x02\x03\x05", // 𦱍
+ 0x26c4e: "\x01\x02\x01\x02\x03\x02\x01\x02\x01\x01\x02\x04", // 𦱎
+ 0x26c4f: "\x01\x02\x02\x01\x03\x04\x04\x03\x03\x05\x04", // 𦱏
+ 0x26c50: "\x01\x02\x01\x02\x03\x01\x02\x03\x04\x04\x01\x05", // 𦱐
+ 0x26c51: "\x01\x02\x01\x02\x03\x01\x02\x03\x04\x02\x05\x02", // 𦱑
+ 0x26c52: "\x01\x02\x01\x02\x03\x01\x02\x01\x03\x01\x03\x04", // 𦱒
+ 0x26c53: "\x01\x02\x01\x02\x02\x05\x01\x02\x01\x01\x03\x02", // 𦱓
+ 0x26c54: "\x01\x02\x01\x02\x03\x05\x04\x01\x01\x05\x01\x05", // 𦱔
+ 0x26c55: "\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x01\x02", // 𦱕
+ 0x26c56: "\x01\x02\x01\x02\x05\x02\x03\x02\x01\x02\x04", // 𦱖
+ 0x26c57: "\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01", // 𦱗
+ 0x26c58: "\x01\x02\x01\x02\x01\x01\x03\x05\x04\x01\x05\x03", // 𦱘
+ 0x26c59: "\x01\x02\x01\x02\x03\x05\x04\x01\x05\x02\x01\x01", // 𦱙
+ 0x26c5a: "\x01\x02\x01\x02\x01\x01\x05\x04\x01\x01\x05\x04", // 𦱚
+ 0x26c5b: "\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x05\x04", // 𦱛
+ 0x26c5c: "\x01\x02\x01\x02\x03\x01\x02\x03\x04\x03\x05\x04", // 𦱜
+ 0x26c5d: "\x01\x02\x02\x05\x05\x05\x03\x05\x04\x02\x02", // 𦱝
+ 0x26c5e: "\x01\x02\x01\x02\x05\x02\x03\x05\x05\x04\x01\x04", // 𦱞
+ 0x26c5f: "\x01\x02\x01\x02\x02\x05\x03\x04\x01\x03\x05\x04", // 𦱟
+ 0x26c60: "\x05\x02\x03\x05\x02\x02\x05\x03\x05\x02\x03\x05\x02\x02", // 𦱠
+ 0x26c61: "\x05\x02\x02\x05\x02\x03\x05\x02\x02\x02\x05\x01\x05\x02", // 𦱡
+ 0x26c62: "\x05\x02\x02\x05\x02\x03\x05\x02\x02\x02\x05\x01\x05\x05", // 𦱢
+ 0x26c63: "\x01\x02\x01\x02\x04\x01\x05\x02\x05\x02\x02\x01", // 𦱣
+ 0x26c64: "\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x01\x02", // 𦱤
+ 0x26c65: "\x01\x02\x01\x02\x01\x05\x01\x01\x02\x01\x02\x01", // 𦱥
+ 0x26c66: "\x01\x02\x01\x02\x03\x01\x02\x05\x01\x02\x01\x01", // 𦱦
+ 0x26c67: "\x05\x02\x02\x05\x02\x03\x05\x02\x02\x01\x02\x03\x04\x01", // 𦱧
+ 0x26c68: "\x01\x02\x01\x02\x05\x01\x05\x03\x04\x02\x03\x04", // 𦱨
+ 0x26c69: "\x01\x02\x01\x02\x03\x05\x02\x05\x01\x05\x04\x01", // 𦱩
+ 0x26c6a: "\x01\x02\x01\x02\x05\x02\x01\x01\x05\x02\x01\x01", // 𦱪
+ 0x26c6b: "\x01\x02\x01\x02\x02\x05\x01\x05\x02\x05\x02\x01", // 𦱫
+ 0x26c6c: "\x01\x02\x01\x02\x05\x04\x03\x03\x04\x01\x02\x01", // 𦱬
+ 0x26c6d: "\x01\x02\x01\x02\x05\x03\x01\x05\x01\x03\x02", // 𦱭
+ 0x26c6e: "\x01\x02\x01\x02\x03\x01\x05\x01\x01\x02\x03\x04", // 𦱮
+ 0x26c6f: "\x01\x02\x01\x02\x01\x03\x01\x01\x02\x03\x05\x01", // 𦱯
+ 0x26c70: "\x01\x02\x01\x02\x01\x02\x01\x01\x02\x04\x02\x02", // 𦱰
+ 0x26c71: "\x01\x02\x02\x02\x05\x01\x05\x01\x01\x03\x02", // 𦱱
+ 0x26c72: "\x01\x02\x01\x02\x05\x01\x03\x02\x05\x02\x01\x01", // 𦱲
+ 0x26c73: "\x01\x02\x01\x02\x05\x05\x04\x05\x05\x04\x05\x02", // 𦱳
+ 0x26c74: "\x05\x02\x03\x05\x02\x02\x01\x05\x02\x03\x01\x03\x02\x02", // 𦱴
+ 0x26c75: "\x01\x02\x01\x02\x02\x05\x03\x01\x01\x03\x04\x01", // 𦱵
+ 0x26c76: "\x05\x02\x03\x05\x02\x03\x05\x02\x02\x02\x05\x02\x01\x01", // 𦱶
+ 0x26c77: "\x01\x02\x01\x02\x01\x03\x02\x04\x04\x04\x04\x04", // 𦱷
+ 0x26c78: "\x01\x02\x01\x02\x03\x02\x01\x01\x05\x01\x01\x02", // 𦱸
+ 0x26c79: "\x05\x02\x03\x05\x02\x02\x03\x04\x05\x02\x03\x05\x02\x02", // 𦱹
+ 0x26c7a: "\x05\x02\x02\x05\x02\x03\x05\x02\x02\x03\x04\x04\x01\x05", // 𦱺
+ 0x26c7b: "\x01\x02\x01\x02\x05\x04\x05\x02\x04\x04\x04\x04", // 𦱻
+ 0x26c7c: "\x01\x02\x01\x02\x01\x03\x03\x05\x01\x05", // 𦱼
+ 0x26c7d: "\x01\x02\x02\x01\x02\x05\x01\x02\x05\x03\x04", // 𦱽
+ 0x26c7e: "\x01\x02\x01\x02\x01\x02\x01\x01\x04\x03\x01\x02", // 𦱾
+ 0x26c7f: "\x01\x02\x01\x02\x03\x03\x02\x02\x03\x01\x03\x04", // 𦱿
+ 0x26c80: "\x01\x02\x01\x02\x04\x04\x02\x05\x04\x02\x05\x01", // 𦲀
+ 0x26c81: "\x01\x02\x01\x02\x05\x03\x01\x05\x01\x03\x03\x05", // 𦲁
+ 0x26c82: "\x01\x02\x01\x02\x04\x01\x04\x03\x01\x03\x05\x04", // 𦲂
+ 0x26c83: "\x01\x02\x01\x02\x01\x02\x01\x03\x05\x04\x05\x04", // 𦲃
+ 0x26c84: "\x01\x02\x01\x02\x04\x04\x05\x03\x05\x05\x01\x05", // 𦲄
+ 0x26c85: "\x01\x02\x01\x02\x05\x01\x01\x04\x05\x02\x05\x02", // 𦲅
+ 0x26c86: "\x01\x02\x01\x02\x01\x01\x02\x03\x05\x02\x05\x01", // 𦲆
+ 0x26c87: "\x01\x02\x01\x02\x03\x05\x03\x03\x01\x03\x01\x02", // 𦲇
+ 0x26c88: "\x01\x02\x01\x02\x03\x04\x03\x02\x01\x03\x01\x02", // 𦲈
+ 0x26c89: "\x01\x02\x01\x02\x04\x04\x01\x01\x02\x02\x01\x05", // 𦲉
+ 0x26c8a: "\x01\x02\x01\x02\x04\x03\x03\x04\x03\x05\x01\x03", // 𦲊
+ 0x26c8b: "\x01\x02\x01\x02\x04\x05\x03\x05\x04\x01\x05\x02", // 𦲋
+ 0x26c8c: "\x01\x02\x01\x02\x04\x03\x03\x04\x04\x03\x03\x04", // 𦲌
+ 0x26c8d: "\x01\x02\x01\x02\x04\x04\x01\x04\x03\x01\x03\x04", // 𦲍
+ 0x26c8e: "\x01\x02\x01\x02\x04\x04\x05\x03\x05\x03\x05\x04", // 𦲎
+ 0x26c8f: "\x01\x02\x01\x02\x03\x05\x01\x03\x04\x01\x05\x03", // 𦲏
+ 0x26c90: "\x01\x02\x01\x02\x01\x02\x05\x01\x02\x02\x05\x02", // 𦲐
+ 0x26c91: "\x01\x02\x01\x02\x01\x01\x03\x04\x02\x05\x03\x04", // 𦲑
+ 0x26c92: "\x01\x02\x01\x02\x01\x03\x01\x02\x01\x01\x02\x01", // 𦲒
+ 0x26c93: "\x01\x02\x01\x02\x01\x02\x03\x04\x04\x04\x04\x04", // 𦲓
+ 0x26c94: "\x01\x02\x01\x02\x01\x02\x05\x04\x01\x02\x05\x04", // 𦲔
+ 0x26c95: "\x01\x02\x01\x02\x01\x02\x01\x05\x05\x01\x02\x01", // 𦲕
+ 0x26c96: "\x01\x02\x01\x02\x01\x01\x02\x01\x03\x04\x01\x05", // 𦲖
+ 0x26c97: "\x01\x02\x01\x02\x05\x01\x01\x05\x03\x05\x05\x04", // 𦲗
+ 0x26c98: "\x02\x01\x02\x01\x01\x03\x05\x05\x04\x03\x05\x04", // 𦲘
+ 0x26c99: "\x01\x02\x01\x02\x05\x01\x01\x01\x02\x05\x03\x04", // 𦲙
+ 0x26c9a: "\x01\x02\x01\x02\x05\x02\x01\x03\x01\x03\x04\x04", // 𦲚
+ 0x26c9b: "\x01\x02\x01\x02\x05\x03\x01\x04\x05\x02\x01\x05", // 𦲛
+ 0x26c9c: "\x01\x02\x01\x02\x04\x05\x04\x04\x01\x02\x03\x04", // 𦲜
+ 0x26c9d: "\x01\x02\x01\x02\x05\x03\x01\x05\x05\x04\x01\x04", // 𦲝
+ 0x26c9e: "\x01\x02\x01\x02\x05\x04\x01\x03\x04\x01\x01\x01", // 𦲞
+ 0x26c9f: "\x01\x02\x01\x02\x03\x01\x01\x02\x05\x02\x02\x02", // 𦲟
+ 0x26ca0: "\x01\x02\x01\x02\x03\x02\x05\x01\x01\x05\x01\x05", // 𦲠
+ 0x26ca1: "\x01\x02\x01\x02\x03\x05\x03\x02\x05\x01\x02\x01", // 𦲡
+ 0x26ca2: "\x01\x02\x01\x02\x03\x01\x02\x02\x01\x02\x03\x04", // 𦲢
+ 0x26ca3: "\x01\x02\x01\x02\x05\x03\x01\x02\x05\x01\x02\x01", // 𦲣
+ 0x26ca4: "\x01\x02\x02\x03\x02\x04\x01\x03\x05\x03\x04", // 𦲤
+ 0x26ca5: "\x01\x02\x01\x02\x03\x05\x03\x02\x05\x01\x02\x01", // 𦲥
+ 0x26ca6: "\x01\x02\x01\x02\x03\x01\x02\x03\x04\x03\x05\x04", // 𦲦
+ 0x26ca7: "\x01\x02\x01\x02\x03\x04\x01\x01\x02\x02\x05\x01", // 𦲧
+ 0x26ca8: "\x01\x02\x01\x02\x05\x03\x01\x04\x01\x04\x03\x01", // 𦲨
+ 0x26ca9: "\x01\x02\x01\x02\x03\x02\x05\x02\x02\x01\x03\x05", // 𦲩
+ 0x26caa: "\x01\x02\x01\x02\x03\x02\x01\x05\x01\x01\x05\x04", // 𦲪
+ 0x26cab: "\x01\x02\x02\x01\x02\x01\x05\x01\x05\x03\x02", // 𦲫
+ 0x26cac: "\x05\x02\x03\x05\x02\x02\x01\x02\x03\x02\x01\x02\x03\x05", // 𦲬
+ 0x26cad: "\x01\x02\x02\x02\x05\x01\x05\x02\x05\x01\x01", // 𦲭
+ 0x26cae: "\x01\x02\x02\x03\x02\x03\x04\x05\x04\x03\x05", // 𦲮
+ 0x26caf: "\x01\x02\x01\x02\x01\x04\x03\x03\x04\x03\x05\x04", // 𦲯
+ 0x26cb0: "\x01\x02\x01\x02\x02\x05\x01\x01\x01\x01\x01\x05", // 𦲰
+ 0x26cb1: "\x01\x02\x02\x03\x02\x01\x02\x04\x01\x03\x02", // 𦲱
+ 0x26cb2: "\x01\x02\x02\x01\x02\x03\x04\x03\x01\x03\x04", // 𦲲
+ 0x26cb3: "\x01\x02\x02\x01\x03\x04\x03\x05\x01\x03\x05", // 𦲳
+ 0x26cb4: "\x01\x02\x02\x03\x02\x03\x05\x04\x01\x03\x04", // 𦲴
+ 0x26cb5: "\x01\x02\x02\x03\x03\x02\x01\x02\x01\x02\x01", // 𦲵
+ 0x26cb6: "\x01\x02\x01\x02\x05\x02\x01\x01\x01\x05\x03\x04", // 𦲶
+ 0x26cb7: "\x01\x02\x01\x02\x04\x04\x01\x04\x01\x04\x03\x01", // 𦲷
+ 0x26cb8: "\x01\x02\x01\x02\x01\x02\x05\x02\x04\x01\x03\x04", // 𦲸
+ 0x26cb9: "\x01\x02\x02\x04\x01\x03\x02\x03\x05\x04\x04", // 𦲹
+ 0x26cba: "\x01\x02\x02\x03\x02\x01\x02\x05\x01\x03\x04", // 𦲺
+ 0x26cbb: "\x01\x02\x02\x03\x04\x04\x03\x01\x01\x02\x01", // 𦲻
+ 0x26cbc: "\x01\x02\x02\x05\x03\x01\x01\x03\x02\x05\x01", // 𦲼
+ 0x26cbd: "\x01\x02\x01\x02\x03\x03\x01\x02\x03\x05\x03\x04", // 𦲽
+ 0x26cbe: "\x01\x02\x02\x04\x04\x01\x01\x02\x01\x05\x04", // 𦲾
+ 0x26cbf: "\x01\x02\x01\x02\x02\x05\x02\x02\x01\x01\x03\x05", // 𦲿
+ 0x26cc0: "\x01\x02\x01\x02\x05\x03\x01\x01\x01\x02\x03\x04", // 𦳀
+ 0x26cc1: "\x01\x02\x01\x02\x03\x01\x02\x03\x04\x03\x01\x01\x05", // 𦳁
+ 0x26cc2: "\x01\x02\x01\x02\x04\x04\x01\x01\x05\x01\x05\x03\x04", // 𦳂
+ 0x26cc3: "\x01\x02\x01\x02\x01\x02\x02\x01\x01\x01\x05\x02", // 𦳃
+ 0x26cc4: "\x01\x02\x01\x02\x03\x02\x01\x02\x05\x01\x01\x03\x04", // 𦳄
+ 0x26cc5: "\x01\x02\x01\x02\x04\x01\x03\x02\x05\x01\x01\x03\x04", // 𦳅
+ 0x26cc6: "\x01\x02\x01\x02\x04\x01\x03\x04\x02\x05\x01\x03\x05", // 𦳆
+ 0x26cc7: "\x01\x02\x01\x02\x04\x04\x02\x01\x01\x02\x02\x05\x01", // 𦳇
+ 0x26cc8: "\x01\x02\x01\x02\x02\x05\x01\x02\x01\x01\x05\x01\x05", // 𦳈
+ 0x26cc9: "\x01\x02\x01\x02\x05\x02\x01\x03\x03\x05\x01\x01", // 𦳉
+ 0x26cca: "\x01\x02\x01\x02\x02\x05\x03\x04\x04\x04\x04\x04\x01", // 𦳊
+ 0x26ccb: "\x01\x02\x01\x02\x02\x01\x02\x05\x01\x02\x02\x05\x04", // 𦳋
+ 0x26ccc: "\x01\x02\x01\x02\x03\x05\x05\x01\x01\x04\x05\x04\x04", // 𦳌
+ 0x26ccd: "\x01\x02\x01\x02\x03\x05\x04\x01\x03\x03\x05\x04\x04", // 𦳍
+ 0x26cce: "\x01\x02\x01\x02\x03\x05\x04\x01\x02\x05\x01\x01\x01", // 𦳎
+ 0x26ccf: "\x01\x02\x01\x02\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 𦳏
+ 0x26cd0: "\x01\x02\x01\x02\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 𦳐
+ 0x26cd1: "\x01\x02\x01\x02\x01\x02\x02\x01\x01\x01\x02\x03\x04", // 𦳑
+ 0x26cd2: "\x01\x02\x01\x02\x05\x01\x01\x02\x01\x04\x03\x03\x04", // 𦳒
+ 0x26cd3: "\x01\x02\x01\x02\x03\x02\x05\x01\x01\x01\x05\x03\x05", // 𦳓
+ 0x26cd4: "\x01\x02\x01\x02\x04\x01\x03\x01\x02\x02\x01\x05\x04", // 𦳔
+ 0x26cd5: "\x01\x02\x01\x02\x02\x05\x01\x01\x01\x02\x01\x03\x02", // 𦳕
+ 0x26cd6: "\x01\x02\x01\x02\x02\x05\x02\x05\x01\x04\x05\x04", // 𦳖
+ 0x26cd7: "\x01\x02\x01\x02\x02\x03\x04\x03\x02\x05\x01\x01\x01", // 𦳗
+ 0x26cd8: "\x01\x02\x02\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 𦳘
+ 0x26cd9: "\x01\x02\x01\x02\x01\x05\x04\x01\x02\x01\x03\x05\x04", // 𦳙
+ 0x26cda: "\x01\x02\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04", // 𦳚
+ 0x26cdb: "\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x02\x03\x05", // 𦳛
+ 0x26cdc: "\x01\x02\x01\x02\x05\x01\x05\x01\x05\x02\x05\x01\x01", // 𦳜
+ 0x26cdd: "\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 𦳝
+ 0x26cde: "\x01\x02\x01\x02\x03\x01\x01\x02\x01\x01\x01\x01\x02", // 𦳞
+ 0x26cdf: "\x01\x02\x01\x02\x02\x05\x02\x04\x03\x01\x01\x01\x02", // 𦳟
+ 0x26ce0: "\x01\x02\x01\x02\x05\x04\x03\x03\x04\x03\x05\x05\x04", // 𦳠
+ 0x26ce1: "\x01\x02\x01\x02\x03\x04\x04\x03\x05\x01\x05\x05\x04", // 𦳡
+ 0x26ce2: "\x01\x02\x01\x02\x02\x05\x01\x02\x01\x03\x05\x04\x01", // 𦳢
+ 0x26ce3: "\x01\x02\x01\x02\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 𦳣
+ 0x26ce4: "\x01\x02\x01\x02\x03\x05\x05\x01\x05\x04\x04\x04\x04", // 𦳤
+ 0x26ce5: "\x01\x02\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04\x03", // 𦳥
+ 0x26ce6: "\x01\x02\x01\x02\x01\x02\x01\x02\x05\x01\x05\x03\x04", // 𦳦
+ 0x26ce7: "\x01\x02\x01\x02\x04\x01\x05\x03\x03\x01\x05\x02\x01", // 𦳧
+ 0x26ce8: "\x01\x02\x01\x02\x05\x03\x01\x01\x03\x05\x03\x03\x03", // 𦳨
+ 0x26ce9: "\x01\x02\x01\x02\x02\x05\x01\x03\x03\x05\x01\x01\x01", // 𦳩
+ 0x26cea: "\x01\x02\x01\x02\x05\x01\x05\x05\x01\x05\x01\x03\x04", // 𦳪
+ 0x26ceb: "\x01\x02\x01\x02\x03\x01\x02\x03\x04\x03\x05\x03\x04", // 𦳫
+ 0x26cec: "\x01\x02\x01\x02\x02\x05\x03\x04\x01\x02\x05\x01\x01", // 𦳬
+ 0x26ced: "\x01\x02\x01\x02\x01\x02\x05\x03\x04\x04\x05\x04", // 𦳭
+ 0x26cee: "\x01\x02\x01\x02\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 𦳮
+ 0x26cef: "\x01\x02\x02\x01\x02\x03\x04\x04\x04\x05\x04", // 𦳯
+ 0x26cf0: "\x01\x02\x01\x02\x04\x05\x01\x03\x01\x02\x01\x05\x04", // 𦳰
+ 0x26cf1: "\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01\x02", // 𦳱
+ 0x26cf2: "\x01\x02\x01\x02\x01\x05\x05\x05\x01\x02\x01\x02\x02", // 𦳲
+ 0x26cf3: "\x01\x02\x01\x02\x05\x01\x01\x01\x01\x02\x03\x03\x03", // 𦳳
+ 0x26cf4: "\x01\x02\x01\x02\x01\x01\x01\x02\x05\x03\x01\x03\x02", // 𦳴
+ 0x26cf5: "\x01\x02\x01\x02\x01\x03\x02\x05\x01\x03\x03\x01\x02", // 𦳵
+ 0x26cf6: "\x01\x02\x01\x02\x04\x01\x05\x02\x05\x01\x02\x01\x04", // 𦳶
+ 0x26cf7: "\x01\x02\x01\x02\x03\x05\x01\x02\x05\x03\x05\x01\x01", // 𦳷
+ 0x26cf8: "\x01\x02\x01\x02\x04\x04\x01\x03\x02\x05\x03\x04\x01", // 𦳸
+ 0x26cf9: "\x01\x02\x02\x05\x03\x01\x01\x03\x05\x03\x05\x04", // 𦳹
+ 0x26cfa: "\x01\x02\x01\x02\x01\x03\x03\x04\x04\x04\x05\x04", // 𦳺
+ 0x26cfb: "\x01\x02\x01\x02\x01\x02\x01\x01\x02\x01\x05\x02", // 𦳻
+ 0x26cfc: "\x01\x02\x01\x02\x04\x03\x03\x04\x01\x02\x05\x03\x04", // 𦳼
+ 0x26cfd: "\x01\x02\x01\x02\x03\x01\x02\x03\x04\x05\x04\x03\x05", // 𦳽
+ 0x26cfe: "\x01\x02\x01\x02\x04\x04\x05\x03\x05\x05\x04\x03\x05", // 𦳾
+ 0x26cff: "\x01\x02\x01\x02\x01\x02\x03\x04\x03\x01\x01\x03\x04", // 𦳿
+ 0x26d00: "\x01\x02\x01\x02\x01\x01\x02\x01\x02\x05\x01\x01\x01", // 𦴀
+ 0x26d01: "\x01\x02\x01\x02\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 𦴁
+ 0x26d02: "\x01\x02\x01\x02\x03\x01\x02\x01\x02\x01\x01\x02\x01", // 𦴂
+ 0x26d03: "\x01\x02\x02\x01\x04\x05\x05\x05\x04\x02\x03\x04", // 𦴃
+ 0x26d04: "\x01\x02\x02\x02\x05\x03\x04\x02\x05\x01\x01\x01", // 𦴄
+ 0x26d05: "\x01\x02\x01\x02\x05\x04\x05\x04\x03\x05\x03\x05\x04", // 𦴅
+ 0x26d06: "\x01\x02\x02\x01\x02\x01\x03\x03\x05\x02\x05\x01", // 𦴆
+ 0x26d07: "\x01\x02\x01\x02\x01\x02\x02\x04\x05\x01\x02\x03\x04", // 𦴇
+ 0x26d08: "\x01\x02\x01\x02\x01\x02\x01\x02\x01\x03\x02\x05\x01", // 𦴈
+ 0x26d09: "\x01\x02\x01\x02\x01\x05\x02\x03\x03\x03\x05\x04\x04", // 𦴉
+ 0x26d0a: "\x01\x02\x01\x02\x01\x03\x05\x04\x02\x05\x01\x03\x04", // 𦴊
+ 0x26d0b: "\x01\x02\x01\x02\x02\x05\x02\x02\x01\x04\x05\x05\x04", // 𦴋
+ 0x26d0c: "\x01\x02\x01\x02\x04\x04\x05\x03\x05\x04\x03\x05\x04", // 𦴌
+ 0x26d0d: "\x01\x02\x01\x02\x02\x05\x01\x02\x01\x04\x05\x02\x05", // 𦴍
+ 0x26d0e: "\x01\x02\x01\x02\x04\x05\x05\x02\x01\x03\x05\x05\x04", // 𦴎
+ 0x26d0f: "\x01\x02\x01\x02\x03\x01\x03\x04\x03\x01\x01\x03\x02", // 𦴏
+ 0x26d10: "\x01\x02\x01\x02\x01\x01\x02\x01\x02\x01\x01\x03\x04", // 𦴐
+ 0x26d11: "\x01\x02\x01\x02\x01\x02\x03\x04\x01\x02\x02\x01\x01", // 𦴑
+ 0x26d12: "\x01\x02\x01\x02\x04\x01\x02\x05\x01\x02\x05\x01\x01", // 𦴒
+ 0x26d13: "\x01\x02\x01\x02\x01\x03\x03\x05\x05\x01\x03\x01\x05", // 𦴓
+ 0x26d14: "\x01\x02\x01\x02\x04\x03\x03\x04\x02\x05\x01\x01\x01", // 𦴔
+ 0x26d15: "\x01\x02\x01\x02\x04\x04\x05\x04\x03\x01\x02\x03\x04", // 𦴕
+ 0x26d16: "\x01\x02\x01\x02\x01\x02\x05\x03\x05\x02\x05\x01\x01", // 𦴖
+ 0x26d17: "\x01\x02\x01\x02\x02\x05\x03\x04\x01\x03\x05\x01\x01", // 𦴗
+ 0x26d18: "\x05\x02\x02\x05\x02\x03\x05\x02\x02\x05\x03\x05\x03\x05\x03", // 𦴘
+ 0x26d19: "\x01\x02\x02\x03\x01\x02\x03\x04\x03\x05\x03\x03", // 𦴙
+ 0x26d1a: "\x01\x02\x01\x02\x05\x03\x02\x05\x01\x04\x05\x04", // 𦴚
+ 0x26d1b: "\x01\x02\x01\x02\x05\x01\x05\x02\x05\x03\x03\x04\x01", // 𦴛
+ 0x26d1c: "\x01\x02\x01\x02\x02\x05\x02\x02\x01\x01\x04\x05\x04\x04", // 𦴜
+ 0x26d1d: "\x01\x02\x02\x04\x04\x01\x02\x05\x01\x01\x01\x02", // 𦴝
+ 0x26d1e: "\x01\x02\x01\x02\x03\x02\x01\x01\x05\x01\x01\x05\x03", // 𦴞
+ 0x26d1f: "\x01\x02\x01\x02\x05\x05\x05\x01\x03\x05\x04\x02\x02", // 𦴟
+ 0x26d20: "\x01\x02\x01\x02\x02\x05\x03\x04\x03\x05\x04\x01\x01", // 𦴠
+ 0x26d21: "\x01\x02\x02\x01\x02\x03\x04\x01\x03\x05\x04\x04", // 𦴡
+ 0x26d22: "\x01\x02\x01\x02\x04\x04\x01\x02\x01\x02\x01\x03\x05", // 𦴢
+ 0x26d23: "\x01\x02\x01\x02\x05\x03\x01\x04\x01\x03\x05\x03\x04", // 𦴣
+ 0x26d24: "\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x01\x03\x04", // 𦴤
+ 0x26d25: "\x01\x02\x01\x02\x04\x04\x01\x03\x05\x02\x05\x01\x01", // 𦴥
+ 0x26d26: "\x01\x02\x01\x02\x04\x04\x05\x03\x05\x04\x02\x05\x01", // 𦴦
+ 0x26d27: "\x01\x02\x01\x02\x05\x03\x04\x03\x05\x03\x04\x03\x02", // 𦴧
+ 0x26d28: "\x01\x02\x01\x02\x03\x02\x05\x01\x01\x03\x02\x05\x01", // 𦴨
+ 0x26d29: "\x01\x02\x01\x02\x03\x02\x04\x01\x01\x01\x02\x05\x01", // 𦴩
+ 0x26d2a: "\x01\x02\x01\x02\x04\x01\x05\x03\x05\x01\x03\x03\x05", // 𦴪
+ 0x26d2b: "\x01\x02\x01\x02\x02\x05\x01\x05\x01\x01\x02\x05\x02", // 𦴫
+ 0x26d2c: "\x01\x02\x01\x02\x05\x02\x02\x05\x02\x03\x05\x02\x02", // 𦴬
+ 0x26d2d: "\x01\x02\x01\x02\x03\x05\x03\x05\x01\x01\x05\x03\x04", // 𦴭
+ 0x26d2e: "\x01\x02\x01\x02\x04\x04\x01\x05\x05\x01\x03\x01\x02", // 𦴮
+ 0x26d2f: "\x01\x02\x01\x02\x04\x04\x05\x03\x05\x01\x03\x05\x04", // 𦴯
+ 0x26d30: "\x01\x02\x01\x02\x05\x03\x02\x05\x01\x01\x03\x01\x02", // 𦴰
+ 0x26d31: "\x01\x02\x01\x02\x01\x03\x03\x02\x04\x05\x01\x05", // 𦴱
+ 0x26d32: "\x01\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x05\x04", // 𦴲
+ 0x26d33: "\x01\x02\x01\x02\x03\x05\x02\x05\x01\x01\x03\x01\x02", // 𦴳
+ 0x26d34: "\x01\x02\x01\x02\x04\x04\x01\x04\x04\x05\x05\x03\x01", // 𦴴
+ 0x26d35: "\x01\x02\x01\x02\x04\x04\x01\x01\x01\x02\x01\x05\x04", // 𦴵
+ 0x26d36: "\x04\x04\x01\x01\x02\x01\x02\x03\x04\x01\x02\x03\x04", // 𦴶
+ 0x26d37: "\x01\x02\x01\x02\x04\x04\x01\x03\x02\x01\x01\x02\x01", // 𦴷
+ 0x26d38: "\x01\x02\x01\x02\x04\x04\x01\x05\x02\x05\x03\x04\x01", // 𦴸
+ 0x26d39: "\x01\x02\x01\x02\x01\x03\x01\x02\x03\x03\x05\x03\x04", // 𦴹
+ 0x26d3a: "\x01\x02\x01\x02\x01\x01\x01\x03\x04\x01\x01\x03\x04", // 𦴺
+ 0x26d3b: "\x01\x02\x01\x02\x05\x02\x02\x05\x01\x05\x04\x05\x02", // 𦴻
+ 0x26d3c: "\x01\x02\x01\x02\x01\x01\x01\x03\x04\x02\x05\x03\x04", // 𦴼
+ 0x26d3d: "\x01\x02\x01\x02\x01\x02\x01\x03\x04\x01\x01\x02\x01", // 𦴽
+ 0x26d3e: "\x01\x02\x01\x02\x05\x03\x05\x03\x05\x03\x01\x01\x05", // 𦴾
+ 0x26d3f: "\x01\x02\x01\x02\x01\x01\x02\x01\x03\x04\x01\x05\x04", // 𦴿
+ 0x26d40: "\x01\x02\x01\x02\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 𦵀
+ 0x26d41: "\x01\x02\x01\x02\x01\x03\x03\x05\x01\x01\x05\x02", // 𦵁
+ 0x26d42: "\x01\x02\x01\x02\x01\x02\x03\x04\x03\x05\x03\x05\x02", // 𦵂
+ 0x26d43: "\x01\x02\x01\x02\x01\x02\x01\x03\x04\x04\x05\x04\x04", // 𦵃
+ 0x26d44: "\x01\x02\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𦵄
+ 0x26d45: "\x01\x02\x01\x02\x02\x05\x01\x01\x01\x04\x04\x04\x04", // 𦵅
+ 0x26d46: "\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x01\x02\x01", // 𦵆
+ 0x26d47: "\x01\x02\x01\x02\x02\x05\x03\x05\x04\x01\x04\x05\x04\x04", // 𦵇
+ 0x26d48: "\x01\x02\x01\x02\x02\x05\x01\x02\x01\x04\x03\x05\x04", // 𦵈
+ 0x26d49: "\x01\x02\x01\x02\x02\x01\x05\x01\x01\x02\x01\x03\x04", // 𦵉
+ 0x26d4a: "\x01\x02\x01\x02\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 𦵊
+ 0x26d4b: "\x01\x02\x01\x02\x03\x02\x02\x05\x01\x02\x05\x01\x02", // 𦵋
+ 0x26d4c: "\x01\x02\x01\x02\x03\x03\x02\x03\x05\x03\x01\x03\x04", // 𦵌
+ 0x26d4d: "\x01\x02\x01\x02\x03\x02\x01\x01\x01\x03\x01\x03\x04", // 𦵍
+ 0x26d4e: "\x01\x02\x01\x02\x05\x03\x01\x03\x05\x04\x02\x05\x01", // 𦵎
+ 0x26d4f: "\x01\x02\x02\x01\x03\x05\x04\x03\x05\x01\x03\x04", // 𦵏
+ 0x26d50: "\x01\x02\x01\x02\x03\x02\x01\x05\x01\x01\x01\x02\x01", // 𦵐
+ 0x26d51: "\x01\x02\x01\x02\x04\x01\x04\x03\x01\x03\x05\x05\x04", // 𦵑
+ 0x26d52: "\x01\x02\x01\x02\x04\x03\x03\x04\x03\x01\x02\x03\x04", // 𦵒
+ 0x26d53: "\x01\x02\x02\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 𦵓
+ 0x26d54: "\x01\x02\x02\x03\x04\x03\x04\x02\x05\x01\x01\x01", // 𦵔
+ 0x26d55: "\x01\x02\x02\x04\x04\x02\x01\x02\x05\x04\x04\x01", // 𦵕
+ 0x26d56: "\x01\x02\x01\x02\x04\x01\x05\x03\x03\x05\x02\x03\x04", // 𦵖
+ 0x26d57: "\x01\x02\x02\x04\x01\x01\x01\x02\x05\x01\x01\x02", // 𦵗
+ 0x26d58: "\x01\x02\x02\x01\x03\x02\x05\x02\x02\x05\x03\x01", // 𦵘
+ 0x26d59: "\x01\x02\x02\x04\x04\x01\x05\x03\x01\x02\x05\x01", // 𦵙
+ 0x26d5a: "\x01\x02\x02\x05\x03\x01\x05\x04\x04\x05\x04\x04", // 𦵚
+ 0x26d5b: "\x01\x02\x02\x03\x01\x01\x02\x05\x02\x02\x05\x02", // 𦵛
+ 0x26d5c: "\x01\x02\x02\x04\x04\x01\x01\x02\x05\x03\x05\x01", // 𦵜
+ 0x26d5d: "\x01\x02\x01\x02\x03\x05\x04\x04\x04\x01\x03\x01\x02", // 𦵝
+ 0x26d5e: "\x01\x02\x01\x02\x04\x05\x02\x04\x03\x01\x02\x01", // 𦵞
+ 0x26d5f: "\x01\x02\x01\x02\x01\x02\x01\x01\x02\x04\x05\x02", // 𦵟
+ 0x26d60: "\x01\x02\x02\x03\x02\x03\x05\x05\x04\x02\x03\x04", // 𦵠
+ 0x26d61: "\x01\x02\x01\x02\x04\x04\x05\x02\x05\x01\x03\x02\x05\x01", // 𦵡
+ 0x26d62: "\x01\x02\x01\x02\x05\x03\x01\x01\x03\x01\x01\x05\x03\x04", // 𦵢
+ 0x26d63: "\x01\x02\x01\x02\x02\x05\x01\x03\x05\x03\x03\x03\x04\x01", // 𦵣
+ 0x26d64: "\x01\x02\x01\x02\x04\x04\x05\x01\x01\x03\x05\x01\x02\x04", // 𦵤
+ 0x26d65: "\x01\x02\x01\x02\x05\x01\x03\x01\x01\x02\x03\x04\x05\x04", // 𦵥
+ 0x26d66: "\x01\x02\x01\x02\x03\x02\x02\x01\x01\x02\x03\x04\x05\x04", // 𦵦
+ 0x26d67: "\x01\x02\x01\x02\x03\x05\x03\x04\x05\x01\x01\x05\x03\x04", // 𦵧
+ 0x26d68: "\x01\x02\x01\x02\x02\x05\x02\x01\x03\x05\x03\x01\x03\x04", // 𦵨
+ 0x26d69: "\x01\x02\x01\x02\x04\x04\x01\x01\x02\x05\x03\x05\x01\x01", // 𦵩
+ 0x26d6a: "\x01\x02\x01\x02\x01\x02\x05\x02\x03\x04\x02\x01\x05\x04", // 𦵪
+ 0x26d6b: "\x01\x02\x01\x02\x01\x02\x04\x05\x05\x05\x04\x02\x03\x04", // 𦵫
+ 0x26d6c: "\x01\x02\x01\x02\x01\x01\x02\x03\x04\x03\x01\x02\x01\x01", // 𦵬
+ 0x26d6d: "\x01\x02\x01\x02\x01\x02\x01\x03\x04\x04\x03\x05\x03\x01", // 𦵭
+ 0x26d6e: "\x01\x02\x01\x02\x05\x02\x04\x01\x04\x03\x01\x01\x02", // 𦵮
+ 0x26d6f: "\x01\x02\x01\x02\x04\x04\x05\x03\x01\x02\x01\x02\x05\x01", // 𦵯
+ 0x26d70: "\x01\x02\x01\x02\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01", // 𦵰
+ 0x26d71: "\x01\x02\x01\x02\x05\x01\x03\x02\x04\x03\x03\x05\x04\x01", // 𦵱
+ 0x26d72: "\x01\x02\x01\x02\x05\x01\x01\x04\x05\x02\x05\x02\x05\x04", // 𦵲
+ 0x26d73: "\x01\x02\x01\x02\x03\x05\x01\x02\x01\x04\x03\x01\x01\x02", // 𦵳
+ 0x26d74: "\x01\x02\x01\x02\x03\x05\x04\x01\x05\x02\x01\x02\x03\x04", // 𦵴
+ 0x26d75: "\x01\x02\x01\x02\x02\x01\x02\x05\x03\x04\x03\x04\x01\x05", // 𦵵
+ 0x26d76: "\x01\x02\x01\x02\x01\x02\x01\x03\x05\x04\x01\x02\x03\x04", // 𦵶
+ 0x26d77: "\x01\x02\x01\x02\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01", // 𦵷
+ 0x26d78: "\x01\x02\x01\x02\x01\x02\x02\x01\x01\x01\x04\x03\x03\x04", // 𦵸
+ 0x26d79: "\x01\x02\x01\x02\x04\x03\x03\x04\x04\x03\x03\x04\x02\x02", // 𦵹
+ 0x26d7a: "\x01\x02\x01\x02\x02\x05\x02\x02\x01\x02\x03\x03\x03\x04", // 𦵺
+ 0x26d7b: "\x01\x02\x01\x02\x01\x05\x04\x05\x04\x01\x02\x05\x01\x01", // 𦵻
+ 0x26d7c: "\x01\x02\x01\x02\x05\x01\x01\x03\x02\x05\x01\x05\x02", // 𦵼
+ 0x26d7d: "\x01\x02\x01\x02\x02\x05\x01\x01\x02\x04\x03\x01\x03\x05", // 𦵽
+ 0x26d7e: "\x01\x02\x01\x02\x04\x01\x03\x04\x03\x04\x03\x05\x04\x01", // 𦵾
+ 0x26d7f: "\x01\x02\x01\x02\x04\x01\x04\x03\x01\x02\x05\x01\x02\x02", // 𦵿
+ 0x26d80: "\x01\x02\x01\x02\x03\x02\x05\x01\x01\x05\x04\x04\x04\x04", // 𦶀
+ 0x26d81: "\x01\x02\x01\x02\x05\x01\x05\x02\x05\x01\x05\x02\x01\x05", // 𦶁
+ 0x26d82: "\x01\x02\x01\x02\x01\x02\x01\x02\x05\x01\x05\x02\x01\x05", // 𦶂
+ 0x26d83: "\x01\x02\x02\x03\x02\x05\x01\x02\x01\x01\x05\x03\x05", // 𦶃
+ 0x26d84: "\x01\x02\x01\x02\x04\x04\x01\x02\x05\x01\x01\x01\x02\x01", // 𦶄
+ 0x26d85: "\x01\x02\x01\x02\x01\x02\x05\x03\x05\x01\x04\x05\x04", // 𦶅
+ 0x26d86: "\x01\x02\x01\x02\x05\x05\x04\x04\x04\x04\x05\x02\x01\x01", // 𦶆
+ 0x26d87: "\x01\x02\x01\x02\x01\x02\x02\x01\x01\x01\x03\x01\x01\x05", // 𦶇
+ 0x26d88: "\x01\x02\x01\x02\x01\x02\x02\x01\x01\x01\x02\x05\x01\x01", // 𦶈
+ 0x26d89: "\x01\x02\x01\x02\x04\x01\x03\x04\x01\x02\x01\x02\x01\x01\x05", // 𦶉
+ 0x26d8a: "\x01\x02\x01\x02\x04\x04\x01\x02\x05\x01\x02\x01\x01\x05", // 𦶊
+ 0x26d8b: "\x01\x02\x01\x02\x03\x05\x01\x03\x05\x04\x01\x05\x04\x01", // 𦶋
+ 0x26d8c: "\x01\x02\x01\x02\x04\x01\x03\x05\x01\x02\x01\x02\x05\x01", // 𦶌
+ 0x26d8d: "\x01\x02\x01\x02\x04\x01\x04\x03\x01\x03\x03\x05\x04\x04", // 𦶍
+ 0x26d8e: "\x01\x02\x01\x02\x01\x03\x04\x03\x04\x03\x04\x03\x04\x01\x02", // 𦶎
+ 0x26d8f: "\x01\x02\x01\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𦶏
+ 0x26d90: "\x01\x02\x01\x02\x01\x02\x01\x03\x05\x04\x04\x05\x04\x04", // 𦶐
+ 0x26d91: "\x01\x02\x01\x02\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 𦶑
+ 0x26d92: "\x01\x02\x01\x02\x04\x04\x01\x03\x02\x01\x02\x05\x01\x02", // 𦶒
+ 0x26d93: "\x01\x02\x01\x02\x01\x02\x03\x04\x01\x02\x02\x01\x03\x04", // 𦶓
+ 0x26d94: "\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x05\x02\x05\x01", // 𦶔
+ 0x26d95: "\x01\x02\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01", // 𦶕
+ 0x26d96: "\x01\x02\x01\x02\x05\x04\x05\x04\x05\x04\x01\x02\x03\x04", // 𦶖
+ 0x26d97: "\x01\x02\x01\x02\x01\x02\x01\x04\x03\x01\x01\x02\x03\x04", // 𦶗
+ 0x26d98: "\x01\x02\x01\x02\x04\x03\x01\x01\x03\x04\x03\x03\x01\x02", // 𦶘
+ 0x26d99: "\x01\x02\x01\x02\x01\x02\x03\x04\x01\x02\x05\x01\x01\x01", // 𦶙
+ 0x26d9a: "\x01\x02\x01\x02\x04\x03\x01\x02\x03\x04\x03\x05\x05\x03", // 𦶚
+ 0x26d9b: "\x05\x02\x03\x05\x02\x02\x02\x05\x01\x01\x05\x02\x03\x05\x02\x02", // 𦶛
+ 0x26d9c: "\x01\x02\x02\x04\x04\x01\x01\x02\x02\x05\x01\x02\x05", // 𦶜
+ 0x26d9d: "\x01\x02\x02\x03\x01\x02\x02\x01\x01\x03\x05\x03\x04", // 𦶝
+ 0x26d9e: "\x01\x02\x02\x05\x03\x01\x04\x04\x05\x03\x04\x05\x04", // 𦶞
+ 0x26d9f: "\x01\x02\x02\x01\x02\x01\x03\x05\x04\x04\x04\x04\x04", // 𦶟
+ 0x26da0: "\x01\x02\x01\x02\x01\x02\x03\x04\x05\x01\x01\x05\x03\x04", // 𦶠
+ 0x26da1: "\x01\x02\x01\x02\x04\x04\x01\x03\x01\x01\x02\x02\x05\x01", // 𦶡
+ 0x26da2: "\x01\x02\x01\x02\x03\x03\x05\x04\x01\x04\x04\x01\x03\x05", // 𦶢
+ 0x26da3: "\x01\x02\x01\x02\x01\x03\x05\x04\x02\x02\x04\x04\x04\x04", // 𦶣
+ 0x26da4: "\x01\x02\x01\x02\x05\x02\x04\x04\x05\x01\x01\x03\x05", // 𦶤
+ 0x26da5: "\x01\x02\x01\x02\x05\x03\x01\x03\x01\x02\x01\x05\x03\x04", // 𦶥
+ 0x26da6: "\x01\x02\x01\x02\x05\x03\x01\x05\x01\x01\x03\x05\x02", // 𦶦
+ 0x26da7: "\x01\x02\x01\x02\x04\x01\x03\x04\x04\x01\x05\x03\x04", // 𦶧
+ 0x26da8: "\x01\x02\x01\x02\x04\x04\x05\x03\x04\x03\x04\x03\x05\x04", // 𦶨
+ 0x26da9: "\x01\x02\x01\x02\x04\x03\x01\x03\x04\x02\x05\x02\x02\x01", // 𦶩
+ 0x26daa: "\x01\x02\x01\x02\x01\x02\x02\x01\x01\x01\x01\x03\x01\x02", // 𦶪
+ 0x26dab: "\x01\x02\x01\x02\x01\x02\x01\x02\x02\x03\x01\x02\x03\x04", // 𦶫
+ 0x26dac: "\x01\x02\x01\x02\x05\x02\x05\x04\x03\x05\x03\x05\x04", // 𦶬
+ 0x26dad: "\x01\x02\x01\x02\x05\x03\x05\x03\x05\x03\x01\x03\x01\x02", // 𦶭
+ 0x26dae: "\x01\x02\x01\x02\x03\x01\x01\x02\x03\x04\x01\x01\x05\x04", // 𦶮
+ 0x26daf: "\x01\x02\x01\x02\x03\x02\x05\x02\x02\x01\x01\x03\x01\x02", // 𦶯
+ 0x26db0: "\x01\x02\x01\x02\x03\x02\x05\x03\x04\x01\x01\x05\x01\x05", // 𦶰
+ 0x26db1: "\x01\x02\x01\x02\x04\x01\x03\x04\x01\x03\x01\x01\x03\x04", // 𦶱
+ 0x26db2: "\x01\x02\x01\x02\x04\x04\x05\x01\x01\x03\x05\x05\x03\x01", // 𦶲
+ 0x26db3: "\x01\x02\x01\x02\x04\x04\x05\x02\x05\x01\x01\x05\x03\x01", // 𦶳
+ 0x26db4: "\x01\x02\x01\x02\x04\x04\x05\x02\x05\x01\x01\x01\x03\x05", // 𦶴
+ 0x26db5: "\x01\x02\x01\x02\x04\x04\x01\x02\x01\x02\x01\x02\x03\x04", // 𦶵
+ 0x26db6: "\x01\x02\x01\x02\x04\x04\x01\x02\x05\x01\x02\x05\x01\x02", // 𦶶
+ 0x26db7: "\x01\x02\x01\x02\x04\x04\x01\x05\x02\x05\x03\x04\x05\x02", // 𦶷
+ 0x26db8: "\x01\x02\x01\x02\x04\x03\x01\x01\x03\x04\x03\x01\x01\x02", // 𦶸
+ 0x26db9: "\x01\x02\x01\x02\x04\x01\x03\x01\x02\x02\x01\x02\x05\x01", // 𦶹
+ 0x26dba: "\x01\x02\x01\x02\x04\x04\x05\x02\x05\x01\x01\x01\x03\x04", // 𦶺
+ 0x26dbb: "\x01\x02\x01\x02\x01\x05\x03\x03\x04\x02\x05\x02\x02\x01", // 𦶻
+ 0x26dbc: "\x01\x02\x01\x02\x04\x04\x01\x02\x01\x02\x01\x02\x03\x03", // 𦶼
+ 0x26dbd: "\x01\x02\x01\x02\x05\x02\x03\x05\x05\x04\x02\x03\x04", // 𦶽
+ 0x26dbe: "\x01\x02\x01\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02\x01", // 𦶾
+ 0x26dbf: "\x01\x02\x01\x02\x05\x04\x05\x04\x05\x04\x01\x02\x03\x04", // 𦶿
+ 0x26dc0: "\x01\x02\x01\x02\x01\x02\x01\x03\x04\x03\x01\x02\x03\x04", // 𦷀
+ 0x26dc1: "\x01\x02\x01\x02\x01\x03\x01\x01\x01\x02\x01\x01\x01\x05", // 𦷁
+ 0x26dc2: "\x01\x02\x01\x02\x03\x01\x01\x02\x03\x04\x01\x01\x03\x02", // 𦷂
+ 0x26dc3: "\x01\x02\x01\x02\x01\x03\x05\x03\x03\x03\x01\x01\x02\x01", // 𦷃
+ 0x26dc4: "\x01\x02\x01\x02\x05\x03\x01\x04\x05\x01\x01\x05\x03\x04", // 𦷄
+ 0x26dc5: "\x01\x02\x01\x02\x01\x05\x01\x05\x03\x04\x01\x01\x02\x01", // 𦷅
+ 0x26dc6: "\x01\x02\x01\x02\x02\x05\x01\x04\x04\x04\x04\x05\x01\x05", // 𦷆
+ 0x26dc7: "\x01\x02\x01\x02\x03\x02\x01\x02\x01\x03\x04\x03\x03\x03", // 𦷇
+ 0x26dc8: "\x01\x02\x01\x02\x03\x05\x03\x01\x03\x04\x03\x04\x03\x04", // 𦷈
+ 0x26dc9: "\x01\x02\x01\x02\x03\x02\x03\x04\x01\x02\x05\x01\x02\x02", // 𦷉
+ 0x26dca: "\x01\x02\x01\x02\x03\x02\x05\x01\x05\x01\x03\x05\x05\x04", // 𦷊
+ 0x26dcb: "\x01\x02\x01\x02\x03\x04\x01\x02\x05\x01\x04\x05\x04\x04", // 𦷋
+ 0x26dcc: "\x01\x02\x01\x02\x03\x02\x01\x05\x03\x04\x01\x02\x05\x01", // 𦷌
+ 0x26dcd: "\x01\x02\x01\x02\x03\x01\x02\x03\x04\x03\x01\x01\x03\x04", // 𦷍
+ 0x26dce: "\x01\x02\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x03\x04", // 𦷎
+ 0x26dcf: "\x01\x02\x01\x02\x03\x01\x02\x03\x04\x04\x01\x04\x03\x01", // 𦷏
+ 0x26dd0: "\x01\x02\x01\x02\x03\x05\x03\x03\x04\x02\x05\x02\x02\x01", // 𦷐
+ 0x26dd1: "\x01\x02\x01\x02\x03\x01\x02\x03\x04\x03\x01\x01\x01\x02", // 𦷑
+ 0x26dd2: "\x01\x02\x01\x02\x03\x04\x04\x03\x05\x03\x03\x03\x05\x04", // 𦷒
+ 0x26dd3: "\x01\x02\x01\x02\x01\x02\x01\x02\x05\x01\x04\x04\x04\x04", // 𦷓
+ 0x26dd4: "\x01\x02\x01\x02\x01\x03\x01\x02\x02\x05\x01\x01\x01\x01", // 𦷔
+ 0x26dd5: "\x01\x02\x01\x02\x02\x01\x02\x05\x04\x05\x04\x03\x04\x01", // 𦷕
+ 0x26dd6: "\x01\x02\x02\x02\x05\x01\x01\x01\x02\x01\x03\x05\x05", // 𦷖
+ 0x26dd7: "\x01\x02\x01\x02\x02\x05\x01\x02\x05\x01\x01\x02\x01\x01", // 𦷗
+ 0x26dd8: "\x01\x02\x01\x02\x03\x01\x02\x01\x02\x01\x03\x05\x01\x05", // 𦷘
+ 0x26dd9: "\x01\x02\x01\x02\x03\x01\x02\x03\x04\x02\x01\x02\x05\x01", // 𦷙
+ 0x26dda: "\x01\x02\x01\x02\x03\x02\x01\x05\x01\x01\x04\x05\x04\x04", // 𦷚
+ 0x26ddb: "\x01\x02\x01\x02\x03\x02\x03\x05\x01\x01\x03\x05\x01\x01", // 𦷛
+ 0x26ddc: "\x01\x02\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x05\x04", // 𦷜
+ 0x26ddd: "\x01\x02\x01\x02\x03\x05\x02\x03\x04\x03\x05\x02\x03\x04", // 𦷝
+ 0x26dde: "\x01\x02\x01\x02\x04\x01\x03\x04\x03\x04\x01\x02\x03\x04", // 𦷞
+ 0x26ddf: "\x01\x02\x01\x02\x04\x04\x01\x02\x03\x04\x03\x05\x04\x01", // 𦷟
+ 0x26de0: "\x01\x02\x01\x02\x05\x01\x05\x01\x02\x01\x03\x04\x03\x04", // 𦷠
+ 0x26de1: "\x01\x02\x01\x02\x05\x04\x03\x03\x04\x03\x01\x01\x03\x04", // 𦷡
+ 0x26de2: "\x01\x02\x02\x01\x02\x05\x02\x02\x01\x04\x05\x04\x04", // 𦷢
+ 0x26de3: "\x01\x02\x01\x02\x02\x05\x01\x01\x04\x05\x05\x01\x01\x02", // 𦷣
+ 0x26de4: "\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04\x02\x05\x02", // 𦷤
+ 0x26de5: "\x01\x02\x02\x04\x03\x01\x02\x03\x04\x03\x01\x03\x04", // 𦷥
+ 0x26de6: "\x01\x02\x02\x05\x04\x03\x03\x04\x01\x03\x02\x05\x01", // 𦷦
+ 0x26de7: "\x01\x02\x01\x02\x01\x02\x02\x01\x03\x04\x02\x04\x04\x04", // 𦷧
+ 0x26de8: "\x01\x02\x02\x03\x04\x01\x02\x03\x04\x01\x02\x05\x04", // 𦷨
+ 0x26de9: "\x01\x02\x02\x01\x03\x02\x05\x01\x03\x04\x05\x04", // 𦷩
+ 0x26dea: "\x01\x02\x01\x02\x04\x04\x01\x03\x04\x04\x03\x05\x03\x01", // 𦷪
+ 0x26deb: "\x01\x02\x01\x02\x04\x04\x01\x03\x01\x05\x05\x04\x01\x04", // 𦷫
+ 0x26dec: "\x01\x02\x02\x03\x01\x02\x03\x04\x04\x05\x04\x03\x04", // 𦷬
+ 0x26ded: "\x01\x02\x02\x01\x02\x03\x04\x03\x04\x01\x01\x05\x04", // 𦷭
+ 0x26dee: "\x01\x02\x02\x04\x04\x02\x01\x02\x05\x01\x02\x05\x01", // 𦷮
+ 0x26def: "\x01\x02\x02\x01\x02\x01\x02\x05\x01\x01\x02\x01\x01", // 𦷯
+ 0x26df0: "\x01\x02\x01\x02\x04\x04\x01\x03\x04\x04\x03\x05\x02\x01", // 𦷰
+ 0x26df1: "\x01\x02\x01\x02\x02\x01\x02\x01\x03\x03\x05\x04\x01\x04", // 𦷱
+ 0x26df2: "\x01\x02\x01\x02\x03\x04\x04\x03\x05\x05\x04\x02\x03\x04", // 𦷲
+ 0x26df3: "\x01\x02\x01\x02\x04\x04\x05\x01\x02\x05\x01\x04\x03\x01", // 𦷳
+ 0x26df4: "\x01\x02\x01\x02\x04\x03\x01\x01\x03\x04\x04\x05\x04", // 𦷴
+ 0x26df5: "\x01\x02\x01\x02\x05\x03\x01\x02\x05\x01\x01\x01\x05\x03", // 𦷵
+ 0x26df6: "\x05\x02\x03\x05\x02\x02\x01\x03\x04\x04\x05\x02\x03\x05\x02\x02", // 𦷶
+ 0x26df7: "\x01\x02\x01\x02\x04\x01\x05\x03\x03\x04\x04\x05\x04", // 𦷷
+ 0x26df8: "\x01\x02\x01\x02\x05\x03\x01\x02\x05\x01\x02\x05\x03\x04", // 𦷸
+ 0x26df9: "\x01\x02\x01\x02\x02\x05\x02\x02\x01\x05\x02\x05\x01\x01", // 𦷹
+ 0x26dfa: "\x01\x02\x01\x02\x05\x05\x04\x04\x04\x04\x01\x01\x02\x01", // 𦷺
+ 0x26dfb: "\x05\x02\x02\x05\x02\x02\x04\x04\x02\x04\x04\x02\x02\x01\x05\x04", // 𦷻
+ 0x26dfc: "\x01\x02\x01\x02\x03\x04\x01\x02\x05\x01\x03\x01\x03\x02", // 𦷼
+ 0x26dfd: "\x01\x02\x01\x02\x01\x02\x05\x01\x02\x05\x01\x05\x02", // 𦷽
+ 0x26dfe: "\x01\x02\x02\x01\x02\x02\x01\x05\x04\x05\x02\x05\x02", // 𦷾
+ 0x26dff: "\x01\x02\x01\x02\x02\x01\x02\x05\x05\x01\x01\x04\x05\x04", // 𦷿
+ 0x26e00: "\x01\x02\x01\x02\x01\x02\x02\x01\x01\x01\x03\x04\x01\x02\x01", // 𦸀
+ 0x26e01: "\x01\x02\x01\x02\x04\x04\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 𦸁
+ 0x26e02: "\x01\x02\x01\x02\x04\x04\x01\x04\x05\x03\x05\x01\x02\x03\x04", // 𦸂
+ 0x26e03: "\x01\x02\x01\x02\x01\x02\x05\x01\x02\x05\x05\x04\x01\x02\x01", // 𦸃
+ 0x26e04: "\x01\x02\x01\x02\x03\x02\x03\x04\x01\x03\x05\x01\x01\x05\x05", // 𦸄
+ 0x26e05: "\x01\x02\x01\x02\x04\x04\x05\x01\x01\x03\x05\x05\x03\x01", // 𦸅
+ 0x26e06: "\x01\x02\x01\x02\x05\x01\x05\x01\x02\x02\x01\x01\x01\x03\x04", // 𦸆
+ 0x26e07: "\x01\x02\x01\x02\x03\x03\x02\x01\x02\x03\x05\x04\x01\x01\x02", // 𦸇
+ 0x26e08: "\x01\x02\x01\x02\x03\x01\x02\x02\x05\x01\x03\x03\x05\x04\x04", // 𦸈
+ 0x26e09: "\x01\x02\x01\x02\x01\x02\x01\x02\x05\x01\x03\x03\x05\x04\x04", // 𦸉
+ 0x26e0a: "\x01\x02\x01\x02\x01\x02\x05\x02\x02\x01\x01\x03\x04\x05\x05", // 𦸊
+ 0x26e0b: "\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01\x01\x01\x02", // 𦸋
+ 0x26e0c: "\x01\x02\x01\x02\x03\x05\x04\x01\x04\x04\x05\x01\x01\x03\x05", // 𦸌
+ 0x26e0d: "\x01\x02\x01\x02\x03\x05\x04\x01\x03\x04\x02\x05\x01\x03\x05", // 𦸍
+ 0x26e0e: "\x01\x02\x01\x02\x02\x05\x01\x02\x01\x01\x02\x01\x01\x02\x04", // 𦸎
+ 0x26e0f: "\x01\x02\x01\x02\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𦸏
+ 0x26e10: "\x01\x02\x01\x02\x05\x02\x01\x02\x01\x03\x05\x01\x02\x01", // 𦸐
+ 0x26e11: "\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x01\x05\x03\x04", // 𦸑
+ 0x26e12: "\x01\x02\x01\x02\x03\x05\x03\x01\x03\x04\x01\x02\x05\x01\x02", // 𦸒
+ 0x26e13: "\x01\x02\x01\x02\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04", // 𦸓
+ 0x26e14: "\x01\x02\x01\x02\x03\x05\x01\x02\x01\x02\x05\x01\x03\x03\x03", // 𦸔
+ 0x26e15: "\x01\x02\x01\x02\x01\x02\x05\x01\x02\x05\x01\x02\x01\x02\x02", // 𦸕
+ 0x26e16: "\x01\x02\x01\x02\x05\x05\x04\x04\x04\x04\x02\x05\x05\x04\x01", // 𦸖
+ 0x26e17: "\x01\x02\x01\x02\x01\x03\x02\x01\x01\x02\x03\x04\x05\x03\x04", // 𦸗
+ 0x26e18: "\x01\x02\x01\x02\x01\x03\x02\x05\x01\x01\x01\x01\x05\x03\x04", // 𦸘
+ 0x26e19: "\x01\x02\x01\x02\x03\x01\x02\x01\x02\x01\x02\x01\x01\x05\x02", // 𦸙
+ 0x26e1a: "\x01\x02\x01\x02\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01", // 𦸚
+ 0x26e1b: "\x01\x02\x01\x02\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 𦸛
+ 0x26e1c: "\x01\x02\x01\x02\x02\x05\x01\x02\x01\x02\x05\x02\x05\x01\x01", // 𦸜
+ 0x26e1d: "\x01\x02\x01\x02\x03\x04\x03\x01\x02\x03\x04\x04\x05\x04\x04", // 𦸝
+ 0x26e1e: "\x01\x02\x01\x02\x04\x05\x04\x03\x04\x02\x05\x01\x02\x01\x04", // 𦸞
+ 0x26e1f: "\x01\x02\x01\x02\x02\x01\x03\x05\x04\x05\x05\x01\x01\x03\x02", // 𦸟
+ 0x26e20: "\x01\x02\x01\x02\x02\x05\x04\x03\x03\x04\x04\x03\x03\x04\x01", // 𦸠
+ 0x26e21: "\x01\x02\x01\x02\x03\x04\x04\x03\x02\x05\x01\x01\x01\x03\x05", // 𦸡
+ 0x26e22: "\x01\x02\x01\x02\x05\x01\x03\x01\x02\x05\x02\x04\x01\x03\x04", // 𦸢
+ 0x26e23: "\x01\x02\x01\x02\x04\x01\x03\x03\x02\x05\x01\x01\x03\x01\x02", // 𦸣
+ 0x26e24: "\x01\x02\x01\x02\x04\x04\x05\x01\x02\x02\x01\x01\x01\x05\x04", // 𦸤
+ 0x26e25: "\x01\x02\x02\x03\x04\x02\x05\x01\x02\x01\x02\x05\x01\x01", // 𦸥
+ 0x26e26: "\x01\x02\x01\x02\x01\x02\x04\x05\x05\x02\x01\x03\x01\x03\x04", // 𦸦
+ 0x26e27: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x01\x03\x04\x01\x02\x01", // 𦸧
+ 0x26e28: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x05\x01\x01\x01\x02\x01", // 𦸨
+ 0x26e29: "\x01\x02\x01\x02\x02\x05\x01\x01\x01\x01\x02\x02\x01\x01\x02", // 𦸩
+ 0x26e2a: "\x01\x02\x01\x02\x04\x04\x01\x03\x01\x01\x01\x02\x01\x01\x01", // 𦸪
+ 0x26e2b: "\x01\x02\x01\x02\x02\x05\x01\x01\x04\x03\x05\x01\x05\x02\x03", // 𦸫
+ 0x26e2c: "\x01\x02\x01\x02\x01\x05\x02\x05\x02\x05\x01\x01\x01\x03\x04", // 𦸬
+ 0x26e2d: "\x01\x02\x01\x02\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01", // 𦸭
+ 0x26e2e: "\x01\x02\x01\x02\x04\x01\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 𦸮
+ 0x26e2f: "\x01\x02\x01\x02\x04\x01\x04\x03\x01\x01\x02\x01\x02\x03\x04", // 𦸯
+ 0x26e30: "\x01\x02\x01\x02\x04\x01\x03\x04\x01\x03\x03\x01\x01\x02\x01", // 𦸰
+ 0x26e31: "\x01\x02\x01\x02\x05\x03\x01\x05\x01\x01\x04\x05\x02\x05\x02", // 𦸱
+ 0x26e32: "\x01\x02\x01\x02\x03\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𦸲
+ 0x26e33: "\x01\x02\x01\x02\x01\x03\x01\x01\x05\x03\x04\x01\x03\x01\x02", // 𦸳
+ 0x26e34: "\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x02\x01\x05\x03\x04", // 𦸴
+ 0x26e35: "\x01\x02\x01\x02\x02\x01\x05\x03\x01\x05\x03\x05\x03\x03\x04", // 𦸵
+ 0x26e36: "\x05\x02\x02\x05\x02\x01\x02\x01\x02\x02\x05\x01\x01\x01\x02", // 𦸶
+ 0x26e37: "\x01\x02\x01\x02\x05\x05\x04\x04\x04\x04\x03\x03\x05\x04\x04", // 𦸷
+ 0x26e38: "\x01\x02\x01\x02\x03\x01\x02\x03\x04\x03\x04\x01\x02\x03\x04", // 𦸸
+ 0x26e39: "\x01\x02\x01\x02\x05\x02\x03\x05\x01\x05\x03\x03\x05\x02\x02", // 𦸹
+ 0x26e3a: "\x01\x02\x01\x02\x01\x02\x01\x02\x01\x05\x01\x02\x05\x02\x03\x04", // 𦸺
+ 0x26e3b: "\x01\x02\x02\x01\x02\x01\x03\x04\x01\x01\x01\x02\x05\x01", // 𦸻
+ 0x26e3c: "\x01\x02\x02\x04\x04\x01\x05\x04\x01\x03\x04\x02\x03\x04", // 𦸼
+ 0x26e3d: "\x01\x02\x02\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𦸽
+ 0x26e3e: "\x01\x02\x02\x05\x01\x05\x03\x02\x01\x01\x01\x05\x03\x04", // 𦸾
+ 0x26e3f: "\x01\x02\x02\x02\x05\x01\x02\x01\x02\x01\x02\x01\x03\x05", // 𦸿
+ 0x26e40: "\x01\x02\x02\x05\x05\x04\x02\x03\x04\x02\x05\x01\x02\x01", // 𦹀
+ 0x26e41: "\x01\x02\x02\x01\x02\x01\x02\x02\x01\x01\x02\x03\x04", // 𦹁
+ 0x26e42: "\x01\x02\x01\x02\x01\x02\x03\x04\x02\x05\x01\x01\x02\x03\x04", // 𦹂
+ 0x26e43: "\x01\x02\x01\x02\x04\x04\x01\x04\x01\x04\x03\x01\x02\x05\x01", // 𦹃
+ 0x26e44: "\x01\x02\x01\x02\x05\x05\x04\x04\x04\x04\x05\x03\x02\x05\x01", // 𦹄
+ 0x26e45: "\x01\x02\x01\x02\x05\x03\x01\x04\x04\x05\x03\x05\x04\x05\x05", // 𦹅
+ 0x26e46: "\x01\x02\x01\x02\x01\x02\x05\x01\x02\x03\x04\x04\x03\x01\x02\x01", // 𦹆
+ 0x26e47: "\x01\x02\x01\x02\x03\x04\x03\x04\x01\x02\x01\x04\x05\x04", // 𦹇
+ 0x26e48: "\x01\x02\x01\x02\x04\x04\x01\x02\x03\x04\x03\x01\x03\x01\x02", // 𦹈
+ 0x26e49: "\x01\x02\x01\x02\x05\x01\x05\x01\x02\x05\x01\x01\x03\x01\x02", // 𦹉
+ 0x26e4a: "\x01\x02\x01\x02\x01\x02\x05\x01\x02\x05\x01\x01\x03\x01\x02", // 𦹊
+ 0x26e4b: "\x02\x01\x02\x01\x02\x05\x02\x02\x01\x03\x02\x01\x05\x03\x04", // 𦹋
+ 0x26e4c: "\x01\x02\x01\x02\x02\x05\x03\x04\x01\x02\x05\x01\x02\x01\x04", // 𦹌
+ 0x26e4d: "\x01\x02\x01\x02\x03\x04\x01\x01\x02\x03\x04\x01\x03\x01\x02", // 𦹍
+ 0x26e4e: "\x01\x02\x01\x02\x04\x04\x05\x03\x05\x05\x04\x04\x05\x04\x04", // 𦹎
+ 0x26e4f: "\x01\x02\x01\x02\x04\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𦹏
+ 0x26e50: "\x01\x02\x01\x02\x04\x01\x02\x05\x01\x05\x02\x01\x05\x02", // 𦹐
+ 0x26e51: "\x01\x02\x01\x02\x04\x01\x05\x03\x05\x04\x04\x03\x01\x02\x01", // 𦹑
+ 0x26e52: "\x01\x02\x01\x02\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01", // 𦹒
+ 0x26e53: "\x01\x02\x01\x02\x05\x01\x01\x02\x01\x02\x05\x01\x02\x01\x01", // 𦹓
+ 0x26e54: "\x01\x02\x01\x02\x01\x05\x03\x01\x01\x03\x04\x03\x05\x03\x04", // 𦹔
+ 0x26e55: "\x01\x02\x01\x02\x01\x02\x02\x01\x03\x04\x02\x05\x01\x01\x05", // 𦹕
+ 0x26e56: "\x01\x02\x01\x02\x05\x01\x05\x05\x04\x05\x05\x04\x02\x03\x04", // 𦹖
+ 0x26e57: "\x01\x02\x01\x02\x01\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𦹗
+ 0x26e58: "\x01\x02\x01\x02\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𦹘
+ 0x26e59: "\x01\x02\x01\x02\x01\x01\x02\x01\x01\x01\x02\x01\x05\x01\x01", // 𦹙
+ 0x26e5a: "\x01\x02\x01\x02\x01\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𦹚
+ 0x26e5b: "\x01\x02\x01\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x05", // 𦹛
+ 0x26e5c: "\x01\x02\x01\x02\x03\x02\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 𦹜
+ 0x26e5d: "\x01\x02\x01\x02\x03\x01\x02\x05\x01\x01\x02\x01\x01\x05\x03", // 𦹝
+ 0x26e5e: "\x01\x02\x01\x02\x03\x01\x02\x03\x04\x03\x01\x02\x01\x03\x05", // 𦹞
+ 0x26e5f: "\x01\x02\x01\x02\x03\x03\x02\x05\x05\x04\x02\x03\x04\x03\x05", // 𦹟
+ 0x26e60: "\x01\x02\x02\x01\x03\x05\x04\x02\x05\x01\x01\x01\x02\x01", // 𦹠
+ 0x26e61: "\x01\x02\x01\x02\x01\x03\x05\x04\x03\x04\x04\x03\x05\x02\x01", // 𦹡
+ 0x26e62: "\x01\x02\x01\x02\x03\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 𦹢
+ 0x26e63: "\x01\x02\x01\x02\x03\x05\x01\x02\x01\x02\x02\x05\x01\x02\x01", // 𦹣
+ 0x26e64: "\x01\x02\x01\x02\x03\x05\x03\x01\x01\x02\x01\x03\x05\x01\x01", // 𦹤
+ 0x26e65: "\x01\x02\x02\x05\x02\x01\x02\x01\x01\x01\x05\x03\x04", // 𦹥
+ 0x26e66: "\x01\x02\x02\x04\x04\x05\x03\x04\x01\x01\x02\x04\x03\x01", // 𦹦
+ 0x26e67: "\x01\x02\x02\x05\x01\x01\x05\x03\x04\x02\x05\x02\x02\x01", // 𦹧
+ 0x26e68: "\x01\x02\x01\x02\x05\x03\x04\x03\x03\x04\x03\x04\x01\x02\x01", // 𦹨
+ 0x26e69: "\x01\x02\x02\x02\x05\x03\x04\x02\x05\x01\x03\x05\x01\x01", // 𦹩
+ 0x26e6a: "\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x04\x04\x03\x03\x04", // 𦹪
+ 0x26e6b: "\x01\x02\x02\x03\x05\x03\x02\x01\x02\x05\x01\x01\x01\x02", // 𦹫
+ 0x26e6c: "\x01\x02\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x03\x04", // 𦹬
+ 0x26e6d: "\x01\x02\x02\x04\x01\x05\x03\x03\x01\x03\x03\x05\x04\x04", // 𦹭
+ 0x26e6e: "\x01\x02\x01\x02\x03\x04\x04\x03\x01\x02\x03\x04\x03\x03\x03", // 𦹮
+ 0x26e6f: "\x01\x02\x02\x05\x01\x01\x02\x02\x02\x05\x01\x01\x01\x02", // 𦹯
+ 0x26e70: "\x01\x02\x02\x03\x02\x05\x05\x04\x01\x03\x04\x03\x05\x04", // 𦹰
+ 0x26e71: "\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04\x03\x03\x01\x02", // 𦹱
+ 0x26e72: "\x01\x02\x01\x02\x04\x04\x01\x02\x05\x01\x01\x01\x05\x01\x05", // 𦹲
+ 0x26e73: "\x01\x02\x02\x03\x04\x04\x05\x02\x05\x01\x01\x01\x03\x04", // 𦹳
+ 0x26e74: "\x01\x02\x02\x05\x05\x04\x04\x04\x04\x03\x04\x05\x04", // 𦹴
+ 0x26e75: "\x01\x02\x02\x02\x05\x01\x01\x01\x02\x01\x02\x02\x05\x01", // 𦹵
+ 0x26e76: "\x01\x02\x02\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𦹶
+ 0x26e77: "\x01\x02\x02\x01\x02\x01\x04\x01\x04\x03\x01\x02\x05\x01", // 𦹷
+ 0x26e78: "\x01\x02\x02\x02\x05\x01\x01\x01\x02\x02\x05\x01\x02\x01", // 𦹸
+ 0x26e79: "\x01\x02\x02\x04\x04\x01\x01\x03\x01\x02\x01\x01\x02\x01", // 𦹹
+ 0x26e7a: "\x01\x02\x02\x04\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𦹺
+ 0x26e7b: "\x01\x02\x02\x04\x04\x01\x03\x04\x04\x03\x01\x01\x02\x01", // 𦹻
+ 0x26e7c: "\x05\x02\x03\x05\x02\x02\x03\x03\x02\x02\x01\x02\x01\x02\x01\x03\x04", // 𦹼
+ 0x26e7d: "\x01\x02\x01\x02\x05\x01\x05\x03\x02\x05\x01\x01\x03\x01\x02", // 𦹽
+ 0x26e7e: "\x01\x02\x01\x02\x04\x01\x02\x05\x01\x04\x05\x03\x01\x01\x05", // 𦹾
+ 0x26e7f: "\x01\x02\x01\x02\x03\x02\x05\x04\x05\x04\x03\x05\x03\x05\x04", // 𦹿
+ 0x26e80: "\x01\x02\x01\x02\x01\x02\x03\x04\x01\x05\x04\x01\x01\x03\x04", // 𦺀
+ 0x26e81: "\x01\x02\x01\x02\x04\x04\x01\x01\x05\x04\x01\x02\x03\x04", // 𦺁
+ 0x26e82: "\x05\x02\x03\x05\x02\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𦺂
+ 0x26e83: "\x01\x02\x02\x02\x01\x02\x05\x03\x04\x02\x05\x05\x04", // 𦺃
+ 0x26e84: "\x01\x02\x01\x02\x03\x05\x03\x05\x01\x01\x05\x04\x05\x02", // 𦺄
+ 0x26e85: "\x01\x02\x02\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x03\x04\x03\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𦺅
+ 0x26e86: "\x01\x02\x01\x02\x03\x02\x05\x01\x01\x01\x01\x01\x01\x01\x01\x02", // 𦺆
+ 0x26e87: "\x01\x02\x01\x02\x04\x04\x01\x01\x01\x02\x01\x05\x05\x03\x01", // 𦺇
+ 0x26e88: "\x01\x02\x01\x02\x05\x01\x05\x05\x01\x05\x01\x02\x02\x01\x03\x04", // 𦺈
+ 0x26e89: "\x01\x02\x01\x02\x03\x02\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 𦺉
+ 0x26e8a: "\x01\x02\x01\x02\x02\x05\x01\x01\x01\x04\x04\x05\x01\x01\x03\x05", // 𦺊
+ 0x26e8b: "\x01\x02\x01\x02\x05\x03\x01\x04\x04\x05\x03\x04\x03\x04\x05\x04", // 𦺋
+ 0x26e8c: "\x01\x02\x01\x02\x04\x04\x01\x04\x04\x05\x03\x04\x03\x04\x05\x04", // 𦺌
+ 0x26e8d: "\x01\x02\x01\x02\x04\x04\x01\x04\x03\x01\x03\x05\x01\x01\x02\x02", // 𦺍
+ 0x26e8e: "\x01\x02\x01\x02\x03\x05\x04\x01\x04\x01\x04\x03\x01\x02\x05\x01", // 𦺎
+ 0x26e8f: "\x01\x02\x01\x02\x02\x05\x01\x01\x01\x02\x04\x01\x03\x04\x03\x04", // 𦺏
+ 0x26e90: "\x01\x02\x01\x02\x01\x03\x05\x04\x01\x05\x03\x04\x01\x05\x03\x04", // 𦺐
+ 0x26e91: "\x01\x02\x01\x02\x04\x01\x04\x03\x01\x02\x05\x01\x03\x01\x01\x05", // 𦺑
+ 0x26e92: "\x01\x02\x01\x02\x05\x04\x05\x02\x03\x03\x05\x04\x05\x03\x01", // 𦺒
+ 0x26e93: "\x01\x02\x01\x02\x01\x02\x02\x05\x01\x01\x01\x02\x03\x05\x01\x01", // 𦺓
+ 0x26e94: "\x01\x02\x01\x02\x03\x04\x01\x03\x03\x05\x04\x01\x03\x05\x05\x04", // 𦺔
+ 0x26e95: "\x01\x02\x01\x02\x01\x02\x01\x05\x04\x03\x03\x04\x01\x01\x03\x04", // 𦺕
+ 0x26e96: "\x01\x02\x01\x02\x05\x04\x05\x02\x03\x02\x05\x03\x05\x02\x05\x01", // 𦺖
+ 0x26e97: "\x01\x02\x01\x02\x03\x04\x01\x01\x02\x02\x05\x01\x05\x04\x05\x02", // 𦺗
+ 0x26e98: "\x01\x02\x01\x02\x04\x04\x01\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 𦺘
+ 0x26e99: "\x01\x02\x01\x02\x03\x01\x02\x03\x04\x03\x05\x03\x03\x01\x01\x02", // 𦺙
+ 0x26e9a: "\x01\x02\x01\x02\x05\x01\x05\x01\x02\x01\x01\x02\x01\x02\x05\x01", // 𦺚
+ 0x26e9b: "\x01\x02\x01\x02\x03\x05\x03\x05\x05\x01\x03\x05\x03\x03\x03\x04", // 𦺛
+ 0x26e9c: "\x01\x02\x01\x02\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x05\x03", // 𦺜
+ 0x26e9d: "\x01\x02\x01\x02\x04\x04\x05\x04\x05\x04\x04\x02\x05\x02\x02\x01", // 𦺝
+ 0x26e9e: "\x01\x02\x01\x02\x04\x01\x01\x01\x02\x05\x01\x01\x02\x05\x01\x02", // 𦺞
+ 0x26e9f: "\x01\x02\x01\x02\x01\x02\x01\x04\x05\x02\x01\x05\x05\x01\x02\x01", // 𦺟
+ 0x26ea0: "\x01\x02\x01\x02\x03\x05\x03\x05\x01\x01\x02\x03\x03\x05\x04\x04", // 𦺠
+ 0x26ea1: "\x01\x02\x01\x02\x02\x04\x03\x04\x05\x02\x05\x01\x03\x01\x01\x02", // 𦺡
+ 0x26ea2: "\x01\x02\x01\x02\x05\x05\x04\x04\x04\x04\x01\x02\x01\x02\x05\x01", // 𦺢
+ 0x26ea3: "\x01\x02\x01\x02\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𦺣
+ 0x26ea4: "\x01\x02\x01\x02\x01\x02\x01\x05\x04\x05\x02\x03\x01\x02\x03\x04", // 𦺤
+ 0x26ea5: "\x01\x02\x01\x02\x01\x02\x01\x03\x02\x05\x01\x01\x05\x02", // 𦺥
+ 0x26ea6: "\x01\x02\x01\x02\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x04\x04", // 𦺦
+ 0x26ea7: "\x01\x02\x01\x02\x04\x04\x05\x03\x01\x02\x01\x02\x05\x01\x02\x02\x01", // 𦺧
+ 0x26ea8: "\x01\x02\x01\x02\x03\x05\x02\x05\x02\x01\x03\x05\x03\x03\x03\x04", // 𦺨
+ 0x26ea9: "\x01\x02\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01\x05\x03\x04", // 𦺩
+ 0x26eaa: "\x01\x02\x01\x02\x03\x01\x02\x03\x04\x03\x04\x01\x01\x02\x03\x04", // 𦺪
+ 0x26eab: "\x01\x02\x01\x02\x01\x03\x02\x05\x01\x04\x05\x01\x01\x05\x03\x04", // 𦺫
+ 0x26eac: "\x01\x02\x01\x02\x05\x05\x04\x05\x05\x04\x01\x03\x04\x05\x03\x04", // 𦺬
+ 0x26ead: "\x01\x02\x01\x02\x03\x02\x05\x01\x01\x04\x05\x02\x05\x02\x05\x04", // 𦺭
+ 0x26eae: "\x01\x02\x01\x02\x04\x01\x03\x03\x02\x01\x05\x01\x01\x03\x04", // 𦺮
+ 0x26eaf: "\x01\x02\x01\x02\x03\x02\x01\x05\x01\x05\x04\x01\x02\x03\x04", // 𦺯
+ 0x26eb0: "\x01\x02\x01\x02\x03\x02\x02\x03\x05\x04\x05\x05\x04\x02\x03\x04", // 𦺰
+ 0x26eb1: "\x01\x02\x01\x02\x02\x01\x02\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 𦺱
+ 0x26eb2: "\x01\x02\x01\x02\x03\x05\x04\x05\x05\x02\x05\x01\x01\x01\x03\x04", // 𦺲
+ 0x26eb3: "\x01\x02\x01\x02\x04\x01\x04\x03\x01\x02\x05\x01\x02\x02\x05\x01", // 𦺳
+ 0x26eb4: "\x01\x02\x01\x02\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02\x03\x04", // 𦺴
+ 0x26eb5: "\x01\x02\x01\x02\x01\x02\x02\x01\x01\x01\x05\x04\x01\x02\x03\x04", // 𦺵
+ 0x26eb6: "\x01\x02\x01\x02\x01\x03\x04\x03\x03\x04\x04\x03\x03\x04\x02\x02", // 𦺶
+ 0x26eb7: "\x01\x02\x01\x02\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05", // 𦺷
+ 0x26eb8: "\x01\x02\x01\x02\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 𦺸
+ 0x26eb9: "\x01\x02\x01\x02\x01\x02\x02\x01\x01\x01\x03\x05\x03\x05\x02", // 𦺹
+ 0x26eba: "\x01\x02\x01\x02\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x03\x05", // 𦺺
+ 0x26ebb: "\x01\x02\x01\x02\x01\x02\x02\x01\x03\x05\x04\x01\x03\x01\x03\x04", // 𦺻
+ 0x26ebc: "\x01\x02\x01\x02\x05\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 𦺼
+ 0x26ebd: "\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x05", // 𦺽
+ 0x26ebe: "\x01\x02\x01\x02\x04\x04\x01\x01\x03\x02\x05\x02\x02\x01\x03\x04", // 𦺾
+ 0x26ebf: "\x01\x02\x01\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05\x03\x04", // 𦺿
+ 0x26ec0: "\x01\x02\x01\x02\x03\x03\x02\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 𦻀
+ 0x26ec1: "\x01\x02\x01\x02\x03\x05\x03\x02\x01\x05\x01\x01\x03\x05\x03\x04", // 𦻁
+ 0x26ec2: "\x01\x02\x01\x02\x04\x04\x01\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𦻂
+ 0x26ec3: "\x01\x02\x01\x02\x03\x04\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𦻃
+ 0x26ec4: "\x01\x02\x01\x02\x04\x04\x01\x05\x01\x01\x01\x01\x02\x03\x03\x03", // 𦻄
+ 0x26ec5: "\x01\x02\x01\x02\x01\x01\x03\x04\x03\x01\x01\x01\x02\x01\x01\x01", // 𦻅
+ 0x26ec6: "\x01\x02\x01\x02\x01\x02\x02\x01\x01\x01\x03\x04\x01\x02\x03\x04", // 𦻆
+ 0x26ec7: "\x05\x02\x02\x05\x02\x03\x05\x02\x02\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 𦻇
+ 0x26ec8: "\x01\x02\x01\x02\x04\x04\x01\x01\x02\x05\x01\x01\x02\x04\x05\x04", // 𦻈
+ 0x26ec9: "\x01\x02\x01\x02\x03\x03\x05\x04\x01\x04\x05\x02\x01\x03\x05\x04", // 𦻉
+ 0x26eca: "\x01\x02\x01\x02\x01\x02\x03\x04\x01\x02\x02\x01\x01\x01\x03\x04", // 𦻊
+ 0x26ecb: "\x01\x02\x01\x02\x01\x02\x02\x05\x01\x02\x02\x05\x01\x02\x05\x02", // 𦻋
+ 0x26ecc: "\x01\x02\x01\x02\x01\x02\x05\x01\x01\x02\x04\x02\x05\x02\x02\x01", // 𦻌
+ 0x26ecd: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x01\x02\x01\x03\x04\x01\x02\x01", // 𦻍
+ 0x26ece: "\x01\x02\x02\x03\x01\x02\x03\x04\x03\x04\x01\x03\x02\x05\x02", // 𦻎
+ 0x26ecf: "\x01\x02\x01\x02\x03\x04\x03\x04\x03\x04\x03\x04\x02\x01\x01\x05", // 𦻏
+ 0x26ed0: "\x01\x02\x01\x02\x04\x03\x03\x04\x02\x01\x02\x05\x01\x01\x01\x02", // 𦻐
+ 0x26ed1: "\x01\x02\x01\x02\x04\x01\x01\x01\x02\x05\x01\x04\x05\x05\x03\x04", // 𦻑
+ 0x26ed2: "\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x04\x01\x01\x02\x01\x04", // 𦻒
+ 0x26ed3: "\x01\x02\x01\x02\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x01", // 𦻓
+ 0x26ed4: "\x01\x02\x01\x02\x03\x01\x01\x01\x02\x01\x01\x01\x04\x01\x03\x04", // 𦻔
+ 0x26ed5: "\x01\x02\x01\x02\x05\x02\x03\x05\x05\x01\x01\x04\x05\x04\x04", // 𦻕
+ 0x26ed6: "\x01\x02\x01\x02\x05\x05\x04\x04\x04\x04\x03\x05\x02\x05\x01\x01", // 𦻖
+ 0x26ed7: "\x01\x02\x01\x02\x03\x02\x04\x01\x01\x01\x02\x01\x04\x05\x04", // 𦻗
+ 0x26ed8: "\x01\x02\x01\x02\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01", // 𦻘
+ 0x26ed9: "\x01\x02\x01\x02\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01", // 𦻙
+ 0x26eda: "\x01\x02\x01\x02\x05\x02\x01\x01\x02\x02\x01\x01\x01\x05\x02", // 𦻚
+ 0x26edb: "\x01\x02\x01\x02\x05\x02\x01\x01\x01\x05\x03\x04\x04\x04\x04\x04", // 𦻛
+ 0x26edc: "\x01\x02\x01\x02\x04\x04\x01\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 𦻜
+ 0x26edd: "\x01\x02\x01\x02\x01\x02\x02\x05\x01\x01\x01\x02\x01\x05\x03\x04", // 𦻝
+ 0x26ede: "\x01\x02\x01\x02\x02\x01\x04\x05\x04\x05\x04\x03\x04\x01\x03\x04", // 𦻞
+ 0x26edf: "\x01\x02\x01\x02\x04\x04\x01\x05\x03\x02\x05\x01\x01\x03\x01\x02", // 𦻟
+ 0x26ee0: "\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x02\x01\x01\x03\x01\x02", // 𦻠
+ 0x26ee1: "\x01\x02\x01\x02\x01\x02\x02\x01\x01\x01\x05\x04\x01\x03\x01\x02", // 𦻡
+ 0x26ee2: "\x01\x02\x01\x02\x01\x05\x04\x01\x02\x01\x02\x02\x01\x03\x01\x02", // 𦻢
+ 0x26ee3: "\x01\x02\x01\x02\x01\x03\x04\x03\x04\x02\x03\x04\x01\x03\x01\x02", // 𦻣
+ 0x26ee4: "\x01\x02\x01\x02\x03\x04\x05\x02\x03\x04\x05\x02\x02\x05\x01\x01", // 𦻤
+ 0x26ee5: "\x01\x02\x01\x02\x03\x01\x01\x01\x02\x01\x01\x01\x01\x03\x02", // 𦻥
+ 0x26ee6: "\x01\x02\x01\x02\x03\x05\x03\x01\x01\x02\x05\x02\x01\x03\x01\x02", // 𦻦
+ 0x26ee7: "\x01\x02\x01\x02\x03\x02\x04\x01\x01\x01\x02\x01\x01\x03\x01\x02", // 𦻧
+ 0x26ee8: "\x01\x02\x01\x02\x03\x05\x03\x03\x03\x05\x04\x04\x01\x03\x01\x02", // 𦻨
+ 0x26ee9: "\x01\x02\x01\x02\x04\x05\x04\x05\x04\x04\x02\x05\x01\x02\x01\x04", // 𦻩
+ 0x26eea: "\x01\x02\x01\x02\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x03\x02", // 𦻪
+ 0x26eeb: "\x01\x02\x01\x02\x04\x01\x02\x01\x02\x01\x04\x01\x03\x05\x03\x04", // 𦻫
+ 0x26eec: "\x01\x02\x01\x02\x04\x01\x05\x03\x01\x02\x02\x01\x01\x01\x03\x04", // 𦻬
+ 0x26eed: "\x01\x02\x01\x02\x04\x04\x01\x05\x02\x02\x05\x01\x05\x04\x05\x02", // 𦻭
+ 0x26eee: "\x01\x02\x01\x02\x04\x01\x05\x03\x02\x01\x05\x03\x01\x05\x03\x05", // 𦻮
+ 0x26eef: "\x01\x02\x01\x02\x04\x01\x05\x03\x05\x01\x01\x05\x03\x01\x03\x05", // 𦻯
+ 0x26ef0: "\x01\x02\x01\x02\x01\x03\x05\x04\x03\x01\x01\x01\x02\x01\x01\x01", // 𦻰
+ 0x26ef1: "\x01\x02\x01\x02\x01\x04\x05\x02\x04\x01\x03\x04\x04\x01\x03\x04", // 𦻱
+ 0x26ef2: "\x01\x02\x01\x02\x01\x02\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 𦻲
+ 0x26ef3: "\x01\x02\x01\x02\x01\x05\x03\x04\x01\x05\x03\x04\x02\x05\x01\x01", // 𦻳
+ 0x26ef4: "\x01\x02\x01\x02\x01\x02\x01\x02\x01\x05\x01\x01\x02\x01\x03\x04", // 𦻴
+ 0x26ef5: "\x01\x02\x01\x02\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x05\x03", // 𦻵
+ 0x26ef6: "\x01\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x04\x04\x01\x02", // 𦻶
+ 0x26ef7: "\x01\x02\x01\x02\x02\x05\x02\x05\x05\x04\x02\x05\x01\x02\x01\x04", // 𦻷
+ 0x26ef8: "\x01\x02\x01\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01\x03\x05\x04", // 𦻸
+ 0x26ef9: "\x01\x02\x01\x02\x03\x01\x01\x01\x02\x01\x01\x01\x04\x04\x04\x04", // 𦻹
+ 0x26efa: "\x01\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x01\x01\x02\x01", // 𦻺
+ 0x26efb: "\x01\x02\x01\x02\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01\x03\x05", // 𦻻
+ 0x26efc: "\x01\x02\x01\x02\x02\x05\x02\x02\x01\x01\x03\x01\x01\x05\x03\x04", // 𦻼
+ 0x26efd: "\x01\x02\x01\x02\x01\x02\x03\x04\x02\x05\x01\x01\x03\x05\x01\x01", // 𦻽
+ 0x26efe: "\x01\x02\x01\x02\x04\x03\x02\x05\x02\x03\x04\x05\x04\x02\x05\x02", // 𦻾
+ 0x26eff: "\x01\x02\x01\x02\x03\x04\x04\x03\x05\x03\x03\x02\x05\x01\x02\x01", // 𦻿
+ 0x26f00: "\x01\x02\x01\x02\x03\x04\x03\x01\x02\x03\x04\x03\x05\x05\x01\x05", // 𦼀
+ 0x26f01: "\x01\x02\x01\x02\x03\x01\x02\x03\x04\x03\x05\x02\x05\x01\x02\x01", // 𦼁
+ 0x26f02: "\x01\x02\x01\x02\x03\x04\x01\x01\x02\x01\x03\x04\x01\x01\x02\x01", // 𦼂
+ 0x26f03: "\x01\x02\x01\x02\x03\x04\x01\x05\x01\x01\x03\x02\x05\x01\x02\x02", // 𦼃
+ 0x26f04: "\x01\x02\x01\x02\x03\x02\x05\x01\x02\x01\x03\x05\x04\x04\x01\x02", // 𦼄
+ 0x26f05: "\x01\x02\x01\x02\x05\x05\x03\x01\x02\x02\x01\x01\x01\x05\x02", // 𦼅
+ 0x26f06: "\x01\x02\x01\x02\x01\x01\x02\x01\x03\x05\x04\x01\x01\x02\x01\x04", // 𦼆
+ 0x26f07: "\x01\x02\x01\x02\x01\x02\x01\x05\x05\x01\x02\x01\x04\x05\x04\x04", // 𦼇
+ 0x26f08: "\x01\x02\x02\x01\x02\x02\x01\x01\x01\x05\x04\x04\x04\x04\x04", // 𦼈
+ 0x26f09: "\x01\x02\x02\x01\x02\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𦼉
+ 0x26f0a: "\x01\x02\x01\x02\x01\x02\x03\x04\x01\x02\x01\x03\x05\x03\x05\x04", // 𦼊
+ 0x26f0b: "\x01\x02\x01\x02\x01\x02\x03\x04\x05\x05\x01\x02\x04\x01\x03\x04", // 𦼋
+ 0x26f0c: "\x03\x01\x03\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𦼌
+ 0x26f0d: "\x01\x02\x01\x02\x03\x02\x05\x01\x01\x04\x04\x05\x01\x01\x03\x05", // 𦼍
+ 0x26f0e: "\x01\x02\x01\x02\x03\x03\x05\x04\x01\x04\x03\x03\x05\x04\x01\x04", // 𦼎
+ 0x26f0f: "\x01\x02\x01\x02\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𦼏
+ 0x26f10: "\x01\x02\x01\x02\x04\x03\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04", // 𦼐
+ 0x26f11: "\x01\x02\x01\x02\x04\x04\x05\x03\x05\x03\x02\x03\x02\x05\x01\x01", // 𦼑
+ 0x26f12: "\x01\x02\x01\x02\x05\x04\x05\x04\x05\x04\x03\x04\x02\x04\x04\x04", // 𦼒
+ 0x26f13: "\x01\x02\x02\x01\x01\x02\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 𦼓
+ 0x26f14: "\x01\x02\x02\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 𦼔
+ 0x26f15: "\x01\x02\x01\x02\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x03\x04", // 𦼕
+ 0x26f16: "\x01\x02\x02\x04\x05\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04", // 𦼖
+ 0x26f17: "\x01\x02\x02\x05\x01\x03\x02\x04\x01\x03\x04\x03\x01\x01\x02", // 𦼗
+ 0x26f18: "\x01\x02\x02\x05\x01\x03\x01\x05\x03\x05\x01\x02\x04\x03\x01", // 𦼘
+ 0x26f19: "\x01\x02\x01\x02\x05\x03\x01\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 𦼙
+ 0x26f1a: "\x01\x02\x02\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04", // 𦼚
+ 0x26f1b: "\x01\x02\x02\x01\x02\x01\x02\x01\x03\x04\x03\x04\x03\x03\x03", // 𦼛
+ 0x26f1c: "\x01\x02\x02\x01\x02\x01\x02\x01\x03\x04\x03\x05\x02\x03\x04", // 𦼜
+ 0x26f1d: "\x01\x02\x02\x04\x04\x02\x05\x05\x05\x03\x02\x05\x03\x04\x01", // 𦼝
+ 0x26f1e: "\x01\x02\x02\x03\x04\x01\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 𦼞
+ 0x26f1f: "\x01\x02\x02\x05\x05\x04\x04\x04\x04\x04\x01\x05\x04\x03\x05", // 𦼟
+ 0x26f20: "\x01\x02\x02\x05\x01\x01\x02\x02\x05\x01\x01\x01\x01\x03\x02", // 𦼠
+ 0x26f21: "\x01\x02\x01\x02\x05\x05\x04\x02\x05\x02\x03\x05\x04\x02\x05\x02", // 𦼡
+ 0x26f22: "\x01\x02\x01\x02\x02\x05\x02\x01\x01\x02\x03\x04\x03\x03\x01\x02", // 𦼢
+ 0x26f23: "\x01\x02\x02\x02\x01\x02\x05\x04\x05\x04\x03\x04\x01\x03\x04", // 𦼣
+ 0x26f24: "\x01\x02\x02\x02\x05\x03\x04\x01\x05\x04\x04\x05\x04\x04\x05", // 𦼤
+ 0x26f25: "\x01\x02\x02\x04\x04\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 𦼥
+ 0x26f26: "\x01\x02\x01\x02\x01\x03\x05\x05\x03\x04\x02\x05\x02\x02\x01", // 𦼦
+ 0x26f27: "\x01\x02\x02\x05\x02\x04\x01\x04\x03\x01\x01\x02\x03\x04", // 𦼧
+ 0x26f28: "\x01\x02\x02\x02\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x04", // 𦼨
+ 0x26f29: "\x01\x02\x01\x02\x03\x01\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𦼩
+ 0x26f2a: "\x01\x02\x01\x02\x01\x02\x03\x04\x05\x04\x05\x02\x03\x01\x02\x03\x04", // 𦼪
+ 0x26f2b: "\x01\x02\x01\x02\x02\x01\x05\x03\x01\x05\x01\x03\x05\x03\x03\x03\x04", // 𦼫
+ 0x26f2c: "\x01\x02\x01\x02\x04\x04\x01\x02\x05\x01\x01\x01\x02\x05\x02\x02\x01", // 𦼬
+ 0x26f2d: "\x01\x02\x01\x02\x01\x02\x03\x04\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 𦼭
+ 0x26f2e: "\x01\x02\x01\x02\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04\x01\x01\x02", // 𦼮
+ 0x26f2f: "\x01\x02\x01\x02\x04\x03\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 𦼯
+ 0x26f30: "\x01\x02\x01\x02\x01\x02\x03\x04\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 𦼰
+ 0x26f31: "\x01\x02\x01\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x02\x05", // 𦼱
+ 0x26f32: "\x01\x02\x01\x02\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x01\x02\x01", // 𦼲
+ 0x26f33: "\x01\x02\x01\x02\x03\x05\x04\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 𦼳
+ 0x26f34: "\x01\x02\x01\x02\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 𦼴
+ 0x26f35: "\x01\x02\x01\x02\x02\x05\x01\x01\x03\x05\x03\x04\x05\x03\x01\x01\x05", // 𦼵
+ 0x26f36: "\x01\x02\x01\x02\x03\x05\x01\x01\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 𦼶
+ 0x26f37: "\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x02\x05\x02\x03\x05\x05\x04", // 𦼷
+ 0x26f38: "\x01\x02\x01\x02\x01\x02\x01\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 𦼸
+ 0x26f39: "\x01\x02\x01\x02\x04\x01\x02\x05\x02\x05\x01\x01\x03\x01\x02\x03\x04", // 𦼹
+ 0x26f3a: "\x01\x02\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x02\x01\x05\x03\x04", // 𦼺
+ 0x26f3b: "\x01\x02\x01\x02\x04\x04\x01\x02\x05\x02\x01\x03\x05\x03\x01\x03\x04", // 𦼻
+ 0x26f3c: "\x01\x02\x01\x02\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x04", // 𦼼
+ 0x26f3d: "\x01\x02\x01\x02\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x02\x05\x04", // 𦼽
+ 0x26f3e: "\x01\x02\x01\x02\x01\x02\x01\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 𦼾
+ 0x26f3f: "\x01\x02\x01\x02\x01\x05\x02\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𦼿
+ 0x26f40: "\x01\x02\x01\x02\x03\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𦽀
+ 0x26f41: "\x01\x02\x01\x02\x05\x05\x04\x04\x04\x04\x01\x05\x05\x05\x01\x02\x01", // 𦽁
+ 0x26f42: "\x01\x02\x01\x02\x03\x01\x02\x03\x04\x01\x02\x01\x03\x05\x01\x02\x01", // 𦽂
+ 0x26f43: "\x01\x02\x01\x02\x03\x02\x01\x05\x03\x05\x01\x03\x02\x05\x01\x02\x02", // 𦽃
+ 0x26f44: "\x01\x02\x01\x02\x05\x01\x03\x01\x02\x02\x01\x03\x04\x03\x05\x05\x04", // 𦽄
+ 0x26f45: "\x01\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x05\x01\x02", // 𦽅
+ 0x26f46: "\x01\x02\x01\x02\x05\x02\x04\x01\x04\x03\x01\x01\x02\x05\x02\x01", // 𦽆
+ 0x26f47: "\x01\x02\x01\x02\x03\x05\x04\x01\x05\x01\x01\x01\x01\x02\x05\x04", // 𦽇
+ 0x26f48: "\x01\x02\x01\x02\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x03\x04\x04", // 𦽈
+ 0x26f49: "\x01\x02\x01\x02\x02\x05\x01\x01\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 𦽉
+ 0x26f4a: "\x01\x02\x01\x02\x02\x05\x01\x02\x05\x01\x02\x02\x05\x01\x02\x05\x01", // 𦽊
+ 0x26f4b: "\x01\x02\x01\x02\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x02\x05\x01", // 𦽋
+ 0x26f4c: "\x01\x02\x01\x02\x03\x02\x01\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 𦽌
+ 0x26f4d: "\x01\x02\x02\x02\x05\x01\x01\x05\x01\x03\x02\x01\x02\x05", // 𦽍
+ 0x26f4e: "\x01\x02\x01\x02\x04\x05\x02\x04\x05\x05\x01\x02\x04\x01\x03\x04", // 𦽎
+ 0x26f4f: "\x01\x02\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x05", // 𦽏
+ 0x26f50: "\x01\x02\x01\x02\x03\x02\x01\x05\x01\x01\x01\x02\x01\x03\x05\x05\x04", // 𦽐
+ 0x26f51: "\x01\x02\x01\x02\x03\x01\x02\x03\x04\x04\x01\x02\x05\x01\x05\x02\x01", // 𦽑
+ 0x26f52: "\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x04\x01\x01\x03\x05\x03\x04", // 𦽒
+ 0x26f53: "\x01\x02\x01\x02\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x05\x01\x03", // 𦽓
+ 0x26f54: "\x01\x02\x01\x02\x01\x02\x03\x04\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 𦽔
+ 0x26f55: "\x01\x02\x01\x02\x03\x05\x03\x01\x02\x05\x01\x02\x05\x01\x03\x04\x04", // 𦽕
+ 0x26f56: "\x01\x02\x01\x02\x02\x05\x01\x01\x01\x02\x05\x03\x01\x02\x03\x04\x01", // 𦽖
+ 0x26f57: "\x01\x02\x01\x02\x04\x03\x02\x05\x02\x04\x01\x03\x04\x03\x01\x03\x04", // 𦽗
+ 0x26f58: "\x01\x02\x01\x02\x04\x04\x01\x03\x05\x01\x05\x01\x02\x05\x02\x02\x01", // 𦽘
+ 0x26f59: "\x01\x02\x01\x02\x05\x01\x05\x05\x01\x05\x01\x03\x04\x04\x05\x04", // 𦽙
+ 0x26f5a: "\x01\x02\x01\x02\x05\x02\x04\x01\x04\x03\x01\x05\x03\x01\x05\x03\x01", // 𦽚
+ 0x26f5b: "\x01\x02\x01\x02\x04\x04\x05\x04\x05\x02\x03\x04\x03\x05\x05\x04", // 𦽛
+ 0x26f5c: "\x01\x02\x01\x02\x04\x04\x05\x03\x05\x05\x03\x03\x02\x01\x05\x01\x01", // 𦽜
+ 0x26f5d: "\x01\x02\x01\x02\x03\x02\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 𦽝
+ 0x26f5e: "\x01\x02\x01\x02\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x01\x03\x05", // 𦽞
+ 0x26f5f: "\x01\x02\x01\x02\x03\x05\x01\x03\x02\x05\x01\x02\x02\x04\x05\x04", // 𦽟
+ 0x26f60: "\x01\x02\x01\x02\x05\x02\x02\x05\x02\x04\x01\x05\x03\x03\x01\x03\x04", // 𦽠
+ 0x26f61: "\x01\x02\x01\x02\x04\x01\x02\x05\x01\x04\x05\x01\x02\x01\x03\x01\x05", // 𦽡
+ 0x26f62: "\x01\x02\x01\x02\x01\x02\x04\x05\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 𦽢
+ 0x26f63: "\x05\x02\x03\x05\x02\x02\x01\x02\x03\x04\x01\x01\x02\x03\x04\x03\x05\x03\x04", // 𦽣
+ 0x26f64: "\x01\x02\x01\x02\x04\x01\x01\x01\x02\x05\x01\x03\x03\x03\x05\x03\x04", // 𦽤
+ 0x26f65: "\x01\x02\x01\x02\x01\x02\x01\x01\x01\x01\x03\x04\x03\x01\x02\x03\x04", // 𦽥
+ 0x26f66: "\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x02\x02\x01\x04\x01\x05\x03", // 𦽦
+ 0x26f67: "\x01\x02\x01\x02\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x05\x03", // 𦽧
+ 0x26f68: "\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x02\x04\x01\x03\x04\x03\x04", // 𦽨
+ 0x26f69: "\x01\x02\x01\x02\x01\x02\x03\x04\x05\x04\x05\x02\x03\x01\x02\x03\x04", // 𦽩
+ 0x26f6a: "\x01\x02\x01\x02\x03\x03\x01\x02\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 𦽪
+ 0x26f6b: "\x01\x02\x01\x02\x01\x03\x01\x02\x05\x01\x04\x05\x04\x04\x05\x03\x04", // 𦽫
+ 0x26f6c: "\x01\x02\x01\x02\x05\x04\x03\x03\x04\x01\x05\x02\x01\x05\x02", // 𦽬
+ 0x26f6d: "\x01\x02\x02\x03\x05\x04\x03\x05\x04\x03\x02\x01\x05\x01\x01", // 𦽭
+ 0x26f6e: "\x01\x02\x01\x02\x03\x03\x05\x04\x01\x04\x03\x05\x05\x04\x05\x03\x01", // 𦽮
+ 0x26f6f: "\x01\x02\x02\x01\x02\x03\x04\x05\x02\x02\x05\x01\x05\x04\x01", // 𦽯
+ 0x26f70: "\x01\x02\x02\x05\x04\x05\x02\x03\x03\x04\x04\x03\x05\x01\x01\x02", // 𦽰
+ 0x26f71: "\x05\x02\x03\x05\x02\x02\x03\x02\x05\x01\x05\x02\x01\x05\x02\x03\x05\x02\x02", // 𦽱
+ 0x26f72: "\x01\x02\x02\x01\x02\x04\x01\x03\x04\x04\x04\x01\x03\x05\x03\x04", // 𦽲
+ 0x26f73: "\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04\x04\x05\x04\x04", // 𦽳
+ 0x26f74: "\x01\x02\x01\x02\x04\x01\x04\x03\x01\x01\x01\x02\x01\x02\x05\x01\x01", // 𦽴
+ 0x26f75: "\x01\x02\x01\x02\x05\x02\x04\x01\x04\x03\x01\x01\x02\x05\x03\x01", // 𦽵
+ 0x26f76: "\x01\x02\x01\x02\x01\x02\x03\x04\x01\x02\x02\x01\x01\x01\x05\x02", // 𦽶
+ 0x26f77: "\x01\x02\x01\x02\x04\x04\x01\x05\x01\x01\x01\x01\x02\x01\x03\x01\x02", // 𦽷
+ 0x26f78: "\x01\x02\x01\x02\x05\x01\x02\x01\x01\x05\x01\x05\x04\x01\x03\x01\x02", // 𦽸
+ 0x26f79: "\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01\x01\x01\x03\x01\x02", // 𦽹
+ 0x26f7a: "\x01\x02\x01\x02\x02\x05\x01\x02\x05\x01\x01\x01\x05\x03\x01\x03\x04", // 𦽺
+ 0x26f7b: "\x01\x02\x01\x02\x03\x02\x02\x05\x01\x01\x02\x03\x04\x01\x03\x01\x02", // 𦽻
+ 0x26f7c: "\x01\x02\x01\x02\x04\x04\x01\x01\x02\x05\x02\x02\x01\x01\x02\x03\x04", // 𦽼
+ 0x26f7d: "\x01\x02\x01\x02\x04\x03\x01\x02\x03\x04\x03\x05\x05\x03\x01\x03\x04", // 𦽽
+ 0x26f7e: "\x01\x02\x01\x02\x04\x04\x01\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 𦽾
+ 0x26f7f: "\x01\x02\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𦽿
+ 0x26f80: "\x01\x02\x01\x02\x01\x03\x04\x04\x03\x01\x01\x05\x03\x05\x05\x01\x05", // 𦾀
+ 0x26f81: "\x01\x02\x01\x02\x01\x01\x01\x03\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 𦾁
+ 0x26f82: "\x01\x02\x01\x02\x01\x01\x02\x01\x03\x04\x03\x03\x03\x04\x05\x04\x04", // 𦾂
+ 0x26f83: "\x01\x02\x01\x02\x01\x02\x01\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 𦾃
+ 0x26f84: "\x01\x02\x01\x02\x01\x02\x05\x01\x02\x03\x04\x04\x04\x05\x05\x03\x01", // 𦾄
+ 0x26f85: "\x01\x02\x01\x02\x01\x01\x01\x02\x05\x03\x03\x04\x02\x04\x01\x03\x04", // 𦾅
+ 0x26f86: "\x01\x02\x01\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x05\x04", // 𦾆
+ 0x26f87: "\x01\x02\x01\x02\x02\x05\x01\x03\x04\x05\x03\x01\x01\x01\x02\x03\x04", // 𦾇
+ 0x26f88: "\x01\x02\x01\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 𦾈
+ 0x26f89: "\x01\x02\x01\x02\x04\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𦾉
+ 0x26f8a: "\x01\x02\x01\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01\x04\x01\x05\x03", // 𦾊
+ 0x26f8b: "\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x03\x05\x04\x01\x05\x02", // 𦾋
+ 0x26f8c: "\x01\x02\x01\x02\x02\x05\x01\x02\x01\x04\x03\x05\x04\x01\x01\x01\x02", // 𦾌
+ 0x26f8d: "\x01\x02\x01\x02\x03\x05\x04\x01\x05\x04\x02\x05\x01\x01\x02\x03\x04", // 𦾍
+ 0x26f8e: "\x01\x02\x01\x02\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 𦾎
+ 0x26f8f: "\x01\x02\x02\x01\x01\x02\x01\x02\x01\x01\x02\x02\x05\x01\x01\x02", // 𦾏
+ 0x26f90: "\x01\x02\x01\x02\x01\x02\x05\x01\x02\x05\x03\x04\x02\x05\x02\x02\x01", // 𦾐
+ 0x26f91: "\x01\x02\x02\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04\x02\x02", // 𦾑
+ 0x26f92: "\x02\x01\x02\x01\x02\x05\x02\x02\x01\x01\x03\x01\x02\x01\x05\x03\x04", // 𦾒
+ 0x26f93: "\x01\x02\x02\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x01\x05", // 𦾓
+ 0x26f94: "\x01\x02\x01\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x02\x05\x01\x01", // 𦾔
+ 0x26f95: "\x01\x02\x02\x03\x05\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 𦾕
+ 0x26f96: "\x01\x02\x02\x04\x04\x05\x05\x04\x04\x03\x02\x05\x01\x02\x01\x04", // 𦾖
+ 0x26f97: "\x01\x02\x01\x02\x05\x01\x01\x02\x01\x03\x04\x04\x03\x02\x05\x02\x02\x01", // 𦾗
+ 0x26f98: "\x01\x02\x02\x05\x03\x01\x04\x04\x05\x04\x03\x03\x04\x03\x05\x04", // 𦾘
+ 0x26f99: "\x01\x02\x02\x01\x02\x01\x01\x02\x01\x02\x02\x01\x03\x04\x01\x02", // 𦾙
+ 0x26f9a: "\x01\x02\x02\x02\x01\x05\x03\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 𦾚
+ 0x26f9b: "\x01\x02\x01\x02\x02\x05\x01\x01\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 𦾛
+ 0x26f9c: "\x01\x02\x02\x03\x04\x04\x03\x05\x03\x03\x05\x01\x01\x05\x03\x04", // 𦾜
+ 0x26f9d: "\x01\x02\x02\x03\x04\x04\x05\x01\x01\x03\x02\x05\x01\x02\x05\x02", // 𦾝
+ 0x26f9e: "\x01\x02\x02\x05\x01\x01\x02\x04\x01\x03\x04\x02\x05\x02\x02\x01", // 𦾞
+ 0x26f9f: "\x01\x02\x01\x02\x01\x05\x03\x04\x01\x05\x03\x04\x02\x05\x02\x02\x01", // 𦾟
+ 0x26fa0: "\x01\x02\x02\x02\x05\x01\x01\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 𦾠
+ 0x26fa1: "\x01\x02\x01\x02\x05\x03\x01\x02\x05\x02\x01\x03\x05\x03\x01\x03\x04", // 𦾡
+ 0x26fa2: "\x01\x02\x02\x01\x02\x03\x04\x01\x02\x02\x01\x01\x01\x03\x04\x05", // 𦾢
+ 0x26fa3: "\x01\x02\x02\x01\x02\x01\x04\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 𦾣
+ 0x26fa4: "\x01\x02\x02\x03\x04\x01\x02\x05\x01\x01\x02\x02\x04\x05\x04\x04", // 𦾤
+ 0x26fa5: "\x01\x02\x02\x02\x05\x01\x01\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 𦾥
+ 0x26fa6: "\x01\x02\x02\x03\x02\x05\x01\x05\x01\x01\x02\x05\x02\x05\x03\x01", // 𦾦
+ 0x26fa7: "\x01\x02\x01\x02\x02\x05\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 𦾧
+ 0x26fa8: "\x01\x02\x02\x05\x02\x04\x01\x04\x03\x01\x01\x02\x05\x03\x01", // 𦾨
+ 0x26fa9: "\x01\x02\x02\x05\x02\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01", // 𦾩
+ 0x26faa: "\x01\x02\x01\x02\x02\x01\x02\x01\x02\x05\x01\x01\x05\x01\x05\x03\x05\x04", // 𦾪
+ 0x26fab: "\x01\x02\x02\x01\x02\x01\x04\x05\x03\x01\x02\x03\x04\x03\x05\x05\x04", // 𦾫
+ 0x26fac: "\x01\x02\x01\x02\x01\x02\x01\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01", // 𦾬
+ 0x26fad: "\x01\x02\x01\x02\x03\x02\x01\x05\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03", // 𦾭
+ 0x26fae: "\x01\x02\x01\x02\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04\x01\x02\x03\x04", // 𦾮
+ 0x26faf: "\x01\x02\x01\x02\x05\x05\x04\x04\x04\x04\x05\x05\x01\x02\x04\x01\x03\x04", // 𦾯
+ 0x26fb0: "\x01\x02\x01\x02\x04\x01\x03\x02\x05\x02\x05\x01\x01\x03\x01\x02\x03\x04", // 𦾰
+ 0x26fb1: "\x01\x02\x01\x02\x01\x02\x01\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 𦾱
+ 0x26fb2: "\x01\x02\x01\x02\x04\x03\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 𦾲
+ 0x26fb3: "\x01\x02\x01\x02\x01\x03\x02\x05\x02\x02\x01\x03\x04\x01\x02\x01\x05\x04", // 𦾳
+ 0x26fb4: "\x01\x02\x01\x02\x03\x01\x05\x05\x04\x01\x04\x03\x05\x05\x04\x02\x03\x04", // 𦾴
+ 0x26fb5: "\x01\x02\x01\x02\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x01\x02\x03\x04", // 𦾵
+ 0x26fb6: "\x01\x02\x01\x02\x04\x04\x01\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02", // 𦾶
+ 0x26fb7: "\x01\x02\x01\x02\x04\x04\x01\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 𦾷
+ 0x26fb8: "\x01\x02\x01\x02\x04\x01\x04\x03\x01\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 𦾸
+ 0x26fb9: "\x01\x02\x01\x02\x01\x02\x05\x03\x05\x01\x01\x05\x04\x03\x05\x03\x05\x04", // 𦾹
+ 0x26fba: "\x01\x02\x01\x02\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x01\x05\x03\x04", // 𦾺
+ 0x26fbb: "\x01\x02\x01\x02\x03\x04\x04\x03\x01\x02\x01\x05\x01\x01\x04\x05\x04\x04", // 𦾻
+ 0x26fbc: "\x01\x02\x01\x02\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01\x04\x05\x04", // 𦾼
+ 0x26fbd: "\x01\x02\x01\x02\x02\x05\x02\x02\x01\x02\x04\x01\x03\x04\x04\x05\x04", // 𦾽
+ 0x26fbe: "\x01\x02\x01\x02\x03\x05\x04\x04\x03\x01\x01\x02\x05\x02\x04\x05\x04", // 𦾾
+ 0x26fbf: "\x01\x02\x01\x02\x04\x03\x01\x02\x03\x04\x01\x01\x02\x01\x03\x05\x01\x01", // 𦾿
+ 0x26fc0: "\x01\x02\x01\x02\x03\x01\x02\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01", // 𦿀
+ 0x26fc1: "\x01\x02\x01\x02\x03\x01\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 𦿁
+ 0x26fc2: "\x01\x02\x01\x02\x01\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𦿂
+ 0x26fc3: "\x01\x02\x01\x02\x01\x02\x01\x01\x01\x05\x04\x02\x04\x03\x03\x05\x04\x01", // 𦿃
+ 0x26fc4: "\x01\x02\x01\x02\x02\x05\x01\x01\x02\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 𦿄
+ 0x26fc5: "\x01\x02\x01\x02\x04\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05", // 𦿅
+ 0x26fc6: "\x01\x02\x01\x02\x01\x03\x02\x05\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 𦿆
+ 0x26fc7: "\x01\x02\x02\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x02", // 𦿇
+ 0x26fc8: "\x01\x02\x01\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02", // 𦿈
+ 0x26fc9: "\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𦿉
+ 0x26fca: "\x01\x02\x01\x02\x02\x01\x05\x03\x01\x05\x05\x05\x05\x02\x05\x01\x02\x01", // 𦿊
+ 0x26fcb: "\x01\x02\x01\x02\x01\x02\x01\x05\x04\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 𦿋
+ 0x26fcc: "\x01\x02\x01\x02\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x04\x04\x04\x04", // 𦿌
+ 0x26fcd: "\x01\x02\x01\x02\x03\x02\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 𦿍
+ 0x26fce: "\x01\x02\x01\x02\x05\x02\x02\x05\x02\x01\x01\x02\x03\x04\x03\x01\x03\x04", // 𦿎
+ 0x26fcf: "\x01\x02\x01\x02\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x03\x05\x04", // 𦿏
+ 0x26fd0: "\x01\x02\x01\x02\x02\x03\x03\x02\x04\x01\x01\x01\x02\x01\x01\x05\x03\x04", // 𦿐
+ 0x26fd1: "\x05\x02\x03\x05\x02\x02\x02\x05\x01\x01\x02\x05\x01\x01\x05\x02\x03\x05\x02\x02", // 𦿑
+ 0x26fd2: "\x01\x02\x01\x02\x01\x02\x03\x04\x01\x01\x01\x03\x04\x03\x01\x02\x03\x04", // 𦿒
+ 0x26fd3: "\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x03\x05\x05\x04", // 𦿓
+ 0x26fd4: "\x01\x02\x01\x02\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04\x01\x03\x02", // 𦿔
+ 0x26fd5: "\x01\x02\x01\x02\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02\x03\x04", // 𦿕
+ 0x26fd6: "\x01\x02\x01\x02\x01\x02\x01\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05", // 𦿖
+ 0x26fd7: "\x01\x02\x01\x02\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x03\x01\x01\x05", // 𦿗
+ 0x26fd8: "\x01\x02\x01\x02\x03\x04\x03\x04\x02\x05\x01\x01\x01\x02\x05\x02\x02\x01", // 𦿘
+ 0x26fd9: "\x01\x02\x01\x02\x03\x05\x02\x05\x03\x04\x01\x05\x03\x05\x05\x01\x03\x04", // 𦿙
+ 0x26fda: "\x01\x02\x02\x02\x05\x02\x02\x01\x02\x03\x03\x04\x04\x04\x05\x04", // 𦿚
+ 0x26fdb: "\x01\x02\x02\x02\x05\x02\x02\x01\x04\x05\x03\x02\x03\x02\x05\x01\x01", // 𦿛
+ 0x26fdc: "\x01\x02\x02\x04\x04\x05\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𦿜
+ 0x26fdd: "\x01\x02\x02\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04\x02\x05\x02", // 𦿝
+ 0x26fde: "\x01\x02\x01\x02\x04\x04\x01\x03\x02\x05\x03\x05\x04\x01\x04\x05\x04\x04", // 𦿞
+ 0x26fdf: "\x01\x02\x01\x02\x05\x05\x04\x04\x04\x04\x01\x03\x04\x01\x02\x05\x01\x02", // 𦿟
+ 0x26fe0: "\x01\x02\x01\x02\x04\x05\x03\x02\x04\x01\x01\x01\x02\x01\x01\x03\x01\x02", // 𦿠
+ 0x26fe1: "\x01\x02\x01\x02\x02\x05\x01\x01\x05\x04\x03\x03\x04\x01\x01\x03\x04", // 𦿡
+ 0x26fe2: "\x01\x02\x01\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04\x01\x03\x01\x02", // 𦿢
+ 0x26fe3: "\x01\x02\x01\x02\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x01\x03\x01\x02", // 𦿣
+ 0x26fe4: "\x01\x02\x01\x02\x04\x01\x05\x05\x04\x02\x05\x01\x02\x01\x01\x03\x01\x02", // 𦿤
+ 0x26fe5: "\x01\x02\x01\x02\x02\x01\x02\x05\x03\x04\x03\x04\x01\x05\x01\x03\x01\x02", // 𦿥
+ 0x26fe6: "\x01\x02\x01\x02\x02\x05\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04\x02\x02", // 𦿦
+ 0x26fe7: "\x01\x02\x01\x02\x02\x01\x02\x01\x01\x03\x01\x01\x02\x03\x04\x05\x03\x04", // 𦿧
+ 0x26fe8: "\x01\x02\x01\x02\x03\x01\x02\x03\x04\x05\x05\x05\x01\x02\x05\x01\x02\x01", // 𦿨
+ 0x26fe9: "\x01\x02\x01\x02\x01\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x02", // 𦿩
+ 0x26fea: "\x01\x02\x01\x02\x03\x05\x04\x01\x01\x01\x02\x04\x05\x04\x01\x03\x02", // 𦿪
+ 0x26feb: "\x01\x02\x01\x02\x04\x01\x01\x01\x02\x05\x01\x01\x03\x04\x02\x05\x01\x01", // 𦿫
+ 0x26fec: "\x01\x02\x01\x02\x04\x01\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𦿬
+ 0x26fed: "\x01\x02\x01\x02\x04\x04\x01\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04", // 𦿭
+ 0x26fee: "\x01\x02\x01\x02\x04\x03\x01\x03\x05\x03\x03\x03\x04\x03\x01\x01\x02\x01", // 𦿮
+ 0x26fef: "\x01\x02\x01\x02\x04\x03\x01\x03\x04\x02\x05\x02\x02\x01\x03\x05\x03\x04", // 𦿯
+ 0x26ff0: "\x01\x02\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𦿰
+ 0x26ff1: "\x01\x02\x01\x02\x01\x03\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 𦿱
+ 0x26ff2: "\x01\x02\x01\x02\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𦿲
+ 0x26ff3: "\x01\x02\x01\x02\x01\x02\x01\x03\x05\x01\x02\x01\x03\x05\x04\x01\x02\x01", // 𦿳
+ 0x26ff4: "\x01\x02\x01\x02\x02\x05\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 𦿴
+ 0x26ff5: "\x01\x02\x01\x02\x03\x02\x05\x01\x01\x02\x01\x01\x01\x05\x04\x01\x03\x04", // 𦿵
+ 0x26ff6: "\x01\x02\x02\x05\x01\x05\x04\x03\x01\x02\x05\x01\x01\x02\x02\x05\x03", // 𦿶
+ 0x26ff7: "\x01\x02\x02\x03\x05\x03\x03\x05\x02\x05\x01\x01\x02\x05\x01\x01\x05", // 𦿷
+ 0x26ff8: "\x01\x02\x02\x03\x02\x01\x02\x01\x05\x04\x02\x05\x01\x02\x01\x04", // 𦿸
+ 0x26ff9: "\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x02\x05\x03\x04", // 𦿹
+ 0x26ffa: "\x01\x02\x01\x02\x03\x01\x02\x03\x04\x03\x05\x03\x04\x03\x01\x02\x03\x04", // 𦿺
+ 0x26ffb: "\x01\x02\x01\x02\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x01\x01\x02\x01", // 𦿻
+ 0x26ffc: "\x01\x02\x01\x02\x03\x05\x02\x01\x02\x01\x02\x01\x02\x01\x02\x01\x02\x01", // 𦿼
+ 0x26ffd: "\x01\x02\x01\x02\x03\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𦿽
+ 0x26ffe: "\x01\x02\x01\x02\x03\x01\x02\x03\x04\x02\x02\x03\x04\x02\x04\x01\x03\x04", // 𦿾
+ 0x26fff: "\x01\x02\x01\x02\x05\x05\x04\x04\x04\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 𦿿
+ 0x27000: "\x01\x02\x01\x02\x03\x05\x03\x04\x01\x01\x01\x02\x05\x01\x01\x03\x04\x04", // 𧀀
+ 0x27001: "\x01\x02\x01\x02\x03\x01\x02\x03\x04\x02\x05\x01\x02\x02\x05\x02\x05\x01", // 𧀁
+ 0x27002: "\x01\x02\x01\x02\x03\x04\x04\x03\x01\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 𧀂
+ 0x27003: "\x01\x02\x02\x01\x04\x03\x01\x02\x03\x04\x01\x04\x03\x01\x02\x03\x04", // 𧀃
+ 0x27004: "\x01\x02\x01\x02\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 𧀄
+ 0x27005: "\x02\x01\x02\x01\x02\x05\x02\x02\x01\x01\x03\x01\x02\x03\x04\x05\x03\x04", // 𧀅
+ 0x27006: "\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x01\x02\x05\x01\x04\x03\x01", // 𧀆
+ 0x27007: "\x01\x02\x01\x02\x02\x05\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x01\x01", // 𧀇
+ 0x27008: "\x01\x02\x02\x03\x04\x01\x05\x02\x03\x04\x01\x05\x02\x02\x05\x01\x01", // 𧀈
+ 0x27009: "\x01\x02\x02\x04\x04\x01\x05\x04\x05\x04\x05\x04\x03\x04\x02\x03\x04", // 𧀉
+ 0x2700a: "\x01\x02\x02\x05\x05\x04\x04\x04\x04\x03\x04\x04\x03\x01\x02\x03\x04", // 𧀊
+ 0x2700b: "\x01\x02\x02\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x03\x05\x04", // 𧀋
+ 0x2700c: "\x01\x02\x02\x04\x04\x01\x01\x02\x05\x01\x02\x03\x04\x03\x05\x03\x04", // 𧀌
+ 0x2700d: "\x05\x02\x02\x05\x02\x02\x01\x01\x02\x01\x05\x02\x05\x05\x01\x01\x03\x04", // 𧀍
+ 0x2700e: "\x01\x02\x01\x02\x04\x01\x02\x05\x01\x04\x05\x02\x05\x01\x02\x05\x01\x01", // 𧀎
+ 0x2700f: "\x01\x02\x02\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x05\x04\x03\x05", // 𧀏
+ 0x27010: "\x01\x02\x02\x01\x01\x02\x01\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 𧀐
+ 0x27011: "\x01\x02\x02\x03\x01\x02\x03\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𧀑
+ 0x27012: "\x01\x02\x02\x05\x03\x01\x01\x02\x05\x01\x02\x03\x04\x03\x01\x03\x04", // 𧀒
+ 0x27013: "\x01\x02\x02\x05\x01\x03\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 𧀓
+ 0x27014: "\x01\x02\x01\x02\x03\x04\x04\x03\x05\x03\x03\x01\x03\x05\x04\x03\x03\x03", // 𧀔
+ 0x27015: "\x01\x02\x01\x02\x05\x02\x04\x01\x04\x03\x01\x01\x02\x04\x05\x04", // 𧀕
+ 0x27016: "\x01\x02\x01\x02\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 𧀖
+ 0x27017: "\x01\x02\x01\x02\x03\x01\x01\x02\x03\x04\x05\x05\x05\x02\x05\x01\x02\x01", // 𧀗
+ 0x27018: "\x01\x02\x01\x02\x04\x04\x02\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𧀘
+ 0x27019: "\x01\x02\x01\x02\x01\x02\x02\x01\x01\x01\x04\x03\x03\x04\x04\x04\x04\x04", // 𧀙
+ 0x2701a: "\x01\x02\x01\x02\x03\x01\x02\x03\x04\x05\x01\x02\x05\x01\x04\x03\x03\x04", // 𧀚
+ 0x2701b: "\x01\x02\x01\x02\x05\x04\x03\x05\x04\x01\x01\x05\x01\x05\x04\x04\x04\x04", // 𧀛
+ 0x2701c: "\x01\x02\x02\x04\x03\x03\x04\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01", // 𧀜
+ 0x2701d: "\x01\x02\x01\x02\x04\x04\x01\x03\x02\x02\x03\x01\x03\x04\x01\x02\x03\x04", // 𧀝
+ 0x2701e: "\x01\x02\x02\x02\x05\x01\x01\x01\x02\x03\x04\x01\x02\x05\x01\x03\x04", // 𧀞
+ 0x2701f: "\x01\x02\x02\x05\x04\x02\x05\x01\x05\x03\x05\x04\x02\x05\x02\x02\x01", // 𧀟
+ 0x27020: "\x01\x02\x01\x02\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 𧀠
+ 0x27021: "\x01\x02\x01\x02\x04\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 𧀡
+ 0x27022: "\x01\x02\x01\x02\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 𧀢
+ 0x27023: "\x01\x02\x01\x02\x04\x01\x01\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𧀣
+ 0x27024: "\x01\x02\x01\x02\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𧀤
+ 0x27025: "\x01\x02\x01\x02\x01\x03\x02\x05\x01\x01\x04\x05\x04\x05\x04\x04\x03\x05\x04", // 𧀥
+ 0x27026: "\x01\x02\x01\x02\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01", // 𧀦
+ 0x27027: "\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x01\x02\x01\x03\x05\x03\x05\x04", // 𧀧
+ 0x27028: "\x01\x02\x01\x02\x05\x05\x05\x02\x05\x03\x04\x01\x05\x04\x04\x05\x04\x04\x05", // 𧀨
+ 0x27029: "\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x03\x05\x03\x03", // 𧀩
+ 0x2702a: "\x01\x02\x01\x02\x04\x04\x01\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 𧀪
+ 0x2702b: "\x01\x02\x01\x02\x01\x03\x05\x04\x03\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 𧀫
+ 0x2702c: "\x01\x02\x01\x02\x03\x05\x04\x01\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04", // 𧀬
+ 0x2702d: "\x01\x02\x01\x02\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x03\x04\x01\x03\x04", // 𧀭
+ 0x2702e: "\x01\x02\x01\x02\x01\x02\x05\x01\x01\x02\x04\x04\x01\x03\x04\x03\x01\x03\x04", // 𧀮
+ 0x2702f: "\x01\x02\x01\x02\x04\x04\x05\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 𧀯
+ 0x27030: "\x01\x02\x01\x02\x02\x05\x01\x02\x01\x02\x01\x04\x01\x04\x03\x04\x05\x02\x05\x02", // 𧀰
+ 0x27031: "\x01\x02\x01\x02\x01\x02\x02\x01\x03\x05\x04\x05\x02\x05\x02\x04\x05\x04\x04", // 𧀱
+ 0x27032: "\x01\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x03\x04\x02\x05\x01\x03\x05", // 𧀲
+ 0x27033: "\x01\x02\x01\x02\x01\x02\x01\x01\x01\x05\x04\x05\x01\x01\x02\x03\x03\x04\x04", // 𧀳
+ 0x27034: "\x01\x02\x01\x02\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x03\x05\x04\x01", // 𧀴
+ 0x27035: "\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02\x01\x02\x03\x04", // 𧀵
+ 0x27036: "\x01\x02\x02\x01\x02\x01\x04\x05\x02\x05\x01\x02\x01\x05\x04\x02\x01\x03\x04", // 𧀶
+ 0x27037: "\x01\x02\x01\x02\x03\x03\x03\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04", // 𧀷
+ 0x27038: "\x01\x02\x01\x02\x03\x02\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x02\x03\x04", // 𧀸
+ 0x27039: "\x01\x02\x01\x02\x04\x01\x03\x01\x02\x02\x01\x04\x04\x04\x04\x04\x05\x04", // 𧀹
+ 0x2703a: "\x01\x02\x01\x02\x01\x02\x01\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𧀺
+ 0x2703b: "\x01\x02\x01\x02\x03\x02\x03\x05\x01\x03\x03\x05\x04\x01\x01\x01\x02\x05\x01", // 𧀻
+ 0x2703c: "\x01\x02\x01\x02\x05\x02\x03\x02\x05\x01\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 𧀼
+ 0x2703d: "\x01\x02\x01\x02\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x05\x02\x02\x01", // 𧀽
+ 0x2703e: "\x01\x02\x01\x02\x01\x04\x05\x02\x04\x01\x03\x04\x03\x04\x05\x01\x05\x02\x03", // 𧀾
+ 0x2703f: "\x01\x02\x01\x02\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x03\x04\x05\x02", // 𧀿
+ 0x27040: "\x01\x02\x01\x02\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 𧁀
+ 0x27041: "\x01\x02\x01\x02\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 𧁁
+ 0x27042: "\x01\x02\x01\x02\x05\x02\x04\x03\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 𧁂
+ 0x27043: "\x01\x02\x01\x02\x03\x01\x02\x03\x04\x04\x01\x05\x05\x04\x02\x05\x01\x02\x01", // 𧁃
+ 0x27044: "\x01\x02\x01\x02\x04\x04\x01\x02\x01\x02\x01\x03\x03\x05\x04\x01\x04\x02\x02", // 𧁄
+ 0x27045: "\x01\x02\x01\x02\x05\x03\x01\x02\x01\x02\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 𧁅
+ 0x27046: "\x01\x02\x01\x02\x02\x05\x02\x02\x05\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𧁆
+ 0x27047: "\x05\x02\x03\x05\x02\x03\x05\x02\x03\x05\x02\x03\x01\x05\x02\x05\x02\x02\x05\x04", // 𧁇
+ 0x27048: "\x01\x02\x01\x02\x01\x02\x01\x03\x05\x01\x02\x01\x03\x05\x04\x01\x02\x03\x04", // 𧁈
+ 0x27049: "\x01\x02\x01\x02\x01\x02\x05\x01\x01\x02\x04\x04\x01\x05\x03\x05\x02\x01\x05", // 𧁉
+ 0x2704a: "\x01\x02\x01\x02\x02\x05\x01\x01\x01\x05\x01\x01\x05\x03\x04\x04\x05\x04\x04", // 𧁊
+ 0x2704b: "\x01\x02\x01\x02\x03\x01\x05\x05\x04\x01\x04\x03\x01\x03\x04\x04\x05\x04\x04", // 𧁋
+ 0x2704c: "\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x03\x02\x01\x02\x05\x03\x04\x01", // 𧁌
+ 0x2704d: "\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x02\x01\x02\x02\x01\x01\x01\x05\x04", // 𧁍
+ 0x2704e: "\x01\x02\x02\x02\x05\x01\x01\x04\x05\x01\x02\x01\x02\x01\x03\x01\x03\x04", // 𧁎
+ 0x2704f: "\x01\x02\x01\x02\x01\x02\x04\x05\x02\x05\x01\x02\x01\x05\x04\x02\x01\x03\x04", // 𧁏
+ 0x27050: "\x01\x02\x02\x04\x04\x05\x05\x05\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𧁐
+ 0x27051: "\x01\x02\x01\x02\x04\x04\x01\x05\x04\x05\x04\x05\x04\x03\x04\x02\x04\x04\x04", // 𧁑
+ 0x27052: "\x01\x02\x01\x02\x01\x02\x03\x04\x04\x03\x01\x01\x02\x01\x04\x05\x05\x03\x04", // 𧁒
+ 0x27053: "\x01\x02\x01\x02\x03\x02\x02\x05\x01\x02\x02\x01\x01\x03\x01\x01\x05\x03\x04", // 𧁓
+ 0x27054: "\x01\x02\x01\x02\x04\x04\x01\x01\x02\x05\x01\x01\x02\x04\x02\x05\x02\x02\x01", // 𧁔
+ 0x27055: "\x01\x02\x01\x02\x04\x04\x01\x03\x01\x01\x03\x03\x01\x01\x02\x01\x03\x01\x02", // 𧁕
+ 0x27056: "\x01\x02\x01\x02\x01\x02\x01\x02\x05\x05\x04\x05\x05\x04\x02\x05\x01\x02\x01", // 𧁖
+ 0x27057: "\x01\x02\x01\x02\x03\x02\x05\x03\x05\x04\x01\x04\x05\x04\x04\x01\x03\x01\x02", // 𧁗
+ 0x27058: "\x01\x02\x01\x02\x05\x03\x01\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04", // 𧁘
+ 0x27059: "\x01\x02\x01\x02\x04\x03\x01\x01\x02\x01\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𧁙
+ 0x2705a: "\x01\x02\x01\x02\x04\x05\x04\x04\x04\x05\x04\x04\x04\x05\x04\x04\x01\x02\x01", // 𧁚
+ 0x2705b: "\x01\x02\x01\x02\x04\x04\x01\x05\x02\x02\x05\x01\x05\x04\x01\x04\x04\x04\x04", // 𧁛
+ 0x2705c: "\x01\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 𧁜
+ 0x2705d: "\x01\x02\x01\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01\x02\x05\x02\x05\x01\x01", // 𧁝
+ 0x2705e: "\x01\x02\x01\x02\x01\x01\x02\x03\x04\x01\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 𧁞
+ 0x2705f: "\x01\x02\x01\x02\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x04\x05\x05\x03\x01", // 𧁟
+ 0x27060: "\x01\x02\x01\x02\x05\x02\x03\x05\x02\x05\x01\x01\x01\x03\x04\x01\x01\x02", // 𧁠
+ 0x27061: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x02\x03\x04\x01\x02\x05\x01\x01\x02\x04", // 𧁡
+ 0x27062: "\x01\x02\x01\x02\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𧁢
+ 0x27063: "\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 𧁣
+ 0x27064: "\x01\x02\x01\x02\x02\x05\x01\x03\x04\x02\x05\x01\x03\x04\x02\x05\x01\x03\x04", // 𧁤
+ 0x27065: "\x02\x01\x02\x01\x02\x05\x02\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04", // 𧁥
+ 0x27066: "\x02\x01\x02\x01\x02\x05\x02\x02\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𧁦
+ 0x27067: "\x02\x01\x02\x01\x02\x05\x02\x02\x05\x01\x02\x01\x04\x05\x05\x04\x02\x03\x04", // 𧁧
+ 0x27068: "\x01\x02\x01\x02\x03\x01\x02\x03\x04\x03\x05\x02\x05\x01\x02\x01\x01\x03\x04", // 𧁨
+ 0x27069: "\x01\x02\x01\x02\x03\x01\x02\x03\x04\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 𧁩
+ 0x2706a: "\x01\x02\x01\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 𧁪
+ 0x2706b: "\x01\x02\x01\x02\x03\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 𧁫
+ 0x2706c: "\x01\x02\x01\x02\x03\x03\x02\x03\x01\x02\x05\x01\x01\x02\x01\x01\x01\x01\x02", // 𧁬
+ 0x2706d: "\x01\x02\x01\x02\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01\x02\x02\x01\x01\x01", // 𧁭
+ 0x2706e: "\x01\x02\x01\x02\x03\x03\x02\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x01\x02", // 𧁮
+ 0x2706f: "\x01\x02\x01\x02\x05\x05\x04\x04\x04\x04\x03\x05\x01\x02\x05\x01\x02\x01\x04", // 𧁯
+ 0x27070: "\x01\x02\x01\x02\x03\x05\x02\x05\x03\x04\x02\x05\x01\x01\x01\x02\x01\x05\x04", // 𧁰
+ 0x27071: "\x01\x02\x02\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01\x03\x01\x03\x04", // 𧁱
+ 0x27072: "\x01\x02\x02\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01\x03\x03\x01\x02", // 𧁲
+ 0x27073: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x03\x05\x01\x01\x05\x02\x01\x05", // 𧁳
+ 0x27074: "\x01\x02\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x02\x02", // 𧁴
+ 0x27075: "\x01\x02\x02\x01\x02\x01\x03\x01\x01\x02\x02\x02\x02\x01\x04\x04\x04\x04", // 𧁵
+ 0x27076: "\x01\x02\x02\x01\x03\x02\x05\x04\x03\x01\x02\x01\x01\x03\x04\x01\x02\x01", // 𧁶
+ 0x27077: "\x01\x02\x02\x01\x02\x02\x05\x01\x04\x01\x03\x01\x02\x05\x01\x01\x01\x02", // 𧁷
+ 0x27078: "\x01\x02\x02\x03\x05\x01\x01\x04\x04\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 𧁸
+ 0x27079: "\x04\x01\x03\x01\x02\x05\x01\x01\x01\x02\x01\x02\x02\x01\x02\x02\x05\x01", // 𧁹
+ 0x2707a: "\x01\x02\x02\x05\x05\x04\x02\x03\x04\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 𧁺
+ 0x2707b: "\x01\x02\x01\x02\x02\x01\x02\x01\x05\x01\x01\x04\x05\x02\x05\x02\x01\x03\x01\x02", // 𧁻
+ 0x2707c: "\x01\x02\x01\x02\x05\x02\x01\x03\x01\x02\x01\x03\x05\x04\x01\x04\x05\x04", // 𧁼
+ 0x2707d: "\x01\x02\x01\x02\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02\x04\x05\x04", // 𧁽
+ 0x2707e: "\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01\x03\x03\x05\x04\x04", // 𧁾
+ 0x2707f: "\x01\x02\x01\x02\x03\x05\x03\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 𧁿
+ 0x27080: "\x01\x02\x01\x02\x03\x04\x04\x03\x05\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𧂀
+ 0x27081: "\x01\x02\x01\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x01\x05\x03\x04", // 𧂁
+ 0x27082: "\x01\x02\x01\x02\x03\x04\x01\x01\x02\x04\x03\x01\x01\x05\x03\x04\x01\x05\x03\x04", // 𧂂
+ 0x27083: "\x01\x02\x01\x02\x03\x04\x01\x05\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𧂃
+ 0x27084: "\x01\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x03\x02\x01\x05\x01\x01", // 𧂄
+ 0x27085: "\x01\x02\x01\x02\x03\x01\x02\x03\x04\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 𧂅
+ 0x27086: "\x01\x02\x01\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x05\x03\x04", // 𧂆
+ 0x27087: "\x01\x02\x02\x03\x04\x03\x04\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04", // 𧂇
+ 0x27088: "\x01\x02\x01\x02\x01\x02\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 𧂈
+ 0x27089: "\x01\x02\x01\x02\x03\x02\x05\x01\x01\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 𧂉
+ 0x2708a: "\x01\x02\x01\x02\x02\x01\x03\x05\x04\x05\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𧂊
+ 0x2708b: "\x01\x02\x01\x02\x04\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x05\x04\x04", // 𧂋
+ 0x2708c: "\x01\x02\x01\x02\x01\x04\x03\x03\x04\x04\x03\x03\x04\x05\x03\x05\x04\x01\x05\x02", // 𧂌
+ 0x2708d: "\x01\x02\x01\x02\x05\x01\x05\x05\x01\x05\x01\x02\x02\x01\x03\x04\x04\x05\x04", // 𧂍
+ 0x2708e: "\x01\x02\x01\x02\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x01\x03\x05\x04\x01\x05", // 𧂎
+ 0x2708f: "\x01\x02\x01\x02\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04\x04\x05\x04", // 𧂏
+ 0x27090: "\x01\x02\x01\x02\x03\x01\x02\x03\x04\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𧂐
+ 0x27091: "\x01\x02\x01\x02\x04\x01\x03\x05\x02\x02\x01\x01\x05\x04\x04\x04\x04\x01\x03\x02", // 𧂑
+ 0x27092: "\x01\x02\x01\x02\x04\x03\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 𧂒
+ 0x27093: "\x02\x05\x01\x01\x03\x03\x03\x03\x03\x03\x02\x05\x02\x01\x02\x01\x02\x01\x05\x04", // 𧂓
+ 0x27094: "\x01\x02\x01\x02\x01\x02\x01\x04\x05\x03\x05\x05\x04\x02\x03\x04\x03\x05\x05\x04", // 𧂔
+ 0x27095: "\x01\x02\x01\x02\x04\x01\x02\x05\x01\x04\x05\x02\x05\x01\x01\x02\x01\x03\x03\x05", // 𧂕
+ 0x27096: "\x01\x02\x01\x02\x01\x01\x02\x01\x01\x01\x02\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 𧂖
+ 0x27097: "\x01\x02\x01\x02\x03\x04\x03\x04\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04", // 𧂗
+ 0x27098: "\x01\x02\x01\x02\x02\x05\x01\x02\x05\x01\x05\x01\x05\x01\x02\x01\x03\x04\x03\x04", // 𧂘
+ 0x27099: "\x01\x02\x01\x02\x04\x04\x01\x03\x02\x01\x05\x01\x01\x03\x05\x04\x04\x04\x04", // 𧂙
+ 0x2709a: "\x01\x02\x01\x02\x03\x01\x01\x02\x05\x02\x02\x05\x01\x01\x01\x02\x05\x02\x02\x01", // 𧂚
+ 0x2709b: "\x01\x02\x01\x02\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x01\x05\x05\x04", // 𧂛
+ 0x2709c: "\x01\x02\x01\x02\x04\x04\x05\x03\x05\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 𧂜
+ 0x2709d: "\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x02\x05\x01\x01\x01\x01\x05\x03\x04", // 𧂝
+ 0x2709e: "\x01\x02\x01\x02\x01\x02\x01\x04\x03\x01\x01\x02\x04\x03\x03\x04\x04\x03\x03\x04", // 𧂞
+ 0x2709f: "\x01\x02\x01\x02\x03\x02\x01\x01\x05\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𧂟
+ 0x270a0: "\x01\x02\x02\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04", // 𧂠
+ 0x270a1: "\x01\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x01\x01\x04\x05\x04\x04", // 𧂡
+ 0x270a2: "\x01\x02\x01\x02\x01\x02\x05\x01\x02\x05\x03\x01\x01\x01\x02\x05\x03\x05\x01\x01", // 𧂢
+ 0x270a3: "\x01\x02\x01\x02\x01\x02\x01\x04\x05\x01\x03\x01\x02\x03\x04\x03\x05\x05\x04", // 𧂣
+ 0x270a4: "\x01\x02\x01\x02\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02\x01\x03\x02\x05\x01\x01\x04", // 𧂤
+ 0x270a5: "\x05\x02\x03\x05\x02\x03\x03\x02\x05\x01\x01\x02\x05\x02\x03\x02\x05\x01\x01\x02\x05\x02", // 𧂥
+ 0x270a6: "\x01\x02\x02\x01\x02\x03\x04\x01\x03\x02\x05\x02\x02\x01\x03\x02\x05\x02\x02", // 𧂦
+ 0x270a7: "\x01\x02\x01\x02\x04\x04\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01\x04\x01\x05\x03", // 𧂧
+ 0x270a8: "\x01\x02\x01\x02\x04\x01\x04\x03\x04\x05\x02\x05\x02\x02\x05\x01\x02\x01\x03\x04", // 𧂨
+ 0x270a9: "\x01\x02\x01\x02\x05\x05\x04\x04\x04\x04\x04\x05\x04\x04\x02\x05\x01\x02\x01\x04", // 𧂩
+ 0x270aa: "\x01\x02\x02\x01\x03\x04\x01\x01\x01\x02\x05\x01\x01\x01\x03\x04\x05\x03\x04", // 𧂪
+ 0x270ab: "\x01\x02\x02\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x05\x01\x05", // 𧂫
+ 0x270ac: "\x01\x02\x02\x01\x01\x01\x02\x03\x04\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𧂬
+ 0x270ad: "\x01\x02\x01\x02\x03\x01\x01\x02\x03\x04\x01\x03\x01\x01\x05\x03\x04\x01\x02\x04", // 𧂭
+ 0x270ae: "\x01\x02\x01\x02\x01\x01\x02\x01\x02\x05\x01\x01\x03\x04\x04\x03\x05\x01\x01\x02", // 𧂮
+ 0x270af: "\x01\x02\x01\x02\x01\x02\x05\x03\x05\x01\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 𧂯
+ 0x270b0: "\x01\x02\x01\x02\x05\x01\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01\x01\x03\x04", // 𧂰
+ 0x270b1: "\x01\x02\x01\x02\x01\x03\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04\x01\x03\x01\x02", // 𧂱
+ 0x270b2: "\x01\x02\x01\x02\x01\x03\x04\x04\x03\x01\x01\x02\x03\x05\x04\x03\x01\x02\x03\x04", // 𧂲
+ 0x270b3: "\x01\x02\x02\x05\x01\x01\x02\x02\x05\x01\x02\x05\x01\x01\x01\x02\x01\x03\x01\x02", // 𧂳
+ 0x270b4: "\x01\x02\x01\x02\x02\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x01\x03\x01\x02", // 𧂴
+ 0x270b5: "\x01\x02\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x01\x03\x01\x02", // 𧂵
+ 0x270b6: "\x01\x02\x01\x02\x04\x01\x03\x03\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𧂶
+ 0x270b7: "\x01\x02\x01\x02\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x01\x01\x02\x03\x04", // 𧂷
+ 0x270b8: "\x01\x02\x01\x02\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x01\x02\x01", // 𧂸
+ 0x270b9: "\x01\x02\x01\x02\x05\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 𧂹
+ 0x270ba: "\x01\x02\x01\x02\x01\x02\x02\x01\x01\x01\x03\x02\x05\x02\x02\x01\x04\x05\x04\x04", // 𧂺
+ 0x270bb: "\x01\x02\x01\x02\x03\x01\x01\x02\x03\x04\x02\x05\x02\x02\x01\x04\x01\x03\x05\x03\x04", // 𧂻
+ 0x270bc: "\x01\x02\x01\x02\x01\x02\x03\x04\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 𧂼
+ 0x270bd: "\x01\x02\x02\x05\x01\x01\x01\x02\x01\x02\x02\x01\x01\x02\x01\x02\x01\x01\x02", // 𧂽
+ 0x270be: "\x01\x02\x01\x02\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x04\x03\x01\x02\x03\x04", // 𧂾
+ 0x270bf: "\x01\x02\x01\x02\x03\x05\x01\x01\x04\x05\x04\x04\x04\x05\x04\x04\x04\x05\x04\x04", // 𧂿
+ 0x270c0: "\x01\x02\x01\x02\x02\x05\x01\x02\x01\x04\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𧃀
+ 0x270c1: "\x01\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x05\x01\x03\x04\x04\x04", // 𧃁
+ 0x270c2: "\x01\x02\x01\x02\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04\x03\x01\x01\x05", // 𧃂
+ 0x270c3: "\x01\x02\x01\x02\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x05\x01\x01\x02\x05\x02", // 𧃃
+ 0x270c4: "\x01\x02\x01\x02\x03\x05\x04\x02\x05\x01\x03\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 𧃄
+ 0x270c5: "\x01\x02\x01\x02\x03\x05\x02\x05\x01\x02\x01\x03\x01\x02\x03\x04\x04\x05\x04\x04", // 𧃅
+ 0x270c6: "\x01\x02\x01\x02\x03\x04\x01\x01\x02\x04\x03\x01\x05\x05\x01\x02\x04\x01\x03\x04", // 𧃆
+ 0x270c7: "\x01\x02\x01\x02\x03\x05\x04\x01\x04\x03\x01\x01\x02\x01\x04\x03\x01\x02\x05\x01", // 𧃇
+ 0x270c8: "\x01\x02\x01\x02\x04\x01\x04\x03\x01\x01\x03\x03\x05\x04\x01\x01\x01\x02\x05\x01", // 𧃈
+ 0x270c9: "\x01\x02\x01\x02\x04\x04\x01\x01\x03\x04\x04\x03\x02\x05\x01\x01\x04\x03\x03\x04", // 𧃉
+ 0x270ca: "\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𧃊
+ 0x270cb: "\x01\x02\x02\x03\x04\x04\x05\x01\x01\x05\x04\x03\x04\x01\x01\x02\x03\x04", // 𧃋
+ 0x270cc: "\x01\x02\x02\x02\x05\x01\x02\x01\x02\x01\x02\x05\x03\x04\x02\x05\x01\x01", // 𧃌
+ 0x270cd: "\x01\x02\x02\x03\x02\x05\x01\x01\x01\x02\x01\x02\x01\x03\x05\x03\x04\x03\x05\x04", // 𧃍
+ 0x270ce: "\x01\x02\x01\x02\x05\x02\x03\x03\x02\x05\x01\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 𧃎
+ 0x270cf: "\x01\x02\x01\x02\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04\x03\x05\x03\x04", // 𧃏
+ 0x270d0: "\x01\x02\x01\x02\x02\x05\x01\x02\x01\x02\x01\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01", // 𧃐
+ 0x270d1: "\x01\x02\x01\x02\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x01\x01\x01\x02\x05\x04", // 𧃑
+ 0x270d2: "\x01\x02\x01\x02\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 𧃒
+ 0x270d3: "\x01\x02\x01\x02\x01\x03\x04\x04\x03\x01\x01\x02\x03\x05\x04\x01\x01\x01\x02\x05\x01", // 𧃓
+ 0x270d4: "\x01\x02\x01\x02\x01\x02\x01\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𧃔
+ 0x270d5: "\x01\x02\x01\x02\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 𧃕
+ 0x270d6: "\x01\x02\x01\x02\x03\x04\x03\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 𧃖
+ 0x270d7: "\x01\x02\x01\x02\x01\x02\x05\x03\x05\x01\x01\x01\x02\x02\x05\x01\x02\x05\x02\x02\x01", // 𧃗
+ 0x270d8: "\x01\x02\x01\x02\x03\x01\x01\x02\x05\x02\x02\x01\x05\x03\x01\x05\x02\x05\x01\x01\x01\x01", // 𧃘
+ 0x270d9: "\x01\x02\x01\x02\x01\x02\x02\x05\x01\x01\x01\x02\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 𧃙
+ 0x270da: "\x01\x02\x01\x02\x03\x05\x04\x01\x01\x03\x01\x02\x01\x03\x05\x04\x01\x04\x05\x04", // 𧃚
+ 0x270db: "\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x04\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01", // 𧃛
+ 0x270dc: "\x01\x02\x01\x02\x03\x05\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x05\x04", // 𧃜
+ 0x270dd: "\x01\x02\x01\x02\x01\x02\x05\x03\x05\x01\x01\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 𧃝
+ 0x270de: "\x01\x02\x01\x02\x02\x01\x01\x01\x05\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 𧃞
+ 0x270df: "\x01\x02\x01\x02\x05\x04\x01\x05\x04\x01\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 𧃟
+ 0x270e0: "\x01\x02\x01\x02\x01\x02\x02\x01\x01\x01\x03\x05\x05\x01\x01\x02\x01\x03\x05\x01\x01", // 𧃠
+ 0x270e1: "\x01\x02\x01\x02\x04\x04\x01\x05\x05\x05\x03\x02\x01\x01\x05\x01\x01\x01\x02\x03\x04", // 𧃡
+ 0x270e2: "\x01\x02\x01\x02\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 𧃢
+ 0x270e3: "\x01\x02\x01\x02\x02\x05\x02\x02\x01\x02\x04\x04\x04\x04\x04\x03\x05\x01\x05\x02\x03", // 𧃣
+ 0x270e4: "\x01\x02\x01\x02\x05\x01\x01\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01\x01\x03\x04", // 𧃤
+ 0x270e5: "\x01\x02\x01\x02\x04\x01\x03\x04\x02\x05\x03\x05\x02\x05\x01\x04\x01\x03\x05\x03\x04", // 𧃥
+ 0x270e6: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𧃦
+ 0x270e7: "\x01\x02\x01\x02\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x05\x05\x04\x02\x03\x04", // 𧃧
+ 0x270e8: "\x01\x02\x01\x02\x05\x02\x01\x01\x04\x05\x02\x04\x01\x03\x04\x01\x03\x02\x05\x02\x02", // 𧃨
+ 0x270e9: "\x01\x02\x01\x02\x03\x05\x03\x01\x05\x03\x01\x01\x03\x04\x05\x04\x05\x02\x01\x03\x04", // 𧃩
+ 0x270ea: "\x03\x05\x04\x03\x05\x04\x01\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01", // 𧃪
+ 0x270eb: "\x01\x02\x01\x02\x04\x01\x04\x03\x01\x01\x02\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01", // 𧃫
+ 0x270ec: "\x01\x02\x01\x02\x01\x02\x03\x04\x01\x03\x04\x04\x03\x02\x05\x01\x01\x04\x03\x03\x04", // 𧃬
+ 0x270ed: "\x01\x02\x02\x05\x01\x02\x05\x01\x02\x05\x04\x02\x01\x02\x05\x01\x02\x03\x04\x01", // 𧃭
+ 0x270ee: "\x01\x02\x01\x02\x04\x03\x03\x04\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 𧃮
+ 0x270ef: "\x01\x02\x01\x02\x05\x02\x04\x01\x04\x03\x01\x03\x03\x01\x01\x02\x01\x05\x02\x01", // 𧃯
+ 0x270f0: "\x01\x02\x01\x02\x03\x02\x05\x01\x01\x01\x02\x01\x02\x01\x05\x01\x05\x03\x04\x03\x05\x04", // 𧃰
+ 0x270f1: "\x01\x02\x02\x02\x05\x01\x02\x05\x01\x05\x01\x02\x01\x01\x02\x01\x03\x04\x03\x04", // 𧃱
+ 0x270f2: "\x01\x02\x02\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x04\x03\x01\x02\x03\x04", // 𧃲
+ 0x270f3: "\x01\x02\x02\x01\x02\x01\x03\x04\x01\x02\x01\x03\x05\x04\x04\x01\x03\x05\x03\x04", // 𧃳
+ 0x270f4: "\x01\x02\x02\x05\x05\x04\x02\x03\x04\x04\x04\x05\x03\x02\x01\x03\x02\x05\x01\x01", // 𧃴
+ 0x270f5: "\x01\x02\x02\x01\x02\x02\x05\x01\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 𧃵
+ 0x270f6: "\x01\x02\x02\x03\x05\x03\x01\x02\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 𧃶
+ 0x270f7: "\x01\x02\x02\x02\x01\x05\x03\x01\x05\x03\x02\x04\x01\x01\x01\x02\x01\x01\x01\x05", // 𧃷
+ 0x270f8: "\x01\x02\x01\x02\x03\x03\x02\x02\x05\x02\x01\x05\x05\x04\x02\x03\x04\x03\x01\x03\x04", // 𧃸
+ 0x270f9: "\x01\x02\x01\x02\x01\x01\x02\x01\x02\x01\x01\x02\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 𧃹
+ 0x270fa: "\x01\x02\x01\x02\x01\x02\x03\x04\x05\x04\x05\x02\x03\x01\x02\x03\x04\x01\x03\x01\x02", // 𧃺
+ 0x270fb: "\x01\x02\x01\x02\x01\x02\x03\x04\x03\x04\x01\x02\x05\x02\x05\x01\x01\x01\x03\x01\x02", // 𧃻
+ 0x270fc: "\x02\x01\x02\x01\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x01", // 𧃼
+ 0x270fd: "\x01\x02\x01\x02\x04\x01\x03\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01\x04\x05\x04\x04", // 𧃽
+ 0x270fe: "\x01\x02\x01\x02\x04\x04\x01\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01\x01\x02\x03\x04", // 𧃾
+ 0x270ff: "\x01\x02\x01\x02\x01\x02\x02\x01\x01\x01\x03\x02\x05\x03\x03\x04\x01\x04\x05\x04\x04", // 𧃿
+ 0x27100: "\x01\x02\x01\x02\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x04\x03\x01\x02", // 𧄀
+ 0x27101: "\x01\x02\x01\x02\x01\x04\x05\x02\x04\x01\x03\x04\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 𧄁
+ 0x27102: "\x01\x02\x01\x02\x01\x02\x01\x01\x01\x05\x04\x03\x04\x01\x02\x01\x01\x01\x05\x03\x04", // 𧄂
+ 0x27103: "\x01\x02\x01\x02\x03\x01\x01\x02\x03\x04\x04\x03\x01\x01\x03\x04\x02\x04\x01\x03\x04", // 𧄃
+ 0x27104: "\x01\x02\x01\x02\x03\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x04\x05\x04\x04", // 𧄄
+ 0x27105: "\x01\x02\x01\x02\x03\x04\x04\x03\x05\x03\x03\x05\x01\x01\x05\x03\x04\x04\x05\x04\x04", // 𧄅
+ 0x27106: "\x01\x02\x01\x02\x03\x01\x02\x03\x04\x01\x02\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 𧄆
+ 0x27107: "\x01\x02\x01\x02\x03\x03\x02\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x01\x02", // 𧄇
+ 0x27108: "\x01\x02\x02\x05\x04\x02\x05\x01\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 𧄈
+ 0x27109: "\x01\x02\x02\x05\x05\x04\x04\x04\x04\x03\x02\x05\x03\x05\x04\x01\x04\x05\x04\x04", // 𧄉
+ 0x2710a: "\x01\x02\x02\x02\x05\x01\x01\x01\x02\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𧄊
+ 0x2710b: "\x01\x02\x01\x02\x05\x04\x02\x05\x01\x02\x05\x04\x02\x01\x02\x05\x01\x02\x03\x04\x01", // 𧄋
+ 0x2710c: "\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04\x04\x04\x05\x01\x02\x01\x03\x04", // 𧄌
+ 0x2710d: "\x01\x02\x01\x02\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05\x05\x04\x01\x05\x04\x01", // 𧄍
+ 0x2710e: "\x01\x02\x01\x02\x03\x05\x04\x01\x04\x01\x01\x01\x02\x05\x01\x03\x05\x05\x04\x02\x03\x04", // 𧄎
+ 0x2710f: "\x01\x02\x01\x02\x01\x02\x05\x02\x02\x01\x03\x03\x02\x03\x01\x02\x05\x01\x01\x01\x03\x04", // 𧄏
+ 0x27110: "\x01\x02\x01\x02\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𧄐
+ 0x27111: "\x01\x02\x01\x02\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𧄑
+ 0x27112: "\x01\x02\x01\x02\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𧄒
+ 0x27113: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x01\x02\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𧄓
+ 0x27114: "\x01\x02\x01\x02\x03\x02\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 𧄔
+ 0x27115: "\x01\x02\x01\x02\x05\x05\x04\x04\x04\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05\x03\x04", // 𧄕
+ 0x27116: "\x01\x02\x01\x02\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x01\x04\x03\x03\x04", // 𧄖
+ 0x27117: "\x01\x02\x01\x02\x03\x01\x02\x03\x04\x02\x05\x02\x02\x01\x01\x02\x02\x05\x01\x01\x01\x01", // 𧄗
+ 0x27118: "\x01\x02\x01\x02\x04\x01\x04\x03\x01\x01\x02\x01\x03\x05\x03\x03\x03\x04\x03\x05\x05\x04", // 𧄘
+ 0x27119: "\x01\x02\x01\x02\x01\x03\x05\x03\x03\x03\x04\x05\x02\x01\x03\x01\x02\x01\x03\x05\x04\x01", // 𧄙
+ 0x2711a: "\x01\x02\x01\x02\x01\x01\x02\x03\x04\x03\x01\x03\x04\x01\x03\x02\x05\x01\x01\x02\x01\x01", // 𧄚
+ 0x2711b: "\x01\x02\x01\x02\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x04\x01\x01\x01\x02\x05\x01", // 𧄛
+ 0x2711c: "\x01\x02\x01\x02\x04\x05\x04\x04\x04\x05\x04\x04\x04\x05\x04\x04\x05\x05\x04\x02\x03\x04", // 𧄜
+ 0x2711d: "\x01\x02\x01\x02\x04\x03\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 𧄝
+ 0x2711e: "\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𧄞
+ 0x2711f: "\x01\x02\x01\x02\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x01\x03\x05\x03\x03\x03\x04", // 𧄟
+ 0x27120: "\x01\x02\x01\x02\x01\x02\x02\x01\x05\x01\x02\x03\x04\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 𧄠
+ 0x27121: "\x01\x02\x01\x02\x03\x01\x01\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02\x03\x04", // 𧄡
+ 0x27122: "\x01\x02\x01\x02\x04\x04\x01\x05\x01\x01\x04\x05\x01\x02\x02\x01\x01\x01\x05\x04\x03\x04", // 𧄢
+ 0x27123: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04\x01\x02\x01\x02\x02\x05\x01\x01\x01\x02", // 𧄣
+ 0x27124: "\x01\x02\x02\x02\x05\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x02\x05\x01\x02\x05\x01", // 𧄤
+ 0x27125: "\x01\x02\x02\x01\x01\x01\x02\x03\x04\x04\x01\x02\x05\x01\x02\x03\x04\x01\x03\x05\x04", // 𧄥
+ 0x27126: "\x01\x02\x01\x02\x03\x01\x02\x03\x04\x02\x05\x01\x01\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 𧄦
+ 0x27127: "\x01\x02\x01\x02\x05\x02\x01\x02\x05\x01\x01\x05\x02\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 𧄧
+ 0x27128: "\x01\x02\x01\x02\x01\x02\x03\x04\x01\x04\x05\x02\x04\x01\x03\x04\x01\x03\x02\x05\x02\x02", // 𧄨
+ 0x27129: "\x01\x02\x01\x02\x04\x04\x01\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04\x01\x03\x01\x02", // 𧄩
+ 0x2712a: "\x01\x02\x01\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02\x01\x05\x02\x05\x01\x01", // 𧄪
+ 0x2712b: "\x01\x02\x01\x02\x03\x01\x05\x05\x04\x01\x04\x03\x05\x05\x04\x02\x03\x04\x01\x03\x01\x02", // 𧄫
+ 0x2712c: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x03\x05\x04", // 𧄬
+ 0x2712d: "\x01\x02\x01\x02\x03\x04\x01\x01\x02\x04\x03\x01\x05\x04\x01\x03\x04\x02\x05\x02\x02\x01", // 𧄭
+ 0x2712e: "\x01\x02\x01\x02\x03\x04\x01\x02\x05\x01\x03\x04\x01\x02\x05\x01\x03\x04\x01\x02\x05\x01", // 𧄮
+ 0x2712f: "\x01\x02\x02\x02\x05\x02\x02\x01\x04\x05\x05\x02\x01\x03\x01\x02\x05\x01\x02\x05\x01", // 𧄯
+ 0x27130: "\x01\x02\x02\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𧄰
+ 0x27131: "\x01\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01\x05\x03\x03\x05\x03\x03", // 𧄱
+ 0x27132: "\x01\x02\x02\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 𧄲
+ 0x27133: "\x01\x02\x02\x02\x05\x01\x01\x01\x02\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 𧄳
+ 0x27134: "\x01\x02\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𧄴
+ 0x27135: "\x01\x02\x02\x03\x05\x03\x05\x05\x05\x02\x05\x03\x04\x01\x05\x04\x04\x05\x04\x04\x05", // 𧄵
+ 0x27136: "\x01\x02\x01\x02\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04", // 𧄶
+ 0x27137: "\x01\x02\x01\x02\x03\x02\x01\x05\x01\x01\x03\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𧄷
+ 0x27138: "\x01\x02\x01\x02\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x04\x05\x02\x05\x01\x01\x01", // 𧄸
+ 0x27139: "\x01\x02\x01\x02\x04\x01\x01\x01\x02\x05\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05\x03\x04", // 𧄹
+ 0x2713a: "\x01\x02\x01\x02\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𧄺
+ 0x2713b: "\x01\x02\x01\x02\x04\x04\x01\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 𧄻
+ 0x2713c: "\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 𧄼
+ 0x2713d: "\x01\x02\x01\x02\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 𧄽
+ 0x2713e: "\x01\x02\x01\x02\x02\x05\x02\x02\x01\x05\x04\x03\x05\x04\x01\x01\x05\x01\x05\x04\x04\x04\x04", // 𧄾
+ 0x2713f: "\x01\x02\x01\x02\x04\x01\x05\x02\x05\x01\x03\x05\x04\x01\x04\x03\x01\x01\x01\x02\x03\x05\x04", // 𧄿
+ 0x27140: "\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02\x03\x04\x01\x01\x02\x04\x03\x01", // 𧅀
+ 0x27141: "\x01\x02\x01\x02\x05\x01\x05\x01\x02\x01\x01\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x01\x01", // 𧅁
+ 0x27142: "\x01\x02\x01\x02\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 𧅂
+ 0x27143: "\x01\x02\x01\x02\x04\x03\x03\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x04\x04\x04\x04", // 𧅃
+ 0x27144: "\x01\x02\x01\x02\x04\x03\x01\x03\x02\x05\x01\x01\x01\x02\x01\x02\x01\x05\x01\x05\x03\x04\x03\x05\x04", // 𧅄
+ 0x27145: "\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x04\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04", // 𧅅
+ 0x27146: "\x01\x02\x01\x02\x02\x01\x02\x01\x02\x05\x02\x05\x05\x04\x02\x03\x04\x02\x05\x01\x02\x01\x04", // 𧅆
+ 0x27147: "\x01\x02\x01\x02\x03\x04\x03\x04\x02\x05\x02\x05\x05\x04\x02\x03\x04\x02\x05\x01\x02\x01\x04", // 𧅇
+ 0x27148: "\x01\x02\x01\x02\x03\x01\x02\x03\x04\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𧅈
+ 0x27149: "\x01\x02\x01\x02\x04\x04\x05\x03\x05\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x05\x02\x01\x05", // 𧅉
+ 0x2714a: "\x01\x02\x01\x02\x04\x03\x03\x04\x04\x03\x03\x04\x03\x05\x04\x01\x05\x02\x04\x05\x04", // 𧅊
+ 0x2714b: "\x01\x02\x01\x02\x04\x01\x05\x02\x05\x01\x03\x05\x04\x01\x05\x01\x01\x05\x03\x04\x03\x05\x04", // 𧅋
+ 0x2714c: "\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x04\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𧅌
+ 0x2714d: "\x01\x02\x01\x02\x02\x05\x01\x02\x05\x01\x05\x01\x05\x01\x02\x01\x01\x02\x01\x03\x04\x03\x04", // 𧅍
+ 0x2714e: "\x01\x02\x01\x02\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x01\x03\x01\x02", // 𧅎
+ 0x2714f: "\x01\x02\x01\x02\x03\x01\x02\x03\x04\x03\x05\x03\x03\x04\x02\x04\x01\x03\x04\x01\x03\x01\x02", // 𧅏
+ 0x27150: "\x01\x02\x01\x02\x04\x04\x01\x04\x01\x02\x05\x01\x05\x02\x01\x03\x01\x03\x04\x04\x04\x04\x04", // 𧅐
+ 0x27151: "\x01\x02\x01\x02\x01\x04\x05\x02\x04\x01\x03\x04\x05\x04\x05\x02\x03\x03\x01\x03\x04\x05\x03", // 𧅑
+ 0x27152: "\x01\x02\x01\x02\x02\x05\x01\x02\x05\x03\x04\x02\x05\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𧅒
+ 0x27153: "\x01\x02\x01\x02\x04\x04\x05\x03\x05\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x03\x02\x05\x01", // 𧅓
+ 0x27154: "\x01\x02\x01\x02\x03\x04\x01\x05\x01\x01\x05\x04\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 𧅔
+ 0x27155: "\x01\x02\x02\x03\x05\x01\x01\x05\x05\x05\x02\x05\x03\x04\x01\x05\x04\x04\x05\x04\x04\x05", // 𧅕
+ 0x27156: "\x01\x02\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𧅖
+ 0x27157: "\x01\x02\x01\x02\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𧅗
+ 0x27158: "\x01\x02\x01\x02\x04\x03\x01\x01\x01\x03\x01\x04\x05\x02\x04\x01\x03\x04\x01\x03\x02\x05\x02\x02", // 𧅘
+ 0x27159: "\x01\x02\x01\x02\x04\x01\x04\x03\x01\x03\x05\x03\x03\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𧅙
+ 0x2715a: "\x01\x02\x01\x02\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𧅚
+ 0x2715b: "\x01\x02\x01\x02\x04\x03\x01\x02\x03\x04\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𧅛
+ 0x2715c: "\x01\x02\x01\x02\x01\x02\x03\x04\x04\x01\x04\x03\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𧅜
+ 0x2715d: "\x01\x02\x01\x02\x01\x02\x05\x01\x01\x02\x03\x04\x01\x02\x05\x01\x01\x02\x03\x04\x02\x05\x01\x01", // 𧅝
+ 0x2715e: "\x01\x02\x01\x02\x01\x02\x02\x01\x01\x01\x05\x04\x01\x02\x01\x02\x01\x02\x02\x01\x01\x01\x05\x04", // 𧅞
+ 0x2715f: "\x01\x02\x01\x02\x01\x01\x05\x04\x01\x02\x03\x04\x01\x02\x01\x02\x01\x01\x05\x04\x01\x02\x03\x04", // 𧅟
+ 0x27160: "\x01\x02\x01\x02\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01", // 𧅠
+ 0x27161: "\x01\x02\x01\x02\x02\x05\x02\x04\x03\x01\x04\x03\x03\x04\x04\x03\x03\x04\x01\x02\x01\x02\x05\x01", // 𧅡
+ 0x27162: "\x01\x02\x01\x02\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x01\x03\x01\x02\x01\x02\x05\x03\x04\x03\x04", // 𧅢
+ 0x27163: "\x01\x02\x02\x05\x01\x01\x02\x03\x02\x01\x01\x05\x05\x02\x01\x02\x04\x05\x04", // 𧅣
+ 0x27164: "\x01\x02\x01\x02\x04\x04\x05\x01\x01\x02\x01\x03\x01\x01\x02\x05\x02\x02\x05\x01\x01\x01\x03\x04", // 𧅤
+ 0x27165: "\x01\x02\x01\x02\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04\x03\x01\x02\x03\x04\x02\x05\x01\x01", // 𧅥
+ 0x27166: "\x01\x02\x03\x04\x01\x02\x01\x02\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x01\x03\x04", // 𧅦
+ 0x27167: "\x01\x02\x01\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𧅧
+ 0x27168: "\x01\x02\x01\x02\x03\x04\x03\x01\x02\x03\x04\x03\x02\x05\x03\x04\x03\x01\x02\x03\x04\x01\x03\x04", // 𧅨
+ 0x27169: "\x01\x02\x01\x02\x01\x02\x01\x03\x05\x01\x02\x01\x04\x03\x03\x04\x04\x03\x03\x04\x03\x01\x01\x02", // 𧅩
+ 0x2716a: "\x01\x02\x01\x02\x01\x05\x02\x05\x02\x05\x01\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧅪
+ 0x2716b: "\x01\x02\x02\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x02\x05\x01\x01\x01\x03\x05", // 𧅫
+ 0x2716c: "\x01\x02\x02\x02\x05\x01\x01\x01\x02\x03\x04\x04\x01\x02\x02\x03\x04\x02\x05\x01\x02\x01\x04", // 𧅬
+ 0x2716d: "\x01\x02\x02\x02\x05\x01\x01\x01\x02\x01\x02\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 𧅭
+ 0x2716e: "\x01\x02\x01\x02\x05\x05\x01\x03\x05\x03\x03\x03\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧅮
+ 0x2716f: "\x01\x02\x01\x02\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𧅯
+ 0x27170: "\x01\x02\x01\x02\x04\x01\x01\x01\x02\x05\x01\x02\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𧅰
+ 0x27171: "\x01\x02\x01\x02\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𧅱
+ 0x27172: "\x01\x02\x01\x02\x02\x05\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x01\x02\x03\x04\x01\x02\x03\x04\x01", // 𧅲
+ 0x27173: "\x01\x02\x01\x02\x01\x02\x05\x03\x04\x01\x02\x05\x03\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 𧅳
+ 0x27174: "\x01\x02\x01\x02\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x01\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𧅴
+ 0x27175: "\x01\x02\x02\x02\x01\x02\x01\x02\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04\x03\x02\x05\x01\x01\x03\x01\x02", // 𧅵
+ 0x27176: "\x01\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x01\x04", // 𧅶
+ 0x27177: "\x01\x02\x01\x02\x03\x02\x05\x01\x01\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x05\x02\x01", // 𧅷
+ 0x27178: "\x01\x02\x01\x02\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x02\x05\x01\x01\x02\x05\x01\x05\x02\x02", // 𧅸
+ 0x27179: "\x01\x02\x02\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𧅹
+ 0x2717a: "\x01\x02\x02\x01\x02\x05\x01\x02\x04\x05\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 𧅺
+ 0x2717b: "\x01\x02\x01\x02\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𧅻
+ 0x2717c: "\x01\x02\x01\x02\x03\x01\x02\x03\x04\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 𧅼
+ 0x2717d: "\x01\x02\x01\x02\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x01\x03\x03\x05\x01\x01\x02\x05\x02\x02\x01", // 𧅽
+ 0x2717e: "\x01\x02\x02\x03\x02\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01\x04\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 𧅾
+ 0x2717f: "\x01\x02\x02\x02\x05\x01\x01\x04\x05\x03\x04\x02\x05\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𧅿
+ 0x27180: "\x01\x02\x02\x03\x04\x04\x03\x01\x02\x03\x04\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𧆀
+ 0x27181: "\x01\x02\x01\x02\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x02\x02\x01\x01\x01\x05\x04\x01\x03\x01\x02", // 𧆁
+ 0x27182: "\x01\x02\x02\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 𧆂
+ 0x27183: "\x01\x02\x01\x02\x04\x01\x05\x02\x05\x01\x04\x05\x01\x02\x05\x01\x01\x01\x02\x03\x05\x04\x01\x03\x05\x04", // 𧆃
+ 0x27184: "\x01\x02\x05\x01\x02\x03\x04\x01\x02\x02\x03\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x03\x04", // 𧆄
+ 0x27185: "\x01\x02\x01\x02\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x05\x01\x05", // 𧆅
+ 0x27186: "\x01\x02\x01\x02\x01\x01\x02\x03\x04\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02", // 𧆆
+ 0x27187: "\x01\x02\x01\x02\x04\x03\x01\x03\x04\x02\x05\x02\x02\x01\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 𧆇
+ 0x27188: "\x01\x02\x01\x02\x04\x01\x04\x03\x01\x01\x02\x01\x03\x05\x03\x03\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𧆈
+ 0x27189: "\x02\x01\x02\x01\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x05\x04\x05\x05\x04\x02\x03\x04", // 𧆉
+ 0x2718a: "\x01\x02\x01\x02\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𧆊
+ 0x2718b: "\x01\x02\x01\x02\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x04\x03\x03\x04", // 𧆋
+ 0x2718c: "\x01\x02\x02\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𧆌
+ 0x2718d: "\x01\x02\x01\x02\x04\x01\x05\x02\x05\x01\x03\x05\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04\x03\x05\x04", // 𧆍
+ 0x2718e: "\x01\x02\x01\x02\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x04\x05\x04\x04", // 𧆎
+ 0x2718f: "\x01\x02\x01\x02\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01\x01", // 𧆏
+ 0x27190: "\x01\x02\x01\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x03\x05\x04\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𧆐
+ 0x27191: "\x01\x02\x01\x02\x01\x04\x05\x02\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𧆑
+ 0x27192: "\x01\x02\x01\x02\x01\x01\x03\x02\x01\x01\x03\x02\x02\x05\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x04\x05\x04\x04", // 𧆒
+ 0x27193: "\x01\x02\x01\x02\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05", // 𧆓
+ 0x27194: "\x01\x02\x01\x02\x01\x02\x02\x05\x01\x02\x05\x01\x04\x05\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 𧆔
+ 0x27195: "\x01\x02\x02\x02\x05\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x01\x02\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x01", // 𧆕
+ 0x27196: "\x01\x02\x02\x01\x02\x02\x01\x02\x05\x01\x02\x01\x01\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𧆖
+ 0x27197: "\x01\x02\x02\x02\x01\x02\x05\x04\x03\x01\x02\x03\x04\x01\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x02\x05\x02\x02\x01", // 𧆗
+ 0x27198: "\x01\x02\x01\x02\x02\x05\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04\x01", // 𧆘
+ 0x27199: "\x01\x02\x01\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01\x02\x05\x01\x05\x05\x04\x02\x03\x04", // 𧆙
+ 0x2719a: "\x01\x02\x01\x02\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x01\x03\x01\x02", // 𧆚
+ 0x2719b: "\x02\x01\x05\x03\x01\x05\x05\x04", // 𧆛
+ 0x2719c: "\x02\x01\x05\x03\x01\x05\x01\x01\x05", // 𧆜
+ 0x2719d: "\x02\x01\x05\x03\x01\x05\x05\x03\x04", // 𧆝
+ 0x2719e: "\x02\x01\x05\x03\x01\x05\x02\x05\x02", // 𧆞
+ 0x2719f: "\x02\x01\x05\x03\x01\x05\x03\x05\x03\x05", // 𧆟
+ 0x271a0: "\x02\x01\x05\x03\x01\x05\x03\x01\x01\x02", // 𧆠
+ 0x271a1: "\x03\x05\x02\x01\x05\x03\x01\x05\x03\x05", // 𧆡
+ 0x271a2: "\x02\x01\x05\x03\x01\x05\x03\x05\x05\x02", // 𧆢
+ 0x271a3: "\x02\x01\x05\x03\x01\x05\x01\x02\x01\x05\x02", // 𧆣
+ 0x271a4: "\x02\x01\x05\x03\x01\x05\x02\x05\x02\x05\x04", // 𧆤
+ 0x271a5: "\x02\x01\x05\x03\x01\x05\x02\x05\x01\x01\x02", // 𧆥
+ 0x271a6: "\x03\x01\x05\x02\x01\x05\x03\x01\x05\x03\x05", // 𧆦
+ 0x271a7: "\x02\x01\x05\x03\x01\x05\x03\x05\x01\x03\x05", // 𧆧
+ 0x271a8: "\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01", // 𧆨
+ 0x271a9: "\x02\x01\x05\x03\x01\x05\x03\x05\x01\x03\x04", // 𧆩
+ 0x271aa: "\x02\x01\x05\x03\x01\x05\x01\x03\x05\x01\x05", // 𧆪
+ 0x271ab: "\x02\x01\x05\x03\x01\x05\x03\x05\x03\x01\x05", // 𧆫
+ 0x271ac: "\x02\x01\x05\x03\x01\x05\x03\x05\x03\x05", // 𧆬
+ 0x271ad: "\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01", // 𧆭
+ 0x271ae: "\x02\x01\x05\x03\x01\x05\x02\x05\x02\x05\x02", // 𧆮
+ 0x271af: "\x02\x01\x05\x03\x01\x05\x03\x05\x01\x02\x03", // 𧆯
+ 0x271b0: "\x02\x01\x05\x03\x01\x05\x03\x05\x05\x02\x01", // 𧆰
+ 0x271b1: "\x02\x01\x05\x03\x01\x05\x01\x03\x04\x02\x05\x01", // 𧆱
+ 0x271b2: "\x02\x01\x05\x03\x01\x05\x02\x05\x01\x04\x03\x01", // 𧆲
+ 0x271b3: "\x02\x01\x05\x03\x01\x05\x02\x01\x01\x03\x05\x01", // 𧆳
+ 0x271b4: "\x02\x01\x05\x03\x01\x05\x01\x03\x03\x05\x01\x01", // 𧆴
+ 0x271b5: "\x02\x01\x05\x03\x01\x05\x03\x05\x04\x03\x03\x03", // 𧆵
+ 0x271b6: "\x02\x01\x05\x03\x01\x05\x03\x05\x04\x01\x01\x05", // 𧆶
+ 0x271b7: "\x02\x01\x05\x03\x01\x05\x03\x05\x03\x04\x05\x04", // 𧆷
+ 0x271b8: "\x02\x01\x05\x03\x01\x05\x03\x05\x04\x04\x04\x04", // 𧆸
+ 0x271b9: "\x02\x01\x05\x03\x01\x05\x03\x05\x04\x05\x04\x04", // 𧆹
+ 0x271ba: "\x03\x04\x01\x05\x04\x02\x01\x05\x03\x01\x05\x03\x05", // 𧆺
+ 0x271bb: "\x02\x01\x05\x03\x01\x05\x03\x05\x01\x02\x02\x05\x01", // 𧆻
+ 0x271bc: "\x02\x01\x05\x03\x01\x05\x03\x05\x03\x05\x04\x04\x04", // 𧆼
+ 0x271bd: "\x02\x01\x05\x03\x01\x05\x03\x05\x03\x02\x05\x01\x01", // 𧆽
+ 0x271be: "\x02\x01\x05\x03\x01\x05\x01\x02\x01\x02\x01\x03\x04", // 𧆾
+ 0x271bf: "\x02\x01\x05\x03\x01\x05\x05\x04\x02\x05\x01\x01\x02", // 𧆿
+ 0x271c0: "\x02\x01\x05\x03\x01\x05\x03\x02\x01\x02\x01\x03\x04", // 𧇀
+ 0x271c1: "\x02\x01\x05\x03\x01\x05\x03\x01\x01\x01\x02\x01\x01\x01", // 𧇁
+ 0x271c2: "\x02\x01\x05\x03\x01\x05\x01\x05\x01\x05\x03\x05\x03\x03", // 𧇂
+ 0x271c3: "\x02\x01\x05\x03\x01\x05\x01\x02\x03\x04\x01\x02\x03\x04", // 𧇃
+ 0x271c4: "\x02\x01\x05\x03\x01\x05\x05\x05\x05\x02\x05\x01\x02\x01", // 𧇄
+ 0x271c5: "\x02\x01\x05\x03\x01\x05\x03\x05\x04\x05\x02\x05\x01\x01", // 𧇅
+ 0x271c6: "\x02\x01\x05\x03\x01\x05\x01\x02\x03\x04\x02\x01\x05\x04", // 𧇆
+ 0x271c7: "\x02\x01\x05\x03\x01\x05\x02\x05\x02\x02\x05\x01\x01\x01", // 𧇇
+ 0x271c8: "\x02\x01\x05\x03\x01\x05\x03\x05\x04\x02\x05\x01\x01\x01", // 𧇈
+ 0x271c9: "\x02\x01\x05\x03\x01\x05\x03\x05\x04\x01\x02\x02\x05\x01", // 𧇉
+ 0x271ca: "\x02\x01\x05\x03\x01\x05\x02\x02\x04\x03\x01\x01\x01\x05", // 𧇊
+ 0x271cb: "\x02\x01\x05\x03\x01\x05\x03\x04\x03\x04\x02\x05\x01\x01", // 𧇋
+ 0x271cc: "\x02\x01\x05\x03\x01\x05\x03\x05\x02\x05\x01\x02\x05\x01", // 𧇌
+ 0x271cd: "\x03\x01\x01\x02\x05\x02\x02\x01\x05\x03\x01\x05\x03\x05", // 𧇍
+ 0x271ce: "\x02\x01\x05\x03\x01\x05\x03\x05\x03\x04\x01\x02\x05\x01", // 𧇎
+ 0x271cf: "\x02\x01\x05\x03\x01\x05\x05\x05\x05\x01\x01\x02\x01\x05\x02", // 𧇏
+ 0x271d0: "\x03\x02\x02\x03\x01\x03\x04\x02\x01\x05\x03\x01\x05\x03\x05", // 𧇐
+ 0x271d1: "\x01\x01\x03\x02\x05\x03\x04\x02\x01\x05\x03\x01\x05\x03\x05", // 𧇑
+ 0x271d2: "\x02\x01\x05\x03\x01\x05\x03\x05\x01\x05\x03\x04\x02\x01\x02\x01", // 𧇒
+ 0x271d3: "\x02\x01\x05\x03\x01\x05\x03\x05\x03\x04\x02\x05\x01\x03\x05", // 𧇓
+ 0x271d4: "\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x04\x03\x01\x03\x05", // 𧇔
+ 0x271d5: "\x02\x01\x05\x03\x01\x05\x05\x05\x05\x01\x02\x05\x01\x02\x01", // 𧇕
+ 0x271d6: "\x02\x01\x05\x03\x01\x05\x03\x04\x03\x04\x02\x05\x01\x01\x01", // 𧇖
+ 0x271d7: "\x02\x01\x05\x03\x01\x05\x03\x04\x03\x04\x02\x05\x01\x01\x01", // 𧇗
+ 0x271d8: "\x01\x02\x03\x04\x02\x01\x05\x03\x01\x05\x02\x05\x01\x01\x01", // 𧇘
+ 0x271d9: "\x02\x01\x05\x03\x01\x05\x03\x05\x02\x05\x01\x02\x01\x05\x03", // 𧇙
+ 0x271da: "\x02\x01\x05\x03\x01\x05\x03\x05\x03\x02\x03\x02\x05\x01\x01", // 𧇚
+ 0x271db: "\x02\x01\x05\x03\x01\x05\x03\x05\x03\x04\x04\x03\x01\x02\x04", // 𧇛
+ 0x271dc: "\x01\x02\x05\x01\x02\x05\x05\x04\x02\x01\x05\x03\x01\x05\x03\x05", // 𧇜
+ 0x271dd: "\x02\x01\x01\x02\x03\x04\x05\x04\x02\x01\x05\x03\x01\x05\x03\x05", // 𧇝
+ 0x271de: "\x02\x01\x05\x03\x01\x05\x03\x05\x04\x03\x01\x01\x02\x01\x03\x05", // 𧇞
+ 0x271df: "\x02\x01\x05\x03\x01\x05\x03\x05\x03\x05\x01\x02\x01\x02\x05\x01", // 𧇟
+ 0x271e0: "\x02\x01\x05\x03\x01\x05\x02\x05\x02\x01\x02\x01\x04\x01\x03\x05", // 𧇠
+ 0x271e1: "\x02\x01\x05\x03\x01\x05\x03\x05\x04\x03\x05\x01\x02\x02\x05\x01", // 𧇡
+ 0x271e2: "\x03\x05\x02\x05\x01\x03\x05\x04\x02\x01\x05\x03\x01\x05\x03\x05", // 𧇢
+ 0x271e3: "\x02\x01\x05\x03\x01\x05\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01", // 𧇣
+ 0x271e4: "\x02\x01\x05\x03\x01\x05\x03\x05\x04\x03\x05\x03\x02\x05\x01\x01", // 𧇤
+ 0x271e5: "\x02\x01\x05\x03\x01\x05\x03\x05\x01\x02\x03\x04\x01\x02\x04", // 𧇥
+ 0x271e6: "\x04\x04\x01\x01\x02\x01\x05\x04\x02\x01\x05\x03\x01\x05\x03\x05", // 𧇦
+ 0x271e7: "\x03\x04\x04\x03\x05\x02\x01\x02\x01\x05\x03\x01\x05\x02\x05\x02", // 𧇧
+ 0x271e8: "\x02\x01\x05\x03\x01\x05\x03\x05\x01\x02\x03\x04\x01\x02\x03\x04", // 𧇨
+ 0x271e9: "\x02\x01\x05\x03\x01\x05\x01\x03\x04\x03\x04\x02\x05\x01\x01\x01", // 𧇩
+ 0x271ea: "\x02\x01\x05\x03\x01\x05\x04\x01\x03\x04\x03\x04\x02\x05\x01\x01", // 𧇪
+ 0x271eb: "\x02\x01\x05\x03\x01\x05\x03\x05\x01\x02\x02\x01\x01\x01\x03\x04", // 𧇫
+ 0x271ec: "\x01\x02\x05\x01\x02\x05\x03\x04\x02\x01\x05\x03\x01\x05\x03\x05", // 𧇬
+ 0x271ed: "\x02\x01\x05\x03\x01\x05\x03\x05\x01\x01\x02\x01\x02\x01\x05\x04", // 𧇭
+ 0x271ee: "\x02\x01\x05\x03\x01\x05\x03\x05\x03\x01\x02\x03\x04\x02\x05\x01", // 𧇮
+ 0x271ef: "\x02\x01\x05\x03\x01\x05\x03\x05\x03\x01\x02\x03\x04\x05\x02\x01", // 𧇯
+ 0x271f0: "\x02\x01\x05\x03\x01\x05\x03\x05\x03\x05\x03\x03\x04\x05\x04\x04", // 𧇰
+ 0x271f1: "\x02\x01\x05\x03\x01\x05\x03\x05\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 𧇱
+ 0x271f2: "\x02\x04\x03\x01\x03\x05\x02\x01\x05\x03\x01\x05\x03\x02\x01\x02\x01", // 𧇲
+ 0x271f3: "\x04\x04\x03\x04\x05\x01\x01\x03\x05\x02\x01\x05\x03\x01\x05\x03\x05", // 𧇳
+ 0x271f4: "\x02\x01\x05\x03\x01\x05\x02\x05\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 𧇴
+ 0x271f5: "\x03\x04\x01\x01\x02\x05\x01\x02\x01\x05\x03\x01\x05\x03\x01\x01\x02", // 𧇵
+ 0x271f6: "\x02\x01\x05\x03\x01\x05\x03\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01", // 𧇶
+ 0x271f7: "\x02\x05\x01\x01\x03\x05\x03\x04\x05\x02\x01\x05\x03\x01\x05\x03\x05", // 𧇷
+ 0x271f8: "\x02\x01\x05\x03\x01\x05\x03\x05\x03\x01\x02\x03\x04\x04\x03\x03\x04", // 𧇸
+ 0x271f9: "\x02\x01\x05\x03\x01\x05\x03\x05\x03\x02\x05\x01\x03\x01\x01\x03\x04", // 𧇹
+ 0x271fa: "\x02\x04\x03\x01\x03\x05\x02\x01\x05\x03\x01\x05\x02\x02\x04\x03\x01", // 𧇺
+ 0x271fb: "\x02\x01\x05\x03\x01\x05\x03\x05\x04\x05\x02\x05\x01\x01\x04\x01\x03\x04", // 𧇻
+ 0x271fc: "\x02\x05\x01\x01\x05\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x04\x03\x01", // 𧇼
+ 0x271fd: "\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x01\x02\x01\x02\x01\x03\x04", // 𧇽
+ 0x271fe: "\x02\x01\x05\x03\x01\x05\x03\x02\x04\x01\x01\x01\x02\x01\x03\x05\x01\x05", // 𧇾
+ 0x271ff: "\x02\x01\x05\x03\x01\x05\x01\x03\x05\x03\x03\x03\x04\x02\x05\x01\x01\x01", // 𧇿
+ 0x27200: "\x02\x01\x05\x03\x01\x05\x02\x05\x02\x02\x01\x01\x02\x03\x04\x03\x04\x01", // 𧈀
+ 0x27201: "\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04\x02\x01\x05\x03\x01\x05\x03\x04", // 𧈁
+ 0x27202: "\x02\x01\x05\x03\x01\x05\x02\x05\x01\x01\x01\x05\x01\x03\x02\x01\x02\x05", // 𧈂
+ 0x27203: "\x02\x01\x05\x03\x01\x05\x03\x04\x03\x04\x02\x05\x01\x01\x01\x01\x01\x05", // 𧈃
+ 0x27204: "\x02\x01\x05\x03\x01\x05\x03\x05\x01\x03\x02\x05\x01\x01\x01\x03\x05\x04", // 𧈄
+ 0x27205: "\x02\x03\x04\x03\x02\x05\x01\x01\x02\x03\x04\x02\x01\x05\x03\x01\x05\x03\x05", // 𧈅
+ 0x27206: "\x02\x01\x05\x03\x01\x05\x03\x05\x05\x05\x04\x04\x04\x04\x03\x05\x04\x04\x04", // 𧈆
+ 0x27207: "\x02\x01\x05\x03\x01\x05\x03\x05\x01\x02\x03\x04\x01\x02\x03\x04\x03\x03\x03", // 𧈇
+ 0x27208: "\x02\x01\x05\x03\x01\x05\x03\x05\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 𧈈
+ 0x27209: "\x02\x01\x05\x03\x01\x05\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x01\x01", // 𧈉
+ 0x2720a: "\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04\x02\x01\x05\x03\x01\x05\x03\x05", // 𧈊
+ 0x2720b: "\x02\x01\x05\x03\x01\x05\x03\x05\x01\x02\x02\x03\x05\x02\x05\x01\x03\x05\x04", // 𧈋
+ 0x2720c: "\x01\x02\x05\x01\x02\x01\x05\x04\x03\x05\x05\x04\x02\x01\x05\x03\x01\x05\x03\x05", // 𧈌
+ 0x2720d: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x05\x03\x01\x05\x03\x05", // 𧈍
+ 0x2720e: "\x02\x01\x05\x03\x01\x05\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x03\x03", // 𧈎
+ 0x2720f: "\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04\x02\x01\x05\x03\x01\x05\x03\x05", // 𧈏
+ 0x27210: "\x02\x05\x01\x03\x04\x04\x05\x01\x01\x05\x04\x02\x01\x05\x03\x01\x05\x03\x05", // 𧈐
+ 0x27211: "\x02\x01\x05\x03\x01\x05\x03\x05\x01\x02\x05\x01\x01\x01\x02\x05\x02\x03\x05\x05\x04", // 𧈑
+ 0x27212: "\x02\x01\x05\x03\x01\x05\x02\x05\x02\x02\x03\x04\x03\x05\x02\x05\x01\x03\x05\x04", // 𧈒
+ 0x27213: "\x02\x01\x05\x03\x01\x05\x02\x04\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x01\x03\x04", // 𧈓
+ 0x27214: "\x02\x01\x05\x03\x01\x05\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01", // 𧈔
+ 0x27215: "\x02\x05\x01\x02\x01\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 𧈕
+ 0x27216: "\x01\x02\x05\x01\x01\x01\x02\x05\x02\x03\x05\x05\x04\x02\x01\x05\x03\x01\x05\x03\x05", // 𧈖
+ 0x27217: "\x01\x02\x05\x01\x01\x01\x02\x05\x02\x03\x05\x05\x04\x02\x01\x05\x03\x01\x05\x03\x05", // 𧈗
+ 0x27218: "\x02\x01\x05\x03\x01\x05\x03\x05\x02\x05\x02\x04\x03\x01\x04\x04\x04\x04\x02\x05\x01\x01", // 𧈘
+ 0x27219: "\x02\x01\x05\x03\x01\x05\x03\x05\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 𧈙
+ 0x2721a: "\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x04\x03\x01\x04\x04\x05\x01\x02\x02\x05\x02\x02\x01", // 𧈚
+ 0x2721b: "\x03\x04\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04\x03\x03\x02\x01\x05\x03\x01\x05\x03\x05", // 𧈛
+ 0x2721c: "\x02\x01\x05\x03\x01\x05\x03\x05\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𧈜
+ 0x2721d: "\x02\x05\x01\x02\x01\x04\x05", // 𧈝
+ 0x2721e: "\x02\x05\x01\x02\x01\x04\x05", // 𧈞
+ 0x2721f: "\x01\x02\x05\x01\x02\x01\x04\x05", // 𧈟
+ 0x27220: "\x01\x03\x02\x05\x01\x02\x01\x04", // 𧈠
+ 0x27221: "\x05\x04\x02\x05\x01\x02\x01\x04", // 𧈡
+ 0x27222: "\x02\x05\x01\x02\x01\x04\x03\x04", // 𧈢
+ 0x27223: "\x02\x05\x01\x02\x01\x04\x05\x03", // 𧈣
+ 0x27224: "\x03\x05\x02\x05\x01\x02\x01\x04", // 𧈤
+ 0x27225: "\x02\x05\x01\x02\x01\x04\x05\x04", // 𧈥
+ 0x27226: "\x05\x03\x02\x05\x01\x02\x01\x04", // 𧈦
+ 0x27227: "\x05\x04\x02\x05\x01\x02\x01\x04", // 𧈧
+ 0x27228: "\x02\x03\x04\x02\x05\x01\x02\x01\x04", // 𧈨
+ 0x27229: "\x01\x05\x04\x02\x05\x01\x02\x01\x04", // 𧈩
+ 0x2722a: "\x05\x02\x03\x02\x05\x01\x02\x01\x04", // 𧈪
+ 0x2722b: "\x01\x02\x01\x02\x05\x01\x02\x01\x04", // 𧈫
+ 0x2722c: "\x01\x02\x01\x02\x05\x01\x02\x01\x04", // 𧈬
+ 0x2722d: "\x02\x05\x01\x02\x01\x04\x01\x03\x05", // 𧈭
+ 0x2722e: "\x02\x05\x01\x02\x01\x04\x03\x05\x04", // 𧈮
+ 0x2722f: "\x02\x05\x01\x02\x01\x04\x01\x01\x05", // 𧈯
+ 0x27230: "\x02\x05\x01\x02\x01\x04\x05\x04", // 𧈰
+ 0x27231: "\x01\x02\x05\x01\x02\x01\x04\x05\x04", // 𧈱
+ 0x27232: "\x05\x01\x02\x02\x05\x01\x02\x01\x04", // 𧈲
+ 0x27233: "\x02\x05\x01\x02\x01\x04\x05\x03\x04", // 𧈳
+ 0x27234: "\x02\x05\x01\x02\x01\x04\x04\x01\x03", // 𧈴
+ 0x27235: "\x02\x05\x01\x02\x01\x04\x01\x01\x01", // 𧈵
+ 0x27236: "\x02\x05\x01\x02\x01\x04\x03\x02\x02", // 𧈶
+ 0x27237: "\x02\x05\x01\x02\x01\x04\x03\x05\x04", // 𧈷
+ 0x27238: "\x03\x05\x04\x02\x05\x01\x02\x01\x04", // 𧈸
+ 0x27239: "\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 𧈹
+ 0x2723a: "\x02\x05\x01\x02\x01\x04\x01\x05\x04", // 𧈺
+ 0x2723b: "\x02\x05\x01\x02\x01\x04\x03\x05\x05\x04", // 𧈻
+ 0x2723c: "\x02\x05\x01\x02\x01\x04\x03\x02\x01\x05", // 𧈼
+ 0x2723d: "\x02\x05\x01\x02\x01\x04\x01\x03\x05\x04", // 𧈽
+ 0x2723e: "\x02\x05\x01\x02\x01\x04\x04\x03\x03\x04", // 𧈾
+ 0x2723f: "\x02\x05\x01\x02\x01\x04\x02\x05\x03\x04", // 𧈿
+ 0x27240: "\x02\x05\x01\x02\x01\x04\x02\x01\x02\x01", // 𧉀
+ 0x27241: "\x03\x01\x01\x05\x02\x05\x01\x02\x01\x04", // 𧉁
+ 0x27242: "\x02\x05\x01\x02\x01\x04\x01\x01\x03\x04", // 𧉂
+ 0x27243: "\x02\x05\x01\x02\x01\x04\x05\x04\x03\x05", // 𧉃
+ 0x27244: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x05", // 𧉄
+ 0x27245: "\x02\x05\x01\x02\x01\x04\x05\x01\x01\x03", // 𧉅
+ 0x27246: "\x02\x05\x01\x02\x01\x04\x02\x01\x03\x04", // 𧉆
+ 0x27247: "\x03\x04\x03\x05\x02\x05\x01\x02\x01\x04", // 𧉇
+ 0x27248: "\x02\x05\x01\x02\x01\x04\x01\x03\x02\x04", // 𧉈
+ 0x27249: "\x01\x01\x02\x01\x02\x05\x01\x02\x01\x04", // 𧉉
+ 0x2724a: "\x03\x04\x03\x04\x02\x05\x01\x02\x01\x04", // 𧉊
+ 0x2724b: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x02", // 𧉋
+ 0x2724c: "\x04\x05\x04\x02\x05\x01\x02\x01\x04", // 𧉌
+ 0x2724d: "\x02\x05\x01\x02\x01\x04\x02\x03\x04\x04", // 𧉍
+ 0x2724e: "\x02\x05\x01\x02\x01\x04\x03\x05\x04\x01", // 𧉎
+ 0x2724f: "\x03\x05\x04\x01\x02\x05\x01\x02\x01\x04", // 𧉏
+ 0x27250: "\x02\x05\x01\x02\x01\x04\x05\x04\x05\x04", // 𧉐
+ 0x27251: "\x02\x05\x01\x02\x01\x04\x01\x03\x04\x04", // 𧉑
+ 0x27252: "\x01\x02\x01\x05\x02\x05\x01\x02\x01\x04", // 𧉒
+ 0x27253: "\x01\x02\x03\x04\x02\x05\x01\x02\x01\x04", // 𧉓
+ 0x27254: "\x02\x05\x01\x02\x01\x04\x05\x02\x01\x05", // 𧉔
+ 0x27255: "\x03\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 𧉕
+ 0x27256: "\x02\x05\x01\x02\x01\x04\x03\x01\x01\x02", // 𧉖
+ 0x27257: "\x01\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 𧉗
+ 0x27258: "\x02\x01\x02\x01\x02\x05\x01\x02\x01\x04", // 𧉘
+ 0x27259: "\x02\x05\x01\x02\x01\x04\x01\x05\x02\x05", // 𧉙
+ 0x2725a: "\x02\x05\x01\x02\x01\x04\x03\x05\x03\x03", // 𧉚
+ 0x2725b: "\x02\x05\x01\x02\x01\x04\x01\x05\x05\x04", // 𧉛
+ 0x2725c: "\x03\x05\x01\x05\x02\x05\x01\x02\x01\x04", // 𧉜
+ 0x2725d: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x05", // 𧉝
+ 0x2725e: "\x02\x05\x01\x02\x01\x04\x04\x04\x05\x01\x02", // 𧉞
+ 0x2725f: "\x02\x05\x01\x02\x01\x04\x05\x04\x02\x05\x01", // 𧉟
+ 0x27260: "\x02\x05\x01\x02\x01\x04\x05\x01\x02\x05\x01", // 𧉠
+ 0x27261: "\x02\x05\x01\x02\x01\x04\x04\x04\x05\x03\x05", // 𧉡
+ 0x27262: "\x02\x05\x01\x02\x01\x04\x04\x04\x05\x03\x05", // 𧉢
+ 0x27263: "\x02\x05\x01\x02\x01\x04\x01\x01\x02\x01\x04", // 𧉣
+ 0x27264: "\x02\x05\x01\x02\x01\x04\x05\x04\x01\x03\x02", // 𧉤
+ 0x27265: "\x02\x01\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 𧉥
+ 0x27266: "\x02\x05\x01\x02\x01\x04\x01\x03\x05\x03\x04", // 𧉦
+ 0x27267: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x05\x04", // 𧉧
+ 0x27268: "\x01\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 𧉨
+ 0x27269: "\x02\x05\x01\x02\x01\x04\x01\x03\x02\x05\x02", // 𧉩
+ 0x2726a: "\x05\x03\x02\x05\x01\x02\x05\x01\x02\x01\x04", // 𧉪
+ 0x2726b: "\x02\x05\x01\x02\x01\x04\x02\x05\x05\x04\x01", // 𧉫
+ 0x2726c: "\x02\x05\x01\x02\x01\x04\x05\x01\x05\x01\x05", // 𧉬
+ 0x2726d: "\x05\x03\x01\x05\x04\x02\x05\x01\x02\x01\x04", // 𧉭
+ 0x2726e: "\x02\x05\x01\x02\x01\x04\x03\x01\x05\x02\x05", // 𧉮
+ 0x2726f: "\x02\x05\x01\x02\x01\x04\x05\x05\x04\x01\x04", // 𧉯
+ 0x27270: "\x02\x05\x01\x02\x01\x04\x03\x05\x02\x03\x04", // 𧉰
+ 0x27271: "\x02\x05\x01\x02\x01\x04\x01\x02\x03\x04\x04", // 𧉱
+ 0x27272: "\x02\x05\x01\x02\x01\x04\x03\x03\x01\x01\x02", // 𧉲
+ 0x27273: "\x02\x05\x01\x02\x01\x04\x05\x02\x01\x01\x02", // 𧉳
+ 0x27274: "\x04\x04\x05\x03\x05\x02\x05\x01\x02\x01\x04", // 𧉴
+ 0x27275: "\x02\x05\x01\x02\x01\x04\x03\x05\x01\x03\x05", // 𧉵
+ 0x27276: "\x04\x01\x01\x02\x01\x02\x05\x01\x02\x01\x04", // 𧉶
+ 0x27277: "\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x04", // 𧉷
+ 0x27278: "\x02\x05\x01\x02\x01\x04\x05\x01\x05\x03\x02", // 𧉸
+ 0x27279: "\x02\x05\x01\x02\x01\x04\x01\x02\x03\x04\x05", // 𧉹
+ 0x2727a: "\x01\x02\x02\x01\x05\x02\x05\x01\x02\x01\x04", // 𧉺
+ 0x2727b: "\x02\x05\x01\x02\x01\x04\x04\x03\x01\x01\x02", // 𧉻
+ 0x2727c: "\x02\x05\x01\x02\x01\x04\x04\x01\x04\x03\x01", // 𧉼
+ 0x2727d: "\x02\x05\x01\x02\x01\x04\x04\x01\x02\x05\x02", // 𧉽
+ 0x2727e: "\x01\x01\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 𧉾
+ 0x2727f: "\x02\x05\x01\x02\x01\x04\x01\x01\x02\x03\x04", // 𧉿
+ 0x27280: "\x02\x05\x01\x02\x01\x04\x05\x03\x02\x05\x01", // 𧊀
+ 0x27281: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x01", // 𧊁
+ 0x27282: "\x02\x05\x01\x02\x01\x04\x03\x05\x04\x04\x04", // 𧊂
+ 0x27283: "\x03\x05\x04\x03\x05\x02\x05\x01\x02\x01\x04", // 𧊃
+ 0x27284: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x03\x04", // 𧊄
+ 0x27285: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x05\x03", // 𧊅
+ 0x27286: "\x03\x02\x01\x02\x04\x02\x05\x01\x02\x01\x04", // 𧊆
+ 0x27287: "\x03\x02\x01\x05\x04\x02\x05\x01\x02\x01\x04", // 𧊇
+ 0x27288: "\x05\x01\x05\x01\x05\x02\x05\x01\x02\x01\x04", // 𧊈
+ 0x27289: "\x02\x05\x01\x02\x01\x04\x03\x04\x05\x04", // 𧊉
+ 0x2728a: "\x02\x05\x01\x02\x01\x04\x03\x05\x01\x01\x02", // 𧊊
+ 0x2728b: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x02", // 𧊋
+ 0x2728c: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x01\x05", // 𧊌
+ 0x2728d: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x03\x04", // 𧊍
+ 0x2728e: "\x02\x05\x01\x02\x01\x04\x01\x05\x05\x03\x04", // 𧊎
+ 0x2728f: "\x02\x05\x01\x02\x01\x04\x04\x01\x05\x03\x03\x04", // 𧊏
+ 0x27290: "\x02\x05\x01\x02\x01\x04\x05\x01\x01\x01\x01\x02", // 𧊐
+ 0x27291: "\x02\x05\x01\x02\x01\x04\x01\x03\x05\x03\x03\x03", // 𧊑
+ 0x27292: "\x01\x01\x03\x05\x03\x04\x02\x05\x01\x02\x01\x04", // 𧊒
+ 0x27293: "\x02\x05\x01\x02\x01\x04\x03\x03\x05\x04\x01\x04", // 𧊓
+ 0x27294: "\x03\x03\x02\x02\x05\x01\x02\x01\x04\x01\x01\x02", // 𧊔
+ 0x27295: "\x02\x05\x01\x02\x01\x04\x01\x01\x03\x05\x03\x04", // 𧊕
+ 0x27296: "\x02\x05\x01\x02\x01\x04\x01\x01\x02\x01\x05\x04", // 𧊖
+ 0x27297: "\x02\x05\x01\x02\x01\x04\x01\x02\x02\x01\x01\x01", // 𧊗
+ 0x27298: "\x02\x05\x01\x02\x01\x04\x01\x03\x04\x01\x01\x05", // 𧊘
+ 0x27299: "\x02\x05\x01\x02\x01\x04\x03\x05\x02\x05\x01\x01", // 𧊙
+ 0x2729a: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x05\x01", // 𧊚
+ 0x2729b: "\x02\x05\x01\x02\x01\x04\x03\x03\x01\x02\x05\x01", // 𧊛
+ 0x2729c: "\x02\x05\x01\x02\x01\x04\x04\x03\x01\x05\x02\x02", // 𧊜
+ 0x2729d: "\x01\x02\x01\x02\x01\x03\x02\x05\x01\x02\x01\x04", // 𧊝
+ 0x2729e: "\x02\x05\x01\x02\x01\x04\x01\x01\x03\x02\x02\x02", // 𧊞
+ 0x2729f: "\x05\x03\x01\x02\x05\x01\x02\x05\x01\x02\x01\x04", // 𧊟
+ 0x272a0: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x03\x04", // 𧊠
+ 0x272a1: "\x01\x02\x01\x05\x02\x02\x05\x01\x02\x01\x04", // 𧊡
+ 0x272a2: "\x01\x01\x02\x03\x04\x05\x02\x05\x01\x02\x01\x04", // 𧊢
+ 0x272a3: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x05\x03", // 𧊣
+ 0x272a4: "\x02\x05\x01\x02\x01\x04\x04\x01\x03\x02\x03\x04", // 𧊤
+ 0x272a5: "\x02\x05\x01\x02\x01\x04\x01\x03\x01\x05\x03\x04", // 𧊥
+ 0x272a6: "\x02\x05\x01\x02\x01\x04\x03\x01\x01\x02\x05\x02", // 𧊦
+ 0x272a7: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x01\x04", // 𧊧
+ 0x272a8: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x01\x01", // 𧊨
+ 0x272a9: "\x02\x05\x01\x02\x01\x04\x02\x05\x02\x01\x01\x02", // 𧊩
+ 0x272aa: "\x01\x05\x03\x01\x05\x03\x02\x05\x01\x02\x01\x04", // 𧊪
+ 0x272ab: "\x02\x05\x01\x02\x01\x04\x02\x05\x03\x04\x01\x03\x05", // 𧊫
+ 0x272ac: "\x01\x02\x01\x02\x05\x04\x02\x05\x01\x02\x01\x04", // 𧊬
+ 0x272ad: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x03\x04\x01", // 𧊭
+ 0x272ae: "\x01\x02\x01\x02\x03\x05\x04\x02\x05\x01\x02\x01\x04", // 𧊮
+ 0x272af: "\x04\x01\x02\x05\x03\x04\x02\x05\x01\x02\x01\x04", // 𧊯
+ 0x272b0: "\x03\x02\x05\x01\x01\x03\x02\x05\x01\x02\x01\x04", // 𧊰
+ 0x272b1: "\x02\x05\x01\x02\x01\x04\x05\x03\x01\x02\x03\x04", // 𧊱
+ 0x272b2: "\x02\x05\x01\x02\x01\x04\x03\x04\x01\x01\x02\x01", // 𧊲
+ 0x272b3: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x01\x01\x01", // 𧊳
+ 0x272b4: "\x02\x05\x01\x02\x01\x04\x05\x02\x05\x03\x04\x01", // 𧊴
+ 0x272b5: "\x02\x05\x01\x02\x01\x04\x03\x05\x04\x01\x05\x02", // 𧊵
+ 0x272b6: "\x02\x05\x01\x02\x01\x04\x03\x05\x01\x02\x03\x04", // 𧊶
+ 0x272b7: "\x02\x05\x01\x02\x01\x04\x04\x01\x05\x05\x03\x01", // 𧊷
+ 0x272b8: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x02\x03\x04", // 𧊸
+ 0x272b9: "\x04\x04\x05\x05\x03\x01\x02\x05\x01\x02\x01\x04", // 𧊹
+ 0x272ba: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x01\x02\x05", // 𧊺
+ 0x272bb: "\x02\x05\x01\x02\x01\x04\x01\x03\x04\x01\x02\x01", // 𧊻
+ 0x272bc: "\x02\x05\x01\x02\x01\x04\x04\x05\x03\x05\x04\x04", // 𧊼
+ 0x272bd: "\x02\x05\x01\x02\x01\x04\x03\x03\x02\x01\x01\x02", // 𧊽
+ 0x272be: "\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x04", // 𧊾
+ 0x272bf: "\x01\x03\x05\x04\x02\x02\x02\x05\x01\x02\x01\x04", // 𧊿
+ 0x272c0: "\x02\x05\x01\x02\x01\x04\x04\x03\x04\x02\x04\x02", // 𧋀
+ 0x272c1: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x02\x01\x01", // 𧋁
+ 0x272c2: "\x02\x05\x01\x02\x01\x04\x04\x04\x01\x01\x01\x02", // 𧋂
+ 0x272c3: "\x02\x05\x01\x02\x01\x04\x01\x03\x02\x05\x02\x01", // 𧋃
+ 0x272c4: "\x02\x05\x01\x02\x01\x04\x01\x02\x02\x01\x03\x04", // 𧋄
+ 0x272c5: "\x02\x05\x01\x02\x01\x04\x05\x01\x03\x04\x04\x04", // 𧋅
+ 0x272c6: "\x02\x05\x01\x02\x01\x04\x01\x01\x01\x02\x03\x04", // 𧋆
+ 0x272c7: "\x02\x05\x01\x02\x01\x04\x01\x03\x02\x01\x02\x01", // 𧋇
+ 0x272c8: "\x02\x05\x01\x02\x01\x04\x03\x04\x04\x03\x05\x03\x03", // 𧋈
+ 0x272c9: "\x02\x05\x01\x02\x01\x04\x03\x04\x03\x04\x02\x05\x01", // 𧋉
+ 0x272ca: "\x04\x04\x01\x02\x03\x04\x03\x02\x05\x01\x02\x01\x04", // 𧋊
+ 0x272cb: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x01\x02\x05\x01", // 𧋋
+ 0x272cc: "\x01\x02\x05\x01\x02\x04\x05\x02\x05\x01\x02\x01\x04", // 𧋌
+ 0x272cd: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x03\x03\x01\x02", // 𧋍
+ 0x272ce: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x02\x01\x01", // 𧋎
+ 0x272cf: "\x02\x05\x01\x02\x01\x04\x02\x05\x02\x03\x05\x04", // 𧋏
+ 0x272d0: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x01\x02\x03\x04", // 𧋐
+ 0x272d1: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x01\x01\x03\x04", // 𧋑
+ 0x272d2: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x03\x02\x03\x04", // 𧋒
+ 0x272d3: "\x02\x05\x01\x02\x01\x04\x03\x01\x02\x01\x02\x05\x01", // 𧋓
+ 0x272d4: "\x01\x02\x01\x02\x05\x03\x04\x02\x05\x01\x02\x01\x04", // 𧋔
+ 0x272d5: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x03\x04\x01", // 𧋕
+ 0x272d6: "\x02\x05\x01\x02\x01\x04\x01\x02\x02\x01\x01\x01\x05", // 𧋖
+ 0x272d7: "\x03\x05\x01\x05\x02\x05\x01\x02\x01\x04\x01\x02\x01", // 𧋗
+ 0x272d8: "\x02\x05\x01\x02\x01\x04\x04\x03\x05\x01\x05\x02\x03", // 𧋘
+ 0x272d9: "\x02\x05\x01\x02\x01\x04\x03\x02\x05\x03\x05\x04\x01", // 𧋙
+ 0x272da: "\x03\x04\x03\x04\x01\x03\x03\x02\x05\x01\x02\x01\x04", // 𧋚
+ 0x272db: "\x01\x02\x04\x01\x03\x04\x04\x02\x05\x01\x02\x01\x04", // 𧋛
+ 0x272dc: "\x02\x05\x01\x02\x01\x04\x05\x02\x05\x01\x02\x01\x04", // 𧋜
+ 0x272dd: "\x02\x05\x01\x02\x01\x04\x01\x05\x04\x01\x02\x03\x04", // 𧋝
+ 0x272de: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x02\x01\x01\x03\x04", // 𧋞
+ 0x272df: "\x02\x05\x01\x02\x01\x04\x03\x01\x05\x05\x04\x01\x04", // 𧋟
+ 0x272e0: "\x01\x03\x05\x03\x03\x03\x04\x02\x05\x01\x02\x01\x04", // 𧋠
+ 0x272e1: "\x02\x05\x01\x02\x01\x04\x02\x05\x05\x02\x01\x01\x01", // 𧋡
+ 0x272e2: "\x02\x05\x01\x02\x01\x04\x01\x02\x04\x05\x05\x02\x01", // 𧋢
+ 0x272e3: "\x02\x05\x01\x02\x01\x04\x03\x05\x01\x05\x02\x05\x01", // 𧋣
+ 0x272e4: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x05\x04\x05\x03", // 𧋤
+ 0x272e5: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x03\x04", // 𧋥
+ 0x272e6: "\x02\x05\x01\x02\x01\x04\x05\x01\x03\x03\x01\x01\x05", // 𧋦
+ 0x272e7: "\x02\x05\x01\x02\x01\x04\x04\x01\x03\x04\x01\x02\x01", // 𧋧
+ 0x272e8: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x02\x01\x03\x04", // 𧋨
+ 0x272e9: "\x02\x05\x01\x02\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 𧋩
+ 0x272ea: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x02\x01\x01\x02", // 𧋪
+ 0x272eb: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x02\x05\x02\x01", // 𧋫
+ 0x272ec: "\x02\x05\x01\x02\x01\x04\x03\x05\x05\x04\x02\x03\x04", // 𧋬
+ 0x272ed: "\x02\x05\x01\x02\x01\x04\x03\x04\x04\x03\x01\x02\x01", // 𧋭
+ 0x272ee: "\x02\x05\x01\x02\x01\x04\x03\x01\x03\x04\x01\x02\x01", // 𧋮
+ 0x272ef: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 𧋯
+ 0x272f0: "\x03\x02\x05\x01\x05\x01\x01\x02\x05\x01\x02\x01\x04", // 𧋰
+ 0x272f1: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x05\x03", // 𧋱
+ 0x272f2: "\x04\x01\x02\x01\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 𧋲
+ 0x272f3: "\x01\x02\x01\x03\x05\x04\x04\x02\x05\x01\x02\x01\x04", // 𧋳
+ 0x272f4: "\x03\x05\x04\x01\x01\x01\x02\x02\x05\x01\x02\x01\x04", // 𧋴
+ 0x272f5: "\x02\x05\x01\x02\x01\x04\x03\x05\x03\x01\x01\x02\x01", // 𧋵
+ 0x272f6: "\x02\x05\x01\x02\x01\x04\x04\x04\x01\x03\x05\x05\x04", // 𧋶
+ 0x272f7: "\x02\x05\x01\x02\x01\x04\x05\x01\x05\x04\x05\x04\x04", // 𧋷
+ 0x272f8: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x01\x02\x01", // 𧋸
+ 0x272f9: "\x02\x05\x01\x02\x01\x04\x01\x01\x03\x04\x02\x01\x01", // 𧋹
+ 0x272fa: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x04\x05\x04\x04", // 𧋺
+ 0x272fb: "\x02\x05\x01\x02\x01\x04\x04\x01\x03\x04\x02\x05\x01", // 𧋻
+ 0x272fc: "\x02\x05\x01\x02\x01\x04\x01\x01\x02\x01\x01\x03\x02", // 𧋼
+ 0x272fd: "\x02\x05\x01\x02\x01\x04\x01\x02\x02\x04\x01\x05", // 𧋽
+ 0x272fe: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x05\x02\x01\x05", // 𧋾
+ 0x272ff: "\x02\x05\x01\x02\x01\x04\x04\x04\x02\x05\x01\x03\x04", // 𧋿
+ 0x27300: "\x02\x05\x01\x02\x01\x04\x01\x01\x03\x04\x02\x05\x01", // 𧌀
+ 0x27301: "\x03\x02\x02\x03\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 𧌁
+ 0x27302: "\x02\x05\x01\x02\x01\x04\x02\x01\x02\x01\x02\x03\x03", // 𧌂
+ 0x27303: "\x02\x05\x01\x02\x01\x04\x04\x01\x04\x03\x01\x05\x03\x01", // 𧌃
+ 0x27304: "\x02\x05\x01\x02\x01\x04\x01\x03\x04\x02\x05\x01\x01\x05", // 𧌄
+ 0x27305: "\x02\x05\x01\x02\x01\x04\x03\x04\x04\x03\x04\x05\x05\x04", // 𧌅
+ 0x27306: "\x02\x05\x01\x02\x01\x04\x04\x04\x05\x03\x05\x01\x02\x01", // 𧌆
+ 0x27307: "\x02\x05\x01\x02\x01\x04\x03\x05\x01\x01\x03\x05\x01\x01", // 𧌇
+ 0x27308: "\x02\x05\x01\x02\x01\x04\x05\x01\x01\x04\x05\x02\x05\x02", // 𧌈
+ 0x27309: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x03\x05\x01\x02\x01", // 𧌉
+ 0x2730a: "\x02\x05\x01\x02\x01\x04\x04\x01\x03\x02\x03\x05\x04\x04", // 𧌊
+ 0x2730b: "\x02\x05\x01\x02\x01\x04\x03\x01\x01\x02\x01\x02\x01\x05\x02", // 𧌋
+ 0x2730c: "\x03\x05\x04\x01\x01\x03\x05\x04\x02\x05\x01\x02\x01\x04", // 𧌌
+ 0x2730d: "\x02\x05\x01\x02\x01\x04\x05\x05\x01\x02\x04\x01\x03\x04", // 𧌍
+ 0x2730e: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x02\x01\x03\x04", // 𧌎
+ 0x2730f: "\x02\x05\x01\x02\x01\x04\x02\x05\x03\x04\x02\x05\x01\x01", // 𧌏
+ 0x27310: "\x01\x02\x05\x02\x03\x04\x02\x02\x02\x05\x01\x02\x01\x04", // 𧌐
+ 0x27311: "\x02\x05\x01\x02\x01\x04\x05\x01\x03\x05\x02\x02\x05\x02", // 𧌑
+ 0x27312: "\x01\x02\x05\x01\x01\x05\x03\x04\x02\x05\x01\x02\x01\x04", // 𧌒
+ 0x27313: "\x02\x05\x01\x02\x01\x04\x03\x02\x05\x01\x05\x01\x01\x02", // 𧌓
+ 0x27314: "\x01\x02\x03\x04\x01\x02\x05\x04\x02\x05\x01\x02\x01\x04", // 𧌔
+ 0x27315: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x03\x01\x05\x02\x01", // 𧌕
+ 0x27316: "\x02\x05\x01\x02\x01\x04\x03\x04\x01\x01\x02\x02\x05\x01", // 𧌖
+ 0x27317: "\x02\x05\x01\x02\x01\x04\x01\x02\x02\x01\x01\x01\x05\x04", // 𧌗
+ 0x27318: "\x03\x05\x01\x01\x05\x02\x05\x04\x02\x05\x01\x02\x01\x04", // 𧌘
+ 0x27319: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 𧌙
+ 0x2731a: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x04\x03\x03\x04", // 𧌚
+ 0x2731b: "\x03\x02\x05\x01\x05\x01\x01\x02\x02\x05\x01\x02\x01\x04", // 𧌛
+ 0x2731c: "\x05\x02\x01\x03\x03\x05\x04\x01\x02\x05\x01\x02\x01\x04", // 𧌜
+ 0x2731d: "\x01\x03\x04\x04\x03\x03\x04\x03\x02\x05\x01\x02\x01\x04", // 𧌝
+ 0x2731e: "\x02\x05\x01\x02\x01\x04\x04\x05\x02\x04\x05\x02", // 𧌞
+ 0x2731f: "\x01\x02\x05\x01\x02\x05\x05\x02\x02\x05\x01\x02\x01\x04", // 𧌟
+ 0x27320: "\x03\x02\x05\x01\x01\x03\x01\x02\x02\x05\x01\x02\x01\x04", // 𧌠
+ 0x27321: "\x02\x05\x01\x02\x01\x04\x05\x03\x02\x05\x01\x02\x01\x04", // 𧌡
+ 0x27322: "\x05\x05\x04\x04\x04\x04\x03\x04\x02\x05\x01\x02\x01\x04", // 𧌢
+ 0x27323: "\x05\x03\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧌣
+ 0x27324: "\x02\x05\x01\x02\x01\x04\x03\x05\x03\x02\x01\x05\x01\x01", // 𧌤
+ 0x27325: "\x02\x05\x01\x02\x01\x04\x01\x04\x03\x01\x03\x04\x02\x02", // 𧌥
+ 0x27326: "\x05\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧌦
+ 0x27327: "\x02\x05\x01\x02\x01\x04\x02\x01\x05\x03\x01\x05\x01\x02", // 𧌧
+ 0x27328: "\x02\x05\x01\x02\x01\x04\x01\x02\x03\x04\x03\x02\x01\x05", // 𧌨
+ 0x27329: "\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x02\x01\x04", // 𧌩
+ 0x2732a: "\x02\x05\x01\x01\x01\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 𧌪
+ 0x2732b: "\x02\x05\x01\x02\x01\x04\x03\x02\x01\x01\x05\x01\x01\x02", // 𧌫
+ 0x2732c: "\x02\x05\x01\x02\x01\x04\x04\x01\x02\x05\x01\x02\x03\x04", // 𧌬
+ 0x2732d: "\x02\x05\x01\x02\x01\x04\x02\x01\x05\x03\x01\x05\x03\x04", // 𧌭
+ 0x2732e: "\x02\x05\x01\x02\x01\x04\x01\x03\x05\x03\x03\x04\x03\x04", // 𧌮
+ 0x2732f: "\x02\x05\x01\x02\x01\x04\x03\x01\x02\x01\x02\x02\x01\x01", // 𧌯
+ 0x27330: "\x02\x05\x01\x02\x01\x04\x05\x02\x03\x05\x04\x01\x05\x02", // 𧌰
+ 0x27331: "\x04\x01\x05\x03\x03\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 𧌱
+ 0x27332: "\x03\x01\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x01\x04", // 𧌲
+ 0x27333: "\x02\x05\x01\x02\x01\x04\x03\x05\x01\x01\x05\x02\x01\x05", // 𧌳
+ 0x27334: "\x02\x05\x01\x02\x01\x04\x04\x05\x02\x04\x05\x02", // 𧌴
+ 0x27335: "\x02\x05\x01\x02\x01\x04\x05\x05\x05\x03\x05\x01\x02\x02", // 𧌵
+ 0x27336: "\x04\x03\x01\x01\x02\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 𧌶
+ 0x27337: "\x02\x05\x01\x02\x01\x04\x04\x03\x01\x05\x05\x04\x02\x04", // 𧌷
+ 0x27338: "\x02\x05\x01\x02\x01\x04\x02\x01\x02\x05\x01\x01\x01\x02", // 𧌸
+ 0x27339: "\x02\x05\x01\x02\x01\x04\x02\x05\x02\x01\x03\x02\x05\x01", // 𧌹
+ 0x2733a: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x02\x03\x04\x03\x05", // 𧌺
+ 0x2733b: "\x01\x02\x03\x04\x03\x05\x05\x04\x02\x05\x01\x02\x01\x04", // 𧌻
+ 0x2733c: "\x02\x05\x01\x02\x01\x04\x01\x05\x04\x01\x02\x01\x02\x02", // 𧌼
+ 0x2733d: "\x02\x05\x01\x02\x01\x04\x04\x03\x02\x05\x02\x03\x04", // 𧌽
+ 0x2733e: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x01\x02", // 𧌾
+ 0x2733f: "\x03\x02\x01\x05\x03\x03\x05\x04\x02\x05\x01\x02\x01\x04", // 𧌿
+ 0x27340: "\x03\x05\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧍀
+ 0x27341: "\x02\x05\x01\x02\x01\x04\x04\x01\x03\x05\x01\x01\x03\x04", // 𧍁
+ 0x27342: "\x02\x05\x01\x02\x01\x04\x05\x04\x01\x03\x02\x05\x01\x01", // 𧍂
+ 0x27343: "\x02\x05\x01\x02\x01\x04\x02\x01\x01\x01\x02\x01\x01\x01", // 𧍃
+ 0x27344: "\x02\x05\x01\x02\x01\x04\x04\x01\x03\x04\x05\x04\x03\x05", // 𧍄
+ 0x27345: "\x03\x02\x01\x02\x05\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 𧍅
+ 0x27346: "\x02\x05\x01\x02\x01\x04\x05\x02\x01\x03\x03\x05\x04\x04", // 𧍆
+ 0x27347: "\x02\x05\x01\x02\x01\x04\x03\x02\x01\x02\x05\x01\x03\x04", // 𧍇
+ 0x27348: "\x02\x05\x01\x02\x01\x04\x04\x01\x03\x02\x01\x02\x05\x01", // 𧍈
+ 0x27349: "\x02\x05\x01\x02\x01\x04\x04\x01\x03\x03\x05\x01\x05\x04", // 𧍉
+ 0x2734a: "\x02\x05\x01\x02\x01\x04\x01\x03\x01\x02\x01\x01\x02\x01", // 𧍊
+ 0x2734b: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x01\x01\x02\x04", // 𧍋
+ 0x2734c: "\x02\x05\x01\x02\x01\x04\x04\x04\x01\x05\x03\x02\x05\x01", // 𧍌
+ 0x2734d: "\x02\x05\x01\x02\x01\x04\x01\x03\x04\x03\x04\x02\x03\x04", // 𧍍
+ 0x2734e: "\x02\x05\x01\x02\x01\x04\x03\x05\x01\x05\x02\x05\x01\x01", // 𧍎
+ 0x2734f: "\x02\x05\x01\x02\x01\x04\x05\x03\x01\x01\x02\x02\x05\x01", // 𧍏
+ 0x27350: "\x02\x05\x01\x02\x01\x04\x04\x01\x01\x03\x05\x04\x02\x02", // 𧍐
+ 0x27351: "\x02\x05\x01\x02\x01\x04\x02\x05\x04\x03\x01\x03\x04\x05", // 𧍑
+ 0x27352: "\x02\x05\x01\x02\x01\x04\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 𧍒
+ 0x27353: "\x03\x02\x05\x01\x05\x01\x02\x05\x02\x02\x05\x01\x02\x01\x04", // 𧍓
+ 0x27354: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x02\x02\x01\x05\x03\x01", // 𧍔
+ 0x27355: "\x02\x05\x01\x02\x01\x04\x03\x04\x03\x04\x02\x05\x01\x05\x02", // 𧍕
+ 0x27356: "\x02\x05\x01\x02\x01\x04\x02\x03\x04\x03\x02\x05\x01\x01\x01", // 𧍖
+ 0x27357: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x02\x01\x03\x02\x05\x01", // 𧍗
+ 0x27358: "\x02\x05\x01\x02\x01\x04\x05\x05\x04\x02\x05\x05\x04\x05\x02", // 𧍘
+ 0x27359: "\x01\x02\x01\x02\x04\x04\x01\x05\x05\x02\x05\x01\x02\x01\x04", // 𧍙
+ 0x2735a: "\x02\x05\x01\x02\x01\x04\x02\x05\x02\x05\x01\x01\x05\x04", // 𧍚
+ 0x2735b: "\x02\x05\x01\x02\x01\x04\x05\x04\x02\x05\x01\x01\x02\x05\x03", // 𧍛
+ 0x2735c: "\x02\x05\x01\x02\x01\x04\x05\x04\x03\x03\x04\x01\x01\x03\x04", // 𧍜
+ 0x2735d: "\x02\x05\x01\x02\x01\x04\x04\x01\x04\x03\x04\x05\x02\x05\x02", // 𧍝
+ 0x2735e: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x05\x01\x01\x01\x05", // 𧍞
+ 0x2735f: "\x01\x02\x01\x02\x05\x04\x05\x02\x03\x02\x05\x01\x02\x01\x04", // 𧍟
+ 0x27360: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x02\x03\x04\x02\x03\x04", // 𧍠
+ 0x27361: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x01\x03\x04\x02\x02", // 𧍡
+ 0x27362: "\x03\x03\x02\x04\x04\x01\x01\x01\x02\x02\x05\x01\x02\x01\x04", // 𧍢
+ 0x27363: "\x01\x02\x01\x02\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x04", // 𧍣
+ 0x27364: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 𧍤
+ 0x27365: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x01\x05\x03\x04", // 𧍥
+ 0x27366: "\x04\x05\x04\x03\x04\x03\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 𧍦
+ 0x27367: "\x02\x05\x01\x02\x01\x04\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 𧍧
+ 0x27368: "\x02\x05\x01\x02\x05\x01\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 𧍨
+ 0x27369: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x02\x05\x01\x05\x01\x03\x04", // 𧍩
+ 0x2736a: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𧍪
+ 0x2736b: "\x02\x05\x01\x02\x01\x04\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 𧍫
+ 0x2736c: "\x02\x05\x01\x02\x01\x04\x03\x04\x01\x02\x05\x01\x01\x03\x02", // 𧍬
+ 0x2736d: "\x02\x05\x01\x02\x01\x04\x03\x02\x05\x01\x01\x02\x05\x03\x04", // 𧍭
+ 0x2736e: "\x02\x05\x01\x02\x01\x04\x04\x05\x01\x03\x02\x05\x02\x05\x01", // 𧍮
+ 0x2736f: "\x02\x05\x01\x02\x01\x04\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𧍯
+ 0x27370: "\x02\x05\x01\x02\x01\x04\x03\x05\x04\x01\x03\x01\x01\x02\x01", // 𧍰
+ 0x27371: "\x02\x05\x01\x02\x01\x04\x04\x04\x05\x01\x05\x04\x01\x02\x01", // 𧍱
+ 0x27372: "\x02\x05\x01\x02\x01\x04\x03\x02\x01\x02\x05\x01\x01\x03\x04", // 𧍲
+ 0x27373: "\x02\x05\x01\x02\x01\x04\x03\x02\x01\x05\x01\x01\x03\x04", // 𧍳
+ 0x27374: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 𧍴
+ 0x27375: "\x01\x02\x02\x05\x01\x03\x05\x04\x01\x02\x05\x01\x02\x01\x04", // 𧍵
+ 0x27376: "\x02\x05\x01\x02\x01\x04\x03\x03\x02\x05\x01\x01\x01\x01\x02", // 𧍶
+ 0x27377: "\x01\x02\x01\x02\x01\x03\x02\x05\x01\x02\x05\x01\x02\x01\x04", // 𧍷
+ 0x27378: "\x03\x05\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧍸
+ 0x27379: "\x02\x05\x01\x02\x01\x04\x01\x03\x02\x05\x01\x01\x01\x05\x02", // 𧍹
+ 0x2737a: "\x02\x05\x01\x02\x01\x04\x01\x05\x01\x02\x01\x03\x05\x01\x01", // 𧍺
+ 0x2737b: "\x03\x02\x01\x02\x05\x01\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 𧍻
+ 0x2737c: "\x02\x05\x01\x02\x01\x04\x05\x05\x05\x01\x03\x05\x04\x02\x02", // 𧍼
+ 0x2737d: "\x04\x01\x03\x03\x05\x04\x02\x05\x01\x02\x01\x04\x01\x02\x01", // 𧍽
+ 0x2737e: "\x01\x02\x02\x05\x01\x04\x05\x03\x05\x02\x05\x01\x02\x01\x04", // 𧍾
+ 0x2737f: "\x02\x05\x01\x02\x01\x04\x01\x03\x05\x04\x03\x04\x03\x03\x03", // 𧍿
+ 0x27380: "\x01\x02\x03\x04\x03\x02\x01\x05\x02\x05\x01\x02\x01\x04", // 𧎀
+ 0x27381: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x03\x04\x03\x02", // 𧎁
+ 0x27382: "\x05\x01\x02\x01\x01\x05\x01\x05\x04\x02\x05\x01\x02\x01\x04", // 𧎂
+ 0x27383: "\x03\x05\x03\x01\x01\x03\x04\x03\x04\x02\x05\x01\x02\x01\x04", // 𧎃
+ 0x27384: "\x02\x05\x01\x02\x01\x04\x05\x04\x05\x02\x03\x03\x01\x03\x04", // 𧎄
+ 0x27385: "\x01\x02\x01\x04\x05\x02\x05\x01\x02\x01\x04\x03\x05\x05\x04", // 𧎅
+ 0x27386: "\x01\x02\x03\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧎆
+ 0x27387: "\x02\x05\x01\x02\x01\x04\x05\x04\x04\x02\x05\x01\x02\x01\x04", // 𧎇
+ 0x27388: "\x02\x05\x01\x02\x01\x04\x01\x03\x04\x03\x04\x03\x04\x02\x02", // 𧎈
+ 0x27389: "\x02\x05\x01\x02\x01\x04\x04\x03\x01\x01\x02\x01\x03\x05\x04", // 𧎉
+ 0x2738a: "\x02\x05\x01\x02\x01\x04\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 𧎊
+ 0x2738b: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x01\x02\x01\x01\x02\x04", // 𧎋
+ 0x2738c: "\x01\x01\x01\x03\x04\x02\x05\x01\x01\x02\x05\x01\x02\x01\x04", // 𧎌
+ 0x2738d: "\x02\x05\x01\x02\x01\x04\x02\x01\x05\x03\x01\x05\x05\x02\x01", // 𧎍
+ 0x2738e: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x02\x02\x01\x01\x01", // 𧎎
+ 0x2738f: "\x01\x05\x01\x02\x02\x05\x02\x05\x01\x02\x05\x01\x02\x01\x04", // 𧎏
+ 0x27390: "\x02\x05\x01\x02\x01\x04\x03\x01\x02\x03\x04\x04\x03\x03\x04", // 𧎐
+ 0x27391: "\x02\x05\x01\x02\x01\x04\x03\x05\x02\x05\x03\x04\x01\x03\x04", // 𧎑
+ 0x27392: "\x02\x05\x01\x02\x01\x04\x05\x05\x04\x04\x04\x04\x03\x05\x04", // 𧎒
+ 0x27393: "\x02\x05\x01\x02\x01\x04\x03\x05\x04\x02\x05\x01\x02\x01\x04", // 𧎓
+ 0x27394: "\x02\x05\x01\x02\x01\x04\x01\x03\x04\x01\x02\x01\x03\x01\x02", // 𧎔
+ 0x27395: "\x02\x01\x01\x03\x05\x01\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 𧎕
+ 0x27396: "\x02\x05\x01\x02\x01\x04\x02\x05\x02\x02\x01\x02\x05\x03\x04", // 𧎖
+ 0x27397: "\x03\x01\x02\x03\x04\x04\x04\x01\x02\x02\x05\x01\x02\x01\x04", // 𧎗
+ 0x27398: "\x02\x05\x01\x02\x01\x04\x03\x03\x02\x04\x04\x01\x01\x01\x02", // 𧎘
+ 0x27399: "\x02\x05\x01\x02\x01\x04\x03\x04\x01\x03\x02\x05\x02\x05\x02", // 𧎙
+ 0x2739a: "\x02\x05\x01\x02\x01\x04\x03\x02\x01\x01\x01\x03\x05\x05\x04", // 𧎚
+ 0x2739b: "\x02\x05\x01\x02\x01\x04\x04\x04\x05\x03\x04\x01\x03\x04\x04", // 𧎛
+ 0x2739c: "\x02\x05\x01\x02\x01\x04\x05\x01\x03\x01\x05\x04\x01\x02\x01", // 𧎜
+ 0x2739d: "\x02\x05\x01\x02\x01\x04\x01\x01\x01\x03\x04\x01\x01\x03\x04", // 𧎝
+ 0x2739e: "\x02\x05\x01\x02\x01\x04\x01\x03\x01\x03\x05\x03\x03\x03\x04", // 𧎞
+ 0x2739f: "\x02\x05\x01\x02\x01\x04\x05\x01\x01\x05\x04\x05\x02", // 𧎟
+ 0x273a0: "\x02\x05\x01\x02\x01\x04\x03\x05\x05\x04\x02\x05\x01\x01\x05", // 𧎠
+ 0x273a1: "\x02\x05\x01\x02\x01\x04\x04\x04\x05\x02\x05\x01\x03\x02\x05\x01", // 𧎡
+ 0x273a2: "\x02\x05\x01\x02\x01\x04\x01\x05\x04\x02\x05\x01\x01\x01\x03\x04", // 𧎢
+ 0x273a3: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x02\x01\x02\x02\x01\x01\x01", // 𧎣
+ 0x273a4: "\x02\x05\x01\x02\x01\x04\x05\x02\x01\x03\x05\x05\x04\x02\x03\x04", // 𧎤
+ 0x273a5: "\x02\x05\x01\x02\x01\x04\x03\x05\x01\x03\x05\x04\x01\x05\x04\x01", // 𧎥
+ 0x273a6: "\x02\x05\x01\x02\x01\x04\x01\x02\x02\x01\x03\x04\x02\x04\x04\x04", // 𧎦
+ 0x273a7: "\x02\x05\x01\x02\x01\x04\x04\x04\x05\x03\x02\x03\x02\x05\x01\x01", // 𧎧
+ 0x273a8: "\x02\x05\x01\x02\x01\x04\x05\x01\x03\x04\x01\x04\x03\x01\x01\x02", // 𧎨
+ 0x273a9: "\x02\x05\x01\x02\x01\x04\x03\x05\x04\x01\x05\x02\x01\x02\x03\x04", // 𧎩
+ 0x273aa: "\x03\x05\x01\x05\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧎪
+ 0x273ab: "\x02\x05\x01\x02\x01\x04\x02\x04\x03\x02\x05\x01\x01\x01\x03\x04", // 𧎫
+ 0x273ac: "\x03\x01\x02\x01\x01\x02\x01\x01\x02\x04\x02\x05\x01\x02\x01\x04", // 𧎬
+ 0x273ad: "\x03\x02\x05\x01\x01\x01\x03\x01\x02\x04\x02\x05\x01\x02\x01\x04", // 𧎭
+ 0x273ae: "\x05\x04\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧎮
+ 0x273af: "\x02\x05\x01\x02\x01\x04\x03\x01\x01\x02\x05\x02\x05\x01\x03\x04", // 𧎯
+ 0x273b0: "\x05\x01\x03\x01\x02\x02\x01\x05\x03\x04\x02\x05\x01\x02\x01\x04", // 𧎰
+ 0x273b1: "\x05\x02\x01\x05\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧎱
+ 0x273b2: "\x02\x05\x01\x02\x01\x04\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02", // 𧎲
+ 0x273b3: "\x02\x05\x01\x02\x01\x04\x01\x02\x04\x05\x05\x05\x04\x02\x03\x04", // 𧎳
+ 0x273b4: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x03\x03\x01\x02\x02\x05\x01", // 𧎴
+ 0x273b5: "\x02\x05\x01\x02\x01\x04\x03\x01\x01\x05\x04\x03\x01\x02\x03\x04", // 𧎵
+ 0x273b6: "\x05\x05\x04\x05\x05\x04\x01\x02\x05\x01\x02\x01\x04\x05\x03\x04", // 𧎶
+ 0x273b7: "\x02\x05\x01\x02\x01\x04\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03", // 𧎷
+ 0x273b8: "\x02\x05\x01\x02\x01\x04\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 𧎸
+ 0x273b9: "\x01\x02\x01\x01\x01\x02\x03\x04\x05\x04\x02\x05\x01\x02\x01\x04", // 𧎹
+ 0x273ba: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02", // 𧎺
+ 0x273bb: "\x05\x04\x05\x02\x03\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01\x04", // 𧎻
+ 0x273bc: "\x02\x05\x01\x02\x01\x04\x03\x05\x04\x01\x03\x01\x01\x02\x05\x02", // 𧎼
+ 0x273bd: "\x02\x05\x01\x02\x01\x04\x01\x02\x02\x04\x03\x01\x02\x05\x01\x01", // 𧎽
+ 0x273be: "\x02\x05\x01\x02\x01\x04\x02\x03\x04\x02\x05\x01\x01\x02\x03\x04", // 𧎾
+ 0x273bf: "\x04\x01\x03\x04\x01\x03\x01\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 𧎿
+ 0x273c0: "\x02\x05\x01\x02\x01\x04\x03\x02\x05\x03\x04\x01\x04\x05\x04\x04", // 𧏀
+ 0x273c1: "\x03\x03\x01\x02\x02\x01\x03\x04\x02\x05\x01\x02\x01\x04\x01\x02\x01", // 𧏁
+ 0x273c2: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x01\x02\x01\x05\x01\x03\x04", // 𧏂
+ 0x273c3: "\x02\x05\x01\x02\x01\x04\x04\x01\x01\x01\x02\x01\x05\x01\x03\x04", // 𧏃
+ 0x273c4: "\x05\x02\x01\x01\x02\x01\x03\x03\x01\x02\x02\x05\x01\x02\x01\x04", // 𧏄
+ 0x273c5: "\x04\x01\x03\x02\x03\x04\x03\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 𧏅
+ 0x273c6: "\x01\x02\x05\x01\x02\x05\x04\x04\x01\x02\x02\x05\x01\x02\x01\x04", // 𧏆
+ 0x273c7: "\x03\x04\x04\x03\x05\x03\x03\x02\x02\x02\x05\x01\x02\x01\x04", // 𧏇
+ 0x273c8: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x03\x02\x05\x01\x01\x01\x01", // 𧏈
+ 0x273c9: "\x02\x05\x01\x02\x01\x04\x04\x03\x01\x01\x03\x04\x01\x01\x03\x04", // 𧏉
+ 0x273ca: "\x01\x02\x01\x02\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧏊
+ 0x273cb: "\x01\x02\x05\x01\x02\x04\x05\x02\x05\x01\x02\x05\x01\x02\x01\x04", // 𧏋
+ 0x273cc: "\x01\x02\x01\x05\x01\x03\x03\x05\x05\x04\x02\x05\x01\x02\x01\x04", // 𧏌
+ 0x273cd: "\x03\x02\x05\x01\x05\x01\x01\x02\x05\x02\x02\x05\x01\x02\x01\x04", // 𧏍
+ 0x273ce: "\x02\x05\x01\x02\x01\x04\x04\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 𧏎
+ 0x273cf: "\x02\x05\x01\x02\x01\x04\x04\x04\x05\x03\x05\x02\x05\x01\x01\x01", // 𧏏
+ 0x273d0: "\x01\x03\x03\x02\x05\x01\x01\x02\x03\x04\x02\x05\x01\x02\x01\x04", // 𧏐
+ 0x273d1: "\x02\x05\x01\x02\x01\x04\x04\x01\x04\x03\x01\x04\x01\x04\x03\x01", // 𧏑
+ 0x273d2: "\x02\x05\x01\x01\x01\x02\x02\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 𧏒
+ 0x273d3: "\x02\x05\x01\x02\x01\x04\x03\x05\x04\x03\x04\x02\x05\x01\x02\x01", // 𧏓
+ 0x273d4: "\x01\x04\x05\x05\x03\x04\x05\x02\x05\x01\x02\x01\x04\x01\x02\x01", // 𧏔
+ 0x273d5: "\x02\x05\x01\x02\x01\x04\x03\x03\x02\x01\x05\x03\x01\x05\x03\x04", // 𧏕
+ 0x273d6: "\x02\x05\x01\x02\x01\x04\x04\x04\x05\x03\x02\x01\x02\x01\x03\x04", // 𧏖
+ 0x273d7: "\x02\x05\x01\x02\x01\x04\x04\x01\x03\x05\x03\x04\x02\x05\x03\x04", // 𧏗
+ 0x273d8: "\x02\x05\x01\x02\x01\x04\x03\x03\x05\x04\x01\x04\x03\x05\x05\x04", // 𧏘
+ 0x273d9: "\x02\x05\x01\x02\x01\x04\x04\x03\x01\x01\x01\x03\x05\x05\x04", // 𧏙
+ 0x273da: "\x01\x02\x01\x04\x05\x01\x02\x05\x01\x02\x01\x04\x03\x05\x05\x04", // 𧏚
+ 0x273db: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x04\x02\x05\x01\x02\x01\x04", // 𧏛
+ 0x273dc: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x02\x05\x01\x05\x01\x03\x04", // 𧏜
+ 0x273dd: "\x05\x04\x05\x04\x05\x04\x03\x02\x03\x03\x02\x05\x01\x02\x01\x04", // 𧏝
+ 0x273de: "\x02\x05\x01\x02\x01\x04\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01", // 𧏞
+ 0x273df: "\x04\x03\x01\x02\x03\x04\x03\x05\x05\x03\x02\x05\x01\x02\x01\x04", // 𧏟
+ 0x273e0: "\x02\x05\x01\x02\x01\x04\x05\x04\x05\x04\x05\x04\x01\x02\x03\x04", // 𧏠
+ 0x273e1: "\x02\x05\x01\x02\x01\x04\x01\x03\x02\x05\x01\x01\x01\x03\x05\x04", // 𧏡
+ 0x273e2: "\x02\x05\x01\x02\x01\x04\x02\x05\x02\x03\x05\x04\x01\x01\x01\x02", // 𧏢
+ 0x273e3: "\x02\x05\x01\x02\x01\x04\x03\x01\x04\x03\x01\x04\x03\x01\x03\x04", // 𧏣
+ 0x273e4: "\x01\x02\x01\x02\x01\x02\x01\x03\x05\x04\x02\x05\x01\x02\x01\x04", // 𧏤
+ 0x273e5: "\x02\x05\x01\x02\x01\x04\x01\x02\x02\x03\x04\x02\x04\x04\x04", // 𧏥
+ 0x273e6: "\x02\x05\x01\x02\x01\x04\x01\x03\x02\x05\x02\x02\x04\x03\x03\x04", // 𧏦
+ 0x273e7: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x03\x04\x03\x05\x04", // 𧏧
+ 0x273e8: "\x03\x01\x01\x05\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x04", // 𧏨
+ 0x273e9: "\x02\x05\x01\x02\x01\x04\x03\x02\x05\x03\x04\x01\x03\x05\x05\x04", // 𧏩
+ 0x273ea: "\x02\x05\x01\x02\x01\x04\x04\x03\x01\x01\x03\x04\x01\x02\x03\x04", // 𧏪
+ 0x273eb: "\x02\x05\x01\x02\x01\x04\x03\x04\x01\x02\x03\x04\x03\x05\x05\x04", // 𧏫
+ 0x273ec: "\x02\x05\x01\x02\x01\x04\x05\x02\x02\x01\x02\x05\x01\x02\x01\x04", // 𧏬
+ 0x273ed: "\x02\x05\x01\x02\x01\x04\x03\x03\x04\x04\x05\x01\x01\x02\x05\x02", // 𧏭
+ 0x273ee: "\x02\x05\x01\x02\x01\x04\x04\x03\x01\x01\x02\x01\x04\x05\x04\x04", // 𧏮
+ 0x273ef: "\x02\x05\x01\x02\x01\x04\x01\x03\x01\x01\x05\x03\x04\x01\x02\x04", // 𧏯
+ 0x273f0: "\x02\x05\x01\x02\x01\x04\x01\x02\x02\x01\x01\x01\x04\x05\x03\x05", // 𧏰
+ 0x273f1: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x03\x04\x02\x05\x02\x02\x01", // 𧏱
+ 0x273f2: "\x02\x05\x01\x02\x01\x04\x01\x03\x05\x04\x02\x02\x04\x04\x04\x04", // 𧏲
+ 0x273f3: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 𧏳
+ 0x273f4: "\x02\x05\x01\x02\x01\x04\x03\x02\x05\x01\x05\x01\x04\x05\x04", // 𧏴
+ 0x273f5: "\x02\x05\x01\x02\x01\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05", // 𧏵
+ 0x273f6: "\x02\x05\x01\x02\x01\x04\x05\x02\x01\x02\x05\x01\x01\x01\x02", // 𧏶
+ 0x273f7: "\x02\x05\x01\x02\x01\x04\x04\x01\x05\x05\x04\x02\x05\x01\x02\x01", // 𧏷
+ 0x273f8: "\x02\x05\x01\x02\x01\x04\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01", // 𧏸
+ 0x273f9: "\x02\x05\x01\x02\x01\x04\x04\x01\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 𧏹
+ 0x273fa: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 𧏺
+ 0x273fb: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x01\x02\x01\x02\x01\x01\x02", // 𧏻
+ 0x273fc: "\x04\x01\x01\x02\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧏼
+ 0x273fd: "\x02\x05\x01\x02\x01\x04\x01\x03\x01\x01\x03\x04\x05\x04\x05\x04\x04", // 𧏽
+ 0x273fe: "\x01\x01\x02\x01\x02\x01\x03\x02\x05\x01\x05\x02\x05\x01\x02\x01\x04", // 𧏾
+ 0x273ff: "\x02\x05\x01\x02\x01\x04\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 𧏿
+ 0x27400: "\x02\x05\x01\x02\x01\x04\x03\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 𧐀
+ 0x27401: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x01\x02\x03\x04\x03\x05\x03\x04", // 𧐁
+ 0x27402: "\x03\x04\x01\x05\x01\x01\x02\x01\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 𧐂
+ 0x27403: "\x02\x05\x01\x02\x01\x04\x03\x02\x04\x01\x01\x01\x02\x01\x01\x03\x04", // 𧐃
+ 0x27404: "\x02\x05\x01\x02\x01\x04\x03\x04\x03\x04\x02\x05\x01\x03\x05\x03\x04", // 𧐄
+ 0x27405: "\x02\x05\x01\x02\x01\x04\x02\x01\x05\x03\x01\x05\x02\x05\x01\x01\x01", // 𧐅
+ 0x27406: "\x05\x01\x01\x05\x04\x01\x05\x03\x05\x02\x05\x01\x02\x01\x04", // 𧐆
+ 0x27407: "\x02\x05\x01\x02\x01\x04\x05\x01\x03\x01\x01\x02\x03\x04\x01\x02\x04", // 𧐇
+ 0x27408: "\x04\x01\x05\x03\x03\x01\x03\x01\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 𧐈
+ 0x27409: "\x03\x01\x01\x03\x04\x02\x05\x01\x01\x01\x02\x02\x05\x01\x02\x01\x04", // 𧐉
+ 0x2740a: "\x02\x05\x01\x02\x01\x04\x05\x01\x05\x01\x02\x01\x01\x01\x05\x03\x04", // 𧐊
+ 0x2740b: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x03\x05\x04\x02\x05\x01", // 𧐋
+ 0x2740c: "\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x01\x02\x01\x04", // 𧐌
+ 0x2740d: "\x02\x05\x01\x02\x01\x04\x01\x01\x01\x03\x04\x03\x02\x01\x05\x01\x01", // 𧐍
+ 0x2740e: "\x02\x05\x01\x02\x01\x04\x03\x04\x04\x03\x02\x05\x01\x01\x01\x03\x05", // 𧐎
+ 0x2740f: "\x03\x05\x01\x05\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧐏
+ 0x27410: "\x02\x05\x01\x02\x01\x04\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𧐐
+ 0x27411: "\x02\x05\x01\x02\x01\x04\x02\x03\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 𧐑
+ 0x27412: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x01\x02\x03\x04\x04\x05\x04", // 𧐒
+ 0x27413: "\x02\x05\x01\x01\x02\x01\x01\x05\x04\x05\x02\x02\x05\x01\x02\x01\x04", // 𧐓
+ 0x27414: "\x02\x05\x01\x02\x01\x04\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01", // 𧐔
+ 0x27415: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04", // 𧐕
+ 0x27416: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 𧐖
+ 0x27417: "\x02\x05\x01\x02\x01\x04\x04\x01\x05\x03\x03\x01\x05\x02\x01\x03\x04", // 𧐗
+ 0x27418: "\x05\x04\x02\x05\x02\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧐘
+ 0x27419: "\x02\x05\x01\x02\x01\x04\x05\x04\x05\x02\x03\x03\x01\x03\x04\x05\x03", // 𧐙
+ 0x2741a: "\x02\x05\x01\x02\x01\x04\x04\x01\x03\x01\x02\x02\x01\x04\x03\x03\x04", // 𧐚
+ 0x2741b: "\x02\x05\x01\x02\x01\x04\x04\x01\x02\x05\x01\x02\x05\x01\x03\x05\x04", // 𧐛
+ 0x2741c: "\x01\x02\x01\x04\x05\x03\x05\x03\x05\x05\x04\x02\x05\x01\x02\x01\x04", // 𧐜
+ 0x2741d: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x01\x04\x03\x01\x04\x04\x01\x02", // 𧐝
+ 0x2741e: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x02\x04\x01\x04\x03\x01\x01\x02", // 𧐞
+ 0x2741f: "\x02\x05\x01\x02\x01\x04\x03\x01\x05\x05\x04\x01\x04\x04\x05\x04\x04", // 𧐟
+ 0x27420: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x02\x05\x01\x02\x01\x04", // 𧐠
+ 0x27421: "\x01\x02\x01\x05\x02\x01\x05\x03\x05\x05\x04\x02\x05\x01\x02\x01\x04", // 𧐡
+ 0x27422: "\x02\x05\x01\x02\x01\x04\x04\x01\x02\x05\x01\x04\x05\x03\x01\x01\x05", // 𧐢
+ 0x27423: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x03\x05\x04\x02\x05\x01", // 𧐣
+ 0x27424: "\x02\x05\x01\x02\x01\x04\x04\x01\x05\x05\x04\x04\x05\x03\x01\x01\x02", // 𧐤
+ 0x27425: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x01\x05\x01\x01\x02\x01\x03\x04", // 𧐥
+ 0x27426: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x02\x02\x04\x03\x01\x05\x03\x04", // 𧐦
+ 0x27427: "\x01\x01\x01\x03\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧐧
+ 0x27428: "\x01\x02\x01\x03\x05\x01\x02\x01\x03\x05\x04\x02\x05\x01\x02\x01\x04", // 𧐨
+ 0x27429: "\x02\x05\x01\x02\x01\x04\x02\x05\x02\x03\x04\x01\x02\x05\x01\x02\x02", // 𧐩
+ 0x2742a: "\x02\x05\x01\x02\x01\x04\x02\x01\x05\x03\x01\x05\x01\x02\x01\x03\x04", // 𧐪
+ 0x2742b: "\x02\x05\x01\x02\x01\x04\x03\x05\x04\x05\x05\x02\x05\x01\x02\x01\x04", // 𧐫
+ 0x2742c: "\x02\x05\x01\x02\x01\x04\x02\x03\x04\x02\x05\x03\x04\x01\x01\x05\x04", // 𧐬
+ 0x2742d: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x03\x02\x03\x04\x03\x01\x03\x04", // 𧐭
+ 0x2742e: "\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02\x02\x05\x01\x02\x01\x04", // 𧐮
+ 0x2742f: "\x02\x05\x01\x02\x01\x03\x05\x04\x02\x05\x01\x02\x05\x01\x02\x01\x04", // 𧐯
+ 0x27430: "\x02\x05\x05\x04\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 𧐰
+ 0x27431: "\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 𧐱
+ 0x27432: "\x02\x05\x01\x02\x01\x04\x03\x05\x04\x02\x05\x02\x02\x01\x02\x05\x02", // 𧐲
+ 0x27433: "\x02\x05\x01\x02\x01\x04\x04\x01\x03\x05\x02\x02\x01\x05\x04\x05\x04", // 𧐳
+ 0x27434: "\x02\x05\x01\x02\x01\x04\x04\x04\x05\x03\x02\x01\x03\x02\x05\x01\x01", // 𧐴
+ 0x27435: "\x01\x02\x05\x01\x04\x03\x01\x04\x04\x01\x02\x02\x05\x01\x02\x01\x04", // 𧐵
+ 0x27436: "\x01\x03\x02\x01\x01\x02\x03\x04\x05\x03\x04\x02\x05\x01\x02\x01\x04", // 𧐶
+ 0x27437: "\x02\x05\x01\x02\x01\x04\x04\x01\x03\x01\x03\x04\x04\x03\x01\x02\x01", // 𧐷
+ 0x27438: "\x02\x05\x01\x02\x01\x04\x03\x05\x01\x02\x01\x02\x05\x01\x03\x03\x03", // 𧐸
+ 0x27439: "\x02\x05\x01\x02\x01\x04\x03\x01\x02\x03\x04\x03\x05\x04\x03\x05\x04", // 𧐹
+ 0x2743a: "\x02\x05\x01\x02\x01\x04\x05\x04\x02\x05\x01\x01\x02\x04\x05\x04", // 𧐺
+ 0x2743b: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𧐻
+ 0x2743c: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x02", // 𧐼
+ 0x2743d: "\x02\x05\x01\x02\x01\x04\x04\x04\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 𧐽
+ 0x2743e: "\x02\x05\x01\x02\x01\x04\x04\x01\x04\x03\x01\x02\x05\x01\x05\x02", // 𧐾
+ 0x2743f: "\x02\x05\x01\x02\x01\x04\x02\x05\x02\x04\x04\x05\x01\x01\x02\x03\x04", // 𧐿
+ 0x27440: "\x02\x05\x01\x02\x01\x04\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 𧑀
+ 0x27441: "\x02\x05\x01\x02\x01\x04\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 𧑁
+ 0x27442: "\x02\x05\x01\x02\x01\x04\x05\x01\x01\x05\x04\x01\x05\x03\x05", // 𧑂
+ 0x27443: "\x02\x05\x01\x02\x01\x04\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04", // 𧑃
+ 0x27444: "\x02\x05\x01\x02\x01\x04\x03\x02\x05\x02\x02\x01\x03\x02\x03\x03\x03\x04", // 𧑄
+ 0x27445: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x02\x01\x03\x04\x01\x05\x05\x03\x04", // 𧑅
+ 0x27446: "\x02\x05\x01\x02\x01\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𧑆
+ 0x27447: "\x02\x05\x01\x02\x01\x04\x03\x01\x02\x03\x04\x03\x05\x03\x01\x02\x03\x04", // 𧑇
+ 0x27448: "\x02\x05\x01\x02\x01\x04\x05\x01\x05\x03\x02\x02\x05\x01\x01\x01\x03\x04", // 𧑈
+ 0x27449: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧑉
+ 0x2744a: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x03\x04", // 𧑊
+ 0x2744b: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𧑋
+ 0x2744c: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 𧑌
+ 0x2744d: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x02\x01\x01\x02\x01\x02\x01\x01\x02", // 𧑍
+ 0x2744e: "\x05\x02\x02\x05\x02\x01\x01\x02\x03\x04\x05\x04\x02\x05\x01\x02\x01\x04", // 𧑎
+ 0x2744f: "\x02\x05\x01\x02\x01\x04\x05\x01\x03\x03\x02\x05\x01\x02\x05\x02\x01\x04", // 𧑏
+ 0x27450: "\x02\x05\x01\x02\x01\x04\x05\x04\x05\x02\x03\x02\x05\x03\x05\x02\x05\x01", // 𧑐
+ 0x27451: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x02\x01\x01\x01\x03\x04\x01\x01\x02", // 𧑑
+ 0x27452: "\x02\x05\x01\x02\x01\x04\x04\x01\x02\x05\x01\x05\x02\x01\x03\x01\x03\x04", // 𧑒
+ 0x27453: "\x02\x05\x01\x02\x01\x04\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04", // 𧑓
+ 0x27454: "\x02\x05\x01\x02\x01\x04\x05\x01\x01\x02\x04\x01\x03\x04\x04\x05\x04", // 𧑔
+ 0x27455: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x05\x05\x01\x02\x01\x04\x05\x04\x04", // 𧑕
+ 0x27456: "\x01\x02\x05\x02\x03\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧑖
+ 0x27457: "\x02\x05\x01\x02\x01\x04\x04\x04\x05\x04\x05\x04\x04\x02\x05\x01\x01\x02", // 𧑗
+ 0x27458: "\x04\x04\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03\x02\x05\x01\x02\x01\x04", // 𧑘
+ 0x27459: "\x02\x05\x01\x02\x01\x04\x04\x01\x02\x05\x01\x02\x03\x04\x01\x03\x05\x04", // 𧑙
+ 0x2745a: "\x02\x05\x01\x02\x01\x04\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x04\x04", // 𧑚
+ 0x2745b: "\x02\x05\x01\x02\x01\x04\x05\x01\x01\x02\x03\x02\x01\x01\x05\x05\x02\x01\x02", // 𧑛
+ 0x2745c: "\x02\x05\x01\x02\x01\x04\x01\x01\x02\x01\x01\x01\x02\x01\x01\x05\x01\x05", // 𧑜
+ 0x2745d: "\x01\x02\x01\x05\x05\x01\x03\x05\x03\x03\x03\x04\x02\x05\x01\x02\x01\x04", // 𧑝
+ 0x2745e: "\x02\x05\x01\x02\x01\x04\x04\x03\x01\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 𧑞
+ 0x2745f: "\x02\x05\x01\x02\x01\x04\x05\x02\x03\x05\x04\x01\x03\x01\x01\x02\x01", // 𧑟
+ 0x27460: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x01\x02\x04\x05\x01\x03\x02\x05\x01", // 𧑠
+ 0x27461: "\x02\x05\x01\x02\x01\x04\x01\x01\x02\x01\x01\x01\x02\x01\x05\x02\x01\x05", // 𧑡
+ 0x27462: "\x04\x01\x03\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x01\x02\x01", // 𧑢
+ 0x27463: "\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 𧑣
+ 0x27464: "\x03\x01\x01\x02\x03\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧑤
+ 0x27465: "\x03\x03\x05\x04\x01\x04\x04\x03\x01\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 𧑥
+ 0x27466: "\x02\x05\x01\x02\x01\x04\x03\x02\x04\x01\x01\x01\x02\x01\x05\x01\x03\x04", // 𧑦
+ 0x27467: "\x01\x03\x02\x05\x01\x01\x02\x01\x03\x03\x01\x02\x02\x05\x01\x02\x01\x04", // 𧑧
+ 0x27468: "\x01\x01\x01\x02\x05\x03\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧑨
+ 0x27469: "\x02\x05\x01\x02\x01\x04\x02\x05\x02\x02\x01\x01\x03\x05\x01\x05\x03\x04", // 𧑩
+ 0x2746a: "\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x04", // 𧑪
+ 0x2746b: "\x02\x05\x01\x02\x01\x04\x05\x04\x05\x04\x05\x04\x03\x04\x02\x04\x04\x04", // 𧑫
+ 0x2746c: "\x03\x02\x05\x02\x02\x01\x03\x02\x01\x05\x03\x04\x02\x05\x01\x02\x01\x04", // 𧑬
+ 0x2746d: "\x01\x02\x01\x02\x05\x01\x01\x02\x01\x02\x05\x01\x02\x05\x01\x02\x01\x04", // 𧑭
+ 0x2746e: "\x02\x05\x01\x02\x01\x04\x01\x03\x02\x05\x02\x02\x01\x03\x02\x05\x02\x02", // 𧑮
+ 0x2746f: "\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 𧑯
+ 0x27470: "\x02\x05\x01\x02\x01\x04\x01\x01\x01\x02\x05\x01\x01\x01\x03\x04\x05\x04", // 𧑰
+ 0x27471: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x02\x05\x01\x01\x02\x01\x02\x05\x01", // 𧑱
+ 0x27472: "\x02\x05\x01\x02\x01\x04\x04\x04\x05\x03\x05\x03\x02\x03\x02\x05\x01\x01", // 𧑲
+ 0x27473: "\x02\x05\x01\x02\x01\x04\x05\x05\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𧑳
+ 0x27474: "\x03\x05\x02\x05\x01\x05\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧑴
+ 0x27475: "\x02\x05\x01\x02\x01\x04\x02\x05\x02\x02\x05\x01\x01\x03\x05\x05\x04", // 𧑵
+ 0x27476: "\x02\x05\x01\x02\x01\x04\x04\x04\x05\x04\x05\x04\x04\x02\x05\x02\x01\x01", // 𧑶
+ 0x27477: "\x02\x05\x01\x02\x01\x04\x05\x01\x03\x02\x04\x01\x03\x04\x03\x01\x01\x02", // 𧑷
+ 0x27478: "\x03\x02\x05\x02\x02\x01\x03\x02\x03\x03\x03\x04\x02\x05\x01\x02\x01\x04", // 𧑸
+ 0x27479: "\x02\x05\x01\x02\x01\x04\x04\x03\x01\x02\x02\x04\x03\x01\x02\x05\x01\x01", // 𧑹
+ 0x2747a: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x02\x01\x05\x03\x01\x02\x01\x03\x04", // 𧑺
+ 0x2747b: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x02\x01\x05\x01\x01\x02\x01\x03\x04", // 𧑻
+ 0x2747c: "\x02\x04\x03\x02\x05\x02\x05\x01\x01\x05\x03\x04\x02\x05\x01\x02\x01\x04", // 𧑼
+ 0x2747d: "\x02\x05\x01\x02\x01\x04\x02\x04\x03\x04\x05\x02\x05\x01\x02\x01\x03\x04", // 𧑽
+ 0x2747e: "\x02\x05\x01\x02\x01\x04\x05\x05\x04\x04\x04\x04\x05\x03\x05\x02\x01\x05", // 𧑾
+ 0x2747f: "\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x01\x04", // 𧑿
+ 0x27480: "\x02\x05\x01\x02\x01\x04\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04", // 𧒀
+ 0x27481: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 𧒁
+ 0x27482: "\x03\x02\x05\x01\x05\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧒂
+ 0x27483: "\x04\x03\x01\x01\x01\x02\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧒃
+ 0x27484: "\x02\x05\x01\x02\x01\x04\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01", // 𧒄
+ 0x27485: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x01\x03\x04\x03\x04\x05\x04", // 𧒅
+ 0x27486: "\x02\x05\x01\x02\x01\x04\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x02\x04", // 𧒆
+ 0x27487: "\x02\x05\x01\x02\x01\x04\x03\x05\x03\x01\x02\x01\x03\x02\x05\x01\x01", // 𧒇
+ 0x27488: "\x01\x03\x05\x04\x02\x02\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧒈
+ 0x27489: "\x01\x03\x01\x02\x05\x01\x04\x03\x01\x01\x02\x04\x02\x05\x01\x02\x01\x04", // 𧒉
+ 0x2748a: "\x02\x05\x01\x02\x01\x04\x03\x01\x01\x03\x04\x02\x05\x01\x02\x05\x01\x01", // 𧒊
+ 0x2748b: "\x02\x05\x01\x02\x01\x04\x02\x02\x03\x01\x04\x02\x05\x01\x01\x01\x03\x05", // 𧒋
+ 0x2748c: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x02\x01\x03\x05\x04\x02\x05\x01", // 𧒌
+ 0x2748d: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x04\x02\x05\x01\x02\x05\x01\x02\x01\x04", // 𧒍
+ 0x2748e: "\x03\x01\x02\x01\x05\x03\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧒎
+ 0x2748f: "\x01\x03\x01\x01\x05\x03\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧒏
+ 0x27490: "\x02\x05\x01\x02\x01\x04\x04\x01\x03\x01\x03\x04\x03\x04\x03\x04\x01\x02\x01", // 𧒐
+ 0x27491: "\x02\x05\x01\x02\x01\x04\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05", // 𧒑
+ 0x27492: "\x03\x05\x04\x01\x01\x01\x02\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧒒
+ 0x27493: "\x02\x05\x01\x02\x01\x04\x01\x01\x02\x01\x01\x01\x02\x01\x04\x05\x04\x03\x04", // 𧒓
+ 0x27494: "\x01\x02\x04\x01\x03\x04\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧒔
+ 0x27495: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x05\x04\x04\x02\x05\x01\x02\x01\x04", // 𧒕
+ 0x27496: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x02\x05\x02\x05\x01\x04\x05\x04", // 𧒖
+ 0x27497: "\x02\x05\x01\x02\x01\x04\x01\x02\x03\x04\x03\x04\x01\x02\x05\x02\x05\x01\x01", // 𧒗
+ 0x27498: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x01\x01\x05\x02\x02\x05\x03\x04\x01\x02", // 𧒘
+ 0x27499: "\x03\x02\x05\x01\x05\x01\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧒙
+ 0x2749a: "\x01\x02\x01\x02\x05\x04\x05\x02\x03\x03\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 𧒚
+ 0x2749b: "\x02\x05\x01\x01\x05\x03\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧒛
+ 0x2749c: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x04", // 𧒜
+ 0x2749d: "\x05\x01\x03\x01\x02\x02\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧒝
+ 0x2749e: "\x02\x05\x01\x02\x01\x04\x02\x05\x04\x03\x01\x02\x03\x04\x01\x03\x05\x01\x01", // 𧒞
+ 0x2749f: "\x04\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧒟
+ 0x274a0: "\x02\x05\x01\x02\x01\x04\x04\x04\x05\x05\x04\x04\x03\x02\x05\x01\x01\x02", // 𧒠
+ 0x274a1: "\x04\x04\x05\x03\x01\x01\x02\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧒡
+ 0x274a2: "\x05\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧒢
+ 0x274a3: "\x01\x02\x01\x02\x05\x02\x04\x01\x04\x03\x01\x01\x02\x02\x05\x01\x02\x01\x04", // 𧒣
+ 0x274a4: "\x01\x02\x02\x01\x01\x04\x05\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧒤
+ 0x274a5: "\x05\x02\x02\x05\x02\x04\x01\x05\x03\x03\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 𧒥
+ 0x274a6: "\x03\x04\x03\x04\x04\x03\x01\x01\x01\x02\x03\x05\x04\x02\x05\x01\x02\x01\x04", // 𧒦
+ 0x274a7: "\x04\x04\x05\x04\x05\x04\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧒧
+ 0x274a8: "\x01\x02\x01\x02\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x01\x02\x01", // 𧒨
+ 0x274a9: "\x02\x05\x01\x02\x01\x04\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x02\x01\x01", // 𧒩
+ 0x274aa: "\x02\x05\x01\x02\x01\x04\x02\x05\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04\x01", // 𧒪
+ 0x274ab: "\x02\x05\x01\x02\x01\x04\x04\x04\x05\x03\x04\x04\x04\x04\x03\x05\x01\x01\x02", // 𧒫
+ 0x274ac: "\x02\x05\x01\x02\x01\x04\x03\x02\x05\x01\x01\x01\x05\x04\x01\x03\x05\x03\x04", // 𧒬
+ 0x274ad: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x02\x05\x03\x04\x04\x05\x04", // 𧒭
+ 0x274ae: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 𧒮
+ 0x274af: "\x02\x05\x01\x02\x01\x04\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𧒯
+ 0x274b0: "\x02\x05\x01\x02\x01\x04\x03\x03\x02\x02\x05\x02\x01\x03\x05\x03\x01\x03\x04", // 𧒰
+ 0x274b1: "\x02\x05\x01\x02\x01\x04\x04\x01\x05\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 𧒱
+ 0x274b2: "\x02\x05\x01\x02\x01\x04\x04\x01\x04\x03\x01\x03\x05\x01\x01\x02\x02\x03\x04", // 𧒲
+ 0x274b3: "\x02\x05\x01\x02\x01\x04\x04\x05\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x04", // 𧒳
+ 0x274b4: "\x02\x05\x01\x02\x01\x04\x04\x03\x01\x03\x02\x05\x01\x01\x01\x04\x05\x04", // 𧒴
+ 0x274b5: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x02\x05\x01\x03\x01\x02\x01\x05\x03\x04", // 𧒵
+ 0x274b6: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x02\x05\x01\x03\x05\x03\x04\x05\x03\x04", // 𧒶
+ 0x274b7: "\x02\x05\x01\x02\x01\x04\x02\x01\x03\x05\x04\x05\x04\x04\x03\x01\x02\x03\x04", // 𧒷
+ 0x274b8: "\x02\x05\x01\x02\x01\x04\x03\x01\x02\x03\x04\x04\x03\x03\x04\x04\x05\x04\x04", // 𧒸
+ 0x274b9: "\x02\x05\x01\x02\x01\x04\x03\x02\x05\x03\x04\x03\x01\x02\x03\x04\x01\x01\x05", // 𧒹
+ 0x274ba: "\x02\x05\x01\x02\x01\x04\x03\x02\x01\x05\x01\x01\x02\x05\x01\x02\x01\x05\x03", // 𧒺
+ 0x274bb: "\x02\x05\x01\x02\x01\x04\x03\x05\x03\x05\x01\x01\x02\x04\x03\x01\x01\x01\x02", // 𧒻
+ 0x274bc: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x01\x01\x01\x02\x05\x02\x03\x05\x05\x04", // 𧒼
+ 0x274bd: "\x02\x05\x01\x02\x01\x04\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x01", // 𧒽
+ 0x274be: "\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x04", // 𧒾
+ 0x274bf: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x01\x03\x04\x01\x01\x03\x05\x03\x04", // 𧒿
+ 0x274c0: "\x03\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x02\x01\x04", // 𧓀
+ 0x274c1: "\x02\x05\x01\x02\x01\x04\x03\x04\x04\x03\x04\x05\x04\x05\x04\x04\x03\x05\x04", // 𧓁
+ 0x274c2: "\x04\x01\x02\x05\x01\x04\x05\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧓂
+ 0x274c3: "\x02\x05\x01\x01\x03\x05\x03\x04\x05\x03\x05\x03\x04\x02\x05\x01\x02\x01\x04", // 𧓃
+ 0x274c4: "\x02\x05\x01\x02\x01\x04\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 𧓄
+ 0x274c5: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x02\x01\x01\x03\x01\x01\x05\x03\x04", // 𧓅
+ 0x274c6: "\x02\x05\x01\x02\x01\x04\x03\x02\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04", // 𧓆
+ 0x274c7: "\x02\x05\x01\x02\x01\x04\x05\x01\x03\x01\x02\x02\x01\x03\x04\x03\x05\x05\x04", // 𧓇
+ 0x274c8: "\x02\x05\x01\x02\x01\x04\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x02\x05", // 𧓈
+ 0x274c9: "\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01\x02\x05\x01\x02\x01\x04", // 𧓉
+ 0x274ca: "\x03\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧓊
+ 0x274cb: "\x02\x05\x01\x02\x01\x04\x01\x03\x02\x05\x01\x01\x02\x01\x01\x03\x05\x01\x02\x01", // 𧓋
+ 0x274cc: "\x02\x05\x01\x02\x01\x04\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x04\x03\x03\x04", // 𧓌
+ 0x274cd: "\x02\x05\x01\x02\x01\x04\x04\x04\x05\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𧓍
+ 0x274ce: "\x03\x02\x05\x01\x01\x03\x01\x02\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧓎
+ 0x274cf: "\x02\x05\x01\x02\x01\x04\x01\x02\x02\x01\x01\x01\x05\x04\x03\x02\x03\x04\x03\x04", // 𧓏
+ 0x274d0: "\x01\x03\x02\x05\x02\x02\x01\x03\x04\x01\x05\x05\x04\x02\x05\x01\x02\x01\x04", // 𧓐
+ 0x274d1: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧓑
+ 0x274d2: "\x02\x05\x01\x02\x01\x04\x03\x05\x04\x04\x04\x05\x01\x02\x05\x01\x02\x01\x03\x04", // 𧓒
+ 0x274d3: "\x02\x05\x01\x02\x01\x04\x05\x05\x04\x05\x05\x04\x01\x05\x05\x04\x05\x05\x04\x05", // 𧓓
+ 0x274d4: "\x04\x03\x01\x02\x03\x04\x01\x01\x02\x01\x03\x05\x01\x01\x02\x05\x01\x02\x01\x04", // 𧓔
+ 0x274d5: "\x01\x02\x05\x01\x01\x02\x03\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧓕
+ 0x274d6: "\x03\x05\x04\x01\x05\x02\x01\x05\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧓖
+ 0x274d7: "\x02\x05\x01\x02\x01\x04\x03\x03\x02\x01\x05\x03\x01\x05\x03\x05\x03\x05\x03\x04", // 𧓗
+ 0x274d8: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04\x01", // 𧓘
+ 0x274d9: "\x02\x05\x01\x02\x01\x04\x03\x03\x05\x04\x01\x04\x03\x05\x05\x04\x01\x02\x03\x04", // 𧓙
+ 0x274da: "\x04\x01\x02\x02\x01\x01\x04\x05\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧓚
+ 0x274db: "\x02\x05\x01\x02\x01\x04\x03\x05\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04", // 𧓛
+ 0x274dc: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x04\x05\x01\x03\x02\x05\x01\x01\x02\x03\x04", // 𧓜
+ 0x274dd: "\x02\x05\x01\x02\x01\x04\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x04", // 𧓝
+ 0x274de: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x03\x01\x01\x02", // 𧓞
+ 0x274df: "\x03\x02\x01\x01\x05\x01\x01\x02\x05\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧓟
+ 0x274e0: "\x02\x05\x01\x02\x01\x04\x01\x03\x05\x04\x01\x05\x02\x02\x05\x03\x04\x02\x05\x01", // 𧓠
+ 0x274e1: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x02\x02\x05\x03\x04\x01\x03\x01\x05\x03\x04", // 𧓡
+ 0x274e2: "\x03\x05\x01\x05\x02\x05\x01\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧓢
+ 0x274e3: "\x04\x01\x03\x05\x02\x02\x01\x01\x03\x02\x05\x02\x02\x01\x02\x05\x01\x02\x01\x04", // 𧓣
+ 0x274e4: "\x01\x02\x01\x03\x04\x02\x05\x01\x02\x01\x04\x05\x03\x04\x02\x05\x01\x02\x01\x04", // 𧓤
+ 0x274e5: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x01\x02\x01\x05\x05\x01\x02\x01\x05\x03\x04", // 𧓥
+ 0x274e6: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x01\x02\x05\x03\x01\x01\x02\x05\x02\x02\x01", // 𧓦
+ 0x274e7: "\x02\x05\x01\x02\x01\x04\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02", // 𧓧
+ 0x274e8: "\x01\x02\x05\x01\x02\x01\x04\x05\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧓨
+ 0x274e9: "\x02\x05\x01\x02\x01\x04\x02\x01\x03\x05\x04\x05\x04\x02\x05\x01\x01\x01\x03\x04", // 𧓩
+ 0x274ea: "\x02\x05\x01\x02\x01\x04\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x01\x05\x03\x04", // 𧓪
+ 0x274eb: "\x04\x04\x05\x04\x05\x04\x03\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧓫
+ 0x274ec: "\x02\x05\x01\x02\x01\x04\x03\x05\x02\x05\x03\x04\x02\x05\x01\x01\x01\x03\x05\x04", // 𧓬
+ 0x274ed: "\x02\x05\x01\x02\x01\x04\x05\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x02\x05\x02", // 𧓭
+ 0x274ee: "\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x02\x05\x01\x02\x01\x04", // 𧓮
+ 0x274ef: "\x02\x05\x01\x02\x01\x04\x03\x02\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04", // 𧓯
+ 0x274f0: "\x02\x05\x01\x02\x01\x04\x03\x05\x02\x05\x01\x03\x05\x03\x05\x02\x05\x01\x03\x05", // 𧓰
+ 0x274f1: "\x01\x02\x05\x01\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧓱
+ 0x274f2: "\x02\x05\x01\x02\x01\x04\x04\x03\x01\x01\x02\x01\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𧓲
+ 0x274f3: "\x02\x05\x01\x02\x01\x04\x03\x03\x01\x02\x03\x03\x01\x02\x02\x05\x01\x01\x01\x03\x04", // 𧓳
+ 0x274f4: "\x02\x05\x01\x02\x01\x04\x01\x04\x05\x02\x04\x01\x03\x04\x03\x01\x02\x01\x05\x04", // 𧓴
+ 0x274f5: "\x01\x02\x01\x02\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧓵
+ 0x274f6: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x02\x03\x05\x04\x01\x01\x01\x02\x04\x05\x04", // 𧓶
+ 0x274f7: "\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x01\x05\x03\x04\x02\x05\x01\x02\x01\x04", // 𧓷
+ 0x274f8: "\x02\x05\x01\x02\x01\x04\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x03\x04\x05\x02", // 𧓸
+ 0x274f9: "\x05\x01\x05\x01\x05\x02\x05\x01\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧓹
+ 0x274fa: "\x02\x05\x01\x02\x01\x04\x04\x04\x05\x03\x02\x01\x05\x01\x01\x03\x05\x04\x04\x04\x04", // 𧓺
+ 0x274fb: "\x02\x05\x01\x02\x01\x04\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 𧓻
+ 0x274fc: "\x02\x05\x01\x02\x01\x04\x04\x01\x03\x03\x01\x01\x02\x02\x02\x02\x01\x04\x04\x04\x04", // 𧓼
+ 0x274fd: "\x01\x03\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧓽
+ 0x274fe: "\x02\x05\x01\x02\x01\x04\x03\x05\x02\x05\x03\x04\x02\x05\x02\x02\x01\x02\x01\x05\x04", // 𧓾
+ 0x274ff: "\x01\x02\x01\x02\x05\x04\x05\x02\x03\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧓿
+ 0x27500: "\x02\x05\x01\x02\x01\x04\x02\x01\x01\x01\x05\x04\x04\x05\x03\x05\x01\x05\x05\x04", // 𧔀
+ 0x27501: "\x03\x01\x02\x05\x01\x02\x02\x05\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧔁
+ 0x27502: "\x04\x04\x05\x05\x04\x03\x01\x01\x02\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧔂
+ 0x27503: "\x04\x04\x05\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧔃
+ 0x27504: "\x01\x01\x02\x01\x05\x05\x04\x01\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧔄
+ 0x27505: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01\x02\x01\x05\x04", // 𧔅
+ 0x27506: "\x02\x05\x01\x02\x01\x01\x05\x01\x05\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧔆
+ 0x27507: "\x02\x05\x01\x02\x01\x04\x02\x05\x02\x01\x03\x02\x05\x02\x02\x01\x03\x02\x05\x02\x02", // 𧔇
+ 0x27508: "\x04\x03\x01\x03\x04\x02\x05\x02\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x02\x01\x04", // 𧔈
+ 0x27509: "\x02\x05\x01\x02\x01\x04\x03\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x03\x04", // 𧔉
+ 0x2750a: "\x02\x05\x01\x02\x01\x04\x04\x01\x03\x02\x05\x01\x01\x02\x01\x01\x03\x04\x01\x02\x01", // 𧔊
+ 0x2750b: "\x02\x05\x01\x02\x01\x04\x04\x01\x03\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x04", // 𧔋
+ 0x2750c: "\x02\x05\x01\x02\x01\x04\x03\x01\x02\x03\x04\x03\x05\x03\x03\x04\x02\x04\x01\x03\x04", // 𧔌
+ 0x2750d: "\x02\x05\x01\x02\x01\x04\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x02\x05", // 𧔍
+ 0x2750e: "\x02\x05\x01\x02\x01\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01", // 𧔎
+ 0x2750f: "\x01\x02\x01\x02\x05\x01\x05\x02\x03\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧔏
+ 0x27510: "\x01\x02\x01\x02\x02\x05\x03\x04\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧔐
+ 0x27511: "\x04\x03\x01\x03\x05\x03\x03\x03\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧔑
+ 0x27512: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01\x05\x05\x03\x04", // 𧔒
+ 0x27513: "\x01\x01\x02\x01\x05\x05\x04\x02\x03\x04\x04\x05\x04\x04\x03\x02\x05\x01\x02\x01\x04", // 𧔓
+ 0x27514: "\x03\x05\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧔔
+ 0x27515: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x02\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04", // 𧔕
+ 0x27516: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𧔖
+ 0x27517: "\x03\x02\x05\x01\x02\x01\x04\x03\x02\x05\x01\x02\x01\x04\x03\x02\x05\x01\x02\x01\x04", // 𧔗
+ 0x27518: "\x02\x05\x01\x02\x01\x04\x02\x05\x02\x02\x01\x01\x02\x01\x02\x05\x01\x03\x05\x03\x04", // 𧔘
+ 0x27519: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x01\x02\x02\x01\x03\x04\x02\x04\x01\x03\x04", // 𧔙
+ 0x2751a: "\x02\x05\x01\x02\x01\x04\x04\x04\x05\x03\x04\x03\x02\x05\x01\x01\x01\x03\x05\x01\x05", // 𧔚
+ 0x2751b: "\x02\x05\x01\x02\x01\x04\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01\x05\x02", // 𧔛
+ 0x2751c: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02\x02\x05\x01\x01", // 𧔜
+ 0x2751d: "\x02\x05\x01\x02\x01\x04\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 𧔝
+ 0x2751e: "\x01\x03\x03\x02\x05\x01\x01\x02\x03\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧔞
+ 0x2751f: "\x02\x05\x01\x02\x01\x04\x04\x03\x01\x01\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𧔟
+ 0x27520: "\x02\x05\x01\x02\x01\x04\x04\x03\x01\x01\x02\x01\x03\x01\x02\x03\x04\x01\x05\x05\x03\x04", // 𧔠
+ 0x27521: "\x05\x01\x03\x01\x02\x02\x01\x05\x03\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧔡
+ 0x27522: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x05\x03\x04\x01\x05\x03\x04\x02\x05\x01\x02\x01\x04", // 𧔢
+ 0x27523: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x01\x02\x03\x04\x05\x03\x02\x05\x01\x01\x01\x03\x04", // 𧔣
+ 0x27524: "\x02\x05\x01\x01\x01\x01\x01\x02\x03\x04\x03\x05\x05\x04\x02\x03\x04\x02\x05\x01\x02\x01\x04", // 𧔤
+ 0x27525: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04", // 𧔥
+ 0x27526: "\x02\x05\x01\x02\x01\x04\x01\x02\x02\x01\x02\x05\x01\x02\x01\x01\x03\x05\x04\x04\x04\x04", // 𧔦
+ 0x27527: "\x03\x05\x04\x01\x05\x02\x04\x05\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧔧
+ 0x27528: "\x05\x01\x05\x02\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧔨
+ 0x27529: "\x01\x02\x02\x05\x01\x05\x02\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧔩
+ 0x2752a: "\x02\x01\x02\x01\x02\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 𧔪
+ 0x2752b: "\x02\x05\x01\x02\x01\x04\x04\x01\x02\x05\x01\x02\x05\x01\x01\x02\x01\x02\x01\x01\x01\x02", // 𧔫
+ 0x2752c: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x01\x02\x04\x05\x01\x03\x02\x05\x01\x01\x02\x03\x04", // 𧔬
+ 0x2752d: "\x04\x03\x01\x02\x05\x03\x05\x03\x04\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧔭
+ 0x2752e: "\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧔮
+ 0x2752f: "\x01\x05\x01\x05\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧔯
+ 0x27530: "\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧔰
+ 0x27531: "\x03\x02\x01\x05\x01\x01\x02\x05\x03\x04\x01\x02\x05\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧔱
+ 0x27532: "\x04\x05\x02\x05\x01\x01\x04\x01\x03\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧔲
+ 0x27533: "\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧔳
+ 0x27534: "\x01\x02\x01\x02\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧔴
+ 0x27535: "\x01\x01\x02\x03\x04\x02\x05\x02\x02\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧔵
+ 0x27536: "\x03\x03\x05\x04\x01\x04\x04\x03\x03\x04\x04\x01\x03\x04\x03\x04\x02\x05\x01\x02\x01\x04", // 𧔶
+ 0x27537: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x04\x05\x04", // 𧔷
+ 0x27538: "\x02\x05\x01\x02\x01\x04\x03\x05\x01\x05\x01\x01\x02\x05\x02\x02\x05\x03\x04\x02\x05\x01", // 𧔸
+ 0x27539: "\x02\x05\x01\x02\x01\x04\x01\x03\x02\x05\x01\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x01", // 𧔹
+ 0x2753a: "\x02\x05\x01\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧔺
+ 0x2753b: "\x01\x05\x03\x05\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧔻
+ 0x2753c: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x01\x05\x03\x04", // 𧔼
+ 0x2753d: "\x02\x05\x01\x02\x01\x04\x03\x02\x05\x01\x05\x01\x01\x02\x05\x02\x02\x05\x03\x05\x02\x05\x01", // 𧔽
+ 0x2753e: "\x02\x05\x01\x02\x01\x04\x03\x01\x02\x03\x04\x03\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𧔾
+ 0x2753f: "\x02\x05\x01\x02\x01\x04\x03\x05\x01\x02\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𧔿
+ 0x27540: "\x02\x05\x01\x02\x01\x04\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x01\x02\x01", // 𧕀
+ 0x27541: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x01\x02\x02\x01", // 𧕁
+ 0x27542: "\x02\x05\x01\x02\x01\x04\x05\x05\x05\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 𧕂
+ 0x27543: "\x02\x05\x01\x02\x01\x04\x03\x05\x02\x05\x01\x01\x05\x03\x05\x03\x05\x02\x05\x01\x03\x05\x04", // 𧕃
+ 0x27544: "\x02\x05\x01\x02\x01\x04\x04\x01\x03\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01\x04\x05\x04\x04", // 𧕄
+ 0x27545: "\x02\x05\x01\x02\x01\x04\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 𧕅
+ 0x27546: "\x02\x05\x01\x02\x01\x04\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x04\x03\x01\x01\x05\x03\x04", // 𧕆
+ 0x27547: "\x02\x05\x01\x02\x01\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x01\x01\x01\x02", // 𧕇
+ 0x27548: "\x05\x01\x03\x01\x01\x02\x03\x04\x01\x02\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧕈
+ 0x27549: "\x02\x05\x01\x02\x01\x04\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04\x03\x04\x03\x04\x02\x05\x01", // 𧕉
+ 0x2754a: "\x02\x05\x01\x02\x01\x04\x04\x01\x01\x01\x02\x05\x01\x04\x03\x03\x04\x04\x03\x03\x04\x05\x04", // 𧕊
+ 0x2754b: "\x02\x05\x01\x02\x01\x04\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02", // 𧕋
+ 0x2754c: "\x02\x05\x01\x02\x01\x03\x05\x04\x02\x05\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧕌
+ 0x2754d: "\x02\x05\x01\x02\x01\x04\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x02\x05\x01\x03\x02\x05\x01", // 𧕍
+ 0x2754e: "\x04\x04\x01\x01\x05\x01\x05\x01\x02\x03\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧕎
+ 0x2754f: "\x01\x02\x01\x02\x03\x02\x05\x01\x05\x01\x04\x01\x04\x03\x01\x01\x02\x02\x05\x01\x02\x01\x04", // 𧕏
+ 0x27550: "\x01\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧕐
+ 0x27551: "\x05\x04\x05\x02\x03\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧕑
+ 0x27552: "\x05\x01\x05\x03\x02\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧕒
+ 0x27553: "\x02\x05\x01\x02\x01\x04\x02\x01\x02\x01\x03\x05\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𧕓
+ 0x27554: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧕔
+ 0x27555: "\x04\x01\x05\x02\x05\x01\x02\x01\x04\x04\x01\x05\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧕕
+ 0x27556: "\x02\x05\x01\x02\x01\x04\x01\x04\x05\x02\x04\x01\x03\x04\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 𧕖
+ 0x27557: "\x02\x05\x01\x02\x01\x04\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 𧕗
+ 0x27558: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x05\x01\x02\x01\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𧕘
+ 0x27559: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧕙
+ 0x2755a: "\x02\x05\x01\x02\x01\x04\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01\x02\x03\x04", // 𧕚
+ 0x2755b: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧕛
+ 0x2755c: "\x01\x01\x03\x05\x01\x01\x03\x05\x02\x05\x01\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧕜
+ 0x2755d: "\x04\x04\x05\x04\x05\x04\x04\x02\x05\x02\x02\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧕝
+ 0x2755e: "\x03\x01\x02\x03\x04\x05\x03\x01\x03\x02\x05\x01\x01\x03\x05\x05\x04\x02\x05\x01\x02\x01\x04", // 𧕞
+ 0x2755f: "\x02\x05\x01\x02\x01\x04\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𧕟
+ 0x27560: "\x03\x02\x05\x02\x02\x01\x03\x02\x03\x03\x03\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧕠
+ 0x27561: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x02\x02\x01\x03\x03\x02\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 𧕡
+ 0x27562: "\x04\x01\x04\x03\x01\x02\x05\x01\x02\x02\x05\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧕢
+ 0x27563: "\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x02\x05\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧕣
+ 0x27564: "\x03\x04\x04\x03\x05\x03\x03\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 𧕤
+ 0x27565: "\x02\x05\x01\x02\x01\x04\x03\x04\x04\x03\x05\x03\x03\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 𧕥
+ 0x27566: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧕦
+ 0x27567: "\x03\x02\x01\x05\x01\x01\x02\x05\x03\x04\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧕧
+ 0x27568: "\x02\x05\x01\x02\x01\x04\x01\x02\x01\x02\x01\x03\x05\x01\x03\x01\x02\x05\x01\x02\x05\x05\x03\x04", // 𧕨
+ 0x27569: "\x02\x05\x01\x02\x01\x04\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01", // 𧕩
+ 0x2756a: "\x02\x05\x01\x02\x01\x04\x01\x03\x01\x01\x03\x04\x05\x03\x05\x05\x04\x01\x02\x05\x03\x05\x01\x01", // 𧕪
+ 0x2756b: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x01\x02\x01", // 𧕫
+ 0x2756c: "\x02\x05\x01\x02\x01\x04\x04\x05\x02\x04\x02\x05\x01\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01", // 𧕬
+ 0x2756d: "\x02\x05\x01\x02\x01\x04\x01\x02\x02\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01", // 𧕭
+ 0x2756e: "\x02\x05\x01\x02\x01\x04\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𧕮
+ 0x2756f: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x04\x01\x02\x05\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 𧕯
+ 0x27570: "\x01\x02\x05\x01\x02\x04\x05\x03\x01\x01\x02\x05\x02\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧕰
+ 0x27571: "\x05\x02\x01\x05\x05\x05\x04\x05\x05\x04\x03\x01\x01\x02\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧕱
+ 0x27572: "\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x02\x05\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧕲
+ 0x27573: "\x02\x05\x01\x02\x01\x04\x04\x01\x05\x02\x05\x01\x03\x05\x04\x01\x04\x03\x01\x01\x01\x02\x03\x05\x04", // 𧕳
+ 0x27574: "\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x01\x02\x01\x04", // 𧕴
+ 0x27575: "\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧕵
+ 0x27576: "\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01\x05\x03\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧕶
+ 0x27577: "\x01\x02\x01\x02\x01\x01\x01\x03\x04\x02\x05\x01\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧕷
+ 0x27578: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x01\x01\x02\x01\x02\x05\x01\x02\x01\x04", // 𧕸
+ 0x27579: "\x01\x05\x03\x04\x01\x01\x01\x03\x04\x02\x05\x01\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧕹
+ 0x2757a: "\x02\x05\x01\x02\x01\x04\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x05\x04", // 𧕺
+ 0x2757b: "\x02\x05\x01\x02\x01\x04\x04\x01\x03\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01\x01\x01", // 𧕻
+ 0x2757c: "\x02\x01\x02\x01\x01\x03\x01\x02\x03\x03\x05\x03\x04\x05\x04\x01\x05\x04\x01\x02\x05\x01\x02\x01\x04", // 𧕼
+ 0x2757d: "\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧕽
+ 0x2757e: "\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧕾
+ 0x2757f: "\x03\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧕿
+ 0x27580: "\x05\x05\x04\x05\x05\x04\x01\x05\x05\x04\x05\x05\x04\x05\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧖀
+ 0x27581: "\x04\x01\x02\x02\x01\x01\x04\x05\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧖁
+ 0x27582: "\x02\x05\x02\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x02\x05\x02\x02\x01", // 𧖂
+ 0x27583: "\x02\x05\x01\x02\x01\x04\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x03\x04\x04", // 𧖃
+ 0x27584: "\x01\x03\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧖄
+ 0x27585: "\x04\x05\x02\x05\x01\x01\x01\x05\x01\x03\x02\x01\x02\x05\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧖅
+ 0x27586: "\x02\x05\x01\x02\x01\x04\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x01\x04\x03\x01\x01\x01\x02\x04\x05\x04", // 𧖆
+ 0x27587: "\x04\x01\x03\x05\x05\x05\x02\x05\x01\x05\x02\x01\x05\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x01\x02\x01\x04", // 𧖇
+ 0x27588: "\x02\x05\x01\x02\x01\x01\x05\x03\x05\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧖈
+ 0x27589: "\x05\x01\x03\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧖉
+ 0x2758a: "\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧖊
+ 0x2758b: "\x02\x05\x01\x02\x01\x04\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x02\x05\x01\x01\x02\x05\x01\x05\x02\x02", // 𧖋
+ 0x2758c: "\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01", // 𧖌
+ 0x2758d: "\x03\x02\x05\x01\x02\x01\x04\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𧖍
+ 0x2758e: "\x02\x05\x01\x02\x01\x01\x05\x03\x05\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧖎
+ 0x2758f: "\x05\x01\x03\x01\x02\x01\x01\x02\x01\x03\x01\x02\x03\x01\x02\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧖏
+ 0x27590: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 𧖐
+ 0x27591: "\x05\x01\x05\x01\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧖑
+ 0x27592: "\x02\x05\x01\x02\x01\x04\x01\x02\x05\x01\x02\x04\x05\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 𧖒
+ 0x27593: "\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧖓
+ 0x27594: "\x01\x01\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧖔
+ 0x27595: "\x03\x02\x05\x03\x04\x01\x01\x05\x03\x05\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧖕
+ 0x27596: "\x02\x05\x01\x02\x01\x04\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x02\x05\x02", // 𧖖
+ 0x27597: "\x02\x05\x01\x02\x01\x04\x04\x01\x02\x05\x01\x02\x05\x01\x05\x01\x05\x01\x02\x01\x03\x04\x03\x04\x03\x05\x03\x04", // 𧖗
+ 0x27598: "\x02\x05\x01\x02\x01\x04\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x03\x01\x01\x02", // 𧖘
+ 0x27599: "\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x04\x04\x04\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 𧖙
+ 0x2759a: "\x01\x02\x05\x01\x02\x04\x05\x03\x01\x01\x02\x05\x02\x01\x02\x03\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧖚
+ 0x2759b: "\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x05\x01\x03\x01\x05", // 𧖛
+ 0x2759c: "\x02\x05\x01\x02\x01\x04\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x03\x04\x01", // 𧖜
+ 0x2759d: "\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x02\x01\x04", // 𧖝
+ 0x2759e: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x04", // 𧖞
+ 0x2759f: "\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧖟
+ 0x275a0: "\x02\x01\x02\x01\x01\x03\x01\x02\x03\x03\x05\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x02\x05\x01\x02\x01\x04", // 𧖠
+ 0x275a1: "\x01\x02\x02\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧖡
+ 0x275a2: "\x02\x01\x02\x01\x01\x03\x01\x02\x03\x03\x05\x03\x04\x05\x04\x01\x05\x04\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧖢
+ 0x275a3: "\x02\x05\x01\x02\x01\x04\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x01\x04", // 𧖣
+ 0x275a4: "\x01\x02\x05\x01\x01\x02\x03\x04\x01\x02\x05\x01\x01\x02\x03\x04\x02\x05\x01\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧖤
+ 0x275a5: "\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x04\x05\x01\x02\x03\x04\x01\x02\x03\x04\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 𧖥
+ 0x275a6: "\x03\x01\x05\x05\x04\x01\x04\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x01\x04", // 𧖦
+ 0x275a7: "\x03\x02\x05\x02\x02\x01\x01\x02", // 𧖧
+ 0x275a8: "\x03\x02\x05\x02\x02\x01\x01\x05", // 𧖨
+ 0x275a9: "\x03\x02\x05\x02\x02\x01\x05\x03", // 𧖩
+ 0x275aa: "\x03\x02\x05\x02\x02\x01\x03\x05\x04", // 𧖪
+ 0x275ab: "\x03\x02\x05\x02\x02\x01\x05\x01\x03\x04", // 𧖫
+ 0x275ac: "\x01\x02\x01\x01\x03\x02\x05\x02\x02\x01", // 𧖬
+ 0x275ad: "\x02\x01\x02\x01\x03\x02\x05\x02\x02\x01", // 𧖭
+ 0x275ae: "\x03\x02\x05\x02\x02\x01\x02\x05\x01\x01", // 𧖮
+ 0x275af: "\x01\x03\x02\x04\x03\x02\x05\x02\x02\x01", // 𧖯
+ 0x275b0: "\x03\x02\x05\x02\x02\x01\x03\x05\x03\x05\x02", // 𧖰
+ 0x275b1: "\x03\x02\x05\x02\x02\x01\x03\x05\x03\x05\x02", // 𧖱
+ 0x275b2: "\x03\x02\x05\x02\x02\x01\x03\x01\x02\x03\x04", // 𧖲
+ 0x275b3: "\x02\x05\x01\x02\x05\x01\x03\x02\x05\x02\x02\x01", // 𧖳
+ 0x275b4: "\x03\x03\x03\x05\x03\x04\x03\x02\x05\x02\x02\x01", // 𧖴
+ 0x275b5: "\x03\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x03\x05", // 𧖵
+ 0x275b6: "\x04\x04\x01\x04\x05\x03\x05\x03\x02\x05\x02\x02\x01", // 𧖶
+ 0x275b7: "\x03\x02\x05\x02\x02\x01\x05\x03\x04\x04\x05\x04\x04", // 𧖷
+ 0x275b8: "\x02\x05\x03\x05\x02\x05\x01\x03\x02\x05\x02\x02\x01", // 𧖸
+ 0x275b9: "\x03\x02\x05\x02\x02\x01\x01\x03\x05\x03\x03\x03\x04", // 𧖹
+ 0x275ba: "\x03\x05\x04\x01\x04\x05\x03\x05\x03\x02\x05\x02\x02\x01", // 𧖺
+ 0x275bb: "\x03\x02\x05\x02\x02\x01\x01\x02\x05\x01\x01\x05\x03\x04", // 𧖻
+ 0x275bc: "\x03\x02\x05\x02\x02\x01\x03\x05\x04\x03\x04\x02\x05\x01", // 𧖼
+ 0x275bd: "\x02\x05\x01\x01\x03\x05\x01\x01\x03\x02\x05\x02\x02\x01", // 𧖽
+ 0x275be: "\x03\x02\x05\x02\x02\x01\x05\x02\x04\x01\x03\x04\x05\x02", // 𧖾
+ 0x275bf: "\x03\x02\x05\x02\x02\x01\x02\x05\x01\x01\x03\x01\x03\x02", // 𧖿
+ 0x275c0: "\x03\x02\x05\x02\x02\x01\x01\x02\x02\x01\x01\x01\x03\x05\x05", // 𧗀
+ 0x275c1: "\x05\x01\x01\x01\x01\x02\x03\x03\x03\x03\x02\x05\x02\x02\x01", // 𧗁
+ 0x275c2: "\x03\x02\x05\x02\x02\x01\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 𧗂
+ 0x275c3: "\x03\x03\x03\x05\x01\x01\x01\x01\x02\x03\x02\x05\x02\x02\x01", // 𧗃
+ 0x275c4: "\x01\x02\x05\x01\x02\x05\x03\x04\x03\x02\x05\x02\x02\x01", // 𧗄
+ 0x275c5: "\x03\x02\x05\x02\x02\x01\x01\x02\x02\x01\x01\x01\x02\x03\x04", // 𧗅
+ 0x275c6: "\x01\x02\x01\x02\x05\x02\x05\x03\x04\x01\x03\x02\x05\x02\x02\x01", // 𧗆
+ 0x275c7: "\x05\x05\x04\x05\x05\x04\x01\x03\x02\x05\x02\x02\x01\x05\x03\x04", // 𧗇
+ 0x275c8: "\x03\x02\x05\x02\x02\x01\x01\x03\x01\x01\x05\x03\x04\x01\x02\x04", // 𧗈
+ 0x275c9: "\x04\x04\x01\x01\x02\x05\x01\x01\x02\x04\x03\x02\x05\x02\x02\x01", // 𧗉
+ 0x275ca: "\x05\x01\x01\x01\x02\x01\x04\x04\x04\x04\x03\x02\x05\x02\x02\x01", // 𧗊
+ 0x275cb: "\x03\x02\x05\x02\x02\x01\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 𧗋
+ 0x275cc: "\x03\x02\x05\x02\x02\x01\x02\x01\x05\x03\x01\x05\x03\x04\x03\x01\x02", // 𧗌
+ 0x275cd: "\x04\x03\x01\x01\x02\x01\x02\x05\x02\x02\x01\x03\x02\x05\x02\x02\x01", // 𧗍
+ 0x275ce: "\x01\x02\x01\x02\x04\x04\x01\x02\x05\x01\x01\x01\x03\x02\x05\x02\x02\x01", // 𧗎
+ 0x275cf: "\x03\x02\x05\x02\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𧗏
+ 0x275d0: "\x03\x02\x05\x02\x02\x01\x01\x02\x01\x02\x02\x01\x01\x01\x03\x05\x04", // 𧗐
+ 0x275d1: "\x01\x03\x04\x04\x03\x01\x01\x02\x02\x01\x05\x04\x03\x02\x05\x02\x02\x01", // 𧗑
+ 0x275d2: "\x05\x05\x04\x05\x05\x04\x01\x03\x04\x03\x02\x05\x02\x02\x01\x05\x03\x04", // 𧗒
+ 0x275d3: "\x05\x05\x04\x05\x05\x04\x01\x03\x04\x05\x03\x04\x03\x02\x05\x02\x02\x01", // 𧗓
+ 0x275d4: "\x03\x02\x05\x02\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x02\x05", // 𧗔
+ 0x275d5: "\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x03\x02\x05\x02\x02\x01", // 𧗕
+ 0x275d6: "\x01\x03\x02\x05\x01\x01\x03\x05\x04\x01\x01\x03\x04\x04\x03\x02\x05\x02\x02\x01", // 𧗖
+ 0x275d7: "\x03\x02\x05\x02\x02\x01\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02", // 𧗗
+ 0x275d8: "\x01\x02\x01\x02\x03\x01\x01\x02\x05\x02\x02\x05\x01\x01\x01\x03\x02\x05\x02\x02\x01", // 𧗘
+ 0x275d9: "\x05\x01\x01\x01\x01\x02\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x05\x02\x02\x01", // 𧗙
+ 0x275da: "\x05\x01\x01\x01\x01\x02\x01\x02\x05\x03\x04\x01\x02\x05\x03\x04\x03\x02\x05\x02\x02\x01", // 𧗚
+ 0x275db: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x03\x05\x04\x01\x05\x02\x03\x02\x05\x02\x02\x01", // 𧗛
+ 0x275dc: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x03\x05\x04\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x02\x05\x02\x02\x01", // 𧗜
+ 0x275dd: "\x03\x03\x02\x03\x05\x01\x01\x02", // 𧗝
+ 0x275de: "\x03\x03\x02\x03\x02\x01\x01\x02", // 𧗞
+ 0x275df: "\x03\x03\x02\x03\x04\x01\x01\x02", // 𧗟
+ 0x275e0: "\x03\x03\x02\x04\x01\x01\x01\x02", // 𧗠
+ 0x275e1: "\x03\x03\x02\x01\x03\x02\x01\x01\x02", // 𧗡
+ 0x275e2: "\x03\x03\x02\x01\x03\x05\x01\x01\x02", // 𧗢
+ 0x275e3: "\x03\x03\x02\x02\x05\x02\x01\x01\x02", // 𧗣
+ 0x275e4: "\x03\x03\x02\x03\x01\x03\x01\x01\x02", // 𧗤
+ 0x275e5: "\x03\x03\x02\x01\x02\x01\x01\x01\x02", // 𧗥
+ 0x275e6: "\x03\x03\x02\x01\x01\x03\x02\x01\x01\x02", // 𧗦
+ 0x275e7: "\x03\x03\x02\x02\x05\x01\x01\x01\x01\x02", // 𧗧
+ 0x275e8: "\x03\x03\x02\x01\x05\x03\x05\x01\x01\x02", // 𧗨
+ 0x275e9: "\x01\x03\x02\x04\x03\x03\x02\x01\x01\x02", // 𧗩
+ 0x275ea: "\x03\x03\x02\x01\x02\x01\x02\x01\x01\x01\x02", // 𧗪
+ 0x275eb: "\x03\x03\x02\x03\x04\x01\x03\x05\x04\x01\x01\x02", // 𧗫
+ 0x275ec: "\x03\x03\x02\x02\x05\x02\x01\x03\x05\x01\x01\x02", // 𧗬
+ 0x275ed: "\x03\x03\x02\x01\x01\x01\x05\x02\x03\x01\x01\x02", // 𧗭
+ 0x275ee: "\x03\x03\x02\x05\x02\x01\x02\x05\x01\x01\x01\x02", // 𧗮
+ 0x275ef: "\x03\x03\x02\x02\x04\x03\x01\x03\x05\x01\x01\x02", // 𧗯
+ 0x275f0: "\x03\x03\x02\x02\x03\x04\x01\x03\x04\x01\x01\x02", // 𧗰
+ 0x275f1: "\x03\x03\x02\x04\x03\x01\x02\x03\x04\x01\x01\x02", // 𧗱
+ 0x275f2: "\x03\x03\x02\x02\x05\x02\x01\x01\x02\x01\x01\x01\x02", // 𧗲
+ 0x275f3: "\x03\x03\x02\x04\x01\x01\x01\x02\x05\x01\x01\x01\x02", // 𧗳
+ 0x275f4: "\x03\x03\x02\x05\x04\x02\x05\x01\x01\x02\x01\x01\x02", // 𧗴
+ 0x275f5: "\x03\x03\x02\x04\x01\x05\x05\x04\x01\x02\x01\x01\x02", // 𧗵
+ 0x275f6: "\x03\x03\x02\x04\x01\x04\x03\x01\x01\x02\x01\x01\x02", // 𧗶
+ 0x275f7: "\x03\x03\x02\x01\x02\x04\x01\x03\x04\x04\x01\x01\x02", // 𧗷
+ 0x275f8: "\x03\x03\x02\x01\x05\x03\x04\x01\x05\x03\x04\x01\x01\x02", // 𧗸
+ 0x275f9: "\x03\x03\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x01\x02", // 𧗹
+ 0x275fa: "\x03\x03\x02\x03\x04\x05\x04\x04\x05\x04\x04\x01\x01\x02", // 𧗺
+ 0x275fb: "\x03\x03\x02\x03\x05\x01\x01\x01\x03\x04\x05\x01\x01\x02", // 𧗻
+ 0x275fc: "\x03\x03\x02\x02\x05\x02\x05\x05\x04\x02\x03\x04\x01\x01\x02", // 𧗼
+ 0x275fd: "\x03\x03\x02\x03\x05\x02\x05\x03\x04\x01\x03\x04\x01\x01\x02", // 𧗽
+ 0x275fe: "\x03\x02\x02\x03\x05\x02\x05\x01\x01\x02\x01\x03\x04\x01\x01\x02", // 𧗾
+ 0x275ff: "\x03\x03\x02\x04\x01\x05\x05\x04\x04\x01\x03\x04\x01\x02\x01\x01\x02", // 𧗿
+ 0x27600: "\x03\x03\x02\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04\x01\x01\x02", // 𧘀
+ 0x27601: "\x03\x03\x02\x02\x05\x01\x01\x02\x05\x02\x01\x01\x03\x05\x01\x01\x02", // 𧘁
+ 0x27602: "\x03\x03\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01\x01\x01\x02", // 𧘂
+ 0x27603: "\x03\x03\x02\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x01\x01\x02", // 𧘃
+ 0x27604: "\x03\x03\x02\x05\x05\x05\x01\x03\x02\x05\x01\x01\x01\x01\x02\x04\x01\x01\x02", // 𧘄
+ 0x27605: "\x03\x03\x02\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x01\x01\x02", // 𧘅
+ 0x27606: "\x03\x03\x02\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x01\x01\x02\x01\x02\x01\x01\x01\x02", // 𧘆
+ 0x27607: "\x03\x05\x03\x04", // 𧘇
+ 0x27608: "\x04\x05\x02\x03\x04\x05\x02", // 𧘈
+ 0x27609: "\x04\x01\x03\x05\x03\x04\x02\x05", // 𧘉
+ 0x2760a: "\x04\x01\x03\x05\x03\x04\x03\x05", // 𧘊
+ 0x2760b: "\x04\x05\x02\x03\x04\x03\x05", // 𧘋
+ 0x2760c: "\x04\x05\x02\x03\x04\x05\x03", // 𧘌
+ 0x2760d: "\x04\x05\x02\x03\x04\x01\x02\x01", // 𧘍
+ 0x2760e: "\x04\x01\x01\x01\x05\x03\x05\x03\x04", // 𧘎
+ 0x2760f: "\x04\x05\x02\x03\x04\x05\x01\x05", // 𧘏
+ 0x27610: "\x04\x05\x02\x03\x04\x03\x01\x05", // 𧘐
+ 0x27611: "\x04\x05\x02\x03\x04\x03\x05\x04", // 𧘑
+ 0x27612: "\x04\x05\x02\x03\x04\x01\x03\x05", // 𧘒
+ 0x27613: "\x04\x05\x02\x03\x04\x01\x03\x04", // 𧘓
+ 0x27614: "\x04\x05\x02\x03\x04\x01\x02\x04", // 𧘔
+ 0x27615: "\x04\x05\x02\x03\x04\x02\x01\x01", // 𧘕
+ 0x27616: "\x04\x05\x02\x03\x04\x05\x03\x04", // 𧘖
+ 0x27617: "\x02\x05\x01\x04\x01\x03\x05\x03\x04", // 𧘗
+ 0x27618: "\x04\x01\x01\x01\x02\x03\x05\x03\x04", // 𧘘
+ 0x27619: "\x04\x01\x01\x03\x04\x03\x05\x03\x04", // 𧘙
+ 0x2761a: "\x04\x05\x02\x03\x04\x01\x01\x05", // 𧘚
+ 0x2761b: "\x04\x05\x02\x03\x04\x01\x05\x05", // 𧘛
+ 0x2761c: "\x04\x05\x02\x03\x04\x03\x01\x02", // 𧘜
+ 0x2761d: "\x04\x01\x03\x01\x01\x05\x03\x05\x03\x04", // 𧘝
+ 0x2761e: "\x04\x05\x02\x03\x04\x04\x04\x01\x02", // 𧘞
+ 0x2761f: "\x04\x05\x02\x03\x04\x01\x02\x05\x02", // 𧘟
+ 0x27620: "\x04\x01\x03\x05\x05\x03\x03\x05\x03\x04", // 𧘠
+ 0x27621: "\x04\x05\x02\x03\x04\x02\x03\x04\x03", // 𧘡
+ 0x27622: "\x04\x05\x02\x03\x04\x01\x05\x05\x01", // 𧘢
+ 0x27623: "\x04\x05\x02\x03\x04\x03\x05\x05\x04", // 𧘣
+ 0x27624: "\x04\x05\x02\x03\x04\x03\x05\x05\x04", // 𧘤
+ 0x27625: "\x04\x05\x02\x03\x04\x05\x02\x01\x01", // 𧘥
+ 0x27626: "\x04\x01\x01\x01\x02\x01\x03\x05\x03\x04", // 𧘦
+ 0x27627: "\x04\x05\x02\x03\x04\x03\x01\x01\x05", // 𧘧
+ 0x27628: "\x04\x01\x05\x01\x05\x02\x03\x05\x03\x04", // 𧘨
+ 0x27629: "\x04\x01\x05\x03\x04\x01\x03\x05\x03\x04", // 𧘩
+ 0x2762a: "\x04\x05\x02\x03\x04\x01\x05\x02\x03", // 𧘪
+ 0x2762b: "\x04\x01\x05\x02\x03\x01\x03\x05\x03\x04", // 𧘫
+ 0x2762c: "\x04\x05\x02\x03\x04\x01\x03\x01\x02", // 𧘬
+ 0x2762d: "\x04\x01\x03\x04\x01\x05\x03\x05\x03\x04", // 𧘭
+ 0x2762e: "\x04\x01\x03\x04\x05\x02\x03\x05\x03\x04", // 𧘮
+ 0x2762f: "\x04\x01\x03\x05\x03\x04\x02\x05\x01\x01", // 𧘯
+ 0x27630: "\x03\x01\x01\x02\x01\x03\x05\x03\x04", // 𧘰
+ 0x27631: "\x04\x05\x02\x03\x04\x01\x05\x03\x05", // 𧘱
+ 0x27632: "\x04\x05\x02\x03\x04\x02\x01\x02\x01", // 𧘲
+ 0x27633: "\x04\x01\x03\x04\x03\x04\x03\x05\x03\x04", // 𧘳
+ 0x27634: "\x01\x02\x05\x02\x04\x01\x03\x05\x03\x04", // 𧘴
+ 0x27635: "\x04\x05\x02\x03\x04\x01\x03\x05\x04", // 𧘵
+ 0x27636: "\x04\x05\x02\x03\x04\x03\x01\x03\x04", // 𧘶
+ 0x27637: "\x04\x05\x02\x03\x04\x03\x03\x02\x04", // 𧘷
+ 0x27638: "\x04\x05\x02\x03\x04\x01\x05\x02\x05", // 𧘸
+ 0x27639: "\x04\x05\x02\x03\x04\x01\x03\x04\x04", // 𧘹
+ 0x2763a: "\x04\x05\x02\x03\x04\x03\x05\x05\x04", // 𧘺
+ 0x2763b: "\x04\x05\x02\x03\x04\x03\x03\x01\x02", // 𧘻
+ 0x2763c: "\x04\x01\x02\x05\x02\x01\x03\x05\x03\x04", // 𧘼
+ 0x2763d: "\x05\x03\x01\x05\x04\x04\x01\x03\x05\x03\x04", // 𧘽
+ 0x2763e: "\x04\x05\x02\x03\x04\x01\x05\x03\x05\x03\x04", // 𧘾
+ 0x2763f: "\x04\x05\x02\x03\x04\x01\x02\x01\x02\x01", // 𧘿
+ 0x27640: "\x04\x05\x02\x03\x04\x04\x01\x04\x03\x01", // 𧙀
+ 0x27641: "\x02\x01\x02\x01\x03\x05\x04\x01\x03\x05\x03\x04", // 𧙁
+ 0x27642: "\x04\x05\x02\x03\x04\x05\x01\x05\x03\x02", // 𧙂
+ 0x27643: "\x04\x01\x01\x02\x05\x01\x02\x03\x05\x03\x04", // 𧙃
+ 0x27644: "\x04\x05\x02\x03\x04\x01\x02\x03\x04\x01", // 𧙄
+ 0x27645: "\x04\x05\x02\x03\x04\x01\x02\x05\x01\x05", // 𧙅
+ 0x27646: "\x04\x05\x02\x03\x04\x03\x03\x05\x04\x04", // 𧙆
+ 0x27647: "\x04\x05\x02\x03\x04\x04\x04\x05\x03\x05", // 𧙇
+ 0x27648: "\x04\x05\x02\x03\x04\x05\x01\x02\x05\x01", // 𧙈
+ 0x27649: "\x04\x01\x05\x02\x02\x05\x02\x03\x05\x03\x04", // 𧙉
+ 0x2764a: "\x04\x05\x02\x03\x04\x02\x05\x05\x01\x01", // 𧙊
+ 0x2764b: "\x04\x05\x02\x03\x04\x02\x05\x01\x03\x04", // 𧙋
+ 0x2764c: "\x04\x01\x03\x05\x03\x04\x03\x05\x05\x01\x05", // 𧙌
+ 0x2764d: "\x03\x01\x01\x03\x04\x04\x01\x03\x05\x03\x04", // 𧙍
+ 0x2764e: "\x04\x01\x03\x05\x02\x05\x01\x03\x05\x03\x04", // 𧙎
+ 0x2764f: "\x04\x01\x02\x05\x01\x02\x01\x03\x05\x03\x04", // 𧙏
+ 0x27650: "\x01\x03\x04\x01\x02\x04\x01\x03\x05\x03\x04", // 𧙐
+ 0x27651: "\x01\x02\x05\x01\x02\x04\x01\x03\x05\x03\x04", // 𧙑
+ 0x27652: "\x04\x05\x02\x03\x04\x01\x01\x01\x03\x02", // 𧙒
+ 0x27653: "\x04\x05\x02\x03\x04\x03\x01\x02\x01\x01", // 𧙓
+ 0x27654: "\x04\x05\x02\x03\x04\x05\x04\x01\x02\x01", // 𧙔
+ 0x27655: "\x04\x05\x02\x03\x04\x01\x01\x02\x03\x04", // 𧙕
+ 0x27656: "\x04\x05\x02\x03\x04\x01\x02\x02\x05\x01", // 𧙖
+ 0x27657: "\x04\x05\x02\x03\x04\x01\x03\x02\x05\x01", // 𧙗
+ 0x27658: "\x03\x05\x05\x01\x05\x04\x01\x03\x05\x03\x04", // 𧙘
+ 0x27659: "\x04\x01\x02\x05\x02\x03\x05\x03\x04", // 𧙙
+ 0x2765a: "\x04\x01\x03\x05\x03\x04\x03\x05\x01\x01\x02", // 𧙚
+ 0x2765b: "\x04\x05\x02\x03\x04\x01\x03\x02\x05\x02", // 𧙛
+ 0x2765c: "\x04\x01\x03\x04\x01\x04\x01\x03\x05\x03\x04", // 𧙜
+ 0x2765d: "\x04\x05\x02\x03\x04\x03\x03\x01\x02\x04", // 𧙝
+ 0x2765e: "\x04\x05\x02\x03\x04\x01\x02\x05\x02\x03\x04", // 𧙞
+ 0x2765f: "\x04\x05\x02\x03\x04\x02\x05\x01\x01\x05\x03", // 𧙟
+ 0x27660: "\x04\x05\x02\x03\x04\x01\x03\x04\x05\x03\x04", // 𧙠
+ 0x27661: "\x04\x05\x02\x03\x04\x04\x01\x03\x02\x03\x04", // 𧙡
+ 0x27662: "\x04\x05\x02\x03\x04\x01\x01\x02\x01\x05\x04", // 𧙢
+ 0x27663: "\x04\x05\x02\x03\x04\x01\x05\x01\x05\x03\x04", // 𧙣
+ 0x27664: "\x04\x05\x02\x03\x04\x03\x05\x01\x02\x03\x04", // 𧙤
+ 0x27665: "\x04\x05\x02\x03\x04\x02\x05\x01\x02\x05\x01", // 𧙥
+ 0x27666: "\x04\x01\x05\x02\x02\x05\x02\x03\x04\x03\x05\x03\x04", // 𧙦
+ 0x27667: "\x04\x05\x02\x03\x04\x01\x01\x03\x01\x01\x02", // 𧙧
+ 0x27668: "\x03\x02\x01\x01\x02\x01\x04\x01\x03\x05\x03\x04", // 𧙨
+ 0x27669: "\x04\x01\x01\x03\x05\x04\x02\x02\x03\x05\x03\x04", // 𧙩
+ 0x2766a: "\x04\x01\x02\x05\x02\x05\x01\x01\x03\x05\x03\x04", // 𧙪
+ 0x2766b: "\x04\x05\x02\x03\x04\x01\x02\x02\x01\x01\x01", // 𧙫
+ 0x2766c: "\x04\x01\x02\x05\x02\x01\x04\x01\x03\x05\x03\x04", // 𧙬
+ 0x2766d: "\x05\x01\x05\x05\x01\x05\x04\x01\x03\x05\x03\x04", // 𧙭
+ 0x2766e: "\x04\x05\x02\x03\x04\x04\x03\x01\x03\x05\x02\x02", // 𧙮
+ 0x2766f: "\x04\x03\x01\x01\x03\x04\x04\x01\x03\x05\x03\x04", // 𧙯
+ 0x27670: "\x04\x01\x01\x02\x01\x03\x04\x03\x05\x03\x04", // 𧙰
+ 0x27671: "\x04\x05\x02\x03\x04\x03\x05\x01\x02\x05\x02", // 𧙱
+ 0x27672: "\x04\x05\x02\x03\x04\x01\x02\x01\x03\x01\x05", // 𧙲
+ 0x27673: "\x03\x04\x01\x02\x05\x01\x04\x01\x03\x05\x03\x04", // 𧙳
+ 0x27674: "\x04\x01\x02\x05\x01\x01\x04\x01\x03\x05\x03\x04", // 𧙴
+ 0x27675: "\x04\x01\x05\x02\x02\x01\x03\x04\x03\x05\x03\x04", // 𧙵
+ 0x27676: "\x04\x04\x05\x01\x01\x02\x04\x01\x03\x05\x03\x04", // 𧙶
+ 0x27677: "\x04\x05\x02\x03\x04\x01\x03\x05\x04\x02\x02", // 𧙷
+ 0x27678: "\x04\x05\x02\x03\x04\x01\x02\x05\x04\x04\x01", // 𧙸
+ 0x27679: "\x04\x05\x02\x03\x04\x03\x02\x05\x02\x05\x01", // 𧙹
+ 0x2767a: "\x04\x05\x02\x03\x04\x03\x03\x01\x02\x05\x01", // 𧙺
+ 0x2767b: "\x04\x05\x02\x03\x04\x05\x01\x01\x01\x01\x02", // 𧙻
+ 0x2767c: "\x04\x05\x02\x03\x04\x01\x03\x02\x01\x02\x01", // 𧙼
+ 0x2767d: "\x04\x05\x02\x03\x04\x02\x05\x01\x02\x01\x04", // 𧙽
+ 0x2767e: "\x03\x02\x02\x01\x05\x04\x04\x01\x03\x05\x03\x04", // 𧙾
+ 0x2767f: "\x04\x05\x02\x03\x04\x04\x01\x03\x05\x03\x04", // 𧙿
+ 0x27680: "\x04\x05\x02\x03\x04\x03\x01\x05\x05\x04\x01\x04", // 𧚀
+ 0x27681: "\x04\x05\x02\x03\x04\x04\x04\x05\x01\x01\x03\x05", // 𧚁
+ 0x27682: "\x04\x05\x02\x03\x04\x01\x01\x02\x01\x01\x03\x02", // 𧚂
+ 0x27683: "\x04\x05\x02\x03\x04\x03\x05\x05\x04\x02\x03\x04", // 𧚃
+ 0x27684: "\x04\x05\x02\x03\x04\x03\x01\x02\x01\x05\x03\x04", // 𧚄
+ 0x27685: "\x04\x05\x02\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 𧚅
+ 0x27686: "\x04\x05\x02\x03\x04\x01\x02\x04\x05\x05\x02\x01", // 𧚆
+ 0x27687: "\x04\x05\x02\x03\x04\x03\x05\x02\x05\x01\x03\x05", // 𧚇
+ 0x27688: "\x04\x05\x02\x03\x04\x05\x01\x05\x04\x05\x04\x04", // 𧚈
+ 0x27689: "\x04\x05\x02\x03\x04\x05\x04\x03\x05\x03\x05\x04", // 𧚉
+ 0x2768a: "\x04\x05\x02\x03\x04\x01\x02\x02\x01\x01\x01\x05", // 𧚊
+ 0x2768b: "\x04\x05\x02\x03\x04\x03\x05\x04\x01\x01\x01\x02", // 𧚋
+ 0x2768c: "\x04\x01\x05\x02\x01\x03\x01\x02\x01\x03\x05\x03\x04", // 𧚌
+ 0x2768d: "\x04\x01\x01\x02\x04\x01\x03\x04\x04\x03\x05\x03\x04", // 𧚍
+ 0x2768e: "\x04\x05\x02\x03\x04\x03\x01\x02\x05\x01\x02\x01", // 𧚎
+ 0x2768f: "\x04\x05\x02\x03\x04\x01\x02\x05\x01\x02\x03\x04", // 𧚏
+ 0x27690: "\x01\x02\x05\x01\x02\x04\x05\x04\x01\x03\x05\x03\x04", // 𧚐
+ 0x27691: "\x04\x05\x02\x03\x04\x01\x02\x05\x01\x05\x03\x04", // 𧚑
+ 0x27692: "\x03\x01\x02\x01\x01\x02\x01\x04\x01\x03\x05\x03\x04", // 𧚒
+ 0x27693: "\x04\x05\x02\x03\x04\x03\x05\x01\x05\x02\x05\x02", // 𧚓
+ 0x27694: "\x04\x05\x02\x03\x04\x05\x04\x02\x05\x01\x01\x02", // 𧚔
+ 0x27695: "\x04\x05\x02\x03\x04\x04\x01\x03\x05\x04\x04\x04", // 𧚕
+ 0x27696: "\x04\x05\x02\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 𧚖
+ 0x27697: "\x04\x05\x02\x03\x04\x02\x05\x01\x02\x01\x01\x05", // 𧚗
+ 0x27698: "\x04\x05\x02\x03\x04\x03\x01\x02\x03\x04\x05\x03", // 𧚘
+ 0x27699: "\x04\x05\x02\x03\x04\x03\x02\x03\x01\x02\x01\x01", // 𧚙
+ 0x2769a: "\x04\x04\x01\x01\x03\x04\x04\x04\x01\x03\x05\x03\x04", // 𧚚
+ 0x2769b: "\x04\x01\x03\x04\x04\x02\x04\x04\x01\x03\x05\x03\x04", // 𧚛
+ 0x2769c: "\x04\x05\x02\x03\x04\x03\x03\x01\x01\x02\x05\x02", // 𧚜
+ 0x2769d: "\x01\x01\x02\x01\x04\x01\x03\x05\x03\x04\x05\x03\x04", // 𧚝
+ 0x2769e: "\x04\x01\x02\x05\x03\x05\x02\x05\x01\x03\x05\x03\x04", // 𧚞
+ 0x2769f: "\x04\x05\x02\x03\x04\x05\x01\x03\x03\x01\x01\x05", // 𧚟
+ 0x276a0: "\x01\x01\x02\x01\x01\x03\x02\x04\x01\x03\x05\x03\x04", // 𧚠
+ 0x276a1: "\x03\x02\x05\x01\x01\x02\x01\x04\x01\x03\x05\x03\x04", // 𧚡
+ 0x276a2: "\x04\x05\x02\x03\x04\x04\x01\x02\x05\x01\x03\x05", // 𧚢
+ 0x276a3: "\x02\x05\x01\x01\x02\x01\x01\x04\x01\x03\x05\x03\x04", // 𧚣
+ 0x276a4: "\x04\x01\x03\x02\x03\x05\x04\x03\x05\x04\x03\x05\x03\x04", // 𧚤
+ 0x276a5: "\x04\x05\x02\x03\x04\x01\x02\x02\x01\x01\x01\x05\x04", // 𧚥
+ 0x276a6: "\x04\x05\x02\x03\x04\x04\x01\x05\x04\x01\x02\x03\x04", // 𧚦
+ 0x276a7: "\x04\x05\x02\x03\x04\x03\x05\x03\x02\x01\x05\x01\x01", // 𧚧
+ 0x276a8: "\x04\x05\x02\x03\x04\x01\x05\x01\x01\x02\x01\x03\x04", // 𧚨
+ 0x276a9: "\x03\x01\x02\x03\x04\x03\x05\x03\x04\x01\x03\x05\x03\x04", // 𧚩
+ 0x276aa: "\x04\x05\x02\x03\x04\x04\x01\x04\x03\x01\x05\x03\x01", // 𧚪
+ 0x276ab: "\x04\x05\x02\x03\x04\x01\x01\x02\x01\x03\x05\x01\x01", // 𧚫
+ 0x276ac: "\x04\x05\x02\x03\x04\x04\x04\x05\x03\x05\x01\x02\x01", // 𧚬
+ 0x276ad: "\x04\x05\x02\x03\x04\x04\x03\x01\x01\x03\x02", // 𧚭
+ 0x276ae: "\x04\x05\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𧚮
+ 0x276af: "\x04\x05\x02\x03\x04\x03\x04\x04\x03\x04\x05\x05\x04", // 𧚯
+ 0x276b0: "\x04\x01\x05\x04\x05\x04\x05\x04\x05\x04\x03\x05\x03\x04", // 𧚰
+ 0x276b1: "\x04\x01\x05\x05\x05\x02\x05\x01\x04\x01\x03\x05\x03\x04", // 𧚱
+ 0x276b2: "\x05\x05\x05\x03\x05\x01\x02\x02\x04\x01\x03\x05\x03\x04", // 𧚲
+ 0x276b3: "\x04\x05\x02\x03\x04\x03\x01\x01\x02\x05\x02\x02\x02", // 𧚳
+ 0x276b4: "\x04\x05\x02\x03\x04\x05\x04\x02\x05\x01\x02\x01\x04", // 𧚴
+ 0x276b5: "\x04\x03\x03\x04\x02\x05\x01\x01\x04\x01\x03\x05\x03\x04", // 𧚵
+ 0x276b6: "\x04\x05\x02\x03\x04\x01\x02\x01\x05\x03\x05\x03\x04", // 𧚶
+ 0x276b7: "\x04\x05\x02\x03\x04\x03\x02\x05\x01\x01\x03\x02\x05", // 𧚷
+ 0x276b8: "\x04\x05\x02\x03\x04\x02\x05\x02\x02\x05\x01\x01\x02", // 𧚸
+ 0x276b9: "\x04\x01\x02\x05\x01\x02\x01\x01\x01\x05\x03\x05\x03\x04", // 𧚹
+ 0x276ba: "\x04\x05\x02\x03\x04\x02\x01\x02\x01\x02\x01\x03\x04", // 𧚺
+ 0x276bb: "\x04\x05\x02\x03\x04\x01\x05\x03\x05\x03\x02\x05\x01\x01", // 𧚻
+ 0x276bc: "\x04\x05\x02\x03\x04\x03\x04\x01\x05\x04\x02\x05\x01", // 𧚼
+ 0x276bd: "\x04\x01\x02\x05\x01\x02\x01\x01\x03\x02\x03\x05\x03\x04", // 𧚽
+ 0x276be: "\x04\x01\x02\x05\x01\x02\x05\x01\x04\x01\x03\x05\x03\x04", // 𧚾
+ 0x276bf: "\x01\x02\x02\x01\x01\x01\x05\x04\x04\x01\x03\x05\x03\x04", // 𧚿
+ 0x276c0: "\x01\x02\x03\x04\x01\x02\x03\x04\x04\x01\x03\x05\x03\x04", // 𧛀
+ 0x276c1: "\x04\x01\x03\x05\x03\x04\x04\x05\x04\x01\x03\x05\x03\x04", // 𧛁
+ 0x276c2: "\x04\x05\x02\x03\x04\x02\x05\x01\x02\x02\x05\x01\x01", // 𧛂
+ 0x276c3: "\x04\x05\x02\x03\x04\x02\x05\x03\x01\x02\x03\x04\x01", // 𧛃
+ 0x276c4: "\x04\x05\x02\x03\x04\x03\x04\x04\x01\x03\x05\x03\x04", // 𧛄
+ 0x276c5: "\x04\x05\x02\x03\x04\x04\x01\x03\x05\x04\x05\x03\x04", // 𧛅
+ 0x276c6: "\x04\x05\x02\x03\x04\x02\x05\x03\x04\x02\x05\x01\x01", // 𧛆
+ 0x276c7: "\x04\x05\x02\x03\x04\x01\x02\x01\x01\x01\x05\x03\x04", // 𧛇
+ 0x276c8: "\x04\x05\x02\x03\x04\x03\x04\x01\x02\x05\x01\x02\x02", // 𧛈
+ 0x276c9: "\x04\x01\x03\x05\x03\x04\x01\x02\x03\x04\x03\x01\x03\x04", // 𧛉
+ 0x276ca: "\x04\x05\x02\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01", // 𧛊
+ 0x276cb: "\x04\x05\x02\x03\x04\x03\x04\x04\x05\x04\x05\x04\x04", // 𧛋
+ 0x276cc: "\x04\x01\x03\x05\x03\x04\x01\x02\x03\x01\x03\x05\x04\x04", // 𧛌
+ 0x276cd: "\x04\x05\x02\x03\x04\x01\x03\x04\x03\x05\x05\x01\x05", // 𧛍
+ 0x276ce: "\x04\x05\x02\x03\x04\x02\x05\x02\x03\x04\x01\x05\x04", // 𧛎
+ 0x276cf: "\x04\x05\x02\x03\x04\x04\x03\x01\x05\x05\x04\x05\x05\x04", // 𧛏
+ 0x276d0: "\x04\x05\x02\x03\x04\x05\x01\x03\x01\x05\x04\x01\x02\x01", // 𧛐
+ 0x276d1: "\x04\x05\x02\x03\x04\x01\x02\x05\x03\x05\x01\x01\x02\x01", // 𧛑
+ 0x276d2: "\x04\x05\x02\x03\x04\x03\x01\x04\x03\x01\x04\x01\x03\x04", // 𧛒
+ 0x276d3: "\x04\x05\x02\x03\x04\x02\x01\x05\x03\x01\x05\x03\x05\x04", // 𧛓
+ 0x276d4: "\x04\x05\x02\x03\x04\x01\x01\x02\x01\x05\x05\x04\x01\x04", // 𧛔
+ 0x276d5: "\x04\x05\x02\x03\x04\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 𧛕
+ 0x276d6: "\x04\x05\x02\x03\x04\x04\x01\x05\x03\x03\x01\x05\x02\x05", // 𧛖
+ 0x276d7: "\x04\x05\x02\x03\x04\x04\x04\x05\x03\x05\x01\x03\x04\x04", // 𧛗
+ 0x276d8: "\x04\x05\x02\x03\x04\x01\x05\x02\x05\x01\x05\x04\x01", // 𧛘
+ 0x276d9: "\x04\x01\x03\x04\x04\x03\x05\x04\x01\x02\x03\x04\x03\x05\x03\x04", // 𧛙
+ 0x276da: "\x04\x05\x02\x03\x04\x02\x05\x01\x02\x01\x01\x05\x03\x04", // 𧛚
+ 0x276db: "\x04\x05\x02\x03\x04\x03\x04\x01\x02\x01\x01\x01\x05\x04", // 𧛛
+ 0x276dc: "\x01\x02\x01\x01\x02\x01\x01\x02\x04\x04\x01\x03\x05\x03\x04", // 𧛜
+ 0x276dd: "\x04\x05\x02\x03\x04\x03\x04\x05\x02\x03\x05\x03\x05\x04", // 𧛝
+ 0x276de: "\x04\x05\x02\x03\x04\x01\x02\x02\x05\x01\x03\x05\x04\x01", // 𧛞
+ 0x276df: "\x04\x05\x02\x03\x04\x02\x05\x01\x01\x03\x01\x01\x02\x01", // 𧛟
+ 0x276e0: "\x04\x05\x02\x03\x04\x01\x01\x02\x01\x03\x04\x05\x03\x04", // 𧛠
+ 0x276e1: "\x04\x05\x02\x03\x04\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 𧛡
+ 0x276e2: "\x04\x05\x02\x03\x04\x01\x05\x04\x01\x02\x01\x03\x01\x03\x04", // 𧛢
+ 0x276e3: "\x05\x01\x02\x01\x01\x05\x01\x05\x04\x04\x01\x03\x05\x03\x04", // 𧛣
+ 0x276e4: "\x04\x05\x02\x03\x04\x03\x05\x03\x03\x04\x04\x05\x04\x04", // 𧛤
+ 0x276e5: "\x04\x05\x02\x03\x04\x04\x01\x05\x04\x02\x05\x02\x01\x01", // 𧛥
+ 0x276e6: "\x01\x02\x05\x02\x01\x04\x01\x03\x05\x03\x04\x05\x03\x04", // 𧛦
+ 0x276e7: "\x02\x05\x01\x04\x01\x03\x05\x04\x03\x05\x04\x03\x05\x03\x04", // 𧛧
+ 0x276e8: "\x04\x01\x04\x03\x02\x05\x03\x05\x02\x05\x01\x03\x05\x03\x04", // 𧛨
+ 0x276e9: "\x04\x05\x02\x03\x04\x01\x02\x01\x02\x03\x05\x02\x05\x01", // 𧛩
+ 0x276ea: "\x04\x05\x02\x03\x04\x04\x04\x05\x01\x02\x01\x02\x05\x01", // 𧛪
+ 0x276eb: "\x04\x01\x01\x02\x02\x05\x01\x03\x05\x04\x01\x04\x01\x03\x05\x03\x04", // 𧛫
+ 0x276ec: "\x05\x02\x03\x05\x02\x02\x02\x05\x01\x04\x01\x03\x05\x03\x04", // 𧛬
+ 0x276ed: "\x04\x05\x02\x03\x04\x01\x02\x02\x01\x03\x02\x05\x01", // 𧛭
+ 0x276ee: "\x04\x05\x02\x03\x04\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 𧛮
+ 0x276ef: "\x04\x03\x01\x02\x05\x01\x01\x02\x02\x04\x01\x03\x05\x03\x04", // 𧛯
+ 0x276f0: "\x04\x05\x02\x03\x04\x05\x02\x01\x03\x02\x05\x01\x01\x01", // 𧛰
+ 0x276f1: "\x03\x02\x02\x05\x01\x01\x02\x03\x04\x04\x01\x03\x05\x03\x04", // 𧛱
+ 0x276f2: "\x03\x02\x05\x01\x02\x01\x01\x02\x01\x04\x01\x03\x05\x03\x04", // 𧛲
+ 0x276f3: "\x04\x05\x02\x03\x04\x03\x01\x02\x04\x01\x03\x04\x05\x02", // 𧛳
+ 0x276f4: "\x04\x05\x02\x03\x04\x05\x01\x05\x05\x01\x05\x01\x03\x04", // 𧛴
+ 0x276f5: "\x05\x05\x05\x01\x03\x05\x04\x02\x02\x04\x01\x03\x05\x03\x04", // 𧛵
+ 0x276f6: "\x04\x05\x02\x03\x04\x03\x03\x02\x01\x02\x01\x01\x02\x04", // 𧛶
+ 0x276f7: "\x04\x05\x02\x03\x04\x01\x02\x01\x02\x05\x01\x05\x03\x04", // 𧛷
+ 0x276f8: "\x04\x05\x02\x03\x04\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03", // 𧛸
+ 0x276f9: "\x04\x05\x02\x03\x04\x03\x05\x05\x04\x05\x04\x01\x05\x04\x01", // 𧛹
+ 0x276fa: "\x04\x05\x02\x03\x04\x05\x01\x03\x04\x01\x04\x03\x01\x01\x02", // 𧛺
+ 0x276fb: "\x04\x05\x02\x03\x04\x01\x02\x04\x05\x05\x05\x04\x02\x03\x04", // 𧛻
+ 0x276fc: "\x04\x05\x02\x03\x04\x03\x02\x05\x01\x01\x01\x03\x01\x02\x04", // 𧛼
+ 0x276fd: "\x05\x01\x03\x01\x01\x02\x03\x04\x05\x04\x04\x01\x03\x05\x03\x04", // 𧛽
+ 0x276fe: "\x04\x05\x02\x03\x04\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 𧛾
+ 0x276ff: "\x04\x01\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x03\x05\x03\x04", // 𧛿
+ 0x27700: "\x04\x05\x02\x03\x04\x04\x05\x02\x05\x01\x01\x04\x01\x03\x04", // 𧜀
+ 0x27701: "\x04\x05\x02\x03\x04\x03\x04\x01\x02\x03\x05\x04\x03\x05\x05\x04", // 𧜁
+ 0x27702: "\x04\x05\x02\x03\x04\x03\x02\x05\x01\x05\x01\x01\x02\x05\x02", // 𧜂
+ 0x27703: "\x04\x05\x02\x03\x04\x03\x01\x01\x05\x04\x03\x01\x02\x03\x04", // 𧜃
+ 0x27704: "\x04\x05\x02\x03\x04\x05\x04\x02\x05\x04\x03\x01\x01\x02\x01", // 𧜄
+ 0x27705: "\x04\x05\x02\x03\x04\x04\x04\x05\x03\x01\x02\x01\x02\x05\x01", // 𧜅
+ 0x27706: "\x04\x05\x02\x03\x04\x01\x02\x01\x02\x01\x01\x02\x05\x03\x04", // 𧜆
+ 0x27707: "\x04\x05\x02\x03\x04\x05\x05\x05\x02\x05\x01\x05\x02\x01\x05", // 𧜇
+ 0x27708: "\x04\x01\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04\x03\x05\x03\x04", // 𧜈
+ 0x27709: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x04\x01\x03\x05\x03\x04", // 𧜉
+ 0x2770a: "\x04\x01\x03\x05\x03\x04\x04\x01\x03\x05\x03\x04\x02\x05\x01\x01", // 𧜊
+ 0x2770b: "\x04\x05\x02\x03\x04\x03\x04\x04\x03\x05\x05\x04\x01\x03\x02", // 𧜋
+ 0x2770c: "\x01\x02\x05\x02\x03\x04\x03\x01\x03\x04\x04\x01\x03\x05\x03\x04", // 𧜌
+ 0x2770d: "\x04\x01\x01\x01\x03\x05\x03\x04\x05\x05\x02\x01\x03\x05\x03\x04", // 𧜍
+ 0x2770e: "\x04\x05\x02\x03\x04\x04\x04\x03\x01\x03\x04\x03\x01\x01\x02", // 𧜎
+ 0x2770f: "\x04\x01\x03\x01\x01\x01\x02\x01\x01\x01\x04\x01\x03\x05\x03\x04", // 𧜏
+ 0x27710: "\x04\x05\x02\x03\x04\x05\x04\x02\x05\x01\x04\x05\x04\x04\x05", // 𧜐
+ 0x27711: "\x04\x05\x02\x03\x04\x03\x03\x01\x02\x05\x01\x01\x02\x05\x02", // 𧜑
+ 0x27712: "\x04\x05\x02\x03\x04\x01\x02\x01\x02\x01\x03\x04\x01\x03\x02", // 𧜒
+ 0x27713: "\x04\x05\x02\x03\x04\x02\x05\x05\x04\x05\x02\x05\x01\x01", // 𧜓
+ 0x27714: "\x04\x05\x02\x03\x04\x05\x01\x03\x02\x04\x03\x02\x05\x01\x01", // 𧜔
+ 0x27715: "\x04\x05\x02\x03\x04\x03\x01\x04\x03\x01\x04\x03\x01\x03\x04", // 𧜕
+ 0x27716: "\x04\x05\x02\x03\x04\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 𧜖
+ 0x27717: "\x04\x05\x02\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𧜗
+ 0x27718: "\x04\x05\x02\x03\x04\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𧜘
+ 0x27719: "\x04\x05\x02\x03\x04\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𧜙
+ 0x2771a: "\x03\x01\x01\x05\x04\x03\x01\x02\x03\x04\x04\x01\x03\x05\x03\x04", // 𧜚
+ 0x2771b: "\x04\x05\x02\x03\x04\x04\x05\x01\x01\x05\x04\x05\x02", // 𧜛
+ 0x2771c: "\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04\x04\x01\x03\x05\x03\x04", // 𧜜
+ 0x2771d: "\x04\x05\x02\x03\x04\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04", // 𧜝
+ 0x2771e: "\x04\x05\x02\x03\x04\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 𧜞
+ 0x2771f: "\x04\x01\x04\x03\x02\x05\x03\x05\x02\x05\x01\x04\x01\x03\x05\x03\x04", // 𧜟
+ 0x27720: "\x04\x05\x02\x03\x04\x04\x01\x05\x05\x04\x04\x01\x03\x04\x01\x02", // 𧜠
+ 0x27721: "\x04\x05\x02\x03\x04\x04\x03\x01\x01\x02\x01\x02\x05\x02\x02\x01", // 𧜡
+ 0x27722: "\x04\x05\x02\x03\x04\x03\x02\x05\x03\x03\x04\x01\x04\x05\x04\x04", // 𧜢
+ 0x27723: "\x04\x05\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𧜣
+ 0x27724: "\x01\x03\x01\x01\x03\x04\x05\x03\x05\x05\x04\x04\x01\x03\x05\x03\x04", // 𧜤
+ 0x27725: "\x04\x05\x02\x03\x04\x04\x01\x03\x01\x02\x02\x01\x04\x04\x04\x04", // 𧜥
+ 0x27726: "\x04\x05\x02\x03\x04\x01\x02\x05\x01\x02\x03\x04\x04\x05\x04", // 𧜦
+ 0x27727: "\x04\x05\x02\x03\x04\x01\x01\x01\x03\x04\x03\x02\x01\x05\x01\x01", // 𧜧
+ 0x27728: "\x04\x05\x02\x03\x04\x03\x05\x04\x01\x05\x02\x04\x05\x04", // 𧜨
+ 0x27729: "\x04\x05\x02\x03\x04\x01\x02\x05\x01\x02\x02\x04\x05\x03\x05\x04", // 𧜩
+ 0x2772a: "\x04\x01\x03\x05\x01\x03\x05\x02\x05\x01\x02\x01\x03\x05\x03\x04", // 𧜪
+ 0x2772b: "\x04\x01\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x03\x05\x03\x04", // 𧜫
+ 0x2772c: "\x04\x05\x02\x03\x04\x03\x01\x04\x03\x01\x04\x01\x04\x03\x03\x04", // 𧜬
+ 0x2772d: "\x04\x05\x02\x03\x04\x05\x01\x03\x03\x02\x05\x01\x02\x05\x02\x01\x04", // 𧜭
+ 0x2772e: "\x04\x05\x02\x03\x04\x04\x04\x05\x01\x02\x02\x01\x01\x01\x05\x04", // 𧜮
+ 0x2772f: "\x04\x01\x03\x04\x02\x05\x01\x01\x02\x03\x04\x03\x05\x03\x04", // 𧜯
+ 0x27730: "\x04\x05\x02\x03\x04\x04\x01\x02\x05\x01\x02\x05\x01\x03\x05\x04", // 𧜰
+ 0x27731: "\x04\x05\x02\x03\x04\x01\x02\x02\x01\x01\x01\x05\x04\x05\x03\x01", // 𧜱
+ 0x27732: "\x04\x05\x02\x03\x04\x03\x04\x03\x04\x02\x05\x01\x03\x05\x01\x01", // 𧜲
+ 0x27733: "\x04\x05\x02\x03\x04\x05\x01\x01\x05\x04\x01\x05\x03\x05", // 𧜳
+ 0x27734: "\x04\x05\x02\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𧜴
+ 0x27735: "\x04\x05\x02\x03\x04\x01\x02\x02\x01\x03\x05\x04\x05\x02\x05\x02", // 𧜵
+ 0x27736: "\x04\x05\x02\x03\x04\x01\x02\x05\x01\x02\x05\x05\x04\x01\x02\x01", // 𧜶
+ 0x27737: "\x05\x01\x03\x01\x01\x04\x03\x03\x04\x05\x04\x04\x01\x03\x05\x03\x04", // 𧜷
+ 0x27738: "\x04\x01\x01\x03\x04\x02\x03\x04\x02\x03\x04\x02\x03\x04\x02\x03\x05\x03\x04", // 𧜸
+ 0x27739: "\x04\x05\x02\x03\x04\x03\x05\x03\x01\x01\x02\x01\x02\x05\x01\x01", // 𧜹
+ 0x2773a: "\x04\x05\x02\x03\x04\x02\x01\x05\x03\x01\x05\x03\x05\x03\x03\x03", // 𧜺
+ 0x2773b: "\x03\x01\x02\x05\x01\x01\x02\x01\x01\x05\x03\x04\x01\x03\x05\x03\x04", // 𧜻
+ 0x2773c: "\x01\x02\x01\x03\x04\x01\x02\x01\x03\x05\x04\x04\x01\x03\x05\x03\x04", // 𧜼
+ 0x2773d: "\x04\x05\x02\x03\x04\x04\x01\x05\x03\x03\x01\x05\x02\x01\x03\x04", // 𧜽
+ 0x2773e: "\x04\x05\x02\x03\x04\x05\x01\x03\x01\x02\x05\x02\x04\x01\x03\x04", // 𧜾
+ 0x2773f: "\x04\x05\x02\x03\x04\x01\x02\x01\x02\x01\x02\x05\x01\x01\x02\x04", // 𧜿
+ 0x27740: "\x04\x05\x02\x03\x04\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 𧝀
+ 0x27741: "\x04\x05\x02\x03\x04\x02\x05\x02\x02\x01\x05\x04\x01\x05\x04\x01", // 𧝁
+ 0x27742: "\x04\x05\x02\x03\x04\x05\x03\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𧝂
+ 0x27743: "\x04\x05\x02\x03\x04\x05\x04\x05\x02\x03\x02\x05\x03\x05\x02\x05\x01", // 𧝃
+ 0x27744: "\x04\x05\x02\x03\x04\x01\x02\x05\x01\x01\x02\x03\x05\x04\x04\x04\x04", // 𧝄
+ 0x27745: "\x04\x05\x02\x03\x04\x03\x04\x01\x02\x05\x01\x05\x04\x01\x05\x04\x01", // 𧝅
+ 0x27746: "\x04\x05\x02\x03\x04\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x01", // 𧝆
+ 0x27747: "\x04\x05\x02\x03\x04\x05\x01\x05\x03\x02\x02\x05\x01\x01\x01\x03\x04", // 𧝇
+ 0x27748: "\x04\x05\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 𧝈
+ 0x27749: "\x04\x05\x02\x03\x04\x02\x02\x04\x03\x01\x04\x03\x02\x05\x02\x03\x04", // 𧝉
+ 0x2774a: "\x04\x05\x02\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05\x03\x04", // 𧝊
+ 0x2774b: "\x04\x05\x02\x03\x04\x04\x01\x02\x05\x01\x05\x02\x01\x03\x01\x03\x04", // 𧝋
+ 0x2774c: "\x04\x05\x02\x03\x04\x03\x05\x02\x05\x02\x01\x03\x05\x04\x04\x04\x04", // 𧝌
+ 0x2774d: "\x04\x05\x02\x03\x04\x05\x02\x01\x03\x01\x02\x01\x03\x05\x04\x01", // 𧝍
+ 0x2774e: "\x04\x05\x02\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𧝎
+ 0x2774f: "\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x04\x01\x03\x05\x03\x04", // 𧝏
+ 0x27750: "\x04\x05\x02\x03\x04\x04\x01\x04\x03\x04\x05\x02\x05\x02\x02\x05\x01", // 𧝐
+ 0x27751: "\x04\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01\x03\x05\x03\x04", // 𧝑
+ 0x27752: "\x04\x05\x02\x03\x04\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04", // 𧝒
+ 0x27753: "\x04\x05\x02\x03\x04\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 𧝓
+ 0x27754: "\x04\x05\x02\x03\x04\x02\x01\x05\x03\x01\x05\x02\x02\x05\x02\x01\x01", // 𧝔
+ 0x27755: "\x04\x01\x02\x05\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x03\x05\x03\x04", // 𧝕
+ 0x27756: "\x02\x05\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x04\x01\x03\x05\x03\x04", // 𧝖
+ 0x27757: "\x04\x01\x02\x05\x01\x05\x02\x01\x03\x01\x03\x04\x04\x01\x03\x05\x03\x04", // 𧝗
+ 0x27758: "\x04\x05\x02\x03\x04\x04\x01\x03\x02\x01\x05\x01\x01\x03\x05\x03\x04", // 𧝘
+ 0x27759: "\x04\x05\x02\x03\x04\x04\x03\x01\x01\x01\x03\x02\x05\x01\x01\x01", // 𧝙
+ 0x2775a: "\x05\x04\x03\x03\x04\x01\x01\x03\x04\x03\x05\x04\x04\x01\x03\x05\x03\x04", // 𧝚
+ 0x2775b: "\x03\x02\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x04\x01\x03\x05\x03\x04", // 𧝛
+ 0x2775c: "\x04\x05\x02\x03\x04\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 𧝜
+ 0x2775d: "\x04\x05\x02\x03\x04\x01\x02\x05\x01\x02\x03\x04\x03\x05\x02\x05\x03\x04", // 𧝝
+ 0x2775e: "\x04\x05\x02\x03\x04\x05\x05\x04\x05\x05\x04\x01\x03\x04\x05\x03\x04", // 𧝞
+ 0x2775f: "\x02\x04\x03\x02\x05\x02\x05\x01\x03\x01\x03\x04\x04\x01\x03\x05\x03\x04", // 𧝟
+ 0x27760: "\x04\x05\x02\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01\x03\x01\x03\x04", // 𧝠
+ 0x27761: "\x04\x05\x02\x03\x04\x03\x01\x04\x03\x01\x04\x03\x04\x01\x02\x05\x01", // 𧝡
+ 0x27762: "\x04\x01\x03\x03\x05\x04\x01\x04\x04\x03\x01\x01\x03\x04\x03\x05\x03\x04", // 𧝢
+ 0x27763: "\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01\x04\x01\x03\x05\x03\x04", // 𧝣
+ 0x27764: "\x04\x05\x02\x03\x04\x01\x02\x02\x01\x01\x01\x03\x04\x03\x03\x01\x02", // 𧝤
+ 0x27765: "\x04\x01\x03\x02\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05\x03\x04", // 𧝥
+ 0x27766: "\x01\x03\x02\x01\x02\x01\x01\x03\x05\x04\x02\x02\x04\x01\x03\x05\x03\x04", // 𧝦
+ 0x27767: "\x04\x05\x02\x03\x04\x04\x03\x02\x05\x01\x01\x01\x02\x01\x05\x03\x04", // 𧝧
+ 0x27768: "\x04\x05\x02\x03\x04\x04\x01\x01\x01\x02\x05\x01\x05\x03\x02\x05\x01", // 𧝨
+ 0x27769: "\x04\x05\x02\x03\x04\x03\x03\x02\x03\x03\x01\x02\x02\x05\x01\x01\x01", // 𧝩
+ 0x2776a: "\x04\x05\x02\x03\x04\x01\x02\x05\x03\x05\x01\x01\x02\x01\x01\x02\x04", // 𧝪
+ 0x2776b: "\x04\x05\x02\x03\x04\x01\x02\x02\x01\x02\x02\x01\x04\x05\x02\x05\x02", // 𧝫
+ 0x2776c: "\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04\x04\x01\x03\x05\x03\x04", // 𧝬
+ 0x2776d: "\x04\x05\x02\x03\x04\x01\x03\x04\x04\x03\x02\x05\x01\x01\x01\x03\x04", // 𧝭
+ 0x2776e: "\x04\x05\x02\x03\x04\x03\x05\x04\x03\x01\x02\x03\x04\x04\x05\x04\x04", // 𧝮
+ 0x2776f: "\x04\x05\x02\x03\x04\x01\x02\x02\x01\x01\x01\x04\x01\x03\x05\x03\x04", // 𧝯
+ 0x27770: "\x04\x05\x02\x03\x04\x03\x02\x05\x03\x04\x03\x01\x02\x03\x04\x01\x05", // 𧝰
+ 0x27771: "\x04\x05\x02\x03\x04\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x05\x01\x05", // 𧝱
+ 0x27772: "\x04\x05\x02\x03\x04\x02\x01\x05\x03\x01\x05\x01\x03\x05\x03\x03\x03\x04", // 𧝲
+ 0x27773: "\x04\x05\x02\x03\x04\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x03\x04", // 𧝳
+ 0x27774: "\x04\x05\x02\x03\x04\x02\x01\x01\x02\x03\x04\x05\x04\x02\x05\x01\x01\x01", // 𧝴
+ 0x27775: "\x04\x05\x02\x03\x04\x01\x02\x01\x02\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 𧝵
+ 0x27776: "\x04\x05\x02\x03\x04\x01\x02\x01\x02\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 𧝶
+ 0x27777: "\x03\x02\x01\x05\x01\x01\x01\x02\x01\x03\x05\x05\x04\x04\x01\x03\x05\x03\x04", // 𧝷
+ 0x27778: "\x04\x05\x02\x03\x04\x04\x01\x05\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 𧝸
+ 0x27779: "\x04\x01\x05\x02\x05\x01\x03\x05\x04\x01\x04\x01\x03\x05\x03\x04\x03\x05\x04", // 𧝹
+ 0x2777a: "\x04\x01\x01\x02\x03\x04\x05\x04\x05\x02\x03\x01\x02\x03\x04\x03\x05\x03\x04", // 𧝺
+ 0x2777b: "\x04\x01\x03\x03\x05\x04\x01\x04\x04\x03\x03\x04\x01\x03\x02\x03\x05\x03\x04", // 𧝻
+ 0x2777c: "\x04\x05\x02\x03\x04\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04\x02\x02", // 𧝼
+ 0x2777d: "\x04\x05\x02\x03\x04\x02\x05\x01\x01\x03\x05\x03\x04\x05\x03\x05\x03\x04", // 𧝽
+ 0x2777e: "\x04\x01\x03\x02\x01\x01\x03\x04\x04\x03\x01\x01\x02\x05\x02\x03\x05\x03\x04", // 𧝾
+ 0x2777f: "\x04\x05\x02\x03\x04\x01\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x01\x01", // 𧝿
+ 0x27780: "\x04\x05\x02\x03\x04\x01\x02\x05\x01\x02\x05\x05\x04\x04\x01\x04\x03\x01", // 𧞀
+ 0x27781: "\x04\x05\x02\x03\x04\x03\x01\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𧞁
+ 0x27782: "\x04\x01\x05\x04\x01\x05\x04\x01\x03\x02\x01\x05\x01\x01\x03\x05\x03\x04", // 𧞂
+ 0x27783: "\x04\x05\x02\x03\x04\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 𧞃
+ 0x27784: "\x04\x05\x02\x03\x04\x03\x02\x05\x03\x04\x03\x01\x02\x03\x04\x01\x01\x05", // 𧞄
+ 0x27785: "\x04\x05\x02\x03\x04\x01\x02\x01\x04\x03\x01\x01\x01\x02\x04\x05\x04", // 𧞅
+ 0x27786: "\x04\x05\x02\x03\x04\x04\x01\x01\x01\x02\x05\x01\x04\x03\x01\x01\x01\x02", // 𧞆
+ 0x27787: "\x04\x05\x02\x03\x04\x03\x04\x04\x03\x04\x05\x04\x05\x04\x04\x03\x05\x04", // 𧞇
+ 0x27788: "\x02\x05\x01\x01\x03\x04\x04\x03\x01\x01\x03\x05\x04\x04\x01\x03\x05\x03\x04", // 𧞈
+ 0x27789: "\x01\x02\x03\x04\x05\x04\x05\x02\x03\x01\x02\x03\x04\x04\x01\x03\x05\x03\x04", // 𧞉
+ 0x2778a: "\x04\x05\x02\x03\x04\x03\x05\x03\x05\x01\x01\x02\x05\x03\x03\x01\x01\x02", // 𧞊
+ 0x2778b: "\x04\x05\x02\x03\x04\x04\x01\x03\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 𧞋
+ 0x2778c: "\x04\x05\x02\x03\x04\x03\x04\x02\x05\x02\x02\x01\x01\x05\x04\x04\x04\x04", // 𧞌
+ 0x2778d: "\x04\x05\x02\x03\x04\x04\x04\x05\x03\x05\x04\x01\x05\x04\x01\x01\x02\x03\x04", // 𧞍
+ 0x2778e: "\x04\x05\x02\x03\x04\x03\x04\x04\x03\x01\x02\x01\x05\x01\x01\x04\x05\x04\x04", // 𧞎
+ 0x2778f: "\x04\x05\x02\x03\x04\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 𧞏
+ 0x27790: "\x05\x05\x01\x05\x05\x01\x05\x01\x02\x01\x03\x03\x01\x02\x04\x01\x03\x05\x03\x04", // 𧞐
+ 0x27791: "\x04\x05\x02\x03\x04\x02\x02\x04\x03\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 𧞑
+ 0x27792: "\x01\x02\x01\x04\x05\x03\x01\x02\x03\x04\x03\x05\x05\x04\x04\x01\x03\x05\x03\x04", // 𧞒
+ 0x27793: "\x04\x05\x02\x03\x04\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01", // 𧞓
+ 0x27794: "\x04\x05\x02\x03\x04\x01\x02\x01\x02\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 𧞔
+ 0x27795: "\x01\x03\x02\x05\x02\x02\x01\x03\x04\x01\x05\x05\x04\x04\x01\x03\x05\x03\x04", // 𧞕
+ 0x27796: "\x04\x05\x02\x03\x04\x04\x01\x04\x03\x01\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 𧞖
+ 0x27797: "\x04\x01\x05\x05\x01\x05\x05\x01\x05\x01\x02\x01\x03\x03\x01\x02\x03\x05\x03\x04", // 𧞗
+ 0x27798: "\x04\x05\x02\x03\x04\x05\x01\x03\x04\x04\x04\x04\x01\x01\x02\x04\x05\x04", // 𧞘
+ 0x27799: "\x01\x02\x05\x02\x02\x01\x01\x02\x01\x01\x05\x05\x04\x04\x01\x03\x05\x03\x04", // 𧞙
+ 0x2779a: "\x04\x01\x03\x03\x05\x04\x01\x04\x04\x03\x01\x01\x03\x04\x04\x01\x03\x05\x03\x04", // 𧞚
+ 0x2779b: "\x04\x05\x02\x03\x04\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03\x04", // 𧞛
+ 0x2779c: "\x03\x02\x01\x01\x01\x02\x01\x02\x05\x01\x05\x01\x01\x04\x01\x03\x05\x03\x04", // 𧞜
+ 0x2779d: "\x04\x05\x02\x03\x04\x01\x03\x01\x02\x02\x01\x02\x02\x01\x04\x05\x02\x05\x02", // 𧞝
+ 0x2779e: "\x04\x05\x02\x03\x04\x05\x04\x03\x05\x04\x01\x01\x05\x01\x05\x04\x04\x04\x04", // 𧞞
+ 0x2779f: "\x04\x05\x02\x03\x04\x03\x05\x01\x03\x01\x05\x03\x05\x01\x02\x01\x02\x05\x01", // 𧞟
+ 0x277a0: "\x03\x02\x05\x01\x01\x01\x04\x01\x03\x04\x01\x02\x04\x01\x03\x05\x03\x04\x03\x04", // 𧞠
+ 0x277a1: "\x05\x03\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x04\x01\x03\x05\x03\x04", // 𧞡
+ 0x277a2: "\x01\x02\x05\x01\x02\x04\x05\x01\x03\x05\x03\x03\x03\x04\x04\x01\x03\x05\x03\x04", // 𧞢
+ 0x277a3: "\x04\x05\x02\x03\x04\x01\x03\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x04\x04", // 𧞣
+ 0x277a4: "\x04\x05\x02\x03\x04\x01\x02\x02\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𧞤
+ 0x277a5: "\x04\x01\x03\x05\x03\x04\x02\x05\x03\x04\x02\x05\x01\x03\x04\x04\x03\x05\x03\x01", // 𧞥
+ 0x277a6: "\x04\x05\x02\x03\x04\x03\x05\x02\x05\x02\x04\x03\x01\x01\x05\x04\x04\x04\x04", // 𧞦
+ 0x277a7: "\x04\x05\x02\x03\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x04\x04\x04\x04", // 𧞧
+ 0x277a8: "\x04\x05\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05\x03\x05\x03\x04", // 𧞨
+ 0x277a9: "\x04\x05\x02\x03\x04\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x01\x05\x03\x04", // 𧞩
+ 0x277aa: "\x04\x05\x02\x03\x04\x05\x05\x05\x02\x05\x03\x04\x01\x05\x04\x04\x05\x04\x04\x05", // 𧞪
+ 0x277ab: "\x04\x05\x02\x03\x04\x01\x02\x05\x01\x02\x05\x05\x04\x01\x02\x05\x01\x04\x03\x01", // 𧞫
+ 0x277ac: "\x04\x05\x02\x03\x04\x01\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 𧞬
+ 0x277ad: "\x04\x05\x02\x03\x04\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01", // 𧞭
+ 0x277ae: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x05\x03\x03\x04\x03\x04\x04\x01\x03\x05\x03\x04", // 𧞮
+ 0x277af: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x04\x04\x04\x04\x04\x01\x03\x05\x03\x04", // 𧞯
+ 0x277b0: "\x04\x05\x02\x03\x04\x01\x03\x02\x01\x01\x02\x03\x04\x05\x03\x04\x04\x05\x04\x04", // 𧞰
+ 0x277b1: "\x04\x05\x02\x03\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x03\x05\x03\x04", // 𧞱
+ 0x277b2: "\x04\x05\x02\x03\x04\x01\x01\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𧞲
+ 0x277b3: "\x04\x05\x02\x03\x04\x01\x02\x03\x02\x01\x01\x05\x01\x01\x03\x05\x04\x04\x04\x04", // 𧞳
+ 0x277b4: "\x04\x01\x03\x05\x03\x04\x04\x01\x01\x01\x02\x05\x01\x03\x05\x01\x02\x01\x02\x05\x01", // 𧞴
+ 0x277b5: "\x04\x05\x02\x03\x04\x01\x03\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𧞵
+ 0x277b6: "\x04\x05\x02\x03\x04\x03\x01\x04\x03\x01\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𧞶
+ 0x277b7: "\x04\x05\x02\x03\x04\x04\x01\x02\x05\x02\x02\x01\x02\x04\x01\x03\x04\x03\x05\x03\x04", // 𧞷
+ 0x277b8: "\x04\x05\x02\x03\x04\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04", // 𧞸
+ 0x277b9: "\x01\x02\x01\x04\x05\x01\x03\x05\x03\x03\x03\x04\x03\x05\x05\x04\x04\x01\x03\x05\x03\x04", // 𧞹
+ 0x277ba: "\x01\x02\x01\x04\x05\x01\x02\x05\x01\x02\x03\x04\x03\x05\x03\x04\x04\x01\x03\x05\x03\x04", // 𧞺
+ 0x277bb: "\x04\x01\x02\x05\x01\x02\x05\x01\x05\x01\x05\x01\x02\x01\x03\x04\x03\x04\x03\x05\x03\x04", // 𧞻
+ 0x277bc: "\x04\x05\x02\x03\x04\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x04\x01\x03\x05\x03\x04", // 𧞼
+ 0x277bd: "\x04\x05\x02\x03\x04\x05\x01\x03\x02\x04\x01\x03\x04\x03\x01\x01\x02\x04\x05\x04", // 𧞽
+ 0x277be: "\x04\x05\x02\x03\x04\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x03\x04\x04", // 𧞾
+ 0x277bf: "\x04\x05\x02\x03\x04\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 𧞿
+ 0x277c0: "\x04\x05\x02\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x01\x05\x03\x04", // 𧟀
+ 0x277c1: "\x04\x05\x02\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x03\x01\x01\x03\x02", // 𧟁
+ 0x277c2: "\x04\x05\x02\x03\x04\x05\x01\x05\x01\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x01\x01", // 𧟂
+ 0x277c3: "\x04\x05\x02\x03\x04\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x03\x05\x02\x05\x01", // 𧟃
+ 0x277c4: "\x04\x05\x02\x03\x04\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 𧟄
+ 0x277c5: "\x04\x05\x02\x03\x04\x01\x02\x01\x02\x05\x03\x05\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𧟅
+ 0x277c6: "\x04\x05\x02\x03\x04\x01\x02\x02\x04\x01\x03\x05\x02\x02\x01\x01\x05\x04\x04\x04\x04", // 𧟆
+ 0x277c7: "\x04\x05\x02\x03\x04\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02", // 𧟇
+ 0x277c8: "\x04\x05\x02\x03\x04\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x01\x04\x03\x03\x04", // 𧟈
+ 0x277c9: "\x04\x05\x02\x03\x04\x03\x01\x04\x03\x01\x04\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x01\x01", // 𧟉
+ 0x277ca: "\x04\x05\x02\x03\x04\x02\x05\x01\x01\x05\x02\x02\x05\x02\x01\x03\x04\x04\x03\x01\x02\x03\x04", // 𧟊
+ 0x277cb: "\x04\x05\x02\x03\x04\x01\x02\x02\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01", // 𧟋
+ 0x277cc: "\x04\x05\x02\x03\x04\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𧟌
+ 0x277cd: "\x04\x05\x02\x03\x04\x02\x05\x02\x02\x01\x05\x04\x03\x05\x04\x01\x01\x05\x01\x05\x04\x04\x04\x04", // 𧟍
+ 0x277ce: "\x04\x05\x02\x03\x04\x01\x02\x01\x03\x05\x02\x05\x03\x05\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𧟎
+ 0x277cf: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x04\x01\x03\x05\x03\x04", // 𧟏
+ 0x277d0: "\x04\x05\x02\x03\x04\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04\x02\x05\x01\x02\x01\x04", // 𧟐
+ 0x277d1: "\x04\x05\x02\x03\x04\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𧟑
+ 0x277d2: "\x04\x05\x02\x03\x04\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x01\x03\x01\x01\x05\x03\x04", // 𧟒
+ 0x277d3: "\x04\x05\x02\x03\x04\x02\x05\x01\x02\x05\x01\x01\x03\x01\x02\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 𧟓
+ 0x277d4: "\x04\x05\x02\x03\x04\x01\x02\x05\x01\x01\x02\x03\x04\x01\x02\x05\x01\x01\x02\x03\x04\x02\x05\x01\x01", // 𧟔
+ 0x277d5: "\x04\x05\x02\x03\x04\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x04\x04\x05\x02\x05\x04\x01", // 𧟕
+ 0x277d6: "\x04\x05\x02\x03\x04\x03\x01\x04\x03\x01\x04\x01\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 𧟖
+ 0x277d7: "\x04\x05\x02\x03\x04\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x01\x02", // 𧟗
+ 0x277d8: "\x04\x05\x02\x03\x04\x01\x02\x05\x01\x02\x04\x05\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 𧟘
+ 0x277d9: "\x04\x05\x02\x03\x04\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x03\x04\x01", // 𧟙
+ 0x277da: "\x04\x05\x02\x03\x04\x02\x01\x02\x01\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04\x02\x05\x01\x02\x01\x04", // 𧟚
+ 0x277db: "\x04\x01\x04\x03\x01\x03\x02\x01\x05\x01\x01\x05\x04\x01\x04\x03\x01\x03\x02\x01\x05\x01\x01\x05\x04\x01\x03\x05\x03\x04", // 𧟛
+ 0x277dc: "\x04\x05\x02\x03\x04\x01\x04\x03\x01\x02\x03\x04\x01\x04\x03\x01\x02\x03\x04\x01\x04\x03\x01\x02\x03\x04\x01\x04\x03\x01\x02\x03\x04", // 𧟜
+ 0x277dd: "\x04\x05\x02\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𧟝
+ 0x277de: "\x04\x05\x02\x03\x04\x04\x01\x04\x03\x01\x03\x02\x01\x05\x01\x01\x05\x04\x01\x04\x03\x01\x03\x02\x01\x05\x01\x01\x05\x04\x01\x03\x05\x03\x04", // 𧟞
+ 0x277df: "\x04\x01\x04\x03\x01\x03\x05\x04\x01\x01\x05\x01\x05\x01\x01\x01\x04\x01\x04\x03\x01\x03\x05\x04\x01\x01\x05\x01\x05\x01\x01\x01\x04\x01\x03\x05\x03\x04", // 𧟟
+ 0x277e0: "\x01\x02\x05\x02\x02\x01\x01", // 𧟠
+ 0x277e1: "\x01\x02\x05\x02\x02\x01\x01", // 𧟡
+ 0x277e2: "\x05\x01\x02\x05\x03\x05\x01", // 𧟢
+ 0x277e3: "\x01\x02\x05\x02\x02\x01\x03\x05", // 𧟣
+ 0x277e4: "\x01\x02\x05\x02\x02\x01\x01\x03\x02", // 𧟤
+ 0x277e5: "\x01\x02\x05\x02\x02\x01\x01\x03\x02", // 𧟥
+ 0x277e6: "\x01\x02\x05\x02\x02\x01\x01\x03\x02", // 𧟦
+ 0x277e7: "\x01\x02\x05\x02\x02\x01\x01\x03\x04\x04", // 𧟧
+ 0x277e8: "\x01\x02\x05\x02\x02\x01\x03\x01\x03\x02", // 𧟨
+ 0x277e9: "\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01", // 𧟩
+ 0x277ea: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x01\x04", // 𧟪
+ 0x277eb: "\x01\x02\x05\x03\x05\x01\x01\x02\x05\x01\x02", // 𧟫
+ 0x277ec: "\x01\x02\x05\x02\x02\x01\x03\x02\x01\x02\x01", // 𧟬
+ 0x277ed: "\x01\x02\x01\x01\x02\x05\x03\x05\x01\x05\x03\x04", // 𧟭
+ 0x277ee: "\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x02\x01", // 𧟮
+ 0x277ef: "\x01\x02\x05\x02\x02\x01\x01\x02\x01\x03\x05\x01\x05", // 𧟯
+ 0x277f0: "\x03\x05\x03\x03\x01\x02\x05\x02\x02\x01\x05\x03\x01", // 𧟰
+ 0x277f1: "\x01\x02\x05\x02\x02\x01\x03\x05\x01\x01\x05\x02\x05\x04", // 𧟱
+ 0x277f2: "\x01\x02\x05\x02\x02\x01\x01\x01\x01\x02\x01\x01\x01\x02", // 𧟲
+ 0x277f3: "\x01\x02\x05\x02\x02\x01\x03\x01\x01\x03\x03\x05\x01\x01", // 𧟳
+ 0x277f4: "\x01\x02\x05\x02\x02\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 𧟴
+ 0x277f5: "\x01\x02\x05\x02\x02\x01\x03\x05\x01\x01\x05\x02\x05\x04", // 𧟵
+ 0x277f6: "\x01\x02\x05\x02\x02\x01\x03\x01\x01\x03\x03\x05\x01\x01", // 𧟶
+ 0x277f7: "\x01\x01\x01\x02\x01\x01\x01\x02\x01\x02\x05\x03\x05\x01", // 𧟷
+ 0x277f8: "\x01\x02\x05\x02\x02\x01\x03\x02\x01\x03\x02\x05\x01\x01", // 𧟸
+ 0x277f9: "\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x02\x05\x01\x01\x02", // 𧟹
+ 0x277fa: "\x01\x02\x05\x02\x02\x01\x01\x02\x01\x03\x04\x01\x05\x04", // 𧟺
+ 0x277fb: "\x01\x02\x05\x02\x02\x01\x01\x02\x01\x02\x05\x01\x01\x01\x02", // 𧟻
+ 0x277fc: "\x01\x02\x05\x02\x02\x01\x04\x03\x03\x04\x01\x02\x01\x01\x02\x01", // 𧟼
+ 0x277fd: "\x01\x02\x05\x02\x02\x01\x05\x04\x03\x05\x04\x01\x01\x05\x01\x05", // 𧟽
+ 0x277fe: "\x01\x02\x05\x02\x02\x01\x01\x02\x01\x03\x01\x01\x02\x05\x02", // 𧟾
+ 0x277ff: "\x01\x02\x05\x02\x02\x01\x02\x05\x03\x04\x01\x02\x01\x03\x01\x02\x01", // 𧟿
+ 0x27800: "\x01\x05\x02\x02\x01\x03\x01\x02\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 𧠀
+ 0x27801: "\x01\x02\x05\x03\x05\x01\x01\x02\x01\x02\x01\x01\x02\x01\x02\x01\x01\x02", // 𧠁
+ 0x27802: "\x01\x02\x05\x02\x02\x01\x01\x03\x04\x01\x01\x01\x02\x05\x01\x03\x01\x03\x04", // 𧠂
+ 0x27803: "\x01\x02\x05\x02\x02\x01\x03\x03\x02\x03\x01\x02\x05\x01\x02\x05\x01\x03\x05\x04", // 𧠃
+ 0x27804: "\x01\x02\x05\x02\x02\x01\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x02\x01\x01\x01", // 𧠄
+ 0x27805: "\x01\x02\x05\x02\x02\x01\x01\x03\x03\x02\x03\x01\x02\x05\x01\x01\x03\x05\x04\x02\x05\x01\x05\x02\x01\x05", // 𧠅
+ 0x27806: "\x03\x02\x05\x01\x01\x01\x03\x05", // 𧠆
+ 0x27807: "\x02\x05\x01\x01\x02\x01\x03\x05", // 𧠇
+ 0x27808: "\x05\x04\x02\x05\x01\x01\x01\x03\x05", // 𧠈
+ 0x27809: "\x05\x02\x05\x02\x05\x01\x01\x01\x03\x05", // 𧠉
+ 0x2780a: "\x02\x05\x01\x02\x05\x01\x01\x01\x03\x05", // 𧠊
+ 0x2780b: "\x02\x05\x01\x01\x01\x03\x05\x01\x03\x02", // 𧠋
+ 0x2780c: "\x02\x05\x01\x01\x01\x03\x05\x01\x03\x02", // 𧠌
+ 0x2780d: "\x05\x01\x02\x02\x05\x01\x01\x01\x03\x05", // 𧠍
+ 0x2780e: "\x01\x02\x05\x02\x02\x05\x01\x01\x01\x03\x05", // 𧠎
+ 0x2780f: "\x03\x03\x05\x05\x02\x05\x01\x01\x01\x03\x05", // 𧠏
+ 0x27810: "\x02\x05\x01\x01\x01\x03\x05\x05\x04\x05\x02", // 𧠐
+ 0x27811: "\x02\x05\x01\x01\x01\x03\x05\x03\x01\x01\x05", // 𧠑
+ 0x27812: "\x03\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 𧠒
+ 0x27813: "\x02\x05\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𧠓
+ 0x27814: "\x03\x04\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𧠔
+ 0x27815: "\x02\x05\x01\x01\x01\x03\x05\x04\x04\x01\x02", // 𧠕
+ 0x27816: "\x02\x05\x01\x01\x01\x03\x05\x01\x05\x02\x03", // 𧠖
+ 0x27817: "\x02\x05\x01\x01\x01\x03\x05\x02\x05\x01\x01", // 𧠗
+ 0x27818: "\x02\x05\x01\x01\x01\x03\x05\x03\x03\x02\x04", // 𧠘
+ 0x27819: "\x03\x03\x02\x04\x02\x05\x01\x01\x01\x03\x05", // 𧠙
+ 0x2781a: "\x03\x04\x05\x03\x02\x05\x01\x01\x01\x03\x05", // 𧠚
+ 0x2781b: "\x02\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 𧠛
+ 0x2781c: "\x05\x04\x02\x05\x01\x02\x05\x01\x01\x01\x03\x05", // 𧠜
+ 0x2781d: "\x03\x04\x03\x03\x03\x02\x05\x01\x01\x01\x03\x05", // 𧠝
+ 0x2781e: "\x03\x05\x01\x03\x05\x02\x05\x01\x01\x01\x03\x05", // 𧠞
+ 0x2781f: "\x03\x05\x01\x05\x01\x02\x05\x01\x01\x01\x03\x05", // 𧠟
+ 0x27820: "\x05\x01\x05\x01\x05\x02\x05\x01\x01\x01\x03\x05", // 𧠠
+ 0x27821: "\x03\x01\x05\x02\x05\x02\x05\x01\x01\x01\x03\x05", // 𧠡
+ 0x27822: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 𧠢
+ 0x27823: "\x05\x02\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𧠣
+ 0x27824: "\x05\x01\x05\x03\x02\x02\x05\x01\x01\x01\x03\x05", // 𧠤
+ 0x27825: "\x01\x02\x05\x02\x03\x02\x05\x01\x01\x01\x03\x05", // 𧠥
+ 0x27826: "\x02\x05\x01\x01\x01\x03\x05\x02\x05\x01\x01\x01", // 𧠦
+ 0x27827: "\x04\x05\x05\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𧠧
+ 0x27828: "\x03\x03\x03\x05\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𧠨
+ 0x27829: "\x01\x02\x02\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𧠩
+ 0x2782a: "\x02\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𧠪
+ 0x2782b: "\x01\x05\x04\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 𧠫
+ 0x2782c: "\x03\x04\x05\x03\x02\x05\x02\x05\x01\x01\x01\x03\x05", // 𧠬
+ 0x2782d: "\x02\x05\x01\x01\x01\x03\x05\x04\x01\x03\x04\x03\x04", // 𧠭
+ 0x2782e: "\x02\x05\x01\x01\x01\x03\x05\x02\x05\x01\x02\x05\x01", // 𧠮
+ 0x2782f: "\x01\x02\x01\x02\x05\x01\x02\x05\x01\x01\x01\x03\x05", // 𧠯
+ 0x27830: "\x04\x01\x05\x03\x02\x05\x02\x05\x01\x01\x01\x03\x05", // 𧠰
+ 0x27831: "\x01\x02\x01\x03\x05\x04\x02\x05\x01\x01\x01\x03\x05", // 𧠱
+ 0x27832: "\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 𧠲
+ 0x27833: "\x03\x04\x04\x03\x04\x05\x02\x05\x01\x01\x01\x03\x05", // 𧠳
+ 0x27834: "\x02\x05\x01\x01\x01\x03\x05\x01\x02\x01\x01\x02\x04", // 𧠴
+ 0x27835: "\x01\x02\x05\x02\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𧠵
+ 0x27836: "\x01\x03\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 𧠶
+ 0x27837: "\x04\x01\x03\x04\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𧠷
+ 0x27838: "\x05\x04\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𧠸
+ 0x27839: "\x01\x02\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 𧠹
+ 0x2783a: "\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x03\x05", // 𧠺
+ 0x2783b: "\x02\x05\x01\x01\x01\x03\x05\x04\x01\x01\x01\x02\x05\x01", // 𧠻
+ 0x2783c: "\x03\x01\x02\x01\x02\x05\x01\x02\x05\x01\x01\x01\x03\x05", // 𧠼
+ 0x2783d: "\x04\x04\x05\x03\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𧠽
+ 0x2783e: "\x03\x04\x04\x03\x05\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 𧠾
+ 0x2783f: "\x03\x05\x04\x01\x03\x03\x03\x02\x05\x01\x01\x01\x03\x05", // 𧠿
+ 0x27840: "\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01\x01\x01\x03\x05", // 𧡀
+ 0x27841: "\x02\x05\x02\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 𧡁
+ 0x27842: "\x01\x02\x01\x04\x03\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𧡂
+ 0x27843: "\x04\x04\x05\x01\x03\x05\x04\x02\x05\x01\x01\x01\x03\x05", // 𧡃
+ 0x27844: "\x02\x05\x01\x01\x01\x03\x05\x01\x03\x05\x03\x03\x03\x04", // 𧡄
+ 0x27845: "\x01\x03\x04\x03\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𧡅
+ 0x27846: "\x02\x05\x01\x01\x01\x04\x01\x02\x05\x01\x01\x01\x03\x05", // 𧡆
+ 0x27847: "\x02\x05\x01\x01\x01\x03\x05\x02\x05\x01\x02\x01\x05\x03", // 𧡇
+ 0x27848: "\x02\x05\x01\x03\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 𧡈
+ 0x27849: "\x02\x05\x01\x01\x01\x03\x05\x04\x01\x03\x04\x04\x02\x04", // 𧡉
+ 0x2784a: "\x03\x02\x01\x02\x03\x04\x01\x02\x05\x01\x01\x01\x03\x05", // 𧡊
+ 0x2784b: "\x01\x03\x01\x02\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 𧡋
+ 0x2784c: "\x03\x05\x01\x03\x03\x05\x04\x01\x02\x05\x01\x01\x01\x03\x05", // 𧡌
+ 0x2784d: "\x01\x02\x05\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𧡍
+ 0x2784e: "\x03\x02\x01\x05\x01\x01\x03\x05\x02\x05\x01\x01\x01\x03\x05", // 𧡎
+ 0x2784f: "\x05\x04\x05\x04\x05\x04\x05\x04\x02\x05\x01\x01\x01\x03\x05", // 𧡏
+ 0x27850: "\x03\x01\x01\x03\x04\x02\x05\x01\x02\x05\x01\x01\x01\x03\x05", // 𧡐
+ 0x27851: "\x02\x01\x02\x05\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x05", // 𧡑
+ 0x27852: "\x02\x05\x01\x01\x01\x03\x05\x03\x03\x03\x05\x03\x04", // 𧡒
+ 0x27853: "\x03\x04\x04\x03\x04\x05\x05\x04\x02\x05\x01\x01\x01\x03\x05", // 𧡓
+ 0x27854: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 𧡔
+ 0x27855: "\x02\x05\x01\x01\x01\x03\x05\x02\x01\x01\x02\x03\x04\x05\x04", // 𧡕
+ 0x27856: "\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 𧡖
+ 0x27857: "\x04\x01\x01\x02\x01\x01\x03\x02\x02\x05\x01\x01\x01\x03\x05", // 𧡗
+ 0x27858: "\x01\x02\x01\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𧡘
+ 0x27859: "\x01\x02\x02\x01\x04\x03\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𧡙
+ 0x2785a: "\x01\x02\x02\x05\x01\x01\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 𧡚
+ 0x2785b: "\x01\x03\x04\x03\x04\x02\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𧡛
+ 0x2785c: "\x02\x05\x01\x01\x03\x05\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 𧡜
+ 0x2785d: "\x02\x05\x01\x01\x01\x03\x05\x02\x05\x01\x02\x02\x01\x03\x04", // 𧡝
+ 0x2785e: "\x03\x02\x01\x02\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 𧡞
+ 0x2785f: "\x04\x03\x01\x02\x02\x04\x03\x01\x02\x05\x01\x01\x01\x03\x05", // 𧡟
+ 0x27860: "\x05\x02\x02\x01\x04\x03\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𧡠
+ 0x27861: "\x04\x05\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x01\x01\x03\x05", // 𧡡
+ 0x27862: "\x04\x04\x05\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 𧡢
+ 0x27863: "\x03\x01\x02\x03\x04\x04\x03\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𧡣
+ 0x27864: "\x03\x05\x01\x03\x02\x05\x01\x02\x02\x02\x05\x01\x01\x01\x03\x05", // 𧡤
+ 0x27865: "\x01\x02\x02\x01\x03\x04\x05\x01\x05\x02\x05\x01\x01\x01\x03\x05", // 𧡥
+ 0x27866: "\x03\x02\x05\x01\x05\x01\x01\x03\x02\x02\x05\x01\x01\x01\x03\x05", // 𧡦
+ 0x27867: "\x04\x04\x05\x03\x01\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 𧡧
+ 0x27868: "\x02\x05\x01\x01\x01\x02\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𧡨
+ 0x27869: "\x03\x04\x04\x03\x01\x01\x03\x05\x04\x02\x05\x01\x01\x01\x03\x05", // 𧡩
+ 0x2786a: "\x01\x02\x02\x01\x01\x01\x03\x05\x05\x02\x05\x01\x01\x01\x03\x05", // 𧡪
+ 0x2786b: "\x05\x04\x03\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𧡫
+ 0x2786c: "\x03\x03\x05\x04\x01\x04\x03\x03\x03\x02\x05\x01\x01\x01\x03\x05", // 𧡬
+ 0x2786d: "\x02\x05\x01\x01\x01\x03\x05\x02\x05\x01\x01\x01\x02\x01\x02\x01", // 𧡭
+ 0x2786e: "\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 𧡮
+ 0x2786f: "\x03\x05\x04\x01\x03\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𧡯
+ 0x27870: "\x02\x05\x01\x01\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 𧡰
+ 0x27871: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 𧡱
+ 0x27872: "\x01\x01\x01\x03\x04\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 𧡲
+ 0x27873: "\x03\x04\x04\x03\x03\x05\x02\x05\x01\x02\x05\x01\x01\x01\x03\x05", // 𧡳
+ 0x27874: "\x01\x02\x05\x04\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𧡴
+ 0x27875: "\x01\x03\x04\x01\x02\x02\x01\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 𧡵
+ 0x27876: "\x02\x05\x01\x01\x03\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 𧡶
+ 0x27877: "\x02\x05\x01\x01\x01\x03\x05\x03\x05\x04\x04\x03\x01\x01\x02\x05\x02", // 𧡷
+ 0x27878: "\x05\x05\x01\x05\x05\x01\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 𧡸
+ 0x27879: "\x02\x01\x02\x05\x03\x04\x03\x04\x01\x05\x02\x05\x01\x01\x01\x03\x05", // 𧡹
+ 0x2787a: "\x01\x02\x01\x03\x01\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 𧡺
+ 0x2787b: "\x02\x05\x01\x03\x02\x05\x01\x01\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 𧡻
+ 0x2787c: "\x01\x02\x05\x01\x02\x05\x04\x03\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𧡼
+ 0x2787d: "\x01\x03\x04\x03\x04\x02\x03\x04\x05\x03\x02\x05\x01\x01\x01\x03\x05", // 𧡽
+ 0x2787e: "\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02\x02\x05\x01\x01\x01\x03\x05", // 𧡾
+ 0x2787f: "\x04\x01\x04\x03\x01\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𧡿
+ 0x27880: "\x01\x02\x05\x02\x02\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𧢀
+ 0x27881: "\x02\x05\x01\x01\x01\x03\x05\x01\x03\x01\x01\x05\x03\x04\x01\x02\x04", // 𧢁
+ 0x27882: "\x01\x03\x01\x01\x03\x04\x05\x03\x05\x05\x04\x02\x05\x01\x01\x01\x03\x05", // 𧢂
+ 0x27883: "\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01\x02\x05\x01\x01\x01\x03\x05", // 𧢃
+ 0x27884: "\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𧢄
+ 0x27885: "\x02\x05\x01\x01\x01\x03\x05\x02\x05\x01\x01\x01\x03\x05\x04\x05\x04\x04", // 𧢅
+ 0x27886: "\x01\x01\x01\x03\x04\x03\x02\x01\x05\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 𧢆
+ 0x27887: "\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 𧢇
+ 0x27888: "\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01\x01\x01\x03\x05", // 𧢈
+ 0x27889: "\x03\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 𧢉
+ 0x2788a: "\x02\x05\x01\x01\x01\x03\x05\x03\x04\x03\x04\x02\x05\x01\x03\x05\x03\x04", // 𧢊
+ 0x2788b: "\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03\x02\x05\x01\x01\x01\x03\x05", // 𧢋
+ 0x2788c: "\x03\x02\x05\x01\x01\x01\x04\x01\x03\x04\x01\x02\x02\x05\x01\x01\x01\x03\x05", // 𧢌
+ 0x2788d: "\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𧢍
+ 0x2788e: "\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𧢎
+ 0x2788f: "\x02\x01\x02\x01\x01\x03\x01\x02\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 𧢏
+ 0x27890: "\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 𧢐
+ 0x27891: "\x02\x05\x01\x01\x01\x03\x05\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01", // 𧢑
+ 0x27892: "\x03\x03\x02\x02\x05\x02\x01\x03\x05\x03\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𧢒
+ 0x27893: "\x03\x03\x02\x02\x05\x02\x01\x03\x05\x03\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𧢓
+ 0x27894: "\x01\x02\x05\x02\x03\x04\x02\x05\x01\x01\x01\x03\x05\x02\x05\x01\x01\x01\x03\x05", // 𧢔
+ 0x27895: "\x02\x01\x04\x05\x03\x04\x03\x04\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 𧢕
+ 0x27896: "\x01\x02\x01\x02\x01\x05\x01\x05\x03\x05\x02\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𧢖
+ 0x27897: "\x03\x05\x04\x05\x03\x01\x02\x01\x05\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 𧢗
+ 0x27898: "\x04\x04\x05\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𧢘
+ 0x27899: "\x02\x05\x01\x01\x01\x03\x05\x05\x01\x01\x01\x02\x04\x04\x04\x04\x02\x05\x02\x02\x01", // 𧢙
+ 0x2789a: "\x01\x02\x02\x01\x02\x05\x01\x03\x04\x04\x03\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 𧢚
+ 0x2789b: "\x02\x05\x01\x01\x01\x03\x05\x02\x05\x01\x01\x01\x03\x05\x02\x05\x01\x01\x01\x03\x05", // 𧢛
+ 0x2789c: "\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x03\x04\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𧢜
+ 0x2789d: "\x01\x03\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04\x02\x05\x01\x01\x01\x03\x05", // 𧢝
+ 0x2789e: "\x04\x05\x01\x03\x03\x05\x04\x01\x02\x05\x01\x01\x01\x03\x05\x02\x05\x01\x01\x01\x03\x05", // 𧢞
+ 0x2789f: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x02\x05\x01\x01\x01\x03\x05", // 𧢟
+ 0x278a0: "\x02\x05\x01\x01\x01\x03\x05\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x03\x01\x03\x04", // 𧢠
+ 0x278a1: "\x02\x05\x01\x01\x01\x03\x05\x03\x03\x02\x02\x05\x02\x01\x01\x01\x02\x01\x03\x01\x03\x04", // 𧢡
+ 0x278a2: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02\x02\x05\x01\x01\x01\x03\x05", // 𧢢
+ 0x278a3: "\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x03\x04\x05\x04\x01\x05\x02\x02\x05\x01\x01\x01\x03\x05", // 𧢣
+ 0x278a4: "\x02\x05\x01\x01\x01\x03\x05\x01\x02\x01\x02\x03\x03\x02\x02\x05\x02\x01\x03\x05\x03\x01\x03\x04", // 𧢤
+ 0x278a5: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x03\x05", // 𧢥
+ 0x278a6: "\x03\x02\x05\x01\x05\x01\x02\x01\x02\x01\x05\x01\x01\x04\x05\x02\x05\x02\x02\x05\x01\x01\x01\x03\x05", // 𧢦
+ 0x278a7: "\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x03\x05\x02\x05\x01\x02\x05\x01\x01\x01\x03\x05", // 𧢧
+ 0x278a8: "\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x01\x04\x03\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𧢨
+ 0x278a9: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 𧢩
+ 0x278aa: "\x04\x03\x02\x05\x01\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𧢪
+ 0x278ab: "\x03\x02\x05\x01\x05\x01\x02\x01\x02\x01\x05\x01\x01\x04\x05\x02\x05\x02\x02\x05\x01\x01\x01\x03\x05", // 𧢫
+ 0x278ac: "\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05\x02\x05\x01\x01\x01\x03\x05\x02\x05\x01\x01\x01\x03\x05", // 𧢬
+ 0x278ad: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04\x02\x05\x01\x01\x01\x03\x05", // 𧢭
+ 0x278ae: "\x01\x02\x05\x03\x04\x01\x02\x05\x03\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x02\x05\x01\x01\x01\x03\x05", // 𧢮
+ 0x278af: "\x02\x01\x02\x01\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04\x01\x05\x04\x01\x05\x04\x01\x02\x05\x01\x01\x01\x03\x05", // 𧢯
+ 0x278b0: "\x01\x02\x02\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03\x03\x03\x05\x03\x03\x03\x05\x03\x03\x03\x02\x05\x01\x01\x01\x03\x05", // 𧢰
+ 0x278b1: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x03\x04\x01\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x02\x05\x01\x01\x01\x03\x05", // 𧢱
+ 0x278b2: "\x03\x05\x02\x05\x03\x04\x03\x04", // 𧢲
+ 0x278b3: "\x03\x05\x03\x05\x01\x01\x02\x05", // 𧢳
+ 0x278b4: "\x03\x05\x03\x05\x01\x01\x02\x01\x02", // 𧢴
+ 0x278b5: "\x03\x05\x03\x05\x01\x01\x02\x01\x05", // 𧢵
+ 0x278b6: "\x03\x05\x03\x05\x01\x01\x02\x03\x05", // 𧢶
+ 0x278b7: "\x03\x05\x03\x05\x01\x01\x02\x05\x04\x04", // 𧢷
+ 0x278b8: "\x03\x05\x03\x05\x01\x01\x02\x01\x02\x01", // 𧢸
+ 0x278b9: "\x03\x05\x03\x05\x01\x01\x02\x02\x05\x02", // 𧢹
+ 0x278ba: "\x03\x05\x03\x05\x01\x01\x02\x05\x01\x05", // 𧢺
+ 0x278bb: "\x03\x05\x03\x05\x01\x01\x02\x03\x01\x01\x02", // 𧢻
+ 0x278bc: "\x05\x02\x01\x03\x03\x05\x03\x05\x01\x01\x02", // 𧢼
+ 0x278bd: "\x03\x05\x03\x05\x01\x01\x02\x03\x02\x01\x05", // 𧢽
+ 0x278be: "\x03\x05\x03\x05\x01\x01\x02\x01\x05\x03\x05", // 𧢾
+ 0x278bf: "\x03\x05\x03\x05\x01\x01\x02\x01\x02\x05\x02", // 𧢿
+ 0x278c0: "\x03\x05\x03\x05\x01\x01\x02\x02\x01\x05\x04", // 𧣀
+ 0x278c1: "\x03\x05\x03\x05\x01\x01\x02\x04\x05\x03\x05", // 𧣁
+ 0x278c2: "\x03\x05\x03\x05\x01\x01\x02\x01\x03\x05\x05", // 𧣂
+ 0x278c3: "\x03\x05\x03\x05\x01\x01\x02\x05\x02\x01\x05", // 𧣃
+ 0x278c4: "\x03\x05\x03\x05\x01\x01\x02\x01\x02\x05\x04", // 𧣄
+ 0x278c5: "\x01\x05\x01\x05\x03\x05\x03\x05\x01\x01\x02", // 𧣅
+ 0x278c6: "\x02\x01\x02\x01\x03\x05\x03\x05\x01\x01\x02", // 𧣆
+ 0x278c7: "\x03\x05\x03\x05\x01\x01\x02\x03\x05\x05\x04", // 𧣇
+ 0x278c8: "\x03\x05\x03\x05\x01\x01\x02\x03\x01\x01\x02", // 𧣈
+ 0x278c9: "\x03\x02\x01\x05\x03\x05\x03\x05\x01\x01\x02", // 𧣉
+ 0x278ca: "\x03\x05\x03\x05\x01\x01\x02\x03\x03\x01\x02", // 𧣊
+ 0x278cb: "\x03\x05\x03\x05\x01\x01\x02\x03\x04\x03\x02", // 𧣋
+ 0x278cc: "\x04\x03\x03\x04\x03\x05\x03\x05\x01\x01\x02", // 𧣌
+ 0x278cd: "\x03\x05\x03\x05\x01\x01\x02\x04\x05\x03\x05", // 𧣍
+ 0x278ce: "\x03\x05\x03\x05\x01\x01\x02\x01\x05\x05\x04", // 𧣎
+ 0x278cf: "\x03\x05\x03\x05\x01\x01\x02\x03\x05\x01\x01", // 𧣏
+ 0x278d0: "\x03\x05\x03\x05\x01\x01\x02\x01\x05\x02\x03", // 𧣐
+ 0x278d1: "\x03\x05\x03\x05\x01\x01\x02\x01\x02\x02\x01\x01", // 𧣑
+ 0x278d2: "\x03\x05\x03\x05\x01\x01\x02\x01\x05\x01\x05", // 𧣒
+ 0x278d3: "\x03\x05\x03\x05\x01\x01\x02\x04\x01\x01\x02\x01", // 𧣓
+ 0x278d4: "\x03\x05\x03\x05\x01\x01\x02\x01\x03\x02\x05\x01", // 𧣔
+ 0x278d5: "\x03\x05\x03\x05\x01\x01\x02\x02\x05\x03\x04\x01", // 𧣕
+ 0x278d6: "\x03\x05\x03\x05\x01\x01\x02\x04\x04\x05\x03\x05", // 𧣖
+ 0x278d7: "\x03\x05\x03\x05\x01\x01\x02\x01\x02\x02\x05\x01", // 𧣗
+ 0x278d8: "\x03\x05\x03\x05\x01\x01\x02\x01\x02\x05\x02\x03", // 𧣘
+ 0x278d9: "\x03\x05\x03\x05\x01\x01\x02\x04\x01\x05\x05\x04", // 𧣙
+ 0x278da: "\x03\x05\x03\x05\x01\x01\x02\x05\x01\x05\x04\x01", // 𧣚
+ 0x278db: "\x03\x05\x03\x05\x01\x01\x02\x02\x05\x03\x05\x01", // 𧣛
+ 0x278dc: "\x03\x05\x03\x05\x01\x01\x02\x03\x02\x01\x02\x01", // 𧣜
+ 0x278dd: "\x03\x05\x03\x05\x01\x01\x02\x03\x01\x02\x01\x01", // 𧣝
+ 0x278de: "\x03\x05\x03\x05\x01\x01\x02\x02\x05\x01\x01\x01", // 𧣞
+ 0x278df: "\x03\x05\x03\x05\x01\x01\x02\x03\x01\x05\x02\x05", // 𧣟
+ 0x278e0: "\x03\x05\x03\x05\x01\x01\x02\x01\x02\x01\x02\x01", // 𧣠
+ 0x278e1: "\x03\x05\x04\x03\x05\x04\x03\x05\x03\x05\x01\x01\x02", // 𧣡
+ 0x278e2: "\x03\x05\x03\x05\x01\x01\x02\x05\x01\x01\x05\x03\x04", // 𧣢
+ 0x278e3: "\x03\x05\x03\x05\x01\x01\x02\x03\x05\x04\x03\x05\x04", // 𧣣
+ 0x278e4: "\x03\x05\x03\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05", // 𧣤
+ 0x278e5: "\x03\x05\x03\x05\x01\x01\x02\x03\x05\x05\x04\x03\x05", // 𧣥
+ 0x278e6: "\x03\x05\x03\x05\x01\x01\x02\x04\x01\x03\x04\x03\x04", // 𧣦
+ 0x278e7: "\x03\x05\x03\x05\x01\x01\x02\x01\x05\x01\x05\x03\x04", // 𧣧
+ 0x278e8: "\x03\x05\x03\x05\x01\x01\x02\x01\x03\x01\x01\x05\x03\x04", // 𧣨
+ 0x278e9: "\x03\x05\x03\x05\x01\x01\x02\x03\x04\x01\x03\x02\x05\x02", // 𧣩
+ 0x278ea: "\x03\x05\x03\x05\x01\x01\x02\x02\x04\x03\x03\x05\x04\x01", // 𧣪
+ 0x278eb: "\x03\x05\x03\x05\x01\x01\x02\x02\x05\x01\x02\x01\x03\x04", // 𧣫
+ 0x278ec: "\x03\x05\x03\x05\x01\x01\x02\x04\x05\x02\x05\x01\x01\x01", // 𧣬
+ 0x278ed: "\x03\x05\x03\x05\x01\x01\x02\x03\x04\x04\x03\x05\x03\x03", // 𧣭
+ 0x278ee: "\x03\x05\x03\x05\x01\x01\x02\x01\x02\x05\x03\x05\x01\x01", // 𧣮
+ 0x278ef: "\x01\x02\x01\x03\x03\x01\x02\x03\x05\x03\x05\x01\x01\x02", // 𧣯
+ 0x278f0: "\x03\x05\x03\x05\x01\x01\x02\x01\x02\x05\x05\x01\x05\x01", // 𧣰
+ 0x278f1: "\x03\x05\x03\x05\x01\x01\x02\x01\x05\x05\x04\x05\x03\x04", // 𧣱
+ 0x278f2: "\x03\x05\x03\x05\x01\x01\x02\x01\x02\x05\x01\x01\x03\x04", // 𧣲
+ 0x278f3: "\x03\x05\x03\x05\x01\x01\x02\x03\x04\x03\x04\x02\x05\x01", // 𧣳
+ 0x278f4: "\x03\x05\x03\x05\x01\x01\x02\x01\x05\x03\x04\x01\x05\x03\x04", // 𧣴
+ 0x278f5: "\x03\x05\x03\x05\x01\x01\x02\x03\x04\x01\x02\x05\x01\x02\x02", // 𧣵
+ 0x278f6: "\x03\x05\x03\x05\x01\x01\x02\x02\x05\x02\x05\x01\x03\x05", // 𧣶
+ 0x278f7: "\x03\x05\x03\x05\x01\x01\x02\x03\x05\x01\x02\x01\x02\x05\x01", // 𧣷
+ 0x278f8: "\x03\x05\x03\x05\x01\x01\x02\x05\x04\x05\x04\x05\x04\x05\x04", // 𧣸
+ 0x278f9: "\x03\x05\x03\x05\x01\x01\x02\x04\x03\x03\x04\x04\x03\x03\x04", // 𧣹
+ 0x278fa: "\x03\x05\x03\x05\x01\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 𧣺
+ 0x278fb: "\x03\x05\x03\x05\x01\x01\x02\x05\x01\x03\x01\x02\x02\x05\x01", // 𧣻
+ 0x278fc: "\x03\x05\x03\x05\x01\x01\x02\x01\x02\x05\x01\x01\x05\x03\x04", // 𧣼
+ 0x278fd: "\x03\x05\x03\x05\x01\x01\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𧣽
+ 0x278fe: "\x03\x05\x03\x05\x01\x01\x02\x02\x01\x05\x03\x01\x05\x03\x05", // 𧣾
+ 0x278ff: "\x03\x05\x03\x05\x01\x01\x02\x04\x01\x04\x03\x01\x01\x01\x02", // 𧣿
+ 0x27900: "\x03\x05\x03\x05\x01\x01\x02\x04\x01\x02\x05\x01\x02\x03\x04", // 𧤀
+ 0x27901: "\x03\x05\x03\x05\x01\x01\x02\x01\x02\x01\x03\x04\x03\x05\x04", // 𧤁
+ 0x27902: "\x01\x02\x01\x03\x04\x03\x05\x04\x03\x05\x03\x05\x01\x01\x02", // 𧤂
+ 0x27903: "\x03\x05\x03\x05\x01\x01\x02\x02\x05\x01\x02\x01\x01\x03\x02", // 𧤃
+ 0x27904: "\x03\x05\x03\x05\x01\x01\x02\x03\x04\x03\x04\x02\x01\x03\x05", // 𧤄
+ 0x27905: "\x01\x02\x05\x01\x01\x05\x03\x04\x03\x05\x03\x05\x01\x01\x02", // 𧤅
+ 0x27906: "\x03\x05\x03\x05\x01\x01\x02\x05\x01\x05\x03\x05\x02\x03\x04", // 𧤆
+ 0x27907: "\x03\x05\x03\x05\x01\x01\x02\x04\x01\x05\x04\x01\x02\x03\x04", // 𧤇
+ 0x27908: "\x03\x05\x03\x05\x01\x01\x02\x01\x02\x02\x01\x01\x02\x03\x04", // 𧤈
+ 0x27909: "\x03\x05\x03\x05\x01\x01\x02\x02\x05\x01\x05\x03\x05\x04\x01", // 𧤉
+ 0x2790a: "\x03\x01\x01\x02\x05\x02\x02\x02\x03\x05\x03\x05\x01\x01\x02", // 𧤊
+ 0x2790b: "\x03\x05\x03\x05\x01\x01\x02\x05\x05\x04\x05\x05\x04\x01\x03\x02", // 𧤋
+ 0x2790c: "\x03\x05\x03\x05\x01\x01\x02\x01\x03\x04\x03\x05\x04\x03\x05\x04", // 𧤌
+ 0x2790d: "\x03\x05\x03\x05\x01\x01\x02\x04\x01\x04\x03\x04\x05\x02\x05\x02", // 𧤍
+ 0x2790e: "\x03\x05\x03\x05\x01\x01\x02\x04\x04\x05\x01\x02\x05\x01\x01\x01", // 𧤎
+ 0x2790f: "\x03\x05\x03\x05\x01\x01\x02\x02\x05\x01\x01\x02\x02\x01\x01\x01", // 𧤏
+ 0x27910: "\x03\x05\x03\x05\x01\x01\x02\x02\x05\x01\x02\x02\x05\x02\x05\x01", // 𧤐
+ 0x27911: "\x03\x02\x01\x05\x01\x01\x01\x03\x04\x03\x05\x03\x05\x01\x01\x02", // 𧤑
+ 0x27912: "\x03\x05\x03\x05\x01\x01\x02\x01\x02\x02\x01\x02\x05\x01\x01\x02", // 𧤒
+ 0x27913: "\x03\x05\x03\x05\x01\x01\x02\x01\x03\x01\x02\x01\x03\x05\x04\x01", // 𧤓
+ 0x27914: "\x03\x05\x03\x05\x01\x01\x02\x05\x04\x03\x03\x04\x03\x05\x05\x04", // 𧤔
+ 0x27915: "\x03\x05\x03\x05\x01\x01\x02\x04\x03\x01\x02\x05\x03\x05\x01\x01", // 𧤕
+ 0x27916: "\x03\x05\x03\x05\x01\x01\x02\x02\x05\x01\x02\x01\x01\x05\x03\x04", // 𧤖
+ 0x27917: "\x03\x05\x03\x05\x01\x01\x02\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 𧤗
+ 0x27918: "\x02\x05\x01\x01\x01\x02\x01\x03\x04\x03\x05\x03\x05\x01\x01\x02", // 𧤘
+ 0x27919: "\x03\x01\x02\x03\x04\x04\x03\x03\x04\x03\x05\x03\x05\x01\x01\x02", // 𧤙
+ 0x2791a: "\x03\x05\x03\x05\x01\x01\x02\x04\x01\x02\x05\x01\x01\x02\x03\x04", // 𧤚
+ 0x2791b: "\x03\x05\x03\x05\x01\x01\x02\x01\x01\x01\x03\x04\x03\x01\x02\x03\x04", // 𧤛
+ 0x2791c: "\x03\x05\x03\x05\x01\x01\x02\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𧤜
+ 0x2791d: "\x03\x05\x03\x05\x01\x01\x02\x03\x05\x03\x05\x02\x02\x05\x01\x02\x01", // 𧤝
+ 0x2791e: "\x03\x05\x03\x05\x01\x01\x02\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03", // 𧤞
+ 0x2791f: "\x03\x05\x03\x05\x01\x01\x02\x03\x01\x01\x05\x04\x03\x01\x02\x03\x04", // 𧤟
+ 0x27920: "\x03\x05\x03\x05\x01\x01\x02\x03\x05\x04\x01\x05\x02\x01\x02\x03\x04", // 𧤠
+ 0x27921: "\x03\x05\x03\x05\x01\x01\x02\x01\x05\x04\x01\x02\x01\x03\x01\x03\x04", // 𧤡
+ 0x27922: "\x03\x05\x03\x05\x01\x01\x02\x03\x05\x03\x05\x01\x01\x02\x05\x03", // 𧤢
+ 0x27923: "\x03\x05\x03\x05\x01\x01\x02\x01\x02\x01\x02\x02\x05\x01\x01\x01\x02", // 𧤣
+ 0x27924: "\x03\x05\x03\x05\x01\x01\x02\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03", // 𧤤
+ 0x27925: "\x03\x05\x03\x05\x01\x01\x02\x02\x01\x05\x03\x01\x05\x04\x01\x03\x04", // 𧤥
+ 0x27926: "\x03\x05\x03\x05\x01\x01\x02\x01\x03\x02\x05\x01\x02\x05\x02\x05\x01", // 𧤦
+ 0x27927: "\x03\x05\x03\x05\x01\x01\x02\x02\x01\x05\x03\x01\x05\x03\x05\x05\x04", // 𧤧
+ 0x27928: "\x03\x05\x03\x05\x01\x01\x02\x02\x05\x01\x01\x04\x04\x05\x05\x03\x01", // 𧤨
+ 0x27929: "\x03\x05\x03\x05\x01\x01\x02\x02\x05\x02\x02\x01\x02\x04\x01\x03\x04", // 𧤩
+ 0x2792a: "\x03\x05\x03\x05\x01\x01\x02\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03", // 𧤪
+ 0x2792b: "\x03\x05\x03\x05\x01\x01\x02\x03\x03\x02\x01\x05\x03\x01\x05\x03\x04", // 𧤫
+ 0x2792c: "\x03\x05\x03\x05\x01\x01\x02\x03\x05\x01\x05\x01\x03\x02\x05\x02\x02", // 𧤬
+ 0x2792d: "\x05\x02\x01\x05\x03\x05\x03\x05\x01\x01\x02\x05\x03\x03\x01\x01\x02", // 𧤭
+ 0x2792e: "\x03\x05\x03\x05\x01\x01\x02\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01", // 𧤮
+ 0x2792f: "\x03\x05\x03\x05\x01\x01\x02\x02\x05\x01\x02\x05\x01\x01\x05\x03\x04\x01", // 𧤯
+ 0x27930: "\x03\x05\x03\x05\x01\x01\x02\x01\x02\x05\x01\x04\x03\x01\x04\x04\x01\x02", // 𧤰
+ 0x27931: "\x03\x05\x03\x05\x01\x01\x02\x01\x02\x01\x02\x04\x01\x04\x03\x01\x01\x02", // 𧤱
+ 0x27932: "\x03\x05\x03\x05\x01\x01\x02\x01\x03\x05\x03\x03\x03\x04\x04\x04\x04\x04", // 𧤲
+ 0x27933: "\x03\x05\x03\x05\x01\x01\x02\x01\x05\x01\x01\x02\x05\x03\x01\x01\x02\x03", // 𧤳
+ 0x27934: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04\x03\x05\x03\x05\x01\x01\x02", // 𧤴
+ 0x27935: "\x03\x05\x03\x05\x01\x01\x02\x01\x02\x05\x01\x02\x05\x05\x04\x01\x02\x01", // 𧤵
+ 0x27936: "\x03\x05\x03\x05\x01\x01\x02\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04\x04", // 𧤶
+ 0x27937: "\x03\x05\x03\x05\x01\x01\x02\x03\x04\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 𧤷
+ 0x27938: "\x03\x05\x03\x05\x01\x01\x02\x03\x02\x05\x05\x04\x01\x03\x04\x03\x05\x04", // 𧤸
+ 0x27939: "\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x05\x03\x05\x01\x01\x02", // 𧤹
+ 0x2793a: "\x03\x05\x03\x05\x01\x01\x02\x01\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01", // 𧤺
+ 0x2793b: "\x03\x05\x03\x05\x01\x01\x02\x01\x02\x01\x02\x01\x01\x02\x01\x02\x01\x01\x02", // 𧤻
+ 0x2793c: "\x03\x05\x03\x05\x01\x01\x02\x01\x03\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04", // 𧤼
+ 0x2793d: "\x03\x05\x03\x05\x01\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x01\x01", // 𧤽
+ 0x2793e: "\x03\x05\x03\x05\x01\x01\x02\x05\x04\x05\x02\x03\x02\x05\x03\x05\x02\x05\x01", // 𧤾
+ 0x2793f: "\x03\x05\x03\x05\x01\x01\x02\x02\x05\x02\x01\x01\x02\x03\x04\x02\x01\x05\x04", // 𧤿
+ 0x27940: "\x01\x02\x05\x01\x01\x02\x05\x01\x01\x05\x03\x04\x03\x05\x03\x05\x01\x01\x02", // 𧥀
+ 0x27941: "\x03\x05\x03\x05\x01\x01\x02\x05\x03\x03\x01\x01\x02\x03\x02\x05\x02\x05\x01", // 𧥁
+ 0x27942: "\x03\x05\x03\x05\x01\x01\x02\x05\x04\x01\x05\x04\x01\x03\x04\x02\x04\x04\x04", // 𧥂
+ 0x27943: "\x03\x05\x03\x05\x01\x01\x02\x05\x02\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 𧥃
+ 0x27944: "\x03\x05\x03\x05\x01\x01\x02\x02\x05\x01\x01\x02\x02\x01\x01\x01\x05\x03\x04", // 𧥄
+ 0x27945: "\x03\x05\x03\x05\x01\x01\x02\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03", // 𧥅
+ 0x27946: "\x01\x02\x01\x04\x05\x01\x03\x05\x03\x05\x01\x01\x02\x01\x02\x05\x01\x02\x03\x04", // 𧥆
+ 0x27947: "\x03\x05\x03\x05\x01\x01\x02\x02\x05\x02\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 𧥇
+ 0x27948: "\x03\x05\x03\x05\x01\x01\x02\x01\x02\x05\x01\x02\x05\x03\x01\x01\x02\x05\x02\x02\x01", // 𧥈
+ 0x27949: "\x03\x05\x03\x05\x01\x01\x02\x04\x01\x02\x05\x01\x04\x05\x01\x03\x05\x05\x03\x03\x04", // 𧥉
+ 0x2794a: "\x03\x05\x03\x05\x01\x01\x02\x02\x05\x02\x02\x01\x02\x04\x01\x03\x04\x03\x05\x03\x04", // 𧥊
+ 0x2794b: "\x03\x05\x03\x05\x01\x01\x02\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𧥋
+ 0x2794c: "\x03\x05\x03\x05\x01\x01\x02\x04\x01\x03\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04", // 𧥌
+ 0x2794d: "\x03\x05\x03\x05\x01\x01\x02\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x04\x04\x04\x04", // 𧥍
+ 0x2794e: "\x03\x05\x03\x05\x01\x01\x02\x03\x05\x02\x05\x03\x04\x02\x05\x01\x01\x01\x02\x01\x05\x04", // 𧥎
+ 0x2794f: "\x03\x05\x03\x05\x01\x01\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x03\x04\x02\x05\x01", // 𧥏
+ 0x27950: "\x03\x05\x03\x05\x01\x01\x02\x04\x03\x01\x01\x02\x01\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𧥐
+ 0x27951: "\x01\x05\x03\x04\x02\x05\x01\x01\x01\x05\x03\x04\x02\x05\x01\x01\x03\x05\x03\x05\x01\x01\x02", // 𧥑
+ 0x27952: "\x03\x05\x03\x05\x01\x01\x02\x03\x05\x02\x05\x01\x03\x05\x04\x03\x05\x02\x05\x01\x03\x05\x04", // 𧥒
+ 0x27953: "\x03\x05\x03\x05\x01\x01\x02\x03\x05\x02\x05\x01\x01\x05\x03\x05\x03\x05\x02\x05\x01\x03\x05\x04", // 𧥓
+ 0x27954: "\x05\x02\x01\x05\x03\x05\x03\x05\x01\x01\x02\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 𧥔
+ 0x27955: "\x03\x05\x03\x05\x01\x01\x02\x02\x01\x02\x01\x03\x05\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𧥕
+ 0x27956: "\x03\x05\x03\x05\x01\x01\x02\x01\x02\x05\x04\x01\x02\x05\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05", // 𧥖
+ 0x27957: "\x03\x05\x03\x05\x01\x01\x02\x01\x02\x05\x03\x04\x01\x02\x05\x03\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 𧥗
+ 0x27958: "\x03\x05\x03\x05\x01\x01\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 𧥘
+ 0x27959: "\x01\x03\x01\x02\x05\x01\x05\x03\x04\x01\x03\x01\x02\x05\x01\x05\x03\x04\x03\x05\x03\x05\x01\x01\x02\x02\x01\x05\x04", // 𧥙
+ 0x2795a: "\x01\x03\x01\x02\x05\x01\x05\x03\x04\x01\x03\x01\x02\x05\x01\x05\x03\x04\x02\x01\x05\x04\x03\x05\x03\x05\x01\x01\x02", // 𧥚
+ 0x2795b: "\x04\x01\x01\x01\x02\x05", // 𧥛
+ 0x2795c: "\x04\x01\x01\x01\x05\x02", // 𧥜
+ 0x2795d: "\x05\x04\x01\x01\x01\x02\x05\x01", // 𧥝
+ 0x2795e: "\x04\x01\x01\x01\x02\x05\x01\x02", // 𧥞
+ 0x2795f: "\x04\x01\x01\x01\x02\x05\x01\x05", // 𧥟
+ 0x27960: "\x03\x05\x04\x01\x01\x01\x02\x05\x01", // 𧥠
+ 0x27961: "\x04\x01\x01\x01\x02\x05\x01\x05\x04", // 𧥡
+ 0x27962: "\x01\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 𧥢
+ 0x27963: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01", // 𧥣
+ 0x27964: "\x04\x01\x01\x01\x02\x05\x01\x05\x01\x03", // 𧥤
+ 0x27965: "\x05\x05\x05\x04\x01\x01\x01\x02\x05\x01", // 𧥥
+ 0x27966: "\x04\x01\x01\x01\x02\x05\x01\x01\x01\x05", // 𧥦
+ 0x27967: "\x03\x05\x04\x04\x01\x01\x01\x02\x05\x01", // 𧥧
+ 0x27968: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x05", // 𧥨
+ 0x27969: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x05", // 𧥩
+ 0x2796a: "\x04\x01\x01\x01\x02\x05\x01\x01\x05\x02", // 𧥪
+ 0x2796b: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x05", // 𧥫
+ 0x2796c: "\x04\x01\x01\x01\x02\x05\x01\x03\x03\x05", // 𧥬
+ 0x2796d: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x05", // 𧥭
+ 0x2796e: "\x04\x01\x01\x01\x02\x05\x01\x01\x05\x05\x01", // 𧥮
+ 0x2796f: "\x04\x01\x01\x01\x02\x05\x01\x01\x05\x02\x04", // 𧥯
+ 0x27970: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x05\x03", // 𧥰
+ 0x27971: "\x04\x01\x01\x01\x02\x05\x01\x01\x01\x03\x04", // 𧥱
+ 0x27972: "\x03\x05\x03\x03\x04\x01\x01\x01\x02\x05\x01", // 𧥲
+ 0x27973: "\x04\x01\x01\x01\x02\x05\x01\x05\x02\x02\x01", // 𧥳
+ 0x27974: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x05\x02", // 𧥴
+ 0x27975: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01", // 𧥵
+ 0x27976: "\x04\x01\x01\x01\x02\x05\x01\x01\x01\x02\x01", // 𧥶
+ 0x27977: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x01\x05", // 𧥷
+ 0x27978: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x01\x02", // 𧥸
+ 0x27979: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x01\x02", // 𧥹
+ 0x2797a: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x01\x01", // 𧥺
+ 0x2797b: "\x03\x05\x01\x01\x04\x01\x01\x01\x02\x05\x01", // 𧥻
+ 0x2797c: "\x04\x01\x01\x01\x02\x05\x01\x01\x01\x05\x04", // 𧥼
+ 0x2797d: "\x01\x01\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 𧥽
+ 0x2797e: "\x04\x01\x01\x01\x02\x05\x01\x01\x05\x03\x04", // 𧥾
+ 0x2797f: "\x02\x05\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 𧥿
+ 0x27980: "\x04\x01\x01\x01\x02\x05\x01\x05\x04\x05\x04", // 𧦀
+ 0x27981: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x03\x04", // 𧦁
+ 0x27982: "\x04\x01\x01\x01\x02\x05\x01\x05\x01\x03\x04", // 𧦂
+ 0x27983: "\x04\x01\x01\x01\x02\x05\x01\x05\x04\x05\x02", // 𧦃
+ 0x27984: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x01\x05", // 𧦄
+ 0x27985: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x04\x05", // 𧦅
+ 0x27986: "\x04\x01\x01\x01\x02\x05\x01\x05\x04\x05\x02", // 𧦆
+ 0x27987: "\x03\x05\x04\x01\x04\x01\x01\x01\x02\x05\x01", // 𧦇
+ 0x27988: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x01\x03", // 𧦈
+ 0x27989: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x05", // 𧦉
+ 0x2798a: "\x02\x05\x01\x01\x04\x01\x01\x01\x02\x05\x01", // 𧦊
+ 0x2798b: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x03\x04", // 𧦋
+ 0x2798c: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x01\x02", // 𧦌
+ 0x2798d: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x03\x03", // 𧦍
+ 0x2798e: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x05\x01", // 𧦎
+ 0x2798f: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x05\x05", // 𧦏
+ 0x27990: "\x04\x01\x01\x01\x02\x05\x01\x03\x03\x02\x04", // 𧦐
+ 0x27991: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x03\x05", // 𧦑
+ 0x27992: "\x04\x01\x01\x01\x02\x05\x01\x05\x01\x05\x01", // 𧦒
+ 0x27993: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x01\x05", // 𧦓
+ 0x27994: "\x03\x05\x04\x01\x01\x01\x02\x05\x01\x01\x02", // 𧦔
+ 0x27995: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x03\x05", // 𧦕
+ 0x27996: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x02\x05", // 𧦖
+ 0x27997: "\x03\x05\x01\x01\x04\x01\x01\x01\x02\x05\x01", // 𧦗
+ 0x27998: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x05\x04", // 𧦘
+ 0x27999: "\x05\x04\x05\x02\x04\x01\x01\x01\x02\x05\x01", // 𧦙
+ 0x2799a: "\x04\x01\x01\x01\x02\x05\x01\x01\x05\x05\x04", // 𧦚
+ 0x2799b: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x05\x04", // 𧦛
+ 0x2799c: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x02\x03\x04", // 𧦜
+ 0x2799d: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x03\x01\x02", // 𧦝
+ 0x2799e: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x02\x05\x02", // 𧦞
+ 0x2799f: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x05\x04", // 𧦟
+ 0x279a0: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x05\x05", // 𧦠
+ 0x279a1: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x01\x01\x02", // 𧦡
+ 0x279a2: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x05", // 𧦢
+ 0x279a3: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x05\x03\x01", // 𧦣
+ 0x279a4: "\x04\x01\x01\x01\x02\x05\x01\x05\x03\x02\x05\x01", // 𧦤
+ 0x279a5: "\x05\x05\x04\x01\x04\x04\x01\x01\x01\x02\x05\x01", // 𧦥
+ 0x279a6: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x02\x01\x01", // 𧦦
+ 0x279a7: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x05\x02\x05", // 𧦧
+ 0x279a8: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x04\x02\x04", // 𧦨
+ 0x279a9: "\x04\x01\x01\x01\x02\x05\x01\x01\x05\x02\x05\x05", // 𧦩
+ 0x279aa: "\x01\x02\x01\x05\x03\x04\x01\x01\x01\x02\x05\x01", // 𧦪
+ 0x279ab: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01", // 𧦫
+ 0x279ac: "\x01\x02\x01\x03\x05\x04\x01\x01\x01\x02\x05\x01", // 𧦬
+ 0x279ad: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x05\x02\x05", // 𧦭
+ 0x279ae: "\x04\x01\x01\x01\x02\x05\x01\x05\x01\x05\x04", // 𧦮
+ 0x279af: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x05\x03\x03", // 𧦯
+ 0x279b0: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x04\x03\x01", // 𧦰
+ 0x279b1: "\x04\x04\x05\x03\x05\x04\x01\x01\x01\x02\x05\x01", // 𧦱
+ 0x279b2: "\x05\x03\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01", // 𧦲
+ 0x279b3: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x02\x05\x01", // 𧦳
+ 0x279b4: "\x05\x04\x03\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 𧦴
+ 0x279b5: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 𧦵
+ 0x279b6: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x02\x05\x01", // 𧦶
+ 0x279b7: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x03\x04\x05", // 𧦷
+ 0x279b8: "\x01\x01\x02\x02\x05\x04\x01\x01\x01\x02\x05\x01", // 𧦸
+ 0x279b9: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x03\x04\x01", // 𧦹
+ 0x279ba: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x01\x02\x01", // 𧦺
+ 0x279bb: "\x04\x01\x01\x01\x02\x05\x01\x03\x03\x04\x01\x05", // 𧦻
+ 0x279bc: "\x04\x01\x01\x01\x02\x05\x01\x03\x03\x05\x04\x04", // 𧦼
+ 0x279bd: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x02\x03\x04", // 𧦽
+ 0x279be: "\x04\x01\x01\x01\x02\x05\x01\x05\x01\x02\x05\x04", // 𧦾
+ 0x279bf: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x05\x03\x04", // 𧦿
+ 0x279c0: "\x04\x01\x01\x01\x02\x05\x01\x01\x05\x05\x04", // 𧧀
+ 0x279c1: "\x03\x05\x04\x05\x05\x04\x01\x01\x01\x02\x05\x01", // 𧧁
+ 0x279c2: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x02\x03\x04", // 𧧂
+ 0x279c3: "\x01\x02\x02\x05\x01\x02\x05\x04\x01\x01\x01\x02\x05\x01", // 𧧃
+ 0x279c4: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x05\x05\x03\x01", // 𧧄
+ 0x279c5: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x05\x01\x03\x04", // 𧧅
+ 0x279c6: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x05\x01\x05\x01", // 𧧆
+ 0x279c7: "\x04\x01\x01\x01\x02\x05\x01\x05\x03\x01\x02\x03\x04", // 𧧇
+ 0x279c8: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x02\x03\x04", // 𧧈
+ 0x279c9: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x03\x03\x01\x05", // 𧧉
+ 0x279ca: "\x04\x01\x01\x01\x02\x05\x01\x03\x03\x01\x05\x05", // 𧧊
+ 0x279cb: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x05\x04\x02\x02", // 𧧋
+ 0x279cc: "\x04\x01\x01\x01\x02\x05\x01\x02\x01\x01\x02\x03\x04", // 𧧌
+ 0x279cd: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x05\x03\x05\x01", // 𧧍
+ 0x279ce: "\x04\x01\x01\x01\x02\x05\x01\x02\x01\x01\x01\x02\x04", // 𧧎
+ 0x279cf: "\x05\x03\x01\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01", // 𧧏
+ 0x279d0: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x01\x05\x03\x04", // 𧧐
+ 0x279d1: "\x04\x01\x04\x03\x01\x03\x04\x01\x01\x01\x02\x05\x01", // 𧧑
+ 0x279d2: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x05\x02\x03\x04", // 𧧒
+ 0x279d3: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x05\x02\x02\x01", // 𧧓
+ 0x279d4: "\x04\x01\x01\x01\x02\x05\x01\x03\x03\x05\x04\x01\x04", // 𧧔
+ 0x279d5: "\x04\x01\x01\x01\x02\x05\x01\x04\x04\x05\x05\x02\x01", // 𧧕
+ 0x279d6: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x01\x05\x01\x01", // 𧧖
+ 0x279d7: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x05\x02\x03\x05", // 𧧗
+ 0x279d8: "\x04\x01\x01\x01\x02\x05\x01\x05\x03\x05\x02\x01\x05", // 𧧘
+ 0x279d9: "\x03\x05\x04\x01\x04\x01\x01\x01\x02\x05\x01\x05\x04", // 𧧙
+ 0x279da: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x02\x02", // 𧧚
+ 0x279db: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x01\x01", // 𧧛
+ 0x279dc: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x03\x04\x03\x04", // 𧧜
+ 0x279dd: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x01\x05\x02\x03", // 𧧝
+ 0x279de: "\x03\x04\x04\x03\x04\x01\x01\x01\x02\x05\x01\x05\x04", // 𧧞
+ 0x279df: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x05\x03\x04", // 𧧟
+ 0x279e0: "\x04\x01\x01\x01\x02\x05\x01\x05\x01\x01\x05\x01\x01", // 𧧠
+ 0x279e1: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x03\x04\x05\x04", // 𧧡
+ 0x279e2: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x05\x03\x02\x05", // 𧧢
+ 0x279e3: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x03\x04\x05\x02", // 𧧣
+ 0x279e4: "\x04\x01\x01\x01\x02\x05\x01\x04\x03\x01\x01\x03\x04", // 𧧤
+ 0x279e5: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x02\x01", // 𧧥
+ 0x279e6: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x05\x02\x05\x01", // 𧧦
+ 0x279e7: "\x02\x05\x03\x04\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 𧧧
+ 0x279e8: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x01\x02\x03\x04", // 𧧨
+ 0x279e9: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x03\x02\x03\x04", // 𧧩
+ 0x279ea: "\x04\x01\x01\x01\x02\x05\x01\x05\x01\x01\x01\x01\x02", // 𧧪
+ 0x279eb: "\x04\x01\x01\x01\x02\x05\x01\x05\x01\x03\x01\x02\x01", // 𧧫
+ 0x279ec: "\x01\x02\x01\x04\x01\x01\x01\x02\x05\x01\x05\x03\x04", // 𧧬
+ 0x279ed: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x04\x01\x05\x02", // 𧧭
+ 0x279ee: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x05\x05\x05\x05", // 𧧮
+ 0x279ef: "\x04\x01\x01\x01\x02\x05\x01\x02\x04\x03\x01\x03\x05", // 𧧯
+ 0x279f0: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05", // 𧧰
+ 0x279f1: "\x04\x01\x01\x01\x02\x05\x01\x05\x01\x01\x02\x05\x02", // 𧧱
+ 0x279f2: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x02\x01\x03\x05", // 𧧲
+ 0x279f3: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x04\x01\x05\x02", // 𧧳
+ 0x279f4: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x05\x04\x05\x04\x04", // 𧧴
+ 0x279f5: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x04\x03\x04\x03\x04", // 𧧵
+ 0x279f6: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x01\x01\x02\x03\x04", // 𧧶
+ 0x279f7: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x04\x01\x03\x04\x04", // 𧧷
+ 0x279f8: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x05\x03\x02\x02", // 𧧸
+ 0x279f9: "\x03\x02\x02\x05\x01\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 𧧹
+ 0x279fa: "\x04\x01\x01\x01\x02\x05\x01\x01\x05\x01\x05\x01\x02\x01", // 𧧺
+ 0x279fb: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x03\x01\x02\x01\x01", // 𧧻
+ 0x279fc: "\x04\x01\x01\x01\x02\x05\x01\x04\x04\x05\x02\x05\x04\x01", // 𧧼
+ 0x279fd: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x04\x01\x01\x01\x02", // 𧧽
+ 0x279fe: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𧧾
+ 0x279ff: "\x03\x04\x03\x04\x05\x02\x01\x04\x01\x01\x01\x02\x05\x01", // 𧧿
+ 0x27a00: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x03\x04\x01\x02\x01", // 𧨀
+ 0x27a01: "\x04\x03\x01\x01\x02\x01\x03\x04\x01\x01\x01\x02\x05\x01", // 𧨁
+ 0x27a02: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x01\x02\x05\x01\x02", // 𧨂
+ 0x27a03: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x03\x02\x03\x04", // 𧨃
+ 0x27a04: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x02\x01\x01\x05", // 𧨄
+ 0x27a05: "\x01\x02\x01\x02\x01\x02\x01\x04\x01\x01\x01\x02\x05\x01", // 𧨅
+ 0x27a06: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x05\x04\x03\x02\x05", // 𧨆
+ 0x27a07: "\x04\x01\x01\x01\x02\x05\x01\x05\x01\x03\x01\x02\x03\x04", // 𧨇
+ 0x27a08: "\x01\x02\x03\x04\x03\x04\x01\x04\x01\x01\x01\x02\x05\x01", // 𧨈
+ 0x27a09: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x05\x03\x01\x02\x01", // 𧨉
+ 0x27a0a: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x03\x01\x02\x01\x01", // 𧨊
+ 0x27a0b: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x01\x02\x01", // 𧨋
+ 0x27a0c: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x04\x01\x03\x04\x01", // 𧨌
+ 0x27a0d: "\x03\x02\x02\x05\x01\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 𧨍
+ 0x27a0e: "\x04\x01\x01\x01\x02\x05\x01\x04\x04\x05\x01\x01\x03\x05", // 𧨎
+ 0x27a0f: "\x04\x01\x01\x01\x02\x05\x01\x04\x05\x02\x05\x01\x01\x01", // 𧨏
+ 0x27a10: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x03\x04\x05\x03\x01", // 𧨐
+ 0x27a11: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x02\x05\x01\x05\x02", // 𧨑
+ 0x27a12: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01\x03\x04", // 𧨒
+ 0x27a13: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x05\x04", // 𧨓
+ 0x27a14: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x02\x04\x01\x05", // 𧨔
+ 0x27a15: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x02\x05\x01\x03\x05", // 𧨕
+ 0x27a16: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x03\x05\x01\x01\x02", // 𧨖
+ 0x27a17: "\x04\x01\x01\x01\x02\x05\x01\x01\x01\x02\x04\x03\x03\x04", // 𧨗
+ 0x27a18: "\x04\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x03\x03\x03", // 𧨘
+ 0x27a19: "\x04\x01\x01\x01\x02\x05\x01\x05\x01\x02\x01\x01\x02\x01", // 𧨙
+ 0x27a1a: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x01", // 𧨚
+ 0x27a1b: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x01\x01\x05", // 𧨛
+ 0x27a1c: "\x04\x01\x01\x01\x02\x05\x01\x05\x04\x03\x05\x04\x01", // 𧨜
+ 0x27a1d: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x03\x05\x02\x05\x01", // 𧨝
+ 0x27a1e: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x04\x03\x01\x03\x04", // 𧨞
+ 0x27a1f: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01", // 𧨟
+ 0x27a20: "\x04\x01\x01\x01\x02\x05\x01\x04\x04\x05\x03\x05\x05\x04", // 𧨠
+ 0x27a21: "\x04\x01\x01\x01\x02\x05\x01\x05\x01\x01\x03\x02\x05\x01", // 𧨡
+ 0x27a22: "\x04\x01\x01\x01\x02\x05\x01\x02\x01\x02\x01\x01\x01\x02", // 𧨢
+ 0x27a23: "\x02\x05\x03\x05\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01", // 𧨣
+ 0x27a24: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x01", // 𧨤
+ 0x27a25: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x04\x02\x05\x01\x01", // 𧨥
+ 0x27a26: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x01\x02\x05\x02\x02\x01", // 𧨦
+ 0x27a27: "\x05\x02\x01\x03\x01\x02\x01\x04\x01\x01\x01\x02\x05\x01", // 𧨧
+ 0x27a28: "\x04\x01\x01\x01\x02\x05\x01\x04\x05\x04\x03\x04\x02\x05\x02", // 𧨨
+ 0x27a29: "\x04\x01\x01\x01\x02\x05\x01\x01\x01\x03\x04\x02\x04\x04\x04", // 𧨩
+ 0x27a2a: "\x04\x01\x01\x01\x02\x05\x01\x02\x01\x05\x04\x03\x05\x04\x01", // 𧨪
+ 0x27a2b: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x04\x04\x03\x01\x01\x02", // 𧨫
+ 0x27a2c: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x01\x01\x03\x02", // 𧨬
+ 0x27a2d: "\x01\x02\x05\x01\x02\x05\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 𧨭
+ 0x27a2e: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x05\x01\x05\x01\x01\x02", // 𧨮
+ 0x27a2f: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x05\x04\x01\x02\x03\x04", // 𧨯
+ 0x27a30: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x01\x02\x05\x02\x02\x02", // 𧨰
+ 0x27a31: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x03\x03\x05\x01\x05\x01", // 𧨱
+ 0x27a32: "\x02\x04\x03\x04\x05\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01", // 𧨲
+ 0x27a33: "\x04\x01\x01\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x02", // 𧨳
+ 0x27a34: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x05\x01\x05\x01\x01\x02", // 𧨴
+ 0x27a35: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x03\x01\x01\x02\x05\x02", // 𧨵
+ 0x27a36: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x02\x03\x01\x03\x04", // 𧨶
+ 0x27a37: "\x04\x01\x01\x01\x02\x05\x01\x02\x01\x02\x01\x03\x05\x04\x01", // 𧨷
+ 0x27a38: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x02\x01\x03\x04", // 𧨸
+ 0x27a39: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x01\x02\x04\x01\x03\x04", // 𧨹
+ 0x27a3a: "\x04\x01\x04\x03\x01\x04\x01\x01\x01\x02\x05\x01\x05\x03\x04", // 𧨺
+ 0x27a3b: "\x03\x02\x01\x02\x02\x01\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 𧨻
+ 0x27a3c: "\x04\x01\x01\x01\x02\x05\x01\x02\x01\x02\x05\x03\x05\x04\x01", // 𧨼
+ 0x27a3d: "\x04\x01\x01\x01\x02\x05\x01\x05\x02\x03\x02\x01\x02\x04", // 𧨽
+ 0x27a3e: "\x04\x01\x01\x01\x02\x05\x01\x04\x05\x03\x05\x01\x02\x03\x04", // 𧨾
+ 0x27a3f: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 𧨿
+ 0x27a40: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x03\x05\x04\x03\x05\x04", // 𧩀
+ 0x27a41: "\x02\x05\x03\x04\x04\x01\x01\x01\x02\x05\x01\x02\x05\x03\x04", // 𧩁
+ 0x27a42: "\x04\x01\x01\x01\x02\x05\x01\x01\x01\x03\x05\x04\x01\x05\x03", // 𧩂
+ 0x27a43: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x02\x03\x04\x03\x04", // 𧩃
+ 0x27a44: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x04\x03\x04\x01\x02\x01", // 𧩄
+ 0x27a45: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x03\x01\x05\x03\x05\x04", // 𧩅
+ 0x27a46: "\x04\x01\x01\x01\x02\x05\x01\x01\x05\x01\x05\x01\x02\x01", // 𧩆
+ 0x27a47: "\x04\x01\x01\x01\x02\x05\x01\x04\x05\x04\x04\x03\x05\x04", // 𧩇
+ 0x27a48: "\x04\x01\x01\x01\x02\x05\x01\x04\x05\x01\x03\x01\x03\x04\x04", // 𧩈
+ 0x27a49: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x03\x05\x01\x01\x03\x04", // 𧩉
+ 0x27a4a: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x04\x04\x03\x01\x01\x05", // 𧩊
+ 0x27a4b: "\x01\x02\x03\x04\x01\x02\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 𧩋
+ 0x27a4c: "\x04\x01\x01\x01\x02\x05\x01\x05\x02\x01\x02\x05\x02\x02\x01", // 𧩌
+ 0x27a4d: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x05\x01\x03\x04", // 𧩍
+ 0x27a4e: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x03\x05\x03\x03", // 𧩎
+ 0x27a4f: "\x03\x05\x01\x03\x04\x01\x03\x05\x04\x01\x01\x01\x02\x05\x01", // 𧩏
+ 0x27a50: "\x04\x01\x01\x01\x02\x05\x01\x02\x01\x05\x03\x01\x05\x03\x04", // 𧩐
+ 0x27a51: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x05\x03\x05\x04\x01", // 𧩑
+ 0x27a52: "\x04\x01\x01\x01\x02\x05\x01\x03\x03\x03\x05\x05\x04\x01\x04", // 𧩒
+ 0x27a53: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x03\x03\x04\x05\x04\x04", // 𧩓
+ 0x27a54: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x03\x04\x03\x01\x01\x02", // 𧩔
+ 0x27a55: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x04\x03\x01\x05\x03\x01", // 𧩕
+ 0x27a56: "\x04\x01\x01\x01\x02\x05\x01\x05\x02\x01\x01\x05\x02\x01\x01", // 𧩖
+ 0x27a57: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x01\x03\x01\x03\x05", // 𧩗
+ 0x27a58: "\x04\x01\x01\x01\x02\x05\x01\x05\x03\x03\x03\x05\x03\x03\x03", // 𧩘
+ 0x27a59: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x01\x05\x04", // 𧩙
+ 0x27a5a: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x04\x02\x04\x01\x03\x04", // 𧩚
+ 0x27a5b: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x02\x05\x01\x01\x01\x05", // 𧩛
+ 0x27a5c: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x01\x01\x02\x03\x04", // 𧩜
+ 0x27a5d: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x01\x03\x03\x05\x01\x01", // 𧩝
+ 0x27a5e: "\x01\x02\x02\x01\x01\x01\x05\x04\x04\x01\x01\x01\x02\x05\x01", // 𧩞
+ 0x27a5f: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x05\x04\x04\x05\x04\x04", // 𧩟
+ 0x27a60: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x01\x03\x02\x05\x01\x01", // 𧩠
+ 0x27a61: "\x04\x01\x01\x01\x02\x05\x01\x02\x04\x03\x02\x05\x02\x05\x01", // 𧩡
+ 0x27a62: "\x04\x01\x01\x01\x02\x05\x01\x02\x01\x02\x01\x01\x05\x02\x05\x01", // 𧩢
+ 0x27a63: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x05\x03\x02\x05\x03\x04\x01", // 𧩣
+ 0x27a64: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 𧩤
+ 0x27a65: "\x01\x01\x02\x03\x04\x03\x01\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 𧩥
+ 0x27a66: "\x04\x01\x01\x01\x02\x05\x01\x01\x05\x02\x05\x01\x05\x04\x01", // 𧩦
+ 0x27a67: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x03\x01\x02\x02\x01\x05\x04", // 𧩧
+ 0x27a68: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x05\x01\x03\x01\x01\x03\x04", // 𧩨
+ 0x27a69: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x01\x03\x03\x01\x01\x03\x04", // 𧩩
+ 0x27a6a: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x03\x03\x04\x04\x05\x04\x04", // 𧩪
+ 0x27a6b: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x04\x03\x05\x04\x03\x05\x04", // 𧩫
+ 0x27a6c: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𧩬
+ 0x27a6d: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x01\x02\x01\x03\x05\x04\x01", // 𧩭
+ 0x27a6e: "\x04\x01\x01\x01\x02\x05\x01\x04\x04\x05\x03\x04\x03\x04\x05\x04", // 𧩮
+ 0x27a6f: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x03\x04\x03\x01\x05\x02\x03", // 𧩯
+ 0x27a70: "\x04\x01\x01\x01\x02\x05\x01\x04\x04\x05\x03\x04\x04\x05\x04", // 𧩰
+ 0x27a71: "\x04\x01\x01\x01\x02\x05\x01\x05\x01\x03\x04\x03\x01\x01\x03\x02", // 𧩱
+ 0x27a72: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x05\x01\x02\x03\x04\x02\x02", // 𧩲
+ 0x27a73: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x02\x03\x01\x02\x01\x01", // 𧩳
+ 0x27a74: "\x04\x01\x01\x01\x02\x05\x01\x05\x01\x03\x03\x05\x01\x02\x03\x04", // 𧩴
+ 0x27a75: "\x04\x01\x01\x01\x02\x05\x01\x02\x03\x04\x01\x01\x01\x02\x05\x01", // 𧩵
+ 0x27a76: "\x04\x01\x01\x01\x02\x05\x01\x01\x01\x01\x02\x05\x03\x01\x03\x04", // 𧩶
+ 0x27a77: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x04\x05\x05\x04\x05\x04\x04", // 𧩷
+ 0x27a78: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x01\x02\x05\x01\x01\x03\x02", // 𧩸
+ 0x27a79: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x05\x03\x03\x01\x05\x02\x05", // 𧩹
+ 0x27a7a: "\x04\x01\x01\x01\x02\x05\x01\x03\x03\x02\x05\x01\x01\x05\x03\x04", // 𧩺
+ 0x27a7b: "\x04\x01\x01\x01\x02\x05\x01\x01\x01\x01\x03\x04\x01\x01\x03\x04", // 𧩻
+ 0x27a7c: "\x04\x01\x01\x01\x02\x05\x01\x01\x05\x04\x01\x02\x01\x03\x01\x03\x04", // 𧩼
+ 0x27a7d: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x02\x02\x01\x01\x05\x02\x01", // 𧩽
+ 0x27a7e: "\x01\x02\x05\x01\x02\x05\x03\x01\x01\x04\x01\x01\x01\x02\x05\x01", // 𧩾
+ 0x27a7f: "\x04\x01\x01\x01\x02\x05\x01\x05\x01\x05\x05\x01\x05\x01\x03\x04", // 𧩿
+ 0x27a80: "\x04\x01\x01\x01\x02\x05\x01\x05\x01\x05\x01\x02\x01\x01\x02\x01", // 𧪀
+ 0x27a81: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x05\x02\x05\x04\x05\x04", // 𧪁
+ 0x27a82: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x02\x05\x01\x01\x05\x02\x01", // 𧪂
+ 0x27a83: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 𧪃
+ 0x27a84: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x05\x01", // 𧪄
+ 0x27a85: "\x04\x01\x01\x01\x02\x05\x01\x05\x03\x01\x05\x04\x04\x05\x04\x04", // 𧪅
+ 0x27a86: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x02\x01\x02\x05\x01\x02", // 𧪆
+ 0x27a87: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x04\x01\x02\x02\x01\x01\x01", // 𧪇
+ 0x27a88: "\x04\x01\x01\x01\x02\x05\x01\x04\x03\x01\x03\x05\x01\x01\x02\x02", // 𧪈
+ 0x27a89: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x04\x04\x01\x03\x05\x03\x04", // 𧪉
+ 0x27a8a: "\x04\x01\x01\x01\x02\x05\x01\x02\x01\x02\x05\x01\x04\x04\x04\x04", // 𧪊
+ 0x27a8b: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x02\x04\x05\x04\x03\x04", // 𧪋
+ 0x27a8c: "\x04\x01\x01\x01\x02\x05\x01\x02\x01\x05\x01\x01\x02\x01\x03\x04", // 𧪌
+ 0x27a8d: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 𧪍
+ 0x27a8e: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01\x04", // 𧪎
+ 0x27a8f: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x01\x01\x05\x03\x04", // 𧪏
+ 0x27a90: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x02\x01\x04\x03\x01\x02", // 𧪐
+ 0x27a91: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x02\x03\x04\x02\x05\x01\x01", // 𧪑
+ 0x27a92: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x05\x01\x01\x02\x05\x03\x04", // 𧪒
+ 0x27a93: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𧪓
+ 0x27a94: "\x02\x05\x02\x02\x01\x05\x03\x05\x03\x04\x01\x01\x01\x02\x05\x01", // 𧪔
+ 0x27a95: "\x04\x01\x01\x01\x02\x05\x01\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 𧪕
+ 0x27a96: "\x04\x01\x01\x01\x02\x05\x01\x01\x01\x02\x01\x03\x04\x05\x03\x04", // 𧪖
+ 0x27a97: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x02\x03\x04\x03\x04\x05\x02", // 𧪗
+ 0x27a98: "\x04\x01\x01\x01\x02\x05\x01\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01", // 𧪘
+ 0x27a99: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x02\x03\x01\x02\x03\x04\x02\x02", // 𧪙
+ 0x27a9a: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 𧪚
+ 0x27a9b: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x05\x01\x01\x05\x04\x04\x04\x04", // 𧪛
+ 0x27a9c: "\x04\x01\x01\x01\x02\x05\x01\x04\x03\x01\x05\x02\x03\x03\x05\x01\x01", // 𧪜
+ 0x27a9d: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x02\x02\x01\x01\x03\x05\x03\x04", // 𧪝
+ 0x27a9e: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 𧪞
+ 0x27a9f: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x02\x02\x01\x02\x03\x03\x04\x04", // 𧪟
+ 0x27aa0: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x03\x04\x01\x03\x01\x01\x03\x04", // 𧪠
+ 0x27aa1: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x03\x03\x05\x02\x05\x01\x01", // 𧪡
+ 0x27aa2: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x01\x05\x04\x03\x01\x02\x03\x04", // 𧪢
+ 0x27aa3: "\x04\x01\x01\x01\x02\x05\x01\x05\x02\x05\x03\x04\x01\x04\x04\x04\x04", // 𧪣
+ 0x27aa4: "\x04\x01\x01\x01\x02\x05\x01\x02\x01\x05\x03\x01\x05\x03\x01\x03\x04", // 𧪤
+ 0x27aa5: "\x04\x01\x01\x01\x02\x05\x01\x03\x03\x02\x01\x05\x03\x01\x05\x01\x02", // 𧪥
+ 0x27aa6: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 𧪦
+ 0x27aa7: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x01\x05\x05\x01\x05\x01\x02\x01", // 𧪧
+ 0x27aa8: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𧪨
+ 0x27aa9: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x05\x01\x01\x01\x04\x05\x04\x04", // 𧪩
+ 0x27aaa: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x03\x04\x02\x05\x02\x02\x01", // 𧪪
+ 0x27aab: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x05\x03\x04\x01\x01\x05\x01\x05", // 𧪫
+ 0x27aac: "\x03\x05\x04\x01\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x02\x03\x04", // 𧪬
+ 0x27aad: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 𧪭
+ 0x27aae: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x02\x01\x03\x04\x01\x01\x05", // 𧪮
+ 0x27aaf: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x01\x02\x05\x01\x05\x01", // 𧪯
+ 0x27ab0: "\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01\x04\x01\x01\x01\x02\x05\x01", // 𧪰
+ 0x27ab1: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x02\x05\x01\x01\x03\x05\x01\x05", // 𧪱
+ 0x27ab2: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x05\x01\x05\x01\x04\x05\x04", // 𧪲
+ 0x27ab3: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x05\x03\x04\x01\x04\x05\x04\x04", // 𧪳
+ 0x27ab4: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x03\x05\x02\x03\x01\x01\x02\x01", // 𧪴
+ 0x27ab5: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x04\x01\x01\x01\x02\x05\x01", // 𧪵
+ 0x27ab6: "\x04\x01\x01\x01\x02\x05\x01\x04\x04\x02\x01\x02\x04\x05\x05\x02\x01", // 𧪶
+ 0x27ab7: "\x01\x02\x02\x03\x04\x01\x04\x01\x01\x01\x02\x05\x01\x03\x03\x01\x02", // 𧪷
+ 0x27ab8: "\x04\x01\x01\x01\x02\x05\x01\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01", // 𧪸
+ 0x27ab9: "\x04\x01\x01\x01\x02\x05\x01\x04\x04\x05\x04\x01\x04\x03\x01\x01\x02", // 𧪹
+ 0x27aba: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x01\x02\x02\x01\x01\x02\x02\x02", // 𧪺
+ 0x27abb: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x04\x03\x01\x04\x01\x04\x03\x01", // 𧪻
+ 0x27abc: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𧪼
+ 0x27abd: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x04\x03\x01\x02\x05\x01\x01", // 𧪽
+ 0x27abe: "\x04\x01\x01\x01\x02\x05\x01\x05\x02\x01\x03\x05\x05\x04\x02\x03\x04", // 𧪾
+ 0x27abf: "\x04\x01\x01\x01\x02\x05\x01\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01", // 𧪿
+ 0x27ac0: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x03\x04\x03\x04\x03\x05\x03\x04", // 𧫀
+ 0x27ac1: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x02\x05\x01\x03\x05\x03\x04", // 𧫁
+ 0x27ac2: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x05\x02\x01", // 𧫂
+ 0x27ac3: "\x01\x02\x02\x01\x03\x04\x02\x04\x04\x04\x04\x01\x01\x01\x02\x05\x01", // 𧫃
+ 0x27ac4: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03", // 𧫄
+ 0x27ac5: "\x04\x01\x01\x01\x02\x05\x01\x02\x01\x05\x03\x01\x05\x03\x01\x01\x02", // 𧫅
+ 0x27ac6: "\x04\x01\x01\x01\x02\x05\x01\x02\x04\x03\x04\x05\x02\x05\x01\x03\x05", // 𧫆
+ 0x27ac7: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x05\x02\x05\x01\x01\x01\x03\x04", // 𧫇
+ 0x27ac8: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x01\x01\x03\x04\x01\x02\x05\x01", // 𧫈
+ 0x27ac9: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x01\x02\x01\x04\x05\x04\x04", // 𧫉
+ 0x27aca: "\x01\x02\x05\x01\x01\x05\x03\x03\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 𧫊
+ 0x27acb: "\x04\x03\x01\x05\x02\x03\x03\x05\x01\x01\x04\x01\x01\x01\x02\x05\x01", // 𧫋
+ 0x27acc: "\x04\x01\x01\x01\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x01\x02\x02", // 𧫌
+ 0x27acd: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x05\x01\x01\x01\x01\x01\x02\x01", // 𧫍
+ 0x27ace: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x03\x05\x03\x04\x02\x05\x01", // 𧫎
+ 0x27acf: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x04\x01\x01\x01\x02\x05\x01", // 𧫏
+ 0x27ad0: "\x04\x01\x01\x01\x02\x05\x01\x05\x04\x02\x01\x03\x04\x03\x05\x04\x01", // 𧫐
+ 0x27ad1: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x04\x03\x01\x04\x03\x05\x04", // 𧫑
+ 0x27ad2: "\x04\x01\x01\x01\x02\x05\x01\x04\x04\x05\x04\x01\x03\x04\x03\x04\x01\x02", // 𧫒
+ 0x27ad3: "\x04\x01\x01\x01\x02\x05\x01\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01", // 𧫓
+ 0x27ad4: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x01\x01\x02\x01\x01\x01\x01\x02\x01", // 𧫔
+ 0x27ad5: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x04\x01\x05\x04\x01\x01\x02\x03\x04", // 𧫕
+ 0x27ad6: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 𧫖
+ 0x27ad7: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04", // 𧫗
+ 0x27ad8: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x04\x01\x01\x01\x02\x05\x01\x03\x05", // 𧫘
+ 0x27ad9: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05", // 𧫙
+ 0x27ada: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x01\x03\x05\x04\x05\x02\x05\x02", // 𧫚
+ 0x27adb: "\x04\x01\x01\x01\x02\x05\x01\x04\x03\x01\x01\x02\x01\x04\x05\x05\x03\x04", // 𧫛
+ 0x27adc: "\x05\x01\x01\x05\x04\x01\x05\x03\x05\x04\x01\x01\x01\x02\x05\x01", // 𧫜
+ 0x27add: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x05\x03\x04\x01\x03\x05\x03\x05\x04", // 𧫝
+ 0x27ade: "\x04\x01\x01\x01\x02\x05\x01\x05\x01\x03\x01\x02\x05\x02\x04\x01\x03\x04", // 𧫞
+ 0x27adf: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x01\x03\x04", // 𧫟
+ 0x27ae0: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x01\x01\x01\x03\x04\x01\x02\x01", // 𧫠
+ 0x27ae1: "\x04\x01\x01\x01\x02\x05\x01\x04\x04\x05\x03\x05\x01\x05\x04\x01\x02\x01", // 𧫡
+ 0x27ae2: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x05\x03\x05\x01\x01\x01\x01\x02\x01", // 𧫢
+ 0x27ae3: "\x01\x02\x05\x01\x02\x03\x04\x03\x01\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 𧫣
+ 0x27ae4: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x01\x01\x02\x01\x02\x01\x01\x02", // 𧫤
+ 0x27ae5: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x03\x01\x03\x04\x02\x05\x01\x01\x05", // 𧫥
+ 0x27ae6: "\x01\x03\x01\x01\x03\x04\x05\x03\x05\x05\x04\x04\x01\x01\x01\x02\x05\x01", // 𧫦
+ 0x27ae7: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x01\x05\x01\x02\x05\x03\x05\x01\x01", // 𧫧
+ 0x27ae8: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x03\x05\x02\x03\x02\x05\x01\x01\x01", // 𧫨
+ 0x27ae9: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04", // 𧫩
+ 0x27aea: "\x04\x01\x01\x01\x02\x05\x01\x02\x01\x05\x03\x01\x05\x03\x05\x01\x03\x04", // 𧫪
+ 0x27aeb: "\x04\x01\x01\x01\x02\x05\x01\x05\x01\x01\x03\x05\x04\x01\x03\x05\x05\x04", // 𧫫
+ 0x27aec: "\x01\x05\x02\x03\x04\x03\x01\x03\x04\x01\x03\x04\x01\x01\x01\x02\x05\x01", // 𧫬
+ 0x27aed: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x04\x01\x03\x04\x01\x02\x05\x01\x01", // 𧫭
+ 0x27aee: "\x04\x01\x01\x01\x02\x05\x01\x05\x01\x03\x03\x01\x01\x03\x03\x01\x01\x02", // 𧫮
+ 0x27aef: "\x02\x01\x01\x03\x05\x04\x01\x03\x01\x02\x01\x04\x01\x01\x01\x02\x05\x01", // 𧫯
+ 0x27af0: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x03\x01\x05\x01\x01\x02\x01\x03\x04", // 𧫰
+ 0x27af1: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02", // 𧫱
+ 0x27af2: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x01\x03\x02\x02\x01\x01\x02\x02\x02", // 𧫲
+ 0x27af3: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x02\x01\x01\x02\x03\x04\x05\x03\x04", // 𧫳
+ 0x27af4: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x02\x05\x01\x01\x01\x02\x01", // 𧫴
+ 0x27af5: "\x04\x01\x01\x01\x02\x05\x01\x04\x03\x01\x01\x03\x04\x01\x02\x01\x03\x02", // 𧫵
+ 0x27af6: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x02\x03\x04\x01\x02\x05\x01\x02\x02", // 𧫶
+ 0x27af7: "\x01\x02\x05\x01\x02\x03\x04\x03\x05\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 𧫷
+ 0x27af8: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x04\x03\x01\x04\x05\x03\x02\x05\x04", // 𧫸
+ 0x27af9: "\x03\x05\x01\x03\x03\x04\x04\x01\x01\x01\x02\x05\x01\x03\x04\x04\x05\x04", // 𧫹
+ 0x27afa: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x03\x05\x03\x04\x02\x05\x02\x02\x01", // 𧫺
+ 0x27afb: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x05\x01\x02\x03\x04\x04\x05\x04", // 𧫻
+ 0x27afc: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04", // 𧫼
+ 0x27afd: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x03\x01\x02\x02\x01\x04\x03\x03\x04", // 𧫽
+ 0x27afe: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x02\x05\x01\x02\x03\x04\x01\x03\x05\x04", // 𧫾
+ 0x27aff: "\x04\x01\x01\x01\x02\x05\x01\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04", // 𧫿
+ 0x27b00: "\x04\x01\x01\x01\x02\x05\x01\x05\x04\x05\x04\x05\x04\x05\x05\x04\x02\x03\x04", // 𧬀
+ 0x27b01: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x05\x01\x01\x01\x04\x01\x03\x04\x01\x02", // 𧬁
+ 0x27b02: "\x04\x01\x01\x01\x02\x05\x01\x05\x03\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𧬂
+ 0x27b03: "\x04\x01\x01\x01\x02\x05\x01\x02\x01\x02\x01\x02\x01\x02\x01\x02\x01\x02\x01", // 𧬃
+ 0x27b04: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x05\x01\x01\x01\x03\x03\x01\x01\x03\x04", // 𧬄
+ 0x27b05: "\x04\x01\x01\x01\x02\x05\x01\x05\x01\x03\x01\x02\x01\x03\x02\x05\x01\x01\x04", // 𧬅
+ 0x27b06: "\x04\x01\x01\x01\x02\x05\x01\x04\x03\x01\x01\x02\x01\x04\x03\x01\x02\x05\x01", // 𧬆
+ 0x27b07: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x04\x05\x01\x02\x05\x01\x04\x03\x01", // 𧬇
+ 0x27b08: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x01\x02\x05\x01\x05\x04\x01\x05\x04\x01", // 𧬈
+ 0x27b09: "\x02\x05\x01\x01\x05\x02\x02\x05\x02\x01\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 𧬉
+ 0x27b0a: "\x01\x02\x02\x01\x01\x01\x03\x04\x03\x03\x01\x02\x04\x01\x01\x01\x02\x05\x01", // 𧬊
+ 0x27b0b: "\x04\x01\x01\x01\x02\x05\x01\x05\x04\x03\x03\x04\x05\x01\x05\x03\x05\x05\x04", // 𧬋
+ 0x27b0c: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x02", // 𧬌
+ 0x27b0d: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x04\x03\x04\x05\x02\x05\x02\x02\x05\x01", // 𧬍
+ 0x27b0e: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04", // 𧬎
+ 0x27b0f: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x02\x01\x03\x04\x04\x01\x03\x02", // 𧬏
+ 0x27b10: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x02\x05\x02\x02\x01\x03\x02\x05\x02\x02", // 𧬐
+ 0x27b11: "\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x03\x04\x01\x01\x01\x02\x05\x01", // 𧬑
+ 0x27b12: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01\x04\x01\x05\x03", // 𧬒
+ 0x27b13: "\x01\x03\x04\x04\x03\x01\x01\x02\x05\x03\x01\x01\x04\x01\x01\x01\x02\x05\x01", // 𧬓
+ 0x27b14: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x01\x01\x01\x03\x04\x01\x02\x03\x04", // 𧬔
+ 0x27b15: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 𧬕
+ 0x27b16: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x02\x05\x04\x03\x03\x04\x04\x01\x03\x04", // 𧬖
+ 0x27b17: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x01\x01\x01\x03\x04\x01\x02\x03\x04", // 𧬗
+ 0x27b18: "\x04\x01\x01\x01\x02\x05\x01\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01", // 𧬘
+ 0x27b19: "\x04\x01\x01\x01\x02\x05\x01\x04\x04\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 𧬙
+ 0x27b1a: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x01\x04\x01\x05\x03\x05\x02", // 𧬚
+ 0x27b1b: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x02\x05\x02\x01\x03\x05\x03\x03\x03\x04", // 𧬛
+ 0x27b1c: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x01\x01\x01\x03\x04\x03\x03\x01\x02", // 𧬜
+ 0x27b1d: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x02\x05\x04\x03\x03\x04\x03\x05\x04", // 𧬝
+ 0x27b1e: "\x04\x01\x01\x01\x02\x05\x01\x01\x04\x05\x02\x04\x04\x04\x04\x01\x01\x05\x04", // 𧬞
+ 0x27b1f: "\x04\x01\x01\x01\x02\x05\x01\x02\x01\x02\x01\x01\x05\x02\x05\x01\x01\x03\x01\x02", // 𧬟
+ 0x27b20: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04", // 𧬠
+ 0x27b21: "\x04\x01\x01\x01\x02\x05\x01\x03\x03\x04\x03\x04\x03\x04\x03\x04\x01\x02\x01", // 𧬡
+ 0x27b22: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x03\x04\x03\x04\x03\x04\x02\x05\x01\x01", // 𧬢
+ 0x27b23: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x04\x01\x01\x01\x02\x05\x01\x05\x03\x04", // 𧬣
+ 0x27b24: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𧬤
+ 0x27b25: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x03\x02\x05\x01\x01\x05\x02", // 𧬥
+ 0x27b26: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x05\x01\x01\x02\x03\x05\x05\x01\x01\x02", // 𧬦
+ 0x27b27: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x02\x05\x04\x03\x03\x04\x01\x01\x03\x04", // 𧬧
+ 0x27b28: "\x04\x01\x01\x01\x02\x05\x01\x02\x01\x02\x01\x01\x03\x01\x02\x03\x03\x05\x03\x04", // 𧬨
+ 0x27b29: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𧬩
+ 0x27b2a: "\x04\x01\x01\x01\x02\x05\x01\x04\x05\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 𧬪
+ 0x27b2b: "\x04\x01\x01\x01\x02\x05\x01\x04\x03\x01\x03\x05\x01\x01\x02\x02\x04\x04\x04\x04", // 𧬫
+ 0x27b2c: "\x04\x01\x01\x01\x02\x05\x01\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x02\x03\x04", // 𧬬
+ 0x27b2d: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01\x05\x02\x02\x05\x03\x04\x01\x02", // 𧬭
+ 0x27b2e: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x01\x03\x04", // 𧬮
+ 0x27b2f: "\x04\x01\x01\x01\x02\x05\x01\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x05\x01\x05", // 𧬯
+ 0x27b30: "\x05\x05\x03\x04\x05\x01\x01\x05\x04\x05\x02\x04\x01\x01\x01\x02\x05\x01", // 𧬰
+ 0x27b31: "\x04\x01\x01\x01\x02\x05\x01\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x05\x01\x02", // 𧬱
+ 0x27b32: "\x04\x01\x01\x01\x02\x05\x01\x05\x01\x03\x02\x04\x01\x03\x04\x05\x02\x02\x05\x02", // 𧬲
+ 0x27b33: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x02\x02\x01\x01\x03\x04\x04\x03\x01\x01\x02", // 𧬳
+ 0x27b34: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x03\x05\x04\x01", // 𧬴
+ 0x27b35: "\x04\x01\x01\x01\x02\x05\x01\x04\x04\x05\x03\x05\x04\x01\x03\x04\x03\x04\x01\x02", // 𧬵
+ 0x27b36: "\x04\x01\x01\x01\x02\x05\x01\x05\x03\x03\x03\x05\x03\x03\x03\x03\x04\x03\x03\x03", // 𧬶
+ 0x27b37: "\x04\x01\x01\x01\x02\x05\x01\x02\x01\x05\x03\x01\x05\x01\x03\x05\x03\x03\x03\x04", // 𧬷
+ 0x27b38: "\x04\x01\x01\x01\x02\x05\x01\x04\x03\x01\x01\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 𧬸
+ 0x27b39: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01", // 𧬹
+ 0x27b3a: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x02\x04\x01\x04\x03\x04\x05\x02\x05\x02", // 𧬺
+ 0x27b3b: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x04\x03\x01\x01\x01\x02\x04\x05\x04", // 𧬻
+ 0x27b3c: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x01\x01\x01\x02\x05\x01\x03\x01\x02\x01", // 𧬼
+ 0x27b3d: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𧬽
+ 0x27b3e: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x05\x05\x04\x04\x01\x01\x01\x02\x05\x01", // 𧬾
+ 0x27b3f: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x02\x03\x04\x03\x04\x03\x04\x03\x04\x05\x02", // 𧬿
+ 0x27b40: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x04\x03\x01\x04\x02\x05\x01\x05\x03\x02\x02", // 𧭀
+ 0x27b41: "\x05\x02\x02\x05\x02\x03\x04\x03\x04\x03\x01\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 𧭁
+ 0x27b42: "\x04\x01\x01\x01\x02\x05\x01\x04\x04\x05\x03\x05\x04\x01\x05\x04\x01\x01\x02\x03\x04", // 𧭂
+ 0x27b43: "\x01\x01\x03\x04\x01\x01\x03\x04\x03\x05\x01\x03\x03\x05\x04\x01\x01\x01\x02\x05\x01", // 𧭃
+ 0x27b44: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x05\x03\x02\x01\x01\x05\x01\x01\x01\x02\x03\x04", // 𧭄
+ 0x27b45: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x05\x01\x01\x03\x01\x02\x01", // 𧭅
+ 0x27b46: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02", // 𧭆
+ 0x27b47: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x05\x01\x01\x04\x04\x05\x03\x04\x04\x01\x05\x03", // 𧭇
+ 0x27b48: "\x04\x01\x01\x01\x02\x05\x01\x04\x04\x05\x04\x05\x04\x04\x02\x05\x02\x02\x01\x01\x02", // 𧭈
+ 0x27b49: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𧭉
+ 0x27b4a: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 𧭊
+ 0x27b4b: "\x04\x01\x01\x01\x02\x05\x01\x05\x01\x03\x04\x01\x04\x03\x01\x01\x02\x04\x05\x04", // 𧭋
+ 0x27b4c: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x02\x05\x02\x02\x01\x03\x04\x01\x05\x05\x04", // 𧭌
+ 0x27b4d: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x01\x01\x01\x05\x04\x03\x02\x03\x04\x03\x04", // 𧭍
+ 0x27b4e: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 𧭎
+ 0x27b4f: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x02\x05\x01\x04\x05\x01\x05\x04\x01\x02\x01", // 𧭏
+ 0x27b50: "\x01\x05\x03\x01\x01\x03\x04\x05\x04\x05\x02\x01\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 𧭐
+ 0x27b51: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x03\x05\x04\x04", // 𧭑
+ 0x27b52: "\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x04\x05\x04\x01\x01\x01\x02\x05\x01", // 𧭒
+ 0x27b53: "\x04\x01\x01\x01\x02\x05\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x04\x03\x03\x04", // 𧭓
+ 0x27b54: "\x03\x03\x05\x04\x01\x04\x05\x04\x01\x05\x04\x01\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 𧭔
+ 0x27b55: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x04\x03\x01\x05\x03\x01\x02\x05\x02\x02\x05\x02", // 𧭕
+ 0x27b56: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x02\x01\x02\x01\x03\x01\x02\x01\x05\x03\x04", // 𧭖
+ 0x27b57: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01", // 𧭗
+ 0x27b58: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x04\x03\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 𧭘
+ 0x27b59: "\x04\x01\x01\x01\x02\x05\x01\x02\x02\x04\x03\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 𧭙
+ 0x27b5a: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01\x04\x03\x02\x05\x01\x03\x05", // 𧭚
+ 0x27b5b: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01", // 𧭛
+ 0x27b5c: "\x04\x01\x01\x01\x02\x05\x01\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 𧭜
+ 0x27b5d: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x02\x03\x05\x04\x01\x05\x04\x01\x01\x02\x03\x04", // 𧭝
+ 0x27b5e: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x05\x02\x05\x03\x04\x01\x05\x04\x04\x05\x04\x04\x05", // 𧭞
+ 0x27b5f: "\x04\x01\x01\x01\x02\x05\x01\x05\x01\x03\x02\x04\x01\x03\x04\x03\x01\x01\x02\x04\x05\x04", // 𧭟
+ 0x27b60: "\x04\x01\x01\x01\x02\x05\x01\x04\x04\x05\x03\x02\x01\x05\x01\x01\x03\x05\x04\x04\x04\x04", // 𧭠
+ 0x27b61: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𧭡
+ 0x27b62: "\x04\x01\x01\x01\x02\x05\x01\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𧭢
+ 0x27b63: "\x04\x01\x01\x01\x02\x05\x01\x03\x04\x04\x03\x01\x02\x04\x02\x01\x05\x03\x01\x05\x03\x05", // 𧭣
+ 0x27b64: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x04\x02\x04\x01\x03\x04", // 𧭤
+ 0x27b65: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x03\x04", // 𧭥
+ 0x27b66: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x02\x05\x03\x04\x02\x05\x01\x01\x01\x02\x01\x05\x04", // 𧭦
+ 0x27b67: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x03\x01\x02\x02\x01\x04\x04\x04\x04\x04\x05\x04", // 𧭧
+ 0x27b68: "\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x03\x01\x02\x01\x04\x01\x01\x01\x02\x05\x01", // 𧭨
+ 0x27b69: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x01\x02\x05\x01\x03\x04\x03\x04\x01\x02\x01", // 𧭩
+ 0x27b6a: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x02\x01\x03\x04\x03\x04\x02\x03\x04\x03\x04\x02", // 𧭪
+ 0x27b6b: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x02\x05\x01\x02\x05\x01\x02\x01\x02\x01\x01\x01\x02", // 𧭫
+ 0x27b6c: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x01\x03\x04\x03\x02", // 𧭬
+ 0x27b6d: "\x01\x03\x05\x01\x03\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01\x04\x01\x01\x01\x02\x05\x01", // 𧭭
+ 0x27b6e: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x05\x01\x01\x01\x04\x04\x05\x03\x05\x04\x01\x05\x03", // 𧭮
+ 0x27b6f: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x03\x01\x02\x01", // 𧭯
+ 0x27b70: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x03\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04", // 𧭰
+ 0x27b71: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01\x01\x03\x04\x05\x05\x04\x05\x04", // 𧭱
+ 0x27b72: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𧭲
+ 0x27b73: "\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x04\x01\x01\x01\x02\x05\x01", // 𧭳
+ 0x27b74: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x02\x02\x01\x01\x02\x01\x02\x05\x01\x03\x05\x03\x04", // 𧭴
+ 0x27b75: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x05\x01\x01\x03\x05\x05\x04\x01\x01\x02\x03\x04", // 𧭵
+ 0x27b76: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x01\x02\x05\x01\x05\x05\x04\x02\x03\x04\x05\x03\x04", // 𧭶
+ 0x27b77: "\x04\x01\x01\x01\x02\x05\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01", // 𧭷
+ 0x27b78: "\x04\x01\x01\x01\x02\x05\x01\x02\x01\x03\x05\x04\x05\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𧭸
+ 0x27b79: "\x02\x01\x02\x01\x02\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 𧭹
+ 0x27b7a: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x02\x05\x01\x02\x05\x01\x01\x02\x01\x02\x01\x01\x01\x02", // 𧭺
+ 0x27b7b: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x01\x02\x05\x01\x05\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 𧭻
+ 0x27b7c: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𧭼
+ 0x27b7d: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x02\x01\x02\x01\x02\x01\x05\x04\x01\x01\x01\x02\x05\x01", // 𧭽
+ 0x27b7e: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x01\x01\x05\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𧭾
+ 0x27b7f: "\x02\x05\x02\x02\x01\x05\x03\x05\x03\x04\x01\x01\x01\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01", // 𧭿
+ 0x27b80: "\x02\x05\x02\x02\x01\x03\x04\x03\x04\x04\x01\x01\x01\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01", // 𧮀
+ 0x27b81: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x02\x03\x05\x04\x03\x05\x04\x04\x01\x01\x03\x05\x04", // 𧮁
+ 0x27b82: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01", // 𧮂
+ 0x27b83: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x01\x02\x05\x01\x02\x01\x01\x01\x05\x04\x03\x03\x04", // 𧮃
+ 0x27b84: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x02\x05", // 𧮄
+ 0x27b85: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04\x04\x05\x04", // 𧮅
+ 0x27b86: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x05\x03\x01", // 𧮆
+ 0x27b87: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04\x04\x05\x04", // 𧮇
+ 0x27b88: "\x04\x01\x01\x01\x02\x05\x01\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 𧮈
+ 0x27b89: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x02\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x01\x05", // 𧮉
+ 0x27b8a: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x05\x01\x01\x03\x05\x05\x04\x04\x01\x01\x01\x02\x05\x01", // 𧮊
+ 0x27b8b: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x04\x03\x01\x02", // 𧮋
+ 0x27b8c: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x03\x05\x05\x01\x05", // 𧮌
+ 0x27b8d: "\x04\x01\x01\x01\x02\x05\x01\x05\x01\x01\x02\x02\x05\x01\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 𧮍
+ 0x27b8e: "\x04\x01\x01\x01\x02\x05\x01\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 𧮎
+ 0x27b8f: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x01\x05\x01\x01\x03\x02\x05\x03\x04\x01\x02\x05\x05\x04", // 𧮏
+ 0x27b90: "\x05\x02\x03\x04\x04\x03\x01\x02\x01\x05\x01\x01\x04\x05\x04\x04\x04\x01\x01\x01\x02\x05\x01", // 𧮐
+ 0x27b91: "\x04\x01\x01\x01\x02\x05\x01\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 𧮑
+ 0x27b92: "\x04\x01\x01\x01\x02\x05\x01\x01\x03\x01\x01\x03\x04\x05\x03\x05\x05\x04\x01\x02\x05\x03\x05\x01\x01", // 𧮒
+ 0x27b93: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x05\x01\x01\x03\x05\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𧮓
+ 0x27b94: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x05\x02\x02\x05\x02\x01\x03\x04\x04\x03\x01\x02\x03\x04", // 𧮔
+ 0x27b95: "\x04\x01\x01\x01\x02\x05\x01\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𧮕
+ 0x27b96: "\x04\x01\x01\x01\x02\x05\x01\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x01\x02\x02\x01\x03\x04", // 𧮖
+ 0x27b97: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01\x04\x05\x04\x04", // 𧮗
+ 0x27b98: "\x04\x01\x01\x01\x02\x05\x01\x04\x05\x01\x02\x05\x01\x01\x01\x02\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 𧮘
+ 0x27b99: "\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x03\x02\x01\x05\x01\x01\x03\x05\x05\x04\x04\x01\x01\x01\x02\x05\x01", // 𧮙
+ 0x27b9a: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧮚
+ 0x27b9b: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𧮛
+ 0x27b9c: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x03\x03\x04\x04\x03\x01\x02\x02\x05\x01\x05\x04", // 𧮜
+ 0x27b9d: "\x04\x04\x01\x02\x01\x02\x01\x02\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 𧮝
+ 0x27b9e: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𧮞
+ 0x27b9f: "\x04\x03\x01\x01\x02\x01\x04\x01\x01\x01\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01", // 𧮟
+ 0x27ba0: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x01", // 𧮠
+ 0x27ba1: "\x04\x01\x01\x01\x02\x05\x01\x04\x04\x05\x03\x05\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x01\x03\x04", // 𧮡
+ 0x27ba2: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 𧮢
+ 0x27ba3: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x04\x01\x01\x01\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01", // 𧮣
+ 0x27ba4: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 𧮤
+ 0x27ba5: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x03\x01\x02\x02\x05\x01\x03\x01\x02\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01", // 𧮥
+ 0x27ba6: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01", // 𧮦
+ 0x27ba7: "\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 𧮧
+ 0x27ba8: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x02\x05\x01\x02\x05\x01\x05\x01\x05\x01\x02\x01\x03\x04\x03\x04\x03\x05\x03\x04", // 𧮨
+ 0x27ba9: "\x04\x01\x04\x03\x01\x03\x05\x04\x01\x01\x05\x01\x05\x01\x01\x01\x04\x01\x04\x03\x01\x03\x05\x04\x01\x01\x05\x01\x05\x01\x01\x01\x04\x01\x01\x01\x02\x05\x01", // 𧮩
+ 0x27baa: "\x04\x05\x02\x01\x02\x05\x01", // 𧮪
+ 0x27bab: "\x03\x04\x03\x04\x02\x05\x01", // 𧮫
+ 0x27bac: "\x03\x04\x03\x04\x02\x05\x01\x05\x01\x02", // 𧮬
+ 0x27bad: "\x03\x04\x03\x04\x02\x05\x01\x03\x05\x04", // 𧮭
+ 0x27bae: "\x03\x04\x03\x04\x02\x05\x01\x03\x01\x02", // 𧮮
+ 0x27baf: "\x01\x03\x05\x04\x03\x04\x03\x04\x02\x05\x01", // 𧮯
+ 0x27bb0: "\x03\x04\x03\x04\x02\x05\x01\x03\x04\x01\x05", // 𧮰
+ 0x27bb1: "\x03\x04\x03\x04\x02\x05\x01\x03\x05\x05\x03", // 𧮱
+ 0x27bb2: "\x02\x01\x04\x05\x03\x04\x03\x04\x02\x05\x01", // 𧮲
+ 0x27bb3: "\x03\x04\x03\x04\x02\x05\x01\x01\x02\x02\x01\x01", // 𧮳
+ 0x27bb4: "\x03\x04\x03\x04\x02\x05\x01\x01\x02\x02\x05\x01", // 𧮴
+ 0x27bb5: "\x03\x04\x03\x04\x02\x05\x01\x03\x04\x01\x02\x05\x01", // 𧮵
+ 0x27bb6: "\x03\x04\x03\x04\x02\x05\x01\x03\x03\x01\x02\x05\x01", // 𧮶
+ 0x27bb7: "\x03\x04\x03\x04\x02\x05\x01\x05\x05\x02\x05\x02\x03", // 𧮷
+ 0x27bb8: "\x02\x01\x05\x03\x01\x03\x04\x03\x04\x02\x05\x01\x05\x04", // 𧮸
+ 0x27bb9: "\x03\x04\x03\x04\x02\x05\x01\x02\x05\x01\x02\x01\x01\x05", // 𧮹
+ 0x27bba: "\x03\x04\x03\x04\x02\x05\x01\x01\x05\x03\x04\x01\x05\x03\x04", // 𧮺
+ 0x27bbb: "\x03\x04\x03\x04\x02\x05\x01\x03\x05\x01\x02\x01\x02\x05\x01", // 𧮻
+ 0x27bbc: "\x04\x01\x03\x04\x05\x02\x02\x05\x03\x04\x03\x04\x02\x05\x01", // 𧮼
+ 0x27bbd: "\x03\x04\x03\x04\x02\x05\x01\x02\x01\x05\x03\x01\x05\x03\x05", // 𧮽
+ 0x27bbe: "\x03\x04\x04\x03\x01\x01\x03\x04\x03\x04\x03\x04\x02\x05\x01", // 𧮾
+ 0x27bbf: "\x03\x04\x03\x04\x02\x05\x01\x03\x04\x01\x01\x02\x02\x05\x01", // 𧮿
+ 0x27bc0: "\x03\x04\x03\x04\x02\x05\x01\x01\x02\x01\x02\x02\x05\x01\x03\x04", // 𧯀
+ 0x27bc1: "\x03\x04\x03\x04\x02\x05\x01\x03\x02\x05\x01\x03\x01\x01\x03\x04", // 𧯁
+ 0x27bc2: "\x03\x04\x03\x04\x02\x05\x01\x03\x05\x01\x03\x03\x01\x01\x03\x04", // 𧯂
+ 0x27bc3: "\x03\x04\x03\x04\x02\x05\x01\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 𧯃
+ 0x27bc4: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x03\x04\x03\x04\x02\x05\x01", // 𧯄
+ 0x27bc5: "\x03\x04\x03\x04\x02\x05\x01\x03\x01\x02\x03\x04\x02\x05\x01\x01", // 𧯅
+ 0x27bc6: "\x03\x04\x03\x04\x02\x05\x01\x04\x04\x05\x03\x01\x01\x02\x02\x05\x01", // 𧯆
+ 0x27bc7: "\x03\x04\x03\x04\x02\x05\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05", // 𧯇
+ 0x27bc8: "\x03\x04\x03\x04\x02\x05\x01\x02\x03\x04\x02\x05\x01\x01\x02\x03\x04", // 𧯈
+ 0x27bc9: "\x04\x04\x05\x03\x04\x03\x04\x02\x05\x01\x03\x04\x03\x04\x02\x05\x01", // 𧯉
+ 0x27bca: "\x03\x04\x03\x04\x02\x05\x01\x02\x03\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 𧯊
+ 0x27bcb: "\x03\x04\x03\x04\x02\x05\x01\x05\x01\x01\x02\x02\x05\x01\x01\x01\x05\x02\x03", // 𧯋
+ 0x27bcc: "\x03\x04\x03\x04\x02\x05\x01\x03\x02\x05\x01\x01\x01\x01\x01\x01\x01\x01\x02", // 𧯌
+ 0x27bcd: "\x03\x04\x03\x04\x02\x05\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x05\x03", // 𧯍
+ 0x27bce: "\x03\x04\x03\x04\x02\x05\x01\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x01\x01", // 𧯎
+ 0x27bcf: "\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x03\x04\x03\x04\x02\x05\x01", // 𧯏
+ 0x27bd0: "\x03\x04\x03\x04\x02\x05\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01\x01\x05\x03", // 𧯐
+ 0x27bd1: "\x03\x04\x03\x04\x02\x05\x01\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01", // 𧯑
+ 0x27bd2: "\x03\x04\x03\x04\x02\x05\x01\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𧯒
+ 0x27bd3: "\x03\x04\x03\x04\x02\x05\x01\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x05\x01\x02", // 𧯓
+ 0x27bd4: "\x03\x04\x03\x04\x02\x05\x01\x03\x02\x05\x01\x01\x01\x02\x05\x01\x01\x05\x02", // 𧯔
+ 0x27bd5: "\x03\x04\x03\x04\x02\x05\x01\x02\x01\x04\x05\x01\x03\x04\x03\x04\x02\x05\x01\x01\x01", // 𧯕
+ 0x27bd6: "\x03\x04\x03\x04\x02\x05\x01\x02\x01\x05\x03\x01\x03\x04\x03\x04\x02\x05\x01\x01\x01", // 𧯖
+ 0x27bd7: "\x03\x04\x03\x04\x02\x05\x01\x01\x04\x05\x02\x04\x04\x04\x04\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04", // 𧯗
+ 0x27bd8: "\x03\x04\x03\x04\x02\x05\x01\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 𧯘
+ 0x27bd9: "\x03\x04\x03\x04\x02\x05\x01\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x03\x04\x01", // 𧯙
+ 0x27bda: "\x03\x05\x01\x02\x05\x01\x04\x03\x01", // 𧯚
+ 0x27bdb: "\x05\x02\x03\x01\x02\x05\x01\x04\x03\x01", // 𧯛
+ 0x27bdc: "\x04\x04\x05\x01\x02\x05\x01\x04\x03\x01", // 𧯜
+ 0x27bdd: "\x01\x02\x05\x01\x04\x03\x01\x03\x01\x05", // 𧯝
+ 0x27bde: "\x01\x02\x05\x01\x04\x03\x01\x03\x03\x01\x02", // 𧯞
+ 0x27bdf: "\x01\x01\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 𧯟
+ 0x27be0: "\x01\x02\x05\x01\x04\x03\x01\x03\x05\x02\x05\x01", // 𧯠
+ 0x27be1: "\x03\x05\x04\x05\x05\x01\x02\x05\x01\x04\x03\x01", // 𧯡
+ 0x27be2: "\x05\x02\x05\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 𧯢
+ 0x27be3: "\x01\x02\x01\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 𧯣
+ 0x27be4: "\x01\x02\x05\x01\x04\x03\x01\x03\x01\x02\x01\x01", // 𧯤
+ 0x27be5: "\x01\x02\x01\x01\x02\x05\x01\x04\x03\x01\x05\x03\x04", // 𧯥
+ 0x27be6: "\x04\x03\x01\x01\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 𧯦
+ 0x27be7: "\x01\x02\x01\x01\x05\x01\x01\x02\x05\x01\x04\x03\x01", // 𧯧
+ 0x27be8: "\x01\x02\x05\x01\x04\x03\x01\x03\x05\x04\x03\x05\x04", // 𧯨
+ 0x27be9: "\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01\x02\x01\x03\x04", // 𧯩
+ 0x27bea: "\x01\x02\x05\x01\x04\x03\x01\x04\x03\x05\x01\x05\x02\x03", // 𧯪
+ 0x27beb: "\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01\x01\x02", // 𧯫
+ 0x27bec: "\x01\x02\x05\x01\x04\x03\x01\x01\x05\x05\x05\x01\x02\x01", // 𧯬
+ 0x27bed: "\x03\x05\x04\x01\x01\x02\x05\x01\x04\x03\x01\x01\x03\x01\x02", // 𧯭
+ 0x27bee: "\x01\x01\x01\x02\x01\x01\x01\x02\x01\x02\x05\x01\x04\x03\x01", // 𧯮
+ 0x27bef: "\x01\x02\x05\x01\x04\x03\x01\x01\x02\x02\x01\x01\x01\x03\x04", // 𧯯
+ 0x27bf0: "\x01\x02\x05\x01\x04\x03\x01\x03\x05\x03\x02\x01\x05\x01\x01", // 𧯰
+ 0x27bf1: "\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x01\x01\x05\x03\x04", // 𧯱
+ 0x27bf2: "\x01\x02\x05\x01\x04\x03\x01\x01\x03\x04\x03\x04\x02\x03\x04", // 𧯲
+ 0x27bf3: "\x04\x04\x05\x03\x05\x04\x05\x05\x01\x02\x05\x01\x04\x03\x01", // 𧯳
+ 0x27bf4: "\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 𧯴
+ 0x27bf5: "\x01\x02\x05\x01\x04\x03\x01\x01\x01\x01\x03\x04\x01\x01\x02", // 𧯵
+ 0x27bf6: "\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x01\x02", // 𧯶
+ 0x27bf7: "\x01\x02\x01\x02\x05\x02\x05\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 𧯷
+ 0x27bf8: "\x01\x02\x01\x04\x05\x01\x02\x05\x01\x04\x03\x01\x03\x05\x05\x04", // 𧯸
+ 0x27bf9: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x05\x01\x04\x03\x01", // 𧯹
+ 0x27bfa: "\x04\x01\x03\x04\x03\x04\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 𧯺
+ 0x27bfb: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x03\x02\x04\x02\x05\x01", // 𧯻
+ 0x27bfc: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x03\x05\x01\x02\x01\x02\x05\x01", // 𧯼
+ 0x27bfd: "\x01\x01\x01\x02\x01\x01\x01\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 𧯽
+ 0x27bfe: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x01\x01\x02\x03\x04", // 𧯾
+ 0x27bff: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x03\x02\x05\x01\x01\x03\x01\x02", // 𧯿
+ 0x27c00: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x02\x05\x04\x02\x05\x01", // 𧰀
+ 0x27c01: "\x01\x02\x05\x01\x04\x03\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x01", // 𧰁
+ 0x27c02: "\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 𧰂
+ 0x27c03: "\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 𧰃
+ 0x27c04: "\x04\x01\x02\x05\x01\x05\x02\x01\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 𧰄
+ 0x27c05: "\x02\x05\x01\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01\x03\x01\x01\x03\x04", // 𧰅
+ 0x27c06: "\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x02\x01\x01\x02", // 𧰆
+ 0x27c07: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x03\x02\x01\x05\x01\x01\x03\x04", // 𧰇
+ 0x27c08: "\x05\x04\x05\x02\x03\x03\x05\x04\x05\x03\x01\x02\x05\x01\x04\x03\x01", // 𧰈
+ 0x27c09: "\x01\x02\x05\x01\x04\x03\x01\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 𧰉
+ 0x27c0a: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 𧰊
+ 0x27c0b: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 𧰋
+ 0x27c0c: "\x03\x04\x03\x01\x02\x03\x04\x05\x03\x05\x04\x01\x02\x05\x01\x04\x03\x01", // 𧰌
+ 0x27c0d: "\x03\x05\x05\x02\x05\x02\x03\x05\x04\x01\x02\x05\x01\x04\x03\x01\x05\x04", // 𧰍
+ 0x27c0e: "\x01\x02\x05\x01\x04\x03\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x05\x03", // 𧰎
+ 0x27c0f: "\x01\x02\x05\x01\x04\x03\x01\x03\x02\x05\x01\x01\x02\x05\x03\x05\x02\x05\x01", // 𧰏
+ 0x27c10: "\x01\x02\x05\x01\x04\x03\x01\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 𧰐
+ 0x27c11: "\x02\x05\x01\x01\x05\x02\x01\x05\x03\x01\x05\x03\x05\x01\x02\x05\x01\x04\x03\x01", // 𧰑
+ 0x27c12: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01\x02\x05\x01\x01\x05\x03\x04\x01", // 𧰒
+ 0x27c13: "\x01\x03\x02\x05\x02\x02\x01\x05\x05\x04\x01\x02\x01\x02\x05\x01\x04\x03\x01", // 𧰓
+ 0x27c14: "\x01\x02\x03\x04\x01\x02\x03\x04\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 𧰔
+ 0x27c15: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x01\x03\x05\x03\x04\x02\x05\x02\x02\x01", // 𧰕
+ 0x27c16: "\x01\x05\x04\x03\x02\x05\x02\x05\x01\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01", // 𧰖
+ 0x27c17: "\x01\x02\x05\x01\x04\x03\x01\x04\x04\x05\x04\x05\x04\x04\x02\x05\x02\x02\x01\x01\x02", // 𧰗
+ 0x27c18: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 𧰘
+ 0x27c19: "\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01\x05\x05\x04\x05\x05\x04\x01\x03\x04\x05\x03\x04", // 𧰙
+ 0x27c1a: "\x02\x05\x01\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01\x01\x03\x04\x04\x02\x05\x02\x02\x01", // 𧰚
+ 0x27c1b: "\x01\x03\x02\x05\x02\x02\x04\x01\x05\x03\x01\x05\x05\x04\x01\x02\x05\x01\x04\x03\x01", // 𧰛
+ 0x27c1c: "\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x04\x03\x01\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𧰜
+ 0x27c1d: "\x01\x02\x01\x04\x05\x01\x02\x05\x01\x04\x03\x01\x01\x01\x03\x05\x03\x04\x02\x05\x02\x02\x01", // 𧰝
+ 0x27c1e: "\x02\x05\x01\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01\x01\x01\x01\x05\x04\x02\x05\x02\x02\x01", // 𧰞
+ 0x27c1f: "\x02\x05\x01\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 𧰟
+ 0x27c20: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x05\x05\x05\x02\x05\x03\x04\x01\x05\x04\x04\x05\x04\x04\x05", // 𧰠
+ 0x27c21: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 𧰡
+ 0x27c22: "\x02\x05\x01\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 𧰢
+ 0x27c23: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x01\x02\x03\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𧰣
+ 0x27c24: "\x01\x02\x05\x01\x04\x03\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04\x05\x04", // 𧰤
+ 0x27c25: "\x03\x02\x05\x01\x05\x01\x02\x01\x02\x01\x05\x01\x01\x04\x05\x02\x05\x02\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 𧰥
+ 0x27c26: "\x05\x01\x03\x05\x03\x03\x03\x04", // 𧰦
+ 0x27c27: "\x01\x03\x05\x03\x03\x04", // 𧰧
+ 0x27c28: "\x03\x05\x03\x03\x03\x04", // 𧰨
+ 0x27c29: "\x01\x03\x05\x03\x03\x03\x04\x01\x02", // 𧰩
+ 0x27c2a: "\x01\x01\x02\x01\x03\x05\x03\x03\x03\x04", // 𧰪
+ 0x27c2b: "\x01\x03\x05\x03\x03\x03\x04\x03\x05\x04", // 𧰫
+ 0x27c2c: "\x01\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 𧰬
+ 0x27c2d: "\x01\x03\x05\x03\x03\x03\x04\x03\x01\x05", // 𧰭
+ 0x27c2e: "\x02\x05\x01\x01\x01\x03\x05\x03\x03\x03\x04", // 𧰮
+ 0x27c2f: "\x01\x03\x05\x03\x03\x03\x04\x01\x03\x05\x04", // 𧰯
+ 0x27c30: "\x01\x03\x05\x03\x03\x03\x04\x01\x03\x05\x04", // 𧰰
+ 0x27c31: "\x01\x03\x05\x03\x03\x03\x04\x05\x03\x05\x04", // 𧰱
+ 0x27c32: "\x05\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 𧰲
+ 0x27c33: "\x01\x05\x01\x03\x01\x03\x05\x03\x03\x03\x04", // 𧰳
+ 0x27c34: "\x01\x03\x05\x03\x03\x03\x04\x03\x05\x05\x04", // 𧰴
+ 0x27c35: "\x01\x03\x05\x03\x03\x04\x03\x04\x03\x05\x05\x04", // 𧰵
+ 0x27c36: "\x01\x03\x05\x03\x03\x03\x04\x02\x05\x02\x05", // 𧰶
+ 0x27c37: "\x01\x03\x05\x03\x03\x03\x04\x05\x05\x04\x01\x04", // 𧰷
+ 0x27c38: "\x01\x03\x05\x03\x03\x03\x05\x05\x03\x02\x05\x04", // 𧰸
+ 0x27c39: "\x01\x03\x05\x03\x03\x03\x04\x05\x02\x02\x05\x02", // 𧰹
+ 0x27c3a: "\x05\x05\x01\x04\x05\x01\x03\x05\x03\x03\x03\x04", // 𧰺
+ 0x27c3b: "\x01\x03\x05\x03\x03\x03\x04\x03\x04\x01\x05\x04", // 𧰻
+ 0x27c3c: "\x03\x05\x02\x05\x03\x04\x03\x05\x03\x03\x03\x04", // 𧰼
+ 0x27c3d: "\x02\x05\x02\x05\x01\x03\x05\x03\x03\x03\x04", // 𧰽
+ 0x27c3e: "\x01\x03\x05\x03\x03\x03\x04\x01\x05\x04", // 𧰾
+ 0x27c3f: "\x01\x03\x05\x03\x03\x03\x04\x01\x02\x01\x02\x03\x04", // 𧰿
+ 0x27c40: "\x01\x03\x05\x03\x03\x03\x04\x03\x01\x02\x01\x03\x05", // 𧱀
+ 0x27c41: "\x01\x03\x05\x03\x03\x03\x04\x02\x05\x01\x02\x05\x01", // 𧱁
+ 0x27c42: "\x01\x03\x05\x03\x03\x03\x04\x01\x02\x05\x01\x01\x01", // 𧱂
+ 0x27c43: "\x02\x05\x02\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 𧱃
+ 0x27c44: "\x02\x05\x01\x02\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 𧱄
+ 0x27c45: "\x01\x03\x05\x03\x03\x03\x04\x01\x05\x01\x05\x03\x04", // 𧱅
+ 0x27c46: "\x01\x03\x05\x03\x03\x03\x04\x03\x05\x03\x05\x01\x01", // 𧱆
+ 0x27c47: "\x01\x03\x05\x03\x03\x03\x04\x05\x01\x01\x01\x01\x02", // 𧱇
+ 0x27c48: "\x05\x05\x01\x03\x04\x01\x03\x05\x03\x03\x03\x04", // 𧱈
+ 0x27c49: "\x01\x03\x05\x03\x03\x03\x04\x01\x03\x04\x03\x03\x04", // 𧱉
+ 0x27c4a: "\x01\x03\x05\x03\x03\x03\x04\x02\x05\x02\x05\x05\x04", // 𧱊
+ 0x27c4b: "\x03\x02\x05\x01\x02\x01\x01\x03\x05\x03\x03\x03\x04", // 𧱋
+ 0x27c4c: "\x03\x04\x04\x03\x04\x05\x01\x03\x05\x03\x03\x03\x04", // 𧱌
+ 0x27c4d: "\x01\x03\x05\x03\x03\x03\x04\x04\x04\x05\x01\x02\x03\x04", // 𧱍
+ 0x27c4e: "\x01\x03\x05\x03\x03\x03\x04\x05\x01\x03\x03\x01\x01\x05", // 𧱎
+ 0x27c4f: "\x04\x01\x04\x03\x01\x01\x02\x01\x03\x05\x03\x03\x03\x04", // 𧱏
+ 0x27c50: "\x01\x03\x05\x03\x03\x03\x04\x01\x02\x01\x03\x05\x02\x01", // 𧱐
+ 0x27c51: "\x01\x03\x05\x03\x03\x03\x04\x02\x05\x01\x01\x01\x05\x03", // 𧱑
+ 0x27c52: "\x01\x03\x05\x03\x03\x03\x04\x03\x03\x01\x05\x02\x01\x05", // 𧱒
+ 0x27c53: "\x01\x03\x05\x03\x03\x03\x04\x01\x03\x05\x03\x03\x03\x04", // 𧱓
+ 0x27c54: "\x03\x05\x04\x01\x01\x03\x05\x03\x03\x03\x04\x02\x05\x02", // 𧱔
+ 0x27c55: "\x01\x03\x05\x03\x03\x03\x04\x03\x03\x02\x03\x05\x05\x04", // 𧱕
+ 0x27c56: "\x01\x03\x05\x03\x03\x03\x04\x01\x02\x05\x05\x01\x05\x01", // 𧱖
+ 0x27c57: "\x01\x03\x05\x03\x03\x03\x04\x02\x05\x01\x01\x01\x01\x05", // 𧱗
+ 0x27c58: "\x04\x01\x04\x03\x01\x03\x05\x03\x03\x03\x04\x03\x04\x03\x02", // 𧱘
+ 0x27c59: "\x01\x03\x05\x03\x03\x03\x04\x04\x01\x04\x03\x01\x05\x03\x01", // 𧱙
+ 0x27c5a: "\x01\x03\x05\x03\x03\x03\x04\x03\x05\x01\x03\x03\x05\x04\x01", // 𧱚
+ 0x27c5b: "\x01\x03\x05\x03\x03\x03\x04\x01\x02\x02\x01\x01\x01\x05\x04", // 𧱛
+ 0x27c5c: "\x01\x03\x05\x03\x03\x03\x04\x03\x04\x01\x02\x05\x01\x02\x02", // 𧱜
+ 0x27c5d: "\x05\x04\x05\x04\x05\x04\x05\x04\x01\x03\x05\x03\x03\x03\x04", // 𧱝
+ 0x27c5e: "\x05\x02\x01\x03\x01\x02\x01\x01\x03\x05\x03\x03\x03\x04", // 𧱞
+ 0x27c5f: "\x01\x03\x05\x03\x03\x03\x04\x02\x05\x01\x01\x01\x05\x01\x05", // 𧱟
+ 0x27c60: "\x01\x03\x05\x03\x03\x03\x04\x01\x05\x01\x05\x01\x01\x01", // 𧱠
+ 0x27c61: "\x01\x03\x05\x03\x03\x03\x04\x04\x04\x05\x03\x05\x01\x02\x01", // 𧱡
+ 0x27c62: "\x01\x03\x05\x03\x03\x03\x04\x05\x01\x03\x03\x04\x01\x05\x04", // 𧱢
+ 0x27c63: "\x01\x03\x05\x03\x03\x03\x04\x02\x05\x02\x05\x01\x05\x04", // 𧱣
+ 0x27c64: "\x05\x05\x01\x03\x05\x03\x03\x03\x04\x03\x04\x02\x03\x04\x02", // 𧱤
+ 0x27c65: "\x01\x03\x05\x03\x03\x03\x04\x05\x05\x05\x02\x05\x01\x02\x01", // 𧱥
+ 0x27c66: "\x01\x03\x05\x03\x03\x04\x03\x04\x01\x03\x05\x03\x03\x03\x04", // 𧱦
+ 0x27c67: "\x01\x03\x05\x03\x03\x04\x03\x04\x05\x01\x03\x03\x01\x01\x05", // 𧱧
+ 0x27c68: "\x01\x03\x05\x03\x03\x03\x04\x02\x05\x01\x02\x01\x01\x05\x03\x04", // 𧱨
+ 0x27c69: "\x01\x03\x05\x03\x03\x03\x04\x03\x02\x01\x02\x05\x01\x01\x03\x04", // 𧱩
+ 0x27c6a: "\x01\x03\x05\x03\x03\x03\x04\x01\x01\x01\x03\x04\x01\x01\x03\x04", // 𧱪
+ 0x27c6b: "\x01\x03\x05\x03\x03\x03\x04\x01\x03\x01\x02\x01\x03\x05\x04\x01", // 𧱫
+ 0x27c6c: "\x01\x03\x05\x03\x03\x03\x04\x03\x04\x01\x03\x05\x01\x01\x02\x02", // 𧱬
+ 0x27c6d: "\x01\x03\x05\x03\x03\x03\x04\x03\x04\x05\x02\x03\x05\x03\x05\x04", // 𧱭
+ 0x27c6e: "\x01\x03\x05\x03\x03\x03\x04\x03\x05\x04\x01\x02\x03\x04\x05\x04", // 𧱮
+ 0x27c6f: "\x01\x03\x05\x03\x03\x03\x04\x03\x05\x04\x01\x02\x05\x02\x05\x04", // 𧱯
+ 0x27c70: "\x01\x03\x05\x03\x03\x03\x04\x05\x04\x05\x02\x03\x02\x01\x05\x04", // 𧱰
+ 0x27c71: "\x01\x03\x05\x03\x03\x03\x04\x04\x01\x04\x03\x01\x03\x03\x03\x03", // 𧱱
+ 0x27c72: "\x01\x03\x05\x03\x03\x03\x04\x03\x01\x01\x05\x04\x03\x01\x02\x03\x04", // 𧱲
+ 0x27c73: "\x04\x01\x04\x03\x01\x03\x05\x03\x03\x03\x04\x01\x01\x02\x02\x05\x01", // 𧱳
+ 0x27c74: "\x01\x03\x05\x03\x03\x03\x04\x04\x05\x02\x05\x01\x01\x04\x01\x03\x04", // 𧱴
+ 0x27c75: "\x01\x03\x05\x03\x03\x03\x04\x04\x01\x03\x05\x01\x01\x02\x02\x05\x01", // 𧱵
+ 0x27c76: "\x05\x01\x05\x01\x03\x05\x03\x03\x03\x04\x01\x03\x05\x03\x03\x03\x04", // 𧱶
+ 0x27c77: "\x01\x03\x05\x03\x03\x03\x04\x03\x03\x02\x04\x03\x01\x02\x01\x03\x04", // 𧱷
+ 0x27c78: "\x01\x03\x05\x03\x03\x03\x04\x03\x05\x02\x01\x03\x02\x05\x01\x01\x01", // 𧱸
+ 0x27c79: "\x01\x03\x05\x03\x03\x03\x04\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 𧱹
+ 0x27c7a: "\x01\x03\x05\x03\x03\x03\x04\x03\x02\x01\x03\x04\x01\x02\x05\x01\x02", // 𧱺
+ 0x27c7b: "\x01\x03\x05\x03\x03\x03\x04\x03\x04\x04\x03\x02\x05\x01\x01\x01\x03\x05", // 𧱻
+ 0x27c7c: "\x01\x03\x05\x03\x03\x03\x04\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04", // 𧱼
+ 0x27c7d: "\x01\x03\x05\x03\x03\x03\x04\x01\x03\x01\x01\x05\x03\x04\x02\x05\x01\x01", // 𧱽
+ 0x27c7e: "\x01\x03\x05\x03\x03\x03\x04\x01\x03\x05\x03\x03\x03\x04\x01\x03\x04\x04", // 𧱾
+ 0x27c7f: "\x01\x03\x05\x03\x03\x03\x04\x04\x01\x03\x05\x01\x01\x02\x05\x01\x01\x02", // 𧱿
+ 0x27c80: "\x01\x03\x05\x03\x03\x03\x04\x04\x01\x05\x05\x04\x04\x05\x03\x01\x01\x02", // 𧲀
+ 0x27c81: "\x05\x05\x01\x03\x04\x01\x03\x05\x03\x03\x03\x04\x05\x01\x01\x02\x05\x02", // 𧲁
+ 0x27c82: "\x01\x03\x05\x03\x03\x03\x04\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 𧲂
+ 0x27c83: "\x01\x03\x05\x03\x03\x03\x04\x05\x01\x01\x02\x02\x05\x01\x01\x04\x01\x03\x04", // 𧲃
+ 0x27c84: "\x01\x03\x05\x03\x03\x03\x04\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04", // 𧲄
+ 0x27c85: "\x01\x03\x05\x03\x03\x03\x04\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𧲅
+ 0x27c86: "\x01\x03\x05\x03\x03\x03\x04\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𧲆
+ 0x27c87: "\x01\x02\x01\x04\x05\x01\x02\x05\x01\x03\x05\x05\x04\x01\x03\x05\x03\x03\x03\x04", // 𧲇
+ 0x27c88: "\x01\x03\x05\x03\x03\x03\x04\x01\x03\x01\x02\x01\x03\x05\x04\x01\x04\x05\x04", // 𧲈
+ 0x27c89: "\x01\x03\x05\x03\x03\x03\x04\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 𧲉
+ 0x27c8a: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x04\x04\x04\x04\x01\x03\x05\x03\x03\x03\x04", // 𧲊
+ 0x27c8b: "\x01\x03\x05\x03\x03\x03\x04\x02\x01\x05\x03\x01\x05\x01\x03\x05\x03\x03\x03\x04", // 𧲋
+ 0x27c8c: "\x01\x03\x05\x03\x03\x03\x04\x03\x01\x04\x03\x01\x04\x01\x05\x01\x01\x02\x01\x03\x04", // 𧲌
+ 0x27c8d: "\x01\x03\x05\x03\x03\x03\x04\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x03\x05\x04", // 𧲍
+ 0x27c8e: "\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x03\x05\x04\x01\x03\x05\x03\x03\x03\x04", // 𧲎
+ 0x27c8f: "\x01\x03\x05\x03\x03\x03\x04\x01\x03\x05\x03\x03\x03\x04\x01\x03\x05\x03\x03\x03\x04", // 𧲏
+ 0x27c90: "\x01\x03\x05\x03\x03\x03\x04\x02\x05\x01\x01\x01\x02\x02\x01\x03\x04\x02\x04\x01\x03\x04", // 𧲐
+ 0x27c91: "\x01\x03\x05\x03\x03\x03\x04\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x02\x05", // 𧲑
+ 0x27c92: "\x01\x03\x05\x03\x03\x03\x04\x01\x02\x01\x02\x01\x03\x04\x03\x04\x02\x03\x04\x03\x04\x02", // 𧲒
+ 0x27c93: "\x01\x03\x05\x03\x03\x03\x04\x03\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x02\x01\x03\x04", // 𧲓
+ 0x27c94: "\x03\x03\x02\x05\x02\x01\x02\x05\x01\x01\x02\x05\x02\x01\x01\x02\x01\x03\x05\x03\x03\x03\x04", // 𧲔
+ 0x27c95: "\x01\x03\x05\x03\x03\x03\x04\x05\x05\x04\x01\x04\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 𧲕
+ 0x27c96: "\x01\x03\x05\x03\x03\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01\x01\x01", // 𧲖
+ 0x27c97: "\x01\x03\x05\x03\x03\x03\x04\x03\x01\x04\x03\x01\x04\x01\x03\x01\x02\x01\x03\x05\x04\x01", // 𧲗
+ 0x27c98: "\x01\x03\x05\x03\x03\x03\x04\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x04\x03\x01\x01\x05\x03\x04", // 𧲘
+ 0x27c99: "\x01\x03\x05\x03\x03\x03\x04\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 𧲙
+ 0x27c9a: "\x01\x03\x05\x03\x03\x03\x04\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x03\x05\x02\x05\x01", // 𧲚
+ 0x27c9b: "\x01\x02\x01\x02\x04\x01\x03\x05\x02\x02\x01\x01\x05\x04\x04\x04\x04\x01\x03\x05\x03\x03\x03\x04", // 𧲛
+ 0x27c9c: "\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x03\x05\x02\x05\x02\x01\x03\x05\x03\x03\x03\x04", // 𧲜
+ 0x27c9d: "\x03\x03\x02\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x01\x02\x03\x05\x04\x01\x01\x03\x05\x03\x03\x03\x04", // 𧲝
+ 0x27c9e: "\x03\x03\x02\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x01\x02\x03\x05\x04\x01\x01\x03\x05\x03\x03\x03\x04\x02\x05\x02", // 𧲞
+ 0x27c9f: "\x01\x03\x05\x03\x03\x03\x04\x01\x03\x05\x03\x03\x03\x04\x01\x01\x02\x03\x04\x01\x01\x02\x03\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𧲟
+ 0x27ca0: "\x03\x04\x04\x03\x05\x03\x03\x05", // 𧲠
+ 0x27ca1: "\x03\x04\x04\x03\x05\x03\x03\x05\x03", // 𧲡
+ 0x27ca2: "\x03\x04\x04\x03\x05\x03\x03\x03\x01\x05", // 𧲢
+ 0x27ca3: "\x03\x04\x04\x03\x05\x03\x03\x01\x02\x04", // 𧲣
+ 0x27ca4: "\x03\x04\x04\x03\x05\x03\x03\x03\x01\x01\x02", // 𧲤
+ 0x27ca5: "\x03\x04\x04\x03\x05\x03\x03\x02\x05\x01\x01", // 𧲥
+ 0x27ca6: "\x03\x04\x04\x03\x05\x03\x03\x01\x01\x03\x05", // 𧲦
+ 0x27ca7: "\x03\x04\x04\x03\x05\x03\x03\x05\x02\x01\x05", // 𧲧
+ 0x27ca8: "\x03\x04\x04\x03\x05\x03\x03\x01\x01\x03\x02", // 𧲨
+ 0x27ca9: "\x03\x04\x04\x03\x05\x03\x03\x03\x05\x01\x01", // 𧲩
+ 0x27caa: "\x03\x04\x04\x03\x05\x03\x03\x04\x01\x03\x05", // 𧲪
+ 0x27cab: "\x03\x04\x04\x03\x05\x03\x03\x03\x05\x04", // 𧲫
+ 0x27cac: "\x03\x04\x04\x03\x05\x03\x03\x02\x05\x01\x03\x04", // 𧲬
+ 0x27cad: "\x03\x04\x04\x03\x05\x03\x03\x01\x03\x01\x02\x01", // 𧲭
+ 0x27cae: "\x03\x04\x04\x03\x05\x03\x03\x03\x01\x02\x01\x01", // 𧲮
+ 0x27caf: "\x03\x04\x04\x03\x05\x03\x03\x01\x03\x03\x04\x04", // 𧲯
+ 0x27cb0: "\x03\x04\x04\x03\x05\x03\x03\x03\x02\x01\x02\x01", // 𧲰
+ 0x27cb1: "\x03\x04\x04\x03\x05\x03\x03\x02\x05\x01\x03\x04", // 𧲱
+ 0x27cb2: "\x03\x04\x04\x03\x05\x03\x03\x03\x03\x05\x04\x04", // 𧲲
+ 0x27cb3: "\x03\x04\x04\x03\x05\x03\x03\x03\x05\x03\x04\x05", // 𧲳
+ 0x27cb4: "\x03\x04\x04\x03\x05\x03\x03\x03\x05\x04\x04\x04", // 𧲴
+ 0x27cb5: "\x03\x04\x04\x03\x05\x03\x03\x05\x04\x01\x02\x01", // 𧲵
+ 0x27cb6: "\x03\x04\x04\x03\x05\x03\x03\x03\x01\x03\x04\x04", // 𧲶
+ 0x27cb7: "\x03\x04\x04\x03\x05\x03\x03\x01\x02\x03\x04\x04", // 𧲷
+ 0x27cb8: "\x03\x04\x04\x03\x05\x03\x03\x02\x01\x02\x05\x01", // 𧲸
+ 0x27cb9: "\x03\x04\x04\x03\x05\x03\x03\x02\x05\x01\x02\x01", // 𧲹
+ 0x27cba: "\x03\x04\x04\x03\x05\x03\x03\x01\x04\x03\x01\x02", // 𧲺
+ 0x27cbb: "\x03\x04\x04\x03\x05\x03\x03\x02\x05\x01\x03\x04", // 𧲻
+ 0x27cbc: "\x03\x04\x04\x03\x05\x03\x03\x03\x05\x05\x01\x05", // 𧲼
+ 0x27cbd: "\x03\x04\x04\x03\x05\x03\x03\x01\x05\x01\x05", // 𧲽
+ 0x27cbe: "\x03\x04\x04\x03\x05\x03\x03\x02\x05\x02\x02\x01\x01", // 𧲾
+ 0x27cbf: "\x03\x04\x04\x03\x05\x03\x03\x03\x03\x01\x02\x05\x01", // 𧲿
+ 0x27cc0: "\x03\x04\x04\x03\x05\x03\x03\x05\x05\x05\x02\x05\x02", // 𧳀
+ 0x27cc1: "\x03\x04\x04\x03\x05\x03\x03\x03\x05\x04\x03\x05\x04", // 𧳁
+ 0x27cc2: "\x03\x04\x04\x03\x05\x03\x03\x03\x02\x01\x03\x04\x04", // 𧳂
+ 0x27cc3: "\x03\x04\x04\x03\x05\x03\x03\x02\x05\x01\x02\x01\x04", // 𧳃
+ 0x27cc4: "\x03\x04\x04\x03\x05\x03\x03\x03\x02\x05\x03\x04\x01", // 𧳄
+ 0x27cc5: "\x03\x04\x04\x03\x05\x03\x03\x01\x02\x05\x01\x03\x04", // 𧳅
+ 0x27cc6: "\x03\x04\x04\x03\x05\x03\x03\x02\x05\x01\x02\x05\x01", // 𧳆
+ 0x27cc7: "\x03\x04\x04\x03\x05\x03\x03\x03\x04\x01\x02\x05\x01", // 𧳇
+ 0x27cc8: "\x03\x04\x04\x03\x05\x03\x03\x03\x02\x01\x05\x01\x01", // 𧳈
+ 0x27cc9: "\x03\x04\x04\x03\x05\x03\x03\x04\x03\x01\x01\x03\x02", // 𧳉
+ 0x27cca: "\x03\x04\x04\x03\x05\x03\x03\x03\x05\x03\x05\x01\x01\x02", // 𧳊
+ 0x27ccb: "\x03\x04\x04\x03\x05\x03\x03\x04\x03\x05\x01\x05\x02\x03", // 𧳋
+ 0x27ccc: "\x03\x04\x04\x03\x05\x03\x03\x03\x01\x02\x03\x04\x03\x05", // 𧳌
+ 0x27ccd: "\x03\x04\x04\x03\x05\x03\x03\x02\x04\x03\x03\x05\x04\x01", // 𧳍
+ 0x27cce: "\x03\x04\x04\x03\x05\x03\x03\x01\x02\x05\x01\x02\x05\x01", // 𧳎
+ 0x27ccf: "\x03\x04\x04\x03\x05\x03\x03\x01\x03\x02\x04\x02\x05\x01", // 𧳏
+ 0x27cd0: "\x03\x04\x04\x03\x05\x03\x03\x03\x04\x01\x03\x02\x05\x02", // 𧳐
+ 0x27cd1: "\x03\x04\x04\x03\x05\x03\x03\x01\x03\x05\x03\x03\x03\x04", // 𧳑
+ 0x27cd2: "\x03\x04\x04\x03\x05\x03\x03\x02\x05\x01\x01\x01\x03\x04", // 𧳒
+ 0x27cd3: "\x03\x04\x04\x03\x05\x03\x03\x04\x05\x01\x01\x05\x03\x04", // 𧳓
+ 0x27cd4: "\x03\x04\x04\x03\x05\x03\x03\x01\x02\x05\x05\x01\x05\x01", // 𧳔
+ 0x27cd5: "\x03\x04\x04\x03\x05\x03\x03\x01\x04\x03\x01\x02\x03\x04", // 𧳕
+ 0x27cd6: "\x03\x04\x04\x03\x05\x03\x03\x03\x02\x05\x01\x01\x03\x04", // 𧳖
+ 0x27cd7: "\x03\x04\x04\x03\x05\x03\x03\x01\x03\x04\x05\x02\x01\x05", // 𧳗
+ 0x27cd8: "\x03\x04\x04\x03\x05\x03\x03\x03\x04\x04\x05\x02\x05\x01", // 𧳘
+ 0x27cd9: "\x03\x04\x04\x03\x05\x03\x03\x05\x01\x01\x02\x04\x01\x03\x04", // 𧳙
+ 0x27cda: "\x03\x04\x04\x03\x05\x03\x03\x04\x01\x03\x04\x03\x04\x01\x02", // 𧳚
+ 0x27cdb: "\x03\x04\x04\x03\x05\x03\x03\x04\x01\x04\x03\x01\x05\x03\x01", // 𧳛
+ 0x27cdc: "\x03\x04\x04\x03\x05\x03\x03\x03\x05\x01\x02\x01\x02\x05\x01", // 𧳜
+ 0x27cdd: "\x03\x04\x04\x03\x05\x03\x03\x02\x01\x02\x05\x01\x01\x01\x02", // 𧳝
+ 0x27cde: "\x03\x04\x04\x03\x05\x03\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 𧳞
+ 0x27cdf: "\x03\x04\x04\x03\x05\x03\x03\x01\x03\x04\x03\x04\x02\x03\x04", // 𧳟
+ 0x27ce0: "\x03\x04\x04\x03\x05\x03\x03\x02\x05\x01\x02\x01\x01\x03\x02", // 𧳠
+ 0x27ce1: "\x03\x04\x04\x03\x05\x03\x03\x03\x02\x01\x02\x05\x01\x03\x04", // 𧳡
+ 0x27ce2: "\x03\x04\x04\x03\x05\x03\x03\x02\x05\x01\x01\x01\x05\x01\x05", // 𧳢
+ 0x27ce3: "\x03\x04\x04\x03\x05\x03\x03\x01\x02\x05\x01\x01\x02\x03\x04", // 𧳣
+ 0x27ce4: "\x03\x04\x04\x03\x05\x03\x03\x03\x02\x03\x05\x04\x03\x05\x04", // 𧳤
+ 0x27ce5: "\x03\x04\x04\x03\x05\x03\x03\x03\x04\x04\x03\x01\x02\x03\x04", // 𧳥
+ 0x27ce6: "\x03\x04\x04\x03\x05\x03\x03\x05\x05\x05\x03\x02\x05\x03\x04\x01", // 𧳦
+ 0x27ce7: "\x03\x04\x04\x03\x05\x03\x03\x01\x05\x01\x05\x03\x02\x05\x01\x01", // 𧳧
+ 0x27ce8: "\x03\x04\x04\x03\x05\x03\x03\x05\x04\x05\x02\x03\x01\x02\x03\x04", // 𧳨
+ 0x27ce9: "\x03\x04\x04\x03\x05\x03\x03\x05\x05\x01\x03\x05\x03\x03\x03\x04", // 𧳩
+ 0x27cea: "\x03\x04\x04\x03\x05\x03\x03\x02\x05\x01\x02\x01\x03\x05\x04\x01", // 𧳪
+ 0x27ceb: "\x03\x04\x04\x03\x05\x03\x03\x04\x03\x01\x02\x05\x03\x05\x01\x01", // 𧳫
+ 0x27cec: "\x03\x04\x04\x03\x05\x03\x03\x05\x02\x01\x03\x02\x05\x01\x01\x01", // 𧳬
+ 0x27ced: "\x03\x04\x04\x03\x05\x03\x03\x03\x04\x04\x03\x01\x01\x03\x05\x04", // 𧳭
+ 0x27cee: "\x03\x04\x04\x03\x05\x03\x03\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𧳮
+ 0x27cef: "\x03\x04\x04\x03\x05\x03\x03\x01\x02\x01\x03\x02\x05\x01\x01\x04", // 𧳯
+ 0x27cf0: "\x03\x04\x04\x03\x05\x03\x03\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 𧳰
+ 0x27cf1: "\x03\x04\x04\x03\x05\x03\x03\x03\x02\x05\x02\x01\x03\x05", // 𧳱
+ 0x27cf2: "\x03\x04\x04\x03\x05\x03\x03\x01\x05\x01\x01\x03\x02\x05\x02\x02", // 𧳲
+ 0x27cf3: "\x03\x04\x04\x03\x05\x03\x03\x01\x01\x01\x02\x05\x03\x01\x03\x02", // 𧳳
+ 0x27cf4: "\x03\x04\x04\x03\x05\x03\x03\x03\x02\x05\x03\x04\x01\x01\x03\x02", // 𧳴
+ 0x27cf5: "\x03\x04\x04\x03\x05\x03\x03\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 𧳵
+ 0x27cf6: "\x03\x04\x04\x03\x05\x03\x03\x03\x02\x01\x01\x05\x01\x01\x02\x05\x04", // 𧳶
+ 0x27cf7: "\x03\x04\x04\x03\x05\x03\x03\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𧳷
+ 0x27cf8: "\x03\x04\x04\x03\x05\x03\x03\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01", // 𧳸
+ 0x27cf9: "\x03\x04\x04\x03\x05\x03\x03\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03", // 𧳹
+ 0x27cfa: "\x03\x04\x04\x03\x05\x03\x03\x05\x03\x04\x05\x03\x04\x02\x01\x02\x01", // 𧳺
+ 0x27cfb: "\x03\x04\x04\x03\x05\x03\x03\x03\x03\x02\x04\x02\x05\x01\x02\x01\x04", // 𧳻
+ 0x27cfc: "\x03\x04\x04\x03\x05\x03\x03\x02\x05\x01\x04\x03\x05\x01\x05\x02\x03", // 𧳼
+ 0x27cfd: "\x03\x04\x04\x03\x05\x03\x03\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 𧳽
+ 0x27cfe: "\x03\x04\x04\x03\x05\x03\x03\x01\x03\x04\x01\x02\x01\x05\x02\x01\x05", // 𧳾
+ 0x27cff: "\x03\x04\x04\x03\x05\x03\x03\x03\x01\x02\x05\x01\x01\x02\x01\x01\x05", // 𧳿
+ 0x27d00: "\x03\x04\x04\x03\x05\x03\x03\x03\x05\x02\x05\x03\x04\x01\x05\x03\x05", // 𧴀
+ 0x27d01: "\x03\x04\x04\x03\x05\x03\x03\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 𧴁
+ 0x27d02: "\x03\x04\x04\x03\x05\x03\x03\x03\x05\x04\x01\x01\x01\x02\x04\x05\x04", // 𧴂
+ 0x27d03: "\x03\x04\x04\x03\x05\x03\x03\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02", // 𧴃
+ 0x27d04: "\x03\x04\x04\x03\x05\x03\x03\x04\x01\x03\x05\x01\x01\x02\x05\x01\x01\x02", // 𧴄
+ 0x27d05: "\x03\x04\x04\x03\x05\x03\x03\x01\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04", // 𧴅
+ 0x27d06: "\x03\x04\x04\x03\x05\x03\x03\x02\x01\x05\x03\x01\x05\x02\x02\x05\x02\x01\x01", // 𧴆
+ 0x27d07: "\x03\x04\x04\x03\x05\x03\x03\x03\x04\x04\x03\x05\x01\x01\x02\x01\x03\x04", // 𧴇
+ 0x27d08: "\x03\x04\x04\x03\x05\x03\x03\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05", // 𧴈
+ 0x27d09: "\x03\x04\x04\x03\x05\x03\x03\x02\x05\x01\x01\x04\x03\x05\x01\x05\x02\x03", // 𧴉
+ 0x27d0a: "\x03\x04\x04\x03\x05\x03\x03\x02\x05\x01\x02\x05\x01\x02\x04\x05\x04\x04", // 𧴊
+ 0x27d0b: "\x03\x04\x04\x03\x05\x03\x03\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 𧴋
+ 0x27d0c: "\x03\x04\x04\x03\x05\x03\x03\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 𧴌
+ 0x27d0d: "\x03\x04\x04\x03\x05\x03\x03\x01\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 𧴍
+ 0x27d0e: "\x03\x04\x04\x03\x05\x03\x03\x02\x01\x02\x01\x02\x01\x02\x01\x02\x01\x02\x01", // 𧴎
+ 0x27d0f: "\x03\x04\x04\x03\x05\x03\x03\x03\x03\x05\x04\x01\x04\x03\x03\x05\x04\x01\x04", // 𧴏
+ 0x27d10: "\x03\x04\x04\x03\x05\x03\x03\x03\x04\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 𧴐
+ 0x27d11: "\x03\x04\x04\x03\x05\x03\x03\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04", // 𧴑
+ 0x27d12: "\x03\x04\x04\x03\x05\x03\x03\x01\x02\x01\x04\x05\x01\x02\x05\x01\x04\x03\x01", // 𧴒
+ 0x27d13: "\x03\x04\x04\x03\x05\x03\x03\x01\x03\x02\x05\x02\x02\x01\x03\x02\x05\x02\x02", // 𧴓
+ 0x27d14: "\x03\x04\x04\x03\x05\x03\x03\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𧴔
+ 0x27d15: "\x03\x04\x04\x03\x05\x03\x03\x04\x05\x04\x04\x04\x05\x04\x04\x04\x05\x04\x04", // 𧴕
+ 0x27d16: "\x03\x04\x04\x03\x05\x03\x03\x02\x01\x02\x01\x01\x03\x01\x02\x03\x03\x05\x03\x04", // 𧴖
+ 0x27d17: "\x03\x04\x04\x03\x05\x03\x03\x04\x01\x05\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 𧴗
+ 0x27d18: "\x03\x04\x04\x03\x05\x03\x03\x02\x01\x05\x03\x01\x05\x01\x03\x05\x03\x03\x03\x04", // 𧴘
+ 0x27d19: "\x03\x04\x04\x03\x05\x03\x03\x05\x03\x04\x02\x01\x02\x01\x05\x03\x04\x02\x01\x02\x01", // 𧴙
+ 0x27d1a: "\x03\x04\x04\x03\x05\x03\x03\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𧴚
+ 0x27d1b: "\x03\x04\x04\x03\x05\x03\x03\x03\x05\x03\x05\x01\x01\x02\x05\x03\x03\x01\x01\x02", // 𧴛
+ 0x27d1c: "\x03\x04\x04\x03\x05\x03\x03\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 𧴜
+ 0x27d1d: "\x03\x04\x04\x03\x05\x03\x03\x04\x04\x01\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04", // 𧴝
+ 0x27d1e: "\x03\x04\x04\x03\x05\x03\x03\x02\x05\x01\x01\x05\x04\x03\x05\x04\x01\x01\x05\x01\x05", // 𧴞
+ 0x27d1f: "\x03\x04\x04\x03\x05\x03\x03\x01\x02\x01\x02\x03\x05\x04\x01\x01\x01\x02\x04\x05\x04", // 𧴟
+ 0x27d20: "\x03\x04\x04\x03\x05\x03\x03\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 𧴠
+ 0x27d21: "\x03\x04\x04\x03\x05\x03\x03\x01\x02\x05\x01\x02\x03\x04\x05\x03\x02\x05\x01\x01\x01\x03\x04", // 𧴡
+ 0x27d22: "\x03\x04\x04\x03\x05\x03\x03\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x04\x05\x02\x05\x01\x01\x01", // 𧴢
+ 0x27d23: "\x03\x04\x04\x03\x05\x03\x03\x02\x05\x01\x02\x05\x01\x01\x03\x01\x02\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 𧴣
+ 0x27d24: "\x02\x05\x01\x01\x01\x03\x04\x02\x04", // 𧴤
+ 0x27d25: "\x05\x03\x02\x05\x01\x01\x01\x03\x04", // 𧴥
+ 0x27d26: "\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 𧴦
+ 0x27d27: "\x02\x05\x01\x01\x01\x03\x04\x05\x03", // 𧴧
+ 0x27d28: "\x04\x01\x02\x05\x01\x01\x01\x03\x04", // 𧴨
+ 0x27d29: "\x02\x05\x01\x01\x01\x03\x04\x03\x04", // 𧴩
+ 0x27d2a: "\x02\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𧴪
+ 0x27d2b: "\x02\x05\x01\x01\x01\x03\x04\x01\x02\x04", // 𧴫
+ 0x27d2c: "\x02\x05\x01\x01\x01\x03\x04\x05\x03\x04", // 𧴬
+ 0x27d2d: "\x03\x03\x03\x02\x05\x01\x01\x01\x03\x04", // 𧴭
+ 0x27d2e: "\x01\x02\x05\x01\x01\x01\x03\x04\x05\x04", // 𧴮
+ 0x27d2f: "\x02\x05\x01\x01\x01\x03\x04\x05\x02\x01", // 𧴯
+ 0x27d30: "\x02\x05\x01\x01\x01\x03\x04\x01\x05\x04", // 𧴰
+ 0x27d31: "\x02\x05\x01\x01\x01\x03\x04\x05\x03\x01", // 𧴱
+ 0x27d32: "\x05\x05\x05\x02\x05\x01\x01\x01\x03\x04", // 𧴲
+ 0x27d33: "\x01\x01\x05\x04\x02\x05\x01\x01\x01\x03\x04", // 𧴳
+ 0x27d34: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x04", // 𧴴
+ 0x27d35: "\x05\x04\x05\x04\x02\x05\x01\x01\x01\x03\x04", // 𧴵
+ 0x27d36: "\x02\x05\x01\x01\x01\x03\x04\x01\x05\x01\x02", // 𧴶
+ 0x27d37: "\x02\x05\x01\x01\x01\x03\x04\x01\x02\x05\x03", // 𧴷
+ 0x27d38: "\x02\x05\x01\x01\x01\x03\x04\x04\x05\x03\x05", // 𧴸
+ 0x27d39: "\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𧴹
+ 0x27d3a: "\x03\x05\x05\x04\x02\x05\x01\x01\x01\x03\x04", // 𧴺
+ 0x27d3b: "\x04\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𧴻
+ 0x27d3c: "\x02\x05\x01\x01\x01\x03\x04\x04\x04\x01\x02", // 𧴼
+ 0x27d3d: "\x02\x05\x01\x01\x01\x03\x04\x01\x01\x02\x01", // 𧴽
+ 0x27d3e: "\x05\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𧴾
+ 0x27d3f: "\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𧴿
+ 0x27d40: "\x02\x05\x01\x01\x01\x03\x04\x01\x02\x05\x01", // 𧵀
+ 0x27d41: "\x02\x05\x01\x01\x01\x03\x04\x02\x03\x04\x03", // 𧵁
+ 0x27d42: "\x02\x05\x01\x01\x01\x03\x04\x03\x05\x01\x01", // 𧵂
+ 0x27d43: "\x02\x05\x01\x01\x01\x03\x04\x03\x01\x01\x02", // 𧵃
+ 0x27d44: "\x02\x05\x01\x01\x01\x03\x04\x03\x05\x01\x05", // 𧵄
+ 0x27d45: "\x02\x05\x01\x01\x01\x03\x04\x05\x02\x01\x05", // 𧵅
+ 0x27d46: "\x02\x05\x01\x01\x01\x03\x04\x03\x03\x01\x02", // 𧵆
+ 0x27d47: "\x02\x05\x01\x01\x01\x03\x04\x01\x05\x05\x04", // 𧵇
+ 0x27d48: "\x02\x05\x01\x01\x01\x03\x04\x03\x05\x05\x04", // 𧵈
+ 0x27d49: "\x02\x05\x01\x01\x01\x03\x04\x03\x01\x02\x03\x04", // 𧵉
+ 0x27d4a: "\x02\x05\x01\x01\x01\x03\x04\x01\x02\x02\x01\x01", // 𧵊
+ 0x27d4b: "\x02\x05\x01\x01\x01\x03\x04\x01\x01\x02\x03\x04", // 𧵋
+ 0x27d4c: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x03\x04", // 𧵌
+ 0x27d4d: "\x03\x05\x04\x05\x05\x02\x05\x01\x01\x01\x03\x04", // 𧵍
+ 0x27d4e: "\x01\x02\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𧵎
+ 0x27d4f: "\x03\x05\x04\x02\x04\x02\x05\x01\x01\x01\x03\x04", // 𧵏
+ 0x27d50: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x05\x04", // 𧵐
+ 0x27d51: "\x02\x05\x01\x01\x01\x03\x04\x01\x02\x02\x05\x01", // 𧵑
+ 0x27d52: "\x04\x04\x05\x01\x02\x02\x05\x01\x01\x01\x03\x04", // 𧵒
+ 0x27d53: "\x02\x05\x01\x01\x01\x03\x04\x05\x03\x02\x05\x01", // 𧵓
+ 0x27d54: "\x01\x03\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𧵔
+ 0x27d55: "\x04\x05\x05\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𧵕
+ 0x27d56: "\x02\x05\x01\x01\x01\x03\x04\x01\x01\x02\x03\x04", // 𧵖
+ 0x27d57: "\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𧵗
+ 0x27d58: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x02\x01\x01", // 𧵘
+ 0x27d59: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x03\x04", // 𧵙
+ 0x27d5a: "\x03\x05\x04\x05\x04\x02\x05\x01\x01\x01\x03\x04", // 𧵚
+ 0x27d5b: "\x02\x05\x01\x01\x01\x03\x04\x01\x02\x05\x01\x02", // 𧵛
+ 0x27d5c: "\x01\x02\x05\x05\x05\x02\x05\x01\x01\x01\x03\x04", // 𧵜
+ 0x27d5d: "\x02\x05\x01\x01\x01\x03\x04\x01\x05\x05\x03\x04", // 𧵝
+ 0x27d5e: "\x02\x05\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 𧵞
+ 0x27d5f: "\x02\x05\x01\x01\x01\x03\x04\x03\x03\x05\x04\x04", // 𧵟
+ 0x27d60: "\x05\x02\x02\x05\x02\x02\x05\x01\x01\x01\x03\x04", // 𧵠
+ 0x27d61: "\x02\x05\x01\x01\x01\x03\x04\x03\x05\x03\x05\x01", // 𧵡
+ 0x27d62: "\x02\x05\x01\x01\x01\x03\x04\x03\x05\x05\x01\x05", // 𧵢
+ 0x27d63: "\x02\x05\x01\x01\x01\x03\x04\x03\x05\x02\x05\x01\x01", // 𧵣
+ 0x27d64: "\x02\x05\x01\x01\x01\x03\x04\x04\x04\x05\x01\x02\x04", // 𧵤
+ 0x27d65: "\x02\x05\x01\x01\x01\x03\x04\x03\x05\x01\x03\x05\x05", // 𧵥
+ 0x27d66: "\x02\x05\x01\x01\x01\x03\x04\x02\x04\x03\x01\x03\x05", // 𧵦
+ 0x27d67: "\x02\x05\x01\x01\x01\x03\x04\x03\x04\x01\x03\x05\x04", // 𧵧
+ 0x27d68: "\x02\x05\x01\x01\x01\x03\x04\x04\x04\x05\x05\x03\x01", // 𧵨
+ 0x27d69: "\x01\x02\x05\x02\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𧵩
+ 0x27d6a: "\x02\x05\x01\x01\x01\x03\x04\x01\x05\x03\x05\x03\x04", // 𧵪
+ 0x27d6b: "\x02\x05\x01\x01\x01\x03\x04\x02\x02\x05\x01\x05\x01", // 𧵫
+ 0x27d6c: "\x02\x05\x01\x01\x01\x03\x04\x03\x03\x03\x05\x03\x04", // 𧵬
+ 0x27d6d: "\x01\x01\x02\x01\x01\x02\x02\x05\x01\x01\x01\x03\x04", // 𧵭
+ 0x27d6e: "\x02\x05\x01\x01\x01\x03\x04\x03\x04\x05\x02\x03\x05", // 𧵮
+ 0x27d6f: "\x02\x05\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 𧵯
+ 0x27d70: "\x03\x02\x02\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𧵰
+ 0x27d71: "\x05\x04\x05\x04\x05\x04\x02\x05\x01\x01\x01\x03\x04", // 𧵱
+ 0x27d72: "\x01\x03\x05\x04\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 𧵲
+ 0x27d73: "\x02\x05\x01\x01\x01\x03\x04\x01\x01\x02\x02\x05\x01", // 𧵳
+ 0x27d74: "\x02\x05\x01\x01\x01\x03\x04\x04\x04\x05\x01\x01\x02", // 𧵴
+ 0x27d75: "\x02\x05\x01\x01\x01\x03\x04\x04\x03\x01\x02\x03\x04", // 𧵵
+ 0x27d76: "\x02\x05\x01\x01\x01\x03\x04\x01\x01\x01\x05\x03\x04", // 𧵶
+ 0x27d77: "\x02\x05\x01\x01\x01\x03\x04\x01\x01\x01\x03\x05\x04", // 𧵷
+ 0x27d78: "\x01\x01\x01\x05\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𧵸
+ 0x27d79: "\x01\x05\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𧵹
+ 0x27d7a: "\x02\x05\x01\x01\x01\x03\x04\x03\x01\x01\x02\x03\x04", // 𧵺
+ 0x27d7b: "\x02\x05\x01\x01\x01\x03\x04\x01\x01\x02\x01\x05\x04", // 𧵻
+ 0x27d7c: "\x01\x05\x04\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𧵼
+ 0x27d7d: "\x02\x05\x03\x04\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𧵽
+ 0x27d7e: "\x02\x05\x01\x01\x01\x03\x04\x04\x05\x05\x03\x04", // 𧵾
+ 0x27d7f: "\x04\x04\x05\x01\x02\x04\x02\x05\x01\x01\x01\x03\x04", // 𧵿
+ 0x27d80: "\x05\x04\x02\x05\x01\x01\x01\x03\x04\x01\x01\x05\x04", // 𧶀
+ 0x27d81: "\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𧶁
+ 0x27d82: "\x02\x05\x01\x01\x01\x03\x04\x01\x03\x04\x05\x03\x04", // 𧶂
+ 0x27d83: "\x05\x04\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𧶃
+ 0x27d84: "\x02\x05\x01\x01\x01\x03\x04\x03\x05\x05\x01\x01\x02", // 𧶄
+ 0x27d85: "\x02\x05\x01\x01\x01\x03\x04\x03\x01\x05\x05\x04\x01\x04", // 𧶅
+ 0x27d86: "\x02\x05\x01\x01\x01\x03\x04\x04\x01\x03\x04\x02\x05\x01", // 𧶆
+ 0x27d87: "\x02\x05\x01\x01\x01\x03\x04\x01\x02\x01\x03\x03\x01\x02", // 𧶇
+ 0x27d88: "\x02\x05\x01\x01\x01\x03\x04\x02\x04\x03\x03\x05\x04\x01", // 𧶈
+ 0x27d89: "\x04\x04\x05\x01\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 𧶉
+ 0x27d8a: "\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04\x01\x01\x05\x04", // 𧶊
+ 0x27d8b: "\x02\x05\x01\x01\x01\x03\x04\x01\x02\x02\x01\x01\x01\x05", // 𧶋
+ 0x27d8c: "\x01\x02\x04\x05\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𧶌
+ 0x27d8d: "\x02\x05\x01\x01\x01\x03\x04\x01\x05\x05\x04\x05\x03\x04", // 𧶍
+ 0x27d8e: "\x04\x04\x05\x01\x02\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 𧶎
+ 0x27d8f: "\x01\x03\x02\x04\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𧶏
+ 0x27d90: "\x01\x02\x03\x04\x03\x04\x01\x02\x05\x01\x01\x01\x03\x04", // 𧶐
+ 0x27d91: "\x02\x05\x02\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𧶑
+ 0x27d92: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x04\x05\x04", // 𧶒
+ 0x27d93: "\x03\x01\x03\x04\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𧶓
+ 0x27d94: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x02\x01", // 𧶔
+ 0x27d95: "\x02\x05\x01\x01\x01\x03\x04\x03\x01\x02\x01\x05\x03\x04", // 𧶕
+ 0x27d96: "\x02\x05\x01\x01\x01\x03\x04\x03\x04\x01\x03\x02\x05\x02", // 𧶖
+ 0x27d97: "\x02\x05\x01\x01\x01\x03\x04\x03\x04\x01\x05\x02\x05\x01", // 𧶗
+ 0x27d98: "\x01\x03\x04\x03\x04\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𧶘
+ 0x27d99: "\x02\x01\x01\x01\x05\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 𧶙
+ 0x27d9a: "\x01\x02\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𧶚
+ 0x27d9b: "\x02\x05\x01\x01\x01\x03\x04\x01\x03\x04\x03\x04\x02\x03\x04", // 𧶛
+ 0x27d9c: "\x04\x01\x04\x03\x04\x05\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 𧶜
+ 0x27d9d: "\x01\x02\x01\x05\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𧶝
+ 0x27d9e: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x03\x01\x02\x03\x04\x01", // 𧶞
+ 0x27d9f: "\x02\x05\x01\x01\x01\x03\x04\x03\x04\x01\x01\x02\x02\x05\x01", // 𧶟
+ 0x27da0: "\x01\x02\x01\x02\x05\x03\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𧶠
+ 0x27da1: "\x04\x04\x05\x04\x05\x04\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𧶡
+ 0x27da2: "\x05\x04\x03\x03\x04\x05\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 𧶢
+ 0x27da3: "\x03\x02\x01\x01\x02\x01\x05\x04\x02\x05\x01\x01\x01\x03\x04", // 𧶣
+ 0x27da4: "\x01\x05\x03\x04\x01\x05\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𧶤
+ 0x27da5: "\x02\x05\x01\x01\x01\x03\x04\x01\x01\x03\x02\x01\x01\x03\x02", // 𧶥
+ 0x27da6: "\x04\x03\x03\x04\x03\x04\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𧶦
+ 0x27da7: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x02\x05\x01\x01", // 𧶧
+ 0x27da8: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x04\x04\x04\x04", // 𧶨
+ 0x27da9: "\x02\x05\x01\x01\x01\x03\x04\x01\x02\x02\x01\x01\x01\x03\x02", // 𧶩
+ 0x27daa: "\x01\x02\x05\x02\x03\x04\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𧶪
+ 0x27dab: "\x02\x05\x01\x01\x01\x03\x04\x01\x01\x02\x01\x03\x05\x03\x04", // 𧶫
+ 0x27dac: "\x02\x05\x01\x01\x01\x03\x04\x05\x03\x01\x02\x05\x01\x01\x01", // 𧶬
+ 0x27dad: "\x02\x05\x01\x01\x01\x03\x04\x01\x03\x04\x01\x02\x01\x03\x02", // 𧶭
+ 0x27dae: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x02\x02\x05\x01\x01", // 𧶮
+ 0x27daf: "\x03\x05\x02\x05\x01\x01\x01\x03\x04\x01\x02\x02\x01\x03\x04", // 𧶯
+ 0x27db0: "\x02\x05\x01\x01\x01\x03\x04\x01\x05\x04\x03\x05\x04\x01", // 𧶰
+ 0x27db1: "\x02\x05\x01\x01\x01\x03\x04\x03\x03\x02\x01\x02\x01\x01\x02\x04", // 𧶱
+ 0x27db2: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 𧶲
+ 0x27db3: "\x02\x05\x01\x01\x01\x03\x04\x05\x02\x01\x03\x04\x03\x05\x04\x01", // 𧶳
+ 0x27db4: "\x02\x05\x01\x01\x01\x03\x04\x04\x01\x03\x01\x02\x02\x01\x05\x04", // 𧶴
+ 0x27db5: "\x02\x05\x01\x01\x01\x03\x04\x03\x01\x02\x03\x02\x01\x05\x01\x01", // 𧶵
+ 0x27db6: "\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x03\x05\x04", // 𧶶
+ 0x27db7: "\x01\x02\x01\x02\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𧶷
+ 0x27db8: "\x02\x05\x01\x01\x01\x03\x04\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𧶸
+ 0x27db9: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x03\x05", // 𧶹
+ 0x27dba: "\x02\x05\x01\x01\x01\x03\x04\x04\x01\x02\x05\x01\x04\x05\x01\x02", // 𧶺
+ 0x27dbb: "\x05\x01\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𧶻
+ 0x27dbc: "\x04\x04\x05\x01\x02\x02\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𧶼
+ 0x27dbd: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 𧶽
+ 0x27dbe: "\x02\x05\x01\x01\x01\x03\x04\x04\x03\x01\x01\x02\x01\x01\x03\x04", // 𧶾
+ 0x27dbf: "\x02\x05\x01\x01\x01\x03\x04\x01\x02\x02\x01\x01\x01\x03\x05\x05", // 𧶿
+ 0x27dc0: "\x01\x02\x01\x05\x01\x03\x04\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𧷀
+ 0x27dc1: "\x02\x01\x04\x05\x01\x03\x04\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𧷁
+ 0x27dc2: "\x02\x05\x01\x01\x01\x03\x04\x03\x01\x02\x03\x04\x04\x03\x03\x04", // 𧷂
+ 0x27dc3: "\x02\x05\x01\x01\x01\x03\x04\x03\x02\x01\x01\x01\x03\x05\x05\x04", // 𧷃
+ 0x27dc4: "\x01\x02\x05\x01\x01\x01\x02\x05\x04\x02\x05\x01\x01\x01\x03\x04", // 𧷄
+ 0x27dc5: "\x02\x05\x05\x04\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𧷅
+ 0x27dc6: "\x02\x05\x01\x01\x01\x03\x04\x04\x01\x05\x03\x03\x01\x05\x02\x05", // 𧷆
+ 0x27dc7: "\x05\x01\x01\x02\x01\x04\x03\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𧷇
+ 0x27dc8: "\x03\x02\x01\x05\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𧷈
+ 0x27dc9: "\x02\x05\x01\x01\x01\x03\x04\x04\x05\x03\x05\x01\x03\x04\x04\x03", // 𧷉
+ 0x27dca: "\x02\x05\x01\x01\x01\x03\x04\x03\x01\x03\x04\x03\x04\x02\x05\x02", // 𧷊
+ 0x27dcb: "\x01\x02\x05\x02\x02\x01\x05\x03\x01\x02\x05\x01\x01\x01\x03\x04", // 𧷋
+ 0x27dcc: "\x02\x05\x01\x01\x01\x03\x04\x01\x02\x01\x01\x01\x02\x03\x04\x05\x04", // 𧷌
+ 0x27dcd: "\x04\x03\x01\x02\x03\x04\x03\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𧷍
+ 0x27dce: "\x02\x01\x04\x05\x01\x02\x05\x01\x01\x01\x03\x04\x05\x04\x01\x02\x01", // 𧷎
+ 0x27dcf: "\x01\x02\x01\x03\x05\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𧷏
+ 0x27dd0: "\x03\x04\x05\x03\x01\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 𧷐
+ 0x27dd1: "\x02\x05\x01\x02\x01\x04\x03\x05\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 𧷑
+ 0x27dd2: "\x02\x05\x01\x01\x01\x03\x04\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 𧷒
+ 0x27dd3: "\x05\x02\x02\x05\x02\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𧷓
+ 0x27dd4: "\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x02\x05\x01\x01\x01\x03\x04", // 𧷔
+ 0x27dd5: "\x01\x02\x05\x01\x02\x03\x04\x03\x05\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𧷕
+ 0x27dd6: "\x01\x03\x04\x03\x04\x02\x03\x04\x05\x03\x02\x05\x01\x01\x01\x03\x04", // 𧷖
+ 0x27dd7: "\x01\x02\x01\x02\x05\x03\x05\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𧷗
+ 0x27dd8: "\x02\x05\x01\x01\x01\x03\x04\x04\x05\x01\x03\x05\x04\x01\x05\x04\x01", // 𧷘
+ 0x27dd9: "\x01\x02\x05\x01\x02\x05\x03\x05\x05\x04\x02\x05\x01\x01\x01\x03\x04", // 𧷙
+ 0x27dda: "\x02\x05\x01\x01\x01\x03\x04\x03\x04\x03\x04\x02\x05\x01\x05\x03\x01", // 𧷚
+ 0x27ddb: "\x02\x05\x01\x01\x01\x03\x04\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 𧷛
+ 0x27ddc: "\x02\x05\x01\x01\x01\x03\x04\x03\x05\x05\x04\x05\x04\x01\x05\x04\x01", // 𧷜
+ 0x27ddd: "\x02\x05\x01\x03\x05\x03\x04\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𧷝
+ 0x27dde: "\x04\x01\x04\x03\x04\x05\x03\x05\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𧷞
+ 0x27ddf: "\x03\x05\x05\x03\x04\x04\x05\x01\x02\x03\x03\x02\x05\x01\x01\x01\x03\x04", // 𧷟
+ 0x27de0: "\x02\x01\x05\x03\x01\x05\x03\x05\x03\x03\x03\x02\x05\x01\x01\x01\x03\x04", // 𧷠
+ 0x27de1: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 𧷡
+ 0x27de2: "\x02\x05\x01\x01\x01\x03\x04\x01\x03\x01\x02\x05\x01\x02\x05\x05\x03\x04", // 𧷢
+ 0x27de3: "\x02\x05\x01\x01\x01\x03\x04\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 𧷣
+ 0x27de4: "\x02\x01\x02\x05\x01\x02\x05\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𧷤
+ 0x27de5: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x05\x04\x02\x05\x01\x01\x01\x03\x04", // 𧷥
+ 0x27de6: "\x02\x05\x01\x01\x01\x03\x04\x04\x04\x05\x04\x05\x04\x03\x04\x02\x05\x02", // 𧷦
+ 0x27de7: "\x02\x01\x02\x05\x02\x04\x01\x03\x04\x05\x04\x02\x05\x01\x01\x01\x03\x04", // 𧷧
+ 0x27de8: "\x01\x02\x01\x03\x05\x04\x05\x03\x04\x05\x03\x02\x05\x01\x01\x01\x03\x04", // 𧷨
+ 0x27de9: "\x01\x01\x03\x01\x01\x02\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𧷩
+ 0x27dea: "\x03\x05\x01\x03\x05\x05\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𧷪
+ 0x27deb: "\x04\x01\x03\x04\x03\x01\x01\x02\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𧷫
+ 0x27dec: "\x02\x05\x01\x01\x01\x03\x04\x04\x03\x01\x01\x03\x04\x02\x05\x01\x01\x01", // 𧷬
+ 0x27ded: "\x04\x03\x02\x05\x01\x01\x01\x03\x04\x04\x01\x02\x05\x01\x04\x05\x01\x02", // 𧷭
+ 0x27dee: "\x04\x01\x04\x03\x02\x05\x03\x05\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𧷮
+ 0x27def: "\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01", // 𧷯
+ 0x27df0: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x04", // 𧷰
+ 0x27df1: "\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x01\x02\x05\x04\x01\x02\x03\x04", // 𧷱
+ 0x27df2: "\x02\x05\x01\x01\x01\x03\x04\x01\x02\x01\x05\x02\x02\x05\x02\x05\x03\x04", // 𧷲
+ 0x27df3: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 𧷳
+ 0x27df4: "\x03\x02\x02\x05\x05\x02\x05\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𧷴
+ 0x27df5: "\x05\x02\x02\x05\x02\x04\x05\x03\x04\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𧷵
+ 0x27df6: "\x02\x05\x01\x01\x01\x03\x04\x04\x03\x01\x01\x02\x01\x01\x02\x02\x05\x01", // 𧷶
+ 0x27df7: "\x05\x02\x02\x01\x02\x05\x03\x04\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𧷷
+ 0x27df8: "\x02\x05\x01\x01\x01\x03\x04\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 𧷸
+ 0x27df9: "\x02\x05\x01\x01\x01\x03\x04\x03\x01\x02\x01\x02\x05\x01\x04\x05\x04", // 𧷹
+ 0x27dfa: "\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04\x03\x04\x01\x02\x05\x01\x02\x02", // 𧷺
+ 0x27dfb: "\x02\x05\x01\x01\x01\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𧷻
+ 0x27dfc: "\x02\x05\x01\x01\x01\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04", // 𧷼
+ 0x27dfd: "\x03\x03\x05\x04\x01\x04\x04\x03\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𧷽
+ 0x27dfe: "\x02\x05\x01\x01\x01\x03\x04\x05\x04\x05\x02\x03\x02\x05\x03\x05\x02\x05\x01", // 𧷾
+ 0x27dff: "\x02\x05\x01\x01\x01\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01\x05\x02", // 𧷿
+ 0x27e00: "\x02\x05\x01\x01\x01\x03\x04\x01\x03\x02\x05\x02\x02\x01\x03\x02\x05\x02\x02", // 𧸀
+ 0x27e01: "\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𧸁
+ 0x27e02: "\x02\x05\x01\x01\x01\x03\x04\x01\x02\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 𧸂
+ 0x27e03: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𧸃
+ 0x27e04: "\x02\x05\x01\x01\x01\x03\x04\x01\x02\x01\x04\x01\x03\x05\x03\x04\x05\x03\x04", // 𧸄
+ 0x27e05: "\x02\x05\x01\x01\x01\x03\x04\x02\x02\x04\x03\x01\x04\x03\x02\x05\x02\x03\x04", // 𧸅
+ 0x27e06: "\x05\x02\x02\x05\x02\x01\x01\x02\x03\x04\x05\x04\x02\x05\x01\x01\x01\x03\x04", // 𧸆
+ 0x27e07: "\x01\x02\x01\x03\x05\x02\x05\x03\x05\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𧸇
+ 0x27e08: "\x04\x05\x04\x03\x04\x04\x04\x05\x01\x02\x03\x03\x02\x05\x01\x01\x01\x03\x04", // 𧸈
+ 0x27e09: "\x02\x05\x01\x01\x01\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05\x03\x04", // 𧸉
+ 0x27e0a: "\x02\x05\x01\x01\x01\x03\x04\x01\x02\x02\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 𧸊
+ 0x27e0b: "\x04\x03\x01\x03\x02\x01\x01\x05\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𧸋
+ 0x27e0c: "\x02\x05\x01\x01\x01\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𧸌
+ 0x27e0d: "\x02\x05\x01\x01\x01\x03\x04\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 𧸍
+ 0x27e0e: "\x02\x05\x01\x01\x01\x03\x04\x04\x04\x05\x03\x04\x02\x05\x02\x02\x01\x01\x02", // 𧸎
+ 0x27e0f: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𧸏
+ 0x27e10: "\x02\x05\x01\x01\x01\x03\x04\x01\x01\x01\x02\x05\x01\x01\x01\x03\x04\x05\x04", // 𧸐
+ 0x27e11: "\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x04", // 𧸑
+ 0x27e12: "\x03\x01\x01\x03\x04\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01\x01\x01\x03\x04", // 𧸒
+ 0x27e13: "\x02\x05\x01\x01\x01\x03\x04\x04\x04\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 𧸓
+ 0x27e14: "\x02\x05\x01\x01\x01\x03\x04\x04\x01\x03\x04\x01\x01\x02\x01\x02\x01\x05\x04", // 𧸔
+ 0x27e15: "\x02\x05\x01\x01\x01\x03\x04\x02\x02\x04\x03\x01\x02\x05\x02\x03\x04\x03\x04", // 𧸕
+ 0x27e16: "\x02\x05\x01\x01\x01\x03\x04\x04\x01\x03\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 𧸖
+ 0x27e17: "\x02\x05\x01\x01\x01\x03\x04\x02\x01\x02\x01\x01\x03\x01\x02\x03\x03\x05\x03\x04", // 𧸗
+ 0x27e18: "\x02\x05\x01\x01\x01\x03\x04\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 𧸘
+ 0x27e19: "\x02\x05\x01\x01\x01\x03\x04\x04\x03\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 𧸙
+ 0x27e1a: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x02\x01\x02\x01\x03\x05\x04\x02\x05\x01", // 𧸚
+ 0x27e1b: "\x04\x01\x03\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𧸛
+ 0x27e1c: "\x02\x05\x01\x01\x01\x03\x04\x04\x01\x04\x03\x01\x03\x05\x01\x01\x02\x02\x03\x04", // 𧸜
+ 0x27e1d: "\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x04\x03\x01\x01\x02", // 𧸝
+ 0x27e1e: "\x05\x02\x02\x05\x02\x04\x01\x05\x03\x03\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𧸞
+ 0x27e1f: "\x05\x02\x02\x05\x02\x04\x01\x05\x03\x03\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𧸟
+ 0x27e20: "\x04\x01\x03\x04\x01\x04\x05\x04\x03\x04\x05\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𧸠
+ 0x27e21: "\x02\x05\x01\x01\x01\x03\x04\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01\x05\x03\x04", // 𧸡
+ 0x27e22: "\x02\x05\x01\x01\x01\x03\x04\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x02\x03\x04", // 𧸢
+ 0x27e23: "\x02\x05\x01\x01\x01\x03\x04\x02\x03\x04\x03\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𧸣
+ 0x27e24: "\x02\x05\x01\x01\x01\x03\x04\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𧸤
+ 0x27e25: "\x02\x05\x01\x01\x01\x03\x04\x02\x01\x02\x01\x03\x04\x03\x04\x02\x05\x01\x01\x01", // 𧸥
+ 0x27e26: "\x02\x05\x01\x01\x01\x03\x04\x01\x02\x05\x01\x02\x05\x03\x01\x01\x02\x05\x02\x02\x01", // 𧸦
+ 0x27e27: "\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𧸧
+ 0x27e28: "\x02\x05\x01\x01\x01\x03\x04\x03\x02\x05\x01\x01\x04\x04\x05\x03\x05\x04\x01\x05\x03", // 𧸨
+ 0x27e29: "\x02\x05\x01\x01\x01\x03\x04\x02\x01\x05\x03\x01\x03\x04\x03\x04\x02\x05\x01\x01\x01", // 𧸩
+ 0x27e2a: "\x02\x05\x01\x01\x01\x03\x04\x01\x03\x02\x05\x01\x01\x02\x01\x01\x03\x04\x01\x02\x01", // 𧸪
+ 0x27e2b: "\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04\x04\x01\x03\x05\x02\x05\x01\x03\x05\x03\x04", // 𧸫
+ 0x27e2c: "\x03\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x02\x05\x01\x01\x01\x03\x04", // 𧸬
+ 0x27e2d: "\x02\x05\x01\x01\x01\x03\x04\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𧸭
+ 0x27e2e: "\x02\x05\x01\x01\x01\x03\x04\x03\x03\x02\x02\x05\x02\x01\x01\x03\x05\x03\x01\x03\x04", // 𧸮
+ 0x27e2f: "\x02\x05\x01\x01\x01\x02\x01\x03\x04\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𧸯
+ 0x27e30: "\x02\x05\x01\x01\x01\x03\x04\x01\x02\x05\x01\x01\x01\x02\x01\x05\x05\x05\x01\x02\x01", // 𧸰
+ 0x27e31: "\x02\x05\x01\x01\x01\x03\x04\x01\x03\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𧸱
+ 0x27e32: "\x02\x05\x01\x01\x01\x03\x04\x03\x03\x01\x02\x03\x03\x01\x02\x02\x05\x01\x01\x01\x03\x04", // 𧸲
+ 0x27e33: "\x02\x05\x01\x01\x01\x03\x04\x04\x01\x03\x02\x05\x01\x01\x02\x01\x01\x03\x05\x01\x02\x01", // 𧸳
+ 0x27e34: "\x02\x05\x01\x01\x01\x03\x04\x04\x04\x05\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 𧸴
+ 0x27e35: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x04\x04\x05\x03\x05\x01\x02\x01", // 𧸵
+ 0x27e36: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x05\x05\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𧸶
+ 0x27e37: "\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x05\x04\x03\x05\x02\x04", // 𧸷
+ 0x27e38: "\x02\x05\x01\x01\x01\x03\x04\x03\x05\x01\x03\x01\x05\x03\x05\x04\x01\x01\x01\x02\x05\x01", // 𧸸
+ 0x27e39: "\x04\x04\x05\x03\x02\x01\x05\x01\x01\x03\x05\x04\x04\x04\x04\x02\x05\x01\x01\x01\x03\x04", // 𧸹
+ 0x27e3a: "\x02\x05\x01\x01\x01\x03\x04\x04\x04\x05\x03\x04\x03\x02\x05\x01\x01\x01\x03\x05\x01\x05", // 𧸺
+ 0x27e3b: "\x01\x02\x01\x01\x01\x03\x04\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x05\x03\x05\x04\x04", // 𧸻
+ 0x27e3c: "\x01\x02\x01\x01\x01\x03\x04\x04\x01\x03\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04", // 𧸼
+ 0x27e3d: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04", // 𧸽
+ 0x27e3e: "\x02\x01\x05\x03\x01\x05\x03\x05\x01\x01\x02\x01\x02\x01\x05\x04\x02\x05\x01\x01\x01\x03\x04", // 𧸾
+ 0x27e3f: "\x02\x05\x01\x01\x01\x03\x04\x04\x04\x05\x03\x02\x01\x05\x01\x01\x03\x05\x04\x04\x04\x04", // 𧸿
+ 0x27e40: "\x02\x05\x01\x01\x01\x03\x04\x01\x02\x02\x05\x01\x01\x02\x03\x02\x01\x01\x05\x05\x02\x01\x02", // 𧹀
+ 0x27e41: "\x01\x01\x02\x01\x02\x01\x05\x04\x02\x01\x05\x03\x01\x05\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 𧹁
+ 0x27e42: "\x02\x01\x05\x03\x01\x05\x03\x05\x02\x01\x05\x03\x01\x05\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 𧹂
+ 0x27e43: "\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x05\x04\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𧹃
+ 0x27e44: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x03\x04\x03\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𧹄
+ 0x27e45: "\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05\x03\x04\x05\x03\x02\x05\x01\x01\x01\x03\x04", // 𧹅
+ 0x27e46: "\x04\x04\x05\x01\x01\x02\x03\x04\x04\x04\x05\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𧹆
+ 0x27e47: "\x02\x05\x01\x01\x01\x03\x04\x03\x02\x01\x01\x05\x01\x01\x02\x05\x03\x04\x01\x02\x05\x05\x04", // 𧹇
+ 0x27e48: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x01\x03\x04", // 𧹈
+ 0x27e49: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x03\x04\x01\x02\x01\x01\x02\x05\x01\x01\x01\x03\x04", // 𧹉
+ 0x27e4a: "\x02\x05\x01\x01\x01\x03\x04\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02", // 𧹊
+ 0x27e4b: "\x03\x02\x01\x05\x04\x02\x05\x01\x01\x01\x03\x04\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04", // 𧹋
+ 0x27e4c: "\x01\x02\x01\x04\x05\x01\x02\x05\x01\x04\x03\x01\x04\x01\x03\x05\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𧹌
+ 0x27e4d: "\x02\x04\x03\x01\x03\x05\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 𧹍
+ 0x27e4e: "\x02\x05\x01\x01\x01\x03\x04\x01\x02\x01\x03\x05\x02\x05\x03\x05\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𧹎
+ 0x27e4f: "\x02\x05\x01\x01\x01\x03\x04\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 𧹏
+ 0x27e50: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𧹐
+ 0x27e51: "\x02\x05\x03\x04\x04\x03\x05\x04", // 𧹑
+ 0x27e52: "\x02\x05\x02\x02\x01\x02\x05\x03\x04", // 𧹒
+ 0x27e53: "\x02\x05\x03\x04\x02\x05\x01\x01\x01\x02\x01", // 𧹓
+ 0x27e54: "\x02\x05\x03\x04\x01\x02\x01\x01\x01\x05\x03\x04", // 𧹔
+ 0x27e55: "\x02\x05\x03\x04\x05\x01\x03\x01\x02\x02\x05\x01", // 𧹕
+ 0x27e56: "\x02\x05\x03\x04\x02\x05\x01\x02\x02\x01\x03\x04", // 𧹖
+ 0x27e57: "\x02\x05\x03\x04\x02\x05\x01\x02\x05\x01\x02\x04\x05\x04\x04", // 𧹗
+ 0x27e58: "\x01\x01\x03\x02\x03\x04", // 𧹘
+ 0x27e59: "\x01\x02\x01\x03\x02\x03\x04\x01\x02", // 𧹙
+ 0x27e5a: "\x01\x02\x01\x02\x01\x03\x02\x03\x04", // 𧹚
+ 0x27e5b: "\x01\x02\x01\x03\x02\x03\x04\x01\x02\x05\x04", // 𧹛
+ 0x27e5c: "\x01\x02\x01\x03\x02\x03\x04\x03\x05\x05\x04", // 𧹜
+ 0x27e5d: "\x01\x02\x01\x03\x02\x03\x04\x03\x05\x04\x04\x04", // 𧹝
+ 0x27e5e: "\x01\x02\x01\x03\x02\x03\x04\x05\x03\x02\x05\x04", // 𧹞
+ 0x27e5f: "\x01\x02\x01\x03\x02\x03\x04\x04\x04\x05\x03\x05", // 𧹟
+ 0x27e60: "\x01\x02\x01\x03\x02\x03\x04\x05\x01\x02\x05\x04\x04", // 𧹠
+ 0x27e61: "\x01\x02\x01\x03\x02\x03\x04\x01\x03\x02\x05\x01\x01", // 𧹡
+ 0x27e62: "\x01\x02\x01\x03\x02\x03\x04\x02\x05\x01\x03\x04\x01", // 𧹢
+ 0x27e63: "\x01\x02\x01\x03\x02\x03\x04\x03\x04\x01\x05\x02\x05\x01", // 𧹣
+ 0x27e64: "\x01\x02\x01\x03\x02\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 𧹤
+ 0x27e65: "\x01\x02\x01\x03\x02\x03\x04\x01\x02\x03\x04\x01\x02\x01", // 𧹥
+ 0x27e66: "\x01\x02\x01\x03\x02\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𧹦
+ 0x27e67: "\x01\x02\x01\x03\x02\x03\x04\x05\x01\x03\x01\x01\x05\x01\x01", // 𧹧
+ 0x27e68: "\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01\x03\x02\x03\x04", // 𧹨
+ 0x27e69: "\x01\x02\x01\x03\x02\x03\x04\x01\x02\x05\x01\x01\x02\x03\x04", // 𧹩
+ 0x27e6a: "\x01\x02\x01\x03\x02\x03\x04\x03\x04\x01\x02\x05\x01\x02\x02", // 𧹪
+ 0x27e6b: "\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x01\x03\x02\x03\x04", // 𧹫
+ 0x27e6c: "\x01\x02\x01\x03\x02\x03\x04\x01\x02\x05\x03\x05\x01\x01\x02\x01", // 𧹬
+ 0x27e6d: "\x01\x02\x01\x03\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 𧹭
+ 0x27e6e: "\x01\x02\x01\x03\x02\x03\x04\x03\x02\x01\x01\x01\x03\x05\x05\x04", // 𧹮
+ 0x27e6f: "\x01\x02\x01\x03\x02\x03\x04\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 𧹯
+ 0x27e70: "\x01\x02\x01\x03\x02\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x01", // 𧹰
+ 0x27e71: "\x01\x02\x01\x03\x02\x03\x04\x01\x02\x02\x01\x01\x01\x03\x04\x05", // 𧹱
+ 0x27e72: "\x01\x02\x01\x04\x05\x01\x01\x02\x01\x03\x02\x03\x04\x03\x05\x05\x04", // 𧹲
+ 0x27e73: "\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04\x01\x02\x01\x03\x02\x03\x04", // 𧹳
+ 0x27e74: "\x01\x02\x01\x03\x02\x03\x04\x04\x01\x05\x05\x04\x02\x05\x01\x02\x01", // 𧹴
+ 0x27e75: "\x01\x02\x01\x03\x02\x03\x04\x03\x01\x01\x05\x04\x03\x01\x02\x03\x04", // 𧹵
+ 0x27e76: "\x01\x02\x01\x03\x02\x03\x04\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 𧹶
+ 0x27e77: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04\x01\x02\x01\x03\x02\x03\x04", // 𧹷
+ 0x27e78: "\x01\x02\x01\x03\x02\x03\x04\x01\x03\x02\x05\x02\x02\x01\x03\x02\x05\x02\x02", // 𧹸
+ 0x27e79: "\x01\x02\x01\x03\x02\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05\x03\x04", // 𧹹
+ 0x27e7a: "\x01\x02\x01\x03\x02\x03\x04\x03\x01\x01\x05\x03\x01\x01\x05\x03\x01\x01\x05", // 𧹺
+ 0x27e7b: "\x01\x02\x01\x03\x02\x03\x04\x01\x02\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 𧹻
+ 0x27e7c: "\x01\x02\x01\x03\x02\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01\x05\x02", // 𧹼
+ 0x27e7d: "\x01\x02\x01\x03\x02\x03\x04\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x04\x04\x04\x04", // 𧹽
+ 0x27e7e: "\x03\x05\x03\x01\x01\x03\x04\x05\x04\x05\x02\x01\x03\x04\x01\x02\x01\x03\x02\x03\x04", // 𧹾
+ 0x27e7f: "\x01\x02\x01\x03\x02\x03\x04\x03\x02\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x01", // 𧹿
+ 0x27e80: "\x01\x02\x01\x03\x02\x03\x04\x04\x04\x05\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 𧺀
+ 0x27e81: "\x04\x04\x05\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x01\x02\x01\x03\x02\x03\x04", // 𧺁
+ 0x27e82: "\x01\x02\x01\x03\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x05\x01\x02\x01\x03\x02\x03\x04", // 𧺂
+ 0x27e83: "\x01\x02\x01\x03\x02\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 𧺃
+ 0x27e84: "\x04\x03\x03\x04\x01\x02\x01\x03\x02\x03\x04\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 𧺄
+ 0x27e85: "\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x02\x05\x02\x02\x01\x01\x02\x01\x03\x02\x03\x04", // 𧺅
+ 0x27e86: "\x03\x01\x03\x04\x02\x01\x03\x04", // 𧺆
+ 0x27e87: "\x01\x02\x01\x02\x01\x03\x04\x05", // 𧺇
+ 0x27e88: "\x01\x02\x01\x02\x01\x03\x04\x02\x02", // 𧺈
+ 0x27e89: "\x01\x02\x01\x02\x01\x03\x04\x05\x04", // 𧺉
+ 0x27e8a: "\x01\x02\x01\x02\x01\x03\x04\x01\x05", // 𧺊
+ 0x27e8b: "\x01\x02\x01\x02\x01\x03\x04\x03\x05", // 𧺋
+ 0x27e8c: "\x01\x02\x01\x02\x01\x03\x04\x03\x04", // 𧺌
+ 0x27e8d: "\x01\x02\x01\x02\x01\x03\x04\x03\x05", // 𧺍
+ 0x27e8e: "\x01\x02\x01\x02\x01\x03\x04\x03\x05", // 𧺎
+ 0x27e8f: "\x01\x02\x01\x02\x01\x03\x04\x05\x02\x05", // 𧺏
+ 0x27e90: "\x01\x02\x01\x02\x01\x03\x04\x05\x02\x01", // 𧺐
+ 0x27e91: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x01", // 𧺑
+ 0x27e92: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x04", // 𧺒
+ 0x27e93: "\x01\x02\x01\x02\x01\x03\x04\x03\x05\x04", // 𧺓
+ 0x27e94: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x01", // 𧺔
+ 0x27e95: "\x01\x02\x01\x02\x01\x03\x04\x03\x05\x04", // 𧺕
+ 0x27e96: "\x01\x02\x01\x02\x01\x03\x04\x05\x02\x01", // 𧺖
+ 0x27e97: "\x01\x02\x01\x02\x01\x03\x04\x01\x01\x02", // 𧺗
+ 0x27e98: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x04", // 𧺘
+ 0x27e99: "\x01\x02\x01\x02\x01\x03\x04\x05\x02\x01", // 𧺙
+ 0x27e9a: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x01", // 𧺚
+ 0x27e9b: "\x01\x02\x01\x02\x01\x03\x04\x03\x01\x02", // 𧺛
+ 0x27e9c: "\x01\x02\x01\x02\x01\x03\x04\x05\x03\x01", // 𧺜
+ 0x27e9d: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x01\x01", // 𧺝
+ 0x27e9e: "\x01\x02\x01\x02\x01\x03\x04\x03\x01\x01\x05", // 𧺞
+ 0x27e9f: "\x01\x02\x01\x02\x01\x03\x04\x04\x05\x03\x05", // 𧺟
+ 0x27ea0: "\x01\x02\x01\x02\x01\x03\x04\x02\x01\x02\x01", // 𧺠
+ 0x27ea1: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x05\x02", // 𧺡
+ 0x27ea2: "\x01\x02\x01\x02\x01\x03\x04\x03\x05\x05\x04", // 𧺢
+ 0x27ea3: "\x01\x02\x01\x02\x01\x03\x04\x03\x04\x03\x04", // 𧺣
+ 0x27ea4: "\x01\x02\x01\x02\x01\x03\x04\x03\x05\x03\x05", // 𧺤
+ 0x27ea5: "\x01\x02\x01\x02\x01\x03\x04\x05\x04\x05\x02", // 𧺥
+ 0x27ea6: "\x01\x02\x01\x02\x01\x03\x04\x01\x05\x05\x04", // 𧺦
+ 0x27ea7: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x02\x01", // 𧺧
+ 0x27ea8: "\x01\x02\x01\x02\x01\x03\x04\x04\x05\x04\x04", // 𧺨
+ 0x27ea9: "\x01\x02\x01\x02\x01\x03\x04\x04\x03\x03\x04", // 𧺩
+ 0x27eaa: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x01\x05", // 𧺪
+ 0x27eab: "\x01\x02\x01\x02\x01\x03\x04\x05\x01\x03\x04", // 𧺫
+ 0x27eac: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x03\x04", // 𧺬
+ 0x27ead: "\x01\x02\x01\x02\x01\x03\x04\x03\x04\x05\x04", // 𧺭
+ 0x27eae: "\x01\x02\x01\x02\x01\x03\x04\x03\x05\x05\x03", // 𧺮
+ 0x27eaf: "\x01\x02\x01\x02\x01\x03\x04\x04\x04\x01\x02", // 𧺯
+ 0x27eb0: "\x01\x02\x01\x02\x01\x03\x04\x01\x03\x05\x04", // 𧺰
+ 0x27eb1: "\x01\x02\x01\x02\x01\x03\x04\x01\x05\x03\x04", // 𧺱
+ 0x27eb2: "\x01\x02\x01\x02\x01\x03\x04\x01\x05\x01\x05", // 𧺲
+ 0x27eb3: "\x01\x02\x01\x02\x01\x03\x04\x01\x05\x05\x01", // 𧺳
+ 0x27eb4: "\x01\x02\x01\x02\x01\x03\x04\x03\x01\x01\x02", // 𧺴
+ 0x27eb5: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x03\x04", // 𧺵
+ 0x27eb6: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x03\x05\x04", // 𧺶
+ 0x27eb7: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x01\x05\x04", // 𧺷
+ 0x27eb8: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x02\x05\x01", // 𧺸
+ 0x27eb9: "\x01\x02\x01\x02\x01\x03\x04\x01\x05\x01\x05", // 𧺹
+ 0x27eba: "\x01\x02\x01\x02\x01\x03\x04\x01\x03\x05\x04\x04", // 𧺺
+ 0x27ebb: "\x01\x02\x01\x02\x01\x03\x04\x04\x01\x05\x05\x04", // 𧺻
+ 0x27ebc: "\x01\x02\x01\x02\x01\x03\x04\x02\x01\x02\x01\x01\x05", // 𧺼
+ 0x27ebd: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x01\x05\x01", // 𧺽
+ 0x27ebe: "\x01\x02\x01\x02\x01\x03\x04\x04\x03\x01\x01\x02", // 𧺾
+ 0x27ebf: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x02\x01\x05", // 𧺿
+ 0x27ec0: "\x01\x02\x01\x02\x01\x03\x04\x01\x03\x01\x01\x02", // 𧻀
+ 0x27ec1: "\x01\x02\x01\x02\x01\x03\x04\x03\x02\x01\x02\x01", // 𧻁
+ 0x27ec2: "\x01\x01\x03\x04\x02\x01\x02\x01\x01\x05\x05\x03\x04", // 𧻂
+ 0x27ec3: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x01\x01\x01", // 𧻃
+ 0x27ec4: "\x01\x02\x01\x02\x01\x03\x04\x04\x01\x01\x02\x01", // 𧻄
+ 0x27ec5: "\x05\x03\x02\x05\x01\x01\x02\x01\x02\x01\x03\x04", // 𧻅
+ 0x27ec6: "\x01\x02\x01\x02\x01\x03\x04\x03\x05\x03\x03\x03", // 𧻆
+ 0x27ec7: "\x01\x02\x01\x02\x01\x03\x04\x01\x01\x02\x03\x04", // 𧻇
+ 0x27ec8: "\x01\x02\x01\x02\x01\x03\x04\x01\x04\x03\x01\x02", // 𧻈
+ 0x27ec9: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x01\x02\x01", // 𧻉
+ 0x27eca: "\x01\x02\x01\x02\x01\x03\x04\x03\x01\x01\x02\x01", // 𧻊
+ 0x27ecb: "\x01\x02\x01\x02\x01\x03\x04\x03\x04\x01\x05\x04", // 𧻋
+ 0x27ecc: "\x01\x02\x01\x02\x01\x03\x04\x03\x05\x03\x05\x04", // 𧻌
+ 0x27ecd: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x01\x03\x04", // 𧻍
+ 0x27ece: "\x01\x02\x01\x02\x01\x03\x04\x05\x01\x05\x01\x05", // 𧻎
+ 0x27ecf: "\x01\x02\x01\x02\x01\x03\x04\x03\x05\x04\x02\x04", // 𧻏
+ 0x27ed0: "\x01\x02\x01\x02\x01\x03\x04\x04\x05\x04\x01\x02\x04", // 𧻐
+ 0x27ed1: "\x01\x02\x01\x02\x01\x03\x04\x01\x05\x01\x05\x03\x04", // 𧻑
+ 0x27ed2: "\x01\x02\x01\x02\x01\x03\x04\x05\x03\x05\x03\x05\x03", // 𧻒
+ 0x27ed3: "\x01\x02\x01\x02\x01\x03\x04\x04\x03\x01\x01\x03\x02", // 𧻓
+ 0x27ed4: "\x01\x02\x01\x02\x01\x03\x04\x01\x01\x01\x02\x01\x05", // 𧻔
+ 0x27ed5: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x05\x02\x03\x04", // 𧻕
+ 0x27ed6: "\x01\x02\x01\x02\x01\x03\x04\x03\x03\x05\x04\x01\x04", // 𧻖
+ 0x27ed7: "\x01\x02\x01\x02\x01\x03\x04\x01\x03\x01\x05\x03\x04", // 𧻗
+ 0x27ed8: "\x01\x02\x01\x02\x01\x03\x04\x01\x01\x01\x02\x05\x03", // 𧻘
+ 0x27ed9: "\x01\x02\x01\x02\x01\x03\x04\x01\x03\x02\x05\x01\x01", // 𧻙
+ 0x27eda: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x05\x01\x01\x01", // 𧻚
+ 0x27edb: "\x01\x02\x01\x02\x01\x03\x04\x03\x05\x02\x05\x01\x01", // 𧻛
+ 0x27edc: "\x01\x02\x01\x02\x01\x03\x04\x03\x05\x01\x03\x05\x05", // 𧻜
+ 0x27edd: "\x01\x02\x01\x02\x01\x03\x04\x03\x01\x01\x02\x05\x04", // 𧻝
+ 0x27ede: "\x01\x02\x01\x02\x01\x03\x04\x05\x03\x01\x02\x03\x04", // 𧻞
+ 0x27edf: "\x01\x02\x01\x02\x01\x03\x04\x04\x04\x01\x01\x01\x02", // 𧻟
+ 0x27ee0: "\x01\x02\x01\x02\x01\x03\x04\x05\x01\x01\x05\x03\x04", // 𧻠
+ 0x27ee1: "\x01\x02\x01\x02\x01\x03\x04\x05\x01\x03\x01\x02\x01", // 𧻡
+ 0x27ee2: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x02\x05\x01\x01", // 𧻢
+ 0x27ee3: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x03\x04\x03\x04", // 𧻣
+ 0x27ee4: "\x01\x02\x01\x02\x01\x03\x04\x03\x04\x01\x01\x02\x01", // 𧻤
+ 0x27ee5: "\x01\x02\x01\x02\x01\x03\x04\x03\x03\x02\x01\x01\x02", // 𧻥
+ 0x27ee6: "\x01\x02\x01\x02\x01\x03\x04\x03\x05\x02\x05\x03\x04", // 𧻦
+ 0x27ee7: "\x01\x02\x01\x02\x01\x03\x04\x04\x01\x03\x01\x01\x02", // 𧻧
+ 0x27ee8: "\x01\x02\x01\x02\x01\x03\x04\x04\x01\x03\x04\x03\x04", // 𧻨
+ 0x27ee9: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x01\x03\x03\x05", // 𧻩
+ 0x27eea: "\x01\x02\x01\x02\x01\x03\x04\x01\x01\x03\x05\x03\x04", // 𧻪
+ 0x27eeb: "\x01\x02\x01\x02\x01\x03\x04\x05\x01\x01\x05\x01\x01", // 𧻫
+ 0x27eec: "\x01\x01\x03\x04\x02\x01\x03\x04\x03\x05\x04\x03\x05\x04", // 𧻬
+ 0x27eed: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x01\x01\x05\x03", // 𧻭
+ 0x27eee: "\x01\x02\x01\x02\x01\x03\x04\x03\x02\x05\x03\x05\x04", // 𧻮
+ 0x27eef: "\x01\x02\x01\x02\x01\x03\x04\x04\x04\x01\x05\x01\x03\x04", // 𧻯
+ 0x27ef0: "\x01\x02\x01\x02\x01\x03\x04\x03\x01\x02\x01\x02\x05\x01", // 𧻰
+ 0x27ef1: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x04\x01\x03\x04\x04", // 𧻱
+ 0x27ef2: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x01\x01\x02\x01\x01", // 𧻲
+ 0x27ef3: "\x01\x02\x01\x02\x01\x03\x04\x01\x03\x02\x04\x02\x05\x01", // 𧻳
+ 0x27ef4: "\x01\x02\x01\x02\x01\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 𧻴
+ 0x27ef5: "\x01\x02\x01\x02\x01\x03\x04\x01\x03\x04\x03\x04\x03\x04", // 𧻵
+ 0x27ef6: "\x01\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x02\x05\x02", // 𧻶
+ 0x27ef7: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x05\x01\x01\x02\x04", // 𧻷
+ 0x27ef8: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x01\x03\x03\x01\x02", // 𧻸
+ 0x27ef9: "\x01\x02\x01\x02\x01\x03\x04\x05\x04\x02\x05\x01\x01\x02", // 𧻹
+ 0x27efa: "\x01\x02\x01\x02\x01\x03\x04\x03\x05\x03\x01\x01\x02\x01", // 𧻺
+ 0x27efb: "\x02\x05\x01\x02\x01\x03\x04\x01\x02\x01\x02\x01\x03\x04", // 𧻻
+ 0x27efc: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x01\x01\x01\x02\x01", // 𧻼
+ 0x27efd: "\x01\x02\x01\x02\x01\x03\x04\x03\x02\x05\x01\x02\x01\x04", // 𧻽
+ 0x27efe: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𧻾
+ 0x27eff: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 𧻿
+ 0x27f00: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𧼀
+ 0x27f01: "\x01\x02\x01\x02\x01\x03\x04\x04\x01\x03\x04\x02\x05\x01", // 𧼁
+ 0x27f02: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x01\x02\x01\x03\x04", // 𧼂
+ 0x27f03: "\x01\x02\x01\x02\x01\x03\x04\x03\x05\x03\x04\x03\x03\x04", // 𧼃
+ 0x27f04: "\x01\x02\x01\x02\x01\x03\x04\x03\x02\x03\x01\x02\x01\x01", // 𧼄
+ 0x27f05: "\x01\x02\x01\x02\x01\x03\x04\x03\x02\x05\x01\x01\x01\x03", // 𧼅
+ 0x27f06: "\x01\x02\x01\x02\x01\x03\x04\x03\x05\x05\x04\x02\x03\x04", // 𧼆
+ 0x27f07: "\x01\x02\x01\x02\x01\x03\x04\x03\x05\x02\x04\x01\x03\x04", // 𧼇
+ 0x27f08: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x02\x01\x01\x01\x05", // 𧼈
+ 0x27f09: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x05\x05\x01\x05\x01", // 𧼉
+ 0x27f0a: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𧼊
+ 0x27f0b: "\x01\x02\x01\x02\x01\x03\x04\x03\x04\x04\x03\x05\x03\x03", // 𧼋
+ 0x27f0c: "\x03\x04\x04\x03\x05\x03\x03\x01\x02\x01\x02\x01\x03\x04", // 𧼌
+ 0x27f0d: "\x01\x02\x01\x02\x01\x03\x04\x05\x01\x01\x04\x03\x03\x04", // 𧼍
+ 0x27f0e: "\x01\x02\x01\x02\x01\x03\x04\x01\x03\x04\x02\x05\x01\x01\x05", // 𧼎
+ 0x27f0f: "\x01\x02\x01\x02\x01\x03\x04\x05\x01\x05\x04\x01\x05\x05\x04", // 𧼏
+ 0x27f10: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x03\x01\x02\x03\x04\x01", // 𧼐
+ 0x27f11: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x05\x01\x01\x05\x03\x04", // 𧼑
+ 0x27f12: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x05\x01\x02\x05\x05\x04", // 𧼒
+ 0x27f13: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x05\x01\x01\x02\x03\x04", // 𧼓
+ 0x27f14: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x01\x03\x05\x03\x05\x04", // 𧼔
+ 0x27f15: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x05\x02\x03\x04\x02\x02", // 𧼕
+ 0x27f16: "\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x01\x02\x01\x03\x04", // 𧼖
+ 0x27f17: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x02\x05\x01\x05\x03\x02", // 𧼗
+ 0x27f18: "\x01\x02\x01\x02\x01\x03\x04\x01\x03\x04\x01\x02\x05\x01\x02", // 𧼘
+ 0x27f19: "\x01\x02\x01\x02\x01\x03\x04\x01\x03\x05\x03\x03\x04\x03\x04", // 𧼙
+ 0x27f1a: "\x01\x02\x01\x02\x01\x03\x04\x04\x03\x01\x01\x03\x04\x05\x05", // 𧼚
+ 0x27f1b: "\x01\x02\x01\x02\x01\x03\x04\x01\x03\x04\x03\x04\x02\x03\x04", // 𧼛
+ 0x27f1c: "\x01\x02\x01\x02\x01\x03\x04\x05\x01\x03\x03\x04\x03\x05\x04", // 𧼜
+ 0x27f1d: "\x01\x02\x01\x02\x01\x03\x04\x02\x01\x02\x01\x02\x03\x03", // 𧼝
+ 0x27f1e: "\x01\x02\x01\x02\x01\x03\x04\x01\x03\x04\x03\x01\x05\x02\x02", // 𧼞
+ 0x27f1f: "\x01\x02\x01\x02\x01\x03\x04\x05\x02\x01\x03\x02\x05\x01\x01", // 𧼟
+ 0x27f20: "\x01\x02\x01\x02\x01\x03\x04\x03\x02\x05\x01\x01\x03\x01\x02", // 𧼠
+ 0x27f21: "\x01\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x03\x05\x04\x01", // 𧼡
+ 0x27f22: "\x01\x02\x01\x02\x01\x03\x04\x03\x05\x01\x02\x04\x01\x03\x04", // 𧼢
+ 0x27f23: "\x01\x02\x01\x02\x01\x03\x04\x03\x02\x05\x01\x01\x02\x05\x02", // 𧼣
+ 0x27f24: "\x01\x02\x01\x02\x01\x03\x04\x01\x05\x04\x01\x02\x01\x02\x02", // 𧼤
+ 0x27f25: "\x01\x02\x01\x02\x01\x03\x04\x02\x01\x05\x03\x01\x05\x03\x04", // 𧼥
+ 0x27f26: "\x01\x02\x01\x02\x01\x03\x04\x04\x03\x01\x01\x03\x02\x05\x03", // 𧼦
+ 0x27f27: "\x04\x03\x01\x02\x01\x03\x04\x03\x05\x02\x05\x01\x03\x05\x04", // 𧼧
+ 0x27f28: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 𧼨
+ 0x27f29: "\x01\x02\x01\x02\x01\x03\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𧼩
+ 0x27f2a: "\x01\x02\x01\x02\x01\x03\x04\x01\x01\x01\x02\x05\x03\x01\x03\x04", // 𧼪
+ 0x27f2b: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x01\x02\x01\x03\x05\x04\x01", // 𧼫
+ 0x27f2c: "\x01\x02\x01\x02\x01\x03\x04\x03\x04\x05\x02\x03\x05\x03\x05\x04", // 𧼬
+ 0x27f2d: "\x01\x02\x01\x02\x01\x03\x04\x04\x04\x05\x03\x04\x03\x04\x05\x04", // 𧼭
+ 0x27f2e: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 𧼮
+ 0x27f2f: "\x01\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x05\x01\x01\x02\x02", // 𧼯
+ 0x27f30: "\x01\x02\x01\x02\x01\x03\x04\x01\x01\x02\x03\x02\x01\x05\x01\x01", // 𧼰
+ 0x27f31: "\x01\x02\x01\x02\x01\x03\x04\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 𧼱
+ 0x27f32: "\x01\x02\x01\x02\x01\x03\x04\x05\x01\x03\x04\x03\x01\x01\x03\x02", // 𧼲
+ 0x27f33: "\x01\x02\x01\x02\x01\x03\x04\x04\x01\x03\x04\x03\x01\x05\x02\x03", // 𧼳
+ 0x27f34: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 𧼴
+ 0x27f35: "\x01\x02\x01\x02\x01\x03\x04\x03\x05\x01\x03\x03\x01\x01\x03\x04", // 𧼵
+ 0x27f36: "\x01\x02\x01\x02\x01\x03\x04\x03\x01\x03\x04\x03\x04\x02\x05\x02", // 𧼶
+ 0x27f37: "\x01\x02\x01\x02\x01\x03\x04\x03\x02\x05\x01\x01\x02\x05\x03\x04", // 𧼷
+ 0x27f38: "\x01\x02\x01\x02\x01\x03\x04\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 𧼸
+ 0x27f39: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x01\x01\x05\x03\x02\x05\x01", // 𧼹
+ 0x27f3a: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x01\x01\x04\x01\x04\x03\x01", // 𧼺
+ 0x27f3b: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x01\x02\x05\x01\x01\x02\x01", // 𧼻
+ 0x27f3c: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x01\x02\x01\x03\x02\x05\x01", // 𧼼
+ 0x27f3d: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x01\x02\x02\x05\x02\x05\x01", // 𧼽
+ 0x27f3e: "\x01\x02\x01\x02\x01\x03\x04\x03\x05\x05\x01\x01\x04\x05\x04\x04", // 𧼾
+ 0x27f3f: "\x01\x02\x01\x02\x01\x03\x04\x05\x05\x04\x04\x04\x04\x03\x05\x04", // 𧼿
+ 0x27f40: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x01\x01\x01\x01\x03\x04\x04", // 𧽀
+ 0x27f41: "\x01\x02\x01\x02\x01\x03\x04\x01\x01\x01\x02\x05\x03\x01\x03\x02", // 𧽁
+ 0x27f42: "\x01\x02\x01\x02\x01\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x01", // 𧽂
+ 0x27f43: "\x01\x02\x01\x02\x01\x03\x04\x03\x04\x04\x03\x02\x05\x02\x01\x01", // 𧽃
+ 0x27f44: "\x01\x02\x01\x02\x01\x03\x04\x03\x05\x03\x05\x01\x01\x02\x02\x02", // 𧽄
+ 0x27f45: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 𧽅
+ 0x27f46: "\x01\x02\x01\x02\x01\x03\x04\x01\x03\x02\x05\x01\x01\x02\x01\x01", // 𧽆
+ 0x27f47: "\x02\x05\x01\x01\x05\x03\x01\x02\x01\x02\x01\x03\x04\x05\x01\x05", // 𧽇
+ 0x27f48: "\x01\x02\x01\x02\x01\x03\x04\x05\x01\x05\x02\x05\x01\x01\x05\x03", // 𧽈
+ 0x27f49: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x01\x01\x04\x04\x05\x05\x03\x01", // 𧽉
+ 0x27f4a: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 𧽊
+ 0x27f4b: "\x01\x02\x01\x02\x01\x03\x04\x03\x02\x05\x01\x01\x05\x04\x04\x04\x04", // 𧽋
+ 0x27f4c: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01", // 𧽌
+ 0x27f4d: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 𧽍
+ 0x27f4e: "\x01\x02\x01\x02\x01\x03\x04\x03\x05\x04\x04\x03\x01\x01\x02\x05\x02", // 𧽎
+ 0x27f4f: "\x01\x02\x01\x02\x01\x03\x04\x03\x02\x01\x01\x05\x01\x01\x02\x05\x04", // 𧽏
+ 0x27f50: "\x01\x02\x01\x02\x01\x03\x04\x02\x01\x05\x03\x01\x05\x04\x01\x03\x04", // 𧽐
+ 0x27f51: "\x01\x02\x01\x02\x01\x03\x04\x04\x01\x03\x04\x01\x03\x01\x01\x03\x04", // 𧽑
+ 0x27f52: "\x01\x02\x01\x02\x01\x03\x04\x03\x02\x05\x01\x01\x01\x01\x03\x04\x04", // 𧽒
+ 0x27f53: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x01\x02\x05\x01\x03\x05\x03\x04", // 𧽓
+ 0x27f54: "\x01\x02\x01\x02\x01\x03\x04\x04\x04\x05\x01\x03\x02\x05\x01\x05\x04", // 𧽔
+ 0x27f55: "\x01\x02\x01\x02\x01\x03\x04\x01\x01\x01\x03\x04\x03\x01\x02\x03\x04", // 𧽕
+ 0x27f56: "\x01\x02\x01\x02\x01\x03\x04\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 𧽖
+ 0x27f57: "\x01\x02\x01\x02\x01\x03\x04\x04\x05\x01\x01\x05\x04\x05\x02", // 𧽗
+ 0x27f58: "\x01\x02\x01\x02\x01\x03\x04\x01\x03\x01\x01\x05\x03\x04\x01\x02\x04", // 𧽘
+ 0x27f59: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𧽙
+ 0x27f5a: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x01\x02\x05\x01\x03\x05\x03\x04", // 𧽚
+ 0x27f5b: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𧽛
+ 0x27f5c: "\x01\x02\x01\x02\x01\x03\x04\x03\x04\x01\x05\x01\x01\x03\x02\x05\x01", // 𧽜
+ 0x27f5d: "\x01\x02\x01\x02\x01\x03\x04\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01", // 𧽝
+ 0x27f5e: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x01\x02\x01\x01\x05\x04\x04\x04\x04", // 𧽞
+ 0x27f5f: "\x01\x02\x01\x02\x01\x03\x04\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𧽟
+ 0x27f60: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𧽠
+ 0x27f61: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x05\x01\x02\x05\x05\x04\x01\x02\x01", // 𧽡
+ 0x27f62: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04", // 𧽢
+ 0x27f63: "\x01\x02\x01\x02\x01\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02", // 𧽣
+ 0x27f64: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 𧽤
+ 0x27f65: "\x01\x02\x01\x02\x01\x03\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05", // 𧽥
+ 0x27f66: "\x01\x02\x01\x02\x01\x03\x04\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01", // 𧽦
+ 0x27f67: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x02\x04\x04\x05\x01\x01\x02\x03\x04", // 𧽧
+ 0x27f68: "\x01\x02\x01\x02\x01\x03\x04\x03\x04\x04\x03\x02\x05\x01\x01\x01\x03\x05", // 𧽨
+ 0x27f69: "\x05\x02\x01\x03\x03\x05\x04\x04\x01\x02\x04\x01\x02\x01\x02\x01\x03\x04", // 𧽩
+ 0x27f6a: "\x01\x02\x01\x02\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𧽪
+ 0x27f6b: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x01\x01\x02\x05\x01\x01\x05\x03\x04", // 𧽫
+ 0x27f6c: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x01\x02\x01\x02\x05\x01\x01\x02\x04", // 𧽬
+ 0x27f6d: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𧽭
+ 0x27f6e: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x05\x01\x01\x01\x02\x01\x05\x03\x04", // 𧽮
+ 0x27f6f: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02", // 𧽯
+ 0x27f70: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x01\x01\x02\x05\x02\x02\x01\x01\x05", // 𧽰
+ 0x27f71: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x03", // 𧽱
+ 0x27f72: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 𧽲
+ 0x27f73: "\x01\x02\x01\x02\x01\x03\x04\x03\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𧽳
+ 0x27f74: "\x01\x02\x01\x02\x01\x03\x04\x04\x01\x03\x04\x01\x04\x03\x01\x02\x05\x01", // 𧽴
+ 0x27f75: "\x01\x02\x01\x02\x01\x03\x04\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04", // 𧽵
+ 0x27f76: "\x01\x02\x01\x02\x01\x03\x04\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04", // 𧽶
+ 0x27f77: "\x01\x02\x01\x02\x01\x03\x04\x05\x01\x01\x02\x03\x02\x01\x01\x05\x05\x02\x01\x02", // 𧽷
+ 0x27f78: "\x01\x02\x01\x02\x01\x03\x04\x01\x03\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04", // 𧽸
+ 0x27f79: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x01\x02\x03\x05\x01\x01\x03\x05\x01\x01", // 𧽹
+ 0x27f7a: "\x01\x02\x01\x02\x01\x03\x04\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04", // 𧽺
+ 0x27f7b: "\x01\x02\x01\x02\x01\x03\x04\x05\x04\x05\x02\x03\x02\x05\x03\x05\x02\x05\x01", // 𧽻
+ 0x27f7c: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 𧽼
+ 0x27f7d: "\x01\x02\x01\x02\x01\x03\x04\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 𧽽
+ 0x27f7e: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x02\x01\x03\x05\x04\x01\x03\x05\x04", // 𧽾
+ 0x27f7f: "\x01\x02\x01\x02\x01\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𧽿
+ 0x27f80: "\x01\x02\x01\x02\x01\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x02\x05\x01\x01", // 𧾀
+ 0x27f81: "\x01\x02\x01\x02\x01\x03\x04\x03\x01\x03\x04\x03\x01\x01\x01\x02\x01\x01\x01", // 𧾁
+ 0x27f82: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x02\x05\x01\x01\x01\x02\x01\x05\x03\x04", // 𧾂
+ 0x27f83: "\x01\x02\x01\x02\x01\x03\x04\x04\x03\x01\x02\x02\x04\x03\x01\x02\x05\x01\x01", // 𧾃
+ 0x27f84: "\x01\x02\x01\x02\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x04\x05\x04", // 𧾄
+ 0x27f85: "\x01\x02\x01\x02\x01\x03\x04\x03\x02\x05\x01\x01\x01\x03\x03\x01\x05\x02\x01", // 𧾅
+ 0x27f86: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x02\x02\x05\x01\x01\x03\x05\x01\x01", // 𧾆
+ 0x27f87: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x05\x02\x02\x01\x01\x03\x04\x04\x05\x04", // 𧾇
+ 0x27f88: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x01\x01\x02\x05\x02\x02\x01\x01\x05\x03", // 𧾈
+ 0x27f89: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x01\x01\x04\x01\x03\x04\x03\x04\x01\x02", // 𧾉
+ 0x27f8a: "\x01\x02\x01\x02\x01\x03\x04\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 𧾊
+ 0x27f8b: "\x01\x02\x01\x02\x01\x03\x04\x05\x04\x05\x04\x05\x04\x03\x04\x02\x04\x04\x04", // 𧾋
+ 0x27f8c: "\x01\x02\x01\x02\x01\x03\x04\x05\x01\x05\x05\x01\x05\x01\x02\x02\x01\x03\x04", // 𧾌
+ 0x27f8d: "\x01\x02\x01\x02\x01\x03\x04\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 𧾍
+ 0x27f8e: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 𧾎
+ 0x27f8f: "\x01\x02\x01\x02\x01\x03\x04\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 𧾏
+ 0x27f90: "\x01\x02\x01\x02\x01\x03\x04\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x03\x04", // 𧾐
+ 0x27f91: "\x01\x02\x01\x02\x01\x03\x04\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 𧾑
+ 0x27f92: "\x01\x02\x01\x02\x01\x03\x04\x01\x01\x03\x05\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𧾒
+ 0x27f93: "\x01\x02\x01\x02\x01\x03\x04\x03\x01\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𧾓
+ 0x27f94: "\x01\x02\x01\x02\x01\x03\x04\x01\x03\x01\x02\x05\x01\x04\x05\x04\x04\x05\x03\x04", // 𧾔
+ 0x27f95: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𧾕
+ 0x27f96: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x02\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𧾖
+ 0x27f97: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𧾗
+ 0x27f98: "\x01\x02\x01\x02\x01\x03\x04\x03\x03\x02\x02\x05\x02\x01\x03\x05\x03\x01\x03\x04", // 𧾘
+ 0x27f99: "\x01\x02\x01\x02\x01\x03\x04\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01", // 𧾙
+ 0x27f9a: "\x01\x02\x01\x02\x01\x03\x04\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 𧾚
+ 0x27f9b: "\x01\x02\x01\x02\x01\x03\x04\x02\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𧾛
+ 0x27f9c: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x01\x02\x01\x03\x04\x01\x02\x01\x02\x01\x03\x04", // 𧾜
+ 0x27f9d: "\x01\x02\x01\x02\x01\x03\x04\x02\x01\x04\x05\x01\x03\x04\x03\x04\x02\x05\x01\x05\x04", // 𧾝
+ 0x27f9e: "\x01\x02\x01\x02\x01\x03\x04\x01\x03\x04\x01\x02\x05\x01\x03\x01\x02\x01\x05\x03\x04", // 𧾞
+ 0x27f9f: "\x01\x02\x01\x02\x01\x03\x04\x03\x01\x04\x03\x01\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𧾟
+ 0x27fa0: "\x01\x02\x01\x02\x01\x03\x04\x04\x04\x05\x03\x05\x03\x04\x01\x01\x02\x03\x04\x05\x04", // 𧾠
+ 0x27fa1: "\x01\x02\x01\x02\x01\x03\x04\x04\x01\x03\x02\x05\x01\x01\x02\x01\x01\x03\x05\x01\x02\x01", // 𧾡
+ 0x27fa2: "\x01\x02\x01\x02\x01\x03\x04\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x01\x05\x03\x04", // 𧾢
+ 0x27fa3: "\x01\x02\x01\x02\x01\x03\x04\x03\x05\x02\x05\x03\x04\x02\x05\x01\x01\x01\x03\x05\x04", // 𧾣
+ 0x27fa4: "\x01\x02\x01\x02\x01\x03\x04\x01\x03\x02\x05\x01\x01\x04\x05\x04\x05\x04\x04\x03\x05\x04", // 𧾤
+ 0x27fa5: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𧾥
+ 0x27fa6: "\x01\x02\x01\x02\x01\x03\x04\x03\x03\x02\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x01\x02", // 𧾦
+ 0x27fa7: "\x01\x02\x01\x02\x01\x03\x04\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 𧾧
+ 0x27fa8: "\x01\x02\x01\x02\x01\x03\x04\x04\x04\x05\x03\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x04\x04", // 𧾨
+ 0x27fa9: "\x01\x02\x01\x02\x01\x03\x04\x02\x01\x04\x05\x01\x03\x04\x03\x04\x02\x05\x01\x01\x01\x05\x04", // 𧾩
+ 0x27faa: "\x01\x02\x01\x02\x01\x03\x04\x04\x01\x04\x03\x01\x03\x05\x04\x01\x01\x05\x01\x05\x01\x01\x01", // 𧾪
+ 0x27fab: "\x01\x02\x01\x02\x01\x03\x04\x03\x02\x05\x01\x01\x01\x04\x04\x05\x03\x05\x03\x02\x05\x02\x05", // 𧾫
+ 0x27fac: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04\x03\x05\x04\x01\x02\x01\x05\x04", // 𧾬
+ 0x27fad: "\x03\x01\x03\x04\x02\x01\x02\x01\x03\x01\x03\x04\x02\x01\x02\x01\x03\x01\x03\x04\x02\x01\x02\x01", // 𧾭
+ 0x27fae: "\x01\x02\x01\x02\x01\x03\x04\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 𧾮
+ 0x27faf: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x01\x02\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x02", // 𧾯
+ 0x27fb0: "\x01\x02\x01\x02\x01\x03\x04\x05\x04\x01\x05\x04\x01\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 𧾰
+ 0x27fb1: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𧾱
+ 0x27fb2: "\x01\x02\x01\x02\x01\x03\x04\x01\x02\x02\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01", // 𧾲
+ 0x27fb3: "\x01\x02\x01\x02\x01\x03\x04\x01\x01\x01\x02\x02\x01\x01\x01\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 𧾳
+ 0x27fb4: "\x01\x02\x01\x02\x01\x03\x04\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x01\x04\x03\x03\x04", // 𧾴
+ 0x27fb5: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𧾵
+ 0x27fb6: "\x01\x02\x01\x02\x01\x03\x04\x03\x02\x05\x01\x02\x01\x04\x03\x02\x05\x01\x02\x01\x04\x03\x02\x05\x01\x02\x01\x04", // 𧾶
+ 0x27fb7: "\x02\x05\x01\x02\x01\x02\x01", // 𧾷
+ 0x27fb8: "\x01\x02\x05\x01\x02\x01\x03\x04", // 𧾸
+ 0x27fb9: "\x02\x05\x01\x02\x01\x02\x01\x05", // 𧾹
+ 0x27fba: "\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 𧾺
+ 0x27fbb: "\x02\x05\x01\x02\x01\x02\x01\x05\x02", // 𧾻
+ 0x27fbc: "\x02\x05\x01\x02\x01\x02\x01\x05\x03", // 𧾼
+ 0x27fbd: "\x02\x05\x01\x02\x01\x02\x01\x01\x02", // 𧾽
+ 0x27fbe: "\x02\x05\x01\x02\x01\x02\x01\x03\x05", // 𧾾
+ 0x27fbf: "\x02\x05\x01\x02\x01\x02\x01\x05\x02", // 𧾿
+ 0x27fc0: "\x02\x05\x01\x02\x01\x03\x04\x02\x02", // 𧿀
+ 0x27fc1: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x05", // 𧿁
+ 0x27fc2: "\x02\x05\x01\x02\x01\x02\x01\x01\x01\x02", // 𧿂
+ 0x27fc3: "\x05\x01\x03\x02\x05\x01\x02\x01\x03\x04", // 𧿃
+ 0x27fc4: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x02", // 𧿄
+ 0x27fc5: "\x02\x05\x01\x02\x01\x02\x01\x05\x01\x02", // 𧿅
+ 0x27fc6: "\x02\x05\x01\x02\x01\x02\x01\x05\x01\x05", // 𧿆
+ 0x27fc7: "\x02\x05\x01\x02\x01\x02\x01\x05\x02\x05", // 𧿇
+ 0x27fc8: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x03", // 𧿈
+ 0x27fc9: "\x02\x05\x01\x02\x01\x02\x01\x01\x01\x05", // 𧿉
+ 0x27fca: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x05", // 𧿊
+ 0x27fcb: "\x02\x05\x01\x02\x01\x02\x01\x01\x05\x02", // 𧿋
+ 0x27fcc: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x05", // 𧿌
+ 0x27fcd: "\x03\x04\x01\x02\x05\x01\x02\x01\x03\x04", // 𧿍
+ 0x27fce: "\x02\x05\x01\x02\x01\x02\x01\x05\x01\x02", // 𧿎
+ 0x27fcf: "\x02\x05\x01\x02\x01\x02\x01\x05\x05\x04", // 𧿏
+ 0x27fd0: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x02", // 𧿐
+ 0x27fd1: "\x02\x05\x01\x02\x01\x02\x01\x01\x05\x04", // 𧿑
+ 0x27fd2: "\x02\x05\x01\x02\x01\x02\x01\x04\x05\x03\x05", // 𧿒
+ 0x27fd3: "\x02\x05\x01\x02\x01\x02\x01\x01\x05\x02\x04", // 𧿓
+ 0x27fd4: "\x02\x05\x01\x02\x01\x02\x01\x05\x02\x01\x01", // 𧿔
+ 0x27fd5: "\x02\x05\x01\x02\x01\x02\x01\x03\x02\x01\x05", // 𧿕
+ 0x27fd6: "\x02\x05\x01\x02\x01\x02\x01\x03\x04\x05\x02", // 𧿖
+ 0x27fd7: "\x03\x05\x03\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 𧿗
+ 0x27fd8: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x03\x02", // 𧿘
+ 0x27fd9: "\x02\x05\x01\x02\x01\x02\x01\x01\x01\x03\x05", // 𧿙
+ 0x27fda: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x05\x03", // 𧿚
+ 0x27fdb: "\x02\x05\x01\x02\x01\x02\x01\x03\x04\x03\x04", // 𧿛
+ 0x27fdc: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x04\x01", // 𧿜
+ 0x27fdd: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x01\x05", // 𧿝
+ 0x27fde: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x03\x04", // 𧿞
+ 0x27fdf: "\x02\x05\x01\x02\x01\x02\x01\x01\x05\x05\x01", // 𧿟
+ 0x27fe0: "\x02\x05\x01\x02\x01\x02\x01\x01\x05\x05\x04", // 𧿠
+ 0x27fe1: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x04\x04", // 𧿡
+ 0x27fe2: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x05\x03", // 𧿢
+ 0x27fe3: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x01\x02", // 𧿣
+ 0x27fe4: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x02\x04", // 𧿤
+ 0x27fe5: "\x02\x05\x01\x02\x01\x02\x01\x01\x05\x03\x05", // 𧿥
+ 0x27fe6: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x03\x05", // 𧿦
+ 0x27fe7: "\x02\x05\x01\x02\x01\x02\x01\x03\x03\x01\x02", // 𧿧
+ 0x27fe8: "\x02\x05\x01\x02\x01\x02\x01\x03\x03\x05\x04", // 𧿨
+ 0x27fe9: "\x02\x05\x01\x02\x01\x02\x01\x03\x04\x03\x02", // 𧿩
+ 0x27fea: "\x02\x05\x01\x02\x01\x02\x01\x04\x03\x01\x05", // 𧿪
+ 0x27feb: "\x02\x05\x01\x02\x01\x02\x01\x04\x04\x01\x02", // 𧿫
+ 0x27fec: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x02\x05", // 𧿬
+ 0x27fed: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x01", // 𧿭
+ 0x27fee: "\x02\x05\x01\x02\x01\x03\x04\x04\x03\x03\x04", // 𧿮
+ 0x27fef: "\x02\x05\x01\x02\x01\x02\x01\x05\x01\x05\x02", // 𧿯
+ 0x27ff0: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x01", // 𧿰
+ 0x27ff1: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x01", // 𧿱
+ 0x27ff2: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x02\x03", // 𧿲
+ 0x27ff3: "\x02\x05\x01\x02\x01\x02\x01\x05\x01\x05\x03\x02", // 𧿳
+ 0x27ff4: "\x02\x05\x01\x02\x01\x02\x01\x01\x01\x02\x03\x04", // 𧿴
+ 0x27ff5: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x01\x02", // 𧿵
+ 0x27ff6: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x02\x05\x02", // 𧿶
+ 0x27ff7: "\x02\x05\x01\x02\x01\x02\x01\x01\x01\x02\x01\x04", // 𧿷
+ 0x27ff8: "\x02\x05\x01\x02\x01\x02\x01\x05\x01\x03\x05\x04", // 𧿸
+ 0x27ff9: "\x02\x05\x01\x02\x01\x02\x01\x05\x05\x04\x01\x04", // 𧿹
+ 0x27ffa: "\x02\x05\x01\x02\x01\x02\x01\x05\x02\x02\x05\x02", // 𧿺
+ 0x27ffb: "\x02\x05\x01\x02\x01\x02\x01\x05\x01\x03\x03\x05", // 𧿻
+ 0x27ffc: "\x02\x05\x01\x02\x01\x02\x01\x03\x03\x05\x04\x04", // 𧿼
+ 0x27ffd: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x05\x01\x05", // 𧿽
+ 0x27ffe: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x03\x04\x01", // 𧿾
+ 0x27fff: "\x02\x01\x02\x01\x01\x05\x02\x05\x01\x02\x01\x03\x04", // 𧿿
+ 0x28000: "\x02\x05\x01\x02\x01\x02\x01\x03\x04\x02\x03\x04", // 𨀀
+ 0x28001: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x05\x03\x04", // 𨀁
+ 0x28002: "\x01\x03\x02\x05\x01\x02\x05\x01\x02\x01\x03\x04", // 𨀂
+ 0x28003: "\x02\x05\x01\x02\x01\x02\x01\x05\x04\x01\x02\x01", // 𨀃
+ 0x28004: "\x02\x05\x01\x02\x01\x02\x01\x01\x05\x05\x04", // 𨀄
+ 0x28005: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x02\x01\x01", // 𨀅
+ 0x28006: "\x02\x05\x01\x02\x01\x02\x01\x05\x01\x02\x05\x04", // 𨀆
+ 0x28007: "\x02\x05\x01\x02\x01\x02\x01\x05\x01\x05\x03\x04", // 𨀇
+ 0x28008: "\x02\x05\x01\x02\x01\x02\x01\x02\x01\x01\x03\x05", // 𨀈
+ 0x28009: "\x02\x05\x01\x02\x01\x02\x01\x04\x04\x05\x01\x02", // 𨀉
+ 0x2800a: "\x02\x05\x01\x02\x01\x02\x01\x05\x03\x05\x02\x01", // 𨀊
+ 0x2800b: "\x02\x05\x01\x02\x01\x02\x01\x03\x02\x01\x02\x01", // 𨀋
+ 0x2800c: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x05\x03", // 𨀌
+ 0x2800d: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x01\x01\x02", // 𨀍
+ 0x2800e: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x04\x03\x01", // 𨀎
+ 0x2800f: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01", // 𨀏
+ 0x28010: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x04\x04\x04", // 𨀐
+ 0x28011: "\x03\x05\x04\x02\x04\x02\x05\x01\x02\x01\x03\x04", // 𨀑
+ 0x28012: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x02\x05\x02", // 𨀒
+ 0x28013: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x05\x01\x05", // 𨀓
+ 0x28014: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x02\x01", // 𨀔
+ 0x28015: "\x02\x05\x01\x02\x01\x02\x01\x01\x01\x01\x02\x01\x05", // 𨀕
+ 0x28016: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x05\x03\x03\x04", // 𨀖
+ 0x28017: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x04\x01\x05\x02", // 𨀗
+ 0x28018: "\x02\x05\x01\x02\x01\x02\x01\x04\x03\x01\x01\x01\x02", // 𨀘
+ 0x28019: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x01\x02\x05\x01", // 𨀙
+ 0x2801a: "\x02\x05\x01\x02\x01\x02\x01\x02\x01\x01\x02\x03\x04", // 𨀚
+ 0x2801b: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x02\x05\x02\x01", // 𨀛
+ 0x2801c: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x02\x05\x01", // 𨀜
+ 0x2801d: "\x02\x05\x01\x02\x01\x02\x01\x05\x04\x05\x04\x05\x04", // 𨀝
+ 0x2801e: "\x02\x05\x01\x02\x01\x02\x01\x05\x01\x01\x01\x01\x02", // 𨀞
+ 0x2801f: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x03\x03\x01\x05", // 𨀟
+ 0x28020: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x03\x01\x01\x02", // 𨀠
+ 0x28021: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x04\x03\x03\x04", // 𨀡
+ 0x28022: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x02\x02\x01\x01", // 𨀢
+ 0x28023: "\x02\x05\x01\x02\x01\x02\x01\x03\x04\x02\x01\x02\x01", // 𨀣
+ 0x28024: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x01\x02\x03\x04", // 𨀤
+ 0x28025: "\x02\x05\x01\x02\x01\x02\x01\x01\x01\x03\x05\x03\x04", // 𨀥
+ 0x28026: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x01\x02\x05\x03", // 𨀦
+ 0x28027: "\x02\x05\x01\x02\x01\x02\x01\x05\x02\x05\x03\x04\x01", // 𨀧
+ 0x28028: "\x02\x05\x01\x02\x01\x02\x01\x05\x05\x05\x03\x05\x04", // 𨀨
+ 0x28029: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x02\x02\x05", // 𨀩
+ 0x2802a: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x02\x02\x01", // 𨀪
+ 0x2802b: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x04\x01\x03\x05", // 𨀫
+ 0x2802c: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x02\x01\x02\x01", // 𨀬
+ 0x2802d: "\x02\x05\x01\x02\x01\x02\x01\x03\x03\x01\x02\x03\x05", // 𨀭
+ 0x2802e: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x03\x05\x04\x01", // 𨀮
+ 0x2802f: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x01\x05\x02", // 𨀯
+ 0x28030: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x02\x05\x03\x04", // 𨀰
+ 0x28031: "\x02\x05\x01\x02\x01\x02\x01\x01\x01\x01\x03\x05\x04", // 𨀱
+ 0x28032: "\x02\x05\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 𨀲
+ 0x28033: "\x02\x05\x01\x02\x01\x02\x01\x03\x02\x01\x05\x03\x04", // 𨀳
+ 0x28034: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x02\x05\x01\x01", // 𨀴
+ 0x28035: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x03\x01\x02\x01", // 𨀵
+ 0x28036: "\x04\x01\x03\x02\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 𨀶
+ 0x28037: "\x02\x05\x01\x02\x01\x02\x01\x04\x03\x01\x02\x03\x04", // 𨀷
+ 0x28038: "\x02\x05\x01\x02\x01\x02\x01\x04\x04\x05\x03\x01\x05", // 𨀸
+ 0x28039: "\x02\x05\x01\x02\x01\x02\x01\x04\x04\x01\x01\x02\x01", // 𨀹
+ 0x2803a: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x05\x04\x02\x02", // 𨀺
+ 0x2803b: "\x02\x05\x01\x02\x01\x02\x01\x01\x01\x03\x05\x03\x04", // 𨀻
+ 0x2803c: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x01\x03\x03\x05", // 𨀼
+ 0x2803d: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x02\x05\x02", // 𨀽
+ 0x2803e: "\x02\x05\x01\x02\x01\x02\x01\x04\x04\x01\x05\x03\x01", // 𨀾
+ 0x2803f: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x05\x04\x04\x01", // 𨀿
+ 0x28040: "\x03\x02\x02\x03\x01\x03\x04\x02\x05\x01\x02\x01\x02\x01", // 𨁀
+ 0x28041: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x05\x02\x01\x03\x04", // 𨁁
+ 0x28042: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x04\x03\x04\x03\x04", // 𨁂
+ 0x28043: "\x02\x05\x01\x02\x01\x02\x01\x04\x03\x05\x01\x05\x02\x03", // 𨁃
+ 0x28044: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x01\x02", // 𨁄
+ 0x28045: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x04\x03\x01\x01\x02", // 𨁅
+ 0x28046: "\x02\x05\x01\x02\x01\x02\x01\x03\x02\x01\x02\x01\x05\x04", // 𨁆
+ 0x28047: "\x02\x05\x01\x02\x01\x02\x01\x01\x01\x03\x04\x02\x05\x01", // 𨁇
+ 0x28048: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x05\x01\x01\x03\x04", // 𨁈
+ 0x28049: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x02\x03\x04\x01", // 𨁉
+ 0x2804a: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x02\x03\x04\x01\x05", // 𨁊
+ 0x2804b: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x05\x01\x04\x03\x01", // 𨁋
+ 0x2804c: "\x02\x05\x01\x02\x01\x02\x01\x05\x03\x01\x01\x05\x02", // 𨁌
+ 0x2804d: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 𨁍
+ 0x2804e: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x03\x01\x02\x01", // 𨁎
+ 0x2804f: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 𨁏
+ 0x28050: "\x02\x05\x01\x02\x01\x02\x01\x01\x05\x04\x01\x03\x02", // 𨁐
+ 0x28051: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x02\x05\x01\x03\x05", // 𨁑
+ 0x28052: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x02\x01\x02\x05\x01", // 𨁒
+ 0x28053: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x02\x01\x01\x01\x05", // 𨁓
+ 0x28054: "\x02\x05\x01\x02\x01\x02\x01\x03\x02\x03\x01\x02\x01\x01", // 𨁔
+ 0x28055: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x03\x04\x04\x02\x04", // 𨁕
+ 0x28056: "\x02\x05\x01\x02\x01\x02\x01\x03\x04\x03\x04\x02\x05\x01", // 𨁖
+ 0x28057: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x02\x01\x05\x04", // 𨁗
+ 0x28058: "\x01\x02\x01\x02\x01\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 𨁘
+ 0x28059: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x02\x05\x02\x01\x03\x05", // 𨁙
+ 0x2805a: "\x02\x05\x01\x02\x01\x02\x01\x04\x04\x05\x01\x01\x03\x05", // 𨁚
+ 0x2805b: "\x01\x02\x04\x01\x03\x04\x04\x02\x05\x01\x02\x01\x03\x04", // 𨁛
+ 0x2805c: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x01\x01\x01\x03\x04", // 𨁜
+ 0x2805d: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x04\x05\x05\x02\x01", // 𨁝
+ 0x2805e: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x01\x05", // 𨁞
+ 0x2805f: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x02\x01\x05\x03\x04", // 𨁟
+ 0x28060: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x03\x02\x01\x02\x01", // 𨁠
+ 0x28061: "\x02\x05\x01\x02\x01\x02\x01\x03\x04\x04\x03\x05\x03\x01", // 𨁡
+ 0x28062: "\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 𨁢
+ 0x28063: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x04\x04\x03\x03\x04", // 𨁣
+ 0x28064: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x03\x01\x02\x03\x04", // 𨁤
+ 0x28065: "\x01\x02\x03\x04\x01\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 𨁥
+ 0x28066: "\x02\x05\x01\x02\x01\x02\x01\x01\x01\x02\x01\x01\x03\x02", // 𨁦
+ 0x28067: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x02\x02\x05\x03\x04", // 𨁧
+ 0x28068: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x03\x01\x01\x02\x01", // 𨁨
+ 0x28069: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x01\x05\x02\x01\x05", // 𨁩
+ 0x2806a: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x05\x03\x05\x01\x01", // 𨁪
+ 0x2806b: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x01\x02\x01\x01", // 𨁫
+ 0x2806c: "\x02\x05\x01\x02\x01\x02\x01\x03\x02\x02\x05\x01\x01\x02", // 𨁬
+ 0x2806d: "\x02\x05\x01\x02\x01\x02\x01\x05\x03\x01\x02\x03\x04\x03", // 𨁭
+ 0x2806e: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x03\x04\x02\x05\x01", // 𨁮
+ 0x2806f: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x01\x03\x02\x03\x04", // 𨁯
+ 0x28070: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x03\x05\x03\x04", // 𨁰
+ 0x28071: "\x02\x05\x01\x02\x01\x02\x01\x05\x01\x03\x03\x01\x01\x05", // 𨁱
+ 0x28072: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x05\x02\x01\x05", // 𨁲
+ 0x28073: "\x02\x05\x01\x02\x01\x02\x01\x05\x01\x05\x04\x01\x05\x03", // 𨁳
+ 0x28074: "\x02\x05\x01\x02\x01\x02\x01\x04\x02\x05\x02\x05\x01\x01", // 𨁴
+ 0x28075: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x03\x03\x02\x01\x02\x04", // 𨁵
+ 0x28076: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x01\x05\x05\x01\x02\x01", // 𨁶
+ 0x28077: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x05\x01\x01\x01\x01", // 𨁷
+ 0x28078: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x01\x03\x01\x03\x04\x04", // 𨁸
+ 0x28079: "\x02\x05\x01\x02\x01\x02\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 𨁹
+ 0x2807a: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x01\x03\x04", // 𨁺
+ 0x2807b: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x05\x04\x01\x02\x03\x04", // 𨁻
+ 0x2807c: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x04\x01\x02\x01\x03\x02", // 𨁼
+ 0x2807d: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x01\x02\x04", // 𨁽
+ 0x2807e: "\x02\x05\x01\x02\x01\x02\x01\x02\x01\x02\x01\x02\x01\x03\x04", // 𨁾
+ 0x2807f: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x05\x03\x03\x04\x03\x04", // 𨁿
+ 0x28080: "\x02\x05\x01\x02\x01\x02\x01\x05\x02\x02\x05\x01\x01\x01", // 𨂀
+ 0x28081: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x04\x02\x05\x01\x01\x05", // 𨂁
+ 0x28082: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x04\x01\x04\x03\x03\x04", // 𨂂
+ 0x28083: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x01\x01\x03\x05\x01\x01", // 𨂃
+ 0x28084: "\x02\x05\x01\x02\x01\x02\x01\x03\x02\x01\x02\x01\x01\x02\x04", // 𨂄
+ 0x28085: "\x02\x05\x01\x02\x01\x02\x01\x04\x03\x02\x05\x02\x03\x04", // 𨂅
+ 0x28086: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x03\x01\x01\x02\x05\x02", // 𨂆
+ 0x28087: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x01\x03\x02\x01\x02\x01", // 𨂇
+ 0x28088: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x01\x02\x01", // 𨂈
+ 0x28089: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x01\x02\x01\x01\x02\x01", // 𨂉
+ 0x2808a: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x01\x02\x01\x02\x05\x01", // 𨂊
+ 0x2808b: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x03\x04\x03\x02\x01\x01", // 𨂋
+ 0x2808c: "\x02\x05\x01\x02\x01\x02\x01\x04\x04\x05\x01\x02\x01\x03\x04", // 𨂌
+ 0x2808d: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x04\x04\x03\x01\x01\x05", // 𨂍
+ 0x2808e: "\x02\x05\x01\x02\x01\x02\x01\x01\x04\x05\x02\x04\x01\x03\x04", // 𨂎
+ 0x2808f: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x01\x01\x02\x03\x04", // 𨂏
+ 0x28090: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x04\x03\x04\x02\x03\x04", // 𨂐
+ 0x28091: "\x02\x05\x01\x02\x01\x02\x01\x02\x01\x05\x03\x01\x05\x03\x04", // 𨂑
+ 0x28092: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x03\x02\x03\x05\x04\x04", // 𨂒
+ 0x28093: "\x02\x05\x01\x02\x01\x02\x01\x05\x02\x01\x01\x05\x02\x01\x01", // 𨂓
+ 0x28094: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x05\x04\x02\x05\x01\x01", // 𨂔
+ 0x28095: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x03\x04\x01\x02\x03\x04", // 𨂕
+ 0x28096: "\x02\x05\x01\x02\x01\x02\x01\x04\x04\x01\x04\x01\x04\x03\x01", // 𨂖
+ 0x28097: "\x02\x05\x01\x02\x01\x02\x01\x05\x02\x01\x03\x03\x05\x04\x04", // 𨂗
+ 0x28098: "\x02\x05\x01\x02\x01\x02\x01\x03\x04\x04\x03\x03\x01\x02\x01", // 𨂘
+ 0x28099: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x02\x05\x01\x02\x03\x04", // 𨂙
+ 0x2809a: "\x02\x05\x01\x02\x01\x02\x01\x04\x03\x01\x02\x02\x01\x03\x04", // 𨂚
+ 0x2809b: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x04\x04\x03\x01\x01\x02", // 𨂛
+ 0x2809c: "\x02\x05\x01\x02\x01\x02\x01\x02\x01\x05\x03\x01\x05\x03\x05", // 𨂜
+ 0x2809d: "\x04\x03\x01\x02\x02\x04\x03\x01\x02\x05\x01\x02\x01\x03\x04", // 𨂝
+ 0x2809e: "\x02\x05\x01\x02\x01\x03\x04\x04\x03\x01\x02\x02\x04\x03\x01", // 𨂞
+ 0x2809f: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x03\x01\x02\x01\x03\x05", // 𨂟
+ 0x280a0: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𨂠
+ 0x280a1: "\x02\x05\x01\x02\x01\x02\x01\x01\x01\x01\x03\x04\x01\x01\x03\x04", // 𨂡
+ 0x280a2: "\x05\x01\x01\x05\x04\x05\x02\x02\x05\x01\x02\x01\x03\x04", // 𨂢
+ 0x280a3: "\x05\x04\x05\x02\x03\x03\x01\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 𨂣
+ 0x280a4: "\x02\x05\x01\x02\x01\x02\x01\x01\x05\x04\x01\x02\x01\x03\x01\x03\x04", // 𨂤
+ 0x280a5: "\x02\x05\x01\x02\x01\x02\x01\x04\x04\x05\x03\x05\x04\x02\x05\x01", // 𨂥
+ 0x280a6: "\x02\x05\x01\x02\x01\x02\x01\x05\x05\x01\x03\x05\x03\x03\x03\x04", // 𨂦
+ 0x280a7: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x01\x04\x03\x01\x01\x01\x02", // 𨂧
+ 0x280a8: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x04\x04\x03\x01\x01\x01\x02", // 𨂨
+ 0x280a9: "\x02\x05\x01\x02\x01\x02\x01\x05\x04\x03\x03\x04\x03\x05\x05\x04", // 𨂩
+ 0x280aa: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x04\x03\x01\x03\x03\x03\x03", // 𨂪
+ 0x280ab: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x03\x04\x03\x01\x05\x02\x03", // 𨂫
+ 0x280ac: "\x01\x02\x04\x05\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 𨂬
+ 0x280ad: "\x02\x05\x01\x02\x01\x02\x01\x01\x01\x02\x01\x05\x05\x04\x01\x04", // 𨂭
+ 0x280ae: "\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x02\x01\x03\x04", // 𨂮
+ 0x280af: "\x02\x05\x01\x02\x01\x02\x01\x03\x02\x01\x02\x05\x01\x01\x03\x04", // 𨂯
+ 0x280b0: "\x02\x05\x01\x02\x01\x02\x01\x01\x01\x01\x02\x05\x03\x01\x03\x04", // 𨂰
+ 0x280b1: "\x02\x05\x01\x02\x01\x02\x01\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 𨂱
+ 0x280b2: "\x02\x05\x01\x02\x01\x02\x01\x05\x01\x03\x04\x03\x01\x01\x03\x02", // 𨂲
+ 0x280b3: "\x02\x05\x01\x02\x01\x02\x01\x05\x01\x05\x05\x01\x05\x01\x03\x04", // 𨂳
+ 0x280b4: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x03\x03\x04\x04\x05\x04\x04", // 𨂴
+ 0x280b5: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x02\x03\x02\x01\x05\x01\x01", // 𨂵
+ 0x280b6: "\x02\x05\x01\x02\x01\x02\x01\x02\x01\x05\x03\x01\x05\x02\x05\x02", // 𨂶
+ 0x280b7: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x02\x05\x01\x01\x02\x01\x01", // 𨂷
+ 0x280b8: "\x02\x05\x01\x02\x01\x02\x01\x03\x02\x05\x01\x03\x01\x01\x03\x04", // 𨂸
+ 0x280b9: "\x02\x05\x01\x02\x01\x02\x01\x05\x03\x02\x05\x01\x02\x01\x05\x03", // 𨂹
+ 0x280ba: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x02\x02\x03\x04\x05\x01\x05", // 𨂺
+ 0x280bb: "\x02\x05\x01\x02\x01\x02\x01\x03\x04\x04\x03\x02\x02\x05\x01\x01", // 𨂻
+ 0x280bc: "\x02\x05\x01\x02\x01\x02\x01\x03\x04\x04\x03\x05\x03\x03\x03\x04", // 𨂼
+ 0x280bd: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x02\x05\x01\x02\x05\x03\x04", // 𨂽
+ 0x280be: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x05\x04\x03\x01\x01\x02", // 𨂾
+ 0x280bf: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x02\x04\x01\x02\x01\x02\x01", // 𨂿
+ 0x280c0: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 𨃀
+ 0x280c1: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x01\x01\x01\x01\x02\x03", // 𨃁
+ 0x280c2: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 𨃂
+ 0x280c3: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 𨃃
+ 0x280c4: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x02\x01\x01\x05\x03\x04", // 𨃄
+ 0x280c5: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x01\x03\x01\x01\x01\x01\x02", // 𨃅
+ 0x280c6: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x01\x01\x03\x03\x05\x04\x04", // 𨃆
+ 0x280c7: "\x02\x05\x01\x02\x01\x02\x01\x04\x03\x01\x01\x02\x01\x05\x03\x01", // 𨃇
+ 0x280c8: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x01\x03\x04\x05\x01\x05", // 𨃈
+ 0x280c9: "\x02\x05\x01\x02\x01\x02\x01\x03\x03\x02\x01\x02\x01\x01\x02\x04", // 𨃉
+ 0x280ca: "\x02\x05\x01\x02\x01\x02\x01\x02\x01\x02\x05\x01\x04\x04\x04\x04", // 𨃊
+ 0x280cb: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x04\x01\x02\x05\x02", // 𨃋
+ 0x280cc: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x02\x04", // 𨃌
+ 0x280cd: "\x02\x05\x01\x02\x01\x02\x01\x04\x04\x05\x03\x04\x01\x03\x04\x04", // 𨃍
+ 0x280ce: "\x02\x05\x01\x02\x01\x02\x01\x02\x02\x05\x04\x02\x05\x02\x02\x01", // 𨃎
+ 0x280cf: "\x02\x05\x01\x02\x01\x02\x01\x03\x02\x05\x01\x01\x04\x05\x05\x04", // 𨃏
+ 0x280d0: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x05\x04\x02\x05\x01", // 𨃐
+ 0x280d1: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x01\x03\x04\x01\x05\x03\x04", // 𨃑
+ 0x280d2: "\x02\x05\x01\x02\x01\x02\x01\x05\x03\x02\x05\x01\x01\x02\x05\x03", // 𨃒
+ 0x280d3: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x03\x04\x01\x02\x03\x04", // 𨃓
+ 0x280d4: "\x02\x05\x01\x02\x01\x02\x01\x03\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 𨃔
+ 0x280d5: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x05\x05\x04\x02\x05\x01\x02\x01", // 𨃕
+ 0x280d6: "\x02\x01\x05\x01\x02\x01\x02\x01\x01\x02\x02\x01\x03\x04\x01\x01\x05", // 𨃖
+ 0x280d7: "\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 𨃗
+ 0x280d8: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03", // 𨃘
+ 0x280d9: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x05\x02\x02\x01\x01\x02\x03\x04", // 𨃙
+ 0x280da: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x03\x04\x01\x02\x05\x01", // 𨃚
+ 0x280db: "\x02\x05\x01\x02\x01\x02\x01\x05\x02\x04\x01\x04\x03\x01\x01\x02", // 𨃛
+ 0x280dc: "\x02\x05\x01\x02\x01\x02\x01\x03\x02\x02\x03\x05\x04\x01\x02\x03\x04", // 𨃜
+ 0x280dd: "\x02\x05\x01\x02\x01\x02\x01\x03\x03\x02\x01\x02\x01\x02\x01\x03\x04", // 𨃝
+ 0x280de: "\x03\x03\x05\x04\x01\x04\x03\x05\x05\x04\x02\x05\x01\x02\x01\x03\x04", // 𨃞
+ 0x280df: "\x02\x05\x01\x02\x01\x02\x01\x03\x03\x05\x04\x01\x04\x03\x05\x05\x04", // 𨃟
+ 0x280e0: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x03\x05\x01\x01\x02\x02\x05\x01", // 𨃠
+ 0x280e1: "\x02\x05\x01\x02\x01\x02\x01\x03\x02\x05\x01\x01\x01\x04\x05\x04\x04", // 𨃡
+ 0x280e2: "\x05\x03\x01\x01\x02\x05\x01\x02\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 𨃢
+ 0x280e3: "\x02\x05\x01\x02\x01\x02\x01\x05\x04\x04\x02\x05\x01\x02\x01\x04", // 𨃣
+ 0x280e4: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 𨃤
+ 0x280e5: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x04\x01\x05\x02\x01\x02\x03\x04", // 𨃥
+ 0x280e6: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x03\x04\x01\x02\x01\x03\x02", // 𨃦
+ 0x280e7: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x02\x05\x01\x02\x05\x02\x05\x01", // 𨃧
+ 0x280e8: "\x05\x01\x03\x01\x02\x02\x01\x05\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 𨃨
+ 0x280e9: "\x02\x05\x01\x02\x01\x02\x01\x04\x05\x01\x03\x05\x04\x01\x05\x04\x01", // 𨃩
+ 0x280ea: "\x02\x05\x01\x02\x01\x02\x01\x04\x03\x01\x01\x03\x04\x03\x01\x01\x02", // 𨃪
+ 0x280eb: "\x03\x02\x01\x05\x04\x01\x02\x01\x02\x02\x02\x05\x01\x02\x01\x03\x04", // 𨃫
+ 0x280ec: "\x02\x05\x01\x02\x01\x02\x01\x03\x02\x05\x01\x05\x01\x04\x05\x04", // 𨃬
+ 0x280ed: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x01\x01\x02\x03\x04\x05\x03\x04", // 𨃭
+ 0x280ee: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x05\x04\x02\x02\x01\x02\x03\x04", // 𨃮
+ 0x280ef: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x02\x01\x01\x02\x04", // 𨃯
+ 0x280f0: "\x02\x05\x01\x02\x01\x02\x01\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 𨃰
+ 0x280f1: "\x04\x01\x04\x03\x01\x04\x01\x04\x03\x01\x02\x05\x01\x02\x01\x03\x04", // 𨃱
+ 0x280f2: "\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x05\x01\x02\x01\x03\x04", // 𨃲
+ 0x280f3: "\x02\x05\x01\x02\x01\x02\x01\x05\x04\x02\x05\x01\x01\x03\x05\x03\x05", // 𨃳
+ 0x280f4: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x05\x04\x05\x02\x05\x01\x01", // 𨃴
+ 0x280f5: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04", // 𨃵
+ 0x280f6: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x03\x04\x03\x05\x04\x02\x05\x01", // 𨃶
+ 0x280f7: "\x02\x05\x01\x02\x01\x02\x01\x04\x05\x02\x04\x02\x05\x01\x03\x05", // 𨃷
+ 0x280f8: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05", // 𨃸
+ 0x280f9: "\x02\x05\x01\x02\x01\x02\x01\x04\x04\x01\x04\x05\x01\x01\x05\x03\x04", // 𨃹
+ 0x280fa: "\x02\x05\x01\x02\x01\x02\x01\x05\x05\x04\x04\x04\x04\x02\x05\x03\x04", // 𨃺
+ 0x280fb: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x05\x04\x02\x02\x04\x04\x04\x04", // 𨃻
+ 0x280fc: "\x02\x05\x01\x02\x01\x02\x01\x04\x05\x02\x04\x03\x01\x02\x01\x01", // 𨃼
+ 0x280fd: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x01\x01\x05\x03\x04\x01\x02\x04", // 𨃽
+ 0x280fe: "\x03\x01\x02\x03\x04\x03\x05\x02\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 𨃾
+ 0x280ff: "\x02\x05\x01\x02\x01\x02\x01\x05\x01\x05\x05\x01\x05\x01\x01\x03\x02", // 𨃿
+ 0x28100: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x03\x05\x01\x01\x02\x01\x03\x04", // 𨄀
+ 0x28101: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x01\x01\x01\x04\x05\x03\x05", // 𨄁
+ 0x28102: "\x02\x05\x01\x02\x01\x02\x01\x04\x05\x01\x01\x05\x04\x05\x02", // 𨄂
+ 0x28103: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 𨄃
+ 0x28104: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x02\x02\x03\x04\x04\x05\x04\x04", // 𨄄
+ 0x28105: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 𨄅
+ 0x28106: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 𨄆
+ 0x28107: "\x02\x05\x01\x02\x01\x02\x01\x04\x03\x01\x01\x03\x04\x02\x04\x01\x03\x04", // 𨄇
+ 0x28108: "\x02\x05\x01\x02\x01\x02\x01\x04\x04\x01\x05\x03\x04\x04\x01\x02\x03\x04", // 𨄈
+ 0x28109: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x04\x03\x01\x03\x03\x01\x01\x02\x01", // 𨄉
+ 0x2810a: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x04\x04\x05\x04\x01\x01\x02\x03\x04", // 𨄊
+ 0x2810b: "\x02\x05\x01\x02\x01\x02\x01\x05\x01\x03\x01\x02\x05\x02\x04\x04\x04\x04", // 𨄋
+ 0x2810c: "\x02\x05\x01\x02\x01\x02\x01\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01", // 𨄌
+ 0x2810d: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𨄍
+ 0x2810e: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x01\x01\x01\x03\x04\x01\x02\x01", // 𨄎
+ 0x2810f: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 𨄏
+ 0x28110: "\x02\x05\x01\x02\x01\x02\x01\x02\x01\x02\x01\x03\x05\x05\x05\x04\x02\x03\x04", // 𨄐
+ 0x28111: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 𨄑
+ 0x28112: "\x02\x05\x01\x02\x01\x02\x01\x04\x04\x05\x01\x02\x02\x01\x01\x01\x05\x04", // 𨄒
+ 0x28113: "\x02\x05\x01\x02\x01\x02\x01\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 𨄓
+ 0x28114: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x05\x01\x01\x02\x05\x04\x01\x02\x04", // 𨄔
+ 0x28115: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x05\x03\x03\x01\x03\x01\x01\x03\x04", // 𨄕
+ 0x28116: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x01\x03\x01\x02\x03\x04\x05\x03\x01", // 𨄖
+ 0x28117: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x03\x05\x01\x01\x02\x04\x01\x03\x04", // 𨄗
+ 0x28118: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x04\x04\x03\x01\x02\x01\x02\x05\x01", // 𨄘
+ 0x28119: "\x02\x05\x01\x02\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𨄙
+ 0x2811a: "\x05\x02\x01\x03\x03\x05\x04\x04\x01\x02\x04\x02\x05\x01\x02\x01\x03\x04", // 𨄚
+ 0x2811b: "\x02\x05\x01\x02\x01\x02\x01\x05\x04\x05\x04\x03\x04\x02\x04\x01\x03\x04", // 𨄛
+ 0x2811c: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 𨄜
+ 0x2811d: "\x05\x04\x05\x02\x03\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01\x03\x04", // 𨄝
+ 0x2811e: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x05\x01\x02\x03\x04\x04\x05\x04", // 𨄞
+ 0x2811f: "\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 𨄟
+ 0x28120: "\x02\x05\x01\x02\x01\x02\x01\x03\x04\x03\x01\x02\x03\x04\x04\x05\x04\x04", // 𨄠
+ 0x28121: "\x04\x01\x02\x05\x01\x05\x02\x01\x03\x05\x04\x02\x05\x01\x02\x01\x03\x04", // 𨄡
+ 0x28122: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x05\x05\x04\x04\x05\x03\x01\x01\x02", // 𨄢
+ 0x28123: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04", // 𨄣
+ 0x28124: "\x02\x05\x01\x02\x01\x02\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𨄤
+ 0x28125: "\x02\x05\x01\x02\x01\x02\x01\x02\x01\x05\x03\x01\x05\x03\x04\x03\x01\x02", // 𨄥
+ 0x28126: "\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 𨄦
+ 0x28127: "\x01\x02\x01\x03\x04\x01\x02\x01\x03\x05\x04\x02\x05\x01\x02\x01\x03\x04", // 𨄧
+ 0x28128: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x01\x04\x01\x05\x03\x03\x01\x03\x04", // 𨄨
+ 0x28129: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x05\x01\x02\x05\x01\x02\x01\x02\x02", // 𨄩
+ 0x2812a: "\x02\x05\x01\x02\x01\x02\x01\x03\x03\x02\x01\x05\x03\x01\x05\x02\x05\x02", // 𨄪
+ 0x2812b: "\x02\x05\x01\x02\x01\x02\x01\x03\x04\x01\x03\x03\x05\x04\x01\x04\x02\x02", // 𨄫
+ 0x2812c: "\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 𨄬
+ 0x2812d: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x03\x05\x02\x02\x01\x05\x04\x05\x04", // 𨄭
+ 0x2812e: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x05\x05\x04\x04\x01\x03\x04\x01\x02", // 𨄮
+ 0x2812f: "\x05\x01\x03\x01\x01\x02\x03\x04\x01\x02\x04\x02\x05\x01\x02\x01\x03\x04", // 𨄯
+ 0x28130: "\x02\x05\x01\x02\x01\x02\x01\x05\x01\x05\x01\x02\x01\x01\x01\x05\x03\x04", // 𨄰
+ 0x28131: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 𨄱
+ 0x28132: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x02\x05\x01\x02\x04\x05\x04\x04", // 𨄲
+ 0x28133: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04", // 𨄳
+ 0x28134: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04", // 𨄴
+ 0x28135: "\x02\x05\x01\x02\x01\x02\x01\x04\x04\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 𨄵
+ 0x28136: "\x02\x05\x01\x02\x01\x02\x01\x04\x03\x01\x01\x02\x01\x04\x05\x05\x03\x04", // 𨄶
+ 0x28137: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04", // 𨄷
+ 0x28138: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x02\x01\x03\x03\x01\x02", // 𨄸
+ 0x28139: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x02\x01\x02\x05\x01\x04\x05\x04", // 𨄹
+ 0x2813a: "\x02\x05\x01\x02\x01\x02\x01\x01\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 𨄺
+ 0x2813b: "\x02\x05\x01\x02\x01\x02\x01\x04\x04\x05\x01\x02\x05\x01\x02\x01\x03\x04", // 𨄻
+ 0x2813c: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x02\x03\x04\x03\x05\x04\x03\x05\x04", // 𨄼
+ 0x2813d: "\x02\x05\x01\x02\x01\x02\x01\x05\x02\x03\x05\x03\x02\x01\x05\x01\x01", // 𨄽
+ 0x2813e: "\x02\x05\x01\x02\x01\x02\x01\x04\x04\x05\x01\x03\x04\x01\x02\x05\x01\x02", // 𨄾
+ 0x2813f: "\x02\x05\x01\x02\x01\x02\x01\x05\x05\x04\x04\x04\x04\x03\x05\x04\x04\x04", // 𨄿
+ 0x28140: "\x02\x05\x01\x02\x01\x02\x01\x04\x03\x01\x02\x03\x04\x04\x01\x04\x03\x01", // 𨅀
+ 0x28141: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x04\x03\x01\x04\x04\x01\x04\x03\x01", // 𨅁
+ 0x28142: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x02\x04\x02\x05\x01\x01\x01\x03\x05", // 𨅂
+ 0x28143: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x02\x04\x04\x05\x01\x01\x02\x03\x04", // 𨅃
+ 0x28144: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x05\x01\x01\x01\x02\x03\x05\x03\x04", // 𨅄
+ 0x28145: "\x02\x05\x01\x02\x01\x02\x01\x02\x01\x02\x01\x01\x02\x01\x01\x02\x05\x04", // 𨅅
+ 0x28146: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x04\x04\x03\x01\x02\x01\x01\x02\x01", // 𨅆
+ 0x28147: "\x02\x05\x01\x04\x01\x03\x04\x03\x04\x01\x02\x02\x05\x01\x02\x01\x03\x04", // 𨅇
+ 0x28148: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x01\x05\x04\x01\x02\x03\x04", // 𨅈
+ 0x28149: "\x02\x05\x01\x02\x01\x02\x01\x04\x05\x01\x01\x05\x04\x03\x05\x01\x01", // 𨅉
+ 0x2814a: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x05\x04\x02\x05\x01\x01\x03\x01\x03\x04", // 𨅊
+ 0x2814b: "\x02\x05\x01\x02\x01\x02\x01\x05\x01\x01\x02\x03\x02\x01\x01\x05\x05\x02\x01\x02", // 𨅋
+ 0x2814c: "\x02\x05\x01\x02\x01\x02\x01\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04", // 𨅌
+ 0x2814d: "\x02\x05\x01\x02\x01\x02\x01\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01", // 𨅍
+ 0x2814e: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x02\x02\x01\x01\x01\x05\x04", // 𨅎
+ 0x2814f: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x02\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𨅏
+ 0x28150: "\x03\x01\x01\x02\x02\x02\x02\x01\x04\x04\x04\x04\x02\x05\x01\x02\x01\x03\x04", // 𨅐
+ 0x28151: "\x02\x05\x01\x02\x01\x02\x01\x03\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𨅑
+ 0x28152: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x04", // 𨅒
+ 0x28153: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01", // 𨅓
+ 0x28154: "\x02\x05\x01\x02\x01\x02\x01\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x01", // 𨅔
+ 0x28155: "\x02\x05\x01\x02\x01\x02\x01\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01", // 𨅕
+ 0x28156: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x01\x02\x05\x01\x01\x03\x01\x03\x04", // 𨅖
+ 0x28157: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x04\x03\x01\x04\x05\x01\x01\x01\x01\x02", // 𨅗
+ 0x28158: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x03\x03\x03\x02\x05\x01\x02\x01\x03\x04", // 𨅘
+ 0x28159: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x04\x03\x04\x05\x02\x05\x02\x02\x05\x01", // 𨅙
+ 0x2815a: "\x01\x02\x01\x04\x01\x05\x03\x03\x01\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 𨅚
+ 0x2815b: "\x02\x05\x01\x02\x01\x02\x01\x05\x01\x03\x03\x02\x05\x01\x02\x05\x02\x01\x04", // 𨅛
+ 0x2815c: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 𨅜
+ 0x2815d: "\x02\x05\x01\x02\x01\x02\x01\x02\x04\x03\x04\x05\x02\x05\x01\x01\x05\x02\x03", // 𨅝
+ 0x2815e: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x04\x03\x01\x04\x03\x04\x01\x02\x05\x01", // 𨅞
+ 0x2815f: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x05\x02\x02\x01\x01\x01\x04\x03\x03\x04", // 𨅟
+ 0x28160: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 𨅠
+ 0x28161: "\x02\x05\x01\x02\x01\x02\x01\x05\x01\x05\x01\x02\x01\x01\x02\x01\x02\x05\x01", // 𨅡
+ 0x28162: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x01\x04\x01\x05\x03\x03\x01\x03\x04", // 𨅢
+ 0x28163: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01", // 𨅣
+ 0x28164: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x01\x01\x01\x03\x04\x02\x05\x01\x01", // 𨅤
+ 0x28165: "\x02\x05\x01\x02\x01\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01\x04\x05\x04\x04", // 𨅥
+ 0x28166: "\x02\x05\x01\x02\x01\x02\x01\x03\x04\x03\x04\x03\x04\x03\x04\x02\x05\x01\x01", // 𨅦
+ 0x28167: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x01\x03\x03\x04\x01\x02\x01\x02\x05\x01", // 𨅧
+ 0x28168: "\x02\x05\x01\x02\x01\x02\x01\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x03\x04", // 𨅨
+ 0x28169: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x02\x01\x03\x05\x04\x01\x02\x05\x01\x01", // 𨅩
+ 0x2816a: "\x01\x05\x02\x03\x01\x05\x02\x03\x02\x05\x01\x02\x01\x03\x04\x01\x05\x02\x03", // 𨅪
+ 0x2816b: "\x02\x05\x01\x02\x01\x02\x01\x01\x01\x02\x01\x03\x05\x04\x01\x02\x01\x05\x04", // 𨅫
+ 0x2816c: "\x02\x05\x01\x02\x01\x02\x01\x04\x02\x05\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 𨅬
+ 0x2816d: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 𨅭
+ 0x2816e: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x01\x03\x02\x05\x01\x01\x05\x02", // 𨅮
+ 0x2816f: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x01\x02\x01\x01\x02\x01\x02\x01\x01\x02", // 𨅯
+ 0x28170: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x03\x04\x05\x02\x02\x05\x01\x05\x04\x01", // 𨅰
+ 0x28171: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x01\x05\x02\x05\x02\x05\x01\x01", // 𨅱
+ 0x28172: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x02\x05\x02\x02\x01\x03\x02\x05\x02\x02", // 𨅲
+ 0x28173: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x03\x05\x02\x05\x01\x02\x05\x01\x02\x02", // 𨅳
+ 0x28174: "\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 𨅴
+ 0x28175: "\x02\x05\x01\x02\x01\x02\x01\x05\x01\x01\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 𨅵
+ 0x28176: "\x02\x05\x01\x02\x01\x02\x01\x05\x04\x05\x04\x05\x04\x03\x04\x02\x04\x04\x04", // 𨅶
+ 0x28177: "\x02\x05\x01\x02\x01\x02\x01\x05\x02\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 𨅷
+ 0x28178: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x04\x03\x01\x04\x01\x02\x01\x01\x02\x04", // 𨅸
+ 0x28179: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x05\x01\x01\x01\x02\x03\x05\x01\x01", // 𨅹
+ 0x2817a: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 𨅺
+ 0x2817b: "\x02\x05\x01\x02\x01\x02\x01\x04\x04\x05\x03\x04\x03\x01\x02\x01\x02\x05\x01", // 𨅻
+ 0x2817c: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x01\x03\x04\x03\x04\x02\x03\x04", // 𨅼
+ 0x2817d: "\x02\x05\x01\x02\x01\x02\x01\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04", // 𨅽
+ 0x2817e: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04", // 𨅾
+ 0x2817f: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x01\x02\x01\x03\x04\x01\x05\x03\x04", // 𨅿
+ 0x28180: "\x02\x05\x01\x02\x01\x02\x01\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x01\x01", // 𨆀
+ 0x28181: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 𨆁
+ 0x28182: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𨆂
+ 0x28183: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x03\x04\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 𨆃
+ 0x28184: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x03\x04\x01\x02\x03\x04\x05\x02\x01\x03\x04", // 𨆄
+ 0x28185: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 𨆅
+ 0x28186: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𨆆
+ 0x28187: "\x02\x05\x01\x02\x01\x02\x01\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01\x02", // 𨆇
+ 0x28188: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 𨆈
+ 0x28189: "\x02\x05\x01\x02\x01\x02\x01\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x01\x02\x01", // 𨆉
+ 0x2818a: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x02\x05\x01\x02\x01\x03\x04", // 𨆊
+ 0x2818b: "\x02\x05\x01\x02\x01\x02\x01\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01\x05\x03\x04", // 𨆋
+ 0x2818c: "\x02\x05\x01\x02\x01\x02\x01\x04\x03\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𨆌
+ 0x2818d: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x01\x02\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 𨆍
+ 0x2818e: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x01\x01\x03\x05\x03\x04", // 𨆎
+ 0x2818f: "\x02\x05\x01\x02\x01\x02\x01\x04\x03\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 𨆏
+ 0x28190: "\x02\x05\x01\x02\x01\x02\x01\x04\x03\x01\x01\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 𨆐
+ 0x28191: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x01\x03\x04", // 𨆑
+ 0x28192: "\x02\x05\x01\x02\x01\x02\x01\x04\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02", // 𨆒
+ 0x28193: "\x02\x05\x01\x02\x01\x02\x01\x03\x04\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 𨆓
+ 0x28194: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x02\x02\x05\x02\x05\x01\x04\x05\x04", // 𨆔
+ 0x28195: "\x01\x02\x02\x05\x04\x03\x01\x01\x02\x01\x03\x04\x04\x02\x05\x01\x02\x01\x03\x04", // 𨆕
+ 0x28196: "\x02\x05\x01\x02\x01\x02\x01\x01\x04\x05\x02\x04\x01\x03\x04\x03\x04\x04\x05\x04", // 𨆖
+ 0x28197: "\x02\x05\x01\x02\x01\x02\x01\x03\x02\x05\x03\x04\x03\x01\x02\x03\x04\x01\x01\x05", // 𨆗
+ 0x28198: "\x02\x05\x01\x02\x01\x02\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 𨆘
+ 0x28199: "\x02\x05\x01\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01\x02\x01\x04\x05\x04\x03\x04", // 𨆙
+ 0x2819a: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x04\x01\x02\x05\x01\x05\x04\x01\x05\x04\x01", // 𨆚
+ 0x2819b: "\x02\x05\x01\x02\x01\x02\x01\x03\x03\x01\x02\x02\x05\x01\x01\x01\x04\x05\x04", // 𨆛
+ 0x2819c: "\x04\x03\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 𨆜
+ 0x2819d: "\x02\x05\x01\x02\x01\x02\x01\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𨆝
+ 0x2819e: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x02\x02\x01\x01\x03\x01\x01\x05\x03\x04", // 𨆞
+ 0x2819f: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𨆟
+ 0x281a0: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x05\x04\x03\x03\x04\x01\x01\x03\x04", // 𨆠
+ 0x281a1: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 𨆡
+ 0x281a2: "\x02\x05\x01\x02\x01\x02\x01\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x01", // 𨆢
+ 0x281a3: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𨆣
+ 0x281a4: "\x02\x05\x01\x02\x01\x02\x01\x05\x01\x01\x03\x02\x05\x01\x04\x03\x01\x01\x01\x02", // 𨆤
+ 0x281a5: "\x01\x02\x01\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 𨆥
+ 0x281a6: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x03\x04", // 𨆦
+ 0x281a7: "\x01\x02\x05\x01\x01\x01\x02\x01\x05\x04\x01\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 𨆧
+ 0x281a8: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x05", // 𨆨
+ 0x281a9: "\x02\x05\x01\x02\x01\x02\x01\x04\x05\x01\x03\x02\x05\x01\x02\x02\x04\x05\x04", // 𨆩
+ 0x281aa: "\x01\x02\x05\x01\x01\x01\x02\x01\x05\x05\x05\x01\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 𨆪
+ 0x281ab: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x04\x05\x02\x05\x01\x02\x01\x05\x02\x01\x03\x04", // 𨆫
+ 0x281ac: "\x02\x05\x01\x02\x01\x03\x04\x02\x05\x01\x02\x01\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 𨆬
+ 0x281ad: "\x02\x05\x01\x02\x01\x02\x01\x03\x02\x05\x01\x01\x04\x04\x05\x03\x04\x04\x01\x05\x03", // 𨆭
+ 0x281ae: "\x02\x05\x01\x02\x01\x02\x01\x01\x01\x01\x02\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01", // 𨆮
+ 0x281af: "\x02\x05\x01\x02\x01\x02\x01\x03\x02\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 𨆯
+ 0x281b0: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x04\x04\x04\x04", // 𨆰
+ 0x281b1: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05", // 𨆱
+ 0x281b2: "\x02\x05\x01\x02\x01\x02\x01\x03\x04\x04\x03\x01\x02\x01\x05\x01\x01\x04\x05\x04\x04", // 𨆲
+ 0x281b3: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x01\x02\x05\x02\x04\x01\x04\x03\x01\x01\x02", // 𨆳
+ 0x281b4: "\x02\x05\x01\x02\x01\x02\x01\x04\x03\x03\x04\x04\x03\x03\x04\x03\x05\x04\x01\x05\x02", // 𨆴
+ 0x281b5: "\x02\x05\x01\x02\x01\x02\x01\x05\x03\x02\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𨆵
+ 0x281b6: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x04\x04\x01\x01\x02\x05\x01\x01\x02\x04", // 𨆶
+ 0x281b7: "\x02\x05\x01\x02\x01\x02\x01\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x01\x02\x04", // 𨆷
+ 0x281b8: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x03\x02\x05\x01\x01\x02\x03\x04\x04\x05\x04\x04", // 𨆸
+ 0x281b9: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x04\x03\x01\x01\x03\x01\x02\x05\x01\x02\x03\x04", // 𨆹
+ 0x281ba: "\x02\x05\x01\x02\x01\x02\x01\x04\x04\x01\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 𨆺
+ 0x281bb: "\x04\x04\x01\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 𨆻
+ 0x281bc: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x04", // 𨆼
+ 0x281bd: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x03\x05\x04", // 𨆽
+ 0x281be: "\x02\x05\x01\x02\x01\x02\x01\x04\x04\x05\x03\x05\x04\x04\x05\x04\x01\x01\x02\x03\x04", // 𨆾
+ 0x281bf: "\x02\x05\x01\x02\x01\x02\x01\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x04\x02\x05\x01", // 𨆿
+ 0x281c0: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x05\x01\x04\x05\x04", // 𨇀
+ 0x281c1: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x03\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 𨇁
+ 0x281c2: "\x02\x05\x01\x02\x01\x02\x01\x03\x03\x02\x04\x01\x05\x04\x02\x05\x01\x01\x03\x01\x03\x04", // 𨇂
+ 0x281c3: "\x02\x05\x01\x02\x01\x02\x01\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𨇃
+ 0x281c4: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x02\x05\x01\x01\x04\x05\x04\x05\x04\x04\x03\x05\x04", // 𨇄
+ 0x281c5: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x04\x02\x04\x01\x03\x04", // 𨇅
+ 0x281c6: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x01\x02\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𨇆
+ 0x281c7: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01\x01\x03\x04", // 𨇇
+ 0x281c8: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x04\x05\x02\x05\x01\x02\x01\x05\x04\x02\x01\x03\x04", // 𨇈
+ 0x281c9: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x02\x01\x03\x04\x04\x03\x02\x05\x01\x02\x03\x04", // 𨇉
+ 0x281ca: "\x02\x05\x01\x02\x01\x02\x01\x03\x03\x02\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 𨇊
+ 0x281cb: "\x02\x05\x01\x02\x01\x02\x01\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x03\x05\x01\x01", // 𨇋
+ 0x281cc: "\x01\x02\x03\x04\x01\x03\x02\x01\x01\x02\x03\x04\x05\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 𨇌
+ 0x281cd: "\x02\x05\x01\x02\x01\x02\x01\x01\x01\x03\x04\x01\x01\x03\x04\x01\x02\x05\x01\x01\x01\x02", // 𨇍
+ 0x281ce: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x02\x05\x01\x01\x02\x01\x01\x03\x04\x01\x01\x02\x01", // 𨇎
+ 0x281cf: "\x02\x05\x01\x02\x01\x02\x01\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x03\x01\x02\x01", // 𨇏
+ 0x281d0: "\x03\x03\x05\x04\x01\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 𨇐
+ 0x281d1: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x02\x02\x01\x05\x04\x02\x05\x01\x01\x03\x05\x03\x05", // 𨇑
+ 0x281d2: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01", // 𨇒
+ 0x281d3: "\x03\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 𨇓
+ 0x281d4: "\x02\x05\x01\x02\x01\x02\x01\x05\x05\x04\x05\x05\x04\x01\x05\x05\x04\x05\x05\x04\x05\x02", // 𨇔
+ 0x281d5: "\x02\x05\x01\x02\x01\x02\x01\x03\x03\x02\x03\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x02", // 𨇕
+ 0x281d6: "\x02\x05\x01\x02\x01\x02\x01\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 𨇖
+ 0x281d7: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 𨇗
+ 0x281d8: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01\x01\x01\x02\x05\x01\x02\x01\x03\x04", // 𨇘
+ 0x281d9: "\x02\x05\x01\x02\x01\x02\x01\x03\x03\x02\x05\x02\x01\x02\x05\x01\x01\x02\x05\x02\x01\x01\x02", // 𨇙
+ 0x281da: "\x02\x05\x01\x02\x01\x02\x01\x03\x02\x01\x05\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𨇚
+ 0x281db: "\x02\x05\x01\x02\x01\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 𨇛
+ 0x281dc: "\x01\x02\x01\x03\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x05\x02\x05\x01\x02\x01\x03\x04", // 𨇜
+ 0x281dd: "\x02\x05\x01\x02\x01\x02\x01\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x03\x02\x01\x05\x01\x01", // 𨇝
+ 0x281de: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x01\x02\x01\x05\x04", // 𨇞
+ 0x281df: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x01\x02\x05\x01\x02\x01\x01\x03\x05\x04\x04\x04\x04", // 𨇟
+ 0x281e0: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x02\x05\x01\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x01", // 𨇠
+ 0x281e1: "\x02\x05\x01\x02\x01\x02\x01\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01", // 𨇡
+ 0x281e2: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x01\x03\x02\x05\x01", // 𨇢
+ 0x281e3: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x01\x01\x01\x03\x05", // 𨇣
+ 0x281e4: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x01\x01\x01\x02", // 𨇤
+ 0x281e5: "\x02\x05\x01\x02\x01\x02\x01\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 𨇥
+ 0x281e6: "\x02\x05\x01\x02\x01\x02\x01\x03\x04\x03\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 𨇦
+ 0x281e7: "\x02\x05\x01\x02\x01\x02\x01\x05\x01\x01\x02\x02\x05\x01\x01\x03\x01\x02\x03\x02\x01\x05\x01\x01", // 𨇧
+ 0x281e8: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x03\x02\x05\x01\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 𨇨
+ 0x281e9: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x02\x05\x01\x01\x05\x03\x05\x03\x05\x02\x05\x01\x03\x05\x04", // 𨇩
+ 0x281ea: "\x02\x05\x01\x02\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𨇪
+ 0x281eb: "\x02\x05\x01\x02\x01\x02\x01\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x01\x03\x04\x05\x05", // 𨇫
+ 0x281ec: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x03\x04", // 𨇬
+ 0x281ed: "\x04\x01\x03\x01\x02\x01\x04\x03\x01\x01\x02\x05\x01\x01\x05\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 𨇭
+ 0x281ee: "\x02\x05\x01\x02\x01\x02\x01\x05\x01\x01\x02\x02\x05\x01\x01\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04", // 𨇮
+ 0x281ef: "\x02\x05\x01\x02\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𨇯
+ 0x281f0: "\x02\x05\x01\x02\x01\x02\x01\x05\x05\x04\x05\x05\x04\x01\x05\x05\x04\x05\x05\x04\x05\x03\x03\x01\x02", // 𨇰
+ 0x281f1: "\x02\x05\x01\x02\x01\x02\x01\x03\x02\x05\x01\x01\x01\x04\x04\x05\x03\x04\x04\x01\x05\x03\x04\x05\x04", // 𨇱
+ 0x281f2: "\x02\x05\x01\x02\x01\x02\x01\x05\x01\x01\x02\x02\x05\x01\x01\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01", // 𨇲
+ 0x281f3: "\x02\x05\x01\x02\x01\x02\x01\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x03\x05\x04", // 𨇳
+ 0x281f4: "\x02\x05\x01\x02\x01\x02\x01\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x01\x03\x04\x05\x05", // 𨇴
+ 0x281f5: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05\x03\x05\x04\x03\x05\x04", // 𨇵
+ 0x281f6: "\x02\x05\x01\x02\x01\x02\x01\x04\x04\x05\x03\x04\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x03\x04", // 𨇶
+ 0x281f7: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x02\x03\x04\x05\x03\x01\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 𨇷
+ 0x281f8: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x04\x03\x01\x04\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x01", // 𨇸
+ 0x281f9: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x05\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01\x01\x05\x05\x04", // 𨇹
+ 0x281fa: "\x02\x05\x01\x02\x01\x02\x01\x03\x04\x04\x03\x02\x05\x02\x02\x01\x05\x01\x01\x05\x04\x01\x02\x04", // 𨇺
+ 0x281fb: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01", // 𨇻
+ 0x281fc: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04", // 𨇼
+ 0x281fd: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𨇽
+ 0x281fe: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x01\x01\x02\x05\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04", // 𨇾
+ 0x281ff: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x02\x05\x02\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x01\x04", // 𨇿
+ 0x28200: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𨈀
+ 0x28201: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x04\x03\x01\x04\x01\x01\x01\x02\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01", // 𨈁
+ 0x28202: "\x02\x05\x01\x02\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04\x05\x04", // 𨈂
+ 0x28203: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 𨈃
+ 0x28204: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x01\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x05\x03\x04", // 𨈄
+ 0x28205: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02", // 𨈅
+ 0x28206: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x02\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 𨈆
+ 0x28207: "\x02\x05\x01\x02\x01\x02\x01\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 𨈇
+ 0x28208: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x04\x05\x02\x05\x01\x01\x01", // 𨈈
+ 0x28209: "\x02\x05\x01\x02\x01\x02\x01\x02\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x02\x01\x02\x01\x05\x01\x05\x03\x04\x03\x05\x04", // 𨈉
+ 0x2820a: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x05\x01\x05", // 𨈊
+ 0x2820b: "\x02\x05\x01\x02\x01\x02\x01\x03\x01\x04\x03\x01\x04\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02", // 𨈋
+ 0x2820c: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x04\x05\x04\x04", // 𨈌
+ 0x2820d: "\x02\x05\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𨈍
+ 0x2820e: "\x02\x05\x01\x02\x01\x02\x01\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x05\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𨈎
+ 0x2820f: "\x03\x02\x05\x04\x01", // 𨈏
+ 0x28210: "\x03\x02\x05\x01\x03", // 𨈐
+ 0x28211: "\x03\x02\x05\x01\x01\x01", // 𨈑
+ 0x28212: "\x03\x02\x05\x01\x01\x01\x03\x02\x04", // 𨈒
+ 0x28213: "\x03\x02\x05\x01\x01\x01\x03\x02\x03\x04", // 𨈓
+ 0x28214: "\x03\x02\x05\x01\x01\x01\x03\x03\x05\x04", // 𨈔
+ 0x28215: "\x03\x02\x05\x01\x01\x01\x03\x05\x02", // 𨈕
+ 0x28216: "\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01", // 𨈖
+ 0x28217: "\x02\x05\x01\x03\x02\x05\x01\x01\x01\x03", // 𨈗
+ 0x28218: "\x03\x02\x05\x01\x01\x01\x03\x02\x03\x04\x03", // 𨈘
+ 0x28219: "\x03\x02\x05\x01\x01\x01\x03\x02\x01\x05\x04", // 𨈙
+ 0x2821a: "\x03\x02\x05\x01\x01\x01\x03\x01\x05\x03\x05", // 𨈚
+ 0x2821b: "\x03\x02\x05\x01\x01\x01\x03\x01\x02\x05\x04", // 𨈛
+ 0x2821c: "\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01", // 𨈜
+ 0x2821d: "\x03\x02\x05\x01\x01\x01\x03\x03\x05\x04\x01", // 𨈝
+ 0x2821e: "\x03\x02\x05\x01\x01\x01\x03\x05\x02\x05\x04", // 𨈞
+ 0x2821f: "\x03\x02\x05\x01\x01\x01\x03\x01\x05\x03\x04", // 𨈟
+ 0x28220: "\x03\x02\x05\x01\x01\x01\x03\x03\x04\x03\x04", // 𨈠
+ 0x28221: "\x03\x02\x05\x01\x01\x01\x03\x03\x01\x03\x04", // 𨈡
+ 0x28222: "\x03\x02\x05\x01\x01\x01\x03\x04\x01\x03\x05", // 𨈢
+ 0x28223: "\x03\x02\x05\x01\x01\x01\x03\x01\x03\x05\x04", // 𨈣
+ 0x28224: "\x03\x02\x05\x01\x01\x01\x03\x01\x01\x03\x05", // 𨈤
+ 0x28225: "\x03\x02\x05\x01\x01\x01\x03\x03\x01\x01\x05", // 𨈥
+ 0x28226: "\x03\x02\x05\x01\x01\x01\x03\x03\x04\x03\x04", // 𨈦
+ 0x28227: "\x03\x02\x05\x01\x01\x01\x03\x05\x01\x05\x02", // 𨈧
+ 0x28228: "\x03\x02\x05\x01\x01\x01\x03\x03\x01\x03\x05", // 𨈨
+ 0x28229: "\x03\x02\x05\x01\x01\x01\x03\x01\x03\x05\x04\x04", // 𨈩
+ 0x2822a: "\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x03\x04", // 𨈪
+ 0x2822b: "\x03\x02\x05\x01\x01\x01\x03\x04\x01\x01\x02\x01", // 𨈫
+ 0x2822c: "\x03\x02\x05\x01\x01\x01\x03\x03\x02\x01\x02\x01", // 𨈬
+ 0x2822d: "\x03\x02\x05\x01\x01\x01\x03\x02\x05\x02\x01\x01", // 𨈭
+ 0x2822e: "\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x02", // 𨈮
+ 0x2822f: "\x03\x02\x05\x01\x01\x01\x03\x05\x03\x05\x02\x01", // 𨈯
+ 0x28230: "\x03\x02\x05\x01\x01\x01\x03\x01\x02\x02\x05\x01", // 𨈰
+ 0x28231: "\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01", // 𨈱
+ 0x28232: "\x03\x02\x05\x01\x01\x01\x03\x04\x03\x04\x01\x01\x05", // 𨈲
+ 0x28233: "\x03\x02\x05\x01\x01\x01\x03\x03\x05\x02\x05\x01", // 𨈳
+ 0x28234: "\x03\x02\x05\x01\x01\x01\x03\x04\x03\x02\x05\x01", // 𨈴
+ 0x28235: "\x03\x02\x05\x01\x01\x01\x03\x05\x03\x02\x05\x04", // 𨈵
+ 0x28236: "\x03\x02\x05\x01\x01\x01\x03\x05\x05\x04\x01\x04", // 𨈶
+ 0x28237: "\x03\x02\x05\x01\x01\x01\x03\x04\x04\x05\x03\x05", // 𨈷
+ 0x28238: "\x03\x02\x05\x01\x01\x01\x03\x03\x01\x02\x02\x05\x01", // 𨈸
+ 0x28239: "\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x02\x05\x01", // 𨈹
+ 0x2823a: "\x03\x02\x05\x01\x01\x01\x03\x01\x02\x01\x03\x03\x05", // 𨈺
+ 0x2823b: "\x03\x02\x05\x01\x01\x01\x03\x03\x02\x05\x01\x01\x01", // 𨈻
+ 0x2823c: "\x03\x02\x05\x01\x01\x01\x03\x05\x03\x01\x02\x03\x04", // 𨈼
+ 0x2823d: "\x03\x02\x05\x01\x01\x01\x03\x04\x03\x01\x01\x03\x04", // 𨈽
+ 0x2823e: "\x03\x02\x05\x01\x01\x01\x03\x04\x03\x01\x01\x03\x02", // 𨈾
+ 0x2823f: "\x03\x04\x01\x02\x05\x01\x03\x02\x05\x01\x01\x01\x03", // 𨈿
+ 0x28240: "\x03\x02\x05\x01\x01\x01\x03\x01\x03\x04\x01\x05\x02", // 𨉀
+ 0x28241: "\x03\x02\x05\x01\x01\x01\x03\x02\x04\x03\x01\x03\x05", // 𨉁
+ 0x28242: "\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x05", // 𨉂
+ 0x28243: "\x03\x02\x03\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03", // 𨉃
+ 0x28244: "\x03\x02\x05\x01\x01\x01\x03\x03\x05\x02\x02\x01\x01", // 𨉄
+ 0x28245: "\x03\x02\x05\x01\x01\x01\x03\x03\x04\x01\x01\x03\x02", // 𨉅
+ 0x28246: "\x03\x02\x05\x01\x01\x01\x03\x03\x05\x05\x02\x01\x05", // 𨉆
+ 0x28247: "\x03\x02\x05\x01\x01\x01\x03\x04\x03\x03\x04\x03\x04", // 𨉇
+ 0x28248: "\x03\x02\x05\x01\x01\x01\x03\x03\x01\x02\x01\x05\x04", // 𨉈
+ 0x28249: "\x03\x02\x05\x01\x01\x01\x03\x01\x05\x03\x05\x01\x02\x01", // 𨉉
+ 0x2824a: "\x03\x02\x05\x01\x01\x01\x03\x01\x05\x03\x05\x01\x03\x04", // 𨉊
+ 0x2824b: "\x03\x02\x05\x01\x01\x01\x03\x04\x03\x02\x05\x01\x03\x05", // 𨉋
+ 0x2824c: "\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x02\x01\x03\x04", // 𨉌
+ 0x2824d: "\x03\x02\x05\x01\x01\x01\x03\x03\x02\x05\x01\x01\x03\x04", // 𨉍
+ 0x2824e: "\x03\x02\x05\x01\x01\x01\x03\x01\x03\x01\x01\x05\x03\x04", // 𨉎
+ 0x2824f: "\x03\x02\x05\x01\x01\x01\x03\x03\x05\x02\x05\x01\x03\x05", // 𨉏
+ 0x28250: "\x03\x02\x05\x01\x01\x01\x03\x03\x01\x02\x01\x05\x03\x04", // 𨉐
+ 0x28251: "\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x02\x01", // 𨉑
+ 0x28252: "\x03\x02\x05\x01\x01\x01\x03\x05\x05\x05\x04\x03\x03\x04", // 𨉒
+ 0x28253: "\x03\x02\x05\x01\x01\x01\x03\x03\x04\x01\x02\x05\x03\x04", // 𨉓
+ 0x28254: "\x03\x02\x05\x01\x01\x01\x03\x02\x01\x02\x05\x01\x01\x01\x02", // 𨉔
+ 0x28255: "\x03\x02\x05\x01\x01\x01\x03\x04\x05\x01\x03\x01\x03\x04\x04", // 𨉕
+ 0x28256: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03", // 𨉖
+ 0x28257: "\x03\x02\x05\x01\x01\x01\x03\x04\x04\x05\x01\x01\x02\x01\x04", // 𨉗
+ 0x28258: "\x03\x02\x05\x01\x01\x01\x03\x03\x03\x01\x02\x04\x05\x04", // 𨉘
+ 0x28259: "\x03\x02\x05\x01\x01\x01\x03\x01\x01\x03\x05\x04\x05\x03\x04", // 𨉙
+ 0x2825a: "\x03\x02\x05\x01\x01\x01\x03\x01\x03\x04\x02\x05\x01\x01\x05", // 𨉚
+ 0x2825b: "\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x03\x01\x01\x03\x04", // 𨉛
+ 0x2825c: "\x03\x02\x05\x01\x01\x01\x03\x03\x05\x01\x02\x01\x02\x05\x01", // 𨉜
+ 0x2825d: "\x03\x02\x05\x01\x01\x01\x03\x04\x04\x05\x03\x05\x04\x05\x05", // 𨉝
+ 0x2825e: "\x03\x02\x05\x01\x01\x01\x03\x01\x02\x01\x03\x04\x03\x05\x04", // 𨉞
+ 0x2825f: "\x03\x02\x05\x01\x01\x01\x03\x03\x04\x01\x02\x05\x01\x05\x02", // 𨉟
+ 0x28260: "\x03\x02\x05\x01\x01\x01\x03\x01\x02\x01\x04\x03\x01\x01\x02", // 𨉠
+ 0x28261: "\x03\x02\x05\x01\x01\x01\x03\x03\x01\x02\x01\x02\x02\x01\x01", // 𨉡
+ 0x28262: "\x03\x02\x05\x01\x01\x01\x03\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𨉢
+ 0x28263: "\x03\x02\x05\x01\x01\x01\x03\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 𨉣
+ 0x28264: "\x03\x02\x05\x01\x01\x01\x03\x03\x02\x05\x01\x01\x01\x01\x02\x01", // 𨉤
+ 0x28265: "\x03\x02\x05\x01\x01\x01\x03\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 𨉥
+ 0x28266: "\x03\x02\x05\x01\x01\x01\x03\x02\x05\x05\x04\x05\x02\x05\x01\x01", // 𨉦
+ 0x28267: "\x03\x02\x05\x01\x01\x01\x03\x01\x03\x01\x03\x05\x04\x05\x03\x04", // 𨉧
+ 0x28268: "\x03\x02\x05\x01\x01\x01\x03\x03\x02\x01\x01\x01\x03\x05\x05\x04", // 𨉨
+ 0x28269: "\x03\x02\x05\x01\x01\x01\x03\x01\x01\x01\x03\x04\x02\x05\x01\x01", // 𨉩
+ 0x2826a: "\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 𨉪
+ 0x2826b: "\x03\x02\x05\x01\x01\x01\x03\x03\x05\x02\x05\x01\x02\x05\x01", // 𨉫
+ 0x2826c: "\x03\x02\x05\x01\x01\x01\x03\x04\x01\x02\x05\x01\x04\x05\x01\x02", // 𨉬
+ 0x2826d: "\x03\x02\x05\x01\x01\x01\x03\x05\x02\x01\x03\x02\x05\x01\x01\x01", // 𨉭
+ 0x2826e: "\x03\x02\x05\x01\x01\x01\x03\x03\x02\x05\x03\x04\x01\x01\x05\x03\x05", // 𨉮
+ 0x2826f: "\x03\x02\x05\x01\x01\x01\x03\x03\x02\x01\x05\x01\x01\x02\x01\x05", // 𨉯
+ 0x28270: "\x03\x02\x05\x01\x01\x01\x03\x04\x05\x01\x01\x05\x03\x04\x05\x02", // 𨉰
+ 0x28271: "\x03\x02\x05\x01\x01\x01\x03\x05\x01\x05\x04\x01\x05\x01\x05\x04\x01", // 𨉱
+ 0x28272: "\x03\x02\x05\x01\x01\x01\x03\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 𨉲
+ 0x28273: "\x03\x02\x05\x01\x01\x01\x03\x03\x04\x05\x04\x05\x04\x01\x05\x04\x01", // 𨉳
+ 0x28274: "\x03\x02\x05\x01\x01\x01\x03\x01\x02\x02\x01\x02\x02\x01\x01\x01", // 𨉴
+ 0x28275: "\x03\x02\x05\x01\x01\x01\x03\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 𨉵
+ 0x28276: "\x03\x02\x05\x01\x01\x01\x03\x04\x03\x01\x01\x01\x03\x01\x02\x01", // 𨉶
+ 0x28277: "\x03\x02\x05\x01\x01\x01\x03\x04\x04\x05\x03\x04\x03\x04\x02\x05\x01", // 𨉷
+ 0x28278: "\x03\x02\x05\x01\x01\x01\x03\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𨉸
+ 0x28279: "\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x02\x05\x01\x01\x05\x03\x04\x01", // 𨉹
+ 0x2827a: "\x03\x02\x05\x01\x01\x01\x03\x03\x04\x05\x03\x02\x05\x01\x01\x01\x03\x04", // 𨉺
+ 0x2827b: "\x03\x02\x05\x01\x01\x01\x03\x01\x02\x05\x01\x01\x01\x02\x03\x05\x03\x04", // 𨉻
+ 0x2827c: "\x03\x02\x05\x01\x01\x01\x03\x01\x02\x05\x01\x02\x02\x01\x04\x05\x04\x04", // 𨉼
+ 0x2827d: "\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x02\x01\x01\x01\x01\x02\x01", // 𨉽
+ 0x2827e: "\x03\x02\x05\x01\x01\x01\x03\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01", // 𨉾
+ 0x2827f: "\x03\x02\x05\x01\x01\x01\x03\x01\x03\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 𨉿
+ 0x28280: "\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x01\x02", // 𨊀
+ 0x28281: "\x03\x02\x05\x01\x01\x01\x03\x01\x02\x01\x03\x03\x05\x01\x02\x01\x03\x03\x05", // 𨊁
+ 0x28282: "\x03\x02\x05\x01\x01\x01\x03\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𨊂
+ 0x28283: "\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03", // 𨊃
+ 0x28284: "\x03\x02\x05\x01\x01\x01\x03\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 𨊄
+ 0x28285: "\x03\x02\x05\x01\x01\x01\x03\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 𨊅
+ 0x28286: "\x03\x02\x05\x01\x01\x01\x03\x01\x02\x01\x03\x03\x05\x01\x05\x04\x01\x02\x01", // 𨊆
+ 0x28287: "\x03\x02\x05\x01\x01\x01\x03\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 𨊇
+ 0x28288: "\x03\x02\x05\x01\x01\x01\x03\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 𨊈
+ 0x28289: "\x03\x02\x05\x01\x01\x01\x03\x03\x01\x01\x05\x03\x01\x01\x05\x03\x01\x01\x05", // 𨊉
+ 0x2828a: "\x03\x02\x05\x01\x01\x01\x03\x04\x04\x05\x05\x03\x01\x01\x02\x01\x02\x05\x01", // 𨊊
+ 0x2828b: "\x03\x02\x05\x01\x01\x01\x03\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𨊋
+ 0x2828c: "\x03\x02\x05\x01\x01\x01\x03\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 𨊌
+ 0x2828d: "\x03\x02\x05\x01\x01\x01\x03\x03\x05\x01\x03\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 𨊍
+ 0x2828e: "\x03\x02\x05\x01\x01\x01\x03\x04\x04\x05\x01\x02\x01\x02\x05\x02\x02\x01\x01\x02", // 𨊎
+ 0x2828f: "\x03\x02\x05\x01\x01\x01\x03\x04\x03\x01\x01\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 𨊏
+ 0x28290: "\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x02\x02\x05\x02\x05\x01\x04\x05\x04", // 𨊐
+ 0x28291: "\x03\x02\x05\x01\x01\x01\x03\x01\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x01\x01", // 𨊑
+ 0x28292: "\x03\x02\x05\x01\x01\x01\x03\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 𨊒
+ 0x28293: "\x03\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04\x05\x04\x04\x02\x05\x02\x02\x01\x01\x02", // 𨊓
+ 0x28294: "\x03\x02\x05\x01\x01\x01\x03\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01", // 𨊔
+ 0x28295: "\x03\x02\x05\x01\x01\x01\x03\x04\x04\x05\x01\x02\x03\x03\x02\x05\x01\x01\x01\x03\x04", // 𨊕
+ 0x28296: "\x03\x02\x05\x01\x01\x01\x03\x05\x01\x03\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 𨊖
+ 0x28297: "\x03\x02\x05\x01\x01\x01\x03\x03\x05\x01\x03\x01\x05\x03\x05\x01\x02\x01\x02\x05\x01", // 𨊗
+ 0x28298: "\x03\x02\x05\x01\x01\x01\x03\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05\x04\x05\x04\x04", // 𨊘
+ 0x28299: "\x03\x02\x05\x01\x01\x01\x03\x01\x02\x02\x01\x03\x01\x02\x05\x01\x02\x05\x05\x03\x04", // 𨊙
+ 0x2829a: "\x03\x02\x05\x01\x01\x01\x03\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01", // 𨊚
+ 0x2829b: "\x03\x02\x05\x01\x01\x01\x03\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 𨊛
+ 0x2829c: "\x03\x02\x05\x01\x01\x01\x03\x01\x02\x01\x03\x03\x05\x01\x02\x01\x03\x03\x05\x03\x01\x01\x05", // 𨊜
+ 0x2829d: "\x03\x02\x05\x01\x01\x01\x03\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02\x02\x05\x01\x02\x01\x03\x04", // 𨊝
+ 0x2829e: "\x03\x02\x05\x01\x01\x01\x03\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01", // 𨊞
+ 0x2829f: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x01\x03", // 𨊟
+ 0x282a0: "\x01\x02\x05\x01\x01\x01\x02\x05\x05", // 𨊠
+ 0x282a1: "\x01\x02\x05\x01\x01\x01\x02\x01\x02", // 𨊡
+ 0x282a2: "\x01\x02\x05\x01\x01\x01\x02\x05\x04", // 𨊢
+ 0x282a3: "\x01\x02\x05\x01\x01\x01\x02\x02\x04", // 𨊣
+ 0x282a4: "\x01\x02\x05\x01\x01\x01\x02\x03\x04", // 𨊤
+ 0x282a5: "\x01\x02\x05\x01\x01\x01\x02\x05\x02", // 𨊥
+ 0x282a6: "\x01\x03\x01\x02\x05\x01\x01\x01\x02", // 𨊦
+ 0x282a7: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x01", // 𨊧
+ 0x282a8: "\x01\x02\x05\x01\x01\x01\x02\x03\x03\x03", // 𨊨
+ 0x282a9: "\x01\x02\x05\x01\x01\x01\x02\x05\x05\x05", // 𨊩
+ 0x282aa: "\x01\x02\x05\x01\x01\x01\x02\x01\x05\x04", // 𨊪
+ 0x282ab: "\x01\x02\x05\x01\x01\x01\x02\x01\x01\x02", // 𨊫
+ 0x282ac: "\x03\x05\x01\x01\x02\x05\x01\x01\x01\x02", // 𨊬
+ 0x282ad: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x04", // 𨊭
+ 0x282ae: "\x01\x02\x05\x01\x01\x01\x02\x01\x05\x01", // 𨊮
+ 0x282af: "\x01\x02\x05\x01\x01\x01\x02\x03\x01\x05", // 𨊯
+ 0x282b0: "\x01\x02\x05\x01\x01\x01\x02\x03\x01\x05", // 𨊰
+ 0x282b1: "\x01\x02\x05\x01\x01\x01\x02\x01\x01\x02", // 𨊱
+ 0x282b2: "\x01\x02\x05\x01\x01\x01\x02\x05\x01\x05", // 𨊲
+ 0x282b3: "\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04\x04", // 𨊳
+ 0x282b4: "\x01\x02\x05\x01\x01\x01\x02\x03\x01\x03\x04", // 𨊴
+ 0x282b5: "\x01\x02\x05\x01\x01\x01\x02\x03\x05\x05\x04", // 𨊵
+ 0x282b6: "\x01\x02\x05\x01\x01\x01\x02\x04\x05\x03\x05", // 𨊶
+ 0x282b7: "\x01\x02\x05\x01\x01\x01\x02\x03\x05\x04\x01", // 𨊷
+ 0x282b8: "\x01\x02\x05\x01\x01\x01\x02\x03\x05\x01\x01", // 𨊸
+ 0x282b9: "\x01\x02\x05\x01\x01\x01\x02\x05\x02\x01\x05", // 𨊹
+ 0x282ba: "\x01\x02\x05\x01\x01\x01\x02\x02\x01\x02\x01", // 𨊺
+ 0x282bb: "\x01\x02\x05\x01\x01\x01\x02\x01\x01\x03\x02", // 𨊻
+ 0x282bc: "\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x03", // 𨊼
+ 0x282bd: "\x01\x02\x05\x01\x01\x01\x02\x03\x04\x03\x04", // 𨊽
+ 0x282be: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x03\x04", // 𨊾
+ 0x282bf: "\x01\x02\x05\x01\x01\x01\x02\x05\x04\x05\x04", // 𨊿
+ 0x282c0: "\x01\x02\x05\x01\x01\x01\x02\x05\x02\x01\x01", // 𨋀
+ 0x282c1: "\x01\x02\x05\x01\x01\x01\x02\x05\x02\x05\x04", // 𨋁
+ 0x282c2: "\x01\x02\x05\x01\x01\x01\x02\x03\x04\x05\x03", // 𨋂
+ 0x282c3: "\x01\x02\x05\x01\x01\x01\x02\x03\x05\x04", // 𨋃
+ 0x282c4: "\x01\x02\x05\x01\x01\x01\x02\x04\x05\x03\x05", // 𨋄
+ 0x282c5: "\x01\x05\x03\x05\x01\x02\x05\x01\x01\x01\x02", // 𨋅
+ 0x282c6: "\x01\x02\x05\x01\x01\x01\x02\x01\x05\x05\x01", // 𨋆
+ 0x282c7: "\x01\x02\x05\x01\x01\x01\x02\x01\x05\x05\x04", // 𨋇
+ 0x282c8: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x03\x04", // 𨋈
+ 0x282c9: "\x02\x05\x03\x04\x01\x02\x05\x01\x01\x01\x02", // 𨋉
+ 0x282ca: "\x01\x02\x05\x01\x01\x01\x02\x03\x05\x03\x03", // 𨋊
+ 0x282cb: "\x01\x02\x05\x01\x01\x01\x02\x05\x04\x05\x02", // 𨋋
+ 0x282cc: "\x01\x02\x05\x01\x01\x01\x02\x05\x04\x05\x04", // 𨋌
+ 0x282cd: "\x01\x02\x05\x01\x01\x01\x02\x05\x04\x03\x05", // 𨋍
+ 0x282ce: "\x01\x02\x05\x01\x01\x01\x02\x03\x05\x02\x03\x04", // 𨋎
+ 0x282cf: "\x01\x02\x05\x01\x01\x01\x02\x03\x04\x02\x03\x04", // 𨋏
+ 0x282d0: "\x01\x02\x05\x01\x01\x01\x02\x01\x05\x05\x04", // 𨋐
+ 0x282d1: "\x01\x02\x01\x03\x05\x01\x02\x05\x01\x01\x01\x02", // 𨋑
+ 0x282d2: "\x01\x02\x05\x01\x01\x01\x02\x05\x04\x01\x03\x02", // 𨋒
+ 0x282d3: "\x01\x02\x05\x01\x01\x01\x02\x01\x03\x02\x05\x01", // 𨋓
+ 0x282d4: "\x01\x02\x05\x01\x01\x01\x02\x01\x01\x02\x01\x04", // 𨋔
+ 0x282d5: "\x01\x02\x05\x01\x01\x01\x02\x03\x05\x05\x02", // 𨋕
+ 0x282d6: "\x01\x02\x05\x01\x01\x01\x02\x03\x05\x03\x05\x02", // 𨋖
+ 0x282d7: "\x01\x02\x05\x01\x01\x01\x02\x05\x01\x03\x03\x05", // 𨋗
+ 0x282d8: "\x01\x02\x05\x01\x01\x01\x02\x03\x01\x02\x01\x01", // 𨋘
+ 0x282d9: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x01\x02", // 𨋙
+ 0x282da: "\x01\x02\x05\x01\x01\x01\x02\x05\x01\x03\x05\x04", // 𨋚
+ 0x282db: "\x01\x02\x05\x01\x01\x01\x02\x03\x05\x05\x03", // 𨋛
+ 0x282dc: "\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x05\x05", // 𨋜
+ 0x282dd: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x01\x05\x03", // 𨋝
+ 0x282de: "\x01\x02\x05\x01\x01\x01\x02\x01\x03\x02\x05\x02", // 𨋞
+ 0x282df: "\x03\x01\x02\x03\x04\x01\x02\x05\x01\x01\x01\x02", // 𨋟
+ 0x282e0: "\x01\x02\x05\x01\x01\x01\x02\x04\x04\x05\x03\x05", // 𨋠
+ 0x282e1: "\x05\x02\x02\x05\x02\x01\x02\x05\x01\x01\x01\x02", // 𨋡
+ 0x282e2: "\x01\x02\x05\x01\x01\x01\x02\x04\x01\x04\x03\x01", // 𨋢
+ 0x282e3: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x03\x04", // 𨋣
+ 0x282e4: "\x01\x02\x05\x01\x01\x01\x02\x02\x01\x05\x01\x03", // 𨋤
+ 0x282e5: "\x01\x02\x05\x01\x01\x01\x02\x05\x01\x05\x03\x02", // 𨋥
+ 0x282e6: "\x01\x02\x05\x01\x01\x01\x02\x03\x02\x05\x05\x04", // 𨋦
+ 0x282e7: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x02", // 𨋧
+ 0x282e8: "\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x05\x03\x04", // 𨋨
+ 0x282e9: "\x01\x02\x05\x01\x01\x01\x02\x03\x02\x01\x03\x04\x04", // 𨋩
+ 0x282ea: "\x01\x02\x05\x01\x01\x01\x02\x03\x05\x04\x01\x05\x02", // 𨋪
+ 0x282eb: "\x01\x02\x05\x01\x01\x01\x02\x03\x04\x01\x05\x03\x04", // 𨋫
+ 0x282ec: "\x05\x02\x05\x03\x04\x01\x01\x02\x05\x01\x01\x01\x02", // 𨋬
+ 0x282ed: "\x01\x02\x05\x01\x01\x01\x02\x03\x05\x05\x02\x01\x05", // 𨋭
+ 0x282ee: "\x01\x02\x05\x01\x01\x01\x02\x03\x05\x02\x05\x01\x01", // 𨋮
+ 0x282ef: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x01\x05\x03", // 𨋯
+ 0x282f0: "\x01\x02\x05\x01\x01\x01\x02\x04\x01\x03\x05\x03\x04", // 𨋰
+ 0x282f1: "\x01\x02\x05\x01\x01\x01\x02\x03\x02\x05\x01\x05\x01", // 𨋱
+ 0x282f2: "\x01\x02\x05\x01\x01\x01\x02\x04\x01\x02\x05\x03\x04", // 𨋲
+ 0x282f3: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x03\x04\x01", // 𨋳
+ 0x282f4: "\x01\x02\x05\x01\x01\x01\x02\x04\x04\x05\x05\x03\x01", // 𨋴
+ 0x282f5: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x02\x03\x04", // 𨋵
+ 0x282f6: "\x01\x02\x05\x01\x01\x01\x02\x03\x02\x01\x01\x02\x01", // 𨋶
+ 0x282f7: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x01\x01\x02\x01", // 𨋷
+ 0x282f8: "\x01\x02\x05\x01\x01\x01\x02\x01\x04\x03\x01\x03\x04", // 𨋸
+ 0x282f9: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x03\x04\x03\x04", // 𨋹
+ 0x282fa: "\x03\x02\x01\x05\x01\x01\x01\x02\x05\x01\x01\x01\x02", // 𨋺
+ 0x282fb: "\x01\x02\x05\x01\x01\x01\x02\x03\x04\x04\x03\x05\x04", // 𨋻
+ 0x282fc: "\x01\x02\x05\x01\x01\x01\x02\x03\x04\x04\x04\x01\x02", // 𨋼
+ 0x282fd: "\x01\x02\x05\x01\x01\x01\x02\x04\x03\x01\x01\x01\x02", // 𨋽
+ 0x282fe: "\x01\x02\x05\x01\x01\x01\x02\x05\x04\x01\x05\x04\x01", // 𨋾
+ 0x282ff: "\x05\x04\x05\x04\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 𨋿
+ 0x28300: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x02\x01\x01\x01", // 𨌀
+ 0x28301: "\x01\x02\x05\x01\x01\x01\x02\x03\x05\x02\x05\x01\x01", // 𨌁
+ 0x28302: "\x01\x02\x05\x01\x01\x01\x02\x05\x02\x03\x01\x01\x02\x01", // 𨌂
+ 0x28303: "\x01\x02\x05\x01\x01\x01\x02\x03\x05\x03\x01\x01\x02\x01", // 𨌃
+ 0x28304: "\x05\x02\x01\x03\x01\x02\x01\x01\x02\x05\x01\x01\x01\x02", // 𨌄
+ 0x28305: "\x04\x03\x01\x01\x01\x03\x01\x02\x05\x01\x01\x01\x02", // 𨌅
+ 0x28306: "\x01\x02\x05\x01\x01\x01\x02\x04\x04\x05\x01\x03\x05\x04", // 𨌆
+ 0x28307: "\x01\x02\x05\x01\x01\x01\x02\x01\x03\x05\x03\x03\x03\x04", // 𨌇
+ 0x28308: "\x01\x02\x05\x01\x01\x01\x02\x03\x02\x05\x01\x01\x01\x03", // 𨌈
+ 0x28309: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x03\x05\x04\x01", // 𨌉
+ 0x2830a: "\x01\x02\x05\x01\x01\x01\x02\x04\x04\x05\x02\x05\x04\x01", // 𨌊
+ 0x2830b: "\x01\x02\x05\x01\x01\x01\x02\x04\x05\x01\x03\x02\x05\x01", // 𨌋
+ 0x2830c: "\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x05\x02\x01\x05", // 𨌌
+ 0x2830d: "\x01\x02\x05\x01\x01\x01\x02\x04\x01\x04\x03\x01\x01\x02", // 𨌍
+ 0x2830e: "\x01\x02\x05\x01\x01\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 𨌎
+ 0x2830f: "\x01\x01\x02\x01\x01\x02\x05\x01\x01\x01\x02\x05\x03\x04", // 𨌏
+ 0x28310: "\x01\x02\x05\x01\x01\x01\x02\x01\x01\x02\x01\x03\x05\x04", // 𨌐
+ 0x28311: "\x01\x02\x05\x01\x01\x01\x02\x01\x03\x01\x01\x05\x03\x04", // 𨌑
+ 0x28312: "\x01\x02\x05\x01\x01\x01\x02\x03\x01\x02\x01\x02\x05\x01", // 𨌒
+ 0x28313: "\x01\x02\x05\x01\x01\x01\x02\x03\x02\x05\x01\x01\x03\x04", // 𨌓
+ 0x28314: "\x01\x02\x05\x01\x01\x01\x02\x04\x03\x02\x05\x01\x03\x05", // 𨌔
+ 0x28315: "\x01\x02\x05\x01\x01\x01\x02\x03\x04\x04\x05\x04\x03\x04", // 𨌕
+ 0x28316: "\x01\x02\x05\x01\x01\x01\x02\x03\x05\x04\x03\x05\x01\x01", // 𨌖
+ 0x28317: "\x05\x02\x02\x05\x02\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 𨌗
+ 0x28318: "\x01\x02\x05\x01\x01\x01\x02\x05\x04\x03\x04\x03\x05\x04", // 𨌘
+ 0x28319: "\x01\x02\x05\x01\x01\x01\x02\x04\x01\x05\x04\x03\x02\x05", // 𨌙
+ 0x2831a: "\x01\x02\x05\x01\x01\x01\x02\x04\x04\x05\x03\x01\x01\x02", // 𨌚
+ 0x2831b: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x02\x03\x04", // 𨌛
+ 0x2831c: "\x03\x05\x02\x05\x01\x03\x05\x01\x02\x05\x01\x01\x01\x02", // 𨌜
+ 0x2831d: "\x01\x02\x05\x01\x01\x01\x02\x03\x04\x03\x01\x03\x02\x04", // 𨌝
+ 0x2831e: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x01\x05\x04\x05\x02", // 𨌞
+ 0x2831f: "\x01\x02\x05\x01\x01\x01\x02\x04\x01\x03\x01\x02\x03\x04", // 𨌟
+ 0x28320: "\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x02\x04\x01\x03\x04", // 𨌠
+ 0x28321: "\x01\x02\x05\x01\x01\x01\x02\x01\x03\x01\x05\x02\x05\x01", // 𨌡
+ 0x28322: "\x01\x02\x05\x01\x01\x01\x02\x03\x04\x04\x03\x05\x01\x01\x02", // 𨌢
+ 0x28323: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x01\x02\x02\x05\x03\x04", // 𨌣
+ 0x28324: "\x04\x01\x03\x05\x04\x01\x05\x02\x01\x02\x05\x01\x01\x01\x02", // 𨌤
+ 0x28325: "\x01\x01\x02\x01\x01\x02\x05\x01\x01\x01\x02\x01\x01\x02\x01", // 𨌥
+ 0x28326: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x02\x01\x02\x01\x02", // 𨌦
+ 0x28327: "\x01\x02\x05\x01\x01\x01\x02\x01\x03\x04\x02\x05\x01\x01\x05", // 𨌧
+ 0x28328: "\x01\x02\x05\x01\x01\x01\x02\x03\x05\x03\x01\x01\x02\x05\x02", // 𨌨
+ 0x28329: "\x01\x02\x05\x01\x01\x01\x02\x02\x04\x03\x02\x05\x02\x05\x01", // 𨌩
+ 0x2832a: "\x01\x02\x05\x01\x01\x01\x02\x03\x04\x05\x04\x04\x05\x04\x04", // 𨌪
+ 0x2832b: "\x01\x02\x05\x01\x01\x01\x02\x04\x03\x01\x01\x03\x04\x05\x05", // 𨌫
+ 0x2832c: "\x01\x02\x05\x01\x01\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 𨌬
+ 0x2832d: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x03\x04\x02\x05\x01\x01", // 𨌭
+ 0x2832e: "\x01\x02\x05\x01\x01\x01\x02\x04\x01\x03\x03\x05\x01\x05\x04", // 𨌮
+ 0x2832f: "\x01\x02\x05\x01\x01\x01\x02\x04\x01\x05\x04\x02\x05\x01\x01", // 𨌯
+ 0x28330: "\x01\x02\x05\x01\x01\x01\x02\x03\x04\x03\x04\x02\x01\x03\x04", // 𨌰
+ 0x28331: "\x04\x01\x03\x05\x02\x05\x03\x04\x01\x02\x05\x01\x01\x01\x02", // 𨌱
+ 0x28332: "\x01\x02\x05\x01\x01\x01\x02\x03\x05\x01\x05\x02\x05\x01\x01", // 𨌲
+ 0x28333: "\x01\x02\x05\x01\x01\x01\x02\x02\x01\x02\x01\x02\x05\x01\x01", // 𨌳
+ 0x28334: "\x01\x02\x05\x01\x01\x01\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𨌴
+ 0x28335: "\x01\x02\x05\x01\x01\x01\x02\x04\x04\x05\x02\x05\x01\x01\x01", // 𨌵
+ 0x28336: "\x01\x02\x05\x01\x01\x01\x02\x04\x01\x05\x02\x05\x01\x01\x01", // 𨌶
+ 0x28337: "\x01\x02\x05\x01\x01\x01\x02\x01\x05\x05\x05\x01\x01\x02\x01", // 𨌷
+ 0x28338: "\x03\x04\x03\x04\x01\x02\x05\x01\x01\x01\x02\x03\x04\x03\x04", // 𨌸
+ 0x28339: "\x01\x02\x05\x01\x01\x01\x02\x04\x03\x03\x04\x04\x03\x03\x04", // 𨌹
+ 0x2833a: "\x01\x02\x05\x01\x01\x01\x02\x03\x04\x05\x04\x01\x05\x04\x01", // 𨌺
+ 0x2833b: "\x01\x02\x05\x01\x01\x01\x02\x01\x03\x04\x03\x04\x01\x02\x01", // 𨌻
+ 0x2833c: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x02\x02\x05\x01\x02", // 𨌼
+ 0x2833d: "\x01\x02\x05\x01\x01\x01\x02\x03\x01\x01\x02\x03\x01\x01\x02", // 𨌽
+ 0x2833e: "\x03\x01\x01\x02\x03\x01\x01\x02\x01\x02\x05\x01\x01\x01\x02", // 𨌾
+ 0x2833f: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x03\x04", // 𨌿
+ 0x28340: "\x01\x02\x05\x01\x01\x01\x02\x01\x05\x04\x01\x02\x01\x02\x02", // 𨍀
+ 0x28341: "\x03\x04\x03\x04\x03\x05\x03\x04\x01\x02\x05\x01\x01\x01\x02", // 𨍁
+ 0x28342: "\x03\x05\x03\x03\x03\x05\x03\x03\x01\x02\x05\x01\x01\x01\x02", // 𨍂
+ 0x28343: "\x05\x05\x04\x05\x05\x04\x01\x03\x01\x02\x05\x01\x01\x01\x02", // 𨍃
+ 0x28344: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 𨍄
+ 0x28345: "\x01\x02\x05\x01\x01\x01\x02\x02\x01\x02\x01\x02\x05\x05\x04", // 𨍅
+ 0x28346: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01", // 𨍆
+ 0x28347: "\x01\x02\x05\x01\x01\x01\x02\x04\x04\x05\x03\x05\x04\x02\x05\x01", // 𨍇
+ 0x28348: "\x01\x02\x05\x01\x01\x01\x02\x03\x04\x05\x02\x03\x04\x03\x05\x04", // 𨍈
+ 0x28349: "\x01\x02\x05\x01\x01\x01\x02\x03\x05\x03\x03\x04\x04\x05\x04\x04", // 𨍉
+ 0x2834a: "\x01\x02\x05\x01\x01\x01\x02\x03\x01\x02\x03\x04\x04\x03\x03\x04", // 𨍊
+ 0x2834b: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x02\x02\x05\x02\x05\x01", // 𨍋
+ 0x2834c: "\x01\x02\x05\x01\x01\x01\x02\x05\x01\x05\x01\x05\x02\x05\x01\x01", // 𨍌
+ 0x2834d: "\x01\x02\x05\x01\x01\x01\x02\x05\x01\x03\x04\x03\x01\x01\x03\x02", // 𨍍
+ 0x2834e: "\x05\x04\x05\x02\x03\x03\x01\x03\x04\x01\x02\x05\x01\x01\x01\x02", // 𨍎
+ 0x2834f: "\x01\x02\x05\x01\x01\x01\x02\x04\x01\x03\x01\x02\x02\x01\x05\x04", // 𨍏
+ 0x28350: "\x01\x02\x05\x01\x01\x01\x02\x05\x02\x01\x03\x04\x03\x05\x04\x01", // 𨍐
+ 0x28351: "\x01\x02\x05\x01\x01\x01\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 𨍑
+ 0x28352: "\x01\x02\x05\x01\x02\x05\x03\x01\x04\x01\x02\x05\x01\x01\x01\x02", // 𨍒
+ 0x28353: "\x01\x02\x05\x01\x01\x01\x02\x03\x04\x01\x02\x05\x01\x01\x01\x02", // 𨍓
+ 0x28354: "\x01\x02\x01\x05\x02\x03\x01\x02\x05\x01\x01\x01\x02\x05\x02\x02", // 𨍔
+ 0x28355: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 𨍕
+ 0x28356: "\x01\x02\x05\x01\x01\x01\x02\x03\x04\x03\x04\x02\x05\x01\x05\x02", // 𨍖
+ 0x28357: "\x04\x01\x03\x05\x02\x05\x03\x04\x01\x01\x02\x05\x01\x01\x01\x02", // 𨍗
+ 0x28358: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x02\x01\x01\x01\x05", // 𨍘
+ 0x28359: "\x01\x02\x05\x01\x01\x01\x02\x03\x02\x01\x02\x05\x01\x01\x01\x02", // 𨍙
+ 0x2835a: "\x01\x02\x05\x01\x01\x01\x02\x03\x04\x01\x05\x04\x01\x05\x04\x01", // 𨍚
+ 0x2835b: "\x01\x02\x05\x01\x01\x01\x02\x01\x01\x02\x01\x05\x05\x04\x01\x04", // 𨍛
+ 0x2835c: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x02\x01\x01\x01\x03\x04\x05", // 𨍜
+ 0x2835d: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x02\x01\x02\x05\x01\x01\x02", // 𨍝
+ 0x2835e: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x02\x02\x05\x01\x03\x04", // 𨍞
+ 0x2835f: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x02\x01\x02\x05\x01\x01", // 𨍟
+ 0x28360: "\x01\x02\x05\x01\x01\x01\x02\x03\x05\x02\x05\x01\x03\x05\x05\x03", // 𨍠
+ 0x28361: "\x01\x02\x05\x01\x01\x01\x02\x04\x01\x02\x05\x01\x01\x02\x03\x04", // 𨍡
+ 0x28362: "\x01\x02\x05\x01\x01\x01\x02\x04\x01\x03\x05\x03\x04\x02\x05\x01", // 𨍢
+ 0x28363: "\x01\x02\x05\x01\x01\x01\x02\x04\x03\x01\x03\x02\x05\x01\x01\x01", // 𨍣
+ 0x28364: "\x01\x02\x05\x01\x01\x01\x02\x04\x04\x05\x01\x02\x01\x02\x05\x01", // 𨍤
+ 0x28365: "\x01\x02\x05\x01\x01\x01\x02\x01\x03\x02\x05\x02\x02\x05\x03\x01", // 𨍥
+ 0x28366: "\x01\x02\x05\x01\x01\x01\x02\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 𨍦
+ 0x28367: "\x01\x02\x05\x01\x01\x01\x02\x03\x02\x05\x01\x01\x01\x01\x02\x01", // 𨍧
+ 0x28368: "\x01\x02\x05\x01\x01\x01\x02\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 𨍨
+ 0x28369: "\x01\x02\x05\x01\x01\x01\x02\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03", // 𨍩
+ 0x2836a: "\x01\x02\x05\x01\x01\x01\x02\x03\x03\x05\x01\x01\x05\x03\x05\x05\x04", // 𨍪
+ 0x2836b: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x02\x02\x01\x01\x02\x03\x04", // 𨍫
+ 0x2836c: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x02\x04\x03\x01\x02\x05\x01\x01", // 𨍬
+ 0x2836d: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 𨍭
+ 0x2836e: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𨍮
+ 0x2836f: "\x02\x05\x01\x01\x01\x02\x02\x01\x03\x04\x01\x02\x05\x01\x01\x01\x02", // 𨍯
+ 0x28370: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 𨍰
+ 0x28371: "\x01\x02\x05\x01\x01\x01\x02\x03\x01\x02\x02\x01\x01\x03\x05\x03\x04", // 𨍱
+ 0x28372: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x03\x05\x03\x03\x03\x04\x01", // 𨍲
+ 0x28373: "\x01\x02\x05\x01\x01\x01\x02\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02", // 𨍳
+ 0x28374: "\x01\x02\x05\x01\x01\x01\x02\x04\x01\x03\x05\x01\x01\x02\x02\x05\x01", // 𨍴
+ 0x28375: "\x01\x02\x05\x01\x01\x01\x02\x04\x04\x05\x02\x05\x01\x01\x04\x01\x03\x04", // 𨍵
+ 0x28376: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 𨍶
+ 0x28377: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x02\x01\x02\x02\x01\x01\x01", // 𨍷
+ 0x28378: "\x01\x02\x05\x01\x01\x01\x02\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 𨍸
+ 0x28379: "\x01\x02\x05\x01\x01\x01\x02\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 𨍹
+ 0x2837a: "\x01\x02\x05\x01\x01\x01\x02\x05\x01\x03\x04\x01\x02\x01\x02\x05\x04", // 𨍺
+ 0x2837b: "\x03\x04\x02\x05\x01\x05\x01\x03\x03\x05\x01\x02\x05\x01\x01\x01\x02", // 𨍻
+ 0x2837c: "\x01\x02\x05\x01\x01\x01\x02\x01\x05\x03\x05\x03\x05\x04\x01\x05\x02", // 𨍼
+ 0x2837d: "\x01\x02\x05\x01\x01\x01\x02\x04\x01\x03\x04\x05\x04\x03\x05\x03\x04", // 𨍽
+ 0x2837e: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x05\x04\x05\x02\x05\x01\x01", // 𨍾
+ 0x2837f: "\x01\x02\x05\x01\x01\x01\x02\x05\x01\x03\x03\x03\x02\x02\x01\x05\x04", // 𨍿
+ 0x28380: "\x01\x02\x05\x01\x01\x01\x02\x03\x02\x05\x01\x01\x01\x03\x04\x01\x02", // 𨎀
+ 0x28381: "\x01\x02\x05\x01\x01\x01\x02\x04\x05\x02\x05\x01\x01\x04\x01\x03\x04", // 𨎁
+ 0x28382: "\x01\x02\x05\x01\x01\x01\x02\x01\x03\x01\x01\x05\x03\x04\x02\x05\x01", // 𨎂
+ 0x28383: "\x01\x02\x05\x01\x01\x01\x02\x03\x04\x05\x04\x05\x04\x01\x05\x04\x01", // 𨎃
+ 0x28384: "\x01\x02\x05\x01\x01\x01\x02\x01\x03\x02\x05\x01\x02\x05\x02\x05\x01", // 𨎄
+ 0x28385: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01", // 𨎅
+ 0x28386: "\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03\x01\x02\x05\x01\x01\x01\x02", // 𨎆
+ 0x28387: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𨎇
+ 0x28388: "\x01\x02\x05\x01\x01\x01\x02\x01\x01\x03\x04\x01\x02\x01\x02\x05\x01", // 𨎈
+ 0x28389: "\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x05\x01\x01\x02\x01\x03\x04", // 𨎉
+ 0x2838a: "\x01\x02\x05\x01\x01\x01\x02\x04\x01\x03\x05\x02\x05\x01\x03\x05\x03\x04", // 𨎊
+ 0x2838b: "\x01\x02\x05\x01\x01\x01\x02\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x01", // 𨎋
+ 0x2838c: "\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04\x01\x02\x05\x01\x01\x01\x02", // 𨎌
+ 0x2838d: "\x01\x02\x05\x01\x01\x01\x02\x04\x01\x03\x05\x01\x01\x02\x04\x01\x03\x04", // 𨎍
+ 0x2838e: "\x01\x02\x05\x01\x01\x01\x02\x04\x01\x02\x05\x01\x05\x02\x01\x05\x02", // 𨎎
+ 0x2838f: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x01\x02\x02\x05\x02\x05\x01\x01", // 𨎏
+ 0x28390: "\x01\x02\x01\x03\x04\x01\x02\x01\x03\x05\x04\x01\x02\x05\x01\x01\x01\x02", // 𨎐
+ 0x28391: "\x01\x01\x03\x04\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x02", // 𨎑
+ 0x28392: "\x01\x02\x05\x01\x01\x01\x02\x03\x04\x03\x01\x02\x03\x04\x04\x05\x04\x04", // 𨎒
+ 0x28393: "\x01\x02\x05\x01\x01\x01\x02\x03\x01\x01\x02\x01\x02\x05\x01\x01\x01\x02", // 𨎓
+ 0x28394: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03", // 𨎔
+ 0x28395: "\x01\x02\x05\x01\x01\x01\x02\x01\x03\x03\x04\x01\x02\x05\x01\x05\x03\x04", // 𨎕
+ 0x28396: "\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x01\x01\x02\x05\x01\x01\x01\x02", // 𨎖
+ 0x28397: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x01\x03\x05\x03\x03\x03\x03\x03", // 𨎗
+ 0x28398: "\x01\x02\x05\x01\x01\x01\x02\x03\x04\x04\x03\x02\x05\x01\x01\x01\x03\x04", // 𨎘
+ 0x28399: "\x01\x02\x05\x01\x01\x01\x02\x04\x01\x02\x05\x01\x02\x05\x01\x03\x05\x04", // 𨎙
+ 0x2839a: "\x01\x02\x05\x01\x01\x01\x02\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 𨎚
+ 0x2839b: "\x01\x02\x05\x01\x01\x01\x02\x04\x04\x01\x05\x03\x04\x04\x01\x02\x03\x04", // 𨎛
+ 0x2839c: "\x01\x02\x05\x01\x01\x01\x02\x04\x04\x05\x01\x02\x01\x02\x05\x01\x02\x01", // 𨎜
+ 0x2839d: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01", // 𨎝
+ 0x2839e: "\x01\x02\x05\x01\x01\x01\x02\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04", // 𨎞
+ 0x2839f: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x02\x01\x03\x05\x04\x02\x05\x01", // 𨎟
+ 0x283a0: "\x02\x05\x01\x02\x01\x03\x05\x04\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02", // 𨎠
+ 0x283a1: "\x01\x02\x05\x01\x01\x01\x02\x04\x01\x05\x01\x03\x03\x02\x01\x05\x03\x04", // 𨎡
+ 0x283a2: "\x01\x02\x05\x01\x01\x01\x02\x05\x04\x02\x05\x01\x01\x02\x04\x05\x04\x04", // 𨎢
+ 0x283a3: "\x01\x02\x05\x01\x01\x01\x02\x04\x04\x05\x03\x04\x03\x05\x04\x02\x05\x01", // 𨎣
+ 0x283a4: "\x01\x02\x05\x01\x01\x01\x02\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 𨎤
+ 0x283a5: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x01\x04\x04\x05\x04\x04", // 𨎥
+ 0x283a6: "\x01\x02\x05\x01\x01\x01\x02\x03\x02\x05\x01\x01\x01\x01\x01\x01\x01\x01\x02", // 𨎦
+ 0x283a7: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x01\x02\x05\x01\x04\x03\x01\x03\x03\x03", // 𨎧
+ 0x283a8: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𨎨
+ 0x283a9: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 𨎩
+ 0x283aa: "\x01\x02\x05\x01\x01\x01\x02\x01\x03\x02\x05\x02\x02\x01\x03\x02\x05\x02\x02", // 𨎪
+ 0x283ab: "\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x01\x01", // 𨎫
+ 0x283ac: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 𨎬
+ 0x283ad: "\x01\x02\x05\x01\x01\x01\x02\x04\x01\x03\x05\x04\x03\x05\x04\x03\x05\x03\x04", // 𨎭
+ 0x283ae: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x02\x01\x02\x02\x01\x01\x01\x05\x04", // 𨎮
+ 0x283af: "\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x03\x01\x02\x05\x01\x01\x01\x02", // 𨎯
+ 0x283b0: "\x01\x02\x05\x01\x01\x01\x02\x03\x04\x01\x02\x05\x01\x05\x04\x01\x05\x04\x01", // 𨎰
+ 0x283b1: "\x01\x02\x05\x01\x01\x01\x02\x04\x01\x03\x05\x04\x03\x05\x04\x03\x05\x01\x05", // 𨎱
+ 0x283b2: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x02\x01\x02\x01\x03\x05\x04\x02\x05\x01", // 𨎲
+ 0x283b3: "\x01\x02\x05\x01\x01\x01\x02\x03\x01\x04\x03\x01\x04\x03\x05\x04\x01\x01\x01\x02", // 𨎳
+ 0x283b4: "\x01\x02\x05\x01\x01\x01\x02\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x01\x02\x01", // 𨎴
+ 0x283b5: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x01\x02\x02\x01\x01\x01\x01\x05\x03\x04", // 𨎵
+ 0x283b6: "\x01\x02\x05\x01\x01\x01\x02\x02\x01\x05\x03\x01\x05\x01\x03\x05\x03\x03\x03\x04", // 𨎶
+ 0x283b7: "\x01\x02\x05\x01\x01\x01\x02\x04\x01\x03\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 𨎷
+ 0x283b8: "\x01\x02\x05\x01\x01\x01\x02\x05\x04\x05\x02\x03\x03\x01\x03\x04\x01\x02\x03\x04", // 𨎸
+ 0x283b9: "\x01\x02\x05\x01\x01\x01\x02\x04\x01\x02\x05\x02\x05\x01\x01\x03\x01\x02\x03\x04", // 𨎹
+ 0x283ba: "\x01\x02\x05\x01\x01\x01\x02\x04\x01\x02\x05\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 𨎺
+ 0x283bb: "\x01\x02\x05\x01\x01\x01\x02\x03\x05\x01\x03\x03\x04\x04\x01\x01\x01\x02\x05\x01", // 𨎻
+ 0x283bc: "\x01\x02\x05\x01\x01\x01\x02\x01\x03\x03\x05\x01\x01\x01\x02\x05\x01\x01\x01\x02", // 𨎼
+ 0x283bd: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x02\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 𨎽
+ 0x283be: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𨎾
+ 0x283bf: "\x01\x02\x05\x01\x01\x01\x02\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x01", // 𨎿
+ 0x283c0: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x01\x02\x05\x02\x02\x01\x04\x05\x04\x04", // 𨏀
+ 0x283c1: "\x01\x02\x05\x01\x01\x01\x02\x04\x01\x05\x04\x02\x05\x01\x02\x01\x03\x01\x03\x04", // 𨏁
+ 0x283c2: "\x01\x02\x05\x01\x01\x01\x02\x04\x05\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 𨏂
+ 0x283c3: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x01\x01", // 𨏃
+ 0x283c4: "\x01\x02\x05\x01\x01\x01\x02\x01\x05\x05\x05\x01\x02\x01\x01\x02\x02\x01\x01\x01", // 𨏄
+ 0x283c5: "\x01\x02\x05\x01\x01\x01\x02\x04\x01\x03\x02\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𨏅
+ 0x283c6: "\x01\x02\x05\x01\x01\x01\x02\x02\x04\x03\x01\x03\x05\x01\x02\x05\x01\x01\x01\x02", // 𨏆
+ 0x283c7: "\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x01\x03\x01\x02\x05\x01\x01\x01\x02", // 𨏇
+ 0x283c8: "\x01\x02\x05\x01\x01\x01\x02\x03\x04\x04\x03\x01\x02\x01\x05\x01\x01\x04\x05\x04\x04", // 𨏈
+ 0x283c9: "\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x03\x04\x01\x02\x05\x01\x01\x01\x02", // 𨏉
+ 0x283ca: "\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01\x01\x02\x05\x01\x01\x01\x02", // 𨏊
+ 0x283cb: "\x01\x02\x05\x01\x01\x01\x02\x05\x05\x05\x03\x02\x01\x05\x01\x01\x01\x02\x03\x04", // 𨏋
+ 0x283cc: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x04\x04\x04\x04", // 𨏌
+ 0x283cd: "\x01\x02\x05\x01\x01\x01\x02\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x01\x02\x03\x04", // 𨏍
+ 0x283ce: "\x01\x02\x05\x01\x01\x01\x02\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x01\x02", // 𨏎
+ 0x283cf: "\x01\x02\x05\x01\x01\x01\x02\x04\x03\x03\x04\x04\x03\x03\x04\x03\x05\x04\x01\x05\x02", // 𨏏
+ 0x283d0: "\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x01\x03\x04\x01\x02\x05\x01\x01\x01\x02", // 𨏐
+ 0x283d1: "\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02\x03\x03\x01\x02\x02\x05\x01\x01\x01\x03\x04", // 𨏑
+ 0x283d2: "\x01\x02\x05\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01", // 𨏒
+ 0x283d3: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 𨏓
+ 0x283d4: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𨏔
+ 0x283d5: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x02\x03\x05\x04\x01\x01\x01\x02\x04\x05\x04", // 𨏕
+ 0x283d6: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x02\x01\x05\x03\x04\x01\x05\x03\x04", // 𨏖
+ 0x283d7: "\x01\x02\x05\x01\x01\x01\x02\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01", // 𨏗
+ 0x283d8: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01\x01\x03\x04", // 𨏘
+ 0x283d9: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x02\x02\x01\x01\x02\x01\x02\x05\x01\x03\x05\x03\x04", // 𨏙
+ 0x283da: "\x01\x02\x05\x01\x01\x01\x02\x03\x04\x01\x02\x05\x01\x01\x02\x02\x01\x02\x05\x01\x01\x02", // 𨏚
+ 0x283db: "\x01\x02\x05\x01\x01\x01\x02\x04\x01\x05\x04\x05\x04\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 𨏛
+ 0x283dc: "\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x03\x01\x02\x01\x01\x02\x05\x01\x01\x01\x02", // 𨏜
+ 0x283dd: "\x01\x02\x05\x01\x01\x01\x02\x03\x04\x04\x03\x05\x01\x03\x01\x05\x03\x05\x03\x05\x05\x04", // 𨏝
+ 0x283de: "\x02\x01\x02\x01\x02\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04\x01\x02\x05\x01\x01\x01\x02", // 𨏞
+ 0x283df: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x02\x05\x01\x02\x01\x01\x02\x05\x01\x01\x01\x02", // 𨏟
+ 0x283e0: "\x01\x02\x05\x01\x01\x01\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01\x01\x01", // 𨏠
+ 0x283e1: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x01\x04\x05\x02\x05\x01\x02\x01\x05\x04\x02\x01\x03\x04", // 𨏡
+ 0x283e2: "\x01\x02\x05\x01\x01\x01\x02\x04\x03\x01\x01\x02\x01\x03\x01\x02\x03\x04\x01\x05\x01\x05\x03\x04", // 𨏢
+ 0x283e3: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x01\x02\x04\x01\x05\x04\x03\x05\x04\x01\x03\x01\x03\x04", // 𨏣
+ 0x283e4: "\x01\x02\x05\x01\x01\x01\x02\x03\x04\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𨏤
+ 0x283e5: "\x01\x02\x05\x01\x01\x01\x02\x04\x04\x05\x01\x01\x01\x02\x02\x05\x02\x02\x01\x04\x05\x04\x04", // 𨏥
+ 0x283e6: "\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𨏦
+ 0x283e7: "\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01\x01\x02\x05\x01\x01\x01\x02", // 𨏧
+ 0x283e8: "\x01\x02\x05\x01\x01\x01\x02\x01\x04\x05\x02\x04\x04\x04\x04\x04\x03\x01\x02\x02\x04\x03\x01", // 𨏨
+ 0x283e9: "\x04\x01\x05\x02\x05\x01\x03\x05\x04\x01\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04\x03\x05\x04", // 𨏩
+ 0x283ea: "\x01\x02\x05\x01\x01\x01\x02\x03\x04\x03\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 𨏪
+ 0x283eb: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x02\x04\x04\x01\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 𨏫
+ 0x283ec: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x02\x05\x01\x01\x01\x02", // 𨏬
+ 0x283ed: "\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 𨏭
+ 0x283ee: "\x03\x02\x01\x01\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x04\x01\x02\x05\x01\x01\x01\x02", // 𨏮
+ 0x283ef: "\x04\x01\x01\x02\x05\x01\x01\x01\x02\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x02\x05\x01", // 𨏯
+ 0x283f0: "\x01\x02\x05\x01\x01\x01\x02\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03\x01\x02\x05\x01\x01\x01\x02", // 𨏰
+ 0x283f1: "\x01\x02\x05\x01\x01\x01\x02\x05\x02\x03\x04\x04\x03\x01\x02\x01\x05\x01\x01\x04\x05\x04\x04", // 𨏱
+ 0x283f2: "\x01\x02\x05\x01\x01\x01\x02\x05\x01\x03\x01\x02\x02\x01\x05\x03\x04\x01\x02\x05\x01\x01\x01\x02", // 𨏲
+ 0x283f3: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x03\x04\x02\x05\x01", // 𨏳
+ 0x283f4: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01", // 𨏴
+ 0x283f5: "\x01\x02\x05\x01\x01\x01\x02\x03\x04\x04\x03\x05\x01\x03\x02\x01\x02\x01\x03\x05\x05\x01\x05\x03\x05\x04", // 𨏵
+ 0x283f6: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x01\x02\x05\x01\x01\x01\x02", // 𨏶
+ 0x283f7: "\x01\x02\x05\x01\x01\x01\x02\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04", // 𨏷
+ 0x283f8: "\x01\x02\x05\x01\x01\x01\x02\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 𨏸
+ 0x283f9: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𨏹
+ 0x283fa: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x02\x01\x05\x03\x04\x01\x05\x03\x04\x03\x03\x05\x04\x01\x04", // 𨏺
+ 0x283fb: "\x01\x02\x05\x01\x01\x01\x02\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𨏻
+ 0x283fc: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x02\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 𨏼
+ 0x283fd: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x04\x01\x02\x05\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 𨏽
+ 0x283fe: "\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x03\x04\x04\x01\x02\x05\x01\x01\x01\x02", // 𨏾
+ 0x283ff: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x02", // 𨏿
+ 0x28400: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 𨐀
+ 0x28401: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x04\x05\x02\x05\x01\x01\x01", // 𨐁
+ 0x28402: "\x01\x02\x05\x01\x01\x01\x02\x03\x04\x04\x03\x01\x03\x03\x02\x01\x01\x03\x02\x05\x01\x01\x05\x01\x01\x03\x05\x03\x05\x04", // 𨐂
+ 0x28403: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x01\x01\x01\x02", // 𨐃
+ 0x28404: "\x01\x02\x05\x01\x01\x01\x02\x03\x04\x04\x03\x05\x04\x02\x05\x05\x04\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x02\x01\x02\x05\x03\x04\x02\x05\x01\x02\x01", // 𨐄
+ 0x28405: "\x01\x05\x01\x02\x03\x05\x05\x04", // 𨐅
+ 0x28406: "\x01\x05\x01\x02\x01\x01\x03\x02", // 𨐆
+ 0x28407: "\x01\x05\x01\x02\x01\x03\x05\x03\x04", // 𨐇
+ 0x28408: "\x01\x05\x01\x02\x02\x04\x03\x01\x03\x05", // 𨐈
+ 0x28409: "\x01\x05\x01\x02\x01\x02\x02\x01\x02\x02\x01\x01\x01\x05\x04", // 𨐉
+ 0x2840a: "\x01\x05\x01\x02\x04\x04\x05\x01\x01\x01\x02\x02\x05\x02\x02\x01\x04\x05\x04\x04", // 𨐊
+ 0x2840b: "\x04\x01\x04\x03\x01\x01\x02", // 𨐋
+ 0x2840c: "\x04\x01\x04\x03\x01\x01\x01\x02", // 𨐌
+ 0x2840d: "\x03\x03\x03\x04\x01\x04\x03\x01\x01\x02", // 𨐍
+ 0x2840e: "\x04\x01\x04\x03\x01\x01\x03\x05\x03\x01", // 𨐎
+ 0x2840f: "\x04\x01\x04\x03\x01\x01\x03\x03\x02\x01\x05", // 𨐏
+ 0x28410: "\x04\x01\x04\x03\x01\x04\x03\x01\x01\x03\x05", // 𨐐
+ 0x28411: "\x04\x01\x04\x03\x01\x01\x03\x05\x04\x03\x05", // 𨐑
+ 0x28412: "\x01\x02\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 𨐒
+ 0x28413: "\x05\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 𨐓
+ 0x28414: "\x03\x05\x04\x03\x05\x04\x04\x01\x04\x03\x01\x01\x02", // 𨐔
+ 0x28415: "\x05\x01\x01\x05\x01\x01\x04\x01\x04\x03\x01\x01\x02", // 𨐕
+ 0x28416: "\x03\x04\x01\x02\x03\x04\x04\x01\x04\x03\x01\x01\x02", // 𨐖
+ 0x28417: "\x04\x01\x04\x03\x01\x01\x03\x02\x05\x01\x02\x05\x01", // 𨐗
+ 0x28418: "\x03\x04\x01\x02\x03\x05\x04\x04\x01\x04\x03\x01\x01\x02", // 𨐘
+ 0x28419: "\x03\x03\x05\x01\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 𨐙
+ 0x2841a: "\x05\x01\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 𨐚
+ 0x2841b: "\x05\x01\x03\x02\x05\x03\x04\x04\x01\x04\x03\x01\x01\x02", // 𨐛
+ 0x2841c: "\x04\x01\x04\x03\x01\x01\x03\x03\x02\x05\x01\x01\x05\x01\x02", // 𨐜
+ 0x2841d: "\x04\x04\x05\x02\x05\x01\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 𨐝
+ 0x2841e: "\x05\x03\x01\x01\x02\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 𨐞
+ 0x2841f: "\x04\x01\x04\x03\x01\x01\x03\x01\x02\x01\x02\x02\x02\x05\x01", // 𨐟
+ 0x28420: "\x05\x04\x02\x05\x01\x01\x02\x03\x04\x04\x01\x04\x03\x01\x01\x02", // 𨐠
+ 0x28421: "\x04\x01\x04\x03\x01\x01\x03\x01\x02\x01\x02\x01\x02\x02\x05\x01", // 𨐡
+ 0x28422: "\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x01\x03\x02", // 𨐢
+ 0x28423: "\x04\x01\x04\x03\x01\x01\x03\x01\x05\x01\x05\x01\x02\x03\x04", // 𨐣
+ 0x28424: "\x04\x01\x04\x03\x01\x01\x03\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 𨐤
+ 0x28425: "\x04\x01\x04\x03\x01\x01\x03\x01\x02\x02\x01\x02\x05\x01\x01\x02", // 𨐥
+ 0x28426: "\x04\x01\x04\x03\x01\x01\x03\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𨐦
+ 0x28427: "\x05\x01\x03\x02\x05\x01\x01\x02\x01\x04\x01\x04\x03\x01\x01\x02", // 𨐧
+ 0x28428: "\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x01\x01\x03\x02", // 𨐨
+ 0x28429: "\x04\x01\x04\x03\x01\x01\x03\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 𨐩
+ 0x2842a: "\x04\x01\x04\x03\x01\x01\x03\x05\x01\x05\x04\x01\x05\x01\x05\x04\x01", // 𨐪
+ 0x2842b: "\x05\x01\x03\x04\x01\x01\x01\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 𨐫
+ 0x2842c: "\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x01\x02\x01\x04", // 𨐬
+ 0x2842d: "\x04\x01\x04\x03\x01\x01\x03\x05\x03\x01\x04\x04\x05\x04\x03\x03\x04", // 𨐭
+ 0x2842e: "\x04\x01\x04\x03\x01\x01\x03\x01\x02\x02\x04\x01\x05\x03\x03\x04", // 𨐮
+ 0x2842f: "\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x03\x04\x05\x03", // 𨐯
+ 0x28430: "\x04\x01\x04\x03\x01\x01\x03\x03\x04\x05\x03\x04\x01\x04\x03\x01\x01\x02", // 𨐰
+ 0x28431: "\x04\x01\x04\x03\x01\x01\x03\x03\x05\x04\x01\x04\x01\x04\x03\x01\x01\x02", // 𨐱
+ 0x28432: "\x03\x04\x04\x03\x05\x04\x02\x05\x01\x02\x02\x04\x01\x04\x03\x01\x01\x02", // 𨐲
+ 0x28433: "\x04\x05\x01\x03\x02\x05\x01\x03\x04\x05\x03\x04\x01\x04\x03\x01\x01\x02", // 𨐳
+ 0x28434: "\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x02\x05\x01\x01\x02", // 𨐴
+ 0x28435: "\x04\x01\x04\x03\x01\x01\x03\x04\x05\x04\x03\x04\x04\x01\x04\x03\x01\x01\x02", // 𨐵
+ 0x28436: "\x04\x01\x04\x03\x01\x01\x03\x05\x01\x01\x01\x02\x01\x02\x05\x01\x02\x01\x01", // 𨐶
+ 0x28437: "\x04\x01\x04\x03\x01\x01\x03\x04\x01\x01\x01\x02\x05\x01\x03\x01\x02\x01\x01", // 𨐷
+ 0x28438: "\x04\x01\x04\x03\x01\x01\x03\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 𨐸
+ 0x28439: "\x05\x04\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x03\x05\x04\x04\x03\x03\x04", // 𨐹
+ 0x2843a: "\x04\x01\x04\x03\x01\x01\x02\x02\x05\x01\x02\x02\x01\x01\x03\x01\x01\x05\x03\x04", // 𨐺
+ 0x2843b: "\x04\x01\x04\x03\x01\x01\x02\x03\x04\x03\x02\x01\x02\x01\x01\x03\x05\x03\x03\x03\x04", // 𨐻
+ 0x2843c: "\x04\x01\x04\x03\x01\x01\x02\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x02\x05\x01", // 𨐼
+ 0x2843d: "\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x04\x04\x05\x02\x05\x01\x05\x01", // 𨐽
+ 0x2843e: "\x05\x04\x01\x04\x03\x01\x01\x03\x04\x01\x01\x01\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 𨐾
+ 0x2843f: "\x04\x01\x04\x03\x01\x01\x03\x03\x03\x01\x02\x03\x03\x01\x02\x02\x05\x01\x01\x01\x03\x04", // 𨐿
+ 0x28440: "\x01\x02\x02\x05\x01\x04\x01\x04\x03\x01\x01\x03\x01\x02\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 𨑀
+ 0x28441: "\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x01\x03\x04\x04\x01\x04\x03\x01\x01\x02\x03\x04\x03\x03\x01\x02", // 𨑁
+ 0x28442: "\x04\x01\x04\x03\x01\x01\x02\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x02\x05\x01", // 𨑂
+ 0x28443: "\x01\x03\x01\x01\x02\x05\x04", // 𨑃
+ 0x28444: "\x01\x03\x01\x01\x02\x05\x03\x04", // 𨑄
+ 0x28445: "\x01\x03\x01\x01\x05\x03\x04\x03\x01\x01\x02\x05\x02", // 𨑅
+ 0x28446: "\x05\x02\x03\x05\x02\x02\x01\x03\x01\x01\x05\x03\x04", // 𨑆
+ 0x28447: "\x01\x02\x05\x02\x02\x01\x01\x03\x01\x01\x05\x03\x04", // 𨑇
+ 0x28448: "\x04\x05\x03\x05\x01\x03\x01\x01\x05\x03\x04\x01\x02\x04", // 𨑈
+ 0x28449: "\x01\x03\x01\x01\x05\x03\x04\x02\x05\x01\x02\x01\x04\x01\x02\x01", // 𨑉
+ 0x2844a: "\x03\x05\x04\x03\x05\x04\x02\x05\x01\x02\x02\x01\x01\x03\x01\x01\x05\x03\x04", // 𨑊
+ 0x2844b: "\x01\x02\x03\x04\x03\x02\x05\x03\x04\x01\x01\x02\x03\x04\x01\x03\x01\x01\x05\x03\x04", // 𨑋
+ 0x2844c: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x01\x03\x01\x01\x05\x03\x04", // 𨑌
+ 0x2844d: "\x03\x05\x04\x05\x04", // 𨑍
+ 0x2844e: "\x02\x05\x04\x05\x04", // 𨑎
+ 0x2844f: "\x05\x02\x04\x05\x04", // 𨑏
+ 0x28450: "\x05\x05\x04\x05\x04", // 𨑐
+ 0x28451: "\x04\x01\x05\x04\x05\x04", // 𨑑
+ 0x28452: "\x01\x02\x01\x04\x05\x04", // 𨑒
+ 0x28453: "\x05\x01\x05\x04\x05\x04", // 𨑓
+ 0x28454: "\x03\x03\x03\x02\x01\x03\x04\x05\x01\x05", // 𨑔
+ 0x28455: "\x02\x05\x01\x04\x05\x04", // 𨑕
+ 0x28456: "\x05\x01\x05\x04\x05\x04", // 𨑖
+ 0x28457: "\x02\x01\x01\x04\x05\x04", // 𨑗
+ 0x28458: "\x01\x03\x05\x04\x05\x04", // 𨑘
+ 0x28459: "\x03\x05\x04\x04\x05\x04", // 𨑙
+ 0x2845a: "\x03\x05\x04\x04\x05\x04", // 𨑚
+ 0x2845b: "\x03\x03\x03\x02\x01\x03\x04\x01\x01\x05", // 𨑛
+ 0x2845c: "\x01\x02\x04\x04\x05\x04", // 𨑜
+ 0x2845d: "\x02\x03\x04\x04\x05\x04", // 𨑝
+ 0x2845e: "\x03\x01\x05\x04\x05\x04", // 𨑞
+ 0x2845f: "\x03\x04\x05\x04\x05\x04", // 𨑟
+ 0x28460: "\x03\x03\x02\x04\x05\x04", // 𨑠
+ 0x28461: "\x03\x03\x03\x02\x01\x03\x04\x01\x02\x01", // 𨑡
+ 0x28462: "\x03\x03\x03\x02\x01\x03\x04\x03\x04\x03\x04", // 𨑢
+ 0x28463: "\x05\x01\x03\x04\x04\x05\x04", // 𨑣
+ 0x28464: "\x01\x02\x05\x04\x04\x05\x04", // 𨑤
+ 0x28465: "\x03\x05\x03\x03\x04\x05\x04", // 𨑥
+ 0x28466: "\x05\x04\x05\x02\x04\x05\x04", // 𨑦
+ 0x28467: "\x02\x05\x03\x04\x04\x05\x04", // 𨑧
+ 0x28468: "\x02\x05\x01\x01\x04\x05\x04", // 𨑨
+ 0x28469: "\x05\x01\x05\x02\x04\x05\x04", // 𨑩
+ 0x2846a: "\x03\x04\x05\x04\x04\x05\x04", // 𨑪
+ 0x2846b: "\x01\x03\x05\x04\x04\x05\x04", // 𨑫
+ 0x2846c: "\x01\x02\x02\x01\x04\x05\x04", // 𨑬
+ 0x2846d: "\x02\x01\x02\x01\x04\x05\x04", // 𨑭
+ 0x2846e: "\x03\x02\x01\x02\x04\x05\x04", // 𨑮
+ 0x2846f: "\x04\x03\x03\x04\x04\x05\x04", // 𨑯
+ 0x28470: "\x01\x03\x05\x04\x04\x05\x04", // 𨑰
+ 0x28471: "\x05\x04\x05\x04\x04\x05\x04", // 𨑱
+ 0x28472: "\x03\x01\x01\x02\x04\x05\x04", // 𨑲
+ 0x28473: "\x03\x01\x02\x01\x04\x05\x04", // 𨑳
+ 0x28474: "\x03\x01\x01\x02\x04\x05\x04", // 𨑴
+ 0x28475: "\x02\x01\x01\x05\x04\x05\x04", // 𨑵
+ 0x28476: "\x03\x01\x02\x01\x04\x05\x04", // 𨑶
+ 0x28477: "\x03\x05\x01\x02\x04\x05\x04", // 𨑷
+ 0x28478: "\x03\x04\x03\x02\x04\x05\x04", // 𨑸
+ 0x28479: "\x03\x04\x03\x04\x04\x05\x04", // 𨑹
+ 0x2847a: "\x03\x01\x01\x05\x04\x05\x04", // 𨑺
+ 0x2847b: "\x04\x05\x03\x05\x04\x05\x04", // 𨑻
+ 0x2847c: "\x01\x05\x05\x04\x04\x05\x04", // 𨑼
+ 0x2847d: "\x05\x01\x01\x02\x04\x05\x04", // 𨑽
+ 0x2847e: "\x02\x05\x03\x04\x04\x05\x04", // 𨑾
+ 0x2847f: "\x01\x02\x05\x02\x04\x05\x04", // 𨑿
+ 0x28480: "\x05\x03\x05\x03\x04\x05\x04", // 𨒀
+ 0x28481: "\x03\x05\x03\x05\x04\x05\x04", // 𨒁
+ 0x28482: "\x03\x02\x01\x02\x01\x04\x05\x04", // 𨒂
+ 0x28483: "\x04\x03\x01\x01\x02\x04\x05\x04", // 𨒃
+ 0x28484: "\x03\x04\x02\x05\x01\x04\x05\x04", // 𨒄
+ 0x28485: "\x02\x05\x01\x03\x04\x04\x05\x04", // 𨒅
+ 0x28486: "\x04\x04\x05\x03\x05\x04\x05\x04", // 𨒆
+ 0x28487: "\x02\x05\x01\x01\x02\x04\x05\x04", // 𨒇
+ 0x28488: "\x05\x01\x03\x01\x01\x04\x05\x04", // 𨒈
+ 0x28489: "\x03\x05\x02\x03\x04\x05\x04", // 𨒉
+ 0x2848a: "\x02\x05\x03\x04\x01\x04\x05\x04", // 𨒊
+ 0x2848b: "\x01\x05\x05\x03\x04\x04\x05\x04", // 𨒋
+ 0x2848c: "\x01\x02\x01\x02\x01\x04\x05\x04", // 𨒌
+ 0x2848d: "\x01\x02\x01\x03\x02\x04\x05\x04", // 𨒍
+ 0x2848e: "\x01\x05\x01\x01\x04\x05\x04", // 𨒎
+ 0x2848f: "\x01\x03\x04\x04\x03\x04\x05\x04", // 𨒏
+ 0x28490: "\x01\x03\x02\x05\x01\x04\x05\x04", // 𨒐
+ 0x28491: "\x01\x05\x01\x05\x04\x05\x04", // 𨒑
+ 0x28492: "\x01\x05\x03\x01\x02\x04\x05\x04", // 𨒒
+ 0x28493: "\x05\x02\x01\x02\x04\x04\x05\x04", // 𨒓
+ 0x28494: "\x03\x01\x01\x03\x04\x04\x05\x04", // 𨒔
+ 0x28495: "\x03\x02\x01\x02\x04\x04\x05\x04", // 𨒕
+ 0x28496: "\x03\x05\x03\x05\x02\x04\x05\x04", // 𨒖
+ 0x28497: "\x03\x05\x01\x01\x02\x04\x05\x04", // 𨒗
+ 0x28498: "\x01\x02\x05\x02\x03\x04\x05\x04", // 𨒘
+ 0x28499: "\x01\x03\x02\x05\x01\x04\x05\x04", // 𨒙
+ 0x2849a: "\x02\x05\x01\x01\x01\x04\x05\x04", // 𨒚
+ 0x2849b: "\x03\x04\x02\x03\x04\x04\x05\x04", // 𨒛
+ 0x2849c: "\x04\x05\x04\x03\x04\x04\x05\x04", // 𨒜
+ 0x2849d: "\x05\x01\x02\x05\x02\x04\x05\x04", // 𨒝
+ 0x2849e: "\x05\x02\x02\x05\x02\x04\x05\x04", // 𨒞
+ 0x2849f: "\x03\x05\x04\x04\x04\x04\x05\x04", // 𨒟
+ 0x284a0: "\x03\x03\x03\x02\x01\x02\x01\x02\x05\x02\x02\x03\x04", // 𨒠
+ 0x284a1: "\x03\x05\x02\x05\x01\x04\x05\x04", // 𨒡
+ 0x284a2: "\x05\x03\x02\x03\x04\x04\x05\x04", // 𨒢
+ 0x284a3: "\x03\x01\x05\x02\x01\x04\x05\x04", // 𨒣
+ 0x284a4: "\x02\x01\x02\x01\x03\x05\x04\x05\x04", // 𨒤
+ 0x284a5: "\x05\x05\x04\x03\x05\x04\x04\x05\x04", // 𨒥
+ 0x284a6: "\x03\x05\x01\x05\x02\x04\x05\x04", // 𨒦
+ 0x284a7: "\x02\x05\x01\x01\x05\x03\x04\x05\x04", // 𨒧
+ 0x284a8: "\x04\x01\x05\x03\x03\x04\x04\x05\x04", // 𨒨
+ 0x284a9: "\x01\x03\x02\x05\x02\x02\x04\x05\x04", // 𨒩
+ 0x284aa: "\x01\x02\x05\x02\x03\x04\x04\x05\x04", // 𨒪
+ 0x284ab: "\x04\x03\x01\x01\x01\x02\x04\x05\x04", // 𨒫
+ 0x284ac: "\x01\x05\x04\x01\x02\x01\x04\x05\x04", // 𨒬
+ 0x284ad: "\x01\x03\x04\x03\x03\x04\x04\x05\x04", // 𨒭
+ 0x284ae: "\x01\x01\x03\x05\x03\x04\x04\x05\x04", // 𨒮
+ 0x284af: "\x05\x02\x03\x05\x02\x05\x04\x05\x04", // 𨒯
+ 0x284b0: "\x05\x05\x05\x05\x02\x01\x04\x05\x04", // 𨒰
+ 0x284b1: "\x01\x02\x02\x01\x03\x04\x04\x05\x04", // 𨒱
+ 0x284b2: "\x03\x01\x01\x02\x03\x04\x04\x05\x04", // 𨒲
+ 0x284b3: "\x04\x01\x04\x03\x01\x02\x04\x05\x04", // 𨒳
+ 0x284b4: "\x05\x04\x05\x04\x05\x04\x04\x05\x04", // 𨒴
+ 0x284b5: "\x02\x05\x05\x02\x05\x04\x05\x04", // 𨒵
+ 0x284b6: "\x03\x05\x05\x02\x01\x05\x04\x05\x04", // 𨒶
+ 0x284b7: "\x02\x05\x01\x02\x01\x04\x04\x05\x04", // 𨒷
+ 0x284b8: "\x01\x03\x02\x05\x02\x01\x04\x05\x04", // 𨒸
+ 0x284b9: "\x01\x03\x02\x05\x01\x01\x04\x05\x04", // 𨒹
+ 0x284ba: "\x02\x04\x03\x01\x03\x05\x04\x05\x04", // 𨒺
+ 0x284bb: "\x04\x05\x04\x01\x02\x04\x04\x05\x04", // 𨒻
+ 0x284bc: "\x03\x03\x03\x02\x01\x03\x04\x05\x01\x01\x05\x03\x04", // 𨒼
+ 0x284bd: "\x05\x02\x03\x05\x02\x02\x04\x05\x04", // 𨒽
+ 0x284be: "\x04\x03\x01\x02\x05\x02\x04\x05\x04", // 𨒾
+ 0x284bf: "\x01\x02\x05\x02\x02\x01\x04\x05\x04", // 𨒿
+ 0x284c0: "\x04\x01\x03\x03\x01\x02\x04\x05\x04", // 𨓀
+ 0x284c1: "\x05\x05\x04\x05\x05\x04\x04\x05\x04", // 𨓁
+ 0x284c2: "\x02\x05\x02\x01\x05\x01\x04\x05\x04", // 𨓂
+ 0x284c3: "\x01\x05\x04\x04\x04\x04\x04\x05\x04", // 𨓃
+ 0x284c4: "\x01\x02\x01\x02\x01\x02\x04\x05\x04", // 𨓄
+ 0x284c5: "\x03\x02\x05\x01\x01\x03\x05\x04\x05\x04", // 𨓅
+ 0x284c6: "\x02\x05\x01\x01\x03\x05\x04\x04\x05\x04", // 𨓆
+ 0x284c7: "\x03\x04\x01\x03\x02\x05\x02\x04\x05\x04", // 𨓇
+ 0x284c8: "\x03\x05\x01\x05\x02\x05\x01\x04\x05\x04", // 𨓈
+ 0x284c9: "\x03\x02\x05\x01\x01\x01\x03\x04\x05\x04", // 𨓉
+ 0x284ca: "\x01\x02\x02\x01\x01\x01\x05\x04\x05\x04", // 𨓊
+ 0x284cb: "\x04\x01\x05\x04\x01\x03\x02\x04\x05\x04", // 𨓋
+ 0x284cc: "\x05\x05\x05\x04\x03\x03\x04\x04\x05\x04", // 𨓌
+ 0x284cd: "\x04\x01\x03\x03\x01\x01\x02\x04\x05\x04", // 𨓍
+ 0x284ce: "\x02\x05\x03\x04\x05\x02\x01\x04\x05\x04", // 𨓎
+ 0x284cf: "\x02\x05\x02\x01\x01\x02\x01\x04\x05\x04", // 𨓏
+ 0x284d0: "\x02\x05\x01\x03\x02\x05\x01\x04\x05\x04", // 𨓐
+ 0x284d1: "\x02\x01\x01\x03\x05\x05\x02\x04\x05\x04", // 𨓑
+ 0x284d2: "\x02\x05\x02\x03\x01\x02\x01\x04\x05\x04", // 𨓒
+ 0x284d3: "\x01\x02\x01\x04\x01\x05\x03\x04\x05\x04", // 𨓓
+ 0x284d4: "\x05\x04\x01\x03\x05\x01\x01\x04\x05\x04", // 𨓔
+ 0x284d5: "\x03\x02\x03\x01\x02\x01\x01\x04\x05\x04", // 𨓕
+ 0x284d6: "\x02\x01\x01\x01\x05\x01\x05\x04\x05\x04", // 𨓖
+ 0x284d7: "\x02\x01\x02\x05\x01\x01\x01\x04\x05\x04", // 𨓗
+ 0x284d8: "\x02\x01\x02\x05\x01\x02\x02\x04\x05\x04", // 𨓘
+ 0x284d9: "\x02\x05\x01\x01\x01\x03\x02\x04\x05\x04", // 𨓙
+ 0x284da: "\x04\x03\x02\x05\x01\x03\x05\x04\x05\x04", // 𨓚
+ 0x284db: "\x01\x05\x02\x05\x01\x01\x02\x04\x05\x04", // 𨓛
+ 0x284dc: "\x03\x05\x02\x05\x01\x03\x05\x04\x05\x04", // 𨓜
+ 0x284dd: "\x03\x05\x04\x05\x02\x05\x02\x04\x05\x04", // 𨓝
+ 0x284de: "\x04\x01\x05\x04\x03\x02\x05\x04\x05\x04", // 𨓞
+ 0x284df: "\x05\x01\x02\x02\x01\x03\x04\x04\x05\x04", // 𨓟
+ 0x284e0: "\x05\x01\x03\x01\x02\x05\x02\x04\x05\x04", // 𨓠
+ 0x284e1: "\x01\x01\x02\x01\x01\x03\x02\x04\x05\x04", // 𨓡
+ 0x284e2: "\x03\x03\x01\x02\x04\x05\x04\x01\x03\x05", // 𨓢
+ 0x284e3: "\x01\x02\x03\x04\x01\x02\x04\x04\x05\x04", // 𨓣
+ 0x284e4: "\x02\x05\x01\x01\x03\x05\x04\x04\x05\x04", // 𨓤
+ 0x284e5: "\x05\x04\x02\x05\x01\x02\x01\x04\x05\x04", // 𨓥
+ 0x284e6: "\x02\x05\x01\x01\x02\x01\x01\x04\x05\x04", // 𨓦
+ 0x284e7: "\x03\x05\x04\x02\x01\x02\x01\x04\x05\x04", // 𨓧
+ 0x284e8: "\x03\x05\x03\x05\x01\x01\x02\x04\x05\x04", // 𨓨
+ 0x284e9: "\x04\x01\x03\x04\x03\x03\x04\x04\x05\x04", // 𨓩
+ 0x284ea: "\x05\x01\x03\x02\x05\x03\x04\x04\x05\x04", // 𨓪
+ 0x284eb: "\x04\x01\x05\x04\x01\x02\x03\x04\x04\x05\x04", // 𨓫
+ 0x284ec: "\x02\x05\x03\x04\x02\x05\x01\x01\x04\x05\x04", // 𨓬
+ 0x284ed: "\x01\x02\x02\x01\x01\x01\x05\x04\x04\x05\x04", // 𨓭
+ 0x284ee: "\x03\x04\x04\x03\x03\x01\x02\x01\x04\x05\x04", // 𨓮
+ 0x284ef: "\x03\x01\x02\x01\x05\x05\x02\x01\x02\x04\x05\x04", // 𨓯
+ 0x284f0: "\x01\x05\x01\x01\x02\x01\x03\x04\x04\x05\x04", // 𨓰
+ 0x284f1: "\x03\x05\x01\x02\x01\x01\x02\x01\x04\x05\x04", // 𨓱
+ 0x284f2: "\x03\x02\x02\x05\x01\x03\x02\x05\x04\x05\x04", // 𨓲
+ 0x284f3: "\x01\x02\x03\x04\x02\x05\x01\x01\x04\x05\x04", // 𨓳
+ 0x284f4: "\x03\x01\x01\x02\x01\x02\x01\x05\x02\x04\x05\x04", // 𨓴
+ 0x284f5: "\x03\x02\x04\x03\x01\x01\x03\x04\x04\x05\x04", // 𨓵
+ 0x284f6: "\x03\x03\x03\x02\x01\x03\x04\x05\x01\x01\x01\x04\x03\x03\x04", // 𨓶
+ 0x284f7: "\x01\x05\x05\x05\x01\x01\x02\x01\x04\x05\x04", // 𨓷
+ 0x284f8: "\x01\x02\x03\x04\x03\x05\x01\x01\x02\x04\x05\x04", // 𨓸
+ 0x284f9: "\x02\x05\x02\x04\x01\x01\x02\x01\x04\x05\x04", // 𨓹
+ 0x284fa: "\x02\x05\x01\x02\x05\x02\x05\x01\x04\x05\x04", // 𨓺
+ 0x284fb: "\x05\x01\x01\x02\x04\x01\x03\x04\x04\x05\x04", // 𨓻
+ 0x284fc: "\x03\x03\x03\x02\x01\x02\x01\x05\x01\x01\x04\x05\x02\x05\x02", // 𨓼
+ 0x284fd: "\x01\x01\x02\x01\x02\x05\x01\x01\x04\x05\x04", // 𨓽
+ 0x284fe: "\x01\x03\x04\x01\x02\x05\x01\x02\x04\x05\x04", // 𨓾
+ 0x284ff: "\x03\x01\x01\x01\x02\x01\x01\x01\x04\x05\x04", // 𨓿
+ 0x28500: "\x02\x01\x02\x01\x02\x01\x03\x04\x04\x05\x04", // 𨔀
+ 0x28501: "\x02\x01\x02\x05\x03\x05\x04\x01\x04\x05\x04", // 𨔁
+ 0x28502: "\x02\x05\x01\x02\x05\x01\x02\x02\x04\x05\x04", // 𨔂
+ 0x28503: "\x03\x02\x02\x05\x01\x05\x05\x05\x04\x05\x04", // 𨔃
+ 0x28504: "\x03\x03\x01\x02\x05\x02\x05\x02\x04\x05\x04", // 𨔄
+ 0x28505: "\x03\x03\x02\x04\x03\x01\x01\x05\x04\x05\x04", // 𨔅
+ 0x28506: "\x04\x01\x05\x03\x03\x04\x04\x04\x04\x05\x04", // 𨔆
+ 0x28507: "\x05\x04\x05\x04\x04\x05\x04\x04\x04\x05\x04", // 𨔇
+ 0x28508: "\x03\x01\x01\x02\x05\x02\x02\x02\x04\x05\x04", // 𨔈
+ 0x28509: "\x04\x01\x03\x04\x01\x01\x01\x02\x04\x05\x04", // 𨔉
+ 0x2850a: "\x04\x01\x03\x04\x03\x04\x01\x02\x04\x05\x04", // 𨔊
+ 0x2850b: "\x01\x02\x02\x01\x01\x02\x03\x04\x04\x05\x04", // 𨔋
+ 0x2850c: "\x05\x02\x01\x03\x03\x05\x04\x04\x04\x05\x04", // 𨔌
+ 0x2850d: "\x02\x05\x02\x02\x01\x01\x02\x05\x04\x05\x04", // 𨔍
+ 0x2850e: "\x04\x04\x05\x01\x02\x01\x03\x04\x05\x04\x05\x04", // 𨔎
+ 0x2850f: "\x04\x03\x01\x01\x03\x02\x05\x01\x04\x05\x04", // 𨔏
+ 0x28510: "\x01\x01\x01\x03\x04\x01\x01\x02\x04\x05\x04", // 𨔐
+ 0x28511: "\x02\x01\x02\x01\x03\x05\x04\x01\x04\x05\x04", // 𨔑
+ 0x28512: "\x02\x05\x01\x01\x02\x05\x03\x04\x04\x05\x04", // 𨔒
+ 0x28513: "\x03\x01\x01\x03\x04\x02\x05\x01\x04\x05\x04", // 𨔓
+ 0x28514: "\x03\x05\x04\x02\x05\x02\x02\x01\x04\x05\x04", // 𨔔
+ 0x28515: "\x03\x03\x05\x01\x02\x01\x05\x04\x04\x05\x04", // 𨔕
+ 0x28516: "\x02\x01\x02\x05\x01\x02\x05\x01\x04\x05\x04", // 𨔖
+ 0x28517: "\x02\x05\x01\x05\x03\x02\x05\x01\x04\x05\x04", // 𨔗
+ 0x28518: "\x01\x02\x02\x01\x01\x02\x03\x04\x04\x05\x04", // 𨔘
+ 0x28519: "\x01\x03\x04\x01\x03\x02\x05\x01\x04\x05\x04", // 𨔙
+ 0x2851a: "\x05\x02\x01\x01\x05\x02\x01\x01\x04\x05\x04", // 𨔚
+ 0x2851b: "\x02\x01\x05\x03\x01\x05\x03\x05\x04\x05\x04", // 𨔛
+ 0x2851c: "\x05\x05\x05\x03\x05\x01\x02\x02\x04\x05\x04", // 𨔜
+ 0x2851d: "\x03\x01\x02\x05\x01\x01\x02\x01\x01\x04\x05\x04", // 𨔝
+ 0x2851e: "\x01\x03\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04", // 𨔞
+ 0x2851f: "\x02\x01\x02\x05\x03\x04\x03\x04\x01\x04\x05\x04", // 𨔟
+ 0x28520: "\x03\x01\x02\x01\x02\x02\x01\x01\x04\x05\x04", // 𨔠
+ 0x28521: "\x05\x01\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 𨔡
+ 0x28522: "\x05\x02\x03\x02\x05\x01\x02\x01\x04\x04\x05\x04", // 𨔢
+ 0x28523: "\x01\x02\x03\x04\x05\x03\x02\x05\x01\x04\x05\x04", // 𨔣
+ 0x28524: "\x01\x04\x03\x01\x02\x03\x04\x05\x03\x04\x05\x04", // 𨔤
+ 0x28525: "\x05\x01\x01\x01\x01\x02\x03\x03\x03\x04\x05\x04", // 𨔥
+ 0x28526: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x04\x05\x04", // 𨔦
+ 0x28527: "\x05\x01\x03\x04\x03\x01\x01\x03\x02\x04\x05\x04", // 𨔧
+ 0x28528: "\x01\x01\x02\x03\x02\x01\x05\x01\x01\x04\x05\x04", // 𨔨
+ 0x28529: "\x03\x04\x05\x02\x03\x05\x03\x05\x04\x04\x05\x04", // 𨔩
+ 0x2852a: "\x03\x05\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 𨔪
+ 0x2852b: "\x02\x05\x01\x01\x03\x05\x03\x05\x04\x04\x05\x04", // 𨔫
+ 0x2852c: "\x01\x03\x04\x04\x03\x01\x01\x01\x02\x04\x05\x04", // 𨔬
+ 0x2852d: "\x05\x05\x05\x01\x03\x05\x04\x02\x02\x04\x05\x04", // 𨔭
+ 0x2852e: "\x03\x02\x04\x03\x03\x04\x01\x03\x02\x04\x05\x04", // 𨔮
+ 0x2852f: "\x02\x05\x01\x01\x02\x05\x03\x04\x04\x05\x04", // 𨔯
+ 0x28530: "\x01\x02\x05\x03\x05\x01\x01\x03\x02\x04\x05\x04", // 𨔰
+ 0x28531: "\x01\x02\x03\x04\x03\x04\x01\x01\x02\x04\x05\x04", // 𨔱
+ 0x28532: "\x05\x02\x01\x02\x05\x01\x01\x02\x04\x05\x04", // 𨔲
+ 0x28533: "\x05\x02\x01\x03\x02\x05\x01\x01\x04\x05\x04", // 𨔳
+ 0x28534: "\x01\x02\x02\x05\x03\x02\x05\x01\x04\x05\x04", // 𨔴
+ 0x28535: "\x05\x05\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 𨔵
+ 0x28536: "\x01\x03\x04\x04\x03\x01\x01\x01\x02\x04\x05\x04", // 𨔶
+ 0x28537: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x05\x04", // 𨔷
+ 0x28538: "\x01\x01\x02\x02\x01\x02\x05\x01\x01\x04\x05\x04", // 𨔸
+ 0x28539: "\x02\x05\x01\x01\x03\x02\x05\x01\x01\x04\x05\x04", // 𨔹
+ 0x2853a: "\x02\x05\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 𨔺
+ 0x2853b: "\x05\x02\x01\x02\x05\x01\x02\x05\x02\x04\x05\x04", // 𨔻
+ 0x2853c: "\x01\x02\x03\x04\x03\x01\x05\x02\x01\x04\x05\x04", // 𨔼
+ 0x2853d: "\x01\x02\x01\x02\x05\x03\x02\x05\x01\x04\x05\x04", // 𨔽
+ 0x2853e: "\x01\x02\x01\x03\x02\x05\x01\x01\x04\x05\x04", // 𨔾
+ 0x2853f: "\x01\x03\x05\x03\x03\x03\x04\x01\x02\x04\x05\x04", // 𨔿
+ 0x28540: "\x03\x01\x01\x05\x03\x01\x01\x03\x04\x04\x05\x04", // 𨕀
+ 0x28541: "\x04\x01\x03\x04\x03\x01\x02\x03\x04\x04\x05\x04", // 𨕁
+ 0x28542: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x04\x05\x04", // 𨕂
+ 0x28543: "\x01\x02\x02\x01\x02\x05\x01\x05\x01\x04\x05\x04", // 𨕃
+ 0x28544: "\x05\x01\x03\x04\x03\x01\x02\x03\x04\x04\x05\x04", // 𨕄
+ 0x28545: "\x01\x02\x05\x03\x05\x01\x01\x02\x01\x04\x05\x04", // 𨕅
+ 0x28546: "\x01\x02\x01\x02\x01\x03\x05\x01\x01\x04\x05\x04", // 𨕆
+ 0x28547: "\x01\x02\x01\x02\x03\x02\x01\x02\x01\x04\x05\x04", // 𨕇
+ 0x28548: "\x02\x05\x01\x01\x01\x02\x05\x03\x04\x04\x05\x04", // 𨕈
+ 0x28549: "\x03\x02\x01\x01\x01\x03\x05\x05\x04\x04\x05\x04", // 𨕉
+ 0x2854a: "\x03\x05\x04\x01\x02\x02\x01\x03\x04\x04\x05\x04", // 𨕊
+ 0x2854b: "\x03\x02\x01\x02\x01\x03\x05\x04\x01\x04\x05\x04", // 𨕋
+ 0x2854c: "\x01\x01\x01\x03\x04\x02\x05\x01\x01\x04\x05\x04", // 𨕌
+ 0x2854d: "\x01\x02\x01\x02\x01\x03\x04\x02\x04\x04\x05\x04", // 𨕍
+ 0x2854e: "\x01\x03\x04\x01\x02\x01\x02\x05\x01\x04\x05\x04", // 𨕎
+ 0x2854f: "\x01\x03\x04\x01\x02\x05\x03\x05\x01\x04\x05\x04", // 𨕏
+ 0x28550: "\x02\x01\x02\x01\x02\x05\x01\x01\x01\x04\x05\x04", // 𨕐
+ 0x28551: "\x02\x01\x05\x03\x01\x05\x02\x05\x02\x04\x05\x04", // 𨕑
+ 0x28552: "\x02\x05\x01\x01\x01\x02\x01\x02\x01\x04\x05\x04", // 𨕒
+ 0x28553: "\x02\x05\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 𨕓
+ 0x28554: "\x02\x05\x02\x05\x01\x01\x03\x05\x04\x04\x05\x04", // 𨕔
+ 0x28555: "\x04\x01\x05\x04\x02\x05\x01\x05\x01\x04\x05\x04", // 𨕕
+ 0x28556: "\x05\x01\x05\x05\x01\x05\x01\x03\x04\x04\x05\x04", // 𨕖
+ 0x28557: "\x05\x03\x04\x03\x05\x03\x04\x03\x02\x04\x05\x04", // 𨕗
+ 0x28558: "\x03\x02\x05\x01\x02\x05\x02\x01\x04\x04\x05\x04", // 𨕘
+ 0x28559: "\x03\x02\x05\x01\x01\x01\x05\x05\x03\x04\x05\x04", // 𨕙
+ 0x2855a: "\x02\x05\x03\x04\x02\x05\x01\x01\x01\x04\x05\x04", // 𨕚
+ 0x2855b: "\x05\x01\x01\x01\x01\x02\x03\x03\x03\x04\x05\x04", // 𨕛
+ 0x2855c: "\x04\x03\x01\x02\x03\x04\x04\x05\x04\x05\x03\x04", // 𨕜
+ 0x2855d: "\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04\x04\x05\x04", // 𨕝
+ 0x2855e: "\x01\x02\x05\x02\x02\x01\x03\x01\x03\x02\x04\x05\x04", // 𨕞
+ 0x2855f: "\x02\x05\x01\x02\x01\x03\x05\x03\x05\x04\x04\x05\x04", // 𨕟
+ 0x28560: "\x04\x04\x05\x03\x05\x03\x01\x03\x02\x02\x04\x05\x04", // 𨕠
+ 0x28561: "\x01\x02\x01\x02\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 𨕡
+ 0x28562: "\x04\x01\x05\x05\x04\x02\x05\x01\x02\x01\x04\x05\x04", // 𨕢
+ 0x28563: "\x02\x05\x01\x02\x05\x01\x03\x01\x01\x02\x04\x05\x04", // 𨕣
+ 0x28564: "\x01\x02\x01\x02\x05\x01\x01\x02\x05\x02\x04\x05\x04", // 𨕤
+ 0x28565: "\x05\x05\x05\x01\x03\x02\x05\x01\x01\x01\x04\x05\x04", // 𨕥
+ 0x28566: "\x04\x04\x05\x03\x04\x03\x04\x03\x05\x04\x04\x05\x04", // 𨕦
+ 0x28567: "\x05\x05\x04\x05\x05\x04\x01\x01\x03\x02\x04\x05\x04", // 𨕧
+ 0x28568: "\x05\x01\x01\x01\x02\x01\x03\x05\x03\x03\x04\x05\x04", // 𨕨
+ 0x28569: "\x03\x02\x04\x03\x03\x04\x05\x03\x05\x04\x04\x05\x04", // 𨕩
+ 0x2856a: "\x03\x03\x03\x02\x01\x03\x04\x03\x02\x04\x03\x03\x04\x04\x03\x03\x04", // 𨕪
+ 0x2856b: "\x04\x05\x02\x04\x02\x05\x01\x01\x02\x04\x05\x04", // 𨕫
+ 0x2856c: "\x02\x05\x01\x02\x05\x01\x01\x05\x02\x03\x04\x05\x04", // 𨕬
+ 0x2856d: "\x02\x01\x01\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 𨕭
+ 0x2856e: "\x05\x01\x03\x02\x05\x01\x03\x05\x05\x04\x04\x05\x04", // 𨕮
+ 0x2856f: "\x01\x03\x01\x01\x05\x03\x04\x01\x02\x04\x04\x05\x04", // 𨕯
+ 0x28570: "\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01\x04\x05\x04", // 𨕰
+ 0x28571: "\x02\x05\x02\x03\x05\x04\x01\x01\x01\x02\x04\x05\x04", // 𨕱
+ 0x28572: "\x02\x05\x01\x01\x03\x04\x02\x01\x02\x01\x04\x05\x04", // 𨕲
+ 0x28573: "\x03\x03\x05\x04\x01\x04\x01\x03\x05\x04\x04\x05\x04", // 𨕳
+ 0x28574: "\x03\x03\x05\x04\x01\x04\x03\x05\x05\x04\x04\x05\x04", // 𨕴
+ 0x28575: "\x03\x02\x05\x01\x05\x01\x03\x05\x05\x04\x04\x05\x04", // 𨕵
+ 0x28576: "\x03\x05\x01\x02\x01\x01\x03\x05\x05\x04\x04\x05\x04", // 𨕶
+ 0x28577: "\x01\x02\x02\x03\x05\x04\x02\x05\x02\x04\x05\x04", // 𨕷
+ 0x28578: "\x02\x01\x02\x01\x02\x05\x01\x01\x02\x01\x04\x05\x04", // 𨕸
+ 0x28579: "\x01\x02\x03\x04\x01\x02\x05\x01\x01\x01\x04\x05\x04", // 𨕹
+ 0x2857a: "\x01\x03\x04\x04\x01\x01\x01\x02\x05\x01\x04\x05\x04", // 𨕺
+ 0x2857b: "\x02\x05\x01\x01\x05\x01\x01\x05\x03\x04\x04\x05\x04", // 𨕻
+ 0x2857c: "\x03\x03\x03\x02\x01\x03\x04\x03\x02\x04\x03\x03\x04\x05\x03\x05\x04", // 𨕼
+ 0x2857d: "\x03\x03\x03\x02\x01\x03\x04\x03\x04\x01\x05\x01\x01\x02\x01\x03\x04", // 𨕽
+ 0x2857e: "\x04\x01\x03\x04\x01\x03\x01\x01\x03\x04\x04\x05\x04", // 𨕾
+ 0x2857f: "\x05\x01\x05\x01\x02\x01\x01\x01\x02\x01\x04\x05\x04", // 𨕿
+ 0x28580: "\x05\x02\x03\x01\x02\x05\x01\x02\x01\x04\x04\x05\x04", // 𨖀
+ 0x28581: "\x03\x03\x03\x02\x01\x03\x04\x05\x05\x05\x01\x03\x02\x05\x01\x01\x01", // 𨖁
+ 0x28582: "\x03\x02\x05\x01\x01\x01\x05\x02\x05\x01\x04\x05\x04", // 𨖂
+ 0x28583: "\x03\x01\x04\x03\x01\x04\x03\x05\x03\x03\x04\x05\x04", // 𨖃
+ 0x28584: "\x04\x04\x05\x03\x01\x02\x01\x02\x05\x01\x04\x05\x04", // 𨖄
+ 0x28585: "\x04\x05\x01\x01\x05\x04\x05\x02\x04\x05\x04", // 𨖅
+ 0x28586: "\x02\x01\x05\x03\x01\x05\x02\x05\x01\x01\x01\x04\x05\x04", // 𨖆
+ 0x28587: "\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04\x04\x05\x04", // 𨖇
+ 0x28588: "\x03\x05\x04\x04\x04\x01\x01\x01\x02\x05\x01\x04\x05\x04", // 𨖈
+ 0x28589: "\x04\x03\x03\x04\x04\x03\x03\x04\x01\x03\x02\x04\x05\x04", // 𨖉
+ 0x2858a: "\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04", // 𨖊
+ 0x2858b: "\x04\x04\x05\x01\x05\x01\x01\x02\x01\x03\x04\x04\x05\x04", // 𨖋
+ 0x2858c: "\x04\x03\x01\x01\x02\x01\x04\x05\x05\x03\x04\x04\x05\x04", // 𨖌
+ 0x2858d: "\x01\x02\x05\x01\x02\x05\x01\x03\x01\x01\x02\x04\x05\x04", // 𨖍
+ 0x2858e: "\x03\x01\x04\x03\x01\x04\x05\x04\x02\x05\x01\x04\x05\x04", // 𨖎
+ 0x2858f: "\x02\x01\x05\x01\x01\x05\x04\x03\x05\x05\x04\x04\x05\x04", // 𨖏
+ 0x28590: "\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x02\x04\x05\x04", // 𨖐
+ 0x28591: "\x01\x02\x02\x01\x05\x05\x05\x01\x02\x01\x04\x05\x04", // 𨖑
+ 0x28592: "\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04", // 𨖒
+ 0x28593: "\x04\x01\x03\x01\x02\x02\x01\x04\x03\x03\x04\x04\x05\x04", // 𨖓
+ 0x28594: "\x05\x01\x03\x02\x04\x01\x03\x04\x05\x03\x01\x04\x05\x04", // 𨖔
+ 0x28595: "\x01\x03\x02\x04\x05\x04\x02\x05\x01\x01\x02\x04\x05\x04", // 𨖕
+ 0x28596: "\x01\x02\x01\x03\x05\x01\x02\x01\x05\x02\x04\x05\x04", // 𨖖
+ 0x28597: "\x01\x02\x01\x02\x05\x01\x01\x03\x02\x05\x01\x04\x05\x04", // 𨖗
+ 0x28598: "\x01\x02\x01\x02\x02\x05\x02\x02\x01\x01\x01\x04\x05\x04", // 𨖘
+ 0x28599: "\x02\x05\x02\x02\x01\x03\x02\x03\x04\x03\x04\x04\x05\x04", // 𨖙
+ 0x2859a: "\x01\x02\x03\x04\x02\x05\x01\x01\x02\x03\x04\x04\x05\x04", // 𨖚
+ 0x2859b: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x01\x02\x04\x05\x04", // 𨖛
+ 0x2859c: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x01\x05\x04\x05\x04", // 𨖜
+ 0x2859d: "\x01\x04\x05\x02\x04\x01\x03\x04\x05\x05\x05\x04\x05\x04", // 𨖝
+ 0x2859e: "\x02\x05\x02\x02\x01\x01\x01\x02\x05\x01\x01\x04\x05\x04", // 𨖞
+ 0x2859f: "\x03\x02\x05\x01\x01\x01\x03\x03\x01\x03\x04\x04\x05\x04", // 𨖟
+ 0x285a0: "\x03\x03\x03\x05\x01\x03\x02\x05\x01\x02\x02\x04\x05\x04", // 𨖠
+ 0x285a1: "\x03\x04\x04\x03\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 𨖡
+ 0x285a2: "\x03\x05\x03\x01\x01\x02\x01\x01\x01\x02\x01\x04\x05\x04", // 𨖢
+ 0x285a3: "\x03\x05\x03\x05\x01\x01\x02\x03\x03\x02\x04\x04\x05\x04", // 𨖣
+ 0x285a4: "\x03\x03\x03\x02\x01\x03\x04\x03\x05\x04\x04\x03\x03\x04\x04\x03\x03\x04", // 𨖤
+ 0x285a5: "\x04\x01\x03\x05\x02\x02\x01\x05\x04\x05\x04\x04\x05\x04", // 𨖥
+ 0x285a6: "\x03\x04\x04\x03\x02\x05\x01\x01\x01\x03\x02\x04\x05\x04", // 𨖦
+ 0x285a7: "\x03\x01\x01\x05\x01\x02\x05\x01\x02\x03\x04\x04\x05\x04", // 𨖧
+ 0x285a8: "\x03\x01\x02\x03\x04\x03\x05\x04\x03\x05\x04\x04\x05\x04", // 𨖨
+ 0x285a9: "\x04\x03\x01\x01\x03\x04\x02\x05\x01\x01\x01\x04\x05\x04", // 𨖩
+ 0x285aa: "\x03\x03\x03\x02\x01\x03\x04\x03\x04\x04\x03\x02\x05\x01\x01\x01\x03\x02", // 𨖪
+ 0x285ab: "\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x04\x05\x04", // 𨖫
+ 0x285ac: "\x03\x01\x04\x03\x01\x04\x03\x01\x01\x02\x01\x04\x05\x04", // 𨖬
+ 0x285ad: "\x02\x05\x02\x01\x03\x01\x02\x01\x01\x02\x01\x04\x05\x04", // 𨖭
+ 0x285ae: "\x05\x02\x02\x05\x02\x01\x05\x04\x04\x04\x04\x04\x05\x04", // 𨖮
+ 0x285af: "\x02\x01\x02\x05\x05\x01\x01\x03\x05\x03\x04\x04\x05\x04", // 𨖯
+ 0x285b0: "\x03\x01\x02\x01\x02\x05\x01\x04\x05\x04\x04\x01\x03\x04", // 𨖰
+ 0x285b1: "\x04\x01\x05\x05\x04\x04\x05\x03\x01\x01\x02\x04\x05\x04", // 𨖱
+ 0x285b2: "\x03\x01\x03\x02\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 𨖲
+ 0x285b3: "\x04\x04\x01\x03\x01\x02\x01\x05\x05\x02\x01\x02\x04\x05\x04", // 𨖳
+ 0x285b4: "\x03\x01\x01\x02\x02\x02\x02\x01\x04\x04\x04\x04\x04\x05\x04", // 𨖴
+ 0x285b5: "\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04\x04\x05\x04", // 𨖵
+ 0x285b6: "\x03\x05\x02\x05\x02\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 𨖶
+ 0x285b7: "\x03\x01\x04\x03\x01\x04\x05\x01\x01\x01\x01\x02\x04\x05\x04", // 𨖷
+ 0x285b8: "\x02\x01\x02\x01\x02\x05\x01\x01\x02\x03\x04\x03\x04\x05\x04", // 𨖸
+ 0x285b9: "\x01\x05\x04\x01\x02\x01\x01\x05\x04\x01\x02\x01\x04\x05\x04", // 𨖹
+ 0x285ba: "\x03\x01\x04\x03\x01\x04\x01\x03\x02\x05\x02\x02\x04\x05\x04", // 𨖺
+ 0x285bb: "\x01\x02\x01\x05\x02\x05\x01\x02\x05\x01\x02\x01\x04\x05\x04", // 𨖻
+ 0x285bc: "\x03\x02\x05\x02\x02\x01\x03\x02\x03\x03\x03\x04\x04\x05\x04", // 𨖼
+ 0x285bd: "\x03\x02\x01\x05\x01\x01\x03\x04\x01\x02\x01\x04\x05\x04", // 𨖽
+ 0x285be: "\x05\x05\x04\x04\x04\x04\x05\x05\x04\x02\x03\x04\x04\x05\x04", // 𨖾
+ 0x285bf: "\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04\x04\x05\x04", // 𨖿
+ 0x285c0: "\x03\x04\x03\x04\x03\x04\x03\x04\x02\x05\x01\x01\x04\x05\x04", // 𨗀
+ 0x285c1: "\x04\x01\x04\x03\x04\x05\x02\x05\x02\x02\x05\x01\x04\x05\x04", // 𨗁
+ 0x285c2: "\x05\x05\x04\x05\x05\x04\x01\x03\x04\x05\x03\x04\x04\x05\x04", // 𨗂
+ 0x285c3: "\x03\x03\x03\x02\x01\x03\x04\x01\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𨗃
+ 0x285c4: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x04", // 𨗄
+ 0x285c5: "\x01\x02\x01\x04\x03\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 𨗅
+ 0x285c6: "\x01\x02\x05\x02\x02\x01\x01\x03\x04\x02\x05\x02\x04\x05\x04", // 𨗆
+ 0x285c7: "\x01\x02\x05\x02\x02\x01\x01\x03\x04\x04\x05\x04\x04\x05\x04", // 𨗇
+ 0x285c8: "\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x03\x04\x04\x04\x05\x04", // 𨗈
+ 0x285c9: "\x04\x04\x05\x03\x05\x01\x03\x05\x03\x03\x03\x04\x04\x04\x05\x04", // 𨗉
+ 0x285ca: "\x01\x02\x01\x03\x02\x05\x01\x01\x05\x02\x04\x05\x04", // 𨗊
+ 0x285cb: "\x02\x01\x02\x05\x01\x01\x01\x05\x03\x05\x05\x04\x04\x05\x04", // 𨗋
+ 0x285cc: "\x03\x04\x01\x02\x01\x02\x01\x02\x04\x01\x05\x03\x04\x05\x04", // 𨗌
+ 0x285cd: "\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x04\x05\x04", // 𨗍
+ 0x285ce: "\x05\x02\x04\x03\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 𨗎
+ 0x285cf: "\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01\x04\x05\x04", // 𨗏
+ 0x285d0: "\x01\x02\x05\x01\x01\x02\x03\x04\x02\x05\x01\x01\x04\x05\x04", // 𨗐
+ 0x285d1: "\x01\x03\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01\x04\x05\x04", // 𨗑
+ 0x285d2: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x01\x02\x01\x04\x05\x04", // 𨗒
+ 0x285d3: "\x02\x05\x01\x04\x03\x01\x03\x02\x05\x01\x01\x01\x04\x05\x04", // 𨗓
+ 0x285d4: "\x03\x02\x01\x01\x05\x01\x01\x02\x01\x03\x04\x03\x02\x04\x05\x04", // 𨗔
+ 0x285d5: "\x03\x05\x01\x02\x05\x03\x05\x01\x01\x01\x03\x02\x04\x05\x04", // 𨗕
+ 0x285d6: "\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x03\x04\x04\x05\x04", // 𨗖
+ 0x285d7: "\x04\x05\x02\x03\x04\x01\x02\x05\x01\x01\x02\x04\x04\x05\x04", // 𨗗
+ 0x285d8: "\x05\x04\x05\x04\x05\x04\x03\x04\x02\x04\x04\x04\x04\x05\x04", // 𨗘
+ 0x285d9: "\x05\x05\x04\x05\x05\x04\x04\x03\x01\x01\x03\x02\x04\x05\x04", // 𨗙
+ 0x285da: "\x04\x03\x01\x01\x01\x02\x04\x03\x01\x02\x05\x01\x04\x04\x05\x04", // 𨗚
+ 0x285db: "\x01\x02\x02\x05\x01\x01\x01\x02\x03\x05\x01\x01\x04\x05\x04", // 𨗛
+ 0x285dc: "\x03\x04\x01\x05\x04\x01\x02\x05\x01\x02\x03\x04\x04\x05\x04", // 𨗜
+ 0x285dd: "\x03\x03\x03\x02\x01\x03\x04\x05\x04\x05\x02\x03\x02\x05\x03\x04\x02\x05\x01", // 𨗝
+ 0x285de: "\x02\x05\x02\x02\x05\x02\x02\x05\x02\x05\x01\x01\x04\x05\x04", // 𨗞
+ 0x285df: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x02\x05\x01\x04\x05\x04", // 𨗟
+ 0x285e0: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x01\x05\x04\x04\x05\x04", // 𨗠
+ 0x285e1: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x02\x05\x01\x04\x05\x04", // 𨗡
+ 0x285e2: "\x01\x02\x05\x02\x02\x01\x04\x01\x03\x05\x03\x04\x04\x05\x04", // 𨗢
+ 0x285e3: "\x01\x02\x01\x02\x05\x03\x05\x01\x02\x05\x01\x01\x04\x05\x04", // 𨗣
+ 0x285e4: "\x03\x04\x01\x01\x02\x02\x02\x01\x04\x01\x05\x03\x04\x05\x04", // 𨗤
+ 0x285e5: "\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01\x04\x05\x04", // 𨗥
+ 0x285e6: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x04\x05\x04", // 𨗦
+ 0x285e7: "\x03\x05\x01\x03\x03\x05\x04\x01\x01\x01\x02\x05\x01\x04\x05\x04", // 𨗧
+ 0x285e8: "\x01\x02\x01\x02\x05\x02\x01\x02\x05\x01\x01\x05\x02\x04\x05\x04", // 𨗨
+ 0x285e9: "\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x02\x03\x04\x04\x05\x04", // 𨗩
+ 0x285ea: "\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x05\x03\x03\x04\x05\x04", // 𨗪
+ 0x285eb: "\x02\x05\x02\x02\x01\x01\x03\x05\x04\x04\x05\x04\x04\x04\x05\x04", // 𨗫
+ 0x285ec: "\x03\x03\x03\x02\x01\x03\x04\x03\x05\x04\x04\x03\x03\x04\x04\x03\x01\x02\x03\x04", // 𨗬
+ 0x285ed: "\x03\x02\x01\x05\x01\x01\x02\x03\x04\x01\x02\x01\x04\x05\x04", // 𨗭
+ 0x285ee: "\x03\x02\x01\x05\x01\x01\x02\x03\x04\x01\x03\x02\x04\x05\x04", // 𨗮
+ 0x285ef: "\x05\x02\x02\x05\x02\x04\x01\x05\x03\x03\x01\x03\x04\x04\x05\x04", // 𨗯
+ 0x285f0: "\x02\x01\x02\x05\x05\x01\x01\x05\x05\x04\x02\x03\x04\x04\x05\x04", // 𨗰
+ 0x285f1: "\x03\x05\x04\x01\x05\x04\x01\x02\x05\x01\x04\x03\x01\x04\x05\x04", // 𨗱
+ 0x285f2: "\x01\x02\x02\x02\x05\x05\x02\x05\x02\x05\x01\x04\x05\x04", // 𨗲
+ 0x285f3: "\x04\x03\x01\x03\x02\x05\x01\x01\x01\x04\x05\x04\x02\x04\x04\x04", // 𨗳
+ 0x285f4: "\x02\x05\x02\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x04\x05\x04", // 𨗴
+ 0x285f5: "\x03\x01\x01\x05\x01\x02\x01\x04\x03\x01\x01\x01\x02\x04\x05\x04", // 𨗵
+ 0x285f6: "\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04", // 𨗶
+ 0x285f7: "\x01\x02\x03\x04\x02\x05\x01\x02\x02\x05\x02\x05\x01\x04\x05\x04", // 𨗷
+ 0x285f8: "\x01\x02\x01\x02\x01\x02\x02\x01\x05\x01\x02\x03\x04\x04\x05\x04", // 𨗸
+ 0x285f9: "\x03\x01\x04\x03\x01\x04\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 𨗹
+ 0x285fa: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x04\x04\x05\x04\x04\x05\x04", // 𨗺
+ 0x285fb: "\x02\x05\x02\x02\x01\x03\x01\x01\x01\x02\x01\x01\x01\x04\x05\x04", // 𨗻
+ 0x285fc: "\x03\x01\x01\x02\x02\x01\x03\x05\x04\x05\x02\x05\x02\x04\x05\x04", // 𨗼
+ 0x285fd: "\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02\x03\x05\x01\x01\x04\x05\x04", // 𨗽
+ 0x285fe: "\x03\x04\x03\x04\x01\x02\x01\x04\x03\x01\x01\x01\x02\x04\x05\x04", // 𨗾
+ 0x285ff: "\x03\x04\x04\x03\x05\x03\x03\x05\x01\x01\x05\x03\x04\x04\x05\x04", // 𨗿
+ 0x28600: "\x01\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04", // 𨘀
+ 0x28601: "\x05\x05\x04\x04\x01\x05\x03\x05\x05\x04\x02\x03\x04\x04\x05\x04", // 𨘁
+ 0x28602: "\x05\x01\x01\x03\x02\x05\x01\x03\x05\x04\x03\x05\x04\x04\x05\x04", // 𨘂
+ 0x28603: "\x04\x01\x03\x04\x01\x04\x04\x05\x02\x05\x01\x05\x01\x04\x05\x04", // 𨘃
+ 0x28604: "\x04\x04\x05\x01\x05\x01\x01\x02\x02\x04\x03\x03\x04\x04\x05\x04", // 𨘄
+ 0x28605: "\x03\x04\x04\x03\x05\x03\x03\x05\x01\x01\x02\x01\x01\x04\x05\x04", // 𨘅
+ 0x28606: "\x04\x01\x03\x05\x03\x04\x02\x05\x03\x04\x02\x05\x01\x04\x05\x04", // 𨘆
+ 0x28607: "\x05\x02\x01\x05\x05\x05\x04\x05\x05\x04\x03\x01\x01\x02\x04\x05\x04", // 𨘇
+ 0x28608: "\x02\x01\x05\x03\x01\x05\x01\x02\x01\x04\x03\x01\x01\x02\x04\x05\x04", // 𨘈
+ 0x28609: "\x03\x01\x04\x03\x01\x04\x01\x05\x01\x01\x02\x01\x03\x04\x04\x05\x04", // 𨘉
+ 0x2860a: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x01\x01\x03\x02\x04\x05\x04", // 𨘊
+ 0x2860b: "\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x05\x02\x01\x04\x05\x04", // 𨘋
+ 0x2860c: "\x04\x05\x02\x04\x02\x05\x01\x02\x02\x05\x02\x05\x01\x04\x05\x04", // 𨘌
+ 0x2860d: "\x01\x04\x05\x02\x04\x01\x03\x04\x05\x01\x01\x05\x03\x04\x04\x05\x04", // 𨘍
+ 0x2860e: "\x01\x02\x01\x02\x01\x03\x04\x02\x05\x01\x01\x02\x03\x04\x04\x05\x04", // 𨘎
+ 0x2860f: "\x01\x02\x01\x02\x01\x02\x01\x02\x05\x01\x03\x05\x03\x04\x04\x05\x04", // 𨘏
+ 0x28610: "\x03\x02\x03\x02\x05\x01\x01\x03\x02\x03\x02\x05\x01\x01\x04\x05\x04", // 𨘐
+ 0x28611: "\x01\x02\x04\x01\x03\x04\x04\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 𨘑
+ 0x28612: "\x02\x05\x01\x01\x02\x05\x01\x02\x01\x02\x03\x04\x05\x03\x01\x04\x05\x04", // 𨘒
+ 0x28613: "\x03\x04\x04\x03\x01\x02\x01\x05\x01\x01\x04\x05\x04\x04\x04\x05\x04", // 𨘓
+ 0x28614: "\x04\x01\x01\x01\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01\x04\x05\x04", // 𨘔
+ 0x28615: "\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04", // 𨘕
+ 0x28616: "\x03\x03\x05\x04\x04\x02\x05\x01\x01\x01\x03\x05\x03\x03\x04\x05\x04", // 𨘖
+ 0x28617: "\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x01\x02\x04\x04\x05\x04", // 𨘗
+ 0x28618: "\x05\x01\x03\x03\x01\x01\x05\x01\x02\x05\x01\x02\x03\x04\x04\x05\x04", // 𨘘
+ 0x28619: "\x04\x01\x05\x05\x04\x04\x05\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 𨘙
+ 0x2861a: "\x01\x02\x01\x02\x02\x05\x01\x01\x01\x04\x05\x01\x02\x04\x04\x05\x04", // 𨘚
+ 0x2861b: "\x04\x01\x01\x02\x02\x01\x02\x02\x01\x04\x05\x02\x05\x02\x04\x05\x04", // 𨘛
+ 0x2861c: "\x01\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01\x04\x05\x04", // 𨘜
+ 0x2861d: "\x01\x02\x01\x03\x03\x05\x03\x02\x04\x01\x01\x01\x02\x01\x04\x05\x04", // 𨘝
+ 0x2861e: "\x01\x02\x04\x05\x03\x05\x02\x05\x02\x02\x01\x01\x01\x02\x04\x05\x04", // 𨘞
+ 0x2861f: "\x03\x01\x04\x03\x01\x04\x04\x01\x03\x05\x01\x01\x03\x04\x04\x05\x04", // 𨘟
+ 0x28620: "\x02\x05\x01\x01\x02\x05\x01\x02\x01\x03\x04\x05\x03\x01\x04\x05\x04", // 𨘠
+ 0x28621: "\x03\x05\x04\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x04\x01\x02\x04\x05\x05\x04", // 𨘡
+ 0x28622: "\x03\x02\x05\x01\x01\x01\x04\x04\x05\x03\x05\x02\x05\x02\x05\x04\x05\x04", // 𨘢
+ 0x28623: "\x02\x05\x02\x02\x01\x01\x02\x01\x02\x05\x01\x03\x05\x03\x04\x04\x05\x04", // 𨘣
+ 0x28624: "\x03\x02\x01\x05\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04", // 𨘤
+ 0x28625: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x05\x01\x03\x02\x05\x01\x04\x05\x04", // 𨘥
+ 0x28626: "\x01\x02\x01\x02\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x01\x04\x05\x04", // 𨘦
+ 0x28627: "\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04", // 𨘧
+ 0x28628: "\x01\x02\x03\x04\x01\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01\x04\x05\x04", // 𨘨
+ 0x28629: "\x02\x05\x01\x01\x01\x02\x03\x04\x03\x05\x05\x04\x02\x03\x04\x04\x05\x04", // 𨘩
+ 0x2862a: "\x01\x01\x03\x04\x01\x01\x03\x04\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 𨘪
+ 0x2862b: "\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01\x02\x05\x01\x04\x05\x04", // 𨘫
+ 0x2862c: "\x01\x02\x01\x02\x01\x02\x02\x01\x03\x05\x04\x05\x02\x05\x02\x04\x05\x04", // 𨘬
+ 0x2862d: "\x01\x02\x05\x03\x05\x01\x01\x05\x05\x01\x02\x04\x01\x03\x04\x04\x05\x04", // 𨘭
+ 0x2862e: "\x02\x01\x05\x03\x01\x05\x02\x05\x02\x03\x05\x04\x03\x05\x04\x04\x05\x04", // 𨘮
+ 0x2862f: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x03\x05\x03\x04\x05\x04", // 𨘯
+ 0x28630: "\x04\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x04\x05\x04", // 𨘰
+ 0x28631: "\x01\x02\x05\x01\x02\x03\x04\x03\x04\x04\x03\x05\x01\x01\x02\x04\x05\x04", // 𨘱
+ 0x28632: "\x03\x01\x04\x03\x01\x04\x04\x04\x05\x01\x05\x04\x01\x02\x01\x04\x05\x04", // 𨘲
+ 0x28633: "\x03\x03\x02\x02\x05\x02\x02\x05\x01\x01\x01\x03\x04\x05\x03\x04\x05\x04", // 𨘳
+ 0x28634: "\x03\x01\x02\x01\x02\x05\x01\x02\x01\x01\x01\x02\x01\x01\x01\x04\x05\x04", // 𨘴
+ 0x28635: "\x02\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x05\x04\x05\x04", // 𨘵
+ 0x28636: "\x01\x04\x03\x01\x02\x02\x05\x01\x03\x01\x05\x01\x05\x04\x05\x04", // 𨘶
+ 0x28637: "\x03\x04\x04\x03\x05\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04", // 𨘷
+ 0x28638: "\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01\x04\x05\x04", // 𨘸
+ 0x28639: "\x01\x03\x05\x03\x03\x03\x04\x03\x05\x01\x01\x05\x02\x05\x05\x04\x04\x05\x04", // 𨘹
+ 0x2863a: "\x03\x05\x04\x04\x03\x01\x01\x02\x05\x02\x05\x05\x04\x02\x03\x04\x04\x05\x04", // 𨘺
+ 0x2863b: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x02\x05\x01\x03\x05\x03\x04\x04\x05\x04", // 𨘻
+ 0x2863c: "\x01\x02\x05\x01\x01\x01\x02\x02\x05\x02\x01\x03\x02\x05\x02\x02\x04\x05\x04", // 𨘼
+ 0x2863d: "\x01\x02\x02\x01\x01\x01\x03\x05\x04\x01\x03\x01\x01\x02\x05\x02\x04\x05\x04", // 𨘽
+ 0x2863e: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01\x04\x05\x04", // 𨘾
+ 0x2863f: "\x04\x01\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x04\x05\x04", // 𨘿
+ 0x28640: "\x01\x02\x01\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x05\x04\x04\x05\x04", // 𨙀
+ 0x28641: "\x03\x03\x03\x02\x01\x03\x04\x03\x04\x04\x03\x05\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𨙁
+ 0x28642: "\x03\x05\x04\x04\x03\x01\x01\x02\x05\x02\x03\x05\x05\x04\x02\x03\x04\x04\x05\x05\x04", // 𨙂
+ 0x28643: "\x02\x01\x02\x05\x05\x01\x01\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02\x04\x05\x04", // 𨙃
+ 0x28644: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02\x04\x05\x04", // 𨙄
+ 0x28645: "\x03\x05\x04\x02\x05\x01\x02\x01\x05\x05\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 𨙅
+ 0x28646: "\x01\x03\x05\x03\x03\x03\x04\x03\x05\x01\x01\x01\x05\x02\x05\x05\x04\x04\x05\x04", // 𨙆
+ 0x28647: "\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04", // 𨙇
+ 0x28648: "\x05\x01\x03\x02\x04\x01\x03\x04\x05\x02\x01\x02\x05\x01\x01\x05\x02\x04\x05\x04", // 𨙈
+ 0x28649: "\x01\x04\x05\x02\x04\x01\x03\x04\x05\x01\x02\x01\x01\x05\x01\x05\x04\x04\x05\x04", // 𨙉
+ 0x2864a: "\x01\x02\x01\x02\x02\x01\x05\x03\x01\x05\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 𨙊
+ 0x2864b: "\x01\x02\x01\x03\x04\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04", // 𨙋
+ 0x2864c: "\x03\x01\x04\x03\x01\x04\x05\x01\x01\x05\x04\x05\x02\x01\x01\x03\x05\x04\x05\x04", // 𨙌
+ 0x2864d: "\x03\x01\x01\x03\x04\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01\x04\x05\x04", // 𨙍
+ 0x2864e: "\x04\x01\x01\x01\x02\x05\x01\x02\x05\x02\x02\x01\x02\x03\x03\x04\x04\x04\x05\x04", // 𨙎
+ 0x2864f: "\x05\x02\x03\x05\x02\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 𨙏
+ 0x28650: "\x05\x01\x01\x05\x04\x01\x05\x03\x05\x05\x01\x01\x05\x03\x04\x04\x05\x04", // 𨙐
+ 0x28651: "\x03\x03\x02\x01\x01\x05\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04", // 𨙑
+ 0x28652: "\x05\x04\x01\x05\x04\x01\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04\x04\x05\x04", // 𨙒
+ 0x28653: "\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01\x04\x05\x04", // 𨙓
+ 0x28654: "\x03\x01\x02\x01\x02\x02\x01\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x05\x04", // 𨙔
+ 0x28655: "\x02\x01\x02\x01\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x04\x05\x04", // 𨙕
+ 0x28656: "\x05\x04\x02\x05\x01\x01\x02\x04\x05\x04\x04\x01\x05\x05\x04\x04\x01\x03\x04\x01\x02", // 𨙖
+ 0x28657: "\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04\x02\x05\x01\x02\x01\x04\x05\x04", // 𨙗
+ 0x28658: "\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04\x04\x05\x04", // 𨙘
+ 0x28659: "\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x01\x03\x04\x05\x01\x05\x04\x05\x04", // 𨙙
+ 0x2865a: "\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04\x02\x05\x01\x02\x01\x04\x04\x05\x04", // 𨙚
+ 0x2865b: "\x01\x02\x05\x01\x02\x03\x04\x03\x02\x05\x02\x02\x01\x03\x02\x03\x04\x03\x04\x04\x05\x04", // 𨙛
+ 0x2865c: "\x01\x02\x01\x03\x04\x02\x05\x03\x05\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04", // 𨙜
+ 0x2865d: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x01\x05\x01\x01\x05\x03\x04\x04\x05\x04", // 𨙝
+ 0x2865e: "\x03\x03\x03\x02\x01\x03\x04\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x01\x03\x04\x05\x05", // 𨙞
+ 0x2865f: "\x01\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x04\x05\x04", // 𨙟
+ 0x28660: "\x01\x02\x05\x01\x01\x02\x03\x04\x01\x02\x05\x01\x01\x02\x03\x04\x02\x05\x01\x01\x04\x05\x04", // 𨙠
+ 0x28661: "\x03\x01\x02\x01\x02\x02\x01\x05\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x04\x05\x04", // 𨙡
+ 0x28662: "\x03\x01\x04\x03\x01\x04\x03\x02\x05\x01\x01\x01\x04\x05\x03\x04\x02\x05\x02\x05\x04\x05\x04", // 𨙢
+ 0x28663: "\x03\x04\x04\x03\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05\x05\x04\x02\x03\x04\x04\x05\x04", // 𨙣
+ 0x28664: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x04\x04\x03\x04\x05\x04\x05\x04\x04\x03\x05\x04\x04\x05\x04", // 𨙤
+ 0x28665: "\x01\x01\x01\x03\x04\x02\x05\x01\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x04\x05\x04", // 𨙥
+ 0x28666: "\x03\x03\x04\x03\x04\x03\x04\x03\x04\x01\x02\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x05\x04", // 𨙦
+ 0x28667: "\x03\x03\x03\x02\x01\x03\x04\x05\x04\x05\x02\x03\x02\x05\x03\x05\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𨙧
+ 0x28668: "\x02\x05\x01\x01\x02\x05\x05", // 𨙨
+ 0x28669: "\x01\x02\x05\x02", // 𨙩
+ 0x2866a: "\x03\x05\x05\x02", // 𨙪
+ 0x2866b: "\x02\x05\x01\x05\x02", // 𨙫
+ 0x2866c: "\x05\x01\x05\x05\x02", // 𨙬
+ 0x2866d: "\x01\x02\x01\x05\x02", // 𨙭
+ 0x2866e: "\x03\x05\x04\x05\x02", // 𨙮
+ 0x2866f: "\x01\x02\x04\x05\x02", // 𨙯
+ 0x28670: "\x01\x02\x01\x05\x02", // 𨙰
+ 0x28671: "\x01\x01\x05\x05\x02", // 𨙱
+ 0x28672: "\x03\x01\x05\x05\x02", // 𨙲
+ 0x28673: "\x05\x04\x04\x05\x02", // 𨙳
+ 0x28674: "\x01\x02\x03\x05\x02", // 𨙴
+ 0x28675: "\x05\x05\x03\x05\x02", // 𨙵
+ 0x28676: "\x01\x02\x05\x02\x05\x02", // 𨙶
+ 0x28677: "\x01\x01\x03\x02\x05\x02", // 𨙷
+ 0x28678: "\x01\x02\x05\x04\x05\x02", // 𨙸
+ 0x28679: "\x02\x03\x04\x03\x05\x02", // 𨙹
+ 0x2867a: "\x05\x02\x01\x01\x05\x02", // 𨙺
+ 0x2867b: "\x02\x05\x01\x01\x05\x02", // 𨙻
+ 0x2867c: "\x03\x01\x02\x01\x05\x02", // 𨙼
+ 0x2867d: "\x03\x04\x01\x05\x05\x02", // 𨙽
+ 0x2867e: "\x01\x02\x05\x04\x02\x05\x01\x05\x02\x01\x05", // 𨙾
+ 0x2867f: "\x01\x03\x05\x04\x05\x02", // 𨙿
+ 0x28680: "\x01\x03\x02\x04\x05\x02", // 𨚀
+ 0x28681: "\x01\x05\x03\x05\x05\x02", // 𨚁
+ 0x28682: "\x03\x05\x03\x05\x05\x02", // 𨚂
+ 0x28683: "\x04\x01\x05\x03\x05\x02", // 𨚃
+ 0x28684: "\x03\x05\x03\x01\x05\x02", // 𨚄
+ 0x28685: "\x03\x04\x03\x04\x05\x02", // 𨚅
+ 0x28686: "\x01\x01\x03\x02\x02\x05\x01\x05\x02\x01\x05", // 𨚆
+ 0x28687: "\x03\x04\x05\x03\x02\x05\x01\x05\x02\x01\x05", // 𨚇
+ 0x28688: "\x02\x03\x04\x03\x02\x05\x01\x05\x02\x01\x05", // 𨚈
+ 0x28689: "\x02\x05\x01\x01\x02\x05\x01\x05\x02\x01\x05", // 𨚉
+ 0x2868a: "\x04\x03\x03\x04\x02\x05\x01\x05\x02\x01\x05", // 𨚊
+ 0x2868b: "\x02\x05\x01\x05\x02\x01\x05\x04\x04\x04\x04", // 𨚋
+ 0x2868c: "\x03\x05\x04\x05\x02", // 𨚌
+ 0x2868d: "\x01\x05\x01\x05\x05\x02", // 𨚍
+ 0x2868e: "\x01\x05\x05\x01\x05\x02", // 𨚎
+ 0x2868f: "\x01\x05\x05\x04\x05\x02", // 𨚏
+ 0x28690: "\x03\x04\x03\x05\x05\x02", // 𨚐
+ 0x28691: "\x05\x01\x02\x01\x05\x02", // 𨚑
+ 0x28692: "\x02\x03\x04\x03\x02\x05\x01\x05\x02\x01\x05", // 𨚒
+ 0x28693: "\x05\x01\x05\x03\x02\x05\x02", // 𨚓
+ 0x28694: "\x03\x05\x05\x01\x05\x05\x02", // 𨚔
+ 0x28695: "\x05\x04\x01\x03\x02\x05\x02", // 𨚕
+ 0x28696: "\x02\x01\x02\x01\x01\x05\x05\x02", // 𨚖
+ 0x28697: "\x02\x05\x02\x01\x01\x05\x02", // 𨚗
+ 0x28698: "\x01\x01\x02\x03\x04\x05\x02", // 𨚘
+ 0x28699: "\x02\x05\x01\x01\x05\x05\x02", // 𨚙
+ 0x2869a: "\x04\x03\x01\x01\x03\x02\x05\x01\x05\x02\x01\x05", // 𨚚
+ 0x2869b: "\x01\x05\x01\x01\x05\x05\x02", // 𨚛
+ 0x2869c: "\x04\x03\x01\x01\x03\x05\x02", // 𨚜
+ 0x2869d: "\x01\x01\x02\x01\x04\x05\x02", // 𨚝
+ 0x2869e: "\x01\x03\x02\x05\x01\x05\x02", // 𨚞
+ 0x2869f: "\x03\x05\x04\x04\x04\x05\x02", // 𨚟
+ 0x286a0: "\x01\x02\x02\x01\x01\x02\x05\x01\x05\x02\x01\x05", // 𨚠
+ 0x286a1: "\x05\x02\x05\x03\x04\x02\x05\x01\x05\x02\x01\x05", // 𨚡
+ 0x286a2: "\x01\x01\x03\x02\x04\x05\x02", // 𨚢
+ 0x286a3: "\x01\x02\x01\x02\x01\x05\x02", // 𨚣
+ 0x286a4: "\x01\x05\x01\x01\x05\x05\x02", // 𨚤
+ 0x286a5: "\x03\x01\x01\x02\x01\x05\x02", // 𨚥
+ 0x286a6: "\x05\x02\x01\x01\x03\x05\x02", // 𨚦
+ 0x286a7: "\x05\x03\x02\x05\x01\x05\x02", // 𨚧
+ 0x286a8: "\x05\x04\x02\x05\x01\x05\x02", // 𨚨
+ 0x286a9: "\x01\x02\x05\x01\x02\x05\x02", // 𨚩
+ 0x286aa: "\x04\x01\x04\x03\x01\x05\x02", // 𨚪
+ 0x286ab: "\x01\x02\x01\x05\x04\x05\x02", // 𨚫
+ 0x286ac: "\x03\x02\x01\x02\x01\x02\x05\x01\x05\x02\x01\x05", // 𨚬
+ 0x286ad: "\x05\x01\x05\x03\x02\x02\x05\x01\x05\x02\x01\x05", // 𨚭
+ 0x286ae: "\x03\x02\x05\x01\x01\x05\x02", // 𨚮
+ 0x286af: "\x02\x05\x01\x02\x05\x01\x05\x02", // 𨚯
+ 0x286b0: "\x02\x05\x01\x01\x01\x02\x05\x02", // 𨚰
+ 0x286b1: "\x05\x02\x05\x03\x04\x01\x05\x02", // 𨚱
+ 0x286b2: "\x01\x03\x02\x05\x02\x01\x05\x02", // 𨚲
+ 0x286b3: "\x04\x01\x05\x05\x05\x05\x05\x02", // 𨚳
+ 0x286b4: "\x05\x03\x01\x02\x05\x01\x05\x02", // 𨚴
+ 0x286b5: "\x01\x02\x01\x02\x05\x01\x05\x02\x01\x05\x05\x03\x04", // 𨚵
+ 0x286b6: "\x03\x01\x01\x02\x01\x02\x05\x02", // 𨚶
+ 0x286b7: "\x03\x05\x04\x02\x05\x01\x05\x02", // 𨚷
+ 0x286b8: "\x01\x05\x04\x02\x03\x04\x05\x02", // 𨚸
+ 0x286b9: "\x01\x02\x05\x03\x05\x01\x05\x02", // 𨚹
+ 0x286ba: "\x01\x03\x03\x05\x01\x01\x02\x05\x01\x05\x02\x01\x05", // 𨚺
+ 0x286bb: "\x01\x02\x01\x03\x01\x05\x02\x05\x01\x05\x02\x01\x05", // 𨚻
+ 0x286bc: "\x02\x05\x01\x05\x02\x01\x05\x01\x03\x03\x05\x01\x01", // 𨚼
+ 0x286bd: "\x03\x01\x01\x02\x01\x02\x02\x05\x01\x05\x02\x01\x05", // 𨚽
+ 0x286be: "\x01\x05\x02\x01\x05\x02\x05\x02", // 𨚾
+ 0x286bf: "\x02\x05\x02\x02\x01\x01\x05\x02", // 𨚿
+ 0x286c0: "\x03\x01\x02\x01\x05\x04\x05\x02", // 𨛀
+ 0x286c1: "\x04\x03\x01\x01\x01\x03\x05\x02", // 𨛁
+ 0x286c2: "\x04\x03\x03\x04\x05\x04\x05\x02", // 𨛂
+ 0x286c3: "\x05\x01\x01\x05\x01\x01\x05\x02", // 𨛃
+ 0x286c4: "\x05\x01\x05\x02\x01\x01\x05\x02", // 𨛄
+ 0x286c5: "\x03\x05\x04\x03\x05\x04\x05\x02", // 𨛅
+ 0x286c6: "\x02\x01\x01\x01\x05\x01\x05\x02", // 𨛆
+ 0x286c7: "\x02\x05\x03\x04\x03\x04\x05\x02", // 𨛇
+ 0x286c8: "\x03\x04\x01\x01\x02\x01\x05\x02", // 𨛈
+ 0x286c9: "\x03\x05\x05\x02\x01\x05\x05\x02", // 𨛉
+ 0x286ca: "\x03\x04\x03\x01\x03\x04\x05\x02", // 𨛊
+ 0x286cb: "\x02\x05\x01\x01\x02\x01\x01\x05\x02", // 𨛋
+ 0x286cc: "\x04\x01\x05\x01\x02\x03\x04\x05\x02", // 𨛌
+ 0x286cd: "\x02\x04\x03\x03\x05\x04\x01\x05\x02", // 𨛍
+ 0x286ce: "\x02\x05\x01\x01\x01\x01\x02\x05\x02", // 𨛎
+ 0x286cf: "\x03\x04\x03\x04\x01\x02\x01\x05\x02", // 𨛏
+ 0x286d0: "\x05\x04\x03\x05\x03\x05\x04\x05\x02", // 𨛐
+ 0x286d1: "\x05\x01\x05\x04\x05\x04\x04\x05\x02", // 𨛑
+ 0x286d2: "\x02\x01\x02\x01\x02\x03\x03\x05\x02", // 𨛒
+ 0x286d3: "\x01\x01\x02\x01\x01\x03\x02\x05\x02", // 𨛓
+ 0x286d4: "\x01\x03\x02\x04\x02\x05\x01\x05\x02", // 𨛔
+ 0x286d5: "\x02\x01\x02\x05\x05\x01\x01\x05\x02", // 𨛕
+ 0x286d6: "\x02\x01\x02\x05\x01\x02\x02\x05\x02", // 𨛖
+ 0x286d7: "\x02\x05\x01\x05\x02\x01\x05\x05\x02", // 𨛗
+ 0x286d8: "\x03\x01\x03\x02\x01\x02\x01\x05\x02", // 𨛘
+ 0x286d9: "\x03\x01\x01\x01\x02\x03\x04\x05\x02", // 𨛙
+ 0x286da: "\x01\x01\x02\x01\x02\x05\x01\x05\x02\x01\x05\x05\x03\x04", // 𨛚
+ 0x286db: "\x01\x03\x05\x03\x03\x03\x04\x02\x05\x01\x05\x02\x01\x05", // 𨛛
+ 0x286dc: "\x02\x05\x01\x05\x02\x01\x05\x02\x05\x01\x05\x02\x01\x05", // 𨛜
+ 0x286dd: "\x05\x02\x03\x01\x01\x01\x03\x02\x05\x01\x05\x02\x01\x05", // 𨛝
+ 0x286de: "\x01\x02\x01\x01\x02\x03\x05\x05\x02", // 𨛞
+ 0x286df: "\x05\x02\x03\x03\x01\x01\x03\x05\x02", // 𨛟
+ 0x286e0: "\x05\x04\x01\x03\x02\x05\x01\x05\x02", // 𨛠
+ 0x286e1: "\x02\x05\x01\x03\x05\x04\x01\x05\x02", // 𨛡
+ 0x286e2: "\x01\x02\x03\x04\x02\x05\x01\x05\x02", // 𨛢
+ 0x286e3: "\x03\x04\x01\x05\x02\x05\x01\x05\x02", // 𨛣
+ 0x286e4: "\x01\x03\x05\x03\x03\x03\x04\x05\x02", // 𨛤
+ 0x286e5: "\x03\x05\x03\x05\x01\x01\x02\x05\x02", // 𨛥
+ 0x286e6: "\x05\x01\x01\x03\x02\x05\x01\x02\x05\x01\x05\x02\x01\x05", // 𨛦
+ 0x286e7: "\x04\x01\x05\x04\x02\x03\x04\x05\x02", // 𨛧
+ 0x286e8: "\x01\x02\x01\x03\x05\x02\x01\x05\x02", // 𨛨
+ 0x286e9: "\x01\x02\x05\x01\x01\x01\x02\x05\x02", // 𨛩
+ 0x286ea: "\x03\x02\x01\x02\x01\x03\x04\x05\x02", // 𨛪
+ 0x286eb: "\x03\x01\x02\x03\x04\x03\x05\x03\x02\x05\x01\x05\x02\x01\x05", // 𨛫
+ 0x286ec: "\x03\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x05\x02\x01\x05", // 𨛬
+ 0x286ed: "\x03\x04\x01\x01\x02\x02\x05\x01\x05\x02", // 𨛭
+ 0x286ee: "\x05\x01\x03\x01\x02\x02\x05\x01\x05\x02", // 𨛮
+ 0x286ef: "\x04\x04\x05\x02\x05\x01\x01\x01\x05\x02", // 𨛯
+ 0x286f0: "\x03\x04\x04\x03\x05\x01\x01\x02\x05\x02", // 𨛰
+ 0x286f1: "\x04\x04\x05\x01\x01\x02\x03\x04\x05\x02", // 𨛱
+ 0x286f2: "\x03\x01\x02\x03\x04\x03\x01\x02\x05\x02", // 𨛲
+ 0x286f3: "\x01\x02\x02\x01\x02\x05\x01\x01\x05\x02", // 𨛳
+ 0x286f4: "\x02\x05\x01\x01\x01\x01\x03\x04\x05\x02", // 𨛴
+ 0x286f5: "\x02\x01\x05\x03\x01\x05\x03\x05\x05\x02", // 𨛵
+ 0x286f6: "\x03\x04\x04\x03\x04\x05\x05\x04\x05\x02", // 𨛶
+ 0x286f7: "\x02\x01\x02\x01\x03\x05\x03\x04\x02\x05\x01\x05\x02\x01\x05", // 𨛷
+ 0x286f8: "\x02\x01\x05\x03\x01\x05\x03\x05\x02\x05\x01\x05\x02\x01\x05", // 𨛸
+ 0x286f9: "\x02\x01\x02\x05\x03\x05\x04\x01\x05\x02", // 𨛹
+ 0x286fa: "\x01\x02\x02\x01\x01\x01\x03\x04\x05\x02", // 𨛺
+ 0x286fb: "\x03\x01\x02\x03\x04\x01\x01\x03\x05\x02", // 𨛻
+ 0x286fc: "\x01\x05\x04\x03\x05\x04\x01\x05\x02", // 𨛼
+ 0x286fd: "\x03\x01\x02\x02\x01\x01\x03\x05\x05\x02", // 𨛽
+ 0x286fe: "\x05\x02\x01\x01\x01\x05\x03\x04\x02\x05\x01\x05\x02\x01\x05", // 𨛾
+ 0x286ff: "\x01\x02\x02\x01\x01\x01\x05\x04\x02\x05\x01\x05\x02\x01\x05", // 𨛿
+ 0x28700: "\x01\x03\x04\x02\x05\x01\x01\x05\x02\x05\x01\x05\x02\x01\x05", // 𨜀
+ 0x28701: "\x02\x01\x02\x01\x03\x04\x03\x04\x02\x05\x01\x05\x02\x01\x05", // 𨜁
+ 0x28702: "\x02\x04\x03\x02\x05\x02\x05\x01\x02\x05\x01\x05\x02\x01\x05", // 𨜂
+ 0x28703: "\x01\x02\x01\x05\x04\x01\x05\x03\x05\x02", // 𨜃
+ 0x28704: "\x01\x02\x05\x02\x04\x04\x04\x04\x05\x02", // 𨜄
+ 0x28705: "\x01\x03\x04\x01\x02\x05\x01\x02\x05\x02", // 𨜅
+ 0x28706: "\x01\x03\x04\x04\x03\x01\x01\x05\x05\x02", // 𨜆
+ 0x28707: "\x02\x05\x01\x01\x01\x05\x05\x05\x05\x02", // 𨜇
+ 0x28708: "\x05\x02\x01\x01\x05\x02\x01\x01\x05\x02", // 𨜈
+ 0x28709: "\x05\x02\x01\x01\x05\x01\x01\x03\x05\x02", // 𨜉
+ 0x2870a: "\x03\x05\x03\x05\x01\x01\x05\x04\x05\x02", // 𨜊
+ 0x2870b: "\x05\x02\x01\x03\x02\x05\x01\x05\x02", // 𨜋
+ 0x2870c: "\x04\x04\x05\x02\x05\x01\x05\x01\x05\x02", // 𨜌
+ 0x2870d: "\x02\x05\x01\x01\x01\x02\x03\x04\x05\x02", // 𨜍
+ 0x2870e: "\x01\x05\x04\x01\x02\x03\x04\x05\x02", // 𨜎
+ 0x2870f: "\x05\x03\x05\x04\x02\x05\x02\x02\x01\x05\x02", // 𨜏
+ 0x28710: "\x02\x05\x01\x02\x01\x04\x05\x04\x04\x05\x02", // 𨜐
+ 0x28711: "\x02\x05\x01\x01\x01\x01\x02\x03\x04\x05\x02", // 𨜑
+ 0x28712: "\x01\x01\x01\x02\x05\x03\x01\x03\x04\x05\x02", // 𨜒
+ 0x28713: "\x02\x01\x02\x05\x01\x01\x01\x03\x04\x05\x02", // 𨜓
+ 0x28714: "\x03\x02\x05\x01\x01\x01\x01\x02\x01\x05\x02", // 𨜔
+ 0x28715: "\x05\x05\x03\x01\x02\x02\x01\x03\x04\x05\x02", // 𨜕
+ 0x28716: "\x02\x05\x01\x01\x02\x05\x02\x01\x04\x05\x02", // 𨜖
+ 0x28717: "\x03\x05\x03\x03\x02\x05\x01\x02\x01\x04\x05\x02", // 𨜗
+ 0x28718: "\x05\x01\x03\x01\x05\x04\x01\x02\x01\x05\x02", // 𨜘
+ 0x28719: "\x05\x04\x05\x02\x03\x01\x02\x03\x04\x05\x02", // 𨜙
+ 0x2871a: "\x03\x01\x02\x01\x02\x02\x01\x05\x02\x05\x02", // 𨜚
+ 0x2871b: "\x04\x04\x05\x03\x04\x03\x04\x05\x04\x05\x02", // 𨜛
+ 0x2871c: "\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x02", // 𨜜
+ 0x2871d: "\x02\x05\x01\x02\x05\x01\x01\x01\x05\x02\x05\x01\x05\x02\x01\x05", // 𨜝
+ 0x2871e: "\x01\x02\x01\x03\x02\x05\x01\x01\x02\x05\x01\x05\x02\x01\x05", // 𨜞
+ 0x2871f: "\x04\x03\x01\x02\x05\x03\x05\x01\x01\x05\x02", // 𨜟
+ 0x28720: "\x01\x03\x01\x05\x03\x01\x05\x03\x04\x05\x02", // 𨜠
+ 0x28721: "\x01\x05\x01\x05\x03\x02\x05\x01\x01\x05\x02", // 𨜡
+ 0x28722: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x02\x05\x01\x05\x02\x01\x05", // 𨜢
+ 0x28723: "\x01\x01\x01\x02\x05\x03\x01\x03\x04\x02\x05\x01\x05\x02\x01\x05", // 𨜣
+ 0x28724: "\x01\x02\x01\x02\x05\x04\x01\x05\x03\x05\x02", // 𨜤
+ 0x28725: "\x01\x02\x05\x01\x02\x05\x01\x02\x02\x05\x02", // 𨜥
+ 0x28726: "\x01\x02\x05\x03\x04\x02\x01\x05\x04\x05\x02", // 𨜦
+ 0x28727: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x05\x02", // 𨜧
+ 0x28728: "\x01\x03\x04\x04\x02\x05\x02\x02\x01\x05\x02", // 𨜨
+ 0x28729: "\x03\x02\x05\x01\x01\x02\x05\x03\x04\x05\x02", // 𨜩
+ 0x2872a: "\x03\x04\x03\x04\x03\x04\x02\x05\x01\x05\x02", // 𨜪
+ 0x2872b: "\x03\x05\x01\x03\x03\x01\x01\x03\x04\x05\x02", // 𨜫
+ 0x2872c: "\x03\x05\x02\x05\x01\x01\x05\x01\x05\x05\x02", // 𨜬
+ 0x2872d: "\x01\x05\x02\x05\x01\x01\x01\x03\x04\x05\x02", // 𨜭
+ 0x2872e: "\x03\x05\x03\x04\x05\x01\x01\x05\x04\x05\x02", // 𨜮
+ 0x2872f: "\x02\x05\x01\x01\x01\x01\x03\x04\x04\x02\x05\x01\x05\x02\x01\x05", // 𨜯
+ 0x28730: "\x04\x03\x01\x01\x02\x01\x05\x03\x01\x05\x02", // 𨜰
+ 0x28731: "\x04\x04\x05\x01\x02\x01\x02\x05\x01\x05\x02", // 𨜱
+ 0x28732: "\x03\x01\x02\x01\x02\x01\x02\x01\x05\x02\x02\x05\x01\x05\x02\x01\x05", // 𨜲
+ 0x28733: "\x04\x04\x05\x02\x05\x01\x03\x02\x05\x01\x05\x02", // 𨜳
+ 0x28734: "\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01\x05\x02", // 𨜴
+ 0x28735: "\x02\x05\x03\x04\x01\x02\x05\x02\x02\x01\x05\x02", // 𨜵
+ 0x28736: "\x04\x03\x01\x03\x04\x02\x05\x02\x02\x01\x05\x02", // 𨜶
+ 0x28737: "\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03\x05\x02", // 𨜷
+ 0x28738: "\x01\x03\x03\x02\x05\x01\x01\x05\x02\x01\x05\x02", // 𨜸
+ 0x28739: "\x05\x05\x01\x05\x05\x01\x05\x01\x02\x01\x05\x02", // 𨜹
+ 0x2873a: "\x03\x05\x05\x04\x05\x04\x01\x05\x04\x01\x05\x02", // 𨜺
+ 0x2873b: "\x02\x01\x05\x03\x01\x05\x04\x01\x03\x04\x05\x02", // 𨜻
+ 0x2873c: "\x01\x02\x05\x02\x02\x01\x01\x02\x03\x04\x05\x02", // 𨜼
+ 0x2873d: "\x03\x05\x01\x03\x03\x05\x04\x03\x05\x04\x05\x02", // 𨜽
+ 0x2873e: "\x03\x04\x01\x05\x01\x01\x03\x02\x05\x01\x05\x02", // 𨜾
+ 0x2873f: "\x05\x02\x02\x05\x02\x01\x01\x02\x03\x04\x05\x02", // 𨜿
+ 0x28740: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x05\x02", // 𨝀
+ 0x28741: "\x03\x05\x02\x05\x01\x01\x03\x05\x01\x05\x05\x02", // 𨝁
+ 0x28742: "\x01\x03\x03\x02\x05\x01\x01\x02\x03\x04\x05\x02", // 𨝂
+ 0x28743: "\x04\x04\x05\x03\x01\x02\x01\x02\x05\x01\x05\x02", // 𨝃
+ 0x28744: "\x03\x01\x02\x02\x01\x01\x03\x05\x03\x04\x05\x02", // 𨝄
+ 0x28745: "\x05\x05\x03\x03\x02\x05\x01\x01\x03\x05\x02\x05\x01\x05\x02\x01\x05", // 𨝅
+ 0x28746: "\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x05\x02", // 𨝆
+ 0x28747: "\x01\x02\x05\x02\x03\x01\x01\x02\x01\x05\x05\x02", // 𨝇
+ 0x28748: "\x03\x02\x01\x02\x01\x05\x04\x01\x03\x02\x05\x02", // 𨝈
+ 0x28749: "\x05\x05\x05\x02\x05\x01\x01\x01\x03\x04\x05\x02", // 𨝉
+ 0x2874a: "\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04\x05\x02", // 𨝊
+ 0x2874b: "\x03\x05\x04\x01\x05\x04\x01\x01\x02\x03\x04\x05\x02", // 𨝋
+ 0x2874c: "\x01\x02\x02\x05\x01\x01\x01\x02\x03\x01\x05\x05\x02", // 𨝌
+ 0x2874d: "\x01\x02\x05\x02\x02\x01\x01\x03\x04\x05\x05\x05\x02", // 𨝍
+ 0x2874e: "\x04\x01\x03\x05\x01\x01\x02\x04\x01\x03\x04\x05\x02", // 𨝎
+ 0x2874f: "\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04\x05\x02", // 𨝏
+ 0x28750: "\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03\x05\x02", // 𨝐
+ 0x28751: "\x05\x05\x02\x01\x02\x05\x03\x04\x05\x02", // 𨝑
+ 0x28752: "\x01\x02\x02\x03\x04\x01\x01\x02\x03\x04\x05\x02", // 𨝒
+ 0x28753: "\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04\x05\x02", // 𨝓
+ 0x28754: "\x03\x03\x02\x02\x05\x02\x01\x01\x01\x02\x01\x05\x02", // 𨝔
+ 0x28755: "\x04\x03\x01\x01\x02\x01\x02\x05\x02\x02\x01\x05\x02", // 𨝕
+ 0x28756: "\x05\x05\x05\x02\x05\x01\x05\x02\x01\x05\x01\x03\x04\x03\x04\x02\x03\x04", // 𨝖
+ 0x28757: "\x04\x01\x04\x03\x02\x05\x03\x05\x02\x05\x01\x05\x02", // 𨝗
+ 0x28758: "\x02\x01\x05\x03\x01\x05\x03\x04\x03\x01\x02\x05\x02", // 𨝘
+ 0x28759: "\x03\x04\x01\x02\x05\x01\x01\x02\x05\x01\x01\x05\x02", // 𨝙
+ 0x2875a: "\x02\x05\x01\x01\x02\x02\x05\x02\x05\x01\x01\x02\x05\x01\x05\x02\x01\x05", // 𨝚
+ 0x2875b: "\x01\x02\x01\x02\x03\x04\x01\x01\x02\x03\x04\x05\x02", // 𨝛
+ 0x2875c: "\x01\x02\x01\x04\x03\x01\x01\x02\x05\x02\x05\x04", // 𨝜
+ 0x2875d: "\x01\x02\x02\x05\x01\x01\x01\x02\x03\x01\x05\x02\x05\x01\x05\x02\x01\x05", // 𨝝
+ 0x2875e: "\x02\x01\x05\x03\x01\x05\x03\x04\x03\x01\x05\x02\x05\x01\x05\x02\x01\x05", // 𨝞
+ 0x2875f: "\x03\x01\x02\x03\x04\x03\x01\x03\x04\x01\x03\x02\x05\x01\x05\x02\x01\x05", // 𨝟
+ 0x28760: "\x03\x05\x04\x01\x05\x04\x01\x01\x02\x03\x04\x02\x05\x01\x05\x02\x01\x05", // 𨝠
+ 0x28761: "\x02\x05\x02\x04\x04\x05\x01\x01\x02\x03\x04\x05\x02", // 𨝡
+ 0x28762: "\x04\x04\x05\x01\x02\x02\x01\x01\x01\x05\x04\x05\x02", // 𨝢
+ 0x28763: "\x05\x04\x04\x01\x02\x05\x02\x02\x01\x01\x01\x05\x02", // 𨝣
+ 0x28764: "\x05\x04\x05\x04\x02\x05\x01\x01\x01\x03\x04\x05\x02", // 𨝤
+ 0x28765: "\x01\x02\x01\x02\x02\x05\x01\x01\x03\x04\x05\x05\x02", // 𨝥
+ 0x28766: "\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x01\x02\x05\x01\x05\x02\x01\x05", // 𨝦
+ 0x28767: "\x04\x01\x03\x05\x02\x02\x01\x05\x04\x05\x04\x05\x02", // 𨝧
+ 0x28768: "\x01\x02\x01\x01\x02\x02\x01\x02\x05\x01\x01\x05\x02", // 𨝨
+ 0x28769: "\x01\x02\x05\x01\x01\x01\x02\x03\x01\x03\x04\x02\x05\x01\x05\x02\x01\x05", // 𨝩
+ 0x2876a: "\x02\x05\x02\x02\x01\x03\x01\x01\x02\x01\x02\x01\x05\x02", // 𨝪
+ 0x2876b: "\x03\x04\x01\x02\x05\x01\x05\x04\x01\x05\x04\x01\x05\x02", // 𨝫
+ 0x2876c: "\x03\x01\x01\x02\x02\x02\x02\x01\x04\x04\x04\x04\x02\x05\x01\x05\x02\x01\x05", // 𨝬
+ 0x2876d: "\x04\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x02", // 𨝭
+ 0x2876e: "\x01\x02\x02\x01\x01\x01\x05\x04\x01\x02\x03\x04\x05\x02", // 𨝮
+ 0x2876f: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01\x05\x02", // 𨝯
+ 0x28770: "\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01\x05\x02", // 𨝰
+ 0x28771: "\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04\x05\x02", // 𨝱
+ 0x28772: "\x03\x02\x05\x01\x01\x01\x04\x01\x03\x04\x01\x03\x05\x02", // 𨝲
+ 0x28773: "\x02\x01\x02\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04\x05\x02", // 𨝳
+ 0x28774: "\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04\x05\x02", // 𨝴
+ 0x28775: "\x01\x02\x03\x04\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 𨝵
+ 0x28776: "\x01\x02\x05\x01\x02\x05\x01\x01\x02\x05\x01\x01\x05\x02", // 𨝶
+ 0x28777: "\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04\x05\x02", // 𨝷
+ 0x28778: "\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02\x05\x02", // 𨝸
+ 0x28779: "\x02\x01\x05\x03\x01\x05\x02\x02\x04\x03\x01\x05\x02", // 𨝹
+ 0x2877a: "\x03\x02\x05\x01\x01\x01\x04\x01\x03\x05\x03\x04\x05\x02", // 𨝺
+ 0x2877b: "\x05\x01\x01\x01\x02\x01\x03\x05\x04\x01\x02\x04\x05\x02", // 𨝻
+ 0x2877c: "\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04\x02\x05\x01\x05\x02\x01\x05", // 𨝼
+ 0x2877d: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x01\x05\x04\x05\x02", // 𨝽
+ 0x2877e: "\x02\x05\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01\x05\x02", // 𨝾
+ 0x2877f: "\x02\x05\x01\x01\x02\x02\x05\x04\x03\x01\x01\x02\x05\x02", // 𨝿
+ 0x28780: "\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x03\x04\x02\x05\x01\x05\x02\x01\x05", // 𨞀
+ 0x28781: "\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02\x02\x05\x01\x05\x02\x01\x05", // 𨞁
+ 0x28782: "\x02\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x02", // 𨞂
+ 0x28783: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x05\x02", // 𨞃
+ 0x28784: "\x03\x03\x04\x03\x04\x03\x04\x03\x04\x01\x02\x01\x05\x02", // 𨞄
+ 0x28785: "\x03\x04\x03\x04\x02\x01\x03\x02\x05\x01\x01\x01\x05\x02", // 𨞅
+ 0x28786: "\x03\x05\x04\x05\x05\x02\x05\x01\x01\x01\x03\x04\x05\x02", // 𨞆
+ 0x28787: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04\x05\x02", // 𨞇
+ 0x28788: "\x05\x04\x01\x05\x04\x01\x01\x03\x01\x01\x03\x04\x05\x02", // 𨞈
+ 0x28789: "\x05\x01\x05\x02\x05\x03\x05\x04\x01\x01\x02\x01\x05\x02", // 𨞉
+ 0x2878a: "\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04\x05\x02", // 𨞊
+ 0x2878b: "\x01\x03\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x05\x02", // 𨞋
+ 0x2878c: "\x03\x05\x04\x05\x03\x01\x02\x05\x01\x04\x03\x01\x05\x02", // 𨞌
+ 0x2878d: "\x02\x05\x01\x02\x05\x01\x05\x02\x02\x01\x05\x02\x03\x05\x02", // 𨞍
+ 0x2878e: "\x02\x05\x01\x04\x05\x01\x02\x05\x01\x01\x01\x02\x05\x02", // 𨞎
+ 0x2878f: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x05\x02\x01\x05", // 𨞏
+ 0x28790: "\x01\x03\x05\x05\x03\x04\x02\x05\x02\x02\x01\x05\x02", // 𨞐
+ 0x28791: "\x05\x05\x05\x02\x05\x01\x05\x02\x01\x05\x03\x02\x05\x01\x01\x01\x01\x03\x04\x04", // 𨞑
+ 0x28792: "\x03\x01\x02\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01\x05\x02", // 𨞒
+ 0x28793: "\x03\x02\x05\x03\x04\x03\x01\x02\x03\x04\x01\x03\x04\x05\x02", // 𨞓
+ 0x28794: "\x02\x05\x01\x05\x02\x01\x05\x01\x02\x02\x01\x03\x04\x02\x05\x01\x05\x02\x01\x05", // 𨞔
+ 0x28795: "\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04\x05\x02", // 𨞕
+ 0x28796: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x04\x04\x05\x04\x05\x02", // 𨞖
+ 0x28797: "\x05\x01\x01\x03\x02\x05\x01\x04\x03\x01\x01\x01\x02\x05\x02", // 𨞗
+ 0x28798: "\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x04\x03\x01\x05\x02", // 𨞘
+ 0x28799: "\x02\x01\x05\x03\x01\x05\x01\x03\x05\x03\x03\x03\x04\x05\x02", // 𨞙
+ 0x2879a: "\x02\x05\x01\x01\x03\x05\x01\x01\x02\x05\x02\x02\x01\x05\x02", // 𨞚
+ 0x2879b: "\x01\x02\x01\x02\x02\x05\x01\x01\x03\x05\x03\x04\x05\x05\x02", // 𨞛
+ 0x2879c: "\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x04\x05\x02", // 𨞜
+ 0x2879d: "\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x05\x02", // 𨞝
+ 0x2879e: "\x03\x05\x01\x01\x03\x05\x01\x01\x02\x05\x02\x02\x01\x05\x02", // 𨞞
+ 0x2879f: "\x01\x02\x02\x01\x01\x01\x01\x02\x01\x03\x04\x03\x04\x05\x02", // 𨞟
+ 0x287a0: "\x02\x05\x01\x05\x02\x01\x05\x01\x02\x02\x01\x03\x04\x02\x05\x01\x05\x02\x01\x05", // 𨞠
+ 0x287a1: "\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01\x02\x05\x01\x05\x02\x01\x05", // 𨞡
+ 0x287a2: "\x01\x02\x03\x04\x03\x04\x03\x04\x02\x04\x01\x03\x04\x05\x02", // 𨞢
+ 0x287a3: "\x02\x01\x02\x01\x01\x03\x01\x02\x03\x03\x05\x03\x04\x05\x02", // 𨞣
+ 0x287a4: "\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01\x05\x02", // 𨞤
+ 0x287a5: "\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x02", // 𨞥
+ 0x287a6: "\x02\x01\x05\x03\x01\x05\x01\x03\x05\x03\x03\x03\x04\x02\x05\x01\x05\x02\x01\x05", // 𨞦
+ 0x287a7: "\x04\x03\x03\x04\x04\x03\x03\x04\x03\x05\x04\x01\x05\x02\x05\x02", // 𨞧
+ 0x287a8: "\x01\x02\x01\x02\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01\x05\x02", // 𨞨
+ 0x287a9: "\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x02", // 𨞩
+ 0x287aa: "\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04\x05\x02", // 𨞪
+ 0x287ab: "\x01\x02\x01\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04\x05\x02", // 𨞫
+ 0x287ac: "\x01\x03\x02\x05\x01\x01\x02\x01\x01\x03\x04\x01\x02\x01\x05\x02", // 𨞬
+ 0x287ad: "\x03\x05\x02\x05\x01\x03\x05\x03\x05\x02\x05\x01\x03\x05\x05\x02", // 𨞭
+ 0x287ae: "\x01\x02\x02\x01\x01\x01\x05\x04\x03\x02\x03\x04\x03\x04\x02\x05\x01\x05\x02\x01\x05", // 𨞮
+ 0x287af: "\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x03\x05\x04\x02\x05\x01\x05\x02\x01\x05", // 𨞯
+ 0x287b0: "\x02\x05\x01\x05\x02\x01\x05\x03\x02\x05\x01\x01\x01\x05\x02\x05\x01\x05\x02\x01\x05", // 𨞰
+ 0x287b1: "\x02\x05\x01\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x01\x05\x02", // 𨞱
+ 0x287b2: "\x03\x01\x01\x03\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x02", // 𨞲
+ 0x287b3: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x05\x02", // 𨞳
+ 0x287b4: "\x04\x03\x03\x04\x04\x03\x03\x04\x02\x05\x02\x05\x01\x01\x05\x02", // 𨞴
+ 0x287b5: "\x05\x01\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04\x05\x02", // 𨞵
+ 0x287b6: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x02\x03\x04\x05\x02", // 𨞶
+ 0x287b7: "\x03\x01\x03\x04\x03\x01\x03\x04\x02\x05\x01\x02\x01\x04\x05\x02", // 𨞷
+ 0x287b8: "\x02\x05\x01\x05\x02\x01\x05\x03\x02\x05\x01\x01\x01\x05\x02\x05\x01\x05\x02\x01\x05", // 𨞸
+ 0x287b9: "\x02\x01\x05\x03\x01\x05\x01\x02\x03\x04\x01\x02\x03\x04\x05\x02", // 𨞹
+ 0x287ba: "\x01\x03\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04\x05\x02", // 𨞺
+ 0x287bb: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x04\x04\x04\x04\x05\x02", // 𨞻
+ 0x287bc: "\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04\x05\x02", // 𨞼
+ 0x287bd: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x05\x02", // 𨞽
+ 0x287be: "\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x01\x03\x04\x05\x02", // 𨞾
+ 0x287bf: "\x04\x03\x01\x01\x02\x01\x04\x04\x04\x04\x01\x01\x01\x03\x04\x05\x02", // 𨞿
+ 0x287c0: "\x03\x01\x02\x03\x04\x03\x05\x03\x03\x04\x02\x04\x01\x03\x04\x05\x02", // 𨟀
+ 0x287c1: "\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x04\x01\x05\x03\x05\x02", // 𨟁
+ 0x287c2: "\x01\x02\x01\x02\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x02", // 𨟂
+ 0x287c3: "\x03\x03\x02\x02\x05\x02\x01\x03\x01\x02\x01\x03\x01\x03\x04\x05\x02", // 𨟃
+ 0x287c4: "\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x03\x04\x01\x03\x04\x02\x05\x01\x05\x02\x01\x05", // 𨟄
+ 0x287c5: "\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x03\x04\x01\x03\x04\x05\x02", // 𨟅
+ 0x287c6: "\x01\x02\x02\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03\x05\x02", // 𨟆
+ 0x287c7: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01\x05\x02", // 𨟇
+ 0x287c8: "\x03\x03\x03\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04\x05\x02", // 𨟈
+ 0x287c9: "\x01\x01\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x03\x04\x05\x02", // 𨟉
+ 0x287ca: "\x03\x03\x01\x02\x03\x03\x01\x02\x02\x05\x01\x01\x01\x03\x04\x05\x02", // 𨟊
+ 0x287cb: "\x03\x02\x01\x05\x01\x01\x03\x02\x05\x03\x04\x01\x01\x03\x02\x05\x02", // 𨟋
+ 0x287cc: "\x03\x03\x03\x05\x01\x01\x02\x05\x01\x02\x05\x01\x01\x02\x04\x05\x02", // 𨟌
+ 0x287cd: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x02\x05\x01\x01\x02\x05\x02", // 𨟍
+ 0x287ce: "\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x02\x05\x05\x02", // 𨟎
+ 0x287cf: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x01\x02\x05\x02\x05\x01\x01\x05\x02", // 𨟏
+ 0x287d0: "\x04\x01\x02\x05\x01\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x01\x05\x02", // 𨟐
+ 0x287d1: "\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01\x05\x02", // 𨟑
+ 0x287d2: "\x01\x02\x02\x02\x05\x02\x02\x01\x04\x05\x02\x05\x01\x01\x01\x05\x02", // 𨟒
+ 0x287d3: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01\x05\x02", // 𨟓
+ 0x287d4: "\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x02\x02\x01\x01\x05\x03\x05\x02", // 𨟔
+ 0x287d5: "\x01\x05\x04\x01\x02\x01\x01\x05\x04\x01\x02\x01\x02\x05\x01\x01\x05\x02", // 𨟕
+ 0x287d6: "\x04\x01\x03\x01\x02\x03\x05\x04\x01\x02\x03\x05\x04\x01\x03\x02\x05\x01\x05\x02", // 𨟖
+ 0x287d7: "\x01\x02\x02\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04\x05\x02", // 𨟗
+ 0x287d8: "\x01\x04\x05\x02\x04\x01\x03\x04\x04\x03\x01\x02\x02\x04\x03\x01\x05\x02", // 𨟘
+ 0x287d9: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x05\x03\x01\x05\x02", // 𨟙
+ 0x287da: "\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x01\x03\x05\x03\x04\x05\x02", // 𨟚
+ 0x287db: "\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04\x05\x02", // 𨟛
+ 0x287dc: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x02\x05\x01\x01\x01\x02\x05\x02", // 𨟜
+ 0x287dd: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x04\x01\x05\x04\x02\x05\x01\x01\x05\x02", // 𨟝
+ 0x287de: "\x04\x01\x02\x05\x01\x05\x02\x01\x01\x02\x01\x03\x02\x05\x01\x01\x05\x02", // 𨟞
+ 0x287df: "\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x01\x03\x02\x05\x01\x05\x02", // 𨟟
+ 0x287e0: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x02", // 𨟠
+ 0x287e1: "\x01\x02\x02\x01\x01\x01\x01\x02\x02\x05\x02\x02\x01\x01\x04\x05\x04\x04\x05\x02", // 𨟡
+ 0x287e2: "\x01\x01\x02\x01\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04\x05\x02", // 𨟢
+ 0x287e3: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x02\x05\x01\x01\x05\x02\x01\x05\x02", // 𨟣
+ 0x287e4: "\x01\x02\x03\x04\x01\x02\x03\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x05\x02", // 𨟤
+ 0x287e5: "\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x02\x03\x04\x05\x02", // 𨟥
+ 0x287e6: "\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x01\x03\x04\x05\x05\x05\x02", // 𨟦
+ 0x287e7: "\x03\x04\x04\x03\x02\x05\x02\x02\x01\x05\x01\x01\x05\x04\x01\x02\x03\x04\x05\x02", // 𨟧
+ 0x287e8: "\x04\x04\x05\x03\x02\x01\x03\x02\x05\x01\x01\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x02", // 𨟨
+ 0x287e9: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x02\x05\x01\x01\x02\x05\x01\x05\x02\x02\x02\x05\x01\x05\x02\x01\x05", // 𨟩
+ 0x287ea: "\x02\x01\x02\x01\x01\x01\x02\x04\x01\x01\x01\x02\x05\x01\x04\x01\x01\x01\x02\x05\x01\x05\x02", // 𨟪
+ 0x287eb: "\x01\x02\x05\x03\x04\x01\x02\x05\x03\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x05\x02", // 𨟫
+ 0x287ec: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x02\x05\x01\x01\x02\x05\x01\x05\x02\x02\x05\x02", // 𨟬
+ 0x287ed: "\x03\x01\x04\x03\x01\x04\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x01\x01\x05\x02", // 𨟭
+ 0x287ee: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x03\x01\x03\x04\x02\x05\x01\x05\x02\x01\x05", // 𨟮
+ 0x287ef: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x03\x04\x01\x05\x02", // 𨟯
+ 0x287f0: "\x01\x02\x05\x03\x05\x01\x01\x05\x02", // 𨟰
+ 0x287f1: "\x01\x02\x05\x03\x05\x01\x01\x03\x05\x04", // 𨟱
+ 0x287f2: "\x01\x01\x02\x05\x03\x05\x01\x01\x05\x04", // 𨟲
+ 0x287f3: "\x01\x02\x05\x03\x05\x01\x01\x04\x03\x04", // 𨟳
+ 0x287f4: "\x01\x02\x05\x03\x05\x01\x01\x03\x05\x01\x01", // 𨟴
+ 0x287f5: "\x01\x02\x05\x03\x05\x01\x01\x01\x05\x03\x05", // 𨟵
+ 0x287f6: "\x01\x05\x03\x04\x01\x02\x05\x03\x05\x01\x01", // 𨟶
+ 0x287f7: "\x01\x02\x05\x03\x05\x01\x01\x01\x03\x02\x04", // 𨟷
+ 0x287f8: "\x01\x02\x05\x03\x05\x01\x01\x03\x05\x03\x03", // 𨟸
+ 0x287f9: "\x01\x02\x05\x03\x05\x01\x01\x03\x04\x01\x05", // 𨟹
+ 0x287fa: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x05\x05", // 𨟺
+ 0x287fb: "\x05\x02\x01\x03\x01\x02\x05\x03\x05\x01\x01", // 𨟻
+ 0x287fc: "\x01\x02\x05\x03\x05\x01\x01\x04\x01\x03\x05", // 𨟼
+ 0x287fd: "\x04\x03\x03\x04\x01\x02\x05\x03\x05\x01\x01", // 𨟽
+ 0x287fe: "\x01\x02\x05\x03\x05\x01\x01\x03\x05\x01\x05", // 𨟾
+ 0x287ff: "\x01\x02\x05\x03\x05\x01\x01\x03\x04\x03\x04", // 𨟿
+ 0x28800: "\x01\x02\x05\x03\x05\x01\x01\x01\x05\x05\x04", // 𨠀
+ 0x28801: "\x01\x02\x05\x03\x05\x01\x01\x04\x05\x03\x05", // 𨠁
+ 0x28802: "\x01\x02\x05\x03\x05\x01\x01\x01\x05\x05\x01", // 𨠂
+ 0x28803: "\x01\x02\x05\x03\x05\x01\x01\x02\x01\x05\x04", // 𨠃
+ 0x28804: "\x01\x02\x05\x03\x05\x01\x01\x01\x03\x05\x04", // 𨠄
+ 0x28805: "\x01\x02\x05\x03\x05\x01\x01\x03\x05\x03\x04", // 𨠅
+ 0x28806: "\x02\x05\x03\x04\x01\x02\x05\x03\x05\x01\x01", // 𨠆
+ 0x28807: "\x01\x02\x05\x03\x05\x01\x01\x03\x03\x01\x02", // 𨠇
+ 0x28808: "\x01\x02\x05\x03\x05\x01\x01\x05\x04\x05\x04", // 𨠈
+ 0x28809: "\x01\x02\x05\x03\x05\x01\x01\x04\x05\x04\x04", // 𨠉
+ 0x2880a: "\x01\x02\x05\x03\x05\x01\x01\x02\x05\x03\x04", // 𨠊
+ 0x2880b: "\x01\x02\x05\x03\x05\x01\x01\x03\x03\x05\x04\x04", // 𨠋
+ 0x2880c: "\x01\x02\x05\x03\x05\x01\x01\x03\x05\x04\x04\x04", // 𨠌
+ 0x2880d: "\x01\x02\x05\x03\x05\x01\x01\x03\x02\x01\x05\x04", // 𨠍
+ 0x2880e: "\x01\x02\x05\x03\x05\x01\x01\x03\x04\x01\x05\x04", // 𨠎
+ 0x2880f: "\x01\x02\x05\x03\x05\x01\x01\x03\x05\x01\x05\x01", // 𨠏
+ 0x28810: "\x01\x02\x05\x03\x05\x01\x01\x02\x01\x02\x01\x01\x05", // 𨠐
+ 0x28811: "\x01\x02\x05\x03\x05\x01\x01\x03\x01\x05\x02\x05", // 𨠑
+ 0x28812: "\x05\x04\x01\x03\x04\x01\x02\x05\x03\x05\x01\x01", // 𨠒
+ 0x28813: "\x01\x02\x05\x03\x05\x01\x01\x03\x05\x02\x03", // 𨠓
+ 0x28814: "\x01\x02\x05\x03\x05\x01\x01\x04\x05\x04\x03\x04", // 𨠔
+ 0x28815: "\x01\x02\x05\x03\x05\x01\x01\x04\x05\x05\x03\x04", // 𨠕
+ 0x28816: "\x01\x02\x05\x03\x05\x01\x01\x03\x05\x05\x01\x05", // 𨠖
+ 0x28817: "\x01\x02\x05\x03\x05\x01\x01\x02\x05\x01\x03\x04", // 𨠗
+ 0x28818: "\x01\x02\x05\x03\x05\x01\x01\x03\x02\x05\x01\x01", // 𨠘
+ 0x28819: "\x01\x02\x05\x03\x05\x01\x01\x01\x03\x02\x04\x01", // 𨠙
+ 0x2881a: "\x01\x02\x05\x03\x05\x01\x01\x02\x05\x01\x01\x01", // 𨠚
+ 0x2881b: "\x01\x02\x05\x03\x05\x01\x01\x01\x05\x05\x04", // 𨠛
+ 0x2881c: "\x01\x02\x05\x03\x05\x01\x01\x05\x03\x02\x05\x04", // 𨠜
+ 0x2881d: "\x01\x02\x05\x03\x05\x01\x01\x01\x01\x02\x03\x04", // 𨠝
+ 0x2881e: "\x01\x02\x05\x03\x05\x01\x01\x03\x05\x03\x03\x04", // 𨠞
+ 0x2881f: "\x01\x02\x05\x03\x05\x01\x01\x01\x04\x03\x01\x02", // 𨠟
+ 0x28820: "\x01\x02\x05\x03\x05\x01\x01\x03\x01\x01\x02\x01", // 𨠠
+ 0x28821: "\x01\x02\x05\x03\x05\x01\x01\x05\x01\x02\x05\x04", // 𨠡
+ 0x28822: "\x05\x04\x01\x03\x02\x01\x02\x05\x03\x05\x01\x01", // 𨠢
+ 0x28823: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x01\x02\x01", // 𨠣
+ 0x28824: "\x01\x02\x05\x03\x05\x01\x01\x01\x01\x03\x05\x03\x04", // 𨠤
+ 0x28825: "\x01\x02\x05\x03\x05\x01\x01\x03\x05\x01\x03\x05\x05", // 𨠥
+ 0x28826: "\x01\x02\x05\x03\x05\x01\x01\x04\x01\x03\x04\x03\x04", // 𨠦
+ 0x28827: "\x01\x02\x02\x01\x01\x01\x01\x02\x05\x03\x05\x01\x01", // 𨠧
+ 0x28828: "\x01\x02\x05\x03\x05\x01\x01\x04\x01\x03\x04\x03\x02", // 𨠨
+ 0x28829: "\x01\x02\x05\x03\x05\x01\x01\x04\x03\x04\x02\x04\x02", // 𨠩
+ 0x2882a: "\x01\x02\x05\x03\x05\x01\x01\x04\x01\x05\x04\x01\x02", // 𨠪
+ 0x2882b: "\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x03\x05\x04", // 𨠫
+ 0x2882c: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x01\x03\x03\x05", // 𨠬
+ 0x2882d: "\x03\x04\x01\x02\x05\x01\x01\x02\x05\x03\x05\x01\x01", // 𨠭
+ 0x2882e: "\x01\x02\x05\x03\x05\x01\x01\x03\x05\x03\x04\x05\x02", // 𨠮
+ 0x2882f: "\x01\x02\x05\x03\x05\x01\x01\x04\x01\x03\x04\x05\x02", // 𨠯
+ 0x28830: "\x03\x02\x01\x05\x03\x04\x01\x02\x05\x03\x05\x01\x01", // 𨠰
+ 0x28831: "\x01\x02\x05\x03\x05\x01\x01\x03\x05\x04\x01\x01\x05", // 𨠱
+ 0x28832: "\x01\x02\x05\x03\x05\x01\x01\x03\x02\x03\x01\x02\x01", // 𨠲
+ 0x28833: "\x01\x02\x05\x03\x05\x01\x01\x04\x01\x05\x03\x03\x04", // 𨠳
+ 0x28834: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x05\x03\x05\x01", // 𨠴
+ 0x28835: "\x01\x02\x05\x03\x05\x01\x01\x02\x04\x03\x01\x03\x05", // 𨠵
+ 0x28836: "\x01\x02\x05\x03\x05\x01\x01\x03\x05\x05\x02\x01\x05", // 𨠶
+ 0x28837: "\x01\x02\x05\x01\x02\x02\x01\x01\x02\x05\x03\x05\x01\x01", // 𨠷
+ 0x28838: "\x01\x02\x05\x03\x05\x01\x01\x01\x05\x05\x05\x01\x02\x01", // 𨠸
+ 0x28839: "\x01\x02\x05\x03\x05\x01\x01\x01\x03\x04\x01\x02\x03\x04", // 𨠹
+ 0x2883a: "\x01\x02\x05\x03\x05\x01\x01\x04\x01\x02\x05\x01\x05\x02", // 𨠺
+ 0x2883b: "\x01\x02\x05\x03\x05\x01\x01\x04\x04\x05\x01\x01\x03\x05", // 𨠻
+ 0x2883c: "\x01\x02\x05\x03\x05\x01\x01\x04\x04\x05\x01\x02\x03\x04", // 𨠼
+ 0x2883d: "\x01\x02\x05\x03\x05\x01\x01\x01\x03\x05\x05\x03\x04", // 𨠽
+ 0x2883e: "\x01\x01\x02\x01\x01\x02\x05\x03\x05\x01\x01\x05\x03\x04", // 𨠾
+ 0x2883f: "\x01\x02\x05\x03\x05\x01\x01\x01\x03\x04\x03\x04\x03\x04", // 𨠿
+ 0x28840: "\x01\x02\x05\x03\x05\x01\x01\x02\x04\x03\x02\x05\x01\x01", // 𨡀
+ 0x28841: "\x01\x02\x05\x03\x05\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 𨡁
+ 0x28842: "\x01\x02\x05\x03\x05\x01\x01\x03\x04\x01\x03\x02\x05\x02", // 𨡂
+ 0x28843: "\x01\x02\x05\x03\x05\x01\x01\x03\x05\x04\x01\x01\x01\x02", // 𨡃
+ 0x28844: "\x01\x02\x05\x03\x05\x01\x01\x04\x01\x01\x01\x02\x05\x01", // 𨡄
+ 0x28845: "\x01\x02\x05\x03\x05\x01\x01\x04\x03\x01\x02\x03\x04\x05", // 𨡅
+ 0x28846: "\x01\x02\x05\x03\x05\x01\x01\x03\x04\x03\x04\x05\x02\x01", // 𨡆
+ 0x28847: "\x01\x02\x05\x03\x05\x01\x01\x05\x01\x02\x05\x02\x02\x01", // 𨡇
+ 0x28848: "\x01\x02\x05\x03\x05\x01\x01\x05\x02\x01\x03\x01\x02\x01", // 𨡈
+ 0x28849: "\x01\x02\x05\x03\x05\x01\x01\x05\x01\x01\x04\x05\x05\x04", // 𨡉
+ 0x2884a: "\x01\x02\x05\x03\x05\x01\x01\x02\x05\x01\x05\x03\x02\x02", // 𨡊
+ 0x2884b: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x03\x04\x02\x05\x01", // 𨡋
+ 0x2884c: "\x01\x02\x05\x03\x05\x01\x01\x03\x01\x02\x03\x04\x05\x03\x01", // 𨡌
+ 0x2884d: "\x01\x02\x05\x03\x05\x01\x01\x02\x05\x03\x04\x02\x05\x01\x01", // 𨡍
+ 0x2884e: "\x01\x02\x05\x03\x05\x01\x01\x03\x04\x01\x05\x04\x05\x04\x04", // 𨡎
+ 0x2884f: "\x01\x02\x05\x03\x05\x01\x01\x02\x05\x01\x02\x02\x01\x03\x04", // 𨡏
+ 0x28850: "\x03\x01\x01\x02\x05\x02\x02\x02\x01\x02\x05\x03\x05\x01\x01", // 𨡐
+ 0x28851: "\x01\x02\x05\x03\x05\x01\x01\x03\x05\x01\x02\x01\x02\x05\x01", // 𨡑
+ 0x28852: "\x01\x02\x05\x03\x05\x01\x01\x03\x05\x03\x01\x01\x02\x01\x02\x01", // 𨡒
+ 0x28853: "\x05\x02\x01\x03\x03\x05\x04\x04\x01\x02\x05\x03\x05\x01\x01", // 𨡓
+ 0x28854: "\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x05\x03\x05\x01\x01", // 𨡔
+ 0x28855: "\x01\x02\x05\x03\x05\x01\x01\x03\x02\x05\x01\x01\x03\x01\x02", // 𨡕
+ 0x28856: "\x01\x02\x05\x03\x05\x01\x01\x01\x01\x05\x02\x05\x02\x02\x01", // 𨡖
+ 0x28857: "\x01\x02\x05\x03\x05\x01\x01\x04\x04\x05\x03\x05\x05\x01\x05", // 𨡗
+ 0x28858: "\x01\x02\x05\x03\x05\x01\x01\x03\x01\x01\x02\x05\x02\x02\x02", // 𨡘
+ 0x28859: "\x01\x02\x05\x03\x05\x01\x01\x04\x03\x02\x05\x01\x01\x01\x02", // 𨡙
+ 0x2885a: "\x01\x02\x05\x03\x05\x01\x01\x01\x05\x04\x03\x05\x04\x01", // 𨡚
+ 0x2885b: "\x03\x02\x05\x01\x01\x03\x05\x01\x02\x05\x03\x05\x01\x01", // 𨡛
+ 0x2885c: "\x01\x02\x05\x03\x05\x01\x01\x03\x04\x01\x03\x03\x05\x04\x01", // 𨡜
+ 0x2885d: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x01\x02\x05\x02\x02\x01", // 𨡝
+ 0x2885e: "\x01\x02\x05\x03\x05\x01\x01\x01\x03\x02\x05\x02\x05\x01\x01", // 𨡞
+ 0x2885f: "\x01\x02\x05\x03\x05\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02", // 𨡟
+ 0x28860: "\x01\x02\x05\x03\x05\x01\x01\x02\x05\x01\x05\x03\x05\x01\x01", // 𨡠
+ 0x28861: "\x04\x03\x01\x02\x05\x03\x05\x01\x01\x05\x01\x05\x03\x04\x01", // 𨡡
+ 0x28862: "\x03\x04\x01\x05\x03\x05\x03\x04\x01\x02\x05\x03\x05\x01\x01", // 𨡢
+ 0x28863: "\x03\x04\x01\x05\x04\x05\x04\x04\x01\x02\x05\x03\x05\x01\x01", // 𨡣
+ 0x28864: "\x01\x02\x05\x03\x05\x01\x01\x04\x01\x02\x05\x01\x03\x04\x01", // 𨡤
+ 0x28865: "\x01\x02\x05\x03\x05\x01\x01\x04\x01\x03\x02\x04\x02\x05\x01", // 𨡥
+ 0x28866: "\x01\x02\x05\x03\x05\x01\x01\x05\x05\x04\x02\x05\x01\x01\x05", // 𨡦
+ 0x28867: "\x01\x02\x05\x03\x05\x01\x01\x05\x02\x01\x03\x01\x03\x04\x04", // 𨡧
+ 0x28868: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x02\x01\x01\x01\x03\x04", // 𨡨
+ 0x28869: "\x01\x02\x05\x03\x05\x01\x01\x05\x04\x03\x03\x04\x03\x05\x05\x04", // 𨡩
+ 0x2886a: "\x01\x02\x05\x03\x05\x01\x01\x04\x01\x05\x03\x03\x01\x05\x02\x05", // 𨡪
+ 0x2886b: "\x01\x02\x05\x03\x05\x01\x01\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 𨡫
+ 0x2886c: "\x01\x02\x05\x03\x05\x01\x01\x02\x05\x03\x04\x02\x05\x02\x02\x01", // 𨡬
+ 0x2886d: "\x05\x04\x05\x02\x03\x03\x01\x03\x04\x01\x02\x05\x03\x05\x01\x01", // 𨡭
+ 0x2886e: "\x01\x02\x05\x03\x05\x01\x01\x03\x05\x03\x03\x04\x04\x05\x04\x04", // 𨡮
+ 0x2886f: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x02\x05\x04\x03\x01\x01\x02", // 𨡯
+ 0x28870: "\x05\x02\x01\x03\x01\x02\x05\x03\x05\x01\x01\x02\x05\x02\x02\x01", // 𨡰
+ 0x28871: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x01\x02\x01\x02\x02\x05\x01", // 𨡱
+ 0x28872: "\x01\x02\x05\x03\x05\x01\x01\x03\x01\x02\x03\x04\x04\x03\x03\x04", // 𨡲
+ 0x28873: "\x03\x04\x01\x05\x01\x02\x05\x03\x05\x01\x01\x03\x03\x03\x03\x05", // 𨡳
+ 0x28874: "\x01\x02\x05\x03\x05\x01\x01\x04\x03\x01\x02\x05\x03\x05\x01\x01", // 𨡴
+ 0x28875: "\x01\x02\x05\x03\x05\x01\x01\x02\x05\x01\x02\x02\x05\x02\x02\x01", // 𨡵
+ 0x28876: "\x05\x03\x02\x05\x04\x01\x01\x03\x02\x01\x02\x05\x03\x05\x01\x01", // 𨡶
+ 0x28877: "\x01\x02\x02\x05\x01\x03\x05\x04\x01\x01\x02\x05\x03\x05\x01\x01", // 𨡷
+ 0x28878: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x01\x02\x03\x04\x02\x03\x04", // 𨡸
+ 0x28879: "\x01\x02\x05\x03\x05\x01\x01\x03\x02\x05\x01\x01\x02\x05\x03\x04", // 𨡹
+ 0x2887a: "\x01\x02\x05\x03\x05\x01\x01\x02\x05\x01\x02\x01\x02\x05\x03\x04", // 𨡺
+ 0x2887b: "\x01\x02\x05\x03\x05\x01\x01\x04\x04\x05\x04\x03\x03\x04\x05\x04", // 𨡻
+ 0x2887c: "\x01\x02\x05\x03\x05\x01\x01\x02\x02\x05\x04\x02\x05\x02\x02\x01", // 𨡼
+ 0x2887d: "\x01\x02\x05\x03\x05\x01\x01\x01\x03\x01\x02\x01\x03\x05\x04\x01", // 𨡽
+ 0x2887e: "\x01\x02\x05\x03\x05\x01\x01\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 𨡾
+ 0x2887f: "\x01\x02\x05\x03\x05\x01\x01\x01\x03\x05\x04\x02\x05\x02\x02\x01", // 𨡿
+ 0x28880: "\x01\x02\x05\x03\x05\x01\x01\x03\x04\x03\x04\x01\x03\x05\x02\x01", // 𨢀
+ 0x28881: "\x01\x02\x05\x03\x05\x01\x01\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𨢁
+ 0x28882: "\x01\x02\x05\x03\x05\x01\x01\x03\x05\x05\x04\x02\x05\x01\x01\x05", // 𨢂
+ 0x28883: "\x01\x02\x05\x03\x05\x01\x01\x04\x04\x05\x01\x01\x02\x01\x02\x01", // 𨢃
+ 0x28884: "\x01\x02\x05\x03\x05\x01\x01\x02\x05\x01\x01\x03\x05\x05\x04", // 𨢄
+ 0x28885: "\x04\x03\x01\x02\x05\x03\x05\x01\x01\x04\x01\x03\x04\x03\x04\x01\x02", // 𨢅
+ 0x28886: "\x01\x02\x05\x03\x05\x01\x01\x05\x04\x05\x04\x05\x04\x01\x02\x03\x04", // 𨢆
+ 0x28887: "\x01\x02\x05\x03\x05\x01\x01\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 𨢇
+ 0x28888: "\x01\x02\x02\x05\x01\x01\x01\x02\x04\x03\x01\x02\x05\x03\x05\x01\x01", // 𨢈
+ 0x28889: "\x01\x02\x05\x03\x05\x01\x01\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 𨢉
+ 0x2888a: "\x01\x02\x05\x03\x05\x01\x01\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 𨢊
+ 0x2888b: "\x01\x02\x01\x04\x05\x01\x03\x05\x05\x04\x01\x02\x05\x03\x05\x01\x01", // 𨢋
+ 0x2888c: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𨢌
+ 0x2888d: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x01\x03\x01\x05\x02\x05\x01\x01", // 𨢍
+ 0x2888e: "\x01\x02\x05\x03\x05\x01\x01\x04\x05\x02\x05\x01\x01\x04\x01\x03\x04", // 𨢎
+ 0x2888f: "\x03\x05\x01\x01\x01\x01\x03\x02\x02\x02\x01\x02\x05\x03\x05\x01\x01", // 𨢏
+ 0x28890: "\x01\x02\x05\x03\x05\x01\x01\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03", // 𨢐
+ 0x28891: "\x01\x02\x05\x03\x05\x01\x01\x03\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 𨢑
+ 0x28892: "\x01\x02\x05\x01\x02\x05\x03\x01\x01\x01\x01\x02\x05\x03\x05\x01\x01", // 𨢒
+ 0x28893: "\x01\x02\x05\x03\x05\x01\x01\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 𨢓
+ 0x28894: "\x01\x02\x05\x03\x05\x01\x01\x01\x03\x04\x01\x02\x01\x02\x05\x01\x01", // 𨢔
+ 0x28895: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x01\x02\x03\x04\x01\x02\x03\x04", // 𨢕
+ 0x28896: "\x01\x02\x05\x03\x05\x01\x01\x05\x05\x04\x02\x05\x01\x01\x01\x03\x04", // 𨢖
+ 0x28897: "\x01\x02\x05\x03\x05\x01\x01\x01\x03\x02\x05\x01\x02\x05\x02\x05\x01", // 𨢗
+ 0x28898: "\x01\x02\x05\x03\x05\x01\x01\x04\x03\x01\x03\x04\x02\x05\x02\x02\x01", // 𨢘
+ 0x28899: "\x01\x02\x05\x03\x05\x01\x01\x03\x04\x01\x05\x03\x04\x03\x01\x01\x02", // 𨢙
+ 0x2889a: "\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01\x01\x02\x05\x03\x05\x01\x01", // 𨢚
+ 0x2889b: "\x04\x04\x05\x03\x05\x03\x01\x02\x01\x01\x01\x02\x05\x03\x05\x01\x01", // 𨢛
+ 0x2889c: "\x01\x02\x05\x03\x05\x01\x01\x04\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 𨢜
+ 0x2889d: "\x01\x02\x05\x03\x05\x01\x01\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01", // 𨢝
+ 0x2889e: "\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x01\x02\x05\x03\x05\x01\x01", // 𨢞
+ 0x2889f: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x02\x04\x01\x05\x03\x03\x04", // 𨢟
+ 0x288a0: "\x01\x02\x05\x03\x05\x01\x01\x04\x04\x05\x05\x03\x02\x05\x02\x02\x01", // 𨢠
+ 0x288a1: "\x01\x02\x05\x03\x05\x01\x01\x02\x05\x01\x01\x01\x02\x02\x01\x01\x02", // 𨢡
+ 0x288a2: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x04", // 𨢢
+ 0x288a3: "\x01\x02\x05\x03\x05\x01\x01\x01\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𨢣
+ 0x288a4: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04\x01\x02\x05\x03\x05\x01\x01", // 𨢤
+ 0x288a5: "\x01\x02\x05\x03\x05\x01\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 𨢥
+ 0x288a6: "\x01\x02\x05\x03\x05\x01\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𨢦
+ 0x288a7: "\x01\x02\x05\x03\x05\x01\x01\x04\x04\x05\x03\x05\x03\x01\x01\x02\x05\x02", // 𨢧
+ 0x288a8: "\x01\x02\x05\x03\x05\x01\x01\x03\x02\x05\x03\x05\x04\x01\x04\x05\x04\x04", // 𨢨
+ 0x288a9: "\x01\x02\x05\x03\x05\x01\x01\x03\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 𨢩
+ 0x288aa: "\x01\x02\x05\x03\x05\x01\x01\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 𨢪
+ 0x288ab: "\x01\x02\x05\x03\x05\x01\x01\x05\x01\x05\x05\x01\x01\x05\x02\x05\x01", // 𨢫
+ 0x288ac: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 𨢬
+ 0x288ad: "\x01\x02\x05\x03\x05\x01\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𨢭
+ 0x288ae: "\x03\x01\x01\x03\x04\x02\x05\x01\x01\x01\x02\x01\x02\x05\x03\x05\x01\x01", // 𨢮
+ 0x288af: "\x04\x04\x01\x03\x04\x01\x05\x04\x05\x04\x04\x01\x02\x05\x03\x05\x01\x01", // 𨢯
+ 0x288b0: "\x03\x01\x01\x03\x04\x02\x05\x01\x01\x02\x05\x03\x05\x01\x01\x01\x01\x05", // 𨢰
+ 0x288b1: "\x03\x01\x01\x03\x04\x02\x05\x01\x05\x02\x01\x01\x02\x05\x03\x05\x01\x01", // 𨢱
+ 0x288b2: "\x01\x02\x05\x03\x05\x01\x01\x04\x04\x05\x03\x02\x01\x03\x02\x05\x01\x01", // 𨢲
+ 0x288b3: "\x01\x02\x05\x03\x05\x01\x01\x01\x03\x05\x04\x02\x01\x01\x02\x05\x01\x01", // 𨢳
+ 0x288b4: "\x01\x02\x05\x03\x05\x01\x01\x03\x04\x01\x02\x05\x01\x02\x05\x02\x02\x01", // 𨢴
+ 0x288b5: "\x01\x02\x05\x03\x05\x01\x01\x03\x05\x04\x01\x05\x04\x01\x01\x02\x03\x04", // 𨢵
+ 0x288b6: "\x01\x02\x05\x03\x05\x01\x01\x04\x01\x02\x05\x01\x05\x02\x04\x04\x04\x04", // 𨢶
+ 0x288b7: "\x01\x02\x05\x03\x05\x01\x01\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 𨢷
+ 0x288b8: "\x01\x02\x05\x03\x05\x01\x01\x04\x03\x01\x01\x02\x01\x02\x05\x02\x02\x01", // 𨢸
+ 0x288b9: "\x05\x03\x02\x05\x04\x01\x01\x03\x02\x02\x02\x01\x02\x05\x03\x05\x01\x01", // 𨢹
+ 0x288ba: "\x01\x02\x05\x03\x05\x01\x01\x05\x04\x05\x02\x01\x03\x04\x03\x05\x04\x01", // 𨢺
+ 0x288bb: "\x01\x02\x05\x03\x05\x01\x01\x02\x05\x01\x01\x01\x05\x01\x01\x05\x03\x04", // 𨢻
+ 0x288bc: "\x01\x02\x05\x03\x05\x01\x01\x03\x02\x05\x03\x04\x01\x03\x04\x03\x05\x04", // 𨢼
+ 0x288bd: "\x02\x05\x01\x02\x01\x01\x02\x05\x03\x05\x01\x01\x05\x04\x03\x05\x03\x05\x04", // 𨢽
+ 0x288be: "\x01\x02\x05\x03\x05\x01\x01\x01\x03\x02\x05\x02\x02\x01\x03\x02\x05\x02\x02", // 𨢾
+ 0x288bf: "\x01\x02\x05\x03\x05\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 𨢿
+ 0x288c0: "\x01\x02\x05\x03\x05\x01\x01\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 𨣀
+ 0x288c1: "\x01\x02\x05\x03\x05\x01\x01\x04\x03\x01\x01\x02\x01\x04\x03\x01\x02\x05\x01", // 𨣁
+ 0x288c2: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x02\x01\x03\x04\x02\x05\x01\x02\x01\x04", // 𨣂
+ 0x288c3: "\x01\x02\x05\x03\x05\x01\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x05\x03", // 𨣃
+ 0x288c4: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x01\x02\x01\x01\x02\x01\x02\x01\x01\x02", // 𨣄
+ 0x288c5: "\x01\x02\x05\x03\x05\x01\x01\x02\x05\x01\x01\x01\x02\x02\x01\x01\x01\x05\x04", // 𨣅
+ 0x288c6: "\x01\x02\x05\x03\x05\x01\x01\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x03\x04", // 𨣆
+ 0x288c7: "\x01\x02\x05\x03\x05\x01\x01\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x01\x01", // 𨣇
+ 0x288c8: "\x01\x02\x05\x03\x05\x01\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𨣈
+ 0x288c9: "\x01\x02\x05\x03\x05\x01\x01\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01", // 𨣉
+ 0x288ca: "\x01\x02\x05\x03\x05\x01\x01\x05\x01\x05\x01\x02\x01\x01\x02\x01\x02\x05\x01", // 𨣊
+ 0x288cb: "\x01\x02\x05\x03\x05\x01\x01\x03\x04\x03\x04\x03\x04\x03\x04\x02\x05\x01\x01", // 𨣋
+ 0x288cc: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 𨣌
+ 0x288cd: "\x01\x02\x05\x03\x05\x01\x01\x01\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01", // 𨣍
+ 0x288ce: "\x01\x02\x05\x03\x05\x01\x01\x03\x01\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 𨣎
+ 0x288cf: "\x01\x02\x05\x03\x05\x01\x01\x03\x01\x04\x03\x01\x04\x03\x04\x01\x02\x05\x01", // 𨣏
+ 0x288d0: "\x03\x02\x04\x01\x01\x01\x02\x01\x04\x03\x03\x04\x01\x02\x05\x03\x05\x01\x01", // 𨣐
+ 0x288d1: "\x01\x02\x05\x03\x05\x01\x01\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01", // 𨣑
+ 0x288d2: "\x01\x02\x05\x03\x05\x01\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𨣒
+ 0x288d3: "\x01\x02\x05\x03\x05\x01\x01\x04\x01\x05\x04\x03\x02\x05\x02\x05\x02\x02\x01", // 𨣓
+ 0x288d4: "\x01\x02\x05\x03\x05\x01\x01\x05\x04\x05\x04\x05\x04\x03\x04\x02\x04\x04\x04", // 𨣔
+ 0x288d5: "\x01\x02\x05\x03\x05\x01\x01\x04\x04\x01\x03\x05\x03\x04\x02\x05\x02\x02\x01", // 𨣕
+ 0x288d6: "\x01\x02\x05\x03\x05\x01\x01\x01\x04\x05\x02\x04\x01\x03\x04\x03\x04\x01\x05\x04", // 𨣖
+ 0x288d7: "\x01\x02\x05\x01\x01\x01\x02\x05\x02\x03\x05\x05\x04\x01\x02\x05\x03\x05\x01\x01", // 𨣗
+ 0x288d8: "\x01\x02\x05\x03\x05\x01\x01\x04\x04\x05\x04\x05\x04\x03\x04\x02\x05\x02\x02\x01", // 𨣘
+ 0x288d9: "\x01\x02\x05\x03\x05\x01\x01\x01\x04\x05\x02\x04\x01\x03\x04\x03\x05\x05\x01\x05", // 𨣙
+ 0x288da: "\x01\x02\x05\x03\x05\x01\x01\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 𨣚
+ 0x288db: "\x01\x02\x05\x03\x05\x01\x01\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x02\x01\x01", // 𨣛
+ 0x288dc: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x05\x02\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𨣜
+ 0x288dd: "\x01\x02\x05\x03\x05\x01\x01\x01\x03\x01\x02\x05\x01\x05\x03\x04\x04\x05\x04\x04", // 𨣝
+ 0x288de: "\x01\x02\x05\x03\x05\x01\x01\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01\x05\x03\x04", // 𨣞
+ 0x288df: "\x01\x02\x05\x03\x05\x01\x01\x03\x03\x02\x02\x05\x02\x01\x03\x05\x03\x01\x03\x04", // 𨣟
+ 0x288e0: "\x01\x02\x05\x03\x05\x01\x01\x02\x05\x02\x02\x01\x01\x03\x04\x04\x03\x01\x01\x02", // 𨣠
+ 0x288e1: "\x04\x03\x01\x02\x05\x03\x05\x01\x01\x04\x04\x05\x03\x02\x01\x03\x02\x05\x01\x01", // 𨣡
+ 0x288e2: "\x01\x02\x05\x03\x05\x01\x01\x04\x03\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 𨣢
+ 0x288e3: "\x01\x02\x05\x03\x05\x01\x01\x03\x04\x03\x04\x03\x04\x03\x04\x01\x03\x01\x02\x01", // 𨣣
+ 0x288e4: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x03\x04\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 𨣤
+ 0x288e5: "\x01\x02\x05\x03\x05\x01\x01\x03\x04\x04\x03\x05\x04\x05\x04\x04\x03\x05\x04", // 𨣥
+ 0x288e6: "\x01\x02\x05\x03\x05\x01\x01\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 𨣦
+ 0x288e7: "\x01\x02\x05\x03\x05\x01\x01\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01", // 𨣧
+ 0x288e8: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x05\x01\x02\x05\x03\x01\x01\x02\x05\x02\x02\x01", // 𨣨
+ 0x288e9: "\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x03\x01\x05\x01\x02\x05\x03\x05\x01\x01", // 𨣩
+ 0x288ea: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x05\x03\x05\x01\x01\x05\x04\x03\x05\x03\x05\x04", // 𨣪
+ 0x288eb: "\x01\x02\x05\x03\x05\x01\x01\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x04\x04\x01\x02", // 𨣫
+ 0x288ec: "\x01\x02\x05\x03\x05\x01\x01\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x05\x02\x01\x05", // 𨣬
+ 0x288ed: "\x01\x02\x05\x03\x05\x01\x01\x04\x04\x05\x03\x05\x03\x05\x03\x03\x04\x04\x05\x04\x04", // 𨣭
+ 0x288ee: "\x01\x02\x05\x03\x05\x01\x01\x04\x04\x05\x03\x05\x03\x01\x02\x01\x01\x02\x05\x02\x02\x01", // 𨣮
+ 0x288ef: "\x01\x02\x05\x03\x05\x01\x01\x04\x05\x02\x05\x01\x01\x01\x05\x01\x03\x02\x01\x02\x05", // 𨣯
+ 0x288f0: "\x01\x02\x05\x03\x05\x01\x01\x05\x05\x01\x03\x05\x03\x03\x03\x04\x02\x05\x01\x02\x01\x04", // 𨣰
+ 0x288f1: "\x01\x02\x05\x03\x05\x01\x01\x02\x01\x02\x01\x02\x05\x02\x02\x01\x01\x03\x04\x05\x03\x04", // 𨣱
+ 0x288f2: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 𨣲
+ 0x288f3: "\x01\x02\x05\x03\x05\x01\x01\x04\x01\x02\x05\x01\x02\x05\x01\x02\x01\x02\x01\x01\x01\x02", // 𨣳
+ 0x288f4: "\x01\x02\x05\x03\x05\x01\x01\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x03\x01\x01\x02", // 𨣴
+ 0x288f5: "\x01\x02\x05\x03\x05\x01\x01\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𨣵
+ 0x288f6: "\x01\x02\x05\x03\x05\x01\x01\x04\x01\x02\x05\x01\x02\x05\x01\x01\x02\x01\x02\x01\x01\x01\x02", // 𨣶
+ 0x288f7: "\x01\x02\x05\x03\x05\x01\x01\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 𨣷
+ 0x288f8: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x05\x01\x02\x05\x03\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 𨣸
+ 0x288f9: "\x01\x02\x05\x01\x01\x02\x03\x04\x01\x02\x05\x01\x01\x02\x03\x04\x01\x02\x05\x03\x05\x01\x01", // 𨣹
+ 0x288fa: "\x01\x02\x05\x03\x05\x01\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x02\x03\x04", // 𨣺
+ 0x288fb: "\x05\x03\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x01\x02\x05\x03\x05\x01\x01", // 𨣻
+ 0x288fc: "\x01\x02\x05\x03\x05\x01\x01\x04\x04\x05\x03\x05\x03\x02\x05\x03\x05\x04\x01\x04\x05\x04\x04", // 𨣼
+ 0x288fd: "\x01\x02\x05\x03\x05\x01\x01\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x01\x01\x02\x03\x04", // 𨣽
+ 0x288fe: "\x05\x01\x05\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x02\x05\x03\x05\x01\x01", // 𨣾
+ 0x288ff: "\x01\x02\x05\x03\x05\x01\x01\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x04\x03\x01\x02\x03\x04", // 𨣿
+ 0x28900: "\x01\x02\x05\x03\x05\x01\x01\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 𨤀
+ 0x28901: "\x01\x02\x05\x03\x05\x01\x01\x05\x02\x03\x02\x05\x02\x04\x03\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 𨤁
+ 0x28902: "\x01\x02\x05\x03\x05\x01\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x01\x02\x05\x03\x05\x01\x01", // 𨤂
+ 0x28903: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x02\x01\x03\x05\x01\x03\x01\x02\x05\x01\x02\x05\x05\x03\x04", // 𨤃
+ 0x28904: "\x01\x02\x05\x03\x05\x01\x01\x03\x01\x04\x03\x01\x04\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x01\x01", // 𨤄
+ 0x28905: "\x03\x03\x03\x01\x02\x05\x03\x05\x01\x01\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x03\x02\x02\x03\x03\x02", // 𨤅
+ 0x28906: "\x01\x02\x05\x03\x05\x01\x01\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 𨤆
+ 0x28907: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x05\x01\x01\x02\x03\x04\x01\x02\x05\x01\x01\x02\x03\x04\x02\x05\x01\x01", // 𨤇
+ 0x28908: "\x01\x02\x05\x01\x01\x02\x03\x04\x01\x02\x05\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x05\x03\x05\x01\x01", // 𨤈
+ 0x28909: "\x01\x02\x05\x03\x05\x01\x01\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x01\x03\x01\x01\x05\x03\x04", // 𨤉
+ 0x2890a: "\x01\x02\x05\x03\x05\x01\x01\x03\x04\x04\x03\x02\x05\x02\x02\x01\x03\x04\x04\x04\x04\x04\x05\x02\x01\x05\x05\x04", // 𨤊
+ 0x2890b: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 𨤋
+ 0x2890c: "\x01\x02\x05\x03\x05\x01\x01\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x02\x05\x01\x01\x02\x05\x01\x05\x02\x02", // 𨤌
+ 0x2890d: "\x01\x02\x05\x03\x05\x01\x01\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x03\x04\x01", // 𨤍
+ 0x2890e: "\x01\x02\x05\x03\x05\x01\x01\x01\x02\x05\x01\x02\x05\x03\x01\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x02\x05\x02\x02\x01", // 𨤎
+ 0x2890f: "\x05\x03\x04\x03\x01\x02\x03\x04\x01", // 𨤏
+ 0x28910: "\x02\x01\x04\x05\x03\x04\x03\x01\x02\x03\x04", // 𨤐
+ 0x28911: "\x03\x04\x03\x01\x02\x03\x04\x05\x03\x05\x04", // 𨤑
+ 0x28912: "\x03\x04\x03\x01\x02\x03\x04\x03\x05\x03\x01\x05\x01", // 𨤒
+ 0x28913: "\x03\x04\x03\x01\x02\x05\x03\x05\x04\x02\x05\x01\x01\x01", // 𨤓
+ 0x28914: "\x05\x01\x03\x03\x01\x01\x05\x03\x04\x04\x03\x01\x02\x03\x04", // 𨤔
+ 0x28915: "\x03\x04\x03\x01\x02\x03\x04\x01\x03\x04\x02\x05\x01\x01\x05", // 𨤕
+ 0x28916: "\x03\x04\x03\x01\x02\x03\x04\x05\x03\x05\x04\x05\x02\x01\x05", // 𨤖
+ 0x28917: "\x03\x04\x03\x01\x02\x03\x04\x01\x03\x04\x02\x05\x01\x01\x01", // 𨤗
+ 0x28918: "\x03\x04\x03\x01\x02\x03\x04\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 𨤘
+ 0x28919: "\x03\x04\x03\x01\x02\x03\x04\x01\x03\x04\x05\x05\x04\x02\x03\x04", // 𨤙
+ 0x2891a: "\x03\x04\x03\x01\x02\x03\x04\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01", // 𨤚
+ 0x2891b: "\x03\x04\x03\x01\x02\x03\x04\x04\x04\x05\x03\x04\x03\x04\x02\x05\x01", // 𨤛
+ 0x2891c: "\x03\x04\x03\x01\x02\x03\x04\x01\x02\x02\x01\x03\x05\x03\x03\x03\x04", // 𨤜
+ 0x2891d: "\x03\x04\x03\x01\x02\x03\x04\x01\x01\x02\x02\x01\x01\x02\x01\x02\x01\x02", // 𨤝
+ 0x2891e: "\x03\x04\x03\x01\x02\x03\x04\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𨤞
+ 0x2891f: "\x03\x04\x03\x01\x02\x03\x04\x03\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 𨤟
+ 0x28920: "\x03\x04\x03\x01\x02\x03\x04\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𨤠
+ 0x28921: "\x03\x04\x03\x01\x02\x03\x04\x04\x01\x03\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 𨤡
+ 0x28922: "\x02\x03\x04\x03\x02\x05\x01\x01\x02\x01\x01", // 𨤢
+ 0x28923: "\x05\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𨤣
+ 0x28924: "\x02\x05\x01\x01\x02\x01\x01\x05\x02\x05", // 𨤤
+ 0x28925: "\x02\x05\x01\x01\x02\x05\x01\x01\x02\x01\x01", // 𨤥
+ 0x28926: "\x02\x05\x01\x05\x02\x02\x05\x01\x01\x02\x01\x01", // 𨤦
+ 0x28927: "\x02\x05\x01\x01\x02\x01\x01\x03\x05\x02\x03\x04", // 𨤧
+ 0x28928: "\x03\x02\x02\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𨤨
+ 0x28929: "\x04\x05\x04\x03\x04\x02\x05\x01\x01\x02\x01\x01", // 𨤩
+ 0x2892a: "\x02\x05\x02\x01\x03\x04\x02\x05\x01\x01\x02\x01\x01", // 𨤪
+ 0x2892b: "\x04\x01\x03\x04\x03\x04\x02\x05\x01\x01\x02\x01\x01", // 𨤫
+ 0x2892c: "\x01\x02\x02\x01\x03\x04\x02\x05\x01\x01\x02\x01\x01", // 𨤬
+ 0x2892d: "\x01\x03\x04\x03\x04\x02\x03\x04\x02\x05\x01\x01\x02\x01\x01", // 𨤭
+ 0x2892e: "\x02\x05\x01\x01\x02\x01\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 𨤮
+ 0x2892f: "\x03\x01\x02\x05\x01\x01\x02\x01\x01\x02\x05\x01\x02\x05\x01", // 𨤯
+ 0x28930: "\x03\x05\x02\x03\x04\x01\x01\x02\x01\x02\x05\x01\x01\x02\x01\x01", // 𨤰
+ 0x28931: "\x02\x05\x01\x01\x01\x02\x01\x03\x04\x02\x05\x01\x01\x02\x01\x01", // 𨤱
+ 0x28932: "\x01\x05\x02\x03\x03\x01\x03\x04\x01\x03\x02\x05\x01\x01\x02\x01\x01", // 𨤲
+ 0x28933: "\x01\x02\x03\x04\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x02\x01\x01", // 𨤳
+ 0x28934: "\x03\x01\x02\x05\x01\x01\x02\x01\x01\x01\x05\x01\x01\x02\x01\x03\x04", // 𨤴
+ 0x28935: "\x02\x05\x01\x01\x02\x01\x01\x04\x04\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 𨤵
+ 0x28936: "\x03\x01\x02\x05\x01\x01\x02\x01\x01\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𨤶
+ 0x28937: "\x02\x05\x01\x01\x02\x01\x01\x02\x05\x01\x01\x02\x01\x01\x01\x02\x05\x01", // 𨤷
+ 0x28938: "\x01\x02\x05\x01\x02\x03\x04\x03\x01\x03\x04\x01\x03\x02\x05\x01\x01\x02\x01\x01", // 𨤸
+ 0x28939: "\x03\x01\x02\x05\x01\x01\x02\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02\x03\x04", // 𨤹
+ 0x2893a: "\x01\x03\x04\x03\x04\x02\x03\x04\x01\x03\x02\x05\x01\x01\x02\x01\x01\x01\x02\x05\x04", // 𨤺
+ 0x2893b: "\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x01\x02\x01\x02\x05\x01\x01\x02\x01\x01", // 𨤻
+ 0x2893c: "\x03\x01\x02\x05\x01\x01\x02\x01\x01\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 𨤼
+ 0x2893d: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05", // 𨤽
+ 0x2893e: "\x03\x04\x01\x02\x01\x01\x02\x04\x03\x01", // 𨤾
+ 0x2893f: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04", // 𨤿
+ 0x28940: "\x03\x04\x04\x03\x04\x01\x02\x03\x04\x01", // 𨥀
+ 0x28941: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x04", // 𨥁
+ 0x28942: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x02\x01", // 𨥂
+ 0x28943: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x05", // 𨥃
+ 0x28944: "\x03\x04\x04\x03\x04\x03\x01\x02\x04\x03\x01", // 𨥄
+ 0x28945: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x04", // 𨥅
+ 0x28946: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x04", // 𨥆
+ 0x28947: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x04", // 𨥇
+ 0x28948: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x05", // 𨥈
+ 0x28949: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x02", // 𨥉
+ 0x2894a: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x01\x05", // 𨥊
+ 0x2894b: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x01\x02", // 𨥋
+ 0x2894c: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x01\x05", // 𨥌
+ 0x2894d: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x05\x02", // 𨥍
+ 0x2894e: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x03\x04", // 𨥎
+ 0x2894f: "\x03\x04\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𨥏
+ 0x28950: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x03\x05", // 𨥐
+ 0x28951: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x02\x01", // 𨥑
+ 0x28952: "\x03\x05\x01\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 𨥒
+ 0x28953: "\x01\x05\x05\x03\x03\x04\x01\x01\x02\x04\x03\x01", // 𨥓
+ 0x28954: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x05\x05\x03", // 𨥔
+ 0x28955: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x05\x04", // 𨥕
+ 0x28956: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x04\x05\x04", // 𨥖
+ 0x28957: "\x02\x05\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𨥗
+ 0x28958: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x04\x04", // 𨥘
+ 0x28959: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x03\x02", // 𨥙
+ 0x2895a: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x02", // 𨥚
+ 0x2895b: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x05\x05\x01", // 𨥛
+ 0x2895c: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x03\x04", // 𨥜
+ 0x2895d: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x03\x05\x04", // 𨥝
+ 0x2895e: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x01\x02", // 𨥞
+ 0x2895f: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x01\x05", // 𨥟
+ 0x28960: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x01\x03", // 𨥠
+ 0x28961: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x04\x03\x05", // 𨥡
+ 0x28962: "\x05\x04\x05\x02\x03\x04\x01\x01\x02\x04\x03\x01", // 𨥢
+ 0x28963: "\x05\x04\x05\x02\x03\x04\x01\x01\x02\x04\x03\x01", // 𨥣
+ 0x28964: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x04\x05\x02", // 𨥤
+ 0x28965: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x03\x02\x01\x02", // 𨥥
+ 0x28966: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x02\x03", // 𨥦
+ 0x28967: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x05\x04", // 𨥧
+ 0x28968: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x04\x05\x02\x03", // 𨥨
+ 0x28969: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x01\x01\x02", // 𨥩
+ 0x2896a: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x04\x01\x02", // 𨥪
+ 0x2896b: "\x03\x05\x03\x05\x02\x03\x04\x01\x01\x02\x04\x03\x01", // 𨥫
+ 0x2896c: "\x05\x03\x01\x05\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𨥬
+ 0x2896d: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x05\x05\x03\x04", // 𨥭
+ 0x2896e: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x02\x03\x04", // 𨥮
+ 0x2896f: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x05\x05\x04", // 𨥯
+ 0x28970: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x02\x05\x01", // 𨥰
+ 0x28971: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x03\x04\x01", // 𨥱
+ 0x28972: "\x01\x02\x01\x03\x05\x03\x04\x01\x01\x02\x04\x03\x01", // 𨥲
+ 0x28973: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x02\x03", // 𨥳
+ 0x28974: "\x01\x03\x02\x05\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 𨥴
+ 0x28975: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x03\x05\x04", // 𨥵
+ 0x28976: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x01\x05\x04", // 𨥶
+ 0x28977: "\x03\x04\x04\x05\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𨥷
+ 0x28978: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x03\x04\x05", // 𨥸
+ 0x28979: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x05\x01\x05", // 𨥹
+ 0x2897a: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x05\x05\x04", // 𨥺
+ 0x2897b: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x02\x05\x04", // 𨥻
+ 0x2897c: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x03\x04\x05", // 𨥼
+ 0x2897d: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x02\x05\x01", // 𨥽
+ 0x2897e: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x04\x03\x01\x02", // 𨥾
+ 0x2897f: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x01\x05", // 𨥿
+ 0x28980: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x05\x02", // 𨦀
+ 0x28981: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x01\x02\x01", // 𨦁
+ 0x28982: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x05\x02\x04\x05", // 𨦂
+ 0x28983: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x01\x02\x03\x04", // 𨦃
+ 0x28984: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x03\x04\x01\x05", // 𨦄
+ 0x28985: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x01\x02\x03\x04", // 𨦅
+ 0x28986: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x01\x05", // 𨦆
+ 0x28987: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x04\x03\x01\x03\x04", // 𨦇
+ 0x28988: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x02\x02\x01", // 𨦈
+ 0x28989: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x02\x03\x04", // 𨦉
+ 0x2898a: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x02\x01\x01\x05", // 𨦊
+ 0x2898b: "\x04\x03\x01\x01\x02\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 𨦋
+ 0x2898c: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x04\x01\x05\x03", // 𨦌
+ 0x2898d: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x01\x02\x05", // 𨦍
+ 0x2898e: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x01\x03\x05\x04", // 𨦎
+ 0x2898f: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x04\x03\x04\x05\x04", // 𨦏
+ 0x28990: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x03\x05\x04\x04", // 𨦐
+ 0x28991: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x01\x02\x01\x05", // 𨦑
+ 0x28992: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x03\x04\x03\x05\x03", // 𨦒
+ 0x28993: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x01\x02\x01\x04", // 𨦓
+ 0x28994: "\x05\x03\x01\x02\x05\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 𨦔
+ 0x28995: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x03\x02\x02\x02", // 𨦕
+ 0x28996: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x03\x04\x05", // 𨦖
+ 0x28997: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x04\x03\x03\x04", // 𨦗
+ 0x28998: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x04\x05\x01\x05", // 𨦘
+ 0x28999: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x05\x04\x02\x02", // 𨦙
+ 0x2899a: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x03\x04", // 𨦚
+ 0x2899b: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x01\x03\x04\x04", // 𨦛
+ 0x2899c: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x04\x03\x01\x05", // 𨦜
+ 0x2899d: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x04\x03\x05\x03", // 𨦝
+ 0x2899e: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x03\x05\x04\x01\x04", // 𨦞
+ 0x2899f: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x04\x01\x05\x02", // 𨦟
+ 0x289a0: "\x01\x01\x03\x05\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𨦠
+ 0x289a1: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x03\x01\x01\x01\x02", // 𨦡
+ 0x289a2: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x03\x04", // 𨦢
+ 0x289a3: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x05\x04\x03\x05", // 𨦣
+ 0x289a4: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x01\x02\x01\x05", // 𨦤
+ 0x289a5: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x01\x05\x02\x05", // 𨦥
+ 0x289a6: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x05\x01\x01\x02", // 𨦦
+ 0x289a7: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x01\x02\x01\x02", // 𨦧
+ 0x289a8: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x01\x02\x05\x02", // 𨦨
+ 0x289a9: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x05\x05\x03\x01", // 𨦩
+ 0x289aa: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x03\x05\x05\x02", // 𨦪
+ 0x289ab: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x04\x01\x05\x04\x01", // 𨦫
+ 0x289ac: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x03\x03\x01\x02", // 𨦬
+ 0x289ad: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x05\x03\x01\x01\x02", // 𨦭
+ 0x289ae: "\x04\x04\x01\x03\x05\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𨦮
+ 0x289af: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x03\x02\x03\x05\x05\x04", // 𨦯
+ 0x289b0: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x01\x05\x02\x05\x01", // 𨦰
+ 0x289b1: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x05\x03\x05\x04\x01", // 𨦱
+ 0x289b2: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x05\x04\x05\x03", // 𨦲
+ 0x289b3: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x03\x04\x02\x05\x01", // 𨦳
+ 0x289b4: "\x03\x02\x01\x01\x05\x01\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 𨦴
+ 0x289b5: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x03\x04\x05", // 𨦵
+ 0x289b6: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x01\x01\x03\x04", // 𨦶
+ 0x289b7: "\x03\x02\x02\x02\x01\x05\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𨦷
+ 0x289b8: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x02\x05\x01\x03\x05", // 𨦸
+ 0x289b9: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x03\x02\x05\x02", // 𨦹
+ 0x289ba: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x05\x02\x01\x05", // 𨦺
+ 0x289bb: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x02\x01\x05\x03", // 𨦻
+ 0x289bc: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x01\x01\x02\x05\x01", // 𨦼
+ 0x289bd: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x03\x04\x02\x05\x01", // 𨦽
+ 0x289be: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x01\x02\x03\x05\x04", // 𨦾
+ 0x289bf: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x03\x02\x04\x02\x02", // 𨦿
+ 0x289c0: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x03\x04\x01\x02\x01", // 𨧀
+ 0x289c1: "\x04\x04\x01\x04\x05\x03\x05\x03\x04\x01\x01\x02\x04\x03\x01", // 𨧁
+ 0x289c2: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x03\x01\x03\x02\x02\x02", // 𨧂
+ 0x289c3: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x03\x04\x02\x05\x01", // 𨧃
+ 0x289c4: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x01\x01\x02\x05", // 𨧄
+ 0x289c5: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x05\x02\x01\x03", // 𨧅
+ 0x289c6: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x02\x04\x02\x05\x01", // 𨧆
+ 0x289c7: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x02\x05\x03\x04\x05", // 𨧇
+ 0x289c8: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x02\x01\x01\x05", // 𨧈
+ 0x289c9: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x05\x03\x01", // 𨧉
+ 0x289ca: "\x03\x01\x05\x05\x04\x01\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𨧊
+ 0x289cb: "\x03\x05\x04\x03\x01\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𨧋
+ 0x289cc: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x03\x03\x04\x01\x05\x04", // 𨧌
+ 0x289cd: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x04\x05\x05\x05\x04", // 𨧍
+ 0x289ce: "\x01\x02\x01\x05\x03\x04\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𨧎
+ 0x289cf: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x01\x03\x05", // 𨧏
+ 0x289d0: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x03\x04\x02\x05\x01", // 𨧐
+ 0x289d1: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x04\x03\x01\x02\x01", // 𨧑
+ 0x289d2: "\x04\x05\x01\x03\x05\x01\x05\x03\x04\x01\x01\x02\x04\x03\x01", // 𨧒
+ 0x289d3: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x05\x02\x01\x02\x01", // 𨧓
+ 0x289d4: "\x03\x05\x04\x02\x01\x05\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𨧔
+ 0x289d5: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x01\x01\x02\x05\x01", // 𨧕
+ 0x289d6: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x03\x01\x02\x03\x04", // 𨧖
+ 0x289d7: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x05\x03\x03\x03\x03", // 𨧗
+ 0x289d8: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x03\x01\x01\x03\x02\x02", // 𨧘
+ 0x289d9: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x05\x02\x02\x05\x01", // 𨧙
+ 0x289da: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x04\x03\x01\x01\x03\x04", // 𨧚
+ 0x289db: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x03\x04\x03\x01\x03\x04", // 𨧛
+ 0x289dc: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x01\x03\x05\x02", // 𨧜
+ 0x289dd: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x02\x05\x01\x01\x01", // 𨧝
+ 0x289de: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x05\x02\x05\x04", // 𨧞
+ 0x289df: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x03\x04\x04\x05\x04\x04", // 𨧟
+ 0x289e0: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x01\x01\x01\x01\x02", // 𨧠
+ 0x289e1: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x01\x03\x02\x05\x01", // 𨧡
+ 0x289e2: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x05\x03\x02\x02", // 𨧢
+ 0x289e3: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x04\x05\x03\x05", // 𨧣
+ 0x289e4: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x02\x05\x01\x05\x02", // 𨧤
+ 0x289e5: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x02\x01\x01\x05\x01\x01", // 𨧥
+ 0x289e6: "\x05\x02\x05\x03\x02\x05\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𨧦
+ 0x289e7: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x05\x03\x03\x04\x03\x04", // 𨧧
+ 0x289e8: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x02\x02\x05\x03\x04", // 𨧨
+ 0x289e9: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x05\x01\x03\x02\x05\x01", // 𨧩
+ 0x289ea: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x01\x04\x05\x02\x05\x02", // 𨧪
+ 0x289eb: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x01\x05\x01\x01\x02", // 𨧫
+ 0x289ec: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x05\x01\x01\x02\x05\x03\x01", // 𨧬
+ 0x289ed: "\x03\x01\x02\x03\x04\x01\x02\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 𨧭
+ 0x289ee: "\x05\x01\x05\x03\x05\x02\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𨧮
+ 0x289ef: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x02\x03\x01\x05\x02\x05", // 𨧯
+ 0x289f0: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x02\x02\x01\x01\x03\x05", // 𨧰
+ 0x289f1: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x03\x05\x02\x02\x05\x02", // 𨧱
+ 0x289f2: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x05\x04\x01\x02\x03\x04", // 𨧲
+ 0x289f3: "\x03\x01\x01\x02\x05\x02\x02\x02\x03\x04\x01\x01\x02\x04\x03\x01", // 𨧳
+ 0x289f4: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x04\x03\x03\x04\x05\x04", // 𨧴
+ 0x289f5: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x04\x05\x02\x03\x01\x02\x01", // 𨧵
+ 0x289f6: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x05\x04\x05\x03\x04", // 𨧶
+ 0x289f7: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x01\x02\x03\x04\x05\x04", // 𨧷
+ 0x289f8: "\x01\x02\x03\x04\x03\x03\x05\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𨧸
+ 0x289f9: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x03\x05\x01\x01", // 𨧹
+ 0x289fa: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x05\x01\x01\x02\x03\x04", // 𨧺
+ 0x289fb: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x05\x04\x01\x05\x05\x04", // 𨧻
+ 0x289fc: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x02\x03\x05\x05\x03", // 𨧼
+ 0x289fd: "\x04\x05\x02\x04\x01\x02\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 𨧽
+ 0x289fe: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x04\x01\x02\x05\x04", // 𨧾
+ 0x289ff: "\x04\x03\x03\x04\x04\x03\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𨧿
+ 0x28a00: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x05\x03\x05\x01\x02\x01", // 𨨀
+ 0x28a01: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x05\x03\x05\x01\x02\x01", // 𨨁
+ 0x28a02: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x01\x02\x05\x01\x01\x02", // 𨨂
+ 0x28a03: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x02\x01\x02\x05\x01\x01\x01", // 𨨃
+ 0x28a04: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x02\x03\x04\x03\x04", // 𨨄
+ 0x28a05: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x01\x01\x05\x03\x04", // 𨨅
+ 0x28a06: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x04\x04\x03\x01\x01\x05", // 𨨆
+ 0x28a07: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x05\x01\x01\x03\x05", // 𨨇
+ 0x28a08: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x02\x05\x04\x05\x04", // 𨨈
+ 0x28a09: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x02\x03\x04\x03\x05", // 𨨉
+ 0x28a0a: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x01\x01\x03\x02", // 𨨊
+ 0x28a0b: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x04\x03\x03\x04", // 𨨋
+ 0x28a0c: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x03\x01\x02\x01", // 𨨌
+ 0x28a0d: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x05\x03\x01\x05\x05\x03", // 𨨍
+ 0x28a0e: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x01\x02\x01\x05\x02", // 𨨎
+ 0x28a0f: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x01\x05\x03\x02\x05\x04", // 𨨏
+ 0x28a10: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x01\x05\x04\x02\x05\x02", // 𨨐
+ 0x28a11: "\x03\x01\x02\x03\x04\x02\x05\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 𨨑
+ 0x28a12: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x04\x03\x04\x05\x05\x04", // 𨨒
+ 0x28a13: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x03\x01\x01\x01\x02\x03\x04", // 𨨓
+ 0x28a14: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x01\x03\x03\x05\x04\x01", // 𨨔
+ 0x28a15: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 𨨕
+ 0x28a16: "\x01\x01\x02\x01\x01\x01\x02\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 𨨖
+ 0x28a17: "\x01\x02\x03\x04\x01\x02\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𨨗
+ 0x28a18: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x01\x02\x05\x05\x04", // 𨨘
+ 0x28a19: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x05\x05\x04\x05\x05\x04\x05", // 𨨙
+ 0x28a1a: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x03\x04\x03\x04\x03\x03\x04", // 𨨚
+ 0x28a1b: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x02\x03\x04\x02\x05\x01", // 𨨛
+ 0x28a1c: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x04\x03\x05\x02\x01\x05", // 𨨜
+ 0x28a1d: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x01\x01\x02\x02\x05\x01", // 𨨝
+ 0x28a1e: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x03\x04\x03\x03\x01\x02", // 𨨞
+ 0x28a1f: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x05\x04\x04\x05\x04\x04", // 𨨟
+ 0x28a20: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x04\x03\x01\x02\x03\x04", // 𨨠
+ 0x28a21: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x05\x03\x03\x04\x04\x04", // 𨨡
+ 0x28a22: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x03\x03\x04\x03\x05\x03\x04", // 𨨢
+ 0x28a23: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x01\x01\x03\x04", // 𨨣
+ 0x28a24: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x02\x01\x02\x01\x05\x04", // 𨨤
+ 0x28a25: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x05\x03\x05\x01\x02\x03\x04", // 𨨥
+ 0x28a26: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x03\x04\x03\x01\x03\x04", // 𨨦
+ 0x28a27: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x04\x03\x01\x05\x03\x01", // 𨨧
+ 0x28a28: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x03\x02\x01\x02\x01\x02\x01", // 𨨨
+ 0x28a29: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x02\x04\x05\x04\x04", // 𨨩
+ 0x28a2a: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x01\x02\x05\x02\x02\x02", // 𨨪
+ 0x28a2b: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x04\x03\x01\x02\x03\x04", // 𨨫
+ 0x28a2c: "\x05\x05\x05\x01\x05\x03\x02\x02\x03\x04\x01\x01\x02\x04\x03\x01", // 𨨬
+ 0x28a2d: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x05\x04\x05\x04", // 𨨭
+ 0x28a2e: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x05\x03\x05\x02\x03\x04", // 𨨮
+ 0x28a2f: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x01\x03\x04\x01\x01\x03\x04", // 𨨯
+ 0x28a30: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x02\x05\x02\x02\x01\x03\x04", // 𨨰
+ 0x28a31: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x01\x03\x01\x02\x02\x05\x01", // 𨨱
+ 0x28a32: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x01\x02\x01\x01\x02\x04", // 𨨲
+ 0x28a33: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x04\x03\x01\x01\x02\x05\x02", // 𨨳
+ 0x28a34: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x01\x05\x05\x05\x05", // 𨨴
+ 0x28a35: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x02\x05\x01\x01\x01\x03\x02", // 𨨵
+ 0x28a36: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x01\x02\x01\x02\x01\x05\x02", // 𨨶
+ 0x28a37: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x05\x03\x04\x01\x03\x04\x04", // 𨨷
+ 0x28a38: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x05\x02\x05\x01\x02\x01\x04", // 𨨸
+ 0x28a39: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x04\x01\x02\x02\x01\x01\x01", // 𨨹
+ 0x28a3a: "\x02\x04\x03\x03\x05\x04\x01\x02\x02\x03\x04\x01\x01\x02\x04\x03\x01", // 𨨺
+ 0x28a3b: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x04\x03\x03\x04\x03\x05\x05\x04", // 𨨻
+ 0x28a3c: "\x04\x01\x02\x03\x04\x01\x01\x02\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 𨨼
+ 0x28a3d: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x05\x01\x01\x03\x01\x03\x04", // 𨨽
+ 0x28a3e: "\x02\x01\x01\x01\x02\x01\x01\x02\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 𨨾
+ 0x28a3f: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x05\x03\x04\x03\x04\x05\x04", // 𨨿
+ 0x28a40: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x01\x03\x03\x01\x01\x03\x04", // 𨩀
+ 0x28a41: "\x03\x02\x05\x01\x01\x03\x05\x05\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 𨩁
+ 0x28a42: "\x03\x01\x02\x03\x04\x03\x05\x05\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𨩂
+ 0x28a43: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x01\x03\x04\x02\x05\x01\x01", // 𨩃
+ 0x28a44: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x04\x01\x04\x03\x01", // 𨩄
+ 0x28a45: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x01\x01\x02\x02\x01\x03\x04", // 𨩅
+ 0x28a46: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x01\x05\x03\x01\x05\x03\x04", // 𨩆
+ 0x28a47: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x05\x04\x03\x01\x01\x02", // 𨩇
+ 0x28a48: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x01\x03\x05\x02\x05\x01\x01", // 𨩈
+ 0x28a49: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x02\x05\x03\x04\x01\x03\x04", // 𨩉
+ 0x28a4a: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x03\x01\x02\x05\x03\x05\x01\x01", // 𨩊
+ 0x28a4b: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01", // 𨩋
+ 0x28a4c: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x02\x02\x03\x04\x01\x03\x04", // 𨩌
+ 0x28a4d: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x05\x03\x01", // 𨩍
+ 0x28a4e: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x02\x05\x01\x04\x05\x03\x05", // 𨩎
+ 0x28a4f: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x05\x05\x04\x03\x01\x01\x02", // 𨩏
+ 0x28a50: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 𨩐
+ 0x28a51: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x02\x05\x01\x01\x01\x03\x02", // 𨩑
+ 0x28a52: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01", // 𨩒
+ 0x28a53: "\x01\x02\x01\x01\x02\x01\x01\x02\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 𨩓
+ 0x28a54: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x03\x05\x04\x04\x05\x04", // 𨩔
+ 0x28a55: "\x01\x02\x05\x01\x01\x01\x02\x05\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𨩕
+ 0x28a56: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x02\x03\x04\x01\x05\x04", // 𨩖
+ 0x28a57: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 𨩗
+ 0x28a58: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x05\x03\x01\x05\x05\x02\x01", // 𨩘
+ 0x28a59: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x03\x05\x04\x02\x05\x02\x02\x01", // 𨩙
+ 0x28a5a: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x02\x05\x01\x01\x02\x03\x04", // 𨩚
+ 0x28a5b: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x03\x01\x01\x02\x01", // 𨩛
+ 0x28a5c: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x05\x03\x01\x05\x01\x01\x02", // 𨩜
+ 0x28a5d: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x05\x03\x01\x05\x05\x01\x01", // 𨩝
+ 0x28a5e: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x05\x03\x01\x05\x01\x05\x02", // 𨩞
+ 0x28a5f: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x02\x03\x05\x04\x02\x05\x01", // 𨩟
+ 0x28a60: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01", // 𨩠
+ 0x28a61: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x02\x02\x01\x01\x03\x05\x04", // 𨩡
+ 0x28a62: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x01\x03\x02\x05\x01\x01\x01", // 𨩢
+ 0x28a63: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x05\x03\x02\x05\x02\x02\x01", // 𨩣
+ 0x28a64: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x01\x05\x01\x01\x02\x01\x05", // 𨩤
+ 0x28a65: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x01\x02\x01\x01\x02\x04", // 𨩥
+ 0x28a66: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x03\x05\x02\x05\x01", // 𨩦
+ 0x28a67: "\x01\x02\x02\x05\x04\x03\x01\x01\x02\x03\x04\x01\x01\x02\x04\x03\x01", // 𨩧
+ 0x28a68: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 𨩨
+ 0x28a69: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 𨩩
+ 0x28a6a: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x02\x02\x05\x01\x02\x01\x04", // 𨩪
+ 0x28a6b: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x01\x02\x05\x01\x01\x03\x04", // 𨩫
+ 0x28a6c: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x05\x03\x04\x01\x01\x03\x04", // 𨩬
+ 0x28a6d: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 𨩭
+ 0x28a6e: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x05\x01\x03\x02\x05\x02\x05\x01", // 𨩮
+ 0x28a6f: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x02\x05\x01\x03\x05\x05\x03", // 𨩯
+ 0x28a70: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x04\x01\x03\x01\x01\x02\x01", // 𨩰
+ 0x28a71: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x04\x03\x01\x03\x03\x03\x03", // 𨩱
+ 0x28a72: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x03\x05\x03\x04\x02\x05\x01", // 𨩲
+ 0x28a73: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x03\x01\x03\x04\x01\x01\x02\x01", // 𨩳
+ 0x28a74: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x05\x03\x04\x01\x05\x02\x03", // 𨩴
+ 0x28a75: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x05\x03\x04\x01\x03\x05\x04", // 𨩵
+ 0x28a76: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x05\x01\x01\x03\x05\x01\x02\x04", // 𨩶
+ 0x28a77: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 𨩷
+ 0x28a78: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x05\x05\x01\x05\x01\x03\x04", // 𨩸
+ 0x28a79: "\x05\x04\x05\x02\x01\x02\x01\x03\x05\x03\x04\x01\x01\x02\x04\x03\x01", // 𨩹
+ 0x28a7a: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x04\x05\x02\x03\x03\x01\x03\x04", // 𨩺
+ 0x28a7b: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x04\x05\x02\x03\x04\x03\x05\x04", // 𨩻
+ 0x28a7c: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x05\x01\x01\x02\x01\x03\x04", // 𨩼
+ 0x28a7d: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x05\x03\x01\x05\x01\x05\x01", // 𨩽
+ 0x28a7e: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x01\x04\x01\x01\x02\x01\x05", // 𨩾
+ 0x28a7f: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x02\x05\x01\x01\x05\x02\x01", // 𨩿
+ 0x28a80: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x01\x01\x01\x02\x03\x04", // 𨪀
+ 0x28a81: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x02\x02\x01\x05\x03\x01", // 𨪁
+ 0x28a82: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 𨪂
+ 0x28a83: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x02\x05\x01\x04\x05\x01\x02", // 𨪃
+ 0x28a84: "\x01\x02\x01\x03\x02\x05\x02\x05\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 𨪄
+ 0x28a85: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x03\x02\x05\x04\x03\x01\x01\x05", // 𨪅
+ 0x28a86: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x04\x03\x01\x02\x05\x01\x02", // 𨪆
+ 0x28a87: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x01\x05\x02\x05\x02\x01\x01", // 𨪇
+ 0x28a88: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𨪈
+ 0x28a89: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x03\x02\x01\x05\x03\x01\x05\x03\x05", // 𨪉
+ 0x28a8a: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x05\x04\x04\x02\x05\x01\x02\x01\x04", // 𨪊
+ 0x28a8b: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01", // 𨪋
+ 0x28a8c: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x03\x03\x05\x02\x05\x01\x01", // 𨪌
+ 0x28a8d: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x01\x02\x03\x04\x03\x05\x03\x01", // 𨪍
+ 0x28a8e: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x01\x01\x05\x03\x03\x03\x04", // 𨪎
+ 0x28a8f: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x03\x04\x01\x03\x01\x01\x03\x04", // 𨪏
+ 0x28a90: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x05\x01\x05\x05\x01\x05\x01\x02\x01", // 𨪐
+ 0x28a91: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x05\x03\x04\x01\x05\x03\x04\x02\x02", // 𨪑
+ 0x28a92: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x05\x02\x05\x01\x01\x05", // 𨪒
+ 0x28a93: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x02\x03\x05\x04\x02\x05\x01", // 𨪓
+ 0x28a94: "\x03\x01\x02\x01\x03\x04\x01\x01\x02\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 𨪔
+ 0x28a95: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03", // 𨪕
+ 0x28a96: "\x02\x05\x01\x01\x02\x01\x01\x01\x02\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 𨪖
+ 0x28a97: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x04\x03\x01\x04\x02\x05\x03\x04", // 𨪗
+ 0x28a98: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x04\x03\x03\x04\x04\x03\x03\x04", // 𨪘
+ 0x28a99: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x02\x03\x04\x04\x03\x01\x02\x04", // 𨪙
+ 0x28a9a: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x01\x01\x01\x02\x01\x01\x02", // 𨪚
+ 0x28a9b: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x03\x02\x05\x01\x01\x02\x03\x04", // 𨪛
+ 0x28a9c: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x03\x04\x01\x04\x05\x04\x04", // 𨪜
+ 0x28a9d: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x05\x03\x01\x05\x04\x01\x03\x04", // 𨪝
+ 0x28a9e: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x03\x05\x04\x02\x05\x01\x01\x02", // 𨪞
+ 0x28a9f: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x02\x05\x01\x02\x05\x01\x01\x02", // 𨪟
+ 0x28aa0: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x04\x01\x05\x03\x05\x03\x04", // 𨪠
+ 0x28aa1: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x03\x04\x05\x02\x01\x05\x01\x05", // 𨪡
+ 0x28aa2: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x03\x05\x05\x04", // 𨪢
+ 0x28aa3: "\x04\x01\x02\x05\x03\x04\x03\x01\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𨪣
+ 0x28aa4: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x05\x04\x01\x05\x01\x05\x04\x01", // 𨪤
+ 0x28aa5: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x02\x01\x03\x01\x01\x02\x03\x04", // 𨪥
+ 0x28aa6: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x01\x03\x04\x03\x01\x02\x03\x04", // 𨪦
+ 0x28aa7: "\x01\x02\x03\x04\x03\x04\x01\x02\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𨪧
+ 0x28aa8: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x05\x03\x01\x05\x03\x01\x01\x02", // 𨪨
+ 0x28aa9: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x02\x03\x04\x01\x02\x03\x04", // 𨪩
+ 0x28aaa: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x02\x04\x05\x01\x02\x03\x04", // 𨪪
+ 0x28aab: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x03\x04\x03\x02\x01\x05\x01\x01", // 𨪫
+ 0x28aac: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x05\x01\x01\x02\x02\x01\x01\x02", // 𨪬
+ 0x28aad: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x01\x03\x03\x05\x01\x01\x01\x02", // 𨪭
+ 0x28aae: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x05\x05\x02\x04\x03\x03\x05\x04\x01", // 𨪮
+ 0x28aaf: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x03\x02\x04\x03\x01\x04\x05\x04", // 𨪯
+ 0x28ab0: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x02\x02\x01\x01\x03\x05\x01\x01", // 𨪰
+ 0x28ab1: "\x01\x02\x01\x02\x01\x01\x02\x01\x02\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 𨪱
+ 0x28ab2: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x04\x03\x01\x02\x05\x01\x02\x01", // 𨪲
+ 0x28ab3: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x02\x05\x02\x02\x04\x03\x03\x04", // 𨪳
+ 0x28ab4: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x05\x04\x04\x01\x02\x05\x01\x01", // 𨪴
+ 0x28ab5: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x01\x03\x05\x02\x05\x01", // 𨪵
+ 0x28ab6: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x04\x04\x05\x05\x03\x01", // 𨪶
+ 0x28ab7: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01", // 𨪷
+ 0x28ab8: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x02\x01\x02\x02\x01\x05\x02", // 𨪸
+ 0x28ab9: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x02\x01\x03\x05\x01\x01\x02\x01", // 𨪹
+ 0x28aba: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x02\x03\x04\x03\x04\x02\x05\x02", // 𨪺
+ 0x28abb: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x03\x04\x01\x02\x01\x03\x02", // 𨪻
+ 0x28abc: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𨪼
+ 0x28abd: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x05\x01\x01\x01\x01\x01\x02\x01", // 𨪽
+ 0x28abe: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x03\x02\x01\x05\x03\x01\x05\x03\x04", // 𨪾
+ 0x28abf: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x04\x05\x05\x02\x05\x01\x02\x01", // 𨪿
+ 0x28ac0: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x03\x01\x02\x02\x01\x05\x03\x04", // 𨫀
+ 0x28ac1: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x04\x03\x03\x04\x02\x05\x01\x05\x04", // 𨫁
+ 0x28ac2: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x05\x03\x04\x03\x04\x03\x05\x04", // 𨫂
+ 0x28ac3: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x05\x01\x02\x01\x04\x03\x01\x01\x02", // 𨫃
+ 0x28ac4: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x02\x01\x04\x03\x01\x01\x02\x01", // 𨫄
+ 0x28ac5: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x03\x04\x01\x02\x05\x01\x02\x02", // 𨫅
+ 0x28ac6: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x03\x03\x01\x02\x01\x05\x04", // 𨫆
+ 0x28ac7: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04", // 𨫇
+ 0x28ac8: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x03\x03\x04\x03\x04\x01\x02\x01", // 𨫈
+ 0x28ac9: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x01\x02\x01\x01\x02\x04", // 𨫉
+ 0x28aca: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x02\x02\x01\x01\x02\x03\x04", // 𨫊
+ 0x28acb: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𨫋
+ 0x28acc: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x04\x03\x01\x02\x05\x01\x01", // 𨫌
+ 0x28acd: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 𨫍
+ 0x28ace: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x02\x01\x04\x01\x01\x02\x01\x04", // 𨫎
+ 0x28acf: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x05\x05\x04\x04\x01\x03\x04\x01\x02", // 𨫏
+ 0x28ad0: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x05\x03\x05\x01\x05\x04\x01\x02\x01", // 𨫐
+ 0x28ad1: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x02\x05\x01\x02\x04\x05\x04\x04", // 𨫑
+ 0x28ad2: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x03\x01\x02\x05\x02\x04\x04\x04\x04", // 𨫒
+ 0x28ad3: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x01\x03\x01\x02\x01\x05\x03\x04", // 𨫓
+ 0x28ad4: "\x01\x02\x01\x03\x05\x01\x02\x01\x03\x05\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𨫔
+ 0x28ad5: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x05\x01\x01\x03\x05\x03\x01\x03\x04", // 𨫕
+ 0x28ad6: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 𨫖
+ 0x28ad7: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x02\x05\x01\x02\x01\x04\x03\x03\x04", // 𨫗
+ 0x28ad8: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x05\x02", // 𨫘
+ 0x28ad9: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x02\x05\x01\x02\x05\x01\x03\x05\x04", // 𨫙
+ 0x28ada: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 𨫚
+ 0x28adb: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x01\x02\x05\x03\x01\x03\x02\x05\x01", // 𨫛
+ 0x28adc: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x03\x04\x02\x05\x01\x01\x02\x03\x04", // 𨫜
+ 0x28add: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𨫝
+ 0x28ade: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x01\x02\x01\x03\x04\x03\x05", // 𨫞
+ 0x28adf: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x01\x05\x03\x04\x04\x01\x02\x03\x04", // 𨫟
+ 0x28ae0: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𨫠
+ 0x28ae1: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x05\x01\x01\x01\x01\x02\x05\x04", // 𨫡
+ 0x28ae2: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x04\x03\x02\x05\x03\x05\x02\x05\x01", // 𨫢
+ 0x28ae3: "\x01\x01\x02\x01\x01\x02\x04\x01\x03\x04\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𨫣
+ 0x28ae4: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x04\x02\x05\x01\x01\x02\x04\x04\x05\x04", // 𨫤
+ 0x28ae5: "\x05\x02\x01\x03\x03\x05\x04\x04\x01\x02\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𨫥
+ 0x28ae6: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x04\x04\x03\x01\x01\x02\x03\x05\x04", // 𨫦
+ 0x28ae7: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01", // 𨫧
+ 0x28ae8: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x04\x01\x03\x04\x04\x04\x04\x04\x04", // 𨫨
+ 0x28ae9: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x01\x02\x03\x04\x04\x05\x04", // 𨫩
+ 0x28aea: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𨫪
+ 0x28aeb: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𨫫
+ 0x28aec: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x05\x01\x01\x01\x02\x03\x01\x05", // 𨫬
+ 0x28aed: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x02\x01\x02\x01\x03\x05\x03\x05\x04", // 𨫭
+ 0x28aee: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x02\x05\x01\x01\x01\x03\x04\x05\x04", // 𨫮
+ 0x28aef: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x02\x01\x04\x04\x04\x05\x03\x05", // 𨫯
+ 0x28af0: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x03\x04", // 𨫰
+ 0x28af1: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x02\x03\x05\x04\x01\x01\x01\x02", // 𨫱
+ 0x28af2: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x02\x05\x02\x01\x03\x01\x02\x01", // 𨫲
+ 0x28af3: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x02\x05\x04\x03\x05\x03\x05\x04", // 𨫳
+ 0x28af4: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x05\x03\x01\x05\x02\x05\x01\x01\x05", // 𨫴
+ 0x28af5: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x02\x05\x01\x01\x05\x03\x04\x01", // 𨫵
+ 0x28af6: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x05\x03\x03\x05\x02\x05\x01\x01\x01", // 𨫶
+ 0x28af7: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𨫷
+ 0x28af8: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x01\x02\x05\x01\x02\x05\x02\x02\x01", // 𨫸
+ 0x28af9: "\x01\x01\x01\x02\x01\x01\x01\x02\x01\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𨫹
+ 0x28afa: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x02\x01\x03\x05\x04\x02\x03\x04\x03", // 𨫺
+ 0x28afb: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𨫻
+ 0x28afc: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04", // 𨫼
+ 0x28afd: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x02\x04\x01\x04\x03\x01\x01\x02", // 𨫽
+ 0x28afe: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x01\x02\x03\x04\x03\x01\x03\x04", // 𨫾
+ 0x28aff: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x04\x03\x03\x04\x02\x05\x02\x02\x01", // 𨫿
+ 0x28b00: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x05\x03\x02\x01\x01\x03\x05\x03\x03\x04", // 𨬀
+ 0x28b01: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x03\x01\x02\x05\x02\x03\x01\x03\x02\x04", // 𨬁
+ 0x28b02: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x03\x03\x04\x02\x05\x01\x04\x05\x04\x04", // 𨬂
+ 0x28b03: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x05\x03\x05\x05\x04\x04\x05\x04\x04", // 𨬃
+ 0x28b04: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x05\x04\x03\x03\x04\x04\x03\x03\x04", // 𨬄
+ 0x28b05: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x05\x01\x01\x05\x04\x03\x03\x01\x02", // 𨬅
+ 0x28b06: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x04\x05\x02\x04\x04\x04\x04\x01\x01\x05", // 𨬆
+ 0x28b07: "\x04\x01\x01\x02\x01\x01\x02\x01\x03\x05\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𨬇
+ 0x28b08: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04", // 𨬈
+ 0x28b09: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𨬉
+ 0x28b0a: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x03\x05\x02\x01\x03\x01\x03\x04", // 𨬊
+ 0x28b0b: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x03\x05\x02\x05\x01\x03\x05", // 𨬋
+ 0x28b0c: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x02\x02\x05\x01\x01\x01\x05\x01\x05", // 𨬌
+ 0x28b0d: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x02\x01\x03\x01\x02\x01\x03\x05\x04\x01", // 𨬍
+ 0x28b0e: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x05\x01", // 𨬎
+ 0x28b0f: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x02\x03\x04\x03\x05\x03\x01\x02\x03\x04", // 𨬏
+ 0x28b10: "\x01\x03\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𨬐
+ 0x28b11: "\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𨬑
+ 0x28b12: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 𨬒
+ 0x28b13: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x02\x01\x03\x04\x01\x05\x05\x03\x04", // 𨬓
+ 0x28b14: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x01\x02\x02\x05\x01\x01\x01\x01\x02\x01", // 𨬔
+ 0x28b15: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x05\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 𨬕
+ 0x28b16: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x03\x05\x02\x01\x05\x02\x01\x05\x02\x01", // 𨬖
+ 0x28b17: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𨬗
+ 0x28b18: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x02\x04\x01\x05\x04\x01\x02\x03\x04", // 𨬘
+ 0x28b19: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x04\x03\x04\x05\x02\x05\x02\x02\x05\x01", // 𨬙
+ 0x28b1a: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x02\x04\x03\x01\x04\x03\x02\x05\x02\x03\x04", // 𨬚
+ 0x28b1b: "\x01\x02\x01\x02\x02\x05\x03\x04\x02\x05\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𨬛
+ 0x28b1c: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x01\x03\x02\x05\x01\x01\x01\x03\x05\x04", // 𨬜
+ 0x28b1d: "\x01\x02\x01\x03\x05\x01\x02\x01\x05\x03\x01\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 𨬝
+ 0x28b1e: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04", // 𨬞
+ 0x28b1f: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 𨬟
+ 0x28b20: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x02\x01\x01\x01\x02\x01\x03\x01\x03\x04", // 𨬠
+ 0x28b21: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x01\x01\x05\x01\x05\x01\x02\x03\x04", // 𨬡
+ 0x28b22: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x04\x01\x03\x05\x03\x04", // 𨬢
+ 0x28b23: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01", // 𨬣
+ 0x28b24: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x02\x05\x01\x05\x02\x01\x04\x04\x04\x04", // 𨬤
+ 0x28b25: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x03\x04\x05\x02\x05\x01\x01\x01\x03\x05", // 𨬥
+ 0x28b26: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x03\x04\x01\x03\x01\x05\x03\x01\x01\x02", // 𨬦
+ 0x28b27: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x02\x01", // 𨬧
+ 0x28b28: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x05\x04\x04\x05\x05\x04\x03\x01\x01\x02", // 𨬨
+ 0x28b29: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x02\x01\x01\x01\x02\x01\x03\x04\x01\x05", // 𨬩
+ 0x28b2a: "\x01\x02\x02\x01\x02\x05\x01\x02\x01\x01\x01\x05\x03\x04\x01\x01\x02\x04\x03\x01", // 𨬪
+ 0x28b2b: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01\x03\x05", // 𨬫
+ 0x28b2c: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 𨬬
+ 0x28b2d: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x05\x02", // 𨬭
+ 0x28b2e: "\x01\x02\x03\x04\x05\x04\x05\x02\x01\x02\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𨬮
+ 0x28b2f: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x03\x02\x04\x01\x03\x04\x03\x01\x01\x02", // 𨬯
+ 0x28b30: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𨬰
+ 0x28b31: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x05", // 𨬱
+ 0x28b32: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x05\x03\x01\x05\x04\x03\x01\x01\x01\x02", // 𨬲
+ 0x28b33: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x05\x03\x01\x05\x03\x05\x03\x01\x01\x02", // 𨬳
+ 0x28b34: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x04\x05\x01\x03\x04\x02\x05\x01\x01\x01", // 𨬴
+ 0x28b35: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 𨬵
+ 0x28b36: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𨬶
+ 0x28b37: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x05\x03\x01\x05\x02\x05\x01\x05\x02\x01", // 𨬷
+ 0x28b38: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x02\x02\x01\x01\x03\x05\x03\x03\x03\x04", // 𨬸
+ 0x28b39: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x05\x02\x02\x01\x03\x02\x03\x04\x03\x04", // 𨬹
+ 0x28b3a: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x03\x04", // 𨬺
+ 0x28b3b: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x04\x03\x01\x04\x01\x02\x01\x01\x02\x04", // 𨬻
+ 0x28b3c: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x04\x03\x01\x04\x01\x02\x01\x02\x05\x01", // 𨬼
+ 0x28b3d: "\x05\x05\x03\x04\x05\x01\x01\x05\x04\x05\x02\x03\x04\x01\x01\x02\x04\x03\x01", // 𨬽
+ 0x28b3e: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x04\x03\x01\x04\x05\x01\x01\x01\x01\x02", // 𨬾
+ 0x28b3f: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x01\x05\x04\x01\x02\x01\x05\x03\x04", // 𨬿
+ 0x28b40: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x01\x01\x02\x05\x04\x03\x01\x01\x02", // 𨭀
+ 0x28b41: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x04\x04\x03\x03\x04\x02\x04\x01\x03\x04", // 𨭁
+ 0x28b42: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x04\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𨭂
+ 0x28b43: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x04\x03\x04\x05\x02\x05\x01\x01\x05\x02\x03", // 𨭃
+ 0x28b44: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x01\x02\x02\x02\x01\x03\x04", // 𨭄
+ 0x28b45: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x02\x04\x01\x05\x04\x02\x05\x02\x01\x01", // 𨭅
+ 0x28b46: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𨭆
+ 0x28b47: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x03\x04\x03\x04\x03\x04\x03\x04\x01\x02\x01", // 𨭇
+ 0x28b48: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x03\x01\x02\x02\x02\x05\x01\x02\x01", // 𨭈
+ 0x28b49: "\x04\x01\x03\x04\x01\x01\x02\x01\x02\x01\x05\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𨭉
+ 0x28b4a: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x03\x05", // 𨭊
+ 0x28b4b: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x05\x01\x03\x02\x05\x02\x02\x01\x01\x02", // 𨭋
+ 0x28b4c: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x02\x05\x01\x04\x03\x01\x03\x03\x03", // 𨭌
+ 0x28b4d: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x01\x01\x02\x01\x01\x01\x04\x05\x04\x04", // 𨭍
+ 0x28b4e: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01", // 𨭎
+ 0x28b4f: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x01\x01\x04\x04\x05\x03\x04\x01\x02\x01", // 𨭏
+ 0x28b50: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 𨭐
+ 0x28b51: "\x05\x05\x04\x04\x04\x04\x04\x01\x05\x04\x03\x05\x03\x04\x01\x01\x02\x04\x03\x01", // 𨭑
+ 0x28b52: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x01\x01\x04\x04\x05\x03\x04\x01\x02\x01", // 𨭒
+ 0x28b53: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x01\x02\x01\x02\x05\x01\x05\x03\x04", // 𨭓
+ 0x28b54: "\x05\x05\x04\x02\x03\x04\x05\x05\x04\x02\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𨭔
+ 0x28b55: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x04\x01\x05\x04\x01\x02\x05\x01\x04\x03\x01", // 𨭕
+ 0x28b56: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 𨭖
+ 0x28b57: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𨭗
+ 0x28b58: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𨭘
+ 0x28b59: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x05\x01\x05", // 𨭙
+ 0x28b5a: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04\x02\x02", // 𨭚
+ 0x28b5b: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x02\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 𨭛
+ 0x28b5c: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01\x04\x01\x05\x03", // 𨭜
+ 0x28b5d: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x05\x01\x01\x03\x01\x03\x04\x04\x04\x04\x04", // 𨭝
+ 0x28b5e: "\x04\x01\x05\x02\x05\x01\x03\x05\x04\x01\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x04", // 𨭞
+ 0x28b5f: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x02\x01\x02\x01\x04\x04\x04\x04\x05\x03\x04", // 𨭟
+ 0x28b60: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x03\x01\x02", // 𨭠
+ 0x28b61: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x01\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01", // 𨭡
+ 0x28b62: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x03\x04\x04", // 𨭢
+ 0x28b63: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x03\x04\x01\x02\x03\x04\x05\x02\x01\x03\x04", // 𨭣
+ 0x28b64: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x03\x05\x02\x02\x01\x03\x05\x04\x01\x05\x02", // 𨭤
+ 0x28b65: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x02\x03\x04", // 𨭥
+ 0x28b66: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04\x01", // 𨭦
+ 0x28b67: "\x04\x04\x05\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 𨭧
+ 0x28b68: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x03\x01\x05\x05\x04\x05\x05\x04\x04\x05\x04\x04", // 𨭨
+ 0x28b69: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x04\x03\x01\x01\x02\x03\x04\x03\x03\x01\x02", // 𨭩
+ 0x28b6a: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x03\x01\x03\x02\x05\x01\x01\x01\x04\x05\x04", // 𨭪
+ 0x28b6b: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x02\x05\x02\x02\x01\x01\x01\x04\x05\x04", // 𨭫
+ 0x28b6c: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𨭬
+ 0x28b6d: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x04\x05\x02\x04\x01\x03\x04\x03\x04\x01\x05\x04", // 𨭭
+ 0x28b6e: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x05\x03\x04\x01\x05\x03\x04\x02\x05\x02\x02\x01", // 𨭮
+ 0x28b6f: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01\x05\x03", // 𨭯
+ 0x28b70: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x01\x01\x01\x02\x05\x01\x03\x01\x02\x01", // 𨭰
+ 0x28b71: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x02\x05\x01\x01\x02\x01\x01\x05\x03\x04", // 𨭱
+ 0x28b72: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x01\x03\x02\x05\x01\x01\x03\x01\x01\x02\x01", // 𨭲
+ 0x28b73: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x02\x05\x01\x02\x02\x05\x01\x02\x05\x01", // 𨭳
+ 0x28b74: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x05\x03\x01\x05\x02\x05\x01\x03\x01\x01\x02", // 𨭴
+ 0x28b75: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x02\x02\x01\x01\x02\x02\x01\x01\x01\x05\x04", // 𨭵
+ 0x28b76: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x02\x05\x01\x02\x01\x01\x03\x04\x01\x01\x02", // 𨭶
+ 0x28b77: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𨭷
+ 0x28b78: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04", // 𨭸
+ 0x28b79: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x05\x04\x03\x01\x01\x02\x01\x03\x04\x04", // 𨭹
+ 0x28b7a: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x03\x04\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 𨭺
+ 0x28b7b: "\x01\x02\x04\x01\x03\x04\x04\x03\x04\x01\x01\x02\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 𨭻
+ 0x28b7c: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x04\x04\x03\x02\x05\x01\x01\x04\x03\x03\x04", // 𨭼
+ 0x28b7d: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03", // 𨭽
+ 0x28b7e: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x01\x05\x01\x01\x03\x05\x02\x04\x01\x03\x04", // 𨭾
+ 0x28b7f: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05", // 𨭿
+ 0x28b80: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x04\x01\x01\x01\x02\x01\x01\x03\x02\x05\x01", // 𨮀
+ 0x28b81: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x05\x04\x03\x01\x02\x03\x04\x01\x01\x05", // 𨮁
+ 0x28b82: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x03\x05\x01\x01\x02\x05\x03\x03\x01\x01\x02", // 𨮂
+ 0x28b83: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x03\x05\x02\x01\x02\x01\x05\x05\x01\x02\x01", // 𨮃
+ 0x28b84: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x05\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 𨮄
+ 0x28b85: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x04\x01\x05\x04\x01\x01\x03\x04\x03\x04\x03\x04", // 𨮅
+ 0x28b86: "\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 𨮆
+ 0x28b87: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𨮇
+ 0x28b88: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05\x03\x04", // 𨮈
+ 0x28b89: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x01\x03\x02\x05\x01\x04\x03\x01\x01\x01\x02", // 𨮉
+ 0x28b8a: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x01\x01\x01\x03\x04\x05\x04\x04\x01\x02", // 𨮊
+ 0x28b8b: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x01\x02\x05\x01\x01\x02\x02\x04\x05\x04\x04", // 𨮋
+ 0x28b8c: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x04\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𨮌
+ 0x28b8d: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x02\x05\x02\x05\x01\x01\x03\x01\x02\x03\x04", // 𨮍
+ 0x28b8e: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x04\x04\x01\x03\x05\x04\x02\x05\x01", // 𨮎
+ 0x28b8f: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x03\x05\x04\x05\x04\x04\x03\x01\x02\x03\x04", // 𨮏
+ 0x28b90: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x03\x01\x02\x02\x05\x01\x01\x01\x04\x05\x04", // 𨮐
+ 0x28b91: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𨮑
+ 0x28b92: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x03\x05\x04", // 𨮒
+ 0x28b93: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 𨮓
+ 0x28b94: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 𨮔
+ 0x28b95: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x05\x01\x05\x05\x01\x05\x01\x02\x01\x03\x03\x01\x02", // 𨮕
+ 0x28b96: "\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𨮖
+ 0x28b97: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x05\x03\x01\x05\x02\x02\x05\x02\x01\x01\x03\x04", // 𨮗
+ 0x28b98: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x05\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𨮘
+ 0x28b99: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x02\x05\x01\x04\x05\x01\x03\x05\x03\x03\x03\x04", // 𨮙
+ 0x28b9a: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x03\x05\x01\x05\x05\x01\x01\x05\x02\x05\x01", // 𨮚
+ 0x28b9b: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x03\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 𨮛
+ 0x28b9c: "\x04\x04\x01\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02\x03\x04\x01\x01\x02\x04\x03\x01", // 𨮜
+ 0x28b9d: "\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x01\x02\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𨮝
+ 0x28b9e: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x01\x02\x01", // 𨮞
+ 0x28b9f: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x01\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𨮟
+ 0x28ba0: "\x02\x04\x03\x01\x03\x05\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x03\x05\x01\x01", // 𨮠
+ 0x28ba1: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x05\x03\x01\x05\x01\x02\x01\x03\x05\x01\x02\x04", // 𨮡
+ 0x28ba2: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x02\x05\x01\x02\x01\x02\x05\x02\x05\x01\x01\x01", // 𨮢
+ 0x28ba3: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x05\x03\x01\x05\x02\x05\x02\x02\x01\x01\x01\x02", // 𨮣
+ 0x28ba4: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x02\x03\x04\x01\x05\x01\x01\x03\x02\x05\x01", // 𨮤
+ 0x28ba5: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x02\x04\x04\x05\x03\x04\x03\x04\x02\x05\x01", // 𨮥
+ 0x28ba6: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x05\x03\x01\x05\x05\x05\x01\x02\x04\x01\x03\x04", // 𨮦
+ 0x28ba7: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x01\x02\x02\x02\x02\x01\x03\x05\x04\x01\x05\x02", // 𨮧
+ 0x28ba8: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x02\x05\x02", // 𨮨
+ 0x28ba9: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x03\x05\x01\x05\x05\x01\x01\x05\x02\x05\x01", // 𨮩
+ 0x28baa: "\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𨮪
+ 0x28bab: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x01\x01\x01\x02\x01\x05\x05\x05\x01\x02\x01", // 𨮫
+ 0x28bac: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04\x01\x02\x04", // 𨮬
+ 0x28bad: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x01\x02\x02\x01\x01\x01\x03\x04\x03\x03\x01\x02", // 𨮭
+ 0x28bae: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x02\x05\x02\x02\x01\x01\x01\x02\x05\x01\x01\x01", // 𨮮
+ 0x28baf: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x04\x01\x02\x05\x01\x03\x01\x02\x01\x05\x03\x04", // 𨮯
+ 0x28bb0: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x01\x03\x02", // 𨮰
+ 0x28bb1: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x04\x03\x01\x04\x02\x05\x01\x02\x02\x05\x01\x01", // 𨮱
+ 0x28bb2: "\x04\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01\x03\x05\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𨮲
+ 0x28bb3: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x04\x02\x05\x01\x01\x03\x05\x03\x05\x04\x04\x04\x04", // 𨮳
+ 0x28bb4: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01\x03\x05", // 𨮴
+ 0x28bb5: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 𨮵
+ 0x28bb6: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x01\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 𨮶
+ 0x28bb7: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x02\x01\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01", // 𨮷
+ 0x28bb8: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x04\x05\x03\x03\x04\x01\x01\x02\x04\x03\x01\x02\x02", // 𨮸
+ 0x28bb9: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01\x04\x05\x04", // 𨮹
+ 0x28bba: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x02\x03\x04\x01\x03\x05\x04\x03\x05\x02\x05\x01\x01", // 𨮺
+ 0x28bbb: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x03\x02\x05\x01\x01\x02\x01\x01\x03\x05\x01\x02\x01", // 𨮻
+ 0x28bbc: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x04\x03\x01\x04\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 𨮼
+ 0x28bbd: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x04\x03\x04\x02\x03\x04\x03\x05\x04\x02\x03\x04\x03", // 𨮽
+ 0x28bbe: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x05\x02\x05\x01\x02\x01\x02\x05\x01\x01\x02\x04", // 𨮾
+ 0x28bbf: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x04\x03\x01\x04\x01\x02\x01\x03\x02\x05\x01\x01", // 𨮿
+ 0x28bc0: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x02\x03\x04\x01\x03\x05\x04\x03\x05\x02\x05\x01\x01", // 𨯀
+ 0x28bc1: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x03\x04\x05\x04\x02\x05\x01\x01\x02\x04\x04\x05\x04", // 𨯁
+ 0x28bc2: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x04\x05\x02\x04\x01\x03\x04\x01\x03\x01\x01\x05\x03\x04", // 𨯂
+ 0x28bc3: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01\x03\x01\x03\x04", // 𨯃
+ 0x28bc4: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x04\x03\x03\x04", // 𨯄
+ 0x28bc5: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𨯅
+ 0x28bc6: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x03\x01\x02\x02\x01\x02\x05\x01\x01", // 𨯆
+ 0x28bc7: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x03\x01\x01\x02", // 𨯇
+ 0x28bc8: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x05\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 𨯈
+ 0x28bc9: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x03\x04\x01\x01\x03\x04\x01\x02\x05\x01\x01\x01\x02", // 𨯉
+ 0x28bca: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x04\x05\x02\x04\x01\x03\x04\x03\x01\x02\x01\x05\x04", // 𨯊
+ 0x28bcb: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x01\x01\x02\x04\x04\x01\x05\x03\x03\x01\x03\x04", // 𨯋
+ 0x28bcc: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 𨯌
+ 0x28bcd: "\x01\x02\x01\x02\x01\x03\x01\x01\x03\x04\x05\x03\x01\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𨯍
+ 0x28bce: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x03\x04\x01\x04\x05\x02\x04\x01\x03\x04\x05\x01\x01", // 𨯎
+ 0x28bcf: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x01\x02\x01\x03\x01\x01\x02\x01\x03\x01\x01\x02\x01", // 𨯏
+ 0x28bd0: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x02\x02\x05\x01\x03\x01\x02\x02\x05\x01\x01\x02\x01", // 𨯐
+ 0x28bd1: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 𨯑
+ 0x28bd2: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 𨯒
+ 0x28bd3: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x03\x05\x04\x04\x05\x04\x01\x01\x02\x03\x04", // 𨯓
+ 0x28bd4: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 𨯔
+ 0x28bd5: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x02\x01\x02\x05\x01\x02\x01\x01\x01\x02\x01\x01\x01", // 𨯕
+ 0x28bd6: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x04\x03\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𨯖
+ 0x28bd7: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x01\x01\x02\x01\x04", // 𨯗
+ 0x28bd8: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 𨯘
+ 0x28bd9: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x03\x05\x02\x02\x01\x05\x04\x05\x04\x04\x03\x05\x04", // 𨯙
+ 0x28bda: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 𨯚
+ 0x28bdb: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x05\x02\x03\x04\x04\x05\x01\x01\x05\x04", // 𨯛
+ 0x28bdc: "\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x04\x05\x03\x04\x01\x01\x02\x04\x03\x01", // 𨯜
+ 0x28bdd: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x02\x01\x03\x01\x02\x01\x02\x05\x01\x01\x04\x05\x04", // 𨯝
+ 0x28bde: "\x05\x01\x05\x01\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x01\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 𨯞
+ 0x28bdf: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x04\x05\x02\x04\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𨯟
+ 0x28be0: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x02\x05\x01\x01\x01", // 𨯠
+ 0x28be1: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𨯡
+ 0x28be2: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x02\x05\x01\x02\x05\x01\x01\x02\x01\x02\x01\x01\x01\x02", // 𨯢
+ 0x28be3: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x03\x02\x03\x01\x01\x02\x01\x02\x01\x05\x02\x01\x01\x02\x03\x04", // 𨯣
+ 0x28be4: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x05\x02\x05\x01\x03\x05\x01\x01\x05\x03\x01\x03\x05\x04", // 𨯤
+ 0x28be5: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x04\x03\x01\x04\x03\x02\x05\x03\x04\x01\x01\x05\x03\x05", // 𨯥
+ 0x28be6: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x04\x03\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𨯦
+ 0x28be7: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x01\x02\x05\x01\x02\x01\x01\x03\x05\x04\x04\x04\x04", // 𨯧
+ 0x28be8: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01\x04\x04\x04\x04", // 𨯨
+ 0x28be9: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01", // 𨯩
+ 0x28bea: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04\x05\x04\x01\x05\x04\x01", // 𨯪
+ 0x28beb: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x05", // 𨯫
+ 0x28bec: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04\x01", // 𨯬
+ 0x28bed: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x05\x05\x01\x05\x01\x02\x02\x01\x03\x04\x04\x05\x04", // 𨯭
+ 0x28bee: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x01\x02\x01\x02\x01\x01\x02\x01\x02\x01\x01\x02", // 𨯮
+ 0x28bef: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04", // 𨯯
+ 0x28bf0: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x05\x02\x01", // 𨯰
+ 0x28bf1: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x01\x01\x02\x05\x04\x03\x01\x01\x02\x01\x05\x03\x04", // 𨯱
+ 0x28bf2: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x01\x04\x03\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𨯲
+ 0x28bf3: "\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x05\x02\x03\x05\x05\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𨯳
+ 0x28bf4: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01\x03\x03\x01\x02", // 𨯴
+ 0x28bf5: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x01\x03\x04", // 𨯵
+ 0x28bf6: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x05\x03\x01\x01\x02\x02\x05\x02\x02\x01\x04\x05\x04\x04", // 𨯶
+ 0x28bf7: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 𨯷
+ 0x28bf8: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x02\x03\x04\x03\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𨯸
+ 0x28bf9: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x04\x03\x01\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𨯹
+ 0x28bfa: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x01\x04\x03\x03\x04", // 𨯺
+ 0x28bfb: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 𨯻
+ 0x28bfc: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 𨯼
+ 0x28bfd: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x04\x03\x01\x04\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 𨯽
+ 0x28bfe: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04\x01\x01\x02", // 𨯾
+ 0x28bff: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x01\x02\x05\x03\x01\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 𨯿
+ 0x28c00: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x03\x04\x01\x01\x03\x04\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 𨰀
+ 0x28c01: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x02\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𨰁
+ 0x28c02: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x04\x01\x03\x05\x02\x02\x01\x01\x05\x04\x04\x04\x04", // 𨰂
+ 0x28c03: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x05\x03\x01", // 𨰃
+ 0x28c04: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04\x04\x05\x04", // 𨰄
+ 0x28c05: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x01\x05\x01\x05\x01\x05", // 𨰅
+ 0x28c06: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x05\x03\x04\x03\x03\x05\x04\x03\x03\x05\x04\x03\x03\x05\x04", // 𨰆
+ 0x28c07: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x03\x01\x03\x04", // 𨰇
+ 0x28c08: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x02\x03\x05\x02\x05\x01\x03\x01\x03\x04\x03\x01\x01\x02", // 𨰈
+ 0x28c09: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x01\x03\x02\x03\x03\x01\x02", // 𨰉
+ 0x28c0a: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x05\x02\x05\x01\x03\x05\x04\x01\x04\x01\x04\x03\x01\x03\x05\x04", // 𨰊
+ 0x28c0b: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x05\x02\x04\x02\x05\x01\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01", // 𨰋
+ 0x28c0c: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x04\x01\x01\x01\x02\x05\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 𨰌
+ 0x28c0d: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𨰍
+ 0x28c0e: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x02\x05\x01\x01\x01\x05\x03\x04", // 𨰎
+ 0x28c0f: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 𨰏
+ 0x28c10: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x01\x04\x03\x03\x04", // 𨰐
+ 0x28c11: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x02\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𨰑
+ 0x28c12: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x02\x05\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 𨰒
+ 0x28c13: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x04\x03\x01\x04\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x01\x01", // 𨰓
+ 0x28c14: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x05\x02\x05\x02\x02\x01\x03\x04\x01\x02\x05\x01\x04\x04\x04\x04", // 𨰔
+ 0x28c15: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x02\x05\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 𨰕
+ 0x28c16: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x05\x03\x03\x03\x04\x01\x03\x05\x03\x03\x03\x04\x04\x03\x03\x04", // 𨰖
+ 0x28c17: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x02\x01\x02\x05\x01\x02\x05\x03\x01\x01\x02\x05\x02\x02\x01", // 𨰗
+ 0x28c18: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x01\x01\x02\x02\x01\x01\x01\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 𨰘
+ 0x28c19: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x01\x04", // 𨰙
+ 0x28c1a: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𨰚
+ 0x28c1b: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x02\x04\x03\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𨰛
+ 0x28c1c: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x04\x03\x02\x05\x02\x02\x01\x05\x01\x01\x05\x04\x01\x02\x04", // 𨰜
+ 0x28c1d: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x04\x03\x01\x04\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01", // 𨰝
+ 0x28c1e: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x03\x01\x01\x01\x02\x01\x01\x01", // 𨰞
+ 0x28c1f: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x02\x02\x01\x05\x04\x03\x05\x04\x01\x01\x05\x01\x05\x04\x04\x04\x04", // 𨰟
+ 0x28c20: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x05\x02\x05\x01\x03\x05\x04\x01\x04\x03\x01\x01\x01\x02\x03\x05\x04", // 𨰠
+ 0x28c21: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x01\x02\x01\x04", // 𨰡
+ 0x28c22: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x05\x05\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𨰢
+ 0x28c23: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x04\x01\x02\x05\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05", // 𨰣
+ 0x28c24: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x01\x02\x03\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x03\x04", // 𨰤
+ 0x28c25: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x03\x01\x02\x03\x04\x01\x03\x04\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𨰥
+ 0x28c26: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x05\x01\x01\x02\x01\x03\x05\x02\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𨰦
+ 0x28c27: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x05\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01\x01\x01", // 𨰧
+ 0x28c28: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x01\x03\x04\x04\x03\x03\x04", // 𨰨
+ 0x28c29: "\x04\x01\x02\x05\x01\x02\x05\x01\x01\x02\x01\x02\x01\x01\x01\x02\x03\x01\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𨰩
+ 0x28c2a: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x03\x01\x02\x03\x04\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 𨰪
+ 0x28c2b: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x02\x05\x01\x01\x03\x01\x02\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 𨰫
+ 0x28c2c: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𨰬
+ 0x28c2d: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x01\x04\x03\x01\x04\x02\x05\x01\x01\x01\x01\x03\x04\x05\x05\x04\x02\x03\x04", // 𨰭
+ 0x28c2e: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x02\x05\x01\x02\x05\x01\x01\x02\x01\x02\x01\x01\x01\x02\x02\x01\x05\x04", // 𨰮
+ 0x28c2f: "\x04\x01\x02\x05\x01\x02\x05\x01\x01\x02\x01\x02\x01\x01\x01\x02\x02\x01\x05\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𨰯
+ 0x28c30: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x04\x05\x01\x01\x02\x01\x03\x01\x01\x02\x05\x02\x02\x05\x01\x01\x01\x03\x04", // 𨰰
+ 0x28c31: "\x02\x05\x03\x04\x03\x02\x05\x01\x01\x02\x05\x03\x04\x02\x05\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𨰱
+ 0x28c32: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x01\x02\x05\x03\x01\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x05", // 𨰲
+ 0x28c33: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x02\x05\x01\x01\x02\x05\x01\x05\x02\x02", // 𨰳
+ 0x28c34: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 𨰴
+ 0x28c35: "\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x02\x03\x04\x01\x01\x02\x04\x03\x01", // 𨰵
+ 0x28c36: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x01\x02\x05\x03\x05\x02\x05\x01\x02\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 𨰶
+ 0x28c37: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x04\x05\x02\x05\x01\x01\x01\x03\x04", // 𨰷
+ 0x28c38: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x01\x01\x02\x05\x01\x01\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 𨰸
+ 0x28c39: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x05\x01\x02\x05\x03\x01\x01\x02\x05\x02\x02\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 𨰹
+ 0x28c3a: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x03\x01\x03\x04", // 𨰺
+ 0x28c3b: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x01\x01\x02\x04\x03\x01\x03\x04\x01\x01\x02\x04\x03\x01", // 𨰻
+ 0x28c3c: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𨰼
+ 0x28c3d: "\x03\x04\x01\x01\x02\x04\x03\x01\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𨰽
+ 0x28c3e: "\x03\x01\x01\x01\x05\x05\x05\x01", // 𨰾
+ 0x28c3f: "\x03\x01\x01\x01\x05\x03\x01\x05", // 𨰿
+ 0x28c40: "\x03\x01\x01\x01\x05\x01\x05\x05\x01", // 𨱀
+ 0x28c41: "\x03\x01\x01\x01\x05\x03\x05\x05\x04", // 𨱁
+ 0x28c42: "\x03\x01\x01\x01\x05\x03\x02\x03\x05", // 𨱂
+ 0x28c43: "\x03\x01\x01\x01\x05\x03\x03\x05\x04\x04", // 𨱃
+ 0x28c44: "\x03\x01\x01\x01\x05\x05\x02\x02\x05\x02", // 𨱄
+ 0x28c45: "\x03\x01\x01\x01\x05\x03\x04\x03\x03\x03", // 𨱅
+ 0x28c46: "\x03\x01\x01\x01\x05\x01\x03\x05\x03\x04", // 𨱆
+ 0x28c47: "\x03\x01\x01\x01\x05\x01\x02\x04\x01\x03\x04\x04", // 𨱇
+ 0x28c48: "\x03\x01\x01\x01\x05\x01\x02\x05\x01\x02\x03\x04", // 𨱈
+ 0x28c49: "\x03\x01\x01\x01\x05\x04\x01\x02\x05\x01\x02\x03\x04", // 𨱉
+ 0x28c4a: "\x03\x01\x01\x01\x05\x05\x01\x03\x05\x02\x02\x05\x02", // 𨱊
+ 0x28c4b: "\x03\x01\x01\x01\x05\x01\x02\x01\x03\x04\x03\x05\x04", // 𨱋
+ 0x28c4c: "\x03\x01\x01\x01\x05\x05\x05\x02\x01\x02\x05\x03\x04", // 𨱌
+ 0x28c4d: "\x03\x01\x01\x01\x05\x04\x05\x01\x01\x05\x04\x05\x02", // 𨱍
+ 0x28c4e: "\x03\x01\x01\x01\x05\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 𨱎
+ 0x28c4f: "\x03\x01\x01\x01\x05\x01\x02\x02\x03\x04\x01\x02\x05\x01", // 𨱏
+ 0x28c50: "\x03\x01\x01\x01\x05\x05\x01\x03\x01\x02\x05\x02\x04\x04\x04\x04", // 𨱐
+ 0x28c51: "\x03\x01\x01\x01\x05\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 𨱑
+ 0x28c52: "\x03\x01\x01\x01\x05\x01\x02\x05\x01\x02\x03\x04\x03\x05\x03\x04", // 𨱒
+ 0x28c53: "\x03\x01\x01\x01\x05\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 𨱓
+ 0x28c54: "\x03\x01\x01\x01\x05\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x02\x04", // 𨱔
+ 0x28c55: "\x03\x01\x01\x01\x05\x03\x05\x03\x05\x01\x01\x02\x05\x03\x03\x01\x01\x02", // 𨱕
+ 0x28c56: "\x03\x01\x01\x01\x05\x03\x03\x02\x02\x05\x02\x01\x03\x05\x03\x01\x03\x04", // 𨱖
+ 0x28c57: "\x01\x02\x03\x04\x01\x05\x03\x04", // 𨱗
+ 0x28c58: "\x01\x02\x04\x03\x01\x03\x04", // 𨱘
+ 0x28c59: "\x01\x02\x01\x01\x01\x05\x04\x03\x05", // 𨱙
+ 0x28c5a: "\x01\x02\x01\x01\x01\x05\x04\x03\x05\x05\x04", // 𨱚
+ 0x28c5b: "\x01\x02\x01\x01\x01\x05\x04\x03\x05\x05\x04", // 𨱛
+ 0x28c5c: "\x01\x02\x01\x01\x01\x05\x04\x01\x02\x05\x04", // 𨱜
+ 0x28c5d: "\x01\x02\x01\x01\x01\x05\x04\x03\x01\x03\x04", // 𨱝
+ 0x28c5e: "\x01\x02\x01\x01\x01\x05\x04\x03\x01\x01\x05", // 𨱞
+ 0x28c5f: "\x01\x02\x01\x01\x01\x05\x04\x03\x05\x03\x04", // 𨱟
+ 0x28c60: "\x01\x02\x01\x01\x01\x05\x04\x03\x05\x01\x01", // 𨱠
+ 0x28c61: "\x01\x02\x01\x01\x01\x05\x04\x03\x05\x01\x05", // 𨱡
+ 0x28c62: "\x01\x02\x01\x01\x01\x05\x04\x05\x04\x05\x02", // 𨱢
+ 0x28c63: "\x01\x02\x01\x01\x01\x05\x04\x05\x04\x05\x04", // 𨱣
+ 0x28c64: "\x01\x02\x01\x01\x01\x05\x04\x04\x05\x03\x05", // 𨱤
+ 0x28c65: "\x01\x03\x02\x04\x01\x02\x01\x01\x01\x05\x03\x04", // 𨱥
+ 0x28c66: "\x01\x02\x01\x01\x01\x05\x04\x05\x02\x02\x05\x02", // 𨱦
+ 0x28c67: "\x01\x02\x01\x01\x01\x05\x04\x05\x05\x04\x05\x03", // 𨱧
+ 0x28c68: "\x01\x02\x01\x01\x01\x05\x04\x05\x04\x05\x02\x03", // 𨱨
+ 0x28c69: "\x01\x02\x01\x01\x01\x05\x04\x03\x01\x03\x03\x04", // 𨱩
+ 0x28c6a: "\x01\x02\x01\x01\x01\x05\x04\x03\x05\x04\x01\x04", // 𨱪
+ 0x28c6b: "\x01\x02\x01\x01\x01\x05\x04\x01\x02\x02\x01\x01", // 𨱫
+ 0x28c6c: "\x01\x02\x01\x01\x01\x05\x04\x02\x01\x02\x05\x01", // 𨱬
+ 0x28c6d: "\x01\x02\x01\x01\x01\x05\x04\x02\x05\x01\x01\x05", // 𨱭
+ 0x28c6e: "\x01\x02\x01\x01\x01\x05\x04\x02\x05\x01\x05\x04", // 𨱮
+ 0x28c6f: "\x01\x02\x01\x01\x01\x05\x04\x03\x04\x02\x03\x04", // 𨱯
+ 0x28c70: "\x01\x02\x01\x01\x01\x05\x04\x05\x01\x05\x03\x02", // 𨱰
+ 0x28c71: "\x01\x02\x01\x01\x01\x05\x04\x05\x05\x04\x01\x04", // 𨱱
+ 0x28c72: "\x01\x02\x01\x01\x01\x05\x04\x02\x01\x02\x01\x03\x05", // 𨱲
+ 0x28c73: "\x01\x02\x01\x01\x01\x05\x04\x03\x01\x03\x03\x04\x04", // 𨱳
+ 0x28c74: "\x01\x02\x01\x01\x01\x05\x04\x03\x05\x04\x02\x05\x01", // 𨱴
+ 0x28c75: "\x01\x02\x01\x01\x01\x05\x04\x03\x04\x01\x05\x03\x04", // 𨱵
+ 0x28c76: "\x01\x02\x01\x01\x01\x05\x04\x05\x01\x02\x01\x01\x02\x01", // 𨱶
+ 0x28c77: "\x01\x02\x01\x01\x01\x05\x04\x03\x01\x02\x01\x03\x05", // 𨱷
+ 0x28c78: "\x01\x02\x01\x01\x01\x05\x04\x02\x05\x02\x02\x01\x01", // 𨱸
+ 0x28c79: "\x01\x02\x01\x01\x01\x05\x04\x03\x04\x01\x02\x05\x04", // 𨱹
+ 0x28c7a: "\x01\x02\x01\x01\x01\x05\x04\x01\x02\x01\x01\x03\x02", // 𨱺
+ 0x28c7b: "\x01\x02\x01\x01\x01\x05\x04\x01\x02\x01\x02\x05\x01", // 𨱻
+ 0x28c7c: "\x01\x03\x05\x04\x03\x05\x01\x02\x01\x01\x01\x05\x03\x04", // 𨱼
+ 0x28c7d: "\x01\x02\x01\x01\x01\x05\x04\x02\x05\x01\x01\x05\x03", // 𨱽
+ 0x28c7e: "\x01\x02\x01\x01\x01\x05\x03\x04\x01\x05\x01\x05\x03\x04", // 𨱾
+ 0x28c7f: "\x01\x02\x01\x01\x01\x05\x04\x01\x01\x03\x05\x03\x04", // 𨱿
+ 0x28c80: "\x01\x02\x01\x01\x01\x05\x04\x01\x01\x02\x01\x01\x03\x02", // 𨲀
+ 0x28c81: "\x01\x02\x01\x01\x01\x05\x04\x03\x01\x03\x04\x02\x03\x04", // 𨲁
+ 0x28c82: "\x01\x02\x01\x01\x01\x05\x04\x01\x02\x01\x03\x02\x03\x04", // 𨲂
+ 0x28c83: "\x01\x02\x01\x01\x01\x05\x04\x02\x05\x01\x01\x02\x03\x04", // 𨲃
+ 0x28c84: "\x01\x02\x01\x01\x01\x05\x04\x05\x04\x02\x03\x04\x05\x04", // 𨲄
+ 0x28c85: "\x01\x02\x01\x01\x01\x05\x03\x04\x05\x03\x04\x04\x05\x04\x04", // 𨲅
+ 0x28c86: "\x01\x02\x01\x01\x01\x05\x04\x02\x04\x03\x03\x05\x04\x01", // 𨲆
+ 0x28c87: "\x01\x02\x01\x01\x01\x05\x04\x04\x04\x05\x01\x01\x02\x03\x04", // 𨲇
+ 0x28c88: "\x01\x02\x01\x01\x01\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𨲈
+ 0x28c89: "\x01\x02\x01\x01\x01\x05\x04\x03\x01\x02\x01\x02\x01\x02\x01\x01", // 𨲉
+ 0x28c8a: "\x01\x02\x01\x01\x01\x05\x04\x02\x05\x02\x01\x03\x01\x01\x02", // 𨲊
+ 0x28c8b: "\x01\x02\x01\x01\x01\x05\x04\x03\x02\x05\x01\x01\x03\x01\x02", // 𨲋
+ 0x28c8c: "\x01\x02\x01\x01\x01\x05\x04\x03\x04\x04\x03\x05\x01\x01\x02", // 𨲌
+ 0x28c8d: "\x01\x02\x01\x01\x01\x05\x03\x04\x01\x02\x01\x01\x01\x05\x03\x04", // 𨲍
+ 0x28c8e: "\x01\x02\x01\x01\x01\x05\x04\x02\x05\x01\x01\x03\x05\x03\x03", // 𨲎
+ 0x28c8f: "\x01\x02\x01\x01\x01\x05\x04\x04\x03\x01\x01\x03\x04\x05\x05", // 𨲏
+ 0x28c90: "\x01\x02\x01\x01\x01\x05\x04\x03\x05\x04\x01\x03\x02\x04\x01", // 𨲐
+ 0x28c91: "\x01\x02\x01\x01\x01\x05\x04\x05\x03\x05\x04\x01\x01\x05\x04", // 𨲑
+ 0x28c92: "\x01\x02\x01\x01\x01\x05\x04\x05\x01\x01\x02\x04\x01\x03\x04", // 𨲒
+ 0x28c93: "\x01\x02\x01\x01\x01\x05\x04\x02\x03\x04\x03\x02\x05\x01\x01\x01", // 𨲓
+ 0x28c94: "\x01\x02\x01\x01\x01\x05\x04\x03\x04\x05\x02\x03\x05\x03\x05\x04", // 𨲔
+ 0x28c95: "\x01\x02\x01\x01\x01\x05\x04\x01\x03\x01\x02\x01\x03\x05\x04\x01", // 𨲕
+ 0x28c96: "\x02\x05\x01\x01\x02\x05\x02\x01\x04\x01\x02\x01\x01\x01\x05\x04", // 𨲖
+ 0x28c97: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x01\x01\x01\x05\x03\x04", // 𨲗
+ 0x28c98: "\x01\x02\x01\x01\x01\x05\x04\x01\x02\x01\x03\x02\x05\x01\x01\x04", // 𨲘
+ 0x28c99: "\x01\x02\x01\x01\x01\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𨲙
+ 0x28c9a: "\x01\x02\x01\x01\x01\x05\x04\x03\x01\x02\x03\x04\x01\x01\x02\x01", // 𨲚
+ 0x28c9b: "\x01\x02\x01\x01\x01\x05\x04\x04\x03\x01\x03\x02\x05\x01\x01\x01", // 𨲛
+ 0x28c9c: "\x01\x02\x01\x01\x01\x05\x04\x04\x05\x01\x03\x02\x05\x01\x02\x02", // 𨲜
+ 0x28c9d: "\x01\x02\x01\x01\x01\x05\x04\x02\x01\x02\x01\x01\x05\x03\x01\x01\x05", // 𨲝
+ 0x28c9e: "\x01\x02\x01\x01\x01\x05\x04\x02\x05\x01\x01\x03\x05\x03\x03\x02\x02", // 𨲞
+ 0x28c9f: "\x01\x02\x01\x01\x01\x05\x04\x04\x04\x05\x03\x04\x03\x04\x02\x05\x01", // 𨲟
+ 0x28ca0: "\x01\x02\x01\x01\x01\x05\x04\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01", // 𨲠
+ 0x28ca1: "\x01\x02\x01\x01\x01\x05\x04\x03\x01\x04\x03\x01\x04\x01\x01\x03\x02", // 𨲡
+ 0x28ca2: "\x01\x02\x01\x01\x01\x05\x04\x01\x01\x02\x05\x02\x04\x01\x01\x02\x01", // 𨲢
+ 0x28ca3: "\x01\x02\x01\x01\x01\x05\x04\x01\x01\x02\x05\x02\x04\x01\x01\x02\x01", // 𨲣
+ 0x28ca4: "\x01\x02\x01\x01\x01\x05\x04\x01\x02\x01\x03\x03\x05\x02\x05\x01\x01", // 𨲤
+ 0x28ca5: "\x01\x02\x01\x01\x01\x05\x04\x03\x05\x02\x05\x01\x02\x01\x03\x01\x01\x02", // 𨲥
+ 0x28ca6: "\x01\x02\x01\x01\x01\x05\x04\x02\x01\x02\x01\x01\x05\x02\x05\x01\x01\x01", // 𨲦
+ 0x28ca7: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04", // 𨲧
+ 0x28ca8: "\x01\x02\x01\x01\x01\x05\x04\x04\x01\x04\x03\x01\x03\x03\x01\x01\x02\x01", // 𨲨
+ 0x28ca9: "\x01\x02\x01\x01\x01\x05\x04\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 𨲩
+ 0x28caa: "\x01\x02\x01\x01\x01\x05\x04\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𨲪
+ 0x28cab: "\x01\x02\x01\x01\x01\x05\x04\x03\x05\x04\x01\x01\x01\x02\x04\x05\x04", // 𨲫
+ 0x28cac: "\x01\x02\x01\x01\x01\x05\x04\x05\x04\x05\x02\x03\x03\x01\x03\x04\x05\x03", // 𨲬
+ 0x28cad: "\x01\x02\x01\x01\x01\x05\x04\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 𨲭
+ 0x28cae: "\x01\x02\x01\x01\x01\x05\x04\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x05\x03", // 𨲮
+ 0x28caf: "\x01\x02\x01\x01\x01\x05\x04\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𨲯
+ 0x28cb0: "\x01\x02\x01\x01\x01\x05\x04\x03\x01\x01\x05\x03\x05\x01\x01\x03\x05\x01\x01", // 𨲰
+ 0x28cb1: "\x01\x02\x01\x01\x01\x05\x04\x05\x04\x05\x04\x05\x04\x03\x04\x02\x04\x04\x04", // 𨲱
+ 0x28cb2: "\x01\x02\x01\x01\x01\x05\x04\x02\x05\x02\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 𨲲
+ 0x28cb3: "\x01\x02\x01\x01\x01\x05\x04\x02\x05\x01\x02\x02\x01\x01\x03\x01\x01\x05\x03\x04", // 𨲳
+ 0x28cb4: "\x01\x02\x01\x01\x01\x05\x04\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𨲴
+ 0x28cb5: "\x01\x02\x01\x01\x01\x05\x04\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 𨲵
+ 0x28cb6: "\x01\x02\x01\x01\x01\x05\x04\x05\x02\x02\x05\x02\x04\x01\x05\x03\x03\x01\x03\x04", // 𨲶
+ 0x28cb7: "\x01\x02\x01\x01\x01\x05\x03\x04\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 𨲷
+ 0x28cb8: "\x01\x02\x01\x01\x01\x05\x04\x04\x04\x05\x04\x05\x04\x04\x02\x05\x02\x02\x01\x01\x02", // 𨲸
+ 0x28cb9: "\x01\x02\x01\x01\x01\x05\x04\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03\x04", // 𨲹
+ 0x28cba: "\x01\x02\x01\x01\x01\x05\x04\x04\x04\x05\x01\x02\x03\x03\x02\x05\x01\x01\x01\x03\x04", // 𨲺
+ 0x28cbb: "\x01\x02\x01\x01\x01\x05\x04\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x03\x01\x02\x01", // 𨲻
+ 0x28cbc: "\x01\x02\x01\x01\x01\x05\x04\x03\x04\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𨲼
+ 0x28cbd: "\x01\x02\x01\x01\x01\x05\x04\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𨲽
+ 0x28cbe: "\x01\x02\x01\x01\x01\x05\x04\x03\x02\x05\x01\x01\x01\x04\x04\x05\x03\x05\x04\x01\x05\x03", // 𨲾
+ 0x28cbf: "\x01\x02\x01\x01\x01\x05\x04\x03\x05\x04\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𨲿
+ 0x28cc0: "\x01\x02\x01\x01\x01\x05\x04\x04\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05\x03\x04", // 𨳀
+ 0x28cc1: "\x01\x02\x01\x01\x01\x05\x04\x04\x01\x04\x03\x01\x03\x05\x04\x01\x01\x05\x01\x05\x01\x01\x01", // 𨳁
+ 0x28cc2: "\x01\x02\x01\x01\x01\x05\x04\x03\x05\x02\x05\x01\x01\x05\x03\x05\x03\x05\x02\x05\x01\x03\x05\x04", // 𨳂
+ 0x28cc3: "\x01\x02\x01\x01\x01\x05\x04\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 𨳃
+ 0x28cc4: "\x01\x02\x01\x01\x01\x05\x04\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 𨳄
+ 0x28cc5: "\x01\x02\x01\x01\x01\x05\x04\x04\x04\x05\x03\x05\x04\x01\x04\x03\x01\x03\x05\x04\x01\x01\x05\x01\x05\x01\x01\x01", // 𨳅
+ 0x28cc6: "\x01\x02\x01\x01\x01\x05\x04\x01\x02\x05\x01\x02\x04\x05\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 𨳆
+ 0x28cc7: "\x01\x01\x05\x01\x02\x02\x05\x01", // 𨳇
+ 0x28cc8: "\x02\x05\x01\x01\x05\x01\x01\x02", // 𨳈
+ 0x28cc9: "\x05\x01\x01\x02\x02\x05\x01\x01\x04", // 𨳉
+ 0x28cca: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05", // 𨳊
+ 0x28ccb: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05", // 𨳋
+ 0x28ccc: "\x01\x01\x05\x01\x01\x02\x02\x05\x01\x01", // 𨳌
+ 0x28ccd: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x05", // 𨳍
+ 0x28cce: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x01", // 𨳎
+ 0x28ccf: "\x01\x01\x05\x01\x01\x02\x02\x05\x01\x01", // 𨳏
+ 0x28cd0: "\x05\x01\x01\x02\x02\x05\x01\x01\x05\x03\x01", // 𨳐
+ 0x28cd1: "\x05\x01\x01\x02\x02\x05\x01\x01\x04\x01\x05", // 𨳑
+ 0x28cd2: "\x05\x01\x01\x02\x02\x05\x01\x01\x02\x03\x04", // 𨳒
+ 0x28cd3: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x03\x04", // 𨳓
+ 0x28cd4: "\x01\x01\x01\x05\x01\x01\x02\x02\x05\x01\x01", // 𨳔
+ 0x28cd5: "\x05\x01\x01\x02\x02\x05\x01\x01\x05\x02\x01", // 𨳕
+ 0x28cd6: "\x05\x01\x01\x02\x02\x05\x01\x01\x05\x05\x05", // 𨳖
+ 0x28cd7: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x04\x05\x04", // 𨳗
+ 0x28cd8: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x05\x02\x05", // 𨳘
+ 0x28cd9: "\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x03\x04", // 𨳙
+ 0x28cda: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x04\x05\x03", // 𨳚
+ 0x28cdb: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x05\x04", // 𨳛
+ 0x28cdc: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x03\x01\x02", // 𨳜
+ 0x28cdd: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x01\x02\x01", // 𨳝
+ 0x28cde: "\x05\x01\x01\x02\x02\x05\x01\x01\x05\x02\x01\x01", // 𨳞
+ 0x28cdf: "\x05\x01\x01\x02\x02\x05\x01\x01\x05\x02\x05\x04", // 𨳟
+ 0x28ce0: "\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x03\x04", // 𨳠
+ 0x28ce1: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x01\x02\x01", // 𨳡
+ 0x28ce2: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x02\x02\x04", // 𨳢
+ 0x28ce3: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x04\x01\x05", // 𨳣
+ 0x28ce4: "\x05\x01\x01\x02\x02\x05\x01\x01\x05\x01\x05\x02", // 𨳤
+ 0x28ce5: "\x05\x01\x01\x02\x02\x05\x01\x01\x05\x04\x03\x04", // 𨳥
+ 0x28ce6: "\x05\x01\x01\x02\x02\x05\x01\x01\x05\x04\x05\x04", // 𨳦
+ 0x28ce7: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x03\x05\x04", // 𨳧
+ 0x28ce8: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 𨳨
+ 0x28ce9: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x01\x03\x02", // 𨳩
+ 0x28cea: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x05\x02", // 𨳪
+ 0x28ceb: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x03\x02\x04", // 𨳫
+ 0x28cec: "\x05\x01\x01\x02\x02\x05\x01\x01\x05\x01\x01\x03", // 𨳬
+ 0x28ced: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x02\x01\x05", // 𨳭
+ 0x28cee: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x05\x03\x04", // 𨳮
+ 0x28cef: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x01\x01\x02", // 𨳯
+ 0x28cf0: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x01\x01\x02", // 𨳰
+ 0x28cf1: "\x03\x01\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01", // 𨳱
+ 0x28cf2: "\x05\x01\x01\x02\x02\x05\x01\x01\x04\x01\x02\x04", // 𨳲
+ 0x28cf3: "\x05\x01\x01\x02\x02\x05\x01\x01\x04\x01\x01\x02\x01", // 𨳳
+ 0x28cf4: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x02\x03\x04", // 𨳴
+ 0x28cf5: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x05\x03\x04", // 𨳵
+ 0x28cf6: "\x05\x01\x01\x02\x02\x05\x01\x01\x05\x01\x05\x01\x05", // 𨳶
+ 0x28cf7: "\x05\x01\x01\x02\x02\x05\x01\x01\x04\x04\x05\x03\x05", // 𨳷
+ 0x28cf8: "\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x02\x01", // 𨳸
+ 0x28cf9: "\x05\x01\x01\x02\x02\x05\x01\x01\x05\x02\x02\x01\x02", // 𨳹
+ 0x28cfa: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x01\x01\x03\x04", // 𨳺
+ 0x28cfb: "\x05\x01\x01\x02\x02\x05\x01\x01\x04\x04\x05\x03\x05", // 𨳻
+ 0x28cfc: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x02\x01\x01", // 𨳼
+ 0x28cfd: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x05\x01\x01", // 𨳽
+ 0x28cfe: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x03\x02\x05\x01", // 𨳾
+ 0x28cff: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x04\x02\x04", // 𨳿
+ 0x28d00: "\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x02\x05\x01", // 𨴀
+ 0x28d01: "\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01\x02", // 𨴁
+ 0x28d02: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x01\x01\x03\x02", // 𨴂
+ 0x28d03: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x01\x02\x01\x01", // 𨴃
+ 0x28d04: "\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01\x05", // 𨴄
+ 0x28d05: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x03\x05\x02", // 𨴅
+ 0x28d06: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x01\x01\x02", // 𨴆
+ 0x28d07: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x04\x03\x01", // 𨴇
+ 0x28d08: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x03\x02\x04\x01", // 𨴈
+ 0x28d09: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x05\x02\x05\x04", // 𨴉
+ 0x28d0a: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x01\x01\x03\x04", // 𨴊
+ 0x28d0b: "\x05\x01\x01\x02\x02\x05\x01\x01\x04\x01\x05\x05\x04", // 𨴋
+ 0x28d0c: "\x05\x01\x01\x02\x02\x05\x01\x01\x05\x04\x05\x01\x01", // 𨴌
+ 0x28d0d: "\x05\x01\x01\x02\x02\x05\x01\x01\x05\x04\x03\x01\x01\x02", // 𨴍
+ 0x28d0e: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x03\x02\x05\x02\x02", // 𨴎
+ 0x28d0f: "\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01", // 𨴏
+ 0x28d10: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x01\x02\x01\x03\x05", // 𨴐
+ 0x28d11: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x01\x01\x02\x01\x05", // 𨴑
+ 0x28d12: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x01\x01\x02\x05\x03", // 𨴒
+ 0x28d13: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x01\x03\x05\x05", // 𨴓
+ 0x28d14: "\x05\x01\x01\x02\x02\x05\x01\x01\x05\x02\x03\x05\x02\x02", // 𨴔
+ 0x28d15: "\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x02\x02\x01\x01", // 𨴕
+ 0x28d16: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 𨴖
+ 0x28d17: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x05\x04\x01\x02\x01", // 𨴗
+ 0x28d18: "\x05\x01\x01\x02\x02\x05\x01\x01\x05\x04\x05\x02\x01\x01", // 𨴘
+ 0x28d19: "\x01\x01\x05\x01\x01\x02\x02\x05\x01\x01\x04\x03\x03\x04", // 𨴙
+ 0x28d1a: "\x01\x01\x02\x01\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01", // 𨴚
+ 0x28d1b: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x01\x03\x03\x05", // 𨴛
+ 0x28d1c: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01", // 𨴜
+ 0x28d1d: "\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02", // 𨴝
+ 0x28d1e: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x01\x01\x02\x01\x02", // 𨴞
+ 0x28d1f: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x02\x03\x02\x03\x02", // 𨴟
+ 0x28d20: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x03\x02\x01\x01\x02", // 𨴠
+ 0x28d21: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x04\x01\x05\x03\x04", // 𨴡
+ 0x28d22: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x04\x03\x05\x04", // 𨴢
+ 0x28d23: "\x05\x01\x01\x02\x02\x05\x01\x01\x04\x04\x05\x05\x03\x01", // 𨴣
+ 0x28d24: "\x05\x01\x01\x02\x02\x05\x01\x01\x04\x04\x01\x04\x01\x05", // 𨴤
+ 0x28d25: "\x05\x01\x01\x02\x02\x05\x01\x01\x04\x04\x05\x03\x01\x05", // 𨴥
+ 0x28d26: "\x05\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01", // 𨴦
+ 0x28d27: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x02\x03\x03\x05\x04", // 𨴧
+ 0x28d28: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x05\x01\x02\x03\x04", // 𨴨
+ 0x28d29: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x04\x01\x01\x02\x03\x04", // 𨴩
+ 0x28d2a: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x05\x01\x01\x02\x04", // 𨴪
+ 0x28d2b: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x04\x04\x03\x05\x02\x01", // 𨴫
+ 0x28d2c: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x01\x02\x01\x02\x05\x01", // 𨴬
+ 0x28d2d: "\x05\x01\x01\x02\x02\x05\x01\x01\x05\x04\x02\x05\x01\x01\x02", // 𨴭
+ 0x28d2e: "\x05\x01\x01\x02\x02\x05\x01\x01\x04\x03\x01\x04\x05\x04\x04", // 𨴮
+ 0x28d2f: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x03\x05\x03\x03\x03\x04", // 𨴯
+ 0x28d30: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x02\x03\x01\x02\x01\x01", // 𨴰
+ 0x28d31: "\x05\x01\x01\x02\x02\x05\x01\x01\x05\x04\x03\x01\x01\x03\x04", // 𨴱
+ 0x28d32: "\x05\x01\x01\x02\x02\x05\x01\x01\x04\x01\x04\x03\x01\x01\x02", // 𨴲
+ 0x28d33: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x02\x03\x03\x05\x03\x04", // 𨴳
+ 0x28d34: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x02\x01\x02\x01\x03\x04", // 𨴴
+ 0x28d35: "\x05\x01\x01\x02\x02\x05\x01\x01\x04\x04\x05\x01\x03\x05\x04", // 𨴵
+ 0x28d36: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x03\x03\x04\x05\x03", // 𨴶
+ 0x28d37: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x01\x02\x03\x04\x05\x03", // 𨴷
+ 0x28d38: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x01\x03\x02\x03\x03\x03", // 𨴸
+ 0x28d39: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x01\x03\x05\x02\x01", // 𨴹
+ 0x28d3a: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04\x01\x02\x04", // 𨴺
+ 0x28d3b: "\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01\x02\x01\x01", // 𨴻
+ 0x28d3c: "\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 𨴼
+ 0x28d3d: "\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x04\x05\x04\x04", // 𨴽
+ 0x28d3e: "\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x05\x03\x02\x02", // 𨴾
+ 0x28d3f: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x02\x01\x02\x01\x05\x04", // 𨴿
+ 0x28d40: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x02\x02\x05\x01\x01\x01", // 𨵀
+ 0x28d41: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x02\x03\x02\x05\x01\x01", // 𨵁
+ 0x28d42: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x01\x05\x02\x05\x02", // 𨵂
+ 0x28d43: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x02\x05\x01\x03\x05", // 𨵃
+ 0x28d44: "\x05\x01\x01\x02\x02\x05\x01\x01\x04\x04\x05\x01\x01\x03\x05", // 𨵄
+ 0x28d45: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x02\x01\x02\x05\x01\x02", // 𨵅
+ 0x28d46: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x05\x04\x02\x03\x04", // 𨵆
+ 0x28d47: "\x05\x01\x01\x02\x02\x05\x01\x01\x05\x03\x01\x03\x05\x03\x04", // 𨵇
+ 0x28d48: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x01\x01\x01\x02\x01\x01\x01", // 𨵈
+ 0x28d49: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 𨵉
+ 0x28d4a: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x05\x03\x04\x01\x05\x03\x04", // 𨵊
+ 0x28d4b: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x01\x02\x03\x04\x05\x03\x01", // 𨵋
+ 0x28d4c: "\x05\x01\x01\x02\x02\x05\x01\x01\x05\x02\x01\x02\x05\x01\x02", // 𨵌
+ 0x28d4d: "\x05\x01\x01\x02\x02\x05\x01\x01\x04\x04\x01\x02\x01\x02\x05\x01", // 𨵍
+ 0x28d4e: "\x05\x01\x01\x02\x02\x05\x01\x01\x04\x01\x04\x03\x01\x02\x05\x01\x02", // 𨵎
+ 0x28d4f: "\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01\x01\x01\x02\x04", // 𨵏
+ 0x28d50: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x04\x01\x03\x05\x05\x04", // 𨵐
+ 0x28d51: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x05\x02\x03\x01\x05\x02\x02", // 𨵑
+ 0x28d52: "\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01\x03\x01\x03\x02", // 𨵒
+ 0x28d53: "\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x02\x02\x05\x01\x02", // 𨵓
+ 0x28d54: "\x05\x01\x01\x02\x02\x05\x01\x01\x04\x04\x01\x05\x04\x02\x05\x01", // 𨵔
+ 0x28d55: "\x05\x01\x01\x02\x02\x05\x01\x01\x05\x04\x02\x05\x01\x02\x01\x04", // 𨵕
+ 0x28d56: "\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x02\x04\x05\x04\x04", // 𨵖
+ 0x28d57: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x01\x01\x02\x01\x02\x04", // 𨵗
+ 0x28d58: "\x05\x01\x01\x02\x02\x05\x01\x01\x02\x01\x05\x03\x01\x05\x03\x05", // 𨵘
+ 0x28d59: "\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01\x01\x01\x03\x04", // 𨵙
+ 0x28d5a: "\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x03\x04", // 𨵚
+ 0x28d5b: "\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01\x03\x05\x01\x01", // 𨵛
+ 0x28d5c: "\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01\x01\x05", // 𨵜
+ 0x28d5d: "\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x03\x04\x02\x05\x01\x01", // 𨵝
+ 0x28d5e: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x01\x02\x02\x01\x01\x03\x05", // 𨵞
+ 0x28d5f: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x01\x01\x05\x02\x05\x04", // 𨵟
+ 0x28d60: "\x05\x01\x01\x02\x02\x05\x01\x01\x05\x01\x03\x01\x02\x01\x05\x02", // 𨵠
+ 0x28d61: "\x05\x01\x01\x02\x02\x05\x01\x01\x05\x01\x03\x05\x02\x02\x05\x02", // 𨵡
+ 0x28d62: "\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01\x01\x01\x03\x04", // 𨵢
+ 0x28d63: "\x02\x02\x01\x01\x02\x01\x03\x04\x05\x01\x01\x02\x02\x05\x01\x01", // 𨵣
+ 0x28d64: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x03\x04\x01\x02\x05\x01\x02", // 𨵤
+ 0x28d65: "\x05\x01\x01\x02\x02\x05\x01\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01", // 𨵥
+ 0x28d66: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x04\x01\x03\x05\x01\x01\x02\x02", // 𨵦
+ 0x28d67: "\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x02\x02\x05\x02\x05\x01", // 𨵧
+ 0x28d68: "\x05\x01\x01\x02\x02\x05\x01\x01\x04\x04\x01\x03\x02\x05\x02\x02\x01", // 𨵨
+ 0x28d69: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 𨵩
+ 0x28d6a: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𨵪
+ 0x28d6b: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x01\x02\x01\x03\x02\x05\x01", // 𨵫
+ 0x28d6c: "\x05\x01\x01\x02\x02\x05\x01\x01\x05\x02\x05\x01\x01\x05\x03\x04", // 𨵬
+ 0x28d6d: "\x05\x01\x01\x02\x02\x05\x01\x01\x05\x01\x01\x01\x01\x02\x05\x04", // 𨵭
+ 0x28d6e: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𨵮
+ 0x28d6f: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x01\x01\x02\x02\x05\x02\x02\x01", // 𨵯
+ 0x28d70: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x04\x01\x02\x04\x01\x02\x04", // 𨵰
+ 0x28d71: "\x05\x01\x01\x02\x02\x05\x01\x01\x05\x01\x03\x01\x05\x04\x01\x02\x01", // 𨵱
+ 0x28d72: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x03\x04\x04\x02\x05\x02\x02\x01", // 𨵲
+ 0x28d73: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 𨵳
+ 0x28d74: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x02\x05\x04\x03\x01\x01\x02", // 𨵴
+ 0x28d75: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x03\x04\x04\x02\x05\x02\x02\x01", // 𨵵
+ 0x28d76: "\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 𨵶
+ 0x28d77: "\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 𨵷
+ 0x28d78: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x02\x01\x02\x05\x01\x01\x03\x04", // 𨵸
+ 0x28d79: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x02\x01\x05\x01\x01\x01\x03\x02", // 𨵹
+ 0x28d7a: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x02\x03\x05\x05\x04\x02\x03\x04", // 𨵺
+ 0x28d7b: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x04\x04\x03\x02\x02\x05\x01\x01", // 𨵻
+ 0x28d7c: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x04\x02\x03\x04\x02\x03\x04\x02", // 𨵼
+ 0x28d7d: "\x05\x01\x01\x02\x02\x05\x01\x01\x05\x01\x05\x01\x05\x02\x05\x01\x01", // 𨵽
+ 0x28d7e: "\x05\x01\x01\x02\x02\x05\x01\x01\x05\x02\x01\x02\x05\x01\x02\x05\x02", // 𨵾
+ 0x28d7f: "\x05\x01\x01\x02\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x03\x02", // 𨵿
+ 0x28d80: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x01\x02\x03\x04\x01\x02\x05\x01", // 𨶀
+ 0x28d81: "\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01\x04\x04\x05\x05\x03\x01", // 𨶁
+ 0x28d82: "\x05\x01\x01\x02\x02\x05\x01\x01\x04\x03\x01\x03\x04\x02\x05\x02\x02\x01", // 𨶂
+ 0x28d83: "\x05\x01\x01\x02\x02\x05\x01\x01\x04\x01\x01\x01\x02\x05\x01\x03\x01\x05", // 𨶃
+ 0x28d84: "\x01\x01\x05\x01\x01\x02\x02\x05\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𨶄
+ 0x28d85: "\x05\x01\x01\x02\x02\x05\x01\x01\x04\x03\x01\x01\x02\x01\x04\x04\x04\x04", // 𨶅
+ 0x28d86: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x04\x01\x05\x01\x01\x03\x02\x05\x01", // 𨶆
+ 0x28d87: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x02\x05\x01\x01\x05\x04\x04\x04\x04", // 𨶇
+ 0x28d88: "\x05\x01\x01\x02\x02\x05\x01\x01\x04\x01\x03\x05\x01\x01\x02\x02\x05\x01", // 𨶈
+ 0x28d89: "\x05\x01\x01\x02\x02\x05\x01\x01\x05\x02\x01\x03\x05\x05\x04\x02\x03\x04", // 𨶉
+ 0x28d8a: "\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01\x05\x01\x01\x02\x02\x05\x01\x01", // 𨶊
+ 0x28d8b: "\x05\x01\x01\x02\x02\x05\x01\x01\x05\x04\x03\x03\x04\x01\x01\x02\x03\x04", // 𨶋
+ 0x28d8c: "\x05\x01\x01\x02\x02\x05\x01\x01\x04\x03\x01\x02\x03\x04\x04\x05\x04", // 𨶌
+ 0x28d8d: "\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𨶍
+ 0x28d8e: "\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𨶎
+ 0x28d8f: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x01\x01\x02\x05\x02\x05\x01\x03\x04", // 𨶏
+ 0x28d90: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x01\x02\x02\x05\x01\x04\x05\x04", // 𨶐
+ 0x28d91: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x01\x03\x04\x04", // 𨶑
+ 0x28d92: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01", // 𨶒
+ 0x28d93: "\x03\x04\x01\x02\x03\x04\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04", // 𨶓
+ 0x28d94: "\x05\x01\x01\x02\x02\x05\x01\x01\x04\x03\x01\x01\x01\x03\x05\x02\x05\x04", // 𨶔
+ 0x28d95: "\x05\x01\x01\x02\x02\x05\x01\x01\x04\x03\x01\x01\x01\x03\x03\x05\x03\x04", // 𨶕
+ 0x28d96: "\x05\x01\x01\x02\x02\x05\x01\x01\x04\x04\x01\x03\x05\x01\x05\x02\x05\x01", // 𨶖
+ 0x28d97: "\x05\x01\x01\x02\x02\x05\x01\x01\x04\x04\x01\x04\x05\x01\x01\x05\x03\x04", // 𨶗
+ 0x28d98: "\x05\x01\x01\x02\x02\x05\x01\x01\x05\x01\x05\x05\x01\x05\x01\x01\x03\x02", // 𨶘
+ 0x28d99: "\x05\x01\x01\x02\x02\x05\x01\x01\x05\x04\x02\x05\x01\x01\x03\x05\x03\x05", // 𨶙
+ 0x28d9a: "\x05\x01\x01\x02\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x03\x01\x02\x01", // 𨶚
+ 0x28d9b: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𨶛
+ 0x28d9c: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x05\x01\x04\x03\x01\x04\x04\x01\x02", // 𨶜
+ 0x28d9d: "\x05\x01\x01\x02\x02\x05\x01\x01\x04\x01\x02\x05\x01\x05\x02\x01\x03\x05\x04", // 𨶝
+ 0x28d9e: "\x05\x01\x01\x02\x02\x05\x01\x01\x05\x01\x01\x02\x05\x01\x01\x03\x05\x05\x04", // 𨶞
+ 0x28d9f: "\x05\x01\x01\x02\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01\x03\x04\x05\x01\x01", // 𨶟
+ 0x28da0: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𨶠
+ 0x28da1: "\x05\x01\x01\x02\x02\x05\x01\x01\x04\x01\x01\x01\x02\x05\x01\x04\x05\x04\x04", // 𨶡
+ 0x28da2: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𨶢
+ 0x28da3: "\x05\x01\x01\x02\x02\x05\x01\x01\x04\x05\x04\x03\x04\x02\x05\x01\x02\x01\x04", // 𨶣
+ 0x28da4: "\x05\x01\x01\x02\x02\x05\x01\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02", // 𨶤
+ 0x28da5: "\x05\x01\x01\x02\x02\x05\x01\x01\x05\x01\x05\x02\x05\x01\x05\x01\x01\x03\x04", // 𨶥
+ 0x28da6: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x03\x01\x01\x03\x04\x03\x05\x03\x04", // 𨶦
+ 0x28da7: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x02\x05\x01\x02\x01\x02\x05\x01\x01", // 𨶧
+ 0x28da8: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x02\x02\x05\x01\x01\x01\x03\x04\x02\x02", // 𨶨
+ 0x28da9: "\x05\x01\x01\x02\x02\x05\x01\x01\x04\x03\x01\x01\x02\x01\x02\x05\x02\x02\x01", // 𨶩
+ 0x28daa: "\x05\x01\x01\x02\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 𨶪
+ 0x28dab: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x04\x04\x05\x04\x01\x01\x02\x03\x04", // 𨶫
+ 0x28dac: "\x05\x01\x01\x02\x02\x05\x01\x01\x05\x01\x01\x01\x02\x01\x02\x05\x01\x02\x01\x01", // 𨶬
+ 0x28dad: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x01\x01\x02\x02\x02\x02\x01\x04\x04\x04\x04", // 𨶭
+ 0x28dae: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x01\x04\x05\x01\x02\x05\x01\x04\x03\x01", // 𨶮
+ 0x28daf: "\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𨶯
+ 0x28db0: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04", // 𨶰
+ 0x28db1: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x01\x02\x01\x01\x02\x01\x02\x01\x01\x02", // 𨶱
+ 0x28db2: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 𨶲
+ 0x28db3: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x05", // 𨶳
+ 0x28db4: "\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x01", // 𨶴
+ 0x28db5: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x05\x02\x02\x01\x01\x02\x01\x05\x02", // 𨶵
+ 0x28db6: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01", // 𨶶
+ 0x28db7: "\x05\x01\x01\x02\x02\x05\x01\x01\x05\x01\x05\x05\x01\x05\x01\x02\x02\x01\x03\x04", // 𨶷
+ 0x28db8: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 𨶸
+ 0x28db9: "\x05\x01\x01\x02\x02\x05\x01\x01\x05\x05\x04\x02\x03\x04\x05\x05\x04\x02\x03\x04", // 𨶹
+ 0x28dba: "\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x03\x04\x02\x05\x03\x04\x02\x05\x03\x04", // 𨶺
+ 0x28dbb: "\x05\x01\x01\x02\x02\x05\x01\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𨶻
+ 0x28dbc: "\x04\x01\x04\x03\x05\x02\x05\x01\x01\x02\x02\x05\x01\x01\x03\x04\x01\x02\x05\x01", // 𨶼
+ 0x28dbd: "\x05\x01\x03\x01\x02\x02\x05\x01\x05\x01\x01\x02\x02\x05\x01\x01\x01\x01\x02\x01", // 𨶽
+ 0x28dbe: "\x05\x01\x01\x02\x02\x05\x01\x01\x05\x01\x05\x02\x05\x03\x05\x04\x01\x01\x02\x01", // 𨶾
+ 0x28dbf: "\x05\x01\x01\x02\x02\x05\x01\x01\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 𨶿
+ 0x28dc0: "\x05\x01\x01\x02\x02\x05\x01\x01\x05\x05\x04\x04\x04\x04\x03\x05\x04\x02\x05\x01", // 𨷀
+ 0x28dc1: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 𨷁
+ 0x28dc2: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x01\x04\x03\x01\x01\x02\x05\x02\x05\x04", // 𨷂
+ 0x28dc3: "\x05\x01\x01\x02\x02\x05\x01\x01\x04\x03\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 𨷃
+ 0x28dc4: "\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 𨷄
+ 0x28dc5: "\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x04\x03\x01\x02\x01\x01\x03\x05\x01\x02\x01", // 𨷅
+ 0x28dc6: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x01\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𨷆
+ 0x28dc7: "\x05\x01\x01\x02\x02\x05\x01\x01\x04\x04\x01\x02\x05\x03\x04\x01\x02\x05\x02\x02\x01", // 𨷇
+ 0x28dc8: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𨷈
+ 0x28dc9: "\x05\x01\x01\x02\x02\x05\x01\x01\x04\x04\x01\x03\x05\x05\x02\x01\x05\x02\x05\x01\x01", // 𨷉
+ 0x28dca: "\x05\x01\x01\x02\x02\x05\x01\x01\x05\x01\x05\x04\x01\x05\x01\x05\x04\x01\x01\x03\x04", // 𨷊
+ 0x28dcb: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x03\x02\x02\x05\x02\x01\x03\x05\x03\x01\x03\x04", // 𨷋
+ 0x28dcc: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x03\x05\x01\x01\x02\x02\x05\x01\x02\x01\x04", // 𨷌
+ 0x28dcd: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x02\x05\x01\x01\x05\x01\x05\x01\x01\x05", // 𨷍
+ 0x28dce: "\x01\x03\x04\x03\x05\x04\x03\x05\x04\x05\x01\x01\x02\x02\x05\x01\x01\x01\x01\x02\x01", // 𨷎
+ 0x28dcf: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x01", // 𨷏
+ 0x28dd0: "\x05\x01\x01\x02\x02\x05\x01\x01\x04\x03\x03\x04\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 𨷐
+ 0x28dd1: "\x04\x03\x01\x01\x02\x01\x01\x03\x04\x05\x01\x01\x02\x02\x05\x01\x01\x01\x01\x03\x02", // 𨷑
+ 0x28dd2: "\x05\x01\x01\x02\x02\x05\x01\x01\x02\x01\x03\x05\x03\x03\x01\x03\x05\x03\x03\x05\x02", // 𨷒
+ 0x28dd3: "\x05\x01\x01\x02\x02\x05\x01\x01\x04\x01\x03\x05\x02\x02\x01\x01\x05\x04\x04\x04\x04", // 𨷓
+ 0x28dd4: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𨷔
+ 0x28dd5: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x02\x01\x05\x01\x01\x01\x02\x01\x03\x05\x05\x04", // 𨷕
+ 0x28dd6: "\x05\x01\x01\x02\x02\x05\x01\x01\x05\x05\x01\x05\x05\x01\x05\x01\x02\x01\x03\x03\x01\x02", // 𨷖
+ 0x28dd7: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04\x03\x04\x01\x02\x05\x02\x05\x01\x01", // 𨷗
+ 0x28dd8: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02", // 𨷘
+ 0x28dd9: "\x05\x01\x01\x02\x02\x05\x01\x01\x04\x01\x02\x05\x01\x05\x02\x01\x03\x05\x04\x01\x02\x01", // 𨷙
+ 0x28dda: "\x05\x01\x01\x02\x02\x05\x01\x01\x04\x04\x05\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𨷚
+ 0x28ddb: "\x05\x01\x01\x02\x02\x05\x01\x01\x04\x04\x05\x04\x05\x04\x03\x04\x02\x05\x01\x02\x01\x04", // 𨷛
+ 0x28ddc: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x01\x03\x04", // 𨷜
+ 0x28ddd: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x02\x01\x01\x01\x02\x05\x01\x01\x01\x01\x03\x05", // 𨷝
+ 0x28dde: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x03\x01\x01\x03\x04\x05\x04\x05\x02\x01\x03\x04", // 𨷞
+ 0x28ddf: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𨷟
+ 0x28de0: "\x05\x01\x01\x02\x02\x05\x01\x01\x04\x01\x03\x02\x05\x01\x01\x02\x01\x01\x03\x04\x01\x02\x01", // 𨷠
+ 0x28de1: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 𨷡
+ 0x28de2: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x03\x05\x03\x03\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04", // 𨷢
+ 0x28de3: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x03\x02\x02\x05\x02\x01\x01\x01\x02\x01\x03\x01\x03\x04", // 𨷣
+ 0x28de4: "\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x02\x02\x01\x01\x02\x01\x02\x05\x01\x03\x05\x03\x04", // 𨷤
+ 0x28de5: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x01\x01\x03\x04\x03\x01\x01\x03\x04\x03\x01\x01\x03\x04", // 𨷥
+ 0x28de6: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 𨷦
+ 0x28de7: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x01\x02\x01\x03\x05\x01\x01\x03\x04\x04\x03\x05\x01\x01\x02", // 𨷧
+ 0x28de8: "\x05\x01\x01\x02\x02\x05\x01\x01\x02\x01\x01\x03\x05\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 𨷨
+ 0x28de9: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x05\x01\x04\x03\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𨷩
+ 0x28dea: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x02\x01\x01\x05\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𨷪
+ 0x28deb: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x01\x01\x02\x02\x05\x01\x01", // 𨷫
+ 0x28dec: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x04\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𨷬
+ 0x28ded: "\x05\x01\x01\x02\x02\x05\x01\x01\x04\x01\x03\x02\x05\x04\x03\x01\x02\x01\x01\x03\x04\x01\x02\x01", // 𨷭
+ 0x28dee: "\x05\x01\x01\x02\x02\x05\x01\x01\x05\x01\x01\x02\x02\x05\x01\x01\x05\x01\x01\x02\x02\x05\x01\x01", // 𨷮
+ 0x28def: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04\x01\x01\x02", // 𨷯
+ 0x28df0: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 𨷰
+ 0x28df1: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x04\x04\x03\x01\x01\x02\x05\x02\x03\x05\x05\x04\x02\x03\x04", // 𨷱
+ 0x28df2: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02", // 𨷲
+ 0x28df3: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x01\x02\x04\x01\x03\x05\x02\x02\x01\x01\x05\x04\x04\x04\x04", // 𨷳
+ 0x28df4: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x04\x04\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x02\x03\x04", // 𨷴
+ 0x28df5: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x04\x05\x03\x01\x02\x01\x05\x05\x01\x02\x01\x03\x03\x01\x02", // 𨷵
+ 0x28df6: "\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04\x01\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01", // 𨷶
+ 0x28df7: "\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𨷷
+ 0x28df8: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x04\x01\x04\x01\x01\x01\x02\x05\x01\x03\x05\x05\x04\x02\x03\x04", // 𨷸
+ 0x28df9: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x03\x05\x03\x03\x03\x04\x01\x03\x05\x03\x03\x03\x04\x04\x03\x03\x04", // 𨷹
+ 0x28dfa: "\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x02\x05\x01\x02\x05\x03\x04\x01\x05\x05\x01\x01\x05\x01\x01", // 𨷺
+ 0x28dfb: "\x05\x01\x01\x02\x02\x05\x01\x01\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04", // 𨷻
+ 0x28dfc: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x03\x05\x03\x03\x03\x04\x01\x03\x05\x03\x03\x03\x04\x01\x03\x05\x03\x03\x03\x04", // 𨷼
+ 0x28dfd: "\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x05\x01\x02\x05\x03\x01\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x02\x05\x02\x02\x01", // 𨷽
+ 0x28dfe: "\x05\x01\x01\x02\x02\x05\x01\x01\x05\x01\x01\x02\x02\x05\x01\x01\x05\x01\x01\x02\x02\x05\x01\x01\x05\x01\x01\x02\x02\x05\x01\x01", // 𨷾
+ 0x28dff: "\x04\x02\x05\x05\x05\x03", // 𨷿
+ 0x28e00: "\x04\x02\x05\x05\x02\x01", // 𨸀
+ 0x28e01: "\x04\x02\x05\x04\x01\x05", // 𨸁
+ 0x28e02: "\x04\x02\x05\x04\x01\x05\x03", // 𨸂
+ 0x28e03: "\x04\x02\x05\x03\x01\x01\x05", // 𨸃
+ 0x28e04: "\x04\x02\x05\x05\x01\x01\x05\x03\x04", // 𨸄
+ 0x28e05: "\x04\x02\x05\x01\x05\x04\x01\x02\x01", // 𨸅
+ 0x28e06: "\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 𨸆
+ 0x28e07: "\x04\x02\x05\x03\x02\x01\x02\x05\x01\x01\x03\x04", // 𨸇
+ 0x28e08: "\x04\x02\x05\x04\x03\x01\x01\x02\x01\x01\x03\x04", // 𨸈
+ 0x28e09: "\x04\x02\x05\x01\x02\x02\x03\x04\x01\x02\x05\x01", // 𨸉
+ 0x28e0a: "\x04\x02\x05\x03\x01\x01\x02\x05\x02\x05\x01\x03\x04", // 𨸊
+ 0x28e0b: "\x04\x02\x05\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 𨸋
+ 0x28e0c: "\x04\x02\x05\x01\x02\x01\x04\x05\x01\x02\x05\x01\x04\x03\x01", // 𨸌
+ 0x28e0d: "\x03\x05\x04\x04\x02\x05\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 𨸍
+ 0x28e0e: "\x04\x02\x05\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02", // 𨸎
+ 0x28e0f: "\x03\x02\x05\x01\x05\x01\x05\x01", // 𨸏
+ 0x28e10: "\x05\x02\x05\x03", // 𨸐
+ 0x28e11: "\x05\x02\x01\x05", // 𨸑
+ 0x28e12: "\x05\x02\x03\x05", // 𨸒
+ 0x28e13: "\x05\x02\x05\x03", // 𨸓
+ 0x28e14: "\x05\x02\x03\x05", // 𨸔
+ 0x28e15: "\x05\x02\x05\x04", // 𨸕
+ 0x28e16: "\x05\x02\x01\x02\x01", // 𨸖
+ 0x28e17: "\x05\x02\x01\x01\x02", // 𨸗
+ 0x28e18: "\x05\x02\x04\x01\x03", // 𨸘
+ 0x28e19: "\x05\x02\x05\x02", // 𨸙
+ 0x28e1a: "\x05\x02\x03\x05\x05\x04", // 𨸚
+ 0x28e1b: "\x05\x02\x03\x01\x01\x05", // 𨸛
+ 0x28e1c: "\x05\x02\x03\x05\x05\x04", // 𨸜
+ 0x28e1d: "\x05\x02\x03\x05\x01\x05", // 𨸝
+ 0x28e1e: "\x05\x02\x01\x05\x05\x04", // 𨸞
+ 0x28e1f: "\x05\x02\x01\x03\x04\x05", // 𨸟
+ 0x28e20: "\x05\x02\x01\x02\x05\x04", // 𨸠
+ 0x28e21: "\x05\x02\x03\x01\x01\x02", // 𨸡
+ 0x28e22: "\x05\x02\x03\x03\x01\x02", // 𨸢
+ 0x28e23: "\x05\x02\x03\x05\x05\x03", // 𨸣
+ 0x28e24: "\x05\x02\x03\x05\x03\x04", // 𨸤
+ 0x28e25: "\x03\x02\x05\x01\x05\x01\x05\x01\x01\x01\x03\x02", // 𨸥
+ 0x28e26: "\x05\x02\x01\x01\x03\x02", // 𨸦
+ 0x28e27: "\x05\x02\x01\x05\x05\x01", // 𨸧
+ 0x28e28: "\x05\x02\x02\x05\x01\x01", // 𨸨
+ 0x28e29: "\x05\x02\x03\x01\x03\x04", // 𨸩
+ 0x28e2a: "\x05\x02\x01\x02\x01\x03\x05", // 𨸪
+ 0x28e2b: "\x05\x02\x04\x01\x05\x05\x04", // 𨸫
+ 0x28e2c: "\x05\x02\x02\x05\x01\x01\x02", // 𨸬
+ 0x28e2d: "\x05\x02\x01\x02\x05\x01\x05", // 𨸭
+ 0x28e2e: "\x05\x02\x03\x05\x02\x05\x01", // 𨸮
+ 0x28e2f: "\x05\x02\x03\x03\x05\x04\x04", // 𨸯
+ 0x28e30: "\x05\x02\x05\x01\x03\x03\x05", // 𨸰
+ 0x28e31: "\x05\x02\x02\x05\x02\x01\x01", // 𨸱
+ 0x28e32: "\x05\x02\x01\x02\x05\x02", // 𨸲
+ 0x28e33: "\x05\x02\x05\x03\x05\x02\x01", // 𨸳
+ 0x28e34: "\x05\x02\x03\x01\x02\x05\x02", // 𨸴
+ 0x28e35: "\x05\x02\x04\x04\x05\x01\x05", // 𨸵
+ 0x28e36: "\x05\x02\x01\x04\x03\x01\x02", // 𨸶
+ 0x28e37: "\x03\x02\x05\x01\x05\x01\x05\x01\x03\x05\x01\x03\x05", // 𨸷
+ 0x28e38: "\x05\x02\x01\x01\x02\x05\x02", // 𨸸
+ 0x28e39: "\x05\x02\x01\x03\x02\x04\x01", // 𨸹
+ 0x28e3a: "\x05\x02\x02\x05\x01\x01\x02", // 𨸺
+ 0x28e3b: "\x05\x02\x03\x05\x04\x05\x04", // 𨸻
+ 0x28e3c: "\x05\x02\x04\x05\x04\x03\x04", // 𨸼
+ 0x28e3d: "\x05\x02\x01\x05\x04\x05\x04", // 𨸽
+ 0x28e3e: "\x05\x02\x02\x01\x01\x03\x05", // 𨸾
+ 0x28e3f: "\x03\x02\x05\x01\x05\x01\x05\x01\x01\x03\x02\x04\x01", // 𨸿
+ 0x28e40: "\x05\x02\x02\x01\x02\x01\x03\x05", // 𨹀
+ 0x28e41: "\x05\x02\x02\x05\x01\x02\x01\x04", // 𨹁
+ 0x28e42: "\x05\x02\x02\x04\x03\x01\x03\x05", // 𨹂
+ 0x28e43: "\x05\x02\x05\x03\x01\x02\x03\x04", // 𨹃
+ 0x28e44: "\x05\x02\x03\x05\x01\x02\x03\x04", // 𨹄
+ 0x28e45: "\x05\x02\x03\x02\x05\x01\x05\x01", // 𨹅
+ 0x28e46: "\x05\x02\x05\x04\x02\x05\x01\x01", // 𨹆
+ 0x28e47: "\x03\x02\x05\x01\x05\x01\x05\x01\x01\x03\x04\x05\x03\x04", // 𨹇
+ 0x28e48: "\x05\x02\x03\x04\x04\x03\x03\x04", // 𨹈
+ 0x28e49: "\x05\x02\x03\x04\x02\x05\x03\x04", // 𨹉
+ 0x28e4a: "\x05\x02\x03\x04\x03\x04\x03\x04", // 𨹊
+ 0x28e4b: "\x05\x02\x03\x05\x01\x01\x02\x01", // 𨹋
+ 0x28e4c: "\x05\x02\x02\x05\x03\x04\x03\x04", // 𨹌
+ 0x28e4d: "\x05\x02\x04\x01\x03\x04\x03\x04", // 𨹍
+ 0x28e4e: "\x05\x02\x02\x05\x01\x01\x01\x05", // 𨹎
+ 0x28e4f: "\x05\x02\x04\x04\x05\x03\x01\x05", // 𨹏
+ 0x28e50: "\x05\x02\x03\x05\x01\x02\x05\x01", // 𨹐
+ 0x28e51: "\x05\x02\x03\x04\x01\x01\x02\x01", // 𨹑
+ 0x28e52: "\x05\x02\x01\x03\x03\x04\x05\x03\x04", // 𨹒
+ 0x28e53: "\x05\x02\x03\x05\x04\x02\x05\x02", // 𨹓
+ 0x28e54: "\x05\x02\x03\x05\x05\x02\x01\x05", // 𨹔
+ 0x28e55: "\x05\x02\x04\x04\x05\x05\x01\x05", // 𨹕
+ 0x28e56: "\x05\x02\x04\x05\x01\x03\x03\x05", // 𨹖
+ 0x28e57: "\x05\x02\x04\x03\x01\x01\x03\x02", // 𨹗
+ 0x28e58: "\x05\x02\x04\x01\x03\x05\x04\x05\x02", // 𨹘
+ 0x28e59: "\x05\x02\x01\x01\x03\x04\x02\x05\x01", // 𨹙
+ 0x28e5a: "\x05\x02\x01\x03\x05\x05\x03\x04", // 𨹚
+ 0x28e5b: "\x05\x02\x04\x01\x05\x03\x01\x02\x01", // 𨹛
+ 0x28e5c: "\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 𨹜
+ 0x28e5d: "\x05\x02\x02\x05\x01\x05\x02\x01\x05", // 𨹝
+ 0x28e5e: "\x05\x02\x01\x03\x04\x02\x05\x01\x01", // 𨹞
+ 0x28e5f: "\x05\x02\x01\x01\x02\x05\x03\x04\x05", // 𨹟
+ 0x28e60: "\x05\x02\x03\x05\x04\x01\x03\x05\x04", // 𨹠
+ 0x28e61: "\x05\x02\x05\x04\x03\x05\x01\x02\x01", // 𨹡
+ 0x28e62: "\x05\x02\x03\x04\x04\x03\x01\x02\x01", // 𨹢
+ 0x28e63: "\x05\x02\x05\x01\x03\x05\x02\x01\x05", // 𨹣
+ 0x28e64: "\x05\x02\x03\x02\x05\x01\x02\x01\x04", // 𨹤
+ 0x28e65: "\x05\x02\x04\x03\x05\x01\x05\x02\x03", // 𨹥
+ 0x28e66: "\x05\x02\x02\x05\x01\x01\x02\x03\x04", // 𨹦
+ 0x28e67: "\x05\x02\x01\x01\x02\x01\x03\x05\x04", // 𨹧
+ 0x28e68: "\x05\x02\x02\x05\x01\x01\x01\x03\x05", // 𨹨
+ 0x28e69: "\x05\x02\x03\x04\x01\x01\x01\x03\x04", // 𨹩
+ 0x28e6a: "\x05\x02\x04\x03\x02\x05\x01\x03\x05", // 𨹪
+ 0x28e6b: "\x05\x02\x03\x04\x03\x04\x01\x02\x01", // 𨹫
+ 0x28e6c: "\x05\x02\x02\x05\x01\x03\x02\x05\x01", // 𨹬
+ 0x28e6d: "\x05\x02\x01\x03\x02\x04\x02\x05\x01", // 𨹭
+ 0x28e6e: "\x05\x02\x01\x02\x01\x03\x02\x03\x04", // 𨹮
+ 0x28e6f: "\x05\x02\x01\x02\x01\x02\x01\x01\x05", // 𨹯
+ 0x28e70: "\x05\x02\x02\x05\x02\x02\x01\x01\x01", // 𨹰
+ 0x28e71: "\x05\x02\x03\x01\x03\x02\x03\x01\x02", // 𨹱
+ 0x28e72: "\x05\x02\x03\x05\x04\x03\x03\x03", // 𨹲
+ 0x28e73: "\x05\x02\x03\x01\x02\x03\x04\x05\x03", // 𨹳
+ 0x28e74: "\x05\x02\x03\x04\x04\x03\x05\x02\x01", // 𨹴
+ 0x28e75: "\x05\x02\x04\x03\x01\x01\x03\x04\x05\x05", // 𨹵
+ 0x28e76: "\x05\x02\x05\x04\x05\x04\x05\x04\x01\x01", // 𨹶
+ 0x28e77: "\x05\x02\x01\x05\x01\x01\x02\x05\x03\x01", // 𨹷
+ 0x28e78: "\x05\x02\x05\x03\x02\x05\x01\x01\x02\x01", // 𨹸
+ 0x28e79: "\x05\x02\x03\x05\x01\x01\x03\x05\x01\x01", // 𨹹
+ 0x28e7a: "\x05\x02\x03\x02\x05\x01\x05\x01\x01\x02", // 𨹺
+ 0x28e7b: "\x05\x02\x02\x05\x01\x02\x02\x01\x03\x04", // 𨹻
+ 0x28e7c: "\x05\x02\x01\x05\x03\x05\x01\x02\x03\x04", // 𨹼
+ 0x28e7d: "\x05\x02\x02\x05\x04\x03\x01\x02\x05\x02", // 𨹽
+ 0x28e7e: "\x05\x02\x03\x05\x04\x01\x04\x03\x03\x04", // 𨹾
+ 0x28e7f: "\x05\x02\x03\x05\x04\x02\x05\x01\x01\x01", // 𨹿
+ 0x28e80: "\x03\x02\x05\x01\x05\x01\x03\x04\x03\x01\x02\x03\x04\x05", // 𨺀
+ 0x28e81: "\x05\x02\x02\x05\x01\x01\x01\x02\x03\x04", // 𨺁
+ 0x28e82: "\x05\x02\x05\x02\x04\x01\x03\x04\x05\x02", // 𨺂
+ 0x28e83: "\x05\x02\x03\x05\x01\x02\x01\x02\x05\x01", // 𨺃
+ 0x28e84: "\x05\x02\x03\x04\x04\x03\x03\x01\x02\x01", // 𨺄
+ 0x28e85: "\x03\x02\x05\x01\x05\x01\x05\x01\x05\x01\x05\x01\x05\x01\x05", // 𨺅
+ 0x28e86: "\x05\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 𨺆
+ 0x28e87: "\x05\x02\x01\x05\x01\x01\x02\x01\x03\x04", // 𨺇
+ 0x28e88: "\x05\x02\x01\x03\x04\x04\x03\x01\x01\x05", // 𨺈
+ 0x28e89: "\x05\x02\x03\x03\x04\x04\x01\x02\x03\x04", // 𨺉
+ 0x28e8a: "\x05\x02\x04\x01\x02\x02\x04\x05\x01\x02", // 𨺊
+ 0x28e8b: "\x05\x02\x04\x04\x05\x03\x05\x04\x05\x05", // 𨺋
+ 0x28e8c: "\x05\x02\x01\x02\x02\x01\x01\x01\x03\x04", // 𨺌
+ 0x28e8d: "\x05\x02\x01\x03\x04\x02\x05\x01\x01\x05", // 𨺍
+ 0x28e8e: "\x05\x02\x01\x02\x02\x05\x01\x01\x05\x04", // 𨺎
+ 0x28e8f: "\x05\x02\x02\x01\x01\x02\x03\x04\x05\x04", // 𨺏
+ 0x28e90: "\x05\x02\x02\x05\x01\x01\x04\x05\x01\x02", // 𨺐
+ 0x28e91: "\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 𨺑
+ 0x28e92: "\x05\x02\x02\x05\x01\x01\x03\x01\x03\x02", // 𨺒
+ 0x28e93: "\x05\x02\x03\x05\x04\x03\x01\x01\x02\x01", // 𨺓
+ 0x28e94: "\x03\x02\x05\x01\x05\x01\x01\x02\x05\x01\x01\x04\x05\x02\x05\x02", // 𨺔
+ 0x28e95: "\x05\x02\x01\x03\x04\x04\x03\x05\x01\x05", // 𨺕
+ 0x28e96: "\x05\x02\x01\x03\x05\x04\x01\x03\x05\x04", // 𨺖
+ 0x28e97: "\x05\x02\x02\x01\x02\x01\x02\x01\x03\x04", // 𨺗
+ 0x28e98: "\x05\x02\x03\x01\x02\x01\x02\x01\x05\x04", // 𨺘
+ 0x28e99: "\x05\x02\x03\x02\x01\x05\x01\x01\x03\x05", // 𨺙
+ 0x28e9a: "\x05\x02\x03\x05\x04\x01\x01\x02\x05\x02", // 𨺚
+ 0x28e9b: "\x05\x02\x03\x05\x04\x01\x02\x01\x02\x01", // 𨺛
+ 0x28e9c: "\x05\x02\x05\x01\x01\x04\x05\x02\x05\x02", // 𨺜
+ 0x28e9d: "\x05\x02\x05\x04\x05\x04\x05\x04\x05\x04", // 𨺝
+ 0x28e9e: "\x05\x02\x01\x04\x03\x01\x03\x04\x05\x02", // 𨺞
+ 0x28e9f: "\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𨺟
+ 0x28ea0: "\x05\x02\x03\x03\x01\x02\x02\x05\x01\x01\x01", // 𨺠
+ 0x28ea1: "\x05\x02\x03\x04\x05\x02\x03\x05\x03\x05\x04", // 𨺡
+ 0x28ea2: "\x05\x02\x03\x05\x01\x02\x05\x01\x02\x01\x04", // 𨺢
+ 0x28ea3: "\x05\x02\x03\x02\x01\x01\x01\x03\x05\x05\x04", // 𨺣
+ 0x28ea4: "\x05\x02\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 𨺤
+ 0x28ea5: "\x05\x02\x04\x01\x03\x04\x02\x05\x01\x03\x05", // 𨺥
+ 0x28ea6: "\x05\x02\x04\x04\x05\x04\x03\x03\x04\x05\x04", // 𨺦
+ 0x28ea7: "\x05\x02\x04\x03\x01\x02\x05\x03\x05\x01\x01", // 𨺧
+ 0x28ea8: "\x05\x02\x02\x05\x01\x02\x05\x01\x01\x01\x05", // 𨺨
+ 0x28ea9: "\x05\x02\x05\x01\x01\x01\x01\x02\x05\x04", // 𨺩
+ 0x28eaa: "\x05\x02\x03\x01\x01\x02\x02\x01\x02\x05\x02", // 𨺪
+ 0x28eab: "\x03\x02\x01\x01\x05\x01\x01\x03\x04\x03\x02\x05\x01\x05\x01\x05\x01", // 𨺫
+ 0x28eac: "\x05\x02\x02\x05\x01\x02\x01\x03\x04\x03\x02", // 𨺬
+ 0x28ead: "\x05\x02\x03\x01\x03\x04\x03\x04\x02\x05\x02", // 𨺭
+ 0x28eae: "\x05\x02\x05\x04\x01\x01\x02\x01\x03\x05\x04", // 𨺮
+ 0x28eaf: "\x05\x02\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 𨺯
+ 0x28eb0: "\x05\x02\x04\x03\x01\x01\x02\x01\x01\x03\x04", // 𨺰
+ 0x28eb1: "\x05\x02\x04\x01\x02\x05\x01\x04\x05\x01\x02", // 𨺱
+ 0x28eb2: "\x05\x02\x03\x02\x05\x01\x02\x05\x02\x01\x04", // 𨺲
+ 0x28eb3: "\x05\x02\x05\x04\x02\x05\x01\x01\x02\x05\x03", // 𨺳
+ 0x28eb4: "\x05\x02\x03\x04\x04\x01\x05\x04\x01\x02\x01", // 𨺴
+ 0x28eb5: "\x03\x02\x05\x01\x05\x01\x05\x01\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 𨺵
+ 0x28eb6: "\x05\x02\x01\x02\x03\x04\x03\x04\x03\x05\x04", // 𨺶
+ 0x28eb7: "\x05\x02\x02\x05\x01\x01\x02\x05\x02\x05\x01", // 𨺷
+ 0x28eb8: "\x05\x02\x02\x05\x01\x01\x03\x05\x03\x05\x02", // 𨺸
+ 0x28eb9: "\x05\x02\x03\x01\x02\x03\x04\x04\x03\x03\x04", // 𨺹
+ 0x28eba: "\x05\x02\x03\x02\x01\x05\x01\x01\x03\x04", // 𨺺
+ 0x28ebb: "\x05\x02\x03\x04\x04\x03\x02\x02\x05\x01\x01", // 𨺻
+ 0x28ebc: "\x05\x02\x03\x05\x04\x01\x01\x02\x01\x02\x01", // 𨺼
+ 0x28ebd: "\x05\x02\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 𨺽
+ 0x28ebe: "\x05\x02\x03\x04\x04\x03\x01\x02\x01\x02\x01", // 𨺾
+ 0x28ebf: "\x05\x02\x01\x02\x02\x01\x01\x01\x05\x03\x01", // 𨺿
+ 0x28ec0: "\x05\x02\x03\x02\x05\x03\x04\x01\x01\x05\x01\x05", // 𨻀
+ 0x28ec1: "\x05\x02\x03\x02\x05\x01\x01\x01\x04\x05\x04\x04", // 𨻁
+ 0x28ec2: "\x05\x02\x02\x05\x01\x01\x04\x04\x05\x05\x03\x01", // 𨻂
+ 0x28ec3: "\x05\x02\x01\x03\x01\x01\x01\x02\x01\x01\x01\x05", // 𨻃
+ 0x28ec4: "\x05\x02\x03\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 𨻄
+ 0x28ec5: "\x05\x02\x05\x04\x03\x05\x03\x05\x04\x02\x05\x02", // 𨻅
+ 0x28ec6: "\x05\x02\x03\x03\x02\x01\x05\x03\x01\x05\x03\x05", // 𨻆
+ 0x28ec7: "\x05\x02\x01\x02\x01\x02\x03\x04\x01\x02\x05\x01", // 𨻇
+ 0x28ec8: "\x05\x02\x02\x04\x03\x02\x05\x01\x01\x01\x03\x04", // 𨻈
+ 0x28ec9: "\x05\x02\x05\x05\x01\x05\x01\x01\x05\x01\x02\x01", // 𨻉
+ 0x28eca: "\x05\x02\x01\x03\x04\x03\x04\x03\x04\x01\x02\x01", // 𨻊
+ 0x28ecb: "\x05\x02\x01\x05\x05\x04\x05\x05\x04\x01\x02\x01", // 𨻋
+ 0x28ecc: "\x05\x02\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𨻌
+ 0x28ecd: "\x05\x02\x05\x02\x02\x05\x02\x01\x01\x02\x03\x04", // 𨻍
+ 0x28ece: "\x05\x02\x02\x05\x02\x04\x01\x03\x05\x03\x05\x04", // 𨻎
+ 0x28ecf: "\x03\x02\x05\x01\x05\x01\x05\x01\x01\x03\x04\x03\x04\x03\x04\x01\x02\x01", // 𨻏
+ 0x28ed0: "\x05\x02\x01\x03\x05\x03\x03\x03\x04\x01\x02\x01", // 𨻐
+ 0x28ed1: "\x03\x02\x05\x01\x05\x01\x01\x02\x03\x02\x05\x01\x01\x05\x04\x04\x04\x04", // 𨻑
+ 0x28ed2: "\x05\x02\x01\x03\x01\x04\x03\x03\x04\x05\x03\x04", // 𨻒
+ 0x28ed3: "\x05\x02\x04\x01\x05\x04\x03\x02\x05\x02\x05\x01", // 𨻓
+ 0x28ed4: "\x05\x02\x03\x04\x01\x01\x05\x04\x03\x05\x04\x01", // 𨻔
+ 0x28ed5: "\x05\x02\x04\x01\x03\x04\x01\x02\x02\x01\x01\x01", // 𨻕
+ 0x28ed6: "\x05\x02\x04\x03\x01\x02\x03\x04\x03\x01\x03\x04", // 𨻖
+ 0x28ed7: "\x05\x02\x05\x04\x05\x04\x05\x04\x01\x02\x03\x04", // 𨻗
+ 0x28ed8: "\x05\x02\x01\x05\x01\x05\x01\x02\x02\x01\x03\x04", // 𨻘
+ 0x28ed9: "\x05\x02\x02\x05\x01\x01\x02\x04\x03\x01\x03\x05", // 𨻙
+ 0x28eda: "\x05\x02\x01\x03\x04\x04\x03\x02\x05\x01\x01\x05", // 𨻚
+ 0x28edb: "\x05\x02\x01\x02\x02\x01\x01\x02\x05\x02\x05\x01", // 𨻛
+ 0x28edc: "\x05\x02\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01", // 𨻜
+ 0x28edd: "\x05\x02\x01\x03\x04\x01\x02\x01\x01\x01\x05\x04", // 𨻝
+ 0x28ede: "\x05\x02\x02\x05\x01\x02\x01\x03\x04\x02\x05\x01", // 𨻞
+ 0x28edf: "\x05\x02\x02\x05\x01\x01\x03\x01\x01\x05\x03\x04", // 𨻟
+ 0x28ee0: "\x05\x02\x02\x05\x01\x01\x01\x02\x05\x02\x05\x01", // 𨻠
+ 0x28ee1: "\x05\x02\x03\x02\x05\x01\x05\x01\x04\x05\x04", // 𨻡
+ 0x28ee2: "\x05\x02\x01\x03\x02\x05\x02\x02\x04\x03\x03\x04", // 𨻢
+ 0x28ee3: "\x05\x02\x01\x03\x03\x02\x05\x01\x01\x02\x03\x04", // 𨻣
+ 0x28ee4: "\x05\x02\x01\x03\x04\x03\x04\x03\x04\x05\x03\x01", // 𨻤
+ 0x28ee5: "\x05\x02\x02\x05\x01\x01\x01\x02\x02\x04\x03\x01", // 𨻥
+ 0x28ee6: "\x05\x02\x03\x05\x04\x01\x02\x05\x01\x02\x01\x04", // 𨻦
+ 0x28ee7: "\x05\x02\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 𨻧
+ 0x28ee8: "\x05\x02\x05\x05\x05\x02\x05\x01\x01\x01\x03\x04", // 𨻨
+ 0x28ee9: "\x05\x02\x05\x05\x05\x02\x05\x01\x01\x02\x03\x04", // 𨻩
+ 0x28eea: "\x03\x02\x05\x01\x05\x01\x05\x01\x02\x05\x02\x04\x01\x03\x05\x03\x05\x04", // 𨻪
+ 0x28eeb: "\x05\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05", // 𨻫
+ 0x28eec: "\x05\x02\x03\x02\x05\x01\x01\x01\x01\x03\x04\x04", // 𨻬
+ 0x28eed: "\x05\x02\x01\x05\x01\x01\x02\x05\x01\x04\x03\x01", // 𨻭
+ 0x28eee: "\x05\x02\x04\x04\x05\x01\x01\x03\x05\x03\x01\x03\x04", // 𨻮
+ 0x28eef: "\x05\x02\x01\x02\x01\x01\x01\x02\x05\x01\x04\x03\x01", // 𨻯
+ 0x28ef0: "\x05\x02\x01\x03\x02\x01\x05\x01\x01\x02\x03\x04", // 𨻰
+ 0x28ef1: "\x05\x02\x02\x05\x02\x03\x05\x01\x01\x03\x05\x01\x01", // 𨻱
+ 0x28ef2: "\x05\x02\x02\x01\x05\x03\x01\x05\x03\x04\x03\x01\x02", // 𨻲
+ 0x28ef3: "\x05\x02\x01\x02\x01\x02\x01\x01\x05\x04\x04\x04\x04", // 𨻳
+ 0x28ef4: "\x05\x02\x04\x04\x05\x03\x05\x03\x01\x02\x01\x02\x05\x01", // 𨻴
+ 0x28ef5: "\x05\x02\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𨻵
+ 0x28ef6: "\x05\x02\x02\x03\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 𨻶
+ 0x28ef7: "\x05\x02\x04\x01\x03\x05\x01\x01\x02\x04\x01\x03\x04", // 𨻷
+ 0x28ef8: "\x05\x02\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01", // 𨻸
+ 0x28ef9: "\x05\x02\x04\x03\x01\x01\x02\x01\x02\x05\x02\x02\x01", // 𨻹
+ 0x28efa: "\x05\x02\x01\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𨻺
+ 0x28efb: "\x05\x02\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 𨻻
+ 0x28efc: "\x05\x02\x03\x01\x01\x01\x02\x01\x01\x01\x01\x02\x01", // 𨻼
+ 0x28efd: "\x05\x02\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 𨻽
+ 0x28efe: "\x05\x02\x03\x03\x04\x03\x04\x03\x04\x03\x04\x01\x02", // 𨻾
+ 0x28eff: "\x03\x02\x05\x01\x05\x01\x05\x01\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01", // 𨻿
+ 0x28f00: "\x05\x02\x04\x01\x05\x05\x04\x04\x05\x03\x01\x01\x02", // 𨼀
+ 0x28f01: "\x05\x02\x04\x01\x05\x03\x04\x01\x05\x03\x01\x02\x01", // 𨼁
+ 0x28f02: "\x05\x02\x01\x02\x02\x01\x01\x01\x03\x04\x01\x02\x01", // 𨼂
+ 0x28f03: "\x05\x02\x01\x02\x02\x05\x01\x01\x01\x02\x03\x01\x05", // 𨼃
+ 0x28f04: "\x05\x02\x01\x05\x01\x05\x03\x01\x02\x01\x02\x05\x01", // 𨼄
+ 0x28f05: "\x05\x02\x02\x05\x02\x03\x04\x01\x01\x02\x04\x03\x01", // 𨼅
+ 0x28f06: "\x05\x02\x01\x02\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 𨼆
+ 0x28f07: "\x05\x02\x03\x05\x04\x01\x05\x02\x03\x01\x01\x02\x01", // 𨼇
+ 0x28f08: "\x05\x02\x04\x04\x05\x03\x05\x01\x02\x01\x02\x05\x01", // 𨼈
+ 0x28f09: "\x05\x02\x05\x04\x01\x05\x04\x01\x03\x05\x01\x01\x05", // 𨼉
+ 0x28f0a: "\x05\x02\x03\x01\x01\x02\x02\x02\x02\x01\x04\x04\x04\x04", // 𨼊
+ 0x28f0b: "\x05\x02\x02\x01\x05\x03\x01\x05\x02\x02\x05\x02\x01\x01", // 𨼋
+ 0x28f0c: "\x05\x02\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x03\x04", // 𨼌
+ 0x28f0d: "\x05\x02\x03\x02\x05\x01\x01\x01\x01\x01\x01\x01\x01\x02", // 𨼍
+ 0x28f0e: "\x05\x02\x05\x05\x04\x04\x04\x04\x05\x03\x05\x02\x01\x05", // 𨼎
+ 0x28f0f: "\x05\x02\x01\x03\x02\x05\x02\x02\x01\x03\x02\x05\x02\x02", // 𨼏
+ 0x28f10: "\x05\x02\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x01", // 𨼐
+ 0x28f11: "\x05\x02\x05\x01\x03\x01\x02\x01\x03\x02\x05\x01\x01\x04", // 𨼑
+ 0x28f12: "\x05\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 𨼒
+ 0x28f13: "\x05\x02\x03\x01\x01\x03\x04\x02\x05\x01\x02\x05\x01\x01", // 𨼓
+ 0x28f14: "\x05\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04", // 𨼔
+ 0x28f15: "\x03\x02\x05\x01\x05\x01\x05\x01\x03\x03\x02\x01\x03\x01\x02\x01\x03\x05\x04\x01", // 𨼕
+ 0x28f16: "\x05\x02\x03\x05\x01\x01\x03\x05\x01\x01\x03\x05\x01\x01", // 𨼖
+ 0x28f17: "\x05\x02\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01", // 𨼗
+ 0x28f18: "\x05\x02\x01\x03\x02\x05\x01\x01\x04\x05\x03\x05\x03\x05", // 𨼘
+ 0x28f19: "\x05\x02\x01\x02\x01\x02\x04\x01\x05\x04\x01\x02\x03\x04", // 𨼙
+ 0x28f1a: "\x05\x02\x02\x01\x01\x01\x02\x01\x01\x01\x04\x05\x04\x04", // 𨼚
+ 0x28f1b: "\x05\x02\x04\x01\x02\x02\x01\x01\x04\x05\x03\x05\x01\x02", // 𨼛
+ 0x28f1c: "\x05\x02\x01\x02\x01\x02\x03\x05\x04\x03\x01\x01\x02\x01", // 𨼜
+ 0x28f1d: "\x05\x02\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04", // 𨼝
+ 0x28f1e: "\x05\x02\x01\x02\x01\x02\x03\x05\x03\x01\x01\x02\x05\x02", // 𨼞
+ 0x28f1f: "\x05\x02\x03\x02\x05\x03\x04\x03\x01\x02\x03\x04\x01\x05", // 𨼟
+ 0x28f20: "\x05\x02\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 𨼠
+ 0x28f21: "\x05\x02\x01\x02\x02\x05\x01\x01\x01\x01\x03\x05\x03\x05", // 𨼡
+ 0x28f22: "\x05\x02\x01\x02\x01\x01\x03\x01\x02\x01\x02\x05\x01\x01", // 𨼢
+ 0x28f23: "\x05\x02\x01\x02\x02\x01\x01\x04\x05\x03\x04\x01\x01\x02", // 𨼣
+ 0x28f24: "\x05\x02\x01\x02\x05\x01\x01\x02\x03\x04\x03\x05\x03\x04", // 𨼤
+ 0x28f25: "\x05\x02\x02\x05\x01\x01\x01\x02\x02\x01\x01\x01\x05\x04", // 𨼥
+ 0x28f26: "\x05\x02\x03\x03\x04\x03\x04\x03\x04\x03\x04\x01\x02\x01", // 𨼦
+ 0x28f27: "\x05\x02\x03\x05\x01\x03\x03\x04\x01\x02\x01\x02\x05\x01", // 𨼧
+ 0x28f28: "\x05\x02\x04\x01\x04\x03\x04\x05\x02\x05\x02\x05\x01\x05", // 𨼨
+ 0x28f29: "\x05\x02\x01\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01", // 𨼩
+ 0x28f2a: "\x05\x02\x01\x02\x03\x04\x01\x02\x03\x04\x05\x02\x01\x03\x04", // 𨼪
+ 0x28f2b: "\x05\x02\x02\x01\x05\x03\x01\x05\x01\x03\x05\x03\x03\x03\x04", // 𨼫
+ 0x28f2c: "\x05\x02\x03\x05\x03\x05\x01\x01\x02\x05\x03\x03\x01\x01\x02", // 𨼬
+ 0x28f2d: "\x05\x02\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x05\x01\x05", // 𨼭
+ 0x28f2e: "\x05\x02\x03\x05\x01\x03\x03\x05\x04\x01\x01\x01\x02\x05\x01", // 𨼮
+ 0x28f2f: "\x05\x02\x03\x04\x04\x03\x05\x03\x03\x05\x01\x01\x05\x03\x04", // 𨼯
+ 0x28f30: "\x05\x02\x01\x03\x01\x02\x01\x01\x03\x01\x02\x01\x01\x02\x01", // 𨼰
+ 0x28f31: "\x03\x02\x05\x01\x05\x01\x05\x01\x05\x01\x03\x04\x04\x01\x05\x02\x01\x05\x01\x05", // 𨼱
+ 0x28f32: "\x05\x02\x01\x02\x02\x03\x04\x01\x02\x01\x01\x01\x05\x04", // 𨼲
+ 0x28f33: "\x05\x02\x01\x02\x02\x01\x01\x01\x02\x05\x01\x03\x01\x02\x01", // 𨼳
+ 0x28f34: "\x05\x02\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x01\x02\x01", // 𨼴
+ 0x28f35: "\x05\x02\x03\x01\x04\x03\x01\x04\x03\x01\x02\x01\x02\x05\x01", // 𨼵
+ 0x28f36: "\x05\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01\x04\x05\x04\x04", // 𨼶
+ 0x28f37: "\x05\x02\x02\x05\x01\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01", // 𨼷
+ 0x28f38: "\x05\x02\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 𨼸
+ 0x28f39: "\x05\x02\x03\x01\x04\x03\x01\x04\x01\x02\x03\x04\x03\x04\x01", // 𨼹
+ 0x28f3a: "\x05\x02\x04\x03\x01\x02\x03\x04\x03\x05\x04\x02\x01\x01\x01", // 𨼺
+ 0x28f3b: "\x05\x02\x05\x02\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x05\x03\x01", // 𨼻
+ 0x28f3c: "\x05\x02\x01\x02\x05\x01\x02\x03\x04\x04\x03\x05\x02\x01\x05", // 𨼼
+ 0x28f3d: "\x03\x02\x05\x01\x05\x01\x02\x01\x05\x03\x01\x05\x01\x03\x05\x03\x03\x03\x04", // 𨼽
+ 0x28f3e: "\x05\x02\x04\x03\x01\x03\x05\x03\x03\x03\x04\x04\x04\x04\x04", // 𨼾
+ 0x28f3f: "\x05\x02\x01\x02\x01\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 𨼿
+ 0x28f40: "\x05\x02\x01\x03\x02\x05\x01\x01\x03\x05\x04\x01\x01\x03\x04\x04", // 𨽀
+ 0x28f41: "\x05\x02\x01\x02\x02\x01\x01\x01\x05\x04\x03\x02\x03\x03\x03\x04", // 𨽁
+ 0x28f42: "\x05\x02\x03\x02\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 𨽂
+ 0x28f43: "\x05\x02\x04\x03\x03\x04\x04\x03\x03\x04\x03\x05\x04\x01\x05\x02", // 𨽃
+ 0x28f44: "\x03\x02\x05\x01\x05\x01\x05\x01\x01\x02\x05\x01\x03\x04\x04\x01\x05\x02\x01\x05\x01\x05", // 𨽄
+ 0x28f45: "\x05\x02\x01\x04\x05\x02\x02\x02\x01\x03\x04\x02\x05\x01\x01\x05", // 𨽅
+ 0x28f46: "\x05\x02\x03\x05\x04\x01\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 𨽆
+ 0x28f47: "\x05\x02\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x01\x02", // 𨽇
+ 0x28f48: "\x05\x02\x01\x02\x02\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 𨽈
+ 0x28f49: "\x05\x02\x02\x05\x02\x02\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 𨽉
+ 0x28f4a: "\x05\x02\x03\x05\x02\x05\x01\x03\x05\x03\x05\x02\x05\x01\x03\x05", // 𨽊
+ 0x28f4b: "\x05\x02\x01\x03\x01\x02\x01\x01\x03\x01\x02\x01\x02\x05\x01\x01", // 𨽋
+ 0x28f4c: "\x05\x02\x03\x03\x04\x03\x01\x02\x01\x05\x01\x01\x01\x02\x03\x04", // 𨽌
+ 0x28f4d: "\x05\x02\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𨽍
+ 0x28f4e: "\x05\x02\x04\x03\x01\x03\x05\x03\x03\x03\x04\x03\x04\x02\x04\x04\x04", // 𨽎
+ 0x28f4f: "\x05\x02\x04\x01\x03\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04", // 𨽏
+ 0x28f50: "\x05\x02\x01\x02\x01\x03\x05\x01\x02\x01\x03\x05\x01\x02\x01\x03\x05", // 𨽐
+ 0x28f51: "\x05\x02\x03\x04\x04\x03\x02\x05\x01\x01\x03\x05\x03\x03\x03\x03\x03", // 𨽑
+ 0x28f52: "\x05\x02\x04\x04\x05\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 𨽒
+ 0x28f53: "\x05\x02\x04\x03\x03\x04\x04\x03\x03\x04\x04\x05\x01\x01\x02\x01\x04", // 𨽓
+ 0x28f54: "\x05\x02\x04\x01\x03\x05\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𨽔
+ 0x28f55: "\x05\x02\x01\x04\x05\x02\x04\x01\x03\x04\x03\x01\x02\x01\x05\x04", // 𨽕
+ 0x28f56: "\x05\x02\x04\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05\x03\x04", // 𨽖
+ 0x28f57: "\x05\x02\x02\x01\x02\x01\x02\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𨽗
+ 0x28f58: "\x05\x02\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01\x05\x03\x01", // 𨽘
+ 0x28f59: "\x05\x02\x03\x04\x01\x03\x05\x04\x01\x05\x05\x01\x02\x03\x04\x03\x04\x01", // 𨽙
+ 0x28f5a: "\x05\x02\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𨽚
+ 0x28f5b: "\x05\x02\x04\x03\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04\x05\x02", // 𨽛
+ 0x28f5c: "\x05\x02\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 𨽜
+ 0x28f5d: "\x03\x02\x05\x01\x05\x01\x05\x01\x01\x02\x02\x01\x02\x05\x01\x01\x04\x01\x05\x02\x01\x05\x01\x05", // 𨽝
+ 0x28f5e: "\x05\x02\x01\x02\x02\x01\x02\x05\x01\x02\x01\x01\x03\x05\x04\x04\x04\x04", // 𨽞
+ 0x28f5f: "\x05\x02\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04", // 𨽟
+ 0x28f60: "\x05\x02\x03\x02\x01\x01\x05\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𨽠
+ 0x28f61: "\x03\x02\x05\x01\x05\x01\x05\x01\x04\x03\x01\x03\x05\x03\x03\x03\x04\x05\x01\x05\x01\x05\x01\x05", // 𨽡
+ 0x28f62: "\x05\x02\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 𨽢
+ 0x28f63: "\x05\x02\x01\x02\x01\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 𨽣
+ 0x28f64: "\x05\x02\x01\x02\x01\x03\x04\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𨽤
+ 0x28f65: "\x05\x02\x02\x01\x02\x01\x02\x03\x03\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𨽥
+ 0x28f66: "\x05\x02\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01", // 𨽦
+ 0x28f67: "\x05\x02\x02\x01\x02\x01\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𨽧
+ 0x28f68: "\x05\x02\x01\x05\x03\x05\x01\x05\x03\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𨽨
+ 0x28f69: "\x03\x02\x05\x01\x05\x01\x05\x01\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01\x04\x01\x05\x02\x01\x05\x01\x05", // 𨽩
+ 0x28f6a: "\x03\x02\x05\x01\x05\x01\x01\x02\x04\x03\x01\x03\x04\x02\x05\x02\x02\x01\x03\x02\x05\x01\x05\x01\x01\x02", // 𨽪
+ 0x28f6b: "\x03\x02\x05\x01\x05\x01\x01\x02\x05\x02\x02\x01\x03\x04\x05\x02\x02\x01\x03\x04\x05\x02\x02\x01\x03\x04", // 𨽫
+ 0x28f6c: "\x05\x02\x01\x03\x04\x01\x02\x02\x01\x01\x02\x03\x04\x01\x02\x02\x01\x01\x02\x03\x04", // 𨽬
+ 0x28f6d: "\x05\x02\x03\x04\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x03\x04\x03\x04\x01", // 𨽭
+ 0x28f6e: "\x05\x02\x01\x02\x05\x01\x02\x03\x04\x03\x01\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𨽮
+ 0x28f6f: "\x05\x02\x03\x03\x02\x01\x05\x03\x01\x05\x03\x04\x03\x03\x02\x01\x05\x03\x01\x05\x03\x04", // 𨽯
+ 0x28f70: "\x05\x02\x02\x05\x02\x03\x04\x03\x05\x02\x05\x02\x03\x04\x03\x05\x02\x05\x02\x03\x04\x03\x05", // 𨽰
+ 0x28f71: "\x03\x02\x05\x01\x05\x01\x01\x02\x02\x05\x02\x03\x04\x03\x02\x02\x05\x02\x03\x04\x03\x05\x02\x05\x02\x03\x04\x03\x05", // 𨽱
+ 0x28f72: "\x05\x02\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x03\x04\x01", // 𨽲
+ 0x28f73: "\x05\x02\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𨽳
+ 0x28f74: "\x03\x02\x05\x01\x05\x01\x05\x01\x01\x02\x02\x01\x01\x03\x04\x02\x03\x04\x02\x03\x04\x02\x03\x04\x02\x04\x01\x05\x02\x01\x05\x01\x05", // 𨽴
+ 0x28f75: "\x03\x02\x05\x01\x05\x01\x05\x01\x04\x03\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04\x04\x03\x03\x04\x05\x01\x05\x01\x05\x01\x05", // 𨽵
+ 0x28f76: "\x05\x01\x01\x02\x04\x01\x03\x04\x02\x05\x01\x02\x01", // 𨽶
+ 0x28f77: "\x04\x01\x05\x03\x03\x04\x05\x01\x01\x02\x04\x01\x03\x04", // 𨽷
+ 0x28f78: "\x01\x02\x01\x01\x01\x05\x04\x05\x01\x01\x02\x04\x01\x03\x04", // 𨽸
+ 0x28f79: "\x01\x05\x03\x01\x01\x03\x04\x05\x01\x01\x02\x04\x01\x03\x04", // 𨽹
+ 0x28f7a: "\x03\x05\x02\x05\x01\x03\x05\x05\x01\x01\x02\x04\x01\x03\x04", // 𨽺
+ 0x28f7b: "\x01\x05\x01\x01\x02\x03\x04\x05\x01\x01\x02\x04\x01\x03\x04", // 𨽻
+ 0x28f7c: "\x05\x01\x01\x02\x04\x01\x03\x04\x05\x01\x01\x02\x04\x01\x03\x04", // 𨽼
+ 0x28f7d: "\x05\x05\x01\x03\x03\x02\x05\x02\x05\x01\x01\x02\x04\x01\x03\x04", // 𨽽
+ 0x28f7e: "\x02\x01\x01\x01\x01\x02\x03\x04\x05\x01\x01\x02\x04\x01\x03\x04", // 𨽾
+ 0x28f7f: "\x05\x04\x02\x05\x01\x01\x02\x03\x04\x05\x01\x01\x02\x04\x01\x03\x04", // 𨽿
+ 0x28f80: "\x05\x02\x02\x05\x02\x01\x01\x02\x03\x04\x05\x01\x01\x02\x04\x01\x03\x04", // 𨾀
+ 0x28f81: "\x03\x04\x02\x01\x01\x01\x01\x02\x03\x04\x05\x01\x01\x02\x04\x01\x03\x04", // 𨾁
+ 0x28f82: "\x05\x01\x01\x02\x04\x01\x03\x04\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 𨾂
+ 0x28f83: "\x05\x04\x02\x05\x01\x01\x03\x05\x03\x03\x03\x04\x05\x01\x01\x02\x04\x01\x03\x04", // 𨾃
+ 0x28f84: "\x02\x05\x02\x04\x03\x01\x04\x03\x03\x04\x04\x03\x03\x04\x05\x01\x01\x02\x04\x01\x03\x04", // 𨾄
+ 0x28f85: "\x01\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾅
+ 0x28f86: "\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾆
+ 0x28f87: "\x02\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾇
+ 0x28f88: "\x05\x01\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾈
+ 0x28f89: "\x03\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾉
+ 0x28f8a: "\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾊
+ 0x28f8b: "\x05\x01\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾋
+ 0x28f8c: "\x01\x01\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾌
+ 0x28f8d: "\x01\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾍
+ 0x28f8e: "\x03\x02\x04\x01\x01\x01\x02\x01\x05\x01\x03\x04", // 𨾎
+ 0x28f8f: "\x03\x02\x04\x01\x01\x01\x02\x01\x03\x05\x04", // 𨾏
+ 0x28f90: "\x05\x01\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾐
+ 0x28f91: "\x05\x01\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾑
+ 0x28f92: "\x04\x01\x03\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾒
+ 0x28f93: "\x01\x05\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾓
+ 0x28f94: "\x04\x01\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾔
+ 0x28f95: "\x05\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾕
+ 0x28f96: "\x01\x02\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾖
+ 0x28f97: "\x03\x02\x04\x01\x01\x01\x02\x01\x05\x01\x03\x04", // 𨾗
+ 0x28f98: "\x03\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾘
+ 0x28f99: "\x01\x05\x01\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾙
+ 0x28f9a: "\x01\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾚
+ 0x28f9b: "\x03\x05\x01\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾛
+ 0x28f9c: "\x03\x02\x04\x01\x01\x01\x02\x01\x01\x01\x05\x04", // 𨾜
+ 0x28f9d: "\x03\x04\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾝
+ 0x28f9e: "\x03\x05\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾞
+ 0x28f9f: "\x03\x01\x01\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾟
+ 0x28fa0: "\x03\x04\x01\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾠
+ 0x28fa1: "\x02\x05\x01\x01\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾡
+ 0x28fa2: "\x01\x02\x01\x01\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾢
+ 0x28fa3: "\x05\x04\x05\x02\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾣
+ 0x28fa4: "\x03\x01\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾤
+ 0x28fa5: "\x05\x05\x04\x01\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾥
+ 0x28fa6: "\x03\x05\x01\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾦
+ 0x28fa7: "\x05\x01\x05\x01\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾧
+ 0x28fa8: "\x04\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾨
+ 0x28fa9: "\x01\x03\x03\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾩
+ 0x28faa: "\x03\x02\x01\x02\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾪
+ 0x28fab: "\x05\x03\x03\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾫
+ 0x28fac: "\x01\x03\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾬
+ 0x28fad: "\x01\x03\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾭
+ 0x28fae: "\x01\x03\x04\x04\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾮
+ 0x28faf: "\x05\x03\x01\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾯
+ 0x28fb0: "\x05\x04\x01\x01\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾰
+ 0x28fb1: "\x05\x04\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾱
+ 0x28fb2: "\x03\x01\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾲
+ 0x28fb3: "\x02\x05\x01\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾳
+ 0x28fb4: "\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾴
+ 0x28fb5: "\x05\x03\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾵
+ 0x28fb6: "\x04\x04\x05\x05\x03\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾶
+ 0x28fb7: "\x03\x01\x02\x01\x03\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾷
+ 0x28fb8: "\x01\x03\x05\x04\x02\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾸
+ 0x28fb9: "\x03\x02\x01\x05\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾹
+ 0x28fba: "\x01\x03\x04\x01\x01\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾺
+ 0x28fbb: "\x03\x02\x04\x01\x01\x01\x02\x01\x02\x03\x04\x03\x05\x03", // 𨾻
+ 0x28fbc: "\x03\x05\x01\x03\x05\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾼
+ 0x28fbd: "\x01\x05\x04\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾽
+ 0x28fbe: "\x03\x04\x01\x05\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾾
+ 0x28fbf: "\x01\x03\x02\x05\x02\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𨾿
+ 0x28fc0: "\x03\x02\x01\x05\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿀
+ 0x28fc1: "\x03\x04\x04\x03\x01\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿁
+ 0x28fc2: "\x03\x02\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿂
+ 0x28fc3: "\x03\x02\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿃
+ 0x28fc4: "\x04\x03\x01\x05\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿄
+ 0x28fc5: "\x03\x05\x04\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿅
+ 0x28fc6: "\x01\x02\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿆
+ 0x28fc7: "\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x03\x04\x03\x04", // 𨿇
+ 0x28fc8: "\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04\x05\x04", // 𨿈
+ 0x28fc9: "\x05\x01\x01\x05\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿉
+ 0x28fca: "\x05\x04\x05\x02\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿊
+ 0x28fcb: "\x01\x05\x05\x05\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿋
+ 0x28fcc: "\x01\x02\x05\x01\x01\x02\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿌
+ 0x28fcd: "\x03\x01\x02\x01\x05\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿍
+ 0x28fce: "\x02\x05\x01\x01\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿎
+ 0x28fcf: "\x01\x02\x03\x04\x03\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿏
+ 0x28fd0: "\x03\x04\x04\x03\x01\x02\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿐
+ 0x28fd1: "\x02\x05\x01\x01\x01\x01\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿑
+ 0x28fd2: "\x03\x03\x02\x03\x05\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿒
+ 0x28fd3: "\x05\x04\x03\x05\x03\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿓
+ 0x28fd4: "\x02\x05\x01\x03\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿔
+ 0x28fd5: "\x03\x04\x01\x03\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿕
+ 0x28fd6: "\x03\x01\x02\x03\x04\x03\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿖
+ 0x28fd7: "\x03\x05\x03\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿗
+ 0x28fd8: "\x03\x02\x04\x01\x01\x01\x02\x01\x04\x03\x05\x01\x05\x02\x03", // 𨿘
+ 0x28fd9: "\x01\x03\x05\x03\x03\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿙
+ 0x28fda: "\x03\x04\x04\x03\x05\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿚
+ 0x28fdb: "\x03\x02\x04\x01\x01\x01\x02\x01\x03\x04\x01\x03\x02\x05\x02", // 𨿛
+ 0x28fdc: "\x03\x04\x03\x04\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿜
+ 0x28fdd: "\x04\x03\x05\x01\x05\x02\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿝
+ 0x28fde: "\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01", // 𨿞
+ 0x28fdf: "\x01\x02\x03\x04\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿟
+ 0x28fe0: "\x03\x01\x02\x01\x02\x01\x02\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿠
+ 0x28fe1: "\x04\x01\x02\x05\x01\x05\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿡
+ 0x28fe2: "\x01\x02\x05\x01\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿢
+ 0x28fe3: "\x01\x02\x02\x01\x01\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿣
+ 0x28fe4: "\x04\x01\x03\x02\x03\x05\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿤
+ 0x28fe5: "\x03\x05\x04\x03\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿥
+ 0x28fe6: "\x04\x01\x04\x03\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿦
+ 0x28fe7: "\x02\x01\x02\x05\x01\x01\x01\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿧
+ 0x28fe8: "\x01\x02\x02\x05\x01\x01\x01\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿨
+ 0x28fe9: "\x01\x05\x01\x01\x02\x05\x03\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿩
+ 0x28fea: "\x02\x05\x01\x01\x01\x05\x01\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿪
+ 0x28feb: "\x01\x03\x04\x01\x02\x05\x01\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿫
+ 0x28fec: "\x01\x01\x02\x01\x03\x05\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿬
+ 0x28fed: "\x05\x02\x01\x03\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿭
+ 0x28fee: "\x03\x05\x02\x05\x01\x03\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿮
+ 0x28fef: "\x03\x01\x02\x03\x04\x03\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿯
+ 0x28ff0: "\x02\x04\x03\x02\x05\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿰
+ 0x28ff1: "\x03\x05\x01\x03\x03\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿱
+ 0x28ff2: "\x01\x02\x01\x03\x05\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿲
+ 0x28ff3: "\x01\x03\x05\x01\x03\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿳
+ 0x28ff4: "\x05\x05\x05\x02\x05\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿴
+ 0x28ff5: "\x03\x02\x05\x01\x01\x03\x01\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿵
+ 0x28ff6: "\x04\x01\x03\x05\x01\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿶
+ 0x28ff7: "\x05\x04\x05\x04\x05\x04\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿷
+ 0x28ff8: "\x03\x04\x04\x03\x01\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿸
+ 0x28ff9: "\x03\x05\x01\x05\x02\x05\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿹
+ 0x28ffa: "\x02\x05\x04\x03\x01\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿺
+ 0x28ffb: "\x02\x05\x02\x03\x02\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿻
+ 0x28ffc: "\x04\x01\x03\x04\x03\x04\x01\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿼
+ 0x28ffd: "\x05\x04\x02\x05\x01\x02\x01\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿽
+ 0x28ffe: "\x01\x05\x04\x03\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿾
+ 0x28fff: "\x03\x01\x02\x05\x01\x01\x02\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𨿿
+ 0x29000: "\x01\x02\x05\x01\x01\x05\x03\x01\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀀
+ 0x29001: "\x05\x04\x03\x03\x04\x01\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀁
+ 0x29002: "\x03\x04\x01\x02\x05\x01\x01\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀂
+ 0x29003: "\x05\x01\x05\x01\x05\x02\x05\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀃
+ 0x29004: "\x01\x02\x05\x02\x02\x01\x05\x03\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀄
+ 0x29005: "\x05\x05\x01\x03\x05\x03\x03\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀅
+ 0x29006: "\x04\x04\x05\x03\x05\x01\x03\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀆
+ 0x29007: "\x02\x05\x01\x02\x05\x01\x01\x01\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀇
+ 0x29008: "\x04\x04\x05\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀈
+ 0x29009: "\x01\x02\x02\x05\x01\x03\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀉
+ 0x2900a: "\x01\x05\x01\x05\x03\x02\x05\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀊
+ 0x2900b: "\x01\x03\x02\x05\x02\x02\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀋
+ 0x2900c: "\x03\x02\x05\x01\x02\x05\x02\x01\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀌
+ 0x2900d: "\x02\x05\x01\x01\x02\x05\x02\x01\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀍
+ 0x2900e: "\x02\x05\x01\x01\x01\x01\x03\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀎
+ 0x2900f: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀏
+ 0x29010: "\x03\x03\x01\x02\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀐
+ 0x29011: "\x03\x02\x01\x05\x01\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀑
+ 0x29012: "\x03\x01\x02\x03\x04\x03\x05\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀒
+ 0x29013: "\x03\x04\x04\x03\x01\x02\x05\x01\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀓
+ 0x29014: "\x01\x02\x01\x02\x05\x01\x05\x01\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀔
+ 0x29015: "\x03\x02\x04\x01\x01\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀕
+ 0x29016: "\x04\x01\x03\x05\x03\x04\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀖
+ 0x29017: "\x03\x02\x04\x01\x01\x01\x02\x01\x03\x03\x02\x01\x05\x03\x01\x05\x03\x05", // 𩀗
+ 0x29018: "\x03\x05\x04\x04\x03\x01\x01\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀘
+ 0x29019: "\x02\x03\x04\x02\x05\x01\x01\x04\x03\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀙
+ 0x2901a: "\x02\x05\x02\x02\x01\x02\x03\x03\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀚
+ 0x2901b: "\x04\x01\x03\x05\x01\x01\x02\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀛
+ 0x2901c: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀜
+ 0x2901d: "\x01\x04\x05\x02\x03\x04\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𩀝
+ 0x2901e: "\x03\x04\x01\x05\x01\x01\x03\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀞
+ 0x2901f: "\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03", // 𩀟
+ 0x29020: "\x01\x02\x01\x04\x05\x01\x03\x05\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀠
+ 0x29021: "\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀡
+ 0x29022: "\x02\x05\x03\x04\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀢
+ 0x29023: "\x03\x05\x02\x05\x01\x03\x05\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀣
+ 0x29024: "\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀤
+ 0x29025: "\x04\x01\x05\x03\x03\x01\x03\x01\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀥
+ 0x29026: "\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀦
+ 0x29027: "\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀧
+ 0x29028: "\x03\x02\x04\x01\x01\x01\x02\x01\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04", // 𩀨
+ 0x29029: "\x03\x01\x04\x03\x01\x04\x04\x01\x04\x03\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀩
+ 0x2902a: "\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀪
+ 0x2902b: "\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀫
+ 0x2902c: "\x03\x02\x04\x01\x01\x01\x02\x01\x04\x01\x03\x05\x01\x01\x02\x05\x01\x01\x02", // 𩀬
+ 0x2902d: "\x02\x05\x01\x01\x01\x03\x01\x01\x05\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀭
+ 0x2902e: "\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀮
+ 0x2902f: "\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀯
+ 0x29030: "\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀰
+ 0x29031: "\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x05\x04", // 𩀱
+ 0x29032: "\x05\x01\x03\x03\x02\x04\x01\x01\x01\x02\x01\x03\x05\x04\x04\x04\x03\x03\x04", // 𩀲
+ 0x29033: "\x01\x01\x02\x01\x01\x03\x02\x01\x03\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀳
+ 0x29034: "\x01\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀴
+ 0x29035: "\x01\x02\x01\x02\x01\x01\x02\x01\x02\x01\x01\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀵
+ 0x29036: "\x05\x02\x01\x03\x01\x02\x01\x03\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀶
+ 0x29037: "\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀷
+ 0x29038: "\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀸
+ 0x29039: "\x03\x02\x05\x01\x01\x01\x01\x01\x01\x01\x01\x02", // 𩀹
+ 0x2903a: "\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀺
+ 0x2903b: "\x04\x01\x02\x05\x01\x02\x03\x04\x01\x03\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀻
+ 0x2903c: "\x01\x02\x03\x04\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x03\x01\x03\x04", // 𩀼
+ 0x2903d: "\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀽
+ 0x2903e: "\x01\x03\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀾
+ 0x2903f: "\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩀿
+ 0x29040: "\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩁀
+ 0x29041: "\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x01\x02\x05\x01", // 𩁁
+ 0x29042: "\x01\x01\x02\x01\x03\x04\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩁂
+ 0x29043: "\x01\x03\x02\x05\x02\x02\x01\x03\x02\x05\x02\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𩁃
+ 0x29044: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𩁄
+ 0x29045: "\x03\x03\x04\x03\x04\x03\x04\x03\x04\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩁅
+ 0x29046: "\x03\x04\x03\x04\x03\x04\x03\x04\x02\x05\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩁆
+ 0x29047: "\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𩁇
+ 0x29048: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x04\x05\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𩁈
+ 0x29049: "\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩁉
+ 0x2904a: "\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𩁊
+ 0x2904b: "\x02\x01\x05\x03\x01\x05\x01\x03\x05\x03\x03\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𩁋
+ 0x2904c: "\x05\x02\x01\x03\x01\x02\x01\x01\x03\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩁌
+ 0x2904d: "\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𩁍
+ 0x2904e: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x04\x01\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𩁎
+ 0x2904f: "\x03\x05\x01\x03\x03\x05\x04\x01\x01\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩁏
+ 0x29050: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x04\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩁐
+ 0x29051: "\x02\x05\x01\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩁑
+ 0x29052: "\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x05\x03\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 𩁒
+ 0x29053: "\x03\x05\x03\x04\x01\x01\x01\x02\x05\x01\x01\x03\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𩁓
+ 0x29054: "\x04\x04\x05\x04\x05\x04\x04\x02\x05\x02\x02\x01\x01\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𩁔
+ 0x29055: "\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𩁕
+ 0x29056: "\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𩁖
+ 0x29057: "\x03\x02\x04\x01\x01\x01\x02\x01\x03\x05\x04\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩁗
+ 0x29058: "\x01\x02\x02\x01\x02\x05\x01\x03\x04\x04\x03\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩁘
+ 0x29059: "\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩁙
+ 0x2905a: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩁚
+ 0x2905b: "\x04\x01\x02\x05\x01\x02\x05\x01\x04\x03\x01\x01\x01\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𩁛
+ 0x2905c: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩁜
+ 0x2905d: "\x01\x02\x02\x02\x05\x02\x02\x01\x01\x03\x04\x05\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𩁝
+ 0x2905e: "\x01\x02\x02\x03\x05\x04\x04\x05\x04\x01\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𩁞
+ 0x2905f: "\x03\x01\x02\x03\x04\x03\x05\x03\x03\x04\x02\x04\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𩁟
+ 0x29060: "\x02\x05\x01\x01\x01\x02\x02\x01\x03\x04\x02\x04\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𩁠
+ 0x29061: "\x01\x02\x01\x04\x05\x01\x03\x01\x02\x03\x04\x03\x05\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𩁡
+ 0x29062: "\x01\x02\x02\x01\x02\x05\x01\x02\x01\x01\x03\x04\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩁢
+ 0x29063: "\x01\x02\x02\x01\x02\x05\x01\x02\x05\x01\x02\x03\x04\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩁣
+ 0x29064: "\x01\x02\x02\x01\x02\x05\x01\x02\x05\x01\x01\x02\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩁤
+ 0x29065: "\x04\x03\x01\x01\x01\x03\x04\x04\x05\x01\x01\x05\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𩁥
+ 0x29066: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𩁦
+ 0x29067: "\x03\x04\x01\x05\x03\x04\x02\x01\x02\x01\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩁧
+ 0x29068: "\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩁨
+ 0x29069: "\x01\x02\x02\x02\x05\x03\x01\x02\x03\x04\x01\x02\x05\x01\x01\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𩁩
+ 0x2906a: "\x01\x02\x02\x01\x03\x04\x02\x05\x01\x02\x01\x03\x04\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩁪
+ 0x2906b: "\x04\x03\x01\x01\x03\x04\x02\x01\x02\x01\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩁫
+ 0x2906c: "\x01\x02\x02\x01\x02\x05\x01\x02\x05\x01\x02\x01\x03\x05\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩁬
+ 0x2906d: "\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩁭
+ 0x2906e: "\x01\x02\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩁮
+ 0x2906f: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩁯
+ 0x29070: "\x03\x04\x03\x04\x01\x02\x02\x01\x01\x02\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x03\x04\x02\x05\x01", // 𩁰
+ 0x29071: "\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02\x03\x04\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01", // 𩁱
+ 0x29072: "\x03\x01\x04\x03\x01\x04\x03\x04\x02\x05\x01\x02\x05\x01\x02\x03\x04\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩁲
+ 0x29073: "\x03\x01\x04\x03\x01\x04\x01\x02\x02\x01\x03\x04\x02\x05\x01\x02\x01\x03\x04\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩁳
+ 0x29074: "\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x05\x04\x03\x01\x02\x03\x04", // 𩁴
+ 0x29075: "\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x01\x03\x01\x02\x01\x05\x05\x02\x01\x02", // 𩁵
+ 0x29076: "\x01\x04\x05\x02\x04\x01\x03\x04\x05", // 𩁶
+ 0x29077: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x02", // 𩁷
+ 0x29078: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x05", // 𩁸
+ 0x29079: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x01\x02", // 𩁹
+ 0x2907a: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x03\x03", // 𩁺
+ 0x2907b: "\x01\x04\x05\x02\x04\x01\x03\x04\x05\x03\x01", // 𩁻
+ 0x2907c: "\x03\x05\x04\x01\x02\x05\x02\x04\x01\x03\x04", // 𩁼
+ 0x2907d: "\x01\x04\x05\x02\x04\x01\x03\x04\x05\x01\x05", // 𩁽
+ 0x2907e: "\x01\x04\x05\x02\x04\x01\x03\x05\x05\x04", // 𩁾
+ 0x2907f: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x05\x01", // 𩁿
+ 0x29080: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x01\x02", // 𩂀
+ 0x29081: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x05", // 𩂁
+ 0x29082: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x05\x03\x03", // 𩂂
+ 0x29083: "\x01\x04\x05\x02\x04\x01\x03\x04\x05\x01\x03\x04", // 𩂃
+ 0x29084: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x05\x02\x05", // 𩂄
+ 0x29085: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x05\x03\x04", // 𩂅
+ 0x29086: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x03\x02\x04", // 𩂆
+ 0x29087: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x04\x01\x05", // 𩂇
+ 0x29088: "\x01\x04\x05\x02\x04\x01\x03\x04\x04\x05\x04\x04", // 𩂈
+ 0x29089: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x01\x03\x04", // 𩂉
+ 0x2908a: "\x01\x02\x05\x02\x04\x01\x03\x04\x01\x01\x02\x01", // 𩂊
+ 0x2908b: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x03\x01\x02", // 𩂋
+ 0x2908c: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x02\x01\x05", // 𩂌
+ 0x2908d: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x03\x04", // 𩂍
+ 0x2908e: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x04\x03\x04", // 𩂎
+ 0x2908f: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x05\x04", // 𩂏
+ 0x29090: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x01\x02\x01", // 𩂐
+ 0x29091: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x05\x03\x03", // 𩂑
+ 0x29092: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x03\x05\x01\x05", // 𩂒
+ 0x29093: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x05\x04\x04\x04", // 𩂓
+ 0x29094: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x03\x03\x04\x04", // 𩂔
+ 0x29095: "\x01\x04\x05\x02\x04\x01\x03\x04\x05\x01\x05\x03\x02", // 𩂕
+ 0x29096: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x01\x02\x01\x01", // 𩂖
+ 0x29097: "\x01\x04\x05\x02\x04\x01\x03\x04\x05\x02\x02\x05\x02", // 𩂗
+ 0x29098: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x01\x02", // 𩂘
+ 0x29099: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x04\x03\x05\x04", // 𩂙
+ 0x2909a: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x03\x05\x03\x04", // 𩂚
+ 0x2909b: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x02\x01\x02\x04", // 𩂛
+ 0x2909c: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x05\x03\x03\x04", // 𩂜
+ 0x2909d: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x03\x04", // 𩂝
+ 0x2909e: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x05\x03\x05\x02", // 𩂞
+ 0x2909f: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x05\x03\x04", // 𩂟
+ 0x290a0: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x02\x01\x05\x04", // 𩂠
+ 0x290a1: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x03\x05\x04\x04", // 𩂡
+ 0x290a2: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x02\x03\x04\x03\x04", // 𩂢
+ 0x290a3: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x05\x04\x02\x05\x01", // 𩂣
+ 0x290a4: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x03\x05\x04\x01\x04", // 𩂤
+ 0x290a5: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x03\x04\x01", // 𩂥
+ 0x290a6: "\x01\x04\x05\x02\x04\x01\x03\x04\x04\x03\x01\x01\x03\x02", // 𩂦
+ 0x290a7: "\x01\x04\x05\x02\x04\x01\x03\x04\x04\x04\x01\x01\x01\x05", // 𩂧
+ 0x290a8: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x02\x02\x01\x01", // 𩂨
+ 0x290a9: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01", // 𩂩
+ 0x290aa: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x05\x04\x01", // 𩂪
+ 0x290ab: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x05\x04\x03\x05\x04", // 𩂫
+ 0x290ac: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x01\x01\x05", // 𩂬
+ 0x290ad: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x05\x04\x03\x05\x04", // 𩂭
+ 0x290ae: "\x01\x04\x05\x02\x04\x01\x03\x04\x04\x03\x01\x02\x03\x04", // 𩂮
+ 0x290af: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x02\x01\x02\x03\x04", // 𩂯
+ 0x290b0: "\x01\x04\x05\x02\x04\x01\x03\x04\x05\x03\x01\x02\x05\x01", // 𩂰
+ 0x290b1: "\x01\x04\x05\x02\x04\x01\x03\x04\x04\x01\x03\x05\x03\x04", // 𩂱
+ 0x290b2: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x02\x05\x01\x03\x04", // 𩂲
+ 0x290b3: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x02\x02\x04\x03\x01", // 𩂳
+ 0x290b4: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x05\x02\x03\x04", // 𩂴
+ 0x290b5: "\x01\x04\x05\x02\x04\x01\x03\x04\x05\x01\x03\x05\x01\x05", // 𩂵
+ 0x290b6: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x05\x04\x02\x02", // 𩂶
+ 0x290b7: "\x01\x04\x05\x02\x04\x01\x03\x04\x04\x04\x01\x01\x01\x03\x05", // 𩂷
+ 0x290b8: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x04\x01\x04\x05\x03\x05", // 𩂸
+ 0x290b9: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x03\x02\x03\x05\x05\x04", // 𩂹
+ 0x290ba: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x02\x05\x01\x02\x03\x04", // 𩂺
+ 0x290bb: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x02\x02\x01\x01\x01\x05", // 𩂻
+ 0x290bc: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x02\x05\x01\x01\x03\x04", // 𩂼
+ 0x290bd: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x01\x02\x01\x01\x03\x02", // 𩂽
+ 0x290be: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x01\x01\x05", // 𩂾
+ 0x290bf: "\x01\x04\x05\x02\x04\x01\x03\x04\x05\x01\x01\x03\x02\x05\x01", // 𩂿
+ 0x290c0: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x02\x01\x02\x01\x05\x04", // 𩃀
+ 0x290c1: "\x01\x04\x05\x02\x04\x01\x03\x04\x04\x04\x01\x03\x05\x05\x04", // 𩃁
+ 0x290c2: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x02\x01\x03\x01\x03\x04", // 𩃂
+ 0x290c3: "\x01\x04\x05\x02\x04\x01\x03\x04\x05\x04\x05\x04\x03\x05\x04", // 𩃃
+ 0x290c4: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x05\x03\x03\x03\x04", // 𩃄
+ 0x290c5: "\x01\x04\x05\x02\x02\x02\x03\x02\x02\x01\x02\x05\x01", // 𩃅
+ 0x290c6: "\x01\x04\x05\x02\x04\x01\x03\x04\x04\x04\x02\x01\x05\x05\x01", // 𩃆
+ 0x290c7: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x02\x01\x03\x05\x01\x01", // 𩃇
+ 0x290c8: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 𩃈
+ 0x290c9: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x05\x01\x03\x04", // 𩃉
+ 0x290ca: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x05\x05\x01\x02\x01\x05", // 𩃊
+ 0x290cb: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x01\x03\x02\x03\x03\x03", // 𩃋
+ 0x290cc: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x01\x05\x04\x03\x01\x05", // 𩃌
+ 0x290cd: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x04\x01\x03\x04\x05\x04", // 𩃍
+ 0x290ce: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x04\x01\x04\x01\x05\x03", // 𩃎
+ 0x290cf: "\x01\x04\x05\x02\x04\x04\x04\x04\x05\x01\x01\x04\x03\x03\x04", // 𩃏
+ 0x290d0: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x02\x03\x05\x01\x05\x01", // 𩃐
+ 0x290d1: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x02\x01\x03\x01\x02\x05", // 𩃑
+ 0x290d2: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x01\x02\x01\x02\x01\x02\x01\x01", // 𩃒
+ 0x290d3: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x02\x01\x05\x01\x01\x05", // 𩃓
+ 0x290d4: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x04\x03\x04\x01\x05\x03\x04", // 𩃔
+ 0x290d5: "\x01\x04\x05\x02\x04\x01\x03\x04\x05\x02\x01\x03\x01\x02\x03\x04", // 𩃕
+ 0x290d6: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x05\x01\x01\x02\x01\x03\x04", // 𩃖
+ 0x290d7: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x03\x04\x02\x05\x01\x01\x05", // 𩃗
+ 0x290d8: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x02\x05\x01\x01\x02\x01\x04", // 𩃘
+ 0x290d9: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x01\x01\x03\x04", // 𩃙
+ 0x290da: "\x01\x04\x05\x02\x04\x01\x03\x04\x04\x04\x01\x04\x01\x05\x05\x04", // 𩃚
+ 0x290db: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x01\x03\x04\x01\x05", // 𩃛
+ 0x290dc: "\x01\x04\x05\x02\x04\x01\x03\x04\x04\x04\x01\x04\x01\x04\x03\x01", // 𩃜
+ 0x290dd: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x02\x03\x04\x01\x03\x01\x04", // 𩃝
+ 0x290de: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x05\x01\x03\x03\x05\x01\x03", // 𩃞
+ 0x290df: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x01\x03\x03\x01\x02", // 𩃟
+ 0x290e0: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x01\x05\x04\x02\x05\x03\x04", // 𩃠
+ 0x290e1: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x02\x01\x05\x01\x01\x02", // 𩃡
+ 0x290e2: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x04\x03\x04\x01\x05\x03\x04", // 𩃢
+ 0x290e3: "\x01\x04\x05\x02\x04\x01\x03\x04\x04\x01\x03\x04\x03\x04\x01\x02", // 𩃣
+ 0x290e4: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x03\x04\x01\x02\x05\x01\x02", // 𩃤
+ 0x290e5: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x02\x03\x05\x01\x02\x05\x02", // 𩃥
+ 0x290e6: "\x01\x04\x05\x02\x04\x01\x03\x04\x04\x04\x01\x05\x04\x02\x05\x01", // 𩃦
+ 0x290e7: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x02\x01\x03\x05\x05\x01\x05", // 𩃧
+ 0x290e8: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x01\x02\x01\x03\x04\x01\x05", // 𩃨
+ 0x290e9: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x02\x02\x01\x05\x03\x01", // 𩃩
+ 0x290ea: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x04\x02\x05\x01\x02\x01\x04", // 𩃪
+ 0x290eb: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x02\x01\x03\x02\x05\x01\x01", // 𩃫
+ 0x290ec: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x01\x05\x04\x03\x04\x04\x05", // 𩃬
+ 0x290ed: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x03\x04\x03\x04\x05\x04", // 𩃭
+ 0x290ee: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x01\x03\x05\x03\x03", // 𩃮
+ 0x290ef: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x03\x04\x04\x04\x04\x04", // 𩃯
+ 0x290f0: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x04\x01\x03\x01\x05\x02\x05", // 𩃰
+ 0x290f1: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x04\x01\x04\x04\x05\x03\x05", // 𩃱
+ 0x290f2: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x03\x03\x03\x04\x04\x04", // 𩃲
+ 0x290f3: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x01\x01\x03\x04\x01\x01\x02", // 𩃳
+ 0x290f4: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x03\x05\x04\x03\x05\x01\x01", // 𩃴
+ 0x290f5: "\x01\x04\x05\x02\x04\x01\x03\x04\x04\x04\x01\x03\x05\x01\x02\x03\x04", // 𩃵
+ 0x290f6: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x01\x05\x04\x01\x03\x03\x04\x04", // 𩃶
+ 0x290f7: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x01\x05\x04\x03\x02\x01\x05\x04", // 𩃷
+ 0x290f8: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x01\x05\x04\x05\x01\x05\x03\x02", // 𩃸
+ 0x290f9: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x01\x02\x03\x02\x01\x05\x01\x01", // 𩃹
+ 0x290fa: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x02\x05\x01\x03\x01\x01\x03\x04", // 𩃺
+ 0x290fb: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x01\x02\x03\x04\x03\x05\x03\x03", // 𩃻
+ 0x290fc: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x03\x02\x05\x01\x03\x05\x05\x03", // 𩃼
+ 0x290fd: "\x04\x01\x03\x01\x01\x02\x01\x03\x04\x01\x02\x05\x02\x04\x01\x03\x04", // 𩃽
+ 0x290fe: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 𩃾
+ 0x290ff: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x05\x01\x02\x01\x03\x05\x01\x01", // 𩃿
+ 0x29100: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x03\x04\x01\x02\x05\x01\x01\x05", // 𩄀
+ 0x29101: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 𩄁
+ 0x29102: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x04\x01\x03\x03\x03\x05\x03\x04", // 𩄂
+ 0x29103: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x02\x03\x04\x03\x05\x05\x01\x05", // 𩄃
+ 0x29104: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x01\x01\x03\x04\x02\x05\x01\x01", // 𩄄
+ 0x29105: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 𩄅
+ 0x29106: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x01\x03\x01\x01\x02\x01", // 𩄆
+ 0x29107: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x02\x02\x01\x01\x01\x02\x01", // 𩄇
+ 0x29108: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x04\x04\x05\x04\x01\x01\x05\x04", // 𩄈
+ 0x29109: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x05\x04\x05\x04\x02\x05\x01\x01", // 𩄉
+ 0x2910a: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x01\x01\x01\x02\x05\x01\x01\x02", // 𩄊
+ 0x2910b: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x04\x01\x01\x03\x02\x05\x02\x02", // 𩄋
+ 0x2910c: "\x01\x04\x05\x02\x04\x04\x04\x04\x05\x01\x03\x01\x05\x04\x01\x02\x01", // 𩄌
+ 0x2910d: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x01\x02\x03\x04\x04\x03\x03\x04", // 𩄍
+ 0x2910e: "\x01\x04\x05\x02\x04\x04\x04\x04\x05\x02\x01\x03\x02\x05\x01\x01\x01", // 𩄎
+ 0x2910f: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𩄏
+ 0x29110: "\x01\x04\x05\x02\x04\x01\x03\x04\x05\x02\x03\x05\x04\x01\x05\x02", // 𩄐
+ 0x29111: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x04\x03\x01\x01\x02", // 𩄑
+ 0x29112: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 𩄒
+ 0x29113: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 𩄓
+ 0x29114: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x01\x05\x02\x05\x03\x04\x01", // 𩄔
+ 0x29115: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x01\x01\x02\x01\x02\x01", // 𩄕
+ 0x29116: "\x01\x04\x05\x02\x04\x01\x03\x04\x05\x05\x01\x03\x05\x03\x03\x03\x04", // 𩄖
+ 0x29117: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x02\x01\x02\x01\x03\x04\x03\x01\x02", // 𩄗
+ 0x29118: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x04\x05\x04\x05\x04\x01\x05\x04\x01", // 𩄘
+ 0x29119: "\x01\x04\x05\x02\x04\x01\x03\x04\x05\x04\x02\x05\x04\x03\x01\x01\x02", // 𩄙
+ 0x2911a: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x05\x02\x05\x01\x01\x01\x05\x03\x04", // 𩄚
+ 0x2911b: "\x01\x04\x05\x02\x04\x01\x03\x04\x05\x02\x01\x02\x05\x01\x01\x01\x02", // 𩄛
+ 0x2911c: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x02\x04\x05\x05\x05\x04\x02\x03\x04", // 𩄜
+ 0x2911d: "\x01\x04\x05\x02\x04\x01\x03\x04\x04\x03\x01\x01\x01\x03\x01\x02\x01", // 𩄝
+ 0x2911e: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04", // 𩄞
+ 0x2911f: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 𩄟
+ 0x29120: "\x01\x02\x05\x02\x04\x01\x03\x04\x01\x05\x02\x05\x01\x01\x01\x05\x03\x04", // 𩄠
+ 0x29121: "\x01\x04\x05\x02\x04\x01\x03\x04\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 𩄡
+ 0x29122: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01", // 𩄢
+ 0x29123: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01", // 𩄣
+ 0x29124: "\x01\x04\x05\x02\x04\x01\x03\x04\x04\x03\x01\x01\x03\x03\x05\x01\x01", // 𩄤
+ 0x29125: "\x01\x04\x05\x02\x04\x01\x03\x04\x05\x01\x05\x02\x04\x04\x04\x04\x05\x02", // 𩄥
+ 0x29126: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x03\x02\x03\x05\x04\x01\x01\x01\x02", // 𩄦
+ 0x29127: "\x01\x04\x05\x02\x04\x01\x03\x04\x04\x03\x01\x02\x03\x04\x03\x01\x03\x04", // 𩄧
+ 0x29128: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x04\x05\x02\x05\x01\x01", // 𩄨
+ 0x29129: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x05\x03\x03\x05\x03\x04\x05\x03\x04", // 𩄩
+ 0x2912a: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x05\x01\x02\x01\x04\x03\x03\x04", // 𩄪
+ 0x2912b: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x01\x01\x02\x05\x02\x04\x05\x04", // 𩄫
+ 0x2912c: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x04\x01\x03\x05\x02\x05\x01\x03\x05", // 𩄬
+ 0x2912d: "\x01\x04\x05\x02\x04\x01\x03\x04\x04\x04\x02\x01\x02\x05\x01\x02\x05\x01", // 𩄭
+ 0x2912e: "\x01\x04\x05\x02\x04\x01\x03\x04\x05\x01\x01\x05\x03\x04\x04\x05\x04", // 𩄮
+ 0x2912f: "\x01\x04\x05\x02\x04\x04\x04\x04\x05\x04\x05\x02\x03\x02\x05\x01\x01\x01", // 𩄯
+ 0x29130: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x05\x04\x02\x02\x04\x04\x04\x04", // 𩄰
+ 0x29131: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05", // 𩄱
+ 0x29132: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x03\x01\x02\x03\x04\x04\x05\x04", // 𩄲
+ 0x29133: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x01\x04\x03\x01\x04\x01\x04\x03\x01", // 𩄳
+ 0x29134: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x02\x01\x01\x01\x03\x04\x01\x01\x02", // 𩄴
+ 0x29135: "\x01\x04\x05\x02\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x02\x05\x03\x04", // 𩄵
+ 0x29136: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x03\x01\x02\x03\x04\x03\x05\x03\x04", // 𩄶
+ 0x29137: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x02\x05\x01\x01\x02\x01\x02\x05\x01", // 𩄷
+ 0x29138: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x02\x01\x01\x02\x01\x02\x01\x05\x04", // 𩄸
+ 0x29139: "\x01\x04\x05\x02\x04\x01\x03\x04\x05\x01\x01\x05\x04\x03\x05\x01\x01", // 𩄹
+ 0x2913a: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x01\x01\x02\x01\x01\x03\x02", // 𩄺
+ 0x2913b: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x04", // 𩄻
+ 0x2913c: "\x01\x04\x05\x02\x04\x01\x03\x04\x04\x04\x01\x03\x01\x01\x01\x02\x01\x01\x01", // 𩄼
+ 0x2913d: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 𩄽
+ 0x2913e: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𩄾
+ 0x2913f: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x02\x04\x05\x05\x02\x01\x03\x01\x03\x04", // 𩄿
+ 0x29140: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04", // 𩅀
+ 0x29141: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x02\x01\x02\x01\x03\x04\x04\x01\x03\x02", // 𩅁
+ 0x29142: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04", // 𩅂
+ 0x29143: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x02\x04\x04\x05\x01\x01\x02\x03\x04", // 𩅃
+ 0x29144: "\x01\x04\x05\x02\x04\x01\x03\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05", // 𩅄
+ 0x29145: "\x01\x04\x05\x02\x04\x01\x03\x04\x04\x04\x01\x03\x01\x01\x03\x03\x01\x01\x02", // 𩅅
+ 0x29146: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x01\x03\x05\x04\x04\x05\x04", // 𩅆
+ 0x29147: "\x01\x04\x05\x02\x04\x01\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01\x05\x02", // 𩅇
+ 0x29148: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02", // 𩅈
+ 0x29149: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x02\x02\x01\x03\x02\x03\x04\x03\x04", // 𩅉
+ 0x2914a: "\x01\x04\x05\x02\x04\x01\x03\x04\x04\x03\x02\x05\x01\x02\x01\x04\x03\x03\x04", // 𩅊
+ 0x2914b: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x02\x05\x01\x01\x01\x01\x02\x05\x04", // 𩅋
+ 0x2914c: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x04\x03\x02\x05\x02\x05\x01\x01\x03\x04", // 𩅌
+ 0x2914d: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 𩅍
+ 0x2914e: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x01\x03\x01\x05\x02\x05\x01", // 𩅎
+ 0x2914f: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x01\x05\x04\x05\x04\x03\x04", // 𩅏
+ 0x29150: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x05", // 𩅐
+ 0x29151: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 𩅑
+ 0x29152: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x02\x01\x01\x04\x01\x03\x04\x05\x01\x01", // 𩅒
+ 0x29153: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x02\x05\x01\x01\x01\x03\x03\x01\x03\x04", // 𩅓
+ 0x29154: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩅔
+ 0x29155: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x04\x01\x05\x01\x01\x04\x05\x02\x05\x02", // 𩅕
+ 0x29156: "\x05\x03\x02\x05\x01\x01\x04\x05\x02\x04\x04\x04\x04\x05\x05\x04\x01\x03\x04", // 𩅖
+ 0x29157: "\x01\x04\x05\x02\x04\x04\x04\x04\x05\x04\x05\x02\x03\x03\x05\x04\x02\x05\x01", // 𩅗
+ 0x29158: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x05\x01\x02\x03\x04\x04\x05\x04", // 𩅘
+ 0x29159: "\x01\x04\x05\x02\x04\x04\x04\x04\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 𩅙
+ 0x2915a: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩅚
+ 0x2915b: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x05\x04\x01\x01\x01\x02\x04\x05\x04", // 𩅛
+ 0x2915c: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x05\x01\x01\x05\x04\x03\x05\x01\x01", // 𩅜
+ 0x2915d: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x01\x05\x04\x01\x03\x04\x02\x05\x01\x01\x05", // 𩅝
+ 0x2915e: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x01\x05\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𩅞
+ 0x2915f: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01", // 𩅟
+ 0x29160: "\x01\x04\x05\x02\x04\x01\x03\x04\x04\x04\x01\x01\x02\x02\x05\x04\x03\x01\x01\x02", // 𩅠
+ 0x29161: "\x01\x04\x05\x02\x04\x01\x03\x04\x05\x02\x01\x03\x01\x02\x01\x03\x05\x04\x01", // 𩅡
+ 0x29162: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x03\x04", // 𩅢
+ 0x29163: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x01\x05\x04\x01\x01\x05\x04\x01\x01\x05\x04", // 𩅣
+ 0x29164: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04\x03\x01\x03\x04", // 𩅤
+ 0x29165: "\x01\x04\x05\x02\x04\x01\x03\x04\x05\x02\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 𩅥
+ 0x29166: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 𩅦
+ 0x29167: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x02\x02\x01\x03\x02\x03\x03\x03\x04", // 𩅧
+ 0x29168: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x05\x03\x04\x01\x05\x03\x04\x02\x05\x01\x01", // 𩅨
+ 0x29169: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04", // 𩅩
+ 0x2916a: "\x01\x04\x05\x02\x04\x01\x03\x04\x04\x04\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 𩅪
+ 0x2916b: "\x01\x04\x05\x02\x04\x01\x03\x04\x04\x04\x02\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 𩅫
+ 0x2916c: "\x01\x04\x05\x02\x04\x01\x03\x04\x05\x04\x05\x02\x03\x03\x01\x03\x04\x02\x05\x01", // 𩅬
+ 0x2916d: "\x01\x04\x05\x02\x04\x01\x03\x04\x05\x01\x05\x01\x03\x02\x05\x01\x01\x05\x01\x05", // 𩅭
+ 0x2916e: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01", // 𩅮
+ 0x2916f: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x01\x03\x01\x05\x01\x02\x01\x03\x03\x05", // 𩅯
+ 0x29170: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x02\x01\x01\x01\x03\x04\x03\x03\x01\x02", // 𩅰
+ 0x29171: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x03\x04\x04\x03\x01\x01\x02\x05\x03\x01\x01", // 𩅱
+ 0x29172: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x02\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 𩅲
+ 0x29173: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x04\x01\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 𩅳
+ 0x29174: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x04\x01\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 𩅴
+ 0x29175: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x04\x01\x05\x01\x03\x01\x05\x04\x01\x02\x01", // 𩅵
+ 0x29176: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x05\x01\x03\x03\x05\x01\x03\x03\x05\x01\x03", // 𩅶
+ 0x29177: "\x01\x04\x05\x02\x04\x01\x03\x04\x05\x01\x01\x01\x02\x02\x01\x01\x01\x03\x05\x05", // 𩅷
+ 0x29178: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x01\x05\x02\x05\x01\x02\x05\x01\x02\x01", // 𩅸
+ 0x29179: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x04\x01\x05\x02\x01\x03\x02\x05\x01\x01\x01", // 𩅹
+ 0x2917a: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩅺
+ 0x2917b: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x04\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 𩅻
+ 0x2917c: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 𩅼
+ 0x2917d: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x02\x01\x01\x03\x01\x01\x05\x03\x04", // 𩅽
+ 0x2917e: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x01\x05\x04\x01\x02\x02\x01\x01\x01\x03\x05\x05", // 𩅾
+ 0x2917f: "\x01\x04\x05\x02\x04\x01\x03\x04\x04\x04\x01\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 𩅿
+ 0x29180: "\x01\x04\x05\x02\x04\x01\x03\x04\x04\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𩆀
+ 0x29181: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𩆁
+ 0x29182: "\x01\x02\x05\x02\x04\x01\x03\x04\x04\x01\x03\x05\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𩆂
+ 0x29183: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x01\x03\x05\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𩆃
+ 0x29184: "\x01\x04\x05\x02\x04\x01\x03\x04\x04\x01\x05\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 𩆄
+ 0x29185: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x01\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𩆅
+ 0x29186: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x01\x01\x05\x01\x03\x02\x01\x02\x05", // 𩆆
+ 0x29187: "\x01\x04\x05\x02\x04\x01\x03\x04\x04\x01\x04\x03\x01\x03\x02\x01\x01\x05\x01\x01\x05", // 𩆇
+ 0x29188: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x04\x04\x03\x01\x03\x02\x01\x01\x05\x01\x01\x05", // 𩆈
+ 0x29189: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x01\x01\x04\x03\x03\x04\x01\x05\x03\x04", // 𩆉
+ 0x2918a: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02\x03\x05\x02\x05\x01\x03\x05", // 𩆊
+ 0x2918b: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x01\x03\x05\x04\x04\x03\x01\x01\x02\x05\x02", // 𩆋
+ 0x2918c: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x01\x03\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 𩆌
+ 0x2918d: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x04\x01\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02", // 𩆍
+ 0x2918e: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x04\x01\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01", // 𩆎
+ 0x2918f: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x02\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 𩆏
+ 0x29190: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x01\x02\x05\x02\x05\x01\x01\x03\x01\x02\x03\x04", // 𩆐
+ 0x29191: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x02\x05\x03\x05\x01\x01\x05\x04\x03\x05\x03\x05\x04", // 𩆑
+ 0x29192: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x03\x04\x01", // 𩆒
+ 0x29193: "\x01\x04\x05\x02\x04\x01\x03\x04\x04\x04\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 𩆓
+ 0x29194: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04\x01\x02\x01", // 𩆔
+ 0x29195: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x01\x03\x02\x02\x02", // 𩆕
+ 0x29196: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x03\x04\x01\x05\x04", // 𩆖
+ 0x29197: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01", // 𩆗
+ 0x29198: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x02\x05\x01\x02\x02\x05\x03\x01\x01\x02\x05\x02\x01", // 𩆘
+ 0x29199: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x05\x02\x02\x01\x01\x03\x04\x01\x05\x05\x04", // 𩆙
+ 0x2919a: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02", // 𩆚
+ 0x2919b: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x02\x05\x03\x05\x01\x01\x02\x01\x01\x05\x05\x04", // 𩆛
+ 0x2919c: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x01\x04", // 𩆜
+ 0x2919d: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x04\x05\x04\x04", // 𩆝
+ 0x2919e: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 𩆞
+ 0x2919f: "\x03\x05\x02\x05\x01\x03\x05\x04\x01\x04\x05\x02\x04\x01\x03\x04\x01\x03\x02\x05\x02\x02", // 𩆟
+ 0x291a0: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x02\x02\x05\x02\x02\x01\x04\x05\x03\x05\x04", // 𩆠
+ 0x291a1: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x05\x04\x04\x03\x01\x01\x02\x05\x02\x04\x05\x04", // 𩆡
+ 0x291a2: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 𩆢
+ 0x291a3: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02\x01\x03\x04\x01\x05\x05\x04", // 𩆣
+ 0x291a4: "\x01\x04\x05\x02\x04\x01\x03\x04\x04\x04\x01\x01\x02\x03\x05\x01\x02\x03\x05\x03\x05\x04\x01", // 𩆤
+ 0x291a5: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04\x05\x01\x01\x03\x01\x03\x04", // 𩆥
+ 0x291a6: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x01\x05\x04\x01\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01", // 𩆦
+ 0x291a7: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 𩆧
+ 0x291a8: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x04\x01\x01\x01\x02", // 𩆨
+ 0x291a9: "\x01\x04\x05\x02\x04\x01\x03\x04\x04\x04\x01\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x04", // 𩆩
+ 0x291aa: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x02\x02\x05\x02\x02\x01\x01\x03\x04\x05\x03\x04", // 𩆪
+ 0x291ab: "\x01\x04\x05\x02\x04\x01\x03\x04\x05\x04\x05\x04\x02\x05\x01\x02\x01\x02\x01\x05\x02\x05\x01", // 𩆫
+ 0x291ac: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x02\x04\x03\x01\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 𩆬
+ 0x291ad: "\x01\x04\x05\x02\x04\x01\x03\x04\x04\x04\x01\x02\x05\x01\x01\x02\x02\x01\x01\x01\x01\x05\x03\x04", // 𩆭
+ 0x291ae: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x01\x03\x04\x04\x02\x05\x01\x02\x05\x01", // 𩆮
+ 0x291af: "\x01\x04\x05\x02\x04\x01\x03\x04\x04\x04\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 𩆯
+ 0x291b0: "\x01\x04\x05\x02\x04\x01\x03\x04\x05\x02\x04\x03\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 𩆰
+ 0x291b1: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x01\x05\x03\x01\x05\x03\x05\x01\x02\x03\x04\x01\x02\x03\x04", // 𩆱
+ 0x291b2: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x03\x05\x03\x03", // 𩆲
+ 0x291b3: "\x01\x04\x05\x02\x04\x01\x03\x04\x04\x05\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩆳
+ 0x291b4: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 𩆴
+ 0x291b5: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x01\x01\x01\x02", // 𩆵
+ 0x291b6: "\x01\x04\x05\x02\x04\x01\x03\x04\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 𩆶
+ 0x291b7: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x04\x03\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 𩆷
+ 0x291b8: "\x01\x04\x05\x02\x04\x01\x03\x04\x04\x04\x01\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩆸
+ 0x291b9: "\x01\x04\x05\x02\x04\x04\x04\x04\x05\x04\x02\x05\x01\x01\x01\x03\x04\x05\x01\x03\x02\x01\x02\x05", // 𩆹
+ 0x291ba: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x03\x04\x01\x02\x05\x01\x02", // 𩆺
+ 0x291bb: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x03\x01\x02\x03\x04\x01", // 𩆻
+ 0x291bc: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x04\x04\x01\x03\x04\x04\x05\x04", // 𩆼
+ 0x291bd: "\x01\x04\x05\x02\x04\x01\x03\x04\x04\x04\x02\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x03\x05\x04", // 𩆽
+ 0x291be: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x01\x05\x03\x01\x05\x03\x02\x04\x01\x01\x01\x02\x01\x01\x01\x05", // 𩆾
+ 0x291bf: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𩆿
+ 0x291c0: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x02\x01\x01\x02\x05\x03\x04\x05\x01\x01\x01\x03\x01\x01\x05\x03\x04", // 𩇀
+ 0x291c1: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x01\x03\x04\x03\x02\x02\x05\x01\x02\x01\x03\x04\x03\x02", // 𩇁
+ 0x291c2: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04\x05\x01\x03\x02\x01\x02\x05", // 𩇂
+ 0x291c3: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05\x01\x05\x05\x01\x05\x05\x01\x05", // 𩇃
+ 0x291c4: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 𩇄
+ 0x291c5: "\x01\x04\x05\x02\x04\x04\x04\x04\x04\x01\x01\x01\x02\x05\x01\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 𩇅
+ 0x291c6: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x01\x04\x01\x02\x05\x02\x05\x01\x01\x03\x01\x02\x03\x04", // 𩇆
+ 0x291c7: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x02\x01\x03\x03\x05\x01\x02\x01\x03\x01\x05\x01\x02\x01\x03\x03\x05", // 𩇇
+ 0x291c8: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𩇈
+ 0x291c9: "\x01\x04\x05\x02\x04\x01\x03\x04\x04\x04\x05\x01\x01\x02\x01\x03\x01\x01\x02\x05\x02\x02\x05\x01\x01\x01\x03\x04", // 𩇉
+ 0x291ca: "\x01\x04\x05\x02\x04\x01\x03\x04\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x01\x05\x02\x01\x02\x05\x01\x05\x02\x01\x05", // 𩇊
+ 0x291cb: "\x01\x04\x05\x02\x04\x01\x03\x04\x04\x04\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01", // 𩇋
+ 0x291cc: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x02\x05\x02\x04\x01\x03\x04\x01\x02\x05\x02\x04\x01\x03\x04\x03\x05\x05\x01\x05", // 𩇌
+ 0x291cd: "\x01\x04\x05\x02\x04\x04\x04\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 𩇍
+ 0x291ce: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x03\x04\x02\x05\x01\x02\x05\x01\x01\x02\x01", // 𩇎
+ 0x291cf: "\x01\x04\x05\x02\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x03\x04\x03\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 𩇏
+ 0x291d0: "\x01\x04\x05\x02\x04\x04\x04\x04\x03\x03\x02\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x01\x01\x02", // 𩇐
+ 0x291d1: "\x01\x04\x05\x02\x04\x01\x03\x04\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x05\x02\x02\x02\x05\x01\x05\x02\x01\x05", // 𩇑
+ 0x291d2: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x01\x05\x04\x03\x04\x03\x04\x03\x04\x03\x04\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x04\x03\x03\x04\x04\x03\x03\x04", // 𩇒
+ 0x291d3: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x02\x05\x01\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01", // 𩇓
+ 0x291d4: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x01\x05\x04\x01\x04\x05\x02\x04\x01\x03\x04\x01\x01\x05\x04\x01\x04\x05\x02\x04\x01\x03\x04\x01\x01\x05\x04", // 𩇔
+ 0x291d5: "\x01\x01\x02\x01\x03\x05\x01\x01\x03\x03\x03", // 𩇕
+ 0x291d6: "\x01\x01\x03\x05\x01\x01\x02\x01\x02\x05\x01\x01", // 𩇖
+ 0x291d7: "\x01\x01\x02\x01\x03\x05\x01\x01\x01\x05\x03\x05", // 𩇗
+ 0x291d8: "\x01\x02\x01\x05\x04\x01\x01\x02\x01\x03\x05\x01\x01", // 𩇘
+ 0x291d9: "\x01\x01\x02\x01\x03\x05\x01\x01\x03\x04\x01\x05\x04", // 𩇙
+ 0x291da: "\x01\x01\x02\x01\x03\x05\x01\x01\x05\x04\x02\x05\x01", // 𩇚
+ 0x291db: "\x03\x01\x01\x02\x01\x01\x01\x02\x01\x03\x05\x01\x01", // 𩇛
+ 0x291dc: "\x01\x01\x02\x01\x03\x05\x01\x01\x03\x01\x02\x01\x03\x05", // 𩇜
+ 0x291dd: "\x04\x01\x01\x01\x02\x01\x03\x05\x01\x01\x03\x05\x05\x02\x01\x05", // 𩇝
+ 0x291de: "\x01\x01\x02\x01\x03\x05\x01\x01\x01\x01\x03\x05\x04\x04\x04\x04", // 𩇞
+ 0x291df: "\x04\x01\x01\x01\x02\x01\x03\x05\x01\x01\x02\x05\x01\x01\x01\x03\x05", // 𩇟
+ 0x291e0: "\x01\x01\x02\x01\x03\x05\x01\x01\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 𩇠
+ 0x291e1: "\x01\x01\x02\x01\x03\x05\x01\x01\x01\x02\x01\x02\x04\x01\x04\x03\x01\x01\x02", // 𩇡
+ 0x291e2: "\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04\x03\x04\x05\x02\x05\x01\x03\x01\x01\x02", // 𩇢
+ 0x291e3: "\x01\x01\x02\x01\x03\x05\x01\x01\x01\x01\x02\x01\x01\x01\x02\x01\x04\x05\x04\x03\x04", // 𩇣
+ 0x291e4: "\x01\x01\x02\x01\x03\x05\x01\x01\x04\x01\x05\x02\x05\x01\x03\x05\x01\x01\x05\x03\x01\x03\x05\x04", // 𩇤
+ 0x291e5: "\x01\x01\x02\x01\x02\x05\x01\x01\x01\x02\x02\x03\x04\x03\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𩇥
+ 0x291e6: "\x03\x01\x01\x01\x01\x02\x01\x01\x01\x01", // 𩇦
+ 0x291e7: "\x02\x01\x01\x04\x01\x02\x05\x01", // 𩇧
+ 0x291e8: "\x03\x04\x01\x04\x01\x02\x03\x04\x03\x04", // 𩇨
+ 0x291e9: "\x01\x03\x04\x03\x01\x01\x01\x02\x01\x01\x01", // 𩇩
+ 0x291ea: "\x03\x01\x01\x01\x02\x01\x01\x01\x02\x05\x02", // 𩇪
+ 0x291eb: "\x03\x01\x01\x01\x02\x01\x01\x01\x05\x02\x01", // 𩇫
+ 0x291ec: "\x03\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01", // 𩇬
+ 0x291ed: "\x03\x01\x01\x01\x02\x01\x01\x01\x04\x03\x03\x04", // 𩇭
+ 0x291ee: "\x03\x01\x01\x01\x02\x01\x01\x01\x03\x01\x01\x05", // 𩇮
+ 0x291ef: "\x03\x01\x01\x01\x02\x01\x01\x01\x05\x02\x01\x05", // 𩇯
+ 0x291f0: "\x04\x01\x03\x01\x01\x01\x02\x01\x01\x01\x03\x04", // 𩇰
+ 0x291f1: "\x03\x01\x01\x01\x02\x01\x01\x01\x01\x02\x05\x02", // 𩇱
+ 0x291f2: "\x03\x01\x01\x01\x02\x01\x01\x01\x01\x01\x03\x05", // 𩇲
+ 0x291f3: "\x01\x01\x03\x05\x03\x01\x01\x01\x02\x01\x01\x01", // 𩇳
+ 0x291f4: "\x02\x01\x01\x01\x02\x01\x01\x01\x03\x04\x05\x03", // 𩇴
+ 0x291f5: "\x03\x01\x01\x01\x02\x01\x01\x01\x01\x02\x02\x05\x01", // 𩇵
+ 0x291f6: "\x01\x02\x03\x04\x01\x03\x01\x01\x01\x02\x01\x01\x01", // 𩇶
+ 0x291f7: "\x03\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x02\x05\x01", // 𩇷
+ 0x291f8: "\x03\x01\x01\x01\x02\x01\x01\x01\x03\x01\x02\x01\x02\x05\x01", // 𩇸
+ 0x291f9: "\x03\x01\x01\x01\x02\x01\x01\x01\x01\x02\x05\x01\x02\x03\x04", // 𩇹
+ 0x291fa: "\x01\x01\x03\x04\x02\x05\x01\x03\x01\x01\x01\x02\x01\x01\x01", // 𩇺
+ 0x291fb: "\x02\x01\x01\x01\x02\x01\x01\x01\x05\x03\x04\x04\x05\x04\x04", // 𩇻
+ 0x291fc: "\x03\x01\x01\x01\x02\x01\x01\x01\x01\x03\x04\x02\x05\x01\x02\x01", // 𩇼
+ 0x291fd: "\x01\x02\x05\x03\x04\x01\x02\x05\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01", // 𩇽
+ 0x291fe: "\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x03\x01\x01\x01\x02\x01\x01\x01", // 𩇾
+ 0x291ff: "\x05\x02\x03\x05\x02\x02\x03\x04\x03\x01\x01\x01\x02\x01\x01\x01\x04\x01\x03\x04", // 𩇿
+ 0x29200: "\x02\x01\x01\x01\x02\x01\x01\x01\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 𩈀
+ 0x29201: "\x05\x02\x04\x03\x01\x03\x05\x03\x03\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01", // 𩈁
+ 0x29202: "\x02\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x02\x01\x04\x02\x01\x01\x01\x02\x01\x01\x01\x04\x05\x04\x04", // 𩈂
+ 0x29203: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x01\x02\x04", // 𩈃
+ 0x29204: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x05\x03\x04", // 𩈄
+ 0x29205: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x01\x01\x02", // 𩈅
+ 0x29206: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x05\x02\x01\x05", // 𩈆
+ 0x29207: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x05\x02\x01\x01", // 𩈇
+ 0x29208: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x03\x01\x01\x02", // 𩈈
+ 0x29209: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x04\x05\x03\x05", // 𩈉
+ 0x2920a: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x01\x03\x05\x04", // 𩈊
+ 0x2920b: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x03\x04\x03\x02", // 𩈋
+ 0x2920c: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x04\x05\x03\x05", // 𩈌
+ 0x2920d: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x02\x05\x01\x01\x01", // 𩈍
+ 0x2920e: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x01\x02\x01\x01\x05", // 𩈎
+ 0x2920f: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x05\x05\x04\x05\x03", // 𩈏
+ 0x29210: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x01\x01\x02\x03\x04", // 𩈐
+ 0x29211: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x05\x01\x03\x05\x04", // 𩈑
+ 0x29212: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x03\x01\x02\x03\x04", // 𩈒
+ 0x29213: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x01\x03\x02\x04\x01", // 𩈓
+ 0x29214: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x01\x02\x05\x01\x02", // 𩈔
+ 0x29215: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x03\x03\x05\x04\x04", // 𩈕
+ 0x29216: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x03\x04\x01\x05\x04", // 𩈖
+ 0x29217: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x04\x05\x05\x03\x04", // 𩈗
+ 0x29218: "\x01\x01\x02\x03\x04\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 𩈘
+ 0x29219: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x03\x01\x02\x02\x05\x01", // 𩈙
+ 0x2921a: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x04\x03\x01\x01\x03\x02", // 𩈚
+ 0x2921b: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x03\x03\x03\x05\x03\x04", // 𩈛
+ 0x2921c: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x03\x02\x05\x01\x05\x01", // 𩈜
+ 0x2921d: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x05\x02\x01\x03\x05\x04", // 𩈝
+ 0x2921e: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x02\x05\x01\x05\x03\x04", // 𩈞
+ 0x2921f: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x05\x01\x01\x05\x01\x01", // 𩈟
+ 0x29220: "\x03\x02\x05\x01\x03\x05\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 𩈠
+ 0x29221: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x01\x05\x05\x05\x01\x02\x01", // 𩈡
+ 0x29222: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x05\x03\x04\x04\x05\x04\x04", // 𩈢
+ 0x29223: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x03\x04\x01\x05\x02\x05\x01", // 𩈣
+ 0x29224: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x02\x05\x01\x02\x01\x03\x04", // 𩈤
+ 0x29225: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x05\x04\x03\x05\x03\x05\x04", // 𩈥
+ 0x29226: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x03\x05\x02\x05\x01\x03\x05", // 𩈦
+ 0x29227: "\x01\x03\x04\x03\x04\x03\x04\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 𩈧
+ 0x29228: "\x01\x02\x05\x01\x01\x02\x04\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 𩈨
+ 0x29229: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x05\x01\x01\x03\x05\x02", // 𩈩
+ 0x2922a: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x05\x02\x01\x03\x01\x02\x01", // 𩈪
+ 0x2922b: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x01\x03\x04\x01\x01\x02\x03\x04", // 𩈫
+ 0x2922c: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x04\x04\x05\x02\x05\x01\x05\x01", // 𩈬
+ 0x2922d: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x04\x04\x05\x02\x05\x01\x01\x01", // 𩈭
+ 0x2922e: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x03\x05\x01\x02\x01\x02\x05\x01", // 𩈮
+ 0x2922f: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x01\x03\x04\x02\x05\x01\x01\x05", // 𩈯
+ 0x29230: "\x04\x04\x05\x04\x05\x04\x03\x04\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 𩈰
+ 0x29231: "\x04\x04\x05\x03\x05\x04\x05\x05\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 𩈱
+ 0x29232: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 𩈲
+ 0x29233: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 𩈳
+ 0x29234: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 𩈴
+ 0x29235: "\x01\x02\x05\x01\x02\x05\x03\x01\x01\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 𩈵
+ 0x29236: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 𩈶
+ 0x29237: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x01\x02\x02\x01\x03\x04\x05\x01\x05", // 𩈷
+ 0x29238: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x03\x02\x05\x01\x01\x01\x01\x03\x04\x04", // 𩈸
+ 0x29239: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x04\x05\x02\x05\x01\x01\x04\x01\x03\x04", // 𩈹
+ 0x2923a: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x03\x02\x05\x01\x01\x05\x04\x04\x04\x04", // 𩈺
+ 0x2923b: "\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 𩈻
+ 0x2923c: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 𩈼
+ 0x2923d: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x05\x04\x05\x04\x05\x04\x05\x04\x05\x03\x01", // 𩈽
+ 0x2923e: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x03\x04\x03\x04\x03\x04\x03\x04\x05\x03\x01", // 𩈾
+ 0x2923f: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x01\x02\x02\x01\x03\x04\x02\x05\x01\x01\x05", // 𩈿
+ 0x29240: "\x04\x04\x01\x04\x03\x03\x04\x04\x03\x03\x04\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 𩉀
+ 0x29241: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 𩉁
+ 0x29242: "\x02\x05\x01\x01\x03\x05\x04\x01\x01\x03\x04\x04\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 𩉂
+ 0x29243: "\x03\x04\x04\x03\x02\x05\x02\x02\x01\x01\x02\x04\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 𩉃
+ 0x29244: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x03\x05\x04\x01\x01\x03\x04\x04\x04\x04\x04\x04", // 𩉄
+ 0x29245: "\x04\x03\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 𩉅
+ 0x29246: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x05\x03\x01\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 𩉆
+ 0x29247: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x02\x05\x01\x01\x03\x05\x04\x01\x01\x03\x04\x04", // 𩉇
+ 0x29248: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x04\x03\x03\x04", // 𩉈
+ 0x29249: "\x02\x05\x01\x01\x01\x03\x02\x05\x02\x02\x01\x01\x01\x03\x05\x03\x02\x01\x05\x01\x01", // 𩉉
+ 0x2924a: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 𩉊
+ 0x2924b: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x04\x03\x01\x05\x05\x04\x05\x05\x04\x04\x05\x04\x04", // 𩉋
+ 0x2924c: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x04\x01\x03\x01\x02\x03\x02\x01\x02\x03\x05\x05\x05\x04", // 𩉌
+ 0x2924d: "\x04\x04\x01\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 𩉍
+ 0x2924e: "\x02\x05\x01\x01\x01\x03\x03\x05\x01\x01\x01\x03\x04\x04\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 𩉎
+ 0x2924f: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x03\x05\x03\x01\x01\x03\x04\x05\x04\x05\x02\x01\x03\x04", // 𩉏
+ 0x29250: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x04\x04\x05\x03\x05\x04\x04\x05\x04\x01\x01\x02\x03\x04", // 𩉐
+ 0x29251: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x04\x01\x03\x01\x02\x03\x02\x01\x02\x03\x05\x03\x01\x01\x02", // 𩉑
+ 0x29252: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02\x04\x05\x04\x04", // 𩉒
+ 0x29253: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x03\x02\x01\x05\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𩉓
+ 0x29254: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x03\x04\x03\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 𩉔
+ 0x29255: "\x04\x03\x01\x03\x02\x05\x01\x01\x01\x01\x02\x05\x01\x01\x05\x03\x04\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 𩉕
+ 0x29256: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x01\x03\x02\x05\x02\x02\x01\x01\x01\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 𩉖
+ 0x29257: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩉗
+ 0x29258: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 𩉘
+ 0x29259: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𩉙
+ 0x2925a: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01", // 𩉚
+ 0x2925b: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x03", // 𩉛
+ 0x2925c: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05", // 𩉜
+ 0x2925d: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x04", // 𩉝
+ 0x2925e: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x01\x05", // 𩉞
+ 0x2925f: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x01\x05", // 𩉟
+ 0x29260: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x03\x04", // 𩉠
+ 0x29261: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x04\x03\x02", // 𩉡
+ 0x29262: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x03\x04", // 𩉢
+ 0x29263: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x05\x05", // 𩉣
+ 0x29264: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x04\x03\x04", // 𩉤
+ 0x29265: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x01\x01\x03", // 𩉥
+ 0x29266: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x03\x05\x04", // 𩉦
+ 0x29267: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x01\x01\x02", // 𩉧
+ 0x29268: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x05\x04", // 𩉨
+ 0x29269: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x01\x03\x04", // 𩉩
+ 0x2926a: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x01\x01\x05", // 𩉪
+ 0x2926b: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x05\x01\x05", // 𩉫
+ 0x2926c: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x01\x05", // 𩉬
+ 0x2926d: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x04\x05\x04", // 𩉭
+ 0x2926e: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x01\x02\x01", // 𩉮
+ 0x2926f: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x01\x03\x05", // 𩉯
+ 0x29270: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x05\x02", // 𩉰
+ 0x29271: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x05\x05\x01", // 𩉱
+ 0x29272: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x01\x05\x04", // 𩉲
+ 0x29273: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x01\x03\x05", // 𩉳
+ 0x29274: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x03\x05\x05", // 𩉴
+ 0x29275: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x04\x05\x03", // 𩉵
+ 0x29276: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x03\x04\x01", // 𩉶
+ 0x29277: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x05\x04\x05", // 𩉷
+ 0x29278: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x05\x01\x05", // 𩉸
+ 0x29279: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x01\x03\x01\x05", // 𩉹
+ 0x2927a: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x04\x05\x03\x05", // 𩉺
+ 0x2927b: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x01\x05\x02\x05", // 𩉻
+ 0x2927c: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x02", // 𩉼
+ 0x2927d: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x01\x05\x03\x02", // 𩉽
+ 0x2927e: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x02", // 𩉾
+ 0x2927f: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x02\x05\x01", // 𩉿
+ 0x29280: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x02\x05\x01\x01", // 𩊀
+ 0x29281: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x04\x05\x05", // 𩊁
+ 0x29282: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x04\x01\x05\x04", // 𩊂
+ 0x29283: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x04\x02\x04", // 𩊃
+ 0x29284: "\x02\x05\x01\x02\x01\x01\x02\x02\x01\x02\x05\x01\x01\x02", // 𩊄
+ 0x29285: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x03\x05\x02", // 𩊅
+ 0x29286: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x05\x01\x02", // 𩊆
+ 0x29287: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x01\x02\x01\x04", // 𩊇
+ 0x29288: "\x01\x02\x02\x01\x05\x01\x02\x02\x01\x02\x05\x01\x01\x02", // 𩊈
+ 0x29289: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x02\x05\x01", // 𩊉
+ 0x2928a: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x03\x05\x04\x04", // 𩊊
+ 0x2928b: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x05\x01\x05", // 𩊋
+ 0x2928c: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x01\x04\x03\x01", // 𩊌
+ 0x2928d: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x05\x05\x03\x04", // 𩊍
+ 0x2928e: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x01\x05\x05\x02", // 𩊎
+ 0x2928f: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x03\x02\x05\x01", // 𩊏
+ 0x29290: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x02\x01\x01\x01", // 𩊐
+ 0x29291: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x03\x01\x01\x01\x02", // 𩊑
+ 0x29292: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x05\x03", // 𩊒
+ 0x29293: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x03\x04\x01\x01\x05", // 𩊓
+ 0x29294: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x01\x03\x04\x03\x04", // 𩊔
+ 0x29295: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x01\x05\x02", // 𩊕
+ 0x29296: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x03\x01\x01\x03\x02", // 𩊖
+ 0x29297: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x02\x05\x01", // 𩊗
+ 0x29298: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 𩊘
+ 0x29299: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x02\x01\x03\x04\x04", // 𩊙
+ 0x2929a: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x04\x02\x05\x01", // 𩊚
+ 0x2929b: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x01\x03\x05\x05", // 𩊛
+ 0x2929c: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x01\x02\x03\x04", // 𩊜
+ 0x2929d: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x05\x02\x05\x01\x01", // 𩊝
+ 0x2929e: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x05\x04\x01\x02\x01", // 𩊞
+ 0x2929f: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x02\x02\x05\x02", // 𩊟
+ 0x292a0: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x04\x03\x01\x03\x05", // 𩊠
+ 0x292a1: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x03\x05\x04\x02\x02", // 𩊡
+ 0x292a2: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x03\x05\x04\x03\x05", // 𩊢
+ 0x292a3: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x01\x01\x02\x03\x04", // 𩊣
+ 0x292a4: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x01\x03\x05\x04\x04", // 𩊤
+ 0x292a5: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x04\x03\x05\x04", // 𩊥
+ 0x292a6: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x04\x05\x01\x02\x04", // 𩊦
+ 0x292a7: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x01\x03\x02\x05\x02", // 𩊧
+ 0x292a8: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x02\x05\x03\x04\x01", // 𩊨
+ 0x292a9: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x04\x01\x01\x01\x02", // 𩊩
+ 0x292aa: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x05\x01\x04\x03\x01", // 𩊪
+ 0x292ab: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x03\x04\x04\x05\x04\x04", // 𩊫
+ 0x292ac: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04", // 𩊬
+ 0x292ad: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x04\x02\x05\x01\x03\x05", // 𩊭
+ 0x292ae: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x04\x01\x02\x03\x04\x03", // 𩊮
+ 0x292af: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x05\x01\x02\x03\x04", // 𩊯
+ 0x292b0: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x05\x01\x05\x01\x02\x01", // 𩊰
+ 0x292b1: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x01\x05\x05\x04\x01\x04", // 𩊱
+ 0x292b2: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x01\x02\x01\x01\x02\x01", // 𩊲
+ 0x292b3: "\x01\x02\x01\x05\x03\x01\x01\x01\x02\x02\x01\x02\x05\x01\x01\x02", // 𩊳
+ 0x292b4: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x01\x04\x05\x04\x04", // 𩊴
+ 0x292b5: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x03\x04\x02\x05\x01\x01", // 𩊵
+ 0x292b6: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x01\x02\x01\x02\x03\x03", // 𩊶
+ 0x292b7: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x01\x01\x05", // 𩊷
+ 0x292b8: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x02\x02\x01\x03\x05", // 𩊸
+ 0x292b9: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x02\x02\x05\x01\x01\x01", // 𩊹
+ 0x292ba: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x03\x05\x01\x01\x02", // 𩊺
+ 0x292bb: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x04\x03\x04\x03\x05\x04", // 𩊻
+ 0x292bc: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x05\x05\x01\x02\x05\x02", // 𩊼
+ 0x292bd: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x04\x01\x03\x02\x05\x02", // 𩊽
+ 0x292be: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x04\x02\x05\x01\x01\x02", // 𩊾
+ 0x292bf: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x02\x01\x02\x05\x01\x01", // 𩊿
+ 0x292c0: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x01\x02\x01\x02\x01\x03\x04", // 𩋀
+ 0x292c1: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x04\x05\x04\x05\x04\x05\x04", // 𩋁
+ 0x292c2: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x01\x01\x01\x02\x01\x01\x01", // 𩋂
+ 0x292c3: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x03\x01\x01\x02\x05\x02", // 𩋃
+ 0x292c4: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x02\x01\x01\x01\x05\x04", // 𩋄
+ 0x292c5: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x01\x03\x04\x02\x04\x04\x04", // 𩋅
+ 0x292c6: "\x01\x02\x05\x01\x02\x05\x05\x04\x01\x02\x02\x01\x02\x05\x01\x01\x02", // 𩋆
+ 0x292c7: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x03\x02\x05\x02\x03\x04", // 𩋇
+ 0x292c8: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x05\x05\x02\x05\x03\x04\x01", // 𩋈
+ 0x292c9: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x05\x01\x01\x05\x03\x04", // 𩋉
+ 0x292ca: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x03\x04\x02\x05\x01\x01\x05", // 𩋊
+ 0x292cb: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x05\x03\x04\x01\x05\x03\x04", // 𩋋
+ 0x292cc: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x03\x03", // 𩋌
+ 0x292cd: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x02\x03\x04\x01\x05\x03\x04", // 𩋍
+ 0x292ce: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x01\x03\x05\x02\x02\x05\x02", // 𩋎
+ 0x292cf: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x04\x01\x05\x04\x05\x04\x04", // 𩋏
+ 0x292d0: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x01\x02\x03\x05\x05\x04", // 𩋐
+ 0x292d1: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x01\x05\x04\x01\x02\x03\x04", // 𩋑
+ 0x292d2: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x01\x01\x03\x05\x01\x01", // 𩋒
+ 0x292d3: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x02\x01\x01\x05\x02\x01\x01", // 𩋓
+ 0x292d4: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x02\x01\x02\x01\x01\x02\x01", // 𩋔
+ 0x292d5: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x03\x04\x04\x03\x05\x01\x05", // 𩋕
+ 0x292d6: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x02\x03\x02\x03\x05", // 𩋖
+ 0x292d7: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04", // 𩋗
+ 0x292d8: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𩋘
+ 0x292d9: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x01\x02\x01\x02\x05\x01", // 𩋙
+ 0x292da: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x03\x03\x04\x05\x04\x04", // 𩋚
+ 0x292db: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x01\x03\x04\x01\x03\x05\x04", // 𩋛
+ 0x292dc: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x01\x03\x01\x02\x02\x05\x01", // 𩋜
+ 0x292dd: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x05\x05\x02\x05\x01\x02\x01", // 𩋝
+ 0x292de: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x02\x01\x01\x02\x03\x04", // 𩋞
+ 0x292df: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 𩋟
+ 0x292e0: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 𩋠
+ 0x292e1: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x04\x05\x01\x05\x04\x01\x02\x01", // 𩋡
+ 0x292e2: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x04\x05\x01\x02\x05\x01\x01\x01", // 𩋢
+ 0x292e3: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x01\x04\x03\x04\x05\x02\x05\x02", // 𩋣
+ 0x292e4: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x02\x01\x03\x05\x04\x01", // 𩋤
+ 0x292e5: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 𩋥
+ 0x292e6: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x02\x01\x01\x01\x03\x05\x05\x04", // 𩋦
+ 0x292e7: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x05\x01\x05\x03\x02\x05\x01\x01", // 𩋧
+ 0x292e8: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 𩋨
+ 0x292e9: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x05\x04\x01\x02\x01\x03\x01\x03\x04", // 𩋩
+ 0x292ea: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x01\x02\x05\x01\x03\x01\x05", // 𩋪
+ 0x292eb: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x04\x04\x03\x01\x01\x03\x05\x04", // 𩋫
+ 0x292ec: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 𩋬
+ 0x292ed: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x02\x05\x01\x03\x05\x05\x03", // 𩋭
+ 0x292ee: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x01\x01\x02\x01\x01\x02\x04", // 𩋮
+ 0x292ef: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x04\x05\x02\x03\x05\x03\x05\x04", // 𩋯
+ 0x292f0: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x05\x04\x04\x04\x04\x01\x02\x04", // 𩋰
+ 0x292f1: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x04\x01\x02\x05\x01\x01\x01\x02", // 𩋱
+ 0x292f2: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x05\x01\x05", // 𩋲
+ 0x292f3: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x03\x01\x03\x05\x01\x01\x02\x02", // 𩋳
+ 0x292f4: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x02\x05\x01\x03\x01\x01\x03\x04", // 𩋴
+ 0x292f5: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x01\x03\x02\x05\x01\x01", // 𩋵
+ 0x292f6: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x03\x04\x03\x05\x03\x05\x02", // 𩋶
+ 0x292f7: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x05\x01\x02\x03\x04\x02\x02", // 𩋷
+ 0x292f8: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x05\x03\x04\x02\x01\x05\x04", // 𩋸
+ 0x292f9: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x05\x03\x04\x04\x03\x03\x04", // 𩋹
+ 0x292fa: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x03\x01\x02\x01\x02\x05\x01", // 𩋺
+ 0x292fb: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x01\x02\x05\x01\x02\x05\x01\x01", // 𩋻
+ 0x292fc: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x03\x01\x01\x02\x01\x01\x03\x04", // 𩋼
+ 0x292fd: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x04\x05\x03\x05\x04\x02\x05\x01", // 𩋽
+ 0x292fe: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 𩋾
+ 0x292ff: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x02\x01\x03\x02\x05\x01\x01\x01", // 𩋿
+ 0x29300: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x03\x02\x05\x04\x02\x05\x01\x01", // 𩌀
+ 0x29301: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x05\x01\x03\x05\x03\x03\x03\x04", // 𩌁
+ 0x29302: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x02\x05\x04\x02\x05\x01", // 𩌂
+ 0x29303: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 𩌃
+ 0x29304: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03", // 𩌄
+ 0x29305: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x02\x01\x01\x05\x01\x01\x02\x05\x04", // 𩌅
+ 0x29306: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x04\x03\x02\x05\x01\x01\x01\x03\x04", // 𩌆
+ 0x29307: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 𩌇
+ 0x29308: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x04\x05\x05\x05\x04\x02\x03\x04", // 𩌈
+ 0x29309: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x01\x01\x03\x04\x02\x04\x01\x03\x04", // 𩌉
+ 0x2930a: "\x01\x02\x01\x04\x05\x01\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x05\x04", // 𩌊
+ 0x2930b: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x05\x05\x02\x05\x01\x05\x02\x01\x05", // 𩌋
+ 0x2930c: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𩌌
+ 0x2930d: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 𩌍
+ 0x2930e: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x02\x03\x05\x04\x02\x05\x01\x02\x01", // 𩌎
+ 0x2930f: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 𩌏
+ 0x29310: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x02\x02\x01\x02\x04\x01\x03\x04", // 𩌐
+ 0x29311: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x05\x03\x05\x02\x05\x01\x03\x05\x04", // 𩌑
+ 0x29312: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x04\x01\x02\x05\x01\x03\x05\x01\x01", // 𩌒
+ 0x29313: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x03\x02\x05\x04\x02\x01\x02\x05\x01", // 𩌓
+ 0x29314: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x02\x02\x01\x02\x03\x04\x03\x04", // 𩌔
+ 0x29315: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x05\x02\x02\x01\x03\x04\x05\x05", // 𩌕
+ 0x29316: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x02\x02\x05\x01\x03\x01\x01\x03\x04", // 𩌖
+ 0x29317: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x02\x05\x01\x01\x05\x04\x04\x04\x04", // 𩌗
+ 0x29318: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x01\x01\x03\x04\x03\x01\x02\x03\x04", // 𩌘
+ 0x29319: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 𩌙
+ 0x2931a: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x03\x02\x05\x01\x02\x05\x02\x05\x01", // 𩌚
+ 0x2931b: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x03\x03\x02\x05\x01\x01\x03\x01\x02", // 𩌛
+ 0x2931c: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x02\x02\x03\x05\x04\x01\x02\x03\x04", // 𩌜
+ 0x2931d: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x02\x05\x01\x05\x01\x04\x05\x04", // 𩌝
+ 0x2931e: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01\x01", // 𩌞
+ 0x2931f: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x02\x05\x03\x04\x01\x05\x03\x05", // 𩌟
+ 0x29320: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x03\x04\x05\x02\x03\x05\x04\x01", // 𩌠
+ 0x29321: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 𩌡
+ 0x29322: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01", // 𩌢
+ 0x29323: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x03\x01\x01\x02\x01\x04\x03\x03\x04", // 𩌣
+ 0x29324: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x03\x02\x05\x04\x01\x02\x02\x05\x01", // 𩌤
+ 0x29325: "\x01\x02\x01\x04\x05\x01\x03\x05\x05\x04\x01\x02\x02\x01\x02\x05\x01\x01\x02", // 𩌥
+ 0x29326: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x03\x02\x02\x01\x02\x01\x02\x01\x03\x04", // 𩌦
+ 0x29327: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x04", // 𩌧
+ 0x29328: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x01\x03\x05\x01\x01\x02\x05\x01\x01\x02", // 𩌨
+ 0x29329: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𩌩
+ 0x2932a: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𩌪
+ 0x2932b: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05", // 𩌫
+ 0x2932c: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02", // 𩌬
+ 0x2932d: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 𩌭
+ 0x2932e: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x02\x02\x05\x02\x01\x05\x04\x04\x04\x04", // 𩌮
+ 0x2932f: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x05\x02\x02\x01\x01\x05\x05\x04", // 𩌯
+ 0x29330: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 𩌰
+ 0x29331: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x05\x01\x02\x03\x04\x03\x05\x03\x04", // 𩌱
+ 0x29332: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x01\x05\x03\x01\x05\x03\x05\x04\x03\x05", // 𩌲
+ 0x29333: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x03\x03\x02\x01\x03\x04\x02\x01\x02\x01", // 𩌳
+ 0x29334: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x02\x01\x03\x05\x04\x05\x02\x05\x02", // 𩌴
+ 0x29335: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x02\x02\x05\x03", // 𩌵
+ 0x29336: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x05\x02\x02\x01\x03\x05\x01\x01\x02", // 𩌶
+ 0x29337: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x05\x02\x02\x01\x01\x03\x04\x05\x05", // 𩌷
+ 0x29338: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x02", // 𩌸
+ 0x29339: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 𩌹
+ 0x2933a: "\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01\x02", // 𩌺
+ 0x2933b: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x02\x01\x02\x05\x03\x04\x02\x01\x05\x04", // 𩌻
+ 0x2933c: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 𩌼
+ 0x2933d: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x04\x03\x01\x02\x03\x04\x03\x05\x04", // 𩌽
+ 0x2933e: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x01\x05\x02\x05\x01\x02\x05\x01\x02\x01\x04", // 𩌾
+ 0x2933f: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x03\x02\x05\x04\x03\x04\x01\x05\x03\x04", // 𩌿
+ 0x29340: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 𩍀
+ 0x29341: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x01\x02\x01\x03\x05\x02\x05\x01\x02\x01", // 𩍁
+ 0x29342: "\x05\x02\x03\x05\x03\x01\x01\x02\x05\x02\x01\x02\x02\x01\x02\x05\x01\x01\x02", // 𩍂
+ 0x29343: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𩍃
+ 0x29344: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x03\x02\x05\x02\x02\x01\x03\x02\x05\x02\x02", // 𩍄
+ 0x29345: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𩍅
+ 0x29346: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x02\x01\x05\x01\x01\x03\x05\x04\x04\x04\x04", // 𩍆
+ 0x29347: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04", // 𩍇
+ 0x29348: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x01\x04\x03\x01\x04\x03\x04\x01\x02\x05\x01", // 𩍈
+ 0x29349: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 𩍉
+ 0x2934a: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x05\x02\x02\x01\x01\x02\x03\x04\x03\x05", // 𩍊
+ 0x2934b: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x03\x05", // 𩍋
+ 0x2934c: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x02\x04", // 𩍌
+ 0x2934d: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 𩍍
+ 0x2934e: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x04\x04", // 𩍎
+ 0x2934f: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x04\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 𩍏
+ 0x29350: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 𩍐
+ 0x29351: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x04\x05\x04\x05\x04\x03\x04\x02\x04\x04\x04", // 𩍑
+ 0x29352: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x01\x05\x04\x03\x05\x04\x01\x03\x01\x03\x04", // 𩍒
+ 0x29353: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x01\x05\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 𩍓
+ 0x29354: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04", // 𩍔
+ 0x29355: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 𩍕
+ 0x29356: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 𩍖
+ 0x29357: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x02\x02\x01\x04\x01\x05\x03", // 𩍗
+ 0x29358: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x01\x02\x03\x05\x01\x02\x05\x01\x01\x02\x04", // 𩍘
+ 0x29359: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x03\x04\x03\x04\x01\x02\x05\x02\x05\x01\x01", // 𩍙
+ 0x2935a: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x03\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 𩍚
+ 0x2935b: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x01\x02\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 𩍛
+ 0x2935c: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 𩍜
+ 0x2935d: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x03\x05\x01\x01\x02\x05\x03\x03\x01\x01\x02", // 𩍝
+ 0x2935e: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x01\x03\x02\x04\x01\x03\x04\x05\x02\x02\x05\x02", // 𩍞
+ 0x2935f: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x04", // 𩍟
+ 0x29360: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x03\x04\x04\x03\x01\x01\x01\x02\x04\x05\x04", // 𩍠
+ 0x29361: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 𩍡
+ 0x29362: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x01", // 𩍢
+ 0x29363: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x02\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 𩍣
+ 0x29364: "\x01\x02\x01\x04\x05\x01\x02\x05\x01\x03\x05\x05\x04\x01\x02\x02\x01\x02\x05\x01\x01\x02", // 𩍤
+ 0x29365: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x04\x05\x02\x04\x01\x03\x04\x01\x03\x02\x05\x02\x02", // 𩍥
+ 0x29366: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𩍦
+ 0x29367: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x02\x01\x01\x01\x05\x04\x03\x02\x03\x04\x03\x04", // 𩍧
+ 0x29368: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x05", // 𩍨
+ 0x29369: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x02\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 𩍩
+ 0x2936a: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩍪
+ 0x2936b: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x04\x04\x03\x01\x02\x01\x03\x05\x05\x01\x05\x05\x04", // 𩍫
+ 0x2936c: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 𩍬
+ 0x2936d: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x01\x03\x04", // 𩍭
+ 0x2936e: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x01\x04\x03\x01\x04\x01\x02\x02\x01\x01\x01\x03\x04", // 𩍮
+ 0x2936f: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x01\x03\x04", // 𩍯
+ 0x29370: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x02\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 𩍰
+ 0x29371: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x04\x04\x03\x05\x02\x02\x05\x01\x02\x05\x01\x05\x04", // 𩍱
+ 0x29372: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x04\x04\x03\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𩍲
+ 0x29373: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x03\x04\x05\x01\x03\x02\x01\x02\x01\x03\x05\x03\x05\x04", // 𩍳
+ 0x29374: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𩍴
+ 0x29375: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x03\x01\x02\x03\x03\x01\x02\x02\x05\x01\x01\x01\x03\x04", // 𩍵
+ 0x29376: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x04\x04\x04\x04", // 𩍶
+ 0x29377: "\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01\x05\x01\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01\x02", // 𩍷
+ 0x29378: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x01\x02\x02\x01\x02\x05\x01\x01\x02", // 𩍸
+ 0x29379: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x04\x05\x03\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x04\x04", // 𩍹
+ 0x2937a: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x02\x05", // 𩍺
+ 0x2937b: "\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x02\x05\x01\x01\x01\x01\x02\x02\x01\x02\x05\x01\x01\x02", // 𩍻
+ 0x2937c: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 𩍼
+ 0x2937d: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x02\x02\x05\x02\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05", // 𩍽
+ 0x2937e: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x02\x01\x01\x05\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𩍾
+ 0x2937f: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x01\x02\x04\x04\x01\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 𩍿
+ 0x29380: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 𩎀
+ 0x29381: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x01\x02\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x01\x05", // 𩎁
+ 0x29382: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x04\x01\x03\x05\x05\x04\x04\x04\x04\x04", // 𩎂
+ 0x29383: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x01\x01\x01\x02\x05\x01\x04\x03\x03\x04\x04\x03\x03\x04\x05\x04", // 𩎃
+ 0x29384: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x01\x01\x05", // 𩎄
+ 0x29385: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x01\x02\x01\x02\x01\x03\x04", // 𩎅
+ 0x29386: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x01\x05\x05\x04\x01\x04\x03\x01\x03\x04\x05\x05\x04\x02\x03\x04", // 𩎆
+ 0x29387: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x05\x02\x02\x05\x02\x04\x01\x03\x05\x02\x02\x01\x01\x05\x04\x04\x04\x04", // 𩎇
+ 0x29388: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 𩎈
+ 0x29389: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x05\x04\x01\x02\x05\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05", // 𩎉
+ 0x2938a: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𩎊
+ 0x2938b: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x04\x04\x03\x02\x05\x02\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x03\x05\x04", // 𩎋
+ 0x2938c: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x04\x04\x04\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩎌
+ 0x2938d: "\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x04\x04\x04\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01\x02", // 𩎍
+ 0x2938e: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x05\x02\x03\x04\x01\x02\x05\x02\x03\x04\x01\x02\x05\x02\x03\x04\x01\x02\x05\x02\x03\x04", // 𩎎
+ 0x2938f: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x02\x05\x02\x05\x01\x01\x02\x02\x05\x01\x05\x02\x01\x05", // 𩎏
+ 0x29390: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x02\x01\x02\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩎐
+ 0x29391: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x04\x05\x01\x02\x03\x04\x01\x02\x03\x04\x01\x03\x04\x04\x03\x03\x04", // 𩎑
+ 0x29392: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x01\x02", // 𩎒
+ 0x29393: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x03\x04\x04", // 𩎓
+ 0x29394: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x03\x04\x03\x04", // 𩎔
+ 0x29395: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x03\x05\x04", // 𩎕
+ 0x29396: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x03\x04\x04\x05", // 𩎖
+ 0x29397: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x03\x05\x03\x04", // 𩎗
+ 0x29398: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x03\x05\x05\x01\x05", // 𩎘
+ 0x29399: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x05\x05\x03\x04", // 𩎙
+ 0x2939a: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x03\x03\x01\x02\x04", // 𩎚
+ 0x2939b: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x05\x01\x05\x03\x02", // 𩎛
+ 0x2939c: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x03\x02\x04\x01", // 𩎜
+ 0x2939d: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x03\x05\x04\x05\x05", // 𩎝
+ 0x2939e: "\x05\x04\x02\x05\x01\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 𩎞
+ 0x2939f: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x01\x02\x03\x04", // 𩎟
+ 0x293a0: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x03\x02\x01\x02\x04", // 𩎠
+ 0x293a1: "\x05\x01\x05\x03\x02\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 𩎡
+ 0x293a2: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x05\x02\x03\x05\x04", // 𩎢
+ 0x293a3: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x05\x03\x02\x05\x01", // 𩎣
+ 0x293a4: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x05\x01\x01\x05\x03\x04", // 𩎤
+ 0x293a5: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x02\x05\x01\x01\x05\x03", // 𩎥
+ 0x293a6: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x04\x01\x03\x04\x03\x04", // 𩎦
+ 0x293a7: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x03\x02\x01\x03\x04\x04", // 𩎧
+ 0x293a8: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x02\x05\x01\x01\x01", // 𩎨
+ 0x293a9: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x05\x05\x02\x03\x04", // 𩎩
+ 0x293aa: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x02\x05\x01\x03\x04\x01", // 𩎪
+ 0x293ab: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x03\x05\x01\x02\x03\x04", // 𩎫
+ 0x293ac: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x03\x05\x04\x02\x05\x01", // 𩎬
+ 0x293ad: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x04\x01\x03\x02\x03\x04", // 𩎭
+ 0x293ae: "\x04\x01\x03\x04\x05\x02\x01\x02\x05\x01\x01\x05\x02\x03\x04", // 𩎮
+ 0x293af: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x02\x05\x01\x02\x03\x04", // 𩎯
+ 0x293b0: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x03\x04\x02\x05\x01\x03\x05", // 𩎰
+ 0x293b1: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x03\x04\x03\x04\x03\x04", // 𩎱
+ 0x293b2: "\x01\x02\x01\x04\x05\x03\x05\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 𩎲
+ 0x293b3: "\x01\x03\x05\x04\x01\x05\x02\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 𩎳
+ 0x293b4: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x05\x01\x05\x02\x03\x04", // 𩎴
+ 0x293b5: "\x03\x02\x05\x01\x05\x03\x02\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 𩎵
+ 0x293b6: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x03\x03\x02\x03\x05\x05\x04", // 𩎶
+ 0x293b7: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x03\x05\x04\x04\x04\x04\x04", // 𩎷
+ 0x293b8: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x04\x03\x01\x01\x03\x04\x05\x05", // 𩎸
+ 0x293b9: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x02\x05\x01\x01\x05\x03\x04", // 𩎹
+ 0x293ba: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x04\x04\x05\x03\x05\x04\x05\x05", // 𩎺
+ 0x293bb: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x03\x01\x01\x01\x02\x01\x01\x01", // 𩎻
+ 0x293bc: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x05\x02\x04\x04\x05\x03\x05", // 𩎼
+ 0x293bd: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x02\x05\x03\x04\x02\x05\x01\x01", // 𩎽
+ 0x293be: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x04\x01\x03\x03\x05\x05\x01\x05", // 𩎾
+ 0x293bf: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x02\x05\x01\x01\x02\x05\x01\x01", // 𩎿
+ 0x293c0: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x05\x05\x05\x03\x02\x05\x03\x04\x01", // 𩏀
+ 0x293c1: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x01\x05\x04\x01\x02\x03\x04", // 𩏁
+ 0x293c2: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x03\x02\x05\x01\x01\x03\x01\x02", // 𩏂
+ 0x293c3: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x03\x03\x02\x05\x03\x02\x05\x04", // 𩏃
+ 0x293c4: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x03\x05\x04\x02\x05\x01\x02\x01", // 𩏄
+ 0x293c5: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x03\x04\x04\x03\x01\x01\x03\x05\x04", // 𩏅
+ 0x293c6: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x04\x04\x05\x01\x02\x05\x01\x01\x01", // 𩏆
+ 0x293c7: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x03\x02\x01\x01\x01\x03\x05\x05\x04", // 𩏇
+ 0x293c8: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x04\x01\x03\x05\x02\x05\x01\x03\x05", // 𩏈
+ 0x293c9: "\x04\x01\x02\x05\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x03\x05\x04", // 𩏉
+ 0x293ca: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x05\x02\x05\x01\x05\x04\x01", // 𩏊
+ 0x293cb: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x03\x03\x01\x02\x02\x05\x01\x01\x01", // 𩏋
+ 0x293cc: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 𩏌
+ 0x293cd: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x03\x04\x04\x03\x02\x02\x05\x01\x01", // 𩏍
+ 0x293ce: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x04\x01\x05\x04\x02\x05\x02\x01\x01", // 𩏎
+ 0x293cf: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x05\x01\x03\x05\x01\x03\x02\x03\x04", // 𩏏
+ 0x293d0: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩏐
+ 0x293d1: "\x01\x02\x02\x05\x01\x01\x01\x02\x03\x01\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 𩏑
+ 0x293d2: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x02\x01\x02\x03\x04\x01\x02\x05\x01", // 𩏒
+ 0x293d3: "\x04\x04\x05\x03\x01\x02\x01\x02\x05\x01\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 𩏓
+ 0x293d4: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x05\x05\x05\x02\x05\x01\x05\x02\x01\x05", // 𩏔
+ 0x293d5: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x02\x01\x02\x03\x05\x03\x05\x01\x01\x02", // 𩏕
+ 0x293d6: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x03\x04\x01\x02\x05\x01\x02\x03\x04", // 𩏖
+ 0x293d7: "\x04\x03\x01\x01\x03\x04\x03\x01\x01\x02\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 𩏗
+ 0x293d8: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𩏘
+ 0x293d9: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 𩏙
+ 0x293da: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x01", // 𩏚
+ 0x293db: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x03\x01\x01\x02\x05\x01\x02\x05\x02\x02\x01", // 𩏛
+ 0x293dc: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 𩏜
+ 0x293dd: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 𩏝
+ 0x293de: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 𩏞
+ 0x293df: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x02\x05\x01\x01\x05\x03\x04\x01\x02\x01", // 𩏟
+ 0x293e0: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 𩏠
+ 0x293e1: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𩏡
+ 0x293e2: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 𩏢
+ 0x293e3: "\x02\x01\x05\x03\x01\x05\x02\x02\x05\x02\x01\x01\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 𩏣
+ 0x293e4: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x03\x02\x05\x01\x01\x01\x01\x01\x01\x01\x01\x02", // 𩏤
+ 0x293e5: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 𩏥
+ 0x293e6: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x03\x05\x04\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩏦
+ 0x293e7: "\x01\x02\x02\x01\x01\x02\x02\x01\x01\x02\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 𩏧
+ 0x293e8: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x04\x01\x05\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 𩏨
+ 0x293e9: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 𩏩
+ 0x293ea: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 𩏪
+ 0x293eb: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x02\x03\x04\x03\x04\x01\x02\x05\x02\x05\x01\x01", // 𩏫
+ 0x293ec: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x01\x05", // 𩏬
+ 0x293ed: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x03\x04\x01\x01\x02\x04\x03\x01\x01\x02\x03\x04\x01", // 𩏭
+ 0x293ee: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x02\x01\x04\x05\x01\x03\x02\x05\x01\x01\x02\x03\x04", // 𩏮
+ 0x293ef: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x02\x01\x02\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 𩏯
+ 0x293f0: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x04\x04\x04\x04", // 𩏰
+ 0x293f1: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x05", // 𩏱
+ 0x293f2: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 𩏲
+ 0x293f3: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 𩏳
+ 0x293f4: "\x01\x02\x03\x04\x03\x01\x01\x02\x05\x02\x01\x02\x03\x04\x04\x05\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 𩏴
+ 0x293f5: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01\x02\x01\x02\x04\x04\x01\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 𩏵
+ 0x293f6: "\x04\x03\x01\x02\x03\x04\x05\x02\x01\x02\x05\x01\x01\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x04\x03\x03\x04", // 𩏶
+ 0x293f7: "\x04\x03\x01\x02\x03\x04\x05\x02\x01\x02\x05\x01\x01\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 𩏷
+ 0x293f8: "\x04\x03\x01\x02\x03\x04\x05\x02\x01\x02\x05\x01\x01\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 𩏸
+ 0x293f9: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 𩏹
+ 0x293fa: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𩏺
+ 0x293fb: "\x01\x02\x01\x04\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x05\x05\x04\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 𩏻
+ 0x293fc: "\x01\x01\x05\x02\x02\x05\x03\x04", // 𩏼
+ 0x293fd: "\x01\x01\x05\x02\x05\x04\x01\x01\x02", // 𩏽
+ 0x293fe: "\x01\x01\x05\x02\x05\x02\x03\x05\x04", // 𩏾
+ 0x293ff: "\x01\x01\x05\x02\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 𩏿
+ 0x29400: "\x01\x01\x05\x02\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 𩐀
+ 0x29401: "\x01\x03\x05\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𩐁
+ 0x29402: "\x05\x04\x05\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𩐂
+ 0x29403: "\x02\x01\x02\x05\x01\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𩐃
+ 0x29404: "\x01\x01\x03\x04\x02\x05\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𩐄
+ 0x29405: "\x03\x01\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01\x02\x01\x05\x04", // 𩐅
+ 0x29406: "\x01\x05\x02\x03\x03\x05\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𩐆
+ 0x29407: "\x02\x05\x03\x04\x03\x01\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𩐇
+ 0x29408: "\x03\x05\x02\x03\x03\x01\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𩐈
+ 0x29409: "\x02\x05\x01\x02\x01\x03\x05\x04\x05\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𩐉
+ 0x2940a: "\x01\x02\x05\x02\x01\x01\x03\x05\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𩐊
+ 0x2940b: "\x01\x02\x05\x01\x02\x03\x04\x03\x05\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𩐋
+ 0x2940c: "\x05\x02\x04\x03\x01\x03\x05\x03\x03\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𩐌
+ 0x2940d: "\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𩐍
+ 0x2940e: "\x01\x02\x05\x01\x02\x03\x04\x03\x01\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𩐎
+ 0x2940f: "\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𩐏
+ 0x29410: "\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x01\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𩐐
+ 0x29411: "\x01\x02\x05\x01\x01\x01\x02\x04\x01\x03\x05\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𩐑
+ 0x29412: "\x01\x02\x05\x01\x02\x03\x04\x04\x01\x03\x05\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𩐒
+ 0x29413: "\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x01\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𩐓
+ 0x29414: "\x01\x01\x02\x01\x01\x02\x02\x02\x05\x02\x02\x01\x05\x04\x05\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𩐔
+ 0x29415: "\x04\x01\x03\x01\x02\x05\x01\x02\x03\x04\x03\x05\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𩐕
+ 0x29416: "\x03\x01\x02\x03\x04\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𩐖
+ 0x29417: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 𩐗
+ 0x29418: "\x01\x01\x03\x05\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 𩐘
+ 0x29419: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x03\x01\x02", // 𩐙
+ 0x2941a: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05\x01\x05\x03\x02", // 𩐚
+ 0x2941b: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x05\x05\x04", // 𩐛
+ 0x2941c: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05\x05\x01\x05", // 𩐜
+ 0x2941d: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05\x02\x05\x01", // 𩐝
+ 0x2941e: "\x03\x05\x04\x03\x05\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 𩐞
+ 0x2941f: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x04\x01\x03\x04\x03\x04", // 𩐟
+ 0x29420: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x04", // 𩐠
+ 0x29421: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01\x02\x03\x04", // 𩐡
+ 0x29422: "\x03\x02\x05\x02\x05\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 𩐢
+ 0x29423: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x04\x03\x01\x03\x05", // 𩐣
+ 0x29424: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01", // 𩐤
+ 0x29425: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x04\x01\x02\x05\x01", // 𩐥
+ 0x29426: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05\x01\x05\x01\x03\x02", // 𩐦
+ 0x29427: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x04\x01\x05\x02\x05\x01", // 𩐧
+ 0x29428: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05\x04\x01\x05\x02", // 𩐨
+ 0x29429: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05\x01\x01\x03\x02\x05\x01", // 𩐩
+ 0x2942a: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x05\x01\x03\x05\x04\x01", // 𩐪
+ 0x2942b: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x05\x01\x02\x03\x04", // 𩐫
+ 0x2942c: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05\x04\x04\x03\x03\x04", // 𩐬
+ 0x2942d: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x04\x01\x05\x04\x05\x04\x04", // 𩐭
+ 0x2942e: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x05\x03\x01\x05\x01\x02", // 𩐮
+ 0x2942f: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01", // 𩐯
+ 0x29430: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x04\x04\x01\x05\x03\x03\x04", // 𩐰
+ 0x29431: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 𩐱
+ 0x29432: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 𩐲
+ 0x29433: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩐳
+ 0x29434: "\x04\x01\x02\x05\x01\x04\x05\x01\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 𩐴
+ 0x29435: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𩐵
+ 0x29436: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05\x01\x05\x04\x01\x01\x01\x02\x05\x01", // 𩐶
+ 0x29437: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x01\x02\x01\x02\x01\x02\x03\x04", // 𩐷
+ 0x29438: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x01\x01\x02\x01\x05\x05\x04\x01\x04", // 𩐸
+ 0x29439: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05\x04\x02\x05\x01\x01\x02\x04\x05\x04", // 𩐹
+ 0x2943a: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x01\x02\x01\x05\x05\x05\x01\x02\x01", // 𩐺
+ 0x2943b: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x04", // 𩐻
+ 0x2943c: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x04\x04\x05\x03\x02\x01\x03\x02\x05\x01\x01", // 𩐼
+ 0x2943d: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x05\x01\x03\x04\x03\x02\x01\x05\x01\x01", // 𩐽
+ 0x2943e: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05\x04\x01\x02\x03\x04\x01\x02\x05\x04", // 𩐾
+ 0x2943f: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x03\x04", // 𩐿
+ 0x29440: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 𩑀
+ 0x29441: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04", // 𩑁
+ 0x29442: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 𩑂
+ 0x29443: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x02\x03\x04", // 𩑃
+ 0x29444: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05\x02\x02\x01\x02\x01\x04\x03\x01\x01\x01\x02\x03\x04", // 𩑄
+ 0x29445: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05\x04\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𩑅
+ 0x29446: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x01", // 𩑆
+ 0x29447: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01\x05\x04\x05\x04\x05\x04\x05\x04", // 𩑇
+ 0x29448: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x04\x01\x03\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04", // 𩑈
+ 0x29449: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x04\x01\x05\x04\x05\x04\x04", // 𩑉
+ 0x2944a: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x03\x04\x01", // 𩑊
+ 0x2944b: "\x01\x03\x02\x05\x01\x01\x01\x03\x05", // 𩑋
+ 0x2944c: "\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩑌
+ 0x2944d: "\x01\x03\x02\x05\x01\x01\x01\x03\x04\x05\x05", // 𩑍
+ 0x2944e: "\x03\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩑎
+ 0x2944f: "\x03\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩑏
+ 0x29450: "\x03\x04\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩑐
+ 0x29451: "\x03\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩑑
+ 0x29452: "\x03\x01\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩑒
+ 0x29453: "\x05\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩑓
+ 0x29454: "\x03\x01\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩑔
+ 0x29455: "\x01\x01\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩑕
+ 0x29456: "\x03\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩑖
+ 0x29457: "\x05\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩑗
+ 0x29458: "\x01\x03\x02\x05\x01\x01\x01\x03\x04\x03\x03\x03", // 𩑘
+ 0x29459: "\x01\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩑙
+ 0x2945a: "\x03\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩑚
+ 0x2945b: "\x03\x04\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩑛
+ 0x2945c: "\x04\x05\x03\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩑜
+ 0x2945d: "\x03\x05\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩑝
+ 0x2945e: "\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩑞
+ 0x2945f: "\x03\x04\x01\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩑟
+ 0x29460: "\x05\x02\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩑠
+ 0x29461: "\x03\x01\x01\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩑡
+ 0x29462: "\x01\x03\x02\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩑢
+ 0x29463: "\x01\x03\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩑣
+ 0x29464: "\x03\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩑤
+ 0x29465: "\x03\x05\x01\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩑥
+ 0x29466: "\x03\x05\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩑦
+ 0x29467: "\x05\x02\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩑧
+ 0x29468: "\x02\x01\x01\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩑨
+ 0x29469: "\x03\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩑩
+ 0x2946a: "\x01\x02\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩑪
+ 0x2946b: "\x05\x01\x01\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩑫
+ 0x2946c: "\x01\x05\x03\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩑬
+ 0x2946d: "\x03\x02\x03\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩑭
+ 0x2946e: "\x03\x05\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩑮
+ 0x2946f: "\x04\x04\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩑯
+ 0x29470: "\x02\x05\x01\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩑰
+ 0x29471: "\x01\x03\x03\x04\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩑱
+ 0x29472: "\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩑲
+ 0x29473: "\x01\x04\x03\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩑳
+ 0x29474: "\x05\x05\x04\x05\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩑴
+ 0x29475: "\x01\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩑵
+ 0x29476: "\x01\x02\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩑶
+ 0x29477: "\x01\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩑷
+ 0x29478: "\x01\x02\x05\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩑸
+ 0x29479: "\x04\x01\x05\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩑹
+ 0x2947a: "\x02\x05\x02\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩑺
+ 0x2947b: "\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩑻
+ 0x2947c: "\x01\x02\x05\x01\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩑼
+ 0x2947d: "\x02\x01\x02\x01\x01\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩑽
+ 0x2947e: "\x03\x05\x01\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩑾
+ 0x2947f: "\x04\x03\x01\x05\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩑿
+ 0x29480: "\x03\x04\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒀
+ 0x29481: "\x02\x05\x01\x01\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒁
+ 0x29482: "\x04\x04\x05\x01\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒂
+ 0x29483: "\x01\x03\x05\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒃
+ 0x29484: "\x02\x05\x02\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒄
+ 0x29485: "\x01\x02\x03\x04\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒅
+ 0x29486: "\x01\x02\x05\x05\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒆
+ 0x29487: "\x02\x05\x01\x03\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒇
+ 0x29488: "\x01\x03\x02\x05\x01\x01\x01\x03\x04\x03\x04\x02\x03\x04", // 𩒈
+ 0x29489: "\x03\x04\x03\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒉
+ 0x2948a: "\x04\x01\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒊
+ 0x2948b: "\x04\x03\x01\x03\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒋
+ 0x2948c: "\x05\x02\x02\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒌
+ 0x2948d: "\x05\x04\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒍
+ 0x2948e: "\x05\x04\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒎
+ 0x2948f: "\x01\x03\x04\x03\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒏
+ 0x29490: "\x01\x05\x04\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒐
+ 0x29491: "\x01\x01\x01\x02\x01\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒑
+ 0x29492: "\x03\x03\x05\x02\x01\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒒
+ 0x29493: "\x01\x02\x02\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒓
+ 0x29494: "\x05\x01\x01\x02\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒔
+ 0x29495: "\x04\x03\x01\x05\x02\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒕
+ 0x29496: "\x01\x01\x03\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒖
+ 0x29497: "\x02\x05\x01\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒗
+ 0x29498: "\x01\x05\x04\x03\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒘
+ 0x29499: "\x03\x01\x02\x01\x03\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒙
+ 0x2949a: "\x02\x04\x03\x01\x03\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒚
+ 0x2949b: "\x02\x01\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒛
+ 0x2949c: "\x03\x05\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒜
+ 0x2949d: "\x02\x05\x01\x01\x01\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒝
+ 0x2949e: "\x01\x01\x02\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒞
+ 0x2949f: "\x03\x04\x04\x03\x03\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒟
+ 0x294a0: "\x01\x05\x01\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒠
+ 0x294a1: "\x03\x01\x01\x02\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒡
+ 0x294a2: "\x01\x02\x05\x01\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒢
+ 0x294a3: "\x01\x03\x03\x04\x04\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒣
+ 0x294a4: "\x01\x03\x04\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒤
+ 0x294a5: "\x01\x03\x04\x04\x05\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒥
+ 0x294a6: "\x03\x02\x01\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒦
+ 0x294a7: "\x03\x03\x03\x02\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒧
+ 0x294a8: "\x03\x05\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒨
+ 0x294a9: "\x04\x01\x03\x03\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒩
+ 0x294aa: "\x04\x03\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒪
+ 0x294ab: "\x05\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒫
+ 0x294ac: "\x03\x05\x05\x04\x03\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒬
+ 0x294ad: "\x03\x04\x01\x05\x03\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒭
+ 0x294ae: "\x01\x02\x04\x01\x03\x04\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒮
+ 0x294af: "\x04\x01\x03\x03\x04\x01\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒯
+ 0x294b0: "\x03\x01\x02\x01\x05\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒰
+ 0x294b1: "\x02\x05\x01\x02\x03\x04\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒱
+ 0x294b2: "\x03\x05\x01\x05\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒲
+ 0x294b3: "\x02\x05\x01\x01\x05\x05\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒳
+ 0x294b4: "\x01\x02\x01\x02\x05\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒴
+ 0x294b5: "\x01\x05\x02\x05\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒵
+ 0x294b6: "\x03\x05\x03\x03\x01\x03\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒶
+ 0x294b7: "\x01\x02\x05\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒷
+ 0x294b8: "\x05\x01\x01\x04\x05\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒸
+ 0x294b9: "\x03\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01", // 𩒹
+ 0x294ba: "\x01\x02\x05\x01\x01\x02\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒺
+ 0x294bb: "\x02\x05\x01\x03\x04\x01\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒻
+ 0x294bc: "\x05\x04\x02\x05\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒼
+ 0x294bd: "\x03\x04\x01\x03\x02\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒽
+ 0x294be: "\x01\x02\x05\x01\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒾
+ 0x294bf: "\x01\x03\x05\x04\x03\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩒿
+ 0x294c0: "\x05\x04\x03\x05\x03\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓀
+ 0x294c1: "\x01\x02\x01\x04\x01\x05\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓁
+ 0x294c2: "\x04\x03\x05\x01\x05\x02\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓂
+ 0x294c3: "\x03\x03\x01\x02\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓃
+ 0x294c4: "\x03\x03\x03\x01\x03\x02\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓄
+ 0x294c5: "\x03\x05\x03\x05\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓅
+ 0x294c6: "\x02\x05\x02\x05\x02\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓆
+ 0x294c7: "\x03\x05\x05\x04\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓇
+ 0x294c8: "\x02\x05\x02\x04\x03\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓈
+ 0x294c9: "\x04\x01\x03\x04\x01\x03\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓉
+ 0x294ca: "\x01\x02\x01\x02\x05\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓊
+ 0x294cb: "\x01\x04\x03\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓋
+ 0x294cc: "\x02\x05\x01\x01\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓌
+ 0x294cd: "\x02\x04\x03\x01\x01\x03\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓍
+ 0x294ce: "\x05\x04\x03\x01\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓎
+ 0x294cf: "\x01\x02\x05\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓏
+ 0x294d0: "\x01\x02\x04\x05\x05\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓐
+ 0x294d1: "\x01\x03\x02\x05\x01\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓑
+ 0x294d2: "\x01\x03\x03\x04\x04\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓒
+ 0x294d3: "\x02\x05\x01\x01\x01\x03\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓓
+ 0x294d4: "\x02\x05\x05\x01\x05\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓔
+ 0x294d5: "\x03\x01\x01\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓕
+ 0x294d6: "\x03\x04\x04\x03\x05\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓖
+ 0x294d7: "\x04\x01\x05\x04\x01\x03\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓗
+ 0x294d8: "\x04\x04\x05\x01\x03\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓘
+ 0x294d9: "\x01\x05\x03\x01\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓙
+ 0x294da: "\x03\x04\x04\x03\x01\x03\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓚
+ 0x294db: "\x05\x01\x03\x05\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓛
+ 0x294dc: "\x01\x02\x02\x04\x01\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓜
+ 0x294dd: "\x04\x03\x02\x05\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓝
+ 0x294de: "\x03\x04\x04\x03\x05\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓞
+ 0x294df: "\x03\x05\x03\x02\x01\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓟
+ 0x294e0: "\x01\x02\x05\x04\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓠
+ 0x294e1: "\x01\x02\x03\x04\x01\x02\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓡
+ 0x294e2: "\x02\x05\x01\x01\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓢
+ 0x294e3: "\x03\x03\x03\x04\x01\x04\x03\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓣
+ 0x294e4: "\x02\x05\x02\x01\x03\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓤
+ 0x294e5: "\x03\x02\x01\x02\x01\x02\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓥
+ 0x294e6: "\x05\x01\x03\x05\x02\x02\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓦
+ 0x294e7: "\x04\x04\x05\x02\x05\x01\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓧
+ 0x294e8: "\x01\x01\x02\x01\x03\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓨
+ 0x294e9: "\x01\x02\x01\x05\x05\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓩
+ 0x294ea: "\x05\x05\x01\x02\x04\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓪
+ 0x294eb: "\x04\x03\x01\x01\x03\x04\x05\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓫
+ 0x294ec: "\x03\x05\x03\x03\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓬
+ 0x294ed: "\x03\x03\x03\x01\x03\x02\x04\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓭
+ 0x294ee: "\x04\x03\x03\x04\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓮
+ 0x294ef: "\x02\x01\x02\x01\x01\x02\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓯
+ 0x294f0: "\x03\x04\x04\x03\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓰
+ 0x294f1: "\x03\x04\x01\x01\x02\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓱
+ 0x294f2: "\x04\x01\x04\x03\x01\x03\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓲
+ 0x294f3: "\x01\x01\x02\x01\x03\x05\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓳
+ 0x294f4: "\x01\x03\x05\x04\x02\x05\x01\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓴
+ 0x294f5: "\x02\x05\x02\x03\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓵
+ 0x294f6: "\x02\x05\x01\x04\x01\x04\x03\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓶
+ 0x294f7: "\x02\x05\x01\x01\x02\x05\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓷
+ 0x294f8: "\x01\x03\x02\x05\x01\x01\x01\x03\x04\x01\x02\x05\x04\x01\x02\x03\x04", // 𩓸
+ 0x294f9: "\x01\x03\x04\x02\x05\x01\x01\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓹
+ 0x294fa: "\x02\x05\x01\x01\x04\x03\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓺
+ 0x294fb: "\x02\x05\x02\x02\x05\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓻
+ 0x294fc: "\x02\x05\x02\x03\x05\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓼
+ 0x294fd: "\x02\x05\x03\x01\x02\x03\x04\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓽
+ 0x294fe: "\x03\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04\x02\x05\x02\x01\x01", // 𩓾
+ 0x294ff: "\x03\x03\x03\x02\x05\x02\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩓿
+ 0x29500: "\x04\x03\x01\x03\x05\x03\x03\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔀
+ 0x29501: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔁
+ 0x29502: "\x05\x05\x01\x03\x05\x03\x03\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔂
+ 0x29503: "\x03\x04\x04\x03\x01\x01\x03\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔃
+ 0x29504: "\x01\x02\x01\x02\x05\x01\x05\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔄
+ 0x29505: "\x03\x02\x05\x03\x04\x01\x01\x03\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔅
+ 0x29506: "\x05\x04\x03\x03\x04\x01\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔆
+ 0x29507: "\x03\x02\x05\x01\x01\x01\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔇
+ 0x29508: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔈
+ 0x29509: "\x05\x01\x05\x01\x05\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔉
+ 0x2950a: "\x01\x03\x02\x05\x01\x01\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔊
+ 0x2950b: "\x03\x04\x04\x03\x02\x05\x02\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔋
+ 0x2950c: "\x03\x05\x05\x03\x01\x03\x02\x04\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔌
+ 0x2950d: "\x04\x01\x04\x03\x01\x03\x05\x04\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔍
+ 0x2950e: "\x01\x02\x01\x02\x01\x02\x02\x01\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔎
+ 0x2950f: "\x02\x05\x01\x01\x03\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔏
+ 0x29510: "\x02\x05\x01\x01\x04\x01\x04\x03\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔐
+ 0x29511: "\x01\x02\x02\x01\x05\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔑
+ 0x29512: "\x02\x01\x02\x05\x01\x02\x02\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔒
+ 0x29513: "\x01\x01\x02\x03\x02\x01\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔓
+ 0x29514: "\x03\x02\x05\x01\x02\x05\x02\x01\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔔
+ 0x29515: "\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔕
+ 0x29516: "\x04\x03\x01\x02\x03\x04\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔖
+ 0x29517: "\x04\x03\x01\x02\x03\x04\x05\x03\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔗
+ 0x29518: "\x05\x04\x02\x05\x01\x01\x02\x05\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔘
+ 0x29519: "\x03\x02\x05\x03\x04\x01\x01\x05\x01\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔙
+ 0x2951a: "\x03\x05\x05\x04\x05\x04\x01\x05\x04\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔚
+ 0x2951b: "\x01\x01\x03\x01\x01\x02\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔛
+ 0x2951c: "\x04\x04\x05\x03\x04\x03\x04\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔜
+ 0x2951d: "\x03\x04\x01\x05\x04\x01\x03\x05\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔝
+ 0x2951e: "\x05\x04\x02\x05\x04\x03\x01\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔞
+ 0x2951f: "\x01\x03\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔟
+ 0x29520: "\x02\x05\x01\x01\x01\x01\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔠
+ 0x29521: "\x05\x05\x01\x05\x05\x01\x05\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔡
+ 0x29522: "\x04\x03\x01\x02\x03\x04\x04\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔢
+ 0x29523: "\x04\x01\x05\x03\x03\x01\x03\x05\x04\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔣
+ 0x29524: "\x02\x01\x02\x01\x01\x01\x01\x02\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔤
+ 0x29525: "\x01\x01\x02\x01\x05\x05\x04\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔥
+ 0x29526: "\x03\x02\x05\x01\x05\x01\x04\x05\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔦
+ 0x29527: "\x04\x04\x05\x01\x03\x05\x03\x03\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔧
+ 0x29528: "\x03\x02\x05\x01\x01\x01\x04\x05\x04\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔨
+ 0x29529: "\x01\x02\x05\x04\x03\x04\x01\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔩
+ 0x2952a: "\x05\x05\x05\x02\x05\x01\x05\x02\x01\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔪
+ 0x2952b: "\x04\x03\x01\x02\x03\x04\x03\x04\x05\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔫
+ 0x2952c: "\x04\x03\x01\x02\x03\x04\x04\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔬
+ 0x2952d: "\x01\x02\x01\x02\x05\x01\x03\x05\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔭
+ 0x2952e: "\x01\x01\x02\x01\x04\x03\x01\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔮
+ 0x2952f: "\x01\x03\x04\x03\x04\x03\x04\x05\x05\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔯
+ 0x29530: "\x02\x05\x01\x01\x01\x02\x02\x04\x03\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔰
+ 0x29531: "\x04\x03\x01\x03\x04\x02\x05\x02\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔱
+ 0x29532: "\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔲
+ 0x29533: "\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔳
+ 0x29534: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔴
+ 0x29535: "\x01\x02\x03\x04\x01\x02\x03\x04\x05\x03\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔵
+ 0x29536: "\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔶
+ 0x29537: "\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔷
+ 0x29538: "\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔸
+ 0x29539: "\x03\x03\x03\x03\x02\x05\x01\x01\x03\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔹
+ 0x2953a: "\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔺
+ 0x2953b: "\x03\x03\x03\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔻
+ 0x2953c: "\x04\x01\x03\x01\x02\x02\x01\x04\x04\x04\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔼
+ 0x2953d: "\x04\x01\x05\x03\x03\x01\x02\x05\x01\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔽
+ 0x2953e: "\x03\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04\x03\x02\x05\x01\x01\x03\x01\x02", // 𩔾
+ 0x2953f: "\x01\x02\x05\x01\x02\x01\x03\x02\x03\x04\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩔿
+ 0x29540: "\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕀
+ 0x29541: "\x01\x03\x01\x01\x05\x03\x04\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕁
+ 0x29542: "\x01\x03\x02\x05\x01\x01\x01\x03\x04\x01\x03\x03\x02\x05\x03\x02\x05\x04\x05\x04", // 𩕂
+ 0x29543: "\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕃
+ 0x29544: "\x03\x02\x05\x03\x05\x04\x01\x04\x05\x04\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕄
+ 0x29545: "\x04\x01\x03\x03\x04\x01\x01\x02\x04\x03\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕅
+ 0x29546: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕆
+ 0x29547: "\x04\x01\x05\x03\x03\x01\x03\x03\x05\x04\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕇
+ 0x29548: "\x04\x03\x03\x04\x02\x05\x01\x02\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕈
+ 0x29549: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕉
+ 0x2954a: "\x04\x03\x01\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕊
+ 0x2954b: "\x04\x04\x05\x04\x05\x04\x04\x02\x05\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕋
+ 0x2954c: "\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕌
+ 0x2954d: "\x03\x02\x05\x01\x01\x01\x01\x01\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕍
+ 0x2954e: "\x03\x03\x05\x04\x01\x04\x02\x05\x01\x02\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕎
+ 0x2954f: "\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕏
+ 0x29550: "\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕐
+ 0x29551: "\x01\x03\x04\x04\x03\x01\x03\x05\x03\x03\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕑
+ 0x29552: "\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕒
+ 0x29553: "\x03\x05\x02\x05\x02\x01\x03\x05\x03\x03\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕓
+ 0x29554: "\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕔
+ 0x29555: "\x01\x02\x01\x02\x03\x05\x01\x01\x03\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕕
+ 0x29556: "\x03\x04\x04\x03\x02\x05\x02\x02\x01\x01\x02\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕖
+ 0x29557: "\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕗
+ 0x29558: "\x02\x01\x02\x01\x01\x01\x01\x01\x01\x02\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕘
+ 0x29559: "\x01\x03\x02\x05\x01\x01\x01\x04\x01\x04\x03\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕙
+ 0x2955a: "\x02\x01\x05\x03\x01\x05\x02\x02\x05\x02\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕚
+ 0x2955b: "\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕛
+ 0x2955c: "\x01\x02\x01\x03\x04\x01\x02\x01\x04\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕜
+ 0x2955d: "\x04\x01\x04\x03\x01\x03\x03\x03\x03\x05\x05\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕝
+ 0x2955e: "\x05\x04\x05\x04\x05\x04\x03\x04\x02\x04\x04\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕞
+ 0x2955f: "\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕟
+ 0x29560: "\x01\x03\x01\x02\x05\x01\x05\x03\x04\x04\x03\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕠
+ 0x29561: "\x01\x02\x03\x04\x03\x04\x01\x02\x05\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕡
+ 0x29562: "\x02\x05\x01\x01\x01\x05\x01\x03\x02\x01\x02\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕢
+ 0x29563: "\x05\x02\x02\x05\x02\x04\x01\x05\x03\x03\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕣
+ 0x29564: "\x04\x04\x05\x03\x04\x05\x01\x02\x05\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕤
+ 0x29565: "\x04\x04\x05\x03\x05\x03\x02\x04\x01\x01\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕥
+ 0x29566: "\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕦
+ 0x29567: "\x01\x03\x02\x05\x01\x01\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04\x04\x01\x03\x04", // 𩕧
+ 0x29568: "\x02\x01\x02\x01\x01\x01\x01\x01\x01\x01\x02\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕨
+ 0x29569: "\x02\x05\x01\x01\x01\x05\x02\x01\x03\x03\x03\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕩
+ 0x2956a: "\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕪
+ 0x2956b: "\x01\x02\x05\x01\x02\x02\x04\x05\x02\x05\x01\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕫
+ 0x2956c: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕬
+ 0x2956d: "\x01\x02\x01\x02\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕭
+ 0x2956e: "\x01\x03\x03\x02\x05\x01\x01\x02\x03\x04\x04\x05\x04\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕮
+ 0x2956f: "\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕯
+ 0x29570: "\x03\x02\x05\x01\x01\x04\x04\x05\x03\x04\x04\x01\x05\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕰
+ 0x29571: "\x01\x02\x01\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕱
+ 0x29572: "\x04\x01\x05\x03\x03\x01\x01\x03\x04\x01\x02\x05\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕲
+ 0x29573: "\x04\x04\x05\x04\x05\x04\x04\x02\x05\x02\x02\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕳
+ 0x29574: "\x04\x01\x03\x04\x02\x04\x04\x04\x04\x02\x05\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕴
+ 0x29575: "\x05\x02\x02\x05\x02\x03\x04\x04\x01\x01\x01\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕵
+ 0x29576: "\x04\x03\x03\x04\x04\x03\x03\x04\x03\x05\x04\x01\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕶
+ 0x29577: "\x02\x01\x05\x03\x01\x05\x03\x02\x04\x01\x01\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕷
+ 0x29578: "\x02\x01\x02\x01\x03\x01\x02\x04\x01\x01\x01\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕸
+ 0x29579: "\x01\x02\x02\x03\x04\x04\x05\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕹
+ 0x2957a: "\x04\x01\x04\x03\x01\x01\x02\x01\x03\x05\x03\x03\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕺
+ 0x2957b: "\x04\x03\x01\x05\x02\x03\x01\x02\x05\x01\x01\x05\x05\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕻
+ 0x2957c: "\x01\x03\x02\x05\x01\x01\x01\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04\x03\x05\x01\x01\x05\x02", // 𩕼
+ 0x2957d: "\x04\x04\x05\x01\x02\x05\x05\x02\x05\x01\x01\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕽
+ 0x2957e: "\x02\x05\x02\x02\x01\x01\x03\x02\x05\x02\x02\x01\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕾
+ 0x2957f: "\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩕿
+ 0x29580: "\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩖀
+ 0x29581: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩖁
+ 0x29582: "\x02\x05\x02\x02\x01\x01\x02\x05\x02\x02\x01\x05\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩖂
+ 0x29583: "\x01\x01\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩖃
+ 0x29584: "\x01\x03\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩖄
+ 0x29585: "\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01\x03\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩖅
+ 0x29586: "\x04\x01\x03\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩖆
+ 0x29587: "\x02\x05\x01\x01\x01\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩖇
+ 0x29588: "\x05\x01\x05\x02\x05\x02\x02\x01\x02\x05\x02\x02\x01\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩖈
+ 0x29589: "\x01\x02\x02\x02\x05\x02\x02\x01\x04\x05\x01\x03\x05\x04\x05\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩖉
+ 0x2958a: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩖊
+ 0x2958b: "\x04\x03\x03\x04\x04\x03\x03\x04\x01\x03\x02\x05\x02\x02\x01\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩖋
+ 0x2958c: "\x03\x05\x02\x05\x01\x01\x05\x03\x05\x03\x05\x02\x05\x01\x03\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩖌
+ 0x2958d: "\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x05\x03\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩖍
+ 0x2958e: "\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x01\x03\x05\x04\x01\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩖎
+ 0x2958f: "\x01\x03\x02\x05\x01\x01\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩖏
+ 0x29590: "\x04\x03\x01\x03\x02\x05\x01\x01\x01\x04\x03\x01\x03\x02\x05\x01\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩖐
+ 0x29591: "\x01\x03\x02\x01\x01\x02\x03\x04\x05\x03\x04\x02\x05\x01\x02\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩖑
+ 0x29592: "\x01\x03\x03\x02\x05\x01\x01\x02\x03\x04\x01\x03\x03\x02\x05\x01\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩖒
+ 0x29593: "\x02\x01\x02\x01\x01\x01\x01\x01\x01\x02\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04\x03\x02\x05\x01\x01\x03\x01\x02", // 𩖓
+ 0x29594: "\x01\x03\x02\x05\x01\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩖔
+ 0x29595: "\x03\x03\x03\x04\x01\x04\x03\x01\x01\x03\x02\x05\x03\x04", // 𩖕
+ 0x29596: "\x04\x03\x03\x04\x04\x03\x03\x04\x01\x03\x02\x05\x03\x04", // 𩖖
+ 0x29597: "\x01\x02\x03\x04\x01\x02\x03\x04\x01\x01\x02\x03\x04\x01\x03\x02\x05\x03\x04", // 𩖗
+ 0x29598: "\x01\x02\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𩖘
+ 0x29599: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x05\x03", // 𩖙
+ 0x2959a: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x05\x04", // 𩖚
+ 0x2959b: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x05\x04", // 𩖛
+ 0x2959c: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x05\x01", // 𩖜
+ 0x2959d: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x05\x03", // 𩖝
+ 0x2959e: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x02\x05\x02", // 𩖞
+ 0x2959f: "\x04\x04\x03\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𩖟
+ 0x295a0: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x05\x03\x01", // 𩖠
+ 0x295a1: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x05\x04", // 𩖡
+ 0x295a2: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x03\x05\x04", // 𩖢
+ 0x295a3: "\x04\x01\x03\x04\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𩖣
+ 0x295a4: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x05\x02\x05", // 𩖤
+ 0x295a5: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x02\x03\x04\x03", // 𩖥
+ 0x295a6: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x04\x04\x05", // 𩖦
+ 0x295a7: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x04\x03\x03\x04", // 𩖧
+ 0x295a8: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x05\x03\x03", // 𩖨
+ 0x295a9: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x02\x05\x05\x04", // 𩖩
+ 0x295aa: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x05\x04", // 𩖪
+ 0x295ab: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x04\x01\x05\x03", // 𩖫
+ 0x295ac: "\x01\x01\x03\x04\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𩖬
+ 0x295ad: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x02\x05\x02", // 𩖭
+ 0x295ae: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x03\x04\x04", // 𩖮
+ 0x295af: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x02\x05\x03\x04", // 𩖯
+ 0x295b0: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x04\x01\x03\x04", // 𩖰
+ 0x295b1: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x02\x05\x03\x04", // 𩖱
+ 0x295b2: "\x01\x03\x02\x04\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𩖲
+ 0x295b3: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x04\x05\x04", // 𩖳
+ 0x295b4: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x05\x03\x05\x02", // 𩖴
+ 0x295b5: "\x03\x05\x01\x02\x05\x01\x02\x01\x04\x03\x04\x01\x05\x04", // 𩖵
+ 0x295b6: "\x03\x05\x01\x02\x05\x01\x02\x01\x04\x01\x02\x03\x05\x04", // 𩖶
+ 0x295b7: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x05\x02\x02\x05\x02", // 𩖷
+ 0x295b8: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x05", // 𩖸
+ 0x295b9: "\x03\x05\x01\x02\x05\x01\x02\x01\x04\x05\x01\x03\x01\x05", // 𩖹
+ 0x295ba: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x02\x02\x01\x01", // 𩖺
+ 0x295bb: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x04\x05\x05\x03\x04", // 𩖻
+ 0x295bc: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x05\x01\x05\x03\x02", // 𩖼
+ 0x295bd: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x05\x03\x02\x05\x04", // 𩖽
+ 0x295be: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x05\x01\x03\x01\x01", // 𩖾
+ 0x295bf: "\x03\x05\x04\x05\x05\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𩖿
+ 0x295c0: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x02\x05\x01\x01", // 𩗀
+ 0x295c1: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x04\x01\x05\x05\x04", // 𩗁
+ 0x295c2: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x01\x02\x03\x04", // 𩗂
+ 0x295c3: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x01", // 𩗃
+ 0x295c4: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x02\x02\x01\x03\x04", // 𩗄
+ 0x295c5: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x05\x03\x05\x03\x05\x03", // 𩗅
+ 0x295c6: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x02\x01\x02\x03\x04", // 𩗆
+ 0x295c7: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x03\x01\x02\x05\x01", // 𩗇
+ 0x295c8: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x05\x04\x03\x05\x04", // 𩗈
+ 0x295c9: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x04\x01\x02\x03\x04", // 𩗉
+ 0x295ca: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x02\x01\x02\x05\x01", // 𩗊
+ 0x295cb: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x03\x05\x04\x01\x04", // 𩗋
+ 0x295cc: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x04\x01\x03\x04\x02\x02", // 𩗌
+ 0x295cd: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x05\x04\x01\x05\x04\x01", // 𩗍
+ 0x295ce: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x01\x02\x01\x05\x04", // 𩗎
+ 0x295cf: "\x01\x02\x05\x02\x02\x01\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𩗏
+ 0x295d0: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x04\x03\x01\x02\x03\x04", // 𩗐
+ 0x295d1: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x05\x01\x03\x01\x02\x01", // 𩗑
+ 0x295d2: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x04\x01\x03\x04\x03\x04", // 𩗒
+ 0x295d3: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x02\x04\x05\x05\x02\x01", // 𩗓
+ 0x295d4: "\x03\x04\x04\x03\x05\x03\x01\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𩗔
+ 0x295d5: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x02\x04\x01\x03\x04\x04", // 𩗕
+ 0x295d6: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x04\x05\x01\x01\x05\x03\x04", // 𩗖
+ 0x295d7: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x01\x03\x04", // 𩗗
+ 0x295d8: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x05\x01\x03\x03\x01\x01\x05", // 𩗘
+ 0x295d9: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x02\x01\x03\x03\x01\x02", // 𩗙
+ 0x295da: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x02\x02\x03\x01\x03\x04", // 𩗚
+ 0x295db: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x03\x05\x03\x03\x03\x04", // 𩗛
+ 0x295dc: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x05\x01\x03\x05\x05", // 𩗜
+ 0x295dd: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x02\x05\x01\x02\x01\x04", // 𩗝
+ 0x295de: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x04\x03\x01\x02\x03\x04", // 𩗞
+ 0x295df: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x02\x01\x05\x02\x01\x03\x04", // 𩗟
+ 0x295e0: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x02\x01\x05\x05\x01\x02", // 𩗠
+ 0x295e1: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x01\x01\x03\x01\x02\x04", // 𩗡
+ 0x295e2: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x02\x01\x02\x05\x03\x04", // 𩗢
+ 0x295e3: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x02\x05\x01\x02\x03\x04", // 𩗣
+ 0x295e4: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x01\x01\x02", // 𩗤
+ 0x295e5: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x02\x05\x01\x05\x02\x01\x05", // 𩗥
+ 0x295e6: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x02\x01\x03\x05\x04\x02\x02", // 𩗦
+ 0x295e7: "\x05\x02\x04\x01\x05\x03\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𩗧
+ 0x295e8: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x01\x01\x03\x04\x02\x05\x01", // 𩗨
+ 0x295e9: "\x03\x04\x01\x01\x02\x04\x03\x01\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𩗩
+ 0x295ea: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x05\x01\x02\x01\x02\x05\x01", // 𩗪
+ 0x295eb: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x02\x05\x01\x01\x03\x01\x02", // 𩗫
+ 0x295ec: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x04\x01\x02\x05\x01\x02\x03\x04", // 𩗬
+ 0x295ed: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x04\x05\x01\x03\x01\x03\x04\x04", // 𩗭
+ 0x295ee: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x05\x05\x05\x02\x05\x01\x02\x01", // 𩗮
+ 0x295ef: "\x03\x01\x02\x03\x04\x05\x03\x01\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𩗯
+ 0x295f0: "\x03\x05\x01\x02\x05\x01\x02\x01\x04\x03\x01\x02\x01\x02\x01\x02\x01\x01", // 𩗰
+ 0x295f1: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x02\x03\x04\x03\x03\x01\x02", // 𩗱
+ 0x295f2: "\x03\x05\x01\x02\x05\x01\x02\x01\x04\x03\x04\x04\x03\x05\x01\x01\x02", // 𩗲
+ 0x295f3: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x05\x01\x01\x02\x01\x03\x04", // 𩗳
+ 0x295f4: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x01\x01\x03\x04\x01\x01\x02", // 𩗴
+ 0x295f5: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x02\x04\x03\x02\x05\x02\x05\x01", // 𩗵
+ 0x295f6: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x04\x01\x03\x04\x03\x04\x01\x02", // 𩗶
+ 0x295f7: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x03\x04\x02\x05\x01\x01\x05", // 𩗷
+ 0x295f8: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x02\x01\x05\x03\x01\x05\x01\x02", // 𩗸
+ 0x295f9: "\x04\x03\x03\x04\x04\x03\x03\x04\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𩗹
+ 0x295fa: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x02\x05\x01\x01\x03\x05\x03\x03", // 𩗺
+ 0x295fb: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x04\x05\x04\x04", // 𩗻
+ 0x295fc: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x01\x02\x01\x02\x05\x01\x01", // 𩗼
+ 0x295fd: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x02\x01\x05\x05\x01\x02\x01", // 𩗽
+ 0x295fe: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x02\x05\x02\x03\x04\x03\x04", // 𩗾
+ 0x295ff: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x02\x05\x02\x04\x04\x04\x04", // 𩗿
+ 0x29600: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x02\x01\x02\x05\x01\x01\x01\x02", // 𩘀
+ 0x29601: "\x04\x01\x02\x05\x01\x02\x03\x04\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𩘁
+ 0x29602: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x05\x01\x03\x05\x04\x01\x03\x04", // 𩘂
+ 0x29603: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x05\x05\x05\x02\x05\x01\x02\x02", // 𩘃
+ 0x29604: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x02\x03\x04\x03\x01\x03\x04", // 𩘄
+ 0x29605: "\x01\x05\x01\x05\x03\x02\x05\x01\x01\x03\x05\x01\x02\x05\x01\x02\x01\x04", // 𩘅
+ 0x29606: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 𩘆
+ 0x29607: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x05\x04\x01\x01\x01\x02\x05\x01", // 𩘇
+ 0x29608: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x02\x05\x05\x04\x05\x05\x04\x05\x02", // 𩘈
+ 0x29609: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x02\x05\x01\x02\x05\x02\x01\x04", // 𩘉
+ 0x2960a: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x02\x05\x01\x02\x03\x04\x02\x02", // 𩘊
+ 0x2960b: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x02\x05\x01\x03\x01\x01\x03\x04", // 𩘋
+ 0x2960c: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x01\x02\x03\x04\x04\x03\x03\x04", // 𩘌
+ 0x2960d: "\x04\x01\x03\x04\x02\x05\x01\x03\x05\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𩘍
+ 0x2960e: "\x03\x05\x01\x02\x05\x01\x02\x01\x04\x04\x04\x05\x02\x05\x01\x03\x02\x05\x01", // 𩘎
+ 0x2960f: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 𩘏
+ 0x29610: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x05\x05\x01\x03\x05\x03\x03\x03\x04", // 𩘐
+ 0x29611: "\x03\x05\x01\x02\x05\x01\x02\x01\x04\x01\x02\x01\x02\x02\x05\x01\x03\x04", // 𩘑
+ 0x29612: "\x04\x04\x05\x01\x02\x05\x01\x01\x01\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𩘒
+ 0x29613: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x04\x01\x05\x03\x03\x01\x05\x02\x01", // 𩘓
+ 0x29614: "\x01\x02\x05\x03\x05\x01\x01\x02\x01\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𩘔
+ 0x29615: "\x01\x02\x01\x02\x02\x05\x01\x03\x04\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𩘕
+ 0x29616: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x03\x04\x03\x05\x04\x03\x05\x04", // 𩘖
+ 0x29617: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x05\x03\x05\x03\x02\x05\x01\x01", // 𩘗
+ 0x29618: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x02\x05\x01\x01\x02\x05\x03\x04", // 𩘘
+ 0x29619: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x02\x05\x03\x04\x01\x01\x03\x02", // 𩘙
+ 0x2961a: "\x05\x02\x01\x02\x05\x01\x01\x05\x02\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𩘚
+ 0x2961b: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x05\x05\x05\x01\x03\x05\x04\x02\x02", // 𩘛
+ 0x2961c: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x04\x01\x03\x05\x01\x01\x02\x02\x05\x01", // 𩘜
+ 0x2961d: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x02\x04\x05\x05\x05\x04\x02\x03\x04", // 𩘝
+ 0x2961e: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x01\x01\x05\x04\x03\x01\x02\x03\x04", // 𩘞
+ 0x2961f: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x02\x05\x02\x02\x01\x01\x02\x03\x04", // 𩘟
+ 0x29620: "\x03\x05\x04\x02\x05\x01\x01\x03\x05\x04\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𩘠
+ 0x29621: "\x03\x05\x01\x02\x05\x01\x02\x01\x04\x01\x02\x01\x02\x05\x03\x05\x03\x05\x03", // 𩘡
+ 0x29622: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x01\x01\x03\x04\x03\x01\x02\x03\x04", // 𩘢
+ 0x29623: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 𩘣
+ 0x29624: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01", // 𩘤
+ 0x29625: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 𩘥
+ 0x29626: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x02\x01\x05\x01\x01\x04\x01\x05\x03", // 𩘦
+ 0x29627: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x02\x05\x01\x01\x01\x03\x01\x02\x04", // 𩘧
+ 0x29628: "\x04\x04\x05\x03\x04\x03\x04\x02\x05\x01\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𩘨
+ 0x29629: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x05\x01\x01\x05\x03\x04\x04\x05\x04", // 𩘩
+ 0x2962a: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x04\x04\x05\x03\x04\x03\x04\x02\x05\x01", // 𩘪
+ 0x2962b: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x04\x04\x01\x03\x01\x05\x05\x04\x01\x04", // 𩘫
+ 0x2962c: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x05\x01\x01\x05\x03\x04\x04\x05\x04", // 𩘬
+ 0x2962d: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x04\x03\x01\x01\x01\x03\x05\x02\x01\x01", // 𩘭
+ 0x2962e: "\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𩘮
+ 0x2962f: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04", // 𩘯
+ 0x29630: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x04\x04\x05\x03\x02\x01\x03\x02\x05\x01\x01", // 𩘰
+ 0x29631: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x04\x01\x05\x05\x04\x04\x01\x03\x04\x01\x02", // 𩘱
+ 0x29632: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩘲
+ 0x29633: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01", // 𩘳
+ 0x29634: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01", // 𩘴
+ 0x29635: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩘵
+ 0x29636: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x04\x01\x05\x03\x03\x01\x05\x02\x01\x03\x04", // 𩘶
+ 0x29637: "\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𩘷
+ 0x29638: "\x05\x04\x01\x05\x04\x01\x03\x04\x02\x04\x04\x04\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𩘸
+ 0x29639: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x05\x01\x01\x02\x03\x02\x01\x01\x05\x05\x02\x01\x02", // 𩘹
+ 0x2963a: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𩘺
+ 0x2963b: "\x03\x05\x01\x02\x05\x01\x02\x01\x04\x05\x04\x05\x02\x03\x02\x05\x03\x05\x02\x05\x01", // 𩘻
+ 0x2963c: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 𩘼
+ 0x2963d: "\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x03\x04\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𩘽
+ 0x2963e: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 𩘾
+ 0x2963f: "\x03\x05\x01\x02\x05\x01\x02\x01\x04\x05\x01\x05\x01\x02\x01\x01\x02\x01\x02\x05\x01", // 𩘿
+ 0x29640: "\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𩙀
+ 0x29641: "\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04\x03\x05\x01\x02\x05\x01\x02\x01\x04", // 𩙁
+ 0x29642: "\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𩙂
+ 0x29643: "\x03\x03\x02\x05\x02\x01\x02\x05\x01\x01\x05\x02\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𩙃
+ 0x29644: "\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𩙄
+ 0x29645: "\x05\x04\x05\x02\x03\x02\x05\x03\x05\x02\x05\x01\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𩙅
+ 0x29646: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x03\x04", // 𩙆
+ 0x29647: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x05\x02\x01\x03\x01\x02\x01\x02\x05\x01\x01", // 𩙇
+ 0x29648: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 𩙈
+ 0x29649: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x03\x02\x02\x05\x02\x01\x03\x05\x03\x01\x03\x04", // 𩙉
+ 0x2964a: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x02\x05\x03\x04\x04\x04\x04\x04\x01\x02\x05\x01\x01", // 𩙊
+ 0x2964b: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x04\x01\x02\x05\x01\x01\x02\x02\x04\x05\x04", // 𩙋
+ 0x2964c: "\x03\x05\x01\x01\x03\x04\x01\x02\x05\x01\x01\x02\x02\x04\x05\x04", // 𩙌
+ 0x2964d: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x04\x01\x02\x05\x01\x01\x02\x02\x04\x05\x04\x04", // 𩙍
+ 0x2964e: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x01\x01\x01", // 𩙎
+ 0x2964f: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x05\x02\x02\x05\x04\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𩙏
+ 0x29650: "\x01\x02\x03\x04\x01\x02\x03\x04\x03\x05\x03\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𩙐
+ 0x29651: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x05\x05\x05\x02\x05\x03\x04\x01\x05\x04\x04\x05\x04\x04\x05", // 𩙑
+ 0x29652: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x04\x04\x04\x04\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𩙒
+ 0x29653: "\x03\x05\x01\x02\x05\x01\x02\x01\x04\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x01\x01\x03\x05", // 𩙓
+ 0x29654: "\x03\x05\x04\x05\x03\x03\x04\x01\x01\x02\x04\x03\x01\x02\x02\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𩙔
+ 0x29655: "\x02\x05\x01\x01\x01\x02\x02\x01\x03\x04\x02\x04\x01\x03\x04\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𩙕
+ 0x29656: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 𩙖
+ 0x29657: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x03\x01\x02\x03\x03\x01\x02\x03\x04\x01\x01\x02\x04\x03\x01", // 𩙗
+ 0x29658: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01\x01\x01", // 𩙘
+ 0x29659: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 𩙙
+ 0x2965a: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x01\x02\x01\x02\x05\x01\x01\x02\x03\x02\x01\x01\x05\x05\x02\x01\x02", // 𩙚
+ 0x2965b: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x01\x03\x05\x04\x03\x05", // 𩙛
+ 0x2965c: "\x04\x01\x01\x01\x02\x05\x01\x04\x03\x03\x04\x04\x03\x03\x04\x05\x04\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𩙜
+ 0x2965d: "\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𩙝
+ 0x2965e: "\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x01\x04\x03\x03\x04\x03\x05\x01\x02\x05\x01\x02\x01\x04", // 𩙞
+ 0x2965f: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𩙟
+ 0x29660: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x02\x05\x01\x02\x05\x03\x04\x01\x05\x05\x01\x01\x05\x01\x01", // 𩙠
+ 0x29661: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𩙡
+ 0x29662: "\x03\x05\x03\x02\x05\x01\x02\x01\x04\x03\x02\x05\x01\x01\x03\x05\x05\x04\x04\x03\x01\x03\x05\x03\x03\x03\x04\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 𩙢
+ 0x29663: "\x01\x02\x02\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04\x01\x05\x04\x01\x05\x04\x01\x03\x05\x03\x02\x05\x01\x02\x01\x04\x04\x04\x01\x04\x01\x05\x04\x03\x02\x05", // 𩙣
+ 0x29664: "\x02\x01\x02\x01\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x01\x03\x05\x03\x03\x03\x04\x01\x03\x05\x03\x03\x03\x04\x01\x03\x05\x03\x03\x03\x04\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𩙤
+ 0x29665: "\x03\x05\x03\x04\x01\x03\x05\x04\x04", // 𩙥
+ 0x29666: "\x03\x05\x03\x04\x03\x02\x05\x01\x01", // 𩙦
+ 0x29667: "\x03\x05\x03\x04\x01\x01\x01\x03\x01\x02\x04", // 𩙧
+ 0x29668: "\x03\x05\x03\x04\x05\x01\x01\x02\x03\x02\x03\x04", // 𩙨
+ 0x29669: "\x03\x05\x03\x04\x02\x01\x02\x05\x01\x01\x01\x02", // 𩙩
+ 0x2966a: "\x03\x05\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04", // 𩙪
+ 0x2966b: "\x03\x05\x03\x04\x05\x04\x04\x02\x05\x01\x02\x01\x04", // 𩙫
+ 0x2966c: "\x03\x05\x03\x04\x02\x05\x01\x02\x01\x02\x05\x03\x04", // 𩙬
+ 0x2966d: "\x03\x05\x03\x04\x01\x02\x04\x05\x05\x05\x04\x02\x03\x04", // 𩙭
+ 0x2966e: "\x03\x05\x03\x04\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 𩙮
+ 0x2966f: "\x03\x05\x03\x04\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 𩙯
+ 0x29670: "\x03\x05\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 𩙰
+ 0x29671: "\x05\x03\x04\x03\x04\x01\x02\x05\x03\x04", // 𩙱
+ 0x29672: "\x03\x01\x02\x01\x05\x03\x04\x03\x05\x03\x04\x03\x02", // 𩙲
+ 0x29673: "\x03\x04\x04\x05\x04\x05\x03\x04\x03\x05\x03\x04\x03\x02", // 𩙳
+ 0x29674: "\x04\x01\x05\x03\x03\x01\x05\x03\x04\x03\x05\x03\x04\x03\x02", // 𩙴
+ 0x29675: "\x04\x05\x01\x02\x05\x01\x01\x01\x02\x05\x03\x04\x03\x05\x03\x04\x03\x02", // 𩙵
+ 0x29676: "\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04\x05\x03\x04\x03\x05\x03\x04\x03\x02", // 𩙶
+ 0x29677: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x05\x03\x04\x03\x05\x03\x04\x03\x02", // 𩙷
+ 0x29678: "\x05\x04\x02\x05\x01\x01\x03\x05\x03\x05\x05\x03\x04\x03\x05\x03\x04\x03\x02", // 𩙸
+ 0x29679: "\x03\x05\x04\x01\x01\x01\x02\x04\x05\x04\x05\x03\x04\x03\x05\x03\x04\x03\x02", // 𩙹
+ 0x2967a: "\x05\x03\x04\x03\x05\x03\x04\x03\x02\x02\x05\x01\x02\x01\x01\x02\x01\x02\x01\x03\x04", // 𩙺
+ 0x2967b: "\x05\x03\x04\x03\x05\x03\x04\x03\x02\x02\x01\x01\x01\x02\x01\x01\x01\x04\x05\x04\x04", // 𩙻
+ 0x2967c: "\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01\x05\x03\x04\x03\x05\x03\x04\x03\x02", // 𩙼
+ 0x2967d: "\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04\x05\x03\x04\x03\x05\x03\x04\x03\x02", // 𩙽
+ 0x2967e: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x05\x03\x04\x03\x05\x03\x04\x03\x02", // 𩙾
+ 0x2967f: "\x03\x04\x01\x05\x01\x01\x02\x01\x01", // 𩙿
+ 0x29680: "\x03\x04\x01\x03\x02\x05\x01\x01\x05\x04", // 𩚀
+ 0x29681: "\x03\x04\x01\x02\x05\x01\x01\x01\x05", // 𩚁
+ 0x29682: "\x03\x04\x01\x05\x01\x01\x05\x04\x05", // 𩚂
+ 0x29683: "\x03\x04\x02\x01\x02\x05\x01\x01\x01", // 𩚃
+ 0x29684: "\x03\x04\x01\x05\x01\x01\x05\x04\x05\x04", // 𩚄
+ 0x29685: "\x03\x04\x01\x05\x01\x01\x05\x04\x02\x04", // 𩚅
+ 0x29686: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x04", // 𩚆
+ 0x29687: "\x03\x04\x01\x05\x01\x01\x05\x03\x04\x01\x03\x02", // 𩚇
+ 0x29688: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x05\x04", // 𩚈
+ 0x29689: "\x03\x04\x01\x05\x01\x01\x05\x04\x05\x02\x05", // 𩚉
+ 0x2968a: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x01\x05", // 𩚊
+ 0x2968b: "\x03\x04\x01\x05\x01\x01\x05\x04\x02\x01\x05", // 𩚋
+ 0x2968c: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x03\x05", // 𩚌
+ 0x2968d: "\x03\x04\x01\x05\x01\x01\x05\x04\x02\x05\x02", // 𩚍
+ 0x2968e: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x03\x03", // 𩚎
+ 0x2968f: "\x03\x05\x04\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𩚏
+ 0x29690: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x05\x04", // 𩚐
+ 0x29691: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x05\x04", // 𩚑
+ 0x29692: "\x03\x04\x01\x05\x01\x01\x05\x04\x05\x03\x04", // 𩚒
+ 0x29693: "\x05\x05\x05\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𩚓
+ 0x29694: "\x03\x04\x04\x05\x01\x01\x05\x04\x05\x03\x01", // 𩚔
+ 0x29695: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x04\x01\x05", // 𩚕
+ 0x29696: "\x03\x04\x01\x05\x01\x01\x05\x04\x05\x02\x01\x01", // 𩚖
+ 0x29697: "\x03\x04\x01\x05\x01\x01\x05\x04\x04\x05\x03\x05", // 𩚗
+ 0x29698: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x05\x05\x04", // 𩚘
+ 0x29699: "\x03\x04\x01\x05\x01\x01\x05\x04\x02\x03\x04\x03", // 𩚙
+ 0x2969a: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x03\x05\x05", // 𩚚
+ 0x2969b: "\x03\x04\x01\x05\x01\x01\x05\x04\x02\x05\x03\x04", // 𩚛
+ 0x2969c: "\x03\x04\x01\x05\x03\x04\x01\x05\x01\x01\x03\x04", // 𩚜
+ 0x2969d: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x04\x05\x03", // 𩚝
+ 0x2969e: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x05\x05\x04", // 𩚞
+ 0x2969f: "\x03\x04\x04\x05\x01\x01\x05\x04\x05\x01\x03\x04", // 𩚟
+ 0x296a0: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x01\x05\x03", // 𩚠
+ 0x296a1: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x05\x04", // 𩚡
+ 0x296a2: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x05\x05\x01", // 𩚢
+ 0x296a3: "\x03\x04\x01\x05\x01\x01\x05\x04\x02\x05\x01\x01", // 𩚣
+ 0x296a4: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x01\x01\x05", // 𩚤
+ 0x296a5: "\x03\x04\x01\x05\x01\x01\x05\x04\x05\x02\x01\x05", // 𩚥
+ 0x296a6: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x05\x05\x03", // 𩚦
+ 0x296a7: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x05\x03\x04", // 𩚧
+ 0x296a8: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x02\x01\x02\x01", // 𩚨
+ 0x296a9: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x02\x02\x05\x01", // 𩚩
+ 0x296aa: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x01\x02\x03\x04", // 𩚪
+ 0x296ab: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x02\x01\x02\x01", // 𩚫
+ 0x296ac: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x05\x01\x03\x05", // 𩚬
+ 0x296ad: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x02\x01\x02\x04", // 𩚭
+ 0x296ae: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x04\x05\x04", // 𩚮
+ 0x296af: "\x03\x04\x01\x05\x01\x01\x05\x04\x05\x01\x03\x01\x05", // 𩚯
+ 0x296b0: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x02\x01\x03\x01\x02", // 𩚰
+ 0x296b1: "\x03\x04\x01\x05\x01\x01\x05\x04\x02\x05\x02\x05\x01", // 𩚱
+ 0x296b2: "\x03\x04\x01\x05\x01\x01\x05\x04\x02\x05\x01\x01\x02", // 𩚲
+ 0x296b3: "\x03\x04\x01\x05\x01\x01\x05\x04\x05\x04\x01\x03\x02", // 𩚳
+ 0x296b4: "\x03\x05\x04\x05\x05\x03\x04\x01\x05\x01\x01\x05\x04", // 𩚴
+ 0x296b5: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x02\x02\x01\x01", // 𩚵
+ 0x296b6: "\x03\x04\x01\x05\x01\x01\x05\x04\x02\x05\x01\x03\x05", // 𩚶
+ 0x296b7: "\x04\x01\x04\x03\x01\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𩚷
+ 0x296b8: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x01\x02\x03\x04", // 𩚸
+ 0x296b9: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x04\x04\x05\x04", // 𩚹
+ 0x296ba: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x05\x03\x03\x03", // 𩚺
+ 0x296bb: "\x02\x01\x02\x01\x03\x05\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𩚻
+ 0x296bc: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x03\x02\x04\x01", // 𩚼
+ 0x296bd: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x01\x02\x01\x04", // 𩚽
+ 0x296be: "\x02\x01\x01\x03\x05\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 𩚾
+ 0x296bf: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x01\x03\x05\x04", // 𩚿
+ 0x296c0: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x05\x03\x04\x01", // 𩛀
+ 0x296c1: "\x03\x05\x03\x05\x02\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𩛁
+ 0x296c2: "\x03\x04\x04\x05\x01\x01\x05\x04\x05\x03\x01\x05\x04", // 𩛂
+ 0x296c3: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x03\x05\x04\x04", // 𩛃
+ 0x296c4: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x05\x03\x04", // 𩛄
+ 0x296c5: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x04\x05\x03\x01", // 𩛅
+ 0x296c6: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x01\x05\x02\x05", // 𩛆
+ 0x296c7: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x02\x05\x01\x01", // 𩛇
+ 0x296c8: "\x02\x01\x03\x05\x04\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𩛈
+ 0x296c9: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x05\x01\x02\x02\x05", // 𩛉
+ 0x296ca: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x01\x01\x02\x05\x02", // 𩛊
+ 0x296cb: "\x03\x04\x02\x05\x01\x01\x05\x04\x05\x05\x05\x02\x05\x02", // 𩛋
+ 0x296cc: "\x03\x04\x02\x05\x01\x01\x05\x04\x01\x03\x04\x05\x03\x01", // 𩛌
+ 0x296cd: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x02\x05\x01\x05\x01", // 𩛍
+ 0x296ce: "\x03\x04\x01\x05\x01\x01\x05\x04\x02\x05\x02\x02\x05\x01", // 𩛎
+ 0x296cf: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x02\x01\x05\x03\x01", // 𩛏
+ 0x296d0: "\x03\x04\x01\x05\x01\x01\x05\x04\x05\x01\x03\x01\x02\x01", // 𩛐
+ 0x296d1: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x02\x01\x02\x05\x04", // 𩛑
+ 0x296d2: "\x03\x01\x01\x02\x01\x02\x01\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𩛒
+ 0x296d3: "\x03\x04\x01\x05\x01\x01\x05\x04\x05\x02\x04\x05\x04", // 𩛓
+ 0x296d4: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x01\x02\x01\x03\x05", // 𩛔
+ 0x296d5: "\x03\x01\x01\x02\x05\x02\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 𩛕
+ 0x296d6: "\x03\x04\x01\x05\x01\x05\x04\x04\x04\x05\x05\x03\x01", // 𩛖
+ 0x296d7: "\x05\x03\x01\x05\x01\x05\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𩛗
+ 0x296d8: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x02\x01\x03\x04", // 𩛘
+ 0x296d9: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x04\x04\x01\x05\x03", // 𩛙
+ 0x296da: "\x04\x01\x03\x05\x03\x04\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 𩛚
+ 0x296db: "\x03\x04\x01\x05\x01\x01\x05\x03\x04\x01\x02\x02\x01\x03\x04", // 𩛛
+ 0x296dc: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x05\x04\x01\x02\x04", // 𩛜
+ 0x296dd: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x04\x04\x03\x01\x02\x04", // 𩛝
+ 0x296de: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x04\x04\x05\x02\x01", // 𩛞
+ 0x296df: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x05\x02\x05\x01\x03\x05", // 𩛟
+ 0x296e0: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x04\x03\x04\x01\x02\x01", // 𩛠
+ 0x296e1: "\x03\x04\x01\x05\x01\x01\x05\x04\x04\x05\x01\x01\x05\x03\x04", // 𩛡
+ 0x296e2: "\x03\x02\x02\x03\x01\x03\x04\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𩛢
+ 0x296e3: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x02\x01\x04\x05\x04\x04", // 𩛣
+ 0x296e4: "\x03\x04\x01\x05\x01\x01\x05\x04\x05\x04\x02\x05\x01\x01\x02", // 𩛤
+ 0x296e5: "\x01\x02\x03\x03\x04\x01\x05\x01\x01\x05\x04\x05\x01\x01\x02", // 𩛥
+ 0x296e6: "\x03\x04\x01\x05\x01\x01\x05\x04\x02\x05\x01\x03\x01\x02\x01", // 𩛦
+ 0x296e7: "\x03\x04\x01\x05\x01\x01\x05\x04\x02\x05\x01\x01\x01\x01\x02", // 𩛧
+ 0x296e8: "\x03\x04\x01\x05\x01\x01\x03\x02\x05\x01\x01\x03\x05", // 𩛨
+ 0x296e9: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x03\x04\x03\x04\x03\x04", // 𩛩
+ 0x296ea: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x05\x01\x03\x03\x01\x05", // 𩛪
+ 0x296eb: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x03\x03\x01\x01\x03\x04", // 𩛫
+ 0x296ec: "\x02\x01\x02\x01\x01\x02\x01\x03\x04\x01\x03\x02\x05\x01\x01\x05\x04", // 𩛬
+ 0x296ed: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x05\x04\x03\x05\x04\x01", // 𩛭
+ 0x296ee: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x02\x05\x04\x03\x04", // 𩛮
+ 0x296ef: "\x03\x04\x01\x05\x01\x01\x05\x04\x02\x05\x03\x05\x02\x05\x01", // 𩛯
+ 0x296f0: "\x01\x02\x04\x01\x03\x04\x04\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𩛰
+ 0x296f1: "\x03\x04\x04\x05\x01\x01\x05\x04\x02\x04\x03\x03\x05\x04\x01", // 𩛱
+ 0x296f2: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x02\x04\x01\x05", // 𩛲
+ 0x296f3: "\x01\x02\x03\x04\x03\x05\x04\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𩛳
+ 0x296f4: "\x03\x04\x04\x05\x01\x01\x05\x04\x02\x05\x01\x01\x02\x03\x04", // 𩛴
+ 0x296f5: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x01\x02\x03\x04\x05\x03", // 𩛵
+ 0x296f6: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x03\x01\x02\x02\x05\x01", // 𩛶
+ 0x296f7: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x03\x02\x04\x02\x05\x01", // 𩛷
+ 0x296f8: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x01\x05\x05\x04\x01\x04", // 𩛸
+ 0x296f9: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x01\x01\x05\x01\x02\x01", // 𩛹
+ 0x296fa: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x05\x04\x03\x01\x02\x03\x04", // 𩛺
+ 0x296fb: "\x05\x01\x03\x02\x04\x01\x03\x04\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𩛻
+ 0x296fc: "\x03\x04\x01\x05\x01\x01\x05\x04\x05\x05\x01\x02\x04\x01\x03\x04", // 𩛼
+ 0x296fd: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x05\x03\x01\x01\x02\x05\x02", // 𩛽
+ 0x296fe: "\x03\x04\x01\x05\x01\x01\x05\x04\x05\x01\x01\x02\x04\x01\x03\x04", // 𩛾
+ 0x296ff: "\x03\x04\x01\x05\x01\x01\x05\x04\x02\x05\x01\x01\x03\x05\x03\x03", // 𩛿
+ 0x29700: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x01\x02\x01\x02\x01\x02\x01\x01", // 𩜀
+ 0x29701: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x02\x01\x03\x05\x03\x05\x04", // 𩜁
+ 0x29702: "\x03\x04\x01\x05\x01\x01\x05\x04\x02\x01\x01\x02\x03\x04\x05\x04", // 𩜂
+ 0x29703: "\x03\x04\x01\x05\x01\x01\x05\x04\x02\x05\x01\x01\x01\x01\x03\x04", // 𩜃
+ 0x29704: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x02\x01\x05\x05\x01\x02\x01", // 𩜄
+ 0x29705: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x02\x02\x01\x02\x05\x01\x01", // 𩜅
+ 0x29706: "\x03\x04\x01\x05\x01\x01\x05\x04\x05\x05\x04\x05\x05\x04\x03\x05", // 𩜆
+ 0x29707: "\x03\x04\x01\x05\x01\x01\x05\x04\x04\x03\x01\x01\x03\x04\x05\x05", // 𩜇
+ 0x29708: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x02\x01\x02\x03\x01\x03\x04", // 𩜈
+ 0x29709: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x04\x01\x01\x02\x02\x05\x01", // 𩜉
+ 0x2970a: "\x03\x04\x01\x05\x01\x01\x05\x04\x05\x05\x05\x02\x05\x01\x02\x01", // 𩜊
+ 0x2970b: "\x03\x04\x01\x05\x01\x01\x05\x04\x02\x04\x03\x02\x05\x02\x05\x01", // 𩜋
+ 0x2970c: "\x03\x04\x01\x05\x01\x01\x05\x04\x04\x04\x05\x03\x05\x04\x05\x05", // 𩜌
+ 0x2970d: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x02\x05\x01\x01\x02\x03\x04", // 𩜍
+ 0x2970e: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x01\x02\x01\x03\x05\x01\x01", // 𩜎
+ 0x2970f: "\x03\x04\x01\x05\x01\x01\x05\x04\x04\x01\x05\x03\x03\x04\x04\x04", // 𩜏
+ 0x29710: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x01\x01\x05\x04\x05\x04\x04", // 𩜐
+ 0x29711: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𩜑
+ 0x29712: "\x05\x03\x04\x03\x01\x01\x02\x01\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𩜒
+ 0x29713: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x04\x04\x03\x01\x02\x03\x04", // 𩜓
+ 0x29714: "\x03\x03\x02\x05\x03\x02\x05\x04\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𩜔
+ 0x29715: "\x05\x01\x05\x01\x02\x05\x01\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𩜕
+ 0x29716: "\x03\x04\x01\x05\x01\x01\x05\x04\x02\x05\x02\x03\x05\x02\x03\x04", // 𩜖
+ 0x29717: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x05\x04\x02\x05\x01\x02\x01", // 𩜗
+ 0x29718: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x01\x03\x04\x03\x04\x01\x02", // 𩜘
+ 0x29719: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x02\x01\x02\x02\x01\x03\x05", // 𩜙
+ 0x2971a: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x05\x03\x05\x01\x05\x03\x05", // 𩜚
+ 0x2971b: "\x03\x04\x01\x05\x01\x01\x05\x04\x04\x01\x04\x03\x01\x05\x02", // 𩜛
+ 0x2971c: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x02\x01\x04\x03\x01\x01\x02", // 𩜜
+ 0x2971d: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x02\x05\x02\x02\x05\x03\x01", // 𩜝
+ 0x2971e: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x02\x01\x02\x01\x05\x02", // 𩜞
+ 0x2971f: "\x03\x04\x01\x05\x01\x01\x05\x04\x02\x05\x01\x01\x03\x05\x05\x02", // 𩜟
+ 0x29720: "\x03\x04\x04\x05\x01\x01\x05\x04\x02\x05\x02\x01\x03\x02\x05\x01", // 𩜠
+ 0x29721: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x05\x01\x05\x04\x04\x04\x04", // 𩜡
+ 0x29722: "\x04\x01\x05\x03\x03\x01\x03\x04\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𩜢
+ 0x29723: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x03\x01\x01\x01\x02\x03\x04", // 𩜣
+ 0x29724: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x04\x01\x05\x03\x02\x05\x04", // 𩜤
+ 0x29725: "\x04\x04\x01\x05\x03\x02\x05\x04\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 𩜥
+ 0x29726: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x04\x05\x01\x02\x01\x03\x04", // 𩜦
+ 0x29727: "\x03\x04\x04\x05\x01\x01\x05\x04\x05\x01\x03\x03\x05\x04\x03\x05", // 𩜧
+ 0x29728: "\x02\x01\x01\x03\x05\x04\x05\x04\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 𩜨
+ 0x29729: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x05\x01\x02\x01\x01\x02\x01", // 𩜩
+ 0x2972a: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x03\x04\x01\x01\x02\x03\x04", // 𩜪
+ 0x2972b: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x03\x04\x03\x01\x03\x04", // 𩜫
+ 0x2972c: "\x01\x02\x05\x01\x02\x05\x05\x04\x03\x04\x04\x05\x01\x01\x05\x04", // 𩜬
+ 0x2972d: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x01\x02\x03\x04\x04\x04\x01\x02", // 𩜭
+ 0x2972e: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x02\x05\x01\x02\x05\x05\x05", // 𩜮
+ 0x2972f: "\x03\x04\x01\x05\x01\x01\x05\x04\x04\x04\x05\x03\x04\x03\x04\x05\x04", // 𩜯
+ 0x29730: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 𩜰
+ 0x29731: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x02\x02\x01\x01\x01\x03\x05\x05", // 𩜱
+ 0x29732: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 𩜲
+ 0x29733: "\x03\x04\x01\x05\x01\x01\x05\x04\x05\x04\x02\x05\x01\x01\x02\x05\x03", // 𩜳
+ 0x29734: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x01\x03\x05\x03\x04\x02\x05\x01", // 𩜴
+ 0x29735: "\x03\x04\x01\x05\x01\x01\x05\x04\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 𩜵
+ 0x29736: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x04\x01\x03\x05\x01\x01\x02\x02", // 𩜶
+ 0x29737: "\x03\x04\x01\x05\x01\x01\x05\x04\x05\x04\x05\x02\x03\x01\x02\x03\x04", // 𩜷
+ 0x29738: "\x04\x05\x02\x04\x03\x01\x03\x04\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𩜸
+ 0x29739: "\x03\x04\x01\x05\x01\x01\x05\x04\x05\x01\x05\x05\x01\x05\x01\x03\x04", // 𩜹
+ 0x2973a: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x05\x04\x01\x01\x01\x02\x05\x01", // 𩜺
+ 0x2973b: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𩜻
+ 0x2973c: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x01\x03\x02\x05\x01\x01", // 𩜼
+ 0x2973d: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x01\x04\x03\x01\x03\x03\x03\x03", // 𩜽
+ 0x2973e: "\x03\x03\x02\x04\x04\x01\x01\x01\x02\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𩜾
+ 0x2973f: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x04\x04\x03\x05\x01\x02\x03\x04", // 𩜿
+ 0x29740: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x02\x01\x02\x02\x01\x02\x03\x04", // 𩝀
+ 0x29741: "\x03\x04\x01\x05\x01\x01\x05\x04\x05\x01\x05\x05\x01\x05\x01\x03\x02", // 𩝁
+ 0x29742: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x01\x02\x03\x04\x01\x01\x03\x02", // 𩝂
+ 0x29743: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x02\x01\x02\x02\x03\x04\x01\x02", // 𩝃
+ 0x29744: "\x03\x04\x04\x05\x01\x01\x05\x04\x02\x05\x05\x02\x05\x02\x05\x01", // 𩝄
+ 0x29745: "\x03\x04\x01\x05\x01\x01\x05\x04\x04\x03\x01\x01\x02\x01\x05\x03\x01", // 𩝅
+ 0x29746: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x05\x02\x05\x03\x04\x01\x03\x04", // 𩝆
+ 0x29747: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x02\x01\x01\x01\x02\x03\x04", // 𩝇
+ 0x29748: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 𩝈
+ 0x29749: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x03\x04\x04\x02\x05\x02\x02\x01", // 𩝉
+ 0x2974a: "\x03\x04\x04\x05\x01\x01\x05\x04\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 𩝊
+ 0x2974b: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x01\x02\x03\x04\x04\x03\x03\x04", // 𩝋
+ 0x2974c: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 𩝌
+ 0x2974d: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x05\x01\x03\x03\x01\x01\x03\x04", // 𩝍
+ 0x2974e: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x05\x02\x05\x01\x03\x05\x04\x04", // 𩝎
+ 0x2974f: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x03\x01\x01\x02\x01\x01\x03\x04", // 𩝏
+ 0x29750: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x03\x01\x05\x05\x04\x05\x05\x04", // 𩝐
+ 0x29751: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x04\x05\x01\x02\x05\x01\x01\x01", // 𩝑
+ 0x29752: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x04\x05\x03\x01\x01\x02\x05\x02", // 𩝒
+ 0x29753: "\x04\x04\x05\x03\x01\x01\x02\x05\x02\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 𩝓
+ 0x29754: "\x03\x04\x04\x05\x01\x01\x05\x04\x05\x02\x01\x03\x04\x02\x05\x01\x01", // 𩝔
+ 0x29755: "\x05\x04\x05\x02\x03\x03\x01\x03\x04\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 𩝕
+ 0x29756: "\x05\x05\x05\x01\x03\x05\x04\x02\x02\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 𩝖
+ 0x29757: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩝗
+ 0x29758: "\x03\x04\x01\x05\x01\x01\x05\x04\x05\x04\x01\x02\x01\x03\x03\x05\x04", // 𩝘
+ 0x29759: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x02\x01\x03\x03\x05\x02\x05\x01\x01", // 𩝙
+ 0x2975a: "\x03\x04\x01\x05\x01\x01\x05\x04\x05\x02\x02\x01\x02\x05\x01\x02\x01\x04", // 𩝚
+ 0x2975b: "\x03\x04\x01\x05\x01\x01\x05\x04\x04\x04\x05\x03\x01\x01\x02\x02\x05\x01", // 𩝛
+ 0x2975c: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x04\x05\x03\x05\x02\x05\x01\x03\x05", // 𩝜
+ 0x2975d: "\x03\x04\x01\x05\x01\x01\x05\x04\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 𩝝
+ 0x2975e: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x04\x01\x05\x01\x01\x03\x02\x05\x01", // 𩝞
+ 0x2975f: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x01\x02\x03\x02\x01\x05\x01\x01", // 𩝟
+ 0x29760: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x02\x05\x01\x01\x01\x01\x03\x04\x04", // 𩝠
+ 0x29761: "\x03\x04\x01\x05\x01\x01\x05\x04\x02\x05\x01\x02\x01\x02\x05\x01\x05\x01", // 𩝡
+ 0x29762: "\x03\x04\x01\x05\x01\x01\x05\x04\x04\x05\x01\x01\x05\x04\x05\x02", // 𩝢
+ 0x29763: "\x03\x04\x01\x05\x01\x01\x05\x04\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 𩝣
+ 0x29764: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x02\x01\x01\x02\x01\x04\x05\x04\x04", // 𩝤
+ 0x29765: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 𩝥
+ 0x29766: "\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𩝦
+ 0x29767: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x02\x02\x03\x05\x04\x03\x03\x03", // 𩝧
+ 0x29768: "\x03\x04\x01\x05\x01\x01\x05\x04\x02\x01\x02\x01\x02\x01\x01\x02\x03\x05", // 𩝨
+ 0x29769: "\x04\x04\x05\x03\x01\x01\x02\x01\x02\x01\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𩝩
+ 0x2976a: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x04\x05\x04\x01\x04\x03\x01\x01\x02", // 𩝪
+ 0x2976b: "\x05\x02\x01\x03\x03\x05\x04\x04\x01\x02\x04\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𩝫
+ 0x2976c: "\x03\x04\x01\x05\x01\x01\x05\x04\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 𩝬
+ 0x2976d: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x03\x01\x01\x01\x03\x01\x02\x01", // 𩝭
+ 0x2976e: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x02\x02\x05\x01\x02\x05\x05\x01\x05", // 𩝮
+ 0x2976f: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x04\x05\x03\x04\x03\x04\x03\x05\x04", // 𩝯
+ 0x29770: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x04\x04\x03\x05\x04\x01\x02\x03\x04", // 𩝰
+ 0x29771: "\x03\x04\x01\x05\x01\x01\x05\x04\x04\x03\x01\x03\x04\x02\x05\x02\x02\x01", // 𩝱
+ 0x29772: "\x03\x04\x01\x05\x01\x01\x05\x04\x04\x01\x05\x05\x04\x02\x05\x01\x02\x01", // 𩝲
+ 0x29773: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x02\x02\x01\x03\x02\x05\x01\x01\x02", // 𩝳
+ 0x29774: "\x03\x04\x01\x05\x01\x01\x05\x04\x05\x02\x01\x03\x03\x05\x04\x04\x01\x02\x04", // 𩝴
+ 0x29775: "\x02\x05\x01\x05\x01\x02\x05\x01\x05\x01\x03\x04\x01\x05\x01\x01\x05\x04", // 𩝵
+ 0x29776: "\x03\x03\x02\x02\x03\x05\x04\x03\x03\x03\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 𩝶
+ 0x29777: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x02\x05\x01\x01\x05\x04\x04\x04\x04", // 𩝷
+ 0x29778: "\x03\x04\x01\x05\x01\x01\x05\x04\x04\x05\x03\x05\x02\x05\x01\x03\x05\x04", // 𩝸
+ 0x29779: "\x03\x04\x01\x05\x01\x01\x05\x04\x05\x05\x05\x02\x05\x01\x05\x02\x01\x05", // 𩝹
+ 0x2977a: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x01\x03\x04\x04\x03\x05\x03\x01", // 𩝺
+ 0x2977b: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 𩝻
+ 0x2977c: "\x03\x04\x01\x05\x05\x01\x05\x04\x01\x01\x03\x04\x01\x02\x01\x03\x01\x02", // 𩝼
+ 0x2977d: "\x03\x04\x01\x05\x01\x01\x05\x04\x05\x01\x05\x05\x04\x02\x05\x01\x02\x01\x04", // 𩝽
+ 0x2977e: "\x03\x04\x01\x05\x01\x01\x05\x04\x04\x01\x04\x03\x02\x05\x03\x05\x02\x05\x01", // 𩝾
+ 0x2977f: "\x03\x04\x01\x05\x01\x01\x05\x04\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01", // 𩝿
+ 0x29780: "\x03\x04\x01\x05\x01\x01\x05\x04\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 𩞀
+ 0x29781: "\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𩞁
+ 0x29782: "\x02\x05\x01\x02\x01\x05\x03\x01\x05\x03\x05\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𩞂
+ 0x29783: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 𩞃
+ 0x29784: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01", // 𩞄
+ 0x29785: "\x03\x04\x01\x05\x01\x01\x05\x04\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𩞅
+ 0x29786: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04", // 𩞆
+ 0x29787: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𩞇
+ 0x29788: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x03\x05\x03\x03\x03\x04\x04\x05\x04", // 𩞈
+ 0x29789: "\x03\x04\x01\x05\x01\x01\x05\x04\x02\x05\x02\x04\x04\x05\x01\x01\x02\x03\x04", // 𩞉
+ 0x2978a: "\x03\x04\x01\x05\x01\x01\x05\x04\x05\x01\x01\x05\x04\x01\x05\x03\x05", // 𩞊
+ 0x2978b: "\x03\x04\x01\x05\x01\x01\x05\x04\x04\x01\x03\x05\x01\x01\x02\x05\x01\x01\x02", // 𩞋
+ 0x2978c: "\x01\x02\x05\x01\x02\x03\x04\x03\x05\x03\x04\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𩞌
+ 0x2978d: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x02\x05\x01\x02\x03\x04\x04\x05\x04", // 𩞍
+ 0x2978e: "\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𩞎
+ 0x2978f: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02", // 𩞏
+ 0x29790: "\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𩞐
+ 0x29791: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x02\x01\x02\x01\x02\x01\x03\x04\x01\x02", // 𩞑
+ 0x29792: "\x03\x04\x04\x05\x01\x01\x05\x04\x02\x05\x01\x02\x01\x02\x05\x02\x05\x01\x01", // 𩞒
+ 0x29793: "\x03\x04\x04\x05\x01\x01\x05\x04\x02\x05\x01\x01\x02\x02\x05\x02\x05\x01\x01", // 𩞓
+ 0x29794: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x01\x01\x02\x02\x01\x03\x04\x01\x02", // 𩞔
+ 0x29795: "\x01\x02\x05\x01\x02\x03\x04\x03\x01\x03\x04\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 𩞕
+ 0x29796: "\x03\x04\x01\x05\x01\x01\x05\x04\x04\x03\x01\x01\x02\x01\x02\x05\x02\x02\x01", // 𩞖
+ 0x29797: "\x03\x04\x01\x05\x01\x01\x05\x04\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x04", // 𩞗
+ 0x29798: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04", // 𩞘
+ 0x29799: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 𩞙
+ 0x2979a: "\x03\x02\x05\x01\x01\x01\x05\x01\x05\x03\x05\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𩞚
+ 0x2979b: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 𩞛
+ 0x2979c: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x04\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 𩞜
+ 0x2979d: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x02\x05\x05\x04\x01\x03\x04\x03\x05\x04", // 𩞝
+ 0x2979e: "\x03\x04\x01\x05\x01\x01\x05\x04\x02\x05\x01\x01\x05\x03\x05\x01\x05\x03\x05", // 𩞞
+ 0x2979f: "\x05\x02\x01\x03\x03\x05\x04\x04\x01\x02\x04\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𩞟
+ 0x297a0: "\x05\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𩞠
+ 0x297a1: "\x03\x04\x01\x05\x01\x01\x05\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05\x03\x04", // 𩞡
+ 0x297a2: "\x03\x04\x01\x05\x01\x01\x05\x04\x05\x02\x01\x03\x01\x02\x01\x03\x05\x04\x01", // 𩞢
+ 0x297a3: "\x02\x05\x01\x01\x05\x03\x03\x01\x01\x02\x05\x02\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𩞣
+ 0x297a4: "\x04\x01\x02\x05\x01\x05\x02\x01\x03\x01\x03\x04\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𩞤
+ 0x297a5: "\x03\x04\x01\x05\x01\x01\x05\x04\x02\x04\x03\x02\x05\x02\x05\x01\x03\x01\x03\x04", // 𩞥
+ 0x297a6: "\x03\x04\x01\x05\x01\x01\x05\x04\x02\x04\x03\x04\x05\x02\x05\x01\x03\x01\x01\x02", // 𩞦
+ 0x297a7: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x05\x02\x05\x01\x03\x05\x03\x03\x03\x04", // 𩞧
+ 0x297a8: "\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𩞨
+ 0x297a9: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04", // 𩞩
+ 0x297aa: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x03\x02\x05\x02\x02\x01\x03\x02\x05\x02\x02", // 𩞪
+ 0x297ab: "\x03\x04\x01\x05\x01\x01\x05\x04\x02\x05\x01\x02\x01\x01\x02\x01\x02\x01\x03\x04", // 𩞫
+ 0x297ac: "\x03\x04\x01\x05\x01\x01\x05\x04\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 𩞬
+ 0x297ad: "\x03\x04\x01\x05\x01\x01\x05\x04\x04\x03\x01\x01\x02\x01\x04\x05\x05\x03\x04", // 𩞭
+ 0x297ae: "\x03\x04\x01\x05\x01\x01\x05\x04\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01\x01\x01", // 𩞮
+ 0x297af: "\x03\x04\x04\x05\x01\x01\x05\x04\x02\x05\x01\x01\x01\x02\x05\x01\x01\x02\x01\x01", // 𩞯
+ 0x297b0: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x01\x04\x03\x01\x04\x03\x04\x01\x02\x05\x01", // 𩞰
+ 0x297b1: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x01\x04\x03\x01\x01\x02\x04\x05\x04", // 𩞱
+ 0x297b2: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01", // 𩞲
+ 0x297b3: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x01\x02\x02\x03\x04\x03\x04\x01\x02", // 𩞳
+ 0x297b4: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x01\x02\x02\x04\x05\x03\x04\x01\x02", // 𩞴
+ 0x297b5: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x02\x01\x04\x05\x02\x01\x05\x05\x01\x02\x01", // 𩞵
+ 0x297b6: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x02\x05\x02\x05\x04\x01\x01\x03\x04", // 𩞶
+ 0x297b7: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x02\x01\x05\x02\x05\x01\x02\x05\x01\x02\x01", // 𩞷
+ 0x297b8: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x05\x02\x02\x01\x04\x03\x01\x02\x03\x04", // 𩞸
+ 0x297b9: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x04\x04\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 𩞹
+ 0x297ba: "\x03\x05\x01\x02\x01\x02\x05\x01\x03\x05\x03\x04\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𩞺
+ 0x297bb: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 𩞻
+ 0x297bc: "\x03\x04\x01\x05\x01\x01\x05\x04\x05\x04\x05\x04\x05\x04\x03\x04\x02\x04\x04\x04", // 𩞼
+ 0x297bd: "\x03\x04\x01\x05\x01\x01\x05\x04\x05\x04\x03\x03\x04\x05\x01\x05\x03\x05\x05\x04", // 𩞽
+ 0x297be: "\x03\x04\x01\x05\x01\x01\x05\x04\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 𩞾
+ 0x297bf: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x03\x01\x02\x05\x01\x05\x03\x04\x04\x05\x04\x04", // 𩞿
+ 0x297c0: "\x03\x04\x01\x05\x01\x01\x05\x04\x04\x01\x05\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 𩟀
+ 0x297c1: "\x03\x04\x01\x05\x01\x01\x05\x04\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 𩟁
+ 0x297c2: "\x03\x04\x01\x05\x01\x01\x05\x04\x02\x05\x01\x02\x02\x05\x02\x05\x01\x04\x05\x04", // 𩟂
+ 0x297c3: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x04\x05\x02\x04\x01\x03\x04\x03\x04\x04\x05\x04", // 𩟃
+ 0x297c4: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x02\x02\x05\x01\x02\x05\x05\x01\x05\x04\x04\x04\x04", // 𩟄
+ 0x297c5: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 𩟅
+ 0x297c6: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x03\x01\x02\x01\x03\x05\x04\x01\x04\x05\x04", // 𩟆
+ 0x297c7: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x02\x05\x03\x04\x03\x01\x02\x03\x04\x01\x03\x04", // 𩟇
+ 0x297c8: "\x03\x04\x01\x05\x01\x01\x05\x04\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x01\x02\x01", // 𩟈
+ 0x297c9: "\x03\x04\x01\x05\x01\x01\x05\x04\x02\x05\x02\x02\x01\x03\x05\x01\x02\x01\x01\x02\x01", // 𩟉
+ 0x297ca: "\x03\x04\x01\x05\x01\x01\x05\x04\x02\x05\x01\x02\x02\x01\x01\x03\x01\x01\x05\x03\x04", // 𩟊
+ 0x297cb: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x05\x01\x03\x03\x05\x04\x01\x01\x01\x02\x05\x01", // 𩟋
+ 0x297cc: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x02\x01\x02\x01\x02\x01\x05\x04\x03\x01\x03\x04", // 𩟌
+ 0x297cd: "\x03\x04\x01\x05\x01\x01\x05\x04\x02\x05\x03\x01\x01\x05\x04\x03\x01\x02\x03\x04\x01", // 𩟍
+ 0x297ce: "\x03\x04\x04\x05\x01\x01\x05\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 𩟎
+ 0x297cf: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x05\x03\x04\x01\x05\x03\x04\x02\x05\x02\x02\x01", // 𩟏
+ 0x297d0: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x01\x04\x03\x01\x01\x01\x02\x04\x05\x04", // 𩟐
+ 0x297d1: "\x03\x04\x04\x05\x01\x01\x05\x04\x02\x05\x02\x02\x05\x02\x02\x05\x02\x03\x04\x03\x02", // 𩟑
+ 0x297d2: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x04\x05\x03\x04\x01\x02\x01\x03\x04\x03\x05\x04", // 𩟒
+ 0x297d3: "\x03\x04\x01\x05\x01\x01\x05\x04\x02\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𩟓
+ 0x297d4: "\x03\x04\x01\x05\x01\x01\x05\x04\x04\x04\x05\x03\x05\x04\x01\x05\x04\x01\x01\x02\x03\x04", // 𩟔
+ 0x297d5: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 𩟕
+ 0x297d6: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x05\x02\x05\x01\x03\x05\x03\x05\x02\x05\x01\x03\x05", // 𩟖
+ 0x297d7: "\x04\x04\x01\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𩟗
+ 0x297d8: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x02\x01\x02\x05\x02\x05\x03\x04\x01\x04\x04\x04\x04", // 𩟘
+ 0x297d9: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03\x04", // 𩟙
+ 0x297da: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x05\x03\x02\x05\x04\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 𩟚
+ 0x297db: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x02\x01\x02\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 𩟛
+ 0x297dc: "\x02\x05\x02\x03\x04\x04\x05\x01\x01\x05\x04\x05\x02\x02\x05\x02\x01\x05\x04\x03\x02\x05", // 𩟜
+ 0x297dd: "\x03\x04\x01\x05\x01\x01\x05\x04\x05\x01\x01\x02\x01\x04\x04\x04\x04\x02\x05\x02\x02\x01", // 𩟝
+ 0x297de: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x02\x02\x05\x02\x02\x01\x04\x05\x03\x05\x04", // 𩟞
+ 0x297df: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x03\x01\x02\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 𩟟
+ 0x297e0: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x05\x05\x04", // 𩟠
+ 0x297e1: "\x03\x04\x04\x05\x01\x01\x05\x04\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x01\x02\x04", // 𩟡
+ 0x297e2: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x02\x04\x04\x01\x01\x02\x05\x01\x01\x02\x04", // 𩟢
+ 0x297e3: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x03\x01\x02\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01", // 𩟣
+ 0x297e4: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x03\x01\x02\x01\x02\x05\x03\x04\x01\x02\x05\x02\x02\x01", // 𩟤
+ 0x297e5: "\x03\x04\x01\x05\x01\x01\x05\x04\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x02\x05", // 𩟥
+ 0x297e6: "\x03\x04\x01\x05\x01\x01\x05\x04\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x01\x05\x03\x04", // 𩟦
+ 0x297e7: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x03\x04", // 𩟧
+ 0x297e8: "\x03\x05\x01\x02\x01\x02\x05\x01\x03\x04\x03\x04\x02\x05\x01\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𩟨
+ 0x297e9: "\x03\x04\x04\x05\x01\x01\x05\x04\x04\x04\x05\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 𩟩
+ 0x297ea: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𩟪
+ 0x297eb: "\x03\x04\x04\x05\x01\x01\x05\x04\x05\x04\x05\x04\x05\x04\x05\x04\x01\x02\x05\x03\x05\x01\x01", // 𩟫
+ 0x297ec: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01", // 𩟬
+ 0x297ed: "\x03\x04\x01\x05\x01\x01\x05\x04\x04\x01\x04\x03\x01\x03\x05\x04\x01\x01\x05\x01\x05\x01\x01\x01", // 𩟭
+ 0x297ee: "\x03\x04\x01\x05\x01\x01\x05\x04\x04\x01\x02\x05\x02\x02\x01\x02\x04\x01\x03\x04\x03\x05\x03\x04", // 𩟮
+ 0x297ef: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x04\x05\x02\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𩟯
+ 0x297f0: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x02\x05\x01\x02\x04\x05\x01\x03\x02\x05\x01\x01\x02\x03\x04", // 𩟰
+ 0x297f1: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x02\x01\x01\x05\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𩟱
+ 0x297f2: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x03\x04\x01\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 𩟲
+ 0x297f3: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x04\x01\x01\x02\x03\x04\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 𩟳
+ 0x297f4: "\x03\x04\x01\x05\x01\x01\x05\x04\x01\x02\x03\x05\x01\x02\x03\x05\x02\x05\x01\x01\x02\x01\x05\x04", // 𩟴
+ 0x297f5: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x01\x04\x03\x01\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩟵
+ 0x297f6: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x04\x03\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 𩟶
+ 0x297f7: "\x05\x05\x05\x02\x05\x01\x05\x02\x01\x05\x03\x02\x04\x01\x01\x01\x02\x01\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𩟷
+ 0x297f8: "\x04\x04\x05\x01\x02\x01\x02\x05\x01\x04\x04\x05\x01\x02\x01\x02\x05\x01\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𩟸
+ 0x297f9: "\x03\x04\x04\x05\x01\x01\x05\x04\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩟹
+ 0x297fa: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x02\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01", // 𩟺
+ 0x297fb: "\x03\x04\x04\x05\x01\x01\x05\x04\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 𩟻
+ 0x297fc: "\x03\x04\x04\x05\x01\x01\x05\x04\x03\x04\x04\x03\x05\x03\x01\x04\x03\x01\x01\x01\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 𩟼
+ 0x297fd: "\x03\x04\x04\x05\x01\x01\x05\x04\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x03\x04\x01", // 𩟽
+ 0x297fe: "\x03\x05\x05\x03\x05\x01\x05", // 𩟾
+ 0x297ff: "\x03\x05\x05\x02\x05\x03\x04", // 𩟿
+ 0x29800: "\x03\x05\x05\x05\x02\x01\x05", // 𩠀
+ 0x29801: "\x03\x05\x05\x01\x02\x02\x01\x01", // 𩠁
+ 0x29802: "\x03\x05\x05\x03\x01\x05\x02\x05", // 𩠂
+ 0x29803: "\x03\x05\x05\x01\x04\x03\x01\x03\x04", // 𩠃
+ 0x29804: "\x03\x05\x05\x01\x04\x03\x01\x02\x03\x04", // 𩠄
+ 0x29805: "\x03\x05\x05\x01\x03\x04\x04\x05\x04", // 𩠅
+ 0x29806: "\x03\x05\x05\x04\x04\x05\x01\x02\x01\x03\x04", // 𩠆
+ 0x29807: "\x03\x05\x05\x05\x01\x02\x04\x05\x04", // 𩠇
+ 0x29808: "\x03\x05\x05\x03\x04\x04\x05\x04\x05\x04\x04", // 𩠈
+ 0x29809: "\x03\x05\x05\x04\x03\x01\x01\x03\x04\x05\x05", // 𩠉
+ 0x2980a: "\x03\x05\x05\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 𩠊
+ 0x2980b: "\x03\x05\x05\x05\x02\x01\x03\x04\x02\x05\x01\x01", // 𩠋
+ 0x2980c: "\x03\x05\x05\x04\x03\x01\x01\x03\x04\x04\x05\x04", // 𩠌
+ 0x2980d: "\x03\x05\x05\x04\x01\x05\x03\x03\x01\x05\x02\x01\x03\x04", // 𩠍
+ 0x2980e: "\x03\x05\x05\x01\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01", // 𩠎
+ 0x2980f: "\x03\x05\x05\x02\x04\x03\x04\x05\x02\x05\x01\x03\x01\x01\x02", // 𩠏
+ 0x29810: "\x05\x05\x05\x01\x03\x02\x05\x01\x01\x01", // 𩠐
+ 0x29811: "\x01\x02\x04\x03\x01\x03\x02\x05\x01\x01\x01", // 𩠑
+ 0x29812: "\x03\x05\x05\x05\x05\x01\x03\x02\x05\x01\x01\x01", // 𩠒
+ 0x29813: "\x04\x03\x01\x03\x02\x05\x01\x01\x01\x03\x01\x05", // 𩠓
+ 0x29814: "\x04\x03\x01\x03\x02\x05\x01\x01\x01\x03\x01\x01\x05", // 𩠔
+ 0x29815: "\x04\x03\x01\x03\x02\x05\x01\x01\x01\x01\x03\x03\x04\x04", // 𩠕
+ 0x29816: "\x01\x03\x03\x04\x04\x05\x05\x05\x01\x03\x02\x05\x01\x01\x01", // 𩠖
+ 0x29817: "\x05\x03\x02\x05\x04\x04\x03\x01\x03\x02\x05\x01\x01\x01", // 𩠗
+ 0x29818: "\x04\x03\x01\x03\x02\x05\x01\x01\x01\x03\x05\x04\x02\x04", // 𩠘
+ 0x29819: "\x01\x03\x03\x04\x04\x04\x03\x01\x03\x02\x05\x01\x01\x01", // 𩠙
+ 0x2981a: "\x04\x03\x01\x03\x02\x05\x01\x01\x01\x04\x01\x05\x03\x03\x04", // 𩠚
+ 0x2981b: "\x04\x03\x01\x03\x02\x05\x01\x01\x01\x01\x05\x01\x02\x02\x05", // 𩠛
+ 0x2981c: "\x05\x05\x05\x01\x03\x02\x05\x01\x01\x01\x01\x05\x02\x05\x01\x01", // 𩠜
+ 0x2981d: "\x05\x05\x05\x01\x03\x02\x05\x01\x01\x01\x01\x02\x05\x01\x02\x05", // 𩠝
+ 0x2981e: "\x01\x02\x05\x01\x02\x05\x05\x05\x05\x01\x03\x02\x05\x01\x01\x01", // 𩠞
+ 0x2981f: "\x04\x03\x01\x03\x02\x05\x01\x01\x01\x05\x01\x05\x03\x04\x02", // 𩠟
+ 0x29820: "\x04\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04\x01\x01\x05\x04", // 𩠠
+ 0x29821: "\x05\x05\x05\x01\x03\x02\x05\x01\x01\x01\x01\x02\x02\x05\x01\x02\x05", // 𩠡
+ 0x29822: "\x01\x02\x02\x05\x01\x02\x05\x05\x05\x05\x01\x03\x02\x05\x01\x01\x01", // 𩠢
+ 0x29823: "\x01\x03\x04\x03\x04\x03\x04\x05\x05\x05\x01\x03\x02\x05\x01\x01\x01", // 𩠣
+ 0x29824: "\x04\x03\x01\x03\x02\x05\x01\x01\x01\x01\x02\x05\x01\x01\x02\x04", // 𩠤
+ 0x29825: "\x02\x01\x02\x05\x01\x01\x01\x04\x03\x01\x03\x02\x05\x01\x01\x01", // 𩠥
+ 0x29826: "\x02\x04\x03\x03\x05\x04\x01\x04\x03\x01\x03\x02\x05\x01\x01\x01", // 𩠦
+ 0x29827: "\x04\x03\x01\x03\x02\x05\x01\x01\x01\x05\x01\x03\x05\x02\x05\x01", // 𩠧
+ 0x29828: "\x03\x01\x02\x03\x04\x03\x05\x04\x04\x03\x01\x03\x02\x05\x01\x01\x01", // 𩠨
+ 0x29829: "\x04\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04\x03\x04\x03\x01\x03\x04", // 𩠩
+ 0x2982a: "\x04\x01\x04\x03\x01\x03\x03\x03\x03\x05\x05\x05\x01\x03\x02\x05\x01\x01\x01", // 𩠪
+ 0x2982b: "\x04\x05\x01\x02\x05\x01\x01\x01\x02\x05\x05\x05\x01\x03\x02\x05\x01\x01\x01", // 𩠫
+ 0x2982c: "\x04\x03\x01\x03\x02\x05\x01\x01\x01\x04\x03\x01\x03\x02\x05\x01\x01\x01", // 𩠬
+ 0x2982d: "\x04\x03\x01\x03\x02\x05\x01\x01\x01\x05\x01\x03\x01\x05\x04\x01\x02\x01", // 𩠭
+ 0x2982e: "\x04\x03\x01\x03\x02\x05\x01\x01\x01\x04\x05\x02\x01\x02\x01\x02\x01\x05\x04", // 𩠮
+ 0x2982f: "\x04\x03\x01\x03\x02\x05\x01\x01\x01\x05\x03\x01\x01\x02\x02\x05\x01\x02\x05", // 𩠯
+ 0x29830: "\x04\x03\x01\x03\x02\x05\x01\x01\x01\x04\x05\x01\x02\x01\x02\x01\x03\x01\x03\x04", // 𩠰
+ 0x29831: "\x04\x03\x01\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x05\x01\x04\x05\x04", // 𩠱
+ 0x29832: "\x04\x03\x01\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x05\x03\x04\x01", // 𩠲
+ 0x29833: "\x04\x03\x01\x03\x02\x05\x01\x01\x01\x01\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𩠳
+ 0x29834: "\x04\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𩠴
+ 0x29835: "\x04\x03\x01\x03\x02\x05\x01\x01\x01\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x01\x02\x03\x04", // 𩠵
+ 0x29836: "\x05\x03\x01\x01\x02\x05\x01\x02\x03\x04\x03\x01\x03\x04\x04\x03\x01\x03\x02\x05\x01\x01\x01", // 𩠶
+ 0x29837: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x03\x05\x04\x04\x04\x03\x01\x03\x02\x05\x01\x01\x01", // 𩠷
+ 0x29838: "\x04\x03\x01\x03\x02\x05\x01\x01\x01\x03\x01\x04\x03\x01\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩠸
+ 0x29839: "\x05\x05\x04\x05\x05\x04\x01\x05\x05\x04\x05\x05\x04\x05\x03\x03\x01\x02\x04\x03\x01\x03\x02\x05\x01\x01\x01", // 𩠹
+ 0x2983a: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 𩠺
+ 0x2983b: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x03\x04\x01\x05", // 𩠻
+ 0x2983c: "\x03\x01\x02\x03\x04\x01\x02\x03\x04\x02\x05\x01\x01", // 𩠼
+ 0x2983d: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x03\x04", // 𩠽
+ 0x2983e: "\x04\x01\x03\x04\x01\x03\x01\x02\x03\x04\x02\x05\x01\x01", // 𩠾
+ 0x2983f: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01\x01\x02\x03\x04", // 𩠿
+ 0x29840: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x05\x02\x02\x03\x04", // 𩡀
+ 0x29841: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x03\x04\x01\x05\x04", // 𩡁
+ 0x29842: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x03\x04\x01\x05\x03\x04", // 𩡂
+ 0x29843: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x02\x05\x01\x01\x02", // 𩡃
+ 0x29844: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x03\x01\x02\x03\x04", // 𩡄
+ 0x29845: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x04\x03\x01\x02\x03\x04", // 𩡅
+ 0x29846: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x05\x01\x05\x05\x01\x05", // 𩡆
+ 0x29847: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x03\x05\x04\x01\x01\x01\x02", // 𩡇
+ 0x29848: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x02\x04\x03\x03\x05\x04\x01", // 𩡈
+ 0x29849: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x01\x02\x03\x04\x05\x03", // 𩡉
+ 0x2984a: "\x03\x01\x02\x03\x04\x05\x03\x01\x03\x01\x02\x03\x04\x02\x05\x01\x01", // 𩡊
+ 0x2984b: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01\x01\x03\x04\x02\x04\x04\x04", // 𩡋
+ 0x2984c: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x03\x01\x02\x03\x04\x02\x05\x01\x01", // 𩡌
+ 0x2984d: "\x03\x01\x02\x03\x04\x02\x04\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x04", // 𩡍
+ 0x2984e: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x02\x05\x05\x04\x05\x05\x04\x05\x02", // 𩡎
+ 0x2984f: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x05\x02", // 𩡏
+ 0x29850: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x03\x01\x02\x03\x04\x02\x05\x01\x01", // 𩡐
+ 0x29851: "\x04\x01\x02\x05\x01\x01\x03\x05\x04\x03\x01\x02\x03\x04\x02\x05\x01\x01", // 𩡑
+ 0x29852: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x04\x05\x05\x02\x01\x05\x03", // 𩡒
+ 0x29853: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x03\x05\x05\x04\x05\x04\x01\x05\x04\x01", // 𩡓
+ 0x29854: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x04\x04\x05\x03\x01\x02\x01\x02\x05\x01", // 𩡔
+ 0x29855: "\x04\x01\x04\x03\x04\x05\x04\x01\x05\x03\x03\x01\x02\x03\x04\x02\x05\x01\x01", // 𩡕
+ 0x29856: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x03\x04\x04\x03\x04\x05\x01\x03\x05\x04", // 𩡖
+ 0x29857: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x01\x03\x04\x04", // 𩡗
+ 0x29858: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x03\x05\x04", // 𩡘
+ 0x29859: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04", // 𩡙
+ 0x2985a: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x04\x03\x01\x01\x01\x02\x02\x05\x02\x02\x01", // 𩡚
+ 0x2985b: "\x05\x01\x03\x01\x01\x02\x03\x04\x01\x02\x04\x03\x01\x02\x03\x04\x02\x05\x01\x01", // 𩡛
+ 0x2985c: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x04\x05\x01\x01\x05\x04\x03\x05\x01\x01", // 𩡜
+ 0x2985d: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 𩡝
+ 0x2985e: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𩡞
+ 0x2985f: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x02\x02\x04\x03\x01\x02\x05\x02\x04\x01\x03\x04", // 𩡟
+ 0x29860: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x01", // 𩡠
+ 0x29861: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04", // 𩡡
+ 0x29862: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x03\x01\x02\x03\x04\x02\x05\x01\x01\x04\x04\x04\x04", // 𩡢
+ 0x29863: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x03\x04\x04\x03\x04\x05\x04\x05\x04\x04\x03\x05\x04", // 𩡣
+ 0x29864: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x01\x02\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 𩡤
+ 0x29865: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x05\x01\x02\x02\x05\x03\x01\x01\x02\x05\x02\x01\x02\x03\x04", // 𩡥
+ 0x29866: "\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01\x02\x05\x01\x02\x02\x05\x03\x01\x01\x02\x05\x02\x01\x01\x02\x03\x04", // 𩡦
+ 0x29867: "\x01\x02\x01\x01\x02\x05\x01\x02\x02\x02\x02", // 𩡧
+ 0x29868: "\x03\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩡨
+ 0x29869: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05", // 𩡩
+ 0x2986a: "\x01\x02\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩡪
+ 0x2986b: "\x03\x05\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩡫
+ 0x2986c: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x04", // 𩡬
+ 0x2986d: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x04", // 𩡭
+ 0x2986e: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x04", // 𩡮
+ 0x2986f: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02", // 𩡯
+ 0x29870: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x01\x02", // 𩡰
+ 0x29871: "\x01\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩡱
+ 0x29872: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x03\x04", // 𩡲
+ 0x29873: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x01", // 𩡳
+ 0x29874: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x01\x02", // 𩡴
+ 0x29875: "\x05\x01\x02\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩡵
+ 0x29876: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x01", // 𩡶
+ 0x29877: "\x01\x03\x04\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩡷
+ 0x29878: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x05\x02", // 𩡸
+ 0x29879: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x01\x01\x05", // 𩡹
+ 0x2987a: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x04\x03\x02", // 𩡺
+ 0x2987b: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x01\x03\x04", // 𩡻
+ 0x2987c: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x01\x02\x04", // 𩡼
+ 0x2987d: "\x05\x02\x01\x03\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩡽
+ 0x2987e: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x03\x04\x03", // 𩡾
+ 0x2987f: "\x02\x05\x02\x05\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩡿
+ 0x29880: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x05\x02\x05", // 𩢀
+ 0x29881: "\x04\x03\x01\x03\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩢁
+ 0x29882: "\x05\x04\x05\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩢂
+ 0x29883: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x04\x05\x04", // 𩢃
+ 0x29884: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x01\x03\x05", // 𩢄
+ 0x29885: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x05\x03\x04", // 𩢅
+ 0x29886: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x02\x01\x05", // 𩢆
+ 0x29887: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x02\x05\x04", // 𩢇
+ 0x29888: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x05\x01\x02", // 𩢈
+ 0x29889: "\x03\x05\x01\x03\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩢉
+ 0x2988a: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x03\x05\x03", // 𩢊
+ 0x2988b: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05\x01\x01", // 𩢋
+ 0x2988c: "\x04\x01\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩢌
+ 0x2988d: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x03\x05\x04\x04", // 𩢍
+ 0x2988e: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x02\x02\x05\x02", // 𩢎
+ 0x2988f: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x01\x03\x02", // 𩢏
+ 0x29890: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x01\x02\x01\x01", // 𩢐
+ 0x29891: "\x02\x01\x02\x01\x01\x05\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩢑
+ 0x29892: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x05\x04\x05\x03", // 𩢒
+ 0x29893: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x03\x02\x01\x02", // 𩢓
+ 0x29894: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x03\x01\x01\x02", // 𩢔
+ 0x29895: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x03\x04\x01", // 𩢕
+ 0x29896: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x01\x02\x03\x04", // 𩢖
+ 0x29897: "\x01\x02\x01\x05\x02\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩢗
+ 0x29898: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x05\x01\x05", // 𩢘
+ 0x29899: "\x01\x03\x04\x04\x03\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩢙
+ 0x2989a: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x01\x03\x03\x04", // 𩢚
+ 0x2989b: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05\x03\x04\x05", // 𩢛
+ 0x2989c: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x04\x02\x03\x04", // 𩢜
+ 0x2989d: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x02\x01\x05", // 𩢝
+ 0x2989e: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x01\x05\x02", // 𩢞
+ 0x2989f: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x03\x02\x05\x01", // 𩢟
+ 0x298a0: "\x05\x04\x02\x05\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩢠
+ 0x298a1: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x02\x01\x01", // 𩢡
+ 0x298a2: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x01\x03\x04", // 𩢢
+ 0x298a3: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x03\x01\x01\x05", // 𩢣
+ 0x298a4: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x01\x02\x01\x04", // 𩢤
+ 0x298a5: "\x02\x05\x01\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩢥
+ 0x298a6: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05\x04\x04\x04", // 𩢦
+ 0x298a7: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x01\x05\x04", // 𩢧
+ 0x298a8: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x02\x01\x01", // 𩢨
+ 0x298a9: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x01\x02\x01\x01", // 𩢩
+ 0x298aa: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x02\x05\x01", // 𩢪
+ 0x298ab: "\x03\x01\x01\x02\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩢫
+ 0x298ac: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x01\x05\x01\x03", // 𩢬
+ 0x298ad: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x01\x02\x01\x03\x05", // 𩢭
+ 0x298ae: "\x03\x02\x01\x02\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩢮
+ 0x298af: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x04\x05\x03\x02\x05", // 𩢯
+ 0x298b0: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x02\x01\x03\x04\x04", // 𩢰
+ 0x298b1: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x02\x05\x01\x01", // 𩢱
+ 0x298b2: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x05\x01\x03\x04", // 𩢲
+ 0x298b3: "\x05\x04\x01\x05\x04\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩢳
+ 0x298b4: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x01\x02\x05\x01", // 𩢴
+ 0x298b5: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x04\x05\x03\x01\x05", // 𩢵
+ 0x298b6: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x01\x01\x03\x04", // 𩢶
+ 0x298b7: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x03\x02\x05\x01\x01", // 𩢷
+ 0x298b8: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x03\x05\x04\x01\x04", // 𩢸
+ 0x298b9: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x02\x01\x05\x01\x01", // 𩢹
+ 0x298ba: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05\x04\x01", // 𩢺
+ 0x298bb: "\x03\x01\x01\x02\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩢻
+ 0x298bc: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x01\x01\x02\x01\x05", // 𩢼
+ 0x298bd: "\x01\x02\x01\x05\x01\x02\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩢽
+ 0x298be: "\x01\x03\x05\x04\x02\x02\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩢾
+ 0x298bf: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x01\x01\x02\x05\x02", // 𩢿
+ 0x298c0: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x03\x04\x03\x04", // 𩣀
+ 0x298c1: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x03\x04\x01\x05", // 𩣁
+ 0x298c2: "\x03\x01\x02\x01\x03\x05\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩣂
+ 0x298c3: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x05\x05\x02\x05\x02", // 𩣃
+ 0x298c4: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x03\x01\x05\x01\x05", // 𩣄
+ 0x298c5: "\x03\x02\x01\x05\x01\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩣅
+ 0x298c6: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x03\x01\x01\x01\x02", // 𩣆
+ 0x298c7: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x01\x05\x03\x02\x05", // 𩣇
+ 0x298c8: "\x03\x04\x05\x03\x02\x05\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩣈
+ 0x298c9: "\x05\x03\x01\x02\x05\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩣉
+ 0x298ca: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x03\x01\x05\x03\x04", // 𩣊
+ 0x298cb: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x03\x02\x05\x01\x01", // 𩣋
+ 0x298cc: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x02\x02\x01\x02\x01", // 𩣌
+ 0x298cd: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x02\x03\x05\x05\x02", // 𩣍
+ 0x298ce: "\x01\x05\x01\x01\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩣎
+ 0x298cf: "\x03\x05\x04\x01\x05\x02\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩣏
+ 0x298d0: "\x04\x01\x05\x03\x02\x05\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩣐
+ 0x298d1: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x04\x05\x05\x03\x01", // 𩣑
+ 0x298d2: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x03\x05\x03\x05\x03", // 𩣒
+ 0x298d3: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x01\x02\x01\x05\x04", // 𩣓
+ 0x298d4: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x03\x04\x01\x01\x05", // 𩣔
+ 0x298d5: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x03\x03\x01\x02\x05", // 𩣕
+ 0x298d6: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x01\x03\x04\x02\x05\x01", // 𩣖
+ 0x298d7: "\x01\x02\x04\x01\x03\x04\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩣗
+ 0x298d8: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x02\x01\x01\x01\x05", // 𩣘
+ 0x298d9: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x01\x02\x05\x01\x01\x02", // 𩣙
+ 0x298da: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x03\x02\x04\x02\x05\x01", // 𩣚
+ 0x298db: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x01\x02\x01\x05\x03\x05", // 𩣛
+ 0x298dc: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x01\x01\x02\x01\x02\x01", // 𩣜
+ 0x298dd: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x01\x02\x01\x02\x03\x03", // 𩣝
+ 0x298de: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x02\x03\x05\x05\x04", // 𩣞
+ 0x298df: "\x04\x04\x01\x02\x03\x04\x03\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩣟
+ 0x298e0: "\x04\x04\x01\x02\x03\x04\x03\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩣠
+ 0x298e1: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x04\x05\x05\x02\x01", // 𩣡
+ 0x298e2: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x02\x05\x03\x05\x04\x01", // 𩣢
+ 0x298e3: "\x03\x01\x02\x01\x05\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩣣
+ 0x298e4: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x03\x03\x04\x05\x03\x05", // 𩣤
+ 0x298e5: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x04\x03\x04\x02\x05\x01", // 𩣥
+ 0x298e6: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05\x02\x05\x01\x03\x05", // 𩣦
+ 0x298e7: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x04\x04\x03\x05\x03\x01", // 𩣧
+ 0x298e8: "\x03\x01\x02\x01\x05\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩣨
+ 0x298e9: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x01\x03\x03\x01\x02", // 𩣩
+ 0x298ea: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x05\x05\x05\x01\x02\x01", // 𩣪
+ 0x298eb: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x01\x02\x03\x04\x02\x02", // 𩣫
+ 0x298ec: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x05\x01\x02\x05\x04", // 𩣬
+ 0x298ed: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05\x05\x04\x04\x05\x04\x04", // 𩣭
+ 0x298ee: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05\x02\x05\x01\x03\x05\x04", // 𩣮
+ 0x298ef: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x03\x04\x02\x05\x01\x01", // 𩣯
+ 0x298f0: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x01\x03\x05\x03\x04\x01\x02", // 𩣰
+ 0x298f1: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x01\x03\x05\x01\x02\x01", // 𩣱
+ 0x298f2: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x01\x02\x02\x01\x03\x04", // 𩣲
+ 0x298f3: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x05\x01\x01\x02\x03\x04", // 𩣳
+ 0x298f4: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x01\x03\x01\x02\x01\x05\x04", // 𩣴
+ 0x298f5: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x04\x05\x03\x05\x04\x05\x05", // 𩣵
+ 0x298f6: "\x02\x05\x01\x01\x03\x05\x01\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩣶
+ 0x298f7: "\x03\x01\x02\x01\x02\x01\x02\x01\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩣷
+ 0x298f8: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x02\x05\x01\x05\x01\x01\x02", // 𩣸
+ 0x298f9: "\x05\x01\x03\x05\x02\x02\x05\x02\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩣹
+ 0x298fa: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x03\x04\x01\x02\x01\x03\x02", // 𩣺
+ 0x298fb: "\x01\x02\x01\x02\x03\x01\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩣻
+ 0x298fc: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x04\x05\x03\x05\x01\x02\x01", // 𩣼
+ 0x298fd: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05\x04\x03\x01\x02\x03\x04", // 𩣽
+ 0x298fe: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x02\x03\x01\x05\x02\x05", // 𩣾
+ 0x298ff: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x02\x01\x01\x05\x02\x01\x01", // 𩣿
+ 0x29900: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x03\x01\x02\x02\x04\x03\x01", // 𩤀
+ 0x29901: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x03\x01\x02\x03\x04\x01", // 𩤁
+ 0x29902: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05\x03\x02\x01\x05\x01\x01", // 𩤂
+ 0x29903: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x01\x05\x05\x01\x02\x01", // 𩤃
+ 0x29904: "\x01\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05\x05\x01\x05", // 𩤄
+ 0x29905: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x01\x03\x01\x02\x02\x05\x01", // 𩤅
+ 0x29906: "\x01\x02\x03\x04\x01\x02\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩤆
+ 0x29907: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x04\x01\x02\x05\x01\x02\x02", // 𩤇
+ 0x29908: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x02\x01\x02\x05\x01\x01", // 𩤈
+ 0x29909: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x01\x02\x03\x02\x01\x05", // 𩤉
+ 0x2990a: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x05\x03\x04\x01\x05\x03\x04", // 𩤊
+ 0x2990b: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x01\x02\x01\x01\x02\x03\x04", // 𩤋
+ 0x2990c: "\x02\x01\x05\x03\x01\x05\x03\x05\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩤌
+ 0x2990d: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05\x05\x02\x03\x05\x02\x03", // 𩤍
+ 0x2990e: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x01\x03\x02\x01\x02\x05\x01", // 𩤎
+ 0x2990f: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x01\x03\x04\x03\x04\x01\x02", // 𩤏
+ 0x29910: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x01\x03\x05\x04\x01\x05\x03", // 𩤐
+ 0x29911: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x01\x04\x03\x01\x01\x01\x02", // 𩤑
+ 0x29912: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x04\x05\x02\x05\x01\x01\x01", // 𩤒
+ 0x29913: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x01\x03\x05\x02\x02\x05\x02", // 𩤓
+ 0x29914: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x03\x04\x02\x05\x01\x01\x05", // 𩤔
+ 0x29915: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x01\x02\x01\x03\x05\x03\x04", // 𩤕
+ 0x29916: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x02\x05\x03\x04\x01\x03\x05", // 𩤖
+ 0x29917: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x04\x03\x03\x04\x03\x01\x01\x05", // 𩤗
+ 0x29918: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x05\x05\x03\x02\x05\x03\x04\x01", // 𩤘
+ 0x29919: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x01\x02\x05\x01\x04\x05\x01\x02", // 𩤙
+ 0x2991a: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x02\x01\x03\x02\x05\x02\x02", // 𩤚
+ 0x2991b: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𩤛
+ 0x2991c: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x01\x03\x02\x05\x01\x01", // 𩤜
+ 0x2991d: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x04\x05\x02\x03\x03\x01\x03\x04", // 𩤝
+ 0x2991e: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x05\x03\x05\x01\x02\x03\x04", // 𩤞
+ 0x2991f: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 𩤟
+ 0x29920: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x05\x03\x05\x03\x02\x05\x01\x01", // 𩤠
+ 0x29921: "\x04\x04\x05\x01\x02\x05\x01\x01\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩤡
+ 0x29922: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x01\x04\x03\x04\x05\x02\x05\x02", // 𩤢
+ 0x29923: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x02\x01\x01\x01\x03\x05\x05\x04", // 𩤣
+ 0x29924: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩤤
+ 0x29925: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 𩤥
+ 0x29926: "\x05\x03\x01\x05\x03\x01\x05\x03\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩤦
+ 0x29927: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x02\x01\x03\x04\x03\x03\x04", // 𩤧
+ 0x29928: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x04\x05\x05\x04", // 𩤨
+ 0x29929: "\x04\x04\x05\x03\x05\x04\x02\x05\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩤩
+ 0x2992a: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x01\x02\x03\x04\x03\x04\x05\x02", // 𩤪
+ 0x2992b: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x01\x05\x01\x02\x01\x01\x02\x01", // 𩤫
+ 0x2992c: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 𩤬
+ 0x2992d: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x05\x01\x01\x02\x05\x03\x04", // 𩤭
+ 0x2992e: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 𩤮
+ 0x2992f: "\x01\x02\x01\x02\x02\x05\x01\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩤯
+ 0x29930: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x01\x02\x02\x01\x01\x03\x04", // 𩤰
+ 0x29931: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x01\x02\x02\x05\x01\x02\x01", // 𩤱
+ 0x29932: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x05\x01\x02\x03\x04\x02\x02", // 𩤲
+ 0x29933: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x05\x03\x04\x02\x01\x05\x04", // 𩤳
+ 0x29934: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x03\x01\x03\x05\x03\x03\x03\x04", // 𩤴
+ 0x29935: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x01\x01\x03\x01\x01\x02\x01", // 𩤵
+ 0x29936: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x01\x01\x03\x05\x03\x05\x02", // 𩤶
+ 0x29937: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x01\x05\x05\x01\x02", // 𩤷
+ 0x29938: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x01\x02\x01\x02\x05\x01\x01", // 𩤸
+ 0x29939: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x01\x02\x03\x04\x02\x05\x01\x01", // 𩤹
+ 0x2993a: "\x03\x02\x01\x05\x01\x01\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩤺
+ 0x2993b: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x04\x04\x03\x01\x01\x01\x03\x04", // 𩤻
+ 0x2993c: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x04\x01\x01\x02\x02\x04\x03\x01", // 𩤼
+ 0x2993d: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x03\x02\x01\x05\x03\x01\x05\x03\x05", // 𩤽
+ 0x2993e: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x01\x05\x03\x01\x05\x04\x01\x03\x04", // 𩤾
+ 0x2993f: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x01\x01\x04\x05\x02\x05\x02\x05\x04", // 𩤿
+ 0x29940: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x01\x01\x05\x04\x03\x01\x02\x03\x04", // 𩥀
+ 0x29941: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x01\x03\x05\x01\x01\x02\x02\x05\x01", // 𩥁
+ 0x29942: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x01\x03\x03\x05\x02\x05\x01\x01", // 𩥂
+ 0x29943: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 𩥃
+ 0x29944: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 𩥄
+ 0x29945: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01", // 𩥅
+ 0x29946: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x01\x05\x03\x03\x01\x03\x05\x03\x04", // 𩥆
+ 0x29947: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x01\x03\x01\x02\x02\x01\x05\x03\x04", // 𩥇
+ 0x29948: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x03\x04\x01\x02\x05\x02\x02\x01", // 𩥈
+ 0x29949: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 𩥉
+ 0x2994a: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩥊
+ 0x2994b: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩥋
+ 0x2994c: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x04\x05\x03\x01\x02\x01\x02\x05\x01", // 𩥌
+ 0x2994d: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x03\x01\x01\x01\x02\x03\x01\x01\x02", // 𩥍
+ 0x2994e: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x04\x05\x02\x03\x03\x05\x04\x05\x03", // 𩥎
+ 0x2994f: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x01\x03\x01\x05\x04\x01\x02\x01", // 𩥏
+ 0x29950: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x02\x05\x01\x05\x01\x01\x02\x05\x02", // 𩥐
+ 0x29951: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 𩥑
+ 0x29952: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x01\x02\x03\x04\x05\x03\x02\x05", // 𩥒
+ 0x29953: "\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩥓
+ 0x29954: "\x03\x05\x04\x01\x04\x01\x02\x05\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩥔
+ 0x29955: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01", // 𩥕
+ 0x29956: "\x03\x05\x03\x05\x02\x02\x05\x01\x02\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩥖
+ 0x29957: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𩥗
+ 0x29958: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x02\x03\x02\x02\x03\x01\x03\x04", // 𩥘
+ 0x29959: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x03\x01\x01\x01\x03\x01\x02\x01", // 𩥙
+ 0x2995a: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x01\x01\x03\x04\x03\x01\x02\x03\x04", // 𩥚
+ 0x2995b: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05\x05\x04\x05\x04\x01\x05\x04\x01", // 𩥛
+ 0x2995c: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x01\x05\x03\x03\x03\x03\x05\x03\x04", // 𩥜
+ 0x2995d: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x01\x03\x05\x03\x04\x04\x05\x04\x04", // 𩥝
+ 0x2995e: "\x01\x02\x01\x03\x03\x05\x02\x05\x01\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩥞
+ 0x2995f: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x01\x04\x05\x01\x03\x02\x05\x01", // 𩥟
+ 0x29960: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x02\x03\x04\x01\x02\x05\x01", // 𩥠
+ 0x29961: "\x01\x02\x05\x02\x02\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05\x01\x01", // 𩥡
+ 0x29962: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩥢
+ 0x29963: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x04\x04\x03\x03\x01\x01\x02\x05\x02", // 𩥣
+ 0x29964: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩥤
+ 0x29965: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x04\x05\x03\x02\x03\x02\x05\x01\x01", // 𩥥
+ 0x29966: "\x05\x04\x05\x02\x03\x03\x05\x04\x05\x03\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩥦
+ 0x29967: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x01\x01\x01\x02\x01", // 𩥧
+ 0x29968: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x03\x04\x03\x04\x03\x04\x03\x04\x05", // 𩥨
+ 0x29969: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x01\x05\x03\x03\x05\x01\x05\x03\x03", // 𩥩
+ 0x2996a: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x02\x03\x05\x04\x01\x01\x01\x02", // 𩥪
+ 0x2996b: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x01\x01\x03\x04\x03\x02\x01\x05\x01\x01", // 𩥫
+ 0x2996c: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 𩥬
+ 0x2996d: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩥭
+ 0x2996e: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x01\x04\x03\x01\x03\x03\x01\x01\x02\x01", // 𩥮
+ 0x2996f: "\x01\x03\x01\x01\x03\x04\x05\x03\x05\x05\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩥯
+ 0x29970: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01\x03\x04", // 𩥰
+ 0x29971: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x03\x01\x01\x03\x04\x02\x04\x01\x03\x04", // 𩥱
+ 0x29972: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x05\x01\x02\x03\x04\x01\x01\x03\x04", // 𩥲
+ 0x29973: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x05\x01\x01\x01\x02\x01\x05\x03\x04", // 𩥳
+ 0x29974: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x01\x02\x03\x04\x02\x02\x03\x01\x01\x02", // 𩥴
+ 0x29975: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x04\x05\x04\x05\x04\x03\x04\x02\x03\x04", // 𩥵
+ 0x29976: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x01\x01\x03\x02\x04\x03\x01\x02\x03\x04", // 𩥶
+ 0x29977: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x03\x03\x04\x04\x05\x01\x01\x02\x03\x04", // 𩥷
+ 0x29978: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x03\x01\x02\x02\x01\x05\x05\x03\x04", // 𩥸
+ 0x29979: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x05\x01\x02\x03\x04\x03\x01\x03\x04", // 𩥹
+ 0x2997a: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 𩥺
+ 0x2997b: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x01\x03\x05\x01\x01\x02\x05\x01\x01\x02", // 𩥻
+ 0x2997c: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x03\x02\x01\x01\x02\x03\x04\x05\x03\x04", // 𩥼
+ 0x2997d: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x04\x01\x01\x02\x03\x04\x04\x05\x04", // 𩥽
+ 0x2997e: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x04\x01\x02\x05\x02\x01\x03\x04\x03\x04", // 𩥾
+ 0x2997f: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x04\x05\x03\x02\x01\x03\x02\x05\x01\x01", // 𩥿
+ 0x29980: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x01\x02\x03\x04\x02\x02\x01\x02\x03\x04", // 𩦀
+ 0x29981: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01", // 𩦁
+ 0x29982: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x01\x01", // 𩦂
+ 0x29983: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04", // 𩦃
+ 0x29984: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x01\x02\x03\x04\x03\x05\x03\x03\x01\x01\x02", // 𩦄
+ 0x29985: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x01\x02\x03\x04\x03\x05\x03\x01\x02\x03\x04", // 𩦅
+ 0x29986: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x01\x03\x05\x04\x01\x05\x02\x01\x02\x03\x04", // 𩦆
+ 0x29987: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x01\x02\x05\x01\x04\x03\x01\x02\x05\x01", // 𩦇
+ 0x29988: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x05\x02\x02\x01\x01\x01\x04\x03\x03\x04", // 𩦈
+ 0x29989: "\x04\x03\x02\x05\x02\x03\x04\x03\x01\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩦉
+ 0x2998a: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x04\x04", // 𩦊
+ 0x2998b: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x05\x04\x05\x05\x04\x01\x03\x04\x05\x03\x04", // 𩦋
+ 0x2998c: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x02\x05\x01\x02\x05\x01\x01\x05\x03\x04", // 𩦌
+ 0x2998d: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩦍
+ 0x2998e: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x01\x01\x01\x02\x01\x01\x01\x04\x01\x03\x04", // 𩦎
+ 0x2998f: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x02\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 𩦏
+ 0x29990: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x03\x01\x01\x02\x01\x04\x03\x01\x02\x05\x01", // 𩦐
+ 0x29991: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x01\x05\x01\x02\x01\x01\x02\x01\x02\x05\x01", // 𩦑
+ 0x29992: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x03\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04", // 𩦒
+ 0x29993: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x01\x01\x02\x02\x05\x01\x01\x01\x01\x03\x02", // 𩦓
+ 0x29994: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x05\x02", // 𩦔
+ 0x29995: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x01\x02\x05\x01\x04\x03\x01\x05\x03\x04", // 𩦕
+ 0x29996: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x01\x05\x05\x01\x05\x01\x02\x02\x01\x03\x04", // 𩦖
+ 0x29997: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x01\x02\x04\x01\x03\x04\x03\x04\x01\x02", // 𩦗
+ 0x29998: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩦘
+ 0x29999: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x05\x01\x02\x03\x04\x03\x01\x01\x03\x04", // 𩦙
+ 0x2999a: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 𩦚
+ 0x2999b: "\x03\x03\x04\x03\x04\x03\x04\x03\x04\x01\x02\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩦛
+ 0x2999c: "\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04\x05\x03\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩦜
+ 0x2999d: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x03\x05\x05\x03\x04\x02\x05\x02\x02\x01", // 𩦝
+ 0x2999e: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x01\x02\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 𩦞
+ 0x2999f: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x01\x02\x05\x04\x03\x03\x04\x01\x01\x03\x04", // 𩦟
+ 0x299a0: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04\x02\x02", // 𩦠
+ 0x299a1: "\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩦡
+ 0x299a2: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x01\x05\x03\x01\x05\x02\x05\x01\x05\x01\x03\x04", // 𩦢
+ 0x299a3: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x05\x01\x01\x05\x02\x02\x05\x03\x04\x01\x02", // 𩦣
+ 0x299a4: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x01\x01\x02\x02\x01\x01\x01\x01\x05\x03\x04", // 𩦤
+ 0x299a5: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x04", // 𩦥
+ 0x299a6: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x01\x02\x01\x03\x05\x04\x01\x05\x01\x03\x02", // 𩦦
+ 0x299a7: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x01\x01\x02\x05\x02\x02\x01\x04\x01\x05\x03", // 𩦧
+ 0x299a8: "\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩦨
+ 0x299a9: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x02\x05", // 𩦩
+ 0x299aa: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x01\x03\x04\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 𩦪
+ 0x299ab: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x01\x03\x05\x03\x04", // 𩦫
+ 0x299ac: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x03\x01\x01\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 𩦬
+ 0x299ad: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x01\x02\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 𩦭
+ 0x299ae: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 𩦮
+ 0x299af: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x02\x02\x01\x01\x03\x04\x04\x03\x01\x01\x02", // 𩦯
+ 0x299b0: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x01\x05", // 𩦰
+ 0x299b1: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x04\x01\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𩦱
+ 0x299b2: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x04\x04\x04\x04\x04\x05\x02\x03\x04\x03\x05\x04", // 𩦲
+ 0x299b3: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x01\x04\x03\x01\x03\x02\x01\x01\x05\x01\x01\x05", // 𩦳
+ 0x299b4: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x01\x01\x02\x02\x05\x01\x01\x04\x01\x02\x05\x02", // 𩦴
+ 0x299b5: "\x04\x01\x03\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩦵
+ 0x299b6: "\x02\x01\x05\x03\x01\x05\x03\x05\x04\x03\x01\x01\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩦶
+ 0x299b7: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03\x04", // 𩦷
+ 0x299b8: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x04\x02\x05\x01\x02\x01\x01\x02\x01\x02\x01\x03\x04", // 𩦸
+ 0x299b9: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x05\x01\x02\x05\x03\x01\x01\x02\x05\x02\x02\x01", // 𩦹
+ 0x299ba: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x01\x02\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 𩦺
+ 0x299bb: "\x03\x04\x05\x02\x05\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05\x01\x01\x05\x01\x01\x03", // 𩦻
+ 0x299bc: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05\x04\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩦼
+ 0x299bd: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x01\x02\x05\x01\x04\x05\x01\x05\x04\x01\x02\x01", // 𩦽
+ 0x299be: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04\x01\x02\x04", // 𩦾
+ 0x299bf: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x04\x05\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩦿
+ 0x299c0: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x03\x04\x01\x02\x05\x01\x03\x01\x02\x01\x05\x03\x04", // 𩧀
+ 0x299c1: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x02\x01\x01\x01\x05\x04\x03\x04\x03\x04\x03\x04", // 𩧁
+ 0x299c2: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x03\x04", // 𩧂
+ 0x299c3: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x03\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𩧃
+ 0x299c4: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x03\x01\x02\x03\x03\x01\x02\x02\x05\x01\x01\x01\x03\x04", // 𩧄
+ 0x299c5: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x03\x04\x01\x03\x04", // 𩧅
+ 0x299c6: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x05\x05\x05\x02\x05\x03\x04\x01\x05\x04\x04\x05\x04\x04\x05", // 𩧆
+ 0x299c7: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x01\x02\x03\x05\x04\x01\x05\x04\x01\x01\x02\x03\x04", // 𩧇
+ 0x299c8: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𩧈
+ 0x299c9: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x01\x03\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04", // 𩧉
+ 0x299ca: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x05\x02\x05\x03\x04\x02\x05\x01\x01\x01\x03\x05\x04", // 𩧊
+ 0x299cb: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x01\x02\x03\x04\x03\x05\x03\x03\x04\x02\x04\x01\x03\x04", // 𩧋
+ 0x299cc: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x03\x04\x04", // 𩧌
+ 0x299cd: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01", // 𩧍
+ 0x299ce: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x02\x05", // 𩧎
+ 0x299cf: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x04\x05\x02\x04\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𩧏
+ 0x299d0: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x05\x01\x02\x04\x05\x01\x03\x02\x05\x01\x01\x02\x03\x04", // 𩧐
+ 0x299d1: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x03\x05\x03\x03\x03\x04", // 𩧑
+ 0x299d2: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩧒
+ 0x299d3: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x02\x05\x01\x01\x02\x03\x02\x01\x01\x05\x05\x02\x01\x02", // 𩧓
+ 0x299d4: "\x04\x03\x03\x04\x04\x03\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩧔
+ 0x299d5: "\x01\x03\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩧕
+ 0x299d6: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x01\x02\x03\x04\x03\x04\x03\x04\x03\x04\x05\x05\x04\x02\x03\x04", // 𩧖
+ 0x299d7: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04\x01\x02\x01\x03\x02\x03\x04", // 𩧗
+ 0x299d8: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩧘
+ 0x299d9: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x01\x04\x03\x03\x04", // 𩧙
+ 0x299da: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩧚
+ 0x299db: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x04\x01\x01\x01\x02\x05\x01", // 𩧛
+ 0x299dc: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x05\x01\x01\x01\x02\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04", // 𩧜
+ 0x299dd: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x02\x01\x03\x05\x03\x04", // 𩧝
+ 0x299de: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x03\x05\x03\x01\x05\x02", // 𩧞
+ 0x299df: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x01\x01\x01\x02\x05\x01\x04\x03\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04", // 𩧟
+ 0x299e0: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x03\x05\x03\x03\x01\x01\x02", // 𩧠
+ 0x299e1: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩧡
+ 0x299e2: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩧢
+ 0x299e3: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x04\x01\x05\x02\x05\x01\x02\x01\x02\x01\x01\x01\x02\x03\x05\x01\x01\x05\x01\x01\x03", // 𩧣
+ 0x299e4: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x02\x05\x01\x01\x02\x05\x01\x05\x02\x02", // 𩧤
+ 0x299e5: "\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 𩧥
+ 0x299e6: "\x05\x05\x01\x03\x04\x03\x02", // 𩧦
+ 0x299e7: "\x05\x05\x01\x04\x01\x04\x03\x01", // 𩧧
+ 0x299e8: "\x05\x05\x01\x02\x05\x01\x02\x01", // 𩧨
+ 0x299e9: "\x05\x05\x01\x01\x01\x05\x03\x04", // 𩧩
+ 0x299ea: "\x05\x05\x01\x01\x03\x05\x03\x04", // 𩧪
+ 0x299eb: "\x05\x05\x01\x02\x05\x01\x03\x04", // 𩧫
+ 0x299ec: "\x05\x05\x01\x02\x05\x02\x01\x01", // 𩧬
+ 0x299ed: "\x05\x05\x01\x03\x01\x01\x03\x04", // 𩧭
+ 0x299ee: "\x01\x03\x05\x04\x02\x02\x05\x05\x01", // 𩧮
+ 0x299ef: "\x05\x05\x01\x05\x03\x05\x04\x04", // 𩧯
+ 0x299f0: "\x05\x05\x01\x04\x05\x01\x05\x01\x02", // 𩧰
+ 0x299f1: "\x05\x05\x01\x02\x05\x02\x05\x01\x05", // 𩧱
+ 0x299f2: "\x05\x05\x01\x02\x05\x01\x02\x05\x01", // 𩧲
+ 0x299f3: "\x05\x05\x01\x03\x03\x05\x04\x01\x04", // 𩧳
+ 0x299f4: "\x05\x05\x01\x03\x04\x01\x01\x02\x01", // 𩧴
+ 0x299f5: "\x05\x05\x01\x01\x02\x01\x02\x05\x01", // 𩧵
+ 0x299f6: "\x03\x05\x04\x01\x05\x02\x05\x05\x01", // 𩧶
+ 0x299f7: "\x04\x04\x05\x03\x01\x01\x02\x05\x05\x01", // 𩧷
+ 0x299f8: "\x03\x01\x02\x03\x04\x02\x02\x05\x05\x01", // 𩧸
+ 0x299f9: "\x05\x05\x01\x02\x05\x01\x01\x02\x01\x01", // 𩧹
+ 0x299fa: "\x05\x05\x01\x05\x01\x03\x05\x02\x05\x01", // 𩧺
+ 0x299fb: "\x05\x05\x01\x04\x04\x05\x03\x05\x04\x03\x05", // 𩧻
+ 0x299fc: "\x05\x05\x01\x01\x03\x04\x01\x02\x01\x03\x02", // 𩧼
+ 0x299fd: "\x05\x05\x01\x02\x05\x01\x02\x02\x05\x01\x01", // 𩧽
+ 0x299fe: "\x05\x05\x01\x01\x02\x05\x02\x02\x01\x01\x02\x01", // 𩧾
+ 0x299ff: "\x05\x05\x01\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 𩧿
+ 0x29a00: "\x05\x05\x01\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 𩨀
+ 0x29a01: "\x05\x05\x01\x01\x01\x01\x03\x04\x02\x05\x01\x01", // 𩨁
+ 0x29a02: "\x05\x05\x01\x04\x03\x02\x05\x01\x04\x05\x04\x04", // 𩨂
+ 0x29a03: "\x05\x05\x01\x05\x01\x01\x01\x01\x02\x05\x04", // 𩨃
+ 0x29a04: "\x05\x05\x01\x03\x02\x01\x05\x01\x01\x02\x05\x04", // 𩨄
+ 0x29a05: "\x05\x05\x01\x02\x05\x01\x02\x01\x02\x05\x01\x01", // 𩨅
+ 0x29a06: "\x05\x05\x01\x04\x01\x02\x05\x01\x04\x05\x01\x02", // 𩨆
+ 0x29a07: "\x05\x05\x01\x04\x03\x01\x02\x03\x04\x05\x03\x01", // 𩨇
+ 0x29a08: "\x05\x05\x01\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 𩨈
+ 0x29a09: "\x05\x05\x01\x01\x02\x05\x01\x02\x03\x04\x02\x02", // 𩨉
+ 0x29a0a: "\x05\x05\x01\x04\x03\x01\x02\x05\x01\x01\x02\x02", // 𩨊
+ 0x29a0b: "\x05\x05\x01\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 𩨋
+ 0x29a0c: "\x05\x05\x01\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01", // 𩨌
+ 0x29a0d: "\x05\x05\x01\x05\x01\x03\x01\x02\x02\x01\x05\x03\x04", // 𩨍
+ 0x29a0e: "\x05\x05\x01\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 𩨎
+ 0x29a0f: "\x05\x05\x01\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 𩨏
+ 0x29a10: "\x05\x05\x01\x05\x05\x05\x02\x05\x03\x04\x01\x05\x04\x04\x05\x04\x04\x05", // 𩨐
+ 0x29a11: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x01\x02", // 𩨑
+ 0x29a12: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x03\x05", // 𩨒
+ 0x29a13: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x02\x04", // 𩨓
+ 0x29a14: "\x03\x05\x02\x05\x05\x04\x05\x02\x05\x01\x01", // 𩨔
+ 0x29a15: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x05\x01\x05", // 𩨕
+ 0x29a16: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x05\x01\x02", // 𩨖
+ 0x29a17: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x01\x01\x05", // 𩨗
+ 0x29a18: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x03\x01\x05", // 𩨘
+ 0x29a19: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x05\x01\x05", // 𩨙
+ 0x29a1a: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x05\x03\x01", // 𩨚
+ 0x29a1b: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x03\x01\x05", // 𩨛
+ 0x29a1c: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x05\x02\x01\x05", // 𩨜
+ 0x29a1d: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x01\x02\x05\x04", // 𩨝
+ 0x29a1e: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x03\x05\x04", // 𩨞
+ 0x29a1f: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x03\x04\x03\x04", // 𩨟
+ 0x29a20: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x01\x05\x02\x03", // 𩨠
+ 0x29a21: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x02\x03\x04\x03", // 𩨡
+ 0x29a22: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x03\x03\x02\x04", // 𩨢
+ 0x29a23: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x04\x01\x05\x03", // 𩨣
+ 0x29a24: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x01\x05\x05\x04", // 𩨤
+ 0x29a25: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x04\x05\x03\x05", // 𩨥
+ 0x29a26: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x03\x05\x01\x05", // 𩨦
+ 0x29a27: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x03\x04\x05\x03", // 𩨧
+ 0x29a28: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x01\x05\x03\x05", // 𩨨
+ 0x29a29: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x03\x03\x05\x04", // 𩨩
+ 0x29a2a: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x03\x04\x03\x05", // 𩨪
+ 0x29a2b: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x05\x01\x01\x03", // 𩨫
+ 0x29a2c: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x04\x01\x05\x05\x04", // 𩨬
+ 0x29a2d: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x04\x04\x05\x03\x05", // 𩨭
+ 0x29a2e: "\x02\x05\x02\x01\x03\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01", // 𩨮
+ 0x29a2f: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x03\x03\x01\x02\x04", // 𩨯
+ 0x29a30: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x03\x01\x01\x03\x04", // 𩨰
+ 0x29a31: "\x02\x01\x02\x01\x01\x05\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01", // 𩨱
+ 0x29a32: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x04\x05\x04\x03\x04", // 𩨲
+ 0x29a33: "\x05\x02\x02\x05\x02\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01", // 𩨳
+ 0x29a34: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x02\x05\x01\x01\x05", // 𩨴
+ 0x29a35: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x02\x05\x01\x03\x04", // 𩨵
+ 0x29a36: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x03\x03\x05\x03\x04", // 𩨶
+ 0x29a37: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x02\x05\x02\x01\x05", // 𩨷
+ 0x29a38: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x05\x02\x02\x05\x02", // 𩨸
+ 0x29a39: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x02\x05\x01\x01\x02", // 𩨹
+ 0x29a3a: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x03\x01\x01\x03\x05", // 𩨺
+ 0x29a3b: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x04\x01\x01\x02\x01", // 𩨻
+ 0x29a3c: "\x02\x05\x01\x02\x04\x05\x02\x05\x04\x01\x03\x02\x01\x02\x01", // 𩨼
+ 0x29a3d: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x03\x02\x05\x01\x05\x01", // 𩨽
+ 0x29a3e: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x03\x05\x01\x03\x05\x05", // 𩨾
+ 0x29a3f: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x01\x03\x04\x03\x03\x04", // 𩨿
+ 0x29a40: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x05\x05\x05\x02\x05\x02", // 𩩀
+ 0x29a41: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x01\x05\x04\x03\x05", // 𩩁
+ 0x29a42: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x03\x04\x01\x02\x05\x01", // 𩩂
+ 0x29a43: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x01\x03\x04\x01\x01\x02", // 𩩃
+ 0x29a44: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x01\x01\x03\x01\x01\x02", // 𩩄
+ 0x29a45: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01", // 𩩅
+ 0x29a46: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x02\x05\x02\x01\x05\x01", // 𩩆
+ 0x29a47: "\x04\x01\x05\x04\x03\x05\x02\x05\x01\x02\x04\x05\x02\x05\x01\x01", // 𩩇
+ 0x29a48: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x03\x04\x01\x01\x05\x04", // 𩩈
+ 0x29a49: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x01\x02\x01\x03\x05\x02\x01", // 𩩉
+ 0x29a4a: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x03\x04\x01\x05\x02\x05\x01", // 𩩊
+ 0x29a4b: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x01\x05\x05\x05\x01\x02\x01", // 𩩋
+ 0x29a4c: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x03\x05\x05\x04\x02\x03\x04", // 𩩌
+ 0x29a4d: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x02\x05\x01\x02\x01\x01\x05", // 𩩍
+ 0x29a4e: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x03\x05\x01\x05\x02\x05\x01", // 𩩎
+ 0x29a4f: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x04\x04\x05\x05\x01\x03\x04", // 𩩏
+ 0x29a50: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01\x01", // 𩩐
+ 0x29a51: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x01\x02\x05\x01\x02\x05\x01", // 𩩑
+ 0x29a52: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x01\x03\x05\x03\x03\x03\x04", // 𩩒
+ 0x29a53: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x02\x04\x03\x03\x05\x04\x01", // 𩩓
+ 0x29a54: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x02\x05\x01\x02\x01\x03\x04", // 𩩔
+ 0x29a55: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x03\x02\x05\x01\x01\x03\x05", // 𩩕
+ 0x29a56: "\x02\x05\x01\x02\x04\x05\x02\x05\x01\x01\x01\x01\x02\x01\x01\x03\x02", // 𩩖
+ 0x29a57: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x03\x04\x01\x01\x02\x02\x05\x01", // 𩩗
+ 0x29a58: "\x04\x01\x05\x03\x03\x04\x04\x04\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01", // 𩩘
+ 0x29a59: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x02\x05\x01\x02\x01\x02\x01\x02", // 𩩙
+ 0x29a5a: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x02\x05\x01\x02\x01\x01\x03\x02", // 𩩚
+ 0x29a5b: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x01\x03\x04\x01\x02\x05\x01\x02", // 𩩛
+ 0x29a5c: "\x05\x02\x01\x03\x01\x02\x01\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01", // 𩩜
+ 0x29a5d: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x04\x04\x05\x03\x05\x01\x02\x01", // 𩩝
+ 0x29a5e: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x03\x01\x02\x01\x02\x01\x02\x01\x01", // 𩩞
+ 0x29a5f: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x05\x04\x05\x04\x05\x04\x05\x04", // 𩩟
+ 0x29a60: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x04\x01\x03\x04\x03\x04\x01\x02", // 𩩠
+ 0x29a61: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x01\x02\x01\x03\x05\x03\x05\x04", // 𩩡
+ 0x29a62: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x03\x02\x01\x05\x01\x01\x03\x05", // 𩩢
+ 0x29a63: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x01\x05\x04\x03\x05\x04\x01", // 𩩣
+ 0x29a64: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x01\x02\x01\x05\x05\x01\x02\x01", // 𩩤
+ 0x29a65: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x01\x02\x02\x01\x01\x02\x03\x04", // 𩩥
+ 0x29a66: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x04\x01\x05\x03\x03\x04\x04\x04", // 𩩦
+ 0x29a67: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 𩩧
+ 0x29a68: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x05\x03\x02\x05\x04\x03\x02\x02", // 𩩨
+ 0x29a69: "\x02\x05\x01\x02\x04\x05\x02\x05\x01\x01\x01\x01\x02\x01\x03\x05\x03\x04", // 𩩩
+ 0x29a6a: "\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x02\x04\x05\x02\x05\x01\x01", // 𩩪
+ 0x29a6b: "\x02\x05\x01\x02\x04\x05\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01", // 𩩫
+ 0x29a6c: "\x01\x02\x01\x04\x05\x01\x03\x05\x02\x05\x01\x02\x04\x05\x02\x05\x01\x01", // 𩩬
+ 0x29a6d: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01", // 𩩭
+ 0x29a6e: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x04\x01\x03\x01\x02\x02\x01\x05\x04", // 𩩮
+ 0x29a6f: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x03\x05\x01\x03\x02\x05\x01\x02\x02", // 𩩯
+ 0x29a70: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x01\x05\x01\x05\x03\x02\x05\x01\x01", // 𩩰
+ 0x29a71: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 𩩱
+ 0x29a72: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 𩩲
+ 0x29a73: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𩩳
+ 0x29a74: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 𩩴
+ 0x29a75: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x03\x02\x05\x01\x03\x01\x01\x03\x04", // 𩩵
+ 0x29a76: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x03\x04\x01\x05\x01\x01\x05\x03\x04", // 𩩶
+ 0x29a77: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x04\x01\x04\x03\x01\x03\x03\x03\x03", // 𩩷
+ 0x29a78: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x01\x02\x02\x01\x02\x05\x01\x01\x02", // 𩩸
+ 0x29a79: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x01\x02\x05\x03\x04\x02\x01\x05\x04", // 𩩹
+ 0x29a7a: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x03\x02\x05\x01\x01\x02\x05\x03\x04", // 𩩺
+ 0x29a7b: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x03\x03\x01\x02\x02\x05\x01\x01\x01", // 𩩻
+ 0x29a7c: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x03\x03\x03\x05\x04\x02\x05\x01\x01", // 𩩼
+ 0x29a7d: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x03\x05\x01\x03\x03\x01\x01\x03\x04", // 𩩽
+ 0x29a7e: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x03\x05\x01\x03\x01\x01\x05\x05\x01\x05", // 𩩾
+ 0x29a7f: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 𩩿
+ 0x29a80: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x03\x02\x05\x01\x05\x01\x04\x05\x04", // 𩪀
+ 0x29a81: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩪁
+ 0x29a82: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 𩪂
+ 0x29a83: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x04\x04\x05\x03\x01\x02\x01\x02\x05\x01", // 𩪃
+ 0x29a84: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x01\x03\x01\x02\x01\x01\x03\x01\x02\x01", // 𩪄
+ 0x29a85: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x03\x02\x05\x03\x04\x01\x01\x05\x01\x05", // 𩪅
+ 0x29a86: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01", // 𩪆
+ 0x29a87: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x05\x05\x05\x02\x05\x01\x01\x01\x03\x04", // 𩪇
+ 0x29a88: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x02\x04\x03\x02\x05\x01\x01\x01\x03\x04", // 𩪈
+ 0x29a89: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05", // 𩪉
+ 0x29a8a: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 𩪊
+ 0x29a8b: "\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01", // 𩪋
+ 0x29a8c: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x03\x05\x04\x01\x01\x01\x02\x04\x05\x04", // 𩪌
+ 0x29a8d: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05", // 𩪍
+ 0x29a8e: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x01\x02\x01\x02\x01\x03\x04\x04\x01\x03\x02", // 𩪎
+ 0x29a8f: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x01\x03\x01\x02\x01\x02\x05\x03\x04\x03\x04", // 𩪏
+ 0x29a90: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x02\x05\x01\x02\x05\x01\x01\x05\x03\x04\x01", // 𩪐
+ 0x29a91: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 𩪑
+ 0x29a92: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x01\x02\x01\x02\x01\x02\x01\x03\x01\x02\x01", // 𩪒
+ 0x29a93: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𩪓
+ 0x29a94: "\x05\x01\x03\x03\x05\x03\x05\x03\x05\x05\x04\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01", // 𩪔
+ 0x29a95: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x01\x02\x01\x04\x01\x05\x03\x03\x01\x03\x04", // 𩪕
+ 0x29a96: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x02\x01\x01\x02", // 𩪖
+ 0x29a97: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x01\x03\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04", // 𩪗
+ 0x29a98: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𩪘
+ 0x29a99: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x04\x01\x04\x03\x04\x05\x02\x05\x02\x02\x05\x01", // 𩪙
+ 0x29a9a: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 𩪚
+ 0x29a9b: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 𩪛
+ 0x29a9c: "\x01\x03\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01", // 𩪜
+ 0x29a9d: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x01\x02\x02\x03\x05\x04\x05\x05\x01\x02\x01", // 𩪝
+ 0x29a9e: "\x02\x05\x01\x02\x04\x05\x02\x05\x01\x01\x05\x01\x05\x05\x01\x05\x01\x02\x02\x01\x03\x04", // 𩪞
+ 0x29a9f: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x04\x01\x04\x03\x01\x02\x05\x01\x02\x02\x05\x01", // 𩪟
+ 0x29aa0: "\x04\x01\x03\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01", // 𩪠
+ 0x29aa1: "\x05\x01\x03\x01\x02\x02\x01\x03\x04\x03\x05\x05\x04\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01", // 𩪡
+ 0x29aa2: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05\x03\x04", // 𩪢
+ 0x29aa3: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 𩪣
+ 0x29aa4: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x02\x03\x04", // 𩪤
+ 0x29aa5: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x01\x04\x05\x02\x04\x01\x03\x04\x03\x04\x01\x05\x04", // 𩪥
+ 0x29aa6: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x05\x02\x01\x03\x01\x02\x01\x01\x03\x01\x02\x01", // 𩪦
+ 0x29aa7: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 𩪧
+ 0x29aa8: "\x05\x02\x02\x05\x02\x04\x01\x05\x03\x02\x01\x05\x04\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01", // 𩪨
+ 0x29aa9: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x04\x01\x04\x03\x04\x05\x02\x05\x01\x02\x02\x05\x01", // 𩪩
+ 0x29aaa: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x01\x03\x02\x05\x01\x01\x02\x01\x01\x04\x04\x04\x04", // 𩪪
+ 0x29aab: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x01\x02\x01\x02\x01\x04\x03\x01\x01\x01\x02\x03\x04", // 𩪫
+ 0x29aac: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x04\x01\x03\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 𩪬
+ 0x29aad: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x02\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𩪭
+ 0x29aae: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x05\x05\x04", // 𩪮
+ 0x29aaf: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x04\x04\x05\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩪯
+ 0x29ab0: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02", // 𩪰
+ 0x29ab1: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x03\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𩪱
+ 0x29ab2: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𩪲
+ 0x29ab3: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x03\x01\x02\x01", // 𩪳
+ 0x29ab4: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x04\x03\x01\x01\x01\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 𩪴
+ 0x29ab5: "\x02\x05\x05\x04\x05\x02\x05\x04\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01\x03\x01\x03\x04", // 𩪵
+ 0x29ab6: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x03\x01\x04\x03\x01\x04\x05\x01\x01\x05\x04\x05\x02", // 𩪶
+ 0x29ab7: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x05\x02\x01\x03\x01\x02\x01\x03\x05\x04\x01\x04\x05\x04", // 𩪷
+ 0x29ab8: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 𩪸
+ 0x29ab9: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x03\x02\x01\x01\x05\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𩪹
+ 0x29aba: "\x02\x05\x05\x04\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01\x04\x05\x02\x04\x04\x04\x04\x01\x01\x05\x04", // 𩪺
+ 0x29abb: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x03\x01\x04\x03\x01\x04\x02\x05\x02\x02\x01\x03\x02\x01\x05\x03\x04", // 𩪻
+ 0x29abc: "\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x02\x01\x02\x01\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩪼
+ 0x29abd: "\x02\x05\x05\x04\x05\x02\x05\x04\x01\x05\x05\x04\x05\x05\x04\x01\x05\x05\x04\x05\x05\x04\x05\x03\x03\x01\x02", // 𩪽
+ 0x29abe: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01", // 𩪾
+ 0x29abf: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x03\x05\x04", // 𩪿
+ 0x29ac0: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x05\x01\x03\x04", // 𩫀
+ 0x29ac1: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x03\x01\x01\x05", // 𩫁
+ 0x29ac2: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x05\x02\x01\x05", // 𩫂
+ 0x29ac3: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x01\x05\x02\x01", // 𩫃
+ 0x29ac4: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x04\x04\x01\x02", // 𩫄
+ 0x29ac5: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x01\x05\x03\x04", // 𩫅
+ 0x29ac6: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x03\x01\x03\x02", // 𩫆
+ 0x29ac7: "\x01\x03\x02\x04\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 𩫇
+ 0x29ac8: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x01\x03\x04\x04", // 𩫈
+ 0x29ac9: "\x05\x03\x05\x03\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 𩫉
+ 0x29aca: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x03\x04\x01\x02\x01", // 𩫊
+ 0x29acb: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x05\x03\x02\x05\x04", // 𩫋
+ 0x29acc: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x02\x05\x02\x05\x01", // 𩫌
+ 0x29acd: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x03\x01\x01\x02\x01", // 𩫍
+ 0x29ace: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x01\x03\x05\x02\x05\x02", // 𩫎
+ 0x29acf: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x02\x05\x01\x01\x02", // 𩫏
+ 0x29ad0: "\x04\x03\x01\x01\x03\x02\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 𩫐
+ 0x29ad1: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x04\x03\x01\x01\x03\x02", // 𩫑
+ 0x29ad2: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x01\x03\x03\x02\x05\x02", // 𩫒
+ 0x29ad3: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x01\x03\x05\x04\x03\x05", // 𩫓
+ 0x29ad4: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x03\x01\x02\x01\x02\x01", // 𩫔
+ 0x29ad5: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 𩫕
+ 0x29ad6: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x05\x02\x02", // 𩫖
+ 0x29ad7: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x02\x05\x02\x05\x01\x01\x02", // 𩫗
+ 0x29ad8: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x02\x05\x01\x03\x05\x04\x01", // 𩫘
+ 0x29ad9: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x03\x02\x05\x01\x01\x01\x03", // 𩫙
+ 0x29ada: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x05\x05\x01\x03\x05\x02\x05\x02", // 𩫚
+ 0x29adb: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x04\x01\x03\x04\x03\x04\x01\x02", // 𩫛
+ 0x29adc: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x02\x05\x01\x02\x01\x01\x03\x02", // 𩫜
+ 0x29add: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x03\x02\x05\x01\x01\x03\x01\x02", // 𩫝
+ 0x29ade: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x05\x05\x01\x03\x05\x03\x03\x03\x04", // 𩫞
+ 0x29adf: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x03\x05\x04\x01\x05\x02\x01\x02\x01", // 𩫟
+ 0x29ae0: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x03\x04", // 𩫠
+ 0x29ae1: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x01\x02\x03\x04\x01\x02\x05\x01\x01\x01", // 𩫡
+ 0x29ae2: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𩫢
+ 0x29ae3: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𩫣
+ 0x29ae4: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x03\x05\x04\x01\x05\x02\x01\x02\x03\x04", // 𩫤
+ 0x29ae5: "\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 𩫥
+ 0x29ae6: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 𩫦
+ 0x29ae7: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x02\x01\x02\x05\x01\x01\x01", // 𩫧
+ 0x29ae8: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x02\x01\x03\x05\x05\x03\x04", // 𩫨
+ 0x29ae9: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x02\x02\x05\x01\x05\x02\x01\x05", // 𩫩
+ 0x29aea: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x02\x05\x01\x01\x02\x03\x02\x05\x01\x01\x03\x01\x02", // 𩫪
+ 0x29aeb: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x02\x03\x02\x05\x01\x02\x01\x04\x01\x02", // 𩫫
+ 0x29aec: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02", // 𩫬
+ 0x29aed: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x02\x01\x02\x01\x03\x02\x05\x01\x01\x04", // 𩫭
+ 0x29aee: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x05\x02\x01\x02\x03\x02\x05\x01\x01\x03\x01\x02", // 𩫮
+ 0x29aef: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x02\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 𩫯
+ 0x29af0: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 𩫰
+ 0x29af1: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x02\x04\x01\x03\x05\x01\x01\x02\x05\x01\x01\x02", // 𩫱
+ 0x29af2: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𩫲
+ 0x29af3: "\x02\x05\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x03\x02\x05\x01\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 𩫳
+ 0x29af4: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x05", // 𩫴
+ 0x29af5: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x04", // 𩫵
+ 0x29af6: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x05\x02", // 𩫶
+ 0x29af7: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x05", // 𩫷
+ 0x29af8: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x05\x03", // 𩫸
+ 0x29af9: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x02", // 𩫹
+ 0x29afa: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x02", // 𩫺
+ 0x29afb: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x05\x01\x05", // 𩫻
+ 0x29afc: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x05\x04", // 𩫼
+ 0x29afd: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x01", // 𩫽
+ 0x29afe: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x03\x02", // 𩫾
+ 0x29aff: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x05\x02", // 𩫿
+ 0x29b00: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x03\x04", // 𩬀
+ 0x29b01: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x05\x01\x05", // 𩬁
+ 0x29b02: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x01\x03\x04", // 𩬂
+ 0x29b03: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x04\x03\x04", // 𩬃
+ 0x29b04: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x01\x03\x04", // 𩬄
+ 0x29b05: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x05\x04\x01", // 𩬅
+ 0x29b06: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x01\x05", // 𩬆
+ 0x29b07: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x03\x04\x04", // 𩬇
+ 0x29b08: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x05\x03\x05", // 𩬈
+ 0x29b09: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x05\x05\x03", // 𩬉
+ 0x29b0a: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x03\x03\x04", // 𩬊
+ 0x29b0b: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x05\x04\x01\x02", // 𩬋
+ 0x29b0c: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x05\x04\x03\x05", // 𩬌
+ 0x29b0d: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x05\x05\x02\x01", // 𩬍
+ 0x29b0e: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x01\x02\x01", // 𩬎
+ 0x29b0f: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x05\x04\x01", // 𩬏
+ 0x29b10: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x03\x02\x04", // 𩬐
+ 0x29b11: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x01\x02\x05\x01", // 𩬑
+ 0x29b12: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x05\x02\x05\x02", // 𩬒
+ 0x29b13: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x01\x02\x05\x02", // 𩬓
+ 0x29b14: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x04\x01\x05\x04", // 𩬔
+ 0x29b15: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x03\x05\x03\x04", // 𩬕
+ 0x29b16: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x04\x03\x03\x03", // 𩬖
+ 0x29b17: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x05\x05\x04\x05\x03", // 𩬗
+ 0x29b18: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x01\x02\x03\x04", // 𩬘
+ 0x29b19: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x02\x01\x02\x04", // 𩬙
+ 0x29b1a: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x02\x01\x01", // 𩬚
+ 0x29b1b: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x01\x03\x05", // 𩬛
+ 0x29b1c: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x05\x01\x03\x03\x05", // 𩬜
+ 0x29b1d: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x05\x03\x04", // 𩬝
+ 0x29b1e: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x01\x01\x01", // 𩬞
+ 0x29b1f: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x01\x02\x01\x01", // 𩬟
+ 0x29b20: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x05\x04\x02\x05\x01", // 𩬠
+ 0x29b21: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x02\x01\x02\x01", // 𩬡
+ 0x29b22: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x05\x02\x02\x05\x02", // 𩬢
+ 0x29b23: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x05\x04\x01\x02\x01", // 𩬣
+ 0x29b24: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x03\x05\x03\x04", // 𩬤
+ 0x29b25: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x05\x03\x05\x01", // 𩬥
+ 0x29b26: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x01\x04\x03\x01", // 𩬦
+ 0x29b27: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x01\x02\x01", // 𩬧
+ 0x29b28: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x01\x05\x04", // 𩬨
+ 0x29b29: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x02\x05\x01", // 𩬩
+ 0x29b2a: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x04\x05\x04", // 𩬪
+ 0x29b2b: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x01\x03\x04", // 𩬫
+ 0x29b2c: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x02\x02\x01", // 𩬬
+ 0x29b2d: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x01\x01\x03\x04", // 𩬭
+ 0x29b2e: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x05\x01\x01\x02", // 𩬮
+ 0x29b2f: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x04\x02\x03\x04", // 𩬯
+ 0x29b30: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x01\x05\x01\x03", // 𩬰
+ 0x29b31: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x04\x01\x05\x03\x04", // 𩬱
+ 0x29b32: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x01\x01\x05\x03", // 𩬲
+ 0x29b33: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x03\x04\x03\x04", // 𩬳
+ 0x29b34: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x03\x02\x04\x01\x02", // 𩬴
+ 0x29b35: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x05\x01\x05\x02", // 𩬵
+ 0x29b36: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x05\x01\x01\x01\x01\x02", // 𩬶
+ 0x29b37: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x05\x05\x05\x02\x05\x02", // 𩬷
+ 0x29b38: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x03\x01\x05\x02\x03", // 𩬸
+ 0x29b39: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x01\x01\x02\x01\x05", // 𩬹
+ 0x29b3a: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x05\x02\x05\x01\x01", // 𩬺
+ 0x29b3b: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x05\x01\x02\x03\x04", // 𩬻
+ 0x29b3c: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x03\x05\x04\x01", // 𩬼
+ 0x29b3d: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x05\x04\x01\x02\x03\x04", // 𩬽
+ 0x29b3e: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x02\x04\x03\x01", // 𩬾
+ 0x29b3f: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x01\x03\x05\x03\x04", // 𩬿
+ 0x29b40: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x03\x03\x05\x01\x01", // 𩭀
+ 0x29b41: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x02\x02\x03\x02\x02", // 𩭁
+ 0x29b42: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x04\x03\x01\x03\x05", // 𩭂
+ 0x29b43: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x01\x02\x01\x04", // 𩭃
+ 0x29b44: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x03\x01\x02\x03\x04", // 𩭄
+ 0x29b45: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x05\x04\x01\x05\x04\x01", // 𩭅
+ 0x29b46: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x04\x01\x02\x05\x01", // 𩭆
+ 0x29b47: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x01\x01\x02\x01\x01", // 𩭇
+ 0x29b48: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x03\x02\x05\x01\x01\x01", // 𩭈
+ 0x29b49: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x04\x01\x03\x02\x05\x02", // 𩭉
+ 0x29b4a: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x05\x01\x03\x05\x02\x05\x01", // 𩭊
+ 0x29b4b: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x01\x02\x03\x04\x01", // 𩭋
+ 0x29b4c: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x03\x04\x03\x04\x03\x04", // 𩭌
+ 0x29b4d: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x03\x02\x04\x02\x05\x01", // 𩭍
+ 0x29b4e: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x05\x02\x02\x01\x05\x03", // 𩭎
+ 0x29b4f: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x04\x04\x03\x05\x03\x01", // 𩭏
+ 0x29b50: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x03\x05\x03\x03\x03\x04", // 𩭐
+ 0x29b51: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x01\x03\x02\x03\x04", // 𩭑
+ 0x29b52: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x03\x05\x03\x03\x03\x04", // 𩭒
+ 0x29b53: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x05\x03\x05\x01\x01", // 𩭓
+ 0x29b54: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x03\x02\x04\x01\x05\x03", // 𩭔
+ 0x29b55: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x04\x05\x05\x04\x03\x05", // 𩭕
+ 0x29b56: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x03\x02\x04\x02\x05\x01", // 𩭖
+ 0x29b57: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x05\x01\x01\x02\x04", // 𩭗
+ 0x29b58: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x03\x04\x01\x02\x03", // 𩭘
+ 0x29b59: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x05\x05\x05\x01\x02\x01", // 𩭙
+ 0x29b5a: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x01\x01\x02\x03\x04", // 𩭚
+ 0x29b5b: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x05\x03\x05\x01\x01\x02", // 𩭛
+ 0x29b5c: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x01\x03\x05\x03\x04", // 𩭜
+ 0x29b5d: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x01\x02\x01\x05\x03\x04", // 𩭝
+ 0x29b5e: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x05\x01\x01\x02\x04\x01\x03\x04", // 𩭞
+ 0x29b5f: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x01\x02\x05\x01\x01\x01\x02", // 𩭟
+ 0x29b60: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x05\x01\x03\x03\x05\x04\x01", // 𩭠
+ 0x29b61: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x02\x01\x02\x05\x01\x01", // 𩭡
+ 0x29b62: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x02\x01\x03\x01\x01\x02", // 𩭢
+ 0x29b63: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x03\x04\x02\x05\x01\x01", // 𩭣
+ 0x29b64: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x05\x05\x04\x04\x05\x04\x04", // 𩭤
+ 0x29b65: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x05\x03\x02\x01\x05\x01\x01", // 𩭥
+ 0x29b66: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x01\x02\x01\x02\x01\x02\x01\x01", // 𩭦
+ 0x29b67: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x02\x05\x01\x01\x03\x01\x02", // 𩭧
+ 0x29b68: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x01\x01\x01\x05\x03\x04", // 𩭨
+ 0x29b69: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x05\x01\x01\x02\x03\x04", // 𩭩
+ 0x29b6a: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x05\x01\x03\x05\x02\x02\x05\x02", // 𩭪
+ 0x29b6b: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x05\x02\x03\x04\x03\x04", // 𩭫
+ 0x29b6c: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x03\x02\x05\x01\x05\x03\x02", // 𩭬
+ 0x29b6d: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x01\x01\x01\x05\x01\x05", // 𩭭
+ 0x29b6e: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x04\x01\x05\x04\x05\x04\x04", // 𩭮
+ 0x29b6f: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x01\x05\x05\x01\x02\x01", // 𩭯
+ 0x29b70: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x03\x04\x02\x05\x01\x01", // 𩭰
+ 0x29b71: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x05\x02\x05\x02\x05\x01\x01", // 𩭱
+ 0x29b72: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x02\x05\x01\x01\x03\x05\x04", // 𩭲
+ 0x29b73: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x05\x03\x03\x04\x05\x04\x04", // 𩭳
+ 0x29b74: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x04\x05\x03\x04\x01\x02\x01", // 𩭴
+ 0x29b75: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x04\x05\x02\x05\x01\x05\x01", // 𩭵
+ 0x29b76: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x04\x01\x02\x05\x01\x02\x01", // 𩭶
+ 0x29b77: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x03\x04\x03\x04\x02\x03\x04", // 𩭷
+ 0x29b78: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x01\x03\x02\x04\x02\x05\x01", // 𩭸
+ 0x29b79: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x05\x04\x01\x03\x04\x03\x03\x03", // 𩭹
+ 0x29b7a: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 𩭺
+ 0x29b7b: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x03\x04\x04\x03\x02\x05\x01\x01", // 𩭻
+ 0x29b7c: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x02\x02\x05\x01\x01\x02\x03\x04", // 𩭼
+ 0x29b7d: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x04\x05\x03\x05\x04\x02\x05\x01", // 𩭽
+ 0x29b7e: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x05\x04\x05\x02\x03\x03\x01\x03\x04", // 𩭾
+ 0x29b7f: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x01\x01\x01\x05\x03\x05\x04\x01", // 𩭿
+ 0x29b80: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x05\x03\x03\x04\x04\x05\x04\x04", // 𩮀
+ 0x29b81: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x01\x01\x02\x05\x03\x01\x03\x04", // 𩮁
+ 0x29b82: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 𩮂
+ 0x29b83: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x04\x05\x03\x04\x03\x04\x05\x04", // 𩮃
+ 0x29b84: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x01\x02\x03\x04\x03\x01\x01\x05", // 𩮄
+ 0x29b85: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x03\x04\x03\x05\x04\x03\x05\x04", // 𩮅
+ 0x29b86: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x01\x01\x01\x03\x04\x02\x02", // 𩮆
+ 0x29b87: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x04\x05\x03\x05\x04\x01\x05\x03", // 𩮇
+ 0x29b88: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x03\x01\x02\x05\x03\x05\x01\x01", // 𩮈
+ 0x29b89: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 𩮉
+ 0x29b8a: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x03\x04\x03\x05\x01\x01\x02", // 𩮊
+ 0x29b8b: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 𩮋
+ 0x29b8c: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 𩮌
+ 0x29b8d: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 𩮍
+ 0x29b8e: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 𩮎
+ 0x29b8f: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 𩮏
+ 0x29b90: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𩮐
+ 0x29b91: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x05\x02\x05\x02\x05\x01", // 𩮑
+ 0x29b92: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x02\x02\x01\x04\x01\x05\x03", // 𩮒
+ 0x29b93: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x03\x04\x03\x05\x01\x01\x02", // 𩮓
+ 0x29b94: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 𩮔
+ 0x29b95: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x02\x05\x01\x01\x04\x05\x05\x04", // 𩮕
+ 0x29b96: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x02\x01\x02\x05\x01\x04\x03\x01", // 𩮖
+ 0x29b97: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x01\x04\x03\x01\x04\x01\x04\x03\x01", // 𩮗
+ 0x29b98: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01", // 𩮘
+ 0x29b99: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x01\x02\x01\x02\x02\x01\x01\x01", // 𩮙
+ 0x29b9a: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x05\x04\x04\x02\x05\x01\x02\x01\x04", // 𩮚
+ 0x29b9b: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x04\x05\x05\x05\x04\x02\x03\x04", // 𩮛
+ 0x29b9c: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x01\x01\x03\x05\x03\x03\x02\x02", // 𩮜
+ 0x29b9d: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x04\x05\x03\x01\x01\x02\x02\x05\x01", // 𩮝
+ 0x29b9e: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x05\x03\x02\x05\x01\x01\x02\x01\x01", // 𩮞
+ 0x29b9f: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x01\x02\x05\x02\x03\x04\x03\x04\x01", // 𩮟
+ 0x29ba0: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x04\x05\x03\x04\x03\x04\x02\x05\x01", // 𩮠
+ 0x29ba1: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x05\x01\x01\x03\x05\x03\x03\x03\x04", // 𩮡
+ 0x29ba2: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x01\x05\x02\x05\x01\x01\x02\x01", // 𩮢
+ 0x29ba3: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x01\x02\x01\x03\x03\x05\x04\x01\x04", // 𩮣
+ 0x29ba4: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x05\x04\x05\x02\x03\x01\x03\x05\x04\x04", // 𩮤
+ 0x29ba5: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x03\x04\x04\x03\x02\x04\x01\x03\x04", // 𩮥
+ 0x29ba6: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x01\x03\x04\x03\x04\x03\x05\x04\x01", // 𩮦
+ 0x29ba7: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x05\x04\x05\x04\x05\x04\x01\x02\x03\x04", // 𩮧
+ 0x29ba8: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 𩮨
+ 0x29ba9: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x04\x01\x05\x01\x01\x03\x02\x05\x01", // 𩮩
+ 0x29baa: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x01\x02\x02\x01\x04\x05\x04\x04", // 𩮪
+ 0x29bab: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x04\x01\x02\x03\x04\x03\x05\x05\x04", // 𩮫
+ 0x29bac: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x04\x05\x04\x05\x04\x01\x05\x04\x01", // 𩮬
+ 0x29bad: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x02\x05\x01\x05\x01\x01\x02\x05\x02", // 𩮭
+ 0x29bae: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x02\x05\x01\x01\x05\x04\x04\x04\x04", // 𩮮
+ 0x29baf: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x01\x04\x01\x05\x03\x03\x01\x03\x04", // 𩮯
+ 0x29bb0: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x02\x05\x03\x03\x04\x01\x04\x05\x04\x04", // 𩮰
+ 0x29bb1: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x01\x01\x03\x04\x03\x02\x01\x05\x01\x01", // 𩮱
+ 0x29bb2: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x01\x04\x03\x01\x03\x03\x01\x01\x02\x01", // 𩮲
+ 0x29bb3: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 𩮳
+ 0x29bb4: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𩮴
+ 0x29bb5: "\x01\x03\x01\x01\x03\x04\x03\x05\x05\x04\x05\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03", // 𩮵
+ 0x29bb6: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x05\x01\x02\x03\x04\x03\x05\x03\x04", // 𩮶
+ 0x29bb7: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x02\x05\x01\x01\x03\x05\x05\x01\x03\x05", // 𩮷
+ 0x29bb8: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x05\x01\x02\x03\x04\x03\x01\x03\x04", // 𩮸
+ 0x29bb9: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 𩮹
+ 0x29bba: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x03", // 𩮺
+ 0x29bbb: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x03\x04\x05\x04\x04\x05\x04\x04\x05", // 𩮻
+ 0x29bbc: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x05\x04\x05\x02\x03\x03\x05\x04\x05\x03", // 𩮼
+ 0x29bbd: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03", // 𩮽
+ 0x29bbe: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x03\x01\x01\x03\x04\x05\x03\x05\x05\x04", // 𩮾
+ 0x29bbf: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04", // 𩮿
+ 0x29bc0: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x05\x01\x02\x03\x04\x04\x05\x04", // 𩯀
+ 0x29bc1: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 𩯁
+ 0x29bc2: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x05\x01\x01\x05\x04\x01\x05\x03\x05", // 𩯂
+ 0x29bc3: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x05\x01\x05\x03\x02\x02\x05\x01\x01\x01\x03\x04", // 𩯃
+ 0x29bc4: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x03\x01\x02\x05\x03\x05\x01\x01\x01\x02\x04", // 𩯄
+ 0x29bc5: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x04\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 𩯅
+ 0x29bc6: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 𩯆
+ 0x29bc7: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 𩯇
+ 0x29bc8: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x01\x04\x03\x01\x02\x05\x01\x01\x05\x03\x04", // 𩯈
+ 0x29bc9: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x01\x01\x01\x02\x02\x01\x01\x01\x05\x04", // 𩯉
+ 0x29bca: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 𩯊
+ 0x29bcb: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x02\x05\x01\x01\x01\x02\x01\x05\x03\x04", // 𩯋
+ 0x29bcc: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x05\x04\x03\x03\x04\x05\x01\x05\x03\x05\x05\x04", // 𩯌
+ 0x29bcd: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x01\x02\x01\x02\x02\x01\x01\x01\x05\x04", // 𩯍
+ 0x29bce: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x03\x05\x05\x03\x04\x02\x05\x02\x02\x01", // 𩯎
+ 0x29bcf: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 𩯏
+ 0x29bd0: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x01\x02\x01\x05\x02\x05\x02\x05\x01\x01", // 𩯐
+ 0x29bd1: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x05\x04\x05\x04\x05\x04\x03\x04\x02\x04\x04\x04", // 𩯑
+ 0x29bd2: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x03\x04", // 𩯒
+ 0x29bd3: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x05\x05\x05\x02\x05\x03\x04\x03\x05\x01\x01\x02", // 𩯓
+ 0x29bd4: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x04\x05\x05\x02\x01\x03\x02\x05\x01\x01\x01", // 𩯔
+ 0x29bd5: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x05\x02\x01\x02\x01\x04\x01\x05\x04\x03\x02\x05", // 𩯕
+ 0x29bd6: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x03\x04\x04\x04\x05\x01\x01\x02\x03\x04", // 𩯖
+ 0x29bd7: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𩯗
+ 0x29bd8: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 𩯘
+ 0x29bd9: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x02\x02\x01\x03\x05\x03\x03\x03\x04", // 𩯙
+ 0x29bda: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x05\x02\x01\x03\x01\x02\x01\x02\x05\x01\x01", // 𩯚
+ 0x29bdb: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x02\x05\x01\x01\x04\x01\x05\x03\x03\x01\x03\x04", // 𩯛
+ 0x29bdc: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x05\x03", // 𩯜
+ 0x29bdd: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x01\x02\x02\x05\x01\x01\x03\x05\x03\x04\x01", // 𩯝
+ 0x29bde: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x01\x03\x05\x04\x05\x04\x04\x03\x01\x02\x03\x04", // 𩯞
+ 0x29bdf: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 𩯟
+ 0x29be0: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x02\x05\x01\x01\x04\x04\x05\x03\x04\x02\x05\x01", // 𩯠
+ 0x29be1: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05", // 𩯡
+ 0x29be2: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x03\x04\x04\x04\x03\x01\x03\x02\x05\x01\x01\x01", // 𩯢
+ 0x29be3: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x04\x04\x04\x04\x04\x05\x02\x03\x04\x03\x05\x04", // 𩯣
+ 0x29be4: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 𩯤
+ 0x29be5: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x01\x01\x03\x04\x02\x05\x01\x01\x04\x04\x04\x04", // 𩯥
+ 0x29be6: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04", // 𩯦
+ 0x29be7: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04\x01\x02\x04", // 𩯧
+ 0x29be8: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𩯨
+ 0x29be9: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x03\x05\x01\x03\x01\x02\x05\x01\x02\x05\x05\x03\x04", // 𩯩
+ 0x29bea: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x05\x05\x04\x04\x04\x04\x04\x04\x05\x02\x05\x01\x05\x01", // 𩯪
+ 0x29beb: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x04\x05\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩯫
+ 0x29bec: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x04\x04\x03\x05\x03\x03\x02\x05\x01\x01\x02\x01\x01", // 𩯬
+ 0x29bed: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x04\x05\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𩯭
+ 0x29bee: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x04\x01\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04", // 𩯮
+ 0x29bef: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x05\x02\x05\x01\x03\x05\x03\x05\x02\x05\x01\x03\x05", // 𩯯
+ 0x29bf0: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x01\x05\x03\x04", // 𩯰
+ 0x29bf1: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x01\x01\x01\x02\x02\x01\x03\x04\x02\x04\x01\x03\x04", // 𩯱
+ 0x29bf2: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x01\x01\x03\x04\x03\x02\x01\x05\x01\x01\x04\x05\x04\x04", // 𩯲
+ 0x29bf3: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𩯳
+ 0x29bf4: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x02\x02\x01\x01\x02\x01\x02\x05\x01\x03\x05\x03\x04", // 𩯴
+ 0x29bf5: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 𩯵
+ 0x29bf6: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 𩯶
+ 0x29bf7: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x01\x05\x03\x04", // 𩯷
+ 0x29bf8: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x03\x01\x02\x01", // 𩯸
+ 0x29bf9: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01", // 𩯹
+ 0x29bfa: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 𩯺
+ 0x29bfb: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x03\x04\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01", // 𩯻
+ 0x29bfc: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x02\x02\x05\x02\x02\x01\x04\x05\x02\x05\x01\x01\x01", // 𩯼
+ 0x29bfd: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x05\x01\x02\x03\x04\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 𩯽
+ 0x29bfe: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x03\x01\x01\x02\x05\x02", // 𩯾
+ 0x29bff: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x02\x01\x01\x05\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𩯿
+ 0x29c00: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01\x01\x01", // 𩰀
+ 0x29c01: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x04\x03\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 𩰁
+ 0x29c02: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 𩰂
+ 0x29c03: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x05\x02\x05\x01\x01\x05\x03\x05\x03\x05\x02\x05\x01\x03\x05\x04", // 𩰃
+ 0x29c04: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x04\x01\x04\x04\x05\x01\x02\x03\x03\x02\x05\x01\x01\x01\x03\x04", // 𩰄
+ 0x29c05: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x01\x02\x01\x03\x05\x01\x03\x01\x02\x05\x01\x02\x05\x05\x03\x04", // 𩰅
+ 0x29c06: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x02\x05\x01\x01\x02\x02\x01\x01\x01\x02\x05\x01\x01\x02\x02\x01\x01\x01", // 𩰆
+ 0x29c07: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x04\x03\x01\x03\x02\x05\x01\x01\x01\x01\x03\x04\x04\x03\x01\x02\x05\x04", // 𩰇
+ 0x29c08: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 𩰈
+ 0x29c09: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x01\x02\x05\x01\x02\x04\x05\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 𩰉
+ 0x29c0a: "\x01\x01\x02\x01\x02", // 𩰊
+ 0x29c0b: "\x02\x01\x01\x02\x01", // 𩰋
+ 0x29c0c: "\x02\x01\x01\x02\x01\x01\x01\x02\x01\x02\x03\x01\x05", // 𩰌
+ 0x29c0d: "\x02\x01\x01\x02\x01\x01\x01\x02\x01\x02\x04\x01\x02\x04", // 𩰍
+ 0x29c0e: "\x02\x01\x01\x02\x01\x01\x01\x02\x01\x02\x01\x05\x03\x04", // 𩰎
+ 0x29c0f: "\x02\x01\x01\x02\x01\x01\x01\x02\x01\x02\x03\x05\x05\x03", // 𩰏
+ 0x29c10: "\x02\x01\x01\x02\x01\x01\x01\x02\x01\x02\x03\x04\x02\x03\x04", // 𩰐
+ 0x29c11: "\x02\x01\x01\x02\x01\x01\x01\x02\x01\x02\x01\x03\x02\x05\x01\x01", // 𩰑
+ 0x29c12: "\x02\x01\x01\x02\x01\x01\x01\x02\x01\x02\x01\x02\x05\x01\x04\x03\x01", // 𩰒
+ 0x29c13: "\x02\x01\x01\x02\x01\x01\x01\x02\x01\x02\x01\x02\x02\x01\x03\x04\x05\x05", // 𩰓
+ 0x29c14: "\x02\x01\x01\x02\x01\x01\x01\x02\x01\x02\x03\x04\x01\x01\x02\x04\x03\x01", // 𩰔
+ 0x29c15: "\x03\x05\x02\x01\x01\x02\x01\x01\x01\x02\x01\x02\x03\x02\x01\x05\x01\x01\x03\x05", // 𩰕
+ 0x29c16: "\x02\x01\x01\x02\x01\x01\x01\x02\x01\x02\x01\x02\x05\x01\x04\x03\x01\x03\x03\x01\x02", // 𩰖
+ 0x29c17: "\x02\x01\x01\x02\x01\x01\x01\x02\x01\x02\x01\x02\x03\x03\x02\x05\x01\x01\x01\x03\x04", // 𩰗
+ 0x29c18: "\x02\x01\x01\x02\x01\x01\x01\x02\x01\x02\x03\x05\x02\x05\x01\x01\x02\x05\x01\x01\x05", // 𩰘
+ 0x29c19: "\x02\x01\x01\x02\x01\x01\x01\x02\x01\x02\x03\x04\x01\x02\x05\x01\x05\x04\x01\x05\x04\x01", // 𩰙
+ 0x29c1a: "\x02\x01\x01\x02\x01\x01\x01\x02\x01\x02\x01\x02\x01\x05\x05\x01\x02\x01\x03\x03\x01\x02", // 𩰚
+ 0x29c1b: "\x02\x01\x01\x02\x01\x01\x01\x02\x01\x02\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04", // 𩰛
+ 0x29c1c: "\x02\x01\x01\x02\x01\x01\x01\x02\x01\x02\x01\x03\x05\x03\x03\x01\x03\x05\x03\x03\x04\x03\x03\x04", // 𩰜
+ 0x29c1d: "\x02\x01\x01\x02\x01\x01\x01\x02\x01\x02\x04\x04\x05\x01\x02\x03\x03\x02\x05\x01\x01\x01\x03\x04", // 𩰝
+ 0x29c1e: "\x02\x01\x01\x02\x01\x01\x01\x02\x01\x02\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𩰞
+ 0x29c1f: "\x02\x01\x01\x02\x01\x01\x01\x02\x01\x02\x01\x03\x05\x03\x03\x03\x04\x01\x03\x05\x03\x03\x03\x04\x04\x03\x03\x04", // 𩰟
+ 0x29c20: "\x03\x04\x04\x04\x04\x04\x05\x02\x01\x05\x05\x02\x01\x03\x04", // 𩰠
+ 0x29c21: "\x03\x04\x04\x04\x04\x04\x05\x02\x01\x05\x02\x05\x01\x03\x04", // 𩰡
+ 0x29c22: "\x03\x04\x04\x04\x04\x04\x05\x02\x01\x05\x01\x02\x05\x01\x03\x04", // 𩰢
+ 0x29c23: "\x03\x04\x04\x03\x04\x05\x03\x04\x04\x04\x04\x04\x05\x02\x01\x05\x05\x04", // 𩰣
+ 0x29c24: "\x03\x01\x01\x03\x04\x01\x05\x01\x05\x03\x04\x04\x04\x04\x04\x05\x02\x03\x05", // 𩰤
+ 0x29c25: "\x03\x04\x04\x03\x02\x05\x02\x02\x01\x03\x04\x04\x04\x04\x04\x05\x02\x01\x05\x05\x04", // 𩰥
+ 0x29c26: "\x01\x02\x03\x04\x02\x05\x02\x02\x01\x03\x04\x04\x04\x04\x04\x05\x02\x01\x05\x05\x04", // 𩰦
+ 0x29c27: "\x01\x02\x03\x04\x05\x02\x02\x01\x03\x03\x04\x04\x04\x04\x04\x05\x02\x01\x05\x03\x03\x03", // 𩰧
+ 0x29c28: "\x03\x04\x04\x03\x05\x01\x03\x02\x05\x01\x03\x04\x04\x04\x04\x04\x05\x02\x01\x05\x01\x02\x04", // 𩰨
+ 0x29c29: "\x01\x02\x03\x04\x04\x01\x03\x04\x01\x02\x03\x04\x04\x05\x03\x04\x04\x04\x04\x04\x01\x05\x01\x02\x04", // 𩰩
+ 0x29c2a: "\x03\x02\x01\x01\x03\x01\x01\x02\x05\x02\x05\x01\x01\x04\x05\x03\x04\x04\x04\x04\x04\x05\x02\x03\x05\x03\x03\x03", // 𩰪
+ 0x29c2b: "\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x05\x02", // 𩰫
+ 0x29c2c: "\x01\x02\x05\x01\x01\x05\x02\x02\x05\x04\x03\x01\x02", // 𩰬
+ 0x29c2d: "\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x05\x03\x04", // 𩰭
+ 0x29c2e: "\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x04\x04\x01\x02", // 𩰮
+ 0x29c2f: "\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x02\x02\x05\x01", // 𩰯
+ 0x29c30: "\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x05\x04\x01\x02\x01", // 𩰰
+ 0x29c31: "\x04\x03\x01\x01\x01\x02\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𩰱
+ 0x29c32: "\x05\x01\x05\x05\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𩰲
+ 0x29c33: "\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x02\x01\x01\x02\x01", // 𩰳
+ 0x29c34: "\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x03\x02\x05\x02\x02", // 𩰴
+ 0x29c35: "\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x02\x05\x01\x01\x01", // 𩰵
+ 0x29c36: "\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x04\x01\x05\x03\x03\x04", // 𩰶
+ 0x29c37: "\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x03\x04\x05\x02\x03\x05", // 𩰷
+ 0x29c38: "\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x05\x01\x01\x05\x01\x01", // 𩰸
+ 0x29c39: "\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x05\x05\x05\x01\x02\x01", // 𩰹
+ 0x29c3a: "\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x05\x04\x03\x04\x03\x05\x04", // 𩰺
+ 0x29c3b: "\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x02\x04\x01\x03\x04\x04", // 𩰻
+ 0x29c3c: "\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x05\x04\x02\x03\x04\x05\x04", // 𩰼
+ 0x29c3d: "\x01\x02\x02\x01\x01\x02\x05\x04\x03\x01\x01\x02\x05\x04\x03\x05\x03\x05\x04", // 𩰽
+ 0x29c3e: "\x04\x04\x01\x05\x01\x05\x03\x02\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𩰾
+ 0x29c3f: "\x01\x01\x03\x04\x01\x01\x03\x04\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𩰿
+ 0x29c40: "\x01\x02\x01\x02\x01\x02\x01\x03\x04\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𩱀
+ 0x29c41: "\x04\x03\x01\x01\x02\x01\x03\x04\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𩱁
+ 0x29c42: "\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x05\x02\x01\x01\x05\x02\x01\x01", // 𩱂
+ 0x29c43: "\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x05\x01\x01\x01\x01\x02\x05\x04", // 𩱃
+ 0x29c44: "\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x03\x02\x05\x02\x02\x01\x03\x04", // 𩱄
+ 0x29c45: "\x03\x04\x05\x02\x03\x05\x03\x05\x04\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𩱅
+ 0x29c46: "\x05\x01\x05\x05\x03\x01\x05\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𩱆
+ 0x29c47: "\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𩱇
+ 0x29c48: "\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03", // 𩱈
+ 0x29c49: "\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𩱉
+ 0x29c4a: "\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x03\x02\x05\x02\x02\x04\x03\x03\x04", // 𩱊
+ 0x29c4b: "\x04\x03\x01\x01\x02\x01\x04\x04\x04\x04\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𩱋
+ 0x29c4c: "\x05\x01\x05\x04\x01\x01\x02\x01\x05\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𩱌
+ 0x29c4d: "\x05\x01\x05\x01\x02\x02\x05\x01\x05\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𩱍
+ 0x29c4e: "\x05\x01\x05\x05\x01\x05\x03\x02\x05\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𩱎
+ 0x29c4f: "\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𩱏
+ 0x29c50: "\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x04\x01\x04\x03\x02\x05\x03\x05\x02\x05\x01", // 𩱐
+ 0x29c51: "\x05\x02\x01\x03\x03\x05\x04\x04\x01\x02\x04\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𩱑
+ 0x29c52: "\x05\x01\x05\x01\x02\x02\x05\x01\x04\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x05\x01\x05", // 𩱒
+ 0x29c53: "\x05\x01\x05\x01\x02\x02\x01\x01\x01\x05\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𩱓
+ 0x29c54: "\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𩱔
+ 0x29c55: "\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𩱕
+ 0x29c56: "\x05\x01\x05\x01\x02\x05\x01\x02\x03\x04\x05\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𩱖
+ 0x29c57: "\x05\x01\x05\x01\x02\x05\x03\x05\x01\x01\x05\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𩱗
+ 0x29c58: "\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x02\x04\x01\x03\x04\x04\x04\x01\x03\x05\x03\x04", // 𩱘
+ 0x29c59: "\x04\x03\x01\x02\x03\x04\x04\x01\x05\x04\x03\x02\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𩱙
+ 0x29c5a: "\x05\x01\x05\x01\x02\x04\x05\x05\x02\x01\x05\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𩱚
+ 0x29c5b: "\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x03\x04\x04\x04\x04\x04\x05\x02\x03\x05\x03\x05\x04", // 𩱛
+ 0x29c5c: "\x05\x01\x05\x01\x03\x01\x01\x05\x03\x04\x05\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𩱜
+ 0x29c5d: "\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x04\x01\x01\x02\x04\x01\x03\x04\x04\x03\x05\x03\x04", // 𩱝
+ 0x29c5e: "\x05\x01\x05\x01\x02\x01\x03\x05\x02\x01\x05\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𩱞
+ 0x29c5f: "\x05\x01\x05\x03\x01\x05\x05\x04\x01\x04\x05\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𩱟
+ 0x29c60: "\x05\x01\x05\x01\x05\x03\x05\x01\x05\x03\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x05\x01\x05", // 𩱠
+ 0x29c61: "\x05\x01\x05\x03\x02\x02\x05\x01\x03\x02\x05\x05\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𩱡
+ 0x29c62: "\x03\x01\x05\x05\x04\x01\x04\x04\x01\x05\x04\x03\x02\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𩱢
+ 0x29c63: "\x05\x01\x05\x04\x04\x01\x05\x01\x05\x03\x02\x05\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𩱣
+ 0x29c64: "\x05\x01\x05\x05\x01\x01\x01\x01\x02\x05\x04\x05\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𩱤
+ 0x29c65: "\x05\x01\x05\x05\x04\x05\x04\x05\x04\x01\x01\x01\x05\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𩱥
+ 0x29c66: "\x05\x01\x05\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03\x05\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𩱦
+ 0x29c67: "\x05\x01\x05\x04\x03\x01\x01\x02\x01\x04\x04\x04\x04\x05\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𩱧
+ 0x29c68: "\x05\x01\x05\x01\x03\x01\x01\x05\x03\x04\x01\x02\x04\x05\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𩱨
+ 0x29c69: "\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𩱩
+ 0x29c6a: "\x05\x01\x05\x02\x05\x01\x01\x01\x01\x02\x05\x03\x04\x05\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𩱪
+ 0x29c6b: "\x05\x01\x05\x01\x02\x05\x01\x02\x03\x04\x04\x05\x04\x05\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𩱫
+ 0x29c6c: "\x03\x02\x01\x01\x01\x02\x03\x04\x01\x02\x03\x04\x05\x01\x01\x04\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𩱬
+ 0x29c6d: "\x05\x01\x05\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01\x05\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𩱭
+ 0x29c6e: "\x05\x01\x05\x04\x04\x01\x01\x05\x01\x05\x01\x02\x03\x04\x05\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𩱮
+ 0x29c6f: "\x05\x01\x05\x04\x03\x01\x02\x03\x04\x04\x01\x05\x04\x03\x02\x05\x05\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𩱯
+ 0x29c70: "\x05\x01\x05\x01\x02\x01\x03\x02\x05\x01\x01\x02\x05\x03\x04\x05\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𩱰
+ 0x29c71: "\x05\x01\x05\x03\x01\x05\x05\x04\x01\x04\x04\x01\x05\x04\x03\x02\x05\x05\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𩱱
+ 0x29c72: "\x05\x01\x05\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𩱲
+ 0x29c73: "\x05\x01\x05\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01\x05\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𩱳
+ 0x29c74: "\x02\x05\x01\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x02\x05\x01\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𩱴
+ 0x29c75: "\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01\x02\x05\x02\x02\x01\x01\x03\x01\x05\x03\x04\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𩱵
+ 0x29c76: "\x05\x01\x05\x01\x04\x05\x02\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01\x05\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𩱶
+ 0x29c77: "\x05\x01\x05\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01\x02\x05\x02\x02\x01\x01\x03\x01\x05\x03\x04\x05\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𩱷
+ 0x29c78: "\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01\x02\x05\x02\x02\x01\x01\x03\x01\x05\x03\x04\x05\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x05\x01\x05", // 𩱸
+ 0x29c79: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x05\x03", // 𩱹
+ 0x29c7a: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x05\x02", // 𩱺
+ 0x29c7b: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x02\x04", // 𩱻
+ 0x29c7c: "\x03\x05\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩱼
+ 0x29c7d: "\x01\x03\x05\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩱽
+ 0x29c7e: "\x03\x01\x05\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩱾
+ 0x29c7f: "\x04\x01\x05\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩱿
+ 0x29c80: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x02\x05\x02", // 𩲀
+ 0x29c81: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x03\x05\x04", // 𩲁
+ 0x29c82: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x05\x02\x04", // 𩲂
+ 0x29c83: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x03\x05\x04", // 𩲃
+ 0x29c84: "\x01\x03\x05\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩲄
+ 0x29c85: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x01\x02\x04", // 𩲅
+ 0x29c86: "\x03\x02\x05\x01\x02\x01\x03\x05\x03\x03\x03", // 𩲆
+ 0x29c87: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x02\x01", // 𩲇
+ 0x29c88: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x02\x05\x02", // 𩲈
+ 0x29c89: "\x04\x01\x05\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩲉
+ 0x29c8a: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x03\x01\x01\x05", // 𩲊
+ 0x29c8b: "\x04\x01\x03\x05\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩲋
+ 0x29c8c: "\x04\x01\x05\x03\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩲌
+ 0x29c8d: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x03\x01\x01\x02", // 𩲍
+ 0x29c8e: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x02\x03\x04\x03", // 𩲎
+ 0x29c8f: "\x03\x02\x01\x05\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩲏
+ 0x29c90: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x03\x05\x03\x03", // 𩲐
+ 0x29c91: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x01\x01\x05\x04", // 𩲑
+ 0x29c92: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x03\x01\x05\x04", // 𩲒
+ 0x29c93: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x03\x01\x03\x04", // 𩲓
+ 0x29c94: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x03\x03\x01\x02", // 𩲔
+ 0x29c95: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x04\x03\x03\x04", // 𩲕
+ 0x29c96: "\x01\x05\x01\x05\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩲖
+ 0x29c97: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x03\x01\x01\x02", // 𩲗
+ 0x29c98: "\x01\x02\x01\x03\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩲘
+ 0x29c99: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x01\x02\x03\x04", // 𩲙
+ 0x29c9a: "\x01\x02\x03\x04\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩲚
+ 0x29c9b: "\x04\x05\x05\x04\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩲛
+ 0x29c9c: "\x03\x02\x01\x05\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩲜
+ 0x29c9d: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x03\x05\x05\x03", // 𩲝
+ 0x29c9e: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x03\x05\x01\x01", // 𩲞
+ 0x29c9f: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x03\x05\x03\x04", // 𩲟
+ 0x29ca0: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x04\x01\x05\x03", // 𩲠
+ 0x29ca1: "\x01\x01\x02\x03\x04\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩲡
+ 0x29ca2: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x05\x03\x02\x05\x04", // 𩲢
+ 0x29ca3: "\x02\x05\x01\x01\x02\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩲣
+ 0x29ca4: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x05\x03\x02\x05\x01", // 𩲤
+ 0x29ca5: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x05\x04\x02\x05\x01", // 𩲥
+ 0x29ca6: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x02\x01\x02\x05\x01", // 𩲦
+ 0x29ca7: "\x01\x02\x01\x03\x05\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩲧
+ 0x29ca8: "\x02\x01\x02\x01\x01\x05\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩲨
+ 0x29ca9: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x03\x04\x01\x05\x04", // 𩲩
+ 0x29caa: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x03\x05\x02\x03\x04", // 𩲪
+ 0x29cab: "\x03\x01\x01\x03\x04\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩲫
+ 0x29cac: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x01\x03\x05\x03\x03", // 𩲬
+ 0x29cad: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x01\x01\x03\x05\x04", // 𩲭
+ 0x29cae: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x04\x04\x05\x03\x05", // 𩲮
+ 0x29caf: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x04\x03\x01\x01\x02", // 𩲯
+ 0x29cb0: "\x01\x02\x05\x01\x05\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩲰
+ 0x29cb1: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x01\x02\x02\x05\x01", // 𩲱
+ 0x29cb2: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x02\x05\x01\x01\x01", // 𩲲
+ 0x29cb3: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x02\x05\x01\x01\x02", // 𩲳
+ 0x29cb4: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x02\x05\x01\x03\x04", // 𩲴
+ 0x29cb5: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x03\x01\x01\x02\x01", // 𩲵
+ 0x29cb6: "\x03\x01\x01\x03\x04\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩲶
+ 0x29cb7: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x03\x01\x02\x03\x04", // 𩲷
+ 0x29cb8: "\x03\x02\x05\x01\x01\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩲸
+ 0x29cb9: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x02\x01\x01\x03\x04", // 𩲹
+ 0x29cba: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x03\x04\x01\x02\x03\x04", // 𩲺
+ 0x29cbb: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x04\x01\x03\x04\x03\x04", // 𩲻
+ 0x29cbc: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x02\x01\x05\x03\x01\x05", // 𩲼
+ 0x29cbd: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x01\x02\x02\x01\x01\x01", // 𩲽
+ 0x29cbe: "\x01\x03\x03\x05\x01\x01\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩲾
+ 0x29cbf: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x02\x03\x04\x03\x05\x03", // 𩲿
+ 0x29cc0: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x01\x05\x04\x01\x02\x01", // 𩳀
+ 0x29cc1: "\x02\x04\x03\x01\x03\x05\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩳁
+ 0x29cc2: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x03\x01\x02\x01\x03\x05", // 𩳂
+ 0x29cc3: "\x03\x04\x01\x02\x03\x04\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩳃
+ 0x29cc4: "\x02\x05\x01\x02\x02\x01\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩳄
+ 0x29cc5: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x03\x01\x01\x02\x03\x04", // 𩳅
+ 0x29cc6: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x03\x01\x01\x02\x03\x04", // 𩳆
+ 0x29cc7: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x03\x02\x03\x05\x05\x04", // 𩳇
+ 0x29cc8: "\x03\x02\x05\x01\x01\x01\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩳈
+ 0x29cc9: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x03\x03\x05\x04\x01\x04", // 𩳉
+ 0x29cca: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x03\x05\x04\x02\x05\x01", // 𩳊
+ 0x29ccb: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x03\x04\x01\x02\x05\x01", // 𩳋
+ 0x29ccc: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x01\x02\x05\x01\x02\x05\x01", // 𩳌
+ 0x29ccd: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x01\x05\x05\x05\x01\x02\x01", // 𩳍
+ 0x29cce: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x03\x04\x04\x03\x05\x02\x01", // 𩳎
+ 0x29ccf: "\x03\x04\x04\x03\x05\x03\x03\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩳏
+ 0x29cd0: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x01\x02\x05\x01\x01\x02\x04", // 𩳐
+ 0x29cd1: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x04\x04\x01\x02\x03\x04\x03", // 𩳑
+ 0x29cd2: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x01\x02\x05\x01\x02\x03\x04", // 𩳒
+ 0x29cd3: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x02\x05\x01\x01\x02\x01\x01", // 𩳓
+ 0x29cd4: "\x01\x02\x01\x03\x05\x02\x01\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩳔
+ 0x29cd5: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x03\x04\x04\x03\x05\x03\x01", // 𩳕
+ 0x29cd6: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x02\x05\x01\x01\x01\x03\x04", // 𩳖
+ 0x29cd7: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x05\x04\x01\x01\x02\x03\x04", // 𩳗
+ 0x29cd8: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x03\x04\x01\x02\x03\x04\x04", // 𩳘
+ 0x29cd9: "\x03\x04\x01\x02\x03\x05\x04\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩳙
+ 0x29cda: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x04\x04\x05\x01\x01\x03\x05", // 𩳚
+ 0x29cdb: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x01\x02\x05\x01\x01\x01\x02", // 𩳛
+ 0x29cdc: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x01\x02\x05\x03\x05\x01\x01", // 𩳜
+ 0x29cdd: "\x03\x01\x03\x04\x02\x05\x01\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩳝
+ 0x29cde: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x01\x02\x04\x01\x03\x04\x04", // 𩳞
+ 0x29cdf: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x01\x03\x05\x03\x03\x03\x04", // 𩳟
+ 0x29ce0: "\x01\x05\x05\x04\x05\x03\x04\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩳠
+ 0x29ce1: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x03\x04\x04\x03\x01\x02\x04", // 𩳡
+ 0x29ce2: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x01\x03\x04\x02\x05\x01\x01\x05", // 𩳢
+ 0x29ce3: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x01\x03\x04\x01\x02\x05\x01\x02", // 𩳣
+ 0x29ce4: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x01\x02\x01\x01\x01\x05\x03\x04", // 𩳤
+ 0x29ce5: "\x01\x03\x05\x03\x03\x04\x03\x04\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩳥
+ 0x29ce6: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x03\x01\x01\x03\x04\x02\x05\x01", // 𩳦
+ 0x29ce7: "\x01\x04\x05\x02\x04\x01\x03\x04\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩳧
+ 0x29ce8: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x02\x01\x02\x05\x01\x01\x02\x04", // 𩳨
+ 0x29ce9: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x03\x01\x02\x03\x04\x03\x05\x03", // 𩳩
+ 0x29cea: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x02\x05\x01\x01\x03\x01\x03\x02", // 𩳪
+ 0x29ceb: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x05\x04\x04\x03\x01\x02\x03\x04", // 𩳫
+ 0x29cec: "\x03\x04\x03\x04\x03\x05\x01\x01\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩳬
+ 0x29ced: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x01\x02\x05\x02\x02\x01\x05\x04", // 𩳭
+ 0x29cee: "\x01\x04\x05\x02\x03\x04\x03\x04\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩳮
+ 0x29cef: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x01\x05\x03\x05\x03\x01\x01\x05", // 𩳯
+ 0x29cf0: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x02\x01\x05\x03\x01\x05\x03\x04", // 𩳰
+ 0x29cf1: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x03\x02\x01\x01\x05\x01\x01\x02", // 𩳱
+ 0x29cf2: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x03\x02\x03\x05\x04\x03\x05\x04", // 𩳲
+ 0x29cf3: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x01\x03\x04\x03\x04\x02\x03\x04", // 𩳳
+ 0x29cf4: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x01\x02\x01\x01\x02\x01\x02\x04", // 𩳴
+ 0x29cf5: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x02\x05\x01\x01\x01\x01\x03\x04\x04", // 𩳵
+ 0x29cf6: "\x01\x02\x02\x01\x05\x01\x02\x03\x04\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩳶
+ 0x29cf7: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x05\x02\x01\x02\x05\x01\x01\x05\x02", // 𩳷
+ 0x29cf8: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x01\x02\x01\x02\x02\x05\x01\x02\x01", // 𩳸
+ 0x29cf9: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x01\x02\x05\x03\x05\x01\x05\x04", // 𩳹
+ 0x29cfa: "\x02\x05\x01\x01\x01\x02\x05\x01\x05\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩳺
+ 0x29cfb: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x02\x05\x01\x02\x01\x03\x04\x03\x02", // 𩳻
+ 0x29cfc: "\x04\x04\x05\x03\x05\x04\x02\x05\x01\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩳼
+ 0x29cfd: "\x01\x01\x01\x03\x04\x02\x05\x01\x01\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩳽
+ 0x29cfe: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 𩳾
+ 0x29cff: "\x02\x01\x01\x01\x05\x03\x05\x04\x01\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩳿
+ 0x29d00: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x01\x02\x01\x03\x02\x05\x01\x01", // 𩴀
+ 0x29d01: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 𩴁
+ 0x29d02: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𩴂
+ 0x29d03: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x03\x05\x05\x01\x01\x04\x05\x04\x04", // 𩴃
+ 0x29d04: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x04\x05\x01\x03\x02\x05\x01\x02\x02", // 𩴄
+ 0x29d05: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x01\x01\x01\x02\x05\x03\x01\x03\x04", // 𩴅
+ 0x29d06: "\x05\x05\x04\x05\x05\x04\x01\x05\x03\x04\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩴆
+ 0x29d07: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x03\x04\x01\x02\x03\x05\x03\x05\x05\x04", // 𩴇
+ 0x29d08: "\x02\x05\x01\x01\x01\x01\x01\x02\x03\x04\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩴈
+ 0x29d09: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𩴉
+ 0x29d0a: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x01\x02\x01\x02\x03\x04\x01\x02\x03\x04", // 𩴊
+ 0x29d0b: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x01\x05\x01\x02\x01\x03\x05\x01\x01", // 𩴋
+ 0x29d0c: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x02\x02\x03\x01\x04\x02\x05\x02\x02\x01", // 𩴌
+ 0x29d0d: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x03\x02\x01\x01\x05\x01\x01\x02\x05\x04", // 𩴍
+ 0x29d0e: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x04\x01\x03\x04\x03\x04\x03\x05\x04\x01", // 𩴎
+ 0x29d0f: "\x04\x03\x01\x01\x03\x04\x02\x05\x01\x01\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩴏
+ 0x29d10: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x04\x01\x05\x05\x04\x04\x01\x03\x04\x01\x02", // 𩴐
+ 0x29d11: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03", // 𩴑
+ 0x29d12: "\x05\x01\x05\x05\x04\x02\x05\x01\x02\x01\x04\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩴒
+ 0x29d13: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𩴓
+ 0x29d14: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x04\x01\x03\x05\x01\x01\x02\x05\x01\x01\x02", // 𩴔
+ 0x29d15: "\x01\x02\x05\x01\x01\x01\x02\x03\x03\x01\x02\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩴕
+ 0x29d16: "\x04\x03\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩴖
+ 0x29d17: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01", // 𩴗
+ 0x29d18: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x02\x01\x05\x03\x01\x05\x03\x05\x04\x03\x05", // 𩴘
+ 0x29d19: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x04\x04\x01\x04\x05\x03\x05\x01\x02\x03\x04", // 𩴙
+ 0x29d1a: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x04\x01\x03\x04\x03\x02\x01\x01\x02\x03\x04", // 𩴚
+ 0x29d1b: "\x02\x01\x05\x03\x01\x05\x03\x02\x01\x02\x01\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩴛
+ 0x29d1c: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04", // 𩴜
+ 0x29d1d: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 𩴝
+ 0x29d1e: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04", // 𩴞
+ 0x29d1f: "\x01\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01\x04\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩴟
+ 0x29d20: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 𩴠
+ 0x29d21: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x03\x05\x01\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 𩴡
+ 0x29d22: "\x05\x04\x05\x02\x03\x02\x05\x03\x05\x02\x05\x01\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩴢
+ 0x29d23: "\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩴣
+ 0x29d24: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 𩴤
+ 0x29d25: "\x02\x01\x05\x03\x01\x05\x02\x02\x04\x03\x01\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩴥
+ 0x29d26: "\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩴦
+ 0x29d27: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 𩴧
+ 0x29d28: "\x04\x03\x01\x01\x01\x02\x04\x03\x01\x01\x01\x02\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩴨
+ 0x29d29: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x04\x03\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04", // 𩴩
+ 0x29d2a: "\x05\x05\x04\x05\x05\x04\x01\x03\x04\x05\x03\x04\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩴪
+ 0x29d2b: "\x03\x02\x05\x01\x02\x01\x03\x05\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 𩴫
+ 0x29d2c: "\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩴬
+ 0x29d2d: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x05\x02\x03\x03\x04\x05\x02\x02\x05\x05\x04", // 𩴭
+ 0x29d2e: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 𩴮
+ 0x29d2f: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x02\x01\x05\x03\x01\x05\x01\x03\x05\x03\x03\x03\x04", // 𩴯
+ 0x29d30: "\x03\x02\x05\x01\x02\x01\x03\x05\x03\x03\x02\x02\x05\x02\x01\x03\x05\x03\x01\x03\x04", // 𩴰
+ 0x29d31: "\x04\x04\x05\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x03\x04\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩴱
+ 0x29d32: "\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x03\x05\x04\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩴲
+ 0x29d33: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x04\x04\x05\x03\x05\x04\x01\x05\x04\x01\x01\x02\x03\x04", // 𩴳
+ 0x29d34: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x01\x02\x02\x01\x02\x05\x01\x03\x04\x04\x03\x01\x02\x01", // 𩴴
+ 0x29d35: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01", // 𩴵
+ 0x29d36: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x01\x04\x05\x02\x04\x01\x03\x04\x01\x03\x02\x05\x02\x02", // 𩴶
+ 0x29d37: "\x01\x05\x03\x01\x01\x03\x04\x05\x04\x05\x02\x01\x03\x04\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩴷
+ 0x29d38: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x04\x04\x05\x01\x02\x03\x03\x02\x05\x01\x01\x01\x03\x04", // 𩴸
+ 0x29d39: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x05\x04\x01\x05\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩴹
+ 0x29d3a: "\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩴺
+ 0x29d3b: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩴻
+ 0x29d3c: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01", // 𩴼
+ 0x29d3d: "\x04\x03\x01\x01\x02\x01\x03\x04\x01\x05\x01\x01\x05\x03\x04\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩴽
+ 0x29d3e: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x01\x02\x01\x02\x02\x05\x02\x02\x01\x01\x03\x04\x05\x03\x04", // 𩴾
+ 0x29d3f: "\x05\x03\x01\x02\x05\x01\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩴿
+ 0x29d40: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩵀
+ 0x29d41: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 𩵁
+ 0x29d42: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩵂
+ 0x29d43: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01\x02\x03\x04", // 𩵃
+ 0x29d44: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x02\x01\x02\x01\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩵄
+ 0x29d45: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩵅
+ 0x29d46: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 𩵆
+ 0x29d47: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𩵇
+ 0x29d48: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𩵈
+ 0x29d49: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x01\x02\x02\x03\x02\x05\x01\x01\x01\x02\x01\x02\x01\x05\x01\x05\x03\x04\x03\x05\x04", // 𩵉
+ 0x29d4a: "\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04\x02\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x02\x01\x02\x01\x05\x01\x05\x03\x04\x03\x05\x04", // 𩵊
+ 0x29d4b: "\x03\x05\x02\x05\x01\x02\x01\x01\x03\x04", // 𩵋
+ 0x29d4c: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x02", // 𩵌
+ 0x29d4d: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05", // 𩵍
+ 0x29d4e: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x04", // 𩵎
+ 0x29d4f: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x05", // 𩵏
+ 0x29d50: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x05", // 𩵐
+ 0x29d51: "\x03\x02\x03\x05\x02\x05\x01\x02\x01\x04\x03\x03\x04", // 𩵑
+ 0x29d52: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x04", // 𩵒
+ 0x29d53: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x03", // 𩵓
+ 0x29d54: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x02\x05", // 𩵔
+ 0x29d55: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x03\x04", // 𩵕
+ 0x29d56: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x03\x04", // 𩵖
+ 0x29d57: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x01\x05", // 𩵗
+ 0x29d58: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01", // 𩵘
+ 0x29d59: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x02\x02", // 𩵙
+ 0x29d5a: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01", // 𩵚
+ 0x29d5b: "\x01\x03\x05\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩵛
+ 0x29d5c: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x02", // 𩵜
+ 0x29d5d: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x03", // 𩵝
+ 0x29d5e: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x02", // 𩵞
+ 0x29d5f: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x01\x02", // 𩵟
+ 0x29d60: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x01\x02", // 𩵠
+ 0x29d61: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x03\x05\x05", // 𩵡
+ 0x29d62: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x03\x04", // 𩵢
+ 0x29d63: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x03\x02\x04", // 𩵣
+ 0x29d64: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x05\x04", // 𩵤
+ 0x29d65: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x03\x04\x04", // 𩵥
+ 0x29d66: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x03\x04", // 𩵦
+ 0x29d67: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x01\x03\x02", // 𩵧
+ 0x29d68: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x05\x03\x05", // 𩵨
+ 0x29d69: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x01\x03\x04", // 𩵩
+ 0x29d6a: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x05\x03\x05", // 𩵪
+ 0x29d6b: "\x04\x05\x03\x05\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩵫
+ 0x29d6c: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x04\x01\x02", // 𩵬
+ 0x29d6d: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x01\x02\x01", // 𩵭
+ 0x29d6e: "\x02\x03\x04\x03\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩵮
+ 0x29d6f: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x05\x02\x04", // 𩵯
+ 0x29d70: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x03\x04", // 𩵰
+ 0x29d71: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x01\x02", // 𩵱
+ 0x29d72: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x04\x03\x04", // 𩵲
+ 0x29d73: "\x04\x01\x03\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩵳
+ 0x29d74: "\x01\x02\x03\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩵴
+ 0x29d75: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x02", // 𩵵
+ 0x29d76: "\x01\x01\x03\x05\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩵶
+ 0x29d77: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x05\x05\x04", // 𩵷
+ 0x29d78: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x03\x05", // 𩵸
+ 0x29d79: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x04\x03\x04", // 𩵹
+ 0x29d7a: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x01\x01", // 𩵺
+ 0x29d7b: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x05\x04", // 𩵻
+ 0x29d7c: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x03\x05\x04", // 𩵼
+ 0x29d7d: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x05\x04\x04", // 𩵽
+ 0x29d7e: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x05\x04", // 𩵾
+ 0x29d7f: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x01\x05", // 𩵿
+ 0x29d80: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x05\x02\x03", // 𩶀
+ 0x29d81: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x05\x03\x04", // 𩶁
+ 0x29d82: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x04\x05\x01\x02", // 𩶂
+ 0x29d83: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x01\x02\x01", // 𩶃
+ 0x29d84: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x03\x05\x04", // 𩶄
+ 0x29d85: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x01\x05\x01", // 𩶅
+ 0x29d86: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x01\x02\x01\x01\x05", // 𩶆
+ 0x29d87: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x01\x03\x04", // 𩶇
+ 0x29d88: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x04\x03\x01\x02", // 𩶈
+ 0x29d89: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x03\x02\x05\x02", // 𩶉
+ 0x29d8a: "\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩶊
+ 0x29d8b: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x05\x04\x01\x04", // 𩶋
+ 0x29d8c: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x02\x02\x05\x02", // 𩶌
+ 0x29d8d: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x02\x01\x05", // 𩶍
+ 0x29d8e: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x02\x01\x01", // 𩶎
+ 0x29d8f: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x05\x05\x04", // 𩶏
+ 0x29d90: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x01\x01\x02", // 𩶐
+ 0x29d91: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x02\x05\x01\x01", // 𩶑
+ 0x29d92: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x04\x05\x02\x03", // 𩶒
+ 0x29d93: "\x01\x01\x01\x03\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩶓
+ 0x29d94: "\x02\x05\x01\x01\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩶔
+ 0x29d95: "\x03\x02\x01\x05\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩶕
+ 0x29d96: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01\x01", // 𩶖
+ 0x29d97: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x02\x03\x04", // 𩶗
+ 0x29d98: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x04\x03\x01", // 𩶘
+ 0x29d99: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x05\x05\x03\x04", // 𩶙
+ 0x29d9a: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x02\x02\x03\x04", // 𩶚
+ 0x29d9b: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x03\x02\x05\x01", // 𩶛
+ 0x29d9c: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x04\x01\x02\x01", // 𩶜
+ 0x29d9d: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x02\x01", // 𩶝
+ 0x29d9e: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x03\x05\x04", // 𩶞
+ 0x29d9f: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x04\x05\x04", // 𩶟
+ 0x29da0: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x05\x01\x05", // 𩶠
+ 0x29da1: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x04\x05\x03\x02\x05", // 𩶡
+ 0x29da2: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x04\x03\x01\x01\x02", // 𩶢
+ 0x29da3: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x03\x05\x04\x01\x04", // 𩶣
+ 0x29da4: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x02\x01\x03\x05", // 𩶤
+ 0x29da5: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x02\x01\x04", // 𩶥
+ 0x29da6: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x03\x02\x01\x02\x01", // 𩶦
+ 0x29da7: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x02\x01\x05\x01\x01", // 𩶧
+ 0x29da8: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x03\x02\x04\x01\x02", // 𩶨
+ 0x29da9: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x03\x04\x03\x04", // 𩶩
+ 0x29daa: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x05\x04\x01\x02\x01", // 𩶪
+ 0x29dab: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x02\x05\x02\x02\x01", // 𩶫
+ 0x29dac: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x01\x02\x04", // 𩶬
+ 0x29dad: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x05\x01\x03\x04", // 𩶭
+ 0x29dae: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x03\x04\x01\x05\x02", // 𩶮
+ 0x29daf: "\x05\x03\x01\x02\x05\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩶯
+ 0x29db0: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x04\x03\x05\x04", // 𩶰
+ 0x29db1: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x04\x05\x03\x01\x05", // 𩶱
+ 0x29db2: "\x04\x01\x03\x05\x03\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩶲
+ 0x29db3: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01\x03\x04", // 𩶳
+ 0x29db4: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x04\x01\x05\x02\x05", // 𩶴
+ 0x29db5: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x01\x01\x05\x03", // 𩶵
+ 0x29db6: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x05\x03\x02\x05", // 𩶶
+ 0x29db7: "\x03\x05\x02\x05\x01\x02\x01\x01\x03\x04\x01\x01\x02", // 𩶷
+ 0x29db8: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x04\x03\x01\x03\x05", // 𩶸
+ 0x29db9: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x03\x01\x02\x03\x04", // 𩶹
+ 0x29dba: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x01\x03\x05\x03\x04", // 𩶺
+ 0x29dbb: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x02\x04\x03\x03\x04", // 𩶻
+ 0x29dbc: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x04\x01\x02\x03\x04", // 𩶼
+ 0x29dbd: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x03\x05\x04\x02\x02", // 𩶽
+ 0x29dbe: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x03\x04\x01", // 𩶾
+ 0x29dbf: "\x03\x02\x01\x05\x01\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩶿
+ 0x29dc0: "\x03\x02\x03\x01\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩷀
+ 0x29dc1: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x03\x05\x02\x01\x05", // 𩷁
+ 0x29dc2: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x03\x05\x03\x05\x03", // 𩷂
+ 0x29dc3: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x04\x01\x03\x05\x04", // 𩷃
+ 0x29dc4: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x04\x01\x05\x02", // 𩷄
+ 0x29dc5: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x02\x01\x03\x05\x04", // 𩷅
+ 0x29dc6: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x04\x01\x01\x05\x04", // 𩷆
+ 0x29dc7: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x04\x05\x02\x03\x05", // 𩷇
+ 0x29dc8: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x03\x04\x03\x05\x03", // 𩷈
+ 0x29dc9: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x03\x02\x03\x04", // 𩷉
+ 0x29dca: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x02\x03\x01\x03\x04", // 𩷊
+ 0x29dcb: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x05\x02\x04\x05", // 𩷋
+ 0x29dcc: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x05\x01\x02\x03\x04", // 𩷌
+ 0x29dcd: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x03\x02\x03\x05\x05\x04", // 𩷍
+ 0x29dce: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x03\x04\x03\x03\x04", // 𩷎
+ 0x29dcf: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x05\x05\x05\x01\x02\x01", // 𩷏
+ 0x29dd0: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x01\x03\x05\x02\x05\x01", // 𩷐
+ 0x29dd1: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01\x05\x03\x01", // 𩷑
+ 0x29dd2: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x02\x03\x04\x01\x05", // 𩷒
+ 0x29dd3: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x04\x05\x04\x04", // 𩷓
+ 0x29dd4: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x04\x03\x01\x01\x02", // 𩷔
+ 0x29dd5: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x05\x01\x01\x05\x03\x04", // 𩷕
+ 0x29dd6: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x01\x02\x01\x02\x03\x03", // 𩷖
+ 0x29dd7: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x03\x01\x01\x02\x01", // 𩷗
+ 0x29dd8: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x02\x03\x05\x05\x04", // 𩷘
+ 0x29dd9: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x03\x05\x03\x03\x03\x04", // 𩷙
+ 0x29dda: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x04\x05\x05\x02\x01", // 𩷚
+ 0x29ddb: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x03\x05\x01\x01\x02", // 𩷛
+ 0x29ddc: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x02\x04\x01\x05\x03", // 𩷜
+ 0x29ddd: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x04\x03\x04\x02\x05\x01", // 𩷝
+ 0x29dde: "\x04\x05\x02\x03\x04\x05\x03\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩷞
+ 0x29ddf: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x03\x04\x03\x04\x03\x04", // 𩷟
+ 0x29de0: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x04\x01\x03\x05", // 𩷠
+ 0x29de1: "\x01\x01\x02\x01\x03\x05\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩷡
+ 0x29de2: "\x01\x02\x01\x03\x01\x03\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩷢
+ 0x29de3: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x03\x01\x02\x01", // 𩷣
+ 0x29de4: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x05\x03\x02\x02", // 𩷤
+ 0x29de5: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01\x01\x02\x04", // 𩷥
+ 0x29de6: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x02\x01\x05\x03\x04", // 𩷦
+ 0x29de7: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x03\x02\x03\x04", // 𩷧
+ 0x29de8: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x03\x05\x02\x01", // 𩷨
+ 0x29de9: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x03\x01\x01\x05\x03\x04", // 𩷩
+ 0x29dea: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01\x01\x03\x05", // 𩷪
+ 0x29deb: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x01", // 𩷫
+ 0x29dec: "\x03\x05\x03\x01\x01\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩷬
+ 0x29ded: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x04\x01\x01\x01\x02", // 𩷭
+ 0x29dee: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x05\x04\x05\x05\x05", // 𩷮
+ 0x29def: "\x04\x04\x01\x03\x01\x03\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩷯
+ 0x29df0: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x01\x02\x04\x05\x04", // 𩷰
+ 0x29df1: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x01\x05\x04\x05\x04\x04", // 𩷱
+ 0x29df2: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x03\x04\x03\x03\x03", // 𩷲
+ 0x29df3: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x01\x03\x03\x01\x01\x05", // 𩷳
+ 0x29df4: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x03\x01\x05\x02\x01\x05", // 𩷴
+ 0x29df5: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x01\x03\x04\x02\x05\x01", // 𩷵
+ 0x29df6: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x02\x04\x01\x05", // 𩷶
+ 0x29df7: "\x05\x02\x01\x03\x01\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩷷
+ 0x29df8: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x03\x05\x04\x01\x05\x03", // 𩷸
+ 0x29df9: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x01\x02\x05\x01\x01\x01\x02", // 𩷹
+ 0x29dfa: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x02\x03\x02\x01\x02\x04", // 𩷺
+ 0x29dfb: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x02\x05\x01\x05\x03", // 𩷻
+ 0x29dfc: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x01\x01\x03\x04\x05\x03", // 𩷼
+ 0x29dfd: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x03\x04\x02\x05\x01\x01", // 𩷽
+ 0x29dfe: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x01\x02\x03\x04\x05\x02", // 𩷾
+ 0x29dff: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x02\x03\x01\x05\x02\x05", // 𩷿
+ 0x29e00: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x01\x01\x03\x05\x01\x01", // 𩸀
+ 0x29e01: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x02\x05\x02\x03\x04", // 𩸁
+ 0x29e02: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x05\x03\x04\x05\x04\x04", // 𩸂
+ 0x29e03: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x02\x05\x01\x03\x05\x04", // 𩸃
+ 0x29e04: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01\x01\x02\x03\x04", // 𩸄
+ 0x29e05: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x03\x03\x02\x01\x02\x04", // 𩸅
+ 0x29e06: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x03\x04\x02\x05\x01\x01\x05", // 𩸆
+ 0x29e07: "\x01\x02\x01\x05\x05\x01\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩸇
+ 0x29e08: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x04\x02\x05\x01\x02\x01\x04", // 𩸈
+ 0x29e09: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x05\x03\x02\x05\x04", // 𩸉
+ 0x29e0a: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x02\x05\x01\x01\x02\x05\x02", // 𩸊
+ 0x29e0b: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x05\x05\x01\x02\x01", // 𩸋
+ 0x29e0c: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x02\x02\x03\x04\x03", // 𩸌
+ 0x29e0d: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x04\x01\x02\x05\x01\x05\x02", // 𩸍
+ 0x29e0e: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x04\x05\x01\x02\x01\x03\x04", // 𩸎
+ 0x29e0f: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x02\x01\x01\x02\x03\x04", // 𩸏
+ 0x29e10: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x04\x04\x03\x05\x02\x01\x05", // 𩸐
+ 0x29e11: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x01\x01\x01\x03\x05", // 𩸑
+ 0x29e12: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x04\x03\x01\x02\x05\x02", // 𩸒
+ 0x29e13: "\x04\x04\x01\x05\x03\x02\x05\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩸓
+ 0x29e14: "\x03\x02\x01\x02\x01\x02\x05\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩸔
+ 0x29e15: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x01\x01\x05\x03\x04", // 𩸕
+ 0x29e16: "\x01\x02\x01\x05\x05\x01\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩸖
+ 0x29e17: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x01\x03\x04\x01\x05\x03", // 𩸗
+ 0x29e18: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x04\x05\x02\x05\x01\x05\x01", // 𩸘
+ 0x29e19: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x01\x01\x02\x04\x01\x03\x04", // 𩸙
+ 0x29e1a: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x02\x03\x01\x01\x05", // 𩸚
+ 0x29e1b: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x03\x04\x02\x05\x01\x02\x01", // 𩸛
+ 0x29e1c: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x02\x01\x01\x05\x04", // 𩸜
+ 0x29e1d: "\x01\x02\x03\x04\x03\x04\x05\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩸝
+ 0x29e1e: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x03\x04\x01\x02\x05\x01\x02", // 𩸞
+ 0x29e1f: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x04\x03\x04\x02\x01\x03\x05", // 𩸟
+ 0x29e20: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x05\x03\x05\x01\x01", // 𩸠
+ 0x29e21: "\x03\x01\x02\x01\x04\x01\x03\x05\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩸡
+ 0x29e22: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x02\x03\x04\x03\x05\x03", // 𩸢
+ 0x29e23: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x04\x04\x03\x04\x05\x05\x04", // 𩸣
+ 0x29e24: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x01\x01\x05\x02\x05\x04", // 𩸤
+ 0x29e25: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x03\x04\x04\x03\x03\x04", // 𩸥
+ 0x29e26: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x04\x01\x05\x01\x03\x03\x05", // 𩸦
+ 0x29e27: "\x04\x04\x01\x05\x01\x03\x01\x05\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩸧
+ 0x29e28: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x04\x05\x02\x05\x01\x01\x01", // 𩸨
+ 0x29e29: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x04\x05\x03\x05\x04\x05\x05", // 𩸩
+ 0x29e2a: "\x04\x04\x05\x03\x05\x04\x05\x05\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩸪
+ 0x29e2b: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x02\x01\x02\x02\x01\x01", // 𩸫
+ 0x29e2c: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x04\x03\x01\x02\x05\x01", // 𩸬
+ 0x29e2d: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x01\x03\x01\x03\x04\x04", // 𩸭
+ 0x29e2e: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x01\x01\x03\x04\x01\x01\x02", // 𩸮
+ 0x29e2f: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x04\x05\x04\x05\x04\x05\x04", // 𩸯
+ 0x29e30: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x02\x01\x03\x03\x05\x04\x04", // 𩸰
+ 0x29e31: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𩸱
+ 0x29e32: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x02\x01\x02\x05\x01\x03\x04", // 𩸲
+ 0x29e33: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x03\x04\x03\x01\x03\x04", // 𩸳
+ 0x29e34: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x01\x03\x04\x02\x05\x01", // 𩸴
+ 0x29e35: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x03\x02\x01\x02\x01\x02\x01", // 𩸵
+ 0x29e36: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x02\x01\x03\x02\x05\x01", // 𩸶
+ 0x29e37: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x03\x02\x05\x01\x01\x03\x02", // 𩸷
+ 0x29e38: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x05\x01\x01\x02\x05\x03\x01", // 𩸸
+ 0x29e39: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x01\x05\x03\x05\x02\x03\x04", // 𩸹
+ 0x29e3a: "\x03\x05\x02\x05\x01\x02\x01\x01\x03\x04\x05\x01\x01\x02\x04\x01\x03\x04", // 𩸺
+ 0x29e3b: "\x05\x02\x03\x01\x05\x02\x05\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩸻
+ 0x29e3c: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x05\x02\x01\x01\x03\x05", // 𩸼
+ 0x29e3d: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x02\x03\x02\x03\x05", // 𩸽
+ 0x29e3e: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x02\x01\x01\x01\x05\x02", // 𩸾
+ 0x29e3f: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x04\x03\x03\x04\x03\x05\x05\x04", // 𩸿
+ 0x29e40: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x01\x01\x03\x04\x01\x01\x03\x04", // 𩹀
+ 0x29e41: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x01\x02\x02\x04\x03\x01", // 𩹁
+ 0x29e42: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x02\x01\x03\x05\x04\x01", // 𩹂
+ 0x29e43: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x04\x05\x03\x05\x04\x02\x05\x01", // 𩹃
+ 0x29e44: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 𩹄
+ 0x29e45: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x02\x02\x05\x01\x03\x04", // 𩹅
+ 0x29e46: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x02\x01\x05\x02\x01\x05\x02\x01", // 𩹆
+ 0x29e47: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x02\x05\x01\x04\x05\x01\x02", // 𩹇
+ 0x29e48: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x05\x04\x01\x02\x01\x03\x01\x03\x04", // 𩹈
+ 0x29e49: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x03\x04\x03\x05\x03\x04\x03\x02", // 𩹉
+ 0x29e4a: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x05\x03\x03\x01\x05\x02\x01", // 𩹊
+ 0x29e4b: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x02\x05\x01\x05\x02\x03", // 𩹋
+ 0x29e4c: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x02\x02\x01\x02\x05\x03\x04", // 𩹌
+ 0x29e4d: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x04\x03\x03\x04\x01\x01\x03\x04", // 𩹍
+ 0x29e4e: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 𩹎
+ 0x29e4f: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x02\x05\x01\x01\x01\x03\x04\x04", // 𩹏
+ 0x29e50: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x05\x03\x04\x02\x01\x05\x04", // 𩹐
+ 0x29e51: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x04\x01\x02\x05\x01\x02\x01\x04", // 𩹑
+ 0x29e52: "\x05\x05\x05\x01\x03\x05\x04\x02\x02\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩹒
+ 0x29e53: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02\x01\x03\x04", // 𩹓
+ 0x29e54: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x04\x05\x04\x03\x03\x04\x05\x04", // 𩹔
+ 0x29e55: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x04\x02\x03\x05\x04\x02\x05\x01", // 𩹕
+ 0x29e56: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x01\x01\x02\x01\x05\x03\x01", // 𩹖
+ 0x29e57: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x02\x05\x01\x04\x05\x03\x05", // 𩹗
+ 0x29e58: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x04\x01\x03\x03\x03\x05\x03\x04", // 𩹘
+ 0x29e59: "\x03\x05\x01\x01\x01\x01\x01\x03\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩹙
+ 0x29e5a: "\x03\x01\x01\x02\x03\x04\x05\x03\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩹚
+ 0x29e5b: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x02\x01\x03\x05\x03\x04", // 𩹛
+ 0x29e5c: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x02\x01\x02\x02\x05\x01", // 𩹜
+ 0x29e5d: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x01\x02\x01\x05\x05\x04\x01\x04", // 𩹝
+ 0x29e5e: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x02\x05\x04\x03\x01\x01\x02", // 𩹞
+ 0x29e5f: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 𩹟
+ 0x29e60: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02\x01\x01\x01", // 𩹠
+ 0x29e61: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01\x03\x05\x03\x05\x02", // 𩹡
+ 0x29e62: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x02\x02\x05\x02\x05\x01", // 𩹢
+ 0x29e63: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x05\x01\x02\x01\x01\x02\x01", // 𩹣
+ 0x29e64: "\x03\x01\x02\x03\x04\x04\x03\x03\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩹤
+ 0x29e65: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𩹥
+ 0x29e66: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x01\x01\x01\x03\x05\x04", // 𩹦
+ 0x29e67: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x04\x01\x03\x04\x02\x04\x04\x04", // 𩹧
+ 0x29e68: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x02\x01\x01\x01\x03\x05\x05\x04", // 𩹨
+ 0x29e69: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x02\x04\x01\x02\x05\x02", // 𩹩
+ 0x29e6a: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x02\x01\x03\x02\x05\x01\x01\x01", // 𩹪
+ 0x29e6b: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01\x02\x02\x01\x01\x01", // 𩹫
+ 0x29e6c: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x03\x04\x01\x02\x02\x05\x01", // 𩹬
+ 0x29e6d: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x01\x02\x01\x01\x02\x04", // 𩹭
+ 0x29e6e: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x02\x01\x01\x01\x02\x03\x04", // 𩹮
+ 0x29e6f: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x02\x05\x01\x05\x03\x04", // 𩹯
+ 0x29e70: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𩹰
+ 0x29e71: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x05\x05\x04\x02\x05\x01\x02\x01", // 𩹱
+ 0x29e72: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 𩹲
+ 0x29e73: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x04\x03\x02\x05\x01\x01\x01\x03\x04", // 𩹳
+ 0x29e74: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01", // 𩹴
+ 0x29e75: "\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩹵
+ 0x29e76: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x03\x05\x01\x01\x02\x02\x05\x01", // 𩹶
+ 0x29e77: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𩹷
+ 0x29e78: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𩹸
+ 0x29e79: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𩹹
+ 0x29e7a: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02", // 𩹺
+ 0x29e7b: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x02\x05\x03\x04\x01\x01\x05\x01\x05", // 𩹻
+ 0x29e7c: "\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩹼
+ 0x29e7d: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01\x04\x04\x05\x05\x03\x01", // 𩹽
+ 0x29e7e: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x02\x05\x03\x04", // 𩹾
+ 0x29e7f: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x03\x04\x03\x05\x04\x02\x05\x01", // 𩹿
+ 0x29e80: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x03\x04\x03\x04\x03\x05\x04\x01", // 𩺀
+ 0x29e81: "\x02\x01\x02\x01\x01\x02\x01\x01\x03\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩺁
+ 0x29e82: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x05\x03\x04\x01\x02\x05\x03\x04", // 𩺂
+ 0x29e83: "\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩺃
+ 0x29e84: "\x03\x05\x04\x01\x01\x01\x03\x02\x02\x02\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩺄
+ 0x29e85: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01", // 𩺅
+ 0x29e86: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x02\x01\x02\x01\x03\x01\x05", // 𩺆
+ 0x29e87: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x01\x05\x03\x01\x05\x03\x01\x03\x04", // 𩺇
+ 0x29e88: "\x05\x05\x04\x04\x04\x04\x02\x05\x03\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩺈
+ 0x29e89: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x02\x02\x01\x02\x05\x01\x02\x01\x04", // 𩺉
+ 0x29e8a: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x02\x04\x01\x05\x03\x02\x05", // 𩺊
+ 0x29e8b: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x03\x04\x01\x02\x01\x05\x01\x05", // 𩺋
+ 0x29e8c: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x02\x01\x05\x04\x05\x02\x05\x02", // 𩺌
+ 0x29e8d: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x01\x02\x03\x04\x04\x05\x04", // 𩺍
+ 0x29e8e: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x01\x01\x02\x05\x03\x04\x01\x02\x04", // 𩺎
+ 0x29e8f: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01", // 𩺏
+ 0x29e90: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x01\x01\x03\x02\x05\x01\x05\x02", // 𩺐
+ 0x29e91: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x04\x01\x05\x03", // 𩺑
+ 0x29e92: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x02\x05\x01\x03\x04\x04\x04", // 𩺒
+ 0x29e93: "\x03\x03\x05\x04\x01\x04\x03\x05\x05\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩺓
+ 0x29e94: "\x03\x03\x05\x04\x01\x04\x01\x03\x05\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩺔
+ 0x29e95: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x04\x01\x02\x03\x04\x03\x01\x03\x04", // 𩺕
+ 0x29e96: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x02\x02\x01\x01\x03\x05\x01\x01", // 𩺖
+ 0x29e97: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x02\x03\x04\x01\x02\x05\x01", // 𩺗
+ 0x29e98: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04", // 𩺘
+ 0x29e99: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x03\x02\x05\x01\x02\x05\x02\x05\x01", // 𩺙
+ 0x29e9a: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x03\x04\x04\x03\x01\x01\x02\x03\x04", // 𩺚
+ 0x29e9b: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x03\x02\x01\x05\x03\x01\x05\x03\x05", // 𩺛
+ 0x29e9c: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x04\x05\x05\x02\x05\x01\x02\x01", // 𩺜
+ 0x29e9d: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x01\x05\x02\x03\x04\x05\x04", // 𩺝
+ 0x29e9e: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x04\x05\x04\x05\x04\x01\x02\x03\x04", // 𩺞
+ 0x29e9f: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x02\x02\x05\x01\x03\x01\x01\x03\x04", // 𩺟
+ 0x29ea0: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x04\x05\x02\x03\x02\x05\x03\x04\x01", // 𩺠
+ 0x29ea1: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x01\x02\x01\x04\x03\x01\x01\x02\x01", // 𩺡
+ 0x29ea2: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x03\x03\x01\x02\x02\x05\x01", // 𩺢
+ 0x29ea3: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01\x03\x04\x01\x05\x03\x04", // 𩺣
+ 0x29ea4: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x05\x02\x02\x01\x01\x02\x03\x04", // 𩺤
+ 0x29ea5: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03", // 𩺥
+ 0x29ea6: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x03\x01\x01\x05\x03\x04\x02\x05\x01", // 𩺦
+ 0x29ea7: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x03\x04\x01\x05\x04\x01\x02\x01", // 𩺧
+ 0x29ea8: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x02\x01\x01\x01\x03\x04\x01\x01\x02", // 𩺨
+ 0x29ea9: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x02\x02\x01\x01\x02\x01\x05\x04", // 𩺩
+ 0x29eaa: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x03\x05\x04\x01\x04\x03\x05\x05\x04", // 𩺪
+ 0x29eab: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03", // 𩺫
+ 0x29eac: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x02\x05\x01\x05\x01\x04\x05\x04", // 𩺬
+ 0x29ead: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x01\x01\x03\x04\x02\x04\x01\x03\x04", // 𩺭
+ 0x29eae: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 𩺮
+ 0x29eaf: "\x04\x01\x05\x03\x03\x01\x03\x01\x01\x03\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩺯
+ 0x29eb0: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩺰
+ 0x29eb1: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x01\x02\x01\x02\x01\x03\x02\x05\x01\x05", // 𩺱
+ 0x29eb2: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04", // 𩺲
+ 0x29eb3: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x02\x04\x04\x01\x02\x03\x04\x03", // 𩺳
+ 0x29eb4: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x02\x01\x02\x05\x02\x03\x04\x03\x04", // 𩺴
+ 0x29eb5: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x02\x04\x01\x04\x03\x01\x01\x02", // 𩺵
+ 0x29eb6: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x05\x03\x01\x01\x03\x04\x03\x05\x03\x04", // 𩺶
+ 0x29eb7: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x02\x01\x01\x02\x02\x01\x01\x02", // 𩺷
+ 0x29eb8: "\x01\x01\x02\x03\x04\x03\x01\x03\x04\x01\x03\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩺸
+ 0x29eb9: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x05\x01\x01\x02\x04\x04\x01\x05\x03", // 𩺹
+ 0x29eba: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x02\x05\x01\x01\x01\x05\x01\x05\x03\x05", // 𩺺
+ 0x29ebb: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x01\x01\x02\x01\x02\x05\x02\x02\x01", // 𩺻
+ 0x29ebc: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x05\x01\x01\x02\x04\x04\x05\x04", // 𩺼
+ 0x29ebd: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x02\x05\x01\x02\x05\x01\x03\x05\x04", // 𩺽
+ 0x29ebe: "\x01\x02\x05\x01\x02\x03\x04\x03\x01\x03\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩺾
+ 0x29ebf: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05", // 𩺿
+ 0x29ec0: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x05\x03\x03\x01\x03\x01\x01\x03\x04", // 𩻀
+ 0x29ec1: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 𩻁
+ 0x29ec2: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01\x02\x02\x05\x02\x05\x01\x01", // 𩻂
+ 0x29ec3: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x02\x04\x04\x05\x01\x01\x02\x03\x04", // 𩻃
+ 0x29ec4: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x02\x02\x01\x03\x05\x03\x03\x03\x04", // 𩻄
+ 0x29ec5: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x02\x02\x04\x03\x01\x05\x03\x04", // 𩻅
+ 0x29ec6: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02\x03\x04\x01\x05\x04", // 𩻆
+ 0x29ec7: "\x03\x04\x03\x04\x02\x05\x01\x03\x01\x03\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩻇
+ 0x29ec8: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x04\x01\x02\x03\x04\x04\x03\x05\x05\x04", // 𩻈
+ 0x29ec9: "\x01\x02\x01\x03\x05\x01\x02\x01\x03\x05\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩻉
+ 0x29eca: "\x01\x03\x02\x05\x02\x02\x01\x05\x05\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩻊
+ 0x29ecb: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01\x04\x03\x05\x01\x05\x02\x03", // 𩻋
+ 0x29ecc: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x02\x03\x04\x02\x02\x01\x02\x03\x04", // 𩻌
+ 0x29ecd: "\x05\x01\x03\x01\x01\x02\x03\x04\x01\x02\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩻍
+ 0x29ece: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x04\x05\x02\x03\x03\x02\x05\x03\x04\x01", // 𩻎
+ 0x29ecf: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x03\x04\x01\x03\x03\x01\x01\x02\x01", // 𩻏
+ 0x29ed0: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x02\x05\x05\x04\x01\x03\x04\x03\x05\x04", // 𩻐
+ 0x29ed1: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x01\x02\x03\x04\x04\x01\x04\x03\x01", // 𩻑
+ 0x29ed2: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x04\x03\x01\x04\x04\x01\x04\x03\x01", // 𩻒
+ 0x29ed3: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x02\x03\x04\x01\x01\x02\x03\x04", // 𩻓
+ 0x29ed4: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x03\x03\x01\x02\x04\x05\x04", // 𩻔
+ 0x29ed5: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x05\x03\x05\x01\x01\x04\x05\x03\x05", // 𩻕
+ 0x29ed6: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x02\x01\x02\x05\x01\x01\x05\x03\x01\x05", // 𩻖
+ 0x29ed7: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x04\x03\x01\x02\x05\x01\x05\x02", // 𩻗
+ 0x29ed8: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x01\x01", // 𩻘
+ 0x29ed9: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x04\x03\x01\x05\x02\x03", // 𩻙
+ 0x29eda: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x01\x02\x02\x02\x02\x01\x04\x04\x04\x04", // 𩻚
+ 0x29edb: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x01", // 𩻛
+ 0x29edc: "\x01\x03\x04\x03\x04\x02\x03\x04\x01\x03\x04\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩻜
+ 0x29edd: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x01\x05\x05\x01\x05\x01\x02\x02\x01\x03\x04", // 𩻝
+ 0x29ede: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02\x01\x03\x02\x05\x02\x02", // 𩻞
+ 0x29edf: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x04\x04\x03\x03\x05\x05\x05\x04\x04\x04\x04", // 𩻟
+ 0x29ee0: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01\x02\x05\x02\x02\x01\x04\x01\x05\x03", // 𩻠
+ 0x29ee1: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𩻡
+ 0x29ee2: "\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x03\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩻢
+ 0x29ee3: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x01\x03\x05\x02\x01\x05\x02\x01\x05\x02\x01", // 𩻣
+ 0x29ee4: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𩻤
+ 0x29ee5: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x03\x02\x05\x01\x01\x01\x01\x02\x05\x04", // 𩻥
+ 0x29ee6: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x04\x05\x04\x05\x04\x03\x04\x02\x04\x04\x04", // 𩻦
+ 0x29ee7: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04", // 𩻧
+ 0x29ee8: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01\x01\x01", // 𩻨
+ 0x29ee9: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x01\x02\x01\x02\x01\x02\x01\x02\x01\x02\x01", // 𩻩
+ 0x29eea: "\x02\x04\x03\x02\x05\x02\x05\x01\x03\x01\x03\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩻪
+ 0x29eeb: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x04\x01\x05\x02\x04\x03\x01\x02\x03\x04", // 𩻫
+ 0x29eec: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x02\x05\x01\x04\x03\x01\x03\x03\x03", // 𩻬
+ 0x29eed: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x04\x05\x01\x02\x05\x01\x04\x03\x01", // 𩻭
+ 0x29eee: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x02\x01\x01\x02\x02\x01\x01\x02", // 𩻮
+ 0x29eef: "\x01\x03\x04\x03\x04\x02\x03\x04\x03\x01\x03\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩻯
+ 0x29ef0: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x04\x03\x04\x05\x02\x05\x01\x03\x01\x01\x02", // 𩻰
+ 0x29ef1: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x03\x04", // 𩻱
+ 0x29ef2: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x03\x04\x03\x01\x01\x01\x02\x01\x01\x01", // 𩻲
+ 0x29ef3: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x02\x03\x04\x03\x05\x03\x01\x02\x03\x04", // 𩻳
+ 0x29ef4: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x02\x05\x02\x02\x01\x02\x03\x03\x03\x03\x04", // 𩻴
+ 0x29ef5: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x04\x01\x02\x05\x01\x05\x04\x01\x05\x04\x01", // 𩻵
+ 0x29ef6: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x04\x03\x04\x03\x04\x03\x04\x02\x05\x01\x01", // 𩻶
+ 0x29ef7: "\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04\x05\x03\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩻷
+ 0x29ef8: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x01\x01\x02\x04\x01\x03\x04\x04\x05\x04", // 𩻸
+ 0x29ef9: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x02\x05\x01\x01\x01\x02\x03\x05\x01\x01", // 𩻹
+ 0x29efa: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x01\x01\x01\x02\x01\x01\x01\x04\x05\x04\x04", // 𩻺
+ 0x29efb: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x03\x04\x04\x03\x02\x05\x01\x01\x02\x03\x04", // 𩻻
+ 0x29efc: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x05\x01\x01\x05\x03\x01\x01\x03\x04\x03\x05", // 𩻼
+ 0x29efd: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x01\x01\x01\x02\x01\x02\x05\x01\x02\x01\x01", // 𩻽
+ 0x29efe: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01", // 𩻾
+ 0x29eff: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x03\x04\x03\x04\x02\x03\x04\x01\x03\x04\x04", // 𩻿
+ 0x29f00: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x05\x02\x01\x02\x05\x01\x01\x05\x02\x01", // 𩼀
+ 0x29f01: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x03\x02\x05\x01\x01\x05\x02", // 𩼁
+ 0x29f02: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x03\x01\x02\x01\x03\x05\x04\x01\x04\x05\x04", // 𩼂
+ 0x29f03: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x01\x02\x01\x03\x05\x02\x05\x01\x03\x01\x03\x04", // 𩼃
+ 0x29f04: "\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x03\x04\x04\x03\x03\x04", // 𩼄
+ 0x29f05: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x02\x02\x01\x01\x03\x01\x01\x05\x03\x04", // 𩼅
+ 0x29f06: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x02\x05\x01\x01\x02\x01\x01\x03\x05\x03\x04", // 𩼆
+ 0x29f07: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x01\x03\x05\x04\x05\x04\x04\x03\x01\x02\x03\x04", // 𩼇
+ 0x29f08: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x02\x05\x03\x04\x03\x01\x02\x03\x04\x01\x03\x04", // 𩼈
+ 0x29f09: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x01\x02\x01", // 𩼉
+ 0x29f0a: "\x04\x01\x05\x02\x05\x01\x03\x05\x04\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x04", // 𩼊
+ 0x29f0b: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x02\x03\x04", // 𩼋
+ 0x29f0c: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x03\x02\x02\x05\x02\x01\x03\x05\x03\x01\x03\x04", // 𩼌
+ 0x29f0d: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x05\x01\x02\x01\x01\x03\x01\x01\x03\x04\x03\x05", // 𩼍
+ 0x29f0e: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 𩼎
+ 0x29f0f: "\x05\x02\x01\x03\x01\x02\x01\x01\x03\x01\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩼏
+ 0x29f10: "\x03\x02\x05\x01\x05\x01\x05\x01\x01\x03\x01\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩼐
+ 0x29f11: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x02\x04\x03\x01\x05\x05\x04\x05\x05\x04", // 𩼑
+ 0x29f12: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x03\x04\x03\x04\x01\x02\x05\x02\x05\x01\x01", // 𩼒
+ 0x29f13: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x02\x02\x01\x01\x02\x01\x04\x03\x01\x01\x02", // 𩼓
+ 0x29f14: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x03\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 𩼔
+ 0x29f15: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x04\x04\x04\x04\x04\x05\x02\x03\x04\x03\x05\x04", // 𩼕
+ 0x29f16: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x04\x03\x01\x03\x05\x01\x01\x02\x02\x03\x04", // 𩼖
+ 0x29f17: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x02\x03\x04\x04\x03\x03\x04\x04\x05\x04\x04", // 𩼗
+ 0x29f18: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x02\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 𩼘
+ 0x29f19: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x02\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 𩼙
+ 0x29f1a: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x02\x05\x01\x01\x05\x04\x05\x02", // 𩼚
+ 0x29f1b: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x02\x05\x01\x01\x01\x02\x03\x04\x01\x01\x02", // 𩼛
+ 0x29f1c: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x05\x02\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𩼜
+ 0x29f1d: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x04\x03\x04\x05\x02\x05\x01\x01\x02\x02\x01\x01", // 𩼝
+ 0x29f1e: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01\x02\x01\x01\x02\x05\x01\x02\x01\x04", // 𩼞
+ 0x29f1f: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 𩼟
+ 0x29f20: "\x03\x05\x03\x05\x01\x01\x02\x05\x03\x03\x01\x01\x02\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩼠
+ 0x29f21: "\x05\x02\x02\x05\x02\x04\x01\x05\x03\x03\x01\x03\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩼡
+ 0x29f22: "\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩼢
+ 0x29f23: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x02\x02\x05\x02\x05\x01\x04\x05\x04", // 𩼣
+ 0x29f24: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x02\x05\x02\x05\x01\x01\x03\x01\x02\x03\x04", // 𩼤
+ 0x29f25: "\x01\x02\x01\x02\x01\x03\x04\x04\x03\x01\x01\x02\x03\x05\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩼥
+ 0x29f26: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x02\x01\x01\x01\x05\x04\x03\x02\x03\x04\x03\x04", // 𩼦
+ 0x29f27: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x04\x05\x01\x02\x03\x03\x02\x05\x01\x01\x01\x03\x04", // 𩼧
+ 0x29f28: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x05\x03\x01\x01\x03\x04\x05\x04\x05\x02\x01\x03\x04", // 𩼨
+ 0x29f29: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x03\x04\x04\x03\x03\x04\x03\x05\x04\x01\x05\x02", // 𩼩
+ 0x29f2a: "\x04\x04\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩼪
+ 0x29f2b: "\x04\x03\x01\x01\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x02\x01\x02\x05\x01\x01", // 𩼫
+ 0x29f2c: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x02\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 𩼬
+ 0x29f2d: "\x01\x03\x02\x05\x02\x02\x01\x03\x04\x01\x05\x05\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩼭
+ 0x29f2e: "\x01\x02\x02\x01\x03\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x04\x01\x03\x02\x05\x01\x01", // 𩼮
+ 0x29f2f: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04\x01", // 𩼯
+ 0x29f30: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x02\x05\x05\x04\x05\x05\x04\x04\x05\x04\x04", // 𩼰
+ 0x29f31: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x05\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x04", // 𩼱
+ 0x29f32: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04\x04", // 𩼲
+ 0x29f33: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x05\x01\x02\x05\x03\x01\x01\x02\x05\x02\x02\x01", // 𩼳
+ 0x29f34: "\x01\x03\x02\x05\x01\x01\x03\x05\x04\x01\x01\x03\x04\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩼴
+ 0x29f35: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x04\x05\x02\x05\x01\x02\x05\x01\x03\x05\x03\x05\x04", // 𩼵
+ 0x29f36: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x04\x05\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 𩼶
+ 0x29f37: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x01\x02\x04", // 𩼷
+ 0x29f38: "\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x01\x02\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩼸
+ 0x29f39: "\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩼹
+ 0x29f3a: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x02\x03\x04\x04\x05\x01\x01\x03\x02\x05\x01", // 𩼺
+ 0x29f3b: "\x01\x02\x01\x02\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x01\x05\x03\x01\x05\x02\x05\x01\x01\x01", // 𩼻
+ 0x29f3c: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x03\x02\x05\x01\x01\x02\x01\x01\x03\x05\x01\x02\x01", // 𩼼
+ 0x29f3d: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x02\x03\x04\x03\x05\x03\x03\x04\x02\x04\x01\x03\x04", // 𩼽
+ 0x29f3e: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x02\x01\x01\x05\x05\x04\x05\x01\x01\x01\x04\x03\x03\x04", // 𩼾
+ 0x29f3f: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x02\x05\x01\x01", // 𩼿
+ 0x29f40: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x01\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩽀
+ 0x29f41: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x04\x04\x04\x04", // 𩽁
+ 0x29f42: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02\x05\x02", // 𩽂
+ 0x29f43: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x02\x03\x05\x04\x05\x04\x04\x03\x01\x02\x03\x04", // 𩽃
+ 0x29f44: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x03\x01\x02\x03\x03\x01\x02\x02\x05\x01\x01\x01\x03\x04", // 𩽄
+ 0x29f45: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 𩽅
+ 0x29f46: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𩽆
+ 0x29f47: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x03\x02\x05\x01\x01\x04\x05\x04\x05\x04\x04\x03\x05\x04", // 𩽇
+ 0x29f48: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01", // 𩽈
+ 0x29f49: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x03\x04\x01\x03\x02\x01\x05\x01\x01\x02\x05\x04", // 𩽉
+ 0x29f4a: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01", // 𩽊
+ 0x29f4b: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01\x03\x01\x03\x04", // 𩽋
+ 0x29f4c: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x02\x05", // 𩽌
+ 0x29f4d: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x01\x03\x05\x04\x05\x04\x02\x01\x01\x01\x02\x01\x01\x01\x01", // 𩽍
+ 0x29f4e: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04", // 𩽎
+ 0x29f4f: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 𩽏
+ 0x29f50: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x01\x03\x05\x04\x05\x04\x03\x04\x04\x05\x01\x01\x05\x03\x04", // 𩽐
+ 0x29f51: "\x01\x02\x03\x04\x04\x03\x01\x02\x03\x04\x01\x01\x03\x05\x03\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩽑
+ 0x29f52: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x02\x01\x02\x05\x01\x02\x01\x01\x03\x05\x04\x04\x04\x04", // 𩽒
+ 0x29f53: "\x01\x02\x05\x01\x02\x03\x04\x05\x03\x02\x05\x01\x01\x01\x03\x04\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩽓
+ 0x29f54: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x01\x01\x02\x03\x04\x01\x03\x01\x01\x05\x03\x04\x01\x02\x04", // 𩽔
+ 0x29f55: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x04\x03\x01\x04\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𩽕
+ 0x29f56: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x04\x03\x01\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𩽖
+ 0x29f57: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x01\x02\x01\x05\x04\x05\x02\x03\x02\x05\x03\x04\x02\x05\x01", // 𩽗
+ 0x29f58: "\x03\x01\x04\x03\x01\x04\x01\x03\x04\x04\x03\x01\x01\x02\x03\x05\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𩽘
+ 0x29f59: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x01\x01\x05\x04\x01\x05\x03\x05\x02\x05\x01\x01\x01", // 𩽙
+ 0x29f5a: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x03\x02\x02\x05\x02\x01\x05\x05\x04\x02\x03\x04\x03\x01\x03\x04", // 𩽚
+ 0x29f5b: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x02\x04\x04\x01\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 𩽛
+ 0x29f5c: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x04\x05\x01\x01\x02\x02\x01\x03\x04\x02\x05\x01\x02\x01\x03\x04", // 𩽜
+ 0x29f5d: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x05\x02\x05\x01\x01\x05\x03\x05\x03\x05\x02\x05\x01\x03\x05\x04", // 𩽝
+ 0x29f5e: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x02\x02\x01\x02\x04\x01\x03\x04\x04\x03\x05\x01\x05\x02\x03", // 𩽞
+ 0x29f5f: "\x02\x05\x02\x02\x05\x02\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x01\x05\x03\x01\x05\x02\x05\x01\x01\x01", // 𩽟
+ 0x29f60: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x05\x03\x04", // 𩽠
+ 0x29f61: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x01\x02\x01\x03\x05\x02\x05\x01\x03\x01\x03\x04\x03\x01\x01\x02", // 𩽡
+ 0x29f62: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x05\x03\x01", // 𩽢
+ 0x29f63: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x01\x04\x03\x01\x04\x02\x05\x02\x02\x01\x01\x03\x04\x05\x03\x04", // 𩽣
+ 0x29f64: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x05\x03\x05\x01\x01\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 𩽤
+ 0x29f65: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x01\x01\x02\x02\x05\x01\x01\x01\x02\x05\x04\x03\x01\x02\x03\x04", // 𩽥
+ 0x29f66: "\x03\x05\x02\x05\x01\x02\x01\x01\x03\x04\x01\x03\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x01", // 𩽦
+ 0x29f67: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𩽧
+ 0x29f68: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x03\x05\x02\x05\x01", // 𩽨
+ 0x29f69: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𩽩
+ 0x29f6a: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01\x01\x02\x02\x01\x01\x01", // 𩽪
+ 0x29f6b: "\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x02\x01\x02\x05\x01\x01", // 𩽫
+ 0x29f6c: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x04\x05\x04\x03\x03\x04", // 𩽬
+ 0x29f6d: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x02\x01\x02\x05\x01\x02\x05\x03\x01\x01\x02\x05\x02\x02\x01", // 𩽭
+ 0x29f6e: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x02\x01\x02\x01\x03\x05\x01\x03\x01\x02\x05\x01\x02\x05\x05\x03\x04", // 𩽮
+ 0x29f6f: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x02\x01\x01\x03\x02\x05\x03\x04\x01\x05\x01\x01\x01\x04\x03\x03\x04", // 𩽯
+ 0x29f70: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𩽰
+ 0x29f71: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x04", // 𩽱
+ 0x29f72: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x02\x05\x01\x01\x01\x04\x04\x05\x03\x04\x04\x01\x05\x03\x04\x05\x04", // 𩽲
+ 0x29f73: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𩽳
+ 0x29f74: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x01\x03\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 𩽴
+ 0x29f75: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x05\x05\x01\x03\x05\x03\x03\x03\x04\x02\x05\x01\x02\x01\x04\x02\x05\x01\x02\x01\x04", // 𩽵
+ 0x29f76: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x02\x05\x01\x01\x02\x05\x01\x05\x02\x02", // 𩽶
+ 0x29f77: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x01\x04\x05\x02\x04\x01\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01\x02\x03\x05\x01\x01", // 𩽷
+ 0x29f78: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x03\x04\x04\x05\x01\x01\x05\x04\x01\x02\x01\x01\x02\x01\x01\x02\x01\x01\x03\x05", // 𩽸
+ 0x29f79: "\x03\x05\x02\x05\x01\x02\x01\x01\x03\x05\x04", // 𩽹
+ 0x29f7a: "\x03\x05\x02\x05\x01\x02\x01\x01\x01\x01\x03\x04", // 𩽺
+ 0x29f7b: "\x03\x05\x02\x05\x01\x02\x01\x01\x03\x04\x03\x04", // 𩽻
+ 0x29f7c: "\x03\x05\x02\x05\x01\x02\x01\x01\x04\x05\x01\x05\x01\x02", // 𩽼
+ 0x29f7d: "\x03\x05\x02\x05\x01\x02\x01\x01\x04\x04\x05\x03\x01\x05", // 𩽽
+ 0x29f7e: "\x03\x05\x02\x05\x01\x02\x01\x01\x04\x04\x05\x05\x03\x01", // 𩽾
+ 0x29f7f: "\x03\x05\x02\x05\x01\x02\x01\x01\x03\x05\x04\x03\x05\x04", // 𩽿
+ 0x29f80: "\x03\x05\x02\x05\x01\x02\x01\x01\x03\x04\x01\x02\x02\x05\x01", // 𩾀
+ 0x29f81: "\x03\x05\x02\x05\x01\x02\x01\x01\x01\x02\x04\x01\x03\x04\x04", // 𩾁
+ 0x29f82: "\x03\x05\x02\x05\x01\x02\x01\x01\x01\x01\x01\x03\x01\x02\x04", // 𩾂
+ 0x29f83: "\x03\x05\x02\x05\x01\x02\x01\x01\x03\x05\x02\x05\x01\x03\x05", // 𩾃
+ 0x29f84: "\x03\x05\x02\x05\x01\x02\x01\x01\x05\x01\x02\x04\x05\x04", // 𩾄
+ 0x29f85: "\x03\x05\x02\x05\x01\x02\x01\x01\x03\x05\x02\x05\x01\x03\x05\x04", // 𩾅
+ 0x29f86: "\x03\x05\x02\x05\x01\x02\x01\x01\x04\x04\x01\x05\x01\x03\x03\x05", // 𩾆
+ 0x29f87: "\x03\x05\x02\x05\x01\x02\x01\x01\x02\x01\x05\x03\x01\x05\x03\x05", // 𩾇
+ 0x29f88: "\x03\x05\x02\x05\x01\x02\x01\x01\x02\x01\x01\x02\x03\x04\x05\x04", // 𩾈
+ 0x29f89: "\x03\x05\x02\x05\x01\x02\x01\x01\x03\x04\x01\x03\x04\x03\x04\x03\x04", // 𩾉
+ 0x29f8a: "\x03\x05\x02\x05\x01\x02\x01\x01\x05\x02\x01\x03\x04\x02\x05\x01\x01", // 𩾊
+ 0x29f8b: "\x03\x05\x02\x05\x01\x02\x01\x01\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𩾋
+ 0x29f8c: "\x03\x05\x02\x05\x01\x02\x01\x01\x04\x01\x03\x05\x01\x01\x02\x04\x01\x03\x04", // 𩾌
+ 0x29f8d: "\x03\x05\x02\x05\x01\x02\x01\x01\x03\x04\x02\x01\x03\x05\x04\x05\x04\x04\x03\x01\x02\x03\x04", // 𩾍
+ 0x29f8e: "\x03\x05\x02\x05\x01\x02\x01\x01\x01\x03\x02\x05\x01\x01\x04\x05\x04\x05\x04\x04\x03\x05\x04", // 𩾎
+ 0x29f8f: "\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩾏
+ 0x29f90: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x05", // 𩾐
+ 0x29f91: "\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩾑
+ 0x29f92: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x05\x02", // 𩾒
+ 0x29f93: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x05\x02", // 𩾓
+ 0x29f94: "\x01\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩾔
+ 0x29f95: "\x01\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩾕
+ 0x29f96: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x05\x03", // 𩾖
+ 0x29f97: "\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩾗
+ 0x29f98: "\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩾘
+ 0x29f99: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x05", // 𩾙
+ 0x29f9a: "\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩾚
+ 0x29f9b: "\x03\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩾛
+ 0x29f9c: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x05\x03", // 𩾜
+ 0x29f9d: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x01\x01\x02", // 𩾝
+ 0x29f9e: "\x03\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩾞
+ 0x29f9f: "\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩾟
+ 0x29fa0: "\x05\x01\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩾠
+ 0x29fa1: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x05\x04", // 𩾡
+ 0x29fa2: "\x01\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩾢
+ 0x29fa3: "\x05\x05\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩾣
+ 0x29fa4: "\x02\x01\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩾤
+ 0x29fa5: "\x03\x01\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩾥
+ 0x29fa6: "\x04\x01\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩾦
+ 0x29fa7: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x02\x02", // 𩾧
+ 0x29fa8: "\x03\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩾨
+ 0x29fa9: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x05\x01\x05", // 𩾩
+ 0x29faa: "\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩾪
+ 0x29fab: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x05\x01\x05", // 𩾫
+ 0x29fac: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x01\x02\x01", // 𩾬
+ 0x29fad: "\x03\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩾭
+ 0x29fae: "\x03\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩾮
+ 0x29faf: "\x04\x04\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩾯
+ 0x29fb0: "\x02\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩾰
+ 0x29fb1: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x05\x05\x02", // 𩾱
+ 0x29fb2: "\x03\x05\x03\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩾲
+ 0x29fb3: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x01\x02\x05\x05", // 𩾳
+ 0x29fb4: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x04\x03\x02", // 𩾴
+ 0x29fb5: "\x01\x03\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩾵
+ 0x29fb6: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x05\x05\x04", // 𩾶
+ 0x29fb7: "\x01\x05\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩾷
+ 0x29fb8: "\x01\x03\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩾸
+ 0x29fb9: "\x03\x02\x01\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩾹
+ 0x29fba: "\x01\x01\x03\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩾺
+ 0x29fbb: "\x03\x01\x01\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩾻
+ 0x29fbc: "\x02\x05\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩾼
+ 0x29fbd: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x04\x05\x04\x04", // 𩾽
+ 0x29fbe: "\x03\x04\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩾾
+ 0x29fbf: "\x03\x04\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩾿
+ 0x29fc0: "\x02\x05\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩿀
+ 0x29fc1: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x01\x03\x04\x04", // 𩿁
+ 0x29fc2: "\x03\x01\x01\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩿂
+ 0x29fc3: "\x03\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩿃
+ 0x29fc4: "\x05\x02\x01\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩿄
+ 0x29fc5: "\x01\x03\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩿅
+ 0x29fc6: "\x01\x02\x01\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩿆
+ 0x29fc7: "\x03\x05\x01\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩿇
+ 0x29fc8: "\x03\x05\x05\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩿈
+ 0x29fc9: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x05\x05\x03", // 𩿉
+ 0x29fca: "\x03\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩿊
+ 0x29fcb: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x05\x03\x05\x03", // 𩿋
+ 0x29fcc: "\x03\x04\x01\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩿌
+ 0x29fcd: "\x01\x05\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩿍
+ 0x29fce: "\x05\x04\x05\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩿎
+ 0x29fcf: "\x05\x04\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩿏
+ 0x29fd0: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x01\x02\x05\x02", // 𩿐
+ 0x29fd1: "\x01\x05\x03\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩿑
+ 0x29fd2: "\x01\x05\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩿒
+ 0x29fd3: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x01\x01\x02", // 𩿓
+ 0x29fd4: "\x01\x03\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩿔
+ 0x29fd5: "\x03\x04\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩿕
+ 0x29fd6: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x05\x01\x01", // 𩿖
+ 0x29fd7: "\x05\x04\x05\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩿗
+ 0x29fd8: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x01\x01\x05", // 𩿘
+ 0x29fd9: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x01\x05\x03\x04", // 𩿙
+ 0x29fda: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x04\x04\x01\x02", // 𩿚
+ 0x29fdb: "\x01\x03\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩿛
+ 0x29fdc: "\x01\x02\x01\x02\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩿜
+ 0x29fdd: "\x01\x05\x01\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩿝
+ 0x29fde: "\x03\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩿞
+ 0x29fdf: "\x01\x02\x01\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩿟
+ 0x29fe0: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x01\x05\x05\x03\x04", // 𩿠
+ 0x29fe1: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x05\x04\x02\x05\x01", // 𩿡
+ 0x29fe2: "\x04\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩿢
+ 0x29fe3: "\x01\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩿣
+ 0x29fe4: "\x01\x02\x03\x04\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩿤
+ 0x29fe5: "\x03\x05\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩿥
+ 0x29fe6: "\x02\x05\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩿦
+ 0x29fe7: "\x03\x02\x01\x02\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩿧
+ 0x29fe8: "\x03\x02\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩿨
+ 0x29fe9: "\x05\x02\x02\x05\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩿩
+ 0x29fea: "\x03\x03\x01\x02\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩿪
+ 0x29feb: "\x01\x03\x01\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩿫
+ 0x29fec: "\x02\x05\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩿬
+ 0x29fed: "\x02\x05\x02\x01\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩿭
+ 0x29fee: "\x05\x01\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩿮
+ 0x29fef: "\x01\x02\x03\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩿯
+ 0x29ff0: "\x01\x05\x05\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩿰
+ 0x29ff1: "\x01\x01\x02\x01\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩿱
+ 0x29ff2: "\x01\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩿲
+ 0x29ff3: "\x01\x02\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩿳
+ 0x29ff4: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x05\x01\x05\x04\x01", // 𩿴
+ 0x29ff5: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x01\x02\x02\x05\x01", // 𩿵
+ 0x29ff6: "\x02\x05\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩿶
+ 0x29ff7: "\x01\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩿷
+ 0x29ff8: "\x01\x02\x01\x01\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩿸
+ 0x29ff9: "\x01\x02\x01\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩿹
+ 0x29ffa: "\x01\x05\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩿺
+ 0x29ffb: "\x02\x01\x01\x01\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩿻
+ 0x29ffc: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x02\x05\x01\x01\x02", // 𩿼
+ 0x29ffd: "\x03\x01\x05\x02\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩿽
+ 0x29ffe: "\x03\x05\x01\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩿾
+ 0x29fff: "\x03\x05\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𩿿
+ 0x2a000: "\x03\x05\x05\x01\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪀀
+ 0x2a001: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x05\x03\x02\x05\x01", // 𪀁
+ 0x2a002: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x05\x05\x04\x05\x03", // 𪀂
+ 0x2a003: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x01\x02\x01\x05\x02", // 𪀃
+ 0x2a004: "\x02\x01\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪀄
+ 0x2a005: "\x03\x03\x05\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪀅
+ 0x2a006: "\x03\x02\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪀆
+ 0x2a007: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x01\x03\x02\x04\x01", // 𪀇
+ 0x2a008: "\x03\x05\x04\x05\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪀈
+ 0x2a009: "\x01\x02\x05\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪀉
+ 0x2a00a: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x05\x02\x05\x01", // 𪀊
+ 0x2a00b: "\x03\x02\x05\x01\x01\x01\x05\x02\x05\x01\x01\x02", // 𪀋
+ 0x2a00c: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x02\x05\x01\x01\x02", // 𪀌
+ 0x2a00d: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x05\x01\x05\x01", // 𪀍
+ 0x2a00e: "\x02\x05\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪀎
+ 0x2a00f: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x01\x05\x01\x05", // 𪀏
+ 0x2a010: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x04\x05\x04", // 𪀐
+ 0x2a011: "\x05\x02\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪀑
+ 0x2a012: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x01\x05\x04\x01\x02\x01", // 𪀒
+ 0x2a013: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x05\x04\x03\x05\x04", // 𪀓
+ 0x2a014: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x01\x02\x01\x01\x02\x04", // 𪀔
+ 0x2a015: "\x02\x05\x01\x01\x05\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪀕
+ 0x2a016: "\x02\x01\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪀖
+ 0x2a017: "\x03\x05\x01\x03\x05\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪀗
+ 0x2a018: "\x01\x03\x03\x01\x02\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪀘
+ 0x2a019: "\x02\x05\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪀙
+ 0x2a01a: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x01\x01\x03\x05\x03\x04", // 𪀚
+ 0x2a01b: "\x01\x02\x01\x05\x02\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪀛
+ 0x2a01c: "\x01\x02\x05\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪀜
+ 0x2a01d: "\x04\x03\x01\x05\x02\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪀝
+ 0x2a01e: "\x04\x01\x05\x03\x02\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪀞
+ 0x2a01f: "\x02\x05\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪀟
+ 0x2a020: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x05\x02\x05\x01\x01", // 𪀠
+ 0x2a021: "\x01\x01\x01\x02\x05\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪀡
+ 0x2a022: "\x03\x02\x01\x03\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪀢
+ 0x2a023: "\x03\x04\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪀣
+ 0x2a024: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x04\x04\x01\x01\x02\x01", // 𪀤
+ 0x2a025: "\x04\x04\x05\x03\x01\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪀥
+ 0x2a026: "\x01\x01\x02\x01\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪀦
+ 0x2a027: "\x01\x02\x01\x03\x03\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪀧
+ 0x2a028: "\x05\x05\x04\x05\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪀨
+ 0x2a029: "\x03\x05\x04\x03\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪀩
+ 0x2a02a: "\x03\x02\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪀪
+ 0x2a02b: "\x05\x01\x01\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪀫
+ 0x2a02c: "\x01\x03\x04\x03\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪀬
+ 0x2a02d: "\x02\x05\x01\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪀭
+ 0x2a02e: "\x05\x03\x01\x05\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪀮
+ 0x2a02f: "\x02\x04\x03\x01\x03\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪀯
+ 0x2a030: "\x04\x01\x03\x05\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪀰
+ 0x2a031: "\x04\x04\x05\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪀱
+ 0x2a032: "\x04\x03\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪀲
+ 0x2a033: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x04\x03\x01\x02\x03\x04", // 𪀳
+ 0x2a034: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x05\x01\x01\x01\x01\x02", // 𪀴
+ 0x2a035: "\x01\x01\x03\x05\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪀵
+ 0x2a036: "\x01\x05\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪀶
+ 0x2a037: "\x03\x01\x02\x01\x03\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪀷
+ 0x2a038: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x01\x01\x02\x01\x05\x04", // 𪀸
+ 0x2a039: "\x01\x02\x05\x03\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪀹
+ 0x2a03a: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x02\x01\x01\x05\x03\x01", // 𪀺
+ 0x2a03b: "\x03\x01\x02\x01\x03\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪀻
+ 0x2a03c: "\x03\x02\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪀼
+ 0x2a03d: "\x03\x05\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪀽
+ 0x2a03e: "\x03\x05\x04\x01\x05\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪀾
+ 0x2a03f: "\x04\x03\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪀿
+ 0x2a040: "\x05\x01\x01\x01\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪁀
+ 0x2a041: "\x05\x04\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪁁
+ 0x2a042: "\x04\x01\x03\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪁂
+ 0x2a043: "\x03\x02\x03\x01\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪁃
+ 0x2a044: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x01\x02\x01\x02\x05\x01", // 𪁄
+ 0x2a045: "\x03\x05\x05\x02\x01\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪁅
+ 0x2a046: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x03\x01\x02\x05\x01", // 𪁆
+ 0x2a047: "\x04\x01\x05\x04\x03\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪁇
+ 0x2a048: "\x04\x01\x03\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪁈
+ 0x2a049: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x04\x01\x03\x04\x03\x04", // 𪁉
+ 0x2a04a: "\x01\x02\x01\x03\x03\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪁊
+ 0x2a04b: "\x01\x03\x05\x05\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪁋
+ 0x2a04c: "\x01\x02\x01\x03\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪁌
+ 0x2a04d: "\x01\x02\x01\x05\x04\x05\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪁍
+ 0x2a04e: "\x02\x04\x03\x03\x05\x04\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪁎
+ 0x2a04f: "\x02\x05\x02\x03\x04\x01\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪁏
+ 0x2a050: "\x03\x01\x02\x03\x04\x02\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪁐
+ 0x2a051: "\x03\x04\x02\x05\x01\x03\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪁑
+ 0x2a052: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x01\x03\x05\x03\x03\x03\x04", // 𪁒
+ 0x2a053: "\x01\x02\x01\x04\x05\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪁓
+ 0x2a054: "\x04\x04\x05\x03\x01\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪁔
+ 0x2a055: "\x04\x04\x01\x03\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪁕
+ 0x2a056: "\x01\x02\x04\x01\x03\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪁖
+ 0x2a057: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x02\x05\x01\x05\x02\x01\x05", // 𪁗
+ 0x2a058: "\x04\x04\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪁘
+ 0x2a059: "\x01\x02\x05\x01\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪁙
+ 0x2a05a: "\x04\x01\x02\x05\x01\x04\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪁚
+ 0x2a05b: "\x03\x03\x02\x03\x05\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪁛
+ 0x2a05c: "\x04\x05\x01\x01\x05\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪁜
+ 0x2a05d: "\x03\x05\x01\x05\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪁝
+ 0x2a05e: "\x01\x02\x05\x01\x04\x03\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪁞
+ 0x2a05f: "\x03\x04\x01\x05\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪁟
+ 0x2a060: "\x04\x04\x01\x05\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪁠
+ 0x2a061: "\x03\x04\x01\x03\x05\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪁡
+ 0x2a062: "\x05\x02\x04\x01\x05\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪁢
+ 0x2a063: "\x02\x05\x01\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪁣
+ 0x2a064: "\x03\x02\x05\x01\x01\x03\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪁤
+ 0x2a065: "\x01\x03\x05\x03\x03\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪁥
+ 0x2a066: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x03\x01\x01\x02\x05\x02", // 𪁦
+ 0x2a067: "\x01\x03\x01\x01\x05\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪁧
+ 0x2a068: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x02\x05\x01\x05\x02\x01\x05", // 𪁨
+ 0x2a069: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x04\x03\x05\x01\x05\x02\x03", // 𪁩
+ 0x2a06a: "\x01\x03\x05\x03\x03\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪁪
+ 0x2a06b: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x01\x01\x02\x02\x05\x03\x04", // 𪁫
+ 0x2a06c: "\x03\x05\x03\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪁬
+ 0x2a06d: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x01\x02\x05\x01\x01\x02\x04", // 𪁭
+ 0x2a06e: "\x03\x01\x02\x03\x04\x05\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪁮
+ 0x2a06f: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x03\x02\x01\x01\x02\x04", // 𪁯
+ 0x2a070: "\x03\x04\x04\x03\x05\x03\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪁰
+ 0x2a071: "\x04\x01\x03\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪁱
+ 0x2a072: "\x04\x05\x02\x03\x04\x05\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪁲
+ 0x2a073: "\x02\x05\x01\x03\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪁳
+ 0x2a074: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x04\x03\x04\x02\x05\x01", // 𪁴
+ 0x2a075: "\x05\x01\x03\x05\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪁵
+ 0x2a076: "\x01\x02\x04\x04\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪁶
+ 0x2a077: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x04\x05\x04\x03\x04\x02\x05\x02", // 𪁷
+ 0x2a078: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x04\x03\x01\x01\x02\x01\x03\x05", // 𪁸
+ 0x2a079: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x01\x01\x01\x02\x01\x01\x01", // 𪁹
+ 0x2a07a: "\x02\x04\x03\x02\x05\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪁺
+ 0x2a07b: "\x01\x02\x03\x04\x03\x03\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪁻
+ 0x2a07c: "\x03\x02\x05\x01\x01\x02\x05\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪁼
+ 0x2a07d: "\x04\x01\x03\x04\x03\x04\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪁽
+ 0x2a07e: "\x01\x02\x01\x02\x03\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪁾
+ 0x2a07f: "\x01\x02\x03\x04\x03\x05\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪁿
+ 0x2a080: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x04\x03\x04\x03\x03\x01\x02", // 𪂀
+ 0x2a081: "\x04\x04\x05\x04\x05\x04\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪂁
+ 0x2a082: "\x01\x02\x02\x05\x01\x01\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪂂
+ 0x2a083: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x03\x01\x02", // 𪂃
+ 0x2a084: "\x03\x02\x03\x05\x04\x03\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪂄
+ 0x2a085: "\x01\x02\x03\x04\x01\x02\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪂅
+ 0x2a086: "\x03\x05\x01\x05\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪂆
+ 0x2a087: "\x02\x05\x01\x01\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪂇
+ 0x2a088: "\x04\x03\x03\x04\x04\x03\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪂈
+ 0x2a089: "\x01\x02\x05\x01\x01\x05\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪂉
+ 0x2a08a: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x05\x02\x04\x04\x05\x03\x05", // 𪂊
+ 0x2a08b: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x05\x01\x01\x04\x05\x02\x05\x02", // 𪂋
+ 0x2a08c: "\x02\x05\x03\x04\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪂌
+ 0x2a08d: "\x01\x01\x03\x02\x01\x01\x03\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪂍
+ 0x2a08e: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x04\x01\x02\x05\x01\x05\x02\x01", // 𪂎
+ 0x2a08f: "\x03\x01\x01\x01\x02\x01\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪂏
+ 0x2a090: "\x01\x03\x04\x03\x04\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪂐
+ 0x2a091: "\x04\x01\x03\x03\x05\x01\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪂑
+ 0x2a092: "\x03\x05\x03\x03\x04\x05\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪂒
+ 0x2a093: "\x02\x05\x02\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪂓
+ 0x2a094: "\x04\x04\x01\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪂔
+ 0x2a095: "\x01\x02\x05\x02\x04\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪂕
+ 0x2a096: "\x03\x05\x01\x01\x05\x02\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪂖
+ 0x2a097: "\x05\x01\x03\x04\x01\x03\x05\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪂗
+ 0x2a098: "\x03\x04\x02\x03\x04\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪂘
+ 0x2a099: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x05\x01\x01\x03\x05\x01\x01", // 𪂙
+ 0x2a09a: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x01\x02\x01\x03\x05\x01\x02\x01", // 𪂚
+ 0x2a09b: "\x01\x02\x01\x02\x03\x05\x01\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪂛
+ 0x2a09c: "\x01\x02\x03\x04\x03\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪂜
+ 0x2a09d: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x01\x02\x05\x01\x01\x02\x03\x04", // 𪂝
+ 0x2a09e: "\x03\x01\x01\x01\x02\x01\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪂞
+ 0x2a09f: "\x03\x04\x02\x05\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪂟
+ 0x2a0a0: "\x02\x05\x01\x01\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪂠
+ 0x2a0a1: "\x02\x05\x01\x01\x03\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪂡
+ 0x2a0a2: "\x02\x05\x02\x01\x03\x01\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪂢
+ 0x2a0a3: "\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪂣
+ 0x2a0a4: "\x03\x04\x01\x02\x05\x01\x05\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪂤
+ 0x2a0a5: "\x03\x04\x03\x04\x03\x03\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪂥
+ 0x2a0a6: "\x04\x04\x05\x03\x05\x04\x05\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪂦
+ 0x2a0a7: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x05\x03\x05\x04\x05\x05", // 𪂧
+ 0x2a0a8: "\x04\x05\x04\x03\x04\x02\x05\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪂨
+ 0x2a0a9: "\x05\x01\x01\x02\x04\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪂩
+ 0x2a0aa: "\x05\x01\x01\x04\x05\x02\x05\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪂪
+ 0x2a0ab: "\x01\x05\x03\x05\x01\x05\x03\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪂫
+ 0x2a0ac: "\x02\x01\x05\x03\x01\x05\x03\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪂬
+ 0x2a0ad: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x04\x04\x05\x03\x05\x04\x05\x05", // 𪂭
+ 0x2a0ae: "\x05\x02\x01\x03\x03\x05\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪂮
+ 0x2a0af: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x05\x03\x01\x01\x02\x02\x05\x01", // 𪂯
+ 0x2a0b0: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x04\x01\x03\x03\x05\x01\x05\x04", // 𪂰
+ 0x2a0b1: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x02\x01\x02\x05\x01\x01\x01\x02", // 𪂱
+ 0x2a0b2: "\x05\x02\x01\x03\x03\x05\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪂲
+ 0x2a0b3: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x02\x05\x01\x01\x01\x05\x03\x05", // 𪂳
+ 0x2a0b4: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x01\x01\x02\x01\x02\x05\x01\x01", // 𪂴
+ 0x2a0b5: "\x01\x02\x05\x01\x01\x05\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪂵
+ 0x2a0b6: "\x01\x03\x01\x02\x05\x01\x05\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪂶
+ 0x2a0b7: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x05\x01\x03\x03\x01\x01\x03\x04", // 𪂷
+ 0x2a0b8: "\x04\x04\x05\x03\x04\x03\x04\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪂸
+ 0x2a0b9: "\x01\x01\x01\x03\x04\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪂹
+ 0x2a0ba: "\x03\x05\x05\x01\x01\x04\x05\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪂺
+ 0x2a0bb: "\x03\x04\x01\x02\x05\x01\x01\x03\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪂻
+ 0x2a0bc: "\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪂼
+ 0x2a0bd: "\x03\x04\x05\x03\x02\x05\x02\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪂽
+ 0x2a0be: "\x03\x04\x01\x05\x01\x01\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪂾
+ 0x2a0bf: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x02\x05\x01\x01\x01\x02\x01\x03\x04", // 𪂿
+ 0x2a0c0: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x02\x05\x01\x02\x02\x05\x02\x05\x01", // 𪃀
+ 0x2a0c1: "\x03\x02\x02\x05\x01\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃁
+ 0x2a0c2: "\x04\x04\x01\x04\x01\x05\x04\x03\x02\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃂
+ 0x2a0c3: "\x03\x01\x02\x05\x01\x01\x03\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃃
+ 0x2a0c4: "\x02\x05\x01\x02\x01\x04\x05\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃄
+ 0x2a0c5: "\x02\x04\x03\x03\x05\x04\x01\x02\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃅
+ 0x2a0c6: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x01\x01\x01\x03\x04\x01\x01\x03\x04", // 𪃆
+ 0x2a0c7: "\x01\x02\x01\x02\x05\x01\x05\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃇
+ 0x2a0c8: "\x01\x01\x01\x02\x05\x03\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃈
+ 0x2a0c9: "\x01\x03\x02\x05\x02\x02\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃉
+ 0x2a0ca: "\x03\x04\x05\x02\x03\x05\x03\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃊
+ 0x2a0cb: "\x01\x02\x05\x03\x05\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃋
+ 0x2a0cc: "\x02\x05\x01\x01\x01\x03\x05\x03\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃌
+ 0x2a0cd: "\x02\x05\x01\x01\x02\x05\x02\x01\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃍
+ 0x2a0ce: "\x03\x04\x01\x03\x05\x01\x01\x02\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃎
+ 0x2a0cf: "\x01\x02\x02\x01\x01\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃏
+ 0x2a0d0: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x02\x05\x01\x01\x01\x02\x03\x04\x03", // 𪃐
+ 0x2a0d1: "\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃑
+ 0x2a0d2: "\x04\x01\x03\x01\x02\x02\x01\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃒
+ 0x2a0d3: "\x03\x05\x02\x05\x01\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃓
+ 0x2a0d4: "\x01\x02\x01\x02\x05\x01\x05\x01\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃔
+ 0x2a0d5: "\x04\x04\x01\x03\x05\x04\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃕
+ 0x2a0d6: "\x01\x02\x01\x02\x03\x05\x01\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃖
+ 0x2a0d7: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x04\x04\x05\x01\x02\x05\x01\x01\x01", // 𪃗
+ 0x2a0d8: "\x01\x02\x01\x02\x05\x01\x05\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃘
+ 0x2a0d9: "\x01\x02\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃙
+ 0x2a0da: "\x02\x01\x02\x01\x01\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃚
+ 0x2a0db: "\x04\x01\x04\x03\x01\x03\x03\x03\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃛
+ 0x2a0dc: "\x04\x04\x05\x01\x02\x01\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃜
+ 0x2a0dd: "\x03\x03\x02\x01\x02\x01\x01\x02\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃝
+ 0x2a0de: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x01\x02\x02\x02\x05\x01\x02\x01", // 𪃞
+ 0x2a0df: "\x01\x02\x01\x04\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x05\x05\x04", // 𪃟
+ 0x2a0e0: "\x01\x02\x05\x01\x02\x03\x04\x05\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃠
+ 0x2a0e1: "\x04\x04\x01\x01\x02\x02\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃡
+ 0x2a0e2: "\x01\x02\x02\x05\x04\x03\x01\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃢
+ 0x2a0e3: "\x01\x01\x01\x03\x04\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃣
+ 0x2a0e4: "\x01\x02\x01\x01\x02\x01\x05\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃤
+ 0x2a0e5: "\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃥
+ 0x2a0e6: "\x02\x05\x01\x01\x01\x02\x03\x04\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃦
+ 0x2a0e7: "\x02\x05\x01\x01\x01\x02\x03\x04\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃧
+ 0x2a0e8: "\x02\x05\x05\x04\x05\x05\x04\x05\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃨
+ 0x2a0e9: "\x03\x01\x02\x03\x04\x04\x03\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃩
+ 0x2a0ea: "\x03\x02\x01\x01\x05\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃪
+ 0x2a0eb: "\x03\x03\x01\x02\x05\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃫
+ 0x2a0ec: "\x04\x03\x01\x02\x05\x03\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃬
+ 0x2a0ed: "\x04\x04\x05\x03\x05\x04\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃭
+ 0x2a0ee: "\x05\x01\x03\x01\x05\x04\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃮
+ 0x2a0ef: "\x05\x01\x05\x01\x05\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃯
+ 0x2a0f0: "\x05\x04\x02\x05\x01\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃰
+ 0x2a0f1: "\x01\x03\x02\x05\x01\x01\x05\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃱
+ 0x2a0f2: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x01\x02\x01\x03\x02\x05\x01\x01", // 𪃲
+ 0x2a0f3: "\x01\x02\x01\x02\x02\x05\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃳
+ 0x2a0f4: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x04\x04\x03\x01\x02\x05\x01\x02", // 𪃴
+ 0x2a0f5: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 𪃵
+ 0x2a0f6: "\x03\x02\x05\x01\x03\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃶
+ 0x2a0f7: "\x02\x05\x01\x01\x01\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃷
+ 0x2a0f8: "\x01\x02\x02\x01\x05\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃸
+ 0x2a0f9: "\x05\x01\x01\x05\x04\x05\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃹
+ 0x2a0fa: "\x01\x01\x02\x02\x01\x02\x05\x02\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃺
+ 0x2a0fb: "\x03\x05\x01\x01\x03\x03\x03\x05\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃻
+ 0x2a0fc: "\x03\x02\x05\x01\x01\x01\x04\x05\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃼
+ 0x2a0fd: "\x04\x04\x01\x03\x04\x04\x03\x05\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃽
+ 0x2a0fe: "\x04\x04\x05\x03\x04\x03\x04\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃾
+ 0x2a0ff: "\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪃿
+ 0x2a100: "\x03\x03\x05\x04\x01\x04\x03\x05\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪄀
+ 0x2a101: "\x01\x03\x03\x02\x05\x01\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪄁
+ 0x2a102: "\x01\x03\x02\x05\x01\x01\x01\x03\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪄂
+ 0x2a103: "\x01\x01\x03\x01\x01\x02\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪄃
+ 0x2a104: "\x04\x01\x03\x05\x01\x02\x01\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪄄
+ 0x2a105: "\x03\x04\x01\x02\x03\x05\x04\x03\x05\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪄅
+ 0x2a106: "\x03\x02\x05\x03\x04\x01\x01\x05\x01\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪄆
+ 0x2a107: "\x03\x04\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪄇
+ 0x2a108: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x01\x01\x01\x03\x04\x03\x01\x02\x03\x04", // 𪄈
+ 0x2a109: "\x05\x05\x05\x02\x05\x01\x05\x02\x01\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪄉
+ 0x2a10a: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪄊
+ 0x2a10b: "\x04\x04\x05\x05\x04\x04\x03\x02\x05\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪄋
+ 0x2a10c: "\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪄌
+ 0x2a10d: "\x02\x05\x01\x02\x05\x01\x01\x05\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪄍
+ 0x2a10e: "\x01\x02\x03\x04\x03\x05\x04\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪄎
+ 0x2a10f: "\x01\x02\x05\x02\x02\x01\x03\x05\x05\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪄏
+ 0x2a110: "\x01\x02\x01\x02\x02\x01\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪄐
+ 0x2a111: "\x04\x04\x05\x03\x05\x05\x04\x03\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪄑
+ 0x2a112: "\x01\x02\x01\x01\x01\x05\x04\x03\x03\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪄒
+ 0x2a113: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x04\x04\x05\x01\x01\x03\x05\x05\x03\x01", // 𪄓
+ 0x2a114: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𪄔
+ 0x2a115: "\x01\x01\x02\x01\x04\x03\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪄕
+ 0x2a116: "\x01\x02\x01\x03\x03\x05\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪄖
+ 0x2a117: "\x01\x02\x01\x04\x05\x01\x04\x03\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪄗
+ 0x2a118: "\x01\x03\x02\x05\x01\x02\x05\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪄘
+ 0x2a119: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪄙
+ 0x2a11a: "\x02\x05\x01\x01\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪄚
+ 0x2a11b: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x01\x04\x05\x04\x04", // 𪄛
+ 0x2a11c: "\x03\x02\x05\x01\x05\x01\x01\x02\x05\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪄜
+ 0x2a11d: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x05\x04\x04\x04\x04", // 𪄝
+ 0x2a11e: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03", // 𪄞
+ 0x2a11f: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x04\x01\x05\x03\x03\x03\x05\x04\x01\x04", // 𪄟
+ 0x2a120: "\x04\x04\x01\x01\x02\x05\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪄠
+ 0x2a121: "\x05\x01\x03\x01\x02\x02\x01\x05\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪄡
+ 0x2a122: "\x03\x05\x02\x05\x03\x04\x01\x05\x01\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪄢
+ 0x2a123: "\x04\x04\x01\x03\x01\x02\x01\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪄣
+ 0x2a124: "\x01\x03\x04\x01\x02\x01\x01\x01\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪄤
+ 0x2a125: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x02\x05\x01\x02\x04\x05\x02\x05\x01\x01", // 𪄥
+ 0x2a126: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x01\x02\x02\x03\x04\x01\x02\x03\x04", // 𪄦
+ 0x2a127: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x04\x03\x01\x05\x02\x03\x04\x05\x04", // 𪄧
+ 0x2a128: "\x02\x05\x01\x02\x04\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪄨
+ 0x2a129: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02", // 𪄩
+ 0x2a12a: "\x01\x03\x04\x03\x04\x02\x03\x04\x05\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪄪
+ 0x2a12b: "\x04\x04\x01\x03\x04\x01\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪄫
+ 0x2a12c: "\x04\x05\x02\x04\x03\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪄬
+ 0x2a12d: "\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪄭
+ 0x2a12e: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x01\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪄮
+ 0x2a12f: "\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪄯
+ 0x2a130: "\x04\x05\x04\x03\x04\x02\x05\x01\x02\x01\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪄰
+ 0x2a131: "\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪄱
+ 0x2a132: "\x04\x01\x04\x03\x02\x05\x03\x05\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪄲
+ 0x2a133: "\x01\x03\x04\x03\x04\x02\x03\x04\x03\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪄳
+ 0x2a134: "\x03\x01\x05\x05\x04\x01\x04\x03\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪄴
+ 0x2a135: "\x05\x01\x01\x05\x04\x01\x05\x03\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪄵
+ 0x2a136: "\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪄶
+ 0x2a137: "\x01\x02\x05\x02\x02\x01\x01\x03\x04\x05\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪄷
+ 0x2a138: "\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪄸
+ 0x2a139: "\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪄹
+ 0x2a13a: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x04\x04\x05\x01\x01\x03\x05\x03\x01\x03\x04", // 𪄺
+ 0x2a13b: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x01\x01\x01\x03\x04\x03\x02\x01\x05\x01\x01", // 𪄻
+ 0x2a13c: "\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪄼
+ 0x2a13d: "\x01\x02\x01\x04\x05\x01\x03\x05\x03\x05\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪄽
+ 0x2a13e: "\x03\x02\x04\x01\x01\x01\x02\x01\x05\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪄾
+ 0x2a13f: "\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪄿
+ 0x2a140: "\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅀
+ 0x2a141: "\x02\x05\x02\x04\x04\x05\x01\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅁
+ 0x2a142: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅂
+ 0x2a143: "\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅃
+ 0x2a144: "\x04\x01\x05\x05\x04\x04\x01\x03\x04\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅄
+ 0x2a145: "\x02\x05\x01\x02\x01\x03\x05\x04\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅅
+ 0x2a146: "\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅆
+ 0x2a147: "\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅇
+ 0x2a148: "\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅈
+ 0x2a149: "\x03\x02\x01\x05\x01\x01\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅉
+ 0x2a14a: "\x03\x04\x04\x03\x01\x03\x05\x03\x03\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅊
+ 0x2a14b: "\x05\x02\x01\x02\x01\x03\x05\x03\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅋
+ 0x2a14c: "\x03\x01\x02\x03\x04\x02\x02\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅌
+ 0x2a14d: "\x04\x04\x01\x01\x03\x04\x03\x04\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅍
+ 0x2a14e: "\x03\x04\x04\x03\x03\x02\x01\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅎
+ 0x2a14f: "\x01\x02\x01\x04\x05\x03\x05\x03\x05\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅏
+ 0x2a150: "\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅐
+ 0x2a151: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x03\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅑
+ 0x2a152: "\x04\x03\x01\x02\x03\x04\x01\x05\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅒
+ 0x2a153: "\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅓
+ 0x2a154: "\x03\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x01\x01\x02\x01", // 𪅔
+ 0x2a155: "\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅕
+ 0x2a156: "\x01\x01\x01\x03\x04\x03\x02\x01\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅖
+ 0x2a157: "\x01\x01\x02\x03\x04\x03\x01\x03\x04\x01\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅗
+ 0x2a158: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x01\x02\x05\x01\x01\x02\x01\x04\x01\x02\x04", // 𪅘
+ 0x2a159: "\x01\x02\x05\x01\x02\x03\x04\x03\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅙
+ 0x2a15a: "\x02\x05\x01\x01\x01\x03\x03\x03\x05\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅚
+ 0x2a15b: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 𪅛
+ 0x2a15c: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04", // 𪅜
+ 0x2a15d: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅝
+ 0x2a15e: "\x03\x05\x04\x03\x01\x02\x03\x04\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅞
+ 0x2a15f: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x04\x01\x03\x05\x01\x01\x02\x05\x01\x01\x02", // 𪅟
+ 0x2a160: "\x04\x03\x01\x01\x01\x03\x05\x02\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅠
+ 0x2a161: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 𪅡
+ 0x2a162: "\x04\x04\x05\x01\x03\x02\x05\x02\x02\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅢
+ 0x2a163: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅣
+ 0x2a164: "\x01\x02\x05\x01\x02\x05\x05\x04\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅤
+ 0x2a165: "\x03\x02\x04\x01\x01\x01\x02\x01\x03\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅥
+ 0x2a166: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x01\x05\x03\x04\x01", // 𪅦
+ 0x2a167: "\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅧
+ 0x2a168: "\x03\x01\x02\x03\x04\x03\x05\x04\x03\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅨
+ 0x2a169: "\x05\x04\x05\x04\x05\x04\x03\x04\x03\x03\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅩
+ 0x2a16a: "\x04\x01\x02\x05\x01\x05\x02\x01\x05\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅪
+ 0x2a16b: "\x01\x02\x01\x01\x02\x05\x01\x01\x05\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅫
+ 0x2a16c: "\x03\x02\x01\x02\x05\x01\x01\x05\x03\x01\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅬
+ 0x2a16d: "\x03\x02\x02\x03\x01\x03\x04\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅭
+ 0x2a16e: "\x04\x04\x05\x04\x05\x04\x03\x04\x02\x05\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅮
+ 0x2a16f: "\x04\x01\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅯
+ 0x2a170: "\x03\x04\x01\x01\x02\x02\x05\x01\x05\x04\x05\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅰
+ 0x2a171: "\x05\x01\x03\x03\x02\x05\x01\x02\x05\x02\x01\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅱
+ 0x2a172: "\x03\x04\x01\x02\x05\x01\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅲
+ 0x2a173: "\x01\x02\x01\x05\x02\x05\x01\x02\x05\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅳
+ 0x2a174: "\x01\x02\x01\x05\x05\x01\x02\x01\x04\x05\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅴
+ 0x2a175: "\x02\x05\x01\x02\x01\x04\x01\x01\x03\x05\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅵
+ 0x2a176: "\x02\x04\x03\x02\x05\x02\x05\x01\x03\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅶
+ 0x2a177: "\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅷
+ 0x2a178: "\x01\x01\x01\x02\x05\x03\x05\x05\x04\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅸
+ 0x2a179: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x05\x05\x04\x05\x05\x04\x01\x03\x04\x05\x03\x04", // 𪅹
+ 0x2a17a: "\x02\x05\x01\x03\x02\x05\x01\x03\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅺
+ 0x2a17b: "\x03\x03\x05\x04\x01\x04\x04\x03\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅻
+ 0x2a17c: "\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅼
+ 0x2a17d: "\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅽
+ 0x2a17e: "\x01\x02\x02\x01\x01\x01\x03\x04\x03\x05\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅾
+ 0x2a17f: "\x05\x02\x01\x03\x01\x02\x01\x03\x05\x04\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪅿
+ 0x2a180: "\x05\x01\x05\x04\x03\x01\x02\x03\x04\x05\x01\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆀
+ 0x2a181: "\x01\x02\x02\x01\x01\x01\x03\x04\x03\x03\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆁
+ 0x2a182: "\x04\x04\x01\x01\x05\x01\x05\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆂
+ 0x2a183: "\x04\x01\x02\x05\x01\x05\x02\x01\x03\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆃
+ 0x2a184: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04", // 𪆄
+ 0x2a185: "\x03\x02\x04\x01\x01\x01\x02\x01\x04\x03\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆅
+ 0x2a186: "\x01\x02\x01\x02\x03\x05\x02\x05\x01\x03\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆆
+ 0x2a187: "\x05\x01\x05\x01\x02\x01\x01\x02\x01\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆇
+ 0x2a188: "\x03\x05\x04\x01\x01\x03\x04\x04\x04\x03\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆈
+ 0x2a189: "\x01\x02\x04\x05\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆉
+ 0x2a18a: "\x01\x01\x01\x03\x04\x03\x02\x01\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆊
+ 0x2a18b: "\x05\x05\x04\x04\x04\x04\x01\x02\x01\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆋
+ 0x2a18c: "\x02\x05\x03\x04\x02\x05\x01\x01\x03\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆌
+ 0x2a18d: "\x03\x05\x03\x04\x03\x04\x02\x03\x04\x03\x04\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆍
+ 0x2a18e: "\x04\x04\x01\x04\x01\x05\x03\x03\x01\x05\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆎
+ 0x2a18f: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𪆏
+ 0x2a190: "\x03\x02\x04\x01\x01\x01\x02\x01\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆐
+ 0x2a191: "\x01\x02\x01\x04\x05\x02\x05\x01\x03\x05\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆑
+ 0x2a192: "\x01\x03\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆒
+ 0x2a193: "\x05\x05\x04\x04\x04\x04\x05\x05\x04\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆓
+ 0x2a194: "\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x03\x03\x04", // 𪆔
+ 0x2a195: "\x04\x04\x05\x01\x03\x04\x01\x02\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆕
+ 0x2a196: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x01\x02\x01\x04\x05\x01\x02\x05\x01\x04\x03\x01", // 𪆖
+ 0x2a197: "\x01\x02\x02\x01\x01\x01\x03\x04\x03\x03\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆗
+ 0x2a198: "\x01\x02\x02\x05\x01\x01\x01\x02\x03\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆘
+ 0x2a199: "\x01\x03\x04\x03\x01\x05\x02\x03\x03\x05\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆙
+ 0x2a19a: "\x01\x04\x05\x02\x04\x01\x03\x04\x01\x01\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆚
+ 0x2a19b: "\x02\x01\x05\x03\x01\x05\x02\x02\x04\x03\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆛
+ 0x2a19c: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆜
+ 0x2a19d: "\x04\x01\x02\x05\x01\x05\x02\x01\x03\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆝
+ 0x2a19e: "\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆞
+ 0x2a19f: "\x04\x04\x01\x01\x02\x05\x01\x02\x03\x04\x05\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆟
+ 0x2a1a0: "\x04\x04\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆠
+ 0x2a1a1: "\x04\x01\x04\x03\x04\x05\x02\x05\x02\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆡
+ 0x2a1a2: "\x04\x04\x05\x04\x05\x04\x04\x02\x05\x01\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆢
+ 0x2a1a3: "\x02\x05\x01\x01\x04\x01\x02\x05\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆣
+ 0x2a1a4: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆤
+ 0x2a1a5: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x04\x04\x05\x03\x04\x03\x01\x02\x01\x02\x05\x01", // 𪆥
+ 0x2a1a6: "\x03\x03\x03\x01\x03\x02\x05\x01\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆦
+ 0x2a1a7: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x01\x02\x01\x02\x01\x03\x04\x01\x05\x05\x03\x04", // 𪆧
+ 0x2a1a8: "\x01\x02\x01\x02\x03\x05\x01\x05\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆨
+ 0x2a1a9: "\x04\x01\x02\x05\x01\x02\x03\x04\x01\x03\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆩
+ 0x2a1aa: "\x01\x02\x01\x04\x05\x01\x03\x05\x03\x05\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆪
+ 0x2a1ab: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x04\x04\x01\x01\x05\x01\x05\x01\x02\x03\x04", // 𪆫
+ 0x2a1ac: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x02\x05\x01\x02\x01\x02\x01\x03\x05\x04\x02\x05\x01", // 𪆬
+ 0x2a1ad: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x05\x01\x01\x02\x03\x02\x01\x01\x05\x05\x02\x01\x02", // 𪆭
+ 0x2a1ae: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x04\x04\x05\x04\x05\x04\x03\x04\x02\x05\x02\x02\x01", // 𪆮
+ 0x2a1af: "\x02\x05\x01\x02\x02\x01\x01\x03\x01\x01\x05\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆯
+ 0x2a1b0: "\x01\x02\x01\x02\x02\x05\x01\x01\x03\x05\x03\x04\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆰
+ 0x2a1b1: "\x03\x05\x04\x05\x03\x03\x04\x01\x01\x02\x04\x03\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆱
+ 0x2a1b2: "\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆲
+ 0x2a1b3: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x02\x05", // 𪆳
+ 0x2a1b4: "\x01\x02\x01\x02\x05\x04\x03\x03\x04\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆴
+ 0x2a1b5: "\x04\x04\x01\x01\x03\x04\x03\x04\x02\x03\x04\x05\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆵
+ 0x2a1b6: "\x02\x01\x03\x05\x04\x05\x04\x04\x03\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆶
+ 0x2a1b7: "\x03\x04\x01\x01\x02\x04\x03\x01\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆷
+ 0x2a1b8: "\x04\x04\x01\x02\x05\x01\x02\x04\x05\x03\x05\x04\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆸
+ 0x2a1b9: "\x02\x05\x01\x02\x02\x05\x02\x05\x01\x04\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆹
+ 0x2a1ba: "\x02\x01\x05\x03\x01\x05\x01\x03\x05\x03\x03\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆺
+ 0x2a1bb: "\x03\x05\x01\x03\x03\x05\x04\x01\x01\x01\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆻
+ 0x2a1bc: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆼
+ 0x2a1bd: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x04\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆽
+ 0x2a1be: "\x04\x01\x02\x05\x01\x02\x05\x01\x04\x03\x01\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆾
+ 0x2a1bf: "\x04\x01\x04\x03\x01\x03\x04\x01\x01\x01\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪆿
+ 0x2a1c0: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇀
+ 0x2a1c1: "\x02\x04\x03\x04\x05\x02\x05\x01\x02\x05\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇁
+ 0x2a1c2: "\x01\x02\x01\x04\x05\x04\x03\x03\x04\x03\x05\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇂
+ 0x2a1c3: "\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04\x03\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇃
+ 0x2a1c4: "\x01\x02\x01\x04\x05\x01\x03\x05\x03\x04\x05\x02\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇄
+ 0x2a1c5: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x01\x02\x02\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 𪇅
+ 0x2a1c6: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 𪇆
+ 0x2a1c7: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇇
+ 0x2a1c8: "\x03\x04\x04\x03\x04\x05\x04\x05\x04\x04\x03\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇈
+ 0x2a1c9: "\x04\x01\x05\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇉
+ 0x2a1ca: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x05\x01\x03\x02\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 𪇊
+ 0x2a1cb: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x02\x05\x02\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 𪇋
+ 0x2a1cc: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x02\x05\x01\x02\x02\x01\x01\x03\x01\x01\x05\x03\x04", // 𪇌
+ 0x2a1cd: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x02\x05\x01\x02\x02\x05\x02\x05\x01\x04\x05\x04", // 𪇍
+ 0x2a1ce: "\x01\x02\x03\x04\x01\x02\x03\x04\x01\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇎
+ 0x2a1cf: "\x01\x02\x05\x01\x02\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇏
+ 0x2a1d0: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x04\x03\x01\x05\x02\x03\x03\x05\x01\x01\x01\x03\x04", // 𪇐
+ 0x2a1d1: "\x03\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇑
+ 0x2a1d2: "\x04\x03\x01\x02\x03\x04\x01\x01\x02\x01\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇒
+ 0x2a1d3: "\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x03\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇓
+ 0x2a1d4: "\x01\x02\x01\x02\x05\x05\x04\x05\x05\x04\x04\x05\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇔
+ 0x2a1d5: "\x04\x04\x05\x01\x02\x03\x03\x02\x05\x01\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇕
+ 0x2a1d6: "\x01\x02\x05\x01\x02\x05\x03\x01\x01\x02\x05\x02\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇖
+ 0x2a1d7: "\x01\x02\x01\x04\x05\x03\x01\x02\x03\x04\x03\x05\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇗
+ 0x2a1d8: "\x01\x02\x01\x05\x01\x02\x01\x01\x02\x05\x01\x01\x02\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇘
+ 0x2a1d9: "\x03\x01\x04\x03\x01\x04\x01\x03\x04\x04\x03\x01\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇙
+ 0x2a1da: "\x01\x01\x02\x03\x04\x02\x05\x01\x01\x01\x03\x05\x03\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇚
+ 0x2a1db: "\x04\x01\x03\x05\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇛
+ 0x2a1dc: "\x01\x02\x01\x02\x04\x04\x05\x03\x01\x02\x01\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇜
+ 0x2a1dd: "\x03\x04\x01\x01\x02\x03\x04\x03\x05\x03\x05\x01\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇝
+ 0x2a1de: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x05\x03\x02\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇞
+ 0x2a1df: "\x01\x02\x01\x05\x02\x01\x03\x03\x04\x03\x04\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇟
+ 0x2a1e0: "\x01\x02\x02\x01\x02\x05\x01\x03\x04\x04\x03\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇠
+ 0x2a1e1: "\x02\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇡
+ 0x2a1e2: "\x03\x01\x04\x03\x01\x04\x03\x05\x04\x03\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇢
+ 0x2a1e3: "\x03\x02\x05\x01\x01\x01\x03\x03\x02\x05\x01\x01\x01\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇣
+ 0x2a1e4: "\x03\x05\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇤
+ 0x2a1e5: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x04\x01\x05\x03\x03\x01\x01\x02\x02\x01\x01\x01\x03\x04", // 𪇥
+ 0x2a1e6: "\x02\x01\x05\x03\x01\x05\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇦
+ 0x2a1e7: "\x04\x04\x05\x05\x02\x01\x03\x02\x05\x01\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇧
+ 0x2a1e8: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x01\x02\x02\x04\x04\x01\x01\x02\x05\x01\x01\x02\x04", // 𪇨
+ 0x2a1e9: "\x03\x04\x01\x01\x02\x04\x03\x01\x05\x01\x01\x05\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇩
+ 0x2a1ea: "\x01\x02\x01\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇪
+ 0x2a1eb: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x03\x05\x05\x04\x04\x04\x01\x02", // 𪇫
+ 0x2a1ec: "\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇬
+ 0x2a1ed: "\x01\x02\x01\x02\x03\x05\x04\x01\x05\x04\x01\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇭
+ 0x2a1ee: "\x04\x01\x03\x02\x05\x01\x01\x02\x01\x01\x03\x05\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇮
+ 0x2a1ef: "\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03\x01\x05\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇯
+ 0x2a1f0: "\x02\x05\x01\x01\x01\x02\x02\x01\x03\x04\x02\x04\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇰
+ 0x2a1f1: "\x03\x02\x05\x01\x01\x05\x05\x04\x05\x05\x04\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇱
+ 0x2a1f2: "\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x01\x05\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇲
+ 0x2a1f3: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x01\x04\x03\x01\x04\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 𪇳
+ 0x2a1f4: "\x02\x01\x02\x01\x02\x05\x02\x02\x01\x01\x03\x04\x05\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇴
+ 0x2a1f5: "\x04\x01\x03\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇵
+ 0x2a1f6: "\x04\x04\x01\x03\x02\x04\x01\x01\x01\x02\x01\x04\x04\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇶
+ 0x2a1f7: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x05\x02\x03\x02\x05\x01\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 𪇷
+ 0x2a1f8: "\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x04\x05\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇸
+ 0x2a1f9: "\x05\x05\x05\x02\x05\x03\x04\x01\x05\x04\x04\x05\x04\x04\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇹
+ 0x2a1fa: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x03\x05\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇺
+ 0x2a1fb: "\x04\x01\x01\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇻
+ 0x2a1fc: "\x01\x02\x02\x01\x02\x05\x01\x01\x02\x01\x03\x05\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇼
+ 0x2a1fd: "\x01\x02\x02\x01\x02\x05\x01\x01\x01\x03\x04\x03\x05\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇽
+ 0x2a1fe: "\x01\x02\x02\x04\x03\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇾
+ 0x2a1ff: "\x01\x03\x05\x01\x03\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪇿
+ 0x2a200: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x05\x02\x01\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈀
+ 0x2a201: "\x03\x01\x04\x03\x01\x04\x01\x03\x01\x02\x05\x01\x05\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈁
+ 0x2a202: "\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04\x02\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈂
+ 0x2a203: "\x04\x01\x02\x05\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈃
+ 0x2a204: "\x05\x04\x05\x02\x03\x02\x05\x03\x05\x02\x05\x01\x04\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈄
+ 0x2a205: "\x03\x01\x04\x03\x01\x04\x03\x05\x01\x02\x01\x04\x03\x01\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈅
+ 0x2a206: "\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈆
+ 0x2a207: "\x03\x04\x01\x01\x02\x04\x03\x01\x01\x05\x03\x04\x01\x05\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈇
+ 0x2a208: "\x01\x02\x05\x01\x02\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈈
+ 0x2a209: "\x02\x05\x01\x01\x01\x01\x02\x03\x04\x03\x05\x05\x04\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈉
+ 0x2a20a: "\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x05\x04\x01\x05\x04\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈊
+ 0x2a20b: "\x04\x01\x02\x05\x01\x02\x05\x01\x04\x03\x01\x01\x02\x03\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈋
+ 0x2a20c: "\x03\x05\x03\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈌
+ 0x2a20d: "\x03\x04\x01\x03\x02\x04\x02\x05\x01\x01\x02\x05\x03\x05\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈍
+ 0x2a20e: "\x01\x02\x05\x01\x02\x03\x04\x05\x03\x02\x05\x01\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈎
+ 0x2a20f: "\x01\x02\x02\x01\x02\x05\x01\x02\x01\x01\x03\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈏
+ 0x2a210: "\x01\x02\x05\x01\x02\x03\x04\x05\x03\x02\x05\x01\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈐
+ 0x2a211: "\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x01\x03\x05\x03\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈑
+ 0x2a212: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 𪈒
+ 0x2a213: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x04\x03\x01\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈓
+ 0x2a214: "\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x05\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈔
+ 0x2a215: "\x03\x04\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈕
+ 0x2a216: "\x02\x05\x02\x03\x02\x05\x01\x05\x01\x04\x01\x04\x03\x01\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈖
+ 0x2a217: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈗
+ 0x2a218: "\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x01\x03\x05\x04\x01\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈘
+ 0x2a219: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x01\x02\x01\x02\x03\x02\x05\x01\x05\x01\x04\x01\x04\x03\x01\x01\x02", // 𪈙
+ 0x2a21a: "\x02\x05\x01\x01\x05\x02\x02\x05\x02\x01\x03\x04\x04\x03\x01\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈚
+ 0x2a21b: "\x02\x01\x02\x01\x02\x05\x02\x02\x01\x04\x05\x03\x02\x01\x05\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈛
+ 0x2a21c: "\x05\x05\x04\x04\x04\x04\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈜
+ 0x2a21d: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈝
+ 0x2a21e: "\x01\x02\x01\x04\x05\x01\x02\x05\x01\x04\x03\x01\x05\x03\x02\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈞
+ 0x2a21f: "\x01\x02\x01\x02\x03\x02\x05\x01\x05\x01\x04\x01\x04\x03\x01\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈟
+ 0x2a220: "\x04\x01\x03\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01\x04\x05\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈠
+ 0x2a221: "\x02\x05\x02\x03\x05\x03\x04\x01\x01\x01\x02\x05\x01\x01\x03\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈡
+ 0x2a222: "\x03\x01\x04\x03\x01\x04\x01\x02\x01\x04\x03\x01\x01\x02\x03\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈢
+ 0x2a223: "\x03\x01\x04\x03\x01\x04\x03\x05\x04\x01\x03\x04\x03\x04\x01\x01\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈣
+ 0x2a224: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x02\x05\x01\x01\x01\x03\x04\x02\x05\x01\x01\x01\x03\x04\x05\x03\x01", // 𪈤
+ 0x2a225: "\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x03\x05\x02\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈥
+ 0x2a226: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈦
+ 0x2a227: "\x01\x02\x01\x02\x03\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈧
+ 0x2a228: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x01\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈨
+ 0x2a229: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x02\x01\x02\x01\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𪈩
+ 0x2a22a: "\x03\x02\x05\x01\x01\x01\x03\x04\x03\x04\x03\x04\x03\x04\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈪
+ 0x2a22b: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x02\x05\x01\x01\x05\x02\x02\x05\x02\x01\x03\x04\x04\x03\x01\x02\x03\x04", // 𪈫
+ 0x2a22c: "\x03\x02\x05\x01\x01\x01\x03\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈬
+ 0x2a22d: "\x01\x02\x02\x01\x02\x05\x01\x02\x05\x03\x01\x04\x02\x05\x02\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈭
+ 0x2a22e: "\x05\x05\x04\x02\x03\x04\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x02\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈮
+ 0x2a22f: "\x04\x04\x01\x01\x04\x05\x02\x04\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈯
+ 0x2a230: "\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈰
+ 0x2a231: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x05\x01\x03\x01\x01\x03\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈱
+ 0x2a232: "\x04\x01\x03\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈲
+ 0x2a233: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x01\x02\x05\x04\x01\x02\x05\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 𪈳
+ 0x2a234: "\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈴
+ 0x2a235: "\x03\x05\x03\x04\x02\x03\x04\x02\x03\x04\x02\x03\x04\x02\x03\x04\x02\x03\x04\x02\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈵
+ 0x2a236: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x04\x01\x02\x05\x01\x02\x05\x01\x01\x02\x01\x02\x01\x01\x01\x02\x03\x01\x03\x04", // 𪈶
+ 0x2a237: "\x04\x01\x02\x05\x01\x02\x05\x01\x01\x02\x01\x02\x01\x01\x01\x02\x02\x01\x05\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈷
+ 0x2a238: "\x04\x04\x01\x01\x02\x02\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈸
+ 0x2a239: "\x01\x02\x05\x03\x04\x01\x02\x05\x03\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈹
+ 0x2a23a: "\x05\x01\x03\x02\x04\x01\x03\x04\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈺
+ 0x2a23b: "\x01\x02\x03\x04\x02\x01\x02\x01\x02\x05\x01\x02\x05\x01\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈻
+ 0x2a23c: "\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈼
+ 0x2a23d: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x03\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈽
+ 0x2a23e: "\x04\x01\x03\x03\x02\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈾
+ 0x2a23f: "\x04\x01\x01\x01\x02\x05\x01\x05\x05\x04\x04\x04\x04\x05\x05\x04\x04\x04\x04\x02\x05\x01\x02\x01\x04\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪈿
+ 0x2a240: "\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04\x02\x05\x01\x02\x01\x02\x05\x01\x02\x01", // 𪉀
+ 0x2a241: "\x03\x05\x04\x05\x01\x03\x05\x03\x04", // 𪉁
+ 0x2a242: "\x01\x01\x05\x04\x03\x05\x04\x05\x01", // 𪉂
+ 0x2a243: "\x04\x01\x03\x04\x03\x05\x04\x05\x01", // 𪉃
+ 0x2a244: "\x03\x03\x01\x02\x04\x03\x05\x04\x05\x01", // 𪉄
+ 0x2a245: "\x01\x01\x02\x01\x05\x04\x03\x05\x04\x05\x01", // 𪉅
+ 0x2a246: "\x03\x05\x02\x05\x01\x01\x03\x05\x04\x05\x01", // 𪉆
+ 0x2a247: "\x03\x05\x04\x05\x01\x01\x03\x01\x05\x03\x04", // 𪉇
+ 0x2a248: "\x02\x01\x02\x01\x03\x05\x03\x05\x04\x05\x01", // 𪉈
+ 0x2a249: "\x04\x01\x03\x01\x02\x01\x03\x05\x04\x05\x01", // 𪉉
+ 0x2a24a: "\x03\x02\x03\x05\x01\x02\x03\x05\x04\x05\x01", // 𪉊
+ 0x2a24b: "\x03\x05\x04\x01\x05\x02\x03\x05\x04\x05\x01", // 𪉋
+ 0x2a24c: "\x01\x02\x04\x01\x03\x04\x04\x03\x05\x04\x05\x01", // 𪉌
+ 0x2a24d: "\x03\x01\x02\x03\x04\x03\x05\x03\x05\x04\x05\x01", // 𪉍
+ 0x2a24e: "\x03\x05\x01\x05\x02\x05\x01\x01\x03\x05\x04\x05\x01", // 𪉎
+ 0x2a24f: "\x01\x02\x02\x01\x01\x01\x02\x03\x04\x03\x05\x04\x05\x01", // 𪉏
+ 0x2a250: "\x02\x05\x01\x01\x02\x05\x02\x01\x04\x03\x05\x04\x05\x01", // 𪉐
+ 0x2a251: "\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04\x03\x05\x04\x05\x01", // 𪉑
+ 0x2a252: "\x01\x01\x02\x01\x04\x03\x01\x01\x02\x01\x03\x05\x04\x05\x01", // 𪉒
+ 0x2a253: "\x03\x05\x04\x05\x01\x03\x05\x04\x05\x01\x03\x05\x04\x05\x01", // 𪉓
+ 0x2a254: "\x03\x02\x05\x03\x04\x01\x01\x05\x01\x05\x03\x05\x04\x05\x01", // 𪉔
+ 0x2a255: "\x03\x05\x04\x05\x01\x03\x01\x04\x03\x01\x04\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 𪉕
+ 0x2a256: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x01\x02\x01", // 𪉖
+ 0x2a257: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x01\x03\x04", // 𪉗
+ 0x2a258: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x03\x05\x05\x04", // 𪉘
+ 0x2a259: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x02\x05\x01\x01", // 𪉙
+ 0x2a25a: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x03\x01\x01\x05", // 𪉚
+ 0x2a25b: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x04\x05\x03\x05", // 𪉛
+ 0x2a25c: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x02\x01\x02\x05\x01", // 𪉜
+ 0x2a25d: "\x05\x04\x05\x02\x03\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01", // 𪉝
+ 0x2a25e: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x02\x05\x01\x01\x02", // 𪉞
+ 0x2a25f: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x02\x05\x02\x02\x01", // 𪉟
+ 0x2a260: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x01\x03\x05\x03\x04", // 𪉠
+ 0x2a261: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x03\x01\x03\x05\x01", // 𪉡
+ 0x2a262: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x03\x04\x03\x04\x01\x02", // 𪉢
+ 0x2a263: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x01\x02\x05\x01\x04\x03\x01", // 𪉣
+ 0x2a264: "\x04\x03\x01\x01\x01\x03\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01", // 𪉤
+ 0x2a265: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x03\x01\x05\x05\x04\x01\x04", // 𪉥
+ 0x2a266: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x03\x05\x03\x02\x01\x05\x01\x01", // 𪉦
+ 0x2a267: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 𪉧
+ 0x2a268: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x02\x05\x01\x01\x02\x05\x01\x01", // 𪉨
+ 0x2a269: "\x01\x02\x01\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x02\x05\x02\x02\x01", // 𪉩
+ 0x2a26a: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x01\x01\x01\x03\x04\x01\x01\x02", // 𪉪
+ 0x2a26b: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x02\x05\x01\x02\x05\x01\x01\x02", // 𪉫
+ 0x2a26c: "\x04\x03\x01\x01\x01\x03\x05\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01", // 𪉬
+ 0x2a26d: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x02\x05\x01\x02\x01\x01\x05\x03\x04", // 𪉭
+ 0x2a26e: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x01\x01\x01\x03\x04\x01\x01\x03\x04", // 𪉮
+ 0x2a26f: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x01\x02\x02\x01\x01\x01\x03\x05\x05", // 𪉯
+ 0x2a270: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x03\x04\x01\x02\x05\x01\x01\x02\x02", // 𪉰
+ 0x2a271: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x03\x05\x01\x03\x02\x05\x01\x02\x02", // 𪉱
+ 0x2a272: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x02\x05\x01\x01\x02\x05\x01\x01\x02", // 𪉲
+ 0x2a273: "\x01\x03\x01\x02\x05\x01\x05\x03\x04\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01", // 𪉳
+ 0x2a274: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x01\x02\x02\x01\x01\x01\x02\x03\x04", // 𪉴
+ 0x2a275: "\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01", // 𪉵
+ 0x2a276: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x01\x02\x02\x05\x01\x02\x05\x02\x02\x01", // 𪉶
+ 0x2a277: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x02\x05\x01\x01\x02\x05\x01\x05\x02\x02", // 𪉷
+ 0x2a278: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x02\x05\x03\x04\x01\x02\x05\x02\x02\x01", // 𪉸
+ 0x2a279: "\x01\x02\x01\x03\x01\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x02\x05\x02\x02\x01", // 𪉹
+ 0x2a27a: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x04\x01\x04\x03\x01\x03\x01\x01\x02\x01", // 𪉺
+ 0x2a27b: "\x02\x05\x02\x04\x04\x05\x01\x01\x02\x03\x04\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01", // 𪉻
+ 0x2a27c: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x04\x04\x05\x01\x02\x02\x01\x01\x01\x05\x04", // 𪉼
+ 0x2a27d: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 𪉽
+ 0x2a27e: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x03\x01\x05\x05\x04\x01\x04\x03\x01\x03\x04", // 𪉾
+ 0x2a27f: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x01\x02\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 𪉿
+ 0x2a280: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x05\x04\x05\x02\x03\x02\x05\x03\x05\x02\x05\x01", // 𪊀
+ 0x2a281: "\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x03\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01", // 𪊁
+ 0x2a282: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x03\x01\x03\x04\x03\x01\x03\x04\x02\x05\x01\x01", // 𪊂
+ 0x2a283: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x02\x05\x02\x03\x02\x05\x01\x02\x01\x03\x05\x05\x04", // 𪊃
+ 0x2a284: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x01\x03\x01\x02\x05\x01\x05\x03\x04\x04\x05\x04\x04", // 𪊄
+ 0x2a285: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x01\x02\x03\x04\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 𪊅
+ 0x2a286: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01", // 𪊆
+ 0x2a287: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x01\x02\x05\x01\x02\x05\x03\x01\x01\x02\x05\x02\x02\x01", // 𪊇
+ 0x2a288: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x03\x01\x02\x01", // 𪊈
+ 0x2a289: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x04\x01\x02\x05\x02\x02\x01\x02\x04\x01\x03\x04\x03\x05\x03\x04", // 𪊉
+ 0x2a28a: "\x02\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 𪊊
+ 0x2a28b: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x03\x05", // 𪊋
+ 0x2a28c: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x03\x05", // 𪊌
+ 0x2a28d: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x05\x01\x05", // 𪊍
+ 0x2a28e: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x03\x05\x04", // 𪊎
+ 0x2a28f: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x01\x03\x04\x04", // 𪊏
+ 0x2a290: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x01\x01\x03\x04", // 𪊐
+ 0x2a291: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x01\x01\x03\x02", // 𪊑
+ 0x2a292: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x02\x05\x01\x01", // 𪊒
+ 0x2a293: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x04\x01\x03\x04", // 𪊓
+ 0x2a294: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x01\x01\x03\x02", // 𪊔
+ 0x2a295: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x01\x05\x03\x05", // 𪊕
+ 0x2a296: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x03\x05\x03\x03", // 𪊖
+ 0x2a297: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x03\x01\x01\x02", // 𪊗
+ 0x2a298: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x03\x05\x03\x04", // 𪊘
+ 0x2a299: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x04\x01\x03\x04", // 𪊙
+ 0x2a29a: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x05\x02\x01\x05", // 𪊚
+ 0x2a29b: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x05\x05\x04\x05\x03", // 𪊛
+ 0x2a29c: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x01\x02\x03\x04\x01", // 𪊜
+ 0x2a29d: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x01\x03\x05\x04\x04", // 𪊝
+ 0x2a29e: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x01\x03\x02\x05\x01", // 𪊞
+ 0x2a29f: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x03\x01\x01\x02\x01", // 𪊟
+ 0x2a2a0: "\x02\x01\x01\x03\x05\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 𪊠
+ 0x2a2a1: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x03\x05\x05\x01\x05", // 𪊡
+ 0x2a2a2: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x03\x01\x01\x03\x04", // 𪊢
+ 0x2a2a3: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x02\x05\x01\x01\x01", // 𪊣
+ 0x2a2a4: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x01\x05\x01\x05", // 𪊤
+ 0x2a2a5: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x01\x02\x05\x01\x01\x01", // 𪊥
+ 0x2a2a6: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x02\x05\x01\x03\x04\x01", // 𪊦
+ 0x2a2a7: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x01\x02\x01\x01\x02\x01", // 𪊧
+ 0x2a2a8: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x03\x05\x02\x05\x01\x01", // 𪊨
+ 0x2a2a9: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x01\x01\x02\x02\x01\x02", // 𪊩
+ 0x2a2aa: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x03\x03\x01\x02\x05\x01", // 𪊪
+ 0x2a2ab: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x01\x03\x02\x05\x02\x02", // 𪊫
+ 0x2a2ac: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x04\x01\x03\x05\x03\x04", // 𪊬
+ 0x2a2ad: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x03\x04\x01\x03\x05\x04", // 𪊭
+ 0x2a2ae: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x05\x04\x01\x05\x04\x01", // 𪊮
+ 0x2a2af: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x03\x01\x02\x01\x03\x05", // 𪊯
+ 0x2a2b0: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x03\x02\x05\x01\x01\x01", // 𪊰
+ 0x2a2b1: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x03\x04\x01\x03\x05\x04", // 𪊱
+ 0x2a2b2: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x03\x05\x04\x02\x05\x01", // 𪊲
+ 0x2a2b3: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x04\x01\x03\x02\x03\x04", // 𪊳
+ 0x2a2b4: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x05\x04\x03\x05\x03\x05\x04", // 𪊴
+ 0x2a2b5: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x01\x05\x05\x05\x01\x02\x01", // 𪊵
+ 0x2a2b6: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x03\x01\x02\x01\x05\x04", // 𪊶
+ 0x2a2b7: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x01\x02\x01\x03\x05\x02\x01", // 𪊷
+ 0x2a2b8: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x03\x04\x01\x01\x02\x03\x04", // 𪊸
+ 0x2a2b9: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x02\x05\x01\x01\x01\x05\x03", // 𪊹
+ 0x2a2ba: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x04\x01\x03\x04\x02\x05\x01", // 𪊺
+ 0x2a2bb: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x02\x05\x02\x02\x01\x03\x04", // 𪊻
+ 0x2a2bc: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x02\x05\x03\x03\x01\x02\x01", // 𪊼
+ 0x2a2bd: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x02\x05\x01\x02\x03\x04\x01", // 𪊽
+ 0x2a2be: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 𪊾
+ 0x2a2bf: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x03\x04\x03\x04\x02\x05\x01", // 𪊿
+ 0x2a2c0: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x01\x02\x05\x01\x01\x01\x02", // 𪋀
+ 0x2a2c1: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x01\x03\x05\x03\x03\x03\x04", // 𪋁
+ 0x2a2c2: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x03\x01\x02\x01\x01\x02\x01", // 𪋂
+ 0x2a2c3: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x04\x01\x02\x05\x01\x03\x05", // 𪋃
+ 0x2a2c4: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x01\x02\x02\x01\x01\x01\x05\x04", // 𪋄
+ 0x2a2c5: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x04\x04\x05\x03\x05\x04\x05\x05", // 𪋅
+ 0x2a2c6: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x02\x05\x01\x01\x01\x05\x03\x05", // 𪋆
+ 0x2a2c7: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x03\x02\x04\x01\x01\x01\x02\x01", // 𪋇
+ 0x2a2c8: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x05\x01\x05\x03\x01\x02\x03\x04", // 𪋈
+ 0x2a2c9: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x01\x02\x05\x02\x04\x01\x03\x04", // 𪋉
+ 0x2a2ca: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 𪋊
+ 0x2a2cb: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x04\x03\x01\x01\x03\x01\x01\x02", // 𪋋
+ 0x2a2cc: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x04\x01\x03\x04\x03\x04\x01\x02", // 𪋌
+ 0x2a2cd: "\x05\x05\x05\x02\x05\x01\x02\x01\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 𪋍
+ 0x2a2ce: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x02\x05\x05\x04\x05\x05\x04\x05\x02", // 𪋎
+ 0x2a2cf: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x01\x02\x01\x03\x02\x05\x01\x01", // 𪋏
+ 0x2a2d0: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x01\x03\x02\x05\x02\x02\x01\x03\x04", // 𪋐
+ 0x2a2d1: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x01\x02\x01\x03\x02\x05\x01\x01", // 𪋑
+ 0x2a2d2: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x03\x01\x02\x03\x04\x02\x05\x01\x01", // 𪋒
+ 0x2a2d3: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 𪋓
+ 0x2a2d4: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x04\x01\x02\x05\x01\x01\x02\x03\x04", // 𪋔
+ 0x2a2d5: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x03\x02\x01\x01\x05\x04\x05\x01\x01", // 𪋕
+ 0x2a2d6: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𪋖
+ 0x2a2d7: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x04\x03\x01\x02\x03\x04\x04\x05\x04", // 𪋗
+ 0x2a2d8: "\x01\x02\x05\x03\x04\x01\x02\x05\x03\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 𪋘
+ 0x2a2d9: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x01\x03\x02\x05\x02\x01\x03\x02\x05\x02", // 𪋙
+ 0x2a2da: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x04\x01\x04\x03\x01\x03\x04\x04\x05\x04", // 𪋚
+ 0x2a2db: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x01\x02\x01\x02\x02\x05\x01\x01\x01\x02", // 𪋛
+ 0x2a2dc: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x02\x05\x01\x02\x01\x01\x02\x02\x01\x01\x02", // 𪋜
+ 0x2a2dd: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x01\x02\x05\x01\x02\x03\x04\x04\x05\x04", // 𪋝
+ 0x2a2de: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪋞
+ 0x2a2df: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x02", // 𪋟
+ 0x2a2e0: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x02\x05\x01\x01\x02\x05\x01\x01\x02\x01\x01", // 𪋠
+ 0x2a2e1: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 𪋡
+ 0x2a2e2: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x01\x03\x05\x03\x03\x03\x04\x02\x05\x01\x01\x01", // 𪋢
+ 0x2a2e3: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x01\x03\x02\x05\x02\x02\x01\x03\x02\x05\x02\x02", // 𪋣
+ 0x2a2e4: "\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x03\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 𪋤
+ 0x2a2e5: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x02\x05\x01\x01\x01\x02\x05\x01\x01\x02\x01\x01", // 𪋥
+ 0x2a2e6: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 𪋦
+ 0x2a2e7: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x03\x02\x05\x01\x01\x01\x03\x03\x01\x01\x03\x04", // 𪋧
+ 0x2a2e8: "\x03\x04\x05\x03\x01\x02\x05\x04\x01\x02\x05\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 𪋨
+ 0x2a2e9: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04", // 𪋩
+ 0x2a2ea: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x01\x04\x05\x02\x04\x01\x03\x04\x03\x04\x01\x05\x04", // 𪋪
+ 0x2a2eb: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x02\x03\x04", // 𪋫
+ 0x2a2ec: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x02\x01\x05\x03\x01\x05\x02\x05\x01\x05\x01\x03\x04", // 𪋬
+ 0x2a2ed: "\x01\x02\x05\x04\x01\x02\x05\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x03\x04\x01\x05\x04", // 𪋭
+ 0x2a2ee: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x03\x02\x01\x01\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 𪋮
+ 0x2a2ef: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x01\x04\x05\x02\x04\x01\x03\x04\x01\x03\x02\x05\x02\x02", // 𪋯
+ 0x2a2f0: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x02\x05\x02\x02\x01\x01\x02\x01\x03\x02\x05\x01\x01", // 𪋰
+ 0x2a2f1: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x03\x02\x01\x05\x01\x01\x01\x03\x05\x03\x03\x03\x04", // 𪋱
+ 0x2a2f2: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x04\x03\x03\x04\x04\x03\x03\x04\x03\x05\x04\x01\x05\x02", // 𪋲
+ 0x2a2f3: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x01\x04\x05\x02\x04\x01\x03\x04\x01\x05\x02\x02\x01\x02\x01", // 𪋳
+ 0x2a2f4: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x03\x05\x01\x03\x02\x05\x01\x01\x01\x05\x04\x04\x04\x04", // 𪋴
+ 0x2a2f5: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x05\x01\x01\x02\x04\x01\x03\x04\x05\x01\x01\x02\x04\x01\x03\x04", // 𪋵
+ 0x2a2f6: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x01\x04\x05\x02\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01", // 𪋶
+ 0x2a2f7: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x04\x03\x01\x02\x03\x04\x02\x05\x02\x02\x01\x03\x05\x04\x01\x05\x02", // 𪋷
+ 0x2a2f8: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x01\x05\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x02\x05\x03\x05\x02\x05\x01", // 𪋸
+ 0x2a2f9: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x02\x05\x01\x02\x05\x01\x01\x03\x05\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 𪋹
+ 0x2a2fa: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x03\x02\x05\x01\x01\x03\x05\x05\x04\x01\x04\x05\x02\x04\x01\x03\x04\x01\x03\x02\x05\x02\x02", // 𪋺
+ 0x2a2fb: "\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05\x01\x02\x01", // 𪋻
+ 0x2a2fc: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x03\x05", // 𪋼
+ 0x2a2fd: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x01\x05", // 𪋽
+ 0x2a2fe: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x05\x03", // 𪋾
+ 0x2a2ff: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x02\x04", // 𪋿
+ 0x2a300: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x05\x02", // 𪌀
+ 0x2a301: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x04\x01\x05", // 𪌁
+ 0x2a302: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x03\x01\x05", // 𪌂
+ 0x2a303: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x01\x01\x02", // 𪌃
+ 0x2a304: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x05\x01\x05", // 𪌄
+ 0x2a305: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x02\x05\x03\x04", // 𪌅
+ 0x2a306: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x01\x03\x05\x04", // 𪌆
+ 0x2a307: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x03\x01\x01\x05", // 𪌇
+ 0x2a308: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x01\x05\x01\x05", // 𪌈
+ 0x2a309: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x04\x04\x01\x02", // 𪌉
+ 0x2a30a: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x05\x01\x03\x04", // 𪌊
+ 0x2a30b: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x01\x05\x02\x05", // 𪌋
+ 0x2a30c: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x04\x03\x03\x04", // 𪌌
+ 0x2a30d: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x03\x03\x01\x02", // 𪌍
+ 0x2a30e: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x01\x02\x03\x04", // 𪌎
+ 0x2a30f: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x02\x01\x05\x04", // 𪌏
+ 0x2a310: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x03\x01\x01\x02", // 𪌐
+ 0x2a311: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x03\x01\x03\x04", // 𪌑
+ 0x2a312: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x03\x05\x03\x04", // 𪌒
+ 0x2a313: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x03\x05\x05\x04", // 𪌓
+ 0x2a314: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x02\x05\x01\x01\x01", // 𪌔
+ 0x2a315: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x05\x03\x02\x05\x01", // 𪌕
+ 0x2a316: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x01\x05\x01\x05", // 𪌖
+ 0x2a317: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x03\x01\x02\x03\x04", // 𪌗
+ 0x2a318: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x04\x01\x01\x02\x01", // 𪌘
+ 0x2a319: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x01\x03\x05\x03\x04", // 𪌙
+ 0x2a31a: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x05\x04\x01\x03\x02", // 𪌚
+ 0x2a31b: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x02\x05\x01\x05\x01", // 𪌛
+ 0x2a31c: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x03\x01\x01\x02\x01", // 𪌜
+ 0x2a31d: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x01\x05\x05\x03\x04", // 𪌝
+ 0x2a31e: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x01\x01\x02\x01\x04", // 𪌞
+ 0x2a31f: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x03\x01\x02\x01\x01", // 𪌟
+ 0x2a320: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x05\x04\x02\x05\x02", // 𪌠
+ 0x2a321: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x04\x04\x05\x03\x05", // 𪌡
+ 0x2a322: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x02\x05\x01\x02\x05\x01", // 𪌢
+ 0x2a323: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x03\x05\x04\x02\x05\x01", // 𪌣
+ 0x2a324: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x03\x02\x05\x01\x05\x01", // 𪌤
+ 0x2a325: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x03\x05\x05\x04\x05\x04", // 𪌥
+ 0x2a326: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x02\x05\x02\x05\x01\x01", // 𪌦
+ 0x2a327: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x01\x02\x01\x02\x05\x01", // 𪌧
+ 0x2a328: "\x02\x05\x02\x05\x01\x03\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04", // 𪌨
+ 0x2a329: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x03\x01\x02\x02\x05\x01", // 𪌩
+ 0x2a32a: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x03\x04\x01\x05\x03\x04", // 𪌪
+ 0x2a32b: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x03\x05\x04\x03\x05\x04", // 𪌫
+ 0x2a32c: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x04\x03\x01\x02\x03\x04", // 𪌬
+ 0x2a32d: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x02\x05\x01\x03\x05\x04\x01", // 𪌭
+ 0x2a32e: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x04\x04\x01\x02\x03\x04\x03", // 𪌮
+ 0x2a32f: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x02\x04\x03\x03\x05\x04\x01", // 𪌯
+ 0x2a330: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x01\x02\x04\x05\x05\x02\x01", // 𪌰
+ 0x2a331: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x03\x01\x02\x03\x04\x02\x02", // 𪌱
+ 0x2a332: "\x03\x02\x01\x01\x05\x01\x01\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04", // 𪌲
+ 0x2a333: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x03\x04\x04\x03\x01\x02\x04", // 𪌳
+ 0x2a334: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x03\x04\x03\x04\x01\x02\x01", // 𪌴
+ 0x2a335: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x01\x02\x04\x01\x03\x04\x04", // 𪌵
+ 0x2a336: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x01\x02\x05\x01\x02\x03\x04", // 𪌶
+ 0x2a337: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x02\x01\x02\x01\x02\x03\x03", // 𪌷
+ 0x2a338: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x02\x05\x01\x03\x01\x01\x02", // 𪌸
+ 0x2a339: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x03\x04\x01\x03\x02\x05\x02", // 𪌹
+ 0x2a33a: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x05\x01\x01\x03\x02\x05\x01", // 𪌺
+ 0x2a33b: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x05\x04\x02\x05\x01\x01\x02", // 𪌻
+ 0x2a33c: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x03\x05\x03\x01\x01\x02\x05\x02", // 𪌼
+ 0x2a33d: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x02\x05\x01\x01\x01\x05\x01\x05", // 𪌽
+ 0x2a33e: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x03\x05\x04\x02\x05\x01\x02\x01", // 𪌾
+ 0x2a33f: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x03\x04\x01\x05\x04\x05\x04\x04", // 𪌿
+ 0x2a340: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x01\x02\x02\x01\x01\x01\x03\x04", // 𪍀
+ 0x2a341: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x02\x05\x03\x01\x02\x03\x04\x01", // 𪍁
+ 0x2a342: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x04\x04\x05\x03\x05\x01\x02\x01", // 𪍂
+ 0x2a343: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x03\x05\x03\x03\x04\x05\x04\x04", // 𪍃
+ 0x2a344: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x05\x05\x01\x02\x04\x01\x03\x04", // 𪍄
+ 0x2a345: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x04\x01\x03\x02\x03\x05\x04\x04", // 𪍅
+ 0x2a346: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x03\x01\x02\x03\x04\x03\x05\x03", // 𪍆
+ 0x2a347: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𪍇
+ 0x2a348: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x02\x01\x02\x05\x01\x01\x01\x02", // 𪍈
+ 0x2a349: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x02\x03\x04\x03\x02\x03\x04\x03", // 𪍉
+ 0x2a34a: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x01\x01\x02\x01\x03\x05\x03\x04", // 𪍊
+ 0x2a34b: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x01\x02\x01\x02\x02\x03\x04\x03", // 𪍋
+ 0x2a34c: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x02\x05\x01\x02\x02\x05\x02\x05\x01", // 𪍌
+ 0x2a34d: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x03\x04\x01\x03\x05\x01\x01\x02\x02", // 𪍍
+ 0x2a34e: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x03\x01\x02\x03\x04\x04\x04\x01\x02", // 𪍎
+ 0x2a34f: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 𪍏
+ 0x2a350: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 𪍐
+ 0x2a351: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x04\x03\x01\x02\x05\x03\x05\x01\x01", // 𪍑
+ 0x2a352: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x01\x02\x02\x05\x01\x03\x05\x01\x01", // 𪍒
+ 0x2a353: "\x05\x04\x05\x02\x03\x03\x01\x03\x04\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04", // 𪍓
+ 0x2a354: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x05\x05\x05\x05\x01\x01\x05\x03\x04", // 𪍔
+ 0x2a355: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𪍕
+ 0x2a356: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x02\x05\x03\x04\x03\x01\x01\x02\x01", // 𪍖
+ 0x2a357: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x03\x01\x02\x03\x04\x04\x03\x03\x04", // 𪍗
+ 0x2a358: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x05\x04\x05\x02\x03\x03\x01\x03\x04", // 𪍘
+ 0x2a359: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x04\x03\x01\x01\x02\x01\x03\x03\x05", // 𪍙
+ 0x2a35a: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x05\x04\x05\x02\x03\x01\x02\x03\x04", // 𪍚
+ 0x2a35b: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x05\x01\x03\x02\x04\x03\x03\x05\x04\x01", // 𪍛
+ 0x2a35c: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x03\x02\x05\x03\x04\x01\x01\x05\x03\x05", // 𪍜
+ 0x2a35d: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x02\x05\x03\x04\x01\x02\x05\x02\x02\x01", // 𪍝
+ 0x2a35e: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x03\x02\x03\x05\x04\x02\x05\x01\x02\x01", // 𪍞
+ 0x2a35f: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x01\x02\x04\x05\x05\x05\x04\x02\x03\x04", // 𪍟
+ 0x2a360: "\x01\x02\x01\x04\x05\x01\x03\x05\x05\x04\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04", // 𪍠
+ 0x2a361: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 𪍡
+ 0x2a362: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x01\x02\x01\x04\x05\x01\x03\x05\x05\x04", // 𪍢
+ 0x2a363: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 𪍣
+ 0x2a364: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x04", // 𪍤
+ 0x2a365: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x01\x02\x01\x04\x05\x03\x05\x03\x05\x05\x04", // 𪍥
+ 0x2a366: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 𪍦
+ 0x2a367: "\x04\x01\x05\x03\x03\x01\x05\x02\x01\x03\x04\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04", // 𪍧
+ 0x2a368: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x05\x05\x05\x02\x05\x01\x01\x01\x02\x03\x04", // 𪍨
+ 0x2a369: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x02\x05\x01\x01\x02\x05\x02\x02\x01\x05\x04", // 𪍩
+ 0x2a36a: "\x01\x02\x03\x04\x03\x04\x03\x04\x02\x05\x01\x02\x01\x01\x02\x01\x02\x01\x01\x02", // 𪍪
+ 0x2a36b: "\x05\x04\x05\x02\x03\x03\x05\x04\x02\x05\x02\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04", // 𪍫
+ 0x2a36c: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x01\x02\x01\x02\x04\x04\x01\x02\x03\x04\x03", // 𪍬
+ 0x2a36d: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x02\x05\x01\x01\x01\x03\x05\x03\x03\x03\x04", // 𪍭
+ 0x2a36e: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04", // 𪍮
+ 0x2a36f: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x02\x05\x01\x02\x01\x05\x05\x04\x02\x03\x04", // 𪍯
+ 0x2a370: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x03\x01\x02\x03\x04\x03\x04\x03\x04\x03\x04", // 𪍰
+ 0x2a371: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04", // 𪍱
+ 0x2a372: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01", // 𪍲
+ 0x2a373: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x05\x02\x01\x03\x01\x02\x01\x03\x05\x04\x01", // 𪍳
+ 0x2a374: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x04\x03\x01\x02\x03\x04\x03\x05\x04\x01\x05\x02", // 𪍴
+ 0x2a375: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 𪍵
+ 0x2a376: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x04\x03\x01\x01\x02\x01\x04\x03\x01\x02\x05\x01", // 𪍶
+ 0x2a377: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x03\x01\x03\x04\x02\x05\x01\x02\x05\x02\x05\x01", // 𪍷
+ 0x2a378: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x02\x01\x05\x03\x01\x05\x01\x03\x05\x03\x03\x03\x04", // 𪍸
+ 0x2a379: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 𪍹
+ 0x2a37a: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x02\x05\x02\x02\x01\x01\x02\x05\x01\x03\x05\x03\x04", // 𪍺
+ 0x2a37b: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04", // 𪍻
+ 0x2a37c: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x04\x01\x04\x03\x04\x05\x02\x05\x02\x02\x05\x01", // 𪍼
+ 0x2a37d: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x02\x03\x04", // 𪍽
+ 0x2a37e: "\x05\x02\x02\x05\x02\x04\x01\x05\x03\x03\x01\x03\x04\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04", // 𪍾
+ 0x2a37f: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x04\x01\x03\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04", // 𪍿
+ 0x2a380: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x03\x01\x02\x01", // 𪎀
+ 0x2a381: "\x04\x01\x04\x03\x01\x03\x05\x04\x01\x01\x05\x01\x05\x01\x01\x01\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04", // 𪎁
+ 0x2a382: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x01\x03\x04\x03\x04\x02\x03\x04\x01\x03\x04\x03\x04\x02\x03\x04", // 𪎂
+ 0x2a383: "\x01\x02\x02\x03\x02\x05\x01\x05\x01\x04\x01\x04\x03\x01\x01\x02\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04", // 𪎃
+ 0x2a384: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x01\x02\x01\x02\x04\x04\x01\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 𪎄
+ 0x2a385: "\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04\x01\x02\x02\x05\x02\x04\x01\x04\x03\x01\x03\x03\x01\x01\x02\x01", // 𪎅
+ 0x2a386: "\x01\x03\x04\x03\x04\x03\x04\x03\x05\x04\x02\x05\x02\x02\x01\x05\x05\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𪎆
+ 0x2a387: "\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x03\x02\x01\x05\x01\x01\x03\x05\x05\x04\x01\x02\x03\x04\x03\x04\x03\x04\x03\x05\x04", // 𪎇
+ 0x2a388: "\x01\x01\x02\x01\x03\x05\x04\x01\x05\x04", // 𪎈
+ 0x2a389: "\x01\x01\x02\x01\x03\x05\x04\x02\x05\x03\x05", // 𪎉
+ 0x2a38a: "\x01\x01\x02\x01\x03\x05\x04\x02\x03\x04\x03", // 𪎊
+ 0x2a38b: "\x01\x01\x02\x01\x03\x05\x04\x02\x01\x02\x05\x01", // 𪎋
+ 0x2a38c: "\x01\x01\x02\x01\x03\x05\x04\x01\x04\x03\x01\x02\x03\x04", // 𪎌
+ 0x2a38d: "\x01\x01\x01\x03\x05\x04\x02\x04", // 𪎍
+ 0x2a38e: "\x01\x01\x01\x03\x04\x01\x03\x02\x05\x02\x05\x01\x01", // 𪎎
+ 0x2a38f: "\x01\x01\x02\x01\x03\x05\x04\x04\x04\x05\x01\x01\x02\x03\x04", // 𪎏
+ 0x2a390: "\x01\x01\x02\x01\x03\x05\x04\x01\x02\x02\x01\x03\x05\x04\x05\x02\x05\x02", // 𪎐
+ 0x2a391: "\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x03\x05", // 𪎑
+ 0x2a392: "\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x03\x05\x04", // 𪎒
+ 0x2a393: "\x03\x03\x02\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05", // 𪎓
+ 0x2a394: "\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x05\x01\x05", // 𪎔
+ 0x2a395: "\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x03\x05\x05\x03", // 𪎕
+ 0x2a396: "\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x04\x03\x03\x04", // 𪎖
+ 0x2a397: "\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x02\x05\x01\x01", // 𪎗
+ 0x2a398: "\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x02\x01\x05\x04", // 𪎘
+ 0x2a399: "\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x01\x01\x03\x02", // 𪎙
+ 0x2a39a: "\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x03\x01\x01\x02", // 𪎚
+ 0x2a39b: "\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x03\x05\x04\x05\x05", // 𪎛
+ 0x2a39c: "\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x02\x05\x01\x01\x05", // 𪎜
+ 0x2a39d: "\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x01\x02\x03\x04\x01", // 𪎝
+ 0x2a39e: "\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x02\x05\x01\x03\x04", // 𪎞
+ 0x2a39f: "\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x02\x05\x01\x02\x01", // 𪎟
+ 0x2a3a0: "\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x03\x05\x04\x03\x05\x04", // 𪎠
+ 0x2a3a1: "\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x03\x01\x01\x02\x03\x04", // 𪎡
+ 0x2a3a2: "\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x01\x02\x05\x03\x05\x01", // 𪎢
+ 0x2a3a3: "\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x01\x05\x04\x03\x02\x05", // 𪎣
+ 0x2a3a4: "\x04\x04\x01\x03\x01\x03\x04\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05", // 𪎤
+ 0x2a3a5: "\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x02\x05\x01\x01\x03\x05\x03\x03", // 𪎥
+ 0x2a3a6: "\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x01\x02\x03\x04\x01\x02\x03\x04", // 𪎦
+ 0x2a3a7: "\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x02\x05\x01\x01\x03\x05\x03\x03", // 𪎧
+ 0x2a3a8: "\x03\x04\x03\x05\x01\x01\x02\x02\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05", // 𪎨
+ 0x2a3a9: "\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x02\x05\x01\x02\x02\x05\x02\x05\x01", // 𪎩
+ 0x2a3aa: "\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03", // 𪎪
+ 0x2a3ab: "\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x03\x01\x01\x01\x02\x01\x01\x01\x03\x04", // 𪎫
+ 0x2a3ac: "\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x01\x05\x01\x05\x02\x05\x01\x01\x01\x03\x04", // 𪎬
+ 0x2a3ad: "\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04", // 𪎭
+ 0x2a3ae: "\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x03\x01\x01\x01\x02\x01\x01\x01\x03\x01\x01\x05", // 𪎮
+ 0x2a3af: "\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𪎯
+ 0x2a3b0: "\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x01\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 𪎰
+ 0x2a3b1: "\x04\x01\x03\x01\x02\x03\x04\x01\x02\x03\x04\x01\x04\x05\x02\x04\x04\x04\x04\x01\x03\x02\x05\x02\x02", // 𪎱
+ 0x2a3b2: "\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x03\x02\x01\x05\x01\x01\x03\x05\x05\x04\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05", // 𪎲
+ 0x2a3b3: "\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04\x05\x04", // 𪎳
+ 0x2a3b4: "\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04\x03\x01\x05", // 𪎴
+ 0x2a3b5: "\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04\x04\x01\x03\x05", // 𪎵
+ 0x2a3b6: "\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04\x01\x05\x02\x05", // 𪎶
+ 0x2a3b7: "\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04\x03\x01\x01\x05", // 𪎷
+ 0x2a3b8: "\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04\x04\x05\x03\x05", // 𪎸
+ 0x2a3b9: "\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04\x01\x01\x03\x05", // 𪎹
+ 0x2a3ba: "\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04\x03\x03\x01\x02\x04", // 𪎺
+ 0x2a3bb: "\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04\x05\x02\x05\x03\x04\x01", // 𪎻
+ 0x2a3bc: "\x02\x05\x01\x02\x05\x01\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 𪎼
+ 0x2a3bd: "\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04\x01\x05\x04\x03\x05", // 𪎽
+ 0x2a3be: "\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04\x01\x01\x02\x02\x05\x01", // 𪎾
+ 0x2a3bf: "\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04\x01\x03\x02\x05\x02\x02", // 𪎿
+ 0x2a3c0: "\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04\x01\x05\x04\x01\x02\x01", // 𪏀
+ 0x2a3c1: "\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04\x04\x01\x03\x04\x03\x04", // 𪏁
+ 0x2a3c2: "\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04\x01\x01\x02\x04\x03\x03\x04", // 𪏂
+ 0x2a3c3: "\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04\x01\x01\x02\x04\x03\x03\x04", // 𪏃
+ 0x2a3c4: "\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 𪏄
+ 0x2a3c5: "\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04\x01\x05\x05\x05\x01\x02\x01", // 𪏅
+ 0x2a3c6: "\x04\x01\x02\x05\x01\x05\x02\x01\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04", // 𪏆
+ 0x2a3c7: "\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04\x01\x02\x05\x01\x01\x05\x03\x04", // 𪏇
+ 0x2a3c8: "\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04\x01\x02\x02\x01\x02\x05\x01\x01", // 𪏈
+ 0x2a3c9: "\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04\x04\x04\x05\x01\x02\x01\x03\x04", // 𪏉
+ 0x2a3ca: "\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04\x01\x05\x03\x04\x01\x05\x03\x04", // 𪏊
+ 0x2a3cb: "\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04\x04\x03\x03\x04\x04\x03\x03\x04", // 𪏋
+ 0x2a3cc: "\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𪏌
+ 0x2a3cd: "\x03\x05\x01\x01\x03\x04\x03\x05\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04", // 𪏍
+ 0x2a3ce: "\x03\x05\x01\x02\x01\x02\x05\x01\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04", // 𪏎
+ 0x2a3cf: "\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04\x02\x01\x05\x03\x01\x05\x01\x02", // 𪏏
+ 0x2a3d0: "\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04\x02\x01\x05\x03\x01\x05\x03\x05", // 𪏐
+ 0x2a3d1: "\x03\x02\x05\x01\x01\x02\x05\x02\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04", // 𪏑
+ 0x2a3d2: "\x03\x02\x05\x01\x01\x03\x01\x02\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 𪏒
+ 0x2a3d3: "\x03\x02\x05\x01\x01\x01\x01\x02\x01\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04", // 𪏓
+ 0x2a3d4: "\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𪏔
+ 0x2a3d5: "\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04\x04\x05\x01\x02\x05\x01\x01\x01\x02", // 𪏕
+ 0x2a3d6: "\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04\x05\x01\x05\x01\x03\x02\x05\x02\x02", // 𪏖
+ 0x2a3d7: "\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04\x04\x05\x01\x03\x02\x05\x01\x02\x02", // 𪏗
+ 0x2a3d8: "\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𪏘
+ 0x2a3d9: "\x01\x02\x01\x04\x05\x01\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04\x03\x05\x05\x04", // 𪏙
+ 0x2a3da: "\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04", // 𪏚
+ 0x2a3db: "\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04\x05\x04\x03\x05\x04\x01\x01\x05\x01\x05", // 𪏛
+ 0x2a3dc: "\x04\x01\x01\x02\x01\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04\x04\x01\x01\x02\x01", // 𪏜
+ 0x2a3dd: "\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04\x03\x02\x05\x01\x01\x05\x04\x04\x04\x04", // 𪏝
+ 0x2a3de: "\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04\x01\x02\x05\x01\x01\x05\x03\x03\x03\x04", // 𪏞
+ 0x2a3df: "\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 𪏟
+ 0x2a3e0: "\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04\x03\x05\x03\x05\x01\x01\x02\x02\x05\x03\x04", // 𪏠
+ 0x2a3e1: "\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04\x04\x01\x01\x01\x02\x05\x01\x04\x04\x01\x02", // 𪏡
+ 0x2a3e2: "\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04\x04\x01\x03\x05\x01\x01\x02\x04\x01\x03\x04", // 𪏢
+ 0x2a3e3: "\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04\x01\x05\x01\x05\x01\x03\x02\x05\x02\x02", // 𪏣
+ 0x2a3e4: "\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04\x01\x02\x05\x01\x01\x05\x03\x04\x04\x05\x04\x04", // 𪏤
+ 0x2a3e5: "\x01\x02\x01\x02\x01\x01\x02\x01\x02\x01\x01\x02\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04", // 𪏥
+ 0x2a3e6: "\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04", // 𪏦
+ 0x2a3e7: "\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04\x05\x04\x01\x05\x04\x01\x03\x04\x02\x04\x01\x03\x04", // 𪏧
+ 0x2a3e8: "\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04\x02\x05\x01\x02\x02\x01\x01\x02\x05\x01\x04\x03\x01", // 𪏨
+ 0x2a3e9: "\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04\x02\x05\x02\x01\x03\x02\x05\x02\x02\x04\x03\x03\x04", // 𪏩
+ 0x2a3ea: "\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04\x04\x01\x03\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04", // 𪏪
+ 0x2a3eb: "\x01\x02\x02\x01\x02\x05\x01\x02\x01\x03\x04\x05\x02\x02\x05\x02\x01\x02\x05\x02\x02\x01\x01\x01\x02\x03\x04", // 𪏫
+ 0x2a3ec: "\x01\x02\x05\x01\x01\x03\x04\x03\x02\x01\x01\x03\x04\x03\x04\x05\x01\x01\x04\x05\x01\x02\x02\x01\x01\x02\x05\x01\x02\x01\x03\x04", // 𪏬
+ 0x2a3ed: "\x03\x01\x02\x03\x04\x02\x02\x03\x04\x02\x04\x01\x03\x04", // 𪏭
+ 0x2a3ee: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x05\x03\x01", // 𪏮
+ 0x2a3ef: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x03\x05\x03", // 𪏯
+ 0x2a3f0: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x02\x05\x01\x01", // 𪏰
+ 0x2a3f1: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x03\x05\x01\x05", // 𪏱
+ 0x2a3f2: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x05\x02\x01\x01", // 𪏲
+ 0x2a3f3: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x01\x05\x05\x01", // 𪏳
+ 0x2a3f4: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x03\x03\x01\x02", // 𪏴
+ 0x2a3f5: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x03\x05\x03\x03", // 𪏵
+ 0x2a3f6: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x03\x05\x05\x01\x05", // 𪏶
+ 0x2a3f7: "\x05\x03\x01\x05\x04\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04", // 𪏷
+ 0x2a3f8: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x05\x01\x03\x01\x05", // 𪏸
+ 0x2a3f9: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x03\x04\x03\x01\x02", // 𪏹
+ 0x2a3fa: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x04\x05\x04\x03\x04", // 𪏺
+ 0x2a3fb: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x01\x02\x02\x05\x01", // 𪏻
+ 0x2a3fc: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x05\x03\x05\x03\x01", // 𪏼
+ 0x2a3fd: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x01\x02\x02\x01\x01", // 𪏽
+ 0x2a3fe: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x05\x03\x05\x03\x01", // 𪏾
+ 0x2a3ff: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x03\x01\x01\x02\x03\x04", // 𪏿
+ 0x2a400: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x03\x05\x04\x03\x05\x04", // 𪐀
+ 0x2a401: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x05\x03\x04\x04\x05\x04\x04", // 𪐁
+ 0x2a402: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x04\x03\x01\x01\x03\x04\x05\x05", // 𪐂
+ 0x2a403: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x01\x01\x01\x03\x04\x01\x01\x02", // 𪐃
+ 0x2a404: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x03\x02\x05\x01\x01\x03\x01\x02", // 𪐄
+ 0x2a405: "\x03\x01\x02\x03\x04\x03\x05\x03\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04", // 𪐅
+ 0x2a406: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x04\x03\x02\x05\x02\x03\x04", // 𪐆
+ 0x2a407: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x02\x01\x02\x05\x01\x04\x05\x04\x04", // 𪐇
+ 0x2a408: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x03\x01\x02\x05\x01\x01\x02\x01\x01", // 𪐈
+ 0x2a409: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x01\x02\x02\x05\x01\x03\x05\x04\x01", // 𪐉
+ 0x2a40a: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x01\x03\x02\x05\x01\x04\x05\x04\x04", // 𪐊
+ 0x2a40b: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 𪐋
+ 0x2a40c: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x01\x01\x02\x01\x02\x01\x03\x02\x05\x01\x05", // 𪐌
+ 0x2a40d: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x01\x02\x05\x01\x01\x01\x02\x04\x05\x04", // 𪐍
+ 0x2a40e: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05", // 𪐎
+ 0x2a40f: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x04\x01\x04\x03\x02\x05\x01\x02\x02\x05\x01", // 𪐏
+ 0x2a410: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04", // 𪐐
+ 0x2a411: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x02\x05\x02\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 𪐑
+ 0x2a412: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x02\x05\x01\x01\x03\x01\x02\x05\x01\x01\x03\x05\x04", // 𪐒
+ 0x2a413: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x01\x02\x05\x01\x02\x03\x04\x01\x02\x05\x01\x02\x03\x04", // 𪐓
+ 0x2a414: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x02\x05\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04\x04\x05\x04", // 𪐔
+ 0x2a415: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x01\x02\x02\x01\x01", // 𪐕
+ 0x2a416: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x04\x01\x04\x03\x01\x03\x05\x04\x01\x01\x05\x01\x05\x01\x01\x01", // 𪐖
+ 0x2a417: "\x02\x05\x02\x04\x03\x01\x04\x03\x03\x04\x04\x03\x03\x04", // 𪐗
+ 0x2a418: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x05", // 𪐘
+ 0x2a419: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x02\x04", // 𪐙
+ 0x2a41a: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x05", // 𪐚
+ 0x2a41b: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x05\x03", // 𪐛
+ 0x2a41c: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x01\x05", // 𪐜
+ 0x2a41d: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x03\x04", // 𪐝
+ 0x2a41e: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x01\x05", // 𪐞
+ 0x2a41f: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x05\x04", // 𪐟
+ 0x2a420: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x01\x05", // 𪐠
+ 0x2a421: "\x01\x03\x04\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𪐡
+ 0x2a422: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x01", // 𪐢
+ 0x2a423: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x05\x02\x01", // 𪐣
+ 0x2a424: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x03\x05\x04", // 𪐤
+ 0x2a425: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x03\x04\x04", // 𪐥
+ 0x2a426: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x04\x01\x03\x05", // 𪐦
+ 0x2a427: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x05\x04\x05\x02", // 𪐧
+ 0x2a428: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x04\x05\x03\x05", // 𪐨
+ 0x2a429: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x04\x03\x03\x04", // 𪐩
+ 0x2a42a: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x02\x05\x01\x01", // 𪐪
+ 0x2a42b: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x01\x03\x04", // 𪐫
+ 0x2a42c: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x01\x03\x05", // 𪐬
+ 0x2a42d: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x04\x01\x05", // 𪐭
+ 0x2a42e: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x05\x05\x04", // 𪐮
+ 0x2a42f: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x05\x05\x04", // 𪐯
+ 0x2a430: "\x04\x01\x03\x04\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𪐰
+ 0x2a431: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x04\x03\x02", // 𪐱
+ 0x2a432: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x04\x03\x03\x03", // 𪐲
+ 0x2a433: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x04\x02\x03\x04", // 𪐳
+ 0x2a434: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x04\x01\x01\x02\x01", // 𪐴
+ 0x2a435: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x02\x05\x01\x01\x01", // 𪐵
+ 0x2a436: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x05\x05\x03\x04", // 𪐶
+ 0x2a437: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x04\x01\x05\x05\x04", // 𪐷
+ 0x2a438: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x04\x04\x05\x04", // 𪐸
+ 0x2a439: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x02\x05\x02\x05\x03", // 𪐹
+ 0x2a43a: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x01\x02\x03\x04", // 𪐺
+ 0x2a43b: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x02\x01\x02\x04", // 𪐻
+ 0x2a43c: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x05\x05\x01\x05", // 𪐼
+ 0x2a43d: "\x05\x02\x02\x05\x02\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𪐽
+ 0x2a43e: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x02\x01\x02\x01", // 𪐾
+ 0x2a43f: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x05\x04\x01\x05\x02", // 𪐿
+ 0x2a440: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x03\x04\x03\x03\x04", // 𪑀
+ 0x2a441: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x02\x05\x01\x01\x03", // 𪑁
+ 0x2a442: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x04\x01\x02\x03\x05\x04", // 𪑂
+ 0x2a443: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x02\x05\x02\x02\x01", // 𪑃
+ 0x2a444: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x01\x03\x05\x03\x04", // 𪑄
+ 0x2a445: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x04\x01\x01\x05\x04", // 𪑅
+ 0x2a446: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x03\x04\x05\x03\x04", // 𪑆
+ 0x2a447: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x04\x01\x02\x05\x01", // 𪑇
+ 0x2a448: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x02\x05\x01\x01\x01\x03\x05", // 𪑈
+ 0x2a449: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x04\x03\x03\x04\x05\x04", // 𪑉
+ 0x2a44a: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x02\x04\x03\x03\x05\x04\x01", // 𪑊
+ 0x2a44b: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x04\x04\x03\x01\x02\x04", // 𪑋
+ 0x2a44c: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x04\x03\x04\x02\x05\x01", // 𪑌
+ 0x2a44d: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x05\x01\x03\x03\x05\x03\x05", // 𪑍
+ 0x2a44e: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x04\x05\x02\x05\x01\x01\x01", // 𪑎
+ 0x2a44f: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x04\x01\x01\x02\x03\x04", // 𪑏
+ 0x2a450: "\x05\x01\x03\x03\x01\x01\x05\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𪑐
+ 0x2a451: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x02\x05\x01\x03\x04\x04\x05", // 𪑑
+ 0x2a452: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x04\x01\x02\x05\x01\x05\x02\x01", // 𪑒
+ 0x2a453: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x04\x03\x03\x04\x04\x03\x03\x04", // 𪑓
+ 0x2a454: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x05\x05\x01\x02\x04\x01\x03\x04", // 𪑔
+ 0x2a455: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x05\x01\x05\x02\x05\x01\x01", // 𪑕
+ 0x2a456: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x03\x04\x01\x02\x01\x03\x02", // 𪑖
+ 0x2a457: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x04\x01\x04\x03\x01\x05\x03\x01", // 𪑗
+ 0x2a458: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x04\x01\x05\x04\x01\x02\x03\x04", // 𪑘
+ 0x2a459: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x04\x01\x01\x02\x04\x03\x01", // 𪑙
+ 0x2a45a: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x03\x04\x03\x04\x02\x03\x04", // 𪑚
+ 0x2a45b: "\x02\x05\x02\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x01\x03\x04", // 𪑛
+ 0x2a45c: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x01\x01\x03\x04\x02\x05\x01", // 𪑜
+ 0x2a45d: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x05\x01\x01\x05\x03\x04", // 𪑝
+ 0x2a45e: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x02\x01\x01\x02\x03\x04", // 𪑞
+ 0x2a45f: "\x01\x02\x05\x02\x03\x04\x02\x02\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𪑟
+ 0x2a460: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x05\x01\x01\x02\x04\x01\x03\x04", // 𪑠
+ 0x2a461: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x04\x01\x05\x04\x05\x04\x04", // 𪑡
+ 0x2a462: "\x01\x05\x02\x03\x03\x01\x03\x04\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𪑢
+ 0x2a463: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x05\x01\x03\x01\x03\x05\x01\x03\x05", // 𪑣
+ 0x2a464: "\x01\x01\x01\x02\x03\x04\x05\x03\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𪑤
+ 0x2a465: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x03\x04\x04\x02\x05\x01\x01\x01", // 𪑥
+ 0x2a466: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 𪑦
+ 0x2a467: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x02\x01\x05\x01\x02\x03\x04", // 𪑧
+ 0x2a468: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x03\x04\x01\x01\x02\x03\x04", // 𪑨
+ 0x2a469: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x05\x01\x03\x01\x02\x02\x01\x03\x04", // 𪑩
+ 0x2a46a: "\x04\x05\x01\x01\x03\x05\x01\x02\x04\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𪑪
+ 0x2a46b: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 𪑫
+ 0x2a46c: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x04\x01\x02\x05\x01\x04\x05\x01\x02", // 𪑬
+ 0x2a46d: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x03\x04\x01\x02\x01\x01\x02\x01", // 𪑭
+ 0x2a46e: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x02\x05\x04\x03\x01\x01\x02", // 𪑮
+ 0x2a46f: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x03\x02\x05\x01\x01\x01\x01\x02", // 𪑯
+ 0x2a470: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x05\x01\x03\x04\x03\x01\x01\x03\x02", // 𪑰
+ 0x2a471: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x05\x01\x03\x01\x05\x04\x01\x02\x01", // 𪑱
+ 0x2a472: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x04\x05\x03\x05\x02\x05\x01\x03\x05\x04", // 𪑲
+ 0x2a473: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𪑳
+ 0x2a474: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x02\x05\x01\x02\x05\x02\x01\x04", // 𪑴
+ 0x2a475: "\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𪑵
+ 0x2a476: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x05\x04\x05\x02\x03\x01\x02\x03\x04", // 𪑶
+ 0x2a477: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x02\x01\x05\x03\x01\x05\x02\x05\x02", // 𪑷
+ 0x2a478: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𪑸
+ 0x2a479: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x02\x05\x01\x02\x01\x03\x04\x03\x02", // 𪑹
+ 0x2a47a: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x02\x01\x05\x01\x01\x01\x02\x01", // 𪑺
+ 0x2a47b: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x02\x05\x01\x03\x01\x01\x03\x04", // 𪑻
+ 0x2a47c: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x05\x01\x01\x01\x01\x02\x05\x04", // 𪑼
+ 0x2a47d: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x02\x01\x02\x01\x03\x05\x01\x02\x03\x04", // 𪑽
+ 0x2a47e: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x03\x01\x01\x05\x03\x04\x01\x02\x04", // 𪑾
+ 0x2a47f: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x01\x02\x05\x05\x04\x05\x05\x04", // 𪑿
+ 0x2a480: "\x03\x03\x05\x04\x01\x04\x03\x05\x05\x04\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𪒀
+ 0x2a481: "\x01\x03\x04\x03\x04\x02\x03\x04\x01\x03\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𪒁
+ 0x2a482: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x03\x04\x04\x03\x02\x05\x01\x01\x01", // 𪒂
+ 0x2a483: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x05\x01\x01\x05\x03\x03\x03\x04", // 𪒃
+ 0x2a484: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x04\x05\x02\x05\x01\x01\x04\x01\x03\x04", // 𪒄
+ 0x2a485: "\x01\x03\x04\x03\x04\x02\x03\x04\x05\x03\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𪒅
+ 0x2a486: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x01\x01\x03\x04\x03\x01\x02\x03\x04", // 𪒆
+ 0x2a487: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x03\x04\x01\x01\x02\x05\x01\x01\x01", // 𪒇
+ 0x2a488: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x03\x04\x01\x02\x05\x01\x01\x03\x02", // 𪒈
+ 0x2a489: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x01\x01\x05\x04\x03\x01\x02\x03\x04", // 𪒉
+ 0x2a48a: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x02\x04\x01\x01\x01\x02\x01\x05\x04", // 𪒊
+ 0x2a48b: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x03\x05\x04\x01\x04\x03\x05\x05\x04", // 𪒋
+ 0x2a48c: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x04\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 𪒌
+ 0x2a48d: "\x04\x05\x01\x02\x03\x04\x01\x02\x03\x04\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𪒍
+ 0x2a48e: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x02\x05\x02\x02\x01\x02\x05\x01\x01\x05", // 𪒎
+ 0x2a48f: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 𪒏
+ 0x2a490: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x04\x04\x03\x02\x05\x01\x01\x01\x03\x05", // 𪒐
+ 0x2a491: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𪒑
+ 0x2a492: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x04\x01\x03\x05\x01\x01\x02\x05\x01\x01\x02", // 𪒒
+ 0x2a493: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x04\x01\x05\x05\x04\x03\x01\x03\x05\x03\x04", // 𪒓
+ 0x2a494: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 𪒔
+ 0x2a495: "\x02\x05\x01\x02\x01\x01\x02\x02\x01\x03\x04\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𪒕
+ 0x2a496: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x03\x04\x04\x03\x01\x02\x01\x01\x02\x01", // 𪒖
+ 0x2a497: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x04\x04\x01\x04\x05\x03\x04\x01\x02\x03\x04", // 𪒗
+ 0x2a498: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 𪒘
+ 0x2a499: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x02\x05\x01\x01\x01\x02\x02\x01\x01\x01\x05\x04", // 𪒙
+ 0x2a49a: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𪒚
+ 0x2a49b: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x05\x02\x04\x03\x01\x03\x05\x03\x03\x03\x04", // 𪒛
+ 0x2a49c: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x05\x01\x01\x02\x01\x04\x04\x05\x04\x04", // 𪒜
+ 0x2a49d: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x04\x05\x02\x04\x01\x03\x04\x01\x01\x05\x04", // 𪒝
+ 0x2a49e: "\x02\x05\x01\x01\x03\x05\x04\x01\x01\x03\x04\x04\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𪒞
+ 0x2a49f: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𪒟
+ 0x2a4a0: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x01\x02\x02\x01\x01\x01\x03\x01\x03\x04", // 𪒠
+ 0x2a4a1: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x05\x01\x01\x02\x04\x01\x03\x04\x04\x05\x04", // 𪒡
+ 0x2a4a2: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 𪒢
+ 0x2a4a3: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x02\x05\x03\x04\x03\x05\x02\x05\x01\x03\x05", // 𪒣
+ 0x2a4a4: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x05\x02\x02\x01\x02\x05\x01\x01\x01\x02", // 𪒤
+ 0x2a4a5: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x01\x02\x01\x03\x04\x01\x05\x05\x03\x04", // 𪒥
+ 0x2a4a6: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x01\x01\x02\x01\x02\x05\x01\x01\x01\x03\x04", // 𪒦
+ 0x2a4a7: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x05\x01\x03\x03\x05\x01\x02\x01\x02\x05\x01", // 𪒧
+ 0x2a4a8: "\x01\x04\x03\x01\x03\x04\x03\x05\x04\x03\x05\x04\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𪒨
+ 0x2a4a9: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x02\x01\x02\x01\x01\x03\x01\x02\x03\x03\x05\x03\x04", // 𪒩
+ 0x2a4aa: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x01\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𪒪
+ 0x2a4ab: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x04\x01\x02\x05\x01\x02\x05\x01\x03\x04\x03\x04", // 𪒫
+ 0x2a4ac: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x02\x05\x01\x02\x02\x01\x01\x03\x01\x01\x05\x03\x04", // 𪒬
+ 0x2a4ad: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x04\x04\x01\x03\x04\x05\x02\x02\x05\x05\x04", // 𪒭
+ 0x2a4ae: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x05\x01\x03\x01\x02\x02\x01\x03\x04\x03\x05\x05\x04", // 𪒮
+ 0x2a4af: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x01\x02\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 𪒯
+ 0x2a4b0: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 𪒰
+ 0x2a4b1: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x04\x04\x03\x04\x05\x04\x05\x04\x04\x03\x05\x04", // 𪒱
+ 0x2a4b2: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x02\x03\x04", // 𪒲
+ 0x2a4b3: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x04\x04\x01\x01\x03\x03\x02\x05\x01\x01\x02\x03\x04", // 𪒳
+ 0x2a4b4: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x01\x02\x05\x01\x04\x05\x01\x05\x04\x01\x02\x01", // 𪒴
+ 0x2a4b5: "\x03\x02\x01\x01\x02\x05\x01\x02\x05\x01\x05\x01\x01\x04\x05\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𪒵
+ 0x2a4b6: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x01\x01\x02\x04", // 𪒶
+ 0x2a4b7: "\x03\x01\x02\x01\x04\x01\x03\x04\x01\x01\x02\x02\x01\x01\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𪒷
+ 0x2a4b8: "\x02\x05\x02\x04\x03\x01\x04\x03\x03\x04\x04\x03\x03\x04\x02\x02\x04\x03\x01\x04\x03\x01\x02\x02\x05\x01\x05\x04", // 𪒸
+ 0x2a4b9: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x01\x04\x03\x01\x04\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 𪒹
+ 0x2a4ba: "\x03\x01\x02\x03\x04\x03\x04\x02\x04\x01\x03\x04\x03\x05\x03\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𪒺
+ 0x2a4bb: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x03\x04\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04", // 𪒻
+ 0x2a4bc: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x02\x03\x05\x04\x04\x05\x04\x01\x01\x02\x03\x04", // 𪒼
+ 0x2a4bd: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01\x01\x03\x02\x05\x01", // 𪒽
+ 0x2a4be: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x02\x05\x01\x01\x02\x05\x01\x01\x02\x05\x01\x01\x01\x03\x04", // 𪒾
+ 0x2a4bf: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x04\x03\x01\x01\x03\x04\x01\x02\x01\x01\x02\x05\x04\x04\x04\x04", // 𪒿
+ 0x2a4c0: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 𪓀
+ 0x2a4c1: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x02\x02\x04\x03\x01\x04\x03\x01\x01\x02\x02\x05\x01\x01\x02\x04", // 𪓁
+ 0x2a4c2: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x02\x05\x01\x01\x01\x04\x05\x02\x04\x04\x04\x04\x01\x01\x05\x04", // 𪓂
+ 0x2a4c3: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x01\x03\x05\x03\x04", // 𪓃
+ 0x2a4c4: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x03\x05\x02\x05\x01\x01\x05\x03\x05\x03\x05\x02\x05\x01\x03\x05\x04", // 𪓄
+ 0x2a4c5: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x02\x01\x03\x05\x01\x03\x01\x02\x05\x01\x02\x05\x05\x03\x04", // 𪓅
+ 0x2a4c6: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x01\x03\x04", // 𪓆
+ 0x2a4c7: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𪓇
+ 0x2a4c8: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x02\x03\x02\x05\x01\x05\x01\x04\x01\x04\x03\x01\x01\x02\x05\x02\x01", // 𪓈
+ 0x2a4c9: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x03\x04\x03\x04\x03\x04\x01\x02\x03\x04\x02\x05\x02\x02\x01\x05\x01\x01\x05\x04\x01\x02\x04", // 𪓉
+ 0x2a4ca: "\x02\x05\x04\x03\x01\x02\x01\x01\x04\x04\x04\x04\x01\x02\x03\x04\x03\x01\x01\x02\x05\x02\x01\x02\x03\x04\x04\x05\x03\x04\x04\x04\x04\x04\x05\x02\x01\x05\x03\x03\x03", // 𪓊
+ 0x2a4cb: "\x02\x02\x04\x03\x01\x04\x03\x02\x05\x02\x03\x04\x04\x03\x01\x02\x03\x04", // 𪓋
+ 0x2a4cc: "\x02\x02\x04\x03\x01\x04\x03\x02\x05\x02\x03\x04\x04\x01\x03\x04\x03\x04\x01\x02", // 𪓌
+ 0x2a4cd: "\x05\x01\x05\x01\x05\x02\x01\x05\x04\x02\x02\x04\x03\x01\x04\x03\x02\x05\x02\x03\x04", // 𪓍
+ 0x2a4ce: "\x02\x02\x04\x03\x01\x04\x03\x02\x05\x02\x03\x04\x04\x03\x05\x01\x03\x02\x05\x01\x02\x02", // 𪓎
+ 0x2a4cf: "\x05\x01\x05\x01\x05\x01\x02\x05\x04\x02\x02\x04\x03\x01\x03\x04\x02\x05\x02\x03\x04", // 𪓏
+ 0x2a4d0: "\x02\x02\x04\x03\x01\x04\x03\x02\x05\x02\x03\x04\x02\x01\x05\x03\x01\x05\x02\x05\x01\x01\x01", // 𪓐
+ 0x2a4d1: "\x03\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𪓑
+ 0x2a4d2: "\x03\x05\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𪓒
+ 0x2a4d3: "\x05\x02\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𪓓
+ 0x2a4d4: "\x02\x01\x02\x01\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𪓔
+ 0x2a4d5: "\x02\x05\x01\x05\x05\x04\x03\x02\x01\x01\x05\x04\x02\x05\x01\x01", // 𪓕
+ 0x2a4d6: "\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𪓖
+ 0x2a4d7: "\x01\x01\x03\x04\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𪓗
+ 0x2a4d8: "\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𪓘
+ 0x2a4d9: "\x02\x05\x03\x04\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𪓙
+ 0x2a4da: "\x02\x05\x02\x01\x01\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𪓚
+ 0x2a4db: "\x02\x05\x01\x03\x04\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𪓛
+ 0x2a4dc: "\x05\x03\x02\x05\x04\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𪓜
+ 0x2a4dd: "\x03\x02\x05\x01\x02\x05\x04\x05\x01\x01\x01\x05\x01\x03\x01\x05\x01", // 𪓝
+ 0x2a4de: "\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01\x03\x05\x02\x05\x01", // 𪓞
+ 0x2a4df: "\x03\x05\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𪓟
+ 0x2a4e0: "\x03\x05\x05\x01\x05\x02\x05\x01\x02\x05\x01\x01\x01\x05\x03\x05\x01", // 𪓠
+ 0x2a4e1: "\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𪓡
+ 0x2a4e2: "\x03\x02\x01\x05\x01\x01\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𪓢
+ 0x2a4e3: "\x01\x01\x03\x05\x03\x05\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𪓣
+ 0x2a4e4: "\x01\x02\x01\x01\x02\x01\x04\x05\x05\x02\x05\x01\x01\x02\x05\x01\x01", // 𪓤
+ 0x2a4e5: "\x05\x01\x01\x05\x01\x01\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𪓥
+ 0x2a4e6: "\x05\x04\x01\x05\x04\x01\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𪓦
+ 0x2a4e7: "\x01\x03\x01\x01\x05\x03\x04\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𪓧
+ 0x2a4e8: "\x03\x02\x05\x01\x01\x01\x05\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𪓨
+ 0x2a4e9: "\x05\x01\x03\x05\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𪓩
+ 0x2a4ea: "\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01\x02\x05\x01\x01\x01\x02\x01", // 𪓪
+ 0x2a4eb: "\x01\x02\x03\x04\x03\x03\x03\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𪓫
+ 0x2a4ec: "\x03\x02\x01\x05\x01\x01\x03\x05\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𪓬
+ 0x2a4ed: "\x05\x04\x05\x04\x05\x04\x05\x04\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𪓭
+ 0x2a4ee: "\x02\x05\x01\x01\x03\x05\x03\x04\x05\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𪓮
+ 0x2a4ef: "\x05\x01\x05\x01\x02\x02\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𪓯
+ 0x2a4f0: "\x04\x03\x01\x02\x05\x03\x05\x01\x01\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𪓰
+ 0x2a4f1: "\x01\x03\x02\x05\x02\x02\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𪓱
+ 0x2a4f2: "\x02\x05\x01\x01\x02\x05\x02\x02\x01\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𪓲
+ 0x2a4f3: "\x03\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𪓳
+ 0x2a4f4: "\x01\x02\x01\x05\x03\x03\x01\x03\x04\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𪓴
+ 0x2a4f5: "\x04\x03\x01\x02\x05\x03\x05\x01\x01\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𪓵
+ 0x2a4f6: "\x05\x02\x02\x05\x02\x03\x01\x03\x04\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𪓶
+ 0x2a4f7: "\x03\x04\x04\x03\x05\x05\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𪓷
+ 0x2a4f8: "\x03\x05\x04\x05\x03\x02\x05\x01\x02\x01\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𪓸
+ 0x2a4f9: "\x04\x01\x03\x01\x02\x03\x05\x01\x02\x03\x05\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𪓹
+ 0x2a4fa: "\x03\x05\x01\x01\x04\x03\x01\x01\x03\x04\x05\x03\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𪓺
+ 0x2a4fb: "\x03\x05\x02\x05\x02\x02\x01\x02\x05\x01\x02\x01\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𪓻
+ 0x2a4fc: "\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𪓼
+ 0x2a4fd: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𪓽
+ 0x2a4fe: "\x05\x02\x02\x05\x02\x04\x01\x05\x03\x03\x01\x03\x04\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𪓾
+ 0x2a4ff: "\x01\x03\x04\x02\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𪓿
+ 0x2a500: "\x04\x03\x02\x05\x02\x03\x03\x04\x04\x03\x01\x03\x04\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𪔀
+ 0x2a501: "\x03\x01\x02\x03\x04\x05\x01\x01\x05\x01\x01\x04\x04\x04\x04\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01", // 𪔁
+ 0x2a502: "\x02\x05\x01\x01\x01\x05\x01\x03\x02\x01\x05", // 𪔂
+ 0x2a503: "\x04\x05\x02\x05\x01\x01\x01\x05\x01\x03\x02\x01\x02\x05", // 𪔃
+ 0x2a504: "\x01\x02\x01\x02\x05\x01\x01\x01\x05\x01\x03\x02\x01\x02\x05", // 𪔄
+ 0x2a505: "\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x03\x02\x01\x02\x05", // 𪔅
+ 0x2a506: "\x02\x05\x01\x01\x01\x05\x01\x03\x02\x01\x02\x05\x01\x01\x02", // 𪔆
+ 0x2a507: "\x01\x02\x03\x04\x02\x05\x01\x01\x01\x05\x01\x03\x02\x01\x02\x05", // 𪔇
+ 0x2a508: "\x02\x05\x01\x02\x05\x01\x01\x01\x05\x01\x03\x02\x01\x02\x05\x05\x03\x01", // 𪔈
+ 0x2a509: "\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x02\x05\x01\x01\x01\x05\x01\x03\x02\x01\x02\x05", // 𪔉
+ 0x2a50a: "\x02\x05\x01\x01\x01\x05\x01\x03\x02\x01\x02\x05\x01\x01\x01\x02\x01\x01\x01\x02\x05\x01\x01\x04\x05\x04\x04", // 𪔊
+ 0x2a50b: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x01\x02\x01", // 𪔋
+ 0x2a50c: "\x01\x02\x01\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04", // 𪔌
+ 0x2a50d: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x02\x01\x05\x04\x03\x01\x01\x02", // 𪔍
+ 0x2a50e: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x01\x01\x05\x04", // 𪔎
+ 0x2a50f: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x01\x01\x03\x02", // 𪔏
+ 0x2a510: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x01\x02\x02\x05\x01", // 𪔐
+ 0x2a511: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x01\x03\x02\x05\x01", // 𪔑
+ 0x2a512: "\x02\x05\x02\x02\x01\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04", // 𪔒
+ 0x2a513: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x05\x03\x02\x05\x01", // 𪔓
+ 0x2a514: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x03\x05\x04\x01\x05\x02", // 𪔔
+ 0x2a515: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x03\x01\x01\x02\x05\x02", // 𪔕
+ 0x2a516: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x02\x05\x01\x02\x01\x04", // 𪔖
+ 0x2a517: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x02\x05\x01\x03\x04\x01", // 𪔗
+ 0x2a518: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x02\x05\x01\x03\x01\x05", // 𪔘
+ 0x2a519: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x04\x03\x01\x01\x01\x02", // 𪔙
+ 0x2a51a: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x02\x05\x01\x02\x05\x01", // 𪔚
+ 0x2a51b: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x03\x04\x01\x05\x03\x04", // 𪔛
+ 0x2a51c: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x05\x04\x02\x05\x01\x01\x02", // 𪔜
+ 0x2a51d: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x03\x05\x03\x05\x01\x01\x02", // 𪔝
+ 0x2a51e: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x03\x05\x04\x01\x01\x01\x02", // 𪔞
+ 0x2a51f: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x01\x03\x05\x03\x03\x03\x04", // 𪔟
+ 0x2a520: "\x01\x01\x02\x01\x01\x03\x02\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04", // 𪔠
+ 0x2a521: "\x02\x05\x01\x01\x01\x03\x04\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04", // 𪔡
+ 0x2a522: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x03\x05\x04\x03\x01\x01\x02\x01", // 𪔢
+ 0x2a523: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x04\x04\x05\x03\x04\x01\x02\x01", // 𪔣
+ 0x2a524: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x02\x05\x01\x05\x02\x05\x01\x01", // 𪔤
+ 0x2a525: "\x03\x01\x02\x01\x05\x05\x02\x01\x02\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04", // 𪔥
+ 0x2a526: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x04\x04\x01\x02\x05\x01\x02\x05\x01", // 𪔦
+ 0x2a527: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 𪔧
+ 0x2a528: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x01\x02\x02\x01\x02\x05\x01\x01\x02", // 𪔨
+ 0x2a529: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x01\x03\x01\x02\x05\x01\x05\x03\x04", // 𪔩
+ 0x2a52a: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x02\x05\x01\x01\x02\x02\x01\x01\x01", // 𪔪
+ 0x2a52b: "\x05\x02\x02\x05\x02\x03\x05\x02\x02\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04", // 𪔫
+ 0x2a52c: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x01\x01\x02\x02\x01\x02\x03\x04", // 𪔬
+ 0x2a52d: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x01\x02\x01\x02\x02\x02\x05\x03\x04", // 𪔭
+ 0x2a52e: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x01\x02\x01\x05\x04\x02\x05\x02\x02\x01", // 𪔮
+ 0x2a52f: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x01\x03\x02\x01\x01\x02\x03\x04\x05\x03\x04", // 𪔯
+ 0x2a530: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04", // 𪔰
+ 0x2a531: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x04\x04\x01\x03\x01\x02\x01\x05\x05\x02\x01\x02", // 𪔱
+ 0x2a532: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x03\x05\x04\x01\x01\x01\x02\x04\x05\x04", // 𪔲
+ 0x2a533: "\x05\x02\x03\x05\x04\x01\x03\x01\x01\x02\x01\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04", // 𪔳
+ 0x2a534: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x05\x02\x03\x05\x04\x01\x03\x01\x01\x02\x01", // 𪔴
+ 0x2a535: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x01\x02\x01\x02\x01\x02\x02\x05\x01\x01\x01\x03\x04", // 𪔵
+ 0x2a536: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x03\x02\x05\x04\x03\x03\x04\x01\x02\x05\x01\x04\x03\x01", // 𪔶
+ 0x2a537: "\x01\x02\x01\x02\x05\x01\x04\x03\x01\x01\x02\x05\x04\x04\x01\x04\x03\x01\x03\x05\x04\x01\x01\x05\x01\x05\x01\x01\x01", // 𪔷
+ 0x2a538: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x05\x01", // 𪔸
+ 0x2a539: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x05\x03", // 𪔹
+ 0x2a53a: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x05\x03\x04", // 𪔺
+ 0x2a53b: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x03\x01\x03\x04", // 𪔻
+ 0x2a53c: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x03\x05\x04", // 𪔼
+ 0x2a53d: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x04\x05\x03\x05", // 𪔽
+ 0x2a53e: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x01\x01\x03\x02", // 𪔾
+ 0x2a53f: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x02\x01\x05\x04", // 𪔿
+ 0x2a540: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x01\x01\x03\x05", // 𪕀
+ 0x2a541: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x04\x05\x03\x05", // 𪕁
+ 0x2a542: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x03\x05\x05\x04", // 𪕂
+ 0x2a543: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x04\x01\x05\x03", // 𪕃
+ 0x2a544: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x03\x03\x05\x01", // 𪕄
+ 0x2a545: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x01\x05\x02\x05", // 𪕅
+ 0x2a546: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x03\x05\x03\x04", // 𪕆
+ 0x2a547: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x04\x01\x03\x05", // 𪕇
+ 0x2a548: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x02\x05\x01\x01", // 𪕈
+ 0x2a549: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x03\x04\x03\x01\x02", // 𪕉
+ 0x2a54a: "\x02\x01\x02\x01\x03\x05\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05", // 𪕊
+ 0x2a54b: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x03\x05\x03\x05\x02", // 𪕋
+ 0x2a54c: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x03\x04\x01\x05\x04", // 𪕌
+ 0x2a54d: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x02\x05\x02\x05\x01", // 𪕍
+ 0x2a54e: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x04\x04\x05\x03\x05", // 𪕎
+ 0x2a54f: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x04\x04\x05\x03\x04", // 𪕏
+ 0x2a550: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x02\x01\x02\x05\x01", // 𪕐
+ 0x2a551: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x02\x01\x02\x01\x01\x05", // 𪕑
+ 0x2a552: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x04\x03\x01\x01\x03\x02", // 𪕒
+ 0x2a553: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x02\x04\x03\x01\x03\x05", // 𪕓
+ 0x2a554: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x01\x02\x02\x01\x01\x01", // 𪕔
+ 0x2a555: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x02\x05\x01\x02\x01\x04", // 𪕕
+ 0x2a556: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x01\x02\x01\x02\x05\x01", // 𪕖
+ 0x2a557: "\x02\x04\x03\x01\x03\x05\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05", // 𪕗
+ 0x2a558: "\x03\x05\x04\x02\x05\x01\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05", // 𪕘
+ 0x2a559: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x02\x05\x01\x02\x05\x01", // 𪕙
+ 0x2a55a: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x01\x03\x01\x05\x04\x05\x01", // 𪕚
+ 0x2a55b: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x03\x04\x01\x05\x02\x05\x01", // 𪕛
+ 0x2a55c: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x02\x05\x01\x05\x01\x03\x04", // 𪕜
+ 0x2a55d: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x02\x05\x01\x02\x01\x03\x04", // 𪕝
+ 0x2a55e: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x05\x04\x03\x05\x03\x05\x04", // 𪕞
+ 0x2a55f: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x03\x02\x01\x03\x04\x04", // 𪕟
+ 0x2a560: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x05\x01\x01\x04\x03\x03\x04", // 𪕠
+ 0x2a561: "\x01\x02\x05\x01\x02\x05\x01\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05", // 𪕡
+ 0x2a562: "\x01\x02\x01\x05\x02\x05\x01\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05", // 𪕢
+ 0x2a563: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x01\x05\x05\x05\x01\x02\x01", // 𪕣
+ 0x2a564: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x02\x05\x01\x01\x05\x03\x01", // 𪕤
+ 0x2a565: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x02\x05\x03\x04\x02\x05\x01", // 𪕥
+ 0x2a566: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x03\x05\x04\x01\x03\x05\x04", // 𪕦
+ 0x2a567: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x04\x03\x05\x01\x05\x02\x03", // 𪕧
+ 0x2a568: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x03\x02\x01\x05\x01\x01\x03\x05", // 𪕨
+ 0x2a569: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x02\x05\x01\x01\x03\x05\x03\x03", // 𪕩
+ 0x2a56a: "\x03\x02\x04\x01\x01\x01\x02\x01\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05", // 𪕪
+ 0x2a56b: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x02\x05\x01\x01\x01\x03\x05\x03\x03", // 𪕫
+ 0x2a56c: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x04\x01\x04\x03\x04\x05\x02\x05\x02", // 𪕬
+ 0x2a56d: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 𪕭
+ 0x2a56e: "\x01\x02\x02\x05\x01\x03\x05\x01\x01\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05", // 𪕮
+ 0x2a56f: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𪕯
+ 0x2a570: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 𪕰
+ 0x2a571: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x01\x02\x02\x05\x01\x03\x05\x04\x01", // 𪕱
+ 0x2a572: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01", // 𪕲
+ 0x2a573: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x02\x05\x01\x02\x01\x04\x05\x04\x04", // 𪕳
+ 0x2a574: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x03\x05\x03\x02\x05\x01\x02\x01\x04", // 𪕴
+ 0x2a575: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x02\x05\x01\x01\x01\x02\x01\x01\x02\x04", // 𪕵
+ 0x2a576: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x04\x03\x01\x03\x04\x02\x05\x02\x02\x01", // 𪕶
+ 0x2a577: "\x01\x02\x01\x04\x05\x01\x03\x05\x05\x04\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05", // 𪕷
+ 0x2a578: "\x01\x02\x01\x04\x05\x01\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x03\x05\x05\x04", // 𪕸
+ 0x2a579: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x04\x01\x03\x05\x01\x01\x02\x02\x05\x01", // 𪕹
+ 0x2a57a: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x03\x04\x04\x03\x05\x03\x03\x03\x05\x04", // 𪕺
+ 0x2a57b: "\x03\x03\x02\x01\x05\x03\x01\x05\x03\x05\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05", // 𪕻
+ 0x2a57c: "\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05", // 𪕼
+ 0x2a57d: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x03\x03\x02\x01\x05\x03\x01\x05\x05\x04", // 𪕽
+ 0x2a57e: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03", // 𪕾
+ 0x2a57f: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x03\x02\x05\x01\x01\x01\x04\x05\x03\x05", // 𪕿
+ 0x2a580: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01", // 𪖀
+ 0x2a581: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x03\x03\x02\x03\x04\x03\x04\x02\x01\x03\x04", // 𪖁
+ 0x2a582: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x04\x01\x03\x04\x05\x02\x02\x05\x02\x01\x04", // 𪖂
+ 0x2a583: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x01\x02\x01\x04\x05\x03\x05\x03\x05\x05\x04", // 𪖃
+ 0x2a584: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x01\x02\x01\x03\x05\x02\x01\x03\x01\x03\x04", // 𪖄
+ 0x2a585: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x01\x02\x01\x02\x02\x02\x05\x01\x01\x01\x03\x04", // 𪖅
+ 0x2a586: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x05\x04\x03\x03\x04\x05\x01\x05\x03\x05\x05\x04", // 𪖆
+ 0x2a587: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x03\x04\x03\x01\x02\x03\x04\x02\x05\x01\x02\x01", // 𪖇
+ 0x2a588: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x03\x04", // 𪖈
+ 0x2a589: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x01\x02\x02\x01\x01\x01\x03\x04\x03\x03\x01\x02", // 𪖉
+ 0x2a58a: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x02\x02\x04\x03\x01\x04\x03\x01\x01\x01\x02\x03\x04", // 𪖊
+ 0x2a58b: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x01\x02\x01\x03\x02\x04\x01\x01\x01\x02\x01\x05\x03\x04", // 𪖋
+ 0x2a58c: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 𪖌
+ 0x2a58d: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 𪖍
+ 0x2a58e: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x03\x04\x03\x04\x01\x02\x01\x01\x01\x02\x01\x01\x01\x01\x05\x03\x04", // 𪖎
+ 0x2a58f: "\x03\x02\x01\x05\x01\x01\x05\x04\x04\x05\x04\x04\x05\x02\x05\x01\x01\x01\x02\x05\x01\x01\x01\x03\x02\x04\x01\x01\x01\x02\x01", // 𪖏
+ 0x2a590: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x05", // 𪖐
+ 0x2a591: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x05\x05", // 𪖑
+ 0x2a592: "\x03\x05\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02", // 𪖒
+ 0x2a593: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x03\x05\x04", // 𪖓
+ 0x2a594: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x05\x03\x04", // 𪖔
+ 0x2a595: "\x01\x05\x02\x03\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02", // 𪖕
+ 0x2a596: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x03\x01\x03\x04", // 𪖖
+ 0x2a597: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x03\x05\x03\x04", // 𪖗
+ 0x2a598: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x04\x04\x01\x02", // 𪖘
+ 0x2a599: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x03\x05\x05\x04", // 𪖙
+ 0x2a59a: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x02\x01\x02\x05\x01", // 𪖚
+ 0x2a59b: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x03\x02\x01\x02\x01", // 𪖛
+ 0x2a59c: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x03\x04\x01\x02\x01", // 𪖜
+ 0x2a59d: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x03\x04\x02\x05\x01", // 𪖝
+ 0x2a59e: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x05\x03\x02\x05\x04", // 𪖞
+ 0x2a59f: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x01\x02\x02\x01\x01", // 𪖟
+ 0x2a5a0: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x05\x03\x02\x05\x01", // 𪖠
+ 0x2a5a1: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x03\x05\x01\x03\x05\x05", // 𪖡
+ 0x2a5a2: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x01\x02\x01\x01\x02\x01", // 𪖢
+ 0x2a5a3: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x01\x05\x04\x01\x02\x01", // 𪖣
+ 0x2a5a4: "\x05\x03\x01\x03\x05\x05\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02", // 𪖤
+ 0x2a5a5: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x03\x04\x01\x03\x02\x05\x02", // 𪖥
+ 0x2a5a6: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x04\x03\x05\x01\x05\x02\x03", // 𪖦
+ 0x2a5a7: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x05\x01\x01\x04\x05\x05\x04", // 𪖧
+ 0x2a5a8: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x01\x03\x04\x03\x04\x03\x04", // 𪖨
+ 0x2a5a9: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x01\x03\x02\x05\x02\x02\x01", // 𪖩
+ 0x2a5aa: "\x03\x04\x01\x03\x02\x05\x02\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02", // 𪖪
+ 0x2a5ab: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x03\x01\x05\x05\x04\x01\x04", // 𪖫
+ 0x2a5ac: "\x03\x01\x05\x05\x04\x01\x04\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02", // 𪖬
+ 0x2a5ad: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x02\x05\x01\x01\x01\x01\x02\x04", // 𪖭
+ 0x2a5ae: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x01\x05\x01\x01\x02\x01\x03\x04", // 𪖮
+ 0x2a5af: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x03\x05\x01\x03\x02\x05\x01\x02\x02", // 𪖯
+ 0x2a5b0: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x04\x01\x04\x03\x04\x05\x02\x05\x02", // 𪖰
+ 0x2a5b1: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x05\x03\x02\x05\x01\x05\x02\x01\x05", // 𪖱
+ 0x2a5b2: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x05\x01\x02\x01\x01\x05\x01\x05\x04", // 𪖲
+ 0x2a5b3: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 𪖳
+ 0x2a5b4: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x03\x01\x01\x05\x04\x03\x01\x02\x03\x04", // 𪖴
+ 0x2a5b5: "\x05\x05\x05\x02\x05\x01\x05\x02\x01\x05\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02", // 𪖵
+ 0x2a5b6: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x04\x01\x05\x05\x04\x04\x01\x03\x04\x01\x02", // 𪖶
+ 0x2a5b7: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x05\x04\x01\x05\x04\x01\x03\x04\x03\x03\x03", // 𪖷
+ 0x2a5b8: "\x02\x01\x05\x03\x01\x05\x02\x05\x01\x01\x01\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02", // 𪖸
+ 0x2a5b9: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x02\x05\x01\x01\x02\x05\x01\x02\x05\x03\x01", // 𪖹
+ 0x2a5ba: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x05\x01\x01\x05\x04\x01\x05\x03\x05", // 𪖺
+ 0x2a5bb: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x03\x02\x05\x01\x01\x01\x01\x03\x05\x04\x01\x05", // 𪖻
+ 0x2a5bc: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x01\x05\x03\x05\x01\x05\x03\x05\x02\x05\x01\x01", // 𪖼
+ 0x2a5bd: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x01\x01\x03\x04\x01\x01\x03\x04\x02\x05\x01\x01", // 𪖽
+ 0x2a5be: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x02\x05\x02\x03\x02\x05\x01\x01\x03\x05\x05\x04", // 𪖾
+ 0x2a5bf: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x04\x01\x05\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01", // 𪖿
+ 0x2a5c0: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x02\x05\x01\x01\x03\x05\x03\x04\x05\x03\x05\x03\x04", // 𪗀
+ 0x2a5c1: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 𪗁
+ 0x2a5c2: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x03\x05\x02\x05\x01\x01\x05\x03\x05\x03\x05\x02\x05\x01\x03\x05\x04", // 𪗂
+ 0x2a5c3: "\x03\x02\x05\x01\x01\x01\x02\x05\x01\x02\x01\x01\x03\x02\x04\x01\x05\x05\x03\x03\x02\x04\x01\x01\x01\x02\x01\x01\x05\x05\x04", // 𪗃
+ 0x2a5c4: "\x01\x02\x03\x05\x04\x03\x05\x04\x03\x02\x01\x01", // 𪗄
+ 0x2a5c5: "\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01\x05\x04", // 𪗅
+ 0x2a5c6: "\x04\x01\x03\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01", // 𪗆
+ 0x2a5c7: "\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01\x03\x05\x01\x01", // 𪗇
+ 0x2a5c8: "\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01\x01\x03\x05\x04", // 𪗈
+ 0x2a5c9: "\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01\x03\x01\x02\x03\x04", // 𪗉
+ 0x2a5ca: "\x05\x02\x02\x05\x02\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01", // 𪗊
+ 0x2a5cb: "\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01\x04\x01\x03\x05\x03\x04", // 𪗋
+ 0x2a5cc: "\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01\x02\x05\x05\x04\x03\x04", // 𪗌
+ 0x2a5cd: "\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01\x01\x05\x01\x01\x02\x05\x03\x01", // 𪗍
+ 0x2a5ce: "\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x05\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𪗎
+ 0x2a5cf: "\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01\x03\x05\x02\x05\x01\x02\x01\x04\x04\x04\x04", // 𪗏
+ 0x2a5d0: "\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x02\x05\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01\x01", // 𪗐
+ 0x2a5d1: "\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01\x03\x05\x02\x05\x01\x01\x01\x05\x03\x05\x04", // 𪗑
+ 0x2a5d2: "\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01\x02\x03\x04\x03\x05\x02\x05\x01\x01\x01\x05\x03\x05\x04", // 𪗒
+ 0x2a5d3: "\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x03\x02\x01\x01\x02\x03\x04\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04\x03\x05\x04", // 𪗓
+ 0x2a5d4: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x05", // 𪗔
+ 0x2a5d5: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x02", // 𪗕
+ 0x2a5d6: "\x03\x04\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𪗖
+ 0x2a5d7: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x05", // 𪗗
+ 0x2a5d8: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x02\x05\x02", // 𪗘
+ 0x2a5d9: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x01\x02", // 𪗙
+ 0x2a5da: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x02\x01\x05", // 𪗚
+ 0x2a5db: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x01\x03\x02", // 𪗛
+ 0x2a5dc: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x04\x01\x03\x05", // 𪗜
+ 0x2a5dd: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x02\x05\x03\x04", // 𪗝
+ 0x2a5de: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x01\x03\x02", // 𪗞
+ 0x2a5df: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x01\x01\x05", // 𪗟
+ 0x2a5e0: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x05\x03\x04", // 𪗠
+ 0x2a5e1: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x02\x01\x05\x04", // 𪗡
+ 0x2a5e2: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x03\x02\x04", // 𪗢
+ 0x2a5e3: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x04\x03\x05", // 𪗣
+ 0x2a5e4: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x05\x04\x01", // 𪗤
+ 0x2a5e5: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x03\x05\x03\x04", // 𪗥
+ 0x2a5e6: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x02\x01\x02\x05\x01", // 𪗦
+ 0x2a5e7: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x02\x05\x01\x03\x04", // 𪗧
+ 0x2a5e8: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x05\x02\x02\x05\x02", // 𪗨
+ 0x2a5e9: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x04\x04\x05\x03\x05", // 𪗩
+ 0x2a5ea: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x05\x01\x02\x05\x01", // 𪗪
+ 0x2a5eb: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x01\x01\x03\x04", // 𪗫
+ 0x2a5ec: "\x05\x03\x02\x05\x01\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𪗬
+ 0x2a5ed: "\x05\x03\x01\x05\x04\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𪗭
+ 0x2a5ee: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x01\x02\x03\x04", // 𪗮
+ 0x2a5ef: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x04\x01\x05\x04\x03\x05", // 𪗯
+ 0x2a5f0: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x04\x01\x05\x05\x04", // 𪗰
+ 0x2a5f1: "\x02\x01\x02\x01\x04\x03\x01\x02\x03\x04\x05\x02\x02\x05\x01\x01\x01", // 𪗱
+ 0x2a5f2: "\x04\x03\x02\x05\x04\x04\x04\x04\x01\x03\x04\x01\x05\x04", // 𪗲
+ 0x2a5f3: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x02\x02\x01\x01", // 𪗳
+ 0x2a5f4: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x04\x04\x05\x03\x05", // 𪗴
+ 0x2a5f5: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x05\x03\x01\x05\x04", // 𪗵
+ 0x2a5f6: "\x02\x01\x02\x01\x01\x05\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𪗶
+ 0x2a5f7: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x05\x02\x05\x01\x01", // 𪗷
+ 0x2a5f8: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x05\x04\x02\x05\x01", // 𪗸
+ 0x2a5f9: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x02\x01\x01\x02\x01", // 𪗹
+ 0x2a5fa: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x02\x01\x01\x02\x04", // 𪗺
+ 0x2a5fb: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x05\x04\x01\x02\x01", // 𪗻
+ 0x2a5fc: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x05\x05\x02\x01\x05", // 𪗼
+ 0x2a5fd: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x01\x02\x02\x05\x01", // 𪗽
+ 0x2a5fe: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x02\x01\x02\x05\x01", // 𪗾
+ 0x2a5ff: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x03\x05\x04\x02\x02", // 𪗿
+ 0x2a600: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x04\x03\x01\x01\x03\x02", // 𪘀
+ 0x2a601: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x04\x01\x02\x05\x01", // 𪘁
+ 0x2a602: "\x01\x01\x01\x02\x05\x03\x02\x01\x02\x01\x04\x03\x01\x02\x03\x04\x05\x02", // 𪘂
+ 0x2a603: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x03\x02\x05\x01\x01", // 𪘃
+ 0x2a604: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x02\x05\x01\x01\x03\x05", // 𪘄
+ 0x2a605: "\x02\x05\x01\x02\x01\x04\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𪘅
+ 0x2a606: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x02\x01\x02\x03\x04", // 𪘆
+ 0x2a607: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x03\x01\x02\x05\x01", // 𪘇
+ 0x2a608: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x04\x01\x05\x03\x04", // 𪘈
+ 0x2a609: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x05\x01\x02\x03\x04", // 𪘉
+ 0x2a60a: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x05\x04\x02\x05\x01", // 𪘊
+ 0x2a60b: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x04\x04\x05\x05\x05\x04", // 𪘋
+ 0x2a60c: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x02\x05\x01\x03\x04", // 𪘌
+ 0x2a60d: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x02\x05\x01\x02\x05\x01", // 𪘍
+ 0x2a60e: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x04\x01\x01\x01\x02\x05\x01", // 𪘎
+ 0x2a60f: "\x02\x05\x01\x02\x01\x02\x01\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𪘏
+ 0x2a610: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x01\x02\x01\x05\x03\x04", // 𪘐
+ 0x2a611: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x05\x04\x03\x05\x03\x05\x04", // 𪘑
+ 0x2a612: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x04\x01\x05\x02\x05\x01", // 𪘒
+ 0x2a613: "\x03\x02\x01\x03\x01\x02\x01\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𪘓
+ 0x2a614: "\x01\x02\x01\x03\x03\x01\x02\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𪘔
+ 0x2a615: "\x03\x02\x04\x04\x05\x03\x05\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𪘕
+ 0x2a616: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x02\x01\x05\x04\x05\x03", // 𪘖
+ 0x2a617: "\x03\x02\x03\x01\x05\x02\x05\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𪘗
+ 0x2a618: "\x01\x03\x04\x03\x04\x03\x04\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𪘘
+ 0x2a619: "\x04\x01\x01\x01\x02\x05\x01\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𪘙
+ 0x2a61a: "\x02\x01\x02\x01\x04\x03\x01\x02\x03\x04\x05\x02\x01\x02\x05\x01\x02\x05\x01", // 𪘚
+ 0x2a61b: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x02\x02\x01\x01\x01\x05", // 𪘛
+ 0x2a61c: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x02\x05\x01\x02\x03\x04", // 𪘜
+ 0x2a61d: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x03\x01\x01\x05\x03\x04", // 𪘝
+ 0x2a61e: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x02\x04\x03\x02\x05\x01\x01", // 𪘞
+ 0x2a61f: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x02\x05\x01\x01\x01\x03\x05", // 𪘟
+ 0x2a620: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x02\x01\x02\x03\x04\x01", // 𪘠
+ 0x2a621: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x02\x01\x03\x01\x02\x01", // 𪘡
+ 0x2a622: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x05\x01\x05\x02\x05\x01", // 𪘢
+ 0x2a623: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x05\x01\x03\x03\x01\x01\x05", // 𪘣
+ 0x2a624: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x04\x04\x03\x01\x02\x04", // 𪘤
+ 0x2a625: "\x03\x01\x01\x02\x05\x02\x02\x02\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𪘥
+ 0x2a626: "\x01\x02\x05\x01\x02\x05\x05\x04\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𪘦
+ 0x2a627: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x04\x01\x03\x04\x03\x04\x01\x02", // 𪘧
+ 0x2a628: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x03\x04\x03\x04\x02\x03\x04", // 𪘨
+ 0x2a629: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x02\x05\x03\x01\x02\x03\x04\x01", // 𪘩
+ 0x2a62a: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x05\x03\x04\x01\x05\x03\x04", // 𪘪
+ 0x2a62b: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x04\x04\x05\x02\x05\x04\x04\x01", // 𪘫
+ 0x2a62c: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x03\x01\x02\x01\x01\x02\x01", // 𪘬
+ 0x2a62d: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x02\x05\x03\x01\x02\x03\x04\x01", // 𪘭
+ 0x2a62e: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01", // 𪘮
+ 0x2a62f: "\x01\x05\x02\x03\x03\x01\x03\x04\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𪘯
+ 0x2a630: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x02\x01\x05\x03\x01\x05\x03\x05", // 𪘰
+ 0x2a631: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x04\x01\x03\x02\x05\x01\x01", // 𪘱
+ 0x2a632: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x04\x04\x05\x02\x05\x01\x01\x01", // 𪘲
+ 0x2a633: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x05\x01\x03\x05\x02\x02\x05\x02", // 𪘳
+ 0x2a634: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x05\x02\x01\x01\x05\x02\x01\x01", // 𪘴
+ 0x2a635: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x02\x01\x03\x04\x03\x05\x04", // 𪘵
+ 0x2a636: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x05\x01\x01\x02\x02\x05\x01\x01", // 𪘶
+ 0x2a637: "\x04\x05\x01\x03\x03\x03\x01\x02\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𪘷
+ 0x2a638: "\x01\x02\x02\x01\x01\x01\x05\x04\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𪘸
+ 0x2a639: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 𪘹
+ 0x2a63a: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x04\x04\x05\x03\x05\x04\x02\x05\x01", // 𪘺
+ 0x2a63b: "\x01\x01\x02\x03\x04\x03\x01\x03\x04\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𪘻
+ 0x2a63c: "\x01\x02\x05\x01\x02\x03\x04\x02\x02\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𪘼
+ 0x2a63d: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x02\x01\x05\x03\x01\x05\x01\x05\x01", // 𪘽
+ 0x2a63e: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x01\x02\x03\x02\x01\x05\x01\x01", // 𪘾
+ 0x2a63f: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x02\x01\x02\x01\x03\x05\x01\x02\x03\x04", // 𪘿
+ 0x2a640: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x05\x02\x01\x03\x04\x03\x05\x04\x01", // 𪙀
+ 0x2a641: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x02\x03\x04\x02\x05\x01\x01\x01", // 𪙁
+ 0x2a642: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x05\x05\x05\x01\x03\x05\x04\x02\x02", // 𪙂
+ 0x2a643: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x02\x05\x01\x02\x02\x05\x02\x05\x01", // 𪙃
+ 0x2a644: "\x03\x04\x03\x05\x01\x03\x01\x02\x01\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𪙄
+ 0x2a645: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x04\x05\x04\x02\x03\x04\x05\x04", // 𪙅
+ 0x2a646: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x05\x01\x03\x03\x04\x03\x05\x01\x01", // 𪙆
+ 0x2a647: "\x05\x01\x03\x03\x04\x03\x05\x01\x01\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𪙇
+ 0x2a648: "\x03\x05\x03\x05\x01\x01\x05\x03\x04\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𪙈
+ 0x2a649: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01", // 𪙉
+ 0x2a64a: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x04\x03\x01\x05\x01\x01\x02\x02\x03\x04", // 𪙊
+ 0x2a64b: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x02\x05\x03\x04\x01\x04\x05\x04\x04", // 𪙋
+ 0x2a64c: "\x05\x01\x03\x02\x04\x03\x03\x05\x04\x01\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𪙌
+ 0x2a64d: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 𪙍
+ 0x2a64e: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x04\x01\x05\x01\x01\x03\x02\x05\x01", // 𪙎
+ 0x2a64f: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x04\x04\x05\x03\x01\x02\x01\x02\x05\x01", // 𪙏
+ 0x2a650: "\x01\x02\x01\x02\x01\x02\x01\x03\x01\x05\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𪙐
+ 0x2a651: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x05\x01\x03\x02\x04\x03\x03\x05\x04\x01", // 𪙑
+ 0x2a652: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x01\x02\x03\x04\x03\x04\x02\x05\x02", // 𪙒
+ 0x2a653: "\x01\x02\x01\x01\x02\x01\x01\x03\x05\x04\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𪙓
+ 0x2a654: "\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𪙔
+ 0x2a655: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x05\x01\x03\x01\x02\x02\x01\x05\x03\x04", // 𪙕
+ 0x2a656: "\x03\x04\x03\x01\x02\x03\x04\x01\x03\x04\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𪙖
+ 0x2a657: "\x03\x05\x05\x02\x03\x03\x05\x05\x02\x03\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𪙗
+ 0x2a658: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x04\x01\x03\x04\x01\x02\x02\x01\x01\x01", // 𪙘
+ 0x2a659: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x05\x05\x04\x04\x03\x01\x02\x03\x04", // 𪙙
+ 0x2a65a: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x02\x01\x02\x05\x01\x02\x02\x05\x02\x05\x01", // 𪙚
+ 0x2a65b: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x01\x02\x01\x02\x01\x03\x02\x05\x01\x05", // 𪙛
+ 0x2a65c: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x04\x04\x05\x03\x05\x01\x05\x04\x01\x02\x01", // 𪙜
+ 0x2a65d: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x03\x03\x05\x04\x04\x01\x02\x04", // 𪙝
+ 0x2a65e: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x04\x01\x04\x03\x01\x03\x03\x01\x01\x02\x01", // 𪙞
+ 0x2a65f: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x02\x02\x01\x02\x05\x01\x01\x01\x02\x01", // 𪙟
+ 0x2a660: "\x01\x01\x02\x01\x05\x03\x03\x01\x03\x04\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𪙠
+ 0x2a661: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x02\x05\x01\x02\x02\x01\x02\x05\x01\x01", // 𪙡
+ 0x2a662: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x05\x04\x02\x05\x01\x02\x01\x01\x05\x03\x04", // 𪙢
+ 0x2a663: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x02\x05\x01\x02\x05\x01\x02\x05\x01\x01\x01\x02", // 𪙣
+ 0x2a664: "\x01\x03\x04\x03\x04\x02\x03\x04\x01\x03\x04\x04\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𪙤
+ 0x2a665: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x02\x01\x02\x05\x03\x04\x01\x02\x05\x02\x01\x04", // 𪙥
+ 0x2a666: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x02\x05\x01\x01\x01\x02\x02\x01\x01\x01\x05\x04", // 𪙦
+ 0x2a667: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x05\x05\x04\x05\x05\x04\x01\x03\x04\x05\x03\x04", // 𪙧
+ 0x2a668: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x05\x01\x01\x02\x02\x05\x01\x01\x02\x05\x01\x01", // 𪙨
+ 0x2a669: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x05\x01\x01\x02\x02\x05\x01\x01\x03\x05\x01\x01", // 𪙩
+ 0x2a66a: "\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𪙪
+ 0x2a66b: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x02\x01\x05\x03\x01\x05\x02\x02\x04\x03\x01", // 𪙫
+ 0x2a66c: "\x03\x01\x02\x02\x05\x01\x03\x01\x02\x02\x05\x01\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𪙬
+ 0x2a66d: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x04\x03\x02\x05\x02\x04\x03\x01\x02\x05\x01\x01", // 𪙭
+ 0x2a66e: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x04\x03\x04\x03\x04\x03\x04\x02\x05\x01\x01", // 𪙮
+ 0x2a66f: "\x04\x01\x01\x03\x02\x02\x04\x01\x01\x01\x02\x01\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𪙯
+ 0x2a670: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x02\x01\x02\x02\x05\x01\x01\x03\x05\x03\x04\x05", // 𪙰
+ 0x2a671: "\x04\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𪙱
+ 0x2a672: "\x01\x03\x05\x03\x03\x03\x04\x05\x01\x01\x05\x03\x04\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𪙲
+ 0x2a673: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x02\x05\x02\x02\x01\x01\x02\x02\x05\x01\x01\x01\x01", // 𪙳
+ 0x2a674: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01\x05\x03\x04", // 𪙴
+ 0x2a675: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x04\x01\x02\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01", // 𪙵
+ 0x2a676: "\x02\x05\x01\x01\x03\x05\x03\x03\x03\x01\x02\x02\x05\x01\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𪙶
+ 0x2a677: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x05\x05\x05\x02\x05\x03\x04\x01\x05\x04\x04\x05\x04\x04\x05", // 𪙷
+ 0x2a678: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x03\x01\x02\x01", // 𪙸
+ 0x2a679: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𪙹
+ 0x2a67a: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x03\x01\x02\x02\x02\x05\x01\x01\x02\x05\x02\x01\x04", // 𪙺
+ 0x2a67b: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x02\x03\x04\x03\x02\x04\x01\x01\x01\x02\x01\x01\x05\x03\x04", // 𪙻
+ 0x2a67c: "\x03\x02\x03\x04\x03\x04\x03\x04\x03\x04\x01\x03\x01\x02\x01\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𪙼
+ 0x2a67d: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x03\x03\x01\x02\x03\x04\x03\x01\x02\x03\x04\x02\x01\x02\x01", // 𪙽
+ 0x2a67e: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x02\x01\x05\x03\x01\x05\x02\x05\x01\x02\x01\x02\x05\x02\x02\x01", // 𪙾
+ 0x2a67f: "\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𪙿
+ 0x2a680: "\x01\x02\x02\x01\x01\x01\x05\x05\x04\x04\x04\x05\x05\x04\x04\x04\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𪚀
+ 0x2a681: "\x01\x02\x02\x01\x01\x01\x05\x05\x04\x05\x05\x04\x05\x02\x02\x01\x02\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𪚁
+ 0x2a682: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x02\x01\x02\x04\x04\x01\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 𪚂
+ 0x2a683: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x05\x02\x05\x01\x01\x05\x03\x05\x03\x05\x02\x05\x01\x03\x05\x04", // 𪚃
+ 0x2a684: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x02\x02\x01\x01\x01\x05\x05\x04\x05\x05\x04\x03\x05\x02\x01\x02", // 𪚄
+ 0x2a685: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x04\x04\x03\x02\x05\x02\x02\x01\x05\x01\x01\x05\x04\x01\x02\x04", // 𪚅
+ 0x2a686: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x05\x05\x04\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𪚆
+ 0x2a687: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x01\x02\x01\x03\x05\x03\x01\x02\x01\x03\x05\x02\x05\x01\x01\x01\x03\x04", // 𪚇
+ 0x2a688: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x03\x01\x04\x03\x01\x04\x04\x04\x01\x01\x02\x05\x01\x01\x02\x04\x01\x02\x04", // 𪚈
+ 0x2a689: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x01\x02\x02\x05\x01\x01\x01\x01\x03\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04", // 𪚉
+ 0x2a68a: "\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x03\x04\x04\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𪚊
+ 0x2a68b: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x02\x01\x05\x03\x01\x05\x01\x02\x05\x01\x02\x05\x04\x03\x01\x02\x01\x03\x04\x04", // 𪚋
+ 0x2a68c: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x05\x01\x03\x02\x04\x01\x03\x04\x02\x05\x02\x02\x01\x03\x05\x02\x05\x01\x02\x01\x04", // 𪚌
+ 0x2a68d: "\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x04\x03\x01\x01\x02\x01\x03\x01\x02\x01", // 𪚍
+ 0x2a68e: "\x04\x01\x04\x03\x02\x05\x03\x03\x05\x04\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02\x02\x01\x02\x01\x03\x04\x03\x04\x01\x03\x04\x03\x04\x05\x02", // 𪚎
+ 0x2a68f: "\x02\x01\x02\x01\x03\x04\x05\x02\x04\x03\x01\x01\x03\x02", // 𪚏
+ 0x2a690: "\x01\x05\x02\x03\x03\x01\x03\x04\x02\x01\x02\x01\x03\x04\x05\x02", // 𪚐
+ 0x2a691: "\x04\x01\x04\x03\x01\x03\x05\x04\x01\x01\x05\x01\x05\x01\x01\x01\x02\x05\x02", // 𪚑
+ 0x2a692: "\x01\x01\x03\x04\x01\x04\x03\x01\x03\x05\x04\x01\x01\x05\x01\x05\x01\x01\x01", // 𪚒
+ 0x2a693: "\x03\x05\x03\x04\x01\x04\x03\x01\x03\x05\x04\x01\x01\x05\x01\x05\x01\x01\x01", // 𪚓
+ 0x2a694: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01\x01\x01\x01\x03\x04", // 𪚔
+ 0x2a695: "\x03\x04\x04\x05\x04\x01\x04\x03\x01\x03\x05\x04\x01\x01\x05\x01\x05\x01\x01\x01", // 𪚕
+ 0x2a696: "\x03\x02\x01\x05\x04\x01\x04\x03\x01\x03\x05\x04\x01\x01\x05\x01\x05\x01\x01\x01", // 𪚖
+ 0x2a697: "\x01\x03\x05\x04\x04\x01\x04\x03\x01\x03\x05\x04\x01\x01\x05\x01\x05\x01\x01\x01", // 𪚗
+ 0x2a698: "\x03\x05\x04\x01\x04\x01\x04\x03\x01\x03\x05\x04\x01\x01\x05\x01\x05\x01\x01\x01", // 𪚘
+ 0x2a699: "\x03\x04\x01\x05\x04\x04\x01\x04\x03\x01\x03\x05\x04\x01\x01\x05\x01\x05\x01\x01\x01", // 𪚙
+ 0x2a69a: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01\x01\x01\x02\x05\x01\x02", // 𪚚
+ 0x2a69b: "\x04\x01\x04\x03\x01\x03\x05\x04\x01\x01\x05\x01\x05\x01\x01\x01\x04\x04\x01\x02", // 𪚛
+ 0x2a69c: "\x04\x01\x04\x03\x01\x03\x05\x04\x01\x01\x05\x01\x05\x01\x01\x01\x01\x01\x03\x01\x01\x02", // 𪚜
+ 0x2a69d: "\x01\x02\x01\x01\x02\x01\x04\x01\x04\x03\x01\x03\x05\x04\x01\x01\x05\x01\x05\x01\x01\x01", // 𪚝
+ 0x2a69e: "\x04\x01\x04\x03\x01\x03\x05\x04\x01\x01\x05\x01\x05\x01\x01\x01\x01\x03\x02\x05\x01\x01", // 𪚞
+ 0x2a69f: "\x01\x01\x02\x04\x01\x04\x03\x01\x03\x05\x04\x01\x01\x05\x01\x05\x01\x01\x01\x01\x01\x02", // 𪚟
+ 0x2a6a0: "\x04\x01\x04\x03\x01\x03\x05\x04\x01\x01\x05\x01\x05\x01\x01\x01\x01\x02\x03\x04\x03\x04\x01", // 𪚠
+ 0x2a6a1: "\x03\x04\x03\x04\x02\x05\x01\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01\x01\x01", // 𪚡
+ 0x2a6a2: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01\x01\x01\x05\x03\x04\x03\x05\x03\x04\x03\x02", // 𪚢
+ 0x2a6a3: "\x01\x02\x01\x05\x02\x01\x03\x03\x05\x05\x04\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01\x01\x01", // 𪚣
+ 0x2a6a4: "\x04\x01\x04\x03\x01\x02\x05\x01\x01\x01\x05\x01\x05\x01\x01\x01\x04\x01\x05\x03\x05\x01\x01\x01\x01\x02\x01", // 𪚤
+ 0x2a6a5: "\x04\x01\x04\x03\x01\x03\x05\x04\x01\x01\x05\x01\x05\x01\x01\x01\x04\x01\x04\x03\x01\x03\x05\x04\x01\x01\x05\x01\x05\x01\x01\x01\x04\x01\x04\x03\x01\x03\x05\x04\x01\x01\x05\x01\x05\x01\x01\x01\x04\x01\x04\x03\x01\x03\x05\x04\x01\x01\x05\x01\x05\x01\x01\x01", // 𪚥
+ 0x2a6a6: "\x01\x02\x01\x05\x05\x01\x02\x05\x01\x01\x05\x01\x01\x05\x03\x04\x01", // 𪚦
+ 0x2a6a7: "\x03\x05\x02\x05\x01\x05\x02\x05\x01\x01\x02\x05\x01\x01\x05\x01\x01", // 𪚧
+ 0x2a6a8: "\x04\x04\x05\x03\x05\x01\x02\x05\x03\x04\x01\x05\x05\x01\x01\x05\x01\x01", // 𪚨
+ 0x2a6a9: "\x02\x05\x01\x03\x02\x05\x01\x02\x05\x03\x04\x01\x05\x05\x01\x01\x05\x01\x01", // 𪚩
+ 0x2a6aa: "\x03\x05\x04\x03\x02\x05\x01\x02\x05\x03\x04\x01\x05\x05\x01\x01\x05\x01\x01", // 𪚪
+ 0x2a6ab: "\x03\x05\x02\x05\x01\x05\x02\x05\x01\x01\x01\x05\x01\x01\x05\x01\x01\x03\x05\x04\x01", // 𪚫
+ 0x2a6ac: "\x03\x02\x05\x01\x02\x05\x03\x04\x01\x05\x05\x01\x01\x05\x01\x01\x03\x04\x04\x05", // 𪚬
+ 0x2a6ad: "\x03\x02\x05\x01\x02\x05\x03\x04\x01\x05\x05\x01\x01\x05\x01\x01\x03\x05\x05\x04", // 𪚭
+ 0x2a6ae: "\x03\x05\x01\x01\x03\x02\x05\x01\x02\x05\x03\x04\x01\x05\x05\x01\x01\x05\x01\x01", // 𪚮
+ 0x2a6af: "\x04\x03\x03\x04\x03\x02\x05\x01\x02\x05\x03\x04\x01\x05\x05\x01\x01\x05\x01\x01", // 𪚯
+ 0x2a6b0: "\x03\x02\x05\x01\x02\x05\x03\x04\x01\x05\x05\x01\x01\x05\x01\x01\x04\x04\x04\x04", // 𪚰
+ 0x2a6b1: "\x04\x03\x03\x04\x03\x02\x05\x01\x02\x05\x03\x04\x01\x05\x05\x01\x01\x05\x01\x01", // 𪚱
+ 0x2a6b2: "\x03\x05\x01\x01\x03\x05\x02\x05\x01\x01\x02\x05\x01\x01\x05", // 𪚲
+ 0x2a6b3: "\x03\x02\x05\x01\x02\x05\x03\x04\x01\x05\x05\x01\x01\x05\x01\x01\x03\x05\x01\x01", // 𪚳
+ 0x2a6b4: "\x02\x05\x01\x02\x05\x03\x04\x04\x04\x04\x04\x01\x01\x05\x05\x01\x01\x05\x04\x04", // 𪚴
+ 0x2a6b5: "\x03\x05\x05\x04\x03\x02\x05\x01\x02\x05\x03\x04\x01\x05\x05\x01\x01\x05\x01\x01", // 𪚵
+ 0x2a6b6: "\x03\x02\x05\x01\x02\x05\x03\x04\x01\x05\x05\x01\x01\x05\x01\x01\x03\x05\x02\x05\x01", // 𪚶
+ 0x2a6b7: "\x05\x03\x02\x05\x04\x03\x02\x05\x01\x02\x05\x03\x04\x01\x05\x05\x01\x01\x05\x01\x01", // 𪚷
+ 0x2a6b8: "\x01\x02\x01\x05\x04\x03\x02\x05\x01\x02\x05\x03\x04\x01\x05\x05\x01\x01\x05\x01\x01", // 𪚸
+ 0x2a6b9: "\x04\x01\x01\x02\x01\x03\x02\x05\x01\x02\x05\x03\x04\x01\x05\x05\x01\x01\x05\x01\x01", // 𪚹
+ 0x2a6ba: "\x03\x05\x02\x05\x01\x02\x03\x02\x01\x02\x01\x01\x05\x05\x01\x01\x05\x01\x01", // 𪚺
+ 0x2a6bb: "\x02\x05\x01\x03\x04\x03\x02\x05\x01\x02\x05\x03\x04\x01\x05\x05\x01\x01\x05\x01\x01", // 𪚻
+ 0x2a6bc: "\x03\x01\x02\x03\x04\x03\x02\x05\x01\x02\x05\x03\x04\x01\x05\x05\x01\x01\x05\x01\x01", // 𪚼
+ 0x2a6bd: "\x03\x02\x05\x01\x02\x05\x03\x04\x01\x05\x05\x01\x01\x05\x01\x01\x03\x05\x04\x04\x04", // 𪚽
+ 0x2a6be: "\x03\x05\x02\x05\x01\x02\x05\x01\x01\x01\x03\x04\x05\x05\x01\x01\x05\x01\x01", // 𪚾
+ 0x2a6bf: "\x03\x05\x02\x05\x01\x01\x02\x05\x01\x01\x01\x02\x05\x05\x01\x01\x05\x01\x01", // 𪚿
+ 0x2a6c0: "\x04\x01\x03\x04\x03\x04\x03\x05\x03\x05\x02\x05\x01\x02\x01\x03\x02\x05\x01\x01\x01\x05\x05\x01\x01\x05\x01\x01", // 𪛀
+ 0x2a6c1: "\x03\x01\x02\x03\x04\x04\x03\x03\x04\x03\x05\x02\x05\x01\x02\x05\x03\x04\x01\x05\x01\x05\x01\x01\x05\x01\x01", // 𪛁
+ 0x2a6c2: "\x02\x05\x02\x03\x02\x04\x01\x01\x01\x02\x01\x03\x05\x02\x05\x01\x02\x05\x03\x04\x01\x05\x01\x05\x01\x01\x05\x01\x01", // 𪛂
+ 0x2a6c3: "\x03\x05\x02\x05\x01\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x05\x05\x05\x01\x01\x05\x01\x01", // 𪛃
+ 0x2a6c4: "\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x01\x03\x05\x02\x05\x01\x02\x05\x01\x01\x05\x05\x01\x01\x05\x01\x01", // 𪛄
+ 0x2a6c5: "\x02\x05\x01\x02\x01\x02\x01\x03\x05\x04\x02\x05\x01\x03\x05\x02\x05\x01\x02\x05\x03\x04\x01\x05\x01\x05\x01\x01\x05\x01\x01", // 𪛅
+ 0x2a6c6: "\x02\x04\x03\x02\x05\x02\x05\x01\x03\x01\x03\x04\x03\x05\x02\x05\x01\x02\x05\x01\x01\x01\x05\x05\x01\x01\x05\x01\x01", // 𪛆
+ 0x2a6c7: "\x03\x05\x02\x05\x01\x05\x05\x03\x04\x01\x05\x01\x01\x05\x01\x01\x02\x05\x02\x05\x01\x01\x02\x02\x05\x02\x05\x01\x01\x01", // 𪛇
+ 0x2a6c8: "\x01\x04\x05\x02\x04\x01\x03\x04\x02\x05\x01\x02\x05\x01\x02\x05\x01\x03\x05\x02\x05\x01\x02\x05\x03\x04\x01\x05\x01\x05\x01\x01\x05\x01\x01", // 𪛈
+ 0x2a6c9: "\x03\x05\x02\x05\x01\x02\x05\x01\x05", // 𪛉
+ 0x2a6ca: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02\x03\x03\x01\x02", // 𪛊
+ 0x2a6cb: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02\x02\x05\x01\x01\x02\x05\x01\x01", // 𪛋
+ 0x2a6cc: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02\x02\x01\x05\x03\x01\x05\x03\x05", // 𪛌
+ 0x2a6cd: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02\x02\x01\x05\x03\x01\x05\x01\x02", // 𪛍
+ 0x2a6ce: "\x04\x04\x01\x03\x02\x05\x01\x01\x01\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02", // 𪛎
+ 0x2a6cf: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02\x04\x01\x04\x03\x01\x02\x05\x01\x01", // 𪛏
+ 0x2a6d0: "\x05\x02\x02\x05\x02\x03\x05\x03\x04\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02", // 𪛐
+ 0x2a6d1: "\x04\x03\x03\x04\x03\x03\x03\x03\x05\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02", // 𪛑
+ 0x2a6d2: "\x03\x01\x04\x03\x01\x04\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02\x03\x05\x05\x04", // 𪛒
+ 0x2a6d3: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02\x04\x01\x03\x05\x02\x02\x01\x01\x05\x03\x05", // 𪛓
+ 0x2a6d4: "\x03\x01\x04\x03\x01\x04\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02\x02\x01\x05\x03\x01\x05\x03\x05", // 𪛔
+ 0x2a6d5: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02\x03\x05\x02\x05\x01\x02\x05\x03\x04\x01\x05\x05\x01\x01\x05\x01\x01", // 𪛕
+ 0x2a6d6: "\x03\x04\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x05\x01\x02\x02\x03\x05\x02\x05\x01\x02\x05\x03\x04\x01\x05\x05\x01\x01\x05\x01\x01\x04\x04\x04\x04", // 𪛖
+ 0x2a700: "\x06\x06\x06", // 𪜀
+ 0x2a701: "\x06\x06\x06", // 𪜁
+ 0x2a702: "\x06\x06\x06\x06", // 𪜂
+ 0x2a703: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪜃
+ 0x2a704: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪜄
+ 0x2a705: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪜅
+ 0x2a706: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪜆
+ 0x2a707: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪜇
+ 0x2a708: "\x06\x06\x06\x06", // 𪜈
+ 0x2a709: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪜉
+ 0x2a70a: "\x06\x06", // 𪜊
+ 0x2a70b: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪜋
+ 0x2a70c: "\x06\x06\x06\x06\x06\x06", // 𪜌
+ 0x2a70d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪜍
+ 0x2a70e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪜎
+ 0x2a70f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪜏
+ 0x2a710: "\x06\x06\x06\x06\x06", // 𪜐
+ 0x2a711: "\x06\x06\x06\x06\x06\x06", // 𪜑
+ 0x2a712: "\x06\x06\x06\x06\x06\x06\x06", // 𪜒
+ 0x2a713: "\x06\x06\x06\x06\x06\x06\x06", // 𪜓
+ 0x2a714: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪜔
+ 0x2a715: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪜕
+ 0x2a716: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪜖
+ 0x2a717: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪜗
+ 0x2a718: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪜘
+ 0x2a719: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪜙
+ 0x2a71a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪜚
+ 0x2a71b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪜛
+ 0x2a71c: "\x06\x06\x06\x06\x06\x06\x06", // 𪜜
+ 0x2a71d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪜝
+ 0x2a71e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪜞
+ 0x2a71f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪜟
+ 0x2a720: "\x06\x06\x06\x06\x06", // 𪜠
+ 0x2a721: "\x06\x06\x06\x06\x06", // 𪜡
+ 0x2a722: "\x06\x06\x06\x06\x06\x06\x06", // 𪜢
+ 0x2a723: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪜣
+ 0x2a724: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪜤
+ 0x2a725: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪜥
+ 0x2a726: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪜦
+ 0x2a727: "\x06\x06\x06\x06", // 𪜧
+ 0x2a728: "\x06\x06\x06\x06\x06\x06", // 𪜨
+ 0x2a729: "\x06\x06\x06\x06\x06\x06", // 𪜩
+ 0x2a72a: "\x06\x06\x06\x06\x06\x06", // 𪜪
+ 0x2a72b: "\x06\x06\x06\x06\x06\x06", // 𪜫
+ 0x2a72c: "\x06\x06\x06\x06\x06\x06\x06", // 𪜬
+ 0x2a72d: "\x06\x06\x06\x06\x06\x06\x06", // 𪜭
+ 0x2a72e: "\x06\x06\x06\x06\x06\x06\x06", // 𪜮
+ 0x2a72f: "\x06\x06\x06\x06\x06\x06\x06", // 𪜯
+ 0x2a730: "\x06\x06\x06\x06\x06\x06\x06", // 𪜰
+ 0x2a731: "\x06\x06\x06\x06\x06\x06\x06", // 𪜱
+ 0x2a732: "\x06\x06\x06\x06\x06\x06\x06", // 𪜲
+ 0x2a733: "\x06\x06\x06\x06\x06\x06\x06", // 𪜳
+ 0x2a734: "\x06\x06\x06\x06\x06\x06\x06", // 𪜴
+ 0x2a735: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪜵
+ 0x2a736: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪜶
+ 0x2a737: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪜷
+ 0x2a738: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪜸
+ 0x2a739: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪜹
+ 0x2a73a: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪜺
+ 0x2a73b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪜻
+ 0x2a73c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪜼
+ 0x2a73d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪜽
+ 0x2a73e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪜾
+ 0x2a73f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪜿
+ 0x2a740: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝀
+ 0x2a741: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝁
+ 0x2a742: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝂
+ 0x2a743: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝃
+ 0x2a744: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝄
+ 0x2a745: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝅
+ 0x2a746: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝆
+ 0x2a747: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝇
+ 0x2a748: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝈
+ 0x2a749: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝉
+ 0x2a74a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝊
+ 0x2a74b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝋
+ 0x2a74c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝌
+ 0x2a74d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝍
+ 0x2a74e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝎
+ 0x2a74f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝏
+ 0x2a750: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝐
+ 0x2a751: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝑
+ 0x2a752: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝒
+ 0x2a753: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝓
+ 0x2a754: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝔
+ 0x2a755: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝕
+ 0x2a756: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝖
+ 0x2a757: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝗
+ 0x2a758: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝘
+ 0x2a759: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝙
+ 0x2a75a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝚
+ 0x2a75b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝛
+ 0x2a75c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝜
+ 0x2a75d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝝
+ 0x2a75e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝞
+ 0x2a75f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝟
+ 0x2a760: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝠
+ 0x2a761: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝡
+ 0x2a762: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝢
+ 0x2a763: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝣
+ 0x2a764: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝤
+ 0x2a765: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝥
+ 0x2a766: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝦
+ 0x2a767: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝧
+ 0x2a768: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝨
+ 0x2a769: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝩
+ 0x2a76a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝪
+ 0x2a76b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝫
+ 0x2a76c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝬
+ 0x2a76d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝭
+ 0x2a76e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝮
+ 0x2a76f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝯
+ 0x2a770: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝰
+ 0x2a771: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝱
+ 0x2a772: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝲
+ 0x2a773: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝳
+ 0x2a774: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝴
+ 0x2a775: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝵
+ 0x2a776: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝶
+ 0x2a777: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝷
+ 0x2a778: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝸
+ 0x2a779: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝹
+ 0x2a77a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝺
+ 0x2a77b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝻
+ 0x2a77c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝼
+ 0x2a77d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝽
+ 0x2a77e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝾
+ 0x2a77f: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪝿
+ 0x2a780: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪞀
+ 0x2a781: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪞁
+ 0x2a782: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪞂
+ 0x2a783: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪞃
+ 0x2a784: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪞄
+ 0x2a785: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪞅
+ 0x2a786: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪞆
+ 0x2a787: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪞇
+ 0x2a788: "\x06\x06\x06\x06\x06\x06", // 𪞈
+ 0x2a789: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪞉
+ 0x2a78a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪞊
+ 0x2a78b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪞋
+ 0x2a78c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪞌
+ 0x2a78d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪞍
+ 0x2a78e: "\x06\x06\x06\x06\x06\x06\x06", // 𪞎
+ 0x2a78f: "\x06\x06\x06\x06\x06\x06\x06", // 𪞏
+ 0x2a790: "\x06\x06\x06\x06\x06\x06\x06", // 𪞐
+ 0x2a791: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪞑
+ 0x2a792: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪞒
+ 0x2a793: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪞓
+ 0x2a794: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪞔
+ 0x2a795: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪞕
+ 0x2a796: "\x06\x06\x06\x06\x06", // 𪞖
+ 0x2a797: "\x06\x06\x06\x06\x06\x06", // 𪞗
+ 0x2a798: "\x06\x06\x06\x06\x06\x06", // 𪞘
+ 0x2a799: "\x06\x06\x06\x06\x06\x06", // 𪞙
+ 0x2a79a: "\x06\x06\x06\x06\x06\x06", // 𪞚
+ 0x2a79b: "\x06\x06\x06\x06\x06\x06\x06", // 𪞛
+ 0x2a79c: "\x06\x06\x06\x06\x06\x06\x06", // 𪞜
+ 0x2a79d: "\x06\x06\x06\x06\x06\x06\x06", // 𪞝
+ 0x2a79e: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪞞
+ 0x2a79f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪞟
+ 0x2a7a0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪞠
+ 0x2a7a1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪞡
+ 0x2a7a2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪞢
+ 0x2a7a3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪞣
+ 0x2a7a4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪞤
+ 0x2a7a5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪞥
+ 0x2a7a6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪞦
+ 0x2a7a7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪞧
+ 0x2a7a8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪞨
+ 0x2a7a9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪞩
+ 0x2a7aa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪞪
+ 0x2a7ab: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪞫
+ 0x2a7ac: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪞬
+ 0x2a7ad: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪞭
+ 0x2a7ae: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪞮
+ 0x2a7af: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪞯
+ 0x2a7b0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪞰
+ 0x2a7b1: "\x06\x06\x06\x06\x06\x06", // 𪞱
+ 0x2a7b2: "\x06\x06\x06\x06\x06\x06\x06", // 𪞲
+ 0x2a7b3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪞳
+ 0x2a7b4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪞴
+ 0x2a7b5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪞵
+ 0x2a7b6: "\x06\x06\x06\x06\x06", // 𪞶
+ 0x2a7b7: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪞷
+ 0x2a7b8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪞸
+ 0x2a7b9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪞹
+ 0x2a7ba: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪞺
+ 0x2a7bb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪞻
+ 0x2a7bc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪞼
+ 0x2a7bd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪞽
+ 0x2a7be: "\x06\x06\x06\x06\x06\x06", // 𪞾
+ 0x2a7bf: "\x06\x06\x06\x06\x06\x06", // 𪞿
+ 0x2a7c0: "\x06\x06\x06\x06\x06\x06", // 𪟀
+ 0x2a7c1: "\x06\x06\x06\x06\x06\x06\x06", // 𪟁
+ 0x2a7c2: "\x06\x06\x06\x06\x06\x06\x06", // 𪟂
+ 0x2a7c3: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪟃
+ 0x2a7c4: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪟄
+ 0x2a7c5: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪟅
+ 0x2a7c6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪟆
+ 0x2a7c7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪟇
+ 0x2a7c8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪟈
+ 0x2a7c9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪟉
+ 0x2a7ca: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪟊
+ 0x2a7cb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪟋
+ 0x2a7cc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪟌
+ 0x2a7cd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪟍
+ 0x2a7ce: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪟎
+ 0x2a7cf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪟏
+ 0x2a7d0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪟐
+ 0x2a7d1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪟑
+ 0x2a7d2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪟒
+ 0x2a7d3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪟓
+ 0x2a7d4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪟔
+ 0x2a7d5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪟕
+ 0x2a7d6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪟖
+ 0x2a7d7: "\x06\x06\x06\x06\x06\x06\x06", // 𪟗
+ 0x2a7d8: "\x06\x06\x06\x06\x06\x06\x06", // 𪟘
+ 0x2a7d9: "\x06\x06\x06\x06\x06\x06\x06", // 𪟙
+ 0x2a7da: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪟚
+ 0x2a7db: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪟛
+ 0x2a7dc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪟜
+ 0x2a7dd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪟝
+ 0x2a7de: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪟞
+ 0x2a7df: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪟟
+ 0x2a7e0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪟠
+ 0x2a7e1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪟡
+ 0x2a7e2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪟢
+ 0x2a7e3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪟣
+ 0x2a7e4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪟤
+ 0x2a7e5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪟥
+ 0x2a7e6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪟦
+ 0x2a7e7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪟧
+ 0x2a7e8: "\x06\x06\x06", // 𪟨
+ 0x2a7e9: "\x06\x06\x06\x06\x06\x06", // 𪟩
+ 0x2a7ea: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪟪
+ 0x2a7eb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪟫
+ 0x2a7ec: "\x06\x06\x06\x06\x06\x06", // 𪟬
+ 0x2a7ed: "\x06\x06\x06\x06\x06\x06\x06", // 𪟭
+ 0x2a7ee: "\x06\x06\x06\x06\x06\x06\x06", // 𪟮
+ 0x2a7ef: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪟯
+ 0x2a7f0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪟰
+ 0x2a7f1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪟱
+ 0x2a7f2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪟲
+ 0x2a7f3: "\x06\x06\x06\x06\x06\x06\x06", // 𪟳
+ 0x2a7f4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪟴
+ 0x2a7f5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪟵
+ 0x2a7f6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪟶
+ 0x2a7f7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪟷
+ 0x2a7f8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪟸
+ 0x2a7f9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪟹
+ 0x2a7fa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪟺
+ 0x2a7fb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪟻
+ 0x2a7fc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪟼
+ 0x2a7fd: "\x06\x06\x06\x06", // 𪟽
+ 0x2a7fe: "\x06\x06\x06\x06\x06\x06\x06", // 𪟾
+ 0x2a7ff: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪟿
+ 0x2a800: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠀
+ 0x2a801: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠁
+ 0x2a802: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠂
+ 0x2a803: "\x06\x06\x06\x06\x06", // 𪠃
+ 0x2a804: "\x06\x06\x06\x06\x06\x06\x06", // 𪠄
+ 0x2a805: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠅
+ 0x2a806: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠆
+ 0x2a807: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠇
+ 0x2a808: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠈
+ 0x2a809: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠉
+ 0x2a80a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠊
+ 0x2a80b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠋
+ 0x2a80c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠌
+ 0x2a80d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠍
+ 0x2a80e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠎
+ 0x2a80f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠏
+ 0x2a810: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠐
+ 0x2a811: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠑
+ 0x2a812: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠒
+ 0x2a813: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠓
+ 0x2a814: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠔
+ 0x2a815: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠕
+ 0x2a816: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠖
+ 0x2a817: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠗
+ 0x2a818: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠘
+ 0x2a819: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠙
+ 0x2a81a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠚
+ 0x2a81b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠛
+ 0x2a81c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠜
+ 0x2a81d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠝
+ 0x2a81e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠞
+ 0x2a81f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠟
+ 0x2a820: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠠
+ 0x2a821: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠡
+ 0x2a822: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠢
+ 0x2a823: "\x06\x06\x06\x06", // 𪠣
+ 0x2a824: "\x06\x06\x06\x06", // 𪠤
+ 0x2a825: "\x06\x06\x06\x06\x06\x06", // 𪠥
+ 0x2a826: "\x06\x06\x06\x06\x06\x06\x06", // 𪠦
+ 0x2a827: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠧
+ 0x2a828: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠨
+ 0x2a829: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠩
+ 0x2a82a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠪
+ 0x2a82b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠫
+ 0x2a82c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠬
+ 0x2a82d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠭
+ 0x2a82e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠮
+ 0x2a82f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠯
+ 0x2a830: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠰
+ 0x2a831: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠱
+ 0x2a832: "\x06\x06\x06\x06\x06", // 𪠲
+ 0x2a833: "\x06\x06\x06\x06\x06\x06\x06", // 𪠳
+ 0x2a834: "\x06\x06\x06\x06\x06\x06\x06", // 𪠴
+ 0x2a835: "\x06\x06\x06\x06\x06\x06\x06", // 𪠵
+ 0x2a836: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠶
+ 0x2a837: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠷
+ 0x2a838: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠸
+ 0x2a839: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠹
+ 0x2a83a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠺
+ 0x2a83b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠻
+ 0x2a83c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠼
+ 0x2a83d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠽
+ 0x2a83e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠾
+ 0x2a83f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪠿
+ 0x2a840: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡀
+ 0x2a841: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡁
+ 0x2a842: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡂
+ 0x2a843: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡃
+ 0x2a844: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡄
+ 0x2a845: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡅
+ 0x2a846: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡆
+ 0x2a847: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡇
+ 0x2a848: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡈
+ 0x2a849: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡉
+ 0x2a84a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡊
+ 0x2a84b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡋
+ 0x2a84c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡌
+ 0x2a84d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡍
+ 0x2a84e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡎
+ 0x2a84f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡏
+ 0x2a850: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡐
+ 0x2a851: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡑
+ 0x2a852: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡒
+ 0x2a853: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡓
+ 0x2a854: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡔
+ 0x2a855: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡕
+ 0x2a856: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡖
+ 0x2a857: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡗
+ 0x2a858: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡘
+ 0x2a859: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡙
+ 0x2a85a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡚
+ 0x2a85b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡛
+ 0x2a85c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡜
+ 0x2a85d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡝
+ 0x2a85e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡞
+ 0x2a85f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡟
+ 0x2a860: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡠
+ 0x2a861: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡡
+ 0x2a862: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡢
+ 0x2a863: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡣
+ 0x2a864: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡤
+ 0x2a865: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡥
+ 0x2a866: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡦
+ 0x2a867: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡧
+ 0x2a868: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡨
+ 0x2a869: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡩
+ 0x2a86a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡪
+ 0x2a86b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡫
+ 0x2a86c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡬
+ 0x2a86d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡭
+ 0x2a86e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡮
+ 0x2a86f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡯
+ 0x2a870: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡰
+ 0x2a871: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡱
+ 0x2a872: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡲
+ 0x2a873: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡳
+ 0x2a874: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡴
+ 0x2a875: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡵
+ 0x2a876: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡶
+ 0x2a877: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡷
+ 0x2a878: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡸
+ 0x2a879: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡹
+ 0x2a87a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡺
+ 0x2a87b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡻
+ 0x2a87c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡼
+ 0x2a87d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡽
+ 0x2a87e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡾
+ 0x2a87f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪡿
+ 0x2a880: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪢀
+ 0x2a881: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪢁
+ 0x2a882: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪢂
+ 0x2a883: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪢃
+ 0x2a884: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪢄
+ 0x2a885: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪢅
+ 0x2a886: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪢆
+ 0x2a887: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪢇
+ 0x2a888: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪢈
+ 0x2a889: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪢉
+ 0x2a88a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪢊
+ 0x2a88b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪢋
+ 0x2a88c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪢌
+ 0x2a88d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪢍
+ 0x2a88e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪢎
+ 0x2a88f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪢏
+ 0x2a890: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪢐
+ 0x2a891: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪢑
+ 0x2a892: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪢒
+ 0x2a893: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪢓
+ 0x2a894: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪢔
+ 0x2a895: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪢕
+ 0x2a896: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪢖
+ 0x2a897: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪢗
+ 0x2a898: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪢘
+ 0x2a899: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪢙
+ 0x2a89a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪢚
+ 0x2a89b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪢛
+ 0x2a89c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪢜
+ 0x2a89d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪢝
+ 0x2a89e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪢞
+ 0x2a89f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪢟
+ 0x2a8a0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪢠
+ 0x2a8a1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪢡
+ 0x2a8a2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪢢
+ 0x2a8a3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪢣
+ 0x2a8a4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪢤
+ 0x2a8a5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪢥
+ 0x2a8a6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪢦
+ 0x2a8a7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪢧
+ 0x2a8a8: "\x06\x06\x06\x06\x06\x06\x06", // 𪢨
+ 0x2a8a9: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪢩
+ 0x2a8aa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪢪
+ 0x2a8ab: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪢫
+ 0x2a8ac: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪢬
+ 0x2a8ad: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪢭
+ 0x2a8ae: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪢮
+ 0x2a8af: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪢯
+ 0x2a8b0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪢰
+ 0x2a8b1: "\x06\x06\x06\x06\x06", // 𪢱
+ 0x2a8b2: "\x06\x06\x06\x06\x06", // 𪢲
+ 0x2a8b3: "\x06\x06\x06\x06\x06\x06", // 𪢳
+ 0x2a8b4: "\x06\x06\x06\x06\x06\x06", // 𪢴
+ 0x2a8b5: "\x06\x06\x06\x06\x06\x06", // 𪢵
+ 0x2a8b6: "\x06\x06\x06\x06\x06\x06", // 𪢶
+ 0x2a8b7: "\x06\x06\x06\x06\x06\x06", // 𪢷
+ 0x2a8b8: "\x06\x06\x06\x06\x06\x06\x06", // 𪢸
+ 0x2a8b9: "\x06\x06\x06\x06\x06\x06\x06", // 𪢹
+ 0x2a8ba: "\x06\x06\x06\x06\x06\x06\x06", // 𪢺
+ 0x2a8bb: "\x06\x06\x06\x06\x06\x06\x06", // 𪢻
+ 0x2a8bc: "\x06\x06\x06\x06\x06\x06\x06", // 𪢼
+ 0x2a8bd: "\x06\x06\x06\x06\x06\x06\x06", // 𪢽
+ 0x2a8be: "\x06\x06\x06\x06\x06\x06\x06", // 𪢾
+ 0x2a8bf: "\x06\x06\x06\x06\x06\x06\x06", // 𪢿
+ 0x2a8c0: "\x06\x06\x06\x06\x06\x06\x06", // 𪣀
+ 0x2a8c1: "\x06\x06\x06\x06\x06\x06\x06", // 𪣁
+ 0x2a8c2: "\x06\x06\x06\x06\x06\x06\x06", // 𪣂
+ 0x2a8c3: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣃
+ 0x2a8c4: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣄
+ 0x2a8c5: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣅
+ 0x2a8c6: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣆
+ 0x2a8c7: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣇
+ 0x2a8c8: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣈
+ 0x2a8c9: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣉
+ 0x2a8ca: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣊
+ 0x2a8cb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣋
+ 0x2a8cc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣌
+ 0x2a8cd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣍
+ 0x2a8ce: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣎
+ 0x2a8cf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣏
+ 0x2a8d0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣐
+ 0x2a8d1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣑
+ 0x2a8d2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣒
+ 0x2a8d3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣓
+ 0x2a8d4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣔
+ 0x2a8d5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣕
+ 0x2a8d6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣖
+ 0x2a8d7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣗
+ 0x2a8d8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣘
+ 0x2a8d9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣙
+ 0x2a8da: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣚
+ 0x2a8db: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣛
+ 0x2a8dc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣜
+ 0x2a8dd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣝
+ 0x2a8de: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣞
+ 0x2a8df: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣟
+ 0x2a8e0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣠
+ 0x2a8e1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣡
+ 0x2a8e2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣢
+ 0x2a8e3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣣
+ 0x2a8e4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣤
+ 0x2a8e5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣥
+ 0x2a8e6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣦
+ 0x2a8e7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣧
+ 0x2a8e8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣨
+ 0x2a8e9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣩
+ 0x2a8ea: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣪
+ 0x2a8eb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣫
+ 0x2a8ec: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣬
+ 0x2a8ed: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣭
+ 0x2a8ee: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣮
+ 0x2a8ef: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣯
+ 0x2a8f0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣰
+ 0x2a8f1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣱
+ 0x2a8f2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣲
+ 0x2a8f3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣳
+ 0x2a8f4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣴
+ 0x2a8f5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣵
+ 0x2a8f6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣶
+ 0x2a8f7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣷
+ 0x2a8f8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣸
+ 0x2a8f9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣹
+ 0x2a8fa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣺
+ 0x2a8fb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣻
+ 0x2a8fc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣼
+ 0x2a8fd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣽
+ 0x2a8fe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣾
+ 0x2a8ff: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪣿
+ 0x2a900: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤀
+ 0x2a901: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤁
+ 0x2a902: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤂
+ 0x2a903: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤃
+ 0x2a904: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤄
+ 0x2a905: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤅
+ 0x2a906: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤆
+ 0x2a907: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤇
+ 0x2a908: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤈
+ 0x2a909: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤉
+ 0x2a90a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤊
+ 0x2a90b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤋
+ 0x2a90c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤌
+ 0x2a90d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤍
+ 0x2a90e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤎
+ 0x2a90f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤏
+ 0x2a910: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤐
+ 0x2a911: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤑
+ 0x2a912: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤒
+ 0x2a913: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤓
+ 0x2a914: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤔
+ 0x2a915: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤕
+ 0x2a916: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤖
+ 0x2a917: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤗
+ 0x2a918: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤘
+ 0x2a919: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤙
+ 0x2a91a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤚
+ 0x2a91b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤛
+ 0x2a91c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤜
+ 0x2a91d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤝
+ 0x2a91e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤞
+ 0x2a91f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤟
+ 0x2a920: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤠
+ 0x2a921: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤡
+ 0x2a922: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤢
+ 0x2a923: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤣
+ 0x2a924: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤤
+ 0x2a925: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤥
+ 0x2a926: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤦
+ 0x2a927: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤧
+ 0x2a928: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤨
+ 0x2a929: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤩
+ 0x2a92a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤪
+ 0x2a92b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤫
+ 0x2a92c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤬
+ 0x2a92d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤭
+ 0x2a92e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤮
+ 0x2a92f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤯
+ 0x2a930: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤰
+ 0x2a931: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤱
+ 0x2a932: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤲
+ 0x2a933: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤳
+ 0x2a934: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤴
+ 0x2a935: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤵
+ 0x2a936: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤶
+ 0x2a937: "\x06\x06\x06\x06\x06\x06", // 𪤷
+ 0x2a938: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤸
+ 0x2a939: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤹
+ 0x2a93a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤺
+ 0x2a93b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤻
+ 0x2a93c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤼
+ 0x2a93d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤽
+ 0x2a93e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤾
+ 0x2a93f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪤿
+ 0x2a940: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪥀
+ 0x2a941: "\x06\x06\x06\x06", // 𪥁
+ 0x2a942: "\x06\x06\x06\x06\x06", // 𪥂
+ 0x2a943: "\x06\x06\x06\x06\x06\x06", // 𪥃
+ 0x2a944: "\x06\x06\x06\x06\x06\x06\x06", // 𪥄
+ 0x2a945: "\x06\x06\x06\x06\x06\x06\x06", // 𪥅
+ 0x2a946: "\x06\x06\x06\x06\x06\x06\x06", // 𪥆
+ 0x2a947: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪥇
+ 0x2a948: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪥈
+ 0x2a949: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪥉
+ 0x2a94a: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪥊
+ 0x2a94b: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪥋
+ 0x2a94c: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪥌
+ 0x2a94d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪥍
+ 0x2a94e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪥎
+ 0x2a94f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪥏
+ 0x2a950: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪥐
+ 0x2a951: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪥑
+ 0x2a952: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪥒
+ 0x2a953: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪥓
+ 0x2a954: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪥔
+ 0x2a955: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪥕
+ 0x2a956: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪥖
+ 0x2a957: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪥗
+ 0x2a958: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪥘
+ 0x2a959: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪥙
+ 0x2a95a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪥚
+ 0x2a95b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪥛
+ 0x2a95c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪥜
+ 0x2a95d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪥝
+ 0x2a95e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪥞
+ 0x2a95f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪥟
+ 0x2a960: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪥠
+ 0x2a961: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪥡
+ 0x2a962: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪥢
+ 0x2a963: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪥣
+ 0x2a964: "\x06\x06\x06\x06\x06\x06", // 𪥤
+ 0x2a965: "\x06\x06\x06\x06\x06\x06", // 𪥥
+ 0x2a966: "\x06\x06\x06\x06\x06\x06\x06", // 𪥦
+ 0x2a967: "\x06\x06\x06\x06\x06\x06\x06", // 𪥧
+ 0x2a968: "\x06\x06\x06\x06\x06\x06\x06", // 𪥨
+ 0x2a969: "\x06\x06\x06\x06\x06\x06\x06", // 𪥩
+ 0x2a96a: "\x06\x06\x06\x06\x06\x06\x06", // 𪥪
+ 0x2a96b: "\x06\x06\x06\x06\x06\x06\x06", // 𪥫
+ 0x2a96c: "\x06\x06\x06\x06\x06\x06\x06", // 𪥬
+ 0x2a96d: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪥭
+ 0x2a96e: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪥮
+ 0x2a96f: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪥯
+ 0x2a970: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪥰
+ 0x2a971: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪥱
+ 0x2a972: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪥲
+ 0x2a973: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪥳
+ 0x2a974: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪥴
+ 0x2a975: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪥵
+ 0x2a976: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪥶
+ 0x2a977: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪥷
+ 0x2a978: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪥸
+ 0x2a979: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪥹
+ 0x2a97a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪥺
+ 0x2a97b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪥻
+ 0x2a97c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪥼
+ 0x2a97d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪥽
+ 0x2a97e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪥾
+ 0x2a97f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪥿
+ 0x2a980: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦀
+ 0x2a981: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦁
+ 0x2a982: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦂
+ 0x2a983: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦃
+ 0x2a984: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦄
+ 0x2a985: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦅
+ 0x2a986: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦆
+ 0x2a987: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦇
+ 0x2a988: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦈
+ 0x2a989: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦉
+ 0x2a98a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦊
+ 0x2a98b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦋
+ 0x2a98c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦌
+ 0x2a98d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦍
+ 0x2a98e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦎
+ 0x2a98f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦏
+ 0x2a990: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦐
+ 0x2a991: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦑
+ 0x2a992: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦒
+ 0x2a993: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦓
+ 0x2a994: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦔
+ 0x2a995: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦕
+ 0x2a996: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦖
+ 0x2a997: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦗
+ 0x2a998: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦘
+ 0x2a999: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦙
+ 0x2a99a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦚
+ 0x2a99b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦛
+ 0x2a99c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦜
+ 0x2a99d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦝
+ 0x2a99e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦞
+ 0x2a99f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦟
+ 0x2a9a0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦠
+ 0x2a9a1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦡
+ 0x2a9a2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦢
+ 0x2a9a3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦣
+ 0x2a9a4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦤
+ 0x2a9a5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦥
+ 0x2a9a6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦦
+ 0x2a9a7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦧
+ 0x2a9a8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦨
+ 0x2a9a9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦩
+ 0x2a9aa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦪
+ 0x2a9ab: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦫
+ 0x2a9ac: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦬
+ 0x2a9ad: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦭
+ 0x2a9ae: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦮
+ 0x2a9af: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦯
+ 0x2a9b0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦰
+ 0x2a9b1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦱
+ 0x2a9b2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦲
+ 0x2a9b3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦳
+ 0x2a9b4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦴
+ 0x2a9b5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦵
+ 0x2a9b6: "\x06\x06\x06\x06\x06\x06\x06", // 𪦶
+ 0x2a9b7: "\x06\x06\x06\x06\x06\x06\x06", // 𪦷
+ 0x2a9b8: "\x06\x06\x06\x06\x06\x06\x06", // 𪦸
+ 0x2a9b9: "\x06\x06\x06\x06\x06\x06\x06", // 𪦹
+ 0x2a9ba: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦺
+ 0x2a9bb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦻
+ 0x2a9bc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦼
+ 0x2a9bd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦽
+ 0x2a9be: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦾
+ 0x2a9bf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪦿
+ 0x2a9c0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧀
+ 0x2a9c1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧁
+ 0x2a9c2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧂
+ 0x2a9c3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧃
+ 0x2a9c4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧄
+ 0x2a9c5: "\x06\x06\x06\x06\x06\x06\x06", // 𪧅
+ 0x2a9c6: "\x06\x06\x06\x06\x06\x06\x06", // 𪧆
+ 0x2a9c7: "\x06\x06\x06\x06\x06\x06\x06", // 𪧇
+ 0x2a9c8: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧈
+ 0x2a9c9: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧉
+ 0x2a9ca: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧊
+ 0x2a9cb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧋
+ 0x2a9cc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧌
+ 0x2a9cd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧍
+ 0x2a9ce: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧎
+ 0x2a9cf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧏
+ 0x2a9d0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧐
+ 0x2a9d1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧑
+ 0x2a9d2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧒
+ 0x2a9d3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧓
+ 0x2a9d4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧔
+ 0x2a9d5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧕
+ 0x2a9d6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧖
+ 0x2a9d7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧗
+ 0x2a9d8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧘
+ 0x2a9d9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧙
+ 0x2a9da: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧚
+ 0x2a9db: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧛
+ 0x2a9dc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧜
+ 0x2a9dd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧝
+ 0x2a9de: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧞
+ 0x2a9df: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧟
+ 0x2a9e0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧠
+ 0x2a9e1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧡
+ 0x2a9e2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧢
+ 0x2a9e3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧣
+ 0x2a9e4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧤
+ 0x2a9e5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧥
+ 0x2a9e6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧦
+ 0x2a9e7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧧
+ 0x2a9e8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧨
+ 0x2a9e9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧩
+ 0x2a9ea: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧪
+ 0x2a9eb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧫
+ 0x2a9ec: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧬
+ 0x2a9ed: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧭
+ 0x2a9ee: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧮
+ 0x2a9ef: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧯
+ 0x2a9f0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧰
+ 0x2a9f1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧱
+ 0x2a9f2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧲
+ 0x2a9f3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧳
+ 0x2a9f4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧴
+ 0x2a9f5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧵
+ 0x2a9f6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧶
+ 0x2a9f7: "\x06\x06\x06\x06\x06\x06", // 𪧷
+ 0x2a9f8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧸
+ 0x2a9f9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧹
+ 0x2a9fa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧺
+ 0x2a9fb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧻
+ 0x2a9fc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧼
+ 0x2a9fd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧽
+ 0x2a9fe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪧾
+ 0x2a9ff: "\x06\x06\x06\x06\x06\x06\x06", // 𪧿
+ 0x2aa00: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨀
+ 0x2aa01: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨁
+ 0x2aa02: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨂
+ 0x2aa03: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨃
+ 0x2aa04: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨄
+ 0x2aa05: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨅
+ 0x2aa06: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨆
+ 0x2aa07: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨇
+ 0x2aa08: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨈
+ 0x2aa09: "\x06\x06\x06\x06\x06\x06\x06", // 𪨉
+ 0x2aa0a: "\x06\x06\x06\x06\x06\x06\x06", // 𪨊
+ 0x2aa0b: "\x06\x06\x06\x06\x06\x06\x06", // 𪨋
+ 0x2aa0c: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨌
+ 0x2aa0d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨍
+ 0x2aa0e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨎
+ 0x2aa0f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨏
+ 0x2aa10: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨐
+ 0x2aa11: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨑
+ 0x2aa12: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨒
+ 0x2aa13: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨓
+ 0x2aa14: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨔
+ 0x2aa15: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨕
+ 0x2aa16: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨖
+ 0x2aa17: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨗
+ 0x2aa18: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨘
+ 0x2aa19: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨙
+ 0x2aa1a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨚
+ 0x2aa1b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨛
+ 0x2aa1c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨜
+ 0x2aa1d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨝
+ 0x2aa1e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨞
+ 0x2aa1f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨟
+ 0x2aa20: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨠
+ 0x2aa21: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨡
+ 0x2aa22: "\x06\x06\x06\x06\x06\x06", // 𪨢
+ 0x2aa23: "\x06\x06\x06\x06\x06\x06", // 𪨣
+ 0x2aa24: "\x06\x06\x06\x06\x06\x06", // 𪨤
+ 0x2aa25: "\x06\x06\x06\x06\x06\x06", // 𪨥
+ 0x2aa26: "\x06\x06\x06\x06\x06\x06\x06", // 𪨦
+ 0x2aa27: "\x06\x06\x06\x06\x06\x06\x06", // 𪨧
+ 0x2aa28: "\x06\x06\x06\x06\x06\x06\x06", // 𪨨
+ 0x2aa29: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨩
+ 0x2aa2a: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨪
+ 0x2aa2b: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨫
+ 0x2aa2c: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨬
+ 0x2aa2d: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨭
+ 0x2aa2e: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨮
+ 0x2aa2f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨯
+ 0x2aa30: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨰
+ 0x2aa31: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨱
+ 0x2aa32: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨲
+ 0x2aa33: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨳
+ 0x2aa34: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨴
+ 0x2aa35: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨵
+ 0x2aa36: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨶
+ 0x2aa37: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨷
+ 0x2aa38: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨸
+ 0x2aa39: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨹
+ 0x2aa3a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨺
+ 0x2aa3b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨻
+ 0x2aa3c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨼
+ 0x2aa3d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨽
+ 0x2aa3e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨾
+ 0x2aa3f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪨿
+ 0x2aa40: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩀
+ 0x2aa41: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩁
+ 0x2aa42: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩂
+ 0x2aa43: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩃
+ 0x2aa44: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩄
+ 0x2aa45: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩅
+ 0x2aa46: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩆
+ 0x2aa47: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩇
+ 0x2aa48: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩈
+ 0x2aa49: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩉
+ 0x2aa4a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩊
+ 0x2aa4b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩋
+ 0x2aa4c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩌
+ 0x2aa4d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩍
+ 0x2aa4e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩎
+ 0x2aa4f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩏
+ 0x2aa50: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩐
+ 0x2aa51: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩑
+ 0x2aa52: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩒
+ 0x2aa53: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩓
+ 0x2aa54: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩔
+ 0x2aa55: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩕
+ 0x2aa56: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩖
+ 0x2aa57: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩗
+ 0x2aa58: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩘
+ 0x2aa59: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩙
+ 0x2aa5a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩚
+ 0x2aa5b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩛
+ 0x2aa5c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩜
+ 0x2aa5d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩝
+ 0x2aa5e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩞
+ 0x2aa5f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩟
+ 0x2aa60: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩠
+ 0x2aa61: "\x06\x06\x06\x06\x06\x06\x06", // 𪩡
+ 0x2aa62: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩢
+ 0x2aa63: "\x06\x06\x06\x06\x06\x06", // 𪩣
+ 0x2aa64: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩤
+ 0x2aa65: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩥
+ 0x2aa66: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩦
+ 0x2aa67: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩧
+ 0x2aa68: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩨
+ 0x2aa69: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩩
+ 0x2aa6a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩪
+ 0x2aa6b: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩫
+ 0x2aa6c: "\x06\x06\x06\x06\x06\x06\x06", // 𪩬
+ 0x2aa6d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩭
+ 0x2aa6e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩮
+ 0x2aa6f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩯
+ 0x2aa70: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩰
+ 0x2aa71: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩱
+ 0x2aa72: "\x06\x06\x06\x06\x06", // 𪩲
+ 0x2aa73: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩳
+ 0x2aa74: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩴
+ 0x2aa75: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩵
+ 0x2aa76: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩶
+ 0x2aa77: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩷
+ 0x2aa78: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩸
+ 0x2aa79: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩹
+ 0x2aa7a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩺
+ 0x2aa7b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩻
+ 0x2aa7c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩼
+ 0x2aa7d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩽
+ 0x2aa7e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩾
+ 0x2aa7f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪩿
+ 0x2aa80: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪀
+ 0x2aa81: "\x06\x06\x06\x06\x06\x06\x06", // 𪪁
+ 0x2aa82: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪂
+ 0x2aa83: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪃
+ 0x2aa84: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪄
+ 0x2aa85: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪅
+ 0x2aa86: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪆
+ 0x2aa87: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪇
+ 0x2aa88: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪈
+ 0x2aa89: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪉
+ 0x2aa8a: "\x06\x06\x06\x06\x06\x06", // 𪪊
+ 0x2aa8b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪋
+ 0x2aa8c: "\x06\x06\x06\x06\x06\x06\x06", // 𪪌
+ 0x2aa8d: "\x06\x06\x06\x06\x06\x06\x06", // 𪪍
+ 0x2aa8e: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪎
+ 0x2aa8f: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪏
+ 0x2aa90: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪐
+ 0x2aa91: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪑
+ 0x2aa92: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪒
+ 0x2aa93: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪓
+ 0x2aa94: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪔
+ 0x2aa95: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪕
+ 0x2aa96: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪖
+ 0x2aa97: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪗
+ 0x2aa98: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪘
+ 0x2aa99: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪙
+ 0x2aa9a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪚
+ 0x2aa9b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪛
+ 0x2aa9c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪜
+ 0x2aa9d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪝
+ 0x2aa9e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪞
+ 0x2aa9f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪟
+ 0x2aaa0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪠
+ 0x2aaa1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪡
+ 0x2aaa2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪢
+ 0x2aaa3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪣
+ 0x2aaa4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪤
+ 0x2aaa5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪥
+ 0x2aaa6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪦
+ 0x2aaa7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪧
+ 0x2aaa8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪨
+ 0x2aaa9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪩
+ 0x2aaaa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪪
+ 0x2aaab: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪫
+ 0x2aaac: "\x06\x06\x06\x06\x06", // 𪪬
+ 0x2aaad: "\x06\x06\x06\x06\x06\x06\x06", // 𪪭
+ 0x2aaae: "\x06\x06\x06\x06\x06\x06\x06", // 𪪮
+ 0x2aaaf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪯
+ 0x2aab0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪰
+ 0x2aab1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪱
+ 0x2aab2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪲
+ 0x2aab3: "\x06\x06\x06\x06\x06\x06\x06", // 𪪳
+ 0x2aab4: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪴
+ 0x2aab5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪵
+ 0x2aab6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪶
+ 0x2aab7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪷
+ 0x2aab8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪸
+ 0x2aab9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪹
+ 0x2aaba: "\x06\x06\x06\x06\x06\x06", // 𪪺
+ 0x2aabb: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪻
+ 0x2aabc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪼
+ 0x2aabd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪽
+ 0x2aabe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪾
+ 0x2aabf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪪿
+ 0x2aac0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫀
+ 0x2aac1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫁
+ 0x2aac2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫂
+ 0x2aac3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫃
+ 0x2aac4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫄
+ 0x2aac5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫅
+ 0x2aac6: "\x06\x06\x06\x06\x06\x06", // 𪫆
+ 0x2aac7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫇
+ 0x2aac8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫈
+ 0x2aac9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫉
+ 0x2aaca: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫊
+ 0x2aacb: "\x06\x06\x06\x06\x06\x06\x06", // 𪫋
+ 0x2aacc: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫌
+ 0x2aacd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫍
+ 0x2aace: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫎
+ 0x2aacf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫏
+ 0x2aad0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫐
+ 0x2aad1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫑
+ 0x2aad2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫒
+ 0x2aad3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫓
+ 0x2aad4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫔
+ 0x2aad5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫕
+ 0x2aad6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫖
+ 0x2aad7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫗
+ 0x2aad8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫘
+ 0x2aad9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫙
+ 0x2aada: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫚
+ 0x2aadb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫛
+ 0x2aadc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫜
+ 0x2aadd: "\x06\x06\x06\x06\x06", // 𪫝
+ 0x2aade: "\x06\x06\x06\x06\x06\x06", // 𪫞
+ 0x2aadf: "\x06\x06\x06\x06\x06\x06\x06", // 𪫟
+ 0x2aae0: "\x06\x06\x06\x06\x06\x06\x06", // 𪫠
+ 0x2aae1: "\x06\x06\x06\x06\x06\x06\x06", // 𪫡
+ 0x2aae2: "\x06\x06\x06\x06\x06\x06\x06", // 𪫢
+ 0x2aae3: "\x06\x06\x06\x06\x06\x06\x06", // 𪫣
+ 0x2aae4: "\x06\x06\x06\x06\x06\x06\x06", // 𪫤
+ 0x2aae5: "\x06\x06\x06\x06\x06\x06\x06", // 𪫥
+ 0x2aae6: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫦
+ 0x2aae7: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫧
+ 0x2aae8: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫨
+ 0x2aae9: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫩
+ 0x2aaea: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫪
+ 0x2aaeb: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫫
+ 0x2aaec: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫬
+ 0x2aaed: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫭
+ 0x2aaee: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫮
+ 0x2aaef: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫯
+ 0x2aaf0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫰
+ 0x2aaf1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫱
+ 0x2aaf2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫲
+ 0x2aaf3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫳
+ 0x2aaf4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫴
+ 0x2aaf5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫵
+ 0x2aaf6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫶
+ 0x2aaf7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫷
+ 0x2aaf8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫸
+ 0x2aaf9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫹
+ 0x2aafa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫺
+ 0x2aafb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫻
+ 0x2aafc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫼
+ 0x2aafd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫽
+ 0x2aafe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫾
+ 0x2aaff: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪫿
+ 0x2ab00: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬀
+ 0x2ab01: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬁
+ 0x2ab02: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬂
+ 0x2ab03: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬃
+ 0x2ab04: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬄
+ 0x2ab05: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬅
+ 0x2ab06: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬆
+ 0x2ab07: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬇
+ 0x2ab08: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬈
+ 0x2ab09: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬉
+ 0x2ab0a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬊
+ 0x2ab0b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬋
+ 0x2ab0c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬌
+ 0x2ab0d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬍
+ 0x2ab0e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬎
+ 0x2ab0f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬏
+ 0x2ab10: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬐
+ 0x2ab11: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬑
+ 0x2ab12: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬒
+ 0x2ab13: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬓
+ 0x2ab14: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬔
+ 0x2ab15: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬕
+ 0x2ab16: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬖
+ 0x2ab17: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬗
+ 0x2ab18: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬘
+ 0x2ab19: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬙
+ 0x2ab1a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬚
+ 0x2ab1b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬛
+ 0x2ab1c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬜
+ 0x2ab1d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬝
+ 0x2ab1e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬞
+ 0x2ab1f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬟
+ 0x2ab20: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬠
+ 0x2ab21: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬡
+ 0x2ab22: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬢
+ 0x2ab23: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬣
+ 0x2ab24: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬤
+ 0x2ab25: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬥
+ 0x2ab26: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬦
+ 0x2ab27: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬧
+ 0x2ab28: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬨
+ 0x2ab29: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬩
+ 0x2ab2a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬪
+ 0x2ab2b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬫
+ 0x2ab2c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬬
+ 0x2ab2d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬭
+ 0x2ab2e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬮
+ 0x2ab2f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬯
+ 0x2ab30: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬰
+ 0x2ab31: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬱
+ 0x2ab32: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬲
+ 0x2ab33: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬳
+ 0x2ab34: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬴
+ 0x2ab35: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬵
+ 0x2ab36: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬶
+ 0x2ab37: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬷
+ 0x2ab38: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬸
+ 0x2ab39: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬹
+ 0x2ab3a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬺
+ 0x2ab3b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬻
+ 0x2ab3c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬼
+ 0x2ab3d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬽
+ 0x2ab3e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬾
+ 0x2ab3f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪬿
+ 0x2ab40: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭀
+ 0x2ab41: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭁
+ 0x2ab42: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭂
+ 0x2ab43: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭃
+ 0x2ab44: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭄
+ 0x2ab45: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭅
+ 0x2ab46: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭆
+ 0x2ab47: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭇
+ 0x2ab48: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭈
+ 0x2ab49: "\x06\x06\x06\x06\x06", // 𪭉
+ 0x2ab4a: "\x06\x06\x06\x06\x06\x06", // 𪭊
+ 0x2ab4b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭋
+ 0x2ab4c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭌
+ 0x2ab4d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭍
+ 0x2ab4e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭎
+ 0x2ab4f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭏
+ 0x2ab50: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭐
+ 0x2ab51: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭑
+ 0x2ab52: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭒
+ 0x2ab53: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭓
+ 0x2ab54: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭔
+ 0x2ab55: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭕
+ 0x2ab56: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭖
+ 0x2ab57: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭗
+ 0x2ab58: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭘
+ 0x2ab59: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭙
+ 0x2ab5a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭚
+ 0x2ab5b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭛
+ 0x2ab5c: "\x06\x06\x06\x06\x06\x06", // 𪭜
+ 0x2ab5d: "\x06\x06\x06\x06\x06\x06\x06", // 𪭝
+ 0x2ab5e: "\x06\x06\x06\x06\x06\x06\x06", // 𪭞
+ 0x2ab5f: "\x06\x06\x06\x06\x06\x06\x06", // 𪭟
+ 0x2ab60: "\x06\x06\x06\x06\x06\x06\x06", // 𪭠
+ 0x2ab61: "\x06\x06\x06\x06\x06\x06\x06", // 𪭡
+ 0x2ab62: "\x06\x06\x06\x06\x06\x06\x06", // 𪭢
+ 0x2ab63: "\x06\x06\x06\x06\x06\x06\x06", // 𪭣
+ 0x2ab64: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭤
+ 0x2ab65: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭥
+ 0x2ab66: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭦
+ 0x2ab67: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭧
+ 0x2ab68: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭨
+ 0x2ab69: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭩
+ 0x2ab6a: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭪
+ 0x2ab6b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭫
+ 0x2ab6c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭬
+ 0x2ab6d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭭
+ 0x2ab6e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭮
+ 0x2ab6f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭯
+ 0x2ab70: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭰
+ 0x2ab71: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭱
+ 0x2ab72: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭲
+ 0x2ab73: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭳
+ 0x2ab74: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭴
+ 0x2ab75: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭵
+ 0x2ab76: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭶
+ 0x2ab77: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭷
+ 0x2ab78: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭸
+ 0x2ab79: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭹
+ 0x2ab7a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭺
+ 0x2ab7b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭻
+ 0x2ab7c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭼
+ 0x2ab7d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭽
+ 0x2ab7e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭾
+ 0x2ab7f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪭿
+ 0x2ab80: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮀
+ 0x2ab81: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮁
+ 0x2ab82: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮂
+ 0x2ab83: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮃
+ 0x2ab84: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮄
+ 0x2ab85: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮅
+ 0x2ab86: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮆
+ 0x2ab87: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮇
+ 0x2ab88: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮈
+ 0x2ab89: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮉
+ 0x2ab8a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮊
+ 0x2ab8b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮋
+ 0x2ab8c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮌
+ 0x2ab8d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮍
+ 0x2ab8e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮎
+ 0x2ab8f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮏
+ 0x2ab90: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮐
+ 0x2ab91: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮑
+ 0x2ab92: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮒
+ 0x2ab93: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮓
+ 0x2ab94: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮔
+ 0x2ab95: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮕
+ 0x2ab96: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮖
+ 0x2ab97: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮗
+ 0x2ab98: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮘
+ 0x2ab99: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮙
+ 0x2ab9a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮚
+ 0x2ab9b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮛
+ 0x2ab9c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮜
+ 0x2ab9d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮝
+ 0x2ab9e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮞
+ 0x2ab9f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮟
+ 0x2aba0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮠
+ 0x2aba1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮡
+ 0x2aba2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮢
+ 0x2aba3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮣
+ 0x2aba4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮤
+ 0x2aba5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮥
+ 0x2aba6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮦
+ 0x2aba7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮧
+ 0x2aba8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮨
+ 0x2aba9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮩
+ 0x2abaa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮪
+ 0x2abab: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮫
+ 0x2abac: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮬
+ 0x2abad: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮭
+ 0x2abae: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮮
+ 0x2abaf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮯
+ 0x2abb0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮰
+ 0x2abb1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮱
+ 0x2abb2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮲
+ 0x2abb3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮳
+ 0x2abb4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮴
+ 0x2abb5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮵
+ 0x2abb6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮶
+ 0x2abb7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮷
+ 0x2abb8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮸
+ 0x2abb9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮹
+ 0x2abba: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮺
+ 0x2abbb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮻
+ 0x2abbc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮼
+ 0x2abbd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮽
+ 0x2abbe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮾
+ 0x2abbf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪮿
+ 0x2abc0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯀
+ 0x2abc1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯁
+ 0x2abc2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯂
+ 0x2abc3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯃
+ 0x2abc4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯄
+ 0x2abc5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯅
+ 0x2abc6: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯆
+ 0x2abc7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯇
+ 0x2abc8: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯈
+ 0x2abc9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯉
+ 0x2abca: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯊
+ 0x2abcb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯋
+ 0x2abcc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯌
+ 0x2abcd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯍
+ 0x2abce: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯎
+ 0x2abcf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯏
+ 0x2abd0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯐
+ 0x2abd1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯑
+ 0x2abd2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯒
+ 0x2abd3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯓
+ 0x2abd4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯔
+ 0x2abd5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯕
+ 0x2abd6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯖
+ 0x2abd7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯗
+ 0x2abd8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯘
+ 0x2abd9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯙
+ 0x2abda: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯚
+ 0x2abdb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯛
+ 0x2abdc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯜
+ 0x2abdd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯝
+ 0x2abde: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯞
+ 0x2abdf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯟
+ 0x2abe0: "\x06\x06\x06\x06\x06\x06\x06", // 𪯠
+ 0x2abe1: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯡
+ 0x2abe2: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯢
+ 0x2abe3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯣
+ 0x2abe4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯤
+ 0x2abe5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯥
+ 0x2abe6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯦
+ 0x2abe7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯧
+ 0x2abe8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯨
+ 0x2abe9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯩
+ 0x2abea: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯪
+ 0x2abeb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯫
+ 0x2abec: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯬
+ 0x2abed: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯭
+ 0x2abee: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯮
+ 0x2abef: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯯
+ 0x2abf0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯰
+ 0x2abf1: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯱
+ 0x2abf2: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯲
+ 0x2abf3: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯳
+ 0x2abf4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯴
+ 0x2abf5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯵
+ 0x2abf6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯶
+ 0x2abf7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯷
+ 0x2abf8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯸
+ 0x2abf9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯹
+ 0x2abfa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯺
+ 0x2abfb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯻
+ 0x2abfc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯼
+ 0x2abfd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯽
+ 0x2abfe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯾
+ 0x2abff: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪯿
+ 0x2ac00: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰀
+ 0x2ac01: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰁
+ 0x2ac02: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰂
+ 0x2ac03: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰃
+ 0x2ac04: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰄
+ 0x2ac05: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰅
+ 0x2ac06: "\x06\x06\x06\x06\x06\x06\x06", // 𪰆
+ 0x2ac07: "\x06\x06\x06\x06\x06\x06\x06", // 𪰇
+ 0x2ac08: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰈
+ 0x2ac09: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰉
+ 0x2ac0a: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰊
+ 0x2ac0b: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰋
+ 0x2ac0c: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰌
+ 0x2ac0d: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰍
+ 0x2ac0e: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰎
+ 0x2ac0f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰏
+ 0x2ac10: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰐
+ 0x2ac11: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰑
+ 0x2ac12: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰒
+ 0x2ac13: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰓
+ 0x2ac14: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰔
+ 0x2ac15: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰕
+ 0x2ac16: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰖
+ 0x2ac17: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰗
+ 0x2ac18: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰘
+ 0x2ac19: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰙
+ 0x2ac1a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰚
+ 0x2ac1b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰛
+ 0x2ac1c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰜
+ 0x2ac1d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰝
+ 0x2ac1e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰞
+ 0x2ac1f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰟
+ 0x2ac20: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰠
+ 0x2ac21: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰡
+ 0x2ac22: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰢
+ 0x2ac23: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰣
+ 0x2ac24: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰤
+ 0x2ac25: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰥
+ 0x2ac26: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰦
+ 0x2ac27: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰧
+ 0x2ac28: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰨
+ 0x2ac29: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰩
+ 0x2ac2a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰪
+ 0x2ac2b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰫
+ 0x2ac2c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰬
+ 0x2ac2d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰭
+ 0x2ac2e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰮
+ 0x2ac2f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰯
+ 0x2ac30: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰰
+ 0x2ac31: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰱
+ 0x2ac32: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰲
+ 0x2ac33: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰳
+ 0x2ac34: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰴
+ 0x2ac35: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰵
+ 0x2ac36: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰶
+ 0x2ac37: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰷
+ 0x2ac38: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰸
+ 0x2ac39: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰹
+ 0x2ac3a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰺
+ 0x2ac3b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰻
+ 0x2ac3c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰼
+ 0x2ac3d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰽
+ 0x2ac3e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰾
+ 0x2ac3f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪰿
+ 0x2ac40: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱀
+ 0x2ac41: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱁
+ 0x2ac42: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱂
+ 0x2ac43: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱃
+ 0x2ac44: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱄
+ 0x2ac45: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱅
+ 0x2ac46: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱆
+ 0x2ac47: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱇
+ 0x2ac48: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱈
+ 0x2ac49: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱉
+ 0x2ac4a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱊
+ 0x2ac4b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱋
+ 0x2ac4c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱌
+ 0x2ac4d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱍
+ 0x2ac4e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱎
+ 0x2ac4f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱏
+ 0x2ac50: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱐
+ 0x2ac51: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱑
+ 0x2ac52: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱒
+ 0x2ac53: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱓
+ 0x2ac54: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱔
+ 0x2ac55: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱕
+ 0x2ac56: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱖
+ 0x2ac57: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱗
+ 0x2ac58: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱘
+ 0x2ac59: "\x06\x06\x06\x06\x06\x06", // 𪱙
+ 0x2ac5a: "\x06\x06\x06\x06\x06\x06\x06", // 𪱚
+ 0x2ac5b: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱛
+ 0x2ac5c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱜
+ 0x2ac5d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱝
+ 0x2ac5e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱞
+ 0x2ac5f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱟
+ 0x2ac60: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱠
+ 0x2ac61: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱡
+ 0x2ac62: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱢
+ 0x2ac63: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱣
+ 0x2ac64: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱤
+ 0x2ac65: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱥
+ 0x2ac66: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱦
+ 0x2ac67: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱧
+ 0x2ac68: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱨
+ 0x2ac69: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱩
+ 0x2ac6a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱪
+ 0x2ac6b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱫
+ 0x2ac6c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱬
+ 0x2ac6d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱭
+ 0x2ac6e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱮
+ 0x2ac6f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱯
+ 0x2ac70: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱰
+ 0x2ac71: "\x06\x06\x06\x06\x06\x06\x06", // 𪱱
+ 0x2ac72: "\x06\x06\x06\x06\x06\x06\x06", // 𪱲
+ 0x2ac73: "\x06\x06\x06\x06\x06\x06\x06", // 𪱳
+ 0x2ac74: "\x06\x06\x06\x06\x06\x06\x06", // 𪱴
+ 0x2ac75: "\x06\x06\x06\x06\x06\x06\x06", // 𪱵
+ 0x2ac76: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱶
+ 0x2ac77: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱷
+ 0x2ac78: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱸
+ 0x2ac79: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱹
+ 0x2ac7a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱺
+ 0x2ac7b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱻
+ 0x2ac7c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱼
+ 0x2ac7d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱽
+ 0x2ac7e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱾
+ 0x2ac7f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪱿
+ 0x2ac80: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲀
+ 0x2ac81: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲁
+ 0x2ac82: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲂
+ 0x2ac83: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲃
+ 0x2ac84: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲄
+ 0x2ac85: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲅
+ 0x2ac86: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲆
+ 0x2ac87: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲇
+ 0x2ac88: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲈
+ 0x2ac89: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲉
+ 0x2ac8a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲊
+ 0x2ac8b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲋
+ 0x2ac8c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲌
+ 0x2ac8d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲍
+ 0x2ac8e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲎
+ 0x2ac8f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲏
+ 0x2ac90: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲐
+ 0x2ac91: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲑
+ 0x2ac92: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲒
+ 0x2ac93: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲓
+ 0x2ac94: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲔
+ 0x2ac95: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲕
+ 0x2ac96: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲖
+ 0x2ac97: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲗
+ 0x2ac98: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲘
+ 0x2ac99: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲙
+ 0x2ac9a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲚
+ 0x2ac9b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲛
+ 0x2ac9c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲜
+ 0x2ac9d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲝
+ 0x2ac9e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲞
+ 0x2ac9f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲟
+ 0x2aca0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲠
+ 0x2aca1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲡
+ 0x2aca2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲢
+ 0x2aca3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲣
+ 0x2aca4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲤
+ 0x2aca5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲥
+ 0x2aca6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲦
+ 0x2aca7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲧
+ 0x2aca8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲨
+ 0x2aca9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲩
+ 0x2acaa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲪
+ 0x2acab: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲫
+ 0x2acac: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲬
+ 0x2acad: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲭
+ 0x2acae: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲮
+ 0x2acaf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲯
+ 0x2acb0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲰
+ 0x2acb1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲱
+ 0x2acb2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲲
+ 0x2acb3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲳
+ 0x2acb4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲴
+ 0x2acb5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲵
+ 0x2acb6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲶
+ 0x2acb7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲷
+ 0x2acb8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲸
+ 0x2acb9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲹
+ 0x2acba: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲺
+ 0x2acbb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲻
+ 0x2acbc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲼
+ 0x2acbd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲽
+ 0x2acbe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲾
+ 0x2acbf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪲿
+ 0x2acc0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳀
+ 0x2acc1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳁
+ 0x2acc2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳂
+ 0x2acc3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳃
+ 0x2acc4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳄
+ 0x2acc5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳅
+ 0x2acc6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳆
+ 0x2acc7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳇
+ 0x2acc8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳈
+ 0x2acc9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳉
+ 0x2acca: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳊
+ 0x2accb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳋
+ 0x2accc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳌
+ 0x2accd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳍
+ 0x2acce: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳎
+ 0x2accf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳏
+ 0x2acd0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳐
+ 0x2acd1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳑
+ 0x2acd2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳒
+ 0x2acd3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳓
+ 0x2acd4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳔
+ 0x2acd5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳕
+ 0x2acd6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳖
+ 0x2acd7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳗
+ 0x2acd8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳘
+ 0x2acd9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳙
+ 0x2acda: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳚
+ 0x2acdb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳛
+ 0x2acdc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳜
+ 0x2acdd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳝
+ 0x2acde: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳞
+ 0x2acdf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳟
+ 0x2ace0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳠
+ 0x2ace1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳡
+ 0x2ace2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳢
+ 0x2ace3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳣
+ 0x2ace4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳤
+ 0x2ace5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳥
+ 0x2ace6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳦
+ 0x2ace7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳧
+ 0x2ace8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳨
+ 0x2ace9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳩
+ 0x2acea: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳪
+ 0x2aceb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳫
+ 0x2acec: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳬
+ 0x2aced: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳭
+ 0x2acee: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳮
+ 0x2acef: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳯
+ 0x2acf0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳰
+ 0x2acf1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳱
+ 0x2acf2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳲
+ 0x2acf3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳳
+ 0x2acf4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳴
+ 0x2acf5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳵
+ 0x2acf6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳶
+ 0x2acf7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳷
+ 0x2acf8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳸
+ 0x2acf9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳹
+ 0x2acfa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳺
+ 0x2acfb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳻
+ 0x2acfc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳼
+ 0x2acfd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳽
+ 0x2acfe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳾
+ 0x2acff: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪳿
+ 0x2ad00: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴀
+ 0x2ad01: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴁
+ 0x2ad02: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴂
+ 0x2ad03: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴃
+ 0x2ad04: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴄
+ 0x2ad05: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴅
+ 0x2ad06: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴆
+ 0x2ad07: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴇
+ 0x2ad08: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴈
+ 0x2ad09: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴉
+ 0x2ad0a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴊
+ 0x2ad0b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴋
+ 0x2ad0c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴌
+ 0x2ad0d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴍
+ 0x2ad0e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴎
+ 0x2ad0f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴏
+ 0x2ad10: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴐
+ 0x2ad11: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴑
+ 0x2ad12: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴒
+ 0x2ad13: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴓
+ 0x2ad14: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴔
+ 0x2ad15: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴕
+ 0x2ad16: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴖
+ 0x2ad17: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴗
+ 0x2ad18: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴘
+ 0x2ad19: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴙
+ 0x2ad1a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴚
+ 0x2ad1b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴛
+ 0x2ad1c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴜
+ 0x2ad1d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴝
+ 0x2ad1e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴞
+ 0x2ad1f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴟
+ 0x2ad20: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴠
+ 0x2ad21: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴡
+ 0x2ad22: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴢
+ 0x2ad23: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴣
+ 0x2ad24: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴤
+ 0x2ad25: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴥
+ 0x2ad26: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴦
+ 0x2ad27: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴧
+ 0x2ad28: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴨
+ 0x2ad29: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴩
+ 0x2ad2a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴪
+ 0x2ad2b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴫
+ 0x2ad2c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴬
+ 0x2ad2d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴭
+ 0x2ad2e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴮
+ 0x2ad2f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴯
+ 0x2ad30: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴰
+ 0x2ad31: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴱
+ 0x2ad32: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴲
+ 0x2ad33: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴳
+ 0x2ad34: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴴
+ 0x2ad35: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴵
+ 0x2ad36: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴶
+ 0x2ad37: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴷
+ 0x2ad38: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴸
+ 0x2ad39: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴹
+ 0x2ad3a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴺
+ 0x2ad3b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴻
+ 0x2ad3c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴼
+ 0x2ad3d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴽
+ 0x2ad3e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴾
+ 0x2ad3f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪴿
+ 0x2ad40: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵀
+ 0x2ad41: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵁
+ 0x2ad42: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵂
+ 0x2ad43: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵃
+ 0x2ad44: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵄
+ 0x2ad45: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵅
+ 0x2ad46: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵆
+ 0x2ad47: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵇
+ 0x2ad48: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵈
+ 0x2ad49: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵉
+ 0x2ad4a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵊
+ 0x2ad4b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵋
+ 0x2ad4c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵌
+ 0x2ad4d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵍
+ 0x2ad4e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵎
+ 0x2ad4f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵏
+ 0x2ad50: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵐
+ 0x2ad51: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵑
+ 0x2ad52: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵒
+ 0x2ad53: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵓
+ 0x2ad54: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵔
+ 0x2ad55: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵕
+ 0x2ad56: "\x06\x06\x06\x06\x06", // 𪵖
+ 0x2ad57: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵗
+ 0x2ad58: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵘
+ 0x2ad59: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵙
+ 0x2ad5a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵚
+ 0x2ad5b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵛
+ 0x2ad5c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵜
+ 0x2ad5d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵝
+ 0x2ad5e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵞
+ 0x2ad5f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵟
+ 0x2ad60: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵠
+ 0x2ad61: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵡
+ 0x2ad62: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵢
+ 0x2ad63: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵣
+ 0x2ad64: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵤
+ 0x2ad65: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵥
+ 0x2ad66: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵦
+ 0x2ad67: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵧
+ 0x2ad68: "\x06\x06\x06\x06\x06", // 𪵨
+ 0x2ad69: "\x06\x06\x06\x06\x06\x06", // 𪵩
+ 0x2ad6a: "\x06\x06\x06\x06\x06\x06", // 𪵪
+ 0x2ad6b: "\x06\x06\x06\x06\x06\x06", // 𪵫
+ 0x2ad6c: "\x06\x06\x06\x06\x06\x06", // 𪵬
+ 0x2ad6d: "\x06\x06\x06\x06\x06\x06\x06", // 𪵭
+ 0x2ad6e: "\x06\x06\x06\x06\x06\x06\x06", // 𪵮
+ 0x2ad6f: "\x06\x06\x06\x06\x06\x06\x06", // 𪵯
+ 0x2ad70: "\x06\x06\x06\x06\x06\x06\x06", // 𪵰
+ 0x2ad71: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵱
+ 0x2ad72: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵲
+ 0x2ad73: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵳
+ 0x2ad74: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵴
+ 0x2ad75: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵵
+ 0x2ad76: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵶
+ 0x2ad77: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵷
+ 0x2ad78: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵸
+ 0x2ad79: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵹
+ 0x2ad7a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵺
+ 0x2ad7b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵻
+ 0x2ad7c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵼
+ 0x2ad7d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵽
+ 0x2ad7e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵾
+ 0x2ad7f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪵿
+ 0x2ad80: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶀
+ 0x2ad81: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶁
+ 0x2ad82: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶂
+ 0x2ad83: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶃
+ 0x2ad84: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶄
+ 0x2ad85: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶅
+ 0x2ad86: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶆
+ 0x2ad87: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶇
+ 0x2ad88: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶈
+ 0x2ad89: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶉
+ 0x2ad8a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶊
+ 0x2ad8b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶋
+ 0x2ad8c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶌
+ 0x2ad8d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶍
+ 0x2ad8e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶎
+ 0x2ad8f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶏
+ 0x2ad90: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶐
+ 0x2ad91: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶑
+ 0x2ad92: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶒
+ 0x2ad93: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶓
+ 0x2ad94: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶔
+ 0x2ad95: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶕
+ 0x2ad96: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶖
+ 0x2ad97: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶗
+ 0x2ad98: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶘
+ 0x2ad99: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶙
+ 0x2ad9a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶚
+ 0x2ad9b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶛
+ 0x2ad9c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶜
+ 0x2ad9d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶝
+ 0x2ad9e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶞
+ 0x2ad9f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶟
+ 0x2ada0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶠
+ 0x2ada1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶡
+ 0x2ada2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶢
+ 0x2ada3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶣
+ 0x2ada4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶤
+ 0x2ada5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶥
+ 0x2ada6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶦
+ 0x2ada7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶧
+ 0x2ada8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶨
+ 0x2ada9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶩
+ 0x2adaa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶪
+ 0x2adab: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶫
+ 0x2adac: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶬
+ 0x2adad: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶭
+ 0x2adae: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶮
+ 0x2adaf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶯
+ 0x2adb0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶰
+ 0x2adb1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶱
+ 0x2adb2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶲
+ 0x2adb3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶳
+ 0x2adb4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶴
+ 0x2adb5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶵
+ 0x2adb6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶶
+ 0x2adb7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶷
+ 0x2adb8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶸
+ 0x2adb9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶹
+ 0x2adba: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶺
+ 0x2adbb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶻
+ 0x2adbc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶼
+ 0x2adbd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶽
+ 0x2adbe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶾
+ 0x2adbf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪶿
+ 0x2adc0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷀
+ 0x2adc1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷁
+ 0x2adc2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷂
+ 0x2adc3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷃
+ 0x2adc4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷄
+ 0x2adc5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷅
+ 0x2adc6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷆
+ 0x2adc7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷇
+ 0x2adc8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷈
+ 0x2adc9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷉
+ 0x2adca: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷊
+ 0x2adcb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷋
+ 0x2adcc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷌
+ 0x2adcd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷍
+ 0x2adce: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷎
+ 0x2adcf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷏
+ 0x2add0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷐
+ 0x2add1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷑
+ 0x2add2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷒
+ 0x2add3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷓
+ 0x2add4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷔
+ 0x2add5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷕
+ 0x2add6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷖
+ 0x2add7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷗
+ 0x2add8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷘
+ 0x2add9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷙
+ 0x2adda: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷚
+ 0x2addb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷛
+ 0x2addc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷜
+ 0x2addd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷝
+ 0x2adde: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷞
+ 0x2addf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷟
+ 0x2ade0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷠
+ 0x2ade1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷡
+ 0x2ade2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷢
+ 0x2ade3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷣
+ 0x2ade4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷤
+ 0x2ade5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷥
+ 0x2ade6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷦
+ 0x2ade7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷧
+ 0x2ade8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷨
+ 0x2ade9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷩
+ 0x2adea: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷪
+ 0x2adeb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷫
+ 0x2adec: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷬
+ 0x2aded: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷭
+ 0x2adee: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷮
+ 0x2adef: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷯
+ 0x2adf0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷰
+ 0x2adf1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷱
+ 0x2adf2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷲
+ 0x2adf3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷳
+ 0x2adf4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷴
+ 0x2adf5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷵
+ 0x2adf6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷶
+ 0x2adf7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷷
+ 0x2adf8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷸
+ 0x2adf9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷹
+ 0x2adfa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷺
+ 0x2adfb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷻
+ 0x2adfc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷼
+ 0x2adfd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷽
+ 0x2adfe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷾
+ 0x2adff: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪷿
+ 0x2ae00: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸀
+ 0x2ae01: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸁
+ 0x2ae02: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸂
+ 0x2ae03: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸃
+ 0x2ae04: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸄
+ 0x2ae05: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸅
+ 0x2ae06: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸆
+ 0x2ae07: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸇
+ 0x2ae08: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸈
+ 0x2ae09: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸉
+ 0x2ae0a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸊
+ 0x2ae0b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸋
+ 0x2ae0c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸌
+ 0x2ae0d: "\x06\x06\x06\x06\x06", // 𪸍
+ 0x2ae0e: "\x06\x06\x06\x06\x06\x06\x06", // 𪸎
+ 0x2ae0f: "\x06\x06\x06\x06\x06\x06\x06", // 𪸏
+ 0x2ae10: "\x06\x06\x06\x06\x06\x06\x06", // 𪸐
+ 0x2ae11: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸑
+ 0x2ae12: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸒
+ 0x2ae13: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸓
+ 0x2ae14: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸔
+ 0x2ae15: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸕
+ 0x2ae16: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸖
+ 0x2ae17: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸗
+ 0x2ae18: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸘
+ 0x2ae19: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸙
+ 0x2ae1a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸚
+ 0x2ae1b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸛
+ 0x2ae1c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸜
+ 0x2ae1d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸝
+ 0x2ae1e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸞
+ 0x2ae1f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸟
+ 0x2ae20: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸠
+ 0x2ae21: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸡
+ 0x2ae22: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸢
+ 0x2ae23: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸣
+ 0x2ae24: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸤
+ 0x2ae25: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸥
+ 0x2ae26: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸦
+ 0x2ae27: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸧
+ 0x2ae28: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸨
+ 0x2ae29: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸩
+ 0x2ae2a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸪
+ 0x2ae2b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸫
+ 0x2ae2c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸬
+ 0x2ae2d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸭
+ 0x2ae2e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸮
+ 0x2ae2f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸯
+ 0x2ae30: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸰
+ 0x2ae31: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸱
+ 0x2ae32: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸲
+ 0x2ae33: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸳
+ 0x2ae34: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸴
+ 0x2ae35: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸵
+ 0x2ae36: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸶
+ 0x2ae37: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸷
+ 0x2ae38: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸸
+ 0x2ae39: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸹
+ 0x2ae3a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸺
+ 0x2ae3b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸻
+ 0x2ae3c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸼
+ 0x2ae3d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸽
+ 0x2ae3e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸾
+ 0x2ae3f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪸿
+ 0x2ae40: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹀
+ 0x2ae41: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹁
+ 0x2ae42: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹂
+ 0x2ae43: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹃
+ 0x2ae44: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹄
+ 0x2ae45: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹅
+ 0x2ae46: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹆
+ 0x2ae47: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹇
+ 0x2ae48: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹈
+ 0x2ae49: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹉
+ 0x2ae4a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹊
+ 0x2ae4b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹋
+ 0x2ae4c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹌
+ 0x2ae4d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹍
+ 0x2ae4e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹎
+ 0x2ae4f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹏
+ 0x2ae50: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹐
+ 0x2ae51: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹑
+ 0x2ae52: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹒
+ 0x2ae53: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹓
+ 0x2ae54: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹔
+ 0x2ae55: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹕
+ 0x2ae56: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹖
+ 0x2ae57: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹗
+ 0x2ae58: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹘
+ 0x2ae59: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹙
+ 0x2ae5a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹚
+ 0x2ae5b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹛
+ 0x2ae5c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹜
+ 0x2ae5d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹝
+ 0x2ae5e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹞
+ 0x2ae5f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹟
+ 0x2ae60: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹠
+ 0x2ae61: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹡
+ 0x2ae62: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹢
+ 0x2ae63: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹣
+ 0x2ae64: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹤
+ 0x2ae65: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹥
+ 0x2ae66: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹦
+ 0x2ae67: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹧
+ 0x2ae68: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹨
+ 0x2ae69: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹩
+ 0x2ae6a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹪
+ 0x2ae6b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹫
+ 0x2ae6c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹬
+ 0x2ae6d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹭
+ 0x2ae6e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹮
+ 0x2ae6f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹯
+ 0x2ae70: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹰
+ 0x2ae71: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹱
+ 0x2ae72: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹲
+ 0x2ae73: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹳
+ 0x2ae74: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹴
+ 0x2ae75: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹵
+ 0x2ae76: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹶
+ 0x2ae77: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹷
+ 0x2ae78: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹸
+ 0x2ae79: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹹
+ 0x2ae7a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹺
+ 0x2ae7b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹻
+ 0x2ae7c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹼
+ 0x2ae7d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹽
+ 0x2ae7e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹾
+ 0x2ae7f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪹿
+ 0x2ae80: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺀
+ 0x2ae81: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺁
+ 0x2ae82: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺂
+ 0x2ae83: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺃
+ 0x2ae84: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺄
+ 0x2ae85: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺅
+ 0x2ae86: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺆
+ 0x2ae87: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺇
+ 0x2ae88: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺈
+ 0x2ae89: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺉
+ 0x2ae8a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺊
+ 0x2ae8b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺋
+ 0x2ae8c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺌
+ 0x2ae8d: "\x06\x06\x06\x06\x06\x06\x06", // 𪺍
+ 0x2ae8e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺎
+ 0x2ae8f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺏
+ 0x2ae90: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺐
+ 0x2ae91: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺑
+ 0x2ae92: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺒
+ 0x2ae93: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺓
+ 0x2ae94: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺔
+ 0x2ae95: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺕
+ 0x2ae96: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺖
+ 0x2ae97: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺗
+ 0x2ae98: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺘
+ 0x2ae99: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺙
+ 0x2ae9a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺚
+ 0x2ae9b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺛
+ 0x2ae9c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺜
+ 0x2ae9d: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺝
+ 0x2ae9e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺞
+ 0x2ae9f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺟
+ 0x2aea0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺠
+ 0x2aea1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺡
+ 0x2aea2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺢
+ 0x2aea3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺣
+ 0x2aea4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺤
+ 0x2aea5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺥
+ 0x2aea6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺦
+ 0x2aea7: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺧
+ 0x2aea8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺨
+ 0x2aea9: "\x06\x06\x06\x06\x06\x06\x06", // 𪺩
+ 0x2aeaa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺪
+ 0x2aeab: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺫
+ 0x2aeac: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺬
+ 0x2aead: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺭
+ 0x2aeae: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺮
+ 0x2aeaf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺯
+ 0x2aeb0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺰
+ 0x2aeb1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺱
+ 0x2aeb2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺲
+ 0x2aeb3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺳
+ 0x2aeb4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺴
+ 0x2aeb5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺵
+ 0x2aeb6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺶
+ 0x2aeb7: "\x06\x06\x06\x06\x06\x06\x06", // 𪺷
+ 0x2aeb8: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺸
+ 0x2aeb9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺹
+ 0x2aeba: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺺
+ 0x2aebb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺻
+ 0x2aebc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺼
+ 0x2aebd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺽
+ 0x2aebe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺾
+ 0x2aebf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪺿
+ 0x2aec0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻀
+ 0x2aec1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻁
+ 0x2aec2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻂
+ 0x2aec3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻃
+ 0x2aec4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻄
+ 0x2aec5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻅
+ 0x2aec6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻆
+ 0x2aec7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻇
+ 0x2aec8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻈
+ 0x2aec9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻉
+ 0x2aeca: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻊
+ 0x2aecb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻋
+ 0x2aecc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻌
+ 0x2aecd: "\x06\x06\x06\x06\x06\x06", // 𪻍
+ 0x2aece: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻎
+ 0x2aecf: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻏
+ 0x2aed0: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻐
+ 0x2aed1: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻑
+ 0x2aed2: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻒
+ 0x2aed3: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻓
+ 0x2aed4: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻔
+ 0x2aed5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻕
+ 0x2aed6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻖
+ 0x2aed7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻗
+ 0x2aed8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻘
+ 0x2aed9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻙
+ 0x2aeda: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻚
+ 0x2aedb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻛
+ 0x2aedc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻜
+ 0x2aedd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻝
+ 0x2aede: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻞
+ 0x2aedf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻟
+ 0x2aee0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻠
+ 0x2aee1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻡
+ 0x2aee2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻢
+ 0x2aee3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻣
+ 0x2aee4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻤
+ 0x2aee5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻥
+ 0x2aee6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻦
+ 0x2aee7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻧
+ 0x2aee8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻨
+ 0x2aee9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻩
+ 0x2aeea: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻪
+ 0x2aeeb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻫
+ 0x2aeec: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻬
+ 0x2aeed: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻭
+ 0x2aeee: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻮
+ 0x2aeef: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻯
+ 0x2aef0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻰
+ 0x2aef1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻱
+ 0x2aef2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻲
+ 0x2aef3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻳
+ 0x2aef4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻴
+ 0x2aef5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻵
+ 0x2aef6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻶
+ 0x2aef7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻷
+ 0x2aef8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻸
+ 0x2aef9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻹
+ 0x2aefa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻺
+ 0x2aefb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻻
+ 0x2aefc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻼
+ 0x2aefd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻽
+ 0x2aefe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻾
+ 0x2aeff: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪻿
+ 0x2af00: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼀
+ 0x2af01: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼁
+ 0x2af02: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼂
+ 0x2af03: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼃
+ 0x2af04: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼄
+ 0x2af05: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼅
+ 0x2af06: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼆
+ 0x2af07: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼇
+ 0x2af08: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼈
+ 0x2af09: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼉
+ 0x2af0a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼊
+ 0x2af0b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼋
+ 0x2af0c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼌
+ 0x2af0d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼍
+ 0x2af0e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼎
+ 0x2af0f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼏
+ 0x2af10: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼐
+ 0x2af11: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼑
+ 0x2af12: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼒
+ 0x2af13: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼓
+ 0x2af14: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼔
+ 0x2af15: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼕
+ 0x2af16: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼖
+ 0x2af17: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼗
+ 0x2af18: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼘
+ 0x2af19: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼙
+ 0x2af1a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼚
+ 0x2af1b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼛
+ 0x2af1c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼜
+ 0x2af1d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼝
+ 0x2af1e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼞
+ 0x2af1f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼟
+ 0x2af20: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼠
+ 0x2af21: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼡
+ 0x2af22: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼢
+ 0x2af23: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼣
+ 0x2af24: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼤
+ 0x2af25: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼥
+ 0x2af26: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼦
+ 0x2af27: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼧
+ 0x2af28: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼨
+ 0x2af29: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼩
+ 0x2af2a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼪
+ 0x2af2b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼫
+ 0x2af2c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼬
+ 0x2af2d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼭
+ 0x2af2e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼮
+ 0x2af2f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼯
+ 0x2af30: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼰
+ 0x2af31: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼱
+ 0x2af32: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼲
+ 0x2af33: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼳
+ 0x2af34: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼴
+ 0x2af35: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼵
+ 0x2af36: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼶
+ 0x2af37: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼷
+ 0x2af38: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼸
+ 0x2af39: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼹
+ 0x2af3a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼺
+ 0x2af3b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼻
+ 0x2af3c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼼
+ 0x2af3d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼽
+ 0x2af3e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼾
+ 0x2af3f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪼿
+ 0x2af40: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽀
+ 0x2af41: "\x06\x06\x06\x06\x06\x06\x06", // 𪽁
+ 0x2af42: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽂
+ 0x2af43: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽃
+ 0x2af44: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽄
+ 0x2af45: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽅
+ 0x2af46: "\x06\x06\x06\x06\x06\x06", // 𪽆
+ 0x2af47: "\x06\x06\x06\x06\x06\x06\x06", // 𪽇
+ 0x2af48: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽈
+ 0x2af49: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽉
+ 0x2af4a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽊
+ 0x2af4b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽋
+ 0x2af4c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽌
+ 0x2af4d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽍
+ 0x2af4e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽎
+ 0x2af4f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽏
+ 0x2af50: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽐
+ 0x2af51: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽑
+ 0x2af52: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽒
+ 0x2af53: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽓
+ 0x2af54: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽔
+ 0x2af55: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽕
+ 0x2af56: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽖
+ 0x2af57: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽗
+ 0x2af58: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽘
+ 0x2af59: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽙
+ 0x2af5a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽚
+ 0x2af5b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽛
+ 0x2af5c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽜
+ 0x2af5d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽝
+ 0x2af5e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽞
+ 0x2af5f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽟
+ 0x2af60: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽠
+ 0x2af61: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽡
+ 0x2af62: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽢
+ 0x2af63: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽣
+ 0x2af64: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽤
+ 0x2af65: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽥
+ 0x2af66: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽦
+ 0x2af67: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽧
+ 0x2af68: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽨
+ 0x2af69: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽩
+ 0x2af6a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽪
+ 0x2af6b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽫
+ 0x2af6c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽬
+ 0x2af6d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽭
+ 0x2af6e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽮
+ 0x2af6f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽯
+ 0x2af70: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽰
+ 0x2af71: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽱
+ 0x2af72: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽲
+ 0x2af73: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽳
+ 0x2af74: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽴
+ 0x2af75: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽵
+ 0x2af76: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽶
+ 0x2af77: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽷
+ 0x2af78: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽸
+ 0x2af79: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽹
+ 0x2af7a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽺
+ 0x2af7b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽻
+ 0x2af7c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽼
+ 0x2af7d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽽
+ 0x2af7e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽾
+ 0x2af7f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪽿
+ 0x2af80: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾀
+ 0x2af81: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾁
+ 0x2af82: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾂
+ 0x2af83: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾃
+ 0x2af84: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾄
+ 0x2af85: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾅
+ 0x2af86: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾆
+ 0x2af87: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾇
+ 0x2af88: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾈
+ 0x2af89: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾉
+ 0x2af8a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾊
+ 0x2af8b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾋
+ 0x2af8c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾌
+ 0x2af8d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾍
+ 0x2af8e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾎
+ 0x2af8f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾏
+ 0x2af90: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾐
+ 0x2af91: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾑
+ 0x2af92: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾒
+ 0x2af93: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾓
+ 0x2af94: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾔
+ 0x2af95: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾕
+ 0x2af96: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾖
+ 0x2af97: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾗
+ 0x2af98: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾘
+ 0x2af99: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾙
+ 0x2af9a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾚
+ 0x2af9b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾛
+ 0x2af9c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾜
+ 0x2af9d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾝
+ 0x2af9e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾞
+ 0x2af9f: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾟
+ 0x2afa0: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾠
+ 0x2afa1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾡
+ 0x2afa2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾢
+ 0x2afa3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾣
+ 0x2afa4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾤
+ 0x2afa5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾥
+ 0x2afa6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾦
+ 0x2afa7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾧
+ 0x2afa8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾨
+ 0x2afa9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾩
+ 0x2afaa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾪
+ 0x2afab: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾫
+ 0x2afac: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾬
+ 0x2afad: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾭
+ 0x2afae: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾮
+ 0x2afaf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾯
+ 0x2afb0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾰
+ 0x2afb1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾱
+ 0x2afb2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾲
+ 0x2afb3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾳
+ 0x2afb4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾴
+ 0x2afb5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾵
+ 0x2afb6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾶
+ 0x2afb7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾷
+ 0x2afb8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾸
+ 0x2afb9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾹
+ 0x2afba: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾺
+ 0x2afbb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾻
+ 0x2afbc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾼
+ 0x2afbd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾽
+ 0x2afbe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾾
+ 0x2afbf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪾿
+ 0x2afc0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿀
+ 0x2afc1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿁
+ 0x2afc2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿂
+ 0x2afc3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿃
+ 0x2afc4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿄
+ 0x2afc5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿅
+ 0x2afc6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿆
+ 0x2afc7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿇
+ 0x2afc8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿈
+ 0x2afc9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿉
+ 0x2afca: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿊
+ 0x2afcb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿋
+ 0x2afcc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿌
+ 0x2afcd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿍
+ 0x2afce: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿎
+ 0x2afcf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿏
+ 0x2afd0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿐
+ 0x2afd1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿑
+ 0x2afd2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿒
+ 0x2afd3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿓
+ 0x2afd4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿔
+ 0x2afd5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿕
+ 0x2afd6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿖
+ 0x2afd7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿗
+ 0x2afd8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿘
+ 0x2afd9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿙
+ 0x2afda: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿚
+ 0x2afdb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿛
+ 0x2afdc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿜
+ 0x2afdd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿝
+ 0x2afde: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿞
+ 0x2afdf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿟
+ 0x2afe0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿠
+ 0x2afe1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿡
+ 0x2afe2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿢
+ 0x2afe3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿣
+ 0x2afe4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿤
+ 0x2afe5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿥
+ 0x2afe6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿦
+ 0x2afe7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿧
+ 0x2afe8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿨
+ 0x2afe9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿩
+ 0x2afea: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿪
+ 0x2afeb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿫
+ 0x2afec: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿬
+ 0x2afed: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿭
+ 0x2afee: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿮
+ 0x2afef: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿯
+ 0x2aff0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿰
+ 0x2aff1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿱
+ 0x2aff2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿲
+ 0x2aff3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿳
+ 0x2aff4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿴
+ 0x2aff5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿵
+ 0x2aff6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿶
+ 0x2aff7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿷
+ 0x2aff8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿸
+ 0x2aff9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿹
+ 0x2affa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿺
+ 0x2affb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿻
+ 0x2affc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿼
+ 0x2affd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿽
+ 0x2affe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿾
+ 0x2afff: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𪿿
+ 0x2b000: "\x06\x06\x06\x06\x06\x06\x06", // 𫀀
+ 0x2b001: "\x06\x06\x06\x06\x06\x06\x06", // 𫀁
+ 0x2b002: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀂
+ 0x2b003: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀃
+ 0x2b004: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀄
+ 0x2b005: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀅
+ 0x2b006: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀆
+ 0x2b007: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀇
+ 0x2b008: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀈
+ 0x2b009: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀉
+ 0x2b00a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀊
+ 0x2b00b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀋
+ 0x2b00c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀌
+ 0x2b00d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀍
+ 0x2b00e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀎
+ 0x2b00f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀏
+ 0x2b010: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀐
+ 0x2b011: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀑
+ 0x2b012: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀒
+ 0x2b013: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀓
+ 0x2b014: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀔
+ 0x2b015: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀕
+ 0x2b016: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀖
+ 0x2b017: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀗
+ 0x2b018: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀘
+ 0x2b019: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀙
+ 0x2b01a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀚
+ 0x2b01b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀛
+ 0x2b01c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀜
+ 0x2b01d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀝
+ 0x2b01e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀞
+ 0x2b01f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀟
+ 0x2b020: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀠
+ 0x2b021: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀡
+ 0x2b022: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀢
+ 0x2b023: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀣
+ 0x2b024: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀤
+ 0x2b025: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀥
+ 0x2b026: "\x06\x06\x06\x06\x06\x06", // 𫀦
+ 0x2b027: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀧
+ 0x2b028: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀨
+ 0x2b029: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀩
+ 0x2b02a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀪
+ 0x2b02b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀫
+ 0x2b02c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀬
+ 0x2b02d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀭
+ 0x2b02e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀮
+ 0x2b02f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀯
+ 0x2b030: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀰
+ 0x2b031: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀱
+ 0x2b032: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀲
+ 0x2b033: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀳
+ 0x2b034: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀴
+ 0x2b035: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀵
+ 0x2b036: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀶
+ 0x2b037: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀷
+ 0x2b038: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀸
+ 0x2b039: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀹
+ 0x2b03a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀺
+ 0x2b03b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀻
+ 0x2b03c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀼
+ 0x2b03d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀽
+ 0x2b03e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀾
+ 0x2b03f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫀿
+ 0x2b040: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁀
+ 0x2b041: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁁
+ 0x2b042: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁂
+ 0x2b043: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁃
+ 0x2b044: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁄
+ 0x2b045: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁅
+ 0x2b046: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁆
+ 0x2b047: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁇
+ 0x2b048: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁈
+ 0x2b049: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁉
+ 0x2b04a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁊
+ 0x2b04b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁋
+ 0x2b04c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁌
+ 0x2b04d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁍
+ 0x2b04e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁎
+ 0x2b04f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁏
+ 0x2b050: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁐
+ 0x2b051: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁑
+ 0x2b052: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁒
+ 0x2b053: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁓
+ 0x2b054: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁔
+ 0x2b055: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁕
+ 0x2b056: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁖
+ 0x2b057: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁗
+ 0x2b058: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁘
+ 0x2b059: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁙
+ 0x2b05a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁚
+ 0x2b05b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁛
+ 0x2b05c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁜
+ 0x2b05d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁝
+ 0x2b05e: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁞
+ 0x2b05f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁟
+ 0x2b060: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁠
+ 0x2b061: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁡
+ 0x2b062: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁢
+ 0x2b063: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁣
+ 0x2b064: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁤
+ 0x2b065: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁥
+ 0x2b066: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁦
+ 0x2b067: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁧
+ 0x2b068: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁨
+ 0x2b069: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁩
+ 0x2b06a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁪
+ 0x2b06b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁫
+ 0x2b06c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁬
+ 0x2b06d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁭
+ 0x2b06e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁮
+ 0x2b06f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁯
+ 0x2b070: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁰
+ 0x2b071: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁱
+ 0x2b072: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁲
+ 0x2b073: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁳
+ 0x2b074: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁴
+ 0x2b075: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁵
+ 0x2b076: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁶
+ 0x2b077: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁷
+ 0x2b078: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁸
+ 0x2b079: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁹
+ 0x2b07a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁺
+ 0x2b07b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁻
+ 0x2b07c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁼
+ 0x2b07d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁽
+ 0x2b07e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁾
+ 0x2b07f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫁿
+ 0x2b080: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂀
+ 0x2b081: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂁
+ 0x2b082: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂂
+ 0x2b083: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂃
+ 0x2b084: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂄
+ 0x2b085: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂅
+ 0x2b086: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂆
+ 0x2b087: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂇
+ 0x2b088: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂈
+ 0x2b089: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂉
+ 0x2b08a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂊
+ 0x2b08b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂋
+ 0x2b08c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂌
+ 0x2b08d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂍
+ 0x2b08e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂎
+ 0x2b08f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂏
+ 0x2b090: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂐
+ 0x2b091: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂑
+ 0x2b092: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂒
+ 0x2b093: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂓
+ 0x2b094: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂔
+ 0x2b095: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂕
+ 0x2b096: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂖
+ 0x2b097: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂗
+ 0x2b098: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂘
+ 0x2b099: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂙
+ 0x2b09a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂚
+ 0x2b09b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂛
+ 0x2b09c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂜
+ 0x2b09d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂝
+ 0x2b09e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂞
+ 0x2b09f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂟
+ 0x2b0a0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂠
+ 0x2b0a1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂡
+ 0x2b0a2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂢
+ 0x2b0a3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂣
+ 0x2b0a4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂤
+ 0x2b0a5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂥
+ 0x2b0a6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂦
+ 0x2b0a7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂧
+ 0x2b0a8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂨
+ 0x2b0a9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂩
+ 0x2b0aa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂪
+ 0x2b0ab: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂫
+ 0x2b0ac: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂬
+ 0x2b0ad: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂭
+ 0x2b0ae: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂮
+ 0x2b0af: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂯
+ 0x2b0b0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂰
+ 0x2b0b1: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂱
+ 0x2b0b2: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂲
+ 0x2b0b3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂳
+ 0x2b0b4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂴
+ 0x2b0b5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂵
+ 0x2b0b6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂶
+ 0x2b0b7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂷
+ 0x2b0b8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂸
+ 0x2b0b9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂹
+ 0x2b0ba: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂺
+ 0x2b0bb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂻
+ 0x2b0bc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂼
+ 0x2b0bd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂽
+ 0x2b0be: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂾
+ 0x2b0bf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫂿
+ 0x2b0c0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃀
+ 0x2b0c1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃁
+ 0x2b0c2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃂
+ 0x2b0c3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃃
+ 0x2b0c4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃄
+ 0x2b0c5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃅
+ 0x2b0c6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃆
+ 0x2b0c7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃇
+ 0x2b0c8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃈
+ 0x2b0c9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃉
+ 0x2b0ca: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃊
+ 0x2b0cb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃋
+ 0x2b0cc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃌
+ 0x2b0cd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃍
+ 0x2b0ce: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃎
+ 0x2b0cf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃏
+ 0x2b0d0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃐
+ 0x2b0d1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃑
+ 0x2b0d2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃒
+ 0x2b0d3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃓
+ 0x2b0d4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃔
+ 0x2b0d5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃕
+ 0x2b0d6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃖
+ 0x2b0d7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃗
+ 0x2b0d8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃘
+ 0x2b0d9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃙
+ 0x2b0da: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃚
+ 0x2b0db: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃛
+ 0x2b0dc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃜
+ 0x2b0dd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃝
+ 0x2b0de: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃞
+ 0x2b0df: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃟
+ 0x2b0e0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃠
+ 0x2b0e1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃡
+ 0x2b0e2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃢
+ 0x2b0e3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃣
+ 0x2b0e4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃤
+ 0x2b0e5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃥
+ 0x2b0e6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃦
+ 0x2b0e7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃧
+ 0x2b0e8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃨
+ 0x2b0e9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃩
+ 0x2b0ea: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃪
+ 0x2b0eb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃫
+ 0x2b0ec: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃬
+ 0x2b0ed: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃭
+ 0x2b0ee: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃮
+ 0x2b0ef: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃯
+ 0x2b0f0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃰
+ 0x2b0f1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃱
+ 0x2b0f2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃲
+ 0x2b0f3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃳
+ 0x2b0f4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃴
+ 0x2b0f5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃵
+ 0x2b0f6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃶
+ 0x2b0f7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃷
+ 0x2b0f8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃸
+ 0x2b0f9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃹
+ 0x2b0fa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃺
+ 0x2b0fb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃻
+ 0x2b0fc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃼
+ 0x2b0fd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃽
+ 0x2b0fe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃾
+ 0x2b0ff: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫃿
+ 0x2b100: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄀
+ 0x2b101: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄁
+ 0x2b102: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄂
+ 0x2b103: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄃
+ 0x2b104: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄄
+ 0x2b105: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄅
+ 0x2b106: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄆
+ 0x2b107: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄇
+ 0x2b108: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄈
+ 0x2b109: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄉
+ 0x2b10a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄊
+ 0x2b10b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄋
+ 0x2b10c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄌
+ 0x2b10d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄍
+ 0x2b10e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄎
+ 0x2b10f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄏
+ 0x2b110: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄐
+ 0x2b111: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄑
+ 0x2b112: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄒
+ 0x2b113: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄓
+ 0x2b114: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄔
+ 0x2b115: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄕
+ 0x2b116: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄖
+ 0x2b117: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄗
+ 0x2b118: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄘
+ 0x2b119: "\x06\x06\x06\x06", // 𫄙
+ 0x2b11a: "\x06\x06\x06\x06\x06\x06\x06", // 𫄚
+ 0x2b11b: "\x06\x06\x06\x06\x06\x06\x06", // 𫄛
+ 0x2b11c: "\x06\x06\x06\x06\x06\x06\x06", // 𫄜
+ 0x2b11d: "\x06\x06\x06\x06\x06\x06\x06", // 𫄝
+ 0x2b11e: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄞
+ 0x2b11f: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄟
+ 0x2b120: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄠
+ 0x2b121: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄡
+ 0x2b122: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄢
+ 0x2b123: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄣
+ 0x2b124: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄤
+ 0x2b125: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄥
+ 0x2b126: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄦
+ 0x2b127: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄧
+ 0x2b128: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄨
+ 0x2b129: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄩
+ 0x2b12a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄪
+ 0x2b12b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄫
+ 0x2b12c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄬
+ 0x2b12d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄭
+ 0x2b12e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄮
+ 0x2b12f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄯
+ 0x2b130: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄰
+ 0x2b131: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄱
+ 0x2b132: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄲
+ 0x2b133: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄳
+ 0x2b134: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄴
+ 0x2b135: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄵
+ 0x2b136: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄶
+ 0x2b137: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄷
+ 0x2b138: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄸
+ 0x2b139: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄹
+ 0x2b13a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄺
+ 0x2b13b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄻
+ 0x2b13c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄼
+ 0x2b13d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄽
+ 0x2b13e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄾
+ 0x2b13f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫄿
+ 0x2b140: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅀
+ 0x2b141: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅁
+ 0x2b142: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅂
+ 0x2b143: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅃
+ 0x2b144: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅄
+ 0x2b145: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅅
+ 0x2b146: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅆
+ 0x2b147: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅇
+ 0x2b148: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅈
+ 0x2b149: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅉
+ 0x2b14a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅊
+ 0x2b14b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅋
+ 0x2b14c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅌
+ 0x2b14d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅍
+ 0x2b14e: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅎
+ 0x2b14f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅏
+ 0x2b150: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅐
+ 0x2b151: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅑
+ 0x2b152: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅒
+ 0x2b153: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅓
+ 0x2b154: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅔
+ 0x2b155: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅕
+ 0x2b156: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅖
+ 0x2b157: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅗
+ 0x2b158: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅘
+ 0x2b159: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅙
+ 0x2b15a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅚
+ 0x2b15b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅛
+ 0x2b15c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅜
+ 0x2b15d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅝
+ 0x2b15e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅞
+ 0x2b15f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅟
+ 0x2b160: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅠
+ 0x2b161: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅡
+ 0x2b162: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅢
+ 0x2b163: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅣
+ 0x2b164: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅤
+ 0x2b165: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅥
+ 0x2b166: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅦
+ 0x2b167: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅧
+ 0x2b168: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅨
+ 0x2b169: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅩
+ 0x2b16a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅪
+ 0x2b16b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅫
+ 0x2b16c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅬
+ 0x2b16d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅭
+ 0x2b16e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅮
+ 0x2b16f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅯
+ 0x2b170: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅰
+ 0x2b171: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅱
+ 0x2b172: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅲
+ 0x2b173: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅳
+ 0x2b174: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅴
+ 0x2b175: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅵
+ 0x2b176: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅶
+ 0x2b177: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅷
+ 0x2b178: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅸
+ 0x2b179: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅹
+ 0x2b17a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅺
+ 0x2b17b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅻
+ 0x2b17c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅼
+ 0x2b17d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅽
+ 0x2b17e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅾
+ 0x2b17f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫅿
+ 0x2b180: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆀
+ 0x2b181: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆁
+ 0x2b182: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆂
+ 0x2b183: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆃
+ 0x2b184: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆄
+ 0x2b185: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆅
+ 0x2b186: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆆
+ 0x2b187: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆇
+ 0x2b188: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆈
+ 0x2b189: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆉
+ 0x2b18a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆊
+ 0x2b18b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆋
+ 0x2b18c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆌
+ 0x2b18d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆍
+ 0x2b18e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆎
+ 0x2b18f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆏
+ 0x2b190: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆐
+ 0x2b191: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆑
+ 0x2b192: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆒
+ 0x2b193: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆓
+ 0x2b194: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆔
+ 0x2b195: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆕
+ 0x2b196: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆖
+ 0x2b197: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆗
+ 0x2b198: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆘
+ 0x2b199: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆙
+ 0x2b19a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆚
+ 0x2b19b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆛
+ 0x2b19c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆜
+ 0x2b19d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆝
+ 0x2b19e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆞
+ 0x2b19f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆟
+ 0x2b1a0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆠
+ 0x2b1a1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆡
+ 0x2b1a2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆢
+ 0x2b1a3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆣
+ 0x2b1a4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆤
+ 0x2b1a5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆥
+ 0x2b1a6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆦
+ 0x2b1a7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆧
+ 0x2b1a8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆨
+ 0x2b1a9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆩
+ 0x2b1aa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆪
+ 0x2b1ab: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆫
+ 0x2b1ac: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆬
+ 0x2b1ad: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆭
+ 0x2b1ae: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆮
+ 0x2b1af: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆯
+ 0x2b1b0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆰
+ 0x2b1b1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆱
+ 0x2b1b2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆲
+ 0x2b1b3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆳
+ 0x2b1b4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆴
+ 0x2b1b5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆵
+ 0x2b1b6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆶
+ 0x2b1b7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆷
+ 0x2b1b8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆸
+ 0x2b1b9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆹
+ 0x2b1ba: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆺
+ 0x2b1bb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆻
+ 0x2b1bc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆼
+ 0x2b1bd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆽
+ 0x2b1be: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆾
+ 0x2b1bf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫆿
+ 0x2b1c0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇀
+ 0x2b1c1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇁
+ 0x2b1c2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇂
+ 0x2b1c3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇃
+ 0x2b1c4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇄
+ 0x2b1c5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇅
+ 0x2b1c6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇆
+ 0x2b1c7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇇
+ 0x2b1c8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇈
+ 0x2b1c9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇉
+ 0x2b1ca: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇊
+ 0x2b1cb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇋
+ 0x2b1cc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇌
+ 0x2b1cd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇍
+ 0x2b1ce: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇎
+ 0x2b1cf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇏
+ 0x2b1d0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇐
+ 0x2b1d1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇑
+ 0x2b1d2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇒
+ 0x2b1d3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇓
+ 0x2b1d4: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇔
+ 0x2b1d5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇕
+ 0x2b1d6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇖
+ 0x2b1d7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇗
+ 0x2b1d8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇘
+ 0x2b1d9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇙
+ 0x2b1da: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇚
+ 0x2b1db: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇛
+ 0x2b1dc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇜
+ 0x2b1dd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇝
+ 0x2b1de: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇞
+ 0x2b1df: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇟
+ 0x2b1e0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇠
+ 0x2b1e1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇡
+ 0x2b1e2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇢
+ 0x2b1e3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇣
+ 0x2b1e4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇤
+ 0x2b1e5: "\x06\x06\x06\x06\x06\x06", // 𫇥
+ 0x2b1e6: "\x06\x06\x06\x06\x06\x06", // 𫇦
+ 0x2b1e7: "\x06\x06\x06\x06\x06\x06\x06", // 𫇧
+ 0x2b1e8: "\x06\x06\x06\x06\x06\x06\x06", // 𫇨
+ 0x2b1e9: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇩
+ 0x2b1ea: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇪
+ 0x2b1eb: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇫
+ 0x2b1ec: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇬
+ 0x2b1ed: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇭
+ 0x2b1ee: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇮
+ 0x2b1ef: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇯
+ 0x2b1f0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇰
+ 0x2b1f1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇱
+ 0x2b1f2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇲
+ 0x2b1f3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇳
+ 0x2b1f4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇴
+ 0x2b1f5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇵
+ 0x2b1f6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇶
+ 0x2b1f7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇷
+ 0x2b1f8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇸
+ 0x2b1f9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇹
+ 0x2b1fa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇺
+ 0x2b1fb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇻
+ 0x2b1fc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇼
+ 0x2b1fd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇽
+ 0x2b1fe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇾
+ 0x2b1ff: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫇿
+ 0x2b200: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈀
+ 0x2b201: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈁
+ 0x2b202: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈂
+ 0x2b203: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈃
+ 0x2b204: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈄
+ 0x2b205: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈅
+ 0x2b206: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈆
+ 0x2b207: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈇
+ 0x2b208: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈈
+ 0x2b209: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈉
+ 0x2b20a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈊
+ 0x2b20b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈋
+ 0x2b20c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈌
+ 0x2b20d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈍
+ 0x2b20e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈎
+ 0x2b20f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈏
+ 0x2b210: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈐
+ 0x2b211: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈑
+ 0x2b212: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈒
+ 0x2b213: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈓
+ 0x2b214: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈔
+ 0x2b215: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈕
+ 0x2b216: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈖
+ 0x2b217: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈗
+ 0x2b218: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈘
+ 0x2b219: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈙
+ 0x2b21a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈚
+ 0x2b21b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈛
+ 0x2b21c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈜
+ 0x2b21d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈝
+ 0x2b21e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈞
+ 0x2b21f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈟
+ 0x2b220: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈠
+ 0x2b221: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈡
+ 0x2b222: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈢
+ 0x2b223: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈣
+ 0x2b224: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈤
+ 0x2b225: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈥
+ 0x2b226: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈦
+ 0x2b227: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈧
+ 0x2b228: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈨
+ 0x2b229: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈩
+ 0x2b22a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈪
+ 0x2b22b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈫
+ 0x2b22c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈬
+ 0x2b22d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈭
+ 0x2b22e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈮
+ 0x2b22f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈯
+ 0x2b230: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈰
+ 0x2b231: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈱
+ 0x2b232: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈲
+ 0x2b233: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈳
+ 0x2b234: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈴
+ 0x2b235: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈵
+ 0x2b236: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈶
+ 0x2b237: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈷
+ 0x2b238: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈸
+ 0x2b239: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈹
+ 0x2b23a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈺
+ 0x2b23b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈻
+ 0x2b23c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈼
+ 0x2b23d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈽
+ 0x2b23e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈾
+ 0x2b23f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫈿
+ 0x2b240: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉀
+ 0x2b241: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉁
+ 0x2b242: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉂
+ 0x2b243: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉃
+ 0x2b244: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉄
+ 0x2b245: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉅
+ 0x2b246: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉆
+ 0x2b247: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉇
+ 0x2b248: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉈
+ 0x2b249: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉉
+ 0x2b24a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉊
+ 0x2b24b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉋
+ 0x2b24c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉌
+ 0x2b24d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉍
+ 0x2b24e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉎
+ 0x2b24f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉏
+ 0x2b250: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉐
+ 0x2b251: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉑
+ 0x2b252: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉒
+ 0x2b253: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉓
+ 0x2b254: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉔
+ 0x2b255: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉕
+ 0x2b256: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉖
+ 0x2b257: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉗
+ 0x2b258: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉘
+ 0x2b259: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉙
+ 0x2b25a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉚
+ 0x2b25b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉛
+ 0x2b25c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉜
+ 0x2b25d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉝
+ 0x2b25e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉞
+ 0x2b25f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉟
+ 0x2b260: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉠
+ 0x2b261: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉡
+ 0x2b262: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉢
+ 0x2b263: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉣
+ 0x2b264: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉤
+ 0x2b265: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉥
+ 0x2b266: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉦
+ 0x2b267: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉧
+ 0x2b268: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉨
+ 0x2b269: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉩
+ 0x2b26a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉪
+ 0x2b26b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉫
+ 0x2b26c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉬
+ 0x2b26d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉭
+ 0x2b26e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉮
+ 0x2b26f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉯
+ 0x2b270: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉰
+ 0x2b271: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉱
+ 0x2b272: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉲
+ 0x2b273: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉳
+ 0x2b274: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉴
+ 0x2b275: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉵
+ 0x2b276: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉶
+ 0x2b277: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉷
+ 0x2b278: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉸
+ 0x2b279: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉹
+ 0x2b27a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉺
+ 0x2b27b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉻
+ 0x2b27c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉼
+ 0x2b27d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉽
+ 0x2b27e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉾
+ 0x2b27f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫉿
+ 0x2b280: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊀
+ 0x2b281: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊁
+ 0x2b282: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊂
+ 0x2b283: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊃
+ 0x2b284: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊄
+ 0x2b285: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊅
+ 0x2b286: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊆
+ 0x2b287: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊇
+ 0x2b288: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊈
+ 0x2b289: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊉
+ 0x2b28a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊊
+ 0x2b28b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊋
+ 0x2b28c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊌
+ 0x2b28d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊍
+ 0x2b28e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊎
+ 0x2b28f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊏
+ 0x2b290: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊐
+ 0x2b291: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊑
+ 0x2b292: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊒
+ 0x2b293: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊓
+ 0x2b294: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊔
+ 0x2b295: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊕
+ 0x2b296: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊖
+ 0x2b297: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊗
+ 0x2b298: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊘
+ 0x2b299: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊙
+ 0x2b29a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊚
+ 0x2b29b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊛
+ 0x2b29c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊜
+ 0x2b29d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊝
+ 0x2b29e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊞
+ 0x2b29f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊟
+ 0x2b2a0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊠
+ 0x2b2a1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊡
+ 0x2b2a2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊢
+ 0x2b2a3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊣
+ 0x2b2a4: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊤
+ 0x2b2a5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊥
+ 0x2b2a6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊦
+ 0x2b2a7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊧
+ 0x2b2a8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊨
+ 0x2b2a9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊩
+ 0x2b2aa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊪
+ 0x2b2ab: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊫
+ 0x2b2ac: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊬
+ 0x2b2ad: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊭
+ 0x2b2ae: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊮
+ 0x2b2af: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊯
+ 0x2b2b0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊰
+ 0x2b2b1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊱
+ 0x2b2b2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊲
+ 0x2b2b3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊳
+ 0x2b2b4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊴
+ 0x2b2b5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊵
+ 0x2b2b6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊶
+ 0x2b2b7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊷
+ 0x2b2b8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊸
+ 0x2b2b9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊹
+ 0x2b2ba: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊺
+ 0x2b2bb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊻
+ 0x2b2bc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊼
+ 0x2b2bd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊽
+ 0x2b2be: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊾
+ 0x2b2bf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫊿
+ 0x2b2c0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋀
+ 0x2b2c1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋁
+ 0x2b2c2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋂
+ 0x2b2c3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋃
+ 0x2b2c4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋄
+ 0x2b2c5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋅
+ 0x2b2c6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋆
+ 0x2b2c7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋇
+ 0x2b2c8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋈
+ 0x2b2c9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋉
+ 0x2b2ca: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋊
+ 0x2b2cb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋋
+ 0x2b2cc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋌
+ 0x2b2cd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋍
+ 0x2b2ce: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋎
+ 0x2b2cf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋏
+ 0x2b2d0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋐
+ 0x2b2d1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋑
+ 0x2b2d2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋒
+ 0x2b2d3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋓
+ 0x2b2d4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋔
+ 0x2b2d5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋕
+ 0x2b2d6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋖
+ 0x2b2d7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋗
+ 0x2b2d8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋘
+ 0x2b2d9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋙
+ 0x2b2da: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋚
+ 0x2b2db: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋛
+ 0x2b2dc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋜
+ 0x2b2dd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋝
+ 0x2b2de: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋞
+ 0x2b2df: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋟
+ 0x2b2e0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋠
+ 0x2b2e1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋡
+ 0x2b2e2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋢
+ 0x2b2e3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋣
+ 0x2b2e4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋤
+ 0x2b2e5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋥
+ 0x2b2e6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋦
+ 0x2b2e7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋧
+ 0x2b2e8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋨
+ 0x2b2e9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋩
+ 0x2b2ea: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋪
+ 0x2b2eb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋫
+ 0x2b2ec: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋬
+ 0x2b2ed: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋭
+ 0x2b2ee: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋮
+ 0x2b2ef: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋯
+ 0x2b2f0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋰
+ 0x2b2f1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋱
+ 0x2b2f2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋲
+ 0x2b2f3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋳
+ 0x2b2f4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋴
+ 0x2b2f5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋵
+ 0x2b2f6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋶
+ 0x2b2f7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋷
+ 0x2b2f8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋸
+ 0x2b2f9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋹
+ 0x2b2fa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋺
+ 0x2b2fb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋻
+ 0x2b2fc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋼
+ 0x2b2fd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋽
+ 0x2b2fe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋾
+ 0x2b2ff: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫋿
+ 0x2b300: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌀
+ 0x2b301: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌁
+ 0x2b302: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌂
+ 0x2b303: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌃
+ 0x2b304: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌄
+ 0x2b305: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌅
+ 0x2b306: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌆
+ 0x2b307: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌇
+ 0x2b308: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌈
+ 0x2b309: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌉
+ 0x2b30a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌊
+ 0x2b30b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌋
+ 0x2b30c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌌
+ 0x2b30d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌍
+ 0x2b30e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌎
+ 0x2b30f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌏
+ 0x2b310: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌐
+ 0x2b311: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌑
+ 0x2b312: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌒
+ 0x2b313: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌓
+ 0x2b314: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌔
+ 0x2b315: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌕
+ 0x2b316: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌖
+ 0x2b317: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌗
+ 0x2b318: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌘
+ 0x2b319: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌙
+ 0x2b31a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌚
+ 0x2b31b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌛
+ 0x2b31c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌜
+ 0x2b31d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌝
+ 0x2b31e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌞
+ 0x2b31f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌟
+ 0x2b320: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌠
+ 0x2b321: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌡
+ 0x2b322: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌢
+ 0x2b323: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌣
+ 0x2b324: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌤
+ 0x2b325: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌥
+ 0x2b326: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌦
+ 0x2b327: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌧
+ 0x2b328: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌨
+ 0x2b329: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌩
+ 0x2b32a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌪
+ 0x2b32b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌫
+ 0x2b32c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌬
+ 0x2b32d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌭
+ 0x2b32e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌮
+ 0x2b32f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌯
+ 0x2b330: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌰
+ 0x2b331: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌱
+ 0x2b332: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌲
+ 0x2b333: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌳
+ 0x2b334: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌴
+ 0x2b335: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌵
+ 0x2b336: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌶
+ 0x2b337: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌷
+ 0x2b338: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌸
+ 0x2b339: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌹
+ 0x2b33a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌺
+ 0x2b33b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌻
+ 0x2b33c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌼
+ 0x2b33d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌽
+ 0x2b33e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌾
+ 0x2b33f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫌿
+ 0x2b340: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍀
+ 0x2b341: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍁
+ 0x2b342: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍂
+ 0x2b343: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍃
+ 0x2b344: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍄
+ 0x2b345: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍅
+ 0x2b346: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍆
+ 0x2b347: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍇
+ 0x2b348: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍈
+ 0x2b349: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍉
+ 0x2b34a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍊
+ 0x2b34b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍋
+ 0x2b34c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍌
+ 0x2b34d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍍
+ 0x2b34e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍎
+ 0x2b34f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍏
+ 0x2b350: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍐
+ 0x2b351: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍑
+ 0x2b352: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍒
+ 0x2b353: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍓
+ 0x2b354: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍔
+ 0x2b355: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍕
+ 0x2b356: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍖
+ 0x2b357: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍗
+ 0x2b358: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍘
+ 0x2b359: "\x06\x06\x06\x06\x06", // 𫍙
+ 0x2b35a: "\x06\x06\x06\x06\x06\x06", // 𫍚
+ 0x2b35b: "\x06\x06\x06\x06\x06\x06", // 𫍛
+ 0x2b35c: "\x06\x06\x06\x06\x06\x06\x06", // 𫍜
+ 0x2b35d: "\x06\x06\x06\x06\x06\x06\x06", // 𫍝
+ 0x2b35e: "\x06\x06\x06\x06\x06\x06\x06", // 𫍞
+ 0x2b35f: "\x06\x06\x06\x06\x06\x06\x06", // 𫍟
+ 0x2b360: "\x06\x06\x06\x06\x06\x06\x06", // 𫍠
+ 0x2b361: "\x06\x06\x06\x06\x06\x06\x06", // 𫍡
+ 0x2b362: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍢
+ 0x2b363: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍣
+ 0x2b364: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍤
+ 0x2b365: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍥
+ 0x2b366: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍦
+ 0x2b367: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍧
+ 0x2b368: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍨
+ 0x2b369: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍩
+ 0x2b36a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍪
+ 0x2b36b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍫
+ 0x2b36c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍬
+ 0x2b36d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍭
+ 0x2b36e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍮
+ 0x2b36f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍯
+ 0x2b370: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍰
+ 0x2b371: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍱
+ 0x2b372: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍲
+ 0x2b373: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍳
+ 0x2b374: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍴
+ 0x2b375: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍵
+ 0x2b376: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍶
+ 0x2b377: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍷
+ 0x2b378: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍸
+ 0x2b379: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍹
+ 0x2b37a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍺
+ 0x2b37b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍻
+ 0x2b37c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍼
+ 0x2b37d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍽
+ 0x2b37e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍾
+ 0x2b37f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫍿
+ 0x2b380: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎀
+ 0x2b381: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎁
+ 0x2b382: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎂
+ 0x2b383: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎃
+ 0x2b384: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎄
+ 0x2b385: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎅
+ 0x2b386: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎆
+ 0x2b387: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎇
+ 0x2b388: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎈
+ 0x2b389: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎉
+ 0x2b38a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎊
+ 0x2b38b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎋
+ 0x2b38c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎌
+ 0x2b38d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎍
+ 0x2b38e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎎
+ 0x2b38f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎏
+ 0x2b390: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎐
+ 0x2b391: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎑
+ 0x2b392: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎒
+ 0x2b393: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎓
+ 0x2b394: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎔
+ 0x2b395: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎕
+ 0x2b396: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎖
+ 0x2b397: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎗
+ 0x2b398: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎘
+ 0x2b399: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎙
+ 0x2b39a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎚
+ 0x2b39b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎛
+ 0x2b39c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎜
+ 0x2b39d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎝
+ 0x2b39e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎞
+ 0x2b39f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎟
+ 0x2b3a0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎠
+ 0x2b3a1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎡
+ 0x2b3a2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎢
+ 0x2b3a3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎣
+ 0x2b3a4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎤
+ 0x2b3a5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎥
+ 0x2b3a6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎦
+ 0x2b3a7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎧
+ 0x2b3a8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎨
+ 0x2b3a9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎩
+ 0x2b3aa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎪
+ 0x2b3ab: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎫
+ 0x2b3ac: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎬
+ 0x2b3ad: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎭
+ 0x2b3ae: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎮
+ 0x2b3af: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎯
+ 0x2b3b0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎰
+ 0x2b3b1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎱
+ 0x2b3b2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎲
+ 0x2b3b3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎳
+ 0x2b3b4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎴
+ 0x2b3b5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎵
+ 0x2b3b6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎶
+ 0x2b3b7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎷
+ 0x2b3b8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎸
+ 0x2b3b9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎹
+ 0x2b3ba: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎺
+ 0x2b3bb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎻
+ 0x2b3bc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎼
+ 0x2b3bd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎽
+ 0x2b3be: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎾
+ 0x2b3bf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫎿
+ 0x2b3c0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏀
+ 0x2b3c1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏁
+ 0x2b3c2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏂
+ 0x2b3c3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏃
+ 0x2b3c4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏄
+ 0x2b3c5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏅
+ 0x2b3c6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏆
+ 0x2b3c7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏇
+ 0x2b3c8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏈
+ 0x2b3c9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏉
+ 0x2b3ca: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏊
+ 0x2b3cb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏋
+ 0x2b3cc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏌
+ 0x2b3cd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏍
+ 0x2b3ce: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏎
+ 0x2b3cf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏏
+ 0x2b3d0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏐
+ 0x2b3d1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏑
+ 0x2b3d2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏒
+ 0x2b3d3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏓
+ 0x2b3d4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏔
+ 0x2b3d5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏕
+ 0x2b3d6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏖
+ 0x2b3d7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏗
+ 0x2b3d8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏘
+ 0x2b3d9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏙
+ 0x2b3da: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏚
+ 0x2b3db: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏛
+ 0x2b3dc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏜
+ 0x2b3dd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏝
+ 0x2b3de: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏞
+ 0x2b3df: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏟
+ 0x2b3e0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏠
+ 0x2b3e1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏡
+ 0x2b3e2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏢
+ 0x2b3e3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏣
+ 0x2b3e4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏤
+ 0x2b3e5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏥
+ 0x2b3e6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏦
+ 0x2b3e7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏧
+ 0x2b3e8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏨
+ 0x2b3e9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏩
+ 0x2b3ea: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏪
+ 0x2b3eb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏫
+ 0x2b3ec: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏬
+ 0x2b3ed: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏭
+ 0x2b3ee: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏮
+ 0x2b3ef: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏯
+ 0x2b3f0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏰
+ 0x2b3f1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏱
+ 0x2b3f2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏲
+ 0x2b3f3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏳
+ 0x2b3f4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏴
+ 0x2b3f5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏵
+ 0x2b3f6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏶
+ 0x2b3f7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏷
+ 0x2b3f8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏸
+ 0x2b3f9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏹
+ 0x2b3fa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏺
+ 0x2b3fb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏻
+ 0x2b3fc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏼
+ 0x2b3fd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏽
+ 0x2b3fe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏾
+ 0x2b3ff: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫏿
+ 0x2b400: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐀
+ 0x2b401: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐁
+ 0x2b402: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐂
+ 0x2b403: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐃
+ 0x2b404: "\x06\x06\x06\x06\x06\x06\x06", // 𫐄
+ 0x2b405: "\x06\x06\x06\x06\x06\x06\x06", // 𫐅
+ 0x2b406: "\x06\x06\x06\x06\x06\x06\x06", // 𫐆
+ 0x2b407: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐇
+ 0x2b408: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐈
+ 0x2b409: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐉
+ 0x2b40a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐊
+ 0x2b40b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐋
+ 0x2b40c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐌
+ 0x2b40d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐍
+ 0x2b40e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐎
+ 0x2b40f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐏
+ 0x2b410: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐐
+ 0x2b411: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐑
+ 0x2b412: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐒
+ 0x2b413: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐓
+ 0x2b414: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐔
+ 0x2b415: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐕
+ 0x2b416: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐖
+ 0x2b417: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐗
+ 0x2b418: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐘
+ 0x2b419: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐙
+ 0x2b41a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐚
+ 0x2b41b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐛
+ 0x2b41c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐜
+ 0x2b41d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐝
+ 0x2b41e: "\x06\x06\x06\x06", // 𫐞
+ 0x2b41f: "\x06\x06\x06\x06\x06\x06", // 𫐟
+ 0x2b420: "\x06\x06\x06\x06\x06\x06\x06", // 𫐠
+ 0x2b421: "\x06\x06\x06\x06\x06\x06\x06", // 𫐡
+ 0x2b422: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐢
+ 0x2b423: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐣
+ 0x2b424: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐤
+ 0x2b425: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐥
+ 0x2b426: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐦
+ 0x2b427: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐧
+ 0x2b428: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐨
+ 0x2b429: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐩
+ 0x2b42a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐪
+ 0x2b42b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐫
+ 0x2b42c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐬
+ 0x2b42d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐭
+ 0x2b42e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐮
+ 0x2b42f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐯
+ 0x2b430: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐰
+ 0x2b431: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐱
+ 0x2b432: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐲
+ 0x2b433: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐳
+ 0x2b434: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐴
+ 0x2b435: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐵
+ 0x2b436: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐶
+ 0x2b437: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐷
+ 0x2b438: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐸
+ 0x2b439: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐹
+ 0x2b43a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐺
+ 0x2b43b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐻
+ 0x2b43c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐼
+ 0x2b43d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐽
+ 0x2b43e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐾
+ 0x2b43f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫐿
+ 0x2b440: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑀
+ 0x2b441: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑁
+ 0x2b442: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑂
+ 0x2b443: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑃
+ 0x2b444: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑄
+ 0x2b445: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑅
+ 0x2b446: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑆
+ 0x2b447: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑇
+ 0x2b448: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑈
+ 0x2b449: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑉
+ 0x2b44a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑊
+ 0x2b44b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑋
+ 0x2b44c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑌
+ 0x2b44d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑍
+ 0x2b44e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑎
+ 0x2b44f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑏
+ 0x2b450: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑐
+ 0x2b451: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑑
+ 0x2b452: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑒
+ 0x2b453: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑓
+ 0x2b454: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑔
+ 0x2b455: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑕
+ 0x2b456: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑖
+ 0x2b457: "\x06\x06\x06\x06\x06", // 𫑗
+ 0x2b458: "\x06\x06\x06\x06\x06\x06", // 𫑘
+ 0x2b459: "\x06\x06\x06\x06\x06\x06", // 𫑙
+ 0x2b45a: "\x06\x06\x06\x06\x06\x06\x06", // 𫑚
+ 0x2b45b: "\x06\x06\x06\x06\x06\x06\x06", // 𫑛
+ 0x2b45c: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑜
+ 0x2b45d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑝
+ 0x2b45e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑞
+ 0x2b45f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑟
+ 0x2b460: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑠
+ 0x2b461: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑡
+ 0x2b462: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑢
+ 0x2b463: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑣
+ 0x2b464: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑤
+ 0x2b465: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑥
+ 0x2b466: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑦
+ 0x2b467: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑧
+ 0x2b468: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑨
+ 0x2b469: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑩
+ 0x2b46a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑪
+ 0x2b46b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑫
+ 0x2b46c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑬
+ 0x2b46d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑭
+ 0x2b46e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑮
+ 0x2b46f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑯
+ 0x2b470: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑰
+ 0x2b471: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑱
+ 0x2b472: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑲
+ 0x2b473: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑳
+ 0x2b474: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑴
+ 0x2b475: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑵
+ 0x2b476: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑶
+ 0x2b477: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑷
+ 0x2b478: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑸
+ 0x2b479: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑹
+ 0x2b47a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑺
+ 0x2b47b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑻
+ 0x2b47c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑼
+ 0x2b47d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑽
+ 0x2b47e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑾
+ 0x2b47f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫑿
+ 0x2b480: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒀
+ 0x2b481: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒁
+ 0x2b482: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒂
+ 0x2b483: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒃
+ 0x2b484: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒄
+ 0x2b485: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒅
+ 0x2b486: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒆
+ 0x2b487: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒇
+ 0x2b488: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒈
+ 0x2b489: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒉
+ 0x2b48a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒊
+ 0x2b48b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒋
+ 0x2b48c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒌
+ 0x2b48d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒍
+ 0x2b48e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒎
+ 0x2b48f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒏
+ 0x2b490: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒐
+ 0x2b491: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒑
+ 0x2b492: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒒
+ 0x2b493: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒓
+ 0x2b494: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒔
+ 0x2b495: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒕
+ 0x2b496: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒖
+ 0x2b497: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒗
+ 0x2b498: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒘
+ 0x2b499: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒙
+ 0x2b49a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒚
+ 0x2b49b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒛
+ 0x2b49c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒜
+ 0x2b49d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒝
+ 0x2b49e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒞
+ 0x2b49f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒟
+ 0x2b4a0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒠
+ 0x2b4a1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒡
+ 0x2b4a2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒢
+ 0x2b4a3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒣
+ 0x2b4a4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒤
+ 0x2b4a5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒥
+ 0x2b4a6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒦
+ 0x2b4a7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒧
+ 0x2b4a8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒨
+ 0x2b4a9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒩
+ 0x2b4aa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒪
+ 0x2b4ab: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒫
+ 0x2b4ac: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒬
+ 0x2b4ad: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒭
+ 0x2b4ae: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒮
+ 0x2b4af: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒯
+ 0x2b4b0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒰
+ 0x2b4b1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒱
+ 0x2b4b2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒲
+ 0x2b4b3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒳
+ 0x2b4b4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒴
+ 0x2b4b5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒵
+ 0x2b4b6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒶
+ 0x2b4b7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒷
+ 0x2b4b8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒸
+ 0x2b4b9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒹
+ 0x2b4ba: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒺
+ 0x2b4bb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒻
+ 0x2b4bc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒼
+ 0x2b4bd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒽
+ 0x2b4be: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒾
+ 0x2b4bf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫒿
+ 0x2b4c0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓀
+ 0x2b4c1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓁
+ 0x2b4c2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓂
+ 0x2b4c3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓃
+ 0x2b4c4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓄
+ 0x2b4c5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓅
+ 0x2b4c6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓆
+ 0x2b4c7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓇
+ 0x2b4c8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓈
+ 0x2b4c9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓉
+ 0x2b4ca: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓊
+ 0x2b4cb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓋
+ 0x2b4cc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓌
+ 0x2b4cd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓍
+ 0x2b4ce: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓎
+ 0x2b4cf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓏
+ 0x2b4d0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓐
+ 0x2b4d1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓑
+ 0x2b4d2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓒
+ 0x2b4d3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓓
+ 0x2b4d4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓔
+ 0x2b4d5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓕
+ 0x2b4d6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓖
+ 0x2b4d7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓗
+ 0x2b4d8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓘
+ 0x2b4d9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓙
+ 0x2b4da: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓚
+ 0x2b4db: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓛
+ 0x2b4dc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓜
+ 0x2b4dd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓝
+ 0x2b4de: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓞
+ 0x2b4df: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓟
+ 0x2b4e0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓠
+ 0x2b4e1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓡
+ 0x2b4e2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓢
+ 0x2b4e3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓣
+ 0x2b4e4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓤
+ 0x2b4e5: "\x06\x06\x06\x06\x06\x06\x06", // 𫓥
+ 0x2b4e6: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓦
+ 0x2b4e7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓧
+ 0x2b4e8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓨
+ 0x2b4e9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓩
+ 0x2b4ea: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓪
+ 0x2b4eb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓫
+ 0x2b4ec: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓬
+ 0x2b4ed: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓭
+ 0x2b4ee: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓮
+ 0x2b4ef: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓯
+ 0x2b4f0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓰
+ 0x2b4f1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓱
+ 0x2b4f2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓲
+ 0x2b4f3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓳
+ 0x2b4f4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓴
+ 0x2b4f5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓵
+ 0x2b4f6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓶
+ 0x2b4f7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓷
+ 0x2b4f8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓸
+ 0x2b4f9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓹
+ 0x2b4fa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓺
+ 0x2b4fb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓻
+ 0x2b4fc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓼
+ 0x2b4fd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓽
+ 0x2b4fe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓾
+ 0x2b4ff: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫓿
+ 0x2b500: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔀
+ 0x2b501: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔁
+ 0x2b502: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔂
+ 0x2b503: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔃
+ 0x2b504: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔄
+ 0x2b505: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔅
+ 0x2b506: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔆
+ 0x2b507: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔇
+ 0x2b508: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔈
+ 0x2b509: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔉
+ 0x2b50a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔊
+ 0x2b50b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔋
+ 0x2b50c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔌
+ 0x2b50d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔍
+ 0x2b50e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔎
+ 0x2b50f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔏
+ 0x2b510: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔐
+ 0x2b511: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔑
+ 0x2b512: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔒
+ 0x2b513: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔓
+ 0x2b514: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔔
+ 0x2b515: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔕
+ 0x2b516: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔖
+ 0x2b517: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔗
+ 0x2b518: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔘
+ 0x2b519: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔙
+ 0x2b51a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔚
+ 0x2b51b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔛
+ 0x2b51c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔜
+ 0x2b51d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔝
+ 0x2b51e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔞
+ 0x2b51f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔟
+ 0x2b520: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔠
+ 0x2b521: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔡
+ 0x2b522: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔢
+ 0x2b523: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔣
+ 0x2b524: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔤
+ 0x2b525: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔥
+ 0x2b526: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔦
+ 0x2b527: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔧
+ 0x2b528: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔨
+ 0x2b529: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔩
+ 0x2b52a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔪
+ 0x2b52b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔫
+ 0x2b52c: "\x06\x06\x06\x06\x06\x06", // 𫔬
+ 0x2b52d: "\x06\x06\x06\x06\x06\x06\x06", // 𫔭
+ 0x2b52e: "\x06\x06\x06\x06\x06\x06\x06", // 𫔮
+ 0x2b52f: "\x06\x06\x06\x06\x06\x06\x06", // 𫔯
+ 0x2b530: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔰
+ 0x2b531: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔱
+ 0x2b532: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔲
+ 0x2b533: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔳
+ 0x2b534: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔴
+ 0x2b535: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔵
+ 0x2b536: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔶
+ 0x2b537: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔷
+ 0x2b538: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔸
+ 0x2b539: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔹
+ 0x2b53a: "\x06\x06\x06\x06\x06", // 𫔺
+ 0x2b53b: "\x06\x06\x06\x06\x06\x06", // 𫔻
+ 0x2b53c: "\x06\x06\x06\x06\x06\x06\x06", // 𫔼
+ 0x2b53d: "\x06\x06\x06\x06\x06\x06\x06", // 𫔽
+ 0x2b53e: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔾
+ 0x2b53f: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫔿
+ 0x2b540: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕀
+ 0x2b541: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕁
+ 0x2b542: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕂
+ 0x2b543: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕃
+ 0x2b544: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕄
+ 0x2b545: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕅
+ 0x2b546: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕆
+ 0x2b547: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕇
+ 0x2b548: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕈
+ 0x2b549: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕉
+ 0x2b54a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕊
+ 0x2b54b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕋
+ 0x2b54c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕌
+ 0x2b54d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕍
+ 0x2b54e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕎
+ 0x2b54f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕏
+ 0x2b550: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕐
+ 0x2b551: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕑
+ 0x2b552: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕒
+ 0x2b553: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕓
+ 0x2b554: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕔
+ 0x2b555: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕕
+ 0x2b556: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕖
+ 0x2b557: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕗
+ 0x2b558: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕘
+ 0x2b559: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕙
+ 0x2b55a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕚
+ 0x2b55b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕛
+ 0x2b55c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕜
+ 0x2b55d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕝
+ 0x2b55e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕞
+ 0x2b55f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕟
+ 0x2b560: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕠
+ 0x2b561: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕡
+ 0x2b562: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕢
+ 0x2b563: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕣
+ 0x2b564: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕤
+ 0x2b565: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕥
+ 0x2b566: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕦
+ 0x2b567: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕧
+ 0x2b568: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕨
+ 0x2b569: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕩
+ 0x2b56a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕪
+ 0x2b56b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕫
+ 0x2b56c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕬
+ 0x2b56d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕭
+ 0x2b56e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕮
+ 0x2b56f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕯
+ 0x2b570: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕰
+ 0x2b571: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕱
+ 0x2b572: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕲
+ 0x2b573: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕳
+ 0x2b574: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕴
+ 0x2b575: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕵
+ 0x2b576: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕶
+ 0x2b577: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕷
+ 0x2b578: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕸
+ 0x2b579: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕹
+ 0x2b57a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕺
+ 0x2b57b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕻
+ 0x2b57c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕼
+ 0x2b57d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕽
+ 0x2b57e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕾
+ 0x2b57f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫕿
+ 0x2b580: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖀
+ 0x2b581: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖁
+ 0x2b582: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖂
+ 0x2b583: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖃
+ 0x2b584: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖄
+ 0x2b585: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖅
+ 0x2b586: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖆
+ 0x2b587: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖇
+ 0x2b588: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖈
+ 0x2b589: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖉
+ 0x2b58a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖊
+ 0x2b58b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖋
+ 0x2b58c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖌
+ 0x2b58d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖍
+ 0x2b58e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖎
+ 0x2b58f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖏
+ 0x2b590: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖐
+ 0x2b591: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖑
+ 0x2b592: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖒
+ 0x2b593: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖓
+ 0x2b594: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖔
+ 0x2b595: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖕
+ 0x2b596: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖖
+ 0x2b597: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖗
+ 0x2b598: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖘
+ 0x2b599: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖙
+ 0x2b59a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖚
+ 0x2b59b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖛
+ 0x2b59c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖜
+ 0x2b59d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖝
+ 0x2b59e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖞
+ 0x2b59f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖟
+ 0x2b5a0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖠
+ 0x2b5a1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖡
+ 0x2b5a2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖢
+ 0x2b5a3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖣
+ 0x2b5a4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖤
+ 0x2b5a5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖥
+ 0x2b5a6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖦
+ 0x2b5a7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖧
+ 0x2b5a8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖨
+ 0x2b5a9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖩
+ 0x2b5aa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖪
+ 0x2b5ab: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖫
+ 0x2b5ac: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖬
+ 0x2b5ad: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖭
+ 0x2b5ae: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖮
+ 0x2b5af: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖯
+ 0x2b5b0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖰
+ 0x2b5b1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖱
+ 0x2b5b2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖲
+ 0x2b5b3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖳
+ 0x2b5b4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖴
+ 0x2b5b5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖵
+ 0x2b5b6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖶
+ 0x2b5b7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖷
+ 0x2b5b8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖸
+ 0x2b5b9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖹
+ 0x2b5ba: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖺
+ 0x2b5bb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖻
+ 0x2b5bc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖼
+ 0x2b5bd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖽
+ 0x2b5be: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖾
+ 0x2b5bf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫖿
+ 0x2b5c0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗀
+ 0x2b5c1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗁
+ 0x2b5c2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗂
+ 0x2b5c3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗃
+ 0x2b5c4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗄
+ 0x2b5c5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗅
+ 0x2b5c6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗆
+ 0x2b5c7: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗇
+ 0x2b5c8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗈
+ 0x2b5c9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗉
+ 0x2b5ca: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗊
+ 0x2b5cb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗋
+ 0x2b5cc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗌
+ 0x2b5cd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗍
+ 0x2b5ce: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗎
+ 0x2b5cf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗏
+ 0x2b5d0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗐
+ 0x2b5d1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗑
+ 0x2b5d2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗒
+ 0x2b5d3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗓
+ 0x2b5d4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗔
+ 0x2b5d5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗕
+ 0x2b5d6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗖
+ 0x2b5d7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗗
+ 0x2b5d8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗘
+ 0x2b5d9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗙
+ 0x2b5da: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗚
+ 0x2b5db: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗛
+ 0x2b5dc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗜
+ 0x2b5dd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗝
+ 0x2b5de: "\x06\x06\x06\x06\x06\x06", // 𫗞
+ 0x2b5df: "\x06\x06\x06\x06\x06\x06\x06", // 𫗟
+ 0x2b5e0: "\x06\x06\x06\x06\x06\x06\x06", // 𫗠
+ 0x2b5e1: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗡
+ 0x2b5e2: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗢
+ 0x2b5e3: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗣
+ 0x2b5e4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗤
+ 0x2b5e5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗥
+ 0x2b5e6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗦
+ 0x2b5e7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗧
+ 0x2b5e8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗨
+ 0x2b5e9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗩
+ 0x2b5ea: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗪
+ 0x2b5eb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗫
+ 0x2b5ec: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗬
+ 0x2b5ed: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗭
+ 0x2b5ee: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗮
+ 0x2b5ef: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗯
+ 0x2b5f0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗰
+ 0x2b5f1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗱
+ 0x2b5f2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗲
+ 0x2b5f3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗳
+ 0x2b5f4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗴
+ 0x2b5f5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗵
+ 0x2b5f6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗶
+ 0x2b5f7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗷
+ 0x2b5f8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗸
+ 0x2b5f9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗹
+ 0x2b5fa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗺
+ 0x2b5fb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗻
+ 0x2b5fc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗼
+ 0x2b5fd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗽
+ 0x2b5fe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗾
+ 0x2b5ff: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫗿
+ 0x2b600: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘀
+ 0x2b601: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘁
+ 0x2b602: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘂
+ 0x2b603: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘃
+ 0x2b604: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘄
+ 0x2b605: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘅
+ 0x2b606: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘆
+ 0x2b607: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘇
+ 0x2b608: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘈
+ 0x2b609: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘉
+ 0x2b60a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘊
+ 0x2b60b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘋
+ 0x2b60c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘌
+ 0x2b60d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘍
+ 0x2b60e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘎
+ 0x2b60f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘏
+ 0x2b610: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘐
+ 0x2b611: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘑
+ 0x2b612: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘒
+ 0x2b613: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘓
+ 0x2b614: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘔
+ 0x2b615: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘕
+ 0x2b616: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘖
+ 0x2b617: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘗
+ 0x2b618: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘘
+ 0x2b619: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘙
+ 0x2b61a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘚
+ 0x2b61b: "\x06\x06\x06\x06\x06\x06", // 𫘛
+ 0x2b61c: "\x06\x06\x06\x06\x06\x06\x06", // 𫘜
+ 0x2b61d: "\x06\x06\x06\x06\x06\x06\x06", // 𫘝
+ 0x2b61e: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘞
+ 0x2b61f: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘟
+ 0x2b620: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘠
+ 0x2b621: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘡
+ 0x2b622: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘢
+ 0x2b623: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘣
+ 0x2b624: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘤
+ 0x2b625: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘥
+ 0x2b626: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘦
+ 0x2b627: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘧
+ 0x2b628: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘨
+ 0x2b629: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘩
+ 0x2b62a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘪
+ 0x2b62b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘫
+ 0x2b62c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘬
+ 0x2b62d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘭
+ 0x2b62e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘮
+ 0x2b62f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘯
+ 0x2b630: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘰
+ 0x2b631: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘱
+ 0x2b632: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘲
+ 0x2b633: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘳
+ 0x2b634: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘴
+ 0x2b635: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘵
+ 0x2b636: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘶
+ 0x2b637: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘷
+ 0x2b638: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘸
+ 0x2b639: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘹
+ 0x2b63a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘺
+ 0x2b63b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘻
+ 0x2b63c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘼
+ 0x2b63d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘽
+ 0x2b63e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘾
+ 0x2b63f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫘿
+ 0x2b640: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙀
+ 0x2b641: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙁
+ 0x2b642: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙂
+ 0x2b643: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙃
+ 0x2b644: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙄
+ 0x2b645: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙅
+ 0x2b646: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙆
+ 0x2b647: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙇
+ 0x2b648: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙈
+ 0x2b649: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙉
+ 0x2b64a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙊
+ 0x2b64b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙋
+ 0x2b64c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙌
+ 0x2b64d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙍
+ 0x2b64e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙎
+ 0x2b64f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙏
+ 0x2b650: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙐
+ 0x2b651: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙑
+ 0x2b652: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙒
+ 0x2b653: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙓
+ 0x2b654: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙔
+ 0x2b655: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙕
+ 0x2b656: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙖
+ 0x2b657: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙗
+ 0x2b658: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙘
+ 0x2b659: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙙
+ 0x2b65a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙚
+ 0x2b65b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙛
+ 0x2b65c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙜
+ 0x2b65d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙝
+ 0x2b65e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙞
+ 0x2b65f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙟
+ 0x2b660: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙠
+ 0x2b661: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙡
+ 0x2b662: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙢
+ 0x2b663: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙣
+ 0x2b664: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙤
+ 0x2b665: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙥
+ 0x2b666: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙦
+ 0x2b667: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙧
+ 0x2b668: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙨
+ 0x2b669: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙩
+ 0x2b66a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙪
+ 0x2b66b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙫
+ 0x2b66c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙬
+ 0x2b66d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙭
+ 0x2b66e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙮
+ 0x2b66f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙯
+ 0x2b670: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙰
+ 0x2b671: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙱
+ 0x2b672: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙲
+ 0x2b673: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙳
+ 0x2b674: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙴
+ 0x2b675: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙵
+ 0x2b676: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙶
+ 0x2b677: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙷
+ 0x2b678: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙸
+ 0x2b679: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙹
+ 0x2b67a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙺
+ 0x2b67b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙻
+ 0x2b67c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙼
+ 0x2b67d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙽
+ 0x2b67e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙾
+ 0x2b67f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫙿
+ 0x2b680: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚀
+ 0x2b681: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚁
+ 0x2b682: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚂
+ 0x2b683: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚃
+ 0x2b684: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚄
+ 0x2b685: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚅
+ 0x2b686: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚆
+ 0x2b687: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚇
+ 0x2b688: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚈
+ 0x2b689: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚉
+ 0x2b68a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚊
+ 0x2b68b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚋
+ 0x2b68c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚌
+ 0x2b68d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚍
+ 0x2b68e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚎
+ 0x2b68f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚏
+ 0x2b690: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚐
+ 0x2b691: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚑
+ 0x2b692: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚒
+ 0x2b693: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚓
+ 0x2b694: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚔
+ 0x2b695: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚕
+ 0x2b696: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚖
+ 0x2b697: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚗
+ 0x2b698: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚘
+ 0x2b699: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚙
+ 0x2b69a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚚
+ 0x2b69b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚛
+ 0x2b69c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚜
+ 0x2b69d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚝
+ 0x2b69e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚞
+ 0x2b69f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚟
+ 0x2b6a0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚠
+ 0x2b6a1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚡
+ 0x2b6a2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚢
+ 0x2b6a3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚣
+ 0x2b6a4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚤
+ 0x2b6a5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚥
+ 0x2b6a6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚦
+ 0x2b6a7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚧
+ 0x2b6a8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚨
+ 0x2b6a9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚩
+ 0x2b6aa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚪
+ 0x2b6ab: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚫
+ 0x2b6ac: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚬
+ 0x2b6ad: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚭
+ 0x2b6ae: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚮
+ 0x2b6af: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚯
+ 0x2b6b0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚰
+ 0x2b6b1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚱
+ 0x2b6b2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚲
+ 0x2b6b3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚳
+ 0x2b6b4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚴
+ 0x2b6b5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚵
+ 0x2b6b6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚶
+ 0x2b6b7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚷
+ 0x2b6b8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚸
+ 0x2b6b9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚹
+ 0x2b6ba: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚺
+ 0x2b6bb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚻
+ 0x2b6bc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚼
+ 0x2b6bd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚽
+ 0x2b6be: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚾
+ 0x2b6bf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫚿
+ 0x2b6c0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛀
+ 0x2b6c1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛁
+ 0x2b6c2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛂
+ 0x2b6c3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛃
+ 0x2b6c4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛄
+ 0x2b6c5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛅
+ 0x2b6c6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛆
+ 0x2b6c7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛇
+ 0x2b6c8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛈
+ 0x2b6c9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛉
+ 0x2b6ca: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛊
+ 0x2b6cb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛋
+ 0x2b6cc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛌
+ 0x2b6cd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛍
+ 0x2b6ce: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛎
+ 0x2b6cf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛏
+ 0x2b6d0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛐
+ 0x2b6d1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛑
+ 0x2b6d2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛒
+ 0x2b6d3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛓
+ 0x2b6d4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛔
+ 0x2b6d5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛕
+ 0x2b6d6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛖
+ 0x2b6d7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛗
+ 0x2b6d8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛘
+ 0x2b6d9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛙
+ 0x2b6da: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛚
+ 0x2b6db: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛛
+ 0x2b6dc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛜
+ 0x2b6dd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛝
+ 0x2b6de: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛞
+ 0x2b6df: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛟
+ 0x2b6e0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛠
+ 0x2b6e1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛡
+ 0x2b6e2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛢
+ 0x2b6e3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛣
+ 0x2b6e4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛤
+ 0x2b6e5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛥
+ 0x2b6e6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛦
+ 0x2b6e7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛧
+ 0x2b6e8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛨
+ 0x2b6e9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛩
+ 0x2b6ea: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛪
+ 0x2b6eb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛫
+ 0x2b6ec: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛬
+ 0x2b6ed: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛭
+ 0x2b6ee: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛮
+ 0x2b6ef: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛯
+ 0x2b6f0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛰
+ 0x2b6f1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛱
+ 0x2b6f2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛲
+ 0x2b6f3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛳
+ 0x2b6f4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛴
+ 0x2b6f5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛵
+ 0x2b6f6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛶
+ 0x2b6f7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛷
+ 0x2b6f8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛸
+ 0x2b6f9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛹
+ 0x2b6fa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛺
+ 0x2b6fb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛻
+ 0x2b6fc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛼
+ 0x2b6fd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛽
+ 0x2b6fe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛾
+ 0x2b6ff: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫛿
+ 0x2b700: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜀
+ 0x2b701: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜁
+ 0x2b702: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜂
+ 0x2b703: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜃
+ 0x2b704: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜄
+ 0x2b705: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜅
+ 0x2b706: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜆
+ 0x2b707: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜇
+ 0x2b708: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜈
+ 0x2b709: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜉
+ 0x2b70a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜊
+ 0x2b70b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜋
+ 0x2b70c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜌
+ 0x2b70d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜍
+ 0x2b70e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜎
+ 0x2b70f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜏
+ 0x2b710: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜐
+ 0x2b711: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜑
+ 0x2b712: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜒
+ 0x2b713: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜓
+ 0x2b714: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜔
+ 0x2b715: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜕
+ 0x2b716: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜖
+ 0x2b717: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜗
+ 0x2b718: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜘
+ 0x2b719: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜙
+ 0x2b71a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜚
+ 0x2b71b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜛
+ 0x2b71c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜜
+ 0x2b71d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜝
+ 0x2b71e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜞
+ 0x2b71f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜟
+ 0x2b720: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜠
+ 0x2b721: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜡
+ 0x2b722: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜢
+ 0x2b723: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜣
+ 0x2b724: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜤
+ 0x2b725: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜥
+ 0x2b726: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜦
+ 0x2b727: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜧
+ 0x2b728: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜨
+ 0x2b729: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜩
+ 0x2b72a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜪
+ 0x2b72b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜫
+ 0x2b72c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜬
+ 0x2b72d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜭
+ 0x2b72e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜮
+ 0x2b72f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜯
+ 0x2b730: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜰
+ 0x2b731: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜱
+ 0x2b732: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜲
+ 0x2b733: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜳
+ 0x2b734: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫜴
+ 0x2b740: "\x06\x06\x06", // 𫝀
+ 0x2b741: "\x06\x06\x06\x06\x06\x06", // 𫝁
+ 0x2b742: "\x06\x06\x06\x06\x06\x06\x06", // 𫝂
+ 0x2b743: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫝃
+ 0x2b744: "\x06\x06\x06", // 𫝄
+ 0x2b745: "\x06\x06\x06\x06\x06\x06", // 𫝅
+ 0x2b746: "\x06\x06\x06\x06\x06", // 𫝆
+ 0x2b747: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫝇
+ 0x2b748: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫝈
+ 0x2b749: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫝉
+ 0x2b74a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫝊
+ 0x2b74b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫝋
+ 0x2b74c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫝌
+ 0x2b74d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫝍
+ 0x2b74e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫝎
+ 0x2b74f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫝏
+ 0x2b750: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫝐
+ 0x2b751: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫝑
+ 0x2b752: "\x06\x06\x06\x06\x06\x06\x06", // 𫝒
+ 0x2b753: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫝓
+ 0x2b754: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫝔
+ 0x2b755: "\x06\x06\x06\x06\x06\x06\x06", // 𫝕
+ 0x2b756: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫝖
+ 0x2b757: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫝗
+ 0x2b758: "\x06\x06\x06\x06\x06\x06", // 𫝘
+ 0x2b759: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫝙
+ 0x2b75a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫝚
+ 0x2b75b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫝛
+ 0x2b75c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫝜
+ 0x2b75d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫝝
+ 0x2b75e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫝞
+ 0x2b75f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫝟
+ 0x2b760: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫝠
+ 0x2b761: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫝡
+ 0x2b762: "\x06\x06\x06\x06\x06\x06", // 𫝢
+ 0x2b763: "\x06\x06\x06\x06\x06\x06\x06", // 𫝣
+ 0x2b764: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫝤
+ 0x2b765: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫝥
+ 0x2b766: "\x06\x06\x06\x06\x06\x06\x06", // 𫝦
+ 0x2b767: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫝧
+ 0x2b768: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫝨
+ 0x2b769: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫝩
+ 0x2b76a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫝪
+ 0x2b76b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫝫
+ 0x2b76c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫝬
+ 0x2b76d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫝭
+ 0x2b76e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫝮
+ 0x2b76f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫝯
+ 0x2b770: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫝰
+ 0x2b771: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫝱
+ 0x2b772: "\x06\x06\x06\x06\x06\x06", // 𫝲
+ 0x2b773: "\x06\x06\x06\x06\x06\x06", // 𫝳
+ 0x2b774: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫝴
+ 0x2b775: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫝵
+ 0x2b776: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫝶
+ 0x2b777: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫝷
+ 0x2b778: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫝸
+ 0x2b779: "\x06\x06\x06\x06\x06\x06\x06", // 𫝹
+ 0x2b77a: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫝺
+ 0x2b77b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫝻
+ 0x2b77c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫝼
+ 0x2b77d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫝽
+ 0x2b77e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫝾
+ 0x2b77f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫝿
+ 0x2b780: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞀
+ 0x2b781: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞁
+ 0x2b782: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞂
+ 0x2b783: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞃
+ 0x2b784: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞄
+ 0x2b785: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞅
+ 0x2b786: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞆
+ 0x2b787: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞇
+ 0x2b788: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞈
+ 0x2b789: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞉
+ 0x2b78a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞊
+ 0x2b78b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞋
+ 0x2b78c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞌
+ 0x2b78d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞍
+ 0x2b78e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞎
+ 0x2b78f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞏
+ 0x2b790: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞐
+ 0x2b791: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞑
+ 0x2b792: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞒
+ 0x2b793: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞓
+ 0x2b794: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞔
+ 0x2b795: "\x06\x06\x06\x06\x06", // 𫞕
+ 0x2b796: "\x06\x06\x06\x06\x06\x06", // 𫞖
+ 0x2b797: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞗
+ 0x2b798: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞘
+ 0x2b799: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞙
+ 0x2b79a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞚
+ 0x2b79b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞛
+ 0x2b79c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞜
+ 0x2b79d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞝
+ 0x2b79e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞞
+ 0x2b79f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞟
+ 0x2b7a0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞠
+ 0x2b7a1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞡
+ 0x2b7a2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞢
+ 0x2b7a3: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞣
+ 0x2b7a4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞤
+ 0x2b7a5: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞥
+ 0x2b7a6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞦
+ 0x2b7a7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞧
+ 0x2b7a8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞨
+ 0x2b7a9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞩
+ 0x2b7aa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞪
+ 0x2b7ab: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞫
+ 0x2b7ac: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞬
+ 0x2b7ad: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞭
+ 0x2b7ae: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞮
+ 0x2b7af: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞯
+ 0x2b7b0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞰
+ 0x2b7b1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞱
+ 0x2b7b2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞲
+ 0x2b7b3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞳
+ 0x2b7b4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞴
+ 0x2b7b5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞵
+ 0x2b7b6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞶
+ 0x2b7b7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞷
+ 0x2b7b8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞸
+ 0x2b7b9: "\x06\x06\x06\x06\x06\x06\x06", // 𫞹
+ 0x2b7ba: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞺
+ 0x2b7bb: "\x06\x06\x06\x06\x06\x06\x06", // 𫞻
+ 0x2b7bc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞼
+ 0x2b7bd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞽
+ 0x2b7be: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞾
+ 0x2b7bf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫞿
+ 0x2b7c0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟀
+ 0x2b7c1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟁
+ 0x2b7c2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟂
+ 0x2b7c3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟃
+ 0x2b7c4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟄
+ 0x2b7c5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟅
+ 0x2b7c6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟆
+ 0x2b7c7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟇
+ 0x2b7c8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟈
+ 0x2b7c9: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟉
+ 0x2b7ca: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟊
+ 0x2b7cb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟋
+ 0x2b7cc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟌
+ 0x2b7cd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟍
+ 0x2b7ce: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟎
+ 0x2b7cf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟏
+ 0x2b7d0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟐
+ 0x2b7d1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟑
+ 0x2b7d2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟒
+ 0x2b7d3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟓
+ 0x2b7d4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟔
+ 0x2b7d5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟕
+ 0x2b7d6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟖
+ 0x2b7d7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟗
+ 0x2b7d8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟘
+ 0x2b7d9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟙
+ 0x2b7da: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟚
+ 0x2b7db: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟛
+ 0x2b7dc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟜
+ 0x2b7dd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟝
+ 0x2b7de: "\x06\x06\x06\x06\x06\x06", // 𫟞
+ 0x2b7df: "\x06\x06\x06\x06\x06\x06\x06", // 𫟟
+ 0x2b7e0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟠
+ 0x2b7e1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟡
+ 0x2b7e2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟢
+ 0x2b7e3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟣
+ 0x2b7e4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟤
+ 0x2b7e5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟥
+ 0x2b7e6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟦
+ 0x2b7e7: "\x06\x06\x06\x06\x06", // 𫟧
+ 0x2b7e8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟨
+ 0x2b7e9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟩
+ 0x2b7ea: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟪
+ 0x2b7eb: "\x06\x06\x06\x06\x06\x06\x06", // 𫟫
+ 0x2b7ec: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟬
+ 0x2b7ed: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟭
+ 0x2b7ee: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟮
+ 0x2b7ef: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟯
+ 0x2b7f0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟰
+ 0x2b7f1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟱
+ 0x2b7f2: "\x06\x06\x06\x06\x06\x06\x06", // 𫟲
+ 0x2b7f3: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟳
+ 0x2b7f4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟴
+ 0x2b7f5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟵
+ 0x2b7f6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟶
+ 0x2b7f7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟷
+ 0x2b7f8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟸
+ 0x2b7f9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟹
+ 0x2b7fa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟺
+ 0x2b7fb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟻
+ 0x2b7fc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟼
+ 0x2b7fd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟽
+ 0x2b7fe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟾
+ 0x2b7ff: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫟿
+ 0x2b800: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫠀
+ 0x2b801: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫠁
+ 0x2b802: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫠂
+ 0x2b803: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫠃
+ 0x2b804: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫠄
+ 0x2b805: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫠅
+ 0x2b806: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫠆
+ 0x2b807: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫠇
+ 0x2b808: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫠈
+ 0x2b809: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫠉
+ 0x2b80a: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫠊
+ 0x2b80b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫠋
+ 0x2b80c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫠌
+ 0x2b80d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫠍
+ 0x2b80e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫠎
+ 0x2b80f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫠏
+ 0x2b810: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫠐
+ 0x2b811: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫠑
+ 0x2b812: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫠒
+ 0x2b813: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫠓
+ 0x2b814: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫠔
+ 0x2b815: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫠕
+ 0x2b816: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫠖
+ 0x2b817: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫠗
+ 0x2b818: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫠘
+ 0x2b819: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫠙
+ 0x2b81a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫠚
+ 0x2b81b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫠛
+ 0x2b81c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫠜
+ 0x2b81d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫠝
+ 0x2b820: "\x06\x06", // 𫠠
+ 0x2b821: "\x06\x06\x06\x06", // 𫠡
+ 0x2b822: "\x06\x06\x06\x06\x06", // 𫠢
+ 0x2b823: "\x06\x06\x06\x06\x06", // 𫠣
+ 0x2b824: "\x06\x06\x06\x06\x06\x06", // 𫠤
+ 0x2b825: "\x06\x06\x06\x06\x06\x06", // 𫠥
+ 0x2b826: "\x06\x06\x06\x06\x06\x06\x06", // 𫠦
+ 0x2b827: "\x06\x06\x06\x06\x06\x06\x06", // 𫠧
+ 0x2b828: "\x06\x06\x06\x06\x06\x06\x06", // 𫠨
+ 0x2b829: "\x06\x06\x06\x06\x06\x06\x06", // 𫠩
+ 0x2b82a: "\x06\x06\x06\x06\x06\x06\x06", // 𫠪
+ 0x2b82b: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫠫
+ 0x2b82c: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫠬
+ 0x2b82d: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫠭
+ 0x2b82e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫠮
+ 0x2b82f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫠯
+ 0x2b830: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫠰
+ 0x2b831: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫠱
+ 0x2b832: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫠲
+ 0x2b833: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫠳
+ 0x2b834: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫠴
+ 0x2b835: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫠵
+ 0x2b836: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫠶
+ 0x2b837: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫠷
+ 0x2b838: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫠸
+ 0x2b839: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫠹
+ 0x2b83a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫠺
+ 0x2b83b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫠻
+ 0x2b83c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫠼
+ 0x2b83d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫠽
+ 0x2b83e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫠾
+ 0x2b83f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫠿
+ 0x2b840: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫡀
+ 0x2b841: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫡁
+ 0x2b842: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫡂
+ 0x2b843: "\x06\x06\x06", // 𫡃
+ 0x2b844: "\x06\x06\x06", // 𫡄
+ 0x2b845: "\x06\x06\x06\x06", // 𫡅
+ 0x2b846: "\x06\x06\x06\x06\x06\x06\x06", // 𫡆
+ 0x2b847: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫡇
+ 0x2b848: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫡈
+ 0x2b849: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫡉
+ 0x2b84a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫡊
+ 0x2b84b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫡋
+ 0x2b84c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫡌
+ 0x2b84d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫡍
+ 0x2b84e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫡎
+ 0x2b84f: "\x06\x06\x06", // 𫡏
+ 0x2b850: "\x06\x06\x06\x06\x06", // 𫡐
+ 0x2b851: "\x06\x06\x06\x06\x06\x06", // 𫡑
+ 0x2b852: "\x06\x06\x06\x06\x06\x06", // 𫡒
+ 0x2b853: "\x06\x06\x06\x06\x06\x06", // 𫡓
+ 0x2b854: "\x06\x06\x06\x06\x06\x06\x06", // 𫡔
+ 0x2b855: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫡕
+ 0x2b856: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫡖
+ 0x2b857: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫡗
+ 0x2b858: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫡘
+ 0x2b859: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫡙
+ 0x2b85a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫡚
+ 0x2b85b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫡛
+ 0x2b85c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫡜
+ 0x2b85d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫡝
+ 0x2b85e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫡞
+ 0x2b85f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫡟
+ 0x2b860: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫡠
+ 0x2b861: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫡡
+ 0x2b862: "\x06\x06\x06\x06", // 𫡢
+ 0x2b863: "\x06\x06\x06\x06\x06", // 𫡣
+ 0x2b864: "\x06\x06\x06\x06\x06\x06", // 𫡤
+ 0x2b865: "\x06\x06\x06\x06\x06\x06\x06", // 𫡥
+ 0x2b866: "\x06\x06\x06\x06\x06\x06\x06", // 𫡦
+ 0x2b867: "\x06\x06\x06\x06\x06\x06\x06", // 𫡧
+ 0x2b868: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫡨
+ 0x2b869: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫡩
+ 0x2b86a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫡪
+ 0x2b86b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫡫
+ 0x2b86c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫡬
+ 0x2b86d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫡭
+ 0x2b86e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫡮
+ 0x2b86f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫡯
+ 0x2b870: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫡰
+ 0x2b871: "\x06\x06\x06\x06\x06\x06", // 𫡱
+ 0x2b872: "\x06\x06\x06\x06\x06\x06\x06", // 𫡲
+ 0x2b873: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫡳
+ 0x2b874: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫡴
+ 0x2b875: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫡵
+ 0x2b876: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫡶
+ 0x2b877: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫡷
+ 0x2b878: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫡸
+ 0x2b879: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫡹
+ 0x2b87a: "\x06\x06\x06\x06\x06\x06\x06", // 𫡺
+ 0x2b87b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫡻
+ 0x2b87c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫡼
+ 0x2b87d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫡽
+ 0x2b87e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫡾
+ 0x2b87f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫡿
+ 0x2b880: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫢀
+ 0x2b881: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫢁
+ 0x2b882: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫢂
+ 0x2b883: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫢃
+ 0x2b884: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫢄
+ 0x2b885: "\x06\x06\x06", // 𫢅
+ 0x2b886: "\x06\x06\x06\x06", // 𫢆
+ 0x2b887: "\x06\x06\x06\x06", // 𫢇
+ 0x2b888: "\x06\x06\x06\x06", // 𫢈
+ 0x2b889: "\x06\x06\x06\x06\x06", // 𫢉
+ 0x2b88a: "\x06\x06\x06\x06\x06", // 𫢊
+ 0x2b88b: "\x06\x06\x06\x06\x06\x06", // 𫢋
+ 0x2b88c: "\x06\x06\x06\x06\x06\x06", // 𫢌
+ 0x2b88d: "\x06\x06\x06\x06\x06\x06", // 𫢍
+ 0x2b88e: "\x06\x06\x06\x06\x06\x06", // 𫢎
+ 0x2b88f: "\x06\x06\x06\x06\x06\x06", // 𫢏
+ 0x2b890: "\x06\x06\x06\x06\x06\x06", // 𫢐
+ 0x2b891: "\x06\x06\x06\x06\x06\x06\x06", // 𫢑
+ 0x2b892: "\x06\x06\x06\x06\x06\x06\x06", // 𫢒
+ 0x2b893: "\x06\x06\x06\x06\x06\x06\x06", // 𫢓
+ 0x2b894: "\x06\x06\x06\x06\x06\x06\x06", // 𫢔
+ 0x2b895: "\x06\x06\x06\x06\x06\x06\x06", // 𫢕
+ 0x2b896: "\x06\x06\x06\x06\x06\x06\x06", // 𫢖
+ 0x2b897: "\x06\x06\x06\x06\x06\x06\x06", // 𫢗
+ 0x2b898: "\x06\x06\x06\x06\x06\x06\x06", // 𫢘
+ 0x2b899: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫢙
+ 0x2b89a: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫢚
+ 0x2b89b: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫢛
+ 0x2b89c: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫢜
+ 0x2b89d: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫢝
+ 0x2b89e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫢞
+ 0x2b89f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫢟
+ 0x2b8a0: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫢠
+ 0x2b8a1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫢡
+ 0x2b8a2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫢢
+ 0x2b8a3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫢣
+ 0x2b8a4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫢤
+ 0x2b8a5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫢥
+ 0x2b8a6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫢦
+ 0x2b8a7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫢧
+ 0x2b8a8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫢨
+ 0x2b8a9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫢩
+ 0x2b8aa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫢪
+ 0x2b8ab: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫢫
+ 0x2b8ac: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫢬
+ 0x2b8ad: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫢭
+ 0x2b8ae: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫢮
+ 0x2b8af: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫢯
+ 0x2b8b0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫢰
+ 0x2b8b1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫢱
+ 0x2b8b2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫢲
+ 0x2b8b3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫢳
+ 0x2b8b4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫢴
+ 0x2b8b5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫢵
+ 0x2b8b6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫢶
+ 0x2b8b7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫢷
+ 0x2b8b8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫢸
+ 0x2b8b9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫢹
+ 0x2b8ba: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫢺
+ 0x2b8bb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫢻
+ 0x2b8bc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫢼
+ 0x2b8bd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫢽
+ 0x2b8be: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫢾
+ 0x2b8bf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫢿
+ 0x2b8c0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣀
+ 0x2b8c1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣁
+ 0x2b8c2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣂
+ 0x2b8c3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣃
+ 0x2b8c4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣄
+ 0x2b8c5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣅
+ 0x2b8c6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣆
+ 0x2b8c7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣇
+ 0x2b8c8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣈
+ 0x2b8c9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣉
+ 0x2b8ca: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣊
+ 0x2b8cb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣋
+ 0x2b8cc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣌
+ 0x2b8cd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣍
+ 0x2b8ce: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣎
+ 0x2b8cf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣏
+ 0x2b8d0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣐
+ 0x2b8d1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣑
+ 0x2b8d2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣒
+ 0x2b8d3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣓
+ 0x2b8d4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣔
+ 0x2b8d5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣕
+ 0x2b8d6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣖
+ 0x2b8d7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣗
+ 0x2b8d8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣘
+ 0x2b8d9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣙
+ 0x2b8da: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣚
+ 0x2b8db: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣛
+ 0x2b8dc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣜
+ 0x2b8dd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣝
+ 0x2b8de: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣞
+ 0x2b8df: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣟
+ 0x2b8e0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣠
+ 0x2b8e1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣡
+ 0x2b8e2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣢
+ 0x2b8e3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣣
+ 0x2b8e4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣤
+ 0x2b8e5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣥
+ 0x2b8e6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣦
+ 0x2b8e7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣧
+ 0x2b8e8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣨
+ 0x2b8e9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣩
+ 0x2b8ea: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣪
+ 0x2b8eb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣫
+ 0x2b8ec: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣬
+ 0x2b8ed: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣭
+ 0x2b8ee: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣮
+ 0x2b8ef: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣯
+ 0x2b8f0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣰
+ 0x2b8f1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣱
+ 0x2b8f2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣲
+ 0x2b8f3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣳
+ 0x2b8f4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣴
+ 0x2b8f5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣵
+ 0x2b8f6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣶
+ 0x2b8f7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣷
+ 0x2b8f8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣸
+ 0x2b8f9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣹
+ 0x2b8fa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣺
+ 0x2b8fb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣻
+ 0x2b8fc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣼
+ 0x2b8fd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣽
+ 0x2b8fe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣾
+ 0x2b8ff: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫣿
+ 0x2b900: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤀
+ 0x2b901: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤁
+ 0x2b902: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤂
+ 0x2b903: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤃
+ 0x2b904: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤄
+ 0x2b905: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤅
+ 0x2b906: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤆
+ 0x2b907: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤇
+ 0x2b908: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤈
+ 0x2b909: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤉
+ 0x2b90a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤊
+ 0x2b90b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤋
+ 0x2b90c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤌
+ 0x2b90d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤍
+ 0x2b90e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤎
+ 0x2b90f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤏
+ 0x2b910: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤐
+ 0x2b911: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤑
+ 0x2b912: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤒
+ 0x2b913: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤓
+ 0x2b914: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤔
+ 0x2b915: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤕
+ 0x2b916: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤖
+ 0x2b917: "\x06\x06\x06\x06\x06\x06\x06", // 𫤗
+ 0x2b918: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤘
+ 0x2b919: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤙
+ 0x2b91a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤚
+ 0x2b91b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤛
+ 0x2b91c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤜
+ 0x2b91d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤝
+ 0x2b91e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤞
+ 0x2b91f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤟
+ 0x2b920: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤠
+ 0x2b921: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤡
+ 0x2b922: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤢
+ 0x2b923: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤣
+ 0x2b924: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤤
+ 0x2b925: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤥
+ 0x2b926: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤦
+ 0x2b927: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤧
+ 0x2b928: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤨
+ 0x2b929: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤩
+ 0x2b92a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤪
+ 0x2b92b: "\x06\x06\x06\x06\x06\x06", // 𫤫
+ 0x2b92c: "\x06\x06\x06\x06\x06\x06", // 𫤬
+ 0x2b92d: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤭
+ 0x2b92e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤮
+ 0x2b92f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤯
+ 0x2b930: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤰
+ 0x2b931: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤱
+ 0x2b932: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤲
+ 0x2b933: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤳
+ 0x2b934: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤴
+ 0x2b935: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤵
+ 0x2b936: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤶
+ 0x2b937: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤷
+ 0x2b938: "\x06\x06\x06\x06\x06\x06\x06", // 𫤸
+ 0x2b939: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤹
+ 0x2b93a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤺
+ 0x2b93b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤻
+ 0x2b93c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤼
+ 0x2b93d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫤽
+ 0x2b93e: "\x06\x06\x06", // 𫤾
+ 0x2b93f: "\x06\x06\x06\x06\x06", // 𫤿
+ 0x2b940: "\x06\x06\x06\x06\x06\x06\x06", // 𫥀
+ 0x2b941: "\x06\x06\x06\x06\x06\x06", // 𫥁
+ 0x2b942: "\x06\x06\x06\x06\x06\x06", // 𫥂
+ 0x2b943: "\x06\x06\x06\x06\x06\x06", // 𫥃
+ 0x2b944: "\x06\x06\x06\x06\x06\x06\x06", // 𫥄
+ 0x2b945: "\x06\x06\x06\x06\x06\x06\x06", // 𫥅
+ 0x2b946: "\x06\x06\x06\x06\x06\x06\x06", // 𫥆
+ 0x2b947: "\x06\x06\x06\x06\x06\x06\x06", // 𫥇
+ 0x2b948: "\x06\x06\x06\x06\x06\x06\x06", // 𫥈
+ 0x2b949: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫥉
+ 0x2b94a: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫥊
+ 0x2b94b: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫥋
+ 0x2b94c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫥌
+ 0x2b94d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫥍
+ 0x2b94e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫥎
+ 0x2b94f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫥏
+ 0x2b950: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫥐
+ 0x2b951: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫥑
+ 0x2b952: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫥒
+ 0x2b953: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫥓
+ 0x2b954: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫥔
+ 0x2b955: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫥕
+ 0x2b956: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫥖
+ 0x2b957: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫥗
+ 0x2b958: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫥘
+ 0x2b959: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫥙
+ 0x2b95a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫥚
+ 0x2b95b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫥛
+ 0x2b95c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫥜
+ 0x2b95d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫥝
+ 0x2b95e: "\x06\x06\x06\x06\x06\x06", // 𫥞
+ 0x2b95f: "\x06\x06\x06\x06\x06\x06", // 𫥟
+ 0x2b960: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫥠
+ 0x2b961: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫥡
+ 0x2b962: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫥢
+ 0x2b963: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫥣
+ 0x2b964: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫥤
+ 0x2b965: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫥥
+ 0x2b966: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫥦
+ 0x2b967: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫥧
+ 0x2b968: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫥨
+ 0x2b969: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫥩
+ 0x2b96a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫥪
+ 0x2b96b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫥫
+ 0x2b96c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫥬
+ 0x2b96d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫥭
+ 0x2b96e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫥮
+ 0x2b96f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫥯
+ 0x2b970: "\x06\x06\x06\x06\x06", // 𫥰
+ 0x2b971: "\x06\x06\x06\x06\x06", // 𫥱
+ 0x2b972: "\x06\x06\x06\x06\x06\x06", // 𫥲
+ 0x2b973: "\x06\x06\x06\x06\x06\x06", // 𫥳
+ 0x2b974: "\x06\x06\x06\x06\x06\x06", // 𫥴
+ 0x2b975: "\x06\x06\x06\x06\x06\x06\x06", // 𫥵
+ 0x2b976: "\x06\x06\x06\x06\x06\x06\x06", // 𫥶
+ 0x2b977: "\x06\x06\x06\x06\x06\x06\x06", // 𫥷
+ 0x2b978: "\x06\x06\x06\x06\x06\x06\x06", // 𫥸
+ 0x2b979: "\x06\x06\x06\x06\x06\x06\x06", // 𫥹
+ 0x2b97a: "\x06\x06\x06\x06\x06\x06\x06", // 𫥺
+ 0x2b97b: "\x06\x06\x06\x06\x06\x06\x06", // 𫥻
+ 0x2b97c: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫥼
+ 0x2b97d: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫥽
+ 0x2b97e: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫥾
+ 0x2b97f: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫥿
+ 0x2b980: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦀
+ 0x2b981: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦁
+ 0x2b982: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦂
+ 0x2b983: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦃
+ 0x2b984: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦄
+ 0x2b985: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦅
+ 0x2b986: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦆
+ 0x2b987: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦇
+ 0x2b988: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦈
+ 0x2b989: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦉
+ 0x2b98a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦊
+ 0x2b98b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦋
+ 0x2b98c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦌
+ 0x2b98d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦍
+ 0x2b98e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦎
+ 0x2b98f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦏
+ 0x2b990: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦐
+ 0x2b991: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦑
+ 0x2b992: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦒
+ 0x2b993: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦓
+ 0x2b994: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦔
+ 0x2b995: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦕
+ 0x2b996: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦖
+ 0x2b997: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦗
+ 0x2b998: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦘
+ 0x2b999: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦙
+ 0x2b99a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦚
+ 0x2b99b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦛
+ 0x2b99c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦜
+ 0x2b99d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦝
+ 0x2b99e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦞
+ 0x2b99f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦟
+ 0x2b9a0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦠
+ 0x2b9a1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦡
+ 0x2b9a2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦢
+ 0x2b9a3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦣
+ 0x2b9a4: "\x06\x06\x06", // 𫦤
+ 0x2b9a5: "\x06\x06\x06\x06\x06\x06", // 𫦥
+ 0x2b9a6: "\x06\x06\x06\x06\x06\x06\x06", // 𫦦
+ 0x2b9a7: "\x06\x06\x06\x06\x06\x06", // 𫦧
+ 0x2b9a8: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦨
+ 0x2b9a9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦩
+ 0x2b9aa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦪
+ 0x2b9ab: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦫
+ 0x2b9ac: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦬
+ 0x2b9ad: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦭
+ 0x2b9ae: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦮
+ 0x2b9af: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦯
+ 0x2b9b0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦰
+ 0x2b9b1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦱
+ 0x2b9b2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦲
+ 0x2b9b3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦳
+ 0x2b9b4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦴
+ 0x2b9b5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦵
+ 0x2b9b6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦶
+ 0x2b9b7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦷
+ 0x2b9b8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦸
+ 0x2b9b9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦹
+ 0x2b9ba: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦺
+ 0x2b9bb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦻
+ 0x2b9bc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦼
+ 0x2b9bd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦽
+ 0x2b9be: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦾
+ 0x2b9bf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫦿
+ 0x2b9c0: "\x06\x06\x06\x06\x06", // 𫧀
+ 0x2b9c1: "\x06\x06\x06\x06\x06", // 𫧁
+ 0x2b9c2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧂
+ 0x2b9c3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧃
+ 0x2b9c4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧄
+ 0x2b9c5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧅
+ 0x2b9c6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧆
+ 0x2b9c7: "\x06\x06\x06\x06", // 𫧇
+ 0x2b9c8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧈
+ 0x2b9c9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧉
+ 0x2b9ca: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧊
+ 0x2b9cb: "\x06\x06\x06\x06", // 𫧋
+ 0x2b9cc: "\x06\x06\x06\x06\x06\x06", // 𫧌
+ 0x2b9cd: "\x06\x06\x06\x06\x06\x06", // 𫧍
+ 0x2b9ce: "\x06\x06\x06\x06\x06\x06", // 𫧎
+ 0x2b9cf: "\x06\x06\x06\x06\x06\x06", // 𫧏
+ 0x2b9d0: "\x06\x06\x06\x06\x06\x06\x06", // 𫧐
+ 0x2b9d1: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧑
+ 0x2b9d2: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧒
+ 0x2b9d3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧓
+ 0x2b9d4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧔
+ 0x2b9d5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧕
+ 0x2b9d6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧖
+ 0x2b9d7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧗
+ 0x2b9d8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧘
+ 0x2b9d9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧙
+ 0x2b9da: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧚
+ 0x2b9db: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧛
+ 0x2b9dc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧜
+ 0x2b9dd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧝
+ 0x2b9de: "\x06\x06\x06\x06\x06\x06\x06", // 𫧞
+ 0x2b9df: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧟
+ 0x2b9e0: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧠
+ 0x2b9e1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧡
+ 0x2b9e2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧢
+ 0x2b9e3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧣
+ 0x2b9e4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧤
+ 0x2b9e5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧥
+ 0x2b9e6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧦
+ 0x2b9e7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧧
+ 0x2b9e8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧨
+ 0x2b9e9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧩
+ 0x2b9ea: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧪
+ 0x2b9eb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧫
+ 0x2b9ec: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧬
+ 0x2b9ed: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧭
+ 0x2b9ee: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧮
+ 0x2b9ef: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧯
+ 0x2b9f0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧰
+ 0x2b9f1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧱
+ 0x2b9f2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧲
+ 0x2b9f3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧳
+ 0x2b9f4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧴
+ 0x2b9f5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧵
+ 0x2b9f6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧶
+ 0x2b9f7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧷
+ 0x2b9f8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧸
+ 0x2b9f9: "\x06\x06\x06\x06", // 𫧹
+ 0x2b9fa: "\x06\x06\x06\x06\x06\x06", // 𫧺
+ 0x2b9fb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧻
+ 0x2b9fc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧼
+ 0x2b9fd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧽
+ 0x2b9fe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧾
+ 0x2b9ff: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫧿
+ 0x2ba00: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨀
+ 0x2ba01: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨁
+ 0x2ba02: "\x06\x06\x06\x06\x06", // 𫨂
+ 0x2ba03: "\x06\x06\x06\x06\x06\x06\x06", // 𫨃
+ 0x2ba04: "\x06\x06\x06\x06\x06\x06\x06", // 𫨄
+ 0x2ba05: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨅
+ 0x2ba06: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨆
+ 0x2ba07: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨇
+ 0x2ba08: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨈
+ 0x2ba09: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨉
+ 0x2ba0a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨊
+ 0x2ba0b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨋
+ 0x2ba0c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨌
+ 0x2ba0d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨍
+ 0x2ba0e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨎
+ 0x2ba0f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨏
+ 0x2ba10: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨐
+ 0x2ba11: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨑
+ 0x2ba12: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨒
+ 0x2ba13: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨓
+ 0x2ba14: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨔
+ 0x2ba15: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨕
+ 0x2ba16: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨖
+ 0x2ba17: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨗
+ 0x2ba18: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨘
+ 0x2ba19: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨙
+ 0x2ba1a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨚
+ 0x2ba1b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨛
+ 0x2ba1c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨜
+ 0x2ba1d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨝
+ 0x2ba1e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨞
+ 0x2ba1f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨟
+ 0x2ba20: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨠
+ 0x2ba21: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨡
+ 0x2ba22: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨢
+ 0x2ba23: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨣
+ 0x2ba24: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨤
+ 0x2ba25: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨥
+ 0x2ba26: "\x06\x06\x06\x06", // 𫨦
+ 0x2ba27: "\x06\x06\x06\x06\x06\x06\x06", // 𫨧
+ 0x2ba28: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨨
+ 0x2ba29: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨩
+ 0x2ba2a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨪
+ 0x2ba2b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨫
+ 0x2ba2c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨬
+ 0x2ba2d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨭
+ 0x2ba2e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨮
+ 0x2ba2f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨯
+ 0x2ba30: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨰
+ 0x2ba31: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨱
+ 0x2ba32: "\x06\x06\x06\x06", // 𫨲
+ 0x2ba33: "\x06\x06\x06\x06\x06\x06", // 𫨳
+ 0x2ba34: "\x06\x06\x06\x06\x06\x06\x06", // 𫨴
+ 0x2ba35: "\x06\x06\x06\x06\x06\x06\x06", // 𫨵
+ 0x2ba36: "\x06\x06\x06\x06\x06\x06\x06", // 𫨶
+ 0x2ba37: "\x06\x06\x06\x06\x06\x06\x06", // 𫨷
+ 0x2ba38: "\x06\x06\x06\x06\x06\x06\x06", // 𫨸
+ 0x2ba39: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨹
+ 0x2ba3a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨺
+ 0x2ba3b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨻
+ 0x2ba3c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨼
+ 0x2ba3d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨽
+ 0x2ba3e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨾
+ 0x2ba3f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫨿
+ 0x2ba40: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫩀
+ 0x2ba41: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫩁
+ 0x2ba42: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫩂
+ 0x2ba43: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫩃
+ 0x2ba44: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫩄
+ 0x2ba45: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫩅
+ 0x2ba46: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫩆
+ 0x2ba47: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫩇
+ 0x2ba48: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫩈
+ 0x2ba49: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫩉
+ 0x2ba4a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫩊
+ 0x2ba4b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫩋
+ 0x2ba4c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫩌
+ 0x2ba4d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫩍
+ 0x2ba4e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫩎
+ 0x2ba4f: "\x06\x06\x06\x06", // 𫩏
+ 0x2ba50: "\x06\x06\x06\x06\x06", // 𫩐
+ 0x2ba51: "\x06\x06\x06\x06\x06", // 𫩑
+ 0x2ba52: "\x06\x06\x06\x06\x06\x06", // 𫩒
+ 0x2ba53: "\x06\x06\x06\x06\x06\x06", // 𫩓
+ 0x2ba54: "\x06\x06\x06\x06\x06\x06", // 𫩔
+ 0x2ba55: "\x06\x06\x06\x06\x06\x06", // 𫩕
+ 0x2ba56: "\x06\x06\x06\x06\x06\x06", // 𫩖
+ 0x2ba57: "\x06\x06\x06\x06\x06\x06", // 𫩗
+ 0x2ba58: "\x06\x06\x06\x06\x06\x06\x06", // 𫩘
+ 0x2ba59: "\x06\x06\x06\x06\x06\x06\x06", // 𫩙
+ 0x2ba5a: "\x06\x06\x06\x06\x06\x06\x06", // 𫩚
+ 0x2ba5b: "\x06\x06\x06\x06\x06\x06\x06", // 𫩛
+ 0x2ba5c: "\x06\x06\x06\x06\x06\x06\x06", // 𫩜
+ 0x2ba5d: "\x06\x06\x06\x06\x06\x06", // 𫩝
+ 0x2ba5e: "\x06\x06\x06\x06\x06\x06\x06", // 𫩞
+ 0x2ba5f: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫩟
+ 0x2ba60: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫩠
+ 0x2ba61: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫩡
+ 0x2ba62: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫩢
+ 0x2ba63: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫩣
+ 0x2ba64: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫩤
+ 0x2ba65: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫩥
+ 0x2ba66: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫩦
+ 0x2ba67: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫩧
+ 0x2ba68: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫩨
+ 0x2ba69: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫩩
+ 0x2ba6a: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫩪
+ 0x2ba6b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫩫
+ 0x2ba6c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫩬
+ 0x2ba6d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫩭
+ 0x2ba6e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫩮
+ 0x2ba6f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫩯
+ 0x2ba70: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫩰
+ 0x2ba71: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫩱
+ 0x2ba72: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫩲
+ 0x2ba73: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫩳
+ 0x2ba74: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫩴
+ 0x2ba75: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫩵
+ 0x2ba76: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫩶
+ 0x2ba77: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫩷
+ 0x2ba78: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫩸
+ 0x2ba79: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫩹
+ 0x2ba7a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫩺
+ 0x2ba7b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫩻
+ 0x2ba7c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫩼
+ 0x2ba7d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫩽
+ 0x2ba7e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫩾
+ 0x2ba7f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫩿
+ 0x2ba80: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪀
+ 0x2ba81: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪁
+ 0x2ba82: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪂
+ 0x2ba83: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪃
+ 0x2ba84: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪄
+ 0x2ba85: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪅
+ 0x2ba86: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪆
+ 0x2ba87: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪇
+ 0x2ba88: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪈
+ 0x2ba89: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪉
+ 0x2ba8a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪊
+ 0x2ba8b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪋
+ 0x2ba8c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪌
+ 0x2ba8d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪍
+ 0x2ba8e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪎
+ 0x2ba8f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪏
+ 0x2ba90: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪐
+ 0x2ba91: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪑
+ 0x2ba92: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪒
+ 0x2ba93: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪓
+ 0x2ba94: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪔
+ 0x2ba95: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪕
+ 0x2ba96: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪖
+ 0x2ba97: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪗
+ 0x2ba98: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪘
+ 0x2ba99: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪙
+ 0x2ba9a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪚
+ 0x2ba9b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪛
+ 0x2ba9c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪜
+ 0x2ba9d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪝
+ 0x2ba9e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪞
+ 0x2ba9f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪟
+ 0x2baa0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪠
+ 0x2baa1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪡
+ 0x2baa2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪢
+ 0x2baa3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪣
+ 0x2baa4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪤
+ 0x2baa5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪥
+ 0x2baa6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪦
+ 0x2baa7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪧
+ 0x2baa8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪨
+ 0x2baa9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪩
+ 0x2baaa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪪
+ 0x2baab: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪫
+ 0x2baac: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪬
+ 0x2baad: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪭
+ 0x2baae: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪮
+ 0x2baaf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪯
+ 0x2bab0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪰
+ 0x2bab1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪱
+ 0x2bab2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪲
+ 0x2bab3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪳
+ 0x2bab4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪴
+ 0x2bab5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪵
+ 0x2bab6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪶
+ 0x2bab7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪷
+ 0x2bab8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪸
+ 0x2bab9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪹
+ 0x2baba: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪺
+ 0x2babb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪻
+ 0x2babc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪼
+ 0x2babd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪽
+ 0x2babe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪾
+ 0x2babf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫪿
+ 0x2bac0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫀
+ 0x2bac1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫁
+ 0x2bac2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫂
+ 0x2bac3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫃
+ 0x2bac4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫄
+ 0x2bac5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫅
+ 0x2bac6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫆
+ 0x2bac7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫇
+ 0x2bac8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫈
+ 0x2bac9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫉
+ 0x2baca: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫊
+ 0x2bacb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫋
+ 0x2bacc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫌
+ 0x2bacd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫍
+ 0x2bace: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫎
+ 0x2bacf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫏
+ 0x2bad0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫐
+ 0x2bad1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫑
+ 0x2bad2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫒
+ 0x2bad3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫓
+ 0x2bad4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫔
+ 0x2bad5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫕
+ 0x2bad6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫖
+ 0x2bad7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫗
+ 0x2bad8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫘
+ 0x2bad9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫙
+ 0x2bada: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫚
+ 0x2badb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫛
+ 0x2badc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫜
+ 0x2badd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫝
+ 0x2bade: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫞
+ 0x2badf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫟
+ 0x2bae0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫠
+ 0x2bae1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫡
+ 0x2bae2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫢
+ 0x2bae3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫣
+ 0x2bae4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫤
+ 0x2bae5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫥
+ 0x2bae6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫦
+ 0x2bae7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫧
+ 0x2bae8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫨
+ 0x2bae9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫩
+ 0x2baea: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫪
+ 0x2baeb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫫
+ 0x2baec: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫬
+ 0x2baed: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫭
+ 0x2baee: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫮
+ 0x2baef: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫯
+ 0x2baf0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫰
+ 0x2baf1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫱
+ 0x2baf2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫲
+ 0x2baf3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫳
+ 0x2baf4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫴
+ 0x2baf5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫵
+ 0x2baf6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫶
+ 0x2baf7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫷
+ 0x2baf8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫸
+ 0x2baf9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫹
+ 0x2bafa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫺
+ 0x2bafb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫻
+ 0x2bafc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫼
+ 0x2bafd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫽
+ 0x2bafe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫾
+ 0x2baff: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫫿
+ 0x2bb00: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬀
+ 0x2bb01: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬁
+ 0x2bb02: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬂
+ 0x2bb03: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬃
+ 0x2bb04: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬄
+ 0x2bb05: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬅
+ 0x2bb06: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬆
+ 0x2bb07: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬇
+ 0x2bb08: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬈
+ 0x2bb09: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬉
+ 0x2bb0a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬊
+ 0x2bb0b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬋
+ 0x2bb0c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬌
+ 0x2bb0d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬍
+ 0x2bb0e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬎
+ 0x2bb0f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬏
+ 0x2bb10: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬐
+ 0x2bb11: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬑
+ 0x2bb12: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬒
+ 0x2bb13: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬓
+ 0x2bb14: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬔
+ 0x2bb15: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬕
+ 0x2bb16: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬖
+ 0x2bb17: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬗
+ 0x2bb18: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬘
+ 0x2bb19: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬙
+ 0x2bb1a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬚
+ 0x2bb1b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬛
+ 0x2bb1c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬜
+ 0x2bb1d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬝
+ 0x2bb1e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬞
+ 0x2bb1f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬟
+ 0x2bb20: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬠
+ 0x2bb21: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬡
+ 0x2bb22: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬢
+ 0x2bb23: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬣
+ 0x2bb24: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬤
+ 0x2bb25: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬥
+ 0x2bb26: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬦
+ 0x2bb27: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬧
+ 0x2bb28: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬨
+ 0x2bb29: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬩
+ 0x2bb2a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬪
+ 0x2bb2b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬫
+ 0x2bb2c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬬
+ 0x2bb2d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬭
+ 0x2bb2e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬮
+ 0x2bb2f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬯
+ 0x2bb30: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬰
+ 0x2bb31: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬱
+ 0x2bb32: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬲
+ 0x2bb33: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬳
+ 0x2bb34: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬴
+ 0x2bb35: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬵
+ 0x2bb36: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬶
+ 0x2bb37: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬷
+ 0x2bb38: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬸
+ 0x2bb39: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬹
+ 0x2bb3a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬺
+ 0x2bb3b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬻
+ 0x2bb3c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬼
+ 0x2bb3d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬽
+ 0x2bb3e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬾
+ 0x2bb3f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫬿
+ 0x2bb40: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫭀
+ 0x2bb41: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫭁
+ 0x2bb42: "\x06\x06\x06\x06\x06", // 𫭂
+ 0x2bb43: "\x06\x06\x06\x06\x06\x06\x06", // 𫭃
+ 0x2bb44: "\x06\x06\x06\x06\x06\x06\x06", // 𫭄
+ 0x2bb45: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫭅
+ 0x2bb46: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫭆
+ 0x2bb47: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫭇
+ 0x2bb48: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫭈
+ 0x2bb49: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫭉
+ 0x2bb4a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫭊
+ 0x2bb4b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫭋
+ 0x2bb4c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫭌
+ 0x2bb4d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫭍
+ 0x2bb4e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫭎
+ 0x2bb4f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫭏
+ 0x2bb50: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫭐
+ 0x2bb51: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫭑
+ 0x2bb52: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫭒
+ 0x2bb53: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫭓
+ 0x2bb54: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫭔
+ 0x2bb55: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫭕
+ 0x2bb56: "\x06\x06\x06\x06", // 𫭖
+ 0x2bb57: "\x06\x06\x06\x06\x06", // 𫭗
+ 0x2bb58: "\x06\x06\x06\x06\x06", // 𫭘
+ 0x2bb59: "\x06\x06\x06\x06\x06\x06", // 𫭙
+ 0x2bb5a: "\x06\x06\x06\x06\x06\x06", // 𫭚
+ 0x2bb5b: "\x06\x06\x06\x06\x06\x06\x06", // 𫭛
+ 0x2bb5c: "\x06\x06\x06\x06\x06\x06\x06", // 𫭜
+ 0x2bb5d: "\x06\x06\x06\x06\x06\x06\x06", // 𫭝
+ 0x2bb5e: "\x06\x06\x06\x06\x06\x06\x06", // 𫭞
+ 0x2bb5f: "\x06\x06\x06\x06\x06\x06\x06", // 𫭟
+ 0x2bb60: "\x06\x06\x06\x06\x06\x06\x06", // 𫭠
+ 0x2bb61: "\x06\x06\x06\x06\x06\x06\x06", // 𫭡
+ 0x2bb62: "\x06\x06\x06\x06\x06\x06\x06", // 𫭢
+ 0x2bb63: "\x06\x06\x06\x06\x06\x06\x06", // 𫭣
+ 0x2bb64: "\x06\x06\x06\x06\x06\x06\x06", // 𫭤
+ 0x2bb65: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫭥
+ 0x2bb66: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫭦
+ 0x2bb67: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫭧
+ 0x2bb68: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫭨
+ 0x2bb69: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫭩
+ 0x2bb6a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫭪
+ 0x2bb6b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫭫
+ 0x2bb6c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫭬
+ 0x2bb6d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫭭
+ 0x2bb6e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫭮
+ 0x2bb6f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫭯
+ 0x2bb70: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫭰
+ 0x2bb71: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫭱
+ 0x2bb72: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫭲
+ 0x2bb73: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫭳
+ 0x2bb74: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫭴
+ 0x2bb75: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫭵
+ 0x2bb76: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫭶
+ 0x2bb77: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫭷
+ 0x2bb78: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫭸
+ 0x2bb79: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫭹
+ 0x2bb7a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫭺
+ 0x2bb7b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫭻
+ 0x2bb7c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫭼
+ 0x2bb7d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫭽
+ 0x2bb7e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫭾
+ 0x2bb7f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫭿
+ 0x2bb80: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮀
+ 0x2bb81: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮁
+ 0x2bb82: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮂
+ 0x2bb83: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮃
+ 0x2bb84: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮄
+ 0x2bb85: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮅
+ 0x2bb86: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮆
+ 0x2bb87: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮇
+ 0x2bb88: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮈
+ 0x2bb89: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮉
+ 0x2bb8a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮊
+ 0x2bb8b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮋
+ 0x2bb8c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮌
+ 0x2bb8d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮍
+ 0x2bb8e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮎
+ 0x2bb8f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮏
+ 0x2bb90: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮐
+ 0x2bb91: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮑
+ 0x2bb92: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮒
+ 0x2bb93: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮓
+ 0x2bb94: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮔
+ 0x2bb95: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮕
+ 0x2bb96: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮖
+ 0x2bb97: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮗
+ 0x2bb98: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮘
+ 0x2bb99: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮙
+ 0x2bb9a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮚
+ 0x2bb9b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮛
+ 0x2bb9c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮜
+ 0x2bb9d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮝
+ 0x2bb9e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮞
+ 0x2bb9f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮟
+ 0x2bba0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮠
+ 0x2bba1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮡
+ 0x2bba2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮢
+ 0x2bba3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮣
+ 0x2bba4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮤
+ 0x2bba5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮥
+ 0x2bba6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮦
+ 0x2bba7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮧
+ 0x2bba8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮨
+ 0x2bba9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮩
+ 0x2bbaa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮪
+ 0x2bbab: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮫
+ 0x2bbac: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮬
+ 0x2bbad: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮭
+ 0x2bbae: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮮
+ 0x2bbaf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮯
+ 0x2bbb0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮰
+ 0x2bbb1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮱
+ 0x2bbb2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮲
+ 0x2bbb3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮳
+ 0x2bbb4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮴
+ 0x2bbb5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮵
+ 0x2bbb6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮶
+ 0x2bbb7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮷
+ 0x2bbb8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮸
+ 0x2bbb9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮹
+ 0x2bbba: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮺
+ 0x2bbbb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮻
+ 0x2bbbc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮼
+ 0x2bbbd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮽
+ 0x2bbbe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮾
+ 0x2bbbf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫮿
+ 0x2bbc0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯀
+ 0x2bbc1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯁
+ 0x2bbc2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯂
+ 0x2bbc3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯃
+ 0x2bbc4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯄
+ 0x2bbc5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯅
+ 0x2bbc6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯆
+ 0x2bbc7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯇
+ 0x2bbc8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯈
+ 0x2bbc9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯉
+ 0x2bbca: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯊
+ 0x2bbcb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯋
+ 0x2bbcc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯌
+ 0x2bbcd: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯍
+ 0x2bbce: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯎
+ 0x2bbcf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯏
+ 0x2bbd0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯐
+ 0x2bbd1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯑
+ 0x2bbd2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯒
+ 0x2bbd3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯓
+ 0x2bbd4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯔
+ 0x2bbd5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯕
+ 0x2bbd6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯖
+ 0x2bbd7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯗
+ 0x2bbd8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯘
+ 0x2bbd9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯙
+ 0x2bbda: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯚
+ 0x2bbdb: "\x06\x06\x06\x06", // 𫯛
+ 0x2bbdc: "\x06\x06\x06\x06\x06\x06", // 𫯜
+ 0x2bbdd: "\x06\x06\x06\x06\x06\x06\x06", // 𫯝
+ 0x2bbde: "\x06\x06\x06\x06\x06\x06\x06", // 𫯞
+ 0x2bbdf: "\x06\x06\x06\x06\x06\x06\x06", // 𫯟
+ 0x2bbe0: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯠
+ 0x2bbe1: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯡
+ 0x2bbe2: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯢
+ 0x2bbe3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯣
+ 0x2bbe4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯤
+ 0x2bbe5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯥
+ 0x2bbe6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯦
+ 0x2bbe7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯧
+ 0x2bbe8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯨
+ 0x2bbe9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯩
+ 0x2bbea: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯪
+ 0x2bbeb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯫
+ 0x2bbec: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯬
+ 0x2bbed: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯭
+ 0x2bbee: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯮
+ 0x2bbef: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯯
+ 0x2bbf0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯰
+ 0x2bbf1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯱
+ 0x2bbf2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯲
+ 0x2bbf3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯳
+ 0x2bbf4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯴
+ 0x2bbf5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯵
+ 0x2bbf6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯶
+ 0x2bbf7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯷
+ 0x2bbf8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯸
+ 0x2bbf9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯹
+ 0x2bbfa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯺
+ 0x2bbfb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯻
+ 0x2bbfc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯼
+ 0x2bbfd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯽
+ 0x2bbfe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯾
+ 0x2bbff: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫯿
+ 0x2bc00: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫰀
+ 0x2bc01: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫰁
+ 0x2bc02: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫰂
+ 0x2bc03: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫰃
+ 0x2bc04: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫰄
+ 0x2bc05: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫰅
+ 0x2bc06: "\x06\x06\x06\x06", // 𫰆
+ 0x2bc07: "\x06\x06\x06\x06\x06", // 𫰇
+ 0x2bc08: "\x06\x06\x06\x06\x06\x06", // 𫰈
+ 0x2bc09: "\x06\x06\x06\x06\x06\x06", // 𫰉
+ 0x2bc0a: "\x06\x06\x06\x06\x06\x06", // 𫰊
+ 0x2bc0b: "\x06\x06\x06\x06\x06\x06\x06", // 𫰋
+ 0x2bc0c: "\x06\x06\x06\x06\x06\x06\x06", // 𫰌
+ 0x2bc0d: "\x06\x06\x06\x06\x06\x06\x06", // 𫰍
+ 0x2bc0e: "\x06\x06\x06\x06\x06\x06\x06", // 𫰎
+ 0x2bc0f: "\x06\x06\x06\x06\x06\x06\x06", // 𫰏
+ 0x2bc10: "\x06\x06\x06\x06\x06\x06\x06", // 𫰐
+ 0x2bc11: "\x06\x06\x06\x06\x06\x06\x06", // 𫰑
+ 0x2bc12: "\x06\x06\x06\x06\x06\x06\x06", // 𫰒
+ 0x2bc13: "\x06\x06\x06\x06\x06\x06\x06", // 𫰓
+ 0x2bc14: "\x06\x06\x06\x06\x06\x06\x06", // 𫰔
+ 0x2bc15: "\x06\x06\x06\x06\x06\x06\x06", // 𫰕
+ 0x2bc16: "\x06\x06\x06\x06\x06\x06\x06", // 𫰖
+ 0x2bc17: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫰗
+ 0x2bc18: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫰘
+ 0x2bc19: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫰙
+ 0x2bc1a: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫰚
+ 0x2bc1b: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫰛
+ 0x2bc1c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫰜
+ 0x2bc1d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫰝
+ 0x2bc1e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫰞
+ 0x2bc1f: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫰟
+ 0x2bc20: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫰠
+ 0x2bc21: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫰡
+ 0x2bc22: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫰢
+ 0x2bc23: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫰣
+ 0x2bc24: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫰤
+ 0x2bc25: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫰥
+ 0x2bc26: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫰦
+ 0x2bc27: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫰧
+ 0x2bc28: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫰨
+ 0x2bc29: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫰩
+ 0x2bc2a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫰪
+ 0x2bc2b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫰫
+ 0x2bc2c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫰬
+ 0x2bc2d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫰭
+ 0x2bc2e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫰮
+ 0x2bc2f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫰯
+ 0x2bc30: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫰰
+ 0x2bc31: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫰱
+ 0x2bc32: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫰲
+ 0x2bc33: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫰳
+ 0x2bc34: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫰴
+ 0x2bc35: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫰵
+ 0x2bc36: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫰶
+ 0x2bc37: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫰷
+ 0x2bc38: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫰸
+ 0x2bc39: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫰹
+ 0x2bc3a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫰺
+ 0x2bc3b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫰻
+ 0x2bc3c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫰼
+ 0x2bc3d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫰽
+ 0x2bc3e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫰾
+ 0x2bc3f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫰿
+ 0x2bc40: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱀
+ 0x2bc41: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱁
+ 0x2bc42: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱂
+ 0x2bc43: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱃
+ 0x2bc44: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱄
+ 0x2bc45: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱅
+ 0x2bc46: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱆
+ 0x2bc47: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱇
+ 0x2bc48: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱈
+ 0x2bc49: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱉
+ 0x2bc4a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱊
+ 0x2bc4b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱋
+ 0x2bc4c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱌
+ 0x2bc4d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱍
+ 0x2bc4e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱎
+ 0x2bc4f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱏
+ 0x2bc50: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱐
+ 0x2bc51: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱑
+ 0x2bc52: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱒
+ 0x2bc53: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱓
+ 0x2bc54: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱔
+ 0x2bc55: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱕
+ 0x2bc56: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱖
+ 0x2bc57: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱗
+ 0x2bc58: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱘
+ 0x2bc59: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱙
+ 0x2bc5a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱚
+ 0x2bc5b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱛
+ 0x2bc5c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱜
+ 0x2bc5d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱝
+ 0x2bc5e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱞
+ 0x2bc5f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱟
+ 0x2bc60: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱠
+ 0x2bc61: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱡
+ 0x2bc62: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱢
+ 0x2bc63: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱣
+ 0x2bc64: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱤
+ 0x2bc65: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱥
+ 0x2bc66: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱦
+ 0x2bc67: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱧
+ 0x2bc68: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱨
+ 0x2bc69: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱩
+ 0x2bc6a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱪
+ 0x2bc6b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱫
+ 0x2bc6c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱬
+ 0x2bc6d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱭
+ 0x2bc6e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱮
+ 0x2bc6f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱯
+ 0x2bc70: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱰
+ 0x2bc71: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱱
+ 0x2bc72: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱲
+ 0x2bc73: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱳
+ 0x2bc74: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱴
+ 0x2bc75: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱵
+ 0x2bc76: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱶
+ 0x2bc77: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱷
+ 0x2bc78: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱸
+ 0x2bc79: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱹
+ 0x2bc7a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱺
+ 0x2bc7b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱻
+ 0x2bc7c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱼
+ 0x2bc7d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱽
+ 0x2bc7e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱾
+ 0x2bc7f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫱿
+ 0x2bc80: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲀
+ 0x2bc81: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲁
+ 0x2bc82: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲂
+ 0x2bc83: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲃
+ 0x2bc84: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲄
+ 0x2bc85: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲅
+ 0x2bc86: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲆
+ 0x2bc87: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲇
+ 0x2bc88: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲈
+ 0x2bc89: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲉
+ 0x2bc8a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲊
+ 0x2bc8b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲋
+ 0x2bc8c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲌
+ 0x2bc8d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲍
+ 0x2bc8e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲎
+ 0x2bc8f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲏
+ 0x2bc90: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲐
+ 0x2bc91: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲑
+ 0x2bc92: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲒
+ 0x2bc93: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲓
+ 0x2bc94: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲔
+ 0x2bc95: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲕
+ 0x2bc96: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲖
+ 0x2bc97: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲗
+ 0x2bc98: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲘
+ 0x2bc99: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲙
+ 0x2bc9a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲚
+ 0x2bc9b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲛
+ 0x2bc9c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲜
+ 0x2bc9d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲝
+ 0x2bc9e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲞
+ 0x2bc9f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲟
+ 0x2bca0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲠
+ 0x2bca1: "\x06\x06\x06\x06\x06", // 𫲡
+ 0x2bca2: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲢
+ 0x2bca3: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲣
+ 0x2bca4: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲤
+ 0x2bca5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲥
+ 0x2bca6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲦
+ 0x2bca7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲧
+ 0x2bca8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲨
+ 0x2bca9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲩
+ 0x2bcaa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲪
+ 0x2bcab: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲫
+ 0x2bcac: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲬
+ 0x2bcad: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲭
+ 0x2bcae: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲮
+ 0x2bcaf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲯
+ 0x2bcb0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲰
+ 0x2bcb1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲱
+ 0x2bcb2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲲
+ 0x2bcb3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲳
+ 0x2bcb4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲴
+ 0x2bcb5: "\x06\x06\x06\x06\x06\x06", // 𫲵
+ 0x2bcb6: "\x06\x06\x06\x06\x06\x06", // 𫲶
+ 0x2bcb7: "\x06\x06\x06\x06\x06\x06\x06", // 𫲷
+ 0x2bcb8: "\x06\x06\x06\x06\x06\x06\x06", // 𫲸
+ 0x2bcb9: "\x06\x06\x06\x06\x06\x06\x06", // 𫲹
+ 0x2bcba: "\x06\x06\x06\x06\x06\x06\x06", // 𫲺
+ 0x2bcbb: "\x06\x06\x06\x06\x06\x06\x06", // 𫲻
+ 0x2bcbc: "\x06\x06\x06\x06\x06\x06", // 𫲼
+ 0x2bcbd: "\x06\x06\x06\x06\x06\x06\x06", // 𫲽
+ 0x2bcbe: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲾
+ 0x2bcbf: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫲿
+ 0x2bcc0: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳀
+ 0x2bcc1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳁
+ 0x2bcc2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳂
+ 0x2bcc3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳃
+ 0x2bcc4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳄
+ 0x2bcc5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳅
+ 0x2bcc6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳆
+ 0x2bcc7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳇
+ 0x2bcc8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳈
+ 0x2bcc9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳉
+ 0x2bcca: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳊
+ 0x2bccb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳋
+ 0x2bccc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳌
+ 0x2bccd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳍
+ 0x2bcce: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳎
+ 0x2bccf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳏
+ 0x2bcd0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳐
+ 0x2bcd1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳑
+ 0x2bcd2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳒
+ 0x2bcd3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳓
+ 0x2bcd4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳔
+ 0x2bcd5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳕
+ 0x2bcd6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳖
+ 0x2bcd7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳗
+ 0x2bcd8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳘
+ 0x2bcd9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳙
+ 0x2bcda: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳚
+ 0x2bcdb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳛
+ 0x2bcdc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳜
+ 0x2bcdd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳝
+ 0x2bcde: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳞
+ 0x2bcdf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳟
+ 0x2bce0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳠
+ 0x2bce1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳡
+ 0x2bce2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳢
+ 0x2bce3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳣
+ 0x2bce4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳤
+ 0x2bce5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳥
+ 0x2bce6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳦
+ 0x2bce7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳧
+ 0x2bce8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳨
+ 0x2bce9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳩
+ 0x2bcea: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳪
+ 0x2bceb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳫
+ 0x2bcec: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳬
+ 0x2bced: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳭
+ 0x2bcee: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳮
+ 0x2bcef: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳯
+ 0x2bcf0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳰
+ 0x2bcf1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳱
+ 0x2bcf2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳲
+ 0x2bcf3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳳
+ 0x2bcf4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳴
+ 0x2bcf5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳵
+ 0x2bcf6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳶
+ 0x2bcf7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳷
+ 0x2bcf8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳸
+ 0x2bcf9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳹
+ 0x2bcfa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳺
+ 0x2bcfb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳻
+ 0x2bcfc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳼
+ 0x2bcfd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳽
+ 0x2bcfe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳾
+ 0x2bcff: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫳿
+ 0x2bd00: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴀
+ 0x2bd01: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴁
+ 0x2bd02: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴂
+ 0x2bd03: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴃
+ 0x2bd04: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴄
+ 0x2bd05: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴅
+ 0x2bd06: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴆
+ 0x2bd07: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴇
+ 0x2bd08: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴈
+ 0x2bd09: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴉
+ 0x2bd0a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴊
+ 0x2bd0b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴋
+ 0x2bd0c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴌
+ 0x2bd0d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴍
+ 0x2bd0e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴎
+ 0x2bd0f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴏
+ 0x2bd10: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴐
+ 0x2bd11: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴑
+ 0x2bd12: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴒
+ 0x2bd13: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴓
+ 0x2bd14: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴔
+ 0x2bd15: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴕
+ 0x2bd16: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴖
+ 0x2bd17: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴗
+ 0x2bd18: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴘
+ 0x2bd19: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴙
+ 0x2bd1a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴚
+ 0x2bd1b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴛
+ 0x2bd1c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴜
+ 0x2bd1d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴝
+ 0x2bd1e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴞
+ 0x2bd1f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴟
+ 0x2bd20: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴠
+ 0x2bd21: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴡
+ 0x2bd22: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴢
+ 0x2bd23: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴣
+ 0x2bd24: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴤
+ 0x2bd25: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴥
+ 0x2bd26: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴦
+ 0x2bd27: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴧
+ 0x2bd28: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴨
+ 0x2bd29: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴩
+ 0x2bd2a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴪
+ 0x2bd2b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴫
+ 0x2bd2c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴬
+ 0x2bd2d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴭
+ 0x2bd2e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴮
+ 0x2bd2f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴯
+ 0x2bd30: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴰
+ 0x2bd31: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴱
+ 0x2bd32: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴲
+ 0x2bd33: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴳
+ 0x2bd34: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴴
+ 0x2bd35: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴵
+ 0x2bd36: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴶
+ 0x2bd37: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴷
+ 0x2bd38: "\x06\x06\x06\x06\x06\x06\x06", // 𫴸
+ 0x2bd39: "\x06\x06\x06\x06\x06\x06\x06", // 𫴹
+ 0x2bd3a: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴺
+ 0x2bd3b: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴻
+ 0x2bd3c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴼
+ 0x2bd3d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴽
+ 0x2bd3e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴾
+ 0x2bd3f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫴿
+ 0x2bd40: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵀
+ 0x2bd41: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵁
+ 0x2bd42: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵂
+ 0x2bd43: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵃
+ 0x2bd44: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵄
+ 0x2bd45: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵅
+ 0x2bd46: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵆
+ 0x2bd47: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵇
+ 0x2bd48: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵈
+ 0x2bd49: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵉
+ 0x2bd4a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵊
+ 0x2bd4b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵋
+ 0x2bd4c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵌
+ 0x2bd4d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵍
+ 0x2bd4e: "\x06\x06\x06\x06\x06", // 𫵎
+ 0x2bd4f: "\x06\x06\x06\x06\x06\x06\x06", // 𫵏
+ 0x2bd50: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵐
+ 0x2bd51: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵑
+ 0x2bd52: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵒
+ 0x2bd53: "\x06\x06\x06\x06\x06\x06\x06", // 𫵓
+ 0x2bd54: "\x06\x06\x06\x06\x06\x06\x06", // 𫵔
+ 0x2bd55: "\x06\x06\x06\x06\x06\x06\x06", // 𫵕
+ 0x2bd56: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵖
+ 0x2bd57: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵗
+ 0x2bd58: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵘
+ 0x2bd59: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵙
+ 0x2bd5a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵚
+ 0x2bd5b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵛
+ 0x2bd5c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵜
+ 0x2bd5d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵝
+ 0x2bd5e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵞
+ 0x2bd5f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵟
+ 0x2bd60: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵠
+ 0x2bd61: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵡
+ 0x2bd62: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵢
+ 0x2bd63: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵣
+ 0x2bd64: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵤
+ 0x2bd65: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵥
+ 0x2bd66: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵦
+ 0x2bd67: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵧
+ 0x2bd68: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵨
+ 0x2bd69: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵩
+ 0x2bd6a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵪
+ 0x2bd6b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵫
+ 0x2bd6c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵬
+ 0x2bd6d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵭
+ 0x2bd6e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵮
+ 0x2bd6f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵯
+ 0x2bd70: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵰
+ 0x2bd71: "\x06\x06\x06\x06\x06", // 𫵱
+ 0x2bd72: "\x06\x06\x06\x06\x06", // 𫵲
+ 0x2bd73: "\x06\x06\x06\x06\x06", // 𫵳
+ 0x2bd74: "\x06\x06\x06\x06\x06", // 𫵴
+ 0x2bd75: "\x06\x06\x06\x06\x06\x06", // 𫵵
+ 0x2bd76: "\x06\x06\x06\x06\x06\x06\x06", // 𫵶
+ 0x2bd77: "\x06\x06\x06\x06\x06\x06\x06", // 𫵷
+ 0x2bd78: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵸
+ 0x2bd79: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵹
+ 0x2bd7a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵺
+ 0x2bd7b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵻
+ 0x2bd7c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵼
+ 0x2bd7d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵽
+ 0x2bd7e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵾
+ 0x2bd7f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫵿
+ 0x2bd80: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶀
+ 0x2bd81: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶁
+ 0x2bd82: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶂
+ 0x2bd83: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶃
+ 0x2bd84: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶄
+ 0x2bd85: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶅
+ 0x2bd86: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶆
+ 0x2bd87: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶇
+ 0x2bd88: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶈
+ 0x2bd89: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶉
+ 0x2bd8a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶊
+ 0x2bd8b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶋
+ 0x2bd8c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶌
+ 0x2bd8d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶍
+ 0x2bd8e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶎
+ 0x2bd8f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶏
+ 0x2bd90: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶐
+ 0x2bd91: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶑
+ 0x2bd92: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶒
+ 0x2bd93: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶓
+ 0x2bd94: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶔
+ 0x2bd95: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶕
+ 0x2bd96: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶖
+ 0x2bd97: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶗
+ 0x2bd98: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶘
+ 0x2bd99: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶙
+ 0x2bd9a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶚
+ 0x2bd9b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶛
+ 0x2bd9c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶜
+ 0x2bd9d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶝
+ 0x2bd9e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶞
+ 0x2bd9f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶟
+ 0x2bda0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶠
+ 0x2bda1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶡
+ 0x2bda2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶢
+ 0x2bda3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶣
+ 0x2bda4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶤
+ 0x2bda5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶥
+ 0x2bda6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶦
+ 0x2bda7: "\x06\x06\x06", // 𫶧
+ 0x2bda8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶨
+ 0x2bda9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶩
+ 0x2bdaa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶪
+ 0x2bdab: "\x06\x06\x06\x06\x06\x06\x06", // 𫶫
+ 0x2bdac: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶬
+ 0x2bdad: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶭
+ 0x2bdae: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶮
+ 0x2bdaf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶯
+ 0x2bdb0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶰
+ 0x2bdb1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶱
+ 0x2bdb2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶲
+ 0x2bdb3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶳
+ 0x2bdb4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶴
+ 0x2bdb5: "\x06\x06\x06\x06\x06\x06", // 𫶵
+ 0x2bdb6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶶
+ 0x2bdb7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶷
+ 0x2bdb8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶸
+ 0x2bdb9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶹
+ 0x2bdba: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶺
+ 0x2bdbb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶻
+ 0x2bdbc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫶼
+ 0x2bdbd: "\x06\x06\x06\x06\x06", // 𫶽
+ 0x2bdbe: "\x06\x06\x06\x06\x06", // 𫶾
+ 0x2bdbf: "\x06\x06\x06\x06\x06\x06\x06", // 𫶿
+ 0x2bdc0: "\x06\x06\x06\x06\x06\x06\x06", // 𫷀
+ 0x2bdc1: "\x06\x06\x06\x06\x06\x06\x06", // 𫷁
+ 0x2bdc2: "\x06\x06\x06\x06\x06\x06\x06", // 𫷂
+ 0x2bdc3: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷃
+ 0x2bdc4: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷄
+ 0x2bdc5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷅
+ 0x2bdc6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷆
+ 0x2bdc7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷇
+ 0x2bdc8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷈
+ 0x2bdc9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷉
+ 0x2bdca: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷊
+ 0x2bdcb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷋
+ 0x2bdcc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷌
+ 0x2bdcd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷍
+ 0x2bdce: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷎
+ 0x2bdcf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷏
+ 0x2bdd0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷐
+ 0x2bdd1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷑
+ 0x2bdd2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷒
+ 0x2bdd3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷓
+ 0x2bdd4: "\x06\x06\x06\x06\x06\x06", // 𫷔
+ 0x2bdd5: "\x06\x06\x06\x06\x06\x06\x06", // 𫷕
+ 0x2bdd6: "\x06\x06\x06\x06\x06\x06\x06", // 𫷖
+ 0x2bdd7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷗
+ 0x2bdd8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷘
+ 0x2bdd9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷙
+ 0x2bdda: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷚
+ 0x2bddb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷛
+ 0x2bddc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷜
+ 0x2bddd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷝
+ 0x2bdde: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷞
+ 0x2bddf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷟
+ 0x2bde0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷠
+ 0x2bde1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷡
+ 0x2bde2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷢
+ 0x2bde3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷣
+ 0x2bde4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷤
+ 0x2bde5: "\x06\x06\x06\x06\x06", // 𫷥
+ 0x2bde6: "\x06\x06\x06\x06\x06\x06", // 𫷦
+ 0x2bde7: "\x06\x06\x06\x06\x06\x06\x06", // 𫷧
+ 0x2bde8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷨
+ 0x2bde9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷩
+ 0x2bdea: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷪
+ 0x2bdeb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷫
+ 0x2bdec: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷬
+ 0x2bded: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷭
+ 0x2bdee: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷮
+ 0x2bdef: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷯
+ 0x2bdf0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷰
+ 0x2bdf1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷱
+ 0x2bdf2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷲
+ 0x2bdf3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷳
+ 0x2bdf4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷴
+ 0x2bdf5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷵
+ 0x2bdf6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷶
+ 0x2bdf7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷷
+ 0x2bdf8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷸
+ 0x2bdf9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷹
+ 0x2bdfa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷺
+ 0x2bdfb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷻
+ 0x2bdfc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷼
+ 0x2bdfd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷽
+ 0x2bdfe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷾
+ 0x2bdff: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫷿
+ 0x2be00: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸀
+ 0x2be01: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸁
+ 0x2be02: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸂
+ 0x2be03: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸃
+ 0x2be04: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸄
+ 0x2be05: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸅
+ 0x2be06: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸆
+ 0x2be07: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸇
+ 0x2be08: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸈
+ 0x2be09: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸉
+ 0x2be0a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸊
+ 0x2be0b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸋
+ 0x2be0c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸌
+ 0x2be0d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸍
+ 0x2be0e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸎
+ 0x2be0f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸏
+ 0x2be10: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸐
+ 0x2be11: "\x06\x06\x06\x06\x06", // 𫸑
+ 0x2be12: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸒
+ 0x2be13: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸓
+ 0x2be14: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸔
+ 0x2be15: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸕
+ 0x2be16: "\x06\x06\x06\x06\x06\x06", // 𫸖
+ 0x2be17: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸗
+ 0x2be18: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸘
+ 0x2be19: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸙
+ 0x2be1a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸚
+ 0x2be1b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸛
+ 0x2be1c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸜
+ 0x2be1d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸝
+ 0x2be1e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸞
+ 0x2be1f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸟
+ 0x2be20: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸠
+ 0x2be21: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸡
+ 0x2be22: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸢
+ 0x2be23: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸣
+ 0x2be24: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸤
+ 0x2be25: "\x06\x06\x06\x06\x06\x06", // 𫸥
+ 0x2be26: "\x06\x06\x06\x06\x06\x06", // 𫸦
+ 0x2be27: "\x06\x06\x06\x06\x06\x06", // 𫸧
+ 0x2be28: "\x06\x06\x06\x06\x06\x06\x06", // 𫸨
+ 0x2be29: "\x06\x06\x06\x06\x06\x06\x06", // 𫸩
+ 0x2be2a: "\x06\x06\x06\x06\x06\x06\x06", // 𫸪
+ 0x2be2b: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸫
+ 0x2be2c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸬
+ 0x2be2d: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸭
+ 0x2be2e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸮
+ 0x2be2f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸯
+ 0x2be30: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸰
+ 0x2be31: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸱
+ 0x2be32: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸲
+ 0x2be33: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸳
+ 0x2be34: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸴
+ 0x2be35: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸵
+ 0x2be36: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸶
+ 0x2be37: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸷
+ 0x2be38: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸸
+ 0x2be39: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸹
+ 0x2be3a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸺
+ 0x2be3b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸻
+ 0x2be3c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸼
+ 0x2be3d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸽
+ 0x2be3e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸾
+ 0x2be3f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫸿
+ 0x2be40: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫹀
+ 0x2be41: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫹁
+ 0x2be42: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫹂
+ 0x2be43: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫹃
+ 0x2be44: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫹄
+ 0x2be45: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫹅
+ 0x2be46: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫹆
+ 0x2be47: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫹇
+ 0x2be48: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫹈
+ 0x2be49: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫹉
+ 0x2be4a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫹊
+ 0x2be4b: "\x06\x06\x06\x06\x06", // 𫹋
+ 0x2be4c: "\x06\x06\x06\x06\x06\x06", // 𫹌
+ 0x2be4d: "\x06\x06\x06\x06\x06\x06\x06", // 𫹍
+ 0x2be4e: "\x06\x06\x06\x06\x06\x06\x06", // 𫹎
+ 0x2be4f: "\x06\x06\x06\x06\x06\x06\x06", // 𫹏
+ 0x2be50: "\x06\x06\x06\x06\x06\x06\x06", // 𫹐
+ 0x2be51: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫹑
+ 0x2be52: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫹒
+ 0x2be53: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫹓
+ 0x2be54: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫹔
+ 0x2be55: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫹕
+ 0x2be56: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫹖
+ 0x2be57: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫹗
+ 0x2be58: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫹘
+ 0x2be59: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫹙
+ 0x2be5a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫹚
+ 0x2be5b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫹛
+ 0x2be5c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫹜
+ 0x2be5d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫹝
+ 0x2be5e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫹞
+ 0x2be5f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫹟
+ 0x2be60: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫹠
+ 0x2be61: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫹡
+ 0x2be62: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫹢
+ 0x2be63: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫹣
+ 0x2be64: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫹤
+ 0x2be65: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫹥
+ 0x2be66: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫹦
+ 0x2be67: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫹧
+ 0x2be68: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫹨
+ 0x2be69: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫹩
+ 0x2be6a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫹪
+ 0x2be6b: "\x06\x06\x06\x06\x06", // 𫹫
+ 0x2be6c: "\x06\x06\x06\x06\x06\x06", // 𫹬
+ 0x2be6d: "\x06\x06\x06\x06\x06\x06", // 𫹭
+ 0x2be6e: "\x06\x06\x06\x06\x06\x06", // 𫹮
+ 0x2be6f: "\x06\x06\x06\x06\x06\x06\x06", // 𫹯
+ 0x2be70: "\x06\x06\x06\x06\x06\x06\x06", // 𫹰
+ 0x2be71: "\x06\x06\x06\x06\x06\x06\x06", // 𫹱
+ 0x2be72: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫹲
+ 0x2be73: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫹳
+ 0x2be74: "\x06\x06\x06\x06\x06\x06\x06", // 𫹴
+ 0x2be75: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫹵
+ 0x2be76: "\x06\x06\x06\x06\x06\x06\x06", // 𫹶
+ 0x2be77: "\x06\x06\x06\x06\x06\x06\x06", // 𫹷
+ 0x2be78: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫹸
+ 0x2be79: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫹹
+ 0x2be7a: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫹺
+ 0x2be7b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫹻
+ 0x2be7c: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫹼
+ 0x2be7d: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫹽
+ 0x2be7e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫹾
+ 0x2be7f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫹿
+ 0x2be80: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺀
+ 0x2be81: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺁
+ 0x2be82: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺂
+ 0x2be83: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺃
+ 0x2be84: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺄
+ 0x2be85: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺅
+ 0x2be86: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺆
+ 0x2be87: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺇
+ 0x2be88: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺈
+ 0x2be89: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺉
+ 0x2be8a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺊
+ 0x2be8b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺋
+ 0x2be8c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺌
+ 0x2be8d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺍
+ 0x2be8e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺎
+ 0x2be8f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺏
+ 0x2be90: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺐
+ 0x2be91: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺑
+ 0x2be92: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺒
+ 0x2be93: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺓
+ 0x2be94: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺔
+ 0x2be95: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺕
+ 0x2be96: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺖
+ 0x2be97: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺗
+ 0x2be98: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺘
+ 0x2be99: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺙
+ 0x2be9a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺚
+ 0x2be9b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺛
+ 0x2be9c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺜
+ 0x2be9d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺝
+ 0x2be9e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺞
+ 0x2be9f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺟
+ 0x2bea0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺠
+ 0x2bea1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺡
+ 0x2bea2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺢
+ 0x2bea3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺣
+ 0x2bea4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺤
+ 0x2bea5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺥
+ 0x2bea6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺦
+ 0x2bea7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺧
+ 0x2bea8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺨
+ 0x2bea9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺩
+ 0x2beaa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺪
+ 0x2beab: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺫
+ 0x2beac: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺬
+ 0x2bead: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺭
+ 0x2beae: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺮
+ 0x2beaf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺯
+ 0x2beb0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺰
+ 0x2beb1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺱
+ 0x2beb2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺲
+ 0x2beb3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺳
+ 0x2beb4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺴
+ 0x2beb5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺵
+ 0x2beb6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺶
+ 0x2beb7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺷
+ 0x2beb8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺸
+ 0x2beb9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺹
+ 0x2beba: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺺
+ 0x2bebb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺻
+ 0x2bebc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺼
+ 0x2bebd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺽
+ 0x2bebe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺾
+ 0x2bebf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫺿
+ 0x2bec0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻀
+ 0x2bec1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻁
+ 0x2bec2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻂
+ 0x2bec3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻃
+ 0x2bec4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻄
+ 0x2bec5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻅
+ 0x2bec6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻆
+ 0x2bec7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻇
+ 0x2bec8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻈
+ 0x2bec9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻉
+ 0x2beca: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻊
+ 0x2becb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻋
+ 0x2becc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻌
+ 0x2becd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻍
+ 0x2bece: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻎
+ 0x2becf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻏
+ 0x2bed0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻐
+ 0x2bed1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻑
+ 0x2bed2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻒
+ 0x2bed3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻓
+ 0x2bed4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻔
+ 0x2bed5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻕
+ 0x2bed6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻖
+ 0x2bed7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻗
+ 0x2bed8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻘
+ 0x2bed9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻙
+ 0x2beda: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻚
+ 0x2bedb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻛
+ 0x2bedc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻜
+ 0x2bedd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻝
+ 0x2bede: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻞
+ 0x2bedf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻟
+ 0x2bee0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻠
+ 0x2bee1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻡
+ 0x2bee2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻢
+ 0x2bee3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻣
+ 0x2bee4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻤
+ 0x2bee5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻥
+ 0x2bee6: "\x06\x06\x06\x06\x06\x06", // 𫻦
+ 0x2bee7: "\x06\x06\x06\x06\x06\x06", // 𫻧
+ 0x2bee8: "\x06\x06\x06\x06\x06\x06\x06", // 𫻨
+ 0x2bee9: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻩
+ 0x2beea: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻪
+ 0x2beeb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻫
+ 0x2beec: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻬
+ 0x2beed: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻭
+ 0x2beee: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻮
+ 0x2beef: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻯
+ 0x2bef0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻰
+ 0x2bef1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻱
+ 0x2bef2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻲
+ 0x2bef3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻳
+ 0x2bef4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻴
+ 0x2bef5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻵
+ 0x2bef6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻶
+ 0x2bef7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻷
+ 0x2bef8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻸
+ 0x2bef9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻹
+ 0x2befa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻺
+ 0x2befb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻻
+ 0x2befc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻼
+ 0x2befd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻽
+ 0x2befe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻾
+ 0x2beff: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫻿
+ 0x2bf00: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼀
+ 0x2bf01: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼁
+ 0x2bf02: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼂
+ 0x2bf03: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼃
+ 0x2bf04: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼄
+ 0x2bf05: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼅
+ 0x2bf06: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼆
+ 0x2bf07: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼇
+ 0x2bf08: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼈
+ 0x2bf09: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼉
+ 0x2bf0a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼊
+ 0x2bf0b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼋
+ 0x2bf0c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼌
+ 0x2bf0d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼍
+ 0x2bf0e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼎
+ 0x2bf0f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼏
+ 0x2bf10: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼐
+ 0x2bf11: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼑
+ 0x2bf12: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼒
+ 0x2bf13: "\x06\x06\x06\x06\x06", // 𫼓
+ 0x2bf14: "\x06\x06\x06\x06\x06\x06", // 𫼔
+ 0x2bf15: "\x06\x06\x06\x06\x06\x06", // 𫼕
+ 0x2bf16: "\x06\x06\x06\x06\x06\x06", // 𫼖
+ 0x2bf17: "\x06\x06\x06\x06\x06\x06", // 𫼗
+ 0x2bf18: "\x06\x06\x06\x06\x06\x06\x06", // 𫼘
+ 0x2bf19: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼙
+ 0x2bf1a: "\x06\x06\x06\x06\x06\x06\x06", // 𫼚
+ 0x2bf1b: "\x06\x06\x06\x06\x06\x06\x06", // 𫼛
+ 0x2bf1c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼜
+ 0x2bf1d: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼝
+ 0x2bf1e: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼞
+ 0x2bf1f: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼟
+ 0x2bf20: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼠
+ 0x2bf21: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼡
+ 0x2bf22: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼢
+ 0x2bf23: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼣
+ 0x2bf24: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼤
+ 0x2bf25: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼥
+ 0x2bf26: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼦
+ 0x2bf27: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼧
+ 0x2bf28: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼨
+ 0x2bf29: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼩
+ 0x2bf2a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼪
+ 0x2bf2b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼫
+ 0x2bf2c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼬
+ 0x2bf2d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼭
+ 0x2bf2e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼮
+ 0x2bf2f: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼯
+ 0x2bf30: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼰
+ 0x2bf31: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼱
+ 0x2bf32: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼲
+ 0x2bf33: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼳
+ 0x2bf34: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼴
+ 0x2bf35: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼵
+ 0x2bf36: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼶
+ 0x2bf37: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼷
+ 0x2bf38: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼸
+ 0x2bf39: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼹
+ 0x2bf3a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼺
+ 0x2bf3b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼻
+ 0x2bf3c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼼
+ 0x2bf3d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼽
+ 0x2bf3e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼾
+ 0x2bf3f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫼿
+ 0x2bf40: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽀
+ 0x2bf41: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽁
+ 0x2bf42: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽂
+ 0x2bf43: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽃
+ 0x2bf44: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽄
+ 0x2bf45: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽅
+ 0x2bf46: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽆
+ 0x2bf47: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽇
+ 0x2bf48: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽈
+ 0x2bf49: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽉
+ 0x2bf4a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽊
+ 0x2bf4b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽋
+ 0x2bf4c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽌
+ 0x2bf4d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽍
+ 0x2bf4e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽎
+ 0x2bf4f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽏
+ 0x2bf50: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽐
+ 0x2bf51: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽑
+ 0x2bf52: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽒
+ 0x2bf53: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽓
+ 0x2bf54: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽔
+ 0x2bf55: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽕
+ 0x2bf56: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽖
+ 0x2bf57: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽗
+ 0x2bf58: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽘
+ 0x2bf59: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽙
+ 0x2bf5a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽚
+ 0x2bf5b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽛
+ 0x2bf5c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽜
+ 0x2bf5d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽝
+ 0x2bf5e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽞
+ 0x2bf5f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽟
+ 0x2bf60: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽠
+ 0x2bf61: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽡
+ 0x2bf62: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽢
+ 0x2bf63: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽣
+ 0x2bf64: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽤
+ 0x2bf65: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽥
+ 0x2bf66: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽦
+ 0x2bf67: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽧
+ 0x2bf68: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽨
+ 0x2bf69: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽩
+ 0x2bf6a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽪
+ 0x2bf6b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽫
+ 0x2bf6c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽬
+ 0x2bf6d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽭
+ 0x2bf6e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽮
+ 0x2bf6f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽯
+ 0x2bf70: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽰
+ 0x2bf71: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽱
+ 0x2bf72: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽲
+ 0x2bf73: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽳
+ 0x2bf74: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽴
+ 0x2bf75: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽵
+ 0x2bf76: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽶
+ 0x2bf77: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽷
+ 0x2bf78: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽸
+ 0x2bf79: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽹
+ 0x2bf7a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽺
+ 0x2bf7b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽻
+ 0x2bf7c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽼
+ 0x2bf7d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽽
+ 0x2bf7e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽾
+ 0x2bf7f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫽿
+ 0x2bf80: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾀
+ 0x2bf81: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾁
+ 0x2bf82: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾂
+ 0x2bf83: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾃
+ 0x2bf84: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾄
+ 0x2bf85: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾅
+ 0x2bf86: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾆
+ 0x2bf87: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾇
+ 0x2bf88: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾈
+ 0x2bf89: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾉
+ 0x2bf8a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾊
+ 0x2bf8b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾋
+ 0x2bf8c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾌
+ 0x2bf8d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾍
+ 0x2bf8e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾎
+ 0x2bf8f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾏
+ 0x2bf90: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾐
+ 0x2bf91: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾑
+ 0x2bf92: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾒
+ 0x2bf93: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾓
+ 0x2bf94: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾔
+ 0x2bf95: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾕
+ 0x2bf96: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾖
+ 0x2bf97: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾗
+ 0x2bf98: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾘
+ 0x2bf99: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾙
+ 0x2bf9a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾚
+ 0x2bf9b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾛
+ 0x2bf9c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾜
+ 0x2bf9d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾝
+ 0x2bf9e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾞
+ 0x2bf9f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾟
+ 0x2bfa0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾠
+ 0x2bfa1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾡
+ 0x2bfa2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾢
+ 0x2bfa3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾣
+ 0x2bfa4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾤
+ 0x2bfa5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾥
+ 0x2bfa6: "\x06\x06\x06\x06\x06\x06", // 𫾦
+ 0x2bfa7: "\x06\x06\x06\x06\x06\x06\x06", // 𫾧
+ 0x2bfa8: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾨
+ 0x2bfa9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾩
+ 0x2bfaa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾪
+ 0x2bfab: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾫
+ 0x2bfac: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾬
+ 0x2bfad: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾭
+ 0x2bfae: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾮
+ 0x2bfaf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾯
+ 0x2bfb0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾰
+ 0x2bfb1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾱
+ 0x2bfb2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾲
+ 0x2bfb3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾳
+ 0x2bfb4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾴
+ 0x2bfb5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾵
+ 0x2bfb6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾶
+ 0x2bfb7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾷
+ 0x2bfb8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾸
+ 0x2bfb9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾹
+ 0x2bfba: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾺
+ 0x2bfbb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾻
+ 0x2bfbc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾼
+ 0x2bfbd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾽
+ 0x2bfbe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾾
+ 0x2bfbf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫾿
+ 0x2bfc0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿀
+ 0x2bfc1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿁
+ 0x2bfc2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿂
+ 0x2bfc3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿃
+ 0x2bfc4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿄
+ 0x2bfc5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿅
+ 0x2bfc6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿆
+ 0x2bfc7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿇
+ 0x2bfc8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿈
+ 0x2bfc9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿉
+ 0x2bfca: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿊
+ 0x2bfcb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿋
+ 0x2bfcc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿌
+ 0x2bfcd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿍
+ 0x2bfce: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿎
+ 0x2bfcf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿏
+ 0x2bfd0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿐
+ 0x2bfd1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿑
+ 0x2bfd2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿒
+ 0x2bfd3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿓
+ 0x2bfd4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿔
+ 0x2bfd5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿕
+ 0x2bfd6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿖
+ 0x2bfd7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿗
+ 0x2bfd8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿘
+ 0x2bfd9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿙
+ 0x2bfda: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿚
+ 0x2bfdb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿛
+ 0x2bfdc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿜
+ 0x2bfdd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿝
+ 0x2bfde: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿞
+ 0x2bfdf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿟
+ 0x2bfe0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿠
+ 0x2bfe1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿡
+ 0x2bfe2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿢
+ 0x2bfe3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿣
+ 0x2bfe4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿤
+ 0x2bfe5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿥
+ 0x2bfe6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿦
+ 0x2bfe7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿧
+ 0x2bfe8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿨
+ 0x2bfe9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿩
+ 0x2bfea: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿪
+ 0x2bfeb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿫
+ 0x2bfec: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿬
+ 0x2bfed: "\x06\x06\x06\x06\x06\x06", // 𫿭
+ 0x2bfee: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿮
+ 0x2bfef: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿯
+ 0x2bff0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿰
+ 0x2bff1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿱
+ 0x2bff2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿲
+ 0x2bff3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿳
+ 0x2bff4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿴
+ 0x2bff5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿵
+ 0x2bff6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿶
+ 0x2bff7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿷
+ 0x2bff8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿸
+ 0x2bff9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿹
+ 0x2bffa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿺
+ 0x2bffb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿻
+ 0x2bffc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿼
+ 0x2bffd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿽
+ 0x2bffe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿾
+ 0x2bfff: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𫿿
+ 0x2c000: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀀
+ 0x2c001: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀁
+ 0x2c002: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀂
+ 0x2c003: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀃
+ 0x2c004: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀄
+ 0x2c005: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀅
+ 0x2c006: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀆
+ 0x2c007: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀇
+ 0x2c008: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀈
+ 0x2c009: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀉
+ 0x2c00a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀊
+ 0x2c00b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀋
+ 0x2c00c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀌
+ 0x2c00d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀍
+ 0x2c00e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀎
+ 0x2c00f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀏
+ 0x2c010: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀐
+ 0x2c011: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀑
+ 0x2c012: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀒
+ 0x2c013: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀓
+ 0x2c014: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀔
+ 0x2c015: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀕
+ 0x2c016: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀖
+ 0x2c017: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀗
+ 0x2c018: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀘
+ 0x2c019: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀙
+ 0x2c01a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀚
+ 0x2c01b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀛
+ 0x2c01c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀜
+ 0x2c01d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀝
+ 0x2c01e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀞
+ 0x2c01f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀟
+ 0x2c020: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀠
+ 0x2c021: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀡
+ 0x2c022: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀢
+ 0x2c023: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀣
+ 0x2c024: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀤
+ 0x2c025: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀥
+ 0x2c026: "\x06\x06\x06\x06\x06\x06", // 𬀦
+ 0x2c027: "\x06\x06\x06\x06\x06\x06\x06", // 𬀧
+ 0x2c028: "\x06\x06\x06\x06\x06\x06\x06", // 𬀨
+ 0x2c029: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀩
+ 0x2c02a: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀪
+ 0x2c02b: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀫
+ 0x2c02c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀬
+ 0x2c02d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀭
+ 0x2c02e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀮
+ 0x2c02f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀯
+ 0x2c030: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀰
+ 0x2c031: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀱
+ 0x2c032: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀲
+ 0x2c033: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀳
+ 0x2c034: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀴
+ 0x2c035: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀵
+ 0x2c036: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀶
+ 0x2c037: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀷
+ 0x2c038: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀸
+ 0x2c039: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀹
+ 0x2c03a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀺
+ 0x2c03b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀻
+ 0x2c03c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀼
+ 0x2c03d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀽
+ 0x2c03e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀾
+ 0x2c03f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬀿
+ 0x2c040: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁀
+ 0x2c041: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁁
+ 0x2c042: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁂
+ 0x2c043: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁃
+ 0x2c044: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁄
+ 0x2c045: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁅
+ 0x2c046: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁆
+ 0x2c047: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁇
+ 0x2c048: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁈
+ 0x2c049: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁉
+ 0x2c04a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁊
+ 0x2c04b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁋
+ 0x2c04c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁌
+ 0x2c04d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁍
+ 0x2c04e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁎
+ 0x2c04f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁏
+ 0x2c050: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁐
+ 0x2c051: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁑
+ 0x2c052: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁒
+ 0x2c053: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁓
+ 0x2c054: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁔
+ 0x2c055: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁕
+ 0x2c056: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁖
+ 0x2c057: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁗
+ 0x2c058: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁘
+ 0x2c059: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁙
+ 0x2c05a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁚
+ 0x2c05b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁛
+ 0x2c05c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁜
+ 0x2c05d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁝
+ 0x2c05e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁞
+ 0x2c05f: "\x06\x06\x06\x06\x06\x06\x06", // 𬁟
+ 0x2c060: "\x06\x06\x06\x06\x06\x06\x06", // 𬁠
+ 0x2c061: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁡
+ 0x2c062: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁢
+ 0x2c063: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁣
+ 0x2c064: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁤
+ 0x2c065: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁥
+ 0x2c066: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁦
+ 0x2c067: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁧
+ 0x2c068: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁨
+ 0x2c069: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁩
+ 0x2c06a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁪
+ 0x2c06b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁫
+ 0x2c06c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁬
+ 0x2c06d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁭
+ 0x2c06e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁮
+ 0x2c06f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁯
+ 0x2c070: "\x06\x06\x06\x06\x06\x06", // 𬁰
+ 0x2c071: "\x06\x06\x06\x06\x06\x06\x06", // 𬁱
+ 0x2c072: "\x06\x06\x06\x06\x06\x06\x06", // 𬁲
+ 0x2c073: "\x06\x06\x06\x06\x06\x06\x06", // 𬁳
+ 0x2c074: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁴
+ 0x2c075: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁵
+ 0x2c076: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁶
+ 0x2c077: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁷
+ 0x2c078: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁸
+ 0x2c079: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁹
+ 0x2c07a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁺
+ 0x2c07b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁻
+ 0x2c07c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁼
+ 0x2c07d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁽
+ 0x2c07e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁾
+ 0x2c07f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬁿
+ 0x2c080: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂀
+ 0x2c081: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂁
+ 0x2c082: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂂
+ 0x2c083: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂃
+ 0x2c084: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂄
+ 0x2c085: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂅
+ 0x2c086: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂆
+ 0x2c087: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂇
+ 0x2c088: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂈
+ 0x2c089: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂉
+ 0x2c08a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂊
+ 0x2c08b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂋
+ 0x2c08c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂌
+ 0x2c08d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂍
+ 0x2c08e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂎
+ 0x2c08f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂏
+ 0x2c090: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂐
+ 0x2c091: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂑
+ 0x2c092: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂒
+ 0x2c093: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂓
+ 0x2c094: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂔
+ 0x2c095: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂕
+ 0x2c096: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂖
+ 0x2c097: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂗
+ 0x2c098: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂘
+ 0x2c099: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂙
+ 0x2c09a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂚
+ 0x2c09b: "\x06\x06", // 𬂛
+ 0x2c09c: "\x06\x06\x06\x06\x06", // 𬂜
+ 0x2c09d: "\x06\x06\x06\x06\x06\x06\x06", // 𬂝
+ 0x2c09e: "\x06\x06\x06\x06\x06\x06\x06", // 𬂞
+ 0x2c09f: "\x06\x06\x06\x06\x06\x06\x06", // 𬂟
+ 0x2c0a0: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂠
+ 0x2c0a1: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂡
+ 0x2c0a2: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂢
+ 0x2c0a3: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂣
+ 0x2c0a4: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂤
+ 0x2c0a5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂥
+ 0x2c0a6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂦
+ 0x2c0a7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂧
+ 0x2c0a8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂨
+ 0x2c0a9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂩
+ 0x2c0aa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂪
+ 0x2c0ab: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂫
+ 0x2c0ac: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂬
+ 0x2c0ad: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂭
+ 0x2c0ae: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂮
+ 0x2c0af: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂯
+ 0x2c0b0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂰
+ 0x2c0b1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂱
+ 0x2c0b2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂲
+ 0x2c0b3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂳
+ 0x2c0b4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂴
+ 0x2c0b5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂵
+ 0x2c0b6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂶
+ 0x2c0b7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂷
+ 0x2c0b8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂸
+ 0x2c0b9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂹
+ 0x2c0ba: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂺
+ 0x2c0bb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂻
+ 0x2c0bc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂼
+ 0x2c0bd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂽
+ 0x2c0be: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂾
+ 0x2c0bf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬂿
+ 0x2c0c0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃀
+ 0x2c0c1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃁
+ 0x2c0c2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃂
+ 0x2c0c3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃃
+ 0x2c0c4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃄
+ 0x2c0c5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃅
+ 0x2c0c6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃆
+ 0x2c0c7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃇
+ 0x2c0c8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃈
+ 0x2c0c9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃉
+ 0x2c0ca: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃊
+ 0x2c0cb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃋
+ 0x2c0cc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃌
+ 0x2c0cd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃍
+ 0x2c0ce: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃎
+ 0x2c0cf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃏
+ 0x2c0d0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃐
+ 0x2c0d1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃑
+ 0x2c0d2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃒
+ 0x2c0d3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃓
+ 0x2c0d4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃔
+ 0x2c0d5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃕
+ 0x2c0d6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃖
+ 0x2c0d7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃗
+ 0x2c0d8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃘
+ 0x2c0d9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃙
+ 0x2c0da: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃚
+ 0x2c0db: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃛
+ 0x2c0dc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃜
+ 0x2c0dd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃝
+ 0x2c0de: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃞
+ 0x2c0df: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃟
+ 0x2c0e0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃠
+ 0x2c0e1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃡
+ 0x2c0e2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃢
+ 0x2c0e3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃣
+ 0x2c0e4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃤
+ 0x2c0e5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃥
+ 0x2c0e6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃦
+ 0x2c0e7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃧
+ 0x2c0e8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃨
+ 0x2c0e9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃩
+ 0x2c0ea: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃪
+ 0x2c0eb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃫
+ 0x2c0ec: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃬
+ 0x2c0ed: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃭
+ 0x2c0ee: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃮
+ 0x2c0ef: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃯
+ 0x2c0f0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃰
+ 0x2c0f1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃱
+ 0x2c0f2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃲
+ 0x2c0f3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃳
+ 0x2c0f4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃴
+ 0x2c0f5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃵
+ 0x2c0f6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃶
+ 0x2c0f7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃷
+ 0x2c0f8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃸
+ 0x2c0f9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃹
+ 0x2c0fa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃺
+ 0x2c0fb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃻
+ 0x2c0fc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃼
+ 0x2c0fd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃽
+ 0x2c0fe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃾
+ 0x2c0ff: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬃿
+ 0x2c100: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄀
+ 0x2c101: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄁
+ 0x2c102: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄂
+ 0x2c103: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄃
+ 0x2c104: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄄
+ 0x2c105: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄅
+ 0x2c106: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄆
+ 0x2c107: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄇
+ 0x2c108: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄈
+ 0x2c109: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄉
+ 0x2c10a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄊
+ 0x2c10b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄋
+ 0x2c10c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄌
+ 0x2c10d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄍
+ 0x2c10e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄎
+ 0x2c10f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄏
+ 0x2c110: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄐
+ 0x2c111: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄑
+ 0x2c112: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄒
+ 0x2c113: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄓
+ 0x2c114: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄔
+ 0x2c115: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄕
+ 0x2c116: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄖
+ 0x2c117: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄗
+ 0x2c118: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄘
+ 0x2c119: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄙
+ 0x2c11a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄚
+ 0x2c11b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄛
+ 0x2c11c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄜
+ 0x2c11d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄝
+ 0x2c11e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄞
+ 0x2c11f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄟
+ 0x2c120: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄠
+ 0x2c121: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄡
+ 0x2c122: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄢
+ 0x2c123: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄣
+ 0x2c124: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄤
+ 0x2c125: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄥
+ 0x2c126: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄦
+ 0x2c127: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄧
+ 0x2c128: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄨
+ 0x2c129: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄩
+ 0x2c12a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄪
+ 0x2c12b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄫
+ 0x2c12c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄬
+ 0x2c12d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄭
+ 0x2c12e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄮
+ 0x2c12f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄯
+ 0x2c130: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄰
+ 0x2c131: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄱
+ 0x2c132: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄲
+ 0x2c133: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄳
+ 0x2c134: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄴
+ 0x2c135: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄵
+ 0x2c136: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄶
+ 0x2c137: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄷
+ 0x2c138: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄸
+ 0x2c139: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄹
+ 0x2c13a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄺
+ 0x2c13b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄻
+ 0x2c13c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄼
+ 0x2c13d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄽
+ 0x2c13e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄾
+ 0x2c13f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬄿
+ 0x2c140: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅀
+ 0x2c141: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅁
+ 0x2c142: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅂
+ 0x2c143: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅃
+ 0x2c144: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅄
+ 0x2c145: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅅
+ 0x2c146: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅆
+ 0x2c147: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅇
+ 0x2c148: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅈
+ 0x2c149: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅉
+ 0x2c14a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅊
+ 0x2c14b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅋
+ 0x2c14c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅌
+ 0x2c14d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅍
+ 0x2c14e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅎
+ 0x2c14f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅏
+ 0x2c150: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅐
+ 0x2c151: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅑
+ 0x2c152: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅒
+ 0x2c153: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅓
+ 0x2c154: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅔
+ 0x2c155: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅕
+ 0x2c156: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅖
+ 0x2c157: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅗
+ 0x2c158: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅘
+ 0x2c159: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅙
+ 0x2c15a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅚
+ 0x2c15b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅛
+ 0x2c15c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅜
+ 0x2c15d: "\x06\x06\x06\x06\x06\x06\x06", // 𬅝
+ 0x2c15e: "\x06\x06\x06\x06\x06\x06\x06", // 𬅞
+ 0x2c15f: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅟
+ 0x2c160: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅠
+ 0x2c161: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅡
+ 0x2c162: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅢
+ 0x2c163: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅣
+ 0x2c164: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅤
+ 0x2c165: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅥
+ 0x2c166: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅦
+ 0x2c167: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅧
+ 0x2c168: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅨
+ 0x2c169: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅩
+ 0x2c16a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅪
+ 0x2c16b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅫
+ 0x2c16c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅬
+ 0x2c16d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅭
+ 0x2c16e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅮
+ 0x2c16f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅯
+ 0x2c170: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅰
+ 0x2c171: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅱
+ 0x2c172: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅲
+ 0x2c173: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅳
+ 0x2c174: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅴
+ 0x2c175: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅵
+ 0x2c176: "\x06\x06\x06\x06\x06\x06", // 𬅶
+ 0x2c177: "\x06\x06\x06\x06\x06\x06", // 𬅷
+ 0x2c178: "\x06\x06\x06\x06\x06\x06\x06", // 𬅸
+ 0x2c179: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅹
+ 0x2c17a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅺
+ 0x2c17b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅻
+ 0x2c17c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅼
+ 0x2c17d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅽
+ 0x2c17e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅾
+ 0x2c17f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬅿
+ 0x2c180: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆀
+ 0x2c181: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆁
+ 0x2c182: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆂
+ 0x2c183: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆃
+ 0x2c184: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆄
+ 0x2c185: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆅
+ 0x2c186: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆆
+ 0x2c187: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆇
+ 0x2c188: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆈
+ 0x2c189: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆉
+ 0x2c18a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆊
+ 0x2c18b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆋
+ 0x2c18c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆌
+ 0x2c18d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆍
+ 0x2c18e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆎
+ 0x2c18f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆏
+ 0x2c190: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆐
+ 0x2c191: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆑
+ 0x2c192: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆒
+ 0x2c193: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆓
+ 0x2c194: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆔
+ 0x2c195: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆕
+ 0x2c196: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆖
+ 0x2c197: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆗
+ 0x2c198: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆘
+ 0x2c199: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆙
+ 0x2c19a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆚
+ 0x2c19b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆛
+ 0x2c19c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆜
+ 0x2c19d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆝
+ 0x2c19e: "\x06\x06\x06\x06\x06\x06\x06", // 𬆞
+ 0x2c19f: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆟
+ 0x2c1a0: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆠
+ 0x2c1a1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆡
+ 0x2c1a2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆢
+ 0x2c1a3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆣
+ 0x2c1a4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆤
+ 0x2c1a5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆥
+ 0x2c1a6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆦
+ 0x2c1a7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆧
+ 0x2c1a8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆨
+ 0x2c1a9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆩
+ 0x2c1aa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆪
+ 0x2c1ab: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆫
+ 0x2c1ac: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆬
+ 0x2c1ad: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆭
+ 0x2c1ae: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆮
+ 0x2c1af: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆯
+ 0x2c1b0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆰
+ 0x2c1b1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆱
+ 0x2c1b2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆲
+ 0x2c1b3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆳
+ 0x2c1b4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆴
+ 0x2c1b5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆵
+ 0x2c1b6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆶
+ 0x2c1b7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆷
+ 0x2c1b8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆸
+ 0x2c1b9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆹
+ 0x2c1ba: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆺
+ 0x2c1bb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆻
+ 0x2c1bc: "\x06\x06\x06\x06\x06\x06\x06", // 𬆼
+ 0x2c1bd: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆽
+ 0x2c1be: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆾
+ 0x2c1bf: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬆿
+ 0x2c1c0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇀
+ 0x2c1c1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇁
+ 0x2c1c2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇂
+ 0x2c1c3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇃
+ 0x2c1c4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇄
+ 0x2c1c5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇅
+ 0x2c1c6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇆
+ 0x2c1c7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇇
+ 0x2c1c8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇈
+ 0x2c1c9: "\x06\x06\x06\x06\x06\x06\x06", // 𬇉
+ 0x2c1ca: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇊
+ 0x2c1cb: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇋
+ 0x2c1cc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇌
+ 0x2c1cd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇍
+ 0x2c1ce: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇎
+ 0x2c1cf: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇏
+ 0x2c1d0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇐
+ 0x2c1d1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇑
+ 0x2c1d2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇒
+ 0x2c1d3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇓
+ 0x2c1d4: "\x06\x06\x06\x06\x06\x06\x06", // 𬇔
+ 0x2c1d5: "\x06\x06\x06\x06\x06\x06", // 𬇕
+ 0x2c1d6: "\x06\x06\x06\x06\x06\x06", // 𬇖
+ 0x2c1d7: "\x06\x06\x06\x06\x06\x06", // 𬇗
+ 0x2c1d8: "\x06\x06\x06\x06\x06\x06\x06", // 𬇘
+ 0x2c1d9: "\x06\x06\x06\x06\x06\x06\x06", // 𬇙
+ 0x2c1da: "\x06\x06\x06\x06\x06\x06\x06", // 𬇚
+ 0x2c1db: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇛
+ 0x2c1dc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇜
+ 0x2c1dd: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇝
+ 0x2c1de: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇞
+ 0x2c1df: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇟
+ 0x2c1e0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇠
+ 0x2c1e1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇡
+ 0x2c1e2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇢
+ 0x2c1e3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇣
+ 0x2c1e4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇤
+ 0x2c1e5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇥
+ 0x2c1e6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇦
+ 0x2c1e7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇧
+ 0x2c1e8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇨
+ 0x2c1e9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇩
+ 0x2c1ea: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇪
+ 0x2c1eb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇫
+ 0x2c1ec: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇬
+ 0x2c1ed: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇭
+ 0x2c1ee: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇮
+ 0x2c1ef: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇯
+ 0x2c1f0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇰
+ 0x2c1f1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇱
+ 0x2c1f2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇲
+ 0x2c1f3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇳
+ 0x2c1f4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇴
+ 0x2c1f5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇵
+ 0x2c1f6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇶
+ 0x2c1f7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇷
+ 0x2c1f8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇸
+ 0x2c1f9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇹
+ 0x2c1fa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇺
+ 0x2c1fb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇻
+ 0x2c1fc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇼
+ 0x2c1fd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇽
+ 0x2c1fe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇾
+ 0x2c1ff: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬇿
+ 0x2c200: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈀
+ 0x2c201: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈁
+ 0x2c202: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈂
+ 0x2c203: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈃
+ 0x2c204: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈄
+ 0x2c205: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈅
+ 0x2c206: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈆
+ 0x2c207: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈇
+ 0x2c208: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈈
+ 0x2c209: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈉
+ 0x2c20a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈊
+ 0x2c20b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈋
+ 0x2c20c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈌
+ 0x2c20d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈍
+ 0x2c20e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈎
+ 0x2c20f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈏
+ 0x2c210: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈐
+ 0x2c211: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈑
+ 0x2c212: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈒
+ 0x2c213: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈓
+ 0x2c214: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈔
+ 0x2c215: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈕
+ 0x2c216: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈖
+ 0x2c217: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈗
+ 0x2c218: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈘
+ 0x2c219: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈙
+ 0x2c21a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈚
+ 0x2c21b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈛
+ 0x2c21c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈜
+ 0x2c21d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈝
+ 0x2c21e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈞
+ 0x2c21f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈟
+ 0x2c220: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈠
+ 0x2c221: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈡
+ 0x2c222: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈢
+ 0x2c223: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈣
+ 0x2c224: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈤
+ 0x2c225: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈥
+ 0x2c226: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈦
+ 0x2c227: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈧
+ 0x2c228: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈨
+ 0x2c229: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈩
+ 0x2c22a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈪
+ 0x2c22b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈫
+ 0x2c22c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈬
+ 0x2c22d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈭
+ 0x2c22e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈮
+ 0x2c22f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈯
+ 0x2c230: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈰
+ 0x2c231: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈱
+ 0x2c232: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈲
+ 0x2c233: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈳
+ 0x2c234: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈴
+ 0x2c235: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈵
+ 0x2c236: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈶
+ 0x2c237: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈷
+ 0x2c238: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈸
+ 0x2c239: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈹
+ 0x2c23a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈺
+ 0x2c23b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈻
+ 0x2c23c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈼
+ 0x2c23d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈽
+ 0x2c23e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈾
+ 0x2c23f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬈿
+ 0x2c240: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉀
+ 0x2c241: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉁
+ 0x2c242: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉂
+ 0x2c243: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉃
+ 0x2c244: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉄
+ 0x2c245: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉅
+ 0x2c246: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉆
+ 0x2c247: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉇
+ 0x2c248: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉈
+ 0x2c249: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉉
+ 0x2c24a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉊
+ 0x2c24b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉋
+ 0x2c24c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉌
+ 0x2c24d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉍
+ 0x2c24e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉎
+ 0x2c24f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉏
+ 0x2c250: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉐
+ 0x2c251: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉑
+ 0x2c252: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉒
+ 0x2c253: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉓
+ 0x2c254: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉔
+ 0x2c255: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉕
+ 0x2c256: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉖
+ 0x2c257: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉗
+ 0x2c258: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉘
+ 0x2c259: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉙
+ 0x2c25a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉚
+ 0x2c25b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉛
+ 0x2c25c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉜
+ 0x2c25d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉝
+ 0x2c25e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉞
+ 0x2c25f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉟
+ 0x2c260: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉠
+ 0x2c261: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉡
+ 0x2c262: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉢
+ 0x2c263: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉣
+ 0x2c264: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉤
+ 0x2c265: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉥
+ 0x2c266: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉦
+ 0x2c267: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉧
+ 0x2c268: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉨
+ 0x2c269: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉩
+ 0x2c26a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉪
+ 0x2c26b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉫
+ 0x2c26c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉬
+ 0x2c26d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉭
+ 0x2c26e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉮
+ 0x2c26f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉯
+ 0x2c270: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉰
+ 0x2c271: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉱
+ 0x2c272: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉲
+ 0x2c273: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉳
+ 0x2c274: "\x06\x06\x06\x06\x06\x06\x06", // 𬉴
+ 0x2c275: "\x06\x06\x06\x06\x06\x06\x06", // 𬉵
+ 0x2c276: "\x06\x06\x06\x06\x06\x06\x06", // 𬉶
+ 0x2c277: "\x06\x06\x06\x06\x06\x06\x06", // 𬉷
+ 0x2c278: "\x06\x06\x06\x06\x06\x06\x06", // 𬉸
+ 0x2c279: "\x06\x06\x06\x06\x06\x06\x06", // 𬉹
+ 0x2c27a: "\x06\x06\x06\x06\x06\x06\x06", // 𬉺
+ 0x2c27b: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉻
+ 0x2c27c: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉼
+ 0x2c27d: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉽
+ 0x2c27e: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉾
+ 0x2c27f: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬉿
+ 0x2c280: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊀
+ 0x2c281: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊁
+ 0x2c282: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊂
+ 0x2c283: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊃
+ 0x2c284: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊄
+ 0x2c285: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊅
+ 0x2c286: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊆
+ 0x2c287: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊇
+ 0x2c288: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊈
+ 0x2c289: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊉
+ 0x2c28a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊊
+ 0x2c28b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊋
+ 0x2c28c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊌
+ 0x2c28d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊍
+ 0x2c28e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊎
+ 0x2c28f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊏
+ 0x2c290: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊐
+ 0x2c291: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊑
+ 0x2c292: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊒
+ 0x2c293: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊓
+ 0x2c294: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊔
+ 0x2c295: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊕
+ 0x2c296: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊖
+ 0x2c297: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊗
+ 0x2c298: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊘
+ 0x2c299: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊙
+ 0x2c29a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊚
+ 0x2c29b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊛
+ 0x2c29c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊜
+ 0x2c29d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊝
+ 0x2c29e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊞
+ 0x2c29f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊟
+ 0x2c2a0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊠
+ 0x2c2a1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊡
+ 0x2c2a2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊢
+ 0x2c2a3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊣
+ 0x2c2a4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊤
+ 0x2c2a5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊥
+ 0x2c2a6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊦
+ 0x2c2a7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊧
+ 0x2c2a8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊨
+ 0x2c2a9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊩
+ 0x2c2aa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊪
+ 0x2c2ab: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊫
+ 0x2c2ac: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊬
+ 0x2c2ad: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊭
+ 0x2c2ae: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊮
+ 0x2c2af: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊯
+ 0x2c2b0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊰
+ 0x2c2b1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊱
+ 0x2c2b2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊲
+ 0x2c2b3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊳
+ 0x2c2b4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊴
+ 0x2c2b5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊵
+ 0x2c2b6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊶
+ 0x2c2b7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊷
+ 0x2c2b8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊸
+ 0x2c2b9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊹
+ 0x2c2ba: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊺
+ 0x2c2bb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊻
+ 0x2c2bc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊼
+ 0x2c2bd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊽
+ 0x2c2be: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊾
+ 0x2c2bf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬊿
+ 0x2c2c0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋀
+ 0x2c2c1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋁
+ 0x2c2c2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋂
+ 0x2c2c3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋃
+ 0x2c2c4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋄
+ 0x2c2c5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋅
+ 0x2c2c6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋆
+ 0x2c2c7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋇
+ 0x2c2c8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋈
+ 0x2c2c9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋉
+ 0x2c2ca: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋊
+ 0x2c2cb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋋
+ 0x2c2cc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋌
+ 0x2c2cd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋍
+ 0x2c2ce: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋎
+ 0x2c2cf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋏
+ 0x2c2d0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋐
+ 0x2c2d1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋑
+ 0x2c2d2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋒
+ 0x2c2d3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋓
+ 0x2c2d4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋔
+ 0x2c2d5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋕
+ 0x2c2d6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋖
+ 0x2c2d7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋗
+ 0x2c2d8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋘
+ 0x2c2d9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋙
+ 0x2c2da: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋚
+ 0x2c2db: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋛
+ 0x2c2dc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋜
+ 0x2c2dd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋝
+ 0x2c2de: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋞
+ 0x2c2df: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋟
+ 0x2c2e0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋠
+ 0x2c2e1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋡
+ 0x2c2e2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋢
+ 0x2c2e3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋣
+ 0x2c2e4: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋤
+ 0x2c2e5: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋥
+ 0x2c2e6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋦
+ 0x2c2e7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋧
+ 0x2c2e8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋨
+ 0x2c2e9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋩
+ 0x2c2ea: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋪
+ 0x2c2eb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋫
+ 0x2c2ec: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋬
+ 0x2c2ed: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋭
+ 0x2c2ee: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋮
+ 0x2c2ef: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋯
+ 0x2c2f0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋰
+ 0x2c2f1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋱
+ 0x2c2f2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋲
+ 0x2c2f3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋳
+ 0x2c2f4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋴
+ 0x2c2f5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋵
+ 0x2c2f6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋶
+ 0x2c2f7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋷
+ 0x2c2f8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋸
+ 0x2c2f9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋹
+ 0x2c2fa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋺
+ 0x2c2fb: "\x06\x06\x06\x06\x06\x06\x06", // 𬋻
+ 0x2c2fc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋼
+ 0x2c2fd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋽
+ 0x2c2fe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋾
+ 0x2c2ff: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬋿
+ 0x2c300: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌀
+ 0x2c301: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌁
+ 0x2c302: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌂
+ 0x2c303: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌃
+ 0x2c304: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌄
+ 0x2c305: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌅
+ 0x2c306: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌆
+ 0x2c307: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌇
+ 0x2c308: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌈
+ 0x2c309: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌉
+ 0x2c30a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌊
+ 0x2c30b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌋
+ 0x2c30c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌌
+ 0x2c30d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌍
+ 0x2c30e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌎
+ 0x2c30f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌏
+ 0x2c310: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌐
+ 0x2c311: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌑
+ 0x2c312: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌒
+ 0x2c313: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌓
+ 0x2c314: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌔
+ 0x2c315: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌕
+ 0x2c316: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌖
+ 0x2c317: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌗
+ 0x2c318: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌘
+ 0x2c319: "\x06\x06\x06\x06\x06\x06", // 𬌙
+ 0x2c31a: "\x06\x06\x06\x06\x06\x06\x06", // 𬌚
+ 0x2c31b: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌛
+ 0x2c31c: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌜
+ 0x2c31d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌝
+ 0x2c31e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌞
+ 0x2c31f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌟
+ 0x2c320: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌠
+ 0x2c321: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌡
+ 0x2c322: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌢
+ 0x2c323: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌣
+ 0x2c324: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌤
+ 0x2c325: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌥
+ 0x2c326: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌦
+ 0x2c327: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌧
+ 0x2c328: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌨
+ 0x2c329: "\x06\x06\x06\x06", // 𬌩
+ 0x2c32a: "\x06\x06\x06\x06\x06\x06\x06", // 𬌪
+ 0x2c32b: "\x06\x06\x06\x06\x06\x06", // 𬌫
+ 0x2c32c: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌬
+ 0x2c32d: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌭
+ 0x2c32e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌮
+ 0x2c32f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌯
+ 0x2c330: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌰
+ 0x2c331: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌱
+ 0x2c332: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌲
+ 0x2c333: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌳
+ 0x2c334: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌴
+ 0x2c335: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌵
+ 0x2c336: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌶
+ 0x2c337: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌷
+ 0x2c338: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌸
+ 0x2c339: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌹
+ 0x2c33a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌺
+ 0x2c33b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌻
+ 0x2c33c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌼
+ 0x2c33d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌽
+ 0x2c33e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌾
+ 0x2c33f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬌿
+ 0x2c340: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍀
+ 0x2c341: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍁
+ 0x2c342: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍂
+ 0x2c343: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍃
+ 0x2c344: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍄
+ 0x2c345: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍅
+ 0x2c346: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍆
+ 0x2c347: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍇
+ 0x2c348: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍈
+ 0x2c349: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍉
+ 0x2c34a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍊
+ 0x2c34b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍋
+ 0x2c34c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍌
+ 0x2c34d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍍
+ 0x2c34e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍎
+ 0x2c34f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍏
+ 0x2c350: "\x06\x06\x06\x06\x06\x06\x06", // 𬍐
+ 0x2c351: "\x06\x06\x06\x06\x06\x06\x06", // 𬍑
+ 0x2c352: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍒
+ 0x2c353: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍓
+ 0x2c354: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍔
+ 0x2c355: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍕
+ 0x2c356: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍖
+ 0x2c357: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍗
+ 0x2c358: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍘
+ 0x2c359: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍙
+ 0x2c35a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍚
+ 0x2c35b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍛
+ 0x2c35c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍜
+ 0x2c35d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍝
+ 0x2c35e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍞
+ 0x2c35f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍟
+ 0x2c360: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍠
+ 0x2c361: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍡
+ 0x2c362: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍢
+ 0x2c363: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍣
+ 0x2c364: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍤
+ 0x2c365: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍥
+ 0x2c366: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍦
+ 0x2c367: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍧
+ 0x2c368: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍨
+ 0x2c369: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍩
+ 0x2c36a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍪
+ 0x2c36b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍫
+ 0x2c36c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍬
+ 0x2c36d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍭
+ 0x2c36e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍮
+ 0x2c36f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍯
+ 0x2c370: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍰
+ 0x2c371: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍱
+ 0x2c372: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍲
+ 0x2c373: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍳
+ 0x2c374: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍴
+ 0x2c375: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍵
+ 0x2c376: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍶
+ 0x2c377: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍷
+ 0x2c378: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍸
+ 0x2c379: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍹
+ 0x2c37a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍺
+ 0x2c37b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍻
+ 0x2c37c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍼
+ 0x2c37d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍽
+ 0x2c37e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍾
+ 0x2c37f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬍿
+ 0x2c380: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎀
+ 0x2c381: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎁
+ 0x2c382: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎂
+ 0x2c383: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎃
+ 0x2c384: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎄
+ 0x2c385: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎅
+ 0x2c386: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎆
+ 0x2c387: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎇
+ 0x2c388: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎈
+ 0x2c389: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎉
+ 0x2c38a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎊
+ 0x2c38b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎋
+ 0x2c38c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎌
+ 0x2c38d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎍
+ 0x2c38e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎎
+ 0x2c38f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎏
+ 0x2c390: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎐
+ 0x2c391: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎑
+ 0x2c392: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎒
+ 0x2c393: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎓
+ 0x2c394: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎔
+ 0x2c395: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎕
+ 0x2c396: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎖
+ 0x2c397: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎗
+ 0x2c398: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎘
+ 0x2c399: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎙
+ 0x2c39a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎚
+ 0x2c39b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎛
+ 0x2c39c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎜
+ 0x2c39d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎝
+ 0x2c39e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎞
+ 0x2c39f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎟
+ 0x2c3a0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎠
+ 0x2c3a1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎡
+ 0x2c3a2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎢
+ 0x2c3a3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎣
+ 0x2c3a4: "\x06\x06\x06\x06\x06\x06", // 𬎤
+ 0x2c3a5: "\x06\x06\x06\x06\x06\x06\x06", // 𬎥
+ 0x2c3a6: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎦
+ 0x2c3a7: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎧
+ 0x2c3a8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎨
+ 0x2c3a9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎩
+ 0x2c3aa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎪
+ 0x2c3ab: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎫
+ 0x2c3ac: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎬
+ 0x2c3ad: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎭
+ 0x2c3ae: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎮
+ 0x2c3af: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎯
+ 0x2c3b0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎰
+ 0x2c3b1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎱
+ 0x2c3b2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎲
+ 0x2c3b3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎳
+ 0x2c3b4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎴
+ 0x2c3b5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎵
+ 0x2c3b6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎶
+ 0x2c3b7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎷
+ 0x2c3b8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎸
+ 0x2c3b9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎹
+ 0x2c3ba: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎺
+ 0x2c3bb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎻
+ 0x2c3bc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎼
+ 0x2c3bd: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎽
+ 0x2c3be: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬎾
+ 0x2c3bf: "\x06\x06\x06\x06\x06\x06\x06", // 𬎿
+ 0x2c3c0: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏀
+ 0x2c3c1: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏁
+ 0x2c3c2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏂
+ 0x2c3c3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏃
+ 0x2c3c4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏄
+ 0x2c3c5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏅
+ 0x2c3c6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏆
+ 0x2c3c7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏇
+ 0x2c3c8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏈
+ 0x2c3c9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏉
+ 0x2c3ca: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏊
+ 0x2c3cb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏋
+ 0x2c3cc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏌
+ 0x2c3cd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏍
+ 0x2c3ce: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏎
+ 0x2c3cf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏏
+ 0x2c3d0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏐
+ 0x2c3d1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏑
+ 0x2c3d2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏒
+ 0x2c3d3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏓
+ 0x2c3d4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏔
+ 0x2c3d5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏕
+ 0x2c3d6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏖
+ 0x2c3d7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏗
+ 0x2c3d8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏘
+ 0x2c3d9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏙
+ 0x2c3da: "\x06\x06\x06\x06\x06\x06", // 𬏚
+ 0x2c3db: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏛
+ 0x2c3dc: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏜
+ 0x2c3dd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏝
+ 0x2c3de: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏞
+ 0x2c3df: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏟
+ 0x2c3e0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏠
+ 0x2c3e1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏡
+ 0x2c3e2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏢
+ 0x2c3e3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏣
+ 0x2c3e4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏤
+ 0x2c3e5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏥
+ 0x2c3e6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏦
+ 0x2c3e7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏧
+ 0x2c3e8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏨
+ 0x2c3e9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏩
+ 0x2c3ea: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏪
+ 0x2c3eb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏫
+ 0x2c3ec: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏬
+ 0x2c3ed: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏭
+ 0x2c3ee: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏮
+ 0x2c3ef: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏯
+ 0x2c3f0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏰
+ 0x2c3f1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏱
+ 0x2c3f2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏲
+ 0x2c3f3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏳
+ 0x2c3f4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏴
+ 0x2c3f5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏵
+ 0x2c3f6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏶
+ 0x2c3f7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏷
+ 0x2c3f8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏸
+ 0x2c3f9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏹
+ 0x2c3fa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏺
+ 0x2c3fb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏻
+ 0x2c3fc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏼
+ 0x2c3fd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏽
+ 0x2c3fe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏾
+ 0x2c3ff: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬏿
+ 0x2c400: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐀
+ 0x2c401: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐁
+ 0x2c402: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐂
+ 0x2c403: "\x06\x06\x06\x06\x06\x06", // 𬐃
+ 0x2c404: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐄
+ 0x2c405: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐅
+ 0x2c406: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐆
+ 0x2c407: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐇
+ 0x2c408: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐈
+ 0x2c409: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐉
+ 0x2c40a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐊
+ 0x2c40b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐋
+ 0x2c40c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐌
+ 0x2c40d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐍
+ 0x2c40e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐎
+ 0x2c40f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐏
+ 0x2c410: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐐
+ 0x2c411: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐑
+ 0x2c412: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐒
+ 0x2c413: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐓
+ 0x2c414: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐔
+ 0x2c415: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐕
+ 0x2c416: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐖
+ 0x2c417: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐗
+ 0x2c418: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐘
+ 0x2c419: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐙
+ 0x2c41a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐚
+ 0x2c41b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐛
+ 0x2c41c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐜
+ 0x2c41d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐝
+ 0x2c41e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐞
+ 0x2c41f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐟
+ 0x2c420: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐠
+ 0x2c421: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐡
+ 0x2c422: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐢
+ 0x2c423: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐣
+ 0x2c424: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐤
+ 0x2c425: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐥
+ 0x2c426: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐦
+ 0x2c427: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐧
+ 0x2c428: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐨
+ 0x2c429: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐩
+ 0x2c42a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐪
+ 0x2c42b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐫
+ 0x2c42c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐬
+ 0x2c42d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐭
+ 0x2c42e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐮
+ 0x2c42f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐯
+ 0x2c430: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐰
+ 0x2c431: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐱
+ 0x2c432: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐲
+ 0x2c433: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐳
+ 0x2c434: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐴
+ 0x2c435: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐵
+ 0x2c436: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐶
+ 0x2c437: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐷
+ 0x2c438: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐸
+ 0x2c439: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐹
+ 0x2c43a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐺
+ 0x2c43b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐻
+ 0x2c43c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐼
+ 0x2c43d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐽
+ 0x2c43e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐾
+ 0x2c43f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬐿
+ 0x2c440: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑀
+ 0x2c441: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑁
+ 0x2c442: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑂
+ 0x2c443: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑃
+ 0x2c444: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑄
+ 0x2c445: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑅
+ 0x2c446: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑆
+ 0x2c447: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑇
+ 0x2c448: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑈
+ 0x2c449: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑉
+ 0x2c44a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑊
+ 0x2c44b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑋
+ 0x2c44c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑌
+ 0x2c44d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑍
+ 0x2c44e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑎
+ 0x2c44f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑏
+ 0x2c450: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑐
+ 0x2c451: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑑
+ 0x2c452: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑒
+ 0x2c453: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑓
+ 0x2c454: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑔
+ 0x2c455: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑕
+ 0x2c456: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑖
+ 0x2c457: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑗
+ 0x2c458: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑘
+ 0x2c459: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑙
+ 0x2c45a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑚
+ 0x2c45b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑛
+ 0x2c45c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑜
+ 0x2c45d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑝
+ 0x2c45e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑞
+ 0x2c45f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑟
+ 0x2c460: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑠
+ 0x2c461: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑡
+ 0x2c462: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑢
+ 0x2c463: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑣
+ 0x2c464: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑤
+ 0x2c465: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑥
+ 0x2c466: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑦
+ 0x2c467: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑧
+ 0x2c468: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑨
+ 0x2c469: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑩
+ 0x2c46a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑪
+ 0x2c46b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑫
+ 0x2c46c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑬
+ 0x2c46d: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑭
+ 0x2c46e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑮
+ 0x2c46f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑯
+ 0x2c470: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑰
+ 0x2c471: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑱
+ 0x2c472: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑲
+ 0x2c473: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑳
+ 0x2c474: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑴
+ 0x2c475: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑵
+ 0x2c476: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑶
+ 0x2c477: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑷
+ 0x2c478: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑸
+ 0x2c479: "\x06\x06\x06\x06\x06\x06\x06", // 𬑹
+ 0x2c47a: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑺
+ 0x2c47b: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑻
+ 0x2c47c: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑼
+ 0x2c47d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑽
+ 0x2c47e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑾
+ 0x2c47f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬑿
+ 0x2c480: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒀
+ 0x2c481: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒁
+ 0x2c482: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒂
+ 0x2c483: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒃
+ 0x2c484: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒄
+ 0x2c485: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒅
+ 0x2c486: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒆
+ 0x2c487: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒇
+ 0x2c488: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒈
+ 0x2c489: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒉
+ 0x2c48a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒊
+ 0x2c48b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒋
+ 0x2c48c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒌
+ 0x2c48d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒍
+ 0x2c48e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒎
+ 0x2c48f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒏
+ 0x2c490: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒐
+ 0x2c491: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒑
+ 0x2c492: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒒
+ 0x2c493: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒓
+ 0x2c494: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒔
+ 0x2c495: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒕
+ 0x2c496: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒖
+ 0x2c497: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒗
+ 0x2c498: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒘
+ 0x2c499: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒙
+ 0x2c49a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒚
+ 0x2c49b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒛
+ 0x2c49c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒜
+ 0x2c49d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒝
+ 0x2c49e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒞
+ 0x2c49f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒟
+ 0x2c4a0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒠
+ 0x2c4a1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒡
+ 0x2c4a2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒢
+ 0x2c4a3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒣
+ 0x2c4a4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒤
+ 0x2c4a5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒥
+ 0x2c4a6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒦
+ 0x2c4a7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒧
+ 0x2c4a8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒨
+ 0x2c4a9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒩
+ 0x2c4aa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒪
+ 0x2c4ab: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒫
+ 0x2c4ac: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒬
+ 0x2c4ad: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒭
+ 0x2c4ae: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒮
+ 0x2c4af: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒯
+ 0x2c4b0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒰
+ 0x2c4b1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒱
+ 0x2c4b2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒲
+ 0x2c4b3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒳
+ 0x2c4b4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒴
+ 0x2c4b5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒵
+ 0x2c4b6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒶
+ 0x2c4b7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒷
+ 0x2c4b8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒸
+ 0x2c4b9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒹
+ 0x2c4ba: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒺
+ 0x2c4bb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒻
+ 0x2c4bc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒼
+ 0x2c4bd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒽
+ 0x2c4be: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒾
+ 0x2c4bf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬒿
+ 0x2c4c0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓀
+ 0x2c4c1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓁
+ 0x2c4c2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓂
+ 0x2c4c3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓃
+ 0x2c4c4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓄
+ 0x2c4c5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓅
+ 0x2c4c6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓆
+ 0x2c4c7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓇
+ 0x2c4c8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓈
+ 0x2c4c9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓉
+ 0x2c4ca: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓊
+ 0x2c4cb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓋
+ 0x2c4cc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓌
+ 0x2c4cd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓍
+ 0x2c4ce: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓎
+ 0x2c4cf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓏
+ 0x2c4d0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓐
+ 0x2c4d1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓑
+ 0x2c4d2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓒
+ 0x2c4d3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓓
+ 0x2c4d4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓔
+ 0x2c4d5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓕
+ 0x2c4d6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓖
+ 0x2c4d7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓗
+ 0x2c4d8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓘
+ 0x2c4d9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓙
+ 0x2c4da: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓚
+ 0x2c4db: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓛
+ 0x2c4dc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓜
+ 0x2c4dd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓝
+ 0x2c4de: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓞
+ 0x2c4df: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓟
+ 0x2c4e0: "\x06\x06\x06\x06\x06\x06\x06", // 𬓠
+ 0x2c4e1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓡
+ 0x2c4e2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓢
+ 0x2c4e3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓣
+ 0x2c4e4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓤
+ 0x2c4e5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓥
+ 0x2c4e6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓦
+ 0x2c4e7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓧
+ 0x2c4e8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓨
+ 0x2c4e9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓩
+ 0x2c4ea: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓪
+ 0x2c4eb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓫
+ 0x2c4ec: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓬
+ 0x2c4ed: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓭
+ 0x2c4ee: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓮
+ 0x2c4ef: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓯
+ 0x2c4f0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓰
+ 0x2c4f1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓱
+ 0x2c4f2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓲
+ 0x2c4f3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓳
+ 0x2c4f4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓴
+ 0x2c4f5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓵
+ 0x2c4f6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓶
+ 0x2c4f7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓷
+ 0x2c4f8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓸
+ 0x2c4f9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓹
+ 0x2c4fa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓺
+ 0x2c4fb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓻
+ 0x2c4fc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓼
+ 0x2c4fd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓽
+ 0x2c4fe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓾
+ 0x2c4ff: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬓿
+ 0x2c500: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔀
+ 0x2c501: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔁
+ 0x2c502: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔂
+ 0x2c503: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔃
+ 0x2c504: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔄
+ 0x2c505: "\x06\x06\x06\x06\x06\x06\x06", // 𬔅
+ 0x2c506: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔆
+ 0x2c507: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔇
+ 0x2c508: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔈
+ 0x2c509: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔉
+ 0x2c50a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔊
+ 0x2c50b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔋
+ 0x2c50c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔌
+ 0x2c50d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔍
+ 0x2c50e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔎
+ 0x2c50f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔏
+ 0x2c510: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔐
+ 0x2c511: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔑
+ 0x2c512: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔒
+ 0x2c513: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔓
+ 0x2c514: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔔
+ 0x2c515: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔕
+ 0x2c516: "\x06\x06\x06\x06\x06\x06", // 𬔖
+ 0x2c517: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔗
+ 0x2c518: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔘
+ 0x2c519: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔙
+ 0x2c51a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔚
+ 0x2c51b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔛
+ 0x2c51c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔜
+ 0x2c51d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔝
+ 0x2c51e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔞
+ 0x2c51f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔟
+ 0x2c520: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔠
+ 0x2c521: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔡
+ 0x2c522: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔢
+ 0x2c523: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔣
+ 0x2c524: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔤
+ 0x2c525: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔥
+ 0x2c526: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔦
+ 0x2c527: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔧
+ 0x2c528: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔨
+ 0x2c529: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔩
+ 0x2c52a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔪
+ 0x2c52b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔫
+ 0x2c52c: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔬
+ 0x2c52d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔭
+ 0x2c52e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔮
+ 0x2c52f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔯
+ 0x2c530: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔰
+ 0x2c531: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔱
+ 0x2c532: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔲
+ 0x2c533: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔳
+ 0x2c534: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔴
+ 0x2c535: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔵
+ 0x2c536: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔶
+ 0x2c537: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔷
+ 0x2c538: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔸
+ 0x2c539: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔹
+ 0x2c53a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔺
+ 0x2c53b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔻
+ 0x2c53c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔼
+ 0x2c53d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔽
+ 0x2c53e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔾
+ 0x2c53f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬔿
+ 0x2c540: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕀
+ 0x2c541: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕁
+ 0x2c542: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕂
+ 0x2c543: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕃
+ 0x2c544: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕄
+ 0x2c545: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕅
+ 0x2c546: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕆
+ 0x2c547: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕇
+ 0x2c548: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕈
+ 0x2c549: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕉
+ 0x2c54a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕊
+ 0x2c54b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕋
+ 0x2c54c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕌
+ 0x2c54d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕍
+ 0x2c54e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕎
+ 0x2c54f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕏
+ 0x2c550: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕐
+ 0x2c551: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕑
+ 0x2c552: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕒
+ 0x2c553: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕓
+ 0x2c554: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕔
+ 0x2c555: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕕
+ 0x2c556: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕖
+ 0x2c557: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕗
+ 0x2c558: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕘
+ 0x2c559: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕙
+ 0x2c55a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕚
+ 0x2c55b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕛
+ 0x2c55c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕜
+ 0x2c55d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕝
+ 0x2c55e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕞
+ 0x2c55f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕟
+ 0x2c560: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕠
+ 0x2c561: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕡
+ 0x2c562: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕢
+ 0x2c563: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕣
+ 0x2c564: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕤
+ 0x2c565: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕥
+ 0x2c566: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕦
+ 0x2c567: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕧
+ 0x2c568: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕨
+ 0x2c569: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕩
+ 0x2c56a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕪
+ 0x2c56b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕫
+ 0x2c56c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕬
+ 0x2c56d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕭
+ 0x2c56e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕮
+ 0x2c56f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕯
+ 0x2c570: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕰
+ 0x2c571: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕱
+ 0x2c572: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕲
+ 0x2c573: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕳
+ 0x2c574: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕴
+ 0x2c575: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕵
+ 0x2c576: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕶
+ 0x2c577: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕷
+ 0x2c578: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕸
+ 0x2c579: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕹
+ 0x2c57a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕺
+ 0x2c57b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕻
+ 0x2c57c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕼
+ 0x2c57d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕽
+ 0x2c57e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕾
+ 0x2c57f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬕿
+ 0x2c580: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖀
+ 0x2c581: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖁
+ 0x2c582: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖂
+ 0x2c583: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖃
+ 0x2c584: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖄
+ 0x2c585: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖅
+ 0x2c586: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖆
+ 0x2c587: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖇
+ 0x2c588: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖈
+ 0x2c589: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖉
+ 0x2c58a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖊
+ 0x2c58b: "\x06\x06\x06\x06\x06\x06\x06", // 𬖋
+ 0x2c58c: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖌
+ 0x2c58d: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖍
+ 0x2c58e: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖎
+ 0x2c58f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖏
+ 0x2c590: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖐
+ 0x2c591: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖑
+ 0x2c592: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖒
+ 0x2c593: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖓
+ 0x2c594: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖔
+ 0x2c595: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖕
+ 0x2c596: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖖
+ 0x2c597: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖗
+ 0x2c598: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖘
+ 0x2c599: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖙
+ 0x2c59a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖚
+ 0x2c59b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖛
+ 0x2c59c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖜
+ 0x2c59d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖝
+ 0x2c59e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖞
+ 0x2c59f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖟
+ 0x2c5a0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖠
+ 0x2c5a1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖡
+ 0x2c5a2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖢
+ 0x2c5a3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖣
+ 0x2c5a4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖤
+ 0x2c5a5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖥
+ 0x2c5a6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖦
+ 0x2c5a7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖧
+ 0x2c5a8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖨
+ 0x2c5a9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖩
+ 0x2c5aa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖪
+ 0x2c5ab: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖫
+ 0x2c5ac: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖬
+ 0x2c5ad: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖭
+ 0x2c5ae: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖮
+ 0x2c5af: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖯
+ 0x2c5b0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖰
+ 0x2c5b1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖱
+ 0x2c5b2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖲
+ 0x2c5b3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖳
+ 0x2c5b4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖴
+ 0x2c5b5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖵
+ 0x2c5b6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖶
+ 0x2c5b7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖷
+ 0x2c5b8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖸
+ 0x2c5b9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖹
+ 0x2c5ba: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖺
+ 0x2c5bb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖻
+ 0x2c5bc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖼
+ 0x2c5bd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖽
+ 0x2c5be: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖾
+ 0x2c5bf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬖿
+ 0x2c5c0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗀
+ 0x2c5c1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗁
+ 0x2c5c2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗂
+ 0x2c5c3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗃
+ 0x2c5c4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗄
+ 0x2c5c5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗅
+ 0x2c5c6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗆
+ 0x2c5c7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗇
+ 0x2c5c8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗈
+ 0x2c5c9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗉
+ 0x2c5ca: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗊
+ 0x2c5cb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗋
+ 0x2c5cc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗌
+ 0x2c5cd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗍
+ 0x2c5ce: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗎
+ 0x2c5cf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗏
+ 0x2c5d0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗐
+ 0x2c5d1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗑
+ 0x2c5d2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗒
+ 0x2c5d3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗓
+ 0x2c5d4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗔
+ 0x2c5d5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗕
+ 0x2c5d6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗖
+ 0x2c5d7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗗
+ 0x2c5d8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗘
+ 0x2c5d9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗙
+ 0x2c5da: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗚
+ 0x2c5db: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗛
+ 0x2c5dc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗜
+ 0x2c5dd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗝
+ 0x2c5de: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗞
+ 0x2c5df: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗟
+ 0x2c5e0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗠
+ 0x2c5e1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗡
+ 0x2c5e2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗢
+ 0x2c5e3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗣
+ 0x2c5e4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗤
+ 0x2c5e5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗥
+ 0x2c5e6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗦
+ 0x2c5e7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗧
+ 0x2c5e8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗨
+ 0x2c5e9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗩
+ 0x2c5ea: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗪
+ 0x2c5eb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗫
+ 0x2c5ec: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗬
+ 0x2c5ed: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗭
+ 0x2c5ee: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗮
+ 0x2c5ef: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗯
+ 0x2c5f0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗰
+ 0x2c5f1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗱
+ 0x2c5f2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗲
+ 0x2c5f3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗳
+ 0x2c5f4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗴
+ 0x2c5f5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗵
+ 0x2c5f6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗶
+ 0x2c5f7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗷
+ 0x2c5f8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗸
+ 0x2c5f9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗹
+ 0x2c5fa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗺
+ 0x2c5fb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗻
+ 0x2c5fc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗼
+ 0x2c5fd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗽
+ 0x2c5fe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗾
+ 0x2c5ff: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬗿
+ 0x2c600: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘀
+ 0x2c601: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘁
+ 0x2c602: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘂
+ 0x2c603: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘃
+ 0x2c604: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘄
+ 0x2c605: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘅
+ 0x2c606: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘆
+ 0x2c607: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘇
+ 0x2c608: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘈
+ 0x2c609: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘉
+ 0x2c60a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘊
+ 0x2c60b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘋
+ 0x2c60c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘌
+ 0x2c60d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘍
+ 0x2c60e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘎
+ 0x2c60f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘏
+ 0x2c610: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘐
+ 0x2c611: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘑
+ 0x2c612: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘒
+ 0x2c613: "\x06\x06\x06\x06\x06\x06", // 𬘓
+ 0x2c614: "\x06\x06\x06\x06\x06\x06\x06", // 𬘔
+ 0x2c615: "\x06\x06\x06\x06\x06\x06\x06", // 𬘕
+ 0x2c616: "\x06\x06\x06\x06\x06\x06\x06", // 𬘖
+ 0x2c617: "\x06\x06\x06\x06\x06\x06\x06", // 𬘗
+ 0x2c618: "\x06\x06\x06\x06\x06\x06\x06", // 𬘘
+ 0x2c619: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘙
+ 0x2c61a: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘚
+ 0x2c61b: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘛
+ 0x2c61c: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘜
+ 0x2c61d: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘝
+ 0x2c61e: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘞
+ 0x2c61f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘟
+ 0x2c620: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘠
+ 0x2c621: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘡
+ 0x2c622: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘢
+ 0x2c623: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘣
+ 0x2c624: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘤
+ 0x2c625: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘥
+ 0x2c626: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘦
+ 0x2c627: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘧
+ 0x2c628: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘨
+ 0x2c629: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘩
+ 0x2c62a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘪
+ 0x2c62b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘫
+ 0x2c62c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘬
+ 0x2c62d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘭
+ 0x2c62e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘮
+ 0x2c62f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘯
+ 0x2c630: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘰
+ 0x2c631: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘱
+ 0x2c632: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘲
+ 0x2c633: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘳
+ 0x2c634: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘴
+ 0x2c635: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘵
+ 0x2c636: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘶
+ 0x2c637: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘷
+ 0x2c638: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘸
+ 0x2c639: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘹
+ 0x2c63a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘺
+ 0x2c63b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘻
+ 0x2c63c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘼
+ 0x2c63d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘽
+ 0x2c63e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘾
+ 0x2c63f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬘿
+ 0x2c640: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙀
+ 0x2c641: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙁
+ 0x2c642: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙂
+ 0x2c643: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙃
+ 0x2c644: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙄
+ 0x2c645: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙅
+ 0x2c646: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙆
+ 0x2c647: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙇
+ 0x2c648: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙈
+ 0x2c649: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙉
+ 0x2c64a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙊
+ 0x2c64b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙋
+ 0x2c64c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙌
+ 0x2c64d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙍
+ 0x2c64e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙎
+ 0x2c64f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙏
+ 0x2c650: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙐
+ 0x2c651: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙑
+ 0x2c652: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙒
+ 0x2c653: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙓
+ 0x2c654: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙔
+ 0x2c655: "\x06\x06\x06\x06\x06\x06\x06", // 𬙕
+ 0x2c656: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙖
+ 0x2c657: "\x06\x06\x06\x06\x06\x06\x06", // 𬙗
+ 0x2c658: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙘
+ 0x2c659: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙙
+ 0x2c65a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙚
+ 0x2c65b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙛
+ 0x2c65c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙜
+ 0x2c65d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙝
+ 0x2c65e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙞
+ 0x2c65f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙟
+ 0x2c660: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙠
+ 0x2c661: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙡
+ 0x2c662: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙢
+ 0x2c663: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙣
+ 0x2c664: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙤
+ 0x2c665: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙥
+ 0x2c666: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙦
+ 0x2c667: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙧
+ 0x2c668: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙨
+ 0x2c669: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙩
+ 0x2c66a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙪
+ 0x2c66b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙫
+ 0x2c66c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙬
+ 0x2c66d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙭
+ 0x2c66e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙮
+ 0x2c66f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙯
+ 0x2c670: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙰
+ 0x2c671: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙱
+ 0x2c672: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙲
+ 0x2c673: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙳
+ 0x2c674: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙴
+ 0x2c675: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙵
+ 0x2c676: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙶
+ 0x2c677: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙷
+ 0x2c678: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙸
+ 0x2c679: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙹
+ 0x2c67a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙺
+ 0x2c67b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙻
+ 0x2c67c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙼
+ 0x2c67d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙽
+ 0x2c67e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙾
+ 0x2c67f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬙿
+ 0x2c680: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚀
+ 0x2c681: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚁
+ 0x2c682: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚂
+ 0x2c683: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚃
+ 0x2c684: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚄
+ 0x2c685: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚅
+ 0x2c686: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚆
+ 0x2c687: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚇
+ 0x2c688: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚈
+ 0x2c689: "\x06\x06\x06\x06\x06\x06", // 𬚉
+ 0x2c68a: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚊
+ 0x2c68b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚋
+ 0x2c68c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚌
+ 0x2c68d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚍
+ 0x2c68e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚎
+ 0x2c68f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚏
+ 0x2c690: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚐
+ 0x2c691: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚑
+ 0x2c692: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚒
+ 0x2c693: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚓
+ 0x2c694: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚔
+ 0x2c695: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚕
+ 0x2c696: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚖
+ 0x2c697: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚗
+ 0x2c698: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚘
+ 0x2c699: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚙
+ 0x2c69a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚚
+ 0x2c69b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚛
+ 0x2c69c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚜
+ 0x2c69d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚝
+ 0x2c69e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚞
+ 0x2c69f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚟
+ 0x2c6a0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚠
+ 0x2c6a1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚡
+ 0x2c6a2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚢
+ 0x2c6a3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚣
+ 0x2c6a4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚤
+ 0x2c6a5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚥
+ 0x2c6a6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚦
+ 0x2c6a7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚧
+ 0x2c6a8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚨
+ 0x2c6a9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚩
+ 0x2c6aa: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚪
+ 0x2c6ab: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚫
+ 0x2c6ac: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚬
+ 0x2c6ad: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚭
+ 0x2c6ae: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚮
+ 0x2c6af: "\x06\x06\x06\x06\x06\x06\x06", // 𬚯
+ 0x2c6b0: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚰
+ 0x2c6b1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚱
+ 0x2c6b2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚲
+ 0x2c6b3: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚳
+ 0x2c6b4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚴
+ 0x2c6b5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚵
+ 0x2c6b6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚶
+ 0x2c6b7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚷
+ 0x2c6b8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚸
+ 0x2c6b9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚹
+ 0x2c6ba: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚺
+ 0x2c6bb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚻
+ 0x2c6bc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚼
+ 0x2c6bd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚽
+ 0x2c6be: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚾
+ 0x2c6bf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬚿
+ 0x2c6c0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛀
+ 0x2c6c1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛁
+ 0x2c6c2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛂
+ 0x2c6c3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛃
+ 0x2c6c4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛄
+ 0x2c6c5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛅
+ 0x2c6c6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛆
+ 0x2c6c7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛇
+ 0x2c6c8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛈
+ 0x2c6c9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛉
+ 0x2c6ca: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛊
+ 0x2c6cb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛋
+ 0x2c6cc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛌
+ 0x2c6cd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛍
+ 0x2c6ce: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛎
+ 0x2c6cf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛏
+ 0x2c6d0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛐
+ 0x2c6d1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛑
+ 0x2c6d2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛒
+ 0x2c6d3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛓
+ 0x2c6d4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛔
+ 0x2c6d5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛕
+ 0x2c6d6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛖
+ 0x2c6d7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛗
+ 0x2c6d8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛘
+ 0x2c6d9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛙
+ 0x2c6da: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛚
+ 0x2c6db: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛛
+ 0x2c6dc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛜
+ 0x2c6dd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛝
+ 0x2c6de: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛞
+ 0x2c6df: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛟
+ 0x2c6e0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛠
+ 0x2c6e1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛡
+ 0x2c6e2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛢
+ 0x2c6e3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛣
+ 0x2c6e4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛤
+ 0x2c6e5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛥
+ 0x2c6e6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛦
+ 0x2c6e7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛧
+ 0x2c6e8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛨
+ 0x2c6e9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛩
+ 0x2c6ea: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛪
+ 0x2c6eb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛫
+ 0x2c6ec: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛬
+ 0x2c6ed: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛭
+ 0x2c6ee: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛮
+ 0x2c6ef: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛯
+ 0x2c6f0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛰
+ 0x2c6f1: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛱
+ 0x2c6f2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛲
+ 0x2c6f3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛳
+ 0x2c6f4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛴
+ 0x2c6f5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛵
+ 0x2c6f6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛶
+ 0x2c6f7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛷
+ 0x2c6f8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛸
+ 0x2c6f9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛹
+ 0x2c6fa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛺
+ 0x2c6fb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛻
+ 0x2c6fc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛼
+ 0x2c6fd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛽
+ 0x2c6fe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛾
+ 0x2c6ff: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬛿
+ 0x2c700: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜀
+ 0x2c701: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜁
+ 0x2c702: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜂
+ 0x2c703: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜃
+ 0x2c704: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜄
+ 0x2c705: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜅
+ 0x2c706: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜆
+ 0x2c707: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜇
+ 0x2c708: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜈
+ 0x2c709: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜉
+ 0x2c70a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜊
+ 0x2c70b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜋
+ 0x2c70c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜌
+ 0x2c70d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜍
+ 0x2c70e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜎
+ 0x2c70f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜏
+ 0x2c710: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜐
+ 0x2c711: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜑
+ 0x2c712: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜒
+ 0x2c713: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜓
+ 0x2c714: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜔
+ 0x2c715: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜕
+ 0x2c716: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜖
+ 0x2c717: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜗
+ 0x2c718: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜘
+ 0x2c719: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜙
+ 0x2c71a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜚
+ 0x2c71b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜛
+ 0x2c71c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜜
+ 0x2c71d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜝
+ 0x2c71e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜞
+ 0x2c71f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜟
+ 0x2c720: "\x06\x06\x06\x06\x06", // 𬜠
+ 0x2c721: "\x06\x06\x06\x06\x06\x06", // 𬜡
+ 0x2c722: "\x06\x06\x06\x06\x06\x06", // 𬜢
+ 0x2c723: "\x06\x06\x06\x06\x06\x06\x06", // 𬜣
+ 0x2c724: "\x06\x06\x06\x06\x06\x06\x06", // 𬜤
+ 0x2c725: "\x06\x06\x06\x06\x06\x06\x06", // 𬜥
+ 0x2c726: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜦
+ 0x2c727: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜧
+ 0x2c728: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜨
+ 0x2c729: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜩
+ 0x2c72a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜪
+ 0x2c72b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜫
+ 0x2c72c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜬
+ 0x2c72d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜭
+ 0x2c72e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜮
+ 0x2c72f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜯
+ 0x2c730: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜰
+ 0x2c731: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜱
+ 0x2c732: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜲
+ 0x2c733: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜳
+ 0x2c734: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜴
+ 0x2c735: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜵
+ 0x2c736: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜶
+ 0x2c737: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜷
+ 0x2c738: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜸
+ 0x2c739: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜹
+ 0x2c73a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜺
+ 0x2c73b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜻
+ 0x2c73c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜼
+ 0x2c73d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜽
+ 0x2c73e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜾
+ 0x2c73f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬜿
+ 0x2c740: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝀
+ 0x2c741: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝁
+ 0x2c742: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝂
+ 0x2c743: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝃
+ 0x2c744: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝄
+ 0x2c745: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝅
+ 0x2c746: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝆
+ 0x2c747: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝇
+ 0x2c748: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝈
+ 0x2c749: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝉
+ 0x2c74a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝊
+ 0x2c74b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝋
+ 0x2c74c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝌
+ 0x2c74d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝍
+ 0x2c74e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝎
+ 0x2c74f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝏
+ 0x2c750: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝐
+ 0x2c751: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝑
+ 0x2c752: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝒
+ 0x2c753: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝓
+ 0x2c754: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝔
+ 0x2c755: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝕
+ 0x2c756: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝖
+ 0x2c757: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝗
+ 0x2c758: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝘
+ 0x2c759: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝙
+ 0x2c75a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝚
+ 0x2c75b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝛
+ 0x2c75c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝜
+ 0x2c75d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝝
+ 0x2c75e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝞
+ 0x2c75f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝟
+ 0x2c760: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝠
+ 0x2c761: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝡
+ 0x2c762: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝢
+ 0x2c763: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝣
+ 0x2c764: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝤
+ 0x2c765: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝥
+ 0x2c766: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝦
+ 0x2c767: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝧
+ 0x2c768: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝨
+ 0x2c769: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝩
+ 0x2c76a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝪
+ 0x2c76b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝫
+ 0x2c76c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝬
+ 0x2c76d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝭
+ 0x2c76e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝮
+ 0x2c76f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝯
+ 0x2c770: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝰
+ 0x2c771: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝱
+ 0x2c772: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝲
+ 0x2c773: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝳
+ 0x2c774: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝴
+ 0x2c775: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝵
+ 0x2c776: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝶
+ 0x2c777: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝷
+ 0x2c778: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝸
+ 0x2c779: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝹
+ 0x2c77a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝺
+ 0x2c77b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝻
+ 0x2c77c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝼
+ 0x2c77d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝽
+ 0x2c77e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝾
+ 0x2c77f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬝿
+ 0x2c780: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞀
+ 0x2c781: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞁
+ 0x2c782: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞂
+ 0x2c783: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞃
+ 0x2c784: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞄
+ 0x2c785: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞅
+ 0x2c786: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞆
+ 0x2c787: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞇
+ 0x2c788: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞈
+ 0x2c789: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞉
+ 0x2c78a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞊
+ 0x2c78b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞋
+ 0x2c78c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞌
+ 0x2c78d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞍
+ 0x2c78e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞎
+ 0x2c78f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞏
+ 0x2c790: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞐
+ 0x2c791: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞑
+ 0x2c792: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞒
+ 0x2c793: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞓
+ 0x2c794: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞔
+ 0x2c795: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞕
+ 0x2c796: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞖
+ 0x2c797: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞗
+ 0x2c798: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞘
+ 0x2c799: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞙
+ 0x2c79a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞚
+ 0x2c79b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞛
+ 0x2c79c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞜
+ 0x2c79d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞝
+ 0x2c79e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞞
+ 0x2c79f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞟
+ 0x2c7a0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞠
+ 0x2c7a1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞡
+ 0x2c7a2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞢
+ 0x2c7a3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞣
+ 0x2c7a4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞤
+ 0x2c7a5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞥
+ 0x2c7a6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞦
+ 0x2c7a7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞧
+ 0x2c7a8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞨
+ 0x2c7a9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞩
+ 0x2c7aa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞪
+ 0x2c7ab: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞫
+ 0x2c7ac: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞬
+ 0x2c7ad: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞭
+ 0x2c7ae: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞮
+ 0x2c7af: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞯
+ 0x2c7b0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞰
+ 0x2c7b1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞱
+ 0x2c7b2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞲
+ 0x2c7b3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞳
+ 0x2c7b4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞴
+ 0x2c7b5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞵
+ 0x2c7b6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞶
+ 0x2c7b7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞷
+ 0x2c7b8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞸
+ 0x2c7b9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞹
+ 0x2c7ba: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞺
+ 0x2c7bb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞻
+ 0x2c7bc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞼
+ 0x2c7bd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞽
+ 0x2c7be: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞾
+ 0x2c7bf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬞿
+ 0x2c7c0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟀
+ 0x2c7c1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟁
+ 0x2c7c2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟂
+ 0x2c7c3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟃
+ 0x2c7c4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟄
+ 0x2c7c5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟅
+ 0x2c7c6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟆
+ 0x2c7c7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟇
+ 0x2c7c8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟈
+ 0x2c7c9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟉
+ 0x2c7ca: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟊
+ 0x2c7cb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟋
+ 0x2c7cc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟌
+ 0x2c7cd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟍
+ 0x2c7ce: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟎
+ 0x2c7cf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟏
+ 0x2c7d0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟐
+ 0x2c7d1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟑
+ 0x2c7d2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟒
+ 0x2c7d3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟓
+ 0x2c7d4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟔
+ 0x2c7d5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟕
+ 0x2c7d6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟖
+ 0x2c7d7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟗
+ 0x2c7d8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟘
+ 0x2c7d9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟙
+ 0x2c7da: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟚
+ 0x2c7db: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟛
+ 0x2c7dc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟜
+ 0x2c7dd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟝
+ 0x2c7de: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟞
+ 0x2c7df: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟟
+ 0x2c7e0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟠
+ 0x2c7e1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟡
+ 0x2c7e2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟢
+ 0x2c7e3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟣
+ 0x2c7e4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟤
+ 0x2c7e5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟥
+ 0x2c7e6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟦
+ 0x2c7e7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟧
+ 0x2c7e8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟨
+ 0x2c7e9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟩
+ 0x2c7ea: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟪
+ 0x2c7eb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟫
+ 0x2c7ec: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟬
+ 0x2c7ed: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟭
+ 0x2c7ee: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟮
+ 0x2c7ef: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟯
+ 0x2c7f0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟰
+ 0x2c7f1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟱
+ 0x2c7f2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟲
+ 0x2c7f3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟳
+ 0x2c7f4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟴
+ 0x2c7f5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟵
+ 0x2c7f6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟶
+ 0x2c7f7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟷
+ 0x2c7f8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟸
+ 0x2c7f9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟹
+ 0x2c7fa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟺
+ 0x2c7fb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟻
+ 0x2c7fc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟼
+ 0x2c7fd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟽
+ 0x2c7fe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟾
+ 0x2c7ff: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬟿
+ 0x2c800: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠀
+ 0x2c801: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠁
+ 0x2c802: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠂
+ 0x2c803: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠃
+ 0x2c804: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠄
+ 0x2c805: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠅
+ 0x2c806: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠆
+ 0x2c807: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠇
+ 0x2c808: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠈
+ 0x2c809: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠉
+ 0x2c80a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠊
+ 0x2c80b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠋
+ 0x2c80c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠌
+ 0x2c80d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠍
+ 0x2c80e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠎
+ 0x2c80f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠏
+ 0x2c810: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠐
+ 0x2c811: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠑
+ 0x2c812: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠒
+ 0x2c813: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠓
+ 0x2c814: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠔
+ 0x2c815: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠕
+ 0x2c816: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠖
+ 0x2c817: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠗
+ 0x2c818: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠘
+ 0x2c819: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠙
+ 0x2c81a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠚
+ 0x2c81b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠛
+ 0x2c81c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠜
+ 0x2c81d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠝
+ 0x2c81e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠞
+ 0x2c81f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠟
+ 0x2c820: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠠
+ 0x2c821: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠡
+ 0x2c822: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠢
+ 0x2c823: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠣
+ 0x2c824: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠤
+ 0x2c825: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠥
+ 0x2c826: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠦
+ 0x2c827: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠧
+ 0x2c828: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠨
+ 0x2c829: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠩
+ 0x2c82a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠪
+ 0x2c82b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠫
+ 0x2c82c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠬
+ 0x2c82d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠭
+ 0x2c82e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠮
+ 0x2c82f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠯
+ 0x2c830: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠰
+ 0x2c831: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠱
+ 0x2c832: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠲
+ 0x2c833: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠳
+ 0x2c834: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠴
+ 0x2c835: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠵
+ 0x2c836: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠶
+ 0x2c837: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠷
+ 0x2c838: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠸
+ 0x2c839: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠹
+ 0x2c83a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠺
+ 0x2c83b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠻
+ 0x2c83c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠼
+ 0x2c83d: "\x06\x06\x06\x06\x06\x06\x06", // 𬠽
+ 0x2c83e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠾
+ 0x2c83f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬠿
+ 0x2c840: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡀
+ 0x2c841: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡁
+ 0x2c842: "\x06\x06\x06\x06\x06\x06\x06", // 𬡂
+ 0x2c843: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡃
+ 0x2c844: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡄
+ 0x2c845: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡅
+ 0x2c846: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡆
+ 0x2c847: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡇
+ 0x2c848: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡈
+ 0x2c849: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡉
+ 0x2c84a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡊
+ 0x2c84b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡋
+ 0x2c84c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡌
+ 0x2c84d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡍
+ 0x2c84e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡎
+ 0x2c84f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡏
+ 0x2c850: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡐
+ 0x2c851: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡑
+ 0x2c852: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡒
+ 0x2c853: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡓
+ 0x2c854: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡔
+ 0x2c855: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡕
+ 0x2c856: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡖
+ 0x2c857: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡗
+ 0x2c858: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡘
+ 0x2c859: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡙
+ 0x2c85a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡚
+ 0x2c85b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡛
+ 0x2c85c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡜
+ 0x2c85d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡝
+ 0x2c85e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡞
+ 0x2c85f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡟
+ 0x2c860: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡠
+ 0x2c861: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡡
+ 0x2c862: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡢
+ 0x2c863: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡣
+ 0x2c864: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡤
+ 0x2c865: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡥
+ 0x2c866: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡦
+ 0x2c867: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡧
+ 0x2c868: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡨
+ 0x2c869: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡩
+ 0x2c86a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡪
+ 0x2c86b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡫
+ 0x2c86c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡬
+ 0x2c86d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡭
+ 0x2c86e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡮
+ 0x2c86f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡯
+ 0x2c870: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡰
+ 0x2c871: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡱
+ 0x2c872: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡲
+ 0x2c873: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡳
+ 0x2c874: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡴
+ 0x2c875: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡵
+ 0x2c876: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡶
+ 0x2c877: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡷
+ 0x2c878: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡸
+ 0x2c879: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡹
+ 0x2c87a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡺
+ 0x2c87b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡻
+ 0x2c87c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡼
+ 0x2c87d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡽
+ 0x2c87e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡾
+ 0x2c87f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬡿
+ 0x2c880: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢀
+ 0x2c881: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢁
+ 0x2c882: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢂
+ 0x2c883: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢃
+ 0x2c884: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢄
+ 0x2c885: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢅
+ 0x2c886: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢆
+ 0x2c887: "\x06\x06\x06\x06\x06\x06", // 𬢇
+ 0x2c888: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢈
+ 0x2c889: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢉
+ 0x2c88a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢊
+ 0x2c88b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢋
+ 0x2c88c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢌
+ 0x2c88d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢍
+ 0x2c88e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢎
+ 0x2c88f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢏
+ 0x2c890: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢐
+ 0x2c891: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢑
+ 0x2c892: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢒
+ 0x2c893: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢓
+ 0x2c894: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢔
+ 0x2c895: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢕
+ 0x2c896: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢖
+ 0x2c897: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢗
+ 0x2c898: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢘
+ 0x2c899: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢙
+ 0x2c89a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢚
+ 0x2c89b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢛
+ 0x2c89c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢜
+ 0x2c89d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢝
+ 0x2c89e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢞
+ 0x2c89f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢟
+ 0x2c8a0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢠
+ 0x2c8a1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢡
+ 0x2c8a2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢢
+ 0x2c8a3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢣
+ 0x2c8a4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢤
+ 0x2c8a5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢥
+ 0x2c8a6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢦
+ 0x2c8a7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢧
+ 0x2c8a8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢨
+ 0x2c8a9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢩
+ 0x2c8aa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢪
+ 0x2c8ab: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢫
+ 0x2c8ac: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢬
+ 0x2c8ad: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢭
+ 0x2c8ae: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢮
+ 0x2c8af: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢯
+ 0x2c8b0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢰
+ 0x2c8b1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢱
+ 0x2c8b2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢲
+ 0x2c8b3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢳
+ 0x2c8b4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢴
+ 0x2c8b5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢵
+ 0x2c8b6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢶
+ 0x2c8b7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢷
+ 0x2c8b8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢸
+ 0x2c8b9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢹
+ 0x2c8ba: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢺
+ 0x2c8bb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢻
+ 0x2c8bc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢼
+ 0x2c8bd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢽
+ 0x2c8be: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢾
+ 0x2c8bf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬢿
+ 0x2c8c0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬣀
+ 0x2c8c1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬣁
+ 0x2c8c2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬣂
+ 0x2c8c3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬣃
+ 0x2c8c4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬣄
+ 0x2c8c5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬣅
+ 0x2c8c6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬣆
+ 0x2c8c7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬣇
+ 0x2c8c8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬣈
+ 0x2c8c9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬣉
+ 0x2c8ca: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬣊
+ 0x2c8cb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬣋
+ 0x2c8cc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬣌
+ 0x2c8cd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬣍
+ 0x2c8ce: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬣎
+ 0x2c8cf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬣏
+ 0x2c8d0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬣐
+ 0x2c8d1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬣑
+ 0x2c8d2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬣒
+ 0x2c8d3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬣓
+ 0x2c8d4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬣔
+ 0x2c8d5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬣕
+ 0x2c8d6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬣖
+ 0x2c8d7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬣗
+ 0x2c8d8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬣘
+ 0x2c8d9: "\x06\x06\x06\x06\x06", // 𬣙
+ 0x2c8da: "\x06\x06\x06\x06\x06", // 𬣚
+ 0x2c8db: "\x06\x06\x06\x06\x06\x06", // 𬣛
+ 0x2c8dc: "\x06\x06\x06\x06\x06\x06", // 𬣜
+ 0x2c8dd: "\x06\x06\x06\x06\x06\x06", // 𬣝
+ 0x2c8de: "\x06\x06\x06\x06\x06\x06", // 𬣞
+ 0x2c8df: "\x06\x06\x06\x06\x06\x06", // 𬣟
+ 0x2c8e0: "\x06\x06\x06\x06\x06\x06\x06", // 𬣠
+ 0x2c8e1: "\x06\x06\x06\x06\x06\x06\x06", // 𬣡
+ 0x2c8e2: "\x06\x06\x06\x06\x06\x06\x06", // 𬣢
+ 0x2c8e3: "\x06\x06\x06\x06\x06\x06\x06", // 𬣣
+ 0x2c8e4: "\x06\x06\x06\x06\x06\x06\x06", // 𬣤
+ 0x2c8e5: "\x06\x06\x06\x06\x06\x06\x06", // 𬣥
+ 0x2c8e6: "\x06\x06\x06\x06\x06\x06\x06", // 𬣦
+ 0x2c8e7: "\x06\x06\x06\x06\x06\x06\x06", // 𬣧
+ 0x2c8e8: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬣨
+ 0x2c8e9: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬣩
+ 0x2c8ea: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬣪
+ 0x2c8eb: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬣫
+ 0x2c8ec: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬣬
+ 0x2c8ed: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬣭
+ 0x2c8ee: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬣮
+ 0x2c8ef: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬣯
+ 0x2c8f0: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬣰
+ 0x2c8f1: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬣱
+ 0x2c8f2: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬣲
+ 0x2c8f3: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬣳
+ 0x2c8f4: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬣴
+ 0x2c8f5: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬣵
+ 0x2c8f6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬣶
+ 0x2c8f7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬣷
+ 0x2c8f8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬣸
+ 0x2c8f9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬣹
+ 0x2c8fa: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬣺
+ 0x2c8fb: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬣻
+ 0x2c8fc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬣼
+ 0x2c8fd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬣽
+ 0x2c8fe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬣾
+ 0x2c8ff: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬣿
+ 0x2c900: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤀
+ 0x2c901: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤁
+ 0x2c902: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤂
+ 0x2c903: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤃
+ 0x2c904: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤄
+ 0x2c905: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤅
+ 0x2c906: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤆
+ 0x2c907: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤇
+ 0x2c908: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤈
+ 0x2c909: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤉
+ 0x2c90a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤊
+ 0x2c90b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤋
+ 0x2c90c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤌
+ 0x2c90d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤍
+ 0x2c90e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤎
+ 0x2c90f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤏
+ 0x2c910: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤐
+ 0x2c911: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤑
+ 0x2c912: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤒
+ 0x2c913: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤓
+ 0x2c914: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤔
+ 0x2c915: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤕
+ 0x2c916: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤖
+ 0x2c917: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤗
+ 0x2c918: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤘
+ 0x2c919: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤙
+ 0x2c91a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤚
+ 0x2c91b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤛
+ 0x2c91c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤜
+ 0x2c91d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤝
+ 0x2c91e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤞
+ 0x2c91f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤟
+ 0x2c920: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤠
+ 0x2c921: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤡
+ 0x2c922: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤢
+ 0x2c923: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤣
+ 0x2c924: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤤
+ 0x2c925: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤥
+ 0x2c926: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤦
+ 0x2c927: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤧
+ 0x2c928: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤨
+ 0x2c929: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤩
+ 0x2c92a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤪
+ 0x2c92b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤫
+ 0x2c92c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤬
+ 0x2c92d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤭
+ 0x2c92e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤮
+ 0x2c92f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤯
+ 0x2c930: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤰
+ 0x2c931: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤱
+ 0x2c932: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤲
+ 0x2c933: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤳
+ 0x2c934: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤴
+ 0x2c935: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤵
+ 0x2c936: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤶
+ 0x2c937: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤷
+ 0x2c938: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤸
+ 0x2c939: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤹
+ 0x2c93a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤺
+ 0x2c93b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤻
+ 0x2c93c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤼
+ 0x2c93d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤽
+ 0x2c93e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤾
+ 0x2c93f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬤿
+ 0x2c940: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥀
+ 0x2c941: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥁
+ 0x2c942: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥂
+ 0x2c943: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥃
+ 0x2c944: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥄
+ 0x2c945: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥅
+ 0x2c946: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥆
+ 0x2c947: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥇
+ 0x2c948: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥈
+ 0x2c949: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥉
+ 0x2c94a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥊
+ 0x2c94b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥋
+ 0x2c94c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥌
+ 0x2c94d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥍
+ 0x2c94e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥎
+ 0x2c94f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥏
+ 0x2c950: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥐
+ 0x2c951: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥑
+ 0x2c952: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥒
+ 0x2c953: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥓
+ 0x2c954: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥔
+ 0x2c955: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥕
+ 0x2c956: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥖
+ 0x2c957: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥗
+ 0x2c958: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥘
+ 0x2c959: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥙
+ 0x2c95a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥚
+ 0x2c95b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥛
+ 0x2c95c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥜
+ 0x2c95d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥝
+ 0x2c95e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥞
+ 0x2c95f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥟
+ 0x2c960: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥠
+ 0x2c961: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥡
+ 0x2c962: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥢
+ 0x2c963: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥣
+ 0x2c964: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥤
+ 0x2c965: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥥
+ 0x2c966: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥦
+ 0x2c967: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥧
+ 0x2c968: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥨
+ 0x2c969: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥩
+ 0x2c96a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥪
+ 0x2c96b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥫
+ 0x2c96c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥬
+ 0x2c96d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥭
+ 0x2c96e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥮
+ 0x2c96f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥯
+ 0x2c970: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥰
+ 0x2c971: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥱
+ 0x2c972: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥲
+ 0x2c973: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥳
+ 0x2c974: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥴
+ 0x2c975: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥵
+ 0x2c976: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥶
+ 0x2c977: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥷
+ 0x2c978: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥸
+ 0x2c979: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥹
+ 0x2c97a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥺
+ 0x2c97b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥻
+ 0x2c97c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥼
+ 0x2c97d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥽
+ 0x2c97e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥾
+ 0x2c97f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬥿
+ 0x2c980: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦀
+ 0x2c981: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦁
+ 0x2c982: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦂
+ 0x2c983: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦃
+ 0x2c984: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦄
+ 0x2c985: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦅
+ 0x2c986: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦆
+ 0x2c987: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦇
+ 0x2c988: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦈
+ 0x2c989: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦉
+ 0x2c98a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦊
+ 0x2c98b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦋
+ 0x2c98c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦌
+ 0x2c98d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦍
+ 0x2c98e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦎
+ 0x2c98f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦏
+ 0x2c990: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦐
+ 0x2c991: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦑
+ 0x2c992: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦒
+ 0x2c993: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦓
+ 0x2c994: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦔
+ 0x2c995: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦕
+ 0x2c996: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦖
+ 0x2c997: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦗
+ 0x2c998: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦘
+ 0x2c999: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦙
+ 0x2c99a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦚
+ 0x2c99b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦛
+ 0x2c99c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦜
+ 0x2c99d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦝
+ 0x2c99e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦞
+ 0x2c99f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦟
+ 0x2c9a0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦠
+ 0x2c9a1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦡
+ 0x2c9a2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦢
+ 0x2c9a3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦣
+ 0x2c9a4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦤
+ 0x2c9a5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦥
+ 0x2c9a6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦦
+ 0x2c9a7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦧
+ 0x2c9a8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦨
+ 0x2c9a9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦩
+ 0x2c9aa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦪
+ 0x2c9ab: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦫
+ 0x2c9ac: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦬
+ 0x2c9ad: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦭
+ 0x2c9ae: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦮
+ 0x2c9af: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦯
+ 0x2c9b0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦰
+ 0x2c9b1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦱
+ 0x2c9b2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦲
+ 0x2c9b3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦳
+ 0x2c9b4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦴
+ 0x2c9b5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦵
+ 0x2c9b6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦶
+ 0x2c9b7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦷
+ 0x2c9b8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦸
+ 0x2c9b9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦹
+ 0x2c9ba: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦺
+ 0x2c9bb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦻
+ 0x2c9bc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦼
+ 0x2c9bd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦽
+ 0x2c9be: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦾
+ 0x2c9bf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬦿
+ 0x2c9c0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧀
+ 0x2c9c1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧁
+ 0x2c9c2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧂
+ 0x2c9c3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧃
+ 0x2c9c4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧄
+ 0x2c9c5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧅
+ 0x2c9c6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧆
+ 0x2c9c7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧇
+ 0x2c9c8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧈
+ 0x2c9c9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧉
+ 0x2c9ca: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧊
+ 0x2c9cb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧋
+ 0x2c9cc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧌
+ 0x2c9cd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧍
+ 0x2c9ce: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧎
+ 0x2c9cf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧏
+ 0x2c9d0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧐
+ 0x2c9d1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧑
+ 0x2c9d2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧒
+ 0x2c9d3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧓
+ 0x2c9d4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧔
+ 0x2c9d5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧕
+ 0x2c9d6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧖
+ 0x2c9d7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧗
+ 0x2c9d8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧘
+ 0x2c9d9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧙
+ 0x2c9da: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧚
+ 0x2c9db: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧛
+ 0x2c9dc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧜
+ 0x2c9dd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧝
+ 0x2c9de: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧞
+ 0x2c9df: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧟
+ 0x2c9e0: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧠
+ 0x2c9e1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧡
+ 0x2c9e2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧢
+ 0x2c9e3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧣
+ 0x2c9e4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧤
+ 0x2c9e5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧥
+ 0x2c9e6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧦
+ 0x2c9e7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧧
+ 0x2c9e8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧨
+ 0x2c9e9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧩
+ 0x2c9ea: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧪
+ 0x2c9eb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧫
+ 0x2c9ec: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧬
+ 0x2c9ed: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧭
+ 0x2c9ee: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧮
+ 0x2c9ef: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧯
+ 0x2c9f0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧰
+ 0x2c9f1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧱
+ 0x2c9f2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧲
+ 0x2c9f3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧳
+ 0x2c9f4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧴
+ 0x2c9f5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧵
+ 0x2c9f6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧶
+ 0x2c9f7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧷
+ 0x2c9f8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧸
+ 0x2c9f9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧹
+ 0x2c9fa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧺
+ 0x2c9fb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧻
+ 0x2c9fc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧼
+ 0x2c9fd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧽
+ 0x2c9fe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧾
+ 0x2c9ff: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬧿
+ 0x2ca00: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨀
+ 0x2ca01: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨁
+ 0x2ca02: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨂
+ 0x2ca03: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨃
+ 0x2ca04: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨄
+ 0x2ca05: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨅
+ 0x2ca06: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨆
+ 0x2ca07: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨇
+ 0x2ca08: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨈
+ 0x2ca09: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨉
+ 0x2ca0a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨊
+ 0x2ca0b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨋
+ 0x2ca0c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨌
+ 0x2ca0d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨍
+ 0x2ca0e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨎
+ 0x2ca0f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨏
+ 0x2ca10: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨐
+ 0x2ca11: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨑
+ 0x2ca12: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨒
+ 0x2ca13: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨓
+ 0x2ca14: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨔
+ 0x2ca15: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨕
+ 0x2ca16: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨖
+ 0x2ca17: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨗
+ 0x2ca18: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨘
+ 0x2ca19: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨙
+ 0x2ca1a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨚
+ 0x2ca1b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨛
+ 0x2ca1c: "\x06\x06\x06\x06\x06", // 𬨜
+ 0x2ca1d: "\x06\x06\x06\x06\x06\x06\x06", // 𬨝
+ 0x2ca1e: "\x06\x06\x06\x06\x06\x06\x06", // 𬨞
+ 0x2ca1f: "\x06\x06\x06\x06\x06\x06\x06", // 𬨟
+ 0x2ca20: "\x06\x06\x06\x06\x06\x06\x06", // 𬨠
+ 0x2ca21: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨡
+ 0x2ca22: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨢
+ 0x2ca23: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨣
+ 0x2ca24: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨤
+ 0x2ca25: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨥
+ 0x2ca26: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨦
+ 0x2ca27: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨧
+ 0x2ca28: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨨
+ 0x2ca29: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨩
+ 0x2ca2a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨪
+ 0x2ca2b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨫
+ 0x2ca2c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨬
+ 0x2ca2d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨭
+ 0x2ca2e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨮
+ 0x2ca2f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨯
+ 0x2ca30: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨰
+ 0x2ca31: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨱
+ 0x2ca32: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨲
+ 0x2ca33: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨳
+ 0x2ca34: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨴
+ 0x2ca35: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨵
+ 0x2ca36: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨶
+ 0x2ca37: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨷
+ 0x2ca38: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨸
+ 0x2ca39: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨹
+ 0x2ca3a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨺
+ 0x2ca3b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨻
+ 0x2ca3c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨼
+ 0x2ca3d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨽
+ 0x2ca3e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨾
+ 0x2ca3f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬨿
+ 0x2ca40: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩀
+ 0x2ca41: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩁
+ 0x2ca42: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩂
+ 0x2ca43: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩃
+ 0x2ca44: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩄
+ 0x2ca45: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩅
+ 0x2ca46: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩆
+ 0x2ca47: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩇
+ 0x2ca48: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩈
+ 0x2ca49: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩉
+ 0x2ca4a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩊
+ 0x2ca4b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩋
+ 0x2ca4c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩌
+ 0x2ca4d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩍
+ 0x2ca4e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩎
+ 0x2ca4f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩏
+ 0x2ca50: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩐
+ 0x2ca51: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩑
+ 0x2ca52: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩒
+ 0x2ca53: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩓
+ 0x2ca54: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩔
+ 0x2ca55: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩕
+ 0x2ca56: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩖
+ 0x2ca57: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩗
+ 0x2ca58: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩘
+ 0x2ca59: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩙
+ 0x2ca5a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩚
+ 0x2ca5b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩛
+ 0x2ca5c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩜
+ 0x2ca5d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩝
+ 0x2ca5e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩞
+ 0x2ca5f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩟
+ 0x2ca60: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩠
+ 0x2ca61: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩡
+ 0x2ca62: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩢
+ 0x2ca63: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩣
+ 0x2ca64: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩤
+ 0x2ca65: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩥
+ 0x2ca66: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩦
+ 0x2ca67: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩧
+ 0x2ca68: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩨
+ 0x2ca69: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩩
+ 0x2ca6a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩪
+ 0x2ca6b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩫
+ 0x2ca6c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩬
+ 0x2ca6d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩭
+ 0x2ca6e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩮
+ 0x2ca6f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩯
+ 0x2ca70: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩰
+ 0x2ca71: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩱
+ 0x2ca72: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩲
+ 0x2ca73: "\x06\x06\x06\x06\x06", // 𬩳
+ 0x2ca74: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩴
+ 0x2ca75: "\x06\x06\x06\x06\x06\x06\x06", // 𬩵
+ 0x2ca76: "\x06\x06\x06\x06\x06\x06\x06", // 𬩶
+ 0x2ca77: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩷
+ 0x2ca78: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩸
+ 0x2ca79: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩹
+ 0x2ca7a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩺
+ 0x2ca7b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩻
+ 0x2ca7c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩼
+ 0x2ca7d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩽
+ 0x2ca7e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩾
+ 0x2ca7f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬩿
+ 0x2ca80: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪀
+ 0x2ca81: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪁
+ 0x2ca82: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪂
+ 0x2ca83: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪃
+ 0x2ca84: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪄
+ 0x2ca85: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪅
+ 0x2ca86: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪆
+ 0x2ca87: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪇
+ 0x2ca88: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪈
+ 0x2ca89: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪉
+ 0x2ca8a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪊
+ 0x2ca8b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪋
+ 0x2ca8c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪌
+ 0x2ca8d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪍
+ 0x2ca8e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪎
+ 0x2ca8f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪏
+ 0x2ca90: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪐
+ 0x2ca91: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪑
+ 0x2ca92: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪒
+ 0x2ca93: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪓
+ 0x2ca94: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪔
+ 0x2ca95: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪕
+ 0x2ca96: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪖
+ 0x2ca97: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪗
+ 0x2ca98: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪘
+ 0x2ca99: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪙
+ 0x2ca9a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪚
+ 0x2ca9b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪛
+ 0x2ca9c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪜
+ 0x2ca9d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪝
+ 0x2ca9e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪞
+ 0x2ca9f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪟
+ 0x2caa0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪠
+ 0x2caa1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪡
+ 0x2caa2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪢
+ 0x2caa3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪣
+ 0x2caa4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪤
+ 0x2caa5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪥
+ 0x2caa6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪦
+ 0x2caa7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪧
+ 0x2caa8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪨
+ 0x2caa9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪩
+ 0x2caaa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪪
+ 0x2caab: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪫
+ 0x2caac: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪬
+ 0x2caad: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪭
+ 0x2caae: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪮
+ 0x2caaf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪯
+ 0x2cab0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪰
+ 0x2cab1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪱
+ 0x2cab2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪲
+ 0x2cab3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪳
+ 0x2cab4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪴
+ 0x2cab5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪵
+ 0x2cab6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪶
+ 0x2cab7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪷
+ 0x2cab8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪸
+ 0x2cab9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪹
+ 0x2caba: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪺
+ 0x2cabb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪻
+ 0x2cabc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪼
+ 0x2cabd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪽
+ 0x2cabe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪾
+ 0x2cabf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬪿
+ 0x2cac0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫀
+ 0x2cac1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫁
+ 0x2cac2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫂
+ 0x2cac3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫃
+ 0x2cac4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫄
+ 0x2cac5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫅
+ 0x2cac6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫆
+ 0x2cac7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫇
+ 0x2cac8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫈
+ 0x2cac9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫉
+ 0x2caca: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫊
+ 0x2cacb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫋
+ 0x2cacc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫌
+ 0x2cacd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫍
+ 0x2cace: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫎
+ 0x2cacf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫏
+ 0x2cad0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫐
+ 0x2cad1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫑
+ 0x2cad2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫒
+ 0x2cad3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫓
+ 0x2cad4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫔
+ 0x2cad5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫕
+ 0x2cad6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫖
+ 0x2cad7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫗
+ 0x2cad8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫘
+ 0x2cad9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫙
+ 0x2cada: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫚
+ 0x2cadb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫛
+ 0x2cadc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫜
+ 0x2cadd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫝
+ 0x2cade: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫞
+ 0x2cadf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫟
+ 0x2cae0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫠
+ 0x2cae1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫡
+ 0x2cae2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫢
+ 0x2cae3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫣
+ 0x2cae4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫤
+ 0x2cae5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫥
+ 0x2cae6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫦
+ 0x2cae7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫧
+ 0x2cae8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫨
+ 0x2cae9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫩
+ 0x2caea: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫪
+ 0x2caeb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫫
+ 0x2caec: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫬
+ 0x2caed: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫭
+ 0x2caee: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫮
+ 0x2caef: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫯
+ 0x2caf0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫰
+ 0x2caf1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫱
+ 0x2caf2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫲
+ 0x2caf3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫳
+ 0x2caf4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫴
+ 0x2caf5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫵
+ 0x2caf6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫶
+ 0x2caf7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫷
+ 0x2caf8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫸
+ 0x2caf9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫹
+ 0x2cafa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫺
+ 0x2cafb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫻
+ 0x2cafc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫼
+ 0x2cafd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫽
+ 0x2cafe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫾
+ 0x2caff: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬫿
+ 0x2cb00: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬀
+ 0x2cb01: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬁
+ 0x2cb02: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬂
+ 0x2cb03: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬃
+ 0x2cb04: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬄
+ 0x2cb05: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬅
+ 0x2cb06: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬆
+ 0x2cb07: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬇
+ 0x2cb08: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬈
+ 0x2cb09: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬉
+ 0x2cb0a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬊
+ 0x2cb0b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬋
+ 0x2cb0c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬌
+ 0x2cb0d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬍
+ 0x2cb0e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬎
+ 0x2cb0f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬏
+ 0x2cb10: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬐
+ 0x2cb11: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬑
+ 0x2cb12: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬒
+ 0x2cb13: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬓
+ 0x2cb14: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬔
+ 0x2cb15: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬕
+ 0x2cb16: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬖
+ 0x2cb17: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬗
+ 0x2cb18: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬘
+ 0x2cb19: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬙
+ 0x2cb1a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬚
+ 0x2cb1b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬛
+ 0x2cb1c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬜
+ 0x2cb1d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬝
+ 0x2cb1e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬞
+ 0x2cb1f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬟
+ 0x2cb20: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬠
+ 0x2cb21: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬡
+ 0x2cb22: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬢
+ 0x2cb23: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬣
+ 0x2cb24: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬤
+ 0x2cb25: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬥
+ 0x2cb26: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬦
+ 0x2cb27: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬧
+ 0x2cb28: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬨
+ 0x2cb29: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬩
+ 0x2cb2a: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬪
+ 0x2cb2b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬫
+ 0x2cb2c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬬
+ 0x2cb2d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬭
+ 0x2cb2e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬮
+ 0x2cb2f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬯
+ 0x2cb30: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬰
+ 0x2cb31: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬱
+ 0x2cb32: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬲
+ 0x2cb33: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬳
+ 0x2cb34: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬴
+ 0x2cb35: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬵
+ 0x2cb36: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬶
+ 0x2cb37: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬷
+ 0x2cb38: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬸
+ 0x2cb39: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬹
+ 0x2cb3a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬺
+ 0x2cb3b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬻
+ 0x2cb3c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬼
+ 0x2cb3d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬽
+ 0x2cb3e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬾
+ 0x2cb3f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬬿
+ 0x2cb40: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭀
+ 0x2cb41: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭁
+ 0x2cb42: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭂
+ 0x2cb43: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭃
+ 0x2cb44: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭄
+ 0x2cb45: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭅
+ 0x2cb46: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭆
+ 0x2cb47: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭇
+ 0x2cb48: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭈
+ 0x2cb49: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭉
+ 0x2cb4a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭊
+ 0x2cb4b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭋
+ 0x2cb4c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭌
+ 0x2cb4d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭍
+ 0x2cb4e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭎
+ 0x2cb4f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭏
+ 0x2cb50: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭐
+ 0x2cb51: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭑
+ 0x2cb52: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭒
+ 0x2cb53: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭓
+ 0x2cb54: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭔
+ 0x2cb55: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭕
+ 0x2cb56: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭖
+ 0x2cb57: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭗
+ 0x2cb58: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭘
+ 0x2cb59: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭙
+ 0x2cb5a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭚
+ 0x2cb5b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭛
+ 0x2cb5c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭜
+ 0x2cb5d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭝
+ 0x2cb5e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭞
+ 0x2cb5f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭟
+ 0x2cb60: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭠
+ 0x2cb61: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭡
+ 0x2cb62: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭢
+ 0x2cb63: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭣
+ 0x2cb64: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭤
+ 0x2cb65: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭥
+ 0x2cb66: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭦
+ 0x2cb67: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭧
+ 0x2cb68: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭨
+ 0x2cb69: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭩
+ 0x2cb6a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭪
+ 0x2cb6b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭫
+ 0x2cb6c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭬
+ 0x2cb6d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭭
+ 0x2cb6e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭮
+ 0x2cb6f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭯
+ 0x2cb70: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭰
+ 0x2cb71: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭱
+ 0x2cb72: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭲
+ 0x2cb73: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭳
+ 0x2cb74: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭴
+ 0x2cb75: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭵
+ 0x2cb76: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭶
+ 0x2cb77: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭷
+ 0x2cb78: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭸
+ 0x2cb79: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭹
+ 0x2cb7a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭺
+ 0x2cb7b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭻
+ 0x2cb7c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭼
+ 0x2cb7d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭽
+ 0x2cb7e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭾
+ 0x2cb7f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬭿
+ 0x2cb80: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮀
+ 0x2cb81: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮁
+ 0x2cb82: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮂
+ 0x2cb83: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮃
+ 0x2cb84: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮄
+ 0x2cb85: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮅
+ 0x2cb86: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮆
+ 0x2cb87: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮇
+ 0x2cb88: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮈
+ 0x2cb89: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮉
+ 0x2cb8a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮊
+ 0x2cb8b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮋
+ 0x2cb8c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮌
+ 0x2cb8d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮍
+ 0x2cb8e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮎
+ 0x2cb8f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮏
+ 0x2cb90: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮐
+ 0x2cb91: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮑
+ 0x2cb92: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮒
+ 0x2cb93: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮓
+ 0x2cb94: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮔
+ 0x2cb95: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮕
+ 0x2cb96: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮖
+ 0x2cb97: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮗
+ 0x2cb98: "\x06\x06\x06\x06\x06", // 𬮘
+ 0x2cb99: "\x06\x06\x06\x06\x06\x06", // 𬮙
+ 0x2cb9a: "\x06\x06\x06\x06\x06\x06", // 𬮚
+ 0x2cb9b: "\x06\x06\x06\x06\x06\x06", // 𬮛
+ 0x2cb9c: "\x06\x06\x06\x06\x06\x06\x06", // 𬮜
+ 0x2cb9d: "\x06\x06\x06\x06\x06\x06\x06", // 𬮝
+ 0x2cb9e: "\x06\x06\x06\x06\x06\x06\x06", // 𬮞
+ 0x2cb9f: "\x06\x06\x06\x06\x06\x06\x06", // 𬮟
+ 0x2cba0: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮠
+ 0x2cba1: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮡
+ 0x2cba2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮢
+ 0x2cba3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮣
+ 0x2cba4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮤
+ 0x2cba5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮥
+ 0x2cba6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮦
+ 0x2cba7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮧
+ 0x2cba8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮨
+ 0x2cba9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮩
+ 0x2cbaa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮪
+ 0x2cbab: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮫
+ 0x2cbac: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮬
+ 0x2cbad: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮭
+ 0x2cbae: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮮
+ 0x2cbaf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮯
+ 0x2cbb0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮰
+ 0x2cbb1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮱
+ 0x2cbb2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮲
+ 0x2cbb3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮳
+ 0x2cbb4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮴
+ 0x2cbb5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮵
+ 0x2cbb6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮶
+ 0x2cbb7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮷
+ 0x2cbb8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮸
+ 0x2cbb9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮹
+ 0x2cbba: "\x06\x06\x06\x06\x06\x06", // 𬮺
+ 0x2cbbb: "\x06\x06\x06\x06\x06\x06\x06", // 𬮻
+ 0x2cbbc: "\x06\x06\x06\x06\x06\x06\x06", // 𬮼
+ 0x2cbbd: "\x06\x06\x06\x06\x06\x06\x06", // 𬮽
+ 0x2cbbe: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮾
+ 0x2cbbf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬮿
+ 0x2cbc0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯀
+ 0x2cbc1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯁
+ 0x2cbc2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯂
+ 0x2cbc3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯃
+ 0x2cbc4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯄
+ 0x2cbc5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯅
+ 0x2cbc6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯆
+ 0x2cbc7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯇
+ 0x2cbc8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯈
+ 0x2cbc9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯉
+ 0x2cbca: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯊
+ 0x2cbcb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯋
+ 0x2cbcc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯌
+ 0x2cbcd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯍
+ 0x2cbce: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯎
+ 0x2cbcf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯏
+ 0x2cbd0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯐
+ 0x2cbd1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯑
+ 0x2cbd2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯒
+ 0x2cbd3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯓
+ 0x2cbd4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯔
+ 0x2cbd5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯕
+ 0x2cbd6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯖
+ 0x2cbd7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯗
+ 0x2cbd8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯘
+ 0x2cbd9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯙
+ 0x2cbda: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯚
+ 0x2cbdb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯛
+ 0x2cbdc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯜
+ 0x2cbdd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯝
+ 0x2cbde: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯞
+ 0x2cbdf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯟
+ 0x2cbe0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯠
+ 0x2cbe1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯡
+ 0x2cbe2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯢
+ 0x2cbe3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯣
+ 0x2cbe4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯤
+ 0x2cbe5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯥
+ 0x2cbe6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯦
+ 0x2cbe7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯧
+ 0x2cbe8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯨
+ 0x2cbe9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯩
+ 0x2cbea: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯪
+ 0x2cbeb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯫
+ 0x2cbec: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯬
+ 0x2cbed: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯭
+ 0x2cbee: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯮
+ 0x2cbef: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯯
+ 0x2cbf0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯰
+ 0x2cbf1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯱
+ 0x2cbf2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯲
+ 0x2cbf3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯳
+ 0x2cbf4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯴
+ 0x2cbf5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯵
+ 0x2cbf6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯶
+ 0x2cbf7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯷
+ 0x2cbf8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯸
+ 0x2cbf9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯹
+ 0x2cbfa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯺
+ 0x2cbfb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯻
+ 0x2cbfc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯼
+ 0x2cbfd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯽
+ 0x2cbfe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯾
+ 0x2cbff: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬯿
+ 0x2cc00: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰀
+ 0x2cc01: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰁
+ 0x2cc02: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰂
+ 0x2cc03: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰃
+ 0x2cc04: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰄
+ 0x2cc05: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰅
+ 0x2cc06: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰆
+ 0x2cc07: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰇
+ 0x2cc08: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰈
+ 0x2cc09: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰉
+ 0x2cc0a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰊
+ 0x2cc0b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰋
+ 0x2cc0c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰌
+ 0x2cc0d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰍
+ 0x2cc0e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰎
+ 0x2cc0f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰏
+ 0x2cc10: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰐
+ 0x2cc11: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰑
+ 0x2cc12: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰒
+ 0x2cc13: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰓
+ 0x2cc14: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰔
+ 0x2cc15: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰕
+ 0x2cc16: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰖
+ 0x2cc17: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰗
+ 0x2cc18: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰘
+ 0x2cc19: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰙
+ 0x2cc1a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰚
+ 0x2cc1b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰛
+ 0x2cc1c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰜
+ 0x2cc1d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰝
+ 0x2cc1e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰞
+ 0x2cc1f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰟
+ 0x2cc20: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰠
+ 0x2cc21: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰡
+ 0x2cc22: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰢
+ 0x2cc23: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰣
+ 0x2cc24: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰤
+ 0x2cc25: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰥
+ 0x2cc26: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰦
+ 0x2cc27: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰧
+ 0x2cc28: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰨
+ 0x2cc29: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰩
+ 0x2cc2a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰪
+ 0x2cc2b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰫
+ 0x2cc2c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰬
+ 0x2cc2d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰭
+ 0x2cc2e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰮
+ 0x2cc2f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰯
+ 0x2cc30: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰰
+ 0x2cc31: "\x06\x06\x06\x06\x06\x06\x06", // 𬰱
+ 0x2cc32: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰲
+ 0x2cc33: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰳
+ 0x2cc34: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰴
+ 0x2cc35: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰵
+ 0x2cc36: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰶
+ 0x2cc37: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰷
+ 0x2cc38: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰸
+ 0x2cc39: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰹
+ 0x2cc3a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰺
+ 0x2cc3b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰻
+ 0x2cc3c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰼
+ 0x2cc3d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰽
+ 0x2cc3e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰾
+ 0x2cc3f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬰿
+ 0x2cc40: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱀
+ 0x2cc41: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱁
+ 0x2cc42: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱂
+ 0x2cc43: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱃
+ 0x2cc44: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱄
+ 0x2cc45: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱅
+ 0x2cc46: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱆
+ 0x2cc47: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱇
+ 0x2cc48: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱈
+ 0x2cc49: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱉
+ 0x2cc4a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱊
+ 0x2cc4b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱋
+ 0x2cc4c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱌
+ 0x2cc4d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱍
+ 0x2cc4e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱎
+ 0x2cc4f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱏
+ 0x2cc50: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱐
+ 0x2cc51: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱑
+ 0x2cc52: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱒
+ 0x2cc53: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱓
+ 0x2cc54: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱔
+ 0x2cc55: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱕
+ 0x2cc56: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱖
+ 0x2cc57: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱗
+ 0x2cc58: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱘
+ 0x2cc59: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱙
+ 0x2cc5a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱚
+ 0x2cc5b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱛
+ 0x2cc5c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱜
+ 0x2cc5d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱝
+ 0x2cc5e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱞
+ 0x2cc5f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱟
+ 0x2cc60: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱠
+ 0x2cc61: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱡
+ 0x2cc62: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱢
+ 0x2cc63: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱣
+ 0x2cc64: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱤
+ 0x2cc65: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱥
+ 0x2cc66: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱦
+ 0x2cc67: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱧
+ 0x2cc68: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱨
+ 0x2cc69: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱩
+ 0x2cc6a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱪
+ 0x2cc6b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱫
+ 0x2cc6c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱬
+ 0x2cc6d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱭
+ 0x2cc6e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱮
+ 0x2cc6f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱯
+ 0x2cc70: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱰
+ 0x2cc71: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱱
+ 0x2cc72: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱲
+ 0x2cc73: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱳
+ 0x2cc74: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱴
+ 0x2cc75: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱵
+ 0x2cc76: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱶
+ 0x2cc77: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱷
+ 0x2cc78: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱸
+ 0x2cc79: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱹
+ 0x2cc7a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱺
+ 0x2cc7b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱻
+ 0x2cc7c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱼
+ 0x2cc7d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱽
+ 0x2cc7e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱾
+ 0x2cc7f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬱿
+ 0x2cc80: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲀
+ 0x2cc81: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲁
+ 0x2cc82: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲂
+ 0x2cc83: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲃
+ 0x2cc84: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲄
+ 0x2cc85: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲅
+ 0x2cc86: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲆
+ 0x2cc87: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲇
+ 0x2cc88: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲈
+ 0x2cc89: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲉
+ 0x2cc8a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲊
+ 0x2cc8b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲋
+ 0x2cc8c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲌
+ 0x2cc8d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲍
+ 0x2cc8e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲎
+ 0x2cc8f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲏
+ 0x2cc90: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲐
+ 0x2cc91: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲑
+ 0x2cc92: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲒
+ 0x2cc93: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲓
+ 0x2cc94: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲔
+ 0x2cc95: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲕
+ 0x2cc96: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲖
+ 0x2cc97: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲗
+ 0x2cc98: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲘
+ 0x2cc99: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲙
+ 0x2cc9a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲚
+ 0x2cc9b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲛
+ 0x2cc9c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲜
+ 0x2cc9d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲝
+ 0x2cc9e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲞
+ 0x2cc9f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲟
+ 0x2cca0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲠
+ 0x2cca1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲡
+ 0x2cca2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲢
+ 0x2cca3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲣
+ 0x2cca4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲤
+ 0x2cca5: "\x06\x06\x06\x06\x06", // 𬲥
+ 0x2cca6: "\x06\x06\x06\x06\x06", // 𬲦
+ 0x2cca7: "\x06\x06\x06\x06\x06\x06", // 𬲧
+ 0x2cca8: "\x06\x06\x06\x06\x06\x06", // 𬲨
+ 0x2cca9: "\x06\x06\x06\x06\x06\x06\x06", // 𬲩
+ 0x2ccaa: "\x06\x06\x06\x06\x06\x06\x06", // 𬲪
+ 0x2ccab: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲫
+ 0x2ccac: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲬
+ 0x2ccad: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲭
+ 0x2ccae: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲮
+ 0x2ccaf: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲯
+ 0x2ccb0: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲰
+ 0x2ccb1: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲱
+ 0x2ccb2: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲲
+ 0x2ccb3: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲳
+ 0x2ccb4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲴
+ 0x2ccb5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲵
+ 0x2ccb6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲶
+ 0x2ccb7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲷
+ 0x2ccb8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲸
+ 0x2ccb9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲹
+ 0x2ccba: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲺
+ 0x2ccbb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲻
+ 0x2ccbc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲼
+ 0x2ccbd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲽
+ 0x2ccbe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲾
+ 0x2ccbf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬲿
+ 0x2ccc0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳀
+ 0x2ccc1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳁
+ 0x2ccc2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳂
+ 0x2ccc3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳃
+ 0x2ccc4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳄
+ 0x2ccc5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳅
+ 0x2ccc6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳆
+ 0x2ccc7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳇
+ 0x2ccc8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳈
+ 0x2ccc9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳉
+ 0x2ccca: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳊
+ 0x2cccb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳋
+ 0x2cccc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳌
+ 0x2cccd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳍
+ 0x2ccce: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳎
+ 0x2cccf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳏
+ 0x2ccd0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳐
+ 0x2ccd1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳑
+ 0x2ccd2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳒
+ 0x2ccd3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳓
+ 0x2ccd4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳔
+ 0x2ccd5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳕
+ 0x2ccd6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳖
+ 0x2ccd7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳗
+ 0x2ccd8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳘
+ 0x2ccd9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳙
+ 0x2ccda: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳚
+ 0x2ccdb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳛
+ 0x2ccdc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳜
+ 0x2ccdd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳝
+ 0x2ccde: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳞
+ 0x2ccdf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳟
+ 0x2cce0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳠
+ 0x2cce1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳡
+ 0x2cce2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳢
+ 0x2cce3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳣
+ 0x2cce4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳤
+ 0x2cce5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳥
+ 0x2cce6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳦
+ 0x2cce7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳧
+ 0x2cce8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳨
+ 0x2cce9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳩
+ 0x2ccea: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳪
+ 0x2cceb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳫
+ 0x2ccec: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳬
+ 0x2cced: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳭
+ 0x2ccee: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳮
+ 0x2ccef: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳯
+ 0x2ccf0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳰
+ 0x2ccf1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳱
+ 0x2ccf2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳲
+ 0x2ccf3: "\x06\x06\x06\x06\x06\x06\x06", // 𬳳
+ 0x2ccf4: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳴
+ 0x2ccf5: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳵
+ 0x2ccf6: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳶
+ 0x2ccf7: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳷
+ 0x2ccf8: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳸
+ 0x2ccf9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳹
+ 0x2ccfa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳺
+ 0x2ccfb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳻
+ 0x2ccfc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳼
+ 0x2ccfd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳽
+ 0x2ccfe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳾
+ 0x2ccff: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬳿
+ 0x2cd00: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴀
+ 0x2cd01: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴁
+ 0x2cd02: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴂
+ 0x2cd03: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴃
+ 0x2cd04: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴄
+ 0x2cd05: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴅
+ 0x2cd06: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴆
+ 0x2cd07: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴇
+ 0x2cd08: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴈
+ 0x2cd09: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴉
+ 0x2cd0a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴊
+ 0x2cd0b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴋
+ 0x2cd0c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴌
+ 0x2cd0d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴍
+ 0x2cd0e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴎
+ 0x2cd0f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴏
+ 0x2cd10: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴐
+ 0x2cd11: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴑
+ 0x2cd12: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴒
+ 0x2cd13: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴓
+ 0x2cd14: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴔
+ 0x2cd15: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴕
+ 0x2cd16: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴖
+ 0x2cd17: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴗
+ 0x2cd18: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴘
+ 0x2cd19: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴙
+ 0x2cd1a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴚
+ 0x2cd1b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴛
+ 0x2cd1c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴜
+ 0x2cd1d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴝
+ 0x2cd1e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴞
+ 0x2cd1f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴟
+ 0x2cd20: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴠
+ 0x2cd21: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴡
+ 0x2cd22: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴢
+ 0x2cd23: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴣
+ 0x2cd24: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴤
+ 0x2cd25: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴥
+ 0x2cd26: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴦
+ 0x2cd27: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴧
+ 0x2cd28: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴨
+ 0x2cd29: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴩
+ 0x2cd2a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴪
+ 0x2cd2b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴫
+ 0x2cd2c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴬
+ 0x2cd2d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴭
+ 0x2cd2e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴮
+ 0x2cd2f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴯
+ 0x2cd30: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴰
+ 0x2cd31: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴱
+ 0x2cd32: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴲
+ 0x2cd33: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴳
+ 0x2cd34: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴴
+ 0x2cd35: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴵
+ 0x2cd36: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴶
+ 0x2cd37: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴷
+ 0x2cd38: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴸
+ 0x2cd39: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴹
+ 0x2cd3a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴺
+ 0x2cd3b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴻
+ 0x2cd3c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴼
+ 0x2cd3d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴽
+ 0x2cd3e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴾
+ 0x2cd3f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬴿
+ 0x2cd40: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵀
+ 0x2cd41: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵁
+ 0x2cd42: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵂
+ 0x2cd43: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵃
+ 0x2cd44: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵄
+ 0x2cd45: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵅
+ 0x2cd46: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵆
+ 0x2cd47: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵇
+ 0x2cd48: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵈
+ 0x2cd49: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵉
+ 0x2cd4a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵊
+ 0x2cd4b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵋
+ 0x2cd4c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵌
+ 0x2cd4d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵍
+ 0x2cd4e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵎
+ 0x2cd4f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵏
+ 0x2cd50: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵐
+ 0x2cd51: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵑
+ 0x2cd52: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵒
+ 0x2cd53: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵓
+ 0x2cd54: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵔
+ 0x2cd55: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵕
+ 0x2cd56: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵖
+ 0x2cd57: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵗
+ 0x2cd58: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵘
+ 0x2cd59: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵙
+ 0x2cd5a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵚
+ 0x2cd5b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵛
+ 0x2cd5c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵜
+ 0x2cd5d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵝
+ 0x2cd5e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵞
+ 0x2cd5f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵟
+ 0x2cd60: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵠
+ 0x2cd61: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵡
+ 0x2cd62: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵢
+ 0x2cd63: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵣
+ 0x2cd64: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵤
+ 0x2cd65: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵥
+ 0x2cd66: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵦
+ 0x2cd67: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵧
+ 0x2cd68: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵨
+ 0x2cd69: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵩
+ 0x2cd6a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵪
+ 0x2cd6b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵫
+ 0x2cd6c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵬
+ 0x2cd6d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵭
+ 0x2cd6e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵮
+ 0x2cd6f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵯
+ 0x2cd70: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵰
+ 0x2cd71: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵱
+ 0x2cd72: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵲
+ 0x2cd73: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵳
+ 0x2cd74: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵴
+ 0x2cd75: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵵
+ 0x2cd76: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵶
+ 0x2cd77: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵷
+ 0x2cd78: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵸
+ 0x2cd79: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵹
+ 0x2cd7a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵺
+ 0x2cd7b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵻
+ 0x2cd7c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵼
+ 0x2cd7d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵽
+ 0x2cd7e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵾
+ 0x2cd7f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬵿
+ 0x2cd80: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶀
+ 0x2cd81: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶁
+ 0x2cd82: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶂
+ 0x2cd83: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶃
+ 0x2cd84: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶄
+ 0x2cd85: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶅
+ 0x2cd86: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶆
+ 0x2cd87: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶇
+ 0x2cd88: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶈
+ 0x2cd89: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶉
+ 0x2cd8a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶊
+ 0x2cd8b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶋
+ 0x2cd8c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶌
+ 0x2cd8d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶍
+ 0x2cd8e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶎
+ 0x2cd8f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶏
+ 0x2cd90: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶐
+ 0x2cd91: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶑
+ 0x2cd92: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶒
+ 0x2cd93: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶓
+ 0x2cd94: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶔
+ 0x2cd95: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶕
+ 0x2cd96: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶖
+ 0x2cd97: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶗
+ 0x2cd98: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶘
+ 0x2cd99: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶙
+ 0x2cd9a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶚
+ 0x2cd9b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶛
+ 0x2cd9c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶜
+ 0x2cd9d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶝
+ 0x2cd9e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶞
+ 0x2cd9f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶟
+ 0x2cda0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶠
+ 0x2cda1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶡
+ 0x2cda2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶢
+ 0x2cda3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶣
+ 0x2cda4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶤
+ 0x2cda5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶥
+ 0x2cda6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶦
+ 0x2cda7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶧
+ 0x2cda8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶨
+ 0x2cda9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶩
+ 0x2cdaa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶪
+ 0x2cdab: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶫
+ 0x2cdac: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶬
+ 0x2cdad: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶭
+ 0x2cdae: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶮
+ 0x2cdaf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶯
+ 0x2cdb0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶰
+ 0x2cdb1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶱
+ 0x2cdb2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶲
+ 0x2cdb3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶳
+ 0x2cdb4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶴
+ 0x2cdb5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶵
+ 0x2cdb6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶶
+ 0x2cdb7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶷
+ 0x2cdb8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶸
+ 0x2cdb9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶹
+ 0x2cdba: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶺
+ 0x2cdbb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶻
+ 0x2cdbc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶼
+ 0x2cdbd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶽
+ 0x2cdbe: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶾
+ 0x2cdbf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬶿
+ 0x2cdc0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷀
+ 0x2cdc1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷁
+ 0x2cdc2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷂
+ 0x2cdc3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷃
+ 0x2cdc4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷄
+ 0x2cdc5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷅
+ 0x2cdc6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷆
+ 0x2cdc7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷇
+ 0x2cdc8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷈
+ 0x2cdc9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷉
+ 0x2cdca: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷊
+ 0x2cdcb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷋
+ 0x2cdcc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷌
+ 0x2cdcd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷍
+ 0x2cdce: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷎
+ 0x2cdcf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷏
+ 0x2cdd0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷐
+ 0x2cdd1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷑
+ 0x2cdd2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷒
+ 0x2cdd3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷓
+ 0x2cdd4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷔
+ 0x2cdd5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷕
+ 0x2cdd6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷖
+ 0x2cdd7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷗
+ 0x2cdd8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷘
+ 0x2cdd9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷙
+ 0x2cdda: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷚
+ 0x2cddb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷛
+ 0x2cddc: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷜
+ 0x2cddd: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷝
+ 0x2cdde: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷞
+ 0x2cddf: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷟
+ 0x2cde0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷠
+ 0x2cde1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷡
+ 0x2cde2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷢
+ 0x2cde3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷣
+ 0x2cde4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷤
+ 0x2cde5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷥
+ 0x2cde6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷦
+ 0x2cde7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷧
+ 0x2cde8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷨
+ 0x2cde9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷩
+ 0x2cdea: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷪
+ 0x2cdeb: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷫
+ 0x2cdec: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷬
+ 0x2cded: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷭
+ 0x2cdee: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷮
+ 0x2cdef: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷯
+ 0x2cdf0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷰
+ 0x2cdf1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷱
+ 0x2cdf2: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷲
+ 0x2cdf3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷳
+ 0x2cdf4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷴
+ 0x2cdf5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷵
+ 0x2cdf6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷶
+ 0x2cdf7: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷷
+ 0x2cdf8: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷸
+ 0x2cdf9: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷹
+ 0x2cdfa: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷺
+ 0x2cdfb: "\x06\x06\x06\x06\x06\x06", // 𬷻
+ 0x2cdfc: "\x06\x06\x06\x06\x06\x06\x06", // 𬷼
+ 0x2cdfd: "\x06\x06\x06\x06\x06\x06\x06", // 𬷽
+ 0x2cdfe: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷾
+ 0x2cdff: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬷿
+ 0x2ce00: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸀
+ 0x2ce01: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸁
+ 0x2ce02: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸂
+ 0x2ce03: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸃
+ 0x2ce04: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸄
+ 0x2ce05: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸅
+ 0x2ce06: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸆
+ 0x2ce07: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸇
+ 0x2ce08: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸈
+ 0x2ce09: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸉
+ 0x2ce0a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸊
+ 0x2ce0b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸋
+ 0x2ce0c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸌
+ 0x2ce0d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸍
+ 0x2ce0e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸎
+ 0x2ce0f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸏
+ 0x2ce10: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸐
+ 0x2ce11: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸑
+ 0x2ce12: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸒
+ 0x2ce13: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸓
+ 0x2ce14: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸔
+ 0x2ce15: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸕
+ 0x2ce16: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸖
+ 0x2ce17: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸗
+ 0x2ce18: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸘
+ 0x2ce19: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸙
+ 0x2ce1a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸚
+ 0x2ce1b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸛
+ 0x2ce1c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸜
+ 0x2ce1d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸝
+ 0x2ce1e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸞
+ 0x2ce1f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸟
+ 0x2ce20: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸠
+ 0x2ce21: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸡
+ 0x2ce22: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸢
+ 0x2ce23: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸣
+ 0x2ce24: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸤
+ 0x2ce25: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸥
+ 0x2ce26: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸦
+ 0x2ce27: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸧
+ 0x2ce28: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸨
+ 0x2ce29: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸩
+ 0x2ce2a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸪
+ 0x2ce2b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸫
+ 0x2ce2c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸬
+ 0x2ce2d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸭
+ 0x2ce2e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸮
+ 0x2ce2f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸯
+ 0x2ce30: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸰
+ 0x2ce31: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸱
+ 0x2ce32: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸲
+ 0x2ce33: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸳
+ 0x2ce34: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸴
+ 0x2ce35: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸵
+ 0x2ce36: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸶
+ 0x2ce37: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸷
+ 0x2ce38: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸸
+ 0x2ce39: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸹
+ 0x2ce3a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸺
+ 0x2ce3b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸻
+ 0x2ce3c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸼
+ 0x2ce3d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸽
+ 0x2ce3e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸾
+ 0x2ce3f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬸿
+ 0x2ce40: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹀
+ 0x2ce41: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹁
+ 0x2ce42: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹂
+ 0x2ce43: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹃
+ 0x2ce44: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹄
+ 0x2ce45: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹅
+ 0x2ce46: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹆
+ 0x2ce47: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹇
+ 0x2ce48: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹈
+ 0x2ce49: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹉
+ 0x2ce4a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹊
+ 0x2ce4b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹋
+ 0x2ce4c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹌
+ 0x2ce4d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹍
+ 0x2ce4e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹎
+ 0x2ce4f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹏
+ 0x2ce50: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹐
+ 0x2ce51: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹑
+ 0x2ce52: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹒
+ 0x2ce53: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹓
+ 0x2ce54: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹔
+ 0x2ce55: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹕
+ 0x2ce56: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹖
+ 0x2ce57: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹗
+ 0x2ce58: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹘
+ 0x2ce59: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹙
+ 0x2ce5a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹚
+ 0x2ce5b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹛
+ 0x2ce5c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹜
+ 0x2ce5d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹝
+ 0x2ce5e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹞
+ 0x2ce5f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹟
+ 0x2ce60: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹠
+ 0x2ce61: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹡
+ 0x2ce62: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹢
+ 0x2ce63: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹣
+ 0x2ce64: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹤
+ 0x2ce65: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹥
+ 0x2ce66: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹦
+ 0x2ce67: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹧
+ 0x2ce68: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹨
+ 0x2ce69: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹩
+ 0x2ce6a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹪
+ 0x2ce6b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹫
+ 0x2ce6c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹬
+ 0x2ce6d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹭
+ 0x2ce6e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹮
+ 0x2ce6f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹯
+ 0x2ce70: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹰
+ 0x2ce71: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹱
+ 0x2ce72: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹲
+ 0x2ce73: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹳
+ 0x2ce74: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹴
+ 0x2ce75: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹵
+ 0x2ce76: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹶
+ 0x2ce77: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹷
+ 0x2ce78: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹸
+ 0x2ce79: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹹
+ 0x2ce7a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹺
+ 0x2ce7b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹻
+ 0x2ce7c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹼
+ 0x2ce7d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹽
+ 0x2ce7e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹾
+ 0x2ce7f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬹿
+ 0x2ce80: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬺀
+ 0x2ce81: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬺁
+ 0x2ce82: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬺂
+ 0x2ce83: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬺃
+ 0x2ce84: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬺄
+ 0x2ce85: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬺅
+ 0x2ce86: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬺆
+ 0x2ce87: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬺇
+ 0x2ce88: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬺈
+ 0x2ce89: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬺉
+ 0x2ce8a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬺊
+ 0x2ce8b: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬺋
+ 0x2ce8c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬺌
+ 0x2ce8d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬺍
+ 0x2ce8e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬺎
+ 0x2ce8f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬺏
+ 0x2ce90: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬺐
+ 0x2ce91: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬺑
+ 0x2ce92: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬺒
+ 0x2ce93: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬺓
+ 0x2ce94: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬺔
+ 0x2ce95: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬺕
+ 0x2ce96: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬺖
+ 0x2ce97: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬺗
+ 0x2ce98: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬺘
+ 0x2ce99: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬺙
+ 0x2ce9a: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬺚
+ 0x2ce9b: "\x06\x06\x06\x06\x06\x06\x06\x06", // 𬺛
+ 0x2ce9c: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬺜
+ 0x2ce9d: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬺝
+ 0x2ce9e: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬺞
+ 0x2ce9f: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬺟
+ 0x2cea0: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬺠
+ 0x2cea1: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 𬺡
+ 0x2f9b3: "\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 虐
+ 0x2f9b4: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 虜
+ 0x2f9b5: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 虧
+ 0x2f9b6: "\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06", // 虩
+}
+
+const MAX_STROKE = 64
diff --git a/indexing/zhmakeindex/CJK/sunwb_strokeorder.txt b/indexing/zhmakeindex/CJK/sunwb_strokeorder.txt
new file mode 100644
index 0000000000..c264cfece7
--- /dev/null
+++ b/indexing/zhmakeindex/CJK/sunwb_strokeorder.txt
@@ -0,0 +1,70301 @@
+# 海峰五笔码表中的笔顺表
+# 原始数据为 http://okuc.net/software/sunwb_mb.rar
+# 本表由原始数据中 GBK、CJKa、CJKb 三部分数据笔顺合并整理而成
+# 刘海洋
+〇 5
+㐀 21211
+㐁 125341
+㐂 151515
+㐃 542
+㐄 152
+㐅 34
+㐆 335115
+㐇 355
+㐈 345
+㐉 125
+㐊 1215
+㐋 1215
+㐌 31525
+㐍 34435
+㐎 41345
+㐏 12515
+㐐 531545
+㐑 354445
+㐒 532515
+㐓 125125
+㐔 412515
+㐕 251215
+㐖 1212515
+㐗 1213355
+㐘 4312345
+㐙 12514315
+㐚 12512515
+㐛 32132515
+㐜 124134435
+㐝 121352515
+㐞 122111345
+㐟 211121115
+㐠 344352155
+㐡 35132522134
+㐢 44134435215
+㐣 41312511125
+㐤 351225111134
+㐥 3411243125111535
+㐦 321115251113431125
+㐧 4523
+㐨 54525452
+㐩 22322232
+㐪 415234
+㐫 413452
+㐬 4154325
+㐭 41252511
+㐮 4134112213534
+㐯 41251251312342511
+㐰 32251
+㐱 34333
+㐲 32134
+㐳 32135
+㐴 32354
+㐵 32112
+㐶 32515
+㐷 32551
+㐸 323534
+㐹 323115
+㐺 323234
+㐻 322534
+㐼 323132
+㐽 323534
+㐾 321135
+㐿 323112
+㑀 321344
+㑁 3252252
+㑂 3212534
+㑃 3255453
+㑄 3255414
+㑅 3231211
+㑆 3225135
+㑇 3235511
+㑈 3215234
+㑉 32351354
+㑊 32413234
+㑋 32251221
+㑌 32111215
+㑍 32111234
+㑎 32555252
+㑏 32445124
+㑐 32211234
+㑑 32325111
+㑒 34125134
+㑓 32541354
+㑔 32132534
+㑕 32252354
+㑖 32322512
+㑗 323251113
+㑘 321132534
+㑙 321221115
+㑚 32511352
+㑛 321251234
+㑜 321213312
+㑝 321121132
+㑞 324334132
+㑟 323212134
+㑠 322254121
+㑡 325115452
+㑢 321215452
+㑣 3212341234
+㑤 3212225121
+㑥 3225113533
+㑦 324511344
+㑧 3231234521
+㑨 3225131134
+㑩 3225221354
+㑪 3241343211
+㑫 3234454544
+㑬 3253112251
+㑭 3225121132
+㑮 32451251112
+㑯 32132511134
+㑰 32551353334
+㑱 32545231234
+㑲 32122543112
+㑳 323552335523
+㑴 325114525254
+㑵 324134131134
+㑶 323115431234
+㑷 325425113535
+㑸 321225112512
+㑹 341251212511
+㑺 323241112153
+㑻 3244545434252
+㑼 3225121354251
+㑽 3224345251121
+㑾 3235444111251
+㑿 3255525111234
+㒀 3241432512251
+㒁 322512134112
+㒂 3212212132511
+㒃 32111251113454
+㒄 32354413444444
+㒅 32413543543534
+㒆 32341251541541
+㒇 32311222214444
+㒈 3251221113134
+㒉 32243452511234
+㒊 3253421215342121
+㒋 32122111343312
+㒌 32433443344535
+㒍 32545454554234
+㒎 32113421112111
+㒏 32445112213444
+㒐 32314314352511
+㒑 321441324111215
+㒒 322243143111234
+㒓 32121431112454
+㒔 322522135251214
+㒕 324155332411121
+㒖 32122251125214
+㒗 321221145154121
+㒘 321251255441431
+㒙 3255444432511252
+㒚 3234431215114544
+㒛 3254154132411121
+㒜 323211152511134
+㒝 3212225221134534
+㒞 32252324111212525
+㒟 324112112544443534
+㒠 322135454211121111
+㒡 3234433112523554234
+㒢 3234125125125125122
+㒣 3241332324111214544
+㒤 32122111122111122111
+㒥 32111221112521251431
+㒦 32251212512125121121
+㒧 32413452255432411121
+㒨 323211325341511134515
+㒩 32551353334251214251214
+㒪 3412512512512521211353334
+㒫 121135
+㒬 11351121
+㒭 2513525135
+㒮 11351353334
+㒯 2431351221122112
+㒰 34121
+㒱 34354
+㒲 342511
+㒳 2523434
+㒴 3452252
+㒵 3251134
+㒶 3432511
+㒷 2534134
+㒸 431353334
+㒹 12251111341225111134
+㒺 25431345
+㒻 25112511135
+㒼 12212523434
+㒽 251143113455
+㒾 2511415331525
+㒿 2511413452255432411121
+㓀 4524
+㓁 4534
+㓂 451135531
+㓃 454111251315
+㓄 545454343334535
+㓅 4112
+㓆 413435
+㓇 413134
+㓈 4113251
+㓉 41312251
+㓊 41251251
+㓋 41122134
+㓌 41341121
+㓍 41415435
+㓎 415114554
+㓏 412534251
+㓐 4112134121
+㓑 4112143112
+㓒 4115342444
+㓓 41122543112
+㓔 413251113124
+㓕 411314334534
+㓖 412511122112
+㓗 41111253554234
+㓘 35135411214
+㓙 413452
+㓚 12122
+㓛 12153
+㓜 55453
+㓝 113222
+㓞 111253
+㓟 5325422
+㓠 2125122
+㓡 31125222
+㓢 35425122
+㓣 34125122
+㓤 12125122
+㓥 24351122
+㓦 13251122
+㓧 344525122
+㓨 134343422
+㓩 353511222
+㓪 45115453
+㓫 134113222
+㓬 4311345322
+㓭 25113534522
+㓮 3512125122
+㓯 5552512122
+㓰 1251215222
+㓱 34125112222
+㓲 45132512222
+㓳 25111213422
+㓴 13252213422
+㓵 25125111522
+㓶 11125313422
+㓷 325111123422
+㓸 551551512122
+㓹 134334433422
+㓺 215315413422
+㓻 252211212122
+㓼 1234342413422
+㓽 2524451123422
+㓾 51324134311222
+㓿 31234342413422
+㔀 25114125123422
+㔁 54334125143122
+㔂 43123435415211
+㔃 55444435521553
+㔄 12522143123422
+㔅 511232115521222
+㔆 15351535251122
+㔇 54334515345422
+㔈 1222111211122
+㔉 51332512521422
+㔊 412525112511122
+㔋 1251253142522122
+㔌 1221115432333422
+㔍 3143142511113222
+㔎 523325151414311253
+㔏 13251132511325122
+㔐 314314121112111122
+㔑 122325151414311253
+㔒 25232411121253425122
+㔓 31253
+㔔 532515
+㔕 311553
+㔖 532515
+㔗 5153253
+㔘 5225253
+㔙 43113253
+㔚 31225153
+㔛 12125153
+㔜 344352153
+㔝 1252343453
+㔞 3122113553
+㔟 3112135453
+㔠 25113534553
+㔡 325341153553
+㔢 55444435521553
+㔣 25121251212512153
+㔤 44534312342512153
+㔥 25221542511353553
+㔦 4311134451153453
+㔧 215315251212522153
+㔨 35211352511
+㔩 351215425221
+㔪 3521253444441
+㔫 1335
+㔬 35251112
+㔭 15251112134
+㔮 122125111345425113535
+㔯 1352515
+㔰 1354245
+㔱 1321511345
+㔲 134451154355
+㔳 134451154355
+㔴 1251211221345
+㔵 15155151221345
+㔶 14143125111235412125111345
+㔷 1125345
+㔸 133215315355
+㔹 1253
+㔺 121512
+㔻 132412
+㔼 1213241112112
+㔽 21252511
+㔾 55
+㔿 152
+㕀 2512155
+㕁 34135452
+㕂 233445
+㕃 131132
+㕄 131554
+㕅 1325112
+㕆 1312251
+㕇 1341431
+㕈 13413534
+㕉 13341251
+㕊 131251124
+㕋 1334112431
+㕌 1325111124
+㕍 1332411121
+㕎 131215425221
+㕏 1312514314412
+㕐 13321511354444
+㕑 13121251431124
+㕒 134311213121534
+㕓 13254312114444121
+㕔 131221111121132522114544
+㕕 5454
+㕖 5454541234
+㕗 43112135454
+㕘 54545434234
+㕙 543435435251354
+㕚 5444
+㕛 5454
+㕜 251254
+㕝 1225154
+㕞 51325254
+㕟 212512254
+㕠 413241112154
+㕡 21451343425154
+㕢 21451251113454
+㕣 34251
+㕤 25135
+㕥 25134
+㕦 251134
+㕧 251513
+㕨 251354
+㕩 2511112
+㕪 2514535
+㕫 2514153
+㕬 2513454
+㕭 2513134
+㕮 2513434
+㕯 2534251
+㕰 2513115
+㕱 2511354
+㕲 2511234
+㕳 2513452
+㕴 2514535
+㕵 2511121
+㕶 2511251
+㕷 25132511
+㕸 25141431
+㕹 25113544
+㕺 25125115
+㕻 41324251
+㕼 25135345
+㕽 2515434
+㕾 23425135
+㕿 31234251
+㖀 251511112
+㖁 251341354
+㖂 251251153
+㖃 251331251
+㖄 251434242
+㖅 251131534
+㖆 251251221
+㖇 251132522
+㖈 121335251
+㖉 251342121
+㖊 251511124
+㖋 343225135
+㖌 323525135
+㖍 441225135
+㖎 251353432
+㖏 2512511121
+㖐 2512515113
+㖑 2511132534
+㖒 2514351523
+㖓 2513541112
+㖔 2511134251
+㖕 2514143112
+㖖 4143112251
+㖗 2512523445
+㖘 2511311534
+㖙 5325125135
+㖚 3212425135
+㖛 1225125135
+㖜 4125125135
+㖝 1123425135
+㖞 2512512534
+㖟 25134434554
+㖠 25113411234
+㖡 25141323544
+㖢 251413212135
+㖣 25141431251
+㖤 25152413452
+㖥 25125312341
+㖦 25112511234
+㖧 25135152511
+㖨 25151124134
+㖩 25112211154
+㖪 25112511534
+㖫 25112134354
+㖬 25132151154
+㖭 25111342444
+㖮 25134125122
+㖯 25125125135
+㖰 25135251251
+㖱 41323544251
+㖲 53125125135
+㖳 44153125135
+㖴 2511223533
+㖵 25125111134
+㖶 251125221121
+㖷 251251112134
+㖸 251215315151
+㖹 251345325221
+㖺 251111342511
+㖻 251545231234
+㖼 251122111234
+㖽 251132511134
+㖾 251251431523
+㖿 25112211152
+㗀 251255455452
+㗁 251251251115
+㗂 251234325111
+㗃 251515152511
+㗄 251252214153
+㗅 251122513511
+㗆 251122125112
+㗇 251512115154
+㗈 251542511253
+㗉 111253354251
+㗊 251251251251
+㗋 251351331134
+㗌 251445154121
+㗍 251312342511
+㗎 251532511234
+㗏 251132412121
+㗐 251134425221
+㗑 251311311112
+㗒 251412513534
+㗓 251325151454
+㗔 2512153154134
+㗕 2511122125211
+㗖 2513443321511
+㗗 2515332511312
+㗘 2511251124124
+㗙 2513552335523
+㗚 2511252211234
+㗛 2513143143134
+㗜 2514155425121
+㗝 2514311214444
+㗞 2511325153254
+㗟 4414112125135
+㗠 5315425125135
+㗡 122325325135
+㗢 25131251121153
+㗣 25112213545252
+㗤 13211234534251
+㗥 2514125152152
+㗦 25112211135352
+㗧 25144534154121
+㗨 13113453554251
+㗩 25154154132511
+㗪 251212135554234
+㗫 25135445411234
+㗬 24345251354354
+㗭 25134312344544
+㗮 35425141351134
+㗯 1213251125135
+㗰 25133234342134
+㗱 251324111211234
+㗲 251511121251211
+㗳 251314314341251
+㗴 251511225113511
+㗵 251433443343534
+㗶 251543345153554
+㗷 251445112212534
+㗸 251332311252112
+㗹 251324111214544
+㗺 251113421112111
+㗻 25125525251454
+㗼 2512243143111234
+㗽 55345115452251
+㗾 2511221251123235
+㗿 2515112251112512
+㘀 251321511431234
+㘁 2512522112143112
+㘂 2514315545544544
+㘃 251122132514544
+㘄 2511234252214153
+㘅 2513323411243112
+㘆 25112125145154121
+㘇 25143344334451234
+㘈 25135311345452134
+㘉 2513143145115452
+㘊 251145244444111251
+㘋 251125125542511134
+㘌 251215315135333422
+㘍 251234324111211534
+㘎 25142551221113134
+㘏 43132511145425135
+㘐 251121125444413434
+㘑 2511211123451124134
+㘒 3123431251121125135
+㘓 25151122511125431234
+㘔 25144511221342511134
+㘕 25112212512531425221
+㘖 251414313333132511134
+㘗 251251112511132411121
+㘘 4111251554444554444251
+㘙 2512512511351221113134
+㘚 2515112251151221113134
+㘛 2513412514143125111515111
+㘜 41112513241112132411121251
+㘝 25541
+㘞 25531
+㘟 251321
+㘠 25454341
+㘡 25251121
+㘢 252431351
+㘣 2525125111
+㘤 254413121552121
+㘥 25344331125235542341
+㘦 12153
+㘧 1215452
+㘨 1212534
+㘩 1211535
+㘪 1213115
+㘫 1211132
+㘬 1213554
+㘭 1215545
+㘮 1215134
+㘯 1213153
+㘰 1214412
+㘱 12125211
+㘲 12151335
+㘳 21135121
+㘴 25134121
+㘵 12113252
+㘶 354152121
+㘷 12112234
+㘸 135435121
+㘹 212135121
+㘺 121321534
+㘻 121251341
+㘼 121121315
+㘽 121121534
+㘾 121445112
+㘿 1212511121
+㙀 1214453435
+㙁 1213155414
+㙂 1214325135
+㙃 1213212134
+㙄 1211535121
+㙅 1212511234
+㙆 1214451354
+㙇 12113533434
+㙈 12121531535
+㙉 12125122134
+㙊 12112111534
+㙋 12112211134
+㙌 12151123234
+㙍 12154545454
+㙎 121131531534
+㙏 121312511354
+㙐 121252132522
+㙑 325125214121
+㙒 251215452121
+㙓 121121121121
+㙔 121521251152
+㙕 121251212511
+㙖 121325125214
+㙗 121251211534
+㙘 121125221531
+㙙 4411353334121
+㙚 1214311213112
+㙛 1211251124124
+㙜 4125125251121
+㙝 1215353532511
+㙞 1213251111234
+㙟 1214511543511
+㙠 13113453554121
+㙡 12133234342134
+㙢 12112212523434
+㙣 12151512111534
+㙤 12121531534312
+㙥 12141342513534
+㙦 34112344412121
+㙧 121121525125121
+㙨 121554554134534
+㙩 121134432511234
+㙪 121121451251431
+㙫 121324111211234
+㙬 134342341344121
+㙭 121134315233534
+㙮 121314314341251
+㙯 121341213541154
+㙰 3535112533112121
+㙱 2511521531535121
+㙲 1214155332411121
+㙳 1211312515344544
+㙴 1213513344111251
+㙵 1214125125251121
+㙶 4125124345251121
+㙷 12125115545544444
+㙸 12132224314311134
+㙹 1211222522145354
+㙺 12112512125111345
+㙻 121413251121134121
+㙼 121251212512125121
+㙽 121113251113251134
+㙾 1213211343451145521
+㙿 1214311213123453534
+㚀 12121531512514311534
+㚁 121121121135121121121135
+㚂 1211251245251251112213534
+㚃 121453452431
+㚄 121452512152134
+㚅 354131121
+㚆 412511354
+㚇 345234354
+㚈 35412
+㚉 53354354
+㚊 354354415334
+㚋 35435435121251
+㚌 35435425111234
+㚍 354354251212511134
+㚎 13452
+㚏 134132
+㚐 134134
+㚑 511134
+㚒 1343434
+㚓 1341234
+㚔 13443112
+㚕 13451532
+㚖 32511134
+㚗 13425111
+㚘 11341134
+㚙 53251134
+㚚 134354251
+㚛 134352511
+㚜 13412511534
+㚝 13432121121
+㚞 13412341234
+㚟 352511535134
+㚠 1344311214444
+㚡 1341251213412512
+㚢 34531
+㚣 531531
+㚤 531154
+㚥 531112
+㚦 531132
+㚧 531413
+㚨 531512
+㚩 5312511
+㚪 5313115
+㚫 531354
+㚬 5313541
+㚭 5311354
+㚮 5314535
+㚯 5313534
+㚰 53113241
+㚱 53132121
+㚲 53121251
+㚳 53153251
+㚴 53113252
+㚵 53135444
+㚶 53125151
+㚷 53134234
+㚸 53151251
+㚹 53135352
+㚺 53153521
+㚻 25121531
+㚼 53125121
+㚽 12115531
+㚾 53125135
+㚿 53135515
+㛀 53135511
+㛁 53114312
+㛂 531335215
+㛃 112153531
+㛄 531413534
+㛅 531122111
+㛆 531531234
+㛇 531413121
+㛈 531121315
+㛉 531125351
+㛊 531351234
+㛋 531342444
+㛌 531543112
+㛍 5311343434
+㛎 531251251
+㛏 5311243344
+㛐 5311251134
+㛑 2135454531
+㛒 5311251431
+㛓 5313413252
+㛔 5313541112
+㛕 5312515215
+㛖 5315434354
+㛗 5313434121
+㛘 5311245521
+㛙 5314143112
+㛚 5315425112
+㛛 5313251113
+㛜 3223134531
+㛝 5312511134
+㛞 5311121132
+㛟 5313525134
+㛠 5314252511
+㛡 5314451135
+㛢 5313123453
+㛣 5312512534
+㛤 5311254254
+㛥 53125342511
+㛦 53112341234
+㛧 53125213251
+㛨 5314311135
+㛩 53141542511
+㛪 53113425115
+㛫 53125113533
+㛬 53112134121
+㛭 53112212511
+㛮 531445433454
+㛯 531352513553
+㛰 531515152511
+㛱 531251211534
+㛲 531132511134
+㛳 414345252531
+㛴 531555325341
+㛵 531344325211
+㛶 531252134334
+㛷 312341354531
+㛸 531121251431
+㛹 531321251134
+㛺 531414312511
+㛻 531134121121
+㛼 531312321511
+㛽 531445431234
+㛾 531131251534
+㛿 531122245252
+㜀 531123425111
+㜁 531123425111
+㜂 121121124531
+㜃 531324111251
+㜄 531353251214
+㜅 5314155425121
+㜆 531431234454
+㜇 5311211214544
+㜈 5452335453531
+㜉 5315552515215
+㜊 5315131221534
+㜋 5314313425221
+㜌 1214515313554
+㜍 5314135112251
+㜎 5313443554134
+㜏 5312512511134
+㜐 5312521251431
+㜑 4411251124531
+㜒 531321511132
+㜓 531122341251
+㜔 5314143125135
+㜕 5311251112454
+㜖 53112512212511
+㜗 53154545434333
+㜘 53121531525111
+㜙 5314135221535
+㜚 53144532132511
+㜛 53112511123534
+㜜 5311121533134
+㜝 53134451253511
+㜞 12511123312531
+㜟 53151221113134
+㜠 53125232411121
+㜡 53133234342134
+㜢 53125112512531
+㜣 531354413444444
+㜤 531125221251112
+㜥 531252212511134
+㜦 531511121251124
+㜧 531134315233534
+㜨 531513241343112
+㜩 531325431234134
+㜪 4143112343312531
+㜫 5313322521353134
+㜬 5313513344111251
+㜭 5312434525125121
+㜮 5311252531425221
+㜯 53112251255154444
+㜰 531325115545541234
+㜱 531331233122511134
+㜲 5314152513511531354
+㜳 5314125221241343534
+㜴 531122252214525111
+㜵 5314112112544443534
+㜶 53135251153535251354
+㜷 51513425234343434531
+㜸 1223251514143112531
+㜹 531251112511132411121
+㜺 5313121353121352511134
+㜻 53141112515544445544444544
+㜼 5312512125121251214525111
+㜽 555521
+㜾 5213432
+㜿 5215452
+㝀 55414521
+㝁 352511521
+㝂 5211213312
+㝃 5213525135
+㝄 412515211525
+㝅 1214515213554
+㝆 521121251431251
+㝇 4125152141251521
+㝈 4111251554444554444521521
+㝉 4451
+㝊 44554
+㝋 44552
+㝌 445354
+㝍 445151
+㝎 445454
+㝏 4453432
+㝐 4453554
+㝑 4454153
+㝒 44512251
+㝓 445341251
+㝔 445413434
+㝕 445454454
+㝖 445354354
+㝗 4454511534
+㝘 4454111251
+㝙 4451121134
+㝚 4453212154
+㝛 44532125341
+㝜 44512212511
+㝝 44512341234
+㝞 44512155121
+㝟 44512511135
+㝠 44525114134
+㝡 44512211154
+㝢 445325125214
+㝣 445111253134
+㝤 4451122125211
+㝥 4455213431234
+㝦 4453241112153
+㝧 4455313434121
+㝨 4451212513534
+㝩 44541351124134
+㝪 44512143112354
+㝫 44552354131121
+㝬 44511122511134
+㝭 445442251131121
+㝮 445522521123454
+㝯 445313425125251
+㝰 445325111445344153
+㝱 44552131222522145354
+㝲 4455213122252214551145252
+㝳 124444
+㝴 1135124
+㝵 25111124
+㝶 2522135124
+㝷 511121354124
+㝸 2343251135
+㝹 234335251354
+㝺 43151122342343
+㝻 122125111212343
+㝼 135112
+㝽 1352534
+㝾 13513121
+㝿 13553254
+㞀 135134334
+㞁 135251135
+㞂 1353443531
+㞃 34342511354
+㞄 13513425115
+㞅 13525111234
+㞆 13413412512
+㞇 134251211534
+㞈 134451325122
+㞉 134431113121
+㞊 5225211234135
+㞋 51354
+㞌 513521
+㞍 513354
+㞎 5135215
+㞏 5133454
+㞐 51341431
+㞑 51311511
+㞒 513325111
+㞓 513352511
+㞔 513354354
+㞕 513342511
+㞖 513125234
+㞗 5131241344
+㞘 51313533434
+㞙 51331152534
+㞚 513312321511
+㞛 513332352511
+㞜 51333231234531
+㞝 13211234534513
+㞞 51333234342134
+㞟 513431253511134
+㞠 513134432511234
+㞡 5131211211211213534
+㞢 5221
+㞣 5223453
+㞤 25234
+㞥 25234
+㞦 25235
+㞧 25253
+㞨 252521
+㞩 252354
+㞪 511252
+㞫 252454
+㞬 252121
+㞭 134252
+㞮 252354
+㞯 515252
+㞰 2523112
+㞱 2522511
+㞲 2522512
+㞳 2524412
+㞴 2523515
+㞵 2524134
+㞶 2524134
+㞷 5221121
+㞸 2521324
+㞹 25212512
+㞺 25231134
+㞻 25225115
+㞼 52534252
+㞽 25215534
+㞾 25251335
+㞿 25212134
+㟀 31234252
+㟁 25213112
+㟂 25255414
+㟃 25251251
+㟄 252431112
+㟅 252345235
+㟆 252323512
+㟇 2523434121
+㟈 2521241344
+㟉 2524453112
+㟊 2523443521
+㟋 2524325135
+㟌 2521353334
+㟍 2524511534
+㟎 2523443531
+㟏 2523445251
+㟐 252122415
+㟑 2521245521
+㟒 2525113251
+㟓 2523413252
+㟔 2523445251
+㟕 2522514412
+㟖 2521121132
+㟗 23453345352
+㟘 25235121251
+㟙 25212212511
+㟚 12341254252
+㟛 25212112211
+㟜 25251535234
+㟝 25241431251
+㟞 25215341534
+㟟 25212213455
+㟠 25225431252
+㟡 25243113455
+㟢 25213412512
+㟣 25212343554
+㟤 25251124134
+㟥 25254134333
+㟦 252451251112
+㟧 252251251115
+㟨 252252132522
+㟩 515153134252
+㟪 252251211534
+㟫 252325112534
+㟬 252321511254
+㟭 252515152511
+㟮 252445341344
+㟯 252445354251
+㟰 2524525114134
+㟱 2524311214444
+㟲 2521332511234
+㟳 2521252211234
+㟴 252325113554
+㟵 2522522112121
+㟶 2521332511234
+㟷 252122341251
+㟸 2523251113412
+㟹 25212211135352
+㟺 25225112512531
+㟻 12511123312252
+㟼 2521121533134
+㟽 25212522111234
+㟾 25241351125112
+㟿 2521221344132
+㠀 3251115444252
+㠁 25254545434333
+㠂 2521121533134
+㠃 25241432512251
+㠄 25254154132511
+㠅 252332312511354
+㠆 252251251251112
+㠇 252412512341354
+㠈 252511225111121
+㠉 252414312511211
+㠊 25221531522431
+㠋 252251251251115
+㠌 252122111343534
+㠍 252324111211234
+㠎 252324111211234
+㠏 2521221122112
+㠐 252313425125251
+㠑 2522522121112111
+㠒 2521252211123422
+㠓 2521224511353334
+㠔 2525132514143112
+㠕 25252325113554
+㠖 2524311213121534
+㠗 252325431234134
+㠘 2523211152511134
+㠙 25241251451353334
+㠚 25222431431121124
+㠛 2521223241112154
+㠜 25235311345452134
+㠝 252113411342511134
+㠞 332252111213134252
+㠟 252312343533424134
+㠠 2522153152512125221
+㠡 2524112112544443534
+㠢 252325113554413534
+㠣 2521331234312342121
+㠤 25241251251112213534
+㠥 252251212512125121121
+㠦 252111221112521251431
+㠧 2524131234123421112111
+㠨 2521234343412342522151154124
+㠩 345325
+㠪 1211
+㠫 1213541134
+㠬 1212511134
+㠭 121121121121
+㠮 431224312511121
+㠯 25151
+㠰 53251515
+㠱 51512211134
+㠲 25235
+㠳 34252
+㠴 252534
+㠵 415252
+㠶 252335
+㠷 252354
+㠸 2521134
+㠹 2523432
+㠺 2522343
+㠻 1213252
+㠼 2523312
+㠽 25235444
+㠾 35455252
+㠿 212135252
+㡀 4325234
+㡁 252134115
+㡂 135422252
+㡃 252345325
+㡄 252352511
+㡅 252354354
+㡆 252415325
+㡇 2521221115
+㡈 2523525135
+㡉 25251541554
+㡊 25235321511
+㡋 25213425115
+㡌 25225112511
+㡍 32511134252
+㡎 25254134333
+㡏 252341251122
+㡐 252431251122
+㡑 312344334252
+㡒 252331225111
+㡓 252451251112
+㡔 545233134252
+㡕 25212225134
+㡖 252312511211
+㡗 2523321531535
+㡘 2524315112234
+㡙 2523253411535
+㡚 2521122125211
+㡛 252122415325
+㡜 25235445411234
+㡝 2523541112454
+㡞 25225112512531
+㡟 25212512212511
+㡠 252543341251431
+㡡 252131251431124
+㡢 252251125221153
+㡣 4143452521515111
+㡤 2522243143111234
+㡥 25234431215114544
+㡦 25244512332511134
+㡧 25244534543341251431
+㡨 25234341211121111534
+㡩 4111251554444554444252
+㡪 2523443513222121515354
+㡫 554251135345
+㡬 554554135534
+㡭 55455415545545
+㡮 5545541345343115
+㡯 413315
+㡰 413112
+㡱 413354
+㡲 4131534
+㡳 4133515
+㡴 41341431
+㡵 41334454
+㡶 41325134
+㡷 41312341
+㡸 41331211
+㡹 41325111
+㡺 41325111
+㡻 41335352
+㡼 413251153
+㡽 413511112
+㡾 413511534
+㡿 413431523
+㢀 413125234
+㢁 413354354
+㢂 413325151
+㢃 4134511534
+㢄 4131251431
+㢅 4131121132
+㢆 4132511211
+㢇 4134111251
+㢈 41332411121
+㢉 41331234315
+㢊 41313412512
+㢋 41332354354
+㢌 4135212512
+㢍 41312225134
+㢎 413312321511
+㢏 413341251122
+㢐 41325525251
+㢑 4133241112112
+㢒 41321531525111
+㢓 41341431251112
+㢔 41333234342134
+㢕 41355332411121
+㢖 413343123425121
+㢗 413313425125251
+㢘 413431511224444
+㢙 4131221251112153
+㢚 4132153152512153
+㢛 4133412512513434
+㢜 4131221251214544
+㢝 4133525121444431234
+㢞 41354154125121122134
+㢟 21554
+㢠 2525154
+㢡 52133544124132
+㢢 243252513134132
+㢣 122352513134132
+㢤 1215354
+㢥 251251154
+㢦 1251212512154
+㢧 5151
+㢨 515112
+㢩 515354
+㢪 515115
+㢫 515252
+㢬 5151354
+㢭 5152154
+㢮 51531525
+㢯 51551515
+㢰 51553254
+㢱 51554234
+㢲 515515134
+㢳 515313534
+㢴 515253341
+㢵 515341251
+㢶 515132511
+㢷 515252354
+㢸 5155153134
+㢹 5154143112
+㢺 51541431531
+㢻 51531234531
+㢼 5154325234
+㢽 515122111515
+㢾 515125221121
+㢿 515325131134
+㣀 5151225111134
+㣁 5151221325112
+㣂 5151251254312
+㣃 51541542511515
+㣄 51544115151234
+㣅 515153515352511
+㣆 515134252343434341121
+㣇 55133252
+㣈 5513325255133252
+㣉 121333
+㣊 354333
+㣋 11324333
+㣌 21251333
+㣍 54251333
+㣎 32511234333
+㣏 134251112333
+㣐 325112534333
+㣑 41351125112333
+㣒 432524312511333
+㣓 2135454431234333
+㣔 33212
+㣕 332134
+㣖 3321344
+㣗 3324513
+㣘 33235251
+㣙 33225121
+㣚 332251251
+㣛 332341251
+㣜 332113222
+㣝 332113534
+㣞 332345435
+㣟 332121251
+㣠 332235444
+㣡 332322512
+㣢 3324351523
+㣣 3321343434
+㣤 33215341534
+㣥 33232121124
+㣦 33231234531
+㣧 33255425115
+㣨 33253112251
+㣩 33212341234
+㣪 332344311354
+㣫 332312511211
+㣬 332251122111
+㣭 332345234354
+㣮 332122543112
+㣯 3325132432511
+㣰 33234312344544
+㣱 33211212511134
+㣲 33225212513134
+㣳 332311222214444
+㣴 33212212512134
+㣵 332121431112454
+㣶 3324125251125111
+㣷 33244545442522112
+㣸 3322243135333431121
+㣹 33241332324111214544
+㣺 4424
+㣻 344544
+㣼 442534
+㣽 5314544
+㣾 442544
+㣿 442354
+㤀 3454544
+㤁 11344544
+㤂 3544544
+㤃 4424135
+㤄 4421252
+㤅 15354544
+㤆 4423354
+㤇 4423134
+㤈 4424544
+㤉 4421523
+㤊 4423434
+㤋 4423453
+㤌 44212211
+㤍 121154544
+㤎 532514544
+㤏 44235444
+㤐 212514544
+㤑 44213251
+㤒 44213412
+㤓 44212341
+㤔 44232124
+㤕 44252252
+㤖 44244512
+㤗 111342444
+㤘 44235511
+㤙 255114544
+㤚 442332112
+㤛 442323121
+㤜 442134534
+㤝 442415435
+㤞 442445315
+㤟 2512214544
+㤠 1354224544
+㤡 442135422
+㤢 442132511
+㤣 4311324544
+㤤 442251134
+㤥 442415334
+㤦 442125134
+㤧 442331251
+㤨 442122134
+㤩 3542514544
+㤪 1354554544
+㤫 1325114544
+㤬 442121121
+㤭 442313432
+㤮 35311214544
+㤯 4422534251
+㤰 32312114544
+㤱 4421251431
+㤲 13434344544
+㤳 4421324251
+㤴 4421221115
+㤵 52131344544
+㤶 4421353334
+㤷 4423445251
+㤸 4421213234
+㤹 4421241344
+㤺 442415325
+㤻 35435244544
+㤼 4421215453
+㤽 4421113124
+㤾 44245341234
+㤿 44213425115
+㥀 44212251111
+㥁 132522154544
+㥂 44225111124
+㥃 44251122511
+㥄 44212134354
+㥅 44234434554
+㥆 44251124134
+㥇 44215341534
+㥈 252212514544
+㥉 44241431251
+㥊 44235113511
+㥋 324135344544
+㥌 44235431234
+㥍 44212211134
+㥎 312343534544
+㥏 44225122134
+㥐 341251524544
+㥑 132511454544
+㥒 44234431234
+㥓 44213412512
+㥔 44241542511
+㥕 433443344544
+㥖 354134544544
+㥗 44225114134
+㥘 44212154534
+㥙 44225124544
+㥚 44232151134
+㥛 44252251541
+㥜 442251212511
+㥝 442515122111
+㥞 442431353334
+㥟 442551353334
+㥠 442521342511
+㥡 442513351234
+㥢 442431253511
+㥣 1341211214544
+㥤 5452334454544
+㥥 442251125214
+㥦 1134343454544
+㥧 442132511134
+㥨 5311211214544
+㥩 44212132511
+㥪 442431234531
+㥫 442412512511
+㥬 4424143454153
+㥭 4421113424134
+㥮 4423552335523
+㥯 34431215114544
+㥰 442321511254
+㥱 4421211121115
+㥲 12251111344544
+㥳 4421332511234
+㥴 4423321531535
+㥵 4422513533341
+㥶 44511221344544
+㥷 41313434344544
+㥸 51515251214544
+㥹 43123434534544
+㥺 4421215425221
+㥻 13312345344544
+㥼 44212121154444
+㥽 44211212511134
+㥾 4421122132515
+㥿 11215331344544
+㦀 4423541112454
+㦁 12511124544544
+㦂 243452512524544
+㦃 44241431331121
+㦄 413123412344544
+㦅 44212213545252
+㦆 44221531534312
+㦇 44241352211535
+㦈 44243112125221
+㦉 442121451251431
+㦊 4421221122112
+㦋 44213412132511
+㦌 3115311531154544
+㦍 442251251431523
+㦎 442511121251211
+㦏 442515515122134
+㦐 442111251113454
+㦑 44251221113134
+㦒 442252214111251
+㦓 442354413444444
+㦔 2511251113444544
+㦕 44252354131121
+㦖 442511225114544
+㦗 4421234123411234
+㦘 32511415331344544
+㦙 4422511252144544
+㦚 414311345444143112
+㦛 32111525111344544
+㦜 4421223241112154
+㦝 344353332511354544
+㦞 121512112511244544
+㦟 344353325112114544
+㦠 44222431431121124
+㦡 442325115545541234
+㦢 4423143145115452
+㦣 3325212511521124544
+㦤 12145125143135344544
+㦥 4424451112252214544
+㦦 4425112251132151135
+㦧 4423121353121352511
+㦨 44251122511125431234
+㦩 4425234431215114544
+㦪 44241112514334433454
+㦫 4423121353121352511134
+㦬 4422522155444432411121
+㦭 442145244442512512511234341
+㦮 111534
+㦯 1541534
+㦰 34341534
+㦱 11121534
+㦲 12153534
+㦳 121121534
+㦴 1354251534
+㦵 3112341534
+㦶 1154121534
+㦷 54251121534
+㦸 212511121534
+㦹 2511135331534
+㦺 13115341241534
+㦻 541541325111534
+㦼 11134321511154
+㦽 13251112511555534
+㦾 4513525
+㦿 45131234
+㧀 4513354
+㧁 451312154
+㧂 451325121
+㧃 12152
+㧄 12152
+㧅 12153
+㧆 121252
+㧇 121251
+㧈 121515
+㧉 1213115
+㧊 1211252
+㧋 1211344
+㧌 1213115
+㧍 1214153
+㧎 1211523
+㧏 1212534
+㧐 1215454
+㧑 1214354
+㧒 12144534
+㧓 12133544
+㧔 12113534
+㧕 12135352
+㧖 12145135
+㧗 121212135
+㧘 2121353112
+㧙 12145434
+㧚 1211554
+㧛 223143112
+㧜 12112525
+㧝 532513112
+㧞 12131354
+㧟 12144115
+㧠 12154234
+㧡 121415334
+㧢 121251341
+㧣 121311234
+㧤 121415435
+㧥 121312135
+㧦 121352511
+㧧 1214154325
+㧨 121331251
+㧩 121351252
+㧪 121351355
+㧫 121132522
+㧬 1213543112
+㧭 121523112
+㧮 121321511
+㧯 121121335
+㧰 12135234
+㧱 3412513112
+㧲 1214451234
+㧳 12134533112
+㧴 1213121534
+㧵 1211324251
+㧶 1213251113
+㧷 1211134251
+㧸 1214125152
+㧹 12125111124
+㧺 12125342511
+㧻 12113533434
+㧼 12111213534
+㧽 12125122511
+㧾 12135334544
+㧿 12134342134
+㨀 12131511234
+㨁 12112251111
+㨂 12112511234
+㨃 12141251521
+㨄 12135121251
+㨅 1211222534
+㨆 12112341234
+㨇 441532543112
+㨈 12141343211
+㨉 121515152511
+㨊 121131212511
+㨋 12112132511
+㨌 1214531123534
+㨍 1211211243112
+㨎 121132522134
+㨏 121252134334
+㨐 121322511234
+㨑 121345234354
+㨒 121134121121
+㨓 1214453112
+㨔 121131251534
+㨕 121535425221
+㨖 1211541213134
+㨗 121215112134
+㨘 121234325111
+㨙 1213443554134
+㨚 121122352511
+㨛 1215112251134
+㨜 1212153154134
+㨝 1215132432511
+㨞 1211121554234
+㨟 1212521251431
+㨠 1214525114134
+㨡 1212513533341
+㨢 1215425113535
+㨣 1213454541541
+㨤 1211324111215
+㨥 1215544442534
+㨦 1213241112154
+㨧 1215413425121
+㨨 1213545325121
+㨩 121413312154
+㨪 1212511243135
+㨫 1212231425221
+㨬 1211212513534
+㨭 12145132515215
+㨮 12132511355135
+㨯 1214125152152
+㨰 1214134543534
+㨱 12135444111251
+㨲 121122451234
+㨳 12144513412512
+㨴 1211225112315
+㨵 12143125112253
+㨶 1213251154444
+㨷 12112212511121
+㨸 12144545434252
+㨹 12111121112511
+㨺 12112212523434
+㨻 125111233123112
+㨼 251213542513112
+㨽 12112512512122
+㨾 12143112145534
+㨿 12121531535435
+㩀 12121531535334
+㩁 12144532411121
+㩂 12135351124412
+㩃 121445112213444
+㩄 121252251214544
+㩅 121121525125121
+㩆 121412512341354
+㩇 121511121251211
+㩈 121445345113251
+㩉 121341251541541
+㩊 121344325221124
+㩋 1215112321155212
+㩌 121515322511134
+㩍 121314314125234
+㩎 121251125111344
+㩏 121254312114444
+㩐 121314314121124
+㩑 121113421112111
+㩒 1211234123411234
+㩓 32151112135543112
+㩔 1215131221343554
+㩕 1211452444434454
+㩖 1211251211251211
+㩗 1212523441112153
+㩘 1214311213121534
+㩙 1214451122134121
+㩚 1211224511353334
+㩛 12125125112141241
+㩜 12112512531425221
+㩝 12141251451353334
+㩞 12143344334451234
+㩟 12144511221341234
+㩠 121413522115354444
+㩡 121132511325113251
+㩢 12112225221134534
+㩣 121541541451251112
+㩤 121125112441533134
+㩥 121121211121111534
+㩦 121324111212534251
+㩧 121251112213424134
+㩨 121111211125114544
+㩩 121352534132511134
+㩪 121554444132511134
+㩫 121331233122511134
+㩬 121215315224311534
+㩭 1213211343451145521
+㩮 12132111525111343112
+㩯 12131554143134554234
+㩰 1211222512512511234
+㩱 12134432522151154124
+㩲 12112225125132411121
+㩳 121324111213241112154
+㩴 121251112511132411121
+㩵 12121531512512543121344
+㩶 12131431413425234343434
+㩷 12144511221341211254444
+㩸 1212512125121251214453541
+㩹 1212512125121251214525111
+㩺 15151254
+㩻 3513551254
+㩼 3543541254
+㩽 12512341254
+㩾 312122111254
+㩿 3153134
+㪀 1123134
+㪁 34452154
+㪂 31152154
+㪃 125122154
+㪄 515323134
+㪅 125342154
+㪆 351542154
+㪇 3121353134
+㪈 1211212154
+㪉 3412513134
+㪊 51132512154
+㪋 25111122154
+㪌 54251122154
+㪍 12455213134
+㪎 13434342154
+㪏 3251213122154
+㪐 451313442154
+㪑 134251152154
+㪒 321511352154
+㪓 312211352154
+㪔 123412342154
+㪕 212511122154
+㪖 511241342154
+㪗 414312512154
+㪘 341251343134
+㪙 251112343134
+㪚 122125113134
+㪛 1221113452154
+㪜 2521325112154
+㪝 1254312342154
+㪞 2511251112154
+㪟 4125125113134
+㪠 43151122342154
+㪡 44511122512154
+㪢 3215112542154
+㪣 41251252513134
+㪤 25111221123134
+㪥 215315251112154
+㪦 445125121343134
+㪧 3412515415412154
+㪨 4311124312512154
+㪩 51123211552122154
+㪪 1134211121112154
+㪫 214513434251112154
+㪬 541541324111212154
+㪭 21531525121252212154
+㪮 145244442512512512154
+㪯 4134112
+㪰 4134431234
+㪱 41343525134
+㪲 44125
+㪳 44125
+㪴 11354412
+㪵 431134412
+㪶 1325114412
+㪷 12514314412
+㪸 122111344412
+㪹 251125125314412
+㪺 12511125111344412
+㪻 41112515544445544444412
+㪼 125123312
+㪽 125113312
+㪾 3542513312
+㪿 5235233312
+㫀 251125113312
+㫁 55455413553312
+㫂 413122144443312
+㫃 415334
+㫄 11354153
+㫅 4153341132
+㫆 415334234
+㫇 415334445
+㫈 415334445
+㫉 4153351355
+㫊 41533112512
+㫋 41533125211
+㫌 41533112121
+㫍 4153313223134
+㫎 415331451251112
+㫏 415331125221531
+㫐 251135
+㫑 251153
+㫒 2511132
+㫓 2511315
+㫔 2511211
+㫕 2511135
+㫖 2112511
+㫗 2511521
+㫘 13242511
+㫙 25111134
+㫚 35332511
+㫛 251125135
+㫜 251125111
+㫝 251135154
+㫞 251152254
+㫟 251135251
+㫠 251143112
+㫡 251135444
+㫢 251112154
+㫣 251125115
+㫤 251145534
+㫥 2511354251
+㫦 3223542511
+㫧 2511431234
+㫨 2511445531
+㫩 121222511
+㫪 1113422511
+㫫 2511122431
+㫬 2511352511
+㫭 2511121124
+㫮 2121352511
+㫯 25112511135
+㫰 25114511534
+㫱 25111213234
+㫲 25111245521
+㫳 13115342511
+㫴 25111213521
+㫵 251121112111
+㫶 251151145252
+㫷 122111342511
+㫸 251115112134
+㫹 251133513312
+㫺 343434342511
+㫻 251134125122
+㫼 251131125222
+㫽 251151124134
+㫾 251124325251
+㫿 251132411121
+㬀 251141251521
+㬁 2511441341251
+㬂 2511251125214
+㬃 2511542514334
+㬄 2511131213234
+㬅 251125221153
+㬆 2511515152511
+㬇 25113525134
+㬈 2511251125221
+㬉 2511132522134
+㬊 2511344311354
+㬋 2511325131134
+㬌 2511412511234
+㬍 25111251124124
+㬎 25115545544444
+㬏 25111251254312
+㬐 25111224312511
+㬑 25114125152152
+㬒 25111221344132
+㬓 251112522111234
+㬔 251154154134333
+㬕 25114524431112
+㬖 251145133134251
+㬗 2511354413444444
+㬘 25115112321155212
+㬙 2511344335554444
+㬚 2511415425113134
+㬛 2511341251541541
+㬜 1541211541212511
+㬝 2511432524312511
+㬞 2511252251135345
+㬟 3533432524312511
+㬠 25113521131344444
+㬡 25111452444434454
+㬢 25114311213121534
+㬣 251122431431121124
+㬤 251125115545544444
+㬥 251152252134431234
+㬦 25111223241112154
+㬧 251152252134554234
+㬨 251112132341213234
+㬩 2511111211125114544
+㬪 251125112511445551
+㬫 12212512113544442511
+㬬 2511251112511132411121
+㬭 251134432522151154124
+㬮 25111221251113432411121
+㬯 25114152513511431112354
+㬰 251134
+㬱 3121353121352511
+㬲 12511344313425221
+㬳 35113112
+㬴 3511122134
+㬵 3511413434
+㬶 35113121251
+㬷 35112512341
+㬸 35111223235
+㬹 3511355112
+㬺 3511431134252
+㬻 3511122415325
+㬼 132511312511354
+㬽 351125125125115
+㬾 131134535542511
+㬿 3511412515213134
+㭀 35113143141234341
+㭁 123453
+㭂 1234234
+㭃 1234554
+㭄 1234512
+㭅 1234111
+㭆 5311234
+㭇 12345435
+㭈 12345134
+㭉 1221234
+㭊 12343215
+㭋 12341112
+㭌 12343112
+㭍 41151234
+㭎 12342534
+㭏 12341152
+㭐 13411234
+㭑 123411234
+㭒 123425151
+㭓 123454132
+㭔 123434312
+㭕 123412154
+㭖 123432154
+㭗 123425221
+㭘 1234341251
+㭙 1234121124
+㭚 1234313534
+㭛 1234333534
+㭜 1234113534
+㭝 1234123435
+㭞 1234234353
+㭟 1221341234
+㭠 1234312135
+㭡 1234325341
+㭢 1234113222
+㭣 1234425251
+㭤 123435451
+㭥 1234352534
+㭦 1234445315
+㭧 3354141234
+㭨 1234152352
+㭩 12343443124
+㭪 12341251124
+㭫 12343434121
+㭬 12341353334
+㭭 12342515322
+㭮 12345551354
+㭯 12341221115
+㭰 212135125234
+㭱 12341251125
+㭲 12343434251
+㭳 12341213521
+㭴 12342254121
+㭵 12343525121
+㭶 12341224153
+㭷 12342512153
+㭸 123435251354
+㭹 123451541554
+㭺 123413425115
+㭻 123424325251
+㭼 123425342511
+㭽 123441335154
+㭾 123451352252
+㭿 123425113552
+㮀 123452413452
+㮁 123434132511
+㮂 251111341234
+㮃 123431234531
+㮄 123411354153
+㮅 123432411121
+㮆 123434431112
+㮇 123411342444
+㮈 123413411234
+㮉 123432143134
+㮊 123454521234
+㮋 123413251152
+㮌 1234132522111
+㮍 4312511221234
+㮎 1234132425221
+㮏 1234123411234
+㮐 1234234325111
+㮑 1234312321511
+㮒 1234125221121
+㮓 1234442125441
+㮔 1234312511211
+㮕 1234132522134
+㮖 1234122125112
+㮗 5452334451234
+㮘 1234545233134
+㮙 1234251251115
+㮚 2125343411234
+㮛 1234251112134
+㮜 1234152131215
+㮝 1234343425152
+㮞 1234413534251
+㮟 1234132511234
+㮠 1234122451234
+㮡 433415151234
+㮢 1234325131134
+㮣 5115415351234
+㮤 44534342511234
+㮥 12345413425121
+㮦 12341245554234
+㮧 12343251154444
+㮨 12342512134354
+㮩 12343251114544
+㮪 12341213541234
+㮫 12344451112251
+㮬 12343454541541
+㮭 12345425431121
+㮮 12341112533112
+㮯 12342513533341
+㮰 12343253411535
+㮱 1234122312135
+㮲 12343552335523
+㮳 12343511431134
+㮴 1234321511254
+㮵 12344153313541
+㮶 12344315233511
+㮷 12341354352511
+㮸 1234431134454
+㮹 12341541213134
+㮺 12341251251251
+㮻 1234544251214
+㮼 12344513541541
+㮽 12343354143554
+㮾 45115435111234
+㮿 12342511122112
+㯀 123441533152134
+㯁 12345241431251
+㯂 123412213545252
+㯃 123412343424134
+㯄 123412343315215
+㯅 123441332511312
+㯆 123441431331121
+㯇 123421112111121
+㯈 12341251234454
+㯉 123421531534312
+㯊 123412121154444
+㯋 351234132511134
+㯌 12341353334454
+㯍 123452133544124
+㯎 123441112511234
+㯏 121521335541234
+㯐 521312125111234
+㯑 123451512111534
+㯒 123434432511135
+㯓 1234341251541541
+㯔 3115311531151234
+㯕 1234122111343312
+㯖 1234132522114544
+㯗 1234511225111234
+㯘 1234121112343534
+㯙 1234415425113134
+㯚 1234314314341251
+㯛 1234121452155121
+㯜 123412241343412
+㯝 12342512121354251
+㯞 12345544442512511
+㯟 1234123451124134
+㯠 123441554453112
+㯡 1234342413435515
+㯢 1234515515122134
+㯣 123412234531234
+㯤 1343423413434234
+㯥 1251123412511234
+㯦 1234122111341234
+㯧 1234121213453251
+㯨 1234125221431234
+㯩 5454541234151534
+㯪 12341452444434454
+㯫 12342153151353334
+㯬 1234123451111254
+㯭 12342153152512153
+㯮 12342522135251214
+㯯 12343541522511134
+㯰 12342522112251111
+㯱 12512453112521234
+㯲 12341234123411234
+㯳 1234122352513134
+㯴 12341224453434251
+㯵 1234122312511211
+㯶 12343444445234354
+㯷 123432224314311134
+㯸 123451121444425221
+㯹 123412522111234124
+㯺 125125314252211234
+㯻 125124513533341234
+㯼 12341221215425221
+㯽 123444552132511134
+㯾 123412512212511454
+㯿 1234555253415445445
+㰀 1234312343533424134
+㰁 1234132511325113251
+㰂 1234445343123425121
+㰃 1234325112523554234
+㰄 1234251113415341534
+㰅 123441432512251454
+㰆 125124521112111234
+㰇 1234121211121111534
+㰈 123412341251112454
+㰉 12341541211113431234
+㰊 12341213412143344334
+㰋 12342121233132511134
+㰌 12341452444432411121
+㰍 41431251115151111234
+㰎 1234252324111212525
+㰏 12343143144125125251
+㰐 123452131212511454
+㰑 12344544454445441234
+㰒 12343211343451145521
+㰓 12341251253142511134
+㰔 123441112514334433454
+㰕 12344311213123415534
+㰖 12341251253142511135
+㰗 1234132112345342512134
+㰘 1234551431234554234132
+㰙 12341221251113432411121
+㰚 1234413452255432411121
+㰛 1234122325115545541234
+㰜 12341225111134132511134
+㰝 5153534
+㰞 2523534
+㰟 31153534
+㰠 41353534
+㰡 34323534
+㰢 11323534
+㰣 2121153534
+㰤 125123534
+㰥 122153534
+㰦 121543534
+㰧 542513534
+㰨 251343534
+㰩 2512143534
+㰪 1211213534
+㰫 3121353534
+㰬 3525113534
+㰭 1342253534
+㰮 13115343534
+㰯 12514313534
+㰰 13434343534
+㰱 31251123534
+㰲 125115343534
+㰳 121551213534
+㰴 414312513534
+㰵 413434123534
+㰶 354242513534
+㰷 1354153534
+㰸 341251343534
+㰹 1312515343534
+㰺 5121151543534
+㰻 1212514313534
+㰼 1134343453534
+㰽 1251153153534
+㰾 3251141533534
+㰿 34435541343534
+㱀 35523355233534
+㱁 52252112343534
+㱂 413511241343534
+㱃 344512535113534
+㱄 2543121144443534
+㱅 1214512514313534
+㱆 21531512514313534
+㱇 12343412525113534
+㱈 12341234112343534
+㱉 22431431112343534
+㱊 1325114545443543534
+㱋 14524444324111213534
+㱌 1221111221111221113534
+㱍 41112515544445544443534
+㱎 2522123344352512144443534
+㱏 112121
+㱐 1121214
+㱑 2121354
+㱒 212112512
+㱓 212134454
+㱔 212135354
+㱕 212151145252
+㱖 212141343412
+㱗 21213251111344
+㱘 132511251113442121
+㱙 135415
+㱚 13543511
+㱛 13541354
+㱜 13542134
+㱝 13541553
+㱞 135441431
+㱟 135453254
+㱠 135412251
+㱡 1354312135
+㱢 13544511534
+㱣 13543443531
+㱤 135412343312
+㱥 135412134354
+㱦 135413412512
+㱧 135444535455
+㱨 135444512134
+㱩 135412544134
+㱪 1354515152511
+㱫 1354125431234
+㱬 1354251211534
+㱭 1354321113554
+㱮 1354251212534
+㱯 13542521251431
+㱰 13544454143112
+㱱 1354325113554
+㱲 13544313425221
+㱳 12225111341354
+㱴 135411212511134
+㱵 1354121222511134
+㱶 1354121251431333
+㱷 1354324111211234
+㱸 13545132514143112
+㱹 13541331234312342121
+㱺 13542153152512125221
+㱻 13544152513511431112354
+㱼 5153554
+㱽 45353554
+㱾 4153343554
+㱿 1212513554
+㲀 13115343554
+㲁 445341213554
+㲂 243252513554
+㲃 212511153554
+㲄 1214511213554
+㲅 44511122513554
+㲆 1215213355434454
+㲇 1215213355435444
+㲈 1215213355453251
+㲉 12145135435243554
+㲊 214513434251113554
+㲋 352511535
+㲌 311553
+㲍 12543115
+㲎 31153115
+㲏 32153115
+㲐 31153445
+㲑 31152534
+㲒 352513115
+㲓 3115134534
+㲔 41431123115
+㲕 34431243115
+㲖 24325113115
+㲗 34435213115
+㲘 25111343115
+㲙 31154154325
+㲚 44123433115
+㲛 311342513115
+㲜 433443343115
+㲝 311532411121
+㲞 413434123115
+㲟 122251343115
+㲠 1123431343115
+㲡 1234112343115
+㲢 4513251223115
+㲣 3215112543115
+㲤 41251135343115
+㲥 41351122513115
+㲦 12251112343115
+㲧 3115544251214
+㲨 1221221113115
+㲩 31152511541541
+㲪 5433412514313115
+㲫 2243143111343115
+㲬 3241112144443115
+㲭 4334433443343115
+㲮 3115314314341251
+㲯 125125314252213115
+㲰 445454425221123115
+㲱 3115555253415445445
+㲲 25121251212512145251113115
+㲳 3515431134
+㲴 31152512
+㲵 31152432511
+㲶 311521253444441
+㲷 3115251251251112
+㲸 4415
+㲹 44135
+㲺 44115
+㲻 322534
+㲼 44134
+㲽 441534
+㲾 4452534
+㲿 441413
+㳀 4411534
+㳁 4411334
+㳂 4413454
+㳃 4413512
+㳄 4413534
+㳅 4411324
+㳆 4414412
+㳇 4413434
+㳈 4411235
+㳉 4413511
+㳊 4413134
+㳋 44132121
+㳌 44125112
+㳍 44113252
+㳎 44154132
+㳏 44125134
+㳐 44112345
+㳑 44125221
+㳒 44113454
+㳓 44113251
+㳔 44154124
+㳕 44143111
+㳖 441413534
+㳗 441544121
+㳘 441415435
+㳙 441542511
+㳚 441134534
+㳛 44132151134
+㳜 441321234
+㳝 441323121
+㳞 441322512
+㳟 12213424134
+㳠 441134454
+㳡 441124454
+㳢 441313432
+㳣 441121335
+㳤 441411324444
+㳥 4411121132
+㳦 441132534
+㳧 4411221115
+㳨 4415551354
+㳩 4411213541
+㳪 4411324251
+㳫 2534321511
+㳬 4413152134
+㳭 4412511234
+㳮 4415132534
+㳯 4414143112
+㳰 4414154132
+㳱 441522511
+㳲 4414411344
+㳳 4411225135
+㳴 44145434121
+㳵 44131234521
+㳶 44134435215
+㳷 44135332511
+㳸 4411223235
+㳹 44112341121
+㳺 44112131521
+㳻 44112212511
+㳼 125115342534
+㳽 44151531234
+㳾 4414311135
+㳿 44141541234
+㴀 4411223454
+㴁 44111341132
+㴂 44112125211
+㴃 44145132534
+㴄 4412534251
+㴅 25342534251
+㴆 44151145252
+㴇 253425342534
+㴈 44132121252
+㴉 44154545411
+㴊 44143152322
+㴋 44151123234
+㴌 44153112251
+㴍 44152111534
+㴎 44113411234
+㴏 441445341121
+㴐 441251111255
+㴑 44141343153
+㴒 441413234132
+㴓 441251214544
+㴔 441355114544
+㴕 44112231234
+㴖 441122125112
+㴗 441125221531
+㴘 441251125111
+㴙 441312321511
+㴚 441431353334
+㴛 4411541213134
+㴜 441451325122
+㴝 31234223424134
+㴞 441344322511
+㴟 441132511521
+㴠 441522515452
+㴡 441312342511
+㴢 441441322512
+㴣 441441151534
+㴤 441123441121
+㴥 4412522432511
+㴦 441445251251
+㴧 4413251114544
+㴨 4413511431134
+㴩 4415552515215
+㴪 4413251111234
+㴫 441511325152
+㴬 4413251113124
+㴭 4414453425111
+㴮 4415132432511
+㴯 4413511352511
+㴰 4415425113535
+㴱 4414453413443
+㴲 4413321531535
+㴳 4411211353334
+㴴 4414334143345
+㴵 4414543425221
+㴶 4414532411121
+㴷 4411221114535
+㴸 4415112251134
+㴹 441431234454
+㴺 4414411343434
+㴻 4411251431124
+㴼 44144532132511
+㴽 44134312344544
+㴾 44112455213134
+㴿 44112132511134
+㵀 44141533131134
+㵁 4411224154325
+㵂 44141312214444
+㵃 44125121444535
+㵄 44112511134534
+㵅 44134452544434
+㵆 44125113121251
+㵇 44131225112211
+㵈 44144153112251
+㵉 44144112341234
+㵊 441251112211154
+㵋 441252212511134
+㵌 441332331225111
+㵍 441511225114544
+㵎 441511225113511
+㵏 44112241343412
+㵐 441134315233534
+㵑 441532512511134
+㵒 441515322511134
+㵓 441445251112134
+㵔 44113412132511
+㵕 441545454342444
+㵖 441531251554234
+㵗 4112112544442534
+㵘 2534253425342534
+㵙 441121251431251
+㵚 441343434112431
+㵛 441431112431251
+㵜 441441122543112
+㵝 4414135342534251
+㵞 4413123443344544
+㵟 4413322521353134
+㵠 4414453451352252
+㵡 4411452444435515
+㵢 441145444425121
+㵣 4412511353453534
+㵤 4415415411343434
+㵥 4414454543425221
+㵦 441121212511454
+㵧 441122251135345
+㵨 51325141431122534
+㵩 441122122151234
+㵪 441431121413534
+㵫 4415215215212511
+㵬 4413511535425221
+㵭 441121325114444
+㵮 441134122125112
+㵯 44135132511154444
+㵰 4413211152511134
+㵱 44112522111234124
+㵲 44131122221354152
+㵳 44144554154134333
+㵴 44113513125125534
+㵵 44112211154323334
+㵶 44112132411121534
+㵷 41431134414143112
+㵸 44134125125125122
+㵹 4412521222511134
+㵺 44131431432511312
+㵻 4413511321511254
+㵼 44145321511354444
+㵽 441251212512125121
+㵾 441112125112511135
+㵿 441325113251132511
+㶀 441351134134134333
+㶁 441344312421531535
+㶂 44144112212512134
+㶃 441441311222214444
+㶄 4415112251135321511
+㶅 4413211343451145521
+㶆 441411125112132511
+㶇 441123412212512134
+㶈 4414334433445251214
+㶉 441344355413435451
+㶊 441125125132511134
+㶋 4412243135333431121
+㶌 44112211155455453221
+㶍 44135251214444431112
+㶎 4412522112513534454
+㶏 4415234431215114544
+㶐 44141332324111214544
+㶑 44134125125134343534
+㶒 441511225111211254444
+㶓 44112213513125125534
+㶔 441252212522125221134
+㶕 4413143142511225112511
+㶖 441322354254312114444
+㶗 3155414554234325112534
+㶘 441314314125221251112
+㶙 4414412243135333431121
+㶚 4411252211221251123511
+㶛 4414153313211152511134
+㶜 44151343113251343113222
+㶝 44144141332324111214544
+㶞 441251141251251112213534
+㶟 441251212512125121554234
+㶠 44112112544442522112143112
+㶡 354334
+㶢 433435
+㶣 1124334
+㶤 4334354
+㶥 4334112
+㶦 43345452
+㶧 43342534
+㶨 13244444
+㶩 43344535
+㶪 13244334
+㶫 134434334
+㶬 433411234
+㶭 433455453
+㶮 125344334
+㶯 433435352
+㶰 433412211
+㶱 433412341
+㶲 433435112
+㶳 5111124334
+㶴 4334354354
+㶵 3231214444
+㶶 4334453534
+㶷 4334352511
+㶸 4334535353
+㶹 43341212534
+㶺 43341134251
+㶻 35411124444
+㶼 43345431134
+㶽 43342512534
+㶾 12522114334
+㶿 43341245521
+㷀 43344334512
+㷁 43345425112
+㷂 125125544334
+㷃 433412111534
+㷄 433425111234
+㷅 122111544334
+㷆 433432515112
+㷇 354354134334
+㷈 433413425115
+㷉 513114334124
+㷊 123412344444
+㷋 433443344334
+㷌 433451145252
+㷍 433434125122
+㷎 4334251135345
+㷏 3123431124334
+㷐 4334321511121
+㷑 4334125221121
+㷒 4334251125214
+㷓 4334353344544
+㷔 4334344322511
+㷕 4312535114334
+㷖 2511433453251
+㷗 3251515154334
+㷘 4334542511234
+㷙 4334431251122
+㷚 4334412514512
+㷛 3225112344444
+㷜 4334413234134
+㷝 4334445341344
+㷞 4334132511521
+㷟 4334325151454
+㷠 43344334354152
+㷡 2511115154334
+㷢 4311131214334
+㷣 43344311213112
+㷤 12145143343554
+㷥 43344334525341
+㷦 12211143344444
+㷧 43341332511234
+㷨 43342523541112
+㷩 31251255154334
+㷪 43343241112153
+㷫 121521335544334
+㷬 43341222511134
+㷭 35411124544334
+㷮 433412512212511
+㷯 433412111134112
+㷰 43344134522554
+㷱 542511121544444
+㷲 433431251121153
+㷳 1332324111214334
+㷴 1331234312344334
+㷵 4334254312114444
+㷶 3212213251124444
+㷷 4334515515122134
+㷸 433425111122112
+㷹 433412221251112
+㷺 3532151131344334
+㷻 4334311222214444
+㷼 1221251211354334
+㷽 4334431112431251
+㷾 43342153151353334
+㷿 43343412512513434
+㸀 43344125125251121
+㸁 43342243143111234
+㸂 4313533344544334
+㸃 25431211212514444
+㸄 433441432533543211
+㸅 43343143145115452
+㸆 4334312125121112111
+㸇 4334113411342511134
+㸈 32411121324111214334
+㸉 4143112433443344334
+㸊 43341251234352511134
+㸋 35444334343123425121
+㸌 43341452444432411121
+㸍 433421531512514311534
+㸎 4334122111122111122111
+㸏 41312341234211121114334
+㸐 12212511134324111214444
+㸑 321125125151145123412344334
+㸒 34433121
+㸓 34432511
+㸔 3431325111
+㸕 33243241112154
+㸖 343425111
+㸗 3434251251
+㸘 34342522112
+㸙 343412132511
+㸚 34343434
+㸛 521353251
+㸜 521344534121
+㸝 32153534
+㸞 32153215
+㸟 3215352511
+㸠 3215341534
+㸡 3215311234
+㸢 32151221325112
+㸣 32152243143111234
+㸤 414311332154143112
+㸥 321535251153535251354
+㸦 1524
+㸧 1523511534
+㸨 312152
+㸩 3121112
+㸪 3121322
+㸫 31213312
+㸬 31211252
+㸭 31215215
+㸮 31213453
+㸯 31214412
+㸰 312144535
+㸱 312131525
+㸲 312131211
+㸳 312134454
+㸴 132513112
+㸵 3121121251
+㸶 3121251341
+㸷 1112533112
+㸸 3121331251
+㸹 31213443124
+㸺 44123433112
+㸻 31215431134
+㸼 31213541112
+㸽 31212511134
+㸾 31215344544
+㸿 31211214535
+㹀 31211245521
+㹁 312141251234
+㹂 125125543112
+㹃 211121113112
+㹄 31212512134354
+㹅 3121353344544
+㹆 3121451251112
+㹇 3121251135345
+㹈 1123431343112
+㹉 31211332511234
+㹊 31214532411121
+㹋 3121322354333
+㹌 312141431331121
+㹍 312141432512251
+㹎 312125121554234
+㹏 312112212511121
+㹐 332343421343112
+㹑 3121111251113454
+㹒 3121224314311134
+㹓 3121121121121135
+㹔 31211251211251211
+㹕 11351325111343112
+㹖 31214311341353334
+㹗 312112151211251124
+㹘 312114524444132522
+㹙 3121433443344525111
+㹚 31214334433445251251
+㹛 31211325111212151534354
+㹜 13441344
+㹝 3533515
+㹞 3533312
+㹟 3535134
+㹠 3531525
+㹡 35341554
+㹢 35353251
+㹣 35335444
+㹤 35312154
+㹥 35341121
+㹦 35353251
+㹧 35325134
+㹨 35325121
+㹩 35354121
+㹪 35335351
+㹫 353151534
+㹬 353125134
+㹭 353251153
+㹮 353132511
+㹯 353321234
+㹰 353243135
+㹱 3532512134
+㹲 3531213521
+㹳 3531251251
+㹴 3531251134
+㹵 3531555121
+㹶 353312154
+㹷 34132521344
+㹸 3533251135
+㹹 35341351134
+㹺 35325342511
+㹻 3533134531
+㹼 35335431234
+㹽 35315341534
+㹾 35335424251
+㹿 35321251112
+㺀 35335334544
+㺁 353555325341
+㺂 353131251534
+㺃 35312235251
+㺄 353341251122
+㺅 353351331134
+㺆 353451342534
+㺇 35312251251344
+㺈 3532521251214
+㺉 12145113443554
+㺊 3534311214544
+㺋 3533454541541
+㺌 3534315112234
+㺍 3534453212134
+㺎 35341351125112
+㺏 35325112512531
+㺐 35355525111234
+㺑 35354545434333
+㺒 35354154134333
+㺓 35311212511134
+㺔 353344335554444
+㺕 353343123425121
+㺖 35351221113134
+㺗 353251251251112
+㺘 353324111214444
+㺙 353445554142534
+㺚 353121431112454
+㺛 3531211254444132
+㺜 3532512211311534
+㺝 35312512531425221
+㺞 3533211152511134
+㺟 35354154132411121
+㺠 353445343354433544
+㺡 3531331234312342121
+㺢 3531452444432411121
+㺣 35321531512514311534
+㺤 35334341211121111534
+㺥 35335251153535251354
+㺦 35312211155455453221
+㺧 353251251132511134251251
+㺨 112154
+㺩 112152
+㺪 112124
+㺫 112122
+㺬 1121354
+㺭 1121521
+㺮 1121115
+㺯 1121134
+㺰 11211252
+㺱 325311214
+㺲 11215211
+㺳 11212154
+㺴 11211344
+㺵 11213534
+㺶 11214412
+㺷 112112344
+㺸 323541121
+㺹 112154132
+㺺 112125111
+㺻 11211252
+㺼 112152134
+㺽 112113241
+㺾 112125251
+㺿 11211225125
+㻀 1121251134
+㻁 1121252511
+㻂 1121431132
+㻃 25122111214
+㻄 1121312134
+㻅 1121341154
+㻆 1121542511
+㻇 1121341121
+㻈 1121331251
+㻉 11212121233
+㻊 11213525135
+㻋 11211251234
+㻌 11213411234
+㻍 11212511134
+㻎 11121112134
+㻏 11215114334
+㻐 11215434354
+㻑 112131234521
+㻒 112125312341
+㻓 112112211154
+㻔 112131212211
+㻕 112151352252
+㻖 112151124134
+㻗 2111211111214
+㻘 112144525112
+㻙 112141542511
+㻚 112135113511
+㻛 112125113533
+㻜 112134342134
+㻝 1121125123422
+㻞 1121451325122
+㻟 1121131212511
+㻠 1121445341344
+㻡 1121122151234
+㻢 1121415331525
+㻣 1121122111345
+㻤 112112235251
+㻥 1121431253511
+㻦 1121251125214
+㻧 11213541521234
+㻨 125125544411214
+㻩 11214315112234
+㻪 11213241112153
+㻫 11212511122112
+㻬 112114524444115
+㻭 112141554413412
+㻮 112135445411234
+㻯 112121531534312
+㻰 112111121112511
+㻱 11213541112454
+㻲 112125112512531
+㻳 11211223123422
+㻴 112125112522154
+㻵 1121513521521521
+㻶 1121314314511112
+㻷 1121125234125234
+㻸 1121153515352511
+㻹 13251135333411214
+㻺 2331234313411214
+㻻 1121412515213134
+㻼 1121125221251112
+㻽 1121324111212525
+㻾 415533241112111214
+㻿 11212522135251214
+㼀 1121121431112454
+㼁 11214311213121534
+㼂 32111525114511214
+㼃 1121555253415445445
+㼄 1121554554125121534
+㼅 112141312212512134
+㼆 1121433443344511214
+㼇 1121252324111212525
+㼈 11212522155444432411121
+㼉 335444535
+㼊 152533544
+㼋 1225133544
+㼌 3354433544
+㼍 11123433544
+㼎 33544413434
+㼏 344353133544
+㼐 45132512233544
+㼑 12543123433544
+㼒 33544251113533
+㼓 335444315112234
+㼔 25112522133544
+㼕 243452512512133544
+㼖 33544551353334251214251214
+㼗 121554
+㼘 2521554
+㼙 2521554
+㼚 41351554
+㼛 11321554
+㼜 251341554
+㼝 354551554
+㼞 143121554
+㼟 325111554
+㼠 445151554
+㼡 3112341554
+㼢 12251251554
+㼣 1325111554
+㼤 1112531554
+㼥 1213151554
+㼦 1213541554
+㼧 54251121554
+㼨 34452511554
+㼩 1355341554
+㼪 13434341554
+㼫 251112341554
+㼬 121431121554
+㼭 121212511554
+㼮 151125311554
+㼯 125112341554
+㼰 325113121554
+㼱 2113545341554
+㼲 1325221341554
+㼳 2343251111554
+㼴 2511252141554
+㼵 2511121341554
+㼶 3412511221554
+㼷 2521325221554
+㼸 44534342511554
+㼹 1224153251554
+㼺 41351122511554
+㼻 332343421341554
+㼼 125221112341554
+㼽 134343434341554
+㼾 413522115151554
+㼿 4143125112111554
+㽀 4312535111341554
+㽁 1331234312341554
+㽂 3412515415411554
+㽃 3431234251211554
+㽄 1221113433121554
+㽅 5433412514311554
+㽆 24345251251211554
+㽇 32113434511451554
+㽈 353113454521341554
+㽉 125125314252211554
+㽊 411125143344334541554
+㽋 41112515544445544441554
+㽌 1452444435453251211554
+㽍 122111554
+㽎 1221113454535
+㽏 44134125112211
+㽐 122114315112234
+㽑 12211125221251112
+㽒 251215331121
+㽓 311213112131121
+㽔 2243135333431121
+㽕 2512155
+㽖 2512153
+㽗 2512134
+㽘 251214135
+㽙 251215435
+㽚 251213112
+㽛 2512135251
+㽜 3545525121
+㽝 13542225121
+㽞 25125125121
+㽟 251213443124
+㽠 251211343434
+㽡 2512132511312
+㽢 2512113425115
+㽣 2512112511534
+㽤 2512135431234
+㽥 25121545231234
+㽦 433443344525121
+㽧 25121431554554
+㽨 25121431113121
+㽩 2512154545434333
+㽪 25121432524312511
+㽫 415533241112125121
+㽬 125125121125125121
+㽭 2512114524444132522
+㽮 25121251212512131121
+㽯 25121252324111212534251
+㽰 3511351152134
+㽱 4134152
+㽲 4134115
+㽳 41341115
+㽴 41341134
+㽵 41341121
+㽶 41341515
+㽷 413412534
+㽸 413414535
+㽹 413413354
+㽺 41341354
+㽻 413411254
+㽼 413415152
+㽽 4134112251
+㽾 4134152252
+㽿 4134133544
+㾀 4134112154
+㾁 4134112344
+㾂 4134154251
+㾃 4134144535
+㾄 4134125121
+㾅 413413523
+㾆 4134125211
+㾇 4134125111
+㾈 4134132124
+㾉 4134134454
+㾊 41341125234
+㾋 41341321234
+㾌 41341312135
+㾍 41341132522
+㾎 4134125251
+㾏 41341121121
+㾐 41341135422
+㾑 41341341251
+㾒 41341531251
+㾓 413412512511
+㾔 41341251251
+㾕 413414143112
+㾖 413412511211
+㾗 413414511534
+㾘 413411251134
+㾙 413413413252
+㾚 4134121213511
+㾛 413415114554
+㾜 413411343434
+㾝 413411251112
+㾞 413411253511
+㾟 413412121233
+㾠 413413531121
+㾡 413411215452
+㾢 4134113434234
+㾣 4134134112431
+㾤 4134144534121
+㾥 4134121123454
+㾦 4134141431251
+㾧 4134125111234
+㾨 4134113412512
+㾩 4134131221135
+㾪 41341234325111
+㾫 41341451325122
+㾬 41341153532511
+㾭 41341312344334
+㾮 41341325111121
+㾯 41341251211534
+㾰 41341122513511
+㾱 41341543341135
+㾲 413411121533134
+㾳 41341413534531
+㾴 41341123425111
+㾵 41341411125112
+㾶 41341255452511
+㾷 413413321531535
+㾸 413414125125251
+㾹 413412121351234
+㾺 413411211254444
+㾻 41341523411234
+㾼 41341511534454
+㾽 41341325151454
+㾾 413414315112234
+㾿 4134145115452
+㿀 413411121431121
+㿁 413413251113412
+㿂 4134125211213134
+㿃 4134112213545252
+㿄 4134113113453554
+㿅 4134133221212134
+㿆 4134131234413534
+㿇 4134154154132511
+㿈 4134155332411121
+㿉 41341251212511134
+㿊 41341153515352511
+㿋 413412512512511234
+㿌 413413412512513434
+㿍 413413535112533112
+㿎 41341121222511134
+㿏 413415113251431112
+㿐 413411212134354354
+㿑 4134154154132411121
+㿒 4134112151211251124
+㿓 4134113434342512134
+㿔 41341251212512125121
+㿕 413415112251135321511
+㿖 413412153152512125221
+㿗 413413123435132511134
+㿘 413414334433445251251
+㿙 41341252212522125221
+㿚 413412522155444432411121
+㿛 413411254125441352211535
+㿜 4134132511134125125125125122
+㿝 3251154
+㿞 325113115
+㿟 3251132511
+㿠 32511243135
+㿡 32511341534
+㿢 2511351132511
+㿣 32511251135345
+㿤 32511111342511
+㿥 32114532411121
+㿦 1215213355432511
+㿧 3251112151211251124
+㿨 325111331234312342121
+㿩 3251124345251254312114444
+㿪 53254354
+㿫 153553254
+㿬 532545215
+㿭 3312453254
+㿮 2513453254
+㿯 34125135254
+㿰 41343453254
+㿱 121331253254
+㿲 1341251253254
+㿳 5325455525121
+㿴 13412211153254
+㿵 53254132522134
+㿶 414345415353254
+㿷 43111312153254
+㿸 5325425112522154
+㿹 53254121431112454
+㿺 25111221342413453254
+㿻 11225221
+㿼 113225221
+㿽 341525221
+㿾 4451225221
+㿿 5213425221
+䀀 4415525221
+䀁 13251125221
+䀂 44553125221
+䀃 135333425221
+䀄 4454543425221
+䀅 452412125221
+䀆 51121433425221
+䀇 1225131125225221
+䀈 51154153525221
+䀉 31342512525125221
+䀊 4415415413433325221
+䀋 121312125344444125221
+䀌 5111213251113251125221
+䀍 41431251112354121251113425221
+䀎 2511115
+䀏 3525111
+䀐 25111333
+䀑 25111544
+䀒 25111312
+䀓 25111354
+䀔 25111534
+䀕 251115152
+䀖 251111134
+䀗 251115134
+䀘 251111132
+䀙 251111553
+䀚 251113552
+䀛 251113533
+䀜 353325111
+䀝 251111535
+䀞 251114412
+䀟 2511151532
+䀠 2511125111
+䀡 2511121251
+䀢 2511131134
+䀣 2511145434
+䀤 3542425111
+䀥 2511135234
+䀦 2511112251
+䀧 25111122134
+䀨 25111312251
+䀩 25111354251
+䀪 25111332112
+䀫 25111341251
+䀬 25111341121
+䀭 25111415334
+䀮 25111415325
+䀯 251111251124
+䀰 251113434251
+䀱 251113541112
+䀲 251113155414
+䀳 251111251234
+䀴 251111555121
+䀵 251115431134
+䀶 251114511534
+䀷 251111215453
+䀸 121331225111
+䀹 251111343434
+䀺 322313425111
+䀻 251112512115
+䀼 251111311534
+䀽 251113212154
+䀾 132515425111
+䀿 251111213312
+䁀 251111213312
+䁁 2511141251234
+䁂 1251255425111
+䁃 2511111213534
+䁄 2511112143112
+䁅 2511152125221
+䁆 2511113425115
+䁇 4454543425111
+䁈 4513313425111
+䁉 4513153425111
+䁊 2511154425111
+䁋 25111122151234
+䁌 25111251212511
+䁍 25111131251534
+䁎 25111412514512
+䁏 25111125221531
+䁐 2511112225134
+䁑 25111251113533
+䁒 25111251122111
+䁓 25111345234354
+䁔 25111344311354
+䁕 25111515152511
+䁖 25111431234531
+䁗 251112521251431
+䁘 251113443311252
+䁙 251112511445531
+䁚 251112512511134
+䁛 25111325113554
+䁜 251112511243135
+䁝 433443344525111
+䁞 343434341325111
+䁟 25111431113121
+䁠 251114315112234
+䁡 251115112251134
+䁢 2511141533152134
+䁣 2511112511214124
+䁤 2511141432512251
+䁥 251111122132515
+䁦 2511121531525111
+䁧 2511112212511134
+䁨 251114125152152
+䁩 2511135251214444
+䁪 2511112511123312
+䁫 25111254312114444
+䁬 25111432524312511
+䁭 25111134413441344
+䁮 25111153515352511
+䁯 25111341251541541
+䁰 25111121132511134
+䁱 25111121121121135
+䁲 25111252212511134
+䁳 251111221344132
+䁴 251114125251125111
+䁵 251112522112513534
+䁶 251113251141533134
+䁷 321134345114525111
+䁸 251112512211311534
+䁹 251115132514143112
+䁺 251112522112143112
+䁻 25111325115545541234
+䁼 25111254312114444121
+䁽 25111555253415445445
+䁾 2511112225221134534
+䁿 254312114444134425111
+䂀 251114311213123415534
+䂁 2511135251153535251354
+䂂 25111251112511132411121
+䂃 2511134432522151154124
+䂄 2511125111251113241112154
+䂅 251114111251554444554444251214
+䂆 54523354
+䂇 545235211
+䂈 54523251214
+䂉 54523325131134
+䂊 5452335251353334
+䂋 12251152545231234
+䂌 54523414312511211
+䂍 54523251112213424134
+䂎 545233121353121352511134
+䂏 3113453251
+䂐 3113452252
+䂑 31134212135
+䂒 31134121251
+䂓 311342511135
+䂔 3113412143112
+䂕 31134551353334
+䂖 134251
+䂗 1325135
+䂘 13251544
+䂙 1325152
+䂚 132513434
+䂛 132515452
+䂜 132511112
+䂝 132511534
+䂞 132511234
+䂟 5325113251
+䂠 1325131134
+䂡 1325132121
+䂢 1325135444
+䂣 13251212135
+䂤 1325132124
+䂥 1325151515
+䂦 1325134333
+䂧 1325135234
+䂨 1325133124
+䂩 13251251341
+䂪 13251341534
+䂫 13251354152
+䂬 12135413251
+䂭 13251413434
+䂮 11125313251
+䂯 13251413121
+䂰 132513123422
+䂱 132514325135
+䂲 121545313251
+䂳 132513434121
+䂴 132514111251
+䂵 132511212534
+䂶 132511215453
+䂷 1325131221135
+䂸 1325112511534
+䂹 1325135444334
+䂺 1325125111234
+䂻 1325112111534
+䂼 1325134454544
+䂽 1325121251112
+䂾 1325113434234
+䂿 1325125342511
+䃀 1325115112531
+䃁 1325112155121
+䃂 1325125111535
+䃃 1325125431415
+䃄 1325141251234
+䃅 1325143251112
+䃆 1325112211134
+䃇 1325132511252
+䃈 13251153532511
+䃉 13251515152511
+䃊 1325112225111
+䃋 13251341251122
+䃌 13251125221121
+䃍 13251431353334
+䃎 13251134354354
+䃏 13251251131121
+䃐 13251445341344
+䃑 132513354143554
+䃒 132511251254312
+䃓 132511122125211
+䃔 13251445251251
+䃕 433443344513251
+䃖 132513251154444
+䃗 132515112413422
+䃘 1325112512554121
+䃙 1325141352211535
+䃚 1325141533131134
+䃛 132511251112454
+䃜 1311345355413251
+䃝 1325112135213134
+䃞 4125152135413251
+䃟 13251122125113134
+䃠 1325141533152134
+䃡 13251153515352511
+䃢 13251341124313534
+䃣 13251344335554444
+䃤 132515112321155212
+䃥 13251414312511211
+䃦 41251521313413251
+䃧 5235413112113251
+䃨 13251515251251214
+䃩 132512512211311534
+䃪 132514125251125111
+䃫 132513513344111251
+䃬 13251252325113554
+䃭 132511312515344544
+䃮 13251121431112454
+䃯 132513251141341234
+䃰 1325144535445411234
+䃱 13251121211121111534
+䃲 13251335414355425221
+䃳 13251555253415445445
+䃴 13251411125112132511
+䃵 132514112112544443534
+䃶 132514125221241343543
+䃷 132514152513511531354
+䃸 1325134341211121111534
+䃹 1325151122511125431234
+䃺 132514131234123421112111
+䃻 13251145244441221251123511
+䃼 452424
+䃽 45241254
+䃾 45241535
+䃿 45241134
+䄀 45241534
+䄁 452412215
+䄂 452425121
+䄃 452425134
+䄄 4524251341
+䄅 43113411234
+䄆 4524312251
+䄇 45242511121
+䄈 45241251431
+䄉 45243121534
+䄊 45241214544
+䄋 452413425115
+䄌 452454545454
+䄍 452412212511
+䄎 452413412512
+䄏 45241223134
+䄐 5225211234515
+䄑 452435152511
+䄒 452434454544
+䄓 4524325111121
+䄔 4524325125214
+䄕 4524253425121
+䄖 4524341251122
+䄗 4524312155212
+䄘 45244143454153
+䄙 45244525114134
+䄚 452412512212511
+䄛 452425112512531
+䄜 45244134522554
+䄝 452411134321511
+䄞 452435445411234
+䄟 31153115311511234
+䄠 45244125251125111
+䄡 45243513344111251
+䄢 452441432533543211
+䄣 4524121252212511134
+䄤 45241251234352511134
+䄥 4524145244442512512511234341
+䄦 3123452
+䄧 3123453
+䄨 31234112
+䄩 31234154
+䄪 31234354
+䄫 31234515
+䄬 31234525
+䄭 31234312
+䄮 312341134
+䄯 312341132
+䄰 312341523
+䄱 312344153
+䄲 312342534
+䄳 312342121
+䄴 312343511
+䄵 31234152
+䄶 3123451532
+䄷 3123413251
+䄸 3123432511
+䄹 3123434312
+䄺 31234151534
+䄻 31234341534
+䄼 31234125341
+䄽 31234125351
+䄾 31234113534
+䄿 31234251153
+䅀 31234135422
+䅁 44553131234
+䅂 31234354251
+䅃 12135431234
+䅄 31234535353
+䅅 31234121121
+䅆 31234413534
+䅇 12522131234
+䅈 43113431234
+䅉 31234122431
+䅊 31234413315
+䅋 312343525135
+䅌 312342512511
+䅍 31234312154
+䅎 312343123453
+䅏 312345133115
+䅐 312342511135
+䅑 312343443531
+䅒 31234122415
+䅓 312343525154
+䅔 3123455525121
+䅕 3123451312251
+䅖 3123413425115
+䅗 3123431234531
+䅘 3123413434234
+䅙 3123425111535
+䅚 3123443113455
+䅛 3123425112511
+䅜 3123431122211
+䅝 3123444534121
+䅞 3123425111124
+䅟 3123454134333
+䅠 31234251112134
+䅡 31234132511134
+䅢 31234251212511
+䅣 31234325111121
+䅤 31234312321511
+䅥 31234251135345
+䅦 3123412225121
+䅧 31234414312511
+䅨 31234312342511
+䅩 31234125425134
+䅪 31234251212534
+䅫 31234412511234
+䅬 312344313425221
+䅭 312344143454153
+䅮 312343445113251
+䅯 312344135112251
+䅰 312342513414544
+䅱 312342521251431
+䅲 312341213352511
+䅳 312343552335523
+䅴 312341245554234
+䅵 312344311214444
+䅶 312341311534124
+䅷 312341223411234
+䅸 312341224143112
+䅹 3123425112512531
+䅺 3123412522111234
+䅻 312344134522554
+䅼 312342511252254
+䅽 1215213355431234
+䅾 31234153515352511
+䅿 312341221122112
+䆀 31234254312114444
+䆁 312342522112143112
+䆂 312344134315112234
+䆃 43132511145431234
+䆄 31234412525112511
+䆅 312344135342511134
+䆆 312342512512511234
+䆇 312343532511154444
+䆈 31234513241343112454
+䆉 31234252215425113535
+䆊 312342113525121122134
+䆋 3123435251251115115115
+䆌 312343123413544111251
+䆍 3123441431251111515111
+䆎 3123434341211121111534
+䆏 3123443123425121122134
+䆐 111343123411134312341113431234
+䆑 4453412
+䆒 44534354
+䆓 445345435
+䆔 445342512
+䆕 445345134
+䆖 445341354
+䆗 4453425152
+䆘 4453425112
+䆙 4453412121
+䆚 44534251251
+䆛 44534251315
+䆜 44534132511
+䆝 44534325221
+䆞 44534251135
+䆟 44534341251
+䆠 44534125125
+䆡 445344511543
+䆢 445341215134
+䆣 445341311543
+䆤 445343251113
+䆥 445341353334
+䆦 4453443344334
+䆧 4453431234531
+䆨 4453425111134
+䆩 4453425111134
+䆪 24313544534121
+䆫 44534353344544
+䆬 445342512511134
+䆭 445341251112112
+䆮 445344415114554
+䆯 4453454545454531
+䆰 4453412512512515
+䆱 4453444143344334
+䆲 4453441351124134
+䆳 445341353334454
+䆴 4453435251125115
+䆵 44534432524312511
+䆶 44534324111214444
+䆷 44534545232534251
+䆸 44534543341251431
+䆹 44534414312511211
+䆺 44534343123425121
+䆻 4453451221113134
+䆼 4453425525251454
+䆽 445342153151353334
+䆾 4453412512531425221
+䆿 4453452133251111234
+䇀 44534122125112122111
+䇁 4453435251214444431112
+䇂 414312
+䇃 41431515
+䇄 41431315
+䇅 414311534
+䇆 414314412
+䇇 4143151515
+䇈 4143154121
+䇉 4143113251
+䇊 4143141354
+䇋 41431354354
+䇌 414312432511
+䇍 414312512134
+䇎 4143112212511
+䇏 4143141251521
+䇐 4143151124143
+䇑 4143132511312
+䇒 51154153541431
+䇓 33313251113441431
+䇔 415251351141431354
+䇕 4143114524444132522
+䇖 314314353
+䇗 3143143454
+䇘 3143141551
+䇙 3143145152
+䇚 3143143224
+䇛 3143142121
+䇜 3143143534
+䇝 3143141534
+䇞 31431412211
+䇟 31431435453
+䇠 31431441121
+䇡 31431444512
+䇢 31431412251
+䇣 31431434234
+䇤 31431412534
+䇥 31431412121
+䇦 31431425134
+䇧 314314125341
+䇨 314314354152
+䇩 314314251153
+䇪 314314154121
+䇫 3143141225125
+䇬 314314311234
+䇭 314314121335
+䇮 314314323121
+䇯 314314122111
+䇰 314314525341
+䇱 314314253541
+䇲 314314143134
+䇳 314314111534
+䇴 314314125351
+䇵 3143144413312
+䇶 3143143535112
+䇷 3143142515322
+䇸 3143142511121
+䇹 3143145113251
+䇺 3143141251431
+䇻 3143145133115
+䇼 3143142515215
+䇽 3143141213312
+䇾 3143144111251
+䇿 3143141251234
+䈀 3143143535122
+䈁 31431434125122
+䈂 314314431132
+䈃 31431444153251
+䈄 31431452413452
+䈅 31431412511534
+䈆 31431445131344
+䈇 31431421251112
+䈈 31431435115215
+䈉 31431441431531
+䈊 31431412134354
+䈋 31431425342511
+䈌 31431444125111
+䈍 31431441525111
+䈎 314314122151234
+䈏 314314125125121
+䈐 314314442134334
+䈑 31431425525251
+䈒 314314122543112
+䈓 314314251135345
+䈔 314314512115154
+䈕 314314251112134
+䈖 314314312344412
+䈗 314314325434354
+䈘 314314431554554
+䈙 314314554444124
+䈚 314314542514544
+䈛 314314212512254
+䈜 314314325114554
+䈝 314314521342511
+䈞 314314412512511
+䈟 314314251113422
+䈠 314314344311354
+䈡 314314353344544
+䈢 314314542511234
+䈣 314314121213134
+䈤 314314123412211
+䈥 314314353511253
+䈦 314314345234354
+䈧 314314344335554444
+䈨 31431452511534
+䈩 314314341443122
+䈪 3143141251254312
+䈫 3143145544442534
+䈬 3143144411251124
+䈭 314314325113554
+䈮 3143144143135251
+䈯 3143141225111134
+䈰 3143141212432511
+䈱 3143143443321511
+䈲 3143143354143554
+䈳 3143142511541541
+䈴 3143144315112234
+䈵 3143143454541541
+䈶 3143144453434251
+䈷 3143141234354251
+䈸 31431435351124412
+䈹 31431444532132511
+䈺 31431455444435444
+䈻 31431435111251124
+䈼 31431444545434252
+䈽 31431412212511121
+䈾 31431412342432511
+䈿 3143144525114134
+䉀 31431441312214444
+䉁 31431412211134454
+䉂 31431425121554234
+䉃 31431452133544124
+䉄 3143145212134354
+䉅 31431412143112354
+䉆 31431432511154444
+䉇 31431412211134522
+䉈 314314122125113134
+䉉 314314353511233544
+䉊 314314541341251112
+䉋 314314531521325111
+䉌 31431452431353334
+䉍 314314511225114544
+䉎 314314243452511234
+䉏 3143143535112533112
+䉐 314314125111212251
+䉑 314314311222214444
+䉒 314314343123425121
+䉓 314314123425111234
+䉔 314314135415341534
+䉕 314314432524312511
+䉖 314314125111234454
+䉗 314314121251122111
+䉘 314314123444511234
+䉙 314314145244441154
+䉚 31431425221451554
+䉛 314314325431234134
+䉜 3143143113432411121
+䉝 3143144311213121534
+䉞 3143141312515344544
+䉟 3143141213241112154
+䉠 3143143322521353134
+䉡 3143144125251125111
+䉢 3143141234341252511
+䉣 314314321511354444
+䉤 3143144312345313134
+䉥 31431412132535414544
+䉦 314314125221134515454
+䉧 314314354533411243122
+䉨 314314414313533343554
+䉩 314314123412512512515
+䉪 314314251212512125121
+䉫 314314312343533424134
+䉬 314314413543345153554
+䉭 314314555253415445445
+䉮 3143145112251132411121
+䉯 314314125125542511134
+䉰 314314255452511413434
+䉱 3143144523412512512515
+䉲 31431451513425234343434
+䉳 31431435251214444431112
+䉴 31431441251251112213534
+䉵 31431425111134344511534
+䉶 314314324111213241112154
+䉷 3143142512511351221113134
+䉸 314314411125141431134143112
+䉹 314314145244442512512511234341
+䉺 431234121
+䉻 4312343515
+䉼 4312343312
+䉽 43123443112
+䉾 21135431234
+䉿 43123434312
+䊀 43123412251
+䊁 431234312135
+䊂 4312125234
+䊃 431234351252
+䊄 121354431234
+䊅 431234354251
+䊆 321511431234
+䊇 4312341251124
+䊈 4312343155414
+䊉 4312344451234
+䊊 4312345133115
+䊋 4312345213121
+䊌 4312344131535
+䊍 31234353431234
+䊎 43123443113455
+䊏 43123443344334
+䊐 43123425111535
+䊑 43123424325251
+䊒 43123432411121
+䊓 431234251112134
+䊔 43123412225134
+䊕 43123451111254
+䊖 431234122543112
+䊗 431234325111121
+䊘 431234251212511
+䊙 132511132431234
+䊚 431234325151454
+䊛 4312343412343554
+䊜 43123412511214124
+䊝 431234312344544
+䊞 43123441432512251
+䊟 43123412212523434
+䊠 511541535431234
+䊡 43123425112522154
+䊢 52133544124431234
+䊣 43123412212512134
+䊤 431234125221251112
+䊥 4312345112321155212
+䊦 431234121451251431
+䊧 431234515322511134
+䊨 415251351143123435
+䊩 4312343123425121
+䊪 43122251125214
+䊫 4312342522121112111
+䊬 3123425111234431234
+䊭 43123412151211251124
+䊮 43123454154132411121
+䊯 43123441312212512134
+䊰 431234411125112132511
+䊱 43123434341211121111534
+䊲 12522143123441431331121
+䊳 4312344131234123421112111
+䊴 4312343143143412512513434
+䊵 55444435
+䊶 554444525
+䊷 554444123
+䊸 554444115
+䊹 554444312
+䊺 5544441551
+䊻 5544443534
+䊼 5544442121
+䊽 5544445134
+䊾 5544441234
+䊿 5544441134
+䋀 4513554234
+䋁 5544444135
+䋂 5544443434
+䋃 5544443115
+䋄 5544442534
+䋅 5544443112
+䋆 554444513
+䋇 5544445134
+䋈 53154554234
+䋉 55444444534
+䋊 55444412121
+䋋 55444451515
+䋌 5544441515
+䋍 55444412512
+䋎 55444425111
+䋏 55444431211
+䋐 55444415534
+䋑 55444412534
+䋒 55444454523
+䋓 55444435511
+䋔 55444413241
+䋕 323121554234
+䋖 554444511112
+䋗 554444125125
+䋘 554444111234
+䋙 554444122111
+䋚 554444541541
+䋛 554444431234
+䋜 451354554234
+䋝 554444443531
+䋞 554444253434
+䋟 5544445154544
+䋠 5544441251124
+䋡 5544443411234
+䋢 1213312554234
+䋣 3155414554234
+䋤 1121554234354
+䋥 5544442511211
+䋦 5544443155414
+䋧 55444451312251
+䋨 55444441431251
+䋩 55444432151135
+䋪 5544445212512
+䋫 554444355112
+䋬 55444411342444
+䋭 55444441542511
+䋮 55444434112431
+䋯 45131534554234
+䋰 25111134554234
+䋱 55444413434234
+䋲 55444425125115
+䋳 554444211352511
+䋴 554444545231234
+䋵 554444251135345
+䋶 554444132511134
+䋷 54523354554234
+䋸 554444331225111
+䋹 554444125125121
+䋺 554444312344334
+䋻 554444122543112
+䋼 554444535425221
+䋽 554444121121124
+䋾 554444134354354
+䋿 554444251211534
+䌀 554444312344412
+䌁 554444125221531
+䌂 554444513154121
+䌃 554444243251122
+䌄 554444125341254
+䌅 5544444135112251
+䌆 554444325113554
+䌇 5544441245554234
+䌈 5544442511541541
+䌉 5544442522112121
+䌊 5544443443311252
+䌋 554444122341251
+䌌 55444454154132511
+䌍 55444412212511121
+䌎 25121354251554234
+䌏 55444444545434252
+䌐 55444434432511135
+䌑 55444412512554121
+䌒 55444441352211535
+䌓 31554143554554234
+䌔 55444412512512515
+䌕 55444441312341234
+䌖 554444324111211234
+䌗 554444311222214444
+䌘 43252343134554234
+䌙 55444412212512134
+䌚 554444125221431234
+䌛 354441112513554234
+䌜 5544442243143111234
+䌝 5544441234123411234
+䌞 5544443412512513434
+䌟 5544445132514143112
+䌠 1312515343534554234
+䌡 5544442512211251431
+䌢 5544441452444434454
+䌣 55444431431444525151
+䌤 55444413425234343434
+䌥 55444434431215114544
+䌦 55444454154132411121
+䌧 55444412151211251124
+䌨 55444412235445411234
+䌩 55444412225221134534
+䌪 5544445112251135321511
+䌫 5544441251253142511135
+䌬 5544444143125111515111
+䌭 554444122324111214444
+䌮 55444414524444123425111
+䌯 55444412225125132411121
+䌰 554444122111122111122111
+䌱 554444415251351141431354
+䌲 55444412231254312114444
+䌳 5544441342523434343411214
+䌴 5544444152513511431112354
+䌵 554444513241342522135251214
+䌶 551123
+䌷 55125121
+䌸 5511154
+䌹 55125251
+䌺 551122111
+䌻 5515541541
+䌼 5514325135
+䌽 55134431234
+䌾 551122543112
+䌿 551125125121
+䍀 5512231425221
+䍁 551431353334454
+䍂 311252112
+䍃 3443311252
+䍄 31125221251
+䍅 31125234454
+䍆 31125244512
+䍇 3112523454
+䍈 31125214312
+䍉 31125225134
+䍊 311252413434
+䍋 31125231212211
+䍌 31125241431251
+䍍 1214513112523554
+䍎 3112521224135221154444
+䍏 25221
+䍐 25221112
+䍑 253434112
+䍒 252211234
+䍓 252211523
+䍔 252211354
+䍕 2522135154
+䍖 2522135515
+䍗 2522141554
+䍘 25221431234
+䍙 252213155414
+䍚 252214511534
+䍛 2522125122511
+䍜 2522132411121
+䍝 2522125342511
+䍞 25343412511534
+䍟 25221345234354
+䍠 252214134522554
+䍡 2522141352211535
+䍢 25221311222214444
+䍣 252211452444425121
+䍤 2522141432533543211
+䍥 252211331234312342121
+䍦 25221413452255432411121
+䍧 3112431112
+䍨 4311131252
+䍩 4311133134
+䍪 43111311234
+䍫 43111344535
+䍬 43111314312
+䍭 43111355414
+䍮 431113341534
+䍯 431113351355
+䍰 431113251341
+䍱 4311133411234
+䍲 43111332151135
+䍳 43111354545454
+䍴 43111331234531
+䍵 431113355112
+䍶 43111312511234
+䍷 431113521251152
+䍸 4311131251124124
+䍹 4311133251111344
+䍺 43111325125124544
+䍻 431113515515122134
+䍼 431113153515352511
+䍽 4311131331234312342121
+䍾 1132541541
+䍿 5415411121
+䎀 54154115534
+䎁 12251541541
+䎂 54154135515
+䎃 25211541541
+䎄 53251541541
+䎅 32511541541
+䎆 54154134454
+䎇 335414541541
+䎈 541541251153
+䎉 541541134534
+䎊 354251541541
+䎋 3121251541541
+䎌 5415412512134
+䎍 5415411251124
+䎎 5415411221115
+䎏 3445251541541
+䎐 12251112541541
+䎑 54154151124134
+䎒 54154115341534
+䎓 54154125342511
+䎔 5415411251124124
+䎕 4334433445541541
+䎖 432524312511541541
+䎗 313425125251541541
+䎘 5112321155212541541
+䎙 44512332511134541541
+䎚 541541111211125114544
+䎛 121335251
+䎜 121315121335
+䎝 121335541541
+䎞 121325115
+䎟 531132522
+䎠 354132522
+䎡 1325224334
+䎢 111234315
+䎣 1112345434
+䎤 1112345135251
+䎥 1112343434251
+䎦 11123443344334
+䎧 11123441431251
+䎨 11123413425115
+䎩 11123455525121
+䎪 11123425111124
+䎫 111234345234354
+䎬 1112342522112154
+䎭 1112343121251454
+䎮 11123441432512251
+䎯 11123412212511134
+䎰 111234122125113312
+䎱 111234252215425113535
+䎲 1221115
+䎳 1221113511
+䎴 1221111132
+䎵 12211145443
+䎶 12211125112
+䎷 122111311234
+䎸 1221111251251
+䎹 3431234122111
+䎺 12211131125222
+䎻 12211135121251
+䎼 12211151124134
+䎽 12211135152511
+䎾 12211134125122
+䎿 122111312344334
+䏀 122111125123422
+䏁 1221114454143112
+䏂 122111321511254
+䏃 1221114525114134
+䏄 12211144534154121
+䏅 12211135445411234
+䏆 12211112512212511
+䏇 12211112522111234
+䏈 122111554444554234
+䏉 12211125115545544444
+䏊 1221114143125111515111
+䏋 5112344544515
+䏌 342511
+䏍 542511
+䏎 3511354
+䏏 3511112
+䏐 35115134
+䏑 3544253434
+䏒 35113215
+䏓 35411135
+䏔 35115211
+䏕 35113121
+䏖 35115152
+䏗 35113115
+䏘 35111355
+䏙 35114535
+䏚 35112343
+䏛 35113541
+䏜 3511354
+䏝 35111154
+䏞 351111234
+䏟 351145434
+䏠 351141431
+䏡 351111234
+䏢 351153254
+䏣 351125111
+䏤 351151251
+䏥 351125211
+䏦 3511312251
+䏧 3511354354
+䏨 3511325151
+䏩 3511341251
+䏪 3511122111
+䏫 3511321234
+䏬 3511543112
+䏭 3511311234
+䏮 3511534134
+䏯 35111214544
+䏰 35115344544
+䏱 35115135251
+䏲 35114351523
+䏳 35111213312
+䏴 35112432511
+䏵 35111353334
+䏶 35111535121
+䏷 35112511112
+䏸 35111251251
+䏹 35112511135
+䏺 35113541112
+䏻 54251112154
+䏼 351115341534
+䏽 351141431251
+䏾 351111134112
+䏿 351331342511
+䐀 351113412512
+䐁 351113533434
+䐂 351151124134
+䐃 351125312341
+䐄 351135321511
+䐅 351151331134
+䐆 351134431234
+䐇 351135332511
+䐈 351112251111
+䐉 351155525121
+䐊 351125111535
+䐋 351134544544
+䐌 251221342511
+䐍 3511121251431
+䐎 3511251112134
+䐏 3511111342511
+䐐 3511312344334
+䐑 3511122151234
+䐒 3511134354354
+䐓 3511132511134
+䐔 3511451325122
+䐕 3511251122111
+䐖 3511513431234
+䐗 351112132511
+䐘 3511344311354
+䐙 3511122125112
+䐚 35115115452
+䐛 3511134122111
+䐜 35111225111134
+䐝 35112432511134
+䐞 35115154151541
+䐟 35111122125211
+䐠 3511122415325
+䐡 4143253354253434
+䐢 35113552335523
+䐣 35112512511134
+䐤 3511431113121
+䐥 35113454541541
+䐦 35111215425221
+䐧 35114125125251
+䐨 12145125113554
+䐩 35112521251431
+䐪 35113241112153
+䐫 351133234342134
+䐬 351112512212511
+䐭 351112213545252
+䐮 351141431331121
+䐯 351125121554234
+䐰 35113223542511
+䐱 351141432512251
+䐲 351154154132511
+䐳 351135251214444
+䐴 5115415352511
+䐵 351112212512134
+䐶 3511153515352511
+䐷 3511251251251112
+䐸 3511511121251211
+䐹 35115112321155212
+䐺 3511125221251112
+䐻 3511122514143112
+䐼 3511111253554234
+䐽 351112212523434
+䐾 35112522112143112
+䐿 3511325431234134
+䑀 35115132514143112
+䑁 32113434511452511
+䑂 35113211152511134
+䑃 35411224511353334
+䑄 351132511125121132
+䑅 35111222522145354
+䑆 351143111344511534
+䑇 3511331233122511134
+䑈 3511325115545541234
+䑉 35114152513511531354
+䑊 3511251212511134454
+䑋 351141251251112213534
+䑌 351151122511125431234
+䑍 351125111342511134531
+䑎 351134341211121111534
+䑏 351112225125132411121
+䑐 12512531234
+䑑 125125224314311134
+䑒 154121534
+䑓 1221145154121
+䑔 3215111252
+䑕 32151135112
+䑖 32151115112134
+䑗 321511251113533
+䑘 321511431113121
+䑙 3122512511
+䑚 3122513511
+䑛 31225135154
+䑜 312251122151234
+䑝 25125145354152
+䑞 1433443345354152
+䑟 344345354152325111121
+䑠 33541452
+䑡 335414544
+䑢 335414135
+䑣 335414333
+䑤 3354143445
+䑥 335414354
+䑦 33541435251
+䑧 33541432124
+䑨 33541431525
+䑩 33541412251
+䑪 335414341251
+䑫 335414431132
+䑬 335414341534
+䑭 335414441121
+䑮 335414351234
+䑯 3354144351523
+䑰 3354142121233
+䑱 33541444535455
+䑲 33541421251112
+䑳 33541434125122
+䑴 33541412211134
+䑵 33541425112511
+䑶 33541411212511
+䑷 33541445132511
+䑸 33541444511234
+䑹 335414445433454
+䑺 335414353251214
+䑻 335414415331521
+䑼 3354143552335523
+䑽 3354142511541541
+䑾 3354143241112154
+䑿 33541444532132511
+䒀 33541431431432124
+䒁 33541454154132511
+䒂 33541452133544124
+䒃 3354143121251454
+䒄 33541445125125121
+䒅 33541443113425111
+䒆 335414415425113134
+䒇 335414445125125121
+䒈 335414121222511134
+䒉 33541431122221354152
+䒊 3415355215
+䒋 25134355215
+䒌 4525114134355215
+䒍 4143454153355215
+䒎 1221344132355215
+䒏 432524312511355215
+䒐 122252214525111355215
+䒑 431
+䒒 12251
+䒓 12215
+䒔 12234
+䒕 122234
+䒖 122512
+䒗 122315
+䒘 122354
+䒙 122211
+䒚 1222343
+䒛 1225545
+䒜 1223112
+䒝 1223434
+䒞 1224535
+䒟 1223514
+䒠 1221112
+䒡 1225152
+䒢 1223552
+䒣 1222511
+䒤 1222511
+䒥 1221252
+䒦 1223454
+䒧 12212154
+䒨 12231134
+䒩 12231234
+䒪 12254132
+䒫 12232154
+䒬 12211234
+䒭 12251124
+䒮 12245354
+䒯 12245354
+䒰 122111215
+䒱 122525341
+䒲 122531315
+䒳 122351234
+䒴 122132511
+䒵 122531521
+䒶 122251153
+䒷 122312251
+䒸 122325221
+䒹 122111234
+䒺 122554234
+䒻 122252515
+䒼 122251221
+䒽 122253434
+䒾 122413534
+䒿 122452511
+䓀 122121251
+䓁 122121124
+䓂 1224111251
+䓃 1222515215
+䓄 1223533312
+䓅 1224413312
+䓆 1221213312
+䓇 1221213234
+䓈 1223323554
+䓉 122152352
+䓊 1221251251
+䓋 1224413515
+䓌 1221214544
+䓍 1222511112
+䓎 1224334354
+䓏 1221324251
+䓐 1221341525
+䓑 1224411132
+䓒 1223525121
+䓓 1221113124
+䓔 1221213521
+䓕 1221135454
+䓖 1224453453
+䓗 12234544544
+䓘 12235424251
+䓙 12231221153
+䓚 12233225111
+䓛 12251352252
+䓜 12244135154
+䓝 12252125221
+䓞 12245131344
+䓟 12235121251
+䓠 12225342511
+䓡 12231134251
+䓢 12225122511
+䓣 12212523434
+䓤 12235334544
+䓥 34122251112
+䓦 12225122134
+䓧 12252251541
+䓨 12245311252
+䓩 12212341254
+䓪 12225113533
+䓫 12213412512
+䓬 12221251112
+䓭 12234123422
+䓮 122545233134
+䓯 122112155414
+䓰 122125221121
+䓱 1222121351234
+䓲 122324325135
+䓳 122332511534
+䓴 122132522134
+䓵 122251251251
+䓶 122125123422
+䓷 122441332112
+䓸 122531531112
+䓹 122344511534
+䓺 122431121134
+䓻 122451135531
+䓼 1225311353334
+䓽 1224111251515
+䓾 1224412343531
+䓿 1225425431121
+䔀 1223231234531
+䔁 1221252211234
+䔂 1224454143112
+䔃 122452425111
+䔄 1223443311252
+䔅 1221251212512
+䔆 1223532511211
+䔇 1222521251431
+䔈 1221212511134
+䔉 1223123431234
+䔊 1221121431132
+䔋 1225544442343
+䔌 1223251113412
+䔍 1221211254444
+䔎 1221251234454
+䔏 1223121251454
+䔐 12244115341534
+䔑 12234112344412
+䔒 1225241431251
+䔓 12241112513112
+䔔 12241431251135
+䔕 12235111251124
+䔖 1225212134354
+䔗 1224524431112
+䔘 12231125225111
+䔙 12234112431354
+䔚 12213115342511
+䔛 12215132511134
+䔜 12212211125211
+䔝 122212135554234
+䔞 12241554413412
+䔟 12231234354354
+䔠 12212342432511
+䔡 12235251214444
+䔢 12234343434115
+䔣 12231234223112
+䔤 12232511132511
+䔥 12251143123432
+䔦 12212343155414
+䔧 12231234221234
+䔨 12255332411121
+䔩 12212512343134
+䔪 12213343434344
+䔫 12252121125234
+䔬 12225121122134
+䔭 122445454425112
+䔮 122122111343312
+䔯 122125351112251
+䔰 122445125125121
+䔱 122121251122111
+䔲 122543341251431
+䔳 122354413444444
+䔴 122522521123454
+䔵 122511225111234
+䔶 122121251112134
+䔷 122112111213445
+䔸 122134413441344
+䔹 12252431353334
+䔺 12252131212511
+䔻 122412515213134
+䔼 12253421215342121
+䔽 122441251135345
+䔾 122121251135345
+䔿 122431253511124
+䕀 122121112343534
+䕁 122211121111234
+䕂 122542513234454
+䕃 12252341211154
+䕄 12252534125221
+䕅 122531321511254
+䕆 1221234341251122
+䕇 122413325113554
+䕈 1225213122151234
+䕉 1222522112143112
+䕊 1224125251125111
+䕋 1221214135112251
+䕌 1223123432411121
+䕍 1224135342534251
+䕎 12225111125125121
+䕏 1224311213121534
+䕐 1224524125125121
+䕑 1225544443443531
+䕒 12212125143153251
+䕓 12244535445411234
+䕔 12233234112431112
+䕕 12244125112522154
+䕖 1225213554234454
+䕗 12232511125121132
+䕘 12234454132511134
+䕙 12212132411121534
+䕚 12212512125111345
+䕛 12241112511343434
+䕜 12254154141343412
+䕝 12231234344325211
+䕞 122511225114511534
+䕟 122311251251511134
+䕠 122413543345153554
+䕡 12251122511251251
+䕢 12213251431113121
+䕣 12245234251135345
+䕤 12225125125111252
+䕥 122343425234343434
+䕦 1224152513511531354
+䕧 122255452511413434
+䕨 1223511431134554234
+䕩 1221234134432511234
+䕪 1224412522112143112
+䕫 12232511212151534354
+䕬 1225151251211251211
+䕭 1221213412143344334
+䕮 1221214311235431234
+䕯 1221252211123433544
+䕰 1224334343123425121
+䕱 1221251431132511134
+䕲 1224134125251111234
+䕳 12251513425234343434
+䕴 12231234324111214444
+䕵 12212125132511154444
+䕶 12241112513241112154
+䕷 12241312341234554234
+䕸 122254312114444121251
+䕹 122413434123432411121
+䕺 122224314311212211154
+䕻 1221254125441352211535
+䕼 1221221251113432411121
+䕽 12225121212522135251214
+䕾 1222512511351221113134
+䕿 1221221251113432511154444
+䖀 122251251132511134251251
+䖁 1222511252144143125114544
+䖂 12241112515544445544443112
+䖃 122132511221325112213251
+䖄 12212212511134324111214444
+䖅 122145244442512512511234341
+䖆 122125351141251251112213534
+䖇 12212343112521234453444445251333
+䖈 21531535
+䖉 215315112
+䖊 3421531535
+䖋 2153153534
+䖌 2153153522
+䖍 2153153134
+䖎 5221531535
+䖏 21531535334
+䖐 331221531535
+䖑 215315352511
+䖒 2153151251431
+䖓 5225221531535
+䖔 1215421531535
+䖕 2153153525111
+䖖 2153153525112
+䖗 215315131251534
+䖘 2153153535251354
+䖙 125125243321531535
+䖚 215315353251154444
+䖛 215315351245554234
+䖜 21531535215315352511
+䖝 3251214
+䖞 251214124
+䖟 415251214
+䖠 251214354
+䖡 2512145211
+䖢 2512142343
+䖣 2512143324
+䖤 35455251214
+䖥 54523251214
+䖦 25121452252
+䖧 25121425111
+䖨 25121413251
+䖩 25121445434
+䖪 212135251214
+䖫 25121434112
+䖬 25121425112
+䖭 431134251214
+䖮 251214325251
+䖯 121121251214
+䖰 251214333534
+䖱 251214111215
+䖲 251214352511
+䖳 251214445315
+䖴 251214341534
+䖵 251214251214
+䖶 2512141353334
+䖷 2512143413252
+䖸 3121534251214
+䖹 2512142121112
+䖺 322354251214
+䖻 2512144154325
+䖼 2512141215452
+䖽 3123422251214
+䖾 2512144451135
+䖿 31234353251214
+䗀 25121412134354
+䗁 25121413412512
+䗂 25121421531535
+䗃 25121415341534
+䗄 25121434343312
+䗅 25121412111534
+䗆 25121444525151
+䗇 25121435431234
+䗈 25121441525111
+䗉 25121425112511
+䗊 25121443344334
+䗋 251214122111234
+䗌 251214251131121
+䗍 551353334251214
+䗎 251214125221121
+䗏 251214445433454
+䗐 415331525251214
+䗑 251214251141431
+䗒 25121443122431
+䗓 251214353344544
+䗔 251214325131134
+䗕 44535455251214
+䗖 251214122245252
+䗗 2512143143141132
+䗘 2512141215425221
+䗙 4451122134251214
+䗚 2512141251124124
+䗛 2512143223542511
+䗜 2512143545325121
+䗝 452425112251214
+䗞 1134251214251214
+䗟 13113453554251214
+䗠 41533152134251214
+䗡 25121412121154444
+䗢 2512143121251454
+䗣 12211251214251214
+䗤 25121441351125112
+䗥 25121433234342134
+䗦 2512143541112454
+䗧 25121441351124134
+䗨 25121435251214444
+䗩 25121413211234534
+䗪 41312214444251214
+䗫 25121441312341234
+䗬 3541112454251214
+䗭 25121425125124544
+䗮 25121413434343434
+䗯 25121432411121454
+䗰 251214251212511134
+䗱 251214224314311134
+䗲 251214431234354152
+䗳 251214543341251431
+䗴 251214314314312154
+䗵 2512141251211251211
+䗶 251214122251135345
+䗷 2512144143125114544
+䗸 4155332411121251214
+䗹 2512144315545544544
+䗺 3212154251214251214
+䗻 2512143143145115452
+䗼 25121431254312114444
+䗽 55444432411121251214
+䗾 25121425115545544444
+䗿 25121444545442522112
+䘀 32515112251214251214
+䘁 12132411121534251214
+䘂 251214121211121111534
+䘃 251214254312114444121
+䘄 12132511251214251214
+䘅 5425113535251214251214
+䘆 2512144451112252214544
+䘇 4134251214251214251214
+䘈 2512141312225112521453
+䘉 1134251214251214251214
+䘊 25121431431425221134534
+䘋 25121434341211121111534
+䘌 1122132515251214251214
+䘍 122251125214251214251214
+䘎 2512144111251554444554444515
+䘏 32522152
+䘐 3252215344
+䘑 32522145534
+䘒 3252215434354
+䘓 32522135321511
+䘔 325221445354251
+䘕 3324135112
+䘖 332311252112
+䘗 3322521554234112
+䘘 3321121554234112
+䘙 332521251151252112
+䘚 41353412
+䘛 4523435
+䘜 45234252
+䘝 45234154
+䘞 45234551
+䘟 452345152
+䘠 452341334
+䘡 1535413534
+䘢 4523444512
+䘣 45234212135
+䘤 4523412344
+䘥 4523425112
+䘦 4523451335
+䘧 4523425134
+䘨 45234413434
+䘩 45234352511
+䘪 45234415435
+䘫 531251413534
+䘬 45234113534
+䘭 45234154121
+䘮 1234341534
+䘯 452342432511
+䘰 452343212154
+䘱 4134342513534
+䘲 452345114554
+䘳 4523434112341
+䘴 4523412343454
+䘵 4523451124134
+䘶 4523452413452
+䘷 452344325234
+䘸 4523441323544
+䘹 4523441343412
+䘺 4523444512134
+䘻 4523441542511
+䘼 4523444535455
+䘽 4523432151135
+䘾 4523444525151
+䘿 4523451352252
+䙀 4523435113511
+䙁 4523415341534
+䙂 4523434544544
+䙃 45234131212511
+䙄 45234312321511
+䙅 45234125221531
+䙆 45234543341134
+䙇 45234132522134
+䙈 45234325131134
+䙉 45234331225111
+䙊 45234122245252
+䙋 45234445125111
+䙌 45234251212534
+䙍 45234534353432
+䙎 452343443554134
+䙏 452341251124124
+䙐 452341251254312
+䙑 452344125113534
+䙒 452344155425121
+䙓 452342522112154
+䙔 4523412512512515
+䙕 4523433234342134
+䙖 4523425235113511
+䙗 4523441432512251
+䙘 4523413211234534
+䙙 45234513241343112
+䙚 32511154444413534
+䙛 4523441342513534
+䙜 452343541112454
+䙝 41121431123543534
+䙞 45234543341251431
+䙟 45234255212511521
+䙠 45234134315233534
+䙡 45234251212511134
+䙢 45234432524312511
+䙣 45234113421112111
+䙤 4523425525251454
+䙥 452341452444434454
+䙦 452341222522145354
+䙧 4523431254312114444
+䙨 4523425111234413534
+䙩 452341224511353334
+䙪 123434341234134413534
+䙫 452342113525121122134
+䙬 4523425111342511134531
+䙭 4523444511221342512134
+䙮 4523412225125132411121
+䙯 45234132112345342512134
+䙰 45234413452255432411121
+䙱 45234513241342522135251214
+䙲 125221134
+䙳 1252214334
+䙴 125221134515
+䙵 125221121121
+䙶 125351453534
+䙷 2511135124
+䙸 2511135124
+䙹 11322511135
+䙺 43342511135
+䙻 35232511135
+䙼 532512511135
+䙽 134432511135
+䙾 445152511135
+䙿 112342511135
+䚀 3354142511135
+䚁 3252512511135
+䚂 12132342511135
+䚃 21255112511135
+䚄 511241342511135
+䚅 134342342511135
+䚆 122251342511135
+䚇 2343251112511135
+䚈 1252211212511135
+䚉 1112531342511135
+䚊 43134252212511135
+䚋 25125111342511135
+䚌 32511134122511135
+䚍 121125111342511135
+䚎 111343215112511135
+䚏 4312343541522511135
+䚐 3113425125112511135
+䚑 2522125111342511135
+䚒 4143125112112511135
+䚓 1252212511122511135
+䚔 445123325111342511135
+䚕 12541254413522115352511135
+䚖 1452111125125125112343412511135
+䚗 35351123454
+䚘 3323535112112
+䚙 3535112125111
+䚚 3535112312135
+䚛 35351123121251
+䚜 353511232511312
+䚝 353511241343412
+䚞 353511213434234
+䚟 353511225111124
+䚠 353511225111535
+䚡 3535112251214544
+䚢 3535112122151234
+䚣 3535112251112134
+䚤 3535112251125214
+䚥 35351125154151541
+䚦 35351123321531535
+䚧 353511254154134333
+䚨 3535112543345153554
+䚩 3535112313425125251
+䚪 35351122522112513534
+䚫 32511415331343535112
+䚬 3535112431234354152
+䚭 353511212225125132411121
+䚮 411125153
+䚯 411125122
+䚰 411125135
+䚱 4111251234
+䚲 4111251333
+䚳 41112511254
+䚴 41112513511
+䚵 41112514412
+䚶 41112511134
+䚷 41112513415
+䚸 41112513432
+䚹 41112511535
+䚺 41112513134
+䚻 35444111251
+䚼 41112515211
+䚽 41112513115
+䚾 41112513121
+䚿 41112513534
+䛀 41112513354
+䛁 41112512511
+䛂 41112513132
+䛃 41112511135
+䛄 411125135455
+䛅 411125125112
+䛆 411125125121
+䛇 411125135251
+䛈 411125131134
+䛉 411125151515
+䛊 411125125134
+䛋 411125113534
+䛌 411125135515
+䛍 411125151532
+䛎 411125144534
+䛏 411125151335
+䛐 512514111251
+䛑 411125145434
+䛒 121154111251
+䛓 223144111251
+䛔 4111251132522
+䛕 4111251251134
+䛖 4111251251153
+䛗 1251254111251
+䛘 4111251323121
+䛙 4111251321234
+䛚 1112534111251
+䛛 4111251252511
+䛜 4111251325341
+䛝 41112515211252
+䛞 41112512511112
+䛟 41112511343434
+䛠 41112511251431
+䛡 41112513515251
+䛢 41112513123435
+䛣 41112512512115
+䛤 41112512512134
+䛥 41112513413252
+䛦 41112513434251
+䛧 41112514312345
+䛨 41112514143112
+䛩 411125112155121
+䛪 411125144534515
+䛫 411125112111534
+䛬 411125135311252
+䛭 411125112143112
+䛮 411125135424251
+䛯 411125151312251
+䛰 411125125111535
+䛱 411125125124544
+䛲 411125132511252
+䛳 411125113425115
+䛴 411125113412512
+䛵 411125134434554
+䛶 411125111121234
+䛷 411125144535455
+䛸 411125141321251
+䛹 4111251551353334
+䛺 4111251251213432
+䛻 4111251331225111
+䛼 4111251321511121
+䛽 4111251312321511
+䛾 41112511121554234
+䛿 41112511251254312
+䜀 41112515345342121
+䜁 41112511211215134
+䜂 41112513251113412
+䜃 411125132411121121
+䜄 4111251513241343112
+䜅 411125125232411121
+䜆 413123412344111251
+䜇 41112514134543534
+䜈 411125155525111234
+䜉 411125112343424134
+䜊 411125112512212511
+䜋 4111251251212511134
+䜌 4111251554444554444
+䜍 4111251134432511234
+䜎 4111251433443344553
+䜏 411125152131212511
+䜐 521312125114111251
+䜑 4111251121551214544
+䜒 4111251325431234134
+䜓 4111251122122151234
+䜔 4111251131212511454
+䜕 4111251122251125214
+䜖 41112511252212511134
+䜗 41112511312515344544
+䜘 4111251122352513134
+䜙 411125125115545544444
+䜚 41112512522123344454
+䜛 411125135251353525135
+䜜 411125121451343425111
+䜝 411125155455415545545
+䜞 411125141432533543211
+䜟 4111251121211121111534
+䜠 4111251331233122511134
+䜡 4111251132511454544354
+䜢 41112514451112252214544
+䜣 453312
+䜤 45122134
+䜥 452511154
+䜦 45122352511
+䜧 455345342121
+䜨 4525125124544
+䜩 451221251211354444
+䜪 343425135
+䜫 3434251121
+䜬 343425125121
+䜭 214513434251
+䜮 34342514453112
+䜯 343425135431234
+䜰 34342513251113412
+䜱 343425125112522154
+䜲 3434251555253415445445
+䜳 12514315
+䜴 12514312154
+䜵 125143153254
+䜶 1251431354152
+䜷 12514315114554
+䜸 12514315133115
+䜹 12514311251234
+䜺 125143112212511
+䜻 1251431251112134
+䜼 5452331341251431
+䜽 1251431341251122
+䜾 1251431414312511
+䜿 1251253141251431
+䝀 12514313545325121
+䝁 43344334451251431
+䝂 12512535541251431
+䝃 125143125115545544444
+䝄 1251431324111213241112154
+䝅 1353334121
+䝆 35331353334
+䝇 34351353334
+䝈 135333433155
+䝉 2243451353334
+䝊 135333415112134
+䝋 135333444511234
+䝌 135333454545454
+䝍 1353334451251112
+䝎 1353334252132522
+䝏 135333425112512531
+䝐 135333452131212511
+䝑 1353334414312511211
+䝒 135333412211154323334
+䝓 1353334555253415445445
+䝔 135333412225125132411121
+䝕 1353334122111122111122111
+䝖 34435333324
+䝗 34435331234
+䝘 34435333554
+䝙 34435331345
+䝚 344353351335
+䝛 344353353254
+䝜 34435335434354
+䝝 344353313412512
+䝞 344353321531535
+䝟 3443533111253134
+䝠 34435331332511234
+䝡 344353312212523434
+䝢 344353325112522154
+䝣 344353344115151234
+䝤 3443533134432511234
+䝥 3443533325111413412
+䝦 3443533325221323334
+䝧 25111343541
+䝨 22542511134
+䝩 251113434333
+䝪 251113452134
+䝫 251113431211
+䝬 251113441121
+䝭 251113435251
+䝮 251113441554
+䝯 251113431525
+䝰 2511134121124
+䝱 5353532511134
+䝲 251113451344
+䝳 21354542511134
+䝴 12512452511134
+䝵 25111341251124
+䝶 251113441251234
+䝷 311342512511134
+䝸 25111341221254
+䝹 251113444535455
+䝺 413441342511134
+䝻 251113451312251
+䝼 251113411212511
+䝽 251113413121121
+䝾 112121542511134
+䝿 321511342511134
+䞀 2511134325131134
+䞁 2511134125115315
+䞂 2511134132522134
+䞃 25111341541213134
+䞄 4153315252511134
+䞅 25111341311534251
+䞆 25111342432511134
+䞇 121341213542511134
+䞈 2511134344335554444
+䞉 25111344311342511134
+䞊 2511134215315343425111
+䞋 25111344143112342511135
+䞌 2534312251
+䞍 253411212511
+䞎 253425112511
+䞏 2534251214544
+䞐 2534111342511
+䞑 1213234121
+䞒 1213234251251
+䞓 12132341555121
+䞔 12132345133115
+䞕 121323414524444132522
+䞖 1212134154
+䞗 1212134123
+䞘 1212134315
+䞙 12121341252
+䞚 12121341254
+䞛 12121341255
+䞜 12121341324
+䞝 121213411214
+䞞 121213451532
+䞟 121213432511
+䞠 121213413251
+䞡 121213425111
+䞢 121213431211
+䞣 121213433124
+䞤 121213435251
+䞥 1212134132511
+䞦 1212134354251
+䞧 1212134331251
+䞨 1212134121121
+䞩 1212134341251
+䞪 1212134133125
+䞫 12121345113251
+䞬 12121343123453
+䞭 12121345434354
+䞮 12121343411234
+䞯 12121343443521
+䞰 12121341213234
+䞱 12121343434251
+䞲 12121343121534
+䞳 121213441431251
+䞴 121213435121251
+䞵 121213454545454
+䞶 121213425113533
+䞷 121213451352252
+䞸 121213411234251
+䞹 1212134325111121
+䞺 1212134331225111
+䞻 1212134542511253
+䞼 1212134551353334
+䞽 12121341245554234
+䞾 12121343321531535
+䞿 44511221341212134
+䟀 1212134431113121
+䟁 121213455525111234
+䟂 121213425112522154
+䟃 121213454545434333
+䟄 121213411212511134
+䟅 125111233121212134
+䟆 12121342511122112
+䟇 1212134554554134534
+䟈 12121341212511121534
+䟉 12121342522135251214
+䟊 12121342153151353334
+䟋 12121343513344111251
+䟌 121213412132411121534
+䟍 1212134325111445344153
+䟎 1212134113411342511134
+䟏 1212134325115545541234
+䟐 12121341331234312342121
+䟑 121213434125125125125122
+䟒 121213412225125132411121
+䟓 251212112
+䟔 251212124
+䟕 2512121544
+䟖 2512121252
+䟗 25121213515
+䟘 25121214135
+䟙 25121211553
+䟚 25121211132
+䟛 25121211252
+䟜 25121212534
+䟝 25121213554
+䟞 25121212343
+䟟 331242512134
+䟠 251212115534
+䟡 251212135154
+䟢 251212135234
+䟣 251212112344
+䟤 251212145434
+䟥 251212154523
+䟦 251212131354
+䟧 251212125121
+䟨 251212151515
+䟩 251212112154
+䟪 25121213454
+䟫 243452512134
+䟬 251212132121
+䟭 251212131211
+䟮 2512121321344
+䟯 2512121312251
+䟰 2512121332112
+䟱 2512121125234
+䟲 2512121415435
+䟳 2512134541541
+䟴 25121211311534
+䟵 25121211241344
+䟶 25121213434121
+䟷 25121211213312
+䟸 25121213544132
+䟹 25121213443124
+䟺 25121212511134
+䟻 25121213411234
+䟼 251212111212154
+䟽 25121214154325
+䟾 251212154545454
+䟿 251212151124134
+䠀 251212124325251
+䠁 251212154545411
+䠂 123412342512134
+䠃 251212112523434
+䠄 251212125122134
+䠅 251212125312341
+䠆 251212112111534
+䠇 251212151352252
+䠈 251212151124134
+䠉 251212144525151
+䠊 251212121112111
+䠋 251212132511312
+䠌 251212125342511
+䠍 2512121512115154
+䠎 2512121513154121
+䠏 2512121543341134
+䠐 2512121251111344
+䠑 2512121134121121
+䠒 2512121122513511
+䠓 2512121431253511
+䠔 2512121431353334
+䠕 25121212121351234
+䠖 2512121413534251
+䠗 25121213251111344
+䠘 25121213253411535
+䠙 25121214143454153
+䠚 25121214453433544
+䠛 25121213443311252
+䠜 2512121122122111
+䠝 25121212512511134
+䠞 251212113211234534
+䠟 121431125342512134
+䠠 122135452522512134
+䠡 251212121533525111
+䠢 12225221452512134
+䠣 2512121515515122134
+䠤 2512121251251251112
+䠥 251212143252343134
+䠦 2512121311342512511
+䠧 251212151312132511
+䠨 25121213513344111251
+䠩 25121212121131233534
+䠪 251212155455415545545
+䠫 251212112211154323334
+䠬 251212154334125143152
+䠭 25121211251234352511134
+䠮 251212143113412111254444
+䠯 251212134125125125125122
+䠰 251212112225125132411121
+䠱 2512121513241342522135251214
+䠲 325111334454
+䠳 325111352252
+䠴 325111341431
+䠵 325111332124
+䠶 325111331134
+䠷 3251113341534
+䠸 3251113134115
+䠹 3251113415334
+䠺 3251113245251
+䠻 325111344534515
+䠼 3251113341251122
+䠽 32511132521251431
+䠾 32511135112251134
+䠿 3251113251212511134
+䡀 32511134125251125111
+䡁 32511134143125111515111
+䡂 125111252
+䡃 125111253
+䡄 125111235
+䡅 1251112322
+䡆 12511123454
+䡇 12511121135
+䡈 12511123434
+䡉 12511124135
+䡊 12511123354
+䡋 12511121254
+䡌 12511121354
+䡍 12511121134
+䡎 12511124513
+䡏 125111251554
+䡐 125111244535
+䡑 125111251515
+䡒 125111225121
+䡓 3321251112112
+䡔 1251112354354
+䡕 1251112525341
+䡖 1251112134121
+䡗 1213541251112
+䡘 12511123525121
+䡙 12511124511534
+䡚 12511123251135
+䡛 12511121251112
+䡜 125111212134121
+䡝 125111244535455
+䡞 251111341251112
+䡟 125111232511312
+䡠 1251112212511134
+䡡 1251112153532511
+䡢 1251112451325122
+䡣 1251112451251112
+䡤 121325111251112
+䡥 12511124453434251
+䡦 12511125454541234
+䡧 12511123251154444
+䡨 4311131211251112
+䡩 12511121225111134
+䡪 12511124513541541
+䡫 12511123541112454
+䡬 125111225112522154
+䡭 12511124311135121
+䡮 125111233234342134
+䡯 125111232535414544
+䡰 121521335541251112
+䡱 125111212512512515
+䡲 1251112251251251112
+䡳 1251112122111343312
+䡴 1251112414312511211
+䡵 1251112341353334454
+䡶 12511125132514143112
+䡷 12511121221215425221
+䡸 12511121222522115534
+䡹 125111212452512152134
+䡺 1251112111211125114544
+䡻 1251112325111445344153
+䡼 125111214524444251251251
+䡽 12511123121353121352511134
+䡾 125111221531512512543121344
+䡿 1251112145244442512512511234341
+䢀 1521315
+䢁 15213511
+䢂 152141431
+䢃 513251414311234
+䢄 54251414311212341234
+䢅 3215111311534
+䢆 45351311534124
+䢇 445351311534124
+䢈 13115343412524312511
+䢉 32534132115111311534
+䢊 521454
+䢋 132454
+䢌 1252454
+䢍 4153454
+䢎 1132454
+䢏 4412454
+䢐 25111454
+䢑 35154454
+䢒 413434454
+䢓 445112454
+䢔 341251454
+䢕 131534454
+䢖 511112454
+䢗 251221454
+䢘 445124454
+䢙 2511134454
+䢚 1251134454
+䢛 2534251454
+䢜 51145252454
+䢝 12155121454
+䢞 12341234454
+䢟 41533134454
+䢠 4334132454
+䢡 122151234454
+䢢 3445113251454
+䢣 3544111251454
+䢤 3123412344454
+䢥 1212125111454
+䢦 41554413412454
+䢧 54154134333454
+䢨 33234342134454
+䢩 12512513134454
+䢪 313425125251454
+䢫 52131212511454
+䢬 344345354152454
+䢭 431121414534454
+䢮 1452444425121454
+䢯 43344334354152454
+䢰 54154132411121454
+䢱 121252212511134454
+䢲 25111251113241112154454
+䢳 3552
+䢴 31352
+䢵 115452
+䢶 123452
+䢷 354152
+䢸 2511152
+䢹 151552
+䢺 5225252
+䢻 12512552
+䢼 12213452
+䢽 1221342515215
+䢾 31213552
+䢿 44553152
+䣀 35135552
+䣁 54154152
+䣂 11123452
+䣃 311212152
+䣄 341123452
+䣅 131153452
+䣆 155512152
+䣇 124134452
+䣈 25152152515215
+䣉 44123432515215
+䣊 2432525152
+䣋 343123452
+䣌 4133515452
+䣍 1342511552
+䣎 5552512152
+䣏 3212213452
+䣐 1222513452
+䣑 13251121152
+䣒 25121253452
+䣓 125125431252
+䣔 243251113452
+䣕 121125444452
+䣖 12112544442515215
+䣗 325111341252
+䣘 2344525112152
+䣙 2523511351152
+䣚 2511251253152
+䣛 1234342413452
+䣜 2153152511152
+䣝 5131213251152
+䣞 25125134152352
+䣟 15351535251152
+䣠 11341134251152
+䣡 341121312153452
+䣢 1112341221251152
+䣣 2344525125431211444452
+䣤 2511125111324111215452
+䣥 125351135
+䣦 125351153
+䣧 1253511154
+䣨 1253511315
+䣩 12535111525
+䣪 12535111252
+䣫 12535111254
+䣬 12535111534
+䣭 12535111344
+䣮 125351113544
+䣯 125351125111
+䣰 12535111515
+䣱 125351135251
+䣲 125351154132
+䣳 125351151251
+䣴 1253511345235
+䣵 1253511122111
+䣶 1253511312251
+䣷 1253511311234
+䣸 3231211253511
+䣹 1253511321534
+䣺 12535112512511
+䣻 12535113445251
+䣼 125351141251234
+䣽 311342511253511
+䣾 125351144525111
+䣿 125351111225221
+䤀 125351112213251
+䤁 1253511122111345
+䤂 1253511122111234
+䤃 1253511414312511
+䤄 1253511132522111
+䤅 1253511341251122
+䤆 1253511543341134
+䤇 1253511445434454
+䤈 1253511341525221
+䤉 12535114544325221
+䤊 1253511122122111
+䤋 43125351112511534
+䤌 12535113445113251
+䤍 125351112212523434
+䤎 1253511545232534251
+䤏 1253511211121113112
+䤐 1253511153515352511
+䤑 125351112212512134
+䤒 1253511554554134534
+䤓 12535111224511353334
+䤔 441125111233121253511
+䤕 1253511325115545541234
+䤖 1253511251112213424134
+䤗 414312511123541521253511
+䤘 125351134341211121111534
+䤙 1352511551353334251214251214
+䤚 35112511211
+䤛 3411234152
+䤜 34112341315
+䤝 341123413552
+䤞 341123411354
+䤟 341123414535
+䤠 341123412121
+䤡 3411234125211
+䤢 3411234125153
+䤣 3411234134312
+䤤 34112341415334
+䤥 34112341351355
+䤦 34112341321534
+䤧 34112341252511
+䤨 34112341333534
+䤩 34112341445315
+䤪 34112341351234
+䤫 341123412523445
+䤬 341123414412343
+䤭 341123413413252
+䤮 341123412121233
+䤯 341123411132333
+䤰 121353434112341
+䤱 341123412523312
+䤲 341123411213234
+䤳 3411234141323544
+䤴 3411234152413452
+䤵 3411234121112111
+䤶 3411234113425115
+䤷 34112341125115315
+䤸 34112341551353334
+䤹 34112341445433454
+䤺 34112341132513312
+䤻 34112341131212511
+䤼 34112341325112534
+䤽 341123412522123344
+䤾 341123413443321511
+䤿 341123411121533112
+䥀 341123412521251214
+䥁 341123415425431121
+䥂 341123414511353334
+䥃 341123414532411121
+䥄 341123411312212511
+䥅 121121112134112341
+䥆 412111211134112341
+䥇 341123414513541541
+䥈 341123411221344132
+䥉 3411234144535251354
+䥊 3411234111212511134
+䥋 3411234141251524444
+䥌 4452511251134112341
+䥍 1214311235434112341
+䥎 3411234113115342511
+䥏 34112341332311212152
+䥐 545233545334112341
+䥑 3411234112343434354
+䥒 51525125121434112341
+䥓 3411234112211134121
+䥔 34112341125221431234
+䥕 3411234143252343134
+䥖 34112341431253511134
+䥗 34112341121112343534
+䥘 34112341343434342511
+䥙 3411234152431353334
+䥚 35251112511134112341
+䥛 34112341112153554234
+䥜 34112341511225111234
+䥝 341123414135221153535
+䥞 341123413251141533134
+䥟 34112341121251135345
+䥠 34112341122131251534
+䥡 341123413215122151234
+䥢 121251431125434112341
+䥣 321511121355434112341
+䥤 341123411452444435515
+䥥 341123414143135112234
+䥦 34112341131212511454
+䥧 3411234121451343425111
+䥨 3411234151122511251251
+䥩 341123413322521353134
+䥪 3411234125115545544444
+䥫 3411234112132411121534
+䥬 341123411221251124124
+䥭 1241344124134434112341
+䥮 3411234112522112512552
+䥯 34112341252215425113535
+䥰 34112341415251214251214
+䥱 34112341445321511354444
+䥲 34112341125125125153534
+䥳 34112341132511453544354
+䥴 34112341252324111212525
+䥵 341123412511121121121135
+䥶 341123411331234312342121
+䥷 341123413143142511113222
+䥸 5151342523434343434112341
+䥹 34112341111253212134341343452
+䥺 311151523
+䥻 311151135
+䥼 311153533
+䥽 3111553544
+䥾 3111545151
+䥿 3111533153
+䦀 31115541541
+䦁 31115111352
+䦂 311154513541541
+䦃 3111512212132511
+䦄 31115125112143534
+䦅 31115431112431251
+䦆 3111525111251113241112153
+䦇 1211154345
+䦈 121115413121
+䦉 121115425351
+䦊 1211154211234
+䦋 12111541121533134
+䦌 51122511121
+䦍 51122511315
+䦎 511225111135
+䦏 511225113432
+䦐 511225113112
+䦑 511225115134
+䦒 5112251113251
+䦓 5112251121251
+䦔 5112251125111
+䦕 51122511431132
+䦖 51122511121251
+䦗 51122511325221
+䦘 51122511511534
+䦙 51122511121124
+䦚 51122511312251
+䦛 51122511355112
+䦜 511225111251251
+䦝 511225111213234
+䦞 511225114411121
+䦟 511225113434121
+䦠 5112251113533434
+䦡 5112251144525151
+䦢 5112251144112154
+䦣 5112251141431251
+䦤 5112251154545454
+䦥 5112251112341234
+䦦 5112251134112341
+䦧 5112251132151135
+䦨 5112251112511234
+䦩 5112251125111354
+䦪 51122511251135345
+䦫 5112251112225134
+䦬 51122511112153134
+䦭 51122511312342511
+䦮 51122511111342511
+䦯 511225111541213134
+䦰 5112251135251125115
+䦱 51122511344335554444
+䦲 511225113513344111251
+䦳 5112251155345115452
+䦴 511225112522112143112
+䦵 5112251113425234343434
+䦶 425355112
+䦷 4253434121
+䦸 425251125214
+䦹 5212
+䦺 5212
+䦻 52521
+䦼 525134
+䦽 525452
+䦾 3251515435
+䦿 522512
+䧀 521354
+䧁 5235251
+䧂 5253251
+䧃 5225121
+䧄 52354251
+䧅 52151534
+䧆 52122134
+䧇 52413534
+䧈 52125351
+䧉 522511211
+䧊 523121251
+䧋 522511135
+䧌 523443531
+䧍 523434251
+䧎 522512511
+䧏 523541112
+䧐 5241251521
+䧑 5244512134
+䧒 5213434234
+䧓 5235121251
+䧔 5234454544
+䧕 5212511534
+䧖 5215341534
+䧗 52312511354
+䧘 52551353334
+䧙 52252342444
+䧚 524125125251
+䧛 524143454153
+䧜 524135112251
+䧝 525221251214
+䧞 521211254444
+䧟 523443321511
+䧠 5212511214124
+䧡 524135112511
+䧢 5212512512515
+䧣 5212522111234
+䧤 52224314311134
+䧥 52125112144544
+䧦 52344335554444
+䧧 524311213121534
+䧨 522243143111234
+䧩 5251221113134
+䧪 524131343434531
+䧫 5241251451353334
+䧬 5244512332511134
+䧭 5232534444414544
+䧮 524451112252214544
+䧯 5235251153535251354
+䧰 52352512144443554234
+䧱 3532411121
+䧲 11232411121
+䧳 212132411121
+䧴 125432411121
+䧵 453532411121
+䧶 324111214134
+䧷 3544432411121
+䧸 1225132411121
+䧹 4133232411121
+䧺 1325132411121
+䧻 34125132411121
+䧼 312125132411121
+䧽 343123432411121
+䧾 3411225132411121
+䧿 1221251132411121
+䨀 3443123432411121
+䨁 54523313432411121
+䨂 31234433432411121
+䨃 251144553132411121
+䨄 3445125351132411121
+䨅 13443251123432411121
+䨆 4325234313432411121
+䨇 32411121324111215454
+䨈 4451233251113432411121
+䨉 2511134251113453132411121
+䨊 324111213241112132411121312155212
+䨋 14524444315
+䨌 145244441135
+䨍 145244441132
+䨎 1452444451554
+䨏 14524444413534
+䨐 14524444341251
+䨑 14524444151534
+䨒 14524444541541
+䨓 14524444252511
+䨔 14524444243135
+䨕 14524444441112
+䨖 14524444132511
+䨗 145244443443521
+䨘 145244442511135
+䨙 145244444413121
+䨚 1452444435334544
+䨛 1452444412343312
+䨜 1452444435113511
+䨝 1452444411212511
+䨞 14524444325125214
+䨟 14524444441121121
+䨠 14524444251135345
+䨡 1452444452413452
+䨢 14524444122111345
+䨣 14524444122125112
+䨤 1452444425121454
+䨥 145244443241112154
+䨦 145244444143454153
+䨧 145244444143134454
+䨨 14524444325151454
+䨩 14524444452425112
+䨪 145244441212511211
+䨫 1452444412343434354
+䨬 1452444444112341234
+䨭 1452444411542432511
+䨮 1452444411121112511
+䨯 145244445212511234
+䨰 14524444441122125112
+䨱 14524444332312511354
+䨲 1452444413252235251354
+䨳 1452444425111352511135
+䨴 1452444422431431121124
+䨵 14524444441125221251112
+䨶 1452444454251115132125
+䨷 145244441234123425112154
+䨸 145244445234431215114544
+䨹 14524444322354254312114444
+䨺 145244441154145244441154145244441154
+䨻 1452444425121145244442512114524444251211452444425121
+䨼 112125111223241112154
+䨽 21112111515
+䨾 41321112111
+䨿 113421112111
+䩀 211121112511134
+䩁 21112111311531153115
+䩂 1325221113445
+䩃 1325221111535
+䩄 1325221112535
+䩅 13252211153254
+䩆 13252211131211
+䩇 13252211121251
+䩈 1325221113155414
+䩉 1325221111251124
+䩊 13252211144535455
+䩋 13252211141312341234
+䩌 132522111324111214444
+䩍 132522111134432511234
+䩎 1325221113412512513434
+䩏 13252211112225221134534
+䩐 122125112315
+䩑 122125112515
+䩒 122125112112
+䩓 1221251123554
+䩔 1221251123554
+䩕 1221251123552
+䩖 1221251122343
+䩗 1221251123511
+䩘 1221251121554
+䩙 12212511241554
+䩚 12212511235154
+䩛 12212511245443
+䩜 12212511225121
+䩝 12212511233544
+䩞 12212511221251
+䩟 122125112151534
+䩠 122125112312154
+䩡 1221251121343434
+䩢 1221251121213312
+䩣 1221251123411234
+䩤 1221251122511135
+䩥 1221251123212154
+䩦 3223134122125112
+䩧 1221251124111251
+䩨 12212511212111534
+䩩 12212511244535455
+䩪 1221251124425151
+䩫 12212511212523434
+䩬 12212511211134112
+䩭 12212511213412512
+䩮 12212511251124134
+䩯 12212511252251541
+䩰 122125112251122111
+䩱 122125112341251122
+䩲 122125112413122154
+䩳 122125112445433454
+䩴 122125112122513511
+䩵 122125112451251112
+䩶 1221251125221251214
+䩷 1221251124143454153
+䩸 122125112122122111
+䩹 1221251121251254312
+䩺 1221251123454541541
+䩻 1221251121211254444
+䩼 1221251123541112454
+䩽 12212511212512512515
+䩾 12212511241312214444
+䩿 122125112121222511134
+䪀 122125112445251514544
+䪁 122125112224314311134
+䪂 122125112125234125234
+䪃 122125112412515213134
+䪄 12212511212212512134
+䪅 1221251122522135251214
+䪆 1221251122512211251431
+䪇 1221251121221251124124
+䪈 1221251122512125151454
+䪉 122125112555253415445445
+䪊 1221251124143125111515111
+䪋 122125112251212511134454
+䪌 12212511235251151535251354
+䪍 12212511251122511125431234
+䪎 122125112252324111212534251
+䪏 5212511522534
+䪐 52125115245434
+䪑 52125115244535
+䪒 52125115241121
+䪓 52125115221251
+䪔 5212511521251124
+䪕 52125115235431234
+䪖 521251152312511354
+䪗 521251152512115154
+䪘 521251152251112134
+䪙 5212511521251124124
+䪚 5212511522511541541
+䪛 521251152343123425121
+䪜 5212511523513344111251
+䪝 5212511521223241112154
+䪞 1134211121111
+䪟 125254211121111
+䪠 35233534211121111
+䪡 3523413534211121111
+䪢 3523413534211121111
+䪣 12523413534211121111
+䪤 211121111343123425121
+䪥 21451251113454211121111
+䪦 414312511121
+䪧 414312511525
+䪨 414312511354
+䪩 4143125113445
+䪪 53251414312511
+䪫 4143125111555121
+䪬 4143125111245521
+䪭 414312511414312511
+䪮 4143125113552335523
+䪯 4334433445414312511
+䪰 4143125114143125114544
+䪱 515132511134
+䪲 135132511134
+䪳 5113132511134
+䪴 4535132511134
+䪵 1523132511134
+䪶 25111132511134
+䪷 35251132511134
+䪸 51515132511134
+䪹 13241132511134
+䪺 12154132511134
+䪻 54132132511134
+䪼 52252132511134
+䪽 25115132511134
+䪾 13251113434333
+䪿 325431132511134
+䫀 51154132511134
+䫁 325111132511134
+䫂 354354132511134
+䫃 1311534132511134
+䫄 4325135132511134
+䫅 4451234132511134
+䫆 135534132511134
+䫇 3332511132511134
+䫈 2523445132511134
+䫉 3443533132511134
+䫊 1324251132511134
+䫋 31234531132511134
+䫌 32511312132511134
+䫍 21112111132511134
+䫎 54545454132511134
+䫏 12211134132511134
+䫐 12341234132511134
+䫑 13412512132511134
+䫒 35152511132511134
+䫓 41431251132511134
+䫔 111253134132511134
+䫕 414345252132511134
+䫖 122111345132511134
+䫗 512115154132511134
+䫘 251135345132511134
+䫙 121221234132511134
+䫚 25525251132511134
+䫛 325131134132511134
+䫜 255455452132511134
+䫝 312342511132511134
+䫞 4311214444132511134
+䫟 2512511134132511134
+䫠 3331324251132511134
+䫡 4315112234132511134
+䫢 3321531535132511134
+䫣 3443554134132511134
+䫤 4525114134132511134
+䫥 325113554132511134
+䫦 1215425221132511134
+䫧 3251113412132511134
+䫨 1121533134132511134
+䫩 54545434333132511134
+䫪 13434343434132511134
+䫫 25112512531132511134
+䫬 153515352511132511134
+䫭 251212511134132511134
+䫮 511121251124132511134
+䫯 415313412512132511134
+䫰 132511134431234354152
+䫱 132522132522132511134
+䫲 1312515344544132511134
+䫳 2522135251214132511134
+䫴 1234123411234132511134
+䫵 325111445344153132511134
+䫶 123434341234134132511134
+䫷 1251251122512511132511134
+䫸 35325121453
+䫹 353251214121
+䫺 1354353251214
+䫻 3532512142511
+䫼 3532512145134
+䫽 3532512143115
+䫾 35325121445434
+䫿 35325121453251
+䬀 35325121455453
+䬁 35325121444535
+䬂 35325121415534
+䬃 35325121441431
+䬄 353251214131534
+䬅 353251214535353
+䬆 3532512143123422
+䬇 4325135353251214
+䬈 3532512144325135
+䬉 3532512141213234
+䬊 3532512141343434
+䬋 35325121412134354
+䬌 21531535353251214
+䬍 35325121435334544
+䬎 35325121412511534
+䬏 35325121441431251
+䬐 35325121431234531
+䬑 353251214251212511
+䬒 353251214445433454
+䬓 353251214414312511
+䬔 353251214341251122
+䬕 353251214353251214
+䬖 353251214325111121
+䬗 251113533353251214
+䬘 3532512144125125251
+䬙 3532512143443311252
+䬚 3532512141211254444
+䬛 3532512142511122112
+䬜 3532512144134522554
+䬝 35325121412212512134
+䬞 35325121412151211251124
+䬟 353251214354533411243122
+䬠 14524444534353432
+䬡 12132511534353432
+䬢 3445115453
+䬣 34451154315
+䬤 513344511534
+䬥 154344511534
+䬦 344511543554
+䬧 344511541135
+䬨 344511543535
+䬩 1324344511534
+䬪 344511541324
+䬫 3445115435154
+䬬 3445115425134
+䬭 25153344511534
+䬮 344511545434
+䬯 3445115421251
+䬰 3445115453251
+䬱 3445115412341
+䬲 3445115435251
+䬳 3445115443112
+䬴 3445115411234
+䬵 34451154415334
+䬶 34451154511534
+䬷 34451154354354
+䬸 135454344511534
+䬹 34451154154121
+䬺 34451154431112
+䬻 34451154111534
+䬼 344511542512511
+䬽 344511544325135
+䬾 344511544351523
+䬿 344511545133115
+䭀 34451154512454
+䭁 1213312344511534
+䭂 344511542515215
+䭃 3445115434454544
+䭄 3445115412515112
+䭅 3445115425122511
+䭆 12512524344511534
+䭇 3445115435121251
+䭈 3445115451111254
+䭉 34451154131212511
+䭊 3445115412225134
+䭋 34451154322511234
+䭌 122513511344511534
+䭍 34451154112125221
+䭎 34451154122151234
+䭏 34451154451325122
+䭐 344511544311214544
+䭑 344511544315112234
+䭒 344511543251114544
+䭓 344511542521251431
+䭔 34451154325151454
+䭕 12511123312344511534
+䭖 3445115441312214444
+䭗 3445115441431251135
+䭘 34451154251141251234
+䭙 34451154153515352511
+䭚 34451154414312511211
+䭛 3445115451221113134
+䭜 34451154134432511234
+䭝 344511543412524312511
+䭞 344511542522112143112
+䭟 34451154122122151234
+䭠 344511544134315112234
+䭡 3445115434431215114544
+䭢 3445115444545442522112
+䭣 3445115441432533543211
+䭤 344511542512125151454
+䭥 3445115443111344511534
+䭦 344511541224411251124124
+䭧 3445115441312341234554234
+䭨 34451154252324111212534251
+䭩 344511544131234123421112111
+䭪 355251112511211
+䭫 352511431325111
+䭬 3525115551325111
+䭭 431325111132511134
+䭮 1211154333431325111
+䭯 31234251152252
+䭰 31234251111134112
+䭱 3123425114325234
+䭲 31234251113412512
+䭳 31234531325113554312342511
+䭴 121125444412
+䭵 1211254444354
+䭶 1211254444132
+䭷 12112544443115
+䭸 12112544443434
+䭹 12112544443552
+䭺 12112544444135
+䭻 12112544443453
+䭼 12112544441132
+䭽 12112544443112
+䭾 12112544441344
+䭿 121125444431134
+䮀 121125444435515
+䮁 121125444454132
+䮂 121125444413544
+䮃 121125444412154
+䮄 121125444441554
+䮅 121125444415534
+䮆 1211254444132412
+䮇 1211254444511112
+䮈 1211254444354354
+䮉 1211254444313534
+䮊 1211254444151534
+䮋 1211254444135422
+䮌 1211254444321234
+䮍 1211254444413534
+䮎 12112544443413252
+䮏 12112544441251251
+䮐 12112544442534251
+䮑 12112544443443124
+䮒 12112544441251124
+䮓 121125444421251112
+䮔 121125444431212211
+䮕 121125444454545454
+䮖 121125444425112511
+䮗 121125444425213112
+䮘 121125444432151135
+䮙 121125444412511534
+䮚 121125444412134354
+䮛 12112544445232124
+䮜 1211254444122151234
+䮝 1211254444451251112
+䮞 1211254444111342511
+䮟 1211254444445433454
+䮠 1211254444125125121
+䮡 1211254444312511354
+䮢 1211254444312321511
+䮣 12112544445454541234
+䮤 12112544444532411121
+䮥 12112544441251254312
+䮦 12112544444125125251
+䮧 12251112341211254444
+䮨 12112544444454143112
+䮩 1211254444255452511
+䮪 12112544443541521234
+䮫 121125444425112512531
+䮬 12112544441222511134
+䮭 121125444434432511135
+䮮 121125444412343434354
+䮯 12112544441121533134
+䮰 121125444441432512251
+䮱 12112544441353334454
+䮲 121125444412212512134
+䮳 1211254444343123425121
+䮴 1211254444543341251431
+䮵 1211254444414312511211
+䮶 1211254444324111211234
+䮷 12112544442522135251214
+䮸 32113434511451211254444
+䮹 12112544442121131233534
+䮺 121125444441432533543211
+䮻 121125444412151211251124
+䮼 121125444443344334354152
+䮽 1211254444413522115354444
+䮾 12112544444143125111515111
+䮿 121125444444511221342512134
+䯀 1211254444122111122111122111
+䯁 12112544444152513511431112354
+䯂 1211254444121125444412112544441234
+䯃 551445531
+䯄 5512512534
+䯅 5511221115454
+䯆 2554525115
+䯇 25545251153
+䯈 2554525111135
+䯉 2554525113534
+䯊 25545251112512
+䯋 25545251113544
+䯌 25545251151353
+䯍 25545251134454
+䯎 25545251134112
+䯏 255452511312251
+䯐 255452511253434
+䯑 255452511243135
+䯒 255452511332112
+䯓 255452511121121
+䯔 255452511445315
+䯕 255452511312154
+䯖 2554525114511534
+䯗 2554525111535121
+䯘 2554525114451135
+䯙 2554525111251124
+䯚 2554525115542511
+䯛 25545251144535455
+䯜 25545251125113533
+䯝 255452511131212511
+䯞 25545251125525251
+䯟 255452511431353334
+䯠 255452511251125221
+䯡 2554525114315112234
+䯢 41312341234255452511
+䯣 255452511251212511134
+䯤 2554525113412524312511
+䯥 25545251125115545544444
+䯦 25545251112225221134534
+䯧 412514525251
+䯨 4125125251134
+䯩 41251252515215
+䯪 4125125251132511134
+䯫 2511412512344125125251
+䯬 4125125251125112251251251112
+䯭 121115433354
+䯮 121115433353
+䯯 12111543332343
+䯰 12111543333432
+䯱 12111543331324
+䯲 12111543335215
+䯳 12111543333454
+䯴 12111543333554
+䯵 121115433312132
+䯶 121115433325111
+䯷 1211154333113534
+䯸 1211154333413534
+䯹 12111543335114554
+䯺 12111543333515251
+䯻 12111543333121251
+䯼 12111543333534334
+䯽 121115433341431251
+䯾 121115433335121251
+䯿 121115433341343412
+䰀 121115433331234531
+䰁 121115433351124134
+䰂 121115433334431234
+䰃 121115433343122431
+䰄 1211154333251214544
+䰅 1211154333132511134
+䰆 1211154333545231234
+䰇 121115433312132511
+䰈 1211154333431113121
+䰉 12111543333354143554
+䰊 12111543331251124124
+䰋 12111543332511445531
+䰌 121115433333234342134
+䰍 121115433312343424134
+䰎 1211154333251212511134
+䰏 121115433312132411121534
+䰐 121115433312512531425221
+䰑 121115433314524444132522
+䰒 12111543331224511353334
+䰓 1211154333325111445344153
+䰔 1211154333335414355425221
+䰕 12111543332153152512125221
+䰖 12111543333121353121352511134
+䰗 21121112123525125115
+䰘 211211121254154134333
+䰙 12512543121254
+䰚 12512543124134
+䰛 12512543121554
+䰜 5151251254312515
+䰝 1251254312432524312511
+䰞 515121325115151251254312
+䰟 1154325113554
+䰠 32511355425112
+䰡 32511355431134
+䰢 325113554332112
+䰣 325113554253434
+䰤 12511234325113554
+䰥 12511534325113554
+䰦 32511355432511312
+䰧 32511355421531535
+䰨 325113554521325111
+䰩 12132511325113554
+䰪 4134342511325113554
+䰫 325113554121121121135
+䰬 325113554545232534251
+䰭 132522132522325113554
+䰮 3251135544311213121534
+䰯 32511355435311345452134
+䰰 14524444132522325113554
+䰱 145244442512512511234341325113554
+䰲 352512144445
+䰳 3525121444412
+䰴 35251214444315
+䰵 35251214444521
+䰶 35251214444415
+䰷 352512144441112
+䰸 352512144443454
+䰹 352512144441534
+䰺 352512144443312
+䰻 352512144443134
+䰼 352512144443445
+䰽 352512144441252
+䰾 352512144445215
+䰿 3525121444431525
+䱀 3525121444425134
+䱁 3525121444412341
+䱂 3525121444455453
+䱃 3525121444431134
+䱄 3525121444433544
+䱅 3525121444411234
+䱆 3525121444453521
+䱇 3525121444425111
+䱈 3525121444411234
+䱉 3525121444425111
+䱊 35251214444431234
+䱋 35251214444122134
+䱌 352512144441225125
+䱍 35251214444125441
+䱎 35251214444125111
+䱏 352512144441251431
+䱐 352512144443443521
+䱑 352512144441213312
+䱒 352512144442515215
+䱓 35251214444312154
+䱔 352512144443223134
+䱕 352512144443155414
+䱖 352512144441153512
+䱗 213545435251214444
+䱘 312342235251214444
+䱙 3525121444421123454
+䱚 3525121444451124134
+䱛 3525121444412511534
+䱜 3525121444412212511
+䱝 3525121444432511312
+䱞 3525121444413411234
+䱟 3525121444451312251
+䱠 3525121444415341534
+䱡 3525121444435431234
+䱢 35251214444355112
+䱣 3525121444441343412
+䱤 3525121444435321511
+䱥 3112522235251214444
+䱦 3525121444432411121
+䱧 3525121444443113455
+䱨 3525121444412523422
+䱩 3525121444425431415
+䱪 3525121444411213534
+䱫 12512342235251214444
+䱬 35251214444521342511
+䱭 35251214444442125441
+䱮 35251214444111253134
+䱯 54523313435251214444
+䱰 35251214444312511211
+䱱 35251214444414345252
+䱲 35251214444551353334
+䱳 35251214444132511211
+䱴 35251214444442125111
+䱵 352512144443454541541
+䱶 3525121444445115452
+䱷 215315352512144443134
+䱸 35251214444321511254
+䱹 35251214444431113121
+䱺 352512144442521251431
+䱻 35251214444255452511
+䱼 352512144445131221534
+䱽 352512144443445113251
+䱾 3525121444425112512531
+䱿 3525121444412511123321
+䲀 1214311235435251214444
+䲁 3525121444451311234124
+䲂 3525121444441533152134
+䲃 3525121444455525111234
+䲄 3525121444431554143134
+䲅 3525121444411342511135
+䲆 3525121444435251214444
+䲇 352512144441251534454
+䲈 3525121444441312341234
+䲉 35251214444122111343312
+䲊 3525121444452131212511
+䲋 35251214444113411342511
+䲌 35251214444121112343534
+䲍 33541443113435251214444
+䲎 3525121444451221113134
+䲏 35251214444433443344553
+䲐 352512144442153152512153
+䲑 352512144444311213121534
+䲒 352512144443535112533112
+䲓 352512144443412512513434
+䲔 352512144441251211251211
+䲕 35251214444431224312511
+䲖 3525121444412151211251124
+䲗 3525121444433234112431112
+䲘 3525121444431431444525151
+䲙 352512144443143145115452
+䲚 352512144441251234352511134
+䲛 35251214444122252214525111
+䲜 35251214444352512144443525121444435251214444
+䲝 352512113455
+䲞 3525121141431
+䲟 3525121135152
+䲠 35251211111342511
+䲡 35251211431253511
+䲢 351143113435251211
+䲣 215315352512113134
+䲤 352512114411253511
+䲥 3532511154444
+䲦 32511154444134
+䲧 12132511154444
+䲨 12132511154444
+䲩 51332511154444
+䲪 13432511154444
+䲫 13532511154444
+䲬 325111544443515
+䲭 351532511154444
+䲮 113532511154444
+䲯 35432511154444
+䲰 115432511154444
+䲱 325111544444153
+䲲 345432511154444
+䲳 413532511154444
+䲴 433432511154444
+䲵 234332511154444
+䲶 113532511154444
+䲷 325111544441234
+䲸 3432325111524444
+䲹 1324132511154444
+䲺 1221132511154444
+䲻 4155432511154444
+䲼 3112132511154444
+䲽 1325132511154444
+䲾 1211532511154444
+䲿 5131532511154444
+䳀 3251115444431134
+䳁 3251115444413544
+䳂 5325132511154444
+䳃 3251115444435455
+䳄 21211532511154444
+䳅 3251115444425134
+䳆 3251132511154444
+䳇 5541432511154444
+䳈 3251115444435515
+䳉 3544432511154444
+䳊 1354432511154444
+䳋 25121432511154444
+䳌 54251132511154444
+䳍 12213432511154444
+䳎 32151132511154444
+䳏 12112132511154444
+䳐 41353432511154444
+䳑 13251132511154444
+䳒 12132511154444534
+䳓 12131532511154444
+䳔 32151132511154444
+䳕 344352132511154444
+䳖 325111544441221115
+䳗 325111544443121534
+䳘 325111544443121534
+䳙 251211532511154444
+䳚 251111232511154444
+䳛 251153132511154444
+䳜 341123432511154444
+䳝 4143125132511154444
+䳞 1113411232511154444
+䳟 2511351132511154444
+䳠 3121221132511154444
+䳡 3241112132511154444
+䳢 1221113432511154444
+䳣 1215353432511154444
+䳤 432523432511154444
+䳥 2523445432511154444
+䳦 44512511132511154444
+䳧 32511154444325131134
+䳨 32511112132511154444
+䳩 12522153132511154444
+䳪 25213252232511154444
+䳫 54334113432511154444
+䳬 12212511232511154444
+䳭 511545232511154444
+䳮 35114553432511154444
+䳯 31251121132511154444
+䳰 32251123432511154444
+䳱 545233545332511154444
+䳲 121131153432511154444
+䳳 522521123432511154444
+䳴 252212334432511154444
+䳵 134342345332511154444
+䳶 325111544443443554134
+䳷 3323434213432511154444
+䳸 4131234123432511154444
+䳹 3251115444444511352154
+䳺 3445125351132511154444
+䳻 1251112331232511154444
+䳼 3251115444412512512515
+䳽 2523241112132511154444
+䳾 54334125143132511154444
+䳿 35441344444432511154444
+䴀 41431251121132511154444
+䴁 44525112521432511154444
+䴂 3525135333432511154444
+䴃 12112112113532511154444
+䴄 34434535415232511154444
+䴅 12122251113432511154444
+䴆 22431341113432511154444
+䴇 145244443445432511154444
+䴈 32543123413432511154444
+䴉 252211251353432511154444
+䴊 431121312153432511154444
+䴋 325111544442522112513534
+䴌 325111544441224511353334
+䴍 2511134251113432511154444
+䴎 25121251212512132511154444
+䴏 122125121115444432511154444
+䴐 4451121311252251113432511154444
+䴑 251212512125121452511132511154444
+䴒 14524444251251251123434132511154444
+䴓 125235451
+䴔 41343435451
+䴕 13542235451
+䴖 1121251135451
+䴗 25111134435451
+䴘 332153153535451
+䴙 513251414311235451
+䴚 212534444414135
+䴛 212534444412432511
+䴜 21253444441325113554
+䴝 21253444441251112211154
+䴞 2125344444154154132411121
+䴟 41352211535354
+䴠 413522115353134
+䴡 122431352211535
+䴢 413522115351234
+䴣 4135221153534312
+䴤 4135221153531121
+䴥 4135221153553251
+䴦 413522115354111251
+䴧 4135221153531234531
+䴨 413522115351332511234
+䴩 4135221153512522111234
+䴪 41352211535452451124134
+䴫 413522115351452444434454
+䴬 12343434354154
+䴭 12343434354123
+䴮 12343434354252
+䴯 123434343543533
+䴰 123434343541534
+䴱 1234343435444535
+䴲 1234343435411234
+䴳 1234343435444534
+䴴 1234343435421251
+䴵 12343434354431132
+䴶 123434343543541112
+䴷 123434343544451135
+䴸 123434343543443521
+䴹 1234343435425111234
+䴺 1234343435441431251
+䴻 3123435312343434354
+䴼 1234343435415341534
+䴽 1234343435432511312
+䴾 12343434354431113121
+䴿 123434343544511353334
+䵀 123434343542432511134
+䵁 1234343435452133544124
+䵂 1234343435441432512251
+䵃 1234343435412212512134
+䵄 123434343542512211251431
+䵅 112153313412343434354
+䵆 123434343541224511353334
+䵇 413123412343134
+䵈 33255435441312341234
+䵉 41312341234341251122
+䵊 354112212512134
+䵋 12212512134132511
+䵌 122125121341343434
+䵍 1221251213441251521
+䵎 12212512134252132522
+䵏 1221251213454154134333
+䵐 12212512134251251251112
+䵑 312343424134534
+䵒 3123434241342511
+䵓 3123434241343112
+䵔 31234342413412511234
+䵕 31234342413451312251
+䵖 12512554312343424134
+䵗 312343424134125125121
+䵘 312343424134251113533
+䵙 312343424134134354354
+䵚 3123434241343443321511
+䵛 31234342413412512554121
+䵜 3123434241342512211311534
+䵝 2543121144445
+䵞 25431211444422
+䵟 254312114444112
+䵠 254312114444354
+䵡 1134254312114444
+䵢 25431211444411234
+䵣 25431211444425111
+䵤 1232254312114444
+䵥 254312114444355215
+䵦 254312114444441112
+䵧 121254312114444534
+䵨 2543121144441353334
+䵩 3123422254312114444
+䵪 25431211444425111535
+䵫 44535455254312114444
+䵬 25431211444425342511
+䵭 25431211444412132511
+䵮 254312114444251113533
+䵯 254312114444312511211
+䵰 25431211444431251113533
+䵱 254312114444121251431251
+䵲 2543121144442512512511234
+䵳 2543121144443412524312511
+䵴 25431211251251115151
+䵵 31431425111134254312114444
+䵶 35251251251115151
+䵷 121121251251115151
+䵸 312344334251251115151
+䵹 31134251112251251115151
+䵺 121251115132125
+䵻 25111513212511121112511
+䵼 52133544251115132125
+䵽 121251431125412154
+䵾 321241212514311254
+䵿 121251431125421251
+䶀 1212514311254341251
+䶁 121251431125425342511
+䶂 3215115445445354
+䶃 32151154454453445
+䶄 321511544544513412
+䶅 3215115445445354251
+䶆 321511544544532411121
+䶇 3215115445445251212511
+䶈 32151154454451251124124
+䶉 32151154454453545325121
+䶊 325111251211325211
+䶋 32511125121132354
+䶌 3251112512113235515
+䶍 15412132511125121132
+䶎 32511125121132341251
+䶏 435152332511125121132
+䶐 325111251211323412524312511
+䶑 32511125121132124525121542134
+䶒 41432533543211531
+䶓 25141432533543211
+䶔 212134341343452525
+䶕 2121343413434525215
+䶖 2121343413434523445
+䶗 21213434134345212512
+䶘 21213434134345241431
+䶙 2121343413434521515
+䶚 212134341343452251214
+䶛 135422212134341343452
+䶜 2121343413434523121251
+䶝 2121343413434521343434
+䶞 21213434134345212211134
+䶟 21213434134345235321511
+䶠 131251534212134341343452
+䶡 212134341343452251113422
+䶢 212134341343452131251534
+䶣 2121343413434522521251431
+䶤 212134341343452255452511
+䶥 21213434134345221531525111
+䶦 21213434134345211212511134
+䶧 212134341343452121121121135
+䶨 2121343413434523412512513434
+䶩 21213434134345241432533543112
+䶪 21213434134345212132411121534
+䶫 2121343413434522512511351221113134
+䶬 1121124143125111515111
+䶭 135341121
+䶮 135341134
+䶯 5313251253415511511
+䶰 32512534155115113115
+䶱 354443251253415511511
+䶲 252113251253415511511
+䶳 341251251251251224135
+䶴 4334353434125125125125122
+䶵 341251251251251223321531535
+一 1
+丁 12
+丂 15
+七 15
+丄 21
+丅 12
+丆 13
+万 153
+丈 134
+三 111
+上 211
+下 124
+丌 132
+不 1324
+与 151
+丏 1255
+丐 1215
+丑 5211
+丒 5341
+专 1154
+且 25111
+丕 13241
+世 12215
+丗 12221
+丘 32121
+丙 12534
+业 22431
+丛 34341
+东 15234
+丝 55551
+丞 525341
+丟 112154
+丠 211351
+両 125252
+丢 312154
+丣 1315251
+两 1253434
+严 1224313
+並 43122431
+丧 12431534
+丨 2
+丩 52
+个 342
+丫 432
+丬 412
+中 2512
+丮 5112
+丯 3332
+丰 1112
+丱 53212
+串 2512512
+丳 25125132
+临 223142521
+丵 2243143112
+丶 4
+丷 43
+丸 354
+丹 3541
+为 4354
+主 41121
+丼 11324
+丽 1254254
+举 443134112
+丿 3
+乀 5
+乁 5
+乂 34
+乃 53
+乄 54
+久 354
+乆 534
+乇 315
+么 354
+义 434
+乊 343
+之 454
+乌 3551
+乍 31211
+乎 34312
+乏 3454
+乐 35234
+乑 323334
+乒 321213
+乓 321214
+乔 313432
+乕 3311252
+乖 31221135
+乗 311221234
+乘 3122113534
+乙 5
+乚 5
+乛 5
+乜 55
+九 35
+乞 315
+也 525
+习 541
+乡 553
+乢 2525
+乣 5545
+乤 1245
+乥 3435
+书 5524
+乧 44125
+乨 542515
+乩 212515
+乪 525121
+乫 532515
+乬 15155
+乭 132515
+乮 353525
+乯 343125
+买 544134
+乱 3122515
+乲 4135345
+乳 34435215
+乴 12133125
+乵 41431125
+乶 12511245
+乷 44123435
+乸 52555414
+乹 122511125
+乺 335133125
+乻 415334445
+乼 441411215
+乽 121325115
+乾 12251112315
+乿 34435542345
+亀 35251125115
+亁 122511112315
+亂 3443542554545
+亃 4312343541525
+亄 1214512514315
+亅 2
+了 52
+亇 352
+予 5452
+争 355112
+亊 1435112
+事 12515112
+二 11
+亍 112
+于 112
+亏 115
+亐 115
+云 1154
+互 1551
+亓 1132
+五 1251
+井 1132
+亖 1111
+亗 25211
+亘 125111
+亙 125441
+亚 122431
+些 21213511
+亜 1251221
+亝 54545411
+亞 12155121
+亟 52251541
+亠 41
+亡 415
+亢 4135
+亣 4132
+交 413434
+亥 415334
+亦 413234
+产 414313
+亨 4125152
+亩 4125121
+亪 4132345
+享 41251521
+京 41251234
+亭 412514512
+亮 412514535
+亯 412512511
+亰 412511234
+亱 413225111
+亲 414311234
+亳 4125145315
+亴 412514512135
+亵 411213543534
+亶 4125251125111
+亷 4143135112234
+亸 4125152143251112
+亹 4132112512515114525111
+人 34
+亻 32
+亼 341
+亽 344
+亾 345
+亿 325
+什 3212
+仁 3211
+仂 3253
+仃 3212
+仄 1334
+仅 3254
+仆 3224
+仇 3235
+仈 3234
+仉 3235
+今 3445
+介 3432
+仌 3434
+仍 3253
+从 3434
+仏 3254
+仐 3412
+仑 3435
+仒 3444
+仓 3455
+仔 32521
+仕 32121
+他 32525
+仗 32134
+付 32124
+仙 32252
+仚 34252
+仛 32315
+仜 32121
+仝 34121
+仞 32534
+仟 32312
+仠 32112
+仡 32315
+仢 32354
+代 32154
+令 34454
+以 5434
+仦 32234
+仧 21134
+仨 32111
+仩 32211
+仪 32434
+仫 32354
+们 32425
+仭 32534
+仮 323354
+仯 322343
+仰 323552
+仱 323445
+仲 322512
+仳 321535
+仴 323511
+仵 323112
+件 323112
+价 323432
+仸 323134
+仹 321112
+仺 34151
+任 323121
+仼 321121
+份 323453
+仾 321551
+仿 324153
+伀 323454
+企 342121
+伂 321252
+伃 325452
+伄 325152
+伅 321525
+伆 323533
+伇 323554
+伈 324544
+伉 324135
+伊 325113
+伋 32354
+伌 321355
+伍 321251
+伎 321254
+伏 321344
+伐 321534
+休 321234
+伒 323312
+伓 321324
+伔 324535
+伕 321134
+伖 321354
+众 343434
+优 321354
+伙 324334
+会 341154
+伛 321345
+伜 323512
+伝 321154
+伞 344312
+伟 321152
+传 321154
+伡 321512
+伢 321523
+伣 322535
+伤 323153
+伥 323154
+伦 323435
+伧 323455
+伨 323541
+伩 324134
+伪 324354
+伫 324451
+伬 325134
+伭 3241554
+伮 3253154
+伯 3232511
+估 3212251
+伱 3234234
+伲 3251335
+伳 3212215
+伴 3243112
+伵 3225351
+伶 3234454
+伷 3225121
+伸 3225112
+伹 3225111
+伺 3251251
+伻 3214312
+似 325434
+伽 3253251
+伾 3213241
+伿 3225134
+佀 3225151
+佁 3254251
+佂 3212121
+佃 3225121
+佄 3212211
+佅 3211234
+但 3225111
+佇 3244512
+佈 3213252
+佉 3212154
+佊 3253254
+佋 3253251
+佌 32212135
+位 3241431
+低 3235154
+住 3241121
+佐 3213121
+佑 3213251
+佒 3225134
+体 3212341
+佔 3221251
+何 3212512
+佖 3245434
+佗 3244535
+佘 3411234
+余 3411234
+佚 3231134
+佛 3251532
+作 3231211
+佝 3235251
+佞 3211531
+佟 3235444
+你 3235234
+佡 3234252
+佢 321515
+佣 3235112
+佤 321554
+佥 3414431
+佦 3213251
+佧 3221124
+佨 3235515
+佩 32351252
+佪 32252511
+佫 32354251
+佬 32121335
+佭 32354152
+佮 32341251
+佯 32431112
+佰 32132511
+佱 34112121
+佲 32354251
+佳 32121121
+佴 32122111
+併 32431132
+佶 32121251
+佷 32511534
+佸 32312251
+佹 32351355
+佺 32341121
+佻 32341534
+佼 32413434
+佽 32413534
+佾 32342511
+使 32125134
+侀 32113222
+侁 32312135
+侂 32413315
+侃 32251325
+侄 32154121
+侅 32415334
+來 13434234
+侇 32151534
+侈 32354354
+侉 32134115
+侊 32243135
+例 32135422
+侌 34451154
+侍 32121124
+侎 32431234
+侏 32311234
+侐 32325221
+侑 32132511
+侒 32445531
+侓 32511112
+侔 32543112
+侕 32132522
+侖 34125122
+侗 32251251
+侘 32445315
+侙 32112154
+侚 32352511
+供 32122134
+侜 32335414
+依 32413534
+侞 32531251
+侟 32132521
+侠 32143134
+価 32125221
+侢 32125211
+侣 32251251
+侤 32121315
+侥 32153135
+侦 32212534
+侧 32253422
+侨 32313432
+侩 32341154
+侪 32413432
+侫 32415531
+侬 32453534
+侭 32513444
+侮 323155414
+侯 325131134
+侰 325113251
+侱 322511121
+侲 321311534
+侳 323434121
+侴 341521122
+侵 325114554
+侶 322513251
+侷 325135251
+侸 321251431
+侹 32312154
+侺 322523445
+侻 324325135
+侼 321245521
+侽 322512153
+侾 321213521
+便 321251134
+俀 323443531
+俁 322515134
+係 323554234
+促 322512134
+俄 323121534
+俅 321241344
+俆 323411234
+俇 323531121
+俈 323121251
+俉 321251251
+俊 325434354
+俋 322515215
+俌 321251124
+俍 324511534
+俎 343425111
+俏 322432511
+俐 323123422
+俑 325425112
+俒 324451135
+俓 321555121
+俔 322511135
+俕 324451234
+俖 321324251
+俗 323434251
+俘 323443521
+俙 323413251
+俚 322511211
+俛 323525135
+俜 322512115
+保 322511234
+俞 341251122
+俟 325431134
+俠 321343434
+信 324111251
+俢 32354333
+俣 322511134
+俤 324351523
+俥 321251112
+俦 321113124
+俧 321214544
+俨 321224313
+俩 321253434
+俪 321254254
+俫 321431234
+俬 323123454
+俭 323414431
+修 322354333
+俯 3241332124
+俰 3231234251
+俱 3225111134
+俲 3241343453
+俳 3221112111
+俴 3215341534
+俵 3211213534
+俶 3221123454
+俷 3235115215
+俸 3211134112
+俹 3212155121
+俺 3213425115
+俻 3235425121
+俼 3241542511
+俽 3233123534
+俾 3232511312
+俿 3221531535
+倀 3212111534
+倁 3231134251
+倂 3231133112
+倃 3235424251
+倄 3234132511
+倅 3241343412
+倆 3212523434
+倇 3244535455
+倈 3213434234
+倉 3445113251
+倊 3234544544
+個 3225122511
+倌 3244525151
+倍 3241431251
+倎 3225122134
+倏 3223541344
+倐 3223544334
+們 3225112511
+倒 3215412122
+倓 3243344334
+倔 3251352252
+倕 3231212211
+倖 3212143112
+倗 3235113511
+倘 3224325251
+候 3225131134
+倚 3213412512
+倛 3212211134
+倜 3235121251
+倝 1225111234
+倞 3241251234
+借 3212212511
+倠 3232411121
+倡 3225112511
+倢 3215112134
+倣 3241533134
+値 3212251115
+倥 3244534121
+倦 3243113455
+倧 3244511234
+倨 3251312251
+倩 3211212511
+倪 3232151135
+倫 3234125122
+倬 3221251112
+倭 3231234531
+倮 3225111234
+倯 3212343454
+倰 3212134354
+倱 3225111535
+倲 3212511234
+倳 3212515112
+倴 3213412132
+倵 3211212154
+倶 3225111134
+倷 3213411234
+倸 3234431234
+倹 3234125134
+债 3211212534
+倻 3212211152
+值 3212251111
+倽 3234112251
+倾 3215132534
+倿 3241431531
+偀 3212225134
+偁 32344325211
+偂 32431251122
+偃 32125115315
+偄 32132522134
+偅 32312511211
+偆 32111342511
+假 32512115154
+偈 32251135345
+偉 32521251152
+偊 32325125214
+偋 32513431132
+偌 3212213251
+偍 32251112134
+偎 32251211534
+偏 32451325122
+偐 32414313333
+偑 32353251214
+偒 32251113533
+偓 32513154121
+偔 32251251115
+偕 32153532511
+偖 3212132511
+偗 32234325111
+偘 32251251251
+偙 32414345252
+做 32122513134
+偛 32312321511
+停 32412514512
+偝 32211352511
+偞 32122151234
+偟 32325111121
+偠 32125221531
+偡 32122111345
+偢 32312344334
+偣 32414312511
+偤 32431253511
+健 3251111254
+偦 32521342511
+偧 32134354354
+偨 322121351234
+偩 32352511134
+偪 32125125121
+偫 32332121124
+偬 32353344544
+偭 32132522111
+偮 32251122111
+偯 32412513534
+偰 32111253134
+偱 32331225111
+偲 32251214544
+偳 32252132522
+側 32251113422
+偵 32212511134
+偶 32251125214
+偷 32341251122
+偸 32341251155
+偹 32235425121
+偺 32354242511
+偻 32431234531
+偼 32215112134
+偽 32435554444
+偾 32121222534
+偿 32243451154
+傀 32325113554
+傁 32321511254
+傂 323321531535
+傃 321121554234
+傄 321344325111
+傅 321251124124
+傆 321332511234
+傇 32122122111
+傈 321252211234
+傉 321311534124
+傊 322512511134
+傋 321122125211
+傌 321211254444
+傍 324143454153
+傎 321225111134
+傏 324135112251
+傐 324125125251
+傑 323541521234
+傒 323443554134
+傓 324513541541
+傔 324315112234
+傕 324532411121
+傖 323445113251
+傗 324155425121
+傘 343434343412
+備 321221325112
+傚 324134343134
+傛 324453434251
+傜 323443311252
+傝 322511541541
+傞 32431113121
+傟 323454541541
+傠 324111251124
+傡 324143141431
+傢 324451353334
+傣 321113424134
+傤 321211521534
+傥 322434525135
+傦 32255452511
+傧 324453212134
+储 324512132511
+傩 325432411121
+傪 3254545434333
+傫 3225121554234
+催 3225232411121
+傭 3241351125112
+傮 3212512212511
+傯 3232535414544
+傰 3225235113511
+傱 3233234342134
+傲 321121533134
+傳 3212511214124
+傴 3212512512515
+債 3211212511134
+傶 3213211234534
+傷 3231251113533
+傸 3213434343434
+傹 3241431251135
+傺 3235445411234
+傻 3232534134354
+傼 3212212511134
+傽 3241431251112
+傾 3215132511134
+傿 3212121154444
+僀 3213221545252
+僁 3234312344544
+僂 3225112512531
+僃 321223525112
+僄 3212522111234
+僅 3212212511121
+僆 321251112454
+僇 3254154134333
+僈 3225112522154
+僉 3412512513434
+僊 32125221134515
+僋 3234452511134
+僌 3212511123134
+働 3231251121153
+僎 32515515122134
+像 3235251353334
+僐 32431112431251
+僑 32313425125251
+僒 32445345113251
+僓 32251212511134
+僔 32431253511124
+僕 32224314311134
+僖 32121251431251
+僗 32433443344553
+僘 32243252513134
+僙 3212212512134
+僚 32134432511234
+僛 32122111343534
+僜 32543341251431
+僝 32513521521521
+僞 32344335554444
+僟 32554554134534
+僠 32343123425121
+僡 32125112144544
+僢 32344345354152
+僣 32113411342511
+僤 32251251251112
+僥 32121121121135
+僦 32412512341354
+僧 32432524312511
+僨 32121222511134
+僩 32251125113511
+僪 32545232534251
+僫 32121551214544
+僬 32324111214444
+僭 32153515352511
+僮 32414312511211
+僯 32431234354152
+僰 12523412523434
+僱 32451332411121
+僲 32125221354152
+僳 32125221431234
+僴 32251125112511
+僵 321251211251211
+僶 322511251211511
+僷 32122122151234
+僸 321234123411234
+價 321252212511134
+僺 322512512511234
+僻 325132514143112
+僼 322512211251431
+僽 323123443344544
+僾 323443454544354
+僿 324451122134121
+儀 324311213121534
+儁 32324111212525
+儂 322512211311534
+儃 324125151125111
+億 324143125114544
+儅 322434525125121
+儆 32122352513134
+儇 322522112513534
+儈 323412524312511
+儉 323412512513434
+儊 321234123452134
+儋 323513344111251
+儌 323251141533134
+儍 323444445234354
+儎 321211251112534
+儏 322135454431234
+儐 3244512332511134
+儑 3225115545544444
+儒 3214524444132522
+儓 3212125145154121
+儔 3212151211251124
+儕 3241432533543112
+儖 3212512531425221
+儗 3235311345452134
+儘 3251121444425221
+儙 322512125151454
+儚 321222522145354
+儛 3231122221354152
+儜 3244545442522112
+儝 3243344334451234
+儞 3213425234343434
+償 32243452512511134
+儠 32555253415445445
+儡 32251212512125121
+儢 32215315251214544
+儣 3241312212512134
+儤 32251112213424134
+儥 32121252212511134
+儦 32413522115354444
+儧 32113411342511134
+儨 32331233122511134
+儩 32251113425113533
+優 32132511454544354
+儫 3241251451353334
+儬 32112125112511135
+儭 324143112342511135
+儮 321331234312342121
+儯 324311341211254444
+儰 32122344335554444
+儱 3241431251121515111
+儲 32411125112132511
+儳 3235251153535251354
+儴 3241251251112213534
+儵 322354254312114444
+儶 32252324111212534251
+儷 321254125441352211535
+儸 322522155444432411121
+儹 323121353121352511134
+儺 321221251113432411121
+儻 3224345251254312114444
+儼 322512511351221113134
+儽 32251212512125121554234
+儾 321251245251251112213534
+儿 35
+兀 135
+允 5435
+兂 1535
+元 1135
+兄 25135
+充 415435
+兆 341534
+兇 345235
+先 312135
+光 243135
+兊 345435
+克 1225135
+兌 3425135
+免 3525135
+兎 3251354
+兏 1321135
+児 2251135
+兑 4325135
+兒 32151135
+兓 15351535
+兔 35251354
+兕 2525135
+兖 41345435
+兗 413425135
+兘 113554251
+兙 122513512
+党 2434525135
+兛 1225135312
+兜 32511355135
+兝 12251353453
+兞 12251353115
+兟 312135312135
+兠 325112113535
+兡 1225135132511
+兢 12251351225135
+兣 1225135132511211
+兤 24313512212512134
+入 34
+兦 345
+內 2534
+全 341121
+兩 12523434
+兪 341251155
+八 34
+公 3454
+六 4134
+兮 3415
+兯 4352
+兰 43111
+共 122134
+兲 112134
+关 431134
+兴 443134
+兵 3212134
+其 12211134
+具 25111134
+典 25122134
+兹 431554554
+兺 345325135
+养 431113432
+兼 4315112234
+兽 43251211251
+兾 4325121122134
+兿 4311213541154
+冀 2113525121122134
+冁 432511125131221534
+冂 25
+冃 2511
+冄 2511
+内 2534
+円 2521
+冇 1325
+冈 2534
+冉 25211
+冊 25221
+冋 25251
+册 35351
+再 125211
+冎 25525
+冏 2534251
+冐 25112511
+冑 251212511
+冒 251125111
+冓 1122125211
+冔 2511251112
+冕 25113525135
+冖 45
+冗 4535
+冘 4535
+写 45151
+冚 45252
+军 451512
+农 453534
+冝 4525111
+冞 45431234
+冟 453251135
+冠 451135124
+冡 4511353334
+冢 4513533434
+冣 4512211154
+冤 4535251354
+冥 4525114134
+冦 4511352154
+冧 4512341234
+冨 45125125121
+冩 45321511354444
+冪 451222511134252
+冫 41
+冬 35444
+冭 13444
+冮 41121
+冯 41551
+冰 412534
+冱 411551
+冲 412512
+决 415134
+冴 411523
+况 4125135
+冶 4154251
+冷 4134454
+冸 4143112
+冹 4113544
+冺 4151515
+冻 4115234
+冼 41312135
+冽 41135422
+冾 41341251
+冿 41511112
+净 41355112
+凁 411251234
+凂 413525135
+凃 413411234
+凄 4115112531
+凅 4125122511
+准 4132411121
+凇 4112343454
+凈 4134435112
+凉 4141251234
+凊 4111212511
+凋 4135121251
+凌 4112134354
+凍 4112511234
+凎 4134112431
+减 41131251534
+凐 41125221121
+凑 41111341134
+凒 412521251431
+凓 411252211234
+凔 413445113251
+凕 414525114134
+凖 413241112112
+凗 4125232411121
+凘 41122111343312
+凙 412522112143112
+凚 411234123411234
+凛 414125251111234
+凜 414125251131234
+凝 4135322345452134
+凞 4131251255154444
+凟 41121252212511134
+几 35
+凡 354
+凢 335
+凣 235
+凤 3554
+凥 51335
+処 35435
+凧 35252
+凨 351154
+凩 351234
+凪 352121
+凫 354535
+凬 3512511
+凭 32312135
+凮 35132511
+凯 25251535
+凰 35325111121
+凱 252125143135
+凲 354315112234
+凳 54334125143135
+凴 41121125444435
+凵 52
+凶 3452
+凷 12152
+凸 21251
+凹 25251
+出 52252
+击 11252
+凼 253452
+函 52413452
+凾 522515452
+凿 224314311252
+刀 53
+刁 51
+刂 22
+刃 534
+刄 534
+刅 5344
+分 3453
+切 1553
+刈 3422
+刉 31522
+刊 11222
+刋 31322
+刌 12422
+刍 35511
+刎 353322
+刏 311522
+刐 354122
+刑 113222
+划 153422
+刓 113522
+刔 513422
+刕 535353
+刖 351122
+列 135422
+刘 413422
+则 253422
+刚 253422
+创 345522
+刜 5153222
+初 4523453
+刞 2511122
+刟 5325122
+删 3535122
+刡 5151522
+刢 3445422
+刣 5425122
+判 4311322
+別 2515322
+刦 1215422
+刧 1215453
+刨 3551522
+利 3123422
+刪 2522122
+别 2515322
+刬 1153422
+刭 5412122
+刮 31225122
+刯 12511122
+到 15412122
+刱 11325344
+刲 12112122
+刳 13411522
+刴 53123422
+刵 12211122
+制 31125222
+刷 51325222
+券 43113453
+刹 34123422
+刺 12523422
+刻 41533422
+刼 12154534
+刽 34115422
+刾 14313422
+刿 25235422
+剀 25251522
+剁 35123422
+剂 41343222
+剃 435152322
+剄 155512122
+剅 125143122
+剆 45115422
+則 251113422
+剈 251251122
+剉 343412122
+削 243251122
+剋 122513522
+剌 125123422
+前 431251122
+剎 341234422
+剏 431132534
+剐 251253422
+剑 341443122
+剒 1221251122
+剓 3123435353
+剔 2511353322
+剕 2111211122
+剖 4143125122
+剗 1534153422
+剘 1221113422
+剙 4311325344
+剚 1251511222
+剛 2543125222
+剜 4453545522
+剝 5512413422
+剞 1341251222
+剟 5454545422
+剠 4125123422
+剡 4334433422
+剢 1353343422
+剣 3412513422
+剤 4134321122
+剥 5112413422
+剦 1342511522
+剧 5131225122
+剨 11121325122
+剩 312211353422
+剪 43125112253
+剫 41312215422
+剬 25213252222
+剭 51315412122
+剮 2552525122
+副 12512512122
+剰 31212213422
+剱 34125134534
+割 445111225122
+剳 12234125122
+剴 252125143122
+創 344511325122
+剶 55135333422
+剷 4143133112122
+剸 1251121412422
+剹 5415413433322
+剺 1123431341353
+剻 2523511351122
+剼 5454543433322
+剽 1252211123422
+剾 1251251251522
+剿 5551511123422
+劀 54523253425122
+劁 32411121444422
+劂 13431523353422
+劃 51112125121122
+劄 31431434125122
+劅 252213525121422
+劆 413431511223422
+劇 215315135333422
+劈 513251414311253
+劉 354533411243122
+劊 341252431251122
+劋 251251251123422
+劌 212113123353422
+劍 341251251343422
+劎 341251251343453
+劏 243452512512122
+劐 122324111215422
+劑 4143253354321122
+劒 3412512513434534
+劓 3251112512113222
+劔 3412512513434534
+劕 33123312251113422
+劖 3525115353525135422
+劗 312135312135251113422
+劘 413123412342111211122
+劙 55135333425121425121422
+劚 51324134252213525121422
+力 53
+劜 535
+劝 5453
+办 5344
+功 12153
+加 53251
+务 35453
+劢 15353
+劣 234353
+劤 331253
+劥 413553
+劦 535353
+劧 311253
+动 115453
+助 2511153
+努 5315453
+劫 1215453
+劬 3525153
+劭 5325153
+劮 3113453
+劯 1325153
+劰 3251153
+励 1315353
+劲 5412153
+劳 1224553
+労 4434553
+劵 43113453
+劶 33125153
+劷 43111353
+劸 12112153
+効 41343453
+劺 54311253
+劻 11121553
+劼 12125153
+劽 13542253
+劾 41533453
+势 12135453
+勀 122513553
+勁 155512153
+勂 312125153
+勃 124552153
+勄 315541453
+勅 125123453
+勆 45115453
+勇 542511253
+勈 542511253
+勉 352513553
+勊 122513553
+勋 251253453
+勌 4311345553
+勍 4125123453
+勎 1213412153
+勏 4143125153
+勐 5212522153
+勑 1343423453
+勒 12212511253
+勓 15353251153
+勔 13252211153
+動 31251121153
+勖 25112511153
+勗 25112511153
+勘 12211134553
+務 5452335453
+勚 12215253453
+勛 251251113453
+勜 345454154153
+勝 351143113453
+勞 433443344553
+募 122251113453
+勠 5415413433353
+勡 1252211123453
+勢 1213412135453
+勣 1121251113453
+勤 1221251112153
+勥 51525125121453
+勦 5552511123453
+勧 3113241112153
+勨 3525135333453
+勩 12215251113453
+勪 31342512525153
+勫 34312342512153
+勬 43113455423453
+勭 41431251121153
+勮 215315135333453
+勯 412525112511153
+勰 535353251214544
+勱 12225112521453
+勲 312511211534444
+勳 3125431211444453
+勴 21531525121454453
+勵 1312225112521453
+勶 33241542511313453
+勷 4125125111221353453
+勸 1222512513241112153
+勹 35
+勺 354
+勻 3511
+勼 3535
+勽 3534
+勾 3554
+勿 3533
+匀 3541
+匁 3534
+匂 3535
+匃 35345
+匄 35415
+包 35515
+匆 35334
+匇 35354
+匈 353452
+匉 3514312
+匊 35431234
+匋 35311252
+匌 35341251
+匍 351251124
+匎 3513425115
+匏 13411535515
+匐 35125125121
+匑 353251113515
+匒 35122341251
+匓 35511543554
+匔 353251113251251
+匕 35
+化 3235
+北 21135
+匘 35555325341
+匙 25111213435
+匚 15
+匛 13545
+匜 15255
+匝 12525
+匞 11215
+匟 141355
+匠 133125
+匡 111215
+匢 135335
+匣 1251125
+匤 1112145
+匥 1541325
+匦 11521355
+匧 113434345
+匨 152131215
+匩 152211215
+匪 1211121115
+匫 1353325115
+匬 13412511225
+匭 11251112355
+匮 12512125345
+匯 1441324111215
+匰 12512512511125
+匱 12512125111345
+匲 11342512512515
+匳 134125125134345
+匴 1314314251111325
+匵 11212522125111345
+匶 1122324111213215115
+匷 12511125111324111215
+匸 15
+匹 1355
+区 1345
+医 1311345
+匼 13412515
+匽 125115315
+匾 14513251225
+匿 1122132515
+區 12512512515
+十 12
+卂 512
+千 312
+卄 122
+卅 1322
+卆 3512
+升 3132
+午 3112
+卉 12132
+半 43112
+卋 121221
+卌 12222
+卍 5212
+华 323512
+协 125344
+卐 5121
+卑 32511312
+卒 41343412
+卓 21251112
+協 12535353
+单 43251112
+卖 12544134
+南 122543112
+単 443251112
+卙 12211134512
+博 121251124124
+卛 411125155444455444412
+卜 24
+卝 2121
+卞 4124
+卟 25124
+占 21251
+卡 21124
+卢 21513
+卣 2125511
+卤 2125341
+卥 21253341
+卦 12112124
+卧 12512524
+卨 2125525251
+卩 52
+卪 524
+卫 521
+卬 3552
+卭 12152
+卮 33155
+卯 35352
+印 35152
+危 351355
+卲 5325152
+即 5115452
+却 1215452
+卵 3543524
+卶 35435452
+卷 43113455
+卸 311212152
+卹 32522152
+卺 52534155
+卻 343425152
+卼 135351355
+卽 325113552
+卾 25125111552
+卿 3535115452
+厀 1234342413452
+厁 3411234441252
+厂 13
+厃 3513
+厄 1355
+厅 1312
+历 1353
+厇 13315
+厈 13112
+厉 13153
+厊 131523
+压 131214
+厌 131344
+厍 131512
+厎 1335154
+厏 1331211
+厐 1313534
+厑 1325135
+厒 13311252
+厓 13121121
+厔 13154121
+厕 13253422
+厖 131353334
+厗 134143112
+厘 132511211
+厙 131251112
+厚 132511521
+厛 132513312
+厜 1331212211
+厝 1312212511
+厞 1321112111
+原 1332511234
+厠 13251113422
+厡 13325112534
+厢 13123425111
+厣 13134425112
+厤 133123431234
+厥 134315233534
+厦 131325111354
+厧 131225111134
+厨 131251431124
+厩 13511541535
+厪 1312212511121
+厫 131121533134
+厬 13251135424251
+厭 13251125111344
+厮 13122111343312
+厯 1312341234544
+厰 13243252513134
+厱 133412512513434
+厲 13122251125214
+厳 4431351221113134
+厴 1325112511134425112
+厵 133251123413325112341332511234
+厶 54
+厷 1354
+厸 5454
+厹 3554
+厺 13454
+去 12154
+厼 54234
+厽 545454
+厾 512154
+县 2511154
+叀 12511254
+叁 54134111
+参 54134333
+參 54545434333
+叄 54545434111
+叅 545454342444
+叆 11543443451354
+叇 115451124134454
+又 54
+叉 544
+及 354
+友 1354
+双 5454
+反 3354
+収 5254
+叏 51254
+叐 31354
+发 53544
+叒 545454
+叓 1251254
+叔 21123454
+叕 54545454
+取 12211154
+受 34434554
+变 41223454
+叙 341123454
+叚 512115154
+叛 431133354
+叜 445433454
+叝 121545254
+叞 5131123454
+叟 321511254
+叠 5454544525111
+叡 2145134342511154
+叢 224314311212211154
+口 251
+古 12251
+句 35251
+另 25153
+叧 25153
+叨 25153
+叩 25152
+只 25134
+叫 25152
+召 53251
+叭 25134
+叮 25112
+可 12512
+台 54251
+叱 25135
+史 25134
+右 13251
+叴 35251
+叵 12515
+叶 25112
+号 25115
+司 51251
+叹 25154
+叺 25134
+叻 25153
+叼 25151
+叽 25135
+叾 52251
+叿 251121
+吀 251312
+吁 251112
+吂 415251
+吃 251315
+各 354251
+吅 251251
+吆 251554
+吇 251521
+合 341251
+吉 121251
+吊 251252
+吋 251124
+同 251251
+名 354251
+后 331251
+吏 125134
+吐 251121
+向 325251
+吒 251315
+吓 251124
+吔 251525
+吕 251251
+吖 251432
+吗 251551
+吘 2513112
+吙 2514334
+吚 2515113
+君 5113251
+吜 2515211
+吝 4134251
+吞 1134251
+吟 2513445
+吠 2511344
+吡 2511535
+吢 4544251
+吣 2514544
+吤 2513432
+吥 2511324
+否 1324251
+吧 2515215
+吨 2511525
+吩 2513453
+吪 2513235
+含 3445251
+听 2513312
+吭 2514135
+吮 2515435
+启 4513251
+吰 2511354
+吱 2511254
+吲 2515152
+吳 2515134
+吴 2511134
+吵 2512343
+吶 2512534
+吷 2515134
+吸 251354
+吹 2513534
+吺 2513554
+吻 2513533
+吼 2515215
+吽 2513112
+吾 1251251
+吿 3112251
+呀 2511523
+呁 2513541
+呂 2513251
+呃 2511355
+呄 5312251
+呅 2514134
+呆 2511234
+呇 2534251
+呈 2511121
+呉 2515134
+告 3121251
+呋 2511134
+呌 2514412
+呍 2511154
+呎 2515134
+呏 2513132
+呐 2512534
+呑 3134251
+呒 2511135
+呓 2511225
+呔 2511344
+呕 2511345
+呖 2511353
+呗 2512534
+员 2512534
+呙 2512534
+呚 2513134
+呛 2513455
+呜 2513551
+呝 25145135
+呞 25151251
+呟 25141554
+呠 25112341
+呡 25151515
+呢 25151335
+呣 25155414
+呤 25134454
+呥 25125211
+呦 25155453
+呧 25135154
+周 35121251
+呩 25111234
+呪 25125135
+呫 25121251
+呬 25125351
+呭 25112215
+呮 25125134
+呯 25114312
+呰 212135251
+呱 25133544
+呲 251212135
+味 25111234
+呴 25135251
+呵 25112512
+呶 25153154
+呷 25125112
+呸 25113241
+呹 25131134
+呺 25125115
+呻 25125112
+呼 25134312
+命 34125152
+呾 25125111
+呿 25112154
+咀 25125111
+咁 25112211
+咂 25112525
+咃 25132525
+咄 25152252
+咅 41431251
+咆 25135515
+咇 25145434
+咈 25151532
+咉 25125134
+咊 25131234
+咋 25131211
+和 31234251
+咍 25154251
+咎 35424251
+咏 25145534
+咐 25132124
+咑 25112112
+咒 25125135
+咓 2511554
+咔 25121124
+咕 25112251
+咖 25153251
+咗 25113121
+咘 25113252
+咙 25113534
+咚 25135444
+咛 25144512
+咜 25144535
+咝 25155551
+咞 2511132
+咟 251132511
+咠 251122111
+咡 251122111
+咢 251251115
+咣 251243135
+咤 251445315
+咥 251154121
+咦 251151534
+咧 251135422
+咨 413534251
+咩 251431112
+咪 251431234
+咫 513425134
+咬 251413434
+咭 251121251
+咮 251311234
+咯 251354251
+咰 251352511
+咱 251325111
+咲 251431134
+咳 251415334
+咴 251134334
+咵 251134115
+咶 251312251
+咷 251341534
+咸 131251534
+咹 251445531
+咺 251125111
+咻 251321234
+咼 25525251
+咽 251251341
+咾 251121335
+咿 251325113
+哀 412513534
+品 251251251
+哂 251125351
+哃 251251251
+哄 251122134
+哅 251353452
+哆 251354354
+哇 251121121
+哈 251341251
+哉 121251534
+哊 251132511
+哋 251121525
+哌 251333534
+响 251325251
+哎 25112234
+哏 251511534
+哐 251111215
+哑 251122431
+哒 251134454
+哓 251153135
+哔 251153512
+哕 251252354
+哖 251311212
+哗 251323512
+哘 251332112
+哙 251341154
+哚 251351234
+哛 251353453
+哜 251413432
+哝 251453534
+哞 251543112
+哟 251551354
+哠 2513121251
+員 2512511134
+哢 2511121132
+哣 2511251431
+哤 2511353334
+哥 1251212512
+哦 2513121534
+哧 2511213234
+哨 2512432511
+哩 2512511211
+哪 251511352
+哫 2512512134
+哬 2513212512
+哭 2512511344
+哮 2511213521
+哯 2512511135
+哰 2514453112
+哱 2511245521
+哲 1213312251
+哳 2511213312
+哴 2514511534
+哵 2512515322
+哶 2512121112
+哷 2513443124
+哸 2513443531
+哹 2513443521
+哺 2511251124
+哻 2512511112
+哼 2514125152
+哽 2511251134
+哾 2514325135
+哿 5325112512
+唀 2513123453
+唁 2514111251
+唂 2513434251
+唃 2513535112
+唄 2512511134
+唅 2513445251
+唆 2515434354
+唇 1311534251
+唈 2512515215
+唉 2515431134
+唊 2511343434
+唋 2513411234
+唌 251321554
+唍 2514451135
+唎 2513123422
+唏 2513413252
+唐 4135112251
+唑 2513434121
+唒 2511253511
+唓 2511251112
+唔 2511251251
+唕 2513251112
+唖 2511251221
+唗 2511212134
+唘 1325154251
+唙 2513534334
+唚 2515114554
+唛 2511121354
+唜 1123425135
+唝 2511212534
+唞 2511214412
+唟 1215425135
+唠 2511224553
+唡 2511253434
+唢 2512432534
+唣 2513251115
+唤 2513525134
+唥 2514134454
+唦 2514412343
+唧 2515115452
+唨 2515225111
+唩 25131234531
+唪 25111134112
+唫 25134112431
+唬 25121531535
+唭 25112211134
+售 32411121251
+唯 25132411121
+唰 25151325222
+唱 25125112511
+唲 25132151135
+唳 25145131344
+唴 2514311135
+唵 25113425115
+唶 25112212511
+唷 25141542511
+唸 25134454544
+唹 25141533444
+唺 25125122134
+唻 25113434234
+唼 25141431531
+唽 25112343312
+唾 25131212211
+唿 25135334544
+啀 25113121121
+啁 25135121251
+啂 25134435215
+啃 25121212511
+啄 25113533434
+啅 25121251112
+商 41432534251
+啇 41432512251
+啈 25112143112
+啉 25112341234
+啊 2515212512
+啋 25134431234
+啌 25144534121
+啍 25141251521
+啎 31121251251
+問 25112511251
+啐 25141343412
+啑 25115112134
+啒 25151352252
+啓 45133134251
+啔 45131534251
+啕 25135311252
+啖 25143344334
+啗 25135321511
+啘 25144535455
+啙 212135251251
+啚 25112252511
+啛 25115112531
+啜 25154545454
+啝 25131234251
+啞 25112155121
+啟 45132513134
+啠 33123312251
+啡 25121112111
+啢 25112523434
+啣 251311212152
+啤 25132511312
+啥 25134112251
+啦 25112141431
+啧 25111212534
+啨 25111212511
+啩 25112112124
+啪 25112132511
+啫 25112132511
+啬 12431252511
+啭 25115211154
+啮 25121213452
+啯 25125112141
+啰 25125221354
+啱 25125213251
+啲 25132511354
+啳 25143113455
+啴 25143251112
+啵 25144153254
+啶 25144512134
+啷 25145115452
+啸 25151123234
+啹 25151312251
+啺 251251113533
+啻 414345252251
+啼 251414345252
+啽 251341251132
+啾 251312344334
+啿 251122111345
+喀 251445354251
+喁 251251125214
+喂 251251211534
+喃 251122543112
+善 431112431251
+喅 251251141431
+喆 121251121251
+喇 251125123422
+喈 251153532511
+喉 251325131134
+喊 251131251534
+喋 251122151234
+喌 251251434242
+喍 2512121351234
+喎 25125525251
+喏 25112213251
+喐 25113251152
+喑 251414312511
+喒 251354242511
+喓 251125221531
+喔 251513154121
+喕 251132522111
+喖 251123412251
+喗 251451251112
+喘 251252132522
+喙 251551353334
+喚 251352534134
+喛 251344311354
+喜 121251431251
+喝 251251135345
+喞 251325113552
+喟 251251212511
+喠 251312511211
+喡 251521251152
+喢 251312321511
+喣 251352514444
+喤 251325111121
+喥 251413122154
+喦 251251251252
+喧 251445125111
+喨 251412514535
+喩 251341251155
+喪 122512511534
+喫 251111253134
+喬 313425125251
+喭 251414313333
+單 251251251112
+喯 25113412132
+喰 251344511534
+喱 251132511211
+喲 251554444354
+喳 251123425111
+喴 251131531534
+喵 25112225121
+営 44345251251
+喷 251121222534
+喸 125112425135
+喹 251134121121
+喺 251323554234
+喻 251341251122
+喼 251355114544
+喽 251431234531
+喾 443453121251
+喿 2512512511234
+嗀 1214512513554
+嗁 2513321531535
+嗂 2513443311252
+嗃 2514125125251
+嗄 2511325111354
+嗅 2513251111344
+嗆 2513445113251
+嗇 1234341252511
+嗈 2515552515215
+嗉 2511121554234
+嗊 2511212511134
+嗋 2515353532511
+嗌 2514313425221
+嗍 2514315233511
+嗎 2511211254444
+嗏 251122341234
+嗐 2514451112251
+嗑 2511215425221
+嗒 251122341251
+嗓 2515454541234
+嗔 2511225111134
+嗕 2511311534124
+嗖 251321511254
+嗗 251255452511
+嗘 2513443554134
+嗙 2514143454153
+嗚 2513251154444
+嗛 2514315112234
+嗜 2511213352511
+嗝 2511251254312
+嗞 251431554554
+嗟 251431113121
+嗠 3443521354251
+嗡 2513454541541
+嗢 251251125221
+嗣 2512512251251
+嗤 2515221251214
+嗥 2513251113412
+嗦 2511245554234
+嗧 5325134125122
+嗨 2514413155414
+嗩 2512432511134
+嗪 2511113431234
+嗫 2511221115454
+嗬 2511223212512
+嗭 1225111125135
+嗮 2512511125351
+嗯 2512513414544
+嗰 2513225122511
+嗱 2513412513112
+嗲 2513434354354
+嗳 2513443451354
+嗴 251431113554
+嗵 2515425112454
+嗶 2512511122112
+嗷 2511121533134
+嗸 1121533134251
+嗹 2511251112454
+嗺 25125232411121
+嗻 25141312214444
+嗼 2511222511134
+嗽 25112512343534
+嗾 25141533131134
+嗿 25134452511134
+嘀 25141432512251
+嘁 25113211234534
+嘂 25125152251251
+嘃 25141351125112
+嘄 25132511151234
+嘅 251511541535
+嘆 25112212511134
+嘇 25154545434333
+嘈 25112512212511
+嘉 12125143153251
+嘊 25125213121121
+嘋 25112135213134
+嘌 25112522111234
+嘍 25125112512531
+嘎 25113251111534
+嘏 12251512115154
+嘐 25154154134333
+嘑 25121531534312
+嘒 25111121112511
+嘓 25125125115341
+嘔 25112512512515
+嘕 25112121154444
+嘖 25111212511134
+嘗 24345251352511
+嘘 25121531522431
+嘙 25144153254531
+嘚 25133225111124
+嘛 25141312341234
+嘜 25112343434354
+嘝 25135351124412
+嘞 25112212511253
+嘟 2511213251152
+嘠 251132511451534
+嘡 25124345251121
+嘢 25125112115452
+嘣 25125235113511
+嘤 25125342534531
+嘥 25133221212134
+嘦 25134125221531
+嘧 25144545434252
+嘨 25151124313432
+嘩 2511221122112
+嘪 251252212511134
+嘫 251354413444444
+嘬 251251112211154
+嘭 251121251431333
+嘮 251433443344553
+嘯 2515112321155212
+嘰 251554554134534
+嘱 251513325125214
+嘲 251122511123511
+嘳 251251212511134
+嘴 2512121353535112
+嘵 251121121121135
+嘶 251122111343312
+嘷 251325111413412
+嘸 251311222214444
+嘹 251134432511234
+嘺 251313425125251
+嘻 251121251431251
+嘼 251251251211251
+嘽 251251251251112
+嘾 251125221251112
+嘿 251254312114444
+噀 251515515122134
+噁 251121551214544
+噂 251431253511124
+噃 251343123425121
+噄 251111253554234
+噅 251344335554444
+噆 251153515352511
+噇 251414312511211
+噈 251412512341354
+噉 25151221113134
+噊 251545232534251
+噋 251412515213134
+噌 251432524312511
+噍 251324111214444
+噎 251121451251431
+噏 251341251541541
+噐 251251121251251
+噑 25132511413412
+噒 251431234354152
+噓 251215315225211
+噔 251543341251431
+噕 344335554444251
+噖 251112111213445
+噗 251224314311134
+噘 251134315233534
+噙 251344134522554
+噚 251511121251124
+噛 251212143123452
+噜 251352512112511
+噝 251554444554234
+噞 2513412512513434
+噟 4133232411121251
+噠 251121431112454
+噡 2513513344111251
+噢 251325431234134
+噣 2512522135251214
+噤 2511234123411234
+噥 2512512211311534
+噦 2512121131233534
+噧 251122251125214
+器 2512511344251251
+噩 1225125112512511
+噪 2512512512511234
+噫 2514143125114544
+噬 2513143141234341
+噭 2513251141533134
+噮 2512522112513534
+噯 2513443454544354
+噰 2514155332411121
+噱 2512153151353334
+噲 2513412524312511
+噳 2512153152511134
+噴 251121222511134
+噵 431325111454251
+噶 251122251135345
+噷 2514143125113534
+噸 2511525132511134
+噹 2512434525125121
+噺 2514143112353312
+噻 2514451122134121
+噼 2515132514143112
+噽 12125143125113241
+噾 25144534414312511
+噿 25154154141343412
+嚀 25144545442522112
+嚁 25154154132411121
+嚂 25112512531425221
+嚃 2511522113344454
+嚄 2511223241112154
+嚅 25114524444132522
+嚆 2511224125125251
+嚇 25112132341213234
+嚈 25113251125111344
+嚉 25122431431121124
+嚊 25132511125121132
+嚋 25112151211251124
+嚌 25141432533543211
+嚍 25151121444425221
+嚎 25141251451353334
+嚏 25112452512152124
+嚐 25124345251352511
+嚑 25131254312114444
+嚒 25141312341234554
+嚓 25144535445411234
+嚔 251124525121542134
+嚕 251352512144442511
+嚖 251111211125114544
+嚗 251251112213424134
+嚘 251132511454544354
+嚙 251212134341343452
+嚚 251251125125251251
+嚛 251325115545541234
+嚜 251254312114444121
+嚝 25141312212512134
+嚞 121251121251121251
+嚟 251312343533424134
+嚠 251354533411243122
+嚡 251122125112121121
+嚢 125124534112213534
+嚣 251251132534251251
+嚤 251413123412343112
+嚥 2511221251211354444
+嚦 2511331234312342121
+嚧 2512153152512125221
+嚨 25141431251121515111
+嚩 2515544441251124124
+嚪 2512511251135321511
+嚫 2514143112342511135
+嚬 2512121233132511134
+嚭 1212514312511324251
+嚮 55345115452325251
+嚯 2511452444432411121
+嚰 2514131234123413251
+嚱 25121531512514311523
+嚲 41251521251251251112
+嚳 32113434511453121251
+嚴 2512511351221113134
+嚵 25135251153535251354
+嚶 25125111342511134531
+嚷 25141251251112213534
+嚸 25125431211444421251
+嚹 25131125221531534312
+嚺 25125221431353334454
+嚻 251251132511134251251
+嚼 25134432522151154124
+嚽 25111215331342511134
+嚾 25112225125132411121
+嚿 25112232411121321511
+囀 251125111212511214124
+囁 251122111122111122111
+囂 251251132511134251251
+囃 251413434123432411121
+囄 251413452255432411121
+囅 2512512511125131221534
+囆 251122251125214251214
+囇 2511254125441352211535
+囈 251122121341213541154
+囉 2512522155444432411121
+囊 1251245251251112213524
+囋 2513121353121352511134
+囌 2511223525121444431234
+囍 121251431251121251431251
+囎 2512511134432524312511
+囏 12212511134121251431251
+囐 25121531512512543121344
+囑 251513241342522135251214
+囒 22511225112511125431234
+囓 251111253212134341343452
+囔 2511251245251251112213534
+囕 251125125314252212511135
+囖 2513143142522155444432411121
+囗 251
+囘 25515
+囙 25511
+囚 25341
+四 25351
+囜 25541
+囝 255211
+回 252511
+囟 325341
+因 251341
+囡 255311
+团 251231
+団 251241
+囤 2515251
+囥 2541351
+囦 2525341
+囧 2534251
+囨 2513241
+囩 2511541
+囪 3253341
+囫 2535331
+囬 2522111
+园 2511351
+囮 2532351
+囯 2511211
+困 2512341
+囱 3253541
+囲 2511321
+図 2544341
+围 2511521
+囵 2534351
+囶 25341211
+囷 25312341
+囸 25121211
+囹 25344541
+固 25122511
+囻 25515151
+囼 25532511
+国 25112141
+图 25354441
+囿 251325111
+圀 253441531
+圁 2541112511
+圂 2513533341
+圃 2512511241
+圄 2512512511
+圅 5425431121
+圆 2525125341
+圇 25341251221
+圈 25431134551
+圉 25121431121
+圊 25112125111
+國 25125115341
+圌 252521325221
+圍 255212511521
+圎 255425111341
+圏 254311345151
+圐 252522141531
+圑 2512511241241
+園 2512125132541
+圓 2525125111341
+圔 2512154252211
+圕 2551112125111
+圖 25251122525111
+圗 25541225221111
+團 25125112141241
+圙 25341325221111
+圚 252512125111341
+圛 2525221121431121
+圜 2525221125135341
+圝 2541112515544445544441
+圞 25411125155444455444412341
+土 121
+圠 1215
+圡 1214
+圢 12112
+圣 54121
+圤 12124
+圥 12135
+圦 12134
+圧 13121
+在 132121
+圩 121112
+圪 121315
+圫 121315
+圬 121115
+圭 121121
+圮 121515
+圯 121515
+地 121525
+圱 313121
+圲 121312
+圳 121322
+圴 121354
+圵 121211
+圶 134121
+圷 121124
+圸 121252
+圹 121413
+场 121533
+圻 1213312
+圼 2511121
+圽 1213533
+圾 121354
+圿 1213432
+址 1212121
+坁 1213515
+坂 1213354
+坃 1211135
+坄 1213554
+坅 1213445
+坆 1213134
+均 1213541
+坈 1214535
+坉 1211525
+坊 1214153
+坋 1213453
+坌 3453121
+坍 1213541
+坎 1213534
+坏 1211324
+坐 3434121
+坑 1214135
+坒 1535121
+坓 1132121
+坔 2534121
+坕 3324121
+坖 1135121
+块 1215134
+坘 1211551
+坙 1555121
+坚 2254121
+坛 1211154
+坜 1211353
+坝 1212534
+坞 1213551
+坟 1214134
+坠 5234121
+坡 12153254
+坢 12143112
+坣 24345121
+坤 12125112
+坥 12125111
+坦 12125111
+坧 12113251
+坨 12144535
+坩 12112211
+坪 12114312
+坫 12121251
+坬 12133544
+坭 12151335
+坮 12154251
+坯 12113241
+坰 121251251
+坱 12125134
+坲 12151532
+坳 12155453
+坴 12134121
+坵 12132121
+坶 12155414
+坷 12112512
+坸 12135251
+坹 12144534
+坺 12113544
+坻 12135154
+坼 12133124
+坽 12134454
+坾 12144512
+坿 12132124
+垀 12134312
+垁 12131134
+垂 31212211
+垃 12141431
+垄 13534121
+垅 12113534
+垆 12121513
+垇 12125251
+垈 32154121
+垉 12135515
+垊 12151515
+型 113222121
+垌 121251251
+垍 121325111
+垎 121354251
+垏 121511112
+垐 413534121
+垑 121354354
+垒 545454121
+垓 121415334
+垔 125221121
+垕 331251121
+垖 121325151
+垗 121341534
+垘 121321344
+垙 121243135
+垚 121121121
+垛 121351234
+垜 121531234
+垝 121351355
+垞 121445315
+垟 121431112
+垠 121511534
+垡 321534121
+垢 121331251
+垣 121125111
+垤 121154121
+垥 121341251
+垦 511534121
+垧 121325251
+垨 121445124
+垩 122431121
+垪 121431132
+垫 121354121
+垬 121122134
+垭 121122431
+垮 121134115
+垯 121134454
+垰 121211124
+垱 121243511
+垲 121252515
+垳 121332112
+垴 121413452
+垵 121445531
+垶 1214143112
+垷 1212511135
+垸 1214451135
+垹 121111352
+垺 1213443521
+垻 1212511134
+垼 3323554121
+垽 4413312121
+垾 1212511112
+垿 1214135452
+埀 3122113511
+埁 1212523445
+埂 1211251134
+埃 1215431134
+埄 1213541112
+埅 524153121
+埆 1213535112
+埇 1215425112
+埈 1215434354
+埉 1211343434
+埊 2522534121
+埋 1212511211
+埌 1214511534
+埍 1212512511
+城 121135534
+埏 121321554
+埐 1215114554
+埑 1213312121
+埒 1213443124
+埓 1213443124
+埔 1211251124
+埕 1212511121
+埖 1211223235
+埗 1212121233
+埘 1212511124
+埙 1212512534
+埚 1212512534
+埛 1212534251
+埜 12341234121
+埝 12134454544
+埞 12144512134
+域 12112511534
+埠 12132515112
+埡 12112155121
+埢 12143113455
+埣 12141343412
+埤 12132511312
+埥 12111212511
+埦 12144535455
+埧 12125111134
+埨 12134125122
+埩 121355112
+埪 12144534121
+埫 12124325251
+埬 12112511234
+埭 12151124134
+埮 12143344334
+埯 12113425115
+埰 12134431234
+埱 12121123454
+埲 12111134112
+埳 12135321511
+埴 12112251111
+埵 12131212211
+埶 12134121354
+執 12143112354
+埸 12125113533
+培 12141431251
+基 12211134121
+埻 12141251521
+埼 12113412512
+埽 12151145252
+埾 12211154121
+埿 44151335121
+堀 12151352252
+堁 12125111234
+堂 24345251121
+堃 41534153121
+堄 12132151135
+堅 12512554121
+堆 12132411121
+堇 12212511121
+堈 12125431252
+堉 12141542511
+堊 12155121121
+堋 12135113511
+堌 12125122511
+堍 12135251354
+堎 12112134354
+堏 12344153121
+堐 12113121121
+堑 15213312121
+堒 12125111535
+堓 12125213112
+堔 12145341234
+堕 52132511121
+堖 121555325341
+堗 121445341344
+堘 121431134121
+堙 121125221121
+堚 121451251112
+堛 121125125121
+堜 121125431234
+堝 12125525251
+堞 121122151234
+堟 121551353334
+堠 121325131134
+堡 322511234121
+堢 121322511234
+堣 121251125214
+堤 121251112134
+堥 545233134121
+堦 121153532511
+堧 121132522134
+堨 121251135345
+堩 121442125111
+堪 121122111345
+堫 121345234354
+堬 121341251122
+堭 121325111121
+堮 121251251115
+堯 121121121135
+堰 121125115315
+報 121431125254
+堲 5115452121
+堳 121521325111
+場 121251113533
+堵 12112132511
+堶 121131212511
+堷 121414312511
+堸 121353251214
+堹 121312511211
+堺 121251213432
+堻 441511112121
+堼 121121124121
+堽 1212522112121
+堾 121111342511
+堿 121131251534
+塀 121513431132
+塁 251214134121
+塂 121122134515
+塃 121122415325
+塄 121252214153
+塅 121321113554
+塆 121412234515
+塇 121445125111
+塈 511541535121
+塉 1214134342511
+塊 121325113554
+塋 4334433445121
+塌 1212511541541
+塍 2511431134121
+塎 1214453434251
+塏 1212521251431
+塐 1211121554234
+塑 4315233511121
+塒 1212511121124
+塓 1214525114134
+塔 121122341251
+塕 1213454541541
+塖 1213122113534
+塗 4413411234121
+塘 1214135112251
+塙 1214125125251
+塚 1214513533434
+塛 1211252211234
+塜 1214511353334
+塝 1214143454153
+塞 4451122134121
+塟 122135435121
+塠 121325151454
+塡 1213525111534
+塢 1213251154444
+塣 4412511121121
+塤 1212512511134
+塥 1211251254312
+塦 521251112121
+塧 1214313425221
+塨 1211221342444
+塩 1213125125221
+塪 1213443321511
+填 1211225111134
+塬 1211332511234
+塭 121251125221
+塮 1213251113124
+塯 1213545325121
+塰 4413155414121
+塱 4511543511121
+塲 12131251113533
+塳 1213541112454
+塴 12125235113511
+塵 41352211535121
+塶 12141352211535
+塷 12121253444441
+塸 12112512512515
+塹 12511123312121
+塺 41312341234121
+塻 1211222511134
+塼 12112511214124
+塽 12113434343434
+塾 41251521354121
+塿 12125112512531
+墀 121513241343112
+墁 12125112522154
+墂 12112522111234
+境 12141431251135
+墄 12113211234534
+墅 25112115452121
+墆 12113221545252
+墇 12141431251112
+墈 12112211134553
+墉 12141351125112
+墊 12143112354121
+墋 12154545434333
+墌 12141312214444
+墍 32511351535121
+墎 1214125152152
+墏 52133544124121
+墐 12112212511121
+墑 12141432512251
+墒 12141432534251
+墓 1222511134121
+墔 12125232411121
+墕 12112121154444
+墖 12134125125121
+増 12143251212511
+墘 12112251112315
+墙 12112431252511
+墚 12144153441234
+墛 12151311234124
+墜 52431353334121
+墝 121121121121135
+增 121432524312511
+墟 12121531522431
+墠 121251251251112
+墡 121431112431251
+墢 121543345153554
+墣 121224314311134
+墤 121251212511134
+墥 121414312511211
+墦 121343123425121
+墧 121313425125251
+墨 254312114444121
+墩 121412515213134
+墪 412515213134121
+墫 121431253511124
+墬 52551353334121
+墭 12113553425221
+墮 52131212511121
+墯 442131212511121
+墰 121125221251112
+墱 121543341251431
+墲 121311222214444
+墳 121121222511134
+墴 12112212512134
+墵 121145244441154
+墶 121121431112454
+墷 1211221122112
+墸 12112212132511
+墹 121251125112511
+墺 121325431234134
+墻 1211234341252511
+墼 1251112523554121
+墽 1213251141533134
+墾 3443533511234121
+墿 1212522112143112
+壀 1215132514143112
+壁 5132514143112121
+壂 5131221343554121
+壃 1211251211251211
+壄 1234545231234121
+壅 4155332411121121
+壆 3211343451145121
+壇 1214125251125111
+壈 1214125251131234
+壉 1212153151353334
+壊 1211225221413534
+壋 1212434525125121
+壌 1214134112213534
+壍 44112511123312121
+壎 12131254312114444
+壏 12112512531425221
+壐 13425234343434121
+壑 21451343425154121
+壒 1211221215425221
+壓 13251125111344121
+壔 12112151211251124
+壕 12141251451353334
+壖 12114524444132522
+壗 12151121444425221
+壘 251212512125121121
+壙 12141312212512134
+壚 1212153152512125221
+壛 1212511251135321511
+壜 1212511145244441154
+壝 121251212511134454
+壞 1214125221241343534
+壟 41431251121515111121
+壠 12141431251121515111
+壡 2145134342511154121
+壢 1211331234312342121
+壣 12112211155455453212
+壤 12141251251112213534
+壥 12113254312114444121
+壦 12112225125132411121
+壧 1212512511351221113134
+壨 25121251212512125121121
+壩 121145244441221251123511
+壪 1214111251554444554444515
+士 121
+壬 3121
+壭 12152
+壮 412121
+壯 5213121
+声 1215213
+壱 1214535
+売 1214535
+壳 1214535
+壴 121251431
+壵 121121121
+壶 1214522431
+壷 12145251221
+壸 12145122431
+壹 121451251431
+壺 121452155121
+壻 121521342511
+壼 1214512155121
+壽 12151211251124
+壾 1212514311515
+壿 121431253511124
+夀 11525121251124
+夁 1212522125122511
+夂 354
+夃 5354
+处 35424
+夅 354152
+夆 3541112
+备 35425121
+夈 354431234
+変 413234354
+夊 354
+夋 5434354
+夌 12134354
+复 312511354
+夎 3434121354
+夏 1325111354
+夐 35253425111354
+夑 411125143344334354
+夒 1325111212151534354
+夓 132511135151134354
+夔 431325111212151534354
+夕 354
+外 35424
+夗 35455
+夘 35452
+夙 351354
+多 354354
+夛 511354
+夜 41323544
+夝 35431121
+夞 3542425135
+够 35251354354
+夠 35435435251
+夡 354354121251
+夢 1222522145354
+夣 41542522145354
+夤 35444512512134
+夥 25111234354354
+夦 122111345354354
+大 134
+夨 154
+天 1134
+太 1344
+夫 1134
+夬 5134
+夭 3134
+央 25134
+夯 13453
+夰 13432
+失 31134
+夲 13412
+夳 13411
+头 44134
+夵 134234
+夶 134134
+夷 151534
+夸 134115
+夹 143134
+夺 134124
+夻 134251
+夼 134322
+夽 1341154
+夾 1343434
+夿 1345215
+奀 1324134
+奁 1341345
+奂 3525134
+奃 13435154
+奄 13425115
+奅 13435352
+奆 1341515
+奇 13412512
+奈 13411234
+奉 11134112
+奊 121121154
+奋 13425121
+奌 21251134
+奍 43113432
+奎 134121121
+奏 111341134
+奐 352534134
+契 111253134
+奒 134415334
+奓 134354354
+奔 13412132
+奕 413234132
+奖 412354134
+套 1341211154
+奘 5213121134
+奙 5413425115
+奚 3443554134
+奛 13425113511
+奜 21112111134
+奝 13435121251
+奞 13432411121
+奟 13435113511
+奠 431253511134
+奡 132511113432
+奢 13412132511
+奣 113425113511
+奤 134132522111
+奥 325431234134
+奦 5452335453134
+奧 3253431234134
+奨 4123443124134
+奩 13412512512515
+奪 13432411121124
+奫 134441321155212
+奬 52133544124134
+奭 113251113251134
+奮 1343241112125121
+奯 1342121131233534
+奰 252212522125221134
+奱 4111251554444554444134
+奲 13412132511251251251112
+女 531
+奴 53154
+奵 53112
+奶 53153
+奷 531312
+奸 531112
+她 531525
+奺 531354
+奻 531531
+奼 531315
+好 531521
+奾 531252
+奿 354531
+妀 515531
+妁 531354
+如 531251
+妃 531515
+妄 415531
+妅 531121
+妆 412531
+妇 531511
+妈 531551
+妉 5314535
+妊 5313121
+妋 5311134
+妌 5311132
+妍 5311132
+妎 5313432
+妏 5314134
+妐 5313454
+妑 5315215
+妒 5314513
+妓 5311254
+妔 5314135
+妕 5312512
+妖 5313134
+妗 5313445
+妘 5311154
+妙 5312343
+妚 5311324
+妛 5221531
+妜 5315134
+妝 5213531
+妞 5315211
+妟 2511531
+妠 5312534
+妡 5313312
+妢 5313453
+妣 5311535
+妤 5315452
+妥 3443531
+妦 5311112
+妧 5311135
+妨 5314153
+妩 5311135
+妪 5311345
+妫 5314354
+妬 53113251
+妭 53113544
+妮 53151335
+妯 53125121
+妰 53131211
+妱 53153251
+妲 53125111
+妳 53135234
+妴 35355531
+妵 53141121
+妶 53141554
+妷 53131134
+妸 53112512
+妹 53111234
+妺 53111234
+妻 15112531
+妼 53145434
+妽 53125112
+妾 41431531
+妿 53251531
+姀 53131234
+姁 53135251
+姂 5313454
+姃 53112121
+姄 53151515
+姅 53143112
+姆 53155414
+姇 32124531
+姈 53134454
+姉 5311252
+姊 5313523
+始 53154251
+姌 53125211
+姍 53125221
+姎 53125134
+姏 53112211
+姐 53125111
+姑 53112251
+姒 5315434
+姓 53131121
+委 31234531
+姕 212135531
+姖 5311515
+姗 53135351
+姘 531431132
+姙 531323121
+姚 531341534
+姛 531251251
+姜 431121531
+姝 531311234
+姞 531121251
+姟 531415334
+姠 531325251
+姡 531312251
+姢 531542511
+姣 531413434
+姤 531331251
+姥 531121335
+姦 531531531
+姧 531531112
+姨 531151534
+姩 531311212
+姪 531154121
+姫 531125125
+姬 5311225125
+姭 535353531
+姮 531125111
+姯 531243135
+姰 531352511
+姱 531134115
+姲 531445531
+姳 531354251
+姴 135422531
+姵 531351252
+姶 531341251
+姷 531132511
+姸 531113112
+姹 531445315
+姺 531312135
+姻 531251341
+姼 531354354
+姽 531351355
+姾 531341121
+姿 413534531
+娀 531113534
+威 131531534
+娂 531122134
+娃 531121121
+娄 431234531
+娅 531122431
+娆 531153135
+娇 531313432
+娈 412234531
+娉 5312512115
+娊 5312511135
+娋 5312432511
+娌 5312511211
+娍 531135534
+娎 1213312531
+娏 5311353334
+娐 5313443521
+娑 4412343531
+娒 5313155414
+娓 5315133115
+娔 5311225135
+娕 5311251234
+娖 5312512134
+娗 531312154
+娘 5314511534
+娙 5311555121
+娚 5312512153
+娛 5312515134
+娜 531511352
+娝 5311324251
+娞 5313443531
+娟 5312512511
+娠 5311311534
+娡 5311214544
+娢 5313445251
+娣 5314351523
+娤 5213121531
+娥 5313121534
+娦 5313212134
+娧 5314325135
+娨 5312511112
+娩 5313525135
+娪 5311251251
+娫 531321554
+娬 53111212154
+娭 5315431134
+娮 5314111251
+娯 5312515134
+娰 531325434
+娱 5312511134
+娲 5312512534
+娳 5313123422
+娴 5314251234
+娵 53112211154
+娶 12211154531
+娷 53131212211
+娸 53112211134
+娹 53151541554
+娺 53154545454
+娻 53112511234
+娼 53125112511
+娽 53151124134
+娾 53113121121
+娿 5212512531
+婀 5315212512
+婁 25112512531
+婂 53132511252
+婃 53144511234
+婄 53141431251
+婅 53135431234
+婆 44153254531
+婇 53134431234
+婈 53112134354
+婉 53144535455
+婊 53111213534
+婋 53121531535
+婌 53121123454
+婍 53113412512
+婎 53132411121
+婏 53135251354
+婐 53125111234
+婑 53131234531
+婒 53143344334
+婓 21112111531
+婔 53121112111
+婕 53115112134
+婖 53111342444
+婗 53132151135
+婘 53143113455
+婙 531355112
+婚 53135152511
+婛 53141251234
+婜 12512554531
+婝 53144512134
+婞 53112143112
+婟 53125122511
+婠 53144525151
+婡 53113434234
+婢 53132511312
+婣 531321155212
+婤 53135121251
+婥 53121251112
+婦 53151145252
+婧 53111212511
+婨 53134125122
+婩 53125213112
+婪 12341234531
+婫 53125111535
+婬 53134433121
+婭 53112155121
+婮 53151312251
+婯 12541254531
+婰 53125122134
+婱 51541554531
+婲 5131223235
+婳 53112512152
+婴 25342534531
+婵 53143251112
+婶 53144525112
+婷 531412514512
+婸 531251113533
+婹 531125221531
+婺 545233134531
+婻 531122543112
+婼 53112213251
+婽 531512115154
+婾 531341251155
+婿 531521342511
+媀 531251125214
+媁 531521251152
+媂 531414345252
+媃 531545231234
+媄 531431121134
+媅 531122111345
+媆 531132522134
+媇 531414311234
+媈 531451251112
+媉 531513154121
+媊 531431251122
+媋 531111342511
+媌 53112225121
+媍 531352511134
+媎 53112132511
+媏 531252132522
+媐 1225125515531
+媑 531312511211
+媒 531122111234
+媓 531325111121
+媔 531132522111
+媕 531341251132
+媖 53112225134
+媗 531445125111
+媘 531153532511
+媙 531131531534
+媚 531521325111
+媛 531344311354
+媜 531212511134
+媝 312344334531
+媞 531251112134
+媟 531122151234
+媠 531131212511
+媡 531125431234
+媢 531251125111
+媣 531441351234
+媤 531251214544
+媥 531451325122
+媦 531251212511
+媧 53125525251
+媨 531431253511
+媩 531122513511
+媪 531251125221
+媫 531215112134
+媬 531322511234
+媭 333132534531
+媮 531341251122
+媯 531435554444
+媰 5313552335523
+媱 5313443311252
+媲 5313253411535
+媳 5313251114544
+媴 5311212513534
+媵 3511431134531
+媶 531122122111
+媷 5311311534124
+媸 5315221251214
+媹 5313545325121
+媺 5312521353134
+媻 3354143554531
+媼 5312534125221
+媽 5311211254444
+媾 5311122125211
+媿 531325113554
+嫀 5311113431234
+嫁 5314451353334
+嫂 531321511254
+嫃 5311225111134
+嫄 5311332511234
+嫅 531431113121
+嫆 5314453434251
+嫇 5314525114134
+嫈 4334433445531
+嫉 5314134131134
+嫊 5311121554234
+嫋 5315154151541
+嫌 5314315112234
+嫍 5313443321511
+嫎 5314143454153
+嫏 53145115452
+嫐 5312512153531
+嫑 1324125221531
+嫒 5313443451354
+嫓 5313525341535
+嫔 5314453212134
+嫕 53113113454544
+嫖 53112522111234
+嫗 53112512512515
+嫘 53125121554234
+嫙 53141533152134
+嫚 53125112522154
+嫛 13113453554531
+嫜 53141431251112
+嫝 53141351124134
+嫞 53141351125112
+嫟 5311122131515
+嫠 11234313413531
+嫡 53141432512251
+嫢 11342511135531
+嫣 53112121154444
+嫤 53112212511121
+嫥 53112511214124
+嫦 53124345251252
+嫧 53111212511134
+嫨 53112212511134
+嫩 53112512343134
+嫪 53154154134333
+嫫 5311222511134
+嫬 53141312214444
+嫭 53121531534312
+嫮 53114524444115
+嫯 1121533134531
+嫰 53112512343534
+嫱 53112431252511
+嫲 53141312341234
+嫳 43252343134531
+嫴 531122514143112
+嫵 531311222214444
+嫶 531324111214444
+嫷 53152131212511
+嫸 531431112431251
+嫹 53112212512134
+嫺 531251125113511
+嫻 531251125111234
+嫼 531254312114444
+嫽 531134432511234
+嫾 531431234354152
+嫿 531511211251211
+嬀 531344335554444
+嬁 531543341251431
+嬂 531414312511534
+嬃 333132511134531
+嬄 531121451251431
+嬅 5311221122112
+嬆 531341251541541
+嬇 531251212511134
+嬈 531121121121135
+嬉 531121251431251
+嬊 122125121135531
+嬋 531251251251112
+嬌 531313425125251
+嬍 531252111213134
+嬎 531352513531121
+嬏 531343123425121
+嬐 5313412512513434
+嬑 5314143125114544
+嬒 5313412514312511
+嬓 5313251141533134
+嬔 5313525135431121
+嬕 5312522112143112
+嬖 5132514143112531
+嬗 5314125251125111
+嬘 531431353334454
+嬙 5311234341251511
+嬚 5314134315112234
+嬛 5312522112513534
+嬜 4143125113534531
+嬝 5313251115413534
+嬞 531122312511211
+嬟 5314311213121534
+嬠 5312512512511234
+嬡 5313443454544354
+嬢 5314134112213534
+嬣 53144545442522112
+嬤 53141312341234554
+嬥 53154154132411121
+嬦 53112151211251124
+嬧 53151121444425221
+嬨 5314315545544544
+嬩 5313211152511134
+嬪 53144512332511134
+嬫 53143344334451234
+嬬 53114524444132522
+嬭 53123425234343434
+嬮 13251125111344531
+嬯 53112125145154121
+嬰 25111342511134531
+嬱 44112511123312531
+嬲 25121535312512153
+嬳 5311223241112154
+嬴 4152513511531354
+嬵 53155444432511252
+嬶 53132511125121132
+嬷 53141312341234354
+嬸 531445343123425121
+嬹 5313211251251511134
+嬺 53111221325154544
+嬻 531121252212511134
+嬼 531354533411243122
+嬽 5312522121252215134
+嬾 5311251234352511134
+嬿 5311221251211354444
+孀 53114524444123425111
+孁 14524444251251251531
+孂 53131431451153425221
+孃 53141251251112213534
+孄 53125112511125431234
+孅 53134341211121111534
+孆 53125111342511134531
+孇 531324111213241112154
+孈 531252324111212534252
+孉 53112225125132411121
+孊 5314131234123421112111
+孋 5311254125441352211535
+孌 4111251554444554444531
+孍 5312512511351221113134
+孎 531513241342522135251214
+孏 53112225112511125431234
+子 521
+孑 521
+孒 521
+孓 524
+孔 5215
+孕 53521
+孖 521521
+字 425521
+存 132521
+孙 521234
+孚 3443521
+孛 1245521
+孜 5213134
+孝 1213521
+孞 5214544
+孟 52125221
+孠 51251521
+孡 52154251
+孢 52135515
+季 31234521
+孤 52133544
+孥 53154521
+学 44345521
+孧 55453521
+孨 521521521
+孩 521415334
+孪 412234521
+孫 5213554234
+孬 1324531521
+孭 5212511134
+孮 52144511234
+孯 12512554521
+孰 41251521354
+孱 513521521521
+孲 52112155121
+孳 431554554521
+孴 5215215212511
+孵 35435243443521
+孶 4155441554521
+孷 11234313413521
+學 3211343451145521
+孹 5132514143112521
+孺 52114524444132522
+孻 52151121444425221
+孼 5233251514143112521
+孽 1223251514143112521
+孾 52125111342511134531
+孿 4111251554444554444521
+宀 445
+宁 44512
+宂 44535
+它 44535
+宄 44535
+宅 445315
+宆 445515
+宇 445112
+守 445124
+安 445531
+宊 4451344
+宋 4451234
+完 4451135
+宍 4454134
+宎 4453134
+宏 4451354
+宐 4452541
+宑 4451132
+宒 4453115
+宓 44545434
+宔 44541121
+宕 44513251
+宖 44551554
+宗 44511234
+官 44525151
+宙 44525121
+定 44512134
+宛 44535455
+宜 44525111
+宝 44511214
+实 44544134
+実 44511134
+宠 44513534
+审 44525112
+客 445354251
+宣 445125111
+室 445154121
+宥 445132511
+宦 445125125
+宧 4451225125
+宨 445341534
+宩 445431234
+宪 445312135
+宫 445251251
+宬 445135534
+宭 4455113251
+宮 4452513251
+宯 4451213521
+宰 4454143112
+宱 4453231211
+宲 4452511234
+害 4451112251
+宴 4452511531
+宵 4452432511
+家 4451353334
+宷 4453431234
+宸 4451311534
+容 4453434251
+宺 4452511235
+宻 4455443252
+宼 4451135531
+宽 4451222535
+宾 4453212134
+宿 44532132511
+寀 44534431234
+寁 44515112134
+寂 44521123454
+寃 44535251354
+寄 44513412512
+寅 44512512134
+密 44545434252
+寇 44511352154
+寈 44511212511
+寉 44532411121
+寊 445212511134
+寋 445112213455
+富 445125125121
+寍 445454425221
+寎 445521312534
+寏 445352534134
+寐 445521311234
+寑 445325114554
+寒 445112213444
+寓 445251125214
+寔 445251112134
+寕 445132522112
+寖 4454415114554
+寗 4454543425211
+寘 4451225111134
+寙 4453354433544
+寚 4451121311252
+寛 4451222511135
+寜 4454544252212
+寝 4454125114554
+寞 4451222511134
+察 44535445411234
+寠 44525112512531
+寡 44513251113453
+寢 44552135114554
+寣 44552134111251
+寤 44552131251251
+寥 44554154134333
+實 44555212511134
+寧 44545442522112
+寨 44511221341234
+審 445343123425121
+寪 445344335554444
+寫 445321511354444
+寬 44512225111354
+寭 445125112144544
+寮 445134432511234
+寯 445324111212525
+寰 4452522112513534
+寱 44552133251111234
+寲 44535311345452134
+寳 4451121352342511134
+寴 4454143112342511135
+寵 44541431251121515111
+寶 44511213112522511134
+寷 445111221112521251431
+寸 124
+对 54124
+寺 121124
+寻 511124
+导 515124
+寽 3443124
+対 4134124
+寿 1113124
+尀 12515124
+封 121121124
+専 125112124
+尃 1251124124
+射 3251113124
+尅 1225135124
+将 412354124
+將 52133544124
+專 12511214124
+尉 51311234124
+尊 431253511124
+尋 511121251124
+尌 121251431124
+對 22431431121124
+導 431325111454124
+小 234
+尐 2344
+少 2343
+尒 34234
+尓 31234
+尔 35234
+尕 53234
+尖 234134
+尗 211234
+尘 234121
+尙 23425251
+尚 24325251
+尛 234234234
+尜 234134234
+尝 243451154
+尞 134432511234
+尟 2511121342343
+尠 1221113452343
+尡 24313525111535
+尢 135
+尣 3435
+尤 1354
+尥 135354
+尦 3435354
+尧 153135
+尨 1353334
+尩 34351121
+尪 1351121
+尫 1351121
+尬 1353432
+尭 12122135
+尮 135531234
+尯 135351355
+尰 135312511211
+就 412512341354
+尲 1354315112234
+尳 135255452511
+尴 1352231425221
+尵 135251212511134
+尶 13512512531425221
+尷 13512512531425221
+尸 513
+尹 5113
+尺 5134
+尻 51335
+尼 51335
+尽 513444
+尾 5133115
+尿 5132534
+局 5135251
+屁 5131535
+层 5131154
+屃 5132534
+屄 51344534
+居 51312251
+屆 51312152
+屇 51325121
+屈 51352252
+屉 51312215
+届 51325121
+屋 513154121
+屌 513251252
+屍 513135435
+屎 513431234
+屏 513431132
+屐 5133321254
+屑 5132432511
+屒 5131311534
+屓 5132511134
+屔 3212151335
+展 5131221534
+屖 5134143112
+屗 5133115124
+屘 5133115521
+屙 5135212512
+屚 51312524444
+屛 51331133112
+屜 51333212215
+屝 51321112111
+属 513325125214
+屟 513122151234
+屠 51312132511
+屡 513431234531
+屢 51325112512531
+屣 51333221212134
+層 513432524312511
+履 513332312511354
+屦 513332431234531
+屧 513332122151234
+屨 51333225112512531
+屩 513332313425125251
+屪 513445134432511234
+屫 5135213313425125251
+屬 513241342522135251214
+屭 513251113425111342511134
+屮 522
+屯 1525
+屰 431523
+山 252
+屲 3252
+屳 34252
+屴 25253
+屵 25213
+屶 25253
+屷 25253
+屸 252121
+屹 252315
+屺 252515
+屻 252534
+屼 252135
+屽 252112
+屾 252252
+屿 252151
+岀 252252
+岁 252354
+岂 252515
+岃 252534
+岄 2523511
+岅 2523354
+岆 2523134
+岇 2523552
+岈 2521523
+岉 2523533
+岊 5215252
+岋 252354
+岌 252354
+岍 2521132
+岎 2523453
+岏 2521135
+岐 2521254
+岑 2523445
+岒 2523445
+岓 2523312
+岔 3453252
+岕 2523432
+岖 2521345
+岗 2522534
+岘 2522535
+岙 3134252
+岚 2523534
+岛 3545252
+岜 2525215
+岝 25231211
+岞 25231211
+岟 25225134
+岠 2521515
+岡 25431252
+岢 25212512
+岣 25235251
+岤 25244534
+岥 25253254
+岦 25241431
+岧 25253251
+岨 25225111
+岩 25213251
+岪 25251532
+岫 25225121
+岬 25225112
+岭 25234454
+岮 25244535
+岯 25213241
+岰 25255453
+岱 32154252
+岲 25225135
+岳 32121252
+岴 25232121
+岵 25212251
+岶 25232511
+岷 25251515
+岸 25213112
+岹 25253251
+岺 25234454
+岻 25235154
+岼 25212312
+岽 25215234
+岾 25221251
+岿 25223511
+峀 25225121
+峁 25235352
+峂 25235444
+峃 44345252
+峄 25254112
+峅 25254132
+峆 252341251
+峇 252341251
+峈 252354251
+峉 252354251
+峊 325151252
+峋 252352511
+峌 252154121
+峍 252511112
+峎 252511534
+峏 252132522
+峐 252415334
+峑 252341121
+峒 252251251
+峓 252151534
+峔 252121335
+峕 252412511
+峖 252445531
+峗 252351355
+峘 252125111
+峙 252121124
+峚 252134121
+峛 252135422
+峜 252342121
+峝 252251251
+峞 252351355
+峟 252132511
+峠 252211124
+峡 252143134
+峢 252135422
+峣 252153135
+峤 252313432
+峥 252355112
+峦 412234252
+峧 252413434
+峨 2523121534
+峩 2523121534
+峪 2523434251
+峫 252152352
+峬 2521251124
+峭 2522432511
+峮 2525113251
+峯 2523541112
+峰 2523541112
+峱 3535211252
+峲 2523123422
+峳 2523223134
+峴 2522511135
+峵 2524451354
+島 3251115252
+峷 2524143112
+峸 252135534
+峹 3411234252
+峺 2521251134
+峻 2525434354
+峼 2523121251
+峽 2521343434
+峾 4413312252
+峿 2521251251
+崀 2524511534
+崁 2521213534
+崂 2521224553
+崃 2521431234
+崄 2523414431
+崅 2523535112
+崆 25244534121
+崇 25244511234
+崈 44511234252
+崉 25225342511
+崊 25212341234
+崋 2521122112
+崌 25251312251
+崍 25213434234
+崎 25213412512
+崏 25235152511
+崐 25225111535
+崑 25225111535
+崒 25241343412
+崓 25225122511
+崔 25232411121
+崕 25213121121
+崖 25213121121
+崗 25225431252
+崘 25234125122
+崙 25234125122
+崚 25212134354
+崛 25251352252
+崜 25231212211
+崝 25211212511
+崞 25241251521
+崟 25234112431
+崠 25212511234
+崡 25252413452
+崢 25234435112
+崣 25231234531
+崤 25234132511
+崥 25232511312
+崦 25213425115
+崧 25212343454
+崨 25215112134
+崩 25235113511
+崪 25241343412
+崫 25251342252
+崬 25212511234
+崭 25215213312
+崮 25225122511
+崯 25234112431
+崰 25255525121
+崱 252251113422
+崲 252325111121
+崳 252341251122
+崴 252131531534
+崵 252251113533
+崶 252121121124
+崷 252431253511
+崸 252132511134
+崹 252414345252
+崺 252415331525
+崻 252332121124
+崼 252251112134
+崽 252251214544
+崾 252125221531
+崿 252251251115
+嵀 252123441121
+嵁 252122111345
+嵂 252332511112
+嵃 252414313333
+嵄 252431121134
+嵅 252131251534
+嵆 312341354252
+嵇 312341354252
+嵈 252344311354
+嵉 252412514512
+嵊 2523122113534
+嵋 252521325111
+嵌 252122113534
+嵍 545233134252
+嵎 252251125214
+嵏 252345234354
+嵐 252353251214
+嵑 252251135345
+嵒 251251251252
+嵓 252251251251
+嵔 252251211534
+嵕 252345234354
+嵖 252123425111
+嵗 252131233534
+嵘 252122451234
+嵙 252312344412
+嵚 252311153534
+嵛 252341251122
+嵜 252414312512
+嵝 252431234531
+嵞 3411234252252
+嵟 2521332411121
+嵠 2523443554134
+嵡 2523454541541
+嵢 2523445113251
+嵣 2524135112251
+嵤 4334433445252
+嵥 2523541521234
+嵦 2522521251431
+嵧 2523545325121
+嵨 2523251154444
+嵩 2524125125251
+嵪 2524125125251
+嵫 252431554554
+嵬 252325113554
+嵭 2524143454153
+嵮 2521225111134
+嵯 252431113121
+嵰 2524315112234
+嵱 2524453434251
+嵲 2523251111234
+嵳 252431113121
+嵴 2524134342511
+嵵 2522511121124
+嵶 2525154151541
+嵷 25233234342134
+嵸 25233234342134
+嵹 252515251251214
+嵺 25254154134333
+嵻 25241351124134
+嵼 25241431331121
+嵽 25213221545252
+嵾 25254545434333
+嵿 25212132511134
+嶀 25214524444115
+嶁 25225112512531
+嶂 25241431251112
+嶃 25212511123312
+嶄 25212511123312
+嶅 1121533134252
+嶆 25212512212511
+嶇 25212512512515
+嶈 25252133544124
+嶉 25225132411121
+嶊 25212132411121
+嶋 25232511154444
+嶌 25232511154444
+嶍 25254154132511
+嶎 25251311234124
+嶏 252131253511515
+嶐 25252354131121
+嶑 25235251353334
+嶒 252432524312511
+嶓 252343123425121
+嶔 252341124313534
+嶕 252324111214444
+嶖 252341251541541
+嶗 252433443344553
+嶘 252123415341534
+嶙 252431234354152
+嶚 252134432511234
+嶛 252134432511234
+嶜 252153515352511
+嶝 252543341251431
+嶞 52131212511252
+嶟 252431253511124
+嶠 252313425125251
+嶡 252134315233534
+嶢 252121121121135
+嶣 252324111214444
+嶤 252121121121135
+嶥 252134315233534
+嶦 2523513344111251
+嶧 2522522112143112
+嶨 3211343451145252
+嶩 2522512211311534
+嶪 2522243143111234
+嶫 2522243143111234
+嶬 2524311213121534
+嶭 2523251514143112
+嶮 2523412512513434
+嶯 252251122111534
+嶰 2523535112533112
+嶱 252122251135345
+嶲 252324111212525
+嶳 2521353334121121
+嶴 325431234134252
+嶵 2522522121112111
+嶶 2523322521353134
+嶷 25235311345452134
+嶸 25243344334451234
+嶹 25212151211251124
+嶺 25234454132511134
+嶻 25212132411121534
+嶼 2523211152511134
+嶽 25235341112511344
+嶾 25234431215114544
+嶿 25214524444132522
+巀 252234324111211534
+巁 25213122251125214
+巂 252324111212534251
+巃 25241431251121515111
+巄 25241431251121515111
+巅 2521225111134132534
+巆 2524334433445251251
+巇 25221531512514311534
+巈 25212212511235431234
+巉 25234251153434251354
+巊 25225111342511134531
+巋 252325151212151145252
+巌 2524431351221113134
+巍 25231234531325113554
+巎 2521325111212151534354
+巏 25212225125132411121
+巐 252412512525125113312
+巑 2523121353121352511134
+巒 4111251554444554444252
+巓 2523525111534132511134
+巔 25212251111341325111134
+巕 2524313251514143112531
+巖 2522512511351221113134
+巗 2522512511351221113134
+巘 25221531512512543121344
+巙 252431325111212151534354
+巚 25221531512512543121344
+巛 555
+巜 55
+川 322
+州 434242
+巟 415325
+巠 1555121
+巡 555454
+巢 55525111234
+巣 44325111234
+巤 555253415445445
+工 121
+左 13121
+巧 12115
+巨 1515
+巩 121354
+巪 15155
+巫 1234341
+巬 121351134
+巭 121531134
+差 431113121
+巯 541214154325
+巰 15551214154325
+己 515
+已 515
+巳 515
+巴 5215
+巵 3315215
+巶 53251515
+巷 122134515
+巸 1225125515
+巹 525341515
+巺 515515134
+巻 431134515
+巼 521525135
+巽 515515122134
+巾 252
+巿 1252
+帀 1252
+币 3252
+市 41252
+布 13252
+帄 25212
+帅 23252
+帆 252354
+帇 511252
+师 231252
+帉 2523453
+帊 2525215
+帋 3515252
+希 3413252
+帍 4513252
+帎 2524535
+帏 2521152
+帐 2523154
+帑 53154252
+帒 32154252
+帓 25211234
+帔 25253254
+帕 25232511
+帖 25221251
+帗 25213544
+帘 44534252
+帙 25231134
+帚 51145252
+帛 32511252
+帜 25225134
+帝 414345252
+帞 252132511
+帟 413234252
+帠 321511252
+帡 252431132
+帢 252341251
+帣 431134252
+帤 531251252
+帥 325151252
+带 122245252
+帧 252212534
+帨 2524325135
+帩 2522432511
+帪 2521311534
+師 3251511252
+帬 5113251252
+席 4131221252
+帮 111352252
+帯 1222145252
+帰 4351145252
+帱 2521113124
+帲 25231133112
+帳 25212111534
+帴 25215341534
+帵 25244535455
+帶 13221545252
+帷 25232411121
+常 24345251252
+帹 25241431531
+帺 25212211134
+帻 25211212534
+帼 25225112141
+帽 252251125111
+帾 25212132511
+帿 252325131134
+幀 252212511134
+幁 252132511134
+幂 452511134252
+幃 252521251152
+幄 252513154121
+幅 252125125121
+幆 252251135345
+幇 121121124252
+幈 252513431132
+幉 252122151234
+幊 2521212511134
+幋 3354143554252
+幌 2522511243135
+幍 2523443321511
+幎 2524525114134
+幏 2524451353334
+幐 3511431134252
+幑 33225212523134
+幒 25232535414544
+幓 25254545434333
+幔 25225112522154
+幕 1222511134252
+幖 25212522111234
+幗 25225125115341
+幘 25211212511134
+幙 2521222511134
+幚 11135232511252
+幛 25241431251112
+幜 252251141251234
+幝 252251251251112
+幞 252224314311134
+幟 252414312511534
+幠 252311222214444
+幡 252343123425121
+幢 252414312511211
+幣 43252343134252
+幤 243251513134252
+幥 252243452513112
+幦 5132514143112252
+幧 2522512512511234
+幨 2523513344111251
+幩 252121222511134
+幪 2521224511353334
+幫 12112112432511252
+幬 25212151211251124
+幭 25212225221134534
+幮 252413121251431124
+幯 2523143145115452
+幰 2524451112252214544
+幱 2525112151125431234
+干 112
+平 14312
+年 311212
+幵 113112
+并 431132
+幷 31133112
+幸 12143112
+幹 1225111234112
+幺 554
+幻 5545
+幼 55453
+幽 255455452
+幾 554554134534
+广 413
+庀 41335
+庁 41312
+庂 41334
+広 41354
+庄 413121
+庅 413354
+庆 413134
+庇 4131535
+庈 4133445
+庉 4131525
+床 4131234
+庋 4131254
+庌 4131523
+庍 4133312
+庎 4133432
+序 4135452
+庐 4134513
+庑 4131135
+庒 4131214
+库 4131512
+应 4134431
+底 41335154
+庖 41335515
+店 41321251
+庘 41325112
+庙 41325121
+庚 41351134
+庛 413212135
+府 41332124
+庝 41335444
+庞 41313534
+废 41353544
+庠 413431112
+庡 413413534
+庢 413154121
+庣 413341534
+庤 413121124
+庥 413321234
+度 413122154
+座 4133434121
+庨 4131213521
+庩 4133411234
+庪 4131211254
+庫 4131251112
+庬 4131353334
+庭 413312154
+庮 4131253511
+庯 4131251124
+庰 413431132
+庱 41312134354
+庲 41313434234
+庳 41332511312
+庴 41312212511
+庵 41313425115
+庶 41312214444
+康 41351124134
+庸 41351125112
+庹 41312215134
+庺 41334541234
+庻 41312213434
+庼 41315132534
+庽 413251125214
+庾 41332151134
+庿 41312225121
+廀 413445433454
+廁 413251113422
+廂 413123425111
+廃 413543341135
+廄 413511543554
+廅 4131215425221
+廆 413325113554
+廇 4133545325121
+廈 4131325111354
+廉 4134315112234
+廊 41345115452
+廋 413321511254
+廌 4135221154444
+廍 4134143125152
+廎 41315132511134
+廏 41332511353554
+廐 413511541535
+廑 41312212511121
+廒 4131121533134
+廓 4134125152152
+廔 41325112512531
+廕 4135234451154
+廖 41354154134333
+廗 41313221545252
+廘 41341352211535
+廙 41325121122134
+廚 413121251431124
+廛 413251121134121
+廜 41351312132511
+廝 413122111343312
+廞 413341124313534
+廟 413122511123511
+廠 413243252513134
+廡 413311222214444
+廢 413543345153554
+廣 41312212512134
+廤 413125111225135
+廥 4133412524312511
+廦 4135132514143112
+廧 4131343421252511
+廨 4133525112533112
+廩 4134125251131234
+廪 4134125251111234
+廫 413351154154134333
+廬 4132153152512125221
+廭 4133123411212511134
+廮 41325111342511134531
+廯 41335251214444431112
+廰 41312211113252214544
+廱 413555251521532411121
+廲 4131254125441352211535
+廳 4131221111121122522114544
+廴 54
+廵 55554
+延 321554
+廷 312154
+廸 2512154
+廹 3251154
+建 51111254
+廻 25251154
+廼 12535154
+廽 252211154
+廾 132
+廿 1221
+开 1132
+弁 54132
+异 515132
+弃 4154132
+弄 1121132
+弅 3453132
+弆 12154132
+弇 341251132
+弈 413234132
+弉 5213121132
+弊 43252343134132
+弋 154
+弌 1154
+弍 11154
+弎 111154
+式 112154
+弐 111154
+弑 341234112154
+弒 3412344112154
+弓 515
+弔 5152
+引 5152
+弖 5151
+弗 51532
+弘 51554
+弙 515112
+弚 435152
+弛 515525
+弜 515515
+弝 5155215
+弞 5153534
+弟 4351523
+张 5153154
+弡 5151515
+弢 51552254
+弣 51532124
+弤 51535154
+弥 51535234
+弦 51541554
+弧 51533544
+弨 51553251
+弩 53154515
+弪 51554121
+弫 515125125
+弬 5151251225
+弭 515122111
+弮 431134515
+弯 412234515
+弰 5152432511
+弱 5154151541
+弲 5152512511
+弳 5151555121
+弴 51541251521
+張 51512111534
+弶 51541251234
+強 51554251214
+弸 51535113511
+弹 51543251112
+强 515251251214
+弻 515125341515
+弼 515132511515
+弽 515122151234
+弾 515443251112
+弿 4451122134515
+彀 1214515153554
+彁 5151251212512
+彂 2243151531134
+彃 5152511122112
+彄 51512512512515
+彅 51543125112253
+彆 43252343134515
+彇 5155112321155212
+彈 515251251251112
+彉 51512212512134
+彊 5151251211251211
+彋 5152522112513534
+彌 51513425234343434
+彍 51541312212512134
+彎 4111251554444554444515
+彏 51525111251113241112154
+彐 511
+彑 551
+归 23511
+当 243511
+彔 55124134
+录 51124134
+彖 551353334
+彗 11121112511
+彘 551311341535
+彙 5514525111234
+彚 5114525111234
+彛 5114312343453132
+彜 5514312343453132
+彝 551431234554234132
+彞 511431234554234132
+彟 5111241223241112154
+彠 5111212511241223241112154
+彡 333
+形 1132333
+彣 4134333
+彤 3541333
+彥 413413333
+彦 414313333
+彧 1251153334
+彨 1254254333
+彩 34431234333
+彪 21531535333
+彫 35121251333
+彬 12341234333
+彭 121251431333
+彮 4453434251333
+彯 12522111234333
+彰 41431251112333
+影 251141251234333
+彲 1254125441352211535333
+彳 332
+彴 332354
+彵 332525
+彶 332354
+彷 3324153
+彸 3323454
+役 3323554
+彺 3321121
+彻 3321553
+彼 33253254
+彽 33235154
+彾 33234454
+彿 33251532
+往 33241121
+征 33212121
+徂 33225111
+徃 33231121
+径 33254121
+待 332121124
+徆 332125351
+徇 332352511
+很 332511534
+徉 332431112
+徊 332252511
+律 332511112
+後 332554354
+徍 552121121
+徎 3322511121
+徏 3322121233
+徐 3323411234
+徑 3321555121
+徒 3321212134
+従 3324312134
+徔 332122454
+徕 3321431234
+徖 33244511234
+得 33225111124
+徘 33221112111
+徙 33221212134
+徚 332125431234
+徛 33213412512
+徜 33224325251
+徝 33212251111
+從 33234342134
+徟 33235121251
+徠 33213434234
+御 332311212152
+徢 33215112134
+徣 33212212511
+徤 33251111254
+徥 332251112134
+徦 332512115154
+徧 332451325122
+徨 332325111121
+復 332312511354
+循 332331225111
+徫 332521251152
+徬 3324143454153
+徭 3323443311252
+微 3322521353134
+徯 3323443554134
+徰 3321212112121
+徱 33212522111234
+徲 332513241343112
+徳 33212252214544
+徴 33225211213134
+徵 332252111213134
+徶 33243252343134
+德 332122522114544
+徸 332414312511211
+徹 332415425113134
+徺 332121121121135
+徻 3323412524312511
+徼 3323251141533134
+徽 33225215542343134
+徾 33225241112513134
+徿 33241431251121515111
+忀 33241251251112213534
+忁 33225115225213424134
+忂 332251112511132411121
+心 4544
+忄 442
+必 45434
+忆 4425
+忇 44253
+忈 114544
+忉 44253
+忊 44212
+忋 442515
+忌 5154544
+忍 5344544
+忎 3124544
+忏 442312
+忐 2114544
+忑 1244544
+忒 1454454
+忓 442112
+忔 442315
+忕 442134
+忖 442124
+志 1214544
+忘 4154544
+忙 442415
+忚 442515
+忛 442354
+応 4134544
+忝 11342444
+忞 41344544
+忟 4424134
+忠 25124544
+忡 4422512
+忢 12514544
+忣 442354
+忤 4423112
+忥 31154544
+忦 4423432
+忧 4421354
+忨 4421135
+忩 34544544
+忪 4423454
+快 4425134
+忬 4425452
+忭 4424124
+忮 4421254
+忯 4423515
+忰 4423512
+忱 4424535
+忲 4421344
+忳 4421525
+忴 4423445
+念 34454544
+忶 4421154
+忷 4423452
+忸 4425211
+忹 4421121
+忺 4423534
+忻 4423312
+忼 4424135
+忽 35334544
+忾 4423115
+忿 34534544
+怀 4421324
+态 13444544
+怂 34344544
+怃 4421135
+怄 4421345
+怅 4423154
+怆 4423455
+怇 4421515
+怈 44212215
+怉 44235515
+怊 44253251
+怋 44251515
+怌 44213241
+怍 44231211
+怎 312114544
+怏 44225134
+怐 44235251
+怑 44243112
+怒 531544544
+怓 44253154
+怔 44212121
+怕 44232511
+怖 44213252
+怗 44221251
+怘 122514544
+怙 44212251
+怚 44225111
+怛 44225111
+怜 44234454
+思 251214544
+怞 44225121
+怟 44235154
+怠 542514544
+怡 44254251
+怢 44231134
+怣 311344544
+怤 321244544
+急 355114544
+怦 44214312
+性 44231121
+怨 354554544
+怩 44251335
+怪 44254121
+怫 44251532
+怬 44225351
+怭 44245434
+怮 44255453
+怯 44212154
+怰 44241554
+怱 353344544
+怲 44212534
+怳 44225135
+怴 44215534
+怵 44212344
+怶 44253254
+怷 123544544
+怸 123444544
+怹 325254544
+怺 44245534
+总 432514544
+怼 541244544
+怽 44211234
+怾 44225134
+怿 44254112
+恀 442354354
+恁 3231214544
+恂 442352511
+恃 442121124
+恄 442121251
+恅 442121335
+恆 442125441
+恇 442111215
+恈 442543112
+恉 442352511
+恊 442535353
+恋 4122344544
+恌 442341534
+恍 442243135
+恎 442154121
+恏 5315214544
+恐 1213544544
+恑 442351355
+恒 442125111
+恓 442125351
+恔 442413434
+恕 5312514544
+恖 3253414544
+恗 442134115
+恘 442321234
+恙 4311214544
+恚 1211214544
+恛 442252511
+恜 442112154
+恝 1112534544
+恞 442151534
+恟 442353452
+恠 442132121
+恡 442341354
+恢 442134334
+恣 4135344544
+恤 442325221
+恥 1221114544
+恦 442325251
+恧 1325224544
+恨 442511534
+恩 2513414544
+恪 442354251
+恫 442251251
+恬 442312251
+恭 1221342444
+恮 442341121
+息 3251114544
+恰 442341251
+恱 442345435
+恲 442431132
+恳 5115344544
+恴 4125114544
+恵 1251124544
+恶 1224314544
+恷 3212344544
+恸 442115453
+恹 442131344
+恺 442252515
+恻 442253422
+恼 442413452
+恽 442451512
+恾 442122415
+恿 54251124544
+悀 4425425112
+悁 4422512511
+悂 4421535121
+悃 4422512341
+悄 4422432511
+悅 4423425135
+悆 34112344544
+悇 4423411234
+悈 4421132534
+悉 34312344544
+悊 12133124544
+悋 4424134251
+悌 4424351523
+悍 4422511112
+悎 4423121251
+悏 4421343434
+悐 35343344544
+悑 4421251124
+悒 4422515215
+悓 4422511135
+悔 4423155414
+悕 4423413252
+悖 4421245521
+悗 4423525135
+悘 13113454544
+悙 4424125152
+悚 4421251234
+悛 4425434354
+悜 4422511121
+悝 4422511211
+悞 4422515134
+悟 4421251251
+悠 32231344544
+悡 31234224544
+悢 4424511534
+患 25125124544
+悤 32535414544
+悥 41112514544
+悦 4424325135
+悧 4423123422
+您 32352344544
+悩 4424433452
+悪 12512214544
+悫 12145354544
+悬 25111544544
+悭 4422254121
+悮 4422511134
+悯 4424254134
+悰 44244511234
+悱 44221112111
+悲 211121114544
+悳 132511154544
+悴 44241343412
+悵 44212111534
+悶 251125114544
+悷 44245131344
+悸 44231234521
+悹 445251514544
+悺 44244525151
+悻 44212143112
+悼 44221251112
+悽 44215112531
+悾 44244534121
+悿 44211342444
+惀 44234125122
+惁 123433124544
+惂 44235321511
+惃 44225111535
+惄 211234544544
+情 44211212511
+惆 44235121251
+惇 44241251521
+惈 44225111234
+惉 441212514544
+惊 44241251234
+惋 44244535455
+惌 445354554544
+惍 44234112431
+惎 122111344544
+惏 44212341234
+惐 44212511534
+惑 125115344544
+惒 312342514544
+惓 44243113455
+惔 44243344334
+惕 44225113533
+惖 251135334544
+惗 44234454544
+惘 44225431415
+惙 44254545454
+惚 44235334544
+惛 44235152511
+惜 44212212511
+惝 44224325251
+惞 44233123534
+惟 44232411121
+惠 125112144544
+惡 121551214544
+惢 354435443544
+惣 312135334544
+惤 44251541554
+惥 321511344544
+惦 44241321251
+惧 44225111134
+惨 44254134333
+惩 332121214544
+惪 122511114544
+惫 354251214544
+惬 44211431345
+惭 44215213312
+惮 44243251112
+惯 44255212534
+惰 442131212511
+惱 442555325341
+惲 442451251112
+想 1234251114544
+惴 442252132522
+惵 442122151234
+惶 442325111121
+惷 1113425114544
+惸 44235251521
+惹 122132514544
+惺 442251131121
+惻 442251113422
+惼 442451325122
+惽 442515152511
+惾 442345234354
+惿 442251112134
+愀 442312344334
+愁 3123443344544
+愂 1245521534544
+愃 442445125111
+愄 442251211234
+愅 442122125112
+愆 3324411124544
+愇 442521251152
+愈 3412511224544
+愉 442341251122
+愊 442125125121
+愋 442344311354
+愌 442352534134
+愍 5151531344544
+愎 442312511354
+意 4143125114544
+愐 442132522111
+愑 442542511253
+愒 442251135345
+愓 442251113533
+愔 442414312511
+愕 442251251115
+愖 442122111345
+愗 5452331344544
+愘 442445354251
+愙 4453542514544
+愚 2511252144544
+愛 3443454544354
+愜 442113434345
+愝 442125115315
+愞 442132522134
+感 1312515344544
+愠 442251125221
+愡 442353344544
+愢 442251214544
+愣 442252214153
+愤 442121222534
+愥 44212225134
+愦 442251212534
+愧 442325113554
+愨 12145135544544
+愩 4421212511134
+愪 4422512511134
+愫 4421121554234
+愬 43152335114544
+愭 4421213352511
+愮 4423443311252
+愯 4423241112154
+愰 4422511243135
+愱 4424134131134
+愲 442255452511
+愳 25111251114544
+愴 4423445113251
+愵 4425154151541
+愶 4225353532511
+愷 4422521251431
+愸 12343434534544
+愹 4424453434251
+愺 442122251112
+愻 52135542344544
+愼 4423525111534
+愽 4421251124124
+愾 4423115431234
+愿 13325112344544
+慀 4423443554134
+慁 25135333414544
+慂 44154251124544
+慃 4423454541541
+慄 4421252211234
+慅 442544251214
+慆 4423443321511
+慇 33511535544544
+慈 4315545544544
+慉 4424155425121
+慊 4424315112234
+態 54251135354544
+慌 442122415325
+慍 4422534125221
+慎 4421225111134
+慏 4424525114134
+慐 12125111344544
+慑 4421221115454
+慒 44212512212511
+慓 44212522111234
+慔 4421222511134
+慕 12225111342444
+慖 44225125115341
+慗 125123431344544
+慘 44254545434333
+慙 125111233124544
+慚 44212511123312
+慛 44225232411121
+慜 315541431344544
+慝 11221325154544
+慞 44241431251112
+慟 44231251121153
+慠 4421121533134
+慡 44213434343434
+慢 44225112522154
+慣 44255212511134
+慤 121453535544544
+慥 4423121251454
+慦 124134431344544
+慧 111211125114544
+慨 442511541535
+慩 4421251112454
+慪 44212512512515
+慫 332343421344544
+慬 44212212511121
+慭 143123413444544
+慮 215315251214544
+慯 44231251113533
+慰 513112341244544
+慱 44212511214124
+慲 44212212523434
+慳 44212512554121
+慴 44254154132511
+慵 44241351125112
+慶 413522154544354
+慷 44241351124134
+慸 132215452524544
+慹 121431123544544
+慺 44225112512531
+慻 44243113425111
+慼 132112345344544
+慽 44213211234534
+慾 343425135344544
+慿 411211251324544
+憀 44254154134333
+憁 44232535414544
+憂 132511454544354
+憃 111343215114544
+憄 332122511114544
+憅 312511211534544
+憆 44224345251121
+憇 312251122114544
+憈 44221531522431
+憉 442121251431333
+憊 3212213251124544
+憋 432523431344544
+憌 3411243135414544
+憍 442313425125251
+憎 442432524312511
+憏 44235445411234
+憐 442431234354152
+憑 4112112544444544
+憒 442251212511134
+憓 442125112144544
+憔 442324111214444
+憕 442543341251431
+憖 1343423413444544
+憗 1343434231344544
+憘 442121251431251
+憙 1212514312514544
+憚 442251251251112
+憛 442125221251112
+憜 44252131212511
+憝 4125152131344544
+憞 442412515213134
+憟 442125221431234
+憠 1343152335344544
+憡 442314314125234
+憢 442121121121135
+憣 442343123425121
+憤 442121222511134
+憥 4334433445534544
+憦 442433443344553
+憧 442414312511211
+憨 512211131344544
+憩 3122513251114544
+憪 442251125113511
+憫 442251125114134
+憬 442251141251234
+憭 442134432511234
+憮 442311222214444
+憯 442153515352511
+憰 442545232534251
+憱 442412512341354
+憲 4451112252214544
+憳 442511121251124
+憴 4422511251211511
+憵 51325141431124544
+憶 4424143125114544
+憷 4421234123452134
+憸 4423412512513434
+憹 4422512211311534
+憺 4423513344111251
+憻 4424125251125111
+憼 1223525131344544
+憽 442122353344544
+憾 4421312515344544
+憿 4423251141533134
+懀 4423412524312511
+懁 4422522112513534
+懂 442122312511211
+懃 12212511121534544
+懄 4421221251112153
+懅 4422153151353334
+懆 4422512512511234
+懇 34435335115344544
+懈 4423535112533112
+應 41332324111214544
+懊 442325431234134
+懋 12345452312344544
+懌 4422522112143112
+懍 4424125251131234
+懎 4421234341252511
+懏 442324111212525
+懐 4424125221413534
+懑 44112212534344544
+懒 4421251234352534
+懓 4423443454544354
+懔 4424125251111234
+懕 132511251113444544
+懖 341124313122514544
+懗 44212132341213234
+懘 441132215452524544
+懙 4423211152511134
+懚 44234431215114544
+懛 44212125145154121
+懜 4421222522145354
+懝 44235311345452134
+懞 4421224511353334
+懟 224314311211244544
+懠 44241432533543211
+懡 44241312341234354
+懢 44212512531425221
+懣 441122125234344544
+懤 44212151211251124
+懥 44212452512152134
+懦 44214524444132522
+懧 44244545442522112
+懨 44213251125111344
+懩 44243111344511534
+懪 442251112213424134
+懫 442331233122511134
+懬 413122125121344544
+懭 44241312212512134
+懮 442132511454544354
+懯 1251124415331344544
+懰 442354533411243122
+懱 44212225221134534
+懲 3322521112131344544
+懳 442111211125114544
+懴 442121211121111534
+懵 442122252214525111
+懶 4421251234352511134
+懷 4424125221241343534
+懸 25111123435542344544
+懹 44241251251112213534
+懺 44234341211121111534
+懻 4422113525121122134
+懼 442251112511132411121
+懽 44212225125132411121
+懾 442122111122111122111
+懿 1214512514314135344544
+戀 41112515544445544444544
+戁 12212511134324111214544
+戂 4424131234123421112111
+戃 44224345251254312114444
+戄 44225111251113241112154
+戅 4143125111212125111344544
+戆 4143125111235412125344544
+戇 4143125111235412125111344544
+戈 1534
+戉 15534
+戊 13534
+戋 11534
+戌 131534
+戍 134534
+戎 113534
+戏 541534
+成 135534
+我 3121534
+戒 1132534
+戓 1251534
+戔 15341534
+戕 52131534
+或 12511534
+戗 34551534
+战 212511534
+戙 2512511534
+戚 13211234534
+戛 13251111534
+戜 12511121534
+戝 25111341534
+戞 132511451534
+戟 122511121534
+戠 414312511534
+戡 1221113451534
+戢 251122111534
+戣 5433411341534
+戤 5354252211534
+戥 2511311211534
+戦 4432511121534
+戧 34451132511534
+戨 12512125121534
+戩 15454125111534
+截 12132411121534
+戫 13251112511534
+戬 12243125111534
+戭 445125121341534
+戮 541541343331534
+戯 215315224311534
+戰 2512512511121534
+戱 2153152252111534
+戲 21531512514311534
+戳 541541324111211534
+戴 12125121122134534
+戵 2511125111324111211534
+戶 3513
+户 4513
+戸 1513
+戹 45135
+戺 4513515
+戻 4513134
+戼 5151251
+戽 45134412
+戾 45131344
+房 45134153
+所 33513312
+扁 451325122
+扂 451321251
+扃 451325251
+扄 4513325251
+扅 4513354354
+扆 4513413534
+扇 4513541541
+扈 45132515215
+扉 451321112111
+扊 451343344334
+手 3112
+扌 121
+才 123
+扎 1215
+扏 12135
+扐 12153
+扑 12124
+扒 12134
+打 12112
+扔 12153
+払 12154
+扖 12134
+扗 121121
+托 121315
+扙 121134
+扚 121354
+扛 121121
+扜 121112
+扝 121115
+扞 121112
+扟 121512
+扠 121544
+扡 121525
+扢 121315
+扣 121251
+扤 121135
+扥 121315
+扦 121312
+执 121354
+扨 121534
+扩 121413
+扪 121425
+扫 121511
+扬 121533
+扭 1215211
+扮 1213453
+扯 1212121
+扰 1211354
+扱 121354
+扲 1213445
+扳 1213354
+扴 1213432
+扵 1213444
+扶 1211134
+扷 1213134
+扸 1213215
+批 1211535
+扺 1213515
+扻 1213534
+扼 1211355
+扽 1211525
+找 1211534
+承 52111534
+技 1211254
+抁 1215435
+抂 1211121
+抃 1214124
+抄 1212343
+抅 1213554
+抆 1214134
+抇 1212511
+抈 1213511
+抉 1215134
+把 1215215
+抋 1214544
+抌 1214535
+抍 1213132
+抎 1211154
+抏 1211135
+抐 1212534
+抑 1213552
+抒 1215452
+抓 1213324
+抔 1211324
+投 1213554
+抖 1214412
+抗 1214135
+折 1213312
+抙 1213112
+抚 1211135
+抛 1213553
+抜 1211354
+抝 1215545
+択 1215134
+抟 1211154
+抠 1211345
+抡 1213435
+抢 1213455
+抣 1213541
+护 1214513
+报 1215254
+抦 12112534
+抧 12125134
+抨 12114312
+抩 12125211
+抪 12113252
+披 12153254
+抬 12154251
+抭 12144535
+抮 12134333
+抯 12125111
+抰 12125134
+抱 12135515
+抲 12112512
+抳 12151335
+抴 12112215
+抵 12135154
+抶 12131134
+抷 12113241
+抸 1213454
+抹 12111234
+抺 12111234
+抻 12125112
+押 12125112
+抽 12125121
+抾 12112154
+抿 12151515
+拀 12125135
+拁 12153251
+拂 12151532
+拃 12131211
+拄 12141121
+担 12125111
+拆 12133124
+拇 12155414
+拈 12121251
+拉 12141431
+拊 12132124
+拋 12113553
+拌 12143112
+拍 12132511
+拎 12134454
+拏 531543112
+拐 12125153
+拑 12112211
+拒 1211515
+拓 12113251
+拔 12113544
+拕 12144535
+拖 12131525
+拗 12155453
+拘 12135251
+拙 12152252
+拚 12154132
+招 12153251
+拜 311311112
+拝 12111112
+拞 12132121
+拟 1215434
+拠 12135435
+拡 12141354
+拢 12113534
+拣 12115534
+拤 12121124
+拥 12135112
+拦 12143111
+拧 12144512
+拨 12153544
+择 12154112
+拪 121125351
+拫 121511534
+括 121312251
+拭 121112154
+拮 121121251
+拯 121525341
+拰 121323121
+拱 121122134
+拲 1221343112
+拳 4311343112
+拴 121341121
+拵 121132521
+拶 121555354
+拷 121121315
+拸 121354354
+拹 121535353
+拺 121125234
+拻 121134334
+拼 121431132
+拽 121251153
+拾 121341251
+拿 3412513112
+挀 121333534
+持 121121124
+挂 121121121
+挃 121154121
+挄 121243135
+挅 121531234
+挆 121351234
+指 121352511
+挈 1112533112
+按 121445531
+挊 121211124
+挋 121125125
+挌 121354251
+挍 121413434
+挎 121134115
+挏 121251251
+挐 5312513112
+挑 121341534
+挒 121135422
+挓 121445315
+挔 121413534
+挕 121122111
+挖 121445345
+挗 121151534
+挘 121234353
+挙 4431343112
+挚 1213543112
+挛 4122343112
+挜 121122431
+挝 121124454
+挞 121134454
+挟 121143134
+挠 121153135
+挡 121243511
+挢 121313432
+挣 121355112
+挤 121413432
+挥 121451512
+挦 121511124
+挧 121541541
+挨 1215431134
+挩 1213425135
+挪 121511352
+挫 1213434121
+挬 1211245521
+挭 1211251134
+挮 1214351523
+振 1211311534
+挰 1212511121
+挱 1214412343
+挲 44123433112
+挳 1211555121
+挴 1213155414
+挵 1211121132
+挶 1215135251
+挷 121111352
+挸 1212511135
+挹 1212515215
+挺 121312154
+挻 121321554
+挼 1213443531
+挽 1213525135
+挾 1211343434
+挿 1213125112
+捀 1213541112
+捁 1213121251
+捂 1211251251
+捃 1215113251
+捄 1211241344
+捅 1215425112
+捆 1212512341
+捇 1211213234
+捈 1213411234
+捉 1212512134
+捊 1213443521
+捋 1213443124
+捌 1212515322
+捍 1212511112
+捎 1212432511
+捏 1212511121
+捐 1212512511
+捑 1212511154
+捒 1211251234
+捓 121152352
+捔 1213535112
+捕 1211251124
+捖 1214451135
+捗 1212121233
+捘 1215434354
+捙 1211251112
+捚 1212511211
+捛 121251251
+捜 1212511254
+捝 1214325135
+捞 1211224553
+损 1212512534
+捠 1213212134
+捡 1213414431
+换 1213525134
+捣 1213545252
+捤 1215133115
+捥 12144535455
+捦 12134112431
+捧 12111134112
+捨 12134112251
+捩 12145131344
+捪 12135152511
+捫 12125112511
+捬 12141332124
+捭 12132511312
+据 12151312251
+捯 12115412122
+捰 12125111234
+捱 12113121121
+捲 12143113455
+捳 12132121252
+捴 12134544544
+捵 12125122134
+捶 12131212211
+捷 12115112134
+捸 12151124134
+捹 12113412132
+捺 12113411234
+捻 12134454544
+捼 12131234531
+捽 12141343412
+捾 12144525151
+捿 12115112531
+掀 12133123534
+掁 12112111534
+掂 12141321251
+掃 12151145252
+掄 12134125122
+掅 12111212511
+掆 12125431252
+掇 12154545454
+授 12134434554
+掉 12121251112
+掊 12141431251
+掋 12141335154
+掌 243452513112
+掍 12125111535
+掎 12113412512
+掏 12135311252
+掐 12135321511
+掑 12112211134
+排 12121112111
+掓 12121123454
+掔 125125543112
+掕 12112134354
+掖 12141323544
+掗 12112155121
+掘 12151352252
+掙 12134435112
+掚 12112523434
+掛 12112112124
+掜 12132151135
+掝 12112511534
+掞 12143344334
+掟 12144512134
+掠 12141251234
+採 12134431234
+探 12145341234
+掣 311252223112
+掤 12135113511
+接 12141431531
+掦 12125113533
+控 12144534121
+推 12132411121
+掩 12113425115
+措 12112212511
+掫 12112211154
+掬 12135431234
+掭 12111342444
+掮 12145132511
+掯 12121212511
+掰 311334533112
+掱 311231123112
+掲 12125113535
+掳 12121531553
+掴 12125112141
+掵 12134125152
+掶 12141351134
+掷 12143113452
+掸 12143251112
+掹 12152125221
+掺 12154134333
+掻 12154251214
+掼 12155212534
+掽 12143122431
+掾 121551353334
+掿 12112213251
+揀 121125431234
+揁 121212511134
+揂 121431253511
+揃 121431251122
+揄 121341251122
+揅 1325111323112
+揆 121543341134
+揇 121122543112
+揈 121354111251
+揉 121545231234
+揊 121125125121
+揋 121251211534
+揌 121251214544
+揍 121111341134
+揎 121445125111
+描 12112225121
+提 121251112134
+揑 121321511121
+插 121312321511
+揓 121415331525
+揔 121353344544
+揕 121122111345
+揖 121251122111
+揗 121331225111
+揘 121325111121
+揙 121451325122
+揚 121251113533
+換 121352534134
+揜 121341251132
+揝 121354242511
+揞 121414312511
+揟 121521342511
+揠 121125115315
+握 121513154121
+揢 121445354251
+揣 121252132522
+揤 1215115452
+揥 121414345252
+揦 121125123422
+揧 1251234223112
+揨 121412514512
+揩 121153532511
+揪 121312344334
+揫 3123443343112
+揬 121445341344
+揭 121251135345
+揮 121451251112
+揯 121442125441
+揰 121312511211
+揱 2432511223112
+揲 121122151234
+揳 121111253134
+援 121344311354
+揵 12151111254
+揶 12112211152
+揷 121312321511
+揸 121123425111
+揹 121211352511
+揺 121344311252
+揻 121131531534
+揼 121132512534
+揽 121223142535
+揾 121251125221
+揿 121311153534
+搀 121352513544
+搁 121425354251
+搂 121431234531
+搃 121432514544
+搄 121442125111
+搅 121443452535
+搆 1211122125211
+搇 1213445413534
+搈 1214453434251
+搉 1214532411121
+搊 1213552335523
+搋 1213321531535
+搌 1215131221534
+損 1212512511134
+搎 1215213554234
+搏 1211251124124
+搐 1214155425121
+搑 121122122112
+搒 1214143454153
+搓 121431113121
+搔 121544251214
+搕 1211215425221
+搖 1213544311252
+搗 1213251115252
+搘 1211213352511
+搙 1211311534124
+搚 1215353532511
+搛 1214315112234
+搜 121321511254
+搝 1213251111344
+搞 1214125125251
+搟 1211251112112
+搠 1214315233511
+搡 1215454541234
+搢 1211224312511
+搣 1211314334534
+搤 1214313425221
+搥 121325151454
+搦 1215154151541
+搧 1214513541541
+搨 1212511541541
+搩 1213541521234
+搪 1214135112251
+搫 33541435543112
+搬 1213354143554
+搭 121122341251
+搮 1211252211234
+搯 1213443321511
+搰 121255452511
+搱 1215134143112
+搲 1214453433544
+搳 1214451112251
+搴 44511221343112
+搵 1212534125221
+搶 1213445113251
+搷 1211225111134
+搸 1211113431234
+搹 1211251254312
+携 1213241112153
+搻 34125131123112
+搼 1214311343112
+搽 121122341234
+搾 1214453431211
+搿 31123412513112
+摀 1213251154444
+摁 1212513414544
+摂 1211221114134
+摃 1211212511134
+摄 1211221115454
+摅 1212153154544
+摆 1212522112154
+摇 1213443311252
+摈 1214453212134
+摉 1214453434354
+摊 1215432411121
+摋 1213412343554
+摌 12141431331121
+摍 12144532131511
+摎 12154154134333
+摏 12111134321511
+摐 12133234342134
+摑 12125125115341
+摒 121513431132
+摓 1213541112454
+摔 12141554413412
+摕 12113221545252
+摖 12135445411234
+摗 12112512343534
+摘 12141432512251
+摙 1211251112454
+摚 12124345251121
+摛 1214134522554
+摜 12155212511134
+摝 12141352211535
+摞 12125121554234
+摟 12125112512531
+摠 12132535414544
+摡 121511541535
+摢 12121531534312
+摣 12121531525111
+摤 12113434343434
+摥 12131251113533
+摦 12113411533544
+摧 12125232411121
+摨 121513241343112
+摩 413123412343112
+摪 12152133544124
+摫 12111342511135
+摬 12141431251135
+摭 12141312214444
+摮 11215331343112
+摯 121431123543112
+摰 121341213543112
+摱 12125112522154
+摲 12112511123312
+摳 12112512512515
+摴 12114524444115
+摵 12113211234534
+摶 12112511214124
+摷 12155525111234
+摸 1211222511134
+摹 12225111343112
+摺 12154154132511
+摻 12154545434333
+摼 12112512554121
+摽 12112522111234
+摾 121515251251214
+摿 12134414312511
+撀 121521335543112
+撁 12141554453112
+撂 12125121354251
+撃 125111235543112
+撄 12125342534531
+撅 121134315233534
+撆 432523431343112
+撇 12143252343134
+撈 121433443344553
+撉 4125152131343112
+撊 121251125113511
+撋 121251125111121
+撌 121251212511134
+撍 121153515352511
+撎 121121451251431
+撏 121511121251124
+撐 121243452511523
+撑 121243452513112
+撒 121122125113134
+撓 121121121121135
+撔 121251141251234
+撕 121122111343312
+撖 12151221113134
+撗 12112212512134
+撘 121314314341251
+撙 121431253511124
+撚 121354413444444
+撛 121431234354152
+撜 121543341251431
+撝 121344335554444
+撞 121414312511211
+撟 121313425125251
+撠 121122511121534
+撡 121545454342444
+撢 121125221251112
+撣 121251251251112
+撤 121415425113134
+撥 121543345153554
+撦 12113412132511
+撧 121554444355215
+撨 121324111214444
+撩 121134432511234
+撪 121541341251112
+撫 121311222214444
+撬 121311531153115
+播 121343123425121
+撮 121251112211154
+撯 12143111325111
+撰 121515515122134
+撱 12152131212511
+撲 121224314311134
+撳 121341124313534
+撴 121412515213134
+撵 121113411341512
+撶 1211221122112
+撷 121121251132534
+撸 121352512112511
+撹 121443452511135
+撺 121445342512512
+撻 121121431112454
+撼 1211312515344544
+撽 1213251141533134
+撾 12125525251454
+撿 1213412512513434
+擀 1211225111234112
+擁 1214155332411121
+擂 1211452444425121
+擃 1212512211311534
+擄 1212153152512153
+擅 1214125251125111
+擆 12112212132511
+擇 1212522112143112
+擈 1212243143111234
+擉 1212522135251214
+擊 12511125235543112
+擋 1212434525125121
+擌 1213143141343434
+操 1212512512511234
+擎 1223525131343112
+擏 121122352513134
+擐 1212522112513534
+擑 121251122111534
+擒 121344134522554
+擓 1211441324111215
+擔 1213513344111251
+擕 121324111212525
+擖 121122251135345
+擗 1215132514143112
+擘 51325141431123112
+擙 1213253431234134
+據 1212153151353334
+擛 121122122151234
+擜 1211225431121344
+擝 1212511351125221
+擞 1214312345313134
+擟 12113425234343434
+擠 12141432533543211
+擡 12112125145154121
+擢 12154154132411121
+擣 12112151211251124
+擤 12132511125121132
+擥 125125314252213112
+擦 12144535445411234
+擧 32111525111343112
+擨 12133215315353534
+擩 12114524444132522
+擪 132511251113443112
+擫 12113251125111344
+擬 12135311345452134
+擭 1211223241112154
+擮 12112132411121534
+擯 12144512332511134
+擰 12144545442522112
+擱 12125112511354251
+擲 12143125351113452
+擳 1213143145115452
+擴 12141312212512134
+擵 121413123412343112
+擶 121314314431251122
+擷 121121251132511134
+擸 121555253415445445
+擹 121122125111343534
+擺 121252215425113535
+擻 121251125125313134
+擼 121352512144442511
+擽 121325115545541234
+擾 121132511454544354
+擿 12141432512251454
+攀 1234343412341343112
+攁 12143111344511534
+攂 121251212512125121
+攃 12112235445411234
+攄 121215315251214544
+攅 121113411342511134
+攆 121113411341251112
+攇 1214451112252214544
+攈 1214135221153531234
+攉 1211452444432411121
+攊 1211331234312342121
+攋 1211251234352511134
+攌 1212525221125135341
+攍 1214152513511531354
+攎 1212153152512125221
+攏 12141431251121515111
+攐 1214451122134413534
+攑 1213211152511134112
+攒 1213121353121352534
+攓 12144511221342512134
+攔 12125112511125431234
+攕 12134341211121111534
+攖 12125111342511134531
+攗 12141352211535431234
+攘 12141251251112213534
+攙 12135251153535251354
+攚 1214334433445251251
+攛 121445343215115445445
+攜 121252324111212534251
+攝 121122111122111122111
+攞 1212522155444432411121
+攟 1214135221153525312341
+攠 1214131234123421112111
+攡 121413452255432411121
+攢 1213121353121352511134
+攣 41112515544445544443112
+攤 1211221251113432411121
+攥 12131431425111134554234
+攦 1211254125441352211535
+攧 1211225111134132511134
+攨 12144534335443354433544
+攩 12124345251254312114444
+攪 12132113434511452511135
+攫 12125111251113241112154
+攬 121125125314252212511135
+攭 121551353334251214251214
+攮 1211251245251251112213534
+支 1254
+攰 125453
+攱 414311254
+攲 134125121254
+攳 1254511121251124
+攴 2154
+攵 3134
+收 523134
+攷 153134
+攸 3223134
+改 5153134
+攺 5153134
+攻 1213134
+攼 1123134
+攽 34533134
+放 41533134
+政 121213134
+敀 325113134
+敁 212512154
+敂 352513134
+敃 515153134
+敄 545233134
+故 122513134
+敆 3412512154
+敇 1252343134
+效 4134343134
+敉 4312343134
+敊 2112342154
+敋 3542513134
+敌 3122513134
+敍 34112342154
+敎 34135213134
+敏 31554143134
+敐 13115343134
+救 12413443134
+敒 32251123134
+敓 34251353134
+敔 12512513134
+敕 12512343134
+敖 1121533134
+敗 25111343134
+敘 34112343134
+教 12135213134
+敚 43251353134
+敛 34144313134
+敜 344545443134
+敝 43252343134
+敞 243252513134
+敟 251221343134
+敠 545454542154
+敡 251135332154
+敢 51221113134
+散 122125113134
+敤 251112342154
+敥 433443342154
+敦 412515213134
+敧 134125122154
+敨 414312513134
+敩 443455213134
+敪 545454543134
+敫 3251141533134
+敬 122352513134
+敭 2511135333134
+敮 3123215112154
+敯 5151525112154
+数 4312345313134
+敱 25212514312154
+敲 41251252512154
+敳 25212514313134
+整 1251234313412121
+敵 414325122513234
+敶 52125112343134
+敷 125112441533134
+數 251125125313134
+敹 214534312343134
+敺 125125125152154
+敻 35253425111354
+敼 1212514312512154
+敽 3134251252512154
+敾 4311124312513134
+敿 3134251252513134
+斀 25221352512142154
+斁 25221121431123134
+斂 34125125134343134
+斃 43252343134135435
+斄 1123431341313434234
+斅 32113434511455212154
+斆 32113434511455213134
+文 4134
+斈 4134521
+斉 41343211
+斊 4134122111
+斋 4134132522
+斌 413411212154
+斍 41342511135
+斎 41343211234
+斏 41344511534
+斐 211121114134
+斑 112141341121
+斒 4134451325122
+斓 4134425125431234
+斔 413425121432151134
+斕 413425112511125431234
+斖 413432112512515114525111
+斗 4412
+斘 3544412
+料 4312344412
+斚 5454454412
+斛 35351124412
+斜 34112344412
+斝 251251454412
+斞 321511344412
+斟 1221113454412
+斠 11221252114412
+斡 12251112344412
+斢 122125121344412
+斣 25221352512144412
+斤 3312
+斥 33124
+斦 33123312
+斧 34343312
+斨 52133312
+斩 15213312
+斪 352513312
+斫 132513312
+斬 12511123312
+断 43123453312
+斮 122125113312
+斯 122111343312
+新 4143112343312
+斱 121325113312
+斲 55155151213312
+斳 122125111213312
+斴 4312343541523312
+斵 35453121551213312
+斶 33122522135251214
+斷 554554155455453312
+斸 5132413425221352512143312
+方 4153
+斺 41533432
+斻 41533135
+於 41533444
+施 415331525
+斾 415331252
+斿 415331521
+旀 415354234
+旁 4143454153
+旂 4153313312
+旃 4153313541
+旄 4153313115
+旅 4153313534
+旆 4153311252
+旇 41533153254
+旈 41534154325
+旉 12511244153
+旊 4153311554
+旋 41533152134
+旌 41533131121
+旍 41533134454
+旎 41533151335
+族 41533131134
+旐 415331341534
+旑 415313412512
+旒 4153314154325
+旓 4153312432511
+旔 415351111254
+旕 4153344425135
+旖 41533113412512
+旗 41533112211134
+旘 4153414312511534
+旙 4153343123425121
+旚 41533112522111234
+旛 415331343123425121
+旜 4153314125251125111
+旝 4153313412524312511
+旞 415331431353334454
+旟 4153313211152511134
+无 1135
+旡 1535
+既 511541535
+旣 32511351535
+旤 255252511535
+日 2511
+旦 25111
+旧 22511
+旨 352511
+早 251112
+旪 251112
+旫 251153
+旬 352511
+旭 352511
+旮 352511
+旯 251135
+旰 2511112
+旱 2511112
+旲 2511134
+旳 2511354
+旴 2511112
+旵 2511252
+时 2511124
+旷 2511413
+旸 2511533
+旹 52212511
+旺 25111121
+旻 25114134
+旼 25114134
+旽 25111525
+旾 15252511
+旿 25113112
+昀 25113541
+昁 25111252
+昂 25113552
+昃 25111334
+昄 25113354
+昅 2511354
+昆 25111535
+昇 25113132
+昈 25114513
+昉 25114153
+昊 25111134
+昋 11342511
+昌 25112511
+昍 25112511
+明 25113511
+昏 35152511
+昐 25113453
+昑 25113445
+昒 25113533
+易 25113533
+昔 12212511
+昕 25113312
+昖 25113454
+昗 25114134
+昘 25114153
+昙 25111154
+昚 134432511
+昛 25111515
+昜 251113533
+昝 354242511
+昞 251112534
+星 251131121
+映 251125134
+昡 251141554
+昢 251152252
+昣 251134333
+昤 251134454
+春 111342511
+昦 251113432
+昧 251111234
+昨 251131211
+昩 251111234
+昪 251154132
+昫 251135251
+昬 515152511
+昭 251153251
+昮 251112153
+是 251112134
+昰 251112121
+昱 251141431
+昲 251151532
+昳 251131134
+昴 251135352
+昵 251151335
+昶 455342511
+昷 251125221
+昸 251135444
+昹 251145534
+昺 251112534
+昻 251112152
+昼 513425111
+昽 251113534
+显 251122431
+昿 251141354
+晀 2511341534
+晁 2511341534
+時 2511121124
+晃 2511243135
+晄 2511243135
+晅 2511125111
+晆 2511121121
+晇 2511134115
+晈 2511413434
+晉 1545412511
+晊 2511154121
+晋 1224312511
+晌 2511325251
+晍 2511251251
+晎 2511122134
+晏 2511445531
+晐 2511415334
+晑 2511325251
+晒 2511125351
+晓 2511153135
+晔 2511323512
+晕 2511451512
+晖 2511451512
+晗 25113445251
+晘 25112511112
+晙 25115434354
+晚 25113525135
+晛 25112511135
+晜 25114351523
+晝 51112125111
+晞 25113413252
+晟 2511135534
+晠 2511135534
+晡 25111251124
+晢 12133122511
+晣 25111213312
+晤 25111251251
+晥 25114451135
+晦 25113155414
+晧 25113121251
+晨 25111311534
+晩 251135252135
+晪 251125122134
+晫 251121251112
+晬 251141343412
+晭 251135121251
+普 431224312511
+景 251141251234
+晰 251112343312
+晱 251143344334
+晲 251132151135
+晳 123433122511
+晴 251111212511
+晵 451331342511
+晶 251125112511
+晷 251135424251
+晸 2511121213134
+晹 251125113533
+智 311342512511
+晻 251113425115
+晼 251144535455
+晽 251112341234
+晾 251141251234
+晿 251125112511
+暀 251133241121
+暁 251112122135
+暂 152133122511
+暃 251121112111
+暄 2511445125111
+暅 2511442125111
+暆 2511415331525
+暇 2511512115154
+暈 2511451251112
+暉 2511451251112
+暊 2511132511134
+暋 5151531342511
+暌 2511543341134
+暍 2511251135345
+暎 251112225134
+暏 251112132511
+暐 2511521251152
+暑 251112132511
+暒 2511251131121
+暓 5452331342511
+暔 2511122543112
+暕 2511125431234
+暖 2511344311354
+暗 2511414312511
+暘 2511251113533
+暙 2511111342511
+暚 25113443311252
+暛 2511431113121
+暜 41431414312511
+暝 25114525114134
+暞 25113251111234
+暟 25112521251431
+暠 25114125125251
+暡 25113454541541
+暢 25112251113533
+暣 25113115431234
+暤 25113251113412
+暥 25112511445531
+暦 13123412342511
+暧 25113443451354
+暨 51154153525111
+暩 251135445411234
+暪 251112212523434
+暫 125111233122511
+暬 121341213542511
+暭 251132511413412
+暮 12225111342511
+暯 25111222511134
+暰 251133234342134
+暱 25111122132515
+暲 251141431251112
+暳 251111121112511
+暴 251112213424134
+暵 251112212511134
+暶 251141533152134
+暷 251112511214124
+暸 2511134432511234
+暹 251132411121454
+暺 2511251251251112
+暻 2511251141251234
+暼 432523431342511
+暽 2511431234354152
+暾 2511412515213134
+暿 2511121251431251
+曀 2511121451251341
+曁 3251115153525111
+曂 251112212512134
+曃 251151124134454
+曄 251112211212112
+曅 25111221122112
+曆 1331234312342511
+曇 2511145244441154
+曈 2511414312511211
+曉 2511121121121135
+曊 2511515322511134
+曋 2511125221251112
+曌 2511351144534121
+曍 2511325111413412
+曎 25112522112143112
+曏 251155345115452
+曐 25112511251131121
+曑 25112511251134333
+曒 25113251141533134
+曓 25115225213412341
+曔 2511122352513134
+曕 25113513344111251
+曖 25113443454544354
+曗 25112243143111234
+曘 251114524444132522
+曙 25112522112132511
+曚 25111224511353334
+曛 251131254312114444
+曜 251154154132411121
+曝 2511251112213424134
+曞 251113122251125214
+曟 2511251125111311534
+曠 251141312212512134
+曡 2511251125114525111
+曢 2511445134432511234
+曣 25111221251211354444
+曤 25111452444432411121
+曥 25112153152512125221
+曦 25114311213123415534
+曧 25111251254312251214
+曨 251141431251121515111
+曩 251141251251112213534
+曪 25112522155444432411121
+曫 41112515544445544442511
+曬 25111254125441352211535
+曭 251124345251254312114444
+曮 25112512511351221113134
+曯 2511513241342522135251214
+曰 2511
+曱 25112
+曲 251221
+曳 251153
+更 1251134
+曵 2511534
+曶 35332511
+曷 251135345
+書 5111212511
+曹 12512212511
+曺 1251212511
+曻 2511354152
+曼 25112522154
+曽 43251212511
+曾 432524312511
+替 113411342511
+最 251112211154
+朁 153515352511
+朂 251112211153
+會 3412524312511
+朄 25112125431234
+朅 12154251135345
+朆 4325243125113533
+朇 341252431251132511312
+月 3511
+有 132511
+朊 35111135
+朋 35113511
+朌 35113453
+服 35115254
+朎 351134454
+朏 351152252
+朐 351135251
+朑 351112215
+朒 3511253434
+朓 3511341534
+朔 4315233511
+朕 3511431134
+朖 35114511534
+朗 4511543511
+朘 35115434354
+朙 25342513511
+朚 41525113511
+望 41535111121
+朜 351141251521
+朝 122511123511
+朞 122111342511
+期 122111343511
+朠 351112225134
+朡 3511345234354
+朢 12512535111121
+朣 3511414312511211
+朤 3511351135113511
+朥 3511433443344553
+朦 35111224511353334
+朧 351141431251121515111
+木 1234
+朩 1234
+未 11234
+末 11234
+本 12341
+札 12345
+朮 12354
+术 12344
+朰 12345
+朱 311234
+朲 123434
+朳 123434
+朴 123424
+朵 351234
+朶 531234
+朷 123453
+朸 123453
+朹 123435
+机 123435
+朻 123452
+朼 123435
+朽 123415
+朾 123412
+朿 125234
+杀 341234
+杁 123434
+杂 351234
+权 123454
+杄 1234312
+杅 1234112
+杆 1234112
+杇 1234115
+杈 1234544
+杉 1234333
+杊 1234322
+杋 1234354
+杌 1234135
+杍 1234521
+李 1234521
+杏 1234251
+材 1234123
+村 1234124
+杒 1234534
+杓 1234354
+杔 1234315
+杕 1234134
+杖 1234134
+杗 4151234
+杘 5131234
+杙 1234154
+杚 1234315
+杛 1234515
+杜 1234121
+杝 1234525
+杞 1234515
+束 1251234
+杠 1234121
+条 3541234
+杢 1234121
+杣 1234252
+杤 1234153
+来 1431234
+杦 1234354
+杧 1234415
+杨 1234533
+杩 1234551
+杪 12342343
+杫 12342121
+杬 12341135
+杭 12344135
+杮 12341252
+杯 12341324
+杰 12344444
+東 12511234
+杲 25111234
+杳 12342511
+杴 12343534
+杵 12343112
+杶 12341525
+杷 12345215
+杸 12343554
+杹 12343235
+杺 12344544
+杻 12345211
+杼 12345452
+杽 12343112
+松 12343454
+板 12343354
+枀 34541234
+极 1234354
+枂 12343511
+枃 12343541
+构 12343554
+枅 12341132
+枆 12343115
+枇 12341535
+枈 15351234
+枉 12341121
+枊 12343552
+枋 12344153
+枌 12343453
+枍 12343415
+枎 12341134
+枏 12342511
+析 12343312
+枑 12341551
+枒 12341523
+枓 12344412
+枔 12343445
+枕 12344535
+枖 12343134
+林 12341234
+枘 12342534
+枙 12341355
+枚 12343134
+枛 12343324
+果 25111234
+枝 12341254
+枞 12343434
+枟 12341154
+枠 12343512
+枡 12343132
+枢 12341345
+枣 12523444
+枤 12341344
+枥 12341353
+枦 12344513
+枧 12342535
+枨 12343154
+枩 12343454
+枪 12343455
+枫 12343534
+枬 12343541
+枭 35451234
+枮 123421251
+枯 123412251
+枰 123414312
+枱 123454251
+枲 542511234
+枳 123425134
+枴 123425153
+枵 123425115
+架 532511234
+枷 123453251
+枸 123435251
+枹 123435515
+枺 123411234
+枻 123412215
+枼 122151234
+枽 1212211234
+枾 123413122
+枿 123412132
+柀 123453254
+柁 123444535
+柂 123431525
+柃 123434454
+柄 123412534
+柅 123451335
+柆 123441431
+柇 123431234
+柈 123443112
+柉 12343454
+柊 123435444
+柋 321541234
+柌 123451251
+柍 123425134
+柎 123432124
+柏 123432511
+某 122111234
+柑 123412211
+柒 441151234
+染 441351234
+柔 545231234
+柕 123454523
+柖 123453251
+柗 123434251
+柘 123413251
+柙 123425112
+柚 123425121
+柛 123425112
+柜 12341515
+柝 123433124
+柞 123431211
+柟 123425211
+柠 123444512
+柡 1234112534
+柢 123435154
+柣 123431134
+柤 123425111
+查 123425111
+柦 123425111
+柧 123433544
+柨 123413252
+柩 123413545
+柪 123455453
+柫 123451532
+柬 125431234
+柭 123413544
+柮 123452252
+柯 123412512
+柰 123411234
+柱 123441121
+柲 123445434
+柳 123435352
+柴 2121351234
+柵 123425221
+柶 123425351
+柷 123425135
+柸 123413241
+柹 12343523
+柺 123425153
+査 123425111
+柼 123444534
+柽 123454121
+柾 123412121
+柿 123441252
+栀 123433155
+栁 123435452
+栂 123455414
+栃 123433153
+栄 443451234
+栅 123435351
+栆 125123444
+标 123411234
+栈 123411534
+栉 123412252
+栊 123413534
+栋 123415234
+栌 123421513
+栍 123431121
+栎 123435234
+栏 123443111
+栐 123445534
+树 123454124
+栒 1234352511
+栓 1234341121
+栔 1112531234
+栕 1234125125
+栖 1234125351
+栗 1252211234
+栘 1234354354
+栙 1234354152
+栚 1234431134
+栛 1234535353
+栜 1234125234
+栝 1234312251
+栞 1131121234
+栟 1234431132
+栠 3231211234
+校 1234413434
+栢 1234132511
+栣 1234323121
+栤 1234412534
+栥 4135341234
+栦 1234434242
+栧 1234251153
+栨 1234413534
+栩 1234541541
+株 1234311234
+栫 1234132521
+栬 1234355215
+栭 1234132522
+栮 1234122111
+栯 1234132511
+栰 1234321534
+栱 1234122134
+栲 1234121315
+栳 1234121335
+栴 1234313541
+栵 1234135422
+栶 1234251341
+样 1234431112
+核 1234415334
+根 1234511534
+栺 1234352511
+栻 1234112154
+格 1234354251
+栽 1211234534
+栾 4122341234
+栿 1234321344
+桀 3541521234
+桁 1234332112
+桂 1234121121
+桃 1234341534
+桄 1234243135
+桅 1234351355
+框 1234111215
+桇 5312511234
+案 4455311234
+桉 1234445531
+桊 4311341234
+桋 1234151534
+桌 2125111234
+桍 1234134115
+桎 1234154121
+桏 123412152
+桐 1234251251
+桑 5454541234
+桒 121221234
+桓 1234125111
+桔 1234121251
+桕 1234321511
+桖 1234325221
+桗 1234531234
+桘 1234325151
+桙 1234543112
+桚 1234555354
+桛 1234211124
+桜 1234443531
+桝 1234354152
+桞 123435452
+桟 1234111534
+桠 1234122431
+桡 1234153135
+桢 1234212534
+档 1234243511
+桤 1234252515
+桥 1234313432
+桦 1234323512
+桧 1234341154
+桨 4123541234
+桩 1234413121
+桪 1234511124
+桫 12344412343
+桬 44123431234
+桭 12341311534
+桮 12341324251
+桯 12342511121
+桰 12343515251
+桱 12341555121
+桲 12341245521
+桳 12345413412
+桴 12343443521
+桵 12343443531
+桶 12345425112
+桷 12343535112
+桸 12343413252
+桹 12344511534
+桺 12341153512
+桻 12343541112
+桼 12343424134
+桽 12343434121
+桾 12345113251
+桿 12342511112
+梀 12341251234
+梁 44153441234
+梂 12341241344
+梃 1234312154
+梄 12341253511
+梅 12343155414
+梆 1234111352
+梇 12341121132
+梈 12344125152
+梉 12345213121
+梊 12133121234
+梋 12342512511
+梌 12343411234
+梍 12343251115
+梎 12343251135
+梏 12343121251
+梐 12341535121
+梑 12343534334
+梒 12343445251
+梓 12344143112
+梔 12343315215
+梕 12345344544
+梖 12342511134
+梗 12341251134
+梘 12342511135
+梙 12342512512
+梚 12343525135
+梛 1234511352
+梜 12341343434
+條 3223541234
+梞 12345154544
+梟 32511151234
+梠 1234251251
+梡 12344451135
+梢 12342432511
+梣 12342523445
+梤 12342523453
+梥 44534541234
+梦 12341234354
+梧 12341251251
+梨 31234221234
+梩 12342511211
+梪 12341251431
+梫 12345114554
+梬 12342512115
+梭 12345434354
+梮 12345135251
+梯 12344351523
+械 12341132534
+梱 12342512341
+梲 12343425135
+梳 12344154325
+梴 1234321554
+梵 12341234354
+梶 12345133115
+梷 21251541234
+梸 12343123422
+梹 12343212134
+梺 12341234124
+梻 12343251532
+梼 12341113124
+梽 12341214544
+梾 12341431234
+梿 12341512454
+检 12343414431
+棁 12344325135
+棂 12345114334
+棃 312343531234
+棄 415412211234
+棅 123431511234
+棆 123434125122
+棇 123434544544
+棈 123411212511
+棉 123432511252
+棊 122111341234
+棋 123412211134
+棌 123434431234
+棍 123425111535
+棎 123445341234
+棏 123425111124
+棐 211121111234
+棑 123421112111
+棒 123411134112
+棓 123441431251
+棔 123435152511
+棕 123444511234
+棖 123412111534
+棗 125234125234
+棘 125234125234
+棙 123445131344
+棚 123435113511
+棛 123441542511
+棜 123441533444
+棝 123425122511
+棞 123425312341
+棟 123412511234
+棠 243452511234
+棡 123425431252
+棢 123425431415
+棣 123451124134
+棤 123412212511
+棥 123434341234
+棦 1234355112
+棧 123415341534
+棨 451331341234
+棩 1234321155212
+棪 123443344334
+棫 123412511534
+棬 123443113455
+棭 123441323544
+森 123412341234
+棯 123434454544
+棰 123431212211
+棱 123412134354
+棲 123415112531
+棳 123454545454
+棴 123435115254
+棵 123425111234
+棶 123413434234
+棷 123412211154
+棸 122111541234
+棹 123421251112
+棺 123444525151
+棻 12234531234
+棼 123412343453
+棽 123412343445
+棾 123412344535
+棿 123432151135
+椀 123444535455
+椁 123441251521
+椂 123451124134
+椃 123421531535
+椄 123441431531
+椅 123413412512
+椆 123435121251
+椇 123425111134
+椈 123435431234
+椉 413541521234
+椊 123441343412
+椋 123441251234
+椌 123444534121
+植 123412251111
+椎 123432411121
+椏 123412155121
+椐 123451312251
+椑 123432511312
+椒 123421123454
+椓 123413533434
+椔 123455525121
+椕 123434531234
+椖 123445134153
+椗 123444512134
+椘 12341234454
+椙 123425112511
+椚 123425112511
+椛 12341223235
+検 123434125134
+椝 113425351234
+椞 123433121234
+椟 123412544134
+椠 152133121234
+椡 123415412122
+椢 123425112141
+椣 123425122134
+椤 123425221354
+椥 123431134251
+椦 123443113453
+椧 123434125152
+椨 123441332124
+椩 123441351134
+椪 123443122431
+椫 123443251112
+椬 123444525111
+椭 123452132511
+椮 123454134333
+椯 1234252132522
+椰 123412211152
+椱 1234312511354
+椲 1234521251152
+椳 1234251211534
+椴 1234321113554
+椵 1234512115154
+椶 1234345234354
+椷 1234131251534
+椸 1234415331525
+椹 1234122111345
+椺 1234322511234
+椻 1234125115315
+椼 1234332441112
+椽 1234551353334
+椾 1234431251122
+椿 1234111342511
+楀 1234325125214
+楁 1234445354251
+楂 1234123425111
+楃 1234513154121
+楄 1234451325122
+楅 1234125125121
+楆 1234125221531
+楇 123425525251
+楈 1234521342511
+楉 123412213251
+楊 1234251113533
+楋 1234125123422
+楌 1234414313333
+楍 1234251251251
+楎 1234451251112
+楏 1234134121121
+楐 1234251213432
+楑 1234543341134
+楒 1234251214544
+楓 1234353251214
+楔 1234111253134
+楕 1234131212511
+楖 12345115452
+楗 123451111254
+楘 5452331341234
+楙 1234545231234
+楚 1234123452134
+楛 123412212251
+楜 1234122513511
+楝 1234125431234
+楞 1234252214153
+楟 1234412514512
+楠 1234122543112
+楡 1234341251155
+楢 1234431253511
+楣 1234521325111
+楤 1234353344544
+楥 1234344311354
+楦 1234445125111
+楧 123412225134
+楨 1234212511134
+楩 1234321251134
+楪 1234122151234
+楫 1234251122111
+楬 1234251135345
+業 2243143111234
+楮 123412132511
+楯 1234331225111
+楰 123432151134
+楱 1234111341134
+楲 1234131531534
+楳 1234122111234
+楴 1234414345252
+極 123452251541
+楶 4135342511234
+楷 1234153532511
+楸 1234312344334
+楹 1234535425221
+楺 1234545231234
+楻 1234325111121
+楼 1234431234531
+楽 3251141341234
+楾 1234325112534
+楿 1234312342511
+榀 1234251251251
+榁 1234445154121
+概 1234511541535
+榃 1234123425121
+榄 1234223142535
+榅 1234251125221
+榆 1234341251122
+榇 1234414311234
+榈 1234425251251
+榉 1234443134112
+榊 1234452425112
+榋 1234511511511
+榌 1234534353432
+榍 12345132432511
+榎 12341325111354
+榏 12344313425221
+榐 12345131221534
+榑 12341251124124
+榒 12345154151541
+榓 12344543425221
+榔 123445115452
+榕 12344453434251
+榖 12145112343554
+榗 12341224312511
+榘 3113415151234
+榙 1234122341251
+榚 12344311214444
+榛 12341113431234
+榜 12344143454153
+榝 12343412343554
+榞 12341332511234
+榟 12344454143112
+榠 12344525114134
+榡 12341121554234
+榢 12344451353334
+榣 12343443311252
+榤 12343541521234
+榥 12342511243135
+榦 12251112341234
+榧 12341211121115
+榨 12344453431211
+榩 12342153154134
+榪 12341211254444
+榫 12343241112112
+榬 12341212513534
+榭 12343251113124
+榮 43344334451234
+榯 12342511121124
+榰 12341213352511
+榱 12344125113534
+榲 12342534125221
+榳 1234413312154
+榴 12343545325121
+榵 1234122122111
+榶 12344135112251
+榷 12344532411121
+榸 12341212511211
+榹 12343321531535
+榺 35114311341234
+榻 12342511541541
+榼 12341215425221
+榽 12343443554134
+榾 1234255452511
+榿 12342521251431
+槀 41251252511234
+槁 12344125125251
+槂 12345213554234
+槃 33541435541234
+槄 12343443321511
+槅 12341251254312
+槆 1234122352511
+槇 12343525111534
+槈 12341311534124
+槉 12344134131134
+槊 43152335111234
+構 12341122125211
+槌 1234325151454
+槍 12343445113251
+槎 1234431113121
+槏 12344315112234
+槐 1234325113554
+槑 25112342511234
+槒 12344155425121
+槓 12341212511134
+槔 12343251113412
+槕 12342125111234
+槖 12145132511234
+槗 12341325125251
+様 12344311212534
+槙 12341225111134
+槚 12341252212534
+槛 12342231425221
+槜 12343241112153
+槝 12343251115252
+槞 12344143125115
+槟 12344453212134
+槠 12344512132511
+槡 12345454541234
+槢 123454154132511
+槣 123444513412512
+槤 12341251112454
+槥 123411121112511
+槦 123441351125112
+槧 125111233121234
+槨 12344125152152
+槩 5115415351234
+槪 123432511351535
+槫 123412511214124
+槬 123413411533544
+槭 123413211234534
+槮 123454545434333
+槯 123425232411121
+槰 12343541112454
+槱 123412535114444
+槲 123435351124412
+槳 521335441241234
+槴 123445132515215
+槵 123425125124544
+槶 123425125115341
+槷 121341213541234
+槸 123412134121354
+槹 123432511413412
+槺 123441351124134
+槻 123411342511135
+槼 113425111351234
+槽 123412512212511
+槾 123425112522154
+槿 123412212511121
+樀 123441432512251
+樁 123411134321511
+樂 325115545541234
+樃 12344511543511
+樄 12345212511234
+樅 123433234342134
+樆 12344134522554
+樇 12343223542511
+樈 123441431251135
+樉 123413434343434
+樊 123434341234134
+樋 12345425112454
+樌 123455212511134
+樍 123411212511134
+樎 123444532132511
+樏 123425121554234
+樐 123421253444441
+樑 123444153441234
+樒 123444545434252
+樓 123425112512531
+樔 123455525111234
+樕 123412512343534
+樖 341251123412512
+樗 123414524444115
+樘 123424345251121
+標 123412522111234
+樚 123441352211535
+樛 123454154134333
+樜 123441312214444
+樝 123421531525111
+樞 123412512512515
+樟 123441431251112
+樠 123412212523434
+模 12341222511134
+樢 123432511154444
+樣 123443112145534
+樤 12343223541234
+樥 12341223541112
+樦 123431431441121
+樧 123434123443554
+樨 1234513241343112
+権 123431132411121
+横 123412212512134
+樫 123412512554121
+樬 123432535414544
+樭 123412211134121
+樮 123412212514334
+樯 123412431252511
+樰 123414524444511
+樱 123425342534531
+樲 1234111251113454
+樳 1234511121251124
+樴 1234414312511534
+樵 1234324111214444
+樶 1234251112211154
+樷 1234123412211154
+樸 1234224314311134
+樹 1234121251431124
+樺 12341221122112
+樻 1234251212511134
+樼 1234513521521521
+樽 1234431253511124
+樾 1234121213415534
+樿 1234251251251112
+橀 1234415432525221
+橁 1234314314352511
+橂 1234431253511134
+橃 1234543345153554
+橄 123451221113134
+橅 1234311222214444
+橆 3112222112341234
+橇 1234311531153115
+橈 1234121121121135
+橉 1234431234354152
+橊 1234122155125121
+橋 1234313425125251
+橌 1234251125113511
+橍 1234251125111121
+橎 1234343123425121
+橏 1234431112431251
+橐 1251245132511234
+橑 1234134432511234
+橒 1234145244441154
+橓 1234344345354152
+橔 1234412515213134
+橕 1234243452511523
+橖 1234243452511234
+橗 123412225113511
+橘 1234545232534251
+橙 1234543341251431
+橚 12345112321155212
+橛 1234134315233534
+橜 1343152335341234
+橝 1234125221251112
+橞 1234125112144544
+機 1234554554134534
+橠 1234413543543534
+橡 123435251353334
+橢 123452131212511
+橣 1234445454425112
+橤 4544454445441234
+橥 353121325111234
+橦 1234414312511211
+橧 1234432524312511
+橨 1234121222511134
+橩 1234433443344535
+橪 1234354413444444
+橫 1234122112512134
+橬 1234153515352511
+橭 1234122514143112
+橮 1234354532511134
+橯 1234433443344553
+橰 1234325111413412
+橱 1234131251431124
+橲 1234121251431251
+橳 1234351143113453
+橴 1234212135554234
+橵 1234122125113134
+橶 1234122511121534
+橷 1234325112113535
+橸 1234251125112511
+橹 1234352512112511
+橺 1234251125112511
+橻 1234521152115211
+橼 1234551551353334
+橽 1234121431112454
+橾 12342512512511234
+橿 12341251211251211
+檀 12344125251125111
+檁 12344125251131234
+檂 12342512211311534
+檃 5234431215111234
+檄 12343251141533134
+檅 12342121131233534
+檆 12344334433421251
+檇 1234324111212525
+檈 12342522112513534
+檉 12341221112511121
+檊 12341225111234112
+檋 12341221341251112
+檌 12342522121112111
+檍 12344143125114544
+檎 1234344134522554
+檏 12342243143111234
+檐 12343513344111251
+檑 12341452444425121
+檒 12341234353251214
+檓 12343215111213554
+檔 12342434525125121
+檕 12511125235541234
+檖 1234431353334454
+檗 51325141431121234
+檘 12345132514143112
+檙 1234251115132125
+檚 12341234123452134
+檛 123425525251454
+檜 12343412524312511
+檝 1234251122111534
+檞 12343535112533112
+檟 12341252212511134
+檠 1223525131341234
+檡 12342522112143112
+檢 12343412512513434
+檣 12341234341252511
+檤 1234431325111454
+檥 12344311213121534
+檦 12341252211123422
+檧 1234122353344544
+檨 1234431121413534
+檩 12344125251111234
+檪 12343251141341234
+檫 123444535445411234
+檬 12341224511353334
+檭 123434112431511534
+檮 123412151211251124
+檯 123412125145154121
+檰 123455444432511252
+檱 123431431412211134
+檲 123425125112141241
+檳 123444512332511134
+檴 12341223241112154
+檵 123455455415545545
+檶 123413412512512515
+檷 123413425234343434
+檸 123444545442522112
+檹 123441533113412512
+檺 123441251451353334
+檻 123412512531425221
+檼 123434431215114544
+檽 123414524444132522
+檾 433443344512341234
+檿 132511251113441234
+櫀 123412211134554234
+櫁 123444545434251214
+櫂 123454154132411121
+櫃 123412512125111345
+櫄 123431254312114444
+櫅 123441432533543211
+櫆 12343251135544412
+櫇 123453254132511134
+櫈 123454334125143135
+櫉 123413121251431124
+櫊 123425112511354251
+櫋 1234325111445344153
+櫌 1234132511454544354
+櫍 1234331233122511134
+櫎 123441312212512134
+櫏 1234125221134515454
+櫐 2512125121251211234
+櫑 1234251212512125121
+櫒 123412235445411234
+櫓 1234352512144442511
+櫔 123413122251125214
+櫕 1234113411342511134
+櫖 1234215315251214544
+櫗 123412225221134534
+櫘 1234111211125114544
+櫙 123412212512512515
+櫚 123425112511251251
+櫛 12343143145115452
+櫜 1251245354242511234
+櫝 1234121252212511134
+櫞 1234554444551353334
+櫟 1234325115545541234
+櫠 1234413543345153554
+櫡 123431431412132511
+櫢 1234251125125313134
+櫣 12341221251112454
+櫤 1234314314431251122
+櫥 1234413121251431124
+櫦 1234413522154544354
+櫧 1234411125112132511
+櫨 12342153152512125221
+櫩 12342511251135321511
+櫪 12341331234312342121
+櫫 1353334121325111234
+櫬 12344143112342511135
+櫭 123451154153525111
+櫮 12341225125112512511
+櫯 12343525121444431234
+櫰 12344125221241343534
+櫱 52332515141431121234
+櫲 1234545235251353334
+櫳 123441431251121515111
+櫴 12341251234352511134
+櫵 1234122324111214444
+櫶 12344451112252214544
+櫷 123432511255115115341
+櫸 12343211152511134112
+櫹 12341225112321155212
+櫺 123414524444251251251
+櫻 123425111342511134531
+櫼 123434341211121111534
+櫽 52344312151145441234
+櫾 123434433112523554234
+櫿 12344334433445251251
+欀 123441251251112213534
+欁 123425122113115341234
+欂 12341224411251124124
+欃 123435251153535251354
+欄 123425112511125431234
+欅 123432111525111343112
+欆 1234324111213241112154
+欇 1234122111122111122111
+欈 1234252324111212534251
+欉 1234224314311212211154
+權 123412225125132411121
+欋 1234251112511132411121
+欌 123412213513125125534
+欍 123412232411121321511
+欎 1234343412344551154124
+欏 12342522155444432411121
+欐 12341254125441352211535
+欑 12343121353121352511134
+欒 41112515544445544441234
+欓 123424345251254312114444
+欔 123425111251113241112154
+欕 12342512511351221113134
+欖 1234125125314252212511135
+欗 123412225112511125431234
+欘 1234513241342522135251214
+欙 1234251212512125121554234
+欚 1234551353334251214251214
+欛 1234145244441221251123511
+欜 12341251245251251112213534
+欝 1234343412342522151154124
+欞 1234145244442512512511234341
+欟 1234122251251324111212511135
+欠 3534
+次 413534
+欢 543534
+欣 33123534
+欤 1513534
+欥 25113534
+欦 34453534
+欧 13453534
+欨 352513534
+欩 532513534
+欪 522523534
+欫 3112153534
+欬 4153343534
+欭 2513413534
+欮 4315233534
+欯 1212513534
+欰 3252213534
+欱 3412513534
+欲 34342513534
+欳 21251223534
+欴 4511543534
+欵 35311343534
+欶 12512343534
+欷 34132523534
+欸 54311343534
+欹 134125123534
+欺 122111343534
+欻 433443343534
+欼 545454543534
+欽 341124313534
+款 121112343534
+欿 353215113534
+歀 1234112343534
+歁 1221113453534
+歂 2521325223534
+歃 3123215113534
+歄 255252513534
+歅 1252211213534
+歆 4143125113534
+歇 2511353453534
+歈 3412511223534
+歉 43151122343534
+歊 41251252513534
+歋 33215315353534
+歌 12512125123534
+歍 32511544443534
+歎 122125111343534
+歏 122125111213534
+歐 125125125153534
+歑 215315343123534
+歒 414325122513534
+歓 311324111213534
+歔 215315224313534
+歕 1212225111343534
+歖 1212514312513534
+歗 51123211552123534
+歘 4334433443343534
+歙 3412515415413534
+歚 4311124312513534
+歛 34125125134343534
+歜 25221352512143534
+歝 25221121431123534
+歞 251155455444443534
+歟 32111525111343534
+歠 5454545412535113534
+歡 122251251324111213534
+止 2121
+正 12121
+此 212135
+步 2121233
+武 11212154
+歧 21211254
+歨 21212134
+歩 21212343
+歪 132412121
+歫 21211515
+歬 2121335414
+歭 2121121124
+歮 212121212121
+歯 212143123452
+歰 53453421212121
+歱 2121312511211
+歲 2121131233534
+歳 2121131234534
+歴 13123412342121
+歵 212111212511134
+歶 212135251125214
+歷 1331234312342121
+歸 325151212151145252
+歹 1354
+歺 21354
+死 135435
+歼 1354312
+歽 13543312
+歾 13543533
+歿 13545354
+殀 13543134
+殁 13543554
+殂 135425111
+殃 135425134
+殄 135434333
+殅 135431121
+殆 135454251
+殇 135431533
+殈 1354325221
+殉 1354352511
+殊 1354311234
+残 135411534
+殌 13541555121
+殍 13543443521
+殎 13541343434
+殏 13541241344
+殐 13541251234
+殑 13541225135
+殒 13542512534
+殓 13543414431
+殔 135451124134
+殕 135441431251
+殖 135412251111
+殗 135413425115
+殘 135415341534
+殙 135435152511
+殚 135443251112
+殛 135452251541
+殜 1354122151234
+殝 13541113431234
+殞 13542512511134
+殟 1354251125221
+殠 13543251111344
+殡 13544453212134
+殢 135413221545252
+殣 135412212511121
+殤 135431251113533
+殥 135444512512134
+殦 135432511154444
+殧 1354412512341354
+殨 1354251212511134
+殩 1354135454431234
+殪 1354121451251431
+殫 1354251251251112
+殬 13542522112143112
+殭 13541251211251211
+殮 13543412512513434
+殯 135444512332511134
+殰 1354121252212511134
+殱 1354121211121111534
+殲 135434341211121111534
+殳 3554
+殴 13453554
+段 321113554
+殶 411213554
+殷 3351153554
+殸 12152133554
+殹 13113453554
+殺 3412343554
+殻 12145353554
+殼 121451353554
+殽 341325113554
+殾 121325113554
+殿 5131221343554
+毀 3215111213554
+毁 3215111213554
+毂 1214515213554
+毃 41251252513554
+毄 12511122513554
+毅 414313533343554
+毆 125125125153554
+毇 3215114312343554
+毈 3543524321113554
+毉 131134535541234341
+毊 12152133554313425125251
+毋 5531
+毌 5521
+母 55414
+毎 315521
+每 3155414
+毐 1215531
+毑 55414525
+毒 112155414
+毓 31554144154325
+比 1535
+毕 153512
+毖 153545434
+毗 251211535
+毘 251211535
+毙 1535135435
+毚 35251153535251354
+毛 3115
+毜 3115234
+毝 3115333
+毞 15353115
+毟 23433115
+毠 532513115
+毡 311521251
+毢 3115125351
+毣 5415413115
+毤 3454353115
+毥 3115352511
+毦 1221113115
+毧 3115113534
+毨 3115312135
+毩 3115431234
+毪 3115543112
+毫 41251453115
+毬 31151241344
+毭 12514313115
+毮 12123433115
+毯 311543344334
+毰 311541431251
+毱 311535431234
+毲 545454543115
+毳 311531153115
+毴 311521112111
+毵 541343333115
+毶 311554134333
+毷 2511251113115
+毸 3115251214544
+毹 3412511223115
+毺 3115341251122
+毻 1312125113115
+毼 2511353453115
+毽 311551111254
+毾 25115415413115
+毿 545454343333115
+氀 251125125313115
+氁 31151222511134
+氂 112343134133115
+氃 4143125112113115
+氄 5452325342513115
+氅 2432525131343115
+氆 3115431224312511
+氇 3115352512112511
+氈 41252511251113115
+氉 25125125112343115
+氊 31154125251125111
+氋 12245113533343115
+氌 3115352512144442511
+氍 2511125111324111213115
+氎 25121251212512144525413115
+氏 3515
+氐 35154
+民 51515
+氒 351512
+氓 41551515
+气 3115
+氕 31153
+氖 311553
+気 311534
+氘 311532
+氙 3115252
+氚 3115322
+氛 31153453
+氜 31152511
+氝 31152534
+氞 311512534
+氟 311551532
+氠 311525112
+氡 311535444
+氢 311554121
+氣 3115431234
+氤 3115251341
+氥 3115125351
+氦 3115415334
+氧 3115431112
+氨 3115445531
+氩 3115122431
+氪 31151225135
+氫 31151555121
+氬 311512155121
+氭 311512511234
+氮 311543344334
+氯 311551124134
+氰 311511212511
+氱 3115251113533
+氲 3115251125221
+氳 31152534125221
+水 2534
+氵 441
+氶 52534
+氷 42534
+永 45534
+氹 52534
+氺 24134
+氻 44153
+氼 253434
+氽 342534
+氾 44155
+氿 44135
+汀 44112
+汁 44112
+求 1241344
+汃 44134
+汄 44134
+汅 44115
+汆 342534
+汇 44115
+汈 44151
+汉 44154
+汊 441544
+汋 441354
+汌 441322
+汍 441354
+汎 441354
+汏 441134
+汐 441354
+汑 441315
+汒 441415
+汓 441521
+汔 441315
+汕 441252
+汖 2522534
+汗 441112
+汘 441312
+汙 441112
+汚 441115
+汛 441512
+汜 441515
+汝 441531
+汞 1212534
+江 441121
+池 441525
+污 441115
+汢 441121
+汣 441354
+汤 441533
+汥 4411254
+汦 4413515
+汧 4411132
+汨 4412511
+汩 4412511
+汪 4411121
+汫 4411132
+汬 11322534
+汭 4412534
+汮 4413541
+汯 4411354
+汰 4411344
+汱 4411344
+汲 441354
+汳 4413354
+汴 4414124
+汵 4413445
+汶 4414134
+汷 441354
+汸 4414153
+汹 4413452
+決 4415134
+汻 4413112
+汼 4413112
+汽 4413115
+汾 4413453
+汿 4415452
+沀 25345452
+沁 4414544
+沂 4413312
+沃 4413134
+沄 4411154
+沅 4411135
+沆 4414135
+沇 4415435
+沈 4414535
+沉 4414535
+沊 45352534
+沋 4411354
+沌 4411525
+沍 4411551
+沎 4413235
+沏 4411553
+沐 4411234
+沑 4415211
+沒 4415354
+沓 25342511
+沔 4411255
+沕 4413533
+沖 4412512
+沗 113424134
+沘 4411535
+沙 4412343
+沚 4412121
+沛 4411252
+沜 4413215
+沝 25342534
+沞 4411252
+沟 4413554
+沠 4413324
+没 4413554
+沢 4415134
+沣 4411112
+沤 4411345
+沥 4411353
+沦 4413435
+沧 4413455
+沨 4413534
+沩 4414354
+沪 4414513
+沫 44111234
+沬 44111234
+沭 44112344
+沮 44125111
+沯 253413251
+沰 44113251
+沱 44144535
+沲 44131525
+河 44112512
+沴 44134333
+沵 44135234
+沶 44111234
+沷 44113544
+沸 44151532
+油 44125121
+沺 44125121
+治 44154251
+沼 44153251
+沽 44112251
+沾 44121251
+沿 44135251
+泀 44151251
+況 44125135
+泂 44125251
+泃 44135251
+泄 44112215
+泅 44125341
+泆 44131134
+泇 44153251
+泈 44135444
+泉 325112534
+泊 44132511
+泋 44112132
+泌 44145434
+泍 44112341
+泎 44131211
+泏 44152252
+泐 4415253
+泑 44155453
+泒 44133544
+泓 44151554
+泔 44112211
+法 44112154
+泖 44135352
+泗 44125351
+泘 44134312
+泙 44114312
+泚 441212135
+泛 4413454
+泜 44135154
+泝 44133124
+泞 44144512
+泟 44112121
+泠 44134454
+泡 44135515
+波 44153254
+泣 44141431
+泤 4415434
+泥 44151335
+泦 44151335
+泧 44115534
+注 44141121
+泩 44131121
+泪 44125111
+泫 44141554
+泬 44144534
+泭 44132124
+泮 44143112
+泯 44151515
+泰 1113424134
+泱 44125134
+泲 4413523
+泳 44145534
+泴 253425221
+泵 132512534
+泶 443452534
+泷 44113534
+泸 44121513
+泹 44125111
+泺 44135234
+泻 44145151
+泼 44153544
+泽 44154112
+泾 44154121
+泿 441511534
+洀 441335414
+洁 441121251
+洂 441413234
+洃 441134334
+洄 441252511
+洅 441125211
+洆 441525341
+洇 441251341
+洈 441351355
+洉 441331251
+洊 441132521
+洋 441431112
+洌 441135422
+洍 4411225125
+洎 441325111
+洏 441132522
+洐 441332112
+洑 441321344
+洒 441125351
+洓 441125234
+洔 441121124
+洕 441342511
+洖 4412511134
+洗 441312135
+洘 441121315
+洙 441311234
+洚 441354152
+洛 441354251
+洜 3542512534
+洝 441445531
+洞 441251251
+洟 441151534
+洠 441543112
+洡 441111234
+洢 441325113
+洣 441431234
+洤 441341121
+津 441511112
+洦 441132511
+洧 441132511
+洨 441413434
+洩 441251153
+洪 441122134
+洫 441325221
+洬 441351354
+洭 441111215
+洮 441341534
+洯 1112532534
+洰 4411515
+洱 441122111
+洲 441434242
+洳 441531251
+洴 441431132
+洵 441352511
+洶 441353452
+洷 441154121
+洸 441243135
+洹 441125111
+洺 441354251
+活 441312251
+洼 441121121
+洽 441341251
+派 441333534
+洿 441134115
+浀 441251221
+流 4414154325
+浂 441431134
+浃 441143134
+浄 441355112
+浅 44111534
+浆 4123542534
+浇 441153135
+浈 441212534
+浉 441231252
+浊 441251214
+测 441253422
+浌 441321534
+浍 441341154
+济 441413432
+浏 441413422
+浐 441414313
+浑 441451512
+浒 441453112
+浓 441453534
+浔 441511124
+浕 441513444
+浖 4413443124
+浗 4411241344
+浘 4415133115
+浙 4411213312
+浚 4415434354
+浛 4413445251
+浜 4413212134
+浝 4411353334
+浞 4412512134
+浟 4413223134
+浠 4413413252
+浡 4411245521
+浢 4411251431
+浣 4414451135
+浤 4414451354
+浥 4412515215
+浦 4411251124
+浧 4412511121
+浨 4414451234
+浩 4413121251
+浪 4414511534
+浫 4414534112
+浬 4412511211
+浭 4411251134
+浮 4413443521
+浯 4411251251
+浰 4413123422
+浱 4411311534
+浲 4413541112
+浳 4411542511
+浴 4413434251
+浵 4413541333
+浶 4414453112
+海 4413155414
+浸 4415114554
+浹 4411343434
+浺 4414422512
+浻 4412534251
+浼 4413525135
+浽 4413443531
+浾 4411213234
+浿 4412511134
+涀 4412511135
+涁 4411234333
+涂 4413411234
+涃 4412512341
+涄 4412512115
+涅 4412511121
+涆 4412511112
+涇 4411555121
+消 4412432511
+涉 4412121233
+涊 4415344544
+涋 4414451344
+涌 4415425112
+涍 4411213521
+涎 441321554
+涏 441312154
+涐 4413151534
+涑 4411251234
+涒 4415113251
+涓 4412512511
+涔 4412523445
+涕 4414351523
+涖 4413241431
+涗 4413425135
+涘 4415431134
+涙 4414513134
+涚 4414325135
+涛 4411113124
+涜 4411214535
+涝 4411224553
+涞 4411431234
+涟 4411512454
+涠 4412511521
+涡 4412512534
+涢 4412512534
+涣 4413525134
+涤 4413541234
+涥 4414125152
+润 4414251121
+涧 4414252511
+涨 4415153154
+涩 4415342121
+涪 44141431251
+涫 44144525151
+涬 44112143112
+涭 44134434554
+涮 44151325222
+涯 44113121121
+涰 44154545454
+涱 44112111534
+液 44141323544
+涳 44144534121
+涴 44144535455
+涵 44152413452
+涶 44131212211
+涷 44112511234
+涸 44125122511
+涹 44131234531
+涺 44151312251
+涻 44134112251
+涼 44141251234
+涽 44135152511
+涾 44125342511
+涿 44113533434
+淀 44144512134
+淁 44141431531
+淂 44125111124
+淃 44143113455
+淄 44155525121
+淅 44112343312
+淆 44134132511
+淇 44112211134
+淈 44151352252
+淉 44125111234
+淊 44135321511
+淋 44112341234
+淌 44124325251
+淍 44135121251
+淎 44111134112
+淏 44125111134
+淐 44125112511
+淑 44121123454
+淒 44115112531
+淓 4411224153
+淔 44112251111
+淕 44112134121
+淖 44121251112
+淗 44135431234
+淘 44135311252
+淙 44144511234
+淚 44145131344
+淛 44131125222
+淜 44135113511
+淝 44135115215
+淞 44112343454
+淟 44125122134
+淠 44125121132
+淡 44143344334
+淢 44112511534
+淣 44132151135
+淤 44141533444
+淥 44155124134
+淦 44134112431
+淧 44144545434
+淨 44134435112
+淩 44112134354
+淪 44134125122
+淫 44134433121
+淬 44141343412
+淭 44145131234
+淮 44132411121
+淯 44141542511
+淰 44134454544
+深 44145341234
+淲 44121531535
+淳 44141251521
+淴 44135334544
+淵 441312155212
+淶 44113434234
+混 44125111535
+淸 44111212521
+淹 44113425115
+淺 44115341534
+添 44111342444
+淼 253425342534
+淽 4411222121
+淾 341124312534
+淿 44132511252
+渀 44113412132
+渁 44125342534
+渂 44125114134
+渃 44112213251
+渄 44121112111
+清 44111212511
+渆 44143113222
+渇 44125113535
+済 44141343211
+渉 44121212343
+渊 44134312342
+渋 44121214134
+渌 44151124134
+渍 44111212534
+渎 44112544134
+渏 44113412512
+渐 44115213312
+渑 44125125115
+渒 44132511312
+渓 44134431134
+渔 44135251211
+渕 44143113422
+渖 44144525112
+渗 44154134333
+渘 441545231234
+渙 441352534134
+渚 44112132511
+減 441131251534
+渜 441132522134
+渝 441341251122
+渞 441431325111
+渟 441412514512
+渠 44115151234
+渡 441413122154
+渢 441353251214
+渣 441123425111
+渤 441124552153
+渥 441513154121
+渦 44125525251
+渧 441414345252
+渨 441251211534
+温 441251125221
+渪 441325125214
+渫 441122151234
+測 441251113422
+渭 441251212511
+渮 44112212512
+港 441122134515
+渰 441341251132
+渱 441251214121
+渲 441445125111
+渳 441515122111
+渴 441251135345
+渵 44112225121
+渶 44112225134
+渷 441413425135
+游 441415331521
+渹 441354111251
+渺 441251112343
+渻 441234325111
+渼 441431121134
+渽 441121251534
+渾 441451251112
+渿 441123411234
+湀 441543341134
+湁 441121341251
+湂 441251251115
+湃 441311311112
+湄 441521325111
+湅 441125431234
+湆 441414312511
+湇 441414312511
+湈 441122111234
+湉 441442312251
+湊 441111341134
+湋 441521251152
+湌 441344511534
+湍 441252132522
+湎 441132522111
+湏 441132511134
+湐 441123432511
+湑 441521342511
+湒 441251122111
+湓 441345325221
+湔 441431251122
+湕 44151111254
+湖 441122513511
+湗 441121121124
+湘 441123425111
+湙 441413234134
+湚 441355425115
+湛 441122111345
+湜 441251112134
+湝 441153532511
+湞 441212511134
+湟 441325111121
+湠 441252134334
+湡 441251125214
+湢 441125125121
+湣 441515152511
+湤 441415331525
+湥 441445341344
+湦 441251131121
+湧 441542511253
+湨 441251111344
+湩 441312511211
+湪 441551353334
+湫 441312344334
+湬 3123443342534
+湭 441431253511
+湮 441125221121
+湯 441251113533
+湰 441354131121
+湱 441111213251
+湲 441344311354
+湳 441122543112
+湴 44143122431
+湵 441431121354
+湶 441325112534
+湷 441111342511
+湸 441412514535
+湹 441132511211
+湺 441322511234
+湻 441412512511
+湼 441321511121
+湽 441555125121
+湾 441412234515
+湿 441251122431
+満 441122125252
+溁 441122451234
+溂 441125123422
+溃 441251212534
+溄 441252354112
+溅 441253411534
+溆 441341123454
+溇 441431234531
+溈 441435554444
+溉 441511541535
+溊 441512115154
+溋 441535425221
+溌 441543341135
+溍 4411224312511
+溎 4411234121121
+溏 4414135112251
+源 4411332511234
+溑 4412432511134
+溒 4411212513534
+溓 4414315112234
+溔 4414311214444
+溕 4414511353334
+準 4413241112112
+溗 4413122113534
+溘 4411215425221
+溙 4411113424134
+溚 441122341251
+溛 4414453433544
+溜 4413545325121
+溝 4411122125211
+溞 441544251214
+溟 4414525114134
+溠 441431113121
+溡 4412511121124
+溢 4414313425221
+溣 4413234125122
+溤 4411211254444
+溥 4411251124124
+溦 4412521353134
+溧 4411252211234
+溨 4411211234534
+溩 4413251154444
+溪 4413443554134
+溫 4412534125221
+溬 441431113554
+溭 4412512134354
+溮 4413251511252
+溯 4414315233511
+溰 4412521251431
+溱 4411113431234
+溲 441321511254
+溳 4412512511134
+溴 4413251111344
+溵 4413351153554
+溶 4414453434251
+溷 4412513533341
+溸 4411121554234
+溹 4411245554234
+溺 4415154151541
+溻 4412511541541
+溼 4411554554121
+溽 4411311534124
+溾 441325113554
+溿 4412512143112
+滀 4414155425121
+滁 441523411234
+滂 4414143454153
+滃 4413454541541
+滄 4413445113251
+滅 4411314334534
+滆 4411251254312
+滇 4411225111134
+滈 4414125125251
+滉 4412511243135
+滊 4413115431234
+滋 441431554554
+滌 4413223541234
+滍 4415221251214
+滎 43344334452534
+滏 4413434112431
+滐 4413541521234
+滑 441255452511
+滒 4411251212512
+滓 4414454143112
+滔 4413443321511
+滕 351143113424134
+滖 4414125113534
+滗 4413143143115
+滘 4414534121251
+滙 4411324111215
+滚 4414134543534
+滛 4413443311252
+滜 4413251113412
+滝 4414143125115
+滞 441122245252
+滟 4411112355215
+滠 4411221115454
+满 4411221253434
+滢 4411224511214
+滣 4411311534251
+滤 4412153154544
+滥 4412231425221
+滦 4414122341234
+滧 4414134343134
+滨 4414453212134
+滩 4415432411121
+滪 4415452132534
+滫 4413223542511
+滬 44145132515215
+滭 4412511122112
+滮 44121531535333
+滯 44113221545252
+滰 44141431251135
+滱 44144511352154
+滲 44154545434333
+滳 44141432534251
+滴 44141432512251
+滵 44144545434252
+滶 4411121533134
+滷 44121253444441
+滸 44141112513112
+滹 44121531534312
+滺 44132231344544
+滻 44141431331121
+滼 44112341234354
+滽 44141351125112
+滾 44141342513534
+滿 44112212523434
+漀 121521335542534
+漁 44135251214444
+漂 44112522111234
+漃 44144521123454
+漄 44125213121121
+漅 44155525111234
+漆 44112343424134
+漇 44133221212134
+漈 44135445411234
+漉 44141352211535
+漊 44125112512531
+漋 44152354131121
+漌 44112212511121
+漍 44125125115341
+漎 44133234342134
+漏 44151312524444
+漐 121431123542534
+漑 44132511351535
+漒 441515251251214
+漓 4414134522554
+演 44144512512134
+漕 44112512212511
+漖 44112135213134
+漗 44132535414544
+漘 44113115342511
+漙 44112511214124
+漚 44112512512515
+漛 44143113424134
+漜 44112341234121
+漝 44154154132511
+漞 44134432511135
+漟 44124345251121
+漠 4411222511134
+漡 44131251113533
+漢 44112212511134
+漣 4411251112454
+漤 44112341234531
+漥 44144534121121
+漦 112343134132534
+漧 44112251112315
+漨 4413541112454
+漩 44141533152134
+漪 44135313412512
+漫 44125112522154
+漬 44111212511134
+漭 4411221344132
+漮 44141351124134
+漯 44125121554234
+漰 44125235113511
+漱 44112512343534
+漲 44151512111534
+漳 44141431251112
+漴 44125244511234
+漵 44134112343134
+漶 44125125124544
+漷 4414125152152
+漸 44112511123312
+漹 44112121154444
+漺 44113434343434
+漻 44154154134333
+漼 44125232411121
+漽 441513241343112
+漾 44143112145534
+漿 521335441242534
+潀 44125221323434
+潁 352534132511134
+潂 44125243122431
+潃 4413323542511
+潄 44112512343134
+潅 44131132411121
+潆 44112245554234
+潇 44112251123234
+潈 44125221353334
+潉 44125225111535
+潊 44134112342154
+潋 44134144313134
+潌 44144534154121
+潍 44155132411121
+潎 44143252343134
+潏 441545232534251
+潐 441324111214444
+潑 441543345153554
+潒 44135251353334
+潓 441125112144544
+潔 441111253554234
+潕 441311222214444
+潖 441112111215215
+潗 441324111211234
+潘 441343123425121
+潙 441344335554444
+潚 4415112321155212
+潛 441153515352511
+潜 441113411342511
+潝 441341251541541
+潞 4412512121354251
+潟 441321511354444
+潠 441515515122134
+潡 441412515213134
+潢 44112212512134
+潣 441251125114134
+潤 441251125111121
+潥 441125221431234
+潦 441134432511234
+潧 441432524312511
+潨 441325221323334
+潩 44125121122134
+潪 441311342512511
+潫 441431134554234
+潬 441251251251112
+潭 441125221251112
+潮 441122511123511
+潯 441511121251124
+潰 441251212511134
+潱 441121451251431
+潲 441312342432511
+潳 44151312132511
+潴 44135312132511
+潵 441122125113134
+潶 441254312114444
+潷 441314314511112
+潸 441123412342511
+潹 441123412341234
+潺 441513521521521
+潻 441312343424134
+潼 441414312511211
+潽 441431224312511
+潾 441431234354152
+潿 441255212511521
+澀 44153453421212121
+澁 441212121212121
+澂 441252111213134
+澃 3331325111342534
+澄 441543341251431
+澅 441511121251211
+澆 441121121121135
+澇 441433443344553
+澈 441415425113134
+澉 44151221113134
+澊 441431253511124
+澋 441251141251234
+澌 441122111343312
+澍 441121251431124
+澎 441121251431333
+澏 441251251251252
+澐 441145244441154
+澑 441122155125121
+澒 441121132511134
+澓 441332312511354
+澔 441325113121251
+澕 4411221122112
+澖 441251125111234
+澗 441251125112511
+澘 441123412342511
+澙 441321511154444
+澚 44132543123415
+澛 441352512112511
+澜 441425125431234
+澝 441445454425112
+澞 4412153152511134
+澟 4414125251131234
+澠 4412511251211511
+澡 4412512512511234
+澢 4412434525125121
+澣 4411225111234112
+澤 4412522112143112
+澥 4413535112533112
+澦 4415452132511134
+澧 4412512211251431
+澨 4413143141234341
+澩 32113434511452534
+澪 4411452444434454
+澫 441122251125214
+澬 4414135342511134
+澭 4414155332411121
+澮 4413412524312511
+澯 4412135454431234
+澰 4413412512513434
+澱 4415131221343554
+澲 4412243143111234
+澳 441325431234134
+澴 4412522112513534
+澵 4414143112343312
+澶 4414125251125111
+澷 4412511252214153
+澸 4411312515344544
+澹 4413513344111251
+澺 4414143125114544
+澻 441431353334454
+澼 4415132514143112
+澽 4412153151353334
+澾 441121431112454
+澿 4411234123411234
+激 4413251141533134
+濁 4412522135251214
+濂 4414134315112234
+濃 4412512211311534
+濄 44125525251454
+濅 4414455114525254
+濆 441121222511134
+濇 4411234341252511
+濈 441251122111534
+濉 4412511132411121
+濊 4412121131233534
+濋 4411234123452134
+濌 31251121125342511
+濍 441122353344544
+濎 441251115132125
+濏 4411121112145434
+濐 441251112132511
+濑 4411251234352534
+濒 4412121233132534
+濓 4414143135112234
+濔 44113425234343434
+濕 44125115545544444
+濖 4412522112132511
+濗 4411222511134252
+濘 44144545442522112
+濙 44143344334454334
+濚 44143344334451234
+濛 4411224511353334
+濜 44151121444425221
+濝 44112211134554234
+濞 44132511125121132
+濟 44141432533543211
+濠 44141251451353334
+濡 44114524444132522
+濢 44154154141343412
+濣 44112251112344412
+濤 44112151211251124
+濥 44135444512512134
+濦 44134431215114544
+濧 44122431431121124
+濨 4414315545544544
+濩 4411223241112154
+濪 44111212511355215
+濫 44112512531425221
+濬 44121451343425111
+濭 4411221215425221
+濮 44132224314311134
+濯 44154154132411121
+濰 44155444432411121
+濱 44144512332511134
+濲 44112145312343554
+濳 4413121353121352511
+濴 44143344334452534
+濵 44144552132511134
+濶 44125112511312251
+濷 253444112212523434
+濸 4411223445113251
+濹 44125112114444121
+濺 441251113415341534
+濻 44152251212511134
+濼 441325115545541234
+濽 441113411342511134
+濾 441215315251214544
+濿 44113122251125214
+瀀 441132511454544354
+瀁 44143111344511534
+瀂 441352512144442511
+瀃 441251113425113533
+瀄 4413143145115452
+瀅 441433443344511214
+瀆 441121252212511134
+瀇 44141312212512134
+瀈 441541541451251112
+瀉 441445321511354444
+瀊 441335414355425221
+瀋 441445343123425121
+瀌 441413522115354444
+瀍 441413251121134121
+瀎 44112225221134534
+瀏 441354533411243122
+瀐 441121211121111534
+瀑 441251112213424134
+瀒 441134342341252511
+瀓 441332252111213134
+瀔 441121451312343554
+瀕 4412121233132511134
+瀖 4411452444432411121
+瀗 4414451112252214544
+瀘 4412153152512125221
+瀙 4414143112342511135
+瀚 4411225111234541541
+瀛 4414152513511531354
+瀜 4411251254312251214
+瀝 4411331234312342121
+瀞 44111212511355112
+瀟 4411225112321155212
+瀠 4414334433445554234
+瀡 44152131212511454
+瀢 441251212511134454
+瀣 4412135454211121111
+瀤 4414125221241343534
+瀥 4415415414125125251
+瀦 441135333412132511
+瀧 44141431251121515111
+瀨 4411251234352511134
+瀩 4413123435132511134
+瀪 31554143134325112534
+瀫 4411214515542343554
+瀬 4411251234132511134
+瀭 4411251112341251122
+瀮 4411452444412341234
+瀯 4414334433445251251
+瀰 44151513425234343434
+瀱 44125221134334433422
+瀲 44134125125134343134
+瀳 4411224135221154444
+瀴 44125111342511134531
+瀵 44143123425121122134
+瀶 44112512531251251251
+瀷 44154154125121122134
+瀸 44134341211121111534
+瀹 44134125125125125122
+瀺 44135251153535251354
+瀻 44112125121122134534
+瀼 44141251251112213534
+瀽 44144511221342512134
+瀾 44125112511125431234
+瀿 44131554143134554234
+灀 44114524444123425111
+灁 44125112511325112534
+灂 44134432522151154124
+灃 441111221112521251431
+灄 441122111122111122111
+灅 441251212512125121121
+灆 44112212512531425221
+灇 441224314311212211154
+灈 441251112511132411121
+灉 441555251521532411121
+灊 441153515351251254312
+灋 441413522115444412154
+灌 44112225125132411121
+灍 441251125114315233534
+灎 44125122112514311215425221
+灏 441251141251234132534
+灐 441433443344534112431
+灑 4411254125441352211535
+灒 4413121353121352511134
+灓 41112515544445544442534
+灔 4412512211251431355215
+灕 441413452255432411121
+灖 4414131234123421112111
+灗 4412512144125251125111
+灘 4411221251113432411121
+灙 44124345251254312114444
+灚 44132113434511452511135
+灛 44125112511251251251112
+灜 44141525135112511134354
+灝 441251141251234132511134
+灞 441145244441221251123511
+灟 441513241342522135251214
+灠 441125125314252212511135
+灡 44112225112511125431234
+灢 4411251245251251112213534
+灣 4414111251554444554444515
+灤 44141112515544445544441234
+灥 325112534325112534325112534
+灦 44125115545544444132511134
+灧 441111221112521251431355215
+灨 441414312511123541212511134
+灩 4411112211125212514311215425221
+灪 44112343112521234453444445235333
+火 4334
+灬 4444
+灭 14334
+灮 433435
+灯 433412
+灰 134334
+灱 433453
+灲 433422
+灳 354334
+灴 4334121
+灵 5114334
+灶 4334121
+灷 4334132
+灸 3544334
+灹 4334315
+灺 4334525
+灻 1214334
+灼 4334354
+災 5554334
+灾 4454334
+灿 4334252
+炀 4334533
+炁 15354444
+炂 43343454
+炃 34534334
+炄 43345211
+炅 25114334
+炆 43344134
+炇 43343134
+炈 43343554
+炉 43344513
+炊 43343534
+炋 43341324
+炌 43343432
+炍 43343354
+炎 43344334
+炏 43344334
+炐 43341112
+炑 43341234
+炒 43342343
+炓 43344412
+炔 43345134
+炕 43344135
+炖 43341525
+炗 12214334
+炘 43343312
+炙 35444334
+炚 25114334
+炛 43343235
+炜 43341152
+炝 43343455
+炞 43344124
+炟 433425111
+炠 433425112
+炡 433412121
+炢 433412344
+炣 433412512
+炤 433453251
+炥 433451532
+炦 433413544
+炧 433431525
+炨 433444535
+炩 433434454
+炪 433452252
+炫 433441554
+炬 43341515
+炭 252134334
+炮 433435515
+炯 433425251
+炰 355154444
+炱 542514334
+炲 433454251
+炳 433412534
+炴 433425134
+炵 433435444
+炶 433421251
+炷 433441121
+炸 433431211
+点 212514444
+為 435554444
+炻 433413251
+炼 433415534
+炽 433425134
+炾 433425135
+炿 433433541
+烀 433434312
+烁 433435234
+烂 433443111
+烃 433454121
+烄 4334413434
+烅 4334325221
+烆 4334332112
+烇 4334341121
+烈 1354224444
+烉 3525344334
+烊 4334431112
+烋 3212344444
+烌 4334321234
+烍 4334312135
+烎 11324334
+烏 3251154444
+烐 4334335414
+烑 4334341534
+烒 4334112154
+烓 4334121121
+烔 4334251251
+烕 1314334534
+烖 1214334534
+烗 4334415334
+烘 4334122134
+烙 4334354251
+烚 4334341251
+烛 4334251214
+烜 4334125111
+烝 5253414444
+烞 4334123424
+烟 4334251341
+烠 4334132511
+烡 4334122134
+烢 4334445315
+烣 4334134334
+烤 4334121315
+烥 4334125125
+烦 4334132534
+烧 4334153135
+烨 4334323512
+烩 4334341154
+烪 4334431134
+烫 4415334334
+烬 4334513444
+热 1213544444
+烮 1354224334
+烯 43343413252
+烰 43343443521
+烱 43342534251
+烲 12133124334
+烳 43341251124
+烴 43341555121
+烵 4334122354
+烶 4334312154
+烷 43344451135
+烸 43343155414
+烹 41251524444
+烺 43344511534
+烻 4334321554
+烼 43341353334
+烽 43343541112
+烾 43344334121
+烿 43343541333
+焀 43343434251
+焁 25135344334
+焂 32231344334
+焃 43341213234
+焄 51132514444
+焅 43343121251
+焆 43342512511
+焇 43342432511
+焈 45135154334
+焉 12121154444
+焊 43342511112
+焋 52131214334
+焌 43345434354
+焍 43344351523
+焎 12133124444
+焏 52251544444
+焐 43341251251
+焑 43342512341
+焒 4334251251
+焓 43343445251
+焔 43343522511
+焕 43343525134
+焖 43344254544
+焗 43345135251
+焘 11131244444
+焙 433441431251
+焚 123412344334
+焛 251125114334
+焜 433425111535
+焝 433435152511
+焞 433441251521
+焟 433412212511
+焠 433441343412
+無 311222214444
+焢 433444534121
+焣 122111544444
+焤 413321244334
+焥 433444535455
+焦 324111214444
+焧 433434544544
+焨 433425112511
+焩 433435113511
+焪 433444534515
+焫 43341222534
+焬 433425113533
+焭 433443344535
+焮 433433123534
+焯 433421251112
+焰 433435321511
+焱 433443344334
+焲 433441323544
+焳 433432411121
+焴 433441542511
+焵 433425431252
+然 354413444444
+焷 433432511312
+焸 251125114334
+焹 433425431415
+焺 433425113132
+焻 433425112511
+焼 433412122135
+焽 251135114334
+焾 433434454544
+焿 433441351134
+煀 433451352252
+煁 4334122111345
+煂 4334122125112
+煃 4334134121121
+煄 4334312511211
+煅 4334321113554
+煆 4334512115154
+煇 4334451251112
+煈 4334353251214
+煉 4334125431234
+煊 4334445125111
+煋 4334251131121
+煌 4334325111121
+煍 4334312344334
+煎 4312511224444
+煏 4334125125121
+煐 433412225134
+煑 121325114334
+煒 4334521251152
+煓 4334252132522
+煔 4334433421251
+煕 12251255154444
+煖 4334344311354
+煗 4334132522134
+煘 4334131251534
+煙 4334125221121
+煚 251115154334
+煛 25111251114334
+煜 4334251141431
+煝 4334521325111
+煞 3551131344444
+煟 4334251212511
+煠 4334122151234
+煡 433451111254
+煢 4334433445512
+煣 4334545231234
+煤 4334122111234
+煥 4334352534134
+煦 2511352514444
+照 2511532514444
+煨 4334251211534
+煩 4334132511134
+煪 4334431253511
+煫 4334431353334
+煬 4334251113533
+煭 5551354224444
+煮 121325114444
+煯 4334153532511
+煰 4334251251251
+煱 433425525251
+煲 3225112344334
+煳 4334122513511
+煴 4334251125221
+煵 4334122543112
+煶 4334251112134
+煷 4334412514535
+煸 4334451325122
+煹 43341122125211
+煺 4334511534454
+煻 43344135112251
+煼 43343552335523
+煽 43344513541541
+煾 43342513414544
+煿 43341251124124
+熀 43342511243135
+熁 43345353532511
+熂 43343115431234
+熃 54523354534334
+熄 43343251114544
+熅 43342534125221
+熆 43341215425221
+熇 43344125125251
+熈 31251255154444
+熉 43342512511134
+熊 54251135354444
+熋 54251135354334
+熌 43342511251134
+熍 4334445251251
+熎 43343443311252
+熏 31254312114444
+熐 43344525114134
+熑 43344315112234
+熒 43344334454334
+熓 43343251154444
+熔 43344453434251
+熕 43341212511134
+熖 43343443321511
+熗 43343445113251
+熘 43343545325121
+熙 12251255154444
+熚 43342511122112
+熛 433412522111234
+熜 433432535414544
+熝 433441352211535
+熞 433412512554121
+熟 412515213544444
+熠 433454154132511
+熡 433425112512531
+熢 43343541112454
+熣 433425232411121
+熤 433454154141431
+熥 43345425112454
+熦 433423432411121
+熧 332343421344334
+熨 513112341244334
+熩 433445132515215
+熪 433431234354354
+熫 433441312214444
+熬 11215331344444
+熭 111211125114334
+熮 433454154134333
+熯 433412212511134
+熰 433412512512515
+熱 121341213544444
+熲 354334132511134
+熳 433425112522154
+熴 433425225111535
+熵 433441432534251
+熶 4334251112211154
+熷 4334432524312511
+熸 4334153515352511
+熹 1212514312514444
+熺 4334121251431251
+熻 4334341251541541
+熼 433425121122134
+熽 43345112321155212
+熾 4334414312511534
+熿 433412212512134
+燀 4334251251251112
+燁 43341221122112
+燂 4334125221251112
+燃 4334354413444444
+燄 3532151143344334
+燅 1213412143344334
+燆 4334313425125251
+燇 4334431253511124
+燈 4334543341251431
+燉 4334412515213134
+燊 4334433443341234
+燋 4334324111214444
+燌 4334121222511134
+燍 4334122111343312
+燎 4334134432511234
+燏 4334545232534251
+燐 4334431234354152
+燑 4334414312511211
+燒 4334121121121135
+燓 1234343412344334
+燔 4334343123425121
+燕 1221251211354444
+燖 4334511121251124
+燗 4334251125113511
+燘 4334251125114134
+燙 4412511135334334
+燚 4334433443344334
+燛 12152211251254334
+燜 4334251125114544
+燝 4334251141251234
+燞 3241112135344444
+營 4334433445251251
+燠 4334325431234134
+燡 43342522112143112
+燢 32113434511454334
+燣 43344125251131234
+燤 4334122251125214
+燥 43342512512511234
+燦 43342135454431234
+燧 4334431353334454
+燨 43344311213121534
+燩 43343251141533134
+燪 4334122353344544
+燫 43344134315112234
+燬 43343215111213554
+燭 43342522135251214
+燮 41112514334433454
+燯 43341452444434454
+燰 43343443454544354
+燱 43344143125114544
+燲 43345353532511134
+燳 43342511532514444
+燴 43343412524312511
+燵 4334121431112454
+燶 43342512211311534
+燷 43344125251111234
+燸 433414524444132522
+燹 135333413533344334
+燺 433441251252511234
+燻 433431254312114444
+燼 433451121444425221
+燽 433412151211251124
+燾 121512112511244444
+燿 433454154132411121
+爀 433412132341213234
+爁 433412512531425221
+爂 3211251251511454334
+爃 433443344334451234
+爄 433413122251125214
+爅 4334254312114444121
+爆 4334251112213424134
+爇 122121341213544444
+爈 4334215315251214544
+爉 4334555253415445445
+爊 4334413522115354444
+爋 43343125431211534444
+爌 433441312212512134
+爍 4334325115545541234
+爎 4334445134432511234
+爏 43341331234312342121
+爐 43342153152512125221
+爑 4334122324111214444
+爒 35444334134432511234
+爓 43342511251135321511
+爔 43344311213123415534
+爕 4111251433443344334
+爖 433441431251121515111
+爗 433425111221122112
+爘 43342135454344511534
+爙 433441251251112213534
+爚 433434125125125125122
+爛 433425112511125431234
+爜 4334224314311212211154
+爝 433434432522151154124
+爞 4334251214251214251214
+爟 433412225125132411121
+爠 4334251112511132411121
+爡 4334122251125214251214
+爢 41312341234211121114444
+爣 433424345251254312114444
+爤 433412225112511125431234
+爥 4334513241342522135251214
+爦 4334125125314252212511135
+爧 4334145244442512512511234341
+爨 321125125151145123412341344334
+爩 433412343112521234453444445215333
+爪 3324
+爫 3443
+爬 33245215
+爭 34435112
+爮 332435515
+爯 344325211
+爰 344311354
+爱 3443451354
+爲 344335554444
+爳 34433555444452
+爴 251251153413324
+爵 34432522151154124
+父 3434
+爷 343452
+爸 34345215
+爹 3434354354
+爺 343412211152
+爻 3434
+爼 343425111
+爽 13434343434
+爾 13425234343434
+爿 5213
+牀 52131234
+牁 521312512
+牂 5213431112
+牃 5213122151234
+牄 52133445113251
+牅 521341351125112
+牆 52131234341252511
+片 3215
+版 32153354
+牉 321543112
+牊 321553251
+牋 321515341534
+牌 321532511312
+牍 321512544134
+牎 3215353344544
+牏 3215341251122
+牐 3215312321511
+牑 3215451325122
+牒 3215122151234
+牓 32154143454153
+牔 32151251124124
+牕 321532535414544
+牖 321545131251124
+牗 321541351125112
+牘 3215121252212511134
+牙 1523
+牚 243452511523
+牛 3112
+牜 3121
+牝 312135
+牞 312153
+牟 543112
+牠 3121525
+牡 3121121
+牢 4453112
+牣 3121534
+牤 3121415
+牥 31214153
+牦 31213115
+牧 31213134
+牨 31214135
+物 31213533
+牪 31213112
+牫 31211534
+牬 31213523
+牭 312125351
+牮 321543112
+牯 312112251
+牰 312125121
+牱 312112512
+牲 312131121
+牳 312155414
+牴 312135154
+牵 134453112
+牶 4311343112
+牷 3121341121
+牸 3121445521
+特 3121121124
+牺 3121125351
+牻 31211353334
+牼 31211555121
+牽 41554453112
+牾 31211251251
+牿 31213121251
+犀 513241343112
+犁 31234223112
+犂 312343533112
+犃 312141431251
+犄 312113412512
+犅 312125431252
+犆 312112251111
+犇 311231213112
+犈 312143113455
+犉 312141251521
+犊 312112544134
+犋 312125111134
+犌 3121512115154
+犍 312151111254
+犎 1211211243112
+犏 3121451325122
+犐 3121312344412
+犑 3121251111344
+犒 31214125125251
+犓 31213552335523
+犔 31213115431234
+犕 31211221325112
+犖 43344334453112
+犗 31214451112251
+犘 413123412343112
+犙 312154545434444
+犚 513112341243112
+犛 112343134133112
+犜 3121312515213134
+犝 3121414312511211
+犞 3121313425125251
+犟 5152512512143112
+犠 31214311213121534
+犡 312113122251125214
+犢 3121121252212511134
+犣 3121555253415445445
+犤 3121252215425113535
+犥 3121413522115354444
+犦 3121251112213424134
+犧 31214311213123415534
+犨 32411121324111213112
+犩 312345313251135543112
+犪 3121431325111212151534354
+犫 324111214111251324111213112
+犬 1344
+犭 353
+犮 13544
+犯 35355
+犰 35335
+犱 353354
+犲 353123
+犳 353354
+犴 353112
+犵 353315
+状 4121344
+犷 353413
+犸 353551
+犹 3531354
+犺 3534135
+犻 3531252
+犼 3535215
+犽 3531523
+犾 3531344
+犿 3534124
+狀 52131344
+狁 3535435
+狂 3531121
+狃 3535211
+狄 3534334
+狅 3533121
+狆 3532512
+狇 3531234
+狈 3532534
+狉 35313241
+狊 251111344
+狋 35311234
+狌 34331121
+狍 35335515
+狎 35325112
+狏 35331525
+狐 35333544
+狑 35334454
+狒 35351532
+狓 35353254
+狔 35351335
+狕 35355453
+狖 35344534
+狗 35335251
+狘 35315534
+狙 35325111
+狚 35325111
+狛 35332511
+狜 35312251
+狝 35335234
+狞 35344512
+狟 353125111
+狠 353511534
+狡 353413434
+狢 353354251
+狣 353341534
+狤 353121251
+狥 353352511
+狦 353251122
+狧 353312251
+狨 353113534
+狩 353445124
+狪 353251251
+狫 353121335
+独 353251214
+狭 353143134
+狮 353231252
+狯 353341154
+狰 353355112
+狱 353451344
+狲 353521234
+狳 3533411234
+狴 3531535121
+狵 3531353334
+狶 3533413252
+狷 3532512511
+狸 3532511211
+狹 3531343434
+狺 3534111251
+狻 3535434354
+狼 3534511534
+狽 3532511134
+狾 3531213312
+狿 353321554
+猀 3534412343
+猁 3533123422
+猂 3532511112
+猃 3533414431
+猄 35341251234
+猅 35321112111
+猆 211121111344
+猇 35321531535
+猈 35332511312
+猉 35312211134
+猊 35332151135
+猋 134413441344
+猌 134342341344
+猍 35313434234
+猎 35312212511
+猏 35345132511
+猐 3534311135
+猑 35325111535
+猒 251125111344
+猓 35325111234
+猔 35344511234
+猕 35351535234
+猖 35325112511
+猗 35313412512
+猘 35331125222
+猙 35334435112
+猚 35332411121
+猛 35352125221
+猜 35311212511
+猝 35341343412
+猞 35334112251
+猟 35344335112
+猠 35325122134
+猡 35325221354
+猢 353122513511
+猣 353345234354
+猤 353543341134
+猥 353251211534
+猦 353353251214
+猧 35325525251
+猨 353344311354
+猩 353251131121
+猪 35312132511
+猫 35312225121
+猬 353251212511
+猭 353551353334
+献 1225431121344
+猯 353252132522
+猰 353111253134
+猱 353545231234
+猲 353251135345
+猳 353512115154
+猴 353325131134
+猵 353451325122
+猶 353431253511
+猷 4312535111344
+猸 353521325111
+猹 353123425111
+猺 3533443311252
+猻 3535213554234
+猼 3531251124124
+猽 3534525114134
+猾 353255452511
+猿 3531212513534
+獀 353321511254
+獁 3531211254444
+獂 3531332511234
+獃 25212514311344
+獄 35341112511344
+獅 3533251511252
+獆 3533251113412
+獇 353431113554
+獈 3534313425221
+獉 3531113431234
+獊 3533445113251
+獋 353325111413412
+獌 35325112522154
+獍 35341431251135
+獎 521335441241344
+獏 3531222511134
+獐 35341431251112
+獑 35312511123312
+獒 11215331341344
+獓 3531121533134
+獔 35332511413412
+獕 35325232411121
+獖 353121222511134
+獗 353134315233534
+獘 432523431341344
+獙 35343252343134
+獚 35312212512134
+獛 353224314311134
+獜 353431234354152
+獝 353545232534251
+獞 353414312511211
+獟 353121121121135
+獠 353134432511234
+獡 35332151154444
+獢 353313425125251
+獣 4432512112511344
+獤 353412515213134
+獥 3533251141533134
+獦 353122251135345
+獧 3532522112513534
+獨 3532522135251214
+獩 3532121131233534
+獪 3533412524312511
+獫 3533412512513434
+獬 3533535112533112
+獭 3531251234352534
+獮 35313425234343434
+獯 35331254312114444
+獰 35344545442522112
+獱 35344512332511134
+獲 3531223241112154
+獳 35314524444132522
+獴 3531224511353334
+獵 353555253415445445
+獶 353132511454544354
+獷 35341312212512134
+獸 2512512512112511344
+獹 3532153152512125221
+獺 3531251234352511134
+獻 21531512512543121344
+獼 35351513425234343434
+獽 35341251251112213534
+獾 35312225125132411121
+獿 3531325111212151534354
+玀 3532522155444432411121
+玁 3532512511351221113134
+玂 3531222512512511123312
+玃 35325111251113241112154
+玄 41554
+玅 415542343
+玆 4155441554
+率 41554413412
+玈 41554313534
+玉 11214
+玊 11214
+王 1121
+玌 11215
+玍 31121
+玎 112112
+玏 112153
+玐 112134
+玑 112135
+玒 1121121
+玓 1121354
+玔 1121322
+玕 1121112
+玖 1121354
+玗 1121112
+玘 1121515
+玙 1121151
+玚 1121533
+玛 1121551
+玜 11213454
+玝 11213112
+玞 11211134
+玟 11214134
+玠 11213432
+玡 11211523
+玢 11213453
+玣 11214124
+玤 11211112
+玥 11213511
+玦 11215134
+玧 11215435
+玨 11211121
+玩 11211135
+玪 11213445
+玫 11213134
+玬 11213541
+玭 11211535
+玮 11211152
+环 11211324
+现 11212535
+玱 11213455
+玲 112134454
+玳 112132154
+玴 112112215
+玵 112112211
+玶 112114312
+玷 112121251
+玸 112135515
+玹 112141554
+玺 3523411214
+玻 112153254
+玼 1121212135
+玽 112135251
+玾 112125112
+玿 112153251
+珀 112132511
+珁 11211554
+珂 112112512
+珃 112125211
+珄 112131121
+珅 112125112
+珆 112154251
+珇 112125111
+珈 112153251
+珉 112151515
+珊 112135351
+珋 112135352
+珌 112145434
+珍 112134333
+珎 112135234
+珏 112111214
+珐 112112154
+珑 112113534
+珒 1121511112
+珓 1121413434
+珔 1121132521
+珕 1121535353
+珖 1121243135
+珗 1121312135
+珘 1121335414
+珙 1121122134
+珚 1121251341
+珛 1121132511
+珜 1121431112
+珝 1121541541
+珞 1121354251
+珟 1121351354
+珠 1121311234
+珡 1121112134
+珢 1121511534
+珣 1121352511
+珤 1121311252
+珥 1121122111
+珦 1121325251
+珧 1121341534
+珨 1121341251
+珩 1121332112
+珪 1121121121
+珫 1121415435
+珬 1121131534
+班 1121431121
+珮 1121351252
+珯 1121121335
+珰 1121243511
+珱 1121443531
+珲 1121451512
+珳 11214134333
+珴 11213121534
+珵 11212511121
+珶 11214351523
+珷 112111212154
+珸 11211251251
+珹 1121135534
+珺 11215113251
+珻 11213155414
+珼 11212511134
+珽 1121312154
+現 11212511135
+珿 11212512134
+琀 11213445251
+琁 11213152134
+琂 11214111251
+球 11211241344
+琄 11212512511
+琅 11214511534
+理 11212511211
+琇 11213123453
+琈 11213443521
+琉 11214154325
+琊 1121152352
+琋 11213413252
+琌 11212523445
+琍 11213123422
+琎 11211132454
+琏 11211512454
+琐 11212432534
+琑 11212432511
+琒 11213541112
+琓 11214451135
+琔 112144512134
+琕 112132511312
+琖 112115341534
+琗 112141343412
+琘 112135152511
+琙 112112511534
+琚 112151312251
+琛 112145341234
+琜 112113434234
+琝 112125114134
+琞 2511351111214
+琟 112132411121
+琠 112125122134
+琡 112121123454
+琢 112113533434
+琣 112141431251
+琤 1121355112
+琥 112121531535
+琦 112113412512
+琧 1215512111214
+琨 112125111535
+琩 112125112511
+琪 112112211134
+琫 112111134112
+琬 112144535455
+琭 112151124134
+琮 112144511234
+琯 112144525151
+琰 112143344334
+琱 112135121251
+琲 112121112111
+琳 112112341234
+琴 112111213445
+琵 112111211535
+琶 112111215215
+琷 11214311135
+琸 112121251112
+琹 112111211234
+琺 112144112154
+琻 112134112431
+琼 112141251234
+琽 112112132511
+琾 1121251213432
+琿 1121451251112
+瑀 1121325125214
+瑁 1121251125111
+瑂 1121521325111
+瑃 1121111342511
+瑄 1121445125111
+瑅 1121251112134
+瑆 1121251131121
+瑇 1121112155414
+瑈 1121545231234
+瑉 1121515152511
+瑊 1121131251534
+瑋 1121521251152
+瑌 1121132522134
+瑍 1121352534134
+瑎 1121153532511
+瑏 1121445341523
+瑐 1121431251122
+瑑 1121551353334
+瑒 1121251113533
+瑓 1121125431234
+瑔 1121325112534
+瑕 1121512115154
+瑖 1121321113554
+瑗 1121344311354
+瑘 112112211152
+瑙 1121555325341
+瑚 1121122513511
+瑛 112112225134
+瑜 1121341251122
+瑝 1121325111121
+瑞 1121252132522
+瑟 1121112145434
+瑠 11213545325121
+瑡 11213251511252
+瑢 11214453434251
+瑣 11212432511134
+瑤 11213544311252
+瑥 1121251125221
+瑦 11213251154444
+瑧 11211113431234
+瑨 11211224312511
+瑩 433443344511214
+瑪 11211211254444
+瑫 11213443321511
+瑬 441415432511214
+瑭 11214135112251
+瑮 11211252211234
+瑯 112145115452
+瑰 1121325113554
+瑱 11211225111134
+瑲 11213445113251
+瑳 1121431113121
+瑴 12145111213554
+瑵 1121544251214
+瑶 11213443311252
+瑷 11213443451354
+瑸 11214453212134
+瑹 11211223411234
+瑺 112124345251252
+瑻 112155212511134
+瑼 112112511214124
+瑽 112133234342134
+瑾 112112212511121
+瑿 1311345355411214
+璀 112125232411121
+璁 112132535414544
+璂 112112211134121
+璃 11214134522554
+璄 112141431251135
+璅 112155525111234
+璆 112154154134333
+璇 112141533152134
+璈 11211121533134
+璉 11211251112454
+璊 112112212523434
+璋 112141431251112
+璌 112144512512134
+璍 11211221122112
+璎 112125342534531
+璏 1121551311341535
+璐 11212512121354251
+璑 1121311222214444
+璒 1121543341251431
+璓 11211223123453
+璔 1121432524312511
+璕 1121511121251124
+璖 112144115151234
+璗 44125111353311214
+璘 1121431234354152
+璙 1121134432511234
+璚 1121545232534251
+璛 11215112321155212
+璜 112112212512134
+璝 1121251212511134
+璞 1121224314311134
+璟 1121251141251234
+璠 1121343123425121
+璡 112132411121454
+璢 1121122155125121
+璣 1121554554134534
+璤 1121125112144544
+璥 1121122352513134
+璦 11213443454544354
+璧 513251414311211214
+璨 11212135454431234
+璩 11212153151353334
+璪 11212512512511234
+璫 11212434525125121
+璬 11213251141533134
+璭 1121451251112454
+璮 11214125251125111
+璯 11213412524312511
+環 11212522112513534
+璱 11211121112145434
+璲 1121431353334454
+璳 11213112342511134
+璴 11211234123452134
+璵 11213211152511134
+璶 112151121444425221
+璷 1121125112441533134
+璸 112144512332511134
+璹 112112151211251124
+璺 32112512515114511214
+璻 112154154141343412
+璼 112112512531425221
+璽 1342523434343411214
+璾 112141432533543211
+璿 112121451343425111
+瓀 112114524444132522
+瓁 11211223241112154
+瓂 11211221215425221
+瓃 1121251212512125121
+瓄 1121121252212511134
+瓅 1121325115545541234
+瓆 1121331233122511134
+瓇 1121132511454544354
+瓈 1121312343533424134
+瓉 1121113411342511134
+瓊 112135253425111354
+瓋 112141432512251454
+瓌 11214125221241343534
+瓍 112152131212511454
+瓎 11211251234352511134
+瓏 112141431251121515111
+瓐 11212153152512125221
+瓑 11211331234312342121
+瓒 11213121353121352534
+瓓 112125112511125431234
+瓔 112125111342511134531
+瓕 5151342523434343411214
+瓖 112141251251112213534
+瓗 1121252324111212534251
+瓘 112112225125132411121
+瓙 1121121512112511244444
+瓚 11213121353121352511134
+瓛 112121531512512543121344
+瓜 33544
+瓝 33544354
+瓞 3354431134
+瓟 3354435515
+瓠 13411533544
+瓡 1214311233544
+瓢 1252211123433544
+瓣 4143113335444143112
+瓤 4125125111221353433544
+瓥 335441353334251214251214
+瓦 1554
+瓧 155412
+瓨 1211554
+瓩 1554312
+瓪 15543354
+瓫 34531554
+瓬 41531554
+瓭 45351554
+瓮 34541554
+瓯 13451554
+瓰 15543453
+瓱 15543115
+瓲 15541525
+瓳 122511554
+瓴 344541554
+瓵 542511554
+瓶 4311321554
+瓷 4135341554
+瓸 1554132511
+瓹 25125111554
+瓺 12111541554
+瓻 34132521554
+瓼 15542511211
+瓽 243452511554
+瓾 312345311554
+瓿 414312511554
+甀 312122111554
+甁 311331121554
+甂 4513251221554
+甃 3123443341554
+甄 1252211211554
+甅 1554132511211
+甆 4315545541554
+甇 43344334451554
+甈 32511112341554
+甉 43151122341554
+甊 251125125311554
+甋 414325122511554
+甌 125125125151554
+甍 12225221451554
+甎 125112141241554
+甏 1212514313331554
+甐 4312343541521554
+甑 4325243125111554
+甒 3112222144441554
+甓 51325141431121554
+甔 35133441112511554
+甕 41553324111211554
+甖 251113425111341554
+甗 21531512512543121554
+甘 12211
+甙 11221154
+甚 122111345
+甛 12211312251
+甜 31225112211
+甝 2153153512211
+甞 2434525112211
+生 31121
+甠 251131121
+甡 3112131121
+產 41341331121
+産 41431331121
+甤 135333431121
+甥 311212512153
+甦 125113431121
+甧 31121311212511
+用 35112
+甩 35115
+甪 335112
+甫 1251124
+甬 5425112
+甭 132435112
+甮 353335112
+甯 445454425112
+田 25121
+由 25121
+甲 25112
+申 25112
+甴 25121
+电 25115
+甶 325121
+男 2512153
+甸 3525121
+甹 2512115
+町 2512112
+画 12512152
+甼 2512112
+甽 25121322
+甾 55525121
+甿 25121415
+畀 25121132
+畁 25121132
+畂 25121354
+畃 25112354
+畄 44325121
+畅 25112533
+畆 412512154
+畇 251213541
+畈 251213354
+畉 251211134
+畊 251211132
+畋 251213134
+界 251213432
+畍 251213432
+畎 251211344
+畏 251211534
+畐 125125121
+畑 433425121
+畒 412512134
+畓 253425121
+畔 2512143112
+畕 2512125121
+畖 2512133544
+畗 4125125121
+畘 2512125211
+留 3545325121
+畚 5413425121
+畛 2512134333
+畜 4155425121
+畝 4125121354
+畞 1225121354
+畟 2512134354
+畠 3251125121
+畡 25121415334
+畢 2511122112
+畣 34125125121
+畤 25121121124
+略 25121354251
+畦 25121121121
+畧 25121354251
+畨 43123425121
+畩 25121413534
+番 343123425121
+畫 511121251211
+畬 341123425121
+畭 251213411234
+畮 251213155414
+畯 251215434354
+異 25121122134
+畱 122155125121
+畲 341123425121
+畳 251214525111
+畴 251211113124
+畵 5111212512154
+當 2434525125121
+畷 2512154545454
+畸 2512113412512
+畹 2512144535455
+畺 1251211251211
+畻 25121431134121
+畼 25121251113533
+畽 25121312511211
+畾 251212512125121
+畿 554554125121534
+疀 5552512115112134
+疁 2512154154134333
+疂 2512141344525111
+疃 25121414312511211
+疄 25121431234354152
+疅 251211251211251211
+疆 5151211251211251211
+疇 2512112151211251124
+疈 12512512143125125121
+疉 25121251212512145551
+疊 2512125121251214525111
+疋 52134
+疌 15112134
+疍 5213425111
+疎 521211251234
+疏 521214154325
+疐 12452512152134
+疑 35311345452134
+疒 41341
+疓 4134153
+疔 4134112
+疕 4134135
+疖 4134152
+疗 4134152
+疘 41341121
+疙 41341315
+疚 41341354
+疛 41341124
+疜 41341124
+疝 41341252
+疞 41341115
+疟 41341151
+疠 41341153
+疡 41341533
+疢 413414334
+疣 413411354
+疤 413415215
+疥 413413432
+疦 413415134
+疧 413413515
+疨 413411523
+疩 413413512
+疪 413411535
+疫 413413554
+疬 413411353
+疭 413413434
+疮 413413455
+疯 413413534
+疰 4134141121
+疱 4134135515
+疲 4134153254
+疳 4134112211
+疴 4134112512
+疵 41341212135
+疶 4134112215
+疷 4134135154
+疸 4134125111
+疹 4134134333
+疺 413413454
+疻 4134125134
+疼 4134135444
+疽 4134125111
+疾 4134131134
+疿 4134151532
+痀 4134135251
+痁 4134121251
+痂 4134153251
+痃 4134141554
+痄 4134131211
+病 4134112534
+痆 4134151335
+症 4134112121
+痈 4134135112
+痉 4134154121
+痊 41341341121
+痋 41341251214
+痌 41341251251
+痍 41341151534
+痎 41341415334
+痏 41341132511
+痐 41341252511
+痑 41341354354
+痒 41341431112
+痓 41341154121
+痔 41341121124
+痕 41341511534
+痖 41341122431
+痗 413413155414
+痘 413411251431
+痙 413411555121
+痚 413411213521
+痛 413415425112
+痜 413413123435
+痝 413411353334
+痞 413411324251
+痟 413412432511
+痠 413415434354
+痡 413411251124
+痢 413413123422
+痣 413411214544
+痤 413413434121
+痥 413414325135
+痦 413411251251
+痧 413414412343
+痨 413411224553
+痩 413412511254
+痪 413413525134
+痫 413414251234
+痬 4134125113533
+痭 4134135113511
+痮 4134112111534
+痯 4134144525151
+痰 4134143344334
+痱 4134121112111
+痲 4134112321235
+痳 4134112341234
+痴 4134131134251
+痵 4134131234521
+痶 4134125122134
+痷 4134113425115
+痸 4134131125222
+痹 4134125121132
+痺 4134132511312
+痻 4134135152511
+痼 4134125122511
+痽 4134132411121
+痾 413415212512
+痿 4134131234531
+瘀 4134141533444
+瘁 4134141343412
+瘂 4134112155121
+瘃 4134113533434
+瘄 4134112212511
+瘅 4134143251112
+瘆 4134154134333
+瘇 41341312511211
+瘈 41341111253134
+瘉 41341341251122
+瘊 41341325131134
+瘋 41341353251214
+瘌 41341125123422
+瘍 41341251113533
+瘎 41341122111345
+瘏 4134112132511
+瘐 4134132151134
+瘑 4134125525251
+瘒 41341451251112
+瘓 41341352534134
+瘔 4134112212251
+瘕 41341512115154
+瘖 41341414312511
+瘗 41341143134121
+瘘 41341431234531
+瘙 41341544251214
+瘚 413414315233534
+瘛 413411112534544
+瘜 413413251114544
+瘝 413412522123344
+瘞 413411343434121
+瘟 41341251125221
+瘠 413414134342511
+瘡 413413445113251
+瘢 413413354143554
+瘣 41341325113554
+瘤 413413545325121
+瘥 41341431113121
+瘦 41341321511254
+瘧 41341215315151
+瘨 413411225111134
+瘩 41341122341251
+瘪 413413251113435
+瘫 413415432411121
+瘬 4134151512111534
+瘭 4134112522111234
+瘮 4134154545434333
+瘯 4134141533131134
+瘰 4134125121554234
+瘱 4134113434344544
+瘲 4134133234342134
+瘳 4134154154134333
+瘴 4134141431251112
+瘵 4134135445411234
+瘶 4134112512343534
+瘷 4134112512343134
+瘸 4134153251253434
+瘹 4134134112431354
+瘺 4134151312524444
+瘻 4134125112512531
+瘼 413411222511134
+瘽 4134112212511121
+瘾 4134152355114544
+瘿 4134125342534531
+癀 4134112212512134
+癁 41341332312511354
+療 41341134432511234
+癃 4134152354131121
+癄 41341324111214444
+癅 41341122155125121
+癆 41341433443344553
+癇 41341251125113511
+癈 41341543345153554
+癉 41341251251251112
+癊 413415234451154
+癋 41341121551214544
+癌 41341251251251252
+癍 41341112141341121
+癎 41341251125112511
+癏 413412522112513534
+癐 413413412524312511
+癑 413412512211311534
+癒 413413412511224544
+癓 413413322521353134
+癔 413414143125114544
+癕 413414155332411121
+癖 413415132514143112
+癗 413411452444425121
+癘 41341122251125214
+癙 413413215115445445
+癚 413413513344111251
+癛 413414125251131234
+癜 413415131221343554
+癝 413414125251111234
+癞 413411251234352534
+癟 4134132511134125122
+癠 4134141432533543112
+癡 4134135311345452134
+癢 4134143111344511534
+癣 4134135251211431112
+癤 413413143145115452
+癥 41341332252111213134
+癦 41341254312114444121
+癧 413411331234312342121
+癨 413411452444432411121
+癩 413411251234352511134
+癪 413413123411212511134
+癫 413411225111134132534
+癬 4134135251214444431112
+癭 4134125111342511134531
+癮 413415234431215114544
+癯 41341251112511132411121
+癰 41341555251521532411121
+癱 413411221251113432411121
+癲 413411225111134132511134
+癳 41341251212512125121554234
+癴 4134141112515544445544443112
+癵 413414111251554444554444253434
+癶 54334
+癷 54334112
+癸 543341134
+癹 543343554
+発 543341135
+登 543341251431
+發 543345153554
+白 32511
+百 132511
+癿 325115
+皀 3251135
+皁 3251112
+皂 3251115
+皃 3251135
+的 32511354
+皅 325115215
+皆 153532511
+皇 325111121
+皈 325113354
+皉 32511212135
+皊 3251134454
+皋 3251113412
+皌 3251111234
+皍 325111552
+皎 32511413434
+皏 32511431132
+皐 32511413412
+皑 32511252515
+皒 325113121534
+皓 325113121251
+皔 325112511112
+皕 132511132511
+皖 325114451135
+皗 3251135121251
+皘 3251111212511
+皙 1234331232511
+皚 325112521251431
+皛 325113251132511
+皜 325114125125251
+皝 325111121243135
+皞 325113251113412
+皟 3251111212511134
+皠 3251125232411121
+皡 3251132511413412
+皢 32511121121121135
+皣 325111221122112
+皤 32511343123425121
+皥 32511325111413412
+皦 325113251141533134
+皧 325113443454544354
+皨 325113251132511121
+皩 3251111212511243135
+皪 32511325115545541234
+皫 32511413522115354444
+皬 325111452444432411121
+皭 3251134432522151154124
+皮 53254
+皯 53254112
+皰 5325435515
+皱 3551153254
+皲 45152153254
+皳 124134453254
+皴 543435453254
+皵 1221251153254
+皶 12342511153254
+皷 12125143153254
+皸 45125111253254
+皹 53254451251112
+皺 355233552353254
+皻 2153152511153254
+皼 12145125143153254
+皽 412525112511153254
+皾 12125221251113453254
+皿 25221
+盀 2425221
+盁 5325221
+盂 11225221
+盃 132425221
+盄 515225221
+盅 251225221
+盆 345325221
+盇 134425221
+盈 535425221
+盉 3123425221
+益 4313425221
+盋 1354425221
+盌 3545525221
+盍 1215425221
+盎 2513425221
+盏 1153425221
+盐 1212425221
+监 2231425221
+盒 34125125221
+盓 44111225221
+盔 13433425221
+盕 44135425221
+盖 43112125221
+盗 41353425221
+盘 33541425221
+盙 125112425221
+盚 124134425221
+盛 13553425221
+盜 441353425221
+盝 5112413425221
+盞 1534153425221
+盟 2511351125221
+盠 55135333425221
+盡 51121444425221
+盢 25121134425221
+監 12512531425221
+盤 335414355425221
+盥 3211253451125221
+盦 3445125351125221
+盧 2153152512125221
+盨 33313251113425221
+盩 12143112313425221
+盪 44125111353325221
+盫 341251125351125221
+盬 125125311225125221
+盭 55412143112313425221
+目 25111
+盯 2511112
+盰 25111112
+盱 25111112
+盲 41525111
+盳 25111415
+直 12251111
+盵 25111315
+盶 251111135
+盷 251113541
+相 123425111
+盹 251111525
+盺 251113312
+盻 251113415
+盼 251113453
+盽 251111112
+盾 331225111
+盿 251114134
+眀 251113511
+省 234325111
+眂 251113515
+眃 251111154
+眄 251111255
+眅 251113354
+眆 251114153
+眇 251112343
+眈 251114535
+眉 521325111
+眊 251113115
+看 311325111
+県 251115234
+眍 251111345
+眎 2511111234
+眏 2511125134
+眐 2511112121
+眑 2511155453
+眒 2511125112
+眓 2511115534
+眔 2522123344
+眕 2511134333
+眖 2511125135
+眗 2511135251
+眘 1344325111
+眙 2511154251
+眚 3112125111
+眛 2511111234
+眜 2511111234
+眝 2511144512
+眞 3525111534
+真 1225111134
+眠 2511151515
+眡 2511135154
+眢 3545525111
+眣 2511131134
+眤 2511151335
+眥 21213525111
+眦 25111212135
+眧 2511153251
+眨 251113454
+眩 2511141554
+眪 2511112534
+眫 2511143112
+眬 2511113534
+眭 25111121121
+眮 25111251251
+眯 25111431234
+眰 25111154121
+眱 25111151534
+眲 25111122111
+眳 25111354251
+眴 25111352511
+眵 25111354354
+眶 25111111215
+眷 43113425111
+眸 25111543112
+眹 25111431134
+眺 25111341534
+眻 25111431112
+眼 25111511534
+眽 25111333534
+眾 25221323434
+眿 2511145534
+着 43111325111
+睁 25111355112
+睂 343421325111
+睃 251115434354
+睄 251112432511
+睅 251112511112
+睆 251114451135
+睇 251114351523
+睈 251112511121
+睉 251113434121
+睊 251112512511
+睋 251113121534
+睌 251113525135
+睍 251112511135
+睎 251113413252
+睏 251112512341
+睐 251111431234
+睑 251113414431
+睒 2511143344334
+睓 2511125122134
+睔 2511134125122
+睕 2511144535455
+睖 2511112134354
+睗 2511125113533
+睘 2522112513534
+睙 2511145131344
+睚 2511113121121
+睛 2511111212511
+睜 2511134435112
+睝 3123435325111
+睞 2511113434234
+睟 2511141343412
+睠 2511143113455
+睡 2511131212211
+睢 2511132411121
+督 2112345425111
+睤 2511125121132
+睥 2511132511312
+睦 2511112134121
+睧 2511135152511
+睨 2511132151135
+睩 2511151124134
+睪 2522112143112
+睫 2511115112134
+睬 2511134431234
+睭 2511135121251
+睮 25111341251122
+睯 51515313425111
+睰 2511112213251
+睱 25111512115154
+睲 25111251131121
+睳 25111134121121
+睴 25111451251112
+睵 25111121251534
+睶 25111111342511
+睷 2511151111254
+睸 25111521325111
+睹 2511112132511
+睺 25111325131134
+睻 25111445125111
+睼 25111251112134
+睽 25111543341134
+睾 32522112143112
+睿 21451343425111
+瞀 54523313425111
+瞁 25111251111344
+瞂 33122511113544
+瞃 25111331225111
+瞄 2511112225121
+瞅 25111312344334
+瞆 25111251212534
+瞇 25111431234454
+瞈 251113454541541
+瞉 121451251113554
+瞊 251114135112251
+瞋 251111225111134
+瞌 251111215425221
+瞍 25111321511254
+瞎 251114451112251
+瞏 252211212513534
+瞐 251112511125111
+瞑 251114525114134
+瞒 251111221253434
+瞓 251114111251322
+瞔 2511111212511134
+瞕 2511141431251112
+瞖 1311345355425111
+瞗 2511132511154444
+瞘 2511112512512515
+瞙 251111222511134
+瞚 2511144512512134
+瞛 2511133234342134
+瞜 2511125112512531
+瞝 251114134522554
+瞞 2511112212523434
+瞟 2511112522111234
+瞠 2511124345251121
+瞡 2511111342511135
+瞢 122252214525111
+瞣 2511125125124544
+瞤 25111251125111121
+瞥 4325234313425111
+瞦 25111121251431251
+瞧 25111324111214444
+瞨 25111224314311134
+瞩 25111513325125214
+瞪 25111543341251431
+瞫 25111125221251112
+瞬 25111344345354152
+瞭 25111134432511234
+瞮 25111415425113134
+瞯 25111251125113511
+瞰 2511151221113134
+瞱 251111221122112
+瞲 25111545232534251
+瞳 25111414312511211
+瞴 25111311222214444
+瞵 25111431234354152
+瞶 25111251212511134
+瞷 25111251125112511
+瞸 25111122122151234
+瞹 251113443454544354
+瞺 251113412524312511
+瞻 251113513344111251
+瞼 251113412512513434
+瞽 121251431125425111
+瞾 251112511144534121
+瞿 251112511132411121
+矀 251113322521353134
+矁 251113123443344544
+矂 251112512512511234
+矃 2511144545442522112
+矄 2511131254312114444
+矅 2511154154132411121
+矆 251111223241112154
+矇 251111224511353334
+矈 2511132511445344153
+矉 2511144512332511134
+矊 2511155444432511252
+矋 2511113122251125214
+矌 2511141312212512134
+矍 25111251113241112154
+矎 2511135253425111354
+矏 25111325111445344153
+矐 251111452444432411121
+矑 251112153152512125221
+矒 25111122252214525111
+矓 2511141431251121515111
+矔 2511112225125132411121
+矕 411125155444455444425111
+矖 251111254125441352211535
+矗 122511111225111112251111
+矘 2511124345251254312114444
+矙 251112511251151221113134
+矚 25111513241342522135251214
+矛 54523
+矜 545233445
+矝 5452334454
+矞 545232534251
+矟 545232432511
+矠 5452312212511
+矡 5452325111251113241112154
+矢 31134
+矣 5431134
+矤 51531134
+知 31134251
+矦 351331134
+矧 311345152
+矨 311343134
+矩 311341515
+矪 31134335414
+矫 31134313432
+矬 311343434121
+短 311341251431
+矮 3113431234531
+矯 31134313425125251
+矰 31134432524312511
+矱 311341223241112154
+矲 31134252215425113535
+石 13251
+矴 1325112
+矵 1325122
+矶 1325135
+矷 13251521
+矸 13251112
+矹 13251135
+矺 13251315
+矻 13251315
+矼 13251121
+矽 13251354
+矾 13251354
+矿 13251413
+砀 13251533
+码 13251551
+砂 132512343
+砃 132513541
+砄 132515134
+砅 132512534
+砆 132511134
+砇 132514134
+砈 132511355
+砉 111213251
+砊 132514135
+砋 132512121
+砌 132511553
+砍 132513534
+砎 132513432
+砏 132513453
+砐 13251354
+砑 132511523
+砒 132511535
+砓 132513554
+研 132511132
+砕 132513512
+砖 132511154
+砗 132511512
+砘 132511525
+砙 132511554
+砚 132512535
+砛 132513445
+砜 132513534
+砝 1325112154
+砞 1325111234
+砟 1325131211
+砠 1325125111
+砡 1325111214
+砢 1325112512
+砣 1325144535
+砤 1325131525
+砥 1325135154
+砦 21213513251
+砧 1325121251
+砨 1325145135
+砩 1325151532
+砪 1325155414
+砫 1325141121
+砬 1325141431
+砭 132513454
+砮 5315413251
+砯 1325142534
+砰 1325114312
+砱 1325134454
+砲 1325135515
+砳 1325113251
+破 1325153254
+砵 1325112341
+砶 1325132511
+砷 1325125112
+砸 1325112525
+砹 1325112234
+砺 1325113153
+砻 1353413251
+砼 1325134121
+砽 1325135112
+砾 1325135234
+砿 1325141354
+础 1325152252
+硁 1325154121
+硂 13251341121
+硃 13251311234
+硄 13251243135
+硅 13251121121
+硆 13251341251
+硇 13251325341
+硈 13251121251
+硉 13251511112
+硊 13251351355
+硋 13251415334
+硌 13251354251
+硍 13251511534
+硎 13251113222
+硏 13251113112
+硐 13251251251
+硑 13251431132
+硒 13251125351
+硓 13251121335
+硔 13251122134
+硕 13251132534
+硖 13251143134
+硗 13251153135
+硘 13251252511
+硙 13251252515
+硚 13251313432
+硛 13251413234
+硜 132511555121
+硝 132512432511
+硞 132513121251
+硟 13251321554
+硠 132514511534
+硡 132514451354
+硢 132513411234
+硣 132511213521
+硤 132511343434
+硥 132511353334
+硦 132511121132
+硧 132515425112
+硨 132511251112
+硩 121331213251
+硪 132513121534
+硫 132514154325
+硬 132511251134
+硭 13251122415
+确 132513535112
+硯 132512511135
+硰 441234313251
+硱 132512512341
+硲 132513434251
+硳 132511213234
+硴 132511223235
+硵 132512125341
+硶 132512523445
+硷 132513414431
+硸 1325125213112
+硹 1325112343454
+硺 1325113533434
+硻 1251255413251
+硼 1325135113511
+硽 1325113425115
+硾 1325131212211
+硿 1325144534121
+碀 13251355112
+碁 1221113413251
+碂 1325144511234
+碃 1325111212511
+碄 1325112341234
+碅 1325125312341
+碆 4415325413251
+碇 1325144512134
+碈 1325135152511
+碉 1325135121251
+碊 1325115341534
+碋 1325125212512
+碌 1325151124134
+碍 1325125111124
+碎 1325141343412
+碏 1325112212511
+碐 1325112134354
+碑 1325132511312
+碒 1325134112431
+碓 1325132411121
+碔 1325111212154
+碕 1325113412512
+碖 1325134125122
+碗 1325144535455
+碘 1325125122134
+碙 1325125431252
+碚 1325141431251
+碛 1325111212534
+碜 1325154134333
+碝 13251132522134
+碞 25125125113251
+碟 13251122151234
+碠 13251412514512
+碡 13251112155414
+碢 1325125525251
+碣 13251251135345
+碤 1325112225134
+碥 13251451325122
+碦 13251445354251
+碧 11213251113251
+碨 13251251211534
+碩 13251132511134
+碪 13251122111345
+碫 13251321113554
+碬 13251512115154
+碭 13251251113533
+碮 13251251112134
+碯 13251555325341
+碰 1325143122431
+碱 13251131251534
+碲 13251414345252
+碳 13251252134334
+碴 13251123425111
+碵 13251212511134
+碶 13251111253134
+碷 13251331225111
+碸 13251353251214
+碹 13251445125111
+確 132514532411121
+碻 132514125125251
+碼 132511211254444
+碽 132511212511134
+碾 132515131221534
+碿 132515132432511
+磀 13251431523454
+磁 13251431554554
+磂 132513545325121
+磃 132513321531535
+磄 132514135112251
+磅 132514143454153
+磆 13251255452511
+磇 132513253411535
+磈 13251325113554
+磉 132515454541234
+磊 132511325113251
+磋 13251431113121
+磌 132511225111134
+磍 132514451112251
+磎 132513443554134
+磏 132514315112234
+磐 335414355413251
+磑 132512521251431
+磒 132512512511134
+磓 13251325151454
+磔 132513541521234
+磕 132511215425221
+磖 1325154154132511
+磗 132511251124124
+磘 132513443311252
+磙 132514134543534
+磚 1325112511214124
+磛 1251112331213251
+磜 1325135445411234
+磝 132511121533134
+磞 1325125235113511
+磟 1325154154134333
+磠 1325121253444441
+磡 1325112211134553
+磢 1325113434343434
+磣 1325154545434333
+磤 132513351153554
+磥 1325125121554234
+磦 1325112522111234
+磧 1325111212511134
+磨 4131234123413251
+磩 1325113211234534
+磪 1325125232411121
+磫 1325133234342134
+磬 1215213355413251
+磭 1325113115342511
+磮 1325125234125122
+磯 13251554554134534
+磰 13251431112431251
+磱 13251433443344553
+磲 1325144115151234
+磳 13251432524312511
+磴 13251543341251431
+磵 13251251125112511
+磶 13251321511354444
+磷 13251431234354152
+磸 13251431253511134
+磹 13251125221251112
+磺 1325112212512134
+磻 13251343123425121
+磼 13251324111211234
+磽 13251121121121135
+磾 13251251251251112
+磿 13312343123413251
+礀 13251251125113511
+礁 13251324111214444
+礂 13251121251431251
+礃 13251243452513112
+礄 13251313425125251
+礅 13251412515213134
+礆 132513412512513434
+礇 13251325431234134
+礈 13251431353334454
+礉 132513251141533134
+礊 125111252355413251
+礋 132512522112143112
+礌 132511452444425121
+礍 13251122251135345
+礎 132511234123452134
+礏 132512243143111234
+礐 321134345114513251
+礑 132512434525125121
+礒 132514311213121534
+礓 132511251211251211
+礔 132515132514143112
+礕 513251414311213251
+礖 132513211152511134
+礗 1325144512332511134
+礘 1325125115545544444
+礙 1325135311345452134
+礚 132511221215425221
+礛 1325112512531425221
+礜 321115251113413251
+礝 1325114524444132522
+礞 132511224511353334
+礟 1325112112544443434
+礠 132514315545544544
+礡 132511221251124124
+礢 1325143111344511534
+礣 1325112225221134534
+礤 1325112235445411234
+礥 13251125125542511134
+礦 1325141312212512134
+礧 13251251212512125121
+礨 25121251212512113251
+礩 13251331233122511134
+礪 1325113122251125214
+礫 13251325115545541234
+礬 12343434123413413251
+礭 132511452444432411121
+礮 132511211254444413434
+礯 132514334433445554234
+礰 132511331234312342121
+礱 4143125112151511113251
+礲 1325141431251121515111
+礳 132514131234123413251
+礴 132511224411251124124
+礵 1325114524444123425111
+礶 1325112225125132411121
+礷 1325112212512531425221
+礸 132513121353121352511134
+礹 132512512511351221113134
+示 11234
+礻 4524
+礼 45245
+礽 452453
+社 4524121
+礿 4524354
+祀 4524515
+祁 452452
+祂 4524515
+祃 4524551
+祄 45243432
+祅 45243134
+祆 45241134
+祇 45243515
+祈 45243312
+祉 45242121
+祊 45244153
+祋 45243554
+祌 45242512
+祍 45243121
+祎 45241152
+祏 452413251
+祐 452413251
+祑 452431134
+祒 452453251
+祓 452413544
+祔 452432124
+祕 452445434
+祖 452425111
+祗 452435154
+祘 1123411234
+祙 452411234
+祚 452431211
+祛 452412154
+祜 452412251
+祝 452425135
+神 452425112
+祟 5225211234
+祠 452451251
+祡 21213511234
+祢 452435234
+祣 4524313534
+祤 4524541541
+祥 4524431112
+祦 45242511134
+祧 4524341534
+票 12522111234
+祩 4524311234
+祪 4524351355
+祫 4524341251
+祬 4524154121
+祭 35445411234
+祮 4524121251
+祯 4524212534
+祰 45243121251
+祱 45244325135
+祲 45245114554
+祳 45241322534
+祴 45241132534
+祵 45242512341
+祶 45244351523
+祷 45241113124
+祸 45242512534
+祹 452435311252
+祺 452412211134
+祻 452425122511
+祼 452425111234
+祽 452441343412
+祾 452412134354
+祿 452455124134
+禀 4125251111234
+禁 1234123411234
+禂 452435121251
+禃 452412251111
+禄 452451124134
+禅 452443251112
+禆 452432511312
+禇 452412132511
+禈 4524451251112
+禉 4524431253511
+禊 4524111253134
+禋 4524125221121
+禌 4524431554554
+禍 452425525251
+禎 4524212511134
+福 4524125125121
+禐 4524344311354
+禑 4524251125214
+禒 4524551353334
+禓 4524251113533
+禔 4524251112134
+禕 4524521251152
+禖 4524122111234
+禗 4524251214544
+禘 4524414345252
+禙 4524211352511
+禚 45244311214444
+禛 45241225111134
+禜 433443344511234
+禝 45242512134354
+禞 45244125125251
+禟 45244135112251
+禠 45243321531535
+禡 45241211254444
+禢 45242511541541
+禣 45241251124124
+禤 452425221541541
+禥 452412211134121
+禦 33231121215211234
+禧 4524121251431251
+禨 4524554554134534
+禩 452425121122134
+禪 4524251251251112
+禫 4524125221251112
+禬 45243412524312511
+禭 4524431353334454
+禮 45242512211251431
+禯 45242512211311534
+禰 452413425234343434
+禱 452412151211251124
+禲 452413122251125214
+禳 452441251251112213534
+禴 452434125125125125122
+禵 4524251112134132511134
+禶 45243121353121352511134
+禷 45244312341344132511134
+禸 2554
+禹 325125214
+禺 251125214
+离 4134522554
+禼 21253412554
+禽 344134522554
+禾 31234
+禿 3123435
+秀 3123453
+私 3123454
+秂 3123434
+秃 3123435
+秄 31234521
+秅 31234315
+秆 31234112
+秇 31234354
+秈 31234252
+秉 31511234
+秊 31234312
+秋 312344334
+秌 433431234
+种 312342512
+秎 312343453
+秏 312343115
+秐 312341154
+科 312344412
+秒 312342343
+秓 312341254
+秔 312344135
+秕 312341535
+秖 312343515
+秗 312343134
+秘 3123445434
+秙 3123412251
+秚 3123443112
+秛 3123453254
+秜 3123451335
+秝 3123431234
+秞 3123425121
+租 3123425111
+秠 3123413241
+秡 3123413544
+秢 3123434454
+秣 3123411234
+秤 3123414312
+秥 3123421251
+秦 1113431234
+秧 3123425134
+秨 3123431211
+秩 3123431134
+秪 3123435154
+秫 3123412344
+秬 312341515
+秭 312343523
+秮 3123454251
+积 3123425134
+称 3123435234
+秱 31234251251
+秲 31234121124
+秳 31234312251
+秴 31234341251
+秵 31234251341
+秶 41353431234
+秷 31234154121
+秸 31234121251
+秹 31234323121
+秺 31234445315
+移 31234354354
+秼 31234311234
+秽 31234252354
+秾 31234453534
+秿 312341251124
+稀 312343413252
+稁 412514531234
+稂 312344511534
+稃 312343443521
+稄 312345434354
+稅 312343425135
+稆 31234251251
+稇 312342512341
+稈 312342511112
+稉 312341251134
+稊 312344351523
+程 312342511121
+稌 312343411234
+稍 312342432511
+税 312344325135
+稏 3123412155121
+稐 3123434125122
+稑 3123412134121
+稒 3123425122511
+稓 3123412212511
+稔 3123434454544
+稕 3123441251521
+稖 3123441431251
+稗 3123432511312
+稘 3123412211134
+稙 3123412251111
+稚 3123432411121
+稛 3123425312341
+稜 3123412134354
+稝 3123435113511
+稞 3123425111234
+稟 4125251131234
+稠 3123435121251
+稡 3123441343412
+稢 3123412511534
+稣 3525121131234
+稤 3123441251234
+稥 3123444442511
+稦 31234521251152
+稧 31234111253134
+稨 31234451325122
+稩 31234251212511
+稪 31234312511354
+稫 31234125125121
+稬 31234132522134
+稭 31234153532511
+種 31234312511211
+稯 31234345234354
+稰 31234521342511
+稱 31234344325211
+稲 31234344322511
+稳 31234355114544
+稴 312344315112234
+稵 31234431554554
+稶 312341251153334
+稷 312342512134354
+稸 312344155425121
+稹 312341225111134
+稺 312345134143112
+稻 312343443321511
+稼 312344451353334
+稽 312341354352511
+稾 412512525131234
+稿 312344125125251
+穀 121451312343554
+穁 31234122122111
+穂 312341251124544
+穃 312344453434251
+穄 3123435445411234
+穅 3123441351124134
+穆 3123432511234333
+穇 3123454545434333
+穈 4131234123431234
+穉 31234513241343112
+穊 31234511541535
+穋 3123454154134333
+穌 3525121444431234
+積 3123411212511134
+穎 3531234132511134
+穏 3123434435114544
+穐 3123435251125115
+穑 3123412431252511
+穒 3123432511154444
+穓 3123425121122134
+穔 3123412212512134
+穕 31234324111211234
+穖 31234554554134534
+穗 31234125112144544
+穘 31234121121121135
+穙 31234224314311134
+穚 31234313425125251
+穛 31234324111214444
+穜 31234414312511211
+穝 31234251112211154
+穞 31234352512112511
+穟 31234431353334454
+穠 312342512211311534
+穡 312341234341252511
+穢 312342121131233534
+穣 312344134112213534
+穤 3123414524444132522
+穥 312343211152511134
+穦 3123444512332511134
+穧 3123441432533543211
+穨 3123435251212511134
+穩 3123434431215114544
+穪 3123413425234343434
+穫 312341223241112154
+穬 3123441312212512134
+穭 31234352512144442511
+穮 31234413522115354444
+穯 31234122512511252511
+穰 3123441251251112213534
+穱 3123434432522151154124
+穲 312341254125441352211535
+穳 312343121353121352511134
+穴 44534
+穵 445345
+究 4453435
+穷 4453453
+穸 44534354
+穹 44534515
+空 44534121
+穻 44534112
+穼 445341234
+穽 445341132
+穾 445343134
+穿 445341523
+窀 445341525
+突 445341344
+窂 445343112
+窃 445341553
+窄 4453431211
+窅 4453425111
+窆 445343454
+窇 4453435515
+窈 4453455453
+窉 4453412534
+窊 4453433544
+窋 4453452252
+窌 4453435352
+窍 4453412115
+窎 4453435451
+窏 44534441112
+窐 44534121121
+窑 44534311252
+窒 44534154121
+窓 44534544544
+窔 44534413434
+窕 44534341534
+窖 445343121251
+窗 445343253541
+窘 445345113251
+窙 445341213521
+窚 44534135534
+窛 445341135531
+窜 445342512512
+窝 445342512534
+窞 4453435321511
+窟 4453451352252
+窠 4453425111234
+窡 4453454545454
+窢 4453412511534
+窣 4453441343412
+窤 4453425111535
+窥 4453411342535
+窦 4453412544134
+窧 4453421251112
+窨 44534414312511
+窩 4453425525251
+窪 44534441121121
+窫 44534111253134
+窬 44534341251122
+窭 44534431234531
+窮 445343251113515
+窯 445344311214444
+窰 445343443311252
+窱 445343223541234
+窲 445344312344412
+窳 445343354433544
+窴 445341225111134
+窵 4453432511154444
+窶 4453425112512531
+窷 4453412211135352
+窸 4453434312344544
+窹 4453452131251251
+窺 4453411342511135
+窻 4453432535414544
+窼 4453455525111234
+窽 4453435311343534
+窾 44534121112343534
+窿 4453452354131121
+竀 44534121212511135
+竁 44534311531153115
+竂 44534134432511234
+竃 44534121251125115
+竄 445343215115445445
+竅 445343251141533134
+竆 445343251113251251
+竇 44534121252212511134
+竈 445341212511251211511
+竉 4453441431251121515111
+竊 4453434312342125342554
+立 41431
+竌 4143135
+竍 4143112
+竎 41431132
+竏 41431312
+竐 414313554
+竑 414311354
+竒 414312512
+竓 414313115
+竔 414313132
+竕 414313453
+竖 225441431
+竗 414312343
+竘 4143135251
+站 4143121251
+竚 4143144512
+竛 4143134454
+竜 4143125115
+竝 4143141431
+竞 4143125135
+竟 41431251135
+章 41431251112
+竡 41431132511
+竢 414315431134
+竣 414315434354
+竤 414314451354
+童 414312511211
+竦 414311251234
+竧 414313251113
+竨 4143121251112
+竩 4143144525111
+竪 1251255441431
+竫 41431355112
+竬 41431325125214
+竭 41431251135345
+竮 41431513431132
+端 41431252132522
+竰 41431132511211
+竱 4143112511214124
+竲 41431432524312511
+竳 41431543341251431
+竴 41431431253511124
+竵 414311251152254312
+競 41431251354143125135
+竷 41431251112354152354
+竸 4143125113541431251135
+竹 312312
+竺 31431411
+竻 31431453
+竼 314314354
+竽 314314112
+竾 314314525
+竿 314314112
+笀 314314415
+笁 314314121
+笂 314314354
+笃 314314551
+笄 3143141132
+笅 3143143434
+笆 3143145215
+笇 3143144124
+笈 314314354
+笉 3143143541
+笊 3143143324
+笋 3143145113
+笌 3143141523
+笍 3143142534
+笎 3143141135
+笏 3143143533
+笐 3143144135
+笑 3143143134
+笒 3143143445
+笓 3143141535
+笔 3143143115
+笕 3143142535
+笖 3143145434
+笗 31431435444
+笘 31431421251
+笙 31431431121
+笚 31431425112
+笛 31431425121
+笜 31431452252
+笝 31431425541
+笞 31431454251
+笟 31431433544
+笠 31431441431
+笡 31431425111
+笢 31431451515
+笣 31431435515
+笤 31431453251
+笥 31431451251
+符 31431432124
+笧 31431435351
+笨 31431412341
+笩 31431432154
+笪 31431425111
+笫 3143143523
+第 31431451523
+笭 31431434454
+笮 31431431211
+笯 31431453154
+笰 31431451532
+笱 31431435251
+笲 31431454132
+笳 31431453251
+笴 31431412512
+笵 31431444155
+笶 31431431134
+笷 31431435352
+笸 31431412515
+笹 31431412215
+笺 31431411534
+笻 31431412152
+笼 31431413534
+笽 31431425221
+笾 31431453454
+笿 314314354251
+筀 314314121121
+筁 314314251221
+筂 314314441525
+筃 314314251341
+筄 314314341534
+筅 314314312135
+筆 314314511112
+筇 31431412152
+筈 314314312251
+等 314314121124
+筊 314314413434
+筋 314314351153
+筌 314314341121
+筍 314314352511
+筎 314314531251
+筏 314314321534
+筐 314314111215
+筑 314314121354
+筒 314314251251
+筓 314314113112
+答 314314341251
+筕 314314332112
+策 314314125234
+筗 314314322512
+筘 314314121251
+筙 314314111234
+筚 314314153512
+筛 314314231252
+筜 314314243511
+筝 314314355112
+筞 3143144451234
+筟 3143143443521
+筠 3143141213541
+筡 3143143411234
+筢 3143141215215
+筣 3143143123422
+筤 3143144511534
+筥 314314251251
+筦 3143144451135
+筧 3143142511135
+筨 3143143445251
+筩 3143145425112
+筪 3143141251125
+筫 3143142511134
+筬 314314135534
+筭 3143141121132
+筮 3143141234341
+筯 3143142511153
+筰 3143143231211
+筱 3143143223134
+筲 3143142432511
+筳 314314312154
+筴 3143141343434
+筵 314314321554
+筶 3143143121251
+筷 3143144425134
+筸 3143142511112
+筹 3143141113124
+筺 3143141112145
+筻 3143141251134
+筼 3143142512534
+筽 3143142511134
+签 3143143414431
+筿 3143143541234
+简 3143144252511
+箁 31431441431251
+箂 31431413434234
+箃 31431412211154
+箄 31431432511312
+箅 31431425121132
+箆 31431425341535
+箇 31431425122511
+箈 31431444154251
+箉 31431412125153
+箊 31431441533444
+箋 31431415341534
+箌 31431415412122
+箍 31431412112525
+箎 31431421531535
+箏 31431434435112
+箐 31431411212511
+箑 31431415112134
+箒 31431451145252
+箓 31431451124134
+箔 31431444132511
+箕 31431412211134
+箖 31431412341234
+算 31431425111132
+箘 31431425312341
+箙 31431435115254
+箚 31431434125122
+箛 31431452133544
+箜 31431444534121
+箝 31431412112211
+箞 31431443113455
+箟 31431425111535
+箠 31431431212211
+管 31431444525151
+箢 31431444535455
+箣 31431412523422
+箤 31431441343412
+箥 31431444153254
+箦 31431411212534
+箧 31431411431345
+箨 31431412154112
+箩 31431425221354
+箪 31431443251112
+箫 31431451123234
+箬 31431412213251
+箭 314314431251122
+箮 314314445125111
+箯 314314321251134
+箰 314314352511521
+箱 314314123425111
+箲 314314441312135
+箳 314314513431132
+箴 314314131251534
+箵 314314234325111
+箶 314314122513511
+箷 314314415331525
+箸 31431412132511
+箹 314314554444354
+箺 314314111342511
+箻 314314332511112
+箼 314314513154121
+箽 314314312511211
+箾 314314243251122
+箿 314314251122111
+節 3143145115452
+篁 314314325111121
+篂 314314251131121
+篃 314314521325111
+範 314314125111255
+篅 314314252132522
+篆 314314551353334
+篇 314314451325122
+篈 314314121121124
+築 3143141213541234
+篊 314314441122134
+篋 314314113434345
+篌 314314325131134
+篍 314314312344334
+篎 314314251112343
+篏 314314122113534
+篐 314314123412525
+篑 314314251212534
+篒 314314344511534
+篓 314314431234531
+篔 3143142512511134
+篕 3143141215425221
+篖 3143144135112251
+篗 3143143241112154
+篘 3143143552335523
+篙 3143144125125251
+篚 3143141211121115
+篛 3143145154151541
+篜 3143145253414444
+篝 3143141122125211
+篞 3143144412511121
+篟 3143143211212511
+篠 3143143223541234
+篡 3143142511113454
+篢 3143141212511134
+篣 3143144143454153
+篤 3143141211254444
+篥 3143141252211234
+篦 3143143253411535
+篧 3143144532411121
+篨 314314523411234
+篩 3143143251511252
+篪 3143143321531535
+篫 3143141213543112
+篬 3143143445113251
+篭 3143144143125115
+篮 3143142231425221
+篯 3143143111511534
+篰 3143144143125152
+篱 3143144134522554
+篲 31431411121112511
+篳 3143142511122112
+篴 3143141353334454
+篵 31431433234342134
+篶 31431412121154444
+篷 3143143541112454
+篸 31431454545434333
+篹 3143142511113455
+篺 31431412132511312
+篻 31431412522111234
+篼 31431432511355135
+篽 314314332311212152
+篾 31431425221134534
+篿 31431412511214124
+簀 31431411212511134
+簁 31431433221212134
+簂 31431425125115341
+簃 31431431234354354
+簄 31431445132515215
+簅 31431441431331121
+簆 31431444511353134
+簇 31431441533131134
+簈 31431451331133112
+簉 3143143121251454
+簊 31431412211134121
+簋 31431451153425221
+簌 31431412512343534
+簍 31431425112512531
+簎 31431412112212511
+簏 31431441352211535
+簐 31431412511123534
+簑 3143144125113534
+簒 31431425111134354
+簓 31431435121251333
+簔 31431441122113534
+簕 31431412212511253
+簖 31431443123453312
+簗 31431444153441234
+簘 31431451124313432
+簙 314314121251124124
+簚 314314252211252534
+簛 314314122111343312
+簜 314314441251113533
+簝 314314134432511234
+簞 314314251251251112
+簟 314314125221251112
+簠 314314125112425221
+簡 314314251125112511
+簢 314314251125114134
+簣 314314251212511134
+簤 314314252212511134
+簥 314314313425125251
+簦 314314543341251431
+簧 31431412212512134
+簨 314314515515122134
+簩 314314433443344553
+簪 314314153515352511
+簫 3143145112321155212
+簬 3143142512121354251
+簭 314314123434134251
+簮 314314113411342511
+簯 314314123412211134
+簰 314314321532511312
+簱 314314415312211134
+簲 314314351132511312
+簳 3143141225111234112
+簴 3143142153152243134
+簵 3143141251112354251
+簶 314314452451124134
+簷 3143143513344111251
+簸 3143141221113453254
+簹 3143142434525125121
+簺 3143144451122134121
+簻 31431425525251454
+簼 3143141211122125211
+簽 3143143412512513434
+簾 3143144134315112234
+簿 3143144411251124124
+籀 3143141213545325121
+籁 3143141251234352534
+籂 3143143445115431252
+籃 31431412512531425221
+籄 31431412512125111345
+籅 3143143211152511134
+籆 3143141223241112154
+籇 31431441251451353334
+籈 3143141252211211554
+籉 31431412125145154121
+籊 31431454154132411121
+籋 31431413425234343434
+籌 31431412151211251124
+籍 31431411123412212511
+籎 31431435311345452134
+籏 31431441533112211134
+籐 314314351143113424134
+籑 314314251111344511534
+籒 314314121122155125121
+籓 314314441343123425121
+籔 314314251125125313134
+籕 31431412343545325121
+籖 314314121211121111534
+籗 3143141452444432411121
+籘 3143143511431134554234
+籙 3143143411243151124134
+籚 3143142153152512125221
+籛 3143143411243115341534
+籜 3143141212522112143112
+籝 3143144152513511531354
+籞 31431433231121215211234
+籟 3143141251234352511134
+籠 31431441431251121515111
+籡 3143141213412512513434
+籢 31431434125125134343134
+籣 31431425112511125431234
+籤 31431434341211121111534
+籥 31431434125125125125122
+籦 31431434112431312511211
+籧 3143142153151353334454
+籨 31431434125125134343534
+籩 314314325111445344153454
+籪 314314554554155455453312
+籫 3143143121353121352511134
+籬 314314413452255432411121
+籭 3143141254125441352211535
+籮 3143142522155444432411121
+籯 31431441525135112511134354
+籰 31431425111251113241112154
+籱 314314145244443241112132411121
+籲 31431434125125125125122132511134
+米 431234
+籴 34431234
+籵 43123412
+籶 43123435
+籷 431234315
+籸 431234512
+籹 431234531
+籺 431234315
+类 431234134
+籼 431234252
+籽 431234521
+籾 431234534
+籿 431234124
+粀 431234134
+粁 431234312
+粂 354431234
+粃 4312341535
+粄 4312343354
+粅 4312343533
+粆 4312342343
+粇 4312344135
+粈 4312345211
+粉 4312343453
+粊 1535431234
+粋 4312343512
+粌 4312345152
+粍 4312343115
+粎 4312345134
+粏 4312341344
+粐 4312344513
+粑 4312345215
+粒 43123441431
+粓 43123412211
+粔 4312341515
+粕 43123432511
+粖 43123411234
+粗 43123425111
+粘 43123421251
+粙 43123425121
+粚 43123431525
+粛 51124313432
+粜 52252431234
+粝 43123413153
+粞 431234125351
+粟 125221431234
+粠 431234122134
+粡 431234251251
+粢 413534431234
+粣 43123435351
+粤 325431234115
+粥 515431234515
+粦 431234354152
+粧 431234413121
+粨 431234132511
+粩 431234121335
+粪 431234122134
+粫 431234132522
+粬 431234251221
+粭 431234341251
+粮 4312344511534
+粯 4312342511135
+粰 4312343443521
+粱 4415344431234
+粲 2135454431234
+粳 4312341251134
+粴 4312342511211
+粵 3253431234115
+粶 43123451124134
+粷 43123435431234
+粸 43123412211134
+粹 43123441343412
+粺 43123432511312
+粻 43123412111534
+粼 43123435415255
+粽 43123444511234
+精 43123411212511
+粿 43123425111234
+糀 4312341223235
+糁 43123454134333
+糂 431234122111345
+糃 431234251113533
+糄 431234451325122
+糅 431234545231234
+糆 431234132522111
+糇 431234325131134
+糈 431234521342511
+糉 431234345234354
+糊 431234122513511
+糋 431234431251122
+糌 431234354242511
+糍 431234431554554
+糎 431234132511211
+糏 4312345132432511
+糐 4312341251124124
+糑 4312345154151541
+糒 4312341221325112
+糓 1214514312343554
+糔 431234544251214
+糕 4312344311214444
+糖 4312344135112251
+糗 4312343251111344
+糘 4312344451353334
+糙 4312343121251454
+糚 4312341225213121
+糛 43123424345251121
+糜 41312341234431234
+糝 43123454545434333
+糞 43123425121122134
+糟 43123412512212511
+糠 43123441351124134
+糡 43123441431251135
+糢 4312341222511134
+糣 431234153515352511
+糤 431234122125113134
+糥 431234132522132522
+糦 431234121251431251
+糧 431234251112511211
+糨 431234515251251214
+糩 4312343412524312511
+糪 5132514143112431234
+糫 4312342522112513534
+糬 4312342522112132511
+糭 4312343444445234354
+糮 43123412512531425221
+糯 43123414524444132522
+糰 43123425125112141241
+糱 5233251514143112431234
+糲 43123413122251125214
+糳 22431431123215113554431234
+糴 3443123454154132411121
+糵 1223251514143112431234
+糶 5225243123454154132411121
+糷 43123412225112511125431234
+糸 554234
+糹 554444
+糺 5544445
+系 3554234
+糼 55444453
+糽 55444412
+糾 55444452
+糿 55444453
+紀 554444515
+紁 554444544
+紂 554444124
+紃 554444322
+約 554444354
+紅 554444121
+紆 554444112
+紇 554444315
+紈 554444354
+紉 554444534
+紊 4134554234
+紋 5544444134
+紌 5544441354
+納 5544442534
+紎 5544441344
+紏 5544444412
+紐 5544445211
+紑 5544441324
+紒 5544443432
+紓 5544445452
+純 5544441525
+紕 5544441535
+紖 5544445152
+紗 5544442343
+紘 5544441354
+紙 5544443515
+級 554444354
+紛 5544443453
+紜 5544441154
+紝 5544443121
+紞 5544444535
+紟 5544443445
+素 1121554234
+紡 5544444153
+索 1245554234
+紣 5544443512
+紤 5544443312
+紥 1215554234
+紦 5544445215
+紧 2254554234
+紨 55444432124
+紩 55444431134
+紪 554444212135
+紫 212135554234
+紬 55444425121
+紭 55444451554
+紮 12345554234
+累 25121554234
+細 55444425121
+紱 55444413544
+紲 55444412215
+紳 55444425112
+紴 55444453254
+紵 55444444512
+紶 55444412154
+紷 55444434454
+紸 55444441121
+紹 55444453251
+紺 55444412211
+紻 55444425134
+紼 55444451532
+紽 55444444535
+紾 55444434333
+紿 55444454251
+絀 55444452252
+絁 55444431525
+終 55444435444
+絃 55444441554
+組 55444425111
+絅 55444425251
+絆 55444443112
+絇 55444435251
+絈 55444432511
+絉 55444412344
+絊 55444412341
+絋 55444441354
+経 55444454121
+絍 554444323121
+絎 554444332112
+絏 554444251153
+結 554444121251
+絑 554444311234
+絒 554444434242
+絓 554444121121
+絔 554444132511
+絕 554444535215
+絖 554444243135
+絗 554444252511
+絘 554444413534
+絙 554444125111
+絚 554444125441
+絛 322354554234
+絜 111253554234
+絝 554444134115
+絞 554444413434
+絟 554444341121
+絠 554444132511
+絡 554444354251
+絢 554444352511
+絣 554444431132
+絤 554444125351
+絥 554444321344
+給 554444341251
+絧 554444251251
+絨 554444113534
+絩 554444341534
+絪 554444251341
+絫 545454554234
+絬 554444312251
+絭 431134554234
+絮 531251554234
+絯 554444415334
+絰 554444154121
+統 554444415435
+絲 554444554234
+絳 554444354152
+絴 554444431112
+絵 554444341154
+絶 554444355215
+絷 121354554234
+絸 5544442511135
+絹 5544442512511
+絺 5544443413252
+絻 5544443525135
+絼 5544443443533
+絽 554444251251
+絾 554444135534
+絿 5544441241344
+綀 5544441251234
+綁 554444111352
+綂 5544444125135
+綃 5544442432511
+綄 5544444452235
+綅 5544445114554
+綆 5544441251134
+綇 5544441253511
+綈 5544444351523
+綉 5544443123453
+綊 5544441343434
+綋 5544444451354
+綌 5544443434251
+綍 5544441245521
+綎 554444312154
+綏 5544443443531
+綐 5544444325135
+綑 5544442512341
+綒 5544443443521
+經 5544441555121
+綔 1341153554234
+綕 5544441214544
+綖 554444321554
+綗 5544442534251
+綘 5544443541112
+継 5544444312345
+続 5544441214535
+綛 5544445344544
+綜 55444444511234
+綝 55444412341234
+綞 55444431212211
+綟 55444445131344
+綠 55444455124134
+綡 55444441251234
+綢 55444435121251
+綣 55444443113455
+綤 5325152554234
+綥 55444425121132
+綦 12211134554234
+綧 55444441251521
+綨 55444412211134
+綩 55444444535455
+綪 55444411212511
+綫 55444415341534
+綬 55444434434554
+維 55444432411121
+綮 45133134554234
+綯 55444435311252
+綰 55444444525151
+綱 55444425431252
+網 55444425431415
+綳 55444435113511
+綴 55444454545454
+綵 55444434431234
+綶 55444425111234
+綷 55444441343412
+綸 55444434125122
+綹 55444435424251
+綺 55444413412512
+綻 55444444512134
+綼 55444432511312
+綽 55444421251112
+綾 55444412134354
+綿 55444432511252
+緀 55444415112531
+緁 55444415112134
+緂 55444443344334
+緃 55444434342134
+緄 55444425111535
+緅 55444412211154
+緆 55444425113533
+緇 55444455525121
+緈 55444412143112
+緉 55444412523434
+緊 12512554554234
+緋 55444421112111
+緌 55444431234531
+緍 55444435152511
+緎 55444412511534
+総 55444434544544
+緐 31554143554234
+緑 55444451124134
+緒 55444412132511
+緓 55444412225134
+緔 55444424325251
+緕 55444441343211
+緖 554444121325114
+緗 554444123425111
+緘 554444131251534
+緙 554444122125112
+線 554444325112534
+緛 554444132522134
+緜 325112523554234
+緝 554444251122111
+緞 554444321113554
+緟 554444312511211
+締 554444414345252
+緡 554444515152511
+緢 55444412225121
+緣 554444551353334
+緤 554444122151234
+緥 554444322511234
+緦 554444251214544
+緧 554444431253511
+編 554444451325122
+緩 554444344311354
+緪 554444442125441
+緫 554444353344544
+緬 554444132522111
+緭 554444251212511
+緮 554444312511354
+緯 554444521251152
+緰 554444341251122
+緱 554444325131134
+緲 554444251112343
+緳 413111253554234
+練 554444125431234
+緵 554444345234354
+緶 554444321251134
+緷 554444451251112
+緸 554444125221121
+緹 554444251112134
+緺 55444425525251
+緻 5544441541213134
+緼 554444251125221
+緽 554444212511134
+緾 554444132511211
+緿 554444542514544
+縀 554444512115154
+縁 554444511353334
+縂 554444432514544
+縃 554444521342511
+縄 554444251125115
+縅 554444131531534
+縆 554444442125111
+縇 554444445125111
+縈 4334433445554234
+縉 5544441224312511
+縊 5544444313425221
+縋 554444325151454
+縌 554444431523454
+縍 5544444143454153
+縎 554444255452511
+縏 3354143554554234
+縐 5544443552335523
+縑 5544444315112234
+縒 554444431113121
+縓 5544441332511234
+縔 5544445454541234
+縕 5544442534125221
+縖 5544444451112251
+縗 5544444125113534
+縘 5544443443554134
+縙 554444122122111
+縚 5544443443321511
+縛 5544441251124124
+縜 5544442512511134
+縝 5544441225111134
+縞 5544444125125251
+縟 5544441311534124
+縠 1214515542343554
+縡 5544444454143112
+縢 3511431134554234
+縣 2511112343554234
+縤 5544441121554234
+縥 5544441113431234
+縦 5544443324312134
+縧 5544443223541234
+縨 5544442511243135
+縩 55444435445411234
+縪 5544442511122112
+縫 5544443541112454
+縬 55444413211234534
+縭 5544444134522554
+縮 55444444532132511
+縯 55444444512512134
+縰 55444433221212134
+縱 55444433234342134
+縲 55444425121554234
+縳 55444412511214124
+縴 55444441554453112
+縵 55444425112522154
+縶 12143112354554234
+縷 55444425112512534
+縸 5544441222511134
+縹 55444412522111234
+縺 5544441251112454
+縻 41312341234554234
+縼 55444441533152134
+總 55444432535414544
+績 55444411212511134
+縿 55444454545434333
+繀 55444425232411121
+繁 31554143134554234
+繂 55444441554413412
+繃 55444425235113511
+繄 13113453554554234
+繅 55444455525111234
+繆 55444454154134333
+繇 34433112523554234
+繈 55444451554251214
+繉 55444425111341534
+繊 55444412122431534
+繋 12511123554554234
+繌 55444432534134354
+繍 55444451124313432
+繎 554444354413444444
+繏 554444515515122134
+繐 554444125112144544
+繑 554444313425125251
+繒 554444432524312511
+繓 554444251112211154
+織 554444414312511534
+繕 554444431112431251
+繖 554444122125113134
+繗 554444431234354152
+繘 554444545232534251
+繙 554444343123425121
+繚 554444134432511234
+繛 112155423421251112
+繜 554444431253511124
+繝 554444251125113511
+繞 554444121121121135
+繟 554444251251251112
+繠 454445444544554234
+繡 5544445112321155212
+繢 554444251212511134
+繣 554444511211251211
+繤 12225111134554234
+繥 554444121251431251
+繦 554444515251251214
+繧 554444145244441154
+繨 554444121431112454
+繩 5544442511251211511
+繪 5544443412524312511
+繫 1251112523554554234
+繬 5544441234341252511
+繭 122252554444251214
+繮 5544441251211251211
+繯 5544442522112513534
+繰 5544442512512511234
+繱 554444122353344544
+繲 5544443535112533112
+繳 5544443251141533134
+繴 5132514143112554234
+繵 5544444125251125111
+繶 5544444143125114544
+繷 5544442512211311534
+繸 554444431353334454
+繹 5544442522112143112
+繺 5544443551131344444
+繻 55444414524444132522
+繼 55444455455415545545
+繽 55444444512332511134
+繾 5544442512125151454
+繿 55444412512531425221
+纀 55444432224314311134
+纁 55444431254312114444
+纂 31431425111134554234
+纃 55444441432533543211
+纄 5544441223541112454
+纅 554444325115545541234
+纆 554444254312114444121
+纇 431234554234132511134
+纈 554444121251132511134
+纉 554444113411342511134
+纊 55444441312212512134
+纋 554444132511454544354
+續 554444121252212511134
+纍 251212512125121554234
+纎 554444121211121111534
+纏 554444413251121134121
+纐 554444413434132511134
+纑 5544442153152512125221
+纒 5544441325112114444121
+纓 55444425111342511134531
+纔 55444435251153535251354
+纕 55444441251251112213534
+纖 55444434341211121111534
+纗 554444252324111212534251
+纘 5544443121353121352511134
+纙 5544442522155444432411121
+纚 5544441254125441352211535
+纛 112155212511112343554234
+纜 554444125125314252212511135
+纝 554444251212512125121554234
+纞 55444441112515544445544444544
+纟 551
+纠 55152
+纡 551112
+红 551121
+纣 551124
+纤 551312
+纥 551315
+约 551354
+级 551354
+纨 551354
+纩 551413
+纪 551515
+纫 551534
+纬 5511152
+纭 5511154
+纮 5511354
+纯 5511525
+纰 5511535
+纱 5512343
+纲 5512534
+纳 5512534
+纴 5513121
+纵 5513434
+纶 5513435
+纷 5513453
+纸 5513515
+纹 5514134
+纺 5514153
+纻 5514451
+纼 5515152
+纽 5515211
+纾 5515452
+线 55111534
+绀 55112211
+绁 55112215
+绂 55113544
+练 55115534
+组 55125111
+绅 55125112
+细 55125121
+织 55125134
+终 55135444
+绉 55135511
+绊 55143112
+绋 55151532
+绌 55152252
+绍 55153251
+绎 55154112
+经 55154121
+绐 55154251
+绑 551111352
+绒 551113534
+结 551121251
+绔 551134115
+绕 551153135
+绖 551154121
+绗 551332112
+绘 551341154
+给 551341251
+绚 551352511
+绛 551354152
+络 551354251
+绝 551355215
+绞 551413434
+统 551415435
+绠 5511251134
+绡 5512432511
+绢 5512512511
+绣 5513123453
+绤 5513434251
+绥 5513443531
+绦 5513541234
+继 5514312345
+绨 5514351523
+绩 55111212534
+绪 55112132511
+绫 55112134354
+绬 55112225134
+续 55112544134
+绮 55113412512
+绯 55121112111
+绰 55121251112
+绱 55124325251
+绲 55125111535
+绳 55125125115
+维 55132411121
+绵 55132511252
+绶 55134434554
+绷 55135113511
+绸 55135121251
+绹 55135311252
+绺 55135424251
+绻 55143113455
+综 55144511234
+绽 55144512134
+绾 55144525151
+绿 55151124134
+缀 55154545454
+缁 55155525121
+缂 551122125112
+缃 551123425111
+缄 551131251534
+缅 551132522111
+缆 551223142535
+缇 551251112134
+缈 551251112343
+缉 551251122111
+缊 551251125221
+缋 551251212534
+缌 551251214544
+缍 55131212211
+缎 551321113554
+缏 551321251134
+缐 551325112534
+缑 551325131134
+缒 551325151454
+缓 551344311354
+缔 551414345252
+缕 551431234531
+编 551451325122
+缗 551515152511
+缘 551551353334
+缙 5511224312511
+缚 5511251124124
+缛 5511311534124
+缜 5511225111134
+缝 5513541112454
+缞 5514125113534
+缟 5514125125251
+缠 5514132511211
+缡 5514134522554
+缢 5514313425221
+缣 5514315112234
+缤 5514453212134
+缥 55112522111234
+缦 55125112522154
+缧 55125121554234
+缨 55125342534531
+缩 55144532132511
+缪 55154154134333
+缫 55155525111234
+缬 551121251132534
+缭 551134432511234
+缮 551431112431251
+缯 551432524312511
+缰 5511251211251211
+缱 5512512125151454
+缲 5512512512511234
+缳 5512522112513534
+缴 5513251141533134
+缵 5513121353121352534
+缶 311252
+缷 31125252
+缸 311252121
+缹 3112524444
+缺 3112525134
+缻 5112521554
+缼 3112523534
+缽 31125212341
+缾 311252431132
+缿 311252331251
+罀 311252341534
+罁 31125225431252
+罂 25342534311252
+罃 4334433445311252
+罄 12152133554311252
+罅 31125221531534312
+罆 31125255212511134
+罇 311252431253411124
+罈 311252125221251112
+罉 311252243452513112
+罊 1251112523554311252
+罋 4155332411121311252
+罌 25111342511134311252
+罍 251212512125121311252
+罎 3112522511145244441154
+罏 3112522153152512125221
+罐 31125212225125132411121
+网 253434
+罒 25221
+罓 2534
+罔 25431415
+罕 4534112
+罖 25221344
+罗 25221354
+罘 252211324
+罙 45341234
+罚 252214522
+罛 2522133544
+罜 2522141121
+罝 2522125111
+罞 2522154523
+罟 2522112251
+罠 2522151515
+罡 2522112121
+罢 2522112154
+罣 25221121121
+罤 252214351523
+罥 252212512511
+罦 252213443521
+罧 2522112341234
+罨 2522113425115
+罩 2522121251112
+罪 2522121112111
+罫 2522112112124
+罬 2522154545454
+罭 2522112511534
+置 2522112251111
+罯 25221414312511
+罰 25221411125122
+罱 25221122543112
+署 2522112132511
+罳 25221251214544
+罴 25221121544444
+罵 252211211254444
+罶 252213545325121
+罷 252215425113535
+罸 252214111251124
+罹 2522144232411121
+罺 2522155525111234
+罻 2522151311234124
+罼 252212511122112
+罽 25221134334433422
+罾 25221432524312511
+罿 25221414312511211
+羀 253434122155125121
+羁 25221122125112551
+羂 252215544442512511
+羃 252211222511134252
+羄 2522155444421251112
+羅 2522155444432411121
+羆 2522154251135354444
+羇 2522112212511213412512
+羈 252211221251121211254444
+羉 252214111251554444554234
+羊 431112
+羋 12121112
+羌 4311135
+羍 134431112
+美 431121134
+羏 431113333
+羐 2121121354
+羑 431121354
+羒 4311133453
+羓 4311135215
+羔 4311214444
+羕 43112145534
+羖 4311133554
+羗 431113554
+羘 3511431112
+羙 4311214334
+羚 43111334454
+羛 43112151532
+羜 43111344512
+羝 43111335154
+羞 4311135211
+羟 43111354121
+羠 431113151534
+羡 431121413534
+羢 431113113534
+羣 5113251431112
+群 5113251431112
+羥 4311131555121
+羦 4311134451135
+羧 4311135434354
+羨 4311214413534
+義 4311213121534
+羪 4311134511534
+羫 43111344534121
+羬 431113131251534
+羭 431113341251122
+羮 431121444411134
+羯 431113251135345
+羰 431113252134334
+羱 4311131332511234
+羲 4311213123415534
+羳 431113343123425121
+羴 431112431113431112
+羵 431113121222511134
+羶 4311134125251125111
+羷 4311133412512513434
+羸 4152513511431112354
+羹 4311214444431121134
+羺 43111314524444132522
+羻 431113413522154544354
+羼 513431112431113431112
+羽 541541
+羾 541541121
+羿 541541132
+翀 5415412512
+翁 3454541541
+翂 5415413453
+翃 1354541541
+翄 5415411254
+翅 1254541541
+翆 5415413512
+翇 54154113544
+翈 25112541541
+翉 12341541541
+翊 41431541541
+翋 54154141431
+翌 54154141431
+翍 54154153254
+翎 34454541541
+翏 54154134333
+翐 54154131134
+翑 54154135251
+習 54154132511
+翓 121251541541
+翔 431113541541
+翕 341251541541
+翖 341251541541
+翗 354355541541
+翘 153135541541
+翙 252354541541
+翚 541541451512
+翛 322354541541
+翜 5415411343434
+翝 4451354541541
+翞 54154141251234
+翟 54154132411121
+翠 54154141343412
+翡 21112111541541
+翢 35121251541541
+翣 54154141431531
+翤 25125122541541
+翥 12132511541541
+翦 431251122541541
+翧 445125111541541
+翨 541541251112134
+翩 451325122541541
+翪 541541345234354
+翫 541541325111135
+翬 541541451251112
+翭 541541325131134
+翮 1251254312541541
+翯 5415414125125251
+翰 1225111234541541
+翱 3251113412541541
+翲 12522111234541541
+翳 13113453554541541
+翴 5415411251112454
+翵 54154132511154444
+翶 32511413412541541
+翷 431234354152541541
+翸 121222511134541541
+翹 121121121135541541
+翺 325111413412541541
+翻 343123425121541541
+翼 54154125121122134
+翽 2121131233534541541
+翾 2522112513534541541
+翿 12151211251124541541
+耀 24313554154132411121
+老 121335
+耂 1213
+考 121315
+耄 1213353115
+者 12132511
+耆 1213352511
+耇 121335251
+耈 12133535251
+耉 121335251
+耊 1213154121
+耋 121335154121
+而 132522
+耍 132522513
+耎 132522134
+耏 132522333
+耐 132522124
+耑 252132522
+耒 111234
+耓 11123412
+耔 111234521
+耕 1112341132
+耖 1112342343
+耗 1112343115
+耘 1112341154
+耙 1112345215
+耚 11123453254
+耛 11123454251
+耜 11123425151
+耝 11123425111
+耞 11123453251
+耟 1112341515
+耠 111234341251
+耡 1112342511153
+耢 1112341224553
+耣 11123434125122
+耤 11123412212511
+耥 11123424325251
+耦 111234251125214
+耧 111234431234531
+耨 1112341311534124
+耩 1112341122125211
+耪 1112344143454153
+耫 11123411212511134
+耬 11123425112512531
+耭 111234554554134534
+耮 111234433443344553
+耯 1112341223241112154
+耰 111234132511454544354
+耱 1112344131234123413251
+耲 1112344125221241343534
+耳 122111
+耴 1221115
+耵 12211112
+耶 12211152
+耷 134122111
+耸 3434122111
+耹 1221113445
+耺 1221111154
+耻 1221112121
+耼 1221112511
+耽 1221114535
+耾 1221111354
+耿 1221114334
+聀 1221111535
+聁 1221113453
+聂 1221115454
+聃 12211125211
+聄 12211134333
+聅 12211131134
+聆 12211134454
+聇 12211112121
+聈 12211155453
+聉 12211152252
+聊 12211135352
+聋 13534122111
+职 12211125134
+聍 12211144512
+聎 122111341534
+聏 122111132522
+聐 122111121251
+聑 122111122111
+聒 122111312251
+聓 121354122111
+联 122111431134
+聕 1221113121251
+聖 1221112511121
+聗 1221111343434
+聘 1221112512115
+聙 12211111212511
+聚 12211154323334
+聛 12211132511312
+聜 12211144534121
+聝 12211112511534
+聞 25112511122111
+聟 31134251122111
+聠 122111431132
+聡 12211134544544
+聢 12211144512134
+聣 12211132151135
+聤 122111412514512
+聥 122111325125214
+聦 122111353344544
+聧 122111543341134
+聨 122111554554132
+聩 122111251212534
+聪 122111432514544
+聫 122111554554134
+聬 1221113454541541
+聭 122111325113554
+聮 1221115545544444
+聯 12211155455453221
+聰 12211132535414544
+聱 1121533134122111
+聲 12152133554122111
+聳 33234342134122111
+聴 12211112252214544
+聵 122111251212511134
+聶 122111122111122111
+職 122111414312511534
+聸 1221113513344111251
+聹 12211144545442522112
+聺 12211144535445411234
+聻 44112511123312122111
+聼 5122111122522114544
+聽 1221111121122522114544
+聾 41431251121515111122111
+聿 511112
+肀 5112
+肁 4513511112
+肂 1354511112
+肃 51123234
+肄 3531134511112
+肅 5112321155212
+肆 1211154511112
+肇 45133134511112
+肈 45131534511112
+肉 253434
+肊 35115
+肋 351153
+肌 351135
+肍 351135
+肎 452511
+肏 34253434
+肐 3511315
+肑 3511354
+肒 3511354
+肓 4152511
+肔 3511525
+肕 3511534
+肖 2432511
+肗 3511531
+肘 3511124
+肙 2512511
+肚 3511121
+肛 3511121
+肜 3511333
+肝 3511112
+肞 3511434
+肟 3511115
+肠 3511533
+股 35113554
+肢 35111254
+肣 35113445
+肤 35111134
+肥 35115215
+肦 35413453
+肧 35111324
+肨 35111112
+肩 45132511
+肪 35114153
+肫 35111525
+肬 35111354
+肭 35112534
+肮 35114135
+肯 21212511
+肰 35111344
+肱 35111354
+育 41542511
+肳 35113533
+肴 34132511
+肵 35113312
+肶 35111535
+肷 35113534
+肸 35113412
+肹 35113415
+肺 35111252
+肻 21452511
+肼 35111132
+肽 35111344
+肾 22542511
+肿 35112512
+胀 35113154
+胁 35115344
+胂 351125112
+胃 251212511
+胄 251212511
+胅 351131134
+胆 351125111
+胇 351151532
+胈 351113544
+胉 351132511
+胊 354135251
+胋 351121251
+背 211352511
+胍 351133544
+胎 351154251
+胏 35113523
+胐 354152252
+胑 351125134
+胒 351151335
+胓 351114312
+胔 212135253434
+胕 351132124
+胖 351143112
+胗 351134333
+胘 351141554
+胙 351131211
+胚 351113241
+胛 351125112
+胜 351131121
+胝 351135154
+胞 351135515
+胟 351155414
+胠 351112154
+胡 122513511
+胢 351112512
+胣 351131525
+胤 355425115
+胥 521342511
+胦 351125134
+胧 351113534
+胨 351115234
+胩 351121124
+胪 351121513
+胫 351154121
+胬 53154253434
+胭 3511251341
+胮 3511354152
+胯 3511134115
+胰 3511151534
+胱 3511243135
+胲 3511415334
+胳 3511354251
+胴 3511251251
+胵 3511154121
+胶 3511413434
+胷 3534522511
+胸 3511353452
+胹 3511132522
+胺 3511445531
+胻 3511332112
+胼 3511431132
+能 5425113535
+胾 121253434534
+胿 3511121121
+脀 5253412511
+脁 3541341534
+脂 3511352511
+脃 3511355215
+脄 3511134334
+脅 5353532511
+脆 3511351355
+脇 3511535353
+脈 3511333534
+脉 351145534
+脊 4134342511
+脋 5353532511
+脌 3511311212
+脍 3511341154
+脎 3511341234
+脏 3511413121
+脐 3511413432
+脑 3511413452
+脒 3511431234
+脓 3511453534
+脔 412234253434
+脕 35113525135
+脖 35111245521
+脗 35113533251
+脘 35114451135
+脙 35111241344
+脚 35111215452
+脛 35111555121
+脜 35111325111
+脝 35114125152
+脞 35113434121
+脟 35113443124
+脠 3511321554
+脡 3511312154
+脢 35113155414
+脣 13115342511
+脤 35111311534
+脥 35111343434
+脦 35111454454
+脧 35415434354
+脨 35111251234
+脩 3223542511
+脪 35113413252
+脫 35113425135
+脬 35113443521
+脭 35112511121
+脮 35113443531
+脯 35111251124
+脰 35111251431
+脱 35114325135
+脲 35115132534
+脳 35114433452
+脴 35111324251
+脵 35112511134
+脶 35112512534
+脷 35113123422
+脸 35113414431
+脹 351112111534
+脺 351141343412
+脻 351115112134
+脼 351112523434
+脽 351132411121
+脾 351132511312
+脿 351111213534
+腀 351134125122
+腁 351131133112
+腂 351125111234
+腃 351143113455
+腄 351131212211
+腅 351143344334
+腆 351125122134
+腇 351131234531
+腈 351111212511
+腉 351132151135
+腊 351112212511
+腋 351141323544
+腌 351113425115
+腍 351134454544
+腎 125125542511
+腏 351154545454
+腐 41332124253434
+腑 351141332124
+腒 351151312251
+腓 351121112111
+腔 351144534121
+腕 351144535455
+腖 351112511234
+腗 351125121132
+腘 351125112141
+腙 351144511234
+腚 351144512134
+腛 3511513154121
+腜 3511122111234
+腝 3511132522134
+腞 3511551353334
+腟 3511445154121
+腠 3511111341134
+腡 351125525251
+腢 3511251125214
+腣 3511414345252
+腤 3511414312511
+腥 3511251131121
+腦 3511555325341
+腧 3511341251122
+腨 3511252132522
+腩 3511122543112
+腪 3511451251112
+腫 3511312511211
+腬 3511545231234
+腭 3511251251115
+腮 3511251214544
+腯 3511331225111
+腰 3511125221531
+腱 351151111254
+腲 3511251211534
+腳 3511343425152
+腴 351132151134
+腵 3511512115154
+腶 3511321113554
+腷 3511125125121
+腸 3511251113533
+腹 3511312511354
+腺 3511325112534
+腻 3511111253454
+腼 3511132522111
+腽 3511251125221
+腾 3511431134551
+腿 3511511534454
+膀 35114143454153
+膁 35114315112234
+膂 41533135342511
+膃 35112534125221
+膄 3511321511254
+膅 35114135112251
+膆 35111121554234
+膇 3511325151454
+膈 35111251254312
+膉 35114313425221
+膊 35111251124124
+膋 43344334452511
+膌 35114134342511
+膍 35113253411535
+膎 35113443554134
+膏 41251452512511
+膐 4153313534253434
+膑 35114453212134
+膒 351112512512515
+膓 351131251113533
+膔 351141352211535
+膕 351125125115341
+膖 35113541112454
+膗 351125232411121
+膘 351112522111234
+膙 3511515251251214
+膚 215315251212511
+膛 351124345251121
+膜 35111222511134
+膝 351112343424134
+膞 351112511214124
+膟 351141554413412
+膠 351154154134333
+膡 351143113425111
+膢 351125112512534
+膣 351144534154121
+膤 351114524444511
+膥 11234135534253434
+膦 3511431234354152
+膧 3541414312511211
+膨 3511121251431333
+膩 3511111251113454
+膪 3511414345252251
+膫 3511134432511234
+膬 3511311531153115
+膭 3511251212511134
+膮 3511121121121135
+膯 3511543341251431
+膰 3511343123425121
+膱 3511414312511534
+膲 3511324111214444
+膳 3511431112431251
+膴 3511311222214444
+膵 351112241343412
+膶 3511251125111121
+膷 351155345115452
+膸 3511131212511454
+膹 3511121222511134
+膺 41332324111212511
+膻 35114125251125111
+膼 351125525251454
+膽 35113513344111251
+膾 35113412524312511
+膿 35112512211311534
+臀 51312213435542511
+臁 35114134315112234
+臂 51325141431122511
+臃 35114155332411121
+臄 35112153151353334
+臅 35112522135251214
+臆 35114143125114544
+臇 3511324111212525
+臈 3511122251135345
+臉 35113412512513434
+臊 35112512512511234
+臋 5131221343554253434
+臌 35111212514311254
+臍 351141432533543211
+臎 351154154141343412
+臏 351144512332511134
+臐 351131254312114444
+臑 351114524444132522
+臒 35111223241112154
+臓 351112213125125534
+臔 3511125125542511134
+臕 3511413522115354444
+臖 32112512515111342511
+臗 351144512225111354
+臘 3511555253415445445
+臙 35111221251211354444
+臚 35112153152512125221
+臛 35111452444432411121
+臜 35113121353121352534
+臝 415251351125111234354
+臞 3511251112511132411121
+臟 351112213513125125534
+臠 4111251554444554444253434
+臡 1221251113432411121253434
+臢 35113121353121352511134
+臣 125125
+臤 12512554
+臥 12512534
+臦 1215221125125
+臧 13513125125534
+臨 12512531251251251
+臩 121522112512513432
+自 325111
+臫 3251115
+臬 3251111234
+臭 3251111344
+臮 325111323434
+臯 325111413412
+臰 325111135435
+臱 325111445344153
+臲 3251111234351355
+至 154121
+致 1541213134
+臵 154121354251
+臶 154121132521
+臷 121154121534
+臸 154121154121
+臹 154121135534
+臺 12125145154121
+臻 1541211113431234
+臼 321511
+臽 35321511
+臾 32151134
+臿 312321511
+舀 3443321511
+舁 321511132
+舂 11134321511
+舃 321511154444
+舄 321511354444
+舅 3215112512153
+舆 32111512511134
+與 3211152511134
+興 3211251251511134
+舉 3211152511134112
+舊 12232411121321511
+舋 32112512515114525111
+舌 312251
+舍 34112251
+舎 34121251
+舏 31225152
+舐 3122513515
+舑 31225125211
+舒 341122515452
+舓 31225125113533
+舔 31225111342444
+舕 31225143344334
+舖 341122511251124
+舗 341212511251124
+舘 3411225144525151
+舙 312251312251312251
+舚 3122513513344111251
+舛 354152
+舜 344345354152
+舝 5215554554152
+舞 31122221354152
+舟 335414
+舠 33541453
+舡 335414121
+舢 335414251
+舣 335414434
+舤 335414354
+舥 3354145215
+舦 3354141344
+舧 3354143354
+舨 3354143354
+舩 3354143454
+航 3354144135
+舫 3354144153
+般 3354143554
+舭 3354141535
+舮 3354144513
+舯 3354142512
+舰 3354142535
+舱 3354143455
+舲 33541434454
+舳 33541425121
+舴 33541431211
+舵 33541444535
+舶 33541432511
+舷 33541441554
+舸 33541412512
+船 33541435251
+舺 33541425112
+舻 33541421513
+舼 335414122134
+舽 335414354152
+舾 335414125351
+舿 335414134115
+艀 3354143443521
+艁 3354143121251
+艂 3354143541112
+艃 3354142511211
+艄 3354142432511
+艅 3354143411234
+艆 3354144511534
+艇 335414312154
+艈 3354144154325
+艉 3354145133115
+艊 33541432511252
+艋 33541452125221
+艌 33541434454544
+艍 33541451312251
+艎 335414325111121
+艏 335414431325111
+艐 335414345234354
+艑 335414451325122
+艒 335414251125111
+艓 335414122151234
+艔 335414413122154
+艕 3354144143454153
+艖 335414431113121
+艗 3354144313425221
+艘 335414321511254
+艙 3354143445113251
+艚 33541412512212511
+艛 33541425112512531
+艜 33541413221545252
+艝 33541414524444511
+艞 335414314314341534
+艟 335414414312511211
+艠 335414543341251431
+艡 3354142434525125121
+艢 3354141234341252511
+艣 3354142153152512153
+艤 3354144311213121534
+艥 335414251122111534
+艦 33541412512531425221
+艧 3354141223241112154
+艨 3354141224511353334
+艩 33541441432533543211
+艪 335414352512144442511
+艫 3354142153152512125221
+艬 33541435251153535251354
+艭 335414324111213241112154
+艮 511534
+良 4511534
+艰 54511534
+艱 12212511134511534
+色 355215
+艳 1112355215
+艴 51532355215
+艵 431132355215
+艶 2512211251431355215
+艷 111221112521251431355215
+艸 523522
+艹 122
+艺 1225
+艻 12253
+艼 12212
+艽 12235
+艾 12234
+艿 12253
+芀 12253
+芁 12235
+节 12252
+芃 122354
+芄 122354
+芅 122154
+芆 122544
+芇 122252
+芈 2121112
+芉 122112
+芊 122312
+芋 122112
+芌 122115
+芍 122354
+芎 122515
+芏 122121
+芐 122124
+芑 122515
+芒 122415
+芓 122521
+芔 522523522
+芕 122354
+芖 122134
+芗 122553
+芘 1221535
+芙 1221134
+芚 1221525
+芛 1225113
+芜 1221135
+芝 122454
+芞 1223115
+芟 1223554
+芠 1224134
+芡 1223534
+芢 1223211
+芣 1221324
+芤 1225215
+芥 1223432
+芦 1224513
+芧 1225452
+芨 122354
+芩 1223445
+芪 1223515
+芫 1221135
+芬 1223453
+芭 1225215
+芮 1222534
+芯 1224544
+芰 1221254
+花 1223235
+芲 1223435
+芳 1224153
+芴 1223533
+芵 1225134
+芶 1223554
+芷 1222121
+芸 1221154
+芹 1223312
+芺 1223134
+芻 3552335523
+芼 1223115
+芽 1221523
+芾 1221252
+芿 1223253
+苀 1224135
+苁 1223434
+苂 1224334
+苃 1221354
+苄 1224124
+苅 1223422
+苆 1221553
+苇 1221152
+苈 1221353
+苉 1221355
+苊 1221355
+苋 1222535
+苌 1223154
+苍 1223455
+苎 1224451
+苏 1225344
+苐 12251523
+苑 12235455
+苒 12225211
+苓 12234454
+苔 12254251
+苕 12253251
+苖 12225121
+苗 12225121
+苘 12225251
+苙 12241431
+苚 12235112
+苛 12212512
+苜 12225111
+苝 12221135
+苞 12235515
+苟 12235251
+苠 12251515
+苡 1225434
+苢 12225151
+苣 1221515
+苤 12213241
+若 12213251
+苦 12212251
+苧 12244512
+苨 12251335
+苩 12232511
+苪 12212534
+苫 12221251
+苬 12225341
+苭 12255453
+苮 12232252
+苯 12212341
+苰 12251554
+英 12225134
+苲 12231211
+苳 12235444
+苴 12225111
+苵 12231134
+苶 12234234
+苷 12212211
+苸 12234312
+苹 12214312
+苺 12255414
+苻 12232124
+苼 12231121
+苽 12233544
+苾 12245434
+苿 12211234
+茀 12251532
+茁 12252252
+茂 12213534
+范 12244155
+茄 12253251
+茅 12254523
+茆 12235352
+茇 12213544
+茈 122212135
+茉 12211234
+茊 12232121
+茋 12235154
+茌 12232121
+茍 212135251
+茎 12254121
+茏 12213534
+茐 12235334
+茑 12235451
+茒 12235452
+茓 12244534
+茔 12245121
+茕 12245512
+茖 122354251
+茗 122354251
+茘 122535353
+茙 122113534
+茚 12235152
+茛 122511534
+茜 122125351
+茝 1221225125
+茞 122125125
+茟 122511112
+茠 122321234
+茡 122445521
+茢 122135422
+茣 1222511134
+茤 122354354
+茥 122121121
+茦 122125234
+茧 122251214
+茨 122413534
+茩 122331251
+茪 122243135
+茫 122441415
+茬 122132121
+茭 122413434
+茮 122211234
+茯 122321344
+茰 122251134
+茱 122311234
+茲 122554554
+茳 122441121
+茴 122252511
+茵 122251341
+茶 122341234
+茷 122321534
+茸 122122111
+茹 122531251
+茺 122415435
+茻 523522523522
+茼 122251251
+茽 122322512
+茾 1221132
+茿 122121354
+荀 122352511
+荁 122125111
+荂 122134115
+荃 122341121
+荄 122415334
+荅 122341251
+荆 122113222
+荇 122332112
+荈 122354152
+草 122251112
+荊 122113222
+荋 122132522
+荌 122445531
+荍 122523134
+荎 122154121
+荏 122323121
+荐 122132521
+荑 122151534
+荒 122415325
+荓 122431132
+荔 122535353
+荕 122351153
+荖 122121335
+荗 122134534
+荘 122412121
+荙 122134454
+荚 122143134
+荛 122153135
+荜 122153512
+荝 122253422
+荞 122313432
+荟 122341154
+荠 122413432
+荡 122441533
+荢 122445112
+荣 122451234
+荤 122451512
+荥 122452534
+荦 122453112
+荧 122454334
+荨 122511124
+荩 122513444
+荪 122521234
+荫 122523511
+荬 122544134
+荭 122551121
+荮 122551124
+药 122551354
+荰 1221234121
+荱 1225133115
+荲 1222511211
+荳 1221251431
+荴 1221211134
+荵 1225344544
+荶 1222513445
+荷 1223212512
+荸 1221245521
+荹 1222121233
+荺 1221213541
+荻 1223534334
+荼 1223411234
+荽 1223443531
+荾 1225434354
+荿 122135534
+莀 1221311534
+莁 1221234341
+莂 1222515322
+莃 1223413252
+莄 1221251134
+莅 1223241431
+莆 1221251124
+莇 1222511153
+莈 1224413554
+莉 1223123422
+莊 1225213121
+莋 1223231211
+莌 1224325135
+莍 1221241344
+莎 1224412343
+莏 1221212343
+莐 1224414535
+莑 1223541112
+莒 122251251
+莓 1223155414
+莔 1222534251
+莕 1221234251
+莖 1221555121
+莗 1221251112
+莘 1224143112
+莙 1225113251
+莚 122321554
+莛 122312154
+莜 1223223134
+莝 1223434121
+莞 1224451135
+莟 1223445251
+莠 1223123453
+莡 1222512134
+莢 1221343434
+莣 1224154544
+莤 1221253511
+莥 1223535211
+莦 1222432511
+莧 1222511135
+莨 1224511534
+莩 1223443521
+莪 1223121534
+莫 1222511134
+莬 1223525135
+莭 1225115452
+莮 1222512153
+莯 1224411234
+莰 1221213534
+莱 1221431234
+莲 1221512454
+莳 1222511124
+莴 1222512534
+莵 1223251354
+莶 1223414431
+获 1223531344
+莸 1223531354
+莹 1224511214
+莺 1224535451
+莻 1225325135
+莼 1225511525
+莽 1221344132
+莾 12213412132
+莿 12212523422
+菀 12244535455
+菁 12211212511
+菂 12232511354
+菃 1224411515
+菄 12212511234
+菅 12244525151
+菆 12212211154
+菇 12253112251
+菈 12212141431
+菉 12251124134
+菊 12235431234
+菋 12225111234
+菌 12225312341
+菍 12234454544
+菎 12225111535
+菏 12244112512
+菐 224314311134
+菑 12255525121
+菒 12225111234
+菓 12225111234
+菔 12235115254
+菕 12235125122
+菖 12225112511
+菗 12212125121
+菘 12212343454
+菙 12231212211
+菚 12215341534
+菛 12225112511
+菜 12234431234
+菝 12212113544
+菞 12231234353
+菟 12235251354
+菠 12244153254
+菡 12252413452
+菢 12212135515
+菣 12212512554
+菤 12243113455
+菥 12212343312
+菦 1223312454
+菧 12241335154
+菨 12241431531
+菩 12241431251
+菪 12244513251
+菫 12212511121
+菬 12244153251
+菭 12244154251
+菮 12241351134
+華 1221122112
+菰 12252133544
+菱 12212134354
+菲 12221112111
+菳 12234112431
+菴 12213425115
+菵 12225431415
+菶 12211134112
+菷 12251145252
+菸 12241533444
+菹 12244125111
+菺 12245132511
+菻 12212341234
+菼 12243344334
+菽 12221123454
+菾 12211342444
+菿 12215412122
+萀 12221531535
+萁 12212211134
+萂 12231234251
+萃 12241343412
+萄 12235311252
+萅 12215252511
+萆 12232511312
+萇 12212111534
+萈 12225111354
+萉 12235115215
+萊 12213434234
+萋 12215112531
+萌 12225113511
+萍 12244114312
+萎 12231234531
+萏 12235312511
+萐 12215112134
+萑 12232411121
+萒 12241345435
+萓 12244525111
+萔 12212153251
+萕 12241343211
+萖 12232151135
+萗 12244511234
+萘 12213411234
+萙 12212344535
+萚 12212154112
+萛 12225111132
+萜 12225221251
+萝 12225221354
+萞 12225341535
+萟 12231234354
+萠 12235113511
+萡 12244132511
+萢 12244135515
+萣 12244512134
+萤 12245251214
+营 12245251251
+萦 12245554234
+萧 12251123234
+萨 12252414313
+萩 122312344334
+萪 122312344412
+萫 122312342511
+萬 122251125214
+萭 122325125214
+萮 122341251122
+萯 122352511134
+萰 122125431234
+萱 122445125111
+萲 122344311354
+萳 122122543112
+萴 122251113422
+萵 12225525251
+萶 122111342511
+萷 122243251122
+萸 12232151134
+萹 122451325122
+萺 122251125111
+萻 122414312511
+萼 122251251115
+落 122441354251
+萾 122535425221
+萿 122441312251
+葀 122121312251
+葁 122431121531
+葂 122352513553
+葃 122251131211
+葄 122351131211
+葅 122343425111
+葆 122322511234
+葇 122545231234
+葈 122542511234
+葉 122122151234
+葊 122341251132
+葋 122351135251
+葌 122531531531
+葍 122125125121
+葎 122332511112
+葏 122441511112
+葐 122345325221
+葑 122121121124
+葒 122554444121
+葓 122441122134
+葔 122325131134
+葕 122332441112
+葖 122445341344
+著 12212132511
+葘 122555125121
+葙 122123425111
+葚 122122111345
+葛 122251135345
+葜 122111253134
+葝 122155512153
+葞 122515122111
+葟 122325111121
+葠 122325114554
+葡 122351251124
+葢 122134425221
+董 122312511211
+葤 122554444124
+葥 122431251122
+葦 122521251152
+葧 122124552153
+葨 122251211534
+葩 122325115215
+葪 122353511222
+葫 122122513511
+葬 122135435132
+葭 122512115154
+葮 122321113554
+葯 122554444354
+葰 122325434354
+葱 122353344544
+葲 122325112534
+葳 122131531534
+葴 122131251534
+葵 122543341134
+葶 122412514512
+葷 122451251112
+葸 122251214544
+葹 122415331525
+葺 122251122111
+葻 122353251214
+葼 122345234354
+葽 122125221531
+葾 122354554544
+葿 122521325111
+蒀 122251125221
+蒁 12212344454
+蒂 122414345252
+蒃 122551353334
+蒄 122451135124
+蒅 122441351234
+蒆 122121354531
+蒇 122132534534
+蒈 122153532511
+蒉 122251212534
+蒊 122323525135
+蒋 122412354124
+蒌 122431234531
+蒍 122435554444
+蒎 122441333534
+蒏 122451253511
+蒐 122325113554
+蒑 1223351153554
+蒒 1223251511252
+蒓 1225544441525
+蒔 1222511121124
+蒕 1222534125221
+蒖 1221225111134
+蒗 1224414511534
+蒘 1225312513112
+蒙 1224511353334
+蒚 1221251254312
+蒛 1223112525134
+蒜 1221123411234
+蒝 1221332511234
+蒞 1224413241431
+蒟 1224143135251
+蒠 1223251114544
+蒡 1224143454153
+蒢 122523411234
+蒣 1223323411234
+蒤 1224413411234
+蒥 1223545325121
+蒦 1223241112154
+蒧 1221321251534
+蒨 1223211212511
+蒩 1223123425111
+蒪 1221251124124
+蒫 122431113121
+蒬 1224535251354
+蒭 1223552335523
+蒮 1224532511121
+蒯 1223511351122
+蒰 1223354143554
+蒱 1221211251124
+蒲 1224411251124
+蒳 1225544442534
+蒴 1224315233511
+蒵 1223443554134
+蒶 1225544443453
+蒷 1222512511134
+蒸 1225253414444
+蒹 1224315112234
+蒺 1224134131134
+蒻 1225154151541
+蒼 1223445113251
+蒽 1222513414544
+蒾 122431234454
+蒿 1224125125251
+蓀 1225213554234
+蓁 1221113431234
+蓂 1224525114134
+蓃 122321511254
+蓄 1224155425121
+蓅 1224414154325
+蓆 1224131221252
+蓇 122255452511
+蓈 12245115452
+蓉 1224453434251
+蓊 1223454541541
+蓋 1221215425221
+蓌 1223434121354
+蓍 1221213352511
+蓎 1224135112251
+蓏 1223354433544
+蓐 1221311543124
+蓑 1224125113534
+蓒 1221251112112
+蓓 1223241431251
+蓔 1224311214444
+蓕 1221234121121
+蓖 1223253411535
+蓗 1223321212134
+蓘 1224134543534
+蓙 1224133434121
+蓚 122322354333
+蓛 1221252343134
+蓜 1221253511515
+蓝 1222231425221
+蓞 1223443321511
+蓟 1223525121122
+蓠 1224134522554
+蓡 1224415114554
+蓢 1224511543511
+蓣 1225452132534
+蓤 1224112134354
+蓥 1224534112431
+蓦 1222511134551
+蓧 1223223541234
+蓨 1223223542511
+蓩 1225452335453
+蓪 1225425112454
+蓫 1221353334454
+蓬 1223541112454
+蓭 12241313425115
+蓮 1221251112454
+蓯 12233234342134
+蓰 12233221212134
+蓱 122441431132
+蓲 12212512512515
+蓳 12212212511121
+蓴 12212511214124
+蓵 12212115112134
+蓶 12225132411121
+蓷 12212132411121
+蓸 12212512212511
+蓹 122332311212152
+蓺 12212134121354
+蓻 12212143112354
+蓼 12254154134333
+蓽 1222511122112
+蓾 12221253444441
+蓿 12244532132511
+蔀 1224143125152
+蔁 12241431251112
+蔂 12225121554234
+蔃 122515251251214
+蔄 12225112511251
+蔅 12225112511531
+蔆 12244112134354
+蔇 122511541535
+蔈 12212522111234
+蔉 12241342513534
+蔊 12243342511112
+蔋 12244121123454
+蔌 12212512343534
+蔍 12241352211535
+蔎 12241112513554
+蔏 12241432534251
+蔐 12241432512251
+蔑 12225221134534
+蔒 12251132514444
+蔓 12225112522154
+蔔 12235125125121
+蔕 12213221545252
+蔖 12221531525111
+蔗 12241312214444
+蔘 12254545434333
+蔙 12241533152134
+蔚 12251311234124
+蔛 12235351124412
+蔜 1221121533134
+蔝 12225111431234
+蔞 12225112512531
+蔟 12241533131134
+蔠 12255444435444
+蔡 12235445411234
+蔢 12244153254531
+蔣 12252133544124
+蔤 12244545434252
+蔥 12232535414544
+蔦 12232511154444
+蔧 12211121112511
+蔨 12225431134551
+蔩 12244512512134
+蔪 12212511123312
+蔫 12212121154444
+蔬 122521214154325
+蔭 1225234451154
+蔮 12225125115341
+蔯 1225212511234
+蔰 12245132515215
+蔱 1223412343554
+蔲 12244511353134
+蔳 12244111212511
+蔴 12241312341234
+蔵 12213125125534
+蔶 12211212511134
+蔷 12212431252511
+蔸 12232511355135
+蔹 12234144313134
+蔺 12242532411121
+蔻 12244511352154
+蔼 12245251135345
+蔽 12243252343134
+蔾 122312343531234
+蔿 122344335554444
+蕀 122125234125234
+蕁 122511121251124
+蕂 122351143113453
+蕃 122343123425121
+蕄 122251125114544
+蕅 122441251125214
+蕆 122132511134534
+蕇 122251251251112
+蕈 122125221251112
+蕉 122324111214444
+蕊 122454445444544
+蕋 122212121212121
+蕌 122251125112511
+蕍 122441341251122
+蕎 122313425125251
+蕏 12235312132511
+蕐 122134343434112
+蕑 122251125113511
+蕒 122252212511134
+蕓 122145244441154
+蕔 122121431125254
+蕕 122353431253511
+蕖 12244115151234
+蕗 1222512121354251
+蕘 122121121121135
+蕙 122125112144544
+蕚 122251251251115
+蕛 122312344351523
+蕜 122211121114544
+蕝 122554444355215
+蕞 122251112211154
+蕟 122543345153554
+蕠 122531251554234
+蕡 122121222511134
+蕢 122251212511134
+蕣 122344345354152
+蕤 122135333431121
+蕥 122152332411121
+蕦 122333132511134
+蕧 122332312511354
+蕨 122134315233534
+蕩 122441251113533
+蕪 122311222214444
+蕫 122414312511211
+蕬 122554444554234
+蕭 1225112321155212
+蕮 122321511354444
+蕯 12252354131121
+蕰 122441251125221
+蕱 122312342432511
+蕲 122432511123312
+蕳 122251125112511
+蕴 122551251125221
+蕵 122354344511534
+蕶 1221452444434454
+蕷 1225452132511134
+蕸 122512115154454
+蕹 1224155332411121
+蕺 122251122111534
+蕻 1221211154122134
+蕼 1221211154511112
+蕽 1222512211311534
+蕾 1221452444425121
+蕿 1224334344311354
+薀 1224412534125221
+薁 122325431234134
+薂 1223251141533134
+薃 1224414125125251
+薄 1224411251124124
+薅 1225311311534124
+薆 1223443454544354
+薇 1223322521353134
+薈 1223412524312511
+薉 1222121131233534
+薊 1223525121444422
+薋 1224135342511134
+薌 12255345115452
+薍 1223443542554545
+薎 1222522145321534
+薏 1224143125114544
+薐 1223123412134354
+薑 1221251211251211
+薒 1222135454431234
+薓 1224415114525254
+薔 1221234341252511
+薕 1224134315112234
+薖 12225525251454
+薗 1222512125135341
+薘 122121431112454
+薙 1223113432411121
+薚 1221354251113533
+薛 1223251514143112
+薜 1225132514143112
+薝 1223513344111251
+薞 1221354344511534
+薟 1223412512513434
+薠 1224334132511134
+薡 122251115132125
+薢 1223535112533112
+薣 1221212514311254
+薤 1221354211121111
+薥 1222522135251214
+薦 1224135221154444
+薧 1224125145135435
+薨 1222522145135435
+薩 1225241431331121
+薪 1224143112343312
+薫 1223125112114444
+薬 1223251141341234
+薭 1223123432511312
+薮 1224312345313134
+薯 1222522112132511
+薰 12231254312114444
+薱 12222431431121124
+薲 12244512332511134
+薳 1221212513234454
+薴 12244545442522112
+薵 12212151211251124
+薶 12234435332511211
+薷 12214524444132522
+薸 12244112522111234
+薹 12212125145154121
+薺 122414325335413211
+薻 12244155525111234
+薼 12241352211535121
+薽 1221252211211554
+薾 12213425234343434
+薿 12235311345452134
+藀 12243344334454334
+藁 12241251252511234
+藂 12212211154323334
+藃 12241251252513534
+藄 12212211134554234
+藅 12225221411125122
+藆 12244511221343112
+藇 1223211152511134
+藈 12225111543341134
+藉 12211123412212511
+藊 12231234451325122
+藋 12254154132411121
+藌 12244545434251214
+藍 12212512531425221
+藎 12251121444425221
+藏 12213513125125534
+藐 12234435333251135
+藑 12235253425111354
+藒 12231234251135345
+藓 12235251211431112
+藔 122445134432511234
+藕 122111234251125214
+藖 122125125542511134
+藗 12212512343534454
+藘 122215315251214544
+藙 122414313533343554
+藚 122121252212511134
+藛 122445321511354444
+藜 122312343533424134
+藝 122121341213541154
+藞 122132511325113251
+藟 122251212512125121
+藠 122325113251132511
+藡 12241432512251454
+藢 122332252111213134
+藣 122252215425113535
+藤 122351143113424134
+藥 122325115545541234
+藦 122413123412343112
+藧 122554444344311354
+藨 122413522115354444
+藩 122441343123425121
+藪 122251125125313134
+藫 122441125221251112
+藬 12252251212511134
+藭 122445343251113515
+藮 1221234324111214444
+藯 122513112341244544
+藰 122354533411243122
+藱 12241341325113554
+藲 122123412512512515
+藳 122412512525131234
+藴 122554444251125221
+藵 122322511234413534
+藶 1221331234312342121
+藷 122411125112132511
+藸 122135333412132511
+藹 1224111251251135345
+藺 1222511251132411121
+藻 1224412512512511234
+藼 1224451112252214544
+藽 1224143112342511135
+藾 1221251234352511134
+藿 1221452444432411121
+蘀 1221212522112143112
+蘁 1221225125112512511
+蘂 1224544454445441234
+蘃 1222121212121211234
+蘄 1222512512511123312
+蘅 1223323525121134112
+蘆 1222153152512125221
+蘇 1223525121444431234
+蘈 1223123435132511134
+蘉 1222522145325114554
+蘊 1225544442534125221
+蘋 1222121233132511134
+蘌 12233231121215211234
+蘍 1223125431211444453
+蘎 1221452444435115215
+蘏 1223511234132511134
+蘐 1224111251344311354
+蘑 1224131234123413251
+蘒 1223123435251125115
+蘓 1223123435251214444
+蘔 1223531234132511134
+蘕 1225544443541112454
+蘖 12232515141431121234
+蘗 12251325141431121234
+蘘 12241251251112213534
+蘙 12213113453554541541
+蘚 12235251214444431112
+蘛 12212211134541542511
+蘜 12212212511235431234
+蘝 12234125125134343534
+蘞 12234125125134343134
+蘟 1225234431215114544
+蘠 12252131234341252511
+蘡 12225111342511134531
+蘢 12241431251121515111
+蘣 1221221251213441121
+蘤 12232511344335554444
+蘥 12234125125125125122
+蘦 12214524444251251251
+蘧 1222153151353334454
+蘨 12234433112523554234
+蘩 12231554143134554234
+蘪 12241352211535431234
+蘫 12244112512531425221
+蘬 122325151212151145252
+蘭 12225112511125431234
+蘮 12225221134334433422
+蘯 12244125111353325221
+蘰 12255444425112522154
+蘱 1224312341344132511134
+蘲 122251212512125121121
+蘳 12212212512134121121
+蘴 122111221112521251431
+蘵 122122111414312511534
+蘶 12231234531325113554
+蘷 122132511212151534354
+蘸 1221253511324111214444
+蘹 1224424125221241343534
+蘺 122413452255432411121
+蘻 1221251112523554554234
+蘼 1224131234123421112111
+蘽 1222512125121251211234
+蘾 1221214125221241343534
+蘿 1222522155444432411121
+虀 1224143253354211121111
+虁 122431325111212151534354
+虂 122145244442512121354251
+虃 12244134341211121111534
+虄 12225121435441431331121
+虅 12235114311341211254444
+虆 122251212512125121554234
+虇 12251512225125132411121
+虈 122132511134251251251251
+虉 122125125431232511154444
+虊 12241112515544445544441234
+虋 12232112512515114512535113453
+虌 12243252343134251125511151
+虍 215315
+虎 21531535
+虏 21531553
+虐 215315151
+虑 2153154544
+虒 3321531535
+虓 3521531535
+虔 2153154134
+處 21531535435
+虖 21531534312
+虗 21531532121
+虘 21531525111
+虙 21531545434
+虚 21531522431
+虛 215315225211
+虜 2153152512153
+虝 215315353533
+虞 2153152511134
+號 2511521531535
+虠 41343421531535
+虡 2153152243134
+虢 344312421531535
+虣 1121215421531535
+虤 2153153521531535
+虥 2153153515341534
+虦 1534153421531535
+虧 21531532411121115
+虨 21531512341234333
+虩 243251123421531535
+虪 21531535322354254312114444
+虫 251214
+虬 2512145
+虭 25121453
+虮 25121435
+虯 25121452
+虰 25121412
+虱 53251214
+虲 25121424
+虳 251214354
+虴 251214315
+虵 251214525
+虶 251214112
+虷 251214112
+虸 251214521
+虹 251214121
+虺 135251214
+虻 251214415
+虼 251214315
+虽 251251214
+虾 251214124
+虿 153251214
+蚀 355251214
+蚁 251214434
+蚂 251214551
+蚃 553251214
+蚄 2512144153
+蚅 2512141355
+蚆 2512145215
+蚇 2512145134
+蚈 2512141132
+蚉 4134251214
+蚊 2512144134
+蚋 2512142534
+蚌 2512141112
+蚍 2512141535
+蚎 2512142511
+蚏 2512143511
+蚐 2512143541
+蚑 2512141254
+蚒 2512143541
+蚓 2512145152
+蚔 2512143515
+蚕 1134251214
+蚖 2512141135
+蚗 2512145134
+蚘 2512141354
+蚙 2512143445
+蚚 2512143312
+蚛 2512142512
+蚜 2512141523
+蚝 2512143115
+蚞 2512141234
+蚟 2512141121
+蚠 3453251214
+蚡 2512143453
+蚢 2512144135
+蚣 2512143454
+蚤 544251214
+蚥 2512143434
+蚦 2512142511
+蚧 2512143432
+蚨 2512141134
+蚩 5221251214
+蚪 2512144412
+蚫 25121435515
+蚬 2512142535
+蚭 25121451335
+蚮 25121432154
+蚯 25121432121
+蚰 25121425121
+蚱 25121431211
+蚲 25121414312
+蚳 25121435154
+蚴 25121455453
+蚵 25121412512
+蚶 25121412211
+蚷 2512141515
+蚸 25121433124
+蚹 25121432124
+蚺 25121425211
+蚻 12345251214
+蚼 25121435251
+蚽 25121413241
+蚾 25121453254
+蚿 25121441554
+蛀 25121441121
+蛁 25121453251
+蛂 25121413544
+蛃 25121412534
+蛄 25121412251
+蛅 25121421251
+蛆 25121425111
+蛇 25121444535
+蛈 25121431134
+蛉 25121434454
+蛊 25121425221
+蛋 52134251214
+蛌 25121433544
+蛍 44345251214
+蛎 25121413153
+蛏 25121454121
+蛐 251214251221
+蛑 251214543112
+蛒 251214354251
+蛓 121251214534
+蛔 251214252511
+蛕 251214132511
+蛖 2512141353334
+蛗 325151251214
+蛘 251214431112
+蛙 251214121121
+蛚 251214135422
+蛛 251214311234
+蛜 251214325113
+蛝 251214511534
+蛞 251214312251
+蛟 251214413434
+蛠 251214535353
+蛡 251214541541
+蛢 251214431132
+蛣 251214121251
+蛤 251214341251
+蛥 251214354354
+蛦 251214151534
+蛧 251214253434
+蛨 251214132511
+蛩 121354251214
+蛪 111253251214
+蛫 251214351355
+蛬 122134251214
+蛭 251214154121
+蛮 412234251214
+蛯 251214121335
+蛰 121354251214
+蛱 251214143134
+蛲 251214153135
+蛳 251214231252
+蛴 251214413432
+蛵 2512141555121
+蛶 2512143443124
+蛷 2512141241344
+蛸 2512142432511
+蛹 2512145425112
+蛺 2512141343434
+蛻 2512143425135
+蛼 2512141251112
+蛽 2512142511134
+蛾 2512143121534
+蛿 2512143445251
+蜀 2522135251214
+蜁 2512143152134
+蜂 2512143541112
+蜃 1311534251214
+蜄 2512141311534
+蜅 2512141251124
+蜆 2512142511135
+蜇 1213312251214
+蜈 2512142511134
+蜉 2512143443521
+蜊 2512143123422
+蜋 2512144511534
+蜌 2512141535121
+蜍 2512143411234
+蜎 2512142512511
+蜏 2512143123453
+蜐 2512141215453
+蜑 321554251214
+蜒 251214321554
+蜓 251214312154
+蜔 2512143525121
+蜕 2512144325135
+蜖 2512142522111
+蜗 2512142512534
+蜘 25121431134251
+蜙 25121412343454
+蜚 21112111251214
+蜛 25121451312251
+蜜 44545434251214
+蜝 12211134251214
+蜞 25121412211134
+蜟 25121441542511
+蜠 25121425312341
+蜡 25121412212511
+蜢 25121452125221
+蜣 2512144311135
+蜤 12343312251214
+蜥 25121412343312
+蜦 25121434125122
+蜧 25121445131344
+蜨 25121415112134
+蜩 25121435121251
+蜪 25121435311252
+蜫 25121425111535
+蜬 25121452413452
+蜭 25121435321511
+蜮 25121412511534
+蜯 25121411134112
+蜰 35115215251214
+蜱 25121432511312
+蜲 25121431234531
+蜳 25121441251521
+蜴 25121425113533
+蜵 251214321155212
+蜶 25121441343412
+蜷 25121443113455
+蜸 12512554251214
+蜹 2512141222534
+蜺 25121432151135
+蜻 25121411212511
+蜼 25121432411121
+蜽 25121412523434
+蜾 25121425111234
+蜿 25121444535455
+蝀 25121412511234
+蝁 12155121251214
+蝂 25121432153354
+蝃 25121454545454
+蝄 25121425431415
+蝅 11341134251214
+蝆 2512142121112
+蝇 25121425125115
+蝈 25121425112141
+蝉 25121443251112
+蝊 25121444512134
+蝋 25121444335112
+蝌 251214312344412
+蝍 2512145115452
+蝎 251214251135345
+蝏 251214412514512
+蝐 251214251125111
+蝑 251214521342511
+蝒 251214132522111
+蝓 251214341251122
+蝔 251214153532511
+蝕 34451154251214
+蝖 251214445125111
+蝗 251214325111121
+蝘 251214125115315
+蝙 251214451325122
+蝚 251214545231234
+蝛 251214131531534
+蝜 251214352511134
+蝝 251214551353334
+蝞 251214521325111
+蝟 251214251212511
+蝠 251214125125121
+蝡 251214132522134
+蝢 251214132511134
+蝣 251214415331521
+蝤 251214431253511
+蝥 545233134251214
+蝦 251214512115154
+蝧 25121412225134
+蝨 512251214251214
+蝩 251214312511211
+蝪 251214251113533
+蝫 25121412132511
+蝬 251214345234354
+蝭 251214251112134
+蝮 251214312511354
+蝯 251214344311354
+蝰 251214134121121
+蝱 415251214251214
+蝲 251214125123422
+蝳 251214112155414
+蝴 251214122513511
+蝵 312344334251214
+蝶 251214122151234
+蝷 251214413431523
+蝸 25121425525251
+蝹 251214251125221
+蝺 251214325125214
+蝻 251214122543112
+蝼 251214431234531
+蝽 251214111342511
+蝾 251214122451234
+蝿 251214251125115
+螀 412354124251214
+螁 251214511534454
+螂 25121445115452
+螃 2512144143454153
+螄 2512143251511252
+螅 2512143251114544
+螆 251214431554554
+螇 2512143443554134
+螈 2512141332511234
+螉 2512143454541541
+螊 2512144315112234
+螋 251214321511254
+螌 3354143554251214
+融 1251254312251214
+螎 2512141251254312
+螏 2512144134131134
+螐 2512143251154444
+螑 2512143251111344
+螒 1225111234251214
+螓 2512141113431234
+螔 2512143321531535
+螕 2512143253411535
+螖 251214255452511
+螗 2512144135112251
+螘 2512142521251431
+螙 1234251214251214
+螚 5425113535251214
+螛 2512144451112251
+螜 1214513554251214
+螝 251214325113554
+螞 2512141211254444
+螟 2512144525114134
+螠 2512144313425221
+螡 4134251214251214
+螢 4334433445251214
+螣 3511431134251214
+螤 4134251214251134
+螥 2512143445113251
+螦 2512141121554234
+螧 2512141213352511
+螨 2512141221253434
+螩 2512143223541234
+螪 25121441432534251
+螫 12132343134251214
+螬 25121412512212511
+螭 2512144134522554
+螮 25121413221545252
+螯 1121533134251214
+螰 25121441352211535
+螱 51311234124251214
+螲 25121444534154121
+螳 25121424345251121
+螴 5212511234251214
+螵 25121412522111234
+螶 1515251214251214
+螷 41332511312251214
+螸 34342513534251214
+螹 25121412511123312
+螺 25121425121554234
+螻 25121425112512531
+螼 25121412212511121
+螽 35444251214251214
+螾 25121444512512134
+螿 52133544124251214
+蟀 25121441554413412
+蟁 51515251214251214
+蟂 25121432511151234
+蟃 25121425112522154
+蟄 12143112354251214
+蟅 25121441312214444
+蟆 2512141222511134
+蟇 1222511134251214
+蟈 25121425125115341
+蟉 25121454154134333
+蟊 54523251214251214
+蟋 25121434312344544
+蟌 25121432535414544
+蟍 25121431234221234
+蟎 25121412212523434
+蟏 25121412251123234
+蟐 25121424345251252
+蟑 25121441431251112
+蟒 2512141221344132
+蟓 25121435251353334
+蟔 251214254312114444
+蟕 2512142121353535112
+蟖 251214122111343312
+蟗 125124552252251214
+蟘 251214321542511134
+蟙 251214414312511534
+蟚 121251431333251214
+蟛 251214121251431333
+蟜 251214313425125251
+蟝 25121444115151234
+蟞 43252343134251214
+蟟 251214134432511234
+蟠 251214343123425121
+蟡 251214344335554444
+蟢 251214121251431251
+蟣 251214554554134534
+蟤 251214515515122134
+蟥 25121412212512134
+蟦 251214121222511134
+蟧 251214433443344553
+蟨 134315233534251214
+蟩 251214134315233534
+蟪 251214125112144544
+蟫 251214125221251112
+蟬 251214251251251121
+蟭 251214324111214444
+蟮 251214431112431251
+蟯 251214121121121135
+蟰 2512145112321155212
+蟱 251214311222214444
+蟲 251214251214251214
+蟳 251214511121251124
+蟴 122111343312251214
+蟵 251214131251431124
+蟶 2512141221112511121
+蟷 2512142434525125121
+蟸 1353334251214251214
+蟹 3535112533112251214
+蟺 2512144125251125111
+蟻 2512144311213121534
+蟼 122352513134251214
+蟽 251214121431112454
+蟾 2512143513344111251
+蟿 1251112523554251214
+蠀 2512144135342511134
+蠁 55345115452251214
+蠂 251214122122151234
+蠃 4152513511251214354
+蠄 251214344134522554
+蠅 2512142511251211511
+蠆 122251125214251214
+蠇 251214122251125214
+蠈 2511134113534251214
+蠉 2512142522112513534
+蠊 2512144134315112234
+蠋 2512142522135251214
+蠌 2512142522112143112
+蠍 2512142511353453534
+蠎 25121412213412132
+蠏 2512143535112533112
+蠐 25121441432533543211
+蠑 25121443344334451234
+蠒 13425234343434251214
+蠓 2512141224511353334
+蠔 25121441251451353334
+蠕 25121414524444132522
+蠖 2512141223241112154
+蠗 25121454154132411121
+蠘 25121412132411121534
+蠙 25121444512332511134
+蠚 12213251251214251214
+蠛 25121412225221134534
+蠜 123434341234134251214
+蠝 251214251212512125121
+蠞 3143145115452251214
+蠟 251214555253415445445
+蠠 132522111251214251214
+蠡 551353334251214251214
+蠢 111342511251214251214
+蠣 25121413122251125214
+蠤 431253511251214251214
+蠥 5233251514143112251214
+蠦 2512142153152512125221
+蠧 1214513251251214251214
+蠨 2512141225112321155122
+蠩 251214411125112132511
+蠪 41431251115151121251214
+蠫 344353322251214251214
+蠬 25121441431251121515111
+蠭 3541112454251214251214
+蠮 25121413113453554541541
+蠯 41332511312251214251214
+蠰 25121441251251112213534
+蠱 25121425121425121425221
+蠲 43134252212522135251214
+蠳 25121425111342511134531
+蠴 2512141222522112132511
+蠵 251214252324111212534251
+蠶 153515352511251214251214
+蠷 251214251112511132411121
+蠸 25121412225125132411121
+蠹 125124513251251214251214
+蠺 113411342511251214251214
+蠻 4111251554444554444251214
+蠼 25121425111251113241112154
+蠽 234324111211534251214251214
+蠾 251214513241342522135251214
+蠿 554554155455412251214251214
+血 325221
+衁 415325221
+衂 325221534
+衃 3252211324
+衄 3252215211
+衅 32522143112
+衆 325221323334
+衇 325221333534
+衈 325221122111
+衉 325221354251
+衊 32522112225221134534
+衋 511112132511132511325221
+行 332112
+衍 332441112
+衎 332112112
+衏 3321135112
+衐 3321515112
+衑 33234454112
+衒 33241554112
+術 33212344112
+衔 33231115112
+衕 332251251112
+衖 332122134112
+街 332121121112
+衘 3323112121112
+衙 3321251251112
+衚 332122513511112
+衛 332521251152112
+衜 332431325111112
+衝 331312511211112
+衞 3325212511252112
+衟 3325551325111112
+衠 3321225111134112
+衡 3323525121134112
+衢 332251112511132411121112
+衣 413534
+衤 45234
+补 4523424
+衦 45234112
+衧 45234112
+表 11213534
+衩 45234544
+衪 45234525
+衫 45234333
+衬 45234124
+衭 452341134
+衮 4134543534
+衯 452343453
+衰 4125113534
+衱 45234354
+衲 452342534
+衳 452343454
+衴 452344535
+衵 452342511
+衶 452342512
+衷 4125123534
+衸 452343432
+衹 452343515
+衺 4115233534
+衻 452342511
+衼 452341254
+衽 452343121
+衾 3445413534
+衿 452343445
+袀 452343541
+袁 1212513534
+袂 452345134
+袃 1553413534
+袄 452343134
+袅 3545413534
+袆 452341152
+袇 452343541
+袈 53251413534
+袉 4523444535
+袊 4523434454
+袋 32154413534
+袌 41355153534
+袍 4523435515
+袎 4523455453
+袏 4523413121
+袐 4523445434
+袑 4523453251
+袒 4523425111
+袓 4523425111
+袔 4523412512
+袕 4523444534
+袖 4523425121
+袗 4523434333
+袘 4523431525
+袙 4523432511
+袚 4523413544
+袛 4523435154
+袜 4523411234
+袝 4523432124
+袞 41342513534
+袟 4523431134
+袠 41311343534
+袡 4523425211
+袢 4523443112
+袣 4523412215
+袤 41545233534
+袥 4523413251
+袦 4523452252
+袧 4523435251
+袨 4523441554
+袩 4523421251
+袪 4523412154
+被 4523453254
+袬 41542513534
+袭 13534413534
+袮 4523431234
+袯 4523453544
+袰 55414413534
+袱 45234321344
+袲 413543543534
+袳 45234354354
+袴 45234134115
+袵 45234323121
+袶 45234354152
+袷 45234341251
+袸 45234132521
+袹 45234132511
+袺 45234121251
+袻 45234132522
+袼 45234354251
+袽 45234531251
+袾 45234311234
+袿 45234121121
+裀 45234251341
+裁 121413534534
+裂 135422413534
+裃 45234211124
+裄 45234332112
+装 412121413534
+裆 45234243511
+裇 45234325221
+裈 45234451512
+裉 45234511534
+裊 3251115413534
+裋 452341251431
+裌 452341343434
+裍 452342512341
+裎 452342511121
+裏 4125112113534
+裐 452342512511
+裑 452343251113
+裒 413215113534
+裓 452341132534
+裔 4135342534251
+裕 452343434251
+裖 452341311534
+裗 452344154325
+裘 1241344413534
+裙 452345113251
+裚 1213312413534
+裛 4125152153534
+補 452341251124
+裝 5213121413534
+裞 452344325135
+裟 4412343413534
+裠 5113251413534
+裡 452342511211
+裢 452341512454
+裣 452343414431
+裤 452344131512
+裥 452344252511
+裦 41351545233534
+裧 4523443344334
+裨 4523432511312
+裩 4523425111535
+裪 4523435311252
+裫 45234321155212
+裬 4523412134354
+裭 4523421531535
+裮 4523425112511
+裯 4523435121251
+裰 4523454545454
+裱 4523411213534
+裲 4523412523434
+裳 24345251413534
+裴 21112111413534
+裵 41211121113534
+裶 4523421112111
+裷 4523443113455
+裸 4523425111234
+裹 41251112343534
+裺 4523413425115
+裻 21123454413534
+裼 4523425113533
+製 31125222413534
+裾 4523451312251
+裿 4523413412512
+褀 4523412211134
+褁 251112343534
+褂 4523412112124
+褃 4523421212511
+褄 4523415112531
+褅 45234414345252
+褆 45234251112134
+複 45234312511354
+褈 45234312511211
+褉 45234111253134
+褊 45234451325122
+褋 45234122151234
+褌 45234451251112
+褍 45234252132522
+褎 41351312343534
+褏 41351251213534
+褐 45234251135345
+褑 45234344311354
+褒 413225112343534
+褓 45234322511234
+褔 45234125125121
+褕 45234341251122
+褖 45234551353334
+褗 45234125115315
+褘 45234521251152
+褙 45234211352511
+褚 4523412132511
+褛 45234431234531
+褜 351135515413534
+褝 45234443251112
+褞 45234251125221
+褟 452342511541541
+褠 452341122125211
+褡 45234122341251
+褢 413251135543534
+褣 452344453434251
+褤 452341212513534
+褥 452341311534124
+褦 452345425113535
+褧 1221114334413534
+褨 45234431113121
+褩 3354143554413534
+褪 45234511534454
+褫 452343321531535
+褬 452345454541234
+褭 4112112544443534
+褮 4334433445413534
+褯 452344131221252
+褰 4451122134413534
+褱 4125221241343534
+褲 452344131251112
+褳 452341251112454
+褴 452342231425221
+褵 452344134522554
+褶 4523454154132511
+褷 4523433221212134
+褸 4523425112512531
+褹 4523412134121354
+褺 12143112354413534
+褻 41121341213543534
+褼 45234125221134515
+褽 51311234124413534
+褾 4523412522111234
+褿 4523412512212511
+襀 4523411212511134
+襁 45234515251251214
+襂 4523454545434333
+襃 4135125112343534
+襄 41251251112213534
+襅 452342511122112
+襆 45234224314311134
+襇 45234251125112511
+襈 45234515515122134
+襉 45234251125113511
+襊 45234251112211154
+襋 45234125234125234
+襌 45234251251251112
+襍 45234324111211234
+襎 45234343123425121
+襏 45234543345153554
+襐 4523435251353334
+襑 45234511121251124
+襒 4523443252343134
+襓 45234121121121135
+襔 4523412212523434
+襕 45234425125431234
+襖 45234325431234134
+襗 452342522112143112
+襘 452343412524312511
+襙 452342512512511234
+襚 45234431353334454
+襛 452342512211311534
+襜 452343513344111251
+襝 452343412512513434
+襞 5132514143112413534
+襟 452341234123411234
+襠 452342434525125121
+襡 452342522135251214
+襢 452344125251125111
+襣 4523432511125121132
+襤 4523412512531425221
+襥 4523432224314311134
+襦 4523414524444132522
+襧 4523413425234343434
+襨 4523422431431121124
+襩 45234121252212511134
+襪 4523412225221134534
+襫 45234113251113251134
+襬 45234252215425113535
+襭 45234121251132511134
+襮 45234251112213424134
+襯 452344143112342511135
+襰 452341251234352511134
+襱 452344143125111515111
+襲 41431251121515111413534
+襳 4523434341211121111534
+襴 4523425112511125431234
+襵 45234122111122111122111
+襶 4523412125121122134534
+襷 4523432111525111343112
+襸 452343121353121352511134
+襹 452341254125441352211535
+襺 45234122252554444251214
+襻 452341234343412341343112
+襼 45234122121341213541154
+襽 4523412225112511125431234
+襾 125221
+西 125351
+覀 125221
+要 125221531
+覂 1252213454
+覃 125221251112
+覄 125221321344
+覅 1252215313533
+覆 125221332312511354
+覇 1252211221251123511
+覈 1252213251141533134
+覉 12522112212511213412512
+覊 1252211221251121211254444
+見 2511135
+覌 542511135
+覍 2342511135
+覎 2511135521
+規 11342511135
+覐 25111353434
+覑 32152511135
+覒 31152511135
+覓 34432511135
+覔 13242511135
+覕 454342511135
+視 45242511135
+覗 512512511135
+覘 212512511135
+覙 352342511135
+覚 443452511135
+覛 3335342511135
+覜 3415342511135
+覝 11243342511135
+覞 25111352511135
+覟 12145442511135
+覠 51132512511135
+覡 12343412511135
+覢 433443342511135
+覣 312345312511135
+覤 215315352511135
+覥 251221342511135
+覦 3412511222511135
+覧 1251253142511135
+覨 2512511152511135
+覩 121325112511135
+親 4143112342511135
+覫 41434541532511135
+覬 25212514312511135
+覭 45251141342511135
+覮 43344334452511135
+覯 11221252112511135
+覰 215315251112511135
+覱 125111233122511135
+覲 122125111212511135
+観 311324111212511135
+覴 5433412514312511135
+覵 2511251135112511135
+覶 3443542554542511135
+覷 215315224312511135
+覸 2511251125112511135
+覹 25111353322521353134
+覺 32113434511452511135
+覻 21531512514312511135
+覼 134252343434342511135
+覽 125125314252212511135
+覾 4453431234251212511135
+覿 1212522125111342511135
+觀 122251251324111212511135
+见 2535
+观 542535
+觃 2535521
+规 11342535
+觅 34432535
+视 45242535
+觇 212512535
+览 223142535
+觉 443452535
+觊 2525152535
+觋 12343412535
+觌 125441342535
+觍 251221342535
+觎 3412511222535
+觏 11221252112535
+觐 122125111212535
+觑 215315224312535
+角 3535112
+觓 353511252
+觔 353511253
+觕 31213535112
+觖 35351125134
+觗 35351123515
+觘 35351122343
+觙 3535112354
+觚 353511233544
+觛 353511225111
+觜 2121353535112
+觝 353511235154
+觞 353511231533
+觟 3535112121121
+觠 4311343535112
+觡 3535112354251
+觢 1112533535112
+解 3535112533112
+觤 3535112351355
+觥 3535112243135
+触 3535112251214
+觧 3535112431112
+觨 35351121212534
+觩 35351121241344
+觪 35351124143112
+觫 35351121251234
+觬 353511232151135
+觭 353511213412512
+觮 353511251124134
+觯 353511243251112
+觰 353511212132511
+觱 1312515343535112
+觲 35351124311213112
+觳 12145135351123554
+觴 353511231251113533
+觵 353511212212512134
+觶 3535112251251251112
+觷 32113434511453535112
+觸 35351122522135251214
+觹 3535112324111212525
+觺 353113454521343535112
+觻 3535112325115545541234
+觼 353511235253425111354
+觽 3535112252324111212525
+觾 35351121221251211354444
+觿 3535112252324111212534251
+言 4111251
+訁 4111251
+訂 411125112
+訃 411125124
+訄 354111251
+訅 411125135
+訆 411125152
+訇 354111251
+計 411125112
+訉 4111251354
+訊 4111251512
+訋 4111251354
+訌 4111251121
+訍 4111251544
+討 4111251124
+訏 4111251112
+訐 4111251112
+訑 4111251525
+訒 4111251534
+訓 4111251322
+訔 2524111251
+訕 4111251252
+訖 4111251315
+託 4111251315
+記 4111251515
+訙 4111251354
+訚 4254111251
+訛 41112513235
+訜 41112513453
+訝 41112511523
+訞 41112513134
+訟 41112513454
+訠 41112515152
+訡 41112513445
+訢 41112513312
+訣 41112515134
+訤 41112513434
+訥 41112512534
+訦 41112514535
+訧 41112511354
+訨 41112512121
+訩 41112513452
+訪 41112514153
+訫 41112514544
+訬 41112512343
+設 41112513554
+訮 41112511132
+訯 4111251354
+訰 41112511525
+許 41112513112
+訲 41112512512
+訳 41112515134
+訴 411125133124
+訵 411125125351
+訶 411125112512
+訷 411125125112
+訸 411125131234
+訹 411125112344
+診 411125134333
+註 411125141121
+証 411125112121
+訽 411125135251
+訾 2121354111251
+訿 4111251212135
+詀 411125121251
+詁 411125112251
+詂 411125132124
+詃 411125141554
+詄 411125131134
+詅 411125134454
+詆 411125135154
+詇 411125125134
+詈 252214111251
+詉 411125153154
+詊 411125143112
+詋 411125125135
+詌 411125112211
+詍 411125112215
+詎 41112511515
+詏 411125155453
+詐 411125131211
+詑 411125144535
+詒 411125154251
+詓 411125112154
+詔 411125153251
+評 411125114312
+詖 411125153254
+詗 411125125251
+詘 411125152252
+詙 411125113544
+詚 411125125111
+詛 411125125111
+詜 411125152254
+詝 411125144512
+詞 411125151251
+詟 135344111251
+詠 411125145534
+詡 4111251541541
+詢 4111251352511
+詣 4111251352511
+詤 4111251345325
+詥 4111251341251
+試 4111251112154
+詧 3544544111251
+詨 4111251413434
+詩 4111251121124
+詪 4111251511534
+詫 4111251445315
+詬 4111251331251
+詭 4111251351355
+詮 4111251341121
+詯 4111251325111
+詰 4111251121251
+話 4111251312251
+該 4111251415334
+詳 4111251431112
+詴 4111251132511
+詵 4111251312135
+詶 4111251434242
+詷 4111251251251
+詸 4111251431234
+詹 3513344111251
+詺 4111251354251
+詻 4111251354251
+詼 4111251134334
+詽 4111251113112
+詾 4111251353452
+詿 4111251121121
+誀 4111251122111
+誁 4111251431132
+誂 4111251341534
+誃 4111251354354
+誄 4111251111234
+誅 4111251311234
+誆 4111251111215
+誇 4111251134115
+誈 4111251154121
+誉 4431344111251
+誊 4311344111251
+誋 41112515154544
+誌 41112511214544
+認 41112515344544
+誎 41112511251234
+誏 41112514511534
+誐 41112513121534
+誑 41112513531121
+誒 41112515431134
+誓 12133124111251
+誔 4111251312154
+誕 4111251321554
+誖 41112511245521
+誗 41112513123422
+誘 41112513123453
+誙 41112511555121
+誚 41112512432511
+誛 41112515114554
+誜 41112515434354
+誝 41112513445251
+語 41112511251251
+誟 41112511213521
+誠 4111251135534
+誡 41112511132534
+誢 41112512511135
+誣 41112511234341
+誤 41112512511134
+誥 41112513121251
+誦 41112515425112
+誧 41112511251124
+誨 41112513155414
+誩 41112514111251
+說 41112513425135
+誫 41112511311534
+説 41112514325135
+読 41112511214535
+誮 41112511223235
+誯 411125125112511
+誰 411125132411121
+誱 411125115112134
+課 411125125111234
+誳 411125151352252
+誴 411125144511234
+誵 411125134132511
+誶 411125141343412
+誷 411125125431415
+誸 411125151541554
+誹 411125121112111
+誺 411125113434234
+誻 411125125342511
+誼 411125144525111
+誽 411125132151135
+誾 251125114111251
+調 411125135121251
+諀 411125132511312
+諁 411125154545454
+諂 411125135321511
+諃 411125112341234
+諄 411125141251521
+諅 122111344111251
+諆 411125112211134
+談 411125143344334
+諈 411125131212211
+諉 411125131234531
+諊 411125135431234
+請 411125111212511
+諌 411125112511234
+諍 4111251355112
+諎 411125112212511
+諏 411125112211154
+諐 322513254111251
+諑 411125113533434
+諒 411125141251234
+諓 411125115341534
+諔 411125121123454
+諕 411125121531535
+論 411125135125122
+諗 411125134454544
+諘 411125111213534
+諙 411125135152511
+諚 411125144512134
+諛 411125132151134
+諜 4111251122151234
+諝 4111251521342511
+諞 4111251451325122
+諟 4111251251112134
+諠 4111251445125111
+諡 4111251341525221
+諢 4111251451251112
+諣 411125125525251
+諤 4111251251251115
+諥 4111251312511211
+諦 4111251414345252
+諧 4111251153532511
+諨 4111251125125121
+諩 411125143122431
+諪 4111251412514512
+諫 4111251125431234
+諬 3123413544111251
+諭 4111251341251122
+諮 4111251413534251
+諯 4111251252132522
+諰 4111251251214544
+諱 4111251521251152
+諲 4111251125221121
+諳 4111251414312511
+諴 4111251131251534
+諵 4111251122543112
+諶 4111251122111345
+諷 4111251353251214
+諸 411125112132511
+諹 4111251251113533
+諺 4111251414313333
+諻 4111251325111121
+諼 4111251344311354
+諽 4111251122125112
+諾 411125112213251
+諿 4111251251122111
+謀 4111251122111234
+謁 4111251251135345
+謂 4111251251212511
+謃 4111251251131121
+謄 35114311344111251
+謅 41112513552335523
+謆 41112514513541541
+謇 44511221344111251
+謈 25111221344111251
+謉 4111251325113554
+謊 4111251122415325
+謋 41112513541521234
+謌 41112511251212512
+謍 43344334454111251
+謎 4111251431234454
+謏 4111251321511254
+謐 41112514543425221
+謑 41112513443554134
+謒 41112513445113251
+謓 41112511225111134
+謔 4111251215315151
+謕 41112513321531535
+謖 41112512512134354
+謗 41112514143454153
+謘 41112515134143112
+謙 41112514315112234
+謚 41112514313425221
+講 41112511122125211
+謜 41112511332511234
+謝 41112513251113124
+謞 41112514125125251
+謟 41112513443321511
+謠 41112513544311252
+謡 41112513443311252
+謢 41112513241112154
+謣 411125114524444115
+謤 411125112522111234
+謥 411125132535414544
+謦 121521335544111251
+謧 41112514134522554
+謨 41112511222511134
+謩 12225111344111251
+謪 411125141432534251
+謫 411125141432512251
+謬 411125154154134333
+謭 411125143125112253
+謮 411125111212511134
+謯 411125121531525111
+謰 41112511251112454
+謱 411125125112512531
+謲 411125154545434333
+謳 411125112512512515
+謴 411125155212511134
+謵 411125154154132511
+謶 411125141312214444
+謷 11215331344111251
+謸 41112511121533134
+謹 411125112212511121
+謺 121431123544111251
+謻 411125131234354354
+謼 411125121531534312
+謽 5152512512144111251
+謾 411125125112522154
+謿 4111251122511123511
+譀 411125151221113134
+譁 41112511221122112
+譂 4111251251251251112
+譃 411125121531522431
+譄 4111251432524312511
+譅 411125153453421212121
+譆 4111251121251431251
+譇 411125113412132511
+譈 4111251412515213134
+證 4111251543341251431
+譊 4111251121121121135
+譋 4111251251125113511
+譌 4111251344335554444
+譍 41332324111214111251
+譎 4111251545232534251
+譏 4111251554554134534
+譐 4111251431253511124
+譑 4111251313425125251
+譒 4111251343123425121
+譓 4111251125112144544
+譔 4111251515515122134
+譕 4111251311222214444
+譖 4111251153515352511
+譗 4111251314314341251
+識 4111251414312511534
+譙 4111251324111214444
+譚 4111251125221251112
+譛 4111251113411342511
+譜 4111251431224312511
+譝 41112512511251211511
+譞 41112512522112513534
+譟 41112512512512511234
+譠 41112514125251125111
+譡 41112512434525125121
+譢 4111251431353334454
+譣 41112513412512513434
+譤 41112513251141533134
+譥 32511415331344111251
+警 1223525131344111251
+譧 41112514134315112234
+譨 41112512512211311534
+譩 41112514143125114544
+譪 4111251122251135345
+譫 41112513513344111251
+譬 51325141431124111251
+譭 41112513215111213554
+譮 41112513412524312511
+譯 41112512522112143112
+議 41112514311213121534
+譱 43111241112514111251
+譲 41112514134112213534
+譳 411125114524444132522
+譴 41112512512125151454
+譵 411125122431431121124
+譶 411125141112514111251
+護 41112511223241112154
+譸 411125112151211251124
+譹 411125141251451353334
+譺 411125135311345452134
+譻 251113425111344111251
+譼 125125314252214111251
+譽 32111525111344111251
+譾 4111251431251122541541
+譿 4111251111211125114544
+讀 4111251121252212511134
+讁 411125141432512251454
+讂 411125135253425111354
+讃 4111251113411342511134
+讄 4111251251212512125121
+讅 4111251445343123425121
+讆 3325212511521124111251
+讇 41112512511251135321511
+讈 41112511331234312342121
+讉 4111251251212511134454
+變 41112515544445544443134
+讋 414312511215151114111251
+讌 41112511221251211354444
+讍 41112511225125112512511
+讎 32411121411125132411121
+讏 33252125112521124111251
+讐 32411121324111214111251
+讑 411125134125125125125122
+讒 411125135251153535251354
+讓 411125141251251112213534
+讔 41112515234431215114544
+讕 411125125112511125431234
+讖 411125134341211121111534
+讗 4111251252324111212534251
+讘 4111251122111122111122111
+讙 411125112225125132411121
+讚 41112513121353121352511134
+讛 4111251122121341213541154
+讜 411125124345251254312114444
+讝 41112512512511351221113134
+讞 411125121531512512543121344
+讟 41112511212522125111344111251
+讠 45
+计 4512
+订 4512
+讣 4524
+认 4534
+讥 4535
+讦 45112
+讧 45121
+讨 45124
+让 45211
+讪 45252
+讫 45315
+讬 45315
+训 45322
+议 45434
+讯 45512
+记 45515
+讱 45534
+讲 451132
+讳 451152
+讴 451345
+讵 451515
+讶 451523
+讷 452534
+许 453112
+讹 453235
+论 453435
+讻 453452
+讼 453454
+讽 453534
+设 453554
+访 454153
+诀 455134
+证 4512121
+诂 4512251
+诃 4512512
+评 4514312
+诅 4525111
+识 4525134
+诇 4525251
+诈 4531211
+诉 4533124
+诊 4534333
+诋 4535154
+诌 4535511
+词 4551251
+诎 4552252
+诏 4553251
+诐 4553254
+译 4554112
+诒 4554251
+诓 45111215
+诔 45111234
+试 45112154
+诖 45121121
+诗 45121124
+诘 45121251
+诙 45134334
+诚 45135534
+诛 45311234
+诜 45312135
+话 45312251
+诞 45321554
+诟 45331251
+诠 45341121
+诡 45351355
+询 45352511
+诣 45352511
+诤 45355112
+该 45415334
+详 45431112
+诧 45445315
+诨 45451512
+诩 45541541
+诪 451113124
+诫 451132534
+诬 451234341
+语 451251251
+诮 452432511
+误 452511134
+诰 453121251
+诱 453123453
+诲 453155414
+诳 453531121
+说 454325135
+诵 455425112
+诶 455431134
+请 4511212511
+诸 4512132511
+诹 4512211154
+诺 4512213251
+读 4512544134
+诼 4513533434
+诽 4521112111
+课 4525111234
+诿 4531234531
+谀 4531251134
+谁 4532411121
+谂 4534454544
+调 4535121251
+谄 4535321511
+谅 4541251234
+谆 4541251521
+谇 4541343412
+谈 4543344334
+谉 4544525112
+谊 4544525111
+谋 45122111234
+谌 45122111345
+谍 45122151234
+谎 45122415325
+谏 45125431234
+谐 45153532511
+谑 45215315151
+谒 45251135345
+谓 45251212511
+谔 45251251115
+谕 45341251122
+谖 45344311354
+谗 45352513544
+谘 45413534251
+谙 45414312511
+谚 45414313333
+谛 45414345252
+谜 45431234454
+谝 45451325122
+谞 45521342511
+谟 451222511134
+谠 452434525135
+谡 452512134354
+谢 453251113124
+谣 453443311252
+谤 454143454153
+谥 454313425221
+谦 454315112234
+谧 454543425221
+谨 4512212511121
+谩 4525112522154
+谪 4541432512251
+谫 4543125112253
+谬 4554154134333
+谭 45125221251112
+谮 45153515352511
+谯 45324111214444
+谰 45425125431234
+谱 45431224312511
+谲 45545232534251
+谳 451225431121344
+谴 452512125151454
+谵 453513344111251
+谶 4534341211121111534
+谷 3434251
+谸 3133434251
+谹 34342511354
+谺 34342511523
+谻 34342515112
+谼 3434251122134
+谽 34342513445251
+谾 343425144534121
+谿 34435541343434251
+豀 34342513443554134
+豁 44511122513434251
+豂 343425154154134333
+豃 343425151221113134
+豄 3434251121252212511134
+豅 34342514143125111515111
+豆 1251431
+豇 1251431121
+豈 2521251431
+豉 12514311254
+豊 2512211251431
+豋 3544541251431
+豌 125143144535455
+豍 125143132511312
+豎 125125541251431
+豏 12514314315112234
+豐 111221112521251431
+豑 25122112514314351523
+豒 1112211125212514314351523
+豓 111221112521251431134425221
+豔 1112211125212514311215425221
+豕 1353334
+豖 13533434
+豗 1351353334
+豘 13533341525
+豙 41431353334
+豚 35111353334
+豛 13533343554
+豜 13533341132
+豝 13533345215
+豞 135333435251
+豟 135333445135
+豠 135333425111
+象 35251353334
+豢 4311341353334
+豣 1353334113112
+豤 1353334511534
+豥 1353334415334
+豦 2153151353334
+豧 13533341251124
+豨 13533343413252
+豩 13533341353334
+豪 41251451353334
+豫 545235251353334
+豬 135333412132511
+豭 1353334512115154
+豮 1353334121222534
+豯 13533343443554134
+豰 12145113533343554
+豱 1353334251125221
+豲 13533341332511234
+豳 13533342135333452
+豴 135333441432512251
+豵 135333433234342134
+豶 1353334121222511134
+豷 1353334121451251431
+豸 3443533
+豹 3443533354
+豺 3443533123
+豻 3443533112
+豼 34435331535
+豽 34435332534
+豾 344353313241
+豿 344353335251
+貀 344353352252
+貁 344353344534
+貂 344353353251
+貃 344353332511
+貄 3443533511112
+貅 3443533321234
+貆 3443533125111
+貇 3443533511534
+貈 3443533335414
+貉 3443533354251
+貊 3443533132511
+貋 34435332511112
+貌 34435333251135
+貍 34435332511211
+貎 344353332151135
+貏 344353332511312
+貐 3443533341251122
+貑 3443533512115154
+貒 3443533252132522
+貓 344353312225121
+貔 34435333253411535
+貕 34435333443554134
+貖 34435334313425221
+貗 344353325112512531
+貘 34435331222511134
+貙 344353312512512515
+貚 3443533251251251112
+貛 344353312225125132411121
+貜 344353325111251113241112154
+貝 2511134
+貞 212511134
+貟 542511134
+負 352511134
+財 2511134123
+貢 1212511134
+貣 1542511134
+貤 2511134525
+貥 25111344135
+貦 25111341135
+貧 34532511134
+貨 32352511134
+販 25111343354
+貪 34452511134
+貫 55212511134
+責 11212511134
+貭 33122511134
+貮 11251113454
+貯 251113444512
+貰 122152511134
+貱 251113453254
+貲 2121352511134
+貳 111251113454
+貴 251212511134
+貵 541342511134
+貶 25111343454
+買 252212511134
+貸 321542511134
+貹 251113431121
+貺 251113425135
+費 515322511134
+貼 251113421251
+貽 251113454251
+貾 251113435154
+貿 354532511134
+賀 532512511134
+賁 121222511134
+賂 2511134354251
+賃 3231212511134
+賄 2511134132511
+賅 2511134415334
+賆 2511134431132
+資 4135342511134
+賈 1252212511134
+賉 2511134325221
+賊 2511134113534
+賋 2511134413434
+賌 4153342511134
+賍 2511134413121
+賎 2511134111534
+賏 25111342511134
+賐 25111345434354
+賑 25111341311534
+賒 25111343411234
+賓 44512332511134
+賔 44552132511134
+賕 25111341241344
+賖 25111343411234
+賗 25111342512512
+賘 25111344131214
+賙 251113435121251
+賚 134342342511134
+賛 113411342511134
+賜 251113425113533
+賝 251113445341234
+賞 243452512511134
+賟 251113425122134
+賠 251113441431251
+賡 413511342511134
+賢 125125542511134
+賣 121252212511134
+賤 251113415341534
+賥 251113441343412
+賦 251113411212154
+賧 251113443344334
+賨 445112342511134
+賩 251113444511234
+質 331233122511134
+賫 123434452511134
+賬 251113412111534
+賭 251113412132511
+賮 5112144442511134
+賯 2511134352511521
+賰 2511134111342511
+賱 2511134451251112
+賲 3225112342511134
+賳 2511134121251534
+賴 1251234352511134
+賵 2511134251125111
+賶 25111343445113251
+賷 12251251452511134
+賸 35114311342511134
+賹 25111344313425221
+賺 25111344315112234
+賻 25111341251124124
+購 25111341122125211
+賽 44511221342511134
+賾 122512511212511134
+賿 251113454154134333
+贀 131134535542511134
+贁 251113425111343134
+贂 251113454545434333
+贃 251113425125124544
+贄 121431123542511134
+贅 11215331342511134
+贆 2511134134413441344
+贇 4134112121542511134
+贈 2511134432524312511
+贉 2511134125221251112
+贊 3121353121352511134
+贋 1332324111212511134
+贌 2511134224314311134
+贍 25111343513344111251
+贎 2511134122251125214
+贏 41525135112511134354
+贐 251113451121444425221
+贑 414312511121212511134
+贒 125125251245442511134
+贓 251113413513125125534
+贔 251113425111342511134
+贕 3543524121252212511134
+贖 2511134121252212511134
+贗 1332325111544442511134
+贘 2511134243452512511134
+贙 21531535215315352511134
+贚 251113441431251121515111
+贛 414312511123541212511134
+贜 251113412213513125125534
+贝 2534
+贞 212534
+负 352534
+贠 542534
+贡 1212534
+财 2534123
+责 11212534
+贤 22542534
+败 25343134
+账 25343154
+货 32352534
+质 33122534
+贩 25343354
+贪 34452534
+贫 34532534
+贬 25343454
+购 25343554
+贮 25344451
+贯 55212534
+贰 111253454
+贱 253411534
+贲 121222534
+贳 122152534
+贴 253421251
+贵 251212534
+贶 253425135
+贷 321542534
+贸 354532534
+费 515322534
+贺 532512534
+贻 253454251
+贼 2534113534
+贽 1213542534
+贾 1252212534
+贿 2534132511
+赀 2121352534
+赁 3231212534
+赂 2534354251
+赃 2534413121
+资 4135342534
+赅 2534415334
+赆 2534513444
+赇 25341241344
+赈 25341311534
+赉 14312342534
+赊 25343411234
+赋 253411212154
+赌 253412132511
+赍 123434452534
+赎 253412544134
+赏 243452512534
+赐 253425113533
+赑 253425342534
+赒 253435121251
+赓 413511342534
+赔 253441431251
+赕 253443344334
+赖 1251234352534
+赗 2534251125111
+赘 11215331342534
+赙 25341251124124
+赚 25344315112234
+赛 44511221342534
+赜 122512511212534
+赝 1332324111212534
+赞 3121353121352534
+赟 4134112121542534
+赠 2534432524312511
+赡 25343513344111251
+赢 41525135112534354
+赣 414312511123541212534
+赤 1213234
+赥 12132343534
+赦 12132343134
+赧 12132345254
+赨 1213234251214
+赩 1213234355215
+赪 1213234212534
+赫 12132341213234
+赬 1213234212511134
+赭 121323412132511
+赮 1213234512115154
+赯 12132344135112251
+走 1212134
+赱 121434
+赲 121213453
+赳 121213452
+赴 121213424
+赵 121213434
+赶 1212134112
+起 1212134515
+赸 1212134252
+赹 12121343541
+赺 12121343445
+赻 12121342343
+赼 12121343534
+赽 12121345134
+赾 12121343312
+赿 12121343515
+趀 12121343523
+趁 121213434333
+趂 121213435234
+趃 121213431134
+趄 121213425111
+超 121213453251
+趆 121213435154
+趇 121213441431
+趈 121213421251
+趉 121213452252
+越 121213415534
+趋 121213435511
+趌 1212134121251
+趍 1212134354354
+趎 1212134311234
+趏 1212134312251
+趐 1212134541541
+趑 1212134413534
+趒 1212134341534
+趓 1212134351234
+趔 1212134135422
+趕 12121342511112
+趖 12121343434121
+趗 12121342512134
+趘 12121345133115
+趙 12121342432511
+趚 12121341251234
+趛 121213434112431
+趜 121213435431234
+趝 121213434454544
+趞 121213412212511
+趟 121213424325251
+趠 121213421251112
+趡 121213432411121
+趢 121213451124134
+趣 121213412211154
+趤 121213444513251
+趥 1212134431253511
+趦 1212134413534251
+趧 1212134251112134
+趨 12121343552335523
+趩 121213425121122134
+趪 121213412212512134
+趫 1212134313425125251
+趬 1212134121121121135
+趭 1212134324111214444
+趮 12121342512512511234
+趯 121213454154132411121
+趰 121213413425234343434
+趱 12121343121353121352534
+趲 12121343121353121352511134
+足 2512134
+趴 251212134
+趵 2512121354
+趶 2512121112
+趷 2512121315
+趸 1532512134
+趹 25121215134
+趺 25121211134
+趻 25121213445
+趼 25121211132
+趽 25121214153
+趾 25121212121
+趿 2512121354
+跀 25121213511
+跁 25121215215
+跂 25121211254
+跃 25121213134
+跄 25121213455
+跅 251212133124
+跆 251212154251
+跇 251212112215
+跈 251212134333
+跉 251212134454
+跊 251212111234
+跋 251212113544
+跌 251212131134
+跍 251212112251
+跎 251212144535
+跏 251212153251
+跐 2512121212135
+跑 251212135515
+跒 251212112512
+跓 251212141121
+跔 251212135251
+跕 251212121251
+跖 251212113251
+跗 251212132124
+跘 251212143112
+跙 251212125111
+跚 251212135351
+跛 251212153254
+跜 251212151335
+距 25121211515
+跞 251212135234
+跟 2512121511534
+跠 2512121151534
+跡 2512121413234
+跢 2512121354354
+跣 2512121312135
+跤 2512121413434
+跥 2512121531234
+跦 2512121311234
+跧 2512121341121
+跨 2512121134115
+跩 2512121251153
+跪 2512121351355
+跫 1213542512134
+跬 2512121121121
+跭 2512121354152
+跮 2512121154121
+路 2512121354251
+跰 2512121431132
+跱 2512121121124
+跲 2512121341251
+跳 2512121341534
+跴 2512121125351
+践 251212111534
+跶 2512121134454
+跷 2512121153135
+跸 2512121153512
+跹 2512121312454
+跺 2512121351234
+跻 2512121413432
+跼 25121215135251
+跽 25121215154544
+跾 32231342512134
+跿 25121211212134
+踀 25121212512134
+踁 25121211555121
+踂 25121211221115
+踃 25121212432511
+踄 25121212121233
+踅 12133122512134
+踆 25121215434354
+踇 25121213155414
+踈 25121211251234
+踉 25121214511534
+踊 25121215425112
+踋 25121211215452
+踌 25121211113124
+踍 25121211213521
+踎 25121211324251
+踏 251212125342511
+踐 251212115341534
+踑 251212112211134
+踒 251212131234531
+踓 251212132411121
+踔 251212121251112
+踕 251212115112134
+踖 251212112212511
+踗 251212134454544
+踘 251212135431234
+踙 251212112211154
+踚 251212134125122
+踛 251212112134121
+踜 251212112134354
+踝 251212125111234
+踞 251212151312251
+踟 251212131134251
+踠 251212144535455
+踡 251212143113455
+踢 251212125113533
+踣 251212141431251
+踤 251212141343412
+踥 251212141431531
+踦 251212113412512
+踧 251212121123454
+踨 251212134342134
+踩 251212134431234
+踪 251212144511234
+踫 251212143122431
+踬 251212133122534
+踭 2512121355112
+踮 251212141321251
+踯 251212143113452
+踰 2512121341251122
+踱 2512121413122154
+踲 2512121331225111
+踳 2512121111342511
+踴 2512121542511253
+踵 2512121312511211
+踶 2512121251112134
+踷 251212112132511
+踸 2512121122111345
+踹 2512121252132522
+踺 251212151111254
+踻 251212125525251
+踼 2512121251113533
+踽 2512121325125214
+踾 2512121125125121
+踿 2512121312344334
+蹀 2512121122151234
+蹁 2512121451325122
+蹂 2512121545231234
+蹃 251212112213251
+蹄 2512121414345252
+蹅 2512121123425111
+蹆 2512121511534454
+蹇 44511221342512134
+蹈 25121213443321511
+蹉 2512121431113121
+蹊 25121213443554134
+蹋 25121212511541541
+蹌 25121213445113251
+蹍 25121215131221534
+蹎 25121211225111134
+蹏 25121213321531535
+蹐 25121214133442511
+蹑 25121211221115454
+蹒 25121211221253434
+蹓 25121213545325121
+蹔 125111233122512134
+蹕 25121212511122112
+蹖 251212111134321511
+蹗 251212141352211535
+蹘 251212154154134333
+蹙 132112345342512134
+蹚 251212124345251121
+蹛 251212113221545252
+蹜 251212144532132511
+蹝 251212133221212134
+蹞 251212115132511134
+蹟 251212111212511134
+蹠 251212141312214444
+蹡 251212152133544124
+蹢 251212141432512251
+蹣 251212112212523434
+蹤 251212133234342134
+蹥 25121211251112454
+蹦 251212125235113511
+蹧 251212112512212511
+蹨 2512121354413444444
+蹩 432523431342512134
+蹪 2512121251212511134
+蹫 2512121545232534251
+蹬 2512121543341251431
+蹭 2512121432524312511
+蹮 2512121125221134515
+蹯 2512121343123425121
+蹰 2512121131251431124
+蹱 2512121414312511211
+蹲 2512121431253511124
+蹳 2512121543345153554
+蹴 2512121412512341354
+蹵 4125123413542512134
+蹶 2512121134315233534
+蹷 1343152335342512134
+蹸 2512121431234354152
+蹹 2512121341251541541
+蹺 2512121121121121135
+蹻 2512121313425125251
+蹼 2512121224314311134
+蹽 2512121134432511234
+蹾 2512121412515213134
+蹿 2512121445342512512
+躀 251212155212511134
+躁 25121212512512511234
+躂 2512121121431112454
+躃 25121215132514143112
+躄 51325141431122512134
+躅 25121212522135251214
+躆 25121212153151353334
+躇 251212112212132511
+躈 25121213251141533134
+躉 1222511252142512134
+躊 251212112151211251124
+躋 251212141432533543211
+躌 251212131122221354152
+躍 251212154154132411121
+躎 251212113425234343434
+躏 251212112242532411121
+躐 2512121555253415445445
+躑 251212143125351113452
+躒 2512121325115545541234
+躓 2512121331233122511134
+躔 2512121413251121134121
+躕 2512121413121251431124
+躖 2512121554554155455421
+躗 3325212511521122512134
+躘 25121214143125111515111
+躙 25121212511251132411121
+躚 2512121125221134515454
+躛 33252125112521122512134
+躜 25121213121353121352534
+躝 251212125112511125431234
+躞 251212141112514334433454
+躟 251212141251251112213534
+躠 12232515141431122512134
+躡 2512121122111122111122111
+躢 2512121251125112511541541
+躣 2512121251112511132411121
+躤 251212112211123412212511
+躥 2512121445343215115445445
+躦 25121213121353121352511134
+躧 25121211254125441352211535
+躨 2512121431325111212151534354
+躩 251212125111251113241112154
+躪 25121211222511251132411121
+身 3251113
+躬 3251113515
+躭 32511134535
+躮 32511133453
+躯 32511131345
+躰 325111312341
+躱 3251113531234
+躲 3251113351234
+躳 3251113251251
+躴 32511134511534
+躵 32511135344544
+躶 325111325111234
+躷 325111331234531
+躸 325111313412512
+躹 325111335431234
+躺 325111324325251
+躻 325111344534121
+躼 325111312111534
+躽 3251113125115315
+躾 3251113431121134
+躿 325111341351124134
+軀 325111312512512515
+軁 325111325112512531
+軂 3251113433443344553
+軃 3251113251251251112
+軄 3251113414312511534
+軅 3251113133232411121
+軆 32511132512211251431
+軇 325111312151211251124
+軈 325111341332324111214544
+軉 325111344511213112522511134
+車 1251112
+軋 12511125
+軌 125111235
+軍 451251112
+軎 1251112251
+軏 1251112135
+軐 1251112512
+軑 1251112134
+軒 1251112112
+軓 1251112354
+軔 1251112534
+軕 1251112252
+軖 12511121121
+軗 12511123554
+軘 12511121525
+軙 12511122154
+軚 12511121344
+軛 12511121355
+軜 12511122534
+軝 12511123515
+軞 12511123115
+軟 12511123534
+軠 12511123121
+軡 12511123445
+転 12511121154
+軣 12511124134
+軤 125111234312
+軥 125111235251
+軦 125111225135
+軧 125111235154
+軨 125111234454
+軩 125111254251
+軪 125111255453
+軫 125111234333
+軬 541341251112
+軭 1251112111215
+軮 125111225134
+軯 125111214312
+軰 211351251112
+軱 125111233544
+軲 125111212251
+軳 125111235515
+軴 125111241121
+軵 125111232124
+軶 125111245135
+軷 125111213544
+軸 125111225121
+軹 125111225134
+軺 125111253251
+軻 125111212512
+軼 125111231134
+軽 125111254121
+軾 1251112112154
+軿 1251112431132
+輀 1251112132522
+輁 1251112122134
+輂 1221341251112
+較 1251112413434
+輄 1251112243135
+輅 1251112354251
+輆 1251112415334
+輇 1251112341121
+輈 1251112335414
+載 1211251112534
+輊 1251112154121
+輋 2521341251112
+輌 1251112125252
+輍 12511123434251
+輎 12511122432511
+輏 12511121253511
+輐 12511124451135
+輑 12511125113251
+輒 12511121221115
+輓 12511123525135
+輔 12511121251124
+輕 12511121555121
+輖 125111235121251
+輗 125111232151135
+輘 125111212134354
+輙 125111212211154
+輚 125111215341534
+輛 125111212523434
+輜 125111255525121
+輝 243135451251112
+輞 125111225431415
+輟 125111254545454
+輠 125111225111234
+輡 125111235321511
+輢 125111213412512
+輣 125111235113511
+輤 1251112112121511
+輥 125111225111535
+輦 113411341251112
+輧 125111231133112
+輨 125111244525151
+輩 211121111251112
+輪 125111234125122
+輫 125111221112111
+輬 125111241251234
+輭 1251112132522134
+輮 1251112545231234
+輯 1251112251122111
+輰 1251112251113533
+輱 1251112131251534
+輲 1251112252132522
+輳 1251112111341134
+輴 1251112331225111
+輵 1251112251135345
+輶 1251112431253511
+輷 1251112354111251
+輸 1251112341251122
+輹 1251112312511354
+輺 1251112555125121
+輻 1251112125125121
+輼 1251112251125221
+輽 12511125413425121
+輾 12511125131221534
+輿 32111251112511134
+轀 12511122534125221
+轁 12511123443321511
+轂 12145112511123554
+轃 12511121113431234
+轄 12511124451112251
+轅 12511121212513534
+轆 125111241352211535
+轇 125111254154134333
+轈 125111255525111234
+轉 125111212511214124
+轊 125111211121112511
+轋 12511121251112454
+轌 125111214524444511
+轍 1251112415425113134
+轎 1251112313425125251
+轏 1251112513521521521
+轐 1251112224314311134
+轑 1251112134432511234
+轒 1251112121222511134
+轓 1251112343123425121
+轔 1251112431234354152
+轕 1251112122251135345
+轖 12511121234341252511
+轗 12511121312515344544
+轘 12511122522112513534
+轙 12511124311213121534
+轚 12511125235541251112
+轛 125111222431431121124
+轜 125111214524444132522
+轝 32111525111341251112
+轞 125111212512531425221
+轟 125111212511121251112
+轠 1251112251212512125121
+轡 5544441251112554444251
+轢 1251112325115545541234
+轣 12511121331234312342121
+轤 12511122153152512125221
+轥 12511121222511251132411121
+车 1512
+轧 15215
+轨 152135
+轩 1521112
+轪 1521134
+轫 1521534
+转 15211154
+轭 15211355
+轮 15213435
+软 15213534
+轰 15125454
+轱 152112251
+轲 152112512
+轳 152121513
+轴 152125121
+轵 152125134
+轶 152131134
+轷 152134312
+轸 152134333
+轹 152135234
+轺 152153251
+轻 152154121
+轼 1521112154
+载 1211521534
+轾 1521154121
+轿 1521313432
+辀 1521335414
+辁 1521341121
+辂 1521354251
+较 1521413434
+辄 15211221115
+辅 15211251124
+辆 15211253434
+辇 113411341512
+辈 211121111512
+辉 243135451512
+辊 152125111535
+辋 152125431415
+辌 152141251234
+辍 152154545454
+辎 152155525121
+辏 1521111341134
+辐 1521125125121
+辑 1521251122111
+辒 1521251125221
+输 1521341251122
+辔 5511512551251
+辕 15211212513534
+辖 15214451112251
+辗 15215131221534
+辘 152141352211535
+辙 1521415425113134
+辚 1521431234354152
+辛 4143112
+辜 122514143112
+辝 542514143112
+辞 3122514143112
+辟 5132514143112
+辠 3251114143112
+辡 41431134143112
+辢 12512344143112
+辣 41431131251234
+辤 344345544143112
+辥 5233251514143112
+辦 4143113534143112
+辧 4143113534143112
+辨 4143113434143112
+辩 4143113454143112
+辪 21213251514143112
+辫 41431135514143112
+辬 414311341344143112
+辭 3443542554544143112
+辮 41431135542344143112
+辯 414311341112514143112
+辰 1311534
+辱 1311534124
+農 2512211311534
+辳 123412341311534
+辴 2512512511121311534
+辵 3332134
+辶 454
+辷 1454
+辸 53454
+边 53454
+辺 53454
+辻 12454
+込 34454
+辽 52454
+达 134454
+辿 252454
+迀 112454
+迁 312454
+迂 112454
+迃 115454
+迄 315454
+迅 512454
+迆 525454
+过 124454
+迈 153454
+迉 513454
+迊 1252454
+迋 1121454
+迌 3511454
+迍 1525454
+迎 3552454
+迏 1344454
+运 1154454
+近 3312454
+迒 4135454
+迓 1523454
+返 3354454
+迕 3112454
+迖 1344454
+迗 1134454
+还 1324454
+这 4134454
+迚 2512454
+进 1132454
+远 1135454
+违 1152454
+连 1512454
+迟 5134454
+迠 21251454
+迡 51335454
+迢 53251454
+迣 12215454
+迤 31525454
+迥 25251454
+迦 53251454
+迧 25112454
+迨 54251454
+迩 35234454
+迪 25121454
+迫 32511454
+迬 41121454
+迭 31134454
+迮 31211454
+迯 35424454
+述 12344454
+迱 44535454
+迲 12154454
+迳 54121454
+迴 252511454
+迵 251251454
+迶 132511454
+迷 431234454
+迸 431132454
+迹 413234454
+迺 125351454
+迻 354354454
+迼 121251454
+追 325151454
+迾 135422454
+迿 352511454
+退 511534454
+送 431134454
+适 312251454
+逃 341534454
+逄 354152454
+逅 331251454
+逆 431523454
+逇 121525454
+逈 325251454
+选 312135454
+逊 521234454
+逋 1251124454
+逌 2125511454
+逍 2432511454
+逎 1253511454
+透 3123453454
+逐 1353334454
+逑 1241344454
+递 4351523454
+逓 3311252454
+途 3411234454
+逕 1555121454
+逖 3534334454
+逗 1251431454
+逘 5431134454
+這 4111251454
+通 5425112454
+逛 3531121454
+逜 1251251454
+逝 1213312454
+逞 2511121454
+速 1251234454
+造 3121251454
+逡 5434354454
+逢 3541112454
+連 1251112454
+逤 4412343454
+逥 2522111454
+逦 1254254454
+逧 3434251454
+逨 13434234454
+逩 13412132454
+逪 12212511454
+逫 54545454454
+逬 31133112454
+逭 44525151454
+逮 51124134454
+逯 51124134454
+逰 12131521454
+週 35121251454
+進 32411121454
+逳 41542511454
+逴 21251112454
+逵 12134121454
+逶 31234531454
+逷 25113533454
+逸 35251354454
+逹 12143112454
+逺 12153234454
+逻 25221354454
+逼 125125121454
+逽 12213251454
+逾 341251122454
+逿 251113533454
+遀 131212511454
+遁 331225111454
+遂 431353334454
+遃 414313333454
+遄 252132522454
+遅 513431112454
+遆 414345252454
+遇 251125214454
+遈 251112134454
+遉 212511134454
+遊 415331521454
+運 451251112454
+遌 251251115454
+遍 451325122454
+過 25525251454
+遏 251135345454
+遐 512115154454
+遑 325111121454
+遒 431253511454
+道 431325111454
+達 121431112454
+違 521251152454
+遖 122543112454
+遗 251212534454
+遘 1122125211454
+遙 3544311252454
+遚 321511254454
+遛 3545325121454
+遜 5213554234454
+遝 2522123344454
+遞 3321531535454
+遟 5134143112454
+遠 1212513234454
+遡 4315233511454
+遢 2511541541454
+遣 2512125151454
+遤 1211254444454
+遥 3443311252454
+遦 55212511134454
+遧 41431251112454
+遨 1121533134454
+適 41432512251454
+遪 54545434333454
+遫 12512343134454
+遬 12512343534454
+遭 12512212511454
+遮 41312214444454
+遯 35111353334454
+遰 13221545252454
+遱 25112512531454
+遲 513241343112454
+遳 1223434121454
+遴 431234354152454
+遵 431253511124454
+遶 121121121135454
+遷 125221134515454
+選 515515122134454
+遹 545232534251454
+遺 251212511134454
+遻 251251431523454
+遼 134432511234454
+遽 2153151353334454
+遾 3143141234341454
+避 5132514143112454
+邀 3251141533134454
+邁 122251125214454
+邂 3535112533112454
+邃 44534431353334454
+還 2522112513234454
+邅 4125251125111454
+邆 543341251431454
+邇 13425234343434454
+邈 34435333251135454
+邉 32511144534251454
+邊 325111445344153454
+邋 555253415445445454
+邌 312343533424134454
+邍 3542512151124134454
+邎 354441112513554234454
+邏 2522155444432411121454
+邐 1254125441352211535454
+邑 2515215
+邒 1252
+邓 5452
+邔 51552
+邕 5552515215
+邖 25252
+邗 11252
+邘 11252
+邙 41552
+邚 53152
+邛 12152
+邜 35452
+邝 41352
+邞 113452
+邟 413552
+邠 345352
+邡 415352
+邢 113252
+那 511352
+邤 331252
+邥 453552
+邦 111352
+邧 113552
+邨 152552
+邩 433452
+邪 152352
+邫 11132515215
+邬 355152
+邭 3525152
+邮 2512152
+邯 1221152
+邰 5425152
+邱 3212152
+邲 4543452
+邳 1324152
+邴 1253452
+邵 5325152
+邶 2113552
+邷 155452
+邸 3515452
+邹 3551152
+邺 2243152
+邻 3445452
+邼 11121552
+邽 12112152
+邾 31123452
+邿 12112452
+郀 13411552
+郁 13251152
+郂 41533452
+郃 34125152
+郄 34135452
+郅 15412152
+郆 12125152
+郇 35251152
+郈 33125152
+郉 11311252
+郊 41343452
+郋 32511152
+郌 1211212515215
+郍 33541452
+郎 45115452
+郏 14313452
+郐 34115452
+郑 43113452
+郒 4511542515215
+郓 45152152
+郔 32155452
+郕 13553452
+郖 125143152
+郗 341325252
+郘 25125152
+郙 125112452
+郚 125125152
+郛 344352152
+郜 312125152
+郝 121323452
+郞 451153452
+郟 134343452
+郠 125113452
+郡 511325152
+郢 251112152
+郣 124552152
+郤 343425152
+郥 251113452
+郦 125425452
+郧 251253452
+部 4143125152
+郩 3413251152
+郪 1511253152
+郫 3251131252
+郬 1121251152
+郭 4125152152
+郮 3512125152
+郯 4334433452
+郰 1221115452
+郱 43113252
+郲 1343423452
+郳 3215113552
+郴 1234123452
+郵 3121221152
+郶 414312512515215
+郷 5535115452
+郸 4325111252
+郹 25111134452
+郺 3543545552515215
+郻 25111555552
+郼 52125115252
+都 1213251152
+郾 12511531552
+郿 52132511152
+鄀 1221325152
+鄁 21135251152
+鄂 25125111552
+鄃 34125112252
+鄄 12522112152
+鄅 32512521452
+鄆 45125111252
+鄇 32513113452
+鄈 54334113452
+鄉 55345115452
+鄊 55312211152
+鄋 32151125452
+鄌 413511225152
+鄍 452511413452
+鄎 325111454452
+鄏 131153412452
+鄐 415542512152
+鄑 122431251152
+鄒 355233552352
+鄓 325111134452
+鄔 325115444452
+鄕 553325113552
+鄖 251251113452
+鄗 412512525152
+鄘 4135112511252
+鄙 2511225251152
+鄚 122251113452
+鄛 5552511123452
+鄜 4135221153552
+鄝 5415413433352
+鄞 1221251112152
+鄟 1251121412452
+鄠 1452444411552
+鄡 3251115123452
+鄢 1212115444452
+鄣 4143125111252
+鄤 2511252215452
+鄥 3251115444452
+鄦 31122221444452
+鄧 54334125143152
+鄨 432523431342515215
+鄩 51112125112452
+鄪 51532251113452
+鄫 43252431251152
+鄬 34433555444452
+鄭 43125351113452
+鄮 35453251113452
+鄯 43111243125152
+鄰 43123435415252
+鄱 34312342512152
+鄲 25125125111252
+鄳 251125121151152
+鄴 224314311123452
+鄵 251251251123452
+鄶 341252431251152
+鄷 251221125143152
+鄸 122252214535452
+鄹 1221115432333452
+鄺 4131221251213452
+鄻 11341134125111252
+鄼 11341134251113452
+鄽 41325112113412152
+鄾 13251145454435452
+鄿 12225125125111252
+酀 122125121135444452
+酁 3525115353525135452
+酂 312135312135253452
+酃 1452444425125125152
+酄 1222512513241112152
+酅 25232411121253425152
+酆 11122111252125143152
+酇 312135312135251113452
+酈 125412544135221153552
+酉 1253511
+酊 125351112
+酋 431253511
+酌 1253511354
+配 1253511515
+酎 1253511124
+酏 1253511525
+酐 1253511112
+酑 1253511112
+酒 4411253511
+酓 34451253511
+酔 12535113512
+酕 12535113115
+酖 12535114535
+酗 12535113452
+酘 12535113554
+酙 12535114412
+酚 12535113453
+酛 12535111135
+酜 12535111134
+酝 12535111154
+酞 12535111344
+酟 125351121251
+酠 125351112512
+酡 125351144535
+酢 125351131211
+酣 125351112211
+酤 125351112251
+酥 125351131234
+酦 125351153544
+酧 1253511445124
+酨 1211253511534
+酩 1253511354251
+酪 1253511354251
+酫 1253511341121
+酬 1253511434242
+酭 1253511132511
+酮 1253511251251
+酯 1253511352511
+酰 1253511312135
+酱 4123541253511
+酲 12535112511121
+酳 12535115542511
+酴 12535113411234
+酵 12535111213521
+酶 12535113155414
+酷 12535113121251
+酸 12535115434354
+酹 12535113443124
+酺 12535111251124
+酻 12535113443521
+酼 12535114154325
+酽 12535111224313
+酾 12535111254254
+酿 12535114511534
+醀 125351132411121
+醁 125351151124134
+醂 125351112341234
+醃 125351113425115
+醄 125351135311252
+醅 125351141431251
+醆 125351115341534
+醇 125351141251521
+醈 125351143344334
+醉 125351141343412
+醊 125351154545454
+醋 125351112212511
+醌 125351125111535
+醍 1253511251112134
+醎 1253511131251534
+醏 125351112132511
+醐 1253511122513511
+醑 1253511521342511
+醒 1253511251131121
+醓 1253511453525221
+醔 3123443341253511
+醕 1253511412512511
+醖 1253511251125221
+醗 1253511543341135
+醘 12535111215425221
+醙 1253511321511254
+醚 1253511431234454
+醛 1253511122341121
+醜 1253511325113554
+醝 1253511431113121
+醞 12535112534125221
+醟 43344334451253511
+醠 12535112513425221
+醡 12535114453431211
+醢 12535111325125221
+醣 12535114135112251
+醤 41234431241253511
+醥 125351112522111234
+醦 125351154545434333
+醧 125351112512512515
+醨 12535114134522554
+醩 125351112512212511
+醪 125351154154134333
+醫 131134535541253511
+醬 521335441241253511
+醭 1253511224314311134
+醮 1253511324111214444
+醯 1253511415432525221
+醰 1253511125221251112
+醱 1253511543345153554
+醲 12535112512211311534
+醳 12535112522112143112
+醴 12535112512211251431
+醵 12535112153151353334
+醶 12535113412512513434
+醷 12535114143125114544
+醸 12535114134112213534
+醹 125351114524444132522
+醺 125351131254312114444
+醻 125351112151211251124
+醼 12535111221251211354444
+醽 125351114524444251251251
+醾 125351141312341234431234
+醿 125351141312341234554234
+釀 125351141251251112213534
+釁 32112512515114512535113453
+釂 125351134432522151154124
+釃 12535111254125441352211535
+釄 12535114131234123421112111
+釅 12535112512511351221113134
+釆 3431234
+采 34431234
+釈 34312345134
+釉 343123425121
+释 343123454112
+釋 34312342522112143112
+里 2511211
+重 312511211
+野 25112115452
+量 251112511211
+釐 112343134132511211
+金 34112431
+釒 34112431
+釓 341124315
+釔 341124315
+釕 3411243152
+釖 3411243153
+釗 3411243122
+釘 3411243112
+釙 3411243124
+釚 3411243135
+釛 3411243153
+釜 3434112431
+針 3411243112
+釞 3411243134
+釟 3411243134
+釠 3411243135
+釡 3434112431
+釢 3411243153
+釣 34112431354
+釤 34112431333
+釥 34112431234
+釦 34112431251
+釧 34112431322
+釨 34112431521
+釩 34112431354
+釪 34112431112
+釫 34112431115
+釬 34112431112
+釭 34112431121
+釮 34112431123
+釯 34112431415
+釰 34112431534
+釱 34112431134
+釲 34112431515
+釳 34112431315
+釴 34112431154
+釵 34112431544
+釶 34112431525
+釷 34112431121
+釸 34112431354
+釹 34112431531
+釺 34112431312
+釻 34112431354
+釼 34112431534
+釽 341124313324
+釾 341124311523
+釿 341124313312
+鈀 341124315215
+鈁 341124314153
+鈂 341124314535
+鈃 341124311132
+鈄 341124314412
+鈅 341124313511
+鈆 341124313454
+鈇 341124311134
+鈈 341124311324
+鈉 341124312534
+鈊 341124314544
+鈋 341124313235
+鈌 341124315134
+鈍 341124311525
+鈎 341124313554
+鈏 341124315152
+鈐 341124313445
+鈑 341124313354
+鈒 34112431354
+鈓 341124313121
+鈔 341124312343
+鈕 341124315211
+鈖 341124313453
+鈗 341124315435
+鈘 341124311254
+鈙 341124312154
+鈚 341124311535
+鈛 341124311534
+鈜 341124311354
+鈝 341124313112
+鈞 341124313541
+鈟 341124315152
+鈠 341124313554
+鈡 341124312512
+鈢 341124311234
+鈣 341124311215
+鈤 341124312511
+鈥 341124314334
+鈦 341124311344
+鈧 341124314135
+鈨 341124311135
+鈩 341124314513
+鈪 341124311355
+鈫 341124314134
+鈬 341124315134
+鈭 21213534112431
+鈮 3411243151335
+鈯 3411243152252
+鈰 3411243141252
+鈱 3411243151515
+鈲 3411243133544
+鈳 3411243112512
+鈴 3411243134454
+鈵 3411243112534
+鈶 3411243154251
+鈷 3411243112251
+鈸 3411243113544
+鈹 3411243153254
+鈺 3411243111214
+鈻 3411243125151
+鈼 3411243131211
+鈽 3411243113252
+鈾 3411243125121
+鈿 3411243125121
+鉀 3411243125112
+鉁 3411243134333
+鉂 3411243125134
+鉃 3411243131134
+鉄 3411243131134
+鉅 341124311515
+鉆 3411243121251
+鉇 3411243131525
+鉈 3411243144535
+鉉 3411243141554
+鉊 3411243153251
+鉋 3411243135515
+鉌 3411243131234
+鉍 3411243145434
+鉎 3411243131121
+鉏 3411243125111
+鉐 3411243113251
+鉑 3411243132511
+鉒 3411243141121
+鉓 3411243131252
+鉔 3411243112525
+鉕 3411243112515
+鉖 3411243135444
+鉗 3411243112211
+鉘 3411243151532
+鉙 3411243125134
+鉚 3411243135352
+鉛 3411243135251
+鉜 3411243132124
+鉝 3411243141431
+鉞 3411243115534
+鉟 3411243113241
+鉠 3411243125134
+鉡 3411243143112
+鉢 3411243112341
+鉣 3411243112154
+鉤 3411243135251
+鉥 3411243112344
+鉦 3411243112121
+鉧 3411243155414
+鉨 3411243135234
+鉩 3411243134234
+鉪 3411243112215
+鉫 3411243153251
+鉬 3411243125111
+鉭 3411243125111
+鉮 3411243125112
+鉯 341124315434
+鉰 3411243151251
+鉱 3411243141354
+鉲 3411243121124
+鉳 3411243121135
+鉴 2231434112431
+鉵 34112431251214
+鉶 34112431113222
+鉷 34112431122134
+鉸 34112431413434
+鉹 34112431354354
+鉺 34112431122111
+鉻 34112431354251
+鉼 34112431431132
+鉽 34112431112154
+鉾 34112431543112
+鉿 34112431341251
+銀 34112431511534
+銁 34112431352511
+銂 34112431434242
+銃 34112431415435
+銄 34112431325251
+銅 34112431251251
+銆 34112431132511
+銇 34112431111234
+銈 34112431121121
+銉 34112431511112
+銊 34112431131534
+銋 34112431323121
+銌 34112431132521
+銍 34112431154121
+銎 12135434112431
+銏 3411243135351
+銐 13542234112431
+銑 34112431312135
+銒 34112431113112
+銓 34112431341121
+銔 34112431132412
+銕 34112431151534
+銖 34112431311234
+銗 34112431331251
+銘 34112431354251
+銙 34112431134115
+銚 34112431341534
+銛 34112431312251
+銜 33234112431112
+銝 34112431321234
+銞 35251134112431
+銟 34112431252252
+銠 34112431121335
+銡 34112431121251
+銢 34112431112534
+銣 34112431531251
+銤 34112431431234
+銥 34112431413534
+銦 34112431251341
+銧 34112431243135
+銨 34112431445531
+銩 34112431312154
+銪 34112431132511
+銫 34112431355215
+銬 34112431121315
+銭 34112431111534
+銮 41223434112431
+銯 34112431554234
+銰 3411243112234
+銱 34112431251252
+銲 341124312511112
+銳 341124313425135
+銴 121331234112431
+銵 341124313251113
+銶 341124311241344
+銷 341124312432511
+銸 341124311221115
+銹 341124313123453
+銺 521312134112431
+銻 341124314351523
+銼 341124313434121
+銽 341124313515251
+銾 341124311212534
+銿 341124315425112
+鋀 341124311251431
+鋁 34112431251251
+鋂 341124313155414
+鋃 341124314511534
+鋄 341124311433454
+鋅 341124314143112
+鋆 121354134112431
+鋇 341124312511134
+鋈 441313434112431
+鋉 341124311251234
+鋊 341124313434251
+鋋 34112431321554
+鋌 34112431312154
+鋍 341124311245521
+鋎 341124314451135
+鋏 341124311343434
+鋐 341124314451354
+鋑 341124315434354
+鋒 341124313541112
+鋓 341124313123422
+鋔 341124313525135
+鋕 341124311214544
+鋖 341124313443531
+鋗 341124312512511
+鋘 341124312511134
+鋙 341124311251251
+鋚 322313434112431
+鋛 341124312512512
+鋜 341124312512134
+鋝 341124313443124
+鋞 341124311555121
+鋟 341124315114554
+鋠 341124311311534
+鋡 341124313445251
+鋢 341124313443521
+鋣 34112431152352
+鋤 341124312511153
+鋥 341124312511121
+鋦 341124315135251
+鋧 341124312511135
+鋨 341124313121534
+鋩 34112431122415
+鋪 341124311251124
+鋫 312342234112431
+鋬 121335434112431
+鋭 341124314325135
+鋮 34112431135534
+鋯 341124313121251
+鋰 341124312511211
+鋱 341124311454454
+鋲 341124313212134
+鋳 341124311113124
+鋴 341124311225135
+鋵 341124313123435
+鋶 341124314154325
+鋷 3411243112211154
+鋸 3411243151312251
+鋹 3411243112111534
+鋺 3411243144535455
+鋻 1251255434112431
+鋼 3411243125431252
+鋽 3411243121251112
+鋾 3411243135311252
+鋿 3411243124325251
+錀 3411243134125122
+錁 3411243125111234
+錂 3411243112134354
+錃 4415325434112431
+錄 3411243151124134
+錅 3123435334112431
+錆 3411243111212511
+錇 3411243141431251
+錈 3411243143113455
+錉 3411243135152511
+錊 3411243141343412
+錋 3411243135113511
+錌 3411243125213112
+錍 3411243132511312
+錎 3411243135321511
+錏 3411243112155121
+錐 3411243132411121
+錑 3411243145131344
+錒 341124315212512
+錓 341124314311135
+錔 3411243125342511
+錕 3411243125111535
+錖 2112345434112431
+錗 3411243131234531
+錘 3411243131212211
+錙 3411243155525121
+錚 34112431355112
+錛 3411243113412132
+錜 3411243134454544
+錝 3411243144511234
+錞 3411243141251521
+錟 3411243143344334
+錠 3411243144512134
+錡 3411243113412512
+錢 3411243115341534
+錣 3411243154545454
+錤 3411243112211134
+錥 3411243141542511
+錦 3411243132511252
+錧 3411243144525151
+錨 3411243112225121
+錩 3411243125112511
+錪 3411243125122134
+錫 3411243125113533
+錬 3411243112511234
+錭 3411243135121251
+錮 3411243125122511
+錯 3411243112212511
+錰 3411243112344444
+錱 3411243111211121
+録 3411243151124134
+錳 3411243152125221
+錴 3411243112134121
+錵 341124311223235
+錶 3411243111213534
+錷 3411243112511125
+錸 3411243113434234
+錹 3411243121212511
+錺 341124311224153
+錻 3411243111212154
+錼 3411243113411234
+錽 3411243114334354
+錾 1521331234112431
+錿 3411243121531535
+鍀 3411243125111124
+鍁 3411243133123534
+鍂 3411243134112431
+鍃 3411243135334544
+鍄 3411243141251234
+鍅 3411243144112154
+鍆 3411243125112511
+鍇 34112431153532511
+鍈 3411243112225134
+鍉 34112431251112134
+鍊 34112431125431234
+鍋 3411243125525251
+鍌 44131213534112431
+鍍 34112431413122154
+鍎 34112431331225111
+鍏 34112431521251152
+鍐 34112431345234354
+鍑 34112431312511354
+鍒 34112431545231234
+鍓 34112431251122111
+鍔 34112431251251115
+鍕 34112431451251112
+鍖 34112431122111345
+鍗 34112431414345252
+鍘 34112431251113422
+鍙 44112213434112431
+鍚 34112431251113533
+鍛 34112431321113554
+鍜 34112431512115154
+鍝 34112431251125214
+鍞 34112431212511134
+鍟 34112431251131121
+鍠 34112431325111121
+鍡 34112431251211534
+鍢 34112431125125121
+鍣 3411243112253251
+鍤 34112431312321511
+鍥 34112431111253134
+鍦 34112431415331525
+鍧 34112431354111251
+鍨 34112431543341134
+鍩 3411243112213251
+鍪 54523313434112431
+鍫 31234433434112431
+鍬 34112431312344334
+鍭 34112431325131134
+鍮 34112431341251122
+鍯 34112431353344544
+鍰 34112431344311354
+鍱 34112431122151234
+鍲 34112431515152511
+鍳 12512531434112431
+鍴 34112431252132522
+鍵 3411243151111254
+鍶 34112431251214544
+鍷 34112431134121121
+鍸 34112431122513511
+鍹 34112431445125111
+鍺 3411243112132511
+鍻 34112431251135345
+鍼 34112431131251534
+鍽 34112431451325122
+鍾 34112431312511211
+鍿 34112431555125121
+鎀 34112431322354333
+鎁 3411243112211152
+鎂 34112431431121134
+鎃 34112431441333534
+鎄 34112431412513534
+鎅 34112431251213432
+鎆 34112431431251122
+鎇 34112431521325111
+鎈 34112431431113121
+鎉 341124312511541541
+鎊 341124314143454153
+鎋 341124314451112251
+鎌 341124314315112234
+鎍 341124311245554234
+鎎 341124313115431234
+鎏 441415432534112431
+鎐 341124313443311252
+鎑 341124311215425221
+鎒 341124311311534124
+鎓 341124313454541541
+鎔 341124314453434251
+鎕 341124314135112251
+鎖 341124312432511134
+鎗 341124313445113251
+鎘 341124311251254312
+鎙 341124314315233511
+鎚 34112431325151454
+鎛 341124311251124124
+鎜 335414355434112431
+鎝 34112431122341251
+鎞 341124313253411535
+鎟 341124315454541234
+鎠 341124312522112121
+鎡 34112431431554554
+鎢 341124313251154444
+鎣 433443344534112431
+鎤 341124312511243135
+鎥 322354123434112431
+鎦 341124313545325121
+鎧 341124312521251431
+鎨 341124313241112112
+鎩 341124313412343554
+鎪 34112431321511254
+鎫 341124313253434354
+鎬 341124314125125251
+鎭 341124313525111534
+鎮 341124311225111134
+鎯 3411243145115452
+鎰 341124314313425221
+鎱 341124311212513534
+鎲 341124312434525135
+鎳 341124313251111234
+鎴 341124313251114544
+鎵 341124314451353334
+鎶 341124311251212512
+鎷 341124311211254444
+鎸 341124313241112153
+鎹 34112431431134454
+鎺 34112431452425111
+鎻 341124315552511134
+鎼 341124312153153112
+鎽 341124312523541112
+鎾 34112431251125221
+鎿 341124313412513112
+鏀 3411243121253444441
+鏁 3411243155525111234
+鏂 3411243112512512515
+鏃 3411243141533131134
+鏄 3411243112511214124
+鏅 341124313223542511
+鏆 3411243155212511134
+鏇 3411243141533152134
+鏈 341124311251112454
+鏉 3411243112512343534
+鏊 112153313434112431
+鏋 3411243112212523434
+鏌 341124311222511134
+鏍 3411243125121554234
+鏎 341124312511122112
+鏏 3411243111121112511
+鏐 3411243154154134333
+鏑 3411243141432512251
+鏒 3411243154545434333
+鏓 3411243132535414544
+鏔 3411243144512512134
+鏕 3411243141352211535
+鏖 4135221153534112431
+鏗 3411243112512554121
+鏘 3411243152133544124
+鏙 3411243125232411121
+鏚 3411243113211234534
+鏛 3411243124345251252
+鏜 3411243124345251121
+鏝 3411243125112522154
+鏞 3411243141351125112
+鏟 3411243141431331121
+鏠 341124313541112454
+鏡 3411243141431251135
+鏢 3411243112522111234
+鏣 3411243141312214444
+鏤 3411243125112512531
+鏥 3411243144532132511
+鏦 3411243133234342134
+鏧 1215213355434112431
+鏨 1251112331234112431
+鏩 3411243112511123312
+鏪 3411243112512212511
+鏫 3411243131234221234
+鏬 3411243121531534312
+鏭 3411243134312344544
+鏮 3411243141351124134
+鏯 3411243113434343434
+鏰 3411243125235113511
+鏱 3411243141431251112
+鏲 3411243141554453112
+鏳 34112431432524312511
+鏴 341124312512121354251
+鏵 341124311221122112
+鏶 34112431324111211234
+鏷 34112431224314311134
+鏸 34112431125112144544
+鏹 34112431515251251214
+鏺 34112431543345153554
+鏻 34112431431234354152
+鏼 34112431314314125234
+鏽 341124315112321155212
+鏾 34112431122125113134
+鏿 34112431243452511234
+鐀 34112431251212511134
+鐁 34112431122111343312
+鐂 34112431122155125121
+鐃 34112431121121121135
+鐄 3411243112212512134
+鐅 4325234313434112431
+鐆 5243135333434112431
+鐇 34112431343123425121
+鐈 34112431313425125251
+鐉 34112431515515122134
+鐊 3411243152251113533
+鐋 34112431441251113533
+鐌 3411243135251353334
+鐍 34112431545232534251
+鐎 34112431324111214444
+鐏 34112431431253511124
+鐐 34112431134432511234
+鐑 34112431554444121251
+鐒 34112431433443344553
+鐓 34112431412515213134
+鐔 34112431125221251112
+鐕 34112431153515352511
+鐖 34112431554554134534
+鐗 34112431251125113511
+鐘 34112431414312511211
+鐙 34112431543341251431
+鐚 34112431121551214544
+鐛 34112431251141251234
+鐜 41251521313434112431
+鐝 34112431134315233534
+鐞 34112431511121251124
+鐟 34112431113411342511
+鐠 34112431431224312511
+鐡 34112431121251431534
+鐢 12343434123434112431
+鐣 34112431243452513112
+鐤 34112431251115132125
+鐥 34112431431112431251
+鐦 34112431251125111132
+鐧 34112431251125112511
+鐨 34112431515322511134
+鐩 34112431431353334454
+鐪 341124312153152512153
+鐫 34112431324111212525
+鐬 341124312121131233534
+鐭 34112431325431234134
+鐮 341124314134315112234
+鐯 3411243112212132511
+鐰 341124312512512511234
+鐱 341124313412512513434
+鐲 341124312522135251214
+鐳 341124311452444425121
+鐴 341124315132514143112
+鐵 341124311212511121534
+鐶 341124312522112513534
+鐷 34112431122122151234
+鐸 341124312522112143112
+鐹 3411243125525251454
+鐺 341124312434525125121
+鐻 341124312153151353334
+鐼 34112431121222511134
+鐽 34112431121431112454
+鐾 513251414311234112431
+鐿 341124314143125114544
+鑀 341124313443454544354
+鑁 341124313444445234354
+鑂 3411243131254312114444
+鑃 3411243154154132411121
+鑄 3411243112151211251124
+鑅 3411243143344334451234
+鑆 3411243122431431121124
+鑇 3411243141432533543211
+鑈 3411243113425234343434
+鑉 341124311221215425221
+鑊 341124311223241112154
+鑋 1251112155512134112431
+鑌 3411243144512332511134
+鑍 2511134251113434112431
+鑎 3411243112512125111345
+鑏 3411243144545442522112
+鑐 3411243114524444132522
+鑑 3411243112512531425221
+鑒 1251253142522134112431
+鑓 341124312512125151454
+鑔 3411243144535445411234
+鑕 34112431331233122511134
+鑖 3411243112225221134534
+鑗 34112431312343533424134
+鑘 34112431251212512125121
+鑙 34112431312341354352511
+鑚 34112431113411342511134
+鑛 3411243141312212512134
+鑜 34112431243452512511134
+鑝 341124311223541112454
+鑞 34112431555253415445445
+鑟 34112431121252212511134
+鑠 34112431325115545541234
+鑡 34112431212134341343452
+鑢 34112431215315251214544
+鑣 34112431413522115354444
+鑤 34112431251112213424134
+鑥 34112431352512144442511
+鑦 34112431125125542511134
+鑧 3411243144512225111354
+鑨 3411243141431251121515111
+鑩 341124311225125112512511
+鑪 341124312153152512125221
+鑫 341124313411243134112431
+鑬 341124311251253142511135
+鑭 3411243125112511125431234
+鑮 341124311224411251124124
+鑯 3411243134341211121111534
+鑰 3411243134125125125125122
+鑱 3411243135251153535251354
+鑲 3411243141251251112213534
+鑳 3411243144511221342512134
+鑴 34112431252324111212534251
+鑵 3411243112225125132411121
+鑶 3411243112213513125125534
+鑷 34112431122111122111122111
+鑸 34112431251212512125121121
+鑹 34112431445343215115445445
+鑺 34112431251112511132411121
+鑻 341124311234343412341343112
+鑼 341124312522155444432411121
+鑽 341124313121353121352511134
+鑾 411125155444455444434112431
+鑿 2243143112321511355434112431
+钀 3411243121531512512543121344
+钁 3411243125111251113241112154
+钂 3411243124345251254312114444
+钃 34112431513241342522135251214
+钄 3411243112225112511125431234
+钅 31115
+钆 311155
+钇 311155
+针 3111512
+钉 3111512
+钊 3111522
+钋 3111524
+钌 3111552
+钍 31115121
+钎 31115312
+钏 31115322
+钐 31115333
+钑 31115354
+钒 31115354
+钓 31115354
+钔 31115425
+钕 31115531
+钖 31115533
+钗 31115544
+钘 311151132
+钙 311151215
+钚 311151324
+钛 311151344
+钜 311151515
+钝 311151525
+钞 311152343
+钟 311152512
+钠 311152534
+钡 311152534
+钢 311152534
+钣 311153354
+钤 311153445
+钥 311153511
+钦 311153534
+钧 311153541
+钨 311153551
+钩 311153554
+钪 311154135
+钫 311154153
+钬 311154334
+钭 311154412
+钮 311155211
+钯 311155215
+钰 3111511214
+钱 3111511534
+钲 3111512121
+钳 3111512211
+钴 3111512251
+钵 3111512341
+钶 3111512512
+钷 3111512515
+钸 3111513251
+钹 3111513544
+钺 3111515534
+钻 3111521251
+钼 3111525111
+钽 3111525111
+钾 3111525112
+钿 3111525121
+铀 3111525121
+铁 3111531134
+铂 3111532511
+铃 3111534454
+铄 3111535234
+铅 3111535251
+铆 3111535351
+铇 3111535515
+铈 3111541252
+铉 3111541554
+铊 3111544535
+铋 3111545434
+铌 3111551335
+铍 3111553254
+铎 3111554112
+铏 31115113222
+铐 31115121315
+铑 31115121335
+铒 31115122111
+铓 31115122415
+铔 31115122431
+铕 31115132511
+铖 31115135534
+铗 31115143134
+铘 31115152352
+铙 31115153135
+铚 31115154121
+铛 31115243511
+铜 31115251251
+铝 31115251251
+铞 31115251252
+铟 31115251341
+铠 31115252515
+铡 31115253422
+铢 31115311234
+铣 31115312135
+铤 31115312154
+铥 31115312154
+铦 31115312251
+铧 31115323512
+铨 31115341121
+铩 31115341234
+铪 31115341251
+铫 31115341534
+铬 31115354251
+铭 31115354251
+铮 31115355112
+铯 31115355215
+铰 31115413434
+铱 31115413534
+铲 31115414313
+铳 31115415435
+铴 31115441533
+铵 31115445531
+银 31115511534
+铷 31115531251
+铸 311151113124
+铹 311151224553
+铺 311151251124
+铻 311151251251
+铼 311151431234
+铽 311151454454
+链 311151512454
+铿 311152254121
+销 311152432511
+锁 311152432534
+锂 311152511211
+锃 311152511121
+锄 311152511153
+锅 311152512534
+锆 311153121251
+锇 311153121534
+锈 311153123453
+锉 311153434121
+锊 311153443124
+锋 311153541112
+锌 311154143112
+锍 311154154325
+锎 311154251132
+锏 311154252511
+锐 311154325135
+锑 311154351523
+锒 311154511534
+锓 311155114554
+锔 311155135251
+锕 311155212512
+锖 3111511212511
+锗 3111512132511
+锘 3111512213251
+错 3111512212511
+锚 3111512225121
+锛 3111513412132
+锜 3111513412512
+锝 3111525111124
+锞 3111525111234
+锟 3111525111535
+锠 3111525112511
+锡 3111525113533
+锢 3111525122511
+锣 3111525221354
+锤 3111531212211
+锥 3111532411121
+锦 3111532511252
+锧 3111533122534
+锨 3111533123534
+锩 3111543113455
+锪 3111535334544
+锫 3111541431251
+锬 3111543344334
+锭 3111544512134
+键 3111551111254
+锯 3111551312251
+锰 3111552125221
+锱 3111555525121
+锲 31115111253134
+锳 3111512225134
+锴 31115153532511
+锵 31115412354124
+锶 31115251214544
+锷 31115251251115
+锸 31115312321511
+锹 31115312344334
+锺 31115312511211
+锻 31115321113554
+锼 31115321511254
+锽 31115325111121
+锾 31115344311354
+锿 31115412513534
+镀 31115413122154
+镁 31115431121134
+镂 31115431234531
+镃 31115431554554
+镄 31115515322534
+镅 31115521325111
+镆 311151222511134
+镇 311151225111134
+镈 311151251124124
+镉 311151251254312
+镊 311151221115454
+镋 311152434525135
+镌 311153241112153
+镍 311153251111234
+镎 311153412513112
+镏 311153545325121
+镐 311154125125251
+镑 311154143454153
+镒 311154313425221
+镓 311154451353334
+镔 311154453212134
+镕 311154453434251
+镖 3111512522111234
+镗 3111524345251121
+镘 3111525112522154
+镙 3111525121554234
+镚 3111525235113511
+镛 3111541351125112
+镜 3111541431251135
+镝 3111541432512251
+镞 3111541533131134
+镟 3111541533152134
+镠 3111554154134333
+镡 31115125221251112
+镢 31115134315233534
+镣 31115134432511234
+镤 31115224314311134
+镥 31115352512112511
+镦 31115412515213134
+镧 31115425125341234
+镨 31115431224312511
+镩 31115445342512512
+镪 31115515251251214
+镫 31115543341251431
+镬 311151223241112154
+镭 311151452444425121
+镮 311152522112513534
+镯 311152522135251214
+镰 311154134315112234
+镱 311154143125114544
+镲 3111544535445411234
+镳 31115413522115354444
+镴 31115555253415445445
+镵 3111535251153535251354
+镶 3111541251251112213534
+長 12111534
+镸 1211154
+镹 1211154354
+镺 12111543134
+镻 121115431134
+镼 121115451352252
+镽 1211154134432511234
+镾 121115413425234343434
+长 3154
+門 25112511
+閁 251125113
+閂 251125111
+閃 2511251134
+閄 2511251134
+閅 2511251112
+閆 25112511111
+閇 25112511124
+閈 25112511112
+閉 25112511123
+閊 25112511252
+開 251125111132
+閌 251125114135
+閍 251125114153
+閎 251125111354
+閏 251125111121
+閐 251125113115
+閑 251125111234
+閒 251125113511
+間 251125112511
+閔 251125114134
+閕 251125111523
+閖 251125112534
+閗 251125114412
+閘 2511251125112
+閙 2511251141252
+閚 2511251141431
+閛 2511251114312
+閜 2511251112512
+閝 2511251134454
+閞 2511251154132
+閟 2511251145434
+閠 2511251111214
+閡 25112511415334
+関 25112511431134
+閣 25112511354251
+閤 25112511341251
+閥 25112511321534
+閦 25112511343434
+閧 25112511122134
+閨 25112511121121
+閩 25112511251214
+閪 25112511125351
+閫 251125112512341
+閬 251125114511534
+閭 25112511251251
+閮 25112511312154
+閯 251125114412343
+閰 25112511321511
+閱 251125113425135
+閲 251125114325135
+閳 251125111251112
+閴 251125112511134
+閵 2511251132411121
+閶 2511251125112511
+閷 3412342511251134
+閸 2511251112155121
+閹 2511251113425115
+閺 2511251125114134
+閻 2511251135321511
+閼 2511251141533444
+閽 2511251135152511
+閾 2511251112511534
+閿 2511251134434554
+闀 25112511122134515
+闁 2511251125112511
+闂 2511251143113455
+闃 25112511251111344
+闄 25112511125221531
+闅 25112511251112154
+闆 25112511251251251
+闇 25112511414312511
+闈 25112511521251152
+闉 25112511125221121
+闊 25112511441312251
+闋 25112511543341134
+闌 25112511125431234
+闍 2511251112132511
+闎 25112511325112534
+闏 25112511353251214
+闐 251125111225111134
+闑 251125113251111234
+闒 251125112511541541
+闓 251125112521251431
+闔 251125111215425221
+闕 251125114315233534
+闖 251125111211254444
+闗 251125115545544444
+闘 251125111251431124
+闙 2511251145132513134
+闚 2511251111342511135
+闛 2511251124345251121
+關 2511251155455453212
+闝 2511251125111343134
+闞 2511251151221113134
+闟 25112511341251541541
+闠 25112511251212511134
+闡 25112511251251251112
+闢 251125115132514143112
+闣 251125112434525125121
+闤 251125112522112513534
+闥 25112511121431112454
+闦 251125112512211251431
+闧 251125111212513234454
+门 425
+闩 4251
+闪 42534
+闫 425111
+闬 425112
+闭 425123
+问 425251
+闯 425551
+闰 4251121
+闱 4251152
+闲 4251234
+闳 4251354
+间 4252511
+闵 4254134
+闶 4254135
+闷 4254544
+闸 42525112
+闹 42541252
+闺 425121121
+闻 425122111
+闼 425134454
+闽 425251214
+闾 425251251
+闿 425252515
+阀 425321534
+阁 425354251
+阂 425415334
+阃 4252512341
+阄 4253525115
+阅 4254325135
+阆 4254511534
+阇 42512132511
+阈 42512511534
+阉 42513425115
+阊 42525112511
+阋 42532151135
+阌 42534434554
+阍 42535152511
+阎 42535321511
+阏 42541533444
+阐 42543251112
+阑 425125431234
+阒 425251111344
+阓 425251212534
+阔 425441312251
+阕 425543341134
+阖 4251215425221
+阗 4251225111134
+阘 4252511541541
+阙 4254315233534
+阚 42551221113134
+阛 4252522112513534
+阜 32515112
+阝 52
+阞 5253
+队 5234
+阠 52512
+阡 52312
+阢 52135
+阣 52315
+阤 52525
+阥 522534
+阦 524334
+阧 524412
+阨 521355
+阩 523132
+阪 523354
+阫 521324
+阬 524135
+阭 525435
+阮 521135
+阯 522121
+阰 521535
+阱 521132
+防 524153
+阳 522511
+阴 523511
+阵 521512
+阶 523432
+阷 5212121
+阸 5245135
+阹 5212154
+阺 5235154
+阻 5225111
+阼 5231211
+阽 5221251
+阾 5234454
+阿 5212512
+陀 5244535
+陁 5231525
+陂 5253254
+陃 5212534
+附 5232124
+际 5211234
+陆 5211252
+陇 5213534
+陈 5215234
+陉 5254121
+陊 52354354
+陋 52125345
+陌 52132511
+降 52354152
+陎 52311234
+陏 52132511
+限 52511534
+陑 52132522
+陒 52351355
+陓 52134115
+陔 52415334
+陕 52143134
+陖 525434354
+陗 522432511
+陘 521555121
+陙 521311534
+陚 5211212154
+陛 521535121
+陜 521343434
+陝 521343434
+陞 523132121
+陟 522121233
+陠 521251124
+陡 521212134
+院 524451135
+陣 521251112
+除 523411234
+陥 523522511
+陦 521113124
+陧 522511121
+陨 522512534
+险 523414431
+陪 5241431251
+陫 5221112111
+陬 5212211154
+陭 5213412512
+陮 5232411121
+陯 5234125122
+陰 5234451154
+陱 5235431234
+陲 5231212211
+陳 5212511234
+陴 5232511312
+陵 5212134354
+陶 5235311252
+陷 5235321511
+陸 5212134121
+陹 5231322511
+険 5234125134
+陻 52125221121
+陼 5212132511
+陽 52251113533
+陾 52132522134
+陿 52113434345
+隀 52312511211
+隁 52125115315
+隂 52341211154
+隃 52341251122
+隄 52251112134
+隅 52251125214
+隆 52354131121
+隇 52131531534
+隈 52251211534
+隉 52321511121
+隊 52431353334
+隋 52131212511
+隌 52414312511
+隍 52325111121
+階 52153532511
+随 52132511454
+隐 52355114544
+隑 522521251431
+隒 524315112234
+隓 521312113121
+隔 521251254312
+隕 522512511134
+隖 523251154444
+隗 52325113554
+隘 524313425221
+隙 522342511234
+隚 5224345251121
+際 5235445411234
+障 5241431251112
+隝 5232511154444
+隞 521121533134
+隟 5255525111234
+隠 5234435114544
+隡 5241431331121
+隢 52121121121135
+隣 52431234354152
+隤 52251212511134
+隥 52543341251431
+隦 525132514143112
+隧 52431353334454
+隨 52131212511454
+隩 52325431234134
+險 523412512513434
+隫 52121222511134
+隬 5213425234343434
+隭 5214524444132522
+隮 5241432533543211
+隯 5212151211251124
+隰 5225115545544444
+隱 5234431215114544
+隲 5223431211254444
+隳 52131212511342444
+隴 5241431251121515111
+隵 5221531512514311534
+隶 51124134
+隷 1211123451124134
+隸 12341123451124134
+隹 32411121
+隺 4532411121
+隻 3241112154
+隼 3241112112
+隽 3241112153
+难 5432411121
+隿 15432411121
+雀 23432411121
+雁 133232411121
+雂 344532411121
+雃 113232411121
+雄 135432411121
+雅 152332411121
+集 324111211234
+雇 451332411121
+雈 212132411121
+雉 3113432411121
+雊 3525132411121
+雋 324111212525
+雌 21213532411121
+雍 4155332411121
+雎 2511132411121
+雏 3551132411121
+雐 21531532411121
+雑 35123432411121
+雒 35425132411121
+雓 341123432411121
+雔 3241112132411121
+雕 3512125132411121
+雖 25125121432411121
+雗 122511123432411121
+雘 35411223241112154
+雙 324111213241112154
+雚 12225125132411121
+雛 355233552332411121
+雜 413434123432411121
+雝 555251521532411121
+雞 344355413432411121
+雟 523324111212534251
+雠 324111214532411121
+雡 5415413433332411121
+離 413452255432411121
+難 1221251113432411121
+雤 321134345114532411121
+雥 324111213241112132411121
+雦 324111213241112132411121
+雧 3241112132411121324111211234
+雨 12524444
+雩 14524444115
+雪 14524444511
+雫 14524444124
+雬 145244441234
+雭 14524444354
+雮 145244443115
+雯 145244444134
+雰 145244443453
+雱 145244444153
+雲 145244441154
+雳 145244441353
+雴 1452444441431
+雵 1452444425134
+零 1452444434454
+雷 1452444425121
+雸 1452444412211
+雹 1452444435515
+雺 1452444454523
+電 1452444425115
+雼 1452444413251
+雽 1452444434312
+雾 1452444435453
+雿 14524444341534
+需 14524444132522
+霁 14524444413432
+霂 145244444411234
+霃 145244444414535
+霄 145244442432511
+霅 145244444111251
+霆 14524444312154
+震 145244441311534
+霈 145244444411251
+霉 145244443155414
+霊 145244441122431
+霋 1452444415112531
+霌 1452444435121251
+霍 1452444432411121
+霎 1452444441431531
+霏 1452444421112111
+霐 1452444444151554
+霑 1452444444121251
+霒 1452444411543445
+霓 1452444432151135
+霔 1452444444141121
+霕 1452444411541525
+霖 1452444412341234
+霗 1452444444134454
+霘 14524444441251251
+霙 1452444412225134
+霚 14524444545233134
+霛 14524444515515515
+霜 14524444123425111
+霝 14524444251251251
+霞 14524444512115154
+霟 14524444441122134
+霠 14524444414313445
+霡 14524444351145534
+霢 145244443511333534
+霣 145244442512511134
+霤 145244443545325121
+霥 145244444511353334
+霦 1452444412341234333
+霧 145244445452335453
+霨 1452444451311234124
+霩 145244444125152152
+霪 1452444444134433121
+霫 1452444454154132511
+霬 1452444425121122134
+霭 1452444445251135345
+霮 14524444441122111345
+霯 14524444543341251431
+霰 14524444122125113134
+霱 14524444545232534251
+露 145244442512121354251
+霳 1452444452354131121
+霴 14524444115451124134
+霵 14524444251122111534
+霶 145244444414143454153
+霷 145244442511251113533
+霸 145244441221251123511
+霹 145244445132514143112
+霺 145244443322521353134
+霻 145244442512211251431
+霼 1452444411543115431234
+霽 1452444441432533543211
+霾 1452444434435332511211
+霿 145244445452335425111
+靀 145244441224511353334
+靁 14524444251212512125121
+靂 145244441331234312342121
+靃 145244443241112132411121
+靄 145244444111251251135345
+靅 145244441154515322511134
+靆 14524444115451124134454
+靇 145244444143125111515111
+靈 145244442512512511234341
+靉 1452444411543443454544354
+靊 14524444111221112521251431
+靋 145244444411331234312342121
+靌 145244444451121352342511134
+靍 145244443241112132511154444
+靎 145244443411243132511154444
+靏 14524444453241112132511154444
+靐 145244442512114524444251211452444425121
+靑 11212521
+青 11212511
+靓 112125112535
+靔 112125113115
+靕 1212111212511
+靖 4143111212511
+靗 11212511243135
+靘 11212511355215
+静 11212511355112
+靚 112125112511135
+靛 1121251144512134
+靜 1121251134435112
+靝 112125113115431234
+非 21112111
+靟 211121113115
+靠 312125121112111
+靡 4131234123421112111
+面 132522111
+靣 13252511
+靤 13252211135515
+靥 131344132522111
+靦 1325221112511135
+靧 132522111251212511134
+靨 13251125111344132522111
+革 122125112
+靪 12212511212
+靫 122125112544
+靬 122125112112
+靭 122125112534
+靮 122125112354
+靯 122125112121
+靰 122125112135
+靱 122125112534
+靲 1221251123445
+靳 1221251123312
+靴 1221251123235
+靵 1221251125211
+靶 1221251125215
+靷 1221251125152
+靸 122125112354
+靹 1221251122534
+靺 12212511211234
+靻 12212511225111
+靼 12212511225111
+靽 12212511243112
+靾 12212511212215
+靿 12212511255453
+鞀 12212511253251
+鞁 12212511253254
+鞂 12212511231234
+鞃 12212511251554
+鞄 12212511235515
+鞅 12212511225134
+鞆 12212511212534
+鞇 122125112251341
+鞈 122125112341251
+鞉 122125112341534
+鞊 122125112121251
+鞋 122125112121121
+鞌 445531122125112
+鞍 122125112445531
+鞎 122125112511534
+鞏 121354122125112
+鞐 122125112211124
+鞑 122125112134454
+鞒 122125112313432
+鞓 1221251122511121
+鞔 1221251123525135
+鞕 1221251121251134
+鞖 1221251123443531
+鞗 322354122125112
+鞘 1221251122432511
+鞙 1221251122512511
+鞚 12212511244534121
+鞛 12212511241431251
+鞜 12212511225342511
+鞝 12212511224325251
+鞞 12212511232511312
+鞟 12212511241251521
+鞠 12212511235431234
+鞡 12212511212141431
+鞢 122125112122151234
+鞣 122125112545231234
+鞤 121121124122125112
+鞥 122125112341251132
+鞦 122125112312344334
+鞧 122125112431253511
+鞨 122125112251135345
+鞩 122125112243251122
+鞪 545233134122125112
+鞫 122125112354111251
+鞬 12212511251111254
+鞭 122125112321251134
+鞮 122125112251112134
+鞯 122125112122132521
+鞰 122125112251125221
+鞱 1221251123443321511
+鞲 1221251121122125211
+鞳 122125112122341251
+鞴 1221251121221325112
+鞵 1221251123443554134
+鞶 3354143554122125112
+鞷 1251254312122125112
+鞸 1221251122511122112
+鞹 1221251124125152152
+鞺 12212511224345251121
+鞻 12212511225112512531
+鞼 122125112251212511134
+鞽 122125112313425125251
+鞾 1221251121221122112
+鞿 122125112554554134534
+韀 1221251124135221154444
+韁 1221251121251211251211
+韂 1221251123513344111251
+韃 122125112121431112454
+韄 1221251121223241112154
+韅 12212511225115545544444
+韆 122125112125221134515454
+韇 122125112121252212511134
+韈 12212511212225221134534
+韉 1221251121224135221154444
+韊 12212511212225112511125431234
+韋 521251152
+韌 521251152534
+韍 52125115213544
+韎 52125115211234
+韏 431134521251152
+韐 521251152341251
+韑 243135521251152
+韒 5212511522432511
+韓 12251112521251152
+韔 52125115212111534
+韕 52125115241251521
+韖 521251152545231234
+韗 521251152451251112
+韘 521251152122151234
+韙 251112134521251152
+韚 521251152122125112
+韛 5212511521221325112
+韜 5212511523443321511
+韝 5212511521122125211
+韞 521251152251125221
+韟 5212511523251113412
+韠 5212511522511122112
+韡 5212511521221122112
+韢 521251152125112144544
+韣 5212511522522135251214
+韤 52125115212225221134534
+韥 521251152121252212511134
+韦 1152
+韧 1152534
+韨 115213544
+韩 122511121152
+韪 2511121341152
+韫 1152251125221
+韬 11523443321511
+韭 211121111
+韮 122211121111
+韯 121211121111534
+韰 2135454211121111
+韱 34341211121111534
+韲 4143253354211121111
+音 414312511
+韴 4143125111252
+韵 4143125113541
+韶 41431251153251
+韷 41431251152252
+韸 4143125113541112
+韹 414312511325111121
+韺 41431251112225134
+韻 4143125112512511134
+韼 4143125113541112454
+韽 34451253511414312511
+韾 12152133554414312511
+響 55345115452414312511
+頀 4143125111223241112154
+頁 132511134
+頂 12132511134
+頃 15132511134
+頄 35132511134
+項 121132511134
+順 322132511134
+頇 112132511134
+須 333132511134
+頉 2121132511134
+頊 1121132511134
+頋 1355132511134
+頌 3454132511134
+頍 1254132511134
+頎 3312132511134
+頏 4135132511134
+預 5452132511134
+頑 1135132511134
+頒 3453132511134
+頓 1525132511134
+頔 25121132511134
+頕 21251132511134
+頖 43113132511134
+頗 53254132511134
+領 34454132511134
+頙 12121132511134
+頚 54121132511134
+頛 111234132511134
+頜 341251132511134
+頝 413434132511134
+頞 445531132511134
+頟 354251132511134
+頠 351355132511134
+頡 121251132511134
+頢 312251132511134
+頣 125125132511134
+頤 1225125132511134
+頥 2125125132511134
+頦 415334132511134
+頧 325151132511134
+頨 541541132511134
+頩 431132132511134
+頪 431234132511134
+頫 341534132511134
+頬 143134132511134
+頭 1251431132511134
+頮 2534132132511134
+頯 3544132132511134
+頰 1343434132511134
+頱 3443124132511134
+頲 312154132511134
+頳 1213234132511134
+頴 3511234132511134
+頵 5113251132511134
+頶 3121251132511134
+頷 3445251132511134
+頸 1555121132511134
+頹 3123435132511134
+頺 3123453132511134
+頻 2121233132511134
+頼 1251234132511134
+頽 3123435132511134
+頾 333132511134212135
+頿 333212135132511134
+顀 32411121132511134
+顁 44512134132511134
+顂 13434234132511134
+顃 43344334132511134
+顄 52413452132511134
+顅 45132511132511134
+顆 25111234132511134
+顇 41343412132511134
+顈 35554234132511134
+顉 34112431132511134
+顊 32515112132511134
+顋 251214544132511134
+題 251112134132511134
+額 445354251132511134
+顎 251251115132511134
+顏 413413333132511134
+顐 451251112132511134
+顑 131251534132511134
+顒 251125214132511134
+顓 252132522132511134
+顔 414313333132511134
+顕 251122431132511134
+顖 3253414544132511134
+顗 2521251431132511134
+願 1332511234132511134
+顙 5454541234132511134
+顚 3525111534132511134
+顛 1225111134132511134
+顜 1122125211132511134
+顝 255452511132511134
+類 4312341344132511134
+顟 54154134333132511134
+顠 12522111234132511134
+顡 41431353334132511134
+顢 12212523434132511134
+顣 13211234534132511134
+顤 121121121135132511134
+顥 251141251234132511134
+顦 324111214444132511134
+顧 451332411121132511134
+顨 132511134132511134132
+顩 3412512513434132511134
+顪 2121131233534132511134
+顫 4125251125111132511134
+顬 14524444132522132511134
+顭 1222522145354132511134
+顮 44512332511134132511134
+顯 25115545544444132511134
+顰 212123313251113432511312
+顱 2153152512125221132511134
+顲 4334433441252511132511134
+顳 122111122111122111132511134
+顴 12225125132411121132511134
+页 132534
+顶 12132534
+顷 15132534
+顸 112132534
+项 121132534
+顺 322132534
+须 333132534
+顼 1121132534
+顽 1135132534
+顾 1355132534
+顿 1525132534
+颀 3312132534
+颁 3453132534
+颂 3454132534
+颃 4135132534
+预 5452132534
+颅 21513132534
+领 34454132534
+颇 53254132534
+颈 54121132534
+颉 121251132534
+颊 143134132534
+颋 312154132534
+颌 341251132534
+颍 352534132534
+颎 354334132534
+颏 415334132534
+颐 1225125132534
+频 2121233132534
+颒 2534132132534
+颓 3123435132534
+颔 3445251132534
+颕 3511234132534
+颖 3531234132534
+颗 25111234132534
+题 251112134132534
+颙 251125214132534
+颚 251251115132534
+颛 252132522132534
+颜 414313333132534
+额 445354251132534
+颞 1221115454132534
+颟 1221253434132534
+颠 1225111134132534
+颡 5454541234132534
+颢 251141251234132534
+颣 431234554234132534
+颤 4125251125111132534
+颥 14524444132522132534
+颦 212123313253432511312
+颧 12225125132411121132534
+風 353251214
+颩 353251214333
+颪 124353251214
+颫 3532512141134
+颬 3532512141523
+颭 35325121421251
+颮 35325121435515
+颯 41431353251214
+颰 35325121413544
+颱 35325121454251
+颲 353251214135422
+颳 353251214312251
+颴 3532512143152134
+颵 3532512142432511
+颶 35325121425111134
+颷 35325121443344334
+颸 353251214251214544
+颹 353251214521251152
+颺 353251214251113533
+颻 3443311252353251214
+颼 353251214321511254
+颽 2521251431353251214
+颾 353251214544251214
+颿 1211254444353251214
+飀 3532512143545325121
+飁 54154132511353251214
+飂 35325121454154134333
+飃 35325121412522111234
+飄 12522111234353251214
+飅 353251214122155125121
+飆 134413441344353251214
+飇 353251214134413441344
+飈 353251214433443344334
+飉 353251214134432511234
+飊 433443344334353251214
+飋 3532512141121112145434
+飌 12225125132411121353251214
+飍 353251214353251214353251214
+风 3534
+飏 3534533
+飐 353421251
+飑 353435515
+飒 414313534
+飓 353425111134
+飔 3534251214544
+飕 3534321511254
+飖 34433112523534
+飗 35343545325121
+飘 125221112343534
+飙 1344134413443534
+飚 3534433443344334
+飛 534353432
+飜 343123425121534353432
+飝 534353432534353432534353432
+飞 534
+食 344511534
+飠 34451154
+飡 41344511534
+飢 3445115435
+飣 3445115412
+飤 3445115434
+飥 34451154315
+飦 34451154112
+飧 354344511534
+飨 553344511534
+飩 344511541525
+飪 344511543121
+飫 344511543134
+飬 4311344511534
+飭 344511543153
+飮 3445115113534
+飯 344511543354
+飰 344511544124
+飱 135434451154
+飲 344511543534
+飳 3445115441121
+飴 3445115454251
+飵 3445115431211
+飶 3445115445434
+飷 3445115425111
+飸 25115344511534
+飹 3445115435352
+飺 212135344511534
+飻 3445115434333
+飼 3445115451251
+飽 3445115435515
+飾 3445115431252
+飿 3445115452252
+餀 3445115412234
+餁 34451154323121
+餂 34451154312251
+餃 34451154413434
+餄 34451154341251
+餅 34451154431132
+餆 34451154341534
+餇 34451154251251
+餈 413534344511534
+餉 34451154325251
+養 43111344511534
+餋 431134344511534
+餌 34451154122111
+餍 131344344511534
+餎 34451154354251
+餏 34451154413534
+餐 2135454344511534
+餑 344511541245521
+餒 344511543443531
+餓 344511543121534
+餔 344511541251124
+餕 344511545434354
+餖 344511541251431
+餗 344511541251234
+餘 344511543411234
+餙 344511543413252
+餚 3445115434132511
+餛 3445115425111535
+餜 3445115425111234
+餝 344511541224153
+餞 3445115415341534
+餟 3445115454545454
+餠 3445115431133112
+餡 3445115435321511
+餢 3445115441431251
+餣 3445115413425115
+餤 3445115443344334
+餥 21112111344511534
+餦 3445115412111534
+餧 3445115431234531
+館 3445115444525151
+餩 3445115434415334
+餪 34451154132522134
+餫 34451154451251112
+餬 34451154122513511
+餭 34451154325111121
+餮 135434333344511534
+餯 34451154551353334
+餰 34451154332441112
+餱 34451154325131134
+餲 34451154251135345
+餳 34451154251113533
+餴 3445115413412132
+餵 34451154251211534
+餶 34451154255452511
+餷 34451154123425111
+餸 34451154431134454
+餹 344511544135112251
+餺 344511541251124124
+餻 344511544311214444
+餼 344511543115431234
+餽 34451154325113554
+餾 344511543545325121
+餿 34451154321511254
+饀 344511543443321511
+饁 344511541215425221
+饂 34451154251125221
+饃 344511541222511134
+饄 3445115424345251121
+饅 3445115425112522154
+饆 344511542511122112
+饇 3445115412512512515
+饈 344511544311135211
+饉 3445115412212511121
+饊 34451154122125113134
+饋 34451154251212511134
+饌 34451154515515122134
+饍 34451154431112431251
+饎 34451154121251431251
+饏 51221113134344511534
+饐 34451154121451251431
+饑 34451154554554134534
+饒 34451154121121121135
+饓 34451154243452511234
+饔 4155332411121344511534
+饕 2511521531535344511534
+饖 344511542121131233534
+饗 55345115452344511534
+饘 344511544125251125111
+饙 34451154121222511134
+饚 344511541221215425221
+饛 344511541224511353334
+饜 13251125111344344511534
+饝 344511544131234123413251
+饞 3445115435251153535251354
+饟 3445115441251251112213534
+饠 344511542522155444432411121
+饡 344511543121353121352511134
+饢 344511541251245251251112213534
+饣 355
+饤 35512
+饥 35535
+饦 355315
+饧 355533
+饨 3551525
+饩 3553115
+饪 3553121
+饫 3553134
+饬 3553153
+饭 3553354
+饮 3553534
+饯 35511534
+饰 35531252
+饱 35535515
+饲 35551251
+饳 35552252
+饴 35554251
+饵 355122111
+饶 355153135
+饷 355325251
+饸 355341251
+饹 355354251
+饺 355413434
+饻 355413534
+饼 355431132
+饽 3551245521
+饾 3551251431
+饿 3553121534
+馀 3553411234
+馁 3553443531
+馂 3555434354
+馃 35525111234
+馄 35525111535
+馅 35535321511
+馆 35544525151
+馇 355123425111
+馈 355251212534
+馉 355255452511
+馊 355321511254
+馋 355352513544
+馌 3551215425221
+馍 3551222511134
+馎 3551251124124
+馏 3553545325121
+馐 3554311135211
+馑 35512212511121
+馒 35525112522154
+馓 355122125113134
+馔 355515515122134
+馕 3551251245251251112213534
+首 431325111
+馗 35431325111
+馘 43132511112511534
+香 312342511
+馚 3123425113453
+馛 31234251113544
+馜 31234251151335
+馝 31234251145434
+馞 3123425111245521
+馟 3123425113443521
+馠 3123425113445251
+馡 31234251121112111
+馢 31234251115341534
+馣 31234251113425115
+馤 312342511251135345
+馥 312342511312511354
+馦 3123425114315112234
+馧 312342511251125221
+馨 12152133554312342511
+馩 312342511121222511134
+馪 31234251144512332511134
+馫 312342511312342511312342511
+馬 1211254444
+馭 121125444454
+馮 411211254444
+馯 1211254444112
+馰 1211254444354
+馱 1211254444134
+馲 1211254444315
+馳 1211254444525
+馴 1211254444322
+馵 1211254444132
+馶 12112544441254
+馷 12112544441252
+馸 12112544443312
+馹 12112544442511
+馺 1211254444354
+馻 12112544445435
+馼 12112544444134
+馽 12112544442512
+馾 12112544444535
+馿 12112544444513
+駀 12112544441354
+駁 12112544443434
+駂 35121211254444
+駃 12112544445134
+駄 12112544441344
+駅 12112544445134
+駆 12112544441345
+駇 12112544443134
+駈 121125444432121
+駉 121125444425251
+駊 121125444453254
+駋 121125444453251
+駌 354551211254444
+駍 121125444414312
+駎 121125444425121
+駏 12112544441515
+駐 121125444441121
+駑 531541211254444
+駒 121125444435251
+駓 121125444413241
+駔 121125444425111
+駕 532511211254444
+駖 121125444434454
+駗 121125444434333
+駘 121125444454251
+駙 121125444432124
+駚 121125444425134
+駛 121125444425134
+駜 121125444445434
+駝 121125444444535
+駞 121125444431525
+駟 121125444425351
+駠 121125444435352
+駡 2512511211254444
+駢 1211254444431132
+駣 1211254444341534
+駤 1211254444154121
+駥 1211254444113534
+駦 4311341211254444
+駧 1211254444251251
+駨 1211254444352511
+駩 1211254444341121
+駪 1211254444312135
+駫 1211254444243135
+駬 1211254444122111
+駭 1211254444415334
+駮 1211254444413434
+駯 1211254444311234
+駰 1211254444251341
+駱 1211254444354251
+駲 1211254444434242
+駳 1211254444321554
+駴 12112544441132534
+駵 12112544441321551
+駶 12112544445135251
+駷 12112544441251234
+駸 12112544445114554
+駹 12112544441353334
+駺 12112544444511534
+駻 12112544442511112
+駼 12112544443411234
+駽 12112544442512511
+駾 12112544444325135
+駿 12112544445434354
+騀 12112544443121534
+騁 12112544442512115
+騂 12112544444143112
+騃 12112544445431134
+騄 121125444451124134
+騅 121125444432411121
+騆 121125444435121251
+騇 121125444434112251
+騈 121125444431133112
+騉 121125444425111535
+騊 121125444435311252
+騋 121125444413434234
+騌 121125444444511234
+騍 121125444425111234
+騎 121125444413412512
+騏 121125444412211134
+騐 121125444434454544
+騑 121125444421112111
+騒 121125444454251214
+験 121125444434125134
+騔 1211254444251135345
+騕 1211254444125221531
+騖 5452331341211254444
+騗 4513251221211254444
+騘 1211254444353344544
+騙 1211254444451325122
+騚 1211254444431251122
+騛 1211254444534353432
+騜 1211254444325111121
+騝 121125444451111254
+騞 1211254444111213251
+騟 1211254444341251122
+騠 1211254444251112134
+騡 1211254444325112534
+騢 1211254444512115154
+騣 1211254444345234354
+騤 1211254444543341134
+騥 1211254444545231234
+騦 1211254444251214544
+騧 121125444425525251
+騨 1211254444443251112
+騩 1211254444325113554
+騪 1211254444321511254
+騫 44511221341211254444
+騬 12112544443122113534
+騭 5221212331211254444
+騮 12112544443545325121
+騯 12112544444143454153
+騰 35114311341211254444
+騱 12112544443443554134
+騲 1211254444122251112
+騳 12112544441211254444
+騴 12112544442511445531
+騵 12112544441332511234
+騶 12112544443552335523
+騷 1211254444544251214
+騸 12112544444513541541
+騹 121125444412212511121
+騺 121431123541211254444
+騻 121125444413434343434
+騼 121125444441352211535
+騽 121125444454154132511
+騾 121125444425121554234
+騿 121125444441431251112
+驀 12225111341211254444
+驁 11215331341211254444
+驂 121125444454545434333
+驃 121125444412522111234
+驄 121125444432535414544
+驅 121125444412512512515
+驆 12112544442511122112
+驇 121341213541211254444
+驈 1211254444545232534251
+驉 121125444421531522431
+驊 12112544441221122112
+驋 1211254444543345153554
+驌 12112544445112321155122
+驍 1211254444121121121135
+驎 1211254444431234354152
+驏 1211254444513521521521
+驐 1211254444412515213134
+驑 1211254444122155125121
+驒 1211254444251251251112
+驓 1211254444432524312511
+驔 1211254444125221251112
+驕 1211254444313425125251
+驖 12112544441212511121534
+驗 12112544443412512513434
+驘 41525135111211254444354
+驙 12112544444125251125111
+驚 1223525131341211254444
+驛 12112544442522112143112
+驜 12112544442243143111234
+驝 121125444412145132511234
+驞 121125444444512332511134
+驟 121125444412211154323334
+驠 12112544441221251211354444
+驡 414312511215151111211254444
+驢 12112544442153152512125221
+驣 12112544444311341211254444
+驤 121125444441251251112213534
+驥 12112544442113525121122134
+驦 121125444414524444123425111
+驧 121125444412212511235431234
+驨 1211254444252324111212534251
+驩 121125444412225125132411121
+驪 12112544441254125441352211535
+驫 121125444412112544441211254444
+马 551
+驭 55154
+驮 551134
+驯 551322
+驰 551525
+驱 5511345
+驲 5512511
+驳 5513434
+驴 5514513
+驵 55125111
+驶 55125134
+驷 55125351
+驸 55132124
+驹 55135251
+驺 55135511
+驻 55141121
+驼 55144535
+驽 53154551
+驾 53251551
+驿 55154112
+骀 55154251
+骁 551153135
+骂 251251551
+骃 551251341
+骄 551313432
+骅 551323512
+骆 551354251
+骇 551415334
+骈 551431132
+骉 551551551
+骊 5511254254
+骋 5512512115
+验 5513414431
+骍 5514143112
+骎 5515114554
+骏 5515434354
+骐 55112211134
+骑 55113412512
+骒 55125111234
+骓 55132411121
+骔 55144511234
+骕 55151123234
+骖 55154134333
+骗 551451325122
+骘 522121233551
+骙 551543341134
+骚 551544251214
+骛 545233134551
+骜 1121533134551
+骝 5513545325121
+骞 4451122134551
+骟 5514513541541
+骠 55112522111234
+骡 55125121554234
+骢 55132535414544
+骣 551513521521521
+骤 55112211154323334
+骥 5512113525121122134
+骦 55114524444123425111
+骧 55141251251112213534
+骨 255452511
+骩 25545251135
+骪 255452511354
+骫 255452511354
+骬 255452511112
+骭 255452511112
+骮 255452511154
+骯 2554525114135
+骰 2554525113554
+骱 2554525113432
+骲 25545251135515
+骳 25545251153254
+骴 255452511212135
+骵 25545251112341
+骶 25545251135154
+骷 25545251112251
+骸 255452511415334
+骹 255452511413434
+骺 255452511331251
+骻 255452511134115
+骼 255452511354251
+骽 2554525113443531
+骾 2554525111251134
+骿 255452511431132
+髀 25545251132511312
+髁 25545251125111234
+髂 255452511445354251
+髃 255452511251125214
+髄 255452511132511454
+髅 255452511431234531
+髆 2554525111251124124
+髇 2554525114125125251
+髈 2554525114143454153
+髉 2554525114532411121
+髊 255452511431113121
+髋 2554525114451222535
+髌 2554525114453212134
+髍 25545251141312341234
+髎 25545251154154134333
+髏 25545251125112512531
+髐 255452511121121121135
+髑 2554525112522135251214
+髒 255452511122135435132
+髓 255452511131212511454
+體 2554525112512211251431
+髕 25545251144512332511134
+髖 25545251144512225111354
+髗 2554525112153152512125221
+高 4125125251
+髙 41221125251
+髚 41251252514135
+髛 412512525151335
+髜 412512525125113132
+髝 4125125251433443344553
+髞 41251252512512512511234
+髟 1211154333
+髠 121115433335
+髡 1211154333135
+髢 1211154333525
+髣 12111543334153
+髤 12111543331234
+髥 12111543332511
+髦 12111543333115
+髧 12111543334535
+髨 12111543331135
+髩 12111543331255
+髪 12111543331354
+髫 121115433353251
+髬 121115433313241
+髭 1211154333212135
+髮 121115433313544
+髯 121115433325211
+髰 121115433312215
+髱 121115433335515
+髲 121115433353254
+髳 121115433354523
+髴 121115433351532
+髵 1211154333132522
+髶 1211154333122111
+髷 1211154333251221
+髸 1211154333122134
+髹 1211154333321234
+髺 1211154333312251
+髻 1211154333121251
+髼 12111543333541112
+髽 12111543333434121
+髾 12111543332432511
+髿 12111543334412343
+鬀 12111543334351523
+鬁 12111543333123422
+鬂 12111543333212134
+鬃 121115433344511234
+鬄 121115433325113533
+鬅 121115433335113511
+鬆 121115433312343454
+鬇 1211154333355112
+鬈 121115433343113455
+鬉 1211154333345234354
+鬊 1211154333111342511
+鬋 1211154333431251122
+鬌 1211154333131212511
+鬍 1211154333122513511
+鬎 1211154333125123422
+鬏 1211154333312344334
+鬐 12111543331213352511
+鬑 12111543334315112234
+鬒 12111543331225111134
+鬓 12111543334453212134
+鬔 12111543333541112454
+鬕 12111543331222511134
+鬖 121115433354545434333
+鬗 121115433312212523434
+鬘 121115433325112522154
+鬙 1211154333432524312511
+鬚 1211154333333132511134
+鬛 12111543333253415445445
+鬜 1211154333251125113511
+鬝 1211154333251125112511
+鬞 12111543332512211311534
+鬟 12111543332522112513534
+鬠 12111543333412524312511
+鬡 121115433344545442522112
+鬢 121115433344512332511134
+鬣 1211154333555253415445445
+鬤 121115433341251251112213534
+鬥 1121211212
+鬦 11212112124412
+鬧 112121121241252
+鬨 1121211212122134
+鬩 112121121232151135
+鬪 11212112121251431124
+鬫 112121121251221113134
+鬬 1121211212351255151213312
+鬭 11212112122151525151213312
+鬮 112121121232511255115115341
+鬯 3444445235
+鬰 123434341234453444445235333
+鬱 12343112521234453444445235333
+鬲 1251254312
+鬳 2153151251254312
+鬴 12512543121251124
+鬵 153515351251254312
+鬶 113425351251254312
+鬷 1251254312345234354
+鬸 12512543123545325121
+鬹 113425111351251254312
+鬺 125125431231251113533
+鬻 5154312345151251254312
+鬼 325113554
+鬽 325113554333
+鬾 3251135541254
+鬿 3251135543312
+魀 3251135543432
+魁 3251135544412
+魂 1154325113554
+魃 32511355413544
+魄 32511325113554
+魅 32511355411234
+魆 32511355415534
+魇 131344325113554
+魈 3251135542432511
+魉 3251135541253434
+魊 32511355412511534
+魋 32511355432411121
+魌 32511355412211134
+魍 32511355425431415
+魎 32511355412523434
+魏 31234531325113554
+魐 3251135544315112234
+魑 3251135544134522554
+魒 32511355412522111234
+魓 3251135542511122112
+魔 41312341234325113554
+魕 325113554554554134534
+魖 32511355421531522431
+魗 12151211251124325113554
+魘 13251125111344325113554
+魙 44112511123312325113554
+魚 35251214444
+魛 3525121444453
+魜 3525121444434
+魝 3525121444422
+魞 3525121444434
+魟 35251214444121
+魠 35251214444315
+魡 35251214444354
+魢 35251214444515
+魣 352512144445452
+魤 352512144443235
+魥 35251214444354
+魦 352512144442343
+魧 352512144444135
+魨 352512144441525
+魩 352512144443533
+魪 352512144443432
+魫 352512144444535
+魬 352512144443354
+魭 352512144441135
+魮 352512144441535
+魯 352512144442511
+魰 352512144444134
+魱 352512144441551
+魲 352512144444513
+魳 352512144441252
+魴 352512144444153
+魵 352512144443453
+魶 352512144442534
+魷 352512144441354
+魸 352512144443215
+魹 352512144443115
+魺 3525121444412512
+魻 3525121444425112
+魼 3525121444412154
+魽 3525121444412211
+魾 3525121444413241
+魿 3525121444434454
+鮀 3525121444444535
+鮁 3525121444413544
+鮂 3525121444425341
+鮃 3525121444414312
+鮄 3525121444451532
+鮅 3525121444445434
+鮆 21213535251214444
+鮇 3525121444411234
+鮈 3525121444435251
+鮉 3525121444453251
+鮊 3525121444432511
+鮋 3525121444425121
+鮌 3525121444441554
+鮍 3525121444453254
+鮎 3525121444421251
+鮏 3525121444431121
+鮐 3525121444454251
+鮑 3525121444435515
+鮒 3525121444432124
+鮓 3525121444431211
+鮔 352512144441515
+鮕 3525121444412251
+鮖 3525121444413251
+鮗 3525121444435444
+鮘 3525121444432154
+鮙 35251214444541541
+鮚 35251214444121251
+鮛 35251214444211234
+鮜 35251214444331251
+鮝 43113435251214444
+鮞 35251214444132522
+鮟 35251214444445531
+鮠 35251214444351355
+鮡 35251214444341534
+鮢 35251214444311234
+鮣 3525121444435152
+鮤 13542235251214444
+鮥 35251214444354251
+鮦 35251214444251251
+鮧 35251214444151534
+鮨 35251214444352511
+鮩 35251214444431132
+鮪 35251214444132511
+鮫 35251214444413434
+鮬 35251214444134115
+鮭 35251214444121121
+鮮 35251214444431112
+鮯 35251214444341251
+鮰 35251214444252511
+鮱 35251214444121335
+鮲 35251214444321344
+鮳 35251214444121315
+鮴 35251214444321234
+鮵 352512144444325135
+鮶 352512144445113251
+鮷 352512144444351523
+鮸 352512144443525135
+鮹 352512144442432511
+鮺 43111335251214444
+鮻 352512144445434354
+鮼 352512144445114554
+鮽 352512144443411234
+鮾 352512144443443531
+鮿 352512144441221115
+鯀 352512144443554234
+鯁 352512144441251134
+鯂 352512144441253511
+鯃 352512144441251251
+鯄 352512144441241344
+鯅 35251214444321554
+鯆 352512144441251124
+鯇 352512144444451135
+鯈 32235435251214444
+鯉 352512144442511211
+鯊 441234335251214444
+鯋 352512144444412343
+鯌 352512144443121251
+鯍 352512144444154325
+鯎 35251214444135534
+鯏 352512144443123422
+鯐 352512144441212134
+鯑 352512144443413252
+鯒 352512144445425112
+鯓 352512144443251113
+鯔 3525121444455525121
+鯕 3525121444412211134
+鯖 3525121444411212511
+鯗 431113435251214444
+鯘 3525121444431234531
+鯙 3525121444441251521
+鯚 3525121444431234521
+鯛 3525121444435121251
+鯜 3525121444441431531
+鯝 3525121444425122511
+鯞 3525121444451145252
+鯟 3525121444412511234
+鯠 3525121444413434234
+鯡 3525121444421112111
+鯢 3525121444432151135
+鯣 3525121444425113533
+鯤 3525121444425111535
+鯥 3525121444412134121
+鯦 3525121444435424251
+鯧 3525121444425112511
+鯨 3525121444441251234
+鯩 3525121444434125122
+鯪 3525121444412134354
+鯫 3525121444412211154
+鯬 3123435335251214444
+鯭 3525121444452125221
+鯮 3525121444444511234
+鯯 3525121444431125222
+鯰 3525121444434454544
+鯱 3525121444421531535
+鯲 3525121444441533444
+鯳 3525121444441335154
+鯴 3525121444453251214
+鯵 3525121444454134333
+鯶 35251214444451251112
+鯷 35251214444251112134
+鯸 35251214444325131134
+鯹 35251214444251131121
+鯺 3525121444412132511
+鯻 35251214444125123422
+鯼 35251214444345234354
+鯽 352512144445115452
+鯾 35251214444321251134
+鯿 35251214444451325122
+鰀 35251214444344311354
+鰁 35251214444325112534
+鰂 35251214444251113422
+鰃 35251214444251211534
+鰄 35251214444131531534
+鰅 35251214444251125214
+鰆 35251214444111342511
+鰇 35251214444545231234
+鰈 35251214444122151234
+鰉 35251214444325111121
+鰊 35251214444125431234
+鰋 35251214444125115315
+鰌 35251214444431253511
+鰍 35251214444312344334
+鰎 3525121444451111254
+鰏 35251214444125125121
+鰐 35251214444251251115
+鰑 35251214444251113533
+鰒 35251214444312511354
+鰓 35251214444251214544
+鰔 35251214444131251534
+鰕 35251214444512115154
+鰖 35251214444131212511
+鰗 35251214444122513511
+鰘 35251214444445154121
+鰙 3525121444412213251
+鰚 35251214444445125111
+鰛 35251214444251125221
+鰜 352512144444315112234
+鰝 352512144444125125251
+鰞 352512144443251154444
+鰟 352512144444143454153
+鰠 35251214444544251214
+鰡 352512144443545325121
+鰢 352512144441211254444
+鰣 352512144442511121124
+鰤 352512144443251511252
+鰥 352512144442522123344
+鰦 35251214444122554554
+鰧 351143113435251214444
+鰨 352512144442511541541
+鰩 352512144443443311252
+鰪 352512144441215425221
+鰫 352512144444453434251
+鰬 352512144442153154134
+鰭 352512144441213352511
+鰮 352512144442534125221
+鰯 352512144445154151541
+鰰 35251214444452425112
+鰱 352512144441251112454
+鰲 112153313435251214444
+鰳 3525121444412212511253
+鰴 3322521352512144443134
+鰵 3155414313435251214444
+鰶 3525121444435445411234
+鰷 352512144443223541234
+鰸 3525121444412512512515
+鰹 3525121444412512554121
+鰺 3525121444454545434333
+鰻 3525121444425112522154
+鰼 3525121444454154132511
+鰽 3525121444412512212511
+鰾 3525121444412522111234
+鰿 3525121444411212511134
+鱀 51154153535251214444
+鱁 352512144441353334454
+鱂 3525121444452133544124
+鱃 352512144444311135211
+鱄 3525121444412511214124
+鱅 3525121444441351125112
+鱆 3525121444441431251112
+鱇 3525121444441351124134
+鱈 3525121444414524444511
+鱉 4325234313435251214444
+鱊 35251214444545232534251
+鱋 3525121444421531522431
+鱌 3525121444435251353334
+鱍 35251214444543345153554
+鱎 35251214444313425125251
+鱏 35251214444125221251112
+鱐 352512144445112321155122
+鱑 3525121444412212512134
+鱒 35251214444431253511124
+鱓 35251214444251251251112
+鱔 35251214444431112431251
+鱕 35251214444343123425121
+鱖 35251214444134315233534
+鱗 35251214444431234354152
+鱘 35251214444511121251124
+鱙 35251214444121121121135
+鱚 35251214444121251431251
+鱛 35251214444432524312511
+鱜 3525121444455345115452
+鱝 35251214444121222511134
+鱞 352512144442522112513534
+鱟 321134345114535251214444
+鱠 352512144443412524312511
+鱡 352512144442511134113534
+鱢 352512144442512512511234
+鱣 352512144444125251125111
+鱤 352512144441312515344544
+鱥 352512144442121131233534
+鱦 352512144442511251211511
+鱧 352512144442512211251431
+鱨 3525121444424345251352511
+鱩 352512144441452444425121
+鱪 35251214444251112132511
+鱫 352512144443443454544354
+鱬 3525121444414524444132522
+鱭 3525121444441432533543211
+鱮 352512144443211152513411
+鱯 352512144441223241112154
+鱰 352512144442522112132511
+鱱 3525121444413122251125214
+鱲 35251214444555253415445445
+鱳 35251214444325115545541234
+鱴 3525121444412225221134534
+鱵 35251214444314314131251534
+鱶 3525121444443111344511534
+鱷 352512144441225125112512511
+鱸 352512144442153152512125221
+鱹 3525121444412225125132411121
+鱺 352512144441254125441352211535
+鱻 352512144443525121444435251214444
+鱼 35251211
+鱽 3525121153
+鱾 35251211515
+鱿 352512111354
+鲀 352512111525
+鲁 352512112511
+鲂 352512114153
+鲃 352512115215
+鲄 3525121112512
+鲅 3525121113544
+鲆 3525121114312
+鲇 3525121121251
+鲈 3525121121513
+鲉 3525121125121
+鲊 3525121131211
+鲋 3525121132124
+鲌 3525121132511
+鲍 3525121135515
+鲎 4434535251211
+鲏 3525121153254
+鲐 3525121154251
+鲑 35251211121121
+鲒 35251211121251
+鲓 35251211121315
+鲔 35251211132511
+鲕 35251211132522
+鲖 35251211251251
+鲗 35251211253422
+鲘 35251211331251
+鲙 35251211341154
+鲚 35251211413432
+鲛 35251211413434
+鲜 35251211431112
+鲝 43111335251211
+鲞 43113435251211
+鲟 35251211511124
+鲠 352512111251134
+鲡 352512111254254
+鲢 352512111512454
+鲣 352512112254121
+鲤 352512112511211
+鲥 352512112511124
+鲦 352512113541234
+鲧 352512113554234
+鲨 441234335251211
+鲩 352512114451135
+鲪 352512115113251
+鲫 352512115115452
+鲬 352512115425112
+鲭 3525121111212511
+鲮 3525121112134354
+鲯 3525121112211134
+鲰 3525121112211154
+鲱 3525121121112111
+鲲 3525121125111535
+鲳 3525121125112511
+鲴 3525121125122511
+鲵 3525121132151135
+鲶 3525121134454544
+鲷 3525121135121251
+鲸 3525121141251234
+鲹 3525121154134333
+鲺 3525121153251214
+鲻 3525121155525121
+鲼 35251211121222534
+鲽 35251211122151234
+鲾 35251211125125121
+鲿 35251211243451154
+鳀 35251211251112134
+鳁 35251211251125221
+鳂 35251211251211534
+鳃 35251211251214544
+鳄 35251211251251115
+鳅 35251211312344334
+鳆 35251211312511354
+鳇 35251211325111121
+鳈 35251211325112534
+鳉 35251211412354124
+鳊 35251211451325122
+鳋 35251211544251214
+鳌 112153313435251211
+鳍 352512111213352511
+鳎 352512112511541541
+鳏 352512112522123344
+鳐 352512113443311252
+鳑 352512114143454153
+鳒 352512114315112234
+鳓 3525121112212511253
+鳔 3525121112522111234
+鳕 3525121114524444511
+鳖 4325234313435251211
+鳗 3525121125112522154
+鳘 3155414313435251211
+鳙 3525121141351125112
+鳚 3525121151311234124
+鳛 3525121154154132511
+鳜 35251211134315233534
+鳝 35251211431112431251
+鳞 35251211431234354152
+鳟 35251211431253511124
+鳠 352512111223241112154
+鳡 352512111312515344544
+鳢 352512112512211251431
+鳣 352512114125251125111
+鳤 3525121131431444525151
+鳥 32511154444
+鳦 325111544445
+鳧 3251115444435
+鳨 3251115444453
+鳩 3532511154444
+鳪 2432511154444
+鳫 1332511154444
+鳬 325111535
+鳭 5332511154444
+鳮 5432511154444
+鳯 3532511154444
+鳰 3432511154444
+鳱 11232511154444
+鳲 51332511154444
+鳳 35132511154444
+鳴 25132511154444
+鳵 51232511154444
+鳶 15431511154444
+鳷 125432511154444
+鳸 451332511154444
+鳹 344532511154444
+鳺 113432511154444
+鳻 345332511154444
+鳼 413432511154444
+鳽 113232511154444
+鳾 125232511154444
+鳿 112132511154444
+鴀 132432511154444
+鴁 313432511154444
+鴂 513432511154444
+鴃 325111544445134
+鴄 135532511154444
+鴅 354132511154444
+鴆 453532511154444
+鴇 351232511154444
+鴈 133232511154444
+鴉 152332511154444
+鴊 1212132511154444
+鴋 415332511154444
+鴌 113432511154444
+鴍 413432511154444
+鴎 134532511154444
+鴏 3251115444432154
+鴐 5325132511154444
+鴑 5315432511154444
+鴒 3445432511154444
+鴓 4543432511154444
+鴔 345432511154444
+鴕 3251115444444535
+鴖 5151532511154444
+鴗 4143132511154444
+鴘 5413232511154444
+鴙 3113432511154444
+鴚 3251115444412512
+鴛 3545532511154444
+鴜 21213532511154444
+鴝 3525132511154444
+鴞 2511532511154444
+鴟 3515432511154444
+鴠 2511132511154444
+鴡 2511132511154444
+鴢 5545332511154444
+鴣 1225132511154444
+鴤 3251115444435444
+鴥 3251115444444534
+鴦 2513432511154444
+鴧 4453532511154444
+鴨 2511232511154444
+鴩 3113432511154444
+鴪 4453432511154444
+鴫 2512132511154444
+鴬 4434532511154444
+鴭 32515132511154444
+鴮 13411532511154444
+鴯 13252232511154444
+鴰 31225132511154444
+鴱 1223432511154444
+鴲 35251132511154444
+鴳 44553132511154444
+鴴 33211232511154444
+鴵 34153432511154444
+鴶 12125132511154444
+鴷 13542232511154444
+鴸 31123432511154444
+鴹 43111332511154444
+鴺 15153432511154444
+鴻 44112132511154444
+鴼 32511154444354251
+鴽 53125132511154444
+鴾 54311232511154444
+鴿 34125132511154444
+鵀 32312132511154444
+鵁 41343432511154444
+鵂 32123432511154444
+鵃 33541432511154444
+鵄 15412132511154444
+鵅 35425132511154444
+鵆 33232511154444112
+鵇 31121232511154444
+鵈 12211132511154444
+鵉 41223432511154444
+鵊 134343432511154444
+鵋 515454432511154444
+鵌 325111544443411234
+鵍 445113532511154444
+鵎 344353132511154444
+鵏 125112432511154444
+鵐 123434132511154444
+鵑 251251132511154444
+鵒 343425132511154444
+鵓 124552132511154444
+鵔 325111544445434354
+鵕 543435432511154444
+鵖 5115432511154444
+鵗 341325232511154444
+鵘 511325132511154444
+鵙 251113432511154444
+鵚 312343532511154444
+鵛 155512132511154444
+鵜 435152332511154444
+鵝 312153432511154444
+鵞 312153432511154444
+鵟 353112132511154444
+鵠 312125132511154444
+鵡 1121215432511154444
+鵢 325111332511154444
+鵣 125123432511154444
+鵤 353511232511154444
+鵥 431122232511154444
+鵦 3251115444451124134
+鵧 43113232511154444
+鵨 3411225132511154444
+鵩 3511525432511154444
+鵪 1342511532511154444
+鵫 2125111232511154444
+鵬 3511351132511154444
+鵭 3411243132511154444
+鵮 3532151132511154444
+鵯 3251131232511154444
+鵰 3512125132511154444
+鵱 1213412132511154444
+鵲 1221251132511154444
+鵳 4513251132511154444
+鵴 3543123432511154444
+鵵 3525135432511154444
+鵶 1215512132511154444
+鵷 4453545532511154444
+鵸 1341251232511154444
+鵹 3123435332511154444
+鵺 4132354432511154444
+鵻 3251115444432411121
+鵼 4453412132511154444
+鵽 5454545432511154444
+鵾 2511153532511154444
+鵿 3251115444425113132
+鶀 3251115444412211134
+鶁 4125123432511154444
+鶂 3215113532511154444
+鶃 3251115444432151135
+鶄 1121251132511154444
+鶅 5552512132511154444
+鶆 1343423432511154444
+鶇 1251123432511154444
+鶈 1511253132511154444
+鶉 4125152132511154444
+鶊 4135113432511154444
+鶋 5131225132511154444
+鶌 5135225232511154444
+鶍 2511353332511154444
+鶎 4451123432511154444
+鶏 3443113432511154444
+鶐 1234445432511154444
+鶑 4334433432511154444
+鶒 12512345332511154444
+鶓 1222512132511154444
+鶔 54523123432511154444
+鶕 41431251132511154444
+鶖 31234433432511154444
+鶗 25111213432511154444
+鶘 12251351132511154444
+鶙 41434525232511154444
+鶚 25125111532511154444
+鶛 15353251132511154444
+鶜 1225452332511154444
+鶝 12512512132511154444
+鶞 33122511132511154444
+鶟 44534134432511154444
+鶠 12511531532511154444
+鶡 25113534532511154444
+鶢 34431135432511154444
+鶣 45132512232511154444
+鶤 45125111232511154444
+鶥 52132511132511154444
+鶦 12251351132511154444
+鶧 1222513432511154444
+鶨 55135333432511154444
+鶩 54523313432511154444
+鶪 25111134432511154444
+鶫 12543123432511154444
+鶬 344511325132511154444
+鶭 554444415332511154444
+鶮 412512525132511154444
+鶯 433443344532511154444
+鶰 251251113432511154444
+鶱 445112213432511154444
+鶲 345454154132511154444
+鶳 325111544443251511252
+鶴 453241112132511154444
+鶵 355233552332511154444
+鶶 413511225132511154444
+鶷 445111225132511154444
+鶸 515415154132511154444
+鶹 354532512132511154444
+鶺 413434251132511154444
+鶻 25545251132511154444
+鶼 431511223432511154444
+鶽 324111211232511154444
+鶾 122511123432511154444
+鶿 43155455432511154444
+鷀 43155455432511154444
+鷁 431342522132511154444
+鷂 344331125232511154444
+鷃 251144553132511154444
+鷄 344355413432511154444
+鷅 125221123432511154444
+鷆 352511153432511154444
+鷇 121451325111544443554
+鷈 325111544443321531535
+鷉 332153153532511154444
+鷊 125125431232511154444
+鷋 122341123432511154444
+鷌 325111544441211254444
+鷍 325111123432511154444
+鷎 325111341232511154444
+鷏 122511113432511154444
+鷐 2511131153432511154444
+鷑 3143144143132511154444
+鷒 1251121412432511154444
+鷓 4131221444432511154444
+鷔 112153313432511154444
+鷕 2513241112132511154444
+鷖 1311345355432511154444
+鷗 1251251251532511154444
+鷘 1251234313432511154444
+鷙 1214311235432511154444
+鷚 5415413433332511154444
+鷛 4135112511232511154444
+鷜 2511251253132511154444
+鷝 251112211232511154444
+鷞 1343434343432511154444
+鷟 4153313113432511154444
+鷠 3525121444432511154444
+鷡 31122221444432511154444
+鷢 13431523353432511154444
+鷣 12522125111232511154444
+鷤 25125125111232511154444
+鷥 55444455423432511154444
+鷦 32411121444432511154444
+鷧 12145125143132511154444
+鷨 122112211232511154444
+鷩 4325234313432511154444
+鷪 25111251114532511154444
+鷫 511232115521232511154444
+鷬 1221251213432511154444
+鷭 34312342512132511154444
+鷮 31342512525132511154444
+鷯 13443251123432511154444
+鷰 12212512113532511154444
+鷱 32511141341232511154444
+鷲 41251234135432511154444
+鷳 25112511351132511154444
+鷴 25112511123432511154444
+鷵 5131213251132511154444
+鷶 25221251113432511154444
+鷷 43125351112432511154444
+鷸 54523253425132511154444
+鷹 413323241112132511154444
+鷺 251212135425132511154444
+鷻 32511154444412515213134
+鷼 25112511251132511154444
+鷽 321134345114532511154444
+鷾 414312511454432511154444
+鷿 513251414311232511154444
+鸀 252213525121432511154444
+鸁 415251351132511154444354
+鸂 441344355413432511154444
+鸃 325111544444311213121534
+鸄 325114153313432511154444
+鸅 252211214311232511154444
+鸆 215315251113432511154444
+鸇 412525112511132511154444
+鸈 224314311123432511154444
+鸉 123425111353332511154444
+鸊 513251414311232511154444
+鸋 4454544252211232511154444
+鸌 325111544441223241112154
+鸍 1342523434343432511154444
+鸎 2511134251113432511154444
+鸏 122451135333432511154444
+鸐 5415413241112132511154444
+鸑 3534111251134432511154444
+鸒 321115251113432511154444
+鸓 25121251212512132511154444
+鸔 32511154444251112213424134
+鸕 215315251212522132511154444
+鸖 145244443241112132511154444
+鸗 414312511151511132511154444
+鸘 1452444412342511132511154444
+鸙 3412512512512512232511154444
+鸚 2511134251113453132511154444
+鸛 1222512513241112132511154444
+鸜 25111251113241112132511154444
+鸝 125412544135221153532511154444
+鸞 411125155444455444432511154444
+鸟 35451
+鸠 3535451
+鸡 5435451
+鸢 15435451
+鸣 25135451
+鸤 51335451
+鸥 134535451
+鸦 152335451
+鸧 345535451
+鸨 351235451
+鸩 453535451
+鸪 1225135451
+鸫 1523435451
+鸬 2151335451
+鸭 2511235451
+鸮 2511535451
+鸯 2513435451
+鸰 3445435451
+鸱 3515435451
+鸲 3525135451
+鸳 3545535451
+鸴 4434535451
+鸵 3545144535
+鸶 5555135451
+鸷 12135435451
+鸸 13252235451
+鸹 31225135451
+鸺 32123435451
+鸻 33211235451
+鸼 33541435451
+鸽 34125135451
+鸾 41223435451
+鸿 44112135451
+鹀 123434135451
+鹁 124552135451
+鹂 125425435451
+鹃 251251135451
+鹄 312125135451
+鹅 312153435451
+鹆 343425135451
+鹇 425123435451
+鹈 435152335451
+鹉 1121215435451
+鹊 1221251135451
+鹋 1222512135451
+鹌 1342511535451
+鹍 2511153535451
+鹎 3251131235451
+鹏 3511351135451
+鹐 3532151135451
+鹑 4125152135451
+鹒 4135113435451
+鹓 4453545535451
+鹔 5112323435451
+鹕 12251351135451
+鹖 25113534535451
+鹗 25125111535451
+鹘 25545251135451
+鹙 31234433435451
+鹚 43155455435451
+鹛 52132511135451
+鹜 54523313435451
+鹝 125125431235451
+鹞 344331125235451
+鹟 345454154135451
+鹠 354532512135451
+鹡 413434251135451
+鹢 431342522135451
+鹣 431511223435451
+鹤 453241112135451
+鹥 1311345355435451
+鹦 2534253453135451
+鹧 4131221444435451
+鹨 5415413433335451
+鹩 13443251123435451
+鹪 32411121444435451
+鹫 41251234135435451
+鹬 54523253425135451
+鹭 251212135425135451
+鹮 252211251353435451
+鹯 412525112511135451
+鹰 413323241112135451
+鹱 354511223241112154
+鹲 122451135333435451
+鹳 1222512513241112135451
+鹴 1452444412342511135451
+鹵 21253444441
+鹶 212534444413445
+鹷 2125344444134454
+鹸 2125344444134125134
+鹹 21253444441131251534
+鹺 21253444441431113121
+鹻 212534444414315112234
+鹼 212534444413412512513434
+鹽 125125312125344444125221
+鹾 2125341431113121
+鹿 41352211535
+麀 4135221153535
+麁 3541352211535
+麂 4135221153535
+麃 413522115354444
+麄 345341352211535
+麅 4135221153535515
+麆 4135221153525111
+麇 4135221153531234
+麈 4135221153541121
+麉 11211241352211535
+麊 43123441352211535
+麋 41352211535431234
+麌 413522115352511134
+麍 413522115354154325
+麎 413522115351311534
+麏 413522115355113251
+麐 413522115354134251
+麑 4135221153532151135
+麒 4135221153512211134
+麓 1234123441352211535
+麔 4135221153535424251
+麕 4135221153525312341
+麖 4135221153541251234
+麗 1254125441352211535
+麘 41352211535312342511
+麙 41352211535131251534
+麚 41352211535512115154
+麛 41352211535515122111
+麜 413522115351252211234
+麝 413522115353251113124
+麞 4135221153541431251112
+麟 41352211535431234354152
+麠 413522115351251211251211
+麡 4135221153541432533541132
+麢 4135221153514524444251251251
+麣 413522115352512511351221113134
+麤 413522115354135221153541352211535
+麥 12343434354
+麦 1121354
+麧 12343434354315
+麨 123434343542343
+麩 123434343541134
+麪 123434343541255
+麫 123434343541215
+麬 1234343435453254
+麭 1234343435435515
+麮 1234343435412154
+麯 12343434354251221
+麰 12343434354543112
+麱 123434343541251124
+麲 123434343542511135
+麳 1234343435413434234
+麴 1234343435435431234
+麵 12343434354132522111
+麶 123434343544134522554
+麷 12343434354111221112521251431
+麸 11213541134
+麹 112135435431234
+麺 1121354132522111
+麻 41312341234
+麼 41312341234554
+麽 41312341234354
+麾 413123412343115
+麿 41312341234251251
+黀 4131234123412211154
+黁 41312341234312342511
+黂 41312341234121222511134
+黃 122112512134
+黄 12212512134
+黅 122125121343445
+黆 122125121344535
+黇 1221251213421251
+黈 1221251213441121
+黉 4434512212512134
+黊 12212512134121121
+黋 24313512212512134
+黌 321134345114512212512134
+黍 312343424134
+黎 312343533424134
+黏 31234342413421251
+黐 3123434241344134522554
+黑 254312114444
+黒 25112114444
+黓 254312114444154
+黔 2543121144443445
+黕 2543121144444535
+黖 2543121144441535
+黗 2543121144441525
+默 2543121144441344
+黙 251121113444444
+黚 25431211444412211
+黛 32154254312114444
+黜 25431211444452252
+黝 25431211444455453
+點 25431211444421251
+黟 254312114444354354
+黠 254312114444121251
+黡 131344254312114444
+黢 2543121144445434354
+黣 2543121144443155414
+黤 25431211444413425115
+黥 25431211444441251234
+黦 25431211444444535455
+黧 31234353254312114444
+黨 24345251254312114444
+黩 25431211444412544134
+黪 25431211444454134333
+黫 254312114444125221121
+黬 254312114444131251534
+黭 254312114444341251132
+黮 254312114444122111345
+黯 254312114444414312511
+黰 2543121144441225111134
+黱 3511431134254312114444
+黲 25431211444454545434333
+黳 13113453554254312114444
+黴 33225212543121144443134
+黵 2543121144443513344111251
+黶 13251125111344254312114444
+黷 254312114444121252212511134
+黸 2543121144442153152512125221
+黹 224314325234
+黺 2243143252343453
+黻 22431432523413544
+黼 2243143252341251124
+黽 2511251211511
+黾 25125115
+黿 11352511251211511
+鼀 121342511251211511
+鼁 121542511251211511
+鼂 251112511251211511
+鼃 1211212511251211511
+鼄 3112342511251211511
+鼅 3113425125125115151
+鼆 45251141342511251211511
+鼇 11215331342511251211511
+鼈 432523431342511251211511
+鼉 2512512512112511251211511
+鼊 51325141431122511251211511
+鼋 113525125115
+鼌 2511125125115
+鼍 25125125121125125115
+鼎 251115132125
+鼏 45251115132125
+鼐 53251115132125
+鼑 21251115132125
+鼒 123251115132125
+鼓 1212514311254
+鼔 1212514312154
+鼕 121251431125435444
+鼖 121221212514311254
+鼗 3415341212514311254
+鼘 1212514311254321155122
+鼙 121251431125432511312
+鼚 121251431125412111534
+鼛 121251431125435424251
+鼜 1212514311254544251214
+鼝 4413211552121212514311254
+鼞 121251431125424345251121
+鼟 1212514311254543341251431
+鼠 3215115445445
+鼡 44335112
+鼢 32151154454453453
+鼣 32151154454451344
+鼤 32151154454454134
+鼥 321511544544513544
+鼦 321511544544553251
+鼧 321511544544544535
+鼨 321511544544535444
+鼩 321511544544535251
+鼪 321511544544531121
+鼫 321511544544513251
+鼬 321511544544525121
+鼭 3215115445445121124
+鼮 3215115445445312154
+鼯 32151154454451251251
+鼰 32151154454452511134
+鼱 321511544544511212511
+鼲 3215115445445451251112
+鼳 3215115445445251111344
+鼴 3215115445445125115315
+鼵 3215445445445445341344
+鼶 32151154454453321531535
+鼷 32151154454453223554134
+鼸 32151154454454315112234
+鼹 32151154454452511445531
+鼺 3215115445445251212512125121
+鼻 32511125121132
+鼼 3251112512113252
+鼽 3251112512113235
+鼾 32511125121132112
+鼿 32511125121132135
+齀 325111251211321554
+齁 3251112512113235251
+齂 3251112512113251124134
+齃 32511125121132251135345
+齄 32511125121132123425111
+齅 325111251211323251111344
+齆 325111251211325552515215
+齇 3251112512113221531525111
+齈 325111251211322512211311534
+齉 325111251211321251245251251112213524
+齊 41432533543211
+齋 414325335432112342
+齌 414325335432113432
+齍 4143253354321125221
+齎 414325335432112511134
+齏 41432533543211211121111
+齐 413432
+齑 413421112111132
+齒 212134341343452
+齓 2121343413434525
+齔 21213434134345235
+齕 212134341343452315
+齖 2121343413434521523
+齗 2121343413434523312
+齘 2121343413434523432
+齙 21213434134345235515
+齚 21213434134345231211
+齛 21213434134345212215
+齜 212134341343452212135
+齝 21213434134345254251
+齞 21213434134345225134
+齟 21213434134345225111
+齠 21213434134345253251
+齡 21213434134345234454
+齢 21214312345234452
+齣 21213434134345235251
+齤 431134212134341343452
+齥 212134341343452251153
+齦 212134341343452511534
+齧 111253212134341343452
+齨 212134341343452321511
+齩 212134341343452413434
+齪 2121343413434522512134
+齫 2121343413434522512341
+齬 2121343413434521251251
+齭 21213434134345233513312
+齮 21213434134345213412512
+齯 21213434134345232151135
+齰 21213434134345212212511
+齱 21213434134345212211154
+齲 212134341343452325125214
+齳 212134341343452451251112
+齴 212134341343452414313333
+齵 212134341343452251125214
+齶 212134341343452251251115
+齷 212134341343452513154121
+齸 2121343413434524313425221
+齹 431113121212134341343452
+齺 2121343413434523552335523
+齻 2121343413434521225111134
+齼 2121343413434521234123452134
+齽 2121343413434521234123411234
+齾 21531512512543121344212134341343452
+齿 21213452
+龀 2121345235
+龁 21213452315
+龂 212134523312
+龃 2121345225111
+龄 2121345234454
+龅 2121345235515
+龆 2121345253251
+龇 21213452212135
+龈 21213452511534
+龉 212134521251251
+龊 212134522512134
+龋 21213452325125214
+龌 21213452513154121
+龍 4143125111515111
+龎 1341431251121515111
+龏 41431251121515111132
+龐 41341431251121515111
+龑 414312511215151111134
+龒 4143125112151511111234
+龓 13251141431251121515111
+龔 41431251121515111122134
+龕 34125141431251121515111
+龖 4143125112151511141431251121515111
+龗 1452444425125125141431251121515111
+龘 414312511215151114143125112151511141431251121515111
+龙 13534
+龚 13534122134
+龛 34125113534
+龜 32511255115115341
+龝 3123432511255115115341
+龞 2432534313432511255115115341
+龟 3515115
+龠 34125125125125122
+龡 341251251251251223534
+龢 3412512512512512231234
+龣 3412512512512512251124134
+龤 34125125125125122153532511
+龥 34125125125125122132511134
+ 33
+ 13
+ 31
+ 5
+ 5
+ 323552335523
+ 3235511
+ 35
+ 55
+ 54
+ 2512512534
+ 2512511251151221113134
+ 25142551221113134
+ 243
+ 2344
+ 2443552335523
+ 24435511
+ 3113
+ 1212534
+ 12144115
+ 121324111213241112154
+ 1215454
+ 1121344412
+ 1221
+ 12342534
+ 1354251212534
+ 441134454
+ 3121
+ 11134
+ 24345
+ 52121
+ 25111431234531
+ 3123454134333
+ 314314
+ 55125121
+ 4535
+ 43113
+ 431121
+ 121534
+ 111234252215425113535
+ 1112342522112154
+ 51121
+ 35111154
+ 1224453453
+ 4523425112511134
+ 452342512112534
+ 431134
+ 453312
+ 451221251211354444
+ 251113411212511
+ 253411212511
+ 2512121
+ 341124314513541541
+ 311151523
+ 3111553544
+ 311154513541541
+ 3111512212132511
+ 31115431112431251
+ 3111525111251113241112154
+ 511225113434121
+ 51122511355112
+ 4253434121
+ 425355112
+ 12251112
+ 4334433445
+ 215315352512113134
+ 3525121135152
+ 35251211111342511
+ 35251211431253511
+ 215315352512144443134
+ 351143113435251211
+ 15235451
+ 41343435451
+ 13542235451
+ 1121251135451
+ 25111134435451
+ 332153153535451
+ 513251414311235451
+ 135341134
+ 4111251554444554444
+郎 451154352
+凉 414125234
+秊 31234312
+裏 4125111213534
+隣 52431234354152
+兀 135
+嗀 1214512513554
+﨎 41343241112154
+﨏 1213434251
+﨑 252414312512
+﨓 123412232124
+﨔 12344431343112
+礼 112345
+﨟 1223511251135345
+蘒 122312343251253415511511
+﨡 25121431121
+﨣 1121344412
+﨤 3544454
+﨧 341124311213521
+﨨 3411243112143112
+﨩 523251115252
+𠀀 1215
+𠀁 15
+𠀂 15
+𠀃 251
+𠀄 521
+𠀅 153
+𠀆 312
+𠀇 2511
+𠀈 3251
+𠀉 3211
+𠀊 1324
+𠀋 1344
+𠀌 5121
+𠀍 12221
+𠀎 11221
+𠀏 15251
+𠀐 25121
+𠀑 12535
+𠀒 13415
+𠀓 51521
+𠀔 15334
+𠀕 15541
+𠀖 12214
+𠀗 12213
+𠀘 135135
+𠀙 125125
+𠀚 154234
+𠀛 112534
+𠀜 122341
+𠀝 124211
+𠀞 125125
+𠀟 155234
+𠀠 122341
+𠀡 1312135
+𠀢 1212115
+𠀣 1352151
+𠀤 1341341
+𠀥 1225111
+𠀦 1434242
+𠀧 5215111
+𠀨 124354
+𠀩 1351512
+𠀪 1221114
+𠀫 1221113
+𠀬 12534341
+𠀭 34312345
+𠀮 13425341
+𠀯 12525341
+𠀰 13242343
+𠀱 13243434
+𠀲 12354354
+𠀳 5434124
+𠀴 52252124
+𠀵 122513533
+𠀶 132431134
+𠀷 125125122
+𠀸 125354315
+𠀹 134251251
+𠀺 135243134
+𠀻 113525115
+𠀼 131511134
+𠀽 1252313544
+𠀾 1324341154
+𠀿 1242513534
+𠁀 1221532154
+𠁁 5515515121
+𠁂 1213251112
+𠁃 13241251234
+𠁄 34125122124
+𠁅 15312135334
+𠁆 132412251111
+𠁇 132444525111
+𠁈 123534312251
+𠁉 135325111121
+𠁊 134343434134
+𠁋 132412511234
+𠁌 132412211152
+𠁍 1324431121134
+𠁎 1251112454124
+𠁏 12514512155121
+𠁐 12512512155121
+𠁑 12213545252124
+𠁒 13241225111134
+𠁓 132434342513534
+𠁔 431224312512115
+𠁕 125124512155121
+𠁖 12541254132512512
+𠁗 1132511132511134
+𠁘 135254312114444
+𠁙 1324411125131211
+𠁚 1243412524312511
+𠁛 1324431325111455
+𠁜 43122431542511253
+𠁝 43122431131251534
+𠁞 12343412524312511
+𠁟 431224314315112234
+𠁠 25111251112511125111
+𠁡 25
+𠁢 25
+𠁣 5112
+𠁤 25351
+𠁥 34342
+𠁦 251211
+𠁧 2512512
+𠁨 5412512
+𠁩 11251211
+𠁪 31212512
+𠁫 52321234
+𠁬 21215212
+𠁭 342342342
+𠁮 343434352
+𠁯 251254251
+𠁰 112511151
+𠁱 1251125341
+𠁲 25151511132
+𠁳 11122111252
+𠁴 253434343412
+𠁵 251222112134
+𠁶 25121525111354
+𠁷 25125122512512
+𠁸 251251241343412
+𠁹 25123211152511134
+𠁺 2512512121431112454
+𠁻 2512512132511325113251
+𠁼 444
+𠁽 354
+𠁾 554
+𠁿 22114
+𠂀 12241
+𠂁 32114
+𠂂 4255121
+𠂃 1241344534
+𠂄 3541251135345
+𠂅 4155332411121354
+𠂆 33
+𠂇 13
+𠂈 53
+𠂉 31
+𠂊 35
+𠂋 331
+𠂌 312
+𠂍 335
+𠂎 353
+𠂏 5315
+𠂐 5344
+𠂑 3543
+𠂒 3121
+𠂓 3354
+𠂔 3523
+𠂕 31134
+𠂖 31233
+𠂗 35354
+𠂘 33554
+𠂙 31123
+𠂚 31343
+𠂛 32121
+𠂜 32121
+𠂝 32512
+𠂞 33415
+𠂟 34313
+𠂠 324315
+𠂡 35112
+𠂢 333534
+𠂣 335115
+𠂤 325151
+𠂥 325122
+𠂦 321121
+𠂧 335154
+𠂨 325122
+𠂩 32113211
+𠂪 534124
+𠂫 412453
+𠂬 335215
+𠂭 344444
+𠂮 331255
+𠂯 3122112
+𠂰 3315252
+𠂱 21211553
+𠂲 31431234
+𠂳 34515542
+𠂴 311325341
+𠂵 32121112
+𠂶 32511531
+𠂷 313443112
+𠂸 335121132
+𠂹 3234343434
+𠂺 3253411221
+𠂻 3125123534
+𠂼 3151525151
+𠂽 3251211534
+𠂾 3251511324
+𠂿 33434343412
+𠃀 32343434345
+𠃁 32512133534
+𠃂 32515113241
+𠃃 331551251124
+𠃄 333234333234
+𠃅 33252212511134
+𠃆 3251513431234
+𠃇 312132511132511
+𠃈 32111522135522135522135
+𠃉 5
+𠃊 5
+𠃋 5
+𠃌 5
+𠃍 5
+𠃎 21
+𠃏 55
+𠃐 55
+𠃑 5
+𠃒 125
+𠃓 533
+𠃔 535
+𠃕 3552
+𠃖 1215
+𠃗 1125
+𠃘 3315
+𠃙 3535
+𠃚 5155
+𠃛 2511
+𠃜 5213
+𠃝 5234
+𠃞 15555
+𠃟 12215
+𠃠 54141
+𠃡 54125
+𠃢 151312
+𠃣 52343
+𠃤 351325
+𠃥 511234
+𠃦 251215
+𠃧 534534
+𠃨 552523
+𠃩 3534333
+𠃪 2512215
+𠃫 1251125
+𠃬 5155115
+𠃭 33442515
+𠃮 55132534
+𠃯 31234535
+𠃰 53435112
+𠃱 12455315
+𠃲 324111215
+𠃳 352513251
+𠃴 15435415
+𠃵 212511125
+𠃶 344345545
+𠃷 31234535
+𠃸 1212514315
+𠃹 3443122515
+𠃺 5431325111
+𠃻 1135341115
+𠃼 32534112215
+𠃽 34545415415
+𠃾 25343434345
+𠃿 34434451245
+𠄀 34435215112
+𠄁 35431253511
+𠄂 344355444445
+𠄃 1234251115315
+𠄄 2534251115315
+𠄅 22431431112345
+𠄆 35132511123312
+𠄇 34435215354251
+𠄈 43123435455
+𠄉 34435215312511211
+𠄊 1225112511251115315
+𠄋 12251125111251115315
+𠄌 5
+𠄍 52
+𠄎 5
+𠄏 55
+𠄐 52
+𠄑 525
+𠄒 3123
+𠄓 3542
+𠄔 5455
+𠄕 525252
+𠄖 3415412
+𠄗 3512152
+𠄘 5211534
+𠄙 12515112
+𠄚 34312341512
+𠄛 545232533252
+𠄜 125151123411234
+𠄝 5452352534354444
+𠄞 11
+𠄟 11
+𠄠 11
+𠄡 1341
+𠄢 1255151
+𠄣 125331
+𠄤 352511
+𠄥 115115
+𠄦 11354
+𠄧 521511
+𠄨 1354241
+𠄩 5425111
+𠄪 5253411
+𠄫 122132
+𠄬 12523411
+𠄭 13354141
+𠄮 15545541
+𠄯 11512341
+𠄰 112543441
+𠄱 112125125
+𠄲 125125115
+𠄳 111215453
+𠄴 115451532
+𠄵 1251125111
+𠄶 3231211251
+𠄷 555555351
+𠄸 152512511
+𠄹 13525131341
+𠄺 11322511135
+𠄻 125112341234
+𠄼 1225431121251
+𠄽 1112121112111
+𠄾 1112512512515
+𠄿 1125521251152
+𠅀 121431123541154
+𠅁 4121
+𠅂 41523
+𠅃 453434
+𠅄 415324
+𠅅 411234
+𠅆 415334
+𠅇 431415
+𠅈 4112534
+𠅉 4152431
+𠅊 4125112
+𠅋 4155412
+𠅌 41251134
+𠅍 11234415
+𠅎 41531134
+𠅏 41251513
+𠅐 31134415
+𠅑 41523134
+𠅒 41511234
+𠅓 412534341
+𠅔 412515215
+𠅕 413434534
+𠅖 4125125112
+𠅗 1241323544
+𠅘 4122114512
+𠅙 4122114535
+𠅚 4132125134
+𠅛 4134525542
+𠅜 4132135422
+𠅝 4125145521
+𠅞 4135415235
+𠅟 411221122135
+𠅠 41251251522
+𠅡 41251513513
+𠅢 41221145315
+𠅣 41355435354
+𠅤 41251214544
+𠅥 41251213541
+𠅦 41352513553
+𠅧 41251251134
+𠅨 41312135354
+𠅩 412512511354
+𠅪 413511211121
+𠅫 413434343435
+𠅬 413121352154
+𠅭 412512111535
+𠅮 412512341135
+𠅯 413234413234
+𠅰 411213113415
+𠅱 355441323544
+𠅲 413211511134
+𠅳 4152512511134
+𠅴 4151154534121
+𠅵 4152133544124
+𠅶 4122114512354
+𠅷 4125125125112
+𠅸 4125145121353
+𠅹 4125145121554
+𠅺 4125534151234
+𠅻 4154412512511
+𠅼 4153123431134
+𠅽 4153541251234
+𠅾 41343525125115
+𠅿 41251451125111
+𠆀 4125145125112
+𠆁 412512133543354
+𠆂 412513434234342
+𠆃 412512344525135
+𠆄 413452132511134
+𠆅 413225112341234
+𠆆 412512512121112
+𠆇 413253431234134
+𠆈 414325335425531
+𠆉 415411122121212
+𠆊 412514512155121
+𠆋 4143254334341251
+𠆌 4125125113532511
+𠆍 4135111225111134
+𠆎 4125521251152154
+𠆏 41251342342342342
+𠆐 4125111251114444
+𠆑 4125112251251134
+𠆒 4125145414312511
+𠆓 4125152141323544
+𠆔 4125152132151135
+𠆕 3113311241323544
+𠆖 4141533515341251
+𠆗 4143253354341251
+𠆘 4143453425113534
+𠆙 41251451241323544
+𠆚 412511125111135435
+𠆛 412511251251251112
+𠆜 414325335415112531
+𠆝 4125112511343413534
+𠆞 412515212525125111
+𠆟 413211343451145511353334
+𠆠 4132112512515114513251114444
+𠆡 41321125125151145123412344444
+𠆢 34
+𠆣 134
+𠆤 342
+𠆥 334
+𠆦 3415
+𠆧 3234
+𠆨 3252
+𠆩 32354
+𠆪 34235
+𠆫 32123
+𠆬 32115
+𠆭 3415
+𠆮 32153
+𠆯 32322
+𠆰 32352
+𠆱 32412
+𠆲 32413
+𠆳 34211
+𠆴 125234
+𠆵 323415
+𠆶 324535
+𠆷 353432
+𠆸 322154
+𠆹 345333
+𠆺 325542
+𠆻 321132
+𠆼 324152
+𠆽 321354
+𠆾 324134
+𠆿 323551
+𠇀 3444554
+𠇁 325152
+𠇂 322541
+𠇃 343215
+𠇄 341134
+𠇅 321251
+𠇆 321252
+𠇇 3211234
+𠇈 322121
+𠇉 322354
+𠇊 323534
+𠇋 341132
+𠇌 115434
+𠇍 342444
+𠇎 343121
+𠇏 343415
+𠇐 32151
+𠇑 323434
+𠇒 323434
+𠇓 323554
+𠇔 323115
+𠇕 325215
+𠇖 323454
+𠇗 3233544
+𠇘 3215534
+𠇙 3211251
+𠇚 3425112
+𠇛 3251252
+𠇜 3454525
+𠇝 3225111
+𠇞 3212544
+𠇟 3245534
+𠇠 1123434
+𠇡 3251235
+𠇢 3213534
+𠇣 3211234
+𠇤 3211214
+𠇥 3224134
+𠇦 3225211
+𠇧 3432354
+𠇨 3434112
+𠇩 3235352
+𠇪 3231112
+𠇫 3234112
+𠇬 1233134
+𠇭 3412512
+𠇮 3412534
+𠇯 3432121
+𠇰 3441252
+𠇱 3211234
+𠇲 3212344
+𠇳 3213435
+𠇴 3213453
+𠇵 3223435
+𠇶 3225251
+𠇷 3231121
+𠇸 3241341
+𠇹 3254121
+𠇺 3225112
+𠇻 3225221
+𠇼 3234312
+𠇽 3212525
+𠇾 3212341
+𠇿 5221234
+𠈀 3253453
+𠈁 3233115
+𠈂 3454251
+𠈃 32541234
+𠈄 32125125
+𠈅 32523134
+𠈆 32325151
+𠈇 32125341
+𠈈 32325341
+𠈉 32251555
+𠈊 32335215
+𠈋 32113534
+𠈌 34343434
+𠈍 32354531
+𠈎 32521521
+𠈏 34125134
+𠈐 32251153
+𠈑 34243135
+𠈒 34211234
+𠈓 32125252
+𠈔 34211431
+𠈕 32251225
+𠈖 32341134
+𠈗 32125111
+𠈘 34121121
+𠈙 32111534
+𠈚 32132121
+𠈛 34351122
+𠈜 32355215
+𠈝 32341551
+𠈞 32354152
+𠈟 3235152
+𠈠 32311212
+𠈡 32351252
+𠈢 34135455
+𠈣 31213534
+𠈤 32234531
+𠈥 3225525
+𠈦 32252354
+𠈧 32252554
+𠈨 32312111
+𠈩 32331252
+𠈪 32431134
+𠈫 32431134
+𠈬 32354121
+𠈭 324453112
+𠈮 342512134
+𠈯 341125354
+𠈰 323212154
+𠈱 324412343
+𠈲 323515251
+𠈳 325514334
+𠈴 325452134
+𠈵 321353334
+𠈶 322523554
+𠈷 32251152
+𠈸 32145444
+𠈹 324413134
+𠈺 321515121
+𠈻 323434251
+𠈼 324315354
+𠈽 355133534
+𠈾 342121112
+𠈿 322525154
+𠉀 322511134
+𠉁 253425341
+𠉂 32134453
+𠉃 3221215311
+𠉄 324143112
+𠉅 324313453
+𠉆 324131515
+𠉇 324334251
+𠉈 321343511
+𠉉 321234251
+𠉊 321225111
+𠉋 321212415
+𠉌 322513541
+𠉍 322512341
+𠉎 323524134
+𠉏 323541112
+𠉐 323415251
+𠉑 323123453
+𠉒 343425115
+𠉓 344312431
+𠉔 321121212
+𠉕 321251254
+𠉖 322513112
+𠉗 323122515
+𠉘 323545434
+𠉙 341125122
+𠉚 323434252
+𠉛 32135534
+𠉜 325133115
+𠉝 32121215
+𠉞 344551335
+𠉟 321234312
+𠉠 323443533
+𠉡 322121233
+𠉢 322525341
+𠉣 3235152511
+𠉤 3225342511
+𠉥 3255435415
+𠉦 3212534341
+𠉧 3212211154
+𠉨 3212154534
+𠉩 32112155414
+𠉪 3241541234
+𠉫 3233241121
+𠉬 3225125113
+𠉭 3434343434
+𠉮 3243113453
+𠉯 3215112531
+𠉰 3234433121
+𠉱 3235134153
+𠉲 3412515215
+𠉳 32311212122
+𠉴 3212524134
+𠉵 3244512134
+𠉶 3225121132
+𠉷 3241353254
+𠉸 3241343511
+𠉹 3252111534
+𠉺 3254132522
+𠉻 3212134334
+𠉼 3412513215
+𠉽 3413511555
+𠉾 3212123415
+𠉿 3225123134
+𠊀 3225213112
+𠊁 3212121154
+𠊂 3225235354
+𠊃 3212121252
+𠊄 3234112431
+𠊅 3231344334
+𠊆 3234125351
+𠊇 3235425122
+𠊈 3234125152
+𠊉 3411543533
+𠊊 3413251115
+𠊋 3443125115
+𠊌 3443344334
+𠊍 3443123414
+𠊎 3213121121
+𠊏 3231213522
+𠊐 3235311252
+𠊑 3241324251
+𠊒 3241315354
+𠊓 3241354153
+𠊔 3244141431
+𠊕 3251114334
+𠊖 3255535422
+𠊗 3225243154
+𠊘 3245132511
+𠊙 3244525111
+𠊚 3225111124
+𠊛 2511112434
+𠊜 3253113251
+𠊝 3215454251
+𠊞 3225124544
+𠊟 3225125115
+𠊠 3212123553
+𠊡 324311135
+𠊢 3244535531
+𠊣 3252115211
+𠊤 3221531534
+𠊥 3225342534
+𠊦 3255512121
+𠊧 3234122431
+𠊨 32515515134
+𠊩 32521521521
+𠊪 32121251431
+𠊫 32352511521
+𠊬 32343425152
+𠊭 32131251534
+𠊮 32545233134
+𠊯 324453434134
+𠊰 32251225251
+𠊱 32351331134
+𠊲 32445351344
+𠊳 32125342154
+𠊴 32413431523
+𠊵 32252354354
+𠊶 32431134531
+𠊷 321541213134
+𠊸 32511454334
+𠊹 32151113134
+𠊺 34414312534
+𠊻 32344352134
+𠊼 32125221132
+𠊽 32515152511
+𠊾 32543341134
+𠊿 32445125111
+𠋀 32542511253
+𠋁 34344325122
+𠋂 32352513544
+𠋃 3215435415
+𠋄 32431121531
+𠋅 34351325122
+𠋆 32514311234
+𠋇 3243123452
+𠋈 32413234134
+𠋉 32534353432
+𠋊 32132435112
+𠋋 32521251134
+𠋌 32252134334
+𠋍 32251135354
+𠋎 32355114544
+𠋏 32542511134
+𠋐 32325431215
+𠋑 34125111251
+𠋒 34125125115
+𠋓 34234513221
+𠋔 34255455452
+𠋕 32121351234
+𠋖 32125431234
+𠋗 32125545541
+𠋘 32131531534
+𠋙 32134343422
+𠋚 32134432511
+𠋛 32221543541
+𠋜 32243111251
+𠋝 32251112343
+𠋞 32251214525
+𠋟 3232151134
+𠋠 32344311354
+𠋡 32341511534
+𠋢 32445433454
+𠋣 32414312512
+𠋤 32445154121
+𠋥 32521325111
+𠋦 32122111234
+𠋧 32442125111
+𠋨 32251251135
+𠋩 32412511354
+𠋪 32445125125
+𠋫 32325132234
+𠋬 32251111344
+𠋭 324154325251
+𠋮 321321212534
+𠋯 323443321511
+𠋰 321213234534
+𠋱 325132433511
+𠋲 321245554234
+𠋳 325433431134
+𠋴 324334433422
+𠋵 322153154134
+𠋶 324525114134
+𠋷 32522125124
+𠋸 321212511234
+𠋹 323525113415
+𠋺 324544251214
+𠋻 322512135354
+𠋼 322512512511
+𠋽 32134312154
+𠋾 321121545234
+𠋿 321215251121
+𠌀 323443541234
+𠌁 323413251354
+𠌂 343434343412
+𠌃 32545325121
+𠌄 325131221534
+𠌅 32122354354
+𠌆 341121153512
+𠌇 3245115452
+𠌈 341343425122
+𠌉 341214311134
+𠌊 134342345215
+𠌋 323434251513
+𠌌 324453434354
+𠌍 344311344134
+𠌎 324312344444
+𠌏 32443354152
+𠌐 321252211335
+𠌑 341125135515
+𠌒 322512143134
+𠌓 341212251112
+𠌔 323251113455
+𠌕 343234323432
+𠌖 321213541234
+𠌗 321254443454
+𠌘 321325111354
+𠌙 322122125112
+𠌚 322331212512
+𠌛 322513251111
+𠌜 322514111251
+𠌝 322521353134
+𠌞 323251111354
+𠌟 323251153254
+𠌠 323443154121
+𠌡 32431134454
+𠌢 323434251354
+𠌣 324455113251
+𠌤 323133124544
+𠌥 323251154444
+𠌦 325544442534
+𠌧 323412513115
+𠌨 321211121115
+𠌩 324112112535
+𠌪 322313425111
+𠌫 3225121122112
+𠌬 32513241343112
+𠌭 3241554413412
+𠌮 3241312214444
+𠌯 3241345225214
+𠌰 32511541535
+𠌱 3213434411121
+𠌲 3212511123312
+𠌳 3253251253434
+𠌴 3411134321511
+𠌵 3232511154444
+𠌶 3234343434115
+𠌷 3212143112354
+𠌸 3251331133112
+𠌹 3221212511233
+𠌺 3413434234342
+𠌻 3243344334354
+𠌼 3225125124544
+𠌽 3212511244153
+𠌾 3212123121534
+𠌿 3241315112134
+𠍀 3244112511234
+𠍁 3231554143134
+𠍂 3234432511234
+𠍃 323445115435
+𠍄 325515515121
+𠍅 3212343434354
+𠍆 3212123123422
+𠍇 3221354541234
+𠍈 3235251151511
+𠍉 3241554453112
+𠍊 3244532132511
+𠍋 324554251214
+𠍌 3244545444544
+𠍍 3212522113454
+𠍎 3211251113454
+𠍏 3212512343134
+𠍐 3415435333544
+𠍑 3212125354354
+𠍒 3251122511251
+𠍓 3225234125122
+𠍔 3212122512512
+𠍕 3225225111515
+𠍖 3234112431354
+𠍗 3412513211511
+𠍘 3413434343412
+𠍙 3211212511234
+𠍚 3213251125341
+𠍛 3213251125531
+𠍜 3215412251111
+𠍝 3221351234121
+𠍞 3222154554234
+𠍟 3225125151532
+𠍠 3234342515113
+𠍡 3241251213534
+𠍢 3254523313453
+𠍣 3212121112111
+𠍤 3212121245521
+𠍥 3225111343454
+𠍦 3222542511134
+𠍧 323535221121
+𠍨 3241312351235
+𠍩 3213251113432
+𠍪 3213533344444
+𠍫 3234132523534
+𠍬 3215251125112
+𠍭 3241431251354
+𠍮 32334343434121
+𠍯 3243252343134
+𠍰 322512121121124
+𠍱 3232411121234
+𠍲 3244115151234
+𠍳 12213434234342
+𠍴 32113411344544
+𠍵 3243112145534
+𠍶 32125121354444
+𠍷 32125234125234
+𠍸 32325221323334
+𠍹 32314314341251
+𠍺 34125221542134
+𠍻 32515121121251
+𠍼 32121451251431
+𠍽 3213412132511
+𠍾 32125114455315
+𠍿 3255212511134
+𠎀 32213541521234
+𠎁 32254312114444
+𠎂 32412511111354
+𠎃 34134341343412
+𠎄 34412515213134
+𠎅 32511121251124
+𠎆 32543345153554
+𠎇 32111225153134
+𠎈 34125134435112
+𠎉 32145241341154
+𠎊 32123412341234
+𠎋 32145241344134
+𠎌 32145241344334
+𠎍 34125112123215
+𠎎 32121251431333
+𠎏 34125135112512
+𠎐 32121211213511
+𠎑 32121211212112
+𠎒 32511225114544
+𠎓 32511225114134
+𠎔 32311231123112
+𠎕 32231341212152
+𠎖 32354512431234
+𠎗 3241432533543254
+𠎘 3425125125214
+𠎙 13434234341251
+𠎚 34131431425122
+𠎛 34134343434135
+𠎜 21251111134454
+𠎝 32113411344544
+𠎞 32122111343511
+𠎟 32122511111354
+𠎠 32251141251234
+𠎡 32251325111341
+𠎢 32441121544544
+𠎣 32125221134252
+𠎤 34125125125122
+𠎥 32343434342511
+𠎦 32515251251214
+𠎧 32111253554234
+𠎨 32554444341251
+𠎩 32211121114544
+𠎪 32513431234531
+𠎫 32122511123511
+𠎬 32314314121124
+𠎭 32122125113134
+𠎮 32134315233534
+𠎯 32441251113533
+𠎰 32112225344544
+𠎱 32153515354544
+𠎲 32121215252511
+𠎳 34112343411234
+𠎴 32513311513252
+𠎵 3241431353334
+𠎶 1123413553434
+𠎷 323134211121111
+𠎸 321234341252511
+𠎹 32152454544354
+𠎺 322523251213554
+𠎻 32331225111454
+𠎼 321252211123422
+𠎽 324334433445354
+𠎾 324451122134515
+𠎿 323535112533112
+𠏀 32251225251454
+𠏁 32523251213554
+𠏂 321353313533121
+𠏃 322512143121534
+𠏄 321221112513121
+𠏅 324453451352252
+𠏆 321212351251124
+𠏇 341255455425121
+𠏈 323552335311252
+𠏉 122511123411234
+𠏊 3212243135134
+𠏋 322511252144544
+𠏌 324311212511135
+𠏍 32131213541454
+𠏎 341251251311212
+𠏏 122125121115434
+𠏐 325112321155212
+𠏑 322511135333533
+𠏒 3212121452224134
+𠏓 344511325154251
+𠏔 321212152134534
+𠏕 321234125221531
+𠏖 321344311214444
+𠏗 321344325114334
+𠏘 322513254111251
+𠏙 323215115445445
+𠏚 323413511224544
+𠏛 324131221344153
+𠏜 324311214111251
+𠏝 321134113425111
+𠏞 321212511134534
+𠏟 324125251131234
+𠏠 322512121121121
+𠏡 321452413434154
+𠏢 323443542554545
+𠏣 323525121444452
+𠏤 323541522511134
+𠏥 322521251431134
+𠏦 323533412514512
+𠏧 341511325134154
+𠏨 3244535353344544
+𠏩 3225241112513534
+𠏪 3254334211121111
+𠏫 3212512552125221
+𠏬 3241112512512115
+𠏭 3212211154323434
+𠏮 3222431341121124
+𠏯 3244511221343112
+𠏰 324135221154444
+𠏱 3212343412511134
+𠏲 322522112132511
+𠏳 312511211325434
+𠏴 3212452512152134
+𠏵 323513511154444
+𠏶 3244513251113453
+𠏷 3244545434251214
+𠏸 3412513431234312
+𠏹 3212522125112141
+𠏺 3212512125111345
+𠏻 3221451343425111
+𠏼 3212125143153251
+𠏽 3212212511214444
+𠏾 3232151134511534
+𠏿 3232511125121132
+𠐀 3233215315353534
+𠐁 3212124511353334
+𠐂 3435435425235251
+𠐃 3223545415414544
+𠐄 3255525341251554
+𠐅 3212211144525111
+𠐆 3212522111234124
+𠐇 1343423413434234
+𠐈 32325111445354153
+𠐉 323143145115452
+𠐊 32125125541251431
+𠐋 32354154154134333
+𠐌 32252215435411515
+𠐍 32251125125313134
+𠐎 32121225112522154
+𠐏 32445543341251431
+𠐐 3212235445411234
+𠐑 32124525121542134
+𠐒 32431121341511534
+𠐓 32433443344511214
+𠐔 32352512144442511
+𠐕 3243123435415252
+𠐖 34125125134343554
+𠐗 34125125111511534
+𠐘 32341251251343422
+𠐙 34125112212341234
+𠐚 32122431352211515
+𠐛 32252211212513534
+𠐜 32411221344111251
+𠐝 32414325122514454
+𠐞 32132511325113251
+𠐟 32445134432511234
+𠐠 32251251251211251
+𠐡 32311121111251112
+𠐢 32541541325111135
+𠐣 321212211131344544
+𠐤 324132512135543534
+𠐥 324543125122514544
+𠐦 324125221541343534
+𠐧 322121252214525111
+𠐨 322512512514111251
+𠐩 325112251135321511
+𠐪 322121251251122111
+𠐫 323143145545121124
+𠐬 323123453132511134
+𠐭 322121135333431121
+𠐮 323211343451145521
+𠐯 32515515122134454
+𠐰 342121342121342121
+𠐱 122511251125111234
+𠐲 321534251115342511
+𠐳 322153152512125221
+𠐴 322511112343554234
+𠐵 32431325111454124
+𠐶 321452413432411121
+𠐷 323121353121354544
+𠐸 341123412132411121
+𠐹 32431234251125221
+𠐺 322121233132511134
+𠐻 3244511221342512134
+𠐼 3212512531251251251
+𠐽 32325151212151145252
+𠐾 321221113413251134
+𠐿 3221212522145135415
+𠑀 3212125121122134534
+𠑁 3234125125134343534
+𠑂 3421213425234343434
+𠑃 3212125132511154444
+𠑄 3241112514334433454
+𠑅 3244535543341251431
+𠑆 3251122511312321511
+𠑇 3235114311342511134
+𠑈 3244112512531425221
+𠑉 323434251511534454
+𠑊 3244313121221113134
+𠑋 3434343434121121132
+𠑌 322251212511134454
+𠑍 321325111212151534354
+𠑎 32321132534151114334
+𠑏 32121212343414111251
+𠑐 34451132513445113251
+𠑑 32511225113443321511
+𠑒 32521251152353251214
+𠑓 32143252343434344544
+𠑔 32251152252134431234
+𠑕 32355241112511251251
+𠑖 3241431252325113554
+𠑗 323211325341511134515
+𠑘 321225111134132511134
+𠑙 3244541431354121515111
+𠑚 3213251112121515353534
+𠑛 322121352514521213134
+𠑜 341511325143123425221
+𠑝 341123454154132411121
+𠑞 3232151134511534454
+𠑟 32325111445354153454
+𠑠 324143253354211121111
+𠑡 325112251134431353334
+𠑢 322121121341213541154
+𠑣 323211251251511134515
+𠑤 3212511234125112342511
+𠑥 3231431412151211251124
+𠑦 3212123251514143112521
+𠑧 3221212512513241112153
+𠑨 3251122511121221113134
+𠑩 3225111251113241112154
+𠑪 32251251132511134251251
+𠑫 32212111241112514111251
+𠑬 3234451154121121121135
+𠑭 32125111212511121251112
+𠑮 342512512121251111353334
+𠑯 32121211121111132511134
+𠑰 341122513411225134112251
+𠑱 3412524312511251141251234
+𠑲 34125125134343412512513434
+𠑳 34125125125125121211353334
+𠑴 34125125121425121444111212511
+𠑵 32125221121125115341213312251
+𠑶 1535
+𠑷 21135
+𠑸 15535
+𠑹 315551
+𠑺 144535
+𠑻 514135
+𠑼 355135
+𠑽 4125135
+𠑾 3551335
+𠑿 3211135
+𠒀 1243135
+𠒁 4351335
+𠒂 355135
+𠒃 34342135
+𠒄 52252135
+𠒅 25155135
+𠒆 32534135
+𠒇 32543135
+𠒈 12451135
+𠒉 11355211
+𠒊 25454135
+𠒋 41345235
+𠒌 121212135
+𠒍 32151135
+𠒎 315111535
+𠒏 111341135
+𠒐 1225135153
+𠒑 3121351135
+𠒒 3121355152
+𠒓 1134125351
+𠒔 1523515235
+𠒕 5435333534
+𠒖 1212121135
+𠒗 24313525112
+𠒘 12251355344
+𠒙 12251353312
+𠒚 12251354412
+𠒛 25112312135
+𠒜 11353251135
+𠒝 24313512534
+𠒞 113532115115
+𠒟 121352513535
+𠒠 122513525115
+𠒡 243135344412
+𠒢 11353525135
+𠒣 312135332112
+𠒤 4311213535234
+𠒥 2431354131234
+𠒦 2431352513251
+𠒧 12523412523435
+𠒨 1543541251234
+𠒩 1543544525111
+𠒪 24313525111234
+𠒫 24313525113511
+𠒬 24313512511534
+𠒭 12251353554234
+𠒮 34153412212511
+𠒯 25343432151135
+𠒰 32151132512153
+𠒱 513251414311235
+𠒲 122513515341534
+𠒳 432523431345435
+𠒴 325115545541135
+𠒵 243135125431234
+𠒶 121351213512135
+𠒷 312135324111251
+𠒸 3251114544243135
+𠒹 1251234125123435
+𠒺 1135251212511134
+𠒻 1135431224312511
+𠒼 2431352511243135
+𠒽 2431354512511234
+𠒾 3525135112155414
+𠒿 24313541432512251
+𠓀 31213525121354251
+𠓁 24313543112145534
+𠓂 24313554154134333
+𠓃 24313523432411121
+𠓄 35251351211254444
+𠓅 2431351224451234
+𠓆 311225135311225135
+𠓇 2431354511543511
+𠓈 352513535251214444
+𠓉 243135243135243135
+𠓊 243135251251251112
+𠓋 2431352522112143112
+𠓌 2431354134315112234
+𠓍 35251352512211251431
+𠓎 1225135412515213134
+𠓏 12251353513354111251
+𠓐 24313543344334451234
+𠓑 243135352512144442511
+𠓒 243135113411342511134
+𠓓 2431353411243125113511
+𠓔 321511351222522145354
+𠓕 11353121353121352511134
+𠓖 24313551122511125431234
+𠓗 352513543525135435251354
+𠓘 121121121135121251431251
+𠓙 312135312135312135312135
+𠓚 243135121251122511125431234
+𠓛 341
+𠓜 3434
+𠓝 3412
+𠓞 3411
+𠓟 34315
+𠓠 342154
+𠓡 341132
+𠓢 343112
+𠓣 344544
+𠓤 3412511
+𠓥 3412154
+𠓦 3425121
+𠓧 3434312
+𠓨 3551534
+𠓩 11123434
+𠓪 342342342
+𠓫 343212134
+𠓬 413425134
+𠓭 3412341234
+𠓮 3413252511
+𠓯 3444535121
+𠓰 3411215454
+𠓱 34554554234
+𠓲 343541521234
+𠓳 3411215151251
+𠓴 3411211315251
+𠓵 3413434343434
+𠓶 1221354525234
+𠓷 3413434343434
+𠓸 34153515351234
+𠓹 34112134125122
+𠓺 31122221444434
+𠓻 34112134125122
+𠓼 3412343241112112
+𠓽 34311121111251112
+𠓾 341121341121341121
+𠓿 34111221111111221115
+𠔀 135
+𠔁 3535
+𠔂 44235
+𠔃 4315
+𠔄 4315
+𠔅 34513
+𠔆 35513
+𠔇 35324
+𠔈 352512
+𠔉 341134
+𠔊 3212135
+𠔋 3525341
+𠔌 3434251
+𠔍 3425121
+𠔎 3434112
+𠔏 1221134
+𠔐 12211134
+𠔑 34533453
+𠔒 353211511
+𠔓 251221134
+𠔔 251214134
+𠔕 355325122
+𠔖 522522134
+𠔗 341251234
+𠔘 515323554
+𠔙 3252511134
+𠔚 4154122134
+𠔛 2515452134
+𠔜 3215112134
+𠔝 12234341134
+𠔞 252252252134
+𠔟 343241112154
+𠔠 345315251541
+𠔡 122111343453
+𠔢 345312341254
+𠔣 121354122134
+𠔤 341251122134
+𠔥 341522114444
+𠔦 251533212134
+𠔧 123211511134
+𠔨 5344315112234
+𠔩 5454251122134
+𠔪 3443123425121
+𠔫 1221113431211
+𠔬 1134122511134
+𠔭 3454545434333
+𠔮 4315112234354
+𠔯 35224314311134
+𠔰 54542511222134
+𠔱 25112522522134
+𠔲 34343454351134
+𠔳 4143134315112234
+𠔴 1221113451312251
+𠔵 1221113413412512
+𠔶 122111341225111134
+𠔷 243252513134122134
+𠔸 4512512512112211134
+𠔹 3211343451145122134
+𠔺 4315112234131251534
+𠔻 321125125151113432112512515111343211251251511134
+𠔼 251
+𠔽 2525
+𠔾 3351
+𠔿 2534
+𠕀 2554
+𠕁 25122
+𠕂 12511
+𠕃 25415
+𠕄 25125
+𠕅 12511
+𠕆 13351
+𠕇 13254
+𠕈 25345
+𠕉 42534
+𠕊 25112
+𠕋 251221
+𠕌 252511
+𠕍 425135
+𠕎 253434
+𠕏 254315
+𠕐 2552252
+𠕑 2541251
+𠕒 2524134
+𠕓 2221251
+𠕔 2513541
+𠕕 2525153
+𠕖 25111234
+𠕗 35251225
+𠕘 25444234
+𠕙 25112511
+𠕚 25431234
+𠕛 353112251
+𠕜 425344134
+𠕝 2511354354
+𠕞 3434252525
+𠕟 2521121251
+𠕠 2511135534
+𠕡 25544544
+𠕢 25352521122
+𠕣 251135321511
+𠕤 251135251354
+𠕥 251115412122
+𠕦 2511341351122
+𠕧 3113425125251
+𠕨 25352513411234
+𠕩 25122532511312
+𠕪 25251115132125
+𠕫 325454445444544
+𠕬 254312342535251
+𠕭 2511123421251112
+𠕮 2511554444332112
+𠕯 122125212213544
+𠕰 251113425234343434
+𠕱 12521112512531125221
+𠕲 2511112111121111211112
+𠕳 4534
+𠕴 4535
+𠕵 45354
+𠕶 45135
+𠕷 45531
+𠕸 45354
+𠕹 451134
+𠕺 453554
+𠕻 451135
+𠕼 454134
+𠕽 452534
+𠕾 452511
+𠕿 453235
+𠖀 4511234
+𠖁 4512454
+𠖂 4535554
+𠖃 4541431
+𠖄 45251251
+𠖅 45133511
+𠖆 45251135
+𠖇 452511134
+𠖈 451135124
+𠖉 451221134
+𠖊 453323554
+𠖋 453425121
+𠖌 4545234124
+𠖍 4512514535
+𠖎 4554545454
+𠖏 4513412512
+𠖐 4525125121
+𠖑 4535125111
+𠖒 4535333534
+𠖓 45251214544
+𠖔 451431353334
+𠖕 451225111134
+𠖖 451211254444
+𠖗 455114525254
+𠖘 455544442534
+𠖙 121221114535
+𠖚 4522511125111
+𠖛 4512211135352
+𠖜 45515253541121
+𠖝 45113533334454
+𠖞 45113525113533
+𠖟 451252211123422
+𠖠 4555525112112251
+𠖡 3251135451135124
+𠖢 4533215435413134
+𠖣 452125334411214334
+𠖤 451135211121114544
+𠖥 454143125111515111
+𠖦 4551525334112111234
+𠖧 451325221121251214
+𠖨 4511351224511353334
+𠖩 451225111134132511134
+𠖪 4513252211112134251214
+𠖫 45414312511121212511134
+𠖬 415
+𠖭 4152
+𠖮 41354
+𠖯 41315
+𠖰 41515
+𠖱 411524
+𠖲 413553
+𠖳 413533
+𠖴 413112
+𠖵 413511
+𠖶 414544
+𠖷 4125251
+𠖸 4134115
+𠖹 4125112
+𠖺 4121124
+𠖻 4125111
+𠖼 2513444
+𠖽 4131211
+𠖾 4111234
+𠖿 4135112
+𠗀 25123444
+𠗁 12113444
+𠗂 41354251
+𠗃 41251341
+𠗄 41354354
+𠗅 41325221
+𠗆 332235444
+𠗇 41134334
+𠗈 411241344
+𠗉 411343434
+𠗊 411555121
+𠗋 415344544
+𠗌 411225135
+𠗍 411325111
+𠗎 413341121
+𠗏 413251113
+𠗐 411251251
+𠗑 411134234
+𠗒 411251124
+𠗓 412513541
+𠗔 412511211
+𠗕 415435354
+𠗖 413434251
+𠗗 412135422
+𠗘 4125122134
+𠗙 4152413452
+𠗚 4141343412
+𠗛 411541234
+𠗜 4112211122
+𠗝 4134433121
+𠗞 4144512134
+𠗟 4135251354
+𠗠 4152125221
+𠗡 4134431234
+𠗢 4155525122
+𠗣 4134125122
+𠗤 4133241121
+𠗥 41414312511
+𠗦 41111125132
+𠗧 41251113422
+𠗨 41122151234
+𠗩 41251124444
+𠗪 41412513534
+𠗫 41352535134
+𠗬 41351325112
+𠗭 41312121121
+𠗮 41122111355
+𠗯 41325112534
+𠗰 41112134333
+𠗱 411325551534
+𠗲 351143113444
+𠗳 414315112234
+𠗴 415414311252
+𠗵 414143454153
+𠗶 414135112251
+𠗷 4145115454
+𠗸 411212511134
+𠗹 411354224444
+𠗺 4131234354354
+𠗻 4112512554121
+𠗼 4113211234534
+𠗽 4154154134333
+𠗾 4113434343434
+𠗿 4154545434333
+𠘀 2511225113441
+𠘁 414143125152
+𠘂 4112512343534
+𠘃 4131251121153
+𠘄 41354511543134
+𠘅 41344134522554
+𠘆 41123412341234
+𠘇 413251113335414
+𠘈 41513521521521
+𠘉 41251141251234
+𠘊 412512211311534
+𠘋 41251115132125
+𠘌 411251211251211
+𠘍 412125343411234
+𠘎 413412524312511
+𠘏 412522112341234
+𠘐 414125251125111
+𠘑 411251255154444
+𠘒 4111213511335414
+𠘓 41523134131121
+𠘔 4121112544442343
+𠘕 4112251255154444
+𠘖 4133123312251134
+𠘗 2511445112213444
+𠘘 41412511125111134
+𠘙 41325115545541234
+𠘚 41413123412343112
+𠘛 41413122112512134
+𠘜 41325111544443134
+𠘝 411251234352511134
+𠘞 411211123451124334
+𠘟 411331234312342121
+𠘠 414125221241343534
+𠘡 414134125251131234
+𠘢 4121253444441335414
+𠘣 4134432522151154124
+𠘤 411531134545213424534
+𠘥 41251251121221113134
+𠘦 41325121425121425121425221
+𠘧 35
+𠘨 35
+𠘩 3535
+𠘪 3535
+𠘫 3554
+𠘬 3535
+𠘭 5435
+𠘮 3435
+𠘯 3554
+𠘰 3534
+𠘱 35333
+𠘲 13535
+𠘳 35252
+𠘴 35312
+𠘵 354315
+𠘶 132435
+𠘷 351355
+𠘸 352535
+𠘹 235111
+𠘺 15435
+𠘻 354354
+𠘼 3552252
+𠘽 2435235
+𠘾 3512154
+𠘿 5352535
+𠙀 3545535
+𠙁 1212135
+𠙂 3525134
+𠙃 5454135
+𠙄 3531252
+𠙅 3541431
+𠙆 34135435
+𠙇 41343435
+𠙈 35311252
+𠙉 12512535
+𠙊 35125113
+𠙋 32515135
+𠙌 35431112
+𠙍 35251214
+𠙎 31123435
+𠙏 341325135
+𠙐 512214535
+𠙑 212135435
+𠙒 3512511134
+𠙓 1213251135
+𠙔 3532511121
+𠙕 3552252251
+𠙖 4121112535
+𠙗 3511341555
+𠙘 35432521122
+𠙙 33544253435
+𠙚 15312135435
+𠙛 51112135435
+𠙜 12143112354
+𠙝 52354412435
+𠙞 12522153435
+𠙟 413434313435
+𠙠 343434343435
+𠙡 325115545435
+𠙢 523522135435
+𠙣 352522112154
+𠙤 3512141431531
+𠙥 4121112512235
+𠙦 4334433445354
+𠙧 3251132115135
+𠙨 12213542111535
+𠙩 13251121135354
+𠙪 31342512525135
+𠙫 251221125143135
+𠙬 355545543251214
+𠙭 5551345212224535
+𠙮 5132514143112354
+𠙯 1221325112111535
+𠙰 4155332411121354
+𠙱 51325141431123354
+𠙲 35311234351113424134
+𠙳 411125155444455444435
+𠙴 52
+𠙵 152
+𠙶 5252
+𠙷 1252
+𠙸 5452
+𠙹 31252
+𠙺 31252
+𠙻 11252
+𠙼 25152
+𠙽 12152
+𠙾 311252
+𠙿 521152
+𠚀 134452
+𠚁 343452
+𠚂 312152
+𠚃 125152
+𠚄 343452
+𠚅 345452
+𠚆 252512
+𠚇 1253452
+𠚈 1325152
+𠚉 3123452
+𠚊 4543452
+𠚋 55511252
+𠚌 12125152
+𠚍 34444452
+𠚎 251113252
+𠚏 312343452
+𠚐 522521234
+𠚑 132511152
+𠚒 125111152
+𠚓 1212515452
+𠚔 54134125152
+𠚕 34341343452
+𠚖 1121525534
+𠚗 31522515452
+𠚘 344332151152
+𠚙 25113452252252
+𠚚 52525345253452
+𠚛 121521215212152
+𠚜 344332151125251
+𠚝 2125541254543452
+𠚞 512251344325111341
+𠚟 3125124535433425152
+𠚠 2511352121251135212152
+𠚡 344332511125111212514
+𠚢 252215544443241112152252
+𠚣 53
+𠚤 354
+𠚥 5322
+𠚦 5354
+𠚧 1122
+𠚨 5253
+𠚩 2422
+𠚪 5353
+𠚫 5422
+𠚬 2453
+𠚭 35122
+𠚮 53315
+𠚯 13522
+𠚰 53122
+𠚱 21553
+𠚲 31353
+𠚳 41322
+𠚴 55522
+𠚵 35422
+𠚶 12122
+𠚷 125222
+𠚸 355422
+𠚹 355422
+𠚺 234322
+𠚻 15122
+𠚼 345322
+𠚽 125422
+𠚾 152322
+𠚿 545422
+𠛀 345422
+𠛁 321522
+𠛂 533422
+𠛃 311322
+𠛄 343422
+𠛅 134522
+𠛆 355122
+𠛇 534134
+𠛈 343453
+𠛉 311322
+𠛊 351522
+𠛋 521522
+𠛌 453522
+𠛍 415322
+𠛎 4525122
+𠛏 5455522
+𠛐 1123422
+𠛑 4155422
+𠛒 3354422
+𠛓 3535222
+𠛔 352322
+𠛕 2525322
+𠛖 1353322
+𠛗 1345422
+𠛘 1343522
+𠛙 2111522
+𠛚 5425222
+𠛛 3411522
+𠛜 1132422
+𠛝 1132534
+𠛞 1344353
+𠛟 1213222
+𠛠 3545522
+𠛡 4543422
+𠛢 3121122
+𠛣 2511122
+𠛤 2125153
+𠛥 1253422
+𠛦 3135422
+𠛧 25343422
+𠛨 31123422
+𠛩 55423422
+𠛪 34153422
+𠛫 35435422
+𠛬 11311222
+𠛭 25134122
+𠛮 34112122
+𠛯 21125222
+𠛰 25122522
+𠛱 55535422
+𠛲 341212122
+𠛳 41533453
+𠛴 35423422
+𠛵 51153422
+𠛶 34413422
+𠛷 32114122
+𠛸 25123553
+𠛹 25251122
+𠛺 311212153
+𠛻 31325222
+𠛼 43113222
+𠛽 11225153
+𠛾 51344422
+𠛿 25121422
+𠜀 15123422
+𠜁 15153422
+𠜂 25221122
+𠜃 32151122
+𠜄 32522122
+𠜅 41343422
+𠜆 41353422
+𠜇 41523422
+𠜈 51111222
+𠜉 52534122
+𠜊 55525122
+𠜋 34521122
+𠜌 35253525
+𠜍 45113522
+𠜎 31213522
+𠜏 25125222
+𠜐 212512222
+𠜑 342513522
+𠜒 125111222
+𠜓 353433453
+𠜔 211325222
+𠜕 312511222
+𠜖 344312122
+𠜗 341325222
+𠜘 511455422
+𠜙 125112422
+𠜚 113212122
+𠜛 253525122
+𠜜 351525122
+𠜝 121331222
+𠜞 355325111
+𠜟 252534122
+𠜠 251234122
+𠜡 413434553
+𠜢 413134422
+𠜣 312342253
+𠜤 121121534
+𠜥 125111253
+𠜦 532512251
+𠜧 3525133553
+𠜨 415334534
+𠜩 121512122
+𠜪 351512122
+𠜫 312334422
+𠜬 322511153
+𠜭 531214535
+𠜮 315541422
+𠜯 312125122
+𠜰 355132553
+𠜱 3251131222
+𠜲 1215512122
+𠜳 3511351122
+𠜴 2511123422
+𠜵 1112535134
+𠜶 2121212122
+𠜷 2125111522
+𠜸 5454541122
+𠜹 2511113422
+𠜺 3513134422
+𠜻 1251153422
+𠜼 3532151122
+𠜽 3434123422
+𠜾 5135225222
+𠜿 2523121122
+𠝀 2523415122
+𠝁 1123433322
+𠝂 3411343453
+𠝃 2534253422
+𠝄 3443353322
+𠝅 2125111253
+𠝆 1132112122
+𠝇 4133551522
+𠝈 3545335112
+𠝉 2523533322
+𠝊 1354113222
+𠝋 5131123422
+𠝌 5412413422
+𠝍 3122113522
+𠝎 3551122511
+𠝏 3412513453
+𠝐 122323522
+𠝑 5131123422
+𠝒 4132425122
+𠝓 3235435422
+𠝔 5315425153
+𠝕 5325111535
+𠝖 1221251153
+𠝗 5344225111
+𠝘 3542512122
+𠝙 1212135422
+𠝚 1221123422
+𠝛 1215425122
+𠝜 1121251122
+𠝝 12215123422
+𠝞 11232151122
+𠝟 12122513422
+𠝠 44534345422
+𠝡 41334153422
+𠝢 34125113222
+𠝣 212133541422
+𠝤 31251121122
+𠝥 13412112122
+𠝦 25232333122
+𠝧 51151115353
+𠝨 332341235422
+𠝩 11134251122
+𠝪 3543525122
+𠝫 43112113422
+𠝬 44543345422
+𠝭 51343113222
+𠝮 43135333422
+𠝯 31234223533
+𠝰 35135531134
+𠝱 13443123422
+𠝲 31234251122
+𠝳 44512511122
+𠝴 25343425222
+𠝵 31133112534
+𠝶 3121221122
+𠝷 32511153453
+𠝸 54523313453
+𠝹 25121343222
+𠝺 12211123422
+𠝻 12211134522
+𠝼 12211123453
+𠝽 53354552511
+𠝾 35343425222
+𠝿 243251113422
+𠞀 445345225222
+𠞁 121212523422
+𠞂 513414311222
+𠞃 355233552322
+𠞄 332153153522
+𠞅 251213535422
+𠞆 325115444422
+𠞇 325341151522
+𠞈 251154154122
+𠞉 125221123422
+𠞊 431121312122
+𠞋 251112512222
+𠞌 415432525122
+𠞍 251251353322
+𠞎 354354444422
+𠞏 311213112122
+𠞐 131525112122
+𠞑 413411243122
+𠞒 134432511522
+𠞓 112155423422
+𠞔 323432511122
+𠞕 312511211534
+𠞖 121251113422
+𠞗 121541215422
+𠞘 123434253422
+𠞙 312343423422
+𠞚 354552522122
+𠞛 451354154122
+𠞜 555253123422
+𠞝 121255535422
+𠞞 344332151122
+𠞟 412512525122
+𠞠 533123431134
+𠞡 251245251122
+𠞢 112143112153
+𠞣 112212521122
+𠞤 555252413422
+𠞥 4131235123522
+𠞦 1212134343422
+𠞧 4131235123553
+𠞨 5415413423422
+𠞩 4155441341222
+𠞪 112153313453
+𠞫 2512512512222
+𠞬 4135251353422
+𠞭 2511251253122
+𠞮 1343434343422
+𠞯 1452413451122
+𠞰 5552511123453
+𠞱 1221251112122
+𠞲 1123421541353
+𠞳 4313511351122
+𠞴 3445113251534
+𠞵 2522132153422
+𠞶 4143251225122
+𠞷 5111212512122
+𠞸 3251115444422
+𠞹 3431234454422
+𠞺 1354224134251
+𠞻 4155441341253
+𠞼 3413354142222
+𠞽 4313511225353
+𠞾 3323411243122
+𠞿 5454251113422
+𠟀 5332511154444
+𠟁 2523411243122
+𠟂 43252431251122
+𠟃 43125351112422
+𠟄 31312343123453
+𠟅 31431415412122
+𠟆 11341134251122
+𠟇 41354152123422
+𠟈 4325234313453
+𠟉 51352152152122
+𠟊 34125154154122
+𠟋 12112112113522
+𠟌 12124143125122
+𠟍 41431251121122
+𠟎 25125143152322
+𠟏 34343434251122
+𠟐 34151132515344
+𠟑 25341411125122
+𠟒 53251251113422
+𠟓 212115251113422
+𠟔 25111342512222
+𠟕 12211154123422
+𠟖 34125135112222
+𠟗 12124512125122
+𠟘 25114535123422
+𠟙 14524134115422
+𠟚 31431412112422
+𠟛 34112431444422
+𠟜 12121112111122
+𠟝 1225454545422
+𠟞 21212121212122
+𠟟 25221411125122
+𠟠 32411121252522
+𠟡 43344334433422
+𠟢 51112125112422
+𠟣 55455413453422
+𠟤 43111243125122
+𠟥 23413431225122
+𠟦 112111214543422
+𠟧 351335411125122
+𠟨 145241343415422
+𠟩 123434125251122
+𠟪 224314311123422
+𠟫 212534341123422
+𠟬 314314251113422
+𠟭 25111513212522
+𠟮 352534341433422
+𠟯 251251251123422
+𠟰 125111251113422
+𠟱 511123425121122
+𠟲 325343123411522
+𠟳 2211215353113112
+𠟴 123434342413422
+𠟵 153211135333422
+𠟶 445345135225222
+𠟷 511241342512122
+𠟸 411125112125122
+𠟹 535452132511134
+𠟺 1452413413252222
+𠟻 2511134251113422
+𠟼 41252211251353422
+𠟽 1212445312125122
+𠟾 555321511123422
+𠟿 5553211511123453
+𠠀 3143141534153422
+𠠁 2511554554444422
+𠠂 3513533352522122
+𠠃 3434121112111122
+𠠄 1212134243354122
+𠠅 1251234125123422
+𠠆 3412512511444422
+𠠇 354531215512122
+𠠈 1212341511325122
+𠠉 5325413251113422
+𠠊 2543125222125111
+𠠋 2135454251113422
+𠠌 55525341352413422
+𠠍 31234353342413422
+𠠎 41312211251213422
+𠠏 13121225112521422
+𠠐 12151211251124534
+𠠑 314314511545222
+𠠒 41312341234311222
+𠠓 43344334342413422
+𠠔 12125221251113453
+𠠕 1221252211123422
+𠠖 44534121251113422
+𠠗 55525341544544522
+𠠘 11325111325113422
+𠠙 44513443251123422
+𠠚 21213434134345222
+𠠛 145241343241112122
+𠠜 433443344531125222
+𠠝 133123431234212122
+𠠞 55135333425121422
+𠠟 414313431511223422
+𠠠 121252212511134534
+𠠡 2511252213525121422
+𠠢 1452413425125125153
+𠠣 4131234123455423422
+𠠤 3525211535352513522
+𠠥 35252115353525135422
+𠠦 12512512122125125121
+𠠧 32113253415111433422
+𠠨 12211112211112211122
+𠠩 25121354251431251122
+𠠪 411125155444455444453
+𠠫 125412544135221151522
+𠠬 314314341251251343422
+𠠭 452345332153515352511
+𠠮 51343111243111343111222
+𠠯 251212512125121452511122
+𠠰 14524134324111213241112122
+𠠱 14524134251251251123434122
+𠠲 353
+𠠳 5253
+𠠴 3535
+𠠵 3553
+𠠶 31553
+𠠷 53553
+𠠸 12353
+𠠹 453553
+𠠺 113553
+𠠻 335453
+𠠼 413453
+𠠽 433453
+𠠾 535215
+𠠿 135353
+𠡀 135453
+𠡁 152353
+𠡂 5153253
+𠡃 5313121
+𠡄 5325453
+𠡅 152153
+𠡆 4155453
+𠡇 5425153
+𠡈 3251153
+𠡉 1225153
+𠡊 1344353
+𠡋 2525153
+𠡌 4153553
+𠡍 5412153
+𠡎 2511153
+𠡏 3112153
+𠡐 5325115
+𠡑 44135453
+𠡒 32515153
+𠡓 44553153
+𠡔 55515353
+𠡕 13512153
+𠡖 41342253
+𠡗 12512553
+𠡘 53132121
+𠡙 53123424
+𠡚 12511153
+𠡛 25134153
+𠡜 41543553
+𠡝 55535453
+𠡞 325113553
+𠡟 124134453
+𠡠 143123453
+𠡡 213545453
+𠡢 555135453
+𠡣 125113453
+𠡤 415432553
+𠡥 533212134
+𠡦 315353112
+𠡧 413425153
+𠡨 513311553
+𠡩 312342253
+𠡪 352512153
+𠡫 5112413453
+𠡬 3212112153
+𠡭 1213535453
+𠡮 3511351153
+𠡯 1251511253
+𠡰 5135225253
+𠡱 2432511153
+𠡲 1334153453
+𠡳 1325251153
+𠡴 3123435353
+𠡵 3121353353
+𠡶 4311345353
+𠡷 5353531234
+𠡸 1251511253
+𠡹 2113545453
+𠡺 121545253
+𠡻 35334454453
+𠡼 43132511153
+𠡽 41251123453
+𠡾 11212413453
+𠡿 51325112153
+𠢀 12212512153
+𠢁 43113415453
+𠢂 12132535353
+𠢃 25111353353
+𠢄 43125112153
+𠢅 215315413453
+𠢆 445312125153
+𠢇 122511123153
+𠢈 321151112153
+𠢉 112212521153
+𠢊 132511453553
+𠢋 352512511134
+𠢌 111345325153
+𠢍 215315413453
+𠢎 225112512153
+𠢏 343123413453
+𠢐 152331341353
+𠢑 131153412453
+𠢒 352534151553
+𠢓 1212251113453
+𠢔 1251251251553
+𠢕 1214153313453
+𠢖 4134352513553
+𠢗 4143251225153
+𠢘 1325114513453
+𠢙 3143145425153
+𠢚 4311342511153
+𠢛 51534434554
+𠢜 5415413423453
+𠢝 2511252215453
+𠢞 1213542511153
+𠢟 2511153121354
+𠢠 12523412523453
+𠢡 31431434125153
+𠢢 54523123455453
+𠢣 53435325122134
+𠢤 13431523353453
+𠢥 51532251113453
+𠢦 12512345312121
+𠢧 33541443113453
+𠢨 13251145343453
+𠢩 12112112113553
+𠢪 4325234313453
+𠢫 14312345312121
+𠢬 31122221444453
+𠢭 13431523353453
+𠢮 25121452512153
+𠢯 54154134244453
+𠢰 35252115444453
+𠢱 123412341123453
+𠢲 353511235311253
+𠢳 123434125251153
+𠢴 352511211444453
+𠢵 123412341123453
+𠢶 5553211511123453
+𠢷 13434234532512341
+𠢸 4334433443344553
+𠢹 41312211251213453
+𠢺 341251123443113453
+𠢻 41211121112511153
+𠢼 5425111513212553
+𠢽 122251112211253
+𠢾 12511221112111153
+𠢿 25121251212512153
+𠣀 515125121125121153
+𠣁 433443344543123453
+𠣂 411125112543123453
+𠣃 515125121125121153
+𠣄 3525115153525135453
+𠣅 1212325151414311253
+𠣆 32113253415111433453
+𠣇 243353113411341251112
+𠣈 41112515544445544443553
+𠣉 14524134132522352513553
+𠣊 3111211121531525121454453
+𠣋 2111211114524134251251251123434153
+𠣌 3513
+𠣍 35112
+𠣎 35554
+𠣏 352121
+𠣐 35413
+𠣑 351135
+𠣒 353211
+𠣓 351154
+𠣔 3153533
+𠣕 3541121
+𠣖 3541554
+𠣗 3512154
+𠣘 35335414
+𠣙 35125111
+𠣚 35112511
+𠣛 35541234
+𠣜 35251214
+𠣝 35413511
+𠣞 351251112
+𠣟 355435354
+𠣠 342125122
+𠣡 353425111
+𠣢 351135252
+𠣣 121535345
+𠣤 3525113415
+𠣥 3513533434
+𠣦 3512214334
+𠣧 3523435234
+𠣨 3535435354
+𠣩 1251234351
+𠣪 3525135251
+𠣫 5325135251
+𠣬 3525113415
+𠣭 3541431251
+𠣮 35134431112
+𠣯 35121225121
+𠣰 3512132511
+𠣱 35212522111
+𠣲 3512212152
+𠣳 21251112354
+𠣴 35312511354
+𠣵 351251124121
+𠣶 355152515322
+𠣷 212135251354
+𠣸 3541251251354
+𠣹 35511541535
+𠣺 4115123435515
+𠣻 1344311535515
+𠣼 1341123435515
+𠣽 35121221113134
+𠣾 35332312511354
+𠣿 35212511153554
+𠤀 35251113543533
+𠤁 25125111535515
+𠤂 35325111311515
+𠤃 134431123435515
+𠤄 3531431412143112
+𠤅 3512121215425221
+𠤆 353344112132511
+𠤇 3533241251251354
+𠤈 35343423434234342
+𠤉 55455415545545351
+𠤊 35445353251113515
+𠤋 35251214251214251214
+𠤌 3533411125112132511
+𠤍 3512225125132411121
+𠤎 35
+𠤏 1512
+𠤐 15135
+𠤑 1531134
+𠤒 3421115
+𠤓 3544535
+𠤔 1512211
+𠤕 1531134
+𠤖 21135112
+𠤗 153113415
+𠤘 155431134
+𠤙 353251115
+𠤚 152511252
+𠤛 152155121
+𠤜 1213113415
+𠤝 243451135
+𠤞 352511455112
+𠤟 1525114512
+𠤠 2434525115
+𠤡 1512341132
+𠤢 2111532121
+𠤣 325344521115
+𠤤 351225111134
+𠤥 2111545355435
+𠤦 21135445345435
+𠤧 35121251112134
+𠤨 35113432511112
+𠤩 25221542511353535
+𠤪 151134541212525111
+𠤫 32112512515114521115
+𠤬 55
+𠤭 1345
+𠤮 134155
+𠤯 13245
+𠤰 135545
+𠤱 111345
+𠤲 115255
+𠤳 1122515
+𠤴 1251345
+𠤵 1311215
+𠤶 1411255
+𠤷 1315255
+𠤸 13112525
+𠤹 13411215
+𠤺 13353345
+𠤻 14312345
+𠤼 132231345
+𠤽 125343415
+𠤾 125134155
+𠤿 134152515
+𠥀 113242515
+𠥁 132511345
+𠥂 112343545
+𠥃 133152525
+𠥄 211121351
+𠥅 125125125
+𠥆 125211215
+𠥇 141112515
+𠥈 112135345
+𠥉 1325113125
+𠥊 1122111345
+𠥋 1441325115
+𠥌 1332532545
+𠥍 152125125
+𠥎 15212511525
+𠥏 11251251215
+𠥐 134151132515
+𠥑 1322313412345
+𠥒 134433215115
+𠥓 1522145132
+𠥔 132324111215
+𠥕 112154252215
+𠥖 1122135452525
+𠥗 1344511545345
+𠥘 1545425111345
+𠥙 14312535111245
+𠥚 11214551535545
+𠥛 14351225115345
+𠥜 125113534535345
+𠥝 125125125135545
+𠥞 121251113411215
+𠥟 112251341124315
+𠥠 112112511125345
+𠥡 122512512512515
+𠥢 1311222213541525
+𠥣 13251114453541535
+𠥤 11221325112535115
+𠥥 132411121324111215
+𠥦 1541541251211221345
+𠥧 15221451321324251
+𠥨 2512142512142512145
+𠥩 152214513212211134
+𠥪 15221451323443321511
+𠥫 1522145132325111445354153
+𠥬 1522145132212132411121321511
+𠥭 1535
+𠥮 125345
+𠥯 135155
+𠥰 1353525
+𠥱 1522525
+𠥲 1251325
+𠥳 12431355
+𠥴 144134155
+𠥵 141112515
+𠥶 1215315355
+𠥷 12512512515354
+𠥸 12512524133215315355
+𠥹 125125125153251154444
+𠥺 1251251251512512512515
+𠥻 1221
+𠥼 1212
+𠥽 12341
+𠥾 35412
+𠥿 5512
+𠦀 21112
+𠦁 51212
+𠦂 413412
+𠦃 121212
+𠦄 121212
+𠦅 313312
+𠦆 251112
+𠦇 135312
+𠦈 113212
+𠦉 123312
+𠦊 115412
+𠦋 211312
+𠦌 122122
+𠦍 343412
+𠦎 343412
+𠦏 343412
+𠦐 123535
+𠦑 4134424
+𠦒 1221112
+𠦓 1433412
+𠦔 1212121
+𠦕 1213512
+𠦖 4431312
+𠦗 1225151
+𠦘 12135412
+𠦙 12511234
+𠦚 51253531
+𠦛 33121212
+𠦜 12211221
+𠦝 12251112
+𠦞 21115312
+𠦟 12511252
+𠦠 12325111
+𠦡 12122112
+𠦢 12535353
+𠦣 2515251112
+𠦤 2521251112
+𠦥 4132515112
+𠦦 1325135412
+𠦧 1214311212
+𠦨 3552335312
+𠦩 1212343134
+𠦪 12121213412
+𠦫 25112211113
+𠦬 33434343412
+𠦭 44132515112
+𠦮 15444413412
+𠦯 43112511534
+𠦰 121221113534
+𠦱 125112125134
+𠦲 212511123132
+𠦳 414313333312
+𠦴 1122151221512
+𠦵 12251251343412
+𠦶 1221321151112
+𠦷 2125111254132
+𠦸 4111251413412
+𠦹 121353334454
+𠦺 211253443112
+𠦻 4311212134354
+𠦼 5543241112112
+𠦽 12125112144544
+𠦾 12212121212121
+𠦿 31234352343132
+𠧀 353121125444412
+𠧁 122434525125121
+𠧂 122121352513134
+𠧃 125112432511312
+𠧄 212511122511112
+𠧅 2552525132511312
+𠧆 43112213441343412
+𠧇 21251112321511132
+𠧈 12251251251251112
+𠧉 122512512512511412
+𠧊 325125112251113533
+𠧋 123531254312114444
+𠧌 313213425234343434
+𠧍 145244441325223132
+𠧎 3443251325155455412
+𠧏 344325125155425125112
+𠧐 4111251324111213241112112
+𠧑 32111225151134343241112112
+𠧒 215
+𠧓 24534
+𠧔 211354
+𠧕 211513
+𠧖 212534
+𠧗 211125
+𠧘 215354
+𠧙 5325124
+𠧚 2125341
+𠧛 2115134
+𠧜 2125531
+𠧝 5154134
+𠧞 34153424
+𠧟 21253415
+𠧠 21255115
+𠧡 21251115
+𠧢 21251115
+𠧣 21133312
+𠧤 21253415
+𠧥 11241124
+𠧦 43155424
+𠧧 21353541
+𠧨 35425124
+𠧩 315541424
+𠧪 212534341
+𠧫 212511354
+𠧬 511325124
+𠧭 134123424
+𠧮 513311524
+𠧯 212534134
+𠧰 212511251
+𠧱 212535415
+𠧲 212543112
+𠧳 2125123333
+𠧴 2125343415
+𠧵 2125341134
+𠧶 2145352534
+𠧷 2125343415
+𠧸 2125454341
+𠧹 2125123334
+𠧺 21251121354
+𠧻 21251123333
+𠧼 2125543354
+𠧽 21353544334
+𠧾 21253541354
+𠧿 21253431134
+𠨀 212511152555
+𠨁 212534253534
+𠨂 213533213533
+𠨃 251215335424
+𠨄 212534125251
+𠨅 2125112535415
+𠨆 21253512112534
+𠨇 21255454541234
+𠨈 212535251112534
+𠨉 343434343435424
+𠨊 112212521135424
+𠨋 212534341212534341212534341
+𠨌 212535412341252211123412522111234
+𠨍 5352
+𠨎 5555
+𠨏 5452
+𠨐 1552
+𠨑 41552
+𠨒 151552
+𠨓 52155215
+𠨔 1221511
+𠨕 555555
+𠨖 524524
+𠨗 331554
+𠨘 4543452
+𠨙 451215452
+𠨚 341325252
+𠨛 415454452
+𠨜 351355135
+𠨝 351454452
+𠨞 535115452
+𠨟 343123413455
+𠨠 5115452354
+𠨡 521312135352
+𠨢 3513555435354
+𠨣 3535212155121
+𠨤 2522522523455
+𠨥 35312211135352
+𠨦 13251145351215452
+𠨧 321132534151113455
+𠨨 321132515151113455
+𠨩 321125125151113455
+𠨪 351355121121121135
+𠨫 41112515544445544443543524
+𠨬 3335
+𠨭 13112
+𠨮 13514
+𠨯 13521
+𠨰 13515
+𠨱 13525
+𠨲 52213
+𠨳 13524
+𠨴 133432
+𠨵 131112
+𠨶 131134
+𠨷 131255
+𠨸 133534
+𠨹 131354
+𠨺 133112
+𠨻 133554
+𠨼 131152
+𠨽 131515
+𠨾 133112
+𠨿 133515
+𠩀 1352522
+𠩁 1335444
+𠩂 1312154
+𠩃 5225213
+𠩄 1343312
+𠩅 131554
+𠩆 13212135
+𠩇 1335333
+𠩈 1341121
+𠩉 1352252
+𠩊 13152511
+𠩋 13431523
+𠩌 13253341
+𠩍 13212154
+𠩎 13312111
+𠩏 13211234
+𠩐 13111534
+𠩑 13511335
+𠩒 13251154
+𠩓 13341534
+𠩔 13433435
+𠩕 13431234
+𠩖 43135112
+𠩗 134413534
+𠩘 131343434
+𠩙 133121534
+𠩚 131253511
+𠩛 132534341
+𠩜 133434121
+𠩝 131214153
+𠩞 133513521
+𠩟 131234341
+𠩠 132511134
+𠩡 133232511
+𠩢 13312154
+𠩣 133425135
+𠩤 132511234
+𠩥 132511121
+𠩦 134423534
+𠩧 1334152121
+𠩨 1353154521
+𠩩 1325115134
+𠩪 1312523422
+𠩫 1332151135
+𠩬 1313434234
+𠩭 1341251521
+𠩮 1313325111
+𠩯 1354325112
+𠩰 1325125112
+𠩱 1312343534
+𠩲 1332511312
+𠩳 1321531515
+𠩴 1332511354
+𠩵 1312341234
+𠩶 1325121412
+𠩷 1325121312
+𠩸 13341511534
+𠩹 13445433454
+𠩺 11234313413
+𠩻 13321113554
+𠩼 13112343534
+𠩽 13154312341
+𠩾 13312344334
+𠩿 13251112212
+𠪀 13251125112
+𠪁 13312343534
+𠪂 13451325122
+𠪃 13521325111
+𠪄 13121225121
+𠪅 13512115154
+𠪆 13121121124
+𠪇 133211511254
+𠪈 133412512121
+𠪉 134311213121
+𠪊 133315112234
+𠪋 132511251522
+𠪌 134132344334
+𠪍 133325325455
+𠪎 131344325115
+𠪏 133332511534
+𠪐 133545325121
+𠪑 1312135121354
+𠪒 1325134112431
+𠪓 1353454554234
+𠪔 1334431225154
+𠪕 1224313512234
+𠪖 1312341234121
+𠪗 1341112513534
+𠪘 1351135113554
+𠪙 1325121122134
+𠪚 13121221113134
+𠪛 13122143344334
+𠪜 13121234112431
+𠪝 13431253511134
+𠪞 13343434342511
+𠪟 13511534311252
+𠪠 13123412343511
+𠪡 1351312132511
+𠪢 13341124313534
+𠪣 13122125113134
+𠪤 13122134121121
+𠪥 13325112342534
+𠪦 13341251311252
+𠪧 13521525111234
+𠪨 13251121134121
+𠪩 13254312114444
+𠪪 13334343434121
+𠪫 13122511153134
+𠪬 1351221112154
+𠪭 135225241533134
+𠪮 135132514143112
+𠪯 132522112143112
+𠪰 133251125344544
+𠪱 133123431234544
+𠪲 131221251112153
+𠪳 132522132115511
+𠪴 131234123452134
+𠪵 131221312511211
+𠪶 131354351251431
+𠪷 132511451251112
+𠪸 13122122151234
+𠪹 13125221451554
+𠪺 1331234312343553
+𠪻 3352151251124124
+𠪼 1312143112511534
+𠪽 1341431251511354
+𠪾 1331234312344544
+𠪿 13121225121251214
+𠫀 135132514143112121
+𠫁 131121112112342511
+𠫂 132153152512125221
+𠫃 131214311245341234
+𠫄 134311124325134454
+𠫅 12254251132511521
+𠫆 13251152112254251
+𠫇 13122111132522114544
+𠫈 13554444433443343115
+𠫉 131525111534132511134
+𠫊 135122111132522114544
+𠫋 131223525121444431234
+𠫌 133123431234212112123554
+𠫍 13251113425111342511134
+𠫎 132511125111134434112431
+𠫏 133123431234212141343412
+𠫐 13325112534325112534325112534
+𠫑 13121125444412112544441211254444
+𠫒 133251125341332511253413325112534
+𠫓 154
+𠫔 154
+𠫕 554
+𠫖 545
+𠫗 3554
+𠫘 5412
+𠫙 54345
+𠫚 54112
+𠫛 54154
+𠫜 54553
+𠫝 54325
+𠫞 545435
+𠫟 312154
+𠫠 543535
+𠫡 541234
+𠫢 111254
+𠫣 542534
+𠫤 341354
+𠫥 343454
+𠫦 5445252
+𠫧 5412534
+𠫨 5454354
+𠫩 54251234
+𠫪 54251134
+𠫫 54545415
+𠫬 54545454
+𠫭 54134234
+𠫮 54251135
+𠫯 54545434
+𠫰 545454111
+𠫱 545454325
+𠫲 341354512
+𠫳 121543554
+𠫴 121542343
+𠫵 541342444
+𠫶 542511211
+𠫷 341354354
+𠫸 542542542
+𠫹 5454251112
+𠫺 5425125112
+𠫻 5413425211
+𠫼 5454543211
+𠫽 54134111111
+𠫾 12154354354
+𠫿 541341251134
+𠬀 545425121154
+𠬁 545454134121
+𠬂 545445354152
+𠬃 121541251124
+𠬄 545454354111
+𠬅 545454134111
+𠬆 5454234554234
+𠬇 1215441251234
+𠬈 1215432511312
+𠬉 1215434435112
+𠬊 5444454134333
+𠬋 5454251131121
+𠬌 4311325435354
+𠬍 54343543525135
+𠬎 54545415112531
+𠬏 54311225431415
+𠬐 54545432113541
+𠬑 121541215412154
+𠬒 12154255452511
+𠬓 5454543423425135
+𠬔 545454251115132125
+𠬕 12154452341251124
+𠬖 12154452341251124
+𠬗 13544311213121534
+𠬘 5454543211211121111
+𠬙 5454543433312523434
+𠬚 3554
+𠬛 5354
+𠬜 5455
+𠬝 5254
+𠬞 5354
+𠬟 5454
+𠬠 4354
+𠬡 13154
+𠬢 52254
+𠬣 1554
+𠬤 54112
+𠬥 25254
+𠬦 32554
+𠬧 41254
+𠬨 52454
+𠬩 521354
+𠬪 344354
+𠬫 555154
+𠬬 343554
+𠬭 541354
+𠬮 521354
+𠬯 545542
+𠬰 345354
+𠬱 2515354
+𠬲 1344354
+𠬳 5355454
+𠬴 5443111
+𠬵 4312354
+𠬶 5114554
+𠬷 1351354
+𠬸 2551554
+𠬹 54554234
+𠬺 54541312
+𠬻 31125354
+𠬼 11231354
+𠬽 54111234
+𠬾 54554554
+𠬿 321215354
+𠭀 545454251
+𠭁 251113454
+𠭂 541213521
+𠭃 122512554
+𠭄 125123454
+𠭅 135412121
+𠭆 522125154
+𠭇 412512154
+𠭈 512514554
+𠭉 212511254
+𠭊 3211151154
+𠭋 5454545455
+𠭌 545454122135
+𠭍 1452413454
+𠭎 5425154251
+𠭏 2521251254
+𠭐 1215432121
+𠭑 5413412512
+𠭒 2511251154
+𠭓 2121243154
+𠭔 3251511354
+𠭕 1343412154
+𠭖 34431225154
+𠭗 21531113254
+𠭘 21354541132
+𠭙 15121351154
+𠭚 54545425155
+𠭛 32533415354
+𠭜 15121251154
+𠭝 5135131354
+𠭞 54545425152
+𠭟 35444655454
+𠭠 35253551354
+𠭡 33434345354
+𠭢 35354541132
+𠭣 55135333454
+𠭤 25132513354
+𠭥 522521123454
+𠭦 343211511254
+𠭧 344313441354
+𠭨 545454122134
+𠭩 15425114554
+𠭪 122111351154
+𠭫 543545411234
+𠭬 543251154444
+𠭭 321115251154
+𠭮 211354541132
+𠭯 2153152511154
+𠭰 1123431341354
+𠭱 1252213412154
+𠭲 2511135333454
+𠭳 4312523335411
+𠭴 5454545452252
+𠭵 515511525154
+𠭶 4313522151354
+𠭷 1213234313454
+𠭸 2121251113454
+𠭹 2125111345454
+𠭺 5454153545434
+𠭻 4315235435112
+𠭼 21115453551354
+𠭽 54253435425252
+𠭾 54352525435252
+𠭿 13533251125254
+𠮀 54545425354251
+𠮁 3412354252554
+𠮂 12213425341354
+𠮃 513251414311254
+𠮄 545454543425135
+𠮅 55444412112254
+𠮆 545425111343134
+𠮇 5435425254354252
+𠮈 4531534342511154
+𠮉 2153134342511154
+𠮊 2511112412211154
+𠮋 3134212112211154
+𠮌 5454545435321511
+𠮍 25211252445433454
+𠮎 12342513425115354
+𠮏 21531534342511154
+𠮐 545454543443321511
+𠮑 1221251123543123454
+𠮒 414312511254545454
+𠮓 411125155444455444454
+𠮔 541254125441352211515
+𠮕 1325114525121425121454
+𠮖 41112515544445544445455
+𠮗 344355444455444455444454
+𠮘 54252251324211251251154
+𠮙 2515
+𠮚 2541
+𠮛 1251
+𠮜 2515
+𠮝 2512
+𠮞 5251
+𠮟 25115
+𠮠 25153
+𠮡 25111
+𠮢 54251
+𠮣 34251
+𠮤 25155
+𠮥 35251
+𠮦 43251
+𠮧 25122
+𠮨 25153
+𠮩 25152
+𠮪 25155
+𠮫 354251
+𠮬 251354
+𠮭 251354
+𠮮 313251
+𠮯 515251
+𠮰 251555
+𠮱 251115
+𠮲 251115
+𠮳 211251
+𠮴 124251
+𠮵 251211
+𠮶 251342
+𠮷 121251
+𠮸 541251
+𠮹 251123
+𠮺 251234
+𠮻 251354
+𠮼 251124
+𠮽 251132
+𠮾 251135
+𠮿 251252
+𠯀 251322
+𠯁 251434
+𠯂 251521
+𠯃 251522
+𠯄 251534
+𠯅 251154
+𠯆 251534
+𠯇 251515
+𠯈 251134
+𠯉 532511
+𠯊 251112
+𠯋 2513515
+𠯌 3413251
+𠯍 2512511
+𠯎 2515311
+𠯏 2513115
+𠯐 2512511
+𠯑 3515251
+𠯒 3215251
+𠯓 3312251
+𠯔 2511355
+𠯕 2511355
+𠯖 2513513
+𠯗 2511252
+𠯘 2511354
+𠯙 2512344
+𠯚 2511325
+𠯛 1312251
+𠯜 2513554
+𠯝 2511554
+𠯞 2511551
+𠯟 2512535
+𠯠 2514354
+𠯡 2512115
+𠯢 2511322
+𠯣 251454
+𠯤 2511132
+𠯥 2513512
+𠯦 2511553
+𠯧 2512521
+𠯨 3553251
+𠯩 2511215
+𠯪 2511354
+𠯫 2511534
+𠯬 2512134
+𠯭 2512511
+𠯮 2512521
+𠯯 2513215
+𠯰 2513212
+𠯱 2513434
+𠯲 2513511
+𠯳 3533251
+𠯴 2514124
+𠯵 2515134
+𠯶 5151251
+𠯷 2515354
+𠯸 2511312
+𠯹 2513253
+𠯺 4135251
+𠯻 2515545
+𠯼 2513212
+𠯽 2512121
+𠯾 2513235
+𠯿 2514134
+𠰀 2515152
+𠰁 2511215
+𠰂 2511135
+𠰃 2513121
+𠰄 2515452
+𠰅 2513112
+𠰆 2511515
+𠰇 2514515
+𠰈 25151554
+𠰉 25153251
+𠰊 25152134
+𠰋 25132121
+𠰌 25111234
+𠰍 25141121
+𠰎 25151354
+𠰏 2513454
+𠰐 25112515
+𠰑 25113112
+𠰒 25134234
+𠰓 25131234
+𠰔 55414251
+𠰕 52252251
+𠰖 251121252
+𠰗 25133415
+𠰘 25125221
+𠰙 25111222
+𠰚 25145234
+𠰛 25212251
+𠰜 25134312
+𠰝 25351251
+𠰞 31251251
+𠰟 51511251
+𠰠 2511515
+𠰡 25144515
+𠰢 25143112
+𠰣 45434251
+𠰤 25141532
+𠰥 43113251
+𠰦 45534251
+𠰧 25111214
+𠰨 25113335
+𠰩 25135112
+𠰪 25112121
+𠰫 11134251
+𠰬 25125121
+𠰭 25135352
+𠰮 25131121
+𠰯 25135334
+𠰰 32154251
+𠰱 25112252
+𠰲 25112354
+𠰳 25112534
+𠰴 25113251
+𠰵 25113443
+𠰶 15113251
+𠰷 25121513
+𠰸 25125511
+𠰹 25131525
+𠰺 25132154
+𠰻 25135424
+𠰼 2511252
+𠰽 25144535
+𠰾 25151335
+𠰿 25152534
+𠱀 25153254
+𠱁 25152534
+𠱂 25121251
+𠱃 25125251
+𠱄 25125221
+𠱅 25154121
+𠱆 25153521
+𠱇 25144534
+𠱈 25131134
+𠱉 25134333
+𠱊 25132121
+𠱋 25125121
+𠱌 25111154
+𠱍 25135355
+𠱎 25135331
+𠱏 25113511
+𠱐 2512515134
+𠱑 251134251
+𠱒 311234251
+𠱓 251351355
+𠱔 251445124
+𠱕 251355435
+𠱖 251325341
+𠱗 412512511
+𠱘 251431523
+𠱙 251211234
+𠱚 251211124
+𠱛 532535251
+𠱜 251132521
+𠱝 251543511
+𠱞 251351234
+𠱟 251351234
+𠱠 251251251
+𠱡 251251122
+𠱢 251441112
+𠱣 251515121
+𠱤 251311234
+𠱥 25112132
+𠱦 323434251
+𠱧 323534251
+𠱨 251552522
+𠱩 125351251
+𠱪 251414312
+𠱫 414314251
+𠱬 251112251
+𠱭 523522251
+𠱮 251543541
+𠱯 251251121
+𠱰 351112251
+𠱱 251353341
+𠱲 251511511
+𠱳 251515515
+𠱴 251341121
+𠱵 254125134
+𠱶 251445112
+𠱷 251354251
+𠱸 251125125
+𠱹 251121315
+𠱺 251525341
+𠱻 251125211
+𠱼 251121315
+𠱽 251132121
+𠱾 251121124
+𠱿 251535353
+𠲀 125134251
+𠲁 251251534
+𠲂 251251134
+𠲃 25135152
+𠲄 25135452
+𠲅 251355215
+𠲆 312341251
+𠲇 251341324
+𠲈 251342534
+𠲉 251323121
+𠲊 251121354
+𠲋 251125234
+𠲌 251134534
+𠲍 251312154
+𠲎 251321534
+𠲏 251323121
+𠲐 251333515
+𠲑 431132515
+𠲒 342444251
+𠲓 251354152
+𠲔 251413234
+𠲕 251413121
+𠲖 251413534
+𠲗 251414312
+𠲘 431112251
+𠲙 251513354
+𠲚 251521521
+𠲛 251252511
+𠲜 251355112
+𠲝 251454124
+𠲞 251121121
+𠲟 251323112
+𠲠 251523134
+𠲡 251531521
+𠲢 251251252
+𠲣 251325221
+𠲤 251441531
+𠲥 25145245
+𠲦 251113534
+𠲧 251112154
+𠲨 251441525
+𠲩 413412251
+𠲪 251351355
+𠲫 251552252
+𠲬 2511225125
+𠲭 2515543534
+𠲮 2511555121
+𠲯 4155414251
+𠲰 2515113251
+𠲱 3112354251
+𠲲 2514134333
+𠲳 2513251113
+𠲴 2511213554
+𠲵 2511215453
+𠲶 2513525135
+𠲷 2511221115
+𠲸 2512512153
+𠲹 2515154544
+𠲺 2512523554
+𠲻 4413312251
+𠲼 2513211511
+𠲽 2513251532
+𠲾 2513525111
+𠲿 2511251234
+𠳀 2515425112
+𠳁 2512512341
+𠳂 2513515251
+𠳃 2511212534
+𠳄 1234341251
+𠳅 3431234251
+𠳆 1121251534
+𠳇 2513312251
+𠳈 2513413251
+𠳉 2513525111
+𠳊 1251212154
+𠳋 2512125151
+𠳌 1215412512
+𠳍 2511325221
+𠳎 251325434
+𠳏 2511212121
+𠳐 251111352
+𠳑 2511213552
+𠳒 2511134211
+𠳓 2514131515
+𠳔 251321515
+𠳕 2511212343
+𠳖 251121354
+𠳗 2511214535
+𠳘 2513223134
+𠳙 5425132154
+𠳚 2515153134
+𠳛 4413134251
+𠳜 251111234
+𠳝 2511324251
+𠳞 2511215452
+𠳟 2511121135
+𠳠 2511211135
+𠳡 2512512512
+𠳢 2513545434
+𠳣 2512522112
+𠳤 2512121233
+𠳥 25125234121
+𠳦 2512522154
+𠳧 2511515111
+𠳨 2513155414
+𠳩 2513253254
+𠳪 2513533251
+𠳫 1225135112
+𠳬 1225112251
+𠳭 2511225135
+𠳮 1325125251
+𠳯 2511525115
+𠳰 2512121354
+𠳱 2512125341
+𠳲 2512511112
+𠳳 2512511234
+𠳴 2512512531
+𠳵 2512514134
+𠳶 2513123435
+𠳷 2513212154
+𠳸 2513541234
+𠳹 2514131234
+𠳺 2514134251
+𠳻 2514134251
+𠳼 2514451234
+𠳽 2514453412
+𠳾 2514534112
+𠳿 2515133115
+𠴀 2515155151
+𠴁 2515155251
+𠴂 2515315453
+𠴃 2515454134
+𠴄 2515544445
+𠴅 1134234251
+𠴆 2511454454
+𠴇 2513212134
+𠴈 2514451354
+𠴉 251521135
+𠴊 2512513251
+𠴋 2511213553
+𠴌 2515114334
+𠴍 2515344544
+𠴎 2514413134
+𠴏 251122415
+𠴐 2514425211
+𠴑 251122531
+𠴒 2513234454
+𠴓 2513235154
+𠴔 2512511121
+𠴕 2515312343
+𠴖 2513241431
+𠴗 2511234121
+𠴘 2511234124
+𠴙 2511215215
+𠴚 2513231211
+𠴛 2514453453
+𠴜 2511211254
+𠴝 2514411121
+𠴞 2513243112
+𠴟 2512121112
+𠴠 2513412534
+𠴡 2513251135
+𠴢 2511215213
+𠴣 2514335251
+𠴤 2511214544
+𠴥 2514413435
+𠴦 3525141121
+𠴧 25154545411
+𠴨 25144525151
+𠴩 25112211134
+𠴪 25151325254
+𠴫 25121123454
+𠴬 25141541234
+𠴭 25125113533
+𠴮 25135534544
+𠴯 25131234341
+𠴰 25135424251
+𠴱 25125122511
+𠴲 25125342511
+𠴳 25134133541
+𠴴 2511252454
+𠴵 25151145252
+𠴶 25135345235
+𠴷 25134135452
+𠴸 44153254251
+𠴹 25144141431
+𠴺 25132534135
+𠴻 2515231525
+𠴼 25115412122
+𠴽 25141354354
+𠴾 25152115211
+𠴿 25132511221
+𠵀 25125125112
+𠵁 35121251251
+𠵂 12341234251
+𠵃 25113443112
+𠵄 25125221112
+𠵅 2511223235
+𠵆 2511212511
+𠵇 25113412512
+𠵈 25153111234
+𠵉 25112344135
+𠵊 43112112251
+𠵋 25132511121
+𠵌 25144525111
+𠵍 12343312251
+𠵎 25153112251
+𠵏 25113412515
+𠵐 25144212154
+𠵑 25151521251
+𠵒 25141353412
+𠵓 32541225412
+𠵔 25143122431
+𠵕 25112135121
+𠵖 25115341534
+𠵗 25115243135
+𠵘 25151122511
+𠵙 25125234154
+𠵚 25125213112
+𠵛 25125125115
+𠵜 25125431415
+𠵝 25112121523
+𠵞 31212513533
+𠵟 25131211234
+𠵠 25111324251
+𠵡 25111321132
+𠵢 251113234
+𠵣 25112511125
+𠵤 1212154251
+𠵥 12511251251
+𠵦 12512513112
+𠵧 13121534251
+𠵨 25125111124
+𠵩 25125111234
+𠵪 25125112134
+𠵫 25125113552
+𠵬 25125125154
+𠵭 25125152511
+𠵮 25131213112
+𠵯 25131225122
+𠵰 25131243135
+𠵱 25132413534
+𠵲 33125112512
+𠵳 33125151254
+𠵴 25134125152
+𠵵 34125143112
+𠵶 25134525354
+𠵷 25141345435
+𠵸 25151535234
+𠵹 25125431252
+𠵺 25134435215
+𠵻 25144511234
+𠵼 25152125221
+𠵽 25144112154
+𠵾 25112512152
+𠵿 25112153254
+𠶀 25145341234
+𠶁 25122112134
+𠶂 25134343134
+𠶃 25111211135
+𠶄 25152112512
+𠶅 25112153251
+𠶆 2513212454
+𠶇 25125245534
+𠶈 2514524121
+𠶉 25132312135
+𠶊 25112153254
+𠶋 2511223432
+𠶌 2513312454
+𠶍 25112344535
+𠶎 25133253254
+𠶏 25131511234
+𠶐 2513552454
+𠶑 25143123452
+𠶒 25144225111
+𠶓 25111213534
+𠶔 25144254121
+𠶕 25144153251
+𠶖 25112341121
+𠶗 25113251111
+𠶘 12512135422
+𠶙 2511221324
+𠶚 25153112512
+𠶛 25141251234
+𠶜 25131125222
+𠶝 25112515112
+𠶞 25144231121
+𠶟 25112125112
+𠶠 25144154251
+𠶡 25113251132
+𠶢 25144125121
+𠶣 25112343134
+𠶤 25124325251
+𠶥 25144534515
+𠶦 25141325121
+𠶧 25141321251
+𠶨 25135414334
+𠶩 25151335154
+𠶪 25121531553
+𠶫 25113452534
+𠶬 25125111221
+𠶭 25125112531
+𠶮 12125112251
+𠶯 25112152252
+𠶰 35435121251
+𠶱 13251354251
+𠶲 25113311252
+𠶳 35133554251
+𠶴 2515241252
+𠶵 25135322134
+𠶶 45132511534
+𠶷 414312512251
+𠶸 251343425152
+𠶹 251554444315
+𠶺 251125342154
+𠶻 251251122111
+𠶼 251251115555
+𠶽 251554554122
+𠶾 251121212512
+𠶿 251134431112
+𠷀 251132522134
+𠷁 251431351122
+𠷂 251542514544
+𠷃 251445343454
+𠷄 251413311252
+𠷅 251121252252
+𠷆 251121231211
+𠷇 251415331525
+𠷈 251332511112
+𠷉 25153251454
+𠷊 251321251135
+𠷋 251132511521
+𠷌 251251113422
+𠷍 251511241345
+𠷎 515121121251
+𠷏 354251225251
+𠷐 251442125111
+𠷑 251543343554
+𠷒 251332425111
+𠷓 251211525134
+𠷔 125125134345
+𠷕 251351251214
+𠷖 251445353454
+𠷗 413413333251
+𠷘 251433431234
+𠷙 251251113134
+𠷚 251251112121
+𠷛 251134525354
+𠷜 343412135251
+𠷝 251253444441
+𠷞 354352412251
+𠷟 251251213432
+𠷠 132511534251
+𠷡 132511341251
+𠷢 2513112121112
+𠷣 251251251214
+𠷤 251351135515
+𠷥 251412514512
+𠷦 251352513553
+𠷧 251114334534
+𠷨 251351325122
+𠷩 251431121534
+𠷪 251445121251
+𠷫 122512513534
+𠷬 251125431234
+𠷭 251522515452
+𠷮 251112155414
+𠷯 251521325111
+𠷰 251132522111
+𠷱 113412211251
+𠷲 251511251124
+𠷳 251135424251
+𠷴 251332554354
+𠷵 251554444124
+𠷶 251354131121
+𠷷 313411214251
+𠷸 251121251431
+𠷹 251123425111
+𠷺 251124552153
+𠷻 251125351124
+𠷼 251131234534
+𠷽 251251125234
+𠷾 251251112154
+𠷿 251312114544
+𠸀 251354413434
+𠸁 251441333534
+𠸂 251445341344
+𠸃 251515515134
+𠸄 251121225134
+𠸅 251251135454
+𠸆 413534121251
+𠸇 251515515134
+𠸈 251251121121
+𠸉 251252354251
+𠸊 251134122111
+𠸋 251121212251
+𠸌 251431353334
+𠸍 251431121134
+𠸎 251531543112
+𠸏 251121253251
+𠸐 251452343415
+𠸑 251543251122
+𠸒 251322511234
+𠸓 251121312251
+𠸔 25112241252
+𠸕 251355425115
+𠸖 251121234154
+𠸗 452345312251
+𠸘 251323434251
+𠸙 122511121132
+𠸚 25112235251
+𠸛 354251312135
+𠸜 312135354251
+𠸝 251215112134
+𠸞 251433421251
+𠸟 251132425221
+𠸠 251413234251
+𠸡 251441325221
+𠸢 251125125121
+𠸣 251554444121
+𠸤 251332121124
+𠸥 251411125112
+𠸦 251311325111
+𠸧 251442354251
+𠸨 251322511211
+𠸩 251212511134
+𠸪 251441354251
+𠸫 251111341134
+𠸬 251325114554
+𠸭 251112134251
+𠸮 251211525115
+𠸯 251125115315
+𠸰 251554533534
+𠸱 251251211234
+𠸲 154542535251
+𠸳 25152125345
+𠸴 251112134534
+𠸵 251251111555
+𠸶 2512511344415
+𠸷 2514413443521
+𠸸 2511311534251
+𠸹 2511251153334
+𠸺 251431523454
+𠸻 25151111254
+𠸼 25115312454
+𠸽 25151335454
+𠸾 25135113454
+𠸿 2125113553251
+𠹀 2515213554234
+𠹁 2514453533544
+𠹂 25141341212115
+𠹃 2512513525221
+𠹄 2515425431121
+𠹅 2511221342444
+𠹆 2511221113535
+𠹇 2513253411515
+𠹈 2512512511211
+𠹉 2434525152511
+𠹊 2511212251112
+𠹋 2514134131134
+𠹌 2515435411515
+𠹍 2514453434251
+𠹎 2513212344444
+𠹏 2514544251214
+𠹐 2513434121354
+𠹑 2513251111234
+𠹒 2514452513251
+𠹓 2513513311252
+𠹔 2514135112251
+𠹕 2513443533354
+𠹖 2515131221534
+𠹗 2511213312251
+𠹘 2512125111354
+𠹙 2511112533112
+𠹚 2512512511134
+𠹛 2512521251431
+𠹜 2512512512121
+𠹝 1234123435251
+𠹞 2513415251132
+𠹟 4451122134251
+𠹠 2513215111234
+𠹡 2513251111121
+𠹢 1212513554251
+𠹣 2512511213134
+𠹤 2511211214544
+𠹥 2512511541541
+𠹦 2511515554234
+𠹧 414325134251
+𠹨 3551325131211
+𠹩 5113251233334
+𠹪 4143125135251
+𠹫 1234341252511
+𠹬 255252511135
+𠹭 2511251212512
+𠹮 25121211535112
+𠹯 251521535121
+𠹰 25125111343454
+𠹱 25144115151234
+𠹲 25144112132511
+𠹳 2513541521234
+𠹴 251511325152
+𠹵 2512511445531
+𠹶 2511325114312
+𠹷 2515313121534
+𠹸 2513415413534
+𠹹 2513234125122
+𠹺 2511212511211
+𠹻 2513511351134
+𠹼 2514454143112
+𠹽 251122415334
+𠹾 3443455453251
+𠹿 2511554554121
+𠺀 2514454334251
+𠺁 2515154151541
+𠺂 2511341221534
+𠺃 1211311534251
+𠺄 2511344325115
+𠺅 2511354224444
+𠺆 2511341211154
+𠺇 1212511221251
+𠺈 2511212311212
+𠺉 2515112251112
+𠺊 2511212122111
+𠺋 2513112525134
+𠺌 2513251213554
+𠺍 2513325111134
+𠺎 1211254444251
+𠺏 2511254541541
+𠺐 2512512511135
+𠺑 2513143141344
+𠺒 2513251114544
+𠺓 2513411243122
+𠺔 2513511235112
+𠺕 2513545325121
+𠺖 2514125121354
+𠺗 251431234454
+𠺘 2514414511534
+𠺙 251511534454
+𠺚 2511121431121
+𠺛 1213153134251
+𠺜 251122121335
+𠺝 2511234354251
+𠺞 1452134121251
+𠺟 2514131251112
+𠺠 2514143125225
+𠺡 2514153343534
+𠺢 2514451353334
+𠺣 2515112413422
+𠺤 5235233312251
+𠺥 5325134434554
+𠺦 2513212212511
+𠺧 2513223541234
+𠺨 2511221114544
+𠺩 2514414154325
+𠺪 2513115431234
+𠺫 2514312344412
+𠺬 2511212134515
+𠺭 2513211134112
+𠺮 2512511121124
+𠺯 2512511134415
+𠺰 2513123435234
+𠺱 2511213544544
+𠺲 2511211311534
+𠺳 2511354352511
+𠺴 251122354251
+𠺵 2511221111534
+𠺶 2515544442534
+𠺷 251452425135
+𠺸 2514415114554
+𠺹 251122151534
+𠺺 2511234121121
+𠺻 251554444354
+𠺼 2514312343534
+𠺽 2513412343554
+𠺾 2511121311234
+𠺿 2511332511234
+𠻀 2513321212134
+𠻁 431113551251
+𠻂 2512524111251
+𠻃 2511251112112
+𠻄 251122415325
+𠻅 251132513454
+𠻆 251521251112
+𠻇 2511234251153
+𠻈 2514452511531
+𠻉 251312251454
+𠻊 2514131221252
+𠻋 2511221325112
+𠻌 5251251251251
+𠻍 2513532151154
+𠻎 2514134122111
+𠻏 2511213234534
+𠻐 2511121354251
+𠻑 251341325252
+𠻒 2511313425115
+𠻓 2514532411121
+𠻔 25115321135334
+𠻕 25144512211154
+𠻖 25125125131121
+𠻗 2514134522554
+𠻘 25123432411121
+𠻙 25154253412511
+𠻚 12122511134251
+𠻛 2513121251454
+𠻜 25141554413412
+𠻝 25125125134333
+𠻞 25141351124134
+𠻟 25112343424134
+𠻠 25112211134154
+𠻡 45115343312251
+𠻢 25114524134115
+𠻣 2511251234454
+𠻤 25144512512134
+𠻥 25155525111234
+𠻦 25132534135354
+𠻧 25112343121251
+𠻨 25112212511121
+𠻩 25144535341534
+𠻪 25144143344334
+𠻫 25141112514544
+𠻬 25112123411234
+𠻭 25225122535251
+𠻮 13434234252511
+𠻯 25112133124544
+𠻰 25125125115111
+𠻱 2515212135354
+𠻲 25112132343134
+𠻳 25112512343134
+𠻴 2514511543511
+𠻵 2511221344132
+𠻶 25112122511122
+𠻷 25111212511135
+𠻸 12512512251251
+𠻹 25144111342444
+𠻺 25112112155121
+𠻻 25151122511123
+𠻼 2511221251431
+𠻽 25112343155414
+𠻾 25141535413121
+𠻿 25141341331121
+𠼀 25141431251112
+𠼁 25141224313534
+𠼂 2515212511234
+𠼃 12511123312251
+𠼄 25113412213434
+𠼅 25125113425115
+𠼆 44554545454251
+𠼇 25151314524134
+𠼈 25112131234531
+𠼉 25113115343541
+𠼊 25125121413534
+𠼋 25151122511251
+𠼌 25125211213134
+𠼍 25132511533134
+𠼎 25132511431234
+𠼏 25132122513134
+𠼐 25131234223112
+𠼑 31212513121251
+𠼒 25131431412341
+𠼓 25135251125115
+𠼔 25154345251252
+𠼕 25112131112111
+𠼖 25112341234531
+𠼗 25112511123312
+𠼘 25112511251251
+𠼙 25113434343434
+𠼚 25125111343134
+𠼛 25125125113111
+𠼜 25125225343411
+𠼝 25131234221234
+𠼞 34125112155121
+𠼟 25134132522111
+𠼠 25135152511134
+𠼡 51512112125154
+𠼢 251515251251214
+𠼣 25154541253511
+𠼤 25112512554121
+𠼥 25121531535334
+𠼦 25125112522154
+𠼧 25125125111252
+𠼨 25125152251251
+𠼩 25125234125122
+𠼪 25131234354354
+𠼫 25134112431112
+𠼬 25141432534251
+𠼭 25131125212341
+𠼮 25132435554444
+𠼯 25141112513112
+𠼰 25112341251134
+𠼱 25125121554234
+𠼲 25112132411121
+𠼳 25112251112315
+𠼴 25115132511134
+𠼵 25132412514512
+𠼶 25112132345254
+𠼷 54251121251534
+𠼸 25132125115315
+𠼹 25125111343312
+𠼺 25144243251112
+𠼻 25112211134121
+𠼼 2511223443521
+𠼽 25134432511135
+𠼾 25125244511234
+𠼿 25141342514544
+𠽀 25132251125214
+𠽁 25121531535435
+𠽂 25151543251112
+𠽃 25112143112354
+𠽄 25112145341234
+𠽅 25111134321511
+𠽆 25141112512534
+𠽇 25144132511121
+𠽈 25144115341534
+𠽉 25144145341234
+𠽊 25131554143134
+𠽋 2511122132515
+𠽌 25114524444511
+𠽍 25144134433121
+𠽎 25144113121121
+𠽏 2515235321511
+𠽐 25135251214444
+𠽑 25112514311254
+𠽒 25112132511134
+𠽓 25141342513534
+𠽔 251521211251234
+𠽕 25112115112134
+𠽖 2511353334454
+𠽗 25125111511534
+𠽘 25111234325251
+𠽙 25132512115154
+𠽚 12512312511211
+𠽛 2515234451154
+𠽜 25141431252251
+𠽝 25125125122134
+𠽞 25144125111535
+𠽟 25154334251214
+𠽠 12251321113554
+𠽡 251125112144544
+𠽢 251121251124124
+𠽣 251513112321511
+𠽤 251122511121534
+𠽥 251125221121121
+𠽦 251441131251534
+𠽧 251154121154121
+𠽨 251445414312511
+𠽩 251314314511112
+𠽪 251441414312511
+𠽫 251511225111523
+𠽬 251111251113454
+𠽭 251252251112134
+𠽮 251121251112134
+𠽯 251121251112134
+𠽰 251445251112134
+𠽱 251445112213455
+𠽲 251343123425221
+𠽳 251134342342511
+𠽴 251132522132522
+𠽵 251354551251431
+𠽶 251311531153115
+𠽷 2512121352511134
+𠽸 251251132511134
+𠽹 251543344111251
+𠽺 125125251251121
+𠽻 251121251121251
+𠽼 25153421215342121
+𠽽 251511352513434
+𠽾 251431224312511
+𠽿 251122514143112
+𠾀 251415435413134
+𠾁 251121351215311
+𠾂 134342341252511
+𠾃 415252225134251
+𠾄 344334433512251
+𠾅 251251251251251
+𠾆 251312343533112
+𠾇 251131251431124
+𠾈 251354141431251
+𠾉 515121121251124
+𠾊 251334343434121
+𠾋 2512121151251234
+𠾌 251431523321511
+𠾍 251415412211234
+𠾎 251122125113134
+𠾏 25113412132511
+𠾐 25152354131121
+𠾑 2513323112121112
+𠾒 251152332411121
+𠾓 251411125153251
+𠾔 251312344325135
+𠾕 25152431353334
+𠾖 251251134251251
+𠾗 251524134523534
+𠾘 251445354111251
+𠾙 251445125125121
+𠾚 251515322511134
+𠾛 251122112512134
+𠾜 251212121212121
+𠾝 251251111323134
+𠾞 251123412343553
+𠾟 251251213412512
+𠾠 251344353335251
+𠾡 251314314121124
+𠾢 251121251431124
+𠾣 251123412341234
+𠾤 123412341234251
+𠾥 125121251234154
+𠾦 251211121114544
+𠾧 251251251125214
+𠾨 251252122113534
+𠾩 251252251135345
+𠾪 251252211353334
+𠾫 251333132511134
+𠾬 251341124313534
+𠾭 25112231234531
+𠾮 251445343251113
+𠾯 251445352511234
+𠾰 251445354154121
+𠾱 251113411342511
+𠾲 251121213415534
+𠾳 125121251212512
+𠾴 251123411134112
+𠾵 251121123425111
+𠾶 251251141251234
+𠾷 251121431125254
+𠾸 251121213453251
+𠾹 313425141343412
+𠾺 251431121431251
+𠾻 251441122111345
+𠾼 251554444355215
+𠾽 251511225111121
+𠾾 251441251122431
+𠾿 251121132511134
+𠿀 251312342432511
+𠿁 251122111343534
+𠿂 251121312321511
+𠿃 251531122111234
+𠿄 251445251125214
+𠿅 251212132411121
+𠿆 251541341112354
+𠿇 2513535112533112
+𠿈 2513123443344544
+𠿉 1251112523554251
+𠿊 2511251112523554
+𠿋 2513253431234115
+𠿌 2513541414312511
+𠿍 2515131221343554
+𠿎 2511251152253512
+𠿏 2514313511224444
+𠿐 2512511252214153
+𠿑 2511312514544534
+𠿒 2512511353453534
+𠿓 2513134211121111
+𠿔 2515513533344544
+𠿕 3134251252514135
+𠿖 2512153152523534
+𠿗 2511121112145434
+𠿘 251324111212525
+𠿙 2511452413435515
+𠿚 2511212122151234
+𠿛 2512153152512153
+𠿜 251251112341554
+𠿝 2511234123452134
+𠿞 2514125251125111
+𠿟 3211343451145251
+𠿠 2512511221111534
+𠿡 4453554545454251
+𠿢 2514311214413534
+𠿣 2511252211213534
+𠿤 2511212514311254
+𠿥 2512534444412511
+𠿦 1251252512513121
+𠿧 1225125125134251
+𠿨 2511225111234112
+𠿩 2511121252132522
+𠿪 2511252212511134
+𠿫 2513143142432511
+𠿬 2513232534135354
+𠿭 2514412512452511
+𠿮 251341511543534
+𠿯 251252325113554
+𠿰 251344511543153
+𠿱 251431325111454
+𠿲 3241112125125111
+𠿳 2514134315112234
+𠿴 2511325125111124
+𠿵 2513443533511534
+𠿶 2514413241112112
+𠿷 2515112251141252
+𠿸 251122251251115
+𠿹 2513231212511134
+𠿺 2511212135415132
+𠿻 3134251252511135
+𠿼 2513551131344444
+𠿽 2512522111251124
+𠿾 2514131344325115
+𠿿 2514311213121534
+𡀀 2514125251111234
+𡀁 2511234341252511
+𡀂 2511452413425121
+𡀃 2511221113454412
+𡀄 2511214512155121
+𡀅 2511234342511134
+𡀆 1212514312511324
+𡀇 2511212312511211
+𡀈 251251413312154
+𡀉 2512512514525111
+𡀊 2515112251111214
+𡀋 2512511344325115
+𡀌 2511212131233534
+𡀍 2513413511224544
+𡀎 2513322521353134
+𡀏 2513322521213134
+𡀐 2511234545231234
+𡀑 2511251112335414
+𡀒 2511554154134333
+𡀓 2512512513434121
+𡀔 2512512121354251
+𡀕 2512521343344334
+𡀖 2513411243112341
+𡀗 2514111251121124
+𡀘 2514334433445531
+𡀙 2514453451352252
+𡀚 2515434354554234
+𡀛 2511452444434312
+𡀜 2513143141121132
+𡀝 2513123434154544
+𡀞 2511234251122111
+𡀟 2514313533344454
+𡀠 251321221325112
+𡀡 2514415154151541
+𡀢 2512524125125251
+𡀣 2511221251112153
+𡀤 3143142511113124
+𡀥 251122325115215
+𡀦 251441251125221
+𡀧 2514412251211534
+𡀨 251452341251124
+𡀩 251122441354251
+𡀪 5325112121112111
+𡀫 2514125251131234
+𡀬 2511325141343412
+𡀭 2513215112512153
+𡀮 2513251115413534
+𡀯 2513212511214124
+𡀰 2513225232411121
+𡀱 2512511521531535
+𡀲 2514111251415334
+𡀳 2515113251431112
+𡀴 2511213251154444
+𡀵 2514111251134115
+𡀶 2514411332511234
+𡀷 251331225111454
+𡀸 4334433445251251
+𡀹 2513143142511134
+𡀺 2515353532511134
+𡀻 3121251251113533
+𡀼 2514334433445531
+𡀽 25112121215425221
+𡀾 25125115545544444
+𡀿 25151325112512531
+𡁀 25154254311213534
+𡁁 25144531212512154
+𡁂 2515134143112454
+𡁃 25144555212511134
+𡁄 25135455341511534
+𡁅 25135251353525135
+𡁆 25143344334453112
+𡁇 25155444421251112
+𡁈 25141431134143112
+𡁉 25112112544442512
+𡁊 25143344334445531
+𡁋 25134431215114544
+𡁌 25125124535413534
+𡁍 25144531212513534
+𡁎 2513211152511134
+𡁏 25112124511353334
+𡁐 25112123434234342
+𡁑 25112511522543112
+𡁒 25112511122513554
+𡁓 2511325221341554
+𡁔 25143123411212511
+𡁕 25154154141431531
+𡁖 25152212143111234
+𡁗 31342512525141351
+𡁘 251251251112212
+𡁙 251442511541535
+𡁚 25144112212511134
+𡁛 25153112512343134
+𡁜 2514524251225251
+𡁝 25132112511511134
+𡁞 25141251252512154
+𡁟 25144512332511134
+𡁠 25113425234343434
+𡁡 25151122511312251
+𡁢 25112211125125221
+𡁣 25112121211254444
+𡁤 25151122511354251
+𡁥 25125151214525115
+𡁦 25112251251452511
+𡁧 25113513125125534
+𡁨 22431431121124251
+𡁩 25125111341215213
+𡁪 25125221251113422
+𡁫 25132411121321511
+𡁬 25134112431511534
+𡁭 25143123431112111
+𡁮 2514453425525251
+𡁯 25113432411121124
+𡁰 25155444425152511
+𡁱 25112251255154444
+𡁲 25112145251212134
+𡁳 25125125111213544
+𡁴 25125125112141241
+𡁵 25112512554554234
+𡁶 25112132411121534
+𡁷 25113533343544124
+𡁸 2515223432511234
+𡁹 25141112513123453
+𡁺 25144141342513534
+𡁻 25112121342432511
+𡁼 25144112522111234
+𡁽 2511234122341234
+𡁾 25141112513425135
+𡁿 2511223552335523
+𡂀 25112344125125251
+𡂁 25144231251121153
+𡂂 25141112511251251
+𡂃 2511154325113554
+𡂄 25153254132511134
+𡂅 25125232534134354
+𡂆 25112343545325121
+𡂇 25125132534134354
+𡂈 25132224314311134
+𡂉 25112133124111251
+𡂊 25134253425342534
+𡂋 25143344334454334
+𡂌 25112251111342343
+𡂍 25113542513425221
+𡂎 25155444455124134
+𡂏 251555253415445445
+𡂐 251113411342511134
+𡂑 251335414355425221
+𡂒 251331233122511134
+𡂓 25141432512251454
+𡂔 251132112345344544
+𡂕 251121254154134333
+𡂖 251131212251125214
+𡂗 251324111212535251
+𡂘 251413522115154444
+𡂙 251513241343112454
+𡂚 251433443344525111
+𡂛 251511225111251431
+𡂜 251545454541253511
+𡂝 251121252212511134
+𡂞 251121341213541154
+𡂟 251251251123435515
+𡂠 251121235445411234
+𡂡 251251125125313134
+𡂢 251325111544441234
+𡂣 251121125444425132
+𡂤 125125112251251345
+𡂥 251212134251234121
+𡂦 122251251125134251
+𡂧 125125112512511415
+𡂨 251251125125251251
+𡂩 251132522134122111
+𡂪 25141312214444454
+𡂫 2511223541112454
+𡂬 511325112212511121
+𡂭 25141312213434454
+𡂮 251111234251125214
+𡂯 41342514511543511
+𡂰 25143123435415252
+𡂱 25154334125143152
+𡂲 251113421132135422
+𡂳 251132511325113251
+𡂴 25112121251112454
+𡂵 251251141251234333
+𡂶 512112512512212511
+𡂷 251445212125111354
+𡂸 25143125351113452
+𡂹 251445343123425121
+𡂺 251431121341511534
+𡂻 251413522154544354
+𡂼 251252211211254444
+𡂽 251251125221251112
+𡂾 251351143113424134
+𡂿 251125125125153534
+𡃀 251414313533343554
+𡃁 251112125112511135
+𡃂 251445321511154444
+𡃃 251554444251122111
+𡃄 251134342342511134
+𡃅 251433443344511214
+𡃆 251513432524312511
+𡃇 25143252343134132
+𡃈 251554444122125112
+𡃉 251532511211254444
+𡃊 251312341354352511
+𡃋 341251222512511134
+𡃌 251133232511154444
+𡃍 251341251251343422
+𡃎 251123434341234134
+𡃏 25152131212511121
+𡃐 251252251251251112
+𡃑 251411125111212511
+𡃒 251121224314311134
+𡃓 251121343123425121
+𡃔 251121134432511234
+𡃕 251445343251113515
+𡃖 251215315251214544
+𡃗 25112341222511134
+𡃘 251411125143344334
+𡃙 25112225221134534
+𡃚 251413251121134121
+𡃛 251411125143112154
+𡃜 251132514532411121
+𡃝 251411125134125122
+𡃞 251125111233122511
+𡃟 122512511412513534
+𡃠 1251431353441431251
+𡃡 4143135411515111251
+𡃢 25151154153525111
+𡃣 2512512512112511534
+𡃤 2511251234352511134
+𡃥 2514125125112121112
+𡃦 2515112251132411121
+𡃧 2512153152252113534
+𡃨 2511212514312514544
+𡃩 2514125221241343534
+𡃪 2513211511342511134
+𡃫 2512511351135113554
+𡃬 4152225125125134251
+𡃭 1251212512113534251
+𡃮 2514315151211212511
+𡃯 4135112251251113533
+𡃰 251215315224311534
+𡃱 251252211353334454
+𡃲 251341511543443531
+𡃳 2513211251251511134
+𡃴 25152131212511454
+𡃵 2511214155332411121
+𡃶 2513411243125113533
+𡃷 2512511452413425121
+𡃸 25121213532511154444
+𡃹 2512512512511121534
+𡃺 251121121121135454
+𡃻 2511223543341251431
+𡃼 2511234324111214444
+𡃽 2513214524444132522
+𡃾 2511234224314311134
+𡃿 251121121431112454
+𡄀 251325112225221122
+𡄁 2514134125251131234
+𡄂 1212514312511324121
+𡄃 2512512511211254444
+𡄄 2512135454341511534
+𡄅 2512512252511251251
+𡄆 2513211343451145521
+𡄇 2511215213355413251
+𡄈 1215213355445434251
+𡄉 2512515151211213434
+𡄊 2513251115153525221
+𡄋 2513121353121352511
+𡄌 3251512512512212511
+𡄍 2513143141211254444
+𡄎 2513411243132511252
+𡄏 2514421312515344544
+𡄐 2514155332411121121
+𡄑 25134341211121111534
+𡄒 12152133554121315251
+𡄓 25144511221342512134
+𡄔 25112152133554122111
+𡄕 25141112514334433454
+𡄖 25141332324111214544
+𡄗 25125111221344111251
+𡄘 25134112431414312512
+𡄙 25112251251452511134
+𡄚 41522251125112534251
+𡄛 25113442512511344251
+𡄜 12145251251112213534
+𡄝 12212511325125113251
+𡄞 25125125121151151155
+𡄟 25114524444512115154
+𡄠 25132544454444132522
+𡄡 25141432533543211234
+𡄢 2515112251112132511
+𡄣 25151513425234343434
+𡄤 2512522112513534454
+𡄥 25134125125134343534
+𡄦 25112512531251251251
+𡄧 25141112511122125211
+𡄨 25125253112512343134
+𡄩 25134435335115344544
+𡄪 25125125121432411121
+𡄫 25141112514315112234
+𡄬 3412511154325113554
+𡄭 25133234342134122111
+𡄮 25134112431125431234
+𡄯 25135114143125114544
+𡄰 43111243125141343412
+𡄱 251132112345342512134
+𡄲 531251251251251211251
+𡄳 25112125241341331121
+𡄴 251252324111212535251
+𡄵 251131134535541253511
+𡄶 251414345252132511134
+𡄷 251122125112251112134
+𡄸 251555251521532411121
+𡄹 251251344355454251251
+𡄺 251321132534151114334
+𡄻 121451251431113534251
+𡄼 251234251123421531535
+𡄽 251441445321511354444
+𡄾 251411125112212511121
+𡄿 251251125121112213534
+𡅀 251214554444554444251
+𡅁 251414325335425111234
+𡅂 251124552131511154444
+𡅃 251134143125111515111
+𡅄 412514512251251251112
+𡅅 251445354251132511134
+𡅆 25112213513125125534
+𡅇 251224314311212211154
+𡅈 251341124312153153112
+𡅉 251314314511225112511
+𡅊 251121222511134431234
+𡅋 251123412512531425221
+𡅌 251314314511225113511
+𡅍 251554444121121121135
+𡅎 251314314153515352511
+𡅏 25145242512211251431
+𡅐 13334454431112431251
+𡅑 251251125214132511134
+𡅒 251121132511454544354
+𡅓 251414325433425111234
+𡅔 251251251133443125154
+𡅕 1212511225112125112251
+𡅖 35425143111344511534
+𡅗 2512343251123421531535
+𡅘 2513541555253415445445
+𡅙 2514143125112512511134
+𡅚 2512511251252512513121
+𡅛 251351551153535251354
+𡅜 2512511522521344111251
+𡅝 2512512514133443125154
+𡅞 2511251253142522125221
+𡅟 4152522251125112535251
+𡅠 251554444251251115151
+𡅡 1251251122512511354251
+𡅢 251452341234123411234
+𡅣 2513143145112321155212
+𡅤 1212514312511221251121
+𡅥 2511225111134132511134
+𡅦 1212514312515435454251
+𡅧 2511221251113432411121
+𡅨 2513143143513344111251
+𡅩 2512512211251431355215
+𡅪 2511332511234132511134
+𡅫 2511251112313425125251
+𡅬 2514424125221241343534
+𡅭 2515112251155455453212
+𡅮 2512512511334431225154
+𡅯 2513123434431215114544
+𡅰 25112511234125112342511
+𡅱 25125112212511134251251
+𡅲 25112123251514143112521
+𡅳 2511222512513241112153
+𡅴 25125125113343122512154
+𡅵 25134312342522112143112
+𡅶 25144511221341211254444
+𡅷 25141112514311213121534
+𡅸 12125143125112212511121
+𡅹 251412512344125251125111
+𡅺 25114524134251122111534
+𡅻 251251212125111354251251
+𡅼 251414311341112514143112
+𡅽 251251212125111354251251
+𡅾 251251251133443122512154
+𡅿 251212534444412511251522
+𡆀 251125111212511121251112
+𡆁 25134451154121121121135
+𡆂 251111342511251214251214
+𡆃 431121431251431121431251
+𡆄 251121122111122111122111
+𡆅 251314314112121345234354
+𡆆 2511212522155444432411121
+𡆇 2513411243121213241112154
+𡆈 2514153313113432511154444
+𡆉 2512512511334312342512154
+𡆊 5325124345251254312114444
+𡆋 2511234343412344551154124
+𡆌 2511211254444313425125251
+𡆍 2514153313113435251214444
+𡆎 2512512511124125251125111
+𡆏 2515112251155155151213312
+𡆐 12212514334121121251431251
+𡆑 25125225125113121221113134
+𡆒 12212512135121121251431251
+𡆓 25124355344351512112132511
+𡆔 25125113251113425125112512
+𡆕 25141112515544444554444544
+𡆖 2511221253511324111214444
+𡆗 2512522155444432411121454
+𡆘 25125115545544444132511134
+𡆙 251411125135251153535251354
+𡆚 251332251112511132411121112
+𡆛 2512511252213241112132411121
+𡆜 2511212513241342522135251214
+𡆝 2514111251554444554444253434
+𡆞 251211211121255155151213312
+𡆟 2513443533511534212135351343452
+𡆠 2551
+𡆡 2541
+𡆢 2551
+𡆣 25341
+𡆤 25111
+𡆥 25241
+𡆦 25341
+𡆧 252341
+𡆨 251111
+𡆩 255541
+𡆪 251221
+𡆫 252521
+𡆬 251211
+𡆭 251531
+𡆮 251211
+𡆯 252521
+𡆰 251151
+𡆱 253331
+𡆲 254151
+𡆳 255151
+𡆴 2552111
+𡆵 251255121
+𡆶 25121351
+𡆷 2525111
+𡆸 2512151
+𡆹 2554521
+𡆺 2531121
+𡆻 2515541
+𡆼 2531221
+𡆽 2534151
+𡆾 2534541
+𡆿 2535151
+𡇀 2535541
+𡇁 2541541
+𡇂 2543341
+𡇃 2552151
+𡇄 2554541
+𡇅 2541531
+𡇆 2551511
+𡇇 2534531
+𡇈 25132511
+𡇉 25251111
+𡇊 25132521
+𡇋 25241341
+𡇌 25251111
+𡇍 25251211
+𡇎 25415541
+𡇏 25431531
+𡇐 25123411
+𡇑 25251511
+𡇒 254312341
+𡇓 251541211
+𡇔 255315311
+𡇕 253513541
+𡇖 251251251
+𡇗 251543251
+𡇘 253543541
+𡇙 253512341
+𡇚 251325111
+𡇛 252134541
+𡇜 253122511
+𡇝 253251111
+𡇞 253412511
+𡇟 255545541
+𡇠 2532511151
+𡇡 2534251111
+𡇢 2513251111
+𡇣 2535122511
+𡇤 4325122511
+𡇥 2532121341
+𡇦 2511215311
+𡇧 2512514311
+𡇨 2525121531
+𡇩 2525232351
+𡇪 2531212511
+𡇫 2535444441
+𡇬 2543121211
+𡇭 2553115311
+𡇮 2554251121
+𡇯 2512512341
+𡇰 2513454351
+𡇱 25132512511
+𡇲 25344352151
+𡇳 25341251521
+𡇴 25212135341
+𡇵 25445132511
+𡇶 54253412511
+𡇷 43253542511
+𡇸 25312211351
+𡇹 25352513541
+𡇺 25543544441
+𡇻 25413434121
+𡇼 252511353451
+𡇽 251252211211
+𡇾 251221152511
+𡇿 251251234221
+𡈀 25121551211
+𡈁 253251111211
+𡈂 251214135341
+𡈃 252514135341
+𡈄 255413251211
+𡈅 251225113432
+𡈆 252512511151
+𡈇 255425112211
+𡈈 253125112111
+𡈉 251212132511
+𡈊 2512112544441
+𡈋 12512251255121
+𡈌 2512122535251
+𡈍 2534341234341
+𡈎 2532511544441
+𡈏 2531154312341
+𡈐 251223412511
+𡈑 2512512515341
+𡈒 2513543545441
+𡈓 2512251111341
+𡈔 2513251132511
+𡈕 25431134251111
+𡈖 25212132323331
+𡈗 25121225111341
+𡈘 25431325135251
+𡈙 25325111544441
+𡈚 25431211121111
+𡈛 25441324312341
+𡈜 25125221112341
+𡈝 25325112523331
+𡈞 25134431211211
+𡈟 25251115115341
+𡈠 25414312511121
+𡈡 25554444354441
+𡈢 254311345542341
+𡈣 253443252211242
+𡈤 432512125132341
+𡈥 251212121325111
+𡈦 251211211211351
+𡈧 125125121551211
+𡈨 252512512512511
+𡈩 254143125112111
+𡈪 2532511352523331
+𡈫 2554522525542341
+𡈬 2532125112141241
+𡈭 25353411125113441
+𡈮 25121212154252211
+𡈯 13242525125111341
+𡈰 25411125112512511
+𡈱 25545225235542341
+𡈲 251341251341251341
+𡈳 2541352211515312341
+𡈴 2525111123435542341
+𡈵 25112125221125135341
+𡈶 25341253412534125341
+𡈷 25413522115155542341
+𡈸 253541411125135542341
+𡈹 251234123412123412341
+𡈺 252512511134134125122
+𡈻 25411125155444455444445441
+𡈼 3121
+𡈽 1214
+𡈾 5121
+𡈿 12112
+𡉀 34121
+𡉁 12153
+𡉂 53121
+𡉃 12113
+𡉄 13121
+𡉅 12125
+𡉆 12152
+𡉇 12134
+𡉈 121121
+𡉉 121251
+𡉊 135121
+𡉋 121134
+𡉌 121354
+𡉍 121353
+𡉎 121121
+𡉏 121515
+𡉐 121121
+𡉑 121134
+𡉒 121315
+𡉓 121531
+𡉔 534121
+𡉕 121354
+𡉖 121515
+𡉗 121521
+𡉘 1112121
+𡉙 1535121
+𡉚 5221121
+𡉛 1213115
+𡉜 1215112
+𡉝 1132121
+𡉞 1211354
+𡉟 5213121
+𡉠 1211121
+𡉡 5234121
+𡉢 4354121
+𡉣 1234121
+𡉤 1324121
+𡉥 1212512
+𡉦 1213112
+𡉧 1213132
+𡉨 1211132
+𡉩 1211344
+𡉪 1211523
+𡉫 1525121
+𡉬 1211554
+𡉭 1212511
+𡉮 2554121
+𡉯 1213112
+𡉰 3452121
+𡉱 1212511
+𡉲 3511121
+𡉳 1213554
+𡉴 1213513
+𡉵 5121121
+𡉶 1215151
+𡉷 5215121
+𡉸 5452121
+𡉹 1232121
+𡉺 1212534
+𡉻 1213512
+𡉼 3132121
+𡉽 1214134
+𡉾 1214544
+𡉿 1211234
+𡊀 1211344
+𡊁 1213552
+𡊂 3552121
+𡊃 1354121
+𡊄 54134121
+𡊅 54132121
+𡊆 12111234
+𡊇 12131525
+𡊈 12151512
+𡊉 12111234
+𡊊 12125151
+𡊋 12112154
+𡊌 12113411
+𡊍 12112354
+𡊎 35352121
+𡊏 54252121
+𡊐 1212525
+𡊑 12135234
+𡊒 12134234
+𡊓 12151512
+𡊔 12141252
+𡊕 12112134
+𡊖 12112341
+𡊗 12153251
+𡊘 12113134
+𡊙 25154121
+𡊚 12132511
+𡊛 12112154
+𡊜 12112251
+𡊝 1554121
+𡊞 14312121
+𡊟 12125111
+𡊠 12125112
+𡊡 12125121
+𡊢 12125251
+𡊣 32121121
+𡊤 12135112
+𡊥 35121121
+𡊦 12135251
+𡊧 12135352
+𡊨 12141554
+𡊩 12111214
+𡊪 12143135
+𡊫 12144535
+𡊬 12145351
+𡊭 45434121
+𡊮 12153534
+𡊯 12154132
+𡊰 12125121
+𡊱 12153251
+𡊲 12141121
+𡊳 12131121
+𡊴 51315121
+𡊵 13251121
+𡊶 12135152
+𡊷 111253121
+𡊸 121113534
+𡊹 125221121
+𡊺 441112121
+𡊻 121135422
+𡊼 121354121
+𡊽 252312121
+𡊾 121413315
+𡊿 121415435
+𡋀 12145245
+𡋁 121431252
+𡋂 121311212
+𡋃 121111234
+𡋄 121341121
+𡋅 445531121
+𡋆 441354121
+𡋇 413453121
+𡋈 413312121
+𡋉 121445355
+𡋊 134534121
+𡋋 441354121
+𡋌 121121112
+𡋍 122134121
+𡋎 121121315
+𡋏 251234121
+𡋐 251251121
+𡋑 251251121
+𡋒 121325221
+𡋓 12135452
+𡋔 121554234
+𡋕 121352511
+𡋖 531112121
+𡋗 121341154
+𡋘 251341121
+𡋙 121252511
+𡋚 323112121
+𡋛 341251121
+𡋜 353541121
+𡋝 121354354
+𡋞 121354155
+𡋟 121413434
+𡋠 121541234
+𡋡 121543234
+𡋢 554554121
+𡋣 121121121
+𡋤 121513444
+𡋥 121121251
+𡋦 121132511
+𡋧 344345121
+𡋨 121312121
+𡋩 332121121
+𡋪 212554121
+𡋫 121135352
+𡋬 154444121
+𡋭 2111545121
+𡋮 1211341534
+𡋯 1211245521
+𡋰 1213512135
+𡋱 1211121132
+𡋲 1215251121
+𡋳 1212511115
+𡋴 523354121
+𡋵 2511134121
+𡋶 1215111124
+𡋷 4412343121
+𡋸 1213343415
+𡋹 2135454121
+𡋺 121312154
+𡋻 1234341121
+𡋼 1211214535
+𡋽 1211213234
+𡋾 2515322121
+𡋿 1212513251
+𡌀 1212515322
+𡌁 1132422121
+𡌂 4413553121
+𡌃 1213121251
+𡌄 1211251112
+𡌅 3251532121
+𡌆 3411234121
+𡌇 1211325153
+𡌈 121511352
+𡌉 1211213521
+𡌊 1241344121
+𡌋 1211241344
+𡌌 523312121
+𡌍 2513132121
+𡌎 5311132121
+𡌏 1213251113
+𡌐 1213321251
+𡌑 1132333121
+𡌒 1132333121
+𡌓 2125341121
+𡌔 1212432511
+𡌕 1212511252
+𡌖 1213125112
+𡌗 1213251135
+𡌘 1213411234
+𡌙 1213525151
+𡌚 1213434121
+𡌛 2512154121
+𡌜 1213452252
+𡌝 1214555453
+𡌞 1215135121
+𡌟 1215135251
+𡌠 1213235154
+𡌡 1214351523
+𡌢 1213445251
+𡌣 1212522115
+𡌤 1211211344
+𡌥 1554554121
+𡌦 31112111121
+𡌧 12141533444
+𡌨 12125121412
+𡌩 12125342511
+𡌪 35435454121
+𡌫 34112251121
+𡌬 12125145121
+𡌭 54545454121
+𡌮 12141324251
+𡌯 152352121
+𡌰 53151315121
+𡌱 12132343415
+𡌲 12112135251
+𡌳 12511534121
+𡌴 12251115121
+𡌵 34253434121
+𡌶 12143122431
+𡌷 12151311252
+𡌸 12125121132
+𡌹 12125121232
+𡌺 12154251214
+𡌻 12141351134
+𡌼 41533134121
+𡌽 12141321251
+𡌾 12142522121
+𡌿 12141251234
+𡍀 12135134153
+𡍁 12341254121
+𡍂 13243434121
+𡍃 5232124121
+𡍄 12151312251
+𡍅 12152534152
+𡍆 12112123553
+𡍇 12132511312
+𡍈 12132511252
+𡍉 12135425121
+𡍊 12154132121
+𡍋 12113412132
+𡍌 12115341534
+𡍍 12121212121
+𡍎 12121251112
+𡍏 21253541121
+𡍐 12125354241
+𡍑 34522534121
+𡍒 12135311252
+𡍓 12141335151
+𡍔 12141343112
+𡍕 12141541234
+𡍖 12151124134
+𡍗 12155525341
+𡍘 12131125222
+𡍙 1211223511
+𡍚 12112341234
+𡍛 12134431121
+𡍜 12151122511
+𡍝 1211222534
+𡍞 12111342444
+𡍟 12113251132
+𡍠 12141251211
+𡍡 12112135455
+𡍢 12152133544
+𡍣 12141223454
+𡍤 121321511121
+𡍥 1212121351234
+𡍦 121451251112
+𡍧 121124552153
+𡍨 121413122154
+𡍩 121413431523
+𡍪 121112321511
+𡍫 121251113422
+𡍬 121352535251
+𡍭 353511534121
+𡍮 334343434121
+𡍯 515253341121
+𡍰 121543343554
+𡍱 152131215121
+𡍲 121134122111
+𡍳 54521535121
+𡍴 312512134121
+𡍵 525435354121
+𡍶 154121354121
+𡍷 121442125111
+𡍸 251251251121
+𡍹 121311311112
+𡍺 312511234121
+𡍻 12135541554
+𡍼 413411234121
+𡍽 431351122121
+𡍾 121513541541
+𡍿 121132511531
+𡎀 511214444121
+𡎁 121122513541
+𡎂 132513132121
+𡎃 121431124121
+𡎄 134525221121
+𡎅 121252134334
+𡎆 121331225111
+𡎇 121351331134
+𡎈 121121121124
+𡎉 12132511121
+𡎊 12244155121
+𡎋 121132511521
+𡎌 121134425221
+𡎍 121215315252
+𡎎 121251122111
+𡎏 121325112534
+𡎐 121351215311
+𡎑 121414313333
+𡎒 441312251121
+𡎓 121444121444
+𡎔 121513154121
+𡎕 121152515452
+𡎖 121542511134
+𡎗 121555135422
+𡎘 12112225134
+𡎙 212135454121
+𡎚 121351325122
+𡎛 121345325221
+𡎜 121122543112
+𡎝 121543341134
+𡎞 121212511134
+𡎟 121312342511
+𡎠 121535425221
+𡎡 121122111234
+𡎢 343412135424
+𡎣 121251153251
+𡎤 121431121134
+𡎥 354243434121
+𡎦 343412135424
+𡎧 121353155414
+𡎨 252252252121
+𡎩 121125342154
+𡎪 121215315121
+𡎫 121312343452
+𡎬 343412125111
+𡎭 121551415435
+𡎮 1215132433541
+𡎯 2522123344121
+𡎰 1215134143112
+𡎱 2125334134121
+𡎲 4125145251121
+𡎳 5154151541121
+𡎴 1211212511134
+𡎵 12121213513251
+𡎶 521343434121
+𡎷 1212513554121
+𡎸 1221251134121
+𡎹 1215114525254
+𡎺 452425135121
+𡎻 1214133434121
+𡎼 1343423453121
+𡎽 1213443541234
+𡎾 1213535113511
+𡎿 4143151315121
+𡏀 1211554554121
+𡏁 121252511454
+𡏂 1214132511211
+𡏃 1251252154121
+𡏄 1123425111121
+𡏅 45115452121
+𡏆 1214311213432
+𡏇 521353334121
+𡏈 1215253414444
+𡏉 1214452511531
+𡏊 1214315112234
+𡏋 4411251124121
+𡏌 1211311534124
+𡏍 1251221353121
+𡏎 1344312135515
+𡏏 1211221342534
+𡏐 1251253312121
+𡏑 1113431234121
+𡏒 1234511534121
+𡏓 1213444445215
+𡏔 2511353334121
+𡏕 3122113534121
+𡏖 1211215425221
+𡏗 1211212354354
+𡏘 1211325111354
+𡏙 3253541134121
+𡏚 1213321531535
+𡏛 1213443554134
+𡏜 1213435413534
+𡏝 1213541521234
+𡏞 1211122125211
+𡏟 1213443311252
+𡏠 1213511353452
+𡏡 1214143125115
+𡏢 1211211254444
+𡏣 1213251111344
+𡏤 121431523454
+𡏥 1211213312251
+𡏦 121431113121
+𡏧 1213241431251
+𡏨 12121213532511
+𡏩 3251513434121
+𡏪 1213443541234
+𡏫 1211354221234
+𡏬 4414154325121
+𡏭 12132511151234
+𡏮 12155525111234
+𡏯 12125111343134
+𡏰 12143123454132
+𡏱 12125121554234
+𡏲 12132511151535
+𡏳 12212513443121
+𡏴 12512343134121
+𡏵 1325221554121
+𡏶 12124312511134
+𡏷 12151112135124
+𡏸 52155413452121
+𡏹 5212134354121
+𡏺 12151312524444
+𡏻 1213251113412
+𡏼 1211121533134
+𡏽 12154154132511
+𡏾 12144513412512
+𡏿 1214143125152
+𡐀 44125113533121
+𡐁 12141434525111
+𡐂 43135333422121
+𡐃 12124345112515
+𡐄 12152251544554
+𡐅 12114524134511
+𡐆 12152134251214
+𡐇 12125234125122
+𡐈 12131251251251
+𡐉 12112145251214
+𡐊 12511123554121
+𡐋 12112512212511
+𡐌 1211353334454
+𡐍 21531325154121
+𡐎 12125221121121
+𡐏 32131212511121
+𡐐 12135113333511
+𡐑 12135253525111
+𡐒 12141251453115
+𡐓 12141351124134
+𡐔 12144512512134
+𡐕 12155532511312
+𡐖 12112512554121
+𡐗 12135351124412
+𡐘 12144132511121
+𡐙 12133225111124
+𡐚 12135251214444
+𡐛 12112511123312
+𡐜 33412125225115
+𡐝 12141352214334
+𡐞 43252343134121
+𡐟 121323434343415
+𡐠 331225111121121
+𡐡 12151124134454
+𡐢 121251211212134
+𡐣 121332312511354
+𡐤 121111253554234
+𡐥 121113431112111
+𡐦 12152131213541
+𡐧 121125221251112
+𡐨 123454521234121
+𡐩 354443344334121
+𡐪 2115152113112121
+𡐫 121555253425251
+𡐬 121121453251214
+𡐭 121431224312511
+𡐮 121344335554444
+𡐯 121131325111354
+𡐰 133123431234121
+𡐱 312121211431132
+𡐲 515253341121121
+𡐳 122112512134121
+𡐴 121412525113541
+𡐵 121441121214312
+𡐶 121121251431333
+𡐷 131251431124121
+𡐸 121215315341534
+𡐹 121251141251234
+𡐺 121121235311252
+𡐻 121311342512511
+𡐼 344343344334121
+𡐽 12112241541234
+𡐾 121121251112134
+𡐿 12112143112454
+𡑀 123434341234121
+𡑁 125111234333121
+𡑂 121132522132522
+𡑃 134342343134121
+𡑄 121243452513112
+𡑅 251125111344121
+𡑆 121251112511211
+𡑇 121251251431523
+𡑈 312121211325151
+𡑉 121332312511354
+𡑊 121334343434121
+𡑋 121354413444444
+𡑌 121414312511534
+𡑍 121433443344553
+𡑎 121511121251124
+𡑏 121515121121251
+𡑐 121545454342444
+𡑑 441251113533121
+𡑒 121121221113134
+𡑓 121123412341234
+𡑔 415341534153121
+𡑕 121253512341234
+𡑖 12152431353334
+𡑗 121324532411121
+𡑘 351534125122121
+𡑙 121135425341234
+𡑚 121451123454121
+𡑛 121445353121251
+𡑜 121122111554554
+𡑝 121431234354152
+𡑞 121431353334454
+𡑟 121251225251454
+𡑠 4143125111534121
+𡑡 1212522112513534
+𡑢 1211212122151234
+𡑣 1214453551352252
+𡑤 4152511213511354
+𡑥 1215135413452252
+𡑦 1212511252214153
+𡑧 2145251113454121
+𡑨 121341511543534
+𡑩 1213251115413534
+𡑪 121122251135345
+𡑫 4451353334121121
+𡑬 1211331234354152
+𡑭 1213412524312511
+𡑮 1214451122134121
+𡑯 1213412512513434
+𡑰 1212512125132341
+𡑱 1215113251431112
+𡑲 1211234123411234
+𡑳 1215113251431112
+𡑴 1215131221343554
+𡑵 121122353251214
+𡑶 5213354412434121
+𡑷 1211212134425221
+𡑸 3251511353334121
+𡑹 1215151211214444
+𡑺 1211154354152121
+𡑻 1234431353334121
+𡑼 1251121542154121
+𡑽 1211234343434134
+𡑾 1212153152511134
+𡑿 1212243143111234
+𡒀 2534125121134121
+𡒁 1213134211121111
+𡒂 1213215111213554
+𡒃 325431234134121
+𡒄 1214125251111234
+𡒅 12141341121252511
+𡒆 1214451225111134
+𡒇 1213444445235354
+𡒈 1215132413452252
+𡒉 13513125125534121
+𡒊 3211152511134121
+𡒋 41251252513134121
+𡒌 1212512125151454
+𡒍 12211154323334121
+𡒎 12124413411234121
+𡒏 121555253413241345
+𡒐 52135542343452121
+𡒑 25225225235121121
+𡒒 35425112135332512
+𡒓 12512531125221121
+𡒔 12154154132411121
+𡒕 12135444512512134
+𡒖 4414511541535121
+𡒗 44112212523434121
+𡒘 1215235311252121
+𡒙 12455542344153121
+𡒚 12113442511154444
+𡒛 12151324134311212
+𡒜 12113434342522111
+𡒝 12112123415113251
+𡒞 12131431421531535
+𡒟 34112342511211121
+𡒠 12132543123413534
+𡒡 12112125143153254
+𡒢 12125143153254121
+𡒣 12112212513443121
+𡒤 12113513125125534
+𡒥 13513125125534211
+𡒦 25111325111344121
+𡒧 12125113521213312
+𡒨 12144512332511134
+𡒩 12145354242511234
+𡒪 34341214313425221
+𡒫 12112341122125211
+𡒬 12131431412211134
+𡒭 12132134432511234
+𡒮 25112251113533121
+𡒯 12112124511353334
+𡒰 325151551353334121
+𡒱 414325122513134121
+𡒲 12141352211515121
+𡒳 121325111445354153
+𡒴 325115111353334121
+𡒵 121445212125111354
+𡒶 121431121341511534
+𡒷 121413343123425121
+𡒸 121513432524312511
+𡒹 121121212154251214
+𡒺 121314314351325122
+𡒻 121331233122511134
+𡒼 121251252513554121
+𡒽 121521215212152121
+𡒾 121215315321211534
+𡒿 325151511353334121
+𡓀 121123251115132125
+𡓁 121252215425113535
+𡓂 12154334125143152
+𡓃 121132511325113251
+𡓄 1211223541112454
+𡓅 1211225234451154
+𡓆 314314414313434121
+𡓇 121352512144442511
+𡓈 121312341354352511
+𡓉 34151154133511121
+𡓊 121413543345153554
+𡓋 121324111215133115
+𡓌 1214312345234543134
+𡓍 121555253415115115
+𡓎 121332521251152112
+𡓏 12143123435415252
+𡓐 1211251251122512511
+𡓑 1214125125112121112
+𡓒 1211251234352511134
+𡓓 321511343211511121
+𡓔 1214134125251131234
+𡓕 1213125431211444453
+𡓖 121121121135135534
+𡓗 52131213541454121
+𡓘 1211452444432411121
+𡓙 1212243154112215254
+𡓚 2523443533511534121
+𡓛 3434251445121251121
+𡓜 1214131234341252511
+𡓝 2145134342511154121
+𡓞 1213143141211254444
+𡓟 1211251234313412121
+𡓠 1213411243112212511
+𡓡 1213531234132511134
+𡓢 4334353215113434121
+𡓣 1214125125251125112
+𡓤 121321511342511134
+𡓥 1212512512511121534
+𡓦 12135251151535251354
+𡓧 43341212251125214121
+𡓨 12134341211213434121
+𡓩 41554554444554444121
+𡓪 24345254312114444121
+𡓫 12125111342511134531
+𡓬 32515151551353334121
+𡓭 51513425234343434121
+𡓮 2523251135543434121
+𡓯 12134112431312511211
+𡓰 12121531532411121115
+𡓱 555251521532411121121
+𡓲 121511225112511541541
+𡓳 121122111122111122111
+𡓴 121431234251211212134
+𡓵 321151134321151134121
+𡓶 251251125125251251121
+𡓷 34451154131212511121
+𡓸 133123431234545454121
+𡓹 121513121252214143112
+𡓺 1215134143135411515111
+𡓻 121321134345114535354
+𡓼 212134342513434251121
+𡓽 121121231254312114444
+𡓾 12145242512211251431
+𡓿 251251251251251251121
+𡔀 132511454544354354121
+𡔁 121251212512125121121
+𡔂 4451211211211213443121
+𡔃 1211221251113432411121
+𡔄 1213143142522112143112
+𡔅 3443252431252431134121
+𡔆 4414143125111515111121
+𡔇 4312341344132511134121
+𡔈 1343525111342511134121
+𡔉 1211254125441352211515
+𡔊 41251251121211125311121
+𡔋 1214125125114311122154
+𡔌 2552125243125243134121
+𡔍 12144534121252212511134
+𡔎 12121531512512543121344
+𡔏 413555251521532411121121
+𡔐 121111253212134341343452
+𡔑 121125125314252212511135
+𡔒 121251141251251112213534
+𡔓 121125111251141352211535
+𡔔 121121251122511125431234
+𡔕 414312511121212511134121
+𡔖 12141112515544445544443134
+𡔗 34125125134343412512513434121
+𡔘 121252513521212525135225251352
+𡔙 121413522115154135221151541352211515
+𡔚 121413522115151214135221151541352211515
+𡔛 53121
+𡔜 121513
+𡔝 12155123
+𡔞 4151121
+𡔟 32353121
+𡔠 121251322
+𡔡 121343434
+𡔢 1212515134
+𡔣 1212511134
+𡔤 1212512541
+𡔥 1211221221
+𡔦 1212511221
+𡔧 1212514535
+𡔨 4311343121
+𡔩 1214525115
+𡔪 12145251121
+𡔫 12145253411
+𡔬 12152511211
+𡔭 12131112111
+𡔮 121252513554
+𡔯 121251121251
+𡔰 1212522152134
+𡔱 1214525121134
+𡔲 1212512155121
+𡔳 1214512155121
+𡔴 1214534542511
+𡔵 1214534435215
+𡔶 12125121551211
+𡔷 12125143152254
+𡔸 12145135435121
+𡔹 12145121251431
+𡔺 12145121251124
+𡔻 12145333152511
+𡔼 121251453452121
+𡔽 121525121251124
+𡔾 1214512512155121
+𡔿 1214535111341134
+𡕀 1213512511124444
+𡕁 12112251351225135
+𡕂 12125121551234521
+𡕃 12125221453452431
+𡕄 12145351212511431
+𡕅 121452522112513534
+𡕆 121251431113534251
+𡕇 121251121251121251
+𡕈 121251215512253411
+𡕉 121251455433425152
+𡕊 121251451332511234
+𡕋 121551512112132511
+𡕌 1215112251141251431
+𡕍 1212512155121212511
+𡕎 12145132511325113251
+𡕏 1214521551215454541234
+𡕐 1215121125112435121251
+𡕑 1215121125112435113511
+𡕒 152
+𡕓 35432
+𡕔 53354
+𡕕 354521
+𡕖 354112
+𡕗 3543332
+𡕘 3543112
+𡕙 3543511
+𡕚 354251135
+𡕛 35412214334
+𡕜 35433352252
+𡕝 3544334431234
+𡕞 354354
+𡕟 121354
+𡕠 1135354
+𡕡 5135354
+𡕢 14334354
+𡕣 12111354
+𡕤 11134354
+𡕥 25111354
+𡕦 2512135354
+𡕧 41355435354
+𡕨 41251251354
+𡕩 32534135354
+𡕪 5155115354
+𡕫 35253435354
+𡕬 54353544135
+𡕭 252512511354
+𡕮 1215412135354
+𡕯 3211554511354
+𡕰 3444445234354
+𡕱 3525352511354
+𡕲 12343434341354
+𡕳 35251125111354
+𡕴 33235251251354
+𡕵 13251113543415
+𡕶 211154455435354
+𡕷 352522125111354
+𡕸 4313251121115354
+𡕹 4452511125111354
+𡕺 2511354252554354
+𡕻 32111325111511354
+𡕼 3443121352121515354
+𡕽 344351222121515354
+𡕾 132511125112511354
+𡕿 132511135252515354
+𡖀 3234513222121515354
+𡖁 12212511235431234354
+𡖂 21211325111342121515354
+𡖃 132511135413251113541325111354
+𡖄 35425
+𡖅 35435
+𡖆 35354
+𡖇 354354
+𡖈 521521
+𡖉 354524
+𡖊 3545311
+𡖋 3544444
+𡖌 3542512
+𡖍 41434354
+𡖎 35435453
+𡖏 35455112
+𡖐 354354525
+𡖑 354345354
+𡖒 3543543511
+𡖓 3543544535
+𡖔 3543542511
+𡖕 3545252252
+𡖖 3545115452
+𡖗 3544443411
+𡖘 1234341354
+𡖙 3543543134
+𡖚 3542511132
+𡖛 3542534251
+𡖜 3543543554
+𡖝 35435425211
+𡖞 35435421251
+𡖟 35435444535
+𡖠 35435413121
+𡖡 21251354354
+𡖢 35435444535
+𡖣 35435425511
+𡖤 35435454251
+𡖥 3545115452
+𡖦 354242512153
+𡖧 354354154121
+𡖨 354354445531
+𡖩 511511354354
+𡖪 354354132121
+𡖫 354354335414
+𡖬 354354312135
+𡖭 354354325211
+𡖮 354354134115
+𡖯 3543541251234
+𡖰 3332121354354
+𡖱 3543543243112
+𡖲 3543543443531
+𡖳 1343434354354
+𡖴 3544552252135
+𡖵 4132354421251
+𡖶 12122511134354
+𡖷 3544451112134
+𡖸 35445352522134
+𡖹 24345251354354
+𡖺 35425141323544
+𡖻 35435412251111
+𡖼 43122431354354
+𡖽 35435431251115
+𡖾 35435412211134
+𡖿 354354251225251
+𡗀 12132511354354
+𡗁 354354325131134
+𡗂 431113121354354
+𡗃 3544443533351351
+𡗄 4315112234354354
+𡗅 354354431234454
+𡗆 25112512531354354
+𡗇 55525345115115354
+𡗈 35435425125125121
+𡗉 121121121135354354
+𡗊 354354121121121135
+𡗋 4125251131234354354
+𡗌 3543544155332411121
+𡗍 43111344511534354354
+𡗎 354354125111233122511
+𡗏 2512511351221113134354354
+𡗐 12225221453541515
+𡗑 2434525135435441251251112213534
+𡗒 5134
+𡗓 1341
+𡗔 1342
+𡗕 13434
+𡗖 52134
+𡗗 11134
+𡗘 11342
+𡗙 11345
+𡗚 12534
+𡗛 35134
+𡗜 13443
+𡗝 134515
+𡗞 554134
+𡗟 134342
+𡗠 325134
+𡗡 134523
+𡗢 134152
+𡗣 113412
+𡗤 113432
+𡗥 1341525
+𡗦 1343432
+𡗧 1343112
+𡗨 1341551
+𡗩 4334134
+𡗪 1344354
+𡗫 1113444
+𡗬 1515134
+𡗭 1253444
+𡗮 3443134
+𡗯 3553134
+𡗰 1341554
+𡗱 1342134
+𡗲 1343312
+𡗳 3454134
+𡗴 1344412
+𡗵 1345152
+𡗶 1134211
+𡗷 13433544
+𡗸 13431211
+𡗹 13454132
+𡗺 45431134
+𡗻 51532134
+𡗼 134212115
+𡗽 25135134
+𡗾 12213432
+𡗿 12221134
+𡘀 12512134
+𡘁 13415345
+𡘂 13421134
+𡘃 13425221
+𡘄 13432121
+𡘅 35345134
+𡘆 13443115
+𡘇 13411214
+𡘈 25134134
+𡘉 51532134
+𡘊 13425121
+𡘋 13411341
+𡘌 212115134
+𡘍 134125111
+𡘎 134353334
+𡘏 134531521
+𡘐 134412511
+𡘑 321511134
+𡘒 134425121
+𡘓 351331134
+𡘔 432534134
+𡘕 11134454
+𡘖 123434134
+𡘗 134251214
+𡘘 153153134
+𡘙 134134134
+𡘚 134413534
+𡘛 134531531
+𡘜 251251134
+𡘝 1341251234
+𡘞 5413425121
+𡘟 1341255151
+𡘠 3253112134
+𡘡 1225125134
+𡘢 1112535134
+𡘣 1341315251
+𡘤 1344325115
+𡘥 1213234134
+𡘦 2513425122
+𡘧 1342121233
+𡘨 1342251154
+𡘩 3211511134
+𡘪 1343251113
+𡘫 1343434121
+𡘬 3525115134
+𡘭 1213312134
+𡘮 1123431134
+𡘯 4134251134
+𡘰 1341251431
+𡘱 1112355134
+𡘲 11221122134
+𡘳 1344511534
+𡘴 1344325234
+𡘵 13425221431
+𡘶 252313413412
+𡘷 13412111534
+𡘸 31341251234
+𡘹 13432115115
+𡘺 13443112354
+𡘻 32534341134
+𡘼 151115134
+𡘽 12341234134
+𡘾 52131344134
+𡘿 31134333534
+𡙀 43252345134
+𡙁 13434343434
+𡙂 13455525121
+𡙃 13413441121
+𡙄 13411125111
+𡙅 43113432121
+𡙆 134312155212
+𡙇 3121212115134
+𡙈 134431125254
+𡙉 212534341134
+𡙊 153211511134
+𡙋 13425111354
+𡙌 134535424134
+𡙍 134311325111
+𡙎 113411341134
+𡙏 212533441134
+𡙐 134251113134
+𡙑 412511234134
+𡙒 134413441344
+𡙓 134441431333
+𡙔 134134121121
+𡙕 134431125311
+𡙖 352513545134
+𡙗 134251251251
+𡙘 134554554132
+𡙙 134325111121
+𡙚 123435234134
+𡙛 431554554134
+𡙜 1343241112154
+𡙝 3552152133134
+𡙞 13425121515121
+𡙟 3545341535134
+𡙠 1212554554134
+𡙡 4311214444134
+𡙢 4312343553134
+𡙣 1341325111354
+𡙤 1344513413534
+𡙥 1345331342534
+𡙦 3552335523134
+𡙧 151534122415
+𡙨 1344313415422
+𡙩 4132341343434
+𡙪 4325241345134
+𡙫 3434343434134
+𡙬 13432411121251
+𡙭 11342511135134
+𡙮 13412511121534
+𡙯 13444134112431
+𡙰 41251521354134
+𡙱 12132411121134
+𡙲 13425125125121
+𡙳 13443112353112
+𡙴 41431251135134
+𡙵 13425111511534
+𡙶 31344143125115
+𡙷 252211325221134
+𡙸 134324111211234
+𡙹 111343434343412
+𡙺 134122511545311
+𡙻 1341221512341234
+𡙼 53134432524134
+𡙽 133123431234134
+𡙾 312341353334134
+𡙿 134324111211154
+𡚀 125124512534134
+𡚁 43252343134134
+𡚂 35134432524134
+𡚃 341124311525134
+𡚄 134212511121534
+𡚅 2343434343434134
+𡚆 3343434341215134
+𡚇 2522121252215134
+𡚈 4312243125113134
+𡚉 1112111213445434
+𡚊 13425125132411121
+𡚋 2114312343553134
+𡚌 1134113411341134
+𡚍 1342512512512121
+𡚎 2522113513412512
+𡚏 13444331344433415
+𡚐 11325111132511134
+𡚑 1134431325111454
+𡚒 13432411121321511
+𡚓 13421211311234534
+𡚔 13425111251114444
+𡚕 31234344325211134
+𡚖 32515113451145252
+𡚗 134251212512125121
+𡚘 3443134343123425121
+𡚙 1221221452522511134
+𡚚 1341251234352511134
+𡚛 13412512554545454121
+𡚜 134212125125132411121
+𡚝 134251112511132411121
+𡚞 1343241112112412511534
+𡚟 1341221251113432411121
+𡚠 13425111251113241112154
+𡚡 1223525121444431234134
+𡚢 1341223525121444431234
+𡚣 321134345114512341234134
+𡚤 252211342522113425221134
+𡚥 352534134121213513125125534
+𡚦 5314
+𡚧 53135
+𡚨 53135
+𡚩 54531
+𡚪 35531
+𡚫 53135
+𡚬 11531
+𡚭 53134
+𡚮 354531
+𡚯 531115
+𡚰 354531
+𡚱 531515
+𡚲 531135
+𡚳 531121
+𡚴 252531
+𡚵 531354
+𡚶 345531
+𡚷 354531
+𡚸 531354
+𡚹 531134
+𡚺 531354
+𡚻 531134
+𡚼 5313515
+𡚽 5211531
+𡚾 5313554
+𡚿 5314544
+𡛀 5311354
+𡛁 5313533
+𡛂 5315113
+𡛃 5311354
+𡛄 5315134
+𡛅 5315152
+𡛆 5315333
+𡛇 5311334
+𡛈 5313232
+𡛉 3211531
+𡛊 5313113
+𡛋 5311115
+𡛌 1134531
+𡛍 1154531
+𡛎 1252531
+𡛏 5311534
+𡛐 5313435
+𡛑 3453531
+𡛒 5454531
+𡛓 5312541
+𡛔 5311215
+𡛕 5311344
+𡛖 5311355
+𡛗 1515531
+𡛘 5311355
+𡛙 53155453
+𡛚 53134312
+𡛛 53152252
+𡛜 53135151
+𡛝 21354531
+𡛞 53154132
+𡛟 53115534
+𡛠 53112154
+𡛡 53113254
+𡛢 53125213
+𡛣 53113554
+𡛤 43112531
+𡛥 53144535
+𡛦 53112534
+𡛧 53134333
+𡛨 53121124
+𡛩 53141431
+𡛪 53135333
+𡛫 53152134
+𡛬 53254531
+𡛭 53111234
+𡛮 53113251
+𡛯 53151532
+𡛰 53125134
+𡛱 53125135
+𡛲 53132154
+𡛳 53132511
+𡛴 53133124
+𡛵 12121534
+𡛶 53112215
+𡛷 53112523
+𡛸 53125511
+𡛹 35454531
+𡛺 54523531
+𡛻 53145534
+𡛼 53111214
+𡛽 25121531
+𡛾 53135112
+𡛿 53113121
+𡜀 54134531
+𡜁 53133544
+𡜂 441115531
+𡜃 531253434
+𡜄 531251153
+𡜅 531313534
+𡜆 531355215
+𡜇 531113222
+𡜈 243451531
+𡜉 531351234
+𡜊 531311252
+𡜋 531415325
+𡜌 124511531
+𡜍 531325111
+𡜎 345435531
+𡜏 531555155
+𡜐 531134534
+𡜑 251141531
+𡜒 531132521
+𡜓 251251531
+𡜔 531211234
+𡜕 531212511
+𡜖 531152511
+𡜗 531542511
+𡜘 531312531
+𡜙 53135452
+𡜚 531132522
+𡜛 234251531
+𡜜 531252211
+𡜝 251251531
+𡜞 531315355
+𡜟 321121531
+𡜠 531354152
+𡜡 441112531
+𡜢 531513513
+𡜣 531555121
+𡜤 531121525
+𡜥 531325151
+𡜦 121212531
+𡜧 531325341
+𡜨 531321234
+𡜩 121251531
+𡜪 531555252
+𡜫 531542541
+𡜬 531325113
+𡜭 251341531
+𡜮 5313315215
+𡜯 5311221115
+𡜰 2534341531
+𡜱 5315154544
+𡜲 5313121251
+𡜳 5311253511
+𡜴 5312534251
+𡜵 5311251124
+𡜶 5313515251
+𡜷 5314451215
+𡜸 2535251531
+𡜹 152352531
+𡜺 5311234251
+𡜻 5314451234
+𡜼 5312522111
+𡜽 2432511531
+𡜾 5314135452
+𡜿 5314125121
+𡝀 5311251112
+𡝁 1251234531
+𡝂 5315213121
+𡝃 5312121233
+𡝄 5311212134
+𡝅 5311212354
+𡝆 5312535251
+𡝇 5313443121
+𡝈 5311134531
+𡝉 1134531531
+𡝊 5311213312
+𡝋 5311234531
+𡝌 1311534531
+𡝍 5311353334
+𡝎 2511112531
+𡝏 5314451255
+𡝐 5313411234
+𡝑 3511515531
+𡝒 5314423134
+𡝓 5313554531
+𡝔 1215453531
+𡝕 5315215111
+𡝖 5315344544
+𡝗 5315113251
+𡝘 5315112534
+𡝙 5313411234
+𡝚 5312513121
+𡝛 5315411252
+𡝜 5313312251
+𡝝 4411121531
+𡝞 35415215531
+𡝟 53131234312
+𡝠 51545234531
+𡝡 51534234531
+𡝢 53135131344
+𡝣 24345251531
+𡝤 25112512531
+𡝥 53141541234
+𡝦 53134435215
+𡝧 31125222531
+𡝨 32112511531
+𡝩 53112123134
+𡝪 35152511531
+𡝫 44121251531
+𡝬 53144511214
+𡝭 53125112511
+𡝮 53144525111
+𡝯 53151124134
+𡝰 53112141431
+𡝱 53112123553
+𡝲 53135334544
+𡝳 5311212454
+𡝴 53112121135
+𡝵 53141343412
+𡝶 41533134531
+𡝷 24345445531
+𡝸 43112135531
+𡝹 53152125221
+𡝺 53111213134
+𡝻 53113443115
+𡝼 51324134531
+𡝽 12512512531
+𡝾 53154431112
+𡝿 53112121523
+𡞀 53124325251
+𡞁 53112123534
+𡞂 53115153511
+𡞃 53132511135
+𡞄 53132151115
+𡞅 55441554531
+𡞆 53134112251
+𡞇 53135113511
+𡞈 53131234251
+𡞉 53132511531
+𡞊 53131344334
+𡞋 53154134333
+𡞌 53132511132
+𡞍 53112511254
+𡞎 53113252511
+𡞏 53113411234
+𡞐 53125112251
+𡞑 53125121132
+𡞒 51145252531
+𡞓 52131234531
+𡞔 55212512531
+𡞕 53135425121
+𡞖 53141335154
+𡞗 53111134112
+𡞘 53141431531
+𡞙 53141525111
+𡞚 53121213541
+𡞛 53144535112
+𡞜 431253511531
+𡞝 531431325111
+𡞞 531234325111
+𡞟 431131354531
+𡞠 441312251531
+𡞡 531113434345
+𡞢 531122513522
+𡞣 131251534531
+𡞤 531125112154
+𡞥 531351331134
+𡞦 531352511521
+𡞧 531345235354
+𡞨 531125112534
+𡞩 542511134531
+𡞪 531312511354
+𡞫 531123411234
+𡞬 531351313344
+𡞭 531321511252
+𡞮 53115151234
+𡞯 531121212251
+𡞰 531431554554
+𡞱 531431234531
+𡞲 531321511215
+𡞳 531543341134
+𡞴 531121214312
+𡞵 531352534134
+𡞶 531445354153
+𡞷 531525344444
+𡞸 531125123422
+𡞹 53151111254
+𡞺 122111251531
+𡞻 531125221121
+𡞼 531133251234
+𡞽 531121323454
+𡞾 531132522531
+𡞿 531522515452
+𡟀 531121234154
+𡟁 531122513134
+𡟂 531534534115
+𡟃 531121235455
+𡟄 531251141431
+𡟅 531554444354
+𡟆 531355325221
+𡟇 531551353334
+𡟈 531331225111
+𡟉 531325122135
+𡟊 531312344334
+𡟋 112343134531
+𡟌 531121251531
+𡟍 531122125112
+𡟎 531251251214
+𡟏 531252512141
+𡟐 531312512134
+𡟑 531325131134
+𡟒 531431134531
+𡟓 531412513534
+𡟔 531113534251
+𡟕 415331525531
+𡟖 441445531531
+𡟗 531531531134
+𡟘 531541134531
+𡟙 531251131121
+𡟚 531535425221
+𡟛 531513431132
+𡟜 531431121531
+𡟝 531431353334
+𡟞 531322354333
+𡟟 531353344544
+𡟠 531251115555
+𡟡 531313443112
+𡟢 531312343452
+𡟣 531215315252
+𡟤 531251525111
+𡟥 531325125214
+𡟦 531332541452
+𡟧 53145115152
+𡟨 521343434531
+𡟩 5315132433541
+𡟪 5313251511252
+𡟫 5311212511134
+𡟬 5311314334534
+𡟭 5315134143112
+𡟮 3125125515531
+𡟯 5312513414544
+𡟰 5314535251354
+𡟱 5311212352511
+𡟲 5314453112251
+𡟳 5315515515121
+𡟴 531325151454
+𡟵 5311251212512
+𡟶 5312523121534
+𡟷 5313251113412
+𡟸 5313554541541
+𡟹 5311541213134
+𡟺 5311325111354
+𡟻 5311212251341
+𡟼 5315513533434
+𡟽 5311152512121
+𡟾 531413312154
+𡟿 4311215311251
+𡠀 5314125125251
+𡠁 5315444251214
+𡠂 5311224312511
+𡠃 1123415534531
+𡠄 5313251154444
+𡠅 3113431134531
+𡠆 1214513554531
+𡠇 5311252214544
+𡠈 1253412534531
+𡠉 1523313413531
+𡠊 5313223541234
+𡠋 3251511252531
+𡠌 5313253411535
+𡠍 3533125221531
+𡠎 5314311213554
+𡠏 5315454541234
+𡠐 5315454251112
+𡠑 5311251511234
+𡠒 5315545543121
+𡠓 3232411121531
+𡠔 5312121351122
+𡠕 5312511512134
+𡠖 531325111413412
+𡠗 12143112354531
+𡠘 531212112145534
+𡠙 5315425112454
+𡠚 5312511122112
+𡠛 53125125124544
+𡠜 12122511134531
+𡠝 11212511135531
+𡠞 53131431432124
+𡠟 531513325125214
+𡠠 53124345251121
+𡠡 53121212511122
+𡠢 54154134333531
+𡠣 531511541535
+𡠤 531515251251214
+𡠥 515251251214531
+𡠦 12135121354531
+𡠧 12211134354531
+𡠨 53131431451523
+𡠩 53112512554121
+𡠪 53112212523434
+𡠫 5312343155414
+𡠬 53112132343134
+𡠭 53114524134511
+𡠮 53152251544444
+𡠯 53111215313134
+𡠰 53125225111515
+𡠱 53125234125122
+𡠲 53125121122134
+𡠳 53151122511123
+𡠴 53132535414544
+𡠵 53135251214444
+𡠶 53134112431354
+𡠷 11212132515531
+𡠸 53112135122111
+𡠹 53112213545252
+𡠺 43344334445531
+𡠻 5313112251454
+𡠼 12512343134531
+𡠽 53113211234534
+𡠾 53125212513134
+𡠿 53132511151234
+𡡀 53143113425111
+𡡁 53134312344544
+𡡂 53143112145534
+𡡃 53144535341534
+𡡄 5311221211325
+𡡅 53152511154444
+𡡆 53125111511534
+𡡇 53143112125221
+𡡈 53125235113511
+𡡉 41312351235531
+𡡊 53155525111234
+𡡋 32151112512531
+𡡌 53113434344544
+𡡍 53141532512134
+𡡎 53125112512531
+𡡏 312342433541531
+𡡐 531224314311134
+𡡑 531432524312511
+𡡒 531122111343312
+𡡓 333531132511134
+𡡔 531251112211154
+𡡕 134315233534531
+𡡖 531153515352511
+𡡗 531344354255454
+𡡘 121431125311531
+𡡙 52131212541531
+𡡚 343421325111531
+𡡛 53113553425221
+𡡜 125111125111531
+𡡝 531431224312511
+𡡞 531344345354152
+𡡟 53153421215342121
+𡡠 53115435413134
+𡡡 531251141251234
+𡡢 531243452511234
+𡡣 53112235431234
+𡡤 531554554134534
+𡡥 53144115151234
+𡡦 53152431353334
+𡡧 531311342512511
+𡡨 531445352511534
+𡡩 531445125125121
+𡡪 531445351311534
+𡡫 531414315112234
+𡡬 531412515213134
+𡡭 431121531133511
+𡡮 531445521325111
+𡡯 531433443344553
+𡡰 531134211121111
+𡡱 531112111213415
+𡡲 531122511123511
+𡡳 531152332411121
+𡡴 123434341234531
+𡡵 531121112343134
+𡡶 531121244535455
+𡡷 531121212135354
+𡡸 531212133541422
+𡡹 53143252343134
+𡡺 531253425342534
+𡡻 531252521325111
+𡡼 321511342512531
+𡡽 531341251253512
+𡡾 531343421325111
+𡡿 531414345252251
+𡢀 531515515122134
+𡢁 122111345311531
+𡢂 121351215311531
+𡢃 531511225112511
+𡢄 531511225114134
+𡢅 531145241341154
+𡢆 531555253414544
+𡢇 531121551214544
+𡢈 441251113533531
+𡢉 531132522132522
+𡢊 531252212511134
+𡢋 531212121212121
+𡢌 531445342511534
+𡢍 5312121352511134
+𡢎 352513531121531
+𡢏 431234531354134
+𡢐 431234531331251
+𡢑 2522154545454531
+𡢒 5313143141251431
+𡢓 5311251152253412
+𡢔 3452515313511354
+𡢕 3215111213554531
+𡢖 1251112523554531
+𡢗 3211325341511531
+𡢘 531251251115151
+𡢙 5312153153443124
+𡢚 5312511252214153
+𡢛 3554554554252531
+𡢜 413452435234531
+𡢝 5313215111213134
+𡢞 5312511125111531
+𡢟 5311234123452134
+𡢠 5314453525125251
+𡢡 5315113251431112
+𡢢 5312153152515134
+𡢣 3412515313511354
+𡢤 5312512252514554
+𡢥 5314311212341234
+𡢦 4133232411121531
+𡢧 5314143453425115
+𡢨 5311221112511121
+𡢩 5311325135113134
+𡢪 5311212211121111
+𡢫 5311212431554554
+𡢬 5311212122151234
+𡢭 5313134211121111
+𡢮 4111251554554531
+𡢯 531122151121531
+𡢰 5311225125515531
+𡢱 5311252211123422
+𡢲 5311252342511134
+𡢳 5311312515344544
+𡢴 5311344325114334
+𡢵 5311452413455453
+𡢶 5313215111213554
+𡢷 5314453554545454
+𡢸 5315112251154132
+𡢹 5315315312512153
+𡢺 2511251253141334
+𡢻 5313211212511134
+𡢼 531122351251124
+𡢽 5311452444425121
+𡢾 5311234123411234
+𡢿 5312512211311534
+𡣀 524131343434531
+𡣁 5315215215212511
+𡣂 4112512343534531
+𡣃 5312534444412511
+𡣄 5314415154151541
+𡣅 12132342511135531
+𡣆 53131122221354152
+𡣇 53141313434344544
+𡣈 5312522112132511
+𡣉 31234531251211534
+𡣊 5313445425431121
+𡣋 53112522111234124
+𡣌 53121211124111251
+𡣍 41525135415315311
+𡣎 41431112343312531
+𡣏 53125125125134333
+𡣐 12212511253254531
+𡣑 53144511352511134
+𡣒 53112512341251234
+𡣓 53112512125111345
+𡣔 53134155425431121
+𡣕 53144552132511134
+𡣖 53124345251413534
+𡣗 53112125143153251
+𡣘 53122434511353334
+𡣙 53141432533543211
+𡣚 53144521212511135
+𡣛 53141112514325135
+𡣜 53113121221113134
+𡣝 53154154141343412
+𡣞 53112211154323334
+𡣟 53151122511122111
+𡣠 25121532512153531
+𡣡 53125121532512153
+𡣢 31251121131234531
+𡣣 53134435113425111
+𡣤 53134154122543112
+𡣥 53141312341234531
+𡣦 53155455415545545
+𡣧 53113252212511134
+𡣨 5311221215425221
+𡣩 44112212523434531
+𡣪 53141432512251454
+𡣫 531254312114444121
+𡣬 531252211325221134
+𡣭 531215315251214544
+𡣮 531121235415411234
+𡣯 531243324111211534
+𡣰 531134342341252511
+𡣱 531252211212513534
+𡣲 531445134432511234
+𡣳 531122111211111534
+𡣴 531153432511154444
+𡣵 531125125311554234
+𡣶 531113411342511134
+𡣷 531125112441533134
+𡣸 531252324111212525
+𡣹 411125143344334531
+𡣺 531111211125114544
+𡣻 5311221251112454
+𡣼 413434313552252531
+𡣽 5315112251135321511
+𡣾 53112125112321155212
+𡣿 3211122515113434531
+𡤀 531251251115132125
+𡤁 5314451135251114444
+𡤂 5313125431211444453
+𡤃 5311212511225112511
+𡤄 5311212511225111234
+𡤅 5314143112342511135
+𡤆 5311251112125221531
+𡤇 5312523322521353134
+𡤈 1221251211354444531
+𡤉 5312121243132511134
+𡤊 531312144112132511
+𡤋 5312135454211121111
+𡤌 5311331234312342121
+𡤍 312345311332511234
+𡤎 5313525115353525135
+𡤏 53112123251514143112
+𡤐 53144511221342511134
+𡤑 53112121234341252511
+𡤒 5313211152511134112
+𡤓 53154251252212511134
+𡤔 25221251113453154251
+𡤕 53114524134512115154
+𡤖 53113113453554541541
+𡤗 53125221352512144334
+𡤘 531134252343434344544
+𡤙 531122111122111122111
+𡤚 531321132534151114334
+𡤛 531125111212511214124
+𡤜 121451251431113534531
+𡤝 531312153432511154444
+𡤞 531352512511115511511
+𡤟 531521132511325113251
+𡤠 53145242512211251431
+𡤡 5315112251155455453212
+𡤢 5312522155444432411121
+𡤣 5315544444111251554444
+𡤤 5311212325115545541234
+𡤥 5313223134254312114444
+𡤦 5311212121351213541154
+𡤧 5314451121352342511134
+𡤨 5542344111251554234531
+𡤩 5312512211251431355215
+𡤪 5313143141211121111534
+𡤫 21213434134345212512531
+𡤬 53125111251113241112154
+𡤭 53124345251254312114444
+𡤮 531121211241112514111251
+𡤯 531251212512125121554234
+𡤰 531433443344532511154444
+𡤱 531125125314252212511135
+𡤲 531212534444412511251522
+𡤳 352513553135251353525135
+𡤴 5311452413441432533543211
+𡤵 5311214512514314135344544
+𡤶 5314111251554444554444515
+𡤷 53131431434341211121111534
+𡤸 531111221112521251431355215
+𡤹 531352513543525135435251354
+𡤺 352513545313525135435251354
+𡤻 531411125155444455444432511154444
+𡤼 521
+𡤽 5211
+𡤾 52111
+𡤿 52134
+𡥀 52134
+𡥁 52122
+𡥂 13521
+𡥃 521531
+𡥄 521251
+𡥅 121521
+𡥆 5241521
+𡥇 1252132
+𡥈 3434521
+𡥉 3413521
+𡥊 5213115
+𡥋 2153521
+𡥌 5212511
+𡥍 5454521
+𡥎 212115521
+𡥏 252341521
+𡥐 25234521
+𡥑 52112345
+𡥒 11234521
+𡥓 52155414
+𡥔 25121521
+𡥕 25153521
+𡥖 32154521
+𡥗 53354521
+𡥘 55414521
+𡥙 52153251
+𡥚 52112512
+𡥛 521311234
+𡥜 445555521
+𡥝 554554521
+𡥞 344345521
+𡥟 125221521
+𡥠 521325221
+𡥡 521413434
+𡥢 521132452
+𡥣 212511521
+𡥤 521111234
+𡥥 521354354
+𡥦 521521521
+𡥧 521513444
+𡥨 5215212511
+𡥩 5214351523
+𡥪 5214111251
+𡥫 3411251521
+𡥬 3123422521
+𡥭 5243443521
+𡥮 41533134521
+𡥯 44235251521
+𡥰 52112251111
+𡥱 52135121251
+𡥲 32151135521
+𡥳 25122134521
+𡥴 52132511121
+𡥵 52125111535
+𡥶 521325125214
+𡥷 513521513521
+𡥸 513311553521
+𡥹 412515215134
+𡥺 251355221521
+𡥻 312344334521
+𡥼 521352511134
+𡥽 112343134521
+𡥾 521251225251
+𡥿 521312511211
+𡦀 521525113511
+𡦁 551353334521
+𡦂 445521445521
+𡦃 4334433445521
+𡦄 3543543443521
+𡦅 5213552335523
+𡦆 3251131253521
+𡦇 5212511313511
+𡦈 3415452133544
+𡦉 5212512144134
+𡦊 1213521521521
+𡦋 1251253111521
+𡦌 5211224312511
+𡦍 5214134122111
+𡦎 5213115431234
+𡦏 5215215212511
+𡦐 4334352511521
+𡦑 11342511135521
+𡦒 52125225111515
+𡦓 52124332411121
+𡦔 41434525254521
+𡦕 52112511214124
+𡦖 52112212523434
+𡦗 52112511254444
+𡦘 521132522132522
+𡦙 252252252445521
+𡦚 412515211251234
+𡦛 312153441251521
+𡦜 521414312511211
+𡦝 351212511213521
+𡦞 5212135454431234
+𡦟 4125152132511312
+𡦠 3123432411121521
+𡦡 4125152112132511
+𡦢 3443521312511211
+𡦣 252524143112521
+𡦤 4312345313134521
+𡦥 5133115521521521
+𡦦 4122115213544334
+𡦧 3123452141343412
+𡦨 4125152121531535
+𡦩 25114125125251521
+𡦪 521521521521521521
+𡦫 521331233122511134
+𡦬 251141251252511521
+𡦭 3413521413522154444
+𡦮 521122543341251431
+𡦯 2525132514143112521
+𡦰 5213211343451145521
+𡦱 41352213544441213521
+𡦲 12135214135221154444
+𡦳 12135214135221354444
+𡦴 34345214135221354444
+𡦵 41352211544441213521
+𡦶 5213354432511354412
+𡦷 5215215212511521521521
+𡦸 341251252213211343451145521
+𡦹 4355
+𡦺 44553
+𡦻 44555
+𡦼 44534
+𡦽 445415
+𡦾 445235
+𡦿 445351
+𡧀 445525
+𡧁 445551
+𡧂 445135
+𡧃 445112
+𡧄 445354
+𡧅 445132
+𡧆 445135
+𡧇 445121
+𡧈 445115
+𡧉 445135
+𡧊 445153
+𡧋 4453553
+𡧌 4453554
+𡧍 4451255
+𡧎 4451215
+𡧏 4453515
+𡧐 4455134
+𡧑 4455134
+𡧒 4451354
+𡧓 4452511
+𡧔 4453554
+𡧕 4455454
+𡧖 44552134
+𡧗 4451554
+𡧘 44513533
+𡧙 44535352
+𡧚 44525253
+𡧛 44532124
+𡧜 44532315
+𡧝 44552534
+𡧞 44513533
+𡧟 44525111
+𡧠 44515134
+𡧡 44512121
+𡧢 44512134
+𡧣 44513251
+𡧤 44513533
+𡧥 44525125
+𡧦 44531134
+𡧧 44535441
+𡧨 44525252
+𡧩 445121121
+𡧪 445121315
+𡧫 445354544
+𡧬 445345325
+𡧭 445351355
+𡧮 445251115
+𡧯 445211234
+𡧰 445311252
+𡧱 445121251
+𡧲 445122512
+𡧳 445125351
+𡧴 445135334
+𡧵 445415412
+𡧶 445134251
+𡧷 445543112
+𡧸 445354252
+𡧹 445251211
+𡧺 445325151
+𡧻 445331251
+𡧼 445342511
+𡧽 445415325
+𡧾 445525221
+𡧿 445531534
+𡨀 4453411234
+𡨁 4451213234
+𡨂 4451251251
+𡨃 4451241344
+𡨄 4451122134
+𡨅 4455135251
+𡨆 4453543541
+𡨇 4453251115
+𡨈 4451255151
+𡨉 4455134315
+𡨊 4451214554
+𡨋 4452511134
+𡨌 4451242512
+𡨍 445351554
+𡨎 4454334124
+𡨏 4451221134
+𡨐 4454334251
+𡨑 4454543452
+𡨒 4451121134
+𡨓 4451251325
+𡨔 4451343412
+𡨕 4452511134
+𡨖 4453123422
+𡨗 4453251115
+𡨘 4453251354
+𡨙 4453434124
+𡨚 4453525135
+𡨛 4453541112
+𡨜 4454134424
+𡨝 4454334354
+𡨞 4455114554
+𡨟 4453121251
+𡨠 4453434121
+𡨡 4453525134
+𡨢 44551312251
+𡨣 44531212154
+𡨤 44554545454
+𡨥 44511353134
+𡨦 44551145252
+𡨧 44541343412
+𡨨 44513443354
+𡨩 44535152511
+𡨪 44545443511
+𡨫 44544511234
+𡨬 44554252212
+𡨭 44512343554
+𡨮 44513251134
+𡨯 44532151112
+𡨰 44531112111
+𡨱 44532121121
+𡨲 44511213534
+𡨳 44512133534
+𡨴 44513252212
+𡨵 44513425111
+𡨶 44525114334
+𡨷 44531213534
+𡨸 44512445521
+𡨹 44512444512
+𡨺 44512445124
+𡨻 44534435215
+𡨼 44543344334
+𡨽 445234325111
+𡨾 445125221121
+𡨿 445325344334
+𡩀 445551353334
+𡩁 445414311234
+𡩂 445132522134
+𡩃 445442125441
+𡩄 445352513553
+𡩅 4454143135252
+𡩆 125123444535
+𡩇 445251115325
+𡩈 445251111234
+𡩉 445454425111
+𡩊 44552125345
+𡩋 445454425211
+𡩌 44551111254
+𡩍 44553135534
+𡩎 445454341234
+𡩏 445521325111
+𡩐 445312125121
+𡩑 445252213534
+𡩒 445311325111
+𡩓 445354251214
+𡩔 445321511134
+𡩕 445425111234
+𡩖 445122511135
+𡩗 445341251122
+𡩘 445414312511
+𡩙 445431353334
+𡩚 445511353334
+𡩛 445531132511
+𡩜 445112125221
+𡩝 445125454511
+𡩞 445355412121
+𡩟 4451321151134
+𡩠 4455114525254
+𡩡 4451245554234
+𡩢 4453223541234
+𡩣 4453541521234
+𡩤 4453212212511
+𡩥 4453454541541
+𡩦 4451251125111
+𡩧 4451121311252
+𡩨 4453431234251
+𡩩 4455213415251
+𡩪 4451251251234
+𡩫 445511325152
+𡩬 4454544252211
+𡩭 4453431234115
+𡩮 4451212511135
+𡩯 4451344325115
+𡩰 4451123435352
+𡩱 4451122134115
+𡩲 4452522113534
+𡩳 4452511134121
+𡩴 4453443311252
+𡩵 4451431353334
+𡩶 4452511125134
+𡩷 4452511445531
+𡩸 4453123425115
+𡩹 4453443321511
+𡩺 4454421251251
+𡩻 44544151145252
+𡩼 44512251111234
+𡩽 44552131353334
+𡩾 44512512512515
+𡩿 44554545454121
+𡪀 44535414453541
+𡪁 44552133415251
+𡪂 4453542511211
+𡪃 44534312341312
+𡪄 44512121325114
+𡪅 4451221115452
+𡪆 445454343251115
+𡪇 44512322354333
+𡪈 44512211134121
+𡪉 44512211135352
+𡪊 44525122113534
+𡪋 44534343434531
+𡪌 44512135342154
+𡪍 44512251114444
+𡪎 44512341234354
+𡪏 44512511125111
+𡪐 44513443112354
+𡪑 44525125125115
+𡪒 44525225225121
+𡪓 44531212511134
+𡪔 44541431121234
+𡪕 44545442512511
+𡪖 44545434325221
+𡪗 44552131341251
+𡪘 44552133431234
+𡪙 44553125113511
+𡪚 44554545454531
+𡪛 44512552511134
+𡪜 44544145341234
+𡪝 4452125525251
+𡪞 44535425154251
+𡪟 445442414312511
+𡪠 445432524312511
+𡪡 44512122343534
+𡪢 445325113525254
+𡪣 445311531153115
+𡪤 445121211212112
+𡪥 445454421251135
+𡪦 44544112132511
+𡪧 445545454541234
+𡪨 445122251113554
+𡪩 445121121121135
+𡪪 445112135234134
+𡪫 445121251125115
+𡪬 44512211135452
+𡪭 445251412513534
+𡪮 445351311534132
+𡪯 44551221113134
+𡪰 445121315121335
+𡪱 445134413441344
+𡪲 445251212511134
+𡪳 445312342511135
+𡪴 445321325114134
+𡪵 445341124312154
+𡪶 445521343344334
+𡪷 445521352145252
+𡪸 445531132511211
+𡪹 445541541342444
+𡪺 445543341251431
+𡪻 445251153112251
+𡪼 445413511431234
+𡪽 445311342511135
+𡪾 4452511252144544
+𡪿 4453253431234134
+𡫀 4453251141533134
+𡫁 4452112342511134
+𡫂 4455544442513541
+𡫃 4454544252211134
+𡫄 4453525111343134
+𡫅 4451135251114334
+𡫆 4451234341252511
+𡫇 4454544252214544
+𡫈 4451252211211344
+𡫉 4451212211112154
+𡫊 4451252214143112
+𡫋 4452512211251431
+𡫌 4451212251113453
+𡫍 4454544132522111
+𡫎 4453251112343134
+𡫏 4454415114525254
+𡫐 4454143135112234
+𡫑 44512134121354121
+𡫒 44552135114525254
+𡫓 44512143112354121
+𡫔 44552135114525111
+𡫕 44551132511154444
+𡫖 44525221125113534
+𡫗 44521112111341234
+𡫘 44534312342512153
+𡫙 44512112134345454
+𡫚 44512522112111234
+𡫛 44532511145352525
+𡫜 445122341223434
+𡫝 44512341344325111
+𡫞 4452512121341351155
+𡫟 445121121121121134
+𡫠 44533215435413134
+𡫡 445311251122511251
+𡫢 445311234251125214
+𡫣 445125112441533134
+𡫤 445251125112512531
+𡫥 445354251445354251
+𡫦 445354551311534124
+𡫧 445521315114525111
+𡫨 445454342522511135
+𡫩 445511511511511134
+𡫪 445112213441322154
+𡫫 413425144512512134
+𡫬 4453143141214311234
+𡫭 4451214311235431234
+𡫮 4451211213543343434
+𡫯 4451331234312342121
+𡫰 4451325132511154444
+𡫱 4451325154154134333
+𡫲 4453121251445354251
+𡫳 4451211211211211312
+𡫴 4451112251131251534
+𡫵 4454135342522131234
+𡫶 4451122134441121132
+𡫷 44511213523434112431
+𡫸 44545442522112121251
+𡫹 44545434523131251534
+𡫺 4455213122252214554
+𡫻 44551525334112111234
+𡫼 445121121121121134121
+𡫽 445521321212522145531
+𡫾 445523523543434523523
+𡫿 445112131125234112431
+𡬀 445112144511214451121
+𡬁 445121335121335121335
+𡬂 445125125121251113422
+𡬃 445312135312135312135
+𡬄 4455213212125221452534
+𡬅 4451225111134132511134
+𡬆 4454422121252214525111
+𡬇 4455213212125221451324
+𡬈 4454143125111515111124
+𡬉 3312251114451122134121
+𡬊 4455213212125221453134
+𡬋 4455213352522145121251
+𡬌 44552132121252214525111
+𡬍 445521321212522145431234
+𡬎 445431113543111354311135
+𡬏 445112144451121444511214
+𡬐 445251114452511144525111
+𡬑 4455213212125221451251251
+𡬒 4455213212125221453251111234
+𡬓 4455213212125221455114554
+𡬔 4452511134251113434112431
+𡬕 4454544121335121335121335
+𡬖 44552132121252214543344334
+𡬗 44545442522112121451251431
+𡬘 54154134333445212125111354
+𡬙 445521321212522145251113422
+𡬚 445354251445354251445354251
+𡬛 44545444143125121441431251214
+𡬜 445112213444445112213444445112213444
+𡬝 1224
+𡬞 555124
+𡬟 31234124
+𡬠 51154124
+𡬡 1515124
+𡬢 54523124
+𡬣 25135124
+𡬤 25112124
+𡬥 25211124
+𡬦 34121124
+𡬧 211234124
+𡬨 111253124
+𡬩 251135124
+𡬪 325221124
+𡬫 335414124
+𡬬 252211124
+𡬭 1251221124
+𡬮 44525151124
+𡬯 32112511124
+𡬰 35111245134
+𡬱 41251234124
+𡬲 55525111124
+𡬳 344325221124
+𡬴 34125125124
+𡬵 125221121124
+𡬶 511121354124
+𡬷 251113422124
+𡬸 555321511124
+𡬹 5551325111124
+𡬺 2522112121124
+𡬻 2534345134124
+𡬼 2543125222124
+𡬽 12522111234124
+𡬾 12341251431124
+𡬿 12512512515124
+𡭀 25221121121124
+𡭁 54154134333124
+𡭂 12523425111124
+𡭃 125341311534124
+𡭄 121121121135124
+𡭅 412515213553124
+𡭆 121225112211124
+𡭇 125112141242534
+𡭈 251251121121124
+𡭉 431123251113124
+𡭊 2243143112251124
+𡭋 1253411311534124
+𡭌 1234521325111124
+𡭍 33521512511214124
+𡭎 5551325111454124
+𡭏 12511214312251124
+𡭐 331521512511214124
+𡭑 3325551325111112124
+𡭒 34435132512212451251
+𡭓 321132534151114334124
+𡭔 234
+𡭕 1234
+𡭖 5234
+𡭗 34234
+𡭘 53234
+𡭙 234251
+𡭚 111234
+𡭛 234132
+𡭜 425234
+𡭝 2343234
+𡭞 2344334
+𡭟 2343134
+𡭠 2434515
+𡭡 1353234
+𡭢 2341234
+𡭣 2342343
+𡭤 2341121
+𡭥 35332343
+𡭦 23412341
+𡭧 52252234
+𡭨 25111234
+𡭩 23451134
+𡭪 234251135
+𡭫 354234124
+𡭬 234425123
+𡭭 234125134
+𡭮 234132511
+𡭯 234234234
+𡭰 341534234
+𡭱 522522343
+𡭲 234352252
+𡭳 121125234
+𡭴 2342511234
+𡭵 2434525112
+𡭶 2431251115
+𡭷 2341353334
+𡭸 2343251251
+𡭹 4153342343
+𡭺 2343132522
+𡭻 2431341525
+𡭼 2342511312
+𡭽 23432511234
+𡭾 23434435215
+𡭿 24345251454
+𡮀 23432535251
+𡮁 23425121132
+𡮂 23432511234
+𡮃 12122251234
+𡮄 23444535455
+𡮅 32151135234
+𡮆 23451122511
+𡮇 41343412234
+𡮈 34435215234
+𡮉 51122511234
+𡮊 23412154534
+𡮋 23412343134
+𡮌 23433251254
+𡮍 23412152252
+𡮎 413541251234
+𡮏 234323432343
+𡮐 234234234234
+𡮑 234334435215
+𡮒 312345215234
+𡮓 312211352343
+𡮔 431121134234
+𡮕 243452512512
+𡮖 234545225235
+𡮗 23431324454
+𡮘 1221112342343
+𡮙 5435411515234
+𡮚 2345435121251
+𡮛 2344412511121
+𡮜 3143143134234
+𡮝 2434525431211
+𡮞 44531212512343
+𡮟 54542345454234
+𡮠 34234521325111
+𡮡 23423422511135
+𡮢 24345251412511
+𡮣 23451122511123
+𡮤 51122511123234
+𡮥 23451122511123
+𡮦 125122125112343
+𡮧 253525135211234
+𡮨 252212511134234
+𡮩 511225111232343
+𡮪 234122111343534
+𡮫 354413444444234
+𡮬 234511225114544
+𡮭 515515122134234
+𡮮 234511225114544
+𡮯 23433121251454
+𡮰 4133123431234234
+𡮱 3413542342511234
+𡮲 2344111251121124
+𡮳 2522125111342343
+𡮴 23435112112211134
+𡮵 24325251312511211
+𡮶 31251121124325251
+𡮷 234125125542511134
+𡮸 515515122134234134
+𡮹 23431224511353334
+𡮺 125125542511134234
+𡮻 125125311252212343
+𡮼 1251253144252212343
+𡮽 234134331225111454
+𡮾 121121121135454234
+𡮿 352511515352513542343
+𡯀 12343112521234453444445215333234
+𡯁 135
+𡯂 3535
+𡯃 1353
+𡯄 13553
+𡯅 13554
+𡯆 13554
+𡯇 13522
+𡯈 13534
+𡯉 13554
+𡯊 11354
+𡯋 135112
+𡯌 135354
+𡯍 135152
+𡯎 135333
+𡯏 1354412
+𡯐 1351234
+𡯑 34352534
+𡯒 34352511
+𡯓 1353432
+𡯔 1353435
+𡯕 1353453
+𡯖 1353533
+𡯗 34353432
+𡯘 1351354
+𡯙 1352511
+𡯚 343535515
+𡯛 343513121
+𡯜 13544534
+𡯝 13513251
+𡯞 13512534
+𡯟 13542511
+𡯠 343544534
+𡯡 13535515
+𡯢 135312251
+𡯣 135511534
+𡯤 341354135
+𡯥 135251214
+𡯦 135351234
+𡯧 3435251115
+𡯨 1353434121
+𡯩 1352432511
+𡯪 1352521121
+𡯫 34353251134
+𡯬 1353251134
+𡯭 1355231121
+𡯮 3413541354
+𡯯 1354122134
+𡯰 1351132534
+𡯱 34353251135
+𡯲 34355231121
+𡯳 13541431251
+𡯴 13521251112
+𡯵 13531234531
+𡯶 412512521354
+𡯷 343541431251
+𡯸 343513425115
+𡯹 1353251211534
+𡯺 135132511134
+𡯻 135251112134
+𡯼 121544441354
+𡯽 135131251534
+𡯾 135431253511
+𡯿 135352511134
+𡰀 135531543112
+𡰁 135312511211
+𡰂 3435251211534
+𡰃 1353544311252
+𡰄 1353443554134
+𡰅 135255452511
+𡰆 1353251111234
+𡰇 52252112343435
+𡰈 3251111234135
+𡰉 34354315112234
+𡰊 34352512453541
+𡰋 13525232411121
+𡰌 13525112512531
+𡰍 25112512531135
+𡰎 13532511154444
+𡰏 13544141251234
+𡰐 2153152252111354
+𡰑 135313425125251
+𡰒 135414312511211
+𡰓 251125125311354
+𡰔 412512512341354
+𡰕 3435414312511211
+𡰖 1353443251112134
+𡰗 4125141251234135
+𡰘 3134251252511354
+𡰙 4312535111341354
+𡰚 4312343541521354
+𡰛 343512512531425221
+𡰜 41251412512341354
+𡰝 135212125125132411121
+𡰞 13512225125132411121
+𡰟 34354152514311123511354
+𡰠 1354152513541431112354
+𡰡 34353443252324111212534251
+𡰢 1353443252324111212535251
+𡰣 513
+𡰤 43513
+𡰥 51311
+𡰦 51334
+𡰧 51135
+𡰨 51312
+𡰩 513511
+𡰪 513251
+𡰫 513544
+𡰬 513515
+𡰭 513325
+𡰮 212513
+𡰯 513252
+𡰰 513452
+𡰱 513121
+𡰲 513513
+𡰳 513541
+𡰴 51135
+𡰵 5132154
+𡰶 5132511
+𡰷 5134412
+𡰸 5131254
+𡰹 5133233
+𡰺 5135153
+𡰻 5135154
+𡰼 5135215
+𡰽 5131354
+𡰾 5133523
+𡰿 51334354
+𡱀 41251513
+𡱁 51331134
+𡱂 51313535
+𡱃 51335252
+𡱄 51311154
+𡱅 51312154
+𡱆 51312534
+𡱇 51321251
+𡱈 51335251
+𡱉 51135113
+𡱊 51352534
+𡱋 25121513
+𡱌 513125111
+𡱍 513415334
+𡱎 513253434
+𡱏 513554234
+𡱐 513151534
+𡱑 513543541
+𡱒 513122134
+𡱓 513115435
+𡱔 513112511
+𡱕 513111115
+𡱖 513311234
+𡱗 513122154
+𡱘 513243135
+𡱙 513523134
+𡱚 513323132
+𡱛 513431134
+𡱜 513341534
+𡱝 513431112
+𡱞 513431523
+𡱟 513555521
+𡱠 121251513
+𡱡 513122111
+𡱢 5135431134
+𡱣 5133325452
+𡱤 5134413115
+𡱥 5135435354
+𡱦 5132121454
+𡱧 5131121135
+𡱨 4351312251
+𡱩 1213155134
+𡱪 5134421254
+𡱫 5133121534
+𡱬 5133115521
+𡱭 5133115112
+𡱮 5134251211
+𡱯 5131121132
+𡱰 5131353334
+𡱱 5133323134
+𡱲 5133434335
+𡱳 5134412343
+𡱴 5135552534
+𡱵 5133115234
+𡱶 5132513251
+𡱷 5131221115
+𡱸 2534225134
+𡱹 5133321555
+𡱺 51333235251
+𡱻 51312155121
+𡱼 51325111234
+𡱽 51335334544
+𡱾 51312211154
+𡱿 51325113533
+𡲀 51344535121
+𡲁 51333213344
+𡲂 21251325111
+𡲃 51313154121
+𡲄 51311131112
+𡲅 51312341254
+𡲆 51352131254
+𡲇 51325125214
+𡲈 51331124134
+𡲉 51331152511
+𡲊 51331153511
+𡲋 51331155454
+𡲌 51312132121
+𡲍 51325155453
+𡲎 51332511312
+𡲏 51333235515
+𡲐 51334435215
+𡲑 51355531134
+𡲒 51355552252
+𡲓 51311131112
+𡲔 513311343115
+𡲕 513332251153
+𡲖 513253444441
+𡲗 513134452252
+𡲘 513112112534
+𡲙 513125221121
+𡲚 513431253511
+𡲛 513332354152
+𡲜 513343425122
+𡲝 513121251153
+𡲞 435133512251
+𡲟 513332335414
+𡲠 513251151354
+𡲡 212513533415
+𡲢 513121253251
+𡲣 51352354152
+𡲤 513311525111
+𡲥 513311531121
+𡲦 513125124544
+𡲧 513311511234
+𡲨 513311512154
+𡲩 513112111515
+𡲪 513311553521
+𡲫 513311513252
+𡲬 5131121152252
+𡲭 5133115251153
+𡲮 5133253411515
+𡲯 5132343415354
+𡲰 5133323411234
+𡲱 5132343411312
+𡲲 5133325435354
+𡲳 5135154151541
+𡲴 5134334431234
+𡲵 5133434343435
+𡲶 5131151152252
+𡲷 5131212231234
+𡲸 5133115431234
+𡲹 5133431234531
+𡲺 5134134343541
+𡲻 5131251251252
+𡲼 5133115415334
+𡲽 5133251111535
+𡲾 5133323443531
+𡲿 5135213251153
+𡳀 5133115351355
+𡳁 5134312341344
+𡳂 5132521251431
+𡳃 5133115341154
+𡳄 51325141252511
+𡳅 51332511151535
+𡳆 51321531525111
+𡳇 51354154134333
+𡳈 51343344334121
+𡳉 51343344334354
+𡳊 51331151121132
+𡳋 51311344511534
+𡳌 51333254523354
+𡳍 51355444435251
+𡳎 51331152513251
+𡳏 51334153435251
+𡳐 513332335414354
+𡳑 513334343434121
+𡳒 513311512512152
+𡳓 513311544511234
+𡳔 513311554134333
+𡳕 513311531112111
+𡳖 513311512123215
+𡳗 513311543121513
+𡳘 513123434343452
+𡳙 513412122151234
+𡳚 513525125115341
+𡳛 513431234121251
+𡳜 513311531234521
+𡳝 513311541343412
+𡳞 513431234354152
+𡳟 513525135125115
+𡳠 5131135342511134
+𡳡 513343421523522
+𡳢 51341213251152
+𡳣 12132511525134
+𡳤 51341213251152
+𡳥 5131325141343412
+𡳦 5133115341215213
+𡳧 2512151331133112
+𡳨 51312345454541234
+𡳩 51331155111212511
+𡳪 513311512132411121
+𡳫 513254312114444121
+𡳬 5132153152512125221
+𡳭 5131512345454541234
+𡳮 5133123411212511134
+𡳯 5131234313425125251
+𡳰 5132511251253112251
+𡳱 51331151212251125214
+𡳲 51331153443251125214
+𡳳 51331153412524312511
+𡳴 41525135411221513354
+𡳵 51343123453112222511
+𡳶 12222511513431234531
+𡳷 513125221332312511354
+𡳸 5133321331234312342121
+𡳹 5133115252215425113535
+𡳺 513311532511325113554
+𡳻 513251115132511151325111
+𡳼 122132151125132413452252
+𡳽 3143141211254444513154121
+𡳾 525
+𡳿 25121
+𡴀 52112
+𡴁 523554
+𡴂 523525
+𡴃 151523
+𡴄 523455
+𡴅 523252
+𡴆 5234134
+𡴇 5231112
+𡴈 1552252
+𡴉 1525354
+𡴊 5231251
+𡴋 52355414
+𡴌 34143522
+𡴍 52313121
+𡴎 523325151
+𡴏 523342511
+𡴐 523251112
+𡴑 523342512
+𡴒 523134154
+𡴓 325341525
+𡴔 523134454
+𡴕 2523155414
+𡴖 5233443112
+𡴗 5232513251
+𡴘 3134431523
+𡴙 5233251112
+𡴚 5235233453
+𡴛 52312155414
+𡴜 52334342511
+𡴝 523525413412
+𡴞 523134125435
+𡴟 523342121112
+𡴠 523523522121
+𡴡 522341251251
+𡴢 152543122431
+𡴣 152534435112
+𡴤 3434323434523
+𡴥 5234134522554
+𡴦 523254312114444
+𡴧 5232121122134415
+𡴨 523523522523412
+𡴩 523412251251251
+𡴪 523134523134522134
+𡴫 523413452341345234134
+𡴬 32343434345233234343434522
+𡴭 2525
+𡴮 2525
+𡴯 2525
+𡴰 25255
+𡴱 25255
+𡴲 35525
+𡴳 52252
+𡴴 35252
+𡴵 25212
+𡴶 25212
+𡴷 34252
+𡴸 35252
+𡴹 25252
+𡴺 52252
+𡴻 53252
+𡴼 25255
+𡴽 25253
+𡴾 252515
+𡴿 252354
+𡵀 252415
+𡵁 354252
+𡵂 252135
+𡵃 252112
+𡵄 252112
+𡵅 252322
+𡵆 252515
+𡵇 252521
+𡵈 252135
+𡵉 252135
+𡵊 252215
+𡵋 252215
+𡵌 252344
+𡵍 415252
+𡵎 354252
+𡵏 252554
+𡵐 252135
+𡵑 534252
+𡵒 515252
+𡵓 2521354
+𡵔 2521354
+𡵕 3541252
+𡵖 2524334
+𡵗 2525134
+𡵘 2523513
+𡵙 2523552
+𡵚 2523432
+𡵛 2523434
+𡵜 2523112
+𡵝 2523434
+𡵞 2521112
+𡵟 2525215
+𡵠 2534252
+𡵡 4134252
+𡵢 2521354
+𡵣 3121252
+𡵤 2521252
+𡵥 2521523
+𡵦 2521354
+𡵧 2521135
+𡵨 2522154
+𡵩 2121252
+𡵪 3541252
+𡵫 2523215
+𡵬 2521234
+𡵭 1525252
+𡵮 2521554
+𡵯 2522343
+𡵰 2522534
+𡵱 2523312
+𡵲 2523134
+𡵳 2523553
+𡵴 2523454
+𡵵 2523512
+𡵶 3533252
+𡵷 2523535
+𡵸 2525134
+𡵹 3535252
+𡵺 2523554
+𡵻 2524135
+𡵼 2524334
+𡵽 5121252
+𡵾 5215252
+𡵿 5255545
+𡶀 2522534
+𡶁 2521525
+𡶂 2521311
+𡶃 25235135
+𡶄 25235515
+𡶅 25212515
+𡶆 25212515
+𡶇 45434252
+𡶈 25225134
+𡶉 2523454
+𡶊 25231525
+𡶋 25251335
+𡶌 25213251
+𡶍 25234415
+𡶎 25211234
+𡶏 25252252
+𡶐 25253251
+𡶑 25212211
+𡶒 25251532
+𡶓 2525252
+𡶔 25213534
+𡶕 52134252
+𡶖 25213344
+𡶗 25251515
+𡶘 51515252
+𡶙 25213534
+𡶚 25225121
+𡶛 25221124
+𡶜 25233124
+𡶝 25225251
+𡶞 25235444
+𡶟 25235455
+𡶠 31431252
+𡶡 25243112
+𡶢 25225135
+𡶣 25234354
+𡶤 25235112
+𡶥 25253251
+𡶦 25232121
+𡶧 25241431
+𡶨 25213312
+𡶩 25221252
+𡶪 13251252
+𡶫 252325151
+𡶬 253434252
+𡶭 252113222
+𡶮 252453115
+𡶯 252325341
+𡶰 252121315
+𡶱 252341354
+𡶲 252531234
+𡶳 533541252
+𡶴 252414313
+𡶵 252122134
+𡶶 252354152
+𡶷 252354152
+𡶸 251252252
+𡶹 252554115
+𡶺 252351252
+𡶻 252445521
+𡶼 252125351
+𡶽 252525341
+𡶾 252132511
+𡶿 252234234
+𡷀 243135252
+𡷁 252344134
+𡷂 252354251
+𡷃 252351154
+𡷄 252351121
+𡷅 252121121
+𡷆 125111252
+𡷇 251251252
+𡷈 252252252
+𡷉 252344432
+𡷊 325415252
+𡷋 252345435
+𡷌 252252211
+𡷍 252441121
+𡷎 252445112
+𡷏 252511112
+𡷐 252511534
+𡷑 252113534
+𡷒 211151252
+𡷓 252134132
+𡷔 252351234
+𡷕 2525133115
+𡷖 2521251112
+𡷗 2524451135
+𡷘 2522515322
+𡷙 252511352
+𡷚 2522125111
+𡷛 2522511112
+𡷜 2521341121
+𡷝 2521221115
+𡷞 2525154544
+𡷟 2521121132
+𡷠 2521213554
+𡷡 2522513541
+𡷢 2524154544
+𡷣 2523411234
+𡷤 2522511134
+𡷥 3121251252
+𡷦 5115452252
+𡷧 2522513415
+𡷨 2521555121
+𡷩 3123434152
+𡷪 2522521134
+𡷫 252135534
+𡷬 2522523415
+𡷭 2523525135
+𡷮 2524125154
+𡷯 2521234341
+𡷰 2521311534
+𡷱 2525133115
+𡷲 2521214135
+𡷳 2521351134
+𡷴 2522523415
+𡷵 2522511234
+𡷶 2522523412
+𡷷 2525132534
+𡷸 2521213521
+𡷹 2522511135
+𡷺 122234252
+𡷻 2521234252
+𡷼 2521234252
+𡷽 2521251234
+𡷾 2521253511
+𡷿 2522512134
+𡸀 2522534251
+𡸁 311221252
+𡸂 252342234
+𡸃 2523414431
+𡸄 2523434121
+𡸅 2525153134
+𡸆 2525211252
+𡸇 2523541234
+𡸈 2522511431
+𡸉 2523123422
+𡸊 2523525135
+𡸋 2522534341
+𡸌 2523241121
+𡸍 2522525154
+𡸎 2525115452
+𡸏 2523241431
+𡸐 2525233553
+𡸑 25225113533
+𡸒 25235131344
+𡸓 52234343434
+𡸔 25235121121
+𡸕 25244535515
+𡸖 25225111234
+𡸗 25212511125
+𡸘 25212211154
+𡸙 25225312341
+𡸚 25215341534
+𡸛 25234153534
+𡸜 25212251111
+𡸝 25241353412
+𡸞 25235321511
+𡸟 25255525121
+𡸠 25232515112
+𡸡 13251251252
+𡸢 25232151135
+𡸣 25232151135
+𡸤 25252131534
+𡸥 25244535455
+𡸦 25225115134
+𡸧 51515252252
+𡸨 25212211154
+𡸩 25243113455
+𡸪 25212515112
+𡸫 25231133112
+𡸬 25232515151
+𡸭 2155121252
+𡸮 25251124134
+𡸯 25234431234
+𡸰 25245134153
+𡸱 25243342511
+𡸲 25212511125
+𡸳 25212122135
+𡸴 25234125134
+𡸵 25234435112
+𡸶 25244511234
+𡸷 25212211134
+𡸸 12511214252
+𡸹 25212524134
+𡸺 25211213511
+𡸻 25212343432
+𡸼 25212125112
+𡸽 25212251111
+𡸾 25225125115
+𡸿 25225125252
+𡹀 25234543134
+𡹁 31221115252
+𡹂 25234434512
+𡹃 25212135354
+𡹄 25212155121
+𡹅 12155121252
+𡹆 25212155414
+𡹇 25212341234
+𡹈 25215112134
+𡹉 25221211254
+𡹊 25225111134
+𡹋 25225114134
+𡹌 25225113511
+𡹍 52225122511
+𡹎 25225251111
+𡹏 25225522521
+𡹐 25232411121
+𡹑 25234431121
+𡹒 25234342511
+𡹓 25234454544
+𡹔 25235113511
+𡹕 25241345235
+𡹖 25243344334
+𡹗 25244534515
+𡹘 45133134252
+𡹙 25251145252
+𡹚 12341234252
+𡹛 25213425115
+𡹜 25231234531
+𡹝 25244534121
+𡹞 25241251234
+𡹟 25212344535
+𡹠 25244525111
+𡹡 25241251234
+𡹢 2523312454
+𡹣 2525212512
+𡹤 25225312341
+𡹥 25235352121
+𡹦 25244512134
+𡹧 25221123454
+𡹨 25225114554
+𡹩 12512554252
+𡹪 25215251541
+𡹫 252351325251
+𡹬 252251225251
+𡹭 252445154121
+𡹮 252341251132
+𡹯 25225251154
+𡹰 252121254523
+𡹱 252554444115
+𡹲 252521343541
+𡹳 25235541554
+𡹴 252311221234
+𡹵 252325131134
+𡹶 252125115315
+𡹷 25252354152
+𡹸 252353344544
+𡹹 122513541252
+𡹺 252243354122
+𡹻 25213121115
+𡹼 252134111251
+𡹽 252343434345
+𡹾 252251112534
+𡹿 252134125435
+𡺀 252445354251
+𡺁 252512115154
+𡺂 252451325122
+𡺃 252412354124
+𡺄 252123411534
+𡺅 25251111254
+𡺆 52133511252
+𡺇 25252325151
+𡺈 252414312511
+𡺉 252132511211
+𡺊 252343425111
+𡺋 252132511134
+𡺌 252352534134
+𡺍 252312511211
+𡺎 252352513444
+𡺏 252311343534
+𡺐 25212132511
+𡺑 252122151234
+𡺒 252135151534
+𡺓 252153532511
+𡺔 251112134252
+𡺕 252251113453
+𡺖 252255455452
+𡺗 252311325111
+𡺘 252312344334
+𡺙 252325112534
+𡺚 252431253511
+𡺛 252343434342
+𡺜 25234531554
+𡺝 252351331134
+𡺞 252414312511
+𡺟 252445125111
+𡺠 252451251112
+𡺡 252535425221
+𡺢 252251113422
+𡺣 252412514512
+𡺤 252351251214
+𡺥 252251125214
+𡺦 252535425221
+𡺧 355113134252
+𡺨 252521251152
+𡺩 25225525251
+𡺪 2524511353334
+𡺫 2523443321511
+𡺬 2524313425221
+𡺭 2521212511134
+𡺮 2521335415215
+𡺯 2523541311252
+𡺰 252524143112
+𡺱 2525452335453
+𡺲 252525435354
+𡺳 2135331353352
+𡺴 2524453552252
+𡺵 2523443533123
+𡺶 4451122134252
+𡺷 2521325111354
+𡺸 2521213352511
+𡺹 2524311343112
+𡺺 2523251113515
+𡺻 2521325154121
+𡺼 2523251111234
+𡺽 2521224312511
+𡺾 2523241112112
+𡺿 2525212135354
+𡻀 2522523541112
+𡻁 2523211251154
+𡻂 2521121132511
+𡻃 2521212511134
+𡻄 2522511121124
+𡻅 2523251115252
+𡻆 2523251113412
+𡻇 2523251111112
+𡻈 2521113431234
+𡻉 2521122125211
+𡻊 2521215425221
+𡻋 2522512453541
+𡻌 2522521311534
+𡻍 2522523121534
+𡻎 2523241112153
+𡻏 2523434125435
+𡻐 2523454541541
+𡻑 2524513533434
+𡻒 5452335453252
+𡻓 2523241431251
+𡻔 2524414511534
+𡻕 2521311234534
+𡻖 2522512511134
+𡻗 2521525111534
+𡻘 25243112125221
+𡻙 2524125152152
+𡻚 25241351124134
+𡻛 25213241112112
+𡻜 25244535154121
+𡻝 25255525111234
+𡻞 25225121122112
+𡻟 25212122511134
+𡻠 25241312214444
+𡻡 25234151253511
+𡻢 25225121431121
+𡻣 25231234354354
+𡻤 41312351235252
+𡻥 25241312341234
+𡻦 25225225213251
+𡻧 12514311254252
+𡻨 25241352513534
+𡻩 25225112522154
+𡻪 25254154134333
+𡻫 25241251251251
+𡻬 25241533131134
+𡻭 25225121554234
+𡻮 25235132515215
+𡻯 25213434343434
+𡻰 25235415411234
+𡻱 25225121554234
+𡻲 2521342535251
+𡻳 2524125152152
+𡻴 2525212135354
+𡻵 25231251251251
+𡻶 25244111213134
+𡻷 25213211234534
+𡻸 25212211134121
+𡻹 25212123541112
+𡻺 25212213545252
+𡻻 25221531534312
+𡻼 25223425121132
+𡻽 25225121532341
+𡻾 2522541341252
+𡻿 25234112431252
+𡼀 25234343434112
+𡼁 2524134522554
+𡼂 25241352211535
+𡼃 25244153254531
+𡼄 25244534154121
+𡼅 25212211135352
+𡼆 25221531535435
+𡼇 25232534134354
+𡼈 25212143112354
+𡼉 31251121153252
+𡼊 252545454554234
+𡼋 252134125122154
+𡼌 252445112213455
+𡼍 252441251113533
+𡼎 252121252431251
+𡼏 252511225112511
+𡼐 351525113134252
+𡼑 252251251251115
+𡼒 252125221251112
+𡼓 252431253511134
+𡼔 252121132511134
+𡼕 252324111212525
+𡼖 412515213134252
+𡼗 252325111111112
+𡼘 252252252343415
+𡼙 252343434342115
+𡼚 251251252251251
+𡼛 252132511451534
+𡼜 252112135113511
+𡼝 2521212122511134
+𡼞 2521213251152
+𡼟 252125221134515
+𡼠 252554554134534
+𡼡 252254312114444
+𡼢 252511121251124
+𡼣 2525112321155212
+𡼤 252251251251112
+𡼥 252511225113511
+𡼦 252445112343134
+𡼧 252513241343112
+𡼨 252123412341234
+𡼩 252251141251234
+𡼪 252314314341251
+𡼫 252113411342511
+𡼬 252125221251112
+𡼭 252134125123534
+𡼮 252251141251234
+𡼯 251251251112252
+𡼰 252252251251115
+𡼱 252255212511521
+𡼲 252341124313534
+𡼳 252432524312511
+𡼴 252343421325111
+𡼵 252431234354152
+𡼶 252545454342444
+𡼷 252433425114334
+𡼸 252314314511112
+𡼹 252123412134354
+𡼺 252315541411234
+𡼻 312122152325151
+𡼼 252122511123511
+𡼽 252341511543534
+𡼾 2523412524312511
+𡼿 2524453551352252
+𡽀 2523444445235354
+𡽁 2523251114143112
+𡽂 2521212514311254
+𡽃 521312113121252
+𡽄 2523251141533134
+𡽅 252451251112454
+𡽆 2524451225111134
+𡽇 2521212251125214
+𡽈 2525132413452252
+𡽉 25241432533543211
+𡽊 2522434525125121
+𡽋 252452451124134
+𡽌 1212514311254252
+𡽍 2522512211251431
+𡽎 2523411243112211
+𡽏 2521325223525135
+𡽐 2521354154134333
+𡽑 252251251115151
+𡽒 2521234125212341
+𡽓 2522524311213121
+𡽔 2522534343434121
+𡽕 2523251114143112
+𡽖 2523525112533112
+𡽗 2523412513425134
+𡽘 2522512121354251
+𡽙 2522511353453534
+𡽚 3411234252252252
+𡽛 2521325132411121
+𡽜 25231234224111251
+𡽝 25212124125125251
+𡽞 252251212112212511
+𡽟 25241354154134333
+𡽠 25253254132511134
+𡽡 25235251353525135
+𡽢 25254154132411121
+𡽣 25213251135411344
+𡽤 25243344334354152
+𡽥 25234341213121534
+𡽦 25241354154134333
+𡽧 25213121121121135
+𡽨 25212211154323334
+𡽩 25212125145154121
+𡽪 25233215542343134
+𡽫 25253112512343134
+𡽬 3211152511134252
+𡽭 25254545434554234
+𡽮 25212125253414444
+𡽯 25231234312511211
+𡽰 25255444432411121
+𡽱 25212132411121534
+𡽲 25212344143454153
+𡽳 25212512531425221
+𡽴 25213513125125534
+𡽵 25222431431121124
+𡽶 25232511125121132
+𡽷 25232515112135135
+𡽸 25234431215114544
+𡽹 25234454132511134
+𡽺 35341112511344252
+𡽻 25244112511123312
+𡽼 25244241541221234
+𡽽 25225243143344334
+𡽾 25212512531425221
+𡽿 25225225244511234
+𡾀 25225234343434115
+𡾁 2524415425112454
+𡾂 2521325114521212154
+𡾃 252234324111211534
+𡾄 252251125125313134
+𡾅 252215315251214544
+𡾆 252354251132511134
+𡾇 252413122112512134
+𡾈 252445353251113515
+𡾉 252413123512353112
+𡾊 252251212512125121
+𡾋 252251212512125121
+𡾌 252413522115154444
+𡾍 252342511342511234
+𡾎 134334251113533252
+𡾏 252132511325113251
+𡾐 252212134341343452
+𡾑 252323434343413121
+𡾒 252325115545541234
+𡾓 252513432524312511
+𡾔 251212512125121252
+𡾕 252252441251113533
+𡾖 25213251325113554
+𡾗 25225225212225134
+𡾘 2524125125251125112
+𡾙 2521251251122512511
+𡾚 2524544454445441234
+𡾛 2523251213554431132
+𡾜 2521452413432411121
+𡾝 2524125221241343534
+𡾞 2524311213123415534
+𡾟 2522153152252111534
+𡾠 252215315224311534
+𡾡 2522431352431352511
+𡾢 2524453121252214544
+𡾣 2521251431132511134
+𡾤 2525132514143112521
+𡾥 2522511112343554234
+𡾦 2522523251514143112
+𡾧 2523241112151122511
+𡾨 2524125221241343534
+𡾩 4143135411515111252
+𡾪 2525151251211251211
+𡾫 2523123453132511134
+𡾬 2523143141211254444
+𡾭 2524134125251131234
+𡾮 25235251214444431112
+𡾯 2525234431215114544
+𡾰 25244511221342512134
+𡾱 25251513425234343434
+𡾲 25212123251514143112
+𡾳 25255444432535414544
+𡾴 25234125125134343534
+𡾵 2523251135543241431
+𡾶 25241332324111214544
+𡾷 25213132511325113251
+𡾸 25225111342511134531
+𡾹 25232515141431121234
+𡾺 25234341211121111534
+𡾻 25213513125125534
+𡾼 252324111213241112154
+𡾽 252554444432524312511
+𡾾 252341124313251213554
+𡾿 252111221112521251431
+𡿀 252252324111212534251
+𡿁 312345313251213554252
+𡿂 252445112345552511211
+𡿃 252445354251132511134
+𡿄 25212213513125125534
+𡿅 252251125214132511134
+𡿆 25232511355431234531
+𡿇 2522522155444432411121
+𡿈 2521325113251132511234
+𡿉 1212251212512125121252
+𡿊 1221251113432411121252
+𡿋 2521212251125214251214
+𡿌 2522111211141312341234
+𡿍 2523121353121352511134
+𡿎 252413452255432411121
+𡿏 2522522155444432411121
+𡿐 2524131234123421112111
+𡿑 2523535112431234354152
+𡿒 2521223251514143112521
+𡿓 25224345251254312114444
+𡿔 252251212512125121554234
+𡿕 25221531512512543121554
+𡿖 252111253212134341343452
+𡿗 25212232515141431121234
+𡿘 252252554444432524312511
+𡿙 252344355413432511154444
+𡿚 25212232511121215153554
+𡿛 252131325113251132511234
+𡿜 252251212512125121554234
+𡿝 2521251245251251112213534
+𡿞 2524111251554444554444515
+𡿟 2521212325111212151534354
+𡿠 25235251214444431234354152
+𡿡 252145241342512512511234341
+𡿢 2523251512121511452523525135
+𡿣 252411125135251151535251354
+𡿤 212134251134121252251252251
+𡿥 25212343112521234453444445215333
+𡿦 333444
+𡿧 5551
+𡿨 5
+𡿩 555251
+𡿪 555354
+𡿫 415322
+𡿬 345555
+𡿭 555555
+𡿮 154555
+𡿯 2511555
+𡿰 1211555
+𡿱 15553121
+𡿲 55535112
+𡿳 55535112
+𡿴 12111555
+𡿵 55512251
+𡿶 55512341
+𡿷 555251251
+𡿸 555125341
+𡿹 555251522
+𡿺 555325341
+𡿻 325221555
+𡿼 5552522112
+𡿽 3332121555
+𡿾 55532411121
+𡿿 12511555534
+𢀀 55532115115
+𢀁 555135413344
+𢀂 55525343524134
+𢀃 121351251112555
+𢀄 3112525552515215
+𢀅 5552534312155212
+𢀆 5553525143344334
+𢀇 555325341211153435
+𢀈 555253412211154535
+𢀉 5552534121115325251
+𢀊 5552511123421531534
+𢀋 55525111234215315252
+𢀌 5552511123455525111234
+𢀍 2511412512345552515215
+𢀎 325115553251155532511555
+𢀏 555321132534151132151125214
+𢀐 55525341554234554234211153435
+𢀑 1251
+𢀒 1215
+𢀓 1251
+𢀔 1215
+𢀕 1215
+𢀖 54121
+𢀗 12125
+𢀘 12132
+𢀙 12152
+𢀚 121111
+𢀛 121251
+𢀜 1215311
+𢀝 1243123
+𢀞 1215113
+𢀟 55453121
+𢀠 311313121
+𢀡 1312113121
+𢀢 1212511135
+𢀣 12343415354
+𢀤 121321113554
+𢀥 1515111352
+𢀦 151535133312
+𢀧 151534125122
+𢀨 151545115452
+𢀩 323434343413121
+𢀪 121125234343434
+𢀫 155512132312135
+𢀬 15154511543511
+𢀭 1515122511123511
+𢀮 41252511312341515
+𢀯 121352511125111121
+𢀰 12125251112511134121
+𢀱 15153525121444431234
+𢀲 15151251234352511134
+𢀳 5115
+𢀴 33515
+𢀵 515515
+𢀶 515515
+𢀷 52534515
+𢀸 21354515
+𢀹 325151515
+𢀺 113452515
+𢀻 431134515
+𢀼 1221345215
+𢀽 3332121515
+𢀾 5211534515
+𢀿 5253415215
+𢁀 12213435515
+𢁁 13533435515
+𢁂 12211134515
+𢁃 25225234515
+𢁄 12131134515
+𢁅 515515313312
+𢁆 414345252515
+𢁇 521115345215
+𢁈 251112134515
+𢁉 515515122134
+𢁊 5215121112154
+𢁋 5215121112154
+𢁌 515515112112134
+𢁍 5215344335554444
+𢁎 51512221555251153
+𢁏 3121251325221515
+𢁐 251212512125121515
+𢁑 52151251234352511134
+𢁒 25235
+𢁓 13252
+𢁔 54252
+𢁕 252354
+𢁖 252134
+𢁗 252112
+𢁘 252333
+𢁙 354252
+𢁚 252111
+𢁛 133252
+𢁜 252124
+𢁝 252252
+𢁞 252353
+𢁟 354252
+𢁠 252515
+𢁡 252554
+𢁢 252115
+𢁣 252415
+𢁤 252354
+𢁥 3553252
+𢁦 2521515
+𢁧 2523534
+𢁨 5113252
+𢁩 2522534
+𢁪 2525134
+𢁫 3434252
+𢁬 2523324
+𢁭 3411252
+𢁮 2523415
+𢁯 2522511
+𢁰 3443252
+𢁱 2523134
+𢁲 2525435
+𢁳 1354252
+𢁴 1554252
+𢁵 2522154
+𢁶 2522554
+𢁷 2523454
+𢁸 2524153
+𢁹 3211252
+𢁺 3315252
+𢁻 25213252
+𢁼 25244512
+𢁽 25245434
+𢁾 25253251
+𢁿 25212121
+𢂀 25251532
+𢂁 25235251
+𢂂 34154252
+𢂃 25231211
+𢂄 25241554
+𢂅 25255453
+𢂆 25232124
+𢂇 14345252
+𢂈 25225111
+𢂉 25212521
+𢂊 25255453
+𢂋 41251252
+𢂌 25232154
+𢂍 2523523
+𢂎 25225121
+𢂏 12521252
+𢂐 252535353
+𢂑 2521121534
+𢂒 252151534
+𢂓 252251251
+𢂔 252122134
+𢂕 252351355
+𢂖 211151252
+𢂗 35152252
+𢂘 252341121
+𢂙 4154325252
+𢂚 412511252
+𢂛 125231354
+𢂜 511313252
+𢂝 252251153
+𢂞 343413252
+𢂟 535451252
+𢂠 415325252
+𢂡 252125111
+𢂢 252121315
+𢂣 252132521
+𢂤 125213544
+𢂥 252135422
+𢂦 212511252
+𢂧 252323121
+𢂨 335335252
+𢂩 252415555
+𢂪 415555252
+𢂫 511335252
+𢂬 531543252
+𢂭 525454252
+𢂮 252312135
+𢂯 123434252
+𢂰 252355112
+𢂱 2522513541
+𢂲 2523434251
+𢂳 2523155414
+𢂴 2521214544
+𢂵 2521132534
+𢂶 2522535251
+𢂷 41252341251
+𢂸 1221351252
+𢂹 2523251135
+𢂺 2135454252
+𢂻 2525344544
+𢂼 1213312252
+𢂽 2525113251
+𢂾 2521212415
+𢂿 2521343434
+𢃀 2521234341
+𢃁 3252533252
+𢃂 5315433252
+𢃃 2511153252
+𢃄 1221545252
+𢃅 2524131234
+𢃆 5113251252
+𢃇 2522511211
+𢃈 2521121132
+𢃉 2522515322
+𢃊 1325251251
+𢃋 2512511252
+𢃌 21211513252
+𢃍 25232511312
+𢃎 25212511534
+𢃏 25244511234
+𢃐 25244535121
+𢃑 25225112511
+𢃒 25241343412
+𢃓 25212343554
+𢃔 25243344334
+𢃕 25225342511
+𢃖 25235121251
+𢃗 25252413452
+𢃘 35133134252
+𢃙 25244525151
+𢃚 25225111515
+𢃛 12211134252
+𢃜 25212251111
+𢃝 21123454252
+𢃞 25251145252
+𢃟 25212212511
+𢃠 25225354441
+𢃡 25225113533
+𢃢 25211212511
+𢃣 25212211154
+𢃤 12511534252
+𢃥 12512554252
+𢃦 25225111234
+𢃧 25235544544
+𢃨 25241331134
+𢃩 25243113455
+𢃪 12343454252
+𢃫 252113434345
+𢃬 431351122252
+𢃭 252353344544
+𢃮 252132522111
+𢃯 252543341134
+𢃰 252251112134
+𢃱 252122111234
+𢃲 252122125112
+𢃳 511452525215
+𢃴 125123422252
+𢃵 321151135252
+𢃶 252112155414
+𢃷 252252252252
+𢃸 252312344334
+𢃹 252535354252
+𢃺 325112523554
+𢃻 135331354252
+𢃼 252521325111
+𢃽 252125221531
+𢃾 252132522134
+𢃿 252125431234
+𢄀 145252145252
+𢄁 224314311252
+𢄂 251115341252
+𢄃 252441333534
+𢄄 523125225111
+𢄅 252114334534
+𢄆 523523145252
+𢄇 325112523554
+𢄈 252414312511
+𢄉 135354454252
+𢄊 2523251213554
+𢄋 4334433445252
+𢄌 25234123543554
+𢄍 2521215425221
+𢄎 2524143454153
+𢄏 4451122134252
+𢄐 2524511353334
+𢄑 252431134252
+𢄒 2524513541541
+𢄓 2523251154444
+𢄔 3112213545252
+𢄕 3441344452252
+𢄖 2512153334252
+𢄗 3251125225251
+𢄘 1353334454252
+𢄙 2522512511134
+𢄚 3211511354252
+𢄛 2525155115251
+𢄜 2525425431121
+𢄝 3251125235515
+𢄞 4312343134252
+𢄟 2525425112454
+𢄠 25212512512515
+𢄡 11234313413252
+𢄢 12135121354252
+𢄣 25211121112511
+𢄤 12511123312252
+𢄥 51135252511252
+𢄦 25232511154444
+𢄧 41533131134252
+𢄨 25244512512134
+𢄩 25212213545252
+𢄪 25254154134333
+𢄫 4143452521515
+𢄬 12452521245252
+𢄭 25254154132511
+𢄮 54522534333252
+𢄯 25231554143134
+𢄰 25235443121251
+𢄱 2521251112454
+𢄲 41533152134252
+𢄳 25213412132511
+𢄴 252413543543534
+𢄵 25235251353334
+𢄶 252511121251211
+𢄷 252134432511234
+𢄸 252251112211154
+𢄹 252313425125251
+𢄺 252324111214444
+𢄻 252122125113134
+𢄼 333132511134252
+𢄽 252111251113454
+𢄾 251111252354252
+𢄿 125124513251252
+𢅀 252125221251112
+𢅁 344352132511252
+𢅂 252515121121251
+𢅃 252543341251435
+𢅄 252211215413252
+𢅅 252134315233534
+𢅆 25212225113511
+𢅇 252252522523115
+𢅈 412524125241252
+𢅉 325112523251135
+𢅊 311222214444252
+𢅋 252432524312511
+𢅌 334435554444252
+𢅍 1214513251134252
+𢅎 2523251141533134
+𢅏 2524134315112234
+𢅐 2523412513425134
+𢅑 2523551131344444
+𢅒 2524125251125111
+𢅓 2121252211534252
+𢅔 2522121121325114
+𢅕 252431353334454
+𢅖 252414315112234
+𢅗 25225525251454
+𢅘 252122252214535
+𢅙 2521252342511134
+𢅚 2521252211123422
+𢅛 4143452521354333
+𢅜 5114525251145252
+𢅝 5131221343554252
+𢅞 3251125251124134
+𢅟 25215311345452134
+𢅠 13251135411344252
+𢅡 25212512531125221
+𢅢 25213252445433454
+𢅣 25212125145154121
+𢅤 2521221215425221
+𢅥 25213121251431124
+𢅦 51145252251112134
+𢅧 25255444432511252
+𢅨 25111213451145252
+𢅩 252252215435411515
+𢅪 252132112344544534
+𢅫 252111211125114544
+𢅬 325112521325111134
+𢅭 2521251234352511134
+𢅮 1213512143344334252
+𢅯 2521343241112125121
+𢅰 2525112251132151135
+𢅱 2525151211212514444
+𢅲 1214311243344334252
+𢅳 2524143134315112234
+𢅴 252122252214525111
+𢅵 2513143142522113534
+𢅶 2523143142534115534
+𢅷 12243252343134252
+𢅸 34125125134343134252
+𢅹 25234125125125125122
+𢅺 51111225114131221252
+𢅻 252324111213241112154
+𢅼 2521325111212151534354
+𢅽 252321132534151114334
+𢅾 2522522155444432411121
+𢅿 2521341221123412211234
+𢆀 2522525125111341341121
+𢆁 2523143144134315112234
+𢆂 25241431251134125112222
+𢆃 252431325111212151534354
+𢆄 252121251122511125431234
+𢆅 511121251112122511134252
+𢆆 25212225111212151535354
+𢆇 325115433425212145132511234
+𢆈 332521251152112133354454252
+𢆉 43112
+𢆊 14312
+𢆋 5435112
+𢆌 2113112
+𢆍 1125112
+𢆎 13443112
+𢆏 31124112
+𢆐 13112112
+𢆑 343434112
+𢆒 211113112
+𢆓 132414312
+𢆔 251251112
+𢆕 143123354
+𢆖 1251251112
+𢆗 4311325211
+𢆘 3112123534
+𢆙 5353113112
+𢆚 11321251234
+𢆛 113112431132
+𢆜 251135345112
+𢆝 251112134112
+𢆞 1131121251234
+𢆟 1125231133112
+𢆠 1343423414312
+𢆡 3443521531212
+𢆢 3541515431132
+𢆣 43113241323544
+𢆤 43113455311212
+𢆥 122543112311212
+𢆦 2522111212511234
+𢆧 1214311212343134
+𢆨 1234313412143112
+𢆩 354151531133112
+𢆪 121431121212511211
+𢆫 3112122121131233534
+𢆬 12512341251234113112
+𢆭 555253415445445311212
+𢆮 14312121213513125125534
+𢆯 5542
+𢆰 1554
+𢆱 5554
+𢆲 55453
+𢆳 55452
+𢆴 55455
+𢆵 55451
+𢆶 554554
+𢆷 5542343
+𢆸 5545545
+𢆹 5541154
+𢆺 1535554
+𢆻 55455435
+𢆼 55455454
+𢆽 55422343
+𢆾 35543554
+𢆿 325341554
+𢇀 554513121
+𢇁 5545544444
+𢇂 554554132
+𢇃 5543455434
+𢇄 5544412343
+𢇅 5545542121
+𢇆 3253415542
+𢇇 55455453212
+𢇈 55455413443
+𢇉 5545454124
+𢇊 53251525542
+𢇋 5542251135345
+𢇌 33221212134554
+𢇍 554554155455421
+𢇎 55412113412512
+𢇏 33243324554554
+𢇐 55435251353334
+𢇑 255455452554554
+𢇒 554554134534215
+𢇓 554554134534315
+𢇔 55453251141251234
+𢇕 255455452255455452
+𢇖 5545544134523533134115
+𢇗 413125
+𢇘 413531
+𢇙 413154
+𢇚 413525
+𢇛 413112
+𢇜 413415
+𢇝 413554
+𢇞 413251
+𢇟 413135
+𢇠 413315
+𢇡 413115
+𢇢 413252
+𢇣 4133534
+𢇤 4132534
+𢇥 4133512
+𢇦 4133121
+𢇧 4134535
+𢇨 4131554
+𢇩 4131132
+𢇪 4131354
+𢇫 4133454
+𢇬 4131354
+𢇭 4134434
+𢇮 4132154
+𢇯 4133254
+𢇰 4135435
+𢇱 4133415
+𢇲 41331234
+𢇳 41353254
+𢇴 41313252
+𢇵 41325541
+𢇶 41325121
+𢇷 41313344
+𢇸 41312215
+𢇹 41332121
+𢇺 41325251
+𢇻 41331134
+𢇼 41335155
+𢇽 41312154
+𢇾 41312211
+𢇿 41352252
+𢈀 41322431
+𢈁 41334251
+𢈂 41325151
+𢈃 41325235
+𢈄 41332315
+𢈅 41333544
+𢈆 41353251
+𢈇 413312135
+𢈈 413341251
+𢈉 413251251
+𢈊 413311252
+𢈋 413543541
+𢈌 413351355
+𢈍 413431234
+𢈎 413122134
+𢈏 413511234
+𢈐 413122135
+𢈑 413353453
+𢈒 413121234
+𢈓 413132511
+𢈔 413251134
+𢈕 413333534
+𢈖 413125211
+𢈗 413251345
+𢈘 413512234
+𢈙 4131343434
+𢈚 4132513251
+𢈛 4132512341
+𢈜 4135213121
+𢈝 4131241344
+𢈞 4132125511
+𢈟 4135431134
+𢈠 4131251234
+𢈡 4135435354
+𢈢 4132512512
+𢈣 4133253541
+𢈤 4131525112
+𢈥 4132511135
+𢈦 4133541112
+𢈧 4134121254
+𢈨 4132121233
+𢈩 4131212134
+𢈪 4131251251
+𢈫 4131311534
+𢈬 4131225111
+𢈭 4132433541
+𢈮 4132512134
+𢈯 4133251113
+𢈰 4135113412
+𢈱 4133123422
+𢈲 4132511521
+𢈳 41335544544
+𢈴 41341251234
+𢈵 41344535121
+𢈶 41321531535
+𢈷 41325121132
+𢈸 41334154544
+𢈹 41332515112
+𢈺 41341252511
+𢈻 41315112134
+𢈼 41341343412
+𢈽 41315341534
+𢈾 41312211154
+𢈿 41312511534
+𢉀 41312524134
+𢉁 41335113511
+𢉂 41344525151
+𢉃 41334112251
+𢉄 41334153534
+𢉅 41334112431
+𢉆 41351111254
+𢉇 41331342134
+𢉈 41312125152
+𢉉 41313443121
+𢉊 4134143154
+𢉋 41331123511
+𢉌 41321123454
+𢉍 41321214444
+𢉎 41352131254
+𢉏 41334431354
+𢉐 41331154444
+𢉑 41311212511
+𢉒 41324325251
+𢉓 41331121215
+𢉔 41332541234
+𢉕 41335251354
+𢉖 41352215454
+𢉗 41352251541
+𢉘 41343344334
+𢉙 41312214334
+𢉚 41334435215
+𢉛 413353344544
+𢉜 41312132511
+𢉝 413251211534
+𢉞 413351325122
+𢉟 413332511534
+𢉠 413325125214
+𢉡 413325431134
+𢉢 413122513541
+𢉣 413322511234
+𢉤 413532511234
+𢉥 413251135345
+𢉦 413451251112
+𢉧 413121225111
+𢉨 413125123422
+𢉩 413414312511
+𢉪 4131212151234
+𢉫 413511251234
+𢉬 413125221121
+𢉭 413431353334
+𢉮 413122111355
+𢉯 413152511134
+𢉰 413251251121
+𢉱 413122125121
+𢉲 413354111251
+𢉳 41312213251
+𢉴 413251112134
+𢉵 413252252252
+𢉶 413321241134
+𢉷 413431253511
+𢉸 413332134334
+𢉹 413445541234
+𢉺 413522125111
+𢉻 413522153251
+𢉼 413511343511
+𢉽 413123412251
+𢉾 413255455452
+𢉿 4131211254444
+𢊀 4133321531535
+𢊁 4135221354444
+𢊂 4131121252511
+𢊃 4131343434121
+𢊄 4133241112154
+𢊅 413325151454
+𢊆 4133123431234
+𢊇 4135221413534
+𢊈 4134453434354
+𢊉 4133121252511
+𢊊 4131344325115
+𢊋 4131122134354
+𢊌 4134134343541
+𢊍 4131251431124
+𢊎 4132111211134
+𢊏 4131112533115
+𢊐 4133321531534
+𢊑 4131221325112
+𢊒 4133212344444
+𢊓 4132342342511
+𢊔 4133525353334
+𢊕 41332533414544
+𢊖 41344145351234
+𢊗 41312122511134
+𢊘 41313113453554
+𢊙 41334153435251
+𢊚 41333221212134
+𢊛 41325232411121
+𢊜 41351512111534
+𢊝 41352343344334
+𢊞 41354154134252
+𢊟 41352132511134
+𢊠 41312341234251
+𢊡 41313242511135
+𢊢 41312341234112
+𢊣 41312522111234
+𢊤 41325221113544
+𢊥 41324345251252
+𢊦 41334342513534
+𢊧 41335251214444
+𢊨 41353154554234
+𢊩 41354252211535
+𢊪 41351134431234
+𢊫 41312141431251
+𢊬 41325251111234
+𢊭 413431134413534
+𢊮 413251212511134
+𢊯 413344335554444
+𢊰 413122135413134
+𢊱 413121222511134
+𢊲 413123412341234
+𢊳 4132121151251234
+𢊴 413341251251251
+𢊵 413325112511312
+𢊶 413123512353541
+𢊷 413111342511134
+𢊸 413252211131234
+𢊹 413541342511134
+𢊺 413121525125121
+𢊻 413321151134234
+𢊼 413333132511134
+𢊽 413433443344334
+𢊾 413321242511134
+𢊿 413343425221354
+𢋀 4132121354111251
+𢋁 413212511153554
+𢋂 413251112132511
+𢋃 4134125251125111
+𢋄 413324111212525
+𢋅 4133413511223534
+𢋆 4134143125113534
+𢋇 4132522112143112
+𢋈 4133525121131234
+𢋉 4133123435234531
+𢋊 4134155332411121
+𢋋 4133322521353134
+𢋌 4133434251251354
+𢋍 4131221342511134
+𢋎 4131234123411234
+𢋏 4131325221111234
+𢋐 4134134342511134
+𢋑 41331122221354152
+𢋒 41321213241112154
+𢋓 41312212513443121
+𢋔 41313412512512515
+𢋕 41343125251111234
+𢋖 41351132514143112
+𢋗 41332324111214334
+𢋘 41355444432411121
+𢋙 41312341234251214
+𢋚 41312351235453541
+𢋛 41332511125121132
+𢋜 41332511312251214
+𢋝 4133251135541234
+𢋞 41334454132511134
+𢋟 41351221153531234
+𢋠 41434525241335154
+𢋡 413352512144442511
+𢋢 413134342341252511
+𢋣 413132511454544354
+𢋤 413123412344544354
+𢋥 413321532511154444
+𢋦 413123434125234341
+𢋧 413132511325113251
+𢋨 413254312114444121
+𢋩 41332324111211554
+𢋪 413522134321151134
+𢋫 413541541342511134
+𢋬 413123425232411121
+𢋭 413121225112521454
+𢋮 4131234123425113134
+𢋯 4133151123431511234
+𢋰 4133112222112341234
+𢋱 522524135221154444
+𢋲 4131234123444512134
+𢋳 4131221444441343412
+𢋴 1221354525241335154
+𢋵 4135221121225312341
+𢋶 4135132514143112521
+𢋷 4131251234352511134
+𢋸 4132111525121122134
+𢋹 4132121123421211234
+𢋺 4135221344444521554
+𢋻 41334125125134343134
+𢋼 41321531512514311534
+𢋽 4132153152512135452
+𢋾 41312343434341252511
+𢋿 41341432533543211234
+𢌀 41312143112354413534
+𢌁 41312341234211121111
+𢌂 41313251125112511354
+𢌃 41334125125134343534
+𢌄 413251112511132411121
+𢌅 41325431211444412152
+𢌆 413251112251214251214
+𢌇 413522115444444112154
+𢌈 413413452255432411121
+𢌉 4131325111321151134354
+𢌊 413122125121341121132
+𢌋 4131341221123412211234
+𢌌 112113241312212512134
+𢌍 41343151122344315112234
+𢌎 4131223251514143112521
+𢌏 41324325251521532411121
+𢌐 41312512343134211121111
+𢌑 41312341234211121111234
+𢌒 413125341253441352211515
+𢌓 41341251252511431122515215
+𢌔 413145241342512512511234341
+𢌕 413411125155444455444452212
+𢌖 4131211221113121122522114544
+𢌗 1254
+𢌘 33354
+𢌙 31254
+𢌚 25254
+𢌛 1212154
+𢌜 311354
+𢌝 3433354
+𢌞 2551554
+𢌟 54154154
+𢌠 125112454
+𢌡 254325154
+𢌢 354111254
+𢌣 323121154
+𢌤 55111124
+𢌥 251312154
+𢌦 3121313454
+𢌧 2121251154
+𢌨 21212511154
+𢌩 12522112154
+𢌪 25111212154
+𢌫 121212511154
+𢌬 135
+𢌭 1324
+𢌮 41132
+𢌯 34132
+𢌰 133341
+𢌱 151132
+𢌲 252132
+𢌳 3544132
+𢌴 515515132
+𢌵 1534132
+𢌶 1234132
+𢌷 2534132
+𢌸 4134132
+𢌹 5454132
+𢌺 2534132
+𢌻 12135132
+𢌼 52534132
+𢌽 13221322
+𢌾 13443132
+𢌿 25121132
+𢍀 25151132
+𢍁 25121132
+𢍂 325111132
+𢍃 313412132
+𢍄 325341132
+𢍅 352534132
+𢍆 111253132
+𢍇 121515132
+𢍈 135435132
+𢍉 325151132
+𢍊 431134132
+𢍋 432511132
+𢍌 122341132
+𢍍 32553341132
+𢍎 3121251132
+𢍏 3431234132
+𢍐 1215512132
+𢍑 3232511132
+𢍒 3233334132
+𢍓 4125111132
+𢍔 45342511132
+𢍕 43113455132
+𢍖 31251211322
+𢍗 13543134132
+𢍘 32511221132
+𢍙 32534341132
+𢍚 124525121132
+𢍛 112343134132
+𢍜 351253511132
+𢍝 551353334132
+𢍞 115425121132
+𢍟 511121251132
+𢍠 121121354132
+𢍡 441341251132
+𢍢 325431234132
+𢍣 1121554234132
+𢍤 1344325115132
+𢍥 4315233511132
+𢍦 13434251251132
+𢍧 25221413534132
+𢍨 43123412154132
+𢍩 34342534341132
+𢍪 35441251431132
+𢍫 15135132341132
+𢍬 251522512511132
+𢍭 252515413254132
+𢍮 1234251342511132
+𢍯 3211251251511132
+𢍰 2522112143112132
+𢍱 3211325341511132
+𢍲 32111253511511132
+𢍳 13251111235111132
+𢍴 52251211225125132
+𢍵 1121554234554234132
+𢍶 4111251554444554444132
+𢍷 21211331234312342511132
+𢍸 352512144442121352513134132
+𢍹 32113253415113211325341511132
+𢍺 154
+𢍻 1554
+𢍼 1154
+𢍽 135154
+𢍾 111554
+𢍿 5213154
+𢎀 1543511
+𢎁 1134554
+𢎂 1343454
+𢎃 1251154
+𢎄 12512154
+𢎅 15435251
+𢎆 115412154
+𢎇 121311254
+𢎈 112511154
+𢎉 131231254
+𢎊 541234154
+𢎋 1234251154
+𢎌 1221132154
+𢎍 35511112154
+𢎎 543541112154
+𢎏 1115412523434
+𢎐 1311251113454
+𢎑 12512112213454
+𢎒 432524312511154
+𢎓 3551131344444154
+𢎔 11212154251135345
+𢎕 212134341343452154
+𢎖 251112511132411121154
+𢎗 515
+𢎘 55
+𢎙 5555
+𢎚 5154
+𢎛 5154
+𢎜 1215
+𢎝 5115
+𢎞 5155
+𢎟 5215
+𢎠 5125
+𢎡 5154
+𢎢 51534
+𢎣 35152
+𢎤 51554
+𢎥 51511
+𢎦 34515
+𢎧 51515
+𢎨 51523
+𢎩 51535
+𢎪 51535
+𢎫 515354
+𢎬 515344
+𢎭 515252
+𢎮 515341
+𢎯 151553
+𢎰 515115
+𢎱 521523
+𢎲 515351
+𢎳 515121
+𢎴 515134
+𢎵 515322
+𢎶 515341
+𢎷 5154153
+𢎸 5151551
+𢎹 5155134
+𢎺 5155542
+𢎻 5155452
+𢎼 5151254
+𢎽 515354
+𢎾 5151134
+𢎿 5153134
+𢏀 5153454
+𢏁 5151554
+𢏂 5153312
+𢏃 3545515
+𢏄 5155152
+𢏅 5154334
+𢏆 51512251
+𢏇 51532515
+𢏈 51525151
+𢏉 51513545
+𢏊 51514312
+𢏋 51544535
+𢏌 51513534
+𢏍 51521515
+𢏎 51525351
+𢏏 51534234
+𢏐 51545354
+𢏑 51543112
+𢏒 31551533
+𢏓 51554134
+𢏔 352511515
+𢏕 515251251
+𢏖 541541515
+𢏗 313112515
+𢏘 112515112
+𢏙 515431112
+𢏚 515121121
+𢏛 515554234
+𢏜 515354354
+𢏝 515515515
+𢏞 515525341
+𢏟 515542534
+𢏠 515441121
+𢏡 515312135
+𢏢 251221515
+𢏣 515251221
+𢏤 5155435354
+𢏥 5152511112
+𢏦 5155431134
+𢏧 5153535112
+𢏨 1213312515
+𢏩 5152533415
+𢏪 1211134515
+𢏫 5152521254
+𢏬 5153434121
+𢏭 5154154325
+𢏮 515312155212
+𢏯 51521531535
+𢏰 51534435112
+𢏱 51532151135
+𢏲 51541541234
+𢏳 515431132
+𢏴 515312121211
+𢏵 51515112134
+𢏶 51512251115
+𢏷 51551352252
+𢏸 51541554234
+𢏹 51544512134
+𢏺 51512534515
+𢏻 35515151533
+𢏼 51512211234
+𢏽 15154451533
+𢏾 51521213534
+𢏿 51544535455
+𢐀 515515125341
+𢐁 515554234515
+𢐂 515251112134
+𢐃 515351325122
+𢐄 515551353334
+𢐅 515333515333
+𢐆 515251251515
+𢐇 515121221234
+𢐈 515515132511
+𢐉 515121152511
+𢐊 5154143455153
+𢐋 5153321531535
+𢐌 5151251234515
+𢐍 5152521353134
+𢐎 5154315112234
+𢐏 5153321531534
+𢐐 5153554234515
+𢐑 5155152534341
+𢐒 51525235113511
+𢐓 51512111534515
+𢐔 51533234342134
+𢐕 51512522111234
+𢐖 51521212511132
+𢐗 51535251214444
+𢐘 51551512111534
+𢐙 12152133554515
+𢐚 51525125115341
+𢐛 51544515112134
+𢐜 51551512534341
+𢐝 51513251112515
+𢐞 515432524312511
+𢐟 515313425125251
+𢐠 515343123425121
+𢐡 515125341125341
+𢐢 515413554541541
+𢐣 515352521353334
+𢐤 515132511132511
+𢐥 5153443311252515
+𢐦 5132514143112515
+𢐧 2121352513134515
+𢐨 5153552335523515
+𢐩 5151221113251214
+𢐪 5152512211311534
+𢐫 5154312345153445
+𢐬 51535444111251515
+𢐭 42511211121515515
+𢐮 51543123425121515
+𢐯 21211213121534515
+𢐰 51514524134132522
+𢐱 1221213121534515
+𢐲 515343123425121515
+𢐳 515121225234343434
+𢐴 515343423434234342
+𢐵 5154111251251251214
+𢐶 515122125234343434
+𢐷 515432524312511515
+𢐸 5152153152512125221
+𢐹 5154125251125111515
+𢐺 51531121212523554515
+𢐻 5154125125112121112
+𢐼 5151213251144334515
+𢐽 2121112515253541121
+𢐾 5151234341554234515
+𢐿 5154125125111213534
+𢑀 51541312341234431234
+𢑁 51512125112321155212
+𢑂 34433112523554234515
+𢑃 51513425234343434121
+𢑄 51535443112523554234
+𢑅 32112512515111515515
+𢑆 515212125125132411121
+𢑇 515212132411121321511
+𢑈 515354141112513554234
+𢑉 354441112513554234515
+𢑊 5153121353121352511134
+𢑋 153515355151251254312515
+𢑌 5154311214444431121134515
+𢑍 5153155414515515125125121515
+𢑎 51531554144154325515125125121515
+𢑏 353511
+𢑐 234511
+𢑑 511511
+𢑒 511531
+𢑓 5513534
+𢑔 51115251
+𢑕 51115353
+𢑖 51125112
+𢑗 511324134
+𢑘 5115224134
+𢑙 511352534
+𢑚 151213511
+𢑛 5513323344
+𢑜 511525121
+𢑝 5115114535
+𢑞 5513435252
+𢑟 51145321534
+𢑠 51151132535
+𢑡 55113353334
+𢑢 251151133252
+𢑣 551543341134
+𢑤 511451251234
+𢑥 554525111234
+𢑦 5514525253251
+𢑧 5115111251234
+𢑨 51125345112534
+𢑩 55133252511252
+𢑪 51135333435251
+𢑫 51151112135121
+𢑬 51151113434234
+𢑭 55452512133252
+𢑮 511511534353432
+𢑯 5112534444411234
+𢑰 5121151211511511
+𢑱 5114312343553134
+𢑲 51143123434554234
+𢑳 511353334121325114
+𢑴 511431234554234134
+𢑵 511511343123425121
+𢑶 511511413253413534
+𢑷 5514525344444133252
+𢑸 4125145251111354252
+𢑹 1112111251112155121
+𢑺 5113425344444133252
+𢑻 5115114132534135534
+𢑼 35331353334411354252
+𢑽 5115111324132413241324
+𢑾 51124134251112213424134
+𢑿 51145251251121125135541234
+𢒀 53333
+𢒁 53333
+𢒂 35333
+𢒃 342333
+𢒄 121333
+𢒅 123331
+𢒆 442333
+𢒇 1135333
+𢒈 1132333
+𢒉 33325111
+𢒊 13413333
+𢒋 45534333
+𢒌 41252333
+𢒍 51532333
+𢒎 451135333
+𢒏 3331251124
+𢒐 3434121333
+𢒑 3434112333
+𢒒 3443521333
+𢒓 5113533333
+𢒔 13533434333
+𢒕 21213534333
+𢒖 12511534333
+𢒗 25113533333
+𢒘 43112135333
+𢒙 25111234333
+𢒚 55124134333
+𢒛 21251112333
+𢒜 21531534333
+𢒝 35125125333
+𢒞 125431234333
+𢒟 212511134333
+𢒠 251135252333
+𢒡 251251121333
+𢒢 312135334333
+𢒣 132511134333
+𢒤 3332513533341
+𢒥 5415413433352
+𢒦 2125123344333
+𢒧 2511353334333
+𢒨 1225111234333
+𢒩 33333221212134
+𢒪 21451353334333
+𢒫 333511121251124
+𢒬 333251141251234
+𢒭 212511123344333
+𢒮 234332511134333
+𢒯 251215315252333
+𢒰 133511125153334
+𢒱 2121131233534333
+𢒲 4133333221212134
+𢒳 2511453123433354
+𢒴 12343251135252333
+𢒵 321155451114334333
+𢒶 413413333352521353334
+𢒷 33313251113441431251
+𢒸 153113413251112121333
+𢒹 4131235123512351235333
+𢒺 4131234123431112111333
+𢒻 1234343412344512212511333
+𢒼 3325
+𢒽 3325
+𢒾 33252
+𢒿 33255
+𢓀 332154
+𢓁 332121
+𢓂 332121
+𢓃 332354
+𢓄 3321132
+𢓅 3323434
+𢓆 3321135
+𢓇 3322534
+𢓈 3323511
+𢓉 3321354
+𢓊 3322121
+𢓋 3323552
+𢓌 3324134
+𢓍 3321134
+𢓎 3321554
+𢓏 3322511
+𢓐 3323112
+𢓑 3323534
+𢓒 33225211
+𢓓 33231211
+𢓔 33241431
+𢓕 33221251
+𢓖 33213241
+𢓗 332212115
+𢓘 33235444
+𢓙 33251534
+𢓚 33251335
+𢓛 33211234
+𢓜 332354251
+𢓝 332341534
+𢓞 332525341
+𢓟 332434242
+𢓠 332312135
+𢓡 332151534
+𢓢 332134115
+𢓣 332125234
+𢓤 332354152
+𢓥 332243135
+𢓦 332112152
+𢓧 332121525
+𢓨 332251341
+𢓩 332312121
+𢓪 3325431134
+𢓫 3324143112
+𢓬 3323413252
+𢓭 3325435354
+𢓮 3322433541
+𢓯 3323531121
+𢓰 3323443531
+𢓱 3323541112
+𢓲 3321251251
+𢓳 3322512115
+𢓴 3322511354
+𢓵 3323123453
+𢓶 3325425112
+𢓷 3323112524
+𢓸 3325221121
+𢓹 3322523134
+𢓺 3322112134
+𢓻 3321353334
+𢓼 3322511135
+𢓽 3323354134
+𢓾 3323434251
+𢓿 3323544544
+𢔀 3325444554
+𢔁 33212135354
+𢔂 33213425115
+𢔃 33233512354
+𢔄 33221251112
+𢔅 33212511234
+𢔆 33244141431
+𢔇 33235311252
+𢔈 33252413452
+𢔉 33215553121
+𢔊 33231134251
+𢔋 33212343554
+𢔌 33232511312
+𢔍 33234343511
+𢔎 33225241121
+𢔏 33234434554
+𢔐 33235251115
+𢔑 33243113455
+𢔒 33225112511
+𢔓 33211134112
+𢔔 33252251541
+𢔕 33225111354
+𢔖 33231134112
+𢔗 33231342121
+𢔘 33234135452
+𢔙 33241343412
+𢔚 33211354153
+𢔛 33212143112
+𢔜 3322354333
+𢔝 332312121211
+𢔞 332311212135
+𢔟 332545231234
+𢔠 332251111254
+𢔡 332151532511
+𢔢 332341351122
+𢔣 332112321511
+𢔤 332212511134
+𢔥 332251213541
+𢔦 332513431112
+𢔧 332513431132
+𢔨 332251315124
+𢔩 332234342134
+𢔪 33212132511
+𢔫 332311252354
+𢔬 332312135112
+𢔭 332134143112
+𢔮 332542511112
+𢔯 332125123422
+𢔰 332521325111
+𢔱 332343425152
+𢔲 332121525125121
+𢔳 3324544251214
+𢔴 332125125152
+𢔵 3321122125211
+𢔶 3322511135124
+𢔷 3323535221121
+𢔸 3321251253512
+𢔹 3321251252534
+𢔺 332353252121
+𢔻 3324451353334
+𢔼 3322512143134
+𢔽 3322511121124
+𢔾 3323251113554
+𢔿 3323411243112
+𢕀 3323312251111
+𢕁 3321121132112
+𢕂 3321251121534
+𢕃 3322515122111
+𢕄 3322521533134
+𢕅 3322524153112
+𢕆 3323121124544
+𢕇 3323234342134
+𢕈 3323434122111
+𢕉 3324344251214
+𢕊 3323525113415
+𢕋 3324451135112
+𢕌 3325134143112
+𢕍 3323545325121
+𢕎 3324143125112
+𢕏 332251211212112
+𢕐 33241533152134
+𢕑 33241554413412
+𢕒 33241251251354
+𢕓 33212512512515
+𢕔 33241431251112
+𢕕 33254545434333
+𢕖 33212522113455
+𢕗 33244513412512
+𢕘 33225232411121
+𢕙 33235352125221
+𢕚 33244125111124
+𢕛 33235412511354
+𢕜 33231122121524
+𢕝 3323541112454
+𢕞 33212251114544
+𢕟 3321121533134
+𢕠 33254254311341
+𢕡 33212512343134
+𢕢 33212511123534
+𢕣 33212511123134
+𢕤 33212121343511
+𢕥 33212111234112
+𢕦 33223544511534
+𢕧 3321511353134
+𢕨 33232511454153
+𢕩 33233234342134
+𢕪 332313425125251
+𢕫 332121112343534
+𢕬 33253421215342121
+𢕭 332121221113134
+𢕮 332414345252251
+𢕯 332125221251112
+𢕰 332431253511124
+𢕱 332212125112343
+𢕲 332511241343134
+𢕳 332121213451251
+𢕴 332122511123135
+𢕵 332122134515112
+𢕶 332132511451354
+𢕷 332344335554444
+𢕸 332431234354152
+𢕹 3324154251213134
+𢕺 3322121131233534
+𢕻 3323513354111251
+𢕼 3322522112513534
+𢕽 3323251152341534
+𢕾 3325132514143112
+𢕿 3321215425113134
+𢖀 3325111122512512
+𢖁 332521251111252
+𢖂 3321212134251251
+𢖃 3322224314311134
+𢖄 3322522512143135
+𢖅 3322524111251112
+𢖆 3323535112533112
+𢖇 3324135221154444
+𢖈 33254154132411121
+𢖉 33212512535123134
+𢖊 33241112512512115
+𢖋 33212125121132112
+𢖌 33225213211234534
+𢖍 33235251214444112
+𢖎 33212522113425151
+𢖏 332121252212511134
+𢖐 332413522115154444
+𢖑 332113411342511134
+𢖒 332132511454544354
+𢖓 332513332312511354
+𢖔 332251112213424134
+𢖕 332554354431234531
+𢖖 431234531332554354
+𢖗 125123433234342134
+𢖘 3324453121252214544
+𢖙 3321331234312342121
+𢖚 3322511522521342444
+𢖛 3322354254312114444
+𢖜 3324143125112113134
+𢖝 33234341211121111534
+𢖞 33235251151535251354
+𢖟 33235443112523554234
+𢖠 33225111342511134531
+𢖡 33212154554554132112
+𢖢 33225122113115343134
+𢖣 332321132534151114334
+𢖤 332251112134132511134
+𢖥 3324131235123531112111
+𢖦 33225111251113241112154
+𢖧 3321251245251251112213534
+𢖨 332521251152112123354354252
+𢖩 454
+𢖪 4425
+𢖫 534544
+𢖬 44215
+𢖭 44255
+𢖮 545434
+𢖯 44235
+𢖰 534544
+𢖱 44253
+𢖲 442315
+𢖳 442112
+𢖴 3154544
+𢖵 442531
+𢖶 1214544
+𢖷 442121
+𢖸 442515
+𢖹 442234
+𢖺 442154
+𢖻 4544354
+𢖼 1544544
+𢖽 1214544
+𢖾 442335
+𢖿 2344544
+𢗀 2514544
+𢗁 3414544
+𢗂 5154544
+𢗃 442115
+𢗄 442124
+𢗅 442345
+𢗆 442134
+𢗇 442354
+𢗈 4543412
+𢗉 4422534
+𢗊 34324544
+𢗋 4423511
+𢗌 4425215
+𢗍 52214544
+𢗎 4423554
+𢗏 11324544
+𢗐 45354544
+𢗑 4424535
+𢗒 4423112
+𢗓 1514544
+𢗔 4421255
+𢗕 4423554
+𢗖 4423121
+𢗗 4421344
+𢗘 4423533
+𢗙 4421215
+𢗚 4421354
+𢗛 4423412
+𢗜 4425134
+𢗝 4421551
+𢗞 4421354
+𢗟 4421335
+𢗠 4421553
+𢗡 4423134
+𢗢 4423132
+𢗣 11214544
+𢗤 11344544
+𢗥 15414544
+𢗦 12344544
+𢗧 15534544
+𢗨 25344544
+𢗩 31214544
+𢗪 35154544
+𢗫 13244544
+𢗬 15234544
+𢗭 25114544
+𢗮 45443452
+𢗯 35114544
+𢗰 45444544
+𢗱 51124544
+𢗲 4421134
+𢗳 4423115
+𢗴 4423415
+𢗵 4425215
+𢗶 4421251
+𢗷 4422534
+𢗸 4424412
+𢗹 33124544
+𢗺 45434415
+𢗻 41344544
+𢗼 4424513
+𢗽 4421535
+𢗾 4423552
+𢗿 44211234
+𢘀 44213344
+𢘁 251224544
+𢘂 325314544
+𢘃 44255414
+𢘄 44225341
+𢘅 545234544
+𢘆 44212511
+𢘇 251114544
+𢘈 34144252
+𢘉 44225112
+𢘊 44225112
+𢘋 321544544
+𢘌 44251554
+𢘍 515324544
+𢘎 44251354
+𢘏 44225253
+𢘐 44234121
+𢘑 125124544
+𢘒 513154544
+𢘓 554144544
+𢘔 34144255
+𢘕 44251523
+𢘖 251454452
+𢘗 325124544
+𢘘 44251523
+𢘙 44213534
+𢘚 44245354
+𢘛 44233124
+𢘜 44251251
+𢘝 44245234
+𢘞 352344544
+𢘟 454412512
+𢘠 211154544
+𢘡 311214544
+𢘢 321154544
+𢘣 325114544
+𢘤 431124544
+𢘥 44241252
+𢘦 44251254
+𢘧 44251334
+𢘨 44252234
+𢘩 44253521
+𢘪 44213121
+𢘫 121214544
+𢘬 44231525
+𢘭 44235112
+𢘮 44241431
+𢘯 445354544
+𢘰 121534544
+𢘱 134544534
+𢘲 251344544
+𢘳 312344544
+𢘴 3535244544
+𢘵 3545244544
+𢘶 442511112
+𢘷 442251214
+𢘸 442354152
+𢘹 442341234
+𢘺 442431234
+𢘻 4312344544
+𢘼 2511224544
+𢘽 442251153
+𢘾 442531251
+𢘿 5235234544
+𢙀 442125234
+𢙁 4411154544
+𢙂 1252214544
+𢙃 442251115
+𢙄 1221344544
+𢙅 3412514544
+𢙆 442325111
+𢙇 442413534
+𢙈 4544251251
+𢙉 442555252
+𢙊 442113534
+𢙋 442343412
+𢙌 5211214544
+𢙍 2525114544
+𢙎 5254544544
+𢙏 5212344544
+𢙐 442453534
+𢙑 442544134
+𢙒 442153135
+𢙓 442341154
+𢙔 44245245
+𢙕 442413234
+𢙖 442125341
+𢙗 442415531
+𢙘 442122111
+𢙙 442252135
+𢙚 442355215
+𢙛 442354251
+𢙜 442351252
+𢙝 442312135
+𢙞 1251254544
+𢙟 2515344544
+𢙠 3251134544
+𢙡 3321124544
+𢙢 1212514544
+𢙣 1252214544
+𢙤 2112344544
+𢙥 3253414544
+𢙦 3253414544
+𢙧 442212135
+𢙨 442132521
+𢙩 442111234
+𢙪 442454124
+𢙫 442251341
+𢙬 442325113
+𢙭 2341344544
+𢙮 1321214544
+𢙯 1325114544
+𢙰 5155544544
+𢙱 4421121132
+𢙲 4422513251
+𢙳 4425213121
+𢙴 15354544354
+𢙵 4423413251
+𢙶 25111124544
+𢙷 12153114544
+𢙸 25115354544
+𢙹 4423534334
+𢙺 4421214544
+𢙻 51112454453
+𢙼 4421555121
+𢙽 31554144544
+𢙾 4421251134
+𢙿 4422523415
+𢚀 4423212154
+𢚁 4425154544
+𢚂 4423434121
+𢚃 4423443124
+𢚄 4424453112
+𢚅 12135534544
+𢚆 4452511153
+𢚇 4422521121
+𢚈 12211342444
+𢚉 4422511115
+𢚊 25352514544
+𢚋 4423251135
+𢚌 4425113434
+𢚍 4424451241
+𢚎 1544444544
+𢚏 25234154544
+𢚐 33231344544
+𢚑 44135114544
+𢚒 34112344544
+𢚓 51531344544
+𢚔 4423454354
+𢚕 4422511534
+𢚖 43515234544
+𢚗 4424451234
+𢚘 4424111251
+𢚙 4424134521
+𢚚 4414154544
+𢚛 4421225135
+𢚜 4425425121
+𢚝 4425431134
+𢚞 45251114544
+𢚟 41251524544
+𢚠 44512344544
+𢚡 12413444544
+𢚢 51531344544
+𢚣 52251544544
+𢚤 12342514544
+𢚥 54112144544
+𢚦 12455214544
+𢚧 13251114544
+𢚨 32125124544
+𢚩 34435114544
+𢚪 51343344544
+𢚫 51523544544
+𢚬 4421324121
+𢚭 4422522534
+𢚮 4423113111
+𢚯 4423531121
+𢚰 4425553452
+𢚱 43134544544
+𢚲 4425153134
+𢚳 12341244544
+𢚴 4425344544
+𢚵 4423443533
+𢚶 4423443531
+𢚷 4421251112
+𢚸 11211324544
+𢚹 4422511115
+𢚺 4421134251
+𢚻 4422513432
+𢚼 442252354
+𢚽 4424411255
+𢚾 4423525134
+𢚿 35445244544
+𢛀 12515154544
+𢛁 311252224544
+𢛂 212511124544
+𢛃 354242514544
+𢛄 44213121121
+𢛅 44225122511
+𢛆 515415544544
+𢛇 351212514544
+𢛈 442212514544
+𢛉 442312121211
+𢛊 44231234531
+𢛋 543541224544
+𢛌 44235544544
+𢛍 44231134251
+𢛎 4424325234
+𢛏 44212211154
+𢛐 44241541234
+𢛑 121352514544
+𢛒 44212343554
+𢛓 123412344544
+𢛔 44212511234
+𢛕 44225312341
+𢛖 122134554544
+𢛗 44243113453
+𢛘 44234133541
+𢛙 44244535515
+𢛚 13115344544
+𢛛 44233241121
+𢛜 441513154544
+𢛝 251125114544
+𢛞 44232511312
+𢛟 44212155121
+𢛠 44234135452
+𢛡 44225113511
+𢛢 44213354141
+𢛣 441515154544
+𢛤 125112514544
+𢛥 513251214544
+𢛦 353335344544
+𢛧 324111214544
+𢛨 44241533444
+𢛩 511225112444
+𢛪 341354554544
+𢛫 411252214544
+𢛬 445454344544
+𢛭 55315354544
+𢛮 312131344544
+𢛯 44212512152
+𢛰 44243122431
+𢛱 125234534544
+𢛲 312122114544
+𢛳 132522114544
+𢛴 44252125221
+𢛵 44233445112
+𢛶 125125244544
+𢛷 44235134153
+𢛸 44244512234
+𢛹 44243251135
+𢛺 44212135515
+𢛻 44212213511
+𢛼 44221223454
+𢛽 44225112511
+𢛾 44225354441
+𢛿 44225113132
+𢜀 44215112134
+𢜁 4423545434
+𢜂 431134544544
+𢜃 441122514544
+𢜄 351335544544
+𢜅 441341544544
+𢜆 413321244544
+𢜇 445251114544
+𢜈 112111214544
+𢜉 121312114544
+𢜊 121251114544
+𢜋 121212514544
+𢜌 121532514544
+𢜍 112135334544
+𢜎 111211124544
+𢜏 251135114544
+𢜐 454432411121
+𢜑 351141344544
+𢜒 341251224544
+𢜓 312135344544
+𢜔 311342514544
+𢜕 353331344544
+𢜖 412525154544
+𢜗 44211134112
+𢜘 44213412132
+𢜙 44241353412
+𢜚 44241554554
+𢜛 331235344544
+𢜜 44221531535
+𢜝 44212515112
+𢜞 44213434234
+𢜟 44225431252
+𢜠 44225113511
+𢜡 44241431531
+𢜢 44233253254
+𢜣 123432154544
+𢜤 152454544354
+𢜥 44235424251
+𢜦 433433124544
+𢜧 254312114544
+𢜨 1221512344544
+𢜩 442131251534
+𢜪 442121213251
+𢜫 442234325111
+𢜬 442413122154
+𢜭 442343425152
+𢜮 442122111234
+𢜯 1221112344544
+𢜰 442341251132
+𢜱 442251122111
+𢜲 442531543112
+𢜳 442121251431
+𢜴 442351331134
+𢜵 442325131134
+𢜶 442445433454
+𢜷 3252215344544
+𢜸 442545231234
+𢜹 2513351114544
+𢜺 442412513534
+𢜻 442344325211
+𢜼 4423121221234
+𢜽 442543341134
+𢜾 442112134534
+𢜿 4424451353334
+𢝀 442445351344
+𢝁 442354111251
+𢝂 442112155414
+𢝃 4143452524544
+𢝄 442512115154
+𢝅 5121151544544
+𢝆 442312511211
+𢝇 442311213251
+𢝈 442251225221
+𢝉 442134122111
+𢝊 1325111344544
+𢝋 442412514535
+𢝌 442251125111
+𢝍 442454544544
+𢝎 442125211215
+𢝏 3253513514544
+𢝐 3321121124544
+𢝑 4314334344544
+𢝒 442121213511
+𢝓 442325112534
+𢝔 2511134224544
+𢝕 2535251354544
+𢝖 1221113454544
+𢝗 1431234224544
+𢝘 442321511121
+𢝙 442132425221
+𢝚 442441312135
+𢝛 442111253134
+𢝜 442412514512
+𢝝 2511112344544
+𢝞 44212211152
+𢝟 442532513112
+𢝠 442545232154
+𢝡 442415331521
+𢝢 442542511134
+𢝣 442111342511
+𢝤 442312211351
+𢝥 442312342534
+𢝦 4334125344544
+𢝧 4425115344544
+𢝨 1212122514544
+𢝩 3321135344544
+𢝪 3211135544544
+𢝫 1212514314544
+𢝬 121325114544
+𢝭 1215525234544
+𢝮 2522125114544
+𢝯 2541112514544
+𢝰 3121353344544
+𢝱 3324312344544
+𢝲 4334312344544
+𢝳 4411221344544
+𢝴 4421252214544
+𢝵 5343534324544
+𢝶 442132522531
+𢝷 442153532511
+𢝸 44225525251
+𢝹 442314314134
+𢝺 442331225111
+𢝻 442353325111
+𢝼 442532511521
+𢝽 442545233134
+𢝾 442344311252
+𢝿 442522523452
+𢞀 3551131344544
+𢞁 442351251214
+𢞂 442345325221
+𢞃 442554444121
+𢞄 442121331251
+𢞅 442125221531
+𢞆 442414313333
+𢞇 442121254251
+𢞈 2512511224544
+𢞉 4412512514544
+𢞊 442522515452
+𢞋 44211342514544
+𢞌 4423211151135
+𢞍 12251255154544
+𢞎 4421221335112
+𢞏 4424452513251
+𢞐 4424453121251
+𢞑 4421312113121
+𢞒 341235435544544
+𢞓 4423545325121
+𢞔 51541515414544
+𢞕 4424532411121
+𢞖 4423143141134
+𢞗 4423253411515
+𢞘 13251134154544
+𢞙 4425312513112
+𢞚 12211143344544
+𢞛 4423525113415
+𢞜 4425132433541
+𢞝 44511221342444
+𢞞 442431234454
+𢞟 4424125125251
+𢞠 4422511541541
+𢞡 4421122125211
+𢞢 4135112344544
+𢞣 32135443344544
+𢞤 32522153444544
+𢞥 34123412344544
+𢞦 4423215112511
+𢞧 4421221352511
+𢞨 12122251214544
+𢞩 44531212514544
+𢞪 353252411214544
+𢞫 32251135334544
+𢞬 4423251154444
+𢞭 35352251214544
+𢞮 4422534252511
+𢞯 125112141244544
+𢞰 51515251214544
+𢞱 41341311344544
+𢞲 4424453531211
+𢞳 4425225154252
+𢞴 4422513414544
+𢞵 53435343245434
+𢞶 4425511353334
+𢞷 4421344325115
+𢞸 4421252343554
+𢞹 4421432511134
+𢞺 4421221342444
+𢞻 4421212132521
+𢞼 4423541521234
+𢞽 43123431344544
+𢞾 41132431344544
+𢞿 12511533344544
+𢟀 12112544444544
+𢟁 33541435544544
+𢟂 3235412344544
+𢟃 12145445523523
+𢟄 13252245445211
+𢟅 3223543334544
+𢟆 35325112114544
+𢟇 53113113454544
+𢟈 4421213544544
+𢟉 442122341251
+𢟊 4423122111534
+𢟋 442325151454
+𢟌 4423412343554
+𢟍 13123412344544
+𢟎 4423321212134
+𢟏 4421354224444
+𢟐 4421121311234
+𢟑 4421251112112
+𢟒 4425425113535
+𢟓 4424454143112
+𢟔 442511534454
+𢟕 4425544442534
+𢟖 4424415444554
+𢟗 4424412511121
+𢟘 4421221111534
+𢟙 4423411243112
+𢟚 4424152512511
+𢟛 12211145445152
+𢟜 13251113544544
+𢟝 4423351153554
+𢟞 4424112511234
+𢟟 4421325111534
+𢟠 44213432411121
+𢟡 44221213525112
+𢟢 4424134522554
+𢟣 44243112145534
+𢟤 112343134134544
+𢟥 124552135544544
+𢟦 44241352513534
+𢟧 44221253444441
+𢟨 44212121344132
+𢟩 44211121112511
+𢟪 5115415354544
+𢟫 44244525114134
+𢟬 513114334544544
+𢟭 44244511353134
+𢟮 122125234344544
+𢟯 121351213544544
+𢟰 44241431353334
+𢟱 44243113424134
+𢟲 13115341244544
+𢟳 44241554413412
+𢟴 44241332411121
+𢟵 44231112111121
+𢟶 44221531535334
+𢟷 44243123425121
+𢟸 44251112125341
+𢟹 4421311534124
+𢟺 44254154134234
+𢟻 121323431344544
+𢟼 44212341234354
+𢟽 212125111344544
+𢟾 44212131213115
+𢟿 44225221333534
+𢠀 4143253525154544
+𢠁 44212431252511
+𢠂 44212512343134
+𢠃 353412512344544
+𢠄 44225244511234
+𢠅 44211134321511
+𢠆 4425425112454
+𢠇 44241112513112
+𢠈 44234532511134
+𢠉 44232251125214
+𢠊 44254545434111
+𢠋 44244545444544
+𢠌 44251554251214
+𢠍 44212122511124
+𢠎 44225225111515
+𢠏 44234125125221
+𢠐 44235251214444
+𢠑 44231251251251
+𢠒 431234532514544
+𢠓 413511241344544
+𢠔 411312515344544
+𢠕 442121251114544
+𢠖 123453112344544
+𢠗 134342345344544
+𢠘 123435412344544
+𢠙 322511252144544
+𢠚 323413511224544
+𢠛 121352131344544
+𢠜 124552131344544
+𢠝 251251153414544
+𢠞 523523251214544
+𢠟 44212121353334
+𢠠 44244511352154
+𢠡 44244543344334
+𢠢 44251311234124
+𢠣 4425212511234
+𢠤 44251543251112
+𢠥 44212251112315
+𢠦 44212212511134
+𢠧 44232534134354
+𢠨 44231554143134
+𢠩 44241312341234
+𢠪 44225221121121
+𢠫 44241312214444
+𢠬 513134251544544
+𢠭 44244521123454
+𢠮 44225125124134
+𢠯 4424511543511
+𢠰 44233234342134
+𢠱 1213234532544544
+𢠲 442445125125121
+𢠳 44243252343134
+𢠴 4312343541524544
+𢠵 442243252513134
+𢠶 5112251112124544
+𢠷 442121132511134
+𢠸 2512512511124544
+𢠹 442122111343312
+𢠺 442543345153554
+𢠻 44251124134454
+𢠼 442252212511134
+𢠽 442352521353334
+𢠾 3251113122514544
+𢠿 442344335554444
+𢡀 442254312114444
+𢡁 442341251541541
+𢡂 4412511135334544
+𢡃 4143125122514544
+𢡄 442313431342511
+𢡅 442311121111234
+𢡆 13533345115344544
+𢡇 442122514143112
+𢡈 5225211234544544
+𢡉 44253421215342121
+𢡊 442113411344544
+𢡋 442325111111112
+𢡌 442554142512531
+𢡍 44212211254312
+𢡎 442251125214454
+𢡏 442413543543534
+𢡐 442413534122111
+𢡑 2511123431344544
+𢡒 442413511342121
+𢡓 442352534154444
+𢡔 3253413253414544
+𢡕 3215251135334544
+𢡖 442545454342444
+𢡗 1212251135114544
+𢡘 1212225121544544
+𢡙 5112251134534544
+𢡚 442113411342511
+𢡛 4411221252524544
+𢡜 442121112343534
+𢡝 442414312511134
+𢡞 442511225111121
+𢡟 1234343412344544
+𢡠 442414312511534
+𢡡 442121251114544
+𢡢 521312135414544
+𢡣 523411234342444
+𢡤 442122112534112
+𢡥 5112251141344544
+𢡦 442252445354251
+𢡧 442554554134534
+𢡨 442325121354412
+𢡩 442314314121124
+𢡪 1211154112344544
+𢡫 1234324111214544
+𢡬 2121212121214544
+𢡭 2434525125344544
+𢡮 3411243135344544
+𢡯 3413354135544544
+𢡰 1134251135114544
+𢡱 1214513535544544
+𢡲 1221113122514544
+𢡳 1212152525114544
+𢡴 1251121454524544
+𢡵 1325221325224544
+𢡶 1344311251124544
+𢡷 1412343134134544
+𢡸 2511144123434544
+𢡹 3323125112114544
+𢡺 3443355544444544
+𢡻 5112251141344544
+𢡼 442132522132522
+𢡽 442343434342511
+𢡾 442441234325111
+𢡿 442511225111234
+𢢀 442511225112511
+𢢁 442513521521521
+𢢂 442554444121251
+𢢃 3123445434342444
+𢢄 442252251125214
+𢢅 442122511123511
+𢢆 442431112431251
+𢢇 442251112211154
+𢢈 442445112213444
+𢢉 441122132514544
+𢢊 44252431353334
+𢢋 442252414313333
+𢢌 2432525131344544
+𢢍 3544311135344544
+𢢎 321115251114544
+𢢏 442431224312511
+𢢐 3531222452524544
+𢢑 322354251214544
+𢢒 4424453541343412
+𢢓 4424155332411121
+𢢔 4422511252214153
+𢢕 4424312535111344
+𢢖 4421212251135345
+𢢗 4422522135251214
+𢢘 4424135221154444
+𢢙 4422125343411234
+𢢚 4422511353453534
+𢢛 4422153152512153
+𢢜 4422243143111234
+𢢝 4424313533344544
+𢢞 12511125235544544
+𢢟 4425225252252522
+𢢠 5213121131214544
+𢢡 52252415331344544
+𢢢 12145112135544544
+𢢣 35351125331124544
+𢢤 25113511122514544
+𢢥 4422511134224544
+𢢦 41251215545544544
+𢢧 5151211212514544
+𢢨 25112113541524544
+𢢩 442122352513134
+𢢪 4422512211251431
+𢢫 12341113425114544
+𢢬 442344134522554
+𢢭 11213412511224544
+𢢮 4421212341211154
+𢢯 442252325113554
+𢢰 4421251112511134
+𢢱 32231345415414544
+𢢲 4421212122151234
+𢢳 4422511132511211
+𢢴 4423551131344444
+𢢵 44113325112344544
+𢢶 12125143135344544
+𢢷 53112112544444544
+𢢸 2552525115354544
+𢢹 31213123425114544
+𢢺 4421251224525111
+𢢻 4421252342511134
+𢢼 4421252211123422
+𢢽 4423443533511534
+𢢾 4424135342511134
+𢢿 1214552135544544
+𢣀 4421325125111124
+𢣁 44212125111344544
+𢣂 4424311213121534
+𢣃 4421325141343412
+𢣄 442251225251454
+𢣅 442122441354251
+𢣆 4422524125125251
+𢣇 4424143125113534
+𢣈 4425553253413134
+𢣉 25115445251514544
+𢣊 4423443123425111
+𢣋 12123512511244544
+𢣌 4423444445235354
+𢣍 32121235351124544
+𢣎 44255455415545545
+𢣏 44212121215425221
+𢣐 44244512332511134
+𢣑 414311341431124544
+𢣒 44211543251213554
+𢣓 13252213415544544
+𢣔 442325111445354153
+𢣕 153113454521344544
+𢣖 44213121131214544
+𢣗 44241312341234554
+𢣘 554444324111214544
+𢣙 44543344334451121
+𢣚 44213425234343434
+𢣛 44241431251121153
+𢣜 44233321341251112
+𢣝 44213533341353334
+𢣞 121452512144544354
+𢣟 32111525111342444
+𢣠 354135453251214544
+𢣡 143123414312344544
+𢣢 251214544535353
+𢣣 44112511124544544
+𢣤 44231254312114444
+𢣥 442125111233124544
+𢣦 44232511125121132
+𢣧 44221531522431115
+𢣨 44225213434343434
+𢣩 44234112431511534
+𢣪 414312511123334544
+𢣫 413234454445444544
+𢣬 123425125212344544
+𢣭 134252343434344544
+𢣮 251144553131354544
+𢣯 121451123435544544
+𢣰 341124315115344544
+𢣱 125123412512344544
+𢣲 251215345442512153
+𢣳 454445444544134534
+𢣴 44212251112344334
+𢣵 44213121251431124
+𢣶 44243344334354152
+𢣷 44254154132411121
+𢣸 44241112511251251
+𢣹 44232112511511134
+𢣺 44251121444425221
+𢣻 442511225112513251
+𢣼 44244535415411234
+𢣽 4132511354113444544
+𢣾 442413123512353112
+𢣿 442215315251214544
+𢤀 32112512515111344544
+𢤁 3225125125112344544
+𢤂 3123435334241344544
+𢤃 2511112121325154544
+𢤄 442121232533414544
+𢤅 21354122135452524544
+𢤆 442131212251125214
+𢤇 442252211211254444
+𢤈 442412512511212112
+𢤉 3143145151211214544
+𢤊 414325122514544544
+𢤋 442122511125111134
+𢤌 3411243135152514544
+𢤍 1221125343413444544
+𢤎 1212511122111544544
+𢤏 1125221125125124544
+𢤐 3545334112431224544
+𢤑 4451211211211214544
+𢤒 3211511321151124544
+𢤓 442145241341251251
+𢤔 1354122135452524544
+𢤕 2135454211121114544
+𢤖 2524143125112114544
+𢤗 442243452512511134
+𢤘 1212511225112514544
+𢤙 1251112251251544544
+𢤚 442545425114121534
+𢤛 442252215425113535
+𢤜 44243125351113452
+𢤝 442314314131251534
+𢤞 442125125542511134
+𢤟 442145244441311534
+𢤠 442113411341251112
+𢤡 442132511325113251
+𢤢 442121341213544444
+𢤣 442314314431251122
+𢤤 4424143125112114544
+𢤥 1212514311135344544
+𢤦 4421212414312511211
+𢤧 34435331325111344544
+𢤨 4424334433445251214
+𢤩 4421331234312342121
+𢤪 442445431353334454
+𢤫 4423211152511134112
+𢤬 4423211153511134112
+𢤭 4424134125251131234
+𢤮 442252324111212525
+𢤯 4422135454211121111
+𢤰 21354542111211114544
+𢤱 4424143135411515111
+𢤲 41431354115151114544
+𢤳 4423211511342511134
+𢤴 4143111344241431112
+𢤵 12211134122111344544
+𢤶 12125125154122514544
+𢤷 31431412112544444544
+𢤸 44252431353334454
+𢤹 34112431513122514544
+𢤺 4421212125112144544
+𢤻 4424311213123453534
+𢤼 4421212324111214444
+𢤽 4423211251251511134
+𢤾 4423211343451145521
+𢤿 12512343525111344544
+𢥀 13251145454435454121
+𢥁 52352352325121544544
+𢥂 4424311341211254444
+𢥃 442411125112132511
+𢥄 4424135221151531234
+𢥅 4423411243132511252
+𢥆 4423143144143125115
+𢥇 4422512512511121534
+𢥈 4422153152512125221
+𢥉 442122441251113533
+𢥊 4421251253112511135
+𢥋 4423525115153525135
+𢥌 44235251214444431112
+𢥍 121525134112431224544
+𢥎 44212251251452511134
+𢥏 44243344334452513251
+𢥐 44241352211515431234
+𢥑 44225111221344111251
+𢥒 433443344534312344544
+𢥓 44222431431121251124
+𢥔 414312511123251114544
+𢥕 44235444251214251214
+𢥖 44241432533543211234
+𢥗 4134522554324111214544
+𢥘 442252324111212535251
+𢥙 132511454544354354152
+𢥚 44234432522151154124
+𢥛 4451211211211211344544
+𢥜 4451211211211211342444
+𢥝 4421325111212151534354
+𢥞 442251214251214251214
+𢥟 442251152252134431234
+𢥠 442324111213241112154
+𢥡 442321132534151114334
+𢥢 442411125112212511121
+𢥣 442314314511225113511
+𢥤 1113425111325111344544
+𢥥 4424111251433443344334
+𢥦 41251251143111231344544
+𢥧 13325112341325111344544
+𢥨 35425111341325111344544
+𢥩 12511125544445544444544
+𢥪 4421221251113432411121
+𢥫 41431251125125111344544
+𢥬 4421254125441352211515
+𢥭 41431251145441325111354
+𢥮 41431354112125111344544
+𢥯 44232113253415111311534
+𢥰 314314121512112511244544
+𢥱 44212511234125112342511
+𢥲 412512511212111231344544
+𢥳 44212512125121251212512
+𢥴 4422512511351221113134
+𢥵 44232411121543241112154
+𢥶 44225112521432511154444
+𢥷 325111454435311345452134
+𢥸 44231431412512531125221
+𢥹 414312511121325111344544
+𢥺 414312511414312511124544
+𢥻 442145241341221251123511
+𢥼 44244535121251251115151
+𢥽 2543121144443125112114544
+𢥾 442551353334251214251214
+𢥿 4143125111225125111344544
+𢦀 1212211135412125111344544
+𢦁 1214512514311325111344544
+𢦂 44212251122511125431234
+𢦃 44225121425121425121425221
+𢦄 44232411121411125132411121
+𢦅 442414312511123541212511134
+𢦆 1214512514313411243135344544
+𢦇 4425132413425221352512144544
+𢦈 4424111251554444554444251214
+𢦉 21212512513241112125111354544
+𢦊 1221113451221113451221113454544
+𢦋 11213251141112515544445544444544
+𢦌 11534
+𢦍 15334
+𢦎 351534
+𢦏 121534
+𢦐 511534
+𢦑 153334
+𢦒 1121534
+𢦓 1353534
+𢦔 1231534
+𢦕 1534335
+𢦖 3531534
+𢦗 1534354
+𢦘 1511534
+𢦙 1554534
+𢦚 15345311
+𢦛 12113534
+𢦜 34341534
+𢦝 53531534
+𢦞 13324534
+𢦟 13415534
+𢦠 13533534
+𢦡 13112534
+𢦢 24351534
+𢦣 12511534
+𢦤 32151534
+𢦥 14134534
+𢦦 125112534
+𢦧 545231534
+𢦨 125112534
+𢦩 133112534
+𢦪 125121534
+𢦫 132221534
+𢦬 134154534
+𢦭 11554534
+𢦮 122511534
+𢦯 542511534
+𢦰 112121534
+𢦱 112511534
+𢦲 133312534
+𢦳 345111534
+𢦴 141121534
+𢦵 154523534
+𢦶 112134534
+𢦷 1214153534
+𢦸 2512511534
+𢦹 1312534534
+𢦺 3434111534
+𢦻 1534552523
+𢦼 1213324534
+𢦽 1353251534
+𢦾 1554121534
+𢦿 13115341534
+𢧀 25111121534
+𢧁 21212331534
+𢧂 41431251534
+𢧃 51132511534
+𢧄 25111211534
+𢧅 34112341534
+𢧆 13415251534
+𢧇 12134354534
+𢧈 135334341534
+𢧉 122125111534
+𢧊 351312341534
+𢧋 125115342511
+𢧌 125111121534
+𢧍 211112341534
+𢧎 121221111534
+𢧏 113424441534
+𢧐 432511121534
+𢧑 121251121534
+𢧒 133415251534
+𢧓 13534135534
+𢧔 1111342511534
+𢧕 3312251111534
+𢧖 1213251111534
+𢧗 2125115341534
+𢧘 2512252511534
+𢧙 5425112531534
+𢧚 311212135534
+𢧛 2125115311534
+𢧜 1212513121534
+𢧝 2153251511534
+𢧞 1341335414534
+𢧟 151532444534
+𢧠 2511525111534
+𢧡 2111123413534
+𢧢 12251112341534
+𢧣 12145312341534
+𢧤 13412513121534
+𢧥 43151122341534
+𢧦 13125221531534
+𢧧 12512341132534
+𢧨 121111342511534
+𢧩 15343251213554
+𢧪 41351122511534
+𢧫 25111224311534
+𢧬 11212522511534
+𢧭 12115252511534
+𢧮 25111251111534
+𢧯 13122214544534
+𢧰 45125111251534
+𢧱 54545412341534
+𢧲 312153421213511
+𢧳 413511251121534
+𢧴 121415331341534
+𢧵 234314111211534
+𢧶 215315343121534
+𢧷 251251153411534
+𢧸 112115252511534
+𢧹 21212331234534
+𢧺 121451312341534
+𢧻 121325111451534
+𢧼 212144511234534
+𢧽 212534444411534
+𢧾 252251143341534
+𢧿 131251252534534
+𢨀 414312511121534
+𢨁 154211121111534
+𢨂 554554112121534
+𢨃 12225111341534
+𢨄 431134251111534
+𢨅 414312511121534
+𢨆 121311121115534
+𢨇 125121122134534
+𢨈 3434343425111534
+𢨉 4325243125111534
+𢨊 4125152112511534
+𢨋 1534251115342511
+𢨌 5452325352511534
+𢨍 3412512534121534
+𢨎 1215235231525534
+𢨏 1221525221115334
+𢨐 2512515425111534
+𢨑 1351312512553411
+𢨒 4143125112111534
+𢨓 35511313444441534
+𢨔 34125125134341534
+𢨕 35133541112511534
+𢨖 12512213215341534
+𢨗 13412112544441534
+𢨘 215315324111211534
+𢨙 122431251143341534
+𢨚 1121251211212134534
+𢨛 3321531512514311534
+𢨜 1121251214251214534
+𢨝 122354454112341534
+𢨞 4143125121122134534
+𢨟 21253542511131251534
+𢨠 31431441251252511534
+𢨡 312342512142512141534
+𢨢 112152352215252511534
+𢨣 121251214251214251534
+𢨤 35135
+𢨥 13513
+𢨦 351312
+𢨧 451311
+𢨨 451334
+𢨩 351335
+𢨪 3513515
+𢨫 4513121
+𢨬 3513132
+𢨭 3513531
+𢨮 4513312
+𢨯 35133513
+𢨰 45133434
+𢨱 45133454
+𢨲 35134153
+𢨳 45134513
+𢨴 35135215
+𢨵 45133112
+𢨶 451341431
+𢨷 351325111
+𢨸 351341121
+𢨹 351331525
+𢨺 351335352
+𢨻 351331134
+𢨼 351322431
+𢨽 351334312
+𢨾 351331344
+𢨿 451312534
+𢩀 451325414
+𢩁 351335251
+𢩂 451354334
+𢩃 451355453
+𢩄 351344112
+𢩅 3513341251
+𢩆 3513511534
+𢩇 3513122111
+𢩈 3513154121
+𢩉 4513122134
+𢩊 4513243135
+𢩋 3513121251
+𢩌 4513253434
+𢩍 35135412251
+𢩎 35134412511
+𢩏 45133112121
+𢩐 45133445252
+𢩑 351312135354
+𢩒 351335415215
+𢩓 351312143112
+𢩔 451312155121
+𢩕 351335133513
+𢩖 3513112321511
+𢩗 5131145134513
+𢩘 35131215425221
+𢩙 35132513513251
+𢩚 45132512251251
+𢩛 45131212511134
+𢩜 451341533131134
+𢩝 351325135133513
+𢩞 451341431123324
+𢩟 1343434451325122
+𢩠 35132522112513534
+𢩡 451351541343251134
+𢩢 351335251151535251354
+𢩣 451341531223541112454
+𢩤 45133241112125112522154
+𢩥 31135
+𢩦 53112
+𢩧 1215
+𢩨 12115
+𢩩 12134
+𢩪 12152
+𢩫 12135
+𢩬 311222
+𢩭 121124
+𢩮 121154
+𢩯 121521
+𢩰 121352
+𢩱 121123
+𢩲 121512
+𢩳 121252
+𢩴 121524
+𢩵 121515
+𢩶 121353
+𢩷 3112315
+𢩸 3543112
+𢩹 121124
+𢩺 121315
+𢩻 121354
+𢩼 121554
+𢩽 121515
+𢩾 121354
+𢩿 121121
+𢪀 121215
+𢪁 121135
+𢪂 121134
+𢪃 1211553
+𢪄 1213512
+𢪅 1213453
+𢪆 1213515
+𢪇 52133112
+𢪈 1212511
+𢪉 1215152
+𢪊 1212154
+𢪋 1213112
+𢪌 1213554
+𢪍 1212344
+𢪎 1213215
+𢪏 1212511
+𢪐 31123434
+𢪑 1211535
+𢪒 31123112
+𢪓 1513112
+𢪔 1211551
+𢪕 1215151
+𢪖 31124134
+𢪗 1213224
+𢪘 34533112
+𢪙 31131112
+𢪚 1214535
+𢪛 1213134
+𢪜 1211355
+𢪝 1211132
+𢪞 1211215
+𢪟 1211512
+𢪠 1212512
+𢪡 1213521
+𢪢 1213534
+𢪣 1213534
+𢪤 1213534
+𢪥 31123533
+𢪦 1211335
+𢪧 1213112
+𢪨 1214535
+𢪩 1215354
+𢪪 1211215
+𢪫 1215213
+𢪬 1215215
+𢪭 1213121
+𢪮 1211234
+𢪯 1211344
+𢪰 1211354
+𢪱 1213533
+𢪲 1213535
+𢪳 3112354
+𢪴 12141132
+𢪵 12152134
+𢪶 12125115
+𢪷 12125111
+𢪸 354553112
+𢪹 12152234
+𢪺 12131344
+𢪻 525343112
+𢪼 12132554
+𢪽 343423112
+𢪾 12125351
+𢪿 122513112
+𢫀 121543112
+𢫁 12152534
+𢫂 12152254
+𢫃 12125152
+𢫄 12112345
+𢫅 12131515
+𢫆 12112341
+𢫇 12112154
+𢫈 12112251
+𢫉 12113453
+𢫊 12154124
+𢫋 12122251
+𢫌 12132525
+𢫍 12135334
+𢫎 12135515
+𢫏 12125252
+𢫐 12123434
+𢫑 12135421
+𢫒 12152534
+𢫓 12153154
+𢫔 12141554
+𢫕 12145534
+𢫖 12112354
+𢫗 311232511
+𢫘 12121513
+𢫙 12132154
+𢫚 12112115
+𢫛 12111214
+𢫜 12134211
+𢫝 12135444
+𢫞 12154121
+𢫟 12132121
+𢫠 12151554
+𢫡 12153521
+𢫢 12132534
+𢫣 12121115
+𢫤 121353452
+𢫥 121325341
+𢫦 121132511
+𢫧 121434242
+𢫨 121113534
+𢫩 121321234
+𢫪 3511543112
+𢫫 121511112
+𢫬 121341234
+𢫭 121253434
+𢫮 121125441
+𢫯 121321344
+𢫰 3541523112
+𢫱 121332112
+𢫲 121133415
+𢫳 121133112
+𢫴 1135343112
+𢫵 121251112
+𢫶 3112311212
+𢫷 121335215
+𢫸 1212511134
+𢫹 121343454
+𢫺 121543324
+𢫻 121112154
+𢫼 121251214
+𢫽 121335113
+𢫾 121412511
+𢫿 121341354
+𢬀 121121121
+𢬁 121345435
+𢬂 121413121
+𢬃 12135152
+𢬄 121412534
+𢬅 121234134
+𢬆 121345211
+𢬇 121445124
+𢬈 121431134
+𢬉 121351315
+𢬊 121431234
+𢬋 121354121
+𢬌 121113544
+𢬍 121131344
+𢬎 121125111
+𢬏 121545454
+𢬐 121352511
+𢬑 121251221
+𢬒 121251115
+𢬓 121354152
+𢬔 121325221
+𢬕 121343411
+𢬖 121342121
+𢬗 121311234
+𢬘 121355215
+𢬙 5415413112
+𢬚 3113251252
+𢬛 3112343112
+𢬜 121313534
+𢬝 121341214
+𢬞 121511511
+𢬟 121545211
+𢬠 121452534
+𢬡 121554234
+𢬢 121251252
+𢬣 3112125351
+𢬤 121111215
+𢬥 121441121
+𢬦 12145245
+𢬧 121311212
+𢬨 121441531
+𢬩 121321534
+𢬪 121414312
+𢬫 5211153412
+𢬬 5211143455
+𢬭 121454124
+𢬮 121131534
+𢬯 1213315215
+𢬰 1212343531
+𢬱 1211215453
+𢬲 1213212512
+𢬳 1213123435
+𢬴 1211221115
+𢬵 121154132
+𢬶 1215114554
+𢬷 1212534251
+𢬸 1213515251
+𢬹 1215121121
+𢬺 1213531234
+𢬻 1212552111
+𢬼 1212515251
+𢬽 1212511312
+𢬾 1213413251
+𢬿 1211132534
+𢭀 1213152134
+𢭁 1213554234
+𢭂 1214453112
+𢭃 1211251431
+𢭄 1215154544
+𢭅 1211124334
+𢭆 1213123453
+𢭇 1213253341
+𢭈 1215111252
+𢭉 1213112121
+𢭊 1213443121
+𢭋 12154533112
+𢭌 1213542121
+𢭍 1212521252
+𢭎 121354152
+𢭏 1211113124
+𢭐 1214434553
+𢭑 1213155134
+𢭒 1213441234
+𢭓 1215553511
+𢭔 1214453535
+𢭕 1214453535
+𢭖 1213513315
+𢭗 1214511534
+𢭘 1211341121
+𢭙 1211215452
+𢭚 1215325221
+𢭛 1211343541
+𢭜 1211214535
+𢭝 1215344544
+𢭞 1212523415
+𢭟 1212511153
+𢭠 1211531134
+𢭡 1213125112
+𢭢 1213231211
+𢭣 1213254312
+𢭤 12153113112
+𢭥 31123531112
+𢭦 1211213521
+𢭧 1213452252
+𢭨 121451554
+𢭩 1214131234
+𢭪 1211225135
+𢭫 121521135
+𢭬 1213243112
+𢭭 1214334121
+𢭮 1215153134
+𢭯 1214415134
+𢭰 1211234121
+𢭱 1213225111
+𢭲 1212511134
+𢭳 1211253511
+𢭴 1214425134
+𢭵 1215315453
+𢭶 31125133115
+𢭷 1211214134
+𢭸 1214135452
+𢭹 1214134251
+𢭺 1213443533
+𢭻 1212513534
+𢭼 1215312343
+𢭽 1214414535
+𢭾 121122354
+𢭿 1214411252
+𢮀 1214523453
+𢮁 12141533444
+𢮂 12151541554
+𢮃 312343533112
+𢮄 12135131234
+𢮅 12125121132
+𢮆 12125121412
+𢮇 12112155414
+𢮈 12135534544
+𢮉 12113341534
+𢮊 12112511125
+𢮋 12152111534
+𢮌 12112125153
+𢮍 12144535515
+𢮎 12121531534
+𢮏 311241431251
+𢮐 12124325251
+𢮑 12151124134
+𢮒 12132515112
+𢮓 12131125222
+𢮔 12111354153
+𢮕 12141541234
+𢮖 12125312341
+𢮗 351145443112
+𢮘 445354553112
+𢮙 12143113453
+𢮚 12125113134
+𢮛 12112511214
+𢮜 122111343112
+𢮝 122111543112
+𢮞 12145443324
+𢮟 521555453112
+𢮠 1511513112
+𢮡 12134431112
+𢮢 12152115211
+𢮣 332414313112
+𢮤 12134435215
+𢮥 12154134234
+𢮦 12134125134
+𢮧 12125121132
+𢮨 12112512154
+𢮩 12152133544
+𢮪 12143122134
+𢮫 12153154515
+𢮬 12152252234
+𢮭 12125111134
+𢮮 12112211511
+𢮯 12141413534
+𢮰 12141533422
+𢮱 12144511234
+𢮲 12143112135
+𢮳 12112524134
+𢮴 12114522235
+𢮵 12125112511
+𢮶 12125231134
+𢮷 12112124153
+𢮸 12121251134
+𢮹 12125213112
+𢮺 12125145135
+𢮻 12112123415
+𢮼 1213212152
+𢮽 12133512154
+𢮾 12131521315
+𢮿 12131221135
+𢯀 12131521135
+𢯁 12131154444
+𢯂 12135251354
+𢯃 121311215452
+𢯄 351331343112
+𢯅 12112134121
+𢯆 12115341534
+𢯇 12125152511
+𢯈 12125255414
+𢯉 12134431134
+𢯊 12132511354
+𢯋 12134343312
+𢯌 12135533112
+𢯍 12151325222
+𢯎 12134132511
+𢯏 12133253254
+𢯐 12153112251
+𢯑 12144254121
+𢯒 1211221324
+𢯓 1211225215
+𢯔 12131225122
+𢯕 12144525111
+𢯖 12144212154
+𢯗 12131234521
+𢯘 1211223235
+𢯙 12131134251
+𢯚 12134435215
+𢯛 12144141431
+𢯜 12155444424
+𢯝 12144143112
+𢯞 12111212154
+𢯟 12112125111
+𢯠 12144153254
+𢯡 12141542511
+𢯢 12133513312
+𢯣 311225342534
+𢯤 12125113552
+𢯥 1211221135
+𢯦 12113434234
+𢯧 12134343134
+𢯨 1211221252
+𢯩 121251113422
+𢯪 121413431523
+𢯫 121321113554
+𢯬 121125342154
+𢯭 121431134252
+𢯮 121251213541
+𢯯 121215315252
+𢯰 121332511112
+𢯱 121445343454
+𢯲 2511154443112
+𢯳 121344351554
+𢯴 121445413434
+𢯵 121251115134
+𢯶 121445154121
+𢯷 121521251152
+𢯸 121543343554
+𢯹 121122125112
+𢯺 121325125214
+𢯻 121413425135
+𢯼 121332441112
+𢯽 121121225111
+𢯾 121251125111
+𢯿 121121235515
+𢰀 121121234234
+𢰁 121125121154
+𢰂 121331211234
+𢰃 121445353134
+𢰄 121351251112
+𢰅 121515515134
+𢰆 121121232124
+𢰇 121325431134
+𢰈 121312513251
+𢰉 121445355435
+𢰊 121251251124
+𢰋 121251325221
+𢰌 121252214544
+𢰍 121412514334
+𢰎 121132211132
+𢰏 121344345521
+𢰐 121251134124
+𢰑 121323552134
+𢰒 121134433541
+𢰓 12133541452
+𢰔 121312343452
+𢰕 121515253541
+𢰖 121341321511
+𢰗 12115412152
+𢰘 121325341132
+𢰙 121154121124
+𢰚 121151132522
+𢰛 121352252135
+𢰜 121412343534
+𢰝 12112213534
+𢰞 5151531343112
+𢰟 121111253132
+𢰠 121255455452
+𢰡 121325131134
+𢰢 121431325111
+𢰣 4334123443112
+𢰤 121414312512
+𢰥 12112254251
+𢰦 121111342511
+𢰧 121415331521
+𢰨 4421254413112
+𢰩 121431554554
+𢰪 121431134251
+𢰫 121121341534
+𢰬 121151124134
+𢰭 121542511253
+𢰮 121122513541
+𢰯 121125123444
+𢰰 121543341112
+𢰱 121543343112
+𢰲 121521325111
+𢰳 121125221531
+𢰴 121122513134
+𢰵 121215315112
+𢰶 121121225134
+𢰷 121212514444
+𢰸 121251225251
+𢰹 121554444354
+𢰺 121352511134
+𢰻 121321511215
+𢰼 121351341344
+𢰽 121355114544
+𢰾 121542514544
+𢰿 3112251113112
+𢱀 4334312343112
+𢱁 12112225111
+𢱂 121134431112
+𢱃 121312344412
+𢱄 121344355454
+𢱅 121413511345
+𢱆 121413534251
+𢱇 121445353434
+𢱈 121512115154
+𢱉 121132412121
+𢱊 121412511234
+𢱋 121413122154
+𢱌 121532511234
+𢱍 121352513553
+𢱎 121311311112
+𢱏 121411125112
+𢱐 121531341534
+𢱑 121445353324
+𢱒 121431121134
+𢱓 121441312135
+𢱔 121345325221
+𢱕 121134122111
+𢱖 121122111234
+𢱗 12112212251
+𢱘 121414313333
+𢱙 121521415334
+𢱚 121353251214
+𢱛 121441125351
+𢱜 121332121124
+𢱝 12112252252
+𢱞 311212252252
+𢱟 1215231251214
+𢱠 1211251251234
+𢱡 1212432511134
+𢱢 1211245554234
+𢱣 1214134343541
+𢱤 121431134454
+𢱥 1215114525254
+𢱦 1212511353322
+𢱧 1213253411515
+𢱨 1214134554234
+𢱩 1212512135354
+𢱪 1211325125251
+𢱫 1212522112121
+𢱬 12143112353112
+𢱭 1211212213412
+𢱮 1214543425221
+𢱯 12512531443112
+𢱰 1213253541132
+𢱱 1214451255151
+𢱲 1213211511132
+𢱳 1213512214334
+𢱴 1211212211234
+𢱵 13542111543112
+𢱶 1213143144544
+𢱷 1211215114554
+𢱸 121511534454
+𢱹 1213443533124
+𢱺 1215325453254
+𢱻 1213251211354
+𢱼 1211252213132
+𢱽 1211354554544
+𢱾 1211252214334
+𢱿 1211251124534
+𢲀 1211354354544
+𢲁 121445351554
+𢲂 1213511431134
+𢲃 1211213312251
+𢲄 1211221545252
+𢲅 1211344325115
+𢲆 1211252343134
+𢲇 1215433431234
+𢲈 1215133321254
+𢲉 1215433411234
+𢲊 1211212535353
+𢲋 1212511445531
+𢲌 1213251113124
+𢲍 1213525343511
+𢲎 1213354141344
+𢲏 1213431325111
+𢲐 1213251511252
+𢲑 1213143143134
+𢲒 31123513541541
+𢲓 3215111343112
+𢲔 1211121431121
+𢲕 1215433431134
+𢲖 1211215251121
+𢲗 1212522111234
+𢲘 1214453513443
+𢲙 1214513413534
+𢲚 1215125154251
+𢲛 1213321212134
+𢲜 1213241112112
+𢲝 55444415253112
+𢲞 1211112533112
+𢲟 1214454143112
+𢲠 1211221114535
+𢲡 1213412513112
+𢲢 121523411234
+𢲣 1214143125115
+𢲤 31134125125251
+𢲥 1213411243112
+𢲦 1211221111534
+𢲧 121122415334
+𢲨 1214413155414
+𢲩 121554444354
+𢲪 1211212511211
+𢲫 1211211254444
+𢲬 1211354311234
+𢲭 1211253511515
+𢲮 1211221112121
+𢲯 1214411343434
+𢲰 1213541352511
+𢲱 31121122125211
+𢲲 12145115452
+𢲳 12112132343134
+𢲴 513112341243112
+𢲵 12112512212511
+𢲶 12131431425111
+𢲷 12144535413434
+𢲸 12121253444441
+𢲹 12131431454251
+𢲺 12131431434234
+𢲻 12144512211154
+𢲼 12144535154121
+𢲽 12133215315252
+𢲾 12151122511123
+𢲿 314314121353112
+𢳀 12141312351235
+𢳁 413311121113112
+𢳂 121251211212112
+𢳃 12112121154444
+𢳄 12141533152134
+𢳅 413311252223112
+𢳆 12112141533134
+𢳇 12141533131134
+𢳈 415331311343112
+𢳉 554444352513112
+𢳊 12112134121354
+𢳋 12141332511312
+𢳌 12121211214555
+𢳍 12112522113455
+𢳎 12112121212341
+𢳏 12155423425121
+𢳐 12125213252222
+𢳑 12112124511534
+𢳒 12113134531534
+𢳓 12131431431334
+𢳔 445321325113112
+𢳕 12125234343511
+𢳖 12144213354141
+𢳗 12113543541234
+𢳘 1214111251454
+𢳙 12144535341534
+𢳚 12132511151234
+𢳛 12121531525111
+𢳜 12133221212134
+𢳝 12112212511253
+𢳞 12112211125211
+𢳟 1215425112454
+𢳠 1211221344132
+𢳡 12144525114134
+𢳢 12122352511135
+𢳣 12141432535251
+𢳤 12144535413534
+𢳥 1213121251454
+𢳦 12144535333534
+𢳧 12141351124134
+𢳨 12111134251214
+𢳩 12112131251221
+𢳪 1211251234454
+𢳫 12151512111534
+𢳬 12114524134511
+𢳭 12112121213251
+𢳮 12112512343312
+𢳯 12112512343134
+𢳰 12154334251214
+𢳱 12152134251214
+𢳲 12151344153254
+𢳳 12125234125122
+𢳴 12121212331534
+𢳵 12121531512134
+𢳶 12135251214444
+𢳷 12135253425221
+𢳸 12134433112121
+𢳹 12135131251124
+𢳺 12131554143134
+𢳻 12134434513544
+𢳼 12145434413434
+𢳽 12131234225454
+𢳾 12131251121153
+𢳿 12141315112134
+𢴀 12144532125341
+𢴁 12112212511134
+𢴂 12114513251225
+𢴃 12115321135334
+𢴄 12125221541541
+𢴅 12141251453115
+𢴆 12144111212511
+𢴇 12112143112354
+𢴈 12131431425111
+𢴉 1211223411234
+𢴊 1211353334454
+𢴋 12155444435444
+𢴌 12151122511251
+𢴍 12144512512134
+𢴎 12135114325135
+𢴏 12144134433121
+𢴐 12131234354354
+𢴑 12134312344544
+𢴒 12141251524444
+𢴓 12113242511135
+𢴔 12125111343354
+𢴕 12144512522112
+𢴖 12145133134251
+𢴗 12144143344334
+𢴘 12135311212511
+𢴙 12125113434234
+𢴚 1211122132515
+𢴛 12133121211254
+𢴜 12132511413435
+𢴝 3112122521135
+𢴞 311325221323434
+𢴟 1215212511234
+𢴠 121414312511534
+𢴡 121125125543112
+𢴢 121121222511134
+𢴣 121432524312511
+𢴤 121243452511234
+𢴥 121125112144544
+𢴦 121121132511134
+𢴧 121111251113454
+𢴨 121414345252251
+𢴩 121314314511112
+𢴪 121121112343534
+𢴫 121555253435112
+𢴬 121112141341121
+𢴭 5544443552153112
+𢴮 121215315225211
+𢴯 1212121121431251
+𢴰 121554554134534
+𢴱 121545454554234
+𢴲 121111253554234
+𢴳 4412511135333112
+𢴴 1212135422413534
+𢴵 121433443344334
+𢴶 121411211253534
+𢴷 1344311253113112
+𢴸 1213512153113115
+𢴹 121334343434121
+𢴺 1343152335343112
+𢴻 121123412342154
+𢴼 121353211511354
+𢴽 3112121121121135
+𢴾 121311121114544
+𢴿 121122511123511
+𢵀 121314314352511
+𢵁 121351135431234
+𢵂 12134215112154
+𢵃 121251125114544
+𢵄 121343434342511
+𢵅 121311342511135
+𢵆 121145244441154
+𢵇 121212112145534
+𢵈 121431121431251
+𢵉 12125111343454
+𢵊 12145241251431
+𢵋 1211213251152
+𢵌 12152431353334
+𢵍 121135413541234
+𢵎 121212111245534
+𢵏 121212133541422
+𢵐 121351335411344
+𢵑 121122111431134
+𢵒 121121213453251
+𢵓 121121251431333
+𢵔 121513521521521
+𢵕 121122511123112
+𢵖 121121225135515
+𢵗 121121235431234
+𢵘 121121235311252
+𢵙 121121235531234
+𢵚 121251113421251
+𢵛 121121234431234
+𢵜 121311231123112
+𢵝 121353121225121
+𢵞 121351331112111
+𢵟 121251342511134
+𢵠 3535112531523112
+𢵡 3411243135343112
+𢵢 121511225114134
+𢵣 121121551214544
+𢵤 2511251113443112
+𢵥 3123424325113112
+𢵦 121311341251431
+𢵧 121511225112511
+𢵨 1214311252543112
+𢵩 311352431353334
+𢵪 121211121114134
+𢵫 121431253511134
+𢵬 3113515515122134
+𢵭 12112213434234
+𢵮 121545232534251
+𢵯 121252212511134
+𢵰 121554444341251
+𢵱 121511225111132
+𢵲 121251414313333
+𢵳 121123412341234
+𢵴 121212151145252
+𢵵 12112225111234
+𢵶 121341124311525
+𢵷 121445111225122
+𢵸 121324111211234
+𢵹 121413413155414
+𢵺 121441122111345
+𢵻 12144112132511
+𢵼 121121213415534
+𢵽 121521211251234
+𢵾 121344341431251
+𢵿 32511415321543112
+𢶀 1212522131112111
+𢶁 1211252212511412
+𢶂 121451251112454
+𢶃 1214334132511134
+𢶄 1211134132511134
+𢶅 1213143141234341
+𢶆 1212511353453534
+𢶇 1214334433445513
+𢶈 121515121121251
+𢶉 1211452413435515
+𢶊 1214451122134515
+𢶋 1211212513121534
+𢶌 1213143144412343
+𢶍 1211134211121111
+𢶎 1213411243133544
+𢶏 1211252211123422
+𢶐 1212153151251431
+𢶑 1213251115413534
+𢶒 1213412524312511
+𢶓 1213251114143112
+𢶔 1212511252214153
+𢶕 1214313511224444
+𢶖 1213413511553534
+𢶗 52252415331343112
+𢶘 121132411121454
+𢶙 1213215111213554
+𢶚 1211211254444132
+𢶛 1215213554234132
+𢶜 41553324111213112
+𢶝 1215111212512134
+𢶞 1213551131344444
+𢶟 3112252325113554
+𢶠 1213143142432511
+𢶡 32511415331343112
+𢶢 1213252213533434
+𢶣 1215454544525111
+𢶤 1211221251123235
+𢶥 1214413241112112
+𢶦 1213541212511134
+𢶧 1214143135112234
+𢶨 1214313511224334
+𢶩 1211113425111534
+𢶪 1211211251112534
+𢶫 1211221112513121
+𢶬 1211212354541112
+𢶭 1211212251135515
+𢶮 1212521211254444
+𢶯 1211212251125214
+𢶰 1211212353344544
+𢶱 1213251131341234
+𢶲 1213123443344544
+𢶳 1211154122151234
+𢶴 1214315545544544
+𢶵 1215132413452252
+𢶶 1214143125114544
+𢶷 1213535112533112
+𢶸 1214125251131234
+𢶹 1212511414312511
+𢶺 1214453435321511
+𢶻 121122353251214
+𢶼 121252325113554
+𢶽 121523443321511
+𢶾 1213113432411121
+𢶿 121331225111454
+𢷀 1213412511224544
+𢷁 1213511122543112
+𢷂 1212135454431234
+𢷃 1215112251141252
+𢷄 1214411314334534
+𢷅 1212512121354251
+𢷆 31134125251125111
+𢷇 1211234343434134
+𢷈 1214453551352252
+𢷉 1214143131153115
+𢷊 121431353334454
+𢷋 12112522111234124
+𢷌 12112145132511234
+𢷍 12134431215114544
+𢷎 12152352352213412
+𢷏 12132224314311134
+𢷐 121124525121542134
+𢷑 12125115545544444
+𢷒 12141431251135345
+𢷓 12112132341213234
+𢷔 12141533113412512
+𢷕 12134435333251135
+𢷖 12155455415545545
+𢷗 12112211154323434
+𢷘 12144511221343112
+𢷙 12131431444535121
+𢷚 12154334125143122
+𢷛 12114524134354354
+𢷜 12112512341251234
+𢷝 12135112351124544
+𢷞 1211221215425221
+𢷟 12112452512152134
+𢷠 12131254312114444
+𢷡 12112534125341234
+𢷢 1214143125111252
+𢷣 1213211152511134
+𢷤 12144552132511134
+𢷥 12143123412211134
+𢷦 12112511121251112
+𢷧 12153254132511134
+𢷨 12134125131123112
+𢷩 1213143143212154
+𢷪 1213251135544412
+𢷫 1213541311252454
+𢷬 12111525121251124
+𢷭 12112112544443534
+𢷮 12122431431121124
+𢷯 12112512512515134
+𢷰 12112511121555121
+𢷱 12141325112512531
+𢷲 12132112511511134
+𢷳 12135253425111354
+𢷴 12112512125111345
+𢷵 12131122221354152
+𢷶 121354533411243122
+𢷷 121314314121325114
+𢷸 121332252131213134
+𢷹 121413251121135121
+𢷺 121121252212511134
+𢷻 121554444551353334
+𢷼 121323434343413121
+𢷽 1215115415341234
+𢷾 121132112345344544
+𢷿 121234314111211534
+𢸀 1211211123451124134
+𢸁 32112512515111343112
+𢸂 121321155451114334
+𢸃 121252211212513534
+𢸄 121431351122541541
+𢸅 121123434341234134
+𢸆 121121225111343112
+𢸇 2522154354115153112
+𢸈 121414325122513534
+𢸉 121215315251125111
+𢸊 121132515215413534
+𢸋 121121213424325251
+𢸌 12131135232511252
+𢸍 121145241341311534
+𢸎 121445212125111354
+𢸏 1214311342511251112
+𢸐 121351332511154444
+𢸑 121414325122513134
+𢸒 121125125542511134
+𢸓 121121225111342511
+𢸔 121335414355425221
+𢸕 121314314354541112
+𢸖 121335443354433544
+𢸗 121344312421531535
+𢸘 121445134432511234
+𢸙 121445343123425121
+𢸚 1211223541112454
+𢸛 121411125135121251
+𢸜 12143123435415252
+𢸝 121441113411342511
+𢸞 12154334125143152
+𢸟 121323412512513434
+𢸠 121411125125111234
+𢸡 121212134341343452
+𢸢 121314314551353334
+𢸣 1214112112544443534
+𢸤 1214311213123415534
+𢸥 1213143142511113454
+𢸦 121251212511134454
+𢸧 12135121433443343112
+𢸨 1211251245132511234
+𢸩 1211541211113431234
+𢸪 1214544251214251214
+𢸫 1213525121444431234
+𢸬 1214125221241343534
+𢸭 41431354115151113112
+𢸮 1213112222112341234
+𢸯 1213211325341511134
+𢸰 1211541211541212511
+𢸱 1211213512143344334
+𢸲 1211452413425112511
+𢸳 12112125112321155212
+𢸴 1215112251135321511
+𢸵 1215132514143112121
+𢸶 1212511122111545454
+𢸷 121515515122134454
+𢸸 1211251431132511134
+𢸹 1211325114453541234
+𢸺 1211212324111214444
+𢸻 1212243125111221154
+𢸼 1213411243132511252
+𢸽 1213143143541541112
+𢸾 1213211251251511134
+𢸿 1213143141311121115
+𢹀 1213123412512343534
+𢹁 34112431215315353112
+𢹂 121252324111212525
+𢹃 121353123432511134
+𢹄 1215235235223434112
+𢹅 1214412522135251214
+𢹆 1214111251153532511
+𢹇 1212543121113444444
+𢹈 1213143144143125115
+𢹉 1213123453132511134
+𢹊 1214334414312511534
+𢹋 1213354143554325221
+𢹌 121513241343112454
+𢹍 12121531512514311534
+𢹎 1211325111222121515354
+𢹏 321112511125111343112
+𢹐 12151325141431121234
+𢹑 12144535543341251431
+𢹒 12141112514334433454
+𢹓 12141432533543211234
+𢹔 12143123425121122134
+𢹕 12112123412343434341
+𢹖 12143132511112511534
+𢹗 1211214311123134454
+𢹘 12121213525131343112
+𢹙 12143344334132522111
+𢹚 12112111543335114554
+𢹛 12135251214444431112
+𢹜 12112213425234343434
+𢹝 12114524444251251251
+𢹞 12145132522112513534
+𢹟 12121124134132511134
+𢹠 12113312343123422431
+𢹡 12125121213443321511
+𢹢 12131431425121122134
+𢹣 12131134313425125251
+𢹤 12112121343552335523
+𢹥 12113251125111344121
+𢹦 12134125125134343534
+𢹧 1211253511325113554
+𢹨 12155444454545434333
+𢹩 12114524444123425111
+𢹪 12143123454545434333
+𢹫 111253311244545434252
+𢹬 121555251521532411121
+𢹭 5552515215324111213112
+𢹮 121251212512125121121
+𢹯 121251152252134431234
+𢹰 121321132534151114334
+𢹱 1213143145112321155212
+𢹲 121413522115155113251
+𢹳 121321115251113425221
+𢹴 121255455452255455454
+𢹵 12112125241341331121
+𢹶 121511225115545544444
+𢹷 121445354251132511134
+𢹸 121224314311212211154
+𢹹 121121212512531125221
+𢹺 121314314251251251112
+𢹻 121325111121132511134
+𢹼 121413434123432411121
+𢹽 121314314153515352511
+𢹾 121325151212151145252
+𢹿 121452425122111251431
+𢺀 12141112511222511134
+𢺁 121125221332312511354
+𢺂 121215315121431112454
+𢺃 1211212252554234251214
+𢺄 1215112251155455452212
+𢺅 1213143143412512513434
+𢺆 121415251354141431354
+𢺇 1211212325115545541234
+𢺈 1214111251554444554444
+𢺉 1211212251125214251214
+𢺊 1211212344325234343434
+𢺋 12212511134324111213112
+𢺌 1211341221123412211234
+𢺍 121122555253415445445
+𢺎 1213511555253415445445
+𢺏 1211234343412341343112
+𢺐 1211212121351213541154
+𢺑 1214152513541431112354
+𢺒 1213525121444411134112
+𢺓 1211452444444134433121
+𢺔 1214451121352342511134
+𢺕 1211325111212151535354
+𢺖 12125111251251112213534
+𢺗 12112251111341225111134
+𢺘 12125125113121221113134
+𢺙 12131431412512531125221
+𢺚 12134112431414312511211
+𢺛 12151122511251251251112
+𢺜 12131431454154132411121
+𢺝 1211225544442534125221
+𢺞 121145241341221251123511
+𢺟 121513431112431112431112
+𢺠 121413555251521532411121
+𢺡 121513241342522135251214
+𢺢 121251212512125121554234
+𢺣 121314314344325234343434
+𢺤 12112251122511125431234
+𢺥 121411125155444455444454
+𢺦 121445523522353434523522
+𢺧 121415252213511431112354
+𢺨 121111342511251214251214
+𢺩 121125111212511121251112
+𢺪 121131153413115341311534
+𢺫 121251125114553444512134
+𢺬 1212125344444125341251522
+𢺭 1211221113121132522114544
+𢺮 1213143141251253112511135
+𢺯 1214111251554444554444515
+𢺰 121145241342512512511234341
+𢺱 121251112511145123412344444
+𢺲 121411125155444455444425134
+𢺳 1214111251554444554444251214
+𢺴 12112343112521234453444445215333
+𢺵 151254
+𢺶 1254252
+𢺷 12521254
+𢺸 12541254
+𢺹 34531254
+𢺺 12543553
+𢺻 11341254
+𢺼 33121254
+𢺽 34341254
+𢺾 351511254
+𢺿 122151254
+𢻀 512111254
+𢻁 3525351254
+𢻂 3112521254
+𢻃 2112341254
+𢻄 3513351254
+𢻅 2512211254
+𢻆 3412511254
+𢻇 3542511254
+𢻈 1254354354
+𢻉 4153341254
+𢻊 12512511254
+𢻋 1254251251
+𢻌 25152151254
+𢻍 54511541254
+𢻎 122135411254
+𢻏 121431121254
+𢻐 431121351254
+𢻑 433443341254
+𢻒 243252511254
+𢻓 412515211254
+𢻔 251112341254
+𢻕 4143125111254
+𢻖 2511121341254
+𢻗 1123215111254
+𢻘 4131211211254
+𢻙 5425112341254
+𢻚 54545412341254
+𢻛 21254543411254
+𢻜 44511122511254
+𢻝 121351213541254
+𢻞 325111351211254
+𢻟 445433443341254
+𢻠 3513324111211254
+𢻡 2522125111211254
+𢻢 1344325112341254
+𢻣 2511121251121254
+𢻤 3134251252511254
+𢻥 25125125112341254
+𢻦 12341234253541254
+𢻧 25221352512141254
+𢻨 31342111211111254
+𢻩 325113121212111254
+𢻪 25125113442512511254
+𢻫 5252154
+𢻬 4153134
+𢻭 3542154
+𢻮 5243134
+𢻯 3134521
+𢻰 5152154
+𢻱 5253134
+𢻲 3452154
+𢻳 11342154
+𢻴 15252154
+𢻵 12522154
+𢻶 34152154
+𢻷 52152154
+𢻸 35412154
+𢻹 15153134
+𢻺 32323134
+𢻻 35132154
+𢻼 45352154
+𢻽 15542154
+𢻾 12353134
+𢻿 21543511
+𢼀 45352154
+𢼁 21153134
+𢼂 34343134
+𢼃 35543134
+𢼄 45133134
+𢼅 54543134
+𢼆 12523134
+𢼇 35113134
+𢼈 45353134
+𢼉 542513134
+𢼊 445153134
+𢼋 125233134
+𢼌 355152154
+𢼍 522522154
+𢼎 312112154
+𢼏 315253134
+𢼐 453542154
+𢼑 15153134
+𢼒 352512154
+𢼓 251123134
+𢼔 125123134
+𢼕 351513134
+𢼖 512112154
+𢼗 112342154
+𢼘 122123134
+𢼙 251353134
+𢼚 451353134
+𢼛 3542512154
+𢼜 4132343134
+𢼝 4311132154
+𢼞 5132522154
+𢼟 5211212154
+𢼠 345353134
+𢼡 3112343134
+𢼢 3412342154
+𢼣 1212512154
+𢼤 3122512154
+𢼥 3533533134
+𢼦 1221342154
+𢼧 1251252154
+𢼨 3513552154
+𢼩 4311322154
+𢼪 1515213134
+𢼫 3434343134
+𢼬 3434342154
+𢼭 1221343134
+𢼮 3513553134
+𢼯 2431352154
+𢼰 2512212154
+𢼱 2534342154
+𢼲 3112342154
+𢼳 1112153134
+𢼴 2431353134
+𢼵 4153343134
+𢼶 4311323134
+𢼷 5151323134
+𢼸 2521353134
+𢼹 12511242154
+𢼺 12133122154
+𢼻 34435312154
+𢼼 24325112154
+𢼽 34342512154
+𢼾 21251222154
+𢼿 51135112154
+𢽀 13443342154
+𢽁 12121122154
+𢽂 21544511534
+𢽃 25211212154
+𢽄 3121542154
+𢽅 52252532154
+𢽆 24352353134
+𢽇 14313453134
+𢽈 31234353134
+𢽉 44511353134
+𢽊 12511243134
+𢽋 21251223134
+𢽌 34525213134
+𢽍 31212513134
+𢽎 25111123134
+𢽏 51132513134
+𢽐 24335413134
+𢽑 43455213134
+𢽒 41251213134
+𢽓 12112343134
+𢽔 12125153134
+𢽕 25111352154
+𢽖 51145542154
+𢽗 25221213134
+𢽘 52252353134
+𢽙 51331153134
+𢽚 135334342154
+𢽛 251214123134
+𢽜 51325342154
+𢽝 324111212154
+𢽞 121431122154
+𢽟 134342343134
+𢽠 252131213134
+𢽡 252132513134
+𢽢 251125112154
+𢽣 353215112154
+𢽤 511122513134
+𢽥 323434152154
+𢽦 445351212154
+𢽧 351212512154
+𢽨 353345442154
+𢽩 351135112154
+𢽪 511452522154
+𢽫 415412342154
+𢽬 125112343134
+𢽭 212511152154
+𢽮 413542343134
+𢽯 413544443134
+𢽰 511452523134
+𢽱 134251153134
+𢽲 351313443134
+𢽳 123512353134
+𢽴 135334343134
+𢽵 251135113134
+𢽶 353215113134
+𢽷 51325343134
+𢽸 252351123134
+𢽹 351525113134
+𢽺 415544443134
+𢽻 433443343134
+𢽼 521534343134
+𢽽 134125123134
+𢽾 443455212154
+𢽿 3443122512154
+𢾀 121325112154
+𢾁 5212511522154
+𢾂 5131512342154
+𢾃 2125343412154
+𢾄 3413511223134
+𢾅 4131221543134
+𢾆 1515325112154
+𢾇 1251251212154
+𢾈 5225235332154
+𢾉 4143112343134
+𢾊 4125145122154
+𢾋 2521343342154
+𢾌 3215111212154
+𢾍 5225241532154
+𢾎 1113425112154
+𢾏 4453542512154
+𢾐 4454334542154
+𢾑 4143125112154
+𢾒 4451212512154
+𢾓 3251134442154
+𢾔 2511121545134
+𢾕 5225241533134
+𢾖 4131221542154
+𢾗 4312341343134
+𢾘 121213134454
+𢾙 2511135332154
+𢾚 4143125113134
+𢾛 4125143123134
+𢾜 1113425113134
+𢾝 5212511523134
+𢾞 5151525113134
+𢾟 3251112343134
+𢾠 2121252512154
+𢾡 2521343343134
+𢾢 3443455213134
+𢾣 15412343134
+𢾤 1221113553134
+𢾥 3513251112154
+𢾦 3112212342154
+𢾧 52534144442154
+𢾨 31234353132154
+𢾩 12154252212154
+𢾪 54545412342154
+𢾫 52312512142154
+𢾬 41431343342154
+𢾭 12511241243134
+𢾮 44525132512154
+𢾯 13115341242154
+𢾰 25215542343134
+𢾱 32534115152154
+𢾲 51541515412154
+𢾳 12122511123134
+𢾴 13412123122154
+𢾵 13413412512154
+𢾶 12343434343134
+𢾷 25213542513134
+𢾸 12211135342154
+𢾹 35135111123134
+𢾺 13111211153134
+𢾻 12111211152154
+𢾼 51541515413134
+𢾽 31221135342154
+𢾾 12511241533134
+𢾿 12512543122154
+𢿀 15342512512154
+𢿁 25234342512154
+𢿂 11234313413112
+𢿃 25125111343134
+𢿄 11234313412121
+𢿅 32221542512121
+𢿆 52252112342154
+𢿇 413522115152154
+𢿈 545454343332154
+𢿉 325112343332154
+𢿊 215415251212154
+𢿋 125234313412121
+𢿌 352534251112154
+𢿍 112343134132154
+𢿎 325111111132154
+𢿏 125221112342154
+𢿐 554121431123134
+𢿑 212534125542154
+𢿒 552125111342154
+𢿓 214525111343134
+𢿔 352522522343134
+𢿕 251125221542154
+𢿖 125221112343134
+𢿗 252341251223134
+𢿘 251125125312154
+𢿙 251125125313135
+𢿚 545433122522154
+𢿛 125125125143134
+𢿜 251125221543134
+𢿝 21253425542154
+𢿞 1344325112342154
+𢿟 5151211212512154
+𢿠 1212225111342154
+𢿡 2145125111342154
+𢿢 3445542554542154
+𢿣 1211211211352154
+𢿤 5433412514312154
+𢿥 3431234251212154
+𢿦 2434525115233134
+𢿧 2434525112342154
+𢿨 1234123435112154
+𢿩 2121112352512154
+𢿪 4143452522512154
+𢿫 1251234215412121
+𢿬 3251125343333134
+𢿭 3513313421251112
+𢿮 3443512554122154
+𢿯 122251211323134
+𢿰 1214534312343134
+𢿱 1234123425113134
+𢿲 1211211211353134
+𢿳 3443542554543134
+𢿴 3412515415413134
+𢿵 2434525112343134
+𢿶 2145134342513134
+𢿷 1241341241342154
+𢿸 3143141252342154
+𢿹 344252112342154
+𢿺 5454545425112154
+𢿻 4312343541523134
+𢿼 5111212511243134
+𢿽 2434525115233134
+𢿾 25125125112342154
+𢿿 12343412525112154
+𣀀 14524134251212154
+𣀁 35133541112512154
+𣀂 25122112514312154
+𣀃 41343151122342154
+𣀄 511325121211122154
+𣀅 2243143252343134
+𣀆 51132514311123134
+𣀇 25221121431122154
+𣀈 25221352512143134
+𣀉 25125125112343134
+𣀊 41343151122343134
+𣀋 12122111252353134
+𣀌 25125111221113134
+𣀍 12452413425342154
+𣀎 34435225223452154
+𣀏 24345251122112154
+𣀐 325111121431123134
+𣀑 134252343434342154
+𣀒 122111543234342154
+𣀓 121512112511242154
+𣀔 314314251111322154
+𣀕 251113425111342154
+𣀖 314314121352512154
+𣀗 152331341313434234
+𣀘 121512112511243134
+𣀙 123412342534342154
+𣀚 431251145121213134
+𣀛 2511122134241342154
+𣀜 2512125121251212154
+𣀝 3251155455412342154
+𣀞 2153152512145442154
+𣀟 5215251125125313134
+𣀠 2511122134241343134
+𣀡 2512125121251213134
+𣀢 4111251433443343134
+𣀣 13125153435351122154
+𣀤 41252212413435342154
+𣀥 13312343123421212154
+𣀦 41251251121211122154
+𣀧 12341234324111212154
+𣀨 125153451125142154
+𣀩 41252212413435343134
+𣀪 12511534442251512154
+𣀫 41312321235122112154
+𣀬 25125113442512513134
+𣀭 32115112125115313134
+𣀮 41251251112135342154
+𣀯 413123512351221112154
+𣀰 431234122112221342154
+𣀱 431234122112121343134
+𣀲 431234251211221342154
+𣀳 1221111221111221113134
+𣀴 2432525131344525115151
+𣀵 41112515544445544442154
+𣀶 31213531213525111342154
+𣀷 12541254413522115152154
+𣀸 1222525544442512143134
+𣀹 31213531213525111343134
+𣀺 21212525542342512142154
+𣀻 5132413425221352512142154
+𣀼 5132413425221352512143134
+𣀽 43252433134311543123425121
+𣀾 125115341251153435351122154
+𣀿 3543541354135425225243343134
+𣁀 13125153413125153435351122154
+𣁁 344134
+𣁂 2434134
+𣁃 41345234
+𣁄 41343112
+𣁅 41534134
+𣁆 413445434
+𣁇 413412121
+𣁈 413435515
+𣁉 454344134
+𣁊 4311324134
+𣁋 2521353134
+𣁌 4134251112
+𣁍 3443454134
+𣁎 41344111251
+𣁏 34112344134
+𣁐 41342511135
+𣁑 41343241121
+𣁒 12212344134
+𣁓 32511154134
+𣁔 41342511515
+𣁕 413441344134
+𣁖 122511124134
+𣁗 2521343344134
+𣁘 454251225251
+𣁙 1212321214134
+𣁚 41345115452
+𣁛 112343134133134
+𣁜 251125221544134
+𣁝 344312344134333
+𣁞 121351213544134
+𣁟 112343134134134
+𣁠 45441351125112
+𣁡 45412522111234
+𣁢 432523431344134
+𣁣 4312343541524134
+𣁤 11134251141344134
+𣁥 45412512531125221
+𣁦 413411212154341121
+𣁧 4111251433443344134
+𣁨 13251145121325114134
+𣁩 123441341234455115454
+𣁪 413425111251114525111
+𣁫 4134321134345114525221
+𣁬 5112
+𣁭 5354412
+𣁮 31124412
+𣁯 44121135
+𣁰 44123312
+𣁱 251124413
+𣁲 441235444
+𣁳 1122514412
+𣁴 3412514412
+𣁵 4311134412
+𣁶 4412341534
+𣁷 34431244412
+𣁸 12111544412
+𣁹 44121253511
+𣁺 34535154412
+𣁻 44123544124
+𣁼 413541534412
+𣁽 325121354412
+𣁾 441244124412
+𣁿 441213341534
+𣂀 133415344412
+𣂁 4133415344412
+𣂂 41342512144412
+𣂃 121325114412
+𣂄 2512252514412
+𣂅 4143135414412
+𣂆 41434541534412
+𣂇 44121321112111
+𣂈 43344334454412
+𣂉 414325122514412
+𣂊 513112341244412
+𣂋 451344123121251
+𣂌 44122522135251214
+𣂍 12145135351124412
+𣂎 441122125234344412
+𣂏 1132511132511344412
+𣂐 11325111325111344412
+𣂑 3312
+𣂒 533312
+𣂓 3312121
+𣂔 32153312
+𣂕 11323312
+𣂖 11323312
+𣂗 11323312
+𣂘 12343312
+𣂙 331233124
+𣂚 525233312
+𣂛 3112343312
+𣂜 1251253312
+𣂝 3312325251
+𣂞 45115343312
+𣂟 25215233312
+𣂠 33321213312
+𣂡 135334343312
+𣂢 212511153312
+𣂣 212511123312
+𣂤 351135113312
+𣂥 133415343312
+𣂦 134125123312
+𣂧 153415343312
+𣂨 251135333312
+𣂩 312122113312
+𣂪 121551213312
+𣂫 252112343312
+𣂬 353331211252
+𣂭 344311533124
+𣂮 3413511223312
+𣂯 2121522523312
+𣂰 2511353453312
+𣂱 1255455453312
+𣂲 2521215233312
+𣂳 4125145123312
+𣂴 3312412514512
+𣂵 5513533343312
+𣂶 21213112523312
+𣂷 12212511213312
+𣂸 21251121213312
+𣂹 25234345233312
+𣂺 41431112343312
+𣂻 125125125153312
+𣂼 12212511213312
+𣂽 251251153413312
+𣂾 554554121213312
+𣂿 252213215343312
+𣃀 3434343425113312
+𣃁 5133251252143312
+𣃂 5111212512113312
+𣃃 3545312514313312
+𣃄 122112125113312
+𣃅 3312453435251354
+𣃆 5433412514313312
+𣃇 314314251113312
+𣃈 1212121325113312
+𣃉 33122434525125121
+𣃊 25111331233123312
+𣃋 35454341124313312
+𣃌 433443343541523312
+𣃍 31431425111323312
+𣃎 414311241112513312
+𣃏 511214444252213312
+𣃐 331212125111345453
+𣃑 3143141213251143312
+𣃒 2511125111133123312
+𣃓 2512512512511123312
+𣃔 55455421554554213312
+𣃕 1221252212511123312
+𣃖 2511125111324111213312
+𣃗 415353
+𣃘 4153342
+𣃙 1344153
+𣃚 41534135
+𣃛 41534334
+𣃜 44124153
+𣃝 415325134
+𣃞 134124153
+𣃟 121454153
+𣃠 415334454
+𣃡 415341554
+𣃢 415334415
+𣃣 415353254
+𣃤 532544153
+𣃥 415331234
+𣃦 4153313533
+𣃧 4153312511
+𣃨 4153313434
+𣃩 4153313523
+𣃪 1352114153
+𣃫 4153252252
+𣃬 4153313132
+𣃭 4153313432
+𣃮 4153313515
+𣃯 4153313541
+𣃰 4153312534
+𣃱 4153111215
+𣃲 4153313544
+𣃳 41533125541
+𣃴 41533125341
+𣃵 41533125112
+𣃶 4153344452
+𣃷 41532125341
+𣃸 25114454153
+𣃹 41533151515
+𣃺 41533434251
+𣃻 41533125112
+𣃼 415331335414
+𣃽 415331354354
+𣃾 415313425115
+𣃿 415331521135
+𣄀 415331341121
+𣄁 415334434554
+𣄂 415315112134
+𣄃 415312211134
+𣄄 415312123312
+𣄅 415334112251
+𣄆 415331413534
+𣄇 415334125122
+𣄈 4153451251112
+𣄉 4153311253511
+𣄊 415331154444
+𣄋 1121325114153
+𣄌 4153152511134
+𣄍 4153251112134
+𣄎 41531251124124
+𣄏 41535413425121
+𣄐 41533144535252
+𣄑 41533113425115
+𣄒 41533444132121
+𣄓 41533143143115
+𣄔 415312522111234
+𣄕 415331414312511
+𣄖 415331353251214
+𣄗 415325121122134
+𣄘 4153312512453541
+𣄙 4153312511243135
+𣄚 4153431353334454
+𣄛 4153414312511211
+𣄜 4153251212511134
+𣄝 41533412512513434
+𣄞 415331414312511534
+𣄟 415312512452155121
+𣄠 415331134413441344
+𣄡 415331433443344334
+𣄢 415331414312511211
+𣄣 41533211152511134
+𣄤 4153352512144442511
+𣄥 41434541533241112154
+𣄦 415331413522115154444
+𣄧 415331251212511134454
+𣄨 4153312512512511123312
+𣄩 41531212125111132511134
+𣄪 415331321132534151114334
+𣄫 4153121212511134132511134
+𣄬 41434541531331234312342121
+𣄭 153533
+𣄮 1535251
+𣄯 3351535
+𣄰 153512512
+𣄱 1535121121
+𣄲 1535351355
+𣄳 1135354152
+𣄴 153541251234
+𣄵 412512341535
+𣄶 4125112341535
+𣄷 1535412511234
+𣄸 1535251225251
+𣄹 541541325111535
+𣄺 1535344335554444
+𣄻 25115
+𣄼 12511
+𣄽 52511
+𣄾 251111
+𣄿 251112
+𣅀 412511
+𣅁 251134
+𣅂 251141
+𣅃 251124
+𣅄 251154
+𣅅 251153
+𣅆 1342511
+𣅇 2511415
+𣅈 3542511
+𣅉 2511534
+𣅊 2511251
+𣅋 2511431
+𣅌 3122511
+𣅍 2525111
+𣅎 3412511
+𣅏 2511535
+𣅐 2511134
+𣅑 4312511
+𣅒 2511315
+𣅓 2511531
+𣅔 25115134
+𣅕 2511322
+𣅖 2511415
+𣅗 2511515
+𣅘 2511115
+𣅙 2511115
+𣅚 25112534
+𣅛 13322511
+𣅜 15152511
+𣅝 25113454
+𣅞 325132511
+𣅟 25114535
+𣅠 25113115
+𣅡 25115134
+𣅢 25113512
+𣅣 25112511
+𣅤 25111344
+𣅥 25111551
+𣅦 13342511
+𣅧 25112511
+𣅨 11212511
+𣅩 52132511
+𣅪 25111515
+𣅫 25113112
+𣅬 25113135
+𣅭 25113444
+𣅮 25113132
+𣅯 12251121
+𣅰 12152511
+𣅱 23412511
+𣅲 31522511
+𣅳 25115134
+𣅴 25115211
+𣅵 25114544
+𣅶 25114134
+𣅷 251125135
+𣅸 251144535
+𣅹 251141132
+𣅺 251155453
+𣅻 251125251
+𣅼 251125112
+𣅽 251152252
+𣅾 252112511
+𣅿 251154251
+𣆀 251125211
+𣆁 521342511
+𣆂 251141554
+𣆃 251113511
+𣆄 251153533
+𣆅 25113454
+𣆆 251132511
+𣆇 112342511
+𣆈 251113534
+𣆉 251125112
+𣆊 251212511
+𣆋 251131234
+𣆌 354552511
+𣆍 251141535
+𣆎 251135112
+𣆏 251113241
+𣆐 251121513
+𣆑 353512511
+𣆒 2511134534
+𣆓 2511513121
+𣆔 2511335414
+𣆕 5353532511
+𣆖 2511415325
+𣆗 2511341251
+𣆘 2511125134
+𣆙 2511441112
+𣆚 2511354354
+𣆛 1252212511
+𣆜 251125121
+𣆝 2511132522
+𣆞 2511112121
+𣆟 21213525111
+𣆠 2511525254
+𣆡 2511351355
+𣆢 2511325111
+𣆣 2511251214
+𣆤 2431352511
+𣆥 2431352511
+𣆦 2511311234
+𣆧 2511135135
+𣆨 2251135112
+𣆩 2522112511
+𣆪 2511251522
+𣆫 3215112511
+𣆬 2511415555
+𣆭 2511134534
+𣆮 2511413121
+𣆯 2511332112
+𣆰 2511151534
+𣆱 2511132521
+𣆲 25115114554
+𣆳 25111251134
+𣆴 25113212154
+𣆵 25113211511
+𣆶 35251352511
+𣆷 25111211215
+𣆸 51125115154
+𣆹 25114525111
+𣆺 25112433541
+𣆻 25115151251
+𣆼 35251151132
+𣆽 25111312112
+𣆾 3535342511
+𣆿 25113251135
+𣇀 32115112511
+𣇁 25111555121
+𣇂 25112523445
+𣇃 43113422511
+𣇄 25111213312
+𣇅 25111215512
+𣇆 25114451234
+𣇇 32155425111
+𣇈 25111534135
+𣇉 25115113251
+𣇊 25111324251
+𣇋 25114325135
+𣇌 25111214544
+𣇍 25111343434
+𣇎 25111515515
+𣇏 25111234251
+𣇐 25111213534
+𣇑 22511321112
+𣇒 25112513121
+𣇓 25115132125
+𣇔 25113541112
+𣇕 25113121534
+𣇖 25111212511
+𣇗 25111351154
+𣇘 31234222511
+𣇙 32511352511
+𣇚 25115423454
+𣇛 25114143112
+𣇜 25112511134
+𣇝 25114134454
+𣇞 25113411234
+𣇟 25114453112
+𣇠 25115311254
+𣇡 25115154544
+𣇢 25114325234
+𣇣 251112251115
+𣇤 251135334544
+𣇥 25111255151
+𣇦 2511312121211
+𣇧 251135414334
+𣇨 251151124134
+𣇩 121551212511
+𣇪 251112214334
+𣇫 251125111234
+𣇬 251144535515
+𣇭 251133231121
+𣇮 123432152511
+𣇯 251135133513
+𣇰 251112341234
+𣇱 252511252511
+𣇲 251135152511
+𣇳 251112211134
+𣇴 251135114134
+𣇵 251125113511
+𣇶 511511452511
+𣇷 251112124153
+𣇸 121212342511
+𣇹 441515152511
+𣇺 251221342511
+𣇻 351531342511
+𣇼 251144511234
+𣇽 251154545454
+𣇾 251112135354
+𣇿 251112342511
+𣈀 251125111515
+𣈁 251125111234
+𣈂 251135111121
+𣈃 251134435215
+𣈄 251134431234
+𣈅 123412342511
+𣈆 125125112511
+𣈇 132425113511
+𣈈 251152133312
+𣈉 211234542511
+𣈊 312131342511
+𣈋 251141323544
+𣈌 413412342511
+𣈍 251144525111
+𣈎 251145341234
+𣈏 251112212511
+𣈐 251141341121
+𣈑 251112143112
+𣈒 251112211134
+𣈓 251112153254
+𣈔 251141321251
+𣈕 251112343134
+𣈖 251111134112
+𣈗 251111242511
+𣈘 251141321251
+𣈙 251132135422
+𣈚 251152131344
+𣈛 251131225122
+𣈜 251125111124
+𣈝 251141341112
+𣈞 251144534121
+𣈟 251113533512
+𣈠 251154134132
+𣈡 251112134134
+𣈢 251132511312
+𣈣 251125125115
+𣈤 5235235222511
+𣈥 2511341351122
+𣈦 2511251125214
+𣈧 2511332522111
+𣈨 2511314314112
+𣈩 2511543343434
+𣈪 3251512522511
+𣈫 2511251141431
+𣈬 2511551353334
+𣈭 2511325125214
+𣈮 2511341511534
+𣈯 2511341251122
+𣈰 251112241252
+𣈱 2511225113533
+𣈲 2511521325111
+𣈳 2511352513553
+𣈴 2511121225121
+𣈵 251132151134
+𣈶 2511442125441
+𣈷 2511325111121
+𣈸 2511431121134
+𣈹 2511121121121
+𣈺 2511125221351
+𣈻 2511121251534
+𣈼 2511351251214
+𣈽 2511122151234
+𣈾 2511251213112
+𣈿 2511125115315
+𣉀 2511252543554
+𣉁 2511344325211
+𣉂 2511341251132
+𣉃 2511321511215
+𣉄 3112251112134
+𣉅 2511111341134
+𣉆 2511251112134
+𣉇 2511251113422
+𣉈 3515251153251
+𣉉 2511543341134
+𣉊 2511121431135
+𣉋 2511125221531
+𣉌 2511251212511
+𣉍 2511251211534
+𣉎 2511123425111
+𣉏 251112234454
+𣉐 251112344454
+𣉑 3555525112511
+𣉒 25114532411121
+𣉓 25111554554121
+𣉔 25114544251214
+𣉕 25115454541234
+𣉖 25114334125111
+𣉗 25112513425221
+𣉘 54354115152511
+𣉙 12251112342511
+𣉚 25115213431112
+𣉛 25111221113312
+𣉜 251134123543554
+𣉝 25113533113534
+𣉞 25114125125251
+𣉟 25111213352511
+𣉠 32121251113533
+𣉡 2511112312154
+𣉢 25114312344554
+𣉣 45534125112511
+𣉤 25114111251322
+𣉥 25113351153554
+𣉦 2511312155212
+𣉧 25113143143134
+𣉨 25113251213554
+𣉩 12155121342511
+𣉪 25111212415325
+𣉫 25111234431112
+𣉬 25112511445521
+𣉭 32543123412511
+𣉮 25111225111134
+𣉯 44134112342511
+𣉰 25114525111234
+𣉱 25115225213412
+𣉲 25113241112154
+𣉳 25112522112154
+𣉴 25111234154121
+𣉵 25113552335523
+𣉶 25111112343115
+𣉷 2511353345245
+𣉸 25114111251515
+𣉹 25113323411234
+𣉺 25111353331134
+𣉻 311342511122511
+𣉼 251143112125221
+𣉽 25114134522554
+𣉾 251112512512515
+𣉿 251112512212511
+𣊀 25111224154325
+𣊁 121415331342511
+𣊂 251141431343434
+𣊃 545233134532511
+𣊄 111211125112511
+𣊅 325111341522511
+𣊆 325111355322511
+𣊇 251144512512134
+𣊈 251141352211535
+𣊉 2511554554134534
+𣊊 251132511112341
+𣊋 251111231134251
+𣊌 251112132411121
+𣊍 251141312341234
+𣊎 251112143112354
+𣊏 251154154125111
+𣊐 251125111311534
+𣊑 215315354352511
+𣊒 251112134121124
+𣊓 121431123542511
+𣊔 212125221452511
+𣊕 251125111511534
+𣊖 251125112511134
+𣊗 251133231121152
+𣊘 251135251214444
+𣊙 251112511123312
+𣊚 251113434343412
+𣊛 125122125112511
+𣊜 25113551143434
+𣊝 251112112211234
+𣊞 2511433443343534
+𣊟 2511121221113134
+𣊠 2511125221114334
+𣊡 2511554444554234
+𣊢 2511125221251112
+𣊣 1221251112212511
+𣊤 2511352511311534
+𣊥 2511131221344334
+𣊦 3434343425112511
+𣊧 2511351125113511
+𣊨 5235235221342511
+𣊩 2511343123425121
+𣊪 2511224314311134
+𣊫 2511251125112511
+𣊬 2511344345354152
+𣊭 2511251125112511
+𣊮 1214311253112511
+𣊯 2511145241341154
+𣊰 2511121341251221
+𣊱 2511511225113453
+𣊲 2511311222214444
+𣊳 2511312512114444
+𣊴 2511122134111112
+𣊵 2511132522132522
+𣊶 251143252343134
+𣊷 2511353325113533
+𣊸 3533251151133252
+𣊹 2511414312511211
+𣊺 2511511225112511
+𣊻 2511522521341234
+𣊼 1132251112511211
+𣊽 5151525113134252
+𣊾 2511211121114544
+𣊿 2511122511123511
+𣋀 4453112251131121
+𣋁 2511251112211154
+𣋂 2511122511123511
+𣋃 2511344511325122
+𣋄 1221251141251521
+𣋅 1221251211152511
+𣋆 2511511225111121
+𣋇 251113533454124
+𣋈 243452511222511
+𣋉 25113253431234134
+𣋊 25114125251125111
+𣋋 2511251251115151
+𣋌 25113234343434115
+𣋍 25112522135415215
+𣋎 25225225225112511
+𣋏 25112512211311534
+𣋐 25113511121325114
+𣋑 2511122122151234
+𣋒 25111212543341134
+𣋓 25113234343434115
+𣋔 25111452413425115
+𣋕 11134251111134112
+𣋖 25112522131112111
+𣋗 25111325111342511
+𣋘 25113412524312511
+𣋙 25115131221343554
+𣋚 25114143125113534
+𣋛 2511122441354251
+𣋜 25111234123411234
+𣋝 25112512512511234
+𣋞 251112121215425221
+𣋟 251141312351235554
+𣋠 251141432533543211
+𣋡 251122434511353334
+𣋢 251112251351225135
+𣋣 251112512531125221
+𣋤 341252134125212511
+𣋥 251143515234351523
+𣋦 251152252134343412
+𣋧 545212154521212511
+𣋨 111342511325114554
+𣋩 251141431131251234
+𣋪 251144512332511134
+𣋫 441125111233122511
+𣋬 251112151211251124
+𣋭 251121213241112153
+𣋮 251131121215315115
+𣋯 351525111212151325
+𣋰 251112213424134354
+𣋱 251132112511511134
+𣋲 2511555253415445445
+𣋳 2511413522115154444
+𣋴 4135221151543342511
+𣋵 2511325115545541234
+𣋶 2511445353251113515
+𣋷 2511413122112512134
+𣋸 2511122125111343534
+𣋹 251143252343134132
+𣋺 2511121252212511134
+𣋻 251112225221134534
+𣋼 2511352512144442511
+𣋽 2511341251251343422
+𣋾 2511411125125111234
+𣋿 41354354324111212511
+𣌀 25114311213123453534
+𣌁 2511135333412132511
+𣌂 2511135333412132511
+𣌃 12511112341251125221
+𣌄 25113443252215115453
+𣌅 25111331234312342121
+𣌆 2511411125112132511
+𣌇 34521121345211212511
+𣌈 251125111221344111251
+𣌉 251121531532411121115
+𣌊 251114524134512115154
+𣌋 251134125125134343534
+𣌌 251131121333132511134
+𣌍 2511122111122111122111
+𣌎 2511121343322521353135
+𣌏 2511112421213241112154
+𣌐 2511121251215151212511
+𣌑 2511251152252134431234
+𣌒 2511353322431431121124
+𣌓 2511212125125132411121
+𣌔 2511445354251132511134
+𣌕 251112231254312114444
+𣌖 25111221251113432411121
+𣌗 251125111251113241112154
+𣌘 251141251251121211122154
+𣌙 251151122511121221113134
+𣌚 251114111251251141251234
+𣌛 251115454541234132511134
+𣌜 2511311211331234312342121
+𣌝 2511251141251251112213534
+𣌞 43122431251143111344511534
+𣌟 2511145241342512512511234341
+𣌠 111342511111342511111342511111342511
+𣌡 2251154
+𣌢 2511234
+𣌣 32511345
+𣌤 25112343
+𣌥 25113553
+𣌦 25115112
+𣌧 252212511
+𣌨 251123511
+𣌩 252511345
+𣌪 251141534
+𣌫 251121115
+𣌬 251125351
+𣌭 3412512511
+𣌮 2511434242
+𣌯 2511123435
+𣌰 2511351153
+𣌱 2512212343
+𣌲 2511515132
+𣌳 5545542511
+𣌴 2512213511
+𣌵 251221354
+𣌶 3454251221
+𣌷 25114153121
+𣌸 25115115452
+𣌹 25122113241
+𣌺 25122125152
+𣌻 251134312342
+𣌼 125121342511
+𣌽 125121122431
+𣌾 2511212511234
+𣌿 2511354242511
+𣍀 2512212511234
+𣍁 5133115251221
+𣍂 3434251251221
+𣍃 12543123425112
+𣍄 4351225111534
+𣍅 11213534251221
+𣍆 121521335542511
+𣍇 125113412211154
+𣍈 111211122511431
+𣍉 25114125152152
+𣍊 251135345513444
+𣍋 3412524312511124
+𣍌 1354135413542511
+𣍍 4535251354251221
+𣍎 4325243125111135
+𣍏 12511344311213121
+𣍐 35333412524312511
+𣍑 251155432511252154
+𣍒 253425111554554121
+𣍓 251113425234343434
+𣍔 321112512512212511
+𣍕 251221121121121135
+𣍖 1251221251112511234
+𣍗 344134522554251221
+𣍘 12511234125112342511
+𣍙 12511344134315112234
+𣍚 511121251155444412134354
+𣍛 125113432111525111341251112
+𣍜 51112125113211343451145122112512134
+𣍝 32511
+𣍞 351134
+𣍟 4513511
+𣍠 3511135
+𣍡 1353511
+𣍢 3453511
+𣍣 1353511
+𣍤 25343511
+𣍥 351144535
+𣍦 351125135
+𣍧 522523511
+𣍨 351135234
+𣍩 351131234
+𣍪 351112534
+𣍫 351115534
+𣍬 351135251
+𣍭 3511125331
+𣍮 3511431522
+𣍯 3511451512
+𣍰 3511143134
+𣍱 35114451354
+𣍲 35111251531
+𣍳 13351112512
+𣍴 35111354515
+𣍵 35114134251
+𣍶 35113452354
+𣍷 351112523434
+𣍸 254312343511
+𣍹 35114334132
+𣍺 351123431121
+𣍻 351112511534
+𣍼 351212513511
+𣍽 351121253541
+𣍾 351112524444
+𣍿 351113434234
+𣎀 351141321251
+𣎁 254312513511
+𣎂 351155525112
+𣎃 351124325251
+𣎄 3511442125441
+𣎅 3511251135345
+𣎆 4152513511354
+𣎇 3511251125111
+𣎈 3511251211324
+𣎉 132511135534
+𣎊 3511521325111
+𣎋 3251112343511
+𣎌 3511431234132
+𣎍 12251112313511
+𣎎 35114311343434
+𣎏 25122511132511
+𣎐 35112521343434
+𣎑 35114451222535
+𣎒 351143113425121
+𣎓 351141533152134
+𣎔 351111212511135
+𣎕 353511252212534
+𣎖 351112143112354
+𣎗 351132533414544
+𣎘 414335112512511
+𣎙 351112124454153
+𣎚 3511254312114444
+𣎛 3511545232535251
+𣎜 3511251251115151
+𣎝 3511431234554234
+𣎞 5215351112134354
+𣎟 3511511121251124
+𣎠 1225111235113511
+𣎡 3511351144512134
+𣎢 3511122511123511
+𣎣 35113251141533134
+𣎤 35114554122125112
+𣎥 13351112512512515
+𣎦 35112511112213534
+𣎧 3511121325114334
+𣎨 3511122353344544
+𣎩 132511354113443511
+𣎪 351141251452512511
+𣎫 35112512511214124
+𣎬 133511445125125121
+𣎭 351134343511251221
+𣎮 35114311213123415534
+𣎯 35113121353121352511
+𣎰 351112231254312114444
+𣎱 35112511251141351331134
+𣎲 351124345251254312114444
+𣎳 1235
+𣎴 1234
+𣎵 52234
+𣎶 12341
+𣎷 12345
+𣎸 123452
+𣎹 123455
+𣎺 155234
+𣎻 251234
+𣎼 541234
+𣎽 151234
+𣎾 451234
+𣎿 551234
+𣏀 123422
+𣏁 1521234
+𣏂 3412344
+𣏃 1511234
+𣏄 1211234
+𣏅 1211234
+𣏆 1234335
+𣏇 1234154
+𣏈 1234354
+𣏉 5341234
+𣏊 1234351
+𣏋 1541234
+𣏌 1234515
+𣏍 5211234
+𣏎 1234432
+𣏏 1541234
+𣏐 1234354
+𣏑 1234252
+𣏒 1234354
+𣏓 1234115
+𣏔 21211234
+𣏕 12341235
+𣏖 12345152
+𣏗 54521234
+𣏘 12343254
+𣏙 12343115
+𣏚 12343515
+𣏛 12341524
+𣏜 12341255
+𣏝 12344535
+𣏞 12341354
+𣏟 12351235
+𣏠 12343434
+𣏡 12342134
+𣏢 12341154
+𣏣 12344124
+𣏤 12343434
+𣏥 12344134
+𣏦 43341234
+𣏧 12345134
+𣏨 12341132
+𣏩 15341234
+𣏪 12345454
+𣏫 12343553
+𣏬 12342511
+𣏭 12345521
+𣏮 31251234
+𣏯 12343534
+𣏰 35531234
+𣏱 12343115
+𣏲 151121234
+𣏳 12341554
+𣏴 12343211
+𣏵 12343511
+𣏶 12342534
+𣏷 25541234
+𣏸 12343312
+𣏹 12344334
+𣏺 12345215
+𣏻 53341234
+𣏼 12211234
+𣏽 12342154
+𣏾 12341534
+𣏿 12341134
+𣐀 12344134
+𣐁 12451234
+𣐂 11541234
+𣐃 13551234
+𣐄 12342512
+𣐅 12343121
+𣐆 12341553
+𣐇 31211234
+𣐈 123412523
+𣐉 513151234
+𣐊 123451335
+𣐋 123415534
+𣐌 123452134
+𣐍 123434121
+𣐎 12341554
+𣐏 123425541
+𣐐 123434234
+𣐑 1234212115
+𣐒 123425251
+𣐓 123451311
+𣐔 123451154
+𣐕 123454121
+𣐖 123445135
+𣐗 323531234
+𣐘 123444112
+𣐙 123441554
+𣐚 123424534
+𣐛 123415541
+𣐜 123451554
+𣐝 123412525
+𣐞 123413251
+𣐟 121531234
+𣐠 123435414
+𣐡 123451515
+𣐢 123454515
+𣐣 123412343
+𣐤 123422511
+𣐥 251111234
+𣐦 354541234
+𣐧 123433534
+𣐨 123453153
+𣐩 325111234
+𣐪 123431354
+𣐫 125341234
+𣐬 123425121
+𣐭 123425121
+𣐮 253411234
+𣐯 522521234
+𣐰 123434315
+𣐱 545341234
+𣐲 123425152
+𣐳 123425134
+𣐴 123432121
+𣐵 1234151225
+𣐶 1234253425
+𣐷 2534451234
+𣐸 1234125341
+𣐹 1234211234
+𣐺 1513513234
+𣐻 5115341234
+𣐼 1234413112
+𣐽 4143111234
+𣐾 1234321234
+𣐿 1234413534
+𣑀 12342515134
+𣑁 123415435
+𣑂 1234344315
+𣑃 4413541234
+𣑄 4451351234
+𣑅 21151234251
+𣑆 1234341354
+𣑇 1234554234
+𣑈 1234354153
+𣑉 1234325111
+𣑊 1234132121
+𣑋 1234445124
+𣑌 1234553251
+𣑍 255451234
+𣑎 1431234124
+𣑏 1234412534
+𣑐 1234251252
+𣑑 1234445521
+𣑒 1234445355
+𣑓 1234121124
+𣑔 1234541234
+𣑕 1234525341
+𣑖 1234134121
+𣑗 1234534124
+𣑘 1354151234
+𣑙 1234112525
+𣑚 1234545454
+𣑛 1234125112
+𣑜 1123425211
+𣑝 1234251231
+𣑞 2325111234
+𣑟 1234253131
+𣑠 3412511234
+𣑡 3215341234
+𣑢 1234352511
+𣑣 1234354124
+𣑤 1234353452
+𣑥 1234121312
+𣑦 1213541234
+𣑧 1215341234
+𣑨 1353511234
+𣑩 1234252511
+𣑪 1234453521
+𣑫 1234351234
+𣑬 1234251112
+𣑭 1234252211
+𣑮 1234335414
+𣑯 1234341534
+𣑰 1234342444
+𣑱 4413541234
+𣑲 1234351252
+𣑳 1234111234
+𣑴 1234441121
+𣑵 1234511112
+𣑶 123445245
+𣑷 1234234134
+𣑸 2512511234
+𣑹 1234252252
+𣑺 1234251214
+𣑻 1234311212
+𣑼 5223452234
+𣑽 1234123435
+𣑾 2111234251
+𣑿 12343443515
+𣒀 12343152134
+𣒁 12344334132
+𣒂 12344143152
+𣒃 12343323554
+𣒄 123421211511
+𣒅 12343413251
+𣒆 12341214535
+𣒇 12343123435
+𣒈 12345221121
+𣒉 123421215354
+𣒊 13251541234
+𣒋 12342511121
+𣒌 12342512534
+𣒍 12343212512
+𣒎 12341354252
+𣒏 12344134424
+𣒐 44512341234
+𣒑 12344411234
+𣒒 1234413452
+𣒓 43345151234
+𣒔 12344453535
+𣒕 44141341234
+𣒖 12341225135
+𣒗 12341215452
+𣒘 12341215515
+𣒙 12341234251
+𣒚 12511251234
+𣒛 12512341234
+𣒜 12341234322
+𣒝 12345241541
+𣒞 12341251112
+𣒟 12341331134
+𣒠 11234251221
+𣒡 12343331234
+𣒢 12341212531
+𣒣 12341212415
+𣒤 12343121515
+𣒥 12343543511
+𣒦 12343225111
+𣒧 31211351234
+𣒨 12342511115
+𣒩 12342534251
+𣒪 12342551511
+𣒫 31554141234
+𣒬 12341512341
+𣒭 11211234534
+𣒮 12321234121
+𣒯 12341255151
+𣒰 12343125211
+𣒱 12342513534
+𣒲 12344453112
+𣒳 12112341121
+𣒴 12343123453
+𣒵 12345153134
+𣒶 12341234521
+𣒷 41335131234
+𣒸 12341351121
+𣒹 12342343531
+𣒺 12345131234
+𣒻 12343115121
+𣒼 32231341234
+𣒽 123413212135
+𣒾 1234122354
+𣒿 44135341234
+𣓀 41431121234
+𣓁 113411341234
+𣓂 123435425121
+𣓃 123412122534
+𣓄 1234413212115
+𣓅 123435131234
+𣓆 123434433121
+𣓇 121121221234
+𣓈 123412523434
+𣓉 123415112134
+𣓊 123412515112
+𣓋 123412121515
+𣓌 123435424251
+𣓍 123425113511
+𣓎 12341223134
+𣓏 123412341234
+𣓐 123444125121
+𣓑 124525111234
+𣓒 123412123554
+𣓓 123435251115
+𣓔 515352341234
+𣓕 123412343554
+𣓖 123435133541
+𣓗 123435332511
+𣓘 123445445135
+𣓙 123441324444
+𣓚 123434343515
+𣓛 123432511115
+𣓜 1234521211234
+𣓝 125122451234
+𣓞 311335111234
+𣓟 122512211234
+𣓠 123435133513
+𣓡 123432513251
+𣓢 113511351234
+𣓣 123413431523
+𣓤 123412122135
+𣓥 441545231234
+𣓦 12344413454
+𣓧 125121541234
+𣓨 212535411234
+𣓩 123455525121
+𣓪 154122151234
+𣓫 413412511234
+𣓬 441325111234
+𣓭 123444125111
+𣓮 441312341234
+𣓯 351341531234
+𣓰 413431341234
+𣓱 12344143152
+𣓲 123441434553
+𣓳 433443341234
+𣓴 123412343432
+𣓵 111211121234
+𣓶 123452125221
+𣓷 121452511234
+𣓸 123411212154
+𣓹 12341215452
+𣓺 132111251234
+𣓻 123411213534
+𣓼 124512341234
+𣓽 123431521135
+𣓾 123425113533
+𣓿 123412124553
+𣔀 123412124544
+𣔁 123412123415
+𣔂 123425113511
+𣔃 123421511531
+𣔄 123412123553
+𣔅 12343312454
+𣔆 12343212152
+𣔇 311342511234
+𣔈 123432151112
+𣔉 123431112111
+𣔊 123454134251
+𣔋 123434112431
+𣔌 12343541234
+𣔍 315541411234
+𣔎 123412251122
+𣔏 123413443112
+𣔐 12344325234
+𣔑 123425111344
+𣔒 123431133511
+𣔓 123433253254
+𣔔 123434431132
+𣔕 343541521234
+𣔖 123452115211
+𣔗 542511234354
+𣔘 121121531234
+𣔙 123433123534
+𣔚 351152541234
+𣔛 123444534135
+𣔜 123455535422
+𣔝 12341525454
+𣔞 123452133544
+𣔟 12341221324
+𣔠 12341223312
+𣔡 123412153254
+𣔢 123432354354
+𣔣 251123411214
+𣔤 123432125134
+𣔥 123433212121
+𣔦 123413121121
+𣔧 123453113251
+𣔨 123421212511
+𣔩 125123413252
+𣔪 123431221135
+𣔫 123431121121
+𣔬 123432534132
+𣔭 123412135121
+𣔮 123412115534
+𣔯 123412524134
+𣔰 12341212454
+𣔱 1234445343454
+𣔲 123425251454
+𣔳 1234413431523
+𣔴 123425121454
+𣔵 3525115151234
+𣔶 1234121244155
+𣔷 1234351113432
+𣔸 1234132534341
+𣔹 1234351331134
+𣔺 1234251125111
+𣔻 1234445351344
+𣔼 1234314314112
+𣔽 5433411341234
+𣔾 1234431353334
+𣔿 1251253111234
+𣕀 1234545454112
+𣕁 5311211211234
+𣕂 1234431134252
+𣕃 1234251125214
+𣕄 1234351325251
+𣕅 1234312135515
+𣕆 1234351525221
+𣕇 2433541221234
+𣕈 1234121225111
+𣕉 1234121235251
+𣕊 1234313424134
+𣕋 1234513353511
+𣕌 1234352513134
+𣕍 1234352511134
+𣕎 1234251211234
+𣕏 4125121541234
+𣕐 5235235221234
+𣕑 1234511211234
+𣕒 1234125143154
+𣕓 1125341121234
+𣕔 1213122511234
+𣕕 1234321511121
+𣕖 1234332511112
+𣕗 1234431121335
+𣕘 1234542511234
+𣕙 4315412343454
+𣕚 1234121213534
+𣕛 1234415425211
+𣕜 123443554554
+𣕝 1234441534121
+𣕞 1234431121531
+𣕟 4143112341234
+𣕠 5111212511234
+𣕡 5111213541234
+𣕢 1234123413215
+𣕣 1245122511234
+𣕤 1251341251234
+𣕥 1325115341234
+𣕦 1234123425111
+𣕧 1234532511234
+𣕨 1234132425121
+𣕩 1234125115531
+𣕪 1234541211234
+𣕫 1211211211234
+𣕬 1234112155414
+𣕭 1234113222121
+𣕮 1113425111234
+𣕯 1234123434154
+𣕰 1121312341234
+𣕱 1234251111234
+𣕲 1234442125111
+𣕳 1234254312341
+𣕴 1234252134334
+𣕵 1234121234154
+𣕶 1234251214153
+𣕷 1512342511234
+𣕸 1234121212525
+𣕹 1234215112134
+𣕺 1234121225135
+𣕻 1234311325111
+𣕼 3251113531234
+𣕽 1234123435251
+𣕾 1234123445434
+𣕿 1245522521234
+𣖀 1234125342154
+𣖁 1234134425221
+𣖂 1234134431112
+𣖃 2521325221234
+𣖄 3123215111234
+𣖅 1234334143112
+𣖆 1234352511521
+𣖇 4125352511234
+𣖈 4125354151234
+𣖉 1234445341234
+𣖊 1234555135422
+𣖋 1234121251534
+𣖌 1234125425134
+𣖍 1234132412121
+𣖎 1234251251251
+𣖏 1234311235515
+𣖐 123432511454
+𣖑 1234353112121
+𣖒 1234453413544
+𣖓 1234112135354
+𣖔 1234132511521
+𣖕 1234513431132
+𣖖 1234121121124
+𣖗 123451335454
+𣖘 1234554444121
+𣖙 1234431121134
+𣖚 123412253251
+𣖛 4134341211234
+𣖜 1234251212511
+𣖝 123412232121
+𣖞 1234413534251
+𣖟 1234411125112
+𣖠 123412252252
+𣖡 1234251113422
+𣖢 1123441343412
+𣖣 123434521523
+𣖤 1343423454251
+𣖥 1234122513112
+𣖦 5452122151234
+𣖧 12342121351234
+𣖨 12341212212115
+𣖩 1234344312534
+𣖪 12342153151234
+𣖫 12125135541234
+𣖬 12344315233534
+𣖭 12341554554121
+𣖮 12342513425221
+𣖯 12343123124544
+𣖰 12343143141515
+𣖱 12342525435354
+𣖲 123441341212115
+𣖳 12342153153134
+𣖴 2125354151234
+𣖵 12344133434121
+𣖶 54523354531234
+𣖷 12344134343541
+𣖸 12344134143112
+𣖹 12345312513112
+𣖺 12344153313534
+𣖻 12341325125221
+𣖼 12343525113515
+𣖽 12345114525254
+𣖾 12341221335112
+𣖿 12341251113454
+𣗀 1234212135354
+𣗁 13251123431251
+𣗂 12341343411234
+𣗃 12341353334121
+𣗄 1234122415325
+𣗅 12234113434234
+𣗆 33541413441234
+𣗇 12341253514444
+𣗈 12344455311234
+𣗉 12344513325251
+𣗊 12341221253434
+𣗋 12342434525135
+𣗌 1234431234454
+𣗍 12343112211134
+𣗎 12341212341121
+𣗏 12342523541112
+𣗐 1234251312152
+𣗑 1234521251112
+𣗒 12343411243112
+𣗓 1123412132511
+𣗔 1234511534454
+𣗕 12345155153121
+𣗖 12341252211234
+𣗗 12341234513515
+𣗘 12341113424134
+𣗙 12345432411121
+𣗚 12341234134312
+𣗛 12341234354251
+𣗜 11211121341234
+𣗝 12341121431121
+𣗞 12512451251234
+𣗟 12341344311234
+𣗠 12341221113444
+𣗡 12341234135215
+𣗢 12345151211234
+𣗣 123412345343134
+𣗤 12342511445531
+𣗥 12512341251234
+𣗦 12341212454153
+𣗧 12512345425112
+𣗨 12342511325122
+𣗩 12341212121315
+𣗪 12341212341234
+𣗫 12342121541341
+𣗬 12343251111344
+𣗭 12345544442511
+𣗮 12343415344444
+𣗯 12343412513112
+𣗰 34535115341234
+𣗱 31234221234124
+𣗲 12413441121234
+𣗳 12341251431124
+𣗴 21254543411234
+𣗵 12342522112121
+𣗶 12342522123344
+𣗷 34312341341234
+𣗸 35253415151234
+𣗹 12344311214544
+𣗺 54251123412251
+𣗻 54251123431134
+𣗼 12342512511134
+𣗽 12343525341535
+𣗾 34125122311234
+𣗿 1234452425111
+𣘀 1234322354333
+𣘁 12341251212512
+𣘂 12154311341234
+𣘃 1234122415334
+𣘄 12344111251315
+𣘅 12341251251354
+𣘆 12345544442534
+𣘇 12341212125111
+𣘈 31123434125122
+𣘉 12343533445251
+𣘊 12343321212134
+𣘋 12344135425112
+𣘌 1234452425135
+𣘍 12344131251112
+𣘎 12344311213554
+𣘏 44534342511324
+𣘐 14312341431234
+𣘑 35354512341234
+𣘒 12251115341234
+𣘓 12342522112154
+𣘔 12344452511134
+𣘕 123444551145252
+𣘖 123432511151234
+𣘗 123411212132515
+𣘘 123412124143112
+𣘙 12344143125152
+𣘚 123441554413412
+𣘛 123432511355135
+𣘜 123431431454251
+𣘝 123412522113455
+𣘞 123434151253511
+𣘟 325121151541234
+𣘠 123431431412512
+𣘡 123412124412343
+𣘢 121415331341234
+𣘣 123413115343541
+𣘤 123435415411234
+𣘥 123451122511123
+𣘦 131134535541234
+𣘧 123431531532124
+𣘨 123441125123534
+𣘩 123433221212134
+𣘪 123412211135352
+𣘫 251123421531535
+𣘬 1123431344131234
+𣘭 123421531525112
+𣘮 123443252343134
+𣘯 125124513541234
+𣘰 123444213354141
+𣘱 123433225111124
+𣘲 123412344143112
+𣘳 353511244121234
+𣘴 12343115511534
+𣘵 123431234354354
+𣘶 123432511113412
+𣘷 123431431411534
+𣘸 123425112114444
+𣘹 123444512512134
+𣘺 123431221125251
+𣘻 123412123411234
+𣘼 451325131341234
+𣘽 123423433525135
+𣘾 143123445132511
+𣘿 445343412511234
+𣙀 123412143112354
+𣙁 123421531525111
+𣙂 431134542511234
+𣙃 123441312214334
+𣙄 123444112343415
+𣙅 351325115341234
+𣙆 123415412211234
+𣙇 121324111211234
+𣙈 122511121251234
+𣙉 123413434342534
+𣙊 123412122512341
+𣙋 123425225431252
+𣙌 123425234112431
+𣙍 123425225111515
+𣙎 123451122511251
+𣙏 123421252211234
+𣙐 123425125112525
+𣙑 123412341234134
+𣙒 123425115132125
+𣙓 123434431234333
+𣙔 123431234221234
+𣙕 123431554143134
+𣙖 123431431412525
+𣙗 121431123541234
+𣙘 12341223131134
+𣙙 123412512343134
+𣙚 123434542511211
+𣙛 123441342513541
+𣙜 123444532411121
+𣙝 123451333212215
+𣙞 123412514314412
+𣙟 123424345251252
+𣙠 123425221134334
+𣙡 123425234343434
+𣙢 123425431134551
+𣙣 123444525114134
+𣙤 411312515341234
+𣙥 123443112125221
+𣙦 123441341121124
+𣙧 123425111511534
+𣙨 123431431453254
+𣙩 123425244511234
+𣙪 123441312341234
+𣙫 123431431441431
+𣙬 12522112341515
+𣙭 123431431453251
+𣙮 123441343211234
+𣙯 123412132411121
+𣙰 513155454541234
+𣙱 123431431435251
+𣙲 121453112521234
+𣙳 123425121341234
+𣙴 123413543434251
+𣙵 123444125111124
+𣙶 123451532251221
+𣙷 12341221344132
+𣙸 31123412252252
+𣙹 125123425111535
+𣙺 123432534134354
+𣙻 1234121212211154
+𣙼 5425141431121234
+𣙽 1234133123431234
+𣙾 1234325431234115
+𣙿 1234515322511134
+𣚀 12342121153535112
+𣚁 12342121152511134
+𣚂 1234415313412512
+𣚃 1234111253554234
+𣚄 1221113433121234
+𣚅 1234122511154544
+𣚆 1234152515251525
+𣚇 1251245355151234
+𣚈 1234545454342444
+𣚉 1234511511342444
+𣚊 1234132522132522
+𣚋 1234121212211152
+𣚌 1234414345252251
+𣚍 1234414312512251
+𣚎 1234545454554234
+𣚏 4125111251111234
+𣚐 1234125112354444
+𣚑 1234515121121251
+𣚒 1234112111215215
+𣚓 1234554444542511
+𣚔 1234321511354444
+𣚕 1234251135411344
+𣚖 1234121213425115
+𣚗 3354144311341234
+𣚘 4411312515341234
+𣚙 1234321515341534
+𣚚 1234513325125214
+𣚛 1234215315225211
+𣚜 1234121235544544
+𣚝 1234121125413534
+𣚞 1234431344111251
+𣚟 123453453421212121
+𣚠 1234224314325234
+𣚡 1234311121111234
+𣚢 123412512154454
+𣚣 123425121122134
+𣚤 2511251123433354
+𣚥 123412121543541
+𣚦 1234515251251214
+𣚧 2511533112521234
+𣚨 1221123412211234
+𣚩 3513251122511234
+𣚪 1234413234112121
+𣚫 123444112132511
+𣚬 1234554444121251
+𣚭 1234121235431234
+𣚮 1214143125111234
+𣚯 1214512512343554
+𣚰 1234431121325111
+𣚱 4313251542511234
+𣚲 123441332151134
+𣚳 123445432411121
+𣚴 1234431224312511
+𣚵 1234123412344334
+𣚶 1234112111213415
+𣚷 1234122512121233
+𣚸 1234121413534534
+𣚹 1234525342535251
+𣚺 1123413553455414
+𣚻 1221112343525135
+𣚼 1234125114455315
+𣚽 1234113411342511
+𣚾 1234511225114134
+𣚿 1234243252513134
+𣛀 1234251112511211
+𣛁 2534253425341234
+𣛂 1234121244511234
+𣛃 1234121225312341
+𣛄 1234252351251214
+𣛅 1234123421213541
+𣛆 1234314314121124
+𣛇 1234354152341251
+𣛈 1234314314112525
+𣛉 1234344134253512
+𣛊 3553121115341234
+𣛋 1234354152341251
+𣛌 1343423434125122
+𣛍 1234343412341355
+𣛎 123432411121454
+𣛏 123431554141554
+𣛐 1234311253554234
+𣛑 1234324111214334
+𣛒 1234112345425111
+𣛓 1234132412111534
+𣛔 1234212511121534
+𣛕 2511123425111234
+𣛖 1234314314121315
+𣛗 1234314314354251
+𣛘 1234325111331134
+𣛙 4313251141341234
+𣛚 1234454445444544
+𣛛 1234511121251211
+𣛜 1234324111211234
+𣛝 1234332331225111
+𣛞 1234341124312534
+𣛟 1234243452513112
+𣛠 1234252212511134
+𣛡 1234445251125214
+𣛢 1234513311525111
+𣛣 1234511225111132
+𣛤 2511123413434234
+𣛥 1234211121114544
+𣛦 1234441415331521
+𣛧 1234123412341234
+𣛨 1234122511123511
+𣛩 1234314314341121
+𣛪 1234333132511134
+𣛫 1234251251224334
+𣛬 12343535115452
+𣛭 12341213251152
+𣛮 123413553425221
+𣛯 1234441353425221
+𣛰 1234121212132511
+𣛱 12344453535321511
+𣛲 12341452413434312
+𣛳 12123525115151234
+𣛴 12341312515344544
+𣛵 12341221251153254
+𣛶 12343551131344444
+𣛷 12341534153425221
+𣛸 12342511134113534
+𣛹 1234252132522454
+𣛺 12341234342413452
+𣛻 12343215122151234
+𣛼 12342153151251431
+𣛽 12343123412155121
+𣛾 1234545212343554
+𣛿 12345452132511134
+𣜀 12343134213415534
+𣜁 123421211532411121
+𣜂 12341134211121111
+𣜃 12344312535114444
+𣜄 41525135411234354
+𣜅 2521325224541234
+𣜆 12344311214111251
+𣜇 12341252342511134
+𣜈 34112541234541234
+𣜉 12341221145154121
+𣜊 12345112251125112
+𣜋 12512341211254444
+𣜌 12343215115445445
+𣜍 25115215315351234
+𣜎 12341212243354122
+𣜏 12344454543425211
+𣜐 12344143135411354
+𣜑 12344315545544444
+𣜒 12344311212211154
+𣜓 12345452312343415
+𣜔 12345113251125214
+𣜕 12341234131251534
+𣜖 12345454544525111
+𣜗 12345454543123453
+𣜘 12345113251431112
+𣜙 12341253511434242
+𣜚 12341113425114544
+𣜛 1234251125214454
+𣜜 12341212251125214
+𣜝 12345112251111214
+𣜞 12343541234354251
+𣜟 34125125134341234
+𣜠 12341251255154444
+𣜡 12341353334251214
+𣜢 25111234251125214
+𣜣 25125125112344535
+𣜤 12343143144412343
+𣜥 32511415331341234
+𣜦 4313251114541234
+𣜧 12344334433445534
+𣜨 54251123443113455
+𣜩 12341123454431234
+𣜪 12341234343434134
+𣜫 31134324111211234
+𣜬 12343443454544354
+𣜭 12344512511224444
+𣜮 12344413251112343
+𣜯 12341212445125111
+𣜰 12344134315112234
+𣜱 31123425234125122
+𣜲 1234331225111454
+𣜳 1234122353251214
+𣜴 12343412511224544
+𣜵 12342511521531535
+𣜶 1234251135345454
+𣜷 12343123443344544
+𣜸 12342511451251112
+𣜹 54545412344351523
+𣜺 12341234455135215
+𣜻 14312341311534124
+𣜼 123455345115452
+𣜽 545454123413534
+𣜾 1123444112132511
+𣜿 12341212122151234
+𣝀 12341221251112153
+𣝁 123431431432511312
+𣝂 123411543251213554
+𣝃 123431431444535121
+𣝄 123412512452155121
+𣝅 123415311345452134
+𣝆 153113454521341234
+𣝇 123425111251111234
+𣝈 123412124315112234
+𣝉 123422431431121124
+𣝊 123435251353525135
+𣝋 12342522123344454
+𣝌 123412512554554234
+𣝍 123412121251124124
+𣝎 123431431443344334
+𣝏 123412124125125251
+𣝐 12512453215111234
+𣝑 32111525111341234
+𣝒 123412154252211234
+𣝓 123413251135411344
+𣝔 123412145132511234
+𣝕 123431431415341534
+𣝖 3552125111213411234
+𣝗 123435412512453541
+𣝘 12341212354152454
+𣝙 1234252254312114444
+𣝚 13252213415541234
+𣝛 123421531522521134
+𣝜 542511234351325122
+𣝝 121453535541251234
+𣝞 125123455525111234
+𣝟 312343551145441234
+𣝠 123441111253554234
+𣝡 123443111344511534
+𣝢 123422431431121134
+𣝣 123425221511211124
+𣝤 123425232411121454
+𣝥 123454523123435214
+𣝦 123454154141343412
+𣝧 123413425234343434
+𣝨 441325111544441234
+𣝩 123441251252511234
+𣝪 123412344551154124
+𣝫 123412132411121534
+𣝬 123412512341251234
+𣝭 125221123425342511
+𣝮 125123412212523434
+𣝯 125234125234125234
+𣝰 123412123112525452
+𣝱 123421212522113534
+𣝲 123435132511154444
+𣝳 123431431425341515
+𣝴 123434341234134112
+𣝵 123455444455124134
+𣝶 123431431425111132
+𣝷 121512112511241234
+𣝸 123412124131221252
+𣝹 123412343251213554
+𣝺 123412512125121234
+𣝻 123425221251113533
+𣝼 123432511145352525
+𣝽 12341512211131345
+𣝾 123412121113431234
+𣝿 123413434234125515
+𣞀 123413252211125111
+𣞁 123443344334451234
+𣞂 123431431451145252
+𣞃 251123412512512515
+𣞄 112343412524312511
+𣞅 251112343511431134
+𣞆 523523123412341234
+𣞇 411125112344111251
+𣞈 125122531125211234
+𣞉 125124531125211234
+𣞊 311234431253511124
+𣞋 123413434234252511
+𣞌 123432511451344153
+𣞍 12342522112132511
+𣞎 12341222231425221
+𣞏 252252252132511234
+𣞐 1234445321511354444
+𣞑 1234212125221451554
+𣞒 1234125112441533134
+𣞓 1234121241352211515
+𣞔 1234122125111343534
+𣞕 1234121212135121354
+𣞖 1234123425433443341
+𣞗 1234354533411243122
+𣞘 1234134125125134345
+𣞙 1212514315454541234
+𣞚 1234323434343413121
+𣞛 12343251111345235354
+𣞜 1234111343434343412
+𣞝 1234111343215114544
+𣞞 1234224314311125254
+𣞟 5425112341225111134
+𣞠 1234344353332151135
+𣞡 1234335414345234354
+𣞢 123412121312214444
+𣞣 3112222112344151234
+𣞤 1122112213412341234
+𣞥 1234112342512511134
+𣞦 1234121214522225121
+𣞧 1234224314311212534
+𣞨 1234121251311234124
+𣞩 1234121225111342511
+𣞪 1234254312114444121
+𣞫 1234314314122151234
+𣞬 123431431412534454
+𣞭 1234352522125111354
+𣞮 123431431441252454
+𣞯 1234314314211121111
+𣞰 1254312345454541234
+𣞱 1234134342341252511
+𣞲 1234252211212513534
+𣞳 1234312125121112111
+𣞴 3123422123451312251
+𣞵 5454541234122111355
+𣞶 1234113411341251112
+𣞷 1234121232533414544
+𣞸 1234122512511252511
+𣞹 1234251111341251112
+𣞺 1234251112213424134
+𣞻 1234252215435411515
+𣞼 1234431121341511534
+𣞽 123454334125143152
+𣞾 123412225112512531
+𣞿 1234354311252554234
+𣟀 12341223541112454
+𣟁 123452131212511121
+𣟂 123444521212511135
+𣟃 123412225221451354
+𣟄 12341251245132511234
+𣟅 12344152515313511354
+𣟆 1234134432511234454
+𣟇 12345415413433325221
+𣟈 12341234134334433422
+𣟉 3325212511521121234
+𣟊 12344112112544443534
+𣟋 12344451122134413534
+𣟌 12341211123451124134
+𣟍 12341211123454431234
+𣟎 12344125111251113534
+𣟏 12512452512512511234
+𣟐 12344154154132411121
+𣟑 1234543341251431124
+𣟒 11221122123412341234
+𣟓 12343511234132511134
+𣟔 12343143141251124124
+𣟕 12344334433443341234
+𣟖 12344131234123413251
+𣟗 12345514312343553132
+𣟘 12251251453112521234
+𣟙 1234515515122134454
+𣟚 12344143134315112234
+𣟛 12341221251211154444
+𣟜 12341234413451154124
+𣟝 12342121252213121534
+𣟞 12341212153515352511
+𣟟 12341212251113425111
+𣟠 12342511152343554234
+𣟡 12343411243132511252
+𣟢 12343143141311121115
+𣟣 12343143143541541112
+𣟤 12343531234132511134
+𣟥 12344143125125124544
+𣟦 122112211241541234
+𣟧 12342512125111344454
+𣟨 12343211511342511134
+𣟩 12343123435132511134
+𣟪 12341112341511534124
+𣟫 1234122511225113511
+𣟬 12345112251112511234
+𣟭 12342512511211254444
+𣟮 54523123432534134354
+𣟯 123444511221342512134
+𣟰 321112511125111341234
+𣟱 123432111525111341112
+𣟲 123435251214444431112
+𣟳 123425221125135344554
+𣟴 123435132522112513534
+𣟵 123421531512514311534
+𣟶 121231234324111211234
+𣟷 123421225343434343134
+𣟸 123441352211515431234
+𣟹 123431431454545434333
+𣟺 123434125125134343134
+𣟻 123441434525125124544
+𣟼 542511234324111214444
+𣟽 542511234433443344553
+𣟾 354431125235542341234
+𣟿 12341223251141341234
+𣠀 125124535433425111234
+𣠁 125221123441341331121
+𣠂 123443123425121122134
+𣠃 123412125143143344334
+𣠄 123414524134251251251
+𣠅 123412124112512525221
+𣠆 125123412512341251234
+𣠇 123412123412512513434
+𣠈 123434341234452511124
+𣠉 123431431425221131534
+𣠊 123431431425221311212
+𣠋 325115544445544441234
+𣠌 123414524134251254312
+𣠍 123425231254312114444
+𣠎 542511234121121121135
+𣠏 542511234251112211154
+𣠐 123441251252511251522
+𣠑 12343143143541112454
+𣠒 445343123425121311234
+𣠓 123431431412522111234
+𣠔 125124525135333411234
+𣠕 11234135333412132511
+𣠖 11234411125112132511
+𣠗 1234325151212151145252
+𣠘 123431431432511413412
+𣠙 1234321132534151114334
+𣠚 1234145241343545325121
+𣠛 4134341234324111211234
+𣠜 1234541541324111214334
+𣠝 1234121213425234343434
+𣠞 1221111221111221111234
+𣠟 1234153515351251254312
+𣠠 1234251212512125121121
+𣠡 1234354141112513554234
+𣠢 1234251112134132511134
+𣠣 1234445251211252214544
+𣠤 1234311324111212511135
+𣠥 1234413434123432411121
+𣠦 1234445112111212511134
+𣠧 1234123434341234453112
+𣠨 1234251113121221113134
+𣠩 1234121212512531125221
+𣠪 1234321125125151114334
+𣠫 123434341234455115452
+𣠬 1234342413412343424134
+𣠭 1234255455452255455452
+𣠮 1122112213441512341234
+𣠯 1234413513252211543534
+𣠰 1234314314511225112511
+𣠱 1234314314153515352511
+𣠲 123445242512211251431
+𣠳 5452312343513344111251
+𣠴 1234342413425225544134
+𣠵 123435412344551154124
+𣠶 311234121325112511135
+𣠷 12342121252554234251214
+𣠸 12345112251155455452212
+𣠹 123431431425111134554234
+𣠺 12343143143412512513434
+𣠻 12341251245211121111234
+𣠼 12345112251154154134333
+𣠽 12341252211221251123511
+𣠾 12344152514311123541534
+𣠿 12512531212534444411234
+𣡀 123421212512513241112154
+𣡁 12342121343413434523134
+𣡂 12344131234123421112111
+𣡃 12345131211211211213534
+𣡄 12341234343412341343112
+𣡅 12343112223541431112354
+𣡆 12145121551215454541234
+𣡇 12343434123451311234124
+𣡈 32112512515114525111234
+𣡉 54545412343253431234134
+𣡊 12341212121351213541154
+𣡋 123412213413425234343434
+𣡌 123421531512512543121344
+𣡍 125234125234125234125234
+𣡎 123434444452151113431234
+𣡏 125122525125125135411234
+𣡐 123444535324111212535251
+𣡑 123412343541234455115452
+𣡒 123421212512513241112153
+𣡓 123431431412512531125221
+𣡔 123431431412512125111345
+𣡕 123412341234123412341234
+𣡖 125124513251211121111234
+𣡗 251112342511123425111234
+𣡘 123412511234125112342511
+𣡙 251112341251234352511134
+𣡚 251112341251234352511134
+𣡛 123412121324111213215115
+𣡜 12343434123445511541132
+𣡝 132425221325115545541234
+𣡞 1234511225113513354111251
+𣡟 1234251212512125121452541
+𣡠 1234251112511125112522154
+𣡡 123431125212344551154124
+𣡢 1234111342511251214251214
+𣡣 1234212534444412511251522
+𣡤 1234251141251251112213534
+𣡥 4132112512515114512341234
+𣡦 1251225251251515343411234
+𣡧 1234251212512125121311252
+𣡨 12343331234252215115452
+𣡩 12344111251554444554444515
+𣡪 125124525125151512134341234
+𣡫 1234251522133444445215124
+𣡬 12344513241342522112513534
+𣡭 12342512125121251214525111
+𣡮 1234123435412344551154124
+𣡯 25221121541234554554134534
+𣡰 34251112342511123425111234
+𣡱 12343541234452522151154124
+𣡲 123425115545544444132511134
+𣡳 325115545541234354354121251
+𣡴 123435125111212511121251112
+𣡵 123441112515544445544441234
+𣡶 1234125125312125344444125221
+𣡷 1252212125343412125343411234
+𣡸 1234311252123425221251115124
+𣡹 12344131221111121132522114544
+𣡺 251211234251212512125251125121
+𣡻 123421212512513241112132411121
+𣡼 2125343412125343412125343411234
+𣡽 12341234123412341234123412341234
+𣡾 25111234251112342511123425111234
+𣡿 1234321125125151145123412341344334
+𣢀 523534
+𣢁 5133534
+𣢂 5133534
+𣢃 21213534
+𣢄 5543534
+𣢅 4153534
+𣢆 3153534
+𣢇 5153534
+𣢈 1213534
+𣢉 32153534
+𣢊 35333534
+𣢋 15153534
+𣢌 45353534
+𣢍 34153534
+𣢎 35153534
+𣢏 34533534
+𣢐 35343534
+𣢑 52213534
+𣢒 23433534
+𣢓 12213534
+𣢔 3513534
+𣢕 15353534
+𣢖 45133534
+𣢗 251123534
+𣢘 251123534
+𣢙 2121153534
+𣢚 335443534
+𣢛 351353534
+𣢜 554533534
+𣢝 341543534
+𣢞 513153534
+𣢟 122113534
+𣢠 454343534
+𣢡 311213534
+𣢢 554533534
+𣢣 511543534
+𣢤 212513534
+𣢥 321213534
+𣢦 414313534
+𣢧 2511343534
+𣢨 3312513534
+𣢩 5353533534
+𣢪 3513553534
+𣢫 5211213534
+𣢬 1334153534
+𣢭 1325343534
+𣢮 12251253534
+𣢯 3122513534
+𣢰 2112343534
+𣢱 2515553534
+𣢲 3434153534
+𣢳 3121533534
+𣢴 3111323534
+𣢵 3513543534
+𣢶 1541213534
+𣢷 3542513534
+𣢸 3511343534
+𣢹 1112343534
+𣢺 34152513534
+𣢻 21125343534
+𣢼 32511153534
+𣢽 25234153534
+𣢾 35112343534
+𣢿 41251213534
+𣣀 11353425211
+𣣁 51533123534
+𣣂 14312513534
+𣣃 13522523534
+𣣄 12512513534
+𣣅 15312343534
+𣣆 25131213534
+𣣇 21111343534
+𣣈 341545443534
+𣣉 321511353534
+𣣊 2121152513534
+𣣋 121353543534
+𣣌 135415113534
+𣣍 215315353534
+𣣎 15435413534
+𣣏 351525113534
+𣣐 121212523534
+𣣑 454341213534
+𣣒 331225113534
+𣣓 353435343534
+𣣔 431212513534
+𣣕 215315343534
+𣣖 524134543534
+𣣗 252112343534
+𣣘 251125113534
+𣣙 124512343534
+𣣚 134251153534
+𣣛 353435344334
+𣣜 554444533534
+𣣝 3251115523534
+𣣞 4512511123534
+𣣟 4453542513534
+𣣠 3251311343534
+𣣡 3513311343534
+𣣢 3241112513534
+𣣣 5131221343534
+𣣤 5151525113534
+𣣥 1344252213534
+𣣦 2515555553534
+𣣧 2125343413534
+𣣨 3123434523534
+𣣩 1344125113534
+𣣪 3312325113534
+𣣫 4312535113534
+𣣬 1125111343534
+𣣭 1312511123534
+𣣮 3112212523534
+𣣯 3552522523534
+𣣰 1135342135435
+𣣱 4143125123534
+𣣲 53535335413534
+𣣳 35443112523534
+𣣴 25221241343534
+𣣵 43111244443534
+𣣶 44531212513534
+𣣷 52312512143534
+𣣸 21253434153534
+𣣹 12154252213534
+𣣺 13251113543534
+𣣻 54254311213534
+𣣼 43134252213534
+𣣽 34121124313534
+𣣾 13121551213534
+𣣿 12145542513534
+𣤀 12111325223534
+𣤁 12511533343534
+𣤂 12122112343534
+𣤃 1511234353453
+𣤄 44534342513534
+𣤅 51312251543534
+𣤆 12111211153534
+𣤇 45324111213534
+𣤈 112125111343534
+𣤉 341525111343534
+𣤊 541541325113534
+𣤋 251125125313534
+𣤌 545454542513534
+𣤍 354141112513534
+𣤎 24335413534454
+𣤏 341335414223534
+𣤐 125115342513534
+𣤑 321511125123534
+𣤒 321511352513534
+𣤓 212534444413534
+𣤔 133413511223534
+𣤕 545412535113534
+𣤖 125111235543534
+𣤗 344143125113534
+𣤘 1221113433123534
+𣤙 3134251252513534
+𣤚 3241112144443534
+𣤛 1344134413443534
+𣤜 5454545412343534
+𣤝 2153343425113534
+𣤞 2511431224313534
+𣤟 1214534251153534
+𣤠 21211312335343534
+𣤡 32534312341343534
+𣤢 12511125235343534
+𣤣 35414143125113534
+𣤤 41343151122343534
+𣤥 53535325111343534
+𣤦 21255115112143534
+𣤧 21453434251113534
+𣤨 121232411121543534
+𣤩 541541324111213534
+𣤪 541541341124313534
+𣤫 121512112511243534
+𣤬 2121134342343423534
+𣤭 1312515345542343534
+𣤮 1312515344544113534
+𣤯 1212522125111343534
+𣤰 3251155455412343534
+𣤱 352511515352513543534
+𣤲 12512511225125113534
+𣤳 12251111332532543534
+𣤴 215315125143115343534
+𣤵 251113425111345313534
+𣤶 121342512511151513534
+𣤷 121251112511112343534
+𣤸 412512511122135343534
+𣤹 4312343241112144443534
+𣤺 1212522125111251113534
+𣤻 5131134132511121213534
+𣤼 1211215512121551213534
+𣤽 41251251251251135343534
+𣤾 212125125132411121543534
+𣤿 3525121444425221241343534
+𣥀 5132413425221352512143534
+𣥁 12212511134325111544443534
+𣥂 233
+𣥃 21215
+𣥄 12121
+𣥅 212115
+𣥆 332121
+𣥇 2121512
+𣥈 2121252
+𣥉 5132121
+𣥊 4152121
+𣥋 3211211
+𣥌 2121211
+𣥍 21213312
+𣥎 21211132
+𣥏 21213534
+𣥐 21213434
+𣥑 21213542
+𣥒 5212121
+𣥓 21252121
+𣥔 12512121
+𣥕 21212121
+𣥖 21212121
+𣥗 21212121
+𣥘 21215215
+𣥙 25342121
+𣥚 31342121
+𣥛 12121354
+𣥜 21212511
+𣥝 35532121
+𣥞 21211132
+𣥟 21211132
+𣥠 21212121
+𣥡 21213115
+𣥢 414312121
+𣥣 212153254
+𣥤 212125121
+𣥥 212115312
+𣥦 2121511534
+𣥧 2121251251
+𣥨 2121153554
+𣥩 2121111233
+𣥪 2121353312
+𣥫 21212115152
+𣥬 2121533354
+𣥭 2121112112
+𣥮 2121121121
+𣥯 2121132511
+𣥰 2121322154
+𣥱 2121125134
+𣥲 3331212121
+𣥳 34112342121
+𣥴 21212515353
+𣥵 12121311234
+𣥶 21212511233
+𣥷 21213542512
+𣥸 21215425111
+𣥹 212121123454
+𣥺 243432512121
+𣥻 212112135354
+𣥼 212125125152
+𣥽 2121112155414
+𣥾 212125342511
+𣥿 212111111233
+𣦀 12211542121
+𣦁 212121213434
+𣦂 125121352121
+𣦃 212133541453
+𣦄 212134225211
+𣦅 212144511234
+𣦆 132121125134
+𣦇 2121312511354
+𣦈 2121121325114
+𣦉 2121234325111
+𣦊 2121343413434
+𣦋 212135111152
+𣦌 2121543341134
+𣦍 4452511112121
+𣦎 1212124325251
+𣦏 1121211222154
+𣦐 21212522112121
+𣦑 32511544442121
+𣦒 21214134342511
+𣦓 12121212511134
+𣦔 125111231342121
+𣦕 212125112112121
+𣦖 212511122121233
+𣦗 212125343434341
+𣦘 325111544442121
+𣦙 212125111212121
+𣦚 132421211251234
+𣦛 322432525112121
+𣦜 2121313425125251
+𣦝 2121431253511124
+𣦞 1325114521212154
+𣦟 2121414312511211
+𣦠 212151312132511
+𣦡 21211212121325114
+𣦢 51325141431122121
+𣦣 25225225221212121
+𣦤 41251521313412121
+𣦥 12121121121121135
+𣦦 212113123353425111
+𣦧 212113123353452252
+𣦨 325151212113434234
+𣦩 212112125143151254
+𣦪 545412512554542121
+𣦫 212113123353435152
+𣦬 2121131123453452252
+𣦭 2121131233534252252
+𣦮 413434122121131233534
+𣦯 1331234312345454542121
+𣦰 1331234312342121125134
+𣦱 41112515544445544442121
+𣦲 21214134343541125441431
+𣦳 212141343425111125441431
+𣦴 313421213134212131342121
+𣦵 21251
+𣦶 155
+𣦷 213545
+𣦸 2135434
+𣦹 135434
+𣦺 135453
+𣦻 2125154
+𣦼 2135454
+𣦽 135435
+𣦾 135455
+𣦿 1354112
+𣧀 1354354
+𣧁 1354115
+𣧂 1354134
+𣧃 1354315
+𣧄 5551354
+𣧅 1354121
+𣧆 1354154
+𣧇 1354354
+𣧈 1354252
+𣧉 13543554
+𣧊 13545211
+𣧋 13543534
+𣧌 13541534
+𣧍 13542534
+𣧎 13545134
+𣧏 13542154
+𣧐 13542121
+𣧑 13543452
+𣧒 13541122
+𣧓 13545252
+𣧔 13543554
+𣧕 213543134
+𣧖 13542344
+𣧗 13541354
+𣧘 13543112
+𣧙 13543112
+𣧚 35111354
+𣧛 13544334
+𣧜 13545215
+𣧝 135425341
+𣧞 135431134
+𣧟 135451515
+𣧠 135434244
+𣧡 135415534
+𣧢 135445234
+𣧣 135411234
+𣧤 135412512
+𣧥 135455453
+𣧦 135413252
+𣧧 135413344
+𣧨 135432523
+𣧩 135435444
+𣧪 135452252
+𣧫 135431211
+𣧬 135435251
+𣧭 135432121
+𣧮 213541251
+𣧯 135434312
+𣧰 135412534
+𣧱 135425221
+𣧲 1354431234
+𣧳 1354354251
+𣧴 1354251134
+𣧵 1354131534
+𣧶 1354344354
+𣧷 1354351234
+𣧸 1354113534
+𣧹 1354122111
+𣧺 1354251122
+𣧻 1354353434
+𣧼 1354351355
+𣧽 1354555252
+𣧾 1354511534
+𣧿 1354135422
+𣨀 1324135415
+𣨁 1354125234
+𣨂 1354154121
+𣨃 1354251124
+𣨄 21354341251
+𣨅 13543443124
+𣨆 13543251135
+𣨇 13541315251
+𣨈 13541251124
+𣨉 13544125152
+𣨊 13541213215
+𣨋 13541213312
+𣨌 13544111251
+𣨍 13543535112
+𣨎 13543434121
+𣨏 213542551554
+𣨐 13543231211
+𣨑 12145135415
+𣨒 13543554234
+𣨓 13543121251
+𣨔 13543232511
+𣨕 13542513251
+𣨖 2135433225111
+𣨗 123433121354
+𣨘 135412123134
+𣨙 135431234531
+𣨚 135441541234
+𣨛 135441343412
+𣨜 135441323544
+𣨝 135441533444
+𣨞 135411134112
+𣨟 135425113533
+𣨠 135412124544
+𣨡 135432121252
+𣨢 135451352252
+𣨣 135441251234
+𣨤 135412511534
+𣨥 135435113511
+𣨦 2125134341534
+𣨧 135441542511
+𣨨 135425251154
+𣨩 135444525111
+𣨪 135425111234
+𣨫 135432411121
+𣨬 135443344334
+𣨭 135444525151
+𣨮 135434433121
+𣨯 2135435152511
+𣨰 121315135435
+𣨱 1354251225251
+𣨲 1354413122154
+𣨳 135412213452
+𣨴 1354122111234
+𣨵 1354251135345
+𣨶 1354551353334
+𣨷 21354251225251
+𣨸 1354555135422
+𣨹 1354414313333
+𣨺 1354255452511
+𣨻 4125145135415
+𣨼 1354122245252
+𣨽 1354121225134
+𣨾 1354251131121
+𣨿 1354451251112
+𣩀 1354451325122
+𣩁 1354351213312
+𣩂 1213312135435
+𣩃 13545115452
+𣩄 13541215425221
+𣩅 13544125125251
+𣩆 13544525114134
+𣩇 41332124135415
+𣩈 13544311213121
+𣩉 12145135415431
+𣩊 13543541521234
+𣩋 13541123431211
+𣩌 13542111543112
+𣩍 135454154134333
+𣩎 135412122511134
+𣩏 135441352211515
+𣩐 135444532132511
+𣩑 135425232411121
+𣩒 135412512212511
+𣩓 135455525111234
+𣩔 135455212511134
+𣩕 2135435251214444
+𣩖 344325211135435
+𣩗 135452133544124
+𣩘 135412511214124
+𣩙 135412121154444
+𣩚 135412211121251
+𣩛 135412512512515
+𣩜 135441431251135
+𣩝 1354511225111234
+𣩞 1354511225113511
+𣩟 1354543341251431
+𣩠 1354122111343312
+𣩡 1354251112211154
+𣩢 1354134432511234
+𣩣 1354121241541234
+𣩤 1354121551214544
+𣩥 1354252212511134
+𣩦 1354121121121135
+𣩧 1354431112431251
+𣩨 13541212122151234
+𣩩 51325141431121354
+𣩪 13542121131233534
+𣩫 12342243143111234
+𣩬 13541252342511134
+𣩭 34342513534135415
+𣩮 13543412524312511
+𣩯 135425115545544444
+𣩰 135454154132411121
+𣩱 135412121215425221
+𣩲 135412212513443121
+𣩳 1354153515342511
+𣩴 51554251214135415
+𣩵 135444552132511134
+𣩶 135454334211121111
+𣩷 1354121235251214444
+𣩸 1325141343412135435
+𣩹 13544125221241343534
+𣩺 321125125151145135415
+𣩻 213544125221241343534
+𣩼 135451122511125431234
+𣩽 135441251251112213534
+𣩾 1212341251121245135415
+𣩿 13542522155444432411121
+𣪀 13541225111134132511134
+𣪁 13543121353121352511134
+𣪂 35413554
+𣪃 51353554
+𣪄 35343554
+𣪅 121213554
+𣪆 251153554
+𣪇 122513554
+𣪈 3543543554
+𣪉 2515133554
+𣪊 1214513554
+𣪋 12413443554
+𣪌 12514313554
+𣪍 51335353554
+𣪎 12125113554
+𣪏 51135113554
+𣪐 51551153554
+𣪑 15112343554
+𣪒 12145153554
+𣪓 25135413554
+𣪔 35131153554
+𣪕 32511543554
+𣪖 34312343554
+𣪗 12125213554
+𣪘 32511353554
+𣪙 212511123554
+𣪚 122125113554
+𣪛 121452513554
+𣪜 312211353554
+𣪝 121451213554
+𣪞 325111323554
+𣪟 15435413554
+𣪠 1251112523554
+𣪡 5212511523554
+𣪢 4125145123554
+𣪣 5113533343554
+𣪤 1215213355453
+𣪥 1214513554251
+𣪦 3113251113554
+𣪧 3251141533554
+𣪨 1214511343554
+𣪩 3434123543554
+𣪪 4134112513554
+𣪫 5131341343554
+𣪬 1214531123554
+𣪭 1121251113554
+𣪮 44541431123554
+𣪯 44525132513554
+𣪰 35455252213554
+𣪱 25212514313554
+𣪲 22431431123554
+𣪳 12145135343554
+𣪴 55453533343554
+𣪵 51312215343554
+𣪶 545454343333554
+𣪷 32151131213554
+𣪸 121453122513554
+𣪹 121451522523554
+𣪺 124515542343554
+𣪻 2243143111343554
+𣪼 2434525115233554
+𣪽 3134251252513554
+𣪾 5151211212513554
+𣪿 2434525112343554
+𣫀 1214531212513554
+𣫁 1211211211343554
+𣫂 1245112511123554
+𣫃 1214534435213554
+𣫄 1234123425113554
+𣫅 1214535351123554
+𣫆 1215213355412121
+𣫇 1214535112343554
+𣫈 1214512535113554
+𣫉 1214531234355453
+𣫊 1215213355412251
+𣫋 2145344312343554
+𣫌 12145134435213554
+𣫍 34125125134343554
+𣫎 12145112512343554
+𣫏 32151141112513554
+𣫐 12151212511243554
+𣫑 314314251111323554
+𣫒 121521335541555121
+𣫓 121451123412343554
+𣫔 121451135334343554
+𣫕 251215131221343554
+𣫖 414311213533343554
+𣫗 121452514312343554
+𣫘 121521335543543524
+𣫙 1215213355425111234
+𣫚 4143111213533343554
+𣫛 4122114513533343554
+𣫜 1215213355421251112
+𣫝 1215213355444534121
+𣫞 22431431123215113554
+𣫟 5151211215415413554
+𣫠 12451325111544443554
+𣫡 414312511123541523554
+𣫢 31431434125125134343554
+𣫣 12152133554122134251214
+𣫤 12152133554543341251431
+𣫥 1311345355441351124134
+𣫦 1251112355421531535435
+𣫧 121213312343123421213554
+𣫨 121521335543412522125221
+𣫩 2243143112132151112343554
+𣫪 121453123435543412524312511
+𣫫 131134535543411243134112431
+𣫬 55221
+𣫭 4155414
+𣫮 52155414
+𣫯 55215521
+𣫰 554145215
+𣫱 11545521
+𣫲 554143215
+𣫳 552125221
+𣫴 1211215521
+𣫵 13411215521
+𣫶 23411215521
+𣫷 315541443112
+𣫸 315541412215
+𣫹 2511211215521
+𣫺 415541441543541
+𣫻 55212511234531
+𣫼 315541444535455
+𣫽 312341355345531
+𣫾 31554144453434251
+𣫿 43123413553455414
+𣬀 1343423413553425414
+𣬁 31554141253152512125221
+𣬂 1515112
+𣬃 1515355
+𣬄 15153553
+𣬅 15151515
+𣬆 15151354
+𣬇 15353553
+𣬈 3253411515
+𣬉 3253411515
+𣬊 1515112112
+𣬋 35252211515
+𣬌 32534451515
+𣬍 1212251211515
+𣬎 3525115155134
+𣬏 21115252211515
+𣬐 35251151525134
+𣬑 25125125111515
+𣬒 352511515125134
+𣬓 151534343434132
+𣬔 3525211515125134
+𣬕 3525115151251251
+𣬖 3251212512115151515
+𣬗 15152512115154334132
+𣬘 15152522115154334132
+𣬙 4143125115154143125135
+𣬚 3525115153525135435251354
+𣬛 3115
+𣬜 311535
+𣬝 311552
+𣬞 311553
+𣬟 311522
+𣬠 311535
+𣬡 5553115
+𣬢 3115252
+𣬣 3115251
+𣬤 311552
+𣬥 3115521
+𣬦 2513115
+𣬧 3115251
+𣬨 3115354
+𣬩 34533115
+𣬪 12523115
+𣬫 31153432
+𣬬 31153554
+𣬭 25113115
+𣬮 13553115
+𣬯 31154412
+𣬰 31152511
+𣬱 31153434
+𣬲 31153134
+𣬳 31153112
+𣬴 31153534
+𣬵 41533115
+𣬶 31155215
+𣬷 52153115
+𣬸 532513115
+𣬹 341543115
+𣬺 311213115
+𣬻 525343115
+𣬼 311553254
+𣬽 311513534
+𣬾 132413115
+𣬿 311513211
+𣭀 355153115
+𣭁 2121153115
+𣭂 251343115
+𣭃 253413115
+𣭄 531543115
+𣭅 545233115
+𣭆 311554251
+𣭇 311555414
+𣭈 311545434
+𣭉 311541431
+𣭊 311513251
+𣭋 311553251
+𣭌 311511132
+𣭍 311512354
+𣭎 311512251
+𣭏 311513251
+𣭐 311511234
+𣭑 311552252
+𣭒 311525111
+𣭓 311525134
+𣭔 311534154
+𣭕 311534333
+𣭖 251153115
+𣭗 311525154
+𣭘 515323115
+𣭙 311551335
+𣭚 311535515
+𣭛 31153454
+𣭜 3115541541
+𣭝 3115341251
+𣭞 3115122111
+𣭟 3121353115
+𣭠 5312513115
+𣭡 3121353115
+𣭢 1213153115
+𣭣 3352113115
+𣭤 3115153512
+𣭥 3115513444
+𣭦 3115251214
+𣭧 3115354354
+𣭨 3115354251
+𣭩 3115321344
+𣭪 3115312251
+𣭫 3543333115
+𣭬 3115354234
+𣭭 1112533115
+𣭮 4311343115
+𣭯 3115151534
+𣭰 5431123115
+𣭱 31152433541
+𣭲 54251123115
+𣭳 12413443115
+𣭴 31151251234
+𣭵 12512343115
+𣭶 13434343115
+𣭷 12455213115
+𣭸 25111123115
+𣭹 31341123115
+𣭺 35135343115
+𣭻 25121213115
+𣭼 51325343115
+𣭽 13115343115
+𣭾 31151251124
+𣭿 31151121132
+𣮀 31234223115
+𣮁 31153123453
+𣮂 31153123422
+𣮃 31152511234
+𣮄 31153443531
+𣮅 31154412343
+𣮆 43251353115
+𣮇 25151343115
+𣮈 513522523115
+𣮉 134342343115
+𣮊 251111243115
+𣮋 312343533115
+𣮌 151121343115
+𣮍 311541431531
+𣮎 311525111515
+𣮏 311515341534
+𣮐 311532511312
+𣮑 311525112511
+𣮒 413511343115
+𣮓 311545351234
+𣮔 251112343115
+𣮕 354312343115
+𣮖 152331343115
+𣮗 311513252511
+𣮘 311541251234
+𣮙 311541533134
+𣮚 311531131112
+𣮛 311511213511
+𣮜 311524325251
+𣮝 111211123115
+𣮞 311534112251
+𣮟 541341113115
+𣮠 122125113115
+𣮡 134121323115
+𣮢 412515213115
+𣮣 311541351134
+𣮤 311544511234
+𣮥 453412343115
+𣮦 134112343115
+𣮧 431224313115
+𣮨 3115251125214
+𣮩 3115431253511
+𣮪 5452312343115
+𣮫 5121151543115
+𣮬 3115445343454
+𣮭 4143112343115
+𣮮 5213251113115
+𣮯 4453434543115
+𣮰 2511112343115
+𣮱 5121151543115
+𣮲 3115131213541
+𣮳 2521213153115
+𣮴 3115354111251
+𣮵 321511343115
+𣮶 3115251131121
+𣮷 3115251135345
+𣮸 4454334543115
+𣮹 3115431325111
+𣮺 3115431121134
+𣮻 3115132522111
+𣮼 3115252132522
+𣮽 3115252554234
+𣮾 1214312343115
+𣮿 1325221113115
+𣯀 3115251125111
+𣯁 311532151134
+𣯂 3115322511234
+𣯃 4135342513115
+𣯄 3115125115315
+𣯅 13433443343115
+𣯆 12131525113115
+𣯇 43112144443115
+𣯈 12123412513115
+𣯉 25221241343115
+𣯊 31154143454153
+𣯋 31151311534124
+𣯌 44123435313115
+𣯍 31153241112112
+𣯎 2511252213115
+𣯏 31151212122111
+𣯐 31155551325111
+𣯑 3115325114444
+𣯒 31153225111134
+𣯓 41431414313115
+𣯔 31154453434251
+𣯕 12413412543115
+𣯖 31154125125251
+𣯗 31151312212511
+𣯘 31153115431234
+𣯙 31153415113251
+𣯚 3115122341251
+𣯛 15233134133115
+𣯜 3115321511254
+𣯝 32511131153115
+𣯞 41431414313115
+𣯟 41434541533115
+𣯠 43111531153115
+𣯡 41431251153115
+𣯢 31154412343531
+𣯣 31151221253434
+𣯤 31154134522554
+𣯥 311554154132511
+𣯦 325111515353115
+𣯧 311525232411121
+𣯨 332343421343115
+𣯩 311512212523434
+𣯪 311533221212134
+𣯫 311525112512531
+𣯬 121213441323115
+𣯭 311512135121354
+𣯮 541541325113115
+𣯯 252324111213115
+𣯰 541541124313115
+𣯱 52414312513115
+𣯲 311535431234531
+𣯳 12225111343115
+𣯴 31152511122112
+𣯵 414325122513115
+𣯶 311554545434333
+𣯷 112342154133115
+𣯸 441151512343115
+𣯹 3134251252513115
+𣯺 5454543424443115
+𣯻 1212225111343115
+𣯼 1252214312343115
+𣯽 4312243125113115
+𣯾 3115341251541541
+𣯿 3115432524312511
+𣰀 3115543345153554
+𣰁 3115121244511234
+𣰂 3115354113444444
+𣰃 3115132522132522
+𣰄 1325221325223115
+𣰅 3412515415413115
+𣰆 3115543341251431
+𣰇 3115545232534251
+𣰈 3115554554134534
+𣰉 432523431343115
+𣰊 25122113115343115
+𣰋 12511125111343115
+𣰌 12122511353453115
+𣰍 25111433443343115
+𣰎 31153124345251252
+𣰏 31152523251213554
+𣰐 12413444135343115
+𣰑 31151452413425121
+𣰒 31153322521353134
+𣰓 3115332154353134
+𣰔 31151325221113115
+𣰕 31152512512511234
+𣰖 31431425111323115
+𣰗 32511311531153115
+𣰘 12251111343333115
+𣰙 31151234123411234
+𣰚 314314251111323115
+𣰛 121212154252213115
+𣰜 311541211125444435
+𣰝 513251125125313115
+𣰞 311554154132411121
+𣰟 2511251253131343115
+𣰠 125111251111343115
+𣰡 253525125352513115
+𣰢 513251125125313115
+𣰣 252211125221113115
+𣰤 311543123444511234
+𣰥 31151224511353334
+𣰦 311512512531425221
+𣰧 251111234251113115
+𣰨 445123325111343115
+𣰩 31155553215111234
+𣰪 311533215435413134
+𣰫 5552534154454453115
+𣰬 3115121252212511134
+𣰭 2512125121251213115
+𣰮 2125343414312343115
+𣰯 3525121444425113115
+𣰰 1132511132511343115
+𣰱 25212512113115132511
+𣰲 54523253525123433115
+𣰳 31153143144143125115
+𣰴 3143144143125113115
+𣰵 31154143125111515111
+𣰶 412512511122135343115
+𣰷 311534341211121111534
+𣰸 251212512125121453115
+𣰹 311521253444441344444
+𣰺 121451251431532543115
+𣰻 2121251251324111213115
+𣰼 3115122111122111122111
+𣰽 3115251112511132411121
+𣰾 3115121213513125125534
+𣰿 12541254413522115153115
+𣱀 31152522155444432411121
+𣱁 311525112511251145251111
+𣱂 41112515544445544443543115
+𣱃 311525121251212512145251111
+𣱄 1251253121253444441252213115
+𣱅 41551515
+𣱆 45133515
+𣱇 512513515
+𣱈 515155215
+𣱉 115451515
+𣱊 123435151
+𣱋 35151134554
+𣱌 12512213515
+𣱍 25221353515
+𣱎 35151312135
+𣱏 5452335333515
+𣱐 35151125351121
+𣱑 3515135125351121
+𣱒 35151515253341121
+𣱓 321134345114535151
+𣱔 43252343134133515
+𣱕 311553
+𣱖 311541
+𣱗 3115153
+𣱘 3115531
+𣱙 31153511
+𣱚 31151354
+𣱛 31154334
+𣱜 311525341
+𣱝 311515234
+𣱞 311521354
+𣱟 311525121
+𣱠 311541431
+𣱡 3525113115
+𣱢 311525113533
+𣱣 31152512341
+𣱤 311521531535
+𣱥 311543123452
+𣱦 3115355325221
+𣱧 3115312511211
+𣱨 3115125431234
+𣱩 31154312342511
+𣱪 311512522111234
+𣱫 311543123425121
+𣱬 34132523115431234
+𣱭 31154125251131234
+𣱮 311512511121555121
+𣱯 311543123412522111234
+𣱰 311534341211121111534
+𣱱 2334
+𣱲 25341
+𣱳 12534
+𣱴 4415
+𣱵 412534
+𣱶 44124
+𣱷 132534
+𣱸 253434
+𣱹 3524134
+𣱺 253434
+𣱻 253435
+𣱼 44153
+𣱽 44153
+𣱾 44152
+𣱿 44134
+𣲀 441333
+𣲁 441215
+𣲂 5552534
+𣲃 441315
+𣲄 441534
+𣲅 441151
+𣲆 441515
+𣲇 441112
+𣲈 4553422
+𣲉 2534124
+𣲊 2152534
+𣲋 441354
+𣲌 441512
+𣲍 441135
+𣲎 34152534
+𣲏 4412154
+𣲐 4411524
+𣲑 4411554
+𣲒 4413253
+𣲓 4412134
+𣲔 4411341
+𣲕 4412511
+𣲖 4413354
+𣲗 4411152
+𣲘 4411135
+𣲙 4412534
+𣲚 4413211
+𣲛 34312534
+𣲜 11322534
+𣲝 34342534
+𣲞 4411215
+𣲟 4411221
+𣲠 4411354
+𣲡 4412344
+𣲢 4413534
+𣲣 4413355
+𣲤 4413432
+𣲥 4413541
+𣲦 25342343
+𣲧 4414334
+𣲨 4411523
+𣲩 4415215
+𣲪 4411535
+𣲫 4415113
+𣲬 4413112
+𣲭 4413115
+𣲮 13242534
+𣲯 25345215
+𣲰 25341254
+𣲱 43342534
+𣲲 44131234
+𣲳 44112515
+𣲴 515322534
+𣲵 44125134
+𣲶 44125351
+𣲷 44125541
+𣲸 44125253
+𣲹 44125211
+𣲺 44151254
+𣲻 44151335
+𣲼 44144535
+𣲽 44144535
+𣲾 44154121
+𣲿 44132554
+𣳀 44125112
+𣳁 44134415
+𣳂 122512534
+𣳃 44115121
+𣳄 44125121
+𣳅 44134234
+𣳆 415512534
+𣳇 44113121
+𣳈 44132252
+𣳉 253425351
+𣳊 44115121
+𣳋 44112521
+𣳌 44141535
+𣳍 44141435
+𣳎 44113241
+𣳏 44111254
+𣳐 44115315
+𣳑 44125112
+𣳒 44125254
+𣳓 44121124
+𣳔 44135112
+𣳕 112342534
+𣳖 253412251
+𣳗 253455414
+𣳘 44112221
+𣳙 44113112
+𣳚 44125154
+𣳛 44132534
+𣳜 44135355
+𣳝 44141312
+𣳞 44145351
+𣳟 44152134
+𣳠 44155414
+𣳡 44113534
+𣳢 44135424
+𣳣 253451335
+𣳤 441251121
+𣳥 441413315
+𣳦 441325341
+𣳧 441251555
+𣳨 441325151
+𣳩 441113534
+𣳪 441125134
+𣳫 4415221121
+𣳬 441311252
+𣳭 441344354
+𣳮 441251251
+𣳯 441554554
+𣳰 441123412
+𣳱 441111253
+𣳲 441255211
+𣳳 1252212534
+𣳴 441312121
+𣳵 441545454
+𣳶 441132412
+𣳷 441352211
+𣳸 441355235
+𣳹 441134112
+𣳺 441555252
+𣳻 3251112534
+𣳼 441351234
+𣳽 441351252
+𣳾 43113424134
+𣳿 441445112
+𣴀 441535353
+𣴁 4414255112
+𣴂 441353554
+𣴃 441415334
+𣴄 441453554
+𣴅 441513112
+𣴆 441541541
+𣴇 441131344
+𣴈 441151222
+𣴉 441251154
+𣴊 441355215
+𣴋 441335115
+𣴌 441554134
+𣴍 441554234
+𣴎 4311212534
+𣴏 4553445534
+𣴐 1213152534
+𣴑 441154325
+𣴒 441234134
+𣴓 441323112
+𣴔 441413112
+𣴕 441433435
+𣴖 441555354
+𣴗 441354252
+𣴘 441441134
+𣴙 441354354
+𣴚 441535353
+𣴛 441113534
+𣴜 441121315
+𣴝 2534341534
+𣴞 4413553121
+𣴟 4413251135
+𣴠 4413515251
+𣴡 4413251115
+𣴢 4413251112
+𣴣 4415213121
+𣴤 4411554534
+𣴥 4413531121
+𣴦 4414551554
+𣴧 4415121121
+𣴨 4411325111
+𣴩 4414451255
+𣴪 4412511312
+𣴫 4415125154
+𣴬 4412551554
+𣴭 4411212345
+𣴮 4411121534
+𣴯 4412121252
+𣴰 4411341212
+𣴱 4412121112
+𣴲 34342512534
+𣴳 25343434121
+𣴴 31554142534
+𣴵 4412551511
+𣴶 4413434121
+𣴷 4411212343
+𣴸 4412145135
+𣴹 4414155435
+𣴺 4412525341
+𣴻 4415132121
+𣴼 4413251134
+𣴽 4412524334
+𣴾 4413231525
+𣴿 4414133112
+𣵀 4412511121
+𣵁 4413232511
+𣵂 44134152534
+𣵃 4414311322
+𣵄 4414131234
+𣵅 4414152444
+𣵆 4414453535
+𣵇 4414453535
+𣵈 4414451215
+𣵉 4414122134
+𣵊 4415211152
+𣵋 4411135112
+𣵌 4415112534
+𣵍 4411135111
+𣵎 4411234521
+𣵏 4415111234
+𣵐 4411251112
+𣵑 4411533134
+𣵒 4411213544
+𣵓 4412513533
+𣵔 4412125121
+𣵕 4412152134
+𣵖 4412511134
+𣵗 4412513134
+𣵘 4412521135
+𣵙 4412523215
+𣵚 4413134234
+𣵛 4413123453
+𣵜 4413134252
+𣵝 4415325424
+𣵞 4411134251
+𣵟 4411342534
+𣵠 4411353334
+𣵡 4412511112
+𣵢 4412512511
+𣵣 4413212512
+𣵤 4413225111
+𣵥 4413522511
+𣵦 4413525121
+𣵧 4414111251
+𣵨 4411255151
+𣵩 4411344334
+𣵪 4412511153
+𣵫 4414534134
+𣵬 4415155115
+𣵭 4415221121
+𣵮 441111352
+𣵯 25135342534
+𣵰 4414134251
+𣵱 4411211121
+𣵲 4413243112
+𣵳 54251122534
+𣵴 4412513445
+𣵵 441252354
+𣵶 4412513534
+𣵷 4411221152
+𣵸 44131431435
+𣵹 4411515121
+𣵺 4415231525
+𣵻 4415244535
+𣵼 44125111112
+𣵽 44112123134
+𣵾 44112155121
+𣵿 44132251325
+𣶀 44125113511
+𣶁 44112343215
+𣶂 44133241121
+𣶃 44112251112
+𣶄 44155525122
+𣶅 44151341431
+𣶆 44144535515
+𣶇 44112511251
+𣶈 44125431415
+𣶉 44135134412
+𣶊 44152132511
+𣶋 44135414334
+𣶌 44135153134
+𣶍 44152131344
+𣶎 44125232511
+𣶏 44115112134
+𣶐 44113435352
+𣶑 44141345235
+𣶒 312155212
+𣶓 44121253541
+𣶔 44115432534
+𣶕 44115212115
+𣶖 44115553121
+𣶗 44134452534
+𣶘 44135354354
+𣶙 253425343534
+𣶚 322513252534
+𣶛 44125343534
+𣶜 44132251555
+𣶝 44112125111
+𣶞 44125125211
+𣶟 44125234415
+𣶠 44115342444
+𣶡 44125213541
+𣶢 44111354153
+𣶣 44112512154
+𣶤 44125134251
+𣶥 44112113251
+𣶦 44125132511
+𣶧 44134523354
+𣶨 44113251214
+𣶩 44112512152
+𣶪 44125111121
+𣶫 44145352511
+𣶬 44152251541
+𣶭 44121531553
+𣶮 44113431523
+𣶯 44151122511
+𣶰 4415212512
+𣶱 44131134251
+𣶲 44112342343
+𣶳 44135411214
+𣶴 44135112512
+𣶵 44121212134
+𣶶 44134431234
+𣶷 253443344334
+𣶸 44131511234
+𣶹 44133241112
+𣶺 44144525111
+𣶻 4412512154
+𣶼 44112123553
+𣶽 44112121154
+𣶾 44115342444
+𣶿 44122121112
+𣷀 44141321251
+𣷁 44144535555
+𣷂 44144511214
+𣷃 44143113453
+𣷄 44141351134
+𣷅 44144554251
+𣷆 44144535121
+𣷇 44143344444
+𣷈 44151125112
+𣷉 44152251541
+𣷊 44113544412
+𣷋 44153251214
+𣷌 44112524134
+𣷍 44151325111
+𣷎 44112123511
+𣷏 44112123415
+𣷐 44125112134
+𣷑 44121511531
+𣷒 44155341121
+𣷓 44131234251
+𣷔 44135134153
+𣷕 44155444454
+𣷖 413234342534
+𣷗 122111542534
+𣷘 253412342534
+𣷙 351331342534
+𣷚 134343424134
+𣷛 251213542534
+𣷜 253425343134
+𣷝 44112122135
+𣷞 44112211234
+𣷟 44113443112
+𣷠 44125113511
+𣷡 44125124544
+𣷢 44125153511
+𣷣 44125431252
+𣷤 44125512511
+𣷥 44131133511
+𣷦 44134431234
+𣷧 44141324251
+𣷨 44143113522
+𣷩 44143443511
+𣷪 44125241121
+𣷫 44141533134
+𣷬 44143153422
+𣷭 44133253254
+𣷮 44113251132
+𣷯 4413312454
+𣷰 44125213251
+𣷱 44132125134
+𣷲 44133513312
+𣷳 44141335154
+𣷴 44111213534
+𣷵 44111251234
+𣷶 44121255541
+𣷷 44141223454
+𣷸 4411212454
+𣷹 44131342534
+𣷺 44153353354
+𣷻 44112525111
+𣷼 441125112154
+𣷽 441325114554
+𣷾 441125111235
+𣷿 441131213541
+𣸀 44135251214
+𣸁 441511112333
+𣸂 441112134534
+𣸃 441121212354
+𣸄 441354242511
+𣸅 441121312251
+𣸆 4411212212115
+𣸇 441321251134
+𣸈 441445433454
+𣸉 441121431112
+𣸊 44134151154
+𣸋 441251211344
+𣸌 441234312512
+𣸍 441543343554
+𣸎 441212512254
+𣸏 441531543115
+𣸐 2534132512534
+𣸑 441123431234
+𣸒 441134143112
+𣸓 441545454431
+𣸔 441351311234
+𣸕 1132325112534
+𣸖 441313443112
+𣸗 1123431342534
+𣸘 44144535454
+𣸙 441251252211
+𣸚 441251214525
+𣸛 441243354122
+𣸜 441251113553
+𣸝 441121541541
+𣸞 1431225342534
+𣸟 441555135422
+𣸠 441554135422
+𣸡 441121431234
+𣸢 441153545434
+𣸣 441121222534
+𣸤 441252214153
+𣸥 441414313333
+𣸦 441451135531
+𣸧 441453413443
+𣸨 441122454334
+𣸩 441331225111
+𣸪 441312511354
+𣸫 441545454121
+𣸬 441251153251
+𣸭 441251141431
+𣸮 441341541154
+𣸯 441123431521
+𣸰 441132512515
+𣸱 441121235455
+𣸲 441111253134
+𣸳 441134413534
+𣸴 441123444535
+𣸵 441131531534
+𣸶 441135411534
+𣸷 441134432534
+𣸸 441113424134
+𣸹 441513431132
+𣸺 441132511234
+𣸻 441121213534
+𣸼 441132511444
+𣸽 441121213412
+𣸾 441212514444
+𣸿 441121225135
+𣹀 441121233511
+𣹁 441325113553
+𣹂 441321113554
+𣹃 441355325221
+𣹄 441344335112
+𣹅 4312511222534
+𣹆 441134425221
+𣹇 441234312512
+𣹈 441251132511
+𣹉 441253425221
+𣹊 441335414333
+𣹋 441325111535
+𣹌 441433431234
+𣹍 441515253541
+𣹎 441515515134
+𣹏 441521521521
+𣹐 441125115315
+𣹑 441251251214
+𣹒 441353325121
+𣹓 44112254251
+𣹔 44125251454
+𣹕 441332511112
+𣹖 441135425111
+𣹗 441112134333
+𣹘 441332121124
+𣹙 44113251152
+𣹚 441325251132
+𣹛 2534325111121
+𣹜 4415115452
+𣹝 441522433541
+𣹞 4414513533434
+𣹟 4411212511134
+𣹠 4414535251354
+𣹡 4411213152511
+𣹢 4415425431121
+𣹣 4415353532121
+𣹤 4415312513112
+𣹥 4413211213511
+𣹦 4414455114554
+𣹧 4414453531211
+𣹨 4415221152322
+𣹩 4415353533541
+𣹪 4414153313115
+𣹫 4414131251112
+𣹬 12145125343554
+𣹭 4411543252534
+𣹮 4413253411515
+𣹯 4413525113515
+𣹰 4415114525254
+𣹱 4413412513534
+𣹲 4415134143112
+𣹳 25341543252534
+𣹴 4413112125111
+𣹵 4412521221115
+𣹶 4413434121354
+𣹷 4411251124252
+𣹸 4413511431134
+𣹹 131433453411111
+𣹺 4412515552534
+𣹻 32511325112534
+𣹼 4411221112511
+𣹽 4412511211121
+𣹾 4414125125112
+𣹿 4414143254153
+𣺀 4412521213541
+𣺁 4411313511534
+𣺂 4412511445531
+𣺃 4415454542511
+𣺄 4414143141431
+𣺅 4413215113533
+𣺆 4413525121132
+𣺇 4411123412211
+𣺈 4413213412512
+𣺉 4414512341234
+𣺊 4414451353334
+𣺋 4411212125351
+𣺌 4411221112343
+𣺍 4415433431134
+𣺎 4415114525254
+𣺏 4411221252334
+𣺐 4412511131134
+𣺑 4414453434252
+𣺒 4414134413534
+𣺓 4414125134534
+𣺔 4411341251431
+𣺕 4411251112112
+𣺖 4411221342444
+𣺗 4411252214334
+𣺘 4415131251124
+𣺙 4411221342521
+𣺚 4411341311534
+𣺛 4411212354152
+𣺜 4411212525341
+𣺝 4412511554554
+𣺞 4411212251112
+𣺟 4412343541541
+𣺠 4412511134123
+𣺡 4413122111511
+𣺢 441323541234
+𣺣 4413312515215
+𣺤 4415552512122
+𣺥 4413552335523
+𣺦 4413241112154
+𣺧 4413443451252
+𣺨 4413134112431
+𣺩 43152335112534
+𣺪 25342512511134
+𣺫 441322354333
+𣺬 4411212415325
+𣺭 4411312534534
+𣺮 4411341211154
+𣺯 4412511122431
+𣺰 4412512433541
+𣺱 4413143145113
+𣺲 4414312343554
+𣺳 4415132413422
+𣺴 4415454543211
+𣺵 4415513533434
+𣺶 15233134132534
+𣺷 4413534522511
+𣺸 4414311124334
+𣺹 4415131221534
+𣺺 4413321212134
+𣺻 4412513425221
+𣺼 4412434525135
+𣺽 4412522112154
+𣺾 441122531251
+𣺿 4412523541112
+𣻀 4415544442534
+𣻁 4413411243112
+𣻂 4411213312251
+𣻃 4413241431251
+𣻄 4413323411234
+𣻅 1212514412343
+𣻆 4415213554234
+𣻇 441511534454
+𣻈 4413211134112
+𣻉 4411221545252
+𣻊 152331343424134
+𣻋 4412125122154
+𣻌 4414311212534
+𣻍 44135251154444
+𣻎 44144511353134
+𣻏 44132511151234
+𣻐 44121531525111
+𣻑 44134123543554
+𣻒 44141533134154
+𣻓 44141533131121
+𣻔 44112522114334
+𣻕 44141312351235
+𣻖 44123433525135
+𣻗 44131234354354
+𣻘 44112342433541
+𣻙 44131251251251
+𣻚 44133212354112
+𣻛 44111134321511
+𣻜 44131431432124
+𣻝 44112522113455
+𣻞 44125121121124
+𣻟 44113125125534
+𣻠 44134112344412
+𣻡 44112124511534
+𣻢 4415425112454
+𣻣 253421212332534
+𣻤 253441543252534
+𣻥 44132115112511
+𣻦 44134151253511
+𣻧 44112134154544
+𣻨 44151331152534
+𣻩 4413113425152
+𣻪 44112132343134
+𣻫 44125111541541
+𣻬 44154334431234
+𣻭 44153535325221
+𣻮 325112534252252
+𣻯 151325111342534
+𣻰 44144232411121
+𣻱 44151112125111
+𣻲 44125121252511
+𣻳 44115132511134
+𣻴 441121125413534
+𣻵 44125125125115
+𣻶 44121253541121
+𣻷 44151311234124
+𣻸 44124345251252
+𣻹 44112512554121
+𣻺 44112211134121
+𣻻 44112124451135
+𣻼 44141251453115
+𣻽 44135111555121
+𣻾 44125111212343
+𣻿 44112124143112
+𣼀 44141315354333
+𣼁 44143111245534
+𣼂 44144513425111
+𣼃 44143113411234
+𣼄 44141352211354
+𣼅 44141554351234
+𣼆 44141252211234
+𣼇 44151352413452
+𣼈 44152134251214
+𣼉 44151315412122
+𣼊 44112343434354
+𣼋 44115312343534
+𣼌 44111215543511
+𣼍 44125234125122
+𣼎 44123431411121
+𣼏 44112125253452
+𣼐 44151122511111
+𣼑 44112122511234
+𣼒 44112123554234
+𣼓 44123432511234
+𣼔 44125113443521
+𣼕 44134125125122
+𣼖 44131234221234
+𣼗 44145125114134
+𣼘 121521335542534
+𣼙 325115113542534
+𣼚 44112211125211
+𣼛 44112212524134
+𣼜 4411343215115
+𣼝 44132221541234
+𣼞 44132251251251
+𣼟 44141352212534
+𣼠 44141554413435
+𣼡 44144554445252
+𣼢 44154154134154
+𣼣 44151312523434
+𣼤 44112112113251
+𣼥 4411225213121
+𣼦 44125115454112
+𣼧 44141554413412
+𣼨 44151312251132
+𣼩 4415234451154
+𣼪 34441131251534
+𣼫 44125112115452
+𣼬 44125111213312
+𣼭 44112132411121
+𣼮 44125111213435
+𣼯 44112141431251
+𣼰 44111211324544
+𣼱 44132251125214
+𣼲 44125132411121
+𣼳 44112143112354
+𣼴 44112511123534
+𣼵 44112123123422
+𣼶 44151122511251
+𣼷 44112212511253
+𣼸 44113251111534
+𣼹 44125111511534
+𣼺 44132534134354
+𣼻 44114524134112
+𣼼 4415212511234
+𣼽 4414511543511
+𣼾 44112211135352
+𣼿 15425343155414
+𣽀 44113251113432
+𣽁 441252211353334
+𣽂 441134312155212
+𣽃 441351335121251
+𣽄 441134334433422
+𣽅 441122111312251
+𣽆 441314314121354
+𣽇 441121212211154
+𣽈 441132522132522
+𣽉 441125112354444
+𣽊 441214513434251
+𣽋 441251113121251
+𣽌 441353215113534
+𣽍 441325111123334
+𣽎 441325111111112
+𣽏 441121551214544
+𣽐 441122112543112
+𣽑 44113412132454
+𣽒 441122152511134
+𣽓 441541541342444
+𣽔 441515253341121
+𣽕 441123412343554
+𣽖 441321515341534
+𣽗 441112113533434
+𣽘 441413541521234
+𣽙 441251115354444
+𣽚 441414312511534
+𣽛 441314314341251
+𣽜 441325111331134
+𣽝 441121353251214
+𣽞 441251135424251
+𣽟 441121112343534
+𣽠 441251211322154
+𣽡 441121251124124
+𣽢 441414312512251
+𣽣 441332122134112
+𣽤 441314314125234
+𣽥 441112132511134
+𣽦 441131251534531
+𣽧 441445325114554
+𣽨 33541443113424134
+𣽩 441415331154325
+𣽪 441555521325111
+𣽫 441121235544544
+𣽬 441445112213444
+𣽭 441253425125221
+𣽮 441531344311252
+𣽯 441325111325211
+𣽰 441335414312251
+𣽱 441415454542511
+𣽲 44141554453112
+𣽳 441431511223435
+𣽴 441251251213541
+𣽵 441252545412341
+𣽶 441513311552252
+𣽷 441253425113533
+𣽸 441445343121251
+𣽹 441445454425211
+𣽺 441251251251115
+𣽻 44152251211534
+𣽼 441134413441344
+𣽽 441123412343541
+𣽾 441414312511135
+𣽿 441312342513121
+𣾀 441132324111215
+𣾁 441121212211134
+𣾂 44152153532511
+𣾃 441131251534135
+𣾄 441325111323434
+𣾅 441212133541422
+𣾆 441413121213251
+𣾇 441431253511134
+𣾈 441445454425221
+𣾉 441445521325111
+𣾊 441445352511135
+𣾋 441445351311534
+𣾌 441414325431112
+𣾍 441122111431134
+𣾎 441522515414444
+𣾏 441112113412512
+𣾐 441123413412512
+𣾑 441122112511121
+𣾒 441132511134534
+𣾓 441122512511534
+𣾔 441112111213415
+𣾕 441123412342534
+𣾖 441121212135354
+𣾗 441112155423453
+𣾘 441121213412132
+𣾙 441253412524134
+𣾚 441252125143135
+𣾛 441121215251541
+𣾜 441253425342534
+𣾝 441211121112511
+𣾞 441252211353334
+𣾟 441121225122511
+𣾠 441341124313534
+𣾡 441351312524134
+𣾢 2112534132511134
+𣾣 44113443112454
+𣾤 441153415344444
+𣾥 441212133541453
+𣾦 441243452513115
+𣾧 441255455452521
+𣾨 441343421325111
+𣾩 4414135112431234
+𣾪 441414345252251
+𣾫 441454445444544
+𣾬 441511225111135
+𣾭 441515121121251
+𣾮 441513135353554
+𣾯 441545454134121
+𣾰 441134343424134
+𣾱 441145244441344
+𣾲 441145244441354
+𣾳 441145244443235
+𣾴 441224314311134
+𣾵 441554444355215
+𣾶 44152431353334
+𣾷 441313425125251
+𣾸 441121251112134
+𣾹 44135251354454
+𣾺 441511225111132
+𣾻 44125112132511
+𣾼 441121213415534
+𣾽 441311531153115
+𣾾 441234341431251
+𣾿 441251251211534
+𣿀 44112511243424134
+𣿁 44143252343534
+𣿂 44152131212511
+𣿃 44152251125214
+𣿄 441252131233534
+𣿅 4411212312511211
+𣿆 4413251115444435
+𣿇 4413123434154544
+𣿈 4414453541343412
+𣿉 4414111251152511
+𣿊 4411254312343134
+𣿋 4411452413434312
+𣿌 441251135345454
+𣿍 4415112413425221
+𣿎 4411212131251534
+𣿏 4411235123535251
+𣿐 4412511134113534
+𣿑 4411221342515215
+𣿒 4413251114143112
+𣿓 4412522131112111
+𣿔 441134431112454
+𣿕 4414135221154444
+𣿖 4411252211123422
+𣿗 4415225241533134
+𣿘 4411234251113533
+𣿙 4411252342511134
+𣿚 4412125343411234
+𣿛 4411221113515251
+𣿜 4414334312344544
+𣿝 4411212121121124
+𣿞 4414125112113534
+𣿟 4414454523425154
+𣿠 4415345341252511
+𣿡 4413525121444454
+𣿢 4411221341251112
+𣿣 44112112153425221
+𣿤 4412125121251354
+𣿥 4415452331342511
+𣿦 4411252212511134
+𣿧 4415452335425111
+𣿨 4413535112431112
+𣿩 4414334433445121
+𣿪 441431325111454
+𣿫 4415454544525111
+𣿬 4411441324111215
+𣿭 4414311213121534
+𣿮 4411212543341134
+𣿯 4411212511451254
+𣿰 4412145343425111
+𣿱 441412251154444
+𣿲 4415132413452252
+𣿳 4411344325114334
+𣿴 4411212251113533
+𣿵 4414453511213534
+𣿶 4414451251214444
+𣿷 4411311234534121
+𣿸 4415112251141252
+𣿹 4412525125111341
+𣿺 4413541125221531
+𣿻 4411212445234234
+𣿼 4412153343425111
+𣿽 4412511134111534
+𣿾 4413244513412512
+𣿿 4413411243133544
+𤀀 4413253431234115
+𤀁 32511253425342534
+𤀂 441122352513134
+𤀃 4412153154111251
+𤀄 4412511351125221
+𤀅 4412512511341251
+𤀆 4412524143141431
+𤀇 4413155414554234
+𤀈 4413253444441134
+𤀉 4413412512543112
+𤀊 4413443533511534
+𤀋 4414451321151134
+𤀌 4411251211251211
+𤀍 4411452444434333
+𤀎 4412522113443112
+𤀏 4414111251112154
+𤀐 441122414345252
+𤀑 4414454543425211
+𤀒 4413412511224544
+𤀓 441452455124134
+𤀔 441344511543534
+𤀕 4414451122134121
+𤀖 4412523251213554
+𤀗 4413121352513251
+𤀘 441122353251214
+𤀙 4412513251154444
+𤀚 441122425341234
+𤀛 4415133513434234
+𤀜 4412511111212511
+𤀝 441112155423452
+𤀞 44112212132511
+𤀟 441431554554121
+𤀠 44112251255154444
+𤀡 4414311212211154
+𤀢 4411215444535121
+𤀣 44125111344311354
+𤀤 44131431425111132
+𤀥 44131431425121132
+𤀦 44112512342213251
+𤀧 44135251353525135
+𤀨 44144535341351122
+𤀩 125125311252212534
+𤀪 44153254132511134
+𤀫 44141431134143112
+𤀬 44143123411221134
+𤀭 44125125112511134
+𤀮 44141545412341234
+𤀯 44135251214444124
+𤀰 44125114125125251
+𤀱 4411342121112454
+𤀲 414311325344143112
+𤀳 44151122511122111
+𤀴 44132511151353334
+𤀵 44151122511332112
+𤀶 44121531532411121
+𤀷 4415111121543541
+𤀸 44113435251214444
+𤀹 44121531343425111
+𤀺 44112125143153251
+𤀻 44152352245351234
+𤀼 44155444451124134
+𤀽 44155444413412512
+𤀾 44122431431121212
+𤀿 44144513434343434
+𤁀 44141431251112333
+𤁁 44141552131343112
+𤁂 44144555212511134
+𤁃 44112212523434252
+𤁄 44113251121135121
+𤁅 44112125143154121
+𤁆 44125221412513534
+𤁇 44112124453434251
+𤁈 44131431434112431
+𤁉 44112212513443121
+𤁊 44121212522113344
+𤁋 44113123412342121
+𤁌 44132534312341212
+𤁍 44151321215132121
+𤁎 44112522125114312
+𤁏 44111123412212511
+𤁐 44151122511354251
+𤁑 4412522511135534
+𤁒 44135311345452134
+𤁓 44111213544311252
+𤁔 4413251135544412
+𤁕 44141431131251234
+𤁖 4414523425111234
+𤁗 44155444432511252
+𤁘 44141431251152512
+𤁙 12134441131251534
+𤁚 44133225211353134
+𤁛 4411213251153521
+𤁜 44141432533543112
+𤁝 44151122511251214
+𤁞 441122125234342534
+𤁟 4411215155115251
+𤁠 4413544311252454
+𤁡 441121125221251112
+𤁢 441234324111211534
+𤁣 441252215435411515
+𤁤 441122125111343134
+𤁥 441113411341251112
+𤁦 44143151122341554
+𤁧 441212134341343452
+𤁨 441251113211251154
+𤁩 441331233122511134
+𤁪 441112251132511134
+𤁫 441355335132511134
+𤁬 441121232533414544
+𤁭 441125115343535112
+𤁮 441121212512512515
+𤁯 441555253415445445
+𤁰 441311342512511112
+𤁱 441121235415411234
+𤁲 44133215435413134
+𤁳 441145241344111251
+𤁴 441215315135333422
+𤁵 441511225112513251
+𤁶 441344325234343434
+𤁷 44141432512251454
+𤁸 441121254154134333
+𤁹 441511225111213234
+𤁺 441323434343413121
+𤁻 441325111445354153
+𤁼 441153113454431234
+𤁽 441433443344525111
+𤁾 441431234132511134
+𤁿 441511121251213541
+𤂀 441122125234341134
+𤂁 441554444121453112
+𤂂 441411125135121251
+𤂃 441325111343534134
+𤂄 44125111513212522
+𤂅 441112135113443124
+𤂆 441344352121531535
+𤂇 4411212554554521521
+𤂈 441212534444411234
+𤂉 441123412212523434
+𤂊 44155155151213312
+𤂋 441121255525111234
+𤂌 441121251132511134
+𤂍 44112121251112454
+𤂎 441513241341253434
+𤂏 441513522115154444
+𤂐 441125125542511134
+𤂑 441123412341311534
+𤂒 441253412212523434
+𤂓 441215334342511134
+𤂔 441211234132511134
+𤂕 441511225114411135
+𤂖 441251141251234333
+𤂗 441211211121241252
+𤂘 441121213125125534
+𤂙 441121212212523434
+𤂚 441344353332151135
+𤂛 441322224314311134
+𤂜 441335443354433544
+𤂝 4411252343434342534
+𤂞 5134334251135332534
+𤂟 1251253112525112534
+𤂠 441121542522112154
+𤂡 4412121121341251154
+𤂢 441122431352211515
+𤂣 441121251143123432
+𤂤 441134311231123112
+𤂥 441311342512511115
+𤂦 441431252132411121
+𤂧 4411223541112454
+𤂨 44112341222511134
+𤂩 44131213512132511
+𤂪 441145244441311534
+𤂫 441251121222511134
+𤂬 441132511325113251
+𤂭 441125351141343412
+𤂮 441133232511154444
+𤂯 441153515352511134
+𤂰 441153123451124134
+𤂱 441312343533424134
+𤂲 441353122112512134
+𤂳 4413143142511113454
+𤂴 4412153152252111534
+𤂵 4413511431134554234
+𤂶 4415112251132411121
+𤂷 4415112251141533444
+𤂸 4414125125112121112
+𤂹 4411212125221251112
+𤂺 4411251253112511135
+𤂻 4415452352521353334
+𤂼 32511144513533342534
+𤂽 4412511554234554234
+𤂾 4411342121131233534
+𤂿 441515515122134454
+𤃀 4411211123451124134
+𤃁 4411554444554444121
+𤃂 4411212511121251124
+𤃃 4414153343123425121
+𤃄 53134334251135332534
+𤃅 4412511145244441154
+𤃆 4414452522112513534
+𤃇 4411221251211354444
+𤃈 4411251245112213534
+𤃉 4411331234312344544
+𤃊 4412243143112121212
+𤃋 4411211211212511134
+𤃌 4411251431132511134
+𤃍 4411452413431112111
+𤃎 4415132514143112121
+𤃏 4411251234313413251
+𤃐 4411221252343425121
+𤃑 4412511521132511134
+𤃒 4412153151343425111
+𤃓 4411212212121212121
+𤃔 4412153153543525111
+𤃕 4411213515511525154
+𤃖 4411344335251214444
+𤃗 4413211253451125221
+𤃘 4413211511342511134
+𤃙 4413222431431121212
+𤃚 4413544451321151134
+𤃛 4411252211123433544
+𤃜 441134432511234454
+𤃝 4411331234312342511
+𤃞 4412511112212523434
+𤃟 4414155332411121121
+𤃠 441341511543443531
+𤃡 4413531234132511134
+𤃢 4414134125251131234
+𤃣 4411353334132511134
+𤃤 441121121121135454
+𤃥 441122543341251431
+𤃦 441122511225112511
+𤃧 441121121431112454
+𤃨 44143344334132522111
+𤃩 44114524134251251251
+𤃪 44121531512514311534
+𤃫 44121212522145135415
+𤃬 44112251112341213234
+𤃭 44125221324111214444
+𤃮 44135453121551213312
+𤃯 44121253444441335414
+𤃰 44141312351235554234
+𤃱 44141352211515431234
+𤃲 4411214311354554234
+𤃳 44141533143123425121
+𤃴 44112122121131233534
+𤃵 44125111221344111251
+𤃶 44112251543341251431
+𤃷 44151122511414312511
+𤃸 44114524134122125112
+𤃹 44113312343123413251
+𤃺 44112341234125125121
+𤃻 532512125121251212534
+𤃼 44113125125534253434
+𤃽 44135251214444133511
+𤃾 44131431451153425221
+𤃿 4411222522145321534
+𤄀 4411223533241112154
+𤄁 44112143112354251214
+𤄂 44143112144444311134
+𤄃 44151122511441312251
+𤄄 44112343532511154444
+𤄅 44141112513443321511
+𤄆 44113121225112521453
+𤄇 44151122511414345252
+𤄈 125125312512512512534
+𤄉 44112152513411243122
+𤄊 44113254312114444121
+𤄋 44155444432533414544
+𤄌 12133124411314334534
+𤄍 44112535113545325121
+𤄎 441211211121232151135
+𤄏 441352512144443554234
+𤄐 441145241343545325121
+𤄑 441314314251111322154
+𤄒 441314314511225113511
+𤄓 441121212211154323434
+𤄔 441252234324111211534
+𤄕 44141533211152511134
+𤄖 441413434123432411121
+𤄗 441251152252134431234
+𤄘 441445352511125111354
+𤄙 4413143145112321155212
+𤄚 441321132534151114334
+𤄛 441325121355432411121
+𤄜 441431234343123425121
+𤄝 441251221125143112154
+𤄞 441415252213541531354
+𤄟 441413522115153434251
+𤄠 441121244512332511134
+𤄡 441511225113525125115
+𤄢 44125221121431112454
+𤄣 441352512144443121534
+𤄤 441343123425121122134
+𤄥 2534251125115545544444
+𤄦 441215315251251214544
+𤄧 441251113435444111251
+𤄨 441253434134334433422
+𤄩 441253434324111214444
+𤄪 4413431234112212153254
+𤄫 441415331343123425121
+𤄬 441344355413432411121
+𤄭 441251112134132511134
+𤄮 441121121121135354354
+𤄯 414312511544111212511
+𤄰 441414313333132511134
+𤄱 441341124311225111134
+𤄲 441411125112212511121
+𤄳 3121353121353121352534
+𤄴 441113425352512511134
+𤄵 441113411341251254312
+𤄶 4411212325115545541234
+𤄷 4412522155444432411121
+𤄸 441511214444252214334
+𤄹 4414312341344132511134
+𤄺 441325111445354153454
+𤄻 4413211325341511134515
+𤄼 4415111214444252214334
+𤄽 4411342523434343411214
+𤄾 4414311214444431121134
+𤄿 4411234325115545541234
+𤅀 4414152513511431112354
+𤅁 4413251132115111311534
+𤅂 4413531251234352511134
+𤅃 4413143144143135112234
+𤅄 4413143144134315112234
+𤅅 4411122112213412341234
+𤅆 4413251112341132511134
+𤅇 4414111251554444554444
+𤅈 4414143253354211121111
+𤅉 441145244444511543511
+𤅊 44121531512512543121344
+𤅋 44144535121252212511134
+𤅌 4413211325341511131121215
+𤅍 44112511234125112342511
+𤅎 44112212523434132511134
+𤅏 44131121414313112141431
+𤅐 44125212514312521251431
+𤅑 44112141251251112213534
+𤅒 44114524134545454342444
+𤅓 44123432511234132511134
+𤅔 44131431411123412212511
+𤅕 44131431412151211251124
+𤅖 44112122121233132511134
+𤅗 44141525135114111251354
+𤅘 44141525135114311123511
+𤅙 44125125113121221113134
+𤅚 44132112512515114525111
+𤅛 44132113253415111311534
+𤅜 44112522111234351251214
+𤅝 4414125125251125152252
+𤅞 4411222512513241112154
+𤅟 441145241342512121354251
+𤅠 441121225111341211254444
+𤅡 441325111111113132511134
+𤅢 441121234125125125125122
+𤅣 441413211251125114525111
+𤅤 441121115413425234343434
+𤅥 441344325221344444521554
+𤅦 441212534444412511251522
+𤅧 441111342511251214251214
+𤅨 441123452213344444521554
+𤅩 4411221251113432511154444
+𤅪 4413443252213444445215124
+𤅫 4411452413425125125134154
+𤅬 4413121353121351251254312
+𤅭 4414125125151512134343534
+𤅮 4411214512514311135344544
+𤅯 4411234522132534444411554
+𤅰 44131431434125125125125122
+𤅱 44125121425121425121425221
+𤅲 44131431425111341211254444
+𤅳 44115342511153425113535112
+𤅴 44125221352512143115431234
+𤅵 441255452511131212511454
+𤅶 44141112515544445544443134
+𤅷 441145241342512512511234341
+𤅸 441125125312125344444125221
+𤅹 441252211342522113425221134
+𤅺 441341124313411243134112431
+𤅻 441412512525112515222515215
+𤅼 4411221251433412132511154444
+𤅽 4411221251113412132511154444
+𤅾 44151122511251251121221113134
+𤅿 441111221112521251431134425221
+𤆀 441121125444412112544441211254444
+𤆁 325112534325112534325112534325112534
+𤆂 43341
+𤆃 544334
+𤆄 534334
+𤆅 344334
+𤆆 544334
+𤆇 433435
+𤆈 433453
+𤆉 124334
+𤆊 433424
+𤆋 344444
+𤆌 433454
+𤆍 1344334
+𤆎 1214334
+𤆏 4334115
+𤆐 3544444
+𤆑 4334322
+𤆒 3524444
+𤆓 4334413
+𤆔 5154444
+𤆕 5344444
+𤆖 1124444
+𤆗 2514444
+𤆘 4334354
+𤆙 2554334
+𤆚 4334315
+𤆛 2154444
+𤆜 4334111
+𤆝 43342154
+𤆞 43343533
+𤆟 43343534
+𤆠 43341354
+𤆡 43343551
+𤆢 43343435
+𤆣 43343554
+𤆤 43344535
+𤆥 43343511
+𤆦 43341121
+𤆧 43341214
+𤆨 52514444
+𤆩 43342534
+𤆪 25124444
+𤆫 35354444
+𤆬 31154444
+𤆭 43343132
+𤆮 43341134
+𤆯 12134334
+𤆰 12344334
+𤆱 12524334
+𤆲 25344334
+𤆳 43342554
+𤆴 1544334
+𤆵 43345215
+𤆶 43343553
+𤆷 43343235
+𤆸 43344544
+𤆹 43341523
+𤆺 43345215
+𤆻 43341553
+𤆼 43344512
+𤆽 433453212
+𤆾 433451311
+𤆿 433451254
+𤇀 255114334
+𤇁 433425111
+𤇂 433454121
+𤇃 433413153
+𤇄 433442534
+𤇅 433425111
+𤇆 433425511
+𤇇 431124334
+𤇈 132514334
+𤇉 433413553
+𤇊 433414312
+𤇋 433411234
+𤇌 433412251
+𤇍 123544444
+𤇎 433453534
+𤇏 525344444
+𤇐 225154444
+𤇑 243454334
+𤇒 433435351
+𤇓 411214444
+𤇔 433435354
+𤇕 312344444
+𤇖 433454251
+𤇗 355154444
+𤇘 354554444
+𤇙 433425111
+𤇚 433433124
+𤇛 433445135
+𤇜 433451515
+𤇝 515324334
+𤇞 532514334
+𤇟 134154444
+𤇠 343124444
+𤇡 351514444
+𤇢 433432511
+𤇣 433431121
+𤇤 433412115
+𤇥 433441431
+𤇦 433413534
+𤇧 433432121
+𤇨 433413241
+𤇩 433445434
+𤇪 433434333
+𤇫 312344334
+𤇬 2121354334
+𤇭 433413534
+𤇮 43343454
+𤇯 4143343534
+𤇰 3215344334
+𤇱 4334555252
+𤇲 3211214334
+𤇳 4334131534
+𤇴 12251254444
+𤇵 4453544334
+𤇶 4334525341
+𤇷 452344334
+𤇸 1251254444
+𤇹 4334153512
+𤇺 4334354152
+𤇻 4334243511
+𤇼 4334445531
+𤇽 4334113534
+𤇾 4334433445
+𤇿 4334431234
+𤈀 4112344444
+𤈁 4334445124
+𤈂 1251214444
+𤈃 4334125214
+𤈄 4334121251
+𤈅 1121414444
+𤈆 4334125134
+𤈇 4334125351
+𤈈 1221344334
+𤈉 1221344444
+𤈊 4334132521
+𤈋 4334251135
+𤈌 2511534444
+𤈍 4334325251
+𤈎 4334352511
+𤈏 4334312251
+𤈐 4334311234
+𤈑 4334251115
+𤈒 4334311252
+𤈓 4334515211
+𤈔 1215154444
+𤈕 3543544444
+𤈖 3552154444
+𤈗 5115114444
+𤈘 4334135422
+𤈙 4334151534
+𤈚 3443454334
+𤈛 4334243135
+𤈜 4334154121
+𤈝 433412234
+𤈞 4334111234
+𤈟 5312514334
+𤈠 4334511112
+𤈡 4334252135
+𤈢 3212344334
+𤈣 3112524334
+𤈤 4334353452
+𤈥 43343251115
+𤈦 43345133115
+𤈧 43343323554
+𤈨 12211154334
+𤈩 43112134334
+𤈪 43341132534
+𤈫 51311433454
+𤈬 43342522154
+𤈭 21453544334
+𤈮 11214334534
+𤈯 43343343415
+𤈰 433432343415
+𤈱 21251114334
+𤈲 13122114334
+𤈳 25111544334
+𤈴 21255114334
+𤈵 43342512511
+𤈶 43342512534
+𤈷 43343414431
+𤈸 43341225153
+𤈹 25243344334
+𤈺 43344334354
+𤈻 43344451354
+𤈼 43344143112
+𤈽 43344125152
+𤈾 44135344334
+𤈿 12413444444
+𤉀 12341124334
+𤉁 43311251221
+𤉂 51331154444
+𤉃 43345344544
+𤉄 13533344444
+𤉅 51132514334
+𤉆 43342511252
+𤉇 43342515134
+𤉈 43342512515
+𤉉 31234224444
+𤉊 43342511121
+𤉋 52115344444
+𤉌 31234224334
+𤉍 43344453112
+𤉎 53251534334
+𤉏 25111534444
+𤉐 52252154444
+𤉑 43341255151
+𤉒 43343443533
+𤉓 13433425121
+𤉔 43343231211
+𤉕 25121134334
+𤉖 43341251112
+𤉗 43341213521
+𤉘 43344111251
+𤉙 43345113251
+𤉚 43342513534
+𤉛 43343434121
+𤉜 43344131234
+𤉝 43345153251
+𤉞 52343344334
+𤉟 11125344334
+𤉠 44145354444
+𤉡 25251354444
+𤉢 352521354444
+𤉣 433455525121
+𤉤 43344325234
+𤉥 354354224444
+𤉦 433431234531
+𤉧 343443343134
+𤉨 125114334534
+𤉩 555354224444
+𤉪 433441533444
+𤉫 433411134534
+𤉬 433441541234
+𤉭 212125114334
+𤉮 433441324251
+𤉯 352534344334
+𤉰 451331344334
+𤉱 325221154444
+𤉲 123425114334
+𤉳 433444511234
+𤉴 433435412511
+𤉵 251352514334
+𤉶 433434132511
+𤉷 354413444334
+𤉸 433451312251
+𤉹 125115344334
+𤉺 541343343134
+𤉻 433412211312
+𤉼 433443113455
+𤉽 413212514444
+𤉾 433445351234
+𤉿 414312514444
+𤊀 433444345521
+𤊁 441212514444
+𤊂 43345452454
+𤊃 433444525111
+𤊄 433412211134
+𤊅 522515414444
+𤊆 125221414334
+𤊇 112143344334
+𤊈 433412123553
+𤊉 433425113511
+𤊊 433412124153
+𤊋 433425114134
+𤊌 251251214444
+𤊍 433412123432
+𤊎 433425122511
+𤊏 351135114334
+𤊐 433434434554
+𤊑 331235344444
+𤊒 433455124134
+𤊓 433432151135
+𤊔 433431511234
+𤊕 433434431234
+𤊖 433413411134
+𤊗 121551214334
+𤊘 312135334334
+𤊙 324111214334
+𤊚 433434433511
+𤊛 433452115211
+𤊜 542511344334
+𤊝 352532534444
+𤊞 433412111534
+𤊟 433444512134
+𤊠 433413251132
+𤊡 433411134112
+𤊢 433425111124
+𤊣 311234134334
+𤊤 433425213251
+𤊥 433412135354
+𤊦 433441533134
+𤊧 433412251111
+𤊨 433412511534
+𤊩 433412341234
+𤊪 433422112134
+𤊫 433412151254
+𤊬 433421112111
+𤊭 433441311234
+𤊮 541343343134
+𤊯 354115254444
+𤊰 433441223454
+𤊱 352534354444
+𤊲 4334555325341
+𤊳 4334512113554
+𤊴 4334311213251
+𤊵 4334325111552
+𤊶 4334125123422
+𤊷 4334211153541
+𤊸 1312515344334
+𤊹 4334124552153
+𤊺 4334551353334
+𤊻 4334251125111
+𤊼 4334433412211
+𤊽 1344325114334
+𤊾 2121251114334
+𤊿 4334112321511
+𤋀 4334251111344
+𤋁 2511135334444
+𤋂 2121252214334
+𤋃 4312535114444
+𤋄 5452331344334
+𤋅 3255515154334
+𤋆 1343344334534
+𤋇 2511135154444
+𤋈 2112431344444
+𤋉 4334251141554
+𤋊 4334513431132
+𤋋 4334413434134
+𤋌 4313533344444
+𤋍 4334433425134
+𤋎 4313511224334
+𤋏 4334431234531
+𤋐 1234532514444
+𤋑 4334121121121
+𤋒 1112212514444
+𤋓 4334134251154
+𤋔 1212511224334
+𤋕 1221111344444
+𤋖 4334154121354
+𤋗 2511352514334
+𤋘 4334251214544
+𤋙 4334121225121
+𤋚 2515134454334
+𤋛 4334215313251
+𤋜 2511532514334
+𤋝 351115154334
+𤋞 3251131154444
+𤋟 4334312511354
+𤋠 4334344325221
+𤋡 4334325111134
+𤋢 4334554444354
+𤋣 3551113444444
+𤋤 3525131154444
+𤋥 3525131344444
+𤋦 3123443344444
+𤋧 3511212514444
+𤋨 4334131215211
+𤋩 4334243454134
+𤋪 4334251152252
+𤋫 4334252252252
+𤋬 4334252252354
+𤋭 4334312342511
+𤋮 1251255154444
+𤋯 1344325114444
+𤋰 2511211534444
+𤋱 3125112114444
+𤋲 433412212534
+𤋳 3525343414334
+𤋴 5551354224334
+𤋵 4334332121124
+𤋶 433412234454
+𤋷 4334111341134
+𤋸 4334111253134
+𤋹 4334123412251
+𤋺 4334252511134
+𤋻 4334441333534
+𤋼 433412212251
+𤋽 4334251213432
+𤋾 4334414312511
+𤋿 433412252252
+𤌀 4334355114544
+𤌁 4334344325211
+𤌂 4334511125353
+𤌃 4334131213541
+𤌄 433412132511
+𤌅 433452354152
+𤌆 4334513154121
+𤌇 12251255154334
+𤌈 32354251214444
+𤌉 35523355234444
+𤌊 44541431124444
+𤌋 43343251213554
+𤌌 43344334451132
+𤌍 43344532411121
+𤌎 11511225114334
+𤌏 43343554541541
+𤌐 43345425431121
+𤌑 321155451114334
+𤌒 433425221121121
+𤌓 43341251111234
+𤌔 25343413444444
+𤌕 43341325113251
+𤌖 43342512155414
+𤌗 43342522112121
+𤌘 43341245554234
+𤌙 43342511541541
+𤌚 43341212252511
+𤌛 43345111125353
+𤌜 43344334125341
+𤌝 35252352524444
+𤌞 41324111214444
+𤌟 43344334431234
+𤌠 43344334354152
+𤌡 43344334453134
+𤌢 43341325224334
+𤌣 43341252211234
+𤌤 43341325111354
+𤌥 43341344325115
+𤌦 43341251253512
+𤌧 43345454541234
+𤌨 51331155214334
+𤌩 12111543334444
+𤌪 43341252214334
+𤌫 43341214513251
+𤌬 43341211254444
+𤌭 43341225111134
+𤌮 5251115154334
+𤌯 43343511431134
+𤌰 43342511143112
+𤌱 43342511122134
+𤌲 51121251214444
+𤌳 43343443554134
+𤌴 43343541521234
+𤌵 43343443325341
+𤌶 43345435411515
+𤌷 43341211214544
+𤌸 43341212251112
+𤌹 12251112344334
+𤌺 21213354144334
+𤌻 43342512251251
+𤌼 43343251111121
+𤌽 35523355234334
+𤌾 41251252514334
+𤌿 43344134131134
+𤍀 43344334325251
+𤍁 34123435544444
+𤍂 13434234534444
+𤍃 43344413155414
+𤍄 4334452425111
+𤍅 43341354224444
+𤍆 43341251112135
+𤍇 43341311534124
+𤍈 43342521251431
+𤍉 43342524111251
+𤍊 43341121554234
+𤍋 41112513154444
+𤍌 12152135114334
+𤍍 41122112214444
+𤍎 433445115452
+𤍏 4334431554554
+𤍐 121324111214334
+𤍑 433455444435444
+𤍒 433455525111234
+𤍓 251121154524334
+𤍔 433443345251251
+𤍕 123412535114334
+𤍖 433412511123312
+𤍗 433412455213134
+𤍘 445113525114334
+𤍙 354111243344334
+𤍚 433425221523522
+𤍛 433443112433454
+𤍜 433454545434333
+𤍝 433454334431234
+𤍞 4334122112211
+𤍟 125221112344444
+𤍠 121431123544444
+𤍡 433433434343415
+𤍢 433443344334121
+𤍣 433441534153121
+𤍤 433441431251112
+𤍥 125125352514444
+𤍦 433435132513541
+𤍧 433443344511324
+𤍨 412515213544334
+𤍩 433443344541431
+𤍪 43344125152152
+𤍫 121324111214444
+𤍬 433412122431534
+𤍭 433412522152534
+𤍮 113425111354334
+𤍯 433412251112315
+𤍰 125351122114444
+𤍱 145241345114444
+𤍲 433425125124544
+𤍳 234324111214444
+𤍴 433425111311534
+𤍵 521335441244334
+𤍶 433425121554234
+𤍷 433425121212511
+𤍸 433431251251251
+𤍹 355113121354444
+𤍺 433434343434215
+𤍻 531431511224444
+𤍼 433434125125122
+𤍽 121341213544334
+𤍾 123412341344334
+𤍿 433412511214124
+𤎀 224314311214334
+𤎁 555132511224334
+𤎂 132522111534444
+𤎃 433412112113251
+𤎄 433412121154444
+𤎅 11215331344334
+𤎆 433421253541121
+𤎇 332121121524334
+𤎈 43343525341354
+𤎉 414313512214444
+𤎊 433443341251234
+𤎋 433454154113412
+𤎌 433424345251121
+𤎍 433425125115341
+𤎎 433441312341234
+𤎏 433425221323434
+𤎐 43341122132515
+𤎑 433432534134354
+𤎒 433412143112354
+𤎓 112125115114334
+𤎔 433443112145534
+𤎕 433434312344544
+𤎖 433441351124134
+𤎗 121213352514444
+𤎘 532511135334444
+𤎙 433435251125112
+𤎚 252433425114334
+𤎛 433444134433121
+𤎜 43344511543511
+𤎝 1332324111214444
+𤎞 4334555253435112
+𤎟 4451252211214334
+𤎠 4334212121212121
+𤎡 3541433435321511
+𤎢 3541433443344334
+𤎣 4334121213425115
+𤎤 4334433445532343
+𤎥 3251125243344334
+𤎦 3413354131344444
+𤎧 5151211212514334
+𤎨 432523431344334
+𤎩 524313533344334
+𤎪 1211251251214334
+𤎫 4334433412214334
+𤎬 4334431523433454
+𤎭 4334433441252511
+𤎮 1213512153114334
+𤎯 4325243125114334
+𤎰 4325243125114444
+𤎱 4334324111212525
+𤎲 4334251112511211
+𤎳 4334343434342511
+𤎴 2121335414534444
+𤎵 2121335414224334
+𤎶 4334344335554444
+𤎷 4143125114334534
+𤎸 2252433422524334
+𤎹 4121251255154444
+𤎺 4334113411342534
+𤎻 433412251123234
+𤎼 4125123413544334
+𤎽 433455212511134
+𤎾 5551325111224334
+𤎿 1212511212514444
+𤏀 3234343434134334
+𤏁 4411251255154444
+𤏂 4334412515214444
+𤏃 4334433413412251
+𤏄 4414313511224444
+𤏅 4125123413544444
+𤏆 4334111231341234
+𤏇 1234445112344444
+𤏈 4334121451251431
+𤏉 4334121213451251
+𤏊 1221251121534444
+𤏋 4334543345153554
+𤏌 4334122111544334
+𤏍 1213125112114334
+𤏎 4334121121121121
+𤏏 4334251211311534
+𤏐 4334511225112511
+𤏑 4334121231511112
+𤏒 2511251143344334
+𤏓 4334325343123415
+𤏔 4334325113121251
+𤏕 5552525143344334
+𤏖 4334113411342511
+𤏗 4334123412341234
+𤏘 4334125115344544
+𤏙 4334132522132522
+𤏚 4334133232411121
+𤏛 3212213351124334
+𤏜 3443355544444334
+𤏝 3541433412135121
+𤏞 4334433435415255
+𤏟 4334545454342444
+𤏠 1134311222214444
+𤏡 1252341252344334
+𤏢 433452431353334
+𤏣 4334411125133124
+𤏤 3123434132524444
+𤏥 4334324532411121
+𤏦 4334111253554234
+𤏧 4334314314341251
+𤏨 4334312343413252
+𤏩 2512511134534444
+𤏪 4334433443344553
+𤏫 4334314314511112
+𤏬 4334344511325122
+𤏭 4334433435321511
+𤏮 4334243252513134
+𤏯 4334515253341121
+𤏰 433443252343134
+𤏱 433412212211154
+𤏲 4334431121325111
+𤏳 4334251212511134
+𤏴 1212514312514334
+𤏵 43342522113443112
+𤏶 43344135221151515
+𤏷 45123412341344334
+𤏸 4334121212132511
+𤏹 32212135351124444
+𤏺 52252415331344444
+𤏻 41431124334433454
+𤏼 3415115411214334
+𤏽 43344311124143112
+𤏾 43341132221253511
+𤏿 12512554251114334
+𤐀 43341251211251211
+𤐁 25221213252214334
+𤐂 12212511121534444
+𤐃 43343535112533112
+𤐄 43344313511224444
+𤐅 41341522115154444
+𤐆 43345113251431112
+𤐇 43341452413425115
+𤐈 12131254312114334
+𤐉 43341312515344544
+𤐊 43341452413435515
+𤐋 43342522135431234
+𤐌 43341212122151234
+𤐍 25221121251114444
+𤐎 43343143144252511
+𤐏 32511312345154334
+𤐐 43343513354111251
+𤐑 43343551131344444
+𤐒 43341534153425221
+𤐓 43344413443554134
+𤐔 43344334251112134
+𤐕 43344334451251112
+𤐖 43341234123411234
+𤐗 43341344325114334
+𤐘 43342511152343554
+𤐙 43345132514143112
+𤐚 43344143125113534
+𤐛 43345112251141252
+𤐜 43342523251213554
+𤐝 43341452444425121
+𤐞 43344334121212251
+𤐟 43341335112535251
+𤐠 4334452455124134
+𤐡 43341213251213554
+𤐢 4334121325113554
+𤐣 4334251115132125
+𤐤 433412251255154444
+𤐥 43344334122454334
+𤐦 134341251115344334
+𤐧 312341251251214334
+𤐨 433413425234343434
+𤐩 433412121215425221
+𤐪 433443344334354152
+𤐫 321132534151114334
+𤐬 354143341251251234
+𤐭 433411525121251124
+𤐮 542514143112344334
+𤐯 433434125125125122
+𤐰 433421213241112154
+𤐱 13252213415544334
+𤐲 433425111221343112
+𤐳 343413354131344444
+𤐴 433425115545544444
+𤐵 433412125143153251
+𤐶 433441251451353334
+𤐷 433441352211515121
+𤐸 312341251251214444
+𤐹 43344313425221454
+𤐺 433443344543344334
+𤐻 433443344534112221
+𤐼 433443344513412215
+𤐽 433412125145154121
+𤐾 433412125111344544
+𤐿 125351131212514444
+𤑀 344312535143344334
+𤑁 433431124334445531
+𤑂 134334433435411534
+𤑃 354143344315112234
+𤑄 251113425111344444
+𤑅 321251144553154444
+𤑆 433412212513443121
+𤑇 253445123412344334
+𤑈 433433225211213134
+𤑉 43343211152511134
+𤑊 333212135411124444
+𤑋 433443341212454334
+𤑌 134121351135114444
+𤑍 433432112511511134
+𤑎 325115444425111515
+𤑏 45241251251214444
+𤑐 45241251251214334
+𤑑 433435251353525135
+𤑒 1212111211125114334
+𤑓 4334433441252511315
+𤑔 1212121351213544334
+𤑕 43343125431211534444
+𤑖 4451234123443344334
+𤑗 3541433455525111234
+𤑘 3511431134241344334
+𤑙 4334413431512214444
+𤑚 4334433443344511214
+𤑛 4334312511211534444
+𤑜 5151213251145154444
+𤑝 4334433443344525121
+𤑞 433412121251112454
+𤑟 4334352512144442511
+𤑠 3215111212143344334
+𤑡 4334111211125114544
+𤑢 4334121232533414544
+𤑣 4334125341253412534
+𤑤 1332325111544444334
+𤑥 4334251152252341112
+𤑦 433441432512251454
+𤑧 4334445251112211154
+𤑨 5151213251145154334
+𤑩 3544433451132514444
+𤑪 3544542111211114444
+𤑫 43341223541112454
+𤑬 4334312343533424134
+𤑭 4334132511325113251
+𤑮 433412225111343112
+𤑯 4334341251251343422
+𤑰 3525121134252514444
+𤑱 4334541541451251112
+𤑲 433443123435415252
+𤑳 433412125112321155212
+𤑴 43344125125112121112
+𤑵 51535523355235154334
+𤑶 12522125111243344334
+𤑷 43345112251113425115
+𤑸 43341251253112511135
+𤑹 55543342522112143112
+𤑺 433445251115132125
+𤑻 433425111212112211
+𤑼 43342511234343434115
+𤑽 25143143342514314334
+𤑾 524313533344544334
+𤑿 43341221115545544444
+𤒀 43344334412525114135
+𤒁 43342511522521342444
+𤒂 21212511433432411121
+𤒃 433425111221122112
+𤒄 43344143134315112234
+𤒅 43343251253415511511
+𤒆 41251251431123544334
+𤒇 43344334433443341234
+𤒈 43341221251211154444
+𤒉 15342511153425114444
+𤒊 43341234224314311134
+𤒋 43341211211211214444
+𤒌 43342512511211254444
+𤒍 25122143342512214334
+𤒎 43343211343451145521
+𤒏 32411121324111214444
+𤒐 32535445123412344334
+𤒑 4334122431234354152
+𤒒 12251251431123544334
+𤒓 15342511153425114334
+𤒔 43345544441251124124
+𤒕 44125125125112344444
+𤒖 12511234125112344334
+𤒗 35414334125234125234
+𤒘 43343143141211254444
+𤒙 34333412515213544444
+𤒚 43344412512211311534
+𤒛 43341112341311534124
+𤒜 12511534125115344444
+𤒝 32511144513533344334
+𤒞 54251414311243344334
+𤒟 43343123453132511134
+𤒠 4334121325112511135
+𤒡 341251251343435344334
+𤒢 43344134125251131234
+𤒣 354143344135221151515
+𤒤 433412211155455453221
+𤒥 341251251343431344334
+𤒦 433434125125134343134
+𤒧 354143341344325114334
+𤒨 43344334433445251251
+𤒩 433454154125121122134
+𤒪 433431431425111134354
+𤒫 433425113234343434115
+𤒬 433412121251211251211
+𤒭 254312114525111344444
+𤒮 325151514313533344334
+𤒯 433434341211121111534
+𤒰 433435251153535251354
+𤒱 433441432533543211234
+𤒲 433441325112114444121
+𤒳 433443341324132425121
+𤒴 433444125115545544444
+𤒵 441121512112511244444
+𤒶 433412122512512511234
+𤒷 433412123412512513434
+𤒸 341124312511252214444
+𤒹 433425121121211212112
+𤒺 4334251152252134431234
+𤒻 4334511225112511541541
+𤒼 41312211251213443344334
+𤒽 4334121254154132411121
+𤒾 4334321132534151114334
+𤒿 1221251121324111214444
+𤓀 4334341251251251251122
+𤓁 4334511225113443321511
+𤓂 4334121231254312114444
+𤓃 4334314314511225112511
+𤓄 4334123445344444521554
+𤓅 2524314334433451313535
+𤓆 433412212512531425221
+𤓇 4334112135253425111354
+𤓈 43341212325115545541234
+𤓉 12212511134324111214334
+𤓊 43342511522521344111251
+𤓋 4334325111445344153454
+𤓌 43341221251113432411121
+𤓍 43344135221153534112431
+𤓎 43343121353121352511134
+𤓏 35414334413522154544444
+𤓐 25111213412211143344444
+𤓑 2554525111251135334444
+𤓒 43344131235123531112111
+𤓓 43342522155444432411121
+𤓔 43344334433443344334134
+𤓕 32112512515114543344334
+𤓖 41112515544445544444334
+𤓗 433412511234125112342511
+𤓘 121225125132411121534444
+𤓙 433451122511251251251112
+𤓚 433443112131234155344444
+𤓛 433424313554154132411121
+𤓜 3123434241341251251214444
+𤓝 4334121234125125125125122
+𤓞 3123434241341251251214334
+𤓟 3211343451145433443344334
+𤓠 4334252534444412511251522
+𤓡 4334344325221344444521554
+𤓢 4334251141251251112213534
+𤓣 4334123412342522151154124
+𤓤 21531535435215315354354334
+𤓥 41251112511145123412344444
+𤓦 433412122511134254312114444
+𤓧 433443341254125441352211515
+𤓨 122125121115444414524134511
+𤓩 433441112515544445544443134
+𤓪 3241112132411121324111214334
+𤓫 32515151515151543344313533345
+𤓬 3241112132411121324111214444
+𤓭 43341234343412342522151154124
+𤓮 123431125212344534444452153334334
+𤓯 1234
+𤓰 3354
+𤓱 33245
+𤓲 3324524
+𤓳 344315
+𤓴 3443554
+𤓵 3324354
+𤓶 33243554
+𤓷 33245154
+𤓸 34435111
+𤓹 33241534
+𤓺 33244412
+𤓻 34431134
+𤓼 33243553
+𤓽 344352134
+𤓾 344345134
+𤓿 344351554
+𤔀 332453154
+𤔁 344312345
+𤔂 344351554
+𤔃 344354523
+𤔄 344312512
+𤔅 332431134
+𤔆 344335112
+𤔇 344315112
+𤔈 332425111
+𤔉 332425121
+𤔊 344353121
+𤔋 33241515
+𤔌 3443121511
+𤔍 3443545234
+𤔎 1212513324
+𤔏 3324311234
+𤔐 34434555454
+𤔑 33242513251
+𤔒 34431541112
+𤔓 34434525135
+𤔔 344354255454
+𤔕 553344341121
+𤔖 251112343324
+𤔗 253512113324
+𤔘 344332115111
+𤔙 332433243324
+𤔚 451325343324
+𤔛 122111543324
+𤔜 3324125125121
+𤔝 2511252143324
+𤔞 3443251353554
+𤔟 4134132523324
+𤔠 3443455233134
+𤔡 3443435554444
+𤔢 33244544251214
+𤔣 34433211511254
+𤔤 34434531213134
+𤔥 34433215111234
+𤔦 34432512535251
+𤔧 344351255454115
+𤔨 413123512353324
+𤔩 332425125115341
+𤔪 344355455455454
+𤔫 344325112522154
+𤔬 344325125225154
+𤔭 344355455455412
+𤔮 3324252112342154
+𤔯 3324314314511112
+𤔰 3443513251113533
+𤔱 3443321511251221
+𤔲 34435425545451251
+𤔳 34431431234554234
+𤔴 34432522125111552
+𤔵 34432522143344334
+𤔶 33242434525125121
+𤔷 53542522134435112
+𤔸 3443453551154124
+𤔹 344313243421324342
+𤔺 3443542512212451251
+𤔻 12225221453543324
+𤔼 512344325111342511
+𤔽 33241224511353334
+𤔾 12245113533343324
+𤔿 3443513222121515354
+𤕀 3443554554554445531
+𤕁 3443311252344325151
+𤕂 34435541343552335523
+𤕃 34434543123435531344
+𤕄 34433215112511251135
+𤕅 34435425545435311252
+𤕆 34433112525552515215
+𤕇 344353134435313443531
+𤕈 34432513251555522513251
+𤕉 33243211251251511454334
+𤕊 332432112512515114525111
+𤕋 243355344351512112132511
+𤕌 3443542554541251123425121
+𤕍 3443251325155444455444412
+𤕎 3434112
+𤕏 3434252
+𤕐 12453434
+𤕑 34341132
+𤕒 343412512
+𤕓 3434152352
+𤕔 2513153434
+𤕕 34342515215
+𤕖 343412211154
+𤕗 343432151154
+𤕘 3434252252354
+𤕙 34341212511134
+𤕚 41324111213434
+𤕛 3434431113353112
+𤕜 34134
+𤕝 34342154
+𤕞 343444512
+𤕟 343452134
+𤕠 3434445124
+𤕡 1354343434
+𤕢 34343134531
+𤕣 253434343415
+𤕤 1234343434134
+𤕥 3434152511135
+𤕦 2512515151213434
+𤕧 251251341213434
+𤕨 344325234343434
+𤕩 12343643412345455
+𤕪 25115
+𤕫 13513
+𤕬 52131
+𤕭 521354
+𤕮 5213525
+𤕯 52132534
+𤕰 52132125
+𤕱 52135154
+𤕲 521325111
+𤕳 521313344
+𤕴 521331525
+𤕵 521334154
+𤕶 5213354134
+𤕷 5213341534
+𤕸 5213413121
+𤕹 5213125234
+𤕺 1351331134
+𤕻 52131251251
+𤕼 52133131134
+𤕽 52133431234
+𤕾 52131241344
+𤕿 52135121121
+𤖀 52133541112
+𤖁 52132121112
+𤖂 52131251234
+𤖃 52132511211
+𤖄 521321451132
+𤖅 521335412534
+𤖆 521315341534
+𤖇 521325111234
+𤖈 521321354134
+𤖉 521331511234
+𤖊 521321451134
+𤖋 521311251255
+𤖌 5213415331525
+𤖍 5213354531121
+𤖎 5213251113125
+𤖏 52134134131134
+𤖐 52131221335112
+𤖑 52134131251124
+𤖒 52135454541234
+𤖓 521311212511134
+𤖔 521313125125534
+𤖕 521335411253511
+𤖖 5213122112512134
+𤖗 521353421215342121
+𤖘 5213121222511134
+𤖙 5213125351125221
+𤖚 52133134313411111
+𤖛 5213354412425111
+𤖜 52131452413434154
+𤖝 52133513354111251
+𤖞 52132511221111534
+𤖟 52135132514143112
+𤖠 5213134342341252511
+𤖡 5213445134432511234
+𤖢 52131331234312342121
+𤖣 5213312343123441252511
+𤖤 52131252212522125221134
+𤖥 521314524134251251251122431
+𤖦 5213145241342512512511234341
+𤖧 5213134342341343423441252511
+𤖨 32155
+𤖩 3215531
+𤖪 3215525
+𤖫 3215354
+𤖬 32153554
+𤖭 32153553
+𤖮 32153554
+𤖯 32151324
+𤖰 32155154
+𤖱 321531234
+𤖲 321512251
+𤖳 321514312
+𤖴 321533124
+𤖵 321535251
+𤖶 321512534
+𤖷 321553254
+𤖸 321541121
+𤖹 321541431
+𤖺 3215135422
+𤖻 3215354354
+𤖼 3215333534
+𤖽 3215325251
+𤖾 3215251251
+𤖿 3215323515
+𤗀 32154511534
+𤗁 32152512134
+𤗂 32151241344
+𤗃 32151251124
+𤗄 32153253541
+𤗅 32155435115
+𤗆 32153155414
+𤗇 321544535121
+𤗈 321541431531
+𤗉 321535544544
+𤗊 321541541234
+𤗋 321531112111
+𤗌 321535425121
+𤗍 321544535455
+𤗎 321513425115
+𤗏 321541431251
+𤗐 321535134153
+𤗑 321521531535
+𤗒 321541354153
+𤗓 321552111534
+𤗔 414311123215
+𤗕 321512531535
+𤗖 321552125221
+𤗗 321512511234
+𤗘 3215251112134
+𤗙 3215413431523
+𤗚 3215125125121
+𤗛 3215125431234
+𤗜 3215512115154
+𤗝 312532151134
+𤗞 3125412514512
+𤗟 4143112343215
+𤗠 3215312343452
+𤗡 121325113215
+𤗢 32153321531535
+𤗣 32151121251234
+𤗤 32151212511134
+𤗥 32151212121234
+𤗦 32151251254312
+𤗧 32153251213554
+𤗨 321554154132511
+𤗩 321521213535112
+𤗪 321541554413412
+𤗫 32154134522554
+𤗬 321525112512531
+𤗭 321521531534312
+𤗮 321511212511134
+𤗯 321525232411121
+𤗰 321512512212511
+𤗱 321525111251124
+𤗲 321554545434333
+𤗳 3215543345153554
+𤗴 3215251212511134
+𤗵 3215224314311134
+𤗶 3215122112512134
+𤗷 3215431234354152
+𤗸 3215121222511134
+𤗹 3215343123425121
+𤗺 32155132514143112
+𤗻 32153513354111251
+𤗼 32151234341252511
+𤗽 32151212122151234
+𤗾 32152434525125121
+𤗿 321512125145154121
+𤘀 321512151211251124
+𤘁 32151224511353334
+𤘂 32151222522145354
+𤘃 32151331234312342121
+𤘄 321512125352512511134
+𤘅 1523521
+𤘆 15231523
+𤘇 152321251
+𤘈 1523321511
+𤘉 1523253511
+𤘊 1523345352
+𤘋 15233121534
+𤘌 152313412512
+𤘍 15232115152
+𤘎 152352125151
+𤘏 152335152511
+𤘐 1523325125214
+𤘑 15232521251431
+𤘒 11215331341523
+𤘓 152344545442522112
+𤘔 13112
+𤘕 312155
+𤘖 312112
+𤘗 312155
+𤘘 3121251
+𤘙 3121531
+𤘚 3121154
+𤘛 3121315
+𤘜 31211354
+𤘝 35533112
+𤘞 31215344
+𤘟 31213511
+𤘠 31211134
+𤘡 31213415
+𤘢 31211324
+𤘣 31214535
+𤘤 15153112
+𤘥 31211515
+𤘦 31213432
+𤘧 31123112
+𤘨 34453112
+𤘩 54543112
+𤘪 31213541
+𤘫 31211525
+𤘬 31211234
+𤘭 31214334
+𤘮 13243112
+𤘯 31213534
+𤘰 45353112
+𤘱 31211235
+𤘲 31211344
+𤘳 31211554
+𤘴 31212154
+𤘵 25113112
+𤘶 31213112
+𤘷 31213535
+𤘸 312152254
+𤘹 312113241
+𤘺 312144535
+𤘻 312132534
+𤘼 312125211
+𤘽 312135251
+𤘾 312114312
+𤘿 211153112
+𤙀 312113515
+𤙁 312134333
+𤙂 312112523
+𤙃 312112341
+𤙄 532513112
+𤙅 312113252
+𤙆 312115511
+𤙇 312125112
+𤙈 312131134
+𤙉 312125211
+𤙊 312135111
+𤙋 354453112
+𤙌 312151315
+𤙍 312152352
+𤙎 312153254
+𤙏 121543112
+𤙐 312121124
+𤙑 3121354251
+𤙒 3121535353
+𤙓 3121251251
+𤙔 3121341534
+𤙕 3121251214
+𤙖 3412513112
+𤙗 3121515515
+𤙘 5231343112
+𤙙 3121351355
+𤙚 3121313115
+𤙛 31213411234
+𤙜 31212433541
+𤙝 31212515215
+𤙞 31211515121
+𤙟 45234533112
+𤙠 31211241344
+𤙡 31214143112
+𤙢 31212121112
+𤙣 34452513112
+𤙤 31213443521
+𤙥 31211225135
+𤙦 31211353334
+𤙧 31212511135
+𤙨 31211251234
+𤙩 31213155414
+𤙪 31213443533
+𤙫 31214125111
+𤙬 31212511134
+𤙭 31211251124
+𤙮 31211213234
+𤙯 31211224553
+𤙰 312125111124
+𤙱 312134112251
+𤙲 311252223112
+𤙳 312135425121
+𤙴 312121251112
+𤙵 312132411121
+𤙶 312115112134
+𤙷 312144511234
+𤙸 312112125135
+𤙹 312135334544
+𤙺 414345353112
+𤙻 431134553112
+𤙼 132511533112
+𤙽 312124325251
+𤙾 312131133112
+𤙿 312132121252
+𤚀 312134431234
+𤚁 341325113112
+𤚂 342135234234
+𤚃 312141335151
+𤚄 312152115211
+𤚅 543112543112
+𤚆 31215213254
+𤚇 312143112154
+𤚈 312125223454
+𤚉 122111543112
+𤚊 31211541234
+𤚋 312134154544
+𤚌 513115113112
+𤚍 31215231251214
+𤚎 3121341351122
+𤚏 3121312511211
+𤚐 3121121225121
+𤚑 31213251113124
+𤚒 3121412511234
+𤚓 31213134134134
+𤚔 3121445433454
+𤚕 3121125221121
+𤚖 3121431121531
+𤚗 3121445125111
+𤚘 3121125221531
+𤚙 3121352534134
+𤚚 3121112155414
+𤚛 3121132522111
+𤚜 2121234543112
+𤚝 3121325111121
+𤚞 3121325221252
+𤚟 3121332121124
+𤚠 3121345235354
+𤚡 3121413122154
+𤚢 3121414345252
+𤚣 3121445121121
+𤚤 3121521325111
+𤚥 5431123445251
+𤚦 3121122511234
+𤚧 2513154453112
+𤚨 3121131153454
+𤚩 31211113431234
+𤚪 31213253411515
+𤚫 31214135112251
+𤚬 31213415113251
+𤚭 31213544311252
+𤚮 31214125125112
+𤚯 31213251111344
+𤚰 31214143454153
+𤚱 31212512453541
+𤚲 1214531213554
+𤚳 31212153154134
+𤚴 31211211254444
+𤚵 3121154325251
+𤚶 35444435333112
+𤚷 54311221251112
+𤚸 41251252513112
+𤚹 12151132513112
+𤚺 31212511541541
+𤚻 31213112341251
+𤚼 12145135543112
+𤚽 31211251124124
+𤚾 31211311534124
+𤚿 312113112121554
+𤛀 31212511134124
+𤛁 3121251125221
+𤛂 31213251213554
+𤛃 31213523435234
+𤛄 31214134122111
+𤛅 31214155425121
+𤛆 15233135133112
+𤛇 31211225111134
+𤛈 34125131123112
+𤛉 52155545543112
+𤛊 312154154132511
+𤛋 312124345251121
+𤛌 312151311234124
+𤛍 312125232411121
+𤛎 315541431343112
+𤛏 312121531525111
+𤛐 312112512512515
+𤛑 312141351125112
+𤛒 31215155115251
+𤛓 121453535543112
+𤛔 312125112522154
+𤛕 312112511123112
+𤛖 121323435543112
+𤛗 121521335543112
+𤛘 31211221344132
+𤛙 225111112543112
+𤛚 311231121353334
+𤛛 31213223543541
+𤛜 312143112153122
+𤛝 445321325113112
+𤛞 312151122511123
+𤛟 312121213535112
+𤛠 312125112512531
+𤛡 3121545454554234
+𤛢 3121432524312511
+𤛣 3121341251541541
+𤛤 3121545454342444
+𤛥 3121122112512134
+𤛦 3121134315233534
+𤛧 3121511121251124
+𤛨 3121344335554444
+𤛩 312152131213541
+𤛪 3121121335121335
+𤛫 3121212111213112
+𤛬 3121252212511134
+𤛭 3112311231123112
+𤛮 3121433443344553
+𤛯 31212522135251214
+𤛰 31215113251431112
+𤛱 32113434511453112
+𤛲 31212523251213554
+𤛳 31213535112533112
+𤛴 3121515121121251
+𤛵 31213444445234354
+𤛶 31211212251125214
+𤛷 31211234341252511
+𤛸 31211312515344544
+𤛹 312154154132411121
+𤛺 312131234533424134
+𤛻 3121121213125125534
+𤛼 312131234353424134
+𤛽 312113251114521211254
+𤛾 3121132511454544354
+𤛿 3123434241343533112
+𤜀 3121412512511431112
+𤜁 3431121312515344544
+𤜂 3325212511521123112
+𤜃 31214125125112121112
+𤜄 31214125221241343534
+𤜅 31211452413432411121
+𤜆 31214143125111515111
+𤜇 312135251151535251354
+𤜈 312125111221344111251
+𤜉 312125111342511134531
+𤜊 312112512125124111251
+𤜋 312132512135544111251
+𤜌 3121251152252134431234
+𤜍 3121212125125132411121
+𤜎 3121134143125111515111
+𤜏 3121133215114134522554
+𤜐 3121121213513125125534
+𤜑 31212522154354115154444
+𤜒 31211212251125214251214
+𤜓 31215552512511115511511
+𤜔 251112143112354312343112
+𤜕 121453112125221123425111
+𤜖 3121251212512125121554234
+𤜗 3121111342511251214251214
+𤜘 4131234123432512135543112
+𤜙 3121145241342512512511234341
+𤜚 3531
+𤜛 35355
+𤜜 35353
+𤜝 35335
+𤜞 35334
+𤜟 35352
+𤜠 35353
+𤜡 35352
+𤜢 353512
+𤜣 353525
+𤜤 353315
+𤜥 353344
+𤜦 353354
+𤜧 2521344
+𤜨 353315
+𤜩 353353
+𤜪 353415
+𤜫 353544
+𤜬 353252
+𤜭 353521
+𤜮 353124
+𤜯 3533554
+𤜰 3533415
+𤜱 3535215
+𤜲 12521344
+𤜳 3531252
+𤜴 3534535
+𤜵 3531132
+𤜶 3533324
+𤜷 3531551
+𤜸 3531355
+𤜹 13443534
+𤜺 35332121
+𤜻 3531515
+𤜼 3533511
+𤜽 3532534
+𤜾 3535112
+𤜿 3535523
+𤝀 35341344
+𤝁 3531344
+𤝂 3531235
+𤝃 3531554
+𤝄 3533115
+𤝅 3533454
+𤝆 3533534
+𤝇 3533544
+𤝈 3533554
+𤝉 3535452
+𤝊 3533512
+𤝋 3534134
+𤝌 3531135
+𤝍 3532511
+𤝎 3532534
+𤝏 35354132
+𤝐 35325115
+𤝑 3533454
+𤝒 35352252
+𤝓 35321251
+𤝔 35332124
+𤝕 35355414
+𤝖 35325134
+𤝗 35325121
+𤝘 35334312
+𤝙 3531515
+𤝚 35325112
+𤝛 35344535
+𤝜 35313344
+𤝝 35334234
+𤝞 35312354
+𤝟 515321344
+𤝠 3535152
+𤝡 325111344
+𤝢 35354112
+𤝣 35324534
+𤝤 35335135
+𤝥 35335424
+𤝦 35332123
+𤝧 35332354
+𤝨 35344535
+𤝩 35354523
+𤝪 35343112
+𤝫 35325211
+𤝬 35335151
+𤝭 353212135
+𤝮 35231344
+𤝯 353321344
+𤝰 353341251
+𤝱 353251341
+𤝲 3532511134
+𤝳 353325113
+𤝴 353431132
+𤝵 3532521121
+𤝶 25211211344
+𤝷 353354152
+𤝸 353431234
+𤝹 353311234
+𤝺 353513121
+𤝻 353354354
+𤝼 354325111
+𤝽 353511112
+𤝾 353555252
+𤝿 353111215
+𤞀 35315435
+𤞁 353552522
+𤞂 353154121
+𤞃 353252354
+𤞄 353431535
+𤞅 353333534
+𤞆 353313312
+𤞇 353121121
+𤞈 353132121
+𤞉 353134534
+𤞊 353135422
+𤞋 353251112
+𤞌 353445315
+𤞍 353511252
+𤞎 353541234
+𤞏 353125351
+𤞐 353132521
+𤞑 353252511
+𤞒 353122134
+𤞓 353312135
+𤞔 353112154
+𤞕 353125211
+𤞖 353111234
+𤞗 353323112
+𤞘 353323121
+𤞙 3533443124
+𤞚 3532433541
+𤞛 52131211344
+𤞜 3531324251
+𤞝 3533443533
+𤞞 3533434251
+𤞟 3531251431
+𤞠 3533412354
+𤞡 353152352
+𤞢 3532121112
+𤞣 5435411344
+𤞤 3531224313
+𤞥 3532511234
+𤞦 3533155414
+𤞧 3532512341
+𤞨 3531251124
+𤞩 3532511153
+𤞪 3532513251
+𤞫 3531132534
+𤞬 3531121132
+𤞭 3532511135
+𤞮 44534341344
+𤞯 3535121121
+𤞰 3531241344
+𤞱 3531353334
+𤞲 3533443521
+𤞳 3533515251
+𤞴 3533535112
+𤞵 3534451135
+𤞶 3534534112
+𤞷 12341211344
+𤞸 3531255151
+𤞹 3533211222
+𤞺 3533121251
+𤞻 3533445251
+𤞼 3534134251
+𤞽 353122415
+𤞾 3532511121
+𤞿 3531121344
+𤟀 32511151344
+𤟁 3535342521
+𤟂 3534153511
+𤟃 35315112134
+𤟄 35344535121
+𤟅 35335321511
+𤟆 353341235422
+𤟇 35343344334
+𤟈 35312511234
+𤟉 35325213112
+𤟊 35344535455
+𤟋 35341343453
+𤟌 521335411344
+𤟍 35325113533
+𤟎 35351352252
+𤟏 211234541344
+𤟐 131112531344
+𤟑 35335131344
+𤟒 521335411344
+𤟓 12212521344
+𤟔 35312111534
+𤟕 35325153511
+𤟖 35334431234
+𤟗 35334434554
+𤟘 35351124134
+𤟙 354143341344
+𤟚 353321151154
+𤟛 35335251354
+𤟜 2153152511344
+𤟝 353215315252
+𤟞 4134342511344
+𤟟 353414312511
+𤟠 353521343541
+𤟡 353325111121
+𤟢 3312251111344
+𤟣 353535425221
+𤟤 353451251112
+𤟥 353251112134
+𤟦 353132522134
+𤟧 353251214544
+𤟨 353121125132
+𤟩 2512512141344
+𤟪 353445351344
+𤟫 353445433454
+𤟬 353122211234
+𤟭 3525115151344
+𤟮 2521325221344
+𤟯 353132522111
+𤟰 353125123422
+𤟱 353312511354
+𤟲 353431121531
+𤟳 353352513553
+𤟴 1344451251112
+𤟵 3513251111344
+𤟶 2515135111344
+𤟷 353132412121
+𤟸 353251123134
+𤟹 353251125214
+𤟺 353251211354
+𤟻 353111253132
+𤟼 353354111251
+𤟽 353415331525
+𤟾 353414345252
+𤟿 353445125111
+𤠀 353522515452
+𤠁 353431325111
+𤠂 35312254251
+𤠃 353155512153
+𤠄 353344312512
+𤠅 353132425221
+𤠆 353412513534
+𤠇 353122125112
+𤠈 353321511132
+𤠉 35312225134
+𤠊 4451251111344
+𤠋 353431234531
+𤠌 3532121351234
+𤠍 3533354143554
+𤠎 3532512135354
+𤠏 3535345342121
+𤠐 3532511541541
+𤠑 3533545325121
+𤠒 3533251511344
+𤠓 3533443554134
+𤠔 3532512511134
+𤠕 3534155425121
+𤠖 3534125125251
+𤠗 3535435411515
+𤠘 3534544251214
+𤠙 3531251212512
+𤠚 3531121554234
+𤠛 353122345325
+𤠜 353413312154
+𤠝 3534311213121
+𤠞 3533253411515
+𤠟 3531212341251
+𤠠 3534125113534
+𤠡 3531215425221
+𤠢 2512512141344
+𤠣 3533225131134
+𤠤 3531212415325
+𤠥 3535235233312
+𤠦 3532521353135
+𤠧 3535425121422
+𤠨 12121252341344
+𤠩 325111415341344
+𤠪 55525112111344
+𤠫 3531252211234
+𤠬 3531325125251
+𤠭 3533251113124
+𤠮 3533552335523
+𤠯 3534135112251
+𤠰 3531122125211
+𤠱 3531215431134
+𤠲 3532521251431
+𤠳 3531212134515
+𤠴 353524451135
+𤠵 353111533115
+𤠶 3531225111134
+𤠷 52312512141344
+𤠸 35345115452
+𤠹 35312213545252
+𤠺 35325121122112
+𤠻 35341432512251
+𤠼 121453535541344
+𤠽 35313211234534
+𤠾 35312512512515
+𤠿 35312512554121
+𤡀 35343112145534
+𤡁 35312212523434
+𤡂 35325121554234
+𤡃 35312512343534
+𤡄 35312511123134
+𤡅 35354545434244
+𤡆 35333234342134
+𤡇 35341251453115
+𤡈 35341112513112
+𤡉 35312212511134
+𤡊 35341352211535
+𤡋 35312511123534
+𤡌 34351122511153
+𤡍 35341312214444
+𤡎 412512543121344
+𤡏 35312111543134
+𤡐 35312512212511
+𤡑 35312522111234
+𤡒 35325112115452
+𤡓 35325125115341
+𤡔 35332511151234
+𤡕 35332511154444
+𤡖 3534111251454
+𤡗 35344543344334
+𤡘 35351135113554
+𤡙 35354545434111
+𤡚 343511541535
+𤡛 34344512522112
+𤡜 122112534341344
+𤡝 35331112111121
+𤡞 35312125112134
+𤡟 35325125124544
+𤡠 35325111311534
+𤡡 35332151135345
+𤡢 3534134522554
+𤡣 353215315225211
+𤡤 353132522132522
+𤡥 353511225113511
+𤡦 353511225111234
+𤡧 353454445444544
+𤡨 353554444554234
+𤡩 4312343541521344
+𤡪 35352131213541
+𤡫 353133123431234
+𤡬 353121451251431
+𤡭 353121251431333
+𤡮 353354113444444
+𤡯 353321511154444
+𤡰 353112141341121
+𤡱 353251212511134
+𤡲 353511225111132
+𤡳 353125112343134
+𤡴 2512512512141344
+𤡵 3513324111211344
+𤡶 353121212343412
+𤡷 35344115151234
+𤡸 35335251353334
+𤡹 353121125444412
+𤡺 353445454425211
+𤡻 353125112343534
+𤡼 353121551225121
+𤡽 4312535111341344
+𤡾 1215512145441344
+𤡿 3143143412511344
+𤢀 353121251431251
+𤢁 35312225125132
+𤢂 353125221431234
+𤢃 353132512535252
+𤢄 353243252513134
+𤢅 353354113444334
+𤢆 353445454425112
+𤢇 353314314511112
+𤢈 353543341251431
+𤢉 35315435413134
+𤢊 3532512121354251
+𤢋 3531354313412221
+𤢌 353344134522554
+𤢍 353131213541454
+𤢎 3532434525125121
+𤢏 3534125251125111
+𤢐 3534155332411121
+𤢑 3531212543341134
+𤢒 3534135221154444
+𤢓 3532153151353334
+𤢔 3532511353453534
+𤢕 2522112143111344
+𤢖 3532512512511234
+𤢗 3531452413425121
+𤢘 3533541121554234
+𤢙 3531344325114334
+𤢚 54542511252141344
+𤢛 3534143125114544
+𤢜 25221352512141344
+𤢝 52252415331341344
+𤢞 3532511252214153
+𤢟 3532522112143112
+𤢠 3532522511352121
+𤢡 3533215115445445
+𤢢 3534125121413534
+𤢣 3535132514143112
+𤢤 3534125251131234
+𤢥 353122251125214
+𤢦 35334431215114544
+𤢧 35345321511154444
+𤢨 35312124125125251
+𤢩 35352131213541454
+𤢪 35355525345445445
+𤢫 35313251113412132
+𤢬 35312125145154121
+𤢭 35341251451353334
+𤢮 35343111213441344
+𤢯 35343344334354152
+𤢰 35341112512512153
+𤢱 35344534545445445
+𤢲 35334112431511534
+𤢳 35332511125121132
+𤢴 353325115545541234
+𤢵 353131212251125214
+𤢶 353445353251113515
+𤢷 353121211121111534
+𤢸 353445134432511234
+𤢹 353251212512125121
+𤢺 353121251132511134
+𤢻 353122135452524544
+𤢼 35341432512251454
+𤢽 353331233122511134
+𤢾 353341251251343422
+𤢿 353132511325113251
+𤣀 35343125351113452
+𤣁 353251221451251431
+𤣂 2512125121251211344
+𤣃 353352512144442511
+𤣄 353413522115354444
+𤣅 14524134324111211344
+𤣆 3531221115545544444
+𤣇 3531221221452524544
+𤣈 3531221115545543434
+𤣉 14512125125431121344
+𤣊 3531221125121341344
+𤣋 3531452413443122431
+𤣌 3533211343451145521
+𤣍 35314524134251251251
+𤣎 35325111342511134531
+𤣏 215315352512144441344
+𤣐 35313425234343434121
+𤣑 353252324111212535251
+𤣒 353122111122111122111
+𤣓 353251112511132411121
+𤣔 353134252343434341121
+𤣕 353344355413432411121
+𤣖 353111221112521251431
+𤣗 3531342523434343411214
+𤣘 452511413435312132511
+𤣙 3534313251145121213134
+𤣚 3532512211251431355215
+𤣛 35344535335443354433544
+𤣜 35332113253415111311534
+𤣝 35313425234343434251214
+𤣞 35324345251254312114444
+𤣟 353125125311252212511135
+𤣠 353251251132511134251251
+𤣡 353252213525121412251111
+𤣢 353121251122511125431234
+𤣣 3532512511212511134251251
+𤣤 353145241342512512511234341
+𤣥 4155
+𤣦 41551354
+𤣧 415542523121
+𤣨 41554251135345
+𤣩 1121
+𤣪 112351
+𤣫 11215
+𤣬 3511214
+𤣭 1121512
+𤣮 1121315
+𤣯 1121315
+𤣰 1121121
+𤣱 1121515
+𤣲 1121512
+𤣳 1121312
+𤣴 4151121
+𤣵 1121354
+𤣶 11214252
+𤣷 1121531
+𤣸 1121134
+𤣹 11215113
+𤣺 11213324
+𤣻 11213554
+𤣼 253411214
+𤣽 11212511
+𤣾 11211354
+𤣿 11211132
+𤤀 11211525
+𤤁 11214153
+𤤂 11215452
+𤤃 11212111
+𤤄 11213554
+𤤅 11213533
+𤤆 11213312
+𤤇 11211134
+𤤈 11211554
+𤤉 11212343
+𤤊 11215353
+𤤋 313411214
+𤤌 11214535
+𤤍 11211535
+𤤎 343411214
+𤤏 112151254
+𤤐 112133124
+𤤑 112112152
+𤤒 112113344
+𤤓 112152112
+𤤔 112141431
+𤤕 112132124
+𤤖 112151532
+𤤗 112151335
+𤤘 211151121
+𤤙 1121412214
+𤤚 112145252
+𤤛 112141121
+𤤜 112112135
+𤤝 112112534
+𤤞 112111354
+𤤟 112113251
+𤤠 112125134
+𤤡 112125431
+𤤢 112125531
+𤤣 112131354
+𤤤 112131234
+𤤥 112131134
+𤤦 112125121
+𤤧 112125121
+𤤨 112125511
+𤤩 112131525
+𤤪 112135112
+𤤫 112135424
+𤤬 112155453
+𤤭 112125134
+𤤮 112135444
+𤤯 112145534
+𤤰 112113252
+𤤱 112132554
+𤤲 112112135
+𤤳 11215434
+𤤴 1121411214
+𤤵 1121331112
+𤤶 12135411214
+𤤷 1121325151
+𤤸 1121351234
+𤤹 1121125234
+𤤺 1121251153
+𤤻 1121531121
+𤤼 1121555252
+𤤽 1121342444
+𤤾 1121441112
+𤤿 1121132511
+𤥀 1121354354
+𤥁 1121354251
+𤥂 1121413234
+𤥃 1121445531
+𤥄 1121431234
+𤥅 1121434242
+𤥆 1121125211
+𤥇 1121154121
+𤥈 1121513252
+𤥉 1121121253
+𤥊 1121442534
+𤥋 112135152
+𤥌 112135452
+𤥍 1121354333
+𤥎 1121433454
+𤥏 53125111214
+𤥐 1121121251
+𤥑 1121415531
+𤥒 1121125351
+𤥓 34125111214
+𤥔 35135411214
+𤥕 1121351355
+𤥖 11213112121
+𤥗 11211315251
+𤥘 11213534554
+𤥙 11211433454
+𤥚 11212511112
+𤥛 11212511115
+𤥜 11212551554
+𤥝 11211213521
+𤥞 11213323554
+𤥟 11212511534
+𤥠 11214451354
+𤥡 11214154132
+𤥢 11213112251
+𤥣 11211225135
+𤥤 11214451234
+𤥥 11214132454
+𤥦 11214131214
+𤥧 11211213121
+𤥨 11211353334
+𤥩 11212152134
+𤥪 11212511321
+𤥫 11213434251
+𤥬 11213135333
+𤥭 11211251112
+𤥮 11212343251
+𤥯 11212511234
+𤥰 11213251135
+𤥱 11213253454
+𤥲 124134411214
+𤥳 11212512341
+𤥴 11211214544
+𤥵 11211343434
+𤥶 1121511352
+𤥷 11212154121
+𤥸 1121215452
+𤥹 312345311214
+𤥺 11213525134
+𤥻 11213212154
+𤥼 112135544544
+𤥽 112141533444
+𤥾 112135131234
+𤥿 112141323544
+𤦀 5153523411214
+𤦁 1251255411214
+𤦂 1251153411214
+𤦃 1343423411214
+𤦄 112155525115
+𤦅 211121111121
+𤦆 112153321511
+𤦇 112125431252
+𤦈 112112123553
+𤦉 251125111121
+𤦊 112125342511
+𤦋 112131511234
+𤦌 112144525111
+𤦍 112132351252
+𤦎 112134125122
+𤦏 112135334544
+𤦐 112113121121
+𤦑 112132534154
+𤦒 125115341121
+𤦓 112144513533
+𤦔 112143113455
+𤦕 112152125221
+𤦖 112111213115
+𤦗 112111212534
+𤦘 112112212511
+𤦙 112112123215
+𤦚 112125111134
+𤦛 112125113511
+𤦜 112134112251
+𤦝 112132511252
+𤦞 112132515112
+𤦟 1221115411214
+𤦠 112111213432
+𤦡 2511211121514
+𤦢 122111341121
+𤦣 112121531534
+𤦤 112132151135
+𤦥 112132151153
+𤦦 112135531121
+𤦧 11211212454
+𤦨 3211113211214
+𤦩 112112155121
+𤦪 112112511234
+𤦫 112112135354
+𤦬 112134154544
+𤦭 112111213511
+𤦮 112144154251
+𤦯 1121511112333
+𤦰 1121354554234
+𤦱 1121542534541
+𤦲 112115151234
+𤦳 1121351251112
+𤦴 1121343425115
+𤦵 1121125115315
+𤦶 1121354131121
+𤦷 1121332441112
+𤦸 1121322511234
+𤦹 1121212511134
+𤦺 1121414312512
+𤦻 1121412514535
+𤦼 25111454411214
+𤦽 1121415331521
+𤦾 1121113534531
+𤦿 1121113534251
+𤧀 1121122111234
+𤧁 1121513431234
+𤧂 1121112134154
+𤧃 1121111253134
+𤧄 1121125221531
+𤧅 1121513431132
+𤧆 1121112112341
+𤧇 1121123425111
+𤧈 1121122134515
+𤧉 1121112154234
+𤧊 1121134121121
+𤧋 1121132522531
+𤧌 1121121235455
+𤧍 1121121234154
+𤧎 1121511121333
+𤧏 1121344312121
+𤧐 1121312344334
+𤧑 1121351251214
+𤧒 1121355325221
+𤧓 1121352512153
+𤧔 1121352513553
+𤧕 1121125221121
+𤧖 1121251211534
+𤧗 1121251225251
+𤧘 1121312342511
+𤧙 112132151134
+𤧚 1121353344544
+𤧛 1121414345252
+𤧜 1121555251153
+𤧝 1121325131134
+𤧞 1121431121134
+𤧟 1121412514512
+𤧠 11214121251214
+𤧡 112112135452
+𤧢 112121135452
+𤧣 112151111254
+𤧤 51325121411214
+𤧥 11213251111214
+𤧦 11214312344334
+𤧧 312121355411214
+𤧨 11215115452
+𤧩 25111454411214
+𤧪 11214453513443
+𤧫 1121325151454
+𤧬 122111454411214
+𤧭 11214143454153
+𤧮 11211354221234
+𤧯 11213253435354
+𤧰 11211121341515
+𤧱 11215425354251
+𤧲 11211121345215
+𤧳 1121122121335
+𤧴 11211221342444
+𤧵 11211251124124
+𤧶 11211325111354
+𤧷 11215131221534
+𤧸 11212521251431
+𤧹 1121431554554
+𤧺 11214451255151
+𤧻 1121413312154
+𤧼 11214125125251
+𤧽 11214511353334
+𤧾 11214153355215
+𤧿 11214134132522
+𤨀 11211342512112
+𤨁 11211224312511
+𤨂 1121133511454
+𤨃 11211221134251
+𤨄 11211121554234
+𤨅 11212511121124
+𤨆 11212511243135
+𤨇 11212153153112
+𤨈 11212522512522
+𤨉 11212521353134
+𤨊 11213443554134
+𤨋 11213143143415
+𤨌 11213253414544
+𤨍 11211121455353
+𤨎 11214451353334
+𤨏 11215552511134
+𤨐 344332151111214
+𤨑 1121122341251
+𤨒 11212513414544
+𤨓 11211212341234
+𤨔 112125221153534
+𤨕 112112212511253
+𤨖 112135132515215
+𤨗 2125511123411214
+𤨘 112141344143112
+𤨙 1221251125311214
+𤨚 112145434251214
+𤨛 112121211213211
+𤨜 112134342511345
+𤨝 112111213445434
+𤨞 112141352211535
+𤨟 112113211234534
+𤨠 112124345251121
+𤨡 11214511543511
+𤨢 112112212511134
+𤨣 124134431341121
+𤨤 112131431434333
+𤨥 112144513412512
+𤨦 112135313412512
+𤨧 112112522111234
+𤨨 112131554143134
+𤨩 112143112135211
+𤨪 112121354541234
+𤨫 112141351124544
+𤨬 112141432512251
+𤨭 112141351125112
+𤨮 112112213545252
+𤨯 112113425112512
+𤨰 112112214535455
+𤨱 112125111515121
+𤨲 112125244511234
+𤨳 112112121251124
+𤨴 112125121554234
+𤨵 112154545434333
+𤨶 112112213424134
+𤨷 11211222511234
+𤨸 112112212524444
+𤨹 112114524134112
+𤨺 112145353431234
+𤨻 121452512511121
+𤨼 1121441431251112
+𤨽 3443123433311214
+𤨾 112125225111515
+𤨿 112152133544124
+𤩀 1121122135413134
+𤩁 112121531535334
+𤩂 1121433443344553
+𤩃 1121253413425115
+𤩄 1121515515122134
+𤩅 1121214513434251
+𤩆 1121352522113344
+𤩇 1121515121121251
+𤩈 1121515121121251
+𤩉 1121512512535251
+𤩊 1121121121121135
+𤩋 1121211253434251
+𤩌 1121441122111345
+𤩍 1121112134151134
+𤩎 1121511225112511
+𤩏 1121312342513121
+𤩐 1121122111343312
+𤩑 1121252125143135
+𤩒 1121122111341234
+𤩓 1121431224312511
+𤩔 1121414312511211
+𤩕 1121431121431251
+𤩖 1121121451251221
+𤩗 1121125221431234
+𤩘 1121112112511234
+𤩙 1121112111214544
+𤩚 1121125112523554
+𤩛 1121251112211154
+𤩜 1121251125112511
+𤩝 1121313425125251
+𤩞 1121352534135354
+𤩟 1121112151122511
+𤩠 1121121251431251
+𤩡 1121212513434251
+𤩢 1121325111413412
+𤩣 1121343421325111
+𤩤 21255115353411214
+𤩥 1121344345354152
+𤩦 1121111253554234
+𤩧 1121251251251112
+𤩨 1121545454342444
+𤩩 1121251152153151
+𤩪 1121352521353334
+𤩫 11212523251213554
+𤩬 1121553451121152
+𤩭 11212511521531535
+𤩮 11211251121543554
+𤩯 125112154355411214
+𤩰 11212125343411234
+𤩱 513122134355411214
+𤩲 11211212251135345
+𤩳 1121121222511134
+𤩴 11215131221343554
+𤩵 11211251112511134
+𤩶 11212243143111234
+𤩷 11214451343425111
+𤩸 11211212543341134
+𤩹 51325141431121121
+𤩺 112144311213121534
+𤩻 1121413311212454
+𤩼 1121131213541454
+𤩽 11211225431121344
+𤩾 11211215512125121
+𤩿 11211212353344544
+𤪀 11213444445235354
+𤪁 11212522141251234
+𤪂 11213413511224544
+𤪃 11211344325114334
+𤪄 11212522113425115
+𤪅 11213541414312511
+𤪆 11215112145543112
+𤪇 212534341123411214
+𤪈 21222543112521121
+𤪉 45534411213541121
+𤪊 11213411243134454
+𤪋 1251253112522111214
+𤪌 112112211134554234
+𤪍 112152155545543112
+𤪎 2125343415353411214
+𤪏 112143344334354152
+𤪐 321115251113411214
+𤪑 11211224511353334
+𤪒 112132534444411234
+𤪓 112144541343425111
+𤪔 112131431444525151
+𤪕 112131122221354152
+𤪖 112125215542343134
+𤪗 112141251451353334
+𤪘 112112125143153251
+𤪙 112113425234343434
+𤪚 112112132411121534
+𤪛 112125125141343412
+𤪜 112112124453434251
+𤪝 11213155414154325
+𤪞 112134434525111354
+𤪟 112132224314311134
+𤪠 112131254312114444
+𤪡 5113251511325111214
+𤪢 112112511122513554
+𤪣 112112212513443121
+𤪤 112143344334451234
+𤪥 112144545442522112
+𤪦 112115311345452134
+𤪧 112135132511154444
+𤪨 1121212132511544134
+𤪩 1121323434343413121
+𤪪 1121314314551353334
+𤪫 1121554554125111534
+𤪬 1121122511125111134
+𤪭 32113112525114511214
+𤪮 1121413251121135121
+𤪯 1121254312114444121
+𤪰 21253444441353411214
+𤪱 1121314314322354333
+𤪲 1121131212251125214
+𤪳 1121111211125114544
+𤪴 1121112111213445434
+𤪵 1121112132511353534
+𤪶 1121121225111342444
+𤪷 1121212134341343452
+𤪸 1121243452512511134
+𤪹 1121252211212513534
+𤪺 1121445343123425121
+𤪻 1121214515343425111
+𤪼 112112121251112454
+𤪽 1121215315343425111
+𤪾 112113312343123411214
+𤪿 11214132512135543534
+𤫀 214513434251115411214
+𤫁 11214334433445251214
+𤫂 11213211251251511134
+𤫃 11211212125112144544
+𤫄 11213323525121134112
+𤫅 11213215113251213554
+𤫆 341342523434343411214
+𤫇 11211221251211354444
+𤫈 112135351154524544
+𤫉 112141112514334433454
+𤫊 145241342512512511121
+𤫋 112151121352342511134
+𤫌 112132111251112511134
+𤫍 111211121343412112431
+𤫎 11214334433445251251
+𤫏 3531342523434343411214
+𤫐 11212522112513534454
+𤫑 112114524134512115154
+𤫒 111211121343445412121
+𤫓 112141132511132511134
+𤫔 55525152153241112111214
+𤫕 11211325111212151534354
+𤫖 1121445112111212511134
+𤫗 1121215315324111213553
+𤫘 11211325114535212115354
+𤫙 11214111251433443344334
+𤫚 11214134522521432411121
+𤫛 11212522121112111413534
+𤫜 411125155444455444411214
+𤫝 11211221251122511352121
+𤫞 11214451121352342511134
+𤫟 11211254125441352211515
+𤫠 112125125113121221113134
+𤫡 112125111342511134311252
+𤫢 1121145241342512121354251
+𤫣 112121531512512543121554
+𤫤 1121251212512125121554234
+𤫥 1121251212512125121311252
+𤫦 1121145241341221251123511
+𤫧 112112225221134211121111
+𤫨 11213121353121351251254312
+𤫩 1121145241342512512511234341
+𤫪 31533544
+𤫫 345333544
+𤫬 335441112
+𤫭 335441525
+𤫮 335443511
+𤫯 453533544
+𤫰 3354451532
+𤫱 3525133544
+𤫲 3415433544
+𤫳 3354454251
+𤫴 3113433544
+𤫵 33544312251
+𤫶 12125133544
+𤫷 12523433544
+𤫸 33544134115
+𤫹 41343433544
+𤫺 335443554234
+𤫻 212123333544
+𤫼 335444351523
+𤫽 335442511135
+𤫾 335442433541
+𤫿 341123433544
+𤬀 335443411234
+𤬁 2511123433544
+𤬂 2112345433544
+𤬃 4143125133544
+𤬄 1344311533544
+𤬅 3354412111534
+𤬆 2511251133544
+𤬇 344355423433544
+𤬈 32513113433544
+𤬉 54334113433544
+𤬊 33544451325122
+𤬋 33544251225251
+𤬌 55135333433544
+𤬍 354131125233544
+𤬎 3354412213545252
+𤬏 2511251253133544
+𤬐 433443344533544
+𤬑 335443354433544
+𤬒 335442534125221
+𤬓 431511223433544
+𤬔 335443443311252
+𤬕 335443515251325
+𤬖 3541335443554234
+𤬗 12145215512133544
+𤬘 215315125143133544
+𤬙 335441234251225251
+𤬚 335444134315112234
+𤬛 215315251212522133544
+𤬜 335442153152512125221
+𤬝 215315125125431233544
+𤬞 3354441251251112213534
+𤬟 3211325341511433433544
+𤬠 33544212125125132411121
+𤬡 32113253415111433433544
+𤬢 321132534151113411533544
+𤬣 32111325341511113411533544
+𤬤 55135333433544251214251214
+𤬥 412512515415413251133544413534
+𤬦 451554
+𤬧 155412
+𤬨 1554354
+𤬩 1541554
+𤬪 1211554
+𤬫 1554512
+𤬬 43341554
+𤬭 13241554
+𤬮 15541554
+𤬯 15543415
+𤬰 34151554
+𤬱 15543533
+𤬲 15542534
+𤬳 121351554
+𤬴 251511554
+𤬵 351511554
+𤬶 351121554
+𤬷 522521554
+𤬸 155431121
+𤬹 131554534
+𤬺 251341554
+𤬻 155434154
+𤬼 522521554
+𤬽 445351554
+𤬾 3512341554
+𤬿 1211211554
+𤭀 5345351554
+𤭁 2512511554
+𤭂 3354141554
+𤭃 1325221554
+𤭄 2511211554
+𤭅 1554431132
+𤭆 1554251251
+𤭇 3122511554
+𤭈 3415341554
+𤭉 4155551554
+𤭊 4411211554
+𤭋 2511211554
+𤭌 43515231554
+𤭍 15543251134
+𤭎 112121541554
+𤭏 34342511554
+𤭐 31554141554
+𤭑 12512511554
+𤭒 4511541554
+𤭓 15551211554
+𤭔 12511121554
+𤭕 1543251554
+𤭖 15541211154
+𤭗 12211151554
+𤭘 31251251554
+𤭙 15543445251
+𤭚 15543121251
+𤭛 254312521554
+𤭜 312343531554
+𤭝 121351211554
+𤭞 412515211554
+𤭟 325151121554
+𤭠 125125541554
+𤭡 122111541554
+𤭢 413434121554
+𤭣 122111341554
+𤭤 344352151554
+𤭥 121212511554
+𤭦 122111341554
+𤭧 1515325111554
+𤭨 1312135411554
+𤭩 1215213541554
+𤭪 1234251111554
+𤭫 1221251121554
+𤭬 3112521211554
+𤭭 3225112341554
+𤭮 3125112111554
+𤭯 1554325112534
+𤭰 4334312341554
+𤭱 1225135111554
+𤭲 251115441554
+𤭳 2555455411554
+𤭴 1221512341554
+𤭵 1554414312511
+𤭶 3534525111554
+𤭷 1554341251122
+𤭸 5134311321554
+𤭹 25134252211554
+𤭺 25221121211554
+𤭻 12512125121554
+𤭼 25115415411554
+𤭽 52252112341554
+𤭾 12522111211554
+𤭿 12211154441554
+𤮀 12125545541554
+𤮁 13252243341554
+𤮂 15544135112251
+𤮃 15542513425221
+𤮄 15541251254312
+𤮅 121351213541554
+𤮆 2153152252111554
+𤮇 413511251121554
+𤮈 125111235541554
+𤮉 251215542341554
+𤮊 413511241341554
+𤮋 251251153411554
+𤮌 155412141431531
+𤮍 155412511214124
+𤮎 5454545542341554
+𤮏 1221125121341554
+𤮐 4312535111241554
+𤮑 1554211121114544
+𤮒 1554513431234531
+𤮓 1221113433121554
+𤮔 5152535411211554
+𤮕 432523431341554
+𤮖 15443113251554
+𤮗 15542512121354251
+𤮘 35415412514311554
+𤮙 21531512514311554
+𤮚 14524134251211554
+𤮛 12511125235541554
+𤮜 41252511251111554
+𤮝 21531535351121554
+𤮞 2523251135541554
+𤮟 1554121325113554
+𤮠 15541224511353334
+𤮡 121244535155425134
+𤮢 4133112222144441554
+𤮣 2153152512125111554
+𤮤 2113544534155425134
+𤮥 1554125125125153534
+𤮦 25111452413411541554
+𤮧 21531525121252211554
+𤮨 41431354115151111554
+𤮩 41251251134341121554
+𤮪 21115453515544334132
+𤮫 31125234433112521554
+𤮬 3112121344331121211554
+𤮭 352511515352513541554
+𤮮 145241342512512511554
+𤮯 252324111213215111554
+𤮰 2523241112125352511554
+𤮱 1221111221111221111554
+𤮲 5552515215324111211554
+𤮳 1554212125125132411121
+𤮴 122251251324111211554
+𤮵 1325221341554121251431
+𤮶 41112514334433443341554
+𤮷 145244441215512251211554
+𤮸 14524134251251251251211554
+𤮹 1452413425125125112343411554
+𤮺 21112
+𤮻 11212211
+𤮼 15412211
+𤮽 12211112
+𤮾 13512211
+𤮿 12211135
+𤯀 12211112
+𤯁 351512211
+𤯂 122111344
+𤯃 123412211
+𤯄 122113515
+𤯅 1221112121
+𤯆 122114111251
+𤯇 1221143344334
+𤯈 12211121325114
+𤯉 122111355135333
+𤯊 12234123412211
+𤯋 1221141312214444
+𤯌 4131235123512211
+𤯍 13312343123412211
+𤯎 413312353123512211
+𤯏 122111234122111234
+𤯐 122115112251135321511
+𤯑 1221113454125251131234
+𤯒 121521335543123434431212211
+𤯓 52121
+𤯔 131121
+𤯕 31121531
+𤯖 53431121
+𤯗 13431121
+𤯘 311214412
+𤯙 311211254
+𤯚 132431121
+𤯛 311213134
+𤯜 311215353
+𤯝 311213511
+𤯞 311212521
+𤯟 3112155414
+𤯠 25134131121
+𤯡 31121125234
+𤯢 54545431121
+𤯣 31121325111
+𤯤 34125131121
+𤯥 53125131121
+𤯦 452345331121
+𤯧 521212535251
+𤯨 311211121132
+𤯩 112113231121
+𤯪 311213123453
+𤯫 311213121534
+𤯬 3112125352511
+𤯭 4312243131121
+𤯮 3112121531535
+𤯯 5315425131121
+𤯰 3112141335154
+𤯱 1341251231121
+𤯲 5235415231121
+𤯳 125342135431121
+𤯴 34435333431121
+𤯵 433443344531121
+𤯶 2211213411231121
+𤯷 34434535415231121
+𤯸 31121314314351153
+𤯹 43112135333431121
+𤯺 311211221251112153
+𤯻 311211224511353334
+𤯼 2243451135333431121
+𤯽 5153212534215431121
+𤯾 1212451135333431121
+𤯿 4133515441431331121
+𤰀 143344334535415252121
+𤰁 321115251113411231121
+𤰂 3112141251251112213534
+𤰃 3211122
+𤰄 5335112
+𤰅 35435112
+𤰆 32111122
+𤰇 1221335112
+𤰈 21213535112
+𤰉 251213425112
+𤰊 12522153135112
+𤰋 2512141351125112
+𤰌 351123511235112
+𤰍 122134252341251124
+𤰎 4125152141351125112
+𤰏 542511254251121223235
+𤰐 2243134252343434341251124
+𤰑 1542513541122125112354
+𤰒 34254312
+𤰓 125121
+𤰔 125121
+𤰕 2512155
+𤰖 2512154
+𤰗 3125121
+𤰘 2512124
+𤰙 3525121
+𤰚 3525121
+𤰛 5325121
+𤰜 2512154
+𤰝 25121555
+𤰞 25121412
+𤰟 25121112
+𤰠 25121112
+𤰡 41525121
+𤰢 25121315
+𤰣 25121115
+𤰤 25121112
+𤰥 25121124
+𤰦 25121315
+𤰧 35425121
+𤰨 25121513
+𤰩 251215452
+𤰪 251213553
+𤰫 522125121
+𤰬 251212343
+𤰭 125121534
+𤰮 251215134
+𤰯 251213554
+𤰰 251213324
+𤰱 122512121
+𤰲 3251213324
+𤰳 113425121
+𤰴 251211151
+𤰵 251211345
+𤰶 251125112
+𤰷 251125215
+𤰸 415425121
+𤰹 251214334
+𤰺 132425121
+𤰻 122125121
+𤰼 251213112
+𤰽 251213215
+𤰾 251213511
+𤰿 251213533
+𤱀 251213434
+𤱁 251211134
+𤱂 251211154
+𤱃 251211234
+𤱄 251212534
+𤱅 251212534
+𤱆 251212554
+𤱇 343425121
+𤱈 412512124
+𤱉 251215134
+𤱊 545425121
+𤱋 251122511
+𤱌 2512125111
+𤱍 2512151254
+𤱎 2512155453
+𤱏 2512131234
+𤱐 2512152134
+𤱑 1225121534
+𤱒 1213525121
+𤱓 2511225112
+𤱔 4125121354
+𤱕 2512151515
+𤱖 3251211255
+𤱗 2512141431
+𤱘 2512153315
+𤱙 2512112341
+𤱚 3551125121
+𤱛 2512131234
+𤱜 3123425121
+𤱝 2512134121
+𤱞 2512135444
+𤱟 2512152252
+𤱠 2512153251
+𤱡 5425121525
+𤱢 2511232154
+𤱣 2521125112
+𤱤 2512144512
+𤱥 25121125125
+𤱦 25121433435
+𤱧 25121351234
+𤱨 25121122134
+𤱩 25121341534
+𤱪 51111225121
+𤱫 2512135134
+𤱬 25121352511
+𤱭 34413425121
+𤱮 32512133534
+𤱯 25121351355
+𤱰 25121333534
+𤱱 12125121534
+𤱲 25121121525
+𤱳 25121243135
+𤱴 25121312111
+𤱵 43113425121
+𤱶 41251211344
+𤱷 25121535353
+𤱸 54253425121
+𤱹 55512512112
+𤱺 11223425121
+𤱻 251211225125
+𤱼 251211311534
+𤱽 555251211134
+𤱾 555251215134
+𤱿 124525121132
+𤲀 251212512115
+𤲁 251215434252
+𤲂 251213432124
+𤲃 251211122112
+𤲄 325121323334
+𤲅 12213425115
+𤲆 251211311534
+𤲇 125125125121
+𤲈 251213525135
+𤲉 251211342511
+𤲊 251212512134
+𤲋 251213554354
+𤲌 112113225121
+𤲍 251121343434
+𤲎 251213134234
+𤲏 251214453535
+𤲐 251211221534
+𤲑 5552512144512
+𤲒 2512131133112
+𤲓 2512113434234
+𤲔 2512132121124
+𤲕 2512134125122
+𤲖 2512111342444
+𤲗 1251255425121
+𤲘 2512112111534
+𤲙 5413455525121
+𤲚 2512112511234
+𤲛 5454543425121
+𤲜 2512112143112
+𤲝 1343423425121
+𤲞 3443123425121
+𤲟 2512111212511
+𤲠 2512141343412
+𤲡 2512112513534
+𤲢 1215512125121
+𤲣 2512115112134
+𤲤 2512121251112
+𤲥 2511452525112
+𤲦 2512125121132
+𤲧 2512131213134
+𤲨 2512143113455
+𤲩 2512143344334
+𤲪 2512112135354
+𤲫 25121344311354
+𤲬 25121132522134
+𤲭 25121123425121
+𤲮 25121515121121
+𤲯 51121111251211
+𤲰 25112251125111
+𤲱 12121523425121
+𤲲 25121122134121
+𤲳 25121251125214
+𤲴 25121253425121
+𤲵 25121332121124
+𤲶 25121532512153
+𤲷 123434343425121
+𤲸 121255455425121
+𤲹 251215154151541
+𤲺 251213443554134
+𤲻 251211122342444
+𤲼 251211534251153
+𤲽 132511251213535
+𤲾 121551214125121
+𤲿 511121122512121
+𤳀 554554125121534
+𤳁 251213121135234
+𤳂 251213123431234
+𤳃 251213443554134
+𤳄 251212522112154
+𤳅 251122511225112
+𤳆 251215313434234
+𤳇 134342342512153
+𤳈 2512131251113533
+𤳉 2512112212511134
+𤳊 5552512131133112
+𤳋 343434343425121
+𤳌 2512141312214444
+𤳍 2512125121125115
+𤳎 2512111212511134
+𤳏 2512125121251211
+𤳐 2512141312214444
+𤳑 2512154545434234
+𤳒 25121545454342444
+𤳓 13542225121122134
+𤳔 33541443113425121
+𤳕 51543123451525121
+𤳖 34312342512112154
+𤳗 12154343123425121
+𤳘 25112543341251431
+𤳙 25121121244535455
+𤳚 25121511121354124
+𤳛 12154343123425121
+𤳜 25121132522132522
+𤳝 25121312343123422
+𤳞 34435425545425121
+𤳟 25121145241341154
+𤳠 25121212511352511
+𤳡 1123413553425121
+𤳢 25121531212511134
+𤳣 2512125111122112
+𤳤 555251213443554134
+𤳥 251212512112341234
+𤳦 251212512125121134
+𤳧 251325125121122134
+𤳨 25121452455124134
+𤳩 2512143344334354152
+𤳪 1325113541134425121
+𤳫 5552512151331133112
+𤳬 25121324111212535251
+𤳭 2512125121112135455
+𤳮 3354144334535425121
+𤳯 5552512141312214444
+𤳰 5133115513412512152
+𤳱 2512141312212512134
+𤳲 5552512141315112134
+𤳳 25121251212512125121
+𤳴 25121125122512112512
+𤳵 25112251122511225112
+𤳶 25121323434343413121
+𤳷 25221542511353525121
+𤳸 25121252215425113535
+𤳹 251212512112512125121
+𤳺 343123425121312511354
+𤳻 251212512125121554234
+𤳼 541342512141312214444
+𤳽 251214143125111515111
+𤳾 121221111251211251211
+𤳿 3443512512243123425121
+𤴀 2512125121121121121135
+𤴁 251212512125121445551
+𤴂 25121354251251214251214
+𤴃 25121121512112511244444
+𤴄 25121251211342512125121
+𤴅 555251212153152512125221
+𤴆 2512131431412151211251124
+𤴇 25121251213412512512125121
+𤴈 25121251212512125121554234
+𤴉 25121251212512145251114512
+𤴊 25121251213112522512125121
+𤴋 344351445541241251123425121
+𤴌 251212512113115342512125121
+𤴍 251212512125121452511144512
+𤴎 344351251221241251123425121
+𤴏 251211221342522155444432411121
+𤴐 25121251212525112525112512125121
+𤴑 251212512125121251211452413425121
+𤴒 251212251525121251213251115444425121
+𤴓 12134
+𤴔 52121
+𤴕 152134
+𤴖 1542134
+𤴗 5235112134
+𤴘 345112134
+𤴙 325354152134
+𤴚 125123452134
+𤴛 1251215412134
+𤴜 1234521341234
+𤴝 1251121452134
+𤴞 12125221542134
+𤴟 1221354525252134
+𤴠 5213354412452134
+𤴡 124525121542134
+𤴢 1214311235452134
+𤴣 513251414311252134
+𤴤 1452413425125125152134
+𤴥 413415
+𤴦 4134135
+𤴧 4134134
+𤴨 4134154
+𤴩 4134124
+𤴪 4134135
+𤴫 4134112
+𤴬 4134153
+𤴭 4134134
+𤴮 4134132
+𤴯 41341354
+𤴰 41341135
+𤴱 41341315
+𤴲 41341112
+𤴳 41341521
+𤴴 41341535
+𤴵 41341154
+𤴶 41341121
+𤴷 413411234
+𤴸 413413115
+𤴹 413411252
+𤴺 413414535
+𤴻 413411344
+𤴼 413413534
+𤴽 413413415
+𤴾 413413312
+𤴿 413412511
+𤵀 413411535
+𤵁 413412121
+𤵂 413414544
+𤵃 413413112
+𤵄 413411354
+𤵅 413413452
+𤵆 413413554
+𤵇 413413553
+𤵈 413415452
+𤵉 413411344
+𤵊 413411525
+𤵋 413411554
+𤵌 413412343
+𤵍 413413112
+𤵎 413413135
+𤵏 413413435
+𤵐 413413533
+𤵑 413413534
+𤵒 413414134
+𤵓 413415254
+𤵔 413415435
+𤵕 413413415
+𤵖 413412511
+𤵗 4134113252
+𤵘 4134145434
+𤵙 4134131121
+𤵚 4134131525
+𤵛 4134113241
+𤵜 4134135234
+𤵝 4134155414
+𤵞 4134134121
+𤵟 4134152254
+𤵠 4134135352
+𤵡 4134134312
+𤵢 4134132121
+𤵣 4134114312
+𤵤 4134151515
+𤵥 4134131234
+𤵦 4134112345
+𤵧 4134151254
+𤵨 4134151134
+𤵩 4134132525
+𤵪 4134153251
+𤵫 4134111234
+𤵬 4134113544
+𤵭 4134125112
+𤵮 4134134434
+𤵯 4134135325
+𤵰 4134135511
+𤵱 4134125153
+𤵲 4134134234
+𤵳 4134112341
+𤵴 4134132121
+𤵵 4134151134
+𤵶 4134121515
+𤵷 41341521354
+𤵸 41341354152
+𤵹 41341121251
+𤵺 41341251153
+𤵻 41341345135
+𤵼 41341325251
+𤵽 41341121234
+𤵾 41341445315
+𤵿 41341125345
+𤶀 41341413434
+𤶁 41341121315
+𤶂 41341521251
+𤶃 41341341534
+𤶄 41341321121
+𤶅 41341231134
+𤶆 41341555252
+𤶇 41341352511
+𤶈 41341125351
+𤶉 41341251124
+𤶊 41341344154
+𤶋 41341355215
+𤶌 41341433454
+𤶍 41341511511
+𤶎 41341311234
+𤶏 41341243135
+𤶐 41341132521
+𤶑 41341251341
+𤶒 4134153454
+𤶓 41341412511
+𤶔 41341354234
+𤶕 413411134251
+𤶖 413413443521
+𤶗 413415431134
+𤶘 413414111251
+𤶙 413413231211
+𤶚 413412511121
+𤶛 413412515215
+𤶜 413415213121
+𤶝 413415344544
+𤶞 413413541112
+𤶟 413411344354
+𤶠 413413411234
+𤶡 413413541124
+𤶢 413414525111
+𤶣 413413323554
+𤶤 413413523454
+𤶥 413411331134
+𤶦 413411121132
+𤶧 413412512534
+𤶨 413412511115
+𤶩 413411241344
+𤶪 413412121112
+𤶫 413413541234
+𤶬 413411251234
+𤶭 413412511234
+𤶮 413411253415
+𤶯 413411253454
+𤶰 413411325221
+𤶱 413412512512
+𤶲 413412511121
+𤶳 413413121251
+𤶴 413413251113
+𤶵 413413533252
+𤶶 413414411121
+𤶷 413415113251
+𤶸 41341511352
+𤶹 413415135251
+𤶺 413412513534
+𤶻 413412511135
+𤶼 41341122415
+𤶽 413411245521
+𤶾 413414134251
+𤶿 413412511521
+𤷀 413411351121
+𤷁 413411324121
+𤷂 4134135115215
+𤷃 4134115341534
+𤷄 4134143113455
+𤷅 4134132151135
+𤷆 4134112511234
+𤷇 4134112511534
+𤷈 4134113411234
+𤷉 4134152251541
+𤷊 4134135411354
+𤷋 4134113543115
+𤷌 4134112512554
+𤷍 4134112211134
+𤷎 4134132515112
+𤷏 4134134431121
+𤷐 4134141525111
+𤷑 4134135424251
+𤷒 4134125121412
+𤷓 4134133123534
+𤷔 4134134125122
+𤷕 4134134431234
+𤷖 4134112135354
+𤷗 413414325234
+𤷘 4134121251112
+𤷙 4134125111124
+𤷚 4134151124134
+𤷛 4134124325251
+𤷜 4134134151154
+𤷝 4134132121252
+𤷞 4134135114544
+𤷟 4134112141431
+𤷠 4134112343134
+𤷡 4134121531535
+𤷢 4134125111134
+𤷣 4134131212211
+𤷤 4134134132511
+𤷥 4134134543541
+𤷦 4134141251234
+𤷧 4134144535455
+𤷨 4134152115211
+𤷩 4134144154251
+𤷪 4134152125221
+𤷫 4134112523422
+𤷬 4134135431121
+𤷭 4134132511354
+𤷮 4134133241121
+𤷯 4134151325222
+𤷰 4134111134112
+𤷱 4134151122511
+𤷲 4134152131234
+𤷳 4134125213251
+𤷴 4134132413534
+𤷵 4134112153254
+𤷶 4134111213534
+𤷷 4134111525221
+𤷸 413413354452
+𤷹 4134145443554
+𤷺 41341311212154
+𤷻 41341555325341
+𤷼 41341123425111
+𤷽 41341343425152
+𤷾 41341113434345
+𤷿 41341445351344
+𤸀 41341521343541
+𤸁 41341551353334
+𤸂 41341132522134
+𤸃 41341445433454
+𤸄 413412252212534
+𤸅 41341515152511
+𤸆 41341521251152
+𤸇 41341354131121
+𤸈 41341431253411
+𤸉 41341431353334
+𤸊 41341542514544
+𤸋 4134125113432
+𤸌 41341341211154
+𤸍 41341354554234
+𤸎 41341251135345
+𤸏 41341123411234
+𤸐 41341344251154
+𤸑 41341312511354
+𤸒 41341251125214
+𤸓 413411541213134
+𤸔 41341251251251
+𤸕 41341312121454
+𤸖 41341412513534
+𤸗 41341321241344
+𤸘 41341212511134
+𤸙 41341134425221
+𤸚 41341112155414
+𤸛 41341251214544
+𤸜 41341431113432
+𤸝 41341542511253
+𤸞 41341111253132
+𤸟 41341121121124
+𤸠 41341121225121
+𤸡 4134112225134
+𤸢 41341252252252
+𤸣 41341312122152
+𤸤 41341341511534
+𤸥 41341412514512
+𤸦 41341521521521
+𤸧 41341445125111
+𤸨 41341341534234
+𤸩 41341352513553
+𤸪 413411112533112
+𤸫 413412512511134
+𤸬 413414125113534
+𤸭 413413321212134
+𤸮 413415132433541
+𤸯 413415454541234
+𤸰 413413232411121
+𤸱 413411215425221
+𤸲 413415253414444
+𤸳 413412521251431
+𤸴 413411245554234
+𤸵 413411251124124
+𤸶 413411221335112
+𤸷 413415113251252
+𤸸 413414313425221
+𤸹 413414334433422
+𤸺 413414153343534
+𤸻 41341531543112
+𤸼 413413251154444
+𤸽 413414312344544
+𤸾 413415454543541
+𤸿 413415225235545
+𤹀 413412511541541
+𤹁 413412513533341
+𤹂 413414311214444
+𤹃 413411344325115
+𤹄 413412525111234
+𤹅 413415545541234
+𤹆 413413241112154
+𤹇 413413123454251
+𤹈 413411234123435
+𤹉 413411325111354
+𤹊 413412343251214
+𤹋 413413123451515
+𤹌 413413251511252
+𤹍 413415435411515
+𤹎 413415545544444
+𤹏 413415545544544
+𤹐 413411354224444
+𤹑 413413234454544
+𤹒 413414523412154
+𤹓 41341511325152
+𤹔 413414143454153
+𤹕 413412513414544
+𤹖 413411251112112
+𤹗 413413454541541
+𤹘 413411311534124
+𤹙 41341452425135
+𤹚 413411221111534
+𤹛 413411221114544
+𤹜 413414452513251
+𤹝 413412511122112
+𤹞 4134141432512251
+𤹟 4134141432535251
+𤹠 4134111212511134
+𤹡 4134112531525111
+𤹢 4134121115132522
+𤹣 4134121531534312
+𤹤 4134143113424134
+𤹥 4134112152133554
+𤹦 4134125141252511
+𤹧 4134145442522112
+𤹨 4134112511124554
+𤹩 4134113432411121
+𤹪 4134112512512515
+𤹫 4134131251251354
+𤹬 4134133225111124
+𤹭 4134154154134234
+𤹮 4134154545434234
+𤹯 4134154251124544
+𤹰 4134124345251252
+𤹱 4134112111545154
+𤹲 4134112213425121
+𤹳 4134112341234252
+𤹴 4134112351235531
+𤹵 4134112511214124
+𤹶 4134112524134134
+𤹷 4134132511154444
+𤹸 4134135251214544
+𤹹 4134135252211254
+𤹺 4134143112125221
+𤹻 4134155521212121
+𤹼 4134121531535333
+𤹽 4134141112512534
+𤹾 4134125113155414
+𤹿 4134135251214444
+𤺀 4134141431413534
+𤺁 413412511135534
+𤺂 4134113443251134
+𤺃 41341325111413412
+𤺄 41341414312511211
+𤺅 41341522521123454
+𤺆 4134125121122134
+𤺇 41341332351325122
+𤺈 4134151312132511
+𤺉 41341344335554444
+𤺊 41341122111343312
+𤺋 41341125111234333
+𤺌 413415443341251431
+𤺍 41341121221113134
+𤺎 41341321511354444
+𤺏 41341343123425121
+𤺐 41341353251135345
+𤺑 41341545454342444
+𤺒 413412121154111251
+𤺓 4134143252343134
+𤺔 41341122152511134
+𤺕 41341515322511134
+𤺖 41341511225114134
+𤺗 41341134334433422
+𤺘 41341121551213534
+𤺙 41341212121212121
+𤺚 41341111253554234
+𤺛 41341511225111234
+𤺜 4134151512121251
+𤺝 4134121531535135
+𤺞 4134121531522431
+𤺟 41341541541342444
+𤺠 41341341252431252
+𤺡 41341125251111234
+𤺢 41341123412341234
+𤺣 41341123412344444
+𤺤 41341134315233534
+𤺥 41341314314341251
+𤺦 41341431134121251
+𤺧 41341432524312511
+𤺨 41341341511325122
+𤺩 41341351143113453
+𤺪 41341431112431251
+𤺫 41341454445444544
+𤺬 41341121251431333
+𤺭 41341314314511112
+𤺮 41341451332411121
+𤺯 41341511225114544
+𤺰 41341341124313534
+𤺱 41341354413444444
+𤺲 41341243252513134
+𤺳 41341513241343112
+𤺴 41341121431125254
+𤺵 41341251414312511
+𤺶 41341121125444454
+𤺷 41341123452251541
+𤺸 41341353251211534
+𤺹 4134152251113533
+𤺺 413414125251125111
+𤺻 41341324111212525
+𤺼 413415415413433353
+𤺽 413415113251431112
+𤺾 413413253431234134
+𤺿 413412153152512153
+𤻀 413412121131233534
+𤻁 413413251114143112
+𤻂 413412522112143112
+𤻃 41341251112132511
+𤻄 41341431353334454
+𤻅 413413443454544354
+𤻆 413411135132511134
+𤻇 413411234123452134
+𤻈 413412511251113533
+𤻉 413413232511154444
+𤻊 413413123435132534
+𤻋 413412511134125122
+𤻌 4134125525251454
+𤻍 413413413511223534
+𤻎 413411234123411234
+𤻏 413413215111213554
+𤻐 413414143125113534
+𤻑 413414134315112234
+𤻒 413411325141343412
+𤻓 122111344134112534
+𤻔 4134112212132511
+𤻕 4134155444432411121
+𤻖 4134132511125121132
+𤻗 4134125115545544444
+𤻘 4134134431215114544
+𤻙 4134121213241112154
+𤻚 4134112351235253434
+𤻛 4134112132411121534
+𤻜 4134112121215425221
+𤻝 4134144545442522112
+𤻞 4134113425234343434
+𤻟 413411222522145354
+𤻠 4134112213434251214
+𤻡 4134112125145154121
+𤻢 4134113113453525154
+𤻣 4134123434343412511
+𤻤 4134131234312342121
+𤻥 4134131431444525151
+𤻦 4134132511145441534
+𤻧 4134133541435541234
+𤻨 4134141431252132522
+𤻩 4134154251135354444
+𤻪 4134114524444132522
+𤻫 4134122431431121124
+𤻬 4134141431131251234
+𤻭 4134141112511251251
+𤻮 4134132324111214544
+𤻯 413413211511135534
+𤻰 41341122121344251154
+𤻱 41341215315251214544
+𤻲 41341325115545541234
+𤻳 41341132511325113251
+𤻴 41341354143113424134
+𤻵 41341234324111211534
+𤻶 41341554444351325122
+𤻷 41341335414355425221
+𤻸 41341323434343413121
+𤻹 41341121225121251214
+𤻺 41341251125125313134
+𤻻 4134112225221134534
+𤻼 41341352512144442511
+𤻽 41341212134341343452
+𤻾 41341515251251251112
+𤻿 413415115415351234
+𤼀 413413525121444431234
+𤼁 413412121252214525111
+𤼂 413414453121252214544
+𤼃 413414143135411515111
+𤼄 413413211125345114134
+𤼅 413412512511344251251
+𤼆 413413511431134554234
+𤼇 413411221341251221344
+𤼈 413413211251251511134
+𤼉 41341512211131344544
+𤼊 41341321511342511134
+𤼋 4134134341211121111534
+𤼌 4134154154125121122134
+𤼍 4134112341234312342511
+𤼎 4134125431211444425221
+𤼏 4134134125125134343534
+𤼐 41341212125125132411121
+𤼑 41341123412342512453541
+𤼒 41341252324111212535251
+𤼓 4134112212512531425221
+𤼔 41341121125444434454544
+𤼕 41341122111414312511534
+𤼖 41341251214251214251214
+𤼗 41341413522115152512134
+𤼘 413414152513541431112354
+𤼙 413414111251554444554444
+𤼚 413411212251125214251214
+𤼛 413415425113535344511534
+𤼜 4134132511312251214251214
+𤼝 4134132113253415111311534
+𤼞 41341321511254122415334
+𤼟 41341251113425111342511134
+𤼠 41341551353334251214251214
+𤼡 41341323241112132511154444
+𤼢 413412121251251324111213534
+𤼣 4134141112515544445544444544
+𤼤 41341252211342522113425221134
+𤼥 5433455
+𤼦 5433454
+𤼧 543342154
+𤼨 543341234
+𤼩 5433431134
+𤼪 5433454132
+𤼫 5433454135
+𤼬 54334212154
+𤼭 54334251214
+𤼮 54334344315
+𤼯 543342512134
+𤼰 543345152511
+𤼱 121254334354
+𤼲 543345153134
+𤼳 5433412134112
+𤼴 5433412154132
+𤼵 5433451531134
+𤼶 54334125143153
+𤼷 543341251431132
+𤼸 543341251431211
+𤼹 5433425111343134
+𤼺 5433425111343554
+𤼻 54334212134341343452
+𤼼 5433453125143154
+𤼽 325112
+𤼾 325115
+𤼿 3251121
+𤽀 3251152
+𤽁 3251112
+𤽂 32511112
+𤽃 32511322
+𤽄 32511234
+𤽅 32511135
+𤽆 32511212
+𤽇 32511325
+𤽈 325114334
+𤽉 325113553
+𤽊 325111515
+𤽋 325115551
+𤽌 325111252
+𤽍 325113115
+𤽎 325111154
+𤽏 325111535
+𤽐 325112154
+𤽑 325111254
+𤽒 325111322
+𤽓 325112111
+𤽔 325112341
+𤽕 325114135
+𤽖 325111333
+𤽗 32511151
+𤽘 3251113453
+𤽙 3251125121
+𤽚 3251125221
+𤽛 32511353511
+𤽜 3251111234
+𤽝 3251143112
+𤽞 4112132511
+𤽟 3251113432
+𤽠 3434132511
+𤽡 3251133544
+𤽢 3251112121
+𤽣 4543432511
+𤽤 21211532511
+𤽥 32511354251
+𤽦 32511311252
+𤽧 32511122221
+𤽨 32511135415
+𤽩 15313432511
+𤽪 32511325135
+𤽫 32511134111
+𤽬 325111343434
+𤽭 325115434354
+𤽮 325114143112
+𤽯 325111113124
+𤽰 325111234534
+𤽱 325112512134
+𤽲 325112512153
+𤽳 325113222511
+𤽴 325111213521
+𤽵 325111213553
+𤽶 325115133115
+𤽷 32511135534
+𤽸 325115213121
+𤽹 3251132511312
+𤽺 3251151124134
+𤽻 3251113425121
+𤽼 3251132411121
+𤽽 4312243132511
+𤽾 3251121531535
+𤽿 3251134154544
+𤾀 3251111212534
+𤾁 3251132511312
+𤾂 3251144535455
+𤾃 3251143344334
+𤾄 1134251132511
+𤾅 3251121112111
+𤾆 3251132151135
+𤾇 3251132151135
+𤾈 32511451251112
+𤾉 32511251113533
+𤾊 51512112132511
+𤾋 13251135112112
+𤾌 32511253453251
+𤾍 32511325114412
+𤾎 32511325113112
+𤾏 32511325111234
+𤾐 32511111212135
+𤾑 32511143112211
+𤾒 32511251214535
+𤾓 13251112341234
+𤾔 32511122451234
+𤾕 414314143132511
+𤾖 325111311534124
+𤾗 243135325111121
+𤾘 325111325125251
+𤾙 325113415113251
+𤾚 325113251111234
+𤾛 3251112522111234
+𤾜 3251132511454153
+𤾝 3251141312351235
+𤾞 1134251113432511
+𤾟 3251141112513112
+𤾠 3251125125251112
+𤾡 32511344335554444
+𤾢 32511543341251431
+𤾣 32511224314311134
+𤾤 32511454414345252
+𤾥 32511432524312511
+𤾦 32511515121121251
+𤾧 325112243143111234
+𤾨 325111452413434154
+𤾩 132511132511132511
+𤾪 325113251132511134
+𤾫 3251154154132411121
+𤾬 3251112124511353334
+𤾭 3251111215111212511
+𤾮 325111212513234454
+𤾯 3251144112212523434
+𤾰 3251135311345452134
+𤾱 3251144545442522112
+𤾲 3251111213251113412
+𤾳 5111212511325111121
+𤾴 32511121234343434112
+𤾵 3251143252343134132
+𤾶 32511153515352511134
+𤾷 32511121224314311134
+𤾸 32511122344335554444
+𤾹 32511122134343434112
+𤾺 325111121251251251112
+𤾻 3251114524134251251251
+𤾼 3251112123234343434115
+𤾽 325113443252215115452
+𤾾 32511252325115545541234
+𤾿 35421112111132511341534
+𤿀 325113121353121352511134
+𤿁 325112343251123432511234
+𤿂 325111342523434343411214
+𤿃 325113443453444445215124
+𤿄 325115555325115555325115555
+𤿅 32511145241342512512511234341
+𤿆 5325412
+𤿇 5325453
+𤿈 35453254
+𤿉 53254354
+𤿊 11253254
+𤿋 53254123
+𤿌 25153254
+𤿍 53254112
+𤿎 151553254
+𤿏 253453254
+𤿐 113253254
+𤿑 343553254
+𤿒 532542534
+𤿓 343453254
+𤿔 354153254
+𤿕 5151553254
+𤿖 1123453254
+𤿗 5325411234
+𤿘 3525153254
+𤿙 21211553254
+𤿚 2511153254
+𤿛 5325412251
+𤿜 1215453254
+𤿝 2125153254
+𤿞 1225153254
+𤿟 35251153254
+𤿠 12125153254
+𤿡 35135553254
+𤿢 12535153254
+𤿣 25211253254
+𤿤 31431453254
+𤿥 35521153254
+𤿦 53254354354
+𤿧 251111253254
+𤿨 243354153254
+𤿩 312125153254
+𤿪 312511253254
+𤿫 432513553254
+𤿬 532541121132
+𤿭 532541251124
+𤿮 251521153254
+𤿯 352513553254
+𤿰 112113253254
+𤿱 251532253254
+𤿲 112135453254
+𤿳 1251255453254
+𤿴 5112413453254
+𤿵 5454545453254
+𤿶 2512213453254
+𤿷 3532151153254
+𤿸 5325412212511
+𤿹 1214311253254
+𤿺 1221113453254
+𤿻 2111211153254
+𤿼 2432525153254
+𤿽 2534251153254
+𤿾 3251131253254
+𤿿 5211521153254
+𥀀 12143111253254
+𥀁 1213251153254
+𥀂 12112112453254
+𥀃 32513113453254
+𥀄 35133113453254
+𥀅 21135453453254
+𥀆 41341333353254
+𥀇 12254311253254
+𥀈 11232151153254
+𥀉 31234345253254
+𥀊 53254521251152
+𥀋 53254522125121
+𥀌 5325412254251
+𥀍 543541151553254
+𥀎 121451532543554
+𥀏 413434123453254
+𥀐 122511123453254
+𥀑 532545221252511
+𥀒 532542512125121
+𥀓 354532512153254
+𥀔 4135221151553254
+𥀕 2512112211253254
+𥀖 5325425121252511
+𥀗 2511252215453254
+𥀘 5415415325453254
+𥀙 2534345325453254
+𥀚 2511325251153254
+𥀛 5325412512212511
+𥀜 5325425113252511
+𥀝 5325444532132511
+𥀞 4311213521153254
+𥀟 34343434251153254
+𥀠 53254251212511134
+𥀡 54135411515153254
+𥀢 12122251113453254
+𥀣 321134345114553254
+𥀤 532542511252214153
+𥀥 121225113534553254
+𥀦 251135413533353254
+𥀧 542511415432553254
+𥀨 53254251251115151
+𥀩 25125111515153254
+𥀪 532544155432411121
+𥀫 1452413413252253254
+𥀬 1325113541134453254
+𥀭 5325414524134132522
+𥀮 3511555325354153254
+𥀯 53254212125221134534
+𥀰 55525341544544553254
+𥀱 41312211251213453254
+𥀲 53254121252212511134
+𥀳 5325412341222511134
+𥀴 251251134425125153254
+𥀵 215315251212522153254
+𥀶 4125125111221353453254
+𥀷 1212514315325432511312
+𥀸 532541452444412342511
+𥀹 212125255423425121453254
+𥀺 411125155444455444453254
+𥀻 1212514315325413211234534
+𥀼 1212514315325452354131121
+𥀽 12125143153254132112344544534
+𥀾 1212514315325455345115452325251
+𥀿 2522115
+𥁀 5325221
+𥁁 12125221
+𥁂 52125221
+𥁃 41525221
+𥁄 11525221
+𥁅 53125221
+𥁆 152325221
+𥁇 441225221
+𥁈 125425221
+𥁉 552125221
+𥁊 135425221
+𥁋 134125221
+𥁌 341525221
+𥁍 252215134
+𥁎 3511225221
+𥁏 5325125221
+𥁐 5425125221
+𥁑 4543425221
+𥁒 5545325221
+𥁓 1325125221
+𥁔 252213454
+𥁕 2534125221
+𥁖 2513225221
+𥁗 4453525221
+𥁘 1533425221
+𥁙 3252125221
+𥁚 3545325221
+𥁛 5452325221
+𥁜 5152325221
+𥁝 5213425221
+𥁞 51112125221
+𥁟 13542225221
+𥁠 43113425221
+𥁡 44111525221
+𥁢 31343225221
+𥁣 41355325221
+𥁤 44153425221
+𥁥 51551525221
+𥁦 11215425221
+𥁧 34115425221
+𥁨 53152125221
+𥁩 44131525221
+𥁪 54523425221
+𥁫 1115325221
+𥁬 325115425221
+𥁭 441453525221
+𥁮 321313425221
+𥁯 251213425221
+𥁰 253525125221
+𥁱 545213425221
+𥁲 441234325221
+𥁳 441355325221
+𥁴 251353325221
+𥁵 441251225221
+𥁶 121525125221
+𥁷 441345425221
+𥁸 4311345525221
+𥁹 1234123425221
+𥁺 3511453525221
+𥁻 2511453525221
+𥁼 4413515125221
+𥁽 2112345425221
+𥁾 3511134425221
+𥁿 4134125125221
+𥂀 3511351125221
+𥂁 1213125125221
+𥂂 5452335325221
+𥂃 33235415225221
+𥂄 25111321525221
+𥂅 12213451525221
+𥂆 44111153425221
+𥂇 12154252211515
+𥂈 441125112425221
+𥂉 152541353425221
+𥂊 121541215425221
+𥂋 441341123425221
+𥂌 123435425125221
+𥂍 251251134425221
+𥂎 121431125425221
+𥂏 335414135425221
+𥂐 335414134425221
+𥂑 343123433325221
+𥂒 54321511225221
+𥂓 4131235123525221
+𥂔 5415413433325221
+𥂕 1214311235425221
+𥂖 4415112413425221
+𥂗 2535251351125221
+𥂘 1253511453525221
+𥂙 1343241112125221
+𥂚 4143112313425221
+𥂛 5111212512125221
+𥂜 3412512512125221
+𥂝 3443125351125221
+𥂞 3211343451125221
+𥂟 3354143525125221
+𥂠 1251251325125221
+𥂡 4125122525125221
+𥂢 112153313425221
+𥂣 412515215225221
+𥂤 3511225151125221
+𥂥 213541534153425221
+𥂦 41251521313425221
+𥂧 12535111325125221
+𥂨 54154134125125221
+𥂩 122513531125225221
+𥂪 12213511313425221
+𥂫 13541534153425221
+𥂬 41253425251125221
+𥂭 12512531425125221
+𥂮 25431211444425221
+𥂯 1221212511125221
+𥂰 12535111225125221
+𥂱 13443112215425221
+𥂲 34112431215425221
+𥂳 41121125444425221
+𥂴 43125351113425221
+𥂵 44151111233325221
+𥂶 4125522534125221
+𥂷 3121251151525221
+𥂸 123425111353325221
+𥂹 125351113351125221
+𥂺 251135334313425221
+𥂻 3354455135333425221
+𥂼 332455135333425221
+𥂽 344354255454525221
+𥂾 345313251113425221
+𥂿 121235414311225221
+𥃀 412534342554125221
+𥃁 1214311255423425221
+𥃂 4125343412515225221
+𥃃 3535415413433325221
+𥃄 1253511355423425221
+𥃅 3411243125115425221
+𥃆 1251253142522125221
+𥃇 25121251212512125221
+𥃈 21531525344444125221
+𥃉 12512531114543425221
+𥃊 55413443112313425221
+𥃋 34125125221215315151
+𥃌 41431121343423425221
+𥃍 55312143112215425221
+𥃎 55413443112215425221
+𥃏 35412143112215425221
+𥃐 41212534342554125221
+𥃑 33541425221345234354
+𥃒 341124311534153425221
+𥃓 2153152514314451225221
+𥃔 3211253451132151125221
+𥃕 1214521551211215425221
+𥃖 3211321111551151125221
+𥃗 341511541534153425221
+𥃘 321125125151145433425221
+𥃙 43112125221432524312511
+𥃚 414312511335414355425221
+𥃛 335414355425221414312511
+𥃜 321132112413451151125221
+𥃝 321153251511125351125221
+𥃞 51121444425221251135345
+𥃟 1215213355434125125125221
+𥃠 3525121444425114313425221
+𥃡 12512531341251251343425221
+𥃢 352511535352513512512531425221
+𥃣 431121252214311212522143112125221
+𥃤 251115
+𥃥 251115
+𥃦 3425111
+𥃧 2511152
+𥃨 2511124
+𥃩 2511115
+𥃪 2511112
+𥃫 2511154
+𥃬 2511152
+𥃭 1225111
+𥃮 3425111
+𥃯 2511135
+𥃰 4125111
+𥃱 2511134
+𥃲 25111132
+𥃳 25111115
+𥃴 25111512
+𥃵 25111354
+𥃶 25111335
+𥃷 25111124
+𥃸 25111525
+𥃹 25111322
+𥃺 25111135
+𥃻 23425111
+𥃼 25111354
+𥃽 25111121
+𥃾 25111121
+𥃿 25111121
+𥄀 25111215
+𥄁 25111534
+𥄂 12251111
+𥄃 344325111
+𥄄 251113324
+𥄅 251113513
+𥄆 251111554
+𥄇 351525111
+𥄈 413425111
+𥄉 251115555
+𥄊 251111322
+𥄋 251112534
+𥄌 251113512
+𥄍 251113432
+𥄎 251112154
+𥄏 251111254
+𥄐 251114134
+𥄑 251111134
+𥄒 251113215
+𥄓 132425111
+𥄔 251111252
+𥄕 212125111
+𥄖 251113512
+𥄗 251115444
+𥄘 353525111
+𥄙 251111235
+𥄚 251111234
+𥄛 251115452
+𥄜 251115412
+𥄝 251111252
+𥄞 251112554
+𥄟 345325111
+𥄠 251115545
+𥄡 251112512
+𥄢 251111234
+𥄣 251114334
+𥄤 35125111
+𥄥 311525111
+𥄦 251114135
+𥄧 251114444
+𥄨 251115211
+𥄩 251115545
+𥄪 125125111
+𥄫 25111354
+𥄬 251111251
+𥄭 251113112
+𥄮 251113121
+𥄯 251113445
+𥄰 251113211
+𥄱 5153225111
+𥄲 2522125111
+𥄳 252212534
+𥄴 2511144535
+𥄵 2511112354
+𥄶 2511151251
+𥄷 251111515
+𥄸 2511135352
+𥄹 2511135515
+𥄺 2511134112
+𥄻 2511144535
+𥄼 2511133544
+𥄽 1112511154
+𥄾 5221325111
+𥄿 2511151311
+𥅀 2511122534
+𥅁 2511131211
+𥅂 2511132525
+𥅃 2511125111
+𥅄 5315425111
+𥅅 2511111252
+𥅆 2511125211
+𥅇 2511133253
+𥅈 2511141431
+𥅉 3251125111
+𥅊 2511113241
+𥅋 2511112215
+𥅌 2512125111
+𥅍 3415425111
+𥅎 2511134115
+𥅏 2511112511
+𥅐 1535425111
+𥅑 2511125151
+𥅒 2511131252
+𥅓 2511131525
+𥅔 2511132121
+𥅕 3351125111
+𥅖 2511141121
+𥅗 2511153254
+𥅘 2511135234
+𥅙 2511112534
+𥅚 25111134115
+𥅛 25111131534
+𥅜 25111131534
+𥅝 11311225111
+𥅞 25111112154
+𥅟 25111413434
+𥅠 25111331251
+𥅡 25111132522
+𥅢 25111345254
+𥅣 25111513121
+𥅤 12125511534
+𥅥 25111445531
+𥅦 25111311234
+𥅧 25111325221
+𥅨 25111125111
+𥅩 25111321534
+𥅪 25111523134
+𥅫 25221535353
+𥅬 25111351154
+𥅭 25111112511
+𥅮 13542225111
+𥅯 25111113534
+𥅰 12125111534
+𥅱 52321325111
+𥅲 25111311234
+𥅳 25111113112
+𥅴 25111143134
+𥅵 21213425111
+𥅶 21251111132
+𥅷 23434125111
+𥅸 25111312121
+𥅹 25111354252
+𥅺 25111355215
+𥅻 25111415435
+𥅼 25111431234
+𥅽 34125125111
+𥅾 25111413121
+𥅿 25111121354
+𥆀 25111441121
+𥆁 25111135422
+𥆂 25111323121
+𥆃 25111531251
+𥆄 25111243135
+𥆅 12125125111
+𥆆 25111154325
+𥆇 12213425111
+𥆈 25111122115
+𥆉 25111323554
+𥆊 25111212154
+𥆋 251111353334
+𥆌 251113535112
+𥆍 251111221115
+𥆎 251115544445
+𥆏 25111135534
+𥆐 251111251251
+𥆑 25111312154
+𥆒 251113251135
+𥆓 251113225112
+𥆔 251111213521
+𥆕 412514525111
+𥆖 251111251431
+𥆗 134251112154
+𥆘 251112511134
+𥆙 251111353334
+𥆚 251114411121
+𥆛 332355425111
+𥆜 2511133241121
+𥆝 441234325111
+𥆞 2522121325221
+𥆟 251114325135
+𥆠 251113515251
+𥆡 251113415251
+𥆢 251112511135
+𥆣 251112511154
+𥆤 251121125111
+𥆥 251111212134
+𥆦 251111351121
+𥆧 251114251121
+𥆨 251114154325
+𥆩 251112251135
+𥆪 251111234251
+𥆫 251112511234
+𥆬 251113443521
+𥆭 251111211134
+𥆮 251111212115
+𥆯 251111535121
+𥆰 251112511325
+𥆱 251112523445
+𥆲 251113533252
+𥆳 413442425111
+𥆴 134412425111
+𥆵 251114334132
+𥆶 251113443112
+𥆷 251115114554
+𥆸 251115315134
+𥆹 25111252354
+𥆺 251111253511
+𥆻 251112513251
+𥆼 251112511211
+𥆽 251112513445
+𥆾 251115344544
+𥆿 251111241344
+𥇀 25111122415
+𥇁 251113241121
+𥇂 251112515322
+𥇃 251113534334
+𥇄 251115425111
+𥇅 352513525111
+𥇆 251114312345
+𥇇 251114412343
+𥇈 251112515251
+𥇉 2511143112135
+𥇊 2511125111515
+𥇋 2511141525111
+𥇌 2511135321511
+𥇍 2511121251112
+𥇎 2511151531234
+𥇏 2511125114334
+𥇐 251113312454
+𥇑 2511112523434
+𥇒 2511141431531
+𥇓 2511144512134
+𥇔 2511112111534
+𥇕 2511131125222
+𥇖 3111211125111
+𥇗 2511151325121
+𥇘 2511125312341
+𥇙 1251153425111
+𥇚 2511113412512
+𥇛 1251112511134
+𥇜 2511141251521
+𥇝 2511113443112
+𥇞 2511121251121
+𥇟 2511141343453
+𥇠 3542511125111
+𥇡 2522113443112
+𥇢 2511115123312
+𥇣 2511151352252
+𥇤 2511151325121
+𥇥 2511134125134
+𥇦 2511112343312
+𥇧 2511113411234
+𥇨 2153433425111
+𥇩 2511132151115
+𥇪 2511131112111
+𥇫 251114312534
+𥇬 2511125111234
+𥇭 2511131134251
+𥇮 3434221325111
+𥇯 2511135333533
+𥇰 2511135334544
+𥇱 2511141541234
+𥇲 4415325425111
+𥇳 2511151145252
+𥇴 2511152133312
+𥇵 2511151312152
+𥇶 2511134112431
+𥇷 2511125213251
+𥇸 2511132121252
+𥇹 2511125111124
+𥇺 2511152131344
+𥇻 2511144525121
+𥇼 2511113251132
+𥇽 3443521525111
+𥇾 2511131153115
+𥇿 2511112511534
+𥈀 2511125111134
+𥈁 251113552454
+𥈂 2511152251541
+𥈃 25111445343454
+𥈄 12213451525111
+𥈅 25111132522111
+𥈆 25111251125111
+𥈇 25111132522134
+𥈈 25111352514444
+𥈉 25111352534134
+𥈊 25111112321511
+𥈋 25111325125214
+𥈌 25111322354333
+𥈍 25111251113354
+𥈎 25111251135345
+𥈏 25111251113134
+𥈐 251112121151234
+𥈑 25111351331134
+𥈒 25111554554132
+𥈓 25111251225251
+𥈔 25111125115315
+𥈕 25111351525221
+𥈖 25111134431112
+𥈗 25111132511134
+𥈘 25111412511234
+𥈙 25111125123422
+𥈚 2511141334454
+𥈛 25111413425111
+𥈜 122511125111134
+𥈝 25111353344544
+𥈞 25111122125252
+𥈟 25111445433454
+𥈠 21531343425111
+𥈡 25111123411234
+𥈢 25111431121134
+𥈣 25111121212511
+𥈤 25111215112134
+𥈥 25111442511534
+𥈦 25111344325211
+𥈧 25111311325111
+𥈨 25111321113554
+𥈩 25111122134515
+𥈪 25111251111132
+𥈫 25111251111354
+𥈬 25111251125214
+𥈭 25111251251115
+𥈮 25111252214153
+𥈯 25111322511211
+𥈰 25111441122134
+𥈱 25111535425221
+𥈲 25111355114544
+𥈳 25111445341344
+𥈴 25111215315151
+𥈵 25111125431234
+𥈶 25111122543112
+𥈷 12451123425111
+𥈸 12511125111234
+𥈹 25111445341523
+𥈺 25111344322511
+𥈻 25111122134121
+𥈼 335414355425111
+𥈽 445112213425111
+𥈾 251114453525111
+𥈿 251111212511134
+𥉀 251112522123344
+𥉁 251112511113432
+𥉂 251111212415325
+𥉃 543541151525111
+𥉄 251112512453541
+𥉅 251111251254312
+𥉆 211112345425111
+𥉇 251111122125211
+𥉈 251113223543541
+𥉉 251113223541234
+𥉊 251111211254444
+𥉋 2511143113424134
+𥉌 251111212341251
+𥉍 251115231251214
+𥉎 251113322511135
+𥉏 122511123425111
+𥉐 251113443554134
+𥉑 251114532411121
+𥉒 251113251111234
+𥉓 251114543425221
+𥉔 122111433425111
+𥉕 251114511353334
+𥉖 251111211214544
+𥉗 251115415413115
+𥉘 251113321531535
+𥉙 251111213152511
+𥉚 251113234343434
+𥉛 251114452511531
+𥉜 251111113431234
+𥉝 251115515515121
+𥉞 251112522125111
+𥉟 251113354143554
+𥉠 545233545325111
+𥉡 251114453434354
+𥉢 2511112155121121
+𥉣 251114143454153
+𥉤 251114334511534
+𥉥 25111431523454
+𥉦 251115151525111
+𥉧 251115154151541
+𥉨 251113332511135
+𥉩 414312511525111
+𥉪 251114413455414
+𥉫 251114143125115
+𥉬 251111354224444
+𥉭 251111213312251
+𥉮 251114315233511
+𥉯 251111234121121
+𥉰 251113443321511
+𥉱 251111343215115
+𥉲 251115131221534
+𥉳 251113545325121
+𥉴 2511144545434252
+𥉵 4131235123525111
+𥉶 2511141352211515
+𥉷 2511113211234534
+𥉸 2511112512554121
+𥉹 2511125121554234
+𥉺 2511144535154121
+𥉻 2511135415411234
+𥉼 2511132511151234
+𥉽 2511141351124134
+𥉾 2511154154134333
+𥉿 2511113242511135
+𥊀 2511154545434333
+𥊁 2511144512211154
+𥊂 2511133221212134
+𥊃 3434252214525111
+𥊄 2121252213525111
+𥊅 2511125213121121
+𥊆 2511141315112134
+𥊇 125125311125111
+𥊈 2511131234221234
+𥊉 2511144534341251
+𥊊 2511112122343412
+𥊋 2511134432511135
+𥊌 2511155525111234
+𥊍 1214311235425111
+𥊎 2511111134321511
+𥊏 2511112133525111
+𥊐 2511125111445521
+𥊑 2511125112522154
+𥊒 251113541112454
+𥊓 2511141431331121
+𥊔 2511141432534251
+𥊕 2511132221543541
+𥊖 2511112132411121
+𥊗 2511144143344334
+𥊘 2511144513412512
+𥊙 2511132534134354
+𥊚 2511141312341234
+𥊛 2511141535111121
+𥊜 2511141112515134
+𥊝 2511112143112354
+𥊞 2511125125115341
+𥊟 5213251115344544
+𥊠 2511125244511234
+𥊡 2511112511123534
+𥊢 1225111124325251
+𥊣 2432525112251111
+𥊤 2511133225111124
+𥊥 251115235321511
+𥊦 251115452335453
+𥊧 1215213355425111
+𥊨 1234112345425111
+𥊩 251111251112454
+𥊪 25111344335554444
+𥊫 2511155212511134
+𥊬 25111251122111534
+𥊭 25111431253511124
+𥊮 25111511121251211
+𥊯 25111111253554234
+𥊰 25111243452512134
+𥊱 2511113553425221
+𥊲 25111243452511234
+𥊳 25111431121431251
+𥊴 25111251112211154
+𥊵 2511151124134454
+𥊶 25111354113444444
+𥊷 25431211134425111
+𥊸 25111132522114544
+𥊹 413323241112125111
+𥊺 25111511225111234
+𥊻 25111545454554234
+𥊼 25111243452511523
+𥊽 25221241344351523
+𥊾 12125111132511134
+𥊿 25111251112522154
+𥋀 2511115121351154
+𥋁 25111251114525115
+𥋂 25111352522134354
+𥋃 25111132522132522
+𥋄 25111125221114334
+𥋅 25121425121425111
+𥋆 25111412515213134
+𥋇 25111243452513112
+𥋈 12112112113525111
+𥋉 25111541541122111
+𥋊 25111313425125251
+𥋋 25111113411342511
+𥋌 25111122125113134
+𥋍 25111334343434121
+𥋎 25111343421325111
+𥋏 25111414312511534
+𥋐 25111441234325111
+𥋑 25111532514143112
+𥋒 25111311342512511
+𥋓 25111251141251234
+𥋔 25111252111213134
+𥋕 25111441353425221
+𥋖 2511121531522431
+𥋗 2511143252343134
+𥋘 251113143142432511
+𥋙 251112243143111234
+𥋚 212125221153425111
+𥋛 251112522135251214
+𥋜 521325111445353454
+𥋝 25111251251115151
+𥋞 251111452444434454
+𥋟 251114311213121534
+𥋠 251111252211123422
+𥋡 251112511145515515
+𥋢 251111251112511134
+𥋣 251111252212511134
+𥋤 243452511221125111
+𥋥 251112511135251354
+𥋦 251114135221545435
+𥋧 251113551131344444
+𥋨 251114135221151535
+𥋩 445134342515425111
+𥋪 332252135313425111
+𥋫 251112511144512134
+𥋬 251112511145352525
+𥋭 251112522113443112
+𥋮 251113543344111251
+𥋯 251113541544111251
+𥋰 25111445132151134
+𥋱 251114454543425221
+𥋲 251114134315112234
+𥋳 251112523251213554
+𥋴 251111234123411234
+𥋵 251114143125113534
+𥋶 251114125251131234
+𥋷 25111122441354251
+𥋸 251111452444425121
+𥋹 251111242511151515
+𥋺 251114453443321511
+𥋻 251112534342511134
+𥋼 25111344134522554
+𥋽 251112522121251112
+𥋾 25111122312511211
+𥋿 2511112132341213234
+𥌀 2511144535415411234
+𥌁 2511125115545544444
+𥌂 2511125111445354153
+𥌃 2511113425234343434
+𥌄 2145125111345425111
+𥌅 1325113541134425111
+𥌆 2511112151211251124
+𥌇 2511131122221354152
+𥌈 2511112512531125221
+𥌉 2511134125125125122
+𥌊 4143113251114143112
+𥌋 2511121212522145354
+𥌌 2511143344334354152
+𥌍 2511141343241112154
+𥌎 2511114524134132522
+𥌏 5213251114525114134
+𥌐 2511135453251214544
+𥌑 2511121451343425111
+𥌒 1212514315325425111
+𥌓 251112522112132511
+𥌔 2511135252212511134
+𥌕 1221251125325425111
+𥌖 2511125111251113533
+𥌗 2511132511145352525
+𥌘 2511143135333425111
+𥌙 5213251114131251112
+𥌚 25111121252212511134
+𥌛 25111312343533424134
+𥌜 25111413522115154444
+𥌝 25111321155451114334
+𥌞 25111123434341234134
+𥌟 21131134341123425111
+𥌠 25111215315251214544
+𥌡 25111252211212513534
+𥌢 25111445134432511234
+𥌣 25111325112523554234
+𥌤 25111351123451124134
+𥌥 25111411125125111234
+𥌦 25111113411341251112
+𥌧 25111352512144442511
+𥌨 25111431234132511134
+𥌩 25111332132522114544
+𥌪 25111122511125111134
+𥌫 25111314314551353334
+𥌬 25111413251121134121
+𥌭 251112511152343554234
+𥌮 251111331234312342121
+𥌯 25111212125221451554
+𥌰 25111251212511134454
+𥌱 212125221452511151515
+𥌲 251114125125112121112
+𥌳 251113121353121352511
+𥌴 251114334433445251214
+𥌵 122125134431212511135
+𥌶 251113211511342511134
+𥌷 251114451121252214544
+𥌸 251115112251135321511
+𥌹 251113411243132511252
+𥌺 2511134125125125125122
+𥌻 2511151122511125431234
+𥌼 2511114524134251251251
+𥌽 2511125111342511134531
+𥌾 2511141332324111214544
+𥌿 2511112341123451124134
+𥍀 2511134341211121111534
+𥍁 32515121215114525225111
+𥍂 251111221251211154444
+𥍃 2511125125121432411121
+𥍄 2511124313544512425111
+𥍅 3411213412213425111112
+𥍆 2511141112514334433454
+𥍇 251111222522145135435
+𥍈 2511125111122251125214
+𥍉 25111122111122111122111
+𥍊 21212512513241112125111
+𥍋 25111252324111212535251
+𥍌 25111321132534151114334
+𥍍 2511112212512531425221
+𥍎 25111251125214132511134
+𥍏 251114111251433443344334
+𥍐 25111122325115545541234
+𥍑 251111251112313425125251
+𥍒 251113143141312515344544
+𥍓 2511125125113121221113134
+𥍔 25111251212512125121554234
+𥍕 25111243135145241342433541
+𥍖 25111125125314252212511135
+𥍗 25111212534444412511251522
+𥍘 2511134451154121121121135
+𥍙 251111234251111234251111234
+𥍚 251114111251554444554444354
+𥍛 251112522512511351221113134
+𥍜 2511112225111251113241112154
+𥍝 545231
+𥍞 54523534
+𥍟 545233554
+𥍠 545233515
+𥍡 5452332511
+𥍢 5452331525
+𥍣 5452325115
+𥍤 5452354523
+𥍥 5452313534
+𥍦 5452331252
+𥍧 54523555354
+𥍨 54523351355
+𥍩 54523251251
+𥍪 545233443533
+𥍫 545234511534
+𥍬 545235435354
+𥍭 545231213312
+𥍮 545233541112
+𥍯 545235114554
+𥍰 545231212354
+𥍱 545233121251
+𥍲 5452312342534
+𥍳 5452312345211
+𥍴 5452325113533
+𥍵 5452334154544
+𥍶 54523351331134
+𥍷 54523353344544
+𥍸 54523415331525
+𥍹 5452351111254
+𥍺 54523345235354
+𥍻 54523125115315
+𥍼 54523121225134
+𥍽 54523312511211
+𥍾 54523151532511
+𥍿 54523331225111
+𥎀 54523132511134
+𥎁 54523123421251
+𥎂 545231212122111
+𥎃 545233115431234
+𥎄 545233415113251
+𥎅 545232522123344
+𥎆 545234453121251
+𥎇 545232122511345
+𥎈 545233541253511
+𥎉 545233542511134
+𥎊 5452312212511121
+𥎋 5452332535414544
+𥎌 545233541112454
+𥎍 5452311212511134
+𥎎 545233535112533112
+𥎏 54523343434342511
+𥎐 54523253525152252
+𥎑 54523153515352511
+𥎒 54523251135114544
+𥎓 545232512211251431
+𥎔 545231353334251214
+𥎕 545232535251134534
+𥎖 5452313425234343434
+𥎗 545233211152511134
+𥎘 5452314524134132522
+𥎙 5452325121454425111
+𥎚 5452312212513443121
+𥎛 5452312512125111345
+𥎜 5452325352512341134
+𥎝 545233121353121352534
+𥎞 54523113411342511134
+𥎟 54523313441431251112
+𥎠 54523352522135251214
+𥎡 54523251112511132411121
+𥎢 54523123445123412344444
+𥎣 54523445343215115445445
+𥎤 54523321125125151145123412341344334
+𥎥 5452341321125125151145123412341344334
+𥎦 1331134
+𥎧 3113412
+𥎨 12131134
+𥎩 212131134
+𥎪 311343134
+𥎫 535331134
+𥎬 311341515
+𥎭 311342511
+𥎮 311343354
+𥎯 311343534
+𥎰 3113412154
+𥎱 3113413344
+𥎲 5131134215
+𥎳 3113455414
+𥎴 3113425121
+𥎵 3113412512
+𥎶 3113425111
+𥎷 3113432511
+𥎸 3113441554
+𥎹 31134154121
+𥎺 31134341534
+𥎻 33541431134
+𥎼 21211331134
+𥎽 31134252134
+𥎾 31134351355
+𥎿 31134251112
+𥏀 34343431134
+𥏁 31134212115
+𥏂 34341331134
+𥏃 31134251115
+𥏄 31134132511
+𥏅 31134251112
+𥏆 31134325111
+𥏇 43113431134
+𥏈 35155431134
+𥏉 41151531134
+𥏊 31134541541
+𥏋 31213531134
+𥏌 31134312135
+𥏍 31134354251
+𥏎 31134312154
+𥏏 131134525154
+𥏐 311343123435
+𥏑 153113454354
+𥏒 311341251251
+𥏓 311342511132
+𥏔 311344143112
+𥏕 311344451354
+𥏖 311345431134
+𥏗 311343123453
+𥏘 3113451352252
+𥏙 3113443113455
+𥏚 1531134511252
+𥏛 4143131134534
+𥏜 3113413412512
+𥏝 3113412155121
+𥏞 3113454545454
+𥏟 311344325234
+𥏠 3113432511312
+𥏡 3113441431531
+𥏢 3113413443112
+𥏣 3113413443112
+𥏤 3113413443115
+𥏥 3113421251112
+𥏦 3113425111115
+𥏧 3113425134121
+𥏨 3113435121251
+𥏩 3113451533544
+𥏪 31134151532511
+𥏫 31134251113533
+𥏬 25111353331134
+𥏭 31134122151234
+𥏮 31134414312511
+𥏯 31134251251112
+𥏰 51131213113435
+𥏱 31134312511211
+𥏲 311343415113251
+𥏳 134342345431134
+𥏴 311342511221115
+𥏵 311343535225121
+𥏶 153113431234531
+𥏷 121325111531134
+𥏸 311342521251431
+𥏹 311344125125251
+𥏺 31134431113121
+𥏻 3113431251113533
+𥏼 3113425132511115
+𥏽 3113421531534312
+𥏾 3113425132121115
+𥏿 3113451122511251
+𥐀 31134122111343312
+𥐁 31134224314311134
+𥐂 21131134251125214
+𥐃 31134212151211115
+𥐄 43122431251131134
+𥐅 31134431224312511
+𥐆 31134125143143112
+𥐇 311341251431511534
+𥐈 311344312345313134
+𥐉 511534311341251431
+𥐊 311343251141533134
+𥐋 31134125143112234
+𥐌 3113441432533543211
+𥐍 3113412514311251431
+𥐎 3113414524444132522
+𥐏 3113412514315135251
+𥐐 31134125143141342513534
+𥐑 3113425111342511134531
+𥐒 311341251431255452511
+𥐓 31134212125125132411121
+𥐔 31134125143151122511251
+𥐕 132515
+𥐖 131251
+𥐗 1325155
+𥐘 1311251
+𥐙 1325135
+𥐚 1325124
+𥐛 1325153
+𥐜 1325135
+𥐝 13251354
+𥐞 13251415
+𥐟 13251434
+𥐠 13251354
+𥐡 13251112
+𥐢 13251252
+𥐣 13251322
+𥐤 13251345
+𥐥 13251335
+𥐦 13251515
+𥐧 13251132
+𥐨 13251525
+𥐩 132513511
+𥐪 132511354
+𥐫 132513121
+𥐬 132513115
+𥐭 132513112
+𥐮 132515134
+𥐯 132511154
+𥐰 132511345
+𥐱 132514535
+𥐲 132513354
+𥐳 132511251
+𥐴 132511324
+𥐵 132511355
+𥐶 132511354
+𥐷 132513534
+𥐸 132515435
+𥐹 132511132
+𥐺 132511554
+𥐻 132512534
+𥐼 132512554
+𥐽 132513115
+𥐾 132513554
+𥐿 132514412
+𥑀 132514535
+𥑁 132515215
+𥑂 132512154
+𥑃 132514124
+𥑄 132511215
+𥑅 132513135
+𥑆 1325153251
+𥑇 1325131134
+𥑈 1325141312
+𥑉 132513355
+𥑊 1325151354
+𥑋 1325154121
+𥑌 1325153154
+𥑍 1325143112
+𥑎 1325125251
+𥑏 1325125134
+𥑐 1325125112
+𥑑 1325155453
+𥑒 1325134234
+𥑓 1325152235
+𥑔 1325133544
+𥑕 1325113544
+𥑖 1325145434
+𥑗 1325115541
+𥑘 1325111234
+𥑙 1215313251
+𥑚 1325132534
+𥑛 1325113251
+𥑜 1325113241
+𥑝 1325152534
+𥑞 1325125134
+𥑟 1214513251
+𥑠 1325112211
+𥑡 1325112344
+𥑢 1325113252
+𥑣 1325113554
+𥑤 1325125121
+𥑥 1325131121
+𥑦 3112113251
+𥑧 3212413251
+𥑨 1325132534
+𥑩 1325132554
+𥑪 1325135345
+𥑫 1325144534
+𥑬 1325135351
+𥑭 132511515
+𥑮 1325112251
+𥑯 13251445255
+𥑰 1325113121
+𥑱 1215313251
+𥑲 1325125111
+𥑳 13251113534
+𥑴 13251413534
+𥑵 13251325151
+𥑶 13251311234
+𥑷 13251251134
+𥑸 13251335414
+𥑹 13251134115
+𥑺 13251431523
+𥑻 13251312135
+𥑼 32153413251
+𥑽 13251335215
+𥑾 1325112132
+𥑿 13251133511
+𥒀 13251441112
+𥒁 13251434242
+𥒂 13251135422
+𥒃 13251121525
+𥒄 13251431234
+𥒅 13251125134
+𥒆 13251431134
+𥒇 13251445531
+𥒈 13251445315
+𥒉 13251541541
+𥒊 13251354251
+𥒋 13251311252
+𥒌 13251325221
+𥒍 13251355215
+𥒎 13251111534
+𥒏 13251251134
+𥒐 12112113251
+𥒑 13251131121
+𥒒 13251132121
+𥒓 13251154121
+𥒔 13251212154
+𥒕 13251325111
+𥒖 13251331251
+𥒗 13251344354
+𥒘 13251352511
+𥒙 13251353354
+𥒚 13251353452
+𥒛 13251354154
+𥒜 13251412534
+𥒝 13251415435
+𥒞 13251431112
+𥒟 44151513251
+𥒠 51112113251
+𥒡 13251525341
+𥒢 13251535353
+𥒣 13251541354
+𥒤 13251555252
+𥒥 13251354354
+𥒦 13251121525
+𥒧 13251542134
+𥒨 13251342444
+𥒩 13251241234
+𥒪 132514453112
+𥒫 132513443521
+𥒬 132514451234
+𥒭 132512512134
+𥒮 132515133115
+𥒯 123413251121
+𥒰 132511251124
+𥒱 132511132333
+𥒲 132515431134
+𥒳 445132514135
+𥒴 132511212345
+𥒵 132512515215
+𥒶 132513554234
+𥒷 13251111352
+𥒸 132511241344
+𥒹 132514131214
+𥒺 132511214544
+𥒻 132512515322
+𥒼 132512121233
+𥒽 121511313251
+𥒾 132511251251
+𥒿 132512121153
+𥓀 132512511135
+𥓁 132513253541
+𥓂 132513445251
+𥓃 132513541234
+𥓄 132512511211
+𥓅 132512513251
+𥓆 132515413251
+𥓇 354212113251
+𥓈 132511212212
+𥓉 13251135534
+𥓊 1234331213251
+𥓋 1325132151135
+𥓌 1325143112135
+𥓍 2112345413251
+𥓎 1325135131344
+𥓏 1325151124134
+𥓐 1325115112134
+𥓑 1325134123422
+𥓒 1325135321511
+𥓓 1325125121412
+𥓔 1325131234531
+𥓕 1325134433121
+𥓖 1325125111234
+𥓗 1325154545411
+𥓘 1325125113533
+𥓙 1234123413251
+𥓚 1325121531535
+𥓛 1325111554534
+𥓜 1325113434234
+𥓝 1325112511234
+𥓞 1325152413452
+𥓟 1325112512525
+𥓠 1325112512534
+𥓡 1325124325251
+𥓢 1325121212134
+𥓣 1325125114535
+𥓤 1325125235515
+𥓥 1325125112511
+𥓦 1325132151125
+𥓧 3121311213251
+𥓨 1325111323112
+𥓩 1325112113251
+𥓪 1325112134121
+𥓫 1325115412122
+𥓬 1541212213251
+𥓭 1325132515112
+𥓮 1325135311252
+𥓯 1325141354153
+𥓰 1325144534515
+𥓱 1325155512121
+𥓲 1325155525121
+𥓳 1325133253254
+𥓴 1325141533134
+𥓵 1325141335154
+𥓶 1325135425121
+𥓷 1325141351134
+𥓸 1325145234333
+𥓹 1325113231134
+𥓺 54523313413251
+𥓻 13251345234354
+𥓼 1325115151234
+𥓽 132512121151234
+𥓾 13251312321511
+𥓿 13251131213541
+𥔀 13251354111251
+𥔁 13251125125121
+𥔂 13251442125441
+𥔃 13251131531534
+𥔄 13251321511121
+𥔅 13251251213432
+𥔆 13251253434341
+𥔇 13251134354251
+𥔈 13251134143112
+𥔉 13251445343454
+𥔊 13251515154121
+𥔋 13251251125221
+𥔌 13251125115315
+𥔍 13251312344334
+𥔎 13251414312512
+𥔏 11212512113251
+𥔐 13251134425221
+𥔑 13251445433454
+𥔒 13251451135124
+𥔓 13251122513511
+𥔔 13251513431234
+𥔕 13251132514444
+𥔖 13251125221531
+𥔗 13251252132522
+𥔘 13251251125214
+𥔙 1325112235455
+𥔚 13251341251112
+𥔛 13251344311354
+𥔜 13251312342511
+𥔝 13251312511234
+𥔞 13251345325221
+𥔟 13251325111234
+𥔠 13251333534251
+𥔡 13251312342511
+𥔢 13251321151134
+𥔣 13251431121531
+𥔤 13251513122134
+𥔥 13251555253541
+𥔦 13251132425221
+𥔧 13251312511211
+𥔨 13251253413251
+𥔩 13251353413251
+𥔪 13251545454322
+𥔫 13251112121234
+𥔬 13251521251152
+𥔭 132512432511134
+𥔮 132512153154134
+𥔯 132512525114554
+𥔰 132513443533354
+𥔱 132513513541541
+𥔲 13251251251115
+𥔳 121451132513554
+𥔴 132513112113251
+𥔵 132511212554554
+𥔶 132514311213554
+𥔷 132514131221252
+𥔸 132511221342444
+𥔹 132511325111354
+𥔺 132513443451254
+𥔻 45242511213251
+𥔼 121451355413251
+𥔽 13251122341251
+𥔾 13251122415325
+𥔿 132513443321511
+𥕀 132513454541541
+𥕁 132514134122111
+𥕂 132514134342511
+𥕃 132515454544444
+𥕄 132511212511211
+𥕅 132514453425111
+𥕆 132513123431234
+𥕇 132511252253415
+𥕈 13251331354454
+𥕉 132511312212511
+𥕊 13251122134132
+𥕋 132513211511254
+𥕌 1325112511123312
+𥕍 1325125112512531
+𥕎 1325141351124134
+𥕏 1325125125115341
+𥕐 1325141432512251
+𥕑 1325121531525111
+𥕒 1325141312212511
+𥕓 1325112122511134
+𥕔 1325135344111251
+𥕕 1325121531534312
+𥕖 132514125152152
+𥕗 2121252214513251
+𥕘 1325155525111234
+𥕙 1342513112113251
+𥕚 1325143344334354
+𥕛 1325112211134121
+𥕜 132511224451135
+𥕝 1325143123413251
+𥕞 1325141431251112
+𥕟 1325151314524444
+𥕠 1325113251125115
+𥕡 1325112211135352
+𥕢 1325112512212511
+𥕣 1325133225111124
+𥕤 1325143112125221
+𥕥 1325112512512515
+𥕦 1325141342513534
+𥕧 1325112213545252
+𥕨 1325152134251214
+𥕩 1325112125412134
+𥕪 1325112121134521
+𥕫 1325133212511134
+𥕬 1325134433112121
+𥕭 3211343451113251
+𥕮 132514134522554
+𥕯 1325144532132511
+𥕰 13251215315225211
+𥕱 13251121251431333
+𥕲 13251134315233534
+𥕳 13431523353413251
+𥕴 13251134432511234
+𥕵 13251121221113134
+𥕶 13251122111343312
+𥕷 13251132522132522
+𥕸 13251251112211154
+𥕹 13251311531153115
+𥕺 13251545454342444
+𥕻 13251311222214444
+𥕼 1325134151253511
+𥕽 12125143133313251
+𥕾 13251121213425234
+𥕿 34312342512113251
+𥖀 13251121222511134
+𥖁 13251431253511124
+𥖂 13251413522151354
+𥖃 13251431554554531
+𥖄 13251431121113534
+𥖅 13251145241341154
+𥖆 13251511225111132
+𥖇 13251511121251124
+𥖈 13251121243112135
+𥖉 13251251141251234
+𥖊 13251251132522111
+𥖋 13251212121212121
+𥖌 13251334343434121
+𥖍 44112512342213251
+𥖎 12343434123413251
+𥖏 1325155212511134
+𥖐 1325152431353334
+𥖑 51331151325153254
+𥖒 13251442352511521
+𥖓 13251532542513251
+𥖔 13251123415341534
+𥖕 25132511325153254
+𥖖 13251532541215215
+𥖗 121251431355413251
+𥖘 132511221113551534
+𥖙 132512511221111534
+𥖚 132514453551352252
+𥖛 132511212121325114
+𥖜 132511234123411234
+𥖝 132514134315112234
+𥖞 344353351153413251
+𥖟 132511452413434454
+𥖠 132512522135251214
+𥖡 55332511155213251
+𥖢 132511212122151234
+𥖣 132511212251125214
+𥖤 13251251225251454
+𥖥 123435412344513251
+𥖦 132513443454544354
+𥖧 132513532511154444
+𥖨 132512512512511234
+𥖩 132513412524312511
+𥖪 1325121213241112154
+𥖫 1212514315325413251
+𥖬 1325141121125444435
+𥖭 1325141432533543211
+𥖮 1325154154141343412
+𥖯 1234343412344513251
+𥖰 1325112124125125251
+𥖱 1325125241221125251
+𥖲 1325112151211251124
+𥖳 1251112251355413251
+𥖴 1325134343434311252
+𥖵 1325134431215114544
+𥖶 1325144552132511134
+𥖷 1325135131535121251
+𥖸 123432511355413251
+𥖹 3411243125125113251
+𥖺 1325153254431121134
+𥖻 13251251125125313134
+𥖼 13251215315251214544
+𥖽 13251445321511354444
+𥖾 1325141432512251454
+𥖿 13251121252212511134
+𥗀 13251121254154134333
+𥗁 1325131431412132511
+𥗂 13251413123512353112
+𥗃 13251132512512511211
+𥗄 13251125125125153534
+𥗅 13251122511121251431
+𥗆 13251352512144442511
+𥗇 13251113411341251112
+𥗈 13251123412342512134
+𥗉 13251132511325113251
+𥗊 13251212134341343452
+𥗋 13251251112213424134
+𥗌 13251215315135333422
+𥗍 13251312343533424134
+𥗎 13251312341354352511
+𥗏 13251433443344511214
+𥗐 13251132511325113251
+𥗑 32112512515114513251
+𥗒 132514143112342511135
+𥗓 132511251234532511134
+𥗔 13251122441251113533
+𥗕 132511221251211354444
+𥗖 132513143141211254444
+𥗗 132511211254444413534
+𥗘 132511234123412343112
+𥗙 132513211343451145521
+𥗚 121521335544543413251
+𥗛 341124311534153413251
+𥗜 132512512512511121534
+𥗝 1325141251251112213534
+𥗞 1325143344334452513251
+𥗟 1325125111221344111251
+𥗠 1325113121225112521453
+𥗡 1325141332324111214544
+𥗢 1325122431431121113534
+𥗣 1214512514315325413251
+𥗤 1251245132511325113251
+𥗥 1325131431425221134534
+𥗦 1325134112431312511211
+𥗧 4125145132511325113251
+𥗨 132511222511112213534
+𥗩 1325112511125235543112
+𥗪 1325112121251211251211
+𥗫 13251251112511132411121
+𥗬 13251251212512125121121
+𥗭 13251413434123432411121
+𥗮 13251511225114315233534
+𥗯 1325141553324111211554
+𥗰 13251321125545111311534
+𥗱 41343412343241112113251
+𥗲 13251513251414311213251
+𥗳 13251445354251132511134
+𥗴 132512522155444432411121
+𥗵 13251321115251113413251
+𥗶 31234251132511355413251
+𥗷 132515131211211211213534
+𥗸 132513211325345111311534
+𥗹 132511223525121444431234
+𥗺 1325112251122511125431234
+𥗻 1325132111525111344111251
+𥗼 13251251212512125121554234
+𥗽 13251125125314252212511135
+𥗾 132511251245251251112213534
+𥗿 132512522522155444432411121
+𥘀 132512511445251251112213534
+𥘁 1325112122522155444432411121
+𥘂 1325141112515544445544443134
+𥘃 13251145241342512512511234341
+𥘄 1325112343112521234453444445215333
+𥘅 1235
+𥘆 45245
+𥘇 452435
+𥘈 1511234
+𥘉 452453
+𥘊 452452
+𥘋 452453
+𥘌 452435
+𥘍 4524534
+𥘎 4524333
+𥘏 4524112
+𥘐 15111234
+𥘑 4524124
+𥘒 4524154
+𥘓 4524544
+𥘔 4524123
+𥘕 45241132
+𥘖 112343534
+𥘗 45242511
+𥘘 45243541
+𥘙 45244334
+𥘚 45244544
+𥘛 45241121
+𥘜 4524354
+𥘝 45242534
+𥘞 45243415
+𥘟 45241154
+𥘠 45241221
+𥘡 45241551
+𥘢 45241554
+𥘣 212111234
+𥘤 45242343
+𥘥 45243132
+𥘦 112343134
+𥘧 45243512
+𥘨 45243533
+𥘩 45243541
+𥘪 45243112
+𥘫 452412512
+𥘬 452451532
+𥘭 452441121
+𥘮 452435251
+𥘯 452411234
+𥘰 452425151
+𥘱 123225135
+𥘲 123225111
+𥘳 45241554
+𥘴 452414312
+𥘵 45242511
+𥘶 452434535
+𥘷 452423435
+𥘸 452441431
+𥘹 45241515
+𥘺 452412121
+𥘻 452413241
+𥘼 452434333
+𥘽 1123443112
+𥘾 1344311234
+𥘿 1113411234
+𥙀 452413121
+𥙁 452431525
+𥙂 452432121
+𥙃 452432511
+𥙄 452434234
+𥙅 452441252
+𥙆 452441554
+𥙇 452444535
+𥙈 452451554
+𥙉 452454251
+𥙊 5433411234
+𥙋 452452252
+𥙌 112343523
+𥙍 123425112
+𥙎 4524333534
+𥙏 1232252342
+𥙐 4524331251
+𥙑 4524243135
+𥙒 4524121545
+𥙓 4524251125
+𥙔 4524445531
+𥙕 4524121315
+𥙖 4524122134
+𥙗 4524134251
+𥙘 4524125351
+𥙙 4524251252
+𥙚 4524313312
+𥙛 4524321121
+𥙜 4524321354
+𥙝 11234312135
+𥙞 4524121121
+𥙟 4524122111
+𥙠 4524132121
+𥙡 4524313541
+𥙢 4524325151
+𥙣 4524352511
+𥙤 4524151515
+𥙥 4524515121
+𥙦 53125111234
+𥙧 4524352345
+𥙨 4524351234
+𥙩 452454345
+𥙪 4524431125
+𥙫 45241253511
+𥙬 45242433541
+𥙭 45241234121
+𥙮 45241353334
+𥙯 45245312251
+𥙰 45243115121
+𥙱 45243515251
+𥙲 45242534121
+𥙳 12321251124
+𥙴 45241251134
+𥙵 45243525135
+𥙶 4524122112
+𥙷 45241251124
+𥙸 45245155115
+𥙹 45241241344
+𥙺 45242121233
+𥙻 45244534251
+𥙼 112341213234
+𥙽 45241343412
+𥙾 45243123453
+𥙿 45243434251
+𥚀 45243443521
+𥚁 45245312251
+𥚂 45245434354
+𥚃 45242511211
+𥚄 45241251345
+𥚅 45241221115
+𥚆 45245344544
+𥚇 45243122515
+𥚈 452425121132
+𥚉 452455525121
+𥚊 452412135121
+𥚋 5225211234135
+𥚌 123225111234
+𥚍 452451335251
+𥚎 452444511234
+𥚏 452441351134
+𥚐 452445434121
+𥚑 452451312251
+𥚒 452413434234
+𥚓 452413443115
+𥚔 452421123454
+𥚕 452425112511
+𥚖 452434431234
+𥚗 452434125122
+𥚘 4315232211234
+𥚙 452413412132
+𥚚 452421531535
+𥚛 452425111535
+𥚜 452425111515
+𥚝 452425152511
+𥚞 45243215112
+𥚟 452432512251
+𥚠 452441251521
+𥚡 4334433411234
+𥚢 5225244511234
+𥚣 452453121251
+𥚤 452434112345
+𥚥 452431234225
+𥚦 4524351331134
+𥚧 4524121251431
+𥚨 4524131213541
+𥚩 4524521343541
+𥚪 54254543211234
+𥚫 4524341251132
+𥚬 4524353112121
+𥚭 4524413534251
+𥚮 4524122111345
+𥚯 4524251135335
+𥚰 4524445354251
+𥚱 4524414312511
+𥚲 4524125123422
+𥚳 4524132425211
+𥚴 4524132511134
+𥚵 4524521325111
+𥚶 4524251122111
+𥚷 4524251213541
+𥚸 4524251211534
+𥚹 4524351325122
+𥚺 4524153532511
+𥚻 4524252132522
+𥚼 4524253411214
+𥚽 4524325122511
+𥚾 4524345234354
+𥚿 4524431134531
+𥛀 4524511453554
+𥛁 52252112345215
+𥛂 4524132513511
+𥛃 4524151213511
+𥛄 4524122511113
+𥛅 45243545325121
+𥛆 45245114525254
+𥛇 4524515121121
+𥛈 4524515121121
+𥛉 45243113111125
+𥛊 45243513541541
+𥛋 45245454541234
+𥛌 45241212511134
+𥛍 45242512511134
+𥛎 45243443554134
+𥛏 45243112211134
+𥛐 45241215425221
+𥛑 45241311534124
+𥛒 45241325125251
+𥛓 211112343411234
+𥛔 45242512453541
+𥛕 45243321531534
+𥛖 112323251113124
+𥛗 45243443321511
+𥛘 452425121122112
+𥛙 452431251113533
+𥛚 452441432512251
+𥛛 4512535112111234
+𥛜 452421531525111
+𥛝 45243541112454
+𥛞 452441352211515
+𥛟 452434432511135
+𥛠 123435251125111
+𥛡 452421253541121
+𥛢 452425244511234
+𥛣 452412213545252
+𥛤 1511234532511134
+𥛥 452412511214124
+𥛦 452412522111234
+𥛧 452425121554234
+𥛨 452433221212134
+𥛩 452441332151134
+𥛪 452441352215454
+𥛫 452444153441234
+𥛬 2111123454431234
+𥛭 452432411121545
+𥛮 4524343123425121
+𥛯 4524545232535251
+𥛰 4524134432511234
+𥛱 12125143133311234
+𥛲 4524324111214444
+𥛳 4524215315225211
+𥛴 1234251211212134
+𥛵 4524121211212112
+𥛶 4524431121431251
+𥛷 4524431234354152
+𥛸 4524125112144544
+𥛹 4524513241343112
+𥛺 4524151225111134
+𥛻 4524121251431333
+𥛼 4524121225112511
+𥛽 4524121525125121
+𥛾 4524343434342511
+𥛿 4524515253341121
+𥜀 5133115452425111
+𥜁 4524122111431134
+𥜂 15112341325111354
+𥜃 45242522112143112
+𥜄 554444515313411234
+𥜅 45242153151353334
+𥜆 125221112344154325
+𥜇 45244143125114544
+𥜈 45241212122151234
+𥜉 45245113251431112
+𥜊 45243253431234115
+𥜋 45243412512513434
+𥜌 45243253431234134
+𥜍 4524122251125214
+𥜎 45241234341252511
+𥜏 45242511453544444
+𥜐 4524251251115151
+𥜑 45241225154125121
+𥜒 452413251135411344
+𥜓 452412512531125221
+𥜔 452454154132411121
+𥜕 452412512341251234
+𥜖 1251234543113411234
+𥜗 452414524134132522
+𥜘 4125125125251111234
+𥜙 4411251112331211234
+𥜚 4524132511454544354
+𥜛 43123411234132511134
+𥜜 4524215315251214544
+𥜝 4524121251132511134
+𥜞 12522111234321511215
+𥜟 11234413122112512134
+𥜠 112342153152512125221
+𥜡 45243523411212511211
+𥜢 45244135545545113251
+𥜣 112341213515121121251
+𥜤 45242511134153415345
+𥜥 45242111525121122134
+𥜦 1123413425234343434121
+𥜧 1123414524134251251251
+𥜨 452411121112521251431
+𥜩 1123425112511131225111
+𥜪 4524111221112521251431
+𥜫 4524341251251251255311
+𥜬 11234134252343434341121
+𥜭 4524412512511251251522
+𥜮 4524413522115355113251
+𥜯 11234212534444412511521
+𥜰 45241254125441352211515
+𥜱 52252112341525111534354
+𥜲 45242121252554234251214
+𥜳 45241234343412341343112
+𥜴 452444511221341211254444
+𥜵 452425111251113241112154
+𥜶 4524431325111212151534354
+𥜷 54545432112341525111534354
+𥜸 11234212534444412511251522
+𥜹 515121121112341525111534354
+𥜺 252445112345415413432411121
+𥜻 325214
+𥜼 34432554
+𥜽 2125342554
+𥜾 211345225214
+𥜿 555251125214
+𥝀 325125214525
+𥝁 5552534125214
+𥝂 2511252141355
+𥝃 51532251125214
+𥝄 522122534125214
+𥝅 321511253412554
+𥝆 251132151125214
+𥝇 3211511251125214
+𥝈 32113253415112554
+𥝉 251125214251125214
+𥝊 3211343451145325125214
+𥝋 321132113253415115112554
+𥝌 31234
+𥝍 312341
+𥝎 312345
+𥝏 312345
+𥝐 3123454
+𥝑 3123415
+𥝒 3123424
+𥝓 3123415
+𥝔 31234521
+𥝕 31234415
+𥝖 31234315
+𥝗 31234515
+𥝘 31234354
+𥝙 31234515
+𥝚 31234134
+𥝛 31234134
+𥝜 31234115
+𥝝 31234112
+𥝞 31234333
+𥝟 31234121
+𥝠 31234354
+𥝡 31234512
+𥝢 31234353
+𥝣 312341324
+𥝤 312343533
+𥝥 31234354
+𥝦 312345211
+𥝧 312345215
+𥝨 312343444
+𥝩 344331234
+𥝪 312341535
+𥝫 312343112
+𥝬 312343115
+𥝭 312345134
+𥝮 312341554
+𥝯 312341132
+𥝰 312341234
+𥝱 312345452
+𥝲 312345435
+𥝳 312343541
+𥝴 312344535
+𥝵 312343432
+𥝶 312343554
+𥝷 312341132
+𥝸 312342534
+𥝹 312343312
+𥝺 312343412
+𥝻 312343554
+𥝼 312345152
+𥝽 312341215
+𥝾 3123413315
+𥝿 3123453251
+𥞀 3123431525
+𥞁 3123425112
+𥞂 3123432124
+𥞃 3123452252
+𥞄 312343215
+𥞅 31234212115
+𥞆 3123411234
+𥞇 3123435252
+𥞈 3123412211
+𥞉 3123434312
+𥞊 3123411234
+𥞋 3123412154
+𥞌 3123412211
+𥞍 3123412512
+𥞎 3123413252
+𥞏 3123425135
+𥞐 3123425151
+𥞑 3123441252
+𥞒 3123444535
+𥞓 3123451311
+𥞔 3123451515
+𥞕 3123452235
+𥞖 3123435112
+𥞗 3123412534
+𥞘 31234132521
+𥞙 31234345325
+𥞚 31234531251
+𥞛 31234351234
+𥞜 31234354152
+𥞝 31234345235
+𥞞 31234412511
+𥞟 31234441112
+𥞠 31234121315
+𥞡 31234251252
+𥞢 31234354152
+𥞣 12125131234
+𥞤 12145131234
+𥞥 13542231234
+𥞦 31234143134
+𥞧 31234332112
+𥞨 31234415334
+𥞩 31234431132
+𥞪 31234431234
+𥞫 31234431234
+𥞬 31234445531
+𥞭 31234513121
+𥞮 31234535353
+𥞯 31234414312
+𥞰 31234511112
+𥞱 1215231234
+𥞲 312342515322
+𥞳 312341245521
+𥞴 312343121251
+𥞵 312341343434
+𥞶 312341324251
+𥞷 312342512135
+𥞸 312343515251
+𥞹 441534431234
+𥞺 312342512134
+𥞻 312344325234
+𥞼 312343542511
+𥞽 312344143112
+𥞾 312345112534
+𥞿 312342241252
+𥟀 312341121354
+𥟁 312341253511
+𥟂 312341431234
+𥟃 215325131234
+𥟄 312342512153
+𥟅 31321511234
+𥟆 312344143521
+𥟇 312341241344
+𥟈 312341251234
+𥟉 312343123435
+𥟊 312341251251
+𥟋 312344154132
+𥟌 31234122354
+𥟍 3123431112111
+𥟎 3123443113453
+𥟏 3123413412512
+𥟐 3123444512134
+𥟑 3123425121412
+𥟒 3123454545454
+𥟓 3123444525151
+𥟔 3123425115134
+𥟕 3123412123534
+𥟖 3123435334234
+𥟗 3123425121132
+𥟘 3123425113533
+𥟙 2511533331234
+𥟚 3123445434121
+𥟛 3123434521354
+𥟜 5553542231234
+𥟝 3123434431132
+𥟞 3123434435132
+𥟟 2511133331234
+𥟠 3123415352511
+𥟡 3123444511234
+𥟢 3123443344334
+𥟣 3123441431531
+𥟤 3123451124134
+𥟥 3123415341534
+𥟦 3123422342444
+𥟧 3123421123454
+𥟨 3123434112431
+𥟩 3123434431234
+𥟪 312341223115
+𥟫 2125354131234
+𥟬 3123423435112
+𥟭 3123425111134
+𥟮 3123425152511
+𥟯 3123435121121
+𥟰 3123431234341
+𥟱 3123431511234
+𥟲 3321234431234
+𥟳 3123434431124
+𥟴 3123435152511
+𥟵 3123435412511
+𥟶 3123444535455
+𥟷 3123452115211
+𥟸 5552512231234
+𥟹 3123435125134
+𥟺 3123435132522
+𥟻 3123435435422
+𥟼 312341221324
+𥟽 31234513154121
+𥟾 31234121212251
+𥟿 35435431234531
+𥠀 31234251131121
+𥠁 31234251225251
+𥠂 31234431353334
+𥠃 31234255455452
+𥠄 31234252132522
+𥠅 31234352534134
+𥠆 31234131251534
+𥠇 31234325111333
+𥠈 31234325111552
+𥠉 31234251113422
+𥠊 31234545231234
+𥠋 31234251122111
+𥠌 34125221531234
+𥠍 31234132431121
+𥠎 31234251213554
+𥠏 31234121213534
+𥠐 31234343251112
+𥠑 31234445354251
+𥠒 31234414345252
+𥠓 31234122151234
+𥠔 31234111342511
+𥠕 31234341351122
+𥠖 31234353342444
+𥠗 31234312511234
+𥠘 31234325112534
+𥠙 3123412225111
+𥠚 3123412225134
+𥠛 31234125343134
+𥠜 31234251113533
+𥠝 31234251131134
+𥠞 312343123434252
+𥠟 32511112131234
+𥠠 34251221531234
+𥠡 31234353344544
+𥠢 31234354351121
+𥠣 31234412514512
+𥠤 41253344131234
+𥠥 31234415331525
+𥠦 31234431121134
+𥠧 31234513431112
+𥠨 31234531354354
+𥠩 31234541342444
+𥠪 54523313431234
+𥠫 31234531151251
+𥠬 31234111341134
+𥠭 31251121131234
+𥠮 31234122543112
+𥠯 3123412221251
+𥠰 3123425121354
+𥠱 312343321531535
+𥠲 312341252211234
+𥠳 312342512453541
+𥠴 31234344445215
+𥠵 312341251124124
+𥠶 312341311121115
+𥠷 312343545325121
+𥠸 31234122345325
+𥠹 312343541521234
+𥠺 312342534125221
+𥠻 312341354352511
+𥠼 111343123431234
+𥠽 312341541213134
+𥠾 312341122125211
+𥠿 312343223543541
+𥡀 515323123431234
+𥡁 312344543434234
+𥡂 312343251213554
+𥡃 312341212415325
+𥡄 312343525125115
+𥡅 312343251113412
+𥡆 312343251113333
+𥡇 312343513541541
+𥡈 31234325151454
+𥡉 312345314325135
+𥡊 312343251113454
+𥡋 312343251111354
+𥡌 312343525125115
+𥡍 31234122415555
+𥡎 31234432524134
+𥡏 312342512125111
+𥡐 312343251114153
+𥡑 312343543512341
+𥡒 312344134122111
+𥡓 312344312343533
+𥡔 312344543444535
+𥡕 312345112251134
+𥡖 312345132413412
+𥡗 312341211254444
+𥡘 312341221325112
+𥡙 344355413431234
+𥡚 312344312343554
+𥡛 121451355431234
+𥡜 3123425121554234
+𥡝 3151123431511234
+𥡞 312341354352511
+𥡟 3123411134321511
+𥡠 3123413434343434
+𥡡 1212251113431234
+𥡢 3123441554413412
+𥡣 3123412212511121
+𥡤 3123412535114444
+𥡥 3123432533414544
+𥡦 3123441432512251
+𥡧 3123421531525111
+𥡨 3123412511244153
+𥡩 3123412135121354
+𥡪 3123454154141431
+𥡫 3123444535154121
+𥡬 3123433234342134
+𥡭 3121221131234531
+𥡮 1214513123453251
+𥡯 1121251113431234
+𥡰 5425431234131234
+𥡱 3123412535114444
+𥡲 3123441351125112
+𥡳 3123415342112511
+𥡴 3123413542112511
+𥡵 3123412511214124
+𥡶 3123425244511234
+𥡷 3123412125114544
+𥡸 312341222511134
+𥡹 3123412212523434
+𥡺 3123431253425251
+𥡻 3251123433331234
+𥡼 3123432511132522
+𥡽 3123435251115354
+𥡾 3123435253435112
+𥡿 3123435351124412
+𥢀 3123443123435251
+𥢁 3123453431353334
+𥢂 3123441312341234
+𥢃 3123444552522112
+𥢄 3123432554134354
+𥢅 3123454212511134
+𥢆 3123454212511134
+𥢇 3123412121251234
+𥢈 3123413251111534
+𥢉 1214531234125234
+𥢊 31234121222511134
+𥢋 31234121525125121
+𥢌 31234343123425121
+𥢍 31234122514143112
+𥢎 31234431253511124
+𥢏 31234125221251112
+𥢐 31234325111413412
+𥢑 31234135435434251
+𥢒 31234433443344553
+𥢓 31234354353251214
+𥢔 31234135421251112
+𥢕 31234125221431234
+𥢖 31234251234131234
+𥢗 31234121251431251
+𥢘 31234513241341154
+𥢙 12131234132511134
+𥢚 31234145241341154
+𥢛 31234511121251124
+𥢜 31234314314121124
+𥢝 12522131234333534
+𥢞 12122511113431234
+𥢟 3123412251122312
+𥢠 31234132522132522
+𥢡 31234134343434134
+𥢢 31234251212511134
+𥢣 31234325111234333
+𥢤 31234334343434121
+𥢥 31234432524312511
+𥢦 31234354251214444
+𥢧 31234414312511534
+𥢨 31234513521521521
+𥢩 31234541541342444
+𥢪 31234111253554234
+𥢫 31234445112125122
+𥢬 31234344335554444
+𥢭 3123443252343134
+𥢮 12154543123431234
+𥢯 31234354413444444
+𥢰 31234312343434341
+𥢱 3123413553425221
+𥢲 3123431234135534
+𥢳 3123444112132511
+𥢴 312341452413434154
+𥢵 415251354131234354
+𥢶 312343412524312511
+𥢷 312342434525125121
+𥢸 312341212251135345
+𥢹 312343251141533134
+𥢺 312343123441252511
+𥢻 312341234123411234
+𥢼 312341252342511134
+𥢽 312342135454431234
+𥢾 312343125112114444
+𥢿 312341251412514512
+𥣀 312342343251123333
+𥣁 312343443454544354
+𥣂 341251251343431234
+𥣃 341252213535131234
+𥣄 312343253431234115
+𥣅 312343215115445445
+𥣆 312341134113431234
+𥣇 312341251251214334
+𥣈 312342243143111234
+𥣉 312342511311212534
+𥣊 312342512112535154
+𥣋 312342522135251214
+𥣌 312342523511235112
+𥣍 312343454353251214
+𥣎 312343544541251431
+𥣏 312344315545544444
+𥣐 312342511451251112
+𥣑 31234122312511211
+𥣒 312343412511224544
+𥣓 312344315545544544
+𥣔 31234513431112454
+𥣕 312344325121122134
+𥣖 3123415311345452134
+𥣗 3123444545442522112
+𥣘 3123413251135411344
+𥣙 3123412211154323434
+𥣚 3143142511113431234
+𥣛 312341224511353334
+𥣜 3123432224314311134
+𥣝 3123445132512231234
+𥣞 3123454154132411121
+𥣟 3123435321511154444
+𥣠 34112354543123431234
+𥣡 3123451324134354152
+𥣢 3123412125121122134
+𥣣 3123424134251113544
+𥣤 3123431234325112534
+𥣥 3123435312343424134
+𥣦 312345134143112454
+𥣧 3123453251212511134
+𥣨 3123451151151525415
+𥣩 31234234324111211534
+𥣪 31234113411342511134
+𥣫 31234212125221134534
+𥣬 31234251212512125121
+𥣭 31234131212251125214
+𥣮 312343143145115452
+𥣯 31234132511454544354
+𥣰 31234325111445354153
+𥣱 31234134342341252511
+𥣲 31234251212512131234
+𥣳 31234445343123425121
+𥣴 31234111211125114544
+𥣵 31234312343533424134
+𥣶 31234153515352511134
+𥣷 25112511123412131234
+𥣸 31234312341341251431
+𥣹 31234414313512214444
+𥣺 31234431512214444121
+𥣻 43344334453123431234
+𥣼 31234522523251213554
+𥣽 31234324111212512512
+𥣾 312343431212135412154
+𥣿 31234112431234354152
+𥤀 312341331234312342121
+𥤁 312344125125112121112
+𥤂 312344112112544443534
+𥤃 312345314524134132522
+𥤄 312344312341122111134
+𥤅 312344312341122125354
+𥤆 3123412124135221154444
+𥤇 3123431431454545434333
+𥤈 312343431234122135454
+𥤉 3123434125125125125122
+𥤊 31234212125125132411121
+𥤋 12211112211112211131234
+𥤌 3123454154125121122134
+𥤍 3123432511144534251454
+𥤎 312343211251251511454334
+𥤏 3123412342522151154124
+𥤐 31234251212512125121121
+𥤑 31234343123411221121212
+𥤒 31234353211511342511134
+𥤓 31234325111445344153454
+𥤔 341235223123413241251234
+𥤕 312341251234312341251234
+𥤖 314314341252212512231234
+𥤗 3123424345251254312114444
+𥤘 3123425111251113241112154
+𥤙 3123421212512513241112154
+𥤚 31234352512534155115114444
+𥤛 31234352512511155115114444
+𥤜 31234121214524134251251251
+𥤝 31234125125314252212511135
+𥤞 31234145241342512512511234341
+𥤟 31234125125312125344444125221
+𥤠 312345115114444122251251115151
+𥤡 12112544441211254444121125444431234
+𥤢 31535
+𥤣 4453552
+𥤤 4453535
+𥤥 4453415
+𥤦 4453454
+𥤧 44535121
+𥤨 44535531
+𥤩 44535415
+𥤪 44535521
+𥤫 44535151
+𥤬 42534132
+𥤭 44535315
+𥤮 44535134
+𥤯 44534354
+𥤰 44535132
+𥤱 44535112
+𥤲 44534124
+𥤳 44534534
+𥤴 445351132
+𥤵 445351255
+𥤶 445353115
+𥤷 445354535
+𥤸 445351135
+𥤹 445353434
+𥤺 445353112
+𥤻 445351515
+𥤼 445352534
+𥤽 445353533
+𥤾 521544535
+𥤿 445353512
+𥥀 445344134
+𥥁 445351134
+𥥂 445351134
+𥥃 445353511
+𥥄 445343453
+𥥅 445345215
+𥥆 445345545
+𥥇 4453512354
+𥥈 4453551554
+𥥉 4453525121
+𥥊 4453525221
+𥥋 4453534154
+𥥌 4453531134
+𥥍 4453513443
+𥥎 4453525122
+𥥏 4453552252
+𥥐 4453525111
+𥥑 4453512341
+𥥒 4453513533
+𥥓 4453511234
+𥥔 4453513251
+𥥕 4453451335
+𥥖 4453512251
+𥥗 4453525115
+𥥘 4453511234
+𥥙 4453512153
+𥥚 4453525122
+𥥛 4453513344
+𥥜 4453431354
+𥥝 4453435112
+𥥞 4453552154
+𥥟 445341554
+𥥠 44535351355
+𥥡 44535122134
+𥥢 44535121214
+𥥣 44535125111
+𥥤 44535354152
+𥥥 44535125134
+𥥦 44535544334
+𥥧 44535121315
+𥥨 44535511511
+𥥩 44535325251
+𥥪 44535431234
+𥥫 44535125112
+𥥬 44535534544
+𥥭 44535121251
+𥥮 44535554234
+𥥯 44534122111
+𥥰 44534134534
+𥥱 44534135435
+𥥲 44534312121
+𥥳 44534335414
+𥥴 44534413534
+𥥵 44534441121
+𥥶 44535312154
+𥥷 445351251431
+𥥸 445353411234
+𥥹 445351315251
+𥥺 445355151251
+𥥻 445351555121
+𥥼 445352521122
+𥥽 445351241344
+𥥾 445352513541
+𥥿 445353544334
+𥦀 445352511135
+𥦁 445355425112
+𥦂 445352515322
+𥦃 445355131234
+𥦄 445355153134
+𥦅 44535521152
+𥦆 445351213554
+𥦇 445353522511
+𥦈 445351251234
+𥦉 445343123422
+𥦊 445353434121
+𥦋 445354423553
+𥦌 445351121132
+𥦍 445352511132
+𥦎 445352511134
+𥦏 445352511134
+𥦐 445351222511
+𥦑 445351234341
+𥦒 445343251135
+𥦓 445353431234
+𥦔 445341213534
+𥦕 445342512134
+𥦖 445342514412
+𥦗 445342514544
+𥦘 445343443521
+𥦙 445343525135
+𥦚 211354453435
+𥦛 4453512112124
+𥦜 4453535113511
+𥦝 4453512341234
+𥦞 4453512512554
+𥦟 4453525122134
+𥦠 4453544141121
+𥦡 4453512211154
+𥦢 44535152352
+𥦣 445343215115
+𥦤 4453512111234
+𥦥 4453531213534
+𥦦 4453525115354
+𥦧 4453533541422
+𥦨 4453534112431
+𥦩 4453513425115
+𥦪 44535151255
+𥦫 4453425133544
+𥦬 4453534253541
+𥦭 4453512143112
+𥦮 4453525125251
+𥦯 4453531112111
+𥦰 4453535412121
+𥦱 4453535251354
+𥦲 4453511353134
+𥦳 4453412155121
+𥦴 4453422511134
+𥦵 4453535113134
+𥦶 3532151144535
+𥦷 4453444151554
+𥦸 44535312511354
+𥦹 44535354351122
+𥦺 44535352534134
+𥦻 44535253435252
+𥦼 44535132511234
+𥦽 44535251112134
+𥦾 44535554144544
+𥦿 44534442121251
+𥧀 44534252112112
+𥧁 44534432514544
+𥧂 44534121253422
+𥧃 44534521312534
+𥧄 44535251125115
+𥧅 44535152511134
+𥧆 44535251125214
+𥧇 44535312344412
+𥧈 44534325111543
+𥧉 44534354554544
+𥧊 44535513154121
+𥧋 44534513431132
+𥧌 44534521311234
+𥧍 44534521325111
+𥧎 44534312342511
+𥧏 4453512132511
+𥧐 211154453525135
+𥧑 445343525111534
+𥧒 445351122125211
+𥧓 445351211254444
+𥧔 445353115431234
+𥧕 44535441154325
+𥧖 445353512211154
+𥧗 445353512143112
+𥧘 445351325251121
+𥧙 445351123411234
+𥧚 445355313434121
+𥧛 445351354154544
+𥧜 445351325111354
+𥧝 445354421251251
+𥧞 445352121123454
+𥧟 445351211214544
+𥧠 445353541525121
+𥧡 445341212511134
+𥧢 445351221113115
+𥧣 44534122341234
+𥧤 445342511234134
+𥧥 445353545325121
+𥧦 445344423121251
+𥧧 445344543425221
+𥧨 445345132511134
+𥧩 445345544442534
+𥧪 112113244534121
+𥧫 4453445115452
+𥧬 4453512512554121
+𥧭 4453525112522154
+𥧮 4453541432512251
+𥧯 4453554154134333
+𥧰 4453513411533544
+𥧱 4453541351135112
+𥧲 4453544151145252
+𥧳 4453521211124444
+𥧴 4453544255124134
+𥧵 4453544225111234
+𥧶 4453544212212511
+𥧷 4453531212511234
+𥧸 4453543341251251
+𥧹 4453434433211511
+𥧺 4453512211154251
+𥧻 4453515321135334
+𥧼 44535442251125214
+𥧽 4453533212541234
+𥧾 4453453112343534
+𥧿 4453512134434554
+𥨀 44551554251214
+𥨁 445355212135121
+𥨂 4453532511133134
+𥨃 4453532511133554
+𥨄 4453412125113134
+𥨅 4453412132343134
+𥨆 445341121533134
+𥨇 4453425111343134
+𥨈 445342513215112
+𥨉 4453452134111251
+𥨊 4453552135114554
+𥨋 4453415231121132
+𥨌 44534121525125121
+𥨍 44535332312511354
+𥨎 44535125221251112
+𥨏 21115445355435354
+𥨐 44535121251113422
+𥨑 44535332532541234
+𥨒 44535522521123454
+𥨓 44535341124311254
+𥨔 44535121315121315
+𥨕 44535442251131121
+𥨖 44535311342511135
+𥨗 4453532151111132
+𥨘 44535312125111234
+𥨙 4453444125525251
+𥨚 44535325111335352
+𥨛 44534121251113533
+𥨜 12154132445341344
+𥨝 44534332445433454
+𥨞 44534541541342444
+𥨟 44534554444355215
+𥨠 445351212522125221
+𥨡 445353324453434333
+𥨢 445352524451123454
+𥨣 44535324111212525
+𥨤 445341344325114334
+𥨥 445343215113524444
+𥨦 445343533241112154
+𥨧 445344312345313134
+𥨨 445341211212511134
+𥨩 44534325431234134
+𥨪 4453532511132515215
+𥨫 445353251251115151
+𥨬 4453525111122111511
+𥨭 4453543111245444544
+𥨮 4453512132111213211
+𥨯 4453535311345452134
+𥨰 44535442543341251431
+𥨱 44535311234251125214
+𥨲 4453552132522135531
+𥨳 44535122111122125112
+𥨴 44535121431121344334
+𥨵 445353251113251225251
+𥨶 44535353251141533134
+𥨷 44535521321253425251
+𥨸 44535311234251225251
+𥨹 44534312343533424134
+𥨺 44534522524312343134
+𥨻 445351331234312342121
+𥨼 445353143141214311235
+𥨽 445353123425111344444
+𥨾 445344143112342511135
+𥨿 445354413251141533134
+𥩀 445351251245132511234
+𥩁 445353143141214311234
+𥩂 445351252214312343134
+𥩃 445351212512512511234
+𥩄 445341211213251113124
+𥩅 445343143143512143112
+𥩆 445343211251251511134
+𥩇 445344421312515344544
+𥩈 44535343123425525251
+𥩉 4453415231452444425121
+𥩊 44535121315121315121315
+𥩋 4453512135251251115151
+𥩌 445351214453512144535121
+𥩍 445341523352512144442511
+𥩎 4453535251214444432511312
+𥩏 445353241112132511154444
+𥩐 445351213525352512511134
+𥩑 445343525121444443251112
+𥩒 4453552131252214543344334
+𥩓 44535122143123421253425251
+𥩔 44535145241342512512511234341
+𥩕 4143135
+𥩖 4143124
+𥩗 41431135
+𥩘 41431351
+𥩙 414315125
+𥩚 414314155
+𥩛 414314134
+𥩜 414313215
+𥩝 414313112
+𥩞 414313554
+𥩟 414314451
+𥩠 1212141431
+𥩡 4143115534
+𥩢 4143125111
+𥩣 4143141121
+𥩤 4143112512
+𥩥 4143151315
+𥩦 4143132154
+𥩧 4143135452
+𥩨 4143111214
+𥩩 4143112211
+𥩪 4143112251
+𥩫 4143125112
+𥩬 4143125112
+𥩭 4143115251
+𥩮 4143135251
+𥩯 4143153521
+𥩰 414311515
+𥩱 41431321534
+𥩲 41431415334
+𥩳 41431121124
+𥩴 13212141431
+𥩵 41431431132
+𥩶 41431251251
+𥩷 41431313534
+𥩸 41431121124
+𥩹 41431325221
+𥩺 41431143134
+𥩻 41431341251
+𥩼 41431341534
+𥩽 41431445124
+𥩾 414311245521
+𥩿 415354441431
+𥪀 414311251124
+𥪁 414312512115
+𥪂 414311343434
+𥪃 414313552252
+𥪄 41431523252
+𥪅 414312513534
+𥪆 414311241344
+𥪇 414312513511
+𥪈 414313533354
+𥪉 414313434251
+𥪊 4143151352252
+𥪋 4143155124134
+𥪌 4143111342444
+𥪍 4143131234531
+𥪎 4143125121412
+𥪏 4143112211154
+𥪐 4143134153434
+𥪑 4143134153112
+𥪒 4143151325122
+𥪓 4143112211134
+𥪔 4143125113533
+𥪕 4143131511234
+𥪖 414313215115
+𥪗 4143144511234
+𥪘 41431122111355
+𥪙 41431132511134
+𥪚 41431312511354
+𥪛 12121313441431
+𥪜 41431412514512
+𥪝 41431251152512
+𥪞 41431251152534
+𥪟 41431414345252
+𥪠 41431451251112
+𥪡 12512531141431
+𥪢 41431251121134
+𥪣 41431541121354
+𥪤 4143112132511
+𥪥 4143135523523
+𥪦 414313443554134
+𥪧 414311225111134
+𥪨 125125331241431
+𥪩 414312512511134
+𥪪 414312521251431
+𥪫 41431122354354
+𥪬 414315513324134
+𥪭 1251112331241431
+𥪮 4143141431251112
+𥪯 41431121121121135
+𥪰 4143141431251135
+𥪱 4135315213441431
+𥪲 41431111253554234
+𥪳 41431251112211154
+𥪴 41431251112354152
+𥪵 11232151141431531
+𥪶 41431343434342511
+𥪷 51543123451541431
+𥪸 41431314314121124
+𥪹 4143152131212511
+𥪺 414312121121312534
+𥪻 12211113533341431
+𥪼 414312512414312512
+𥪽 4143112212511211
+𥪾 414312512512511134
+𥪿 414311212312511211
+𥫀 414311251251254312
+𥫁 414313412524312511
+𥫂 352511414312511211
+𥫃 414314311213121534
+𥫄 414312511515413534
+𥫅 5544442511251141431
+𥫆 4143125431234122134
+𥫇 4143135412121254312
+𥫈 41431251125111122134
+𥫉 414314125125112121112
+𥫊 41431251112251125221
+𥫋 52252414315225241431
+𥫌 41431132511325113251
+𥫍 4143112212512134121
+𥫎 414312511211542511134
+𥫏 414312511351325111354
+𥫐 4143122511251125134251
+𥫑 4143125111232533414544
+𥫒 41431251112121251114544
+𥫓 41431251112545454545454
+𥫔 414312511123541522511134
+𥫕 4143125111225125154545454
+𥫖 4143125111225125134343434
+𥫗 314314
+𥫘 3143142
+𥫙 31431412
+𥫚 31431425
+𥫛 31431454
+𥫜 31431434
+𥫝 314314154
+𥫞 314314521
+𥫟 314314515
+𥫠 314314132
+𥫡 314314115
+𥫢 314314344
+𥫣 314314151
+𥫤 314314515
+𥫥 314314315
+𥫦 314314121
+𥫧 312315312
+𥫨 314314322
+𥫩 314314354
+𥫪 314314234
+𥫫 314314124
+𥫬 314314315
+𥫭 314314531
+𥫮 312312312
+𥫯 3143142512
+𥫰 3143144134
+𥫱 3143141525
+𥫲 3143141312
+𥫳 3143144135
+𥫴 31431441252
+𥫵 3143141344
+𥫶 3143141132
+𥫷 3143143535
+𥫸 3143142534
+𥫹 3143144535
+𥫺 3143144535
+𥫻 3143141524
+𥫼 3143143541
+𥫽 3143143515
+𥫾 3143144134
+𥫿 3143143513
+𥬀 3143141154
+𥬁 3143145112
+𥬂 3143141322
+𥬃 3143142334
+𥬄 3143143112
+𥬅 3143143511
+𥬆 3143141132
+𥬇 3143141344
+𥬈 3143143434
+𥬉 3143143554
+𥬊 3143143312
+𥬋 3143143415
+𥬌 31431444535
+𥬍 31431432252
+𥬎 31431411234
+𥬏 31431434312
+𥬐 31431425112
+𥬑 31431412135
+𥬒 31431413344
+𥬓 31431455453
+𥬔 31431412154
+𥬕 31431425211
+𥬖 31431451354
+𥬗 3143141535
+𥬘 31431431134
+𥬙 3143141551
+𥬚 31431431211
+𥬛 31431432121
+𥬜 3143143551
+𥬝 31431432511
+𥬞 31431435234
+𥬟 31431411134
+𥬠 31431435511
+𥬡 31431413251
+𥬢 31431413121
+𥬣 31431412153
+𥬤 31431412115
+𥬥 31431425111
+𥬦 31431455144
+𥬧 31431434211
+𥬨 31431432121
+𥬩 31431451335
+𥬪 314314113534
+𥬫 314314354152
+𥬬 314314511252
+𥬭 314314135422
+𥬮 314314441121
+𥬯 314314121315
+𥬰 314314251122
+𥬱 314314415435
+𥬲 314314351234
+𥬳 314314212115
+𥬴 31431443112
+𥬵 314314132522
+𥬶 314314112135
+𥬷 314314211124
+𥬸 314314531234
+𥬹 314314122134
+𥬺 314314252134
+𥬻 314314121515
+𥬼 314314353322
+𥬽 314314251134
+𥬾 314314354135
+𥬿 31431435211
+𥭀 314314121354
+𥭁 314314431234
+𥭂 314314442354
+𥭃 314314121322
+𥭄 314314533312
+𥭅 314314121251
+𥭆 314314251112
+𥭇 314314312333
+𥭈 314314325251
+𥭉 314314341154
+𥭊 314314253434
+𥭋 314314354354
+𥭌 314314445315
+𥭍 314314234134
+𥭎 314314441415
+𥭏 314314543112
+𥭐 3143143443124
+𥭑 3143141241344
+𥭒 3143142515251
+𥭓 3143144334354
+𥭔 3143142125122
+𥭕 314314152352
+𥭖 3143143541354
+𥭗 3143143541112
+𥭘 3143143413252
+𥭙 3143141221115
+𥭚 314314415251
+𥭛 3143141253511
+𥭜 3143145154544
+𥭝 3143145312343
+𥭞 3143142513541
+𥭟 3143145435354
+𥭠 3143141251251
+𥭡 3143141214544
+𥭢 3143142512115
+𥭣 3143142511345
+𥭤 3143142511121
+𥭥 3143143251214
+𥭦 3143143533312
+𥭧 3143142511121
+𥭨 3143143251135
+𥭩 3143142125251
+𥭪 3143143253254
+𥭫 3143145235234
+𥭬 3143143541315
+𥭭 3143143434121
+𥭮 3143142535251
+𥭯 3143141121315
+𥭰 3143143541234
+𥭱 314314251515
+𥭲 3143144453112
+𥭳 3143143534334
+𥭴 3143144143112
+𥭵 314314511352
+𥭶 314314122415
+𥭷 3143142511345
+𥭸 3143143221254
+𥭹 3143144535354
+𥭺 3143141215123
+𥭻 3143141213251
+𥭼 3143145112534
+𥭽 3143142512134
+𥭾 3143142512512
+𥭿 3143142521154
+𥮀 3143142511354
+𥮁 3143141213554
+𥮂 3143143113251
+𥮃 3143143215252
+𥮄 3143143511515
+𥮅 3143141121134
+𥮆 3143143212512
+𥮇 314314111352
+𥮈 3143143412132
+𥮉 3143141251124
+𥮊 3143141234121
+𥮋 3143143212341
+𥮌 1221314314112
+𥮍 31431434431121
+𥮎 3143141344132
+𥮏 31431425122134
+𥮐 31431435121251
+𥮑 31431435424251
+𥮒 31431444121251
+𥮓 31431444154132
+𥮔 31431412512154
+𥮕 31431412344135
+𥮖 31431412251111
+𥮗 31431435431234
+𥮘 31431434154544
+𥮙 31431433541422
+𥮚 31431425112222
+𥮛 31431435321511
+𥮜 31431451535234
+𥮝 31431451352252
+𥮞 31431425111325
+𥮟 3143141521125
+𥮠 31431412121251
+𥮡 31431434125152
+𥮢 31431452115211
+𥮣 31431425341234
+𥮤 31431451124134
+𥮥 31431412343312
+𥮦 31431425454341
+𥮧 31431415412345
+𥮨 31431435544544
+𥮩 31431412523434
+𥮪 31431425153541
+𥮫 31431425431234
+𥮬 31431425113533
+𥮭 31431425134121
+𥮮 31431412451234
+𥮯 31431432124134
+𥮰 31431451533544
+𥮱 31431451312154
+𥮲 31431412111534
+𥮳 31431412155121
+𥮴 31431432235444
+𥮵 31431444511234
+𥮶 31431445251121
+𥮷 31431443113251
+𥮸 31431451251214
+𥮹 31431412341534
+𥮺 3143145212152
+𥮻 31431412112422
+𥮼 31431412135515
+𥮽 31431435311252
+𥮾 31431454134333
+𥮿 31431431154444
+𥯀 31431434112431
+𥯁 31431433231121
+𥯂 31431433241121
+𥯃 31431413425115
+𥯄 31431432411121
+𥯅 31431413121121
+𥯆 31431412343554
+𥯇 31431434435215
+𥯈 31431412343354
+𥯉 31431453113251
+𥯊 31431441323544
+𥯋 31431425113511
+𥯌 31431431134251
+𥯍 31431412343134
+𥯎 31431441321251
+𥯏 31431432122134
+𥯐 31431451112534
+𥯑 314314125221121
+𥯒 314314121251534
+𥯓 314314122111355
+𥯔 314314325125214
+𥯕 314314251113533
+𥯖 314314413122154
+𥯗 314314352511134
+𥯘 31431412211152
+𥯙 314314155512153
+𥯚 314314442354251
+𥯛 314314441354251
+𥯜 314314251211534
+𥯝 314314445351344
+𥯞 314314413531521
+𥯟 314314311211112
+𥯠 314314441333534
+𥯡 314314251211515
+𥯢 314314412514512
+𥯣 3143142534134534
+𥯤 314314521251152
+𥯥 314314112321511
+𥯦 31431451111254
+𥯧 31431431211454
+𥯨 314314251214544
+𥯩 314314132513312
+𥯪 314314111343134
+𥯫 314314543341134
+𥯬 314314132522134
+𥯭 314314251131211
+𥯮 31431432151134
+𥯯 314314413251134
+𥯰 314314535425221
+𥯱 314314512514544
+𥯲 314314412511234
+𥯳 314314251251115
+𥯴 314314445433454
+𥯵 511353334312312
+𥯶 314314121212251
+𥯷 314314354135251
+𥯸 314314123441121
+𥯹 314314121354132
+𥯺 314314134431234
+𥯻 31431412343215
+𥯼 314314453323554
+𥯽 314314414312512
+𥯾 314314445312251
+𥯿 314314115425211
+𥰀 314314251525111
+𥰁 314314415331121
+𥰂 314314433431234
+𥰃 314314451251112
+𥰄 31431412235251
+𥰅 314314441431132
+𥰆 314314414345252
+𥰇 314314411125112
+𥰈 314314322511121
+𥰉 314314321131134
+𥰊 314314341251124
+𥰋 314314445354251
+𥰌 314314433441554
+𥰍 314314125123422
+𥰎 314314153425221
+𥰏 314314121354152
+𥰐 314314511541252
+𥰑 314314125341515
+𥰒 314314253432154
+𥰓 314314253413534
+𥰔 314314251251251
+𥰕 314314252211515
+𥰖 314314342511135
+𥰗 314314325115215
+𥰘 3143145435411515
+𥰙 3143142521353134
+𥰚 3143141221112343
+𥰛 3143144413443521
+𥰜 3143141234341534
+𥰝 3143143251114544
+𥰞 3143143211511254
+𥰟 3143141212513534
+𥰠 3143144153313534
+𥰡 3143141252343134
+𥰢 3143143513541541
+𥰣 3143143545325121
+𥰤 314314441154325
+𥰥 3143143443554134
+𥰦 3143145133321254
+𥰧 3143143213412512
+𥰨 3143144334433422
+𥰩 3143143211511132
+𥰪 3143145312513115
+𥰫 3143141343434251
+𥰬 3143143512143112
+𥰭 3143144311213121
+𥰮 3143145325112512
+𥰯 3143141251212512
+𥰰 3143141234341132
+𥰱 3143144544251214
+𥰲 3143144334122134
+𥰳 3143141251112354
+𥰴 3143143525113515
+𥰵 3143144143122
+𥰶 3143144453121251
+𥰷 3143143545525121
+𥰸 3143141545412511
+𥰹 3143143541413434
+𥰺 3143141213543554
+𥰻 3143142511134251
+𥰼 3143141245554234
+𥰽 3143143321531534
+𥰾 3143144453531211
+𥰿 3143143525111234
+𥱀 314314441134115
+𥱁 3143142535251134
+𥱂 3143145111122534
+𥱃 3143143525135454
+𥱄 3143141134251214
+𥱅 3143142534341132
+𥱆 3143144143154121
+𥱇 3143141325224334
+𥱈 3143143251113124
+𥱉 3143143534511534
+𥱊 3143144131221252
+𥱋 3143144415341234
+𥱌 3143143225131134
+𥱍 3143141251112354
+𥱎 3143141221525211
+𥱏 3143141122125211
+𥱐 3143142512511211
+𥱑 3143144311213554
+𥱒 3143144411234341
+𥱓 3143141234125341
+𥱔 3143141153425221
+𥱕 3143141221113454
+𥱖 3143145213554234
+𥱗 3143141253413534
+𥱘 3143141354151234
+𥱙 3143141325223134
+𥱚 3143145151525221
+𥱛 3143141234125351
+𥱜 3143141234111215
+𥱝 3143141234133125
+𥱞 3143144312343354
+𥱟 3143142513411251
+𥱠 3143142513121251
+𥱡 3143142522113534
+𥱢 3143142522132154
+𥱣 3143143412513434
+𥱤 3143143223134333
+𥱥 314314523541234
+𥱦 3143145544444412
+𥱧 3143141113431234
+𥱨 3143141121554234
+𥱩 3143141214311234
+𥱪 3143142512452511
+𥱫 3143141341211154
+𥱬 3143144111251515
+𥱭 3143143212111534
+𥱮 3143141213443531
+𥱯 3143142511121124
+𥱰 3143143321212134
+𥱱 3143144143121251
+𥱲 3143142153154134
+𥱳 31431445115452
+𥱴 3143141211251124
+𥱵 31431454154132511
+𥱶 31431413434343434
+𥱷 31431434152511134
+𥱸 31431412512512515
+𥱹 31431412122511134
+𥱺 31431412522113455
+𥱻 3143143411234454
+𥱼 31431444132511312
+𥱽 31431425431134551
+𥱾 31431421253444441
+𥱿 31431421531535435
+𥲀 31431455525111234
+𥲁 3143141325221554
+𥲂 31431444131133112
+𥲃 31431444511353134
+𥲄 31431444143344334
+𥲅 31431451551154544
+𥲆 3143145425112454
+𥲇 31431432511134535
+𥲈 31431412212523434
+𥲉 31431421531534312
+𥲊 31431412211135352
+𥲋 31431433241554112
+𥲌 31431444152413452
+𥲍 31431412512212511
+𥲎 3143145212135121
+𥲏 31431425111323554
+𥲐 31431412341521251
+𥲑 31431425112522154
+𥲒 31431412151131234
+𥲓 3143141221125341121
+𥲔 31431412512511211
+𥲕 314314212115554234
+𥲖 31431421251223134
+𥲗 3143145244512134
+𥲘 31431453154413534
+𥲙 31431411221251122
+𥲚 31431444144511234
+𥲛 31431455444432124
+𥲜 31431421531525221
+𥲝 31431451151153254
+𥲞 31431425121252511
+𥲟 31431434112431354
+𥲠 31431441535411121
+𥲡 3143144453534544544
+𥲢 31431425123412341
+𥲣 31431425111343312
+𥲤 314314215315225211
+𥲥 31431434125125221
+𥲦 31431412522113443
+𥲧 31431431234221234
+𥲨 31431425111343115
+𥲩 3143141344311334
+𥲪 31431411234313413
+𥲫 31431443125112253
+𥲬 31431441533135154
+𥲭 31431412213545252
+𥲮 31431441251251122
+𥲯 31431412135213134
+𥲰 31431441431353334
+𥲱 31431444132411121
+𥲲 31431412211134333
+𥲳 31431412151145252
+𥲴 31431412341325111
+𥲵 31431412143122431
+𥲶 31431412111134112
+𥲷 31431412154334112
+𥲸 31431425111342444
+𥲹 31431425111542511
+𥲺 31431425121251112
+𥲻 31431425111134515
+𥲼 31431432125342154
+𥲽 3143143434121454
+𥲾 31431435521251152
+𥲿 31431453353334333
+𥳀 31431451311234124
+𥳁 314314215315225211
+𥳂 31431425121354251
+𥳃 31431445132513134
+𥳄 31431444512512134
+𥳅 3143144111251454
+𥳆 31431443252343134
+𥳇 314314332312511354
+𥳈 3143143115331153115
+𥳉 3143141213251152
+𥳊 314314543345153554
+𥳋 314314545454342444
+𥳌 31431452354131121
+𥳍 314314511121251124
+𥳎 314314121354251214
+𥳏 314314554554134534
+𥳐 314314511225111132
+𥳑 314314511225113511
+𥳒 314314441131251534
+𥳓 314314312342433541
+𥳔 31431452131213541
+𥳕 314314341122515452
+𥳖 314314123441431251
+𥳗 314314333132511134
+𥳘 314314414312511211
+𥳙 314314252521325221
+𥳚 314314354113444444
+𥳛 314314412512341354
+𥳜 31431452251113533
+𥳝 314314454445444544
+𥳞 314314431234354152
+𥳟 31431432411121454
+𥳠 31431421531535454
+𥳡 314314121222511134
+𥳢 314314431253511134
+𥳣 314314251112211154
+𥳤 31431413533434454
+𥳥 314314445454435112
+𥳦 314314243252512343
+𥳧 314314112121212134
+𥳨 314314513352513554
+𥳩 314314354532512122
+𥳪 31431425111132454
+𥳫 314314251221343541
+𥳬 314314254312114444
+𥳭 314314212133541453
+𥳮 314314545454554234
+𥳯 314314123412212511
+𥳰 314314431253511124
+𥳱 314314312135312135
+𥳲 31431452251141431
+𥳳 314314121251112134
+𥳴 314314341335413554
+𥳵 314314554444535215
+𥳶 314314243452513112
+𥳷 314314441431251122
+𥳸 314314341212511135
+𥳹 314314341212511134
+𥳺 314314121353344544
+𥳻 314314441112155414
+𥳼 314314312342511112
+𥳽 314314122111343534
+𥳾 314314341124313511
+𥳿 31431435251354454
+𥴀 314314412512511121
+𥴁 314314412512511211
+𥴂 314314251211122112
+𥴃 314314113534251112
+𥴄 314314453521251112
+𥴅 314314431234125351
+𥴆 314314121431125254
+𥴇 314314123411134112
+𥴈 314314123415341534
+𥴉 314314355435542511
+𥴊 314314121221113134
+𥴋 314314121221113534
+𥴌 314314251111341234
+𥴍 314314123454334112
+𥴎 31431425341353334
+𥴏 314314341124314444
+𥴐 314314121121121121
+𥴑 314314125351131121
+𥴒 312312312312312312
+𥴓 314314334343434121
+𥴔 314314343421325111
+𥴕 314314353431253511
+𥴖 314314123432511312
+𥴗 314314554444415435
+𥴘 314314531122111234
+𥴙 314314123421251112
+𥴚 314314325111111112
+𥴛 314314123432411121
+𥴜 314314411125153251
+𥴝 3143143415115452
+𥴞 314314255212511521
+𥴟 314314123431234531
+𥴠 314314251111342534
+𥴡 3143142512211251431
+𥴢 3143143123432411121
+𥴣 3143143354143541112
+𥴤 314314354151111254
+𥴥 3143145112251154132
+𥴦 314314431353334454
+𥴧 3143142153151353334
+𥴨 3143143443454544354
+𥴩 314314521251254312
+𥴪 314314251125214454
+𥴫 3143145131221343554
+𥴬 3143145132514143112
+𥴭 3143141234251135345
+𥴮 3143141211251124124
+𥴯 3143144133251213554
+𥴰 3143144143111213511
+𥴱 3143144135221154444
+𥴲 3143145151531344544
+𥴳 3143145153543544544
+𥴴 3143143411243135251
+𥴵 3143142511134251214
+𥴶 3143143541522511134
+𥴷 3143142135454431234
+𥴸 3143142522145134534
+𥴹 3143141252342511134
+𥴺 3143144315545544544
+𥴻 3143141213415113251
+𥴼 3143142243143111234
+𥴽 3143144413223541234
+𥴾 3143141211251124124
+𥴿 314314135221121251
+𥵀 3143142511252214153
+𥵁 3143145112413425221
+𥵂 3143142153152511134
+𥵃 3143141534153425221
+𥵄 3143144413545325121
+𥵅 3143141234353344544
+𥵆 3143144143125114544
+𥵇 3143141121252132522
+𥵈 3143141213125125221
+𥵉 3143141452413425121
+𥵊 31431434125243112511
+𥵋 3143143412522135351
+𥵌 314314343511154444
+𥵍 3143143533251511252
+𥵎 3143143211212511134
+𥵏 3143141253511341121
+𥵐 3143141344325114334
+𥵑 3143142511145342525
+𥵒 3143142511452511135
+𥵓 3143143215111213554
+𥵔 3143141325132511312
+𥵕 3143142511532514444
+𥵖 3143143511251214544
+𥵗 3143144143125113534
+𥵘 3143142511132135422
+𥵙 3143142522121251112
+𥵚 3143141221251112153
+𥵛 3143142512211311534
+𥵜 31431432224314311134
+𥵝 31431434154132511134
+𥵞 31431412132411121534
+𥵟 3143142522112132511
+𥵠 31431412145312343554
+𥵡 31431412341122125211
+𥵢 31431422431431121124
+𥵣 31431441431252132522
+𥵤 31431455444421251112
+𥵥 31431444112212523434
+𥵦 31431412111542433541
+𥵧 31431451121444425221
+𥵨 314314325111445354153
+𥵩 31431445234312511354
+𥵪 31431441431513431132
+𥵫 31431412211154323434
+𥵬 31431441354154134333
+𥵭 31431441221125341121
+𥵮 31431455444434154544
+𥵯 31431413533151152134
+𥵰 31431412341251254312
+𥵱 31431413443112353112
+𥵲 31431425354334433422
+𥵳 31431454154141431531
+𥵴 314314315541431344544
+𥵵 31431412122511134252
+𥵶 31431425122134312251
+𥵷 31431434435332511211
+𥵸 31431432511145352525
+𥵹 31431455444444511234
+𥵺 31431425111134251234
+𥵻 31431455444432411121
+𥵼 31431412343413413251
+𥵽 31431412155155115251
+𥵾 31431431234312511211
+𥵿 3143141224511353334
+𥶀 31431455444425125115
+𥶁 31431441431131251234
+𥶂 31431412211134354354
+𥶃 3143141222522145354
+𥶄 31431453112512343134
+𥶅 314314441121525125121
+𥶆 314314511225112513251
+𥶇 314314352512144442511
+𥶈 314314355233552353254
+𥶉 314314251111344511534
+𥶊 314314251111345525221
+𥶋 314314252343123425121
+𥶌 314314215315251214544
+𥶍 314314554444344311354
+𥶎 314314441441353425221
+𥶏 314314411125135121251
+𥶐 31431452251212511134
+𥶑 314314431121341511534
+𥶒 31431443344334354152
+𥶓 314314252215435411515
+𥶔 314314413522115154444
+𥶕 31431435131535312251
+𥶖 314314252214334433422
+𥶗 314314153113434431234
+𥶘 314314445321511354444
+𥶙 314314111211125114544
+𥶚 314314251221343121251
+𥶛 3143142512121251112134
+𥶜 314314531122514143112
+𥶝 314314521335441241312
+𥶞 314314441451153425221
+𥶟 314314251251251342444
+𥶠 314314123454545434333
+𥶡 314314125111234125122
+𥶢 314314555253413524134
+𥶣 314314445134432511234
+𥶤 314314311234251225251
+𥶥 31431412345425112454
+𥶦 314314121252212511134
+𥶧 314314445354125125251
+𥶨 31431425121445115452
+𥶩 314314251141251234333
+𥶪 314314121343434342511
+𥶫 314314531343421325111
+𥶬 314314111211125114444
+𥶭 314314122511123411234
+𥶮 314314123425232411121
+𥶯 32511355431431425121
+𥶰 314314513432524312511
+𥶱 31431432511325113554
+𥶲 314314132511325113251
+𥶳 314314554444131251534
+𥶴 31431452131213541121
+𥶵 3143143215114312343554
+𥶶 3143141214311235431234
+𥶷 314314515515122134454
+𥶸 314314125112141241554
+𥶹 3143141121351134435112
+𥶺 314314122111341541234
+𥶻 31431452431353334454
+𥶼 31431452431353334454
+𥶽 314314332521251152112
+𥶾 3143141211123451124134
+𥶿 3143145112251135321511
+𥷀 3143141221251211154444
+𥷁 3143144143113534143112
+𥷂 3143141234251342511132
+𥷃 314314521335441241234
+𥷄 3143143413425234343434
+𥷅 3143141331234312344334
+𥷆 3143141214515542343554
+𥷇 3143142512511344251251
+𥷈 3143141234414312511211
+𥷉 3143143323525121444452
+𥷊 314314134432511234454
+𥷋 3143142512512511123312
+𥷌 3143141212211131344544
+𥷍 3143142511251134112431
+𥷎 3143142121233132511134
+𥷏 3143143411243132511252
+𥷐 3143141212522113443112
+𥷑 3143141312515343535112
+𥷒 3143141331234312342121
+𥷓 314314344511543443531
+𥷔 31431432111251112511134
+𥷕 31431412211134122151234
+𥷖 3143144312343541521554
+𥷗 31431412341123451124134
+𥷘 31431412154154132411121
+𥷙 31431425221134334433422
+𥷚 31431412143112354111251
+𥷛 31431441251234135425111
+𥷜 31431432411121351251214
+𥷝 31431451312213435543541
+𥷞 31431425554234554234134
+𥷟 31431425342534353425221
+𥷠 31431421253444443444441
+𥷡 31431443343412512513434
+𥷢 31431412152513411243122
+𥷣 31431412342513425115354
+𥷤 31431413443112354111251
+𥷥 31431412212511235431234
+𥷦 31431421253444441251112
+𥷧 31431444154154132411121
+𥷨 314314122111122111122111
+𥷩 314314413434123432411121
+𥷪 314314121121211121111534
+𥷫 314314254312114444121251
+𥷬 314314212125125132411121
+𥷭 314314123412342534343134
+𥷮 31431434432522151154124
+𥷯 31431412212213425111112
+𥷰 314314441121211121111534
+𥷱 314314125221332312511354
+𥷲 314314332352512144443134
+𥷳 314314212134341343452315
+𥷴 314314134431112354111251
+𥷵 314314415252211221111515
+𥷶 314314415252213541531354
+𥷷 314314125125314251251251
+𥷸 314314311234343434342511
+𥷹 312312312312312312312312
+𥷺 31431441112511222511134
+𥷻 31431414524444431234454
+𥷼 3143144125123413542512134
+𥷽 3143145131221343554253434
+𥷾 3143142522154354115154444
+𥷿 3143145552512141312214444
+𥸀 3143141342523434343411214
+𥸁 3143141221251113432411121
+𥸂 3143142512511351125113554
+𥸃 3143143215111214312343554
+𥸄 3143144111251153515352511
+𥸅 314314325111445352525454
+𥸆 3143143511555253415445445
+𥸇 3143142512511325135413554
+𥸈 31431424345251254312114444
+𥸉 31431441431354115151111234
+𥸊 31431441431353334132511134
+𥸋 3143143215111213554431234
+𥸌 31431432411121543241112154
+𥸍 31431451122511251251251112
+𥸎 31431435114311341211254444
+𥸏 31431441251252513541531354
+𥸐 314314145241342512121354251
+𥸑 314314251251324111212535251
+𥸒 314314251141251251112213534
+𥸓 314314121122111122111122111
+𥸔 314314411125112132411121534
+𥸕 314314251212512125121554234
+𥸖 314314212534444412511251522
+𥸗 3143144411254125441352211515
+𥸘 31431444125111251113241112154
+𥸙 31431425121214143135411515111
+𥸚 3143141212522125111342511135
+𥸛 3143142121343413434522512134
+𥸜 3143144143125113555212511134
+𥸝 3143144111251113411342511134
+𥸞 31431421213434134345212211134
+𥸟 31431421213434134345244512134
+𥸠 314314125124525112512211251431
+𥸡 314314414312511123541212511134
+𥸢 314314153515352511251214251214
+𥸣 3143142543121144443513354111251
+𥸤 31431434125125125125122132511134
+𥸥 5431234
+𥸦 5431234
+𥸧 43123412
+𥸨 54312341
+𥸩 43123454
+𥸪 43123434
+𥸫 335431234
+𥸬 43123452
+𥸭 431234132
+𥸮 121431234
+𥸯 431234153
+𥸰 431234112
+𥸱 431234335
+𥸲 431234515
+𥸳 4312341254
+𥸴 4312341255
+𥸵 4312341525
+𥸶 4312341132
+𥸷 4312343534
+𥸸 4312345134
+𥸹 4312344134
+𥸺 4312343215
+𥸻 4312343521
+𥸼 4312343534
+𥸽 4312343115
+𥸾 4312343552
+𥸿 5215431234
+𥹀 4312344544
+𥹁 43123431211
+𥹂 43123413241
+𥹃 43123432124
+𥹄 21453431234
+𥹅 43123445434
+𥹆 43123451315
+𥹇 43123454132
+𥹈 43123444535
+𥹉 43123425541
+𥹊 43123425351
+𥹋 43123454251
+𥹌 53251431234
+𥹍 43123444512
+𥹎 43123443112
+𥹏 135454431234
+𥹐 21533431234
+𥹑 43123412215
+𥹒 43123414312
+𥹓 43123412154
+𥹔 43123413544
+𥹕 43123434154
+𥹖 43123453254
+𥹗 43123452525
+𥹘 43123412534
+𥹙 43123453251
+𥹚 431234125111
+𥹛 353134431234
+𥹜 431234413434
+𥹝 431234325251
+𥹞 431234251153
+𥹟 212554431234
+𥹠 431234354354
+𥹡 531251431234
+𥹢 431234122111
+𥹣 431234251221
+𥹤 431234252211
+𥹥 431234243511
+𥹦 441354431234
+𥹧 431234511112
+𥹨 431234112154
+𥹩 431234121124
+𥹪 431234354152
+𥹫 431234431234
+𥹬 431234121315
+𥹭 441534431234
+𥹮 431234354152
+𥹯 431234111234
+𥹰 431234531354
+𥹱 43123455453
+𥹲 4312343525135
+𥹳 4312344451135
+𥹴 4312342121233
+𥹵 4312341251234
+𥹶 4312342433541
+𥹷 4312344154325
+𥹸 4312341245521
+𥹹 5133115431234
+𥹺 4135112431234
+𥹻 4312344154132
+𥹼 4312345452134
+𥹽 4312343443124
+𥹾 4312343541112
+𥹿 4312344334121
+𥺀 4312344351523
+𥺁 4312344131214
+𥺂 4312342535251
+𥺃 4312341214544
+𥺄 4312341213521
+𥺅 4312341113124
+𥺆 4312342513121
+𥺇 4312344312345
+𥺈 4312341213312
+𥺉 4312341251431
+𥺊 4312343121251
+𥺋 5225234431234
+𥺌 4312343411234
+𥺍 4312344534112
+𥺎 4312342511134
+𥺏 4312342513534
+𥺐 4312342513312
+𥺑 4312345114554
+𥺒 4312342512115
+𥺓 4312342513251
+𥺔 2513534431234
+𥺕 4312341215215
+𥺖 4312341324251
+𥺗 4312341252211
+𥺘 43123431112111
+𥺙 43123412135354
+𥺚 43123412343312
+𥺛 43123425121412
+𥺜 44151315431234
+𥺝 43123435121251
+𥺞 43123441543541
+𥺟 21112111431234
+𥺠 12512245431234
+𥺡 4312345231525
+𥺢 43123435425121
+𥺣 43123452115211
+𥺤 21123454431234
+𥺥 43123444525111
+𥺦 43123441321251
+𥺧 43123441351134
+𥺨 43123441312251
+𥺩 43123443155424
+𥺪 43123441343511
+𥺫 43123414312345
+𥺬 43123452125221
+𥺭 43123413443115
+𥺮 43123412212511
+𥺯 43123412123553
+𥺰 43123425111234
+𥺱 43123421123454
+𥺲 43123434435112
+𥺳 43123425153541
+𥺴 43123434154544
+𥺵 43123435542511
+𥺶 43123451331134
+𥺷 43123451352252
+𥺸 43123452152511
+𥺹 43123444535455
+𥺺 43123425241431
+𥺻 43123434112431
+𥺼 43123412155121
+𥺽 43123434125122
+𥺾 43123421212511
+𥺿 43123413412512
+𥻀 43123435424251
+𥻁 431234252132522
+𥻂 431234125431234
+𥻃 431234125123422
+𥻄 431234153532511
+𥻅 431234125125121
+𥻆 212534341431234
+𥻇 431234131251534
+𥻈 431234122151234
+𥻉 431234251135345
+𥻊 153113454431234
+𥻋 43123435415235
+𥻌 125123422431234
+𥻍 431234251212511
+𥻎 431234122134121
+𥻏 431234251214544
+𥻐 431234513431234
+𥻑 431234251125214
+𥻒 431234354431234
+𥻓 431234113534251
+𥻔 431234112211322
+𥻕 431234433411234
+𥻖 431234431353334
+𥻗 431234123425111
+𥻘 431234354152555
+𥻙 431234431121134
+𥻚 431234414312511
+𥻛 431234125351121
+𥻜 431234251211344
+𥻝 431234312511211
+𥻞 431234445354251
+𥻟 431234132522134
+𥻠 431234251112343
+𥻡 431234521325111
+𥻢 431234251325111
+𥻣 431234121121124
+𥻤 4312343552335523
+𥻥 4312341251254312
+𥻦 34123543554431234
+𥻧 4312344315112234
+𥻨 4312341245554234
+𥻩 4312344525114134
+𥻪 4312342112112134
+𥻫 5431234154312341
+𥻬 4312343241112154
+𥻭 4312344143454153
+𥻮 4312344454143112
+𥻯 4312342515122111
+𥻰 4312341122125211
+𥻱 4312342512511134
+𥻲 4312343415113251
+𥻳 1211123434431234
+𥻴 1325111354431234
+𥻵 4312342511121124
+𥻶 4312342521251431
+𥻷 4312343251113412
+𥻸 4312342522112341
+𥻹 431234122341234
+𥻺 4312343443554134
+𥻻 4312345544442534
+𥻼 4312343251154444
+𥻽 4312341344121251
+𥻾 431234431234354
+𥻿 4312344134522554
+𥼀 43123413211234534
+𥼁 43123441554413412
+𥼂 43123425232411121
+𥼃 43123411212511134
+𥼄 43123431234431234
+𥼅 1523313413431234
+𥼆 12152133554431234
+𥼇 43123454334252252
+𥼈 43123454334252523
+𥼉 43123412213425211
+𥼊 43123441332511312
+𥼋 11234313413431234
+𥼌 43123441312214444
+𥼍 43123444532132511
+𥼎 43123443112112124
+𥼏 43123412511123112
+𥼐 43123425125111234
+𥼑 43123425121431234
+𥼒 32511131354431234
+𥼓 43123421213525112
+𥼔 43123444112343312
+𥼕 43123431431441431
+𥼖 43123431554143134
+𥼗 431234551351221535
+𥼘 431234554554134534
+𥼙 431234511241344444
+𥼚 431234324111214444
+𥼛 311531153115431234
+𥼜 431234224314311134
+𥼝 431234344134522554
+𥼞 431234211121114444
+𥼟 43123425221323434
+𥼠 431234211121111234
+𥼡 431234351351221535
+𥼢 431234121225111234
+𥼣 431234311222214444
+𥼤 431234122111343312
+𥼥 431234125121354444
+𥼦 431234125121125121
+𥼧 431234121225111234
+𥼨 431234354152431234
+𥼩 431234251212511134
+𥼪 431234343434342511
+𥼫 431234354354431234
+𥼬 431234431234431234
+𥼭 431234431234354152
+𥼮 431234554444431234
+𥼯 431234254311214444
+𥼰 431234543341251431
+𥼱 431234313425125251
+𥼲 431234121221113134
+𥼳 431234121551214544
+𥼴 431234511225112511
+𥼵 43123413553425221
+𥼶 4312342522112143112
+𥼷 4312344125251125111
+𥼸 4312341452413434454
+𥼹 4312343215111213554
+𥼺 4312343251114143112
+𥼻 4312344135342511134
+𥼼 431234125112441533134
+𥼽 4312345434525125121
+𥼾 4312342512512511234
+𥼿 125125445531431234
+𥽀 5225243123432411121
+𥽁 431234344511543534
+𥽂 3115111213554431234
+𥽃 431234325111135415
+𥽄 4312345544444125135
+𥽅 4312344134132511312
+𥽆 4312342135454431234
+𥽇 4312341312515344544
+𥽈 4312342512211251431
+𥽉 4312342522113443112
+𥽊 4312343431234545455
+𥽋 4312343412512513434
+𥽌 431234431325111454
+𥽍 4312341234123411234
+𥽎 4312345314315112234
+𥽏 12512531425221431234
+𥽐 12512534125122431234
+𥽑 43123421112111431234
+𥽒 43123412221122211234
+𥽓 43123441312341234354
+𥽔 43123455444432511252
+𥽕 43123444535445411234
+𥽖 43123455455415545545
+𥽗 431234325115545541234
+𥽘 431234212125221134534
+𥽙 431234251213251111344
+𥽚 121225111253254431234
+𥽛 431234145244441234341
+𥽜 431234215315251214544
+𥽝 431234413512254544354
+𥽞 431234254311214444121
+𥽟 431234132511454544354
+𥽠 554554155455454312345
+𥽡 345343123425121122134
+𥽢 431234123434341234134
+𥽣 431234145244445114334
+𥽤 125443123425121122134
+𥽥 4312341452444432411121
+𥽦 2243143112523554431234
+𥽧 3143141344311234431234
+𥽨 4312344131234123413251
+𥽩 431234513241343112454
+𥽪 4312343143141211254444
+𥽫 4312341221251211354444
+𥽬 43123441251251112213534
+𥽭 43123451122511125431234
+𥽮 43123414524134515515515
+𥽯 43123414524134132522111
+𥽰 43123441312351235431234
+𥽱 32151143123441431331121
+𥽲 224313425234343434431234
+𥽳 321143123451145251122111
+𥽴 431234445354251445354251
+𥽵 431234554444121121121135
+𥽶 4312341252213251141533134
+𥽷 4312343121353121352511134
+𥽸 4312345544444111251554444
+𥽹 1252214312342512512511234
+𥽺 4312342522155444432411121
+𥽻 43123424345251254312114444
+𥽼 43123412125112251132411121
+𥽽 21253434143123441431331121
+𥽾 43123412511234125112342511
+𥽿 22431431123215113554431234
+𥾀 431234125221531324111214444
+𥾁 431234212534444412511251522
+𥾂 431234145241342512512511234341
+𥾃 4312344111251554444554444251214
+𥾄 212534341212534341212534341431234
+𥾅 55444412
+𥾆 55444455
+𥾇 55444452
+𥾈 35554234
+𥾉 55444435
+𥾊 55444435
+𥾋 55444453
+𥾌 554444521
+𥾍 554444112
+𥾎 554444132
+𥾏 554444515
+𥾐 554444154
+𥾑 554444315
+𥾒 554444112
+𥾓 554444342
+𥾔 554444253
+𥾕 554444135
+𥾖 554444325
+𥾗 554444234
+𥾘 554444121
+𥾙 5544441524
+𥾚 5544444535
+𥾛 5544441553
+𥾜 3452554234
+𥾝 5544441255
+𥾞 5544443535
+𥾟 1132554234
+𥾠 5544445344
+𥾡 5544443511
+𥾢 5544443511
+𥾣 5544441254
+𥾤 5544445454
+𥾥 3434554234
+𥾦 5544441132
+𥾧 5544441252
+𥾨 5544443115
+𥾩 1354554234
+𥾪 5544443444
+𥾫 5544443112
+𥾬 5544441554
+𥾭 5544443324
+𥾮 5544441534
+𥾯 5544445152
+𥾰 5544441221
+𥾱 5544441215
+𥾲 5544442154
+𥾳 5544441535
+𥾴 5544442515
+𥾵 5544441354
+𥾶 5544443511
+𥾷 5544443132
+𥾸 5544443533
+𥾹 5544443112
+𥾺 5544443434
+𥾻 4134554234
+𥾼 5544444152
+𥾽 5544444124
+𥾾 5544443224
+𥾿 5544443112
+𥿀 5544442511
+𥿁 5544441121
+𥿂 5544444544
+𥿃 53251554234
+𥿄 55444435151
+𥿅 31134554234
+𥿆 55444451251
+𥿇 55444452134
+𥿈 55444431354
+𥿉 55444411234
+𥿊 55444433124
+𥿋 55444454132
+𥿌 55444455453
+𥿍 55444412251
+𥿎 55444435455
+𥿏 51532554234
+𥿐 55444434115
+𥿑 55444435122
+𥿒 55444445351
+𥿓 55444425151
+𥿔 55423412134
+𥿕 55444421251
+𥿖 55444425351
+𥿗 55444425134
+𥿘 55444431234
+𥿙 55444431113
+𥿚 12153554234
+𥿛 55444425211
+𥿜 55444431234
+𥿝 32154554234
+𥿞 55444432525
+𥿟 25234554234
+𥿠 55423413252
+𥿡 55444451315
+𥿢 55444445354
+𥿣 55444412115
+𥿤 55444432121
+𥿥 55444432121
+𥿦 554444335414
+𥿧 554444325251
+𥿨 554444354251
+𥿩 113534554234
+𥿪 554444345325
+𥿫 554444354354
+𥿬 554444431523
+𥿭 554444341354
+𥿮 554444112154
+𥿯 554444333534
+𥿰 554444531234
+𥿱 55444453521
+𥿲 554444515211
+𥿳 554444325341
+𥿴 554444351234
+𥿵 554444543112
+𥿶 554444132522
+𥿷 554444534534
+𥿸 554444354252
+𥿹 554444413234
+𥿺 554444415531
+𥿻 554234352511
+𥿼 554444415325
+𥿽 554444445531
+𥿾 554444445124
+𥿿 414345554234
+𦀀 445531554234
+𦀁 554444545454
+𦀂 121554234534
+𦀃 554444121252
+𦀄 554444251351
+𦀅 554444311212
+𦀆 554444352511
+𦀇 554444134121
+𦀈 554444312135
+𦀉 554444351234
+𦀊 554444151534
+𦀋 554444412534
+𦀌 554234531251
+𦀍 554444132121
+𦀎 554444135422
+𦀏 554444523134
+𦀐 554444413121
+𦀑 554444413422
+𦀒 2511554444112
+𦀓 5544444143112
+𦀔 5544442512115
+𦀕 5544442515215
+𦀖 5544441215453
+𦀗 5544441213234
+𦀘 5544441535121
+𦀙 5544443253541
+𦀚 5544442513121
+𦀛 5544444412343
+𦀜 5544445213121
+𦀝 5544442535251
+𦀞 5544441255151
+𦀟 4412343554234
+𦀠 5544444154325
+𦀡 5544441251251
+𦀢 5544443152134
+𦀣 3554554554234
+𦀤 2511134554234
+𦀥 3215111554234
+𦀦 5544443515252
+𦀧 5325153554234
+𦀨 554444511352
+𦀩 5544445215454
+𦀪 5544443232511
+𦀫 5544444131344
+𦀬 5544444511534
+𦀭 5544444334251
+𦀮 5544444134152
+𦀯 5544445135251
+𦀰 5544441324121
+𦀱 5115234554234
+𦀲 5544445113251
+𦀳 5544441113124
+𦀴 5544441212415
+𦀵 5544442512512
+𦀶 5544442511341
+𦀷 5544445435354
+𦀸 5544443251135
+𦀹 5544441234124
+𦀺 5544441251112
+𦀻 5544445153134
+𦀼 5544442522534
+𦀽 5544443121251
+𦀾 5544444131234
+𦀿 5544445133115
+𦁀 5544442511134
+𦁁 5544444425211
+𦁂 5544443243112
+𦁃 5544443525121
+𦁄 5544441311534
+𦁅 5544444523453
+𦁆 55444412512154
+𦁇 55444434114544
+𦁈 55444444535121
+𦁉 55444441431531
+𦁊 55444412112124
+𦁋 41431554234534
+𦁌 55444434151154
+𦁍 55444434433121
+𦁎 55444412212511
+𦁏 55444413425115
+𦁐 55444451352252
+𦁑 55444413443112
+𦁒 25431554234345
+𦁓 13434554234534
+𦁔 55444411344544
+𦁕 55444435334544
+𦁖 55444444525121
+𦁗 5544442121233
+𦁘 13543134554234
+𦁙 55444441345435
+𦁚 55444425545545
+𦁛 55444441541234
+𦁜 55444412211234
+𦁝 12345213554234
+𦁞 45444544554234
+𦁟 55444433121534
+𦁠 55423425113511
+𦁡 55444421212134
+𦁢 55444412111534
+𦁣 55444452133544
+𦁤 55444434154544
+𦁥 55444413425222
+𦁦 55444441321251
+𦁧 55444452125221
+𦁨 55444412513444
+𦁩 55444413121121
+𦁪 55444412135121
+𦁫 12211154554234
+𦁬 12212511554234
+𦁭 55444421531554
+𦁮 55444435113511
+𦁯 55444435343534
+𦁰 55444425121132
+𦁱 55444412125135
+𦁲 55444421531535
+𦁳 55444431234521
+𦁴 55444432115112
+𦁵 55444435321511
+𦁶 55444441351134
+𦁷 55444441531354
+𦁸 55444434125152
+𦁹 55444441323544
+𦁺 55444451122511
+𦁻 55444432511121
+𦁼 55444412343134
+𦁽 55444425111121
+𦁾 55444412125134
+𦁿 55444453112251
+𦂀 554444413122154
+𦂁 554444431353334
+𦂂 554444121344512
+𦂃 554444412514512
+𦂄 554444153532511
+𦂅 554444542511234
+𦂆 55444425251154
+𦂇 5544442153153134
+𦂈 554444251213541
+𦂉 554444112321511
+𦂊 554444412511354
+𦂋 554444513151234
+𦂌 121121124554234
+𦂍 554444121213251
+𦂎 312344334554234
+𦂏 554444433431234
+𦂐 554444351331134
+𦂑 554444354121251
+𦂒 554444431351122
+𦂓 554444121251532
+𦂔 554444352513553
+𦂕 554444251125214
+𦂖 554444325121132
+𦂗 243354122554234
+𦂘 55444415151234
+𦂙 554444431134121
+𦂚 554444312433541
+𦂛 554444415331525
+𦂜 554444313443112
+𦂝 55444425153541
+𦂞 354554234554234
+𦂟 351335444554234
+𦂠 554444412511234
+𦂡 554444134431112
+𦂢 554444325121132
+𦂣 554444255455452
+𦂤 554444513431132
+𦂥 554444132512534
+𦂦 554444445354251
+𦂧 55444445115452
+𦂨 554444445132511
+𦂩 55444451111254
+𦂪 554444125112453
+𦂫 55444412211152
+𦂬 554444125221155
+𦂭 554444121212512
+𦂮 554444253444441
+𦂯 5544443525213444
+𦂰 554444321111554
+𦂱 554444351251214
+𦂲 55444414325234
+𦂳 125125314554234
+𦂴 554444253434252
+𦂵 55444433243145
+𦂶 554444414312512
+𦂷 554444515253541
+𦂸 554234325114454
+𦂹 554234534353432
+𦂺 554444414312511
+𦂻 554444332511112
+𦂼 554444122111345
+𦂽 554444445341344
+𦂾 55444431134454
+𦂿 554444124552153
+𦃀 554444332121124
+𦃁 554444343425152
+𦃂 1225125314554234
+𦃃 3234343434554234
+𦃄 5544441311121115
+𦃅 1121554234354251
+𦃆 1245554234354251
+𦃇 5544443321531535
+𦃈 5544443211511254
+𦃉 5544443134431523
+𦃊 5544441252211234
+𦃋 5544443253411535
+𦃌 5544445114525254
+𦃍 5544443253541132
+𦃎 5544441221111534
+𦃏 55444434123543554
+𦃐 5544444544251214
+𦃑 5544441212415325
+𦃒 5544445225211234
+𦃓 5544443545325121
+𦃔 5544441251254312
+𦃕 55444435435244544
+𦃖 5544444334433422
+𦃗 4315233511554234
+𦃘 5544445134143112
+𦃙 2511122134554234
+𦃚 3434343434554234
+𦃛 554444343425152
+𦃜 5544441212352511
+𦃝 5544441212554234
+𦃞 5544443253414544
+𦃟 3443554444554234
+𦃠 5544442512125121
+𦃡 554444354554234
+𦃢 1312512554554234
+𦃣 5544441325125251
+𦃤 5452335453554234
+𦃥 5544443511252325
+𦃦 1225125145554234
+𦃧 5544443251113251
+𦃨 5544443215111234
+𦃩 5544442512134354
+𦃪 5544441122125211
+𦃫 5544443555414325
+𦃬 5544443223542511
+𦃭 5542343251115252
+𦃮 554444122415334
+𦃯 5544442512153254
+𦃰 5544442522125115
+𦃱 5544443134431112
+𦃲 5544444451353334
+𦃳 5544444132344544
+𦃴 5544445151525121
+𦃵 5544441213544544
+𦃶 5544441324111215
+𦃷 5544441251131325
+𦃸 5544441221114334
+𦃹 5544443415113251
+𦃺 5544443225131134
+𦃻 5544442511341534
+𦃼 5544444525114134
+𦃽 5544445552515215
+𦃾 5544441354224444
+𦃿 5544442522112154
+𦄀 5544441211254444
+𦄁 554444511534454
+𦄂 55444412213545252
+𦄃 5544441213312251
+𦄄 554444511325152
+𦄅 5544441314334534
+𦄆 5544441212511211
+𦄇 5544444412511121
+𦄈 5544443411243122
+𦄉 13211234534554234
+𦄊 35133134251554234
+𦄋 55444432511154444
+𦄌 55444412135121354
+𦄍 55444413434343434
+𦄎 55444444512211154
+𦄏 55444412342433541
+𦄐 41352211535554234
+𦄑 55444411121112511
+𦄒 55444413513251225
+𦄓 55444432511355135
+𦄔 55444444535154121
+𦄕 55444421112111121
+𦄖 55444412125113444
+𦄗 55444412342511134
+𦄘 55444434431353334
+𦄙 55444431431412121
+𦄚 55444433321343434
+𦄛 55444425125125121
+𦄜 55444411125311234
+𦄝 55444441312214444
+𦄞 55444451122511251
+𦄟 55423433351325122
+𦄠 41112512534554234
+𦄡 55444425112522153
+𦄢 55444441351125112
+𦄣 55444441352513534
+𦄤 55444413125125534
+𦄥 55444454541214544
+𦄦 55444452134251214
+𦄧 55444412512212511
+𦄨 55444412145554234
+𦄩 55444412212511534
+𦄪 55444451324313411
+𦄫 55444412123443531
+𦄬 55444425225111535
+𦄭 55444431234534554
+𦄮 55444434434525151
+𦄯 12511214124554234
+𦄰 55444425125115341
+𦄱 55444432125342154
+𦄲 55444444532125341
+𦄳 51143123434554234
+𦄴 55444441343211234
+𦄵 55444434312344544
+𦄶 5544442511223432
+𦄷 5544445425112454
+𦄸 55444441112513454
+𦄹 55444412121251112
+𦄺 5544444511543511
+𦄻 55444455212511134
+𦄼 554444333132511134
+𦄽 55444444115151234
+𦄾 554444224314311134
+𦄿 554444254312114444
+𦅀 554444511121251124
+𦅁 554444134121325114
+𦅂 554444344335554444
+𦅃 554444324111214444
+𦅄 554444415435413134
+𦅅 554444414312511211
+𦅆 554444431253511134
+𦅇 554444122512511534
+𦅈 554444121251431333
+𦅉 554444513325125214
+𦅊 554444343434342511
+𦅋 554444113411344544
+𦅌 554444431134554234
+𦅍 554444545454554234
+𦅎 554444125121354444
+𦅏 554444132511132511
+𦅐 211554234132511134
+𦅑 554444332331225111
+𦅒 554444545454342444
+𦅓 333132511134554234
+𦅔 254312114444554234
+𦅕 124555423421251112
+𦅖 554444341251541541
+𦅗 554444431121413534
+𦅘 554444511225112511
+𦅙 554444145241344134
+𦅚 354431122513554234
+𦅛 554444511121354124
+𦅜 554444445132522112
+𦅝 554444431121325111
+𦅞 554444121413534534
+𦅟 554444132512125221
+𦅠 554444121211212112
+𦅡 554444251141251234
+𦅢 554444121235334544
+𦅣 554444252131213134
+𦅤 554444511225114134
+𦅥 554444352512125115
+𦅦 554444113411342511
+𦅧 554444224314325234
+𦅨 333554234132511134
+𦅩 554444341251212511
+𦅪 343434343434554234
+𦅫 112155423434125152
+𦅬 134431125344554234
+𦅭 55444452431353334
+𦅮 554444343434343412
+𦅯 554444314314121124
+𦅰 554444125221251112
+𦅱 554444251214311234
+𦅲 554444121213415534
+𦅳 554444325334411312
+𦅴 513311555444435151
+𦅵 5544442121131233534
+𦅶 5544441212251135345
+𦅷 5544441212121325114
+𦅸 3544311252213554234
+𦅹 3544414312513554234
+𦅺 5544443513134425221
+𦅻 1121554234344311354
+𦅼 5544443513354111251
+𦅽 3234343434134554234
+𦅾 3251141533134554234
+𦅿 5544442511451251112
+𦆀 5544444311214413534
+𦆁 4152513541554234354
+𦆂 5544442522135251214
+𦆃 5544441312515343534
+𦆄 5544441121112145434
+𦆅 5544442511252214153
+𦆆 5544444134315112234
+𦆇 5544442121112431251
+𦆈 554444324111212525
+𦆉 5544444135221154444
+𦆊 5544442251112511211
+𦆋 5544441234342511134
+𦆌 5544444154545454134
+𦆍 5544444131251112134
+𦆎 5544442522113443112
+𦆏 5544441212112341251
+𦆐 5544441221252554554
+𦆑 5544441325431211121
+𦆒 5544443253431234115
+𦆓 5544443322521353134
+𦆔 5544443443454544354
+𦆕 5542341251112554234
+𦆖 5544441344325114334
+𦆗 3234343434554234354
+𦆘 5544443251132151135
+𦆙 5544441452444425121
+𦆚 5544443251115413534
+𦆛 5544443444445235354
+𦆜 55444412211154323334
+𦆝 55444412522111234124
+𦆞 55444431122221354152
+𦆟 55444412124511353334
+𦆠 55444412512125111345
+𦆡 55444413433443343115
+𦆢 55444425344334433422
+𦆣 55444451341431124554
+𦆤 554444344325234343434
+𦆥 5544444455443251214
+𦆦 55444415311345452134
+𦆧 55444423434343413121
+𦆨 55444413122251125214
+𦆩 33243324554444554234
+𦆪 55444441251112343534
+𦆫 121431224314412554234
+𦆬 55444412123234342134
+𦆭 55444444545442522112
+𦆮 55444425215542343134
+𦆯 55444444552132511134
+𦆰 52334345233312554234
+𦆱 55444443344334451234
+𦆲 55444441354154134333
+𦆳 55444443251354325135
+𦆴 55444425115545544444
+𦆵 55444435251353525135
+𦆶 55444412121214111251
+𦆷 55444421112111125211
+𦆸 5544443443311252454
+𦆹 55444422431431121124
+𦆺 55444434454132511134
+𦆻 554444555253415445445
+𦆼 554444445212125111354
+𦆽 124555423441554413412
+𦆾 112155423441554413412
+𦆿 554444251112213424134
+𦇀 554444111211125114544
+𦇁 554444125112441533134
+𦇂 2121134252554234251214
+𦇃 55444431431412132511
+𦇄 554444251212512125121
+𦇅 554444125121342511134
+𦇆 251125125313134554234
+𦇇 554444121121121135121
+𦇈 554444323434343413121
+𦇉 554444125221512115154
+𦇊 554444243135451251112
+𦇋 554444121251143123432
+𦇌 554444344325221113544
+𦇍 554444121455542343554
+𦇎 554444121232533414544
+𦇏 554444252211212513534
+𦇐 554444321155451114334
+𦇑 554444413123512353112
+𦇒 554444132511325113251
+𦇓 554444554554155455421
+𦇔 5544441331234312342121
+𦇕 5544441234123435413134
+𦇖 5544442121233132511134
+𦇗 554444515515122134454
+𦇘 5544444135221153531234
+𦇙 5544443211152511134112
+𦇚 5114312341321121554234
+𦇛 5544441251234532511134
+𦇜 5544442523511225235112
+𦇝 5544444334433445554234
+𦇞 554444251212511134454
+𦇟 5544441331254312114444
+𦇠 5544441212125112144544
+𦇡 5544445545541255455452
+𦇢 5544441541211541212511
+𦇣 5544443211511342511134
+𦇤 5544445151251211251211
+𦇥 4111251554444354554444
+𦇦 5542341343434132511134
+𦇧 55444425221134334433422
+𦇨 4155212511112343554234
+𦇩 55444412124135221154444
+𦇪 55444421212522145134534
+𦇫 55444435251214444431112
+𦇬 55444434125125125125122
+𦇭 5544443251144534251454
+𦇮 55444434112431312511211
+𦇯 55423451513425234343434
+𦇰 554444132112345342512134
+𦇱 554444224314311212211154
+𦇲 554444344325234343434121
+𦇳 554444321132534151114334
+𦇴 554444121213513125125534
+𦇵 255455452252554444554234
+𦇶 55444432115113425151454
+𦇷 411125155444455444425115
+𦇸 5544441252213251141533134
+𦇹 554444545232535251554234
+𦇺 5544444131235123531112111
+𦇻 3234343434554234344311354
+𦇼 55444413425234343434251214
+𦇽 55444441525135114311123511
+𦇾 554444511225113513354111251
+𦇿 554444352513535251353525135
+𦈀 323434343455423421251144512
+𦈁 323434343455423441554413412
+𦈂 55444434451154121121121135
+𦈃 5544441251245251251112213534
+𦈄 5544445552534112135135554234
+𦈅 55444425121251212512144525111
+𦈆 554444413444511213112522511134
+𦈇 3211545235115542342535251554234
+𦈈 55133124
+𦈉 551451512
+𦈊 5511234341
+𦈋 5511253511
+𦈌 5511251234
+𦈍 55113542121
+𦈎 55143251112
+𦈏 55135152511
+𦈐 5511512454
+𦈑 551125221121
+𦈒 551542511234
+𦈓 551251211534
+𦈔 551255452511
+𦈕 551341251122
+𦈖 5512511541541
+𦈗 5511211121115
+𦈘 551122341251
+𦈙 5511221115454
+𦈚 55113211234534
+𦈛 551251112211154
+𦈜 551324111211234
+𦈝 551515515122134
+𦈞 5515132514143112
+𦈟 5511234123411234
+𦈠 55134431215114544
+𦈡 55114524444132522
+𦈢 311215
+𦈣 311252115
+𦈤 311252315
+𦈥 311252112
+𦈦 3112524334
+𦈧 3112521324
+𦈨 3112521132
+𦈩 12135311252
+𦈪 31125213544
+𦈫 31125251254
+𦈬 212115311252
+𦈭 31125212354
+𦈮 31125212521
+𦈯 251251311252
+𦈰 311252121121
+𦈱 113534311252
+𦈲 311252415334
+𦈳 441525311252
+𦈴 3112523443521
+𦈵 3112521555121
+𦈶 3112521324251
+𦈷 3112524154325
+𦈸 31125212511534
+𦈹 24345251311252
+𦈺 31125235121251
+𦈻 31125215341534
+𦈼 312121211311252
+𦈽 31125234434554
+𦈾 31125221533112
+𦈿 31125232511252
+𦉀 31125232512115
+𦉁 311252251112134
+𦉂 311252312511211
+𦉃 311252122151234
+𦉄 311252215315112
+𦉅 311252251251115
+𦉆 311252123425111
+𦉇 311252513431132
+𦉈 3234343434311252
+𦉉 3112523545325121
+𦉊 3112521251124124
+𦉋 31121212153153112
+𦉌 3112522153153112
+𦉍 2511125111311252
+𦉎 31125225232411121
+𦉏 31125214524134115
+𦉐 3112524311321554
+𦉑 311212121531534312
+𦉒 31125212512512515
+𦉓 31125232511154444
+𦉔 34433112525555215
+𦉕 311252251251251112
+𦉖 311252334343434121
+𦉗 311252121121121135
+𦉘 311252243452511523
+𦉙 3112524135221154444
+𦉚 1234311252123451251
+𦉛 3112522153152522112
+𦉜 3112523513344111251
+𦉝 321125125151145311252
+𦉞 12512531125221311252
+𦉟 311252212134341343452
+𦉠 123431125212344551251
+𦉡 31121212511145241341154
+𦉢 31125214524134251251251
+𦉣 14524134251251251311252
+𦉤 12343434123445311252124
+𦉥 555251521532411121311252
+𦉦 112125111342511134311252
+𦉧 21531512512543121344311252
+𦉨 413555251521532411121311252
+𦉩 25121311252251212521225251125121
+𦉪 2535
+𦉫 2522
+𦉬 2522112
+𦉭 251315
+𦉮 253415
+𦉯 2534341
+𦉰 25431
+𦉱 2522115
+𦉲 453512
+𦉳 255454
+𦉴 2522112
+𦉵 2522135
+𦉶 2522135
+𦉷 25221121
+𦉸 253434415
+𦉹 25221354
+𦉺 253434415
+𦉻 255454112
+𦉼 25221134
+𦉽 253434415
+𦉾 25221415
+𦉿 2535115
+𦊀 2534415
+𦊁 252211535
+𦊂 252211551
+𦊃 252213415
+𦊄 252211121
+𦊅 45341344
+𦊆 252212121
+𦊇 45354134
+𦊈 252213541
+𦊉 25221525
+𦊊 252211134
+𦊋 25341234
+𦊌 25542511
+𦊍 2534341551
+𦊎 2522111234
+𦊏 2522155414
+𦊐 252211515
+𦊑 2522135352
+𦊒 2522135251
+𦊓 2522134155
+𦊔 2522125541
+𦊕 253425111
+𦊖 253412251
+𦊗 255435455
+𦊘 25343431234
+𦊙 453512251
+𦊚 2522112341
+𦊛 2522151251
+𦊜 2522131234
+𦊝 25343441121
+𦊞 25343451515
+𦊟 25343412251
+𦊠 25343435515
+𦊡 25343433544
+𦊢 2522141431
+𦊣 253425115
+𦊤 2522125252
+𦊥 2522125111
+𦊦 253445515
+𦊧 255411234
+𦊨 253425111
+𦊩 25343425111
+𦊪 253434341251
+𦊫 25221243135
+𦊬 2534413534
+𦊭 2534341251
+𦊮 253434431234
+𦊯 25221251112
+𦊰 2534542511
+𦊱 2534121121
+𦊲 25221354251
+𦊳 2522145515
+𦊴 25221341251
+𦊵 25221123435
+𦊶 253434413534
+𦊷 25221153534
+𦊸 25221412511
+𦊹 2534354251
+𦊺 25221111215
+𦊻 2554151234
+𦊼 252212513251
+𦊽 252211353334
+𦊾 252211324251
+𦊿 252211315251
+𦋀 25342512511
+𦋁 252212511112
+𦋂 252212511124
+𦋃 25342511112
+𦋄 2534343443521
+𦋅 2522135121121
+𦋆 2522152133544
+𦋇 253421251112
+𦋈 2522115341534
+𦋉 2522135115254
+𦋊 2522112211134
+𦋋 2522131153115
+𦋌 255432151135
+𦋍 2522132115115
+𦋎 2522143344334
+𦋏 2522151124134
+𦋐 453521251112
+𦋑 2534341324251
+𦋒 2522135443312
+𦋓 2522143113455
+𦋔 253451124134
+𦋕 25343433253254
+𦋖 25343454545454
+𦋗 25343412341234
+𦋘 25343412251115
+𦋙 25343413425115
+𦋚 25343421251112
+𦋛 25343431112111
+𦋜 25343432411121
+𦋝 25221554444124
+𦋞 25221243354122
+𦋟 253434554234345
+𦋠 25221445125111
+𦋡 25221122111234
+𦋢 2554341351155
+𦋣 25221522515452
+𦋤 25221415331525
+𦋥 25221554444354
+𦋦 2522113552252
+𦋧 25343412132511
+𦋨 25221251112134
+𦋩 2534554444354
+𦋪 2522112321554
+𦋫 253434414312511
+𦋬 253434411125153
+𦋭 253434515515134
+𦋮 253434251214544
+𦋯 252213354433544
+𦋰 252214315112234
+𦋱 25341211252512
+𦋲 252213543543554
+𦋳 252212522112121
+𦋴 252213543344334
+𦋵 25344413443521
+𦋶 25221253444441
+𦋷 252212511523134
+𦋸 252212511125115
+𦋹 252212522125221
+𦋺 252214334433422
+𦋻 2534341211254444
+𦋼 2534345435411515
+𦋽 2522155444425111
+𦋾 2522121531525111
+𦋿 2522112512212511
+𦌀 2522154545434333
+𦌁 2522125112512531
+𦌂 25221251211122112
+𦌃 2522125344444112
+𦌄 255454252212511
+𦌅 2522155444435151
+𦌆 253432115111234
+𦌇 2522133234342134
+𦌈 2522112141431531
+𦌉 2522112512343134
+𦌊 2522112512343534
+𦌋 252215215134121
+𦌌 253412213425115
+𦌍 253451311234124
+𦌎 253425111212112
+𦌏 25343441352211535
+𦌐 25343444232411121
+𦌑 25343425112512531
+𦌒 25221134432511234
+𦌓 2534433443343115
+𦌔 25221515515122134
+𦌕 252212512121354251
+𦌖 25221431353341254
+𦌗 25221433443343534
+𦌘 2534432524312511
+𦌙 25221121431123134
+𦌚 25221431253511134
+𦌛 4535432524312511
+𦌜 253434414312511211
+𦌝 253434352524312511
+𦌞 253434134334433422
+𦌟 252211123455124134
+𦌠 252215132514143112
+𦌡 25221251251115151
+𦌢 252215544444351523
+𦌣 252214334433434154
+𦌤 2534344143135422154
+𦌥 252213525121444422
+𦌦 252214125123433544
+𦌧 252214414334433422
+𦌨 2534345121151544334
+𦌩 252211344311125354
+𦌪 2522155444443344334
+𦌫 2522133234112431112
+𦌬 2522131122221354152
+𦌭 2522112112544442512
+𦌮 2522125111251111234
+𦌯 253425121211254444
+𦌰 2522155444413412512
+𦌱 25343412112544442512
+𦌲 25343454354115154444
+𦌳 25343431122221354152
+𦌴 25343455444432411121
+𦌵 25221251212512125121
+𦌶 25221554444325112534
+𦌷 25221121253512511134
+𦌸 25221352512144443534
+𦌹 25221121125444425132
+𦌺 51132512522112513534
+𦌻 25221515515122134454
+𦌼 253441431354115115111
+𦌽 25221344111251344111251
+𦌾 252215544442522112513534
+𦌿 252211254125441352211535
+𦍀 252211221251113432411121
+𦍁 252215132514143112554234
+𦍂 252212512121515515122134
+𦍃 2534345544442522112513534
+𦍄 252212511251141352215454
+𦍅 25342512121515515122134
+𦍆 25221554444252211212513534
+𦍇 252211311534325111445354153
+𦍈 2522112212511212112544442512
+𦍉 2522155444432411121414312512
+𦍊 25343412212511212112544442512
+𦍋 2121112
+𦍌 431121
+𦍍 43113
+𦍎 43111234
+𦍏 43111334
+𦍐 34431112
+𦍑 431121354
+𦍒 121431112
+𦍓 431113315
+𦍔 431113525
+𦍕 353431112
+𦍖 43113354
+𦍗 4311135452
+𦍘 4311131135
+𦍙 1354431112
+𦍚 2121214334
+𦍛 4311214555
+𦍜 4311133523
+𦍝 4311131554
+𦍞 4311131551
+𦍟 2121125211
+𦍠 4311131353
+𦍡 4311214134
+𦍢 4134431112
+𦍣 4311131525
+𦍤 4311133511
+𦍥 43111331525
+𦍦 43111352252
+𦍧 212135431112
+𦍨 43111335345
+𦍩 43111312251
+𦍪 43111334333
+𦍫 43111341554
+𦍬 12251431112
+𦍭 4311131554
+𦍮 21211215211
+𦍯 43112153154
+𦍰 43112134132
+𦍱 43111313544
+𦍲 21354431112
+𦍳 43111333544
+𦍴 43111335234
+𦍵 43111335251
+𦍶 43112135435
+𦍷 43111353254
+𦍸 43112113124
+𦍹 354354431112
+𦍺 431113445521
+𦍻 431113251251
+𦍼 431113125111
+𦍽 511511431112
+𦍾 431113325111
+𦍿 431113351554
+𦎀 431113251134
+𦎁 431113121251
+𦎂 431113132522
+𦎃 134431113354
+𦎄 431113135435
+𦎅 431121345454
+𦎆 4311133544124
+𦎇 4311131353334
+𦎈 4311133535112
+𦎉 4311135121121
+𦎊 4311133251134
+𦎋 4311133443533
+𦎌 4311133445251
+𦎍 4311214111251
+𦎎 4311131251124
+𦎏 4311131251234
+𦎐 4311132511211
+𦎑 431113251251
+𦎒 3251113431112
+𦎓 4311134154325
+𦎔 4311133251135
+𦎕 431121122531
+𦎖 431131251234
+𦎗 43111315341534
+𦎘 43111312511534
+𦎙 43112134251251
+𦎚 34431113353112
+𦎛 43112153151251
+𦎜 43111313533434
+𦎝 25111134431112
+𦎞 43111334435215
+𦎟 43112144444334
+𦎠 43111351312251
+𦎡 43112113431121
+𦎢 43111315251541
+𦎣 431113125351121
+𦎤 431113545231234
+𦎥 431113153532511
+𦎦 545233134431112
+𦎧 4125125112121112
+𦎨 521325111431112
+𦎩 431113445121251
+𦎪 431113251113533
+𦎫 412512511431112
+𦎬 431113251131121
+𦎭 431113312511354
+𦎮 431113512115154
+𦎯 1214514311123554
+𦎰 4311132512453541
+𦎱 4311134453121251
+𦎲 4311132511541541
+𦎳 4311131342511134
+𦎴 4311134311214444
+𦎵 4311135425113535
+𦎶 4311213113421135
+𦎷 12143112354431112
+𦎸 43111311212511134
+𦎹 43111325112512531
+𦎺 43111312121555121
+𦎻 43111312124451135
+𦎼 12145353554431112
+𦎽 4311131222511135
+𦎾 43111351324134152
+𦎿 43112113435113511
+𦏀 43111313242511135
+𦏁 4311213123453534
+𦏂 43111335354135251
+𦏃 54523313453431112
+𦏄 43112113412125111
+𦏅 431113134315233534
+𦏆 431113414312511211
+𦏇 431112431112354354
+𦏈 431113133123431234
+𦏉 431113254312114444
+𦏊 431113212125111354
+𦏋 431113113411342511
+𦏌 431113132522132522
+𦏍 431113515253341121
+𦏎 4113431121431251
+𦏏 431113431224312511
+𦏐 341251431112431112
+𦏑 431113554554134534
+𦏒 43112113412225121
+𦏓 511325143111212341
+𦏔 431113121251431251
+𦏕 4311132522135251214
+𦏖 4311132522112513534
+𦏗 32113434511454311214444
+𦏘 4311133535112533112
+𦏙 21211121252342511134
+𦏚 2121112515253341121
+𦏛 4311132512512511234
+𦏜 3211152511134431112
+𦏝 41514311133511431112
+𦏞 41525135414311123544
+𦏟 43112112151211251124
+𦏠 43112144444311214334
+𦏡 121212131215343515
+𦏢 431113121252212511134
+𦏣 431113314314131251534
+𦏤 431113125121251212512
+𦏥 431113132522251251134
+𦏦 43111325251221113134
+𦏧 412512511431112552523
+𦏨 4311134125221241343534
+𦏩 4311131331234312342511
+𦏪 43111314524134251251251
+𦏫 43111341252511251113115
+𦏬 431112411125141112514444
+𦏭 4311134125251125111431112
+𦏮 43111234125134125132411121
+𦏯 431112411125141112514111251
+𦏰 431113145241342512512511234341
+𦏱 431113554431113554431113554
+𦏲 53335333
+𦏳 5415415
+𦏴 541541112
+𦏵 541541154
+𦏶 541541345
+𦏷 134541541
+𦏸 541541525
+𦏹 541541112
+𦏺 121541541
+𦏻 541541115
+𦏼 121541541
+𦏽 541541124
+𦏾 341541541
+𦏿 252541541
+𦐀 541541415
+𦐁 525541541
+𦐂 5415411534
+𦐃 5113541541
+𦐄 4135541541
+𦐅 5415413554
+𦐆 5415415215
+𦐇 2511541541
+𦐈 3453541541
+𦐉 5221541541
+𦐊 5415413515
+𦐋 5134541541
+𦐌 5415411354
+𦐍 5415415134
+𦐎 3511541541
+𦐏 541541354
+𦐐 5415414134
+𦐑 4134541541
+𦐒 5415413132
+𦐓 5415411354
+𦐔 5415411234
+𦐕 54154112215
+𦐖 54154125134
+𦐗 54154113544
+𦐘 54154125211
+𦐙 54154135515
+𦐚 54154132511
+𦐛 35251541541
+𦐜 54154114312
+𦐝 31134541541
+𦐞 12215541541
+𦐟 54154115353
+𦐠 54154135154
+𦐡 51532541541
+𦐢 53254541541
+𦐣 541541311234
+𦐤 415334541541
+𦐥 541541352511
+𦐦 541541354251
+𦐧 541541113112
+𦐨 311234541541
+𦐩 541541335414
+𦐪 541541251153
+𦐫 121221541541
+𦐬 541541341251
+𦐭 541541534534
+𦐮 511511412511
+𦐯 511511253411
+𦐰 121121541541
+𦐱 511511541541
+𦐲 541541452511
+𦐳 153545541541
+𦐴 131534541541
+𦐵 431132541541
+𦐶 234332541541
+𦐷 541541325221
+𦐸 1324251541541
+𦐹 5415414143112
+𦐺 2433541541541
+𦐻 3223134541541
+𦐼 1214544541541
+𦐽 2513511541541
+𦐾 1251234541541
+𦐿 541541312154
+𦑀 5415413251135
+𦑁 5415415434354
+𦑂 5434354541541
+𦑃 1251134541541
+𦑄 5415411311345
+𦑅 12523434541541
+𦑆 135534541541
+𦑇 25342511541541
+𦑈 54154115112134
+𦑉 25113511541541
+𦑊 54154111213511
+𦑋 41343412541541
+𦑌 54154112511534
+𦑍 12511534541541
+𦑎 54154113425115
+𦑏 54154132411121
+𦑐 54154112512154
+𦑑 44213121541541
+𦑒 43143113541541
+𦑓 11211121541541
+𦑔 34251531541541
+𦑕 54154134112431
+𦑖 54154111212511
+𦑗 45135415415134
+𦑘 131251534541541
+𦑙 551353334541541
+𦑚 541541351331134
+𦑛 541541344311354
+𦑜 122125112541541
+𦑝 312511211541541
+𦑞 541541125125121
+𦑟 541541354111251
+𦑠 541541325111121
+𦑡 251112134541541
+𦑢 112155414541541
+𦑣 541541312321511
+𦑤 325131134541541
+𦑥 541541121325114
+𦑦 431351122541541
+𦑧 541541251112134
+𦑨 345235354541541
+𦑩 541541451251112
+𦑪 312321511541541
+𦑫 513431234541541
+𦑬 251254154134333
+𦑭 125125121541541
+𦑮 541541451325122
+𦑯 54154115112134
+𦑰 5415412512511134
+𦑱 4532411121541541
+𦑲 2522124134541541
+𦑳 2121335414541541
+𦑴 5435111515541541
+𦑵 1251124124541541
+𦑶 5415412522124134
+𦑷 5415411251124153
+𦑸 3324413134541541
+𦑹 3215112511541541
+𦑺 4311213121541541
+𦑻 521251152541541
+𦑼 5415412511541541
+𦑽 1325125251541541
+𦑾 5415411251112511
+𦑿 5415414512511234
+𦒀 2521251431541541
+𦒁 541541431113121
+𦒂 4315232511541541
+𦒃 21212522145541541
+𦒄 54154111121112511
+𦒅 54154112212511134
+𦒆 54154132511541541
+𦒇 5152512513554541541
+𦒈 34125125122541541
+𦒉 24313554154132511
+𦒊 54154112511244153
+𦒋 12251112341541541
+𦒌 32511311212541541
+𦒍 414312511211541541
+𦒎 541541125112144544
+𦒏 541541121121121135
+𦒐 54154143252343134
+𦒑 545232535251541541
+𦒒 541541121121121135
+𦒓 541541313425125251
+𦒔 541541545232535251
+𦒕 212133541422541541
+𦒖 541541251211212134
+𦒗 541541432524312511
+𦒘 125221134515541541
+𦒙 122111343554541541
+𦒚 541541243252513134
+𦒛 541541515121121251
+𦒜 4125251125111541541
+𦒝 1312515344544541541
+𦒞 5415415155115251
+𦒟 431523321511541541
+𦒠 5415412522112513534
+𦒡 2522112143112541541
+𦒢 32522112143112541541
+𦒣 32515113454154132511
+𦒤 54154113425234343434
+𦒥 34545415413251111344
+𦒦 541541555253415445445
+𦒧 1452444432411121541541
+𦒨 541541445212125111354
+𦒩 555253415445445541541
+𦒪 43344334354152541541
+𦒫 51551152513554541541
+𦒬 252211212513534541541
+𦒭 4125125251134121541541
+𦒮 4143135411515111541541
+𦒯 5151211212513554541541
+𦒰 111342413454154132411121
+𦒱 121312
+𦒲 12131535
+𦒳 1213121
+𦒴 121335252
+𦒵 121335251
+𦒶 12133533
+𦒷 12133115
+𦒸 1213153533
+𦒹 1213354134
+𦒺 12131525154
+𦒻 121321251
+𦒼 12131541121
+𦒽 12131551251
+𦒾 12131521251
+𦒿 12133525111
+𦓀 121315152511
+𦓁 12131551351251
+𦓂 121335251135251
+𦓃 1213515121121251
+𦓄 4125125251121315
+𦓅 121335122341234
+𦓆 121351211155251
+𦓇 12133512512512515
+𦓈 121335121315121335
+𦓉 1213352512121354251
+𦓊 1213353412524312511
+𦓋 121315121335121315121335
+𦓌 31234531325113554121315
+𦓍 121325112512512511123211
+𦓎 13252222
+𦓏 35132522
+𦓐 32522
+𦓑 13252235
+𦓒 4334132522
+𦓓 1554132522
+𦓔 132522132522
+𦓕 132522251153
+𦓖 1325225344544
+𦓗 25213252213344
+𦓘 132522132522333
+𦓙 335215252132522
+𦓚 33155252132522
+𦓛 351355252132522
+𦓜 121335132522134
+𦓝 3315215252132522
+𦓞 2521325221251124
+𦓟 35444334252132522
+𦓠 12512534252132522
+𦓡 41312341234132522
+𦓢 1325221325221325221344
+𦓣 25213252241312212512134
+𦓤 311234
+𦓥 31123452
+𦓦 31123424
+𦓧 11123434
+𦓨 311234515
+𦓩 154311234
+𦓪 311234215
+𦓫 3134111234
+𦓬 31123414312
+𦓭 31123435334
+𦓮 31123411324
+𦓯 311234121121
+𦓰 311234341121
+𦓱 311234354251
+𦓲 111234531251
+𦓳 111234122134
+𦓴 3112342433541
+𦓵 3112342511211
+𦓶 1112341311534
+𦓷 31123412121154
+𦓸 31123432511312
+𦓹 31123413434234
+𦓺 31123434435112
+𦓻 31123425113533
+𦓼 31123425111515
+𦓽 31123431234531
+𦓾 31123425312341
+𦓿 11123412211134
+𦔀 3112345115454
+𦔁 31123435133554
+𦔂 311234251112134
+𦔃 311234121225134
+𦔄 311234234325111
+𦔅 311234445351344
+𦔆 311234125125121
+𦔇 111234545231234
+𦔈 111234251131134
+𦔉 311234312511211
+𦔊 311234325125214
+𦔋 3112341212122111
+𦔌 311234121152511
+𦔍 3112341251124124
+𦔎 3112342512135354
+𦔏 3112341215425221
+𦔐 3112342512511134
+𦔑 3112344154325251
+𦔒 311234431554554
+𦔓 3112344134522554
+𦔔 31123425112522154
+𦔕 31123432534135354
+𦔖 1112341251112454
+𦔗 31123441352215454
+𦔘 31123451112135124
+𦔙 111234511541535
+𦔚 31123412212523434
+𦔛 311234414312511211
+𦔜 31123425121122134
+𦔝 311234414345252251
+𦔞 31123441543541354
+𦔟 311234344134522554
+𦔠 311234121232511312
+𦔡 311234343434342511
+𦔢 311234545454542511
+𦔣 31123413553455414
+𦔤 31123413553425221
+𦔥 3112342522112143112
+𦔦 3112343412524312511
+𦔧 1112342511252144544
+𦔨 3112342511252214153
+𦔩 311234413522115354444
+𦔪 311234251125112512531
+𦔫 31123454154125121122134
+𦔬 311234251112511132411121
+𦔭 3112344131235123531112111
+𦔮 1221115
+𦔯 35122111
+𦔰 35122111
+𦔱 35122111
+𦔲 12211115
+𦔳 12211153
+𦔴 34122111
+𦔵 34122111
+𦔶 12211155
+𦔷 122111554
+𦔸 122111121
+𦔹 122111544
+𦔺 122111252
+𦔻 122111251
+𦔼 1221112154
+𦔽 1221113121
+𦔾 1221111134
+𦔿 1221111134
+𦕀 1221111553
+𦕁 5115122111
+𦕂 1234122111
+𦕃 1221113541
+𦕄 1221113312
+𦕅 1221113552
+𦕆 1221111523
+𦕇 1221111554
+𦕈 1221112343
+𦕉 2343122111
+𦕊 1221112515
+𦕋 1221112554
+𦕌 3515122111
+𦕍 1221114535
+𦕎 1221113515
+𦕏 1221112512
+𦕐 12211112211
+𦕑 12211135151
+𦕒 12211121251
+𦕓 12135122111
+𦕔 12211135513
+𦕕 35455122111
+𦕖 12211132121
+𦕗 12211131234
+𦕘 12211135112
+𦕙 12211135251
+𦕚 12211151532
+𦕛 12211151515
+𦕜 12211111234
+𦕝 12211111234
+𦕞 12211134115
+𦕟 12211145534
+𦕠 122111122134
+𦕡 211221111132
+𦕢 211221113121
+𦕣 122111321554
+𦕤 122111243135
+𦕥 112153122111
+𦕦 122111343434
+𦕧 122111113534
+𦕨 122111511534
+𦕩 122111125351
+𦕪 132412211154
+𦕫 122111342121
+𦕬 12211135452
+𦕭 122111555121
+𦕮 122111325115
+𦕯 122111555134
+𦕰 122111351234
+𦕱 122111554234
+𦕲 122111341251
+𦕳 122111121335
+𦕴 112153122111
+𦕵 1221114453112
+𦕶 1221111213312
+𦕷 1221111212534
+𦕸 1221112511211
+𦕹 1221114451354
+𦕺 4125145122111
+𦕻 1221113253341
+𦕼 1221111315251
+𦕽 1221113225112
+𦕾 1221113515251
+𦕿 1221111221115
+𦖀 1221113443521
+𦖁 1221113413252
+𦖂 1221111215512
+𦖃 1221112511135
+𦖄 1221113525215
+𦖅 1221115121121
+𦖆 1221115344544
+𦖇 1221112515322
+𦖈 12211113425115
+𦖉 12211125431415
+𦖊 12211113412512
+𦖋 122111312121211
+𦖌 12211125122134
+𦖍 12211125111234
+𦖎 12211113415534
+𦖏 12211134343434
+𦖐 122111311212152
+𦖑 12211144525111
+𦖒 12211141343412
+𦖓 12211144535115
+𦖔 12211113443115
+𦖕 12211131112111
+𦖖 12211121531535
+𦖗 34431234122111
+𦖘 12211134112251
+𦖙 12211132151115
+𦖚 12211132151154
+𦖛 12211132512115
+𦖜 12152134122111
+𦖝 12523422122111
+𦖞 35152511122111
+𦖟 12211135334544
+𦖠 12211143344334
+𦖡 12211132511354
+𦖢 122111414312511
+𦖣 122111351253511
+𦖤 122111251131121
+𦖥 212512254122111
+𦖦 122111132511134
+𦖧 122111125115315
+𦖨 125123422122111
+𦖩 132522134122111
+𦖪 122111445343454
+𦖫 515152511122111
+𦖬 122111351525221
+𦖭 122111341251122
+𦖮 122111415331525
+𦖯 122111435554444
+𦖰 122111541251234
+𦖱 122111121251534
+𦖲 122111512115154
+𦖳 122111321511215
+𦖴 332343434122111
+𦖵 122111344311354
+𦖶 122111325111544
+𦖷 251214544122111
+𦖸 122111345234354
+𦖹 122111354554444
+𦖺 122111431554554
+𦖻 122111251214544
+𦖼 1221112512453541
+𦖽 4334433445122111
+𦖾 1221114315112234
+𦖿 1221111212341251
+𦗀 1221111225111134
+𦗁 1525111534122111
+𦗂 1221111325224544
+𦗃 1221114543425221
+𦗄 122111431523454
+𦗅 1221114311213554
+𦗆 1221111344325115
+𦗇 122111521251152
+𦗈 1221112521353134
+𦗉 1221111212122112
+𦗊 3113441121122111
+𦗋 1221114453434251
+𦗌 1221113344321511
+𦗍 1221114143454153
+𦗎 1221113545525121
+𦗏 12211145115452
+𦗐 12211141431353334
+𦗑 12211141432512251
+𦗒 1221114125152152
+𦗓 12211141352211535
+𦗔 12211155525111234
+𦗕 41312351235122111
+𦗖 12211154154134333
+𦗗 12211154154132511
+𦗘 12211154121225134
+𦗙 12135121354122111
+𦗚 12511123312122111
+𦗛 12211112512512515
+𦗜 12211133234342134
+𦗝 12211112511123312
+𦗞 12211144513412512
+𦗟 122111132522114544
+𦗠 122111324111214444
+𦗡 122111125221251112
+𦗢 122111431121431251
+𦗣 122111254312114444
+𦗤 414313541515122111
+𦗥 43252343134122111
+𦗦 341124313515122111
+𦗧 122111314314341251
+𦗨 122111311531153115
+𦗩 122111125221114334
+𦗪 122111121221113134
+𦗫 122111121212524134
+𦗬 122111511225112511
+𦗭 121251431333122111
+𦗮 122111212121212121
+𦗯 122111351335121251
+𦗰 122111445132522112
+𦗱 11234135534122111
+𦗲 122111431234354152
+𦗳 1221112512211311534
+𦗴 1221112434525125121
+𦗵 1221112512512511234
+𦗶 3211511245251122111
+𦗷 5225241533134122111
+𦗸 1221113322521353134
+𦗹 1221113412512513434
+𦗺 1212514311254122111
+𦗻 122111251251251454
+𦗼 3412512513434122111
+𦗽 1221114134132511354
+𦗾 34112431312251122111
+𦗿 1223511351122122111
+𦘀 12211115311345452134
+𦘁 12211151122511122111
+𦘂 12211155444432511252
+𦘃 12123511351154122111
+𦘄 12211141431121353334
+𦘅 122111413122112512134
+𦘆 122111243452512511134
+𦘇 122111332252111213134
+𦘈 122111325115545541234
+𦘉 341124313515251122111
+𦘊 1221111331234312342121
+𦘋 1221113211511342511134
+𦘌 3411243135152511122111
+𦘍 12211151122511543341134
+𦘎 12211113434125234343434
+𦘏 121221111121132522114544
+𦘐 1221111254125441352211535
+𦘑 12211151122511121221113134
+𦘒 51112
+𦘓 51111253
+𦘔 51112333
+𦘕 51112125341
+𦘖 21354511112
+𦘗 31134511112
+𦘘 511121252511
+𦘙 511121251152
+𦘚 511121253452
+𦘛 511124544524
+𦘜 5111214544524
+𦘝 5111225454452
+𦘞 51124134511112
+𦘟 35132154511112
+𦘠 511112121325114
+𦘡 5112254544524
+𦘢 511121251145534
+𦘣 5111212512115311
+𦘤 511232115521225134
+𦘥 45132511534511112
+𦘦 45132513134511112
+𦘧 5133115511121251211
+𦘨 51111235335111123533
+𦘩 354134
+𦘪 354135
+𦘫 45253434
+𦘬 54253434
+𦘭 354112
+𦘮 354155
+𦘯 354154
+𦘰 351115
+𦘱 351124
+𦘲 354134
+𦘳 354155
+𦘴 3541315
+𦘵 3541135
+𦘶 3541322
+𦘷 3541554
+𦘸 3541215
+𦘹 3511252
+𦘺 3541515
+𦘻 415253434
+𦘼 1153511
+𦘽 253434531
+𦘾 253434354
+𦘿 35413554
+𦙀 35413354
+𦙁 35411551
+𦙂 1324253434
+𦙃 25153541
+𦙄 34523541
+𦙅 35413513
+𦙆 35413515
+𦙇 35413511
+𦙈 35413512
+𦙉 35415435
+𦙊 43343541
+𦙋 35413135
+𦙌 55425115
+𦙍 35543541
+𦙎 45212511
+𦙏 35112525
+𦙐 35413415
+𦙑 35333541
+𦙒 35414412
+𦙓 35411354
+𦙔 34433541
+𦙕 35413553
+𦙖 11343541
+𦙗 35111251
+𦙘 35411554
+𦙙 35112534
+𦙚 31133511
+𦙛 35413255
+𦙜 35413355
+𦙝 35113412
+𦙞 35113452
+𦙟 41343541
+𦙠 35415151
+𦙡 2121253434
+𦙢 2534345152
+𦙣 35111234
+𦙤 35113115
+𦙥 35115215
+𦙦 35114544
+𦙧 2534342343
+𦙨 35415152
+𦙩 1213253434
+𦙪 351132511
+𦙫 354112121
+𦙬 354152134
+𦙭 354135444
+𦙮 354144534
+𦙯 321543541
+𦙰 354132121
+𦙱 354125221
+𦙲 53251253434
+𦙳 354131234
+𦙴 354141121
+𦙵 354553541
+𦙶 354112251
+𦙷 354151335
+𦙸 354135112
+𦙹 354151334
+𦙺 532513541
+𦙻 354114334
+𦙼 2121153541
+𦙽 351135351
+𦙾 351154121
+𦙿 354125135
+𦚀 354151254
+𦚁 354113454
+𦚂 354135454
+𦚃 354152235
+𦚄 354113412
+𦚅 354243541
+𦚆 25343453254
+𦚇 54523253434
+𦚈 354113251
+𦚉 134433541
+𦚊 351125115
+𦚋 252212511
+𦚌 315133541
+𦚍 412343541
+𦚎 414313541
+𦚏 414312511
+𦚐 351144535
+𦚑 351133541
+𦚒 25343412154
+𦚓 25343434112
+𦚔 354153251
+𦚕 351112211
+𦚖 35113454
+𦚗 351112525
+𦚘 32121253434
+𦚙 34253434121
+𦚚 3541212115
+𦚛 21354253434
+𦚜 354111234
+𦚝 3541412534
+𦚞 3541111215
+𦚟 35411225125
+𦚠 3541125125
+𦚡 3541325221
+𦚢 3541251115
+𦚣 3541511534
+𦚤 3541251134
+𦚥 3541311252
+𦚦 3541525341
+𦚧 3541352511
+𦚨 111253253434
+𦚩 3541351234
+𦚪 3541515132
+𦚫 3541411134
+𦚬 3541123412
+𦚭 3541251214
+𦚮 323121253434
+𦚯 3541542511
+𦚰 3511535353
+𦚱 3511121335
+𦚲 3541545211
+𦚳 3541415435
+𦚴 1221343541
+𦚵 3541125351
+𦚶 3412513541
+𦚷 341251253434
+𦚸 3541125111
+𦚹 3511125441
+𦚺 3541212154
+𦚻 3541252211
+𦚼 3511251221
+𦚽 3541251515
+𦚾 4134522511
+𦚿 3511431252
+𦛀 3511433454
+𦛁 3541555252
+𦛂 254544253434
+𦛃 253434354251
+𦛄 413452253434
+𦛅 253434445531
+𦛆 525341253434
+𦛇 415134253434
+𦛈 3511251153
+𦛉 3511251252
+𦛊 3511132521
+𦛋 3511121251
+𦛌 3511511112
+𦛍 3511125211
+𦛎 3541252252
+𦛏 3541134121
+𦛐 3541335215
+𦛑 3511515211
+𦛒 3541132511
+𦛓 35413211511
+𦛔 35413152134
+𦛕 35411215453
+𦛖 35411221115
+𦛗 35412513251
+𦛘 35411213534
+𦛙 3541135534
+𦛚 35412534251
+𦛛 35414143112
+𦛜 35413415251
+𦛝 3411234253434
+𦛞 35412515215
+𦛟 35411251134
+𦛠 35412511121
+𦛡 35413534334
+𦛢 35112511211
+𦛣 35411212134
+𦛤 35413251134
+𦛥 35413441112
+𦛦 35413533533
+𦛧 35413544334
+𦛨 35111224553
+𦛩 35413121251
+𦛪 35413113452
+𦛫 53525413541
+𦛬 53554543541
+𦛭 35412511252
+𦛮 35413251135
+𦛯 13251542511
+𦛰 3511315454
+𦛱 35113434251
+𦛲 35113535112
+𦛳 35413552252
+𦛴 35413552523
+𦛵 35115354251
+𦛶 2534341215452
+𦛷 2534343344124
+𦛸 35115425112
+𦛹 1121253434534
+𦛺 35112515322
+𦛻 35111234124
+𦛼 35113212134
+𦛽 35112513445
+𦛾 35114425211
+𦛿 3511122415
+𦜀 35112511344
+𦜁 2534343541112
+𦜂 35413543541
+𦜃 35412511134
+𦜄 35412511354
+𦜅 3511111352
+𦜆 354152413452
+𦜇 354151352252
+𦜈 354141541234
+𦜉 35112511212
+𦜊 354145351234
+𦜋 354131125222
+𦜌 354112512554
+𦜍 354141533134
+𦜎 354152111534
+𦜏 354135131344
+𦜐 354144525151
+𦜑 35133134253434
+𦜒 354114334354
+𦜓 354133123534
+𦜔 3541121431234
+𦜕 354152534155
+𦜖 354112155121
+𦜗 311252223541
+𦜘 354134435215
+𦜙 354111214544
+𦜚 125454543541
+𦜛 354135133535
+𦜜 12512554253434
+𦜝 351141343211
+𦜞 351134122134
+𦜟 354141324251
+𦜠 354125121132
+𦜡 354135444334
+𦜢 354141343511
+𦜣 354112135121
+𦜤 354113113511
+𦜥 354125234154
+𦜦 354125124544
+𦜧 354125215215
+𦜨 354121213541
+𦜩 354135334544
+𦜪 354112211234
+𦜫 351112211234
+𦜬 354112122534
+𦜭 351113412132
+𦜮 351113443115
+𦜯 351115254444
+𦜰 351121251112
+𦜱 351134251214
+𦜲 351134451154
+𦜳 351135113511
+𦜴 351135542511
+𦜵 354135424251
+𦜶 354141354153
+𦜷 351144212511
+𦜸 351144513533
+𦜹 351321543541
+𦜺 354151113344
+𦜻 354152115211
+𦜼 351155133252
+𦜽 25343413425115
+𦜾 31125222253434
+𦜿 25343435321511
+𦝀 351113411234
+𦝁 354112211134
+𦝂 351132511354
+𦝃 351112341234
+𦝄 351112134354
+𦝅 351134534544
+𦝆 351152131234
+𦝇 351144225111
+𦝈 351125111334
+𦝉 351141335154
+𦝊 35111525454
+𦝋 351151122511
+𦝌 351144112154
+𦝍 52131234253434
+𦝎 44112154253434
+𦝏 354112512154
+𦝐 354113435352
+𦝑 354141543541
+𦝒 354112211154
+𦝓 354125431234
+𦝔 354131134251
+𦝕 543541251251
+𦝖 354125152511
+𦝗 35415232124
+𦝘 25343434113455
+𦝙 12212511253434
+𦝚 3541535425221
+𦝛 3541521251152
+𦝜 3541111253134
+𦝝 3541352534134
+𦝞 3541412514512
+𦝟 3541132511211
+𦝠 4152513541354
+𦝡 3541341251132
+𦝢 3541543341134
+𦝣 3541445354251
+𦝤 354143122431
+𦝥 3541112321511
+𦝦 3541131213541
+𦝧 3541122111355
+𦝨 3541151532511
+𦝩 3541251213541
+𦝪 3541125351121
+𦝫 1252215313541
+𦝬 3541445351344
+𦝭 3251512523541
+𦝮 3541515152511
+𦝯 3541134431112
+𦝰 3541353344544
+𦝱 3541341253511
+𦝲 3541251135345
+𦝳 3541251111344
+𦝴 3541341211154
+𦝵 3541341234251
+𦝶 3541252252252
+𦝷 3541513431132
+𦝸 1233335413533
+𦝹 3511425341234
+𦝺 3541431121134
+𦝻 3541445125111
+𦝼 3541431234531
+𦝽 1324121213541
+𦝾 3541515253434
+𦝿 3541212514444
+𦞀 3541542513134
+𦞁 3541121251534
+𦞂 3511122341251
+𦞃 3511134432444
+𦞄 2522522523541
+𦞅 2534444413541
+𦞆 3511321511121
+𦞇 3541325125214
+𦞈 3511325131134
+𦞉 253434153532511
+𦞊 253434431134252
+𦞋 511511153253434
+𦞌 3511442125111
+𦞍 411125112253434
+𦞎 3511414313333
+𦞏 131531534253434
+𦞐 3511215315151
+𦞑 3511132425221
+𦞒 3511332121124
+𦞓 3511441333534
+𦞔 3511442243135
+𦞕 3541351331134
+𦞖 3541311325111
+𦞗 3541252211354
+𦞘 25343451111254
+𦞙 35413251213554
+𦞚 35415132433541
+𦞛 35413415113251
+𦞜 35413251114544
+𦞝 35413115431234
+𦞞 35415425431121
+𦞟 35414543425221
+𦞠 35413241112112
+𦞡 35415552515215
+𦞢 35412513533341
+𦞣 35414544251214
+𦞤 35414454143112
+𦞥 35411554554121
+𦞦 35414532411121
+𦞧 35413535225121
+𦞨 35414452513251
+𦞩 32115545113541
+𦞪 35415253414444
+𦞫 44511221343541
+𦞬 35412153153134
+𦞭 35414453533544
+𦞮 3511431523454
+𦞯 35411213152511
+𦞰 35411252211234
+𦞱 2534343251213554
+𦞲 35415231251214
+𦞳 35114453434251
+𦞴 35111344325115
+𦞵 35413251113412
+𦞶 35411251251354
+𦞷 35414452511531
+𦞸 3541431132454
+𦞹 35411311534124
+𦞺 35412521353134
+𦞻 35411212251112
+𦞼 35413443311252
+𦞽 35412512453541
+𦞾 35113241112153
+𦞿 35113443543112
+𦟀 41525135413544
+𦟁 41525352513511
+𦟂 3511431234454
+𦟃 35115213431112
+𦟄 35115454541234
+𦟅 35115454541234
+𦟆 12121252212511
+𦟇 35113122113534
+𦟈 35114451112251
+𦟉 35114134112211
+𦟊 35111253511515
+𦟋 35113241431251
+𦟌 35115131221534
+𦟍 3511122415334
+𦟎 431113121253434
+𦟏 35114131251112
+𦟐 35111211254444
+𦟑 35113213412512
+𦟒 15253511351355
+𦟓 3511512542511
+𦟔 3541154121354
+𦟕 35411335152511
+𦟖 2534341211254444
+𦟗 35115432411121
+𦟘 354144512512134
+𦟙 354113533344444
+𦟚 35112153151251431
+𦟛 354141351135112
+𦟜 354111212511134
+𦟝 323434343413541
+𦟞 3511325111413412
+𦟟 354141312351235
+𦟠 354113211234534
+𦟡 32511151535253434
+𦟢 354113533342511
+𦟣 354132534135354
+𦟤 35414311135211
+𦟥 35411353334454
+𦟦 25343412122511134
+𦟧 354112251251251
+𦟨 351141345234354
+𦟩 354113432115115
+𦟪 35411251112454
+𦟫 354112212511134
+𦟬 354112343434333
+𦟭 354153511511511
+𦟮 35111221344132
+𦟯 354112212511253
+𦟰 354121531525111
+𦟱 351144532132511
+𦟲 511225112512511
+𦟳 354155525111234
+𦟴 43344334451253434
+𦟵 35111223443521
+𦟶 351143123421251
+𦟷 351112141431251
+𦟸 351144141323544
+𦟹 351125234125122
+𦟺 351112112112124
+𦟻 35111122132515
+𦟼 351151122511123
+𦟽 351144545434252
+𦟾 351112512512515
+𦟿 351112132411121
+𦠀 354124312523312
+𦠁 354143341251234
+𦠂 32511154444253434
+𦠃 4143253354323541
+𦠄 3541554554134534
+𦠅 3541511121251124
+𦠆 3541515515122134
+𦠇 3541432524312511
+𦠈 3541545232535251
+𦠉 3541121451251431
+𦠊 3541212121212121
+𦠋 5425141431123541
+𦠌 3541132522132522
+𦠍 3541251251431523
+𦠎 3541134413441344
+𦠏 354113412132511
+𦠐 3541122135413134
+𦠑 3541134315233534
+𦠒 1343152335343541
+𦠓 1331234312343541
+𦠔 3541252112343312
+𦠕 4143253354251253434
+𦠖 3541125124535515
+𦠗 3434343434343541
+𦠘 4513251113434234
+𦠙 3541252521325111
+𦠚 3541313425125251
+𦠛 3511113411342511
+𦠜 3541121211212112
+𦠝 3511121525125121
+𦠞 432523431343541
+𦠟 3541252112523312
+𦠠 3541252115233312
+𦠡 3434343425112511
+𦠢 3511412512341354
+𦠣 3511415425113134
+𦠤 3541454445444544
+𦠥 3541511225113511
+𦠦 3511521214154325
+𦠧 3511541541342444
+𦠨 3541545454342444
+𦠩 133123431234253434
+𦠪 343434342511253434
+𦠫 452345331121253434
+𦠬 542514143112253434
+𦠭 3511122111343312
+𦠮 1541211541212511
+𦠯 3511511225111234
+𦠰 4513251121251112
+𦠱 3511314314321534
+𦠲 3511121551214544
+𦠳 3511513521521521
+𦠴 3511112111213445
+𦠵 351152431353334
+𦠶 121213453251253434
+𦠷 3253341521343541
+𦠸 3541413543543534
+𦠹 3541433435414334
+𦠺 3541433425111515
+𦠻 3541515322511134
+𦠼 3541555253435112
+𦠽 3511344335554444
+𦠾 35412511221111534
+𦠿 35411134211121111
+𦡀 3541134343424134
+𦡁 35412434525125121
+𦡂 35411212312511211
+𦡃 35412512512511211
+𦡄 35111213251152
+𦡅 35411132221253511
+𦡆 35414453551352252
+𦡇 2534342522112143112
+𦡈 4155332411121253434
+𦡉 25113511252213511
+𦡊 35112512211251431
+𦡋 35111525132511134
+𦡌 3211152511453541
+𦡍 51325141431123541
+𦡎 354124313434112431
+𦡏 35411452413425115
+𦡐 3541121251111254
+𦡑 35412153152512135
+𦡒 33225213531343541
+𦡓 35415552522135112
+𦡔 35413215115445445
+𦡕 35411452413435515
+𦡖 21211312335343511
+𦡗 35413123443344544
+𦡘 35413123434343411
+𦡙 35113444445234354
+𦡚 41553324111212511
+𦡛 2534341212122511134
+𦡜 5132514143112253434
+𦡝 2534343443454544354
+𦡞 35111234123411234
+𦡟 21135251112134354
+𦡠 11211324134342511
+𦡡 35111325125111124
+𦡢 3511122431234531
+𦡣 35114125251131234
+𦡤 35114413241112112
+𦡥 35114415154151541
+𦡦 3511122312511211
+𦡧 35112243143111234
+𦡨 12351235354153254
+𦡩 35411234342413452
+𦡪 35413541541251431
+𦡫 35414311213121534
+𦡬 3541344134522554
+𦡭 321115251145253434
+𦡮 3511431224312511
+𦡯 3511121431112454
+𦡰 354112121251124124
+𦡱 354154154132411121
+𦡲 354144545442522112
+𦡳 351155525343524444
+𦡴 354112151211251124
+𦡵 354125135333414544
+𦡶 354112512531125221
+𦡷 354122431431121124
+𦡸 354115311345452134
+𦡹 354125115545544444
+𦡺 251113425111343541
+𦡻 354141121125444435
+𦡼 15311345452134253434
+𦡽 354135122112512134
+𦡾 122111345251213541
+𦡿 354151111223425221
+𦢀 354112125145154121
+𦢁 354112123415113251
+𦢂 354122431431121134
+𦢃 354112121214111251
+𦢄 351121112111413534
+𦢅 354143345354251214
+𦢆 25111342511134253434
+𦢇 353113454521342511
+𦢈 354113425234343434
+𦢉 351144545434251214
+𦢊 3541251112213424134
+𦢋 3511431121444411134
+𦢌 3541121253512511134
+𦢍 3541554554125121534
+𦢎 3541413122112512134
+𦢏 3541251212512125121
+𦢐 354112122511113454
+𦢑 354113211234534454
+𦢒 3511123434452511134
+𦢓 3511254312114444121
+𦢔 3541111211125114544
+𦢕 3541323434343413541
+𦢖 1351332324111213541
+𦢗 3541121251431112354
+𦢘 3541121243113424134
+𦢙 3541121211121111534
+𦢚 3541215315251213541
+𦢛 3541215315251214544
+𦢜 3541252254312114444
+𦢝 3541413413211511254
+𦢞 3511352512144442511
+𦢟 3511121224314311134
+𦢠 3511212134341343452
+𦢡 5131541213434342511
+𦢢 3434342511513154121
+𦢣 3511344325234343434
+𦢤 3541113411342511134
+𦢥 3541252324111212525
+𦢦 35413525121444431234
+𦢧 35412121252214525111
+𦢨 35415112251135321511
+𦢩 354112125112321155212
+𦢪 354152131213541454
+𦢫 35414143125411515111
+𦢬 35411212454445444544
+𦢭 35411251245355151234
+𦢮 35112512513251213554
+𦢯 35413211251251511134
+𦢰 3211251251511134253434
+𦢱 51132513511431112354
+𦢲 35111212311222214444
+𦢳 45132511344335554444
+𦢴 35114325135445341344
+𦢵 35114134125251131234
+𦢶 35113123435132511134
+𦢷 35112512511211254444
+𦢸 354112124411251124124
+𦢹 354143112144441121134
+𦢺 354125221324111214444
+𦢻 34344133232411121253434
+𦢼 415251354125111345113
+𦢽 44531212513434251253434
+𦢾 351125235311345452134
+𦢿 3541252324111212535251
+𦣀 3541122111122111122111
+𦣁 3541321132534151114334
+𦣂 3511211121112521251431
+𦣃 3511251152252134431234
+𦣄 4152513511122125112354
+𦣅 354134432522151154124
+𦣆 35414131235123531112111
+𦣇 35412522155444432411121
+𦣈 35413143144411251124124
+𦣉 41525135413211511254354
+𦣊 12212511134324111213541
+𦣋 35414111251554444554444
+𦣌 35411122112213412341234
+𦣍 35414311214444431121134
+𦣎 35111221251113432411121
+𦣏 41112515544445544443541
+𦣐 35414111251554444554444
+𦣑 35411223525121444431234
+𦣒 354125111251113241112154
+𦣓 143123435125143135113511
+𦣔 415425221351125111234354
+𦣕 351112522111234353251214
+𦣖 4152513541251125112511354
+𦣗 351134451154121121121135
+𦣘 35111251245251251112213534
+𦣙 35112511445251251112213534
+𦣚 1221251344312132411121253434
+𦣛 354141112515544445544444544
+𦣜 3541251112511152134134131134
+𦣝 151225
+𦣞 1225125
+𦣟 252125125
+𦣠 1251253121
+𦣡 1251253553
+𦣢 1251251252
+𦣣 1251251534
+𦣤 122512551251
+𦣥 12512545434
+𦣦 125125125125
+𦣧 125125252211
+𦣨 125125323121
+𦣩 125125521521
+𦣪 1251253125125221
+𦣫 12512512211134
+𦣬 12512531251531
+𦣭 414345252125125
+𦣮 52133544125125
+𦣯 125125512115154
+𦣰 12254311212512524
+𦣱 12512511212511134
+𦣲 125125112343251135
+𦣳 125125324111214444
+𦣴 125125542522112513534
+𦣵 1251253112222152511354
+𦣶 1251251225145442511134
+𦣷 12512531343434122511225112251
+𦣸 3525115153525135412512531125221
+𦣹 341152
+𦣺 3251112
+𦣻 1325111
+𦣼 1341152
+𦣽 13251115
+𦣾 325111135
+𦣿 325111342
+𦤀 325111134
+𦤁 3251111354
+𦤂 3251113554
+𦤃 3251111121
+𦤄 2121325111
+𦤅 1212325111
+𦤆 3251111154
+𦤇 3251113354
+𦤈 3251113434
+𦤉 3251113454
+𦤊 3251115211
+𦤋 5213325111
+𦤌 32511153334
+𦤍 32511111252
+𦤎 32511112341
+𦤏 32511125121
+𦤐 325111112431
+𦤑 325111134112
+𦤒 325111134333
+𦤓 325111251152
+𦤔 3251114454153
+𦤕 32511113445134
+𦤖 32511141343412
+𦤗 32511113411234
+𦤘 412512511325111
+𦤙 325111123452252
+𦤚 325111134413344
+𦤛 325111311311112
+𦤜 325111322354333
+𦤝 325111445352525
+𦤞 3513553251111234
+𦤟 3253413251111344
+𦤠 3251111344134334
+𦤡 32511113442515215
+𦤢 44132511134125122
+𦤣 12455213251111344
+𦤤 32511144532411121
+𦤥 325111431113541541
+𦤦 3251111344251135345
+𦤧 3251111344123411234
+𦤨 32511113442534125221
+𦤩 3251114134315112234
+𦤪 2511353453251111344
+𦤫 32511132511125121132
+𦤬 32511113444453121251
+𦤭 32511113441354224444
+𦤮 5115344543251111344
+𦤯 325111134412211134553
+𦤰 325111134434452511134
+𦤱 325111134412512554554234
+𦤲 32113434511452511135325111
+𦤳 1541121
+𦤴 34152121
+𦤵 54154121
+𦤶 154121354
+𦤷 154121354
+𦤸 322154121
+𦤹 1541211324
+𦤺 1541212154
+𦤻 33544154121
+𦤼 12145154121
+𦤽 15412151335
+𦤾 15412125111
+𦤿 111245154121
+𦥀 154121541354
+𦥁 2522112154121
+𦥂 12112145154121
+𦥃 15412125122134
+𦥄 12211134154121
+𦥅 154121542511234
+𦥆 111254334154121
+𦥇 154121111341134
+𦥈 431112145154121
+𦥉 4451541211251251
+𦥊 5213554234154121
+𦥋 2135434333154121
+𦥌 1541215111212511
+𦥍 1541211325111354
+𦥎 12143112354154121
+𦥏 154121154121154121
+𦥐 542511234154121354
+𦥑 3211511
+𦥒 2115152
+𦥓 325341
+𦥔 32115112
+𦥕 32151125
+𦥖 52321511
+𦥗 321511252
+𦥘 3211511124
+𦥙 321151153
+𦥚 321511215
+𦥛 3123211511
+𦥜 354321511
+𦥝 3324321511
+𦥞 3215113534
+𦥟 3215114535
+𦥠 3215115354
+𦥡 3215111252
+𦥢 3532115111
+𦥣 3215111354
+𦥤 3215112153
+𦥥 32151112523
+𦥦 32151111234
+𦥧 321511454
+𦥨 32151144535
+𦥩 32151113541
+𦥪 32151125121
+𦥫 31232115111
+𦥬 32151131211
+𦥭 431523321511
+𦥮 355123211511
+𦥯 3211343451145
+𦥰 321511243135
+𦥱 321511354252
+𦥲 312121321511
+𦥳 32115113425151
+𦥴 3412134321511
+𦥵 3532151135251
+𦥶 3215112512153
+𦥷 32112511511134
+𦥸 3211152511132
+𦥹 32115111343112
+𦥺 32514133211511
+𦥻 321511312121211
+𦥼 251232111251134
+𦥽 31125354321511
+𦥾 43152332115111
+𦥿 24313535321511
+𦦀 321151132115112
+𦦁 321151132115115
+𦦂 321151135321511
+𦦃 15251132151135
+𦦄 25112511321511
+𦦅 321511111341134
+𦦆 321511134554234
+𦦇 321511252132522
+𦦈 321511112321511
+𦦉 3211325341511134
+𦦊 321151112512153
+𦦋 321511342511121
+𦦌 344332151153251
+𦦍 321511125211121
+𦦎 3211343451145515
+𦦏 4143253354321511
+𦦐 3215111251124124
+𦦑 32113434511453553
+𦦒 32113253415115354
+𦦓 3412535432112111
+𦦔 3215112251125214
+𦦕 1123215111343434
+𦦖 5454545453321511
+𦦗 32113434511451234
+𦦘 11232151115112134
+𦦙 32111525111341112
+𦦚 321151134321151134
+𦦛 321134345114532121
+𦦜 11134321511312121
+𦦝 321125112511253412
+𦦞 321125112511453512
+𦦟 321125125151113453
+𦦠 321134345114525112
+𦦡 3211251251511453512
+𦦢 243252513134321511
+𦦣 321511251112211154
+𦦤 3211325341511251221
+𦦥 32113253415114512211
+𦦦 32151132151134415
+𦦧 351251251511253512
+𦦨 344332151143344334
+𦦩 32113112525114535455
+𦦪 32113443321511511134
+𦦫 32113211115511511134
+𦦬 3211122515113511334
+𦦭 3211511321151134415
+𦦮 3211152511134341121
+𦦯 32113434511453112121
+𦦰 32151112151211251124
+𦦱 11134321511112321511
+𦦲 35111525113211511134
+𦦳 32111525111344325135
+𦦴 321125125114512512134
+𦦵 321134345114512343454
+𦦶 321122515111251253344
+𦦷 3211325341511251125214
+𦦸 321115251113425113533
+𦦹 2243143112523554321511
+𦦺 11134321511515121121251
+𦦻 321125125151145251125214
+𦦼 3211431234511454453434354
+𦦽 411125155444454444321511
+𦦾 111343215111215121251124
+𦦿 2511134251113453132151135
+𦧀 321134345114531254312114444
+𦧁 321125125151145354433411134112
+𦧂 32113253415113211325341511134
+𦧃 51343123453112232411121321511
+𦧄 121352121152111213521211521111322121152111132
+𦧅 321125125151113432112512515111343211251251511134
+𦧆 1122511
+𦧇 112251525
+𦧈 1122513415
+𦧉 1122511254
+𦧊 1122515435
+𦧋 3122513112
+𦧌 1122513132
+𦧍 3324312251
+𦧎 3415112251
+𦧏 1122511132
+𦧐 5412112251
+𦧑 11225144535
+𦧒 31225112251
+𦧓 11225131525
+𦧔 11225133544
+𦧕 351335112251
+𦧖 112251125341
+𦧗 325111112251
+𦧘 253434312251
+𦧙 312251311234
+𦧚 112251112251
+𦧛 312251341251
+𦧜 312251125134
+𦧝 1122513212154
+𦧞 3122512534251
+𦧟 11225125342511
+𦧠 32511252312251
+𦧡 43344334112251
+𦧢 11225141541234
+𦧣 11225134125122
+𦧤 11225112211234
+𦧥 25342511112251
+𦧦 11225134434554
+𦧧 112251251112134
+𦧨 412513251112251
+𦧩 312251131251534
+𦧪 251112134112251
+𦧫 112251551353334
+𦧬 551353334312251
+𦧭 1122512511541541
+𦧮 1122514453121251
+𦧯 3122513251114544
+𦧰 3251114544112251
+𦧱 11225154154132511
+𦧲 11225125121554234
+𦧳 11225113434342534
+𦧴 112251251251251112
+𦧵 112251112251112251
+𦧶 511121251134112251
+𦧷 3122514134315112234
+𦧸 34112251515515122134
+𦧹 112251121234343434112
+𦧺 1122511251234532511134
+𦧻 11225135251151535251354
+𦧼 11225151122511125431234
+𦧽 31225155124134251214251214
+𦧾 431234354152512
+𦧿 433443343541525
+𦨀 123435412341354152
+𦨁 34434535415225241121
+𦨂 12211123431122221354152
+𦨃 1433443345354152521121
+𦨄 143344334535415225241121
+𦨅 1122112213412341234354152
+𦨆 21135445351554431234354152
+𦨇 3354145
+𦨈 33541434
+𦨉 33541422
+𦨊 33541435
+𦨋 33541453
+𦨌 33541455
+𦨍 33541412
+𦨎 335414315
+𦨏 335414315
+𦨐 335414134
+𦨑 335414123
+𦨒 335414154
+𦨓 335414354
+𦨔 335414534
+𦨕 3354145254
+𦨖 3354142343
+𦨗 3354142154
+𦨘 3354141132
+𦨙 3354142511
+𦨚 3354141344
+𦨛 3354143554
+𦨜 3354141534
+𦨝 3354141551
+𦨞 3354141135
+𦨟 3354141254
+𦨠 3354141554
+𦨡 33541451532
+𦨢 33541435151
+𦨣 33541453251
+𦨤 45534335414
+𦨥 33541452252
+𦨦 53251335414
+𦨧 33541425111
+𦨨 33541435455
+𦨩 33541413534
+𦨪 33541425111
+𦨫 33541414312
+𦨬 33541445534
+𦨭 33541453254
+𦨮 33541432154
+𦨯 335414312251
+𦨰 33541412152
+𦨱 335414511112
+𦨲 33541444155
+𦨳 3354142511134
+𦨴 335414251251
+𦨵 335414332112
+𦨶 335414341134
+𦨷 335414321534
+𦨸 335414335211
+𦨹 335414351355
+𦨺 455343354145
+𦨻 335414243135
+𦨼 3354142515134
+𦨽 3354142523415
+𦨾 3354144125152
+𦨿 335414512154
+𦩀 3354141343434
+𦩁 3354143541234
+𦩂 3354143152134
+𦩃 3354144325135
+𦩄 3354145121121
+𦩅 3354142511112
+𦩆 3354143121534
+𦩇 3354145423454
+𦩈 3354145431134
+𦩉 5431134335414
+𦩊 33541432151135
+𦩋 33541431112111
+𦩌 33541415112134
+𦩍 33541435121251
+𦩎 33541443341312
+𦩏 33541432411121
+𦩐 33541413445215
+𦩑 33541413434234
+𦩒 33541412155121
+𦩓 33541454134111
+𦩔 33541431134333
+𦩕 33541421531535
+𦩖 33541432511312
+𦩗 33541443344334
+𦩘 33541444512134
+𦩙 33541452115211
+𦩚 3352112343134
+𦩛 3351425111134
+𦩜 33541441431251
+𦩝 335414251213541
+𦩞 335414341351122
+𦩟 335414312511354
+𦩠 335414251131121
+𦩡 335414125125121
+𦩢 335414131251534
+𦩣 335414111253134
+𦩤 335414445351344
+𦩥 335414251135345
+𦩦 335414511112333
+𦩧 521521521335414
+𦩨 335414441511112
+𦩩 335414431134531
+𦩪 335414532511234
+𦩫 335414431134252
+𦩬 335414131531534
+𦩭 335414251214544
+𦩮 335414344311354
+𦩯 335414513251221
+𦩰 335414312511211
+𦩱 335414431134121
+𦩲 335414431253511
+𦩳 3351412132511
+𦩴 3354142521251431
+𦩵 3354144315112234
+𦩶 3354143443554134
+𦩷 3354141122125211
+𦩸 3354145154151541
+𦩹 3354143443321511
+𦩺 3354141213541234
+𦩻 1225111231335414
+𦩼 3354141212511134
+𦩽 3354145551325111
+𦩾 3354143443311252
+𦩿 335414313215112
+𦪀 3354144135112251
+𦪁 3354144453434354
+𦪂 335213321212134
+𦪃 335214511353334
+𦪄 3354143251111121
+𦪅 335414413312154
+𦪆 33541412211134121
+𦪇 33541441352211535
+𦪈 12141533134335414
+𦪉 33541444132411121
+𦪊 33541413211234534
+𦪋 33541443112135211
+𦪌 33541444513412512
+𦪍 33541421211251431
+𦪎 3354143541112454
+𦪏 3354145425112454
+𦪐 3352132533414544
+𦪑 335414543345153554
+𦪒 335414251212511134
+𦪓 3354145112321155212
+𦪔 335414412515213134
+𦪕 335414134432511234
+𦪖 335414343123425121
+𦪗 335414122112512134
+𦪘 335414134315233534
+𦪙 335414341251541541
+𦪚 335414431253511124
+𦪛 335414121121121135
+𦪜 335414545454342444
+𦪝 335414431134554234
+𦪞 335414313425125251
+𦪟 335414121251431333
+𦪠 3354141221122112
+𦪡 33541421531522431
+𦪢 335414251251251112
+𦪣 251251251112335414
+𦪤 335414335414354153
+𦪥 335414445353232511
+𦪦 33521243452513112
+𦪧 335414121221113134
+𦪨 335142512121125134
+𦪩 3354141452413434154
+𦪪 3354143143143541112
+𦪫 3354142135454431234
+𦪬 3354142511353453534
+𦪭 335414121431112454
+𦪮 3354143434343413121
+𦪯 3354143513251125221
+𦪰 5225241533134335414
+𦪱 12512515112531335414
+𦪲 335414511234321155212
+𦪳 33541441251451353334
+𦪴 33541455525343442445
+𦪵 33541431431412211134
+𦪶 335414551353334251214
+𦪷 335414254312114444121
+𦪸 335414113411342511134
+𦪹 335414355431234325221
+𦪺 3354145112341321155212
+𦪻 3352144512225111354
+𦪼 33521312341354352511
+𦪽 3354144143135411515111
+𦪾 3354141331234312342121
+𦪿 4143135411515111335414
+𦫀 3354144311341211254444
+𦫁 3354144334354544111251
+𦫂 3354144334354542511134
+𦫃 33541414524134251251251
+𦫄 33541414524134431225211
+𦫅 3354143121353121352511134
+𦫆 3354141353334251214251214
+𦫇 33541425111251113241112154
+𦫈 335414551353334251214251214
+𦫉 3354143525125344444115511511
+𦫊 335414145241342512512511234341
+𦫋 415511534
+𦫌 31234511534
+𦫍 4511541132
+𦫎 311234511534
+𦫏 451154431132
+𦫐 134431154511534
+𦫑 34435541344511534
+𦫒 12212512134121511534
+𦫓 355215354
+𦫔 54334355215
+𦫕 11234355215
+𦫖 35521532511
+𦫗 53254355215
+𦫘 35521553544
+𦫙 32511355215
+𦫚 134115355215
+𦫛 1245521355215
+𦫜 1344334355215
+𦫝 5435354355215
+𦫞 13413333355215
+𦫟 43344334355215
+𦫠 52111534355215
+𦫡 12211134355215
+𦫢 24325251355215
+𦫣 11354153355215
+𦫤 355215132511134
+𦫥 132522111355215
+𦫦 344311354355215
+𦫧 431121134355215
+𦫨 413413333355215
+𦫩 251251115355215
+𦫪 4453533544355215
+𦫫 3554541541355215
+𦫬 3443554134355215
+𦫭 1525111534355215
+𦫮 2512511134355215
+𦫯 31254312114444355215
+𦫰 21212522145354355215
+𦫱 32511125121132355215
+𦫲 4111251554444554444535215
+𦫳 21212
+𦫴 12125
+𦫵 5132
+𦫶 121252
+𦫷 121255
+𦫸 121234
+𦫹 52135212
+𦫺 121213
+𦫻 121232
+𦫼 121252
+𦫽 121211
+𦫾 121255
+𦫿 12254
+𦬀 121215
+𦬁 1212123
+𦬂 1212135
+𦬃 1212315
+𦬄 1212534
+𦬅 1212251
+𦬆 1212345
+𦬇 1212132
+𦬈 1212215
+𦬉 1212345
+𦬊 1212515
+𦬋 1212153
+𦬌 1212523
+𦬍 1212135
+𦬎 1212525
+𦬏 1212523
+𦬐 1212354
+𦬑 122531
+𦬒 122112
+𦬓 12121354
+𦬔 12123324
+𦬕 12122512
+𦬖 12123235
+𦬗 12121534
+𦬘 12123554
+𦬙 12123224
+𦬚 12121551
+𦬛 12121255
+𦬜 12121554
+𦬝 1212121252
+𦬞 12121134
+𦬟 5235221132
+𦬠 1221312
+𦬡 12123512
+𦬢 12123221
+𦬣 12122554
+𦬤 12121524
+𦬥 12125352
+𦬦 5235221344
+𦬧 5235221312
+𦬨 12125134
+𦬩 12124134
+𦬪 12124512
+𦬫 12121344
+𦬬 12121121
+𦬭 12122534
+𦬮 12124535
+𦬯 12123212
+𦬰 12123121
+𦬱 12123132
+𦬲 12123251
+𦬳 12123255
+𦬴 12123215
+𦬵 12121221
+𦬶 1223112
+𦬷 12123523
+𦬸 121212354
+𦬹 121225111
+𦬺 121225135
+𦬻 121253154
+𦬼 121231234
+𦬽 121252134
+𦬾 121241554
+𦬿 121221251
+𦭀 121251335
+𦭁 121225541
+𦭂 121245135
+𦭃 121213515
+𦭄 121212523
+𦭅 121223344
+𦭆 121234415
+𦭇 121223554
+𦭈 121212154
+𦭉 121225351
+𦭊 12231324
+𦭋 121213553
+𦭌 12221124
+𦭍 12255211
+𦭎 12212152
+𦭏 12234333
+𦭐 121233124
+𦭑 121244112
+𦭒 121212121
+𦭓 121212215
+𦭔 121245534
+𦭕 121252534
+𦭖 121225112
+𦭗 121225234
+𦭘 121235452
+𦭙 121255452
+𦭚 121255312
+𦭛 121232312
+𦭜 121225134
+𦭝 121225221
+𦭞 12231354
+𦭟 12232525
+𦭠 52252234151
+𦭡 12251251
+𦭢 121212521
+𦭣 12225222
+𦭤 12225341
+𦭥 12231525
+𦭦 12241121
+𦭧 12212525
+𦭨 121245112
+𦭩 121225121
+𦭪 12235345
+𦭫 52352234151
+𦭬 12145252
+𦭭 121212152
+𦭮 1212125341
+𦭯 1212125345
+𦭰 1212441531
+𦭱 1212143112
+𦭲 1212515515
+𦭳 1212541541
+𦭴 1212434242
+𦭵 1212431112
+𦭶 1212312135
+𦭷 1212543112
+𦭸 1212335414
+𦭹 1212134334
+𦭺 1212525352
+𦭻 1212321511
+𦭼 1212344354
+𦭽 1212325113
+𦭾 1212325221
+𦭿 1212321523
+𦮀 1212355435
+𦮁 121255132
+𦮂 1212152511
+𦮃 1212221115
+𦮄 1212253511
+𦮅 523522152252
+𦮆 12121251154
+𦮇 1212151234
+𦮈 1212131554
+𦮉 1212125132
+𦮊 1212515211
+𦮋 1212415555
+𦮌 122543541
+𦮍 1212351252
+𦮎 1212122134
+𦮏 1212252525
+𦮐 1212554134
+𦮑 1212511251
+𦮒 1212112152
+𦮓 1212343422
+𦮔 122354152
+𦮕 122342444
+𦮖 1212112354
+𦮗 1212255311
+𦮘 1212531312
+𦮙 12123452522525
+𦮚 1212243154
+𦮛 1212441354
+𦮜 1212454412
+𦮝 1212442415
+𦮞 1212415234
+𦮟 1212441434
+𦮠 1212131534
+𦮡 1212542444
+𦮢 1212121354
+𦮣 1212251112
+𦮤 1212354544
+𦮥 1212251134
+𦮦 121235352
+𦮧 1212354112
+𦮨 1212555121
+𦮩 121232454
+𦮪 1212323553
+𦮫 1212344134
+𦮬 1212323312
+𦮭 1212342534
+𦮮 1212413134
+𦮯 1212351122
+𦮰 122413234
+𦮱 122351121
+𦮲 12245245
+𦮳 1212342121
+𦮴 122311212
+𦮵 1212511234
+𦮶 1222513533
+𦮷 12122511134
+𦮸 12125431134
+𦮹 12121345215
+𦮺 12123123454
+𦮻 12122513541
+𦮼 12125154544
+𦮽 12123121251
+𦮾 12121212534
+𦮿 12123525153
+𦯀 12123553121
+𦯁 12122515251
+𦯂 1224134234
+𦯃 12125135251
+𦯄 12121315251
+𦯅 12124135452
+𦯆 12125151251
+𦯇 12124125135
+𦯈 12125114554
+𦯉 12123232511
+𦯊 12124415134
+𦯋 12121215311
+𦯌 12123454544
+𦯍 12121221115
+𦯎 12123253541
+𦯏 121253113553
+𦯐 1223253251
+𦯑 12123251112
+𦯒 1212323552
+𦯓 12125225111
+𦯔 12124351523
+𦯕 12124451234
+𦯖 12122511121
+𦯗 1221125251
+𦯘 12121433454
+𦯙 12121211523
+𦯚 12123515251
+𦯛 12122534132
+𦯜 12123251135
+𦯝 12122121234
+𦯞 12121325112
+𦯟 12123541115
+𦯠 12123122515
+𦯡 12125154544
+𦯢 12121354515
+𦯣 12123225111
+𦯤 523522134211
+𦯥 5235224451551
+𦯦 5235223251135
+𦯧 12241541234
+𦯨 12125412132
+𦯩 12125454354
+𦯪 12121234354
+𦯫 12124411554
+𦯬 12123411234
+𦯭 1212251515
+𦯮 12121343115
+𦯯 12122534341
+𦯰 12121313251
+𦯱 121232125125
+𦯲 12123553135
+𦯳 12123553132
+𦯴 12125135334
+𦯵 12123251135
+𦯶 1222534251
+𦯷 12125312343
+𦯸 12125151312
+𦯹 12124414544
+𦯺 12124143531
+𦯻 12124414134
+𦯼 12124535112
+𦯽 12124544531
+𦯾 12124155251
+𦯿 12121135124
+𦰀 121212134354
+𦰁 12121234521
+𦰂 12121214334
+𦰃 12121341132
+𦰄 12121213415
+𦰅 12121315251
+𦰆 12125325221
+𦰇 12122511531
+𦰈 12122513444
+𦰉 12122512515
+𦰊 12124535521
+𦰋 12122522135
+𦰌 12122511121
+𦰍 12123542444
+𦰎 12123134354
+𦰏 12123541234
+𦰐 12123234154
+𦰑 12123545354
+𦰒 12123213251
+𦰓 12125315531
+𦰔 12123541234
+𦰕 12125311234
+𦰖 121212113553
+𦰗 12121221512
+𦰘 12121335151
+𦰙 12121515132
+𦰚 1224413134
+𦰛 12124413553
+𦰜 1225231525
+𦰝 12122512115
+𦰞 12123222154
+𦰟 122521135
+𦰠 1223454132
+𦰡 1212511352
+𦰢 122351152
+𦰣 1223235154
+𦰤 1224453112
+𦰥 122311352
+𦰦 1225153134
+𦰧 12121541234
+𦰨 1221251154
+𦰩 1222511134
+𦰪 121244125341
+𦰫 121244151315
+𦰬 121232511252
+𦰭 12121525454
+𦰮 121213435515
+𦰯 121253154251
+𦰰 121253135251
+𦰱 121224325251
+𦰲 121225111112
+𦰳 121212341523
+𦰴 121251535234
+𦰵 121235435422
+𦰶 121212135251
+𦰷 121245434252
+𦰸 121213544544
+𦰹 121234434554
+𦰺 121232515112
+𦰻 121212343534
+𦰼 12125231211
+𦰽 121212153254
+𦰾 121253135515
+𦰿 121232354354
+𦱀 12121543541
+𦱁 121251541554
+𦱂 121212511534
+𦱃 121211225221
+𦱄 121235333544
+𦱅 121251312251
+𦱆 1225244535
+𦱇 121244535121
+𦱈 121244112354
+𦱉 121232115115
+𦱊 121234435112
+𦱋 121241525111
+𦱌 121225431252
+𦱍 121212351235
+𦱎 121232121124
+𦱏 12213443354
+𦱐 121231234415
+𦱑 121231234252
+𦱒 121231213134
+𦱓 121225121132
+𦱔 121235411515
+𦱕 121225112512
+𦱖 12125232124
+𦱗 121252212511
+𦱘 121211354153
+𦱙 121235415211
+𦱚 121211541154
+𦱛 121225111354
+𦱜 121231234354
+𦱝 12255535422
+𦱞 121252355414
+𦱟 121225341354
+𦱠 52352253523522
+𦱡 52252352225152
+𦱢 52252352225155
+𦱣 121241525221
+𦱤 121225111312
+𦱥 121215112121
+𦱦 121231251211
+𦱧 52252352212341
+𦱨 121251534234
+𦱩 121235251541
+𦱪 121252115211
+𦱫 121225152521
+𦱬 121254334121
+𦱭 12125315132
+𦱮 121231511234
+𦱯 121213112351
+𦱰 121212112422
+𦱱 12225151132
+𦱲 121251325211
+𦱳 121255455452
+𦱴 52352215231322
+𦱵 121225311341
+𦱶 52352352225211
+𦱷 121213244444
+𦱸 121232115112
+𦱹 52352234523522
+𦱺 52252352234415
+𦱻 121254524444
+𦱼 1212133515
+𦱽 12212512534
+𦱾 121212114312
+𦱿 121233223134
+𦲀 121244254251
+𦲁 121253151335
+𦲂 121241431354
+𦲃 121212135454
+𦲄 121244535515
+𦲅 121251145252
+𦲆 121211235251
+𦲇 121235331312
+𦲈 121234321312
+𦲉 121244112215
+𦲊 121243343513
+𦲋 121245354152
+𦲌 121243344334
+𦲍 121244143134
+𦲎 121244535354
+𦲏 121235134153
+𦲐 121212512252
+𦲑 121211342534
+𦲒 121213121121
+𦲓 121212344444
+𦲔 121212541254
+𦲕 121212155121
+𦲖 121211213415
+𦲗 121251153554
+𦲘 212113554354
+𦲙 121251112534
+𦲚 121252131344
+𦲛 121253145215
+𦲜 121245441234
+𦲝 121253155414
+𦲞 121254134111
+𦲟 121231125222
+𦲠 121232511515
+𦲡 121235325121
+𦲢 121231221234
+𦲣 121253125121
+𦲤 12232413534
+𦲥 121235325121
+𦲦 121231234354
+𦲧 121234112251
+𦲨 121253141431
+𦲩 121232522135
+𦲪 121232151154
+𦲫 12212151532
+𦲬 52352212321235
+𦲭 12225152511
+𦲮 12232345435
+𦲯 121214334354
+𦲰 121225111115
+𦲱 12232124132
+𦲲 12212343134
+𦲳 12213435135
+𦲴 12232354134
+𦲵 12233212121
+𦲶 121252111534
+𦲷 121244141431
+𦲸 121212524134
+𦲹 12241323544
+𦲺 12232125134
+𦲻 12234431121
+𦲼 12253113251
+𦲽 121233123534
+𦲾 12244112154
+𦲿 121225221135
+𦳀 121253111234
+𦳁 1212312343115
+𦳂 1212441151534
+𦳃 121212211152
+𦳄 1212321251134
+𦳅 1212413251134
+𦳆 1212413425135
+𦳇 1212442112251
+𦳈 1212251211515
+𦳉 121252133511
+𦳊 1212253444441
+𦳋 1212212512254
+𦳌 1212355114544
+𦳍 1212354133544
+𦳎 1212354125111
+𦳏 1212123425111
+𦳐 1212123411234
+𦳑 1212122111234
+𦳒 1212511214334
+𦳓 1212325111535
+𦳔 1212413122154
+𦳕 1212251112132
+𦳖 121225251454
+𦳗 1212234325111
+𦳘 122123425111
+𦳙 1212154121354
+𦳚 121225111234
+𦳛 1212125111235
+𦳜 1212515152511
+𦳝 1212251113533
+𦳞 1212311211112
+𦳟 1212252431112
+𦳠 1212543343554
+𦳡 1212344351554
+𦳢 1212251213541
+𦳣 1212352511134
+𦳤 1212355154444
+𦳥 1212251112343
+𦳦 1212121251534
+𦳧 1212415331521
+𦳨 1212531135333
+𦳩 1212251335111
+𦳪 1212515515134
+𦳫 1212312343534
+𦳬 1212253412511
+𦳭 121212534454
+𦳮 1212251111234
+𦳯 12212344454
+𦳰 1212451312154
+𦳱 1212251125112
+𦳲 1212155512122
+𦳳 1212511112333
+𦳴 1212111253132
+𦳵 1212132513312
+𦳶 1212415251214
+𦳷 1212351253511
+𦳸 1212441325341
+𦳹 122531135354
+𦳺 121213344454
+𦳻 121212112152
+𦳼 1212433412534
+𦳽 1212312345435
+𦳾 1212445355435
+𦳿 1212123431134
+𦴀 1212112125111
+𦴁 1212251112134
+𦴂 1212312121121
+𦴃 122145554234
+𦴄 122253425111
+𦴅 1212545435354
+𦴆 122121335251
+𦴇 1212122451234
+𦴈 1212121213251
+𦴉 1212152333544
+𦴊 1212135425134
+𦴋 1212252214554
+𦴌 1212445354354
+𦴍 1212251214525
+𦴎 1212455213554
+𦴏 1212313431132
+𦴐 1212112121134
+𦴑 1212123412211
+𦴒 1212412512511
+𦴓 1212133551315
+𦴔 1212433425111
+𦴕 1212445431234
+𦴖 1212125352511
+𦴗 1212253413511
+𦴘 522523522535353
+𦴙 122312343533
+𦴚 121253251454
+𦴛 1212515253341
+𦴜 12122522114544
+𦴝 122441251112
+𦴞 1212321151153
+𦴟 1212555135422
+𦴠 1212253435411
+𦴡 122123413544
+𦴢 1212441212135
+𦴣 1212531413534
+𦴤 1212251125134
+𦴥 1212441352511
+𦴦 1212445354251
+𦴧 1212534353432
+𦴨 1212325113251
+𦴩 1212324111251
+𦴪 1212415351335
+𦴫 1212251511252
+𦴬 1212522523522
+𦴭 1212353511534
+𦴮 1212441551312
+𦴯 1212445351354
+𦴰 1212532511312
+𦴱 121213324515
+𦴲 1212225111354
+𦴳 1212352511312
+𦴴 1212441445531
+𦴵 1212441112154
+𦴶 4411212341234
+𦴷 1212441321121
+𦴸 1212441525341
+𦴹 1212131233534
+𦴺 1212111341134
+𦴻 1212522515452
+𦴼 1212111342534
+𦴽 1212121341121
+𦴾 1212535353115
+𦴿 1212112134154
+𦵀 1212132522111
+𦵁 121213351152
+𦵂 1212123435352
+𦵃 1212121344544
+𦵄 1212212511134
+𦵅 1212251114444
+𦵆 1212251125121
+𦵇 12122535414544
+𦵈 1212251214354
+𦵉 1212215112134
+𦵊 1212152511134
+𦵋 1212322512512
+𦵌 1212332353134
+𦵍 1212321113134
+𦵎 1212531354251
+𦵏 122135435134
+𦵐 1212321511121
+𦵑 1212414313554
+𦵒 1212433431234
+𦵓 122252132522
+𦵔 122343425111
+𦵕 122442125441
+𦵖 1212415335234
+𦵗 122411125112
+𦵘 122132522531
+𦵙 122441531251
+𦵚 122531544544
+𦵛 122311252252
+𦵜 122441125351
+𦵝 1212354441312
+𦵞 121245243121
+𦵟 121212112452
+𦵠 122323554234
+𦵡 12124452513251
+𦵢 12125311311534
+𦵣 12122513533341
+𦵤 12124451135124
+𦵥 12125131123454
+𦵦 12123221123454
+𦵧 12123534511534
+𦵨 12122521353134
+𦵩 12124411253511
+𦵪 12121252342154
+𦵫 12121245554234
+𦵬 12121123431211
+𦵭 12121213443531
+𦵮 1212524143112
+𦵯 12124453121251
+𦵰 12122512125121
+𦵱 12125132433541
+𦵲 12125114525254
+𦵳 12123512143112
+𦵴 12123541521234
+𦵵 12122125343415
+𦵶 12121213541234
+𦵷 12121122125211
+𦵸 12121221114334
+𦵹 12124334433422
+𦵺 12122522123334
+𦵻 12121545412511
+𦵼 1212511325152
+𦵽 12122511243135
+𦵾 12124134343541
+𦵿 12124143125122
+𦶀 12123251154444
+𦶁 12125152515215
+𦶂 12121212515215
+𦶃 1223251211535
+𦶄 12124412511121
+𦶅 1212125351454
+𦶆 12125544445211
+𦶇 12121221113115
+𦶈 12121221112511
+𦶉 121241341212115
+𦶊 12124412512115
+𦶋 12123513541541
+𦶌 12124135121251
+𦶍 12124143133544
+𦶎 121213434343412
+𦶏 12125232411121
+𦶐 12121213544544
+𦶑 12122511541541
+𦶒 12124413212512
+𦶓 12121234122134
+𦶔 12122511135251
+𦶕 12125111212511
+𦶖 12125454541234
+𦶗 12121214311234
+𦶘 12124311343312
+𦶙 12121234125111
+𦶚 12124312343553
+𦶛 5235222511523522
+𦶜 1224411225125
+𦶝 1223122113534
+𦶞 1225314453454
+𦶟 1221213544444
+𦶠 12121234511534
+𦶡 12124413112251
+𦶢 12123354144135
+𦶣 12121354224444
+𦶤 1212524451135
+𦶥 12125313121534
+𦶦 1212531511352
+𦶧 1212413441534
+𦶨 12124453434354
+𦶩 12124313425221
+𦶪 12121221111312
+𦶫 12121212231234
+𦶬 1212525435354
+𦶭 12125353531312
+𦶮 12123112341154
+𦶯 12123252211312
+𦶰 12123253411515
+𦶱 12124134131134
+𦶲 12124451135531
+𦶳 12124452511531
+𦶴 12124452511135
+𦶵 12124412121234
+𦶶 12124412512512
+𦶷 12124415253452
+𦶸 12124311343112
+𦶹 12124131221251
+𦶺 12124452511134
+𦶻 12121533425221
+𦶼 12124412121233
+𦶽 1212523554234
+𦶾 12121121431121
+𦶿 12125454541234
+𦷀 12121213431234
+𦷁 12121311121115
+𦷂 12123112341132
+𦷃 12121353331121
+𦷄 12125314511534
+𦷅 12121515341121
+𦷆 12122514444515
+𦷇 12123212134333
+𦷈 12123531343434
+𦷉 12123234125122
+𦷊 12123251513554
+𦷋 12123412514544
+𦷌 12123215341251
+𦷍 12123123431134
+𦷎 12123425111234
+𦷏 12123123441431
+𦷐 12123533425221
+𦷑 12123123431112
+𦷒 12123443533354
+𦷓 12121212514444
+𦷔 12121312251111
+𦷕 12122125454341
+𦷖 1222511121355
+𦷗 12122512511211
+𦷘 12123121213515
+𦷙 12123123421251
+𦷚 12123215114544
+𦷛 12123235113511
+𦷜 12121325111354
+𦷝 12123523435234
+𦷞 12124134341234
+𦷟 12124412343541
+𦷠 12125151213434
+𦷡 12125433431134
+𦷢 1221252214544
+𦷣 12122511455112
+𦷤 1222511134252
+𦷥 1224312343134
+𦷦 1225433413251
+𦷧 12121221342444
+𦷨 1223412341254
+𦷩 122132513454
+𦷪 12124413443531
+𦷫 12124413155414
+𦷬 1223123445434
+𦷭 1221234341154
+𦷮 1224421251251
+𦷯 1221212511211
+𦷰 12124413443521
+𦷱 12122121335414
+𦷲 12123443554234
+𦷳 12124451251431
+𦷴 1212431134454
+𦷵 12125312511153
+𦷶 5235221344523522
+𦷷 1212415334454
+𦷸 12125312512534
+𦷹 12122522152511
+𦷺 12125544441121
+𦷻 5225224424422154
+𦷼 12123412513132
+𦷽 1212125125152
+𦷾 1221221545252
+𦷿 12122125511454
+𦸀 121212211134121
+𦸁 121244143344334
+𦸂 121244145351234
+𦸃 121212512554121
+𦸄 121232341351155
+𦸅 12124451135531
+𦸆 121251512211134
+𦸇 121233212354112
+𦸈 121231225133544
+𦸉 121212125133544
+𦸊 121212522113455
+𦸋 121225112511112
+𦸌 121235414451135
+𦸍 121235413425135
+𦸎 121225121121124
+𦸏 121225232411121
+𦸐 12125212135121
+𦸑 212125221451534
+𦸒 121235313412512
+𦸓 121212343424134
+𦸔 121235121251333
+𦸕 121212512512122
+𦸖 121255444425541
+𦸗 121213211234534
+𦸘 121213251111534
+𦸙 121231212121152
+𦸚 121254154132511
+𦸛 121255525111234
+𦸜 121225121252511
+𦸝 121234312344544
+𦸞 121245434251214
+𦸟 121221354551132
+𦸠 121225433443341
+𦸡 121234432511135
+𦸢 121251312524134
+𦸣 121241332511312
+𦸤 121244512211154
+𦸥 12234251212511
+𦸦 121212455213134
+𦸧 121213425134121
+𦸨 121213412511121
+𦸩 121225111122112
+𦸪 121244131112111
+𦸫 121225114351523
+𦸬 121215252511134
+𦸭 121212511251251
+𦸮 121241131251534
+𦸯 121241431121234
+𦸰 121241341331121
+𦸱 121253151145252
+𦸲 121232251125214
+𦸳 121213115341312
+𦸴 121212511121534
+𦸵 121221531535334
+𦸶 522521212251112
+𦸷 121255444433544
+𦸸 121231234341234
+𦸹 121252351533522
+𦸺 1212121215125234
+𦸻 12212134111251
+𦸼 12244154134234
+𦸽 122254312114444
+𦸾 12251532111534
+𦸿 12225121212135
+𦹀 12255423425121
+𦹁 1221212211234
+𦹂 121212342511234
+𦹃 121244141431251
+𦹄 121255444453251
+𦹅 121253144535455
+𦹆 1212125123443121
+𦹇 12123434121454
+𦹈 121244123431312
+𦹉 121251512511312
+𦹊 121212512511312
+𦹋 212125221321534
+𦹌 121225341251214
+𦹍 121234112341312
+𦹎 121244535544544
+𦹏 121244132411121
+𦹐 12124125152152
+𦹑 121241535443121
+𦹒 121212212511121
+𦹓 121251121251211
+𦹔 121215311343534
+𦹕 121212213425115
+𦹖 121251554554234
+𦹗 121213132511134
+𦹘 121212132511134
+𦹙 121211211121511
+𦹚 1212125234343434
+𦹛 121225125125115
+𦹜 121232512115154
+𦹝 121231251121153
+𦹞 121231234312135
+𦹟 121233255423435
+𦹠 12213542511121
+𦹡 121213543443521
+𦹢 12123251112454
+𦹣 121235121225121
+𦹤 121235311213511
+𦹥 1225212111534
+𦹦 12244534112431
+𦹧 12251153425221
+𦹨 121253433434121
+𦹩 12225342513511
+𦹪 121225111344334
+𦹫 12235321251112
+𦹬 12234343434134
+𦹭 12241533133544
+𦹮 121234431234333
+𦹯 12251122251112
+𦹰 12232554134354
+𦹱 12225111343312
+𦹲 121244125111515
+𦹳 12234452511134
+𦹴 1225544443454
+𦹵 12225111212251
+𦹶 12212342511134
+𦹷 12212141431251
+𦹸 12225111225121
+𦹹 12244113121121
+𦹺 12241342511134
+𦹻 12244134431121
+𦹼 52352233221212134
+𦹽 121251532511312
+𦹾 121241251453115
+𦹿 121232545435354
+𦺀 121212341541134
+𦺁 12124411541234
+𦺂 52352232511154444
+𦺃 1222125342554
+𦺄 12123535115452
+𦺅 12241432533543234341211121111
+𦺆 1212325111111112
+𦺇 121244111215531
+𦺈 1212515515122134
+𦺉 1212321251124124
+𦺊 1212251114451135
+𦺋 1212531445343454
+𦺌 1212441445343454
+𦺍 1212441431351122
+𦺎 1212354141431251
+𦺏 1212251112413434
+𦺐 1212135415341534
+𦺑 1212414312513115
+𦺒 121254523354531
+𦺓 1212122511123511
+𦺔 1212341335413554
+𦺕 1212121543341134
+𦺖 1212545232535251
+𦺗 1212341122515452
+𦺘 1212441131251534
+𦺙 1212312343533112
+𦺚 1212515121121251
+𦺛 1212353551353334
+𦺜 1212433443344553
+𦺝 1212445454425221
+𦺞 1212411125112512
+𦺟 1212121452155121
+𦺠 1212353511233544
+𦺡 1212243452513112
+𦺢 1212554444121251
+𦺣 1212121132511134
+𦺤 1212121545231234
+𦺥 12121213251152
+𦺦 1212445112213444
+𦺧 12124453121251221
+𦺨 1212352521353334
+𦺩 1212212511121534
+𦺪 1212312343411234
+𦺫 1212132514511534
+𦺬 1212554554134534
+𦺭 1212325114525254
+𦺮 121241332151134
+𦺯 121232151541234
+𦺰 1212322354554234
+𦺱 12122121152511134
+𦺲 1212354552511134
+𦺳 1212414312512251
+𦺴 1212324111211234
+𦺵 1212122111541234
+𦺶 1212134334433422
+𦺷 1212312135312135
+𦺸 1212431234354152
+𦺹 121212211135352
+𦺺 1212433443344535
+𦺻 1212122135413134
+𦺼 121252414312511
+𦺽 1212251113425115
+𦺾 1212441132522134
+𦺿 1212414312511534
+𦻀 1212332251112134
+𦻁 1212353215113534
+𦻂 1212441341511534
+𦻃 1212343432411121
+𦻄 1212441511112333
+𦻅 1212113431112111
+𦻆 1212122111341234
+𦻇 522523522251214544
+𦻈 1212441125112454
+𦻉 1212335414521354
+𦻊 1212123412211134
+𦻋 1212122512251252
+𦻌 1212125112425221
+𦻍 12121342512134121
+𦻎 122312343413252
+𦻏 1212343434342115
+𦻐 1212433421251112
+𦻑 1212411125145534
+𦻒 1212251113411214
+𦻓 1212312342511121
+𦻔 1212311121114134
+𦻕 121252355114544
+𦻖 1212554444352511
+𦻗 121232411121454
+𦻘 1212113411342511
+𦻙 1212122111122111
+𦻚 121252112211152
+𦻛 1212521115344444
+𦻜 1212441122151234
+𦻝 1212122511121534
+𦻞 1212214545434134
+𦻟 1212441532511312
+𦻠 1212125111211312
+𦻡 1212122111541312
+𦻢 1212154121221312
+𦻣 1212134342341312
+𦻤 1212345234522511
+𦻥 121231112111132
+𦻦 1212353112521312
+𦻧 1212324111211312
+𦻨 1212353335441312
+𦻩 1212454544251214
+𦻪 1212521251152132
+𦻫 1212412121413534
+𦻬 1212415312211134
+𦻭 1212441522515452
+𦻮 1212415321531535
+𦻯 1212415351153135
+𦻰 1212135431112111
+𦻱 1212145241344134
+𦻲 1212121251125221
+𦻳 1212153415342511
+𦻴 1212121215112134
+𦻵 1212122125112153
+𦻶 1212511225114412
+𦻷 1212252554251214
+𦻸 1212251251251354
+𦻹 1212311121114444
+𦻺 1212511225111121
+𦻻 1212252125143135
+𦻼 1212252211311534
+𦻽 1212123425113511
+𦻾 1212432523454252
+𦻿 1212344353325121
+𦼀 1212343123435515
+𦼁 1212312343525121
+𦼂 1212341121341121
+𦼃 1212341511325122
+𦼄 1212325121354412
+𦼅 121255312211152
+𦼆 1212112135411214
+𦼇 1212121551214544
+𦼈 122122111544444
+𦼉 12212232411121
+𦼊 1212123412135354
+𦼋 1212123455124134
+𦼌 3131212251125214
+𦼍 1212325114451135
+𦼎 1212335414335414
+𦼏 1212432524312511
+𦼐 1212433443344334
+𦼑 1212445353232511
+𦼒 1212545454342444
+𦼓 122112143344334
+𦼔 122134432511234
+𦼕 1212243452511234
+𦼖 122453123431234
+𦼗 122513241343112
+𦼘 122513153512431
+𦼙 1212531251112134
+𦼚 122123412341234
+𦼛 122121213434333
+𦼜 122121213435234
+𦼝 122442555325341
+𦼞 122341123425121
+𦼟 122554444415435
+𦼠 122511225111132
+𦼡 1212554252354252
+𦼢 1212252112343312
+𦼣 122212545434134
+𦼤 122253415445445
+𦼥 12244112132511
+𦼦 121213553425221
+𦼧 12252414311234
+𦼨 122225112511134
+𦼩 12123134211121111
+𦼪 12121234545231234
+𦼫 12122153151353334
+𦼬 12124412511125221
+𦼭 121212341251124124
+𦼮 12121225111234112
+𦼯 1212431353334454
+𦼰 12121234251135345
+𦼱 1212324111212525
+𦼲 12122434525125121
+𦼳 12123541251113533
+𦼴 12121234251113533
+𦼵 12122511353453115
+𦼶 12123511122151234
+𦼷 12121251112523554
+𦼸 12121214125125251
+𦼹 12124125251131234
+𦼺 12121212511121534
+𦼻 12124412521353134
+𦼼 12123525121444454
+𦼽 12125212511521254
+𦼾 12121213545325121
+𦼿 12121525132511134
+𦽀 12123112132511134
+𦽁 12125544441555121
+𦽂 12123123412135121
+𦽃 12123215351325122
+𦽄 12125131221343554
+𦽅 12125112251112512
+𦽆 1212524143112521
+𦽇 1212354151111254
+𦽈 12124312535111344
+𦽉 12122511143344334
+𦽊 12122512512251251
+𦽋 12123411243135251
+𦽌 12123215125125121
+𦽍 12225115132125
+𦽎 1212452455124134
+𦽏 12123251115444435
+𦽐 12123215111213554
+𦽑 12123123441251521
+𦽒 12122511134113534
+𦽓 12124334433445513
+𦽔 12121234123411234
+𦽕 12123531251251344
+𦽖 12122511125312341
+𦽗 12124325241343134
+𦽘 12124413515125221
+𦽙 1212515515134454
+𦽚 12125241431531531
+𦽛 1212445452343554
+𦽜 12124453553321511
+𦽝 12123225121554234
+𦽞 12125212511521135
+𦽟 1212351325122454
+𦽠 12125225241533134
+𦽡 12124125145121315
+𦽢 12121245251112134
+𦽣 5235221234112343534
+𦽤 12124111251333534
+𦽥 12121211113431234
+𦽦 12122511252214153
+𦽧 1212312343123453
+𦽨 12121251112413434
+𦽩 12121234545231234
+𦽪 12123312125125121
+𦽫 12121312514544534
+𦽬 121254334152152
+𦽭 122354354321511
+𦽮 12123354143554531
+𦽯 122123452251541
+𦽰 1225452334435112
+𦽱 5235223251521523522
+𦽲 1221241344413534
+𦽳 12122511252144544
+𦽴 12124143111212511
+𦽵 1212524143112531
+𦽶 1212123412211152
+𦽷 12124415111121312
+𦽸 12125121151541312
+𦽹 12122511251111312
+𦽺 12122512511153134
+𦽻 12123225112341312
+𦽼 12124411252211234
+𦽽 12124312343553134
+𦽾 12124413545325121
+𦽿 12121252212511134
+𦾀 12121344311535515
+𦾁 12121113432511234
+𦾂 12121121343334544
+𦾃 12121211215425221
+𦾄 12121251234445531
+𦾅 12121112533424134
+𦾆 12122512512511154
+𦾇 12122513453111234
+𦾈 12122512512511234
+𦾉 12124532511154444
+𦾊 12122512512514153
+𦾋 21212522145354152
+𦾌 12122512143541112
+𦾍 12123541542511234
+𦾎 12123123431234531
+𦾏 1221121211225112
+𦾐 12121251253425221
+𦾑 1221252211123422
+𦾒 21212522113121534
+𦾓 1223234343434115
+𦾔 12123241112122511
+𦾕 1223511125125121
+𦾖 1224455443251214
+𦾗 121251121344325221
+𦾘 1225314454334354
+𦾙 1221211212213412
+𦾚 1222153152511134
+𦾛 12122511521251152
+𦾜 1223443533511534
+𦾝 1223445113251252
+𦾞 1225112413425221
+𦾟 12121534153425221
+𦾠 1222511123411234
+𦾡 12125312521353134
+𦾢 1221234122111345
+𦾣 1221214532411121
+𦾤 1223412511224544
+𦾥 1222511451251112
+𦾦 1223251511252531
+𦾧 1212251112132511
+𦾨 122524143112531
+𦾩 122523443321511
+𦾪 121221212511515354
+𦾫 12212145312343554
+𦾬 121212154154132511
+𦾭 121232154143454153
+𦾮 121212251112341234
+𦾯 121255444455124134
+𦾰 121241325251131234
+𦾱 121212155525111234
+𦾲 12124325121122134
+𦾳 121213252213412154
+𦾴 121231554143554234
+𦾵 121243344334451234
+𦾶 121244112511123312
+𦾷 121244154154134333
+𦾸 121241431252132522
+𦾹 121212535115435354
+𦾺 121234112431341534
+𦾻 121234431215114544
+𦾼 12121122125211454
+𦾽 12122522124134454
+𦾾 12123544311252454
+𦾿 121243123411213511
+𦿀 12123123412132511
+𦿁 121231234125125121
+𦿂 121215432511154444
+𦿃 121212111542433541
+𦿄 121225112251113533
+𦿅 121241121125444435
+𦿆 121213251251113533
+𦿇 1223525121444452
+𦿈 121234125125125122
+𦿉 121225111341511534
+𦿊 121221531555525121
+𦿋 121212154251135345
+𦿌 121225115545544444
+𦿍 121232224314311134
+𦿎 121252252112343134
+𦿏 121221212522145354
+𦿐 121223324111211534
+𦿑 52352225112511523522
+𦿒 121212341113431234
+𦿓 121212511122513554
+𦿔 121243252343134132
+𦿕 1212121324111211234
+𦿖 121212141352211515
+𦿗 121241251252513115
+𦿘 121234342511125221
+𦿙 121235253415355134
+𦿚 1222522123344454
+𦿛 12225221453232511
+𦿜 12244552132511134
+𦿝 12243252343134252
+𦿞 121244132535414544
+𦿟 121255444413412512
+𦿠 121245324111211312
+𦿡 12122511543341134
+𦿢 121245113533341312
+𦿣 121241251252511312
+𦿤 121241554251211312
+𦿥 121221253434151312
+𦿦 121225344334433422
+𦿧 121221211311234534
+𦿨 121231234555125121
+𦿩 121212512212511132
+𦿪 12123541112454132
+𦿫 121241112511342511
+𦿬 121241332511154444
+𦿭 121244112212523434
+𦿮 121243135333431121
+𦿯 121243134252213534
+𦿰 121211211211254444
+𦿱 121213211121111534
+𦿲 121213432511154444
+𦿳 121212135121354121
+𦿴 121225134432511234
+𦿵 121232511211154134
+𦿶 12251543125112253
+𦿷 12235335251125115
+𦿸 1223212154251214
+𦿹 121225111342512534
+𦿺 121231234353431234
+𦿻 121234112431341121
+𦿼 121235212121212121
+𦿽 121231234132511134
+𦿾 121231234223424134
+𦿿 121255444431234531
+𧀀 121235341112511344
+𧀁 121231234251225251
+𧀂 121234431123411234
+𧀃 12214312341431234
+𧀄 121225121251113533
+𧀅 212125221131234534
+𧀆 212125221451251431
+𧀇 121225554444251211
+𧀈 12234152341522511
+𧀉 12244154545434234
+𧀊 12255444434431234
+𧀋 12241312341234354
+𧀌 12244112512343534
+𧀍 522522112152551134
+𧀎 121241251452512511
+𧀏 12234112431415435
+𧀐 1221121325113554
+𧀑 12231234312511211
+𧀒 12253112512343134
+𧀓 12251325112512531
+𧀔 121234435331354333
+𧀕 1212524143112454
+𧀖 121231234251112134
+𧀗 121231123455525121
+𧀘 121244211212511134
+𧀙 121212211143344444
+𧀚 121231234512514334
+𧀛 121254354115154444
+𧀜 12243343443321511
+𧀝 121244132231341234
+𧀞 12225111234125134
+𧀟 12254251535425221
+𧀠 1212554444251112134
+𧀡 1212441324111214444
+𧀢 12122512121122151234
+𧀣 1212411125132411121
+𧀤 1212212134341343452
+𧀥 1212132511454544354
+𧀦 1212352512144442511
+𧀧 2121252214512135354
+𧀨 1212555253415445445
+𧀩 1212251113425113533
+𧀪 1212441134432511234
+𧀫 1212135431251113533
+𧀬 1212354112343424134
+𧀭 1212123434341234134
+𧀮 1212125112441343134
+𧀯 1212445343123425121
+𧀰 12122512121414345252
+𧀱 1212122135452524544
+𧀲 1212511225113425135
+𧀳 1212121115451123344
+𧀴 1212215315251213541
+𧀵 1212125111233121234
+𧀶 1221214525121542134
+𧀷 1212333511121251124
+𧀸 1212322243143111234
+𧀹 121241312214444454
+𧀺 1212121251132511134
+𧀻 1212323513354111251
+𧀼 1212523251514143112
+𧀽 1212312342511125221
+𧀾 1212145241343451523
+𧀿 121243125351113452
+𧁀 1212122511123411234
+𧁁 1212251251112213534
+𧁂 121252431353334454
+𧁃 1212312344155425121
+𧁄 1212441212133541422
+𧁅 1212531212134112431
+𧁆 1212252253434112431
+𧁇 52352352352315252254
+𧁈 1212121351213541234
+𧁉 1212125112441535215
+𧁊 1212251115115344544
+𧁋 1212315541431344544
+𧁌 2121252214532125341
+𧁍 1212125111212211154
+𧁎 122251145121213134
+𧁏 1212124525121542134
+𧁐 12244555212511134
+𧁑 1212441545454342444
+𧁒 1212123443112145534
+𧁓 1212322512211311534
+𧁔 1212441125112425221
+𧁕 1212441311331121312
+𧁖 1212121255455425121
+𧁗 1212325354145441312
+𧁘 1212531511121251124
+𧁙 1212431121341511534
+𧁚 1212454445444544121
+𧁛 1212441522515414444
+𧁜 1212111211125114544
+𧁝 1212121112111252511
+𧁞 1212112341123411234
+𧁟 1212122125112445531
+𧁠 121252352511134112
+𧁡 1212134252341251124
+𧁢 1212251132511154444
+𧁣 2121252214525111234
+𧁤 1212251342513425134
+𧁥 2121252554444554444
+𧁦 2121252211211254444
+𧁧 2121252251214554234
+𧁨 1212312343525121134
+𧁩 121231234325113554
+𧁪 1212324111212511135
+𧁫 1212322512512511234
+𧁬 1212332312511211112
+𧁭 1212554444251122111
+𧁮 1212332521251152112
+𧁯 1212554444351251214
+𧁰 1212352534251112154
+𧁱 122414325122513134
+𧁲 122122125111213312
+𧁳 122125112435115215
+𧁴 122341251251343422
+𧁵 122121311222214444
+𧁶 122132543121134121
+𧁷 122122514131251112
+𧁸 122351144525111234
+𧁹 413125111212212251
+𧁺 122554234131251534
+𧁻 12122121511452521312
+𧁼 121252131213541454
+𧁽 1212431234354152454
+𧁾 12122511251253133544
+𧁿 12123532522135251214
+𧂀 12123443533132511134
+𧂁 12122512512511121534
+𧂂 12123411243115341534
+𧂃 12123415251132511134
+𧂄 12125112251135321511
+𧂅 12123123454545434333
+𧂆 12123412512513434534
+𧂇 1223434511121251124
+𧂈 12121212512512511234
+𧂉 121232511343123425121
+𧂊 12122135454211121111
+𧂋 12124112112544444544
+𧂌 12121433443345354152
+𧂍 1212515515122134454
+𧂎 12124125125251135415
+𧂏 1212134432511234454
+𧂐 12123123411212511134
+𧂑 12124135221154444132
+𧂒 12124334324111214444
+𧂓 25113333332521212154
+𧂔 12121214535542343554
+𧂕 12124125145251121335
+𧂖 12121121112134112431
+𧂗 12123434511121251124
+𧂘 12122512515151213434
+𧂙 1212441321511354444
+𧂚 12123112522511125221
+𧂛 1212212125221451554
+𧂜 12124453525112512531
+𧂝 21212522145251111534
+𧂞 12121214311243344334
+𧂟 12123211511342511134
+𧂠 122251212511134454
+𧂡 12125112251135114544
+𧂢 12121251253111253511
+𧂣 1212121451312343554
+𧂤 121232411121121325114
+𧂥 5235233251125232511252
+𧂦 1221234132522132522
+𧂧 12124412511252214153
+𧂨 12124143452522512134
+𧂩 12125544444544251214
+𧂪 1221341112511134534
+𧂫 1223525121444435515
+𧂬 1221112342512511134
+𧂭 12123112341311534124
+𧂮 12121121251134435112
+𧂯 12121253511251125221
+𧂰 12125112144442511134
+𧂱 12121343152335341312
+𧂲 12121344311235431234
+𧂳 12251122512511121312
+𧂴 12122121324111211312
+𧂵 12123431234251211312
+𧂶 12124133232511154444
+𧂷 12124131235123511234
+𧂸 12125132514143112121
+𧂹 1212523412512513434
+𧂺 12121221113252214544
+𧂻 121231123425221413534
+𧂼 12121234313425125251
+𧂽 1225111212211212112
+𧂾 12121312351235431234
+𧂿 12123511454445444544
+𧃀 12122512143241112154
+𧃁 12125112251112513444
+𧃂 12121221125121343115
+𧃃 12123411243132511252
+𧃄 12123542513532411121
+𧃅 12123525121312344544
+𧃆 12123411243155124134
+𧃇 12123541431121431251
+𧃈 12124143113354111251
+𧃉 12124411344325114334
+𧃊 1222511134341511534
+𧃋 122344511543411234
+𧃌 122251212125342511
+𧃍 12232511121213534354
+𧃎 12125233251514143112
+𧃏 121225221352512143534
+𧃐 1212251212141432512251
+𧃑 12123411243151111254
+𧃒 121255444425112512531
+𧃓 121213443112354111251
+𧃔 121212154154132411121
+𧃕 121244511221342512134
+𧃖 121234341211121111534
+𧃗 121212535111225125221
+𧃘 1212311252215315251111
+𧃙 121212251112521251152
+𧃚 12123541131213541454
+𧃛 121225111341122125211
+𧃜 121235252212511134354
+𧃝 12121253511325113554
+𧃞 12122111525121122134
+𧃟 121254154125121122134
+𧃠 121212211135511213511
+𧃡 121244155532115111234
+𧃢 121221531525121122134
+𧃣 121225221244444351523
+𧃤 121251112144442511134
+𧃥 121241342535251413534
+𧃦 121213425125132411121
+𧃧 121241352211515554234
+𧃨 121252114524134132522
+𧃩 121235315311345452134
+𧃪 354354121251122511251
+𧃫 121241431123412212511
+𧃬 121212341344325114334
+𧃭 12251251254212512341
+𧃮 12124334431234354152
+𧃯 12125241431331121521
+𧃰 1212325111212151534354
+𧃱 12225125151211213434
+𧃲 12241312341234431234
+𧃳 12212134121354413534
+𧃴 12255423444532132511
+𧃵 12212251543341251431
+𧃶 1223531224511353334
+𧃷 12221531532411121115
+𧃸 121233225215542343134
+𧃹 121211212112122151234
+𧃺 121212345452312341312
+𧃻 121212343412525111312
+𧃼 212125125132411121251
+𧃽 121241332324111214544
+𧃾 121244125121252211234
+𧃿 121212211132533414544
+𧄀 121251325141431124312
+𧄁 121214524134512115154
+𧄂 121212111543412111534
+𧄃 121231123443113424134
+𧄄 121231234324111214544
+𧄅 121234435335115344544
+𧄆 121231234121221113134
+𧄇 121233235251214444112
+𧄈 12254251134432511234
+𧄉 12255444432535414544
+𧄊 12225111212212511134
+𧄋 121254251254212512341
+𧄌 121225112521444512134
+𧄍 1212121121121135541541
+𧄎 1212354141112513554234
+𧄏 1212125221332312511134
+𧄐 1212324111213241112154
+𧄑 1212554444251212511134
+𧄒 1212251112511132411121
+𧄓 1212514311212312511211
+𧄔 121232411125112132511
+𧄕 1212554444414312511534
+𧄖 1212321132534151114334
+𧄗 1212312342522112251111
+𧄘 1212414311213533343554
+𧄙 1212135333452131213541
+𧄚 1212112343134132511211
+𧄛 1212122125112354111251
+𧄜 1212454445444544554234
+𧄝 1212431234324111214444
+𧄞 1212251113432511154444
+𧄟 1212413522115151353334
+𧄠 1212122151234122151234
+𧄡 1212311252324111211234
+𧄢 1212441511451221115434
+𧄣 4334433443341212251112
+𧄤 122251251125125251251
+𧄥 122111234412512341354
+𧄦 1212312342511312511354
+𧄧 1212521251152251125221
+𧄨 1212123414524134132522
+𧄩 1212441555251112341312
+𧄪 121225125125122152511
+𧄫 1212315541435542341312
+𧄬 1212134252343434341354
+𧄭 1212341124315413425221
+𧄮 1212341251341251341251
+𧄯 122252214552131251251
+𧄰 122344355413432411121
+𧄱 1212511225112511533533
+𧄲 12241112511222511134
+𧄳 122251112313425125251
+𧄴 122251125214132511134
+𧄵 122353555253415445445
+𧄶 12124111251554444554444
+𧄷 12123215113532511154444
+𧄸 121232112512515114525111
+𧄹 12124111251414312511534
+𧄺 12121225111134132511134
+𧄻 12124411331234312342121
+𧄼 21212522145543341251431
+𧄽 12123121353121352511134
+𧄾 12122522154354115154444
+𧄿 12124152513541431112354
+𧅀 12121251112331234112431
+𧅁 12125151211251211251211
+𧅂 12125544442512512511234
+𧅃 12124334413522115154444
+𧅄 1212431325111212151534354
+𧅅 1212251113434433555444
+𧅆 12122121252554234251214
+𧅇 12123434252554234251214
+𧅈 12123123454154132411121
+𧅉 12124453532511132515215
+𧅊 121243344334354152454
+𧅋 12124152513541511534354
+𧅌 12122511134254312114444
+𧅍 12122512515151211213434
+𧅎 12121212522125111341312
+𧅏 12123123435334241341312
+𧅐 12124414125152131344444
+𧅑 12121452413454523313453
+𧅒 12122512534253434112431
+𧅓 12124453532511132513251
+𧅔 1212341511541215425221
+𧅕 1223511555253415445445
+𧅖 121225111134432511154444
+𧅗 121224345251254312114444
+𧅘 121243111314524134132522
+𧅙 121241431353334132511134
+𧅚 121225111251113241112154
+𧅛 121243123454154132411121
+𧅜 121212344143112342511135
+𧅝 121212511234125112342511
+𧅞 121212211154121212211154
+𧅟 121211541234121211541234
+𧅠 121241432533542511125111
+𧅡 121225243143344334121251
+𧅢 1212251245354113121253434
+𧅣 1225112321155212454
+𧅤 121244511213112522511134
+𧅥 121212152133554312342511
+𧅦 123412123211251251511134
+𧅧 121225125125132511154444
+𧅨 121234312343253431234134
+𧅩 121212135121433443343112
+𧅪 121215252511251214251214
+𧅫 12232113434511452511135
+𧅬 12225111234412234251214
+𧅭 1222511121224511353334
+𧅮 1212551353334251214251214
+𧅯 1212413452255432511154444
+𧅰 1212411125121213241112154
+𧅱 12124143253354321211121111
+𧅲 1212251234123412123412341
+𧅳 1212125341253441352211535
+𧅴 1212414325335411211121111
+𧅵 122212123313251113432511312
+𧅶 1212511225112554444251214
+𧅷 1212325113211343451145521
+𧅸 1212212534444412511251522
+𧅹 122121431123535251214444
+𧅺 1221251245251251112213534
+𧅻 12121221251112132511154444
+𧅼 12123123441251251112213534
+𧅽 12122125344444113351125221
+𧅾 1223211251125114525111234
+𧅿 1222511453425232511154444
+𧆀 1223443123454154132411121
+𧆁 12122243143112122111541312
+𧆂 1224111251121211121111534
+𧆃 12124152514512511123541354
+𧆄 1251234122325115545541234
+𧆅 12124111251554444554444515
+𧆆 12121123434125125125125122
+𧆇 121243134252212522135251214
+𧆈 121241431121353334132511134
+𧆉 212125125132411121354554234
+𧆊 12124325234313435251214444
+𧆋 121212212511134324111214334
+𧆌 12241432533543211211121111
+𧆍 121241525135412512511134354
+𧆎 121241112515544445544444544
+𧆏 1212411125155444455444425111
+𧆐 1212414312511123541212511134
+𧆑 1212145244443241112132411121
+𧆒 1212113211322511324111214544
+𧆓 1212413522115154135221151541352211515
+𧆔 12121225125145251251112213534
+𧆕 1222531234312341231234312341
+𧆖 12212212512113412132511154444
+𧆗 122212543123412125344444125221
+𧆘 1212251234123412341234123412341234123412341
+𧆙 12121222511134211121111251554234
+𧆚 121212212511134325111544441312
+𧆛 21531554
+𧆜 215315115
+𧆝 215315534
+𧆞 215315252
+𧆟 2153153535
+𧆠 2153153112
+𧆡 3521531535
+𧆢 2153153552
+𧆣 21531512152
+𧆤 21531525254
+𧆥 21531525112
+𧆦 31521531535
+𧆧 21531535135
+𧆨 21531525121
+𧆩 21531535134
+𧆪 21531513515
+𧆫 21531535315
+𧆬 2153153535
+𧆭 21531525121
+𧆮 21531525252
+𧆯 21531535123
+𧆰 21531535521
+𧆱 215315134251
+𧆲 215315251431
+𧆳 215315211351
+𧆴 215315133511
+𧆵 215315354333
+𧆶 215315354115
+𧆷 215315353454
+𧆸 215315354444
+𧆹 215315354544
+𧆺 3415421531535
+𧆻 2153153512251
+𧆼 2153153535444
+𧆽 2153153532511
+𧆾 2153151212134
+𧆿 2153155425112
+𧇀 2153153212134
+𧇁 21531531112111
+𧇂 21531515153533
+𧇃 21531512341234
+𧇄 21531555525121
+𧇅 21531535452511
+𧇆 21531512342154
+𧇇 21531525225111
+𧇈 21531535425111
+𧇉 21531535412251
+𧇊 21531522431115
+𧇋 21531534342511
+𧇌 21531535251251
+𧇍 31125221531535
+𧇎 21531535341251
+𧇏 215315555112152
+𧇐 322313421531535
+𧇑 113253421531535
+𧇒 2153153515342121
+𧇓 215315353425135
+𧇔 215315125143135
+𧇕 215315555125121
+𧇖 215315343425111
+𧇗 215315343425111
+𧇘 123421531525111
+𧇙 215315352512153
+𧇚 215315353232511
+𧇛 215315353443124
+𧇜 1251255421531535
+𧇝 2112345421531535
+𧇞 2153153543112135
+𧇟 2153153535121251
+𧇠 2153152521214135
+𧇡 2153153543512251
+𧇢 3525135421531535
+𧇣 2153152511125111
+𧇤 2153153543532511
+𧇥 215315351234124
+𧇦 4411215421531535
+𧇧 3443521215315252
+𧇨 2153153512341234
+𧇩 2153151343425111
+𧇪 2153154134342511
+𧇫 2153153512211134
+𧇬 1251253421531535
+𧇭 2153153511212154
+𧇮 2153153531234251
+𧇯 2153153531234521
+𧇰 2153153535334544
+𧇱 21531535131251534
+𧇲 24313521531532121
+𧇳 44345113521531535
+𧇴 21531525251111234
+𧇵 34112512153153112
+𧇶 21531535111342511
+𧇷 25113534521531535
+𧇸 21531535312344334
+𧇹 21531535325131134
+𧇺 24313521531522431
+𧇻 215315354525114134
+𧇼 251152153151251431
+𧇽 215315251211212134
+𧇾 215315324111213515
+𧇿 215315135333425111
+𧈀 215315252211234341
+𧈁 431511223421531534
+𧈂 215315251115132125
+𧈃 215315343425111115
+𧈄 215315351325111354
+𧈅 2343251123421531535
+𧈆 2153153555444435444
+𧈇 2153153512341234333
+𧈈 2153153555525111234
+𧈉 2153151221251123511
+𧈊 5552511123421531535
+𧈋 2153153512235251354
+𧈌 12512154355421531535
+𧈍 25125125111221531535
+𧈎 21531534122125112333
+𧈏 13443251123421531535
+𧈐 2513445115421531535
+𧈑 215315351251112523554
+𧈒 21531525223435251354
+𧈓 215315241221251123134
+𧈔 215315352512144442511
+𧈕 251212153152512125221
+𧈖 125111252355421531535
+𧈗 125111252355421531535
+𧈘 2153153525243144442511
+𧈙 2153153512151211251124
+𧈚 21531512514314451225221
+𧈛 3441345225543321531535
+𧈜 2153153535114311341211254444
+𧈝 2512145
+𧈞 2512145
+𧈟 12512145
+𧈠 13251214
+𧈡 54251214
+𧈢 25121434
+𧈣 25121453
+𧈤 35251214
+𧈥 25121454
+𧈦 53251214
+𧈧 54251214
+𧈨 234251214
+𧈩 154251214
+𧈪 523251214
+𧈫 121251214
+𧈬 121251214
+𧈭 251214135
+𧈮 251214354
+𧈯 251214115
+𧈰 25121454
+𧈱 125121454
+𧈲 512251214
+𧈳 251214534
+𧈴 251214413
+𧈵 251214111
+𧈶 251214322
+𧈷 251214354
+𧈸 354251214
+𧈹 134251214
+𧈺 251214154
+𧈻 2512143554
+𧈼 2512143215
+𧈽 2512141354
+𧈾 2512144334
+𧈿 2512142534
+𧉀 2512142121
+𧉁 3115251214
+𧉂 2512141134
+𧉃 2512145435
+𧉄 2512141255
+𧉅 2512145113
+𧉆 2512142134
+𧉇 3435251214
+𧉈 2512141324
+𧉉 1121251214
+𧉊 3434251214
+𧉋 2512141252
+𧉌 454251214
+𧉍 2512142344
+𧉎 2512143541
+𧉏 3541251214
+𧉐 2512145454
+𧉑 2512141344
+𧉒 1215251214
+𧉓 1234251214
+𧉔 2512145215
+𧉕 3134251214
+𧉖 2512143112
+𧉗 1135251214
+𧉘 2121251214
+𧉙 2512141525
+𧉚 2512143533
+𧉛 2512141554
+𧉜 3515251214
+𧉝 2512141255
+𧉞 25121444512
+𧉟 25121454251
+𧉠 25121451251
+𧉡 25121444535
+𧉢 25121444535
+𧉣 25121411214
+𧉤 25121454132
+𧉥 21135251214
+𧉦 25121413534
+𧉧 25121412154
+𧉨 12135251214
+𧉩 25121413252
+𧉪 53251251214
+𧉫 25121425541
+𧉬 25121451515
+𧉭 53154251214
+𧉮 25121431525
+𧉯 25121455414
+𧉰 25121435234
+𧉱 25121412344
+𧉲 25121433112
+𧉳 25121452112
+𧉴 44535251214
+𧉵 25121435135
+𧉶 41121251214
+𧉷 31234251214
+𧉸 25121451532
+𧉹 25121412345
+𧉺 12215251214
+𧉻 25121443112
+𧉼 25121441431
+𧉽 25121441252
+𧉾 11134251214
+𧉿 25121411234
+𧊀 25121453251
+𧊁 25121425111
+𧊂 25121435444
+𧊃 35435251214
+𧊄 25121425134
+𧊅 25121425153
+𧊆 32124251214
+𧊇 32154251214
+𧊈 51515251214
+𧊉 2512143454
+𧊊 25121435112
+𧊋 25121425112
+𧊌 25121412115
+𧊍 25121425134
+𧊎 25121415534
+𧊏 251214415334
+𧊐 251214511112
+𧊑 251214135333
+𧊒 113534251214
+𧊓 251214335414
+𧊔 332251214112
+𧊕 251214113534
+𧊖 251214112154
+𧊗 251214122111
+𧊘 251214134115
+𧊙 251214352511
+𧊚 251214251251
+𧊛 251214331251
+𧊜 251214431522
+𧊝 121213251214
+𧊞 251214113222
+𧊟 531251251214
+𧊠 251214251134
+𧊡 12152251214
+𧊢 112345251214
+𧊣 251214251153
+𧊤 251214413234
+𧊥 251214131534
+𧊦 251214311252
+𧊧 341251251214
+𧊨 251214251111
+𧊩 251214252112
+𧊪 153153251214
+𧊫 2512142534135
+𧊬 121254251214
+𧊭 251214251341
+𧊮 1212354251214
+𧊯 412534251214
+𧊰 325113251214
+𧊱 251214531234
+𧊲 251214341121
+𧊳 251214125111
+𧊴 251214525341
+𧊵 251214354152
+𧊶 251214351234
+𧊷 251214415531
+𧊸 251214125234
+𧊹 445531251214
+𧊺 251214125125
+𧊻 251214134121
+𧊼 251214453544
+𧊽 251214332112
+𧊾 431234251214
+𧊿 135422251214
+𧋀 251214434242
+𧋁 251214125211
+𧋂 251214441112
+𧋃 251214132521
+𧋄 251214122134
+𧋅 251214513444
+𧋆 251214111234
+𧋇 251214132121
+𧋈 2512143443533
+𧋉 2512143434251
+𧋊 4412343251214
+𧋋 2512141251251
+𧋌 1251245251214
+𧋍 2512141213312
+𧋎 2512142511211
+𧋏 251214252354
+𧋐 2512141251234
+𧋑 2512141251134
+𧋒 2512141213234
+𧋓 2512143121251
+𧋔 1212534251214
+𧋕 2512142512341
+𧋖 2512141221115
+𧋗 3515251214121
+𧋘 2512144351523
+𧋙 2512143253541
+𧋚 3434133251214
+𧋛 1241344251214
+𧋜 2512145251214
+𧋝 2512141541234
+𧋞 25121412121134
+𧋟 2512143155414
+𧋠 1353334251214
+𧋡 2512142552111
+𧋢 2512141245521
+𧋣 2512143515251
+𧋤 2512141215453
+𧋥 2512142512134
+𧋦 2512145133115
+𧋧 2512144134121
+𧋨 2512141212134
+𧋩 2512134251214
+𧋪 2512141212112
+𧋫 2512141212521
+𧋬 2512143554234
+𧋭 2512143443121
+𧋮 2512143134121
+𧋯 2511134251214
+𧋰 3251511251214
+𧋱 2512142512153
+𧋲 4121135251214
+𧋳 1213544251214
+𧋴 3541112251214
+𧋵 2512143531121
+𧋶 2512144413554
+𧋷 2512145154544
+𧋸 2512142511121
+𧋹 2512141134211
+𧋺 2512141214544
+𧋻 2512144134251
+𧋼 2512141121132
+𧋽 251214122415
+𧋾 2512142515215
+𧋿 2512144425134
+𧌀 2512141134251
+𧌁 3223134251214
+𧌂 2512142121233
+𧌃 25121441431531
+𧌄 25121413425115
+𧌅 25121434434554
+𧌆 25121444535121
+𧌇 25121435113511
+𧌈 25121451145252
+𧌉 25121412135121
+𧌊 25121441323544
+𧌋 251214311212152
+𧌌 35411354251214
+𧌍 25121455124134
+𧌎 25121425122134
+𧌏 25121425342511
+𧌐 12523422251214
+𧌑 25121451352252
+𧌒 12511534251214
+𧌓 25121432515112
+𧌔 12341254251214
+𧌕 25121412131521
+𧌖 25121434112251
+𧌗 25121412211154
+𧌘 35115254251214
+𧌙 14524134251214
+𧌚 25121425114334
+𧌛 32515112251214
+𧌜 52133541251214
+𧌝 13443343251214
+𧌞 251214452452
+𧌟 12512552251214
+𧌠 32511312251214
+𧌡 25121453251214
+𧌢 55444434251214
+𧌣 53251214251214
+𧌤 25121435321511
+𧌥 25121414313422
+𧌦 54251214251214
+𧌧 25121421531512
+𧌨 25121412343215
+𧌩 15351535251214
+𧌪 25111134251214
+𧌫 25121432115112
+𧌬 25121441251234
+𧌭 25121421531534
+𧌮 25121413533434
+𧌯 25121431212211
+𧌰 25121452354152
+𧌱 41533134251214
+𧌲 31134251251214
+𧌳 25121435115215
+𧌴 251214452452
+𧌵 25121455535122
+𧌶 43112134251214
+𧌷 25121443155424
+𧌸 25121421251112
+𧌹 25121425213251
+𧌺 25121412123435
+𧌻 12343554251214
+𧌼 25121415412122
+𧌽 2512144325234
+𧌾 25121425121412
+𧌿 32153354251214
+𧍀 35251214251214
+𧍁 25121441351134
+𧍂 25121454132511
+𧍃 25121421112111
+𧍄 25121441345435
+𧍅 32125134251214
+𧍆 25121452133544
+𧍇 25121432125134
+𧍈 25121441321251
+𧍉 25121441335154
+𧍊 25121413121121
+𧍋 25121425111124
+𧍌 25121444153251
+𧍍 25121413434234
+𧍎 25121435152511
+𧍏 25121453112251
+𧍐 25121441135422
+𧍑 25121425431345
+𧍒 251214252132522
+𧍓 325151252251214
+𧍔 251214125221531
+𧍕 251214343425152
+𧍖 251214234325111
+𧍗 251214121213251
+𧍘 251214554255452
+𧍙 121244155251214
+𧍚 25121425251154
+𧍛 251214542511253
+𧍜 251214543341134
+𧍝 251214414345252
+𧍞 251214251251115
+𧍟 121254523251214
+𧍠 251214121234234
+𧍡 251214251113422
+𧍢 332441112251214
+𧍣 121225121251214
+𧍤 251214251214544
+𧍥 251214251211534
+𧍦 454343134251214
+𧍧 251214131251534
+𧍨 251251134251214
+𧍩 2512141212515134
+𧍪 251214251125214
+𧍫 251214521251152
+𧍬 251214341251132
+𧍭 251214325112534
+𧍮 251214451325251
+𧍯 251214353251214
+𧍰 251214354131121
+𧍱 251214445154121
+𧍲 251214321251134
+𧍳 25121432151134
+𧍴 251214125431234
+𧍵 122513541251214
+𧍶 251214332511112
+𧍷 121213251251214
+𧍸 354251214251214
+𧍹 251214132511152
+𧍺 251214151213511
+𧍻 321251134251214
+𧍼 251214555135422
+𧍽 413354251214121
+𧍾 122514535251214
+𧍿 251214135434333
+𧎀 12343215251214
+𧎁 251214251213432
+𧎂 512115154251214
+𧎃 353113434251214
+𧎄 251214545233134
+𧎅 121452512143554
+𧎆 123251214251214
+𧎇 251214544251214
+𧎈 251214134343422
+𧎉 251214431121354
+𧎊 251214451251112
+𧎋 251214121121124
+𧎌 111342511251214
+𧎍 251214215315521
+𧎎 251214251122111
+𧎏 151225251251214
+𧎐 251214312344334
+𧎑 251214352534134
+𧎒 251214554444354
+𧎓 251214354251214
+𧎔 251214134121312
+𧎕 211351134251214
+𧎖 251214252212534
+𧎗 312344412251214
+𧎘 251214332441112
+𧎙 251214341325252
+𧎚 251214321113554
+𧎛 251214445341344
+𧎜 251214513154121
+𧎝 251214111341134
+𧎞 251214131353334
+𧎟 2512145115452
+𧎠 251214355425115
+𧎡 2512144452513251
+𧎢 2512141542511134
+𧎣 2512141212122111
+𧎤 2512145213554234
+𧎥 2512143513541541
+𧎦 2512141221342444
+𧎧 2512144453232511
+𧎨 2512145134143112
+𧎩 2512143541521234
+𧎪 3515251214251214
+𧎫 2512142432511134
+𧎬 3121121124251214
+𧎭 3251113124251214
+𧎮 544251214251214
+𧎯 2512143112525134
+𧎰 5131221534251214
+𧎱 5215251214251214
+𧎲 2512142243143112
+𧎳 2512141245554234
+𧎴 2512141213312251
+𧎵 2512143115431234
+𧎶 5545541251214534
+𧎷 2512143552335523
+𧎸 2512144125125251
+𧎹 1211123454251214
+𧎺 2512141251212512
+𧎻 5452335453251214
+𧎼 2512143541311252
+𧎽 2512141224312511
+𧎾 2512142342511234
+𧎿 4134131134251214
+𧏀 2512143253414544
+𧏁 33122134251214121
+𧏂 2512141211215134
+𧏃 2512144111215134
+𧏄 5211213312251214
+𧏅 4132343134251214
+𧏆 1251254412251214
+𧏇 344353322251214
+𧏈 2512142513251111
+𧏉 2512144311341134
+𧏊 1212251214251214
+𧏋 1251245251251214
+𧏌 1215133554251214
+𧏍 3251511252251214
+𧏎 2512144134251214
+𧏏 2512144453525111
+𧏐 1332511234251214
+𧏑 2512144143141431
+𧏒 2511122134251214
+𧏓 2512143543425121
+𧏔 1455345251214121
+𧏕 2512143321531534
+𧏖 2512144453212134
+𧏗 2512144135342534
+𧏘 2512143354143554
+𧏙 251214431113554
+𧏚 1214512512143554
+𧏛 4111251124251214
+𧏜 2512141212515134
+𧏝 5454543233251214
+𧏞 2512144311213121
+𧏟 4312343553251214
+𧏠 2512145454541234
+𧏡 2512141325111354
+𧏢 2512142523541112
+𧏣 2512143143143134
+𧏤 1212121354251214
+𧏥 251214122342444
+𧏦 2512141325224334
+𧏧 2512142512134354
+𧏨 3115431234251214
+𧏩 2512143253413554
+𧏪 2512144311341234
+𧏫 2512143412343554
+𧏬 2512145221251214
+𧏭 2512143344511252
+𧏮 2512144311214544
+𧏯 2512141311534124
+𧏰 2512141221114535
+𧏱 2512142513425221
+𧏲 2512141354224444
+𧏳 2512141211251124
+𧏴 251214325151454
+𧏵 2512144143125115
+𧏶 251214521251112
+𧏷 2512144155425121
+𧏸 25121441432512251
+𧏹 25121441431353334
+𧏺 25121412512512515
+𧏻 25121425111212112
+𧏼 41121251214251214
+𧏽 25121413113454544
+𧏾 11212132515251214
+𧏿 2512141353334454
+𧐀 25121431251113533
+𧐁 25121412512343534
+𧐂 34151121134251214
+𧐃 25121432411121134
+𧐄 25121434342513534
+𧐅 25121421531525111
+𧐆 511541535251214
+𧐇 25121451311234124
+𧐈 41533131134251214
+𧐉 31134251112251214
+𧐊 25121451512111534
+𧐋 25121425121354251
+𧐌 25132411121251214
+𧐍 25121411134321511
+𧐎 25121434432511135
+𧐏 35151251214251214
+𧐐 25121411212511134
+𧐑 25121423432511234
+𧐒 2512141251234454
+𧐓 25112115452251214
+𧐔 25121454154132511
+𧐕 25121412511214124
+𧐖 2512141251112454
+𧐗 25121441533152134
+𧐘 54252251214251214
+𧐙 25121454523313453
+𧐚 25121441312214334
+𧐛 25121441251251354
+𧐜 12145353554251214
+𧐝 25121412514314412
+𧐞 25121412124143112
+𧐟 25121431554144544
+𧐠 41352211535251214
+𧐡 12152153554251214
+𧐢 25121441251453115
+𧐣 25121425121354251
+𧐤 25121441554453112
+𧐥 25121412115112134
+𧐦 25121412122431534
+𧐧 11134251214251214
+𧐨 12135121354251214
+𧐩 25121425234125122
+𧐪 25121421531512134
+𧐫 25121435455251214
+𧐬 25121423425341154
+𧐭 25121412132343134
+𧐮 12511123312251214
+𧐯 25121354251251214
+𧐰 25542522135251214
+𧐱 33234342134251214
+𧐲 25121435425221252
+𧐳 25121441352215454
+𧐴 25121444532132511
+𧐵 12514314412251214
+𧐶 13211234534251214
+𧐷 25121441313443121
+𧐸 25121435121251333
+𧐹 25121431234354354
+𧐺 2512145425112454
+𧐻 25121412132411121
+𧐼 25121412121251112
+𧐽 25121444143344334
+𧐾 2512144143125152
+𧐿 25121425244511234
+𧑀 25121455525111234
+𧑁 25121454545434333
+𧑂 251214511541535
+𧑃 2512141121533134
+𧑄 251214325221323334
+𧑅 251214121213415534
+𧑆 251214414312511211
+𧑇 251214312343531234
+𧑈 251214515322511134
+𧑉 325111251214251214
+𧑊 251214251141251234
+𧑋 251214251212511134
+𧑌 25121425121122134
+𧑍 251214121211212112
+𧑎 522521123454251214
+𧑏 251214513325125214
+𧑐 251214545232535251
+𧑑 251214121211134112
+𧑒 251214412515213134
+𧑓 251214312343424134
+𧑔 25121451124134454
+𧑕 251214121551214544
+𧑖 125234251214251214
+𧑗 251214445454425112
+𧑘 441251113533251214
+𧑙 251214412512341354
+𧑚 251214445112213444
+𧑛 2512145112321155212
+𧑜 251214112111211515
+𧑝 121551353334251214
+𧑞 251214431134251214
+𧑟 25121452354131121
+𧑠 251214125124513251
+𧑡 251214112111215215
+𧑢 413251214251214121
+𧑣 121121121135251214
+𧑤 311234251214251214
+𧑥 335414431134251214
+𧑦 251214324111215134
+𧑧 132511213312251214
+𧑨 111253251214251214
+𧑩 251214252211351534
+𧑪 343123425121251214
+𧑫 251214545454342444
+𧑬 325221321534251214
+𧑭 121251121251251214
+𧑮 251214132522132522
+𧑯 312135312135251214
+𧑰 251214111251113454
+𧑱 251214121251121251
+𧑲 251214445353232511
+𧑳 251214555251214444
+𧑴 352515251214251214
+𧑵 25121425225113554
+𧑶 251214445454425211
+𧑷 251214513241343112
+𧑸 325221323334251214
+𧑹 251214431224312511
+𧑺 251214121215312134
+𧑻 251214121215112134
+𧑼 243252511534251214
+𧑽 251214243452512134
+𧑾 251214554444535215
+𧑿 554444554444251214
+𧒀 25121443252343134
+𧒁 312343424134251214
+𧒂 325151251214251214
+𧒃 431112251214251214
+𧒄 251214511225112511
+𧒅 25121425111343454
+𧒆 251214431253511124
+𧒇 25121435312132511
+𧒈 135422251214251214
+𧒉 131251431124251214
+𧒊 251214311342512511
+𧒋 251214223142511135
+𧒌 2512142512121354251
+𧒍 2512121354251251214
+𧒎 3121534251214251214
+𧒏 1311534251214251214
+𧒐 2512144131343434121
+𧒑 2512143215115445445
+𧒒 3541112251214251214
+𧒓 2512141121112145434
+𧒔 1241344251214251214
+𧒕 121251431544251214
+𧒖 251214251225251454
+𧒗 2512141234341252511
+𧒘 2512141251152253412
+𧒙 3251511251214251214
+𧒚 1212545233134251214
+𧒛 2511531251214251214
+𧒜 1452413425121251214
+𧒝 5131221251214251214
+𧒞 2512142543123413511
+𧒟 42511134251214251214
+𧒠 251214445544325112
+𧒡 4453112251214251214
+𧒢 5251214251214251214
+𧒣 1212524143112251214
+𧒤 1221145251214251214
+𧒥 5225241533134251214
+𧒦 3434431112354251214
+𧒧 4454544251214251214
+𧒨 1212251214251214121
+𧒩 2512142434525112211
+𧒪 2512142525125111341
+𧒫 2512144453444435112
+𧒬 2512143251115413534
+𧒭 251214251212534454
+𧒮 2512142512512511234
+𧒯 2512143412524312511
+𧒰 2512143322521353134
+𧒱 2512144155332411121
+𧒲 2512144143135112234
+𧒳 2512144512122511134
+𧒴 251214431325111454
+𧒵 2512141212513121534
+𧒶 2512141212513534534
+𧒷 2512142135454431234
+𧒸 2512143123443344544
+𧒹 2512143253431234115
+𧒺 2512143215112512153
+𧒻 2512143535112431112
+𧒼 2512141251112523554
+𧒽 2512141452413425121
+𧒾 2434525125121251214
+𧒿 2512142511134113534
+𧓀 3435251214444251214
+𧓁 2512143443454544354
+𧓂 4125145251214251214
+𧓃 2511353453534251214
+𧓄 2512145132514143112
+𧓅 2512142512211311534
+𧓆 2512143212511214124
+𧓇 2512145131221343554
+𧓈 251214324111212525
+𧓉 41432533543211251214
+𧓊 31112111251214251214
+𧓋 25121413251121135121
+𧓌 25121443344334454334
+𧓍 25121444552132511134
+𧓎 32511312251214251214
+𧓏 25121412211154323434
+𧓐 1325221341554251214
+𧓑 14524134251214251214
+𧓒 25121435444512512134
+𧓓 25121455455415545545
+𧓔 43123411213511251214
+𧓕 12511234251214251214
+𧓖 35415215251214251214
+𧓗 25121433215315353534
+𧓘 25121425125112141241
+𧓙 25121433541435541234
+𧓚 41221145251214251214
+𧓛 25121435122112512134
+𧓜 25121412145132511234
+𧓝 25121432511125121134
+𧓞 25121412512543123112
+𧓟 321151125251214251214
+𧓠 25121413541522534251
+𧓡 25121412122534131534
+𧓢 35152511251214251214
+𧓣 41352211325221251214
+𧓤 12134251214534251214
+𧓥 25121412112155121534
+𧓦 25121412512531125221
+𧓧 25121432511125121132
+𧓨 12512145251214251214
+𧓩 25121421354542511134
+𧓪 25121434112431511534
+𧓫 44545434251214251214
+𧓬 25121435253425111354
+𧓭 25121455444432511252
+𧓮 11213251113251251214
+𧓯 25121432344335554444
+𧓰 25121435251353525135
+𧓱 125115315251214251214
+𧓲 251214431121341511534
+𧓳 251214331233122511134
+𧓴 25121414524134312154
+𧓵 121225121251214251214
+𧓶 25121412123541112454
+𧓷 234324111211534251214
+𧓸 25121443125351113452
+𧓹 515152511251214251214
+𧓺 251214445321511354444
+𧓻 251214215315251214544
+𧓼 251214413311222214444
+𧓽 131212251125214251214
+𧓾 251214352534252212154
+𧓿 121254523251214251214
+𧔀 25121421115445351554
+𧔁 312512251251214251214
+𧔂 445543112251214251214
+𧔃 445251214251214251214
+𧔄 112155414251214251214
+𧔅 251214251125125312154
+𧔆 251211515251214251214
+𧔇 251214252132522132522
+𧔈 431342522125221251214
+𧔉 251214325115545541234
+𧔊 251214413251121134121
+𧔋 251214413121251431124
+𧔌 251214312343533424134
+𧔍 251214252324111212525
+𧔎 251214352512144442511
+𧔏 121251523251214251214
+𧔐 121225341251214251214
+𧔑 431353334251214251214
+𧔒 251214121211121115534
+𧔓 112155423445443251214
+𧔔 354251214251214251214
+𧔕 251214121241312341234
+𧔖 251214121252212511134
+𧔗 325121432512143251214
+𧔘 251214252211212513534
+𧔙 251214251112213424134
+𧔚 251214445343251113515
+𧔛 25121454334125143152
+𧔜 251214125111233122511
+𧔝 2512141331234312342121
+𧔞 1332511234251214251214
+𧔟 2512144311341211254444
+𧔠 2512144311213123415534
+𧔡 5131221534251214251214
+𧔢 3411243115341534251214
+𧔣 2512141251234532511134
+𧔤 25111112343554234251214
+𧔥 251214251212511134454
+𧔦 2512141221251211354444
+𧔧 354152454251214251214
+𧔨 5152251214251214251214
+𧔩 1225152251214251214
+𧔪 2121233132511134251214
+𧔫 2512144125125112121112
+𧔬 2512141251245132511234
+𧔭 4312535341251214251214
+𧔮 2521251431251214251214
+𧔯 1515251214251214251214
+𧔰 3241112125251214251214
+𧔱 3215112534125214251214
+𧔲 4525114134251214251214
+𧔳 3545325121251214251214
+𧔴 1212251214251214251214
+𧔵 1123425221251214251214
+𧔶 3354144334413434251214
+𧔷 251214251132411121454
+𧔸 2512143515112522534251
+𧔹 2512141325112114444121
+𧔺 2511212251125214251214
+𧔻 1535251214251214251214
+𧔼 2512142512142512141534
+𧔽 25121432515112522535251
+𧔾 2512143123435132511134
+𧔿 2512143512125132411121
+𧕀 2512145132514143112121
+𧕁 2512141251251251111221
+𧕂 2512145551211121111534
+𧕃 25121435251153535251354
+𧕄 25121441332324111214544
+𧕅 25121414524134251251251
+𧕆 25121421531512514311534
+𧕇 25121435251214444431112
+𧕈 51311234124251214251214
+𧕉 25121434435541343434251
+𧕊 25121441112514334433454
+𧕋 25121434125125125125122
+𧕌 25121354251251214251214
+𧕍 25121443344334452513251
+𧕎 44115151234251214251214
+𧕏 12123251514143112251214
+𧕐 12512212511251214251214
+𧕑 54523251214251214251214
+𧕒 51532251214251214251214
+𧕓 251214212135251251115151
+𧕔 4125125251251214251214
+𧕕 415251214415251214251214
+𧕖 25121414524134512115154
+𧕗 25121451122511125431234
+𧕘 25121425125121432411121
+𧕙 34125125121251214251214
+𧕚 25121441432533543211234
+𧕛 251251251211251214251214
+𧕜 113511352511251214251214
+𧕝 445454425221251214251214
+𧕞 31234531325113554251214
+𧕟 251214324111213241112154
+𧕠 325221323334251214251214
+𧕡 251214125221332312511354
+𧕢 414312512251251214251214
+𧕣 324111212525251214251214
+𧕤 344353312122511134251214
+𧕥 25121434435331222511134
+𧕦 251251251112251214251214
+𧕧 32151125341251214251214
+𧕨 251214121213513125125534
+𧕩 251214122111122111122111
+𧕪 251214131134535541253511
+𧕫 251214251212512125121121
+𧕬 25121445242512211251431
+𧕭 25121412212512531425221
+𧕮 251214413452255432411121
+𧕯 2512141254125441352211535
+𧕰 1251245311252251214251214
+𧕱 52155545543112251214251214
+𧕲 324111212525251214251214
+𧕳 2512144152513541431112354
+𧕴 1221251113432411121251214
+𧕵 251251115151251214251214
+𧕶 4311213121534251214251214
+𧕷 1212111342511251214251214
+𧕸 1211254444325111121251214
+𧕹 1534111342511251214251214
+𧕺 2512143241112132411121354
+𧕻 2512144134143125111515111
+𧕼 2121131233534541541251214
+𧕽 15351535251214251214251214
+𧕾 12132411121534251214251214
+𧕿 31112111251214251214251214
+𧖀 55455415545545251214251214
+𧖁 41221145251214251214251214
+𧖂 25225121425121425121425221
+𧖃 25121421531512512543121344
+𧖄 131212251125214251214251214
+𧖅 45251115132125251214251214
+𧖆 25121451122511121431112454
+𧖇 413555251521532411121251214
+𧖈 251211535251214251214251214
+𧖉 513121121121121251214251214
+𧖊 41432533543211251214251214
+𧖋 251214212534444412511251522
+𧖌 251214251214132511325113251
+𧖍 325121435114311341211254444
+𧖎 251211535251214251214251214
+𧖏 513121121312312251214251214
+𧖐 251214125125314252212511135
+𧖑 5151251211251211251214251214
+𧖒 2512141251245251251112213534
+𧖓 1251254312251214251214251214
+𧖔 1151122511251214251214251214
+𧖕 3253411535251214251214251214
+𧖖 2512144111251554444554444252
+𧖗 2512144125125151512134343534
+𧖘 25121441112515544445544443112
+𧖙 25115545544444132511134251214
+𧖚 12512453112521234251214251214
+𧖛 15351535251125121425121451315
+𧖜 251214145241342512512511234341
+𧖝 324111214444324111214444251214
+𧖞 352512144444125251125111251214
+𧖟 312135312135251214251214251214
+𧖠 212113123353432511154444251214
+𧖡 12212132411121534251214251214
+𧖢 2121131233534541541251214251214
+𧖣 2512144111251554444554444251214
+𧖤 12511234125112342511251214251214
+𧖥 32112512515114512341234134251214
+𧖦 31554144111251554444554444251214
+𧖧 32522112
+𧖨 32522115
+𧖩 32522153
+𧖪 325221354
+𧖫 3252215134
+𧖬 1211325221
+𧖭 2121325221
+𧖮 3252212511
+𧖯 1324325221
+𧖰 32522135352
+𧖱 32522135352
+𧖲 32522131234
+𧖳 251251325221
+𧖴 333534325221
+𧖵 3252213525135
+𧖶 4414535325221
+𧖷 3252215344544
+𧖸 2535251325221
+𧖹 3252211353334
+𧖺 35414535325221
+𧖻 32522112511534
+𧖼 32522135434251
+𧖽 25113511325221
+𧖾 32522152413452
+𧖿 32522125113132
+𧗀 325221122111355
+𧗁 511112333325221
+𧗂 325221251214544
+𧗃 333511112325221
+𧗄 12512534325221
+𧗅 325221122111234
+𧗆 1212525341325221
+𧗇 5545541325221534
+𧗈 3252211311534124
+𧗉 4411251124325221
+𧗊 5111214444325221
+𧗋 32522154545434333
+𧗌 32522121531534312
+𧗍 43112125221325221
+𧗎 121244125111325221
+𧗏 325221251212511134
+𧗐 32522112122111354
+𧗑 134431122154325221
+𧗒 554554134325221534
+𧗓 554554134534325221
+𧗔 325221324111212525
+𧗕 3211325341511325221
+𧗖 13251135411344325221
+𧗗 32522132511125121132
+𧗘 121231125225111325221
+𧗙 5111122511125111325221
+𧗚 5111121253412534325221
+𧗛 41431251112354152325221
+𧗜 414312511123541212511134325221
+𧗝 33235112
+𧗞 33232112
+𧗟 33234112
+𧗠 33241112
+𧗡 332132112
+𧗢 332135112
+𧗣 332252112
+𧗤 332313112
+𧗥 332121112
+𧗦 3321132112
+𧗧 3322511112
+𧗨 3321535112
+𧗩 1324332112
+𧗪 33212121112
+𧗫 332341354112
+𧗬 332252135112
+𧗭 332111523112
+𧗮 332521251112
+𧗯 332243135112
+𧗰 332234134112
+𧗱 332431234112
+𧗲 3322521121112
+𧗳 3324111251112
+𧗴 3325425112112
+𧗵 3324155412112
+𧗶 3324143112112
+𧗷 3321241344112
+𧗸 33215341534112
+𧗹 332414312511112
+𧗺 33234544544112
+𧗻 33235111345112
+𧗼 332252554234112
+𧗽 332352534134112
+𧗾 3223525112134112
+𧗿 33241554413412112
+𧘀 33255525111234112
+𧘁 33225112521135112
+𧘂 332414312511211112
+𧘃 332252212511134112
+𧘄 3325551325111124112
+𧘅 332121252212511134112
+𧘆 33225111251113112121112
+𧘇 3534
+𧘈 4523452
+𧘉 41353425
+𧘊 41353435
+𧘋 4523435
+𧘌 4523453
+𧘍 45234121
+𧘎 411153534
+𧘏 45234515
+𧘐 45234315
+𧘑 45234354
+𧘒 45234135
+𧘓 45234134
+𧘔 45234124
+𧘕 45234211
+𧘖 45234534
+𧘗 251413534
+𧘘 411123534
+𧘙 411343534
+𧘚 45234115
+𧘛 45234155
+𧘜 45234312
+𧘝 4131153534
+𧘞 452344412
+𧘟 452341252
+𧘠 4135533534
+𧘡 452342343
+𧘢 452341551
+𧘣 452343554
+𧘤 452343554
+𧘥 452345211
+𧘦 4111213534
+𧘧 452343115
+𧘨 4151523534
+𧘩 4153413534
+𧘪 452341523
+𧘫 4152313534
+𧘬 452341312
+𧘭 4134153534
+𧘮 4134523534
+𧘯 4135342511
+𧘰 311213534
+𧘱 452341535
+𧘲 452342121
+𧘳 4134343534
+𧘴 1252413534
+𧘵 452341354
+𧘶 452343134
+𧘷 452343324
+𧘸 452341525
+𧘹 452341344
+𧘺 452343554
+𧘻 452343312
+𧘼 4125213534
+𧘽 53154413534
+𧘾 45234153534
+𧘿 4523412121
+𧙀 4523441431
+𧙁 212135413534
+𧙂 4523451532
+𧙃 41125123534
+𧙄 4523412341
+𧙅 4523412515
+𧙆 4523433544
+𧙇 4523444535
+𧙈 4523451251
+𧙉 41522523534
+𧙊 4523425511
+𧙋 4523425134
+𧙌 41353435515
+𧙍 31134413534
+𧙎 41352513534
+𧙏 41251213534
+𧙐 13412413534
+𧙑 12512413534
+𧙒 4523411132
+𧙓 4523431211
+𧙔 4523454121
+𧙕 4523411234
+𧙖 4523412251
+𧙗 4523413251
+𧙘 35515413534
+𧙙 412523534
+𧙚 41353435112
+𧙛 4523413252
+𧙜 41341413534
+𧙝 4523433124
+𧙞 45234125234
+𧙟 45234251153
+𧙠 45234134534
+𧙡 45234413234
+𧙢 45234112154
+𧙣 45234151534
+𧙤 45234351234
+𧙥 45234251251
+𧙦 4152252343534
+𧙧 45234113112
+𧙨 321121413534
+𧙩 411354223534
+𧙪 412525113534
+𧙫 45234122111
+𧙬 412521413534
+𧙭 515515413534
+𧙮 452344313522
+𧙯 431134413534
+𧙰 41121343534
+𧙱 45234351252
+𧙲 45234121315
+𧙳 341251413534
+𧙴 412511413534
+𧙵 415221343534
+𧙶 445112413534
+𧙷 45234135422
+𧙸 45234125441
+𧙹 45234325251
+𧙺 45234331251
+𧙻 45234511112
+𧙼 45234132121
+𧙽 45234251214
+𧙾 322154413534
+𧙿 45234413534
+𧚀 452343155414
+𧚁 452344451135
+𧚂 452341121132
+𧚃 452343554234
+𧚄 452343121534
+𧚅 452344511534
+𧚆 452341245521
+𧚇 452343525135
+𧚈 452345154544
+𧚉 452345435354
+𧚊 452341221115
+𧚋 452343541112
+𧚌 4152131213534
+𧚍 4112413443534
+𧚎 452343125121
+𧚏 452341251234
+𧚐 1251245413534
+𧚑 452341251534
+𧚒 3121121413534
+𧚓 452343515252
+𧚔 452345425112
+𧚕 452344135444
+𧚖 452342512134
+𧚗 452342512115
+𧚘 452343123453
+𧚙 452343231211
+𧚚 4411344413534
+𧚛 4134424413534
+𧚜 452343311252
+𧚝 1121413534534
+𧚞 4125352513534
+𧚟 452345133115
+𧚠 1121132413534
+𧚡 3251121413534
+𧚢 452344125135
+𧚣 2511211413534
+𧚤 41323543543534
+𧚥 4523412211154
+𧚦 4523441541234
+𧚧 4523435321511
+𧚨 4523415112134
+𧚩 31234353413534
+𧚪 4523441431531
+𧚫 4523411213511
+𧚬 4523444535121
+𧚭 45234431132
+𧚮 4523432411121
+𧚯 4523434434554
+𧚰 41545454543534
+𧚱 41555251413534
+𧚲 55535122413534
+𧚳 4523431125222
+𧚴 4523454251214
+𧚵 43342511413534
+𧚶 4523412153534
+𧚷 4523432511325
+𧚸 4523425225112
+𧚹 41251211153534
+𧚺 4523421212134
+𧚻 45234153532511
+𧚼 4523434154251
+𧚽 41251211323534
+𧚾 41251251413534
+𧚿 12211154413534
+𧛀 12341234413534
+𧛁 41353445413534
+𧛂 4523425122511
+𧛃 4523425312341
+𧛄 4523434413534
+𧛅 4523441354534
+𧛆 4523425342511
+𧛇 4523412111534
+𧛈 4523434125122
+𧛉 41353412343134
+𧛊 4523412212511
+𧛋 4523434454544
+𧛌 41353412313544
+𧛍 4523413435515
+𧛎 4523425234154
+𧛏 45234431554554
+𧛐 45234513154121
+𧛑 45234125351121
+𧛒 45234314314134
+𧛓 45234215315354
+𧛔 45234112155414
+𧛕 45234251125111
+𧛖 45234415331525
+𧛗 45234445351344
+𧛘 4523415251541
+𧛙 4134435412343534
+𧛚 45234251211534
+𧛛 45234341211154
+𧛜 121121124413534
+𧛝 45234345235354
+𧛞 45234122513541
+𧛟 45234251131121
+𧛠 45234112134534
+𧛡 45234131251534
+𧛢 452341541213134
+𧛣 512115154413534
+𧛤 45234353344544
+𧛥 45234415425211
+𧛦 12521413534534
+𧛧 251413543543534
+𧛨 414325352513534
+𧛩 45234121235251
+𧛪 45234445121251
+𧛫 41122513541413534
+𧛬 523522251413534
+𧛭 4523412213251
+𧛮 45234123411234
+𧛯 431251122413534
+𧛰 45234521325111
+𧛱 322511234413534
+𧛲 325121121413534
+𧛳 45234312413452
+𧛴 45234515515134
+𧛵 555135422413534
+𧛶 45234332121124
+𧛷 45234121251534
+𧛸 452343552335523
+𧛹 452343554541541
+𧛺 452345134143112
+𧛻 452341245554234
+𧛼 452343251113124
+𧛽 5131123454413534
+𧛾 452341215425221
+𧛿 4131234312343534
+𧜀 452344525114134
+𧜁 4523434123543554
+𧜂 452343251511252
+𧜃 452343115431234
+𧜄 452345425431121
+𧜅 452344453121251
+𧜆 452341212112534
+𧜇 452345552515215
+𧜈 4135114311343534
+𧜉 4125125251413534
+𧜊 4135344135342511
+𧜋 452343443554132
+𧜌 1252343134413534
+𧜍 4111353455213534
+𧜎 452344431343112
+𧜏 4131112111413534
+𧜐 452345425145445
+𧜑 452343312511252
+𧜒 452341212134132
+𧜓 45234255452511
+𧜔 452345132432511
+𧜕 452343143143134
+𧜖 452341225111134
+𧜗 452341211254444
+𧜘 452342512511134
+𧜙 452341212511134
+𧜚 3115431234413534
+𧜛 4523445115452
+𧜜 3511431134413534
+𧜝 4523412343424134
+𧜞 4523425112522154
+𧜟 41432535251413534
+𧜠 4523441554413412
+𧜡 4523443112125221
+𧜢 4523432533414544
+𧜣 4523432511154444
+𧜤 13113453554413534
+𧜥 4523441312214444
+𧜦 452341251234454
+𧜧 4523411134321511
+𧜨 45234354152454
+𧜩 4523412512245354
+𧜪 4135135251213534
+𧜫 41413522115353534
+𧜬 4523431431414334
+𧜭 45234513325125214
+𧜮 4523444512211154
+𧜯 413425112343534
+𧜰 4523441251251354
+𧜱 4523412211154531
+𧜲 4523434342513511
+𧜳 45234511541535
+𧜴 4523411342511135
+𧜵 4523412213545252
+𧜶 4523412512554121
+𧜷 51311433454413534
+𧜸 4113423423423423534
+𧜹 4523435311212511
+𧜺 4523421531535333
+𧜻 31251121153413534
+𧜼 12134121354413534
+𧜽 4523441533152134
+𧜾 4523451312524134
+𧜿 4523412121251124
+𧝀 4523425121122134
+𧝁 4523425221541541
+𧝂 45234532512511134
+𧝃 45234545232535251
+𧝄 45234125112354444
+𧝅 45234341251541541
+𧝆 45234153515352511
+𧝇 45234515322511134
+𧝈 45234324111214444
+𧝉 45234224314325234
+𧝊 45234414312511534
+𧝋 45234412515213134
+𧝌 45234352521354444
+𧝍 4523452131213541
+𧝎 45234414312511211
+𧝏 133123431234413534
+𧝐 45234414345252251
+𧝑 411211211211213534
+𧝒 45234122112512134
+𧝓 45234125221251112
+𧝔 45234215315225211
+𧝕 412552125115213534
+𧝖 255212511521413534
+𧝗 412515213134413534
+𧝘 45234413215113534
+𧝙 4523443111325111
+𧝚 543341134354413534
+𧝛 323251213554413534
+𧝜 45234134432511234
+𧝝 452341251234352534
+𧝞 45234554554134534
+𧝟 243252513134413534
+𧝠 45234122125113134
+𧝡 45234314314341251
+𧝢 413354144311343534
+𧝣 121121121121413534
+𧝤 45234122111343312
+𧝥 413212112544443534
+𧝦 132121135422413534
+𧝧 45234432511121534
+𧝨 45234411125153251
+𧝩 45234332331225111
+𧝪 45234125351121124
+𧝫 45234122122145252
+𧝬 43252343134413534
+𧝭 45234134432511134
+𧝮 45234354312344544
+𧝯 45234122111413534
+𧝰 45234325343123415
+𧝱 452344451122134515
+𧝲 452342153151353334
+𧝳 452343251141533134
+𧝴 452342112345425111
+𧝵 452341212122151234
+𧝶 452341212251135345
+𧝷 3215111213554413534
+𧝸 452344155332411121
+𧝹 4152513541413534354
+𧝺 4112345452312343534
+𧝻 4133541443341323534
+𧝼 452341252211123422
+𧝽 452342511353453534
+𧝾 4132113443112523534
+𧝿 452341251211251211
+𧞀 452341251255441431
+𧞁 452343134211121111
+𧞂 415415413215113534
+𧞃 452345132514143112
+𧞄 452343253431234115
+𧞅 45234121431112454
+𧞆 452344111251431112
+𧞇 452343443454544354
+𧞈 2511344311354413534
+𧞉 1234545231234413534
+𧞊 452343535112533112
+𧞋 452344134315112234
+𧞌 452343425221154444
+𧞍 4523444535415411234
+𧞎 4523434431215114544
+𧞏 452343211152511134
+𧞐 55155151213312413534
+𧞑 4523422434511353334
+𧞒 12145312343554413534
+𧞓 4523441432533543211
+𧞔 4523412121215425221
+𧞕 1325221341554413534
+𧞖 4523441431252132522
+𧞗 41551551512133123534
+𧞘 452345134444112454
+𧞙 1252211211554413534
+𧞚 41335414431134413534
+𧞛 4523412132411121534
+𧞜 3211121251511413534
+𧞝 4523413122122145252
+𧞞 4523454354115154444
+𧞟 4523435131535121251
+𧞠 32511141341241353434
+𧞡 53132511154444413534
+𧞢 12512451353334413534
+𧞣 4523413251125111344
+𧞤 452341223241112154
+𧞥 41353425342513443531
+𧞦 4523435252431154444
+𧞧 45234413522115354444
+𧞨 45234125125125153534
+𧞩 45234234324111211534
+𧞪 45234555253415445445
+𧞫 45234125125541251431
+𧞬 45234121211121111534
+𧞭 45234251212512125121
+𧞮 411125113533434413534
+𧞯 413522115154444413534
+𧞰 45234132112345344544
+𧞱 45234413522115153534
+𧞲 452341132511132511134
+𧞳 45234123211511354444
+𧞴 413534411125135121251
+𧞵 45234131212251125214
+𧞶 452343143141211254444
+𧞷 452344125221241343534
+𧞸 45234251212511134454
+𧞹 1214513533343554413534
+𧞺 1214512512343534413534
+𧞻 4125125151512134343534
+𧞼 452344451122134413534
+𧞽 45234513241343112454
+𧞾 452342543121144441344
+𧞿 452341331234312342121
+𧟀 452342512512511121534
+𧟁 452341211254444431132
+𧟂 452345151251211251211
+𧟃 45234252324111212535251
+𧟄 4523441251251112213534
+𧟅 4523412125352512511134
+𧟆 452341224135221154444
+𧟇 4523434125125125125122
+𧟈 45234321132534151114334
+𧟉 45234314314511225113511
+𧟊 45234251152252134431234
+𧟋 4523412212512531425221
+𧟌 452342522155444432411121
+𧟍 452342522154354115154444
+𧟎 452341213525352512511134
+𧟏 4111251554444554444413534
+𧟐 4523413425234343434251214
+𧟑 4523444511221341211254444
+𧟒 4523432113253415111311534
+𧟓 4523425125113121221113134
+𧟔 4523412511234125112342511
+𧟕 452342512125121251214452541
+𧟖 45234314314121211121111534
+𧟗 45234411125155444455444412
+𧟘 452341251245251251112213534
+𧟙 45234145241342512512511234341
+𧟚 45234212113425234343434251214
+𧟛 414313215115414313215115413534
+𧟜 452341431234143123414312341431234
+𧟝 452343411243125111251113241112154
+𧟞 45234414313215115414313215115413534
+𧟟 41431354115151114143135411515111413534
+𧟠 1252211
+𧟡 1252211
+𧟢 5125351
+𧟣 12522135
+𧟤 125221132
+𧟥 125221132
+𧟦 125221132
+𧟧 1252211344
+𧟨 1252213132
+𧟩 1252212511
+𧟪 12535111214
+𧟫 12535112512
+𧟬 12522132121
+𧟭 121125351534
+𧟮 125221251121
+𧟯 1252211213515
+𧟰 3533125221531
+𧟱 12522135115254
+𧟲 12522111121112
+𧟳 12522131133511
+𧟴 12522134112431
+𧟵 12522135115254
+𧟶 12522131133511
+𧟷 11121112125351
+𧟸 12522132132511
+𧟹 125221251125112
+𧟺 12522112134154
+𧟻 125221121251112
+𧟼 1252214334121121
+𧟽 1252215435411515
+𧟾 125221121311252
+𧟿 12522125341213121
+𧠀 152213121221113134
+𧠁 125351121211212112
+𧠂 1252211341112513134
+𧠃 12522133231251251354
+𧠄 125221122125112122111
+𧠅 12522113323125113542515215
+𧠆 32511135
+𧠇 25112135
+𧠈 542511135
+𧠉 5252511135
+𧠊 2512511135
+𧠋 2511135132
+𧠌 2511135132
+𧠍 5122511135
+𧠎 12522511135
+𧠏 33552511135
+𧠐 25111355452
+𧠑 25111353115
+𧠒 31212511135
+𧠓 25342511135
+𧠔 34342511135
+𧠕 25111354412
+𧠖 25111351523
+𧠗 25111352511
+𧠘 25111353324
+𧠙 33242511135
+𧠚 34532511135
+𧠛 21212511135
+𧠜 542512511135
+𧠝 343332511135
+𧠞 351352511135
+𧠟 351512511135
+𧠠 515152511135
+𧠡 315252511135
+𧠢 251112511135
+𧠣 521342511135
+𧠤 515322511135
+𧠥 125232511135
+𧠦 251113525111
+𧠧 455342511135
+𧠨 3335342511135
+𧠩 1221342511135
+𧠪 2112342511135
+𧠫 1541212511135
+𧠬 3453252511135
+𧠭 2511135413434
+𧠮 2511135251251
+𧠯 1212512511135
+𧠰 4153252511135
+𧠱 1213542511135
+𧠲 2525112511135
+𧠳 3443452511135
+𧠴 2511135121124
+𧠵 1252342511135
+𧠶 1325112511135
+𧠷 4134342511135
+𧠸 5412342511135
+𧠹 1211212511135
+𧠺 3121352511135
+𧠻 25111354111251
+𧠼 31212512511135
+𧠽 44531342511135
+𧠾 34435212511135
+𧠿 35413332511135
+𧡀 12514312511135
+𧡁 25211212511135
+𧡂 12143342511135
+𧡃 44513542511135
+𧡄 25111351353334
+𧡅 13431342511135
+𧡆 25111412511135
+𧡇 25111352512153
+𧡈 25131212511135
+𧡉 25111354134424
+𧡊 32123412511135
+𧡋 131211212511135
+𧡌 351335412511135
+𧡍 125112342511135
+𧡎 321511352511135
+𧡏 545454542511135
+𧡐 311342512511135
+𧡑 212511152511135
+𧡒 2511135333534
+𧡓 344345542511135
+𧡔 122125112511135
+𧡕 251113521123454
+𧡖 324111212511135
+𧡗 411211322511135
+𧡘 121112342511134
+𧡙 122143342511135
+𧡚 122511112511135
+𧡛 134342342511135
+𧡜 251135112511135
+𧡝 251113525122134
+𧡞 321211212511135
+𧡟 431224312511135
+𧡠 522143342511135
+𧡡 4512511122511135
+𧡢 4451251112511135
+𧡣 3123443342511135
+𧡤 3513251222511135
+𧡥 1221345152511135
+𧡦 3251511322511135
+𧡧 44531121212511135
+𧡨 2511121342511135
+𧡩 3443113542511135
+𧡪 1221113552511135
+𧡫 5433411342511135
+𧡬 3354143332511135
+𧡭 2511135251112121
+𧡮 1234251112511135
+𧡯 3541311342511135
+𧡰 2511121212511135
+𧡱 4143125112511135
+𧡲 1113425112511135
+𧡳 3443352512511135
+𧡴 1254312342511135
+𧡵 1341221112511135
+𧡶 2511311212511135
+𧡷 25111353544311252
+𧡸 55155151212511135
+𧡹 21253434152511135
+𧡺 12131525112511135
+𧡻 25132511112511135
+𧡼 12512543342511135
+𧡽 13434234532511135
+𧡾 34433112522511135
+𧡿 41431112342511135
+𧢀 12522112342511135
+𧢁 25111351311534124
+𧢂 131134535542511135
+𧢃 251125125312511135
+𧢄 125221112342511135
+𧢅 251113525111354544
+𧢆 111343215112511135
+𧢇 541541325112511135
+𧢈 511225112512511135
+𧢉 344324111212511135
+𧢊 251113534342513534
+𧢋 541541343332511135
+𧢌 3251114134122511135
+𧢍 432523431342511135
+𧢎 1234343412342511135
+𧢏 2121131211212511135
+𧢐 4325243125112511135
+𧢑 2511135511225112511
+𧢒 33225213531342511135
+𧢓 33225213531342511135
+𧢔 12523425111352511135
+𧢕 21453434251112511135
+𧢖 12121515352342511135
+𧢗 35453121551212511135
+𧢘 445521325111342511135
+𧢙 251113551112444425221
+𧢚 122125134431212511135
+𧢛 251113525111352511135
+𧢜 1234343412341342511135
+𧢝 1312122511252142511135
+𧢞 4513354125111352511135
+𧢟 2121343413434522511135
+𧢠 2511135252324111213134
+𧢡 2511135332252111213134
+𧢢 341251251251251222511135
+𧢣 123434341234541522511135
+𧢤 251113512123322521353134
+𧢥 145241342512512512511135
+𧢦 3251512121511452522511135
+𧢧 2523241112125352512511135
+𧢨 3211325341511143342511135
+𧢩 2511125111324111212511135
+𧢪 4325112341325111342511135
+𧢫 3251512121511452522511135
+𧢬 12112112113525111352511135
+𧢭 251112511132411121542511135
+𧢮 1253412534413522115352511135
+𧢯 2121251251324111215415415412511135
+𧢰 122251251324111215333533353332511135
+𧢱 14524134251251251123434132113434511452511135
+𧢲 35253434
+𧢳 35351125
+𧢴 353511212
+𧢵 353511215
+𧢶 353511235
+𧢷 3535112544
+𧢸 3535112121
+𧢹 3535112252
+𧢺 3535112515
+𧢻 35351123112
+𧢼 52133535112
+𧢽 35351123215
+𧢾 35351121535
+𧢿 35351121252
+𧣀 35351122154
+𧣁 35351124535
+𧣂 35351121355
+𧣃 35351125215
+𧣄 35351121254
+𧣅 15153535112
+𧣆 21213535112
+𧣇 35351123554
+𧣈 35351123112
+𧣉 32153535112
+𧣊 35351123312
+𧣋 35351123432
+𧣌 43343535112
+𧣍 35351124535
+𧣎 35351121554
+𧣏 35351123511
+𧣐 35351121523
+𧣑 353511212211
+𧣒 35351121515
+𧣓 353511241121
+𧣔 353511213251
+𧣕 353511225341
+𧣖 353511244535
+𧣗 353511212251
+𧣘 353511212523
+𧣙 353511241554
+𧣚 353511251541
+𧣛 353511225351
+𧣜 353511232121
+𧣝 353511231211
+𧣞 353511225111
+𧣟 353511231525
+𧣠 353511212121
+𧣡 3543543535112
+𧣢 3535112511534
+𧣣 3535112354354
+𧣤 3535112251135
+𧣥 3535112355435
+𧣦 3535112413434
+𧣧 3535112151534
+𧣨 35351121311534
+𧣩 35351123413252
+𧣪 35351122433541
+𧣫 35351122512134
+𧣬 35351124525111
+𧣭 35351123443533
+𧣮 35351121253511
+𧣯 12133123535112
+𧣰 35351121255151
+𧣱 35351121554534
+𧣲 35351121251134
+𧣳 35351123434251
+𧣴 353511215341534
+𧣵 353511234125122
+𧣶 35351122525135
+𧣷 353511235121251
+𧣸 353511254545454
+𧣹 353511243344334
+𧣺 353511221251112
+𧣻 353511251312251
+𧣼 353511212511534
+𧣽 353511232411121
+𧣾 353511221531535
+𧣿 353511241431112
+𧤀 353511241251234
+𧤁 353511212134354
+𧤂 121343543535112
+𧤃 353511225121132
+𧤄 353511234342135
+𧤅 125115343535112
+𧤆 353511251535234
+𧤇 353511241541234
+𧤈 353511212211234
+𧤉 353511225153541
+𧤊 311252223535112
+𧤋 3535112554554132
+𧤌 3535112134354354
+𧤍 3535112414345252
+𧤎 3535112445125111
+𧤏 3535112251122111
+𧤐 3535112251225251
+𧤑 3215111343535112
+𧤒 3535112122125112
+𧤓 3535112131213541
+𧤔 3535112543343554
+𧤕 3535112431253511
+𧤖 3535112251211534
+𧤗 3535112252132522
+𧤘 2511121343535112
+𧤙 3123443343535112
+𧤚 3535112412511234
+𧤛 35351121113431234
+𧤜 35351121251254312
+𧤝 35351123535225121
+𧤞 35351124143454153
+𧤟 35351123115431234
+𧤠 35351123541521234
+𧤡 35351121541213134
+𧤢 3535112353511253
+𧤣 35351121212251112
+𧤤 35351123241112153
+𧤥 35351122153154134
+𧤦 35351121325125251
+𧤧 35351122153153554
+𧤨 35351122511445531
+𧤩 35351122522124134
+𧤪 35351123241112153
+𧤫 35351123321531534
+𧤬 35351123515132522
+𧤭 52153535112533112
+𧤮 35351121325113251
+𧤯 353511225125115341
+𧤰 353511212514314412
+𧤱 353511212124143112
+𧤲 353511213533344444
+𧤳 353511215112531123
+𧤴 121521335543535112
+𧤵 353511212512554121
+𧤶 353511213533344544
+𧤷 353511234431353334
+𧤸 353511232554134354
+𧤹 121324111213535112
+𧤺 353511213412132511
+𧤻 3535112121211212112
+𧤼 3535112134315233534
+𧤽 3535112511225113511
+𧤾 3535112545232535251
+𧤿 3535112252112342154
+𧥀 1251125115343535112
+𧥁 3535112533112325251
+𧥂 3535112541541342444
+𧥃 353511252431353334
+𧥄 3535112251122111534
+𧥅 35351122523241112153
+𧥆 12145135351121251234
+𧥇 3535112252325113554
+𧥈 353511212512531125221
+𧥉 353511241251451355334
+𧥊 353511225221241343534
+𧥋 353511254154132411121
+𧥌 3535112413122112512134
+𧥍 3535112413522115154444
+𧥎 3535112352534251112154
+𧥏 3535112324111212534251
+𧥐 3535112431121341511534
+𧥑 15342511153425113535112
+𧥒 35351123525135435251354
+𧥓 353511235251153535251354
+𧥔 521535351122522135251214
+𧥕 3535112212135251251115151
+𧥖 35351121254125441352211515
+𧥗 3535112125341253441352211535
+𧥘 3535112324111212522135251214
+𧥙 13125153413125153435351122154
+𧥚 13125153413125153421543535112
+𧥛 411125
+𧥜 411152
+𧥝 54111251
+𧥞 41112512
+𧥟 41112515
+𧥠 354111251
+𧥡 411125154
+𧥢 1344111251
+𧥣 4111251251
+𧥤 4111251513
+𧥥 5554111251
+𧥦 4111251115
+𧥧 3544111251
+𧥨 4111251125
+𧥩 4111251135
+𧥪 4111251152
+𧥫 4111251315
+𧥬 4111251335
+𧥭 4111251135
+𧥮 41112511551
+𧥯 41112511524
+𧥰 41112513253
+𧥱 41112511134
+𧥲 35334111251
+𧥳 41112515221
+𧥴 41112513552
+𧥵 41112512511
+𧥶 41112511121
+𧥷 41112513115
+𧥸 41112513112
+𧥹 41112513112
+𧥺 41112513511
+𧥻 35114111251
+𧥼 41112511154
+𧥽 11344111251
+𧥾 41112511534
+𧥿 25344111251
+𧦀 41112515454
+𧦁 41112513434
+𧦂 41112515134
+𧦃 41112515452
+𧦄 41112513515
+𧦅 41112511345
+𧦆 41112515452
+𧦇 35414111251
+𧦈 41112513513
+𧦉 41112511215
+𧦊 25114111251
+𧦋 41112512534
+𧦌 41112513112
+𧦍 41112513533
+𧦎 41112513251
+𧦏 41112511255
+𧦐 41112513324
+𧦑 41112514135
+𧦒 41112515151
+𧦓 41112513215
+𧦔 35411125112
+𧦕 41112511235
+𧦖 41112513525
+𧦗 35114111251
+𧦘 41112512554
+𧦙 54524111251
+𧦚 41112511554
+𧦛 41112513554
+𧦜 411125134234
+𧦝 411125134312
+𧦞 411125113252
+𧦟 41112513454
+𧦠 41112511355
+𧦡 411125113112
+𧦢 411125125115
+𧦣 411125141531
+𧦤 411125153251
+𧦥 554144111251
+𧦦 411125125211
+𧦧 411125131525
+𧦨 411125135424
+𧦩 411125115255
+𧦪 121534111251
+𧦫 411125125151
+𧦬 121354111251
+𧦭 411125132525
+𧦮 41112515154
+𧦯 411125113533
+𧦰 411125141431
+𧦱 445354111251
+𧦲 532514111251
+𧦳 411125113251
+𧦴 543344111251
+𧦵 411125125121
+𧦶 411125131251
+𧦷 411125135345
+𧦸 112254111251
+𧦹 411125112341
+𧦺 411125132121
+𧦻 411125133415
+𧦼 411125133544
+𧦽 411125135234
+𧦾 411125151254
+𧦿 411125112534
+𧧀 41112511554
+𧧁 354554111251
+𧧂 411125131234
+𧧃 12251254111251
+𧧄 4111251415531
+𧧅 4111251125134
+𧧆 4111251325151
+𧧇 4111251531234
+𧧈 4111251554234
+𧧉 4111251413315
+𧧊 411125133155
+𧧋 4111251135422
+𧧌 4111251211234
+𧧍 4111251125351
+𧧎 4111251211124
+𧧏 5312514111251
+𧧐 4111251131534
+𧧑 4143134111251
+𧧒 4111251125234
+𧧓 4111251325221
+𧧔 4111251335414
+𧧕 4111251445521
+𧧖 4111251321511
+𧧗 4111251345235
+𧧘 4111251535215
+𧧙 3541411125154
+𧧚 4111251251222
+𧧛 4111251251111
+𧧜 4111251253434
+𧧝 4111251131523
+𧧞 3443411125154
+𧧟 4111251121534
+𧧠 4111251511511
+𧧡 4111251343454
+𧧢 4111251415325
+𧧣 4111251413452
+𧧤 4111251431134
+𧧥 4111251251221
+𧧦 4111251325251
+𧧧 2534344111251
+𧧨 4111251351234
+𧧩 4111251413234
+𧧪 4111251511112
+𧧫 4111251513121
+𧧬 1214111251534
+𧧭 4111251354152
+𧧮 4111251415555
+𧧯 4111251243135
+𧧰 4111251125125
+𧧱 4111251511252
+𧧲 4111251312135
+𧧳 4111251134152
+𧧴 41112513454544
+𧧵 41112511343434
+𧧶 41112513411234
+𧧷 41112511241344
+𧧸 41112512515322
+𧧹 32251344111251
+𧧺 41112511515121
+𧧻 41112513231211
+𧧼 41112514452541
+𧧽 41112513541112
+𧧾 41112512511134
+𧧿 34345214111251
+𧨀 41112513434121
+𧨁 43112134111251
+𧨂 41112513212512
+𧨃 41112511213234
+𧨄 41112511212115
+𧨅 12121214111251
+𧨆 41112514154325
+𧨇 41112515131234
+𧨈 12343414111251
+𧨉 41112514153121
+𧨊 41112511331211
+𧨋 41112512512121
+𧨌 41112511341341
+𧨍 32251344111251
+𧨎 41112514451135
+𧨏 41112514525111
+𧨐 41112514134531
+𧨑 41112514125152
+𧨒 41112511251134
+𧨓 4111251251154
+𧨔 41112511212415
+𧨕 41112513525135
+𧨖 41112513535112
+𧨗 41112511124334
+𧨘 41112511132333
+𧨙 41112515121121
+𧨚 41112512511121
+𧨛 41112512511115
+𧨜 4111251543541
+𧨝 41112512535251
+𧨞 41112513443134
+𧨟 41112514111251
+𧨠 41112514453554
+𧨡 41112515113251
+𧨢 41112512121112
+𧨣 25352514111251
+𧨤 41112512511121
+𧨥 41112513542511
+𧨦 411125135125221
+𧨧 52131214111251
+𧨨 411125145434252
+𧨩 411125111342444
+𧨪 411125121543541
+𧨫 411125113443112
+𧨬 411125125121132
+𧨭 125125344111251
+𧨮 411125132515112
+𧨯 411125141541234
+𧨰 411125131125222
+𧨱 411125141335151
+𧨲 243452514111251
+𧨳 411125121251112
+𧨴 411125112515112
+𧨵 411125113311252
+𧨶 411125112123134
+𧨷 411125121213541
+𧨸 411125125122134
+𧨹 411125155124134
+𧨺 414314111251534
+𧨻 321221344111251
+𧨼 411125121253541
+𧨽 41112515232124
+𧨾 411125145351234
+𧨿 411125112132511
+𧩀 411125132354354
+𧩁 253441112512534
+𧩂 411125111354153
+𧩃 411125112123434
+𧩄 411125113434121
+𧩅 411125141315354
+𧩆 41112511515121
+𧩇 41112514544354
+𧩈 411125145131344
+𧩉 411125141351134
+𧩊 411125113443115
+𧩋 123412344111251
+𧩌 411125152125221
+𧩍 411125125115134
+𧩎 411125125113533
+𧩏 351341354111251
+𧩐 411125121531534
+𧩑 411125125153541
+𧩒 411125133355414
+𧩓 411125135334544
+𧩔 411125141343112
+𧩕 411125141431531
+𧩖 411125152115211
+𧩗 411125112113135
+𧩘 411125153335333
+𧩙 41112512511154
+𧩚 411125113424134
+𧩛 411125135251115
+𧩜 411125112211234
+𧩝 411125131133511
+𧩞 122111544111251
+𧩟 411125135544544
+𧩠 411125135132511
+𧩡 411125124325251
+𧩢 4111251212115251
+𧩣 4111251555325341
+𧩤 4111251132522111
+𧩥 1123431344111251
+𧩦 411125115251541
+𧩧 4111251413122154
+𧩨 4111251325131134
+𧩩 4111251351331134
+𧩪 4111251353344544
+𧩫 4111251134354354
+𧩬 4111251132511134
+𧩭 4111251131213541
+𧩮 4111251445343454
+𧩯 4111251413431523
+𧩰 411125144534454
+𧩱 4111251513431132
+𧩲 4111251125123422
+𧩳 4111251121231211
+𧩴 4111251513351234
+𧩵 4111251234111251
+𧩶 4111251111253134
+𧩷 4111251354554544
+𧩸 4111251341251132
+𧩹 4111251415331525
+𧩺 4111251332511534
+𧩻 4111251111341134
+𧩼 41112511541213134
+𧩽 4111251412211521
+𧩾 1251253114111251
+𧩿 4111251515515134
+𧪀 4111251515121121
+𧪁 411125131525454
+𧪂 4111251352511521
+𧪃 4111251344111251
+𧪄 4111251324111251
+𧪅 4111251531544544
+𧪆 4111251121212512
+𧪇 4111251134122111
+𧪈 4111251431351122
+𧪉 4111251134413534
+𧪊 4111251212514444
+𧪋 4111251121245434
+𧪌 4111251215112134
+𧪍 4111251251125221
+𧪎 4111251251251214
+𧪏 4111251251211534
+𧪐 4111251121214312
+𧪑 4111251312342511
+𧪒 4111251325112534
+𧪓 4111251251125214
+𧪔 2522153534111251
+𧪕 4111251512115154
+𧪖 4111251112134534
+𧪗 4111251312343452
+𧪘 41112514311213121
+𧪙 41112512523123422
+𧪚 41112512521251431
+𧪛 41112513251154444
+𧪜 41112514315233511
+𧪝 41112513122113534
+𧪞 41112511215425221
+𧪟 41112512522123344
+𧪠 41112514134131134
+𧪡 41112511213352511
+𧪢 41112513115431234
+𧪣 41112515253414444
+𧪤 41112512153153134
+𧪥 41112513321531512
+𧪦 41112512511541541
+𧪧 41112515515515121
+𧪨 41112511211254444
+𧪩 41112513251114544
+𧪪 41112512513425221
+𧪫 41112513253411515
+𧪬 35414111251554234
+𧪭 41112513545325121
+𧪮 41112511212134115
+𧪯 41112512512125151
+𧪰 43112131214111251
+𧪱 41112513525113515
+𧪲 4111251325151454
+𧪳 41112513253414544
+𧪴 41112513535231121
+𧪵 32512135544111251
+𧪶 41112514421245521
+𧪷 12234141112513312
+𧪸 41112511122125211
+𧪹 41112514454143112
+𧪺 41112513412211222
+𧪻 41112514143141431
+𧪼 41112512512511134
+𧪽 41112511224312511
+𧪾 41112515213554234
+𧪿 41112511122125211
+𧫀 41112514134343534
+𧫁 41112511212513534
+𧫂 41112511251112521
+𧫃 12213424444111251
+𧫄 41112511211154333
+𧫅 41112512153153112
+𧫆 41112512434525135
+𧫇 41112515552511134
+𧫈 41112513511341251
+𧫉 41112511211214544
+𧫊 12511533344111251
+𧫋 43152335114111251
+𧫌 41112512121251122
+𧫍 41112513251111121
+𧫎 4111251413534251
+𧫏 32512135544111251
+𧫐 41112515421343541
+𧫑 4111251314314354
+𧫒 411125144541343412
+𧫓 411125121253444441
+𧫔 411125131112111121
+𧫕 411125135415411234
+𧫖 411125125121554234
+𧫗 411125113434343434
+𧫘 411125135411125135
+𧫙 411125141431251135
+𧫚 411125112213545252
+𧫛 411125143112145534
+𧫜 5115415354111251
+𧫝 411125132534135354
+𧫞 411125151312524134
+𧫟 4111251324111215134
+𧫠 411125112211134121
+𧫡 411125144535154121
+𧫢 411125141535111121
+𧫣 125123431344111251
+𧫤 4111251251211212112
+𧫥 411125141313425115
+𧫦 131134535544111251
+𧫧 411125134151253511
+𧫨 411125141352325111
+𧫩 411125112212523434
+𧫪 411125121531535134
+𧫫 411125151135413554
+𧫬 152343134134111251
+𧫭 411125113413412511
+𧫮 411125151331133112
+𧫯 211354131214111251
+𧫰 411125141315112134
+𧫱 411125141431251112
+𧫲 411125135132211222
+𧫳 411125113211234534
+𧫴 41112511222511121
+𧫵 411125143113412132
+𧫶 411125125234125122
+𧫷 125123435344111251
+𧫸 411125131431453254
+𧫹 351334411125134454
+𧫺 411125141353425221
+𧫻 41112511251234454
+𧫼 411125141312341234
+𧫽 411125141312214334
+𧫾 4111251412512341354
+𧫿 4111251511121251124
+𧬀 4111251545454554234
+𧬁 4111251325111413412
+𧬂 4111251532512511134
+𧬃 4111251212121212121
+𧬄 4111251325111331134
+𧬅 4111251513121325114
+𧬆 4111251431121431251
+𧬇 4111251121451251431
+𧬈 4111251341251541541
+𧬉 2511522521344111251
+𧬊 1221113433124111251
+𧬋 4111251543345153554
+𧬌 4111251251251251252
+𧬍 4111251414345252251
+𧬎 4111251133123431234
+𧬏 411125112121344132
+𧬐 4111251132522132522
+𧬑 3234343434134111251
+𧬒 41112512511252214153
+𧬓 1344311253114111251
+𧬔 4111251122111341234
+𧬕 4111251122514143112
+𧬖 41112511212543344134
+𧬗 4111251122111341234
+𧬘 4111251511225112511
+𧬙 4111251445125125121
+𧬚 411125125121415352
+𧬛 4111251352521353334
+𧬜 4111251122111343312
+𧬝 4111251121254334354
+𧬞 4111251145244441154
+𧬟 41112512121152511312
+𧬠 4111251312343424134
+𧬡 4111251334343434121
+𧬢 4111251343434342511
+𧬣 4143125114111251534
+𧬤 4111251414312511211
+𧬥 41112511213251152
+𧬦 4111251355112355112
+𧬧 41112511212543341134
+𧬨 41112512121131233534
+𧬩 41112513134211121111
+𧬪 4111251451251112454
+𧬫 41112514313511224444
+𧬬 41112512243143111234
+𧬭 41112511251152253412
+𧬮 41112512511125111134
+𧬯 41112514451122134515
+𧬰 553451154524111251
+𧬱 41112515112251112512
+𧬲 41112515132413452252
+𧬳 41112512522113443112
+𧬴 41112512534444413541
+𧬵 41112514453541343412
+𧬶 41112515333533334333
+𧬷 41112512153151353334
+𧬸 41112514311344111251
+𧬹 41112512512211251431
+𧬺 41112511212414345252
+𧬻 4111251121431112454
+𧬼 41112511221112513121
+𧬽 41112513532511154444
+𧬾 41112515545544111251
+𧬿 41112513123434343452
+𧭀 41112513143142515322
+𧭁 52252343431344111251
+𧭂 411125144535415411234
+𧭃 113411343513354111251
+𧭄 411125155532115111234
+𧭅 411125112512535113121
+𧭆 411125134125125125122
+𧭇 411125132511445344153
+𧭈 411125144545442522112
+𧭉 411125113425234343434
+𧭊 411125112124511353334
+𧭋 41112515134143112454
+𧭌 41112511325221341554
+𧭍 411125112211154323434
+𧭎 411125132224314311134
+𧭏 411125112125145154121
+𧭐 153113454521344111251
+𧭑 4111251251112511133544
+𧭒 3211251251511454111251
+𧭓 411125143344334454334
+𧭔 335414541541344111251
+𧭕 411125134431531252252
+𧭖 411125112121213121534
+𧭗 411125112512531425221
+𧭘 411125141431414312511
+𧭙 411125122434511353334
+𧭚 411125141112514325135
+𧭛 411125141112514111251
+𧭜 4111251215315251214544
+𧭝 4111251121235415411234
+𧭞 4111251555253415445445
+𧭟 4111251513241343112454
+𧭠 4111251445321511354444
+𧭡 4111251131212251125214
+𧭢 4111251243452512511134
+𧭣 4111251344312421531535
+𧭤 4111251251112213424134
+𧭥 4111251325115545541234
+𧭦 4111251352534251112154
+𧭧 411125141312214444454
+𧭨 3234343434131214111251
+𧭩 411125112212513434121
+𧭪 4111251121213434234342
+𧭫 4111251412512512121112
+𧭬 4111251251112511113432
+𧭭 1351332324111214111251
+𧭮 4111251325111445354153
+𧭯 4111251323434343413121
+𧭰 4111251413122112512134
+𧭱 411125112522113455454
+𧭲 4111251121254312114444
+𧭳 1251212512125124111251
+𧭴 4111251252211212513534
+𧭵 411125132511355411234
+𧭶 4111251131251554234534
+𧭷 4111251352512144442511
+𧭸 41112512135454211121111
+𧭹 21212331325111344111251
+𧭺 41112514125125112121112
+𧭻 41112511312515344111251
+𧭼 41112514143112342511135
+𧭽 411125112121212154111251
+𧭾 41112513211511342511134
+𧭿 25221535341112514111251
+𧮀 25221343441112514111251
+𧮁 41112511212354354411354
+𧮂 41112513121353121352511
+𧮃 41112511221251211154334
+𧮄 4111251252324111212525
+𧮅 41112512522112513534454
+𧮆 411125125111342511134531
+𧮇 41112511212251125214454
+𧮈 411125144511221342512134
+𧮉 411125112123234343434115
+𧮊 41112513251135544111251
+𧮋 411125125232411121254312
+𧮌 411125155444455444435515
+𧮍 411125151122511414312511
+𧮎 411125144511221344111251
+𧮏 41112513215113253412554
+𧮐 52344312151145444111251
+𧮑 4111251511225112511541541
+𧮒 4111251131134535541253511
+𧮓 411125132511355432411121
+𧮔 4111251251152252134431234
+𧮕 4111251511225111211254444
+𧮖 4111251312135312135122134
+𧮗 4111251411125141112514544
+𧮘 4111251451251112451251112
+𧮙 224314311232151135544111251
+𧮚 41112511212251125214251214
+𧮛 4111251413452255432411121
+𧮜 41112512512511334431225154
+𧮝 44121212331325111344111251
+𧮞 411125125111251113241112154
+𧮟 431121411125141112514111251
+𧮠 411125141312341234312342511
+𧮡 4111251445351212522125111134
+𧮢 4111251251212512125121554234
+𧮣 2511134251113441112514111251
+𧮤 4111251125125314252212511135
+𧮥 2512512513122513122514111251
+𧮦 4111251411125141112514111251
+𧮧 411125112251122511125431234
+𧮨 41112514125125151512134343534
+𧮩 414313541151511141431354115151114111251
+𧮪 4521251
+𧮫 3434251
+𧮬 3434251512
+𧮭 3434251354
+𧮮 3434251312
+𧮯 13543434251
+𧮰 34342513415
+𧮱 34342513553
+𧮲 21453434251
+𧮳 343425112211
+𧮴 343425112251
+𧮵 3434251341251
+𧮶 3434251331251
+𧮷 3434251552523
+𧮸 21531343425154
+𧮹 34342512512115
+𧮺 343425115341534
+𧮻 343425135121251
+𧮼 413452253434251
+𧮽 343425121531535
+𧮾 344311343434251
+𧮿 343425134112251
+𧯀 3434251121225134
+𧯁 3434251325131134
+𧯂 3434251351331134
+𧯃 3434251131251534
+𧯄 3123425113434251
+𧯅 3434251312342511
+𧯆 34342514453112251
+𧯇 34342514143125115
+𧯈 34342512342511234
+𧯉 44534342513434251
+𧯊 343425123432511234
+𧯋 3434251511225111523
+𧯌 3434251325111111112
+𧯍 3434251433443344553
+𧯎 3434251511225113511
+𧯏 1331234312343434251
+𧯐 3434251251125221153
+𧯑 3434251511225112511
+𧯒 3434251432524312511
+𧯓 34342515112251112512
+𧯔 3434251325111251152
+𧯕 343425121451343425111
+𧯖 343425121531343425111
+𧯗 3434251145244443443554134
+𧯘 343425151122511121221113134
+𧯙 3434251145241342512512511234341
+𧯚 351251431
+𧯛 5231251431
+𧯜 4451251431
+𧯝 1251431315
+𧯞 12514313312
+𧯟 11341251431
+𧯠 125143135251
+𧯡 354551251431
+𧯢 525341251431
+𧯣 121341251431
+𧯤 125143131211
+𧯥 1211251431534
+𧯦 4311341251431
+𧯧 1211511251431
+𧯨 1251431354354
+𧯩 12514312512134
+𧯪 12514314351523
+𧯫 54334125143112
+𧯬 12514311555121
+𧯭 354112514311312
+𧯮 111211121251431
+𧯯 125143112211134
+𧯰 125143135321511
+𧯱 125143112511534
+𧯲 125143113434234
+𧯳 445354551251431
+𧯴 123412341251431
+𧯵 125143111134112
+𧯶 252125143112512
+𧯷 1212525341251431
+𧯸 1214512514313554
+𧯹 4143125111251431
+𧯺 4134342521251431
+𧯻 1212514311324251
+𧯼 12125143135121251
+𧯽 11121112521251431
+𧯾 12125143112511234
+𧯿 12125143132511312
+𧰀 12125143125254251
+𧰁 12514311554554121
+𧰂 12514312511541541
+𧰃 125143125112512531
+𧰄 412515212521251431
+𧰅 251221125143131134
+𧰆 12514312511122112
+𧰇 12125143132151134
+𧰈 54523354531251431
+𧰉 1251431134432511234
+𧰊 1212514311225111134
+𧰋 1212514314315112234
+𧰌 343123453541251431
+𧰍 355252354125143154
+𧰎 1251431433443344553
+𧰏 1251431325112535251
+𧰐 1251431543341251431
+𧰑 25115215315351251431
+𧰒 12125143125125115341
+𧰓 1325221554121251431
+𧰔 12341234543341251431
+𧰕 12125143111353425221
+𧰖 1543252512211251431
+𧰗 125143144545442522112
+𧰘 121251431125221251112
+𧰙 2521251431554554134534
+𧰚 2512211251431134425221
+𧰛 132522415315541251431
+𧰜 2153151251431312511211
+𧰝 12145125143111353425221
+𧰞 25122112514311115425221
+𧰟 25122112514311215425221
+𧰠 121251431555253415445445
+𧰡 1212514311331234312342121
+𧰢 2512211251431431234354152
+𧰣 121251431121231254312114444
+𧰤 125143132411121324111215454
+𧰥 325151212151145252543341251431
+𧰦 51353334
+𧰧 135334
+𧰨 353334
+𧰩 135333412
+𧰪 1121353334
+𧰫 1353334354
+𧰬 1431353334
+𧰭 1353334315
+𧰮 25111353334
+𧰯 13533341354
+𧰰 13533341354
+𧰱 13533345354
+𧰲 5511353334
+𧰳 15131353334
+𧰴 13533343554
+𧰵 135334343554
+𧰶 13533342525
+𧰷 135333455414
+𧰸 135333553254
+𧰹 135333452252
+𧰺 551451353334
+𧰻 135333434154
+𧰼 352534353334
+𧰽 25251353334
+𧰾 1353334154
+𧰿 1353334121234
+𧱀 1353334312135
+𧱁 1353334251251
+𧱂 1353334125111
+𧱃 252511353334
+𧱄 2512511353334
+𧱅 1353334151534
+𧱆 1353334353511
+𧱇 1353334511112
+𧱈 551341353334
+𧱉 1353334134334
+𧱊 1353334252554
+𧱋 3251211353334
+𧱌 3443451353334
+𧱍 13533344451234
+𧱎 13533345133115
+𧱏 41431121353334
+𧱐 13533341213521
+𧱑 13533342511153
+𧱒 13533343315215
+𧱓 13533341353334
+𧱔 35411353334252
+𧱕 13533343323554
+𧱖 13533341255151
+𧱗 13533342511115
+𧱘 414313533343432
+𧱙 135333441431531
+𧱚 135333435133541
+𧱛 135333412211154
+𧱜 135333434125122
+𧱝 545454541353334
+𧱞 52131211353334
+𧱟 135333425111515
+𧱠 13533341515111
+𧱡 135333444535121
+𧱢 135333451334154
+𧱣 13533342525154
+𧱤 551353334342342
+𧱥 135333455525121
+𧱦 135334341353334
+𧱧 135334345133115
+𧱨 1353334251211534
+𧱩 1353334321251134
+𧱪 1353334111341134
+𧱫 1353334131213541
+𧱬 1353334341351122
+𧱭 1353334345235354
+𧱮 1353334354123454
+𧱯 1353334354125254
+𧱰 1353334545232154
+𧱱 1353334414313333
+𧱲 13533343115431234
+𧱳 41431353334112251
+𧱴 13533344525114134
+𧱵 13533344135112251
+𧱶 51513533341353334
+𧱷 13533343324312134
+𧱸 13533343521325111
+𧱹 13533341251124124
+𧱺 13533343213412512
+𧱻 135333434432511135
+𧱼 135333412212523434
+𧱽 135333413115342511
+𧱾 135333413533341344
+𧱿 135333441351125112
+𧲀 135333441554453112
+𧲁 551341353334511252
+𧲂 1353334431234354152
+𧲃 1353334511225114134
+𧲄 1353334344335554444
+𧲅 1353334432524312511
+𧲆 1353334251212511134
+𧲇 12145125135541353334
+𧲈 1353334131213541454
+𧲉 13533345132514143112
+𧲊 41352211544441353334
+𧲋 13533342153151353334
+𧲌 135333431431415112134
+𧲍 135333421212522145354
+𧲎 212125221453541353334
+𧲏 135333413533341353334
+𧲐 1353334251112213424134
+𧲑 1353334252324111212525
+𧲒 1353334121213434234342
+𧲓 1353334332343434342134
+𧲔 33252125112521121353334
+𧲕 13533345541425112512531
+𧲖 13533344143125111515111
+𧲗 1353334314314131213541
+𧲘 135333421531512514311534
+𧲙 135333414524444251251251
+𧲚 1353334252324111212535251
+𧲛 121241352211544441353334
+𧲜 5132514143112352521353334
+𧲝 33252125115211235411353334
+𧲞 33252125115211235411353334252
+𧲟 135333413533341123411234251214251214
+𧲠 34435335
+𧲡 344353353
+𧲢 3443533315
+𧲣 3443533124
+𧲤 34435333112
+𧲥 34435332511
+𧲦 34435331135
+𧲧 34435335215
+𧲨 34435331132
+𧲩 34435333511
+𧲪 34435334135
+𧲫 3443533354
+𧲬 344353325134
+𧲭 344353313121
+𧲮 344353331211
+𧲯 344353313344
+𧲰 344353332121
+𧲱 344353325134
+𧲲 344353333544
+𧲳 344353335345
+𧲴 344353335444
+𧲵 344353354121
+𧲶 344353331344
+𧲷 344353312344
+𧲸 344353321251
+𧲹 344353325121
+𧲺 344353314312
+𧲻 344353325134
+𧲼 344353335515
+𧲽 34435331515
+𧲾 3443533252211
+𧲿 3443533331251
+𧳀 3443533555252
+𧳁 3443533354354
+𧳂 3443533321344
+𧳃 3443533251214
+𧳄 3443533325341
+𧳅 3443533125134
+𧳆 3443533251251
+𧳇 3443533341251
+𧳈 3443533321511
+𧳉 3443533431132
+𧳊 34435333535112
+𧳋 34435334351523
+𧳌 34435333123435
+𧳍 34435332433541
+𧳎 34435331251251
+𧳏 34435331324251
+𧳐 34435333413252
+𧳑 34435331353334
+𧳒 34435332511134
+𧳓 34435334511534
+𧳔 34435331255151
+𧳕 34435331431234
+𧳖 34435333251134
+𧳗 34435331345215
+𧳘 34435333445251
+𧳙 344353351124134
+𧳚 344353341343412
+𧳛 344353341431531
+𧳜 344353335121251
+𧳝 344353321251112
+𧳞 344353332411121
+𧳟 344353313434234
+𧳠 344353325121132
+𧳡 344353332125134
+𧳢 344353325111515
+𧳣 344353312511234
+𧳤 344353332354354
+𧳥 344353334431234
+𧳦 3443533555325341
+𧳧 3443533151532511
+𧳨 3443533545231234
+𧳩 3443533551353334
+𧳪 3443533251213541
+𧳫 3443533431253511
+𧳬 3443533521325111
+𧳭 3443533344311354
+𧳮 3443533312511211
+𧳯 3443533121325114
+𧳰 3443533451251112
+𧳱 34435333252135
+𧳲 3443533151132522
+𧳳 3443533111253132
+𧳴 3443533325341132
+𧳵 34435331251124124
+𧳶 34435333211511254
+𧳷 34435332512511134
+𧳸 34435332512453541
+𧳹 34435333552335523
+𧳺 34435335345342121
+𧳻 34435333324251214
+𧳼 34435332514351523
+𧳽 34435333545325121
+𧳾 34435331341215215
+𧳿 34435333125112115
+𧴀 34435333525341535
+𧴁 34435334134522554
+𧴂 34435333541112454
+𧴃 344353312511123312
+𧴄 344353341351125112
+𧴅 344353313434343434
+𧴆 3443533215315225211
+𧴇 344353334435112134
+𧴈 344353341431251135
+𧴉 344353325114351523
+𧴊 344353325125124544
+𧴋 344353312522111234
+𧴌 3443533224314311134
+𧴍 3443533121222511134
+𧴎 3443533212121212121
+𧴏 3443533335414335414
+𧴐 3443533344134522554
+𧴑 3443533344335554444
+𧴒 3443533121451251431
+𧴓 3443533132522132522
+𧴔 3443533254312114444
+𧴕 3443533454445444544
+𧴖 34435332121131233534
+𧴗 34435334155332411121
+𧴘 34435332153151353334
+𧴙 344353353421215342121
+𧴚 34435333412524312511
+𧴛 34435333535112533112
+𧴜 34435332512512511234
+𧴝 344353344112212523434
+𧴞 344353325115435411515
+𧴟 344353312123541112454
+𧴠 34435331331234312342121
+𧴡 34435331251234532511134
+𧴢 344353325111251114525111
+𧴣 344353325125113121221113134
+𧴤 251113424
+𧴥 532511134
+𧴦 152511134
+𧴧 251113453
+𧴨 412511134
+𧴩 251113434
+𧴪 2342511134
+𧴫 2511134124
+𧴬 2511134534
+𧴭 3332511134
+𧴮 1251113454
+𧴯 2511134521
+𧴰 2511134154
+𧴱 2511134531
+𧴲 5552511134
+𧴳 11542511134
+𧴴 25112511134
+𧴵 54542511134
+𧴶 25111341512
+𧴷 25111341253
+𧴸 25111344535
+𧴹 12212511134
+𧴺 35542511134
+𧴻 41342511134
+𧴼 25111344412
+𧴽 25111341121
+𧴾 51342511134
+𧴿 12342511134
+𧵀 25111341251
+𧵁 25111342343
+𧵂 25111343511
+𧵃 25111343112
+𧵄 25111343515
+𧵅 25111345215
+𧵆 25111343312
+𧵇 25111341554
+𧵈 25111343554
+𧵉 251113431234
+𧵊 251113412211
+𧵋 251113411234
+𧵌 251113425134
+𧵍 354552511134
+𧵎 122512511134
+𧵏 354242511134
+𧵐 251113425154
+𧵑 251113412251
+𧵒 445122511134
+𧵓 251113453251
+𧵔 132512511134
+𧵕 455342511134
+𧵖 251113411234
+𧵗 251212511134
+𧵘 251113425211
+𧵙 251113425134
+𧵚 354542511134
+𧵛 251113412512
+𧵜 125552511134
+𧵝 251113415534
+𧵞 251352511134
+𧵟 251113433544
+𧵠 522522511134
+𧵡 251113435351
+𧵢 251113435515
+𧵣 2511134352511
+𧵤 2511134445124
+𧵥 2511134351355
+𧵦 2511134243135
+𧵧 2511134341354
+𧵨 2511134445531
+𧵩 1252342511134
+𧵪 2511134153534
+𧵫 2511134225151
+𧵬 2511134333534
+𧵭 1121122511134
+𧵮 2511134345235
+𧵯 2511152511134
+𧵰 3221212511134
+𧵱 5454542511134
+𧵲 1354152511134
+𧵳 2511134112251
+𧵴 2511134445112
+𧵵 2511134431234
+𧵶 2511134111534
+𧵷 2511134111354
+𧵸 1115342511134
+𧵹 1511342511134
+𧵺 2511134311234
+𧵻 2511134112154
+𧵼 1541212511134
+𧵽 2534342511134
+𧵾 251113445534
+𧵿 4451242511134
+𧶀 5425111341154
+𧶁 5111212511134
+𧶂 2511134134534
+𧶃 5452212511134
+𧶄 2511134355112
+𧶅 25111343155414
+𧶆 25111344134251
+𧶇 25111341213312
+𧶈 25111342433541
+𧶉 44511352511134
+𧶊 25125111341154
+𧶋 25111341221115
+𧶌 12451342511134
+𧶍 25111341554534
+𧶎 44512152511134
+𧶏 13242512511134
+𧶐 12343412511134
+𧶑 25252132511134
+𧶒 2511251113454
+𧶓 31341212511134
+𧶔 25111342511121
+𧶕 25111343121534
+𧶖 25111343413252
+𧶗 25111343415251
+𧶘 13434342511134
+𧶙 21115352511134
+𧶚 12121212511134
+𧶛 251113413434234
+𧶜 414345352511134
+𧶝 12152512511134
+𧶞 251113425312341
+𧶟 251113434112251
+𧶠 121253512511134
+𧶡 445454342511134
+𧶢 543345152511134
+𧶣 321121542511134
+𧶤 153415342511134
+𧶥 251113411321132
+𧶦 433434342511134
+𧶧 251113425112511
+𧶨 251113425114444
+𧶩 251113412211132
+𧶪 125234342511134
+𧶫 251113411213534
+𧶬 251113453125111
+𧶭 251113413412132
+𧶮 251113425122511
+𧶯 352511134122134
+𧶰 25111341543541
+𧶱 2511134332121124
+𧶲 2511134252132522
+𧶳 2511134521343541
+𧶴 2511134413122154
+𧶵 2511134312321511
+𧶶 2522125111343354
+𧶷 1212111212511134
+𧶸 2511134212511134
+𧶹 2511134251113435
+𧶺 2511134412514512
+𧶻 51512512511134
+𧶼 4451221342511134
+𧶽 2511134251113533
+𧶾 2511134431121134
+𧶿 2511134122111355
+𧷀 1215134342511134
+𧷁 2145134342511134
+𧷂 2511134312344334
+𧷃 2511134321113554
+𧷄 1251112542511134
+𧷅 2554251212511134
+𧷆 2511134415331525
+𧷇 5112143342511134
+𧷈 321511212511134
+𧷉 2511134453513443
+𧷊 2511134313434252
+𧷋 1252215312511134
+𧷌 25111341211123454
+𧷍 43123431342511134
+𧷎 21451251113454121
+𧷏 12135252212511134
+𧷐 3453121222511134
+𧷑 25121435152511134
+𧷒 25111341225111134
+𧷓 52252252212511134
+𧷔 41432533542511134
+𧷕 125123435342511134
+𧷖 13434234532511134
+𧷗 12125352512511134
+𧷘 25111344513541541
+𧷙 12512535542511134
+𧷚 25111343434251531
+𧷛 2511134325113554
+𧷜 25111343554541541
+𧷝 25135342512511134
+𧷞 414345352512511134
+𧷟 355344512332511134
+𧷠 215315353332511134
+𧷡 251113425112512531
+𧷢 251113413125125534
+𧷣 251113455525111234
+𧷤 212512511212511134
+𧷥 251212135542511134
+𧷦 251113444545434252
+𧷧 212524134542511134
+𧷨 121354534532511134
+𧷩 113112251212511134
+𧷪 351355251212511134
+𧷫 413431121342511134
+𧷬 251113443113425111
+𧷭 432511134412514512
+𧷮 414325352512511134
+𧷯 251251113441431251
+𧷰 251113425112511134
+𧷱 121251113412541234
+𧷲 251113412152252534
+𧷳 251113425121554234
+𧷴 32255252512511134
+𧷵 522524534342511134
+𧷶 251113443112112251
+𧷷 522125342512511134
+𧷸 25111341222511134
+𧷹 25111343121251454
+𧷺 251251113434125122
+𧷻 251113412212511134
+𧷼 2511134433443344334
+𧷽 3354144311342511134
+𧷾 2511134545232535251
+𧷿 25111341213251152
+𧸀 2511134132522132522
+𧸁 432523431342511134
+𧸂 2511134121221113134
+𧸃 2511134251212511134
+𧸄 2511134121413534534
+𧸅 2511134224314325234
+𧸆 5225211234542511134
+𧸇 1213525352512511134
+𧸈 4543444512332511134
+𧸉 2511134414312511534
+𧸊 2511134122152511134
+𧸋 4313211511342511134
+𧸌 2511134414312511211
+𧸍 2511134431234354152
+𧸎 2511134445342522112
+𧸏 2511134252212511134
+𧸐 2511134111251113454
+𧸑 4325243125112511134
+𧸒 3113412514312511134
+𧸓 251113444112132511
+𧸔 2511134413411212154
+𧸕 2511134224312523434
+𧸖 25111344134315112234
+𧸗 25111342121131233534
+𧸘 25111343412512513434
+𧸙 2511134431353334454
+𧸚 25111342512121354251
+𧸛 41332324111212511134
+𧸜 25111344143135112234
+𧸝 12125221251113443112
+𧸞 52252415331342511134
+𧸟 52252415331342511134
+𧸠 41341454345342511134
+𧸡 25111344311213121534
+𧸢 25111342243143111234
+𧸣 25111342343251125214
+𧸤 25111343412524312511
+𧸥 25111342121343425111
+𧸦 251113412512531125221
+𧸧 32111525111342511134
+𧸨 251113432511445354153
+𧸩 251113421531343425111
+𧸪 251113413251121134121
+𧸫 251251113441352513534
+𧸬 312543121144442511134
+𧸭 251113454154132411121
+𧸮 251113433225211353134
+𧸯 251112134251212511134
+𧸰 251113412511121555121
+𧸱 2511134131212251125214
+𧸲 2511134331233122511134
+𧸳 2511134413251121135121
+𧸴 2511134445134432511234
+𧸵 2511134251113444535121
+𧸶 3411243115551212511134
+𧸷 1212522125111343543524
+𧸸 2511134351315354111251
+𧸹 4453215113544442511134
+𧸺 2511134445343251113515
+𧸻 1211134121115433353544
+𧸼 1211134413122112512134
+𧸽 2511134251212511134454
+𧸾 21531535112121542511134
+𧸿 2511134445321511354444
+𧹀 25111341225112321155212
+𧹁 11212154215315352511134
+𧹂 21531535215315352511134
+𧹃 12125111343541212511134
+𧹄 41431251112343512511134
+𧹅 12112112113534532511134
+𧹆 44511234445112342511134
+𧹇 25111343211511253412554
+𧹈 251113425111342511134134
+𧹉 414312511123412112511134
+𧹊 251113434125125125125122
+𧹋 321542511134344335554444
+𧹌 1214512514314135342511134
+𧹍 2431353121353121352511134
+𧹎 25111341213525352512511134
+𧹏 25111343121353121352511134
+𧹐 25111342522155444432411121
+𧹑 25344354
+𧹒 252212534
+𧹓 25342511121
+𧹔 253412111534
+𧹕 253451312251
+𧹖 253425122134
+𧹗 253425125124544
+𧹘 113234
+𧹙 121323412
+𧹚 121213234
+𧹛 12132341254
+𧹜 12132343554
+𧹝 121323435444
+𧹞 121323453254
+𧹟 121323444535
+𧹠 1213234512544
+𧹡 1213234132511
+𧹢 1213234251341
+𧹣 12132343415251
+𧹤 12132342512134
+𧹥 12132341234121
+𧹦 12132342511135
+𧹧 121323451311511
+𧹨 122125111213234
+𧹩 121323412511234
+𧹪 121323434125122
+𧹫 123412341213234
+𧹬 1213234125351121
+𧹭 1213234125125121
+𧹮 1213234321113554
+𧹯 1213234125431234
+𧹰 1213234312342511
+𧹱 1213234122111345
+𧹲 12145112132343554
+𧹳 12251112341213234
+𧹴 12132344155425121
+𧹵 12132343115431234
+𧹶 121323425121554234
+𧹷 121521335541213234
+𧹸 1213234132522132522
+𧹹 1213234414312511534
+𧹺 1213234311531153115
+𧹻 121323412112132511
+𧹼 12132341213251152
+𧹽 121323425115545544444
+𧹾 353113454521341213234
+𧹿 121323432153515352511
+𧺀 1213234445343123425121
+𧺁 4453431234251211213234
+𧺂 1213251125111351213234
+𧺃 1213234121325112511135
+𧺄 43341213234543341251431
+𧺅 51112125111252211213234
+𧺆 31342134
+𧺇 12121345
+𧺈 121213422
+𧺉 121213454
+𧺊 121213415
+𧺋 121213435
+𧺌 121213434
+𧺍 121213435
+𧺎 121213435
+𧺏 1212134525
+𧺐 1212134521
+𧺑 1212134121
+𧺒 1212134124
+𧺓 1212134354
+𧺔 1212134121
+𧺕 1212134354
+𧺖 1212134521
+𧺗 1212134112
+𧺘 1212134124
+𧺙 1212134521
+𧺚 1212134251
+𧺛 1212134312
+𧺜 1212134531
+𧺝 12121342511
+𧺞 12121343115
+𧺟 12121344535
+𧺠 12121342121
+𧺡 12121341252
+𧺢 12121343554
+𧺣 12121343434
+𧺤 12121343535
+𧺥 12121345452
+𧺦 12121341554
+𧺧 12121341221
+𧺨 12121344544
+𧺩 12121344334
+𧺪 12121341215
+𧺫 12121345134
+𧺬 12121342534
+𧺭 12121343454
+𧺮 12121343553
+𧺯 12121344412
+𧺰 12121341354
+𧺱 12121341534
+𧺲 12121341515
+𧺳 12121341551
+𧺴 12121343112
+𧺵 12121342534
+𧺶 121213412354
+𧺷 121213412154
+𧺸 121213425251
+𧺹 12121341515
+𧺺 121213413544
+𧺻 121213441554
+𧺼 1212134212115
+𧺽 121213425151
+𧺾 121213443112
+𧺿 121213412215
+𧻀 121213413112
+𧻁 121213432121
+𧻂 1134212115534
+𧻃 121213425111
+𧻄 121213441121
+𧻅 532511212134
+𧻆 121213435333
+𧻇 121213411234
+𧻈 121213414312
+𧻉 121213425121
+𧻊 121213431121
+𧻋 121213434154
+𧻌 121213435354
+𧻍 121213425134
+𧻎 121213451515
+𧻏 121213435424
+𧻐 1212134454124
+𧻑 1212134151534
+𧻒 1212134535353
+𧻓 1212134431132
+𧻔 1212134111215
+𧻕 1212134125234
+𧻖 1212134335414
+𧻗 1212134131534
+𧻘 1212134111253
+𧻙 1212134132511
+𧻚 1212134125111
+𧻛 1212134352511
+𧻜 1212134351355
+𧻝 1212134311254
+𧻞 1212134531234
+𧻟 1212134441112
+𧻠 1212134511534
+𧻡 1212134513121
+𧻢 1212134252511
+𧻣 1212134253434
+𧻤 1212134341121
+𧻥 1212134332112
+𧻦 1212134352534
+𧻧 1212134413112
+𧻨 1212134413434
+𧻩 1212134121335
+𧻪 1212134113534
+𧻫 1212134511511
+𧻬 11342134354354
+𧻭 1212134251153
+𧻮 1212134325354
+𧻯 12121344415134
+𧻰 12121343121251
+𧻱 12121341241344
+𧻲 12121342511211
+𧻳 12121341324251
+𧻴 12121344511534
+𧻵 12121341343434
+𧻶 12121343413252
+𧻷 12121341251124
+𧻸 12121341213312
+𧻹 12121345425112
+𧻺 12121343531121
+𧻻 25121341212134
+𧻼 12121342511121
+𧻽 12121343251214
+𧻾 12121342511134
+𧻿 12121341251431
+𧼀 12121342511134
+𧼁 12121344134251
+𧼂 12121341212134
+𧼃 12121343534334
+𧼄 12121343231211
+𧼅 12121343251113
+𧼆 12121343554234
+𧼇 12121343524134
+𧼈 12121341221115
+𧼉 12121341255151
+𧼊 12121342511135
+𧼋 12121343443533
+𧼌 34435331212134
+𧼍 12121345114334
+𧼎 121213413425115
+𧼏 121213451541554
+𧼐 121213425312341
+𧼑 121213412511534
+𧼒 121213412512554
+𧼓 121213412511234
+𧼔 121213412135354
+𧼕 121213412523422
+𧼖 123412341212134
+𧼗 121213425251532
+𧼘 121213413412512
+𧼙 121213413533434
+𧼚 121213443113455
+𧼛 121213413434234
+𧼜 121213451334354
+𧼝 12121342121233
+𧼞 121213413431522
+𧼟 121213452132511
+𧼠 121213432511312
+𧼡 121213434133541
+𧼢 121213435124134
+𧼣 121213432511252
+𧼤 121213415412122
+𧼥 121213421531534
+𧼦 121213443113253
+𧼧 431213435251354
+𧼨 1212134251135345
+𧼩 1212134312511211
+𧼪 1212134111253134
+𧼫 1212134251213541
+𧼬 1212134345235354
+𧼭 1212134445343454
+𧼮 1212134251113533
+𧼯 1212134341351122
+𧼰 1212134112321511
+𧼱 1212134312511354
+𧼲 1212134513431132
+𧼳 1212134413431523
+𧼴 1212134252132522
+𧼵 1212134351331134
+𧼶 1212134313434252
+𧼷 1212134325112534
+𧼸 1212134132522111
+𧼹 1212134251153251
+𧼺 1212134251141431
+𧼻 1212134251251121
+𧼼 1212134121213251
+𧼽 1212134251225251
+𧼾 1212134355114544
+𧼿 1212134554444354
+𧽀 1212134251111344
+𧽁 1212134111253132
+𧽂 1212134312342511
+𧽃 1212134344325211
+𧽄 1212134353511222
+𧽅 1212134122151234
+𧽆 1212134132511211
+𧽇 2511531212134515
+𧽈 1212134515251153
+𧽉 12121342511445531
+𧽊 12121342521251431
+𧽋 12121343251154444
+𧽌 12121342512453541
+𧽍 12121341225111134
+𧽎 12121343544311252
+𧽏 12121343211511254
+𧽐 12121342153154134
+𧽑 12121344134131134
+𧽒 12121343251111344
+𧽓 12121341212513534
+𧽔 12121344451325154
+𧽕 12121341113431234
+𧽖 12121343545325121
+𧽗 121213445115452
+𧽘 12121341311534124
+𧽙 12121341211254444
+𧽚 12121341212513534
+𧽛 12121342512511134
+𧽜 12121343415113251
+𧽝 12121341122125211
+𧽞 121213412121154444
+𧽟 121213423432411121
+𧽠 121213425232411121
+𧽡 121213412512554121
+𧽢 121213412511214124
+𧽣 121213441431251112
+𧽤 121213412522111234
+𧽥 121213441352211515
+𧽦 121213441432512251
+𧽧 121213425244511234
+𧽨 121213434432511135
+𧽩 521335441241212134
+𧽪 121213432511154444
+𧽫 121213425112511534
+𧽬 121213412121251124
+𧽭 121213412132411121
+𧽮 121213412511121534
+𧽯 121213412511123312
+𧽰 121213425112522115
+𧽱 121213425112522153
+𧽲 121213425121554234
+𧽳 121213431132411121
+𧽴 121213441341431251
+𧽵 121213433234342134
+𧽶 1212134344335554444
+𧽷 12121345112321155212
+𧽸 1212134134315233534
+𧽹 1212134121235113511
+𧽺 1212134133123431234
+𧽻 1212134545232535251
+𧽼 1212134125221251112
+𧽽 1212134134432511234
+𧽾 121213412213541354
+𧽿 1212134414312511211
+𧾀 1212134343434342511
+𧾁 1212134313431112111
+𧾂 1212134122511121534
+𧾃 1212134431224312511
+𧾄 121213432411121454
+𧾅 1212134325111331521
+𧾆 121213412225113511
+𧾇 1212134125221134454
+𧾈 1212134251125221153
+𧾉 1212134251141343412
+𧾊 1212134543341251431
+𧾋 1212134545454342444
+𧾌 1212134515515122134
+𧾍 12121344125251125111
+𧾎 12121342522112513534
+𧾏 12121343412512513434
+𧾐 12121343251141533134
+𧾑 12121345132514143112
+𧾒 12121341135342511134
+𧾓 12121343134211121111
+𧾔 12121341312514544534
+𧾕 12121342511132411121
+𧾖 12121342521211254444
+𧾗 12121341212251125214
+𧾘 12121343322521353134
+𧾙 121213441432533543211
+𧾚 12121343211152511134
+𧾛 121213421213241112154
+𧾜 121213412121341212134
+𧾝 121213421451343425154
+𧾞 121213413412513121534
+𧾟 121213431431432411121
+𧾠 121213444535341123454
+𧾡 1212134413251121135121
+𧾢 1212134234324111211534
+𧾣 121213435253425111354
+𧾤 1212134132511454544354
+𧾥 1212134121252212511134
+𧾦 1212134332521251152112
+𧾧 1212134215315251214544
+𧾨 12121344453121252214544
+𧾩 12121342145134342511154
+𧾪 12121344143135411515111
+𧾫 12121343251114453532525
+𧾬 12121341234123435412154
+𧾭 313421213134212131342121
+𧾮 121213414524134251251251
+𧾯 121213412123525121444422
+𧾰 121213454154125121122134
+𧾱 1212134251112511132411121
+𧾲 121213412212512531425221
+𧾳 1212134111221112521251431
+𧾴 1212134321132534151114334
+𧾵 121213425111251113241112154
+𧾶 1212134325121432512143251214
+𧾷 2512121
+𧾸 12512134
+𧾹 25121215
+𧾺 342512134
+𧾻 251212152
+𧾼 251212153
+𧾽 251212112
+𧾾 251212135
+𧾿 251212152
+𧿀 251213422
+𧿁 2512121135
+𧿂 2512121112
+𧿃 5132512134
+𧿄 2512121132
+𧿅 2512121512
+𧿆 2512121515
+𧿇 2512121525
+𧿈 2512121413
+𧿉 2512121115
+𧿊 2512121135
+𧿋 2512121152
+𧿌 2512121315
+𧿍 3412512134
+𧿎 2512121512
+𧿏 2512121554
+𧿐 2512121312
+𧿑 2512121154
+𧿒 25121214535
+𧿓 25121211524
+𧿔 25121215211
+𧿕 25121213215
+𧿖 25121213452
+𧿗 353342512134
+𧿘 25121213132
+𧿙 25121211135
+𧿚 25121213553
+𧿛 25121213434
+𧿜 25121213541
+𧿝 25121213515
+𧿞 25121213534
+𧿟 25121211551
+𧿠 25121211554
+𧿡 25121211344
+𧿢 25121213553
+𧿣 25121213112
+𧿤 25121211324
+𧿥 25121211535
+𧿦 25121213135
+𧿧 25121213312
+𧿨 25121213354
+𧿩 25121213432
+𧿪 25121214315
+𧿫 25121214412
+𧿬 25121213525
+𧿭 25121212511
+𧿮 25121344334
+𧿯 25121215152
+𧿰 25121211221
+𧿱 25121211221
+𧿲 25121213523
+𧿳 251212151532
+𧿴 251212111234
+𧿵 251212125112
+𧿶 251212131252
+𧿷 251212111214
+𧿸 251212151354
+𧿹 251212155414
+𧿺 251212152252
+𧿻 251212151335
+𧿼 251212133544
+𧿽 251212112515
+𧿾 251212112341
+𧿿 2121152512134
+𨀀 251212134234
+𨀁 251212113534
+𨀂 132512512134
+𨀃 251212154121
+𨀄 25121211554
+𨀅 251212125211
+𨀆 251212151254
+𨀇 251212151534
+𨀈 251212121135
+𨀉 251212144512
+𨀊 251212153521
+𨀋 251212132121
+𨀌 251212125153
+𨀍 251212135112
+𨀎 251212141431
+𨀏 251212125111
+𨀐 251212135444
+𨀑 354242512134
+𨀒 251212113252
+𨀓 251212135515
+𨀔 251212125121
+𨀕 2512121111215
+𨀖 2512121415334
+𨀗 2512121134152
+𨀘 2512121431112
+𨀙 2512121121251
+𨀚 2512121211234
+𨀛 2512121132521
+𨀜 2512121251251
+𨀝 2512121545454
+𨀞 2512121511112
+𨀟 2512121413315
+𨀠 2512121413112
+𨀡 2512121134334
+𨀢 2512121252211
+𨀣 2512121342121
+𨀤 2512121311234
+𨀥 2512121113534
+𨀦 2512121311253
+𨀧 2512121525341
+𨀨 2512121555354
+𨀩 2512121251225
+𨀪 2512121251221
+𨀫 2512121314135
+𨀬 2512121132121
+𨀭 2512121331235
+𨀮 25121212513541
+𨀯 251212112152
+𨀰 2512121412534
+𨀱 2512121111354
+𨀲 2512212512134
+𨀳 2512121321534
+𨀴 2512121352511
+𨀵 2512121413121
+𨀶 4132342512134
+𨀷 2512121431234
+𨀸 2512121445315
+𨀹 2512121441121
+𨀺 2512121135422
+𨀻 2512121113534
+𨀼 2512121121335
+𨀽 2512121251252
+𨀾 2512121441531
+𨀿 2512121125441
+𨁀 32231342512121
+𨁁 25121213152134
+𨁂 25121211343434
+𨁃 25121214351523
+𨁄 25121212511112
+𨁅 25121214143112
+𨁆 25121213212154
+𨁇 25121211134251
+𨁈 25121211251134
+𨁉 25121212512341
+𨁊 25121212523415
+𨁋 25121211251431
+𨁌 2512121531152
+𨁍 25121212511135
+𨁎 25121212513121
+𨁏 25121211251124
+𨁐 2512121154132
+𨁑 25121213525135
+𨁒 25121213121251
+𨁓 25121213521115
+𨁔 25121213231211
+𨁕 25121214134424
+𨁖 25121213434251
+𨁗 2512121312154
+𨁘 12121212512134
+𨁙 251212135252135
+𨁚 25121214451135
+𨁛 12413442512134
+𨁜 25121211211134
+𨁝 25121211245521
+𨁞 25121212511115
+𨁟 25121213121534
+𨁠 25121213132121
+𨁡 25121213443531
+𨁢 34312342512134
+𨁣 25121213544334
+𨁤 25121214131234
+𨁥 12341212512134
+𨁦 25121211121132
+𨁧 25121212522534
+𨁨 25121213531121
+𨁩 25121211215215
+𨁪 25121211253511
+𨁫 25121212511211
+𨁬 25121213225112
+𨁭 25121215312343
+𨁮 25121214134251
+𨁯 25121211213234
+𨁰 25121212513534
+𨁱 25121215133115
+𨁲 25121212515215
+𨁳 25121215154153
+𨁴 25121214252511
+𨁵 251212141332124
+𨁶 251212112155121
+𨁷 251212112251111
+𨁸 251212135131344
+𨁹 251212143344334
+𨁺 251212125111134
+𨁻 251212141541234
+𨁼 251212113412132
+𨁽 251212125111124
+𨁾 251212121212134
+𨁿 251212113533434
+𨂀 25121215225111
+𨂁 251212113425115
+𨂂 251212135414334
+𨂃 251212135113511
+𨂄 251212132121124
+𨂅 25121214325234
+𨂆 251212135311252
+𨂇 251212135132121
+𨂈 251212125111121
+𨂉 251212113121121
+𨂊 251212135121251
+𨂋 251212141343211
+𨂌 251212144512134
+𨂍 251212113443115
+𨂎 251212114524134
+𨂏 251212112211234
+𨂐 251212113434234
+𨂑 251212121531534
+𨂒 251212141323544
+𨂓 251212152115211
+𨂔 251212141542511
+𨂕 251212112341234
+𨂖 251212144141431
+𨂗 251212152133544
+𨂘 251212134433121
+𨂙 251212141251234
+𨂚 251212143122134
+𨂛 251212113443112
+𨂜 251212121531535
+𨂝 431224312512134
+𨂞 251213443122431
+𨂟 251212131312135
+𨂠 2512121132511134
+𨂡 2512121111341134
+𨂢 51154522512134
+𨂣 5452331342512134
+𨂤 25121211541213134
+𨂥 2512121445354251
+𨂦 2512121551353334
+𨂧 2512121121431112
+𨂨 2512121134431112
+𨂩 2512121543343554
+𨂪 2512121414313333
+𨂫 2512121413431523
+𨂬 1245251212512134
+𨂭 2512121112155414
+𨂮 3412524312512134
+𨂯 2512121321251134
+𨂰 2512121111253134
+𨂱 2512121451251112
+𨂲 2512121513431132
+𨂳 2512121515515134
+𨂴 2512121353344544
+𨂵 2512121312321511
+𨂶 2512121215315252
+𨂷 2512121132511211
+𨂸 2512121325131134
+𨂹 2512121532512153
+𨂺 2512121412234515
+𨂻 2512121344322511
+𨂼 2512121344353334
+𨂽 2512121132512534
+𨂾 2512121122543112
+𨂿 2512121132412121
+𨃀 2512121125431234
+𨃁 2512121122111123
+𨃂 2512121131251534
+𨃃 2512121251135345
+𨃄 2512121251211534
+𨃅 2512121311311112
+𨃆 2512121351133544
+𨃇 2512121431121531
+𨃈 2512121122134515
+𨃉 2512121332121124
+𨃊 2512121212514444
+𨃋 251212112241252
+𨃌 2512121121121124
+𨃍 2512121445341344
+𨃎 2512121225425221
+𨃏 2512121325114554
+𨃐 251212112254251
+𨃑 2512121121341534
+𨃒 2512121532511253
+𨃓 2512121122341234
+𨃔 25121213251111234
+𨃕 25121214155425121
+𨃖 21512121122134115
+𨃗 35114311342512134
+𨃘 25121213552335523
+𨃙 25121211252211234
+𨃚 2512121122341251
+𨃛 2512121524143112
+𨃜 25121213223541234
+𨃝 25121213321212134
+𨃞 33541435542512134
+𨃟 25121213354143554
+𨃠 25121214135112251
+𨃡 25121213251114544
+𨃢 53112512342512134
+𨃣 2512121544251214
+𨃤 25121214125125251
+𨃥 25121213541521234
+𨃦 2512121313412132
+𨃧 25121211325125251
+𨃨 51312215342512134
+𨃩 25121214513541541
+𨃪 25121214311343112
+𨃫 32154121222512134
+𨃬 2512121325151454
+𨃭 25121211211234534
+𨃮 25121211354221234
+𨃯 25121212511121124
+𨃰 25121214315112234
+𨃱 41431414312512134
+𨃲 51112125112512134
+𨃳 25121215425113535
+𨃴 2512121255452511
+𨃵 25121213511431134
+𨃶 25121211234354251
+𨃷 2512121452425135
+𨃸 25121214143125115
+𨃹 25121214414511534
+𨃺 25121215544442534
+𨃻 25121211354224444
+𨃼 2512121452431211
+𨃽 25121211311534124
+𨃾 31234352342512134
+𨃿 25121215155151132
+𨄀 25121214135112134
+𨄁 25121211221114535
+𨄂 251212145115452
+𨄃 25121211353334454
+𨄄 25121214122344544
+𨄅 251212112512512515
+𨄆 251212131251113533
+𨄇 251212143113424134
+𨄈 251212144153441234
+𨄉 251212141431331121
+𨄊 251212135445411234
+𨄋 251212151312524444
+𨄌 251212154154132511
+𨄍 251212125232411121
+𨄎 251212112211134121
+𨄏 251212112522111234
+𨄐 2512121212135554234
+𨄑 251212135125125121
+𨄒 251212144512211154
+𨄓 251212155525111234
+𨄔 251212112511254124
+𨄕 251212141533131134
+𨄖 251212112131234531
+𨄗 251212141351124134
+𨄘 251212113443121251
+𨄙 251212132511154444
+𨄚 521335441242512134
+𨄛 251212154543424134
+𨄜 251212125112512531
+𨄝 54523354532512134
+𨄞 25121211251234454
+𨄟 121324111212512134
+𨄠 251212134312344544
+𨄡 412515213542512134
+𨄢 251212141554453112
+𨄣 25121211343434354
+𨄤 251212123432411121
+𨄥 251212121531534312
+𨄦 332343421342512134
+𨄧 121341213542512134
+𨄨 251212112141533134
+𨄩 251212112512512122
+𨄪 251212133215315252
+𨄫 251212134133541422
+𨄬 413123412342512134
+𨄭 251212141352215454
+𨄮 251212141554413412
+𨄯 513112341242512134
+𨄰 251212151512111534
+𨄱 251212125121554234
+𨄲 251212125125124544
+𨄳 25121211221251124
+𨄴 251212112143112354
+𨄵 251212144221251112
+𨄶 251212143112145534
+𨄷 251212113434343434
+𨄸 251212125111213312
+𨄹 25121213121251454
+𨄺 25121211532411121
+𨄻 251212144512512134
+𨄼 251212131234354354
+𨄽 25121215235321511
+𨄾 251212144513412512
+𨄿 251212155444435444
+𨅀 251212143123441431
+𨅁 251212131431441431
+𨅂 251212113242511135
+𨅃 251212125244511234
+𨅄 251212112511123534
+𨅅 251212121211211254
+𨅆 251212113443121121
+𨅇 251413434122512134
+𨅈 25121211221541234
+𨅉 25121214511543511
+𨅊 2512121415425113134
+𨅋 25121215112321155212
+𨅌 2512121344335554444
+𨅍 2512121511225112511
+𨅎 2512121251112211154
+𨅏 2512121252353251214
+𨅐 3112222144442512134
+𨅑 2512121333132511134
+𨅒 2512121121251431124
+𨅓 251212113412132511
+𨅔 2512121153515352511
+𨅕 2512121113411342511
+𨅖 2512121122125113134
+𨅗 2512121314314511112
+𨅘 1212514313332512134
+𨅙 2512121414345252251
+𨅚 121415331342512134
+𨅛 2512121513325125214
+𨅜 251212125121122134
+𨅝 2512121243452511523
+𨅞 2512121314314341251
+𨅟 2512121125221114334
+𨅠 3411243135342512134
+𨅡 2512121515121121251
+𨅢 2512121122141533134
+𨅣 2512121121121121121
+𨅤 2512121122111342511
+𨅥 2512121211121114544
+𨅦 2512121343434342511
+𨅧 2512121351334121251
+𨅨 2512121243452511234
+𨅩 2512121312135412511
+𨅪 1523152325121341523
+𨅫 2512121112135412154
+𨅬 2512121425125431234
+𨅭 2512121125221251112
+𨅮 25121211213251152
+𨅯 2512121121211212112
+𨅰 2512121123452251541
+𨅱 251212112215252511
+𨅲 2512121132522132522
+𨅳 2512121313525125122
+𨅴 3431234251212512134
+𨅵 2512121511511541541
+𨅶 2512121545454342444
+𨅷 251212152431353334
+𨅸 2512121314314121124
+𨅹 2512121122511123511
+𨅺 2512121121221113134
+𨅻 2512121445343121251
+𨅼 251212112213434234
+𨅽 2512121511225111234
+𨅾 2512121123412341234
+𨅿 251212112121341534
+𨆀 2512121511225113511
+𨆁 25121214125251125111
+𨆂 25121213134211121111
+𨆃 25121211234123411234
+𨆄 25121211234123452134
+𨆅 25121212522112143112
+𨆆 25121211254132511134
+𨆇 25121215112251125112
+𨆈 25121212522112513534
+𨆉 25121212434525125121
+𨆊 12125143112542512134
+𨆋 25121214311213121534
+𨆌 25121214334132511134
+𨆍 25121211212251135345
+𨆎 25121212511134113534
+𨆏 2512121431353334454
+𨆐 25121214311342512134
+𨆑 25121213143142512134
+𨆒 25121214413241112112
+𨆓 2512121344134522554
+𨆔 2512121251225251454
+𨆕 12254311213442512134
+𨆖 25121211452413434454
+𨆗 25121213253431234115
+𨆘 25121213412512513434
+𨆙 25121211121112145434
+𨆚 25121211341251541541
+𨆛 2512121331225111454
+𨆜 43341325111342512134
+𨆝 25121213412524312511
+𨆞 25121212512211311534
+𨆟 2512121122312511211
+𨆠 2512121122543341134
+𨆡 2512121122122151234
+𨆢 25121211452444425121
+𨆣 2512121122251125214
+𨆤 25121215113251431112
+𨆥 12125125111342512134
+𨆦 25121213143142511134
+𨆧 12511121541212512134
+𨆨 25121212512125111345
+𨆩 2512121451325122454
+𨆪 125111215551212512134
+𨆫 251212112452512152134
+𨆬 251213425121342512134
+𨆭 251212132511445344153
+𨆮 251212111123412212511
+𨆯 251212132224314311134
+𨆰 251212125115545544444
+𨆱 251212141121125444435
+𨆲 251212134431215114544
+𨆳 25121211212524143112
+𨆴 251212143344334354152
+𨆵 251212153254132511134
+𨆶 25121211224411251124
+𨆷 251212122431431121124
+𨆸 251212113325112344544
+𨆹 251212141431131251234
+𨆺 251212144112522111234
+𨆻 441122125234342512134
+𨆼 251212113121251431124
+𨆽 251212141312341234354
+𨆾 251212144535445411234
+𨆿 251212151122511354251
+𨇀 25121212512125151454
+𨇁 251212141312212512134
+𨇂 2512121332415425113134
+𨇃 2512121113411342511134
+𨇄 2512121132511454544354
+𨇅 2512121251112213424134
+𨇆 251212113122251125214
+𨇇 2512121122144442511134
+𨇈 2512121124525121542134
+𨇉 251212125213443251234
+𨇊 2512121332313425125251
+𨇋 2512121323434343413511
+𨇌 1234132112345342512134
+𨇍 2512121113411341251112
+𨇎 2512121132511211341121
+𨇏 2512121323434343413121
+𨇐 3354141325111342512134
+𨇑 2512121252215425113535
+𨇒 2512121132511325113251
+𨇓 3234125125134342512134
+𨇔 2512121554554155455452
+𨇕 2512121332313425125122
+𨇖 25121212153152512125221
+𨇗 25121211331234312342121
+𨇘 41431251115151112512134
+𨇙 25121213325212511252112
+𨇚 2512121321511342511134
+𨇛 2512134121325112511135
+𨇜 1213251125111352512134
+𨇝 25121215112251135321511
+𨇞 2512121134343435412154
+𨇟 25121211221251211354444
+𨇠 25121211325112114444121
+𨇡 25121215112251125112511
+𨇢 25121214131234123413251
+𨇣 25121211251253142511135
+𨇤 251212135251214444431112
+𨇥 251212144511221342512134
+𨇦 251212134341211121111534
+𨇧 251212151122511312321511
+𨇨 25121211223251514143112
+𨇩 251212135251153535251354
+𨇪 251212132411121132511134
+𨇫 2512121321125125151113455
+𨇬 251212125111341124313534
+𨇭 413121431125115342512134
+𨇮 2512121511225114315233534
+𨇯 2512121324111213241112154
+𨇰 2512121554554155455453312
+𨇱 2512121325111445344153454
+𨇲 2512121511225113443321511
+𨇳 2512121134252343434341354
+𨇴 2512121321132534151113455
+𨇵 2512121121121121135354354
+𨇶 2512121445343251141533134
+𨇷 251212131234531325113554
+𨇸 2512121314314153515352511
+𨇹 251212141553324111211554
+𨇺 251212134432522151154124
+𨇻 25121214131234123421112111
+𨇼 25121214111251554444554444
+𨇽 25121212522155444432411121
+𨇾 25121214111251433443344334
+𨇿 2512121122252554444251214
+𨈀 25121211225111134132511134
+𨈁 251212131431411123412212511
+𨈂 251212132411121324111215454
+𨈃 251212112251111341225111134
+𨈄 2512121121212134341343452534
+𨈅 251212112234125125125125122
+𨈆 251212112251122511125431234
+𨈇 2512121125125314252212511135
+𨈈 25121212512125121251214525111
+𨈉 251212121211325111212151534354
+𨈊 25121214111251554444554444515
+𨈋 251212131431434125125125125122
+𨈌 251212141112515544445544444544
+𨈍 2512121251113425111343241112154
+𨈎 251212141112515544455444432511154444
+𨈏 32541
+𨈐 32513
+𨈑 325111
+𨈒 325111324
+𨈓 3251113234
+𨈔 3251113354
+𨈕 325111352
+𨈖 3251113251
+𨈗 2513251113
+𨈘 32511132343
+𨈙 32511132154
+𨈚 32511131535
+𨈛 32511131254
+𨈜 32511132511
+𨈝 32511133541
+𨈞 32511135254
+𨈟 32511131534
+𨈠 32511133434
+𨈡 32511133134
+𨈢 32511134135
+𨈣 32511131354
+𨈤 32511131135
+𨈥 32511133115
+𨈦 32511133434
+𨈧 32511135152
+𨈨 32511133135
+𨈩 325111313544
+𨈪 325111325134
+𨈫 325111341121
+𨈬 325111332121
+𨈭 325111325211
+𨈮 32511325112
+𨈯 325111353521
+𨈰 325111312251
+𨈱 325111325111
+𨈲 3251113434115
+𨈳 325111335251
+𨈴 325111343251
+𨈵 325111353254
+𨈶 325111355414
+𨈷 325111344535
+𨈸 3251113312251
+𨈹 3251113251251
+𨈺 3251113121335
+𨈻 3251113325111
+𨈼 3251113531234
+𨈽 3251113431134
+𨈾 3251113431132
+𨈿 3412513251113
+𨉀 3251113134152
+𨉁 3251113243135
+𨉂 325111325115
+𨉃 3231213251113
+𨉄 3251113352211
+𨉅 3251113341132
+𨉆 3251113355215
+𨉇 3251113433434
+𨉈 3251113312154
+𨉉 32511131535121
+𨉊 32511131535134
+𨉋 32511134325135
+𨉌 32511132512134
+𨉍 32511133251134
+𨉎 32511131311534
+𨉏 32511133525135
+𨉐 32511133121534
+𨉑 32511132511121
+𨉒 32511135554334
+𨉓 32511133412534
+𨉔 325111321251112
+𨉕 325111345131344
+𨉖 511225113251113
+𨉗 325111344511214
+𨉘 32511133312454
+𨉙 325111311354534
+𨉚 325111313425115
+𨉛 325111325131134
+𨉜 325111335121251
+𨉝 325111344535455
+𨉞 325111312134354
+𨉟 325111334125152
+𨉠 325111312143112
+𨉡 325111331212211
+𨉢 3251113312511211
+𨉣 3251113512115154
+𨉤 3251113325111121
+𨉥 3251113132522111
+𨉦 3251113255452511
+𨉧 3251113131354534
+𨉨 3251113321113554
+𨉩 3251113111342511
+𨉪 3251113251135345
+𨉫 325111335251251
+𨉬 3251113412514512
+𨉭 3251113521325111
+𨉮 32511133253411535
+𨉯 3251113321511215
+𨉰 3251113451153452
+𨉱 32511135154151541
+𨉲 32511134125125251
+𨉳 32511133454541541
+𨉴 3251113122122111
+𨉵 3251113325113554
+𨉶 3251113431113121
+𨉷 32511134453434251
+𨉸 32511131211254444
+𨉹 325111325125115341
+𨉺 325111334532511134
+𨉻 325111312511123534
+𨉼 325111312512214544
+𨉽 325111325112111121
+𨉾 325111331431425111
+𨉿 325111313252132522
+𨊀 3251113251112511112
+𨊁 3251113121335121335
+𨊂 3251113254312114444
+𨊃 3431234251213251113
+𨊄 3251113343123425121
+𨊅 3251113121121121135
+𨊆 3251113121335154121
+𨊇 325111312212512134
+𨊈 3251113125221251112
+𨊉 3251113311531153115
+𨊊 3251113445531121251
+𨊋 3251113252212511134
+𨊌 3251113431234354152
+𨊍 32511133513344111251
+𨊎 32511134451212522112
+𨊏 32511134311344111251
+𨊐 3251113251225251454
+𨊑 32511131251211251211
+𨊒 32511132522135251214
+𨊓 325111344545442522112
+𨊔 325111312512531425221
+𨊕 325111344512332511134
+𨊖 325111351325112512531
+𨊗 325111335131535121251
+𨊘 3251113125125125154544
+𨊙 325111312213125125534
+𨊚 3251113132511325113251
+𨊛 32511131331234312342121
+𨊜 32511131213351213353115
+𨊝 3251113125111233122512134
+𨊞 3251113122111122111122111
+𨊟 41112515544445544443251113
+𨊠 125111255
+𨊡 125111212
+𨊢 125111254
+𨊣 125111224
+𨊤 125111234
+𨊥 125111252
+𨊦 131251112
+𨊧 1251112121
+𨊨 1251112333
+𨊩 1251112555
+𨊪 1251112154
+𨊫 1251112112
+𨊬 3511251112
+𨊭 1251112124
+𨊮 1251112151
+𨊯 1251112315
+𨊰 1251112315
+𨊱 1251112112
+𨊲 1251112515
+𨊳 12511124544
+𨊴 12511123134
+𨊵 12511123554
+𨊶 12511124535
+𨊷 12511123541
+𨊸 12511123511
+𨊹 12511125215
+𨊺 12511122121
+𨊻 12511121132
+𨊼 12511125113
+𨊽 12511123434
+𨊾 12511122534
+𨊿 12511125454
+𨋀 12511125211
+𨋁 12511125254
+𨋂 12511123453
+𨋃 1251112354
+𨋄 12511124535
+𨋅 15351251112
+𨋆 12511121551
+𨋇 12511121554
+𨋈 12511122534
+𨋉 25341251112
+𨋊 12511123533
+𨋋 12511125452
+𨋌 12511125454
+𨋍 12511125435
+𨋎 125111235234
+𨋏 125111234234
+𨋐 12511121554
+𨋑 121351251112
+𨋒 125111254132
+𨋓 125111213251
+𨋔 125111211214
+𨋕 12511123552
+𨋖 125111235352
+𨋗 125111251335
+𨋘 125111231211
+𨋙 125111225112
+𨋚 125111251354
+𨋛 12511123553
+𨋜 125111233155
+𨋝 125111212153
+𨋞 125111213252
+𨋟 312341251112
+𨋠 125111244535
+𨋡 522521251112
+𨋢 125111241431
+𨋣 125111212534
+𨋤 125111221513
+𨋥 125111251532
+𨋦 125111232554
+𨋧 325111251112
+𨋨 1251112511534
+𨋩 1251112321344
+𨋪 1251112354152
+𨋫 1251112341534
+𨋬 5253411251112
+𨋭 1251112355215
+𨋮 1251112352511
+𨋯 1251112251153
+𨋰 1251112413534
+𨋱 1251112325151
+𨋲 1251112412534
+𨋳 1251112251341
+𨋴 1251112445531
+𨋵 1251112125234
+𨋶 1251112321121
+𨋷 1251112121121
+𨋸 1251112143134
+𨋹 1251112253434
+𨋺 3215111251112
+𨋻 1251112344354
+𨋼 1251112344412
+𨋽 1251112431112
+𨋾 1251112541541
+𨋿 5454451251112
+𨌀 1251112122111
+𨌁 1251112352511
+𨌂 12511125231121
+𨌃 12511123531121
+𨌄 52131211251112
+𨌅 4311131251112
+𨌆 12511124451354
+𨌇 12511121353334
+𨌈 12511123251113
+𨌉 12511122513541
+𨌊 12511124452541
+𨌋 12511124513251
+𨌌 12511123315215
+𨌍 12511124143112
+𨌎 12511123411234
+𨌏 11211251112534
+𨌐 12511121121354
+𨌑 12511121311534
+𨌒 12511123121251
+𨌓 12511123251134
+𨌔 12511124325135
+𨌕 12511123445434
+𨌖 12511123543511
+𨌗 52252451251112
+𨌘 12511125434354
+𨌙 12511124154325
+𨌚 12511124453112
+𨌛 12511121251234
+𨌜 35251351251112
+𨌝 12511123431324
+𨌞 12511121215452
+𨌟 12511124131234
+𨌠 125111251124134
+𨌡 12511121315251
+𨌢 125111234435112
+𨌣 125111212122534
+𨌤 413541521251112
+𨌥 112112511121121
+𨌦 125111225121212
+𨌧 125111213425115
+𨌨 125111235311252
+𨌩 125111224325251
+𨌪 125111234544544
+𨌫 125111243113455
+𨌬 125111221251112
+𨌭 125111225342511
+𨌮 125111241335154
+𨌯 125111241542511
+𨌰 125111234342134
+𨌱 413525341251112
+𨌲 125111235152511
+𨌳 125111221212511
+𨌴 125111232411121
+𨌵 125111244525111
+𨌶 125111241525111
+𨌷 125111215551121
+𨌸 343412511123434
+𨌹 125111243344334
+𨌺 125111234541541
+𨌻 125111213434121
+𨌼 125111225122512
+𨌽 125111231123112
+𨌾 311231121251112
+𨌿 125111212511234
+𨍀 125111215412122
+𨍁 343435341251112
+𨍂 353335331251112
+𨍃 554554131251112
+𨍄 125111225111134
+𨍅 125111221212554
+𨍆 125111225112511
+𨍇 1251112445354251
+𨍈 1251112345234354
+𨍉 1251112353344544
+𨍊 1251112312344334
+𨍋 1251112251225251
+𨍌 1251112515152511
+𨍍 1251112513431132
+𨍎 5452331341251112
+𨍏 1251112413122154
+𨍐 1251112521343541
+𨍑 1251112414312511
+𨍒 1251253141251112
+𨍓 1251112341251112
+𨍔 1215231251112522
+𨍕 1251112122151234
+𨍖 1251112343425152
+𨍗 4135253411251112
+𨍘 1251112125121115
+𨍙 1251112321251112
+𨍚 1251112341541541
+𨍛 1251112112155414
+𨍜 1251112122111345
+𨍝 1251112122125112
+𨍞 125111212225134
+𨍟 1251112251212511
+𨍠 1251112352513553
+𨍡 1251112412511234
+𨍢 1251112413534251
+𨍣 1251112431325111
+𨍤 1251112445121251
+𨍥 1251112132522531
+𨍦 1251112431234531
+𨍧 1251112325111121
+𨍨 1251112431353334
+𨍩 12511124143454153
+𨍪 12511123351153554
+𨍫 12511121252211234
+𨍬 12511121224312511
+𨍭 12511121251124124
+𨍮 12511121251254312
+𨍯 25111221341251112
+𨍰 12511121215425221
+𨍱 12511123122113534
+𨍲 12511122513533341
+𨍳 12511123443311252
+𨍴 12511124135112251
+𨍵 125111244525114134
+𨍶 43344334451251112
+𨍷 1251112122122111
+𨍸 12511123545325121
+𨍹 1251112325113554
+𨍺 12511125134121254
+𨍻 34251513351251112
+𨍼 12511121535354152
+𨍽 12511124134543534
+𨍾 1251112255452511
+𨍿 12511125133322154
+𨎀 12511123251113412
+𨎁 12511124525114134
+𨎂 12511121311534251
+𨎃 12511123454541541
+𨎄 12511121325125251
+𨎅 12511122522125111
+𨎆 35523355231251112
+𨎇 12511121211254444
+𨎈 12511121134121251
+𨎉 12511123315112134
+𨎊 125111241352513534
+𨎋 125111224345251121
+𨎌 121431123541251112
+𨎍 125111241351124134
+𨎎 12511124125152152
+𨎏 125111225112252511
+𨎐 121341213541251112
+𨎑 113412511121251112
+𨎒 125111234312344544
+𨎓 125111231121251112
+𨎔 1251112122125111343
+𨎕 125111213341251534
+𨎖 243452511211251112
+𨎗 125111225113533333
+𨎘 125111234432511134
+𨎙 125111241251251354
+𨎚 125111243123425121
+𨎛 125111244153441234
+𨎜 125111244512125121
+𨎝 125111212512212511
+𨎞 12511121121533134
+𨎟 125111225121354251
+𨎠 251213542511251112
+𨎡 125111241513321534
+𨎢 125111254251124544
+𨎣 125111244534354251
+𨎤 1251112543341251431
+𨎥 1251112125112144544
+𨎦 1251112325111111112
+𨎧 1251112121251431333
+𨎨 1251112251212511134
+𨎩 125111212212512134
+𨎪 1251112132522132522
+𨎫 1251112511225113511
+𨎬 1251112121121121135
+𨎭 1251112413543543534
+𨎮 125111212212211154
+𨎯 3234343434131251112
+𨎰 1251112341251541541
+𨎱 1251112413543543515
+𨎲 12511122512121354251
+𨎳 12511123143143541112
+𨎴 12511122434525125121
+𨎵 12511122511221111534
+𨎶 12511122153151353334
+𨎷 12511124134315112234
+𨎸 12511125452331341234
+𨎹 12511124125251131234
+𨎺 12511124125251111234
+𨎻 12511123513344111251
+𨎼 12511121335111251112
+𨎽 1251112122251125221
+𨎾 12511121251212511134
+𨎿 12511121452444425121
+𨏀 12511122511252214544
+𨏁 12511124154251213134
+𨏂 1251112451251112454
+𨏃 12511121251211251211
+𨏄 12511121555121122111
+𨏅 12511124132342511134
+𨏆 12511122431351251112
+𨏇 32343434341131251112
+𨏈 125111234431215114544
+𨏉 31431425111341251112
+𨏊 125125314252211251112
+𨏋 12511125553215111234
+𨏌 125111225115545544444
+𨏍 125111243344334451234
+𨏎 125111235251214444112
+𨏏 125111243344334354152
+𨏐 321134345111341251112
+𨏑 1251112331233122511134
+𨏒 1251112132511325113251
+𨏓 1251112121211121111534
+𨏔 1251112121252212511134
+𨏕 12511121223541112454
+𨏖 1251112125111215341534
+𨏗 1251112352512144442511
+𨏘 1251112122144442511134
+𨏙 1251112252211212513534
+𨏚 1251112341251122125112
+𨏛 1251112415454112213534
+𨏜 3234343434131211251112
+𨏝 1251112344351315353554
+𨏞 21212331325111341251112
+𨏟 12511121251251211251112
+𨏠 12511124143125111515111
+𨏡 12511121214525121542134
+𨏢 125111243112131234151534
+𨏣 12511121212415435413134
+𨏤 12511123413425234343434
+𨏥 12511124451112252214544
+𨏦 12511125112251132411121
+𨏧 21531525121252211251112
+𨏨 12511121452444443122431
+𨏩 41525135411251112454354
+𨏪 125111234341211121111534
+𨏫 12511121224411251124124
+𨏬 125111212512543121251112
+𨏭 125111251122511125431234
+𨏮 321112511125111341251112
+𨏯 411251112554444554444251
+𨏰 125111241434541531251112
+𨏱 12511125234431215114544
+𨏲 125111251312215341251112
+𨏳 1251112252324111212534251
+𨏴 1251112122111122111122111
+𨏵 12511123443513212135515354
+𨏶 41112515544445544441251112
+𨏷 12511124111251554444554444
+𨏸 12511124125125125251111234
+𨏹 125111225111251113241112154
+𨏺 1251112125111215341534335414
+𨏻 125111224345251254312114444
+𨏼 125111212251122511125431234
+𨏽 12511121254125441352211535
+𨏾 21531525125431213441251112
+𨏿 1251112125111212511121251112
+𨐀 1251112125111251141352211535
+𨐁 12511122512125121251214525111
+𨐂 125111234431332113251151135354
+𨐃 3411243134112431341124311251112
+𨐄 12511123443542554125111225121253425121
+𨐅 15123554
+𨐆 15121132
+𨐇 151213534
+𨐈 1512243135
+𨐉 151212212211154
+𨐊 15124451112252214544
+𨐋 4143112
+𨐌 41431112
+𨐍 3334143112
+𨐎 4143113531
+𨐏 41431133215
+𨐐 41431431135
+𨐑 41431135435
+𨐒 122514143112
+𨐓 532514143112
+𨐔 3543544143112
+𨐕 5115114143112
+𨐖 3412344143112
+𨐗 4143113251251
+𨐘 34123544143112
+𨐙 33512514143112
+𨐚 51132514143112
+𨐛 51325344143112
+𨐜 414311332511512
+𨐝 445251514143112
+𨐞 531122514143112
+𨐟 414311312122251
+𨐠 5425112344143112
+𨐡 4143113121212251
+𨐢 5132514143112132
+𨐣 414311315151234
+𨐤 4143113125431234
+𨐥 4143113122125112
+𨐦 4143113353251214
+𨐧 5132511214143112
+𨐨 51325141431121132
+𨐩 41431134315112234
+𨐪 41431135154151541
+𨐫 51341112514143112
+𨐬 51325141431121214
+𨐭 41431135314454334
+𨐮 4143113122415334
+𨐯 51325141431123453
+𨐰 414311334534143112
+𨐱 414311335414143112
+𨐲 344354251224143112
+𨐳 451325134534143112
+𨐴 513251414311225112
+𨐵 4143113454344143112
+𨐶 4143113511121251211
+𨐷 4143113411125131211
+𨐸 4143113543341251431
+𨐹 5425141431123544334
+𨐺 41431122512211311534
+𨐻 414311234321211353334
+𨐼 41431122514143112251
+𨐽 513251414311244525151
+𨐾 5414311341112514143112
+𨐿 4143113331233122511134
+𨑀 122514143113122514143112
+𨑁 32112512515111344143112343312
+𨑂 414311225141431122514143112251
+𨑃 1311254
+𨑄 13112534
+𨑅 1311534311252
+𨑆 5235221311534
+𨑇 1252211311534
+𨑈 45351311534124
+𨑉 1311534251214121
+𨑊 3543542512211311534
+𨑋 123432534112341311534
+𨑌 2512125121251211311534
+𨑍 35454
+𨑎 25454
+𨑏 52454
+𨑐 55454
+𨑑 415454
+𨑒 121454
+𨑓 515454
+𨑔 3332134515
+𨑕 251454
+𨑖 515454
+𨑗 211454
+𨑘 135454
+𨑙 354454
+𨑚 354454
+𨑛 3332134115
+𨑜 124454
+𨑝 234454
+𨑞 315454
+𨑟 345454
+𨑠 332454
+𨑡 3332134121
+𨑢 33321343434
+𨑣 5134454
+𨑤 1254454
+𨑥 3533454
+𨑦 5452454
+𨑧 2534454
+𨑨 2511454
+𨑩 5152454
+𨑪 3454454
+𨑫 1354454
+𨑬 1221454
+𨑭 2121454
+𨑮 3212454
+𨑯 4334454
+𨑰 1354454
+𨑱 5454454
+𨑲 3112454
+𨑳 3121454
+𨑴 3112454
+𨑵 2115454
+𨑶 3121454
+𨑷 3512454
+𨑸 3432454
+𨑹 3434454
+𨑺 3115454
+𨑻 4535454
+𨑼 1554454
+𨑽 5112454
+𨑾 2534454
+𨑿 1252454
+𨒀 5353454
+𨒁 3535454
+𨒂 32121454
+𨒃 43112454
+𨒄 34251454
+𨒅 25134454
+𨒆 44535454
+𨒇 25112454
+𨒈 51311454
+𨒉 3523454
+𨒊 25341454
+𨒋 15534454
+𨒌 12121454
+𨒍 12132454
+𨒎 1511454
+𨒏 13443454
+𨒐 13251454
+𨒑 1515454
+𨒒 15312454
+𨒓 52124454
+𨒔 31134454
+𨒕 32124454
+𨒖 35352454
+𨒗 35112454
+𨒘 12523454
+𨒙 13251454
+𨒚 25111454
+𨒛 34234454
+𨒜 45434454
+𨒝 51252454
+𨒞 52252454
+𨒟 35444454
+𨒠 3332121252234
+𨒡 35251454
+𨒢 53234454
+𨒣 31521454
+𨒤 212135454
+𨒥 554354454
+𨒦 35152454
+𨒧 251153454
+𨒨 415334454
+𨒩 132522454
+𨒪 125234454
+𨒫 431112454
+𨒬 154121454
+𨒭 134334454
+𨒮 113534454
+𨒯 523525454
+𨒰 555521454
+𨒱 122134454
+𨒲 311234454
+𨒳 414312454
+𨒴 545454454
+𨒵 25525454
+𨒶 355215454
+𨒷 251214454
+𨒸 132521454
+𨒹 132511454
+𨒺 243135454
+𨒻 454124454
+𨒼 3332134511534
+𨒽 523522454
+𨒾 431252454
+𨒿 125221454
+𨓀 413312454
+𨓁 554554454
+𨓂 252151454
+𨓃 154444454
+𨓄 121212454
+𨓅 3251135454
+𨓆 2511354454
+𨓇 3413252454
+𨓈 3515251454
+𨓉 3251113454
+𨓊 1221115454
+𨓋 4154132454
+𨓌 5554334454
+𨓍 4133112454
+𨓎 2534521454
+𨓏 2521121454
+𨓐 2513251454
+𨓑 2113552454
+𨓒 2523121454
+𨓓 1214153454
+𨓔 5413511454
+𨓕 3231211454
+𨓖 2111515454
+𨓗 2125111454
+𨓘 2125122454
+𨓙 2511132454
+𨓚 4325135454
+𨓛 1525112454
+𨓜 3525135454
+𨓝 3545252454
+𨓞 4154325454
+𨓟 5122134454
+𨓠 5131252454
+𨓡 1121132454
+𨓢 3312454135
+𨓣 1234124454
+𨓤 2511354454
+𨓥 5425121454
+𨓦 2511211454
+𨓧 3542121454
+𨓨 3535112454
+𨓩 4134334454
+𨓪 5132534454
+𨓫 41541234454
+𨓬 25342511454
+𨓭 12211154454
+𨓮 34433121454
+𨓯 312155212454
+𨓰 15112134454
+𨓱 35121121454
+𨓲 32251325454
+𨓳 12342511454
+𨓴 311212152454
+𨓵 32431134454
+𨓶 333213451114334
+𨓷 15551121454
+𨓸 123435112454
+𨓹 25241121454
+𨓺 25125251454
+𨓻 51124134454
+𨓼 333212151145252
+𨓽 11212511454
+𨓾 13412512454
+𨓿 31112111454
+𨔀 21212134454
+𨔁 21253541454
+𨔂 25125122454
+𨔃 32251555454
+𨔄 33125252454
+𨔅 33243115454
+𨔆 41533444454
+𨔇 54544544454
+𨔈 31125222454
+𨔉 41341112454
+𨔊 41343412454
+𨔋 12211234454
+𨔌 52133544454
+𨔍 25221125454
+𨔎 445121345454
+𨔏 43113251454
+𨔐 11134112454
+𨔑 21213541454
+𨔒 25112534454
+𨔓 31134251454
+𨔔 35425221454
+𨔕 33512154454
+𨔖 21251251454
+𨔗 25153251454
+𨔘 12211234454
+𨔙 13413251454
+𨔚 52115211454
+𨔛 21531535454
+𨔜 55535122454
+𨔝 312511211454
+𨔞 132511134454
+𨔟 212534341454
+𨔠 31212211454
+𨔡 511353334454
+𨔢 523251214454
+𨔣 123453251454
+𨔤 143123453454
+𨔥 511112333454
+𨔦 121251431454
+𨔧 513431132454
+𨔨 112321511454
+𨔩 345235354454
+𨔪 351251112454
+𨔫 251135354454
+𨔬 134431112454
+𨔭 555135422454
+𨔮 324334132454
+𨔯 25112534454
+𨔰 125351132454
+𨔱 123434112454
+𨔲 52125112454
+𨔳 52132511454
+𨔴 12253251454
+𨔵 551353334454
+𨔶 134431112454
+𨔷 122125112454
+𨔸 112212511454
+𨔹 251132511454
+𨔺 251251112454
+𨔻 521251252454
+𨔼 123431521454
+𨔽 121253251454
+𨔾 12132511454
+𨔿 135333412454
+𨕀 311531134454
+𨕁 413431234454
+𨕂 132522111454
+𨕃 122125151454
+𨕄 513431234454
+𨕅 125351121454
+𨕆 121213511454
+𨕇 121232121454
+𨕈 251112534454
+𨕉 321113554454
+𨕊 354122134454
+𨕋 321213541454
+𨕌 111342511454
+𨕍 121213424454
+𨕎 134121251454
+𨕏 134125351454
+𨕐 212125111454
+𨕑 215315252454
+𨕒 251112121454
+𨕓 251251112454
+𨕔 252511354454
+𨕕 415425151454
+𨕖 515515134454
+𨕗 534353432454
+𨕘 325125214454
+𨕙 325111553454
+𨕚 253425111454
+𨕛 511112333454
+𨕜 431234454534
+𨕝 1211251124454
+𨕞 1252213132454
+𨕟 2512135354454
+𨕠 4453531322454
+𨕡 1212251112454
+𨕢 4155425121454
+𨕣 2512513112454
+𨕤 1212511252454
+𨕥 5551325111454
+𨕦 4453434354454
+𨕧 5545541132454
+𨕨 5111213533454
+𨕩 3243345354454
+𨕪 33321343243344334
+𨕫 452425112454
+𨕬 2512511523454
+𨕭 2111251112454
+𨕮 5132513554454
+𨕯 1311534124454
+𨕰 2521251431454
+𨕱 2523541112454
+𨕲 2511342121454
+𨕳 3354141354454
+𨕴 3354143554454
+𨕵 3251513554454
+𨕶 3512113554454
+𨕷 122354252454
+𨕸 2121251121454
+𨕹 1234125111454
+𨕺 1344111251454
+𨕻 2511511534454
+𨕼 33321343243345354
+𨕽 33321343415112134
+𨕾 4134131134454
+𨕿 5151211121454
+𨖀 5231251214454
+𨖁 33321345551325111
+𨖂 3251115251454
+𨖃 3143143533454
+𨖄 4453121251454
+𨖅 45115452454
+𨖆 21531525111454
+𨖇 12511214124454
+𨖈 35444111251454
+𨖉 43344334132454
+𨖊 11212511134454
+𨖋 44515112134454
+𨖌 43112145534454
+𨖍 12512513112454
+𨖎 31431454251454
+𨖏 21511543554454
+𨖐 22431431112454
+𨖑 1221555121454
+𨖒 12342511134454
+𨖓 41312214334454
+𨖔 51324134531454
+𨖕 13245425112454
+𨖖 1213512152454
+𨖗 12125113251454
+𨖘 12122522111454
+𨖙 25221323434454
+𨖚 12342511234454
+𨖛 14524444112454
+𨖜 14524444115454
+𨖝 14524134555454
+𨖞 25221112511454
+𨖟 32511133134454
+𨖠 33351325122454
+𨖡 34431353334454
+𨖢 35311211121454
+𨖣 35351123324454
+𨖤 333213435443344334
+𨖥 41352215454454
+𨖦 34432511132454
+𨖧 31151251234454
+𨖨 31234354354454
+𨖩 43113425111454
+𨖪 333213434432511132
+𨖫 12132411121454
+𨖬 31431431121454
+𨖭 25213121121454
+𨖮 52252154444454
+𨖯 21255113534454
+𨖰 31212514544134
+𨖱 41554453112454
+𨖲 31321251112454
+𨖳 441312155212454
+𨖴 311222214444454
+𨖵 324111214444454
+𨖶 352521353334454
+𨖷 314314511112454
+𨖸 212125112343454
+𨖹 154121154121454
+𨖺 314314132522454
+𨖻 121525125121454
+𨖼 325221323334454
+𨖽 32151134121454
+𨖾 554444554234454
+𨖿 344335554444454
+𨗀 343434342511454
+𨗁 414345252251454
+𨗂 554554134534454
+𨗃 3332134125234343434
+𨗄 433443344334454
+𨗅 121431353334454
+𨗆 125221134252454
+𨗇 125221134454454
+𨗈 2511412512344454
+𨗉 4453513533344454
+𨗊 1213251152454
+𨗋 212511153554454
+𨗌 341212124153454
+𨗍 412525112511454
+𨗎 52431353334454
+𨗏 251125112511454
+𨗐 125112342511454
+𨗑 135432411121454
+𨗒 145241343121454
+𨗓 251431325111454
+𨗔 3211511213432454
+𨗕 351253511132454
+𨗖 431253511134454
+𨗗 452341251124454
+𨗘 545454342444454
+𨗙 554554431132454
+𨗚 4311124312514454
+𨗛 122511123511454
+𨗜 341541251234454
+𨗝 3332134545232534251
+𨗞 252252252511454
+𨗟 554444121251454
+𨗠 145244441154454
+𨗡 314314121251454
+𨗢 125221413534454
+𨗣 121253512511454
+𨗤 341122214153454
+𨗥 3412524312511454
+𨗦 3412512513434454
+𨗧 3513354111251454
+𨗨 1212521251152454
+𨗩 2243143111234454
+𨗪 1212251113533454
+𨗫 2522113544544454
+𨗬 33321343544334431234
+𨗭 321511234121454
+𨗮 321511234132454
+𨗯 5225241533134454
+𨗰 2125511554234454
+𨗱 3541541251431454
+𨗲 12225525251454
+𨗳 4313251114542444
+𨗴 2522132411121454
+𨗵 3115121431112454
+𨗶 1112132511134454
+𨗷 1234251225251454
+𨗸 1212122151234454
+𨗹 3143141353334454
+𨗺 1452413434454454
+𨗻 2522131112111454
+𨗼 3112213545252454
+𨗽 34433112523511454
+𨗾 3434121431112454
+𨗿 3443533511534454
+𨘀 1121132511134454
+𨘁 5544153554234454
+𨘂 5113251354354454
+𨘃 4134144525151454
+𨘄 4451511224334454
+𨘅 3443533511211454
+𨘆 4135342534251454
+𨘇 52155545543112454
+𨘈 21531512143112454
+𨘉 31431415112134454
+𨘊 25111251111132454
+𨘋 32511415331521454
+𨘌 4524251225251454
+𨘍 14524134511534454
+𨘎 12121342511234454
+𨘏 12121212513534454
+𨘐 32325113232511454
+𨘑 12413441251112454
+𨘒 251125121234531454
+𨘓 34431215114544454
+𨘔 41112514111251454
+𨘕 3211152511134454
+𨘖 33544251113533454
+𨘗 22431431121124454
+𨘘 51331151251234454
+𨘙 41554451251112454
+𨘚 12122511145124454
+𨘛 41122122145252454
+𨘜 12512144442511454
+𨘝 12133532411121454
+𨘞 12453525221112454
+𨘟 31431441351134454
+𨘠 25112512134531454
+𨘡 35425121251214124554
+𨘢 325111445352525454
+𨘣 252211212513534454
+𨘤 321511342511134454
+𨘥 314314121513251454
+𨘦 121212212511211454
+𨘧 113411342511134454
+𨘨 123412512212511454
+𨘩 251112343554234454
+𨘪 113411341251112454
+𨘫 121121121121251454
+𨘬 121212213545252454
+𨘭 125351155124134454
+𨘮 215315252354354454
+𨘯 312343424134353454
+𨘰 413412512513434454
+𨘱 125123434435112454
+𨘲 314314445154121454
+𨘳 332252251113453454
+𨘴 312125121112111454
+𨘵 212525112511135454
+𨘶 1431225131515454
+𨘷 3443533132511134454
+𨘸 1331234312342121454
+𨘹 1353334351152554454
+𨘺 3544311252554234454
+𨘻 3143141212513534454
+𨘼 1251112252132522454
+𨘽 1221113541311252454
+𨘾 1452444432411121454
+𨘿 4125125132411121454
+𨙀 1211221251123554454
+𨙁 33321343443533132511134
+𨙂 354431125235542344554
+𨙃 21255113443311252454
+𨙄 34125125125125122454
+𨙅 35425121551353334454
+𨙆 13533343511152554454
+𨙇 44511221342511134454
+𨙈 51324134521251152454
+𨙉 14524134512115154454
+𨙊 12122153151353334454
+𨙋 12134252212511134454
+𨙌 31431451154521135454
+𨙍 31134313425125251454
+𨙎 41112512522123344454
+𨙏 52352241431251112454
+𨙐 511541535511534454
+𨙑 33211511212511134454
+𨙒 54154125121122134454
+𨙓 122111122111122111454
+𨙔 312122111211254444454
+𨙕 212125125132411121454
+𨙖 542511245441554413412
+𨙗 121225112521425121454
+𨙘 251125112511134454454
+𨙙 3211325341511134515454
+𨙚 1212251125214251214454
+𨙛 1251234325221323434454
+𨙜 1213425352512511134454
+𨙝 1452444425121511534454
+𨙞 3332134321132534151113455
+𨙟 12125112251132411121454
+𨙠 12511234125112342511454
+𨙡 31212215232511154444454
+𨙢 31431432511145342525454
+𨙣 34434143125113554234454
+𨙤 145241343443454544354454
+𨙥 111342511251214251214454
+𨙦 3343434341211211254444454
+𨙧 333213454523253525132511154444
+𨙨 2511255
+𨙩 1252
+𨙪 3552
+𨙫 25152
+𨙬 51552
+𨙭 12152
+𨙮 35452
+𨙯 12452
+𨙰 12152
+𨙱 11552
+𨙲 31552
+𨙳 54452
+𨙴 12352
+𨙵 55352
+𨙶 125252
+𨙷 113252
+𨙸 125452
+𨙹 234352
+𨙺 521152
+𨙻 251152
+𨙼 312152
+𨙽 341552
+𨙾 12542515215
+𨙿 135452
+𨚀 132452
+𨚁 153552
+𨚂 353552
+𨚃 415352
+𨚄 353152
+𨚅 343452
+𨚆 11322515215
+𨚇 34532515215
+𨚈 23432515215
+𨚉 25112515215
+𨚊 43342515215
+𨚋 25152154444
+𨚌 35452
+𨚍 151552
+𨚎 155152
+𨚏 155452
+𨚐 343552
+𨚑 512152
+𨚒 23432515215
+𨚓 5153252
+𨚔 3551552
+𨚕 5413252
+𨚖 21211552
+𨚗 2521152
+𨚘 1123452
+𨚙 2511552
+𨚚 431132515215
+𨚛 1511552
+𨚜 4311352
+𨚝 1121452
+𨚞 1325152
+𨚟 3544452
+𨚠 122112515215
+𨚡 525342515215
+𨚢 1132452
+𨚣 1212152
+𨚤 1511552
+𨚥 3112152
+𨚦 5211352
+𨚧 5325152
+𨚨 5425152
+𨚩 1251252
+𨚪 4143152
+𨚫 1215452
+𨚬 321212515215
+𨚭 515322515215
+𨚮 3251152
+𨚯 25125152
+𨚰 25111252
+𨚱 52534152
+𨚲 13252152
+𨚳 41555552
+𨚴 53125152
+𨚵 1212515215534
+𨚶 31121252
+𨚷 35425152
+𨚸 15423452
+𨚹 12535152
+𨚺 1335112515215
+𨚻 1213152515215
+𨚼 2515215133511
+𨚽 3112122515215
+𨚾 15215252
+𨚿 25221152
+𨛀 31215452
+𨛁 43111352
+𨛂 43345452
+𨛃 51151152
+𨛄 51521152
+𨛅 35435452
+𨛆 21115152
+𨛇 25343452
+𨛈 34112152
+𨛉 35521552
+𨛊 34313452
+𨛋 251121152
+𨛌 415123452
+𨛍 243354152
+𨛎 251111252
+𨛏 343412152
+𨛐 543535452
+𨛑 515454452
+𨛒 212123352
+𨛓 112113252
+𨛔 132425152
+𨛕 212551152
+𨛖 212512252
+𨛗 251521552
+𨛘 313212152
+𨛙 311123452
+𨛚 11212515215534
+𨛛 13533342515215
+𨛜 25152152515215
+𨛝 52311132515215
+𨛞 121123552
+𨛟 523311352
+𨛠 541325152
+𨛡 251354152
+𨛢 123425152
+𨛣 341525152
+𨛤 135333452
+𨛥 353511252
+𨛦 51132512515215
+𨛧 415423452
+𨛨 121352152
+𨛩 125111252
+𨛪 321213452
+𨛫 312343532515215
+𨛬 311121112515215
+𨛭 3411225152
+𨛮 5131225152
+𨛯 4452511152
+𨛰 3443511252
+𨛱 4451123452
+𨛲 3123431252
+𨛳 1221251152
+𨛴 2511113452
+𨛵 2153153552
+𨛶 3443455452
+𨛷 212135342515215
+𨛸 215315352515215
+𨛹 2125354152
+𨛺 1221113452
+𨛻 3123411352
+𨛼 154354152
+𨛽 3122113552
+𨛾 521115342515215
+𨛿 122111542515215
+𨜀 134251152515215
+𨜁 212134342515215
+𨜂 243252512515215
+𨜃 1215415352
+𨜄 1252444452
+𨜅 1341251252
+𨜆 1344311552
+𨜇 2511155552
+𨜈 5211521152
+𨜉 5211511352
+𨜊 3535115452
+𨜋 521325152
+𨜌 4452515152
+𨜍 2511123452
+𨜎 154123452
+𨜏 53542522152
+𨜐 25121454452
+𨜑 25111123452
+𨜒 11125313452
+𨜓 21251113452
+𨜔 32511112152
+𨜕 55312213452
+𨜖 25112521452
+𨜗 353325121452
+𨜘 51315412152
+𨜙 54523123452
+𨜚 31212215252
+𨜛 44534345452
+𨜜 23432511152
+𨜝 2512511152515215
+𨜞 121325112515215
+𨜟 43125351152
+𨜠 13153153452
+𨜡 15153251152
+𨜢 5212511522515215
+𨜣 1112531342515215
+𨜤 12125415352
+𨜥 12512512252
+𨜦 12534215452
+𨜧 13252211152
+𨜨 13442522152
+𨜩 32511253452
+𨜪 34343425152
+𨜫 35133113452
+𨜬 35251151552
+𨜭 15251113452
+𨜮 35345115452
+𨜯 2511113442515215
+𨜰 43112153152
+𨜱 44512125152
+𨜲 31212121522515215
+𨜳 445251325152
+𨜴 121542522152
+𨜵 253412522152
+𨜶 431342522152
+𨜷 414345415352
+𨜸 133251152152
+𨜹 551551512152
+𨜺 355454154152
+𨜻 215315413452
+𨜼 125221123452
+𨜽 351335435452
+𨜾 341511325152
+𨜿 522521123452
+𨝀 325121355452
+𨝁 352511351552
+𨝂 133251123452
+𨝃 445312125152
+𨝄 312211353452
+𨝅 55332511352515215
+𨝆 125121251252
+𨝇 125231121552
+𨝈 321215413252
+𨝉 555251113452
+𨝊 122511113452
+𨝋 3541541123452
+𨝌 1225111231552
+𨝍 1252211345552
+𨝎 4135112413452
+𨝏 413452255452
+𨝐 5454543433352
+𨝑 5521253452
+𨝒 122341123452
+𨝓 1252211123452
+𨝔 3322521112152
+𨝕 4311212522152
+𨝖 555251521513434234
+𨝗 4143253525152
+𨝘 2153153431252
+𨝙 3412511251152
+𨝚 251122525112515215
+𨝛 1212341123452
+𨝜 121431125254
+𨝝 122511123152515215
+𨝞 215315343152515215
+𨝟 312343134132515215
+𨝠 354154112342515215
+𨝡 2524451123452
+𨝢 4451221115452
+𨝣 5441252211152
+𨝤 5454251113452
+𨝥 1212251134552
+𨝦 243452511212515215
+𨝧 4135221545452
+𨝨 1211221251152
+𨝩 125111231342515215
+𨝪 25221311212152
+𨝫 34125154154152
+𨝬 3112222144442515215
+𨝭 41121125444452
+𨝮 12211154123452
+𨝯 41431251121152
+𨝰 31342512525152
+𨝱 32411121444452
+𨝲 32511141341352
+𨝳 212115251113452
+𨝴 12211251213452
+𨝵 12341234354152
+𨝶 12512511251152
+𨝷 13443251123452
+𨝸 12522125111252
+𨝹 2153152243152
+𨝺 32511141353452
+𨝻 51112135412452
+𨝼 1344325112342515215
+𨝽 14524134115452
+𨝾 25221125143152
+𨝿 25112254311252
+𨞀 4312535111342515215
+𨞁 4312343541522515215
+𨞂 21213241112152
+𨞃 31234342413452
+𨞄 33434343412152
+𨞅 34342132511152
+𨞆 35455251113452
+𨞇 43344334433452
+𨞈 54154113113452
+𨞉 51525354112152
+𨞊 22431431113452
+𨞋 13122125112152
+𨞌 35453125143152
+𨞍 251251522152352
+𨞎 25145125111252
+𨞏 2512512511122515215
+𨞐 1355342522152
+𨞑 55525152153251111344
+𨞒 312341221251152
+𨞓 325343123413452
+𨞔 25152151221342515215
+𨞕 252213525121452
+𨞖 145244443445452
+𨞗 511325143111252
+𨞘 215315125143152
+𨞙 215315135333452
+𨞚 251135112522152
+𨞛 121225113534552
+𨞜 125111251113452
+𨞝 125221251113452
+𨞞 351135112522152
+𨞟 122111121343452
+𨞠 25152151221342515215
+𨞡 34125243125112515215
+𨞢 123434342413452
+𨞣 212113123353452
+𨞤 341252431251152
+𨞥 412525112511252
+𨞦 21531513533342515215
+𨞧 4334433435415252
+𨞨 1212121542522152
+𨞩 5415413241112152
+𨞪 1215121125112452
+𨞫 1212451135333452
+𨞬 1325112113412152
+𨞭 3525135352513552
+𨞮 122111543234342515215
+𨞯 212125221453542515215
+𨞰 251521532511152515215
+𨞱 2512434525112152
+𨞲 3113121125444452
+𨞳 3251112512113252
+𨞴 4334433425251152
+𨞵 5151251251113452
+𨞶 3251112511123452
+𨞷 3134313425121452
+𨞸 251521532511152515215
+𨞹 2153151234123452
+𨞺 13121225112521452
+𨞻 41352211535444452
+𨞼 12122511252215452
+𨞽 25121251212512152
+𨞾 321125125151113452
+𨞿 43112144441113452
+𨟀 31234353342413452
+𨟁 21212522145415352
+𨟂 12123525121444452
+𨟃 33225213121313452
+𨟄 1234343412341342515215
+𨟅 12343434123413452
+𨟆 1225415413433352
+𨟇 35251214444251152
+𨟈 33351112125112452
+𨟉 11325111325113452
+𨟊 33123312251113452
+𨟋 32151132534113252
+𨟌 33351125125112452
+𨟍 41251252512511252
+𨟎 25232411121252552
+𨟏 433443344125251152
+𨟐 412512434525112152
+𨟑 133123431234212152
+𨟒 12225221452511152
+𨟓 145244443241112152
+𨟔 121225112522115352
+𨟕 154121154121251152
+𨟖 41312354123541325152
+𨟗 12234433555444452
+𨟘 145241344312243152
+𨟙 2511134251113453152
+𨟚 412512511121353452
+𨟛 1213251113251113452
+𨟜 2125344444125111252
+𨟝 3123425114154251152
+𨟞 412515211213251152
+𨟟 1331234312341325152
+𨟠 25111251113241112152
+𨟡 12211112252211454452
+𨟢 11211215121125112452
+𨟣 21253444441251152152
+𨟤 123412344135221153552
+𨟥 132511325113251123452
+𨟦 32113253415111345552
+𨟧 34432522151154123452
+𨟨 4453213251112212511252
+𨟩 2125344444125112515222515215
+𨟪 21211124111251411125152
+𨟫 12534125344135221153552
+𨟬 21253444441251125152252
+𨟭 31431421531525121251152
+𨟮 1452413425125125131342515215
+𨟯 14524134251251251123434152
+𨟰 125351152
+𨟱 1253511354
+𨟲 1125351154
+𨟳 1253511434
+𨟴 12535113511
+𨟵 12535111535
+𨟶 15341253511
+𨟷 12535111324
+𨟸 12535113533
+𨟹 12535113415
+𨟺 12535111255
+𨟻 52131253511
+𨟼 12535114135
+𨟽 43341253511
+𨟾 12535113515
+𨟿 12535113434
+𨠀 12535111554
+𨠁 12535114535
+𨠂 12535111551
+𨠃 12535112154
+𨠄 12535111354
+𨠅 12535113534
+𨠆 25341253511
+𨠇 12535113312
+𨠈 12535115454
+𨠉 12535114544
+𨠊 12535112534
+𨠋 125351133544
+𨠌 125351135444
+𨠍 125351132154
+𨠎 125351134154
+𨠏 125351135151
+𨠐 1253511212115
+𨠑 125351131525
+𨠒 541341253511
+𨠓 12535113523
+𨠔 125351145434
+𨠕 125351145534
+𨠖 125351135515
+𨠗 125351125134
+𨠘 125351132511
+𨠙 125351113241
+𨠚 125351125111
+𨠛 12535111554
+𨠜 125351153254
+𨠝 125351111234
+𨠞 125351135334
+𨠟 125351114312
+𨠠 125351131121
+𨠡 125351151254
+𨠢 541321253511
+𨠣 125351112121
+𨠤 1253511113534
+𨠥 1253511351355
+𨠦 1253511413434
+𨠧 1221111253511
+𨠨 1253511413432
+𨠩 1253511434242
+𨠪 1253511415412
+𨠫 4312535111354
+𨠬 1253511121335
+𨠭 3412511253511
+𨠮 1253511353452
+𨠯 1253511413452
+𨠰 3215341253511
+𨠱 1253511354115
+𨠲 1253511323121
+𨠳 1253511415334
+𨠴 1253511125351
+𨠵 1253511243135
+𨠶 1253511355215
+𨠷 12512211253511
+𨠸 12535111555121
+𨠹 12535111341234
+𨠺 12535114125152
+𨠻 12535114451135
+𨠼 12535114451234
+𨠽 1253511135534
+𨠾 11211253511534
+𨠿 12535111343434
+𨡀 12535112432511
+𨡁 12535112511135
+𨡂 12535113413252
+𨡃 12535113541112
+𨡄 12535114111251
+𨡅 12535114312345
+𨡆 12535113434521
+𨡇 12535115125221
+𨡈 12535115213121
+𨡉 12535115114554
+𨡊 12535112515322
+𨡋 12535111234251
+𨡌 125351131234531
+𨡍 125351125342511
+𨡎 125351134154544
+𨡏 125351125122134
+𨡐 311252221253511
+𨡑 125351135121251
+𨡒 1253511353112121
+𨡓 521335441253511
+𨡔 243452511253511
+𨡕 125351132511312
+𨡖 125351111525221
+𨡗 125351144535515
+𨡘 125351131125222
+𨡙 125351143251112
+𨡚 12535111543541
+𨡛 32511351253511
+𨡜 125351134133541
+𨡝 125351112125221
+𨡞 125351113252511
+𨡟 125351125121132
+𨡠 125351125153511
+𨡡 431253511515341
+𨡢 341535341253511
+𨡣 341545441253511
+𨡤 125351141251341
+𨡥 125351141324251
+𨡦 125351155425115
+𨡧 125351152131344
+𨡨 125351112211134
+𨡩 1253511543343554
+𨡪 1253511415331525
+𨡫 1253511451251112
+𨡬 1253511253425221
+𨡭 5452331341253511
+𨡮 1253511353344544
+𨡯 1253511122543112
+𨡰 5213125351125221
+𨡱 1253511121212251
+𨡲 1253511312344334
+𨡳 3415125351133335
+𨡴 1253511431253511
+𨡵 1253511251225221
+𨡶 5325411321253511
+𨡷 1225135411253511
+𨡸 1253511121234234
+𨡹 1253511325112534
+𨡺 1253511251212534
+𨡻 1253511445433454
+𨡼 1253511225425221
+𨡽 1253511131213541
+𨡾 1253511251214544
+𨡿 1253511135425221
+𨢀 1253511343413521
+𨢁 1253511341511534
+𨢂 1253511355425115
+𨢃 1253511445112121
+𨢄 125351125113554
+𨢅 43125351141343412
+𨢆 12535115454541234
+𨢇 12535113545325121
+𨢈 12251112431253511
+𨢉 12535112521251431
+𨢊 12535114511353334
+𨢋 12145135541253511
+𨢌 12535111251254312
+𨢍 12535111213152511
+𨢎 12535114525114134
+𨢏 35111132221253511
+𨢐 12535114143454153
+𨢑 12535113315112234
+𨢒 12512531111253511
+𨢓 12535114125125251
+𨢔 12535111341212511
+𨢕 12535111212341234
+𨢖 12535115542511134
+𨢗 12535111325125251
+𨢘 12535114313425221
+𨢙 12535113415343112
+𨢚 43112131211253511
+𨢛 44535312111253511
+𨢜 12535114532411121
+𨢝 12535113443321511
+𨢞 41432533541253511
+𨢟 1253511122415334
+𨢠 12535114455325221
+𨢡 12535112511122112
+𨢢 125351112122511134
+𨢣 125351115132511134
+𨢤 121521335541253511
+𨢥 125351125112522154
+𨢦 125351111212511134
+𨢧 125351144535311252
+𨢨 125351132535414544
+𨢩 125351131251113533
+𨢪 125351155525111234
+𨢫 12535115155115251
+𨢬 125351112123411234
+𨢭 125351135251214444
+𨢮 311342511121253511
+𨢯 441341545441253511
+𨢰 311342511253511115
+𨢱 311342515211253511
+𨢲 125351144532132511
+𨢳 125351113542112511
+𨢴 125351134125125221
+𨢵 125351135415411234
+𨢶 125351141251524444
+𨢷 125351141352211535
+𨢸 125351143112125221
+𨢹 532541132221253511
+𨢺 125351154521343541
+𨢻 125351125111511534
+𨢼 125351132534134354
+𨢽 2512112535115435354
+𨢾 1253511132522132522
+𨢿 1253511251251251112
+𨣀 1253511134432511234
+𨣁 1253511431121431251
+𨣂 1253511122134251214
+𨣃 1253511433443344553
+𨣄 1253511121211212112
+𨣅 1253511251112211154
+𨣆 1253511431253511134
+𨣇 1253511511225113511
+𨣈 1253511251212511134
+𨣉 1253511511225112511
+𨣊 1253511515121121251
+𨣋 1253511343434342511
+𨣌 1253511125221251112
+𨣍 125351113412132511
+𨣎 1253511312512125221
+𨣏 1253511314314341251
+𨣐 3241112143341253511
+𨣑 12535112343434341
+𨣒 1253511414312511211
+𨣓 1253511415432525221
+𨣔 1253511545454342444
+𨣕 1253511441353425221
+𨣖 12535111452413434154
+𨣗 12511125235541253511
+𨣘 12535114454543425221
+𨣙 12535111452413435515
+𨣚 12535114125251125111
+𨣛 12535112434525112211
+𨣜 12535111252342511134
+𨣝 12535111312515344544
+𨣞 12535114311213121534
+𨣟 12535113322521353134
+𨣠 12535112522113443112
+𨣡 43125351144532132511
+𨣢 1253511431353334454
+𨣣 12535113434343413121
+𨣤 12535111234123411234
+𨣥 1253511344354544354
+𨣦 12535113211152511134
+𨣧 125351141432533543211
+𨣨 125351112512531125221
+𨣩 323434343413151253511
+𨣪 125351112535115435354
+𨣫 125351132512135544412
+𨣬 125351114524444135215
+𨣭 125351144535353344544
+𨣮 1253511445353121125221
+𨣯 125351145251115132125
+𨣰 1253511551353334251214
+𨣱 1253511212125221134534
+𨣲 1253511121211121111534
+𨣳 1253511412512512121112
+𨣴 1253511413123512353112
+𨣵 1253511113411342511134
+𨣶 12535114125125112121112
+𨣷 12535111331234312342121
+𨣸 12535111251253112511135
+𨣹 12511234125112341253511
+𨣺 12535113525121444431234
+𨣻 53134125125134341253511
+𨣼 12535114453532535414544
+𨣽 12535114131235123511234
+𨣾 515134252343434341253511
+𨣿 125351141352211535431234
+𨤀 125351114524134251251251
+𨤁 125351152325243143344334
+𨤂 125351143344334451253511
+𨤃 125351112213513125125534
+𨤄 1253511314314511225113511
+𨤅 33312535111251254312322332
+𨤆 12535113121353121352511134
+𨤇 125351112511234125112342511
+𨤈 125112341251123425111253511
+𨤉 125351132113253415111311534
+𨤊 1253511344325221344444521554
+𨤋 1253511125125314252212511135
+𨤌 1253511212534444412511251522
+𨤍 1253511145241342512512511234341
+𨤎 1253511125125312125344444125221
+𨤏 534312341
+𨤐 21453431234
+𨤑 34312345354
+𨤒 3431234353151
+𨤓 34312535425111
+𨤔 513311534431234
+𨤕 343123413425115
+𨤖 343123453545215
+𨤗 343123413425111
+𨤘 3431234122151234
+𨤙 3431234134554234
+𨤚 34312341122125211
+𨤛 34312344453434251
+𨤜 34312341221353334
+𨤝 343123411221121212
+𨤞 34312341212251125214
+𨤟 343123432522112143112
+𨤠 343123454154132411121
+𨤡 343123441312212512134
+𨤢 23432511211
+𨤣 5312511211
+𨤤 2511211525
+𨤥 25112511211
+𨤦 251522511211
+𨤧 251121135234
+𨤨 322312511211
+𨤩 454342511211
+𨤪 2521342511211
+𨤫 4134342511211
+𨤬 1221342511211
+𨤭 134342342511211
+𨤮 251121143344334
+𨤯 312511211251251
+𨤰 3523411212511211
+𨤱 2511121342511211
+𨤲 15233134132511211
+𨤳 12341234132511211
+𨤴 31251121115112134
+𨤵 251121144143344334
+𨤶 312511211312511211
+𨤷 251121125112111251
+𨤸 12512343134132511211
+𨤹 312511211324111211234
+𨤺 134342341325112111254
+𨤻 1342523434343411212511211
+𨤼 312511211251141251251112213534
+𨤽 3411243135
+𨤾 3412112431
+𨤿 3411243134
+𨥀 3443412341
+𨥁 3411243154
+𨥂 34112431521
+𨥃 34112431135
+𨥄 34434312431
+𨥅 34112431134
+𨥆 34112431354
+𨥇 34112431124
+𨥈 34112431515
+𨥉 34112431252
+𨥊 341124313115
+𨥋 341124313112
+𨥌 341124313515
+𨥍 341124313452
+𨥎 341124313434
+𨥏 343434112431
+𨥐 341124313235
+𨥑 341124312121
+𨥒 351134112431
+𨥓 155334112431
+𨥔 341124311553
+𨥕 341124311154
+𨥖 341124315454
+𨥗 253434112431
+𨥘 341124313544
+𨥙 341124311132
+𨥚 341124311252
+𨥛 341124311551
+𨥜 341124313134
+𨥝 341124313354
+𨥞 341124313412
+𨥟 341124313415
+𨥠 341124315113
+𨥡 341124315435
+𨥢 545234112431
+𨥣 545234112431
+𨥤 341124315452
+𨥥 3411243153212
+𨥦 341124313523
+𨥧 341124313454
+𨥨 3411243154523
+𨥩 3411243135112
+𨥪 3411243144412
+𨥫 3535234112431
+𨥬 5315434112431
+𨥭 3411243145534
+𨥮 3411243111234
+𨥯 341124311554
+𨥰 3411243113251
+𨥱 3411243125341
+𨥲 1213534112431
+𨥳 3411243112523
+𨥴 1325134112431
+𨥵 3411243121354
+𨥶 3411243132154
+𨥷 3445434112431
+𨥸 3411243135345
+𨥹 3411243135515
+𨥺 3411243151554
+𨥻 3411243151254
+𨥼 3411243112345
+𨥽 3411243125251
+𨥾 3411243114312
+𨥿 3411243112115
+𨦀 3411243125152
+𨦁 3411243132121
+𨦂 3411243145245
+𨦃 34112431351234
+𨦄 34112431133415
+𨦅 34112431341234
+𨦆 34112431251115
+𨦇 34112431143134
+𨦈 34112431251221
+𨦉 34112431125234
+𨦊 34112431112115
+𨦋 43112134112431
+𨦌 34112431134153
+𨦍 34112431125125
+𨦎 34112431111354
+𨦏 34112431543454
+𨦐 34112431113544
+𨦑 34112431131215
+𨦒 34112431234353
+𨦓 34112431341214
+𨦔 53125134112431
+𨦕 34112431113222
+𨦖 34112431125345
+𨦗 34112431134334
+𨦘 34112431134515
+𨦙 34112431135422
+𨦚 34112431251134
+𨦛 34112431321344
+𨦜 34112431344315
+𨦝 34112431344353
+𨦞 34112431335414
+𨦟 34112431354152
+𨦠 11353434112431
+𨦡 34112431431112
+𨦢 34112431251134
+𨦣 34112431355435
+𨦤 34112431411215
+𨦥 34112431441525
+𨦦 34112431445112
+𨦧 34112431311212
+𨦨 34112431351252
+𨦩 34112431415531
+𨦪 34112431323552
+𨦫 34112431541541
+𨦬 341124311213312
+𨦭 341124314453112
+𨦮 44135434112431
+𨦯 341124313323554
+𨦰 341124311315251
+𨦱 341124313253541
+𨦲 341124311215453
+𨦳 341124312534251
+𨦴 321151134112431
+𨦵 34112431122345
+𨦶 341124311211134
+𨦷 322215434112431
+𨦸 341124312125135
+𨦹 34112431113252
+𨦺 341124312515215
+𨦻 341124312512153
+𨦼 341124314111251
+𨦽 341124314134251
+𨦾 341124313412354
+𨦿 341124311132422
+𨧀 341124311234121
+𨧁 441453534112431
+𨧂 341124314313222
+𨧃 341124311234251
+𨧄 341124311251125
+𨧅 341124311215213
+𨧆 341124311324251
+𨧇 341124311125345
+𨧈 341124311212115
+𨧉 341124312511531
+𨧊 315541434112431
+𨧋 354313434112431
+𨧌 341124313334154
+𨧍 341124313545554
+𨧎 121534434112431
+𨧏 341124312511135
+𨧐 341124313134251
+𨧑 341124313443121
+𨧒 451351534112431
+𨧓 341124313452121
+𨧔 354215434112431
+𨧕 341124314111251
+𨧖 341124314131234
+𨧗 341124314153333
+𨧘 341124314311322
+𨧙 341124315152251
+𨧚 341124315431134
+𨧛 341124312343134
+𨧜 34112431311352
+𨧝 341124313225111
+𨧞 34112431355254
+𨧟 341124315344544
+𨧠 341124313511112
+𨧡 341124315113251
+𨧢 341124312515322
+𨧣 341124311214535
+𨧤 341124314125152
+𨧥 3411243121211511
+𨧦 525325434112431
+𨧧 3411243113533434
+𨧨 3411243112122534
+𨧩 3411243144513251
+𨧪 3411243151145252
+𨧫 3411243112515112
+𨧬 3411243115112531
+𨧭 3123412134112431
+𨧮 5153523434112431
+𨧯 341124315231525
+𨧰 3411243131221135
+𨧱 3411243151352252
+𨧲 3411243141541234
+𨧳 3112522234112431
+𨧴 3411243113433454
+𨧵 3411243154523121
+𨧶 3411243112154534
+𨧷 3411243121123454
+𨧸 1234335434112431
+𨧹 3411243125113511
+𨧺 3411243131511234
+𨧻 3411243151541554
+𨧼 3411243112123553
+𨧽 452412134112431
+𨧾 3411243112541254
+𨧿 4334433434112431
+𨨀 3411243144535121
+𨨁 3411243144535121
+𨨂 3411243151125112
+𨨃 3411243152125111
+𨨄 3411243112523434
+𨨅 3411243112511534
+𨨆 3411243113443115
+𨨇 3411243112251135
+𨨈 3411243112125454
+𨨉 3411243112123435
+𨨊 3411243125111132
+𨨋 3411243125114334
+𨨌 3411243125113121
+𨨍 3411243121531553
+𨨎 341124313212152
+𨨏 3411243144153254
+𨨐 3411243132154252
+𨨑 3123425134112431
+𨨒 3411243134434554
+𨨓 3411243153111234
+𨨔 3411243135133541
+𨨕 3411243154134333
+𨨖 1121112134112431
+𨨗 1234123434112431
+𨨘 3411243112512554
+𨨙 3411243115545545
+𨨚 3411243123434334
+𨨛 3411243131234251
+𨨜 3411243134435215
+𨨝 3411243134112251
+𨨞 3411243134343312
+𨨟 3411243134544544
+𨨠 3411243135431234
+𨨡 3411243141533444
+𨨢 3411243143343534
+𨨣 3411243125111134
+𨨤 3411243144212154
+𨨥 3411243145351234
+𨨦 3411243112343134
+𨨧 3411243141431531
+𨨨 3411243133212121
+𨨩 3411243125124544
+𨨪 3411243131125222
+𨨫 3411243134431234
+𨨬 5551532234112431
+𨨭 341124311225454
+𨨮 3411243151535234
+𨨯 34112431111341134
+𨨰 34112431132522134
+𨨱 34112431441312251
+𨨲 34112431121121124
+𨨳 34112431354311252
+𨨴 34112431251115555
+𨨵 34112431132511132
+𨨶 34112431311212152
+𨨷 34112431445341344
+𨨸 34112431415251214
+𨨹 34112431134122111
+𨨺 24335412234112431
+𨨻 34112431543343554
+𨨼 41234112134112431
+𨨽 34112431355113134
+𨨾 21112112134112431
+𨨿 34112431445343454
+𨩀 34112431351331134
+𨩁 32511355134112431
+𨩂 31234355434112431
+𨩃 34112431111342511
+𨩄 34112431251141431
+𨩅 34112431441122134
+𨩆 34112431131531534
+𨩇 34112431122543112
+𨩈 34112431211352511
+𨩉 34112431352534134
+𨩊 34112431431253511
+𨩋 34112431251212511
+𨩌 34112431412234134
+𨩍 34112431431121531
+𨩎 34112431412514535
+𨩏 34112431415543112
+𨩐 34112431431234531
+𨩑 34112431132511132
+𨩒 34112431121121121
+𨩓 12112112134112431
+𨩔 3411243112354454
+𨩕 12511125434112431
+𨩖 34112431121234154
+𨩗 34112431251251251
+𨩘 34112431215315521
+𨩙 34112431535425221
+𨩚 34112431322511234
+𨩛 34112431251131121
+𨩜 34112431215315112
+𨩝 34112431215315511
+𨩞 34112431215315152
+𨩟 34112431252354251
+𨩠 34112431234325111
+𨩡 34112431252211354
+𨩢 34112431311325111
+𨩣 34112431345325221
+𨩤 34112431321511215
+𨩥 34112431121121124
+𨩦 3411243112235251
+𨩧 12254311234112431
+𨩨 34112431123425111
+𨩩 34112431251125111
+𨩪 34112431252251214
+𨩫 34112431321251134
+𨩬 34112431325341134
+𨩭 34112431344511534
+𨩮 34112431451325251
+𨩯 34112431352513553
+𨩰 34112431354131121
+𨩱 34112431414313333
+𨩲 34112431413534251
+𨩳 34112431431341121
+𨩴 34112431445341523
+𨩵 34112431445341354
+𨩶 34112431451135124
+𨩷 34112431512115154
+𨩸 34112431515515134
+𨩹 54521213534112431
+𨩺 34112431545233134
+𨩻 34112431545234354
+𨩼 34112431215112134
+𨩽 34112431215315151
+𨩾 34112431441411215
+𨩿 34112431132511521
+𨪀 34112431122111234
+𨪁 34112431125221531
+𨪂 34112431431353334
+𨪃 34112431412514512
+𨪄 12132525134112431
+𨪅 34112431532543115
+𨪆 34112431414312512
+𨪇 341124311221525211
+𨪈 341124313251213554
+𨪉 341124313321531535
+𨪊 341124314544251214
+𨪋 341124311122125211
+𨪌 341124311213352511
+𨪍 341124314412343531
+𨪎 341124311251153334
+𨪏 341124314134131134
+𨪐 341124315515515121
+𨪑 341124311534153422
+𨪒 341124312511525115
+𨪓 341124311212354251
+𨪔 312134112134112431
+𨪕 341124313552335523
+𨪖 251121112134112431
+𨪗 341124313143142534
+𨪘 341124311343344334
+𨪙 341124314123443124
+𨪚 341124311251112112
+𨪛 341124311332511234
+𨪜 341124312513414544
+𨪝 341124312153154134
+𨪞 341124314135425112
+𨪟 341124314125125112
+𨪠 341124311214153534
+𨪡 341124314134521515
+𨪢 341124314311213554
+𨪣 412534313434112431
+𨪤 341124315154151541
+𨪥 341124311121311234
+𨪦 341124311113431234
+𨪧 123434123434112431
+𨪨 341124312153153112
+𨪩 341124311212341234
+𨪪 341124311212451234
+𨪫 341124312534321511
+𨪬 341124312151122112
+𨪭 341124313513351112
+𨪮 341124315552433541
+𨪯 34112431332431454
+𨪰 341124313122113511
+𨪱 121211212134112431
+𨪲 341124311243125121
+𨪳 341124311325224334
+𨪴 341124311354412511
+𨪵 341124312511135251
+𨪶 341124312511445531
+𨪷 341124312512453541
+𨪸 34112431312122152
+𨪹 341124313121351121
+𨪺 341124313123434252
+𨪻 34112431313412132
+𨪼 341124313234343434
+𨪽 341124313251111121
+𨪾 341124313321531534
+𨪿 341124313545525121
+𨫀 341124315131221534
+𨫁 341124315433425154
+𨫂 341124314453434354
+𨫃 3411243144512143112
+𨫄 341124311121431121
+𨫅 341124313234125122
+𨫆 34112431413312154
+𨫇 341124313511431134
+𨫈 341124314133434121
+𨫉 341124312511121124
+𨫊 341124311252211234
+𨫋 341124311212511134
+𨫌 341124311224312511
+𨫍 341124311251214544
+𨫎 341124311121411214
+𨫏 3411243141554413412
+𨫐 3411243144535154121
+𨫑 3411243125125124544
+𨫒 3411243151312524444
+𨫓 3411243112513121534
+𨫔 1213512135434112431
+𨫕 3411243144511353134
+𨫖 3411243132251113533
+𨫗 3411243135251214334
+𨫘 3411243125125111252
+𨫙 3411243131251251354
+𨫚 3411243141251251112
+𨫛 3411243111125313251
+𨫜 3411243112342511234
+𨫝 3411243131132411121
+𨫞 3411243125111213435
+𨫟 3411243144153441234
+𨫠 3411243123432411121
+𨫡 341124313251111254
+𨫢 3411243141432535251
+𨫣 1121124134434112431
+𨫤 3411243154251124454
+𨫥 5213354412434112431
+𨫦 3411243113443112354
+𨫧 3411243154154132511
+𨫨 3411243112413444444
+𨫩 341124311251234454
+𨫪 3411243112212511134
+𨫫 3411243115132511134
+𨫬 3411243112251112315
+𨫭 341124315212135354
+𨫮 3411243111251113454
+𨫯 3411243125121444535
+𨫰 3411243125125125134
+𨫱 3411243112123541112
+𨫲 3411243112125213121
+𨫳 3411243112125435354
+𨫴 3411243121531525115
+𨫵 3411243125125115341
+𨫶 3411243121533525111
+𨫷 3411243135251214444
+𨫸 3411243134125125221
+𨫹 1112111213434112431
+𨫺 3411243111213542343
+𨫻 3411243112132411121
+𨫼 341124311121533134
+𨫽 3411243112124143112
+𨫾 3411243112512343134
+𨫿 3411243113433425221
+𨬀 3411243115321135334
+𨬁 3411243143125231324
+𨬂 3411243143342514544
+𨬃 3411243144535544544
+𨬄 3411243144543344334
+𨬅 341124314511543312
+𨬆 3411243114524444115
+𨬇 4112112135434112431
+𨬈 3411243141312341234
+𨬉 3411243112132411121
+𨬊 3411243112135213134
+𨬋 3411243125113525135
+𨬌 3411243125225111515
+𨬍 3411243152131213541
+𨬎 34112431314314251251
+𨬏 34112431312343531234
+𨬐 13431523353434112431
+𨬑 13312343123434112431
+𨬒 34112431121221113134
+𨬓 34112431121213415534
+𨬔 34112431511225111121
+𨬕 341124311225112143112
+𨬖 34112431513521521521
+𨬗 34112431333132511134
+𨬘 34112431121241541234
+𨬙 34112431414345252251
+𨬚 34112431224314325234
+𨬛 12122534253434112431
+𨬜 34112431131325111354
+𨬝 12135121531134112431
+𨬞 34112431344335554444
+𨬟 34112431122514143112
+𨬠 34112431252111213134
+𨬡 3411243144115151234
+𨬢 34112431431121413534
+𨬣 34112431431121325111
+𨬤 34112431412515214444
+𨬥 34112431443452511135
+𨬦 34112431413413153112
+𨬧 34112431412525112521
+𨬨 34112431415445543112
+𨬩 34112431112111213415
+𨬪 12212512111534112431
+𨬫 34112431252125143135
+𨬬 34112431445125125121
+𨬭 34112431224314311252
+𨬮 12345452123434112431
+𨬯 34112431513241343112
+𨬰 34112431121132511134
+𨬱 34112431251251251115
+𨬲 34112431215315431112
+𨬳 34112431215315353112
+𨬴 34112431214513425111
+𨬵 34112431251112143112
+𨬶 34112431121232411121
+𨬷 34112431215315251521
+𨬸 34112431252211353334
+𨬹 34112431325221323434
+𨬺 34112431324111212534
+𨬻 34112431314314121124
+𨬼 34112431314314121251
+𨬽 5534511545234112431
+𨬾 34112431314314511112
+𨬿 34112431121154121534
+𨭀 34112431122112543112
+𨭁 34112431134433424134
+𨭂 34112431145234343434
+𨭃 34112431243452511523
+𨭄 3411243125111222134
+𨭅 34112431252415425211
+𨭆 34112431254312114444
+𨭇 34112431334343434121
+𨭈 3411243135312225121
+𨭉 41341121215434112431
+𨭊 34112431433443344535
+𨭋 34112431445132522112
+𨭌 34112431121251431333
+𨭍 34112431211121114544
+𨭎 34112431121251431251
+𨭏 34112431351144534121
+𨭐 34112431251251251112
+𨭑 55444441543534112431
+𨭒 34112431351144534121
+𨭓 34112431121121251534
+𨭔 55423455423434112431
+𨭕 341124313541541251431
+𨭖 341124314125251125111
+𨭗 341124313412524312511
+𨭘 34112431251251115151
+𨭙 341124314451122134515
+𨭚 341124311252211123422
+𨭛 341124311212251135345
+𨭜 341124312511252214153
+𨭝 341124313551131344444
+𨭞 415251354134112431354
+𨭟 341124311121214444534
+𨭠 341124311221251123312
+𨭡 341124314413443321511
+𨭢 341124314143125111344
+𨭣 341124311234123452134
+𨭤 341124314135221354152
+𨭥 341124312243143111234
+𨭦 341124312525125111341
+𨭧 445251112511134112431
+𨭨 341124314315545544544
+𨭩 341124314143112343312
+𨭪 34112431431325111454
+𨭫 34112431132522111454
+𨭬 341124311212251125214
+𨭭 341124311452413434154
+𨭮 341124311534153425221
+𨭯 341124311221251112153
+𨭰 341124311221112513121
+𨭱 341124311212511211534
+𨭲 341124312113251131121
+𨭳 341124312512512251251
+𨭴 341124312153152513112
+𨭵 341124312522112211154
+𨭶 341124313525121134112
+𨭷 341124313532511154444
+𨭸 341124311212514311254
+𨭹 341124311225431121344
+𨭺 341124311234123411234
+𨭻 124134434112134112431
+𨭼 341124311344325114334
+𨭽 341124312523241112153
+𨭾 341124313215113524134
+𨭿 341124313215115445445
+𨮀 341124313241112113251
+𨮁 34112431325431234115
+𨮂 341124313535112533112
+𨮃 341124313535212155121
+𨮄 341124314454315112234
+𨮅 341124315415411343434
+𨮆 3211251251511134112431
+𨮇 34112431122353251214
+𨮈 341124314143125113534
+𨮉 341124315113251431112
+𨮊 341124311221113454412
+𨮋 341124313412511224544
+𨮌 341124315452132511134
+𨮍 341124314125251131234
+𨮎 34112431122441354251
+𨮏 341124312135454431234
+𨮐 34112431331225111454
+𨮑 341124313225232411121
+𨮒 3411243121212522145354
+𨮓 3411243132224314311134
+𨮔 341124313211152511134
+𨮕 3411243155155151213312
+𨮖 321115251113434112431
+𨮗 3411243121531522521134
+𨮘 3411243144552132511134
+𨮙 3411243141251451353334
+𨮚 3411243112135155115251
+𨮛 3411243141354154134333
+𨮜 4411251112331234112431
+𨮝 2243143112112434112431
+𨮞 3411243141352211515121
+𨮟 3411243144112212511134
+𨮠 2431353411243125113511
+𨮡 3411243121531512135124
+𨮢 3411243125251212525111
+𨮣 3411243121531525221112
+𨮤 3411243112123415113251
+𨮥 3411243112124453434251
+𨮦 3411243121531555124134
+𨮧 3411243131122221354152
+𨮨 3411243155444432511252
+𨮩 3411243112135155115251
+𨮪 1342523434343434112431
+𨮫 3411243112511121555121
+𨮬 3411243112522111234124
+𨮭 3411243113122111343312
+𨮮 3411243113252211125111
+𨮯 3411243113412513121534
+𨮰 3411243131431425111132
+𨮱 3411243131431425122511
+𨮲 4112112112135434112431
+𨮳 3411243154251135354444
+𨮴 3411243154334125143135
+𨮵 341124311224511353334
+𨮶 3411243144112522111234
+𨮷 3411243121212343434341
+𨮸 34112431354533411243122
+𨮹 3411243141432512251454
+𨮺 34112431312341354352511
+𨮻 34112431413251121135121
+𨮼 34112431314314131251534
+𨮽 34112431134342343542343
+𨮾 34112431121525121251124
+𨮿 3411243131431412132511
+𨯀 34112431312341354352511
+𨯁 34112431123454251124454
+𨯂 34112431145241341311534
+𨯃 34112431251125125313134
+𨯄 34112431413522115354334
+𨯅 34112431131212251125214
+𨯆 34112431431121312212511
+𨯇 34112431413123512353112
+𨯈 34112431445134432511234
+𨯉 34112431113411341251112
+𨯊 3411243114524134312154
+𨯋 34112431125112441533134
+𨯌 3411243112121251112454
+𨯍 12121311345313434112431
+𨯎 34112431353414524134511
+𨯏 34112431311213112131121
+𨯐 34112431312251312251121
+𨯑 34112431324143125114544
+𨯒 34112431121211121111534
+𨯓 3411243112235445411234
+𨯔 25121251212512134112431
+𨯕 34112431312125121112111
+𨯖 34112431344325234343434
+𨯗 34112431433443344511214
+𨯘 34112431323412512513434
+𨯙 34112431413522154544354
+𨯚 34112431111211125114544
+𨯛 341124311225234451154
+𨯜 32112512515114534112431
+𨯝 3411243152131212511454
+𨯞 515125121125121134112431
+𨯟 341124311452413432411121
+𨯠 341124312121252214525111
+𨯡 341124313413425234343434
+𨯢 341124314125125112121112
+𨯣 3411243133231121215211234
+𨯤 341124314152513511531354
+𨯥 341124313143143253411535
+𨯦 341124314143112342511135
+𨯧 341124311221251211354444
+𨯨 341124311212514312514444
+𨯩 341124313121353121352511
+𨯪 341124311225111234541541
+𨯫 341124311212251251251115
+𨯬 341124312525221125135341
+𨯭 34112431515515122134454
+𨯮 341124312511121211212112
+𨯯 34112431251212511134454
+𨯰 341124313211343451145521
+𨯱 341124311221125431121534
+𨯲 341124311251431132511134
+𨯳 224314311252355434112431
+𨯴 341124312522112514313312
+𨯵 341124313211251251511134
+𨯶 341124314453112252214544
+𨯷 34112431122543341251431
+𨯸 341124313123435132511134
+𨯹 341124313143141211254444
+𨯺 34112431321125125151114334
+𨯻 3411243114524134251251251
+𨯼 3411243121531525121122134
+𨯽 341124313143144134522554
+𨯾 341124313211152511134112
+𨯿 3411243112512531134112431
+𨰀 3411243111341134451251112
+𨰁 3411243125225125132411121
+𨰂 341124311224135221154444
+𨰃 3411243125111342511134531
+𨰄 341124312522112513534454
+𨰅 3411243141352211515151515
+𨰆 3411243144534335433543354
+𨰇 3411243134125125134343134
+𨰈 341124311223525131343112
+𨰉 34112431314314251111323312
+𨰊 34112431415251354141431354
+𨰋 3411243145242512211251431
+𨰌 12212511235411125134112431
+𨰍 34112431251214251214251214
+𨰎 34112431511225113525111534
+𨰏 34112431511225112511541541
+𨰐 34112431321132534151114334
+𨰑 34112431121254154132411121
+𨰒 21213434134345225134112431
+𨰓 34112431314314511225113511
+𨰔 34112431445252213412514444
+𨰕 34112431121251211121111534
+𨰖 34112431135333413533344334
+𨰗 34112431121212512531125221
+𨰘 34112431111221112521251431
+𨰙 34112431554444554444251214
+𨰚 34112431324111213241112154
+𨰛 34112431224313425234343434
+𨰜 3411243134432522151154124
+𨰝 34112431314314511225112511
+𨰞 341124314131235123531112111
+𨰟 341124312522154354115154444
+𨰠 341124314152513541431112354
+𨰡 341124311342523434343411214
+𨰢 212134341343452355434112431
+𨰣 341124311254125441352211515
+𨰤 341124311212325115545541234
+𨰥 341124314312341344132511134
+𨰦 341124314451121352342511134
+𨰧 341124314454143125111515111
+𨰨 3411243132112512515111344334
+𨰩 4125125112121112313434112431
+𨰪 3411243134312342522112143112
+𨰫 3411243125125113121221113134
+𨰬 3411243144511221341211254444
+𨰭 3411243131431425111134554234
+𨰮 3411243141251251121211122154
+𨰯 4125125112121112215434112431
+𨰰 3411243144511213112522511134
+𨰱 2534325112534253434112431
+𨰲 34112431125125311252212511135
+𨰳 34112431212534444412511251522
+𨰴 34112431251141251251112213534
+𨰵 12511121251112125111234112431
+𨰶 34112431125125352512134112431
+𨰷 341124313211251251511452511134
+𨰸 341124314111251121211121111534
+𨰹 341124311251253112522134112431
+𨰺 3411243141112515544445544443134
+𨰻 34112431341124313411243134112431
+𨰼 34112431411125155444455444434112431
+𨰽 34112431411125155444455444432511154444
+𨰾 31115551
+𨰿 31115315
+𨱀 311151551
+𨱁 311153554
+𨱂 311153235
+𨱃 3111533544
+𨱄 3111552252
+𨱅 3111534333
+𨱆 3111513534
+𨱇 311151241344
+𨱈 311151251234
+𨱉 3111541251234
+𨱊 3111551352252
+𨱋 3111512134354
+𨱌 3111555212534
+𨱍 3111545115452
+𨱎 31115341251122
+𨱏 31115122341251
+𨱐 3111551312524444
+𨱑 3111512212512134
+𨱒 3111512512343534
+𨱓 31115324111214444
+𨱔 31115431253511124
+𨱕 311153535112533112
+𨱖 311153322521353134
+𨱗 12341534
+𨱘 1243134
+𨱙 121115435
+𨱚 12111543554
+𨱛 12111543554
+𨱜 12111541254
+𨱝 12111543134
+𨱞 12111543115
+𨱟 12111543534
+𨱠 12111543511
+𨱡 12111543515
+𨱢 12111545452
+𨱣 12111545454
+𨱤 12111544535
+𨱥 132412111534
+𨱦 121115452252
+𨱧 121115455453
+𨱨 121115454523
+𨱩 121115431334
+𨱪 121115435414
+𨱫 121115412211
+𨱬 121115421251
+𨱭 121115425115
+𨱮 121115425154
+𨱯 121115434234
+𨱰 121115451532
+𨱱 121115455414
+𨱲 1211154212135
+𨱳 1211154313344
+𨱴 1211154354251
+𨱵 1211154341534
+𨱶 12111545121121
+𨱷 1211154312135
+𨱸 1211154252211
+𨱹 1211154341254
+𨱺 1211154121132
+𨱻 1211154121251
+𨱼 13543512111534
+𨱽 1211154251153
+𨱾 12111534151534
+𨱿 1211154113534
+𨲀 12111541121132
+𨲁 12111543134234
+𨲂 12111541213234
+𨲃 12111542511234
+𨲄 12111545423454
+𨲅 121115345344544
+𨲆 12111542433541
+𨲇 121115444511234
+𨲈 121115432411121
+𨲉 1211154312121211
+𨲊 121115425213112
+𨲋 121115432511312
+𨲌 121115434435112
+𨲍 1211153412111534
+𨲎 121115425113533
+𨲏 121115443113455
+𨲐 121115435413241
+𨲑 121115453541154
+𨲒 121115451124134
+𨲓 1211154234325111
+𨲔 1211154345235354
+𨲕 1211154131213541
+𨲖 2511252141211154
+𨲗 12125143112111534
+𨲘 1211154121325114
+𨲙 1211154132511134
+𨲚 1211154312341121
+𨲛 1211154431325111
+𨲜 1211154451325122
+𨲝 12111542121153115
+𨲞 12111542511353322
+𨲟 12111544453434251
+𨲠 12111544311213121
+𨲡 12111543143141132
+𨲢 12111541125241121
+𨲣 12111541125241121
+𨲤 12111541213352511
+𨲥 121115435251213112
+𨲦 121115421211525111
+𨲧 121115433234342134
+𨲨 121115441431331121
+𨲩 121115425112522154
+𨲪 121115411212511134
+𨲫 12111543541112454
+𨲬 121115454523313453
+𨲭 1211154313425125251
+𨲮 1211154433443344553
+𨲯 1211154432524312511
+𨲰 1211154311535113511
+𨲱 1211154545454342444
+𨲲 1211154252251135345
+𨲳 12111542512211311534
+𨲴 12111541212251125214
+𨲵 12111544125251125111
+𨲶 12111545225241533134
+𨲷 121115344125251125111
+𨲸 121115444545442522112
+𨲹 121115412132411121534
+𨲺 121115444512332511134
+𨲻 1211154323434343413121
+𨲼 1211154343425234343434
+𨲽 1211154113411342511134
+𨲾 1211154325111445354153
+𨲿 1211154354251212511134
+𨳀 12111544112112544443534
+𨳁 12111544143135411515111
+𨳂 121115435251153535251354
+𨳃 121115441251251112213534
+𨳄 12111543121353121352511134
+𨳅 1211154445354143135411515111
+𨳆 12111541251245251251112213534
+𨳇 11512251
+𨳈 25115112
+𨳉 511225114
+𨳊 5112251135
+𨳋 5112251135
+𨳌 1151122511
+𨳍 5112251115
+𨳎 5112251111
+𨳏 1151122511
+𨳐 51122511531
+𨳑 51122511415
+𨳒 51122511234
+𨳓 51122511134
+𨳔 11151122511
+𨳕 51122511521
+𨳖 51122511555
+𨳗 511225113454
+𨳘 511225111525
+𨳙 511225112534
+𨳚 511225113453
+𨳛 511225113554
+𨳜 511225113312
+𨳝 511225113121
+𨳞 511225115211
+𨳟 511225115254
+𨳠 511225112534
+𨳡 511225113121
+𨳢 511225113224
+𨳣 511225113415
+𨳤 511225115152
+𨳥 511225115434
+𨳦 511225115454
+𨳧 511225111354
+𨳨 511225111134
+𨳩 511225111132
+𨳪 511225111252
+𨳫 511225111324
+𨳬 511225115113
+𨳭 511225113215
+𨳮 511225111534
+𨳯 511225113112
+𨳰 511225113112
+𨳱 311251122511
+𨳲 511225114124
+𨳳 5112251141121
+𨳴 5112251135234
+𨳵 5112251112534
+𨳶 5112251151515
+𨳷 5112251144535
+𨳸 5112251125121
+𨳹 5112251152212
+𨳺 5112251131134
+𨳻 5112251144535
+𨳼 5112251112211
+𨳽 5112251112511
+𨳾 5112251113251
+𨳿 5112251135424
+𨴀 5112251125251
+𨴁 5112251125112
+𨴂 5112251111132
+𨴃 5112251131211
+𨴄 5112251125115
+𨴅 5112251135352
+𨴆 5112251112112
+𨴇 5112251112431
+𨴈 5112251113241
+𨴉 5112251115254
+𨴊 5112251131134
+𨴋 5112251141554
+𨴌 5112251154511
+𨴍 51122511543112
+𨴎 51122511132522
+𨴏 51122511251251
+𨴐 51122511312135
+𨴑 51122511111215
+𨴒 51122511111253
+𨴓 51122511351355
+𨴔 51122511523522
+𨴕 51122511252211
+𨴖 51122511353334
+𨴗 51122511154121
+𨴘 51122511545211
+𨴙 11511225114334
+𨴚 11211251122511
+𨴛 51122511121335
+𨴜 51122511132511
+𨴝 51122511251112
+𨴞 51122511311212
+𨴟 51122511323232
+𨴠 51122511332112
+𨴡 51122511341534
+𨴢 51122511354354
+𨴣 51122511445531
+𨴤 51122511441415
+𨴥 51122511445315
+𨴦 54111251122511
+𨴧 51122511323354
+𨴨 511225111251234
+𨴩 511225113411234
+𨴪 511225111251124
+𨴫 511225113443521
+𨴬 511225113121251
+𨴭 511225115425112
+𨴮 511225114314544
+𨴯 511225111353334
+𨴰 511225113231211
+𨴱 511225115431134
+𨴲 511225114143112
+𨴳 511225113233534
+𨴴 511225113212134
+𨴵 511225114451354
+𨴶 511225113533453
+𨴷 511225113123453
+𨴸 511225111132333
+𨴹 511225111213521
+𨴺 511225111234124
+𨴻 511225112511211
+𨴼 511225112511135
+𨴽 511225112514544
+𨴾 511225112515322
+𨴿 511225113212154
+𨵀 511225113225111
+𨵁 511225113232511
+𨵂 511225113515252
+𨵃 511225113525135
+𨵄 511225114451135
+𨵅 511225113212512
+𨵆 511225113554234
+𨵇 511225115313534
+𨵈 5112251131112111
+𨵉 5112251112143112
+𨵊 5112251115341534
+𨵋 5112251131234531
+𨵌 511225115212512
+𨵍 5112251144121251
+𨵎 51122511414312512
+𨵏 5112251125111124
+𨵐 5112251135413554
+𨵑 5112251115231522
+𨵒 5112251125113132
+𨵓 5112251125122512
+𨵔 5112251144154251
+𨵕 5112251154251214
+𨵖 5112251125124544
+𨵗 5112251112112124
+𨵘 5112251121531535
+𨵙 5112251125111134
+𨵚 5112251125111234
+𨵛 5112251125113511
+𨵜 5112251125125115
+𨵝 5112251125342511
+𨵞 5112251131221135
+𨵟 5112251135115254
+𨵠 5112251151312152
+𨵡 5112251151352252
+𨵢 5112251125111134
+𨵣 2211213451122511
+𨵤 5112251113412512
+𨵥 51122511234325111
+𨵦 51122511341351122
+𨵧 51122511251225251
+𨵨 51122511441325221
+𨵩 51122511125125121
+𨵪 51122511132511134
+𨵫 51122511121213251
+𨵬 5112251152511534
+𨵭 5112251151111254
+𨵮 51122511312511211
+𨵯 51122511111225221
+𨵰 51122511124124124
+𨵱 51122511513154121
+𨵲 51122511134425221
+𨵳 51122511122151234
+𨵴 51122511122543112
+𨵵 51122511134425221
+𨵶 51122511251113533
+𨵷 51122511251125221
+𨵸 51122511321251134
+𨵹 51122511321511132
+𨵺 51122511323554234
+𨵻 51122511344322511
+𨵼 51122511342342342
+𨵽 51122511515152511
+𨵾 51122511521251252
+𨵿 51122511554554132
+𨶀 511225111212341251
+𨶁 511225112511445531
+𨶂 511225114313425221
+𨶃 511225114111251315
+𨶄 115112251132411121
+𨶅 511225114311214444
+𨶆 511225113415113251
+𨶇 511225113251154444
+𨶈 511225114135112251
+𨶉 511225115213554234
+𨶊 323241112151122511
+𨶋 511225115433411234
+𨶌 51122511431234454
+𨶍 511225112524312511
+𨶎 511225112512511134
+𨶏 511225113112525134
+𨶐 51122511312251454
+𨶑 511225113251111344
+𨶒 511225113443321511
+𨶓 341234511225111234
+𨶔 511225114311135254
+𨶕 511225114311133534
+𨶖 511225114413515251
+𨶗 511225114414511534
+𨶘 511225115155151132
+𨶙 511225115425113535
+𨶚 511225115545543121
+𨶛 511225111212511134
+𨶜 5112251112514314412
+𨶝 5112251141251521354
+𨶞 5112251151125113554
+𨶟 5112251154154134511
+𨶠 5112251132511154444
+𨶡 5112251141112514544
+𨶢 5112251135251214444
+𨶣 5112251145434251214
+𨶤 5112251141431251112
+𨶥 5112251151525151134
+𨶦 5112251135311343534
+𨶧 5112251135251212511
+𨶨 5112251132251113422
+𨶩 5112251143112125221
+𨶪 5112251154154134333
+𨶫 5112251135445411234
+𨶬 51122511511121251211
+𨶭 51122511311222214444
+𨶮 51122511121451251431
+𨶯 51122511254312114444
+𨶰 51122511122112512134
+𨶱 51122511121211212112
+𨶲 51122511324111214444
+𨶳 51122511112342511135
+𨶴 51122511251251251121
+𨶵 5112251112522112152
+𨶶 5112251113412132511
+𨶷 51122511515515122134
+𨶸 51122511343123425121
+𨶹 51122511554234554234
+𨶺 51122511253425342534
+𨶻 51122511414312511211
+𨶼 41435251122511341251
+𨶽 51312251511225111121
+𨶾 51122511515253541121
+𨶿 51122511543341251431
+𨷀 51122511554444354251
+𨷁 51122511121121121135
+𨷂 51122511121431125254
+𨷃 51122511431353334454
+𨷄 51122511251112132511
+𨷅 511225112543121135121
+𨷆 511225113134211121111
+𨷇 511225114412534125221
+𨷈 51122511122251125214
+𨷉 511225114413552152511
+𨷊 511225115154151541134
+𨷋 511225113322521353134
+𨷌 511225113535112251214
+𨷍 51122511352511515115
+𨷎 134354354511225111121
+𨷏 511225111452444425121
+𨷐 511225114334251125221
+𨷑 431121134511225111132
+𨷒 511225112135331353352
+𨷓 511225114135221154444
+𨷔 5112251131254312114444
+𨷕 511225113215111213554
+𨷖 5112251155155151213312
+𨷗 511225111234341252511
+𨷘 5112251114524444132522
+𨷙 5112251141251521354121
+𨷚 5112251144552132511134
+𨷛 5112251144545434251214
+𨷜 5112251112112544444134
+𨷝 5112251112211125111135
+𨷞 5112251135311345452134
+𨷟 5112251135251251115151
+𨷠 51122511413251121134121
+𨷡 51122511121211121111534
+𨷢 51122511135333443344334
+𨷣 51122511332252111213134
+𨷤 51122511252211212513534
+𨷥 51122511311343113431134
+𨷦 511225111331234312342121
+𨷧 511225111121351134435112
+𨷨 511225112113525121122134
+𨷩 511225111251431132511134
+𨷪 511225113211511342511134
+𨷫 341124313241112151122511
+𨷬 511225113413425234343434
+𨷭 511225114132543121134121
+𨷮 511225115112251151122511
+𨷯 511225113211152511134112
+𨷰 5112251114524134251251251
+𨷱 5112251135443112523554234
+𨷲 5112251134125125125125122
+𨷳 5112251112124135221154444
+𨷴 5112251135444111251554234
+𨷵 5112251135453121551213312
+𨷶 321115251113411251122511
+𨷷 51122511251214251214251214
+𨷸 51122511354141112513554234
+𨷹 51122511135333413533344334
+𨷺 5112251135251253415511511
+𨷻 511225114111251554444554444
+𨷼 51122511135333413533341353334
+𨷽 51122511125125312125344444125221
+𨷾 51122511511225115112251151122511
+𨷿 425553
+𨸀 425521
+𨸁 425415
+𨸂 4254153
+𨸃 4253115
+𨸄 425511534
+𨸅 425154121
+𨸆 425125125121
+𨸇 425321251134
+𨸈 425431121134
+𨸉 425122341251
+𨸊 4253112525134
+𨸋 425324111214444
+𨸌 425121451251431
+𨸍 3544251215425221
+𨸎 42534125125125125122
+𨸏 32515151
+𨸐 5253
+𨸑 5215
+𨸒 5235
+𨸓 5253
+𨸔 5235
+𨸕 5254
+𨸖 52121
+𨸗 52112
+𨸘 52413
+𨸙 5252
+𨸚 523554
+𨸛 523115
+𨸜 523554
+𨸝 523515
+𨸞 521554
+𨸟 521345
+𨸠 521254
+𨸡 523112
+𨸢 523312
+𨸣 523553
+𨸤 523534
+𨸥 325151511132
+𨸦 521132
+𨸧 521551
+𨸨 522511
+𨸩 523134
+𨸪 5212135
+𨸫 5241554
+𨸬 5225112
+𨸭 5212515
+𨸮 5235251
+𨸯 5233544
+𨸰 5251335
+𨸱 5225211
+𨸲 521252
+𨸳 5253521
+𨸴 5231252
+𨸵 5244515
+𨸶 5214312
+𨸷 3251515135135
+𨸸 5211252
+𨸹 5213241
+𨸺 5225112
+𨸻 5235454
+𨸼 5245434
+𨸽 5215454
+𨸾 5221135
+𨸿 3251515113241
+𨹀 52212135
+𨹁 52251214
+𨹂 52243135
+𨹃 52531234
+𨹄 52351234
+𨹅 52325151
+𨹆 52542511
+𨹇 32515151134534
+𨹈 52344334
+𨹉 52342534
+𨹊 52343434
+𨹋 52351121
+𨹌 52253434
+𨹍 52413434
+𨹎 52251115
+𨹏 52445315
+𨹐 52351251
+𨹑 52341121
+𨹒 521334534
+𨹓 52354252
+𨹔 52355215
+𨹕 52445515
+𨹖 52451335
+𨹗 52431132
+𨹘 524135452
+𨹙 521134251
+𨹚 52135534
+𨹛 524153121
+𨹜 521251431
+𨹝 522515215
+𨹞 521342511
+𨹟 521125345
+𨹠 523541354
+𨹡 525435121
+𨹢 523443121
+𨹣 525135215
+𨹤 523251214
+𨹥 524351523
+𨹦 522511234
+𨹧 521121354
+𨹨 522511135
+𨹩 523411134
+𨹪 524325135
+𨹫 523434121
+𨹬 522513251
+𨹭 521324251
+𨹮 521213234
+𨹯 521212115
+𨹰 522522111
+𨹱 523132312
+𨹲 52354333
+𨹳 523123453
+𨹴 523443521
+𨹵 5243113455
+𨹶 5254545411
+𨹷 5215112531
+𨹸 5253251121
+𨹹 5235113511
+𨹺 5232515112
+𨹻 5225122134
+𨹼 5215351234
+𨹽 5225431252
+𨹾 5235414334
+𨹿 5235425111
+𨺀 32515134312345
+𨺁 5225111234
+𨺂 5252413452
+𨺃 5235121251
+𨺄 5234433121
+𨺅 325151515151515
+𨺆 5225111134
+𨺇 5215112134
+𨺈 5213443115
+𨺉 5233441234
+𨺊 5241224512
+𨺋 5244535455
+𨺌 5212211134
+𨺍 5213425115
+𨺎 5212251154
+𨺏 5221123454
+𨺐 5225114512
+𨺑 5221251112
+𨺒 5225113132
+𨺓 5235431121
+𨺔 3251511251145252
+𨺕 5213443515
+𨺖 5213541354
+𨺗 5221212134
+𨺘 5231212154
+𨺙 5232151135
+𨺚 5235411252
+𨺛 5235412121
+𨺜 5251145252
+𨺝 5254545454
+𨺞 5214313452
+𨺟 52212511134
+𨺠 52331225111
+𨺡 52345235354
+𨺢 52351251214
+𨺣 52321113554
+𨺤 52125125121
+𨺥 52413425135
+𨺦 52445433454
+𨺧 52431253511
+𨺨 52251251115
+𨺩 5251111254
+𨺪 52311221252
+𨺫 32115113432515151
+𨺬 52251213432
+𨺭 52313434252
+𨺮 52541121354
+𨺯 52251214544
+𨺰 52431121134
+𨺱 52412514512
+𨺲 52325125214
+𨺳 52542511253
+𨺴 52344154121
+𨺵 32515151431353334
+𨺶 52123434354
+𨺷 52251125251
+𨺸 52251135352
+𨺹 52312344334
+𨺺 5232151134
+𨺻 52344322511
+𨺼 52354112121
+𨺽 52512115154
+𨺾 52344312121
+𨺿 52122111531
+𨻀 523253411515
+𨻁 523251114544
+𨻂 522511445531
+𨻃 521311121115
+𨻄 523251111234
+𨻅 525435354252
+𨻆 523321531535
+𨻇 521212341251
+𨻈 522432511134
+𨻉 525515115121
+𨻊 521343434121
+𨻋 521554554121
+𨻌 523234343434
+𨻍 525225211234
+𨻎 522524135354
+𨻏 325151511343434121
+𨻐 521353334121
+𨻑 325151123251154444
+𨻒 521314334534
+𨻓 524154325251
+𨻔 523411543541
+𨻕 524134122111
+𨻖 524312343134
+𨻗 525454541234
+𨻘 521515122134
+𨻙 522511243135
+𨻚 521344325115
+𨻛 521221125251
+𨻜 521221251121
+𨻝 521341211154
+𨻞 522512134251
+𨻟 522511311534
+𨻠 522511125251
+𨻡 52325151454
+𨻢 521325224334
+𨻣 521332511234
+𨻤 521343434531
+𨻥 522511122431
+𨻦 523541251214
+𨻧 523545325121
+𨻨 525552511134
+𨻩 525552511234
+𨻪 325151512524135354
+𨻫 524143125115
+𨻬 523251111344
+𨻭 521511251431
+𨻮 5244511353134
+𨻯 5212111251431
+𨻰 521321511234
+𨻱 5225235113511
+𨻲 5221531534312
+𨻳 5212121154444
+𨻴 52445353121251
+𨻵 5225232411121
+𨻶 5223432511234
+𨻷 5241351124134
+𨻸 5254154132511
+𨻹 5243112125221
+𨻺 5215132511134
+𨻻 5225112512531
+𨻼 5231112111121
+𨻽 5225121554234
+𨻾 5233434343412
+𨻿 3251515154154132511
+𨼀 5241554453112
+𨼁 5241534153121
+𨼂 5212211134121
+𨼃 5212251112315
+𨼄 5215153121251
+𨼅 5225234112431
+𨼆 5212125114544
+𨼇 5235415231121
+𨼈 5244535121251
+𨼉 5254154135115
+𨼊 52311222214444
+𨼋 52215315225211
+𨼌 52341124313534
+𨼍 52325111111112
+𨼎 52554444535215
+𨼏 52132522132522
+𨼐 52153515352511
+𨼑 52513121325114
+𨼒 52251251251112
+𨼓 52311342512511
+𨼔 52511121251124
+𨼕 32515151332131213541
+𨼖 52351135113511
+𨼗 52251125112511
+𨼘 52132511453535
+𨼙 52121241541234
+𨼚 52211121114544
+𨼛 52412211453512
+𨼜 52121235431121
+𨼝 52511225111234
+𨼞 52121235311252
+𨼟 52325343123415
+𨼠 52343123425121
+𨼡 52122511113535
+𨼢 52121131212511
+𨼣 52122114534112
+𨼤 52125112343534
+𨼥 52251112211154
+𨼦 52334343434121
+𨼧 52351334121251
+𨼨 52414345252515
+𨼩 52121251431251
+𨼪 521234123452134
+𨼫 522153151353334
+𨼬 523535112533112
+𨼭 524451122134515
+𨼮 523513354111251
+𨼯 523443533511534
+𨼰 521312113121121
+𨼱 32515151513441521515
+𨼲 52122341211154
+𨼳 521221112513121
+𨼴 522434525125121
+𨼵 523143143121251
+𨼶 523412512514544
+𨼷 522512211251431
+𨼸 522522112143112
+𨼹 523143141234341
+𨼺 524312343542111
+𨼻 52524143253354531
+𨼼 521251234435215
+𨼽 3251512153151353334
+𨼾 524313533344444
+𨼿 5212124511353334
+𨽀 5213251135411344
+𨽁 5212211154323334
+𨽂 5232224314311134
+𨽃 5243344334354152
+𨽄 3251515112513441521515
+𨽅 5214522213425115
+𨽆 5235413341251431
+𨽇 5235251214444112
+𨽈 521221215425221
+𨽉 522522112132511
+𨽊 5235251353525135
+𨽋 5213121131212511
+𨽌 5233431215111234
+𨽍 52121252212511134
+𨽎 52431353334342444
+𨽏 52413122112512134
+𨽐 52121351213512135
+𨽑 52344325113533333
+𨽒 52445134432511234
+𨽓 52433443344511214
+𨽔 52413511342511134
+𨽕 5214524134312154
+𨽖 524112112544443534
+𨽗 522121233132511134
+𨽘 5241432533543211531
+𨽙 523413541551234341
+𨽚 522153151251254312
+𨽛 5243135333445452
+𨽜 522153152512125221
+𨽝 325151511221251141521515
+𨽞 521221251211354444
+𨽟 52251212511134454
+𨽠 523211511342511134
+𨽡 325151514313533345151515
+𨽢 5241251251112213534
+𨽣 5212122512512511234
+𨽤 5212134252212511134
+𨽥 5221212331211254444
+𨽦 52122111122111122111
+𨽧 52212125125132411121
+𨽨 52153515351251254312
+𨽩 32515151112212521141521515
+𨽪 32515112431342522132515112
+𨽫 32515112522134522134522134
+𨽬 521341221123412211234
+𨽭 523412251125111234341
+𨽮 5212512343134211121111
+𨽯 5233215315343321531534
+𨽰 52252343525234352523435
+𨽱 32515112252343225234352523435
+𨽲 52145241342512512511234341
+𨽳 52153515352511251214251214
+𨽴 325151511221134234234234241521515
+𨽵 3251515143135333445443345151515
+𨽶 5112413425121
+𨽷 41533451124134
+𨽸 121115451124134
+𨽹 153113451124134
+𨽺 352513551124134
+𨽻 151123451124134
+𨽼 5112413451124134
+𨽽 5513325251124134
+𨽾 2111123451124134
+𨽿 54251123451124134
+𨾀 522521123451124134
+𨾁 342111123451124134
+𨾂 5112413425121122134
+𨾃 54251135333451124134
+𨾄 2524314334433451124134
+𨾅 1532411121
+𨾆 5332411121
+𨾇 2432411121
+𨾈 51332411121
+𨾉 35432411121
+𨾊 12132411121
+𨾋 51332411121
+𨾌 11232411121
+𨾍 15432411121
+𨾎 324111215134
+𨾏 32411121354
+𨾐 51232411121
+𨾑 51232411121
+𨾒 413532411121
+𨾓 153432411121
+𨾔 415332411121
+𨾕 513432411121
+𨾖 1212132411121
+𨾗 324111215134
+𨾘 313432411121
+𨾙 151232411121
+𨾚 113432411121
+𨾛 351532411121
+𨾜 324111211154
+𨾝 343432411121
+𨾞 354432411121
+𨾟 311232411121
+𨾠 3415432411121
+𨾡 2511232411121
+𨾢 1211532411121
+𨾣 5452332411121
+𨾤 3113432411121
+𨾥 5541432411121
+𨾦 3515132411121
+𨾧 5151532411121
+𨾨 4112132411121
+𨾩 1334432411121
+𨾪 3212432411121
+𨾫 5335132411121
+𨾬 1312132411121
+𨾭 1312132411121
+𨾮 1344332411121
+𨾯 5315432411121
+𨾰 5411232411121
+𨾱 5425132411121
+𨾲 31123432411121
+𨾳 25113432411121
+𨾴 25125132411121
+𨾵 53125132411121
+𨾶 44553132411121
+𨾷 31213532411121
+𨾸 13542232411121
+𨾹 32151132411121
+𨾺 13411532411121
+𨾻 32411121234353
+𨾼 35135532411121
+𨾽 15412132411121
+𨾾 34153432411121
+𨾿 13252232411121
+𨿀 32151132411121
+𨿁 34431532411121
+𨿂 32112132411121
+𨿃 32112132411121
+𨿄 43155332411121
+𨿅 35425132411121
+𨿆 12123432411121
+𨿇 32411121253434
+𨿈 32411121444454
+𨿉 51151132411121
+𨿊 54521132411121
+𨿋 155512132411121
+𨿌 125112432411121
+𨿍 312153432411121
+𨿎 251113432411121
+𨿏 123434132411121
+𨿐 344312432411121
+𨿑 251111232411121
+𨿒 332355432411121
+𨿓 543535432411121
+𨿔 251354132411121
+𨿕 341325232411121
+𨿖 312343532411121
+𨿗 353112132411121
+𨿘 324111214351523
+𨿙 135333432411121
+𨿚 344352132411121
+𨿛 324111213413252
+𨿜 343425132411121
+𨿝 435152332411121
+𨿞 324111214444251
+𨿟 123425132411121
+𨿠 31212121132411121
+𨿡 4125152132411121
+𨿢 1251123432411121
+𨿣 1221113432411121
+𨿤 4132354432411121
+𨿥 3543123432411121
+𨿦 4143125132411121
+𨿧 2125111232411121
+𨿨 1225111232411121
+𨿩 1511253132411121
+𨿪 2511151532411121
+𨿫 1341251232411121
+𨿬 1121351132411121
+𨿭 521312132411121
+𨿮 3525135432411121
+𨿯 3123435332411121
+𨿰 2432525132411121
+𨿱 3513354132411121
+𨿲 1213512132411121
+𨿳 135133232411121
+𨿴 5552512132411121
+𨿵 3251131232411121
+𨿶 4135113432411121
+𨿷 5454545432411121
+𨿸 3443113432411121
+𨿹 3515251132411121
+𨿺 2543125232411121
+𨿻 2523212132411121
+𨿼 4134341232411121
+𨿽 5425121432411121
+𨿾 154354132411121
+𨿿 31251121132411121
+𩀀 12511531532411121
+𩀁 54334113432411121
+𩀂 34125113232411121
+𩀃 51515251132411121
+𩀄 12522153132411121
+𩀅 55135333432411121
+𩀆 44535134432411121
+𩀇 25125111532411121
+𩀈 44512511132411121
+𩀉 12251354132411121
+𩀊 15153251132411121
+𩀋 13252213432411121
+𩀌 32512521432411121
+𩀍 25112521432411121
+𩀎 25111134432411121
+𩀏 25125125132411121
+𩀐 33122511132411121
+𩀑 3215113432411121
+𩀒 31234353432411121
+𩀓 34431251232411121
+𩀔 12125151532411121
+𩀕 32411125132411121
+𩀖 41353425132411121
+𩀗 324111213321531535
+𩀘 354431125232411121
+𩀙 234251143132411121
+𩀚 252212334432411121
+𩀛 413511225132411121
+𩀜 251245354132411121
+𩀝 145234343241112154
+𩀞 341511325132411121
+𩀟 324111213241112153
+𩀠 121451355432411121
+𩀡 252125143132411121
+𩀢 253425125132411121
+𩀣 352513525132411121
+𩀤 1221251112132411121
+𩀥 4153313113432411121
+𩀦 5415413251132411121
+𩀧 1251112331232411121
+𩀨 3241112133234342134
+𩀩 3143144143132411121
+𩀪 4131235123532411121
+𩀫 1251251251532411121
+𩀬 3241112141351125112
+𩀭 2511131153432411121
+𩀮 2511251253132411121
+𩀯 2434525125232411121
+𩀰 3323434213432411121
+𩀱 3241112132411121354
+𩀲 5133241112135444334
+𩀳 1121132135432411121
+𩀴 12122251113432411121
+𩀵 12121121211232411121
+𩀶 5213121354132411121
+𩀷 34312342512132411121
+𩀸 12112112113532411121
+𩀹 325111111112
+𩀺 25221251113432411121
+𩀻 41251234135432411121
+𩀼 12341234324111213134
+𩀽 12522125111232411121
+𩀾 13431523353432411121
+𩀿 15351535251132411121
+𩁀 11341134251132411121
+𩁁 25125132411121251251
+𩁂 11213425125132411121
+𩁃 13252213252232411121
+𩁄 31234342413432411121
+𩁅 33434343412132411121
+𩁆 34343434251132411121
+𩁇 252211214311232411121
+𩁈 414312511454432411121
+𩁉 412525112511132411121
+𩁊 513251414311232411121
+𩁋 215315135333432411121
+𩁌 52131211312132411121
+𩁍 252213525121432411121
+𩁎 145241343415432411121
+𩁏 351335411125132411121
+𩁐 251212135425132411121
+𩁑 251221125143132411121
+𩁒 123425111353332411121
+𩁓 3534111251134432411121
+𩁔 4454544252211232411121
+𩁕 321115251113432411121
+𩁖 1342523434343432411121
+𩁗 3241112135425132411121
+𩁘 1221251344312132411121
+𩁙 5415413241112132411121
+𩁚 1221251125112132411121
+𩁛 4125125143111232411121
+𩁜 25121251212512132411121
+𩁝 1222522113453432411121
+𩁞 1223544541123432411121
+𩁟 31234353342413432411121
+𩁠 25111221342413432411121
+𩁡 12145131234355432411121
+𩁢 12212512113412132411121
+𩁣 122125125123412132411121
+𩁤 1221251251121132411121
+𩁥 4311134451153432411121
+𩁦 14524444251213241112154
+𩁧 341534212125125132411121
+𩁨 215315251212522132411121
+𩁩 122253123412511232411121
+𩁪 122134251213412132411121
+𩁫 431134212125125132411121
+𩁬 1221251251213512132411121
+𩁭 1343241112154154132411121
+𩁮 1223412512512112132411121
+𩁯 25111251113241112132411121
+𩁰 343412211221324111212534251
+𩁱 32411121123412512531425221
+𩁲 3143143425125123412132411121
+𩁳 314314122134251213412132411121
+𩁴 32411121324111213241112135431234
+𩁵 324111213241112132411121441312155212
+𩁶 145241345
+𩁷 1452413412
+𩁸 1452413435
+𩁹 14524134112
+𩁺 14524134333
+𩁻 14524134531
+𩁼 35412524134
+𩁽 14524134515
+𩁾 1452413554
+𩁿 14524444151
+𩂀 14524444112
+𩂁 14524444135
+𩂂 145241343533
+𩂃 145241345134
+𩂄 145241341525
+𩂅 145241341534
+𩂆 145241341324
+𩂇 145241343415
+𩂈 145241344544
+𩂉 145241341134
+𩂊 125241341121
+𩂋 145241343312
+𩂌 145241343215
+𩂍 145244442534
+𩂎 145244443434
+𩂏 145244441254
+𩂐 145244443121
+𩂑 145244443533
+𩂒 1452413413515
+𩂓 1452413435444
+𩂔 1452413413344
+𩂕 1452413451532
+𩂖 1452413431211
+𩂗 1452413452252
+𩂘 1452413425112
+𩂙 1452444434354
+𩂚 1452413413534
+𩂛 1452413432124
+𩂜 1452413435334
+𩂝 1452444425134
+𩂞 1452444435352
+𩂟 1452444413534
+𩂠 1452444432154
+𩂡 1452413433544
+𩂢 14524134323434
+𩂣 14524134354251
+𩂤 14524134335414
+𩂥 14524134251341
+𩂦 14524134431132
+𩂧 14524134441115
+𩂨 14524134252211
+𩂩 14524444251251
+𩂪 145241343541
+𩂫 14524444354354
+𩂬 14524444251115
+𩂭 14524134354354
+𩂮 14524134431234
+𩂯 14524134321234
+𩂰 14524134531251
+𩂱 14524134413534
+𩂲 14524134125134
+𩂳 14524134122431
+𩂴 14524444125234
+𩂵 14524134513515
+𩂶 14524444135422
+𩂷 145241344411135
+𩂸 145244444414535
+𩂹 145241343323554
+𩂺 145241341251234
+𩂻 145241341221115
+𩂼 145241341251134
+𩂽 145241341121132
+𩂾 145241342512115
+𩂿 145241345113251
+𩃀 145241343212154
+𩃁 145241344413554
+𩃂 145241341213134
+𩃃 145241345454354
+𩃄 145244441353334
+𩃅 1452223221251
+𩃆 145241344421551
+𩃇 145241341213511
+𩃈 145241342512134
+𩃉 145241342515134
+𩃊 145241343551215
+𩃋 145244441132333
+𩃌 145241341154315
+𩃍 145244444413454
+𩃎 145244444414153
+𩃏 145244445114334
+𩃐 145241343235151
+𩃑 145241341213125
+𩃒 14524134312121211
+𩃓 145241343215115
+𩃔 1452413434341534
+𩃕 1452413452131234
+𩃖 1452413415112134
+𩃗 1452413413425115
+𩃘 1452413412511214
+𩃙 1452413425121134
+𩃚 1452413444141554
+𩃛 1452413425113415
+𩃜 1452413444141431
+𩃝 1452413412341314
+𩃞 1452413435133513
+𩃟 1452444425113312
+𩃠 1452413411542534
+𩃡 145244443215112
+𩃢 1452444434341534
+𩃣 1452413441343412
+𩃤 1452413413412512
+𩃥 1452413432351252
+𩃦 1452413444154251
+𩃧 1452413412135515
+𩃨 1452413411213415
+𩃩 1452413425221531
+𩃪 1452413434251214
+𩃫 1452413432132511
+𩃬 1452444411543445
+𩃭 1452444412343454
+𩃮 1452444425113533
+𩃯 1452444425344444
+𩃰 1452444444131525
+𩃱 1452444444144535
+𩃲 1452444412333444
+𩃳 1452444411134112
+𩃴 1452413413543511
+𩃵 14524134441351234
+𩃶 14524134115413344
+𩃷 14524134115432154
+𩃸 14524134115451532
+𩃹 14524134312321511
+𩃺 14524134325131134
+𩃻 14524444312343533
+𩃼 14524134132513553
+𩃽 41311213412524134
+𩃾 145241341135251214
+𩃿 14524134151213511
+𩄀 14524134134125115
+𩄁 14524134135251214
+𩄂 14524444441333534
+𩄃 14524134123435515
+𩄄 14524134111342511
+𩄅 14524444251125221
+𩄆 14524444251131121
+𩄇 14524444252211121
+𩄈 14524444344541154
+𩄉 14524134354542511
+𩄊 14524444411125112
+𩄋 14524444441132522
+𩄌 14524444513154121
+𩄍 14524134312344334
+𩄎 14524444521325111
+𩄏 14524444353251214
+𩄐 1452413452354152
+𩄑 14524444132543112
+𩄒 14524444414312511
+𩄓 14524444122151234
+𩄔 14524444121525341
+𩄕 14524444251112121
+𩄖 14524134551353334
+𩄗 145241343212134312
+𩄘 145241343454541541
+𩄙 14524134542543112
+𩄚 145241341525111534
+𩄛 14524134521251112
+𩄜 145241341245554234
+𩄝 14524134431113121
+𩄞 145241343123431234
+𩄟 145241342521251431
+𩄠 125241341525111534
+𩄡 145241344315112234
+𩄢 145241341122125211
+𩄣 145241342512125121
+𩄤 14524134431133511
+𩄥 145241345152444452
+𩄦 145241343323541112
+𩄧 145241344312343134
+𩄨 145244442512452511
+𩄩 145241343533534534
+𩄪 145244441251214334
+𩄫 14524134311252454
+𩄬 145244444413525135
+𩄭 145241344421251251
+𩄮 14524134511534454
+𩄯 145244445452325111
+𩄰 145244441354224444
+𩄱 145244444143125115
+𩄲 14524444431234454
+𩄳 145244444143141431
+𩄴 145244443211134112
+𩄵 145244445544442534
+𩄶 145244444312343534
+𩄷 145241343251121251
+𩄸 145241343211212154
+𩄹 14524134511543511
+𩄺 145241342511121132
+𩄻 1452413412122511134
+𩄼 1452413444131112111
+𩄽 1452413425112512531
+𩄾 1452413411212511134
+𩄿 1452413412455213134
+𩅀 1452413412143112354
+𩅁 1452413412121344132
+𩅂 1452413412511214124
+𩅃 1452413425244511234
+𩅄 1452413441352211515
+𩅅 1452413444131133112
+𩅆 145241342511354454
+𩅇 145241344143125152
+𩅈 1452444441431251112
+𩅉 1452413425221323434
+𩅊 1452413443251214334
+𩅋 145241343251111254
+𩅌 1452444424325251134
+𩅍 1452444425112522154
+𩅎 1452444425121315251
+𩅏 145241342511545434
+𩅐 1452413425125125115
+𩅑 1452444425125125121
+𩅒 1452413432114134511
+𩅓 1452413432511133134
+𩅔 1452444435251214444
+𩅕 1452444444151145252
+𩅖 5325114524444554134
+𩅗 1452444454523354251
+𩅘 145244441251234454
+𩅙 1452444454545434333
+𩅚 1452444412132411121
+𩅛 145244443541112454
+𩅜 145244444511543511
+𩅝 14524134115413425115
+𩅞 14524134115312511211
+𩅟 14524134251125112511
+𩅠 14524134441122543112
+𩅡 1452413452131213541
+𩅢 145241343251141533134
+𩅣 14524134115411541154
+𩅤 14524134123412343134
+𩅥 1452413452431353334
+𩅦 14524134251251251112
+𩅧 1452413425221323334
+𩅨 14524134153415342511
+𩅩 145241341312341234
+𩅪 14524134441123425111
+𩅫 14524134442431353334
+𩅬 14524134545233134251
+𩅭 14524134515132511515
+𩅮 14524444113411342511
+𩅯 14524444121315121335
+𩅰 14524444122111343312
+𩅱 14524134134431125311
+𩅲 14524134252431353334
+𩅳 14524444441251135345
+𩅴 14524444441451251112
+𩅵 14524444441513154121
+𩅶 14524134351335133513
+𩅷 14524134511122111355
+𩅸 14524444121525125121
+𩅹 14524444441521325111
+𩅺 14524444333132511134
+𩅻 1452444444112132511
+𩅼 145241343412512513434
+𩅽 145241342512211311534
+𩅾 145241341154122111355
+𩅿 145241344411251124124
+𩆀 145241344413241112154
+𩆁 145241343412524312511
+𩆂 125241344135342511134
+𩆃 145241341135342511134
+𩆄 145241344155332411121
+𩆅 145241343134211121111
+𩆆 14524134251115132125
+𩆇 145241344143132115115
+𩆈 145241343443132115115
+𩆉 145241342511143341534
+𩆊 145244441325223525135
+𩆋 145244441213544311252
+𩆌 145244444134315112234
+𩆍 145244444413443311252
+𩆎 145244444413545325121
+𩆏 14524444122122151234
+𩆐 145244444125251131234
+𩆑 1452413412535115435354
+𩆒 1452413425125125125341
+𩆓 1452413444125112522154
+𩆔 1452413412143112354121
+𩆕 1452413425125113222
+𩆖 1452413425125125134154
+𩆗 1452413425121251212511
+𩆘 1452413412512253112521
+𩆙 145244441252211341554
+𩆚 1452413425125125125122
+𩆛 145241341253511211554
+𩆜 1452413425125125111214
+𩆝 1452444413123412344544
+𩆞 1452444425125125125121
+𩆟 3525135414524134132522
+𩆠 145244441222522145354
+𩆡 145244443544311252454
+𩆢 1452444425121414312511
+𩆣 145244441325221341554
+𩆤 14524134441123512353541
+𩆥 14524134123412345113134
+𩆦 14524134115412512212511
+𩆧 14524444121211121111534
+𩆨 14524134341124313541112
+𩆩 14524134441121251431124
+𩆪 1452444412225221134534
+𩆫 14524134545425121215251
+𩆬 14524444224314511353334
+𩆭 145241344412511221111534
+𩆮 145241342512511344251251
+𩆯 145241344413412512513434
+𩆰 1452413452431353334454
+𩆱 145241342153153512341234
+𩆲 145241343123434241343533
+𩆳 145241344523432511154444
+𩆴 145244442153152512125221
+𩆵 1452413435251214444431112
+𩆶 1452413441251251112213534
+𩆷 1452413434341211121111534
+𩆸 1452413444154154132411121
+𩆹 145244445425111345132125
+𩆺 1452413412212511213412512
+𩆻 1452444425125125125312341
+𩆼 1452444425125125144134454
+𩆽 1452413444221212522145354
+𩆾 1452444421531532411121115
+𩆿 14524134324111213241112154
+𩇀 14524134321125345111311534
+𩇁 14524134251213432251213432
+𩇂 1452413425125111345132125
+𩇃 14524134251251251515515515
+𩇄 14524134251251251414312511
+𩇅 1452444441112511222511134
+𩇆 14524444251214125251131234
+𩇇 14524134121335121315121335
+𩇈 1452413432411121543241112154
+𩇉 1452413444511213112522511134
+𩇊 14524134412512525115212515215
+𩇋 14524134441122111122111122111
+𩇌 14524134125241341252413435515
+𩇍 14524444121125444425121554234
+𩇎 14524134251251251134251251121
+𩇏 1452444455444434341211121111534
+𩇐 14524444332251112511132411121112
+𩇑 14524134412512525112515222515215
+𩇒 14524134115434343434125125431243344334
+𩇓 1452413425121251212525112525112512125121
+𩇔 145241341154145241341154145241341154
+𩇕 11213511333
+𩇖 113511212511
+𩇗 112135111535
+𩇘 1215411213511
+𩇙 1121351134154
+𩇚 1121351154251
+𩇛 3112111213511
+𩇜 11213511312135
+𩇝 4111213511355215
+𩇞 1121351111354444
+𩇟 41112135112511135
+𩇠 112135111215425221
+𩇡 1121351112124143112
+𩇢 11212511243452513112
+𩇣 112135111121112145434
+𩇤 112135114152513511531354
+𩇥 112125111223433241112154
+𩇦 3111121111
+𩇧 21141251
+𩇨 3414123434
+𩇩 13431112111
+𩇪 31112111252
+𩇫 31112111521
+𩇬 31112111251
+𩇭 311121114334
+𩇮 311121113115
+𩇯 311121115215
+𩇰 413111211134
+𩇱 311121111252
+𩇲 311121111135
+𩇳 113531112111
+𩇴 211121113453
+𩇵 3111211112251
+𩇶 1234131112111
+𩇷 31112111251251
+𩇸 311121113121251
+𩇹 311121111251234
+𩇺 113425131112111
+𩇻 211121115344544
+𩇼 3111211113425121
+𩇽 125341253421112111
+𩇾 34312342512131112111
+𩇿 52352234311121114134
+𩈀 21112111343123425121
+𩈁 5243135333421112111
+𩈂 21112111251214211121114544
+𩈃 132522111124
+𩈄 132522111534
+𩈅 132522111112
+𩈆 1325221115215
+𩈇 1325221115211
+𩈈 1325221113112
+𩈉 1325221114535
+𩈊 1325221111354
+𩈋 1325221113432
+𩈌 1325221114535
+𩈍 13252211125111
+𩈎 13252211112115
+𩈏 13252211155453
+𩈐 13252211111234
+𩈑 13252211151354
+𩈒 13252211131234
+𩈓 13252211113241
+𩈔 13252211112512
+𩈕 13252211133544
+𩈖 13252211134154
+𩈗 13252211145534
+𩈘 11234132522111
+𩈙 132522111312251
+𩈚 132522111431132
+𩈛 132522111333534
+𩈜 132522111325151
+𩈝 132522111521354
+𩈞 132522111251534
+𩈟 132522111511511
+𩈠 325135132522111
+𩈡 1325221111555121
+𩈢 1325221115344544
+𩈣 1325221113415251
+𩈤 1325221112512134
+𩈥 1325221115435354
+𩈦 1325221113525135
+𩈧 1343434132522111
+𩈨 1251124132522111
+𩈩 132522111511352
+𩈪 1325221115213121
+𩈫 13252211113411234
+𩈬 13252211144525151
+𩈭 13252211144525111
+𩈮 13252211135121251
+𩈯 13252211113425115
+𩈰 44545434132522111
+𩈱 44535455132522111
+𩈲 132522111132522111
+𩈳 132522111132522111
+𩈴 132522111414312511
+𩈵 125125311132522111
+𩈶 132522111123411234
+𩈷 132522111122134515
+𩈸 1325221113251111344
+𩈹 1325221114525114134
+𩈺 1325221113251154444
+𩈻 12511123312132522111
+𩈼 13252211154545434333
+𩈽 13252211154545454531
+𩈾 13252211134343434531
+𩈿 13252211112213425115
+𩉀 44143344334132522111
+𩉁 132522111251251251112
+𩉂 251135411344132522111
+𩉃 344325221124132522111
+𩉄 132522111354113444444
+𩉅 433443344334132522111
+𩉆 132522111531132522111
+𩉇 132522111251135411344
+𩉈 132522111324111214334
+𩉉 251113252211135321511
+𩉊 1325221114125251125111
+𩉋 1325221114315545544544
+𩉌 13252211141312321235554
+𩉍 44112511123312132522111
+𩉎 25111335111344132522111
+𩉏 13252211135311345452134
+𩉐 13252211144535445411234
+𩉑 132522111413123212353112
+𩉒 132522111125111233124544
+𩉓 132522111321511342511134
+𩉔 13252211134341211121111534
+𩉕 43132511112511534132522111
+𩉖 132522111132522111132522111
+𩉗 132522111251112511132411121
+𩉘 251112511132411121132522111
+𩉙 1325221112522155444432411121
+𩉚 1325221114131234123421112111
+𩉛 12212511253
+𩉜 12212511235
+𩉝 122125112354
+𩉞 122125112115
+𩉟 122125112215
+𩉠 122125112434
+𩉡 1221251123432
+𩉢 1221251123534
+𩉣 1221251121255
+𩉤 1221251123434
+𩉥 1221251125113
+𩉦 1221251121354
+𩉧 1221251123112
+𩉨 1221251121254
+𩉩 1221251123134
+𩉪 1221251123115
+𩉫 1221251121515
+𩉬 1221251123515
+𩉭 1221251123454
+𩉮 1221251122121
+𩉯 1221251121135
+𩉰 1221251121252
+𩉱 1221251121551
+𩉲 1221251122154
+𩉳 1221251123135
+𩉴 1221251123355
+𩉵 1221251123453
+𩉶 1221251125341
+𩉷 1221251125545
+𩉸 1221251121515
+𩉹 12212511251315
+𩉺 12212511244535
+𩉻 12212511231525
+𩉼 12212511225112
+𩉽 12212511251532
+𩉾 12212511225112
+𩉿 12212511235251
+𩊀 12212511232511
+𩊁 12212511235455
+𩊂 12212511234154
+𩊃 12212511235424
+𩊄 25121122125112
+𩊅 12212511235352
+𩊆 12212511212512
+𩊇 12212511211214
+𩊈 12215122125112
+𩊉 12212511212251
+𩊊 12212511213544
+𩊋 12212511235515
+𩊌 12212511241431
+𩊍 12212511245534
+𩊎 12212511251552
+𩊏 12212511253251
+𩊐 122125112122111
+𩊑 122125112431112
+𩊒 122125112251153
+𩊓 122125112134115
+𩊔 122125112413434
+𩊕 12212511235152
+𩊖 122125112431132
+𩊗 122125112251251
+𩊘 122125112132511
+𩊙 122125112321344
+𩊚 122125112354251
+𩊛 122125112351355
+𩊜 122125112351234
+𩊝 122125112152511
+𩊞 122125112154121
+𩊟 122125112252252
+𩊠 122125112243135
+𩊡 122125112135422
+𩊢 122125112135435
+𩊣 122125112311234
+𩊤 122125112313544
+𩊥 122125112354354
+𩊦 122125112445124
+𩊧 122125112513252
+𩊨 122125112525341
+𩊩 1221251123541112
+𩊪 1221251121251431
+𩊫 1221251125344544
+𩊬 1221251121251124
+𩊭 1221251123425135
+𩊮 1221251124412343
+𩊯 1221251121251234
+𩊰 1221251121515121
+𩊱 1221251123155414
+𩊲 1221251125121121
+𩊳 1215311122125112
+𩊴 1221251121214544
+𩊵 1221251121342511
+𩊶 1221251122121233
+𩊷 1221251122511115
+𩊸 1221251122522135
+𩊹 1221251123225111
+𩊺 1221251123535112
+𩊻 1221251125434354
+𩊼 1221251125551252
+𩊽 1221251123413252
+𩊾 1221251125425112
+𩊿 12212511212212511
+𩋀 12212511221212134
+𩋁 12212511254545454
+𩋂 12212511231112111
+𩋃 12212511235311252
+𩋄 12212511212211154
+𩋅 12212511211342444
+𩋆 12512554122125112
+𩋇 1221251124325234
+𩋈 12212511255525341
+𩋉 12212511212511534
+𩋊 12212511213425115
+𩋋 12212511215341534
+𩋌 12212511225113533
+𩋍 12212511232341534
+𩋎 12212511251352252
+𩋏 12212511234154544
+𩋐 12212511212123554
+𩋑 12212511241541234
+𩋒 12212511235113511
+𩋓 12212511252115211
+𩋔 12212511232121121
+𩋕 12212511213443515
+𩋖 1221251121223235
+𩋗 12212511225111234
+𩋘 12212511232411121
+𩋙 12212511235121251
+𩋚 12212511235334544
+𩋛 12212511241341354
+𩋜 12212511251312251
+𩋝 12212511255525121
+𩋞 12212511212211234
+𩋟 122125112312511354
+𩋠 122125112132522111
+𩋡 122125112445154121
+𩋢 122125112445125111
+𩋣 122125112414345252
+𩋤 122125112251213541
+𩋥 122125112512115154
+𩋦 122125112321113554
+𩋧 122125112151532511
+𩋨 122125112125125121
+𩋩 1221251121541213134
+𩋪 122125112121251315
+𩋫 122125112344311354
+𩋬 122125112251113533
+𩋭 122125112352513553
+𩋮 122125112121121124
+𩋯 122125112345235354
+𩋰 122125112554444124
+𩋱 122125112341251112
+𩋲 122125112251135515
+𩋳 122125112431351122
+𩋴 122125112325131134
+𩋵 12212511212132511
+𩋶 122125112123435352
+𩋷 122125112125123422
+𩋸 122125112125342154
+𩋹 122125112125344334
+𩋺 122125112353121251
+𩋻 122125112412512511
+𩋼 122125112431121134
+𩋽 122125112445354251
+𩋾 122125112521251152
+𩋿 122125112521325111
+𩌀 122125112532542511
+𩌁 122125112551353334
+𩌂 12212511212254251
+𩌃 122125112325113554
+𩌄 1221251123552335523
+𩌅 1221251123211511254
+𩌆 1221251122432511134
+𩌇 1221251122511541541
+𩌈 1221251121245554234
+𩌉 1221251121113424134
+𩌊 1214511221251123554
+𩌋 1221251125552515215
+𩌌 1221251121212511134
+𩌍 1221251121215425221
+𩌎 1221251123235425121
+𩌏 1221251121251124124
+𩌐 1221251122522124134
+𩌑 1221251124535251354
+𩌒 1221251123412513511
+𩌓 1221251125325421251
+𩌔 1221251122522123434
+𩌕 1221251121252213455
+𩌖 1221251123225131134
+𩌗 1221251123251154444
+𩌘 1221251121113431234
+𩌙 1221251121225111134
+𩌚 1221251121325125251
+𩌛 1221251121332511312
+𩌜 1221251123223541234
+𩌝 122125112325151454
+𩌞 1221251123412512511
+𩌟 1221251123525341535
+𩌠 1221251123534523541
+𩌡 1221251124125125251
+𩌢 1221251124311213121
+𩌣 1221251124311214334
+𩌤 1221251125325412251
+𩌥 1214513554122125112
+𩌦 12212511233221212134
+𩌧 12212511212122511134
+𩌨 12212511241351125112
+𩌩 12212511225232411121
+𩌪 12212511211212511134
+𩌫 12212511241352211515
+𩌬 12212511241431251112
+𩌭 12212511254154134333
+𩌮 12212511252252154444
+𩌯 1221251121252211554
+𩌰 12212511254545434333
+𩌱 12212511212512343534
+𩌲 12212511221531535435
+𩌳 12212511233321342121
+𩌴 12212511212213545252
+𩌵 12212511243125112253
+𩌶 12212511212522135112
+𩌷 12212511212522113455
+𩌸 12212511212522125112
+𩌹 12212511225121554234
+𩌺 25121554234122125112
+𩌻 12212511232125342154
+𩌼 12212511234125125121
+𩌽 12212511235431234354
+𩌾 122125112515251251214
+𩌿 12212511253254341534
+𩍀 12212511255525111234
+𩍁 12212511221213525121
+𩍂 5235311252122125112
+𩍃 122125112252212511134
+𩍄 122125112132522132522
+𩍅 122125112414312511211
+𩍆 122125112321511354444
+𩍇 122125112344335554444
+𩍈 122125112314314341251
+𩍉 122125112121221113134
+𩍊 122125112125221123435
+𩍋 122125112125221251135
+𩍌 122125112251212511124
+𩍍 122125112251251251112
+𩍎 122125112445112213444
+𩍏 122125112445125125121
+𩍐 122125112543341251431
+𩍑 122125112545454342444
+𩍒 122125112415435413134
+𩍓 1221251124155332411121
+𩍔 1221251123512343434354
+𩍕 1221251124125251125111
+𩍖 1221251124143125114544
+𩍗 1221251122511252214153
+𩍘 1221251121212351251124
+𩍙 1221251121234341252511
+𩍚 122125112431353334454
+𩍛 1221251121212251135345
+𩍜 1221251122522112143112
+𩍝 1221251123535112533112
+𩍞 1221251125132413452252
+𩍟 1221251121251112511134
+𩍠 122125112134431112454
+𩍡 1221251122522112513534
+𩍢 1221251121452413425121
+𩍣 122125112122122151234
+𩍤 1214512513554122125112
+𩍥 12212511214524134132522
+𩍦 12212511213425234343434
+𩍧 12212511212211154323434
+𩍨 12212511212512125111345
+𩍩 12212511232224314311134
+𩍪 12212511254154132411121
+𩍫 12212511234431213551554
+𩍬 1221251121224511353334
+𩍭 12212511212511125111134
+𩍮 12212511231431412211134
+𩍯 41251252511221251125134
+𩍰 1221251121221215425221
+𩍱 12212511234435225125154
+𩍲 122125112344325234343434
+𩍳 1221251121234513212135354
+𩍴 122125112113411342511134
+𩍵 122125112331233122511134
+𩍶 122125112413522115154444
+𩍷 414325122515134122125112
+𩍸 3143141214311235122125112
+𩍹 1221251124453121252214544
+𩍺 122125112252324111212525
+𩍻 1251254312125111122125112
+𩍼 1221251122153152512125221
+𩍽 1221251125225241352211515
+𩍾 1221251123211511342511134
+𩍿 12212511212124411251124124
+𩎀 12212511244511221342512134
+𩎁 12212511212123234343434115
+𩎂 1221251122511354135544444
+𩎃 12212511241112514334433454
+𩎄 12212511241252511251113115
+𩎅 12212511244511221341212134
+𩎆 12212511231554143134554234
+𩎇 122125112522524135221154444
+𩎈 1221251123121353121352511134
+𩎉 1221251121254125441352211515
+𩎊 1221251122522155444432411121
+𩎋 122125112344325221211121111354
+𩎌 12212511225115545544444132511134
+𩎍 25115545544444132511134122125112
+𩎎 122125112125234125234125234125234
+𩎏 122125112412512525125251122515215
+𩎐 1221251121212413522115351211254444
+𩎑 122125112321125125151145123412341344334
+𩎒 521251152112
+𩎓 5212511521344
+𩎔 5212511523434
+𩎕 521251152354
+𩎖 5212511523445
+𩎗 5212511523534
+𩎘 52125115235515
+𩎙 52125115215534
+𩎚 52125115233124
+𩎛 52125115251532
+𩎜 52125115213241
+𩎝 52125115235455
+𩎞 54251521251152
+𩎟 52125115211234
+𩎠 52125115232124
+𩎡 51532521251152
+𩎢 52125115252354
+𩎣 52125115253251
+𩎤 521251152511534
+𩎥 521251152251153
+𩎦 521251152413434
+𩎧 521251152321344
+𩎨 521251152125111
+𩎩 521251152155234
+𩎪 521251152251341
+𩎫 521251152351234
+𩎬 521251152354251
+𩎭 521251152413234
+𩎮 413452125115234
+𩎯 5212511521251234
+𩎰 5212511523425135
+𩎱 5212511521343434
+𩎲 1214535521251152
+𩎳 1354152521251152
+𩎴 5212511521515234
+𩎵 3251532521251152
+𩎶 5212511523323554
+𩎷 5212511523544444
+𩎸 52125115243113455
+𩎹 52125115212511534
+𩎺 52125115244535455
+𩎻 52125115231112111
+𩎼 5212511525244535
+𩎽 52125115225342511
+𩎾 52125115241335515
+𩎿 52125115225112511
+𩏀 521251152555325341
+𩏁 52125115211541234
+𩏂 52125115232511312
+𩏃 52125115233253254
+𩏄 52125115235425121
+𩏅 521251152344311354
+𩏆 521251152445125111
+𩏇 521251152321113554
+𩏈 521251152413525135
+𩏉 41255212511521354
+𩏊 52125115215251541
+𩏋 521251152331225111
+𩏌 521251152251135345
+𩏍 521251152344322511
+𩏎 521251152415425211
+𩏏 5212511521513513234
+𩏐 5212511523251213554
+𩏑 1225111231521251152
+𩏒 5212511521212341251
+𩏓 4453121251521251152
+𩏔 5212511525552515215
+𩏕 52125115212123535112
+𩏖 5212511521341251234
+𩏗 4311343112521251152
+𩏘 52125115225232411121
+𩏙 52125115255525111234
+𩏚 52125115211121112511
+𩏛 52125115231125125221
+𩏜 12152133554521251152
+𩏝 52125115225112512531
+𩏞 52125115225121554234
+𩏟 52125115212511534121
+𩏠 521251152543341251431
+𩏡 521251152251212511134
+𩏢 521251152324111214444
+𩏣 215315225211521251152
+𩏤 521251152325111111112
+𩏥 521251152251251251112
+𩏦 521251152354251214444
+𩏧 1221122112521251152
+𩏨 5212511524155332411121
+𩏩 5212511523412512513434
+𩏪 5212511522522112143112
+𩏫 5212511521234341252511
+𩏬 5212511523234343434115
+𩏭 5212511523411243112341
+𩏮 52125115212145132511234
+𩏯 52125115212121251124124
+𩏰 52125115225115545544444
+𩏱 52125115212512125111345
+𩏲 521251152111211125114544
+𩏳 52125115232511325113554
+𩏴 1234311252123445521251152
+𩏵 52125115212124411251124124
+𩏶 431234521251152324111214334
+𩏷 431234521251152324111214444
+𩏸 431234521251152324111214444
+𩏹 4111251554444554444521251152
+𩏺 52125115225111251113241112154
+𩏻 12145325111544443554521251152
+𩏼 11522534
+𩏽 115254112
+𩏾 115252354
+𩏿 1152251112134
+𩐀 1152512115154
+𩐁 1354211121111
+𩐂 5454211121111
+𩐃 212511211121111
+𩐄 1134251211121111
+𩐅 31342111211112154
+𩐆 15233534211121111
+𩐇 25343134211121111
+𩐈 35233134211121111
+𩐉 2512135454211121111
+𩐊 1252113534211121111
+𩐋 12512343534211121111
+𩐌 52431353334211121111
+𩐍 12122511134211121111
+𩐎 12512343134211121111
+𩐏 343123425121211121111
+𩐐 414325335411211121111
+𩐑 1251112413534211121111
+𩐒 1251234413534211121111
+𩐓 4143253354121211121111
+𩐔 1121122252215454211121111
+𩐕 41312512343534211121111
+𩐖 3123412122511134211121111
+𩐗 414312511354
+𩐘 1135414312511
+𩐙 4143125113312
+𩐚 41431251151532
+𩐛 4143125111554
+𩐜 41431251135515
+𩐝 41431251135251
+𩐞 354354414312511
+𩐟 414312511413434
+𩐠 414312511122134
+𩐡 414312511211234
+𩐢 325251414312511
+𩐣 414312511243135
+𩐤 414312511251251
+𩐥 414312511341251
+𩐦 414312511515132
+𩐧 4143125113415251
+𩐨 414312511354152
+𩐩 4143125115113251
+𩐪 4143125112513541
+𩐫 4143125111251234
+𩐬 4143125113544334
+𩐭 41431251134154544
+𩐮 41431251121531512
+𩐯 41431251125112511
+𩐰 41431251134415334
+𩐱 414312511122151234
+𩐲 414312511251125111
+𩐳 414312511132511134
+𩐴 412514512414312511
+𩐵 4143125111212511134
+𩐶 4143125115154111251
+𩐷 4143125111212121234
+𩐸 4143125113112155414
+𩐹 4143125115425112454
+𩐺 41431251112121555121
+𩐻 41431251112122511134
+𩐼 41431251144532132511
+𩐽 41431251125134321511
+𩐾 41431251135412341254
+𩐿 414312511251141251234
+𩑀 414312511224314311134
+𩑁 414312511344335554444
+𩑂 4143125112522135251214
+𩑃 4143125112243143111234
+𩑄 41431251152212143111234
+𩑅 4143125113541212511134
+𩑆 4143125111452413425121
+𩑇 41431251125125154545454
+𩑈 414312511413122112512134
+𩑉 414312511121125444434154544
+𩑊 414312511145241342512512511234341
+𩑋 132511135
+𩑌 54132511134
+𩑍 13251113455
+𩑎 32132511134
+𩑏 35132511134
+𩑐 344132511134
+𩑑 354132511134
+𩑒 315132511134
+𩑓 534132511134
+𩑔 315132511134
+𩑕 115132511134
+𩑖 354132511134
+𩑗 554132511134
+𩑘 132511134333
+𩑙 1121132511134
+𩑚 3112132511134
+𩑛 3434132511134
+𩑜 4535132511134
+𩑝 3552132511134
+𩑞 2511132511134
+𩑟 3415132511134
+𩑠 52121132511134
+𩑡 3115132511134
+𩑢 1324132511134
+𩑣 1354132511134
+𩑤 3112132511134
+𩑥 3515132511134
+𩑦 3554132511134
+𩑧 5211132511134
+𩑨 2115132511134
+𩑩 3121132511134
+𩑪 1221132511134
+𩑫 5113132511134
+𩑬 1535132511134
+𩑭 3235132511134
+𩑮 3533132511134
+𩑯 4412132511134
+𩑰 25111132511134
+𩑱 13344132511134
+𩑲 13251132511134
+𩑳 14312132511134
+𩑴 55453132511134
+𩑵 11234132511134
+𩑶 12251132511134
+𩑷 11234132511134
+𩑸 12512132511134
+𩑹 41554132511134
+𩑺 25211132511134
+𩑻 32511132511134
+𩑼 12515132511134
+𩑽 212115132511134
+𩑾 35151132511134
+𩑿 43153132511134
+𩒀 34234132511134
+𩒁 25115132511134
+𩒂 44515132511134
+𩒃 13534132511134
+𩒄 25221132511134
+𩒅 12341132511134
+𩒆 12555132511134
+𩒇 25135132511134
+𩒈 13251113434234
+𩒉 34333132511134
+𩒊 41121132511134
+𩒋 43135132511134
+𩒌 52252132511134
+𩒍 54121132511134
+𩒎 54251132511134
+𩒏 134334132511134
+𩒐 154121132511134
+𩒑 111215132511134
+𩒒 335215132511134
+𩒓 122134132511134
+𩒔 511252132511134
+𩒕 431523132511134
+𩒖 113112132511134
+𩒗 251251132511134
+𩒘 15435132511134
+𩒙 312135132511134
+𩒚 243135132511134
+𩒛 211234132511134
+𩒜 351234132511134
+𩒝 251115132511134
+𩒞 112121132511134
+𩒟 344335132511134
+𩒠 151134132511134
+𩒡 311252132511134
+𩒢 125111132511134
+𩒣 133445132511134
+𩒤 134121132511134
+𩒥 134455132511134
+𩒦 321511132511134
+𩒧 333252132511134
+𩒨 352511132511134
+𩒩 413354132511134
+𩒪 433412132511134
+𩒫 513251132511134
+𩒬 355435132511134
+𩒭 341531132511134
+𩒮 1241344132511134
+𩒯 4133415132511134
+𩒰 3121534132511134
+𩒱 2512341132511134
+𩒲 3515251132511134
+𩒳 2511555132511134
+𩒴 1212534132511134
+𩒵 1525121132511134
+𩒶 3533132132511134
+𩒷 1251112132511134
+𩒸 5114554132511134
+𩒹 3331325111342511
+𩒺 1251124132511134
+𩒻 2513415132511134
+𩒼 5425112132511134
+𩒽 3413252132511134
+𩒾 1251251132511134
+𩒿 1354333132511134
+𩓀 5435354132511134
+𩓁 1214153132511134
+𩓂 4351523132511134
+𩓃 3312251132511134
+𩓄 3331324132511134
+𩓅 3535112132511134
+𩓆 2525252132511134
+𩓇 3554234132511134
+𩓈 2524334132511134
+𩓉 4134132132511134
+𩓊 1212534132511134
+𩓋 1431234132511134
+𩓌 2511134132511134
+𩓍 2431132132511134
+𩓎 5431134132511134
+𩓏 125121132511134
+𩓐 1245521132511134
+𩓑 1325111132511134
+𩓒 1334454132511134
+𩓓 2511135132511134
+𩓔 2551554132511134
+𩓕 3111234132511134
+𩓖 3443521132511134
+𩓗 4154132132511134
+𩓘 4451354132511134
+𩓙 1531134132511134
+𩓚 3443132132511134
+𩓛 5135251132511134
+𩓜 122415132511134
+𩓝 4325234132511134
+𩓞 34435112132511134
+𩓟 35321511132511134
+𩓠 12541234132511134
+𩓡 12341254132511134
+𩓢 25111234132511134
+𩓣 33341431132511134
+𩓤 25213112132511134
+𩓥 32121252132511134
+𩓦 51352252132511134
+𩓧 44525111132511134
+𩓨 11213511132511134
+𩓩 12155121132511134
+𩓪 55124134132511134
+𩓫 43113455132511134
+𩓬 35331234132511134
+𩓭 33313241132511134
+𩓮 43341234132511134
+𩓯 21211233132511134
+𩓰 34431234132511134
+𩓱 34112251132511134
+𩓲 41431354132511134
+𩓳 11213534132511134
+𩓴 13542515132511134
+𩓵 25231234132511134
+𩓶 25141431132511134
+𩓷 25112534132511134
+𩓸 13251113412541234
+𩓹 13425115132511134
+𩓺 25114334132511134
+𩓻 25225112132511134
+𩓼 25235112132511134
+𩓽 25312341132511134
+𩓾 33313251113425211
+𩓿 33325211132511134
+𩔀 431353334132511134
+𩔁 132522111132511134
+𩔂 551353334132511134
+𩔃 344311354132511134
+𩔄 1212515134132511134
+𩔅 325341132132511134
+𩔆 543341134132511134
+𩔇 325111121132511134
+𩔈 122125112132511134
+𩔉 515152511132511134
+𩔊 132511134132511134
+𩔋 344325211132511134
+𩔌 355313241132511134
+𩔍 414313541132511134
+𩔎 121212215132511134
+𩔏 251131234132511134
+𩔐 251141431132511134
+𩔑 122151234132511134
+𩔒 212512254132511134
+𩔓 112321511132511134
+𩔔 325125214132511134
+𩔕 431253511132511134
+𩔖 431234134132511134
+𩔗 431234531132511134
+𩔘 542511253132511134
+𩔙 3253411515132511134
+𩔚 3554541541132511134
+𩔛 1131121234132511134
+𩔜 4453434251132511134
+𩔝 3415413534132511134
+𩔞 5425431121132511134
+𩔟 1334112431132511134
+𩔠 2511111234132511134
+𩔡 5515515121132511134
+𩔢 431234454132511134
+𩔣 4153313541132511134
+𩔤 2121111233132511134
+𩔥 1121554234132511134
+𩔦 3251514554132511134
+𩔧 4451353334132511134
+𩔨 3251114544132511134
+𩔩 1254341251132511134
+𩔪 5552515215132511134
+𩔫 4312343453132511134
+𩔬 4312344134132511134
+𩔭 1212513534132511134
+𩔮 1121431121132511134
+𩔯 1343434555132511134
+𩔰 2511122431132511134
+𩔱 4313425221132511134
+𩔲 3545325121132511134
+𩔳 11212511134132511134
+𩔴 41352211515132511134
+𩔵 12341234531132511134
+𩔶 41312351235132511134
+𩔷 12122511134132511134
+𩔸 12512512515132511134
+𩔹 33332511312132511134
+𩔺 21531525121132511134
+𩔻 33341431251132511134
+𩔼 41312214444132511134
+𩔽 41533125111132511134
+𩔾 33313251113432511312
+𩔿 12512132345132511134
+𩕀 1121533134132511134
+𩕁 13115342511132511134
+𩕂 13251113413325325454
+𩕃 25121554234132511134
+𩕄 32535414544132511134
+𩕅 41334112431132511134
+𩕆 41431251112132511134
+𩕇 41533133541132511134
+𩕈 43342512134132511134
+𩕉 414312511211132511134
+𩕊 431112431251132511134
+𩕋 445454425112132511134
+𩕌 123412341234132511134
+𩕍 325111111112132511134
+𩕎 3354142512121132511134
+𩕏 343123425121132511134
+𩕐 134432511234132511134
+𩕑 134431353334132511134
+𩕒 123434341234132511134
+𩕓 352521353334132511134
+𩕔 431234354152132511134
+𩕕 121235113511132511134
+𩕖 344325221124132511134
+𩕗 113411342511132511134
+𩕘 212111111233132511134
+𩕙 132511141431132511134
+𩕚 215315225211132511134
+𩕛 554444554444132511134
+𩕜 12134121454132511134
+𩕝 414313333555132511134
+𩕞 545454342444132511134
+𩕟 2243143111234132511134
+𩕠 1312515344334132511134
+𩕡 1234341252511132511134
+𩕢 251115132125132511134
+𩕣 5225241533134132511134
+𩕤 4453451252511132511134
+𩕥 4453532411121132511134
+𩕦 1251112511134132511134
+𩕧 1325111341325111344134
+𩕨 2121111111233132511134
+𩕩 2511152133312132511134
+𩕪 2522112513534132511134
+𩕫 1251224525111132511134
+𩕬 32511125121132132511134
+𩕭 12121215425221132511134
+𩕮 13325112344544132511134
+𩕯 12151211251124132511134
+𩕰 32511445344153132511134
+𩕱 12124511353334132511134
+𩕲 41533113412512132511134
+𩕳 44545442522112132511134
+𩕴 41342444425251132511134
+𩕵 52252344111251132511134
+𩕶 43344334354152132511134
+𩕷 21531532411121132511134
+𩕸 21213124111251132511134
+𩕹 1223445113251132511134
+𩕺 41431121353334132511134
+𩕻 43152312511555132511134
+𩕼 13251113443344334351152
+𩕽 44512552511134132511134
+𩕾 252211325221134132511134
+𩕿 134125125134345132511134
+𩖀 12511125111134132511134
+𩖁 212134341343452132511134
+𩖂 252211252215134132511134
+𩖃 113251113251134132511134
+𩖄 133412512513434132511134
+𩖅 251125125313134132511134
+𩖆 4133412512513434132511134
+𩖇 2511154154134333132511134
+𩖈 5152522125221134132511134
+𩖉 1222522145135455132511134
+𩖊 14524134251251251132511134
+𩖋 43344334132522111132511134
+𩖌 35251153535251354132511134
+𩖍 25111342511134531132511134
+𩖎 21212522145135415132511134
+𩖏 132511134132511134132511134
+𩖐 431325111431325111132511134
+𩖑 132112345342512134132511134
+𩖒 13325112341332511234132511134
+𩖓 21211111123313251113432511312
+𩖔 1325111343251115444432511154444
+𩖕 33341431132534
+𩖖 43344334132534
+𩖗 1234123411234132534
+𩖘 12353251214
+𩖙 35325121453
+𩖚 353251214354
+𩖛 353251214354
+𩖜 353251214351
+𩖝 353251214353
+𩖞 353251214252
+𩖟 443353251214
+𩖠 353251214531
+𩖡 353251214354
+𩖢 3532512141354
+𩖣 4134353251214
+𩖤 3532512141525
+𩖥 3532512142343
+𩖦 3532512143445
+𩖧 3532512144334
+𩖨 3532512143533
+𩖩 3532512142554
+𩖪 353251214354
+𩖫 3532512144153
+𩖬 1134353251214
+𩖭 3532512141252
+𩖮 3532512141344
+𩖯 3532512142534
+𩖰 3532512144134
+𩖱 3532512142534
+𩖲 1324353251214
+𩖳 353251214454
+𩖴 35325121435352
+𩖵 35125121434154
+𩖶 35125121412354
+𩖷 35325121452252
+𩖸 35325121425115
+𩖹 35125121451315
+𩖺 35325121412211
+𩖻 35325121445534
+𩖼 35325121451532
+𩖽 35325121453254
+𩖾 35325121451311
+𩖿 35455353251214
+𩗀 35325121432511
+𩗁 35325121441554
+𩗂 35325121411234
+𩗃 35325121425111
+𩗄 353251214122134
+𩗅 353251214535353
+𩗆 353251214321234
+𩗇 353251214331251
+𩗈 353251214354354
+𩗉 353251214341234
+𩗊 353251214121251
+𩗋 353251214335414
+𩗌 353251214413422
+𩗍 353251214541541
+𩗎 353251214112154
+𩗏 125221353251214
+𩗐 353251214431234
+𩗑 353251214513121
+𩗒 353251214413434
+𩗓 3532512141245521
+𩗔 3443531353251214
+𩗕 3532512141241344
+𩗖 3532512144511534
+𩗗 3532512142511134
+𩗘 3532512145133115
+𩗙 3532512141213312
+𩗚 3532512143223134
+𩗛 3532512141353334
+𩗜 353251214351355
+𩗝 3532512143251214
+𩗞 3532512143431234
+𩗟 3532512142152134
+𩗠 3532512141215512
+𩗡 3532512141113124
+𩗢 3532512141212534
+𩗣 3532512141251234
+𩗤 3532512142511112
+𩗥 3532512142515215
+𩗦 3532512142135422
+𩗧 524153353251214
+𩗨 35325121431134251
+𩗩 34112431353251214
+𩗪 35325121435121251
+𩗫 35325121432511312
+𩗬 35325121441251234
+𩗭 35325121445131344
+𩗮 35325121455525121
+𩗯 31234531353251214
+𩗰 351251214312121211
+𩗱 35325121412343312
+𩗲 35125121434435112
+𩗳 35325121415112134
+𩗴 35325121411134112
+𩗵 35325121424325251
+𩗶 35325121441343412
+𩗷 35325121413425115
+𩗸 35325121421531512
+𩗹 43344334353251214
+𩗺 35325121425113533
+𩗻 35325121425124544
+𩗼 35325121411212511
+𩗽 35325121412155121
+𩗾 35325121412523434
+𩗿 35325121412524444
+𩘀 35325121421251112
+𩘁 41251234353251214
+𩘂 35325121451354134
+𩘃 35325121455525122
+𩘄 35325121412343134
+𩘅 151532511351251214
+𩘆 353251214125125121
+𩘇 353251214354111251
+𩘈 353251214255455452
+𩘉 353251214325125214
+𩘊 353251214125123422
+𩘋 353251214325131134
+𩘌 353251214312344334
+𩘍 413425135353251214
+𩘎 3512512144452513251
+𩘏 353251214122151234
+𩘐 353251214551353334
+𩘑 351251214121225134
+𩘒 445125111353251214
+𩘓 353251214415331521
+𩘔 125351121353251214
+𩘕 121225134353251214
+𩘖 353251214134354354
+𩘗 353251214153532511
+𩘘 353251214325112534
+𩘙 353251214325341132
+𩘚 521251152353251214
+𩘛 353251214555135422
+𩘜 3532512144135112251
+𩘝 3532512141245554234
+𩘞 3532512143115431234
+𩘟 3532512141252211234
+𩘠 3542511354353251214
+𩘡 3512512141212535353
+𩘢 3532512141113431234
+𩘣 3532512141121554234
+𩘤 3532512141251212511
+𩘥 3532512142521251431
+𩘦 3532512143215114153
+𩘧 3532512143251113124
+𩘨 4453434251353251214
+𩘩 353251214511534454
+𩘪 3532512144453434251
+𩘫 3532512144413155414
+𩘬 353251214511534454
+𩘭 3532512144311135211
+𩘮 1121533134353251214
+𩘯 35325121412511214124
+𩘰 35325121444532132511
+𩘱 35325121441554413412
+𩘲 35325121432511154444
+𩘳 35325121412512212511
+𩘴 35325121454154132511
+𩘵 35325121432511154444
+𩘶 35325121441533152134
+𩘷 54154134333353251214
+𩘸 541541342444353251214
+𩘹 3532512145112321155212
+𩘺 353251214251212511134
+𩘻 351251214545232535251
+𩘼 353251214543341251431
+𩘽 243452511234353251214
+𩘾 353251214251251251112
+𩘿 351251214515121121251
+𩙀 125221251112353251214
+𩙁 122112512134351251214
+𩙂 134432511234353251214
+𩙃 332521251152353251214
+𩙄 543341251431353251214
+𩙅 545232535251353251214
+𩙆 353251214243452511234
+𩙇 35325121452131212511
+𩙈 3532512142512512511234
+𩙉 3532512143322521353134
+𩙊 3532512142534444412511
+𩙋 353251214341251122454
+𩙌 3511341251122454
+𩙍 3532512143412511224544
+𩙎 35325121425125125112111
+𩙏 12125143152254353251214
+𩙐 12341234353251214251214
+𩙑 353251214555253415445445
+𩙒 413522115154444353251214
+𩙓 351251214212125221451135
+𩙔 354533411243122353251214
+𩙕 251112213424134353251214
+𩙖 3532512141331234312342121
+𩙗 3532512143312331234112431
+𩙘 3532512144143125111515111
+𩙙 3532512142153152512125221
+𩙚 35325121412125112321155212
+𩙛 35325121421212522145135435
+𩙜 41112514334433454353251214
+𩙝 122111122111122111353251214
+𩙞 321132534151114334351251214
+𩙟 4111251554444554444353251214
+𩙠 3532512143532512143251253415511511
+𩙡 353251214353251214353251214353251214
+𩙢 353251214325113554431353334431353334
+𩙣 122251251324111215415415413532512144414154325
+𩙤 212125125132411121135333413533341353334353251214
+𩙥 353413544
+𩙦 353432511
+𩙧 35341113124
+𩙨 353451123234
+𩙩 353421251112
+𩙪 353443344334
+𩙫 3534544251214
+𩙬 3534251212534
+𩙭 35341245554234
+𩙮 35344125125251
+𩙯 353412212512134
+𩙰 35342512512511234
+𩙱 5343412534
+𩙲 3121534353432
+𩙳 34454534353432
+𩙴 415331534353432
+𩙵 451251112534353432
+𩙶 1225111234534353432
+𩙷 4125125251534353432
+𩙸 5425113535534353432
+𩙹 3541112454534353432
+𩙺 534353432251211212134
+𩙻 534353432211121114544
+𩙼 4125251125111534353432
+𩙽 2522112513534534353432
+𩙾 3251115444432511154444534353432
+𩙿 341511211
+𩚀 3413251154
+𩚁 341251115
+𩚂 341511545
+𩚃 342125111
+𩚄 3415115454
+𩚅 3415115424
+𩚆 3415115434
+𩚇 341511534132
+𩚈 34151154354
+𩚉 34151154525
+𩚊 34151154315
+𩚋 34151154215
+𩚌 34151154135
+𩚍 34151154252
+𩚎 34151154333
+𩚏 354341511534
+𩚐 34451154354
+𩚑 34451154354
+𩚒 34151154534
+𩚓 555341511534
+𩚔 34451154531
+𩚕 341511543415
+𩚖 341511545211
+𩚗 341511544535
+𩚘 341511543554
+𩚙 341511542343
+𩚚 341511541355
+𩚛 341511542534
+𩚜 341534151134
+𩚝 341511543453
+𩚞 341511541554
+𩚟 344511545134
+𩚠 344511544153
+𩚡 344511541254
+𩚢 344511541551
+𩚣 341511542511
+𩚤 341511543115
+𩚥 341511545215
+𩚦 344511541553
+𩚧 344511541534
+𩚨 3415115432121
+𩚩 3415115412251
+𩚪 3415115411234
+𩚫 3415115412121
+𩚬 3415115435135
+𩚭 3415115432124
+𩚮 341511543454
+𩚯 3415115451315
+𩚰 34151154121312
+𩚱 3415115425251
+𩚲 3415115425112
+𩚳 3415115454132
+𩚴 3545534151154
+𩚵 3415115412211
+𩚶 3415115425135
+𩚷 41431341511534
+𩚸 3415115431234
+𩚹 3415115434454
+𩚺 3415115435333
+𩚻 212135341511534
+𩚼 3445115413241
+𩚽 3415115411214
+𩚾 21135344511534
+𩚿 3415115431354
+𩛀 3415115435341
+𩛁 35352341511534
+𩛂 3445115453154
+𩛃 3445115433544
+𩛄 3445115412534
+𩛅 3415115434531
+𩛆 3415115431525
+𩛇 3445115432511
+𩛈 21354341511534
+𩛉 34151154151225
+𩛊 34151154311252
+𩛋 34251154555252
+𩛌 34251154134531
+𩛍 34151154325151
+𩛎 34151154252251
+𩛏 34151154121531
+𩛐 34151154513121
+𩛑 34151154321254
+𩛒 3112121341511534
+𩛓 3415115452454
+𩛔 34451154312135
+𩛕 311252344511534
+𩛖 3415154445531
+𩛗 531515341511534
+𩛘 34451154122134
+𩛙 34451154344153
+𩛚 413534344511534
+𩛛 341511534122134
+𩛜 34451154454124
+𩛝 341511543443124
+𩛞 34151154344521
+𩛟 341511543525135
+𩛠 341511543434121
+𩛡 341511544511534
+𩛢 3223134341511534
+𩛣 341511541214544
+𩛤 341511545425112
+𩛥 123341511545112
+𩛦 341511542513121
+𩛧 341511542511112
+𩛨 3415113251135
+𩛩 341511541343434
+𩛪 341511543513315
+𩛫 341511541331134
+𩛬 21211213413251154
+𩛭 341511541543541
+𩛮 34151154325434
+𩛯 341511542535251
+𩛰 1241344341511534
+𩛱 344511542433541
+𩛲 34451154122415
+𩛳 1234354341511534
+𩛴 344511542511234
+𩛵 344511543123453
+𩛶 344511543312251
+𩛷 344511541324251
+𩛸 344511543155414
+𩛹 341511543115121
+𩛺 3415115435431234
+𩛻 51324134341511534
+𩛼 3415115455124134
+𩛽 3415115435311252
+𩛾 3415115451124134
+𩛿 3415115425113533
+𩜀 34151154312121211
+𩜁 3415115412135354
+𩜂 3415115421123454
+𩜃 3415115425111134
+𩜄 3415115412155121
+𩜅 3415115412212511
+𩜆 3415115455455435
+𩜇 3415115443113455
+𩜈 3415115412123134
+𩜉 3415115434112251
+𩜊 3415115455525121
+𩜋 3415115424325251
+𩜌 3415115444535455
+𩜍 3415115412511234
+𩜎 3415115411213511
+𩜏 3415115441533444
+𩜐 3415115431154544
+𩜑 3445115432411121
+𩜒 53431121341511534
+𩜓 3415115434431234
+𩜔 33253254341511534
+𩜕 5151251341511534
+𩜖 3415115425235234
+𩜗 3415115435425121
+𩜘 3445115441343412
+𩜙 3415115412122135
+𩜚 3415115415351535
+𩜛 341511544143152
+𩜜 3415115412143112
+𩜝 3415115412522531
+𩜞 341511543212152
+𩜟 3415115425113552
+𩜠 3445115425213251
+𩜡 3445115435154444
+𩜢 41533134341511534
+𩜣 3445115443111234
+𩜤 3445115444153254
+𩜥 44153254344511534
+𩜦 3445115444512134
+𩜧 3445115451335435
+𩜨 21135454344511534
+𩜩 3445115435121121
+𩜪 3445115413411234
+𩜫 3445115412343134
+𩜬 1251255434451154
+𩜭 34151154312344412
+𩜮 34451154122512555
+𩜯 34151154445343454
+𩜰 34151154125125121
+𩜱 34151154122111355
+𩜲 34151154312511354
+𩜳 34151154542511253
+𩜴 34151154113534251
+𩜵 34151154252132522
+𩜶 34151154341351122
+𩜷 34151154545231234
+𩜸 45243134341511534
+𩜹 34151154515515134
+𩜺 34151154354111251
+𩜻 251251251341511534
+𩜼 3445115412132511
+𩜽 34451154414313333
+𩜾 332441112341511534
+𩜿 34151154344351234
+𩝀 34151154121221234
+𩝁 34151154515515132
+𩝂 34151154312341132
+𩝃 34151154121223412
+𩝄 3445115425525251
+𩝅 34151154431121531
+𩝆 34151154352534134
+𩝇 34451154122111234
+𩝈 34451154131251534
+𩝉 34151154134425221
+𩝊 34451154251112134
+𩝋 34451154312344334
+𩝌 34451154431353334
+𩝍 34451154351331134
+𩝎 34451154352513544
+𩝏 34451154431121134
+𩝐 34451154431554554
+𩝑 34451154445125111
+𩝒 34451154445311252
+𩝓 445311252344511534
+𩝔 34451154521342511
+𩝕 545233134344511534
+𩝖 555135422344511534
+𩝗 34151154132511134
+𩝘 34151154541213354
+𩝙 341511541213352511
+𩝚 341511545221251214
+𩝛 341511544453112251
+𩝜 344511544453525135
+𩝝 341511544125125251
+𩝞 341511543415113251
+𩝟 34151154112321511
+𩝠 341511543251111344
+𩝡 341511542512125151
+𩝢 3415115445115452
+𩝣 341511542511541541
+𩝤 341511541211214544
+𩝥 341511541121554234
+𩝦 4143253354341511534
+𩝧 34151154322354333
+𩝨 341511542121211235
+𩝩 4453112121341511534
+𩝪 344511544454143112
+𩝫 52133544124341511534
+𩝬 341511544511353334
+𩝭 34451154431113121
+𩝮 341511541225125515
+𩝯 344511544453434354
+𩝰 341511543443541234
+𩝱 341511544313425221
+𩝲 341511544155425121
+𩝳 341511541221325112
+𩝴 3415115452133544124
+𩝵 251512515134151154
+𩝶 3322354333344511534
+𩝷 344511543251154444
+𩝸 341511544535251354
+𩝹 341511545552515215
+𩝺 344511541213443531
+𩝻 344511541225111134
+𩝼 341551541134121312
+𩝽 3415115451554251214
+𩝾 3415115441432535251
+𩝿 3415115441432512251
+𩞀 3415115454545434333
+𩞁 41312351235341511534
+𩞂 25121531535341511534
+𩞃 3415115431251113533
+𩞄 3415115412512212511
+𩞅 3415115425232411121
+𩞆 3415115433234342134
+𩞇 41352211515341511534
+𩞈 341511541353334454
+𩞉 3415115425244511234
+𩞊 34151154511541535
+𩞋 3415115441351125112
+𩞌 12512343534341511534
+𩞍 341511541251234454
+𩞎 12212511121341511534
+𩞏 3415115412511123312
+𩞐 33234342134341511534
+𩞑 3415115412121213412
+𩞒 3445115425121252511
+𩞓 3445115425112252511
+𩞔 3445115412112213412
+𩞕 12512343134344511534
+𩞖 3415115443112125221
+𩞗 3415115425112511134
+𩞘 3445115412212523434
+𩞙 341511541251112454
+𩞚 32511151535341511534
+𩞛 3445115434432511234
+𩞜 3445115444512125221
+𩞝 3445115432554134354
+𩞞 3415115425115351535
+𩞟 52133544124341511534
+𩞠 55332411121341511534
+𩞡 34151154414312511534
+𩞢 3415115452131213541
+𩞣 251153311252341511534
+𩞤 412515213134341511534
+𩞥 34151154243252513134
+𩞦 34151154243452513112
+𩞧 3415115435251353334
+𩞨 133123431234341511534
+𩞩 34151154122112512134
+𩞪 34151154132522132522
+𩞫 34151154251211212134
+𩞬 34151154543341251431
+𩞭 3415115443112145534
+𩞮 34151154251212522111
+𩞯 34451154251112511211
+𩞰 34451154314314341251
+𩞱 3445115412143112454
+𩞲 34151154113411342511
+𩞳 3445115412122343412
+𩞴 3445115412122453412
+𩞵 34151154121452155121
+𩞶 3445115412252541134
+𩞷 34151154121525125121
+𩞸 34451154125221431234
+𩞹 251125111344344511534
+𩞺 351212513534341511534
+𩞻 34451154431234354152
+𩞼 34151154545454342444
+𩞽 34151154543345153554
+𩞾 341511542522135251214
+𩞿 341511541312515344544
+𩟀 341511544155332411121
+𩟁 341511542522112513534
+𩟂 34151154251225251454
+𩟃 341511541452413434454
+𩟄 3415115412251255154444
+𩟅 341511543412512513434
+𩟆 34151154131213541454
+𩟇 341511543253431234134
+𩟈 341511542434525125121
+𩟉 341511542522135121121
+𩟊 341511542512211311534
+𩟋 341511543513354111251
+𩟌 341511541212121543134
+𩟍 341511542531154312341
+𩟎 344511542512512511234
+𩟏 341511541534153425221
+𩟐 34451154121431112454
+𩟑 344511542522522523432
+𩟒 344511544453412134354
+𩟓 3415115421213241112154
+𩟔 3415115444535415411234
+𩟕 3415115412151211251124
+𩟖 3415115435251353525135
+𩟗 44112511123312341511534
+𩟘 3415115412125253414444
+𩟙 3415115412132411121534
+𩟚 12125143153254344511534
+𩟛 3415115412121251124124
+𩟜 2523445115452252154325
+𩟝 3415115451121444425221
+𩟞 344511541222522145354
+𩟟 3445115413121251125221
+𩟠 3445115441312341234554
+𩟡 3445115422431431121124
+𩟢 344511541224411251124
+𩟣 3415115413121251125221
+𩟤 34151154131212534125221
+𩟥 34151154252324111212525
+𩟦 34151154234324111211534
+𩟧 34151154325115545541234
+𩟨 351212513434251341511534
+𩟩 34451154445134432511234
+𩟪 34151154113411342511134
+𩟫 34451154545454541253511
+𩟬 34451154132511325113251
+𩟭 341511544143135411515111
+𩟮 341511544125221241343534
+𩟯 341511541452444432411121
+𩟰 341511541251245132511234
+𩟱 341511543211511342511134
+𩟲 34451154134121222511134
+𩟳 344511543411234251214544
+𩟴 341511541235123525112154
+𩟵 344511543143141211254444
+𩟶 3415115434341211121111534
+𩟷 555251521532411121341511534
+𩟸 445121251445121251341511534
+𩟹 34451154251112511132411121
+𩟺 3445115412212512531425221
+𩟻 34451154251141251251112213534
+𩟼 34451154344353143111344511534
+𩟽 34451154145244442512512511234341
+𩟾 3553515
+𩟿 3552534
+𩠀 3555215
+𩠁 35512211
+𩠂 35531525
+𩠃 355143134
+𩠄 3551431234
+𩠅 355134454
+𩠆 35544512134
+𩠇 355512454
+𩠈 35534454544
+𩠉 35543113455
+𩠊 355252132522
+𩠋 355521342511
+𩠌 355431134454
+𩠍 35541533152134
+𩠎 35512512212511
+𩠏 355243452513112
+𩠐 5551325111
+𩠑 12431325111
+𩠒 355551325111
+𩠓 431325111315
+𩠔 4313251113115
+𩠕 43132511113344
+𩠖 133445551325111
+𩠗 53254431325111
+𩠘 43132511135424
+𩠙 13344431325111
+𩠚 431325111415334
+𩠛 431325111151225
+𩠜 5551325111152511
+𩠝 5551325111125125
+𩠞 1251255551325111
+𩠟 431325111515342
+𩠠 431325111341154
+𩠡 55513251111225125
+𩠢 12251255551325111
+𩠣 13434345551325111
+𩠤 4313251111251124
+𩠥 2125111431325111
+𩠦 2433541431325111
+𩠧 4313251115135251
+𩠨 31234354431325111
+𩠩 43132511134343134
+𩠪 4143133335551325111
+𩠫 4512511125551325111
+𩠬 431325111431325111
+𩠭 431325111513154121
+𩠮 4313251114521212154
+𩠯 4313251115311225125
+𩠰 43132511145121213134
+𩠱 431325111325151454
+𩠲 43132511125125115341
+𩠳 431325111123432411121
+𩠴 4313251113412524312511
+𩠵 43132511144511221341234
+𩠶 53112512343134431325111
+𩠷 121115433313544431325111
+𩠸 4313251113143141211254444
+𩠹 554554155455453312431325111
+𩠺 3123425111
+𩠻 3123425113415
+𩠼 3123412342511
+𩠽 3123425111234
+𩠾 41341312342511
+𩠿 31234251111234
+𩡀 31234251152234
+𩡁 31234251134154
+𩡂 312342511341534
+𩡃 31234251125112
+𩡄 31234251131234
+𩡅 312342511431234
+𩡆 312342511515515
+𩡇 3123425113541112
+𩡈 3123425112433541
+𩡉 31234251112123453
+𩡊 31234531312342511
+𩡋 31234251111342444
+𩡌 312342511312342511
+𩡍 312342413425111344
+𩡎 312342511255455452
+𩡏 31234251113251152
+𩡐 312342511312342511
+𩡑 412511354312342511
+𩡒 312342511124552153
+𩡓 3123425113554541541
+𩡔 3123425114453121251
+𩡕 4143454153312342511
+𩡖 3123425113443451354
+𩡗 3123425113251111344
+𩡘 3123425111325111354
+𩡙 31234251112212523434
+𩡚 31234251143111225221
+𩡛 51311234124312342511
+𩡜 3123425114511543511
+𩡝 312342511125221251112
+𩡞 312342511251212511134
+𩡟 312342511224312524134
+𩡠 312343424134312342511
+𩡡 31234251143252343134
+𩡢 3123425113123425114444
+𩡣 3123425113443454544354
+𩡤 31234251112121215425221
+𩡥 31234251112512253112521234
+𩡦 312342511125122531125211234
+𩡧 12112512222
+𩡨 31211254444
+𩡩 121125444435
+𩡪 121211254444
+𩡫 351211254444
+𩡬 121125444434
+𩡭 121125444424
+𩡮 121125444434
+𩡯 121125444412
+𩡰 1211254444512
+𩡱 1341211254444
+𩡲 1211254444534
+𩡳 1211254444251
+𩡴 1211254444312
+𩡵 5121211254444
+𩡶 1211254444121
+𩡷 13441211254444
+𩡸 12112544441252
+𩡹 12112544443115
+𩡺 12112544443432
+𩡻 12112544443134
+𩡼 12112544444124
+𩡽 52131211254444
+𩡾 12112544442343
+𩡿 252511211254444
+𩢀 12112544441525
+𩢁 43131211254444
+𩢂 54541211254444
+𩢃 12112544445454
+𩢄 12112544441135
+𩢅 12112544441534
+𩢆 121125444425215
+𩢇 12112544443254
+𩢈 12112544441512
+𩢉 35131211254444
+𩢊 12112544445353
+𩢋 12112544443511
+𩢌 41341211254444
+𩢍 121125444433544
+𩢎 121125444452252
+𩢏 121125444425132
+𩢐 121125444431211
+𩢑 2121151211254444
+𩢒 121125444455453
+𩢓 121125444453212
+𩢔 121125444443112
+𩢕 121125444412341
+𩢖 121125444411234
+𩢗 121521211254444
+𩢘 121125444412515
+𩢙 134431211254444
+𩢚 121125444431334
+𩢛 121125444435345
+𩢜 121125444434234
+𩢝 12112544443215
+𩢞 121125444412152
+𩢟 121125444453251
+𩢠 542511211254444
+𩢡 121125444425211
+𩢢 121125444425134
+𩢣 121125444443115
+𩢤 121125444411214
+𩢥 251341211254444
+𩢦 121125444435444
+𩢧 121125444412154
+𩢨 121125444412211
+𩢩 121125444421211
+𩢪 121125444412251
+𩢫 311211211254444
+𩢬 121125444421513
+𩢭 1211254444212135
+𩢮 3212341211254444
+𩢯 1211254444345325
+𩢰 1211254444321344
+𩢱 1211254444252511
+𩢲 1211254444125134
+𩢳 5415411211254444
+𩢴 1211254444121251
+𩢵 1211254444445315
+𩢶 1211254444251134
+𩢷 1211254444132511
+𩢸 1211254444335414
+𩢹 1211254444321511
+𩢺 12112544443541
+𩢻 3112341211254444
+𩢼 1211254444111215
+𩢽 1215121211254444
+𩢾 1354221211254444
+𩢿 1211254444311252
+𩣀 1211254444253434
+𩣁 1211254444253415
+𩣂 3121351211254444
+𩣃 1211254444555252
+𩣄 1211254444131515
+𩣅 3215111211254444
+𩣆 1211254444431112
+𩣇 1211254444415325
+𩣈 3453251211254444
+𩣉 5312511211254444
+𩣊 1211254444131534
+𩣋 1211254444132511
+𩣌 1211254444522121
+𩣍 1211254444323552
+𩣎 1511341211254444
+𩣏 3541521211254444
+𩣐 4153251211254444
+𩣑 1211254444445531
+𩣒 1211254444535353
+𩣓 1211254444312154
+𩣔 1211254444134115
+𩣕 1211254444133125
+𩣖 12112544444134251
+𩣗 12413441211254444
+𩣘 12112544441221115
+𩣙 12112544441125112
+𩣚 12112544441324251
+𩣛 12112544443121535
+𩣜 12112544443112121
+𩣝 12112544442121233
+𩣞 12112544442523554
+𩣟 44123431211254444
+𩣠 44123431211254444
+𩣡 12112544441245521
+𩣢 12112544443253541
+𩣣 31215341211254444
+𩣤 12112544443334535
+𩣥 12112544443434251
+𩣦 12112544443525135
+𩣧 12112544443443531
+𩣨 31215341211254444
+𩣩 12112544441213312
+𩣪 12112544441555121
+𩣫 12112544443123422
+𩣬 12112544441251254
+𩣭 121125444435544544
+𩣮 121125444435251354
+𩣯 121125444425342511
+𩣰 121125444441353412
+𩣱 121125444412135121
+𩣲 121125444425122134
+𩣳 121125444412511234
+𩣴 121125444441312154
+𩣵 121125444444535455
+𩣶 251135111211254444
+𩣷 3121212111211254444
+𩣸 121125444432515112
+𩣹 513522521211254444
+𩣺 121125444413412132
+𩣻 121231341211254444
+𩣼 121125444444535121
+𩣽 121125444435431234
+𩣾 12112544445231525
+𩣿 121125444452115211
+𩤀 121125444443122431
+𩤁 121125444425312341
+𩤂 121125444435321511
+𩤃 121125444412155121
+𩤄 134121125444435515
+𩤅 121125444451312251
+𩤆 123412341211254444
+𩤇 121125444434125122
+𩤈 121125444412212511
+𩤉 121125444412123215
+𩤊 121125444415341534
+𩤋 121125444421211234
+𩤌 215315351211254444
+𩤍 121125444435523523
+𩤎 121125444441321251
+𩤏 121125444441343412
+𩤐 121125444411354153
+𩤑 121125444441431112
+𩤒 121125444444525111
+𩤓 121125444451352252
+𩤔 121125444413425115
+𩤕 121125444411213534
+𩤖 121125444432534135
+𩤗 1211254444543343115
+𩤘 1211254444555325341
+𩤙 1211254444412514512
+𩤚 1211254444252132522
+𩤛 1211254444251125214
+𩤜 121125444412132511
+𩤝 1211254444545233134
+𩤞 121125444445351234
+𩤟 1211254444251113533
+𩤠 1211254444153532511
+𩤡 4451251111211254444
+𩤢 1211254444414345252
+𩤣 1211254444321113554
+𩤤 1325221111211254444
+𩤥 1211254444131251534
+𩤦 5315315311211254444
+𩤧 1211254444252134334
+𩤨 1211254444325114554
+𩤩 4453542511211254444
+𩤪 1211254444312343452
+𩤫 1211254444515121121
+𩤬 1211254444125125251
+𩤭 1211254444125112534
+𩤮 1211254444521251152
+𩤯 1212251341211254444
+𩤰 1211254444251221134
+𩤱 1211254444121225121
+𩤲 1211254444125123422
+𩤳 1211254444125342154
+𩤴 1211254444131353334
+𩤵 1211254444251131121
+𩤶 1211254444251135352
+𩤷 12112544441215512
+𩤸 1211254444251212511
+𩤹 1211254444312342511
+𩤺 321511341211254444
+𩤻 1211254444344311134
+𩤼 1211254444341122431
+𩤽 12112544443321531535
+𩤾 12112544442153154134
+𩤿 12112544445114525254
+𩥀 12112544443115431234
+𩥁 12112544444135112251
+𩥂 12112544441213352511
+𩥃 12112544444511353334
+𩥄 12112544441225111134
+𩥅 12112544443443321511
+𩥆 12112544444153313534
+𩥇 12112544445131221534
+𩥈 12112544442534125221
+𩥉 12112544442521251431
+𩥊 41251252511211254444
+𩥋 12112544441211254444
+𩥌 12112544444453121251
+𩥍 12112544444311123112
+𩥎 12112544445452335453
+𩥏 12112544441213154121
+𩥐 12112544443251511252
+𩥑 12112544442511541541
+𩥒 12112544441212345325
+𩥓 34433215111211254444
+𩥔 35414125341211254444
+𩥕 12112544441221251121
+𩥖 35352251211211254444
+𩥗 12112544443234343434
+𩥘 12112544442523223134
+𩥙 1211254444431113121
+𩥚 12112544441113431234
+𩥛 12112544443554541541
+𩥜 12112544444153333534
+𩥝 12112544444135344544
+𩥞 12133525111211254444
+𩥟 12112544441214513251
+𩥠 1211254444122341251
+𩥡 12522112112544443511
+𩥢 32512135541211254444
+𩥣 12112544443443311252
+𩥤 12112544444132411121
+𩥥 12112544444453232511
+𩥦 54523354531211254444
+𩥧 12112544443251111121
+𩥨 12112544443343434345
+𩥩 12112544445153351533
+𩥪 12112544442523541112
+𩥫 121125444411134321511
+𩥬 12112544444134522554
+𩥭 121125444435251214444
+𩥮 121125444441431331121
+𩥯 131134535541211254444
+𩥰 121125444421112111134
+𩥱 121125444443113424134
+𩥲 121125444412512341134
+𩥳 121125444412511121534
+𩥴 121125444431234223112
+𩥵 121125444454545434234
+𩥶 121125444451132431234
+𩥷 121125444433344511234
+𩥸 12112544441312215534
+𩥹 121125444412512343134
+𩥺 121125444425125125121
+𩥻 121125444441351125112
+𩥼 121125444413211234534
+𩥽 12112544443411234454
+𩥾 121125444434125213434
+𩥿 121125444444532132511
+𩦀 121125444431234221234
+𩦁 121125444432343434341
+𩦂 1211254444511225113511
+𩦃 1211254444511225111234
+𩦄 1211254444312343533112
+𩦅 1211254444312343531234
+𩦆 1211254444413541521234
+𩦇 1211254444121251431251
+𩦈 1211254444125221114334
+𩦉 432523431341211254444
+𩦊 1211254444445112213444
+𩦋 1211254444554554134534
+𩦌 1211254444122512511534
+𩦍 4143125112111211254444
+𩦎 1211254444311121114134
+𩦏 1211254444252251135345
+𩦐 1211254444431121431251
+𩦑 1211254444515121121251
+𩦒 1211254444134315233534
+𩦓 1211254444511225111132
+𩦔 1211254444511225111252
+𩦕 1211254444121251431534
+𩦖 1211254444515515122134
+𩦗 1211254444121241343412
+𩦘 1211254444122132411121
+𩦙 1211254444125123431134
+𩦚 1211254444134432511234
+𩦛 3343434341211211254444
+𩦜 3511431134531211254444
+𩦝 121125444413553425221
+𩦞 12112544441212251135345
+𩦟 12112544441212543341134
+𩦠 12112544441252211123422
+𩦡 32111525111341211254444
+𩦢 12112544442153152515134
+𩦣 12112544441251152253412
+𩦤 12112544442511221111534
+𩦥 12112544441212122511134
+𩦦 12112544441212135415132
+𩦧 12112544442511252214153
+𩦨 32511415331341211254444
+𩦩 1211254444324111212525
+𩦪 12112544444134112213534
+𩦫 12112544443251115413534
+𩦬 12112544444311342512134
+𩦭 12112544441212122151234
+𩦮 12112544442522112513534
+𩦯 12112544442522113443112
+𩦰 12112544443234343434115
+𩦱 12112544443412524312511
+𩦲 12112544443444445234354
+𩦳 12112544444143132115115
+𩦴 12112544445112251141252
+𩦵 41332324111211211254444
+𩦶 215315354311341211254444
+𩦷 121125444412132411121534
+𩦸 121125444434251211212134
+𩦹 121125444412512531125221
+𩦺 121125444412124511353334
+𩦻 345251121125444435115113
+𩦼 121125444435425132411121
+𩦽 121125444412125145154121
+𩦾 121125444412522111234124
+𩦿 121125444444552132511134
+𩧀 121125444413412513121534
+𩧁 121125444412211154343434
+𩧂 1211254444325115545541234
+𩧃 1211254444131212251125214
+𩧄 1211254444331233122511134
+𩧅 1211254444123434341234134
+𩧆 1211254444555253415445445
+𩧇 1211254444121235415411234
+𩧈 1211254444121252212511134
+𩧉 1211254444413122112512134
+𩧊 121125444435253425111354
+𩧋 1211254444312343533424134
+𩧌 1211254444121125444412344
+𩧍 1211254444132511325113251
+𩧎 1211254444252324111212525
+𩧏 12112544441452413432411121
+𩧐 12112544441251245132511234
+𩧑 12112544444143125111353334
+𩧒 12112544443123432511154444
+𩧓 12112544441225112321155212
+𩧔 433443341325111341211254444
+𩧕 132511251112132511211254444
+𩧖 121125444431234343434554234
+𩧗 121125444412251112341213234
+𩧘 1211254444251112511132411121
+𩧙 1211254444321132534151114334
+𩧚 2511125111324111211211254444
+𩧛 1211254444122125112354111251
+𩧜 1211254444125111212511214124
+𩧝 1211254444411211211211213534
+𩧞 1211254444312343424134353152
+𩧟 12112544444111251433443344334
+𩧠 12112544443123434241343533112
+𩧡 251112511132411121541211254444
+𩧢 121125444412112544441211254444
+𩧣 1211254444415251212111235115113
+𩧤 1211254444212534444412511251522
+𩧥 121125444412112544442153152512125221
+𩧦 5513432
+𩧧 55141431
+𩧨 55125121
+𩧩 55111534
+𩧪 55113534
+𩧫 55125134
+𩧬 55125211
+𩧭 55131134
+𩧮 135422551
+𩧯 55153544
+𩧰 551451512
+𩧱 551252515
+𩧲 551251251
+𩧳 551335414
+𩧴 551341121
+𩧵 551121251
+𩧶 354152551
+𩧷 4453112551
+𩧸 3123422551
+𩧹 5512511211
+𩧺 5515135251
+𩧻 55144535435
+𩧼 55113412132
+𩧽 55125122511
+𩧾 551125221121
+𩧿 551125125121
+𩨀 551251135345
+𩨁 551111342511
+𩨂 551432514544
+𩨃 55151111254
+𩨄 551321511254
+𩨅 551251212511
+𩨆 551412514512
+𩨇 551431234531
+𩨈 551341251122
+𩨉 551125123422
+𩨊 551431251122
+𩨋 5511225111134
+𩨌 5512511541541
+𩨍 5515131221534
+𩨎 55125121122134
+𩨏 551343123425121
+𩨐 551555253415445445
+𩨑 251245354112
+𩨒 251245354135
+𩨓 25545251124
+𩨔 35255452511
+𩨕 2512453541515
+𩨖 2512453541512
+𩨗 2512453541115
+𩨘 255452511315
+𩨙 255452511515
+𩨚 255452511531
+𩨛 2512453541315
+𩨜 25124535415215
+𩨝 25124535411254
+𩨞 2512453541354
+𩨟 25124535413434
+𩨠 25124535411523
+𩨡 25124535412343
+𩨢 25124535413324
+𩨣 25124535414153
+𩨤 25124535411554
+𩨥 25124535414535
+𩨦 25124535413515
+𩨧 25124535413453
+𩨨 2554525111535
+𩨩 2554525113354
+𩨪 2554525113435
+𩨫 2554525115113
+𩨬 251245354141554
+𩨭 251245354144535
+𩨮 252132512453541
+𩨯 251245354133124
+𩨰 251245354131134
+𩨱 2121152512453541
+𩨲 251245354145434
+𩨳 522522512453541
+𩨴 251245354125115
+𩨵 251245354125134
+𩨶 251245354133534
+𩨷 251245354125215
+𩨸 251245354152252
+𩨹 25545251125112
+𩨺 251245354131135
+𩨻 25545251141121
+𩨼 251245254132121
+𩨽 2512453541325151
+𩨾 2512453541351355
+𩨿 2512453541134334
+𩩀 2512453541555252
+𩩁 251245354115435
+𩩂 2512453541341251
+𩩃 2512453541134112
+𩩄 2512453541113112
+𩩅 255452511251251
+𩩆 2512453541252151
+𩩇 4154352512452511
+𩩈 255452511341154
+𩩉 25124535411213521
+𩩊 25124535413415251
+𩩋 25124535411555121
+𩩌 25124535413554234
+𩩍 25124535412512115
+𩩎 25124535413515251
+𩩏 25124535414455134
+𩩐 2554525112512511
+𩩑 2554525111251251
+𩩒 2554525111353334
+𩩓 25124535412433541
+𩩔 2554525112512134
+𩩕 25124535413251135
+𩩖 25124525111121132
+𩩗 251245354134112251
+𩩘 415334442512453541
+𩩙 251245354125121212
+𩩚 251245354125121132
+𩩛 251245354113412512
+𩩜 52131212512453541
+𩩝 251245354144535121
+𩩞 2512453541312121211
+𩩟 251245354154545454
+𩩠 251245354141343412
+𩩡 251245354112135354
+𩩢 251245354132151135
+𩩣 25124535411543541
+𩩤 25545251112155121
+𩩥 25545251112211234
+𩩦 251245354141533444
+𩩧 25545251143344334
+𩩨 25545251153254322
+𩩩 251245251111213534
+𩩪 251125112512452511
+𩩫 251245251125112511
+𩩬 121451352512452511
+𩩭 2512453541234325111
+𩩮 2512453541413122154
+𩩯 2512453541351325122
+𩩰 2512453541151532511
+𩩱 2512453541512115154
+𩩲 2512453541251135345
+𩩳 2512453541312511211
+𩩴 2512453541131251534
+𩩵 2512453541325131134
+𩩶 2512453541341511534
+𩩷 255452511414313333
+𩩸 2512453541122125112
+𩩹 2512453541125342154
+𩩺 255452511325112534
+𩩻 255452511331225111
+𩩼 255452511333542511
+𩩽 2512453541351331134
+𩩾 25124535413513115515
+𩩿 255452511414312511
+𩪀 2512453541325151454
+𩪁 25124535413251213554
+𩪂 25124535412521251431
+𩪃 25124535414453121251
+𩪄 25124535411312113121
+𩪅 25124535413253411515
+𩪆 25124535412512453541
+𩪇 2554525115552511134
+𩪈 2554525112432511134
+𩪉 251245354141352211515
+𩪊 251245354112522111234
+𩪋 11215331342512453541
+𩪌 25124535413541112454
+𩪍 251245354112512512515
+𩪎 251245354112121344132
+𩪏 251245354113121253434
+𩪐 251245354125125115341
+𩪑 251245354155525111234
+𩪒 251245354112121213121
+𩪓 251245354125232411121
+𩪔 513353535542512453541
+𩪕 251245354112141533134
+𩪖 2554525112511122112
+𩪗 2512453541134315233534
+𩪘 2512453541414312511211
+𩪙 2512453541414345252251
+𩪚 2512453541134432511234
+𩪛 2512453541224314311134
+𩪜 1343152335342512453541
+𩪝 25545251112235455121
+𩪞 2512452511515515122134
+𩪟 255452511414312512251
+𩪠 41332324111212512453541
+𩪡 51312213435542512453541
+𩪢 25124535414143125113534
+𩪣 25124535414143125114544
+𩪤 25124535412243143111234
+𩪥 25124535411452413434154
+𩪦 2512453541521312113121
+𩪧 25124535415132514143112
+𩪨 52252415321542512453541
+𩪩 25124535414143452512251
+𩪪 25124535411325112114444
+𩪫 25124535411212143111234
+𩪬 2554525114134315112234
+𩪭 251245354121213241112154
+𩪮 251245354141312351235554
+𩪯 25545251144552132511134
+𩪰 25545251114524444132522
+𩪱 25545251131254312114444
+𩪲 2512453541212134341343452
+𩪳 2512453541323434343413121
+𩪴 25545251143111344511534
+𩪵 255452541251125125313134
+𩪶 25124535413143145115452
+𩪷 251245354152131213541454
+𩪸 25124535411331234312342121
+𩪹 25124535413211511342511134
+𩪺 2554525112511145244441154
+𩪻 251245354131431425221321534
+𩪼 2512453541212125125132411121
+𩪽 255452541554554155455453312
+𩪾 41112515544445544442512453541
+𩪿 4125125251354
+𩫀 41251252515134
+𩫁 41251252513115
+𩫂 41251252515215
+𩫃 41251252511521
+𩫄 41251252514412
+𩫅 41251252511534
+𩫆 41251252513132
+𩫇 13244125125251
+𩫈 41251252511344
+𩫉 53534125125251
+𩫊 412512525134121
+𩫋 412512525153254
+𩫌 412512525125251
+𩫍 412512525131121
+𩫎 4125125251135252
+𩫏 412512525125112
+𩫐 4311324125125251
+𩫑 4125125251431132
+𩫒 4125125251133252
+𩫓 4125125251135435
+𩫔 4125125251312121
+𩫕 41251252511353334
+𩫖 41251252511251522
+𩫗 41251252512525112
+𩫘 41251252512513541
+𩫙 41251252513251113
+𩫚 412512525155135252
+𩫛 412512525141343412
+𩫜 412512525125121132
+𩫝 412512525132511312
+𩫞 4125125251551353334
+𩫟 4125125251354152121
+𩫠 41251252511251125134
+𩫡 41251252511234125111
+𩫢 41251252511212511134
+𩫣 41251252512512511134
+𩫤 41251252513541521234
+𩫥 555251112344125125251
+𩫦 412512525154545434333
+𩫧 4125125251125112125111
+𩫨 4125125251125112135534
+𩫩 41251252511251122515215
+𩫪 41251252512511232511312
+𩫫 4125125251125112325121412
+𩫬 412512525132511125121132
+𩫭 4125125251125112121325114
+𩫮 41251252511251521232511312
+𩫯 41251252511251121251124124
+𩫰 412512525112511225112512531
+𩫱 412512525112511241351125112
+𩫲 4125125251251214251214251214
+𩫳 251325113251113425132514125125251
+𩫴 121115433335
+𩫵 121115433334
+𩫶 121115433352
+𩫷 121115433335
+𩫸 121115433353
+𩫹 1211154333252
+𩫺 1211154333252
+𩫻 1211154333515
+𩫼 1211154333354
+𩫽 1211154333121
+𩫾 1211154333432
+𩫿 12111543331252
+𩬀 12111543332534
+𩬁 12111543333515
+𩬂 12111543332134
+𩬃 12111543333434
+𩬄 12111543332134
+𩬅 12111543333541
+𩬆 12111543331215
+𩬇 12111543331344
+𩬈 12111543331535
+𩬉 12111543333553
+𩬊 12111543334334
+𩬋 12111543335412
+𩬌 12111543335435
+𩬍 12111543335521
+𩬎 12111543331121
+𩬏 12111543333541
+𩬐 12111543333324
+𩬑 121115433321251
+𩬒 121115433345252
+𩬓 121115433331252
+𩬔 121115433334154
+𩬕 121115433313534
+𩬖 121115433334333
+𩬗 121115433355453
+𩬘 121115433331234
+𩬙 121115433332124
+𩬚 121115433312211
+𩬛 121115433312135
+𩬜 121115433351335
+𩬝 121115433312534
+𩬞 121115433325111
+𩬟 121115433331211
+𩬠 121115433354251
+𩬡 121115433332121
+𩬢 121115433352252
+𩬣 121115433354121
+𩬤 121115433313534
+𩬥 121115433335351
+𩬦 121115433341431
+𩬧 121115433312121
+𩬨 121115433312154
+𩬩 121115433312251
+𩬪 12111543333454
+𩬫 121115433325134
+𩬬 121115433325221
+𩬭 121115433331134
+𩬮 121115433335112
+𩬯 121115433334234
+𩬰 1211154333121513
+𩬱 1211154333341534
+𩬲 1211154333251153
+𩬳 1211154333253434
+𩬴 1211154333132412
+𩬵 121115433335152
+𩬶 1211154333511112
+𩬷 1211154333555252
+𩬸 1211154333431523
+𩬹 1211154333111215
+𩬺 1211154333152511
+𩬻 1211154333351234
+𩬼 1211154333253541
+𩬽 1211154333541234
+𩬾 1211154333122431
+𩬿 1211154333413534
+𩭀 1211154333133511
+𩭁 1211154333322322
+𩭂 1211154333243135
+𩭃 1211154333251214
+𩭄 1211154333431234
+𩭅 1211154333541541
+𩭆 1211154333341251
+𩭇 12111543332511211
+𩭈 12111543331325111
+𩭉 12111543333413252
+𩭊 12111543335135251
+𩭋 12111543332512341
+𩭌 12111543331343434
+𩭍 12111543331324251
+𩭎 1211154333522153
+𩭏 12111543333443531
+𩭐 12111543331353334
+𩭑 12111543331213234
+𩭒 12111543331353334
+𩭓 12111543331253511
+𩭔 12111543333324153
+𩭕 12111543334455435
+𩭖 12111543331324251
+𩭗 12111543331251124
+𩭘 12111543331234123
+𩭙 12111543331555121
+𩭚 12111543332511234
+𩭛 12111543333535112
+𩭜 12111543332513534
+𩭝 12111543333121534
+𩭞 121115433351124134
+𩭟 121115433321251112
+𩭠 121115433335133541
+𩭡 121115433312212511
+𩭢 121115433325213112
+𩭣 121115433325342511
+𩭤 121115433335544544
+𩭥 121115433335321511
+𩭦 1211154333312121211
+𩭧 121115433332511312
+𩭨 121115433312111534
+𩭩 121115433312511234
+𩭪 121115433351352252
+𩭫 121115433312523434
+𩭬 121115433333251532
+𩭭 121115433325111515
+𩭮 121115433334154544
+𩭯 121115433312155121
+𩭰 121115433312342511
+𩭱 121115433315252511
+𩭲 121115433332511354
+𩭳 121115433335334544
+𩭴 121115433344534121
+𩭵 121115433344525151
+𩭶 121115433344125121
+𩭷 121115433313434234
+𩭸 121115433341324251
+𩭹 121115433354134333
+𩭺 1211154333125125121
+𩭻 1211154333134432511
+𩭼 1211154333322511234
+𩭽 1211154333445354251
+𩭾 1211154333545233134
+𩭿 1211154333211153541
+𩮀 1211154333353344544
+𩮁 1211154333111253134
+𩮂 1211154333251135345
+𩮃 1211154333445343454
+𩮄 1211154333312343115
+𩮅 1211154333134354354
+𩮆 1211154333251113422
+𩮇 1211154333445354153
+𩮈 1211154333431253511
+𩮉 1211154333251112134
+𩮊 1211154333253435112
+𩮋 1211154333414312511
+𩮌 1211154333123425111
+𩮍 1211154333344511534
+𩮎 1211154333123425111
+𩮏 1211154333131251534
+𩮐 1211154333251125214
+𩮑 121115433325525251
+𩮒 1211154333252214153
+𩮓 1211154333253435112
+𩮔 1211154333451251112
+𩮕 1211154333325114554
+𩮖 12111543332521251431
+𩮗 12111543334143141431
+𩮘 12111543334125125251
+𩮙 12111543331212122111
+𩮚 12111543334544251214
+𩮛 12111543331245554234
+𩮜 12111543332511353322
+𩮝 12111543334453112251
+𩮞 12111543333532511211
+𩮟 12111543331125234341
+𩮠 12111543334453434251
+𩮡 12111543334511353334
+𩮢 12111543331215251121
+𩮣 12111543332121335414
+𩮤 12111543335452313544
+𩮥 12111543331344324134
+𩮦 12111543334134343541
+𩮧 12111543335454541234
+𩮨 12111543331215425221
+𩮩 12111543333415113251
+𩮪 12111543332512214544
+𩮫 12111543333412343554
+𩮬 12111543333454541541
+𩮭 12111543333251511252
+𩮮 12111543333251154444
+𩮯 121115433312141533134
+𩮰 121115433332533414544
+𩮱 121115433311134321511
+𩮲 121115433341431331121
+𩮳 121115433312522111234
+𩮴 121115433325232411121
+𩮵 131134355451211154333
+𩮶 121115433312512343534
+𩮷 121115433332511355135
+𩮸 121115433312512343134
+𩮹 121115433325121554234
+𩮺 121115433325112522153
+𩮻 121115433325345445445
+𩮼 12111543335452335453
+𩮽 1211154333122125111343
+𩮾 121115433313113453554
+𩮿 121115433312143112354
+𩯀 12111543331251234454
+𩯁 121115433325112512531
+𩯂 1211154333511541535
+𩯃 1211154333515322511134
+𩯄 1211154333431253511124
+𩯅 1211154333445125125121
+𩯆 1211154333121121121135
+𩯇 1211154333543341251431
+𩯈 1211154333414312511534
+𩯉 1211154333251112211154
+𩯊 1211154333134432511234
+𩯋 1211154333122511121534
+𩯌 1211154333543345153554
+𩯍 1211154333121212211154
+𩯎 121115433313553425221
+𩯏 1211154333224314311134
+𩯐 1211154333121215252511
+𩯑 1211154333545454342444
+𩯒 1211154333113411342534
+𩯓 1211154333555253435112
+𩯔 1211154333445521325111
+𩯕 1211154333521214154325
+𩯖 1211154333123444511234
+𩯗 1211154333254312114444
+𩯘 1211154333313425125251
+𩯙 121115433325221353334
+𩯚 121115433352131212511
+𩯛 12111543333251141533134
+𩯜 12111543332153152512153
+𩯝 12111543331212251135341
+𩯞 12111543332135454431234
+𩯟 12111543332512512511234
+𩯠 12111543333251144534251
+𩯡 12111543333215115445445
+𩯢 12111543331344431325111
+𩯣 12111543333444445234354
+𩯤 12111543334125251125111
+𩯥 12111543331113425114444
+𩯦 121115433312151211251124
+𩯧 121115433312522111234124
+𩯨 121115433313425234343434
+𩯩 121115433313513125125534
+𩯪 121115433355444444525151
+𩯫 121115433344552132511134
+𩯬 121115433334435332511211
+𩯭 121115433344552132511134
+𩯮 121115433344112212523434
+𩯯 121115433335251353525135
+𩯰 1211154333234324111211534
+𩯱 1211154333251112213424134
+𩯲 1211154333111343215114544
+𩯳 1211154333113411342511134
+𩯴 1211154333252211212513534
+𩯵 1211154333344143125114544
+𩯶 1211154333121211121111534
+𩯷 1211154333252324111211534
+𩯸 1211154333323434343413121
+𩯹 1211154333132511325113251
+𩯺 12111543331331234312342121
+𩯻 12111543332534122111122111
+𩯼 1211154333122252214525111
+𩯽 12111543331251234352511134
+𩯾 12111543332511251113311252
+𩯿 12111543333211511342511134
+𩰀 12111543334143125111515111
+𩰁 121115433334341211121111534
+𩰂 121115433314524134251251251
+𩰃 121115433335251153535251354
+𩰄 121115433344144512332511134
+𩰅 1211154333121213513125125534
+𩰆 1211154333251122111251122111
+𩰇 1211154333431325111134431254
+𩰈 121115433334451154121121121135
+𩰉 12111543331251245251251112213534
+𩰊 11212
+𩰋 21121
+𩰌 2112111212315
+𩰍 21121112124124
+𩰎 21121112121534
+𩰏 21121112123553
+𩰐 211211121234234
+𩰑 2112111212132511
+𩰒 21121112121251431
+𩰓 211211121212213455
+𩰔 211211121234112431
+𩰕 35211211121232151135
+𩰖 211211121212514313312
+𩰗 211211121212332511134
+𩰘 211211121235251125115
+𩰙 2112111212341251541541
+𩰚 2112111212121551213312
+𩰛 21121112121212514311254
+𩰜 211211121213533135334334
+𩰝 211211121244512332511134
+𩰞 211211121213425234343434
+𩰟 2112111212135333413533344334
+𩰠 344444521552134
+𩰡 344444521525134
+𩰢 3444445215125134
+𩰣 344345344444521554
+𩰤 3113415153444445235
+𩰥 344325221344444521554
+𩰦 123425221344444521554
+𩰧 1234522133444445215333
+𩰨 34435132513444445215124
+𩰩 1234413412344534444415124
+𩰪 3211311252511453444445235333
+𩰫 1251254312152
+𩰬 1251152254312
+𩰭 12512543121534
+𩰮 12512543124412
+𩰯 125125431212251
+𩰰 125125431254121
+𩰱 4311121251254312
+𩰲 5155151251254312
+𩰳 1251254312121121
+𩰴 1251254312132522
+𩰵 1251254312125111
+𩰶 1251254312415334
+𩰷 1251254312345235
+𩰸 1251254312511511
+𩰹 12512543121555121
+𩰺 12512543125434354
+𩰻 12512543121241344
+𩰼 12512543125423454
+𩰽 1221125431125435354
+𩰾 441515321251254312
+𩰿 113411341251254312
+𩱀 121212134251254312
+𩱁 431121341251254312
+𩱂 125125431252115211
+𩱃 125125431251111254
+𩱄 1251254312132522134
+𩱅 3452353541251254312
+𩱆 5155315151251254312
+𩱇 12512543121251254312
+𩱈 12512543123552335523
+𩱉 12512543123434112431
+𩱊 12512543121325224334
+𩱋 43112144441251254312
+𩱌 515411215151251254312
+𩱍 515122515151251254312
+𩱎 515515325151251254312
+𩱏 11215331341251254312
+𩱐 125125431241432535251
+𩱑 521335441241251254312
+𩱒 5151225141251254312515
+𩱓 5151221115151251254312
+𩱔 1331234312341251254312
+𩱕 3121353121351251254312
+𩱖 51512512345151251254312
+𩱗 51512535115151251254312
+𩱘 12512543121241344413534
+𩱙 43123441543251251254312
+𩱚 51512455215151251254312
+𩱛 12512543123444445235354
+𩱜 51513115345151251254312
+𩱝 12512543124112413443534
+𩱞 51512135215151251254312
+𩱟 51531554145151251254312
+𩱠 515153515351251254312515
+𩱡 515322513255151251254312
+𩱢 315541441543251251254312
+𩱣 515441515325151251254312
+𩱤 515511112545151251254312
+𩱥 5155454541115151251254312
+𩱦 51535523355235151251254312
+𩱧 51543112144445151251254312
+𩱨 51513115341245151251254312
+𩱩 31213531213512511251254312
+𩱪 51525111125345151251254312
+𩱫 51512512344545151251254312
+𩱬 321112341234511451251254312
+𩱭 5154325243125115151251254312
+𩱮 515441151512345151251254312
+𩱯 51543123441543255151251254312
+𩱰 5151213251125345151251254312
+𩱱 515315541441543255151251254312
+𩱲 515541541324111215151251254312
+𩱳 515414325335432115151251254312
+𩱴 2512511325111342512511251254312
+𩱵 4312342121252211315341251254312
+𩱶 51514524444324111215151251254312
+𩱷 5154312342121252211315345151251254312
+𩱸 4312342121252211315345151251254312515
+𩱹 325121355453
+𩱺 325121355452
+𩱻 325121355424
+𩱼 353251213554
+𩱽 1353251213554
+𩱾 3153251213554
+𩱿 4153251213554
+𩲀 3251213554252
+𩲁 3251213554354
+𩲂 3251213554524
+𩲃 3251213554354
+𩲄 1353251213554
+𩲅 3251213554124
+𩲆 32512135333
+𩲇 32512135521
+𩲈 3251213554252
+𩲉 4153251213554
+𩲊 32512135543115
+𩲋 41353251213554
+𩲌 41533251213554
+𩲍 32512135543112
+𩲎 32512135542343
+𩲏 32153251213554
+𩲐 32512135543533
+𩲑 32512135541154
+𩲒 32512135543154
+𩲓 32512135543134
+𩲔 32512135543312
+𩲕 32512135544334
+𩲖 15153251213554
+𩲗 32512135543112
+𩲘 12133251213554
+𩲙 32512135541234
+𩲚 12343251213554
+𩲛 45543251213554
+𩲜 32153251213554
+𩲝 32512135543553
+𩲞 32512135543511
+𩲟 32512135543534
+𩲠 32512135544153
+𩲡 112343251213554
+𩲢 325121355453254
+𩲣 251123251213554
+𩲤 325121355453251
+𩲥 325121355454251
+𩲦 325121355421251
+𩲧 121353251213554
+𩲨 2121153251213554
+𩲩 325121355434154
+𩲪 325121355435234
+𩲫 311343251213554
+𩲬 325121355413533
+𩲭 325121355411354
+𩲮 325121355444535
+𩲯 325121355443112
+𩲰 125153251213554
+𩲱 325121355412251
+𩲲 325121355425111
+𩲳 325121355425112
+𩲴 325121355425134
+𩲵 325121355431121
+𩲶 311343251213554
+𩲷 325121355431234
+𩲸 325113251213554
+𩲹 325121355421134
+𩲺 3251213554341234
+𩲻 3251213554413434
+𩲼 3251213554215315
+𩲽 3251213554122111
+𩲾 1335113251213554
+𩲿 3251213554234353
+𩳀 3251213554154121
+𩳁 2431353251213554
+𩳂 3251213554312135
+𩳃 3412343251213554
+𩳄 2512213251213554
+𩳅 3251213554311234
+𩳆 3251213554311234
+𩳇 3251213554323554
+𩳈 3251113251213554
+𩳉 3251213554335414
+𩳊 3251213554354251
+𩳋 3251213554341251
+𩳌 32512135541251251
+𩳍 32512135541555121
+𩳎 32512135543443521
+𩳏 34435333251213554
+𩳐 32512135541251124
+𩳑 32512135544412343
+𩳒 32512135541251234
+𩳓 32512135542511211
+𩳔 12135213251213554
+𩳕 32512135543443531
+𩳖 32512135542511134
+𩳗 32512135545411234
+𩳘 32512135543412344
+𩳙 34123543251213554
+𩳚 32512135544451135
+𩳛 32512135541251112
+𩳜 32512135541253511
+𩳝 31342513251213554
+𩳞 32512135541241344
+𩳟 32512135541353334
+𩳠 15545343251213554
+𩳡 32512135543443124
+𩳢 325121355413425115
+𩳣 325121355413412512
+𩳤 325121355412111534
+𩳥 135334343251213554
+𩳦 325121355431134251
+𩳧 145241343251213554
+𩳨 325121355421251124
+𩳩 325121355431234353
+𩳪 325121355425113132
+𩳫 325121355454431234
+𩳬 343435113251213554
+𩳭 325121355412522154
+𩳮 145234343251213554
+𩳯 325121355415353115
+𩳰 325121355421531534
+𩳱 325121355432115112
+𩳲 325121355432354354
+𩳳 325121355413434234
+𩳴 325121355412112124
+𩳵 3251213554251111344
+𩳶 1221512343251213554
+𩳷 3251213554521251152
+𩳸 3251213554121225121
+𩳹 325121355412535154
+𩳺 2511125153251213554
+𩳻 3251213554251213432
+𩳼 4453542513251213554
+𩳽 1113425113251213554
+𩳾 3251213554132522111
+𩳿 2111535413251213554
+𩴀 325121355412132511
+𩴁 3251213554131251534
+𩴂 3251213554312511211
+𩴃 3251213554355114544
+𩴄 3251213554451325122
+𩴅 3251213554111253134
+𩴆 55455415343251213554
+𩴇 32512135543412353554
+𩴈 25111112343251213554
+𩴉 32512135542512511134
+𩴊 32512135541212341234
+𩴋 3251213554151213511
+𩴌 32512135542231425221
+𩴍 32512135543211511254
+𩴎 32512135544134343541
+𩴏 43113425113251213554
+𩴐 325121355441554413412
+𩴑 325121355454545434333
+𩴒 515542512143251213554
+𩴓 325121355412212511134
+𩴔 325121355441351125112
+𩴕 125111233123251213554
+𩴖 431134251113251213554
+𩴗 325121355412212511121
+𩴘 325121355421531535435
+𩴙 325121355444145351234
+𩴚 325121355441343211234
+𩴛 215315321213251213554
+𩴜 325121355425121122134
+𩴝 3251213554543341251431
+𩴞 3251213554344335554444
+𩴟 1341213251143251213554
+𩴠 3251213554431234354152
+𩴡 3251213554351332411121
+𩴢 5452325352513251213554
+𩴣 1331234312343251213554
+𩴤 3251213554134432511234
+𩴥 215315224313251213554
+𩴦 5112251125113251213554
+𩴧 3251213554324111214444
+𩴨 4311124311123251213554
+𩴩 3251213554433443344334
+𩴪 5545541345343251213554
+𩴫 32512135251251251112
+𩴬 2522125111343251213554
+𩴭 325121355452334522554
+𩴮 32512135542522112143112
+𩴯 32512135542153151353334
+𩴰 325121353322521353134
+𩴱 4451234325111343251213554
+𩴲 212125221453543251213554
+𩴳 325121355444535415411234
+𩴴 325121355412212513443121
+𩴵 325121355412512531425221
+𩴶 325121355414524134132522
+𩴷 153113454521343251213554
+𩴸 325121355444512332511134
+𩴹 325121355454154132411121
+𩴺 1212522125111343251213554
+𩴻 2512125121251213251213554
+𩴼 3251213554251212512125121
+𩴽 4311213415115343251213554
+𩴾 3251213554121225221134534
+𩴿 53125132512135543251213554
+𩵀 145241342512512513251213554
+𩵁 325121355414524134251251251
+𩵂 145241342512512513251213554
+𩵃 325121355441432533543211234
+𩵄 3251213554212125125132411121
+𩵅 3251213554251112511132411121
+𩵆 32512135543121353121352511134
+𩵇 32512135542522155444432411121
+𩵈 325121355425111251113241112154
+𩵉 3251213554122325111212151534354
+𩵊 325121355421211325111212151534354
+𩵋 3525121134
+𩵌 3525121444452
+𩵍 3525121444435
+𩵎 3525121444454
+𩵏 3525121444415
+𩵐 3525121444415
+𩵑 3235251214334
+𩵒 3525121444434
+𩵓 3525121444453
+𩵔 35251214444525
+𩵕 35251214444534
+𩵖 35251214444234
+𩵗 35251214444515
+𩵘 35251214444121
+𩵙 35251214444322
+𩵚 35251214444121
+𩵛 13535251214444
+𩵜 35251214444352
+𩵝 35251214444123
+𩵞 35251214444312
+𩵟 35251214444112
+𩵠 352512144443112
+𩵡 352512144441355
+𩵢 352512144443534
+𩵣 352512144441324
+𩵤 352512144443554
+𩵥 352512144441344
+𩵦 352512144441234
+𩵧 352512144441132
+𩵨 352512144444535
+𩵩 352512144441134
+𩵪 352512144441535
+𩵫 453535251214444
+𩵬 352512144444412
+𩵭 352512144441121
+𩵮 234335251214444
+𩵯 352512144441524
+𩵰 352512144444334
+𩵱 352512144443112
+𩵲 352512144443434
+𩵳 413435251214444
+𩵴 123435251214444
+𩵵 352512144442512
+𩵶 113535251214444
+𩵷 352512144441554
+𩵸 352512144443135
+𩵹 352512144443434
+𩵺 352512144443511
+𩵻 352512144443554
+𩵼 352512144441354
+𩵽 352512144444544
+𩵾 352512144441254
+𩵿 35251214444215
+𩶀 352512144441523
+𩶁 3525121444412534
+𩶂 3525121444444512
+𩶃 3525121444441121
+𩶄 3525121444412354
+𩶅 3525121444435151
+𩶆 35251214444212115
+𩶇 3525121444431134
+𩶈 3525121444434312
+𩶉 3525121444413252
+𩶊 2522135251214444
+𩶋 3525121444455414
+𩶌 3525121444452252
+𩶍 35251214444251215
+𩶎 3525121444425211
+𩶏 352512144441554
+𩶐 3525121444443112
+𩶑 3525121444432511
+𩶒 3525121444454523
+𩶓 1113435251214444
+𩶔 2511135251214444
+𩶕 3215435251214444
+𩶖 3525121444425111
+𩶗 3525121444435234
+𩶘 3525121444441431
+𩶙 3525121444445534
+𩶚 3525121444452234
+𩶛 3525121444453251
+𩶜 3525121444454121
+𩶝 3525121444412121
+𩶞 3525121444441354
+𩶟 352512144443454
+𩶠 3525121444425515
+𩶡 35251214444345325
+𩶢 35251214444543112
+𩶣 35251214444335414
+𩶤 35251214444312135
+𩶥 35251214444251214
+𩶦 35251214444132121
+𩶧 35251214444321511
+𩶨 35251214444132412
+𩶩 35251214444253434
+𩶪 35251214444154121
+𩶫 35251214444325221
+𩶬 35251214444121124
+𩶭 352512144442515134
+𩶮 35251214444134152
+𩶯 53125135251214444
+𩶰 35251214444354354
+𩶱 35251214444445315
+𩶲 41353435251214444
+𩶳 35251214444251134
+𩶴 35251214444441525
+𩶵 35251214444351153
+𩶶 35251214444415325
+𩶷 3525121134112
+𩶸 35251214444243135
+𩶹 35251214444531234
+𩶺 35251214444113534
+𩶻 35251214444324334
+𩶼 35251214444341234
+𩶽 35251214444135422
+𩶾 35251214444251341
+𩶿 32151135251214444
+𩷀 32312135251214444
+𩷁 35251214444335215
+𩷂 35251214444535353
+𩷃 35251214444541354
+𩷄 35251214444354152
+𩷅 35251214444521354
+𩷆 35251214444341154
+𩷇 35251214444345235
+𩷈 35251214444234353
+𩷉 35251214444413234
+𩷊 35251214444523134
+𩷋 3525121444445245
+𩷌 35251214444151234
+𩷍 352512144443323554
+𩷎 352512144443534334
+𩷏 352512144441555121
+𩷐 352512144445135251
+𩷑 352512144442511531
+𩷒 352512144442523415
+𩷓 352512144441214544
+𩷔 352512144444143112
+𩷕 352512144444511534
+𩷖 352512144442121233
+𩷗 352512144443531121
+𩷘 352512144442523554
+𩷙 352512144441353334
+𩷚 352512144441245521
+𩷛 352512144443535112
+𩷜 352512144442524153
+𩷝 352512144443434251
+𩷞 452345335251214444
+𩷟 352512144441343434
+𩷠 352512144441214135
+𩷡 112135435251214444
+𩷢 121313435251214444
+𩷣 352512144442513121
+𩷤 352512144442515322
+𩷥 352512144442511124
+𩷦 352512144443121534
+𩷧 352512144441213234
+𩷨 352512144441213521
+𩷩 352512144441311534
+𩷪 352512144442511135
+𩷫 352512144442512511
+𩷬 353112135251214444
+𩷭 352512144443541112
+𩷮 352512144444154555
+𩷯 441313435251214444
+𩷰 35251214444512454
+𩷱 352512144445154544
+𩷲 352512144443534333
+𩷳 352512144445133115
+𩷴 352512144443315215
+𩷵 352512144441134251
+𩷶 35251214444122415
+𩷷 521312135251214444
+𩷸 3525121444431354153
+𩷹 3525121444421251112
+𩷺 352512144445232124
+𩷻 3525121444412125153
+𩷼 3525121444443113453
+𩷽 3525121444425342511
+𩷾 352512144441123452
+𩷿 352512144445231525
+𩸀 3525121444435113511
+𩸁 352512144444325234
+𩸂 3525121444435534544
+𩸃 3525121444435251354
+𩸄 3525121444425111234
+𩸅 3525121444441332124
+𩸆 3525121444413425115
+𩸇 1215512135251214444
+𩸈 3525121444434251214
+𩸉 3525121444412153254
+𩸊 3525121444432511252
+𩸋 3525121444412155121
+𩸌 3525121444412122343
+𩸍 3525121444434125152
+𩸎 3525121444444512134
+𩸏 3525121444412211234
+𩸐 3525121444434435215
+𩸑 352512144444311135
+𩸒 3525121444425431252
+𩸓 4415325435251214444
+𩸔 3212125135251214444
+𩸕 3525121444412111534
+𩸖 1215512135251214444
+𩸗 3525121444435134153
+𩸘 3525121444444525151
+𩸙 3525121444451124134
+𩸚 3525121444412123115
+𩸛 3525121444423425121
+𩸜 3525121444412121154
+𩸝 1234345435251214444
+𩸞 3525121444413412512
+𩸟 3525121444434342135
+𩸠 3525121444425153511
+𩸡 3121413535251214444
+𩸢 3525121444431234353
+𩸣 3525121444434434554
+𩸤 3525121444435115254
+𩸥 3525121444443344334
+𩸦 3525121444444151335
+𩸧 4415131535251214444
+𩸨 3525121444444525111
+𩸩 3525121444444535455
+𩸪 4453545535251214444
+𩸫 3525121444431212211
+𩸬 3525121444441431251
+𩸭 3525121444435131344
+𩸮 3525121444411134112
+𩸯 3525121444454545454
+𩸰 3525121444452133544
+𩸱 3525121444434112431
+𩸲 3525121444432125134
+𩸳 3525121444412343134
+𩸴 3525121444431134251
+𩸵 3525121444433212121
+𩸶 3525121444425213251
+𩸷 3525121444413251132
+𩸸 3525121444415112531
+𩸹 3525121444451535234
+𩸺 352512113451124134
+𩸻 523152535251214444
+𩸼 3525121444431521135
+𩸽 352512144441223235
+𩸾 3525121444412211152
+𩸿 35251214444543343554
+𩹀 35251214444111341134
+𩹁 3525121444443122431
+𩹂 35251214444251213541
+𩹃 35251214444445354251
+𩹄 35251214444251135345
+𩹅 35251214444121225134
+𩹆 35251214444521521521
+𩹇 35251214444412514512
+𩹈 352512144441541213134
+𩹉 35251214444534353432
+𩹊 35251214444415331521
+𩹋 35251214444121251523
+𩹌 35251214444252212534
+𩹍 35251214444543341134
+𩹎 35251214444414312511
+𩹏 35251214444325111344
+𩹐 35251214444125342154
+𩹑 35251214444341251214
+𩹒 55513542235251214444
+𩹓 35251214444132522134
+𩹔 35251214444445433454
+𩹕 35251214444442354251
+𩹖 35251214444431121531
+𩹗 35251214444412514535
+𩹘 35251214444441333534
+𩹙 35111113435251214444
+𩹚 31123453135251214444
+𩹛 35251214444121213534
+𩹜 35251214444121212251
+𩹝 35251214444112155414
+𩹞 35251214444122543112
+𩹟 35251214444123411234
+𩹠 35251214444132522111
+𩹡 35251214444251135352
+𩹢 35251214444251225251
+𩹣 35251214444315121121
+𩹤 31234433435251214444
+𩹥 35251214444353251214
+𩹦 3525121444443111354
+𩹧 35251214444541342444
+𩹨 35251214444321113554
+𩹩 3525121444412241252
+𩹪 35251214444521325111
+𩹫 35251214444251122111
+𩹬 35251214444123412251
+𩹭 35251214444121121124
+𩹮 35251214444122111234
+𩹯 35251214444121251534
+𩹰 35251214444212511134
+𩹱 352512144444155425121
+𩹲 352512144441251124124
+𩹳 352512144442432511134
+𩹴 352512144443443321511
+𩹵 41432533543235251214444
+𩹶 352512144444135112251
+𩹷 3525121444435251213554
+𩹸 352512144441212511134
+𩹹 352512144443241112154
+𩹺 352512144441251254312
+𩹻 352512144443253411515
+𩹼 122511123435251214444
+𩹽 352512144442511445531
+𩹾 352512144445544442534
+𩹿 352512144441234354251
+𩺀 352512144444134343541
+𩺁 212112113435251214444
+𩺂 352512144441253412534
+𩺃 431121312135251214444
+𩺄 354111322235251214444
+𩺅 352512144442512125121
+𩺆 352512144441212121315
+𩺇 352512144442153153134
+𩺈 554444253435251214444
+𩺉 352512144445221251214
+𩺊 35251214444122415325
+𩺋 352512144444134121515
+𩺌 352512144441221545252
+𩺍 35251214444431234454
+𩺎 352512144445112534124
+𩺏 352512144441251112511
+𩺐 35251214444511325152
+𩺑 352512144442512514153
+𩺒 35251214444352513444
+𩺓 335414355435251214444
+𩺔 335414135435251214444
+𩺕 352512144443412343134
+𩺖 352512144443122113511
+𩺗 35251214444122341251
+𩺘 352512144441225111134
+𩺙 352512144441325125251
+𩺚 352512144441344311234
+𩺛 352512144443321531535
+𩺜 352512144443545525121
+𩺝 35251214444431523454
+𩺞 352512144445454541234
+𩺟 352512144443225131134
+𩺠 352512144445452325341
+𩺡 352512144441121431121
+𩺢 352512144441213312251
+𩺣 352512144442511341534
+𩺤 352512144441252211234
+𩺥 352512144443552335523
+𩺦 352512144441311534251
+𩺧 352512144444334154121
+𩺨 352512144443211134112
+𩺩 352512144442522112154
+𩺪 352512144443354143554
+𩺫 352512144443241112153
+𩺬 35251214444325151454
+𩺭 3525121444443113424134
+𩺮 3525121444441352211535
+𩺯 4153313113435251214444
+𩺰 3525121444435251214444
+𩺱 3525121444411212132515
+𩺲 3525121444412343424134
+𩺳 3525121444412124412343
+𩺴 3525121444412212523434
+𩺵 3525121444412124143112
+𩺶 3525121444415311343534
+𩺷 3525121444425121122112
+𩺸 1123431341335251214444
+𩺹 3525121444412511244153
+𩺺 3525121444432511151535
+𩺻 3525121444443112125221
+𩺼 352512144441251124454
+𩺽 3525121444441251251354
+𩺾 1251234313435251214444
+𩺿 3525121444441431251135
+𩻀 3525121444441533131134
+𩻁 352512144441222511134
+𩻂 3525121444425112252511
+𩻃 3525121444425244511234
+𩻄 3525121444425221353334
+𩻅 3525121444412122431534
+𩻆 3525121444413252234154
+𩻇 3434251313435251214444
+𩻈 3525121444434123443554
+𩻉 1213512135435251214444
+𩻊 132522155435251214444
+𩻋 3525121444425114351523
+𩻌 3525121444431234221234
+𩻍 5131123412435251214444
+𩻎 3525121444454523325341
+𩻏 3525121444441341331121
+𩻐 3525121444432554134354
+𩻑 3525121444443123441431
+𩻒 3525121444431431441431
+𩻓 352512144441223411234
+𩻔 352512144441213312454
+𩻕 3525121444412535114535
+𩻖 3525121444432125115315
+𩻗 352512144444143125152
+𩻘 35251214444511225113511
+𩻙 35251214444251251431523
+𩻚 35251214444311222214444
+𩻛 35251214444153515352511
+𩻜 13434234134435251214444
+𩻝 35251214444515515122134
+𩻞 35251214444132522132522
+𩻟 35251214444344335554444
+𩻠 352512144442511252214153
+𩻡 35251214444414312511211
+𩻢 32343434341335251214444
+𩻣 35251214444513521521521
+𩻤 35251214444254312114444
+𩻥 3525121444433251111254
+𩻦 35251214444545454342444
+𩻧 35251214444121225111234
+𩻨 35251214444251212522111
+𩻩 35251214444212121212121
+𩻪 24325251313435251214444
+𩻫 35251214444354152431234
+𩻬 35251214444121251431333
+𩻭 35251214444121451251431
+𩻮 352512144441221122112
+𩻯 13434234313435251214444
+𩻰 35251214444243452513112
+𩻱 35251214444251141251234
+𩻲 35251214444253431112111
+𩻳 35251214444312343531234
+𩻴 35251214444325221233334
+𩻵 35251214444341251541541
+𩻶 35251214444343434342511
+𩻷 35114311345335251214444
+𩻸 3525121444451124134454
+𩻹 35251214444122511123511
+𩻺 35251214444211121114544
+𩻻 35251214444134432511234
+𩻼 35251214444551153113435
+𩻽 35251214444511121251211
+𩻾 35251214444511225112511
+𩻿 35251214444134342341344
+𩼀 35251214444255212511521
+𩼁 352512144441213251152
+𩼂 35251214444131213541454
+𩼃 352512144442121352513134
+𩼄 252213525121444443344334
+𩼅 352512144442512211311534
+𩼆 352512144444125112113534
+𩼇 352512144442135454431234
+𩼈 352512144443253431234134
+𩼉 352512144442434525125121
+𩼊 415251354135251214444354
+𩼋 352512144442243143111234
+𩼌 352512144443322521353134
+𩼍 352512144445512113113435
+𩼎 352512144445132514143112
+𩼏 52131211312135251214444
+𩼐 325151511312135251214444
+𩼑 352512144441212431554554
+𩼒 352512144441234341252511
+𩼓 352512144442522112143112
+𩼔 352512144444134315112234
+𩼕 352512144443444445234354
+𩼖 352512144444143135112234
+𩼗 352512144443123443344544
+𩼘 352512144441212131251534
+𩼙 35251214444122251135345
+𩼚 352512144441225115452
+𩼛 352512144441225111234112
+𩼜 352512144441252342511134
+𩼝 352512144442434525112211
+𩼞 352512144442511211251214
+𩼟 352512144442522135251214
+𩼠 353511253311235251214444
+𩼡 522524153313435251214444
+𩼢 513251414311235251214444
+𩼣 35251214444251225251454
+𩼤 352512144444125251131234
+𩼥 1212134431123535251214444
+𩼦 3525121444412211154323434
+𩼧 3525121444444512332511134
+𩼨 3525121444415311345452134
+𩼩 3525121444443344334354152
+𩼪 4413525121444435251214444
+𩼫 4311213525121444412212511
+𩼬 3525121444412121251124124
+𩼭 132522134155435251214444
+𩼮 1221343525121444454132511
+𩼯 3525121444425125112141241
+𩼰 352512144441225545544544
+𩼱 3525121444412512342511134
+𩼲 3525121444412125111344544
+𩼳 3525121444412512531125221
+𩼴 1325113541134435251214444
+𩼵 3525121444444525125135354
+𩼶 3525121444444554154134333
+𩼷 3525121444422431431121124
+𩼸 2243143112112435251214444
+𩼹 321115251113435251214444
+𩼺 352512144441223445113251
+𩼻 12123525121444421531525111
+𩼼 35251214444413251121135121
+𩼽 35251214444312343533424134
+𩼾 35251214444321155451114334
+𩼿 35251214444323434343412511
+𩽀 35251214444411125132411121
+𩽁 35251214444413522115354444
+𩽂 3525121444443123435415252
+𩽃 35251214444121235454431234
+𩽄 35251214444331233122511134
+𩽅 35251214444121211121111534
+𩽆 35251214444121252212511134
+𩽇 35251214444132511454544354
+𩽈 35251214444352512144442511
+𩽉 3525121444441341321511254
+𩽊 35251214444132511325113251
+𩽋 35251214444251125125313134
+𩽌 35251214444252324111212525
+𩽍 352512144442135454211121111
+𩽎 35251214444251212511134454
+𩽏 352512144441331234312342121
+𩽐 352512144442135454344511534
+𩽑 123443123411353435251214444
+𩽒 352512144441221251211354444
+𩽓 125123453251113435251214444
+𩽔 352512144441112341311534124
+𩽕 352512144443143143241112154
+𩽖 352512144443143141211254444
+𩽗 352512144441121545232534251
+𩽘 314314134431123535251214444
+𩽙 3525121444451154153525111
+𩽚 3525121444433225215542343134
+𩽛 3525121444412124411251124124
+𩽜 3525121444444511221342512134
+𩽝 3525121444435251153535251354
+𩽞 3525121444425221241344351523
+𩽟 2522523525121444421531525111
+𩽠 3525121444412132511154444534
+𩽡 3525121444421213525131343112
+𩽢 3525121444425111342511134531
+𩽣 3525121444431431425221134534
+𩽤 352512144441253511325113554
+𩽥 3525121444451122511125431234
+𩽦 352512113413254312114444121
+𩽧 35251214444324111213241112154
+𩽨 35251214444252324111212535251
+𩽩 35251214444251112511132411121
+𩽪 35251214444122111122111122111
+𩽫 43112131213525121444412212511
+𩽬 352512144443211251251511454334
+𩽭 35251214444121212512531125221
+𩽮 35251214444121213513125125534
+𩽯 35251214444321132534151114334
+𩽰 352512144442522155444432411121
+𩽱 352512144444125251125111251214
+𩽲 35251214444325111445344153454
+𩽳 3525121444424345251254312114444
+𩽴 352512144442512511351221113134
+𩽵 35251214444551353334251214251214
+𩽶 35251214444212534444412511251522
+𩽷 35251214444145241341221251123511
+𩽸 3525121444434451154121121121135
+𩽹 35251211354
+𩽺 352512111134
+𩽻 352512113434
+𩽼 35251211451512
+𩽽 35251211445315
+𩽾 35251211445531
+𩽿 35251211354354
+𩾀 352512113412251
+𩾁 352512111241344
+𩾂 352512111113124
+𩾃 352512113525135
+𩾄 35251211512454
+𩾅 3525121135251354
+𩾆 3525121144151335
+𩾇 3525121121531535
+𩾈 3525121121123454
+𩾉 35251211341343434
+𩾊 35251211521342511
+𩾋 35251211312511211
+𩾌 3525121141351124134
+𩾍 35251211342135454431234
+𩾎 35251211132511454544354
+𩾏 132511154444
+𩾐 325111544445
+𩾑 332511154444
+𩾒 3251115444452
+𩾓 3251115444452
+𩾔 1532511154444
+𩾕 1532511154444
+𩾖 3251115444453
+𩾗 5132511154444
+𩾘 3432511154444
+𩾙 3251115444435
+𩾚 1232511154444
+𩾛 3532511154444
+𩾜 3251115444453
+𩾝 32511154444112
+𩾞 35432511154444
+𩾟 23432511154444
+𩾠 51532511154444
+𩾡 32511154444354
+𩾢 15432511154444
+𩾣 55532511154444
+𩾤 21532511154444
+𩾥 31532511154444
+𩾦 41332511154444
+𩾧 32511154444322
+𩾨 35432511154444
+𩾩 32511154444515
+𩾪 13432511154444
+𩾫 32511154444515
+𩾬 32511154444121
+𩾭 31232511154444
+𩾮 35432511154444
+𩾯 44132511154444
+𩾰 212132511154444
+𩾱 325111544443552
+𩾲 353332511154444
+𩾳 325111544441255
+𩾴 325111544443432
+𩾵 135432511154444
+𩾶 325111544443554
+𩾷 153432511154444
+𩾸 133432511154444
+𩾹 321532511154444
+𩾺 113232511154444
+𩾻 311532511154444
+𩾼 253432511154444
+𩾽 325111544444544
+𩾾 343432511154444
+𩾿 343432511154444
+𩿀 251232511154444
+𩿁 325111544441344
+𩿂 311532511154444
+𩿃 351132511154444
+𩿄 521332511154444
+𩿅 135432511154444
+𩿆 121532511154444
+𩿇 351332511154444
+𩿈 355332511154444
+𩿉 325111544443553
+𩿊 351132511154444
+𩿋 325111544445353
+𩿌 341532511154444
+𩿍 155132511154444
+𩿎 545232511154444
+𩿏 545432511154444
+𩿐 325111544441252
+𩿑 153532511154444
+𩿒 155432511154444
+𩿓 325111544443112
+𩿔 135432511154444
+𩿕 343432511154444
+𩿖 325111544443511
+𩿗 545232511154444
+𩿘 325111544443115
+𩿙 325111544441534
+𩿚 325111544444412
+𩿛 134432511154444
+𩿜 1212232511154444
+𩿝 151532511154444
+𩿞 3121132511154444
+𩿟 1215432511154444
+𩿠 3251115444415534
+𩿡 3251115444454251
+𩿢 4112132511154444
+𩿣 1123432511154444
+𩿤 1234532511154444
+𩿥 3523432511154444
+𩿦 2513432511154444
+𩿧 3212432511154444
+𩿨 3212132511154444
+𩿩 5225232511154444
+𩿪 3312432511154444
+𩿫 1311232511154444
+𩿬 2512132511154444
+𩿭 2521532511154444
+𩿮 5151132511154444
+𩿯 1234432511154444
+𩿰 1553432511154444
+𩿱 1121432511154444
+𩿲 1123432511154444
+𩿳 1212132511154444
+𩿴 3251115444451541
+𩿵 3251115444412251
+𩿶 2513432511154444
+𩿷 1123432511154444
+𩿸 1211532511154444
+𩿹 1215432511154444
+𩿺 155432511154444
+𩿻 2111532511154444
+𩿼 3251115444425112
+𩿽 3152532511154444
+𩿾 3511232511154444
+𩿿 3551132511154444
+𪀀 3551532511154444
+𪀁 3251115444453251
+𪀂 3251115444455453
+𪀃 3251115444412152
+𪀄 2125132511154444
+𪀅 3354432511154444
+𪀆 3212132511154444
+𪀇 3251115444413241
+𪀈 3545532511154444
+𪀉 1251232511154444
+𪀊 3251115444435251
+𪀋 325111525112
+𪀌 3251115444425112
+𪀍 3251115444435151
+𪀎 2513432511154444
+𪀏 325111544441515
+𪀐 325111544443454
+𪀑 5212132511154444
+𪀒 32511154444154121
+𪀓 32511154444354354
+𪀔 32511154444121124
+𪀕 25115332511154444
+𪀖 21123432511154444
+𪀗 35135532511154444
+𪀘 13312532511154444
+𪀙 25113432511154444
+𪀚 32511154444113534
+𪀛 12152432511154444
+𪀜 12523432511154444
+𪀝 43152332511154444
+𪀞 41532532511154444
+𪀟 25251132511154444
+𪀠 32511154444352511
+𪀡 11125332511154444
+𪀢 32134432511154444
+𪀣 34123432511154444
+𪀤 32511154444441121
+𪀥 44531532511154444
+𪀦 11215432511154444
+𪀧 12133532511154444
+𪀨 55455432511154444
+𪀩 35435432511154444
+𪀪 32123432511154444
+𪀫 51151132511154444
+𪀬 13433432511154444
+𪀭 25125132511154444
+𪀮 53152132511154444
+𪀯 24313532511154444
+𪀰 41353432511154444
+𪀱 44513432511154444
+𪀲 43113432511154444
+𪀳 32511154444431234
+𪀴 32511154444511112
+𪀵 11353432511154444
+𪀶 15123432511154444
+𪀷 31213532511154444
+𪀸 32511154444112154
+𪀹 12535132511154444
+𪀺 32511154444211531
+𪀻 31213532511154444
+𪀼 32112132511154444
+𪀽 35251132511154444
+𪀾 35415232511154444
+𪀿 43123432511154444
+𪁀 51111232511154444
+𪁁 54123432511154444
+𪁂 41323432511154444
+𪁃 32311232511154444
+𪁄 32511154444121251
+𪁅 35521532511154444
+𪁆 32511154444331251
+𪁇 41543532511154444
+𪁈 41312132511154444
+𪁉 32511154444413434
+𪁊 121331232511154444
+𪁋 13553432511154444
+𪁌 121323432511154444
+𪁍 121545332511154444
+𪁎 243354132511154444
+𪁏 252341532511154444
+𪁐 312342232511154444
+𪁑 342513532511154444
+𪁒 325111544441353334
+𪁓 121454432511154444
+𪁔 445311232511154444
+𪁕 441313432511154444
+𪁖 124134432511154444
+𪁗 325111544442515215
+𪁘 441112132511154444
+𪁙 125125132511154444
+𪁚 412514532511154444
+𪁛 332355432511154444
+𪁜 451153432511154444
+𪁝 351525132511154444
+𪁞 125143132511154444
+𪁟 341525132511154444
+𪁠 441513432511154444
+𪁡 341352132511154444
+𪁢 52415332511154444
+𪁣 251123432511154444
+𪁤 325113532511154444
+𪁥 135333432511154444
+𪁦 325111544443311252
+𪁧 131153432511154444
+𪁨 325111544442515215
+𪁩 325111544444351523
+𪁪 135333432511154444
+𪁫 325111544441122534
+𪁬 353113432511154444
+𪁭 325111544441251124
+𪁮 312345332511154444
+𪁯 325111544443321124
+𪁰 344353332511154444
+𪁱 413123432511154444
+𪁲 452345332511154444
+𪁳 251325132511154444
+𪁴 325111544443434251
+𪁵 513525132511154444
+𪁶 12445432511154444
+𪁷 3251115444445434252
+𪁸 3251115444443112135
+𪁹 3251115444431112111
+𪁺 2432525132511154444
+𪁻 1234331232511154444
+𪁼 3251125232511154444
+𪁽 4134341232511154444
+𪁾 1212313432511154444
+𪁿 1234355432511154444
+𪂀 3251115444434343312
+𪂁 4454543432511154444
+𪂂 1225111232511154444
+𪂃 3251115444432511312
+𪂄 3235435432511154444
+𪂅 1234125432511154444
+𪂆 3515251132511154444
+𪂇 2511251132511154444
+𪂈 4334433432511154444
+𪂉 1251153432511154444
+𪂊 325111544445244535
+𪂋 3251115444451145252
+𪂌 2534251132511154444
+𪂍 1132113232511154444
+𪂎 3251115444441251521
+𪂏 3111211132511154444
+𪂐 1343412132511154444
+𪂑 4133515132511154444
+𪂒 3533454432511154444
+𪂓 2522511132511154444
+𪂔 4412511132511154444
+𪂕 1252413432511154444
+𪂖 3511525432511154444
+𪂗 51341353432511154444
+𪂘 3423425132511154444
+𪂙 3251115444435113511
+𪂚 3251115444412135121
+𪂛 1212351532511154444
+𪂜 1234313432511154444
+𪂝 3251115444412511234
+𪂞 3111211132511154444
+𪂟 342523432511154444
+𪂠 2511123432511154444
+𪂡 2511351132511154444
+𪂢 2521311232511154444
+𪂣 3241112132511154444
+𪂤 3412515232511154444
+𪂥 3434331232511154444
+𪂦 4453545532511154444
+𪂧 325111544535455
+𪂨 4543425232511154444
+𪂩 5112413432511154444
+𪂪 5114525232511154444
+𪂫 1535153532511154444
+𪂬 2153153532511154444
+𪂭 3251115444444535455
+𪂮 5213354432511154444
+𪂯 3251115444453112251
+𪂰 3251115444441335154
+𪂱 3251115444421251112
+𪂲 5213354432511154444
+𪂳 3251115444425111535
+𪂴 3251115444411212511
+𪂵 1251153432511154444
+𪂶 13125153432511154444
+𪂷 32511154444351331134
+𪂸 44534345432511154444
+𪂹 11134251132511154444
+𪂺 35511454432511154444
+𪂻 34125113232511154444
+𪂼 12342511132511154444
+𪂽 34532522132511154444
+𪂾 3415115432511154444
+𪂿 32511154444251112134
+𪃀 32511154444251225251
+𪃁 32251123432511154444
+𪃂 441415432532511154444
+𪃃 31251135432511154444
+𪃄 25121454432511154444
+𪃅 24335412232511154444
+𪃆 32511154444111341134
+𪃇 121251513432511154444
+𪃈 11125313432511154444
+𪃉 13252213432511154444
+𪃊 34523535432511154444
+𪃋 12535112132511154444
+𪃌 25111353332511154444
+𪃍 25112521432511154444
+𪃎 34135112232511154444
+𪃏 12211123432511154444
+𪃐 32511154444251112343
+𪃑 25112511132511154444
+𪃒 41312215432511154444
+𪃓 35251113432511154444
+𪃔 12125151532511154444
+𪃕 44135425132511154444
+𪃖 12123515132511154444
+𪃗 32511154444445125111
+𪃘 12125153432511154444
+𪃙 1213251132511154444
+𪃚 21211123432511154444
+𪃛 41431333332511154444
+𪃜 44512125132511154444
+𪃝 33212112432511154444
+𪃞 3251115444412225121
+𪃟 12145325111544443554
+𪃠 12512345332511154444
+𪃡 44112213432511154444
+𪃢 12254311232511154444
+𪃣 11134251132511154444
+𪃤 121121513432511154444
+𪃥 12342511132511154444
+𪃦 25111234332511154444
+𪃧 25111234332511154444
+𪃨 25545545232511154444
+𪃩 31234433432511154444
+𪃪 32115113432511154444
+𪃫 33125112132511154444
+𪃬 43125351132511154444
+𪃭 44535425132511154444
+𪃮 51315412132511154444
+𪃯 51515251132511154444
+𪃰 54251113432511154444
+𪃱 13251152132511154444
+𪃲 3251115444412132511
+𪃳 12122513432511154444
+𪃴 32511154444344312512
+𪃵 32511154444123425111
+𪃶 32513113432511154444
+𪃷 25111123432511154444
+𪃸 12215123432511154444
+𪃹 511545232511154444
+𪃺 112212521132511154444
+𪃻 351133353432511154444
+𪃼 325111454432511154444
+𪃽 441344352132511154444
+𪃾 445343425132511154444
+𪃿 125121251232511154444
+𪄀 335414355432511154444
+𪄁 133251123432511154444
+𪄂 132511135432511154444
+𪄃 113112123432511154444
+𪄄 413512125132511154444
+𪄅 3412354355432511154444
+𪄆 325341151532511154444
+𪄇 343411243132511154444
+𪄈 325111544441113431234
+𪄉 555251521532511154444
+𪄊 251112511132511154444
+𪄋 445544325232511154444
+𪄌 121251113432511154444
+𪄍 25125115232511154444
+𪄎 123435425132511154444
+𪄏 125221355332511154444
+𪄐 121221123432511154444
+𪄑 445355435432511154444
+𪄒 121115433332511154444
+𪄓 325111544444451135531
+𪄔 325111544443251213554
+𪄕 112143112132511154444
+𪄖 121335251132511154444
+𪄗 121451433432511154444
+𪄘 132512525132511154444
+𪄙 251112511132511154444
+𪄚 251154154132511154444
+𪄛 325111544443251114544
+𪄜 325151125232511154444
+𪄝 325111544443251154444
+𪄞 325111544443552335523
+𪄟 325111544444153335414
+𪄠 441125123432511154444
+𪄡 513122153432511154444
+𪄢 352534151532511154444
+𪄣 441312125132511154444
+𪄤 134121115432511154444
+𪄥 325111544442512452511
+𪄦 32511154444122341234
+𪄧 32511154444431523454
+𪄨 251243251132511154444
+𪄩 325111544443241112112
+𪄪 134342345332511154444
+𪄫 441341123432511154444
+𪄬 45243113432511154444
+𪄭 1234342413432511154444
+𪄮 1452413411532511154444
+𪄯 1134251113532511154444
+𪄰 4543425121432511154444
+𪄱 4143251225132511154444
+𪄲 4143253525132511154444
+𪄳 1343423435432511154444
+𪄴 3155414313432511154444
+𪄵 51154153532511154444
+𪄶 5415413251132511154444
+𪄷 1252211345532511154444
+𪄸 1121251113432511154444
+𪄹 2434525125232511154444
+𪄺 3251115444444511353134
+𪄻 3251115444411134321511
+𪄼 2513241112132511154444
+𪄽 1214513535232511154444
+𪄾 32411121513432511154444
+𪄿 1221251113432511154444
+𪅀 1221251112132511154444
+𪅁 2524451123432511154444
+𪅂 4143125111232511154444
+𪅃 1252211123432511154444
+𪅄 4155441341232511154444
+𪅅 2512135425132511154444
+𪅆 413452255432511154444
+𪅇 2121252214532511154444
+𪅈 3234343434132511154444
+𪅉 321511251132511154444
+𪅊 3443135333432511154444
+𪅋 521213535432511154444
+𪅌 3123422123432511154444
+𪅍 4411343423432511154444
+𪅎 344332151132511154444
+𪅏 1214535355432511154444
+𪅐 1212251113432511154444
+𪅑 4143125113532511154444
+𪅒 431234155432511154444
+𪅓 2343241112132511154444
+𪅔 3532511154444325111121
+𪅕 5552511123432511154444
+𪅖 1113432151132511154444
+𪅗 1123431341332511154444
+𪅘 3251115444412511214124
+𪅙 1251234313432511154444
+𪅚 2511133353432511154444
+𪅛 3251115444425112512531
+𪅜 3251115444433234342134
+𪅝 3251115444432511154444
+𪅞 3543123413432511154444
+𪅟 3251115444441351125112
+𪅠 431113521132511154444
+𪅡 3251115444454154134333
+𪅢 4451325221232511154444
+𪅣 1343434351132511154444
+𪅤 1251255412132511154444
+𪅥 3241112135432511154444
+𪅦 3251115444425125115341
+𪅧 1213241112132511154444
+𪅨 3123435435432511154444
+𪅩 5454543433332511154444
+𪅪 412515215232511154444
+𪅫 1211251153432511154444
+𪅬 3212511531532511154444
+𪅭 3223134251132511154444
+𪅮 4454543425232511154444
+𪅯 41121125444432511154444
+𪅰 34112251545232511154444
+𪅱 51332512521432511154444
+𪅲 34125154154132511154444
+𪅳 12152512512132511154444
+𪅴 12155121454432511154444
+𪅵 25121411353432511154444
+𪅶 24325251313432511154444
+𪅷 12125111343432511154444
+𪅸 11125355423432511154444
+𪅹 32511154444554554134534
+𪅺 25132513113432511154444
+𪅻 33541443113432511154444
+𪅼 13312343123432511154444
+𪅽 15351535251132511154444
+𪅾 12211134353432511154444
+𪅿 5213121354132511154444
+𪆀 51543123451532511154444
+𪆁 12211134331232511154444
+𪆂 4411515123432511154444
+𪆃 41251521313432511154444
+𪆄 32511154444324111214444
+𪆅 32411121433432511154444
+𪆆 12123525135432511154444
+𪆇 51512112125132511154444
+𪆈 35411344433432511154444
+𪆉 12453241112132511154444
+𪆊 1113432151132511154444
+𪆋 55444412125132511154444
+𪆌 25342511351132511154444
+𪆍 35343423434232511154444
+𪆎 44141533152132511154444
+𪆏 32511154444414312511211
+𪆐 32411121123432511154444
+𪆑 12145251355432511154444
+𪆒 13323241112132511154444
+𪆓 55444455423432511154444
+𪆔 32411121444432511154334
+𪆕 44513412112132511154444
+𪆖 32511154444121451251431
+𪆗 12211134331232511154444
+𪆘 12251112351132511154444
+𪆙 13431523353432511154444
+𪆚 14524134115432511154444
+𪆛 2153152243132511154444
+𪆜 31234342413432511154444
+𪆝 41251521313432511154444
+𪆞 43123435415232511154444
+𪆟 44112512345332511154444
+𪆠 44512512512132511154444
+𪆡 41434525225132511154444
+𪆢 44545442511232511154444
+𪆣 25114125123432511154444
+𪆤 25431211444432511154444
+𪆥 32511154444445343121251
+𪆦 33313251113432511154444
+𪆧 32511154444121213415534
+𪆨 12123515251132511154444
+𪆩 41251234135432511154444
+𪆪 12145135355432511154444
+𪆫 3251115444444115151234
+𪆬 325111544442512121354251
+𪆭 325111544445112321155212
+𪆮 325111544444454543425221
+𪆯 251221131153432511154444
+𪆰 121225113534532511154444
+𪆱 354533411243132511154444
+𪆲 125221251113432511154444
+𪆳 32511154444324111212525
+𪆴 121254334113432511154444
+𪆵 441134342345332511154444
+𪆶 213545443123432511154444
+𪆷 341124312511132511154444
+𪆸 441251245354132511154444
+𪆹 25122525145432511154444
+𪆺 215315135333432511154444
+𪆻 351335411125132511154444
+𪆼 145241342512132511154444
+𪆽 251212135425132511154444
+𪆾 412512514311232511154444
+𪆿 414313411125132511154444
+𪇀 121251431125432511154444
+𪇁 243452512512132511154444
+𪇂 121454334355432511154444
+𪇃 125221112343532511154444
+𪇄 121451353452432511154444
+𪇅 32511154444122131251534
+𪇆 325111544442522135251214
+𪇇 341251251343432511154444
+𪇈 344345454435432511154444
+𪇉 415533241112132511154444
+𪇊 325111544445132514143112
+𪇋 32511154444252325113554
+𪇌 325111544442512211311534
+𪇍 32511154444251225251454
+𪇎 123412341123432511154444
+𪇏 125121125121132511154444
+𪇐 325111544444315233511134
+𪇑 3125431211444432511154444
+𪇒 4312341121251132511154444
+𪇓 2121252214535432511154444
+𪇔 1212554554454432511154444
+𪇕 4451233251113432511154444
+𪇖 1251253112522132511154444
+𪇗 1214531234355432511154444
+𪇘 1215121125112432511154444
+𪇙 3143141344311232511154444
+𪇚 1123425111353332511154444
+𪇛 4135533241112132511154444
+𪇜 1212445312125132511154444
+𪇝 3411234353511232511154444
+𪇞 1212514315325432511154444
+𪇟 1215213343425132511154444
+𪇠 1221251344312132511154444
+𪇡 2121324111215432511154444
+𪇢 3143143543123432511154444
+𪇣 3251113325111332511154444
+𪇤 3544135221151532511154444
+𪇥 3251115444441533112211134
+𪇦 2153153241112132511154444
+𪇧 4455213251113432511154444
+𪇨 325111544441224411251124
+𪇩 3411243151153432511154444
+𪇪 1214143251225132511154444
+𪇫 325111544443251135544412
+𪇬 321115251113432511154444
+𪇭 12123541541123432511154444
+𪇮 41325112113512132511154444
+𪇯 54154134333153432511154444
+𪇰 25111221342413432511154444
+𪇱 32511554554123432511154444
+𪇲 23432411121153432511154444
+𪇳 32511154444314314131251534
+𪇴 21212522113453432511154444
+𪇵 41312211251213432511154444
+𪇶 44132411121444432511154444
+𪇷 32511154444523251514143112
+𪇸 21531525121454432511154444
+𪇹 55525341544544532511154444
+𪇺 31234342413435332511154444
+𪇻 41112513241112132511154444
+𪇼 12212511213512132511154444
+𪇽 12212511134353432511154444
+𪇾 12243135221153532511154444
+𪇿 13513323241112132511154444
+𪈀 25125125112521432511154444
+𪈁 31431413125153432511154444
+𪈂 35251214444251132511154444
+𪈃 412512525112511232511154444
+𪈄 54523253525145432511154444
+𪈅 314314351214311232511154444
+𪈆 212125221452511132511154444
+𪈇 341124311534153432511154444
+𪈈 125123413251113432511154444
+𪈉 251111234355423432511154444
+𪈊 125125431254154132511154444
+𪈋 412512514311235432511154444
+𪈌 353252213525121432511154444
+𪈍 341324251125351132511154444
+𪈎 125123453251113432511154444
+𪈏 122125121135444432511154444
+𪈐 125123453251113432511154444
+𪈑 145244442511353332511154444
+𪈒 325111544442153152512125221
+𪈓 314314121431123432511154444
+𪈔 321134345114552132511154444
+𪈕 341342523434343432511154444
+𪈖 252325151414311232511154444
+𪈗 414312511151511132511154444
+𪈘 2121252214513541532511154444
+𪈙 3251115444412123251514143112
+𪈚 25115225213443123432511154444
+𪈛 2121252214532153432511154444
+𪈜 5544442511251253132511154444
+𪈝 1452413425125125132511154444
+𪈞 1214512514315325432511154444
+𪈟 1212325151414311232511154444
+𪈠 4133232411121454432511154444
+𪈡 2523534111251134432511154444
+𪈢 3143141214311235432511154444
+𪈣 3143143541343411232511154444
+𪈤 3251115444425111342511134531
+𪈥 25232411121253525132511154444
+𪈦 25121251212512112132511154444
+𪈧 12123125431211444432511154444
+𪈨 32511154444325111332511154444
+𪈩 32511154444212125125132411121
+𪈪 32511134343434113432511154444
+𪈫 32511154444251152252134431234
+𪈬 32511133251115444432511154444
+𪈭 1221251253142522132511154444
+𪈮 554234411125155423432511154444
+𪈯 441145241343241112132511154444
+𪈰 252215544443241112132511154444
+𪈱 251112511132513113432511154444
+𪈲 413324111213241112132511154444
+𪈳 325111544441254125441352211535
+𪈴 2511125111324111215432511154444
+𪈵 3534234234234234234232511154444
+𪈶 3251115444441251251121211123134
+𪈷 4125125112121112215432511154444
+𪈸 4411222512513241112132511154444
+𪈹 12534125344135221153532511154444
+𪈺 51324134252213525121432511154444
+𪈻 123421212512513241112132511154444
+𪈼 325111544443251115444432511154444
+𪈽 411125155444455444435132511154444
+𪈾 41332324111213251115444432511154444
+𪈿 411125155444455444425121432511154444
+𪉀 251212512125121325111544442512125121
+𪉁 354513534
+𪉂 115435451
+𪉃 413435451
+𪉄 3312435451
+𪉅 11215435451
+𪉆 35251135451
+𪉇 35451131534
+𪉈 21213535451
+𪉉 41312135451
+𪉊 32351235451
+𪉋 35415235451
+𪉌 124134435451
+𪉍 312343535451
+𪉎 3515251135451
+𪉏 12211123435451
+𪉐 25112521435451
+𪉑 112153313435451
+𪉒 112143112135451
+𪉓 354513545135451
+𪉔 325341151535451
+𪉕 35451314314131251534
+𪉖 21253444441121
+𪉗 21253444441134
+𪉘 212534444413554
+𪉙 212534444412511
+𪉚 212534444413115
+𪉛 212534444414535
+𪉜 2125344444121251
+𪉝 5452321253444441
+𪉞 2125344444125112
+𪉟 2125344444125221
+𪉠 2125344444113534
+𪉡 2125344444131351
+𪉢 21253444441343412
+𪉣 212534444411251431
+𪉤 43111321253444441
+𪉥 212534444413155414
+𪉦 2125344444135321511
+𪉧 2125344444143344334
+𪉨 2125344444125112511
+𪉩 1212125344444125221
+𪉪 2125344444111134112
+𪉫 2125344444125125112
+𪉬 431113521253444441
+𪉭 21253444441251211534
+𪉮 21253444441111341134
+𪉯 21253444441122111355
+𪉰 21253444441341251122
+𪉱 21253444441351325122
+𪉲 21253444441251125112
+𪉳 13125153421253444441
+𪉴 21253444441122111234
+𪉵 431121312121253444441
+𪉶 212534444411225125221
+𪉷 212534444412511251522
+𪉸 212534444412534125221
+𪉹 121312125344444125221
+𪉺 212534444414143131121
+𪉻 2524451123421253444441
+𪉼 2125344444144512211154
+𪉽 2125344444125112522154
+𪉾 2125344444131554143134
+𪉿 21253444441121221113134
+𪊀 21253444441545232535251
+𪊁 32343434341321253444441
+𪊂 21253444441313431342511
+𪊃 212534444412523251213554
+𪊄 212534444411312515344544
+𪊅 212534444411234123411234
+𪊆 2125344444141432533543211
+𪊇 2125344444112512531125221
+𪊈 21253444441323434343413121
+𪊉 212534444414125221241343534
+𪊊 2125344444141251251112213534
+𪊋 4135221151535
+𪊌 4135221153535
+𪊍 41352211535515
+𪊎 41352211535354
+𪊏 413522115351344
+𪊐 413522115351134
+𪊑 413522115351132
+𪊒 413522115352511
+𪊓 413522115354134
+𪊔 413522115151132
+𪊕 413522115351535
+𪊖 413522115153533
+𪊗 413522115353112
+𪊘 413522115353534
+𪊙 413522115154134
+𪊚 413522115355215
+𪊛 4135221153555453
+𪊜 4135221153512341
+𪊝 4135221151513544
+𪊞 4135221153513251
+𪊟 4135221151531121
+𪊠 2113541352211535
+𪊡 4135221151535515
+𪊢 4135221153531134
+𪊣 4135221153525111
+𪊤 413522115351515
+𪊥 41352211535125111
+𪊦 41352211535251341
+𪊧 41352211535121121
+𪊨 41352211535352511
+𪊩 41352211535112212
+𪊪 41352211535331251
+𪊫 41352211535132522
+𪊬 41352211535413534
+𪊭 41352211515341354
+𪊮 41352211535541541
+𪊯 41352211535312135
+𪊰 41352211535325111
+𪊱 41352211535341354
+𪊲 41352211535354251
+𪊳 41352211535413234
+𪊴 413522115355435354
+𪊵 413522115351555121
+𪊶 41352211515312154
+𪊷 413522115151213521
+𪊸 413522115153411234
+𪊹 413522115352511153
+𪊺 413522115154134251
+𪊻 413522115352522134
+𪊼 413522115352533121
+𪊽 413522115352512341
+𪊾 413522115352511134
+𪊿 413522115353434251
+𪋀 413522115351251112
+𪋁 413522115351353334
+𪋂 413522115353121121
+𪋃 413522115354125135
+𪋄 4135221153512211154
+𪋅 4135221153544535455
+𪋆 4135221153525111535
+𪋇 4135221153532411121
+𪋈 4135221153551531234
+𪋉 4135221153512524134
+𪋊 4135221153525111234
+𪋋 4135221151543113112
+𪋌 4135221151541343412
+𪋍 5552512141352211535
+𪋎 41352211535255455452
+𪋏 4135221153512132511
+𪋐 41352211535132522134
+𪋑 4135221151512132511
+𪋒 41352211515312342511
+𪋓 41352211535251251251
+𪋔 41352211535412511234
+𪋕 41352211535321154511
+𪋖 41352211515353251214
+𪋗 41352211535431234454
+𪋘 125341253441352211535
+𪋙 413522115351325213252
+𪋚 413522115354143134454
+𪋛 413522115351212251112
+𪋜 4135221153525121122112
+𪋝 413522115351251234454
+𪋞 4135221151532511154444
+𪋟 4135221151541431251112
+𪋠 4135221153525112511211
+𪋡 41352211515224314311134
+𪋢 41352211535135333425111
+𪋣 41352211535132522132522
+𪋤 12343434123441352211535
+𪋥 41352211535251112511211
+𪋦 41352211535251251251251
+𪋧 41352211535325111331134
+𪋨 34531254125441352211535
+𪋩 41352211535312343424134
+𪋪 413522115351452413434154
+𪋫 413522115152243143111234
+𪋬 413522115352153152515134
+𪋭 125412544135221151534154
+𪋮 413522115153211152511134
+𪋯 4135221151514524134132522
+𪋰 413522115152522112132511
+𪋱 413522115353215111353334
+𪋲 4135221151543344334354152
+𪋳 41352211535145241341522121
+𪋴 4135221151535132511154444
+𪋵 413522115355112413451124134
+𪋶 4135221151514524444251251251
+𪋷 4135221151543123425221354152
+𪋸 41352211515252324111212535251
+𪋹 413522115352512511351221113134
+𪋺 4135221153532511355414524134132522
+𪋻 413522115354135221153541352211535121
+𪋼 134343435435
+𪋽 134343435415
+𪋾 134343435453
+𪋿 134343435424
+𪌀 1234343435452
+𪌁 1343434354415
+𪌂 1343434354315
+𪌃 1343434354112
+𪌄 12343434354515
+𪌅 13434343542534
+𪌆 13434343541354
+𪌇 13434343543115
+𪌈 13434343541515
+𪌉 13434343544412
+𪌊 13434343545134
+𪌋 13434343541525
+𪌌 13434343544334
+𪌍 13434343543312
+𪌎 13434343541234
+𪌏 123434343542154
+𪌐 13434343543112
+𪌑 13434343543134
+𪌒 13434343543534
+𪌓 123434343543554
+𪌔 134343435425111
+𪌕 134343435453251
+𪌖 13434343541515
+𪌗 134343435431234
+𪌘 134343435441121
+𪌙 134343435413534
+𪌚 134343435454132
+𪌛 1234343435425151
+𪌜 134343435431121
+𪌝 134343435415534
+𪌞 1234343435411214
+𪌟 1234343435431211
+𪌠 134343435454252
+𪌡 1234343435444535
+𪌢 1343434354251251
+𪌣 1343434354354251
+𪌤 1343434354325151
+𪌥 1343434354355454
+𪌦 1343434354252511
+𪌧 12343434354121251
+𪌨 2525131343434354
+𪌩 12343434354312251
+𪌪 12343434354341534
+𪌫 12343434354354354
+𪌬 1343434354431234
+𪌭 13434343542513541
+𪌮 13434343544412343
+𪌯 13434343542433541
+𪌰 13434343541245521
+𪌱 13434343543123422
+𪌲 321151112343434354
+𪌳 13434343543443124
+𪌴 13434343543434121
+𪌵 13434343541241344
+𪌶 123434343541251234
+𪌷 123434343542121233
+𪌸 13434343542513112
+𪌹 123434343543413252
+𪌺 123434343545113251
+𪌻 13434343545425112
+𪌼 134343435435311252
+𪌽 134343435425111515
+𪌾 134343435435425121
+𪌿 134343435434154544
+𪍀 134343435412211134
+𪍁 134343435425312341
+𪍂 134343435444535121
+𪍃 134343435435334544
+𪍄 134343435455124134
+𪍅 134343435441323544
+𪍆 134343435431234353
+𪍇 134343435432411121
+𪍈 1234343435421251112
+𪍉 134343435423432343
+𪍊 1234343435411213534
+𪍋 134343435412122343
+𪍌 1343434354251225251
+𪍍 1343434354341351122
+𪍎 1343434354312344412
+𪍏 1343434354352511134
+𪍐 1343434354122151234
+𪍑 1343434354431253511
+𪍒 1343434354122513511
+𪍓 5452331341343434354
+𪍔 1343434354555511534
+𪍕 1343434354212511134
+𪍖 1343434354253431121
+𪍗 12343434354312344334
+𪍘 1343434354545233134
+𪍙 12343434354431121335
+𪍚 1343434354545231234
+𪍛 13434343545132433541
+𪍜 13434343543253411535
+𪍝 13434343542534125221
+𪍞 13434343543235425121
+𪍟 13434343541245554234
+𪍠 12145135541343434354
+𪍡 13434343541251124124
+𪍢 13434343541214513554
+𪍣 134343435425112512531
+𪍤 134343435412122511134
+𪍥 134343435412145353554
+𪍦 13434343541251112454
+𪍧 415331521341343434354
+𪍨 1234343435455525111234
+𪍩 1234343435425112522154
+𪍪 12343434251211212112
+𪍫 5452335425212343434354
+𪍬 1234343435412124412343
+𪍭 134343435425111353334
+𪍮 123434343541121533134
+𪍯 134343435425121554234
+𪍰 134343435431234343434
+𪍱 1215213355412343434354
+𪍲 1343434354113411342511
+𪍳 134343435452131213541
+𪍴 1343434354431234354152
+𪍵 1343434354125221251112
+𪍶 1343434354431121431251
+𪍷 1343434354313425125251
+𪍸 13434343542153151353334
+𪍹 13434343542522135251214
+𪍺 13434343542522112513534
+𪍻 25125125112341343434354
+𪍼 1343434354414345252251
+𪍽 13434343542512512511234
+𪍾 52252415331341343434354
+𪍿 1343434354413122112512134
+𪎀 1343434354323434343413121
+𪎁 41431354115151111343434354
+𪎂 13434343541343423413434234
+𪎃 122325151414311212343434354
+𪎄 1234343435412124411251124124
+𪎅 123434343541225241431331121
+𪎆 13434343542522155444432411121
+𪎇 2243143112321511355412343434354
+𪎈 1121354154
+𪎉 11213542535
+𪎊 11213542343
+𪎋 112135421251
+𪎌 11213541431234
+𪎍 11135424
+𪎎 1113413252511
+𪎏 112135444511234
+𪎐 112135412213545252
+𪎑 4131234123435
+𪎒 41312351235354
+𪎓 33241312351235
+𪎔 41312351235515
+𪎕 413123512353553
+𪎖 413123512354334
+𪎗 413123512352511
+𪎘 413123512352154
+𪎙 413123412341132
+𪎚 413123512353112
+𪎛 4131235123535455
+𪎜 4131235123525115
+𪎝 4131235123512341
+𪎞 4131235123525134
+𪎟 4131235123525121
+𪎠 41312351235354354
+𪎡 41312351235311234
+𪎢 41312351235125351
+𪎣 41312351235154325
+𪎤 441313441312351235
+𪎥 4131235123525113533
+𪎦 4131235123512341234
+𪎧 4131235123525113533
+𪎨 3435112241312351235
+𪎩 41312341234251225251
+𪎪 413123512353552335523
+𪎫 413123512353111211134
+𪎬 4131235123515152511134
+𪎭 41312351235312343424134
+𪎮 41312351235311121113115
+𪎯 41312351235251212511134
+𪎰 41312351235121222511134
+𪎱 4131234123414524444132522
+𪎲 2243143112321511355441312351235
+𪎳 12211251213454
+𪎴 122112512134315
+𪎵 1221125121344135
+𪎶 1221125121341525
+𪎷 122125121343115
+𪎸 122125121344535
+𪎹 1221125121341135
+𪎺 12211251213433124
+𪎻 122112512134525341
+𪎼 25125112212512134
+𪎽 12211251213415435
+𪎾 122112512134112251
+𪎿 12212512134132522
+𪏀 12212512134154121
+𪏁 122112512134413434
+𪏂 1221125121341124334
+𪏃 1221125121341124334
+𪏄 1221125121341251431
+𪏅 122125121341555121
+𪏆 41251521122112512134
+𪏇 12211251213412511534
+𪏈 12211251213412212511
+𪏉 12211251213444512134
+𪏊 12211251213415341534
+𪏋 12211251213443344334
+𪏌 12211251213432411121
+𪏍 35113435122112512134
+𪏎 35121251122112512134
+𪏏 1221251213421531512
+𪏐 1221251213421531535
+𪏑 32511252122112512134
+𪏒 3251131212212512134
+𪏓 325111121122112512134
+𪏔 122112512134132511134
+𪏕 122112512134451251112
+𪏖 122112512134515132522
+𪏗 12212512134451325122
+𪏘 122112512134312511211
+𪏙 1214511221125121343554
+𪏚 1221125121342512511134
+𪏛 1221125121345435411515
+𪏜 4112112211251213441121
+𪏝 1221125121343251154444
+𪏞 1221125121341251153334
+𪏟 122125121341222511134
+𪏠 1221251213435351122534
+𪏡 12211251213441112514412
+𪏢 1221251213441351124134
+𪏣 122125121341515132522
+𪏤 122112512134125115344544
+𪏥 121211212112122112512134
+𪏦 122112512134312343424134
+𪏧 1221125121345415413424134
+𪏨 1221125121342512211251431
+𪏩 122125121342521325224334
+𪏪 1221251213441312212512134
+𪏫 122125121345225212522111234
+𪏬 12511343211343451145122112512134
+𪏭 31234223424134
+𪏮 312343424134531
+𪏯 312343424134353
+𪏰 3123434241342511
+𪏱 3123434241343515
+𪏲 3123434241345211
+𪏳 3123434241341551
+𪏴 3123434241343312
+𪏵 3123434241343533
+𪏶 31234342413435515
+𪏷 53154312343424134
+𪏸 31234342413451315
+𪏹 31234342413434312
+𪏺 31234342413445434
+𪏻 31234342413412251
+𪏼 31234342413453531
+𪏽 31234342413412211
+𪏾 31234342413453531
+𪏿 312343424134311234
+𪐀 312343424134354354
+𪐁 3123434241345344544
+𪐂 31234342413443113455
+𪐃 31234342413411134112
+𪐄 31234342413432511312
+𪐅 31234353312343424134
+𪐆 3123434241344325234
+𪐇 312343424134212514544
+𪐈 312343424134312511211
+𪐉 312343424134122513541
+𪐊 312343424134132514544
+𪐋 3123434241344315112234
+𪐌 31234342413411212132515
+𪐍 3123434241341251112454
+𪐎 31234342413441312351235
+𪐏 31234342413441432512251
+𪐐 312343424134312343424134
+𪐑 3123434241342524134522554
+𪐒 3123434241342511312511354
+𪐓 31234342413412512341251234
+𪐔 312343424134251212511134454
+𪐕 1215213355431234342413412211
+𪐖 3123434241344143135411515111
+𪐗 25243143344334
+𪐘 2543121144445
+𪐙 25431211444424
+𪐚 25431211444415
+𪐛 25431211444453
+𪐜 254312114444315
+𪐝 254312114444134
+𪐞 254312114444315
+𪐟 254312114444354
+𪐠 254312114444315
+𪐡 134254312114444
+𪐢 254312114444121
+𪐣 254312114444521
+𪐤 2543121144441354
+𪐥 2543121144441344
+𪐦 2543121144444135
+𪐧 2543121144445452
+𪐨 2543121144444535
+𪐩 2543121144444334
+𪐪 2543121144442511
+𪐫 2543121144443134
+𪐬 2543121144441135
+𪐭 2543121144443415
+𪐮 2543121144443554
+𪐯 2543121144443554
+𪐰 4134254312114444
+𪐱 2543121144443432
+𪐲 25431211444434333
+𪐳 25431211444434234
+𪐴 25431211444441121
+𪐵 25431211444425111
+𪐶 25431211444415534
+𪐷 25431211444441554
+𪐸 25431211444434454
+𪐹 25431211444425253
+𪐺 25431211444431234
+𪐻 25431211444432124
+𪐼 25431211444435515
+𪐽 52252254312114444
+𪐾 25431211444432121
+𪐿 254312114444354152
+𪑀 254312114444134334
+𪑁 254312114444325113
+𪑂 2543121144443412354
+𪑃 25431211444425221
+𪑄 254312114444313534
+𪑅 254312114444341154
+𪑆 254312114444134534
+𪑇 254312114444341251
+𪑈 2543121144442511135
+𪑉 2543121144441433454
+𪑊 2543121144442433541
+𪑋 2543121144443443124
+𪑌 2543121144443434251
+𪑍 2543121144445133535
+𪑎 2543121144444525111
+𪑏 2543121144443411234
+𪑐 5133115254312114444
+𪑑 2543121144442513445
+𪑒 25431211444441251521
+𪑓 25431211444443344334
+𪑔 25431211444455124134
+𪑕 25431211444435152511
+𪑖 25431211444413412132
+𪑗 25431211444441431531
+𪑘 25431211444441541234
+𪑙 25431211444434112431
+𪑚 25431211444413434234
+𪑛 25212543121144443134
+𪑜 25431211444431134251
+𪑝 25431211444412511534
+𪑞 25431211444412211234
+𪑟 12523422254312114444
+𪑠 25431211444451124134
+𪑡 25431211444434154544
+𪑢 15233134254312114444
+𪑣 254312114444513135135
+𪑤 11123453254312114444
+𪑥 254312114444134425111
+𪑦 254312114444251135345
+𪑧 254312114444122151234
+𪑨 254312114444123411234
+𪑩 254312114444513122134
+𪑪 451135124254312114444
+𪑫 254312114444431353334
+𪑬 254312114444412514512
+𪑭 254312114444134121121
+𪑮 254312114444122543112
+𪑯 254312114444332511112
+𪑰 254312114444513431132
+𪑱 254312114444513154121
+𪑲 2543121144444535251354
+𪑳 254312114444212511134
+𪑴 254312114444325125214
+𪑵 134251251254312114444
+𪑶 254312114444545231234
+𪑷 254312114444215315252
+𪑸 254312114444132511134
+𪑹 254312114444251213432
+𪑺 254312114444321511121
+𪑻 254312114444325131134
+𪑼 25431211444451111254
+𪑽 2543121144442121351234
+𪑾 2543121144441311534124
+𪑿 2543121144441212554554
+𪒀 3354143554254312114444
+𪒁 1343423413254312114444
+𪒂 2543121144441344325111
+𪒃 2543121144441251153334
+𪒄 2543121144444525114134
+𪒅 1343423453254312114444
+𪒆 2543121144441113431234
+𪒇 2543121144441341125111
+𪒈 2543121144441341251132
+𪒉 2543121144443115431234
+𪒊 2543121144443241112154
+𪒋 2543121144443354143554
+𪒌 2543121144444112213534
+𪒍 4512341234254312114444
+𪒎 2543121144442522125115
+𪒏 25431211444441352211535
+𪒐 25431211444434432511135
+𪒑 25431211444411212511134
+𪒒 25431211444441351125112
+𪒓 25431211444441554313534
+𪒔 2543121144444134522554
+𪒕 25121122134254312114444
+𪒖 25431211444413443121121
+𪒗 25431211444444145341234
+𪒘 254312114444543341251431
+𪒙 254312114444251112211154
+𪒚 312343424134254312114444
+𪒛 25431211444452431353334
+𪒜 254312114444125112144544
+𪒝 254312114444145241341154
+𪒞 251135411344254312114444
+𪒟 254312114444432524312511
+𪒠 254312114444121221113134
+𪒡 25431211444451124134454
+𪒢 254312114444224314311134
+𪒣 25431211444425343525135
+𪒤 254312114444125221251112
+𪒥 254312114444121213415534
+𪒦 254312114444311212511134
+𪒧 254312114444351335121251
+𪒨 143134354354254312114444
+𪒩 2543121144442121131233534
+𪒪 2543121144441212251125214
+𪒫 2543121144443412512513434
+𪒬 2543121144442512211311534
+𪒭 254312114444344134522554
+𪒮 2543121144445131221343554
+𪒯 2543121144441212131251534
+𪒰 254312114444121222511134
+𪒱 2543121144443443454544354
+𪒲 2543121144442243143111234
+𪒳 2543121144444411332511234
+𪒴 25431211444412125145154121
+𪒵 321125125151145254312114444
+𪒶 25431211444422431431121124
+𪒷 31214134112211254312114444
+𪒸 2524314334433422431431225154
+𪒹 254312114444314314131251534
+𪒺 312343424134353254312114444
+𪒻 254312114444134254312114444
+𪒼 25431211444412235445411234
+𪒽 254312114444132511325113251
+𪒾 254312114444251125112511134
+𪒿 2543121144444311341211254444
+𪓀 2543121144441331234312342121
+𪓁 2543121144442243143112251124
+𪓂 2543121144442511145244441154
+𪓃 25431211444441251251112213534
+𪓄 25431211444435251153535251354
+𪓅 25431211444412213513125125534
+𪓆 254312114444251112511125111134
+𪓇 2543121144441225111134132511134
+𪓈 2543121144441223251514143112521
+𪓉 2543121144441234343412342522151154124
+𪓊 25431211444412343112521234453444445215333
+𪓋 224314325234431234
+𪓌 22431432523441343412
+𪓍 515152154224314325234
+𪓎 2243143252344351325122
+𪓏 515151254224313425234
+𪓐 22431432523421531525111
+𪓑 3251251115151
+𪓒 35251251115151
+𪓓 52251251115151
+𪓔 2121251251115151
+𪓕 2515543211542511
+𪓖 4134251251115151
+𪓗 1134251251115151
+𪓘 2511251251115151
+𪓙 2534251251115151
+𪓚 25211251251115151
+𪓛 25134251251115151
+𪓜 53254251251115151
+𪓝 32512545111513151
+𪓞 25125111515135251
+𪓟 35251251251115151
+𪓠 35515251251115351
+𪓡 134251251251115151
+𪓢 321511251251115151
+𪓣 113535251251115151
+𪓤 12112145525112511
+𪓥 511511251251115151
+𪓦 541541251251115151
+𪓧 1311534251251115151
+𪓨 3251115251251115151
+𪓩 5135251251251115151
+𪓪 2512511151512511121
+𪓫 1234333251251115151
+𪓬 32151135251251115151
+𪓭 54545454251251115151
+𪓮 251135345251251115151
+𪓯 515122111251251115151
+𪓰 431253511251251115151
+𪓱 132522111251251115151
+𪓲 251125221251251115151
+𪓳 311341134251251115151
+𪓴 121533134251251115151
+𪓵 431253511251251115151
+𪓶 522523134251251115151
+𪓷 3443554134251251115151
+𪓸 3545325121251251115151
+𪓹 41312351235251251115151
+𪓺 351143113453251251115151
+𪓻 352522125121251251115151
+𪓼 4125251125111251251115151
+𪓽 251251251112251251115151
+𪓾 5225241533134251251115151
+𪓿 13425234343434251251115151
+𪔀 4325233443134251251115151
+𪔁 312345115114444251251115151
+𪔂 25111513215
+𪔃 45251115132125
+𪔄 121251115132125
+𪔅 251251115132125
+𪔆 251115132125112
+𪔇 1234251115132125
+𪔈 251251115132125531
+𪔉 4143253354251115132125
+𪔊 251115132125111211125114544
+𪔋 1212514311254121
+𪔌 1211212514311254
+𪔍 12125143121543112
+𪔎 12125143112541154
+𪔏 12125143112541132
+𪔐 121251431125412251
+𪔑 121251431125413251
+𪔒 252211212514311254
+𪔓 121251431125453251
+𪔔 1212514311254354152
+𪔕 1212514311254311252
+𪔖 1212514311254251214
+𪔗 1212514311254251341
+𪔘 1212514311254251315
+𪔙 1212514311254431112
+𪔚 1212514311254251251
+𪔛 1212514311254341534
+𪔜 12125143112545425112
+𪔝 12125143112543535112
+𪔞 12125143112543541112
+𪔟 12125143112541353334
+𪔠 11211321212514311254
+𪔡 25111341212514311254
+𪔢 121251431125435431121
+𪔣 121251431125444534121
+𪔤 121251431125425152511
+𪔥 3121552121212514311254
+𪔦 1212514311254441251251
+𪔧 1212514311254414312511
+𪔨 1212514311254122125112
+𪔩 1212514311254131251534
+𪔪 1212514311254251122111
+𪔫 5225235221212514311254
+𪔬 121251431125411221234
+𪔭 1212514311254121222534
+𪔮 12125143112541215425221
+𪔯 121251431125413211234534
+𪔰 121521335541212514311254
+𪔱 1212514311254441312155212
+𪔲 12125143112543541112454
+𪔳 523541311211212514311254
+𪔴 121251431125452354131121
+𪔵 12125143112541212122511134
+𪔶 121251431125432543341251431
+𪔷 12125143112544143135411515111
+𪔸 321511544544551
+𪔹 321511544544553
+𪔺 3215115445445534
+𪔻 32151154454453134
+𪔼 3215115445445354
+𪔽 32151154454454535
+𪔾 32151154454451132
+𪔿 32151154454452154
+𪕀 32151154454451135
+𪕁 32151154454454535
+𪕂 32151154454453554
+𪕃 32151154454454153
+𪕄 32151154454453351
+𪕅 32151154454451525
+𪕆 32151154454453534
+𪕇 32151154454454135
+𪕈 32151154454452511
+𪕉 321511544544534312
+𪕊 2121353215115445445
+𪕋 321511544544535352
+𪕌 321511544544534154
+𪕍 321511544544525251
+𪕎 321511544544544535
+𪕏 321511544544544534
+𪕐 321511544544521251
+𪕑 3215115445445212115
+𪕒 3215115445445431132
+𪕓 3215115445445243135
+𪕔 3215115445445122111
+𪕕 3215115445445251214
+𪕖 3215115445445121251
+𪕗 2431353215115445445
+𪕘 3542513215115445445
+𪕙 3215115445445251251
+𪕚 32151154454451315451
+𪕛 32151154454453415251
+𪕜 32151154454452515134
+𪕝 32151154454452512134
+𪕞 32151154454455435354
+𪕟 3215115445445321344
+𪕠 32151154454455114334
+𪕡 12512513215115445445
+𪕢 12152513215115445445
+𪕣 32151154454451555121
+𪕤 32151154454452511531
+𪕥 32151154454452534251
+𪕦 32151154454453541354
+𪕧 32151154454454351523
+𪕨 321511544544532151135
+𪕩 321511544544525113533
+𪕪 324111213215115445445
+𪕫 3215115445445251113533
+𪕬 3215115445445414345252
+𪕭 3215115445445251135345
+𪕮 1225135113215115445445
+𪕯 3215115445445132511134
+𪕰 3215115445445512115154
+𪕱 3215115445445122513541
+𪕲 3215115445445125125121
+𪕳 3215115445445251214544
+𪕴 3215115445445353251214
+𪕵 32151154454452511121124
+𪕶 32151154454454313425221
+𪕷 12145135543215115445445
+𪕸 12145132151154454453554
+𪕹 32151154454454135112251
+𪕺 32151154454453443533354
+𪕻 33215315353215115445445
+𪕼 43151122343215115445445
+𪕽 32151154454453321531554
+𪕾 32151154454453552335523
+𪕿 325111251211323251114535
+𪖀 321511544544523432411121
+𪖁 321511544544533234342134
+𪖂 321511544544541345225214
+𪖃 321511544544512145353554
+𪖄 321511544544512135213134
+𪖅 3215115445445121222511134
+𪖆 3215115445445543345153554
+𪖇 3215115445445343123425121
+𪖈 3215115445445224314311134
+𪖉 3215115445445122111343312
+𪖊 32151154454452243143111234
+𪖋 321511544544512132411121534
+𪖌 32151154454452153152512125221
+𪖍 32151154454451331234312342121
+𪖎 321511544544534341211121111534
+𪖏 3215115445445251112511132411121
+𪖐 325111251211325
+𪖑 3251112512113255
+𪖒 3532511125121132
+𪖓 32511125121132354
+𪖔 32511125121132534
+𪖕 152332511125121132
+𪖖 325111251211323134
+𪖗 325111251211323534
+𪖘 325111251211324412
+𪖙 325111251211323554
+𪖚 3251112512113221251
+𪖛 3251112512113232121
+𪖜 3251112512113234121
+𪖝 3251112512113234251
+𪖞 3251112512113253254
+𪖟 3251112512113212211
+𪖠 3251112512113253251
+𪖡 32511125121132351355
+𪖢 32511125121132121121
+𪖣 32511125121132154121
+𪖤 53135532511125121132
+𪖥 325111251211323413252
+𪖦 325111251211324351523
+𪖧 325111251211325114554
+𪖨 325111251211321343434
+𪖩 325111251211321325221
+𪖪 341325232511125121132
+𪖫 325111251211323155414
+𪖬 315541432511125121132
+𪖭 3251112512113225111124
+𪖮 3251112512113215112134
+𪖯 32511125121132351325122
+𪖰 32511125121132414345252
+𪖱 32511125121132532515215
+𪖲 32511125121132512115154
+𪖳 325111251211324315112234
+𪖴 325111251211323115431234
+𪖵 555251521532511125121132
+𪖶 3251112512113241554413412
+𪖷 3251112512113254154134333
+𪖸 2153152511132511125121132
+𪖹 3251112512113225112512531
+𪖺 32511125121132511541535
+𪖻 32511125121132325111135415
+𪖼 32511125121132153515352511
+𪖽 32511125121132113411342511
+𪖾 32511125121132252325113554
+𪖿 325111251211324155332411121
+𪗀 325111251211322511353453534
+𪗁 325111251211321331234312342121
+𪗂 3251112512113235251153535251354
+𪗃 3251112512113241553324111211554
+𪗄 123543543211
+𪗅 4143253354321154
+𪗆 41341432533543211
+𪗇 414325335432113511
+𪗈 414325335432111354
+𪗉 4143253354321131234
+𪗊 5225241432533543211
+𪗋 41432533543211413534
+𪗌 41432533543211255434
+𪗍 4143253354321115112531
+𪗎 414325335435132511134
+𪗏 4143253354321135251214444
+𪗐 4143253354254325243125111
+𪗑 4143253354321135251115354
+𪗒 4143253354321123435251115354
+𪗓 414325335432112341225111134354
+𪗔 21213434134345235
+𪗕 21213434134345212
+𪗖 34212134341343452
+𪗗 21213434134345235
+𪗘 212134341343452252
+𪗙 212134341343452112
+𪗚 212134341343452215
+𪗛 2121343413434521132
+𪗜 2121343413434524135
+𪗝 2121343413434522534
+𪗞 2121343413434521132
+𪗟 2121343413434523115
+𪗠 2121343413434521534
+𪗡 2121343413434522154
+𪗢 2121343413434523324
+𪗣 2121343413434523435
+𪗤 2121343413434523541
+𪗥 21213434134345213534
+𪗦 21213434134345221251
+𪗧 21213434134345225134
+𪗨 21213434134345252252
+𪗩 21213434134345244535
+𪗪 21213434134345251251
+𪗫 21213434134345231134
+𪗬 53251212134341343452
+𪗭 53154212134341343452
+𪗮 21213434134345231234
+𪗯 212134341343452415435
+𪗰 21213434134345241554
+𪗱 21214312345225111
+𪗲 43254444134154
+𪗳 21213434134345212211
+𪗴 21213434134345244535
+𪗵 21213434134345253154
+𪗶 212115212134341343452
+𪗷 212134341343452152511
+𪗸 212134341343452354251
+𪗹 212134341343452121121
+𪗺 212134341343452121124
+𪗻 212134341343452154121
+𪗼 212134341343452355215
+𪗽 212134341343452312251
+𪗾 212134341343452121251
+𪗿 212134341343452135422
+𪘀 212134341343452431132
+𪘁 212134341343452341251
+𪘂 111253212143123452
+𪘃 212134341343452132511
+𪘄 212134341343452251135
+𪘅 251214212134341343452
+𪘆 212134341343452321234
+𪘇 212134341343452331251
+𪘈 212134341343452341534
+𪘉 212134341343452351234
+𪘊 212134341343452354251
+𪘋 212134341343452445554
+𪘌 212134341343452125134
+𪘍 212134341343452251251
+𪘎 2121343413434524111251
+𪘏 2512121212134341343452
+𪘐 2121343413434523121534
+𪘑 2121343413434525435354
+𪘒 2121343413434523415251
+𪘓 3213121212134341343452
+𪘔 1213312212134341343452
+𪘕 3244535212134341343452
+𪘖 2121343413434521215453
+𪘗 3231525212134341343452
+𪘘 1343434212134341343452
+𪘙 4111251212134341343452
+𪘚 2121431234521251251
+𪘛 2121343413434521221115
+𪘜 2121343413434521251234
+𪘝 2121343413434521311534
+𪘞 2121343413434522432511
+𪘟 2121343413434522511135
+𪘠 2121343413434523212341
+𪘡 2121343413434523213121
+𪘢 2121343413434523515251
+𪘣 2121343413434525133115
+𪘤 2121343413434523443124
+𪘥 31125222212134341343452
+𪘦 12512554212134341343452
+𪘧 21213434134345241343412
+𪘨 21213434134345213434234
+𪘩 21213434134345225312341
+𪘪 21213434134345215341534
+𪘫 21213434134345244525441
+𪘬 21213434134345213121121
+𪘭 21213434134345225312341
+𪘮 21213434134345232411121
+𪘯 15233134212134341343452
+𪘰 21213434134345221531535
+𪘱 21213434134345234132511
+𪘲 21213434134345244525111
+𪘳 21213434134345251352252
+𪘴 21213434134345252115211
+𪘵 21213434134345212134354
+𪘶 21213434134345251122511
+𪘷 45133312212134341343452
+𪘸 12211154212134341343452
+𪘹 212134341343452251135345
+𪘺 212134341343452445354251
+𪘻 112343134212134341343452
+𪘼 125123422212134341343452
+𪘽 212134341343452215315151
+𪘾 212134341343452112321511
+𪘿 2121343413434522121351234
+𪙀 212134341343452521343541
+𪙁 212134341343452123425111
+𪙂 212134341343452555135422
+𪙃 212134341343452251225251
+𪙄 343513121212134341343452
+𪙅 212134341343452345423454
+𪙆 212134341343452513343511
+𪙇 513343511212134341343452
+𪙈 353511534212134341343452
+𪙉 2121343413434524311213121
+𪙊 2121343413434524315112234
+𪙋 2121343413434523253414544
+𪙌 5132433541212134341343452
+𪙍 2121343413434521251124124
+𪙎 2121343413434523415113251
+𪙏 2121343413434524453121251
+𪙐 1212121315212134341343452
+𪙑 2121343413434525132433541
+𪙒 2121343413434523123434252
+𪙓 1211211354212134341343452
+𪙔 4143253354212134341343452
+𪙕 2121343413434525131221534
+𪙖 3431234134212134341343452
+𪙗 3552335523212134341343452
+𪙘 2121343413434524134122111
+𪙙 2121343413434523554431234
+𪙚 21213434134345221251225251
+𪙛 21213434134345211212132515
+𪙜 21213434134345244535154121
+𪙝 212134341343452133544124
+𪙞 21213434134345241431331121
+𪙟 21213434134345212212511121
+𪙠 1121533134212134341343452
+𪙡 21213434134345212512212511
+𪙢 21213434134345254251211534
+𪙣 212134341343452251251251112
+𪙤 134342341344212134341343452
+𪙥 212134341343452212534125214
+𪙦 212134341343452251112211154
+𪙧 212134341343452554554134534
+𪙨 212134341343452511225112511
+𪙩 212134341343452511225113511
+𪙪 133123431234212134341343452
+𪙫 21213434134345221531522431
+𪙬 312251312251212134341343452
+𪙭 212134341343452432524312511
+𪙮 212134341343452343434342511
+𪙯 411322411121212134341343452
+𪙰 2121343413434521212251135345
+𪙱 4133123431234212134341343452
+𪙲 1353334511534212134341343452
+𪙳 2121343413434522522112251111
+𪙴 2121343413434524311213121534
+𪙵 2121343413434524125251125111
+𪙶 25113533312251212134341343452
+𪙷 212134341343452555253415445445
+𪙸 212134341343452323434343413121
+𪙹 212134341343452212134341343452
+𪙺 21213434134345213122251125214
+𪙻 212134341343452234324111211534
+𪙼 323434343413121212134341343452
+𪙽 2121343413434521331234312342121
+𪙾 2121343413434522153152512125221
+𪙿 2153151251254312212134341343452
+𪚀 1221115544455444212134341343452
+𪚁 12211155455452212212134341343452
+𪚂 21213434134345212124411251124124
+𪚃 21213434134345235251153535251354
+𪚄 21213434134345212211155455435212
+𪚅 21213434134345234432522151154124
+𪚆 2121343413434523554212134341343452
+𪚇 2121343413434523121353121352511134
+𪚈 2121343413434523143144411251124124
+𪚉 2121343413434521225111134132511134
+𪚊 21531512512543121344212134341343452
+𪚋 21213434134345221531512512543121344
+𪚌 212134341343452513241342522135251214
+𪚍 2121343413434522121343413434524311213121
+𪚎 4143253354212134341343452212134341343452
+𪚏 21213452431132
+𪚐 1523313421213452
+𪚑 4143135411515111252
+𪚒 1134143135411515111
+𪚓 3534143135411515111
+𪚔 4143125111515111134
+𪚕 34454143135411515111
+𪚖 32154143135411515111
+𪚗 13544143135411515111
+𪚘 35414143135411515111
+𪚙 341544143135411515111
+𪚚 41431251115151112512
+𪚛 41431354115151114412
+𪚜 4143135411515111113112
+𪚝 1211214143135411515111
+𪚞 4143135411515111132511
+𪚟 1124143135411515111112
+𪚠 41431354115151111234341
+𪚡 34342514143125111515111
+𪚢 4143125111515111534353432
+𪚣 121521335544143125111515111
+𪚤 414312511151511141535111121
+𪚥 4143135411515111414313541151511141431354115151114143135411515111
+𪚦 12155125115115341
+𪚧 35251525112511511
+𪚨 445351253415511511
+𪚩 2513251253415511511
+𪚪 3543251253415511511
+𪚫 352515251115115113541
+𪚬 32512534155115113445
+𪚭 32512534155115113554
+𪚮 35113251253415511511
+𪚯 43343251253415511511
+𪚰 32512534155115114444
+𪚱 43343251253415511511
+𪚲 351135251125115
+𪚳 32512534155115113511
+𪚴 25125344444115511544
+𪚵 35543251253415511511
+𪚶 325125341551151135251
+𪚷 532543251253415511511
+𪚸 121543251253415511511
+𪚹 411213251253415511511
+𪚺 3525123212115511511
+𪚻 251343251253415511511
+𪚼 312343251253415511511
+𪚽 325125341551151135444
+𪚾 3525125111345511511
+𪚿 3525112511125511511
+𪛀 4134343535251213251115511511
+𪛁 312344334352512534151511511
+𪛂 25232411121352512534151511511
+𪛃 35251125125125155511511
+𪛄 251251251213525125115511511
+𪛅 2512121354251352512534151511511
+𪛆 24325251313435251251115511511
+𪛇 352515534151151125251122525111
+𪛈 14524134251251251352512534151511511
+𪛉 352512515
+𪛊 341251251251251223312
+𪛋 3412512512512512225112511
+𪛌 3412512512512512221531535
+𪛍 3412512512512512221531512
+𪛎 44132511134125125125125122
+𪛏 34125125125125122414312511
+𪛐 52252353434125125125125122
+𪛑 43343333534125125125125122
+𪛒 314314341251251251251223554
+𪛓 3412512512512512241352211535
+𪛔 3143143412512512512512221531535
+𪛕 3412512512512512235251253415511511
+𪛖 34125125125125122352512534155115114444
diff --git a/indexing/zhmakeindex/MENIFEST b/indexing/zhmakeindex/MENIFEST
new file mode 100644
index 0000000000..730d28bf48
--- /dev/null
+++ b/indexing/zhmakeindex/MENIFEST
@@ -0,0 +1,46 @@
+build-dist.cmd
+input.go
+install.cmd
+main.go
+MENIFEST
+numberedreader.go
+output.go
+pagenumber.go
+radical_collator.go
+reading_collator.go
+README
+sorter.go
+stroke_collator.go
+style.go
+style_test.go
+VERSION
+bin/darwin_x64/zhmakeindex
+bin/darwin_x86/zhmakeindex
+bin/linux_x64/zhmakeindex
+bin/linux_x86/zhmakeindex
+bin/windows_x64/zhmakeindex.exe
+bin/windows_x86/zhmakeindex.exe
+doc/make.cmd
+doc/zhmakeindex.bib
+doc/zhmakeindex.mst
+doc/zhmakeindex.pdf
+doc/zhmakeindex.tex
+examples/compositepage.idx
+examples/gb2312.idx
+examples/mixedpage.idx
+examples/numbers.idx
+examples/rangeencap.idx
+examples/suffix.ist
+examples/symorder.idx
+examples/zh.ist
+kpathsea/dynamic_other.go
+kpathsea/dynamic_windows_386.go
+kpathsea/kpathsea.go
+CJK/make-table.cmd
+CJK/maketables.go
+CJK/radicalstrokes.go
+CJK/strokes.go
+CJK/readings.go
+
+# From Sun Haifeng's Wubi input method (http://okuc.net/sunwb/):
+CJK/sunwb_strokeorder.txt
diff --git a/indexing/zhmakeindex/README b/indexing/zhmakeindex/README
new file mode 100644
index 0000000000..af480f28fe
--- /dev/null
+++ b/indexing/zhmakeindex/README
@@ -0,0 +1,53 @@
+ zhmakeindex
+ ===========
+
+Zhmakeindex is a makeindex replacement for Chinese users, with full Unicode
+and Chinese sorting support.
+
+REQUIREMENTS
+============
+
+Zhmakeindex is written in Google Go language, released with statically linked
+binary code.
+
+Zhmakeindex can be run everywhere without any dependency library. However, a
+modern Web2c TeX distribution (TeX Live, MiKTeX) is recommended to use
+zhmakeindex, and the style file searching faculty needs `kpsewhich' command.
+
+To compile zhmakeindex, the latest Go language is needed:
+
+ http://golang.org/
+
+And zhmakeindex is compiled using these Go packages:
+
+ * golang.org/x/text
+ * github.com/yasushi-saito/rbtree
+
+DOCUMENTATION AND SUPPORT
+=========================
+
+The documentation of zhmakeindex is in Chinese only.
+
+After installing, `zhmakeindex -help' will provide a basic documentation.
+The PDF documentation is also available for details.
+
+More information, bugfix releases and bug tracker are available at:
+
+ https://github.com/leo-liu/zhmakeindex
+
+COPYRIGHT AND LICENCE
+=====================
+
+Copyright 2014, 2015, 2016, 2018 Liú Hǎiyáng (Leo Liu) <leoliu.pku@gmail.com>
+
+This work may be distributed and/or modified under the
+conditions of the LaTeX Project Public License, either version 1.3
+of this license or (at your option) any later version.
+The latest version of this license is in
+ http://www.latex-project.org/lppl.txt
+and version 1.3 or later is part of all distributions of LaTeX
+version 2005/12/01 or later.
+
+This work has the LPPL maintenance status `maintained'.
+
+The Current Maintainer of this work is Liú Hǎiyáng.
diff --git a/indexing/zhmakeindex/VERSION b/indexing/zhmakeindex/VERSION
new file mode 100644
index 0000000000..5625e59da8
--- /dev/null
+++ b/indexing/zhmakeindex/VERSION
@@ -0,0 +1 @@
+1.2
diff --git a/indexing/zhmakeindex/bin/darwin_x64/zhmakeindex b/indexing/zhmakeindex/bin/darwin_x64/zhmakeindex
new file mode 100644
index 0000000000..7beea276e3
--- /dev/null
+++ b/indexing/zhmakeindex/bin/darwin_x64/zhmakeindex
Binary files differ
diff --git a/indexing/zhmakeindex/bin/darwin_x86/zhmakeindex b/indexing/zhmakeindex/bin/darwin_x86/zhmakeindex
new file mode 100644
index 0000000000..787ed28b87
--- /dev/null
+++ b/indexing/zhmakeindex/bin/darwin_x86/zhmakeindex
Binary files differ
diff --git a/indexing/zhmakeindex/bin/linux_x64/zhmakeindex b/indexing/zhmakeindex/bin/linux_x64/zhmakeindex
new file mode 100644
index 0000000000..dfd4712cec
--- /dev/null
+++ b/indexing/zhmakeindex/bin/linux_x64/zhmakeindex
Binary files differ
diff --git a/indexing/zhmakeindex/bin/linux_x86/zhmakeindex b/indexing/zhmakeindex/bin/linux_x86/zhmakeindex
new file mode 100644
index 0000000000..5ae3887441
--- /dev/null
+++ b/indexing/zhmakeindex/bin/linux_x86/zhmakeindex
Binary files differ
diff --git a/indexing/zhmakeindex/build-dist.cmd b/indexing/zhmakeindex/build-dist.cmd
new file mode 100644
index 0000000000..e2bec5b111
--- /dev/null
+++ b/indexing/zhmakeindex/build-dist.cmd
@@ -0,0 +1,32 @@
+setlocal
+%~d0
+cd %~p0
+
+if exist VERSION (
+ for /f "delims=" %%i in (VERSION) do set zhmVersion=%%i
+) else (
+ set zhmVersion=devel
+)
+for /f "delims=" %%i in ('git log -1 --pretty^=format:"%%h(%%ai"') do set zhmRevision=%%i
+set zhmRevision=%zhmRevision:~0,18%)
+set FLAGS=-ldflags "-X main.Version=%zhmVersion% -X main.Revision=%zhmRevision%"
+
+set GOOS=windows
+set GOARCH=386
+go build %FLAGS% -o bin/windows_x86/zhmakeindex.exe
+set GOARCH=amd64
+go build %FLAGS% -o bin/windows_x64/zhmakeindex.exe
+
+set GOOS=linux
+set GOARCH=386
+go build %FLAGS% -o bin/linux_x86/zhmakeindex
+set GOARCH=amd64
+go build %FLAGS% -o bin/linux_x64/zhmakeindex
+
+set GOOS=darwin
+set GOARCH=386
+go build %FLAGS% -o bin/darwin_x86/zhmakeindex
+set GOARCH=amd64
+go build %FLAGS% -o bin/darwin_x64/zhmakeindex
+
+endlocal
diff --git a/indexing/zhmakeindex/doc/make.cmd b/indexing/zhmakeindex/doc/make.cmd
new file mode 100644
index 0000000000..0a14ffda3b
--- /dev/null
+++ b/indexing/zhmakeindex/doc/make.cmd
@@ -0,0 +1,28 @@
+@echo off
+setlocal
+%~d0
+cd %~p0
+
+echo ==========^> Updating version...
+echo \def\zhmVersion{%%> zhm-version.tex
+if exist ..\VERSION (
+ type ..\VERSION >> zhm-version.tex
+) else (
+ echo devel%%>> zhm-version.tex
+)
+echo }>> zhm-version.tex
+echo \def\zhmRevision{%%>> zhm-version.tex
+git rev-parse --short HEAD >> zhm-version.tex
+echo }>> zhm-version.tex
+
+echo ==========^> Compiling document...
+xelatex -interaction=batchmode zhmakeindex.tex
+echo ==========^> Running BibTeX...
+bibtex zhmakeindex
+echo ==========^> Running zhmakeindex...
+zhmakeindex zhmakeindex
+echo ==========^> Recompiling document...
+xelatex -interaction=batchmode zhmakeindex.tex
+xelatex -interaction=batchmode zhmakeindex.tex
+
+endlocal
diff --git a/indexing/zhmakeindex/doc/zhmakeindex.bib b/indexing/zhmakeindex/doc/zhmakeindex.bib
new file mode 100644
index 0000000000..c7028ca4e0
--- /dev/null
+++ b/indexing/zhmakeindex/doc/zhmakeindex.bib
@@ -0,0 +1,35 @@
+% This file was created with JabRef 2.9.2.
+% Encoding: UTF8
+
+@ARTICLE{Chen:1988:IPP,
+ author = {Pehong Chen and Michael A. Harrison},
+ title = {Index Preparation and Processing},
+ journal = {Software---Practice and Experience},
+ year = {1988},
+ volume = {19},
+ pages = {897--915},
+ number = {9},
+ month = sep,
+ note = {The {\LaTeX} text of this paper is included in the {\tt makeindex}
+ software distribution.},
+ coden = {SPEXBL},
+ issn = {0038-0644},
+ url = {http://mirror.ctan.org/indexing/makeindex/paper/ind.pdf}
+}
+
+@MANUAL{Lamport1987,
+ title = {MakeIndex: An Index Processor For {\LaTeX}},
+ author = {Leslie Lamport},
+ month = feb,
+ year = {1987},
+ url = {CTAN://indexing/makeindex/doc/makeindex.pdf}
+}
+
+@MANUAL{Chen1991,
+ title = {makeindex -- a general purpose, formatter-independent index processor},
+ author = {Pehong Chen},
+ organization = {Chen \& Harrison International Systems},
+ month = dec,
+ year = {1991},
+ url = {CTAN://indexing/makeindex/doc/manpages.dvi}
+}
diff --git a/indexing/zhmakeindex/doc/zhmakeindex.mst b/indexing/zhmakeindex/doc/zhmakeindex.mst
new file mode 100644
index 0000000000..4eb451ebe6
--- /dev/null
+++ b/indexing/zhmakeindex/doc/zhmakeindex.mst
@@ -0,0 +1,23 @@
+% 此索引格式用来编译 zhmakeindex 的手册
+
+preamble
+`\begin{theindex}
+ \def\seename{见}
+ \def\alsoname{又见}
+ \providecommand*\indexgroup[1]{%
+ \indexspace
+ \item \textbf{#1}\nopagebreak}
+`
+
+postamble "\n\n\\end{theindex}\n"
+
+group_skip "\n\n \\indexspace\n\n"
+
+headings_flag 1
+heading_prefix " %\n \\indexgroup{"
+heading_suffix "}\n %\n"
+
+numhead_positive "数字"
+numhead_negative "数字"
+symhead_positive "符号"
+symhead_negative "符号"
diff --git a/indexing/zhmakeindex/doc/zhmakeindex.pdf b/indexing/zhmakeindex/doc/zhmakeindex.pdf
new file mode 100644
index 0000000000..d606e089af
--- /dev/null
+++ b/indexing/zhmakeindex/doc/zhmakeindex.pdf
Binary files differ
diff --git a/indexing/zhmakeindex/doc/zhmakeindex.tex b/indexing/zhmakeindex/doc/zhmakeindex.tex
new file mode 100644
index 0000000000..675ccd9ff8
--- /dev/null
+++ b/indexing/zhmakeindex/doc/zhmakeindex.tex
@@ -0,0 +1,869 @@
+\documentclass[UTF8]{ctexart}
+
+\usepackage{etoolbox}
+
+\setmainfont[Ligatures=TeX]{CMU Serif}
+\setsansfont[Ligatures=TeX]{CMU Sans Serif}
+\setmonofont[Mapping=]{CMU Typewriter Text}
+\setCJKmainfont[BoldFont=FandolSong Bold,ItalicFont=FandolKai]{FandolSong}
+\newfontfamily\libertine{Linux Libertine O}
+
+\usepackage{pifont}
+\newcommand\gooditem{\item[\ding{51}]}
+\newcommand\baditem{\item[\ding{55}]}
+
+\usepackage[a4paper,centering,margin=1.2in]{geometry}
+
+\ctexset{section/format=\bfseries\Large}
+
+\usepackage[numbers,square,sort&compress]{natbib}
+\renewcommand\bibname{参考文档}
+\bibliographystyle{plainnat}
+
+\usepackage{tocbibind}
+
+\usepackage{ragged2e}
+
+\usepackage{booktabs}
+\usepackage{longtable}
+\usepackage{tabu}
+
+\usepackage{caption}
+\captionsetup[table]{font=small,position=top,skip=1ex}
+
+\usepackage{xcolor}
+
+\usepackage{makeidx}
+\makeindex
+
+% 索引项示例
+\newenvironment{idxexample}
+ {\newcommand{\sindex}{%
+ \end{tabular}%
+ &
+ \begin{tabular}[t]{@{}l@{}}}
+ \newcommand{\sitem}{\hspace*{20pt}}
+ \newcommand{\ssitem}{\hspace*{30pt}}
+ \begin{quote}
+ \begin{tabular}{@{}l @{\quad{\color{gray}\vrule width .25em}\quad} l @{}}
+ \begin{tabular}[t]{@{}l@{}}}
+ { \end{tabular}
+ \end{tabular}
+ \end{quote}}
+
+\usepackage{fancyvrb}
+\fvset{formatcom=\xeCJKVerbAddon}
+\usepackage{shortvrb}
+\AtBeginDocument{
+ \MakeShortVerb\|
+ \MakeShortVerb\"
+}
+
+\makeatletter
+\appto\@sanitize{%
+ \@makeother\|%
+ \@makeother\"}
+\def\useangles{%
+ \@makeother\{%
+ \@makeother\}%
+ \catcode`\<=1%
+ \catcode`\>=2}
+\def\restoreangles{%
+ \@makeother\<%
+ \@makeother\>%
+ \catcode`\{=1%
+ \catcode`\}=2}
+\let\org@wrindex\@wrindex
+\let\rawindex\index
+\patchcmd\rawindex{\@wrindex}{\org@wrindex}
+ {}
+ {\GenericWarning
+ {\space\space\space\space}
+ {hyperref index patch failed.}}
+\makeatother
+
+\usepackage{hyperref}
+\hypersetup{bookmarksnumbered,pdfstartview=FitH}
+\def\tableautorefname{表}
+
+\usepackage{xspace}
+
+\newcommand*\pkg[1]{\textsf{#1}\index{#1@\textsf{#1}}}
+\newcommand*\zhm{\pkg{zhmakeindex}\xspace}
+\newrobustcmd*\meta[1]{$\langle\textnormal{\itshape#1}\rangle$}
+\newcommand*\optional[1]{\textnormal{[}#1\textnormal{]}}
+\def\defchar#1{\begingroup\lccode`~=`#1\lowercase{\endgroup\def~}}
+\newenvironment{syntax}{%
+ \quote\ttfamily
+ \catcode`<\active \defchar<##1>{\meta{##1}}
+ \catcode`[\active \defchar[##1]{\optional{##1}}
+}{\endquote}
+\newcommand*\optindex[1]{\index{选项!\texttt{#1}}}
+\newcommand*\optitem[1][]{\optindex{#1}\item[#1]}
+\newrobustcmd*\textkw[1]{\texttt{\scantokens{\catcode`\_=12 #1\endinput}}}
+\newcommand*\kwindex[1]{\index{#1@\textkw{#1}}}
+\newcommand*\kw[1]{\kwindex{#1}\textkw{#1}}
+\newcommand*\sort[1]{%
+ \index{选项!\texttt{-z}!#1@\textkw{#1}}%
+ \textkw{#1}}
+\newcommand\email{\nolinkurl}
+
+\InputIfFileExists{zhm-version}{}{%
+ \def\zhmVersion{???}%
+ \def\zhmRevision{???}}
+
+\title{\zhm\thanks{版本 \zhmVersion-\zhmRevision} 中文索引处理程序}
+\author{刘海洋}
+\date{2018 年 4 月 11 日}
+
+\begin{document}
+
+\maketitle
+
+\section{命令行}
+
+\index{命令行}
+\begin{syntax}
+\halign{#&#\hfil\cr
+zhmakeindex &[-c] [-i] [-o~<ind>] [-q] [-r] [-s~<sty>] [-t~<log>]\cr
+ &[-enc~<enc>] [-senc~<senc>] [-strict] [-z~<sort>]\cr
+ &[<idx0> <idx1> <idx2> ...]\cr
+}
+\end{syntax}
+
+\section{简介}
+
+\zhm 是一个通用的中文多级索引处理程序,它从一个或多个输入文件读入索引项,将其
+内容按指定的方式分组、排序,然后按格式将整理好的索引输出到文件。索引项可以有 3
+个级别(0, 1, 2)的嵌套。\zhm 主要用于 \LaTeX{} 索引的处理,其功能和用法与
+\pkg{makeindex}\cite{Chen1991} 相似,并支持中文的分组与排序。
+
+\index{.idx@\verb+.idx+}
+\index{.ind@\verb+.ind+}
+输入与输出文件的格式由一个格式文件确定。默认的输入/输出是 ".idx"/".ind" 格式
+的,即 \LaTeX{} 格式的索引文件。
+
+如果没有显式指定,第一个输入文件(\meta{idx0})的主文件名将用于确定输出和日志
+文件的主文件名。对每个输入文件名 \meta{idx0}, \meta{idx1}, \ldots, \zhm 会首先
+查找这个名字的文件;如果找不到且文件名没有后缀,则加上 ".idx" 后缀查找此文件;
+如果还找不到文件,\zhm 则会中止。
+
+\optindex{-s}
+\index{.mst@\verb+.mst+}
+如果只有一个输入文件,并且没有显式用 "-s" 选项指定格式文件,\zhm 会使用后缀为
+".mst" 的默认格式文件(如果存在的话)。
+
+关于如何使用 \pkg{makeindex} 在 \LaTeX{} 文档中处理索引,可以参考陈丕宏较早的
+文档 \cite{Chen:1988:IPP},或 Lamport 的文档 \cite{Lamport1987}。\zhm 的在
+\LaTeX 中的使用方法与 \pkg{makeindex} 基本一致。
+
+\section{选项说明}
+
+\index{选项|(}
+
+\subsection{与 \pkg{makeindex} 相同的选项}
+\label{subsec:oldoption}
+
+\begin{description}
+ \optitem[-c] 压缩索引项排序项前后的空格。默认情况下,排序项中的空格会被保留。
+ \optitem[-i] 从标准输入流("stdin")读入索引项。如果使用了该选项,并且没有使用
+ "-o" 选项,则排序后的索引将输出到标准输出流("stdout")。
+ \optitem[-o~\meta{ind}] 设置输出索引文件为 \meta{ind}。如果没有指定该选项,默认
+ 的输出文件名是第一个输入文件 \meta{idx0} 的主文件名加上 ".ind" 的扩展名。
+ \index{.ind@\verb+.ind+}
+ \optitem[-q] 静默模式,不向标准错误流("stderr")显示信息。默认情况下处理过程与
+ 错误信息会同时在 "stderr" 与日志文件中输出。
+ \optitem[-r] 禁止隐式页码区间构造,要求页码区间必须使用显式区间符号生成。见
+ 第~\ref{sec:idxsyntax} 节的说明。默认情况下,三个或三个以上连续的页码会自
+ 动合并为一个页码区间(如 1--5)。
+ \optitem[-s~\meta{sty}] 设置 \meta{sty} 为格式文件。没有默认值。如果没有后
+ 缀,会加上 ".ist" 后缀。\zhm 会首先在当前目录查找格式文件,如果找不到则调
+ 用 \TeX{} 发行版的 \pkg{kpathsea} 库在 TEXMF 树中查找。
+ \index{.ist@\verb+.ist+}
+ \optitem[-t~\meta{log}] 设置 \meta{log} 为日志文件。默认情况下,会使用第一个输
+ 入文件 \meta{idx0} 的主文件名加上 ".ilg" 后缀作为日志文件。
+ \index{.ilg@\verb+.ilg+}
+\end{description}
+
+\subsection{\zhm 独有的选项}
+\label{subsec:newoption}
+
+\begin{description}
+ \optitem[-enc~\meta{enc}] 设置输入输出文件的编码为 \meta{enc}。可选的编码包括
+ "UTF-8", "UTF-16", "GB18030", "GBK" 和 "Big5",不区分大小写。默认使用
+ UTF-8 编码。
+ \index{编码!UTF-8}
+ \index{编码!UTF-16}
+ \index{编码!GB18030}
+ \index{编码!GBK}
+ \index{编码!Big5}
+ \optitem[-senc~\meta{senc}] 设置读入格式文件的编码为 \meta{senc}。可选的编码与
+ "-enc" 选项相同。默认使用 UTF-8 编码。
+ \optitem[-strict] 严格区分不同嵌入命令的页码。默认情况下,在页码区间处理时,会
+ 将如果页码左区间的嵌入命令与右区间不匹配,会以左区间为准(部分 \LaTeX{} 文
+ 档会生成右区间命令缺失的索引项);而如果使用 "-strict" 选项,则要求左右区
+ 间的命令类型必须严格匹配。
+ \index{分组}\index{排序}
+ \optitem[-z~\meta{sort}] 设置中文分组与排序方式为 \meta{sort}。可选的中文分
+ 组排序方式包括 \sort{pinyin}/\sort{reading}, \sort{bihua}/\sort{stroke},
+ \sort{bushou}/\sort{radical}。默认值为 \sort{pinyin},即中文按拼音分组排
+ 序。有关分组与排序的详细说明见第~\ref{sec:sort} 节。
+\end{description}
+
+\subsection{未实现的选项}
+\label{subsec:unsupportedoption}
+
+\optindex{-g}
+\optindex{-l}
+\optindex{-p}
+\optindex{-L}
+\optindex{-T}
+\zhm 没有实现 \pkg{makeindex} 的 "-g", "-l", "-p", "-L", "-T" 选项。其中,选项
+"-p" 依赖对 \TeX{} 编译的日志文件的解析,可能在未来版本实现;另外几个语言相关
+的排序选项("-g" 德文,"-T" 泰文,"-L" 做系统 locale 选择,"-l" 有关西文单词排
+序)对中文索引意义较小,不在 \zhm 中实现。
+
+\index{选项|)}
+
+\section{索引项输入语法}
+\label{sec:idxsyntax}
+
+\zhm 输入索引项的语法与 \pkg{makeindex} 相同。下面以默认的格式输入设置(即在
+\LaTeX{} 中使用)为例对索引项输入语法进行说明。
+
+索引项文件是一个由多条索引项组成的文本文件,每行一条索引项,允许有空行,但索引
+项不得跨行。
+
+一个简单的索引项及其输出如
+\begin{idxexample}
+"\indexentry{简介}{15}" \\
+\sindex
+简介, 15
+\end{idxexample}
+其语法为:
+\begin{syntax}
+"\indexentry{"<条目>"}{"<页码>"}"
+\end{syntax}
+
+在 \LaTeX{} 中,"\indexentry" 项是在编译过程中自动生成的,实际生成上面例子的
+\LaTeX{} 代码并不包括页码问题,只是在文档 15 页的源文件处输入 "\index{简介}"
+即可得到这样的效果。关于 \pkg{makeindex} 在 \LaTeX{} 中的使用可以参考文档
+\cite{Lamport1987,Chen:1988:IPP}。
+
+\useangles
+\index<"{@\verb+"{+>
+\index<"}@\verb+"}+>
+\restoreangles
+"\indexentry" 是在索引输入文件中表示索引项的关键字。可以使用 \kw{keyword} 输入
+格式进行修改(\autoref{tab:oldinputstyle})。左右花括号是界定 \meta{条目} 与
+\meta{页码} 的标记,可以使用 \kw{arg_open}, \kw{arg_close} 输入格式修改
+(\autoref{tab:oldinputstyle})。
+
+\index{页码}
+\meta{页码} 是一个数字,可以使用阿拉伯数字、大小写罗马数字、大小写拉丁字母共 5
+种格式。
+
+\index{-@\verb+-+}
+此外,与 \pkg{makeindex} 类似 \cite{Rodgers1991},\zhm 还支持多级页码。可以使
+用 "-" 划分不同级别的复合页码。页码分隔符可由 \kw{page_compositor} 输入格式修
+改,见 \autoref{tab:oldinputstyle}。例如:
+\begin{idxexample}
+"\indexentry{方程}{5-ii-2}" \\
+"\indexentry{方程}{5-ii-1}" \\
+"\indexentry{方程}{3-v-9}"
+\sindex
+方程, 3-v-9, 5-ii-1, 5-ii-2
+\end{idxexample}
+
+\meta{条目} 是 \zhm 需要处理的正文内容。最简单的条目就是一个普通的词条串,但也
+可以有复杂的格式。
+
+\index{"@@\verb+"@+}
+如果对条目排序使用的串与用来输出条目的 \LaTeX{} 代码不一样,则可以把这两部分用
+符号 "@" 分开,前面是排序的键,后面是输出的值。例如:
+\begin{idxexample}
+"\indexentry{Gamma 射线@$\Gamma$ 射线}{2}" \\
+"\indexentry{粗体@\textbf{粗体}}{3}"
+\sindex
+\textbf{粗体}, 3 \\
+$\Gamma$ 射线, 2
+\end{idxexample}
+分隔符 "@" 可通过修改格式文件的 \kw{actual} 项配置
+(\autoref{tab:oldinputstyle})。
+
+\index{"!@\verb+"!+}
+索引项的条目可以分成至多三级,不同级别之间用符号 "!" 分开。例如
+\begin{idxexample}
+"\indexentry{方程!解}{1}" \\
+"\indexentry{方程!代数方程!线性方程}{2}" \\
+"\indexentry{方程!代数方程!二次方程}{3}"
+\sindex
+方程 \\
+\sitem 代数方程 \\
+\ssitem 二次方程, 3 \\
+\ssitem 线性方程, 2 \\
+\sitem 解, 1
+\end{idxexample}
+每一级别内部都可以分别指定排序的键与输出值,例如:
+\begin{idxexample}
+"\indexentry{射线!Gamma 射线@$\Gamma$ 射线}{8}" \\
+"\indexentry{射线!X 射线}{9}"
+\sindex
+射线 \\
+\sitem $\Gamma$ 射线, 8 \\
+\sitem X 射线, 9
+\end{idxexample}
+即分隔符 "!" 的优先级低于 "@"。分隔符 "!" 可通过修改格式文件的 \kw{level} 项配
+置(\autoref{tab:oldinputstyle})。
+
+\rawindex{"|@\verb+"|+|hyperpage}
+索引项条目中也可以在最后指定页码的输出格式,用分隔符 "|" 与前面分开(用
+\autoref{tab:oldinputstyle} 中的 \kw{encap} 项配置)。页码的输出格式由一个带单
+个页码参数的 \TeX{} 命令决定,在输入索引项时这一特殊命令的反斜线 "\" 和左右花
+括号被忽略,输出时会自动加上(用\autoref{tab:oldoutputstyle} 中的
+\kw{encap_prefix}, \kw{encap_infix}, \kw{encap_suffix} 项配置)。例如:
+\begin{idxexample}
+"\indexentry{字体|emph}{2}"
+\sindex
+字体, \emph{2}
+\end{idxexample}
+它输出的代码实际上是
+\begin{verbatim}
+字体, \emph{2}
+\end{verbatim}
+
+\rawindex{"|@\verb+"|+|hyperpage}
+\index{"(@\verb+"(+}
+\index{")@\verb+")+}
+除了指定页码输出格式的特殊命令,还可以指定页码范围,在分隔符 "|" 后、特殊命令
+名前(如果有的话),使用开定界符 "(" 和闭定界符 ")",分别表示页码范围的起始和
+结束。例如:
+\begin{idxexample}
+"\indexentry{方程|(}{5}" \\
+"\indexentry{方程|)}{9}" \\
+"\indexentry{函数!二次函数|(emph}{11}" \\
+"\indexentry{函数!二次函数|)emph}{15}"
+\sindex
+方程, 5--9 \\
+函数 \\
+\sitem 二次函数, \emph{11--15}
+\end{idxexample}
+页码范围的开闭定界符可由\autoref{tab:oldoutputstyle} 中的 \kw{range_open} 与
+\kw{range_close} 项配置。
+
+\index{""@\verb+""+}
+\index{转义符}
+由于在索引条目中,"{", "}", "(", ")", "!", "@", "|" 等多种符号都有特殊意义,因
+此引入引号 |"| 作为索引条目的转义符,引号及紧跟引号的字符都作为普通的单个后一
+字符看待,不作为索引条目的特殊语法符号。例如:
+\begin{idxexample}
+|\indexentry{Aha"!}{1}| \\
+\verb/\indexentry{绝对值 $"|x"|$}{2}/
+\sindex
+Aha!, 1 \\
+绝对值 $\vert x\vert$, 2
+\end{idxexample}
+引号字符 |"| 可以由\autoref{tab:oldinputstyle} 中的 \kw{quote} 项配置。
+
+\index{"\@\verb+"\+}
+\index{转义符}
+使用转义符有一个例外,就是在反斜线后的引号 |\"| 被解释为普通 \TeX{} 命令
+|\"|,这是因为 |\"| 经常被用于输入 G\"odel(|G\"odel|)这样的文字。注意这一例
+外会影响 "\|" 等符号组合的输入。例如:
+\begin{idxexample}
+|\indexentry{G\"odel}{5}| \\
+\verb/\indexentry{命令 \verb+"\"|+}{9}/
+\sindex
+G\"odel, 5 \\
+命令 \verb+\|+, 9
+\end{idxexample}
+转义符 "\" 可以由\autoref{tab:oldinputstyle} 中的 \kw{escape} 项配置。
+
+\section{格式文件}
+\label{sec:ist}
+
+\zhm 的格式文件与标准 \pkg{makeindex} 语法完全相同,内容也基本上相同,同时增加
+了少量控制中文分组输出的格式。可以在 \zhm 中使用标准 \pkg{makeindex} 的格式文
+件。
+
+格式文件指明了 ".idx" 输入文件和最终输入文件的格式。该文件在当前工作目录或在
+TEXMF 树中由 \pkg{kpathsea} 库查找。一个格式文件由一组 \meta{关键字} \meta{属
+性} 的列表组成。\meta{关键字} 分为输出和输出两类。\meta{关键字} \meta{属性} 对
+儿不要求以任何顺序出现。
+\index{%@\verb+%+}
+\index{注释}
+以字符 \verb"%" 开头的行是注释。
+\index{字符串}
+\index{""@\verb+""+}
+\index{`@\verb+`+}
+\meta{属性} 可以有不同的类型,字符串是以任意双引号 |"| 或反引号 |`| 界定的串,
+\index{字符}
+\index{'@\verb+'+}
+字符是以单引号 |'| 界定的单个字符,数字是一个整数。
+\index{转义符}
+\index{"\@\verb+"\+}
+其中,双引号和单引号界定的串和字符,可以使用反斜线 "\" 符号作为转义符,以得到
+特殊字符或引号本身;而反引号界定的串是 \zhm 特有的功能,它不使用转义符。格式文
+件中没有指定的项目会使用其默认值。
+
+\subsection{与 \pkg{makeindex} 兼容的格式}
+
+\autoref{tab:oldinputstyle} 与\autoref{tab:oldoutputstyle} 的格式是在
+\pkg{makeindex} 中有定义,同时也在 \zhm 中有支持的输入、输出格式。\zhm 的这部
+分格式选项与 \pkg{makeindex} 意义相同,完全兼容。
+
+\begin{longtabu*} to \linewidth{lll>{\RaggedRight}X}
+\caption{与 \pkg{makeindex} 兼容的输入格式}\label{tab:oldinputstyle} \\
+ \toprule
+ 关键字 & 类型 & 默认值 & 意义 \\
+ \midrule
+\endfirsthead
+ \toprule
+ 关键字 & 类型 & 默认值 & 意义 \\
+ \midrule
+\endhead
+ \bottomrule
+\endfoot
+ \kw{keyword} & 字符串 & |"\\indexentry"| & 索引关键字 \\
+ \kw{arg_open} & 字符 & |'{'| & 参数的开定界符 \\
+ \kw{arg_close} & 字符 & |'}'| & 参数的闭定界符 \\
+ \kw{range_open} & 字符 & |'('| & 页码范围的开定界符 \\
+ \kw{range_close} & 字符 & |')'| & 页码范围的闭定界符 \\
+ \kw{level} & 字符 & |'!'| & 索引项层次分隔符 \\
+ \kw{actual} & 字符 & |'@'| & (区别于排序项的)实际输出项标志符 \\
+ \kw{encap} & 字符 & "'|'" & 页码和特殊命令指示符 \\
+ \kw{quote} & 字符 & |'"'| & 引号(转义符) \\
+ \kw{escape} & 字符 & |'\\'| & 转义 |quote| 的符号,在它后面的引号不作转义符
+解释 \\
+ \kw{page_compositor} & 字符串 & |"-"| & 复合页码分隔符 \\
+\end{longtabu*}
+\useangles\index<"{@\verb+"{+>\restoreangles
+\useangles\index<"}@\verb+"}+>\restoreangles
+\index{"(@\verb+"(+}
+\index{")@\verb+")+}
+\index{"!@\verb+"!+}
+\index{"@@\verb+"@+}
+\rawindex{"|@\verb+"|+|hyperpage}
+\index{""@\verb+""+}
+\index{"\@\verb+"\+}
+\index{-@\verb+-+}
+
+\begin{longtabu*} to \linewidth{lll>{\RaggedRight}X}
+\caption{与 \pkg{makeindex} 兼容的输出格式}\label{tab:oldoutputstyle} \\
+ \toprule
+ 关键字 & 类型 & 默认值 & 意义 \\
+ \midrule
+\endfirsthead
+\toprule
+关键字 & 类型 & 默认值 & 意义 \\
+\midrule
+\endhead
+\bottomrule
+\endfoot
+\kw{preamble} & 字符串 & |"\\begin{theindex}\n"| & 索引导言代码\\
+\kw{postamble} & 字符串 & |"\n\n\\end{theindex}\n"| & 索引末尾代码\\
+\kw{group_skip} & 字符串 & |"\n\n \\indexspace\n"| & 组间垂直间距\\
+\kw{headings_flag} & 数字 & |0| & 控制显示分组名标题的旗标\\
+\kw{heading_prefix} & 字符串 & |""| & 分组名标题的前缀\\
+\kw{heading_suffix} & 字符串 & |""| & 分组名标题的后缀\\
+\kw{symhead_positive} & 字符串 & |"Symbols"| & 当旗标 |headings_flag| 为正数时,符号的标题\\
+\kw{symhead_negative} & 字符串 & |"symbols"| & 当旗标 |headings_flag| 为负数时,符号的标题\\
+\kw{numhead_positive} & 字符串 & |"Numbers"| & 当旗标 |headings_flag| 为正数时,数字的标题\\
+\kw{numhead_negative} & 字符串 & |"numbers"| & 当旗标 |headings_flag| 为负数时,数字的标题\\
+\kw{item_0} & 字符串 & |"\n \\item "| & 第 0 级条目间分隔\\
+\kw{item_1} & 字符串 & |"\n \\subitem "| & 第 1 级条目间分隔\\
+\kw{item_2} & 字符串 & |"\n \\subsubitem "| & 第 2 级条目间分隔\\
+\kw{item_01} & 字符串 & |"\n \\subitem "| & 第 0/1 级条目间分隔\\
+\kw{item_x1} & 字符串 & |"\n \\subitem "| & 第 0/1 级条目间分隔,其中第 0 级无页码\\
+\kw{item_12} & 字符串 & |"\n \\subsubitem "| & 第 1/2 级条目间分隔\\
+\kw{item_x2} & 字符串 & |"\n \\subsubitem "| & 第 1/2 级条目间分隔,其中第 1 级无页码\\
+\kw{delim_0} & 字符串 & |", "| & 第 0 级条目与页码分隔\\
+\kw{delim_1} & 字符串 & |", "| & 第 1 级条目与页码分隔\\
+\kw{delim_2} & 字符串 & |", "| & 第 2 级条目与页码分隔\\
+\kw{delim_n} & 字符串 & |", "| & 多个页码的分隔\\
+\kw{delim_r} & 字符串 & |"--"| & 页码范围符号\\
+\kw{delim_t} & 字符串 & |""| & 将插入到在页码列表末尾。如果页码列表为空,此项无
+效果。 \\
+\kw{encap_prefix} & 字符串 & |"\\"| & 页码特殊指令前缀\\
+\kw{encap_infix} & 字符串 & |"{"| & 页码特殊指令中缀\\
+\kw{encap_suffix} & 字符串 & |"}"| & 页码特殊指令后缀\\
+\kw{page_precedence} & 字符串 & |"rnaRA"| & 不同类型页码的次序,默认值表示小写
+ 罗马、阿拉伯数字、小写字母、大写罗马、大写字母\\
+\kw{suffix_2p} & 字符串 & |""| & 在 2 页的页码范围中代替 |delim_r| 和第二个页码\\
+\kw{suffix_3p} & 字符串 & |""| & 在 3 页的页码范围中代替 |delim_r| 和后面的页码\\
+\kw{suffix_mp} & 字符串 & |""| & 在更多页的页码范围中代替 |delim_r| 和后面的页码\\
+\end{longtabu*}
+
+\subsection{\zhm 特有的格式}
+
+\zhm 定义了新的输入格式(\autoref{tab:newinputstyle}),以支持索引输入的行
+注释。
+
+\begin{table}[htbp]
+\caption{\zhm 特有的输入格式}\label{tab:newinputstyle}
+\begin{tabu*} to \linewidth{lll>{\RaggedRight}X}
+\toprule
+关键字 & 类型 & 默认值 & 意义 \\
+\midrule
+ \kw{comment} & 字符 & \texttt{'\textpercent'} & 行注释的开始符 \\
+\bottomrule
+\end{tabu*}
+\index{%@\verb+%+}
+\index{注释}
+\end{table}
+
+\zhm 定义了一些新的输出格式(\autoref{tab:newoutputstyle}),用来控制按笔画数或
+部首分组时,分组名的输出格式。
+
+\begin{table}[htbp]
+\caption{\zhm 特有的输出格式}\label{tab:newoutputstyle}
+\begin{tabu*} to \linewidth{lll>{\RaggedRight}X}
+\toprule
+关键字 & 类型 & 默认值 & 意义 \\
+\midrule
+ \kw{stroke_prefix} & 字符串 & |""| & 笔画数前缀 \\
+ \kw{stroke_suffix} & 字符串 & |" 画"| & 笔画数后缀 \\
+ \kw{radical_prefix} & 字符串 & |""| & 部首前缀 \\
+ \kw{radical_suffix} & 字符串 & |"部"| & 部首后缀 \\
+ \kw{radical_simplified_flag} & 数字 & 1 & 是否输出简化部首的标志 \\
+ \kw{radical_simplified_prefix} & 字符串 & |"("| & 简化部首前缀 \\
+ \kw{radical_simplified_suffix} & 字符串 & |")"| & 简化部首后缀 \\
+\bottomrule
+\end{tabu*}
+\end{table}
+
+\subsection{未实现的 \pkg{makeindex} 格式}
+
+\autoref{tab:unsupportedoutputstyle} 中给出的是在标准的 \pkg{makeindex} 中定
+义,但在 \zhm 中没有实现对应功能的格式。格式文件中如果出现这些格式,\zhm 将会
+忽略它们。
+
+\begin{table}[htbp]
+\caption{未实现的输出格式}\label{tab:unsupportedoutputstyle}
+\begin{tabu*} to \linewidth{lll>{\RaggedRight}X}
+\toprule
+关键字 & 类型 & 默认值 & 意义 \\
+\midrule
+\kw{setpage_prefix} & 字符串 & |"\n \\setcounter{page}{"| & 页码设置前缀\\
+\kw{setpage_suffix} & 字符串 & |"}\n"| & 页码设置后缀\\
+\kw{line_max} & 数字 & |72| & 最大行长度,超出长度会自动折行\\
+\kw{indent_space} & 字符串 & |"\t\t"| & 自动折行的缩进\\
+\kw{indent_length} & 数字 & |16| & |indent_space| 的长度\\
+\bottomrule
+\end{tabu*}
+\end{table}
+
+\subsection{格式文件示例}
+
+合法的 \pkg{makeindex} 格式文件都是合法的 \zhm 格式文件。\LaTeXe{} 的
+\pkg{doc} 包附带的 \path{gind.ist} 和 \path{gglo.ist} 就是两个实际的例子。此
+外,\pkg{makeindex} 手册页 \cite{Rodgers1991} 也给出了几个有用的例子。
+
+下面是本文档使用的格式文件,注意其中反引号格式的串是 \zhm 特有的:
+\VerbatimInput[numbers=left]{zhmakeindex.mst}
+
+
+\section{排序细节}
+\label{sec:sort}
+
+\subsection{索引项分组}
+
+\optindex{-z}
+\zhm 与 \pkg{makeindex} 类似,主要是按第一级索引项的排序项的首个字符分组的。对
+最普通的场景,西文是按单词的首字母分组,中文则根据 "-z" 选项
+(\ref{subsec:newoption}~节)的不同,选择对应的分组,数字和其他符号单独分组。
+
+\zhm 的前 28 个分组是固定的,分别是符号、数字,以及 A--Z 的 26 个拉丁字母。按
+笔画排序时,后面是按总笔画数分组的汉字,共 64 组;按部首笔画排序时,后面是按康
+熙字典部首分组的汉字,共 214 组。详细情况见\autoref{tab:group}。
+
+\begin{table}[htbp]
+\caption{\zhm 支持的分组方式}\label{tab:group}
+\begin{tabu} to \linewidth{lll@{\qquad}>{\RaggedRight}X}
+\toprule
+"-z" 选项 & 别名 & 前 28 个分组 & 后面的分组 \\
+\midrule
+\sort{pinyin} & \sort{reading} & 符号、数字、A, \ldots, Z & (无)\\
+\sort{bihua} & \sort{stroke} & 符号、数字、A, \ldots, Z & 1 画、2 画、……、64 画(共 64 组) \\
+\sort{bushou} & \sort{radical} & 符号、数字、A, \ldots, Z & 一部、丨部、……、龠部(共 214 组) \\
+\bottomrule
+\end{tabu}
+\end{table}
+
+\zhm 主要是面向中文排版的索引处理,因此对于西文条目,只对没有重音等符号的拉丁
+字母能进行正确的分组,对带重音符号的拉丁字母(如 é, ç)、非拉丁字母(如 Σ, Δ,
+Ж, Я 等)等则会一律按符号分组。
+
+\index{数字}
+如果索引项的第一级排序项全部由数字组成,则该项会被分入数字分组;但如果条目的首
+个字符是数字,后面还有其他字符,则条目会被计入符号分组。除了阿拉伯数字,\zhm
+还将其他 Unicode 数字符号(如罗马数字“{\libertine Ⅳ}”、带圈数字“{\libertine ⑧}”)也当作数字处理,但汉字
+数码“〇”被看作汉字处理。
+\index{〇}
+
+当索引项第一级排序项的首个字符不是拉丁字母或汉字,排序项本身也不是纯数字时,则
+此索引项就会计入符号分组。
+
+当输出格式变量 \kw{headings_flag} 非零时(参见\autoref{tab:oldoutputstyle}),
+将输出分组名称。\kw{headings_flag} 是正数时,以大写字母显示分组名
+称;\kw{headings_flag} 是负数时,以小写字母显示分组名称。
+
+当使用汉字特有的分组时,分组名称可以使用格式文件定制(参见%
+\autoref{tab:newoutputstyle})。按笔画分组时,分组名为
+\begin{syntax}
+\kwindex{stroke_prefix}
+\kwindex{stroke_suffix}
+ <stroke\_prefix><笔画数><stroke\_suffix>
+\end{syntax}
+按康熙字典部首分组时,如果变量 \kw{radical_simplified_flag} 非零(默认情况),
+则分组名由原康熙字典部首与简化字部首组合而成:
+\begin{syntax}
+\kwindex{radical_prefix}
+\kwindex{radical_suffix}
+\kwindex{radical_simplified_prefix}
+\kwindex{radical_simplified_suffix}
+ <radical\_prefix><部首><radical\_suffix>\\
+ \hspace*{2em}<radical\_simplified\_prefix><简化字部首><radical\_simplified\_suffix>
+\end{syntax}
+如果变量 \kw{radical_simplified_flag} 是零,则分组名没有简化字部首:
+\begin{syntax}
+\kwindex{radical_prefix}
+\kwindex{radical_suffix}
+ <radical\_prefix><部首><radical\_suffix>
+\end{syntax}
+
+\subsection{索引项排序}
+
+大体上,\zhm 逐字符按字典序对索引项的排序项进行排序,汉字与其他 Unicode 字符一
+样,按单个字符比较。排序时使用的字符串比较有一些特殊规则:
+\begin{itemize}
+ \item 如果字符串只包含阿拉伯数字,则首先按数字大小比较,数字相等时再按字典序
+ 比较。
+ \item 以符号开头的字符串总是先于排在以数字开头的串(即使符号的 Unicode 码在
+ 数字之后),而这又先于纯数字的排序项和以字母开头的串。
+ \item 在比较两个字符串时,\zhm 首先忽略字母大小写进行比较,如果此时结果相
+ 等,再按区分大小写进行比较,将大写字母排在小写字母之前。
+\end{itemize}
+
+\optindex{-l}
+\pkg{makeindex} 有一个 "-l" 选项忽略条目中的空格,按所有非空白符比较所有条目
+(\ref{subsec:unsupportedoption}~节)。\zhm 未提供此功能。
+
+\optindex{-z}
+按 "-z" 选项(\ref{subsec:newoption}~节)的不同,汉字可以使用不同的排序方式,
+如\autoref{tab:sort} 所示。
+\begin{table}[htbp]
+\caption{\zhm 支持的中文排序方式}\label{tab:sort}
+\begin{tabu} to \linewidth{ll>{\RaggedRight}X}
+\toprule
+"-z" 选项 & 别名 & 意义 \\
+\midrule
+\sort{pinyin} & \sort{reading} & 汉字按常用读音的拼音排序。 \\
+\sort{bihua} & \sort{stroke} & 汉字按笔画数和笔顺排序。 \\
+\sort{bushou} & \sort{radical} & 汉字按康熙字典部首和除部首笔画数排序。 \\
+\bottomrule
+\end{tabu}
+\end{table}
+
+使用读音排序时,没有读音数据的字符(包括生僻字)一律排在有读音的字符之前,汉字
+按其最常用读音比较,读音相同汉字的按 Unicode 编码排序。使用笔画数和笔顺排序
+时,笔画数小的排在前面,笔画数相同的,按横、竖、撇、点(捺)、折的顺序逐笔画比
+较,仍然相同的按 Unicode 编码排序;生僻汉字没有笔顺信息的,排在同笔画数有笔顺
+的字后面。使用部首和除部首笔画数排序时,部首按康熙字典 214 部首顺序排列,部首
+和笔画数相同的按 Unicode 编码排序。
+
+\subsection{页码排序与合并}
+\label{subsec:pagemerge}
+
+内容完全相同而页码不同的索引项,会在排序时合并为一项。同一索引项的所有页码会按
+前后次序排序、去重,并按要求合并为页码区间。
+
+\index{数字}
+\index{页码}
+\zhm 能识别不同类型的页码格式,包括阿拉伯数字(1, 2, 3, \ldots)、大小写罗马数
+字(I, II, III, \ldots)、大小写拉丁字母(a, b, c, \ldots)。不同类型的页码按
+照 \kw{page_precedence} 变量的设置(\autoref{tab:oldoutputstyle})区分前后次序。
+默认情况下,不同类型的页码次序是 "rnaRA",即小写罗马数字的页码排在最前,然后依
+次是阿拉伯数字、小写拉丁字母、大写罗马数字、大写拉丁字母的页码。
+
+目前,页码的类型判别比较粗糙,仅以页码的第一个字符判断类型。当页码以字母 "i",
+"v", "x", "l", "c", "d", "m" 起始时,即被识别为罗马数字,其他字母被识别为拉丁
+字母页码。
+
+\zhm 支持页码区间,在索引项中显式指定区间,如对输入
+\begin{verbatim}
+\indexentry{foo|(}{5}
+\indexentry{foo|)}{10}
+\end{verbatim}
+则 "foo" 项会输出页码 5--10。连续的区间、区间内的零散页码会被合并为一个大的区
+间,如对输入
+\begin{verbatim}
+\indexentry{foo|(}{5}
+\indexentry{foo}{6}
+\indexentry{foo|)}{10}
+\indexentry{foo|(}{11}
+\indexentry{foo|)}{13}
+\end{verbatim}
+则 "foo" 项会输出页码 5--13。
+
+\optindex{-r}
+如果没有使用 "-r" 选项(\ref{subsec:oldoption}~节),零散的页码也会与区间一起
+合并,3 页或以上连续的页码也会被合并为区间。例如输入
+\begin{verbatim}
+\indexentry{foo}{i}
+\indexentry{foo}{ii}
+\indexentry{foo}{iii}
+\indexentry{foo|(}{5}
+\indexentry{foo|)}{7}
+\indexentry{foo}{8}
+\end{verbatim}
+则 "foo" 项会输出页码 i--iii, 5--8。使用 "-r" 选项将禁止这种自动合并。
+
+在排序合并页码时,\zhm 会区分不同数字类型的页码;如果页码还有特殊命令修饰,则
+还会区分不同的修饰命令。例如输入
+\begin{verbatim}
+\indexentry{foo}{1}
+\indexentry{foo|textit}{5}
+\indexentry{foo}{3}
+\indexentry{foo|textit}{7}
+\end{verbatim}
+则 "foo" 项会分别以不同格式输出页码 1, 3, \textit{5}, \textit{7}。
+
+在页码区间中如果出现不同类型的特殊命令修饰,则按不同的页码格式分别输出。但是,
+为了适应部分 \LaTeX{} 代码不精确的页码输出,如果页码区间头与页码区间尾使用的特
+殊命令不同,仍把它们看做相同的格式,按页码区间头的格式输出。例如输入
+\begin{verbatim}
+\indexentry{foo|(textit}{1}
+\indexentry{foo|textbf}{5}
+\indexentry{foo|textit}{2}
+\indexentry{foo|)}{4}
+\end{verbatim}
+则 "foo" 项会把页码 1, 2, 4 都归入区间 1--4,输出页码 \textit{1--4},
+\textbf{5}。这也是 \pkg{makeindex} 默认效果。如果使用了 "-strict" 选项
+(\ref{subsec:newoption}~节),则不再允许页码区间有不同的特殊命令修饰,而要求
+格式严格匹配。"-strict" 选项适合用于不同格式页码区间相互交错的复杂的页码格式,
+例如输入
+\begin{verbatim}
+\indexentry{foo|(textit}{1}
+\indexentry{foo|(textbf}{5}
+\indexentry{foo|)textit}{8}
+\indexentry{foo|)textbf}{9}
+\end{verbatim}
+则 "foo" 项会输出页码 \textbf{5--9}, \textit{1--8}。但如果不使用 "-strict" 选
+项,或者使用 \pkg{makeindex},则无法正确识别这类页码区间。
+
+\section{与 \pkg{makeindex} 的比较}
+
+\begin{itemize}
+ \gooditem \zhm 支持 Unicode,所有字符按 Unicode 字符而非字节流处理。同时支持
+ 输入输出文件、格式文件使用不同的中文编码(\ref{subsec:newoption}~节)。
+
+ \gooditem \zhm 支持中文特有的分组与排序方式(第~\ref{sec:sort} 节)。
+
+ \gooditem \zhm 与 \pkg{makeindex} 的页码合并算法不同
+ (\ref{subsec:pagemerge}~节),在页码区间有嵌套和交错,前后分界的格式不统一
+ 时,\zhm 与 \pkg{makeindex} 可能会产生不完全相同的效果。如果使用 "-strict"
+ 选项,\zhm 会使用更复杂的页码区间合并算法,能正确处理不同格式多层嵌套和互相
+ 交错的页码区间,也能识别输入不正确的前后区间分界,而 \pkg{makeindex} 将给出
+ 错误的结果。
+
+ \gooditem \zhm 的格式文件支持使用反引号界定的串,在其中禁用转义符
+ (第~\ref{sec:ist} 节)。
+
+ \gooditem \zhm 对输入的索引文件支持单个注释符开始的行注释。
+
+ \baditem \zhm 暂不支持 "-p" 选项自动获取 \TeX{} 编译日志文件中的页码,然后输出对
+ 应的页码设置语句(\ref{subsec:unsupportedoption}~节、
+ \autoref{tab:unsupportedoutputstyle})。
+
+ \baditem \zhm 不支持 "-g", "-l", "-L", "-T" 等与中文索引无关的语言选项。
+
+ \baditem \zhm 不支持输出折行(\autoref{tab:unsupportedoutputstyle})。
+\end{itemize}
+
+\section{已知问题}
+
+\index{多音字}
+汉字按拼音分组排序时,多音字可能会被分到错误的分组或排在错误的位置。例如,“长
+度”的“长”有 zhǎng 与 cháng 两个常用读音,由于读音 zhǎng 的使用频率比
+cháng 略高一点,“长”字就会按 zhǎng 的读音分到 Z 组,排序也较为靠后。目前
+\zhm 缺少一种通用的方式控制多音字按拼音分组与排序,只能暂时使用同音字处理此问
+题。另外,部分汉字因为旧字形等问题,笔画数和笔顺也可能有多种选择,造成分组的分
+歧。
+
+\section{版权与许可}
+\index{版权}\index{许可}
+
+版权所有:2014, 2015, 2016, 2018 年,刘海洋 \email{leoliu.pku@gmail.com}
+
+\index{LPPL}
+本作品可在《the \LaTeX{} Project Public License》1.3 或更高版本的条件下发布与
+修改。最新版本的 LPPL 许可证可以在
+\begin{quote}
+ \url{http://www.latex-project.org/lppl.txt}
+\end{quote}
+下载;该许可证同时也包含在所有最新的 \LaTeX{} 发行版中。
+
+本作品目前处于 LPPL 维护状态“maintained”。
+
+当前维护者是刘海洋。
+
+\index{源文件}
+本作品包括 \zhm 的程序及文档,由如下源文件:
+\begin{verbatim}
+build-dist.cmd
+input.go
+install.cmd
+main.go
+MENIFEST
+numberedreader.go
+output.go
+pagenumber.go
+radical_collator.go
+reading_collator.go
+README
+sorter.go
+stroke_collator.go
+style.go
+style_test.go
+VERSION
+doc/make.cmd
+doc/zhmakeindex.bib
+doc/zhmakeindex.mst
+doc/zhmakeindex.tex
+examples/compositepage.idx
+examples/gb2312.idx
+examples/mixedpage.idx
+examples/numbers.idx
+examples/rangeencap.idx
+examples/suffix.ist
+examples/symorder.idx
+examples/zh.ist
+kpathsea/dynamic_other.go
+kpathsea/dynamic_windows_386.go
+kpathsea/kpathsea.go
+CJK/make-table.cmd
+CJK/maketables.go
+CJK/radicalstrokes.go
+CJK/strokes.go
+CJK/readings.go
+\end{verbatim}
+以及编译源文件得到的二进制文件 \path{zhmakeindex.exe} 或 \path{zhmakeindex}、
+PDF 文档 \path{zhmakeindex.pdf} 组成。
+
+\index{Unicode}
+大部分汉字数据来自 Unicode 项目(\url{http://www.unicode.org/})。
+
+\index{海峰五笔}
+部分字形数据来自海峰五笔项目(\url{http://okuc.net/sunwb/}):
+\begin{verbatim}
+maketables/sunwb_strokeorder.txt
+\end{verbatim}
+
+\bibliography{zhmakeindex}
+
+\printindex
+
+\end{document}
+
+vim:tw=78
diff --git a/indexing/zhmakeindex/examples/compositepage.idx b/indexing/zhmakeindex/examples/compositepage.idx
new file mode 100644
index 0000000000..b3b91a9750
--- /dev/null
+++ b/indexing/zhmakeindex/examples/compositepage.idx
@@ -0,0 +1,6 @@
+\indexentry{foo}{5-ii-1}
+\indexentry{foo}{5-ii-2}
+\indexentry{foo}{5-ii-1}
+\indexentry{foo}{5-ii-3}
+\indexentry{foo}{5-iii-1}
+\indexentry{foo}{4-iv-1}
diff --git a/indexing/zhmakeindex/examples/gb2312.idx b/indexing/zhmakeindex/examples/gb2312.idx
new file mode 100644
index 0000000000..9bafd50b47
--- /dev/null
+++ b/indexing/zhmakeindex/examples/gb2312.idx
@@ -0,0 +1,6763 @@
+\indexentry{啊}{1}
+\indexentry{阿}{2}
+\indexentry{埃}{3}
+\indexentry{挨}{4}
+\indexentry{哎}{5}
+\indexentry{唉}{6}
+\indexentry{哀}{7}
+\indexentry{皑}{8}
+\indexentry{癌}{9}
+\indexentry{蔼}{10}
+\indexentry{矮}{11}
+\indexentry{艾}{12}
+\indexentry{碍}{13}
+\indexentry{爱}{14}
+\indexentry{隘}{15}
+\indexentry{鞍}{16}
+\indexentry{氨}{17}
+\indexentry{安}{18}
+\indexentry{俺}{19}
+\indexentry{按}{20}
+\indexentry{暗}{21}
+\indexentry{岸}{22}
+\indexentry{胺}{23}
+\indexentry{案}{24}
+\indexentry{肮}{25}
+\indexentry{昂}{26}
+\indexentry{盎}{27}
+\indexentry{凹}{28}
+\indexentry{敖}{29}
+\indexentry{熬}{30}
+\indexentry{翱}{31}
+\indexentry{袄}{32}
+\indexentry{傲}{33}
+\indexentry{奥}{34}
+\indexentry{懊}{35}
+\indexentry{澳}{36}
+\indexentry{芭}{37}
+\indexentry{捌}{38}
+\indexentry{扒}{39}
+\indexentry{叭}{40}
+\indexentry{吧}{41}
+\indexentry{笆}{42}
+\indexentry{八}{43}
+\indexentry{疤}{44}
+\indexentry{巴}{45}
+\indexentry{拔}{46}
+\indexentry{跋}{47}
+\indexentry{靶}{48}
+\indexentry{把}{49}
+\indexentry{耙}{50}
+\indexentry{坝}{51}
+\indexentry{霸}{52}
+\indexentry{罢}{53}
+\indexentry{爸}{54}
+\indexentry{白}{55}
+\indexentry{柏}{56}
+\indexentry{百}{57}
+\indexentry{摆}{58}
+\indexentry{佰}{59}
+\indexentry{败}{60}
+\indexentry{拜}{61}
+\indexentry{稗}{62}
+\indexentry{斑}{63}
+\indexentry{班}{64}
+\indexentry{搬}{65}
+\indexentry{扳}{66}
+\indexentry{般}{67}
+\indexentry{颁}{68}
+\indexentry{板}{69}
+\indexentry{版}{70}
+\indexentry{扮}{71}
+\indexentry{拌}{72}
+\indexentry{伴}{73}
+\indexentry{瓣}{74}
+\indexentry{半}{75}
+\indexentry{办}{76}
+\indexentry{绊}{77}
+\indexentry{邦}{78}
+\indexentry{帮}{79}
+\indexentry{梆}{80}
+\indexentry{榜}{81}
+\indexentry{膀}{82}
+\indexentry{绑}{83}
+\indexentry{棒}{84}
+\indexentry{磅}{85}
+\indexentry{蚌}{86}
+\indexentry{镑}{87}
+\indexentry{傍}{88}
+\indexentry{谤}{89}
+\indexentry{苞}{90}
+\indexentry{胞}{91}
+\indexentry{包}{92}
+\indexentry{褒}{93}
+\indexentry{剥}{94}
+\indexentry{薄}{95}
+\indexentry{雹}{96}
+\indexentry{保}{97}
+\indexentry{堡}{98}
+\indexentry{饱}{99}
+\indexentry{宝}{100}
+\indexentry{抱}{101}
+\indexentry{报}{102}
+\indexentry{暴}{103}
+\indexentry{豹}{104}
+\indexentry{鲍}{105}
+\indexentry{爆}{106}
+\indexentry{杯}{107}
+\indexentry{碑}{108}
+\indexentry{悲}{109}
+\indexentry{卑}{110}
+\indexentry{北}{111}
+\indexentry{辈}{112}
+\indexentry{背}{113}
+\indexentry{贝}{114}
+\indexentry{钡}{115}
+\indexentry{倍}{116}
+\indexentry{狈}{117}
+\indexentry{备}{118}
+\indexentry{惫}{119}
+\indexentry{焙}{120}
+\indexentry{被}{121}
+\indexentry{奔}{122}
+\indexentry{苯}{123}
+\indexentry{本}{124}
+\indexentry{笨}{125}
+\indexentry{崩}{126}
+\indexentry{绷}{127}
+\indexentry{甭}{128}
+\indexentry{泵}{129}
+\indexentry{蹦}{130}
+\indexentry{迸}{131}
+\indexentry{逼}{132}
+\indexentry{鼻}{133}
+\indexentry{比}{134}
+\indexentry{鄙}{135}
+\indexentry{笔}{136}
+\indexentry{彼}{137}
+\indexentry{碧}{138}
+\indexentry{蓖}{139}
+\indexentry{蔽}{140}
+\indexentry{毕}{141}
+\indexentry{毙}{142}
+\indexentry{毖}{143}
+\indexentry{币}{144}
+\indexentry{庇}{145}
+\indexentry{痹}{146}
+\indexentry{闭}{147}
+\indexentry{敝}{148}
+\indexentry{弊}{149}
+\indexentry{必}{150}
+\indexentry{辟}{151}
+\indexentry{壁}{152}
+\indexentry{臂}{153}
+\indexentry{避}{154}
+\indexentry{陛}{155}
+\indexentry{鞭}{156}
+\indexentry{边}{157}
+\indexentry{编}{158}
+\indexentry{贬}{159}
+\indexentry{扁}{160}
+\indexentry{便}{161}
+\indexentry{变}{162}
+\indexentry{卞}{163}
+\indexentry{辨}{164}
+\indexentry{辩}{165}
+\indexentry{辫}{166}
+\indexentry{遍}{167}
+\indexentry{标}{168}
+\indexentry{彪}{169}
+\indexentry{膘}{170}
+\indexentry{表}{171}
+\indexentry{鳖}{172}
+\indexentry{憋}{173}
+\indexentry{别}{174}
+\indexentry{瘪}{175}
+\indexentry{彬}{176}
+\indexentry{斌}{177}
+\indexentry{濒}{178}
+\indexentry{滨}{179}
+\indexentry{宾}{180}
+\indexentry{摈}{181}
+\indexentry{兵}{182}
+\indexentry{冰}{183}
+\indexentry{柄}{184}
+\indexentry{丙}{185}
+\indexentry{秉}{186}
+\indexentry{饼}{187}
+\indexentry{炳}{188}
+\indexentry{病}{189}
+\indexentry{并}{190}
+\indexentry{玻}{191}
+\indexentry{菠}{192}
+\indexentry{播}{193}
+\indexentry{拨}{194}
+\indexentry{钵}{195}
+\indexentry{波}{196}
+\indexentry{博}{197}
+\indexentry{勃}{198}
+\indexentry{搏}{199}
+\indexentry{铂}{200}
+\indexentry{箔}{201}
+\indexentry{伯}{202}
+\indexentry{帛}{203}
+\indexentry{舶}{204}
+\indexentry{脖}{205}
+\indexentry{膊}{206}
+\indexentry{渤}{207}
+\indexentry{泊}{208}
+\indexentry{驳}{209}
+\indexentry{捕}{210}
+\indexentry{卜}{211}
+\indexentry{哺}{212}
+\indexentry{补}{213}
+\indexentry{埠}{214}
+\indexentry{不}{215}
+\indexentry{布}{216}
+\indexentry{步}{217}
+\indexentry{簿}{218}
+\indexentry{部}{219}
+\indexentry{怖}{220}
+\indexentry{擦}{221}
+\indexentry{猜}{222}
+\indexentry{裁}{223}
+\indexentry{材}{224}
+\indexentry{才}{225}
+\indexentry{财}{226}
+\indexentry{睬}{227}
+\indexentry{踩}{228}
+\indexentry{采}{229}
+\indexentry{彩}{230}
+\indexentry{菜}{231}
+\indexentry{蔡}{232}
+\indexentry{餐}{233}
+\indexentry{参}{234}
+\indexentry{蚕}{235}
+\indexentry{残}{236}
+\indexentry{惭}{237}
+\indexentry{惨}{238}
+\indexentry{灿}{239}
+\indexentry{苍}{240}
+\indexentry{舱}{241}
+\indexentry{仓}{242}
+\indexentry{沧}{243}
+\indexentry{藏}{244}
+\indexentry{操}{245}
+\indexentry{糙}{246}
+\indexentry{槽}{247}
+\indexentry{曹}{248}
+\indexentry{草}{249}
+\indexentry{厕}{250}
+\indexentry{策}{251}
+\indexentry{侧}{252}
+\indexentry{册}{253}
+\indexentry{测}{254}
+\indexentry{层}{255}
+\indexentry{蹭}{256}
+\indexentry{插}{257}
+\indexentry{叉}{258}
+\indexentry{茬}{259}
+\indexentry{茶}{260}
+\indexentry{查}{261}
+\indexentry{碴}{262}
+\indexentry{搽}{263}
+\indexentry{察}{264}
+\indexentry{岔}{265}
+\indexentry{差}{266}
+\indexentry{诧}{267}
+\indexentry{拆}{268}
+\indexentry{柴}{269}
+\indexentry{豺}{270}
+\indexentry{搀}{271}
+\indexentry{掺}{272}
+\indexentry{蝉}{273}
+\indexentry{馋}{274}
+\indexentry{谗}{275}
+\indexentry{缠}{276}
+\indexentry{铲}{277}
+\indexentry{产}{278}
+\indexentry{阐}{279}
+\indexentry{颤}{280}
+\indexentry{昌}{281}
+\indexentry{猖}{282}
+\indexentry{场}{283}
+\indexentry{尝}{284}
+\indexentry{常}{285}
+\indexentry{长}{286}
+\indexentry{偿}{287}
+\indexentry{肠}{288}
+\indexentry{厂}{289}
+\indexentry{敞}{290}
+\indexentry{畅}{291}
+\indexentry{唱}{292}
+\indexentry{倡}{293}
+\indexentry{超}{294}
+\indexentry{抄}{295}
+\indexentry{钞}{296}
+\indexentry{朝}{297}
+\indexentry{嘲}{298}
+\indexentry{潮}{299}
+\indexentry{巢}{300}
+\indexentry{吵}{301}
+\indexentry{炒}{302}
+\indexentry{车}{303}
+\indexentry{扯}{304}
+\indexentry{撤}{305}
+\indexentry{掣}{306}
+\indexentry{彻}{307}
+\indexentry{澈}{308}
+\indexentry{郴}{309}
+\indexentry{臣}{310}
+\indexentry{辰}{311}
+\indexentry{尘}{312}
+\indexentry{晨}{313}
+\indexentry{忱}{314}
+\indexentry{沉}{315}
+\indexentry{陈}{316}
+\indexentry{趁}{317}
+\indexentry{衬}{318}
+\indexentry{撑}{319}
+\indexentry{称}{320}
+\indexentry{城}{321}
+\indexentry{橙}{322}
+\indexentry{成}{323}
+\indexentry{呈}{324}
+\indexentry{乘}{325}
+\indexentry{程}{326}
+\indexentry{惩}{327}
+\indexentry{澄}{328}
+\indexentry{诚}{329}
+\indexentry{承}{330}
+\indexentry{逞}{331}
+\indexentry{骋}{332}
+\indexentry{秤}{333}
+\indexentry{吃}{334}
+\indexentry{痴}{335}
+\indexentry{持}{336}
+\indexentry{匙}{337}
+\indexentry{池}{338}
+\indexentry{迟}{339}
+\indexentry{弛}{340}
+\indexentry{驰}{341}
+\indexentry{耻}{342}
+\indexentry{齿}{343}
+\indexentry{侈}{344}
+\indexentry{尺}{345}
+\indexentry{赤}{346}
+\indexentry{翅}{347}
+\indexentry{斥}{348}
+\indexentry{炽}{349}
+\indexentry{充}{350}
+\indexentry{冲}{351}
+\indexentry{虫}{352}
+\indexentry{崇}{353}
+\indexentry{宠}{354}
+\indexentry{抽}{355}
+\indexentry{酬}{356}
+\indexentry{畴}{357}
+\indexentry{踌}{358}
+\indexentry{稠}{359}
+\indexentry{愁}{360}
+\indexentry{筹}{361}
+\indexentry{仇}{362}
+\indexentry{绸}{363}
+\indexentry{瞅}{364}
+\indexentry{丑}{365}
+\indexentry{臭}{366}
+\indexentry{初}{367}
+\indexentry{出}{368}
+\indexentry{橱}{369}
+\indexentry{厨}{370}
+\indexentry{躇}{371}
+\indexentry{锄}{372}
+\indexentry{雏}{373}
+\indexentry{滁}{374}
+\indexentry{除}{375}
+\indexentry{楚}{376}
+\indexentry{础}{377}
+\indexentry{储}{378}
+\indexentry{矗}{379}
+\indexentry{搐}{380}
+\indexentry{触}{381}
+\indexentry{处}{382}
+\indexentry{揣}{383}
+\indexentry{川}{384}
+\indexentry{穿}{385}
+\indexentry{椽}{386}
+\indexentry{传}{387}
+\indexentry{船}{388}
+\indexentry{喘}{389}
+\indexentry{串}{390}
+\indexentry{疮}{391}
+\indexentry{窗}{392}
+\indexentry{幢}{393}
+\indexentry{床}{394}
+\indexentry{闯}{395}
+\indexentry{创}{396}
+\indexentry{吹}{397}
+\indexentry{炊}{398}
+\indexentry{捶}{399}
+\indexentry{锤}{400}
+\indexentry{垂}{401}
+\indexentry{春}{402}
+\indexentry{椿}{403}
+\indexentry{醇}{404}
+\indexentry{唇}{405}
+\indexentry{淳}{406}
+\indexentry{纯}{407}
+\indexentry{蠢}{408}
+\indexentry{戳}{409}
+\indexentry{绰}{410}
+\indexentry{疵}{411}
+\indexentry{茨}{412}
+\indexentry{磁}{413}
+\indexentry{雌}{414}
+\indexentry{辞}{415}
+\indexentry{慈}{416}
+\indexentry{瓷}{417}
+\indexentry{词}{418}
+\indexentry{此}{419}
+\indexentry{刺}{420}
+\indexentry{赐}{421}
+\indexentry{次}{422}
+\indexentry{聪}{423}
+\indexentry{葱}{424}
+\indexentry{囱}{425}
+\indexentry{匆}{426}
+\indexentry{从}{427}
+\indexentry{丛}{428}
+\indexentry{凑}{429}
+\indexentry{粗}{430}
+\indexentry{醋}{431}
+\indexentry{簇}{432}
+\indexentry{促}{433}
+\indexentry{蹿}{434}
+\indexentry{篡}{435}
+\indexentry{窜}{436}
+\indexentry{摧}{437}
+\indexentry{崔}{438}
+\indexentry{催}{439}
+\indexentry{脆}{440}
+\indexentry{瘁}{441}
+\indexentry{粹}{442}
+\indexentry{淬}{443}
+\indexentry{翠}{444}
+\indexentry{村}{445}
+\indexentry{存}{446}
+\indexentry{寸}{447}
+\indexentry{磋}{448}
+\indexentry{撮}{449}
+\indexentry{搓}{450}
+\indexentry{措}{451}
+\indexentry{挫}{452}
+\indexentry{错}{453}
+\indexentry{搭}{454}
+\indexentry{达}{455}
+\indexentry{答}{456}
+\indexentry{瘩}{457}
+\indexentry{打}{458}
+\indexentry{大}{459}
+\indexentry{呆}{460}
+\indexentry{歹}{461}
+\indexentry{傣}{462}
+\indexentry{戴}{463}
+\indexentry{带}{464}
+\indexentry{殆}{465}
+\indexentry{代}{466}
+\indexentry{贷}{467}
+\indexentry{袋}{468}
+\indexentry{待}{469}
+\indexentry{逮}{470}
+\indexentry{怠}{471}
+\indexentry{耽}{472}
+\indexentry{担}{473}
+\indexentry{丹}{474}
+\indexentry{单}{475}
+\indexentry{郸}{476}
+\indexentry{掸}{477}
+\indexentry{胆}{478}
+\indexentry{旦}{479}
+\indexentry{氮}{480}
+\indexentry{但}{481}
+\indexentry{惮}{482}
+\indexentry{淡}{483}
+\indexentry{诞}{484}
+\indexentry{弹}{485}
+\indexentry{蛋}{486}
+\indexentry{当}{487}
+\indexentry{挡}{488}
+\indexentry{党}{489}
+\indexentry{荡}{490}
+\indexentry{档}{491}
+\indexentry{刀}{492}
+\indexentry{捣}{493}
+\indexentry{蹈}{494}
+\indexentry{倒}{495}
+\indexentry{岛}{496}
+\indexentry{祷}{497}
+\indexentry{导}{498}
+\indexentry{到}{499}
+\indexentry{稻}{500}
+\indexentry{悼}{501}
+\indexentry{道}{502}
+\indexentry{盗}{503}
+\indexentry{德}{504}
+\indexentry{得}{505}
+\indexentry{的}{506}
+\indexentry{蹬}{507}
+\indexentry{灯}{508}
+\indexentry{登}{509}
+\indexentry{等}{510}
+\indexentry{瞪}{511}
+\indexentry{凳}{512}
+\indexentry{邓}{513}
+\indexentry{堤}{514}
+\indexentry{低}{515}
+\indexentry{滴}{516}
+\indexentry{迪}{517}
+\indexentry{敌}{518}
+\indexentry{笛}{519}
+\indexentry{狄}{520}
+\indexentry{涤}{521}
+\indexentry{翟}{522}
+\indexentry{嫡}{523}
+\indexentry{抵}{524}
+\indexentry{底}{525}
+\indexentry{地}{526}
+\indexentry{蒂}{527}
+\indexentry{第}{528}
+\indexentry{帝}{529}
+\indexentry{弟}{530}
+\indexentry{递}{531}
+\indexentry{缔}{532}
+\indexentry{颠}{533}
+\indexentry{掂}{534}
+\indexentry{滇}{535}
+\indexentry{碘}{536}
+\indexentry{点}{537}
+\indexentry{典}{538}
+\indexentry{靛}{539}
+\indexentry{垫}{540}
+\indexentry{电}{541}
+\indexentry{佃}{542}
+\indexentry{甸}{543}
+\indexentry{店}{544}
+\indexentry{惦}{545}
+\indexentry{奠}{546}
+\indexentry{淀}{547}
+\indexentry{殿}{548}
+\indexentry{碉}{549}
+\indexentry{叼}{550}
+\indexentry{雕}{551}
+\indexentry{凋}{552}
+\indexentry{刁}{553}
+\indexentry{掉}{554}
+\indexentry{吊}{555}
+\indexentry{钓}{556}
+\indexentry{调}{557}
+\indexentry{跌}{558}
+\indexentry{爹}{559}
+\indexentry{碟}{560}
+\indexentry{蝶}{561}
+\indexentry{迭}{562}
+\indexentry{谍}{563}
+\indexentry{叠}{564}
+\indexentry{丁}{565}
+\indexentry{盯}{566}
+\indexentry{叮}{567}
+\indexentry{钉}{568}
+\indexentry{顶}{569}
+\indexentry{鼎}{570}
+\indexentry{锭}{571}
+\indexentry{定}{572}
+\indexentry{订}{573}
+\indexentry{丢}{574}
+\indexentry{东}{575}
+\indexentry{冬}{576}
+\indexentry{董}{577}
+\indexentry{懂}{578}
+\indexentry{动}{579}
+\indexentry{栋}{580}
+\indexentry{侗}{581}
+\indexentry{恫}{582}
+\indexentry{冻}{583}
+\indexentry{洞}{584}
+\indexentry{兜}{585}
+\indexentry{抖}{586}
+\indexentry{斗}{587}
+\indexentry{陡}{588}
+\indexentry{豆}{589}
+\indexentry{逗}{590}
+\indexentry{痘}{591}
+\indexentry{都}{592}
+\indexentry{督}{593}
+\indexentry{毒}{594}
+\indexentry{犊}{595}
+\indexentry{独}{596}
+\indexentry{读}{597}
+\indexentry{堵}{598}
+\indexentry{睹}{599}
+\indexentry{赌}{600}
+\indexentry{杜}{601}
+\indexentry{镀}{602}
+\indexentry{肚}{603}
+\indexentry{度}{604}
+\indexentry{渡}{605}
+\indexentry{妒}{606}
+\indexentry{端}{607}
+\indexentry{短}{608}
+\indexentry{锻}{609}
+\indexentry{段}{610}
+\indexentry{断}{611}
+\indexentry{缎}{612}
+\indexentry{堆}{613}
+\indexentry{兑}{614}
+\indexentry{队}{615}
+\indexentry{对}{616}
+\indexentry{墩}{617}
+\indexentry{吨}{618}
+\indexentry{蹲}{619}
+\indexentry{敦}{620}
+\indexentry{顿}{621}
+\indexentry{囤}{622}
+\indexentry{钝}{623}
+\indexentry{盾}{624}
+\indexentry{遁}{625}
+\indexentry{掇}{626}
+\indexentry{哆}{627}
+\indexentry{多}{628}
+\indexentry{夺}{629}
+\indexentry{垛}{630}
+\indexentry{躲}{631}
+\indexentry{朵}{632}
+\indexentry{跺}{633}
+\indexentry{舵}{634}
+\indexentry{剁}{635}
+\indexentry{惰}{636}
+\indexentry{堕}{637}
+\indexentry{蛾}{638}
+\indexentry{峨}{639}
+\indexentry{鹅}{640}
+\indexentry{俄}{641}
+\indexentry{额}{642}
+\indexentry{讹}{643}
+\indexentry{娥}{644}
+\indexentry{恶}{645}
+\indexentry{厄}{646}
+\indexentry{扼}{647}
+\indexentry{遏}{648}
+\indexentry{鄂}{649}
+\indexentry{饿}{650}
+\indexentry{恩}{651}
+\indexentry{而}{652}
+\indexentry{儿}{653}
+\indexentry{耳}{654}
+\indexentry{尔}{655}
+\indexentry{饵}{656}
+\indexentry{洱}{657}
+\indexentry{二}{658}
+\indexentry{贰}{659}
+\indexentry{发}{660}
+\indexentry{罚}{661}
+\indexentry{筏}{662}
+\indexentry{伐}{663}
+\indexentry{乏}{664}
+\indexentry{阀}{665}
+\indexentry{法}{666}
+\indexentry{珐}{667}
+\indexentry{藩}{668}
+\indexentry{帆}{669}
+\indexentry{番}{670}
+\indexentry{翻}{671}
+\indexentry{樊}{672}
+\indexentry{矾}{673}
+\indexentry{钒}{674}
+\indexentry{繁}{675}
+\indexentry{凡}{676}
+\indexentry{烦}{677}
+\indexentry{反}{678}
+\indexentry{返}{679}
+\indexentry{范}{680}
+\indexentry{贩}{681}
+\indexentry{犯}{682}
+\indexentry{饭}{683}
+\indexentry{泛}{684}
+\indexentry{坊}{685}
+\indexentry{芳}{686}
+\indexentry{方}{687}
+\indexentry{肪}{688}
+\indexentry{房}{689}
+\indexentry{防}{690}
+\indexentry{妨}{691}
+\indexentry{仿}{692}
+\indexentry{访}{693}
+\indexentry{纺}{694}
+\indexentry{放}{695}
+\indexentry{菲}{696}
+\indexentry{非}{697}
+\indexentry{啡}{698}
+\indexentry{飞}{699}
+\indexentry{肥}{700}
+\indexentry{匪}{701}
+\indexentry{诽}{702}
+\indexentry{吠}{703}
+\indexentry{肺}{704}
+\indexentry{废}{705}
+\indexentry{沸}{706}
+\indexentry{费}{707}
+\indexentry{芬}{708}
+\indexentry{酚}{709}
+\indexentry{吩}{710}
+\indexentry{氛}{711}
+\indexentry{分}{712}
+\indexentry{纷}{713}
+\indexentry{坟}{714}
+\indexentry{焚}{715}
+\indexentry{汾}{716}
+\indexentry{粉}{717}
+\indexentry{奋}{718}
+\indexentry{份}{719}
+\indexentry{忿}{720}
+\indexentry{愤}{721}
+\indexentry{粪}{722}
+\indexentry{丰}{723}
+\indexentry{封}{724}
+\indexentry{枫}{725}
+\indexentry{蜂}{726}
+\indexentry{峰}{727}
+\indexentry{锋}{728}
+\indexentry{风}{729}
+\indexentry{疯}{730}
+\indexentry{烽}{731}
+\indexentry{逢}{732}
+\indexentry{冯}{733}
+\indexentry{缝}{734}
+\indexentry{讽}{735}
+\indexentry{奉}{736}
+\indexentry{凤}{737}
+\indexentry{佛}{738}
+\indexentry{否}{739}
+\indexentry{夫}{740}
+\indexentry{敷}{741}
+\indexentry{肤}{742}
+\indexentry{孵}{743}
+\indexentry{扶}{744}
+\indexentry{拂}{745}
+\indexentry{辐}{746}
+\indexentry{幅}{747}
+\indexentry{氟}{748}
+\indexentry{符}{749}
+\indexentry{伏}{750}
+\indexentry{俘}{751}
+\indexentry{服}{752}
+\indexentry{浮}{753}
+\indexentry{涪}{754}
+\indexentry{福}{755}
+\indexentry{袱}{756}
+\indexentry{弗}{757}
+\indexentry{甫}{758}
+\indexentry{抚}{759}
+\indexentry{辅}{760}
+\indexentry{俯}{761}
+\indexentry{釜}{762}
+\indexentry{斧}{763}
+\indexentry{脯}{764}
+\indexentry{腑}{765}
+\indexentry{府}{766}
+\indexentry{腐}{767}
+\indexentry{赴}{768}
+\indexentry{副}{769}
+\indexentry{覆}{770}
+\indexentry{赋}{771}
+\indexentry{复}{772}
+\indexentry{傅}{773}
+\indexentry{付}{774}
+\indexentry{阜}{775}
+\indexentry{父}{776}
+\indexentry{腹}{777}
+\indexentry{负}{778}
+\indexentry{富}{779}
+\indexentry{讣}{780}
+\indexentry{附}{781}
+\indexentry{妇}{782}
+\indexentry{缚}{783}
+\indexentry{咐}{784}
+\indexentry{噶}{785}
+\indexentry{嘎}{786}
+\indexentry{该}{787}
+\indexentry{改}{788}
+\indexentry{概}{789}
+\indexentry{钙}{790}
+\indexentry{盖}{791}
+\indexentry{溉}{792}
+\indexentry{干}{793}
+\indexentry{甘}{794}
+\indexentry{杆}{795}
+\indexentry{柑}{796}
+\indexentry{竿}{797}
+\indexentry{肝}{798}
+\indexentry{赶}{799}
+\indexentry{感}{800}
+\indexentry{秆}{801}
+\indexentry{敢}{802}
+\indexentry{赣}{803}
+\indexentry{冈}{804}
+\indexentry{刚}{805}
+\indexentry{钢}{806}
+\indexentry{缸}{807}
+\indexentry{肛}{808}
+\indexentry{纲}{809}
+\indexentry{岗}{810}
+\indexentry{港}{811}
+\indexentry{杠}{812}
+\indexentry{篙}{813}
+\indexentry{皋}{814}
+\indexentry{高}{815}
+\indexentry{膏}{816}
+\indexentry{羔}{817}
+\indexentry{糕}{818}
+\indexentry{搞}{819}
+\indexentry{镐}{820}
+\indexentry{稿}{821}
+\indexentry{告}{822}
+\indexentry{哥}{823}
+\indexentry{歌}{824}
+\indexentry{搁}{825}
+\indexentry{戈}{826}
+\indexentry{鸽}{827}
+\indexentry{胳}{828}
+\indexentry{疙}{829}
+\indexentry{割}{830}
+\indexentry{革}{831}
+\indexentry{葛}{832}
+\indexentry{格}{833}
+\indexentry{蛤}{834}
+\indexentry{阁}{835}
+\indexentry{隔}{836}
+\indexentry{铬}{837}
+\indexentry{个}{838}
+\indexentry{各}{839}
+\indexentry{给}{840}
+\indexentry{根}{841}
+\indexentry{跟}{842}
+\indexentry{耕}{843}
+\indexentry{更}{844}
+\indexentry{庚}{845}
+\indexentry{羹}{846}
+\indexentry{埂}{847}
+\indexentry{耿}{848}
+\indexentry{梗}{849}
+\indexentry{工}{850}
+\indexentry{攻}{851}
+\indexentry{功}{852}
+\indexentry{恭}{853}
+\indexentry{龚}{854}
+\indexentry{供}{855}
+\indexentry{躬}{856}
+\indexentry{公}{857}
+\indexentry{宫}{858}
+\indexentry{弓}{859}
+\indexentry{巩}{860}
+\indexentry{汞}{861}
+\indexentry{拱}{862}
+\indexentry{贡}{863}
+\indexentry{共}{864}
+\indexentry{钩}{865}
+\indexentry{勾}{866}
+\indexentry{沟}{867}
+\indexentry{苟}{868}
+\indexentry{狗}{869}
+\indexentry{垢}{870}
+\indexentry{构}{871}
+\indexentry{购}{872}
+\indexentry{够}{873}
+\indexentry{辜}{874}
+\indexentry{菇}{875}
+\indexentry{咕}{876}
+\indexentry{箍}{877}
+\indexentry{估}{878}
+\indexentry{沽}{879}
+\indexentry{孤}{880}
+\indexentry{姑}{881}
+\indexentry{鼓}{882}
+\indexentry{古}{883}
+\indexentry{蛊}{884}
+\indexentry{骨}{885}
+\indexentry{谷}{886}
+\indexentry{股}{887}
+\indexentry{故}{888}
+\indexentry{顾}{889}
+\indexentry{固}{890}
+\indexentry{雇}{891}
+\indexentry{刮}{892}
+\indexentry{瓜}{893}
+\indexentry{剐}{894}
+\indexentry{寡}{895}
+\indexentry{挂}{896}
+\indexentry{褂}{897}
+\indexentry{乖}{898}
+\indexentry{拐}{899}
+\indexentry{怪}{900}
+\indexentry{棺}{901}
+\indexentry{关}{902}
+\indexentry{官}{903}
+\indexentry{冠}{904}
+\indexentry{观}{905}
+\indexentry{管}{906}
+\indexentry{馆}{907}
+\indexentry{罐}{908}
+\indexentry{惯}{909}
+\indexentry{灌}{910}
+\indexentry{贯}{911}
+\indexentry{光}{912}
+\indexentry{广}{913}
+\indexentry{逛}{914}
+\indexentry{瑰}{915}
+\indexentry{规}{916}
+\indexentry{圭}{917}
+\indexentry{硅}{918}
+\indexentry{归}{919}
+\indexentry{龟}{920}
+\indexentry{闺}{921}
+\indexentry{轨}{922}
+\indexentry{鬼}{923}
+\indexentry{诡}{924}
+\indexentry{癸}{925}
+\indexentry{桂}{926}
+\indexentry{柜}{927}
+\indexentry{跪}{928}
+\indexentry{贵}{929}
+\indexentry{刽}{930}
+\indexentry{辊}{931}
+\indexentry{滚}{932}
+\indexentry{棍}{933}
+\indexentry{锅}{934}
+\indexentry{郭}{935}
+\indexentry{国}{936}
+\indexentry{果}{937}
+\indexentry{裹}{938}
+\indexentry{过}{939}
+\indexentry{哈}{940}
+\indexentry{骸}{941}
+\indexentry{孩}{942}
+\indexentry{海}{943}
+\indexentry{氦}{944}
+\indexentry{亥}{945}
+\indexentry{害}{946}
+\indexentry{骇}{947}
+\indexentry{酣}{948}
+\indexentry{憨}{949}
+\indexentry{邯}{950}
+\indexentry{韩}{951}
+\indexentry{含}{952}
+\indexentry{涵}{953}
+\indexentry{寒}{954}
+\indexentry{函}{955}
+\indexentry{喊}{956}
+\indexentry{罕}{957}
+\indexentry{翰}{958}
+\indexentry{撼}{959}
+\indexentry{捍}{960}
+\indexentry{旱}{961}
+\indexentry{憾}{962}
+\indexentry{悍}{963}
+\indexentry{焊}{964}
+\indexentry{汗}{965}
+\indexentry{汉}{966}
+\indexentry{夯}{967}
+\indexentry{杭}{968}
+\indexentry{航}{969}
+\indexentry{壕}{970}
+\indexentry{嚎}{971}
+\indexentry{豪}{972}
+\indexentry{毫}{973}
+\indexentry{郝}{974}
+\indexentry{好}{975}
+\indexentry{耗}{976}
+\indexentry{号}{977}
+\indexentry{浩}{978}
+\indexentry{呵}{979}
+\indexentry{喝}{980}
+\indexentry{荷}{981}
+\indexentry{菏}{982}
+\indexentry{核}{983}
+\indexentry{禾}{984}
+\indexentry{和}{985}
+\indexentry{何}{986}
+\indexentry{合}{987}
+\indexentry{盒}{988}
+\indexentry{貉}{989}
+\indexentry{阂}{990}
+\indexentry{河}{991}
+\indexentry{涸}{992}
+\indexentry{赫}{993}
+\indexentry{褐}{994}
+\indexentry{鹤}{995}
+\indexentry{贺}{996}
+\indexentry{嘿}{997}
+\indexentry{黑}{998}
+\indexentry{痕}{999}
+\indexentry{很}{1000}
+\indexentry{狠}{1001}
+\indexentry{恨}{1002}
+\indexentry{哼}{1003}
+\indexentry{亨}{1004}
+\indexentry{横}{1005}
+\indexentry{衡}{1006}
+\indexentry{恒}{1007}
+\indexentry{轰}{1008}
+\indexentry{哄}{1009}
+\indexentry{烘}{1010}
+\indexentry{虹}{1011}
+\indexentry{鸿}{1012}
+\indexentry{洪}{1013}
+\indexentry{宏}{1014}
+\indexentry{弘}{1015}
+\indexentry{红}{1016}
+\indexentry{喉}{1017}
+\indexentry{侯}{1018}
+\indexentry{猴}{1019}
+\indexentry{吼}{1020}
+\indexentry{厚}{1021}
+\indexentry{候}{1022}
+\indexentry{后}{1023}
+\indexentry{呼}{1024}
+\indexentry{乎}{1025}
+\indexentry{忽}{1026}
+\indexentry{瑚}{1027}
+\indexentry{壶}{1028}
+\indexentry{葫}{1029}
+\indexentry{胡}{1030}
+\indexentry{蝴}{1031}
+\indexentry{狐}{1032}
+\indexentry{糊}{1033}
+\indexentry{湖}{1034}
+\indexentry{弧}{1035}
+\indexentry{虎}{1036}
+\indexentry{唬}{1037}
+\indexentry{护}{1038}
+\indexentry{互}{1039}
+\indexentry{沪}{1040}
+\indexentry{户}{1041}
+\indexentry{花}{1042}
+\indexentry{哗}{1043}
+\indexentry{华}{1044}
+\indexentry{猾}{1045}
+\indexentry{滑}{1046}
+\indexentry{画}{1047}
+\indexentry{划}{1048}
+\indexentry{化}{1049}
+\indexentry{话}{1050}
+\indexentry{槐}{1051}
+\indexentry{徊}{1052}
+\indexentry{怀}{1053}
+\indexentry{淮}{1054}
+\indexentry{坏}{1055}
+\indexentry{欢}{1056}
+\indexentry{环}{1057}
+\indexentry{桓}{1058}
+\indexentry{还}{1059}
+\indexentry{缓}{1060}
+\indexentry{换}{1061}
+\indexentry{患}{1062}
+\indexentry{唤}{1063}
+\indexentry{痪}{1064}
+\indexentry{豢}{1065}
+\indexentry{焕}{1066}
+\indexentry{涣}{1067}
+\indexentry{宦}{1068}
+\indexentry{幻}{1069}
+\indexentry{荒}{1070}
+\indexentry{慌}{1071}
+\indexentry{黄}{1072}
+\indexentry{磺}{1073}
+\indexentry{蝗}{1074}
+\indexentry{簧}{1075}
+\indexentry{皇}{1076}
+\indexentry{凰}{1077}
+\indexentry{惶}{1078}
+\indexentry{煌}{1079}
+\indexentry{晃}{1080}
+\indexentry{幌}{1081}
+\indexentry{恍}{1082}
+\indexentry{谎}{1083}
+\indexentry{灰}{1084}
+\indexentry{挥}{1085}
+\indexentry{辉}{1086}
+\indexentry{徽}{1087}
+\indexentry{恢}{1088}
+\indexentry{蛔}{1089}
+\indexentry{回}{1090}
+\indexentry{毁}{1091}
+\indexentry{悔}{1092}
+\indexentry{慧}{1093}
+\indexentry{卉}{1094}
+\indexentry{惠}{1095}
+\indexentry{晦}{1096}
+\indexentry{贿}{1097}
+\indexentry{秽}{1098}
+\indexentry{会}{1099}
+\indexentry{烩}{1100}
+\indexentry{汇}{1101}
+\indexentry{讳}{1102}
+\indexentry{诲}{1103}
+\indexentry{绘}{1104}
+\indexentry{荤}{1105}
+\indexentry{昏}{1106}
+\indexentry{婚}{1107}
+\indexentry{魂}{1108}
+\indexentry{浑}{1109}
+\indexentry{混}{1110}
+\indexentry{豁}{1111}
+\indexentry{活}{1112}
+\indexentry{伙}{1113}
+\indexentry{火}{1114}
+\indexentry{获}{1115}
+\indexentry{或}{1116}
+\indexentry{惑}{1117}
+\indexentry{霍}{1118}
+\indexentry{货}{1119}
+\indexentry{祸}{1120}
+\indexentry{击}{1121}
+\indexentry{圾}{1122}
+\indexentry{基}{1123}
+\indexentry{机}{1124}
+\indexentry{畸}{1125}
+\indexentry{稽}{1126}
+\indexentry{积}{1127}
+\indexentry{箕}{1128}
+\indexentry{肌}{1129}
+\indexentry{饥}{1130}
+\indexentry{迹}{1131}
+\indexentry{激}{1132}
+\indexentry{讥}{1133}
+\indexentry{鸡}{1134}
+\indexentry{姬}{1135}
+\indexentry{绩}{1136}
+\indexentry{缉}{1137}
+\indexentry{吉}{1138}
+\indexentry{极}{1139}
+\indexentry{棘}{1140}
+\indexentry{辑}{1141}
+\indexentry{籍}{1142}
+\indexentry{集}{1143}
+\indexentry{及}{1144}
+\indexentry{急}{1145}
+\indexentry{疾}{1146}
+\indexentry{汲}{1147}
+\indexentry{即}{1148}
+\indexentry{嫉}{1149}
+\indexentry{级}{1150}
+\indexentry{挤}{1151}
+\indexentry{几}{1152}
+\indexentry{脊}{1153}
+\indexentry{己}{1154}
+\indexentry{蓟}{1155}
+\indexentry{技}{1156}
+\indexentry{冀}{1157}
+\indexentry{季}{1158}
+\indexentry{伎}{1159}
+\indexentry{祭}{1160}
+\indexentry{剂}{1161}
+\indexentry{悸}{1162}
+\indexentry{济}{1163}
+\indexentry{寄}{1164}
+\indexentry{寂}{1165}
+\indexentry{计}{1166}
+\indexentry{记}{1167}
+\indexentry{既}{1168}
+\indexentry{忌}{1169}
+\indexentry{际}{1170}
+\indexentry{妓}{1171}
+\indexentry{继}{1172}
+\indexentry{纪}{1173}
+\indexentry{嘉}{1174}
+\indexentry{枷}{1175}
+\indexentry{夹}{1176}
+\indexentry{佳}{1177}
+\indexentry{家}{1178}
+\indexentry{加}{1179}
+\indexentry{荚}{1180}
+\indexentry{颊}{1181}
+\indexentry{贾}{1182}
+\indexentry{甲}{1183}
+\indexentry{钾}{1184}
+\indexentry{假}{1185}
+\indexentry{稼}{1186}
+\indexentry{价}{1187}
+\indexentry{架}{1188}
+\indexentry{驾}{1189}
+\indexentry{嫁}{1190}
+\indexentry{歼}{1191}
+\indexentry{监}{1192}
+\indexentry{坚}{1193}
+\indexentry{尖}{1194}
+\indexentry{笺}{1195}
+\indexentry{间}{1196}
+\indexentry{煎}{1197}
+\indexentry{兼}{1198}
+\indexentry{肩}{1199}
+\indexentry{艰}{1200}
+\indexentry{奸}{1201}
+\indexentry{缄}{1202}
+\indexentry{茧}{1203}
+\indexentry{检}{1204}
+\indexentry{柬}{1205}
+\indexentry{碱}{1206}
+\indexentry{硷}{1207}
+\indexentry{拣}{1208}
+\indexentry{捡}{1209}
+\indexentry{简}{1210}
+\indexentry{俭}{1211}
+\indexentry{剪}{1212}
+\indexentry{减}{1213}
+\indexentry{荐}{1214}
+\indexentry{槛}{1215}
+\indexentry{鉴}{1216}
+\indexentry{践}{1217}
+\indexentry{贱}{1218}
+\indexentry{见}{1219}
+\indexentry{键}{1220}
+\indexentry{箭}{1221}
+\indexentry{件}{1222}
+\indexentry{健}{1223}
+\indexentry{舰}{1224}
+\indexentry{剑}{1225}
+\indexentry{饯}{1226}
+\indexentry{渐}{1227}
+\indexentry{溅}{1228}
+\indexentry{涧}{1229}
+\indexentry{建}{1230}
+\indexentry{僵}{1231}
+\indexentry{姜}{1232}
+\indexentry{将}{1233}
+\indexentry{浆}{1234}
+\indexentry{江}{1235}
+\indexentry{疆}{1236}
+\indexentry{蒋}{1237}
+\indexentry{桨}{1238}
+\indexentry{奖}{1239}
+\indexentry{讲}{1240}
+\indexentry{匠}{1241}
+\indexentry{酱}{1242}
+\indexentry{降}{1243}
+\indexentry{蕉}{1244}
+\indexentry{椒}{1245}
+\indexentry{礁}{1246}
+\indexentry{焦}{1247}
+\indexentry{胶}{1248}
+\indexentry{交}{1249}
+\indexentry{郊}{1250}
+\indexentry{浇}{1251}
+\indexentry{骄}{1252}
+\indexentry{娇}{1253}
+\indexentry{嚼}{1254}
+\indexentry{搅}{1255}
+\indexentry{铰}{1256}
+\indexentry{矫}{1257}
+\indexentry{侥}{1258}
+\indexentry{脚}{1259}
+\indexentry{狡}{1260}
+\indexentry{角}{1261}
+\indexentry{饺}{1262}
+\indexentry{缴}{1263}
+\indexentry{绞}{1264}
+\indexentry{剿}{1265}
+\indexentry{教}{1266}
+\indexentry{酵}{1267}
+\indexentry{轿}{1268}
+\indexentry{较}{1269}
+\indexentry{叫}{1270}
+\indexentry{窖}{1271}
+\indexentry{揭}{1272}
+\indexentry{接}{1273}
+\indexentry{皆}{1274}
+\indexentry{秸}{1275}
+\indexentry{街}{1276}
+\indexentry{阶}{1277}
+\indexentry{截}{1278}
+\indexentry{劫}{1279}
+\indexentry{节}{1280}
+\indexentry{桔}{1281}
+\indexentry{杰}{1282}
+\indexentry{捷}{1283}
+\indexentry{睫}{1284}
+\indexentry{竭}{1285}
+\indexentry{洁}{1286}
+\indexentry{结}{1287}
+\indexentry{解}{1288}
+\indexentry{姐}{1289}
+\indexentry{戒}{1290}
+\indexentry{藉}{1291}
+\indexentry{芥}{1292}
+\indexentry{界}{1293}
+\indexentry{借}{1294}
+\indexentry{介}{1295}
+\indexentry{疥}{1296}
+\indexentry{诫}{1297}
+\indexentry{届}{1298}
+\indexentry{巾}{1299}
+\indexentry{筋}{1300}
+\indexentry{斤}{1301}
+\indexentry{金}{1302}
+\indexentry{今}{1303}
+\indexentry{津}{1304}
+\indexentry{襟}{1305}
+\indexentry{紧}{1306}
+\indexentry{锦}{1307}
+\indexentry{仅}{1308}
+\indexentry{谨}{1309}
+\indexentry{进}{1310}
+\indexentry{靳}{1311}
+\indexentry{晋}{1312}
+\indexentry{禁}{1313}
+\indexentry{近}{1314}
+\indexentry{烬}{1315}
+\indexentry{浸}{1316}
+\indexentry{尽}{1317}
+\indexentry{劲}{1318}
+\indexentry{荆}{1319}
+\indexentry{兢}{1320}
+\indexentry{茎}{1321}
+\indexentry{睛}{1322}
+\indexentry{晶}{1323}
+\indexentry{鲸}{1324}
+\indexentry{京}{1325}
+\indexentry{惊}{1326}
+\indexentry{精}{1327}
+\indexentry{粳}{1328}
+\indexentry{经}{1329}
+\indexentry{井}{1330}
+\indexentry{警}{1331}
+\indexentry{景}{1332}
+\indexentry{颈}{1333}
+\indexentry{静}{1334}
+\indexentry{境}{1335}
+\indexentry{敬}{1336}
+\indexentry{镜}{1337}
+\indexentry{径}{1338}
+\indexentry{痉}{1339}
+\indexentry{靖}{1340}
+\indexentry{竟}{1341}
+\indexentry{竞}{1342}
+\indexentry{净}{1343}
+\indexentry{炯}{1344}
+\indexentry{窘}{1345}
+\indexentry{揪}{1346}
+\indexentry{究}{1347}
+\indexentry{纠}{1348}
+\indexentry{玖}{1349}
+\indexentry{韭}{1350}
+\indexentry{久}{1351}
+\indexentry{灸}{1352}
+\indexentry{九}{1353}
+\indexentry{酒}{1354}
+\indexentry{厩}{1355}
+\indexentry{救}{1356}
+\indexentry{旧}{1357}
+\indexentry{臼}{1358}
+\indexentry{舅}{1359}
+\indexentry{咎}{1360}
+\indexentry{就}{1361}
+\indexentry{疚}{1362}
+\indexentry{鞠}{1363}
+\indexentry{拘}{1364}
+\indexentry{狙}{1365}
+\indexentry{疽}{1366}
+\indexentry{居}{1367}
+\indexentry{驹}{1368}
+\indexentry{菊}{1369}
+\indexentry{局}{1370}
+\indexentry{咀}{1371}
+\indexentry{矩}{1372}
+\indexentry{举}{1373}
+\indexentry{沮}{1374}
+\indexentry{聚}{1375}
+\indexentry{拒}{1376}
+\indexentry{据}{1377}
+\indexentry{巨}{1378}
+\indexentry{具}{1379}
+\indexentry{距}{1380}
+\indexentry{踞}{1381}
+\indexentry{锯}{1382}
+\indexentry{俱}{1383}
+\indexentry{句}{1384}
+\indexentry{惧}{1385}
+\indexentry{炬}{1386}
+\indexentry{剧}{1387}
+\indexentry{捐}{1388}
+\indexentry{鹃}{1389}
+\indexentry{娟}{1390}
+\indexentry{倦}{1391}
+\indexentry{眷}{1392}
+\indexentry{卷}{1393}
+\indexentry{绢}{1394}
+\indexentry{撅}{1395}
+\indexentry{攫}{1396}
+\indexentry{抉}{1397}
+\indexentry{掘}{1398}
+\indexentry{倔}{1399}
+\indexentry{爵}{1400}
+\indexentry{觉}{1401}
+\indexentry{决}{1402}
+\indexentry{诀}{1403}
+\indexentry{绝}{1404}
+\indexentry{均}{1405}
+\indexentry{菌}{1406}
+\indexentry{钧}{1407}
+\indexentry{军}{1408}
+\indexentry{君}{1409}
+\indexentry{峻}{1410}
+\indexentry{俊}{1411}
+\indexentry{竣}{1412}
+\indexentry{浚}{1413}
+\indexentry{郡}{1414}
+\indexentry{骏}{1415}
+\indexentry{喀}{1416}
+\indexentry{咖}{1417}
+\indexentry{卡}{1418}
+\indexentry{咯}{1419}
+\indexentry{开}{1420}
+\indexentry{揩}{1421}
+\indexentry{楷}{1422}
+\indexentry{凯}{1423}
+\indexentry{慨}{1424}
+\indexentry{刊}{1425}
+\indexentry{堪}{1426}
+\indexentry{勘}{1427}
+\indexentry{坎}{1428}
+\indexentry{砍}{1429}
+\indexentry{看}{1430}
+\indexentry{康}{1431}
+\indexentry{慷}{1432}
+\indexentry{糠}{1433}
+\indexentry{扛}{1434}
+\indexentry{抗}{1435}
+\indexentry{亢}{1436}
+\indexentry{炕}{1437}
+\indexentry{考}{1438}
+\indexentry{拷}{1439}
+\indexentry{烤}{1440}
+\indexentry{靠}{1441}
+\indexentry{坷}{1442}
+\indexentry{苛}{1443}
+\indexentry{柯}{1444}
+\indexentry{棵}{1445}
+\indexentry{磕}{1446}
+\indexentry{颗}{1447}
+\indexentry{科}{1448}
+\indexentry{壳}{1449}
+\indexentry{咳}{1450}
+\indexentry{可}{1451}
+\indexentry{渴}{1452}
+\indexentry{克}{1453}
+\indexentry{刻}{1454}
+\indexentry{客}{1455}
+\indexentry{课}{1456}
+\indexentry{肯}{1457}
+\indexentry{啃}{1458}
+\indexentry{垦}{1459}
+\indexentry{恳}{1460}
+\indexentry{坑}{1461}
+\indexentry{吭}{1462}
+\indexentry{空}{1463}
+\indexentry{恐}{1464}
+\indexentry{孔}{1465}
+\indexentry{控}{1466}
+\indexentry{抠}{1467}
+\indexentry{口}{1468}
+\indexentry{扣}{1469}
+\indexentry{寇}{1470}
+\indexentry{枯}{1471}
+\indexentry{哭}{1472}
+\indexentry{窟}{1473}
+\indexentry{苦}{1474}
+\indexentry{酷}{1475}
+\indexentry{库}{1476}
+\indexentry{裤}{1477}
+\indexentry{夸}{1478}
+\indexentry{垮}{1479}
+\indexentry{挎}{1480}
+\indexentry{跨}{1481}
+\indexentry{胯}{1482}
+\indexentry{块}{1483}
+\indexentry{筷}{1484}
+\indexentry{侩}{1485}
+\indexentry{快}{1486}
+\indexentry{宽}{1487}
+\indexentry{款}{1488}
+\indexentry{匡}{1489}
+\indexentry{筐}{1490}
+\indexentry{狂}{1491}
+\indexentry{框}{1492}
+\indexentry{矿}{1493}
+\indexentry{眶}{1494}
+\indexentry{旷}{1495}
+\indexentry{况}{1496}
+\indexentry{亏}{1497}
+\indexentry{盔}{1498}
+\indexentry{岿}{1499}
+\indexentry{窥}{1500}
+\indexentry{葵}{1501}
+\indexentry{奎}{1502}
+\indexentry{魁}{1503}
+\indexentry{傀}{1504}
+\indexentry{馈}{1505}
+\indexentry{愧}{1506}
+\indexentry{溃}{1507}
+\indexentry{坤}{1508}
+\indexentry{昆}{1509}
+\indexentry{捆}{1510}
+\indexentry{困}{1511}
+\indexentry{括}{1512}
+\indexentry{扩}{1513}
+\indexentry{廓}{1514}
+\indexentry{阔}{1515}
+\indexentry{垃}{1516}
+\indexentry{拉}{1517}
+\indexentry{喇}{1518}
+\indexentry{蜡}{1519}
+\indexentry{腊}{1520}
+\indexentry{辣}{1521}
+\indexentry{啦}{1522}
+\indexentry{莱}{1523}
+\indexentry{来}{1524}
+\indexentry{赖}{1525}
+\indexentry{蓝}{1526}
+\indexentry{婪}{1527}
+\indexentry{栏}{1528}
+\indexentry{拦}{1529}
+\indexentry{篮}{1530}
+\indexentry{阑}{1531}
+\indexentry{兰}{1532}
+\indexentry{澜}{1533}
+\indexentry{谰}{1534}
+\indexentry{揽}{1535}
+\indexentry{览}{1536}
+\indexentry{懒}{1537}
+\indexentry{缆}{1538}
+\indexentry{烂}{1539}
+\indexentry{滥}{1540}
+\indexentry{琅}{1541}
+\indexentry{榔}{1542}
+\indexentry{狼}{1543}
+\indexentry{廊}{1544}
+\indexentry{郎}{1545}
+\indexentry{朗}{1546}
+\indexentry{浪}{1547}
+\indexentry{捞}{1548}
+\indexentry{劳}{1549}
+\indexentry{牢}{1550}
+\indexentry{老}{1551}
+\indexentry{佬}{1552}
+\indexentry{姥}{1553}
+\indexentry{酪}{1554}
+\indexentry{烙}{1555}
+\indexentry{涝}{1556}
+\indexentry{勒}{1557}
+\indexentry{乐}{1558}
+\indexentry{雷}{1559}
+\indexentry{镭}{1560}
+\indexentry{蕾}{1561}
+\indexentry{磊}{1562}
+\indexentry{累}{1563}
+\indexentry{儡}{1564}
+\indexentry{垒}{1565}
+\indexentry{擂}{1566}
+\indexentry{肋}{1567}
+\indexentry{类}{1568}
+\indexentry{泪}{1569}
+\indexentry{棱}{1570}
+\indexentry{楞}{1571}
+\indexentry{冷}{1572}
+\indexentry{厘}{1573}
+\indexentry{梨}{1574}
+\indexentry{犁}{1575}
+\indexentry{黎}{1576}
+\indexentry{篱}{1577}
+\indexentry{狸}{1578}
+\indexentry{离}{1579}
+\indexentry{漓}{1580}
+\indexentry{理}{1581}
+\indexentry{李}{1582}
+\indexentry{里}{1583}
+\indexentry{鲤}{1584}
+\indexentry{礼}{1585}
+\indexentry{莉}{1586}
+\indexentry{荔}{1587}
+\indexentry{吏}{1588}
+\indexentry{栗}{1589}
+\indexentry{丽}{1590}
+\indexentry{厉}{1591}
+\indexentry{励}{1592}
+\indexentry{砾}{1593}
+\indexentry{历}{1594}
+\indexentry{利}{1595}
+\indexentry{傈}{1596}
+\indexentry{例}{1597}
+\indexentry{俐}{1598}
+\indexentry{痢}{1599}
+\indexentry{立}{1600}
+\indexentry{粒}{1601}
+\indexentry{沥}{1602}
+\indexentry{隶}{1603}
+\indexentry{力}{1604}
+\indexentry{璃}{1605}
+\indexentry{哩}{1606}
+\indexentry{俩}{1607}
+\indexentry{联}{1608}
+\indexentry{莲}{1609}
+\indexentry{连}{1610}
+\indexentry{镰}{1611}
+\indexentry{廉}{1612}
+\indexentry{怜}{1613}
+\indexentry{涟}{1614}
+\indexentry{帘}{1615}
+\indexentry{敛}{1616}
+\indexentry{脸}{1617}
+\indexentry{链}{1618}
+\indexentry{恋}{1619}
+\indexentry{炼}{1620}
+\indexentry{练}{1621}
+\indexentry{粮}{1622}
+\indexentry{凉}{1623}
+\indexentry{梁}{1624}
+\indexentry{粱}{1625}
+\indexentry{良}{1626}
+\indexentry{两}{1627}
+\indexentry{辆}{1628}
+\indexentry{量}{1629}
+\indexentry{晾}{1630}
+\indexentry{亮}{1631}
+\indexentry{谅}{1632}
+\indexentry{撩}{1633}
+\indexentry{聊}{1634}
+\indexentry{僚}{1635}
+\indexentry{疗}{1636}
+\indexentry{燎}{1637}
+\indexentry{寥}{1638}
+\indexentry{辽}{1639}
+\indexentry{潦}{1640}
+\indexentry{了}{1641}
+\indexentry{撂}{1642}
+\indexentry{镣}{1643}
+\indexentry{廖}{1644}
+\indexentry{料}{1645}
+\indexentry{列}{1646}
+\indexentry{裂}{1647}
+\indexentry{烈}{1648}
+\indexentry{劣}{1649}
+\indexentry{猎}{1650}
+\indexentry{琳}{1651}
+\indexentry{林}{1652}
+\indexentry{磷}{1653}
+\indexentry{霖}{1654}
+\indexentry{临}{1655}
+\indexentry{邻}{1656}
+\indexentry{鳞}{1657}
+\indexentry{淋}{1658}
+\indexentry{凛}{1659}
+\indexentry{赁}{1660}
+\indexentry{吝}{1661}
+\indexentry{拎}{1662}
+\indexentry{玲}{1663}
+\indexentry{菱}{1664}
+\indexentry{零}{1665}
+\indexentry{龄}{1666}
+\indexentry{铃}{1667}
+\indexentry{伶}{1668}
+\indexentry{羚}{1669}
+\indexentry{凌}{1670}
+\indexentry{灵}{1671}
+\indexentry{陵}{1672}
+\indexentry{岭}{1673}
+\indexentry{领}{1674}
+\indexentry{另}{1675}
+\indexentry{令}{1676}
+\indexentry{溜}{1677}
+\indexentry{琉}{1678}
+\indexentry{榴}{1679}
+\indexentry{硫}{1680}
+\indexentry{馏}{1681}
+\indexentry{留}{1682}
+\indexentry{刘}{1683}
+\indexentry{瘤}{1684}
+\indexentry{流}{1685}
+\indexentry{柳}{1686}
+\indexentry{六}{1687}
+\indexentry{龙}{1688}
+\indexentry{聋}{1689}
+\indexentry{咙}{1690}
+\indexentry{笼}{1691}
+\indexentry{窿}{1692}
+\indexentry{隆}{1693}
+\indexentry{垄}{1694}
+\indexentry{拢}{1695}
+\indexentry{陇}{1696}
+\indexentry{楼}{1697}
+\indexentry{娄}{1698}
+\indexentry{搂}{1699}
+\indexentry{篓}{1700}
+\indexentry{漏}{1701}
+\indexentry{陋}{1702}
+\indexentry{芦}{1703}
+\indexentry{卢}{1704}
+\indexentry{颅}{1705}
+\indexentry{庐}{1706}
+\indexentry{炉}{1707}
+\indexentry{掳}{1708}
+\indexentry{卤}{1709}
+\indexentry{虏}{1710}
+\indexentry{鲁}{1711}
+\indexentry{麓}{1712}
+\indexentry{碌}{1713}
+\indexentry{露}{1714}
+\indexentry{路}{1715}
+\indexentry{赂}{1716}
+\indexentry{鹿}{1717}
+\indexentry{潞}{1718}
+\indexentry{禄}{1719}
+\indexentry{录}{1720}
+\indexentry{陆}{1721}
+\indexentry{戮}{1722}
+\indexentry{驴}{1723}
+\indexentry{吕}{1724}
+\indexentry{铝}{1725}
+\indexentry{侣}{1726}
+\indexentry{旅}{1727}
+\indexentry{履}{1728}
+\indexentry{屡}{1729}
+\indexentry{缕}{1730}
+\indexentry{虑}{1731}
+\indexentry{氯}{1732}
+\indexentry{律}{1733}
+\indexentry{率}{1734}
+\indexentry{滤}{1735}
+\indexentry{绿}{1736}
+\indexentry{峦}{1737}
+\indexentry{挛}{1738}
+\indexentry{孪}{1739}
+\indexentry{滦}{1740}
+\indexentry{卵}{1741}
+\indexentry{乱}{1742}
+\indexentry{掠}{1743}
+\indexentry{略}{1744}
+\indexentry{抡}{1745}
+\indexentry{轮}{1746}
+\indexentry{伦}{1747}
+\indexentry{仑}{1748}
+\indexentry{沦}{1749}
+\indexentry{纶}{1750}
+\indexentry{论}{1751}
+\indexentry{萝}{1752}
+\indexentry{螺}{1753}
+\indexentry{罗}{1754}
+\indexentry{逻}{1755}
+\indexentry{锣}{1756}
+\indexentry{箩}{1757}
+\indexentry{骡}{1758}
+\indexentry{裸}{1759}
+\indexentry{落}{1760}
+\indexentry{洛}{1761}
+\indexentry{骆}{1762}
+\indexentry{络}{1763}
+\indexentry{妈}{1764}
+\indexentry{麻}{1765}
+\indexentry{玛}{1766}
+\indexentry{码}{1767}
+\indexentry{蚂}{1768}
+\indexentry{马}{1769}
+\indexentry{骂}{1770}
+\indexentry{嘛}{1771}
+\indexentry{吗}{1772}
+\indexentry{埋}{1773}
+\indexentry{买}{1774}
+\indexentry{麦}{1775}
+\indexentry{卖}{1776}
+\indexentry{迈}{1777}
+\indexentry{脉}{1778}
+\indexentry{瞒}{1779}
+\indexentry{馒}{1780}
+\indexentry{蛮}{1781}
+\indexentry{满}{1782}
+\indexentry{蔓}{1783}
+\indexentry{曼}{1784}
+\indexentry{慢}{1785}
+\indexentry{漫}{1786}
+\indexentry{谩}{1787}
+\indexentry{芒}{1788}
+\indexentry{茫}{1789}
+\indexentry{盲}{1790}
+\indexentry{氓}{1791}
+\indexentry{忙}{1792}
+\indexentry{莽}{1793}
+\indexentry{猫}{1794}
+\indexentry{茅}{1795}
+\indexentry{锚}{1796}
+\indexentry{毛}{1797}
+\indexentry{矛}{1798}
+\indexentry{铆}{1799}
+\indexentry{卯}{1800}
+\indexentry{茂}{1801}
+\indexentry{冒}{1802}
+\indexentry{帽}{1803}
+\indexentry{貌}{1804}
+\indexentry{贸}{1805}
+\indexentry{么}{1806}
+\indexentry{玫}{1807}
+\indexentry{枚}{1808}
+\indexentry{梅}{1809}
+\indexentry{酶}{1810}
+\indexentry{霉}{1811}
+\indexentry{煤}{1812}
+\indexentry{没}{1813}
+\indexentry{眉}{1814}
+\indexentry{媒}{1815}
+\indexentry{镁}{1816}
+\indexentry{每}{1817}
+\indexentry{美}{1818}
+\indexentry{昧}{1819}
+\indexentry{寐}{1820}
+\indexentry{妹}{1821}
+\indexentry{媚}{1822}
+\indexentry{门}{1823}
+\indexentry{闷}{1824}
+\indexentry{们}{1825}
+\indexentry{萌}{1826}
+\indexentry{蒙}{1827}
+\indexentry{檬}{1828}
+\indexentry{盟}{1829}
+\indexentry{锰}{1830}
+\indexentry{猛}{1831}
+\indexentry{梦}{1832}
+\indexentry{孟}{1833}
+\indexentry{眯}{1834}
+\indexentry{醚}{1835}
+\indexentry{靡}{1836}
+\indexentry{糜}{1837}
+\indexentry{迷}{1838}
+\indexentry{谜}{1839}
+\indexentry{弥}{1840}
+\indexentry{米}{1841}
+\indexentry{秘}{1842}
+\indexentry{觅}{1843}
+\indexentry{泌}{1844}
+\indexentry{蜜}{1845}
+\indexentry{密}{1846}
+\indexentry{幂}{1847}
+\indexentry{棉}{1848}
+\indexentry{眠}{1849}
+\indexentry{绵}{1850}
+\indexentry{冕}{1851}
+\indexentry{免}{1852}
+\indexentry{勉}{1853}
+\indexentry{娩}{1854}
+\indexentry{缅}{1855}
+\indexentry{面}{1856}
+\indexentry{苗}{1857}
+\indexentry{描}{1858}
+\indexentry{瞄}{1859}
+\indexentry{藐}{1860}
+\indexentry{秒}{1861}
+\indexentry{渺}{1862}
+\indexentry{庙}{1863}
+\indexentry{妙}{1864}
+\indexentry{蔑}{1865}
+\indexentry{灭}{1866}
+\indexentry{民}{1867}
+\indexentry{抿}{1868}
+\indexentry{皿}{1869}
+\indexentry{敏}{1870}
+\indexentry{悯}{1871}
+\indexentry{闽}{1872}
+\indexentry{明}{1873}
+\indexentry{螟}{1874}
+\indexentry{鸣}{1875}
+\indexentry{铭}{1876}
+\indexentry{名}{1877}
+\indexentry{命}{1878}
+\indexentry{谬}{1879}
+\indexentry{摸}{1880}
+\indexentry{摹}{1881}
+\indexentry{蘑}{1882}
+\indexentry{模}{1883}
+\indexentry{膜}{1884}
+\indexentry{磨}{1885}
+\indexentry{摩}{1886}
+\indexentry{魔}{1887}
+\indexentry{抹}{1888}
+\indexentry{末}{1889}
+\indexentry{莫}{1890}
+\indexentry{墨}{1891}
+\indexentry{默}{1892}
+\indexentry{沫}{1893}
+\indexentry{漠}{1894}
+\indexentry{寞}{1895}
+\indexentry{陌}{1896}
+\indexentry{谋}{1897}
+\indexentry{牟}{1898}
+\indexentry{某}{1899}
+\indexentry{拇}{1900}
+\indexentry{牡}{1901}
+\indexentry{亩}{1902}
+\indexentry{姆}{1903}
+\indexentry{母}{1904}
+\indexentry{墓}{1905}
+\indexentry{暮}{1906}
+\indexentry{幕}{1907}
+\indexentry{募}{1908}
+\indexentry{慕}{1909}
+\indexentry{木}{1910}
+\indexentry{目}{1911}
+\indexentry{睦}{1912}
+\indexentry{牧}{1913}
+\indexentry{穆}{1914}
+\indexentry{拿}{1915}
+\indexentry{哪}{1916}
+\indexentry{呐}{1917}
+\indexentry{钠}{1918}
+\indexentry{那}{1919}
+\indexentry{娜}{1920}
+\indexentry{纳}{1921}
+\indexentry{氖}{1922}
+\indexentry{乃}{1923}
+\indexentry{奶}{1924}
+\indexentry{耐}{1925}
+\indexentry{奈}{1926}
+\indexentry{南}{1927}
+\indexentry{男}{1928}
+\indexentry{难}{1929}
+\indexentry{囊}{1930}
+\indexentry{挠}{1931}
+\indexentry{脑}{1932}
+\indexentry{恼}{1933}
+\indexentry{闹}{1934}
+\indexentry{淖}{1935}
+\indexentry{呢}{1936}
+\indexentry{馁}{1937}
+\indexentry{内}{1938}
+\indexentry{嫩}{1939}
+\indexentry{能}{1940}
+\indexentry{妮}{1941}
+\indexentry{霓}{1942}
+\indexentry{倪}{1943}
+\indexentry{泥}{1944}
+\indexentry{尼}{1945}
+\indexentry{拟}{1946}
+\indexentry{你}{1947}
+\indexentry{匿}{1948}
+\indexentry{腻}{1949}
+\indexentry{逆}{1950}
+\indexentry{溺}{1951}
+\indexentry{蔫}{1952}
+\indexentry{拈}{1953}
+\indexentry{年}{1954}
+\indexentry{碾}{1955}
+\indexentry{撵}{1956}
+\indexentry{捻}{1957}
+\indexentry{念}{1958}
+\indexentry{娘}{1959}
+\indexentry{酿}{1960}
+\indexentry{鸟}{1961}
+\indexentry{尿}{1962}
+\indexentry{捏}{1963}
+\indexentry{聂}{1964}
+\indexentry{孽}{1965}
+\indexentry{啮}{1966}
+\indexentry{镊}{1967}
+\indexentry{镍}{1968}
+\indexentry{涅}{1969}
+\indexentry{您}{1970}
+\indexentry{柠}{1971}
+\indexentry{狞}{1972}
+\indexentry{凝}{1973}
+\indexentry{宁}{1974}
+\indexentry{拧}{1975}
+\indexentry{泞}{1976}
+\indexentry{牛}{1977}
+\indexentry{扭}{1978}
+\indexentry{钮}{1979}
+\indexentry{纽}{1980}
+\indexentry{脓}{1981}
+\indexentry{浓}{1982}
+\indexentry{农}{1983}
+\indexentry{弄}{1984}
+\indexentry{奴}{1985}
+\indexentry{努}{1986}
+\indexentry{怒}{1987}
+\indexentry{女}{1988}
+\indexentry{暖}{1989}
+\indexentry{虐}{1990}
+\indexentry{疟}{1991}
+\indexentry{挪}{1992}
+\indexentry{懦}{1993}
+\indexentry{糯}{1994}
+\indexentry{诺}{1995}
+\indexentry{哦}{1996}
+\indexentry{欧}{1997}
+\indexentry{鸥}{1998}
+\indexentry{殴}{1999}
+\indexentry{藕}{2000}
+\indexentry{呕}{2001}
+\indexentry{偶}{2002}
+\indexentry{沤}{2003}
+\indexentry{啪}{2004}
+\indexentry{趴}{2005}
+\indexentry{爬}{2006}
+\indexentry{帕}{2007}
+\indexentry{怕}{2008}
+\indexentry{琶}{2009}
+\indexentry{拍}{2010}
+\indexentry{排}{2011}
+\indexentry{牌}{2012}
+\indexentry{徘}{2013}
+\indexentry{湃}{2014}
+\indexentry{派}{2015}
+\indexentry{攀}{2016}
+\indexentry{潘}{2017}
+\indexentry{盘}{2018}
+\indexentry{磐}{2019}
+\indexentry{盼}{2020}
+\indexentry{畔}{2021}
+\indexentry{判}{2022}
+\indexentry{叛}{2023}
+\indexentry{乓}{2024}
+\indexentry{庞}{2025}
+\indexentry{旁}{2026}
+\indexentry{耪}{2027}
+\indexentry{胖}{2028}
+\indexentry{抛}{2029}
+\indexentry{咆}{2030}
+\indexentry{刨}{2031}
+\indexentry{炮}{2032}
+\indexentry{袍}{2033}
+\indexentry{跑}{2034}
+\indexentry{泡}{2035}
+\indexentry{呸}{2036}
+\indexentry{胚}{2037}
+\indexentry{培}{2038}
+\indexentry{裴}{2039}
+\indexentry{赔}{2040}
+\indexentry{陪}{2041}
+\indexentry{配}{2042}
+\indexentry{佩}{2043}
+\indexentry{沛}{2044}
+\indexentry{喷}{2045}
+\indexentry{盆}{2046}
+\indexentry{砰}{2047}
+\indexentry{抨}{2048}
+\indexentry{烹}{2049}
+\indexentry{澎}{2050}
+\indexentry{彭}{2051}
+\indexentry{蓬}{2052}
+\indexentry{棚}{2053}
+\indexentry{硼}{2054}
+\indexentry{篷}{2055}
+\indexentry{膨}{2056}
+\indexentry{朋}{2057}
+\indexentry{鹏}{2058}
+\indexentry{捧}{2059}
+\indexentry{碰}{2060}
+\indexentry{坯}{2061}
+\indexentry{砒}{2062}
+\indexentry{霹}{2063}
+\indexentry{批}{2064}
+\indexentry{披}{2065}
+\indexentry{劈}{2066}
+\indexentry{琵}{2067}
+\indexentry{毗}{2068}
+\indexentry{啤}{2069}
+\indexentry{脾}{2070}
+\indexentry{疲}{2071}
+\indexentry{皮}{2072}
+\indexentry{匹}{2073}
+\indexentry{痞}{2074}
+\indexentry{僻}{2075}
+\indexentry{屁}{2076}
+\indexentry{譬}{2077}
+\indexentry{篇}{2078}
+\indexentry{偏}{2079}
+\indexentry{片}{2080}
+\indexentry{骗}{2081}
+\indexentry{飘}{2082}
+\indexentry{漂}{2083}
+\indexentry{瓢}{2084}
+\indexentry{票}{2085}
+\indexentry{撇}{2086}
+\indexentry{瞥}{2087}
+\indexentry{拼}{2088}
+\indexentry{频}{2089}
+\indexentry{贫}{2090}
+\indexentry{品}{2091}
+\indexentry{聘}{2092}
+\indexentry{乒}{2093}
+\indexentry{坪}{2094}
+\indexentry{苹}{2095}
+\indexentry{萍}{2096}
+\indexentry{平}{2097}
+\indexentry{凭}{2098}
+\indexentry{瓶}{2099}
+\indexentry{评}{2100}
+\indexentry{屏}{2101}
+\indexentry{坡}{2102}
+\indexentry{泼}{2103}
+\indexentry{颇}{2104}
+\indexentry{婆}{2105}
+\indexentry{破}{2106}
+\indexentry{魄}{2107}
+\indexentry{迫}{2108}
+\indexentry{粕}{2109}
+\indexentry{剖}{2110}
+\indexentry{扑}{2111}
+\indexentry{铺}{2112}
+\indexentry{仆}{2113}
+\indexentry{莆}{2114}
+\indexentry{葡}{2115}
+\indexentry{菩}{2116}
+\indexentry{蒲}{2117}
+\indexentry{埔}{2118}
+\indexentry{朴}{2119}
+\indexentry{圃}{2120}
+\indexentry{普}{2121}
+\indexentry{浦}{2122}
+\indexentry{谱}{2123}
+\indexentry{曝}{2124}
+\indexentry{瀑}{2125}
+\indexentry{期}{2126}
+\indexentry{欺}{2127}
+\indexentry{栖}{2128}
+\indexentry{戚}{2129}
+\indexentry{妻}{2130}
+\indexentry{七}{2131}
+\indexentry{凄}{2132}
+\indexentry{漆}{2133}
+\indexentry{柒}{2134}
+\indexentry{沏}{2135}
+\indexentry{其}{2136}
+\indexentry{棋}{2137}
+\indexentry{奇}{2138}
+\indexentry{歧}{2139}
+\indexentry{畦}{2140}
+\indexentry{崎}{2141}
+\indexentry{脐}{2142}
+\indexentry{齐}{2143}
+\indexentry{旗}{2144}
+\indexentry{祈}{2145}
+\indexentry{祁}{2146}
+\indexentry{骑}{2147}
+\indexentry{起}{2148}
+\indexentry{岂}{2149}
+\indexentry{乞}{2150}
+\indexentry{企}{2151}
+\indexentry{启}{2152}
+\indexentry{契}{2153}
+\indexentry{砌}{2154}
+\indexentry{器}{2155}
+\indexentry{气}{2156}
+\indexentry{迄}{2157}
+\indexentry{弃}{2158}
+\indexentry{汽}{2159}
+\indexentry{泣}{2160}
+\indexentry{讫}{2161}
+\indexentry{掐}{2162}
+\indexentry{恰}{2163}
+\indexentry{洽}{2164}
+\indexentry{牵}{2165}
+\indexentry{扦}{2166}
+\indexentry{钎}{2167}
+\indexentry{铅}{2168}
+\indexentry{千}{2169}
+\indexentry{迁}{2170}
+\indexentry{签}{2171}
+\indexentry{仟}{2172}
+\indexentry{谦}{2173}
+\indexentry{乾}{2174}
+\indexentry{黔}{2175}
+\indexentry{钱}{2176}
+\indexentry{钳}{2177}
+\indexentry{前}{2178}
+\indexentry{潜}{2179}
+\indexentry{遣}{2180}
+\indexentry{浅}{2181}
+\indexentry{谴}{2182}
+\indexentry{堑}{2183}
+\indexentry{嵌}{2184}
+\indexentry{欠}{2185}
+\indexentry{歉}{2186}
+\indexentry{枪}{2187}
+\indexentry{呛}{2188}
+\indexentry{腔}{2189}
+\indexentry{羌}{2190}
+\indexentry{墙}{2191}
+\indexentry{蔷}{2192}
+\indexentry{强}{2193}
+\indexentry{抢}{2194}
+\indexentry{橇}{2195}
+\indexentry{锹}{2196}
+\indexentry{敲}{2197}
+\indexentry{悄}{2198}
+\indexentry{桥}{2199}
+\indexentry{瞧}{2200}
+\indexentry{乔}{2201}
+\indexentry{侨}{2202}
+\indexentry{巧}{2203}
+\indexentry{鞘}{2204}
+\indexentry{撬}{2205}
+\indexentry{翘}{2206}
+\indexentry{峭}{2207}
+\indexentry{俏}{2208}
+\indexentry{窍}{2209}
+\indexentry{切}{2210}
+\indexentry{茄}{2211}
+\indexentry{且}{2212}
+\indexentry{怯}{2213}
+\indexentry{窃}{2214}
+\indexentry{钦}{2215}
+\indexentry{侵}{2216}
+\indexentry{亲}{2217}
+\indexentry{秦}{2218}
+\indexentry{琴}{2219}
+\indexentry{勤}{2220}
+\indexentry{芹}{2221}
+\indexentry{擒}{2222}
+\indexentry{禽}{2223}
+\indexentry{寝}{2224}
+\indexentry{沁}{2225}
+\indexentry{青}{2226}
+\indexentry{轻}{2227}
+\indexentry{氢}{2228}
+\indexentry{倾}{2229}
+\indexentry{卿}{2230}
+\indexentry{清}{2231}
+\indexentry{擎}{2232}
+\indexentry{晴}{2233}
+\indexentry{氰}{2234}
+\indexentry{情}{2235}
+\indexentry{顷}{2236}
+\indexentry{请}{2237}
+\indexentry{庆}{2238}
+\indexentry{琼}{2239}
+\indexentry{穷}{2240}
+\indexentry{秋}{2241}
+\indexentry{丘}{2242}
+\indexentry{邱}{2243}
+\indexentry{球}{2244}
+\indexentry{求}{2245}
+\indexentry{囚}{2246}
+\indexentry{酋}{2247}
+\indexentry{泅}{2248}
+\indexentry{趋}{2249}
+\indexentry{区}{2250}
+\indexentry{蛆}{2251}
+\indexentry{曲}{2252}
+\indexentry{躯}{2253}
+\indexentry{屈}{2254}
+\indexentry{驱}{2255}
+\indexentry{渠}{2256}
+\indexentry{取}{2257}
+\indexentry{娶}{2258}
+\indexentry{龋}{2259}
+\indexentry{趣}{2260}
+\indexentry{去}{2261}
+\indexentry{圈}{2262}
+\indexentry{颧}{2263}
+\indexentry{权}{2264}
+\indexentry{醛}{2265}
+\indexentry{泉}{2266}
+\indexentry{全}{2267}
+\indexentry{痊}{2268}
+\indexentry{拳}{2269}
+\indexentry{犬}{2270}
+\indexentry{券}{2271}
+\indexentry{劝}{2272}
+\indexentry{缺}{2273}
+\indexentry{炔}{2274}
+\indexentry{瘸}{2275}
+\indexentry{却}{2276}
+\indexentry{鹊}{2277}
+\indexentry{榷}{2278}
+\indexentry{确}{2279}
+\indexentry{雀}{2280}
+\indexentry{裙}{2281}
+\indexentry{群}{2282}
+\indexentry{然}{2283}
+\indexentry{燃}{2284}
+\indexentry{冉}{2285}
+\indexentry{染}{2286}
+\indexentry{瓤}{2287}
+\indexentry{壤}{2288}
+\indexentry{攘}{2289}
+\indexentry{嚷}{2290}
+\indexentry{让}{2291}
+\indexentry{饶}{2292}
+\indexentry{扰}{2293}
+\indexentry{绕}{2294}
+\indexentry{惹}{2295}
+\indexentry{热}{2296}
+\indexentry{壬}{2297}
+\indexentry{仁}{2298}
+\indexentry{人}{2299}
+\indexentry{忍}{2300}
+\indexentry{韧}{2301}
+\indexentry{任}{2302}
+\indexentry{认}{2303}
+\indexentry{刃}{2304}
+\indexentry{妊}{2305}
+\indexentry{纫}{2306}
+\indexentry{扔}{2307}
+\indexentry{仍}{2308}
+\indexentry{日}{2309}
+\indexentry{戎}{2310}
+\indexentry{茸}{2311}
+\indexentry{蓉}{2312}
+\indexentry{荣}{2313}
+\indexentry{融}{2314}
+\indexentry{熔}{2315}
+\indexentry{溶}{2316}
+\indexentry{容}{2317}
+\indexentry{绒}{2318}
+\indexentry{冗}{2319}
+\indexentry{揉}{2320}
+\indexentry{柔}{2321}
+\indexentry{肉}{2322}
+\indexentry{茹}{2323}
+\indexentry{蠕}{2324}
+\indexentry{儒}{2325}
+\indexentry{孺}{2326}
+\indexentry{如}{2327}
+\indexentry{辱}{2328}
+\indexentry{乳}{2329}
+\indexentry{汝}{2330}
+\indexentry{入}{2331}
+\indexentry{褥}{2332}
+\indexentry{软}{2333}
+\indexentry{阮}{2334}
+\indexentry{蕊}{2335}
+\indexentry{瑞}{2336}
+\indexentry{锐}{2337}
+\indexentry{闰}{2338}
+\indexentry{润}{2339}
+\indexentry{若}{2340}
+\indexentry{弱}{2341}
+\indexentry{撒}{2342}
+\indexentry{洒}{2343}
+\indexentry{萨}{2344}
+\indexentry{腮}{2345}
+\indexentry{鳃}{2346}
+\indexentry{塞}{2347}
+\indexentry{赛}{2348}
+\indexentry{三}{2349}
+\indexentry{叁}{2350}
+\indexentry{伞}{2351}
+\indexentry{散}{2352}
+\indexentry{桑}{2353}
+\indexentry{嗓}{2354}
+\indexentry{丧}{2355}
+\indexentry{搔}{2356}
+\indexentry{骚}{2357}
+\indexentry{扫}{2358}
+\indexentry{嫂}{2359}
+\indexentry{瑟}{2360}
+\indexentry{色}{2361}
+\indexentry{涩}{2362}
+\indexentry{森}{2363}
+\indexentry{僧}{2364}
+\indexentry{莎}{2365}
+\indexentry{砂}{2366}
+\indexentry{杀}{2367}
+\indexentry{刹}{2368}
+\indexentry{沙}{2369}
+\indexentry{纱}{2370}
+\indexentry{傻}{2371}
+\indexentry{啥}{2372}
+\indexentry{煞}{2373}
+\indexentry{筛}{2374}
+\indexentry{晒}{2375}
+\indexentry{珊}{2376}
+\indexentry{苫}{2377}
+\indexentry{杉}{2378}
+\indexentry{山}{2379}
+\indexentry{删}{2380}
+\indexentry{煽}{2381}
+\indexentry{衫}{2382}
+\indexentry{闪}{2383}
+\indexentry{陕}{2384}
+\indexentry{擅}{2385}
+\indexentry{赡}{2386}
+\indexentry{膳}{2387}
+\indexentry{善}{2388}
+\indexentry{汕}{2389}
+\indexentry{扇}{2390}
+\indexentry{缮}{2391}
+\indexentry{墒}{2392}
+\indexentry{伤}{2393}
+\indexentry{商}{2394}
+\indexentry{赏}{2395}
+\indexentry{晌}{2396}
+\indexentry{上}{2397}
+\indexentry{尚}{2398}
+\indexentry{裳}{2399}
+\indexentry{梢}{2400}
+\indexentry{捎}{2401}
+\indexentry{稍}{2402}
+\indexentry{烧}{2403}
+\indexentry{芍}{2404}
+\indexentry{勺}{2405}
+\indexentry{韶}{2406}
+\indexentry{少}{2407}
+\indexentry{哨}{2408}
+\indexentry{邵}{2409}
+\indexentry{绍}{2410}
+\indexentry{奢}{2411}
+\indexentry{赊}{2412}
+\indexentry{蛇}{2413}
+\indexentry{舌}{2414}
+\indexentry{舍}{2415}
+\indexentry{赦}{2416}
+\indexentry{摄}{2417}
+\indexentry{射}{2418}
+\indexentry{慑}{2419}
+\indexentry{涉}{2420}
+\indexentry{社}{2421}
+\indexentry{设}{2422}
+\indexentry{砷}{2423}
+\indexentry{申}{2424}
+\indexentry{呻}{2425}
+\indexentry{伸}{2426}
+\indexentry{身}{2427}
+\indexentry{深}{2428}
+\indexentry{娠}{2429}
+\indexentry{绅}{2430}
+\indexentry{神}{2431}
+\indexentry{沈}{2432}
+\indexentry{审}{2433}
+\indexentry{婶}{2434}
+\indexentry{甚}{2435}
+\indexentry{肾}{2436}
+\indexentry{慎}{2437}
+\indexentry{渗}{2438}
+\indexentry{声}{2439}
+\indexentry{生}{2440}
+\indexentry{甥}{2441}
+\indexentry{牲}{2442}
+\indexentry{升}{2443}
+\indexentry{绳}{2444}
+\indexentry{省}{2445}
+\indexentry{盛}{2446}
+\indexentry{剩}{2447}
+\indexentry{胜}{2448}
+\indexentry{圣}{2449}
+\indexentry{师}{2450}
+\indexentry{失}{2451}
+\indexentry{狮}{2452}
+\indexentry{施}{2453}
+\indexentry{湿}{2454}
+\indexentry{诗}{2455}
+\indexentry{尸}{2456}
+\indexentry{虱}{2457}
+\indexentry{十}{2458}
+\indexentry{石}{2459}
+\indexentry{拾}{2460}
+\indexentry{时}{2461}
+\indexentry{什}{2462}
+\indexentry{食}{2463}
+\indexentry{蚀}{2464}
+\indexentry{实}{2465}
+\indexentry{识}{2466}
+\indexentry{史}{2467}
+\indexentry{矢}{2468}
+\indexentry{使}{2469}
+\indexentry{屎}{2470}
+\indexentry{驶}{2471}
+\indexentry{始}{2472}
+\indexentry{式}{2473}
+\indexentry{示}{2474}
+\indexentry{士}{2475}
+\indexentry{世}{2476}
+\indexentry{柿}{2477}
+\indexentry{事}{2478}
+\indexentry{拭}{2479}
+\indexentry{誓}{2480}
+\indexentry{逝}{2481}
+\indexentry{势}{2482}
+\indexentry{是}{2483}
+\indexentry{嗜}{2484}
+\indexentry{噬}{2485}
+\indexentry{适}{2486}
+\indexentry{仕}{2487}
+\indexentry{侍}{2488}
+\indexentry{释}{2489}
+\indexentry{饰}{2490}
+\indexentry{氏}{2491}
+\indexentry{市}{2492}
+\indexentry{恃}{2493}
+\indexentry{室}{2494}
+\indexentry{视}{2495}
+\indexentry{试}{2496}
+\indexentry{收}{2497}
+\indexentry{手}{2498}
+\indexentry{首}{2499}
+\indexentry{守}{2500}
+\indexentry{寿}{2501}
+\indexentry{授}{2502}
+\indexentry{售}{2503}
+\indexentry{受}{2504}
+\indexentry{瘦}{2505}
+\indexentry{兽}{2506}
+\indexentry{蔬}{2507}
+\indexentry{枢}{2508}
+\indexentry{梳}{2509}
+\indexentry{殊}{2510}
+\indexentry{抒}{2511}
+\indexentry{输}{2512}
+\indexentry{叔}{2513}
+\indexentry{舒}{2514}
+\indexentry{淑}{2515}
+\indexentry{疏}{2516}
+\indexentry{书}{2517}
+\indexentry{赎}{2518}
+\indexentry{孰}{2519}
+\indexentry{熟}{2520}
+\indexentry{薯}{2521}
+\indexentry{暑}{2522}
+\indexentry{曙}{2523}
+\indexentry{署}{2524}
+\indexentry{蜀}{2525}
+\indexentry{黍}{2526}
+\indexentry{鼠}{2527}
+\indexentry{属}{2528}
+\indexentry{术}{2529}
+\indexentry{述}{2530}
+\indexentry{树}{2531}
+\indexentry{束}{2532}
+\indexentry{戍}{2533}
+\indexentry{竖}{2534}
+\indexentry{墅}{2535}
+\indexentry{庶}{2536}
+\indexentry{数}{2537}
+\indexentry{漱}{2538}
+\indexentry{恕}{2539}
+\indexentry{刷}{2540}
+\indexentry{耍}{2541}
+\indexentry{摔}{2542}
+\indexentry{衰}{2543}
+\indexentry{甩}{2544}
+\indexentry{帅}{2545}
+\indexentry{栓}{2546}
+\indexentry{拴}{2547}
+\indexentry{霜}{2548}
+\indexentry{双}{2549}
+\indexentry{爽}{2550}
+\indexentry{谁}{2551}
+\indexentry{水}{2552}
+\indexentry{睡}{2553}
+\indexentry{税}{2554}
+\indexentry{吮}{2555}
+\indexentry{瞬}{2556}
+\indexentry{顺}{2557}
+\indexentry{舜}{2558}
+\indexentry{说}{2559}
+\indexentry{硕}{2560}
+\indexentry{朔}{2561}
+\indexentry{烁}{2562}
+\indexentry{斯}{2563}
+\indexentry{撕}{2564}
+\indexentry{嘶}{2565}
+\indexentry{思}{2566}
+\indexentry{私}{2567}
+\indexentry{司}{2568}
+\indexentry{丝}{2569}
+\indexentry{死}{2570}
+\indexentry{肆}{2571}
+\indexentry{寺}{2572}
+\indexentry{嗣}{2573}
+\indexentry{四}{2574}
+\indexentry{伺}{2575}
+\indexentry{似}{2576}
+\indexentry{饲}{2577}
+\indexentry{巳}{2578}
+\indexentry{松}{2579}
+\indexentry{耸}{2580}
+\indexentry{怂}{2581}
+\indexentry{颂}{2582}
+\indexentry{送}{2583}
+\indexentry{宋}{2584}
+\indexentry{讼}{2585}
+\indexentry{诵}{2586}
+\indexentry{搜}{2587}
+\indexentry{艘}{2588}
+\indexentry{擞}{2589}
+\indexentry{嗽}{2590}
+\indexentry{苏}{2591}
+\indexentry{酥}{2592}
+\indexentry{俗}{2593}
+\indexentry{素}{2594}
+\indexentry{速}{2595}
+\indexentry{粟}{2596}
+\indexentry{僳}{2597}
+\indexentry{塑}{2598}
+\indexentry{溯}{2599}
+\indexentry{宿}{2600}
+\indexentry{诉}{2601}
+\indexentry{肃}{2602}
+\indexentry{酸}{2603}
+\indexentry{蒜}{2604}
+\indexentry{算}{2605}
+\indexentry{虽}{2606}
+\indexentry{隋}{2607}
+\indexentry{随}{2608}
+\indexentry{绥}{2609}
+\indexentry{髓}{2610}
+\indexentry{碎}{2611}
+\indexentry{岁}{2612}
+\indexentry{穗}{2613}
+\indexentry{遂}{2614}
+\indexentry{隧}{2615}
+\indexentry{祟}{2616}
+\indexentry{孙}{2617}
+\indexentry{损}{2618}
+\indexentry{笋}{2619}
+\indexentry{蓑}{2620}
+\indexentry{梭}{2621}
+\indexentry{唆}{2622}
+\indexentry{缩}{2623}
+\indexentry{琐}{2624}
+\indexentry{索}{2625}
+\indexentry{锁}{2626}
+\indexentry{所}{2627}
+\indexentry{塌}{2628}
+\indexentry{他}{2629}
+\indexentry{它}{2630}
+\indexentry{她}{2631}
+\indexentry{塔}{2632}
+\indexentry{獭}{2633}
+\indexentry{挞}{2634}
+\indexentry{蹋}{2635}
+\indexentry{踏}{2636}
+\indexentry{胎}{2637}
+\indexentry{苔}{2638}
+\indexentry{抬}{2639}
+\indexentry{台}{2640}
+\indexentry{泰}{2641}
+\indexentry{酞}{2642}
+\indexentry{太}{2643}
+\indexentry{态}{2644}
+\indexentry{汰}{2645}
+\indexentry{坍}{2646}
+\indexentry{摊}{2647}
+\indexentry{贪}{2648}
+\indexentry{瘫}{2649}
+\indexentry{滩}{2650}
+\indexentry{坛}{2651}
+\indexentry{檀}{2652}
+\indexentry{痰}{2653}
+\indexentry{潭}{2654}
+\indexentry{谭}{2655}
+\indexentry{谈}{2656}
+\indexentry{坦}{2657}
+\indexentry{毯}{2658}
+\indexentry{袒}{2659}
+\indexentry{碳}{2660}
+\indexentry{探}{2661}
+\indexentry{叹}{2662}
+\indexentry{炭}{2663}
+\indexentry{汤}{2664}
+\indexentry{塘}{2665}
+\indexentry{搪}{2666}
+\indexentry{堂}{2667}
+\indexentry{棠}{2668}
+\indexentry{膛}{2669}
+\indexentry{唐}{2670}
+\indexentry{糖}{2671}
+\indexentry{倘}{2672}
+\indexentry{躺}{2673}
+\indexentry{淌}{2674}
+\indexentry{趟}{2675}
+\indexentry{烫}{2676}
+\indexentry{掏}{2677}
+\indexentry{涛}{2678}
+\indexentry{滔}{2679}
+\indexentry{绦}{2680}
+\indexentry{萄}{2681}
+\indexentry{桃}{2682}
+\indexentry{逃}{2683}
+\indexentry{淘}{2684}
+\indexentry{陶}{2685}
+\indexentry{讨}{2686}
+\indexentry{套}{2687}
+\indexentry{特}{2688}
+\indexentry{藤}{2689}
+\indexentry{腾}{2690}
+\indexentry{疼}{2691}
+\indexentry{誊}{2692}
+\indexentry{梯}{2693}
+\indexentry{剔}{2694}
+\indexentry{踢}{2695}
+\indexentry{锑}{2696}
+\indexentry{提}{2697}
+\indexentry{题}{2698}
+\indexentry{蹄}{2699}
+\indexentry{啼}{2700}
+\indexentry{体}{2701}
+\indexentry{替}{2702}
+\indexentry{嚏}{2703}
+\indexentry{惕}{2704}
+\indexentry{涕}{2705}
+\indexentry{剃}{2706}
+\indexentry{屉}{2707}
+\indexentry{天}{2708}
+\indexentry{添}{2709}
+\indexentry{填}{2710}
+\indexentry{田}{2711}
+\indexentry{甜}{2712}
+\indexentry{恬}{2713}
+\indexentry{舔}{2714}
+\indexentry{腆}{2715}
+\indexentry{挑}{2716}
+\indexentry{条}{2717}
+\indexentry{迢}{2718}
+\indexentry{眺}{2719}
+\indexentry{跳}{2720}
+\indexentry{贴}{2721}
+\indexentry{铁}{2722}
+\indexentry{帖}{2723}
+\indexentry{厅}{2724}
+\indexentry{听}{2725}
+\indexentry{烃}{2726}
+\indexentry{汀}{2727}
+\indexentry{廷}{2728}
+\indexentry{停}{2729}
+\indexentry{亭}{2730}
+\indexentry{庭}{2731}
+\indexentry{挺}{2732}
+\indexentry{艇}{2733}
+\indexentry{通}{2734}
+\indexentry{桐}{2735}
+\indexentry{酮}{2736}
+\indexentry{瞳}{2737}
+\indexentry{同}{2738}
+\indexentry{铜}{2739}
+\indexentry{彤}{2740}
+\indexentry{童}{2741}
+\indexentry{桶}{2742}
+\indexentry{捅}{2743}
+\indexentry{筒}{2744}
+\indexentry{统}{2745}
+\indexentry{痛}{2746}
+\indexentry{偷}{2747}
+\indexentry{投}{2748}
+\indexentry{头}{2749}
+\indexentry{透}{2750}
+\indexentry{凸}{2751}
+\indexentry{秃}{2752}
+\indexentry{突}{2753}
+\indexentry{图}{2754}
+\indexentry{徒}{2755}
+\indexentry{途}{2756}
+\indexentry{涂}{2757}
+\indexentry{屠}{2758}
+\indexentry{土}{2759}
+\indexentry{吐}{2760}
+\indexentry{兔}{2761}
+\indexentry{湍}{2762}
+\indexentry{团}{2763}
+\indexentry{推}{2764}
+\indexentry{颓}{2765}
+\indexentry{腿}{2766}
+\indexentry{蜕}{2767}
+\indexentry{褪}{2768}
+\indexentry{退}{2769}
+\indexentry{吞}{2770}
+\indexentry{屯}{2771}
+\indexentry{臀}{2772}
+\indexentry{拖}{2773}
+\indexentry{托}{2774}
+\indexentry{脱}{2775}
+\indexentry{鸵}{2776}
+\indexentry{陀}{2777}
+\indexentry{驮}{2778}
+\indexentry{驼}{2779}
+\indexentry{椭}{2780}
+\indexentry{妥}{2781}
+\indexentry{拓}{2782}
+\indexentry{唾}{2783}
+\indexentry{挖}{2784}
+\indexentry{哇}{2785}
+\indexentry{蛙}{2786}
+\indexentry{洼}{2787}
+\indexentry{娃}{2788}
+\indexentry{瓦}{2789}
+\indexentry{袜}{2790}
+\indexentry{歪}{2791}
+\indexentry{外}{2792}
+\indexentry{豌}{2793}
+\indexentry{弯}{2794}
+\indexentry{湾}{2795}
+\indexentry{玩}{2796}
+\indexentry{顽}{2797}
+\indexentry{丸}{2798}
+\indexentry{烷}{2799}
+\indexentry{完}{2800}
+\indexentry{碗}{2801}
+\indexentry{挽}{2802}
+\indexentry{晚}{2803}
+\indexentry{皖}{2804}
+\indexentry{惋}{2805}
+\indexentry{宛}{2806}
+\indexentry{婉}{2807}
+\indexentry{万}{2808}
+\indexentry{腕}{2809}
+\indexentry{汪}{2810}
+\indexentry{王}{2811}
+\indexentry{亡}{2812}
+\indexentry{枉}{2813}
+\indexentry{网}{2814}
+\indexentry{往}{2815}
+\indexentry{旺}{2816}
+\indexentry{望}{2817}
+\indexentry{忘}{2818}
+\indexentry{妄}{2819}
+\indexentry{威}{2820}
+\indexentry{巍}{2821}
+\indexentry{微}{2822}
+\indexentry{危}{2823}
+\indexentry{韦}{2824}
+\indexentry{违}{2825}
+\indexentry{桅}{2826}
+\indexentry{围}{2827}
+\indexentry{唯}{2828}
+\indexentry{惟}{2829}
+\indexentry{为}{2830}
+\indexentry{潍}{2831}
+\indexentry{维}{2832}
+\indexentry{苇}{2833}
+\indexentry{萎}{2834}
+\indexentry{委}{2835}
+\indexentry{伟}{2836}
+\indexentry{伪}{2837}
+\indexentry{尾}{2838}
+\indexentry{纬}{2839}
+\indexentry{未}{2840}
+\indexentry{蔚}{2841}
+\indexentry{味}{2842}
+\indexentry{畏}{2843}
+\indexentry{胃}{2844}
+\indexentry{喂}{2845}
+\indexentry{魏}{2846}
+\indexentry{位}{2847}
+\indexentry{渭}{2848}
+\indexentry{谓}{2849}
+\indexentry{尉}{2850}
+\indexentry{慰}{2851}
+\indexentry{卫}{2852}
+\indexentry{瘟}{2853}
+\indexentry{温}{2854}
+\indexentry{蚊}{2855}
+\indexentry{文}{2856}
+\indexentry{闻}{2857}
+\indexentry{纹}{2858}
+\indexentry{吻}{2859}
+\indexentry{稳}{2860}
+\indexentry{紊}{2861}
+\indexentry{问}{2862}
+\indexentry{嗡}{2863}
+\indexentry{翁}{2864}
+\indexentry{瓮}{2865}
+\indexentry{挝}{2866}
+\indexentry{蜗}{2867}
+\indexentry{涡}{2868}
+\indexentry{窝}{2869}
+\indexentry{我}{2870}
+\indexentry{斡}{2871}
+\indexentry{卧}{2872}
+\indexentry{握}{2873}
+\indexentry{沃}{2874}
+\indexentry{巫}{2875}
+\indexentry{呜}{2876}
+\indexentry{钨}{2877}
+\indexentry{乌}{2878}
+\indexentry{污}{2879}
+\indexentry{诬}{2880}
+\indexentry{屋}{2881}
+\indexentry{无}{2882}
+\indexentry{芜}{2883}
+\indexentry{梧}{2884}
+\indexentry{吾}{2885}
+\indexentry{吴}{2886}
+\indexentry{毋}{2887}
+\indexentry{武}{2888}
+\indexentry{五}{2889}
+\indexentry{捂}{2890}
+\indexentry{午}{2891}
+\indexentry{舞}{2892}
+\indexentry{伍}{2893}
+\indexentry{侮}{2894}
+\indexentry{坞}{2895}
+\indexentry{戊}{2896}
+\indexentry{雾}{2897}
+\indexentry{晤}{2898}
+\indexentry{物}{2899}
+\indexentry{勿}{2900}
+\indexentry{务}{2901}
+\indexentry{悟}{2902}
+\indexentry{误}{2903}
+\indexentry{昔}{2904}
+\indexentry{熙}{2905}
+\indexentry{析}{2906}
+\indexentry{西}{2907}
+\indexentry{硒}{2908}
+\indexentry{矽}{2909}
+\indexentry{晰}{2910}
+\indexentry{嘻}{2911}
+\indexentry{吸}{2912}
+\indexentry{锡}{2913}
+\indexentry{牺}{2914}
+\indexentry{稀}{2915}
+\indexentry{息}{2916}
+\indexentry{希}{2917}
+\indexentry{悉}{2918}
+\indexentry{膝}{2919}
+\indexentry{夕}{2920}
+\indexentry{惜}{2921}
+\indexentry{熄}{2922}
+\indexentry{烯}{2923}
+\indexentry{溪}{2924}
+\indexentry{汐}{2925}
+\indexentry{犀}{2926}
+\indexentry{檄}{2927}
+\indexentry{袭}{2928}
+\indexentry{席}{2929}
+\indexentry{习}{2930}
+\indexentry{媳}{2931}
+\indexentry{喜}{2932}
+\indexentry{铣}{2933}
+\indexentry{洗}{2934}
+\indexentry{系}{2935}
+\indexentry{隙}{2936}
+\indexentry{戏}{2937}
+\indexentry{细}{2938}
+\indexentry{瞎}{2939}
+\indexentry{虾}{2940}
+\indexentry{匣}{2941}
+\indexentry{霞}{2942}
+\indexentry{辖}{2943}
+\indexentry{暇}{2944}
+\indexentry{峡}{2945}
+\indexentry{侠}{2946}
+\indexentry{狭}{2947}
+\indexentry{下}{2948}
+\indexentry{厦}{2949}
+\indexentry{夏}{2950}
+\indexentry{吓}{2951}
+\indexentry{掀}{2952}
+\indexentry{锨}{2953}
+\indexentry{先}{2954}
+\indexentry{仙}{2955}
+\indexentry{鲜}{2956}
+\indexentry{纤}{2957}
+\indexentry{咸}{2958}
+\indexentry{贤}{2959}
+\indexentry{衔}{2960}
+\indexentry{舷}{2961}
+\indexentry{闲}{2962}
+\indexentry{涎}{2963}
+\indexentry{弦}{2964}
+\indexentry{嫌}{2965}
+\indexentry{显}{2966}
+\indexentry{险}{2967}
+\indexentry{现}{2968}
+\indexentry{献}{2969}
+\indexentry{县}{2970}
+\indexentry{腺}{2971}
+\indexentry{馅}{2972}
+\indexentry{羡}{2973}
+\indexentry{宪}{2974}
+\indexentry{陷}{2975}
+\indexentry{限}{2976}
+\indexentry{线}{2977}
+\indexentry{相}{2978}
+\indexentry{厢}{2979}
+\indexentry{镶}{2980}
+\indexentry{香}{2981}
+\indexentry{箱}{2982}
+\indexentry{襄}{2983}
+\indexentry{湘}{2984}
+\indexentry{乡}{2985}
+\indexentry{翔}{2986}
+\indexentry{祥}{2987}
+\indexentry{详}{2988}
+\indexentry{想}{2989}
+\indexentry{响}{2990}
+\indexentry{享}{2991}
+\indexentry{项}{2992}
+\indexentry{巷}{2993}
+\indexentry{橡}{2994}
+\indexentry{像}{2995}
+\indexentry{向}{2996}
+\indexentry{象}{2997}
+\indexentry{萧}{2998}
+\indexentry{硝}{2999}
+\indexentry{霄}{3000}
+\indexentry{削}{3001}
+\indexentry{哮}{3002}
+\indexentry{嚣}{3003}
+\indexentry{销}{3004}
+\indexentry{消}{3005}
+\indexentry{宵}{3006}
+\indexentry{淆}{3007}
+\indexentry{晓}{3008}
+\indexentry{小}{3009}
+\indexentry{孝}{3010}
+\indexentry{校}{3011}
+\indexentry{肖}{3012}
+\indexentry{啸}{3013}
+\indexentry{笑}{3014}
+\indexentry{效}{3015}
+\indexentry{楔}{3016}
+\indexentry{些}{3017}
+\indexentry{歇}{3018}
+\indexentry{蝎}{3019}
+\indexentry{鞋}{3020}
+\indexentry{协}{3021}
+\indexentry{挟}{3022}
+\indexentry{携}{3023}
+\indexentry{邪}{3024}
+\indexentry{斜}{3025}
+\indexentry{胁}{3026}
+\indexentry{谐}{3027}
+\indexentry{写}{3028}
+\indexentry{械}{3029}
+\indexentry{卸}{3030}
+\indexentry{蟹}{3031}
+\indexentry{懈}{3032}
+\indexentry{泄}{3033}
+\indexentry{泻}{3034}
+\indexentry{谢}{3035}
+\indexentry{屑}{3036}
+\indexentry{薪}{3037}
+\indexentry{芯}{3038}
+\indexentry{锌}{3039}
+\indexentry{欣}{3040}
+\indexentry{辛}{3041}
+\indexentry{新}{3042}
+\indexentry{忻}{3043}
+\indexentry{心}{3044}
+\indexentry{信}{3045}
+\indexentry{衅}{3046}
+\indexentry{星}{3047}
+\indexentry{腥}{3048}
+\indexentry{猩}{3049}
+\indexentry{惺}{3050}
+\indexentry{兴}{3051}
+\indexentry{刑}{3052}
+\indexentry{型}{3053}
+\indexentry{形}{3054}
+\indexentry{邢}{3055}
+\indexentry{行}{3056}
+\indexentry{醒}{3057}
+\indexentry{幸}{3058}
+\indexentry{杏}{3059}
+\indexentry{性}{3060}
+\indexentry{姓}{3061}
+\indexentry{兄}{3062}
+\indexentry{凶}{3063}
+\indexentry{胸}{3064}
+\indexentry{匈}{3065}
+\indexentry{汹}{3066}
+\indexentry{雄}{3067}
+\indexentry{熊}{3068}
+\indexentry{休}{3069}
+\indexentry{修}{3070}
+\indexentry{羞}{3071}
+\indexentry{朽}{3072}
+\indexentry{嗅}{3073}
+\indexentry{锈}{3074}
+\indexentry{秀}{3075}
+\indexentry{袖}{3076}
+\indexentry{绣}{3077}
+\indexentry{墟}{3078}
+\indexentry{戌}{3079}
+\indexentry{需}{3080}
+\indexentry{虚}{3081}
+\indexentry{嘘}{3082}
+\indexentry{须}{3083}
+\indexentry{徐}{3084}
+\indexentry{许}{3085}
+\indexentry{蓄}{3086}
+\indexentry{酗}{3087}
+\indexentry{叙}{3088}
+\indexentry{旭}{3089}
+\indexentry{序}{3090}
+\indexentry{畜}{3091}
+\indexentry{恤}{3092}
+\indexentry{絮}{3093}
+\indexentry{婿}{3094}
+\indexentry{绪}{3095}
+\indexentry{续}{3096}
+\indexentry{轩}{3097}
+\indexentry{喧}{3098}
+\indexentry{宣}{3099}
+\indexentry{悬}{3100}
+\indexentry{旋}{3101}
+\indexentry{玄}{3102}
+\indexentry{选}{3103}
+\indexentry{癣}{3104}
+\indexentry{眩}{3105}
+\indexentry{绚}{3106}
+\indexentry{靴}{3107}
+\indexentry{薛}{3108}
+\indexentry{学}{3109}
+\indexentry{穴}{3110}
+\indexentry{雪}{3111}
+\indexentry{血}{3112}
+\indexentry{勋}{3113}
+\indexentry{熏}{3114}
+\indexentry{循}{3115}
+\indexentry{旬}{3116}
+\indexentry{询}{3117}
+\indexentry{寻}{3118}
+\indexentry{驯}{3119}
+\indexentry{巡}{3120}
+\indexentry{殉}{3121}
+\indexentry{汛}{3122}
+\indexentry{训}{3123}
+\indexentry{讯}{3124}
+\indexentry{逊}{3125}
+\indexentry{迅}{3126}
+\indexentry{压}{3127}
+\indexentry{押}{3128}
+\indexentry{鸦}{3129}
+\indexentry{鸭}{3130}
+\indexentry{呀}{3131}
+\indexentry{丫}{3132}
+\indexentry{芽}{3133}
+\indexentry{牙}{3134}
+\indexentry{蚜}{3135}
+\indexentry{崖}{3136}
+\indexentry{衙}{3137}
+\indexentry{涯}{3138}
+\indexentry{雅}{3139}
+\indexentry{哑}{3140}
+\indexentry{亚}{3141}
+\indexentry{讶}{3142}
+\indexentry{焉}{3143}
+\indexentry{咽}{3144}
+\indexentry{阉}{3145}
+\indexentry{烟}{3146}
+\indexentry{淹}{3147}
+\indexentry{盐}{3148}
+\indexentry{严}{3149}
+\indexentry{研}{3150}
+\indexentry{蜒}{3151}
+\indexentry{岩}{3152}
+\indexentry{延}{3153}
+\indexentry{言}{3154}
+\indexentry{颜}{3155}
+\indexentry{阎}{3156}
+\indexentry{炎}{3157}
+\indexentry{沿}{3158}
+\indexentry{奄}{3159}
+\indexentry{掩}{3160}
+\indexentry{眼}{3161}
+\indexentry{衍}{3162}
+\indexentry{演}{3163}
+\indexentry{艳}{3164}
+\indexentry{堰}{3165}
+\indexentry{燕}{3166}
+\indexentry{厌}{3167}
+\indexentry{砚}{3168}
+\indexentry{雁}{3169}
+\indexentry{唁}{3170}
+\indexentry{彦}{3171}
+\indexentry{焰}{3172}
+\indexentry{宴}{3173}
+\indexentry{谚}{3174}
+\indexentry{验}{3175}
+\indexentry{殃}{3176}
+\indexentry{央}{3177}
+\indexentry{鸯}{3178}
+\indexentry{秧}{3179}
+\indexentry{杨}{3180}
+\indexentry{扬}{3181}
+\indexentry{佯}{3182}
+\indexentry{疡}{3183}
+\indexentry{羊}{3184}
+\indexentry{洋}{3185}
+\indexentry{阳}{3186}
+\indexentry{氧}{3187}
+\indexentry{仰}{3188}
+\indexentry{痒}{3189}
+\indexentry{养}{3190}
+\indexentry{样}{3191}
+\indexentry{漾}{3192}
+\indexentry{邀}{3193}
+\indexentry{腰}{3194}
+\indexentry{妖}{3195}
+\indexentry{瑶}{3196}
+\indexentry{摇}{3197}
+\indexentry{尧}{3198}
+\indexentry{遥}{3199}
+\indexentry{窑}{3200}
+\indexentry{谣}{3201}
+\indexentry{姚}{3202}
+\indexentry{咬}{3203}
+\indexentry{舀}{3204}
+\indexentry{药}{3205}
+\indexentry{要}{3206}
+\indexentry{耀}{3207}
+\indexentry{椰}{3208}
+\indexentry{噎}{3209}
+\indexentry{耶}{3210}
+\indexentry{爷}{3211}
+\indexentry{野}{3212}
+\indexentry{冶}{3213}
+\indexentry{也}{3214}
+\indexentry{页}{3215}
+\indexentry{掖}{3216}
+\indexentry{业}{3217}
+\indexentry{叶}{3218}
+\indexentry{曳}{3219}
+\indexentry{腋}{3220}
+\indexentry{夜}{3221}
+\indexentry{液}{3222}
+\indexentry{一}{3223}
+\indexentry{壹}{3224}
+\indexentry{医}{3225}
+\indexentry{揖}{3226}
+\indexentry{铱}{3227}
+\indexentry{依}{3228}
+\indexentry{伊}{3229}
+\indexentry{衣}{3230}
+\indexentry{颐}{3231}
+\indexentry{夷}{3232}
+\indexentry{遗}{3233}
+\indexentry{移}{3234}
+\indexentry{仪}{3235}
+\indexentry{胰}{3236}
+\indexentry{疑}{3237}
+\indexentry{沂}{3238}
+\indexentry{宜}{3239}
+\indexentry{姨}{3240}
+\indexentry{彝}{3241}
+\indexentry{椅}{3242}
+\indexentry{蚁}{3243}
+\indexentry{倚}{3244}
+\indexentry{已}{3245}
+\indexentry{乙}{3246}
+\indexentry{矣}{3247}
+\indexentry{以}{3248}
+\indexentry{艺}{3249}
+\indexentry{抑}{3250}
+\indexentry{易}{3251}
+\indexentry{邑}{3252}
+\indexentry{屹}{3253}
+\indexentry{亿}{3254}
+\indexentry{役}{3255}
+\indexentry{臆}{3256}
+\indexentry{逸}{3257}
+\indexentry{肄}{3258}
+\indexentry{疫}{3259}
+\indexentry{亦}{3260}
+\indexentry{裔}{3261}
+\indexentry{意}{3262}
+\indexentry{毅}{3263}
+\indexentry{忆}{3264}
+\indexentry{义}{3265}
+\indexentry{益}{3266}
+\indexentry{溢}{3267}
+\indexentry{诣}{3268}
+\indexentry{议}{3269}
+\indexentry{谊}{3270}
+\indexentry{译}{3271}
+\indexentry{异}{3272}
+\indexentry{翼}{3273}
+\indexentry{翌}{3274}
+\indexentry{绎}{3275}
+\indexentry{茵}{3276}
+\indexentry{荫}{3277}
+\indexentry{因}{3278}
+\indexentry{殷}{3279}
+\indexentry{音}{3280}
+\indexentry{阴}{3281}
+\indexentry{姻}{3282}
+\indexentry{吟}{3283}
+\indexentry{银}{3284}
+\indexentry{淫}{3285}
+\indexentry{寅}{3286}
+\indexentry{饮}{3287}
+\indexentry{尹}{3288}
+\indexentry{引}{3289}
+\indexentry{隐}{3290}
+\indexentry{印}{3291}
+\indexentry{英}{3292}
+\indexentry{樱}{3293}
+\indexentry{婴}{3294}
+\indexentry{鹰}{3295}
+\indexentry{应}{3296}
+\indexentry{缨}{3297}
+\indexentry{莹}{3298}
+\indexentry{萤}{3299}
+\indexentry{营}{3300}
+\indexentry{荧}{3301}
+\indexentry{蝇}{3302}
+\indexentry{迎}{3303}
+\indexentry{赢}{3304}
+\indexentry{盈}{3305}
+\indexentry{影}{3306}
+\indexentry{颖}{3307}
+\indexentry{硬}{3308}
+\indexentry{映}{3309}
+\indexentry{哟}{3310}
+\indexentry{拥}{3311}
+\indexentry{佣}{3312}
+\indexentry{臃}{3313}
+\indexentry{痈}{3314}
+\indexentry{庸}{3315}
+\indexentry{雍}{3316}
+\indexentry{踊}{3317}
+\indexentry{蛹}{3318}
+\indexentry{咏}{3319}
+\indexentry{泳}{3320}
+\indexentry{涌}{3321}
+\indexentry{永}{3322}
+\indexentry{恿}{3323}
+\indexentry{勇}{3324}
+\indexentry{用}{3325}
+\indexentry{幽}{3326}
+\indexentry{优}{3327}
+\indexentry{悠}{3328}
+\indexentry{忧}{3329}
+\indexentry{尤}{3330}
+\indexentry{由}{3331}
+\indexentry{邮}{3332}
+\indexentry{铀}{3333}
+\indexentry{犹}{3334}
+\indexentry{油}{3335}
+\indexentry{游}{3336}
+\indexentry{酉}{3337}
+\indexentry{有}{3338}
+\indexentry{友}{3339}
+\indexentry{右}{3340}
+\indexentry{佑}{3341}
+\indexentry{釉}{3342}
+\indexentry{诱}{3343}
+\indexentry{又}{3344}
+\indexentry{幼}{3345}
+\indexentry{迂}{3346}
+\indexentry{淤}{3347}
+\indexentry{于}{3348}
+\indexentry{盂}{3349}
+\indexentry{榆}{3350}
+\indexentry{虞}{3351}
+\indexentry{愚}{3352}
+\indexentry{舆}{3353}
+\indexentry{余}{3354}
+\indexentry{俞}{3355}
+\indexentry{逾}{3356}
+\indexentry{鱼}{3357}
+\indexentry{愉}{3358}
+\indexentry{渝}{3359}
+\indexentry{渔}{3360}
+\indexentry{隅}{3361}
+\indexentry{予}{3362}
+\indexentry{娱}{3363}
+\indexentry{雨}{3364}
+\indexentry{与}{3365}
+\indexentry{屿}{3366}
+\indexentry{禹}{3367}
+\indexentry{宇}{3368}
+\indexentry{语}{3369}
+\indexentry{羽}{3370}
+\indexentry{玉}{3371}
+\indexentry{域}{3372}
+\indexentry{芋}{3373}
+\indexentry{郁}{3374}
+\indexentry{吁}{3375}
+\indexentry{遇}{3376}
+\indexentry{喻}{3377}
+\indexentry{峪}{3378}
+\indexentry{御}{3379}
+\indexentry{愈}{3380}
+\indexentry{欲}{3381}
+\indexentry{狱}{3382}
+\indexentry{育}{3383}
+\indexentry{誉}{3384}
+\indexentry{浴}{3385}
+\indexentry{寓}{3386}
+\indexentry{裕}{3387}
+\indexentry{预}{3388}
+\indexentry{豫}{3389}
+\indexentry{驭}{3390}
+\indexentry{鸳}{3391}
+\indexentry{渊}{3392}
+\indexentry{冤}{3393}
+\indexentry{元}{3394}
+\indexentry{垣}{3395}
+\indexentry{袁}{3396}
+\indexentry{原}{3397}
+\indexentry{援}{3398}
+\indexentry{辕}{3399}
+\indexentry{园}{3400}
+\indexentry{员}{3401}
+\indexentry{圆}{3402}
+\indexentry{猿}{3403}
+\indexentry{源}{3404}
+\indexentry{缘}{3405}
+\indexentry{远}{3406}
+\indexentry{苑}{3407}
+\indexentry{愿}{3408}
+\indexentry{怨}{3409}
+\indexentry{院}{3410}
+\indexentry{曰}{3411}
+\indexentry{约}{3412}
+\indexentry{越}{3413}
+\indexentry{跃}{3414}
+\indexentry{钥}{3415}
+\indexentry{岳}{3416}
+\indexentry{粤}{3417}
+\indexentry{月}{3418}
+\indexentry{悦}{3419}
+\indexentry{阅}{3420}
+\indexentry{耘}{3421}
+\indexentry{云}{3422}
+\indexentry{郧}{3423}
+\indexentry{匀}{3424}
+\indexentry{陨}{3425}
+\indexentry{允}{3426}
+\indexentry{运}{3427}
+\indexentry{蕴}{3428}
+\indexentry{酝}{3429}
+\indexentry{晕}{3430}
+\indexentry{韵}{3431}
+\indexentry{孕}{3432}
+\indexentry{匝}{3433}
+\indexentry{砸}{3434}
+\indexentry{杂}{3435}
+\indexentry{栽}{3436}
+\indexentry{哉}{3437}
+\indexentry{灾}{3438}
+\indexentry{宰}{3439}
+\indexentry{载}{3440}
+\indexentry{再}{3441}
+\indexentry{在}{3442}
+\indexentry{咱}{3443}
+\indexentry{攒}{3444}
+\indexentry{暂}{3445}
+\indexentry{赞}{3446}
+\indexentry{赃}{3447}
+\indexentry{脏}{3448}
+\indexentry{葬}{3449}
+\indexentry{遭}{3450}
+\indexentry{糟}{3451}
+\indexentry{凿}{3452}
+\indexentry{藻}{3453}
+\indexentry{枣}{3454}
+\indexentry{早}{3455}
+\indexentry{澡}{3456}
+\indexentry{蚤}{3457}
+\indexentry{躁}{3458}
+\indexentry{噪}{3459}
+\indexentry{造}{3460}
+\indexentry{皂}{3461}
+\indexentry{灶}{3462}
+\indexentry{燥}{3463}
+\indexentry{责}{3464}
+\indexentry{择}{3465}
+\indexentry{则}{3466}
+\indexentry{泽}{3467}
+\indexentry{贼}{3468}
+\indexentry{怎}{3469}
+\indexentry{增}{3470}
+\indexentry{憎}{3471}
+\indexentry{曾}{3472}
+\indexentry{赠}{3473}
+\indexentry{扎}{3474}
+\indexentry{喳}{3475}
+\indexentry{渣}{3476}
+\indexentry{札}{3477}
+\indexentry{轧}{3478}
+\indexentry{铡}{3479}
+\indexentry{闸}{3480}
+\indexentry{眨}{3481}
+\indexentry{栅}{3482}
+\indexentry{榨}{3483}
+\indexentry{咋}{3484}
+\indexentry{乍}{3485}
+\indexentry{炸}{3486}
+\indexentry{诈}{3487}
+\indexentry{摘}{3488}
+\indexentry{斋}{3489}
+\indexentry{宅}{3490}
+\indexentry{窄}{3491}
+\indexentry{债}{3492}
+\indexentry{寨}{3493}
+\indexentry{瞻}{3494}
+\indexentry{毡}{3495}
+\indexentry{詹}{3496}
+\indexentry{粘}{3497}
+\indexentry{沾}{3498}
+\indexentry{盏}{3499}
+\indexentry{斩}{3500}
+\indexentry{辗}{3501}
+\indexentry{崭}{3502}
+\indexentry{展}{3503}
+\indexentry{蘸}{3504}
+\indexentry{栈}{3505}
+\indexentry{占}{3506}
+\indexentry{战}{3507}
+\indexentry{站}{3508}
+\indexentry{湛}{3509}
+\indexentry{绽}{3510}
+\indexentry{樟}{3511}
+\indexentry{章}{3512}
+\indexentry{彰}{3513}
+\indexentry{漳}{3514}
+\indexentry{张}{3515}
+\indexentry{掌}{3516}
+\indexentry{涨}{3517}
+\indexentry{杖}{3518}
+\indexentry{丈}{3519}
+\indexentry{帐}{3520}
+\indexentry{账}{3521}
+\indexentry{仗}{3522}
+\indexentry{胀}{3523}
+\indexentry{瘴}{3524}
+\indexentry{障}{3525}
+\indexentry{招}{3526}
+\indexentry{昭}{3527}
+\indexentry{找}{3528}
+\indexentry{沼}{3529}
+\indexentry{赵}{3530}
+\indexentry{照}{3531}
+\indexentry{罩}{3532}
+\indexentry{兆}{3533}
+\indexentry{肇}{3534}
+\indexentry{召}{3535}
+\indexentry{遮}{3536}
+\indexentry{折}{3537}
+\indexentry{哲}{3538}
+\indexentry{蛰}{3539}
+\indexentry{辙}{3540}
+\indexentry{者}{3541}
+\indexentry{锗}{3542}
+\indexentry{蔗}{3543}
+\indexentry{这}{3544}
+\indexentry{浙}{3545}
+\indexentry{珍}{3546}
+\indexentry{斟}{3547}
+\indexentry{真}{3548}
+\indexentry{甄}{3549}
+\indexentry{砧}{3550}
+\indexentry{臻}{3551}
+\indexentry{贞}{3552}
+\indexentry{针}{3553}
+\indexentry{侦}{3554}
+\indexentry{枕}{3555}
+\indexentry{疹}{3556}
+\indexentry{诊}{3557}
+\indexentry{震}{3558}
+\indexentry{振}{3559}
+\indexentry{镇}{3560}
+\indexentry{阵}{3561}
+\indexentry{蒸}{3562}
+\indexentry{挣}{3563}
+\indexentry{睁}{3564}
+\indexentry{征}{3565}
+\indexentry{狰}{3566}
+\indexentry{争}{3567}
+\indexentry{怔}{3568}
+\indexentry{整}{3569}
+\indexentry{拯}{3570}
+\indexentry{正}{3571}
+\indexentry{政}{3572}
+\indexentry{帧}{3573}
+\indexentry{症}{3574}
+\indexentry{郑}{3575}
+\indexentry{证}{3576}
+\indexentry{芝}{3577}
+\indexentry{枝}{3578}
+\indexentry{支}{3579}
+\indexentry{吱}{3580}
+\indexentry{蜘}{3581}
+\indexentry{知}{3582}
+\indexentry{肢}{3583}
+\indexentry{脂}{3584}
+\indexentry{汁}{3585}
+\indexentry{之}{3586}
+\indexentry{织}{3587}
+\indexentry{职}{3588}
+\indexentry{直}{3589}
+\indexentry{植}{3590}
+\indexentry{殖}{3591}
+\indexentry{执}{3592}
+\indexentry{值}{3593}
+\indexentry{侄}{3594}
+\indexentry{址}{3595}
+\indexentry{指}{3596}
+\indexentry{止}{3597}
+\indexentry{趾}{3598}
+\indexentry{只}{3599}
+\indexentry{旨}{3600}
+\indexentry{纸}{3601}
+\indexentry{志}{3602}
+\indexentry{挚}{3603}
+\indexentry{掷}{3604}
+\indexentry{至}{3605}
+\indexentry{致}{3606}
+\indexentry{置}{3607}
+\indexentry{帜}{3608}
+\indexentry{峙}{3609}
+\indexentry{制}{3610}
+\indexentry{智}{3611}
+\indexentry{秩}{3612}
+\indexentry{稚}{3613}
+\indexentry{质}{3614}
+\indexentry{炙}{3615}
+\indexentry{痔}{3616}
+\indexentry{滞}{3617}
+\indexentry{治}{3618}
+\indexentry{窒}{3619}
+\indexentry{中}{3620}
+\indexentry{盅}{3621}
+\indexentry{忠}{3622}
+\indexentry{钟}{3623}
+\indexentry{衷}{3624}
+\indexentry{终}{3625}
+\indexentry{种}{3626}
+\indexentry{肿}{3627}
+\indexentry{重}{3628}
+\indexentry{仲}{3629}
+\indexentry{众}{3630}
+\indexentry{舟}{3631}
+\indexentry{周}{3632}
+\indexentry{州}{3633}
+\indexentry{洲}{3634}
+\indexentry{诌}{3635}
+\indexentry{粥}{3636}
+\indexentry{轴}{3637}
+\indexentry{肘}{3638}
+\indexentry{帚}{3639}
+\indexentry{咒}{3640}
+\indexentry{皱}{3641}
+\indexentry{宙}{3642}
+\indexentry{昼}{3643}
+\indexentry{骤}{3644}
+\indexentry{珠}{3645}
+\indexentry{株}{3646}
+\indexentry{蛛}{3647}
+\indexentry{朱}{3648}
+\indexentry{猪}{3649}
+\indexentry{诸}{3650}
+\indexentry{诛}{3651}
+\indexentry{逐}{3652}
+\indexentry{竹}{3653}
+\indexentry{烛}{3654}
+\indexentry{煮}{3655}
+\indexentry{拄}{3656}
+\indexentry{瞩}{3657}
+\indexentry{嘱}{3658}
+\indexentry{主}{3659}
+\indexentry{著}{3660}
+\indexentry{柱}{3661}
+\indexentry{助}{3662}
+\indexentry{蛀}{3663}
+\indexentry{贮}{3664}
+\indexentry{铸}{3665}
+\indexentry{筑}{3666}
+\indexentry{住}{3667}
+\indexentry{注}{3668}
+\indexentry{祝}{3669}
+\indexentry{驻}{3670}
+\indexentry{抓}{3671}
+\indexentry{爪}{3672}
+\indexentry{拽}{3673}
+\indexentry{专}{3674}
+\indexentry{砖}{3675}
+\indexentry{转}{3676}
+\indexentry{撰}{3677}
+\indexentry{赚}{3678}
+\indexentry{篆}{3679}
+\indexentry{桩}{3680}
+\indexentry{庄}{3681}
+\indexentry{装}{3682}
+\indexentry{妆}{3683}
+\indexentry{撞}{3684}
+\indexentry{壮}{3685}
+\indexentry{状}{3686}
+\indexentry{椎}{3687}
+\indexentry{锥}{3688}
+\indexentry{追}{3689}
+\indexentry{赘}{3690}
+\indexentry{坠}{3691}
+\indexentry{缀}{3692}
+\indexentry{谆}{3693}
+\indexentry{准}{3694}
+\indexentry{捉}{3695}
+\indexentry{拙}{3696}
+\indexentry{卓}{3697}
+\indexentry{桌}{3698}
+\indexentry{琢}{3699}
+\indexentry{茁}{3700}
+\indexentry{酌}{3701}
+\indexentry{啄}{3702}
+\indexentry{着}{3703}
+\indexentry{灼}{3704}
+\indexentry{浊}{3705}
+\indexentry{兹}{3706}
+\indexentry{咨}{3707}
+\indexentry{资}{3708}
+\indexentry{姿}{3709}
+\indexentry{滋}{3710}
+\indexentry{淄}{3711}
+\indexentry{孜}{3712}
+\indexentry{紫}{3713}
+\indexentry{仔}{3714}
+\indexentry{籽}{3715}
+\indexentry{滓}{3716}
+\indexentry{子}{3717}
+\indexentry{自}{3718}
+\indexentry{渍}{3719}
+\indexentry{字}{3720}
+\indexentry{鬃}{3721}
+\indexentry{棕}{3722}
+\indexentry{踪}{3723}
+\indexentry{宗}{3724}
+\indexentry{综}{3725}
+\indexentry{总}{3726}
+\indexentry{纵}{3727}
+\indexentry{邹}{3728}
+\indexentry{走}{3729}
+\indexentry{奏}{3730}
+\indexentry{揍}{3731}
+\indexentry{租}{3732}
+\indexentry{足}{3733}
+\indexentry{卒}{3734}
+\indexentry{族}{3735}
+\indexentry{祖}{3736}
+\indexentry{诅}{3737}
+\indexentry{阻}{3738}
+\indexentry{组}{3739}
+\indexentry{钻}{3740}
+\indexentry{纂}{3741}
+\indexentry{嘴}{3742}
+\indexentry{醉}{3743}
+\indexentry{最}{3744}
+\indexentry{罪}{3745}
+\indexentry{尊}{3746}
+\indexentry{遵}{3747}
+\indexentry{昨}{3748}
+\indexentry{左}{3749}
+\indexentry{佐}{3750}
+\indexentry{柞}{3751}
+\indexentry{做}{3752}
+\indexentry{作}{3753}
+\indexentry{坐}{3754}
+\indexentry{座}{3755}
+\indexentry{亍}{3756}
+\indexentry{丌}{3757}
+\indexentry{兀}{3758}
+\indexentry{丐}{3759}
+\indexentry{廿}{3760}
+\indexentry{卅}{3761}
+\indexentry{丕}{3762}
+\indexentry{亘}{3763}
+\indexentry{丞}{3764}
+\indexentry{鬲}{3765}
+\indexentry{孬}{3766}
+\indexentry{噩}{3767}
+\indexentry{丨}{3768}
+\indexentry{禺}{3769}
+\indexentry{丿}{3770}
+\indexentry{匕}{3771}
+\indexentry{乇}{3772}
+\indexentry{夭}{3773}
+\indexentry{爻}{3774}
+\indexentry{卮}{3775}
+\indexentry{氐}{3776}
+\indexentry{囟}{3777}
+\indexentry{胤}{3778}
+\indexentry{馗}{3779}
+\indexentry{毓}{3780}
+\indexentry{睾}{3781}
+\indexentry{鼗}{3782}
+\indexentry{丶}{3783}
+\indexentry{亟}{3784}
+\indexentry{鼐}{3785}
+\indexentry{乜}{3786}
+\indexentry{乩}{3787}
+\indexentry{亓}{3788}
+\indexentry{芈}{3789}
+\indexentry{孛}{3790}
+\indexentry{啬}{3791}
+\indexentry{嘏}{3792}
+\indexentry{仄}{3793}
+\indexentry{厍}{3794}
+\indexentry{厝}{3795}
+\indexentry{厣}{3796}
+\indexentry{厥}{3797}
+\indexentry{厮}{3798}
+\indexentry{靥}{3799}
+\indexentry{赝}{3800}
+\indexentry{匚}{3801}
+\indexentry{叵}{3802}
+\indexentry{匦}{3803}
+\indexentry{匮}{3804}
+\indexentry{匾}{3805}
+\indexentry{赜}{3806}
+\indexentry{卦}{3807}
+\indexentry{卣}{3808}
+\indexentry{刂}{3809}
+\indexentry{刈}{3810}
+\indexentry{刎}{3811}
+\indexentry{刭}{3812}
+\indexentry{刳}{3813}
+\indexentry{刿}{3814}
+\indexentry{剀}{3815}
+\indexentry{剌}{3816}
+\indexentry{剞}{3817}
+\indexentry{剡}{3818}
+\indexentry{剜}{3819}
+\indexentry{蒯}{3820}
+\indexentry{剽}{3821}
+\indexentry{劂}{3822}
+\indexentry{劁}{3823}
+\indexentry{劐}{3824}
+\indexentry{劓}{3825}
+\indexentry{冂}{3826}
+\indexentry{罔}{3827}
+\indexentry{亻}{3828}
+\indexentry{仃}{3829}
+\indexentry{仉}{3830}
+\indexentry{仂}{3831}
+\indexentry{仨}{3832}
+\indexentry{仡}{3833}
+\indexentry{仫}{3834}
+\indexentry{仞}{3835}
+\indexentry{伛}{3836}
+\indexentry{仳}{3837}
+\indexentry{伢}{3838}
+\indexentry{佤}{3839}
+\indexentry{仵}{3840}
+\indexentry{伥}{3841}
+\indexentry{伧}{3842}
+\indexentry{伉}{3843}
+\indexentry{伫}{3844}
+\indexentry{佞}{3845}
+\indexentry{佧}{3846}
+\indexentry{攸}{3847}
+\indexentry{佚}{3848}
+\indexentry{佝}{3849}
+\indexentry{佟}{3850}
+\indexentry{佗}{3851}
+\indexentry{伲}{3852}
+\indexentry{伽}{3853}
+\indexentry{佶}{3854}
+\indexentry{佴}{3855}
+\indexentry{侑}{3856}
+\indexentry{侉}{3857}
+\indexentry{侃}{3858}
+\indexentry{侏}{3859}
+\indexentry{佾}{3860}
+\indexentry{佻}{3861}
+\indexentry{侪}{3862}
+\indexentry{佼}{3863}
+\indexentry{侬}{3864}
+\indexentry{侔}{3865}
+\indexentry{俦}{3866}
+\indexentry{俨}{3867}
+\indexentry{俪}{3868}
+\indexentry{俅}{3869}
+\indexentry{俚}{3870}
+\indexentry{俣}{3871}
+\indexentry{俜}{3872}
+\indexentry{俑}{3873}
+\indexentry{俟}{3874}
+\indexentry{俸}{3875}
+\indexentry{倩}{3876}
+\indexentry{偌}{3877}
+\indexentry{俳}{3878}
+\indexentry{倬}{3879}
+\indexentry{倏}{3880}
+\indexentry{倮}{3881}
+\indexentry{倭}{3882}
+\indexentry{俾}{3883}
+\indexentry{倜}{3884}
+\indexentry{倌}{3885}
+\indexentry{倥}{3886}
+\indexentry{倨}{3887}
+\indexentry{偾}{3888}
+\indexentry{偃}{3889}
+\indexentry{偕}{3890}
+\indexentry{偈}{3891}
+\indexentry{偎}{3892}
+\indexentry{偬}{3893}
+\indexentry{偻}{3894}
+\indexentry{傥}{3895}
+\indexentry{傧}{3896}
+\indexentry{傩}{3897}
+\indexentry{傺}{3898}
+\indexentry{僖}{3899}
+\indexentry{儆}{3900}
+\indexentry{僭}{3901}
+\indexentry{僬}{3902}
+\indexentry{僦}{3903}
+\indexentry{僮}{3904}
+\indexentry{儇}{3905}
+\indexentry{儋}{3906}
+\indexentry{仝}{3907}
+\indexentry{氽}{3908}
+\indexentry{佘}{3909}
+\indexentry{佥}{3910}
+\indexentry{俎}{3911}
+\indexentry{龠}{3912}
+\indexentry{汆}{3913}
+\indexentry{籴}{3914}
+\indexentry{兮}{3915}
+\indexentry{巽}{3916}
+\indexentry{黉}{3917}
+\indexentry{馘}{3918}
+\indexentry{冁}{3919}
+\indexentry{夔}{3920}
+\indexentry{勹}{3921}
+\indexentry{匍}{3922}
+\indexentry{訇}{3923}
+\indexentry{匐}{3924}
+\indexentry{凫}{3925}
+\indexentry{夙}{3926}
+\indexentry{兕}{3927}
+\indexentry{亠}{3928}
+\indexentry{兖}{3929}
+\indexentry{亳}{3930}
+\indexentry{衮}{3931}
+\indexentry{袤}{3932}
+\indexentry{亵}{3933}
+\indexentry{脔}{3934}
+\indexentry{裒}{3935}
+\indexentry{禀}{3936}
+\indexentry{嬴}{3937}
+\indexentry{蠃}{3938}
+\indexentry{羸}{3939}
+\indexentry{冫}{3940}
+\indexentry{冱}{3941}
+\indexentry{冽}{3942}
+\indexentry{冼}{3943}
+\indexentry{凇}{3944}
+\indexentry{冖}{3945}
+\indexentry{冢}{3946}
+\indexentry{冥}{3947}
+\indexentry{讠}{3948}
+\indexentry{讦}{3949}
+\indexentry{讧}{3950}
+\indexentry{讪}{3951}
+\indexentry{讴}{3952}
+\indexentry{讵}{3953}
+\indexentry{讷}{3954}
+\indexentry{诂}{3955}
+\indexentry{诃}{3956}
+\indexentry{诋}{3957}
+\indexentry{诏}{3958}
+\indexentry{诎}{3959}
+\indexentry{诒}{3960}
+\indexentry{诓}{3961}
+\indexentry{诔}{3962}
+\indexentry{诖}{3963}
+\indexentry{诘}{3964}
+\indexentry{诙}{3965}
+\indexentry{诜}{3966}
+\indexentry{诟}{3967}
+\indexentry{诠}{3968}
+\indexentry{诤}{3969}
+\indexentry{诨}{3970}
+\indexentry{诩}{3971}
+\indexentry{诮}{3972}
+\indexentry{诰}{3973}
+\indexentry{诳}{3974}
+\indexentry{诶}{3975}
+\indexentry{诹}{3976}
+\indexentry{诼}{3977}
+\indexentry{诿}{3978}
+\indexentry{谀}{3979}
+\indexentry{谂}{3980}
+\indexentry{谄}{3981}
+\indexentry{谇}{3982}
+\indexentry{谌}{3983}
+\indexentry{谏}{3984}
+\indexentry{谑}{3985}
+\indexentry{谒}{3986}
+\indexentry{谔}{3987}
+\indexentry{谕}{3988}
+\indexentry{谖}{3989}
+\indexentry{谙}{3990}
+\indexentry{谛}{3991}
+\indexentry{谘}{3992}
+\indexentry{谝}{3993}
+\indexentry{谟}{3994}
+\indexentry{谠}{3995}
+\indexentry{谡}{3996}
+\indexentry{谥}{3997}
+\indexentry{谧}{3998}
+\indexentry{谪}{3999}
+\indexentry{谫}{4000}
+\indexentry{谮}{4001}
+\indexentry{谯}{4002}
+\indexentry{谲}{4003}
+\indexentry{谳}{4004}
+\indexentry{谵}{4005}
+\indexentry{谶}{4006}
+\indexentry{卩}{4007}
+\indexentry{卺}{4008}
+\indexentry{阝}{4009}
+\indexentry{阢}{4010}
+\indexentry{阡}{4011}
+\indexentry{阱}{4012}
+\indexentry{阪}{4013}
+\indexentry{阽}{4014}
+\indexentry{阼}{4015}
+\indexentry{陂}{4016}
+\indexentry{陉}{4017}
+\indexentry{陔}{4018}
+\indexentry{陟}{4019}
+\indexentry{陧}{4020}
+\indexentry{陬}{4021}
+\indexentry{陲}{4022}
+\indexentry{陴}{4023}
+\indexentry{隈}{4024}
+\indexentry{隍}{4025}
+\indexentry{隗}{4026}
+\indexentry{隰}{4027}
+\indexentry{邗}{4028}
+\indexentry{邛}{4029}
+\indexentry{邝}{4030}
+\indexentry{邙}{4031}
+\indexentry{邬}{4032}
+\indexentry{邡}{4033}
+\indexentry{邴}{4034}
+\indexentry{邳}{4035}
+\indexentry{邶}{4036}
+\indexentry{邺}{4037}
+\indexentry{邸}{4038}
+\indexentry{邰}{4039}
+\indexentry{郏}{4040}
+\indexentry{郅}{4041}
+\indexentry{邾}{4042}
+\indexentry{郐}{4043}
+\indexentry{郄}{4044}
+\indexentry{郇}{4045}
+\indexentry{郓}{4046}
+\indexentry{郦}{4047}
+\indexentry{郢}{4048}
+\indexentry{郜}{4049}
+\indexentry{郗}{4050}
+\indexentry{郛}{4051}
+\indexentry{郫}{4052}
+\indexentry{郯}{4053}
+\indexentry{郾}{4054}
+\indexentry{鄄}{4055}
+\indexentry{鄢}{4056}
+\indexentry{鄞}{4057}
+\indexentry{鄣}{4058}
+\indexentry{鄱}{4059}
+\indexentry{鄯}{4060}
+\indexentry{鄹}{4061}
+\indexentry{酃}{4062}
+\indexentry{酆}{4063}
+\indexentry{刍}{4064}
+\indexentry{奂}{4065}
+\indexentry{劢}{4066}
+\indexentry{劬}{4067}
+\indexentry{劭}{4068}
+\indexentry{劾}{4069}
+\indexentry{哿}{4070}
+\indexentry{勐}{4071}
+\indexentry{勖}{4072}
+\indexentry{勰}{4073}
+\indexentry{叟}{4074}
+\indexentry{燮}{4075}
+\indexentry{矍}{4076}
+\indexentry{廴}{4077}
+\indexentry{凵}{4078}
+\indexentry{凼}{4079}
+\indexentry{鬯}{4080}
+\indexentry{厶}{4081}
+\indexentry{弁}{4082}
+\indexentry{畚}{4083}
+\indexentry{巯}{4084}
+\indexentry{坌}{4085}
+\indexentry{垩}{4086}
+\indexentry{垡}{4087}
+\indexentry{塾}{4088}
+\indexentry{墼}{4089}
+\indexentry{壅}{4090}
+\indexentry{壑}{4091}
+\indexentry{圩}{4092}
+\indexentry{圬}{4093}
+\indexentry{圪}{4094}
+\indexentry{圳}{4095}
+\indexentry{圹}{4096}
+\indexentry{圮}{4097}
+\indexentry{圯}{4098}
+\indexentry{坜}{4099}
+\indexentry{圻}{4100}
+\indexentry{坂}{4101}
+\indexentry{坩}{4102}
+\indexentry{垅}{4103}
+\indexentry{坫}{4104}
+\indexentry{垆}{4105}
+\indexentry{坼}{4106}
+\indexentry{坻}{4107}
+\indexentry{坨}{4108}
+\indexentry{坭}{4109}
+\indexentry{坶}{4110}
+\indexentry{坳}{4111}
+\indexentry{垭}{4112}
+\indexentry{垤}{4113}
+\indexentry{垌}{4114}
+\indexentry{垲}{4115}
+\indexentry{埏}{4116}
+\indexentry{垧}{4117}
+\indexentry{垴}{4118}
+\indexentry{垓}{4119}
+\indexentry{垠}{4120}
+\indexentry{埕}{4121}
+\indexentry{埘}{4122}
+\indexentry{埚}{4123}
+\indexentry{埙}{4124}
+\indexentry{埒}{4125}
+\indexentry{垸}{4126}
+\indexentry{埴}{4127}
+\indexentry{埯}{4128}
+\indexentry{埸}{4129}
+\indexentry{埤}{4130}
+\indexentry{埝}{4131}
+\indexentry{堋}{4132}
+\indexentry{堍}{4133}
+\indexentry{埽}{4134}
+\indexentry{埭}{4135}
+\indexentry{堀}{4136}
+\indexentry{堞}{4137}
+\indexentry{堙}{4138}
+\indexentry{塄}{4139}
+\indexentry{堠}{4140}
+\indexentry{塥}{4141}
+\indexentry{塬}{4142}
+\indexentry{墁}{4143}
+\indexentry{墉}{4144}
+\indexentry{墚}{4145}
+\indexentry{墀}{4146}
+\indexentry{馨}{4147}
+\indexentry{鼙}{4148}
+\indexentry{懿}{4149}
+\indexentry{艹}{4150}
+\indexentry{艽}{4151}
+\indexentry{艿}{4152}
+\indexentry{芏}{4153}
+\indexentry{芊}{4154}
+\indexentry{芨}{4155}
+\indexentry{芄}{4156}
+\indexentry{芎}{4157}
+\indexentry{芑}{4158}
+\indexentry{芗}{4159}
+\indexentry{芙}{4160}
+\indexentry{芫}{4161}
+\indexentry{芸}{4162}
+\indexentry{芾}{4163}
+\indexentry{芰}{4164}
+\indexentry{苈}{4165}
+\indexentry{苊}{4166}
+\indexentry{苣}{4167}
+\indexentry{芘}{4168}
+\indexentry{芷}{4169}
+\indexentry{芮}{4170}
+\indexentry{苋}{4171}
+\indexentry{苌}{4172}
+\indexentry{苁}{4173}
+\indexentry{芩}{4174}
+\indexentry{芴}{4175}
+\indexentry{芡}{4176}
+\indexentry{芪}{4177}
+\indexentry{芟}{4178}
+\indexentry{苄}{4179}
+\indexentry{苎}{4180}
+\indexentry{芤}{4181}
+\indexentry{苡}{4182}
+\indexentry{茉}{4183}
+\indexentry{苷}{4184}
+\indexentry{苤}{4185}
+\indexentry{茏}{4186}
+\indexentry{茇}{4187}
+\indexentry{苜}{4188}
+\indexentry{苴}{4189}
+\indexentry{苒}{4190}
+\indexentry{苘}{4191}
+\indexentry{茌}{4192}
+\indexentry{苻}{4193}
+\indexentry{苓}{4194}
+\indexentry{茑}{4195}
+\indexentry{茚}{4196}
+\indexentry{茆}{4197}
+\indexentry{茔}{4198}
+\indexentry{茕}{4199}
+\indexentry{苠}{4200}
+\indexentry{苕}{4201}
+\indexentry{茜}{4202}
+\indexentry{荑}{4203}
+\indexentry{荛}{4204}
+\indexentry{荜}{4205}
+\indexentry{茈}{4206}
+\indexentry{莒}{4207}
+\indexentry{茼}{4208}
+\indexentry{茴}{4209}
+\indexentry{茱}{4210}
+\indexentry{莛}{4211}
+\indexentry{荞}{4212}
+\indexentry{茯}{4213}
+\indexentry{荏}{4214}
+\indexentry{荇}{4215}
+\indexentry{荃}{4216}
+\indexentry{荟}{4217}
+\indexentry{荀}{4218}
+\indexentry{茗}{4219}
+\indexentry{荠}{4220}
+\indexentry{茭}{4221}
+\indexentry{茺}{4222}
+\indexentry{茳}{4223}
+\indexentry{荦}{4224}
+\indexentry{荥}{4225}
+\indexentry{荨}{4226}
+\indexentry{茛}{4227}
+\indexentry{荩}{4228}
+\indexentry{荬}{4229}
+\indexentry{荪}{4230}
+\indexentry{荭}{4231}
+\indexentry{荮}{4232}
+\indexentry{莰}{4233}
+\indexentry{荸}{4234}
+\indexentry{莳}{4235}
+\indexentry{莴}{4236}
+\indexentry{莠}{4237}
+\indexentry{莪}{4238}
+\indexentry{莓}{4239}
+\indexentry{莜}{4240}
+\indexentry{莅}{4241}
+\indexentry{荼}{4242}
+\indexentry{莶}{4243}
+\indexentry{莩}{4244}
+\indexentry{荽}{4245}
+\indexentry{莸}{4246}
+\indexentry{荻}{4247}
+\indexentry{莘}{4248}
+\indexentry{莞}{4249}
+\indexentry{莨}{4250}
+\indexentry{莺}{4251}
+\indexentry{莼}{4252}
+\indexentry{菁}{4253}
+\indexentry{萁}{4254}
+\indexentry{菥}{4255}
+\indexentry{菘}{4256}
+\indexentry{堇}{4257}
+\indexentry{萘}{4258}
+\indexentry{萋}{4259}
+\indexentry{菝}{4260}
+\indexentry{菽}{4261}
+\indexentry{菖}{4262}
+\indexentry{萜}{4263}
+\indexentry{萸}{4264}
+\indexentry{萑}{4265}
+\indexentry{萆}{4266}
+\indexentry{菔}{4267}
+\indexentry{菟}{4268}
+\indexentry{萏}{4269}
+\indexentry{萃}{4270}
+\indexentry{菸}{4271}
+\indexentry{菹}{4272}
+\indexentry{菪}{4273}
+\indexentry{菅}{4274}
+\indexentry{菀}{4275}
+\indexentry{萦}{4276}
+\indexentry{菰}{4277}
+\indexentry{菡}{4278}
+\indexentry{葜}{4279}
+\indexentry{葑}{4280}
+\indexentry{葚}{4281}
+\indexentry{葙}{4282}
+\indexentry{葳}{4283}
+\indexentry{蒇}{4284}
+\indexentry{蒈}{4285}
+\indexentry{葺}{4286}
+\indexentry{蒉}{4287}
+\indexentry{葸}{4288}
+\indexentry{萼}{4289}
+\indexentry{葆}{4290}
+\indexentry{葩}{4291}
+\indexentry{葶}{4292}
+\indexentry{蒌}{4293}
+\indexentry{蒎}{4294}
+\indexentry{萱}{4295}
+\indexentry{葭}{4296}
+\indexentry{蓁}{4297}
+\indexentry{蓍}{4298}
+\indexentry{蓐}{4299}
+\indexentry{蓦}{4300}
+\indexentry{蒽}{4301}
+\indexentry{蓓}{4302}
+\indexentry{蓊}{4303}
+\indexentry{蒿}{4304}
+\indexentry{蒺}{4305}
+\indexentry{蓠}{4306}
+\indexentry{蒡}{4307}
+\indexentry{蒹}{4308}
+\indexentry{蒴}{4309}
+\indexentry{蒗}{4310}
+\indexentry{蓥}{4311}
+\indexentry{蓣}{4312}
+\indexentry{蔌}{4313}
+\indexentry{甍}{4314}
+\indexentry{蔸}{4315}
+\indexentry{蓰}{4316}
+\indexentry{蔹}{4317}
+\indexentry{蔟}{4318}
+\indexentry{蔺}{4319}
+\indexentry{蕖}{4320}
+\indexentry{蔻}{4321}
+\indexentry{蓿}{4322}
+\indexentry{蓼}{4323}
+\indexentry{蕙}{4324}
+\indexentry{蕈}{4325}
+\indexentry{蕨}{4326}
+\indexentry{蕤}{4327}
+\indexentry{蕞}{4328}
+\indexentry{蕺}{4329}
+\indexentry{瞢}{4330}
+\indexentry{蕃}{4331}
+\indexentry{蕲}{4332}
+\indexentry{蕻}{4333}
+\indexentry{薤}{4334}
+\indexentry{薨}{4335}
+\indexentry{薇}{4336}
+\indexentry{薏}{4337}
+\indexentry{蕹}{4338}
+\indexentry{薮}{4339}
+\indexentry{薜}{4340}
+\indexentry{薅}{4341}
+\indexentry{薹}{4342}
+\indexentry{薷}{4343}
+\indexentry{薰}{4344}
+\indexentry{藓}{4345}
+\indexentry{藁}{4346}
+\indexentry{藜}{4347}
+\indexentry{藿}{4348}
+\indexentry{蘧}{4349}
+\indexentry{蘅}{4350}
+\indexentry{蘩}{4351}
+\indexentry{蘖}{4352}
+\indexentry{蘼}{4353}
+\indexentry{廾}{4354}
+\indexentry{弈}{4355}
+\indexentry{夼}{4356}
+\indexentry{奁}{4357}
+\indexentry{耷}{4358}
+\indexentry{奕}{4359}
+\indexentry{奚}{4360}
+\indexentry{奘}{4361}
+\indexentry{匏}{4362}
+\indexentry{尢}{4363}
+\indexentry{尥}{4364}
+\indexentry{尬}{4365}
+\indexentry{尴}{4366}
+\indexentry{扌}{4367}
+\indexentry{扪}{4368}
+\indexentry{抟}{4369}
+\indexentry{抻}{4370}
+\indexentry{拊}{4371}
+\indexentry{拚}{4372}
+\indexentry{拗}{4373}
+\indexentry{拮}{4374}
+\indexentry{挢}{4375}
+\indexentry{拶}{4376}
+\indexentry{挹}{4377}
+\indexentry{捋}{4378}
+\indexentry{捃}{4379}
+\indexentry{掭}{4380}
+\indexentry{揶}{4381}
+\indexentry{捱}{4382}
+\indexentry{捺}{4383}
+\indexentry{掎}{4384}
+\indexentry{掴}{4385}
+\indexentry{捭}{4386}
+\indexentry{掬}{4387}
+\indexentry{掊}{4388}
+\indexentry{捩}{4389}
+\indexentry{掮}{4390}
+\indexentry{掼}{4391}
+\indexentry{揲}{4392}
+\indexentry{揸}{4393}
+\indexentry{揠}{4394}
+\indexentry{揿}{4395}
+\indexentry{揄}{4396}
+\indexentry{揞}{4397}
+\indexentry{揎}{4398}
+\indexentry{摒}{4399}
+\indexentry{揆}{4400}
+\indexentry{掾}{4401}
+\indexentry{摅}{4402}
+\indexentry{摁}{4403}
+\indexentry{搋}{4404}
+\indexentry{搛}{4405}
+\indexentry{搠}{4406}
+\indexentry{搌}{4407}
+\indexentry{搦}{4408}
+\indexentry{搡}{4409}
+\indexentry{摞}{4410}
+\indexentry{撄}{4411}
+\indexentry{摭}{4412}
+\indexentry{撖}{4413}
+\indexentry{摺}{4414}
+\indexentry{撷}{4415}
+\indexentry{撸}{4416}
+\indexentry{撙}{4417}
+\indexentry{撺}{4418}
+\indexentry{擀}{4419}
+\indexentry{擐}{4420}
+\indexentry{擗}{4421}
+\indexentry{擤}{4422}
+\indexentry{擢}{4423}
+\indexentry{攉}{4424}
+\indexentry{攥}{4425}
+\indexentry{攮}{4426}
+\indexentry{弋}{4427}
+\indexentry{忒}{4428}
+\indexentry{甙}{4429}
+\indexentry{弑}{4430}
+\indexentry{卟}{4431}
+\indexentry{叱}{4432}
+\indexentry{叽}{4433}
+\indexentry{叩}{4434}
+\indexentry{叨}{4435}
+\indexentry{叻}{4436}
+\indexentry{吒}{4437}
+\indexentry{吖}{4438}
+\indexentry{吆}{4439}
+\indexentry{呋}{4440}
+\indexentry{呒}{4441}
+\indexentry{呓}{4442}
+\indexentry{呔}{4443}
+\indexentry{呖}{4444}
+\indexentry{呃}{4445}
+\indexentry{吡}{4446}
+\indexentry{呗}{4447}
+\indexentry{呙}{4448}
+\indexentry{吣}{4449}
+\indexentry{吲}{4450}
+\indexentry{咂}{4451}
+\indexentry{咔}{4452}
+\indexentry{呷}{4453}
+\indexentry{呱}{4454}
+\indexentry{呤}{4455}
+\indexentry{咚}{4456}
+\indexentry{咛}{4457}
+\indexentry{咄}{4458}
+\indexentry{呶}{4459}
+\indexentry{呦}{4460}
+\indexentry{咝}{4461}
+\indexentry{哐}{4462}
+\indexentry{咭}{4463}
+\indexentry{哂}{4464}
+\indexentry{咴}{4465}
+\indexentry{哒}{4466}
+\indexentry{咧}{4467}
+\indexentry{咦}{4468}
+\indexentry{哓}{4469}
+\indexentry{哔}{4470}
+\indexentry{呲}{4471}
+\indexentry{咣}{4472}
+\indexentry{哕}{4473}
+\indexentry{咻}{4474}
+\indexentry{咿}{4475}
+\indexentry{哌}{4476}
+\indexentry{哙}{4477}
+\indexentry{哚}{4478}
+\indexentry{哜}{4479}
+\indexentry{咩}{4480}
+\indexentry{咪}{4481}
+\indexentry{咤}{4482}
+\indexentry{哝}{4483}
+\indexentry{哏}{4484}
+\indexentry{哞}{4485}
+\indexentry{唛}{4486}
+\indexentry{哧}{4487}
+\indexentry{唠}{4488}
+\indexentry{哽}{4489}
+\indexentry{唔}{4490}
+\indexentry{哳}{4491}
+\indexentry{唢}{4492}
+\indexentry{唣}{4493}
+\indexentry{唏}{4494}
+\indexentry{唑}{4495}
+\indexentry{唧}{4496}
+\indexentry{唪}{4497}
+\indexentry{啧}{4498}
+\indexentry{喏}{4499}
+\indexentry{喵}{4500}
+\indexentry{啉}{4501}
+\indexentry{啭}{4502}
+\indexentry{啁}{4503}
+\indexentry{啕}{4504}
+\indexentry{唿}{4505}
+\indexentry{啐}{4506}
+\indexentry{唼}{4507}
+\indexentry{唷}{4508}
+\indexentry{啖}{4509}
+\indexentry{啵}{4510}
+\indexentry{啶}{4511}
+\indexentry{啷}{4512}
+\indexentry{唳}{4513}
+\indexentry{唰}{4514}
+\indexentry{啜}{4515}
+\indexentry{喋}{4516}
+\indexentry{嗒}{4517}
+\indexentry{喃}{4518}
+\indexentry{喱}{4519}
+\indexentry{喹}{4520}
+\indexentry{喈}{4521}
+\indexentry{喁}{4522}
+\indexentry{喟}{4523}
+\indexentry{啾}{4524}
+\indexentry{嗖}{4525}
+\indexentry{喑}{4526}
+\indexentry{啻}{4527}
+\indexentry{嗟}{4528}
+\indexentry{喽}{4529}
+\indexentry{喾}{4530}
+\indexentry{喔}{4531}
+\indexentry{喙}{4532}
+\indexentry{嗪}{4533}
+\indexentry{嗷}{4534}
+\indexentry{嗉}{4535}
+\indexentry{嘟}{4536}
+\indexentry{嗑}{4537}
+\indexentry{嗫}{4538}
+\indexentry{嗬}{4539}
+\indexentry{嗔}{4540}
+\indexentry{嗦}{4541}
+\indexentry{嗝}{4542}
+\indexentry{嗄}{4543}
+\indexentry{嗯}{4544}
+\indexentry{嗥}{4545}
+\indexentry{嗲}{4546}
+\indexentry{嗳}{4547}
+\indexentry{嗌}{4548}
+\indexentry{嗍}{4549}
+\indexentry{嗨}{4550}
+\indexentry{嗵}{4551}
+\indexentry{嗤}{4552}
+\indexentry{辔}{4553}
+\indexentry{嘞}{4554}
+\indexentry{嘈}{4555}
+\indexentry{嘌}{4556}
+\indexentry{嘁}{4557}
+\indexentry{嘤}{4558}
+\indexentry{嘣}{4559}
+\indexentry{嗾}{4560}
+\indexentry{嘀}{4561}
+\indexentry{嘧}{4562}
+\indexentry{嘭}{4563}
+\indexentry{噘}{4564}
+\indexentry{嘹}{4565}
+\indexentry{噗}{4566}
+\indexentry{嘬}{4567}
+\indexentry{噍}{4568}
+\indexentry{噢}{4569}
+\indexentry{噙}{4570}
+\indexentry{噜}{4571}
+\indexentry{噌}{4572}
+\indexentry{噔}{4573}
+\indexentry{嚆}{4574}
+\indexentry{噤}{4575}
+\indexentry{噱}{4576}
+\indexentry{噫}{4577}
+\indexentry{噻}{4578}
+\indexentry{噼}{4579}
+\indexentry{嚅}{4580}
+\indexentry{嚓}{4581}
+\indexentry{嚯}{4582}
+\indexentry{囔}{4583}
+\indexentry{囗}{4584}
+\indexentry{囝}{4585}
+\indexentry{囡}{4586}
+\indexentry{囵}{4587}
+\indexentry{囫}{4588}
+\indexentry{囹}{4589}
+\indexentry{囿}{4590}
+\indexentry{圄}{4591}
+\indexentry{圊}{4592}
+\indexentry{圉}{4593}
+\indexentry{圜}{4594}
+\indexentry{帏}{4595}
+\indexentry{帙}{4596}
+\indexentry{帔}{4597}
+\indexentry{帑}{4598}
+\indexentry{帱}{4599}
+\indexentry{帻}{4600}
+\indexentry{帼}{4601}
+\indexentry{帷}{4602}
+\indexentry{幄}{4603}
+\indexentry{幔}{4604}
+\indexentry{幛}{4605}
+\indexentry{幞}{4606}
+\indexentry{幡}{4607}
+\indexentry{岌}{4608}
+\indexentry{屺}{4609}
+\indexentry{岍}{4610}
+\indexentry{岐}{4611}
+\indexentry{岖}{4612}
+\indexentry{岈}{4613}
+\indexentry{岘}{4614}
+\indexentry{岙}{4615}
+\indexentry{岑}{4616}
+\indexentry{岚}{4617}
+\indexentry{岜}{4618}
+\indexentry{岵}{4619}
+\indexentry{岢}{4620}
+\indexentry{岽}{4621}
+\indexentry{岬}{4622}
+\indexentry{岫}{4623}
+\indexentry{岱}{4624}
+\indexentry{岣}{4625}
+\indexentry{峁}{4626}
+\indexentry{岷}{4627}
+\indexentry{峄}{4628}
+\indexentry{峒}{4629}
+\indexentry{峤}{4630}
+\indexentry{峋}{4631}
+\indexentry{峥}{4632}
+\indexentry{崂}{4633}
+\indexentry{崃}{4634}
+\indexentry{崧}{4635}
+\indexentry{崦}{4636}
+\indexentry{崮}{4637}
+\indexentry{崤}{4638}
+\indexentry{崞}{4639}
+\indexentry{崆}{4640}
+\indexentry{崛}{4641}
+\indexentry{嵘}{4642}
+\indexentry{崾}{4643}
+\indexentry{崴}{4644}
+\indexentry{崽}{4645}
+\indexentry{嵬}{4646}
+\indexentry{嵛}{4647}
+\indexentry{嵯}{4648}
+\indexentry{嵝}{4649}
+\indexentry{嵫}{4650}
+\indexentry{嵋}{4651}
+\indexentry{嵊}{4652}
+\indexentry{嵩}{4653}
+\indexentry{嵴}{4654}
+\indexentry{嶂}{4655}
+\indexentry{嶙}{4656}
+\indexentry{嶝}{4657}
+\indexentry{豳}{4658}
+\indexentry{嶷}{4659}
+\indexentry{巅}{4660}
+\indexentry{彳}{4661}
+\indexentry{彷}{4662}
+\indexentry{徂}{4663}
+\indexentry{徇}{4664}
+\indexentry{徉}{4665}
+\indexentry{後}{4666}
+\indexentry{徕}{4667}
+\indexentry{徙}{4668}
+\indexentry{徜}{4669}
+\indexentry{徨}{4670}
+\indexentry{徭}{4671}
+\indexentry{徵}{4672}
+\indexentry{徼}{4673}
+\indexentry{衢}{4674}
+\indexentry{彡}{4675}
+\indexentry{犭}{4676}
+\indexentry{犰}{4677}
+\indexentry{犴}{4678}
+\indexentry{犷}{4679}
+\indexentry{犸}{4680}
+\indexentry{狃}{4681}
+\indexentry{狁}{4682}
+\indexentry{狎}{4683}
+\indexentry{狍}{4684}
+\indexentry{狒}{4685}
+\indexentry{狨}{4686}
+\indexentry{狯}{4687}
+\indexentry{狩}{4688}
+\indexentry{狲}{4689}
+\indexentry{狴}{4690}
+\indexentry{狷}{4691}
+\indexentry{猁}{4692}
+\indexentry{狳}{4693}
+\indexentry{猃}{4694}
+\indexentry{狺}{4695}
+\indexentry{狻}{4696}
+\indexentry{猗}{4697}
+\indexentry{猓}{4698}
+\indexentry{猡}{4699}
+\indexentry{猊}{4700}
+\indexentry{猞}{4701}
+\indexentry{猝}{4702}
+\indexentry{猕}{4703}
+\indexentry{猢}{4704}
+\indexentry{猹}{4705}
+\indexentry{猥}{4706}
+\indexentry{猬}{4707}
+\indexentry{猸}{4708}
+\indexentry{猱}{4709}
+\indexentry{獐}{4710}
+\indexentry{獍}{4711}
+\indexentry{獗}{4712}
+\indexentry{獠}{4713}
+\indexentry{獬}{4714}
+\indexentry{獯}{4715}
+\indexentry{獾}{4716}
+\indexentry{舛}{4717}
+\indexentry{夥}{4718}
+\indexentry{飧}{4719}
+\indexentry{夤}{4720}
+\indexentry{夂}{4721}
+\indexentry{饣}{4722}
+\indexentry{饧}{4723}
+\indexentry{饨}{4724}
+\indexentry{饩}{4725}
+\indexentry{饪}{4726}
+\indexentry{饫}{4727}
+\indexentry{饬}{4728}
+\indexentry{饴}{4729}
+\indexentry{饷}{4730}
+\indexentry{饽}{4731}
+\indexentry{馀}{4732}
+\indexentry{馄}{4733}
+\indexentry{馇}{4734}
+\indexentry{馊}{4735}
+\indexentry{馍}{4736}
+\indexentry{馐}{4737}
+\indexentry{馑}{4738}
+\indexentry{馓}{4739}
+\indexentry{馔}{4740}
+\indexentry{馕}{4741}
+\indexentry{庀}{4742}
+\indexentry{庑}{4743}
+\indexentry{庋}{4744}
+\indexentry{庖}{4745}
+\indexentry{庥}{4746}
+\indexentry{庠}{4747}
+\indexentry{庹}{4748}
+\indexentry{庵}{4749}
+\indexentry{庾}{4750}
+\indexentry{庳}{4751}
+\indexentry{赓}{4752}
+\indexentry{廒}{4753}
+\indexentry{廑}{4754}
+\indexentry{廛}{4755}
+\indexentry{廨}{4756}
+\indexentry{廪}{4757}
+\indexentry{膺}{4758}
+\indexentry{忄}{4759}
+\indexentry{忉}{4760}
+\indexentry{忖}{4761}
+\indexentry{忏}{4762}
+\indexentry{怃}{4763}
+\indexentry{忮}{4764}
+\indexentry{怄}{4765}
+\indexentry{忡}{4766}
+\indexentry{忤}{4767}
+\indexentry{忾}{4768}
+\indexentry{怅}{4769}
+\indexentry{怆}{4770}
+\indexentry{忪}{4771}
+\indexentry{忭}{4772}
+\indexentry{忸}{4773}
+\indexentry{怙}{4774}
+\indexentry{怵}{4775}
+\indexentry{怦}{4776}
+\indexentry{怛}{4777}
+\indexentry{怏}{4778}
+\indexentry{怍}{4779}
+\indexentry{怩}{4780}
+\indexentry{怫}{4781}
+\indexentry{怊}{4782}
+\indexentry{怿}{4783}
+\indexentry{怡}{4784}
+\indexentry{恸}{4785}
+\indexentry{恹}{4786}
+\indexentry{恻}{4787}
+\indexentry{恺}{4788}
+\indexentry{恂}{4789}
+\indexentry{恪}{4790}
+\indexentry{恽}{4791}
+\indexentry{悖}{4792}
+\indexentry{悚}{4793}
+\indexentry{悭}{4794}
+\indexentry{悝}{4795}
+\indexentry{悃}{4796}
+\indexentry{悒}{4797}
+\indexentry{悌}{4798}
+\indexentry{悛}{4799}
+\indexentry{惬}{4800}
+\indexentry{悻}{4801}
+\indexentry{悱}{4802}
+\indexentry{惝}{4803}
+\indexentry{惘}{4804}
+\indexentry{惆}{4805}
+\indexentry{惚}{4806}
+\indexentry{悴}{4807}
+\indexentry{愠}{4808}
+\indexentry{愦}{4809}
+\indexentry{愕}{4810}
+\indexentry{愣}{4811}
+\indexentry{惴}{4812}
+\indexentry{愀}{4813}
+\indexentry{愎}{4814}
+\indexentry{愫}{4815}
+\indexentry{慊}{4816}
+\indexentry{慵}{4817}
+\indexentry{憬}{4818}
+\indexentry{憔}{4819}
+\indexentry{憧}{4820}
+\indexentry{憷}{4821}
+\indexentry{懔}{4822}
+\indexentry{懵}{4823}
+\indexentry{忝}{4824}
+\indexentry{隳}{4825}
+\indexentry{闩}{4826}
+\indexentry{闫}{4827}
+\indexentry{闱}{4828}
+\indexentry{闳}{4829}
+\indexentry{闵}{4830}
+\indexentry{闶}{4831}
+\indexentry{闼}{4832}
+\indexentry{闾}{4833}
+\indexentry{阃}{4834}
+\indexentry{阄}{4835}
+\indexentry{阆}{4836}
+\indexentry{阈}{4837}
+\indexentry{阊}{4838}
+\indexentry{阋}{4839}
+\indexentry{阌}{4840}
+\indexentry{阍}{4841}
+\indexentry{阏}{4842}
+\indexentry{阒}{4843}
+\indexentry{阕}{4844}
+\indexentry{阖}{4845}
+\indexentry{阗}{4846}
+\indexentry{阙}{4847}
+\indexentry{阚}{4848}
+\indexentry{丬}{4849}
+\indexentry{爿}{4850}
+\indexentry{戕}{4851}
+\indexentry{氵}{4852}
+\indexentry{汔}{4853}
+\indexentry{汜}{4854}
+\indexentry{汊}{4855}
+\indexentry{沣}{4856}
+\indexentry{沅}{4857}
+\indexentry{沐}{4858}
+\indexentry{沔}{4859}
+\indexentry{沌}{4860}
+\indexentry{汨}{4861}
+\indexentry{汩}{4862}
+\indexentry{汴}{4863}
+\indexentry{汶}{4864}
+\indexentry{沆}{4865}
+\indexentry{沩}{4866}
+\indexentry{泐}{4867}
+\indexentry{泔}{4868}
+\indexentry{沭}{4869}
+\indexentry{泷}{4870}
+\indexentry{泸}{4871}
+\indexentry{泱}{4872}
+\indexentry{泗}{4873}
+\indexentry{沲}{4874}
+\indexentry{泠}{4875}
+\indexentry{泖}{4876}
+\indexentry{泺}{4877}
+\indexentry{泫}{4878}
+\indexentry{泮}{4879}
+\indexentry{沱}{4880}
+\indexentry{泓}{4881}
+\indexentry{泯}{4882}
+\indexentry{泾}{4883}
+\indexentry{洹}{4884}
+\indexentry{洧}{4885}
+\indexentry{洌}{4886}
+\indexentry{浃}{4887}
+\indexentry{浈}{4888}
+\indexentry{洇}{4889}
+\indexentry{洄}{4890}
+\indexentry{洙}{4891}
+\indexentry{洎}{4892}
+\indexentry{洫}{4893}
+\indexentry{浍}{4894}
+\indexentry{洮}{4895}
+\indexentry{洵}{4896}
+\indexentry{洚}{4897}
+\indexentry{浏}{4898}
+\indexentry{浒}{4899}
+\indexentry{浔}{4900}
+\indexentry{洳}{4901}
+\indexentry{涑}{4902}
+\indexentry{浯}{4903}
+\indexentry{涞}{4904}
+\indexentry{涠}{4905}
+\indexentry{浞}{4906}
+\indexentry{涓}{4907}
+\indexentry{涔}{4908}
+\indexentry{浜}{4909}
+\indexentry{浠}{4910}
+\indexentry{浼}{4911}
+\indexentry{浣}{4912}
+\indexentry{渚}{4913}
+\indexentry{淇}{4914}
+\indexentry{淅}{4915}
+\indexentry{淞}{4916}
+\indexentry{渎}{4917}
+\indexentry{涿}{4918}
+\indexentry{淠}{4919}
+\indexentry{渑}{4920}
+\indexentry{淦}{4921}
+\indexentry{淝}{4922}
+\indexentry{淙}{4923}
+\indexentry{渖}{4924}
+\indexentry{涫}{4925}
+\indexentry{渌}{4926}
+\indexentry{涮}{4927}
+\indexentry{渫}{4928}
+\indexentry{湮}{4929}
+\indexentry{湎}{4930}
+\indexentry{湫}{4931}
+\indexentry{溲}{4932}
+\indexentry{湟}{4933}
+\indexentry{溆}{4934}
+\indexentry{湓}{4935}
+\indexentry{湔}{4936}
+\indexentry{渲}{4937}
+\indexentry{渥}{4938}
+\indexentry{湄}{4939}
+\indexentry{滟}{4940}
+\indexentry{溱}{4941}
+\indexentry{溘}{4942}
+\indexentry{滠}{4943}
+\indexentry{漭}{4944}
+\indexentry{滢}{4945}
+\indexentry{溥}{4946}
+\indexentry{溧}{4947}
+\indexentry{溽}{4948}
+\indexentry{溻}{4949}
+\indexentry{溷}{4950}
+\indexentry{滗}{4951}
+\indexentry{溴}{4952}
+\indexentry{滏}{4953}
+\indexentry{溏}{4954}
+\indexentry{滂}{4955}
+\indexentry{溟}{4956}
+\indexentry{潢}{4957}
+\indexentry{潆}{4958}
+\indexentry{潇}{4959}
+\indexentry{漤}{4960}
+\indexentry{漕}{4961}
+\indexentry{滹}{4962}
+\indexentry{漯}{4963}
+\indexentry{漶}{4964}
+\indexentry{潋}{4965}
+\indexentry{潴}{4966}
+\indexentry{漪}{4967}
+\indexentry{漉}{4968}
+\indexentry{漩}{4969}
+\indexentry{澉}{4970}
+\indexentry{澍}{4971}
+\indexentry{澌}{4972}
+\indexentry{潸}{4973}
+\indexentry{潲}{4974}
+\indexentry{潼}{4975}
+\indexentry{潺}{4976}
+\indexentry{濑}{4977}
+\indexentry{濉}{4978}
+\indexentry{澧}{4979}
+\indexentry{澹}{4980}
+\indexentry{澶}{4981}
+\indexentry{濂}{4982}
+\indexentry{濡}{4983}
+\indexentry{濮}{4984}
+\indexentry{濞}{4985}
+\indexentry{濠}{4986}
+\indexentry{濯}{4987}
+\indexentry{瀚}{4988}
+\indexentry{瀣}{4989}
+\indexentry{瀛}{4990}
+\indexentry{瀹}{4991}
+\indexentry{瀵}{4992}
+\indexentry{灏}{4993}
+\indexentry{灞}{4994}
+\indexentry{宀}{4995}
+\indexentry{宄}{4996}
+\indexentry{宕}{4997}
+\indexentry{宓}{4998}
+\indexentry{宥}{4999}
+\indexentry{宸}{5000}
+\indexentry{甯}{5001}
+\indexentry{骞}{5002}
+\indexentry{搴}{5003}
+\indexentry{寤}{5004}
+\indexentry{寮}{5005}
+\indexentry{褰}{5006}
+\indexentry{寰}{5007}
+\indexentry{蹇}{5008}
+\indexentry{謇}{5009}
+\indexentry{辶}{5010}
+\indexentry{迓}{5011}
+\indexentry{迕}{5012}
+\indexentry{迥}{5013}
+\indexentry{迮}{5014}
+\indexentry{迤}{5015}
+\indexentry{迩}{5016}
+\indexentry{迦}{5017}
+\indexentry{迳}{5018}
+\indexentry{迨}{5019}
+\indexentry{逅}{5020}
+\indexentry{逄}{5021}
+\indexentry{逋}{5022}
+\indexentry{逦}{5023}
+\indexentry{逑}{5024}
+\indexentry{逍}{5025}
+\indexentry{逖}{5026}
+\indexentry{逡}{5027}
+\indexentry{逵}{5028}
+\indexentry{逶}{5029}
+\indexentry{逭}{5030}
+\indexentry{逯}{5031}
+\indexentry{遄}{5032}
+\indexentry{遑}{5033}
+\indexentry{遒}{5034}
+\indexentry{遐}{5035}
+\indexentry{遨}{5036}
+\indexentry{遘}{5037}
+\indexentry{遢}{5038}
+\indexentry{遛}{5039}
+\indexentry{暹}{5040}
+\indexentry{遴}{5041}
+\indexentry{遽}{5042}
+\indexentry{邂}{5043}
+\indexentry{邈}{5044}
+\indexentry{邃}{5045}
+\indexentry{邋}{5046}
+\indexentry{彐}{5047}
+\indexentry{彗}{5048}
+\indexentry{彖}{5049}
+\indexentry{彘}{5050}
+\indexentry{尻}{5051}
+\indexentry{咫}{5052}
+\indexentry{屐}{5053}
+\indexentry{屙}{5054}
+\indexentry{孱}{5055}
+\indexentry{屣}{5056}
+\indexentry{屦}{5057}
+\indexentry{羼}{5058}
+\indexentry{弪}{5059}
+\indexentry{弩}{5060}
+\indexentry{弭}{5061}
+\indexentry{艴}{5062}
+\indexentry{弼}{5063}
+\indexentry{鬻}{5064}
+\indexentry{屮}{5065}
+\indexentry{妁}{5066}
+\indexentry{妃}{5067}
+\indexentry{妍}{5068}
+\indexentry{妩}{5069}
+\indexentry{妪}{5070}
+\indexentry{妣}{5071}
+\indexentry{妗}{5072}
+\indexentry{姊}{5073}
+\indexentry{妫}{5074}
+\indexentry{妞}{5075}
+\indexentry{妤}{5076}
+\indexentry{姒}{5077}
+\indexentry{妲}{5078}
+\indexentry{妯}{5079}
+\indexentry{姗}{5080}
+\indexentry{妾}{5081}
+\indexentry{娅}{5082}
+\indexentry{娆}{5083}
+\indexentry{姝}{5084}
+\indexentry{娈}{5085}
+\indexentry{姣}{5086}
+\indexentry{姘}{5087}
+\indexentry{姹}{5088}
+\indexentry{娌}{5089}
+\indexentry{娉}{5090}
+\indexentry{娲}{5091}
+\indexentry{娴}{5092}
+\indexentry{娑}{5093}
+\indexentry{娣}{5094}
+\indexentry{娓}{5095}
+\indexentry{婀}{5096}
+\indexentry{婧}{5097}
+\indexentry{婊}{5098}
+\indexentry{婕}{5099}
+\indexentry{娼}{5100}
+\indexentry{婢}{5101}
+\indexentry{婵}{5102}
+\indexentry{胬}{5103}
+\indexentry{媪}{5104}
+\indexentry{媛}{5105}
+\indexentry{婷}{5106}
+\indexentry{婺}{5107}
+\indexentry{媾}{5108}
+\indexentry{嫫}{5109}
+\indexentry{媲}{5110}
+\indexentry{嫒}{5111}
+\indexentry{嫔}{5112}
+\indexentry{媸}{5113}
+\indexentry{嫠}{5114}
+\indexentry{嫣}{5115}
+\indexentry{嫱}{5116}
+\indexentry{嫖}{5117}
+\indexentry{嫦}{5118}
+\indexentry{嫘}{5119}
+\indexentry{嫜}{5120}
+\indexentry{嬉}{5121}
+\indexentry{嬗}{5122}
+\indexentry{嬖}{5123}
+\indexentry{嬲}{5124}
+\indexentry{嬷}{5125}
+\indexentry{孀}{5126}
+\indexentry{尕}{5127}
+\indexentry{尜}{5128}
+\indexentry{孚}{5129}
+\indexentry{孥}{5130}
+\indexentry{孳}{5131}
+\indexentry{孑}{5132}
+\indexentry{孓}{5133}
+\indexentry{孢}{5134}
+\indexentry{驵}{5135}
+\indexentry{驷}{5136}
+\indexentry{驸}{5137}
+\indexentry{驺}{5138}
+\indexentry{驿}{5139}
+\indexentry{驽}{5140}
+\indexentry{骀}{5141}
+\indexentry{骁}{5142}
+\indexentry{骅}{5143}
+\indexentry{骈}{5144}
+\indexentry{骊}{5145}
+\indexentry{骐}{5146}
+\indexentry{骒}{5147}
+\indexentry{骓}{5148}
+\indexentry{骖}{5149}
+\indexentry{骘}{5150}
+\indexentry{骛}{5151}
+\indexentry{骜}{5152}
+\indexentry{骝}{5153}
+\indexentry{骟}{5154}
+\indexentry{骠}{5155}
+\indexentry{骢}{5156}
+\indexentry{骣}{5157}
+\indexentry{骥}{5158}
+\indexentry{骧}{5159}
+\indexentry{纟}{5160}
+\indexentry{纡}{5161}
+\indexentry{纣}{5162}
+\indexentry{纥}{5163}
+\indexentry{纨}{5164}
+\indexentry{纩}{5165}
+\indexentry{纭}{5166}
+\indexentry{纰}{5167}
+\indexentry{纾}{5168}
+\indexentry{绀}{5169}
+\indexentry{绁}{5170}
+\indexentry{绂}{5171}
+\indexentry{绉}{5172}
+\indexentry{绋}{5173}
+\indexentry{绌}{5174}
+\indexentry{绐}{5175}
+\indexentry{绔}{5176}
+\indexentry{绗}{5177}
+\indexentry{绛}{5178}
+\indexentry{绠}{5179}
+\indexentry{绡}{5180}
+\indexentry{绨}{5181}
+\indexentry{绫}{5182}
+\indexentry{绮}{5183}
+\indexentry{绯}{5184}
+\indexentry{绱}{5185}
+\indexentry{绲}{5186}
+\indexentry{缍}{5187}
+\indexentry{绶}{5188}
+\indexentry{绺}{5189}
+\indexentry{绻}{5190}
+\indexentry{绾}{5191}
+\indexentry{缁}{5192}
+\indexentry{缂}{5193}
+\indexentry{缃}{5194}
+\indexentry{缇}{5195}
+\indexentry{缈}{5196}
+\indexentry{缋}{5197}
+\indexentry{缌}{5198}
+\indexentry{缏}{5199}
+\indexentry{缑}{5200}
+\indexentry{缒}{5201}
+\indexentry{缗}{5202}
+\indexentry{缙}{5203}
+\indexentry{缜}{5204}
+\indexentry{缛}{5205}
+\indexentry{缟}{5206}
+\indexentry{缡}{5207}
+\indexentry{缢}{5208}
+\indexentry{缣}{5209}
+\indexentry{缤}{5210}
+\indexentry{缥}{5211}
+\indexentry{缦}{5212}
+\indexentry{缧}{5213}
+\indexentry{缪}{5214}
+\indexentry{缫}{5215}
+\indexentry{缬}{5216}
+\indexentry{缭}{5217}
+\indexentry{缯}{5218}
+\indexentry{缰}{5219}
+\indexentry{缱}{5220}
+\indexentry{缲}{5221}
+\indexentry{缳}{5222}
+\indexentry{缵}{5223}
+\indexentry{幺}{5224}
+\indexentry{畿}{5225}
+\indexentry{巛}{5226}
+\indexentry{甾}{5227}
+\indexentry{邕}{5228}
+\indexentry{玎}{5229}
+\indexentry{玑}{5230}
+\indexentry{玮}{5231}
+\indexentry{玢}{5232}
+\indexentry{玟}{5233}
+\indexentry{珏}{5234}
+\indexentry{珂}{5235}
+\indexentry{珑}{5236}
+\indexentry{玷}{5237}
+\indexentry{玳}{5238}
+\indexentry{珀}{5239}
+\indexentry{珉}{5240}
+\indexentry{珈}{5241}
+\indexentry{珥}{5242}
+\indexentry{珙}{5243}
+\indexentry{顼}{5244}
+\indexentry{琊}{5245}
+\indexentry{珩}{5246}
+\indexentry{珧}{5247}
+\indexentry{珞}{5248}
+\indexentry{玺}{5249}
+\indexentry{珲}{5250}
+\indexentry{琏}{5251}
+\indexentry{琪}{5252}
+\indexentry{瑛}{5253}
+\indexentry{琦}{5254}
+\indexentry{琥}{5255}
+\indexentry{琨}{5256}
+\indexentry{琰}{5257}
+\indexentry{琮}{5258}
+\indexentry{琬}{5259}
+\indexentry{琛}{5260}
+\indexentry{琚}{5261}
+\indexentry{瑁}{5262}
+\indexentry{瑜}{5263}
+\indexentry{瑗}{5264}
+\indexentry{瑕}{5265}
+\indexentry{瑙}{5266}
+\indexentry{瑷}{5267}
+\indexentry{瑭}{5268}
+\indexentry{瑾}{5269}
+\indexentry{璜}{5270}
+\indexentry{璎}{5271}
+\indexentry{璀}{5272}
+\indexentry{璁}{5273}
+\indexentry{璇}{5274}
+\indexentry{璋}{5275}
+\indexentry{璞}{5276}
+\indexentry{璨}{5277}
+\indexentry{璩}{5278}
+\indexentry{璐}{5279}
+\indexentry{璧}{5280}
+\indexentry{瓒}{5281}
+\indexentry{璺}{5282}
+\indexentry{韪}{5283}
+\indexentry{韫}{5284}
+\indexentry{韬}{5285}
+\indexentry{杌}{5286}
+\indexentry{杓}{5287}
+\indexentry{杞}{5288}
+\indexentry{杈}{5289}
+\indexentry{杩}{5290}
+\indexentry{枥}{5291}
+\indexentry{枇}{5292}
+\indexentry{杪}{5293}
+\indexentry{杳}{5294}
+\indexentry{枘}{5295}
+\indexentry{枧}{5296}
+\indexentry{杵}{5297}
+\indexentry{枨}{5298}
+\indexentry{枞}{5299}
+\indexentry{枭}{5300}
+\indexentry{枋}{5301}
+\indexentry{杷}{5302}
+\indexentry{杼}{5303}
+\indexentry{柰}{5304}
+\indexentry{栉}{5305}
+\indexentry{柘}{5306}
+\indexentry{栊}{5307}
+\indexentry{柩}{5308}
+\indexentry{枰}{5309}
+\indexentry{栌}{5310}
+\indexentry{柙}{5311}
+\indexentry{枵}{5312}
+\indexentry{柚}{5313}
+\indexentry{枳}{5314}
+\indexentry{柝}{5315}
+\indexentry{栀}{5316}
+\indexentry{柃}{5317}
+\indexentry{枸}{5318}
+\indexentry{柢}{5319}
+\indexentry{栎}{5320}
+\indexentry{柁}{5321}
+\indexentry{柽}{5322}
+\indexentry{栲}{5323}
+\indexentry{栳}{5324}
+\indexentry{桠}{5325}
+\indexentry{桡}{5326}
+\indexentry{桎}{5327}
+\indexentry{桢}{5328}
+\indexentry{桄}{5329}
+\indexentry{桤}{5330}
+\indexentry{梃}{5331}
+\indexentry{栝}{5332}
+\indexentry{桕}{5333}
+\indexentry{桦}{5334}
+\indexentry{桁}{5335}
+\indexentry{桧}{5336}
+\indexentry{桀}{5337}
+\indexentry{栾}{5338}
+\indexentry{桊}{5339}
+\indexentry{桉}{5340}
+\indexentry{栩}{5341}
+\indexentry{梵}{5342}
+\indexentry{梏}{5343}
+\indexentry{桴}{5344}
+\indexentry{桷}{5345}
+\indexentry{梓}{5346}
+\indexentry{桫}{5347}
+\indexentry{棂}{5348}
+\indexentry{楮}{5349}
+\indexentry{棼}{5350}
+\indexentry{椟}{5351}
+\indexentry{椠}{5352}
+\indexentry{棹}{5353}
+\indexentry{椤}{5354}
+\indexentry{棰}{5355}
+\indexentry{椋}{5356}
+\indexentry{椁}{5357}
+\indexentry{楗}{5358}
+\indexentry{棣}{5359}
+\indexentry{椐}{5360}
+\indexentry{楱}{5361}
+\indexentry{椹}{5362}
+\indexentry{楠}{5363}
+\indexentry{楂}{5364}
+\indexentry{楝}{5365}
+\indexentry{榄}{5366}
+\indexentry{楫}{5367}
+\indexentry{榀}{5368}
+\indexentry{榘}{5369}
+\indexentry{楸}{5370}
+\indexentry{椴}{5371}
+\indexentry{槌}{5372}
+\indexentry{榇}{5373}
+\indexentry{榈}{5374}
+\indexentry{槎}{5375}
+\indexentry{榉}{5376}
+\indexentry{楦}{5377}
+\indexentry{楣}{5378}
+\indexentry{楹}{5379}
+\indexentry{榛}{5380}
+\indexentry{榧}{5381}
+\indexentry{榻}{5382}
+\indexentry{榫}{5383}
+\indexentry{榭}{5384}
+\indexentry{槔}{5385}
+\indexentry{榱}{5386}
+\indexentry{槁}{5387}
+\indexentry{槊}{5388}
+\indexentry{槟}{5389}
+\indexentry{榕}{5390}
+\indexentry{槠}{5391}
+\indexentry{榍}{5392}
+\indexentry{槿}{5393}
+\indexentry{樯}{5394}
+\indexentry{槭}{5395}
+\indexentry{樗}{5396}
+\indexentry{樘}{5397}
+\indexentry{橥}{5398}
+\indexentry{槲}{5399}
+\indexentry{橄}{5400}
+\indexentry{樾}{5401}
+\indexentry{檠}{5402}
+\indexentry{橐}{5403}
+\indexentry{橛}{5404}
+\indexentry{樵}{5405}
+\indexentry{檎}{5406}
+\indexentry{橹}{5407}
+\indexentry{樽}{5408}
+\indexentry{樨}{5409}
+\indexentry{橘}{5410}
+\indexentry{橼}{5411}
+\indexentry{檑}{5412}
+\indexentry{檐}{5413}
+\indexentry{檩}{5414}
+\indexentry{檗}{5415}
+\indexentry{檫}{5416}
+\indexentry{猷}{5417}
+\indexentry{獒}{5418}
+\indexentry{殁}{5419}
+\indexentry{殂}{5420}
+\indexentry{殇}{5421}
+\indexentry{殄}{5422}
+\indexentry{殒}{5423}
+\indexentry{殓}{5424}
+\indexentry{殍}{5425}
+\indexentry{殚}{5426}
+\indexentry{殛}{5427}
+\indexentry{殡}{5428}
+\indexentry{殪}{5429}
+\indexentry{轫}{5430}
+\indexentry{轭}{5431}
+\indexentry{轱}{5432}
+\indexentry{轲}{5433}
+\indexentry{轳}{5434}
+\indexentry{轵}{5435}
+\indexentry{轶}{5436}
+\indexentry{轸}{5437}
+\indexentry{轷}{5438}
+\indexentry{轹}{5439}
+\indexentry{轺}{5440}
+\indexentry{轼}{5441}
+\indexentry{轾}{5442}
+\indexentry{辁}{5443}
+\indexentry{辂}{5444}
+\indexentry{辄}{5445}
+\indexentry{辇}{5446}
+\indexentry{辋}{5447}
+\indexentry{辍}{5448}
+\indexentry{辎}{5449}
+\indexentry{辏}{5450}
+\indexentry{辘}{5451}
+\indexentry{辚}{5452}
+\indexentry{軎}{5453}
+\indexentry{戋}{5454}
+\indexentry{戗}{5455}
+\indexentry{戛}{5456}
+\indexentry{戟}{5457}
+\indexentry{戢}{5458}
+\indexentry{戡}{5459}
+\indexentry{戥}{5460}
+\indexentry{戤}{5461}
+\indexentry{戬}{5462}
+\indexentry{臧}{5463}
+\indexentry{瓯}{5464}
+\indexentry{瓴}{5465}
+\indexentry{瓿}{5466}
+\indexentry{甏}{5467}
+\indexentry{甑}{5468}
+\indexentry{甓}{5469}
+\indexentry{攴}{5470}
+\indexentry{旮}{5471}
+\indexentry{旯}{5472}
+\indexentry{旰}{5473}
+\indexentry{昊}{5474}
+\indexentry{昙}{5475}
+\indexentry{杲}{5476}
+\indexentry{昃}{5477}
+\indexentry{昕}{5478}
+\indexentry{昀}{5479}
+\indexentry{炅}{5480}
+\indexentry{曷}{5481}
+\indexentry{昝}{5482}
+\indexentry{昴}{5483}
+\indexentry{昱}{5484}
+\indexentry{昶}{5485}
+\indexentry{昵}{5486}
+\indexentry{耆}{5487}
+\indexentry{晟}{5488}
+\indexentry{晔}{5489}
+\indexentry{晁}{5490}
+\indexentry{晏}{5491}
+\indexentry{晖}{5492}
+\indexentry{晡}{5493}
+\indexentry{晗}{5494}
+\indexentry{晷}{5495}
+\indexentry{暄}{5496}
+\indexentry{暌}{5497}
+\indexentry{暧}{5498}
+\indexentry{暝}{5499}
+\indexentry{暾}{5500}
+\indexentry{曛}{5501}
+\indexentry{曜}{5502}
+\indexentry{曦}{5503}
+\indexentry{曩}{5504}
+\indexentry{贲}{5505}
+\indexentry{贳}{5506}
+\indexentry{贶}{5507}
+\indexentry{贻}{5508}
+\indexentry{贽}{5509}
+\indexentry{赀}{5510}
+\indexentry{赅}{5511}
+\indexentry{赆}{5512}
+\indexentry{赈}{5513}
+\indexentry{赉}{5514}
+\indexentry{赇}{5515}
+\indexentry{赍}{5516}
+\indexentry{赕}{5517}
+\indexentry{赙}{5518}
+\indexentry{觇}{5519}
+\indexentry{觊}{5520}
+\indexentry{觋}{5521}
+\indexentry{觌}{5522}
+\indexentry{觎}{5523}
+\indexentry{觏}{5524}
+\indexentry{觐}{5525}
+\indexentry{觑}{5526}
+\indexentry{牮}{5527}
+\indexentry{犟}{5528}
+\indexentry{牝}{5529}
+\indexentry{牦}{5530}
+\indexentry{牯}{5531}
+\indexentry{牾}{5532}
+\indexentry{牿}{5533}
+\indexentry{犄}{5534}
+\indexentry{犋}{5535}
+\indexentry{犍}{5536}
+\indexentry{犏}{5537}
+\indexentry{犒}{5538}
+\indexentry{挈}{5539}
+\indexentry{挲}{5540}
+\indexentry{掰}{5541}
+\indexentry{搿}{5542}
+\indexentry{擘}{5543}
+\indexentry{耄}{5544}
+\indexentry{毪}{5545}
+\indexentry{毳}{5546}
+\indexentry{毽}{5547}
+\indexentry{毵}{5548}
+\indexentry{毹}{5549}
+\indexentry{氅}{5550}
+\indexentry{氇}{5551}
+\indexentry{氆}{5552}
+\indexentry{氍}{5553}
+\indexentry{氕}{5554}
+\indexentry{氘}{5555}
+\indexentry{氙}{5556}
+\indexentry{氚}{5557}
+\indexentry{氡}{5558}
+\indexentry{氩}{5559}
+\indexentry{氤}{5560}
+\indexentry{氪}{5561}
+\indexentry{氲}{5562}
+\indexentry{攵}{5563}
+\indexentry{敕}{5564}
+\indexentry{敫}{5565}
+\indexentry{牍}{5566}
+\indexentry{牒}{5567}
+\indexentry{牖}{5568}
+\indexentry{爰}{5569}
+\indexentry{虢}{5570}
+\indexentry{刖}{5571}
+\indexentry{肟}{5572}
+\indexentry{肜}{5573}
+\indexentry{肓}{5574}
+\indexentry{肼}{5575}
+\indexentry{朊}{5576}
+\indexentry{肽}{5577}
+\indexentry{肱}{5578}
+\indexentry{肫}{5579}
+\indexentry{肭}{5580}
+\indexentry{肴}{5581}
+\indexentry{肷}{5582}
+\indexentry{胧}{5583}
+\indexentry{胨}{5584}
+\indexentry{胩}{5585}
+\indexentry{胪}{5586}
+\indexentry{胛}{5587}
+\indexentry{胂}{5588}
+\indexentry{胄}{5589}
+\indexentry{胙}{5590}
+\indexentry{胍}{5591}
+\indexentry{胗}{5592}
+\indexentry{朐}{5593}
+\indexentry{胝}{5594}
+\indexentry{胫}{5595}
+\indexentry{胱}{5596}
+\indexentry{胴}{5597}
+\indexentry{胭}{5598}
+\indexentry{脍}{5599}
+\indexentry{脎}{5600}
+\indexentry{胲}{5601}
+\indexentry{胼}{5602}
+\indexentry{朕}{5603}
+\indexentry{脒}{5604}
+\indexentry{豚}{5605}
+\indexentry{脶}{5606}
+\indexentry{脞}{5607}
+\indexentry{脬}{5608}
+\indexentry{脘}{5609}
+\indexentry{脲}{5610}
+\indexentry{腈}{5611}
+\indexentry{腌}{5612}
+\indexentry{腓}{5613}
+\indexentry{腴}{5614}
+\indexentry{腙}{5615}
+\indexentry{腚}{5616}
+\indexentry{腱}{5617}
+\indexentry{腠}{5618}
+\indexentry{腩}{5619}
+\indexentry{腼}{5620}
+\indexentry{腽}{5621}
+\indexentry{腭}{5622}
+\indexentry{腧}{5623}
+\indexentry{塍}{5624}
+\indexentry{媵}{5625}
+\indexentry{膈}{5626}
+\indexentry{膂}{5627}
+\indexentry{膑}{5628}
+\indexentry{滕}{5629}
+\indexentry{膣}{5630}
+\indexentry{膪}{5631}
+\indexentry{臌}{5632}
+\indexentry{朦}{5633}
+\indexentry{臊}{5634}
+\indexentry{膻}{5635}
+\indexentry{臁}{5636}
+\indexentry{膦}{5637}
+\indexentry{欤}{5638}
+\indexentry{欷}{5639}
+\indexentry{欹}{5640}
+\indexentry{歃}{5641}
+\indexentry{歆}{5642}
+\indexentry{歙}{5643}
+\indexentry{飑}{5644}
+\indexentry{飒}{5645}
+\indexentry{飓}{5646}
+\indexentry{飕}{5647}
+\indexentry{飙}{5648}
+\indexentry{飚}{5649}
+\indexentry{殳}{5650}
+\indexentry{彀}{5651}
+\indexentry{毂}{5652}
+\indexentry{觳}{5653}
+\indexentry{斐}{5654}
+\indexentry{齑}{5655}
+\indexentry{斓}{5656}
+\indexentry{於}{5657}
+\indexentry{旆}{5658}
+\indexentry{旄}{5659}
+\indexentry{旃}{5660}
+\indexentry{旌}{5661}
+\indexentry{旎}{5662}
+\indexentry{旒}{5663}
+\indexentry{旖}{5664}
+\indexentry{炀}{5665}
+\indexentry{炜}{5666}
+\indexentry{炖}{5667}
+\indexentry{炝}{5668}
+\indexentry{炻}{5669}
+\indexentry{烀}{5670}
+\indexentry{炷}{5671}
+\indexentry{炫}{5672}
+\indexentry{炱}{5673}
+\indexentry{烨}{5674}
+\indexentry{烊}{5675}
+\indexentry{焐}{5676}
+\indexentry{焓}{5677}
+\indexentry{焖}{5678}
+\indexentry{焯}{5679}
+\indexentry{焱}{5680}
+\indexentry{煳}{5681}
+\indexentry{煜}{5682}
+\indexentry{煨}{5683}
+\indexentry{煅}{5684}
+\indexentry{煲}{5685}
+\indexentry{煊}{5686}
+\indexentry{煸}{5687}
+\indexentry{煺}{5688}
+\indexentry{熘}{5689}
+\indexentry{熳}{5690}
+\indexentry{熵}{5691}
+\indexentry{熨}{5692}
+\indexentry{熠}{5693}
+\indexentry{燠}{5694}
+\indexentry{燔}{5695}
+\indexentry{燧}{5696}
+\indexentry{燹}{5697}
+\indexentry{爝}{5698}
+\indexentry{爨}{5699}
+\indexentry{灬}{5700}
+\indexentry{焘}{5701}
+\indexentry{煦}{5702}
+\indexentry{熹}{5703}
+\indexentry{戾}{5704}
+\indexentry{戽}{5705}
+\indexentry{扃}{5706}
+\indexentry{扈}{5707}
+\indexentry{扉}{5708}
+\indexentry{礻}{5709}
+\indexentry{祀}{5710}
+\indexentry{祆}{5711}
+\indexentry{祉}{5712}
+\indexentry{祛}{5713}
+\indexentry{祜}{5714}
+\indexentry{祓}{5715}
+\indexentry{祚}{5716}
+\indexentry{祢}{5717}
+\indexentry{祗}{5718}
+\indexentry{祠}{5719}
+\indexentry{祯}{5720}
+\indexentry{祧}{5721}
+\indexentry{祺}{5722}
+\indexentry{禅}{5723}
+\indexentry{禊}{5724}
+\indexentry{禚}{5725}
+\indexentry{禧}{5726}
+\indexentry{禳}{5727}
+\indexentry{忑}{5728}
+\indexentry{忐}{5729}
+\indexentry{怼}{5730}
+\indexentry{恝}{5731}
+\indexentry{恚}{5732}
+\indexentry{恧}{5733}
+\indexentry{恁}{5734}
+\indexentry{恙}{5735}
+\indexentry{恣}{5736}
+\indexentry{悫}{5737}
+\indexentry{愆}{5738}
+\indexentry{愍}{5739}
+\indexentry{慝}{5740}
+\indexentry{憩}{5741}
+\indexentry{憝}{5742}
+\indexentry{懋}{5743}
+\indexentry{懑}{5744}
+\indexentry{戆}{5745}
+\indexentry{肀}{5746}
+\indexentry{聿}{5747}
+\indexentry{沓}{5748}
+\indexentry{泶}{5749}
+\indexentry{淼}{5750}
+\indexentry{矶}{5751}
+\indexentry{矸}{5752}
+\indexentry{砀}{5753}
+\indexentry{砉}{5754}
+\indexentry{砗}{5755}
+\indexentry{砘}{5756}
+\indexentry{砑}{5757}
+\indexentry{斫}{5758}
+\indexentry{砭}{5759}
+\indexentry{砜}{5760}
+\indexentry{砝}{5761}
+\indexentry{砹}{5762}
+\indexentry{砺}{5763}
+\indexentry{砻}{5764}
+\indexentry{砟}{5765}
+\indexentry{砼}{5766}
+\indexentry{砥}{5767}
+\indexentry{砬}{5768}
+\indexentry{砣}{5769}
+\indexentry{砩}{5770}
+\indexentry{硎}{5771}
+\indexentry{硭}{5772}
+\indexentry{硖}{5773}
+\indexentry{硗}{5774}
+\indexentry{砦}{5775}
+\indexentry{硐}{5776}
+\indexentry{硇}{5777}
+\indexentry{硌}{5778}
+\indexentry{硪}{5779}
+\indexentry{碛}{5780}
+\indexentry{碓}{5781}
+\indexentry{碚}{5782}
+\indexentry{碇}{5783}
+\indexentry{碜}{5784}
+\indexentry{碡}{5785}
+\indexentry{碣}{5786}
+\indexentry{碲}{5787}
+\indexentry{碹}{5788}
+\indexentry{碥}{5789}
+\indexentry{磔}{5790}
+\indexentry{磙}{5791}
+\indexentry{磉}{5792}
+\indexentry{磬}{5793}
+\indexentry{磲}{5794}
+\indexentry{礅}{5795}
+\indexentry{磴}{5796}
+\indexentry{礓}{5797}
+\indexentry{礤}{5798}
+\indexentry{礞}{5799}
+\indexentry{礴}{5800}
+\indexentry{龛}{5801}
+\indexentry{黹}{5802}
+\indexentry{黻}{5803}
+\indexentry{黼}{5804}
+\indexentry{盱}{5805}
+\indexentry{眄}{5806}
+\indexentry{眍}{5807}
+\indexentry{盹}{5808}
+\indexentry{眇}{5809}
+\indexentry{眈}{5810}
+\indexentry{眚}{5811}
+\indexentry{眢}{5812}
+\indexentry{眙}{5813}
+\indexentry{眭}{5814}
+\indexentry{眦}{5815}
+\indexentry{眵}{5816}
+\indexentry{眸}{5817}
+\indexentry{睐}{5818}
+\indexentry{睑}{5819}
+\indexentry{睇}{5820}
+\indexentry{睃}{5821}
+\indexentry{睚}{5822}
+\indexentry{睨}{5823}
+\indexentry{睢}{5824}
+\indexentry{睥}{5825}
+\indexentry{睿}{5826}
+\indexentry{瞍}{5827}
+\indexentry{睽}{5828}
+\indexentry{瞀}{5829}
+\indexentry{瞌}{5830}
+\indexentry{瞑}{5831}
+\indexentry{瞟}{5832}
+\indexentry{瞠}{5833}
+\indexentry{瞰}{5834}
+\indexentry{瞵}{5835}
+\indexentry{瞽}{5836}
+\indexentry{町}{5837}
+\indexentry{畀}{5838}
+\indexentry{畎}{5839}
+\indexentry{畋}{5840}
+\indexentry{畈}{5841}
+\indexentry{畛}{5842}
+\indexentry{畲}{5843}
+\indexentry{畹}{5844}
+\indexentry{疃}{5845}
+\indexentry{罘}{5846}
+\indexentry{罡}{5847}
+\indexentry{罟}{5848}
+\indexentry{詈}{5849}
+\indexentry{罨}{5850}
+\indexentry{罴}{5851}
+\indexentry{罱}{5852}
+\indexentry{罹}{5853}
+\indexentry{羁}{5854}
+\indexentry{罾}{5855}
+\indexentry{盍}{5856}
+\indexentry{盥}{5857}
+\indexentry{蠲}{5858}
+\indexentry{钅}{5859}
+\indexentry{钆}{5860}
+\indexentry{钇}{5861}
+\indexentry{钋}{5862}
+\indexentry{钊}{5863}
+\indexentry{钌}{5864}
+\indexentry{钍}{5865}
+\indexentry{钏}{5866}
+\indexentry{钐}{5867}
+\indexentry{钔}{5868}
+\indexentry{钗}{5869}
+\indexentry{钕}{5870}
+\indexentry{钚}{5871}
+\indexentry{钛}{5872}
+\indexentry{钜}{5873}
+\indexentry{钣}{5874}
+\indexentry{钤}{5875}
+\indexentry{钫}{5876}
+\indexentry{钪}{5877}
+\indexentry{钭}{5878}
+\indexentry{钬}{5879}
+\indexentry{钯}{5880}
+\indexentry{钰}{5881}
+\indexentry{钲}{5882}
+\indexentry{钴}{5883}
+\indexentry{钶}{5884}
+\indexentry{钷}{5885}
+\indexentry{钸}{5886}
+\indexentry{钹}{5887}
+\indexentry{钺}{5888}
+\indexentry{钼}{5889}
+\indexentry{钽}{5890}
+\indexentry{钿}{5891}
+\indexentry{铄}{5892}
+\indexentry{铈}{5893}
+\indexentry{铉}{5894}
+\indexentry{铊}{5895}
+\indexentry{铋}{5896}
+\indexentry{铌}{5897}
+\indexentry{铍}{5898}
+\indexentry{铎}{5899}
+\indexentry{铐}{5900}
+\indexentry{铑}{5901}
+\indexentry{铒}{5902}
+\indexentry{铕}{5903}
+\indexentry{铖}{5904}
+\indexentry{铗}{5905}
+\indexentry{铙}{5906}
+\indexentry{铘}{5907}
+\indexentry{铛}{5908}
+\indexentry{铞}{5909}
+\indexentry{铟}{5910}
+\indexentry{铠}{5911}
+\indexentry{铢}{5912}
+\indexentry{铤}{5913}
+\indexentry{铥}{5914}
+\indexentry{铧}{5915}
+\indexentry{铨}{5916}
+\indexentry{铪}{5917}
+\indexentry{铩}{5918}
+\indexentry{铫}{5919}
+\indexentry{铮}{5920}
+\indexentry{铯}{5921}
+\indexentry{铳}{5922}
+\indexentry{铴}{5923}
+\indexentry{铵}{5924}
+\indexentry{铷}{5925}
+\indexentry{铹}{5926}
+\indexentry{铼}{5927}
+\indexentry{铽}{5928}
+\indexentry{铿}{5929}
+\indexentry{锃}{5930}
+\indexentry{锂}{5931}
+\indexentry{锆}{5932}
+\indexentry{锇}{5933}
+\indexentry{锉}{5934}
+\indexentry{锊}{5935}
+\indexentry{锍}{5936}
+\indexentry{锎}{5937}
+\indexentry{锏}{5938}
+\indexentry{锒}{5939}
+\indexentry{锓}{5940}
+\indexentry{锔}{5941}
+\indexentry{锕}{5942}
+\indexentry{锖}{5943}
+\indexentry{锘}{5944}
+\indexentry{锛}{5945}
+\indexentry{锝}{5946}
+\indexentry{锞}{5947}
+\indexentry{锟}{5948}
+\indexentry{锢}{5949}
+\indexentry{锪}{5950}
+\indexentry{锫}{5951}
+\indexentry{锩}{5952}
+\indexentry{锬}{5953}
+\indexentry{锱}{5954}
+\indexentry{锲}{5955}
+\indexentry{锴}{5956}
+\indexentry{锶}{5957}
+\indexentry{锷}{5958}
+\indexentry{锸}{5959}
+\indexentry{锼}{5960}
+\indexentry{锾}{5961}
+\indexentry{锿}{5962}
+\indexentry{镂}{5963}
+\indexentry{锵}{5964}
+\indexentry{镄}{5965}
+\indexentry{镅}{5966}
+\indexentry{镆}{5967}
+\indexentry{镉}{5968}
+\indexentry{镌}{5969}
+\indexentry{镎}{5970}
+\indexentry{镏}{5971}
+\indexentry{镒}{5972}
+\indexentry{镓}{5973}
+\indexentry{镔}{5974}
+\indexentry{镖}{5975}
+\indexentry{镗}{5976}
+\indexentry{镘}{5977}
+\indexentry{镙}{5978}
+\indexentry{镛}{5979}
+\indexentry{镞}{5980}
+\indexentry{镟}{5981}
+\indexentry{镝}{5982}
+\indexentry{镡}{5983}
+\indexentry{镢}{5984}
+\indexentry{镤}{5985}
+\indexentry{镥}{5986}
+\indexentry{镦}{5987}
+\indexentry{镧}{5988}
+\indexentry{镨}{5989}
+\indexentry{镩}{5990}
+\indexentry{镪}{5991}
+\indexentry{镫}{5992}
+\indexentry{镬}{5993}
+\indexentry{镯}{5994}
+\indexentry{镱}{5995}
+\indexentry{镲}{5996}
+\indexentry{镳}{5997}
+\indexentry{锺}{5998}
+\indexentry{矧}{5999}
+\indexentry{矬}{6000}
+\indexentry{雉}{6001}
+\indexentry{秕}{6002}
+\indexentry{秭}{6003}
+\indexentry{秣}{6004}
+\indexentry{秫}{6005}
+\indexentry{稆}{6006}
+\indexentry{嵇}{6007}
+\indexentry{稃}{6008}
+\indexentry{稂}{6009}
+\indexentry{稞}{6010}
+\indexentry{稔}{6011}
+\indexentry{稹}{6012}
+\indexentry{稷}{6013}
+\indexentry{穑}{6014}
+\indexentry{黏}{6015}
+\indexentry{馥}{6016}
+\indexentry{穰}{6017}
+\indexentry{皈}{6018}
+\indexentry{皎}{6019}
+\indexentry{皓}{6020}
+\indexentry{皙}{6021}
+\indexentry{皤}{6022}
+\indexentry{瓞}{6023}
+\indexentry{瓠}{6024}
+\indexentry{甬}{6025}
+\indexentry{鸠}{6026}
+\indexentry{鸢}{6027}
+\indexentry{鸨}{6028}
+\indexentry{鸩}{6029}
+\indexentry{鸪}{6030}
+\indexentry{鸫}{6031}
+\indexentry{鸬}{6032}
+\indexentry{鸲}{6033}
+\indexentry{鸱}{6034}
+\indexentry{鸶}{6035}
+\indexentry{鸸}{6036}
+\indexentry{鸷}{6037}
+\indexentry{鸹}{6038}
+\indexentry{鸺}{6039}
+\indexentry{鸾}{6040}
+\indexentry{鹁}{6041}
+\indexentry{鹂}{6042}
+\indexentry{鹄}{6043}
+\indexentry{鹆}{6044}
+\indexentry{鹇}{6045}
+\indexentry{鹈}{6046}
+\indexentry{鹉}{6047}
+\indexentry{鹋}{6048}
+\indexentry{鹌}{6049}
+\indexentry{鹎}{6050}
+\indexentry{鹑}{6051}
+\indexentry{鹕}{6052}
+\indexentry{鹗}{6053}
+\indexentry{鹚}{6054}
+\indexentry{鹛}{6055}
+\indexentry{鹜}{6056}
+\indexentry{鹞}{6057}
+\indexentry{鹣}{6058}
+\indexentry{鹦}{6059}
+\indexentry{鹧}{6060}
+\indexentry{鹨}{6061}
+\indexentry{鹩}{6062}
+\indexentry{鹪}{6063}
+\indexentry{鹫}{6064}
+\indexentry{鹬}{6065}
+\indexentry{鹱}{6066}
+\indexentry{鹭}{6067}
+\indexentry{鹳}{6068}
+\indexentry{疒}{6069}
+\indexentry{疔}{6070}
+\indexentry{疖}{6071}
+\indexentry{疠}{6072}
+\indexentry{疝}{6073}
+\indexentry{疬}{6074}
+\indexentry{疣}{6075}
+\indexentry{疳}{6076}
+\indexentry{疴}{6077}
+\indexentry{疸}{6078}
+\indexentry{痄}{6079}
+\indexentry{疱}{6080}
+\indexentry{疰}{6081}
+\indexentry{痃}{6082}
+\indexentry{痂}{6083}
+\indexentry{痖}{6084}
+\indexentry{痍}{6085}
+\indexentry{痣}{6086}
+\indexentry{痨}{6087}
+\indexentry{痦}{6088}
+\indexentry{痤}{6089}
+\indexentry{痫}{6090}
+\indexentry{痧}{6091}
+\indexentry{瘃}{6092}
+\indexentry{痱}{6093}
+\indexentry{痼}{6094}
+\indexentry{痿}{6095}
+\indexentry{瘐}{6096}
+\indexentry{瘀}{6097}
+\indexentry{瘅}{6098}
+\indexentry{瘌}{6099}
+\indexentry{瘗}{6100}
+\indexentry{瘊}{6101}
+\indexentry{瘥}{6102}
+\indexentry{瘘}{6103}
+\indexentry{瘕}{6104}
+\indexentry{瘙}{6105}
+\indexentry{瘛}{6106}
+\indexentry{瘼}{6107}
+\indexentry{瘢}{6108}
+\indexentry{瘠}{6109}
+\indexentry{癀}{6110}
+\indexentry{瘭}{6111}
+\indexentry{瘰}{6112}
+\indexentry{瘿}{6113}
+\indexentry{瘵}{6114}
+\indexentry{癃}{6115}
+\indexentry{瘾}{6116}
+\indexentry{瘳}{6117}
+\indexentry{癍}{6118}
+\indexentry{癞}{6119}
+\indexentry{癔}{6120}
+\indexentry{癜}{6121}
+\indexentry{癖}{6122}
+\indexentry{癫}{6123}
+\indexentry{癯}{6124}
+\indexentry{翊}{6125}
+\indexentry{竦}{6126}
+\indexentry{穸}{6127}
+\indexentry{穹}{6128}
+\indexentry{窀}{6129}
+\indexentry{窆}{6130}
+\indexentry{窈}{6131}
+\indexentry{窕}{6132}
+\indexentry{窦}{6133}
+\indexentry{窠}{6134}
+\indexentry{窬}{6135}
+\indexentry{窨}{6136}
+\indexentry{窭}{6137}
+\indexentry{窳}{6138}
+\indexentry{衤}{6139}
+\indexentry{衩}{6140}
+\indexentry{衲}{6141}
+\indexentry{衽}{6142}
+\indexentry{衿}{6143}
+\indexentry{袂}{6144}
+\indexentry{袢}{6145}
+\indexentry{裆}{6146}
+\indexentry{袷}{6147}
+\indexentry{袼}{6148}
+\indexentry{裉}{6149}
+\indexentry{裢}{6150}
+\indexentry{裎}{6151}
+\indexentry{裣}{6152}
+\indexentry{裥}{6153}
+\indexentry{裱}{6154}
+\indexentry{褚}{6155}
+\indexentry{裼}{6156}
+\indexentry{裨}{6157}
+\indexentry{裾}{6158}
+\indexentry{裰}{6159}
+\indexentry{褡}{6160}
+\indexentry{褙}{6161}
+\indexentry{褓}{6162}
+\indexentry{褛}{6163}
+\indexentry{褊}{6164}
+\indexentry{褴}{6165}
+\indexentry{褫}{6166}
+\indexentry{褶}{6167}
+\indexentry{襁}{6168}
+\indexentry{襦}{6169}
+\indexentry{襻}{6170}
+\indexentry{疋}{6171}
+\indexentry{胥}{6172}
+\indexentry{皲}{6173}
+\indexentry{皴}{6174}
+\indexentry{矜}{6175}
+\indexentry{耒}{6176}
+\indexentry{耔}{6177}
+\indexentry{耖}{6178}
+\indexentry{耜}{6179}
+\indexentry{耠}{6180}
+\indexentry{耢}{6181}
+\indexentry{耥}{6182}
+\indexentry{耦}{6183}
+\indexentry{耧}{6184}
+\indexentry{耩}{6185}
+\indexentry{耨}{6186}
+\indexentry{耱}{6187}
+\indexentry{耋}{6188}
+\indexentry{耵}{6189}
+\indexentry{聃}{6190}
+\indexentry{聆}{6191}
+\indexentry{聍}{6192}
+\indexentry{聒}{6193}
+\indexentry{聩}{6194}
+\indexentry{聱}{6195}
+\indexentry{覃}{6196}
+\indexentry{顸}{6197}
+\indexentry{颀}{6198}
+\indexentry{颃}{6199}
+\indexentry{颉}{6200}
+\indexentry{颌}{6201}
+\indexentry{颍}{6202}
+\indexentry{颏}{6203}
+\indexentry{颔}{6204}
+\indexentry{颚}{6205}
+\indexentry{颛}{6206}
+\indexentry{颞}{6207}
+\indexentry{颟}{6208}
+\indexentry{颡}{6209}
+\indexentry{颢}{6210}
+\indexentry{颥}{6211}
+\indexentry{颦}{6212}
+\indexentry{虍}{6213}
+\indexentry{虔}{6214}
+\indexentry{虬}{6215}
+\indexentry{虮}{6216}
+\indexentry{虿}{6217}
+\indexentry{虺}{6218}
+\indexentry{虼}{6219}
+\indexentry{虻}{6220}
+\indexentry{蚨}{6221}
+\indexentry{蚍}{6222}
+\indexentry{蚋}{6223}
+\indexentry{蚬}{6224}
+\indexentry{蚝}{6225}
+\indexentry{蚧}{6226}
+\indexentry{蚣}{6227}
+\indexentry{蚪}{6228}
+\indexentry{蚓}{6229}
+\indexentry{蚩}{6230}
+\indexentry{蚶}{6231}
+\indexentry{蛄}{6232}
+\indexentry{蚵}{6233}
+\indexentry{蛎}{6234}
+\indexentry{蚰}{6235}
+\indexentry{蚺}{6236}
+\indexentry{蚱}{6237}
+\indexentry{蚯}{6238}
+\indexentry{蛉}{6239}
+\indexentry{蛏}{6240}
+\indexentry{蚴}{6241}
+\indexentry{蛩}{6242}
+\indexentry{蛱}{6243}
+\indexentry{蛲}{6244}
+\indexentry{蛭}{6245}
+\indexentry{蛳}{6246}
+\indexentry{蛐}{6247}
+\indexentry{蜓}{6248}
+\indexentry{蛞}{6249}
+\indexentry{蛴}{6250}
+\indexentry{蛟}{6251}
+\indexentry{蛘}{6252}
+\indexentry{蛑}{6253}
+\indexentry{蜃}{6254}
+\indexentry{蜇}{6255}
+\indexentry{蛸}{6256}
+\indexentry{蜈}{6257}
+\indexentry{蜊}{6258}
+\indexentry{蜍}{6259}
+\indexentry{蜉}{6260}
+\indexentry{蜣}{6261}
+\indexentry{蜻}{6262}
+\indexentry{蜞}{6263}
+\indexentry{蜥}{6264}
+\indexentry{蜮}{6265}
+\indexentry{蜚}{6266}
+\indexentry{蜾}{6267}
+\indexentry{蝈}{6268}
+\indexentry{蜴}{6269}
+\indexentry{蜱}{6270}
+\indexentry{蜩}{6271}
+\indexentry{蜷}{6272}
+\indexentry{蜿}{6273}
+\indexentry{螂}{6274}
+\indexentry{蜢}{6275}
+\indexentry{蝽}{6276}
+\indexentry{蝾}{6277}
+\indexentry{蝻}{6278}
+\indexentry{蝠}{6279}
+\indexentry{蝰}{6280}
+\indexentry{蝌}{6281}
+\indexentry{蝮}{6282}
+\indexentry{螋}{6283}
+\indexentry{蝓}{6284}
+\indexentry{蝣}{6285}
+\indexentry{蝼}{6286}
+\indexentry{蝤}{6287}
+\indexentry{蝙}{6288}
+\indexentry{蝥}{6289}
+\indexentry{螓}{6290}
+\indexentry{螯}{6291}
+\indexentry{螨}{6292}
+\indexentry{蟒}{6293}
+\indexentry{蟆}{6294}
+\indexentry{螈}{6295}
+\indexentry{螅}{6296}
+\indexentry{螭}{6297}
+\indexentry{螗}{6298}
+\indexentry{螃}{6299}
+\indexentry{螫}{6300}
+\indexentry{蟥}{6301}
+\indexentry{螬}{6302}
+\indexentry{螵}{6303}
+\indexentry{螳}{6304}
+\indexentry{蟋}{6305}
+\indexentry{蟓}{6306}
+\indexentry{螽}{6307}
+\indexentry{蟑}{6308}
+\indexentry{蟀}{6309}
+\indexentry{蟊}{6310}
+\indexentry{蟛}{6311}
+\indexentry{蟪}{6312}
+\indexentry{蟠}{6313}
+\indexentry{蟮}{6314}
+\indexentry{蠖}{6315}
+\indexentry{蠓}{6316}
+\indexentry{蟾}{6317}
+\indexentry{蠊}{6318}
+\indexentry{蠛}{6319}
+\indexentry{蠡}{6320}
+\indexentry{蠹}{6321}
+\indexentry{蠼}{6322}
+\indexentry{缶}{6323}
+\indexentry{罂}{6324}
+\indexentry{罄}{6325}
+\indexentry{罅}{6326}
+\indexentry{舐}{6327}
+\indexentry{竺}{6328}
+\indexentry{竽}{6329}
+\indexentry{笈}{6330}
+\indexentry{笃}{6331}
+\indexentry{笄}{6332}
+\indexentry{笕}{6333}
+\indexentry{笊}{6334}
+\indexentry{笫}{6335}
+\indexentry{笏}{6336}
+\indexentry{筇}{6337}
+\indexentry{笸}{6338}
+\indexentry{笪}{6339}
+\indexentry{笙}{6340}
+\indexentry{笮}{6341}
+\indexentry{笱}{6342}
+\indexentry{笠}{6343}
+\indexentry{笥}{6344}
+\indexentry{笤}{6345}
+\indexentry{笳}{6346}
+\indexentry{笾}{6347}
+\indexentry{笞}{6348}
+\indexentry{筘}{6349}
+\indexentry{筚}{6350}
+\indexentry{筅}{6351}
+\indexentry{筵}{6352}
+\indexentry{筌}{6353}
+\indexentry{筝}{6354}
+\indexentry{筠}{6355}
+\indexentry{筮}{6356}
+\indexentry{筻}{6357}
+\indexentry{筢}{6358}
+\indexentry{筲}{6359}
+\indexentry{筱}{6360}
+\indexentry{箐}{6361}
+\indexentry{箦}{6362}
+\indexentry{箧}{6363}
+\indexentry{箸}{6364}
+\indexentry{箬}{6365}
+\indexentry{箝}{6366}
+\indexentry{箨}{6367}
+\indexentry{箅}{6368}
+\indexentry{箪}{6369}
+\indexentry{箜}{6370}
+\indexentry{箢}{6371}
+\indexentry{箫}{6372}
+\indexentry{箴}{6373}
+\indexentry{篑}{6374}
+\indexentry{篁}{6375}
+\indexentry{篌}{6376}
+\indexentry{篝}{6377}
+\indexentry{篚}{6378}
+\indexentry{篥}{6379}
+\indexentry{篦}{6380}
+\indexentry{篪}{6381}
+\indexentry{簌}{6382}
+\indexentry{篾}{6383}
+\indexentry{篼}{6384}
+\indexentry{簏}{6385}
+\indexentry{簖}{6386}
+\indexentry{簋}{6387}
+\indexentry{簟}{6388}
+\indexentry{簪}{6389}
+\indexentry{簦}{6390}
+\indexentry{簸}{6391}
+\indexentry{籁}{6392}
+\indexentry{籀}{6393}
+\indexentry{臾}{6394}
+\indexentry{舁}{6395}
+\indexentry{舂}{6396}
+\indexentry{舄}{6397}
+\indexentry{臬}{6398}
+\indexentry{衄}{6399}
+\indexentry{舡}{6400}
+\indexentry{舢}{6401}
+\indexentry{舣}{6402}
+\indexentry{舭}{6403}
+\indexentry{舯}{6404}
+\indexentry{舨}{6405}
+\indexentry{舫}{6406}
+\indexentry{舸}{6407}
+\indexentry{舻}{6408}
+\indexentry{舳}{6409}
+\indexentry{舴}{6410}
+\indexentry{舾}{6411}
+\indexentry{艄}{6412}
+\indexentry{艉}{6413}
+\indexentry{艋}{6414}
+\indexentry{艏}{6415}
+\indexentry{艚}{6416}
+\indexentry{艟}{6417}
+\indexentry{艨}{6418}
+\indexentry{衾}{6419}
+\indexentry{袅}{6420}
+\indexentry{袈}{6421}
+\indexentry{裘}{6422}
+\indexentry{裟}{6423}
+\indexentry{襞}{6424}
+\indexentry{羝}{6425}
+\indexentry{羟}{6426}
+\indexentry{羧}{6427}
+\indexentry{羯}{6428}
+\indexentry{羰}{6429}
+\indexentry{羲}{6430}
+\indexentry{籼}{6431}
+\indexentry{敉}{6432}
+\indexentry{粑}{6433}
+\indexentry{粝}{6434}
+\indexentry{粜}{6435}
+\indexentry{粞}{6436}
+\indexentry{粢}{6437}
+\indexentry{粲}{6438}
+\indexentry{粼}{6439}
+\indexentry{粽}{6440}
+\indexentry{糁}{6441}
+\indexentry{糇}{6442}
+\indexentry{糌}{6443}
+\indexentry{糍}{6444}
+\indexentry{糈}{6445}
+\indexentry{糅}{6446}
+\indexentry{糗}{6447}
+\indexentry{糨}{6448}
+\indexentry{艮}{6449}
+\indexentry{暨}{6450}
+\indexentry{羿}{6451}
+\indexentry{翎}{6452}
+\indexentry{翕}{6453}
+\indexentry{翥}{6454}
+\indexentry{翡}{6455}
+\indexentry{翦}{6456}
+\indexentry{翩}{6457}
+\indexentry{翮}{6458}
+\indexentry{翳}{6459}
+\indexentry{糸}{6460}
+\indexentry{絷}{6461}
+\indexentry{綦}{6462}
+\indexentry{綮}{6463}
+\indexentry{繇}{6464}
+\indexentry{纛}{6465}
+\indexentry{麸}{6466}
+\indexentry{麴}{6467}
+\indexentry{赳}{6468}
+\indexentry{趄}{6469}
+\indexentry{趔}{6470}
+\indexentry{趑}{6471}
+\indexentry{趱}{6472}
+\indexentry{赧}{6473}
+\indexentry{赭}{6474}
+\indexentry{豇}{6475}
+\indexentry{豉}{6476}
+\indexentry{酊}{6477}
+\indexentry{酐}{6478}
+\indexentry{酎}{6479}
+\indexentry{酏}{6480}
+\indexentry{酤}{6481}
+\indexentry{酢}{6482}
+\indexentry{酡}{6483}
+\indexentry{酰}{6484}
+\indexentry{酩}{6485}
+\indexentry{酯}{6486}
+\indexentry{酽}{6487}
+\indexentry{酾}{6488}
+\indexentry{酲}{6489}
+\indexentry{酴}{6490}
+\indexentry{酹}{6491}
+\indexentry{醌}{6492}
+\indexentry{醅}{6493}
+\indexentry{醐}{6494}
+\indexentry{醍}{6495}
+\indexentry{醑}{6496}
+\indexentry{醢}{6497}
+\indexentry{醣}{6498}
+\indexentry{醪}{6499}
+\indexentry{醭}{6500}
+\indexentry{醮}{6501}
+\indexentry{醯}{6502}
+\indexentry{醵}{6503}
+\indexentry{醴}{6504}
+\indexentry{醺}{6505}
+\indexentry{豕}{6506}
+\indexentry{鹾}{6507}
+\indexentry{趸}{6508}
+\indexentry{跫}{6509}
+\indexentry{踅}{6510}
+\indexentry{蹙}{6511}
+\indexentry{蹩}{6512}
+\indexentry{趵}{6513}
+\indexentry{趿}{6514}
+\indexentry{趼}{6515}
+\indexentry{趺}{6516}
+\indexentry{跄}{6517}
+\indexentry{跖}{6518}
+\indexentry{跗}{6519}
+\indexentry{跚}{6520}
+\indexentry{跞}{6521}
+\indexentry{跎}{6522}
+\indexentry{跏}{6523}
+\indexentry{跛}{6524}
+\indexentry{跆}{6525}
+\indexentry{跬}{6526}
+\indexentry{跷}{6527}
+\indexentry{跸}{6528}
+\indexentry{跣}{6529}
+\indexentry{跹}{6530}
+\indexentry{跻}{6531}
+\indexentry{跤}{6532}
+\indexentry{踉}{6533}
+\indexentry{跽}{6534}
+\indexentry{踔}{6535}
+\indexentry{踝}{6536}
+\indexentry{踟}{6537}
+\indexentry{踬}{6538}
+\indexentry{踮}{6539}
+\indexentry{踣}{6540}
+\indexentry{踯}{6541}
+\indexentry{踺}{6542}
+\indexentry{蹀}{6543}
+\indexentry{踹}{6544}
+\indexentry{踵}{6545}
+\indexentry{踽}{6546}
+\indexentry{踱}{6547}
+\indexentry{蹉}{6548}
+\indexentry{蹁}{6549}
+\indexentry{蹂}{6550}
+\indexentry{蹑}{6551}
+\indexentry{蹒}{6552}
+\indexentry{蹊}{6553}
+\indexentry{蹰}{6554}
+\indexentry{蹶}{6555}
+\indexentry{蹼}{6556}
+\indexentry{蹯}{6557}
+\indexentry{蹴}{6558}
+\indexentry{躅}{6559}
+\indexentry{躏}{6560}
+\indexentry{躔}{6561}
+\indexentry{躐}{6562}
+\indexentry{躜}{6563}
+\indexentry{躞}{6564}
+\indexentry{豸}{6565}
+\indexentry{貂}{6566}
+\indexentry{貊}{6567}
+\indexentry{貅}{6568}
+\indexentry{貘}{6569}
+\indexentry{貔}{6570}
+\indexentry{斛}{6571}
+\indexentry{觖}{6572}
+\indexentry{觞}{6573}
+\indexentry{觚}{6574}
+\indexentry{觜}{6575}
+\indexentry{觥}{6576}
+\indexentry{觫}{6577}
+\indexentry{觯}{6578}
+\indexentry{訾}{6579}
+\indexentry{謦}{6580}
+\indexentry{靓}{6581}
+\indexentry{雩}{6582}
+\indexentry{雳}{6583}
+\indexentry{雯}{6584}
+\indexentry{霆}{6585}
+\indexentry{霁}{6586}
+\indexentry{霈}{6587}
+\indexentry{霏}{6588}
+\indexentry{霎}{6589}
+\indexentry{霪}{6590}
+\indexentry{霭}{6591}
+\indexentry{霰}{6592}
+\indexentry{霾}{6593}
+\indexentry{龀}{6594}
+\indexentry{龃}{6595}
+\indexentry{龅}{6596}
+\indexentry{龆}{6597}
+\indexentry{龇}{6598}
+\indexentry{龈}{6599}
+\indexentry{龉}{6600}
+\indexentry{龊}{6601}
+\indexentry{龌}{6602}
+\indexentry{黾}{6603}
+\indexentry{鼋}{6604}
+\indexentry{鼍}{6605}
+\indexentry{隹}{6606}
+\indexentry{隼}{6607}
+\indexentry{隽}{6608}
+\indexentry{雎}{6609}
+\indexentry{雒}{6610}
+\indexentry{瞿}{6611}
+\indexentry{雠}{6612}
+\indexentry{銎}{6613}
+\indexentry{銮}{6614}
+\indexentry{鋈}{6615}
+\indexentry{錾}{6616}
+\indexentry{鍪}{6617}
+\indexentry{鏊}{6618}
+\indexentry{鎏}{6619}
+\indexentry{鐾}{6620}
+\indexentry{鑫}{6621}
+\indexentry{鱿}{6622}
+\indexentry{鲂}{6623}
+\indexentry{鲅}{6624}
+\indexentry{鲆}{6625}
+\indexentry{鲇}{6626}
+\indexentry{鲈}{6627}
+\indexentry{稣}{6628}
+\indexentry{鲋}{6629}
+\indexentry{鲎}{6630}
+\indexentry{鲐}{6631}
+\indexentry{鲑}{6632}
+\indexentry{鲒}{6633}
+\indexentry{鲔}{6634}
+\indexentry{鲕}{6635}
+\indexentry{鲚}{6636}
+\indexentry{鲛}{6637}
+\indexentry{鲞}{6638}
+\indexentry{鲟}{6639}
+\indexentry{鲠}{6640}
+\indexentry{鲡}{6641}
+\indexentry{鲢}{6642}
+\indexentry{鲣}{6643}
+\indexentry{鲥}{6644}
+\indexentry{鲦}{6645}
+\indexentry{鲧}{6646}
+\indexentry{鲨}{6647}
+\indexentry{鲩}{6648}
+\indexentry{鲫}{6649}
+\indexentry{鲭}{6650}
+\indexentry{鲮}{6651}
+\indexentry{鲰}{6652}
+\indexentry{鲱}{6653}
+\indexentry{鲲}{6654}
+\indexentry{鲳}{6655}
+\indexentry{鲴}{6656}
+\indexentry{鲵}{6657}
+\indexentry{鲶}{6658}
+\indexentry{鲷}{6659}
+\indexentry{鲺}{6660}
+\indexentry{鲻}{6661}
+\indexentry{鲼}{6662}
+\indexentry{鲽}{6663}
+\indexentry{鳄}{6664}
+\indexentry{鳅}{6665}
+\indexentry{鳆}{6666}
+\indexentry{鳇}{6667}
+\indexentry{鳊}{6668}
+\indexentry{鳋}{6669}
+\indexentry{鳌}{6670}
+\indexentry{鳍}{6671}
+\indexentry{鳎}{6672}
+\indexentry{鳏}{6673}
+\indexentry{鳐}{6674}
+\indexentry{鳓}{6675}
+\indexentry{鳔}{6676}
+\indexentry{鳕}{6677}
+\indexentry{鳗}{6678}
+\indexentry{鳘}{6679}
+\indexentry{鳙}{6680}
+\indexentry{鳜}{6681}
+\indexentry{鳝}{6682}
+\indexentry{鳟}{6683}
+\indexentry{鳢}{6684}
+\indexentry{靼}{6685}
+\indexentry{鞅}{6686}
+\indexentry{鞑}{6687}
+\indexentry{鞒}{6688}
+\indexentry{鞔}{6689}
+\indexentry{鞯}{6690}
+\indexentry{鞫}{6691}
+\indexentry{鞣}{6692}
+\indexentry{鞲}{6693}
+\indexentry{鞴}{6694}
+\indexentry{骱}{6695}
+\indexentry{骰}{6696}
+\indexentry{骷}{6697}
+\indexentry{鹘}{6698}
+\indexentry{骶}{6699}
+\indexentry{骺}{6700}
+\indexentry{骼}{6701}
+\indexentry{髁}{6702}
+\indexentry{髀}{6703}
+\indexentry{髅}{6704}
+\indexentry{髂}{6705}
+\indexentry{髋}{6706}
+\indexentry{髌}{6707}
+\indexentry{髑}{6708}
+\indexentry{魅}{6709}
+\indexentry{魃}{6710}
+\indexentry{魇}{6711}
+\indexentry{魉}{6712}
+\indexentry{魈}{6713}
+\indexentry{魍}{6714}
+\indexentry{魑}{6715}
+\indexentry{飨}{6716}
+\indexentry{餍}{6717}
+\indexentry{餮}{6718}
+\indexentry{饕}{6719}
+\indexentry{饔}{6720}
+\indexentry{髟}{6721}
+\indexentry{髡}{6722}
+\indexentry{髦}{6723}
+\indexentry{髯}{6724}
+\indexentry{髫}{6725}
+\indexentry{髻}{6726}
+\indexentry{髭}{6727}
+\indexentry{髹}{6728}
+\indexentry{鬈}{6729}
+\indexentry{鬏}{6730}
+\indexentry{鬓}{6731}
+\indexentry{鬟}{6732}
+\indexentry{鬣}{6733}
+\indexentry{麽}{6734}
+\indexentry{麾}{6735}
+\indexentry{縻}{6736}
+\indexentry{麂}{6737}
+\indexentry{麇}{6738}
+\indexentry{麈}{6739}
+\indexentry{麋}{6740}
+\indexentry{麒}{6741}
+\indexentry{鏖}{6742}
+\indexentry{麝}{6743}
+\indexentry{麟}{6744}
+\indexentry{黛}{6745}
+\indexentry{黜}{6746}
+\indexentry{黝}{6747}
+\indexentry{黠}{6748}
+\indexentry{黟}{6749}
+\indexentry{黢}{6750}
+\indexentry{黩}{6751}
+\indexentry{黧}{6752}
+\indexentry{黥}{6753}
+\indexentry{黪}{6754}
+\indexentry{黯}{6755}
+\indexentry{鼢}{6756}
+\indexentry{鼬}{6757}
+\indexentry{鼯}{6758}
+\indexentry{鼹}{6759}
+\indexentry{鼷}{6760}
+\indexentry{鼽}{6761}
+\indexentry{鼾}{6762}
+\indexentry{齄}{6763}
diff --git a/indexing/zhmakeindex/examples/mixedpage.idx b/indexing/zhmakeindex/examples/mixedpage.idx
new file mode 100644
index 0000000000..20f8dc0fc0
--- /dev/null
+++ b/indexing/zhmakeindex/examples/mixedpage.idx
@@ -0,0 +1,10 @@
+\indexentry{crossing|(}{5}
+\indexentry{crossing|)}{8}
+\indexentry{crossing|(textit}{7}
+\indexentry{crossing|)textit}{13}
+\indexentry{nested|(}{20}
+\indexentry{nested|(textbf}{23}
+\indexentry{nested|)textbf}{25}
+\indexentry{nested|)}{29}
+\indexentry{unmatched|(hyperpage}{100}
+\indexentry{unmatched|)}{105}
diff --git a/indexing/zhmakeindex/examples/numbers.idx b/indexing/zhmakeindex/examples/numbers.idx
new file mode 100644
index 0000000000..9e93759335
--- /dev/null
+++ b/indexing/zhmakeindex/examples/numbers.idx
@@ -0,0 +1,17 @@
+\indexentry{foo}{999}
+\indexentry{汉字}{999}
+\indexentry{〇}{i}
+\indexentry{〇}{xii}
+\indexentry{①}{1}
+\indexentry{⑧}{8}
+\indexentry{⑴}{1}
+\indexentry{⑾}{11}
+\indexentry{Ⅰ}{1}
+\indexentry{Ⅳ}{4}
+\indexentry{0}{0}
+\indexentry{9}{9}
+\indexentry{02}{2}
+\indexentry{2}{2}
+\indexentry{15567}{15567}
+\indexentry{10 apples}{1}
+\indexentry{9 apples}{2}
diff --git a/indexing/zhmakeindex/examples/rangeencap.idx b/indexing/zhmakeindex/examples/rangeencap.idx
new file mode 100644
index 0000000000..c7f3ef7aa2
--- /dev/null
+++ b/indexing/zhmakeindex/examples/rangeencap.idx
@@ -0,0 +1,17 @@
+\indexentry{bold|(textbf}{1}
+\indexentry{bold|)textbf}{3}
+\indexentry{emph|(emph}{5}
+\indexentry{emph|)emph}{6}
+\indexentry{hyperpage|(hyperpage}{8}
+\indexentry{hyperpage|)hyperpage}{10}
+\indexentry{unmatched hyperpage|(hyperpage}{12}
+\indexentry{unmatched hyperpage|)}{15}
+\indexentry{text|(}{20}
+\indexentry{text|)}{21}
+\indexentry{text|(}{23}
+\indexentry{text|)}{25}
+\indexentry{merge|(}{30}
+\indexentry{merge|)}{31}
+\indexentry{merge}{31}
+\indexentry{merge bold|textbf}{35}
+\indexentry{merge bold|textbf}{36}
diff --git a/indexing/zhmakeindex/examples/suffix.ist b/indexing/zhmakeindex/examples/suffix.ist
new file mode 100644
index 0000000000..284456b47d
--- /dev/null
+++ b/indexing/zhmakeindex/examples/suffix.ist
@@ -0,0 +1 @@
+suffix_2p "p."
diff --git a/indexing/zhmakeindex/examples/symorder.idx b/indexing/zhmakeindex/examples/symorder.idx
new file mode 100644
index 0000000000..488d8ff70f
--- /dev/null
+++ b/indexing/zhmakeindex/examples/symorder.idx
@@ -0,0 +1,12 @@
+\indexentry{+}{43}
+\indexentry{0X}{48}
+\indexentry{=}{61}
+\indexentry{A=}{65}
+\indexentry{"{@"\"{}{123}
+\indexentry{B+}{1043}
+\indexentry{B0}{1048}
+\indexentry{B=}{1061}
+\indexentry{C!+}{2043}
+\indexentry{C!0}{2048}
+\indexentry{C!1X}{2049}
+\indexentry{C!=}{2061}
diff --git a/indexing/zhmakeindex/examples/zh.ist b/indexing/zhmakeindex/examples/zh.ist
new file mode 100644
index 0000000000..75d44f9bc1
--- /dev/null
+++ b/indexing/zhmakeindex/examples/zh.ist
@@ -0,0 +1,19 @@
+preamble "\\begin{theindex}
+ \\def\\seename{见}
+ \\def\\alsoname{又见}
+ \\providecommand*\\indexgroup[1]{%
+ \\indexspace
+ \\item \\textbf{#1}\\nopagebreak}\n"
+
+postamble "\n\n\\end{theindex}\n"
+
+group_skip "\n\n \\indexspace\n\n"
+
+headings_flag 1
+heading_prefix " %\n \\indexgroup{"
+heading_suffix "}\n %\n"
+
+numhead_positive "数字"
+numhead_negative "数字"
+symhead_positive "符号"
+symhead_negative "符号"
diff --git a/indexing/zhmakeindex/input.go b/indexing/zhmakeindex/input.go
new file mode 100644
index 0000000000..6abb905a1c
--- /dev/null
+++ b/indexing/zhmakeindex/input.go
@@ -0,0 +1,399 @@
+package main
+
+import (
+ "errors"
+ "io"
+ "log"
+ "os"
+ "path/filepath"
+ "strings"
+ "unicode"
+
+ "golang.org/x/text/transform"
+
+ "github.com/yasushi-saito/rbtree"
+)
+
+type InputIndex []IndexEntry
+
+func NewInputIndex(option *InputOptions, style *InputStyle) *InputIndex {
+ inset := rbtree.NewTree(CompareIndexEntry)
+
+ if option.stdin {
+ readIdxFile(inset, os.Stdin, option, style)
+ } else {
+ for _, idxname := range option.input {
+ // 文件不存在且无后缀时,加上默认后缀 .idx 再试
+ if _, err := os.Stat(idxname); os.IsNotExist(err) && filepath.Ext(idxname) == "" {
+ idxname = idxname + ".idx"
+ }
+ idxfile, err := os.Open(idxname)
+ if err != nil {
+ log.Fatalln(err.Error())
+ }
+ readIdxFile(inset, idxfile, option, style)
+ idxfile.Close()
+ }
+ }
+
+ var in InputIndex
+ for iter := inset.Min(); !iter.Limit(); iter = iter.Next() {
+ pentry := iter.Item().(*IndexEntry)
+ in = append(in, *pentry)
+ }
+ return &in
+}
+
+func readIdxFile(inset *rbtree.Tree, idxfile *os.File, option *InputOptions, style *InputStyle) {
+ log.Printf("读取输入文件 %s ……\n", idxfile.Name())
+ accepted, rejected := 0, 0
+
+ idxreader := NewNumberdReader(transform.NewReader(idxfile, option.decoder))
+ for {
+ entry, err := ScanIndexEntry(idxreader, option, style)
+ if err == io.EOF {
+ break
+ } else if err == ScanSyntaxError {
+ rejected++
+ log.Printf("%s:%d: %s\n", idxfile.Name(), idxreader.Line(), err.Error())
+ // 跳过一行
+ if err := idxreader.SkipLine(); err == io.EOF {
+ break
+ } else if err != nil {
+ log.Fatalln(err.Error())
+ }
+ } else if err != nil {
+ log.Fatalln(err.Error())
+ } else {
+ accepted++
+ if old := inset.Get(entry); old != nil {
+ oldentry := old.(*IndexEntry)
+ oldentry.pagelist = append(oldentry.pagelist, entry.pagelist...)
+ } else {
+ // entry 不在集合 inset 中时,插入 entry 本身和所有祖先节点,祖先不含页码
+ for len(entry.level) > 0 {
+ inset.Insert(entry)
+ parent := &IndexEntry{
+ level: entry.level[:len(entry.level)-1],
+ pagelist: nil,
+ }
+ if inset.Get(parent) != nil {
+ break
+ } else {
+ entry = parent
+ }
+ }
+ }
+ }
+ }
+ log.Printf("接受 %d 项,拒绝 %d 项。\n", accepted, rejected)
+}
+
+// 跳过空白符和行注释
+func skipspaces(reader *NumberdReader, style *InputStyle) error {
+ for {
+ r, _, err := reader.ReadRune()
+ if err != nil {
+ return err
+ } else if r == style.comment { // 注释以 style.comment 开头,直至行末
+ reader.SkipLine()
+ } else if !unicode.IsSpace(r) {
+ reader.UnreadRune()
+ break
+ }
+ }
+ return nil
+}
+
+func ScanIndexEntry(reader *NumberdReader, option *InputOptions, style *InputStyle) (*IndexEntry, error) {
+ var entry IndexEntry
+ page := new(Page)
+ // 跳过空白符
+ if err := skipspaces(reader, style); err != nil {
+ return nil, err
+ }
+ // 跳过 keyword
+ for _, r := range style.keyword {
+ new_r, _, err := reader.ReadRune()
+ if err != nil {
+ return nil, err
+ }
+ if new_r != r {
+ return nil, ScanSyntaxError
+ }
+ }
+ // 跳过空白符
+ if err := skipspaces(reader, style); err != nil {
+ return nil, err
+ }
+ // 自动机状态
+ const (
+ SCAN_OPEN = iota
+ SCAN_KEY
+ SCAN_VALUE
+ SCAN_COMMAND
+ SCAN_PAGE
+ SCAN_PAGERANGE
+ )
+ // 从 arg_open 开始扫描到 arg_close,处理索引项
+ state := SCAN_OPEN
+ quoted := false
+ escaped := false
+ arg_depth := 0
+ var token []rune
+ var entry_input []rune
+ page.rangetype = PAGE_NORMAL
+L_scan_kv:
+ for {
+ r, _, err := reader.ReadRune()
+ entry_input = append(entry_input, r)
+ if err != nil {
+ return nil, err
+ }
+ //debug.Printf("字符 %2c, 状态 %d, quoted %5v, escaped %5v, arg_depth %d\n", r, state, quoted, escaped, arg_depth) //// DEBUG only
+ switch state {
+ case SCAN_OPEN:
+ if !quoted && r == style.arg_open {
+ state = SCAN_KEY
+ } else {
+ return nil, ScanSyntaxError
+ }
+ case SCAN_KEY:
+ push_keyval := func(next int) {
+ str := string(token)
+ if option.compress {
+ str = strings.TrimSpace(str)
+ }
+ entry.level = append(entry.level, IndexEntryLevel{key: str, text: str})
+ token = nil
+ state = next
+ }
+ if quoted {
+ token = append(token, r)
+ quoted = false
+ break
+ } else if r == style.arg_open && !escaped {
+ token = append(token, r)
+ arg_depth++
+ } else if r == style.arg_close && !escaped {
+ if arg_depth == 0 {
+ push_keyval(0)
+ break L_scan_kv
+ } else {
+ token = append(token, r)
+ arg_depth--
+ }
+ } else if r == style.actual {
+ push_keyval(SCAN_VALUE)
+ } else if r == style.encap {
+ push_keyval(SCAN_PAGERANGE)
+ } else if r == style.level {
+ push_keyval(SCAN_KEY)
+ } else if r == style.quote && !escaped {
+ quoted = true
+ } else {
+ token = append(token, r)
+ }
+ if r == style.escape {
+ escaped = true
+ } else {
+ escaped = false
+ }
+ case SCAN_VALUE:
+ set_value := func(next int) {
+ str := string(token)
+ entry.level[len(entry.level)-1].text = str
+ token = nil
+ state = next
+ }
+ // 暂不对 actual 特殊处理
+ if quoted {
+ token = append(token, r)
+ quoted = false
+ break
+ } else if r == style.arg_open && !escaped {
+ token = append(token, r)
+ arg_depth++
+ } else if r == style.arg_close && !escaped {
+ if arg_depth == 0 {
+ set_value(0)
+ break L_scan_kv
+ } else {
+ token = append(token, r)
+ arg_depth--
+ }
+ } else if r == style.encap {
+ set_value(SCAN_PAGERANGE)
+ } else if r == style.level {
+ set_value(SCAN_KEY)
+ } else if r == style.quote && !escaped {
+ quoted = true
+ } else {
+ token = append(token, r)
+ }
+ if r == style.escape {
+ escaped = true
+ } else {
+ escaped = false
+ }
+ case SCAN_PAGERANGE:
+ if quoted {
+ token = append(token, r)
+ quoted = false
+ break
+ } else if r == style.arg_open || r == style.arg_close || r == style.actual || r == style.encap || r == style.level {
+ // 注意 encap 符号后不能直接加 arg_open、arg_close 等符号
+ return nil, ScanSyntaxError
+ } else if r == style.range_open {
+ page.rangetype = PAGE_OPEN
+ } else if r == style.range_close {
+ page.rangetype = PAGE_CLOSE
+ } else if r == style.quote { // 之前是 encap,无须考虑被 escape 转义
+ quoted = true
+ } else {
+ token = append(token, r)
+ }
+ state = SCAN_COMMAND
+ if r == style.escape {
+ escaped = true
+ } else {
+ escaped = false
+ }
+ case SCAN_COMMAND:
+ // 不对 encap、actual、level 特殊处理
+ if quoted {
+ token = append(token, r)
+ quoted = false
+ break
+ } else if r == style.arg_open && !escaped {
+ token = append(token, r)
+ arg_depth++
+ } else if r == style.arg_close && !escaped {
+ if arg_depth == 0 {
+ page.encap = string(token)
+ break L_scan_kv
+ } else {
+ token = append(token, r)
+ arg_depth--
+ }
+ } else if r == style.quote && !escaped {
+ quoted = true
+ } else {
+ token = append(token, r)
+ }
+ if r == style.escape {
+ escaped = true
+ } else {
+ escaped = false
+ }
+ default:
+ panic("扫描状态错误")
+ }
+ }
+ entry.input = string(entry_input)
+ // 跳过空白符
+ if err := skipspaces(reader, style); err != nil {
+ return nil, err
+ }
+ // 从 arg_open 开始扫描到 arg_close,处理页码
+ state = SCAN_OPEN
+ token = nil
+L_scan_page:
+ for {
+ r, _, err := reader.ReadRune()
+ if err != nil {
+ return nil, err
+ }
+ // debug.Printf("字符 %c, 状态 %d\n", r, state) //// DEBUG only
+ switch state {
+ case SCAN_OPEN:
+ if r == style.arg_open {
+ state = SCAN_PAGE
+ } else {
+ return nil, ScanSyntaxError
+ }
+ case SCAN_PAGE:
+ if r == style.arg_close {
+ page.numbers, err = scanPage(token, style.page_compositor)
+ if err != nil {
+ return nil, err
+ }
+ break L_scan_page
+ } else if r == style.arg_open {
+ return nil, ScanSyntaxError
+ } else {
+ token = append(token, r)
+ }
+ default:
+ panic("扫描状态错误")
+ }
+ // 未实现对 style.page_compositor 的处理
+ }
+ page.compositor = style.page_compositor
+ entry.pagelist = append(entry.pagelist, page)
+ // debug.Println(entry) //// DEBUG only
+ return &entry, nil
+}
+
+var ScanSyntaxError = errors.New("索引项语法错误")
+
+type IndexEntry struct {
+ input string
+ level []IndexEntryLevel
+ pagelist []*Page
+}
+
+// 实现 rbtree.CompareFunc
+func CompareIndexEntry(a, b rbtree.Item) int {
+ x := a.(*IndexEntry)
+ y := b.(*IndexEntry)
+ for i := range x.level {
+ if i >= len(y.level) {
+ return 1
+ }
+ if x.level[i].key < y.level[i].key {
+ return -1
+ } else if x.level[i].key > y.level[i].key {
+ return 1
+ }
+ if x.level[i].text < y.level[i].text {
+ return -1
+ } else if x.level[i].text > y.level[i].text {
+ return 1
+ }
+ }
+ if len(x.level) < len(y.level) {
+ return -1
+ }
+ return 0
+}
+
+// 一条索引条目中的一级
+type IndexEntryLevel struct {
+ key string
+ text string
+}
+
+type RangeType int
+
+const (
+ PAGE_UNKNOWN RangeType = iota
+ PAGE_OPEN
+ PAGE_NORMAL
+ PAGE_CLOSE
+)
+
+func (rt RangeType) String() string {
+ switch rt {
+ case PAGE_UNKNOWN:
+ return "?"
+ case PAGE_OPEN:
+ return "("
+ case PAGE_NORMAL:
+ return "."
+ case PAGE_CLOSE:
+ return ")"
+ default:
+ panic("区间格式错误")
+ }
+}
diff --git a/indexing/zhmakeindex/install.cmd b/indexing/zhmakeindex/install.cmd
new file mode 100644
index 0000000000..820556dad8
--- /dev/null
+++ b/indexing/zhmakeindex/install.cmd
@@ -0,0 +1,16 @@
+setlocal
+%~d0
+cd %~p0
+
+if exist VERSION (
+ for /f "delims=" %%i in (VERSION) do set zhmVersion=%%i
+) else (
+ set zhmVersion=devel
+)
+for /f "delims=" %%i in ('git log -1 --pretty^=format:"%%h(%%ai"') do set zhmRevision=%%i
+set zhmRevision=%zhmRevision:~0,18%)
+set FLAGS=-ldflags "-X main.Version=%zhmVersion% -X main.Revision=%zhmRevision%"
+
+go install %FLAGS%
+
+endlocal
diff --git a/indexing/zhmakeindex/install.sh b/indexing/zhmakeindex/install.sh
new file mode 100644
index 0000000000..927ff54be4
--- /dev/null
+++ b/indexing/zhmakeindex/install.sh
@@ -0,0 +1,12 @@
+#!/bin/bash
+if [ -e "VERSION" ]
+then
+ zhmVersion=`cat VERSION`
+else
+ zhmVersion=devel
+fi
+
+zhmRevision=`git log -1 --pretty=format:"%h(%ai"`
+zhmRevision="${zhmRevision:0:18})"
+
+go install -ldflags "-X main.Version=$zhmVersion -X main.Revision=$zhmRevision"
diff --git a/indexing/zhmakeindex/kpathsea/dynamic_other.go b/indexing/zhmakeindex/kpathsea/dynamic_other.go
new file mode 100644
index 0000000000..2d93e608ca
--- /dev/null
+++ b/indexing/zhmakeindex/kpathsea/dynamic_other.go
@@ -0,0 +1,7 @@
+// +build NOT !windows !386
+
+package kpathsea
+
+func findFile_dynamic(name string, format FileFormatType, mustExist bool) string {
+ return ""
+}
diff --git a/indexing/zhmakeindex/kpathsea/dynamic_windows_386.go b/indexing/zhmakeindex/kpathsea/dynamic_windows_386.go
new file mode 100644
index 0000000000..3e17403cb0
--- /dev/null
+++ b/indexing/zhmakeindex/kpathsea/dynamic_windows_386.go
@@ -0,0 +1,78 @@
+// +build windows,386
+
+package kpathsea
+
+import (
+ "fmt"
+ "os"
+ "runtime"
+ "syscall"
+ "unsafe"
+)
+
+// TeX Live 2014 使用的库
+var kpse_dll_name string = "kpathsea620.dll"
+
+var dll *syscall.LazyDLL
+var kpse uintptr
+
+func init() {
+ var err error
+
+ dll = syscall.NewLazyDLL(kpse_dll_name)
+ if err = dll.Load(); err != nil {
+ kpse = 0
+ fmt.Println("Error:", err)
+ return
+ }
+
+ kpse_new := dll.NewProc("kpathsea_new")
+ kpse, _, err = kpse_new.Call()
+ if errno := err.(syscall.Errno); errno != 0 {
+ kpse = 0
+ fmt.Println("Error:", errno)
+ return
+ }
+
+ kpse_set_program_name := dll.NewProc("kpathsea_set_program_name")
+ program_name_ptr, _ := syscall.BytePtrFromString(os.Args[0])
+ _, _, err = kpse_set_program_name.Call(kpse, uintptr(unsafe.Pointer(program_name_ptr)))
+ if errno := err.(syscall.Errno); errno != 0 {
+ kpse = 0
+ fmt.Println("Error:", errno)
+ return
+ }
+
+ runtime.SetFinalizer(dll, func(_ *syscall.LazyDLL) {
+ fmt.Println("Finished")
+ kpse_finish := dll.NewProc("kpathsea_finish")
+ kpse_finish.Call(kpse)
+ })
+}
+
+func findFile_dynamic(name string, format FileFormatType, mustExist bool) string {
+ var mustExist_int uintptr = 0
+ if mustExist {
+ mustExist_int = 1
+ }
+ // 初始化失败
+ if kpse == 0 {
+ return ""
+ }
+ // 调用 kpathsea_find_file 找文件
+ kpse_find_file := dll.NewProc("kpathsea_find_file")
+ name_ptr, _ := syscall.BytePtrFromString(name)
+ path_uintptr, _, _ := kpse_find_file.Call(kpse, uintptr(unsafe.Pointer(name_ptr)), uintptr(format), mustExist_int)
+ // 找不到
+ if path_uintptr == 0 {
+ return ""
+ }
+ // 找到了
+ path_ptr := (*byte)(unsafe.Pointer(path_uintptr))
+ var path_bytes []byte
+ for *path_ptr != 0 { // 逐字节附加返回的串
+ path_bytes = append(path_bytes, *path_ptr)
+ path_ptr = (*byte)(unsafe.Pointer(uintptr(unsafe.Pointer(path_ptr)) + 1))
+ }
+ return string(path_bytes)
+}
diff --git a/indexing/zhmakeindex/kpathsea/kpathsea.go b/indexing/zhmakeindex/kpathsea/kpathsea.go
new file mode 100644
index 0000000000..d2bdce6497
--- /dev/null
+++ b/indexing/zhmakeindex/kpathsea/kpathsea.go
@@ -0,0 +1,108 @@
+// 提供 kpathsea 库的基本文件查找功能
+package kpathsea // import "github.com/leo-liu/zhmakeindex/kpathsea"
+
+import (
+ "os"
+ "os/exec"
+ "strings"
+)
+
+// 以 C 中对应于 enum kpse_file_format_type,见源代码 types.h
+type FileFormatType int
+
+// 对应于 TL2014 中的 kpathsea 6.20
+const (
+ GF_FORMAT FileFormatType = iota
+ PK_FORMAT
+ ANY_GLYPH_FORMAT // ``any'' meaning gf or pk
+ TFM_FORMAT
+ AFM_FORMAT
+ BASE_FORMAT
+ BIB_FORMAT
+ BST_FORMAT
+ CNF_FORMAT
+ DB_FORMAT
+ FMT_FORMAT
+ FONTMAP_FORMAT
+ MEM_FORMAT
+ MF_FORMAT
+ MFPOOL_FORMAT
+ MFT_FORMAT
+ MP_FORMAT
+ MPPOOL_FORMAT
+ MPSUPPORT_FORMAT
+ OCP_FORMAT
+ OFM_FORMAT
+ OPL_FORMAT
+ OTP_FORMAT
+ OVF_FORMAT
+ OVP_FORMAT
+ PICT_FORMAT
+ TEX_FORMAT
+ TEXDOC_FORMAT
+ TEXPOOL_FORMAT
+ TEXSOURCE_FORMAT
+ TEX_PS_HEADER_FORMAT
+ TROFF_FONT_FORMAT
+ TYPE1_FORMAT
+ VF_FORMAT
+ DVIPS_CONFIG_FORMAT
+ IST_FORMAT
+ TRUETYPE_FORMAT
+ TYPE42_FORMAT
+ WEB2C_FORMAT
+ PROGRAM_TEXT_FORMAT
+ PROGRAM_BINARY_FORMAT
+ MISCFONTS_FORMAT
+ WEB_FORMAT
+ CWEB_FORMAT
+ ENC_FORMAT
+ CMAP_FORMAT
+ SFD_FORMAT
+ OPENTYPE_FORMAT
+ PDFTEX_CONFIG_FORMAT
+ LIG_FORMAT
+ TEXMFSCRIPTS_FORMAT
+ LUA_FORMAT
+ FEA_FORMAT
+ CID_FORMAT
+ MLBIB_FORMAT
+ MLBST_FORMAT
+ CLUA_FORMAT
+ RIS_FORMAT
+ BLTXML_FORMAT
+ LAST_FORMAT // one past last index
+)
+
+// 基本文件查询函数调用 kpsewhich 的最简单的备用实现。
+// 在 C 中对应于
+// extern KPSEDLL string kpathsea_find_file (kpathsea kpse, const_string name,
+// kpse_file_format_type format, boolean must_exist);
+// 见源代码 tex-file.h
+func FindFile(name string, format FileFormatType, mustExist bool) string {
+ /*
+ outpath := findFile_dynamic(name, format, mustExist)
+ if outpath != "" {
+ return outpath
+ }
+ */
+ return findFile_external(name)
+}
+
+// 基本文件查询函数调用 kpsewhich 的最简单的备用实现。
+// 没有 format 与 mustExist 参数。
+func findFile_external(name string) string {
+ // 先尝试直接搜索(速度较快)
+ if _, err := os.Stat(name); err == nil {
+ return name
+ }
+ // 调用 kpsewhich 外部程序搜索(慢)
+ cmd := exec.Command("kpsewhich", name)
+ out, err := cmd.Output()
+ if err != nil {
+ return ""
+ } else {
+ outpath := strings.TrimSpace(string(out))
+ return outpath
+ }
+}
diff --git a/indexing/zhmakeindex/main.go b/indexing/zhmakeindex/main.go
new file mode 100644
index 0000000000..5ba585b4f4
--- /dev/null
+++ b/indexing/zhmakeindex/main.go
@@ -0,0 +1,234 @@
+// zhmakeindex: 带中文支持的 makeindex 实现
+package main // import "github.com/leo-liu/zhmakeindex"
+
+import (
+ "flag"
+ "fmt"
+ "io"
+ "io/ioutil"
+ "log"
+ "os"
+ "path/filepath"
+ "runtime/pprof"
+ "strings"
+
+ "golang.org/x/text/encoding"
+ "golang.org/x/text/encoding/simplifiedchinese"
+ "golang.org/x/text/encoding/traditionalchinese"
+ "golang.org/x/text/encoding/unicode"
+ "golang.org/x/text/transform"
+)
+
+var (
+ ProgramAuthor = "刘海洋<leoliu.pku@gmail.com>"
+ // Build with option: -ldflags "-x main.Version ? -X main.Revision ?"
+ Version = "???"
+ Revision = "???"
+)
+
+var debug = log.New(os.Stderr, "DEBUG: ", log.Lshortfile)
+
+func init() {
+ log.SetFlags(0)
+ log.SetPrefix("")
+}
+
+func main() {
+ option := NewOptions()
+ option.parse()
+
+ setupLog(option)
+
+ log.Printf("zhmakeindex 版本:%s-%s\t作者:%s\n", Version, Revision, ProgramAuthor)
+
+ if option.cpuprofile != "" {
+ f, err := os.Create(option.cpuprofile)
+ if err != nil {
+ log.Fatal(err)
+ }
+ if err := pprof.StartCPUProfile(f); err != nil {
+ log.Fatal("无法启动 CPU 性能调试:", err)
+ }
+ defer pprof.StopCPUProfile()
+ }
+
+ if option.style != "" {
+ log.Printf("正在读取格式文件 %s……", option.style)
+ }
+ instyle, outstyle := NewStyles(&option.StyleOptions)
+
+ in := NewInputIndex(&option.InputOptions, instyle)
+ log.Printf("合并后共 %d 项。\n", len(*in))
+
+ log.Println("正在排序……")
+ out := NewOutputIndex(in, &option.OutputOptions, outstyle)
+
+ log.Println("正在输出……")
+ out.Output(&option.OutputOptions)
+
+ if option.output != "" {
+ log.Printf("输出文件写入 %s\n", option.output)
+ }
+ if option.log != "" {
+ log.Printf("日志文件写入 %s\n", option.log)
+ }
+}
+
+type Options struct {
+ InputOptions
+ OutputOptions
+ StyleOptions
+ encoding string
+ style_encoding string
+ log string
+ quiet bool
+ cpuprofile string
+}
+
+type InputOptions struct {
+ compress bool
+ stdin bool
+ decoder transform.Transformer // 由 encoding 生成
+ input []string
+}
+
+type OutputOptions struct {
+ encoder transform.Transformer // 由 encoding 生成
+ output string
+ sort string
+ page string
+ strict bool
+ disable_range bool
+}
+
+type StyleOptions struct {
+ style string
+ style_decoder transform.Transformer // 由 style_encoding 生成
+}
+
+func NewOptions() *Options {
+ o := new(Options)
+ flag.BoolVar(&o.compress, "c", false, "忽略条目首尾空格")
+ flag.BoolVar(&o.stdin, "i", false, "从标准输入读取")
+ flag.StringVar(&o.output, "o", "", "输出文件")
+ flag.StringVar(&o.sort, "z", "pinyin",
+ "中文分组排序方式,可以使用 pinyin (reading)、bihua (stroke) 或 bushou (radical)")
+ // flag.StringVar(&o.page, "p", "", "设置起始页码") // 未实现
+ flag.BoolVar(&o.quiet, "q", false, "静默模式,不输出错误信息")
+ flag.BoolVar(&o.disable_range, "r", false, "禁用自动生成页码区间")
+ flag.BoolVar(&o.strict, "strict", false, "严格区分不同 encapsulated 命令的页码")
+ flag.StringVar(&o.style, "s", "", "格式文件名")
+ flag.StringVar(&o.log, "t", "", "日志文件名")
+ flag.StringVar(&o.encoding, "enc", "utf-8", "读写索引文件的编码")
+ flag.StringVar(&o.style_encoding, "senc", "utf-8", "格式文件的编码")
+ flag.StringVar(&o.cpuprofile, "cpuprofile", "", "将 CPU 性能调试信息写入文件")
+ return o
+}
+
+func (o *Options) parse() {
+ // 设置自定义帮助信息
+ flag.Usage = Usage
+
+ flag.Parse()
+
+ // 整理输入文件
+ o.input = flag.Args()
+ for i := range o.input {
+ o.input[i] = filepath.Clean(o.input[i])
+ }
+
+ // 错误的参数组合
+ if len(o.input) > 0 && o.stdin {
+ log.Fatalln("不能同时从文件和标准输入流读取输入")
+ } else if len(o.input) == 0 && !o.stdin {
+ // 没有输入文件
+ flag.Usage()
+ os.Exit(0)
+ }
+ // 不指定输出文件且不使用标准输入时,使用第一个输入文件的主文件名 + ".ind" 后缀
+ if o.output == "" && !o.stdin {
+ o.output = stripExt(o.input[0]) + ".ind"
+ }
+ // 不指定输入文件且不使用标准输入时,使用第一个输入文件的主文件名 + ".ilg" 后缀
+ if o.log == "" && !o.stdin {
+ o.log = stripExt(o.input[0]) + ".ilg"
+ }
+ // 不指定格式文件且只有一个输入文件时,尝试使用第一个输入文件的主文件名 + ".mst" 后缀
+ if o.style == "" && len(o.input) == 1 {
+ // 这里只在当前目录下查找 .mst 文件而不调用 kpathsea 搜索,预先判断文件存在
+ mst := stripExt(o.input[0]) + ".mst"
+ if _, err := os.Stat(mst); err == nil {
+ o.style = mst
+ }
+ }
+
+ // 检查并设置 IO 编码
+ encoding := checkEncoding(o.encoding)
+ o.encoder = encoding.NewEncoder()
+ o.decoder = encoding.NewDecoder()
+
+ // 检查并设置格式文件编码
+ styleEncoding := checkEncoding(o.style_encoding)
+ o.style_decoder = styleEncoding.NewDecoder()
+}
+
+// 检查编码名,返回编码
+func checkEncoding(encodingName string) encoding.Encoding {
+ var encodingMap = map[string]encoding.Encoding{
+ "utf-8": encoding.Nop,
+ "utf-16": unicode.UTF16(unicode.LittleEndian, unicode.IgnoreBOM),
+ "gb18030": simplifiedchinese.GB18030,
+ "gbk": simplifiedchinese.GBK,
+ "big5": traditionalchinese.Big5,
+ }
+ encoding, ok := encodingMap[strings.ToLower(encodingName)]
+ if !ok {
+ log.Printf("编码 '%s' 是无效编码\n", encodingName)
+ var supported string
+ for enc := range encodingMap {
+ supported += enc + " "
+ }
+ log.Fatalf("支持的编码有(不区分大小写):%s\n", supported)
+ }
+ return encoding
+}
+
+func setupLog(option *Options) {
+ var stderr io.Writer = os.Stderr
+ if option.quiet {
+ stderr = ioutil.Discard
+ }
+ if option.log == "" {
+ // 只使用标准错误流
+ return
+ }
+ flog, err := os.Create(option.log)
+ if err != nil {
+ log.Fatalln(err)
+ }
+ log.SetOutput(io.MultiWriter(stderr, flog))
+}
+
+// 删除文件后缀名
+func stripExt(fpath string) string {
+ ext := filepath.Ext(fpath)
+ return fpath[:len(fpath)-len(ext)]
+}
+
+// 帮助信息
+func Usage() {
+ fmt.Fprintln(os.Stderr, `用法:
+zhmakeindex [-c] [-i] [-o <ind>] [-q] [-r] [-s <sty>] [-t <log>]
+ [-enc <enc>] [-senc <senc>] [-strict] [-z <sort>]
+ [<输入文件1> <输入文件2> ...]`)
+ fmt.Fprintln(os.Stderr, "\n中文索引处理程序")
+ fmt.Fprintf(os.Stderr, "\n %-10s %-5s %s\n", "选项", "默认值", "说明")
+ flag.VisitAll(func(f *flag.Flag) {
+ if f.Value.String() == "" {
+ fmt.Fprintf(os.Stderr, " -%-11s %-7s %s\n", f.Name, "无", f.Usage)
+ } else {
+ fmt.Fprintf(os.Stderr, " -%-11s %-8s %s\n", f.Name, f.DefValue, f.Usage)
+ }
+ })
+ fmt.Fprintf(os.Stderr, "\n版本:%s-%s\t作者:%s\n", Version, Revision, ProgramAuthor)
+}
diff --git a/indexing/zhmakeindex/numberedreader.go b/indexing/zhmakeindex/numberedreader.go
new file mode 100644
index 0000000000..9fafea865b
--- /dev/null
+++ b/indexing/zhmakeindex/numberedreader.go
@@ -0,0 +1,52 @@
+package main
+
+import (
+ "bufio"
+ "io"
+)
+
+// 用于逐字符读取的辅助 Reader,提供行号支持
+type NumberdReader struct {
+ reader *bufio.Reader
+ line int
+ lastRune rune
+}
+
+func NewNumberdReader(reader io.Reader) *NumberdReader {
+ return &NumberdReader{
+ reader: bufio.NewReader(reader),
+ line: 1,
+ lastRune: -1,
+ }
+}
+
+func (reader *NumberdReader) ReadRune() (r rune, size int, err error) {
+ r, size, err = reader.reader.ReadRune()
+ reader.lastRune = r
+ if r == '\n' {
+ reader.line++
+ }
+ return r, size, err
+}
+
+func (reader *NumberdReader) UnreadRune() error {
+ err := reader.reader.UnreadRune()
+ if err == nil {
+ if reader.lastRune == '\n' {
+ reader.line--
+ }
+ reader.lastRune = -1
+ }
+ return err
+}
+
+func (reader *NumberdReader) SkipLine() error {
+ reader.line++
+ reader.lastRune = -1
+ _, err := reader.reader.ReadBytes('\n')
+ return err
+}
+
+func (reader *NumberdReader) Line() int {
+ return reader.line
+}
diff --git a/indexing/zhmakeindex/output.go b/indexing/zhmakeindex/output.go
new file mode 100644
index 0000000000..0031c9f25c
--- /dev/null
+++ b/indexing/zhmakeindex/output.go
@@ -0,0 +1,174 @@
+package main
+
+import (
+ "fmt"
+ "io"
+ "log"
+ "os"
+
+ "golang.org/x/text/transform"
+)
+
+// 输出索引
+type OutputIndex struct {
+ groups []IndexGroup
+ style *OutputStyle
+ option *OutputOptions
+}
+
+func NewOutputIndex(input *InputIndex, option *OutputOptions, style *OutputStyle) *OutputIndex {
+ sorter := NewIndexSorter(option.sort)
+ outindex := sorter.SortIndex(input, style, option)
+ outindex.style = style
+ outindex.option = option
+ return outindex
+}
+
+// 按格式输出索引项
+// suffix_2p, suffix_3p, suffix_mp 暂未实现
+// line_max, indent_space, indent_length 未实现
+func (o *OutputIndex) Output(option *OutputOptions) {
+ var writer io.WriteCloser
+ if o.option.output == "" {
+ writer = os.Stdout
+ } else {
+ var err error
+ writer, err = os.Create(o.option.output)
+ if err != nil {
+ log.Fatalln(err)
+ }
+ defer writer.Close()
+ }
+ writer = transform.NewWriter(writer, option.encoder)
+
+ fmt.Fprint(writer, o.style.preamble)
+ first_group := true
+ for _, group := range o.groups {
+ if group.items == nil {
+ continue
+ }
+ if first_group {
+ first_group = false
+ } else {
+ fmt.Fprint(writer, o.style.group_skip)
+ }
+ if o.style.headings_flag != 0 {
+ fmt.Fprintf(writer, "%s%s%s", o.style.heading_prefix, group.name, o.style.heading_suffix)
+ }
+ for i, item := range group.items {
+ // debug.Println(i, item)
+ // 如果修改一下 OutputStyle 的数据结构,容易改成任意层的索引
+ switch item.level {
+ case 0:
+ fmt.Fprintf(writer, "%s%s", o.style.item_0, item.text)
+ writePage(writer, 0, item.page, o.style)
+ case 1:
+ if last := group.items[i-1]; last.level == 0 {
+ if last.page != nil {
+ fmt.Fprint(writer, o.style.item_01)
+ } else {
+ fmt.Fprint(writer, o.style.item_x1)
+ }
+ } else {
+ fmt.Fprint(writer, o.style.item_1)
+ }
+ fmt.Fprint(writer, item.text)
+ writePage(writer, 1, item.page, o.style)
+ case 2:
+ if last := group.items[i-1]; last.level == 1 {
+ if last.page != nil {
+ fmt.Fprint(writer, o.style.item_12)
+ } else {
+ fmt.Fprint(writer, o.style.item_x2)
+ }
+ } else {
+ fmt.Fprint(writer, o.style.item_2)
+ }
+ fmt.Fprint(writer, item.text)
+ writePage(writer, 2, item.page, o.style)
+ default:
+ log.Printf("索引项“%s”层次数过深,忽略此项\n", item.text)
+ }
+ }
+ }
+ fmt.Fprint(writer, o.style.postamble)
+}
+
+func writePage(out io.Writer, level int, pageranges []PageRange, style *OutputStyle) {
+ if pageranges == nil {
+ return
+ }
+ switch level {
+ case 0:
+ fmt.Fprint(out, style.delim_0)
+ case 1:
+ fmt.Fprint(out, style.delim_1)
+ case 2:
+ fmt.Fprint(out, style.delim_2)
+ }
+ for i, p := range pageranges {
+ if i > 0 {
+ fmt.Fprint(out, style.delim_n)
+ }
+ p.Write(out, style)
+ }
+ if len(pageranges) != 0 {
+ fmt.Fprint(out, style.delim_t)
+ }
+}
+
+// 一个输出项目组
+type IndexGroup struct {
+ name string
+ items []IndexItem
+}
+
+// 一个输出项,包括级别、文字、一系列页码区间
+type IndexItem struct {
+ level int
+ text string
+ page []PageRange
+}
+
+// 用于输出的页码区间
+type PageRange struct {
+ begin *Page
+ end *Page
+}
+
+func (p *PageRange) Diff() int {
+ return p.end.Diff(p.begin)
+}
+
+// 输出页码区间
+func (p *PageRange) Write(out io.Writer, style *OutputStyle) {
+ var rangestr string
+ switch {
+ // 单页
+ case p.Diff() == 0:
+ rangestr = p.begin.String()
+ // 由单页合并得到的两页的区间,且未设置 suffix_2p,视为独立的两页
+ case p.begin.rangetype == PAGE_NORMAL && p.end.rangetype == PAGE_NORMAL &&
+ p.Diff() == 1 && style.suffix_2p == "":
+ rangestr = p.begin.String() + style.delim_n + p.end.String()
+ // 两页的区间,设置了 suffix_2p
+ case p.Diff() == 1 && style.suffix_2p != "":
+ rangestr = p.begin.String() + style.suffix_2p
+ // 三页的区间,设置了 suffix_3p
+ case p.Diff() == 2 && style.suffix_3p != "":
+ rangestr = p.begin.String() + style.suffix_3p
+ // 三页或更长的区间,设置了 suffix_mp
+ case p.Diff() >= 2 && style.suffix_mp != "":
+ rangestr = p.begin.String() + style.suffix_mp
+ // 普通的区间
+ default:
+ rangestr = p.begin.String() + style.delim_r + p.end.String()
+ }
+ // encap 只看区间头,对不完全区间可能不总正确
+ if p.begin.encap == "" {
+ fmt.Fprint(out, rangestr)
+ } else {
+ fmt.Fprint(out, style.encap_prefix, p.begin.encap,
+ style.encap_infix, rangestr, style.encap_suffix)
+ }
+}
diff --git a/indexing/zhmakeindex/pagenumber.go b/indexing/zhmakeindex/pagenumber.go
new file mode 100644
index 0000000000..02d27244b3
--- /dev/null
+++ b/indexing/zhmakeindex/pagenumber.go
@@ -0,0 +1,246 @@
+package main
+
+import (
+ "fmt"
+ "strconv"
+ "strings"
+ "unicode"
+)
+
+// 最大的整数
+const MaxInt = int(^uint(0) >> 1)
+
+type Page struct {
+ numbers []PageNumber
+ compositor string
+ encap string
+ rangetype RangeType
+}
+
+// 按 p 生成一个与之输出类型相同的空页码
+func (p *Page) Empty() *Page {
+ return &Page{
+ numbers: nil,
+ compositor: p.compositor,
+ encap: p.encap,
+ rangetype: PAGE_UNKNOWN,
+ }
+}
+
+func (p *Page) String() string {
+ var page_str []string
+ for _, pn := range p.numbers {
+ page_str = append(page_str, pn.String())
+ }
+ return strings.Join(page_str, p.compositor)
+}
+
+// 判断两个页码是否类型一致
+// 两个页码类型一致指它们有相同多个类型相同的数字构成
+func (page *Page) Compatible(other *Page) bool {
+ if len(page.numbers) != len(other.numbers) {
+ return false
+ }
+ for i := 0; i < len(page.numbers); i++ {
+ if page.numbers[i].format != other.numbers[i].format {
+ return false
+ }
+ }
+ return true
+}
+
+// 求两个页码 page 与 other 之差(绝对值)
+// 如果不一致,返回 -1;如果不是最后一段数字不同,返回 MaxInt
+func (page *Page) Diff(other *Page) int {
+ if !page.Compatible(other) {
+ return -1
+ }
+ depth := len(page.numbers)
+ for i := 0; i < depth-1; i++ {
+ if page.numbers[i].num != other.numbers[i].num {
+ return MaxInt
+ }
+ }
+ abs := func(x int) int {
+ if x >= 0 {
+ return x
+ } else {
+ return -x
+ }
+ }
+ return abs(page.numbers[depth-1].num - other.numbers[depth-1].num)
+}
+
+// 按字典序比较两个页码数字串的大小,返回负、零、正值
+// 不同类型的序关系由参数 precedence 给出,不一致的页码仍有大小关系
+// 不比较页码的 encap、rangetype 信息
+func (page *Page) Cmp(other *Page, precedence map[NumFormat]int) int {
+ for i := 0; i < len(page.numbers) && i < len(other.numbers); i++ {
+ a, b := page.numbers[i], other.numbers[i]
+ if precedence[a.format] != precedence[b.format] {
+ return precedence[a.format] - precedence[b.format]
+ } else if a.num != b.num {
+ return a.num - b.num
+ }
+ }
+ if len(page.numbers) != len(other.numbers) {
+ return len(page.numbers) - len(other.numbers)
+ }
+ return 0
+}
+
+type PageNumber struct {
+ format NumFormat
+ num int
+}
+
+func (p PageNumber) String() string {
+ return p.format.Format(p.num)
+}
+
+type NumFormat int
+
+const (
+ NUM_UNKNOWN NumFormat = iota
+ NUM_ARABIC
+ NUM_ROMAN_LOWER
+ NUM_ROMAN_UPPER
+ NUM_ALPH_LOWER
+ NUM_ALPH_UPPER
+)
+
+// 将字符串解析为一串页码数字
+func scanPage(token []rune, compositor string) ([]PageNumber, error) {
+ numstr_list := strings.Split(string(token), compositor)
+ var nums []PageNumber
+ for _, numstr := range numstr_list {
+ pn, err := scanNumber([]rune(numstr))
+ if err != nil {
+ return nil, err
+ }
+ nums = append(nums, pn)
+ }
+ return nums, nil
+}
+
+// 读入数字,并粗略判断其格式
+func scanNumber(token []rune) (PageNumber, error) {
+ if len(token) == 0 {
+ return PageNumber{}, ScanSyntaxError
+ }
+ if r := token[0]; unicode.IsDigit(r) {
+ num, err := scanArabic(token)
+ return PageNumber{format: NUM_ARABIC, num: num}, err
+ } else if romanLowerValue[r] != 0 {
+ num, err := scanRomanLower(token)
+ return PageNumber{format: NUM_ROMAN_LOWER, num: num}, err
+ } else if romanUpperValue[r] != 0 {
+ num, err := scanRomanUpper(token)
+ return PageNumber{format: NUM_ROMAN_UPPER, num: num}, err
+ } else if 'a' <= r && r <= 'z' {
+ num, err := scanAlphLower(token)
+ return PageNumber{format: NUM_ALPH_LOWER, num: num}, err
+ } else if 'A' <= r && r <= 'Z' {
+ num, err := scanAlphUpper(token)
+ return PageNumber{format: NUM_ALPH_UPPER, num: num}, err
+ }
+ return PageNumber{}, ScanSyntaxError
+}
+
+func scanArabic(token []rune) (int, error) {
+ num, err := strconv.Atoi(string(token))
+ if err != nil {
+ err = ScanSyntaxError
+ }
+ return num, err
+}
+
+func scanRomanLower(token []rune) (int, error) {
+ return scanRoman(token, romanLowerValue)
+}
+
+func scanRomanUpper(token []rune) (int, error) {
+ return scanRoman(token, romanUpperValue)
+}
+
+func scanRoman(token []rune, romantable map[rune]int) (int, error) {
+ num := 0
+ for i, r := range token {
+ if romantable[r] == 0 {
+ return 0, ScanSyntaxError
+ }
+ if i == 0 || romantable[r] <= romantable[token[i-1]] {
+ num += romantable[r]
+ } else {
+ num += romantable[r] - 2*romantable[token[i-1]]
+ }
+ }
+ return num, nil
+}
+
+var romanLowerValue = map[rune]int{
+ 'i': 1, 'v': 5, 'x': 10, 'l': 50, 'c': 100, 'd': 500, 'm': 1000,
+}
+var romanUpperValue = map[rune]int{
+ 'I': 1, 'V': 5, 'X': 10, 'L': 50, 'C': 100, 'D': 500, 'M': 1000,
+}
+
+func scanAlphLower(token []rune) (int, error) {
+ if len(token) != 1 || token[0] < 'a' || token[0] > 'z' {
+ return 0, ScanSyntaxError
+ }
+ return int(token[0]-'a') + 1, nil
+}
+
+func scanAlphUpper(token []rune) (int, error) {
+ if len(token) != 1 || token[0] < 'A' || token[0] > 'Z' {
+ return 0, ScanSyntaxError
+ }
+ return int(token[0]-'A') + 1, nil
+}
+
+// 按格式输出数字
+func (numfmt NumFormat) Format(num int) string {
+ switch numfmt {
+ case NUM_UNKNOWN:
+ return "?"
+ case NUM_ARABIC:
+ return fmt.Sprint(num)
+ case NUM_ALPH_LOWER:
+ return string('a' + num)
+ case NUM_ALPH_UPPER:
+ return string('A' + num)
+ case NUM_ROMAN_LOWER:
+ return romanNumString(num, false)
+ case NUM_ROMAN_UPPER:
+ return romanNumString(num, true)
+ default:
+ panic("数字格式错误")
+ }
+}
+
+func romanNumString(num int, upper bool) string {
+ if num < 1 {
+ return ""
+ }
+ type pair struct {
+ symbol string
+ value int
+ }
+ var romanTable = []pair{
+ {"m", 1000}, {"cm", 900}, {"d", 500}, {"cd", 400}, {"c", 100}, {"xc", 90},
+ {"l", 50}, {"xl", 40}, {"x", 10}, {"ix", 9}, {"v", 5}, {"iv", 4}, {"i", 1},
+ }
+ var numstr []rune
+ for _, p := range romanTable {
+ for num >= p.value {
+ numstr = append(numstr, []rune(p.symbol)...)
+ num -= p.value
+ }
+ }
+ if upper {
+ return strings.ToUpper(string(numstr))
+ } else {
+ return string(numstr)
+ }
+}
diff --git a/indexing/zhmakeindex/radical_collator.go b/indexing/zhmakeindex/radical_collator.go
new file mode 100644
index 0000000000..3524137f7f
--- /dev/null
+++ b/indexing/zhmakeindex/radical_collator.go
@@ -0,0 +1,94 @@
+package main
+
+import (
+ "fmt"
+ "unicode"
+ "unicode/utf8"
+
+ "github.com/leo-liu/zhmakeindex/CJK"
+)
+
+// 汉字按部首-除部首笔画数排序,汉字按部首分组排在英文字母组后面
+type RadicalIndexCollator struct{}
+
+func (_ RadicalIndexCollator) InitGroups(style *OutputStyle) []IndexGroup {
+ // 分组:符号、数字、字母 A..Z
+ groups := make([]IndexGroup, 2+26+CJK.MAX_RADICAL)
+ if style.headings_flag > 0 {
+ groups[0].name = style.symhead_positive
+ groups[1].name = style.numhead_positive
+ for alph, i := 'A', 2; alph <= 'Z'; alph++ {
+ groups[i].name = string(alph)
+ i++
+ }
+ } else if style.headings_flag < 0 {
+ groups[0].name = style.symhead_negative
+ groups[1].name = style.numhead_negative
+ for alph, i := 'a', 2; alph <= 'z'; alph++ {
+ groups[i].name = string(alph)
+ i++
+ }
+ }
+ for r, i := 1, 2+26; r < CJK.MAX_RADICAL+1; r++ {
+ var radicalName string
+ if CJK.Radicals[r].Simplified != 0 && style.radical_simplified_flag != 0 {
+ radicalName = fmt.Sprintf("%c%s%c%s",
+ CJK.Radicals[r].Origin, style.radical_simplified_prefix, CJK.Radicals[r].Simplified, style.radical_simplified_suffix)
+ } else {
+ radicalName = string(CJK.Radicals[r].Origin)
+ }
+ groups[i].name = style.radical_prefix + radicalName + style.radical_suffix
+ i++
+ }
+ return groups
+}
+
+// 取得分组
+func (_ RadicalIndexCollator) Group(entry *IndexEntry) int {
+ first, _ := utf8.DecodeRuneInString(entry.level[0].key)
+ first = unicode.ToLower(first)
+ switch {
+ case IsNumString(entry.level[0].key):
+ return 1
+ case 'a' <= first && first <= 'z':
+ return 2 + int(first) - 'a'
+ case CJK.RadicalStrokes[first] != "":
+ // 首字部首
+ return 2 + 26 + (CJK.RadicalStrokes[first].Radical() - 1)
+ default:
+ // 符号组
+ return 0
+ }
+}
+
+// 按汉字部首、除部首笔画数序比较两个字符大小
+func (_ RadicalIndexCollator) RuneCmp(a, b rune) int {
+ a_rs, b_rs := CJK.RadicalStrokes[a], CJK.RadicalStrokes[b]
+ switch {
+ case a_rs == "" && b_rs == "":
+ return RuneCmpIgnoreCases(a, b)
+ case a_rs == "" && b_rs != "":
+ return -1
+ case a_rs != "" && b_rs == "":
+ return 1
+ case a_rs < b_rs:
+ return -1
+ case a_rs > b_rs:
+ return 1
+ default:
+ return int(a - b)
+ }
+}
+
+// 判断是否字母或汉字
+func (_ RadicalIndexCollator) IsLetter(r rune) bool {
+ r = unicode.ToLower(r)
+ switch {
+ case 'a' <= r && r <= 'z':
+ return true
+ case CJK.RadicalStrokes[r] != "":
+ return true
+ default:
+ return false
+ }
+}
diff --git a/indexing/zhmakeindex/reading_collator.go b/indexing/zhmakeindex/reading_collator.go
new file mode 100644
index 0000000000..7348d55503
--- /dev/null
+++ b/indexing/zhmakeindex/reading_collator.go
@@ -0,0 +1,83 @@
+package main
+
+import (
+ "unicode"
+ "unicode/utf8"
+
+ "github.com/leo-liu/zhmakeindex/CJK"
+)
+
+// 汉字按拼音排序,按拼音首字母与英文一起分组
+type ReadingIndexCollator struct{}
+
+func (_ ReadingIndexCollator) InitGroups(style *OutputStyle) []IndexGroup {
+ // 分组:符号、数字、字母 A..Z
+ groups := make([]IndexGroup, 2+26)
+ if style.headings_flag > 0 {
+ groups[0].name = style.symhead_positive
+ groups[1].name = style.numhead_positive
+ for alph, i := 'A', 2; alph <= 'Z'; alph++ {
+ groups[i].name = string(alph)
+ i++
+ }
+ } else if style.headings_flag < 0 {
+ groups[0].name = style.symhead_negative
+ groups[1].name = style.numhead_negative
+ for alph, i := 'a', 2; alph <= 'z'; alph++ {
+ groups[i].name = string(alph)
+ i++
+ }
+ }
+ return groups
+}
+
+// 取得分组
+func (_ ReadingIndexCollator) Group(entry *IndexEntry) int {
+ first, _ := utf8.DecodeRuneInString(entry.level[0].key)
+ first = unicode.ToLower(first)
+ switch {
+ case IsNumString(entry.level[0].key):
+ return 1
+ case 'a' <= first && first <= 'z':
+ return 2 + int(first) - 'a'
+ case CJK.Readings[first] != "":
+ // 拼音首字母
+ reading_first := int(CJK.Readings[first][0])
+ return 2 + reading_first - 'a'
+ default:
+ // 符号组
+ return 0
+ }
+}
+
+// 按汉字读音比较两个字符,读音相同的,内码序
+func (_ ReadingIndexCollator) RuneCmp(a, b rune) int {
+ a_reading, b_reading := CJK.Readings[a], CJK.Readings[b]
+ switch {
+ case a_reading == "" && b_reading == "":
+ return RuneCmpIgnoreCases(a, b)
+ case a_reading == "" && b_reading != "":
+ return -1
+ case a_reading != "" && b_reading == "":
+ return 1
+ case a_reading < b_reading:
+ return -1
+ case a_reading > b_reading:
+ return 1
+ default:
+ return int(a - b)
+ }
+}
+
+// 判断是否字母或汉字
+func (_ ReadingIndexCollator) IsLetter(r rune) bool {
+ r = unicode.ToLower(r)
+ switch {
+ case 'a' <= r && r <= 'z':
+ return true
+ case CJK.Readings[r] != "":
+ return true
+ default:
+ return false
+ }
+}
diff --git a/indexing/zhmakeindex/sorter.go b/indexing/zhmakeindex/sorter.go
new file mode 100644
index 0000000000..3109186a61
--- /dev/null
+++ b/indexing/zhmakeindex/sorter.go
@@ -0,0 +1,445 @@
+package main
+
+import (
+ "log"
+ "sort"
+ "strconv"
+ "unicode"
+ "unicode/utf8"
+)
+
+// 对应不同的分类排序方式
+type IndexCollator interface {
+ // 初始化分组
+ InitGroups(style *OutputStyle) []IndexGroup
+ // 给索引项分组
+ Group(entry *IndexEntry) int
+ // 单个字符比较
+ RuneCmp(a, b rune) int
+ // 判断是否字母或汉字
+ IsLetter(r rune) bool
+}
+
+// 排序器
+type IndexSorter struct {
+ IndexCollator
+}
+
+func NewIndexSorter(method string) *IndexSorter {
+ switch method {
+ case "bihua", "stroke":
+ return &IndexSorter{
+ IndexCollator: StrokeIndexCollator{},
+ }
+ case "pinyin", "reading":
+ return &IndexSorter{
+ IndexCollator: ReadingIndexCollator{},
+ }
+ case "bushou", "radical":
+ return &IndexSorter{
+ IndexCollator: RadicalIndexCollator{},
+ }
+ default:
+ log.Fatalln("未知排序方式")
+ }
+ return nil
+}
+
+func (sorter *IndexSorter) SortIndex(input *InputIndex, style *OutputStyle, option *OutputOptions) *OutputIndex {
+ out := new(OutputIndex)
+ // 分组
+ out.groups = sorter.InitGroups(style)
+
+ // 先整体排序
+ sort.Sort(IndexEntrySlice{
+ entries: *input,
+ colattor: sorter.IndexCollator,
+ })
+
+ // 再依次对页码排序,并分组添加
+ pagesorter := NewPageSorter(style, option)
+ for _, entry := range *input {
+ pageranges := pagesorter.Sort(entry)
+ pageranges = pagesorter.Merge(pageranges)
+ item := IndexItem{
+ level: len(entry.level) - 1,
+ text: entry.level[len(entry.level)-1].text,
+ page: pageranges,
+ }
+ group := sorter.Group(&entry)
+ out.groups[group].items = append(out.groups[group].items, item)
+ }
+
+ return out
+}
+
+type IndexEntrySlice struct {
+ entries []IndexEntry
+ colattor IndexCollator
+}
+
+func (s IndexEntrySlice) Len() int {
+ return len(s.entries)
+}
+
+func (s IndexEntrySlice) Swap(i, j int) {
+ s.entries[i], s.entries[j] = s.entries[j], s.entries[i]
+}
+
+// 比较两个串的大小
+func (s IndexEntrySlice) Strcmp(a, b string) int {
+ atype, btype := getStringType(s.colattor, a), getStringType(s.colattor, b)
+ if atype < btype {
+ return -1
+ } else if atype > btype {
+ return 1
+ }
+ // 特例:尝试按纯数字比较
+ if cmp := DecimalStrcmp(a, b); cmp != 0 {
+ return cmp
+ }
+ // 忽略大小写,按字典序比较
+ a_rune, b_rune := []rune(a), []rune(b)
+ for i := range a_rune {
+ if i >= len(b_rune) {
+ return 1
+ }
+ cmp := s.colattor.RuneCmp(a_rune[i], b_rune[i])
+ if cmp != 0 {
+ return cmp
+ }
+ }
+ if len(a_rune) < len(b_rune) {
+ return -1
+ }
+ // 不忽略大小写重新比较串,此时不必使用 colattor 特有的比较
+ if a < b {
+ return -1
+ } else if a > b {
+ return 1
+ } else {
+ return 0
+ }
+}
+
+// 串类型
+type stringType int
+
+// 用于比较的串类型,有前后次序
+const (
+ EMPTY_STR stringType = iota // 空串
+ SYMBOL_STR // 符号开头
+ NUM_SYMBOL_STR // 数字开头
+ NUM_STR // 纯数字
+ LETTER_STR // 字母或汉字
+)
+
+// 取得串类型
+func getStringType(collator IndexCollator, s string) stringType {
+ if len(s) == 0 {
+ return EMPTY_STR
+ }
+ r, _ := utf8.DecodeRuneInString(s)
+ switch {
+ case IsNumRune(r):
+ if IsNumString(s) {
+ return NUM_STR
+ } else {
+ return NUM_SYMBOL_STR
+ }
+ case collator.IsLetter(r):
+ return LETTER_STR
+ default:
+ return SYMBOL_STR
+ }
+}
+
+func (s IndexEntrySlice) Less(i, j int) bool {
+ a, b := s.entries[i], s.entries[j]
+ for i := range a.level {
+ if i >= len(b.level) {
+ return false
+ }
+ keycmp := s.Strcmp(a.level[i].key, b.level[i].key)
+ if keycmp < 0 {
+ return true
+ } else if keycmp > 0 {
+ return false
+ }
+ textcmp := s.Strcmp(a.level[i].text, b.level[i].text)
+ if textcmp < 0 {
+ return true
+ } else if textcmp > 0 {
+ return false
+ }
+ }
+ if len(a.level) < len(b.level) {
+ return true
+ }
+ return false
+}
+
+// 页码排序器
+type PageSorter struct {
+ precedence map[NumFormat]int
+ strict bool
+ disable_range bool
+}
+
+func NewPageSorter(style *OutputStyle, option *OutputOptions) *PageSorter {
+ var sorter PageSorter
+ sorter.precedence = make(map[NumFormat]int)
+ for i, r := range style.page_precedence {
+ switch r {
+ case 'r':
+ sorter.precedence[NUM_ROMAN_LOWER] = i
+ case 'n':
+ sorter.precedence[NUM_ARABIC] = i
+ case 'a':
+ sorter.precedence[NUM_ALPH_LOWER] = i
+ case 'R':
+ sorter.precedence[NUM_ROMAN_UPPER] = i
+ case 'A':
+ sorter.precedence[NUM_ALPH_UPPER] = i
+ default:
+ log.Println("page_precedence 语法错误,采用默认值")
+ sorter.precedence = map[NumFormat]int{
+ NUM_ROMAN_LOWER: 0,
+ NUM_ARABIC: 1,
+ NUM_ALPH_LOWER: 2,
+ NUM_ROMAN_UPPER: 3,
+ NUM_ALPH_UPPER: 4,
+ }
+ }
+ }
+ sorter.strict = option.strict
+ sorter.disable_range = option.disable_range
+ return &sorter
+}
+
+// 处理输入的页码,生成页码区间组
+func (sorter *PageSorter) Sort(entry IndexEntry) []PageRange {
+ pages := entry.pagelist
+ //debug.Println(entry.input, pages)
+ var out []PageRange
+ // 合并前排序。传统 Makeindex 按原始输入的次序,在处理多个文件时可能不大好
+ if sorter.strict {
+ sort.Sort(PageSliceStrict{
+ PageSlice{pages: pages, sorter: sorter}})
+ } else {
+ sort.Sort(PageSliceLoose{
+ PageSlice{pages: pages, sorter: sorter}})
+ }
+ //debug.Println(pages)
+ // 使用一个栈来合并页码区间
+ // 这里的合并只将 1( 2 3 3) 合并为 1--3,不处理相邻区间,后者需要再做 Merge 操作
+ var stack []*Page
+ for i := 0; i < len(pages); i++ {
+ p := pages[i]
+ //debug.Printf("处理页码 %s{%s} %s\n", p.encap, p.NumString(), p.rangetype)
+ if len(stack) == 0 {
+ switch p.rangetype {
+ case PAGE_NORMAL:
+ // 输出独立页
+ out = append(out, PageRange{begin: p, end: p})
+ case PAGE_OPEN:
+ // 压栈
+ stack = append(stack, p)
+ case PAGE_CLOSE:
+ log.Printf("条目 %s 的页码区间有误,区间末尾 %s{%s} 没有匹配的区间头。\n", entry.input, p.encap, p)
+ // 输出从空白到当前页的伪区间
+ out = append(out, PageRange{begin: p.Empty(), end: p})
+ }
+ } else {
+ front := stack[0]
+ top := stack[len(stack)-1]
+ if p.encap != front.encap {
+ if sorter.strict {
+ log.Printf("条目 %s 的页码区间可能有误,区间头 %s 没有对应的区间尾\n", entry.input, front)
+ // 输出从区间头到空白的伪区间,并清空栈
+ out = append(out, PageRange{begin: front, end: front.Empty()})
+ stack = nil
+ // 退回重新处理此项
+ i--
+ continue
+ } else {
+ // 只输出独立页面,与 Makeindex 行为类似
+ if p.rangetype == PAGE_NORMAL {
+ out = append(out, PageRange{begin: p, end: p})
+ } else {
+ log.Printf("条目 %s 的页码区间 %s{%s--} 内 %s%s{%s} 命令格式不同,可能丢失信息",
+ entry.input, front.encap, front, p.rangetype, p.encap, p)
+ }
+ }
+ } else if !p.Compatible(top) {
+ // 标准 Makeindex 会尝试把区间断开,这里只给出警告
+ log.Printf("条目 %s 的页码区间 %s{%s -- %s} 跨过不同的数字格式\n", entry.input, top.encap, top, p)
+ }
+ switch p.rangetype {
+ case PAGE_NORMAL:
+ // 什么也不做
+ case PAGE_OPEN:
+ // 压栈
+ stack = append(stack, p)
+ case PAGE_CLOSE:
+ // 栈中只有一个元素时输出正常区间,弹栈
+ if len(stack) == 1 {
+ out = append(out, PageRange{begin: front, end: p})
+ }
+ stack = stack[:len(stack)-1]
+ }
+ }
+ }
+ if len(stack) > 0 {
+ log.Printf("条目 %s 的页码区间有误,未找到与 %s{%s} 匹配的区间尾。\n", entry.input, stack[0].encap, stack[0])
+ // 输出从当前页到空白的伪区间
+ out = append(out, PageRange{begin: stack[0], end: stack[0].Empty()})
+ }
+ // debug.Println(out)
+ return out
+}
+
+// 合并相邻的页码区间
+// 输入是 1 2--3 4--6 7,输出 1--7
+func (sorter *PageSorter) Merge(pages []PageRange) []PageRange {
+ var out []PageRange
+ for i, r := range pages {
+ // 跳过首项;按设置跳过单页页码
+ if i == 0 {
+ out = append(out, r)
+ continue
+ }
+ // 合并重复页和区间
+ prev := out[len(out)-1]
+ if sorter.disable_range &&
+ (r.begin.rangetype == PAGE_NORMAL || prev.begin.rangetype == PAGE_NORMAL) {
+ // 合并(跳过)重复页
+ if prev.begin == r.begin {
+ continue
+ } else {
+ out = append(out, r)
+ }
+ } else if prev.begin.encap == r.begin.encap &&
+ r.begin.Compatible(prev.begin) &&
+ r.begin.Diff(prev.end) <= 1 {
+ // 合并区间,只用后一区间尾替换前一区间尾
+ out[len(out)-1].end = r.end
+ } else {
+ out = append(out, r)
+ }
+ }
+ // 修正区间类型(似乎无用)
+ for i := range out {
+ if out[i].begin.encap == out[i].end.encap {
+ if out[i].begin.Diff(out[i].end) == 0 {
+ out[i].begin.rangetype = PAGE_NORMAL
+ out[i].end.rangetype = PAGE_NORMAL
+ }
+ // 保留首尾区间类型,可以输出时判断是否是合并得到的区间
+ }
+ // encap 不同是不匹配区间或不完全区间,不修正
+ }
+ return out
+}
+
+type PageSlice struct {
+ pages []*Page
+ sorter *PageSorter
+}
+
+func (p PageSlice) Len() int {
+ return len(p.pages)
+}
+
+func (p PageSlice) Swap(i, j int) {
+ p.pages[i], p.pages[j] = p.pages[j], p.pages[i]
+}
+
+type PageSliceStrict struct {
+ PageSlice
+}
+
+// 先按 encap 类型比较,然后按页码本身比较,然后是 rangetype,方便以后合并
+// 不同 encap 严格分离
+func (p PageSliceStrict) Less(i, j int) bool {
+ a, b := p.pages[i], p.pages[j]
+ if a.encap < b.encap {
+ return true
+ } else if a.encap > b.encap {
+ return false
+ }
+ if cmp := a.Cmp(b, p.sorter.precedence); cmp != 0 {
+ return cmp < 0
+ }
+ if a.rangetype < b.rangetype {
+ return true
+ } else {
+ return false
+ }
+}
+
+type PageSliceLoose struct {
+ PageSlice
+}
+
+// 先按页码类型比较,然后按页码数值,然后 rangetype,最后是 encap 类型,方便以后合并
+// 允许不同 encap 合并,接近传统的 Makeindex 行为
+func (p PageSliceLoose) Less(i, j int) bool {
+ a, b := p.pages[i], p.pages[j]
+ if cmp := a.Cmp(b, p.sorter.precedence); cmp != 0 {
+ return cmp < 0
+ }
+ if a.rangetype < b.rangetype {
+ return true
+ } else if a.rangetype > b.rangetype {
+ return false
+ }
+ if a.encap < b.encap {
+ return true
+ } else {
+ return false
+ }
+}
+
+// 忽略大小写,按内码比较两个字符
+// 此过程被其他 collator 的 RuneCmp 调用
+func RuneCmpIgnoreCases(a, b rune) int {
+ la, lb := unicode.ToLower(a), unicode.ToLower(b)
+ return int(la - lb)
+}
+
+// 测试是否是数字,但把“〇”单独算做汉字
+func IsNumRune(r rune) bool {
+ return unicode.IsNumber(r) && r != '〇'
+}
+
+// 测试是否为数字串
+// 此过程被其他 collator 的 RuneCmp 调用
+func IsNumString(s string) bool {
+ for _, r := range s {
+ if !IsNumRune(r) {
+ return false
+ }
+ }
+ return true
+}
+
+// 按数字大小比较自然数串,如果不是自然数串视为相等
+func DecimalStrcmp(a, b string) int {
+ aint, err := strconv.ParseUint(a, 10, 64)
+ if err != nil {
+ return 0
+ }
+ bint, err := strconv.ParseUint(b, 10, 64)
+ if err != nil {
+ return 0
+ }
+ switch {
+ case aint < bint:
+ return -1
+ case aint > bint:
+ return 1
+ default:
+ return 0
+ }
+}
diff --git a/indexing/zhmakeindex/stroke_collator.go b/indexing/zhmakeindex/stroke_collator.go
new file mode 100644
index 0000000000..43f87e47d9
--- /dev/null
+++ b/indexing/zhmakeindex/stroke_collator.go
@@ -0,0 +1,89 @@
+package main
+
+import (
+ "strconv"
+ "unicode"
+ "unicode/utf8"
+
+ "github.com/leo-liu/zhmakeindex/CJK"
+)
+
+// 汉字按笔画排序,汉字按笔画分组排在英文字母组后面
+type StrokeIndexCollator struct{}
+
+func (_ StrokeIndexCollator) InitGroups(style *OutputStyle) []IndexGroup {
+ // 分组:符号、数字、字母 A..Z、笔划 1..MAX_STROKE
+ groups := make([]IndexGroup, 2+26+CJK.MAX_STROKE)
+ if style.headings_flag > 0 {
+ groups[0].name = style.symhead_positive
+ groups[1].name = style.numhead_positive
+ for alph, i := 'A', 2; alph <= 'Z'; alph++ {
+ groups[i].name = string(alph)
+ i++
+ }
+ } else if style.headings_flag < 0 {
+ groups[0].name = style.symhead_negative
+ groups[1].name = style.numhead_negative
+ for alph, i := 'a', 2; alph <= 'z'; alph++ {
+ groups[i].name = string(alph)
+ i++
+ }
+ }
+ for stroke, i := 1, 2+26; stroke <= CJK.MAX_STROKE; stroke++ {
+ groups[i].name = style.stroke_prefix + strconv.Itoa(stroke) + style.stroke_suffix
+ i++
+ }
+ return groups
+}
+
+// 取得分组
+func (_ StrokeIndexCollator) Group(entry *IndexEntry) int {
+ first, _ := utf8.DecodeRuneInString(entry.level[0].key)
+ first = unicode.ToLower(first)
+ switch {
+ case IsNumString(entry.level[0].key):
+ return 1
+ case 'a' <= first && first <= 'z':
+ return 2 + int(first) - 'a'
+ case len(CJK.Strokes[first]) > 0:
+ return 2 + 26 + (len(CJK.Strokes[first]) - 1)
+ default:
+ // 符号组
+ return 0
+ }
+}
+
+// 按汉字笔画、笔顺序比较两个字符大小
+// 笔画数不同的,短的在前;笔画数相同的,笔顺字典序;笔顺相同的,内码序
+func (_ StrokeIndexCollator) RuneCmp(a, b rune) int {
+ a_strokes, b_strokes := len(CJK.Strokes[a]), len(CJK.Strokes[b])
+ switch {
+ case a_strokes == 0 && b_strokes == 0:
+ return RuneCmpIgnoreCases(a, b)
+ case a_strokes == 0 && b_strokes != 0:
+ return -1
+ case a_strokes != 0 && b_strokes == 0:
+ return 1
+ case a_strokes != b_strokes:
+ return a_strokes - b_strokes
+ case CJK.Strokes[a] < CJK.Strokes[b]:
+ return -1
+ case CJK.Strokes[a] > CJK.Strokes[b]:
+ return 1
+ default:
+ return int(a - b)
+ }
+}
+
+// 判断是否字母或汉字
+func (_ StrokeIndexCollator) IsLetter(r rune) bool {
+ r = unicode.ToLower(r)
+ switch {
+ case 'a' <= r && r <= 'z':
+ return true
+ case CJK.Strokes[r] != "":
+ return true
+ default:
+ return false
+ }
+}
diff --git a/indexing/zhmakeindex/style.go b/indexing/zhmakeindex/style.go
new file mode 100644
index 0000000000..2b480bf193
--- /dev/null
+++ b/indexing/zhmakeindex/style.go
@@ -0,0 +1,382 @@
+package main
+
+import (
+ "path/filepath"
+ "bufio"
+ "log"
+ "os"
+ "strconv"
+ "strings"
+ "unicode"
+ "unicode/utf8"
+
+ "golang.org/x/text/transform"
+
+ "github.com/leo-liu/zhmakeindex/kpathsea"
+)
+
+// 输入格式
+// 这里使用简单 struct 实现,需要大量分情况讨论。
+// 也可以用 map 实现,代码可能会简短并易于扩展,但要动态处理类型
+type InputStyle struct {
+ keyword string
+ arg_open rune
+ arg_close rune
+ actual rune
+ encap rune
+ escape rune
+ level rune
+ quote rune
+ page_compositor string
+ range_open rune
+ range_close rune
+ comment rune
+}
+
+func NewInputStyle() *InputStyle {
+ in := &InputStyle{
+ keyword: "\\indexentry",
+ arg_open: '{',
+ arg_close: '}',
+ actual: '@',
+ encap: '|',
+ escape: '\\',
+ level: '!',
+ quote: '"',
+ page_compositor: "-",
+ range_open: '(',
+ range_close: ')',
+ comment: '%',
+ }
+ return in
+}
+
+type OutputStyle struct {
+ preamble string
+ postamble string
+ setpage_prefix string
+ setpage_suffix string
+ group_skip string
+ headings_flag int
+ heading_prefix string
+ heading_suffix string
+ symhead_positive string
+ symhead_negative string
+ numhead_positive string
+ numhead_negative string
+ stroke_prefix string
+ stroke_suffix string
+ radical_prefix string
+ radical_suffix string
+ radical_simplified_flag int
+ radical_simplified_prefix string
+ radical_simplified_suffix string
+ item_0 string
+ item_1 string
+ item_2 string
+ item_01 string
+ item_x1 string
+ item_12 string
+ item_x2 string
+ delim_0 string
+ delim_1 string
+ delim_2 string
+ delim_n string
+ delim_r string
+ delim_t string
+ encap_prefix string
+ encap_infix string
+ encap_suffix string
+ page_precedence string
+ line_max int
+ indent_space string
+ indent_length int
+ suffix_2p string
+ suffix_3p string
+ suffix_mp string
+}
+
+func NewOutputStyle() *OutputStyle {
+ out := &OutputStyle{
+ preamble: "\\begin{theindex}\n",
+ postamble: "\n\n\\end{theindex}\n",
+ setpage_prefix: "\n \\setcounter{page}{",
+ setpage_suffix: "}\n",
+ group_skip: "\n\n \\indexspace\n",
+ headings_flag: 0,
+ heading_prefix: "",
+ heading_suffix: "",
+ symhead_positive: "Symbols",
+ symhead_negative: "symbols",
+ numhead_positive: "Numbers",
+ numhead_negative: "numbers",
+ stroke_prefix: "",
+ stroke_suffix: " 画",
+ radical_prefix: "",
+ radical_suffix: "部",
+ radical_simplified_flag: 1,
+ radical_simplified_prefix: "(",
+ radical_simplified_suffix: ")",
+ item_0: "\n \\item ",
+ item_1: "\n \\subitem ",
+ item_2: "\n \\subsubitem ",
+ item_01: "\n \\subitem ",
+ item_x1: "\n \\subitem ",
+ item_12: "\n \\subsubitem ",
+ item_x2: "\n \\subsubitem ",
+ delim_0: ", ",
+ delim_1: ", ",
+ delim_2: ", ",
+ delim_n: ", ",
+ delim_r: "--",
+ delim_t: "",
+ encap_prefix: "\\",
+ encap_infix: "{",
+ encap_suffix: "}",
+ page_precedence: "rnaRA",
+ line_max: 72,
+ indent_space: "\t\t",
+ indent_length: 16,
+ suffix_2p: "",
+ suffix_3p: "",
+ suffix_mp: "",
+ }
+ return out
+}
+
+func NewStyles(o *StyleOptions) (*InputStyle, *OutputStyle) {
+ in := NewInputStyle()
+ out := NewOutputStyle()
+
+ if o.style == "" {
+ return in, out
+ }
+ if filepath.Ext(o.style) == "" {
+ o.style += ".ist"
+ }
+ // 读取格式文件,处理格式
+ o.style = kpathsea.FindFile(o.style, kpathsea.IST_FORMAT, false)
+ if o.style == "" {
+ log.Fatalln("找不到格式文件。")
+ }
+ styleFile, err := os.Open(o.style)
+ if err != nil {
+ log.Fatalln(err.Error())
+ }
+ defer styleFile.Close()
+ scanner := bufio.NewScanner(transform.NewReader(styleFile, o.style_decoder))
+ scanner.Split(ScanStyleTokens)
+ for scanner.Scan() {
+ if err := scanner.Err(); err != nil {
+ log.Println(err.Error())
+ }
+ key := scanner.Text()
+ if !scanner.Scan() {
+ log.Println("格式文件不完整")
+ }
+ if err := scanner.Err(); err != nil {
+ log.Println(err.Error())
+ }
+ value := scanner.Text()
+ switch key {
+ // 输入参数
+ case "keyword":
+ in.keyword = unquote(value)
+ case "arg_open":
+ in.arg_open = unquoteChar(value)
+ case "arg_close":
+ in.arg_close = unquoteChar(value)
+ case "actual":
+ in.actual = unquoteChar(value)
+ case "encap":
+ in.encap = unquoteChar(value)
+ case "escape":
+ in.escape = unquoteChar(value)
+ case "level":
+ in.level = unquoteChar(value)
+ case "quote":
+ in.quote = unquoteChar(value)
+ case "page_compositor":
+ in.page_compositor = unquote(value)
+ case "range_open":
+ in.range_open = unquoteChar(value)
+ case "range_close":
+ in.range_close = unquoteChar(value)
+ case "comment":
+ in.comment = unquoteChar(value)
+ // 输出参数
+ case "preamble":
+ out.preamble = unquote(value)
+ case "postamble":
+ out.postamble = unquote(value)
+ case "setpage_prefix":
+ out.setpage_prefix = unquote(value)
+ case "setpage_suffix":
+ out.setpage_suffix = unquote(value)
+ case "group_skip":
+ out.group_skip = unquote(value)
+ case "headings_flag", "lethead_flag":
+ out.headings_flag = parseInt(value)
+ case "heading_prefix", "lethead_prefix":
+ out.heading_prefix = unquote(value)
+ case "heading_suffix", "lethead_suffix":
+ out.heading_suffix = unquote(value)
+ case "symhead_positive":
+ out.symhead_positive = unquote(value)
+ case "symhead_negative":
+ out.symhead_negative = unquote(value)
+ case "numhead_positive":
+ out.numhead_positive = unquote(value)
+ case "numhead_negative":
+ out.numhead_negative = unquote(value)
+ case "stroke_prefix":
+ out.stroke_prefix = unquote(value)
+ case "stroke_suffix":
+ out.stroke_suffix = unquote(value)
+ case "radical_prefix":
+ out.radical_prefix = unquote(value)
+ case "radical_suffix":
+ out.radical_suffix = unquote(value)
+ case "radical_simplify_flag":
+ out.radical_simplified_flag = parseInt(value)
+ case "radical_simplified_prefix":
+ out.radical_simplified_prefix = unquote(value)
+ case "radical_simplified_suffix":
+ out.radical_simplified_suffix = unquote(value)
+ case "item_0":
+ out.item_0 = unquote(value)
+ case "item_1":
+ out.item_1 = unquote(value)
+ case "item_2":
+ out.item_2 = unquote(value)
+ case "item_01":
+ out.item_01 = unquote(value)
+ case "item_x1":
+ out.item_x1 = unquote(value)
+ case "item_12":
+ out.item_12 = unquote(value)
+ case "item_x2":
+ out.item_x2 = unquote(value)
+ case "delim_0":
+ out.delim_0 = unquote(value)
+ case "delim_1":
+ out.delim_1 = unquote(value)
+ case "delim_2":
+ out.delim_2 = unquote(value)
+ case "delim_n":
+ out.delim_n = unquote(value)
+ case "delim_r":
+ out.delim_r = unquote(value)
+ case "delim_t":
+ out.delim_t = unquote(value)
+ case "encap_prefix":
+ out.encap_prefix = unquote(value)
+ case "encap_infix":
+ out.encap_infix = unquote(value)
+ case "encap_suffix":
+ out.encap_suffix = unquote(value)
+ case "line_max":
+ out.line_max = parseInt(value)
+ case "indent_space":
+ out.indent_space = unquote(value)
+ case "indent_length":
+ out.indent_length = parseInt(value)
+ case "suffix_2p":
+ out.suffix_2p = unquote(value)
+ case "suffix_3p":
+ out.suffix_3p = unquote(value)
+ case "suffix_mp":
+ out.suffix_mp = unquote(value)
+ // 其他
+ default:
+ log.Printf("忽略未知格式 %s\n", key)
+ }
+ }
+ return in, out
+}
+
+func unquote(src string) string {
+ // 处理双引号中有换行符的串
+ if src[0] == '"' {
+ src = strings.Replace(src, "\n", "\\n", -1)
+ }
+ dst, err := strconv.Unquote(src)
+ if err != nil {
+ log.Println(err.Error())
+ }
+ return dst
+}
+
+func unquoteChar(src string) rune {
+ src = unquote(src)
+ dst, _, tail, err := strconv.UnquoteChar(src, 0)
+ if tail != "" {
+ err = strconv.ErrSyntax
+ }
+ if err != nil {
+ log.Println(err.Error())
+ }
+ return dst
+}
+
+func parseInt(src string) int {
+ i, err := strconv.ParseInt(src, 0, 0)
+ if err != nil {
+ log.Println(err.Error())
+ }
+ return int(i)
+}
+
+// bufio.SplitFunc 的实例
+// 查找标识符、数字、单引号内的 rune、双引号或反引号内的串;跳过以 % 开头的注释(未完成)
+// 实现参考了 bufio.ScanWords
+func ScanStyleTokens(data []byte, atEOF bool) (advance int, token []byte, err error) {
+ // 跳过空白和注释
+ start := 0
+ in_comment := false
+ for width := 0; start < len(data); start += width {
+ var r rune
+ r, width = utf8.DecodeRune(data[start:])
+ if !in_comment && r == '%' {
+ in_comment = true
+ } else if in_comment && r == '\n' {
+ in_comment = false
+ } else if !in_comment && !unicode.IsSpace(r) {
+ break
+ }
+ // 其他情况跳过:注释中未遇到换行符,或者注释外遇到空白符
+ }
+ if atEOF && len(data) == 0 {
+ return 0, nil, nil
+ }
+ // 首先读出第一个字符,按不同类型扫描 token
+ switch first, firstwidth := utf8.DecodeRune(data[start:]); first {
+ // 读引号内的 rune 或串,从引号后开始扫描
+ case '\'', '"', '`':
+ for width, i := 0, start+firstwidth; i < len(data); i += width {
+ var r rune
+ r, width = utf8.DecodeRune(data[i:])
+ if r == '\\' { // 跳过转义符
+ _, newwidth := utf8.DecodeRune(data[i+width:])
+ width += newwidth
+ } else if r == first { // 找到终点
+ return i + width, data[start : i+width], nil
+ }
+ }
+ // 读标识符、数字等,读到空格或注释符为止
+ default:
+ for width, i := 0, start; i < len(data); i += width {
+ var r rune
+ r, width = utf8.DecodeRune(data[i:])
+ if unicode.IsSpace(r) || r == '%' {
+ return i, data[start:i], nil
+ }
+ }
+ }
+ // 进入 EOF,剩下的部分全是一个 token(规则不足)
+ if atEOF && len(data) > start {
+ return len(data), data[start:], nil
+ }
+ // 要求更长的数据
+ return 0, nil, nil
+}
diff --git a/indexing/zhmakeindex/style_test.go b/indexing/zhmakeindex/style_test.go
new file mode 100644
index 0000000000..1e04305821
--- /dev/null
+++ b/indexing/zhmakeindex/style_test.go
@@ -0,0 +1,40 @@
+package main
+
+import (
+ "testing"
+)
+
+func TestScanStyleTokens(t *testing.T) {
+ data := []byte(" \t'hello'world")
+ advance, token, err := ScanStyleTokens(data, false)
+ if err != nil || advance != 9 || string(token) != "'hello'" {
+ t.Error(err, string(token), advance)
+ }
+ advance0, token0, err0 := ScanStyleTokens(data[advance:], false)
+ if err0 != nil || advance0 != 0 || token0 != nil {
+ t.Error(err0, string(token0), advance0)
+ }
+ advance1, token1, err1 := ScanStyleTokens(data[advance:], true)
+ if err1 != nil || advance1 != 5 || string(token1) != "world" {
+ t.Error(err1, string(token1), advance1)
+ }
+}
+
+func TestScanStyleTokens_comment(t *testing.T) {
+ data := []byte("%comment\nfoo bar")
+ adv, tok, err := ScanStyleTokens(data, false)
+ if err != nil || string(tok) != "foo" || adv != 12 {
+ t.Error(err, string(tok), adv)
+ }
+
+ data0 := []byte("\n%c\n\n%c\nfoo%c\nbar")
+ adv0, tok0, err0 := ScanStyleTokens(data0, false)
+ if err0 != nil || string(tok0) != "foo" || adv0 != 11 {
+ t.Error(err0, string(tok0), adv0)
+ }
+
+ adv1, tok1, err1 := ScanStyleTokens(data0[adv0:], true)
+ if err1 != nil || string(tok1) != "bar" || adv1 != 6 {
+ t.Error(err1, string(tok1), adv1)
+ }
+}